From 95cb641f5931e602f3be931c30d2937da39c6662 Mon Sep 17 00:00:00 2001
From: Chizi123 <joelgrun@gmail.com>
Date: Wed, 21 Nov 2018 13:04:10 +0000
Subject: [PATCH] removed everything but init

---
 /dev/null |   27 ---------------------------
 1 files changed, 0 insertions(+), 27 deletions(-)

diff --git a/auto-save-list/.saves-7652-JOEL-PC~ b/auto-save-list/.saves-7652-JOEL-PC~
deleted file mode 100644
index 77a1601..0000000
--- a/auto-save-list/.saves-7652-JOEL-PC~
+++ /dev/null
@@ -1,2 +0,0 @@
-c:/Users/joelg/.emacs.d/init.el
-c:/Users/joelg/.emacs.d/#init.el#
diff --git a/bookmarks b/bookmarks
deleted file mode 100644
index 6ce8ff6..0000000
--- a/bookmarks
+++ /dev/null
@@ -1,10 +0,0 @@
-;;;; Emacs Bookmark Format Version 1 ;;;; -*- coding: utf-8-emacs -*- 
-;;; This format is meant to be slightly human-readable;
-;;; nevertheless, you probably don't want to edit it.
-;;; -*- End Of Bookmark File Format Version Stamp -*-
-(("Emacs init file"
- (filename . "~/.emacs.d/init.el")
- (front-context-string)
- (rear-context-string . " C-b\" 'ibuffer)\n")
- (position . 918))
-)
\ No newline at end of file
diff --git a/custom/setup-applications.el b/custom/setup-applications.el
deleted file mode 100644
index 405d087..0000000
--- a/custom/setup-applications.el
+++ /dev/null
@@ -1,31 +0,0 @@
-(provide 'setup-applications)
-
-(require 'eshell)
-(require 'em-alias)
-(require 'cl)
-
-;; Advise find-file-other-window to accept more than one file
-(defadvice find-file-other-window (around find-files activate)
-  "Also find all files within a list of files. This even works recursively."
-  (if (listp filename)
-      (loop for f in filename do (find-file-other-window f wildcards))
-    ad-do-it))
-
-;; In Eshell, you can run the commands in M-x
-;; Here are the aliases to the commands.
-;; $* means accepts all arguments.
-(eshell/alias "o" "")
-(eshell/alias "o" "find-file-other-window $*")
-(eshell/alias "vi" "find-file-other-window $*")
-(eshell/alias "vim" "find-file-other-window $*")
-(eshell/alias "emacs" "find-file-other-windpow $*")
-(eshell/alias "em" "find-file-other-window $*")
-
-(add-hook
- 'eshell-mode-hook
- (lambda ()
-   (setq pcomplete-cycle-completions nil)))
-
-;; change listing switches based on OS
-(when (not (eq system-type 'windows-nt))
-  (eshell/alias "ls" "ls --color -h --group-directories-first $*"))
diff --git a/custom/setup-applications.el~ b/custom/setup-applications.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-applications.el~
+++ /dev/null
diff --git a/custom/setup-communication.el b/custom/setup-communication.el
deleted file mode 100644
index 3bbf720..0000000
--- a/custom/setup-communication.el
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-communication)
diff --git a/custom/setup-communication.el~ b/custom/setup-communication.el~
deleted file mode 100644
index adb09cf..0000000
--- a/custom/setup-communication.el~
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-comminication)
diff --git a/custom/setup-convenience.el b/custom/setup-convenience.el
deleted file mode 100644
index 59fa0c8..0000000
--- a/custom/setup-convenience.el
+++ /dev/null
@@ -1,50 +0,0 @@
-(provide 'setup-convenience)
-
-;; use ibuffer instead of default
-(global-set-key (kbd "C-x C-b") 'ibuffer)
-
-;; GROUP: Convenience -> Revert
-
-;; update any change made on file to the current buffer
-(global-auto-revert-mode)
-
-;; GROUP: Convenience -> Hippe Expand
-;; hippie-expand is a better version of dabbrev-expand.
-;; While dabbrev-expand searches for words you already types, in current;; buffers and other buffers, hippie-expand includes more sources,
-;; such as filenames, klll ring...
-(global-set-key (kbd "M-/") 'hippie-expand) ;; replace dabbrev-expand
-(setq
- hippie-expand-try-functions-list
- '(try-expand-dabbrev ;; Try to expand word "dynamically", searching the current buffer.
-   try-expand-dabbrev-all-buffers ;; Try to expand word "dynamically", searching all other buffers.
-   try-expand-dabbrev-from-kill ;; Try to expand word "dynamically", searching the kill ring.
-   try-complete-file-name-partially ;; Try to complete text as a file name, as many characters as unique.
-   try-complete-file-name ;; Try to complete text as a file name.
-   try-expand-all-abbrevs ;; Try to expand word before point according to all abbrev tables.
-   try-expand-list ;; Try to complete the current line to an entire line in the buffer.
-   try-expand-line ;; Try to complete the current line to an entire line in the buffer.
-   try-complete-lisp-symbol-partially ;; Try to complete as an Emacs Lisp symbol, as many characters as unique.
-   try-complete-lisp-symbol) ;; Try to complete word as an Emacs Lisp symbol.
- )
-
-;; GROUP: Convenience -> HL Line
-(global-hl-line-mode)
-
-;; GROUP: Convenience -> Ibuffer
-(setq ibuffer-use-other-window t) ;; always display ibuffer in another window
-
-;; GROUP: Convenience -> Linum
-(add-hook 'prog-mode-hook 'linum-mode) ;; enable linum only in programming modes
-
-;; GROUP: Convenience -> Whitespace
-
-;; whenever you create useless whitespace, the whitespace is highlighted
-(add-hook 'prog-mode-hook (lambda () (interactive) (setq show-trailing-whitespace 1)))
-
-;; activate whitespace-mode to view all whitespace characters
-(global-set-key (kbd "C-c w") 'whitespace-mode)
-
-;; GROUP: Convenience -> Windmove
-
-;; easier window navigation
-(windmove-default-keybindings)
diff --git a/custom/setup-convenience.el~ b/custom/setup-convenience.el~
deleted file mode 100644
index 613ca3f..0000000
--- a/custom/setup-convenience.el~
+++ /dev/null
@@ -1,50 +0,0 @@
-(provide 'setup-convenience)
-
-;; use ibuffer instead of default
-(global-set-key (kbd "C-x C-b" 'ibuffer))
-
-;; GROUP: Convenience -> Revert
-
-;; update any change made on file to the current buffer
-(global-auto-revert-mode)
-
-;; GROUP: Convenience -> Hippe Expand
-;; hippie-expand is a better version of dabbrev-expand.
-;; While dabbrev-expand searches for words you already types, in current;; buffers and other buffers, hippie-expand includes more sources,
-;; such as filenames, klll ring...
-(global-set-key (kbd "M-/") 'hippie-expand) ;; replace dabbrev-expand
-(setq
- hippie-expand-try-functions-list
- '(try-expand-dabbrev ;; Try to expand word "dynamically", searching the current buffer.
-   try-expand-dabbrev-all-buffers ;; Try to expand word "dynamically", searching all other buffers.
-   try-expand-dabbrev-from-kill ;; Try to expand word "dynamically", searching the kill ring.
-   try-complete-file-name-partially ;; Try to complete text as a file name, as many characters as unique.
-   try-complete-file-name ;; Try to complete text as a file name.
-   try-expand-all-abbrevs ;; Try to expand word before point according to all abbrev tables.
-   try-expand-list ;; Try to complete the current line to an entire line in the buffer.
-   try-expand-line ;; Try to complete the current line to an entire line in the buffer.
-   try-complete-lisp-symbol-partially ;; Try to complete as an Emacs Lisp symbol, as many characters as unique.
-   try-complete-lisp-symbol) ;; Try to complete word as an Emacs Lisp symbol.
- )
-
-;; GROUP: Convenience -> HL Line
-(global-hl-line-mode)
-
-;; GROUP: Convenience -> Ibuffer
-(setq ibuffer-use-other-window t) ;; always display ibuffer in another window
-
-;; GROUP: Convenience -> Linum
-(add-hook 'prog-mode-hook 'linum-mode) ;; enable linum only in programming modes
-
-;; GROUP: Convenience -> Whitespace
-
-;; whenever you create useless whitespace, the whitespace is highlighted
-(add-hook 'prog-mode-hook (lambda () (interactive) (setq show-trailing-whitespace 1)))
-
-;; activate whitespace-mode to view all whitespace characters
-(global-set-key (kbd "C-c w") 'whitespace-mode)
-
-;; GROUP: Convenience -> Windmove
-
-;; easier window navigation
-(windmove-default-keybindings)
diff --git a/custom/setup-data.el b/custom/setup-data.el
deleted file mode 100644
index 19b7301..0000000
--- a/custom/setup-data.el
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-data)
diff --git a/custom/setup-data.el~ b/custom/setup-data.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-data.el~
+++ /dev/null
diff --git a/custom/setup-development.el b/custom/setup-development.el
deleted file mode 100644
index 6402e18..0000000
--- a/custom/setup-development.el
+++ /dev/null
@@ -1,8 +0,0 @@
-(provide 'setup-development)
-
-(add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)
-(add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)
-(add-hook 'ielm-mode-hook 'turn-on-eldoc-mode)
-
-;; Start garbage collection every 100MB to improve Emacs performance
-(setq gc-cons-threshold 100000000)
diff --git a/custom/setup-development.el~ b/custom/setup-development.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-development.el~
+++ /dev/null
diff --git a/custom/setup-editing.el b/custom/setup-editing.el
deleted file mode 100644
index e5f89f3..0000000
--- a/custom/setup-editing.el
+++ /dev/null
@@ -1,226 +0,0 @@
-(provide 'setup-editing)
-
-;; GROUP: Editing -> Editing Basics
-(setq global-mark-ring-max 5000         ; increase mark ring to contains 5000 entries
-      mark-ring-max 5000                ; increase kill ring to contains 5000 entries
-      mode-require-final-newline t      ; add a newline to end of file
-      )
-
-(setq c-default-style "linux")
-
-(set-terminal-coding-system 'utf-8)
-(set-keyboard-coding-system 'utf-8)
-(set-language-environment "UTF-8")
-(prefer-coding-system 'utf-8)
-
-(setq-default indent-tabs-mode t)
-(delete-selection-mode)
-(global-set-key (kbd "RET") 'newline-and-indent)
-
-;; GROUP: Editing -> Killing
-(setq
- kill-ring-max 5000 ; increase kill-ring capacity
- kill-whole-line t  ; if NIL, kill whole line and move the next line up
- )
-
-;; display whitespace characters
-(global-set-key (kbd "C-c w") 'whitespace-mode)
-
-;; show important whitespace in diff-mode
-(add-hook 'diff-mode-hook (lambda ()
-                            (setq-local whitespace-style
-                                        '(face
-                                          tabs
-                                          tab-mark
-                                          spaces
-                                          space-mark
-                                          trailing
-                                          indentation::space
-                                          indentation::tab
-                                          newline
-                                          newline-mark))
-                            (whitespace-mode 1)))
-
-
-(defun prelude-move-beginning-of-line (arg)
-  "Move point back to indentation of beginning of line.
-
-Move point to the first non-whitespace character on this line.
-If point is already there, move to the beginning of the line.
-Effectively toggle between the first non-whitespace character and
-the beginning of the line.
-
-If ARG is not nil or 1, move forward ARG - 1 lines first. If
-point reaches the beginning or end of the buffer, stop there."
-  (interactive "^p")
-  (setq arg (or arg 1))
-
-  ;; Move lines first
-  (when (/= arg 1)
-    (let ((line-move-visual nil))
-      (forward-line (1- arg))))
-
-  (let ((orig-point (point)))
-    (back-to-indentation)
-    (when (= orig-point (point))
-      (move-beginning-of-line 1))))
-
-(global-set-key (kbd "C-a") 'prelude-move-beginning-of-line)
-
-(defadvice kill-ring-save (before slick-copy activate compile)
-  "When called interactively with no active region, copy a single
-line instead."
-  (interactive
-   (if mark-active (list (region-beginning) (region-end))
-     (message "Copied line")
-     (list (line-beginning-position)
-           (line-beginning-position 2)))))
-
-(defadvice kill-region (before slick-cut activate compile)
-  "When called interactively with no active region, kill a single
-  line instead."
-  (interactive
-   (if mark-active (list (region-beginning) (region-end))
-     (list (line-beginning-position)
-           (line-beginning-position 2)))))
-
-;; kill a line, including whitespace characters until next non-whiepsace character
-;; of next line
-(defadvice kill-line (before check-position activate)
-  (if (member major-mode
-              '(emacs-lisp-mode scheme-mode lisp-mode
-                                c-mode c++-mode objc-mode
-                                latex-mode plain-tex-mode))
-      (if (and (eolp) (not (bolp)))
-          (progn (forward-char 1)
-                 (just-one-space 0)
-                 (backward-char 1)))))
-
-;; taken from prelude-editor.el
-;; automatically indenting yanked text if in programming-modes
-(defvar yank-indent-modes
-  '(LaTeX-mode TeX-mode)
-  "Modes in which to indent regions that are yanked (or yank-popped).
-Only modes that don't derive from `prog-mode' should be listed here.")
-
-(defvar yank-indent-blacklisted-modes
-  '(python-mode slim-mode haml-mode)
-  "Modes for which auto-indenting is suppressed.")
-
-(defvar yank-advised-indent-threshold 1000
-  "Threshold (# chars) over which indentation does not automatically occur.")
-
-(defun yank-advised-indent-function (beg end)
-  "Do indentation, as long as the region isn't too large."
-  (if (<= (- end beg) yank-advised-indent-threshold)
-      (indent-region beg end nil)))
-
-(defadvice yank (after yank-indent activate)
-  "If current mode is one of 'yank-indent-modes,
-indent yanked text (with prefix arg don't indent)."
-  (if (and (not (ad-get-arg 0))
-           (not (member major-mode yank-indent-blacklisted-modes))
-           (or (derived-mode-p 'prog-mode)
-               (member major-mode yank-indent-modes)))
-      (let ((transient-mark-mode nil))
-        (yank-advised-indent-function (region-beginning) (region-end)))))
-
-(defadvice yank-pop (after yank-pop-indent activate)
-  "If current mode is one of `yank-indent-modes',
-indent yanked text (with prefix arg don't indent)."
-  (when (and (not (ad-get-arg 0))
-             (not (member major-mode yank-indent-blacklisted-modes))
-             (or (derived-mode-p 'prog-mode)
-                 (member major-mode yank-indent-modes)))
-    (let ((transient-mark-mode nil))
-      (yank-advised-indent-function (region-beginning) (region-end)))))
-
-;; prelude-core.el
-(defun prelude-duplicate-current-line-or-region (arg)
-  "Duplicates the current line or region ARG times.
-If there's no region, the current line will be duplicated. However, if
-there's a region, all lines that region covers will be duplicated."
-  (interactive "p")
-  (pcase-let* ((origin (point))
-               (`(,beg . ,end) (prelude-get-positions-of-line-or-region))
-               (region (buffer-substring-no-properties beg end)))
-    (-dotimes arg
-      (lambda (n)
-        (goto-char end)
-        (newline)
-        (insert region)
-        (setq end (point))))
-    (goto-char (+ origin (* (length region) arg) arg))))
-
-;; prelude-core.el
-(defun indent-buffer ()
-  "Indent the currently visited buffer."
-  (interactive)
-  (indent-region (point-min) (point-max)))
-
-;; prelude-editing.el
-(defcustom prelude-indent-sensitive-modes
-  '(coffee-mode python-mode slim-mode haml-mode yaml-mode)
-  "Modes for which auto-indenting is suppressed."
-  :type 'list)
-
-(defun indent-region-or-buffer ()
-  "Indent a region if selected, otherwise the whole buffer."
-  (interactive)
-  (unless (member major-mode prelude-indent-sensitive-modes)
-    (save-excursion
-      (if (region-active-p)
-          (progn
-            (indent-region (region-beginning) (region-end))
-            (message "Indented selected region."))
-        (progn
-          (indent-buffer)
-          (message "Indented buffer.")))
-      (whitespace-cleanup))))
-
-(global-set-key (kbd "C-c i") 'indent-region-or-buffer)
-
-;; add duplicate line function from Prelude
-;; taken from prelude-core.el
-(defun prelude-get-positions-of-line-or-region ()
-  "Return positions (beg . end) of the current line
-or region."
-  (let (beg end)
-    (if (and mark-active (> (point) (mark)))
-        (exchange-point-and-mark))
-    (setq beg (line-beginning-position))
-    (if mark-active
-        (exchange-point-and-mark))
-    (setq end (line-end-position))
-    (cons beg end)))
-
-(defun kill-default-buffer ()
-  "Kill the currently active buffer -- set to C-x k so that users are not asked which buffer they want to kill."
-  (interactive)
-  (let (kill-buffer-query-functions) (kill-buffer)))
-
-(global-set-key (kbd "C-x k") 'kill-default-buffer)
-
-;; smart openline
-(defun prelude-smart-open-line (arg)
-  "Insert an empty line after the current line.
-Position the cursor at its beginning, according to the current mode.
-With a prefix ARG open line above the current line."
-  (interactive "P")
-  (if arg
-      (prelude-smart-open-line-above)
-    (progn
-      (move-end-of-line nil)
-      (newline-and-indent))))
-
-(defun prelude-smart-open-line-above ()
-  "Insert an empty line above the current line.
-Position the cursor at it's beginning, according to the current mode."
-  (interactive)
-  (move-beginning-of-line nil)
-  (newline-and-indent)
-  (forward-line -1)
-  (indent-according-to-mode))
-
-(global-set-key (kbd "C-o") 'prelude-smart-open-line)
-(global-set-key (kbd "M-o") 'open-line)
diff --git a/custom/setup-editing.el~ b/custom/setup-editing.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-editing.el~
+++ /dev/null
diff --git a/custom/setup-environment.el b/custom/setup-environment.el
deleted file mode 100644
index 314eadd..0000000
--- a/custom/setup-environment.el
+++ /dev/null
@@ -1,18 +0,0 @@
-(provide 'setup-environment)
-
-(setq inhibit-startup-screen t)
-
-(setq savehist-additional-variables '(search ring regexp-search-ring) ; also save your regexp search queries
-      savehist-autosave-interval 60     ; save every minute
-      )
-
-(winner-mode 1)
-
-(column-number-mode 1)
-
-;; remove backup files
-(when (eq system-type 'windows-nt)
-  (defadvice backup-buffer (after my-backup-make-hidden activate)
-    (let ((backup-file-name (make-backup-file-name (buffer-file-name))))
-      (when (file-exists-p backup-file-name)
-	(call-process "attrib.exe" nil nil nil "+I" "+H" backup-file-name)))))
diff --git a/custom/setup-environment.el~ b/custom/setup-environment.el~
deleted file mode 100644
index beaf2a9..0000000
--- a/custom/setup-environment.el~
+++ /dev/null
@@ -1,21 +0,0 @@
-(provide 'setup-environment)
-
-(setq inhibit-startup-screen t)
-
-(setq savehist-additional-variables '(search ring regexp-search-ring) ; also save your regexp search queries
-      savehist-autosave-interval 60     ; save every minute
-      )
-
-(winner-mode 1)
-
-(column-number-mode 1)
-
-;; (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
-;; (load-theme 'zenburn t)
-
-;; remove backup files
-(when (eq system-type 'windows-nt)
-  (defadvice backup-buffer (after my-backup-make-hidden activate)
-    (let ((backup-file-name (make-backup-file-name (buffer-file-name))))
-      (when (file-exists-p backup-file-name)
-	(call-process "attrib.exe" nil nil nil "+I" "+H" backup-file-name)))))
diff --git a/custom/setup-external.el b/custom/setup-external.el
deleted file mode 100644
index 825f61e..0000000
--- a/custom/setup-external.el
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-external)
diff --git a/custom/setup-external.el~ b/custom/setup-external.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-external.el~
+++ /dev/null
diff --git a/custom/setup-faces.el b/custom/setup-faces.el
deleted file mode 100644
index 382424f..0000000
--- a/custom/setup-faces.el
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-faces)
diff --git a/custom/setup-faces.el~ b/custom/setup-faces.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-faces.el~
+++ /dev/null
diff --git a/custom/setup-files.el b/custom/setup-files.el
deleted file mode 100644
index cef6243..0000000
--- a/custom/setup-files.el
+++ /dev/null
@@ -1,6 +0,0 @@
-(provide 'setup-files)
-
-;; tramp setup
-(when (eq window-system 'w32)
-  (setq tramp-default-method "plink"))
-(setq password-cache-expiry nil)
diff --git a/custom/setup-files.el~ b/custom/setup-files.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-files.el~
+++ /dev/null
diff --git a/custom/setup-help.el b/custom/setup-help.el
deleted file mode 100644
index b1e2d96..0000000
--- a/custom/setup-help.el
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-help)
diff --git a/custom/setup-help.el~ b/custom/setup-help.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-help.el~
+++ /dev/null
diff --git a/custom/setup-local.el b/custom/setup-local.el
deleted file mode 100644
index e7e1092..0000000
--- a/custom/setup-local.el
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-local)
diff --git a/custom/setup-local.el~ b/custom/setup-local.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-local.el~
+++ /dev/null
diff --git a/custom/setup-multimedia.el b/custom/setup-multimedia.el
deleted file mode 100644
index 3481117..0000000
--- a/custom/setup-multimedia.el
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-multimedia)
diff --git a/custom/setup-multimedia.el~ b/custom/setup-multimedia.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-multimedia.el~
+++ /dev/null
diff --git a/custom/setup-programming.el b/custom/setup-programming.el
deleted file mode 100644
index 5963a0a..0000000
--- a/custom/setup-programming.el
+++ /dev/null
@@ -1,2 +0,0 @@
-(provide 'setup-programming)
-
diff --git a/custom/setup-programming.el~ b/custom/setup-programming.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-programming.el~
+++ /dev/null
diff --git a/custom/setup-text.el b/custom/setup-text.el
deleted file mode 100644
index ad6878e..0000000
--- a/custom/setup-text.el
+++ /dev/null
@@ -1 +0,0 @@
-(provide 'setup-text)
diff --git a/custom/setup-text.el~ b/custom/setup-text.el~
deleted file mode 100644
index e69de29..0000000
--- a/custom/setup-text.el~
+++ /dev/null
diff --git a/elpa/anaphora-20180618.2200/anaphora-autoloads.el b/elpa/anaphora-20180618.2200/anaphora-autoloads.el
deleted file mode 100644
index cd3cf82..0000000
--- a/elpa/anaphora-20180618.2200/anaphora-autoloads.el
+++ /dev/null
@@ -1,228 +0,0 @@
-;;; anaphora-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "anaphora" "anaphora.el" (0 0 0 0))
-;;; Generated autoloads from anaphora.el
-
-(let ((loads (get 'anaphora 'custom-loads))) (if (member '"anaphora" loads) nil (put 'anaphora 'custom-loads (cons '"anaphora" loads))))
-
-(defvar anaphora-use-long-names-only nil "\
-Use only long names such as `anaphoric-if' instead of traditional `aif'.")
-
-(custom-autoload 'anaphora-use-long-names-only "anaphora" t)
-
-(defun anaphora--install-traditional-aliases (&optional arg) "\
-Install traditional short aliases for anaphoric macros.
-
-With negative numeric ARG, remove traditional aliases." (let ((syms (quote ((if . t) (prog1 . t) (prog2 . t) (when . when) (while . t) (and . t) (cond . cond) (lambda . lambda) (block . block) (case . case) (ecase . ecase) (typecase . typecase) (etypecase . etypecase) (let . let) (+ . t) (- . t) (* . t) (/ . t))))) (cond ((and (numberp arg) (< arg 0)) (dolist (cell syms) (when (ignore-errors (eq (symbol-function (intern-soft (format "a%s" (car cell)))) (intern-soft (format "anaphoric-%s" (car cell))))) (fmakunbound (intern (format "a%s" (car cell))))))) (t (dolist (cell syms) (let* ((builtin (car cell)) (traditional (intern (format "a%s" builtin))) (long (intern (format "anaphoric-%s" builtin)))) (defalias traditional long) (put traditional (quote lisp-indent-function) (get builtin (quote lisp-indent-function))) (put traditional (quote edebug-form-spec) (cdr cell))))))))
-
-(unless anaphora-use-long-names-only (anaphora--install-traditional-aliases))
-
-(autoload 'anaphoric-if "anaphora" "\
-Like `if', but the result of evaluating COND is bound to `it'.
-
-The variable `it' is available within THEN and ELSE.
-
-COND, THEN, and ELSE are otherwise as documented for `if'.
-
-\(fn COND THEN &rest ELSE)" nil t)
-
-(function-put 'anaphoric-if 'lisp-indent-function '2)
-
-(autoload 'anaphoric-prog1 "anaphora" "\
-Like `prog1', but the result of evaluating FIRST is bound to `it'.
-
-The variable `it' is available within BODY.
-
-FIRST and BODY are otherwise as documented for `prog1'.
-
-\(fn FIRST &rest BODY)" nil t)
-
-(function-put 'anaphoric-prog1 'lisp-indent-function '1)
-
-(autoload 'anaphoric-prog2 "anaphora" "\
-Like `prog2', but the result of evaluating FORM2 is bound to `it'.
-
-The variable `it' is available within BODY.
-
-FORM1, FORM2, and BODY are otherwise as documented for `prog2'.
-
-\(fn FORM1 FORM2 &rest BODY)" nil t)
-
-(function-put 'anaphoric-prog2 'lisp-indent-function '2)
-
-(autoload 'anaphoric-when "anaphora" "\
-Like `when', but the result of evaluating COND is bound to `it'.
-
-The variable `it' is available within BODY.
-
-COND and BODY are otherwise as documented for `when'.
-
-\(fn COND &rest BODY)" nil t)
-
-(function-put 'anaphoric-when 'lisp-indent-function '1)
-
-(autoload 'anaphoric-while "anaphora" "\
-Like `while', but the result of evaluating TEST is bound to `it'.
-
-The variable `it' is available within BODY.
-
-TEST and BODY are otherwise as documented for `while'.
-
-\(fn TEST &rest BODY)" nil t)
-
-(function-put 'anaphoric-while 'lisp-indent-function '1)
-
-(autoload 'anaphoric-and "anaphora" "\
-Like `and', but the result of the previous condition is bound to `it'.
-
-The variable `it' is available within all CONDITIONS after the
-initial one.
-
-CONDITIONS are otherwise as documented for `and'.
-
-Note that some implementations of this macro bind only the first
-condition to `it', rather than each successive condition.
-
-\(fn &rest CONDITIONS)" nil t)
-
-(autoload 'anaphoric-cond "anaphora" "\
-Like `cond', but the result of each condition is bound to `it'.
-
-The variable `it' is available within the remainder of each of CLAUSES.
-
-CLAUSES are otherwise as documented for `cond'.
-
-\(fn &rest CLAUSES)" nil t)
-
-(autoload 'anaphoric-lambda "anaphora" "\
-Like `lambda', but the function may refer to itself as `self'.
-
-ARGS and BODY are otherwise as documented for `lambda'.
-
-\(fn ARGS &rest BODY)" nil t)
-
-(function-put 'anaphoric-lambda 'lisp-indent-function 'defun)
-
-(autoload 'anaphoric-block "anaphora" "\
-Like `block', but the result of the previous expression is bound to `it'.
-
-The variable `it' is available within all expressions of BODY
-except the initial one.
-
-NAME and BODY are otherwise as documented for `block'.
-
-\(fn NAME &rest BODY)" nil t)
-
-(function-put 'anaphoric-block 'lisp-indent-function '1)
-
-(autoload 'anaphoric-case "anaphora" "\
-Like `case', but the result of evaluating EXPR is bound to `it'.
-
-The variable `it' is available within CLAUSES.
-
-EXPR and CLAUSES are otherwise as documented for `case'.
-
-\(fn EXPR &rest CLAUSES)" nil t)
-
-(function-put 'anaphoric-case 'lisp-indent-function '1)
-
-(autoload 'anaphoric-ecase "anaphora" "\
-Like `ecase', but the result of evaluating EXPR is bound to `it'.
-
-The variable `it' is available within CLAUSES.
-
-EXPR and CLAUSES are otherwise as documented for `ecase'.
-
-\(fn EXPR &rest CLAUSES)" nil t)
-
-(function-put 'anaphoric-ecase 'lisp-indent-function '1)
-
-(autoload 'anaphoric-typecase "anaphora" "\
-Like `typecase', but the result of evaluating EXPR is bound to `it'.
-
-The variable `it' is available within CLAUSES.
-
-EXPR and CLAUSES are otherwise as documented for `typecase'.
-
-\(fn EXPR &rest CLAUSES)" nil t)
-
-(function-put 'anaphoric-typecase 'lisp-indent-function '1)
-
-(autoload 'anaphoric-etypecase "anaphora" "\
-Like `etypecase', but result of evaluating EXPR is bound to `it'.
-
-The variable `it' is available within CLAUSES.
-
-EXPR and CLAUSES are otherwise as documented for `etypecase'.
-
-\(fn EXPR &rest CLAUSES)" nil t)
-
-(function-put 'anaphoric-etypecase 'lisp-indent-function '1)
-
-(autoload 'anaphoric-let "anaphora" "\
-Like `let', but the result of evaluating FORM is bound to `it'.
-
-FORM and BODY are otherwise as documented for `let'.
-
-\(fn FORM &rest BODY)" nil t)
-
-(function-put 'anaphoric-let 'lisp-indent-function '1)
-
-(autoload 'anaphoric-+ "anaphora" "\
-Like `+', but the result of evaluating the previous expression is bound to `it'.
-
-The variable `it' is available within all expressions after the
-initial one.
-
-NUMBERS-OR-MARKERS are otherwise as documented for `+'.
-
-\(fn &rest NUMBERS-OR-MARKERS)" nil t)
-
-(autoload 'anaphoric-- "anaphora" "\
-Like `-', but the result of evaluating the previous expression is bound to `it'.
-
-The variable `it' is available within all expressions after the
-initial one.
-
-NUMBER-OR-MARKER and NUMBERS-OR-MARKERS are otherwise as
-documented for `-'.
-
-\(fn &optional NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)" nil t)
-
-(autoload 'anaphoric-* "anaphora" "\
-Like `*', but the result of evaluating the previous expression is bound to `it'.
-
-The variable `it' is available within all expressions after the
-initial one.
-
-NUMBERS-OR-MARKERS are otherwise as documented for `*'.
-
-\(fn &rest NUMBERS-OR-MARKERS)" nil t)
-
-(autoload 'anaphoric-/ "anaphora" "\
-Like `/', but the result of evaluating the previous divisor is bound to `it'.
-
-The variable `it' is available within all expressions after the
-first divisor.
-
-DIVIDEND, DIVISOR, and DIVISORS are otherwise as documented for `/'.
-
-\(fn DIVIDEND DIVISOR &rest DIVISORS)" nil t)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "anaphora" '("anaphora-install-font-lock-keywords")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; anaphora-autoloads.el ends here
diff --git a/elpa/anaphora-20180618.2200/anaphora-pkg.el b/elpa/anaphora-20180618.2200/anaphora-pkg.el
deleted file mode 100644
index edb9e64..0000000
--- a/elpa/anaphora-20180618.2200/anaphora-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "anaphora" "20180618.2200" "anaphoric macros providing implicit temp variables" 'nil :commit "3b2da3f759b244975852e79721c4a2dbad3905cf" :keywords '("extensions") :authors '(("Roland Walker" . "walker@pobox.com")) :maintainer '("Roland Walker" . "walker@pobox.com") :url "http://github.com/rolandwalker/anaphora")
diff --git a/elpa/anaphora-20180618.2200/anaphora.el b/elpa/anaphora-20180618.2200/anaphora.el
deleted file mode 100644
index fa57584..0000000
--- a/elpa/anaphora-20180618.2200/anaphora.el
+++ /dev/null
@@ -1,461 +0,0 @@
-;;; anaphora.el --- anaphoric macros providing implicit temp variables  -*- lexical-binding: t -*-
-;;
-;; This code is in the public domain.
-;;
-;; Author: Roland Walker <walker@pobox.com>
-;; Homepage: http://github.com/rolandwalker/anaphora
-;; URL: http://raw.githubusercontent.com/rolandwalker/anaphora/master/anaphora.el
-;; Package-Version: 20180618.2200
-;; Version: 1.0.4
-;; Last-Updated: 18 Jun 2018
-;; EmacsWiki: Anaphora
-;; Keywords: extensions
-;;
-;;; Commentary:
-;;
-;; Quickstart
-;;
-;;     (require 'anaphora)
-;;
-;;     (awhen (big-long-calculation)
-;;       (foo it)      ; `it' is provided as
-;;       (bar it))     ; a temporary variable
-;;
-;;     ;; anonymous function to compute factorial using `self'
-;;     (alambda (x) (if (= x 0) 1 (* x (self (1- x)))))
-;;
-;;     ;; to fontify `it' and `self'
-;;     (with-eval-after-load "lisp-mode"
-;;       (anaphora-install-font-lock-keywords))
-;;
-;; Explanation
-;;
-;; Anaphoric expressions implicitly create one or more temporary
-;; variables which can be referred to during the expression.  This
-;; technique can improve clarity in certain cases.  It also enables
-;; recursion for anonymous functions.
-;;
-;; To use anaphora, place the anaphora.el library somewhere
-;; Emacs can find it, and add the following to your ~/.emacs file:
-;;
-;;     (require 'anaphora)
-;;
-;; The following macros are made available
-;;
-;;     `aand'
-;;     `ablock'
-;;     `acase'
-;;     `acond'
-;;     `aecase'
-;;     `aetypecase'
-;;     `aif'
-;;     `alambda'
-;;     `alet'
-;;     `aprog1'
-;;     `aprog2'
-;;     `atypecase'
-;;     `awhen'
-;;     `awhile'
-;;     `a+'
-;;     `a-'
-;;     `a*'
-;;     `a/'
-;;
-;; See Also
-;;
-;;     M-x customize-group RET anaphora RET
-;;     http://en.wikipedia.org/wiki/On_Lisp
-;;     http://en.wikipedia.org/wiki/Anaphoric_macro
-;;
-;; Notes
-;;
-;; Partially based on examples from the book "On Lisp", by Paul
-;; Graham.
-;;
-;; Compatibility and Requirements
-;;
-;;     GNU Emacs version 26.1           : yes
-;;     GNU Emacs version 25.x           : yes
-;;     GNU Emacs version 24.x           : yes
-;;     GNU Emacs version 23.x           : yes
-;;     GNU Emacs version 22.x           : yes
-;;     GNU Emacs version 21.x and lower : unknown
-;;
-;; Bugs
-;;
-;; TODO
-;;
-;;     better face for it and self
-;;
-;;; License
-;;
-;; All code contributed by the author to this library is placed in the
-;; public domain.  It is the author's belief that the portions adapted
-;; from examples in "On Lisp" are in the public domain.
-;;
-;; Regardless of the copyright status of individual functions, all
-;; code herein is free software, and is provided without any express
-;; or implied warranties.
-;;
-;;; Code:
-;;
-
-;;; requirements
-
-;; for declare, labels, do, block, case, ecase, typecase, etypecase
-(require 'cl-lib)
-
-;;; customizable variables
-
-;;;###autoload
-(defgroup anaphora nil
-  "Anaphoric macros providing implicit temp variables"
-  :version "1.0.4"
-  :link '(emacs-commentary-link :tag "Commentary" "anaphora")
-  :link '(url-link :tag "GitHub" "http://github.com/rolandwalker/anaphora")
-  :link '(url-link :tag "EmacsWiki" "http://emacswiki.org/emacs/Anaphora")
-  :prefix "anaphora-"
-  :group 'extensions)
-
-;;;###autoload
-(defcustom anaphora-use-long-names-only nil
-  "Use only long names such as `anaphoric-if' instead of traditional `aif'."
-  :type 'boolean
-  :group 'anaphora)
-
-;;; font-lock
-
-(defun anaphora-install-font-lock-keywords nil
-  "Fontify keywords `it' and `self'."
-  (font-lock-add-keywords 'emacs-lisp-mode `((,(concat "\\<" (regexp-opt '("it" "self") 'paren) "\\>")
-                                              1 font-lock-variable-name-face)) 'append))
-
-;;; aliases
-
-;;;###autoload
-(progn
-  (defun anaphora--install-traditional-aliases (&optional arg)
-    "Install traditional short aliases for anaphoric macros.
-
-With negative numeric ARG, remove traditional aliases."
-    (let ((syms '(
-                  (if         .  t)
-                  (prog1      .  t)
-                  (prog2      .  t)
-                  (when       .  when)
-                  (while      .  t)
-                  (and        .  t)
-                  (cond       .  cond)
-                  (lambda     .  lambda)
-                  (block      .  block)
-                  (case       .  case)
-                  (ecase      .  ecase)
-                  (typecase   .  typecase)
-                  (etypecase  .  etypecase)
-                  (let        .  let)
-                  (+          .  t)
-                  (-          .  t)
-                  (*          .  t)
-                  (/          .  t)
-                  )))
-      (cond
-        ((and (numberp arg)
-              (< arg 0))
-         (dolist (cell syms)
-           (when (ignore-errors
-                   (eq (symbol-function (intern-soft (format "a%s" (car cell))))
-                                        (intern-soft (format "anaphoric-%s" (car cell)))))
-             (fmakunbound (intern (format "a%s" (car cell)))))))
-        (t
-         (dolist (cell syms)
-           (let* ((builtin (car cell))
-                  (traditional (intern (format "a%s" builtin)))
-                  (long (intern (format "anaphoric-%s" builtin))))
-             (defalias traditional long)
-             (put traditional 'lisp-indent-function
-                  (get builtin 'lisp-indent-function))
-             (put traditional 'edebug-form-spec (cdr cell)))))))))
-
-;;;###autoload
-(unless anaphora-use-long-names-only
-  (anaphora--install-traditional-aliases))
-
-;;; macros
-
-;;;###autoload
-(defmacro anaphoric-if (cond then &rest else)
-  "Like `if', but the result of evaluating COND is bound to `it'.
-
-The variable `it' is available within THEN and ELSE.
-
-COND, THEN, and ELSE are otherwise as documented for `if'."
-  (declare (debug t)
-           (indent 2))
-  `(let ((it ,cond))
-     (if it ,then ,@else)))
-
-;;;###autoload
-(defmacro anaphoric-prog1 (first &rest body)
-  "Like `prog1', but the result of evaluating FIRST is bound to `it'.
-
-The variable `it' is available within BODY.
-
-FIRST and BODY are otherwise as documented for `prog1'."
-  (declare (debug t)
-           (indent 1))
-  `(let ((it ,first))
-     (progn ,@body)
-     it))
-
-;;;###autoload
-(defmacro anaphoric-prog2 (form1 form2 &rest body)
-  "Like `prog2', but the result of evaluating FORM2 is bound to `it'.
-
-The variable `it' is available within BODY.
-
-FORM1, FORM2, and BODY are otherwise as documented for `prog2'."
-  (declare (debug t)
-           (indent 2))
-  `(progn
-     ,form1
-     (let ((it ,form2))
-       (progn ,@body)
-       it)))
-
-;;;###autoload
-(defmacro anaphoric-when (cond &rest body)
-  "Like `when', but the result of evaluating COND is bound to `it'.
-
-The variable `it' is available within BODY.
-
-COND and BODY are otherwise as documented for `when'."
-  (declare (debug when)
-           (indent 1))
-  `(anaphoric-if ,cond
-       (progn ,@body)))
-
-;;;###autoload
-(defmacro anaphoric-while (test &rest body)
-  "Like `while', but the result of evaluating TEST is bound to `it'.
-
-The variable `it' is available within BODY.
-
-TEST and BODY are otherwise as documented for `while'."
-  (declare (debug t)
-           (indent 1))
-  `(do ((it ,test ,test))
-       ((not it))
-     ,@body))
-
-;;;###autoload
-(defmacro anaphoric-and (&rest conditions)
-  "Like `and', but the result of the previous condition is bound to `it'.
-
-The variable `it' is available within all CONDITIONS after the
-initial one.
-
-CONDITIONS are otherwise as documented for `and'.
-
-Note that some implementations of this macro bind only the first
-condition to `it', rather than each successive condition."
-  (declare (debug t))
-  (cond
-    ((null conditions)
-     t)
-    ((null (cdr conditions))
-     (car conditions))
-    (t
-     `(anaphoric-if ,(car conditions) (anaphoric-and ,@(cdr conditions))))))
-
-;;;###autoload
-(defmacro anaphoric-cond (&rest clauses)
-  "Like `cond', but the result of each condition is bound to `it'.
-
-The variable `it' is available within the remainder of each of CLAUSES.
-
-CLAUSES are otherwise as documented for `cond'."
-  (declare (debug cond))
-  (if (null clauses)
-      nil
-    (let ((cl1 (car clauses))
-          (sym (gensym)))
-      `(let ((,sym ,(car cl1)))
-         (if ,sym
-             (if (null ',(cdr cl1))
-                 ,sym
-               (let ((it ,sym)) ,@(cdr cl1)))
-           (anaphoric-cond ,@(cdr clauses)))))))
-
-;;;###autoload
-(defmacro anaphoric-lambda (args &rest body)
-  "Like `lambda', but the function may refer to itself as `self'.
-
-ARGS and BODY are otherwise as documented for `lambda'."
-  (declare (debug lambda)
-           (indent defun))
-  `(cl-labels ((self ,args ,@body))
-     #'self))
-
-;;;###autoload
-(defmacro anaphoric-block (name &rest body)
-  "Like `block', but the result of the previous expression is bound to `it'.
-
-The variable `it' is available within all expressions of BODY
-except the initial one.
-
-NAME and BODY are otherwise as documented for `block'."
-  (declare (debug block)
-           (indent 1))
-  `(cl-block ,name
-     ,(funcall (anaphoric-lambda (body)
-                 (cl-case (length body)
-                   (0 nil)
-                   (1 (car body))
-                   (t `(let ((it ,(car body)))
-                         ,(self (cdr body))))))
-               body)))
-
-;;;###autoload
-(defmacro anaphoric-case (expr &rest clauses)
-  "Like `case', but the result of evaluating EXPR is bound to `it'.
-
-The variable `it' is available within CLAUSES.
-
-EXPR and CLAUSES are otherwise as documented for `case'."
-  (declare (debug case)
-           (indent 1))
-  `(let ((it ,expr))
-     (cl-case it ,@clauses)))
-
-;;;###autoload
-(defmacro anaphoric-ecase (expr &rest clauses)
-  "Like `ecase', but the result of evaluating EXPR is bound to `it'.
-
-The variable `it' is available within CLAUSES.
-
-EXPR and CLAUSES are otherwise as documented for `ecase'."
-  (declare (debug ecase)
-           (indent 1))
-  `(let ((it ,expr))
-     (cl-ecase it ,@clauses)))
-
-;;;###autoload
-(defmacro anaphoric-typecase (expr &rest clauses)
-  "Like `typecase', but the result of evaluating EXPR is bound to `it'.
-
-The variable `it' is available within CLAUSES.
-
-EXPR and CLAUSES are otherwise as documented for `typecase'."
-  (declare (debug typecase)
-           (indent 1))
-  `(let ((it ,expr))
-     (cl-typecase it ,@clauses)))
-
-;;;###autoload
-(defmacro anaphoric-etypecase (expr &rest clauses)
-  "Like `etypecase', but result of evaluating EXPR is bound to `it'.
-
-The variable `it' is available within CLAUSES.
-
-EXPR and CLAUSES are otherwise as documented for `etypecase'."
-  (declare (debug etypecase)
-           (indent 1))
-  `(let ((it ,expr))
-     (cl-etypecase it ,@clauses)))
-
-;;;###autoload
-(defmacro anaphoric-let (form &rest body)
-  "Like `let', but the result of evaluating FORM is bound to `it'.
-
-FORM and BODY are otherwise as documented for `let'."
-  (declare (debug let)
-           (indent 1))
-  `(let ((it ,form))
-     (progn ,@body)))
-
-;;;###autoload
-(defmacro anaphoric-+ (&rest numbers-or-markers)
-  "Like `+', but the result of evaluating the previous expression is bound to `it'.
-
-The variable `it' is available within all expressions after the
-initial one.
-
-NUMBERS-OR-MARKERS are otherwise as documented for `+'."
-  (declare (debug t))
-  (cond
-    ((null numbers-or-markers)
-     0)
-    (t
-     `(let ((it ,(car numbers-or-markers)))
-        (+ it (anaphoric-+ ,@(cdr numbers-or-markers)))))))
-
-;;;###autoload
-(defmacro anaphoric-- (&optional number-or-marker &rest numbers-or-markers)
-  "Like `-', but the result of evaluating the previous expression is bound to `it'.
-
-The variable `it' is available within all expressions after the
-initial one.
-
-NUMBER-OR-MARKER and NUMBERS-OR-MARKERS are otherwise as
-documented for `-'."
-  (declare (debug t))
-  (cond
-    ((null number-or-marker)
-     0)
-    ((null numbers-or-markers)
-     `(- ,number-or-marker))
-    (t
-     `(let ((it ,(car numbers-or-markers)))
-        (- ,number-or-marker (+ it (anaphoric-+ ,@(cdr numbers-or-markers))))))))
-
-;;;###autoload
-(defmacro anaphoric-* (&rest numbers-or-markers)
-  "Like `*', but the result of evaluating the previous expression is bound to `it'.
-
-The variable `it' is available within all expressions after the
-initial one.
-
-NUMBERS-OR-MARKERS are otherwise as documented for `*'."
-  (declare (debug t))
-  (cond
-    ((null numbers-or-markers)
-     1)
-    (t
-     `(let ((it ,(car numbers-or-markers)))
-        (* it (anaphoric-* ,@(cdr numbers-or-markers)))))))
-
-;;;###autoload
-(defmacro anaphoric-/ (dividend divisor &rest divisors)
-  "Like `/', but the result of evaluating the previous divisor is bound to `it'.
-
-The variable `it' is available within all expressions after the
-first divisor.
-
-DIVIDEND, DIVISOR, and DIVISORS are otherwise as documented for `/'."
-  (declare (debug t))
-  (cond
-    ((null divisors)
-     `(/ ,dividend ,divisor))
-    (t
-     `(let ((it ,divisor))
-        (/ ,dividend (* it (anaphoric-* ,@divisors)))))))
-
-(provide 'anaphora)
-
-;;
-;; Emacs
-;;
-;; Local Variables:
-;; indent-tabs-mode: nil
-;; mangle-whitespace: t
-;; require-final-newline: t
-;; coding: utf-8
-;; byte-compile-warnings: (not cl-functions redefine)
-;; End:
-;;
-;; LocalWords: Anaphora EXPR awhen COND ARGS alambda ecase typecase
-;; LocalWords: etypecase aprog aand acond ablock acase aecase alet
-;; LocalWords: atypecase aetypecase
-;;
-
-;;; anaphora.el ends here
diff --git a/elpa/anaphora-20180618.2200/anaphora.elc b/elpa/anaphora-20180618.2200/anaphora.elc
deleted file mode 100644
index 0e05da9..0000000
--- a/elpa/anaphora-20180618.2200/anaphora.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/archives/gnu/archive-contents b/elpa/archives/gnu/archive-contents
deleted file mode 100644
index ac43b3a..0000000
--- a/elpa/archives/gnu/archive-contents
+++ /dev/null
@@ -1,1332 +0,0 @@
-(1
- (ace-window .
-	     [(0 9 0)
-	      ((avy
-		(0 2 0)))
-	      "Quickly switch windows." single
-	      ((:url . "https://github.com/abo-abo/ace-window")
-	       (:keywords "window" "location"))])
- (ack .
-      [(1 5)
-       nil "interface to ack-like tools" tar
-       ((:keywords "tools" "processes" "convenience")
-	(:url . "https://github.com/leoliu/ack-el"))])
- (ada-mode .
-	   [(5 3 2)
-	    ((wisi
-	      (1 1 6))
-	     (cl-lib
-	      (0 4))
-	     (emacs
-	      (24 3)))
-	    "major-mode for editing Ada sources" tar
-	    ((:keywords "languages" "ada")
-	     (:url . "http://www.nongnu.org/ada-mode/"))])
- (ada-ref-man .
-	      [(2012 3)
-	       nil "Ada Reference Manual 2012" tar
-	       ((:keywords "languages" "ada")
-		(:url . "http://stephe-leake.org/ada/arm.html"))])
- (adaptive-wrap .
-		[(0 7)
-		 nil "Smart line-wrapping with wrap-prefix" single
-		 ((:url . "http://elpa.gnu.org/packages/adaptive-wrap.html")
-		  (:keywords))])
- (adjust-parens .
-		[(3 0)
-		 nil "Indent and dedent Lisp code, automatically adjust close parens" tar
-		 ((:url . "http://elpa.gnu.org/packages/adjust-parens.html"))])
- (aggressive-indent .
-		    [(1 8 3)
-		     ((emacs
-		       (24 1))
-		      (cl-lib
-		       (0 5)))
-		     "Minor mode to aggressively keep your code always indented" single
-		     ((:url . "https://github.com/Malabarba/aggressive-indent-mode")
-		      (:keywords "indent" "lisp" "maint" "tools"))])
- (ahungry-theme .
-		[(1 10 0)
-		 ((emacs
-		   (24)))
-		 "Ahungry color theme for Emacs.  Make sure to (load-theme 'ahungry)." tar
-		 ((:keywords "ahungry" "palette" "color" "theme" "emacs" "color-theme" "deftheme")
-		  (:url . "https://github.com/ahungry/color-theme-ahungry"))])
- (all .
-      [(1 0)
-       nil "Edit all lines matching a given regexp" single
-       ((:url . "http://elpa.gnu.org/packages/all.html")
-	(:keywords "matching"))])
- (ampc .
-       [(0 2)
-	nil "Asynchronous Music Player Controller" single
-	((:url . "http://elpa.gnu.org/packages/ampc.html")
-	 (:keywords "ampc" "mpc" "mpd"))])
- (arbitools .
-	    [(0 95)
-	     ((cl-lib
-	       (0 5)))
-	     "Package for chess tournaments administration" single
-	     ((:url . "http://elpa.gnu.org/packages/arbitools.html")
-	      (:keywords))])
- (ascii-art-to-unicode .
-		       [(1 12)
-			nil "a small artist adjunct" single
-			((:url . "http://www.gnuvola.org/software/aa2u/")
-			 (:keywords "ascii" "unicode" "box-drawing"))])
- (async .
-	[(1 9 2)
-	 nil "Asynchronous processing in Emacs" tar
-	 ((:keywords "async")
-	  (:url . "http://elpa.gnu.org/packages/async.html"))])
- (auctex .
-	 [(12 1 1)
-	  nil "Integrated environment for *TeX*" tar
-	  ((:url . "http://www.gnu.org/software/auctex/"))])
- (aumix-mode .
-	     [(7)
-	      nil "run the aumix program in a buffer" single
-	      ((:url . "http://user42.tuxfamily.org/aumix-mode/index.html")
-	       (:keywords "multimedia" "mixer" "aumix"))])
- (auto-correct .
-	       [(1 1 4)
-		nil "Remembers and automatically fixes past corrections" single
-		((:url . "http://elpa.gnu.org/packages/auto-correct.html")
-		 (:keywords "editing"))])
- (auto-overlays .
-		[(0 10 9)
-		 nil "Automatic regexp-delimited overlays" tar
-		 ((:keywords "extensions")
-		  (:url . "http://www.dr-qubit.org/emacs.php"))])
- (avy .
-      [(0 4 0)
-       ((emacs
-	 (24 1))
-	(cl-lib
-	 (0 5)))
-       "tree-based completion" tar
-       ((:keywords "point" "location")
-	(:url . "https://github.com/abo-abo/avy"))])
- (bbdb .
-       [(3 2)
-	((emacs
-	  (24)))
-	"core of BBDB" tar
-	((:url . "http://elpa.gnu.org/packages/bbdb.html"))])
- (beacon .
-	 [(1 3 3)
-	  ((seq
-	    (2 14)))
-	  "Highlight the cursor whenever the window scrolls" single
-	  ((:url . "https://github.com/Malabarba/beacon")
-	   (:keywords "convenience"))])
- (brief .
-	[(5 87)
-	 nil "Brief Editor Emulator (Brief Mode)" tar
-	 ((:keywords "brief" "emulations" "crisp")
-	  (:url . "http://elpa.gnu.org/packages/brief.html"))])
- (bug-hunter .
-	     [(1 3 1)
-	      ((seq
-		(1 3))
-	       (cl-lib
-		(0 5)))
-	      "Hunt down errors by bisecting elisp files" single
-	      ((:url . "https://github.com/Malabarba/elisp-bug-hunter")
-	       (:keywords "lisp"))])
- (caps-lock .
-	    [(1 0)
-	     nil "Caps-lock as a minor mode" single
-	     ((:url . "http://elpa.gnu.org/packages/caps-lock.html")
-	      (:keywords))])
- (captain .
-	  [(1 0 3)
-	   nil "CAPiTalization is Automatic IN emacs" single
-	   ((:url . "http://elpa.gnu.org/packages/captain.html")
-	    (:keywords "editing"))])
- (chess .
-	[(2 0 4)
-	 ((cl-lib
-	   (0 5)))
-	 "Play chess in GNU Emacs" tar
-	 ((:keywords "games")
-	  (:url . "http://elpa.gnu.org/packages/chess.html"))])
- (cl-generic .
-	     [(0 3)
-	      nil "Forward cl-generic compatibility for Emacs<25" single
-	      ((:url . "http://elpa.gnu.org/packages/cl-generic.html")
-	       (:keywords))])
- (cl-lib .
-	 [(0 6 1)
-	  nil "Properly prefixed CL functions and macros" single
-	  ((:url . "http://elpa.gnu.org/packages/cl-lib.html")
-	   (:keywords))])
- (cl-print .
-	   [(1 0)
-	    ((emacs
-	      (25)))
-	    "CL-style generic printing" single
-	    ((:url . "http://elpa.gnu.org/packages/cl-print.html")
-	     (:keywords))])
- (cobol-mode .
-	     [(1 0 0)
-	      ((cl-lib
-		(0 5)))
-	      "Mode for editing COBOL code" single
-	      ((:url . "http://elpa.gnu.org/packages/cobol-mode.html")
-	       (:keywords "languages"))])
- (coffee-mode .
-	      [(0 4 1 1)
-	       nil "Major mode for CoffeeScript files" single
-	       ((:url . "http://github.com/defunkt/coffee-mode")
-		(:keywords "coffeescript" "major" "mode"))])
- (compact-docstrings .
-		     [(0 1)
-		      nil "Shrink blank lines in docstrings and doc comments" single
-		      ((:url . "https://github.com/cpitclaudel/compact-docstrings")
-		       (:keywords "convenience" "faces" "lisp" "maint" "c"))])
- (company .
-	  [(0 9 7)
-	   ((emacs
-	     (24 3)))
-	   "Modular text completion framework" tar
-	   ((:keywords "abbrev" "convenience" "matching")
-	    (:url . "http://company-mode.github.io/"))])
- (company-ebdb .
-	       [(1)
-		((company
-		  (0 9 4))
-		 (ebdb
-		  (0 2)))
-		"company-mode completion backend for EBDB in message-mode" single
-		((:url . "http://elpa.gnu.org/packages/company-ebdb.html")
-		 (:keywords))])
- (company-math .
-	       [(1 1)
-		((company
-		  (0 8 0))
-		 (math-symbol-lists
-		  (1 0)))
-		"Completion backends for unicode math symbols and latex tags" tar
-		((:keywords "unicode" "symbols" "completion")
-		 (:url . "https://github.com/vspinu/company-math"))])
- (company-statistics .
-		     [(0 2 3)
-		      ((emacs
-			(24 3))
-		       (company
-			(0 8 5)))
-		      "Sort candidates using completion history" tar
-		      ((:keywords "abbrev" "convenience" "matching")
-		       (:url . "https://github.com/company-mode/company-statistics"))])
- (context-coloring .
-		   [(8 1 0)
-		    ((emacs
-		      (24 3)))
-		    "Highlight by scope" tar
-		    ((:keywords "convenience" "faces" "tools")
-		     (:url . "https://github.com/jacksonrayhamilton/context-coloring"))])
- (counsel-ebdb .
-	       [(1)
-		((ivy
-		  (0 8 0))
-		 (ebdb
-		  (0 2)))
-		"Counsel integration for EBDB" single
-		((:url . "http://elpa.gnu.org/packages/counsel-ebdb.html")
-		 (:keywords))])
- (crisp .
-	[(1 3 6)
-	 nil "CRiSP/Brief Emacs emulator" single
-	 ((:url . "http://elpa.gnu.org/packages/crisp.html")
-	  (:keywords "emulations" "brief" "crisp"))])
- (csv-mode .
-	   [(1 7)
-	    nil "Major mode for editing comma/char separated values" single
-	    ((:url . "http://elpa.gnu.org/packages/csv-mode.html")
-	     (:keywords "convenience"))])
- (cycle-quotes .
-	       [(0 1)
-		nil "Cycle between quote styles" tar
-		((:keywords "convenience")
-		 (:url . "http://elpa.gnu.org/packages/cycle-quotes.html"))])
- (darkroom .
-	   [(0 1)
-	    ((cl-lib
-	      (0 5)))
-	    "Remove visual distractions and focus on writing" single
-	    ((:url . "http://elpa.gnu.org/packages/darkroom.html")
-	     (:keywords "convenience" "emulations"))])
- (dash .
-       [(2 12 0)
-	nil "A modern list library for Emacs" tar
-	((:keywords "lists")
-	 (:url . "http://elpa.gnu.org/packages/dash.html"))])
- (dbus-codegen .
-	       [(0 1)
-		((cl-lib
-		  (0 5)))
-		"Lisp code generation for D-Bus." single
-		((:url . "http://elpa.gnu.org/packages/dbus-codegen.html")
-		 (:keywords "comm" "dbus" "convenience"))])
- (debbugs .
-	  [(0 16)
-	   ((soap-client
-	     (3 1 5))
-	    (cl-lib
-	     (0 5)))
-	   "SOAP library to access debbugs servers" tar
-	   ((:keywords "comm" "hypermedia")
-	    (:url . "http://elpa.gnu.org/packages/debbugs.html"))])
- (delight .
-	  [(1 5)
-	   nil "A dimmer switch for your lighter text." single
-	   ((:url . "https://savannah.nongnu.org/projects/delight")
-	    (:keywords "convenience"))])
- (dict-tree .
-	    [(0 14)
-	     ((trie
-	       (0 3))
-	      (tNFA
-	       (0 1 1))
-	      (heap
-	       (0 3)))
-	     "Dictionary data structure" single
-	     ((:url . "http://www.dr-qubit.org/emacs.php")
-	      (:keywords "extensions" "matching" "data structures trie" "tree" "dictionary" "completion" "regexp"))])
- (diff-hl .
-	  [(1 8 4)
-	   ((cl-lib
-	     (0 2)))
-	   "Highlight uncommitted changes using VC" tar
-	   ((:keywords "vc" "diff")
-	    (:url . "https://github.com/dgutov/diff-hl"))])
- (diffview .
-	   [(1 0)
-	    nil "View diffs in side-by-side format" single
-	    ((:url . "https://github.com/mgalgs/diffview-mode")
-	     (:keywords "convenience" "diff"))])
- (dired-du .
-	   [(0 5 1)
-	    ((emacs
-	      (24 4))
-	     (cl-lib
-	      (0 5)))
-	    "Dired with recursive directory sizes" tar
-	    ((:keywords "files" "unix" "convenience")
-	     (:url . "http://elpa.gnu.org/packages/dired-du.html"))])
- (dismal .
-	 [(1 5)
-	  ((cl-lib
-	    (0)))
-	  "Dis Mode Ain't Lotus: Spreadsheet program Emacs" tar
-	  ((:url . "http://elpa.gnu.org/packages/dismal.html"))])
- (djvu .
-       [(0 5)
-	nil "Edit and view Djvu files via djvused" single
-	((:url . "http://elpa.gnu.org/packages/djvu.html")
-	 (:keywords "files" "wp"))])
- (docbook .
-	  [(0 1)
-	   nil "Info-like viewer for DocBook" single
-	   ((:url . "http://elpa.gnu.org/packages/docbook.html")
-	    (:keywords "docs" "help"))])
- (dts-mode .
-	   [(0 1 0)
-	    nil "Major mode for Device Tree source files" single
-	    ((:url . "http://elpa.gnu.org/packages/dts-mode.html")
-	     (:keywords "languages"))])
- (easy-kill .
-	    [(0 9 3)
-	     ((emacs
-	       (24))
-	      (cl-lib
-	       (0 5)))
-	     "kill & mark things easily" tar
-	     ((:keywords "killing" "convenience")
-	      (:url . "https://github.com/leoliu/easy-kill"))])
- (ebdb .
-       [(0 6)
-	((emacs
-	  (25 1))
-	 (cl-lib
-	  (0 5))
-	 (seq
-	  (2 15)))
-	"Contact management package" tar
-	((:keywords "convenience" "mail")
-	 (:url . "https://github.com/girzel/ebdb"))])
- (ebdb-gnorb .
-	     [(1 0 2)
-	      ((gnorb
-		(1 1 0))
-	       (ebdb
-		(0 2)))
-	      "Utilities for connecting EBDB to Gnorb" single
-	      ((:url . "http://elpa.gnu.org/packages/ebdb-gnorb.html")
-	       (:keywords))])
- (ebdb-i18n-chn .
-		[(1 2)
-		 ((pyim
-		   (1 6 0))
-		  (ebdb
-		   (0 2)))
-		 "China-specific internationalization support for EBDB" single
-		 ((:url . "http://elpa.gnu.org/packages/ebdb-i18n-chn.html")
-		  (:keywords))])
- (ediprolog .
-	    [(1 2)
-	     nil "Emacs Does Interactive Prolog" single
-	     ((:url . "http://elpa.gnu.org/packages/ediprolog.html")
-	      (:keywords "languages" "processes"))])
- (eglot .
-	[(1 1)
-	 ((emacs
-	   (26 1))
-	  (jsonrpc
-	   (1 0 6)))
-	 "Client for Language Server Protocol (LSP) servers" tar
-	 ((:keywords "convenience" "languages")
-	  (:url . "https://github.com/joaotavora/eglot"))])
- (el-search .
-	    [(1 7 15)
-	     ((emacs
-	       (25))
-	      (stream
-	       (2 2 4))
-	      (cl-print
-	       (1 0)))
-	     "Expression based interactive search for Emacs Lisp" tar
-	     ((:keywords "lisp")
-	      (:url . "http://elpa.gnu.org/packages/el-search.html"))])
- (eldoc-eval .
-	     [(0 1)
-	      nil "Enable eldoc support when minibuffer is in use." single
-	      ((:url . "http://elpa.gnu.org/packages/eldoc-eval.html")
-	       (:keywords))])
- (electric-spacing .
-		   [(5 0)
-		    nil "Insert operators with surrounding spaces smartly" single
-		    ((:url . "http://elpa.gnu.org/packages/electric-spacing.html")
-		     (:keywords))])
- (enwc .
-       [(2 0)
-	((emacs
-	  (25 1)))
-	"The Emacs Network Client" tar
-	((:keywords "external" "network" "wicd" "manager" "nm")
-	 (:url . "http://elpa.gnu.org/packages/enwc.html"))])
- (epoch-view .
-	     [(0 0 1)
-	      nil "Minor mode to visualize epoch timestamps" single
-	      ((:url . "http://elpa.gnu.org/packages/epoch-view.html")
-	       (:keywords "data" "timestamp" "epoch" "unix"))])
- (ergoemacs-mode .
-		 [(5 16 10 12)
-		  ((emacs
-		    (24 1))
-		   (undo-tree
-		    (0 6 5))
-		   (cl-lib
-		    (0 5)))
-		  "Emacs mode based on common modern interface and ergonomics." tar
-		  ((:keywords "convenience")
-		   (:url . "https://github.com/ergoemacs/ergoemacs-mode"))])
- (excorporate .
-	      [(0 8 1)
-	       ((emacs
-		 (24 1))
-		(fsm
-		 (0 2))
-		(soap-client
-		 (3 1 4))
-		(url-http-ntlm
-		 (2 0 3))
-		(nadvice
-		 (0 3)))
-	       "Exchange integration" tar
-	       ((:keywords "calendar")
-		(:url . "http://elpa.gnu.org/packages/excorporate.html"))])
- (exwm .
-       [(0 20)
-	((xelb
-	  (0 16)))
-	"Emacs X Window Manager" tar
-	((:keywords "unix")
-	 (:url . "https://github.com/ch11ng/exwm"))])
- (f90-interface-browser .
-			[(1 1)
-			 nil "Parse and browse f90 interfaces" single
-			 ((:url . "http://github.com/wence-/f90-iface/")
-			  (:keywords))])
- (filladapt .
-	    [(2 12 2)
-	     ((emacs
-	       (24 4)))
-	     "Adaptive fill" single
-	     ((:url . "http://elpa.gnu.org/packages/filladapt.html")
-	      (:keywords))])
- (flylisp .
-	  [(0 2)
-	   ((emacs
-	     (24 1))
-	    (cl-lib
-	     (0 4)))
-	   "Color unbalanced parentheses and parentheses inconsistent with indentation" single
-	   ((:url . "http://elpa.gnu.org/packages/flylisp.html")
-	    (:keywords))])
- (fountain-mode .
-		[(2 6 1)
-		 ((emacs
-		   (24 5)))
-		 "Major mode for screenwriting in Fountain markup" single
-		 ((:url . "http://elpa.gnu.org/packages/fountain-mode.html")
-		  (:keywords "wp" "text"))])
- (frame-tabs .
-	     [(1 1)
-	      nil "show buffer tabs in side window" single
-	      ((:url . "http://elpa.gnu.org/packages/frame-tabs.html")
-	       (:keywords "frames" "tabs"))])
- (fsm .
-      [(0 2 1)
-       ((emacs
-	 (24 1))
-	(cl-lib
-	 (0 5)))
-       "state machine library" single
-       ((:url . "http://elpa.gnu.org/packages/fsm.html")
-	(:keywords "extensions"))])
- (ggtags .
-	 [(0 8 13)
-	  ((emacs
-	    (24))
-	   (cl-lib
-	    (0 5)))
-	  "emacs frontend to GNU Global source code tagging system" single
-	  ((:url . "https://github.com/leoliu/ggtags")
-	   (:keywords "tools" "convenience"))])
- (gited .
-	[(0 5 3)
-	 ((emacs
-	   (24 4))
-	  (cl-lib
-	   (0 5)))
-	 "Operate on Git branches like dired" tar
-	 ((:keywords "git" "vc" "convenience")
-	  (:url . "http://elpa.gnu.org/packages/gited.html"))])
- (gle-mode .
-	   [(1 1)
-	    ((cl-lib
-	      (0 5)))
-	    "Major mode to edit Graphics Layout Engine files" single
-	    ((:url . "http://elpa.gnu.org/packages/gle-mode.html")
-	     (:keywords))])
- (gnome-c-style .
-		[(0 1)
-		 nil "minor mode for editing GNOME-style C source code" tar
-		 ((:keywords "gnome" "c" "coding style")
-		  (:url . "http://elpa.gnu.org/packages/gnome-c-style.html"))])
- (gnorb .
-	[(1 6 0)
-	 ((cl-lib
-	   (0 5)))
-	 "Glue code between Gnus, Org, and BBDB" tar
-	 ((:keywords "mail" "org" "gnus" "bbdb" "todo" "task")
-	  (:url . "http://elpa.gnu.org/packages/gnorb.html"))])
- (gnugo .
-	[(3 1 0)
-	 ((ascii-art-to-unicode
-	   (1 5))
-	  (xpm
-	   (1 0 1))
-	  (cl-lib
-	   (0 5)))
-	 "play GNU Go in a buffer" tar
-	 ((:keywords "games" "processes")
-	  (:url . "http://www.gnuvola.org/software/gnugo/"))])
- (gnus-mock .
-	    [(0 3 0)
-	     nil "Mock Gnus installation for testing" tar
-	     ((:url . "http://elpa.gnu.org/packages/gnus-mock.html"))])
- (heap .
-       [(0 5)
-	nil "Heap (a.k.a. priority queue) data structure" single
-	((:url . "http://www.dr-qubit.org/emacs.php")
-	 (:keywords "extensions" "data structures" "heap" "priority queue"))])
- (helm-ebdb .
-	    [(1)
-	     ((helm
-	       (1 0))
-	      (ebdb
-	       (0 2)))
-	     "Helm integration for EBDB" single
-	     ((:url . "http://elpa.gnu.org/packages/helm-ebdb.html")
-	      (:keywords "mail" "convenience"))])
- (highlight-escape-sequences .
-			     [(0 4)
-			      nil "Highlight escape sequences" single
-			      ((:url . "https://github.com/dgutov/highlight-escape-sequences")
-			       (:keywords "convenience"))])
- (hook-helpers .
-	       [(1 1 1)
-		((emacs
-		  (25 1)))
-		"Anonymous, modifiable hook functions" tar
-		((:keywords "development" "hooks")
-		 (:url . "https://savannah.nongnu.org/projects/hook-helpers-el/"))])
- (html5-schema .
-	       [(0 1)
-		nil "Add HTML5 schemas for use by nXML" tar
-		((:keywords "html" "xml")
-		 (:url . "https://github.com/validator/validator"))])
- (hydra .
-	[(0 14 0)
-	 ((cl-lib
-	   (0 5)))
-	 "Make bindings that stick around." tar
-	 ((:keywords "bindings")
-	  (:url . "https://github.com/abo-abo/hydra"))])
- (hyperbole .
-	    [(7 0 2)
-	     ((emacs
-	       (24 4)))
-	     "GNU Hyperbole: The Everyday Hypertextual Information Manager" tar
-	     ((:keywords "comm" "convenience" "files" "frames" "hypermedia" "languages" "mail" "matching" "mouse" "multimedia" "outlines" "tools" "wp")
-	      (:url . "http://www.gnu.org/software/hyperbole"))])
- (ioccur .
-	 [(2 4)
-	  nil "Incremental occur" single
-	  ((:url . "http://elpa.gnu.org/packages/ioccur.html")
-	   (:keywords))])
- (iterators .
-	    [(0 1 1)
-	     ((emacs
-	       (25)))
-	     "Functions for working with iterators" single
-	     ((:url . "http://elpa.gnu.org/packages/iterators.html")
-	      (:keywords "extensions" "elisp"))])
- (ivy .
-      [(0 10 0)
-       ((emacs
-	 (24 1)))
-       "Incremental Vertical completYon" tar
-       ((:keywords "matching")
-	(:url . "https://github.com/abo-abo/swiper"))])
- (javaimp .
-	  [(0 6)
-	   nil "Add and reorder Java import statements in Maven projects" tar
-	   ((:keywords "java" "maven" "programming")
-	    (:url . "http://elpa.gnu.org/packages/javaimp.html"))])
- (jgraph-mode .
-	      [(1 1)
-	       ((cl-lib
-		 (0 5)))
-	       "Major mode for Jgraph files" single
-	       ((:url . "http://elpa.gnu.org/packages/jgraph-mode.html")
-		(:keywords "tex" "wp"))])
- (js2-mode .
-	   [(20180301)
-	    ((emacs
-	      (24 1))
-	     (cl-lib
-	      (0 5)))
-	    "Improved JavaScript editing mode" tar
-	    ((:keywords "languages" "javascript")
-	     (:url . "https://github.com/mooz/js2-mode/"))])
- (json-mode .
-	    [(0 1)
-	     ((emacs
-	       (25 1)))
-	     "Major mode for editing JSON files" single
-	     ((:url . "http://elpa.gnu.org/packages/json-mode.html")
-	      (:keywords "data"))])
- (jsonrpc .
-	  [(1 0 6)
-	   ((emacs
-	     (25 2)))
-	   "JSON-RPC library" single
-	   ((:url . "http://elpa.gnu.org/packages/jsonrpc.html")
-	    (:keywords "processes" "languages" "extensions"))])
- (jumpc .
-	[(3 0)
-	 nil "jump to previous insertion points" single
-	 ((:url . "http://elpa.gnu.org/packages/jumpc.html")
-	  (:keywords))])
- (kmb .
-      [(0 1)
-       ((emacs
-	 (24 1)))
-       "Kill buffers matching a regexp w/o confirmation" single
-       ((:url . "http://elpa.gnu.org/packages/kmb.html")
-	(:keywords "lisp" "convenience"))])
- (landmark .
-	   [(1 0)
-	    nil "Neural-network robot that learns landmarks" single
-	    ((:url . "http://elpa.gnu.org/packages/landmark.html")
-	     (:keywords "games" "neural network" "adaptive search" "chemotaxis"))])
- (let-alist .
-   [(1 0 5)
-    ((emacs
-      (24 1)))
-    "Easily let-bind values of an assoc-list by their names" single
-    ((:url . "http://elpa.gnu.org/packages/let-alist.html")
-     (:keywords "extensions" "lisp"))])
- (lex .
-      [(1 1)
-       nil "Lexical analyser construction" tar
-       ((:url . "http://elpa.gnu.org/packages/lex.html"))])
- (lmc .
-      [(1 4)
-       ((emacs
-	 (24))
-	(cl-lib
-	 (0 5)))
-       "Little Man Computer in Elisp" single
-       ((:url . "http://elpa.gnu.org/packages/lmc.html")
-	(:keywords))])
- (load-dir .
-	   [(0 0 5)
-	    ((cl-lib
-	      (0 5)))
-	    "Load all Emacs Lisp files in a given directory" single
-	    ((:url . "http://elpa.gnu.org/packages/load-dir.html")
-	     (:keywords "lisp" "files" "convenience"))])
- (load-relative .
-		[(1 3)
-		 nil "relative file load (within a multi-file Emacs package)" single
-		 ((:url . "http://github.com/rocky/emacs-load-relative")
-		  (:keywords "internal"))])
- (loc-changes .
-	      [(1 2)
-	       nil "keep track of positions even after buffer changes" single
-	       ((:url . "http://github.com/rocky/emacs-loc-changes")
-		(:keywords))])
- (loccur .
-	 [(1 2 3)
-	  ((cl-lib
-	    (0)))
-	  "Perform an occur-like folding in current buffer" single
-	  ((:url . "https://github.com/fourier/loccur")
-	   (:keywords "matching"))])
- (markchars .
-	    [(0 2 1)
-	     nil "Mark chars fitting certain characteristics" single
-	     ((:url . "http://elpa.gnu.org/packages/markchars.html")
-	      (:keywords))])
- (math-symbol-lists .
-		    [(1 1)
-		     nil "Lists of Unicode math symbols and latex commands" tar
-		     ((:keywords "unicode" "symbols" "mathematics")
-		      (:url . "https://github.com/vspinu/math-symbol-lists"))])
- (memory-usage .
-	       [(0 2)
-		nil "Analyze the memory usage of Emacs in various ways" single
-		((:url . "http://elpa.gnu.org/packages/memory-usage.html")
-		 (:keywords "maint"))])
- (metar .
-	[(0 3)
-	 ((cl-lib
-	   (0 5)))
-	 "Retrieve and decode METAR weather information" single
-	 ((:url . "http://elpa.gnu.org/packages/metar.html")
-	  (:keywords "comm"))])
- (midi-kbd .
-	   [(0 2)
-	    ((emacs
-	      (25)))
-	    "Create keyboard events from Midi input" single
-	    ((:url . "http://elpa.gnu.org/packages/midi-kbd.html")
-	     (:keywords "convenience" "hardware" "multimedia"))])
- (mines .
-	[(1 6)
-	 ((emacs
-	   (24 4))
-	  (cl-lib
-	   (0 5)))
-	 "Minesweeper game" tar
-	 ((:keywords "games")
-	  (:url . "https://github.com/calancha/Minesweeper"))])
- (minibuffer-line .
-		  [(0 1)
-		   nil "Display status info in the minibuffer window" single
-		   ((:url . "http://elpa.gnu.org/packages/minibuffer-line.html")
-		    (:keywords))])
- (minimap .
-	  [(1 2)
-	   nil "Sidebar showing a \"mini-map\" of a buffer" single
-	   ((:url . "http://elpa.gnu.org/packages/minimap.html")
-	    (:keywords))])
- (mmm-mode .
-	   [(0 5 7)
-	    ((cl-lib
-	      (0 2)))
-	    "Allow Multiple Major Modes in a buffer" tar
-	    ((:keywords "convenience" "faces" "languages" "tools")
-	     (:url . "https://github.com/purcell/mmm-mode"))])
- (multishell .
-	     [(1 1 5)
-	      ((cl-lib
-		(0 5)))
-	      "Easily use multiple shell buffers, local and remote" tar
-	      ((:keywords "processes")
-	       (:url . "https://github.com/kenmanheimer/EmacsMultishell"))])
- (muse .
-       [(3 20 2)
-	nil "Authoring and publishing tool for Emacs" tar
-	((:keywords "hypermedia")
-	 (:url . "http://mwolson.org/projects/EmacsMuse.html"))])
- (myers .
-	[(0 1)
-	 ((emacs
-	   (25)))
-	 "Random-access singly-linked lists" single
-	 ((:url . "http://elpa.gnu.org/packages/myers.html")
-	  (:keywords "list" "containers"))])
- (nadvice .
-	  [(0 3)
-	   nil "Forward compatibility for Emacs-24.4's nadvice" single
-	   ((:url . "http://elpa.gnu.org/packages/nadvice.html")
-	    (:keywords))])
- (nameless .
-	   [(1 0 2)
-	    ((emacs
-	      (24 4)))
-	    "Hide package namespace in your emacs-lisp code" single
-	    ((:url . "https://github.com/Malabarba/nameless")
-	     (:keywords "convenience" "lisp"))])
- (names .
-	[(20151201 0)
-	 ((emacs
-	   (24 1))
-	  (cl-lib
-	   (0 5))
-	  (nadvice
-	   (0 3)))
-	 "Namespaces for emacs-lisp. Avoid name clobbering without hiding symbols." tar
-	 ((:keywords "extensions" "lisp")
-	  (:url . "https://github.com/Malabarba/names"))])
- (nhexl-mode .
-	     [(1 0)
-	      ((emacs
-		(24 4))
-	       (cl-lib
-		(0 5)))
-	      "Minor mode to edit files via hex-dump format" single
-	      ((:url . "http://elpa.gnu.org/packages/nhexl-mode.html")
-	       (:keywords "data"))])
- (nlinum .
-	 [(1 8 1)
-	  nil "Show line numbers in the margin" single
-	  ((:url . "http://elpa.gnu.org/packages/nlinum.html")
-	   (:keywords "convenience"))])
- (notes-mode .
-	     [(1 30)
-	      nil "Indexing system for on-line note-taking" tar
-	      ((:url . "http://elpa.gnu.org/packages/notes-mode.html"))])
- (ntlm .
-       [(2 1 0)
-	nil "NTLM (NT LanManager) authentication support" single
-	((:url . "http://elpa.gnu.org/packages/ntlm.html")
-	 (:keywords "ntlm" "sasl" "comm"))])
- (num3-mode .
-	    [(1 3)
-	     nil "highlight groups of digits in long numbers" single
-	     ((:url . "http://elpa.gnu.org/packages/num3-mode.html")
-	      (:keywords "faces" "minor-mode"))])
- (oauth2 .
-	 [(0 11)
-	  nil "OAuth 2.0 Authorization Protocol" single
-	  ((:url . "http://elpa.gnu.org/packages/oauth2.html")
-	   (:keywords "comm"))])
- (omn-mode .
-	   [(1 2)
-	    nil "Support for OWL Manchester Notation" single
-	    ((:url . "http://elpa.gnu.org/packages/omn-mode.html")
-	     (:keywords))])
- (on-screen .
-	    [(1 3 2)
-	     ((cl-lib
-	       (0)))
-	     "guide your eyes while scrolling" single
-	     ((:url . "https://github.com/michael-heerdegen/on-screen.el")
-	      (:keywords "convenience"))])
- (org .
-      [(9 1 14)
-       nil "Outline-based notes management and organizer" tar
-       ((:keywords "outlines" "hypermedia" "calendar" "wp")
-	(:url . "http://elpa.gnu.org/packages/org.html"))])
- (org-edna .
-	   [(1 0 -2 8)
-	    ((emacs
-	      (25 1))
-	     (seq
-	      (2 19))
-	     (org
-	      (9 0 5)))
-	    "Extensible Dependencies 'N' Actions" tar
-	    ((:keywords "convenience" "text" "org")
-	     (:url . "https://savannah.nongnu.org/projects/org-edna-el/"))])
- (orgalist .
-	   [(1 9)
-	    ((emacs
-	      (24 4)))
-	    "Manage Org-like lists in non-Org buffers" single
-	    ((:url . "http://elpa.gnu.org/packages/orgalist.html")
-	     (:keywords "convenience"))])
- (osc .
-      [(0 1)
-       nil "Open Sound Control protocol library" single
-       ((:url . "http://elpa.gnu.org/packages/osc.html")
-	(:keywords "comm" "processes" "multimedia"))])
- (other-frame-window .
-		     [(1 0 6)
-		      ((emacs
-			(24 4)))
-		      "Minor mode to enable global prefix keys for other frame/window buffer placement" single
-		      ((:url . "http://elpa.gnu.org/packages/other-frame-window.html")
-		       (:keywords "frame" "window"))])
- (pabbrev .
-	  [(4 2 1)
-	   nil "Predictive abbreviation expansion" single
-	   ((:url . "http://elpa.gnu.org/packages/pabbrev.html")
-	    (:keywords))])
- (paced .
-	[(1 1 3)
-	 ((emacs
-	   (25 1))
-	  (async
-	   (1 9 1)))
-	 "Predictive Abbreviation Completion and Expansion using Dictionaries" tar
-	 ((:keywords "convenience" "completion")
-	  (:url . "https://savannah.nongnu.org/projects/paced-el/"))])
- (parsec .
-	 [(0 1 3)
-	  ((emacs
-	    (24))
-	   (cl-lib
-	    (0 5)))
-	  "Parser combinator library" tar
-	  ((:keywords "extensions")
-	   (:url . "https://github.com/cute-jumper/parsec.el"))])
- (pinentry .
-	   [(0 1)
-	    nil "GnuPG Pinentry server implementation" single
-	    ((:url . "http://elpa.gnu.org/packages/pinentry.html")
-	     (:keywords "gnupg"))])
- (poker .
-	[(0 2)
-	 nil "Texas hold 'em poker" single
-	 ((:url . "http://elpa.gnu.org/packages/poker.html")
-	  (:keywords "games"))])
- (posframe .
-	   [(0 3 0)
-	    ((emacs
-	      (26)))
-	    "Pop a posframe (just a frame) at point" single
-	    ((:url . "https://github.com/tumashu/posframe")
-	     (:keywords "tooltip"))])
- (psgml .
-	[(1 3 4)
-	 nil "SGML-editing mode with parsing support" tar
-	 ((:keywords "languages")
-	  (:url . "http://elpa.gnu.org/packages/psgml.html"))])
- (python .
-	 [(0 26 1)
-	  ((emacs
-	    (24 1))
-	   (cl-lib
-	    (1 0)))
-	  "Python's flying circus support for Emacs" single
-	  ((:url . "https://github.com/fgallina/python.el")
-	   (:keywords "languages"))])
- (quarter-plane .
-		[(0 1)
-		 nil "Minor mode for quarter-plane style editing" single
-		 ((:url . "http://elpa.gnu.org/packages/quarter-plane.html")
-		  (:keywords "convenience" "wp"))])
- (queue .
-	[(0 2)
-	 nil "Queue data structure" single
-	 ((:url . "http://www.dr-qubit.org/emacs.php")
-	  (:keywords "extensions" "data structures" "queue"))])
- (rainbow-mode .
-	       [(1 0 1)
-		nil "Colorize color names in buffers" single
-		((:url . "http://elpa.gnu.org/packages/rainbow-mode.html")
-		 (:keywords "faces"))])
- (rbit .
-       [(0 1)
-	nil "Red-black persistent interval trees" single
-	((:url . "http://elpa.gnu.org/packages/rbit.html")
-	 (:keywords "data structures" "binary tree" "intervals"))])
- (rcirc-color .
-	      [(0 4 1)
-	       ((emacs
-		 (24 4)))
-	       "color nicks" single
-	       ((:url . "http://elpa.gnu.org/packages/rcirc-color.html")
-		(:keywords "comm"))])
- (rcirc-menu .
-	     [(1 1)
-	      nil "A menu of all your rcirc connections" single
-	      ((:url . "http://elpa.gnu.org/packages/rcirc-menu.html")
-	       (:keywords "comm"))])
- (realgud .
-	  [(1 4 5)
-	   ((load-relative
-	     (1 2))
-	    (loc-changes
-	     (1 2))
-	    (test-simple
-	     (1 2 0))
-	    (cl-lib
-	     (0 5))
-	    (emacs
-	     (24)))
-	   "A modular front-end for interacting with external debuggers" tar
-	   ((:keywords "gdb" "python" "perl" "go" "bash" "nodejs" "zsh" "bashdb" "zshdb" "remake" "make" "trepan" "perldb" "pdb")
-	    (:url . "http://github.com/realgud/realgud/"))])
- (register-list .
-		[(0 1)
-		 nil "Interactively list/edit registers" single
-		 ((:url . "http://elpa.gnu.org/packages/register-list.html")
-		  (:keywords "register"))])
- (rich-minority .
-		[(1 0 1)
-		 ((cl-lib
-		   (0 5)))
-		 "Clean-up and Beautify the list of minor-modes." single
-		 ((:url . "https://github.com/Malabarba/rich-minority")
-		  (:keywords "mode-line" "faces"))])
- (rnc-mode .
-	   [(0 2)
-	    nil "Emacs mode to edit Relax-NG Compact files" single
-	    ((:url . "http://elpa.gnu.org/packages/rnc-mode.html")
-	     (:keywords "xml" "relaxng"))])
- (rudel .
-	[(0 3 1)
-	 ((emacs
-	   (24))
-	  (cl-lib
-	   (0 5))
-	  (cl-generic
-	   (0 3))
-	  (cl-print
-	   (1 0)))
-	 "A collaborative editing framework for Emacs" tar
-	 ((:keywords "rudel" "collaboration")
-	  (:url . "http://rudel.sourceforge.net/"))])
- (scroll-restore .
-		 [(1 0)
-		  nil "restore original position after scrolling" single
-		  ((:url . "http://elpa.gnu.org/packages/scroll-restore.html")
-		   (:keywords "scrolling"))])
- (sed-mode .
-	   [(1 0)
-	    nil "Major mode to edit sed scripts" single
-	    ((:url . "http://elpa.gnu.org/packages/sed-mode.html")
-	     (:keywords))])
- (seq .
-      [(2 20)
-       nil "Sequence manipulation functions" tar
-       ((:keywords "sequences")
-	(:url . "http://elpa.gnu.org/packages/seq.html"))])
- (shen-mode .
-	    [(0 1)
-	     nil "A major mode for editing shen source code" tar
-	     ((:keywords "languages" "shen")
-	      (:url . "http://elpa.gnu.org/packages/shen-mode.html"))])
- (sisu-mode .
-	    [(7 1 8)
-	     nil "Major mode for SiSU markup text" single
-	     ((:url . "http://www.sisudoc.org/")
-	      (:keywords "text" "syntax" "processes" "tools"))])
- (smart-yank .
-	     [(0 1 1)
-	      ((emacs
-		(24)))
-	      "A different approach of yank pointer handling" single
-	      ((:url . "http://elpa.gnu.org/packages/smart-yank.html")
-	       (:keywords "convenience"))])
- (sml-mode .
-	   [(6 9)
-	    ((emacs
-	      (24))
-	     (cl-lib
-	      (0 5)))
-	    "Major mode for editing (Standard) ML" single
-	    ((:url . "http://elpa.gnu.org/packages/sml-mode.html")
-	     (:keywords "sml"))])
- (soap-client .
-	      [(3 1 5)
-	       ((cl-lib
-		 (0 6 1)))
-	       "Access SOAP web services" tar
-	       ((:keywords "soap" "web-services" "comm" "hypermedia")
-		(:url . "http://elpa.gnu.org/packages/soap-client.html"))])
- (sokoban .
-	  [(1 4 6)
-	   ((emacs
-	     (23 1)))
-	   "Implementation of Sokoban for Emacs." tar
-	   ((:keywords "games")
-	    (:url . "http://elpa.gnu.org/packages/sokoban.html"))])
- (sotlisp .
-	  [(1 6 2)
-	   ((emacs
-	     (24 1)))
-	   "Write lisp at the speed of thought." single
-	   ((:url . "https://github.com/Malabarba/speed-of-thought-lisp")
-	    (:keywords "convenience" "lisp"))])
- (spinner .
-	  [(1 7 3)
-	   nil "Add spinners and progress-bars to the mode-line for ongoing operations" single
-	   ((:url . "https://github.com/Malabarba/spinner.el")
-	    (:keywords "processes" "mode-line"))])
- (sql-indent .
-	     [(1 3)
-	      ((cl-lib
-		(0 5)))
-	      "Support for indenting code in SQL files." tar
-	      ((:keywords "languages" "sql")
-	       (:url . "http://elpa.gnu.org/packages/sql-indent.html"))])
- (ssh-deploy .
-	     [(2 0)
-	      ((emacs
-		(24)))
-	      "Deployment via TRAMP, global or per directory." tar
-	      ((:keywords "tools" "convenience")
-	       (:url . "https://github.com/cjohansson/emacs-ssh-deploy"))])
- (stream .
-	 [(2 2 4)
-	  ((emacs
-	    (25)))
-	  "Implementation of streams" tar
-	  ((:keywords "stream" "laziness" "sequences")
-	   (:url . "http://elpa.gnu.org/packages/stream.html"))])
- (svg .
-      [(0 1)
-       ((emacs
-	 (25)))
-       "svg image creation functions" single
-       ((:url . "http://elpa.gnu.org/packages/svg.html")
-	(:keywords "image"))])
- (svg-clock .
-	    [(1 0)
-	     ((svg
-	       (0 1))
-	      (emacs
-	       (25 0)))
-	     "Analog clock using Scalable Vector Graphics" single
-	     ((:url . "http://elpa.gnu.org/packages/svg-clock.html")
-	      (:keywords "demo" "svg" "clock"))])
- (tNFA .
-       [(0 1 1)
-	((queue
-	  (0 1)))
-	"Tagged non-deterministic finite-state automata" single
-	((:url . "http://www.dr-qubit.org/emacs.php")
-	 (:keywords "extensions" "matching" "data structures tnfa" "nfa" "dfa" "finite state automata" "automata" "regexp"))])
- (temp-buffer-browse .
-		     [(1 5)
-		      ((emacs
-			(24)))
-		      "temp buffer browse mode" single
-		      ((:url . "http://elpa.gnu.org/packages/temp-buffer-browse.html")
-		       (:keywords "convenience"))])
- (test-simple .
-	      [(1 3 0)
-	       ((cl-lib
-		 (0)))
-	       "Simple Unit Test Framework for Emacs Lisp" single
-	       ((:url . "http://github.com/rocky/emacs-test-simple")
-		(:keywords "unit-test"))])
- (timerfunctions .
-		 [(1 4 2)
-		  ((cl-lib
-		    (0 5)))
-		  "Enhanced versions of some timer.el functions" single
-		  ((:url . "http://elpa.gnu.org/packages/timerfunctions.html")
-		   (:keywords))])
- (tiny .
-       [(0 2 1)
-	nil "Quickly generate linear ranges in Emacs" tar
-	((:keywords "convenience")
-	 (:url . "https://github.com/abo-abo/tiny"))])
- (tramp-theme .
-	      [(0 2)
-	       ((emacs
-		 (24 1)))
-	       "Custom theme for remote buffers" single
-	       ((:url . "http://elpa.gnu.org/packages/tramp-theme.html")
-		(:keywords "convenience" "faces"))])
- (transcribe .
-	     [(1 5 2)
-	      nil "Package for audio transcriptions" single
-	      ((:url . "http://elpa.gnu.org/packages/transcribe.html")
-	       (:keywords))])
- (trie .
-       [(0 4)
-	((tNFA
-	  (0 1 1))
-	 (heap
-	  (0 3)))
-	"Trie data structure" single
-	((:url . "http://www.dr-qubit.org/emacs.php")
-	 (:keywords "extensions" "matching" "data structures trie" "ternary search tree" "tree" "completion" "regexp"))])
- (undo-tree .
-	    [(0 6 5)
-	     nil "Treat undo history as a tree" single
-	     ((:url . "http://www.dr-qubit.org/emacs.php")
-	      (:keywords "convenience" "files" "undo" "redo" "history" "tree"))])
- (uni-confusables .
-		  [(0 1)
-		   nil "Unicode confusables table" tar
-		   ((:url . "http://elpa.gnu.org/packages/uni-confusables.html"))])
- (url-http-ntlm .
-		[(2 0 4)
-		 ((cl-lib
-		   (0 5))
-		  (ntlm
-		   (2 1 0)))
-		 "NTLM authentication for the url library" single
-		 ((:url . "http://elpa.gnu.org/packages/url-http-ntlm.html")
-		  (:keywords "comm" "data" "processes" "hypermedia"))])
- (validate .
-	   [(1 0 4)
-	    ((emacs
-	      (24 1))
-	     (cl-lib
-	      (0 5))
-	     (seq
-	      (2 16)))
-	    "Schema validation for Emacs-lisp" single
-	    ((:url . "http://elpa.gnu.org/packages/validate.html")
-	     (:keywords "lisp"))])
- (vdiff .
-	[(0 2 3)
-	 ((emacs
-	   (24 4))
-	  (hydra
-	   (0 13 0)))
-	 "A diff tool similar to  vimdiff" single
-	 ((:url . "https://github.com/justbur/emacs-vdiff")
-	  (:keywords "diff"))])
- (vigenere .
-	   [(1 0)
-	    ((emacs
-	      (25 1)))
-	    "Run a vigenere cipher on a block of text ;" single
-	    ((:url . "https://elpa.gnu.org/packages/vigenere.html")
-	     (:keywords "data" "vigenere" "cipher"))])
- (visual-fill .
-	      [(0 1)
-	       nil "Auto-refill paragraphs without modifying the buffer" single
-	       ((:url . "http://elpa.gnu.org/packages/visual-fill.html")
-		(:keywords))])
- (vlf .
-      [(1 7 1)
-       nil "View Large Files" tar
-       ((:keywords "large files" "utilities")
-	(:url . "https://github.com/m00natic/vlfi"))])
- (w3 .
-     [(4 0 49)
-      nil "Fully customizable, largely undocumented web browser for Emacs" tar
-      ((:keywords "faces" "help" "comm" "news" "mail" "processes" "mouse" "hypermedia")
-       (:url . "http://elpa.gnu.org/packages/w3.html"))])
- (wcheck-mode .
-	      [(2016 1 30)
-	       nil "General interface for text checkers" single
-	       ((:url . "https://github.com/tlikonen/wcheck-mode")
-		(:keywords "text" "spell" "check" "languages" "ispell"))])
- (wconf .
-	[(0 2 1)
-	 ((emacs
-	   (24 4)))
-	 "Minimal window layout manager" single
-	 ((:url . "https://github.com/ilohmar/wconf")
-	  (:keywords "windows" "frames" "layout"))])
- (web-server .
-	     [(0 1 1)
-	      ((emacs
-		(24 3)))
-	      "Emacs Web Server" tar
-	      ((:keywords "http" "server" "network")
-	       (:url . "https://github.com/eschulte/emacs-web-server"))])
- (websocket .
-	    [(1 8)
-	     ((cl-lib
-	       (0 5)))
-	     "Emacs WebSocket client and server" tar
-	     ((:keywords "communication" "websocket" "server")
-	      (:url . "http://elpa.gnu.org/packages/websocket.html"))])
- (which-key .
-	    [(3 3 0)
-	     ((emacs
-	       (24 4)))
-	     "Display available keybindings in popup" tar
-	     ((:url . "https://github.com/justbur/emacs-which-key"))])
- (windresize .
-	     [(0 1)
-	      nil "Resize windows interactively" single
-	      ((:url . "http://elpa.gnu.org/packages/windresize.html")
-	       (:keywords "window"))])
- (wisi .
-       [(1 1 6)
-	((cl-lib
-	  (0 4))
-	 (emacs
-	  (24 3)))
-	"Utilities for implementing an indentation/navigation engine using a generalized LALR parser" tar
-	((:keywords "parser" "indentation" "navigation")
-	 (:url . "http://www.nongnu.org/ada-mode/wisi/wisi.html"))])
- (wpuzzle .
-	  [(1 1)
-	   nil "find as many word in a given time" single
-	   ((:url . "http://elpa.gnu.org/packages/wpuzzle.html")
-	    (:keywords))])
- (xclip .
-	[(1 5)
-	 nil "Copy&paste GUI clipboard from text terminal" single
-	 ((:url . "http://elpa.gnu.org/packages/xclip.html")
-	  (:keywords "convenience" "tools"))])
- (xelb .
-       [(0 16)
-	((emacs
-	  (24 4))
-	 (cl-generic
-	  (0 2)))
-	"X protocol Emacs Lisp Binding" tar
-	((:keywords "unix")
-	 (:url . "https://github.com/ch11ng/xelb"))])
- (xpm .
-      [(1 0 4)
-       nil "edit XPM images" tar
-       ((:keywords "multimedia" "xpm")
-	(:url . "http://www.gnuvola.org/software/xpm/"))])
- (yasnippet .
-	    [(0 13 0)
-	     ((cl-lib
-	       (0 5)))
-	     "Yet another snippet extension for Emacs." tar
-	     ((:keywords "convenience" "emulation")
-	      (:url . "http://github.com/joaotavora/yasnippet"))])
- (yasnippet-classic-snippets .
-			     [(1 0 2)
-			      ((yasnippet
-				(0 9 1)))
-			      "\"Classic\" yasnippet snippets" tar
-			      ((:keywords "snippets")
-			       (:url . "http://elpa.gnu.org/packages/yasnippet-classic-snippets.html"))])
- (zones .
-	[(2018 11 20)
-	 nil "Zones of text - like multiple regions" single
-	 ((:url . "https://elpa.gnu.org/packages/zones.html")
-	  (:keywords "narrow" "restriction" "widen" "region" "zone"))])
- (ztree .
-	[(1 0 5)
-	 ((cl-lib
-	   (0)))
-	 "Text mode directory tree" tar
-	 ((:keywords "files" "tools")
-	  (:url . "https://github.com/fourier/ztree"))]))
diff --git a/elpa/archives/melpa/archive-contents b/elpa/archives/melpa/archive-contents
deleted file mode 100644
index 7c54285..0000000
--- a/elpa/archives/melpa/archive-contents
+++ /dev/null
@@ -1,2 +0,0 @@
-
-(1 (zzz-to-char . [(20180101 619) ((emacs (24 4)) (cl-lib (0 5)) (avy (0 3 0))) "Fancy version of `zap-to-char' command" single ((:commit . "db8d9e660ad18a15159779efe34d7a98ef0df535") (:keywords "convenience") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/zzz-to-char"))]) (zygospore . [(20140703 852) nil "reversible C-x 1 (delete-other-windows)" single ((:commit . "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8") (:authors ("Louis Kottmann" . "louis.kottmann@gmail.com")) (:maintainer "Louis Kottmann" . "louis.kottmann@gmail.com") (:url . "https://github.com/louiskottmann/zygospore.el"))]) (zweilight-theme . [(20170113 605) nil "A dark color theme for Emacs." single ((:commit . "7f45ab9e23164d65538edb2beb9692ecdc24c31e") (:authors ("Philip Arvidsson" . "contact@philiparvidsson.com")) (:maintainer "Philip Arvidsson" . "contact@philiparvidsson.com") (:url . "http://github.com/philiparvidsson/zweilight-emacs"))]) (ztree . [(20180512 1850) ((cl-lib (0))) "Text mode directory tree" tar ((:commit . "c54425a094353ec40a8179f9eab3596f76c6cf94") (:keywords "files" "tools") (:authors ("Alexey Veretennikov" . "alexey.veretennikov@gmail.com")) (:maintainer "Alexey Veretennikov" . "alexey.veretennikov@gmail.com") (:url . "https://github.com/fourier/ztree"))]) (zprint-mode . [(20181111 1945) ((emacs (24 3))) "reformat Clojure(Script) code using zprint" single ((:commit . "e1a7b7fe48e36e5cdf1269ab394d3cf779fdab58") (:keywords "tools") (:authors ("Paulus Esterhazy" . "pesterhazy@gmail.com")) (:maintainer "Paulus Esterhazy" . "pesterhazy@gmail.com") (:url . "https://github.com/pesterhazy/zprint-mode.el"))]) (zpresent . [(20180605 438) ((emacs (25 1)) (org-parser (0 4)) (dash (2 12 0)) (request (0 3 0))) "Simple presentation mode based on org files." single ((:keywords "comm") (:url . "https://bitbucket.org/zck/zpresent.el"))]) (zpl-mode . [(20180906 1059) ((emacs (24 3))) "ZIMPL major mode" single ((:commit . "35e7e23c6baf31b5e65dd7405c8ab9b13c70637e") (:url . "https://github.com/ax487/zpl-mode.git"))]) (zoutline . [(20180314 1759) nil "Simple outline library." single ((:commit . "b3ee0f0e0b916838c2d2c249beba74ffdb8d5699") (:keywords "outline") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/zoutline"))]) (zotxt . [(20180518 147) ((request-deferred (0 2 0))) "Tools to integrate emacs with Zotero via the zotxt plugin." tar ((:commit . "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"))]) (zotelo . [(20160602 949) ((cl-lib (0 5))) "Manage Zotero collections from emacs" single ((:commit . "d9dc089b9adfcc70a63f2a84269a12eb7cb4c748") (:keywords "zotero" "emacs" "reftex" "bibtex" "mozrepl" "bibliography manager") (:authors ("Spinu Vitalie")) (:maintainer "Spinu Vitalie") (:url . "https://github.com/vitoshka/zotelo"))]) (zossima . [(20121124 35) ((inf-ruby (2 2 3))) "Ruby from Emacs" tar ((:commit . "991676635c374d2a12714dcf48c1ce2d6f97a375") (:keywords "ruby" "convenience") (:authors ("Phil Hagelberg")) (:maintainer "Phil Hagelberg") (:url . "https://github.com/technomancy/zossima"))]) (zop-to-char . [(20160212 1554) ((cl-lib (0 5))) "A replacement of zap-to-char." single ((:commit . "00152aa666354b27e56e20565f186b363afa0dce") (:authors ("Thierry Volpiatto" . "thierry.volpiatto@gmail.com")) (:maintainer "Thierry Volpiatto" . "thierry.volpiatto@gmail.com") (:url . "https://github.com/thierryvolpiatto/zop-to-char"))]) (zoom-window . [(20170302 827) ((emacs (24 3))) "Zoom window like tmux" single ((:commit . "cd6ecc103fc30b171bda7daf1f44a550854d0dbf") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-zoom-window"))]) (zoom . [(20180310 1221) ((emacs (24 4))) "Fixed and automatic balanced window layout" single ((:commit . "2cdb15c9e753222c8600120edecfb46c2fbfae5d") (:keywords "frames") (:authors ("Andrea Cardaci" . "cyrus.and@gmail.com")) (:maintainer "Andrea Cardaci" . "cyrus.and@gmail.com") (:url . "https://github.com/cyrus-and/zoom"))]) (zone-sl . [(20160201 1210) ((emacs (24 3))) "Zone out with steam locomotives." single ((:commit . "7ec22e3661c6348382f9fc39a9d0063dbd2352ff") (:keywords "games") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/zone-sl"))]) (zone-select . [(20160118 1419) ((emacs (24 3)) (dash (2 8))) "Select zone programs." single ((:commit . "bf30da12f1625fe6563448fccf3c506acad10af7") (:keywords "games") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/zone-select"))]) (zone-rainbow . [(20160120 1334) ((emacs (24 3))) "Zone out with rainbow." single ((:commit . "2ba4f1a87c69c4712124ebf12c1f3ea171e1af36") (:keywords "games") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/zone-rainbow"))]) (zone-nyan . [(20170818 1644) ((esxml (0 3 1))) "Zone out with nyan cat" single ((:commit . "4b1f8d95f130946718d52806489ffe2762aebfdc") (:keywords "zone") (:authors ("Vasilij Schneidermann" . "v.schneidermann@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com") (:url . "https://github.com/wasamasa/zone-nyan"))]) (zombie-trellys-mode . [(20150304 1448) ((emacs (24)) (cl-lib (0 5)) (haskell-mode (1 5))) "A minor mode for interaction with Zombie Trellys" single ((:commit . "7f0c45fdda3a44c3b6d1762d116abb1421b8fba2") (:keywords "languages") (:authors ("David Raymond Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Raymond Christiansen" . "david@davidchristiansen.dk"))]) (zombie . [(20141222 1616) nil "major mode for editing ZOMBIE programs" single ((:commit . "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (znc . [(20160627 2032) ((cl-lib (0 2))) "ZNC + ERC" single ((:commit . "ce468d185e4a949c45fdd7586313144bc69d4fe5") (:authors ("Yaroslav Shirokov")) (:maintainer "Yaroslav Shirokov") (:url . "https://github.com/sshirokov/ZNC.el"))]) (zmq . [(20181115 2300) ((cl-lib (0 5)) (emacs (26))) "ZMQ bindings in elisp" tar ((:commit . "f6960700f9458f9fe6cbc530da97bd1037d4d882") (:keywords "comm") (:authors ("Nathaniel Nicandro" . "nathanielnicandro@gmail.com")) (:maintainer "Nathaniel Nicandro" . "nathanielnicandro@gmail.com") (:url . "https://github.com/dzop/emacs-zmq"))]) (zlc . [(20151011 157) nil "Provides zsh like completion system to Emacs" single ((:commit . "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4") (:keywords "matching" "convenience") (:authors ("mooz" . "stillpedant@gmail.com")) (:maintainer "mooz" . "stillpedant@gmail.com"))]) (zig-mode . [(20181114 1346) ((emacs (24))) "A major mode for the Zig programming language" single ((:commit . "cb485ff8d5d9fab0ac88c7685072fb75df921398") (:keywords "zig" "languages") (:authors ("Andrea Orru <andreaorru1991@gmail.com>, Andrew Kelley" . "superjoe30@gmail.com")) (:maintainer "Andrea Orru <andreaorru1991@gmail.com>, Andrew Kelley" . "superjoe30@gmail.com") (:url . "https://github.com/zig-lang/zig-mode"))]) (zerodark-theme . [(20180911 1451) ((all-the-icons (2 0 0))) "A dark, medium contrast theme for Emacs" single ((:commit . "09a6bc6d8bcc7c2bb89e497dc8f6d3a29f6fe4c2") (:keywords "themes") (:authors ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Nicolas Petton" . "nicolas@petton.fr") (:url . "https://github.com/NicolasPetton/zerodark-theme"))]) (zephir-mode . [(20170918 425) ((cl-lib (0 5)) (pkg-info (0 4)) (emacs (24 3))) "Major mode for editing Zephir code" single ((:commit . "c2c6b7451667e68e29c353616f54ef9195c3fffd") (:keywords "languages") (:authors ("Serghei Iakovlev" . "serghei@phalconphp.com")) (:maintainer "Serghei Iakovlev") (:url . "https://github.com/sergeyklay/zephir-mode"))]) (zeno-theme . [(20181027 118) ((emacs (24))) "A dark theme using different shades of blue" single ((:commit . "0914c4a5b1b9499e7f1ca5699b1c3ea2f4be3f1a") (:keywords "faces" "theme" "dark" "blue") (:authors ("Bharat Joshi" . "jbharat@outlook.com")) (:maintainer "Bharat Joshi" . "jbharat@outlook.com") (:url . "https://github.com/jbharat/zeno-theme"))]) (zenity-color-picker . [(20160302 1154) ((emacs (24 4))) "Insert and adjust colors using Zenity" single ((:commit . "4f4f46676a461ebc881487fb70c8c181e323db5e") (:keywords "colors") (:authors ("Samuel Laurén" . "samuel.lauren@iki.fi")) (:maintainer "Samuel Laurén" . "samuel.lauren@iki.fi") (:url . "https://bitbucket.org/Soft/zenity-color-picker.el"))]) (zencoding-mode . [(20140213 822) nil "Unfold CSS-selector-like expressions to markup" single ((:commit . "58e42af182c98cb9941d27cd042d227fbf4e146c") (:keywords "convenience") (:authors ("Chris Done" . "chrisdone@gmail.com")) (:maintainer "Chris Done" . "chrisdone@gmail.com") (:url . "https://github.com/rooney/zencoding"))]) (zenburn-theme . [(20181014 1555) nil "A low contrast color theme for Emacs." single ((:commit . "d71a0f0556c1db785738ab9b0c989df342705a81") (:authors ("Bozhidar Batsov" . "bozhidar@batsov.com")) (:maintainer "Bozhidar Batsov" . "bozhidar@batsov.com") (:url . "http://github.com/bbatsov/zenburn-emacs"))]) (zen-and-art-theme . [(20120622 1437) nil "zen and art color theme for GNU Emacs 24" single ((:commit . "a7226cbce0bca2501d69a620cb2aeabfc396c232") (:authors ("Nick Parker")) (:maintainer "Nick Parker"))]) (zel . [(20171014 832) ((emacs (25)) (frecency (0 1))) "Access frecent files easily" single ((:commit . "9dae2d212224d1deae1f62561fa8e4d689fd09f2") (:keywords "convenience" "files" "matching") (:authors ("Sebastian Christ" . "rudolfo.christ@gmail.com")) (:maintainer "Sebastian Christ" . "rudolfo.christ@gmail.com") (:url . "https://github.com/rudolfochrist/zel"))]) (zeal-at-point . [(20180131 2354) nil "Search the word at point with Zeal" single ((:commit . "0fc3263f44e95acd3e9d91057677621ce4d297ee") (:authors ("Jinzhu" . "wosmvp@gmail.com")) (:maintainer "Jinzhu" . "wosmvp@gmail.com") (:url . "https://github.com/jinzhu/zeal-at-point"))]) (z3-mode . [(20151120 2255) ((flycheck (0 23)) (emacs (24))) "A z3/SMTLIBv2 interactive development environment" single ((:commit . "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1") (:keywords "z3" "yices" "mathsat" "smt" "beaver") (:authors ("Zephyr Pellerin" . "zephyr.pellerin@gmail.com")) (:maintainer "Zephyr Pellerin" . "zephyr.pellerin@gmail.com") (:url . "https://github.com/zv/z3-mode"))]) (youdao-dictionary . [(20180714 414) ((popup (0 5 0)) (pos-tip (0 4 6)) (chinese-word-at-point (0 2)) (names (0 5)) (emacs (24))) "Youdao Dictionary interface for Emacs" single ((:commit . "9496ea3ba8aa999db3dbde88d6aa37f3579d8dea") (:keywords "convenience" "chinese" "dictionary") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/youdao-dictionary.el"))]) (yoshi-theme . [(20170330 700) nil "Theme named after my cat" single ((:commit . "eab4fb67e8fec47c25c4c1393ac1211f043dbd44") (:keywords "faces") (:authors ("Tom Willemse" . "tom@ryuslash.org")) (:maintainer "Tom Willemse" . "tom@ryuslash.org") (:url . "http://projects.ryuslash.org/yoshi-theme/"))]) (yoficator . [(20180815 4) nil "Interactively yoficate Russian texts" tar ((:commit . "92d96a342a1ce29500891b71372c515c158ea0d9") (:authors ("Eugene Minkovskii" . "emin@mccme.ru") ("Alexander Krotov" . "ilabdsf@gmail.com")) (:maintainer "Eugene Minkovskii" . "emin@mccme.ru") (:url . "https://gitlab.com/link2xt/yoficator"))]) (yesql-ghosts . [(20150220 1237) ((s (1 9 0)) (dash (2 10 0)) (cider (0 8 0))) "Display ghostly yesql defqueries inline" single ((:commit . "8f1faf0137b85a5072d13e1240a463d9a35ce2bb") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (ydk-mode . [(20170113 921) nil "Language support for Yu-Gi-Oh! deck files" single ((:commit . "f3f125b29408e0b0a34fec27dcb7c02c5dbfd04e") (:keywords "faces" "games" "languages" "ydk" "yugioh" "yu-gi-oh") (:authors ("Jackson Ray Hamilton" . "jackson@jacksonrayhamilton.com")) (:maintainer "Jackson Ray Hamilton" . "jackson@jacksonrayhamilton.com") (:url . "https://github.com/jacksonrayhamilton/ydk-mode"))]) (ycmd . [(20180724 1256) ((emacs (24 4)) (dash (2 13 0)) (s (1 11 0)) (deferred (0 5 1)) (cl-lib (0 6 1)) (let-alist (1 0 5)) (request (0 3 0)) (request-deferred (0 3 0)) (pkg-info (0 6))) "emacs bindings to the ycmd completion server" tar ((:commit . "ef87d020d3314efbac2e8925c115d0ac5c128c2a") (:url . "https://github.com/abingham/emacs-ycmd"))]) (ycm . [(20150822 1836) nil "Emacs client for the YouCompleteMe auto-completion server." single ((:commit . "4da8a14abcd0f4fa3235042ade2e12b5068c0601") (:keywords "c" "abbrev") (:authors ("Ajay Gopinathan" . "ajay@gopinathan.net")) (:maintainer "Ajay Gopinathan" . "ajay@gopinathan.net"))]) (yaxception . [(20150105 1452) nil "Provide framework about exception like Java for Elisp" single ((:commit . "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875") (:keywords "exception" "error" "signal") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/yaxception"))]) (yatex . [(20181107 3) nil "Yet Another tex-mode for emacs //野鳥//" tar nil]) (yatemplate . [(20180617 952) ((yasnippet (0 8 1)) (emacs (24 3))) "File templates with yasnippet" tar ((:commit . "4f4fca9f04f7088c98aa195cf33635a35a6055cb") (:keywords "files" "convenience") (:authors ("Wieland Hoffmann" . "themineo+yatemplate@gmail.com")) (:maintainer "Wieland Hoffmann" . "themineo+yatemplate@gmail.com") (:url . "https://github.com/mineo/yatemplate"))]) (yasnippet-snippets . [(20181107 2203) ((yasnippet (0 8 0))) "Collection of yasnippet snippets" tar ((:commit . "7d4e06dbd6e517d27e4f1407b6f5180f29048588") (:keywords "snippets") (:authors ("Andrea Crotti" . "andrea.crotti.0@gmail.com")) (:maintainer "Andrea Crotti" . "andrea.crotti.0@gmail.com"))]) (yasnippet . [(20181015 1212) ((cl-lib (0 5))) "Yet another snippet extension for Emacs." single ((:commit . "1d96da2e08664c31ff7f6f7441da1f4fa5680b1f") (:keywords "convenience" "emulation") (:maintainer "Noam Postavsky" . "npostavs@gmail.com") (:url . "http://github.com/joaotavora/yasnippet"))]) (yascroll . [(20170315 1906) ((cl-lib (0 3))) "Yet Another Scroll Bar Mode" single ((:commit . "fe4494e5f4faf2832e665c7de0fed99cdbb39478") (:keywords "convenience") (:authors ("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) (:maintainer "Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))]) (yarn-mode . [(20170709 1937) ((emacs (24 3))) "Major mode for yarn.lock files." single ((:commit . "998b408d6be05fd1c3a9fd8db6ffaab3bf86d06b") (:keywords "convenience") (:authors ("Nicolás Salas V." . "nikosalas@gmail.com")) (:maintainer "Nicolás Salas V." . "nikosalas@gmail.com") (:url . "https://github.com/anachronic/yarn-mode"))]) (yari . [(20151128 739) nil "Yet Another RI interface for Emacs" single ((:commit . "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9") (:keywords "tools") (:authors ("Aleksei Gusev" . "aleksei.gusev@gmail.com")) (:maintainer "Aleksei Gusev" . "aleksei.gusev@gmail.com"))]) (yard-mode . [(20170817 1237) nil "Minor mode for Ruby YARD comments" single ((:commit . "ba74a47463b0320ae152bd42a7dd7aeecd7b5748") (:authors ("Kyle Hargraves")) (:maintainer "Kyle Hargraves") (:url . "https://github.com/pd/yard-mode.el"))]) (yara-mode . [(20170720 651) ((emacs (24))) "Major mode for editing yara rule file" single ((:commit . "af5c05b34a29fc1bd73a6d21c82cc76320b33e5c") (:keywords "yara") (:authors (nil . "binjo.cn@gmail.com")) (:maintainer nil . "binjo.cn@gmail.com") (:url . "not distributed yet"))]) (yapfify . [(20180830 733) nil "(automatically) format python buffers using YAPF." single ((:commit . "b858225e1debe6734ee718e5c3c209152652a8b3") (:authors ("Joris Engbers" . "info@jorisengbers.nl")) (:maintainer "Joris Engbers" . "info@jorisengbers.nl") (:url . "https://github.com/JorisE/yapfify"))]) (yankpad . [(20181115 2209) ((emacs (24))) "Paste snippets from an org-mode file" single ((:commit . "61c2f74b2858f383e95f89f9002f510146f53c4e") (:keywords "abbrev" "convenience") (:authors ("Erik Sjöstrand")) (:maintainer "Erik Sjöstrand") (:url . "http://github.com/Kungsgeten/yankpad"))]) (yang-mode . [(20180306 1207) nil "major mode for editing YANG files" single ((:commit . "340aec635e359609b22f7e94df15af1af2b070f6") (:authors ("Martin Bjorklund" . "mbj4668@gmail.com")) (:maintainer "Martin Bjorklund" . "mbj4668@gmail.com"))]) (yandex-weather . [(20160311 2037) nil "Fetch Yandex Weather forecasts." tar ((:commit . "6f823fd9e04ff9efb2aa65f333079e9f7e6e5b28"))]) (yaml-tomato . [(20151123 753) ((s (1 9))) "copy or show the yaml path currently under cursor." single ((:commit . "f9df1c9bdfcec629b03031b2d2032f9dc533cb14") (:keywords "yaml") (:authors ("qrczeno")) (:maintainer "qrczeno"))]) (yaml-mode . [(20180409 607) ((emacs (24 1))) "Major mode for editing YAML files" single ((:commit . "40067a10ac1360f0b9533f0bbbb2eea128e2574d") (:keywords "data" "yaml") (:authors ("Yoshiki Kurihara" . "clouder@gmail.com") ("Marshall T. Vandegrift" . "llasram@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com"))]) (yaml-imenu . [(20181001 627) ((emacs (24 4)) (yaml-mode (0))) "Enhancement of the imenu support in yaml-mode." tar ((:commit . "78a383098807014d9e7f2941196d8271677158cd") (:keywords "outlining" "convenience" "imenu") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/yaml-imenu.el"))]) (yalinum . [(20130217 1043) nil "yet another display line numbers." single ((:commit . "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973") (:keywords "convenience" "tools") (:authors ("tm8st" . "tm8st@hotmail.co.jp")) (:maintainer "tm8st" . "tm8st@hotmail.co.jp"))]) (yahtzee . [(20171022 1412) ((emacs (24 3))) "The yahtzee game" single ((:commit . "2f365e48cb37446f01e88c9ec35ed0059ea98bda") (:keywords "games") (:authors ("Dimitar Dimitrov" . "mail.mitko@gmail.com")) (:maintainer "Dimitar Dimitrov" . "mail.mitko@gmail.com") (:url . "https://github.com/drdv/yahtzee"))]) (yahoo-weather . [(20181026 320) ((emacs (24))) "Displays weather information in mode-line" single ((:commit . "1d2db14daa1706e03dfe4379397eb89234a56400") (:keywords "weather" "mode-line") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/yahoo-weather-mode"))]) (yagist . [(20160418 508) ((cl-lib (0 3))) "Yet Another Emacs integration for gist.github.com" single ((:commit . "dcdbd84f348414815d02f3da8a6ee0ac271632d4") (:keywords "tools") (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/yagist.el"))]) (yafolding . [(20170305 317) nil "Yet another folding extension for Emacs" single ((:commit . "57c015ddd7c3454571c80825bc5391d7a10fa1d7") (:keywords "folding") (:authors ("Zeno Zeng" . "zenoofzeng@gmail.com")) (:maintainer "Zeno Zeng" . "zenoofzeng@gmail.com"))]) (yabin . [(20140206 351) nil "Yet Another Bignum package (A thin wrapper of calc.el)." single ((:commit . "db8c404507560ef9147fcce2b94cd706fbfa03b5") (:keywords "data") (:authors ("Daisuke Kobayashi" . "d5884jp@gmail.com")) (:maintainer "Daisuke Kobayashi" . "d5884jp@gmail.com"))]) (xwidgete . [(20171118 2116) ((emacs (25))) "enhances usability of current xwidget browser" single ((:commit . "e4e8410fe32176df85b46234717824519443fb04") (:keywords "xwidgete" "tools") (:authors ("Tu, Do Hoang" . "tuhdo1710@gmail.com")) (:maintainer "Tu, Do Hoang") (:url . "https://github.com/tuhdo/xwidgete"))]) (xtest . [(20141214 1706) ((cl-lib (0 5))) "Simple Testing with Emacs & ERT" single ((:commit . "2c2bdf32667506dd9ddf6eb311832add616bdf1c") (:keywords "testing" "ert") (:authors ("Mustafa Shameem")) (:maintainer "Mustafa Shameem") (:url . "https://github.com/promethial/xtest"))]) (xterm-keybinder . [(20160523 56) ((emacs (24 3)) (cl-lib (0 5)) (let-alist (1 0 1))) "Let you extra keybinds in xterm/urxvt" tar ((:commit . "b29c4f700b0fa0c9f627f6725b36462b8fab06d6") (:keywords "convenient") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>"))]) (xterm-color . [(20180202 2318) ((cl-lib (0 5))) "ANSI & XTERM 256 color support" single ((:commit . "42374a98f1039e105cad9f16ce585dffc96a3f1c") (:keywords "faces") (:authors (nil . "xristos@sdf.lonestar.org")) (:maintainer nil . "xristos@sdf.lonestar.org") (:url . "https://github.com/atomontage/xterm-color"))]) (xresources-theme . [(20160331 1402) nil "Use your .Xresources as your emacs theme" single ((:commit . "feb0552d31cb54210eabbc1abe32c8ea62841b6f") (:keywords "xresources" "theme") (:authors ("Marten Lienen" . "marten.lienen@gmail.com")) (:maintainer "Marten Lienen" . "marten.lienen@gmail.com"))]) (xref-js2 . [(20170530 826) ((emacs (25)) (js2-mode (20150909))) "Jump to references/definitions using ag & js2-mode's AST" single ((:commit . "d5f93605405989529c2f66b542def6c32429b927") (:keywords "javascript" "convenience" "tools") (:authors ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Nicolas Petton" . "nicolas@petton.fr") (:url . "https://github.com/NicolasPetton/xref-js2"))]) (xquery-tool . [(20170605 826) nil "A simple interface to saxonb's xquery." single ((:commit . "0d1e2960c48701b83be5255d56324f65a6ee182e") (:keywords "xml" "xquery" "emacs") (:authors ("Patrick McAllister" . "pma@rdorte.org")) (:maintainer "Patrick McAllister" . "pma@rdorte.org") (:url . "https://github.com/paddymcall/xquery-tool.el"))]) (xquery-mode . [(20170214 1119) ((cl-lib (0 5))) "A simple mode for editing xquery programs" single ((:commit . "1b655ccf83d02a7bd473d2cf02359ed60bdf7369") (:url . "https://github.com/xquery-mode/xquery-mode"))]) (xo . [(20160403 646) nil "XO linter integration with compilation mode" single ((:commit . "72fcd867cfa332fdb82f732925cf8977e690af78") (:keywords "processes") (:authors ("J.A" . "jer.github@gmail.com")) (:maintainer "J.A" . "jer.github@gmail.com"))]) (xmlunicode . [(20160319 1612) nil "Unicode support for XML" tar ((:commit . "f5d185da46414c0509ebd0aa0fab416becf94612") (:keywords "utf-8" "unicode" "xml" "characters") (:authors ("Norman Walsh" . "ndw@nwalsh.com")) (:maintainer "Norman Walsh" . "ndw@nwalsh.com"))]) (xmlgen . [(20170411 1317) nil "A DSL for generating XML." single ((:commit . "dba66681f0c5e621a9e70e8afb34903c9ffe93c4") (:authors ("Philip Jackson" . "phil@shellarchive.co.uk")) (:maintainer "Philip Jackson" . "phil@shellarchive.co.uk"))]) (xml-rpc . [(20181002 1353) nil "An elisp implementation of clientside XML-RPC" single ((:commit . "8f624f8b964e9145acb504e4457c9510e87dd93c") (:keywords "xml" "rpc" "network") (:authors ("Mark A. Hershberger" . "mah@everybody.org")) (:maintainer "Mark A. Hershberger" . "mah@everybody.org") (:url . "http://github.com/hexmode/xml-rpc-el"))]) (xml-quotes . [(20151230 2249) nil "read quotations from an XML document" tar ((:commit . "26db170e80b9295861227cdf970721b12539ed44") (:keywords "xml" "quotations") (:authors ("Norman Walsh" . "ndw@nwalsh.com")) (:maintainer "Norman Walsh" . "ndw@nwalsh.com") (:url . "https://github.com/ndw/xml-quotes"))]) (xml+ . [(20170727 2351) ((emacs (24 4)) (dash (2 12 0))) "Utilities for xml and html trees" single ((:commit . "232fa863c08fc159b21dd58c39ea45dce3334895") (:keywords "xml" "html") (:authors ("Ben Dean" . "bendean837@gmail.com")) (:maintainer "Ben Dean" . "bendean837@gmail.com") (:url . "https://github.com/bddean/xml-plus"))]) (xkcd . [(20160419 1130) ((json (1 3))) "View xkcd from Emacs" single ((:commit . "66e928706fd660cfdab204c98a347b49c4267bdf") (:keywords "xkcd" "webcomic") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/vibhavp/emacs-xkcd"))]) (xcscope . [(20180426 712) nil "cscope interface for (X)Emacs" single ((:commit . "57bff67460c587acf60f513de622b4c7ab312081") (:keywords "languages" "c") (:authors ("Darryl Okahata" . "darrylo@sonic.net") ("Dima Kogan" . "dima@secretsauce.net")) (:maintainer "Dima Kogan" . "dima@secretsauce.net") (:url . "https://github.com/dkogan/xcscope.el"))]) (xcode-project . [(20181025 1244) ((emacs (25))) "A package for reading Xcode project files." tar ((:commit . "0bf9a4230fab7830350c750c39beda99ef74d72f") (:keywords "languages" "tools") (:authors ("John Buckley" . "john@olivetoast.com")) (:maintainer "John Buckley" . "john@olivetoast.com") (:url . "https://github.com/nhojb/xcode-project.git"))]) (xcode-mode . [(20160907 1208) ((emacs (24 4)) (s (1 10 0)) (dash (2 11 0)) (multiple-cursors (1 0 0))) "A minor mode for emacs to perform Xcode like actions." single ((:commit . "2ae4f512d6c601ea39d5ab785c2b5288eac24b59") (:keywords "conveniences") (:authors ("Nickolas Lanasa" . "nick@nytekproductions.com")) (:maintainer "Nickolas Lanasa" . "nick@nytekproductions.com"))]) (xbm-life . [(20160103 1017) nil "A XBM version of Conway's Game of Life" single ((:commit . "dd6a98ac9ea81b681e68f6318fed47158e5d469e") (:keywords "games") (:authors ("Vasilij Schneidermann" . "v.schneidermann@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com") (:url . "https://github.com/wasamasa/xbm-life"))]) (xahk-mode . [(20170821 1107) ((emacs (24 1))) "Major mode for editing AutoHotkey scripts." single ((:commit . "02012b20603c00e3b2ef32159a690ed1e05d12c3") (:keywords "languages") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://xahlee.info/mswin/emacs_autohotkey_mode.html"))]) (xah-replace-pairs . [(20180508 249) ((emacs (24 1))) "emacs lisp functions for multi-pair find/replace." single ((:commit . "4d845cfbce32d45befd7c454e3476c3ce40d2b43") (:keywords "lisp" "tools" "find replace") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/emacs/elisp_replace_string_region.html"))]) (xah-reformat-code . [(20170821 1111) nil "commands to reformat source code." single ((:commit . "7fec8b28e46b8cc2813fac5149e3bbb56c0aa6b1") (:keywords "convenience") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/emacs/emacs_reformat_lines.html"))]) (xah-math-input . [(20180906 1712) ((emacs (24 1))) "a minor mode for inputting math and Unicode symbols." single ((:commit . "d0120a451daea474abeab7f87cc64d8ddc903ab4") (:keywords "abbrev" "convenience" "unicode" "math" "latex") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/emacs/xmsi-math-symbols-input.html"))]) (xah-lookup . [(20180815 1250) ((emacs (24 1))) "look up word on internet." single ((:commit . "e3132ff21c3d0160e5bd5b7222c50dc9840727d4") (:keywords "help" "docs" "convenience") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/emacs/xah-lookup.html"))]) (xah-get-thing . [(20170821 1053) ((emacs (24 1))) "get thing or selection at point." single ((:commit . "e3ef069ea9fea3a092689d45c94c6211b51d0ea4") (:keywords "extensions" "lisp" "tools") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/emacs/elisp_get-selection-or-unit.html"))]) (xah-fly-keys . [(20181031 1817) ((emacs (24 1))) "ergonomic modal keybinding minor mode." single ((:commit . "9f122c3d680f66416c12a87db7db7a0844505120") (:keywords "convenience" "emulations" "vim" "ergoemacs") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/misc/ergoemacs_vi_mode.html"))]) (xah-find . [(20181101 1535) ((emacs (24 1))) "find replace in pure emacs lisp. Purpose similar to grep/sed." single ((:commit . "6c336c82a4887a4f5aaaa12695902aee5bb1fa30") (:keywords "convenience" "extensions" "files" "tools" "unix") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/emacs/elisp-xah-find-text.html"))]) (xah-elisp-mode . [(20181028 1444) ((emacs (24 3))) "Major mode for editing emacs lisp." single ((:commit . "675560e9ac09122e425b9544ad25793c9844dc21") (:keywords "lisp" "languages") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/emacs/xah-elisp-mode.html"))]) (xah-css-mode . [(20180629 807) ((emacs (24 3))) "Major mode for editing CSS code." single ((:commit . "9293a1a21cb7c2a6fb4ae9af0e581f30d2e45016") (:keywords "languages" "convenience" "css" "color") (:authors ("Xah Lee ( http://xahlee.info/ )")) (:maintainer "Xah Lee ( http://xahlee.info/ )") (:url . "http://ergoemacs.org/emacs/xah-css-mode.html"))]) (x86-lookup . [(20180528 1635) ((emacs (24 3)) (cl-lib (0 3))) "jump to x86 instruction documentation" single ((:commit . "609b2ba70dc5a246ac9b4b5f89eb5ef4331519bf") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/x86-lookup"))]) (x509-mode . [(20180921 803) ((emacs (24 1)) (cl-lib (0 5))) "View certificates, CRLs and keys using OpenSSL." tar ((:commit . "9eb24c8721dcad9888b70213d06d770bc2386db7") (:authors ("Fredrik Axelsson" . "f.axelsson@gmai.com") ("Package-Requires: ((emacs \"24.1\") (cl-lib \"0.5\"))")) (:maintainer "Fredrik Axelsson" . "f.axelsson@gmai.com"))]) (x-path-walker . [(20160922 1835) ((helm-core (1 9 2))) "Navigation feature for JSON/XML/HTML based on path (imenu like)" tar ((:commit . "3b01dbd7a039c6c84fdf8c8ee53ba72090ee950a") (:keywords "convenience") (:authors (nil . "<lompik@ArchOrion>")) (:maintainer nil . "<lompik@ArchOrion>"))]) (www-synonyms . [(20170128 2251) ((request (0 2 0)) (cl-lib (0 5))) "insert synonym for a word" single ((:commit . "7e37ea35064ff31c9945f0198a653647d408c936") (:keywords "lisp") (:authors ("Bernhard Specht" . "bernhard@specht.net")) (:maintainer "Bernhard Specht" . "bernhard@specht.net"))]) (wwtime . [(20151122 1610) nil "Insert a time of day with appropriate world-wide localization" single ((:commit . "d04d8fa814b5d3644efaeb28f25520ada69acbbd") (:keywords "time") (:authors ("Norman Walsh" . "ndw@nwalsh.com")) (:maintainer "Norman Walsh" . "ndw@nwalsh.com"))]) (wucuo . [(20181106 2257) ((emacs (24 4))) "Spell check code containing camel case words" single ((:commit . "4e988c101fe82f2e8c7b3710d15982fe28b8d32d") (:keywords "convenience") (:authors ("Chen Bin <chenbin DOT sh AT gmail DOT com>")) (:maintainer "Chen Bin <chenbin DOT sh AT gmail DOT com>") (:url . "http://github.com/redguardtoo/wucuo"))]) (wttrin . [(20170614 1206) ((emacs (24 4)) (xterm-color (1 0))) "Emacs frontend for weather web service wttr.in" single ((:commit . "df5427ce2a5ad4dab652dbb1c4a1834d7ddc2abc") (:keywords "comm" "weather" "wttrin") (:authors ("Carl X. Su" . "bcbcarl@gmail.com") ("ono hiroko (kuanyui)" . "azazabc123@gmail.com")) (:maintainer "Carl X. Su" . "bcbcarl@gmail.com") (:url . "https://github.com/bcbcarl/emacs-wttrin"))]) (wsd-mode . [(20180807 1130) nil "Emacs major-mode for www.websequencediagrams.com" tar ((:commit . "0583df8efb742c90dc56df00f9714e13512cf6d9") (:keywords "wsd" "diagrams" "design" "process" "modelling" "uml") (:authors ("Jostein Kjønigsen" . "jostein@gmail.com")) (:maintainer "Jostein Kjønigsen" . "jostein@gmail.com") (:url . "https://github.com/josteink/wsd-mode"))]) (ws-butler . [(20170111 2334) nil "Unobtrusively remove trailing whitespace." single ((:commit . "52321b99be69aa1b661da7743c4421a30d8b6bcb") (:authors ("Le Wang")) (:maintainer "Le Wang") (:url . "https://github.com/lewang/ws-butler"))]) (writeroom-mode . [(20170623 1027) ((emacs (24 1)) (visual-fill-column (1 9))) "Minor mode for distraction-free writing" tar ((:commit . "be822ebe916fe30e8de228289757df1a30009a57") (:keywords "text") (:authors ("Joost Kremers" . "joostkremers@fastmail.fm")) (:maintainer "Joost Kremers" . "joostkremers@fastmail.fm"))]) (writegood-mode . [(20180525 1343) nil "Polish up poor writing on the fly" single ((:commit . "b71757ec337e226909fb0422f0224e31acc71733") (:keywords "writing" "weasel-words" "grammar") (:authors ("Benjamin Beckwith")) (:maintainer "Benjamin Beckwith") (:url . "http://github.com/bnbeckwith/writegood-mode"))]) (wrap-region . [(20140117 720) ((dash (1 0 3))) "Wrap text with punctation or tag" single ((:commit . "fbae9b0f106187af19823f1a6260b5c68b7252e6") (:keywords "speed" "convenience") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/wrap-region"))]) (wotd . [(20170328 1948) ((emacs (24 4)) (org (8 2 10))) "Fetch word-of-the-day from multiple online sources" single ((:commit . "d2937a3d91e014f8028a1f33d21c18cc0b065a64") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (world-time-mode . [(20140627 807) nil "show whole days of world-time diffs" single ((:commit . "ce7a3b45c87eb24cfe61eee453175d64f741d7cc") (:keywords "tools" "calendar") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk"))]) (workgroups2 . [(20141102 1922) ((cl-lib (0 4)) (dash (2 8 0)) (anaphora (1 0 0)) (f (0 17))) "New workspaces for Emacs" single ((:commit . "928d509157ec8a4a2e343b6115dff034c3243a7a") (:keywords "session" "management" "window-configuration" "persistence") (:authors ("Sergey Pashinin <sergey at pashinin dot com>")) (:maintainer "Sergey Pashinin <sergey at pashinin dot com>") (:url . "https://github.com/pashinin/workgroups2"))]) (workgroups . [(20110726 1641) nil "workgroups for windows (for Emacs)" single ((:commit . "9572b3492ee09054dc329f64ed846c962b395e39") (:keywords "session" "management" "window-configuration" "persistence") (:authors ("tlh" . "thunkout@gmail.com")) (:maintainer "tlh" . "thunkout@gmail.com"))]) (worf . [(20180620 1711) ((swiper (0 7 0)) (ace-link (0 1 0)) (hydra (0 13 0)) (zoutline (0 1 0))) "A warrior does not press so many keys! (in org-mode)" tar ((:commit . "b48e0c9bbd617ed8a8962174d804ce7a6da1c10a") (:keywords "lisp") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/worf"))]) (wordsmith-mode . [(20171025 1430) nil "Syntax analysis and NLP text-processing in Emacs (OSX-only)" single ((:commit . "589a97412138145bea70e0450eeddeb7f138d538") (:authors ("istib" . "istib@thebati.net")) (:maintainer "istib" . "istib@thebati.net"))]) (wordnut . [(20180313 443) ((emacs (24 4))) "Major mode interface to WordNet" tar ((:commit . "feac531404041855312c1a046bde7ea18c674915"))]) (wordgen . [(20170803 1820) ((emacs (24)) (cl-lib (0 5))) "Random word generator" single ((:commit . "aacad928ae99a953e034a831dfd0ebdf7d52ac1d") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/wordgen.el"))]) (wonderland . [(20130913 119) ((dash (2 0 0)) (dash-functional (1 0 0)) (multi (2 0 0)) (emacs (24))) "declarative configuration for Emacsen" single ((:commit . "89d274ad694b0e748efdac23ccd60b7d8b73d7c6") (:keywords "configuration" "profile" "wonderland") (:authors ("Christina Whyte" . "kurisu.whyte@gmail.com")) (:maintainer "Christina Whyte" . "kurisu.whyte@gmail.com") (:url . "http://github.com/kurisuwhyte/emacs-wonderland"))]) (wolfram-mode . [(20180307 13) ((emacs (24 3))) "Mathematica editing and inferior mode." single ((:commit . "be680190cac6ccf579dbce107deaae495928d1b3") (:keywords "languages" "processes" "tools") (:authors ("Daichi Mochihashi <daichi at cslab.kecl.ntt.co.jp>")) (:maintainer "Daichi Mochihashi <daichi at cslab.kecl.ntt.co.jp>") (:url . "https://github.com/kawabata/wolfram-mode/"))]) (wolfram . [(20170123 756) nil "Wolfram Alpha Integration" single ((:commit . "6b5dceae3fd6cdb4d7562510deeafa02c93c010b") (:keywords "math") (:authors ("Hans Sjunnesson" . "hans.sjunnesson@gmail.com")) (:maintainer "Hans Sjunnesson" . "hans.sjunnesson@gmail.com"))]) (wn-mode . [(20151110 552) ((emacs (24))) "numeric window switching shortcuts" single ((:commit . "f05c3151523e529af5a0a3fa8c948b61fb369f6e") (:keywords "buffers" "windows" "switching-windows") (:authors ("Anonymous")) (:maintainer "Luís Oliveira" . "luismbo@gmail.com") (:url . "https://github.com/luismbo/wn-mode"))]) (with-simulated-input . [(20170821 617) ((emacs (24 4)) (seq (2 0)) (s (0))) "A macro to simulate user input non-interactively" single ((:commit . "af9a38ce28a741e6d8742750bef5d7b5afa13796") (:keywords "lisp" "tools" "extensions") (:authors ("Ryan C. Thompson")) (:maintainer "Ryan C. Thompson"))]) (with-namespace . [(20130407 1822) ((dash (1 1 0)) (loop (1 1))) "interoperable elisp namespaces" single ((:commit . "8ac52da3a09cf46087720e30cf730d00f140cde6") (:keywords "namespaces") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (with-editor . [(20181113 1845) ((emacs (24 4)) (async (1 9))) "Use the Emacsclient as $EDITOR" tar ((:commit . "9dd9f176d96abc60365369de6d08c26c414ef1f3") (:keywords "tools") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/magit/with-editor"))]) (wispjs-mode . [(20170720 1919) ((clojure-mode (0))) "Major mode for Wisp code." single ((:commit . "60f9f5fd9d1556e2d008939f67eb1b1d0f325fa8") (:authors ("Kris Jenkins" . "krisajenkins@gmail.com")) (:maintainer "Kris Jenkins" . "krisajenkins@gmail.com") (:url . "https://github.com/krisajenkins/wispjs-mode"))]) (wisp-mode . [(20180520 758) nil "Tools for wisp: the Whitespace-to-Lisp preprocessor" tar ((:keywords "languages" "lisp") (:authors ("Arne Babenhauserheide" . "arne_bab@web.de")) (:maintainer "Arne Babenhauserheide" . "arne_bab@web.de"))]) (winum . [(20181119 1705) ((cl-lib (0 5)) (dash (2 13 0))) "Navigate windows and frames using numbers." single ((:commit . "efcb14fd306afbc738666e6b2e5a8a1bb5904392") (:keywords "convenience" "frames" "windows" "multi-screen") (:authors ("Thomas de Beauchêne" . "thomas.de.beauchene@gmail.com")) (:maintainer "Thomas de Beauchêne" . "thomas.de.beauchene@gmail.com") (:url . "http://github.com/deb0ch/winum.el"))]) (winring . [(20180530 18) nil "Window configuration rings" single ((:commit . "f2d072bd446b73e93b127523f19ea82b99b9267f") (:keywords "frames" "tools") (:authors ("1997-2018 Barry A. Warsaw")) (:maintainer "1997-2018 Barry A. Warsaw") (:url . "https://gitlab.com/warsaw/winring"))]) (winpoint . [(20131023 1713) nil "Remember buffer positions per-window, not per buffer" single ((:commit . "e6050093c076308184566fa1d1012423d6934773") (:keywords "convenience") (:authors ("Jorgen Schaefer" . "forcer@forcix.cx")) (:maintainer "Jorgen Schaefer" . "forcer@forcix.cx") (:url . "https://github.com/jorgenschaefer/winpoint"))]) (winnow . [(20170903 1206) ((emacs (24))) "winnow ag/grep results by matching/excluding lines" single ((:commit . "18cb6b94338f3b7b4f2cd0331dad22f82dd9e0d3") (:keywords "matching") (:authors ("Charles L.G. Comstock" . "dgtized@gmail.com")) (:maintainer "Charles L.G. Comstock" . "dgtized@gmail.com") (:url . "https://github.com/dgtized/winnow.el"))]) (windwow . [(20170816 148) ((dash (2 11 0)) (cl-lib (0 6 1)) (emacs (24))) "simple workspace management" single ((:commit . "77bad26f651744b68d31b389389147014d250f23") (:keywords "frames") (:authors ("Viju Mathew" . "viju.jm@gmail.com")) (:maintainer "Viju Mathew" . "viju.jm@gmail.com") (:url . "github.com/vijumathew/windwow"))]) (windsize . [(20181029 2257) nil "Simple, intuitive window resizing" single ((:commit . "62c2846bbe95b0a73e996c75e4a644d05f57aaaa") (:keywords "window" "resizing" "convenience") (:authors ("Chris Perkins" . "chrisperkins99@gmail.com")) (:maintainer "Chris Perkins" . "chrisperkins99@gmail.com") (:url . "http://github.com/grammati/windsize"))]) (window-purpose . [(20180926 1047) ((emacs (24 4)) (let-alist (1 0 3)) (imenu-list (0 1))) "Purpose-based window management for Emacs" tar ((:commit . "2b640955235d0a50dd1e3128612f41d595bc6dc8") (:keywords "frames") (:authors ("Bar Magal")) (:maintainer "Bar Magal") (:url . "https://github.com/bmag/emacs-purpose"))]) (window-numbering . [(20160809 1810) nil "Numbered window shortcuts" single ((:commit . "10809b3993a97c7b544240bf5d7ce9b1110a1b89") (:keywords "faces" "matching") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/window-numbering-mode/"))]) (window-number . [(20170801 151) nil "Select windows by numbers." single ((:commit . "d41722de646ffeb3f70d26e4a86a5a1ba5c6be87") (:keywords "windows") (:authors ("Johann \"Myrkraverk\" Oskarsson" . "myrkraverk@users.sourceforge.net")) (:maintainer "Nik Nyby" . "niknyby@riseup.net") (:url . "https://github.com/nikolas/window-number"))]) (window-layout . [(20170215 33) nil "window layout manager" single ((:commit . "cd2e4f967b610c2bbef53182829e47250d027056") (:keywords "window" "layout") (:authors ("SAKURAI Masashi <m.sakurai atmark kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai atmark kiwanami.net>"))]) (window-jump . [(20170809 2208) nil "Move left/right/up/down through your windows." single ((:commit . "6bdb51e9a346907d60a9625f6180bddd06be6674") (:keywords "frames" "convenience") (:authors ("Steven Thomas")) (:maintainer "Steven Thomas") (:url . "https://github.com/chumpage/chumpy-windows"))]) (window-end-visible . [(20140508 2041) nil "Find the last visible point in a window" single ((:commit . "525500fb2ebc08f3f9ea493972e5f2e1d79f89ef") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/window-end-visible"))]) (windata . [(20090830 1040) nil "convert window configuration to list" single ((:commit . "a723fc446ceaec23d5f29ecc8245d94c99d91625") (:keywords "convenience" "frames") (:authors (nil . "wenbinye@gmail.com")) (:maintainer nil . "wenbinye@gmail.com"))]) (win-switch . [(20161009 1627) nil "fast, dynamic bindings for window-switching/resizing" single ((:commit . "954eb5e4c5737f0c06368c42a7f1c3dd374d782f") (:keywords "window" "switch" "key bindings" "ergonomic" "efficient") (:authors ("Christopher Genovese" . "genovese@cmu.edu")) (:maintainer "Christopher R. Genovese" . "genovese@cmu.edu") (:url . "http://www.stat.cmu.edu/~genovese/emacs/win-switch/"))]) (wilt . [(20180220 854) ((emacs (24 3)) (dash (2 12 0)) (s (1 10 0))) "An extensions for calculating WILT in a buffer." single ((:commit . "04dbe37fa35d0b24c791421785d2c97a8cbfe2cc") (:authors ("Austin Bingham" . "austin@sixty-north.com")) (:maintainer "Austin Bingham" . "austin@sixty-north.com") (:url . "https://github.com/sixty-north/emacs-wilt"))]) (wiki-summary . [(20181010 1824) ((emacs (24))) "View Wikipedia summaries in Emacs easily." single ((:commit . "fa41ab6e50b3b80e54148af9d4bac18fd0405000") (:keywords "wikipedia" "utility") (:authors ("Danny Gratzer")) (:maintainer "Danny Gratzer") (:url . "https://github.com/jozefg/wiki-summary.el"))]) (wiki-nav . [(20150223 1354) ((button-lock (1 0 2)) (nav-flash (1 0 0))) "Simple file navigation using [[WikiStrings]]" single ((:commit . "f9082feb329432fcf2ac49a95e64bed9fda24d58") (:keywords "mouse" "button" "hypermedia" "navigation") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/button-lock"))]) (widgetjs . [(20160719 1504) ((makey (0 3)) (js2-mode (20140114)) (js2-refactor (0 6 1)) (s (1 9 0))) "Widgetjs mode" single ((:commit . "7b35a8ebea4a96aadca0ec732d4504474812fd3c") (:keywords "help") (:authors ("Nicolas Petton" . "petton.nicolas@gmail.com")) (:maintainer "Nicolas Petton" . "petton.nicolas@gmail.com"))]) (widget-mvc . [(20150102 406) nil "MVC framework for the emacs widgets" single ((:commit . "ff5a85880df7b87f9f480fe3c28438a0712b7b87") (:keywords "lisp" "widget") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>"))]) (wide-column . [(20170925 1613) nil "Calls functions dependant on column position." single ((:commit . "ce9ef4675485a7bea381077866368ef875226b10") (:keywords "minor mode" "cursor colour" "column width") (:authors ("Phillip Lord" . "p.lord@russet.org.uk")) (:maintainer "Phillip Lord" . "p.lord@russet.org.uk"))]) (whole-line-or-region . [(20181116 2249) nil "operate on current line if region undefined" single ((:commit . "6fcbd6e403a8a66813fdf64ddd3f03b904c82a88") (:keywords "convenience" "wp") (:authors ("Joe Casadonte" . "emacs@northbound-train.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (whizzml-mode . [(20180711 1610) ((emacs (24 4))) "Programming mode for editing WhizzML files" tar ((:commit . "f457052dc5426d542ca69185a5a87905f08f1310") (:keywords "languages" "lisp") (:authors ("Jose Antonio Ortega Ruiz" . "jao@bigml.com")) (:maintainer "Jose Antonio Ortega Ruiz" . "jao@bigml.com"))]) (whitespace-cleanup-mode . [(20170506 223) nil "Intelligently call whitespace-cleanup on save" single ((:commit . "6d0a35159ee04ef9f3b1a80c548f545643ddb397") (:keywords "convenience") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/whitespace-cleanup-mode"))]) (white-theme . [(20160917 1743) ((emacs (24))) "Minimalistic light color theme inspired by basic-theme" single ((:commit . "e9e6d5b9d43da6eb15e86f5fbc8b1ba83abe8c78") (:keywords "color" "theme" "minimal" "basic" "simple" "white") (:authors ("Anler Hernandez Peral" . "inbox@anler.me")) (:maintainer "Anler Hernandez Peral" . "inbox@anler.me") (:url . "http://github.com/anler/white-theme.el"))]) (white-sand-theme . [(20151117 1648) ((emacs (24))) "Emacs theme with a light background." single ((:commit . "97621edd69267dd143760d94393db2c2558c9ea4") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler"))]) (whitaker . [(20150814 1122) ((dash (2 10 0))) "Comint interface for Whitaker's Words" single ((:commit . "eaf26ea647b729ca705b73ea70312d5ffdf89448") (:keywords "processes") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com"))]) (which-key . [(20181114 1432) ((emacs (24 4))) "Display available keybindings in popup" single ((:commit . "43e3e3d7641a8e1c298b37e6a277612bf0898708") (:authors ("Justin Burkett" . "justin@burkett.cc")) (:maintainer "Justin Burkett" . "justin@burkett.cc") (:url . "https://github.com/justbur/emacs-which-key"))]) (what-the-commit . [(20150901 1316) nil "Random commit message generator" single ((:commit . "868c80a1b8614bcbd2225cd0290142c72f2a7956") (:keywords "git" "commit" "message") (:authors ("Dan Barbarito" . "dan@barbarito.me")) (:maintainer "Dan Barbarito" . "dan@barbarito.me") (:url . "http://barbarito.me/"))]) (wgrep-pt . [(20140510 2231) ((wgrep (2 1 5))) "Writable pt buffer and apply the changes to files" single ((:commit . "414be70bd313e482cd9f0b70fd2daad4ee23497c") (:keywords "grep" "edit" "extensions") (:authors ("Masahiro Hayashi <mhayashi1120@gmail.com>, Bailey Ling" . "bling@live.ca")) (:maintainer "Masahiro Hayashi <mhayashi1120@gmail.com>, Bailey Ling" . "bling@live.ca") (:url . "http://github.com/mhayashi1120/Emacs-wgrep/raw/master/wgrep-pt.el"))]) (wgrep-helm . [(20170510 2239) ((wgrep (2 1 1))) "Writable helm-grep-mode buffer and apply the changes to files" single ((:commit . "414be70bd313e482cd9f0b70fd2daad4ee23497c") (:keywords "grep" "edit" "extensions") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "http://github.com/mhayashi1120/Emacs-wgrep/raw/master/wgrep-helm.el"))]) (wgrep-ag . [(20160923 1103) ((wgrep (2 1 5)) (cl-lib (0 5))) "Writable ag buffer and apply the changes to files" single ((:commit . "414be70bd313e482cd9f0b70fd2daad4ee23497c") (:keywords "grep" "edit" "extensions") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "http://github.com/mhayashi1120/Emacs-wgrep/raw/master/wgrep-ag.el"))]) (wgrep-ack . [(20141012 1011) ((wgrep (2 1 1))) "Writable ack-and-a-half buffer and apply the changes to files" single ((:commit . "414be70bd313e482cd9f0b70fd2daad4ee23497c") (:keywords "grep" "edit" "extensions") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "http://github.com/mhayashi1120/Emacs-wgrep/raw/master/wgrep-ack.el"))]) (wgrep . [(20180711 626) nil "Writable grep buffer and apply the changes to files" single ((:commit . "414be70bd313e482cd9f0b70fd2daad4ee23497c") (:keywords "grep" "edit" "extensions") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "http://github.com/mhayashi1120/Emacs-wgrep/raw/master/wgrep.el"))]) (weibo . [(20150307 2242) ((cl-lib (0 5))) "Weibo client for Emacs" tar ((:commit . "a8abb50b7602fe15fe2bc6400ac29780e956b390") (:keywords "weibo") (:authors ("Austin" . "austiny.cn@gmail.com")) (:maintainer "Austin" . "austiny.cn@gmail.com") (:url . "https://github.com/austin-----/weibo.emacs"))]) (weechat-alert . [(20160416 1248) ((weechat (0 3 1)) (cl-lib (0 5)) (alert (1 2))) "Weechat notifier using alerts" single ((:commit . "a8fd557c8f335322f132c1c6c08b6741d6394e2e") (:keywords "irc" "chat" "network" "weechat") (:authors ("Andreas Klein" . "git@kungi.org")) (:maintainer "Andreas Klein" . "git@kungi.org") (:url . "https://github.com/kungi/weechat-alert"))]) (weechat . [(20180513 1010) ((s (1 3 1)) (cl-lib (0 2)) (emacs (24)) (tracking (1 2))) "Chat via WeeChat's relay protocol in Emacs" tar ((:commit . "8cbda2738149b070c09288df550781b6c604beb2"))]) (wedge-ws . [(20140714 2149) nil "Wedge whitespace between columns in text" single ((:commit . "4669115f02d9c6fee067cc5369bb38c0f9db88b2") (:keywords "formatting" "indentation") (:authors ("Anders Eurenius" . "aes@spotify.com")) (:maintainer "Anders Eurenius" . "aes@spotify.com"))]) (websocket . [(20180423 16) ((cl-lib (0 5))) "Emacs WebSocket client and server" single ((:commit . "0d96ba2ff5a25c6cd6c66f417cc9b5f38a4308ba") (:keywords "communication" "websocket" "server") (:authors ("Andrew Hyatt" . "ahyatt@gmail.com")) (:maintainer "Andrew Hyatt" . "ahyatt@gmail.com"))]) (webpaste . [(20180815 1855) ((emacs (24 4)) (request (0 2 0)) (cl-lib (0 5))) "Paste to pastebin-like services" single ((:commit . "e7fed98c30e960911426be054bad183fd1ab6a37") (:keywords "convenience" "comm" "paste") (:authors ("Elis \"etu\" Hirwing")) (:maintainer "Elis \"etu\" Hirwing") (:url . "https://github.com/etu/webpaste.el"))]) (weblogger . [(20110926 1618) ((xml-rpc (1 6 8))) "Weblog maintenance via XML-RPC APIs" single ((:commit . "b3dd4aead9d3a87e6d85e7fef4f4f3bd40d87b53") (:keywords "weblog" "blogger" "cms" "movable" "type" "openweblog" "blog") (:url . "http://launchpad.net/weblogger-el"))]) (webkit-color-picker . [(20180325 736) ((emacs (26 0)) (posframe (0 1 0))) "Insert and adjust colors using Webkit Widgets" tar ((:commit . "765cac80144cad4bc0bf59025ea0199f0486f737") (:keywords "tools") (:authors ("Ozan Sener" . "hi@ozan.email")) (:maintainer "Ozan Sener" . "hi@ozan.email") (:url . "https://github.com/osener/emacs-webkit-color-picker"))]) (web-server . [(20140906 6) ((emacs (24 3))) "Emacs Web Server" tar ((:commit . "469cd3bc117bfb8da0c03a2a2fb185e80c81d068") (:keywords "http" "server" "network") (:authors ("Eric Schulte" . "schulte.eric@gmail.com")) (:maintainer "Eric Schulte" . "schulte.eric@gmail.com") (:url . "https://github.com/eschulte/emacs-web-server"))]) (web-search . [(20181028 525) ((emacs (24 3))) "Open a web search" tar ((:commit . "24f5b49774f4fb60c903c2b65598590d1c6456d9") (:keywords "web" "search") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/web-search.el"))]) (web-narrow-mode . [(20170407 210) ((web-mode (14 0 27))) "quick narrow code block in web-mode" single ((:commit . "73bdcb7d0701abe65dab4fc295d944885e05ae33") (:keywords "web-mode" "react" "narrow" "web") (:authors ("Qquanwei" . "quanwei9958@126.com")) (:maintainer "Johan Andersson" . "quanwei9958@126.com") (:url . "https://github.com/Qquanwei/web-narrow-mode"))]) (web-mode-edit-element . [(20161114 1754) ((emacs (24 4)) (web-mode (14))) "Helper-functions for attribute- and element-handling" tar ((:commit . "8b8ac07aa8c920dafd94c96a51effb0d6c0ed1ce") (:keywords "languages" "convenience") (:authors ("Julian T. Knabenschuh" . "jtkdevelopments@gmail.com")) (:maintainer "Julian T. Knabenschuh" . "jtkdevelopments@gmail.com") (:url . "https://github.com/jtkDvlp/web-mode-edit-element"))]) (web-mode . [(20181104 2004) ((emacs (23 1))) "major mode for editing web templates" single ((:commit . "29ced993bb1a435bd82d3e7395bed13b99e87de4") (:keywords "languages") (:authors ("François-Xavier Bois <fxbois AT Google Mail Service>")) (:maintainer "François-Xavier Bois") (:url . "http://web-mode.org"))]) (web-completion-data . [(20160318 848) nil "Shared completion data for ac-html and company-web" tar ((:commit . "c272c94e8a71b779c29653a532f619acad433a4f") (:keywords "html" "auto-complete" "company") (:authors ("Olexandr Sydorchuk" . "olexandr.syd@gmail.com")) (:maintainer "Olexandr Sydorchuk" . "olexandr.syd@gmail.com") (:url . "https://github.com/osv/web-completion-data"))]) (web-beautify . [(20161115 2247) nil "Format HTML, CSS and JavaScript/JSON" single ((:commit . "e1b45321d8c11b404b12c8e55afe55eaa7c84ee9") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/web-beautify"))]) (web . [(20141231 2001) ((dash (2 9 0)) (s (1 5 0))) "useful HTTP client" single ((:commit . "483188dac4bc6b409b985c9dae45f3324a425efd") (:keywords "lisp" "http" "hypermedia") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "http://github.com/nicferrier/emacs-web"))]) (weather-metno . [(20150901 107) ((emacs (24)) (cl-lib (0 3))) "Weather data from met.no in Emacs" tar ((:commit . "bfc7137095e0ee71aad70ac46f2af677f3c051b6"))]) (wdl-mode . [(20180831 1946) nil "WDL (Workflow Definition Language) major mode" single ((:commit . "cef86e5afc136ae5ad9324cd6e6d6f860b889bcf") (:keywords "languages") (:authors ("Xiaowei Zhan" . "zhanxw@gmail.com")) (:maintainer "Xiaowei Zhan" . "zhanxw@gmail.com") (:url . "http://github.com/zhanxw/wdl-mode"))]) (wcheck-mode . [(20180126 1216) nil "General interface for text checkers" tar ((:commit . "6aa26626ccc6f7f670de092c7d40e44ab8b410f9"))]) (wc-mode . [(20170127 429) nil "Running word count with goals (minor mode)" single ((:commit . "f218f42709a651b34d6c1ddd98856f44648ef707") (:authors ("Benjamin Beckwith")) (:maintainer "Benjamin Beckwith") (:url . "https://github.com/bnbeckwith/wc-mode"))]) (wc-goal-mode . [(20140829 1359) nil "Running word count with goals (minor mode)" single ((:commit . "bf21ab9c5a449bcc20dd207a4915dcec218d2699") (:authors ("Benjamin Beckwith")) (:maintainer "Benjamin Beckwith") (:url . "https://github.com/bnbeckwith/wc-goal-mode"))]) (wavefront-obj-mode . [(20170808 1716) nil "Major mode for Wavefront obj files" single ((:commit . "34027915de6496460d8e68b5991dd24d47d54859") (:authors ("Sasha Kovar" . "sasha-emacs@arcocene.org")) (:maintainer "Sasha Kovar" . "sasha-emacs@arcocene.org") (:url . "http://github.com/abend/wavefront-obj-mode"))]) (watch-buffer . [(20120331 2044) nil "run a shell command when saving a buffer" single ((:commit . "761fd7252e6d7bf5148283c2a7ee935f087d9427") (:keywords "automation" "convenience") (:authors ("Michael Steger" . "mjsteger1@gmail.com")) (:maintainer "Michael Steger" . "mjsteger1@gmail.com") (:url . "https://github.com/mjsteger/watch-buffer"))]) (warm-night-theme . [(20161101 1428) ((emacs (24))) "Emacs 24 theme with a dark background." single ((:commit . "020f084d23409b5035150508ba6e57c2509edd64") (:authors ("martin haesler")) (:maintainer "martin haesler"))]) (wanderlust . [(20181117 717) ((semi (1 14 7))) "Yet Another Message Interface on Emacsen" tar ((:commit . "05318ec3c724d5a0dad449a16b128a601bbce5ff"))]) (wandbox . [(20170603 1231) ((emacs (24)) (request (0 3 0)) (s (1 10 0))) "Wandbox client" tar ((:commit . "e002fe41f2cd9b4ce2b1dc80b83301176e9117f1") (:keywords "tools") (:authors ("KOBAYASHI Shigeru (kosh)" . "shigeru.kb@gmail.com")) (:maintainer "KOBAYASHI Shigeru (kosh)" . "shigeru.kb@gmail.com") (:url . "https://github.com/kosh04/emacs-wandbox"))]) (wand . [(20180815 1031) ((dash (20161121 55)) (s (20160928 636))) "Magic wand for Emacs - Select and execute" tar ((:commit . "5c0d4833a3afc57e4b2398250139729cc9131d16") (:keywords "extensions" "tools") (:authors ("Ha-Duong Nguyen <cmpitgATgmail>")) (:maintainer "Ha-Duong Nguyen <cmpitgATgmail>") (:url . "https://github.com/cmpitg/wand"))]) (walkclj . [(20180718 900) ((emacs (25)) (parseclj (0 1 0)) (treepy (0 1 0))) "Manipulate Clojure parse trees" single ((:commit . "2e54fa813b11d1a87c890cdf117f30165a193024") (:keywords "languages") (:authors ("Arne Brasseur")) (:maintainer "Arne Brasseur") (:url . "https://github.com/plexus/walkclj"))]) (wakib-keys . [(20180818 1829) ((emacs (24 4))) "Minor Mode for Modern Keybindings" single ((:commit . "a858979620bd22801e5ce214dd46d69b19ccd357") (:keywords "convenience" "keybindings" "keys") (:authors ("Abdulla Bubshait")) (:maintainer "Abdulla Bubshait") (:url . "https://github.com/darkstego/wakib-keys/"))]) (wakatime-mode . [(20180920 702) nil "Automatic time tracking extension for WakaTime" single ((:commit . "2531cb58287770883ba534d20b3288955c4d6ef3") (:keywords "calendar" "comm") (:authors ("Gabor Torok" . "gabor@20y.hu")) (:maintainer "Alan Hamlett" . "alan@wakatime.com"))]) (waher-theme . [(20141115 1230) ((emacs (24 1))) "Emacs 24 theme based on waher for st2 by dduckster" single ((:commit . "60d31519fcfd8e797723d47961b255ae2f2e2c0a") (:authors ("Jasonm23" . "jasonm23@gmail.com")) (:maintainer "Jasonm23" . "jasonm23@gmail.com") (:url . "https://github.com/jasonm23/emacs-waher-theme"))]) (waf-mode . [(20170403 1940) nil "Waf integration for Emacs" single ((:commit . "20c75eabd1d54fbce8e0dbef785c9fb68577ee4f") (:authors ("Denys Valchuk" . "dvalchuk@gmail.com")) (:maintainer "Denys Valchuk" . "dvalchuk@gmail.com") (:url . "https://bitbucket.org/dvalchuk/waf-mode"))]) (wacspace . [(20180311 2350) ((dash (1 2 0)) (cl-lib (0 2))) "The WACky WorkSPACE manager for emACS" tar ((:commit . "54d19aab6fd2bc5945b7ffc58104e695064927e2"))]) (w3m . [(20181022 855) nil "an Emacs interface to w3m" tar ((:commit . "f392ad9864d3ec30e8b8151bdbd714f51be21bf3") (:keywords "w3m" "www" "hypermedia"))]) (w32-browser . [(20170101 1954) nil "Run Windows application associated with a file." single ((:commit . "e5c60eafd8f8d3546a0fa295ad5af2414d36b4e6") (:keywords "mouse" "dired" "w32" "explorer") (:authors ("Emacs Wiki, Drew Adams")) (:maintainer nil . "Drew Adams (concat \"drew.adams\" \"@\" \"oracle\" \".com\")") (:url . "http://www.emacswiki.org/w32-browser.el"))]) (vyper-mode . [(20180707 1935) ((emacs (24 3))) "Major mode for the Vyper programming language" single ((:commit . "323dfddfc38f0b11697e9ebaf04d1b53297e54e5") (:keywords "languages") (:authors ("Alex Stokes" . "r.alex.stokes@gmail.com")) (:maintainer "Alex Stokes" . "r.alex.stokes@gmail.com") (:url . "https://github.com/ralexstokes/vyper-mode"))]) (vue-mode . [(20180827 15) ((mmm-mode (0 5 5)) (vue-html-mode (0 2)) (ssass-mode (0 2)) (edit-indirect (0 1 4))) "Major mode for vue component based on mmm-mode" single ((:commit . "33436c53e3f1b683b1069043a10a77dad805df03") (:keywords "languages") (:authors ("codefalling" . "code.falling@gmail.com")) (:maintainer "codefalling" . "code.falling@gmail.com"))]) (vue-html-mode . [(20180428 2035) nil "Major mode for editing Vue.js templates" single ((:commit . "1514939804bad558584feeb6298b38d22eadf64e") (:keywords "languages" "vue" "template") (:authors ("Adam Niederer" . "adam.niederer@gmail.com")) (:maintainer "Adam Niederer" . "adam.niederer@gmail.com") (:url . "http://github.com/AdamNiederer/vue-html-mode"))]) (vscode-icon . [(20180922 2150) ((emacs (25 1))) "Utility package to provide Vscode style icons" tar ((:commit . "3ad83ee122d312775a101c975424a2c87c3a80b1") (:keywords "files" "tools") (:authors ("James Nguyen" . "james@jojojames.com")) (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/vscode-icon-emacs"))]) (volume . [(20150718 2009) nil "tweak your sound card volume from Emacs" single ((:commit . "ecc1550b3c8b501d37e0f0116b54b535d15f90f6") (:authors ("Daniel Brockman" . "daniel@brockman.se")) (:maintainer "Daniel Brockman" . "daniel@brockman.se") (:url . "http://www.brockman.se/software/volume-el/"))]) (volatile-highlights . [(20160612 155) nil "Minor mode for visual feedback on some operations." single ((:commit . "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392") (:keywords "emulations" "convenience" "wp") (:authors ("K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>")) (:maintainer "K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>") (:url . "http://www.emacswiki.org/emacs/download/volatile-highlights.el"))]) (voca-builder . [(20161101 1645) ((popup (0 5 2))) "Helps you build up your vocabulary" single ((:commit . "51573beec8cd8308477b0faf453aad93e17f57c5") (:keywords "english" "vocabulary") (:authors ("Yi Tang" . "yi.tang.uk@me.com")) (:maintainer "Yi Tang" . "yi.tang.uk@me.com") (:url . "https://github.com/yitang/voca-builder"))]) (vmd-mode . [(20180223 1356) ((emacs (24 3))) "Fast Github-flavored Markdown preview using a vmd subprocess." single ((:commit . "24e38a20951dfad6e3e985c7cc6286c1e271da5f") (:keywords "markdown" "preview" "live" "vmd") (:authors ("Blake Miller" . "blak3mill3r@gmail.com")) (:maintainer "Blake Miller" . "blak3mill3r@gmail.com") (:url . "https://github.com/blak3mill3r/vmd-mode"))]) (vlf . [(20180201 2254) nil "View Large Files" tar ((:commit . "31b292dc85a374fb343789e217015683bfbdf5f1") (:keywords "large files" "utilities") (:maintainer "Andrey Kotlarski" . "m00naticus@gmail.com") (:url . "https://github.com/m00natic/vlfi"))]) (visual-regexp-steroids . [(20170222 253) ((visual-regexp (1 1))) "Extends visual-regexp to support other regexp engines" tar ((:commit . "a6420b25ec0fbba43bf57875827092e1196d8a9e") (:keywords "external" "foreign" "regexp" "replace" "python" "visual" "feedback") (:authors ("Marko Bencun" . "mbencun@gmail.com")) (:maintainer "Marko Bencun" . "mbencun@gmail.com") (:url . "https://github.com/benma/visual-regexp-steroids.el/"))]) (visual-regexp . [(20170301 116) ((cl-lib (0 2))) "A regexp/replace command for Emacs with interactive visual feedback" single ((:commit . "b3096c2d391ff4e28a2a4e8cd82efbf11071ea85") (:keywords "regexp" "replace" "visual" "feedback") (:authors ("Marko Bencun" . "mbencun@gmail.com")) (:maintainer "Marko Bencun" . "mbencun@gmail.com") (:url . "https://github.com/benma/visual-regexp.el/"))]) (visual-fill-column . [(20180919 757) ((emacs (24 3))) "fill-column for visual-line-mode" single ((:commit . "33f68b9d94b5877f21209b68438a3cd95f801dc1") (:authors ("Joost Kremers" . "joostkremers@fastmail.fm")) (:maintainer "Joost Kremers" . "joostkremers@fastmail.fm"))]) (visual-ascii-mode . [(20150129 1046) nil "Visualize ascii code (small integer) on buffer." single ((:commit . "99285a099a17472ddd9f1b4f74e9d092dd8c5947") (:keywords "presentation") (:authors ("Dewdrops" . "v_v_4474@126.com")) (:maintainer "Dewdrops" . "v_v_4474@126.com") (:url . "https://github.com/Dewdrops/visual-ascii-mode"))]) (visible-mark . [(20150624 450) nil "Make marks visible." single ((:commit . "a584db9bc88953b23a9648b3e14ade90767207f8") (:keywords "marking" "color" "faces") (:authors ("Ian Kelling" . "ian@iankelling.org")) (:maintainer "Ian Kelling" . "ian@iankelling.org") (:url . "https://gitlab.com/iankelling/visible-mark"))]) (virtualenvwrapper . [(20180212 144) ((dash (1 5 0)) (s (1 6 1))) "a featureful virtualenv tool for Emacs" single ((:commit . "bf13158dde071bdf4901709ed101aba6b8a25f7f") (:keywords "python" "virtualenv" "virtualenvwrapper") (:authors ("James J Porter" . "porterjamesj@gmail.com")) (:maintainer "James J Porter" . "porterjamesj@gmail.com") (:url . "http://github.com/porterjamesj/virtualenvwrapper.el"))]) (virtualenv . [(20140220 2301) nil "Virtualenv for Python" single ((:commit . "276c0f4d6493b402dc4d22ecdf17b2b072e911b3") (:keywords "python" "virtualenv") (:authors ("Aaron Culich" . "aculich@gmail.com")) (:maintainer "Aaron Culich" . "aculich@gmail.com"))]) (vimrc-mode . [(20181116 1919) nil "Major mode for vimrc files" single ((:commit . "13bc150a870d5d4a95f1111e4740e2b22813c30e") (:keywords "languages" "vim") (:url . "https://github.com/mcandre/vimrc-mode"))]) (vimish-fold . [(20181101 1650) ((emacs (24 4)) (cl-lib (0 5)) (f (0 18 0))) "Fold text like in Vim" single ((:commit . "ee647688a53fe91174d5450b61b882d389196f8e") (:keywords "convenience") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/vimish-fold"))]) (vim-region . [(20140329 1624) ((expand-region (20140127))) "Select region as vim" single ((:commit . "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf") (:authors ("ongaeshi" . "ongaeshi0621@gmail.com")) (:maintainer "ongaeshi" . "ongaeshi0621@gmail.com") (:url . "https://github.com/ongaeshi/emacs-vim-region"))]) (vim-empty-lines-mode . [(20150111 426) ((emacs (23))) "Vim-like empty line indicator at end of files." single ((:commit . "d4a5034ca8ea0c962ad6e92c86c0fa2a74d2964b") (:keywords "emulations") (:authors ("Jonne Mickelin" . "jonne@ljhms.com")) (:maintainer "Jonne Mickelin" . "jonne@ljhms.com") (:url . "https://github.com/jmickelin/vim-empty-lines-mode"))]) (viking-mode . [(20160705 2027) nil "kill first, ask later" single ((:commit . "c76aa265d13ad91d6890d242e142d05e31f0340b") (:keywords "kill" "delete") (:authors ("T.v.Dein" . "tlinden@cpan.org")) (:maintainer "T.v.Dein" . "tlinden@cpan.org") (:url . "https://github.com/tlinden/viking-mode"))]) (viewer . [(20170107 202) nil "View-mode extension" single ((:commit . "6c8db025bf4021428f7f2c3ef9d74fb13f5d267a") (:keywords "view" "extensions") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://github.com/rubikitch/viewer/"))]) (vi-tilde-fringe . [(20141028 242) ((emacs (24))) "Displays tildes in the fringe on empty lines a la Vi." single ((:commit . "f1597a8d54535bb1d84b442577b2024e6f910308") (:keywords "emulation") (:authors ("Sylvain Benner" . "sylvain.benner@gmail.com")) (:maintainer "Sylvain Benner" . "sylvain.benner@gmail.com") (:url . "https://github.com/syl20bnr/vi-tilde-fringe"))]) (vhdl-tools . [(20181115 1736) ((ggtags (0 8 12)) (emacs (26 1)) (outshine (2 0)) (helm (2 9 6))) "Utilities for navigating vhdl sources." single ((:commit . "536a265d74c6fb750f35d50950bdccf12f929512") (:keywords "languages" "convenience") (:authors ("Cayetano Santos")) (:maintainer "Cayetano Santos") (:url . "https://github.com/csantosb/vhdl-tools/wiki"))]) (vhdl-capf . [(20160221 1734) nil "Completion at point function (capf) for vhdl-mode." single ((:commit . "290abe217050f33532bc9ccb04f894123402f414") (:keywords "convenience" "usability" "vhdl" "completion") (:authors ("sh-ow" . "sh-ow@users.noreply.github.com")) (:maintainer "sh-ow" . "sh-ow@users.noreply.github.com") (:url . "https://github.com/sh-ow/vhdl-capf"))]) (vertigo . [(20180829 2230) ((dash (2 11 0))) "Jump across lines using the home row." single ((:commit . "6303d17270ea92290a6960890bca515274f1682b") (:keywords "vim" "vertigo") (:authors ("Fox Kiester" . "noct@posteo.net")) (:maintainer "Fox Kiester" . "noct@posteo.net") (:url . "https://github.com/noctuid/vertigo.el"))]) (vertica-snippets . [(20181016 748) ((yasnippet (0 6 1))) "Yasnippets for Vertica" tar ((:commit . "1f80a737ed53f11d985a64c97bb99cfba8fd0b67") (:keywords "convenience" "snippets") (:authors ("Andreas Gerler" . "baron@bundesbrandschatzamt.de")) (:maintainer "Andreas Gerler" . "baron@bundesbrandschatzamt.de") (:url . "https://github.com/baron42bba/vertica-snippets"))]) (vertica . [(20131217 1511) ((sql (3 0))) "Vertica SQL mode extension" single ((:commit . "3c9647b425c5c13c30bf0cba483646af18196588") (:keywords "sql" "vertica") (:authors ("Roman Scherer" . "roman@burningswell.com")) (:maintainer "Roman Scherer" . "roman@burningswell.com"))]) (verify-url . [(20160426 1228) ((cl-lib (0 5))) "find out invalid urls in the buffer or region" single ((:commit . "d6f3623cda8cd526a2d198619b137059cb1ba1ab") (:keywords "convenience" "usability" "url") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/verify-url"))]) (veri-kompass . [(20181110 933) ((emacs (25)) (cl-lib (0 5)) (org (8 2 0))) "verilog codebase navigation facility" single ((:commit . "ca9aa51e456f3762e2ebaaae5a2b70297375a4c8") (:keywords "languages" "extensions" "verilog" "hardware" "rtl") (:maintainer nil . "andrea_corallo@yahoo.it") (:url . "https://gitlab.com/koral/veri-kompass"))]) (vector-utils . [(20140508 2041) nil "Vector-manipulation utility functions" single ((:commit . "c38ca1c6a23b2b51a6ac36c2c64e50e21cbe9d21") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/vector-utils"))]) (vdm-snippets . [(20181118 2043) ((emacs (24)) (yasnippet (0 13 0))) "YASnippets for VDM mode" tar ((:commit . "a8f9eb9addc51bc2022a1fce5ad3210961befcce") (:keywords "languages") (:authors ("Peter W. V. Tran-Jørgensen" . "peter.w.v.jorgensen@gmail.com")) (:maintainer "Peter W. V. Tran-Jørgensen" . "peter.w.v.jorgensen@gmail.com") (:url . "https://github.com/peterwvj/vdm-mode"))]) (vdm-mode . [(20181112 2011) ((emacs (25))) "Major mode for the Vienna Development Method" tar ((:commit . "a8f9eb9addc51bc2022a1fce5ad3210961befcce") (:keywords "languages") (:authors ("Peter W. V. Tran-Jørgensen" . "peter.w.v.jorgensen@gmail.com")) (:maintainer "Peter W. V. Tran-Jørgensen" . "peter.w.v.jorgensen@gmail.com") (:url . "https://github.com/peterwvj/vdm-mode"))]) (vdirel . [(20181001 1135) ((emacs (24 4)) (org-vcard (0 1 0)) (helm (1 7 0)) (seq (1 11))) "Manipulate vdir (i.e., vCard) repositories" single ((:commit . "dfe5f9478405b8292f85fc911db92e81b627626a") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://github.com/DamienCassou/vdirel"))]) (vdiff-magit . [(20180819 1802) ((emacs (24 4)) (vdiff (0 3)) (magit (2 10 0))) "magit integration for vdiff" single ((:commit . "2589b93a0a789b1d86e607cb84979c6a837eb008") (:keywords "diff") (:authors ("Justin Burkett" . "justin@burkett.cc")) (:maintainer "Justin Burkett" . "justin@burkett.cc") (:url . "https://github.com/justbur/emacs-vdiff-magit"))]) (vdiff . [(20180920 1720) ((emacs (24 4)) (hydra (0 13 0))) "A diff tool similar to  vimdiff" single ((:commit . "3bfb5decd7fcef73759b247b29aeae669fb79499") (:keywords "diff") (:authors ("Justin Burkett" . "justin@burkett.cc")) (:maintainer "Justin Burkett" . "justin@burkett.cc") (:url . "https://github.com/justbur/emacs-vdiff"))]) (vcomp . [(20140906 2208) nil "compare version strings" single ((:commit . "092ef48a78e950c0576269d889be6caf9f6e61c5") (:keywords "versions") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/vcomp"))]) (vcl-mode . [(20170119 2051) nil "Syntax highlighting for Varnish Command Language" single ((:commit . "3d86c1352a7370d558d25f4c8f7be744e7d27332") (:authors ("Stig Sandbeck Mathisen" . "ssm@redpill-linpro.com")) (:maintainer "Stig Sandbeck Mathisen" . "ssm@redpill-linpro.com"))]) (vc-osc . [(20161119 1955) nil "non-resident support for osc version-control" single ((:commit . "8c09a0d5f69237285101554261b77d76b546a24b") (:authors ("Adam Spiers (see vc.el for full credits)")) (:maintainer "Adam Spiers" . "aspiers@suse.com"))]) (vc-msg . [(20180605 58) ((emacs (24 3)) (popup (0 5 0))) "Show commit information of current line" tar ((:commit . "ffd8db482cbd9fb63dace0e5ddcc7207a9c99f5e") (:keywords "git" "vc" "svn" "hg" "messenger") (:authors ("Chen Bin <chenbin DOT sh AT gmail DOT com>")) (:maintainer "Chen Bin <chenbin DOT sh AT gmail DOT com>") (:url . "http://github.com/redguardtoo/vc-msg"))]) (vc-hgcmd . [(20181120 1340) ((emacs (25 1))) "VC mercurial backend that uses hg command server" single ((:commit . "895153385e921fb40aa715229fcb91557e0567cf") (:keywords "vc") (:authors ("Andrii Kolomoiets" . "andreyk.mad@gmail.com")) (:maintainer "Andrii Kolomoiets" . "andreyk.mad@gmail.com") (:url . "https://github.com/muffinmad/emacs-vc-hgcmd"))]) (vc-fossil . [(20180215 1635) nil "VC backend for the fossil sofware configuraiton management system" tar ((:commit . "7c5af95181213db38f81f5f9586f3334301a3ea0") (:authors ("Venkat Iyer" . "venkat@comit.com")) (:maintainer "Venkat Iyer" . "venkat@comit.com"))]) (vc-darcs . [(20170905 320) ((emacs (24))) "a VC backend for darcs" single ((:commit . "390fb1ebdda1ffac45b9be02626dde3b6d95ac11") (:keywords "vc") (:authors ("Jorgen Schaefer" . "forcer@forcix.cx") ("Juliusz Chroboczek" . "jch@pps.univ-paris-diderot.fr")) (:maintainer "Libor Čapák" . "capak@inputwish.com"))]) (vc-check-status . [(20170107 1334) nil "Warn you when quitting emacs and leaving repo dirty." tar ((:commit . "37734beb16bfd8633ea328059bf9a47eed826d5c") (:keywords "vc" "convenience") (:authors ("Sylvain Rousseau <thisirs at gmail dot com>")) (:maintainer "Sylvain Rousseau <thisirs at gmail dot com>") (:url . "https://github.com/thisirs/vc-check-status"))]) (vc-auto-commit . [(20170107 1333) nil "Auto-committing feature for your repository" tar ((:commit . "446f664f4ec835532f4f18ba18b5fb731f6030aa") (:keywords "vc" "convenience") (:authors ("Sylvain Rousseau <thisirs at gmail dot com>")) (:maintainer "Sylvain Rousseau <thisirs at gmail dot com>") (:url . "http://github.com/thisirs/vc-auto-commit.git"))]) (vbasense . [(20140221 2353) ((auto-complete (1 4 0)) (log4e (0 2 0)) (yaxception (0 1))) "provide a environment like Visual Basic Editor." tar ((:commit . "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db") (:keywords "vba" "completion") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-vbasense"))]) (vala-snippets . [(20150429 352) ((yasnippet (0 8 0))) "Yasnippets for Vala" tar ((:commit . "671439501060449bd100b9fffd524a86064fbfbb") (:authors ("Daniel Gopar")) (:maintainer "Daniel Gopar") (:url . "https://github.com/gopar/vala-snippets"))]) (vala-mode . [(20150324 2225) nil "Vala mode derived mode" single ((:commit . "fb2871a4492d75d03d72e60474919ab89adb267b") (:keywords "vala" "languages" "oop") (:authors ("2005 Dylan R. E. Moonfire") ("       2008 Étienne BERSAC")) (:maintainer "Étienne BERSAC" . "bersace03@laposte.net"))]) (vagrant-tramp . [(20160427 2332) ((dash (2 12 0))) "Vagrant method for TRAMP" tar ((:commit . "453ba605b28d2964bb4e10074f1e6891ebb4d2d6") (:keywords "vagrant") (:authors ("Doug MacEachern" . "dougm@vmware.com") ("Ryan Prior     " . "ryanprior@gmail.com")) (:maintainer "Doug MacEachern" . "dougm@vmware.com") (:url . "https://github.com/dougm/vagrant-tramp"))]) (vagrant . [(20170301 2206) nil "Manage a vagrant box from emacs" single ((:commit . "636ce2f9af32ea199170335a9cf1201b64873440") (:keywords "vagrant" "chef") (:authors ("Robert Crim" . "rob@servermilk.com")) (:maintainer "Robert Crim" . "rob@servermilk.com") (:url . "https://github.com/ottbot/vagrant.el"))]) (v2ex-mode . [(20160720 345) ((cl-lib (0 5)) (request (0 2)) (let-alist (1 0 3))) "Major mode for visit http://v2ex.com/ site." single ((:commit . "b7d19bb594b43ea3824a6f215dd1e5d1d4c0e8ad") (:keywords "v2ex" "v2ex.com") (:authors ("Aborn Jiang" . "aborn.jiang@gmail.com")) (:maintainer "Aborn Jiang" . "aborn.jiang@gmail.com") (:url . "https://github.com/aborn/v2ex-mode"))]) (uuidgen . [(20140918 2301) nil "Provides various UUID generating functions" single ((:commit . "7eb96415484c3854a3f383d1a3e10b87ae674e22") (:keywords "extensions" "lisp" "tools") (:authors ("Kan-Ru Chen" . "koster@debian.org")) (:maintainer "Kan-Ru Chen" . "koster@debian.org"))]) (uuid . [(20120910 851) nil "UUID's for EmacsLisp" single ((:commit . "1519bfeb0e31602b840bc8dd35d7c7e732c159fe") (:keywords "lisp") (:authors ("James Mastros")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk"))]) (utop . [(20181010 2155) ((emacs (24))) "Universal toplevel for OCaml" single ((:commit . "ea38850e606dd18c94e2ccabc28485fec1c8f91f") (:keywords "ocaml" "languages") (:authors ("Jeremie Dimino" . "jeremie@dimino.org")) (:maintainer "Jeremie Dimino" . "jeremie@dimino.org") (:url . "https://github.com/diml/utop"))]) (usql . [(20180305 2323) ((emacs (25 1))) "U-SQL support for sql-mode" single ((:commit . "bfaf428b366a9a185eef84f0d645a98dc918fe3d") (:keywords "languages") (:authors ("Nicholas Barnwell" . "nb@ul.io")) (:maintainer "Nicholas Barnwell" . "nb@ul.io") (:url . "https://github.com/nickbarwell/usql.el"))]) (use-ttf . [(20180609 552) ((emacs (24 4)) (s (1 12 0))) "Use the same font cross OS." single ((:commit . "29dddac84184e0c391dc586c56e94593df4f5a59") (:authors ("Shen, Jen-Chieh" . "jcs090218@gmail.com")) (:maintainer "Shen, Jen-Chieh" . "jcs090218@gmail.com") (:url . "https://github.com/jcs090218/use-ttf"))]) (use-package-ensure-system-package . [(20180913 1501) ((use-package (2 1)) (system-packages (1 0 4))) "auto install system packages" single ((:commit . "39a8b8812c2c9f6f0b299e6a04e504ef393694ce") (:keywords "convenience" "tools" "extensions") (:authors ("Justin Talbott" . "justin@waymondo.com")) (:maintainer "Justin Talbott" . "justin@waymondo.com") (:url . "https://github.com/waymondo/use-package-ensure-system-package"))]) (use-package-el-get . [(20180131 505) ((use-package (1 0))) "el-get support for use package" single ((:commit . "cba87c4e9a3a66b7c10962e3aefdf11c83d737bc") (:keywords "dotemacs" "startup" "speed" "config" "package" "tools") (:authors ("Edward Knyshov" . "edvorg@gmail.com")) (:maintainer "Edward Knyshov" . "edvorg@gmail.com") (:url . "https://github.com/edvorg/use-package-el-get"))]) (use-package-chords . [(20181024 2322) ((use-package (2 1)) (bind-key (1 0)) (bind-chord (0 2)) (key-chord (0 6))) "key-chord keyword for use-package" single ((:commit . "39a8b8812c2c9f6f0b299e6a04e504ef393694ce") (:keywords "convenience" "tools" "extensions") (:authors ("Justin Talbott" . "justin@waymondo.com")) (:maintainer "Justin Talbott" . "justin@waymondo.com") (:url . "https://github.com/waymondo/use-package-chords"))]) (use-package . [(20181119 2350) ((emacs (24 3)) (bind-key (2 4))) "A configuration macro for simplifying your .emacs" tar ((:commit . "39a8b8812c2c9f6f0b299e6a04e504ef393694ce") (:keywords "dotemacs" "startup" "speed" "config" "package") (:authors ("John Wiegley" . "johnw@newartisans.com")) (:maintainer "John Wiegley" . "johnw@newartisans.com") (:url . "https://github.com/jwiegley/use-package"))]) (usage-memo . [(20170926 37) nil "integration of Emacs help system and memo" single ((:commit . "88e15a9942a3e0a6e36e9c3e51e3edb746067b1a") (:keywords "convenience" "languages" "lisp" "help" "tools" "docs") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/usage-memo.el"))]) (urlenc . [(20140116 1456) nil "URL encoding/decoding utility for Emacs." single ((:commit . "835a6dcb783bbe84714bae87a3464aa0b128bfac") (:keywords "url") (:authors ("Taiki SUGAWARA" . "buzz.taiki@gmail.com")) (:maintainer "Taiki SUGAWARA" . "buzz.taiki@gmail.com") (:url . "https://github.com/buzztaiki/urlenc-el"))]) (url-shortener . [(20170805 242) nil "shorten long url and expand tinyurl" single ((:commit . "06db8270213b9e352d6c335b0663059a1353d05e") (:authors ("Yu Yang" . "yy2012cn@NOSPAM.gmail.com")) (:maintainer "Yu Yang" . "yy2012cn@NOSPAM.gmail.com") (:url . "https://github.com/yuyang0/url-shortener"))]) (uptimes . [(20180416 1323) ((cl-lib (0 5)) (emacs (24))) "Track and display emacs session uptimes." single ((:commit . "5e81f8bb419836602819045e7d5a74b76ad3e69c") (:keywords "processes" "uptime") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/uptimes.el"))]) (upbo . [(20180422 822) ((dash (2 12 0)) (emacs (24 4))) "Karma Test Runner Integration" single ((:commit . "c37728e11dedd29d849ba9523465b0cdaccea9d5") (:keywords "javascript" "js" "test" "karma") (:authors ("Sungho Kim(shiren)")) (:maintainer "Sungho Kim(shiren)") (:url . "http://github.com/shiren"))]) (untitled-new-buffer . [(20161212 1508) ((emacs (24 4)) (magic-filetype (0 2 0))) "Open untitled new buffer like other text editors." single ((:commit . "4eabc6937b0e83062ffce9de0d42110224063a6c") (:keywords "files" "convenience") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/untitled-new-buffer.el"))]) (unkillable-scratch . [(20160505 203) nil "Disallow buffers from being killed by regexp -- default is *scratch* buffer" single ((:commit . "676a5a97658830caece18fa65a23e3d113933151") (:keywords "scratch") (:authors ("Eric Crosson" . "esc@ericcrosson.com")) (:maintainer "Eric Crosson" . "esc@ericcrosson.com"))]) (universal-emotions-emoticons . [(20180729 1941) ((emacs (24 4))) "Emoticons For The Six Universal Expressions" single ((:commit . "9cedd09ee65cb9fa71f27b0ab46a8353bdc00902") (:keywords "convenience" "docs" "languages") (:authors ("Grant Rettke" . "gcr@wisdomandwonder.com")) (:maintainer nil . "<gcr@wisdomandwonder.com>") (:url . "https://github.com/grettke/universal-emotions-emoticons"))]) (unison-mode . [(20160513 1501) nil "Syntax highlighting for unison file synchronization program" single ((:commit . "0bd6a65c0d12f87fcf7bdff15fe54444959b93bf") (:keywords "symchronization" "unison") (:authors ("Karl Fogelmark" . "karlfogel@gmail.com")) (:maintainer "Karl Fogelmark" . "karlfogel@gmail.com") (:url . "https://github.com/impaktor/unison-mode"))]) (unison . [(20160704 740) ((emacs (24 1))) "sync with Unison" single ((:commit . "a78a04c0d1398d00f75a1bd4799622a65bcb0f28") (:keywords "sync") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org") (:url . "http://github.com/unhammer/unison.el"))]) (unipoint . [(20140113 2224) nil "a simple way to insert unicode characters by TeX name" single ((:commit . "5da04aebac35a5c9e1d8704f2231808d42f4b36a") (:authors ("Andrew Gwozdziewycz" . "git@apgwoz.com")) (:maintainer "Andrew Gwozdziewycz" . "git@apgwoz.com") (:url . "https://github.com/apgwoz/unipoint"))]) (unify-opening . [(20171122 2012) ((emacs (24 4))) "Unify the mechanism to open files" single ((:commit . "502469ddba6d8d52159f53976265f7d956b6b17c") (:authors ("Damien Cassou" . "damien.cassou@gmail.com")) (:maintainer "Damien Cassou" . "damien.cassou@gmail.com") (:url . "https://github.com/DamienCassou/unify-opening"))]) (unidecode . [(20180312 1926) nil "Transliterate Unicode to ASCII" tar ((:commit . "5502ada9287b4012eabb879f12f5b0a9df52c5b7") (:authors ("sindikat <sindikat at mail36 dot net>")) (:maintainer "John Mastro" . "john.b.mastro@gmail.com"))]) (unicode-whitespace . [(20140508 2041) ((ucs-utils (0 7 6)) (list-utils (0 4 2)) (persistent-soft (0 8 8)) (pcache (0 2 3))) "teach whitespace-mode about fancy characters" single ((:commit . "a18c6b38d78b94f2eb1dcc4cb4fa91b6a17efabe") (:keywords "faces" "wp" "interface") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/unicode-whitespace"))]) (unicode-troll-stopper . [(20151024 131) nil "Minor mode for Highlighting Unicode homoglyphs" single ((:commit . "15e4b57b78bf643bb56e5000078030cbb5c66e2a") (:keywords "unicode") (:authors ("Cam Saül" . "cammsaul@gmail.com")) (:maintainer "Cam Saül" . "cammsaul@gmail.com") (:url . "https://github.com/camsaul/emacs-unicode-troll-stopper"))]) (unicode-progress-reporter . [(20140508 2041) ((emacs (24 1 0)) (ucs-utils (0 7 6)) (list-utils (0 4 2)) (persistent-soft (0 8 8)) (pcache (0 2 3))) "Progress-reporter with fancy characters" single ((:commit . "5e66724fd7d15743213b082474d798117b194494") (:keywords "interface") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/unicode-progress-reporter"))]) (unicode-input . [(20141219 720) nil "Support for unicode character input" single ((:keywords "unicode" "input") (:authors ("m00nlight" . "dot_wangyushi@yeah.net")) (:maintainer "m00nlight" . "dot_wangyushi@yeah.net"))]) (unicode-fonts . [(20181001 1509) ((font-utils (0 7 8)) (ucs-utils (0 8 2)) (list-utils (0 4 2)) (persistent-soft (0 8 10)) (pcache (0 3 1))) "Configure Unicode fonts" single ((:commit . "7b88ae84e589f6c8b9386b2fb5a02ff4ccb91169") (:keywords "i18n" "faces" "frames" "wp" "interface") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/unicode-fonts"))]) (unicode-escape . [(20160614 1234) ((emacs (24)) (names (20151201 0)) (dash (2 12 1))) "Escape/Unescape unicode notations" single ((:commit . "fc69ec780d9e54c364a9252bd0cf1d2507f3fab7") (:keywords "i18n" "unicode") (:authors ("KOBAYASHI Shigeru (kosh)" . "shigeru.kb@gmail.com")) (:maintainer "KOBAYASHI Shigeru (kosh)" . "shigeru.kb@gmail.com") (:url . "https://github.com/kosh04/unicode-escape.el"))]) (unicode-enbox . [(20140508 2041) ((string-utils (0 3 2)) (ucs-utils (0 7 6)) (list-utils (0 4 2)) (persistent-soft (0 8 8)) (pcache (0 2 3))) "Surround a string with box-drawing characters" single ((:commit . "77074fac1994a4236f111d6a1d0cf79ea3fca151") (:keywords "extensions" "interface") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/unicode-enbox"))]) (unicode-emoticons . [(20150204 1108) nil "Shortcuts for common unicode emoticons" single ((:commit . "fb18631f342b0243cf77cf59ed2067c47aae5233") (:keywords "games" "entertainment" "comms") (:authors ("Gunther Hagleitner")) (:maintainer "Gunther Hagleitner") (:url . "https://github.com/hagleitn/unicode-emoticons"))]) (unfill . [(20170723 146) nil "Unfill paragraphs or regions, and toggle between filled & unfilled" single ((:commit . "df0c4dee19a3874b11c7c7f04e8a2fba629fda9b") (:keywords "utilities") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/unfill"))]) (undohist . [(20150315 1242) ((cl-lib (1 0))) "Persistent undo history for GNU Emacs" single ((:commit . "d2239a5f736724ceb9e3b6bcaa86f4064805cda0") (:keywords "convenience") (:authors ("MATSUYAMA Tomohiro" . "m2ym.pub@gmail.com")) (:maintainer "MATSUYAMA Tomohiro" . "m2ym.pub@gmail.com"))]) (underwater-theme . [(20131118 2) nil "A gentle, deep blue color theme" single ((:commit . "4eb9ef014f580adc135d91d1cd68d37a310640b6") (:keywords "faces") (:authors ("Jon-Michael Deldin" . "dev@jmdeldin.com")) (:maintainer "Jon-Michael Deldin" . "dev@jmdeldin.com"))]) (underline-with-char . [(20170814 923) ((emacs (24))) "Underline with a char" single ((:commit . "6daeba77e17dc11558ca3ccb0495524f5104d581") (:keywords "convenience") (:maintainer nil . "marcowahlsoft@gmail.com"))]) (undercover . [(20180403 1452) ((emacs (24)) (dash (2 0 0)) (shut-up (0 3 2))) "Test coverage library for Emacs Lisp" single ((:commit . "3fc54ef92f0b4b7d26d962d6ed29a81d526a3a66") (:keywords "lisp" "tests" "coverage" "tools") (:authors ("Sviridov Alexander" . "sviridov.vmi@gmail.com")) (:maintainer "Sviridov Alexander" . "sviridov.vmi@gmail.com") (:url . "https://github.com/sviridov/undercover.el"))]) (uncrustify-mode . [(20130707 1359) nil "Minor mode to automatically uncrustify." single ((:commit . "73893d000361e95784911e5ec268ad0ab2a1473c") (:keywords "uncrustify") (:authors ("Tabito Ohtani" . "koko1000ban@gmail.com")) (:maintainer "Tabito Ohtani" . "koko1000ban@gmail.com"))]) (ukrainian-holidays . [(20130720 1349) nil "Ukrainian holidays for Emacs calendar." single ((:commit . "e52b0c92843e9f4d0415a7ba3b8559785497d23d") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/ukrainian-holidays"))]) (ujelly-theme . [(20180214 1624) nil "Ujelly theme for GNU Emacs 24 (deftheme)" single ((:commit . "bf724ce7806a738d2043544061e5f9bbfc56e674") (:authors ("Mark Tran" . "mark.tran@gmail.com")) (:maintainer "Mark Tran" . "mark.tran@gmail.com") (:url . "http://github.com/marktran/color-theme-ujelly"))]) (uimage . [(20160901 1221) nil "An iimage like mode with the ability to display url images" single ((:commit . "9893d09160ef7e8c0ecdcd74fca99ffeb5f9d70d") (:keywords "lisp" "url" "image") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com"))]) (ucs-utils . [(20150826 1414) ((persistent-soft (0 8 8)) (pcache (0 2 3)) (list-utils (0 4 2))) "Utilities for Unicode characters" tar ((:commit . "cbfd42f822bf5717934fa2d92060e6e24a813433") (:keywords "i18n" "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/ucs-utils"))]) (ubuntu-theme . [(20150805 1506) nil "A theme inspired by the default terminal colors in Ubuntu" single ((:commit . "88b0eefc75d4cbcde103057e1c5968d4c3052f69") (:authors ("Francesc Rocher" . "francesc.rocher@gmail.com")) (:maintainer "Francesc Rocher" . "francesc.rocher@gmail.com") (:url . "http://github.com/rocher/ubuntu-theme"))]) (typoscript-mode . [(20170126 912) ((emacs (24 4)) (use-package (0))) "mode for TypoScript files" single ((:commit . "44e7567e921573c4f33c537b827f71fb1f565c32") (:keywords "typo3" "typoscript") (:authors ("Johannes Goslar")) (:maintainer "Johannes Goslar") (:url . "https://github.com/ksjogo/typoscript-mode"))]) (typo . [(20171209 1023) nil "Minor mode for typographic editing" single ((:commit . "9dad93b6f367f02f52c8d9bf15d446d922cec294") (:keywords "convenience" "wp") (:authors ("Jorgen Schaefer" . "forcer@forcix.cx")) (:maintainer "Jorgen Schaefer" . "forcer@forcix.cx") (:url . "https://github.com/jorgenschaefer/typoel"))]) (typit . [(20180317 807) ((emacs (24 4)) (f (0 18)) (mmt (0 1 1))) "Typing game similar to tests on 10 fast fingers" tar ((:commit . "4fe50d616fc60e77eb9b5a824c0a1ca4010b0746") (:keywords "games") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/typit"))]) (typing-game . [(20160426 1220) nil "a simple typing game" single ((:commit . "616435a5270274f4c7b698697674dbb2039049a4") (:keywords "lisp" "game") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com"))]) (typing . [(20180830 2203) nil "The Typing Of Emacs" single ((:commit . "a2ef25dde2d8eb91bd9c0c6164cb5208208647fa") (:keywords "games") (:authors ("Alex Schroeder" . "alex@gnu.org")) (:maintainer "Alex Schroeder" . "alex@gnu.org") (:url . "http://www.emacswiki.org/emacs/TypingOfEmacs"))]) (typescript-mode . [(20181018 553) nil "Major mode for editing typescript" tar ((:commit . "fbaad515c90df0f5c3634c471034e3041a4a8cfc") (:keywords "typescript" "languages") (:url . "http://github.com/ananthakumaran/typescript.el"))]) (typed-clojure-mode . [(20151003 1822) ((clojure-mode (2 1 1)) (cider (0 10 0 -4))) "Typed Clojure minor mode for Emacs" tar ((:commit . "3abd53d8cc1ad77ffe76e02849d0ab7731fd8364") (:authors ("John Walker <john.lou.walker@gmail.com>, Ambrose Bonnaire-Sergeant" . "abonnairesergeant@gmail.com")) (:maintainer "John Walker <john.lou.walker@gmail.com>, Ambrose Bonnaire-Sergeant" . "abonnairesergeant@gmail.com") (:url . "https://github.com/typedclojure/typed-clojure-mode"))]) (twittering-mode . [(20180917 328) nil "Major mode for Twitter" single ((:commit . "ad7de82cf4b72fc166970d85849e2a9a9ae5a979") (:keywords "twitter" "web") (:authors ("Tadashi MATSUO" . "tad@mymail.twin.ne.jp") ("Y. Hayamizu" . "y.hayamizu@gmail.com") ("Tsuyoshi CHO" . "Tsuyoshi.CHO+develop@Gmail.com") ("Alberto Garcia" . "agarcia@igalia.com") ("Xavier Maillard" . "xavier@maillard.im")) (:maintainer "Tadashi MATSUO" . "tad@mymail.twin.ne.jp") (:url . "http://twmode.sf.net/"))]) (twilight-theme . [(20120412 1303) nil "Twilight theme for GNU Emacs 24 (deftheme)" single ((:commit . "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b") (:authors ("Nick Parker" . "nickp@developernotes.com")) (:maintainer "Nick Parker" . "nickp@developernotes.com"))]) (twilight-bright-theme . [(20130605 843) nil "A Emacs 24 faces port of the TextMate theme" single ((:commit . "322157cb2f3bf7920ecd209dafc31bc1c7959f49") (:keywords "themes") (:authors ("Jim Myhrberg" . "contact@jimeh.me")) (:maintainer "Jim Myhrberg" . "contact@jimeh.me") (:url . "https://github.com/jimeh/twilight-bright-theme.el"))]) (twilight-anti-bright-theme . [(20160622 848) nil "A soothing Emacs 24 light-on-dark theme" single ((:commit . "523b95fcdbf4a6a6483af314ad05354a3d80f23f") (:keywords "themes") (:authors ("Jim Myhrberg" . "contact@jimeh.me")) (:maintainer "Jim Myhrberg" . "contact@jimeh.me") (:url . "https://github.com/jimeh/twilight-anti-bright-theme.el"))]) (twig-mode . [(20130220 1850) nil "A major mode for twig" single ((:commit . "2849f273a4855d3314a9c0cc84134f5b28ad5ea6") (:authors ("Bojan Matic aka moljac024")) (:maintainer "Bojan Matic aka moljac024"))]) (turnip . [(20150309 629) ((dash (2 6 0)) (s (1 9 0))) "Interacting with tmux from Emacs" single ((:commit . "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de") (:keywords "terminals" "tools") (:authors ("Johann Klähn" . "kljohann@gmail.com")) (:maintainer "Johann Klähn" . "kljohann@gmail.com"))]) (turkish . [(20170910 1511) nil "Convert to Turkish characters on-the-fly" single ((:commit . "9831a316c176bb21a1b91226323ea4133163e00c") (:keywords "turkish" "languages" "automatic" "conversion") (:authors ("Deniz Yüret")) (:maintainer "Emre Sevinç" . "emre.sevinc@gmail.com") (:url . "http://www.denizyuret.com/2006/11/emacs-turkish-mode.html"))]) (turing-machine . [(20180222 438) ((emacs (24 4))) "Single-tape Turing machine simulator" single ((:commit . "fa60b76a5bac1f54b7a1b3dc55aae7602c7e385b") (:keywords "turing" "machine" "simulation") (:authors ("Diego A. Mundo" . "diegoamundo@gmail.com")) (:maintainer "Diego A. Mundo" . "diegoamundo@gmail.com") (:url . "http://github.com/therockmandolinist/turing-machine"))]) (tup-mode . [(20140410 1614) nil "Major mode for editing files for Tup" single ((:commit . "bcc100c6485f1c81fdcd1215dfc6c41a81c215c8") (:authors ("Eric James Michael Ritz" . "lobbyjones@gmail.com")) (:maintainer "Eric James Michael Ritz" . "lobbyjones@gmail.com") (:url . "https://github.com/ejmr/tup-mode"))]) (tumblesocks . [(20140215 2047) ((htmlize (1 39)) (oauth (1 0 3)) (markdown-mode (1 8 1))) "An Emacs tumblr client." tar ((:commit . "85a6cdc2db3390593fd886c474959b675460b310"))]) (tumble . [(20160112 729) ((http-post-simple (0)) (cl-lib (0 5))) "an Tumblr mode for Emacs" single ((:commit . "e8fd7643cccf2b6ea4170f0c5f1f87d007e7fa00") (:keywords "tumblr") (:authors ("Federico Builes" . "federico.builes@gmail.com")) (:maintainer "Federico Builes" . "federico.builes@gmail.com"))]) (tuareg . [(20180918 1913) ((caml (3 12 0 1))) "OCaml mode for Emacs." tar ((:commit . "c030be472c2aea4d4b770705f9099fb00e952618") (:keywords "ocaml" "languages") (:authors ("Albert Cohen" . "Albert.Cohen@inria.fr") ("Sam Steingold" . "sds@gnu.org") ("Christophe Troestler" . "Christophe.Troestler@umons.ac.be") ("Till Varoquaux" . "till@pps.jussieu.fr") ("Sean McLaughlin" . "seanmcl@gmail.com") ("Stefan Monnier" . "monnier@iro.umontreal.ca")) (:maintainer "Albert Cohen" . "Albert.Cohen@inria.fr") (:url . "https://github.com/ocaml/tuareg"))]) (ttl-mode . [(20160505 832) nil "mode for Turtle (and Notation 3)" single nil]) (tt-mode . [(20130804 1110) nil "Emacs major mode for editing Template Toolkit files." single ((:commit . "85ed3832e7eef391f7879d9990d59c7a3493c15e") (:authors ("Dave Cross" . "dave@dave.org.uk")) (:maintainer "Dave Cross" . "dave@dave.org.uk"))]) (tss . [(20150913 1408) ((auto-complete (1 4 0)) (json-mode (1 1 0)) (log4e (0 2 0)) (yaxception (0 1))) "provide a interface for auto-complete.el/flymake.el on typescript-mode." tar ((:commit . "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0") (:keywords "typescript" "completion") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-tss"))]) (ts-comint . [(20171106 647) nil "Run a Typescript interpreter in an inferior process window." single ((:commit . "8817dc7b3a6eb78c3cad42e5677c2113274a1963") (:keywords "typescript" "node" "inferior-mode" "convenience") (:authors ("Paul Huff" . "paul.huff@gmail.com")) (:maintainer "Paul Huff" . "paul.huff@gmail.com") (:url . "https://github.com/josteink/ts-comint"))]) (try . [(20170226 1605) ((emacs (24))) "Try out Emacs packages." single ((:commit . "271b0a362cadf44d0694628b9e213f54516ef913") (:keywords "packages") (:authors ("Lars Tveito" . "larstvei@ifi.uio.no")) (:maintainer "Lars Tveito" . "larstvei@ifi.uio.no") (:url . "http://github.com/larstvei/try"))]) (truthy . [(20140508 2041) ((list-utils (0 4 2))) "Test the content of a value" single ((:commit . "8ed8d07772aa8457554547eb17e264b5df2b4a69") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/truthy"))]) (trr . [(20170221 842) nil "a type-writing training program on GNU Emacs." tar ((:commit . "83660d8343ef3367837354dc684dfdde2f95826a") (:keywords "games" "faces") (:authors ("YAMAMOTO Hirotaka" . "ymmt@is.s.u-tokyo.ac.jp") ("KATO Kenji" . "kato@suri.co.jp") ("	*Original Author") ("INAMURA You" . "inamura@icot.or.jp") ("	*Original Author")) (:maintainer "YAMAMOTO Hirotaka" . "ymmt@is.s.u-tokyo.ac.jp"))]) (trinary . [(20180904 2313) ((emacs (24))) "Trinary logic." single ((:commit . "886232c6d7e92a8e9fe573eef46754ebe321f90d") (:keywords "languages") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/trinary-logic"))]) (trident-mode . [(20130726 1907) ((emacs (24)) (slime (20130526)) (skewer-mode (1 5 0)) (dash (1 0 3))) "Live Parenscript interaction" single ((:commit . "ad3201f47e114de35df189c3d80f0fdea9507ea9") (:keywords "languages" "lisp" "processes" "tools") (:authors ("John Mastro" . "john.b.mastro@gmail.com")) (:maintainer "John Mastro" . "john.b.mastro@gmail.com") (:url . "https://github.com/johnmastro/trident-mode.el"))]) (treepy . [(20180724 656) ((emacs (25 1))) "Generic tree traversal tools" single ((:commit . "b40e6b09eb9be45da67b8c9e4990a5a0d7a2a09d") (:keywords "lisp" "maint" "tools") (:authors ("Daniel Barreto" . "daniel.barreto.n@gmail.com")) (:maintainer "Daniel Barreto" . "daniel.barreto.n@gmail.com") (:url . "https://github.com/volrath/treepy.el"))]) (treemacs-projectile . [(20181029 624) ((projectile (0 14 0)) (treemacs (0))) "Projectile integration for treemacs" single ((:commit . "af0629b90ee8cb380316a39c42ba405469146a34") (:authors ("Alexander Miller" . "alexanderm@web.de")) (:maintainer "Alexander Miller" . "alexanderm@web.de") (:url . "https://github.com/Alexander-Miller/treemacs"))]) (treemacs-evil . [(20180803 1017) ((evil (1 2 12)) (treemacs (0))) "Evil mode integration for treemacs" single ((:commit . "af0629b90ee8cb380316a39c42ba405469146a34") (:authors ("Alexander Miller" . "alexanderm@web.de")) (:maintainer "Alexander Miller" . "alexanderm@web.de") (:url . "https://github.com/Alexander-Miller/treemacs"))]) (treemacs . [(20181120 1118) ((emacs (25 2)) (cl-lib (0 5)) (dash (2 11 0)) (s (1 10 0)) (f (0 11 0)) (ace-window (0 9 0)) (pfuture (1 2)) (hydra (0 13 2)) (ht (2 2))) "A tree style file explorer package" tar ((:commit . "af0629b90ee8cb380316a39c42ba405469146a34") (:authors ("Alexander Miller" . "alexanderm@web.de")) (:maintainer "Alexander Miller" . "alexanderm@web.de") (:url . "https://github.com/Alexander-Miller/treemacs"))]) (tree-mode . [(20151104 1331) nil "A mode to manage tree widgets" single ((:commit . "b06078826d5875d74b0e7b7ac47b0d0917610534") (:keywords "help" "convenience" "widget") (:authors (nil . "wenbinye@163.com")) (:maintainer nil . "wenbinye@163.com"))]) (travis . [(20150825 1138) ((s (1 9 0)) (dash (2 9 0)) (pkg-info (0 5 0)) (request (0 1 0))) "Emacs client for Travis" tar ((:commit . "754ef07c17fed17ab03664ad11e2b0b2ef5e78ed") (:keywords "travis") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/emacs-travis"))]) (transpose-mark . [(20150405 716) nil "Transpose data using the Emacs mark" single ((:commit . "667327602004794de97214cf336ac61650ef75b7") (:keywords "transpose" "convenience") (:authors ("Kevin W. van Rooijen" . "kevin.van.rooijen@attichacker.com")) (:maintainer "Kevin W. van Rooijen" . "kevin.van.rooijen@attichacker.com"))]) (transpose-frame . [(20151126 1426) nil "Transpose windows arrangement in a frame" single ((:commit . "011f420c3496b69fc22d789f64cb8091834feba7") (:keywords "window") (:authors ("S. Irie")) (:maintainer "S. Irie"))]) (transmission . [(20180728 1717) ((emacs (24 4)) (let-alist (1 0 5))) "Interface to a Transmission session" single ((:commit . "bbe4077b89afe732d346eeed1ad0783537f33480") (:keywords "comm" "tools") (:authors ("Mark Oteiza" . "mvoteiza@udel.edu")) (:maintainer "Mark Oteiza" . "mvoteiza@udel.edu"))]) (transfer-sh . [(20180603 1431) ((async (1 0))) "Simple interface for sending buffer contents to transfer.sh" single ((:commit . "55da85f963d347255a2b46568954923679331798") (:keywords "cloud" "upload" "share") (:authors ("S. Roskamp" . "steffen.roskamp@gmail.com")) (:maintainer "S. Roskamp" . "steffen.roskamp@gmail.com"))]) (tramp-term . [(20180223 1527) nil "Automatic setup of directory tracking in ssh sessions." single ((:commit . "7c29f888de0385a676dbf9a4e17bac0111f5c10a") (:keywords "tramp" "ssh") (:authors ("Randy Morris" . "randy.morris@archlinux.us")) (:maintainer "Randy Morris" . "randy.morris@archlinux.us") (:url . "https://github.com/randymorris/tramp-term.el"))]) (tramp-hdfs . [(20170821 1320) ((emacs (24 4))) "Tramp extension to access hadoop/hdfs file system in Emacs" single ((:commit . "f8406f77bf83b66306ced693a5e4aaf606f46762") (:keywords "tramp" "emacs" "hdfs" "hadoop" "webhdfs" "rest") (:authors ("Raghav Kumar Gautam" . "raghav@apache.org")) (:maintainer "Raghav Kumar Gautam" . "raghav@apache.org"))]) (tracwiki-mode . [(20150119 1621) ((xml-rpc (1 6 8))) "Emacs Major mode for working with Trac" single ((:commit . "6a620444d59b438f42383b48cd4c19c03105dba6") (:keywords "trac" "wiki" "tickets") (:authors ("Matthew Erickson" . "peawee@peawee.net")) (:maintainer "Matthew Erickson" . "peawee@peawee.net"))]) (tracking . [(20171210 2102) nil "Buffer modification tracking" tar ((:commit . "fedfa7eb8516a53fa70b6a1f4fce4b5ab66ea91f") (:authors ("Jorgen Schaefer" . "forcer@forcix.cx")) (:maintainer "Jorgen Schaefer" . "forcer@forcix.cx") (:url . "https://github.com/jorgenschaefer/circe/wiki/Tracking"))]) (traad . [(20180730 48) ((dash (2 13 0)) (deferred (0 3 2)) (popup (0 5 0)) (request (0 2 0)) (request-deferred (0 2 0)) (virtualenvwrapper (20151123)) (f (0 20 0)) (bind-map (1 1 1))) "emacs interface to the traad refactoring server." single ((:commit . "98e23363b7e8a590a2f55976123a8c3da75c87a5") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/traad"))]) (tql-mode . [(20170724 254) ((emacs (24))) "TQL mode" single ((:commit . "488add79eb3fc8ec02aedaa997fe1ed9e5c3e638") (:keywords "languages" "tql") (:authors ("Sean McLaughlin" . "seanmcl@gmail.com")) (:maintainer "Sean McLaughlin" . "seanmcl@gmail.com"))]) (toxi-theme . [(20160424 2126) ((emacs (24))) "A dark color theme by toxi" single ((:authors ("Karsten Schmidt" . "info@postspectacular.com")) (:maintainer "Karsten Schmidt" . "info@postspectacular.com") (:url . "http://bitbucket.org/postspectacular/toxi-theme/"))]) (tox . [(20160810 1555) nil "Launch current python test with tox" single ((:commit . "7655eb254038d5e34433e8a9d66b3ffc9c72e40c") (:keywords "convenience" "tox" "python" "tests") (:authors ("Chmouel Boudjnah" . "chmouel@chmouel.com")) (:maintainer "Chmouel Boudjnah" . "chmouel@chmouel.com") (:url . "https://github.com/chmouel/tox.el"))]) (totd . [(20150519 1440) ((s (1 9 0)) (cl-lib (0 5))) "Display a random daily emacs command." single ((:commit . "ca47b618ea8290776cdb5b0f1c2c335691f69660") (:keywords "help") (:authors ("Erik Hetzner" . "egh@e6h.org")) (:maintainer "Erik Hetzner" . "egh@e6h.org"))]) (total-lines . [(20171227 1239) ((emacs (24 3))) "Keep track of a buffer's total number of lines" single ((:commit . "473fa74a5416697ecd938866518bcad423f8fda6") (:keywords "convenience" "mode-line") (:authors ("Hinrik Örn Sigurðsson")) (:maintainer "Hinrik Örn Sigurðsson") (:url . "https://github.com/hinrik/total-lines"))]) (tornado-template-mode . [(20141128 1008) nil "A major mode for editing tornado templates" single ((:commit . "667c0663dbbd279b6c345446b9f2bc50eb52b747") (:authors ("Florian Mounier aka paradoxxxzero")) (:maintainer "Florian Mounier aka paradoxxxzero"))]) (tommyh-theme . [(20131004 2330) nil "A bright, bold-colored theme for emacs" single ((:commit . "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5") (:authors ("William Glass" . "william.glass@gmail.com")) (:maintainer "William Glass" . "william.glass@gmail.com"))]) (toml-mode . [(20161107 1800) ((emacs (24)) (cl-lib (0 5))) "Major mode for editing TOML files" single ((:commit . "f6c61817b00f9c4a3cab1bae9c309e0fc45cdd06") (:keywords "data" "toml") (:authors ("Felix Chern" . "idryman@gmail.com")) (:maintainer "Felix Chern" . "idryman@gmail.com") (:url . "https://github.com/dryman/toml-mode.el"))]) (toml . [(20130903 1255) nil "TOML (Tom's Obvious, Minimal Language) parser" single ((:commit . "9633a6872928e737a2335aae1065768b23d8c3b3") (:keywords "toml" "parser") (:authors ("Wataru MIYAGUNI" . "gonngo@gmail.com")) (:maintainer "Wataru MIYAGUNI" . "gonngo@gmail.com") (:url . "https://github.com/gongo/emacs-toml"))]) (tomatinho . [(20180621 1748) nil "Simple and beautiful pomodoro timer" tar ((:commit . "b53354b9b9f496c0388d6a573b06b7d6fc53d0bd") (:keywords "time" "productivity" "pomodoro technique") (:authors ("Konrad Scorciapino" . "scorciapino@gmail.com")) (:maintainer "Konrad Scorciapino" . "scorciapino@gmail.com"))]) (toggle-window . [(20141207 1548) nil "toggle current window size between half and full" single ((:commit . "e82c60e543933880402ede11e9423e48a17dde53") (:keywords "hide" "window") (:authors ("Kenny Liu")) (:maintainer "Kenny Liu") (:url . "https://github.com/deadghost/toggle-window"))]) (toggle-test . [(20140723 537) nil "Toggle between source and test files in various programming languages" single ((:commit . "e969321f274903d705995a7d0345a257576ec5ff") (:keywords "tdd" "test" "toggle" "productivity") (:authors ("Raghunandan Rao" . "r.raghunandan@gmail.com")) (:maintainer "Raghunandan Rao" . "r.raghunandan@gmail.com") (:url . "https://github.com/rags/toggle-test"))]) (toggle-quotes . [(20140710 926) nil "Toggle between single and double quoted string" single ((:commit . "33abc221d6887f0518337851318065cd86c34b03") (:keywords "convenience" "quotes") (:authors ("Jim Tian" . "tianjin.sc@gmail.com")) (:maintainer "Jim Tian" . "tianjin.sc@gmail.com") (:url . "https://github.com/toctan/toggle-quotes.el"))]) (toggle . [(20180316 3) ((cl-lib (0 5))) "quickly open corresponding file (eg test vs impl)." single ((:commit . "4ce20cc5b25a1f1b4669ea8ff2880ec764eaf7da") (:keywords "files" "extensions" "convenience") (:authors ("Ryan Davis" . "ryand-ruby@zenspider.com")) (:maintainer "Ryan Davis" . "ryand-ruby@zenspider.com"))]) (togetherly . [(20170426 616) ((cl-lib (0 3))) "allow multiple clients to edit a single buffer online" single ((:commit . "a6491bd5dd84f2aded0cd112ff06ae76ff78dfeb") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (todotxt-mode . [(20150424 1404) nil "Major mode for editing todo.txt files" single ((:commit . "dc6ae151edee88f329ba7abc5d39b7440002232f") (:keywords "wp" "files") (:authors ("Adolfo Villafiorita" . "adolfo.villafiorita@me.com")) (:maintainer "Adolfo Villafiorita" . "adolfo.villafiorita@me.com"))]) (todotxt . [(20180626 2230) nil "A major mode for editing todo.txt files" single ((:commit . "f13e404304c9d26c105de872f96b4601441b3875") (:keywords "todo.txt" "todotxt" "todotxt.el") (:authors ("Rick Dillon" . "rpdillon@killring.org")) (:maintainer "Rick Dillon" . "rpdillon@killring.org") (:url . "https://github.com/rpdillon/todotxt.el"))]) (toc-org . [(20181108 1621) nil "add table of contents to org-mode files (formerly, org-toc)" single ((:commit . "4315afd2a408c0d432ba3d8d040c2326c222fdbf") (:keywords "org-mode" "org-toc" "toc-org" "org" "toc" "table" "of" "contents") (:authors ("Sergei Nosov <sergei.nosov [at] gmail.com>")) (:maintainer "Sergei Nosov <sergei.nosov [at] gmail.com>") (:url . "https://github.com/snosov1/toc-org"))]) (tmmofl . [(20121025 1101) nil "Calls functions dependant on font lock highlighting at point" single ((:commit . "532aa6978e994e2b069ffe37aaf9a0011a07dadc") (:keywords "minor mode" "font lock" "toggling.") (:authors ("Phillip Lord" . "p.lord@hgmp.mrc.ac.uk")) (:maintainer "Phillip Lord" . "p.lord@hgmp.mrc.ac.uk"))]) (tldr . [(20180122 1112) ((emacs (24 3))) "tldr client for Emacs" single ((:commit . "398b197c8d2238628b07e1b32d0f373876279f4c") (:keywords "tools" "docs") (:authors ("Ono Hiroko" . "azazabc123@gmail.com")) (:maintainer "Ono Hiroko" . "azazabc123@gmail.com") (:url . "https://github.com/kuanyui/tldr.el"))]) (tj3-mode . [(20180519 1228) nil "major mode for editing TaskJuggler 3 files" single ((:commit . "1d98eb23f1606392f34ef1b80517cfc940fb9950") (:authors ("Christophe Rhodes" . "christophe@rhodes.io")) (:maintainer "Christophe Rhodes" . "christophe@rhodes.io") (:url . "https://github.com/csrhodes/tj3-mode"))]) (tinysegmenter . [(20141124 1013) ((cl-lib (0 5))) "Super compact Japanese tokenizer in Javascript ported to emacs lisp" single ((:commit . "872134704bd25c13a4c59552433da4c6881b5230") (:keywords "convenience") (:authors ("lugecy" . "lugecy@gmail.com")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/tinysegmenter.el"))]) (tiny-menu . [(20161213 1235) ((emacs (24 4))) "Display tiny menus." single ((:commit . "05563b94537b6eb22aeddedef2a6e59e3f88d073") (:keywords "menu" "tools") (:authors ("Aaron Bieber" . "aaron@aaronbieber.com")) (:maintainer "Aaron Bieber" . "aaron@aaronbieber.com") (:url . "https://github.com/aaronbieber/tiny-menu.el"))]) (tiny . [(20170903 949) nil "Quickly generate linear ranges in Emacs" single ((:commit . "012b2e7a67b9f067bbfa0292479861ffbaa201fa") (:keywords "convenience") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/tiny"))]) (tinkerer . [(20170906 1224) ((s (1 2 0))) "Elisp wrapper for Tinkerer Blogging Engine." single ((:commit . "e34135555f3748b578c7f8706dfd0c888fb87581") (:keywords "tinkerer" "blog" "wrapper") (:authors ("Yagnesh Raghava Yakkala" . "hi@yagnesh.org")) (:maintainer "Yagnesh Raghava Yakkala" . "hi@yagnesh.org") (:url . "https://github.com/yyr/tinkerer.el"))]) (timp . [(20160618 803) ((emacs (24 4)) (cl-lib (0 5)) (fifo-class (1 0)) (signal (1 0))) "Multithreading library" tar ((:commit . "66b21934b1eb8ee428c06dd64b3562ad44776a35") (:keywords "internal" "lisp" "processes" "tools") (:authors ("Mola-T" . "Mola@molamola.xyz")) (:maintainer "Mola-T" . "Mola@molamola.xyz") (:url . "https://github.com/mola-T/timp"))]) (timonier . [(20170411 800) ((emacs (24 4)) (s (1 11 0)) (f (0 19 0)) (dash (2 12 0)) (pkg-info (0 5 0)) (hydra (0 13 6)) (request (0 2 0)) (all-the-icons (2 0 0))) "Manage Kubernetes Applications" tar ((:commit . "0a150ea87bf695b43cf1740dfd7e553e0ae7601c") (:keywords "kubernetes" "docker") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/timonier"))]) (timesheet . [(20180802 202) ((s (1)) (org (7)) (auctex (11))) "Timesheet management add-on for org-mode" tar ((:commit . "67ca6a9f6733052066b438301fb2dd81b8b3f6eb") (:keywords "org" "timesheet") (:authors ("Tom Marble")) (:maintainer "Tom Marble") (:url . "https://github.com/tmarble/timesheet.el"))]) (timer-revert . [(20150122 2032) nil "minor mode to revert buffer for a given time interval." tar ((:commit . "615c91dec8b440d2b9b7c725dd733d7432564e45"))]) (timecop . [(20160520 1052) ((cl-lib (0 5)) (datetime-format (0 0 1))) "Freeze Time for testing" single ((:commit . "e6427538b547cbe02e1bd6ed4b765c73620bdae8") (:keywords "datetime" "testing") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/emacs-datetime"))]) (time-ext . [(20170126 1215) nil "more function for time/date" single ((:commit . "d128becf660fe3f30178eb1b05cd266741f4784a") (:keywords "lisp") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/time-ext.el"))]) (tile . [(20161225 357) ((emacs (25 1)) (s (1 9 0)) (dash (2 12 0)) (stream (2 2 3))) "Tile windows with layouts" single ((:commit . "22660f21f6e95de5aba55cd5d293d4841e9a4661") (:keywords "tile" "tiling" "window" "manager" "dynamic" "frames") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/tile"))]) (tide . [(20181025 1201) ((dash (2 10 0)) (s (1 11 0)) (flycheck (27)) (typescript-mode (0 1)) (cl-lib (0 5))) "Typescript Interactive Development Environment" tar ((:commit . "b2af64e5926b9c1493f7e39d5e928d61975816fb") (:keywords "typescript") (:authors ("Anantha kumaran" . "ananthakumaran@gmail.com")) (:maintainer "Anantha kumaran" . "ananthakumaran@gmail.com") (:url . "http://github.com/ananthakumaran/tide"))]) (tidal . [(20181102 1631) ((haskell-mode (16)) (emacs (24))) "Interact with TidalCycles for live coding patterns" single ((:commit . "55ee834048386450d3fcf5e71143dc3cefb089db") (:keywords "tools") (:authors (nil . "alex@slab.org")) (:maintainer nil . "alex@slab.org") (:url . "https://github.com/tidalcycles/Tidal"))]) (tickscript-mode . [(20171219 203) ((emacs (24 1))) "A major mode for Tickscript files" single ((:commit . "f0579f38ff14954df5002ce30ae6d4a2c978d461") (:keywords "languages") (:authors ("Marc Sherry" . "msherry@gmail.com")) (:maintainer "Marc Sherry" . "msherry@gmail.com") (:url . "https://github.com/msherry/tickscript-mode"))]) (thumb-through . [(20120119 534) nil "Plain text reader of HTML documents" single ((:commit . "08d8fb720f93c6172653e035191a8fa9c3305e63") (:keywords "html"))]) (thrift . [(20180905 1050) ((emacs (24))) "major mode for fbthrift and Apache Thrift files" single ((:commit . "4e05950f975b751cba325db1be843685b5c9bb37") (:keywords "languages"))]) (threes . [(20160820 1242) ((emacs (24)) (seq (1 11))) "A clone of Threes (a tiny puzzle game)" single ((:commit . "6981acb30b856c77cba6aba63fefbf102cbdfbb2") (:keywords "games") (:authors ("Chunyang Xu" . "xuchunyang.me@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang.me@gmail.com") (:url . "https://github.com/xuchunyang/threes.el"))]) (thread-dump . [(20170816 1850) nil "Java thread dump viewer" single ((:commit . "204c9600242756d4b514bb5ff6293e052bf4b49d") (:authors ("Dmitry Neverov")) (:maintainer "Dmitry Neverov") (:url . "http://github.com/nd/thread-dump.el"))]) (thinks . [(20170802 1128) ((cl-lib (0 5))) "Insert text in a think bubble." single ((:commit . "c02f236abc8c2025d9f01460b09b89ebdc96e28d") (:keywords "convenience" "quoting") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/thinks.el"))]) (thingopt . [(20160520 2318) nil "Thing at Point optional utilities" single ((:commit . "5679815852652479f3b3c9f3a98affc927384b2c") (:keywords "convenience") (:authors ("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) (:maintainer "Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))]) (therapy . [(20151113 1953) ((emacs (24))) "Hooks for managing multiple Python major versions" single ((:commit . "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/therapy"))]) (theme-looper . [(20170425 1306) ((cl-lib (0 5))) "Loop thru the available color-themes" single ((:commit . "875c2cfc84b3c143d3b14a7aba38905e35559157") (:keywords "convenience" "color-themes") (:authors ("Mohammed Ismail Ansari" . "team.terminal@gmail.com")) (:maintainer "Mohammed Ismail Ansari" . "team.terminal@gmail.com") (:url . "http://ismail.teamfluxion.com"))]) (theme-changer . [(20171221 1927) nil "Sunrise/Sunset Theme Changer for Emacs" single ((:commit . "61945695a30d678e6a5d47cbe7c8aff59a8c30ea") (:keywords "color-theme" "deftheme" "solar" "sunrise" "sunset") (:authors ("Joshua B. Griffith" . "josh.griffith@gmail.com")) (:maintainer "Joshua B. Griffith" . "josh.griffith@gmail.com") (:url . "https://github.com/hadronzoo/theme-changer"))]) (tfsmacs . [(20180911 2114) ((emacs (25)) (tablist (0 70))) "MS TFS source control interaction." single ((:commit . "13ee3f528ff616880611f563a68d921250692ef8") (:keywords "tfs" "vc") (:authors ("Dino Chiesa <dpchiesa@outlook.com>, Sebastian Monia" . "smonia@outlook.com")) (:maintainer "Dino Chiesa <dpchiesa@outlook.com>, Sebastian Monia" . "smonia@outlook.com") (:url . "http://github.com/sebasmonia/tfsmacs/"))]) (tf2-conf-mode . [(20161209 1620) nil "TF2 Configuration files syntax highlighting" single ((:commit . "536950f64c071ffd8495fb2c7ac7c63a11e25f93") (:keywords "languages") (:authors ("Guillermo Robles" . "guillerobles1995@gmail.com")) (:maintainer "Guillermo Robles" . "guillerobles1995@gmail.com") (:url . "https://github.com/wynro/emacs-tf2-conf-mode"))]) (textx-mode . [(20170516 911) ((emacs (24 3))) "Major mode for editing TextX files" single ((:commit . "72f9f0c5855b382024f0da8f56833c22a70a5cb3") (:keywords "textx") (:authors ("Novak Boškov" . "gnovak.boskov@gmail.com")) (:maintainer "Novak Boškov" . "gnovak.boskov@gmail.com") (:url . "https://github.com/novakboskov/textx-mode"))]) (textmate-to-yas . [(20160409 1708) nil "Import Textmate macros into yasnippet syntax" tar ((:commit . "be3a768b7ac4c2e24b9d4aa6e9ac1d916cdc5a73") (:keywords "yasnippet" "textmate") (:authors ("Matthew L. Fidler")) (:maintainer "Matthew L. Fidler") (:url . "https://github.com/mlf176f2/textmate-to-yas.el/"))]) (textmate . [(20110816 2146) nil "TextMate minor mode for Emacs" single ((:commit . "350918b070148f0ace6d9d3cd4ebcaf15c1a8781") (:keywords "textmate" "osx" "mac") (:authors ("Chris Wanstrath" . "chris@ozmm.org")) (:maintainer "Chris Wanstrath" . "chris@ozmm.org"))]) (textile-mode . [(20170304 1716) nil "Textile markup editing major mode" single ((:commit . "c37aaab809503df008209390e31e19abf4e23630") (:authors ("Julien Barnier" . "julien@nozav.org")) (:maintainer "Julien Barnier" . "julien@nozav.org"))]) (texfrag . [(20181001 753) ((emacs (25)) (auctex (11 90 2))) "preview LaTeX fragments in alien major modes" single ((:commit . "87ebd2653c39abe0b02a91ab2182e6fff562f6c7") (:keywords "tex" "languages" "wp") (:authors ("Tobias Zawada" . "i@tn-home.de")) (:maintainer "Tobias Zawada" . "i@tn-home.de") (:url . "https://github.com/TobiasZawada/texfrag"))]) (tex-smart-umlauts . [(20160427 758) nil "Smart umlaut conversion for TeX." single ((:commit . "5261b931443558f4252489a1e6616034848aff02") (:keywords "tex" "wp") (:authors ("Frank Fischer <frank-fischer at shadow-soft.de>")) (:maintainer "Frank Fischer <frank-fischer at shadow-soft.de>") (:url . "http://hub.darcs.net/lyro/tex-smart-umlauts"))]) (test-simple . [(20170527 1532) ((cl-lib (0))) "Simple Unit Test Framework for Emacs Lisp" single ((:commit . "b3b69f52207d3a8111421ad7ab9ed82abbe85316") (:keywords "unit-test") (:authors ("Rocky Bernstein" . "rocky@gnu.org")) (:maintainer "Rocky Bernstein" . "rocky@gnu.org") (:url . "http://github.com/rocky/emacs-test-simple"))]) (test-kitchen . [(20171129 2035) nil "Run test-kitchen inside of emacs" single ((:commit . "0fc0ca4808425f03fbeb8125246043723e2a179a") (:keywords "chef" "ruby" "test-kitchen") (:authors ("JJ Asghar")) (:maintainer "JJ Asghar") (:url . "http://github.com/jjasghar/test-kitchen-el"))]) (test-case-mode . [(20130525 1434) ((fringe-helper (0 1 1))) "unit test front-end" single ((:commit . "6074df10ebc97ddfcc228c71c73db179e672dac3") (:keywords "tools") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/test-case-mode/"))]) (test-c . [(20180423 1720) ((emacs (24 3))) "quickly test c code" single ((:commit . "761a576f62c7021ba941f178f153c51289df1553") (:authors ("Aurélien Aptel" . "aurelien.aptel@gmail.com")) (:maintainer "Aurélien Aptel" . "aurelien.aptel@gmail.com") (:url . "http://github.com/aaptel/test-c"))]) (terraform-mode . [(20170112 517) ((emacs (24 3)) (hcl-mode (0 3))) "Major mode for terraform configuration file" single ((:commit . "6973d1acaba2835dfdf174f5a5e27de6366002e1") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-terraform-mode"))]) (tern-django . [(20160221 1923) ((emacs (24)) (tern (0 0 1)) (f (0 17 1))) "Create tern projects for django applications." tar ((:commit . "46f2cd5e96bc804069f18455a828b8e4c5ec358a") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/tern-django"))]) (tern-context-coloring . [(20161218 747) ((emacs (24 3)) (context-coloring (8 1 0)) (tern (0 0 1))) "Use Tern for context coloring" single ((:commit . "3a8e979d6cc83aabcb3dda3f5f31a6422532efba") (:keywords "convenience" "faces" "tools") (:authors ("Jackson Ray Hamilton" . "jackson@jacksonrayhamilton.com")) (:maintainer "Jackson Ray Hamilton" . "jackson@jacksonrayhamilton.com") (:url . "https://github.com/jacksonrayhamilton/tern-context-coloring"))]) (tern-auto-complete . [(20170521 1935) ((tern (0 0 1)) (auto-complete (1 4)) (cl-lib (0 5)) (emacs (24))) "Tern Completion by auto-complete.el" single ((:commit . "e94e20be8510040744fc803c9fda6bbb9625c6d2") (:authors ("<m.sakurai at kiwanami.net>")) (:maintainer "<m.sakurai at kiwanami.net>"))]) (tern . [(20181108 722) ((json (1 2)) (cl-lib (0 5)) (emacs (24))) "Tern-powered JavaScript integration" single ((:commit . "e94e20be8510040744fc803c9fda6bbb9625c6d2") (:authors ("Marijn Haverbeke")) (:maintainer "Marijn Haverbeke") (:url . "http://ternjs.net/"))]) (terminal-here . [(20180513 833) ((emacs (24)) (cl-lib (0 5))) "Run an external terminal in current directory" single ((:commit . "271cdd27b3807e76c483b63d47a8287cbabd99d0") (:keywords "tools" "frames") (:authors ("David Shepherd" . "davidshepherd7@gmail.com")) (:maintainer "David Shepherd" . "davidshepherd7@gmail.com") (:url . "https://github.com/davidshepherd7/terminal-here"))]) (terminal-focus-reporting . [(20180830 719) ((emacs (24 4))) "Minor mode for terminal focus reporting." single ((:commit . "8b84bf18f4c5f1b59a11692eb706f13c3598d9a5") (:keywords "convenience") (:authors ("Vitalii Elenhaupt")) (:maintainer "Vitalii Elenhaupt") (:url . "https://github.com/veelenga/terminal-focus-reporting.el"))]) (termbright-theme . [(20151031 235) ((emacs (24 1))) "a more usable theme for white-on-black terminals" single ((:commit . "bec6ab14336c0611e85f45486276004f16d20607") (:keywords "themes") (:authors ("Brian Mastenbrook" . "brian@mastenbrook.net")) (:maintainer "Brian Mastenbrook" . "brian@mastenbrook.net") (:url . "https://github.com/bmastenbrook/termbright-theme-el"))]) (term-run . [(20151228 905) nil "Run arbitrary command in terminal buffer" single ((:commit . "bffd7b0183ca26645d191732092546eab7fca95e") (:keywords "utility" "shell" "command" "term-mode") (:authors ("10sr <8slashes+el [at] gmail [dot] com>")) (:maintainer "10sr <8slashes+el [at] gmail [dot] com>") (:url . "https://github.com/10sr/term-run-el"))]) (term-projectile . [(20170421 805) ((emacs (24)) (term-manager (0 1 0)) (projectile (0 13 0))) "projectile terminal management" single ((:commit . "13a0f1637a1f075d70211ccb8162e63a18a474da") (:keywords "projectile" "tools" "terminals" "vc") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://www.github.com/IvanMalison/term-manager"))]) (term-manager . [(20171020 841) ((dash (2 12 0)) (emacs (24 4))) "Contextual terminal management" tar ((:commit . "13a0f1637a1f075d70211ccb8162e63a18a474da") (:keywords "terminals" "tools") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://www.github.com/IvanMalison/term-manager"))]) (term-cmd . [(20160517 1045) ((emacs (24 0)) (dash (2 12 0)) (f (0 18 2))) "Send commands from programs running in term.el." tar ((:commit . "6c9cbc659b70241d2ed1601eea34aeeca0646dac"))]) (term-alert . [(20161119 945) ((emacs (24 0)) (term-cmd (1 1)) (alert (1 1)) (f (0 18 2))) "Notifications when commands complete in term.el." tar ((:commit . "47af9e6fe483ef0d393098c145f499362a33292a"))]) (term+mux . [(20140211 749) ((term+ (0 1)) (tab-group (0 1))) "term+ terminal multiplexer and session management" single ((:commit . "81b60e80cf008472bfd7fad9233af2ef722c208a") (:keywords "terminal" "emulation") (:authors ("INA Lintaro <tarao.gnn at gmail.com>")) (:maintainer "INA Lintaro <tarao.gnn at gmail.com>") (:url . "http://github.com/tarao/term+-el"))]) (term+key-intercept . [(20140211 750) ((term+ (0 1)) (key-intercept (0 1))) "term+ intercept key mapping" single ((:commit . "fd0771fd66b8c7a909aaac972194485c79ba48c4") (:keywords "terminal" "emulation") (:authors ("INA Lintaro <tarao.gnn at gmail.com>")) (:maintainer "INA Lintaro <tarao.gnn at gmail.com>") (:url . "http://github.com/tarao/term+-el"))]) (term+ . [(20170509 17) ((emacs (24)) (cl-lib (0 5))) "term-mode enhancement" tar ((:commit . "c3c9239b339c127231860de43abfa08c44c0201a") (:keywords "terminal" "emulation") (:authors ("INA Lintaro <tarao.gnn at gmail.com>")) (:maintainer "INA Lintaro <tarao.gnn at gmail.com>") (:url . "https://github.com/tarao/term-plus-el"))]) (ten-hundred-mode . [(20161028 2236) ((cl-lib (0 5))) "use only the ten hundred most usual words" tar ((:commit . "bdcfda49b1819e82d61fe90947e50bb948cf7933"))]) (temporary-persistent . [(20161210 1133) ((emacs (24 3)) (names (20151201 0)) (dash (2 12 1)) (s (1 10 0))) "Keep temp notes buffers persistent -*- lexical-binding: t" single ((:commit . "ac66f3054fc701d53f11ada9d2d9ab18ea481dc0") (:keywords "temp" "buffers" "notes") (:authors ("Kostafey" . "kostafey@gmail.com")) (:maintainer "Kostafey" . "kostafey@gmail.com") (:url . "https://github.com/kostafey/temporary-persistent"))]) (template-overlays . [(20180706 1132) ((emacs (24 4)) (ov (1 0 6))) "Display template regions using overlays" single ((:commit . "d32db58c044b2aca3720879003f55b1d57208b07") (:keywords "faces" "convenience" "templates" "overlays") (:authors ("Mariano Montone" . "marianomontone@gmail.com")) (:maintainer "Mariano Montone" . "marianomontone@gmail.com") (:url . "http://www.github.com/mmontone/template-overlays"))]) (telephone-line . [(20181120 455) ((emacs (24 4)) (cl-lib (0 5)) (cl-generic (0 2)) (seq (1 8))) "Rewrite of Powerline" tar ((:commit . "74068cd04a4a34095fe816ae71880ca271f2ea9e") (:keywords "mode-line") (:authors ("Daniel Bordak" . "dbordak@fastmail.fm")) (:maintainer "Daniel Bordak" . "dbordak@fastmail.fm") (:url . "https://github.com/dbordak/telephone-line"))]) (telepathy . [(20131209 1258) nil "Access Telepathy from Emacs" single ((:commit . "211d785b02a29ddc254422fdcc3db45262582f8c") (:keywords "telepathy" "tools") (:authors ("Nicolas Petton" . "petton.nicolas@gmail.com")) (:maintainer "Nicolas Petton" . "petton.nicolas@gmail.com"))]) (tea-time . [(20120331 820) nil "Simple timer package, useful to make perfect tea." single ((:commit . "1f6cf0bdd27c5eb3508989c5095427781f858eca") (:keywords "timer" "tea-time") (:authors ("konsty" . "antipin.konstantin@googlemail.com")) (:maintainer "Gabriel Saldana" . "gsaldana@gmail.com"))]) (tdd-status-mode-line . [(20131123 1716) nil "TDD status on the mode-line" single ((:commit . "4c082e62f4915b573338a97efcc6854d132323dc") (:keywords "faces" "tdd") (:authors ("Gergely Nagy" . "algernon@madhouse-project.org")) (:maintainer "Gergely Nagy" . "algernon@madhouse-project.org") (:url . "https://github.com/algernon/tdd-status-mode-line"))]) (tco . [(20160811 12) ((dash (1 2 0)) (emacs (24))) "tail-call optimisation for Emacs lisp" single ((:commit . "97529ed7a0939c51ce0084c0aa8b12b313654735") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (tc . [(20181109 428) nil "a Japanese input method with T-Code on Emacs" tar ((:commit . "5496f8dee27c4d925977da3cca6fcacf9b45bc58") (:authors ("Kaoru Maeda" . "maeda@src.ricoh.co.jp") ("Yasushi Saito" . "yasushi@cs.washington.edu") ("KITAJIMA Akira" . "kitajima@isc.osakac.ac.jp")) (:maintainer "KITAJIMA Akira"))]) (tbx2org . [(20140224 1559) ((dash (2 5 0)) (s (1 8 0)) (cl-lib (0 4))) "Tinderbox to org-mode conversion" single ((:commit . "08e9816ba6066f56936050b58d07ceb2187ae6f7") (:keywords "org-mode") (:authors ("istib")) (:maintainer "istib") (:url . "https://github.com/istib/tbx2org"))]) (tblui . [(20161007 1912) ((dash (2 12 1)) (magit-popup (2 6 0)) (tablist (0 70)) (cl-lib (0 5))) "Define tabulated list UI easily" single ((:commit . "bb29323bb3e27093d50cb42db3a9329a096b6e4d") (:authors ("Yuki Inoue <inouetakahiroki _at_ gmail.com>")) (:maintainer "Yuki Inoue <inouetakahiroki _at_ gmail.com>") (:url . "https://github.com/Yuki-Inoue/tblui.el"))]) (tawny-mode . [(20170422 2202) ((cider (0 12)) (emacs (25))) "Ontology Editing with Tawny-OWL" single ((:commit . "d768cce65891f11cd2f96aff54b76e5bb07cc649") (:authors ("Phillip Lord" . "phillip.lord@newcastle.ac.uk")) (:maintainer "Phillip Lord" . "phillip.lord@newcastle.ac.uk"))]) (taskpaper-mode . [(20181113 931) nil "Major mode for working with TaskPaper files" single ((:commit . "91a8a3ebbc3d8f067fcbe88933bc208518760013") (:keywords "outlines" "notetaking" "task management" "productivity" "taskpaper") (:authors ("Dmitry Safronov" . "saf.dmitry@gmail.com")) (:maintainer "Dmitry Safronov" . "saf.dmitry@gmail.com") (:url . "https://github.com/saf-dmitry/taskpaper-mode"))]) (tao-theme . [(20181020 1726) nil "This package provides two parametrized uncoloured color themes for Emacs: tao-yin and tao-yang." tar ((:commit . "c10ba53dad8aa3625191184a56c34ed456561771"))]) (tangotango-theme . [(20170924 1509) nil "Tango Palette color theme for Emacs 24." single ((:commit . "e2f2ea9c35f06dfc43a29c91c14cf0cdb19f2144") (:keywords "tango" "palette" "color" "theme" "emacs") (:authors ("Julien Barnier")) (:maintainer "Julien Barnier") (:url . "https://github.com/juba/color-theme-tangotango"))]) (tango-plus-theme . [(20170214 1708) nil "A color theme based on the tango palette" single ((:commit . "8ba8901397e3e9f1d53110487bfa0effc65015e7") (:authors ("Titus von der Malsburg" . "malsburg@posteo.de")) (:maintainer "Titus von der Malsburg" . "malsburg@posteo.de") (:url . "https://github.com/tmalsburg/tango-plus-theme"))]) (tango-2-theme . [(20120312 2025) nil "Tango 2 color theme for GNU Emacs 24" single ((:commit . "64e44c98e41ebbe3b827d54280e3b9615787daaa") (:authors ("Nick Parker")) (:maintainer "Nick Parker"))]) (take-off . [(20140531 917) ((emacs (24 3)) (web-server (0 1 0))) "Emacs remote web access" tar ((:commit . "aa9ea45566fc74febbb6ee9c409ecc4b59246215") (:authors ("Thomas Burette" . "burettethomas@gmail.com")) (:maintainer "Thomas Burette" . "burettethomas@gmail.com") (:url . "https://github.com/tburette/take-off"))]) (tagedit . [(20161121 855) ((s (1 3 1)) (dash (1 0 3))) "Some paredit-like features for html-mode" single ((:commit . "b3a70101a0dcf85498c92b7fcfa7fdbac869746c") (:keywords "convenience") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (tabula-rasa . [(20141216 547) ((emacs (24 4))) "Distraction free writing mode" single ((:commit . "e85fff9de18dc31bc6a7aca726e34a95cc5459f5") (:keywords "distraction free" "writing") (:authors ("Ido Magal" . "misc@satans.church")) (:maintainer "Ido Magal" . "misc@satans.church") (:url . "https://github.com/idomagal/Tabula-Rasa/blob/master/tabula-rasa.el"))]) (tablist . [(20170220 335) ((emacs (24 3))) "Extended tabulated-list-mode" tar ((:commit . "c834a84efb6efa32497efe1e73160fade741b836") (:keywords "extensions" "lisp") (:authors ("Andreas Politz" . "politza@fh-trier.de")) (:maintainer "Andreas Politz" . "politza@fh-trier.de"))]) (tabbar-ruler . [(20160802 307) ((tabbar (2 0 1)) (powerline (2 3)) (mode-icons (0 4 0)) (cl-lib (0 5))) "Pretty tabbar, autohide, use both tabbar/ruler" tar ((:commit . "535568189aa12a3eff7f977d2783e57b6a65ab6a") (:keywords "tabbar" "ruler mode" "menu" "tool bar.") (:authors ("Matthew Fidler, Ta Quang Trung, Nathaniel Cunningham")) (:maintainer "Matthew L. Fidler") (:url . "http://github.com/mlf176f2/tabbar-ruler.el"))]) (tabbar . [(20180726 1735) nil "Display a tab bar in the header line" tar ((:commit . "82bbda31cbe8ef367dd6501c3aa14b7f2c835910") (:keywords "convenience") (:authors ("David Ponce" . "david@dponce.com")) (:maintainer "David Ponce" . "david@dponce.com"))]) (tab-jump-out . [(20151006 130) ((dash (2 10)) (emacs (24 4))) "Use tab to jump out of delimiter pairs." single ((:commit . "1c3fec1826d2891177ea78e4e7cce1dc67e83e51") (:keywords "tab" "editing") (:authors ("Zhang Kai Yu" . "yeannylam@gmail.com")) (:maintainer "Zhang Kai Yu" . "yeannylam@gmail.com"))]) (tab-group . [(20140306 1450) nil "Grouped tabs and their tabbar" single ((:commit . "5a290ec2608e4100fb188fd60ecb77affcc3465b") (:keywords "convenience" "tabs") (:authors ("INA Lintaro <tarao.gnn at gmail.com>")) (:maintainer "INA Lintaro <tarao.gnn at gmail.com>") (:url . "http://github.com/tarao/tab-group-el"))]) (ta . [(20160619 1645) ((emacs (24 3)) (cl-lib (0 5))) "A tool to deal with Chinese homophonic characters" single ((:commit . "668ad41e71f374f8c32c8d0532f3d8485b355d35") (:keywords "tools") (:authors ("kuanyui" . "azazabc123@gmail.com")) (:maintainer "kuanyui" . "azazabc123@gmail.com") (:url . "http://github.com/kuanyui/ta.el"))]) (systemtap-mode . [(20151122 1940) nil "A mode for SystemTap" single ((:commit . "1a968c2b1f3a054bebf91ac49739d3a81ce050a9") (:keywords "tools" "languages") (:maintainer nil . "ruediger@c-plusplus.de") (:url . "https://github.com/ruediger/systemtap-mode"))]) (systemd . [(20180629 2106) ((emacs (24 4))) "Major mode for editing systemd units" tar ((:commit . "401d71c2dd24e424216ae5e4275c830f2a9c6b0c") (:keywords "tools" "unix") (:authors ("Mark Oteiza" . "mvoteiza@udel.edu")) (:maintainer "Mark Oteiza" . "mvoteiza@udel.edu"))]) (system-specific-settings . [(20140818 1457) nil "Apply settings only on certain systems" single ((:commit . "0050d85b2175095aa5ecf580a2fe43c069b0eef3") (:keywords "configuration") (:authors ("Ryan C. Thompson")) (:maintainer "Ryan C. Thompson") (:url . "https://github.com/DarwinAwardWinner/emacs-system-specific-settings"))]) (system-packages . [(20181119 2310) ((emacs (24 3))) "functions to manage system packages" single ((:commit . "2e38329f92832642a3401e67d3d8ec56cbf287fa") (:authors ("J. Alexander Branham" . "branham@utexas.edu")) (:maintainer "J. Alexander Branham" . "branham@utexas.edu") (:url . "https://gitlab.com/jabranham/system-packages"))]) (syntax-subword . [(20160519 1905) nil "make operations on words more fine-grained" single ((:authors ("Jonathan Kotta" . "jpkotta@gmail.com")) (:maintainer "Jonathan Kotta" . "jpkotta@gmail.com"))]) (syntactic-sugar . [(20140508 2041) nil "Effect-free forms such as if/then/else" single ((:commit . "7ddc4502c831abe1c4ad4c7d1ca628a2c9e13968") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/syntactic-sugar"))]) (syntactic-close . [(20181026 1631) ((emacs (24)) (cl-lib (0 5))) "Insert closing delimiter" single ((:commit . "426975d73c474eb4e6a0af20f34455aac6e89610") (:keywords "languages" "convenience") (:authors ("Emacs User Group Berlin" . "emacs-berlin@emacs-berlin.org")) (:maintainer "Emacs User Group Berlin" . "emacs-berlin@emacs-berlin.org") (:url . "https://github.com/emacs-berlin/syntactic-close"))]) (synquid . [(20160930 1550) ((flycheck (27)) (emacs (24 3))) "Major mode for editing Synquid files" single ((:commit . "28701ce1a15437202f53ab93a14bcba1de83fd2c") (:keywords "languages") (:authors ("Clément Pit-Claudel" . "clement.pitclaudel@live.com")) (:maintainer "Clément Pit-Claudel" . "clement.pitclaudel@live.com") (:url . "https://github.com/cpitclaudel/synquid-mode"))]) (synosaurus . [(20180125 1834) ((cl-lib (0 5))) "An extensible thesaurus supporting lookup and substitution." tar ((:commit . "8bf95b935976ec0a1964cf175ed57cc5f6f93bdb") (:url . "https://github.com/hpdeifel/synosaurus"))]) (synonymous . [(20180325 1817) ((emacs (24)) (cl-lib (0 5)) (request (0 2 0))) "A thesaurus at your fingertips" single ((:commit . "2cb9a674d84fddf3f1b00c9d6b13a853576acb87") (:keywords "utility") (:authors ("Katherine Whitlock" . "toroidalcode@gmail.com") ("Snippets adapted from FlySpell, authored by Manuel Serrano" . "Manuel.Serrano@inria.fr")) (:maintainer "Katherine Whitlock" . "toroidalcode@gmail.com") (:url . "http://github.com/toroidal-code/synonymous.el"))]) (syndicate . [(20160603 1523) ((evil (1 0))) "evil keybindings for org-mode" single ((:commit . "90cee202a06f5bab48268ebf9f62c43334b69f50") (:keywords "evil" "org" "bindings") (:authors ("Kawin Nikomborirak")) (:maintainer "Kawin Nikomborirak") (:url . "https://github.com/KNX32542/syndicate.git"))]) (sync-recentf . [(20160326 2001) nil "Synchronize the recent files list between Emacs instances" single ((:commit . "0052561d5c5b5c2684faedc3eead776aec06c3ed") (:keywords "recentf") (:authors ("François Févotte" . "fevotte@gmail.com")) (:maintainer "François Févotte" . "fevotte@gmail.com") (:url . "https://github.com/ffevotte/sync-recentf"))]) (symon-lingr . [(20150719 1342) ((symon (1 1 2)) (cl-lib (0 5))) "A notification-based Lingr client powered by symon.el" single ((:commit . "056d1a473e36992ff5881e5ce6fdc331cead975f") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (symon . [(20170224 833) nil "tiny graphical system monitor" single ((:commit . "8dd8b6df49b03cd7d31b85aedbe9dd08fb922335") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (symbolword-mode . [(20180401 1427) ((emacs (24)) (f (0 19 0))) "modify word split" single ((:commit . "3857c42696e20f49f274ff8bc45a6f3ee26884d4") (:authors ("ncaq" . "ncaq@ncaq.net")) (:maintainer "ncaq" . "ncaq@ncaq.net") (:url . "https://github.com/ncaq/symbolword-mode"))]) (symbol-overlay . [(20181112 818) ((emacs (24 3))) "Highlight symbols with keymap-enabled overlays" single ((:commit . "831506ee124f357d5bd4d213b9dea2d0e7ac1287") (:keywords "faces" "matching") (:authors ("wolray" . "wolray@foxmail.com")) (:maintainer "wolray" . "wolray@foxmail.com") (:url . "https://github.com/wolray/symbol-overlay/"))]) (sx . [(20180606 736) ((emacs (24 1)) (cl-lib (0 5)) (json (1 3)) (markdown-mode (2 0)) (let-alist (1 0 3))) "StackExchange client. Ask and answer questions on Stack Overflow, Super User, and the likes" tar ((:commit . "a214f46b15eb29eaf02abdd4ddc2f90c3925d15f") (:keywords "help" "hypermedia" "tools") (:authors ("Sean Allred" . "code@seanallred.com")) (:maintainer "Sean Allred" . "code@seanallred.com") (:url . "https://github.com/vermiculus/sx.el/"))]) (sws-mode . [(20150317 1945) nil "(S)ignificant (W)hite(S)pace mode" single ((:commit . "4dbde92542fc7ad61df38776980905a4721d642e") (:authors ("Brian M. Carlson and other contributors")) (:maintainer "Brian M. Carlson and other contributors") (:url . "https://github.com/brianc/jade-mode"))]) (swoop . [(20160120 1715) ((ht (2 0)) (pcre2el (1 5)) (async (1 1)) (emacs (24))) "Peculiar buffer navigation for Emacs" tar ((:commit . "a5e475db7a9f5db02ba3d08cd3c1c3594e2e01d7") (:keywords "swoop" "inner" "buffer" "search" "navigation") (:authors ("Shingo Fukuyama - http://fukuyama.co")) (:maintainer "Shingo Fukuyama - http://fukuyama.co") (:url . "https://github.com/ShingoFukuyama/emacs-swoop"))]) (switch-window . [(20181104 340) ((emacs (24))) "A *visual* way to switch window" tar ((:commit . "204f9fc1a39868a2d16ab9370a142c8c9c7a0943") (:keywords "convenience") (:authors ("Dimitri Fontaine" . "dim@tapoueh.org") ("Feng Shu" . "tumashu@163.com")) (:maintainer "Dimitri Fontaine" . "dim@tapoueh.org") (:url . "https://github.com/dimitri/switch-window"))]) (switch-buffer-functions . [(20171011 1704) nil "Hook run when current buffer changed" single ((:commit . "651696ef9dec7affbe51c81d9318288376c35899") (:keywords "hook" "utility") (:authors ("10sr <8slashes+el [at] gmail [dot] com>")) (:maintainer "10sr <8slashes+el [at] gmail [dot] com>") (:url . "https://github.com/10sr/switch-buffer-functions-el"))]) (swiper-helm . [(20180131 1744) ((emacs (24 1)) (swiper (0 1 0)) (helm (1 5 3))) "Helm version of Swiper." single ((:commit . "93fb6db87bc6a5967898b5fd3286954cc72a0008") (:keywords "matching") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/swiper-helm"))]) (swiper . [(20181118 1535) ((emacs (24 1)) (ivy (0 9 0))) "Isearch with an overview. Oh, man!" single ((:commit . "c1c1ec7cb9c99c50424416a143747f64e3083552") (:keywords "matching") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/swiper"))]) (swift3-mode . [(20160918 1250) ((emacs (24 4))) "Major-mode for Apple's Swift programming language." tar ((:commit . "4e51265c6905e17d8910e35b0b37cf51e20ecdfe") (:keywords "languages" "swift") (:url . "https://github.com/taku0/swift3-mode"))]) (swift-mode . [(20181117 1202) ((emacs (24 4)) (seq (2 3))) "Major-mode for Apple's Swift programming language." tar ((:commit . "55ce4e53f856626938b50f014c5f82947a628d6a") (:keywords "languages" "swift") (:url . "https://github.com/swift-emacs/swift-mode"))]) (sweetgreen . [(20180605 335) ((dash (2 12 1)) (helm (1 5 6)) (request (0 2 0)) (cl-lib (0 5))) "Order Salads from sweetgreen.com" single ((:commit . "e933fe466b5ef0e976967e203f88bd7a012469d1") (:keywords "salad" "food" "sweetgreen" "request") (:authors ("Diego Berrocal" . "cestdiego@gmail.com")) (:maintainer "Diego Berrocal" . "cestdiego@gmail.com") (:url . "https://www.github.com/CestDiego/sweetgreen.el"))]) (swap-regions . [(20180915 1346) ((emacs (24 3))) "Swap text in two regions" single ((:commit . "f4fd9880cf690e003fcde88dcf2b46adbbbb03cd") (:keywords "convenience") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/swap-regions.el"))]) (swap-buffers . [(20150506 2139) nil "The quickest way to swap buffers between windows. Based on switch-window package." single ((:commit . "46ab31359b70d935add6c6e9533443116dc51103") (:keywords "window" "swap" "buffer" "exchange") (:authors ("Evgeniy Kazakov" . "evgeniy.kazakov@gmail.com")) (:maintainer "Evgeniy Kazakov" . "evgeniy.kazakov@gmail.com") (:url . "https://github.com/ekazakov/swap-buffers"))]) (swagger-to-org . [(20160611 56) ((emacs (24)) (cl-lib (0 5)) (json (1 4))) "Convert a swagger.json file into an org-mode file" single ((:commit . "181357c71ea24bede263f5706d8781ad65e16877") (:keywords "ahungry" "emacs" "swagger" "openapi" "orgmode" "org" "export") (:authors ("Matthew Carter" . "m@ahungry.com")) (:maintainer "Matthew Carter" . "m@ahungry.com") (:url . "https://github.com/ahungry/swagger-to-org"))]) (svnwrapper . [(20180414 1843) ((e2ansi (0 1 1))) "Highlighting and paging for shell command `svn'" tar ((:commit . "de5069f5784e5d9e87a0af0159ba5f28a3716583") (:keywords "faces") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/svnwrapper"))]) (svg-mode-line-themes . [(20150425 2006) ((xmlgen (0 4))) "SVG-based themes for mode-line" tar ((:commit . "80a0e01839cafbd66899202e7764c33231974259") (:authors ("sabof")) (:maintainer "sabof") (:url . "https://github.com/sabof/svg-mode-line-themes"))]) (suscolors-theme . [(20161109 2015) nil "Colorful theme, inspired by Gruvbox." single ((:commit . "b946e7924aa02fa7441c970026898f17fe97601f") (:url . "https://github.com/TheSuspiciousWombat/SusColors-emacs"))]) (supergenpass . [(20130329 548) nil "SuperGenPass for Emacs" single ((:commit . "549072ef7b5b82913cadd4758e8a0a9926f0a04a") (:keywords "supergenpass") (:authors ("Jaime Fournier" . "jaimef@linbsd.org")) (:maintainer "Jaime Fournier" . "jaimef@linbsd.org"))]) (super-save . [(20180929 727) ((emacs (24 4))) "Auto-save buffers, based on your activity." single ((:commit . "2a905b8bdfc93bee16e2d62a61c6211bbe009331") (:keywords "convenience") (:authors ("Bozhidar Batsov" . "bozhidar@batsov.com")) (:maintainer "Bozhidar Batsov" . "bozhidar@batsov.com") (:url . "https://github.com/bbatsov/super-save"))]) (suomalainen-kalenteri . [(20170801 826) nil "Finnish national and Christian holidays for calendar" tar ((:commit . "c702e33cb6e13cb28bd761844e95be112a3c04f3"))]) (sunshine . [(20181029 1654) ((cl-lib (0 5))) "Provide weather and forecast information." single ((:commit . "8959dea03377e61aaca0124ac8d2703daaae6b9a") (:keywords "tools" "weather") (:authors ("Aaron Bieber" . "aaron@aaronbieber.com")) (:maintainer "Aaron Bieber" . "aaron@aaronbieber.com") (:url . "https://github.com/aaronbieber/sunshine.el"))]) (sunny-day-theme . [(20140413 2125) nil "Emacs24 theme with a light background." single ((:commit . "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler") (:url . "http://github.com/mswift42/sunny-day-theme"))]) (sunburn-theme . [(20180602 1929) ((emacs (24))) "A low contrast color theme" single ((:commit . "ddb01b6f1f4f823398f7f8e08900c2b4a7811d3b") (:authors ("Martín Varela" . "martin@varela.fi")) (:maintainer "Martín Varela" . "martin@varela.fi") (:url . "http://github.com/mvarela/Sunburn-Theme"))]) (suggestion-box . [(20170830 807) ((emacs (25 1)) (popup (0 5 3))) "show tooltip on the cursor" single ((:commit . "50af0776c8caf3c79c4d37fd51cbf304ea34b68e") (:keywords "convenience") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>"))]) (suggest . [(20180916 1859) ((emacs (24 4)) (loop (1 3)) (dash (2 13 0)) (s (1 11 0)) (f (0 18 2)) (spinner (1 7 3))) "suggest elisp functions that give the output requested" tar ((:commit . "83a2679baf661ee834e9e75921fd546243a6d919") (:keywords "convenience") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk") (:url . "https://github.com/Wilfred/suggest.el"))]) (sudoku . [(20161111 706) ((emacs (24 4))) "Simple sudoku game, can download puzzles" single ((:commit . "77c11b5041b58fc943cf1668b44b40bae039cb5b") (:keywords "games") (:authors ("Zajcev Evgeny" . "zevlg@yandex.ru")) (:maintainer "Zajcev Evgeny" . "zevlg@yandex.ru"))]) (sudo-ext . [(20170126 1214) nil "sudo support" single ((:commit . "9d4580f304121ce7b8104bd4bd3b64e4dfa3c9b3") (:keywords "unix") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/sudo-ext.el"))]) (sudo-edit . [(20180731 1908) ((emacs (24)) (cl-lib (0 5))) "Open files as another user" single ((:commit . "cc3d478937b1accd38742bfceba92af02ee9357d") (:keywords "convenience") (:authors ("Nathaniel Flath" . "flat0103@gmail.com")) (:maintainer "Nathaniel Flath" . "flat0103@gmail.com") (:url . "https://github.com/nflath/sudo-edit"))]) (sudden-death . [(20180217 23) nil "Totsuzen-no-Shi" single ((:commit . "791a63d3f4df192e71f4232a9a4c5588f4b43dfb") (:authors ("yewton")) (:maintainer "yewton") (:url . "https://github.com/yewton/sudden-death.el"))]) (sublimity . [(20170820 1527) ((cl-lib (0 3))) "smooth-scrolling, minimap and distraction-free mode" tar ((:commit . "62b0c526c599a0178a16a75f16513fc1f93a0d53") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "https://github.com/zk-phi/sublimity"))]) (sublime-themes . [(20170606 1844) nil "A collection of themes based on Sublime Text" tar ((:commit . "60ee40af82eb55b79d5ed4026f1911326311603f") (:keywords "faces") (:authors ("Owain Lewis" . "owain@owainlewis.com")) (:maintainer "Owain Lewis" . "owain@owainlewis.com"))]) (subemacs . [(20170401 934) nil "Evaluating expressions in a fresh Emacs subprocess" single ((:commit . "18d53939fec8968c08dfc5aff7240ca07efb1aac") (:keywords "extensions" "lisp" "multiprocessing") (:authors ("Klaus-Dieter Bauer" . "bauer.klaus.dieter@gmail.com")) (:maintainer "Klaus-Dieter Bauer" . "bauer.klaus.dieter@gmail.com") (:url . "https://github.com/kbauer/subemacs"))]) (subatomic256-theme . [(20130621 210) nil "Fork of subatomic-theme for terminals." single ((:commit . "326177d6f99cd2b1d30df695e67ee3bc441cd96f") (:authors ("John Olsson" . "john@cryon.se")) (:maintainer "John Olsson" . "john@cryon.se") (:url . "https://github.com/cryon/subatomic256"))]) (subatomic-theme . [(20160126 1538) nil "Low contrast bluish color theme" single ((:commit . "6a4086af748b1ecb27f6ba2aa2614988db16d594") (:keywords "color-theme" "blue" "low contrast") (:authors ("John Olsson" . "john@cryon.se")) (:maintainer "John Olsson" . "john@cryon.se") (:url . "https://github.com/cryon/subatomic"))]) (stylus-mode . [(20150313 1512) ((sws-mode (0))) "Major mode for editing .jade files" single ((:commit . "4dbde92542fc7ad61df38776980905a4721d642e") (:authors ("Brian M. Carlson and other contributors")) (:maintainer "Brian M. Carlson and other contributors") (:url . "https://github.com/brianc/jade-mode"))]) (stylefmt . [(20161025 824) nil "Stylefmt interface" single ((:commit . "7a38f26bf8ff947215f34f0a064c7ca80575ccbc") (:keywords "style" "code" "formatter") (:authors ("κeen")) (:maintainer "κeen") (:url . "https://github.com/KeenS/stylefmt.el"))]) (stupid-indent-mode . [(20170525 1117) nil "Plain stupid indentation minor mode" single ((:commit . "3295e7de5e2cfddc3bf0e462e852bf58972f5d70") (:authors ("Mihai Bazon" . "mihai.bazon@gmail.com")) (:maintainer "Mihai Bazon" . "mihai.bazon@gmail.com"))]) (stumpwm-mode . [(20140131 216) nil "special lisp mode for evaluating code into running stumpwm" single ((:commit . "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4") (:keywords "comm" "lisp" "tools") (:maintainer "Shawn Betts"))]) (stripe-buffer . [(20141208 1508) ((cl-lib (1 0))) "Use a different background for even and odd lines" single ((:commit . "c252080f55cb78c951b19ebab9687f6d00237baf") (:authors ("Andy Stewart" . "lazycat.manatee@gmail.com")) (:maintainer "sabof" . "esabof@gmail.com") (:url . "https://github.com/sabof/stripe-buffer"))]) (string-utils . [(20140508 2041) ((list-utils (0 4 2))) "String-manipulation utilities" single ((:commit . "c2232d691617973ecf12a970c6008a161c21da14") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/string-utils"))]) (string-inflection . [(20180827 1301) nil "underscore -> UPCASE -> CamelCase -> lowerCamelCase conversion of names" single ((:commit . "e9a50855a4c718592c28a5a892f164ecf46e39a8") (:keywords "elisp") (:authors ("akicho8" . "akicho8@gmail.com")) (:maintainer "akicho8" . "akicho8@gmail.com"))]) (string-edit . [(20160411 656) ((dash (1 2 0))) "Avoid escape nightmares by editing string in separate buffer" single ((:commit . "c44b65b4c5e9f52be9c14d88ca2f402a18d9e1dd") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (strie . [(20160211 2222) ((cl-lib (0 5))) "A simple trie data structure implementation" single ((:commit . "eb7efb0cccc127c414f6a64db11454869d9c10a8") (:authors ("James Atwood" . "jatwood@cs.umass.edu")) (:maintainer "James Atwood" . "jatwood@cs.umass.edu"))]) (strace-mode . [(20171116 2039) nil "strace output syntax highlighting" single ((:commit . "2901baa968d5180ab985ac40ca22cc20914d01f5") (:keywords "languages") (:authors ("Preston Moore" . "prestonkmoore@gmail.com")) (:maintainer "Preston Moore" . "prestonkmoore@gmail.com"))]) (stock-ticker . [(20150204 1052) ((s (1 9 0)) (request (0 2 0))) "Show stock prices in mode line" single ((:commit . "f2e564142c9de84232839a5b01979cf95b04d6a9") (:keywords "comms") (:authors ("Gunther Hagleitner")) (:maintainer "Gunther Hagleitner") (:url . "https://github.com/hagleitn/stock-ticker"))]) (stickyfunc-enhance . [(20150429 1814) ((emacs (24 3))) "An enhancement to stock `semantic-stickyfunc-mode'" single ((:commit . "13bdba51fcd83ccbc3267959d23afc94d458dcb0") (:keywords "c" "languages" "tools") (:authors ("Tu, Do Hoang" . "tuhdo1710@gmail.com")) (:maintainer "Tu, Do Hoang") (:url . "https://github.com/tuhdo/semantic-stickyfunc-enhance"))]) (sticky . [(20170926 36) nil "Sticky key for capital letters" single ((:commit . "fec4e1af38f17f5cd80eca361d8e8ef8772db366") (:keywords "convenience") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/sticky.el"))]) (stgit . [(20171130 1559) nil "major mode for StGit interaction" single ((:commit . "14d6631b354dd10fa0ffc3441473ce2d33bb24db") (:authors ("David Kågedal" . "davidk@lysator.liu.se")) (:maintainer "David Kågedal" . "davidk@lysator.liu.se") (:url . "http://www.procode.org/stgit"))]) (stem-english . [(20180109 358) ((emacs (24 3))) "- routines for stemming English word" single ((:commit . "c9fc4c6ed6bf82382e479dae80912f4ae17d31f4") (:keywords "text") (:authors ("Tsuchiya Masatoshi" . "tsuchiya@pine.kuee.kyoto-u.ac.jp")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "http://github.com/kawabata/stem-english"))]) (stem . [(20131102 1109) nil "Routines for stemming" single ((:commit . "d74e6611d6ba5025e0276a2cc7c8a90f46bfa9ac") (:keywords "stemming") (:authors ("Tsuchiya Masatoshi" . "tsuchiya@pine.kuee.kyoto-u.ac.jp")) (:maintainer "Tsuchiya Masatoshi" . "tsuchiya@pine.kuee.kyoto-u.ac.jp") (:url . "https://github.com/yuutayamada/stem"))]) (steam . [(20171109 13) ((cl-lib (0 5))) "Organize and launch Steam games" single ((:commit . "d6ca2a828b0824da51978397e198bf91c51ce793") (:keywords "games") (:authors ("Erik Sjöstrand")) (:maintainer "Erik Sjöstrand") (:url . "http://github.com/Kungsgeten/steam.el"))]) (status . [(20151230 1408) nil "This package adds support for status icons to Emacs." tar ((:commit . "b62c74bf272566f82a68622f29fb9edafea0f241"))]) (state . [(20180627 1956) ((emacs (24))) "Quick navigation between workspaces" single ((:commit . "258fe1cba00bdc2c600f866bb0406c719661d0a6") (:keywords "convenience" "workspaces") (:authors ("Sylvain Rousseau <thisirs at gmail dot com>")) (:maintainer "Sylvain Rousseau <thisirs at gmail dot com>") (:url . "https://github.com/thisirs/state.git"))]) (stash . [(20151117 1427) nil "lightweight persistent caching" single ((:commit . "c2e494d20c752b80ebbdffbf66687b3cdfc425ad") (:keywords "extensions" "data" "internal" "lisp") (:authors ("Sean Allred" . "code@seanallred.com")) (:maintainer "Sean Allred" . "code@seanallred.com") (:url . "https://www.github.com/vermiculus/stash.el/"))]) (start-menu . [(20160426 1225) ((cl-lib (0 5)) (config-parser (0 1))) "start-menu for executing external program like in windows" single ((:commit . "f7d33fed7ad2dc61156f1c1cff9e1805366fbd69") (:keywords "convenience" "menu") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/el-start-menu"))]) (standoff-mode . [(20171115 1731) nil "Create stand-off markup, also called external markup." tar ((:commit . "cf84b14066d63694d931395c6026fd0245d8a62b"))]) (stan-snippets . [(20161024 258) ((stan-mode (9 2 0)) (yasnippet (0 8 0))) "Yasnippets for Stan" tar ((:commit . "a8e88473ef996b455523dc3fbcf2d8520659652f") (:keywords "snippets") (:authors ("Jeffrey Arnold" . "jeffrey.arnold@gmail.com")) (:maintainer "Jeffrey Arnold" . "jeffrey.arnold@gmail.com") (:url . "http://github.com/stan-dev/stan-mode"))]) (stan-mode . [(20180110 2241) nil "Major mode for editing Stan files" tar ((:commit . "a8e88473ef996b455523dc3fbcf2d8520659652f") (:keywords "languanges") (:authors ("Jeffrey Arnold" . "jeffrey.arnold@gmail.com") ("Daniel Lee" . "bearlee@alum.mit.edu")) (:maintainer "Jeffrey Arnold" . "jeffrey.arnold@gmail.com") (:url . "http://github.com/stan-dev/stan-mode"))]) (stack-mode . [(20150923 1523) ((haskell-mode (13 14)) (cl-lib (0 5)) (flycheck (0 23))) "A minor mode enabling various features based on stack-ide." tar ((:commit . "f3481e239dde9817152ec00e32bfc3ebf5aaf2cb") (:keywords "haskell" "stack") (:url . "https://github.com/commercialhaskell/stack-ide"))]) (ssh-tunnels . [(20180703 2027) ((cl-lib (0 5)) (emacs (24))) "Manage SSH tunnels" single ((:commit . "a6b6ae9a5d17afa9ea39ca8c071e889deefcf8a3") (:keywords "tools" "convenience") (:authors ("death <github.com/death>")) (:maintainer "death <github.com/death>") (:url . "http://github.com/death/ssh-tunnels"))]) (ssh-deploy . [(20181106 1347) ((emacs (24))) "Deployment via TRAMP, global or per directory." tar ((:commit . "88300e389e69f08d1511bcd8f185e608c9f6fddf") (:keywords "tools" "convenience") (:authors ("Christian Johansson" . "christian@cvj.se")) (:maintainer "Christian Johansson" . "christian@cvj.se") (:url . "https://github.com/cjohansson/emacs-ssh-deploy"))]) (ssh-config-mode . [(20180922 951) nil "Mode for fontification of ~/.ssh/config" tar ((:commit . "1ec676c021269c7b9cf814cf1d12f6acdcc25588") (:keywords "ssh" "config" "emacs") (:authors ("Harley Gorrell" . "harley@panix.com")) (:maintainer "Harley Gorrell" . "harley@panix.com") (:url . "https://github.com/jhgorrell/ssh-config-mode-el"))]) (ssh-agency . [(20180508 26) ((emacs (24 4)) (dash (2 10 0))) "manage ssh-agent from Emacs" single ((:commit . "d9dbedd773ad3a831e02e162c47936d6814a850a") (:authors ("Noam Postavsky" . "npostavs@user.sourceforge.net")) (:maintainer "Noam Postavsky" . "npostavs@user.sourceforge.net") (:url . "https://github.com/magit/ssh-agency"))]) (ssh . [(20120904 2042) nil "Support for remote logins using ssh." single ((:commit . "c17cf5b43df8ac4662a0580f85898e1f078df0d1") (:keywords "unix" "comm") (:authors ("Noah Friedman" . "friedman@splode.com")) (:maintainer "Ian Eure" . "ian.eure@gmail.com"))]) (ssass-mode . [(20180428 2039) ((emacs (24 3))) "Edit Sass without a Turing Machine" single ((:commit . "da82ebb2aa7e4999c23547270d2b0b2cd9311a47") (:keywords "languages" "sass") (:authors ("Adam Niederer" . "adam.niederer@gmail.com")) (:maintainer "Adam Niederer" . "adam.niederer@gmail.com") (:url . "http://github.com/AdamNiederer/ssass-mode"))]) (srv . [(20180715 1959) ((emacs (24 3))) "perform SRV DNS requests" single ((:commit . "714387d5a5cf34d8d8cd96bdb1f9cb8ded823ff7") (:keywords "comm") (:authors ("Magnus Henoch" . "magnus.henoch@gmail.com")) (:maintainer "Magnus Henoch" . "magnus.henoch@gmail.com") (:url . "https://github.com/legoscia/srv.el"))]) (srefactor . [(20180703 1810) ((emacs (24 4))) "A refactoring tool based on Semantic parser framework" tar ((:commit . "6f2c97d17fb70f4ca2112f5a2b99a8ec162004f5") (:keywords "c" "languages" "tools") (:authors ("Tu, Do Hoang" . "tuhdo1710@gmail.com")) (:maintainer "Tu, Do Hoang") (:url . "https://github.com/tuhdo/semantic-refactor"))]) (srcery-theme . [(20181120 1554) ((emacs (24))) "Dark color theme." single ((:commit . "de92c78ee3d17a93f2105687cd99be35fb9150ad") (:keywords "faces") (:authors ("Daniel Berg")) (:maintainer "Daniel Berg") (:url . "https://github.com/srcery-colors/srcery-emacs"))]) (sr-speedbar . [(20161025 831) nil "Same frame speedbar" single ((:commit . "77a83fb50f763a465c021eca7343243f465b4a47") (:keywords "speedbar" "sr-speedbar.el") (:authors ("Sebastian Rose" . "sebastian_rose@gmx.de")) (:maintainer "Sebastian Rose" . "sebastian_rose@gmx.de") (:url . "http://www.emacswiki.org/emacs/download/sr-speedbar.el"))]) (sqlup-mode . [(20170610 1537) nil "Upcase SQL words for you" single ((:commit . "04970977b4abb4d44301651618bbf1cdb0b263dd") (:keywords "sql" "tools" "redis" "upcase") (:authors ("Aldric Giacomoni" . "trevoke@gmail.com")) (:maintainer "Aldric Giacomoni" . "trevoke@gmail.com") (:url . "https://github.com/trevoke/sqlup-mode.el"))]) (sqlite . [(20180708 1711) nil "use sqlite via elisp" single ((:commit . "dad42b8bbca4994be1871343dd18fd6528ee5797") (:authors ("Christian Giménez")) (:maintainer "Christian Giménez"))]) (sqlformat . [(20181019 159) ((emacs (24))) "Reformat SQL using sqlformat or pgformatter" single ((:commit . "c7802edf4adb68d7a7a9db14a6b42c03f0a3da2d") (:keywords "languages") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (sql-impala . [(20160427 2358) nil "comint support for Cloudera Impala" single ((:commit . "e7a2d79d60b0a6339d730fc39ca024c3d6c56de7") (:keywords "sql" "impala") (:authors ("Jason Terk" . "jason@goterkyourself.com")) (:maintainer "Jason Terk" . "jason@goterkyourself.com") (:url . "https://github.com/jterk/sql-impala"))]) (sql-clickhouse . [(20180302 1555) ((emacs (24))) "support ClickHouse as SQL interpreter" single ((:commit . "2edccd94145c55a040a3a87193793f06cf01f64f") (:authors ("Robert Schwarz" . "mail@rschwarz.net")) (:maintainer "Robert Schwarz" . "mail@rschwarz.net") (:url . "https://github.com/leethargo/sql-clickhouse"))]) (spu . [(20161214 324) ((emacs (24 4)) (signal (1 0)) (timp (1 2 0))) "Silently upgrade package in the background" tar ((:commit . "41eec86b595816e3852e8ad1a8e07e51a27fd065") (:keywords "convenience" "package") (:authors ("Mola-T" . "Mola@molamola.xyz")) (:maintainer "Mola-T" . "Mola@molamola.xyz") (:url . "https://github.com/mola-T/spu"))]) (sprunge . [(20160301 243) ((request (0 2 0)) (cl-lib (0 5))) "Upload pastes to sprunge.us" single ((:commit . "0fd386b8b29c4175022a04ad70ea5643185b6726") (:keywords "tools") (:authors ("Tom Jakubowski")) (:maintainer "Tom Jakubowski"))]) (sproto-mode . [(20151115 1805) nil "Major mode for editing sproto." single ((:commit . "0583a88273204dccd884b7edaa3590cefd31e7f7") (:keywords "sproto") (:authors ("m2q1n9")) (:maintainer "m2q1n9"))]) (sprintly-mode . [(20121006 534) ((furl (0 0 2))) "Major mode for dealing with sprint.ly" single ((:commit . "6695892bae5860b5268bf3ae62be990ee9b63c11") (:authors ("Justin Lilly" . "justin@justinlilly.com")) (:maintainer "Justin Lilly" . "justin@justinlilly.com") (:url . "https://github.com/sprintly/sprintly-mode"))]) (springboard . [(20170106 755) ((helm (1 6 9))) "Temporarily change default-directory for one command" single ((:commit . "263a8cd4582c81bfc29d7db37d5267e2488b148c") (:keywords "helm") (:authors ("John Wiegley" . "jwiegley@gmail.com")) (:maintainer "John Wiegley" . "jwiegley@gmail.com") (:url . "https://github.com/jwiegley/springboard"))]) (spray . [(20160304 2220) nil "a speed reading mode" single ((:commit . "00638bc916227f2f961013543d10e85a43a32e29") (:keywords "convenience") (:authors ("Ian Kelling" . "ian@iankelling.org")) (:maintainer "Ian Kelling" . "ian@iankelling.org") (:url . "https://github.com/ian-kelling/spray"))]) (spotlight . [(20150929 755) ((emacs (24 1)) (swiper (0 6 0)) (counsel (0 6 0))) "search files with Mac OS X spotlight" single ((:commit . "ab902900f22e7d1ea2dd8169441d2da7155aaa68") (:keywords "search" "external") (:authors ("Ben Maughan" . "benmaughan@gmail.com")) (:maintainer "Ben Maughan" . "benmaughan@gmail.com") (:url . "http://www.pragmaticemacs.com"))]) (spotify . [(20181030 810) ((cl-lib (0 5))) "Control the spotify application from emacs" single ((:commit . "29577cf1188161f98b8358c149aaf47b2c137902") (:keywords "convenience") (:authors ("R.W. van 't Veer")) (:maintainer "R.W. van 't Veer") (:url . "https://github.com/remvee/spotify-el"))]) (splitter . [(20170809 2208) nil "Manage window splits" single ((:commit . "6bdb51e9a346907d60a9625f6180bddd06be6674") (:keywords "frames" "convenience") (:authors ("Steven Thomas")) (:maintainer "Steven Thomas") (:url . "https://github.com/chumpage/chumpy-windows"))]) (splitjoin . [(20150505 1432) ((cl-lib (0 5))) "Transition between multiline and single-line code" single ((:commit . "e2945ee269e6e90f0243d6f2a33e067bb0a2873c") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-splitjoin"))]) (spiral . [(20180223 1140) ((emacs (25 1)) (a (0 1 0 -3 4)) (avy (0 4 0)) (clojure-mode (5 6 0)) (highlight (0)) (treepy (1 0 0))) "Clojure IDE based on UNREPL" tar ((:commit . "907b9792467139a942ba7b07ca0276b90770baf9") (:keywords "languages" "clojure") (:authors ("Daniel Barreto" . "daniel@barreto.tech")) (:maintainer "Daniel Barreto" . "daniel@barreto.tech") (:url . "https://github.com/Unrepl/spiral"))]) (spice-mode . [(20171028 643) ((emacs (24 3))) "Major mode for SPICE" single ((:commit . "702bf2d5c3561be44771ea77b476532d32068504") (:keywords "spice" "spice2g6" "spice3" "eldo" "hspice" "layla" "mondriaan" "fasthenry" "cdl" "spectre compatibility" "netlist editing") (:authors ("Geert A. M. Van der Plas" . "geert_vanderplas@email.com") ("Emmanuel Rouat" . "emmanuel.rouat@wanadoo.fr") ("Carlin J. Vieri, MIT AI Lab" . "cvieri@ai.mit.edu")) (:maintainer "Geert A. M. Van der Plas" . "geert_vanderplas@email.com") (:url . "http://spice-mode.4t.com/"))]) (sphinx-mode . [(20180620 915) ((f (0 20 0)) (dash (2 14 1))) "Minor mode providing sphinx support." tar ((:commit . "b5ac514e213459dcc57184086f10b5b6be3cecd8"))]) (sphinx-frontend . [(20161025 758) nil "Launch build process for rst documents via sphinx." single ((:commit . "0cbb03361c245382d3e679dded30c4fc1713c252") (:keywords "compile" "sphinx" "restructuredtext") (:authors ("Kostafey" . "kostafey@gmail.com")) (:maintainer "Kostafey" . "kostafey@gmail.com") (:url . "https://github.com/kostafey/sphinx-frontend"))]) (sphinx-doc . [(20160116 1117) ((s (1 9 0)) (cl-lib (0 5)) (dash (2 10 0))) "Sphinx friendly docstrings for Python functions" single ((:commit . "f39da2e6cae55d5d7c7ce887e69755b7529bcd67") (:keywords "sphinx" "python") (:authors ("Vineet Naik" . "naikvin@gmail.com")) (:maintainer "Vineet Naik" . "naikvin@gmail.com") (:url . "https://github.com/naiquevin/sphinx-doc.el"))]) (speeddating . [(20180319 723) ((emacs (25))) "Increase date and time at point" single ((:commit . "df69db0560f19636a66a74f3d88c793bbb18b21e") (:keywords "date" "time") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/emacs-speeddating"))]) (speed-type . [(20171230 1647) ((emacs (24 3)) (cl-lib (0 3))) "Practice touch and speed typing" single ((:commit . "7a67fcd7bf825eee890097bd4a1b3c4f531a1135") (:keywords "games") (:authors ("Gunther Hagleitner")) (:maintainer "Julien Pagès" . "j.parkouss@gmail.com") (:url . "https://github.com/parkouss/speed-type"))]) (speechd-el . [(20180105 2017) nil "Client to speech synthesizers and Braille displays." tar ((:commit . "0b25d3eb7ae219d2af9a7e9df2f3334652156bf5"))]) (speech-tagger . [(20170728 1829) ((cl-lib (0 5))) "tag parts of speech using coreNLP" tar ((:commit . "61955b40d4e8b09e66a3e8033e82893f81657c06") (:keywords "speech" "tag" "nlp" "language" "corenlp" "parsing" "natural") (:authors ("Danny McClanahan" . "danieldmcclanahan@gmail.com")) (:maintainer "Danny McClanahan" . "danieldmcclanahan@gmail.com") (:url . "https://github.com/cosmicexplorer/speech-tagger"))]) (sparql-mode . [(20180320 1802) ((cl-lib (0 5)) (emacs (24 3))) "Edit and interactively evaluate SPARQL queries." tar ((:commit . "a00bb622c54086ac1ee96c265bf7fbef12c68089") (:authors ("Craig Andera <candera at wangdera dot com>")) (:maintainer "Bjarte Johansen <Bjarte dot Johansen at gmail dot com>") (:url . "https://github.com/ljos/sparql-mode"))]) (sparkline . [(20150101 1319) ((cl-lib (0 3))) "Make sparkline images from a list of numbers" single ((:commit . "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2") (:keywords "extensions") (:authors ("Willem Rein Oudshoorn" . "woudshoo@xs4all.nl")) (:maintainer "Willem Rein Oudshoorn" . "woudshoo@xs4all.nl"))]) (spark . [(20160415 201) ((emacs (24 3))) "sparkline generation" single ((:commit . "0bf148c3ede3b31d56fd75f347cdd0b0eae60025") (:keywords "lisp" "data") (:authors ("Alvin Francis Dumalus")) (:maintainer "Alvin Francis Dumalus") (:url . "https://github.com/alvinfrancis/spark"))]) (spaces . [(20170809 2208) nil "Create and switch between named window configurations." single ((:commit . "6bdb51e9a346907d60a9625f6180bddd06be6674") (:keywords "frames" "convenience") (:authors ("Steven Thomas")) (:maintainer "Steven Thomas") (:url . "https://github.com/chumpage/chumpy-windows"))]) (spacemacs-theme . [(20181107 1725) nil "Color theme with a dark and light versions" tar ((:commit . "c162ad13e4ae1965619012332d3b5f57c9172e98") (:keywords "color" "theme") (:url . "https://github.com/nashamri/spacemacs-theme"))]) (spaceline-all-the-icons . [(20170829 820) ((emacs (24 4)) (all-the-icons (2 6 0)) (spaceline (2 0 0)) (memoize (1 0 1))) "A Spaceline theme using All The Icons" tar ((:commit . "e2e195f64a541d72b6d0ba0451f1e3072234b820") (:keywords "convenience" "lisp" "tools") (:authors ("Dominic Charlesworth" . "dgc336@gmail.com")) (:maintainer "Dominic Charlesworth" . "dgc336@gmail.com") (:url . "https://github.com/domtronn/spaceline-all-the-icons.el"))]) (spaceline . [(20180628 746) ((emacs (24 4)) (cl-lib (0 5)) (powerline (2 3)) (dash (2 11 0)) (s (1 10 0))) "Modeline configuration library for powerline" tar ((:commit . "29ced71ed0097cd5eba15d6bfdbafd9d18f5bd82") (:keywords "mode-line" "powerline" "spacemacs") (:authors ("Eivind Fonn" . "evfonn@gmail.com")) (:maintainer "Eivind Fonn" . "evfonn@gmail.com") (:url . "https://github.com/TheBB/spaceline"))]) (spacegray-theme . [(20150719 1931) ((emacs (24 1))) "A Hyperminimal UI Theme" single ((:commit . "7f70ee36297e5ccf9bc90b1f81472024f5a7a749") (:keywords "themes") (:authors ("Bruce Williams" . "brwcodes@gmail.com")) (:maintainer "Bruce Williams" . "brwcodes@gmail.com") (:url . "http://github.com/bruce/emacs-spacegray-theme"))]) (sourcetrail . [(20170410 2137) ((emacs (24 4))) "Communication with Sourcetrail" single ((:commit . "b8d5557aa565ae979622312576db20515f65f977") (:keywords "external" "tool") (:authors ("Andreas Stallinger" . "astallinger@sourcetrail.com")) (:maintainer "Andreas Stallinger" . "astallinger@sourcetrail.com"))]) (sourcerer-theme . [(20161014 1625) nil "A version of sourcerer by xero" single ((:commit . "c7f8e665d53bb48fb72f95f706710d53d24bd407") (:keywords "themes") (:authors ("Bryan Gilbert" . "gilbertw1@gmail.com")) (:maintainer "Bryan Gilbert" . "gilbertw1@gmail.com") (:url . "http://github.com/gilbertw1/sourcerer-emacs"))]) (sourcemap . [(20161216 540) ((emacs (24 3))) "Sourcemap parser" single ((:commit . "64c89d296186f48d9135fb8aad501de19f64bceb") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-sourcemap"))]) (sourcekit . [(20180101 834) ((emacs (24 3)) (dash (2 12 1)) (dash-functional (1 2 0)) (request (0 2 0))) "Library to interact with sourcekittendaemon" single ((:commit . "abf9bc5a0102eb666d3aa6d6bf22f6efcc852781") (:keywords "tools" "processes") (:authors ("Nathan Kot" . "nk@nathankot.com")) (:maintainer "Nathan Kot" . "nk@nathankot.com") (:url . "https://github.com/nathankot/company-sourcekit"))]) (soundklaus . [(20160314 1231) ((dash (2 12 1)) (emacs (24)) (emms (4 0)) (s (1 11 0)) (pkg-info (0 4)) (cl-lib (0 5)) (request (0 2 0))) "Play music on SoundCloud with Emacs via EMMS" tar ((:commit . "09ec030843482594beae2664b8fe1e0ad1e66472") (:keywords "soundcloud" "music" "emms") (:authors ("r0man" . "roman@burningswell.com")) (:maintainer "r0man" . "roman@burningswell.com") (:url . "https://github.com/r0man/soundklaus.el"))]) (soundcloud . [(20150502 326) ((emms (20131016)) (json (1 2)) (deferred (0 3 1)) (string-utils (0 3 2)) (request (20140316 417)) (request-deferred (20130526 1015))) "a SoundCloud client for Emacs" single ((:commit . "f998d4276ea90258909c698f6a5a51fccb667c08") (:keywords "soundcloud" "music" "audio") (:authors ("Travis Thieman" . "travis.thieman@gmail.com")) (:maintainer "Travis Thieman" . "travis.thieman@gmail.com"))]) (sound-wav . [(20160725 1424) ((deferred (0 3 1)) (cl-lib (0 5))) "Play wav file" single ((:commit . "406868043761524118c27b1207be0f8bbda8798e") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-sound-wav"))]) (sotlisp . [(20180706 1749) ((emacs (24 1))) "Write lisp at the speed of thought." single ((:commit . "cc5730c0803a6e0f18e22d6027784b915d304318") (:keywords "convenience" "lisp") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "https://github.com/Malabarba/speed-of-thought-lisp"))]) (sotclojure . [(20170922 8) ((emacs (24 1)) (clojure-mode (4 0 0)) (cider (0 8)) (sotlisp (1 3))) "Write clojure at the speed of thought." tar ((:commit . "a480c887b53cb007b7b099c5ffcab89b9e59d7bc") (:keywords "convenience" "clojure") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "https://github.com/Malabarba/speed-of-thought-clojure"))]) (sos . [(20141215 403) ((org (7))) "StackOverflow Search" single ((:commit . "1573adca912b88b5010d99a25c83a5b2313bd39c") (:keywords "tools" "search" "questions") (:authors ("Rudolf Olah")) (:maintainer "Rudolf Olah") (:url . "https://github.com/omouse/emacs-sos"))]) (sort-words . [(20160929 1335) nil "Sort words in a selected region" single ((:commit . "7b6e108f80237363faf7ec28b2c58dec270b8601") (:keywords "tools") (:authors ("\"Aleksandar Simic\"" . "asimic@gmail.com")) (:maintainer "\"Aleksandar Simic\"" . "asimic@gmail.com") (:url . "http://github.org/dotemacs/sort-words.el"))]) (soothe-theme . [(20141027 1441) ((emacs (24 1))) "a dark colorful theme for Emacs24." single ((:commit . "0786fe70c6c1b4ddcfb932fdc6862b9611cfc09b") (:authors ("Jason Milkins" . "jasonm23@gmail.com")) (:maintainer "Jason Milkins" . "jasonm23@gmail.com") (:url . "https://github.com/jasonm23/emacs-soothe-theme"))]) (sonic-pi . [(20171205 1205) ((cl-lib (0 5)) (osc (0 1)) (dash (2 2 0)) (emacs (24)) (highlight (0))) "A Emacs client for SonicPi" tar ((:commit . "3cf101b3b299735ed91658c7791ea4f04164e076") (:keywords "sonicpi" "ruby") (:authors ("Joseph Wilk" . "joe@josephwilk.net")) (:maintainer "Joseph Wilk" . "joe@josephwilk.net") (:url . "http://www.github.com/repl-electric/sonic-pi.el"))]) (solidity-mode . [(20181117 1518) nil "Major mode for ethereum's solidity language" tar ((:commit . "d6c48a1cb64d3c8a825dc0d06c839f2cacd4d289") (:keywords "languages" "solidity") (:authors ("Lefteris Karapetsas " . "lefteris@refu.co")) (:maintainer "Lefteris Karapetsas " . "lefteris@refu.co"))]) (solarized-theme . [(20181030 1912) ((emacs (24 1)) (cl-lib (0 5)) (dash (2 6 0))) "The Solarized color theme, ported to Emacs." tar ((:commit . "87d4758e7ecc8ed873f3326e4f8b185fd2b9da0a"))]) (solaire-mode . [(20180521 935) ((emacs (24 4)) (cl-lib (0 5))) "make certain buffers grossly incandescent" single ((:commit . "abf2ce4da77d0877efb4a035687390ce921eda4f") (:keywords "dim" "bright" "window" "buffer" "faces") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/emacs-solaire-mode"))]) (soft-stone-theme . [(20140614 835) ((emacs (24))) "Emacs 24 theme with a light background." single ((:commit . "fb475514cfb02cf30ce358a61c48e46614344d48") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler") (:url . "http://github.com/mswift42/soft-stone-theme"))]) (soft-morning-theme . [(20150918 2041) nil "Emacs24 theme with a light background." single ((:commit . "c0f9c70c97ef2be2a093cf839c4bfe27740a111c") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler") (:url . "http://github.com/mswift42/soft-morning-theme"))]) (soft-charcoal-theme . [(20140420 1643) nil "Dark charcoal theme with soft colors" single ((:commit . "5607ab977fae6638e78b1495e02da8955c9ba19f") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler") (:url . "http://github.com/mswift42/soft-charcoal-theme"))]) (socyl . [(20170212 642) ((s (1 11 0)) (dash (2 12 0)) (pkg-info (0 5 0)) (cl-lib (0 5))) "Frontend for several search tools" tar ((:commit . "1ef2da42f66f3ab31a34131e51648f352416f0ba") (:keywords "ripgrep" "sift" "ack" "pt" "ag" "grep" "search") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/socyl"))]) (snoopy . [(20171008 2004) ((emacs (24)) (cl-lib (0 6))) "minor mode for number row unshifted character insertion" single ((:commit . "ec4123bdebfe0bb7bf4feaac2dc02b59caffe386") (:keywords "lisp") (:authors ("António Nuno Monteiro" . "anmonteiro@gmail.com")) (:maintainer "António Nuno Monteiro" . "anmonteiro@gmail.com"))]) (snippet . [(20130210 2315) nil "Insert snippets of text into a buffer" single ((:commit . "11d00dd803874b93836f2010b08bd2c97b0f3c63") (:authors ("Pete Kazmier")) (:maintainer "Pete Kazmier"))]) (snazzy-theme . [(20170823 1832) ((emacs (24)) (base16-theme (2 1))) "An elegant syntax theme with bright colors" single ((:commit . "57a1763b49b4a776084c16bc70c219246fa5b412") (:keywords "faces" "theme" "color" "snazzy") (:url . "https://github.com/weijiangan/emacs-snazzy/"))]) (snapshot-timemachine-rsnapshot . [(20170324 1213) ((snapshot-timemachine (20160222 132)) (seq (2 19))) "rsnapshot backend for snapshot-timemachine" single ((:commit . "72b0b700d80f1a0442e62bbbb6a0c8c59182f97f") (:authors ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Nicolas Petton" . "nicolas@petton.fr"))]) (snapshot-timemachine . [(20161221 929) ((emacs (24 4))) "Step through (Btrfs, ZFS, ...) snapshots of files" single ((:commit . "99efcebab309b11ed512a8dc62555d3834df5efb") (:authors ("Thomas Winant" . "dewinant@gmail.com")) (:maintainer "Thomas Winant" . "dewinant@gmail.com") (:url . "https://github.com/mrBliss/snapshot-timemachine"))]) (snakemake-mode . [(20181008 250) ((emacs (24 5)) (cl-lib (0 5)) (magit-popup (2 4 0))) "Major mode for editing Snakemake files" tar ((:commit . "0cadd2bbd20aae1555561e81ed72fec43ec7296e") (:keywords "tools") (:authors ("Kyle Meyer" . "kyle@kyleam.com")) (:maintainer "Kyle Meyer" . "kyle@kyleam.com") (:url . "https://github.com/kyleam/snakemake-mode"))]) (smyx-theme . [(20141127 828) nil "smyx Color Theme" single ((:commit . "6263f6b401bbabaed388c8efcfc0be2e58c51401") (:keywords "color" "theme" "smyx") (:authors ("Uriel G Maldonado" . "uriel781@gmail.com")) (:maintainer "Uriel G Maldonado" . "uriel781@gmail.com"))]) (smtpmail-multi . [(20160218 2349) nil "Use different smtp servers for sending mail" single ((:commit . "81eabfe56f620ee044ff9dd52fa8b6148d0a9f30") (:keywords "comm") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/smtpmail-multi"))]) (smotitah . [(20150218 1030) nil "Modular emacs configuration framework" tar ((:commit . "f9ab562128a5460549d016913533778e8c94bcf3"))]) (smooth-scrolling . [(20161002 1949) nil "Make emacs scroll smoothly" single ((:commit . "2462c13640aa4c75ab3ddad443fedc29acf68f84") (:keywords "convenience") (:authors ("Adam Spiers" . "emacs-ss@adamspiers.org") ("Jeremy Bondeson" . "jbondeson@gmail.com") ("Ryan C. Thompson" . "rct+github@thompsonclan.org")) (:maintainer "Adam Spiers" . "emacs-ss@adamspiers.org") (:url . "http://github.com/aspiers/smooth-scrolling/"))]) (smooth-scroll . [(20130322 414) nil "Minor mode for smooth scrolling and in-place scrolling." single ((:commit . "02320f28abb5cae28b3a18f6b9ce93129bdbfc45") (:keywords "convenience" "emulations" "frames") (:authors ("K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>")) (:maintainer "K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>") (:url . "http://www.emacswiki.org/emacs/download/smooth-scroll.el"))]) (smmry . [(20161024 901) nil "SMMRY client" single ((:commit . "986a1b0aec8ab1ef17dbfb7886f47e5558cf738a") (:keywords "api" "smmry") (:authors ("james sangho nah" . "microamp@protonmail.com")) (:maintainer "james sangho nah" . "microamp@protonmail.com") (:url . "https://github.com/microamp/smmry.el"))]) (sml-modeline . [(20170614 2111) nil "Show position in a scrollbar like way in mode-line" single ((:commit . "d2f9f70174c4cf68c67eb3bb8088235735e34d9a") (:authors ("Lennart Borgman (lennart O borgman A gmail O com)")) (:maintainer "Lennart Borgman (lennart O borgman A gmail O com)") (:url . "http://bazaar.launchpad.net/~nxhtml/nxhtml/main/annotate/head%3A/util/sml-modeline.el"))]) (smiles-mode . [(20160717 1120) nil "Major mode for SMILES." single ((:commit . "fbb381758adcb000a0c304be1b797f985f00e2de") (:keywords "smiles") (:authors (nil . "John Kitchin [jkitchin@andrew.cmu.edu]")) (:maintainer nil . "John Kitchin [jkitchin@andrew.cmu.edu]"))]) (smex . [(20151212 2209) ((emacs (24))) "M-x interface with Ido-style fuzzy matching." single ((:commit . "55aaebe3d793c2c990b39a302eb26c184281c42c") (:keywords "convenience" "usability") (:authors ("Cornelius Mika" . "cornelius.mika@gmail.com")) (:maintainer "Cornelius Mika" . "cornelius.mika@gmail.com") (:url . "http://github.com/nonsequitur/smex/"))]) (smeargle . [(20161212 2358) ((emacs (24 3))) "Highlighting region by last updated time" single ((:commit . "0665b1ff5109731898bc4a0ca6d939933b804777") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-smeargle"))]) (smblog . [(20170419 1021) ((emacs (24 3))) "samba log viewer" single ((:commit . "5245e7aeac20915121946f59bba30899305d950b") (:authors ("Aurélien Aptel" . "aaptel@suse.com")) (:maintainer "Aurélien Aptel" . "aaptel@suse.com") (:url . "http://github.com/aaptel/smblog-mode"))]) (smbc . [(20171229 1808) nil "View SMBC from Emacs" single ((:commit . "10538e3d575ba6ef3c94d555af2744b42dfd36c7") (:keywords "smbc" "webcomic") (:authors ("Saksham Sharma" . "saksham0808@gmail.com")) (:maintainer "Saksham Sharma" . "saksham0808@gmail.com") (:url . "https://github.com/sakshamsharma/emacs-smbc"))]) (smarty-mode . [(20100703 1158) nil "major mode for editing smarty templates" single ((:commit . "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568") (:keywords "smarty" "php" "languages" "templates") (:maintainer "Benj Carson") (:url . "none yet"))]) (smartscan . [(20170211 2033) nil "Jumps between other symbols found at point" single ((:commit . "234e077145710a174c20742de792b97ed2f965f6") (:keywords "extensions") (:authors ("Mickey Petersen" . "mickey@masteringemacs.org")) (:maintainer "Mickey Petersen" . "mickey@masteringemacs.org"))]) (smartrep . [(20150509 230) nil "Support sequential operation which omitted prefix keys." single ((:commit . "f0ff5a6d7b8603603598ae3045c98b011e58d86e") (:keywords "convenience") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/smartrep.el"))]) (smartparens . [(20181028 1005) ((dash (2 13 0)) (cl-lib (0 3))) "Automatic insertion, wrapping and paredit-like navigation with user defined pairs." tar ((:commit . "d65f3c0f47413c1a67ced979dc2062a073d907af"))]) (smart-window . [(20160717 130) ((cl-lib (0 5))) "vim-like window controlling plugin" single ((:commit . "5996461b7cbc5ab4509ac48537916eb29a8e4c16") (:keywords "window") (:authors ("Felix Chern" . "idryman@gmail.com")) (:maintainer "Felix Chern" . "idryman@gmail.com") (:url . "https://github.com/dryman/smart-window.el"))]) (smart-tabs-mode . [(20160629 1452) nil "Intelligently indent with tabs, align with spaces!" single ((:commit . "9cc2594b82b03e7d68645a4878f9359f8b8c34c5") (:keywords "languages") (:authors ("John Croisant" . "jacius@gmail.com") ("Alan Pearce" . "alan@alanpearce.co.uk") ("Daniel Dehennin" . "daniel.dehennin@baby-gnu.org") ("Matt Renaud" . "mrenaud92@gmail.com")) (:maintainer "Joel C. Salomon" . "joelcsalomon@gmail.com") (:url . "http://www.emacswiki.org/emacs/SmartTabs"))]) (smart-tab . [(20170902 2107) nil "Intelligent tab completion and indentation." single ((:commit . "76a8ec13384975d39aa1b25e5384a02558dba574") (:keywords "extensions") (:authors ("John SJ Anderson" . "genehack@genehack.org") ("Sebastien Rocca Serra" . "sroccaserra@gmail.com") ("Daniel Hackney" . "dan@haxney.org")) (:maintainer "John SJ Anderson" . "genehack@genehack.org") (:url . "http://github.com/genehack/smart-tab/tree/master"))]) (smart-shift . [(20150203 725) nil "Smart shift text left/right." single ((:commit . "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae") (:keywords "convenience" "tools") (:authors ("Bin Huang" . "huangbin88@foxmail.com")) (:maintainer "Bin Huang" . "huangbin88@foxmail.com") (:url . "https://github.com/hbin/smart-shift"))]) (smart-semicolon . [(20171008 133) ((emacs (25))) "Insert semicolon smartly" single ((:commit . "bcea2aa37befa40abf8b24a2d2314904e6df43b3") (:authors ("Iku Iwasa" . "iku.iwasa@gmail.com")) (:maintainer "Iku Iwasa" . "iku.iwasa@gmail.com") (:url . "https://github.com/iquiw/smart-semicolon"))]) (smart-region . [(20150903 1403) ((emacs (24 4)) (expand-region (0 10 0)) (multiple-cursors (1 3 0)) (cl-lib (0 5))) "Smartly select region, rectangle, multi cursors" single ((:commit . "5a8017fd8e8dc3483865951c4942cab3f96f69f6") (:keywords "marking" "region") (:authors ("Yuuki Arisawa" . "yuuki.ari@gmail.com")) (:maintainer "Yuuki Arisawa" . "yuuki.ari@gmail.com") (:url . "https://github.com/uk-ar/smart-region"))]) (smart-newline . [(20131208 340) nil "Provide smart newline for one keybind." single ((:commit . "0553a9e4be7188352de1a28f2eddfd28e7436f94") (:authors ("Satoshi Namai")) (:maintainer "Satoshi Namai"))]) (smart-mode-line-powerline-theme . [(20160706 38) ((emacs (24 3)) (powerline (2 2)) (smart-mode-line (2 5))) "smart-mode-line theme that mimics the powerline appearance." tar ((:commit . "b79f4fa5f2380b0d726a895dd7199e5483004490") (:keywords "mode-line" "faces" "themes") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Bruce-Connor/smart-mode-line"))]) (smart-mode-line-atom-one-dark-theme . [(20180915 1335) ((emacs (24 3)) (smart-mode-line (2 10))) "Atom-one-dark theme for smart-mode-line" single ((:commit . "21cf510c6dfc919517af045435f16dc3527d7d04") (:keywords "mode-line" "themes" "faces") (:authors ("Davide Restivo" . "davide.restivo@yahoo.it")) (:maintainer "Davide Restivo" . "davide.restivo@yahoo.it") (:url . "https://github.com/daviderestivo/smart-mode-line-atom-one-dark-theme"))]) (smart-mode-line . [(20180926 1036) ((emacs (24 3)) (rich-minority (0 1 1))) "A color coded smart mode-line." tar ((:commit . "b79f4fa5f2380b0d726a895dd7199e5483004490") (:keywords "mode-line" "faces" "themes") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "http://github.com/Malabarba/smart-mode-line"))]) (smart-mark . [(20150912 210) nil "Restore point after C-g when mark" single ((:commit . "04b522a23e3aae8381c6a976fc978532fcb2e7d0") (:keywords "mark" "restore") (:authors ("Kai Yu" . "yeannylam@gmail.com")) (:maintainer "Kai Yu" . "yeannylam@gmail.com"))]) (smart-jump . [(20181103 2227) ((emacs (25 1)) (dumb-jump (0 5 1))) "Smart go to definition." tar ((:commit . "aa963735196b7f64fb286163cd5c3e4d435814e5") (:keywords "tools") (:authors ("James Nguyen" . "james@jojojames.com")) (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/smart-jump"))]) (smart-indent-rigidly . [(20141206 15) nil "Smart rigid indenting" single ((:commit . "323d1fe4d0b81e598249aad01bc44adb180ece0e") (:keywords "indenting" "coffee-mode" "haml-mode" "sass-mode") (:authors ("atom smith")) (:maintainer "atom smith") (:url . "https://github.com/re5et/smart-indent-rigidly"))]) (smart-hungry-delete . [(20170412 1343) ((emacs (24 3))) "smart hungry deletion of whitespace" single ((:commit . "7c1d56a92481594e14d40b5fdf6c48657a0108a0") (:keywords "convenience") (:authors ("Hauke Rehfeld" . "emacs@haukerehfeld.de")) (:maintainer "Hauke Rehfeld" . "emacs@haukerehfeld.de") (:url . "https://github.com/hrehfeld/emacs-smart-hungry-delete"))]) (smart-forward . [(20140430 713) ((expand-region (0 8 0))) "Semantic navigation" single ((:commit . "7b6dbfdbd4b646376a567c70e1a161545431b72b") (:keywords "navigation") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (smart-dash . [(20110131 316) nil "Smart-Dash minor mode" single ((:authors ("Dennis Lambe Jr." . "malsyned@malsyned.net")) (:maintainer "Dennis Lambe Jr." . "malsyned@malsyned.net"))]) (smart-cursor-color . [(20141124 1719) nil "Change cursor color dynamically" single ((:commit . "1d190f49ca77734b55ac58f1b6276e42ada967b0") (:keywords "cursor" "color" "face") (:authors ("7696122")) (:maintainer "7696122") (:url . "https://github.com/7696122/smart-cursor-color/"))]) (smart-compile . [(20180316 330) nil "an interface to `compile'" single ((:commit . "16ebc3c570f1949b8198fcc8663d6d26df32717a") (:keywords "tools" "unix") (:authors ("Seiji Zenitani" . "zenitani@mac.com")) (:maintainer "Seiji Zenitani" . "zenitani@mac.com"))]) (smart-comment . [(20160322 1839) nil "smarter commenting" single ((:commit . "17ddbd83205818763e6d68aa7a1aa9aaf414cbd4") (:keywords "lisp") (:authors ("Simon Friis Vindum" . "simon@vindum.io")) (:maintainer "Simon Friis Vindum" . "simon@vindum.io"))]) (smart-backspace . [(20171014 526) nil "intellj like backspace" single ((:commit . "a10ec44ff325ec8c4c98b1a6e44e89e60a9aa4ac") (:authors ("Takeshi Tsukamoto" . "t.t.itm.0403@gmail.com")) (:maintainer "Takeshi Tsukamoto" . "t.t.itm.0403@gmail.com") (:url . "https://github.com/itome/smart-backspace"))]) (sly-repl-ansi-color . [(20171020 1516) ((sly (0)) (cl-lib (0 5))) "Add ANSI colors support to the sly mrepl." single ((:commit . "b9cd52d1cf927bf7e08582d46ab0bcf1d4fb5048") (:keywords "sly") (:authors ("Javier \"PuercoPop\" Olaechea" . "pirata@gmail.com") ("Max Mikhanosha")) (:maintainer "Javier \"PuercoPop\" Olaechea" . "pirata@gmail.com") (:url . "https://github.com/PuercoPop/sly-repl-ansi-color"))]) (sly-quicklisp . [(20170112 935) ((sly (1 0 0 -2 2))) "Quicklisp support for SLY" tar ((:commit . "8a9e3c0c07c6861ec33b338cc46ac12e7ce6a477") (:keywords "languages" "lisp" "sly") (:authors ("João Távora" . "joaotavora@gmail.com")) (:maintainer "João Távora" . "joaotavora@gmail.com") (:url . "https://github.com/capitaomorte/sly-quicklisp"))]) (sly-named-readtables . [(20150817 1516) ((sly (1 0 0 -2 2))) "Support named readtables in Common Lisp files" tar ((:commit . "df4ed79064cf85275804e201899b677bef4ab3f5") (:keywords "languages" "lisp" "sly") (:authors ("João Távora" . "joaotavora@gmail.com")) (:maintainer "João Távora" . "joaotavora@gmail.com") (:url . "https://github.com/capitaomorte/sly-named-readtables"))]) (sly-macrostep . [(20160119 1234) ((sly (1 0 0 -2 2)) (macrostep (0 9))) "fancy macro-expansion via macrostep.el" tar ((:commit . "eb16778d104413a3e2a8d5537437c4ad76c2954b") (:keywords "languages" "lisp" "sly") (:url . "https://github.com/capitaomorte/sly-macrostep"))]) (sly-hello-world . [(20160119 1436) ((sly (1 0 0 -2 2))) "A template SLY contrib" tar ((:commit . "1bfcca692b6ec0670ed309ffe29eb9384397c183") (:keywords "languages" "lisp" "sly") (:authors ("João Távora" . "joaotavora@gmail.com")) (:maintainer "João Távora" . "joaotavora@gmail.com") (:url . "https://github.com/capitaomorte/sly-hello-world"))]) (sly . [(20181120 1521) ((emacs (24 3))) "Sylvester the Cat's Common Lisp IDE" tar ((:commit . "7f2f7931bf7b895fb5b9f11453df850b065ba030") (:keywords "languages" "lisp" "sly") (:url . "https://github.com/joaotavora/sly"))]) (slstats . [(20170823 849) ((cl-lib (0 5)) (emacs (24))) "Acquire and display stats about Second Life" single ((:commit . "e9696066abf3f2b7b818a57c062530dfd9377033") (:keywords "games") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/slstats.el"))]) (slow-keys . [(20180831 459) ((emacs (24 1))) "Slow keys mode to avoid RSI" single ((:commit . "b93ad77f9fc1d14e080d7d64864fc9cb222248b6") (:keywords "convenience") (:authors ("Manuel Uberti" . "manuel.uberti@inventati.org")) (:maintainer "Manuel Uberti" . "manuel.uberti@inventati.org") (:url . "https://github.com/manuel-uberti/slow-keys"))]) (slovak-holidays . [(20150418 855) nil "Adds a list of slovak holidays to Emacs calendar" single ((:commit . "effb16dfcd14797bf7448f5113085479db339c02") (:keywords "calendar") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (slirm . [(20160201 1425) ((emacs (24 4))) "Systematic Literature Review Mode for Emacs." single ((:commit . "9adfbe1fc67580e7d0d90f7e927a25d63a797464") (:authors ("Florian Biermann" . "fbie@itu.dk")) (:maintainer "Florian Biermann" . "fbie@itu.dk") (:url . "http://github.com/fbie/slirm"))]) (slime-volleyball . [(20140718 441) nil "An SVG Slime Volleyball Game" tar ((:commit . "159b5c0f40b109e3854e94b89ec5383854c46ae3") (:keywords "games") (:authors ("Thomas Fitzsimmons" . "fitzsim@fitzsim.org")) (:maintainer "Thomas Fitzsimmons" . "fitzsim@fitzsim.org"))]) (slime-theme . [(20170808 1322) ((emacs (24 0))) "an Emacs 24 theme based on Slime (tmTheme)" single ((:commit . "8e5880ac69e0b6a079103001cc3a90bdb688998f") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (slime-docker . [(20181107 1556) ((emacs (24)) (slime (2 16)) (docker-tramp (0 1)) (cl-lib (0 5))) "Integration of SLIME with Docker containers." tar ((:commit . "83a6ea7e4302e03f894a03f15ae0b68b101023c0") (:keywords "docker" "lisp" "slime") (:url . "https://github.com/daewok/slime-docker"))]) (slime-company . [(20180119 1843) ((emacs (24 4)) (slime (2 13)) (company (0 9 0))) "slime completion backend for company mode" single ((:commit . "4c2e2805540dea700130607fa235018a87e4a070") (:keywords "convenience" "lisp" "abbrev") (:authors ("Ole Arndt" . "anwyn@sugarshark.com")) (:maintainer "Ole Arndt" . "anwyn@sugarshark.com"))]) (slime . [(20181119 1741) ((cl-lib (0 5)) (macrostep (0 9))) "Superior Lisp Interaction Mode for Emacs" tar ((:commit . "0a1784dfbc1adeee058c7f44b5c1c0761fb36835") (:keywords "languages" "lisp" "slime") (:url . "https://github.com/slime/slime"))]) (slim-mode . [(20170728 1348) nil "Major mode for editing Slim files" single ((:commit . "3636d18ab1c8b316eea71c4732eb44743e2ded87") (:keywords "markup" "language") (:authors ("Nathan Weizenbaum")) (:maintainer "Nathan Weizenbaum") (:url . "http://github.com/slim-template/emacs-slim"))]) (slideview . [(20150324 2240) ((cl-lib (0 3))) "File slideshow" single ((:commit . "b6d170bda139aedf81b47dc55cbd1a3af512fb4c") (:keywords "files") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-slideview"))]) (slack . [(20181121 731) ((websocket (1 8)) (request (0 2 0)) (oauth2 (0 10)) (circe (2 2)) (alert (1 2)) (emojify (0 2))) "Slack client for Emacs" tar ((:commit . "186b4653c55c08efa3ff9fb9bde038576ddff9f6") (:url . "https://github.com/yuya373/emacs-slack"))]) (sl . [(20161217 1404) ((cl-lib (0 5))) "An Emacs clone of sl(1)" tar ((:commit . "0882117728be91276b815e18c2a66106bf9d69d3") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/sl.el"))]) (skype . [(20160711 824) nil "skype UI for emacs users.." tar ((:commit . "8e3b33e620ed355522aa36434ff41e3ced080629") (:keywords "skype" "chat") (:authors ("SAKURAI Masashi" . "m.sakurai@kiwanami.net")) (:maintainer "SAKURAI Masashi" . "m.sakurai@kiwanami.net"))]) (skewer-reload-stylesheets . [(20160725 1220) ((skewer-mode (1 5 3))) "live-edit CSS, SCSS, Less, and friends." tar ((:commit . "b9cc5635230ac3c0603a6da690c6e632d0a7490a") (:authors ("Nate Eagleson" . "nate@nateeag.com")) (:maintainer "Nate Eagleson" . "nate@nateeag.com"))]) (skewer-mode . [(20180706 1807) ((simple-httpd (1 4 0)) (js2-mode (20090723)) (emacs (24))) "live browser JavaScript, CSS, and HTML interaction" tar ((:commit . "a381049acc4fa2087615b4b3b26c0865841386bd"))]) (skewer-less . [(20160828 2021) ((skewer-mode (1 5 3))) "Skewer support for live LESS stylesheet updates" single ((:commit . "927d6848a1ea9428d4cc995f76bd42f7b8da6bc8") (:keywords "languages" "tools") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (skeletor . [(20170617 46) ((s (1 7 0)) (f (0 14 0)) (dash (2 2 0)) (cl-lib (0 3)) (let-alist (1 0 3)) (emacs (24 1))) "Provides project skeletons for Emacs" tar ((:commit . "01c330ec115fc29bba5d9bdf6c15beb4a44e2281") (:authors ("Chris Barrett" . "chris.d.barrett@me.com")) (:maintainer "Chris Barrett" . "chris.d.barrett@me.com"))]) (simplezen . [(20130421 1000) ((s (1 4 0)) (dash (1 1 0))) "A simple subset of zencoding-mode for Emacs." single ((:commit . "119fdf2c6890a0c56045ae72cf4fce0071a81481") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (simplenote2 . [(20171202 206) ((request-deferred (0 2 0))) "Interact with app.simplenote.com" tar ((:commit . "0fd6dbd0566af29964078e4b74baf69c2f52381a") (:keywords "simplenote") (:authors ("alpha22jp" . "alpha22jp@gmail.com")) (:maintainer "alpha22jp" . "alpha22jp@gmail.com"))]) (simplenote . [(20141118 1440) nil "Interact with simple-note.appspot.com" single ((:commit . "e836fcdb5a6497a9ffd6bceddd19b4bc52189078") (:keywords "simplenote") (:authors ("Konstantinos Efstathiou" . "konstantinos@efstathiou.gr")) (:maintainer "Konstantinos Efstathiou" . "konstantinos@efstathiou.gr"))]) (simpleclip . [(20181105 1636) nil "Simplified access to the system clipboard" single ((:commit . "2468b08ad829aaf4a90246541978be3974c60ab8") (:keywords "convenience") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/simpleclip"))]) (simple-screen . [(20161009 920) nil "Simple screen configuration manager" single ((:commit . "596e3a451d9af24730ab31a8fe15c91a4264d09d") (:keywords "tools") (:authors ("Tadashi Watanabe" . "wac@umiushi.org")) (:maintainer "Tadashi Watanabe" . "wac@umiushi.org") (:url . "https://github.com/wachikun/simple-screen"))]) (simple-rtm . [(20160222 1534) ((rtm (0 1)) (dash (2 0 0))) "Interactive Emacs mode for Remember The Milk" single ((:commit . "8c7cd96cf66ef112be5c363e3378e304f8f83999") (:keywords "remember" "the" "milk" "productivity" "todo") (:authors ("Moritz Bunkus" . "morit@bunkus.org")) (:maintainer "Moritz Bunkus" . "morit@bunkus.org"))]) (simple-paren . [(20180427 918) ((emacs (24)) (cl-lib (0 5))) "Insert paired delimiter, wrap" single ((:commit . "8d735905306c587851eff1445898499c01c530ca") (:keywords "convenience") (:authors ("Andreas Röhler, Steve Purcell")) (:maintainer "Andreas Röhler, Steve Purcell") (:url . "https://github.com/andreas-roehler/simple-paren"))]) (simple-mpc . [(20180716 129) ((s (1 10 0))) "provides a simple interface to mpc" tar ((:commit . "bee8520e81292b4c7353e45b193f9a13b482f5b2") (:keywords "multimedia" "mpd" "mpc") (:authors ("Joren Van Onder" . "joren.vanonder@gmail.com")) (:maintainer "Joren Van Onder" . "joren.vanonder@gmail.com") (:url . "https://github.com/jorenvo/simple-mpc"))]) (simple-httpd . [(20180528 1603) ((cl-lib (0 3))) "pure elisp HTTP server" single ((:commit . "49721d5b791bee0fc25b1fdd69696371d546093a") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/emacs-http-server"))]) (simple-call-tree . [(20180224 2056) ((emacs (24 3)) (anaphora (1 0 0))) "analyze source code based on font-lock text-properties" single ((:commit . "20059eb5549408def76aeb03d0d20839903dedef") (:keywords "programming") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "http://www.emacswiki.org/emacs/download/simple-call-tree.el"))]) (simple-bookmarks . [(20160804 1401) ((cl-lib (0 5))) "Bookmark / functioncall manager" tar ((:commit . "6c58337f2b7dbe9e58b5e097b1567f046a01d071") (:keywords "bookmark" "functioncall") (:authors ("Julian T. Knabenschuh" . "jtkdevelopments@gmail.com")) (:maintainer "Julian T. Knabenschuh" . "jtkdevelopments@gmail.com") (:url . "https://github.com/jtkDvlp/simple-bookmarks"))]) (simp . [(20180607 254) nil "Simple project definition, chiefly for file finding, and grepping" tar ((:commit . "d4d4b8547055347828bedccbeffdb4fd2d5a5d34") (:keywords "project" "grep" "find") (:authors ("atom smith")) (:maintainer "atom smith") (:url . "https://github.com/re5et/simp"))]) (silkworm-theme . [(20180301 1437) ((emacs (24))) "Light theme with pleasant, low contrast colors." single ((:commit . "4a297f952401cfe894dcb24174f6eda05e00fada") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler"))]) (signature . [(20140730 1949) nil "Signature Survey" tar ((:commit . "c47df2e1189a84505f9224aa78e87b6c65d13d37") (:authors ("Peter Stiernström" . "peter@stiernstrom.se")) (:maintainer "Peter Stiernström" . "peter@stiernstrom.se"))]) (signal . [(20160816 1438) ((emacs (24)) (cl-lib (0 5))) "Advanced hook" single ((:commit . "aa58327e2297df921d72a0370468b48663efd438") (:keywords "internal" "lisp" "processes" "tools") (:authors ("Mola-T" . "Mola@molamola.xyz")) (:maintainer "Mola-T" . "Mola@molamola.xyz") (:url . "https://github.com/mola-T/signal"))]) (sift . [(20160107 1015) nil "Front-end for sift, a fast and powerful grep alternative" single ((:commit . "4ce8878a0fc396ded7521ce38852d93e1d863065") (:keywords "sift" "ack" "pt" "ag" "grep" "search") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/sift.el"))]) (side-notes . [(20180524 628) ((emacs (24 5))) "Easy access to a directory notes file" single ((:commit . "981ac308b9b5d58e2af20485377e693d2a6e15aa") (:keywords "convenience") (:authors ("Paul W. Rankin" . "hello@paulwrankin.com")) (:maintainer "Paul W. Rankin" . "hello@paulwrankin.com") (:url . "https://github.com/rnkn/side-notes"))]) (sicp . [(20180823 1222) nil "Structure and Interpretation of Computer Programs in info format" tar ((:commit . "33acfa10a058aa65b6b22084a5b86a82410d794e") (:authors ("Hal Abelson") ("Jerry Sussman") ("Julie Sussman")) (:maintainer "Hal Abelson") (:url . "https://mitpress.mit.edu/sicp"))]) (sibilant-mode . [(20151119 2145) nil "Support for the Sibilant programming language" single ((:commit . "bc1b5d8cd597918bafc9b2880ee49024740e54ab") (:keywords "languages") (:authors ("Jacob Rothstein" . "hi@jbr.me")) (:maintainer "Jacob Rothstein" . "hi@jbr.me") (:url . "http://sibilantjs.info"))]) (shx . [(20181119 251) ((emacs (24 4))) "\"Extras\" for the (comint-mode) shell" single ((:commit . "a7d9dda0196423bbb673f9a4d30ac948449758f6") (:keywords "processes" "tools") (:url . "https://github.com/riscy/shx-for-emacs"))]) (shut-up . [(20180628 1830) ((cl-lib (0 3)) (emacs (24))) "Shut up would you!" single ((:commit . "081d6b01e3ba0e60326558e545c4019219e046ce") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/shut-up.el"))]) (shrink-whitespace . [(20181003 321) nil "Whitespace removal DWIM key" single ((:commit . "0407b89c142bd17e65edb666f35e2c6755bd0867") (:keywords "convenience") (:authors ("Jean-Christophe Petkovich" . "jcpetkovich@gmail.com")) (:maintainer "Jean-Christophe Petkovich" . "jcpetkovich@gmail.com") (:url . "https://gitlab.com/jcpetkovich/shrink-whitespace.el"))]) (shrink-path . [(20170813 247) ((emacs (24)) (s (1 6 1)) (dash (1 8 0)) (f (0 10 0))) "fish-style path" single ((:commit . "9d06c453d1537df46a4b703a29213cc7f7857aa0") (:authors ("Benjamin Andresen")) (:maintainer "Benjamin Andresen") (:url . "https://gitlab.com/bennya/shrink-path.el"))]) (shr-tag-pre-highlight . [(20171113 914) ((emacs (25 1)) (language-detection (0 1 0))) "Syntax highlighting code block in HTML" single ((:commit . "6182f43a36b0f82ba6edcf6e423b5f69a46a814e") (:keywords "html") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/shr-tag-pre-highlight.el"))]) (shpec-mode . [(20150530 922) nil "Minor mode for shpec specification" single ((:commit . "146adc8281d0f115df39a3a3f982ac59ab61b754") (:keywords "languages" "tools") (:authors ("AdrieanKhisbe" . "adriean.khisbe@live.fr")) (:maintainer "AdrieanKhisbe" . "adriean.khisbe@live.fr") (:url . "http://github.com/shpec/shpec-mode"))]) (showtip . [(20090830 1040) nil "Show tip at cursor" single ((:commit . "930da302809a4257e8d69425455b29e1cc91949b") (:keywords "help") (:authors ("Ye Wenbin" . "wenbinye@gmail.com")) (:maintainer "Ye Wenbin" . "wenbinye@gmail.com"))]) (show-marks . [(20130805 1449) ((fm (1 0))) "Navigate and visualize the mark-ring" single ((:commit . "97609566582e65eed0d0a854efa5c312f209115d") (:keywords "convenience") (:authors ("Greg Rowe" . "emacs@therowes.net")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/mark"))]) (show-css . [(20160210 1408) ((doom (1 3)) (s (1 10 0))) "Show the css of the html attribute the cursor is on" tar ((:commit . "771daeddd4df7a7c10f66419a837145649bab63b") (:keywords "hypermedia") (:authors ("Sheldon McGrandle" . "developer@rednemesis.com")) (:maintainer "Sheldon McGrandle" . "developer@rednemesis.com") (:url . "https://github.com/smmcg/showcss-mode"))]) (shoulda . [(20140616 1833) ((cl-lib (0 5))) "Shoulda test support for ruby" single ((:commit . "fbe8eb8efc6cfcca1713283a290882cfcdc8725e") (:keywords "ruby" "tests" "shoulda") (:authors ("Marcwebbie" . "marcwebbie@gmail.com")) (:maintainer "Marcwebbie" . "marcwebbie@gmail.com"))]) (shm . [(20180327 57) nil "Structured Haskell Mode" tar ((:commit . "7f9df73f45d107017c18ce4835bbc190dfe6782e") (:keywords "development" "haskell" "structured") (:authors ("Chris Done" . "chrisdone@gmail.com")) (:maintainer "Chris Done" . "chrisdone@gmail.com"))]) (shimbun . [(20181019 821) nil "interfacing with web newspapers" tar ((:commit . "f392ad9864d3ec30e8b8151bdbd714f51be21bf3") (:keywords "news") (:authors ("TSUCHIYA Masatoshi" . "tsuchiya@namazu.org") ("Akihiro Arisawa   " . "ari@mbf.sphere.ne.jp") ("Yuuichi Teranishi " . "teranisi@gohome.org") ("Katsumi Yamaoka   " . "yamaoka@jpl.org")) (:maintainer "TSUCHIYA Masatoshi" . "tsuchiya@namazu.org"))]) (shift-text . [(20130831 1655) ((cl-lib (1 0)) (es-lib (0 3))) "Move the region in 4 directions, in a way similar to Eclipse's" single ((:commit . "1be9cbf994000022172ceb746fe1d597f57ea8ba") (:authors ("sabof")) (:maintainer "sabof") (:url . "https://github.com/sabof/shift-text"))]) (shift-number . [(20170301 1459) nil "Increase/decrease the number at point" single ((:commit . "cd099a5582fc996b800ac7607f6c38a004ce9740") (:keywords "convenience") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/shift-number.el"))]) (shen-elisp . [(20180915 2028) ((emacs (24 4))) "Shen implementation in Elisp" tar ((:commit . "73b74c8d6e3a2ea34b667d177d9f130765bfe501") (:keywords "shen" "elisp") (:url . "http://github.com/deech/shen-elisp"))]) (shelltest-mode . [(20180501 141) nil "Major mode for shelltestrunner" single ((:commit . "5fea8c9394380e822971a171905b6b5ab9be812d") (:keywords "languages") (:authors ("Dustin Fechner" . "dfe@rtrn.io")) (:maintainer "Dustin Fechner" . "dfe@rtrn.io") (:url . "https://github.com/rtrn/shelltest-mode"))]) (shelldoc . [(20151115 325) ((cl-lib (0 3)) (s (1 9 0))) "shell command editing support with man page." single ((:commit . "5df2264eb60e45066f3633df4f34834751667346") (:keywords "applications") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "http://github.com/mhayashi1120/Emacs-shelldoc"))]) (shell-toggle . [(20150226 1411) nil "Toggle to and from the shell buffer" single ((:commit . "0d01bd9a780fdb7fe6609c552523f4498649a3b9") (:keywords "processes") (:authors ("Mikael Sjödin" . "mic@docs.uu.se") ("Matthieu Moy") ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Mikael Sjödin" . "mic@docs.uu.se") (:url . "https://github.com/knu/shell-toggle.el"))]) (shell-switcher . [(20161029 552) ((emacs (24))) "Provide fast switching between shell buffers." tar ((:commit . "28a7f753dd7addd2933510526f52620cb5a22048"))]) (shell-split-string . [(20151224 1008) nil "Split strings using shell-like syntax" single ((:commit . "19f6f999c33cc66a4c91bacdcc3697c25d97bf5a") (:keywords "utility" "library" "shell" "string") (:authors ("10sr <8.slashes+el [at] gmail [dot] com>")) (:maintainer "10sr <8.slashes+el [at] gmail [dot] com>") (:url . "https://github.com/10sr/shell-split-string-el"))]) (shell-pop . [(20170304 1416) ((emacs (24)) (cl-lib (0 5))) "helps you to use shell easily on Emacs. Only one key action to work." single ((:commit . "4a3a9d093ad1add792bba764c601aa28de302b34") (:keywords "shell" "terminal" "tools") (:authors ("Kazuo YAGI" . "kazuo.yagi@gmail.com")) (:maintainer "Kazuo YAGI" . "kazuo.yagi@gmail.com") (:url . "http://github.com/kyagi/shell-pop-el"))]) (shell-history . [(20100505 839) nil "integration with shell history" single ((:commit . "ee371a81f2d2bf5a308344078329ca1e9b5ed38c") (:keywords "processes" "convenience") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/shell-history.el"))]) (shell-here . [(20150728 1704) nil "Open a shell relative to the working directory" single ((:commit . "251309141e18978d2b8014345acc6f5afcd4d509") (:keywords "unix" "tools" "processes") (:authors ("Ian Eure" . "ian.eure@gmail.com")) (:maintainer "Ian Eure" . "ian.eure@gmail.com"))]) (shell-current-directory . [(20140101 2354) nil "create new shell based on buffer directory" single ((:commit . "bf843771bf9a4aa05e054ade799eb8862f3be89a") (:keywords "shell" "comint") (:authors ("Daniel Polani")) (:maintainer "Daniel Polani"))]) (shell-command . [(20090830 1040) nil "enables tab-completion for `shell-command'" single ((:commit . "7e22125f746ce9ffbe9b0282d62f4b4bbbe672bd") (:keywords "shell") (:authors ("TSUCHIYA Masatoshi" . "tsuchiya@namazu.org")) (:maintainer "TSUCHIYA Masatoshi" . "tsuchiya@namazu.org"))]) (shampoo . [(20131230 1019) nil "A remote Smalltalk development mode" tar ((:commit . "bc193c39636c30182159c5c91c37a9a4cb50fedf"))]) (shakespeare-mode . [(20180704 2138) nil "A major mode for editing Shakespearean templates." single ((:commit . "c442eeea9d585e1b1fbb8813e33d47feec348a57") (:keywords "shakespeare" "hamlet" "lucius" "julius" "mode") (:authors ("Cody Reichert")) (:maintainer "Cody Reichert") (:url . "http://github.com/CodyReichert/shakespeare-mode"))]) (shader-mode . [(20180518 1157) ((emacs (24))) "Major mode for shader" single ((:commit . "d7dc8d0d6fe8914e8b6d5cf2081ad61e6952359c") (:authors ("midnightSuyama" . "midnightSuyama@gmail.com")) (:maintainer "midnightSuyama" . "midnightSuyama@gmail.com") (:url . "https://github.com/midnightSuyama/shader-mode"))]) (shadchen . [(20141102 1839) nil "pattern matching for elisp" single ((:commit . "35f2b9c304eec990c16efbd557198289dc7cbb1f") (:authors ("Vincent Toups")) (:maintainer "Vincent Toups"))]) (shackle . [(20171209 2201) ((cl-lib (0 5))) "Enforce rules for popups" single ((:commit . "4189c1c773aab533969b587f7801ffbcd1d7d613") (:keywords "convenience") (:authors ("Vasilij Schneidermann" . "v.schneidermann@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com") (:url . "https://github.com/wasamasa/shackle"))]) (sexy-monochrome-theme . [(20180526 808) nil "A sexy dark Emacs >= 24 theme for your sexy code" single ((:commit . "036bc238e48dd21aae1c34e6971d376582d8281b") (:keywords "themes") (:authors ("Volodymyr Yevtushenko" . "voloyev@vivaldi.net")) (:maintainer "Volodymyr Yevtushenko" . "voloyev@vivaldi.net") (:url . "https://github.com/voloyev/sexy-monochrome-theme"))]) (sexp-move . [(20150915 1730) nil "Improved S-Expression Movement" single ((:commit . "117f7a91ab7c25e438413753e916570122011ce7") (:keywords "sexp") (:authors ("Philip Woods" . "elzairthesorcerer@gmail.com")) (:maintainer "Philip Woods" . "elzairthesorcerer@gmail.com") (:url . "https://gitlab.com/elzair/sexp-move"))]) (seti-theme . [(20161208 1636) nil "A dark colored theme, inspired by Seti Atom Theme" single ((:commit . "cbfef2fc15d19ce4c8326e65fafdd61737077132") (:keywords "themes") (:authors ("Vlad Piersec" . "vlad.piersec@gmail.com")) (:maintainer "Vlad Piersec" . "vlad.piersec@gmail.com") (:url . "https://github.com/caisah/seti-theme"))]) (session . [(20120511 0) nil "use variables, registers and buffer places across sessions" single ((:commit . "19ea0806873daac3539a4b956e15655e99e3dd6c") (:keywords "session" "session management" "desktop" "data" "tools") (:authors ("Christoph Wedler" . "wedler@users.sourceforge.net")) (:maintainer "Christoph Wedler" . "wedler@users.sourceforge.net") (:url . "http://emacs-session.sourceforge.net/"))]) (sesman . [(20181109 1100) ((emacs (25))) "Generic Session Manager" tar ((:commit . "2a1a9a4ccfd88127e13f2655ac130c82fe84f2f7") (:keywords "process") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/vspinu/sesman"))]) (services . [(20170802 1130) ((cl-lib (0 5))) "Services database access functions." single ((:commit . "04c7986041a33dfa0b0ae57c7d6fbd600548c596") (:keywords "convenience" "net" "services") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/services.el"))]) (serverspec . [(20150623 1155) ((dash (2 6 0)) (s (1 9 0)) (f (0 16 2)) (helm (1 6 1))) "Serverspec minor mode" tar ((:commit . "b6dfe82af9869438de5e5d860ced196641f372c0") (:authors ("k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>")) (:maintainer "k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>") (:url . "http://101000lab.org"))]) (servant . [(20140216 1219) ((s (1 8 0)) (dash (2 2 0)) (f (0 11 0)) (ansi (0 3 0)) (commander (0 5 0)) (epl (0 2)) (shut-up (0 2 1)) (web-server (0 0 1))) "ELPA server written in Emacs Lisp" tar ((:commit . "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134") (:keywords "elpa" "server") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com") ("Sebastian Wiesner" . "lunaryorn@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/servant.el"))]) (sequential-command . [(20170926 40) nil "Many commands into one command" tar ((:commit . "a48cbcbe273b33edd3ae56e68f44b4100fa3a48a") (:keywords "convenience" "lisp") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/sequential-command.el"))]) (sequences . [(20170818 1252) ((emacs (24))) "Ports of some Clojure sequence functions." single ((:commit . "564ebbd93b0beea4e75acfbf824350e90b5d5738") (:keywords "convenience") (:authors ("Tim Visher" . "tim.visher@gmail.com")) (:maintainer "Tim Visher" . "tim.visher@gmail.com"))]) (seoul256-theme . [(20180505 757) ((emacs (24 3))) "Low-contrast color scheme based on Seoul Colors." single ((:commit . "d28a9de73a5ffb1a1c9492db75a5c1efe5e9815f") (:keywords "theme") (:authors ("Anand Iyer" . "anand.ucb@gmail.com")) (:maintainer "Anand Iyer" . "anand.ucb@gmail.com") (:url . "http://github.com/anandpiyer/seoul256-emacs"))]) (sentence-navigation . [(20180408 1619) ((ample-regexps (0 1)) (cl-lib (0 5)) (emacs (24 4))) "Commands to navigate one-spaced sentences." single ((:commit . "7c5d2edeaed01196aec25031782e89adeaa089f0") (:keywords "sentence" "evil") (:authors ("Fox Kiester" . "noct@openmailbox.org")) (:maintainer "Fox Kiester" . "noct@openmailbox.org") (:url . "https://github.com/noctuid/emacs-sentence-navigation"))]) (sensitive . [(20170818 1251) ((emacs (24)) (sequences (0 1 0))) "A dead simple way to load sensitive information" single ((:commit . "69dd6125a41d8b55f4b6ba61daa4d1aa1f716fa8") (:keywords "convenience") (:authors ("Tim Visher" . "tim.visher@gmail.com")) (:maintainer "Tim Visher" . "tim.visher@gmail.com"))]) (sendto . [(20160425 1250) ((emacs (24 4))) "send the region content to a function" single ((:commit . "076b81d7a53f75b0a59b0ef3448f35570567054c") (:keywords "convenience" "region") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/sendto.el"))]) (semi . [(20180825 901) ((flim (1 14 9))) "A library to provide MIME features." tar ((:commit . "d445dbdf39bab9aaf00582506357f25f1b78d76d"))]) (selectric-mode . [(20170216 1111) nil "IBM Selectric mode for Emacs" tar ((:commit . "aed70015b29074b52a5d0c49b88b7a501d276dda") (:keywords "multimedia" "convenience" "typewriter" "selectric") (:authors ("Ricardo Bánffy" . "rbanffy@gmail.com")) (:maintainer "Ricardo Banffy" . "rbanffy@gmail.com") (:url . "https://github.com/rbanffy/selectric-mode"))]) (selected . [(20170222 834) nil "Keymap for when region is active" single ((:commit . "03edaeac90bc6000d263f03be3d889b4685e1bf7") (:keywords "convenience") (:authors ("Erik Sjöstrand")) (:maintainer "Erik Sjöstrand") (:url . "http://github.com/Kungsgeten/selected.el"))]) (select-themes . [(20160221 106) nil "Color theme selection with completing-read" single ((:commit . "236f54287519a3ea6dd7b3992d053e4f4ff5d0fe") (:authors ("Jason Milkins" . "jasonm23@gmail.com")) (:maintainer "Jason Milkins" . "jasonm23@gmail.com") (:url . "https://github.com/jasonm23/emacs-select-themes"))]) (sekka . [(20170803 1247) ((cl-lib (0 3)) (concurrent (0 3 1)) (popup (0 5 2))) "A client for Sekka IME server" single ((:commit . "61840b57d9ae32bf8e297b175942590a1319c7e7") (:keywords "ime" "skk" "japanese") (:authors ("Kiyoka Nishiyama" . "kiyoka@sumibi.org")) (:maintainer "Kiyoka Nishiyama" . "kiyoka@sumibi.org") (:url . "https://github.com/kiyoka/sekka"))]) (seethru . [(20150218 1829) ((shadchen (1 4))) "Easily change Emacs' transparency" single ((:commit . "d87e231f99313bea75b1e69e48c0f32968c82060") (:keywords "lisp" "tools" "alpha" "transparency") (:authors ("Benaiah Mischenko" . "benaiah@mischenko.com")) (:maintainer "Benaiah Mischenko" . "benaiah@mischenko.com") (:url . "http://github.com/benaiah/seethru"))]) (seeing-is-believing . [(20170214 1320) nil "minor mode for running the seeing-is-believing ruby gem" single ((:commit . "fbbe246c0fda87bb26227bb826eebadb418a220f") (:authors ("John Cinnamond")) (:maintainer "John Cinnamond"))]) (see-mode . [(20180511 41) ((emacs (24 4)) (language-detection (0 1 0))) "Edit string  in a separate buffer" single ((:commit . "b6e72ea90105b03816c334be9e43bb41dcc79abf") (:keywords "convenience") (:authors ("Marcelo Muñoz" . "ma.munoz.araya@gmail.com")) (:maintainer "Marcelo Muñoz" . "ma.munoz.araya@gmail.com") (:url . "https://github.com/marcelino-m/see-mode"))]) (secretaria . [(20181025 1957) ((emacs (24 4)) (alert (1 2)) (s (1 12)) (f (0 19 0))) "A personal assistant based on org-mode" single ((:commit . "27528f57c7543b425940db29b9b99d59d430ff09") (:keywords "org" "convenience") (:authors ("Jorge Araya Navarro" . "jorge@esavara.cr")) (:maintainer "Jorge Araya Navarro" . "jorge@esavara.cr") (:url . "https://gitlab.com/shackra/secretaria"))]) (seclusion-mode . [(20121118 2353) nil "Edit in seclusion. A Dark Room mode." single ((:commit . "9634e76c52bfb7200ff0f9f01404f743429e9ef0") (:authors (nil . "Daniel Leslie dan@ironoxide.ca")) (:maintainer nil . "Daniel Leslie dan@ironoxide.ca") (:url . "http://github.com/dleslie/seclusion-mode"))]) (searchq . [(20150829 1211) ((emacs (24 3))) "Framework of queued search tasks using GREP, ACK, AG and more." tar ((:commit . "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82") (:authors ("boyw165")) (:maintainer "boyw165"))]) (search-web . [(20150312 1103) nil "Post web search queries using `browse-url'." single ((:commit . "c4ae86ac1acfc572b81f3d78764bd9a54034c331") (:authors ("Tomoya Otake" . "tomoya.ton@gmail.com")) (:maintainer "Tomoya Otake" . "tomoya.ton@gmail.com"))]) (sdlang-mode . [(20161201 711) ((emacs (24 3))) "Major mode for Simple Declarative Language files." single ((:commit . "d42a6eedefeb44919fbacf58d302b6df18f05bbc") (:keywords "languages") (:authors ("Vladimir Panteleev")) (:maintainer "Vladimir Panteleev") (:url . "https://github.com/CyberShadow/sdlang-mode"))]) (sdcv . [(20180211 1633) ((emacs (24 3)) (popup (0 5 3)) (showtip (0 1)) (pos-tip (0 4 6)) (cl-lib (0 3))) "Interface for sdcv (StartDict console version)." single ((:commit . "7cb1f8ec0fa4bb25669534d62bff58df38a992a8") (:keywords "startdict" "sdcv") (:authors ("Andy Stewart" . "lazycat.manatee@gmail.com")) (:maintainer "Andy Stewart" . "lazycat.manatee@gmail.com") (:url . "http://www.emacswiki.org/emacs/download/sdcv.el"))]) (scss-mode . [(20180123 1708) nil "Major mode for editing SCSS files" single ((:commit . "cf58dbec5394280503eb5502938f3b5445d1b53d") (:keywords "scss" "css" "mode") (:authors ("Anton Johansson" . "anton.johansson@gmail.com")) (:maintainer "Anton Johansson" . "anton.johansson@gmail.com") (:url . "https://github.com/antonj/scss-mode"))]) (scrooge . [(20180630 1022) ((emacs (24)) (cl-lib (0 5)) (dash (2 13 0)) (thrift (0 9 3))) "Major mode for Twitter Scrooge files" single ((:commit . "0a8c58e9e6708abe4ef7e415bc1e0472318bb1b0") (:keywords "scrooge" "thrift") (:authors ("Daniel McClanahan" . "danieldmcclanahan@gmail.com")) (:maintainer "Daniel McClanahan" . "danieldmcclanahan@gmail.com"))]) (scribble-mode . [(20160124 2328) ((emacs (24))) "Major mode for editing Scribble documents" single ((:commit . "34e9e5edb921813b6483e0fefa848efb6ee4b314") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/scribble-mode"))]) (scratches . [(20151006 416) ((dash (2 11 0)) (f (0 17 0))) "Multiple scratches in any language" single ((:commit . "9441afe6396ca38f08029123fab5d87429cbf315") (:keywords "scratch") (:authors ("Zhang Kai Yu" . "yeannylam@gmail.com")) (:maintainer "Zhang Kai Yu" . "yeannylam@gmail.com"))]) (scratch-pop . [(20170510 1458) ((popwin (0 7 0 -3))) "Generate, popup (& optionally backup) scratch buffer(s)." single ((:commit . "7f4172c792b10bd38898dd8963cf0ade91921869") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (scratch-palette . [(20150225 842) ((popwin (0 7 0 -3))) "make scratch buffer for each files" single ((:commit . "f6803b448079f4a81cc699cec7442ef543cd5818") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (scratch-message . [(20170107 1336) nil "Changing message in your scratch buffer" single ((:commit . "3ecc7f5e3b8a597ebd1492fd426d3720a7f34302") (:keywords "util" "scratch") (:authors ("Sylvain Rousseau <thisirs at gmail dot com>")) (:maintainer "Sylvain Rousseau <thisirs at gmail dot com>") (:url . "https://github.com/thisirs/scratch-message.git"))]) (scratch-log . [(20141115 743) nil "Utility for *scratch* buffer." single ((:commit . "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0") (:authors ("kmori" . "morihenotegami@gmail.com")) (:maintainer "kmori" . "morihenotegami@gmail.com"))]) (scratch-ext . [(20140104 516) nil "Extensions for *scratch*" single ((:commit . "388c53cddd0466b451264894667ed64a6947ad67") (:authors ("Kouhei Yanagita" . "yanagi@shakenbu.org")) (:maintainer "Kouhei Yanagita" . "yanagi@shakenbu.org") (:url . "https://github.com/kyanagi/scratch-ext-el"))]) (scratch . [(20170614 2101) nil "Mode-specific scratch buffers" single ((:commit . "2cdf2b841ce7a0987093f65b0cc431947549f897") (:keywords "convenience" "tools" "files") (:authors ("Ian Eure" . "ian.eure@gmail.com")) (:maintainer "Ian Eure" . "ian.eure@gmail.com"))]) (scpaste . [(20180822 1551) ((htmlize (1 39))) "Paste to the web via scp." single ((:commit . "af23b09ece83a9382c3c3c1a2f09e78b8641f0a5") (:keywords "convenience" "hypermedia") (:authors ("Phil Hagelberg")) (:maintainer "Phil Hagelberg") (:url . "https://github.com/technomancy/scpaste"))]) (scp . [(20171204 251) ((emacs (25 1)) (cl-lib (0 5))) "Use the SCP command to transfer files with the remote server" single ((:commit . "447305db246d9c9240678dd9c734ed920300463a") (:keywords "convenience" "scp") (:authors ("zg" . "13853850881@163.com")) (:maintainer "zg" . "13853850881@163.com") (:url . "https://github.com/tszg/emacs-scp"))]) (sclang-snippets . [(20130513 751) ((yasnippet (0 8 0))) "Snippets for the SuperCollider Emacs mode" tar ((:commit . "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58") (:keywords "snippets") (:authors ("ptrv" . "mail@petervasil.net")) (:maintainer "ptrv" . "mail@petervasil.net"))]) (sclang-extensions . [(20160509 338) ((auto-complete (1 4 0)) (s (1 3 1)) (dash (1 2 0)) (emacs (24 1))) "Extensions for the SuperCollider Emacs mode." tar ((:commit . "e9cc79732f16fdb582129303110c163dcc0d6da0") (:keywords "sclang" "supercollider" "languages" "tools") (:authors ("Chris Barrett" . "chris.d.barrett@me.com")) (:maintainer "Chris Barrett" . "chris.d.barrett@me.com"))]) (scion . [(20130315 1255) nil "Haskell Minor Mode for Interacting with the Scion Library" single ((:commit . "99b4589175665687181a932cd836850205625f71") (:url . "https://code.google.com/p/scion-lib/"))]) (schrute . [(20170521 1840) ((emacs (24 3))) "Help you remember there is a better way to do something." single ((:commit . "59faa6c4232ae183cea93237301acad8c0763997") (:keywords "convenience") (:authors ("Jorge Araya Navarro" . "elcorreo@deshackra.com")) (:maintainer "Jorge Araya Navarro" . "elcorreo@deshackra.com") (:url . "https://bitbucket.org/shackra/dwight-k.-schrute"))]) (scheme-here . [(20141028 718) nil "cmuscheme extension for multiple inferior processes" single ((:commit . "430ba017cc530865218de23a8f7985095a58343f") (:keywords "scheme") (:authors ("Dimitris Vyzovitis" . "vyzo@media.mit.edu")) (:maintainer "Wei Zhao" . "kaihaosw@gmail.com") (:url . "https://github.com/kaihaosw/scheme-here"))]) (scheme-complete . [(20181029 1255) nil "Smart auto completion for Scheme in Emacs" single ((:commit . "b86ee41d48664839181498313f4f3dc2fef17d6f") (:authors ("Alex Shinn")) (:maintainer "Alex Shinn"))]) (scf-mode . [(20151122 248) nil "shorten file-names in compilation type buffers" single ((:commit . "dbfcdcd89034f208d65e181af58e0d73ad09f8b2") (:keywords "compilation") (:authors ("Le Wang")) (:maintainer "Le Wang") (:url . "https://github.com/lewang/scf-mode"))]) (scala-mode . [(20170802 1132) nil "Major mode for editing Scala" tar ((:commit . "56cba2903cf6e12c715dbb5c99b34c97b2679379") (:keywords "languages") (:url . "https://github.com/ensime/emacs-scala-mode"))]) (scad-preview . [(20160206 1336) ((scad-mode (91 0))) "Preview SCAD models in real-time within Emacs" single ((:commit . "fee011589671cc8f1296cb6aa81553e5bb699819") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (scad-mode . [(20180109 209) nil "A major mode for editing OpenSCAD code" single ((:commit . "470de667e5523467d353f7fa797cfc662069a043") (:keywords "languages") (:authors ("Len Trigg, Łukasz Stelmach")) (:maintainer "Len Trigg" . "lenbok@gmail.com") (:url . "https://raw.github.com/openscad/openscad/master/contrib/scad-mode.el"))]) (sbt-mode . [(20180511 1622) ((emacs (24 4))) "Interactive support for sbt projects" tar ((:commit . "e658af140547cbef495c33535c7f694a501d318c") (:keywords "languages") (:url . "https://github.com/ensime/emacs-sbt-mode"))]) (sayid . [(20181024 1838) ((cider (0 14 0))) "sayid nREPL middleware client" single ((:commit . "078378240277160b00d332065d8325e713c0b526") (:authors ("Bill Piel" . "bill@billpiel.com")) (:maintainer "Bill Piel" . "bill@billpiel.com") (:url . "https://github.com/clojure-emacs/sayid"))]) (say-what-im-doing . [(20160706 1931) nil "dictate what you're doing with text to speech" single ((:commit . "5b2ce6783b02805bcac1107a149bfba3852cd9d5") (:keywords "text to speech" "dumb" "funny") (:authors ("Benaiah Mischenko")) (:maintainer "Benaiah Mischenko") (:url . "http://github.com/benaiah/say-what-im-doing"))]) (savekill . [(20140418 229) nil "Save kill ring to disk" single ((:commit . "67fc94e3d8fe8ce3ca16f90518f6a46479b63e34") (:keywords "tools") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/savekill.el"))]) (save-visited-files . [(20170301 650) nil "save opened files across sessions" single ((:commit . "33e8d223f622001f5792c52d8b36661e46b5834c") (:authors ("Nathaniel Flath" . "nflath@gmail.com")) (:maintainer "Nathaniel Flath" . "nflath@gmail.com") (:url . "http://github.com/nflath/save-visited-files"))]) (save-load-path . [(20140206 1214) nil "save load-path and reuse it to test" single ((:commit . "6cb763a37e2b8af505bff2bcd11fd49c9ea04d66") (:keywords "lisp") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/save-load-path.el"))]) (sauron . [(20171105 1047) nil "Track (erc/org/dbus/...) events and react to them." tar ((:commit . "50f09bfc6f5bf79e72a1223e345ee720b507e56a"))]) (sass-mode . [(20161007 626) ((haml-mode (3 0 15)) (cl-lib (0 5))) "Major mode for editing Sass files" single ((:commit . "37105f46f6ea3592039f2ea7d0463ae7f042616e") (:keywords "markup" "language" "css") (:authors ("Natalie Weizenbaum")) (:maintainer "Natalie Weizenbaum") (:url . "http://github.com/nex3/haml/tree/master"))]) (sane-term . [(20160620 1347) ((emacs (24 1))) "Multi Term is crazy. This is not." single ((:commit . "ef6fd08078f49f2bb3be60855d2d002bb6a5e0d2") (:authors ("Adam Patterson" . "adam@adamrt.com")) (:maintainer "Adam Patterson" . "adam@adamrt.com") (:url . "http://github.com/adamrt/sane-term"))]) (salt-mode . [(20181015 1025) ((emacs (24 4)) (yaml-mode (0 0 12)) (mmm-mode (0 5 4)) (mmm-jinja2 (0 1))) "Major mode for Salt States" single ((:commit . "432eaf8a48a79ec5e3b6149dac28370e140155e4") (:keywords "languages") (:authors ("Ben Hayden" . "hayden767@gmail.com")) (:maintainer "Glynn Forrest" . "me@glynnforrest.com") (:url . "https://github.com/glynnforrest/salt-mode"))]) (salesforce-utils . [(20160814 154) ((cl-lib (0 5))) "simple utilities for Salesforce" single ((:commit . "73328baf0fb94ac0d0de645a8f6d42e5ae27f773") (:authors ("Sean McAfee")) (:maintainer "Sean McAfee") (:url . "https://github.com/grimnebulin/emacs-salesforce"))]) (sailfish-scratchbox . [(20171202 1332) nil "Sailfish OS scratchbox inside the emacs." single ((:commit . "bb5ed0f0b0cd72f2eb1af065b7587ec81866b089") (:keywords "sb2" "mb2" "building" "scratchbox" "sailfish") (:authors ("V. V. Polevoy" . "fx@thefx.co")) (:maintainer "V. V. Polevoy" . "fx@thefx.co") (:url . "https://github.com/vityafx/sailfish-scratchbox.el"))]) (sage-shell-mode . [(20180215 835) ((cl-lib (0 6 1)) (emacs (24 4)) (let-alist (1 0 5)) (deferred (0 5 1))) "A front-end for Sage Math" tar ((:commit . "9f07ff835e8d19afe571dbe414afb690c7b1cb5c") (:keywords "sage" "math") (:authors ("Sho Takemori" . "stakemorii@gmail.com")) (:maintainer "Sho Takemori" . "stakemorii@gmail.com") (:url . "https://github.com/sagemath/sage-shell-mode"))]) (sackspace . [(20130719 956) nil "A better backspace" single ((:commit . "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708") (:keywords "delete" "convenience") (:authors ("Michael Markert" . "markert.michael@googlemail.com")) (:maintainer "Michael Markert" . "markert.michael@googlemail.com") (:url . "http://github.com/cofi/sackspace.el"))]) (s3ed . [(20180204 1349) ((emacs (24 4)) (seq (0)) (dash (0))) "Tramp-like access to s3" tar ((:commit . "13503cb057bed29cb00a14dffe4472b5cb7748ad") (:keywords "s3" "tools") (:authors ("Matt Usifer" . "mattusifer@gmail.com")) (:maintainer "Matt Usifer" . "mattusifer@gmail.com") (:url . "https://github.com/mattusifer/s3ed"))]) (s12cpuv2-mode . [(20171013 2051) ((emacs (24 3))) "Major-mode for S12CPUV2 assembly" single ((:commit . "b17d4cf848dec1e20e66458e5c7ff77a2c051a8c") (:keywords "s12cpuv2" "assembly" "languages") (:authors ("Adam Niederer" . "adam.niederer@gmail.com")) (:maintainer "Adam Niederer" . "adam.niederer@gmail.com") (:url . "https://github.com/AdamNiederer/s12cpuv2-mode"))]) (s-buffer . [(20130605 2124) ((s (1 6 0)) (noflet (0 0 3))) "s operations for buffers" single ((:commit . "f95d234282377f00a2c3a9846681080cb95bb1df") (:keywords "lisp") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "http://github.com/nicferrier/emacs-s-buffer"))]) (s . [(20180406 808) nil "The long lost Emacs string manipulation library." single ((:commit . "03410e6a7a2b11e47e1fea3b7d9899c7df26435e") (:keywords "strings") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (ryo-modal . [(20180331 818) ((emacs (24 4))) "Roll your own modal mode" single ((:commit . "42f874467dfdce59b511f883496ce2624b133dd7") (:keywords "convenience" "modal" "keys") (:authors ("Erik Sjöstrand" . "sjostrand.erik@gmail.com")) (:maintainer "Erik Sjöstrand" . "sjostrand.erik@gmail.com") (:url . "http://github.com/Kungsgeten/ryo-modal"))]) (rvm . [(20150402 1442) nil "Emacs integration for rvm" single ((:commit . "134497bc460990c71ab8fa75431156e62c17da2d") (:keywords "ruby" "rvm") (:authors ("Yves Senn" . "yves.senn@gmx.ch")) (:maintainer "Yves Senn" . "yves.senn@gmx.ch") (:url . "http://www.emacswiki.org/emacs/RvmEl"))]) (rustic . [(20181101 1357) ((emacs (26 1)) (xterm-color (1 6)) (dash (2 13 0)) (s (1 10 0)) (f (0 18 2)) (projectile (0 14 0)) (markdown-mode (2 3)) (spinner (1 7 3))) "Rust development environment" tar ((:commit . "dd4bd58967ed9154af26aab72f0e1fd2a8c93b7e") (:keywords "languages") (:authors ("Mozilla")) (:maintainer "Mozilla"))]) (rust-playground . [(20180807 1158) ((emacs (24 3))) "Local Rust playground for short code snippets." single ((:commit . "092c8b11d62dea23953a004744833092bac85fe1") (:keywords "tools" "rust") (:authors ("Alexander I.Grafov" . "grafov@gmail.com")) (:maintainer "Alexander I.Grafov" . "grafov@gmail.com") (:url . "https://github.com/grafov/rust-playground"))]) (rust-mode . [(20181008 1628) ((emacs (24 0))) "A major emacs mode for editing Rust source code" single ((:commit . "12cb16964ce01f0e484b082ccc8a3430cc1c4158") (:keywords "languages") (:authors ("Mozilla")) (:maintainer "Mozilla") (:url . "https://github.com/rust-lang/rust-mode"))]) (russian-holidays . [(20170109 2140) nil "Russian holidays for the calendar" single ((:commit . "b285a30f29d85c48e3ea4eb93972d34a090c167b") (:authors ("Alexander I.Grafov" . "siberian@laika.name")) (:maintainer "Alexander I.Grafov" . "siberian@laika.name") (:url . "https://github.com/grafov/russian-holidays"))]) (runtests . [(20150807 831) nil "Run unit tests from Emacs" single ((:commit . "ed90249f24cc48290018df48b9b9b7172440be3e") (:keywords "test") (:authors ("Sune Simonsen" . "sune@we-knowhow.dk")) (:maintainer "Sune Simonsen" . "sune@we-knowhow.dk") (:url . "https://github.com/sunesimonsen/emacs-runtests"))]) (runner . [(20160524 743) nil "Improved \"open with\" suggestions for dired" single ((:commit . "a211d57ddc600410d07a8b534920ba905b093d87") (:keywords "shell command" "dired" "file extension" "open with") (:authors ("Thamer Mahmoud" . "thamer.mahmoud@gmail.com")) (:maintainer "Thamer Mahmoud" . "thamer.mahmoud@gmail.com") (:url . "https://github.com/thamer/runner"))]) (run-stuff . [(20180209 748) ((emacs (24 4))) "context based command execution" single ((:commit . "ed42a7bc9a197ccf1ca87f9937bf98f0a9ed3f92") (:keywords "files" "lisp" "files" "convenience" "hypermedia") (:authors ("Campbell Barton" . "ideasman42@gmail.com")) (:maintainer "Campbell Barton" . "ideasman42@gmail.com") (:url . "https://github.com/ideasman42/emacs-run-stuff"))]) (rum-mode . [(20180127 22) ((emacs (24))) "Major mode for Rum programming language" single ((:commit . "893b1a26244ef6ea82833a9afbc13cb82c0cfb53") (:keywords "rum" "languages" "lisp") (:url . "https://github.com/rumlang/rum-mode"))]) (rufo . [(20170718 1416) ((emacs (24 3))) "use rufo to automatically format ruby files" single ((:commit . "85a6d80fb05fef396a8029b8f944c92a53faf8fe") (:authors ("Daniel Ma" . "danielhgma@gmail.com")) (:maintainer "Daniel Ma" . "danielhgma@gmail.com") (:url . "https://github.com/danielma/rufo.el"))]) (ruby-tools . [(20151209 1615) nil "Collection of handy functions for ruby-mode." tar ((:commit . "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18"))]) (ruby-test-mode . [(20171016 1631) ((ruby-mode (1 0)) (pcre2el (1 8))) "Minor mode for Behaviour and Test Driven" single ((:commit . "87f6d770f8d2326c8d36099aeee5d577f3e2af69") (:keywords "ruby" "unit" "test" "rspec") (:authors ("Roman Scherer" . "roman.scherer@gmx.de") ("Caspar Florian Ebeling" . "florian.ebeling@gmail.com")) (:maintainer "Roman Scherer" . "roman.scherer@burningswell.com"))]) (ruby-refactor . [(20160214 1650) ((ruby-mode (1 2))) "A minor mode which presents various Ruby refactoring helpers." single ((:commit . "e6b7125878a08518bffec6942df0c606f748e9ee") (:keywords "refactor" "ruby") (:url . "https://github.com/ajvargo/ruby-refactor"))]) (ruby-interpolation . [(20131112 1652) nil "Ruby string interpolation helpers" single ((:commit . "1978e337601222cedf00e117bf4b5cac15d1f203") (:authors ("Arthur Leonard Andersen" . "leoc.git@gmail.com")) (:maintainer "Arthur Leonard Andersen" . "leoc.git@gmail.com") (:url . "http://github.com/leoc/ruby-interpolation.el"))]) (ruby-hash-syntax . [(20180324 209) nil "Toggle ruby hash syntax between classic and 1.9 styles" single ((:commit . "89fc364a837d7a78ecce34380f09c073a83e30e0") (:keywords "languages") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/ruby-hash-syntax"))]) (ruby-factory . [(20160102 721) ((inflections (1 1))) "Minor mode for Ruby test object generation libraries" tar ((:commit . "2bb7ccc2fccb5257376a989aa395bc7b9eb1d55d") (:keywords "ruby" "rails" "convenience") (:authors ("Skye Shaw" . "skye.shaw@gmail.com")) (:maintainer "Skye Shaw" . "skye.shaw@gmail.com") (:url . "http://github.com/sshaw/ruby-factory-mode"))]) (ruby-extra-highlight . [(20171106 1933) nil "Highlight Ruby parameters." single ((:commit . "83942d18eae361998d24c1c523b308eea821f048") (:keywords "languages" "faces") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/ruby-extra-highlight"))]) (ruby-end . [(20141215 1223) nil "Automatic insertion of end blocks for Ruby" single ((:commit . "a136f75abb6d5577ce40d61dfeb778c2e9bb09c0") (:keywords "speed" "convenience" "ruby") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/ruby-end"))]) (ruby-electric . [(20170810 1130) nil "Minor mode for electrically editing ruby code" single ((:commit . "3553448a780a1ea5c3b0e9becd820d4762876593") (:keywords "languages" "ruby") (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/ruby-electric.el"))]) (ruby-compilation . [(20150709 640) ((inf-ruby (2 2 1))) "run a ruby process in a compilation buffer" single ((:commit . "134438af8fbdfa9c8077267c768d273a9792b484") (:keywords "test" "convenience") (:authors ("Eric Schulte")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/eschulte/rinari"))]) (ruby-additional . [(20180913 1257) ((emacs (24 3)) (ruby-mode (1 2))) "ruby-mode extensions yet to be merged into Emacs" tar ((:commit . "ee275264bc9217e43df22733c1161514805ec3d4") (:keywords "ruby" "languages") (:url . "https://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/misc/"))]) (rubocopfmt . [(20181009 1703) ((cl-lib (0 5))) "Minor-mode to format Ruby code with RuboCop on save" single ((:commit . "fc96145719a65b2551339d087ddd95b72e14646f") (:keywords "convenience" "wp" "edit" "ruby" "rubocop") (:authors ("Jim Myhrberg")) (:maintainer "Jim Myhrberg") (:url . "https://github.com/jimeh/rubocopfmt.el"))]) (rubocop . [(20170312 611) ((emacs (24))) "An Emacs interface for RuboCop" single ((:commit . "0ab1329a8634762bec5bdf5f415c05b32f990248") (:keywords "project" "convenience") (:authors ("Bozhidar Batsov")) (:maintainer "Bozhidar Batsov") (:url . "https://github.com/bbatsov/rubocop-emacs"))]) (rubik . [(20180222 2014) ((cl-lib (1 0)) (emacs (25 3))) "Rubik's Cube" single ((:commit . "c8dab1726463dbc9042a0b00186e4a8df02eb868") (:keywords "games") (:authors ("Ivan 'Kurvivor' Truskov" . "trus19@gmail.com")) (:maintainer "Ivan 'Kurvivor' Truskov" . "trus19@gmail.com") (:url . "https://github.com/Kurvivor19/rubik-mode"))]) (rtm . [(20180329 1508) ((cl-lib (1 0))) "An elisp implementation of the Remember The Milk API" single ((:commit . "3e3d09387cb84801343ecca8fb02e82f213e7bbe") (:keywords "remember" "the" "milk" "productivity" "todo") (:authors ("Friedrich Delgado Friedrichs" . "frie...@nomaden.org")) (:maintainer "Friedrich Delgado Friedrichs" . "frie...@nomaden.org") (:url . "https://github.com/pmiddend/emacs-rtm"))]) (rtags . [(20181120 756) nil "A front-end for rtags" single ((:commit . "2f87c3708cc4873a71ebad2e59842f0daa08bfaa") (:authors ("Jan Erik Hanssen" . "jhanssen@gmail.com") ("Anders Bakken" . "agbakken@gmail.com")) (:maintainer "Jan Erik Hanssen" . "jhanssen@gmail.com") (:url . "http://rtags.net"))]) (rspec-mode . [(20181120 1347) ((ruby-mode (1 0)) (cl-lib (0 4))) "Enhance ruby-mode for RSpec" tar ((:commit . "05561bb8ebb44f5a75e21b69d0ccd67716d8e938") (:keywords "rspec" "ruby") (:authors ("Peter Williams, et al.")) (:maintainer "Peter Williams, et al.") (:url . "http://github.com/pezra/rspec-mode"))]) (rsense . [(20100511 405) nil "RSense client for Emacs" single ((:commit . "8b5ee58318747ca1dde84ee41d48c4f50175cf35") (:keywords "convenience") (:authors ("Tomohiro Matsuyama" . "tomo@cx4a.org")) (:maintainer "Tomohiro Matsuyama" . "tomo@cx4a.org"))]) (rpn-calc . [(20170523 142) ((popup (0 4))) "quick RPN calculator for hackers" single ((:commit . "66fcb64dbfddfc23823356b6213215bd7ab5efc6") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "https://github.com/zk-phi/rpn-calc"))]) (rpm-spec-mode . [(20160710 1136) nil "RPM spec file editing commands for Emacs/XEmacs" single ((:commit . "c1c38050c48ea330c7cea632b8785d66daeefb2b") (:keywords "unix" "languages") (:authors ("Stig Bjørlykke," . "stig@bjorlykke.org")) (:maintainer "Stig Bjørlykke," . "stig@bjorlykke.org"))]) (roy-mode . [(20121208 1158) nil "Roy major mode" single ((:commit . "0416f561edbc6b4a29fced8be84d2527a9613d65") (:keywords "extensions") (:authors ("Georgii Leontiev")) (:maintainer "Georgii Leontiev") (:url . "https://github.com/folone/roy-mode"))]) (rotate . [(20160909 836) nil "Rotate the layout of emacs" single ((:commit . "091b5ac4fc310773253efb317e3dbe8e46959ba6") (:keywords "window" "layout") (:authors ("daichi.hirata <hirata.daichi at gmail.com>")) (:maintainer "daichi.hirata <hirata.daichi at gmail.com>") (:url . "https://github.com/daichirata/emacs-rotate"))]) (rope-read-mode . [(20171003 1419) nil "Rearrange lines to read text smoothly" single ((:commit . "77b183a6f5450138388509f54a6a2ce442766e50") (:keywords "reading" "convenience" "chill") (:authors ("Marco Wahl" . "marcowahlsoft@gmail.com")) (:maintainer "Marco Wahl" . "marcowahlsoft@gmail.com") (:url . "https://github.com/marcowahl/rope-read-mode"))]) (roguel-ike . [(20160120 302) ((popup (0 5 0))) "A coffee-break roguelike" tar ((:commit . "706dcb0687e8016d7d776f9d9e5ace9fdbbca43c"))]) (robots-txt-mode . [(20180919 1541) nil "Major mode for editing robots.txt" single ((:commit . "f8fc7ee50a3d5d7a2838772ed298fb69b9051c5c") (:keywords "languages" "comm" "web") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/robots-txt-mode"))]) (robe . [(20171116 2049) ((inf-ruby (2 5 1)) (emacs (24 4))) "Code navigation, documentation lookup and completion for Ruby" tar ((:commit . "7829f4fdda41eee0add8868646ab86e6b17de4b4") (:keywords "ruby" "convenience" "rails") (:authors ("Dmitry Gutov")) (:maintainer "Dmitry Gutov") (:url . "https://github.com/dgutov/robe"))]) (rmsbolt . [(20181108 324) ((emacs (25 1))) "A compiler output viewer" tar ((:commit . "349ace73107f818bff5ecf4dee17c7192a9159e0") (:keywords "compilation" "tools") (:authors ("Jay Kamat" . "jaygkamat@gmail.com")) (:maintainer "Jay Kamat" . "jaygkamat@gmail.com") (:url . "http://gitlab.com/jgkamat/rmsbolt"))]) (rjsx-mode . [(20180913 2224) ((emacs (24 4)) (js2-mode (20170504))) "Real support for JSX" single ((:commit . "89358fd230878a19e3232a3e4ce21b7fb608faae") (:keywords "languages") (:authors ("Felipe Ochoa" . "felipe@fov.space")) (:maintainer "Felipe Ochoa" . "felipe@fov.space") (:url . "https://github.com/felipeochoa/rjsx-mode/"))]) (riscv-mode . [(20170804 1521) ((emacs (24 4))) "Major-mode for RISC V assembly" single ((:commit . "99febf97d1fa9441e8dada94fe30c2aa439c9749") (:keywords "riscv" "assembly") (:authors ("Adam Niederer <https://github.com/AdamNiederer>")) (:maintainer "Adam Niederer") (:url . "https://github.com/AdamNiederer/riscv-mode"))]) (ripgrep . [(20180323 1620) nil "Front-end for ripgrep, a command line search tool" single ((:commit . "93eca9138f6d6eea1af92f476c797ce19fa573d9") (:keywords "ripgrep" "ack" "pt" "ag" "sift" "grep" "search") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/ripgrep.el"))]) (rings . [(20160531 2027) nil "Buffer rings. Like tabs, but better." single ((:commit . "3590b222eb80652cbd27866f066bd3571d86edfc") (:keywords "utilities" "productivity") (:authors ("Konrad Scorciapino")) (:maintainer "Konrad Scorciapino") (:url . "http://github.com/konr/rings"))]) (rinari . [(20150709 640) ((ruby-mode (1 0)) (inf-ruby (2 2 5)) (ruby-compilation (0 16)) (jump (2 0))) "Rinari Is Not A Rails IDE" single ((:commit . "134438af8fbdfa9c8077267c768d273a9792b484") (:keywords "ruby" "rails" "project" "convenience" "web") (:authors ("Phil Hagelberg, Eric Schulte, Steve Purcell")) (:maintainer "Phil Hagelberg, Eric Schulte, Steve Purcell") (:url . "https://github.com/eschulte/rinari"))]) (rimero-theme . [(20180901 1348) ((emacs (24))) "Theme with a dark background suitable for UI and terminal usage." single ((:commit . "a2e706c2b34f749019979a133f08a2d94a1104b3") (:keywords "faces" "theme" "dark" "light colors") (:authors ("Yves Zoundi" . "yveszoundi@users.sf.net")) (:maintainer "Yves Zoundi" . "yveszoundi@users.sf.net") (:url . "https://github.com/yveszoundi/emacs-rimero-theme"))]) (rigid-tabs . [(20170903 1559) ((emacs (24 3))) "Fix TAB alignment in diff buffers" single ((:commit . "eba84ceaba2e57e76ad2dfbb7a7154238a25d956") (:keywords "diff" "whitespace" "version control" "magit") (:authors ("Yuri D'Elia" . "wavexx@thregr.org")) (:maintainer "Yuri D'Elia" . "wavexx@thregr.org") (:url . "https://github.com/wavexx/rigid-tabs.el"))]) (rich-minority . [(20170813 1322) ((cl-lib (0 5))) "Clean-up and Beautify the list of minor-modes." single ((:commit . "a50d9b2fd059f6a0e5b22063a5375851a087f61a") (:keywords "mode-line" "faces") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "https://github.com/Malabarba/rich-minority"))]) (rib-mode . [(20170726 1448) ((emacs (24))) "RenderMan® Interface Bytestream (RIB) Major Mode" single ((:commit . "97470158784c3c212e22e2c20b8471ee65ba59af") (:authors ("Remik Ziemlinski and Daniel Blezek" . "daniel.blezek@gmail.com")) (:maintainer "Remik Ziemlinski and Daniel Blezek" . "daniel.blezek@gmail.com") (:url . "https://github.com/blezek/rib-mode"))]) (rhtml-mode . [(20130422 1311) nil "major mode for editing RHTML files" tar ((:commit . "a6d71b38a3db867ccf82999c99805db1a3a33c33"))]) (rg . [(20181023 634) ((cl-lib (0 5)) (emacs (24 4)) (s (1 10 0)) (wgrep (2 1 10))) "A search tool based on ripgrep." tar ((:commit . "f6271b51915d2cffb041a58d1694d2319208e3a7") (:keywords "matching" "tools") (:authors ("David Landell" . "david.landell@sunnyhill.email") ("Roland McGrath" . "roland@gnu.org")) (:maintainer "David Landell" . "david.landell@sunnyhill.email") (:url . "https://github.com/dajva/rg.el"))]) (reykjavik-theme . [(20180823 1544) ((emacs (24))) "Theme with a dark background." single ((:commit . "2cd0043ae6d046f812a95bb26398ea23141beccc") (:authors ("martin haesler")) (:maintainer "martin haesler"))]) (review-mode . [(20180312 1235) nil "major mode for ReVIEW" single ((:commit . "bf38b0ce8be2eef1cf810ac6f3664d2190bb9ef7") (:authors ("Kenshi Muto" . "kmuto@debian.org")) (:maintainer "Kenshi Muto" . "kmuto@debian.org") (:url . "https://github.com/kmuto/review-el"))]) (reverse-theme . [(20141205 145) nil "Reverse theme for Emacs" single ((:commit . "8319d0d5342890a3530ffa4daafdb7c35feda1ca") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-reverse-theme"))]) (reverse-im . [(20180213 1325) ((emacs (24 4))) "Reverse mapping for keyboard layouts other than english." single ((:commit . "16931909115a922b1cf3846b1f60509b6590001f") (:keywords "input" "method") (:url . "https://github.com/a13/reverse-im.el"))]) (reveal-in-osx-finder . [(20150802 1657) nil "Reveal file associated with buffer in OS X Finder" single ((:commit . "5710e5936e47139a610ec9a06899f72e77ddc7bc") (:keywords "os x" "finder") (:authors ("Kazuki YOSHIDA")) (:maintainer "Kazuki YOSHIDA") (:url . "https://github.com/kaz-yos/reveal-in-osx-finder"))]) (restclient-test . [(20180106 2046) ((emacs (24 4)) (restclient (0))) "Run tests with restclient.el" single ((:commit . "4518561bc9661fedacb6fb352e9677207f45c418") (:authors ("Simen Heggestøyl" . "simenheg@gmail.com")) (:maintainer "Simen Heggestøyl" . "simenheg@gmail.com") (:url . "https://github.com/simenheg/restclient-test.el"))]) (restclient-helm . [(20170314 1554) ((restclient (0)) (helm (1 9 4))) "helm interface for restclient.el" single ((:commit . "859d944796ce298b5779d9d256bd8d271d57e221") (:keywords "http" "helm") (:authors ("Pavel Kurnosov" . "pashky@gmail.com")) (:maintainer "Pavel Kurnosov" . "pashky@gmail.com"))]) (restclient . [(20180316 1551) nil "An interactive HTTP client for Emacs" single ((:commit . "859d944796ce298b5779d9d256bd8d271d57e221") (:keywords "http") (:authors ("Pavel Kurnosov" . "pashky@gmail.com")) (:maintainer "Pavel Kurnosov" . "pashky@gmail.com"))]) (restart-emacs . [(20180601 1031) nil "Restart emacs from within emacs" single ((:commit . "9aa90d3df9e08bc420e1c9845ee3ff568e911bd9") (:keywords "convenience") (:authors ("Iqbal Ansari" . "iqbalansari02@yahoo.com")) (:maintainer "Iqbal Ansari" . "iqbalansari02@yahoo.com") (:url . "https://github.com/iqbalansari/restart-emacs"))]) (resize-window . [(20180918 538) ((emacs (24)) (cl-lib (0 5))) "easily resize windows" single ((:commit . "72018aa4d2401b60120588199d4cedd0dc1fbcfb") (:keywords "window" "resize") (:authors ("Dan Sutton " . "danielsutton01@gmail.com")) (:maintainer "Dan Sutton " . "danielsutton01@gmail.com") (:url . "https://github.com/dpsutton/resize-mode"))]) (requirejs-mode . [(20130215 2104) nil "Improved AMD module management" single ((:commit . "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92") (:keywords "javascript" "amd" "requirejs") (:authors ("Marc-Olivier Ricard" . "marco.ricard@gmail.com")) (:maintainer "Marc-Olivier Ricard" . "marco.ricard@gmail.com"))]) (requirejs . [(20151204 719) ((js2-mode (20150713)) (popup (0 5 3)) (s (1 9 0)) (cl-lib (0 5)) (yasnippet (20151011 1823))) "Requirejs import manipulation and source traversal." tar ((:commit . "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1") (:keywords "javascript" "requirejs") (:authors ("Joe Heyming" . "joeheyming@gmail.com")) (:maintainer "Joe Heyming" . "joeheyming@gmail.com") (:url . "https://github.com/joeheyming/requirejs-emacs"))]) (request-deferred . [(20160419 2305) ((deferred (0 3 1)) (request (0 2 0))) "Wrap request.el by deferred" single ((:commit . "a3d080e57eb8be606fbf39d1baff94e1b16e1fb8") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>"))]) (request . [(20170201 147) ((emacs (24 4))) "Compatible layer for URL request in Emacs" single ((:commit . "a3d080e57eb8be606fbf39d1baff94e1b16e1fb8") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>"))]) (req-package . [(20180122 500) ((use-package (1 0)) (dash (2 7 0)) (log4e (0 2 0)) (ht (0))) "A use-package wrapper for package runtime dependencies management" tar ((:commit . "0c0ac7451149dac6bfda2adfe959d1df1c273de6") (:keywords "dotemacs" "startup" "speed" "config" "package") (:authors ("Edward Knyshov" . "edvorg@gmail.com")) (:maintainer "Edward Knyshov" . "edvorg@gmail.com") (:url . "https://github.com/edvorg/req-package"))]) (repo . [(20170213 939) ((emacs (24 3))) "Running repo from Emacs" single ((:commit . "d7b87cd515bad8a67d3a892a46a23f5fe81e08de") (:keywords "convenience") (:authors ("Damien Merenne")) (:maintainer "Damien Merenne") (:url . "https://github.com/canatella/repo-el"))]) (replace-with-inflections . [(20180831 635) ((cl-lib (0 5)) (string-inflection (1 0 10)) (inflections (1 1))) "Inflection aware `query-replace'" single ((:commit . "d9201e047856492f282da65459b28aba25998dbb") (:keywords "matching") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/replace-with-inflections.el"))]) (replace-symbol . [(20160518 12) nil "Rename symbols in expressions or buffers" single ((:commit . "baf949e528aee1881f455f9c84e67718bedcb3f6") (:authors ("Brian Mastenbrook" . "brian@mastenbrook.net")) (:maintainer "Brian Mastenbrook" . "brian@mastenbrook.net") (:url . "https://github.com/bmastenbrook/replace-symbol-el"))]) (replace-pairs . [(20160207 1251) ((emacs (24 4))) "Query-replace pairs of things" single ((:commit . "acfb254dddffcee4250092fab9394ef2b42ffbc0") (:authors ("David Shepherd" . "davidshepherd7@gmail.com")) (:maintainer "David Shepherd" . "davidshepherd7@gmail.com") (:url . "https://github.com/davidshepherd7/replace-pairs"))]) (replace-from-region . [(20170227 2316) nil "Replace commands whose query is from region" single ((:commit . "dc9318b9b2822da7b00ecc34d1dc965c8f96c9bb") (:keywords "replace" "search" "region") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/emacs/download/replace-from-region.el"))]) (repl-toggle . [(20180501 1028) ((fullframe (0 0 5))) "Switch to/from repl buffer for current major-mode" single ((:commit . "484739e20bdc0e879cef647a1f5f89e8ab92c9b6") (:keywords "repl" "buffers" "toggle") (:authors ("Tom Regner" . "tom@goochesa.de")) (:maintainer "Tom Regner" . "tom@goochesa.de"))]) (repeater . [(20180418 1212) ((emacs (24 4))) "Repeat recent repeated commands" single ((:commit . "854b874542b186b2408cbc58ad0591fe8eb70b6c") (:keywords "convenience") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/repeater"))]) (repeatable-motion . [(20170620 1848) ((emacs (24))) "Make repeatable versions of motions" tar ((:commit . "f29effdc4121c2dc7e3fec9b3a62debce29cda9d") (:keywords "motion" "repeatable") (:authors ("William Hatch" . "willghatch@gmail.com")) (:maintainer "William Hatch" . "willghatch@gmail.com") (:url . "https://github.com/willghatch/emacs-repeatable-motion"))]) (renpy . [(20180907 1934) nil "silly walks for Renpy" single ((:commit . "cf9c9ead6084210a4c0290a0d999a099b8d00a81") (:keywords "languages") (:authors ("PyTom" . "pytom@bishoujo.us")) (:maintainer "Dave Love" . "fx@gnu.org") (:url . "https://github.com/billywade/renpy-mode"))]) (remember-last-theme . [(20170619 2133) ((emacs (24 4))) "Remember the last used theme between sessions." single ((:commit . "0973f1aa6b96355fa376fffe8b45733b6e963c51") (:keywords "convenience" "faces") (:authors ("Anler Hernández Peral" . "inbox+emacs@anler.me")) (:maintainer "Anler Hernández Peral" . "inbox+emacs@anler.me") (:url . "https://github.com/anler/remember-last-theme"))]) (remark-mode . [(20171218 756) ((emacs (25 1)) (markdown-mode (2 0))) "Major mode for the remark slideshow tool" tar ((:commit . "e8a95f25d865d6165a7fdb1cadf5e6f0bb5ee73b") (:keywords "remark" "slideshow" "markdown" "hot reload") (:authors ("@torgeir")) (:maintainer "@torgeir"))]) (relax . [(20131029 2134) ((json (1 2))) "For browsing and interacting with CouchDB" single ((:commit . "6e33892623ab87833082262321dc8e1977209626") (:keywords "database" "http") (:authors ("Phil Hagelberg")) (:maintainer "Phil Hagelberg") (:url . "http://github.com/technomancy/relax.el"))]) (relative-buffers . [(20160221 1923) ((cl-lib (0 5)) (dash (2 6 0)) (s (1 9 0)) (f (0 16 2))) "Emacs buffers naming convention" single ((:commit . "2547475084244d266b507e563c9b4034705cfeca") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/relative-buffers"))]) (related . [(20161003 610) ((cl-lib (0 5))) "Switch back and forth between similarly named buffers." single ((:commit . "0065a2e16eeaa9bface49f7f0815b9cf9719f441") (:keywords "file" "buffer" "switch" "selection" "matching" "convenience") (:authors ("Julien Montmartin")) (:maintainer "Julien Montmartin") (:url . "https://bitbucket.org/lyude/related/raw/master/related.el"))]) (register-channel . [(20180926 2349) nil "Jump around fast using registers" single ((:commit . "9272923757402d177a0b2deab1d9c3c74601c48e") (:keywords "convenience") (:authors ("Yang Zhao" . "YangZhao11@users.noreply.github.com")) (:maintainer "Yang Zhao" . "YangZhao11@users.noreply.github.com"))]) (region-state . [(20151128 1038) nil "Show the number of chars/lines or rows/columns in the region" single ((:commit . "07ffb7d9ada2fcd204f3447f078c265d25f36f60") (:keywords "convenience") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/region-state.el"))]) (region-convert . [(20161119 259) nil "Convert string in region by Lisp function" single ((:commit . "2f8195fb81b8d27aeb42bdc4055ebce37c09717b") (:keywords "region" "convenience") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/right-click-context"))]) (region-bindings-mode . [(20140407 2214) nil "Enable custom bindings when mark is active." single ((:commit . "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc") (:keywords "convenience") (:authors ("Fabián E. Gallina" . "fabian@anue.biz")) (:maintainer "Fabián E. Gallina" . "fabian@anue.biz") (:url . "https://github.com/fgallina/region-bindings-mode"))]) (regex-tool . [(20170104 1918) nil "A regular expression evaluation tool for programmers" single ((:commit . "0b4a0111143c88ef94bec56624cb2e00c1a054e6") (:keywords "regex" "languages" "programming" "development") (:authors ("John Wiegley" . "johnw@newartisans.com")) (:maintainer "John Wiegley" . "johnw@newartisans.com") (:url . "http://www.newartisans.com/"))]) (regex-dsl . [(20100124 1028) nil "lisp syntax for regexps" single ((:commit . "ac89ab8b7691a165ef3007cb84417125cfc0632e") (:authors ("Aliaksey Kandratsenka" . "alk@tut.by")) (:maintainer "Aliaksey Kandratsenka" . "alk@tut.by"))]) (refine . [(20180315 2228) ((emacs (24 3)) (s (1 11 0)) (dash (2 12 0)) (list-utils (0 4 4)) (loop (1 2))) "interactive value editing" single ((:commit . "0a99439a0b4ed6f79b9a240ea1270140a9e328bc") (:keywords "convenience") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (redtt . [(20181121 21) ((emacs (25 3))) "Major mode for editing redtt proofs" single ((:commit . "c95d1a0787fb92eb011df690b4bdc1029a611c0b") (:keywords "languages") (:authors ("Jonathan Sterling" . "jon@jonmsterling.com")) (:maintainer "Jonathan Sterling" . "jon@jonmsterling.com") (:url . "http://github.com/RedPRL/redtt"))]) (redtick . [(20180424 2136) ((emacs (24 4))) "Smallest pomodoro timer (1 char)" tar ((:commit . "94b4cd43ac20c64dcac96edac2c1a3b9fcc59bb9") (:keywords "calendar") (:authors ("F. Febles")) (:maintainer "F. Febles") (:url . "http://github.com/ferfebles/redtick"))]) (redshank . [(20180730 407) ((paredit (21))) "Common Lisp Editing Extensions" tar ((:commit . "d059c5841044aa163664f8bf87c1d981bf0a04fe") (:keywords "languages" "lisp") (:authors ("Michael Weber" . "michaelw@foldr.org")) (:maintainer "Michael Weber" . "michaelw@foldr.org"))]) (redprl . [(20180418 1434) ((emacs (24 3))) "Major mode for editing RedPRL proofs and interacting with RedPRL" single ((:commit . "4b13acd64cf523442f87337f7c41261e1dfd37dd") (:keywords "languages") (:authors ("Jonathan Sterling" . "jon@jonmsterling.com")) (:maintainer "Jonathan Sterling" . "jon@jonmsterling.com"))]) (redpen-paragraph . [(20160625 1050) ((emacs (24)) (cl-lib (0 5)) (json (1 4))) "RedPen interface." single ((:commit . "770ffb34b04bfa0ea8484fa1506e96c530168e13") (:keywords "document" "proofreading" "help") (:authors ("karronoli")) (:maintainer "karronoli") (:url . "https://github.com/karronoli/redpen-paragraph.el"))]) (redis . [(20150531 1948) ((emacs (24)) (cl-lib (0 5))) "Redis integration" single ((:commit . "2c33f3397bc14e7a8192867b55920492d4eead8c") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/redis.el"))]) (recursive-narrow . [(20180917 449) nil "narrow-to-region that operates recursively" single ((:commit . "94f5c16a81ecf85c7442ebc8cd04ba7553ab5244") (:authors ("Nathaniel Flath" . "flat0103@gmail.com")) (:maintainer "Nathaniel Flath" . "flat0103@gmail.com") (:url . "http://github.com/nflath/recursive-narrow"))]) (rectangle-utils . [(20160915 408) ((emacs (24)) (cl-lib (0 5))) "Some useful rectangle functions." single ((:commit . "6fe38fdd48ef5305a908b94a043a966ac3f2053a") (:authors ("Thierry Volpiatto" . "thierry.volpiatto@gmail.com")) (:maintainer "Thierry Volpiatto" . "thierry.volpiatto@gmail.com") (:url . "https://github.com/thierryvolpiatto/rectangle-utils"))]) (rect+ . [(20150621 44) nil "Extensions to rect.el" single ((:commit . "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc") (:keywords "extensions" "data" "tools") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-rectplus"))]) (recover-buffers . [(20171009 437) nil "revisit all buffers from an auto-save file" tar ((:commit . "81a5cb53099955ebc2a411a44cba5a394ee3f2d1") (:authors ("era eriksson <http://www.iki.fi/era>")) (:maintainer "era eriksson <http://www.iki.fi/era>"))]) (recompile-on-save . [(20151126 1446) ((dash (1 1 0)) (cl-lib (0 5))) "Trigger recompilation on file save." single ((:commit . "92e11446869d878803d4f3dec5d2101380c12bb2") (:keywords "convenience" "files" "processes" "tools") (:authors ("Marian Schubert" . "marian.schubert@gmail.com")) (:maintainer "Marian Schubert" . "marian.schubert@gmail.com") (:url . "https://github.com/maio/recompile-on-save.el"))]) (recentf-remove-sudo-tramp-prefix . [(20180205 556) ((emacs (24 4))) "Normalise recentf history" single ((:commit . "6d23ebc3f52b0a66236c171c45cc77a4d3aba541") (:authors ("ncaq" . "ncaq@ncaq.net")) (:maintainer "ncaq" . "ncaq@ncaq.net") (:url . "https://github.com/ncaq/recentf-remove-sudo-tramp-prefix"))]) (recentf-ext . [(20170926 35) nil "Recentf extensions" single ((:commit . "450de5f8544ed6414e88d4924d7daa5caa55b7fe") (:keywords "convenience" "files") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/recentf-ext.el"))]) (rebox2 . [(20121113 1300) nil "Handling of comment boxes in various styles." single ((:commit . "00634eca420cc48657b81e40e599ff8548083985") (:authors ("François Pinard") ("Le Wang")) (:maintainer "Le Wang (lewang.emacs!!!gmayo.com remove exclamations, correct host, hint: google mail)") (:url . "https://github.com/lewang/rebox2"))]) (rebecca-theme . [(20180324 821) ((emacs (24))) "Rebecca Purple Theme" single ((:commit . "9ac0c71c2858b76dc5499f62c7c7fb7f9e8f16bc") (:keywords "theme" "dark") (:authors ("vic" . "vborja@apache.org")) (:maintainer "vic" . "vborja@apache.org") (:url . "https://github.com/vic/rebecca-theme"))]) (reazon . [(20180921 1437) ((emacs (26))) "miniKanren for Emacs" tar ((:commit . "020be6467a83957adcbdcb192b61f2c76a94079b") (:keywords "languages" "extensions" "lisp") (:authors ("Nick Drozd" . "nicholasdrozd@gmail.com")) (:maintainer "Nick Drozd" . "nicholasdrozd@gmail.com") (:url . "https://github.com/nickdrozd/reazon"))]) (reason-mode . [(20180727 1858) ((emacs (24 3))) "A major mode for editing ReasonML" tar ((:commit . "0ab99a03b2e47523e86d1e94ccc085e176b987df") (:keywords "languages" "ocaml") (:authors ("Mozilla")) (:maintainer "Mozilla") (:url . "https://github.com/reasonml-editor/reason-mode"))]) (realgud-rdb2 . [(20160303 843) ((realgud (1 3))) "realgud front-end for interacting with Ruby debugger2" tar ((:commit . "b394bee61e75b7c6a5fa565594aa79b74887f5df") (:authors ("Rocky Bernstein")) (:maintainer "Rocky Bernstein") (:url . "http://github.com/rocky/realgud-ruby-debugger2"))]) (realgud-pry . [(20160805 1445) ((realgud (1 4 3)) (cl-lib (0 5)) (emacs (24))) "realgud front-end to the Ruby pry debugger" tar ((:commit . "9b3834048fcbc16827c55af38f8cfef0cf6533da") (:authors ("Rocky Bernstein")) (:maintainer "Rocky Bernstein") (:url . "http://github.com/rocky/realgud-pry"))]) (realgud-old-debuggers . [(20170316 731) ((realgud (1 4 3)) (cl-lib (0 5)) (emacs (24))) "realgud front-end to older lesser-used debuggers" tar ((:commit . "1e1d573a6ba731afbe68c1309a316457ca3fbb94") (:authors ("Rocky Bernstein")) (:maintainer "Rocky Bernstein") (:url . "http://github.com/rocky/realgud-old-debuggers"))]) (realgud-byebug . [(20180309 323) ((realgud (1 4 3)) (cl-lib (0 5)) (emacs (24))) "realgud front-end to the Ruby byebug debugger" tar ((:commit . "de603d58aa9ef72a2619247a0234fccf6bc2cc9a") (:authors ("Rocky Bernstein")) (:maintainer "Rocky Bernstein") (:url . "http://github.com/rocky/realgud-byebug"))]) (realgud . [(20180925 10) ((load-relative (1 2)) (loc-changes (1 2)) (test-simple (1 2 0)) (cl-lib (0 5)) (emacs (24))) "A modular front-end for interacting with external debuggers" tar ((:commit . "36782d69c806079eb067705ef67fcb3b9299ae01") (:keywords "gdb" "python" "perl" "go" "bash" "nodejs" "zsh" "bashdb" "zshdb" "remake" "make" "trepan" "perldb" "pdb") (:authors ("Rocky Bernstein" . "rocky@gnu.org")) (:maintainer "Rocky Bernstein" . "rocky@gnu.org") (:url . "http://github.com/realgud/realgud/"))]) (real-auto-save . [(20180803 447) nil "Automatically save your all your buffers/files at regular intervals." single ((:commit . "b4f83f1e7e921e4cb762c7f525c209ff385742d8") (:authors ("Chaoji Li <lichaoji AT gmail DOT com>") ("Anand Reddy Pandikunta <anand21nanda AT gmail DOT com>")) (:maintainer "Chaoji Li <lichaoji AT gmail DOT com>"))]) (readline-complete . [(20150708 1437) nil "offers completions in shell mode" single ((:commit . "30c020c37b2741160cc37e656e13c85d826a0ebf") (:authors ("Christopher Monsanto" . "chris@monsan.to")) (:maintainer "Christopher Monsanto" . "chris@monsan.to"))]) (readability . [(20140716 27) ((oauth (1 4)) (ov (1 0)) (emacs (24 3))) "Read articles from Readability in Emacs" single ((:commit . "6c220ab8e0ca63946574ed892add5c8fd14002ce") (:keywords "readability" "oauth") (:authors ("Shingo Fukuyama - http://fukuyama.co")) (:maintainer "Shingo Fukuyama - http://fukuyama.co") (:url . "https://github.com/ShingoFukuyama/emacs-readability"))]) (read-aloud . [(20160923 500) ((emacs (24 4))) "A simple interface to TTS engines" single ((:commit . "c662366226abfb07204ab442b4f853ed85438d8a") (:keywords "multimedia") (:authors ("Alexander Gromnitsky" . "alexander.gromnitsky@gmail.com")) (:maintainer "Alexander Gromnitsky" . "alexander.gromnitsky@gmail.com") (:url . "https://github.com/gromnitsky/read-aloud.el"))]) (react-snippets . [(20181002 1046) ((yasnippet (0 7 0))) "Yasnippets for React" tar ((:commit . "87ccb640d265fe799583ab55605b84d113223694"))]) (rdxmk . [(20170630 134) nil "A small set of tools for redox developments" tar ((:commit . "e78749fb29738365ffa4d863ffabeb969ebb0bcf") (:keywords "redox" "convenience" "tools") (:authors ("Jacob Salzberg" . "jsalzbergedu@yahoo.com")) (:maintainer "Jacob Salzberg" . "jsalzbergedu@yahoo.com") (:url . "https://github.com/jsalzbergedu/rdxmk"))]) (rdp . [(20120929 154) nil "Recursive Descent Parser library" single ((:commit . "b620192afada04aec33b38cc130fef0765f41ca9") (:authors ("Christopher Wellons" . "mosquitopsu@gmail.com")) (:maintainer "Christopher Wellons" . "mosquitopsu@gmail.com") (:url . "https://github.com/skeeto/rdp"))]) (rdf-prefix . [(20180127 1806) nil "Prefix lookup for RDF" single ((:commit . "164136d05505275d42d1ca3a390f55fcc89694b8") (:keywords "convenience" "abbrev") (:authors ("Simen Heggestøyl" . "simenheg@gmail.com")) (:maintainer "Simen Heggestøyl" . "simenheg@gmail.com") (:url . "https://github.com/simenheg/rdf-prefix"))]) (rcirc-styles . [(20160207 250) ((cl-lib (0 5))) "support mIRC-style color and attribute codes" single ((:commit . "f313bf6a7470bed314b27c7a40558cb787d7bc67"))]) (rcirc-notify . [(20150219 2204) nil "libnotify popups" single ((:commit . "841a7b5a6cdb0c11a812df924d2c6a7d364fd455") (:keywords "lisp" "rcirc" "irc" "notify" "growl") (:authors ("Will Farrington, Alex Schroeder <alex@gnu.org>, Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk"))]) (rcirc-groups . [(20170731 2101) nil "an emacs buffer in rcirc-groups major mode" single ((:commit . "b68ece9d219b909244d4e3c0d8bf6a746d6fead7") (:keywords "comm" "convenience") (:authors ("Dimitri Fontaine" . "dim@tapoueh.org")) (:maintainer "Dimitri Fontaine" . "dim@tapoueh.org") (:url . "http://tapoueh.org/emacs/rcirc-groups.html"))]) (rcirc-alertify . [(20140407 119) ((alert (20140406 1353))) "Cross platform notifications for rcirc" single ((:commit . "ea5cafc55893f375eccbe013d12dbaa94bf6e259") (:keywords "comm" "convenience") (:authors ("Fabián Ezequiel Gallina" . "fgallina@gnu.org")) (:maintainer "Fabián Ezequiel Gallina" . "fgallina@gnu.org"))]) (rcirc-alert . [(20141127 1047) nil "Configurable alert messages on top of RCIRC" tar ((:commit . "0adf8ff9c47023fec578f678424be62b0f49057f") (:keywords "lisp" "rcirc" "irc" "alert" "awesome") (:maintainer "Cayetano Santos"))]) (rc-mode . [(20160913 1918) nil "Major mode for the Plan9 rc shell" single ((:commit . "fe2e0570bf9c19a292e16b18fd4b0a256df5d93f") (:keywords "rc" "plan9" "shell") (:authors ("Jordan Brown")) (:maintainer "Jordan Brown") (:url . "https://github.com/mrhmouse/rc-mode.el"))]) (rbt . [(20170202 2302) ((popup (0 5 3)) (magit (20160128 1201))) "Integrate reviewboard with emacs." single ((:commit . "32bfba9062a014e375451cf4203c29535b5efc1e") (:keywords "reviewboard" "rbt") (:authors ("Joe Heyming" . "joeheyming@gmail.com")) (:maintainer "Joe Heyming" . "joeheyming@gmail.com"))]) (rbenv . [(20141120 749) nil "Emacs integration for rbenv" single ((:commit . "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1") (:keywords "ruby" "rbenv") (:authors ("Yves Senn" . "yves.senn@gmail.com")) (:maintainer "Yves Senn" . "yves.senn@gmail.com") (:url . "https://github.com/senny/rbenv.el"))]) (rats . [(20170818 1013) ((s (1 10 0)) (go-mode (1 3 1)) (cl-lib (0 5))) "Rapid testing suite for Go" single ((:commit . "a6d55aebcc54f669c6c6ffedf84364c4097903cc") (:keywords "go") (:authors ("Antoine Kalmbach" . "ane@iki.fi")) (:maintainer "Antoine Kalmbach" . "ane@iki.fi"))]) (rase . [(20120928 2045) nil "Run At Sun Event daemon" single ((:commit . "59b5f7e8102570b65040e8d55781c7ea28de7338") (:keywords "solar" "sunrise" "sunset" "midday" "midnight") (:authors ("Andrey Kotlarski" . "m00naticus@gmail.com")) (:maintainer "Andrey Kotlarski" . "m00naticus@gmail.com") (:url . "https://github.com/m00natic/rase/"))]) (ranger . [(20170817 1557) ((emacs (24 4))) "Make dired more like ranger" single ((:commit . "6bbff5df2e55f56047fca5058d9ca93ba4963aef") (:keywords "files" "convenience" "dired") (:authors ("Rich Alesi <https://github.com/ralesi>")) (:maintainer "Rich Alesi <https://github.com/ralesi>") (:url . "https://github.com/ralesi/ranger"))]) (random-splash-image . [(20151003 130) nil "Randomly sets splash image to *GNU Emacs* buffer on startup." single ((:commit . "53a39ebfd8ac6be066a652a508a717870f94218a") (:keywords "games") (:authors ("kakakaya <kakakaya AT gmail.com>")) (:maintainer "kakakaya <kakakaya AT gmail.com>") (:url . "https://github.com/kakakaya/random-splash-image"))]) (rand-theme . [(20151219 2335) ((cl-lib (0 5))) "Random Emacs theme at start-up!" single ((:commit . "65a00e5c5150f857aa96803b68f50bc8da0215b7") (:authors ("Daniel Gopar")) (:maintainer "Daniel Gopar") (:url . "https://github.com/gopar/rand-theme"))]) (rally-mode . [(20161114 354) ((popwin (1 0 0))) "a mode to interact with the Rally Software web site." single ((:commit . "0f5e09a6abe2de7613f174b4f54863df93343134") (:keywords "rally" "ca" "agile") (:authors ("Sean LeBlanc" . "seanleblanc@gmail.com")) (:maintainer "Sean LeBlanc" . "seanleblanc@gmail.com") (:url . "https://pragcraft.wordpress.com/"))]) (rake . [(20180212 1008) ((f (0 13 0)) (dash (1 5 0)) (cl-lib (0 5))) "Run rake commands" single ((:commit . "9c204334b03b4e899fadae6e59c20cf105404128") (:keywords "rake" "ruby") (:authors ("Adam Sokolnicki" . "adam.sokolnicki@gmail.com")) (:maintainer "Adam Sokolnicki" . "adam.sokolnicki@gmail.com") (:url . "https://github.com/asok/rake.el"))]) (rainbow-identifiers . [(20141102 1526) ((emacs (24))) "Highlight identifiers according to their names" single ((:commit . "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/rainbow-identifiers"))]) (rainbow-delimiters . [(20170929 1132) nil "Highlight brackets according to their depth" single ((:commit . "19b93892afa0494ba749c2ca9c154e04447ad778") (:keywords "faces" "convenience" "lisp" "tools") (:authors ("Jeremy Rayman" . "opensource@jeremyrayman.com") ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/rainbow-delimiters"))]) (rainbow-blocks . [(20171025 1438) nil "Block syntax highlighting for lisp code" single ((:commit . "dd435d7bb34ff6f162a5f315df308b90b7e9f842") (:authors ("istib")) (:maintainer "istib") (:url . "https://github.com/istib/rainbow-blocks"))]) (railscasts-theme . [(20150219 1525) nil "Railscasts color theme for GNU Emacs." single ((:commit . "1340c3f6c2717761cab95617cf8dcbd962b1095b") (:keywords "railscasts" "color" "theme") (:authors ("Oleg Shaldybin")) (:maintainer "Oleg Shaldybin") (:url . "https://github.com/mikenichols/railscasts-theme"))]) (railscasts-reloaded-theme . [(20181030 750) nil "Railscasts Reloaded color theme" single ((:commit . "ae77bc04fe5a948f418ec8693f6ff2c9ea757c50") (:authors ("George Thomas" . "iamgeorgethomas@gmail.com")) (:maintainer "George Thomas" . "iamgeorgethomas@gmail.com") (:url . "https://github.com/thegeorgeous/railscasts-reloaded-theme"))]) (rails-log-mode . [(20140408 425) nil "Major mode for viewing Rails log files" single ((:commit . "ff440003ad7d47cb0ac3300f2a632f4cfd36a446") (:keywords "rails" "log") (:authors ("Anantha kumaran" . "ananthakumaran@gmail.com")) (:maintainer "Anantha kumaran" . "ananthakumaran@gmail.com"))]) (racket-mode . [(20181117 229) ((emacs (24 3)) (faceup (0 0 2)) (s (1 9 0))) "Major mode for Racket language." tar ((:commit . "dd51668ad9d5293c5eb57f37bbc4c25a201ba467") (:authors ("Greg Hendershott")) (:maintainer "Greg Hendershott") (:url . "https://github.com/greghendershott/racket-mode"))]) (racer . [(20181023 2304) ((emacs (24 3)) (rust-mode (0 2 0)) (dash (2 13 0)) (s (1 10 0)) (f (0 18 2)) (pos-tip (0 4 6))) "code completion, goto-definition and docs browsing for Rust via racer" single ((:commit . "bf8f76f17c64eff2d6ca6029ee0ab7a466590128") (:keywords "abbrev" "convenience" "matching" "rust" "tools") (:authors ("Phil Dawes")) (:maintainer "Phil Dawes") (:url . "https://github.com/racer-rust/emacs-racer"))]) (r-autoyas . [(20140101 1510) ((ess (0)) (yasnippet (0 8 0))) "Provides automatically created yasnippets for R function argument lists." tar ((:commit . "b4020ee7f5f895e0065b8b26da8a49c51432d530") (:keywords "r" "yasnippet") (:authors ("Sven Hartenstein & Matthew Fidler")) (:maintainer "Matthew Fidler") (:url . "https://github.com/mlf176f2/r-autoyas.el"))]) (quiz . [(20170818 1115) ((cl-lib (0 5)) (emacs (25))) "Multiple choice quiz game" single ((:commit . "c43151212ead2330e7ec8e5ac6914c617a12e4f8") (:keywords "games" "trivia" "quiz") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/quiz.el"))]) (quiet . [(20160508 1256) nil "disconnect from the online world for a while" single ((:commit . "6f20309f99e26fcae2601d1544b342f044e54baf") (:keywords "quiet" "distraction" "network" "detachment" "offline") (:authors ("nik gaffney" . "nik@fo.am")) (:maintainer "nik gaffney" . "nik@fo.am") (:url . "https://github.com/zzkt/quiet"))]) (quickrun . [(20170223 115) ((emacs (24 3))) "Run commands quickly" single ((:commit . "55bbe5d54b80206ea5a60bf2f58eb6368b2c8201") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-quickrun"))]) (quickref . [(20170817 1232) ((dash (1 0 3)) (s (1 0 0))) "Display relevant notes-to-self in the echo area" single ((:commit . "f368c8b8219bb90498c5ab84e26f00eedaa234cf") (:authors ("Kyle Hargraves")) (:maintainer "Kyle Hargraves") (:url . "https://github.com/pd/quickref.el"))]) (quick-shell-keybind . [(20171023 613) ((emacs (24))) "Interactively bind a key to shell commands" single ((:commit . "5f4541a5a5554d108bf16b5fd1713e962161ca1b") (:keywords "maint" "convenience" "processes") (:authors ("eyeinsky" . "eyeinsky9@gmail.com")) (:maintainer "eyeinsky" . "eyeinsky9@gmail.com") (:url . "https://github.com/eyeinsky/quick-shell-keybind"))]) (quick-preview . [(20150829 439) nil "quick preview using GNOME sushi, gloobus or quick look" single ((:commit . "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35") (:keywords "files" "hypermedia") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/quick-preview.el"))]) (quick-peek . [(20180525 1411) ((emacs (24 3))) "Inline quick-peek windows" single ((:commit . "3cc57cc12f4b5f27a18cc5fb0c32c3a943c16158") (:keywords "tools" "help" "doc" "convenience") (:authors ("Clément Pit-Claudel" . "clement.pitclaudel@live.com")) (:maintainer "Clément Pit-Claudel" . "clement.pitclaudel@live.com"))]) (quick-buffer-switch . [(20151007 2208) nil "Quick switch to file or dir buffers." single ((:commit . "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b") (:keywords "emacs" "configuration") (:authors ("Sebastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>")) (:maintainer "Sebastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>"))]) (quelpa-use-package . [(20180812 1029) ((emacs (24 3)) (quelpa (0)) (use-package (2))) "quelpa handler for use-package" single ((:commit . "90fc1eadf3f7ff3a3bef07d229a807aba2f7beef") (:keywords "package" "management" "elpa" "use-package") (:authors ("steckerhalter")) (:maintainer "steckerhalter") (:url . "https://framagit.org/steckerhalter/quelpa-use-package"))]) (quelpa . [(20181110 1619) ((emacs (24 3))) "Emacs Lisp packages built directly from source" tar ((:commit . "bc8070c43480fa5c3c0ad5775350e52bea7347c2") (:keywords "package" "management" "build" "source" "elpa") (:authors ("steckerhalter")) (:maintainer "steckerhalter") (:url . "https://framagit.org/steckerhalter/quelpa"))]) (quasi-monochrome-theme . [(20180516 1513) nil "Quasi Monochrome theme" tar ((:commit . "e803bc0c2e38f350feb8297a092812e5204781c7") (:keywords "color" "theme" "monochrome"))]) (quack . [(20181106 1301) nil "enhanced support for editing and running Scheme code" single ((:commit . "2146805ce2b5a9b155d73929986f11e713787e26"))]) (qt-pro-mode . [(20170604 1841) ((emacs (24))) "Qt Pro/Pri major mode" single ((:commit . "ed3b2ebe46828107c3b85e554b0a6a4dc2eeedf6") (:keywords "extensions") (:authors ("Todd Neal" . "tolchz@gmail.com")) (:maintainer "Todd Neal" . "tolchz@gmail.com"))]) (qml-mode . [(20161016 31) nil "Major mode for editing QT Declarative (QML) code." single ((:commit . "6c5f33ba88ae010bf201a80ee8095e20a724558c") (:keywords "qml" "qt" "qt declarative") (:authors ("Yen-Chin Lee" . "coldnew.tw@gmail.com")) (:maintainer "Yen-Chin Lee" . "coldnew.tw@gmail.com") (:url . "https://github.com/coldnew/qml-mode"))]) (ql . [(20180418 2020) ((emacs (24))) "Control Quod Libet" single ((:commit . "d976414ba6aa576ad524b5ee5bfa620efd072258") (:keywords "multimedia") (:authors ("Ian Eure" . "ian.eure@gmail.com")) (:maintainer "Ian Eure" . "ian.eure@gmail.com") (:url . "https://github.com/ieure/ql-el"))]) (qiita . [(20140118 844) ((helm (1 5 9)) (markdown-mode (2 0))) "Qiita API Library for emacs" single ((:commit . "93c697b97d540fd1601a13a3d9889fb939b19878") (:keywords "qiita") (:authors ("Wataru MIYAGUNI (gonngo _at_ gmail.com)")) (:maintainer "Wataru MIYAGUNI (gonngo _at_ gmail.com)") (:url . "https://github.com/gongo/qiita-el"))]) (pyvenv . [(20180831 847) nil "Python virtual environment interface" single ((:commit . "921ae2356b6a111ac0b7e44fd04cba8e95cbe936") (:keywords "python" "virtualenv" "tools") (:authors ("Jorgen Schaefer" . "contact@jorgenschaefer.de")) (:maintainer "Jorgen Schaefer" . "contact@jorgenschaefer.de") (:url . "http://github.com/jorgenschaefer/pyvenv"))]) (pythonic . [(20180920 2315) ((emacs (25)) (s (1 9)) (f (0 17 2))) "Utility functions for writing pythonic emacs package." single ((:commit . "6a5a2a365e4ea6fc5adfa96359418c437aa351c8") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/pythonic"))]) (python-x . [(20180802 1742) ((python (0 24)) (folding (0)) (cl-lib (0 5))) "python.el extras for interactive evaluation" tar ((:commit . "74d8c7eb824846de94705b1e74ee03ef109868d1") (:keywords "python" "eval" "folding") (:url . "https://github.com/wavexx/python-x.el") (:author . "Yuri D'Elia <wavexx@thregr.org>"))]) (python-test . [(20181018 29) ((emacs (25 1))) "Python testing integration" single ((:commit . "f899975b133539e19ba822e4b0bfd1a28572967e") (:keywords "convenience" "tools" "processes") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/python-test.el"))]) (python-switch-quotes . [(20161228 809) ((emacs (24 3))) "cycle between ' and \" quotes in python strings" single ((:commit . "93f1e9b40e061a6cea480139e8b1362b6404abd0") (:keywords "python" "tools" "convenience") (:authors ("Vladimir Lagunov" . "lagunov.vladimir@gmail.com")) (:maintainer "Vladimir Lagunov" . "lagunov.vladimir@gmail.com") (:url . "https://github.com/werehuman/python-switch-quotes"))]) (python-pytest . [(20180725 1146) ((emacs (24 4)) (dash (2 12 0)) (dash-functional (2 12 0)) (magit-popup (2 12 0)) (projectile (0 14 0)) (s (1 12 0))) "helpers to run pytest" single ((:commit . "09ad688df207ee9b02c990d3897a9e2841931d97") (:keywords "pytest" "test" "python" "languages" "processes" "tools") (:authors ("wouter bolsterlee" . "wouter@bolsterl.ee")) (:maintainer "wouter bolsterlee" . "wouter@bolsterl.ee") (:url . "https://github.com/wbolster/emacs-python-pytest"))]) (python-mode . [(20181110 739) nil "Python major mode" tar ((:commit . "3954afcf093f50930f9d500dfad68cbbed84a01c"))]) (python-info . [(20151228 1852) nil "Python info manual for Emacs" tar ((:commit . "306f15441b54b25757cdfd3b327b84024ea21ed7"))]) (python-environment . [(20150310 853) ((deferred (0 3 1))) "virtualenv API for Emacs Lisp" tar ((:commit . "401006584e32864a10c69d29f14414828909362e") (:keywords "applications" "tools") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>"))]) (python-docstring . [(20170508 856) nil "Smart Python docstring formatting" tar ((:commit . "d35d2e0fbe468743c19a870fec7b28a7e725790d"))]) (python-django . [(20150822 404) nil "A Jazzy package for managing Django projects" single ((:commit . "fc54ad74f0309670359b939f64d0f1fff68aeac4") (:keywords "languages") (:authors ("Fabián E. Gallina" . "fabian@anue.biz")) (:maintainer "FSF") (:url . "https://github.com/fgallina/python-django.el"))]) (python-cell . [(20181028 2140) nil "Support for MATLAB-like cells in python mode" single ((:commit . "2faa78b3f4faa12f09f9864ebd854ae7d4e95fd0") (:keywords "python" "matlab" "cell") (:authors ("Thomas Hisch" . "t.hisch@gmail.com")) (:maintainer "Thomas Hisch" . "t.hisch@gmail.com"))]) (pytest . [(20181005 1524) ((s (1 9 0))) "Easy Python test running in Emacs" single ((:commit . "1bfa7549001e61ecd59cd6eae7c6656a924d1ba4") (:keywords "pytest" "python" "testing") (:url . "https://github.com/ionrock/pytest-el"))]) (pyramid . [(20181031 1102) ((emacs (25 2)) (pythonic (0 1 1)) (tablist (0 70))) "Minor mode for working with pyramid projects" tar ((:commit . "ad207ebe31a5b027560b69e20852156a3b882c0c") (:keywords "python" "pyramid" "pylons" "convenience" "tools" "processes") (:authors ("Daniel Kraus" . "daniel@kraus.my")) (:maintainer "Daniel Kraus" . "daniel@kraus.my") (:url . "https://github.com/dakra/pyramid.el"))]) (pynt . [(20180710 726) ((emacs (24 4)) (ein (0 13 1)) (epc (0 1 1)) (deferred (0 5 1))) "Generate and scroll EIN buffers from python code" single ((:commit . "4af6a0668057986ad8d297d9152d897baf77e303") (:keywords "convenience") (:authors ("Edward Banner" . "edward.banner@gmail.com")) (:maintainer "Edward Banner" . "edward.banner@gmail.com") (:url . "https://github.com/ebanner/pynt"))]) (pylint . [(20170402 1255) nil "minor mode for running `pylint'" single ((:commit . "6e37ca37a78024dcc79ceb2431b0dfebd526f3ad") (:keywords "languages" "python") (:authors ("Ian Eure" . "ian.eure@gmail.com")) (:maintainer "Jonathan Kotta" . "jpkotta@gmail.com"))]) (pyimpsort . [(20160130 453) ((emacs (24 3))) "Sort python imports." tar ((:commit . "d5c61d70896b642646dfd3c809c06174ae086c1a") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/pyimpsort.el"))]) (pyimport . [(20180308 1752) ((dash (2 8 0)) (s (1 9 0)) (shut-up (0 3 2))) "Manage Python imports!" single ((:commit . "a6f63cf7ed93f0c0f7c207e6595813966f8852b9") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (pyim-wbdict . [(20180930 458) ((pyim (1 0))) "Some wubi dicts for pyim" tar ((:commit . "55c7eed02c3253de12c71b925b8d9ef23425b64c") (:keywords "convenience" "chinese" "pinyin" "input-method" "complete") (:authors ("Feng Shu" . "tumashu@163.com")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/pyim-wbdict"))]) (pyim-cangjie5dict . [(20170730 246) ((pyim (1 0))) "Some cangjie5 dicts for pyim" tar ((:commit . "c8618590780b818db1a67a29bc47c5d25903517a") (:keywords "convenience" "chinese" "pinyin" "input-method" "complete") (:authors ("Yuanchen Xie" . "yuanchen.gm@gmail.com")) (:maintainer "Yuanchen Xie" . "yuanchen.gm@gmail.com") (:url . "https://github.com/erstern/pyim-cangjie5dict"))]) (pyim-basedict . [(20170727 259) nil "The default pinyin dict of pyim" tar ((:commit . "3196cb210e056702c5a4ea1dac1d8e1e27740fab") (:keywords "convenience" "chinese" "pinyin" "input-method" "complete") (:authors ("Feng Shu" . "tumashu@163.com")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/pyim-basedict"))]) (pyim . [(20181109 1350) ((emacs (24 4)) (popup (0 1)) (async (1 6)) (pyim-basedict (0 1))) "A Chinese input method support quanpin, shuangpin, wubi and cangjie." tar ((:commit . "8648d467d79b3bf1c3a99623f9329939cacc40da") (:keywords "convenience" "chinese" "pinyin" "input-method") (:authors ("Ye Wenbin <wenbinye@163.com>, Feng Shu" . "tumashu@163.com")) (:maintainer "Ye Wenbin <wenbinye@163.com>, Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/pyim"))]) (pygen . [(20161121 506) ((elpy (1 12 0)) (python-mode (6 2 2)) (dash (2 13 0))) "Python code generation using Elpy and Python-mode." single ((:commit . "9019ff44ba49d7295b1476530feab91fdadb084b") (:keywords "python" "code generation") (:authors ("Jack Crawley <http://www.github.com/jackcrawley>")) (:maintainer "Jack Crawley <http://www.github.com/jackcrawley>") (:url . "https://github.com/JackCrawley/pygen/"))]) (pyfmt . [(20150521 2056) nil "Emacs interface to pyfmt" single ((:commit . "cb92be2cf0804cc53142dc5edb36f8e0ef5cec32") (:keywords "tools") (:authors ("Alexandre Héaumé" . "aheaume@gmail.com")) (:maintainer "Alexandre Héaumé" . "aheaume@gmail.com") (:url . "https://github.com/aheaume/pyfmt.el"))]) (pyenv-mode-auto . [(20180620 1252) ((pyenv-mode (0 1 0)) (s (1 11 0)) (f (0 17 0))) "Automatically activates pyenv version if .python-version file exists." single ((:commit . "b6eef88ad89865a7e0ec8bae8c6ce8239cb649c6") (:keywords "python" "pyenv") (:authors ("Sviatoslav Bulbakha" . "mail@ssbb.me")) (:maintainer "Sviatoslav Bulbakha" . "mail@ssbb.me") (:url . "https://github.com/ssbb/pyenv-mode-auto"))]) (pyenv-mode . [(20170801 2348) ((pythonic (0 1 0))) "Integrate pyenv with python-mode" single ((:commit . "eabb1c66f9e0c0500fef4d089508aad246d81dc0") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/pyenv-mode"))]) (pydoc-info . [(20110301 834) nil "Better Python support for info-lookup-symbol." tar nil]) (pydoc . [(20181025 51) nil "functional, syntax highlighted pydoc navigation" single ((:commit . "abb948e27efaf2452f339c62cd99a1c69930bbfe") (:keywords "pydoc" "python") (:authors ("John Kitchin" . "jkitchin@andrew.cmu.edu")) (:maintainer "Brian J. Lopes" . "statmobile@gmail.com") (:url . "https://github.com/statmobile/pydoc"))]) (pycoverage . [(20160325 112) ((emacs (24 3))) "Support for coverage stats on Python 2.X and 3" tar ((:commit . "4f5451f4d6e1e2ddd5878fc7d18f5fc4fc92a83d") (:keywords "project" "convenience") (:authors ("matt harrison")) (:maintainer "matt harrison") (:url . "https://github.com/mattharrison/pycoverage.el"))]) (pycarddavel . [(20150831 1216) ((helm (1 7 0)) (emacs (24 0))) "Integrate pycarddav" single ((:commit . "a6d81ee4eb8309cd82f6082aeca68c5a015702a3") (:keywords "helm" "pyccarddav" "carddav" "message" "mu4e" "contacts") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me"))]) (py-yapf . [(20160925 1122) nil "Use yapf to beautify a Python buffer" single ((:commit . "a878304202ad827a1f3de3dce1badd9ca8731146") (:authors ("Friedrich Paetzke" . "f.paetzke@gmail.com")) (:maintainer "Friedrich Paetzke" . "f.paetzke@gmail.com") (:url . "https://github.com/paetzke/py-yapf.el"))]) (py-test . [(20151117 622) ((dash (2 9 0)) (f (0 17)) (emacs (24 4))) "A test runner for Python code." single ((:commit . "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf") (:keywords "python" "testing" "py.test") (:authors ("Bogdan Paul Popa" . "popa.bogdanp@gmail.com")) (:maintainer "Bogdan Paul Popa" . "popa.bogdanp@gmail.com") (:url . "https://github.com/Bogdanp/py-test.el"))]) (py-smart-operator . [(20170531 1209) ((s (1 9 0))) "smart-operator for python-mode" single ((:commit . "0c8a66faca4b35158d0b5885472cb75286039167") (:keywords "python" "convenience" "smart-operator") (:authors ("Rustem Muslimov" . "r.muslimov@gmail.com")) (:maintainer "Rustem Muslimov" . "r.muslimov@gmail.com"))]) (py-isort . [(20160925 1018) nil "Use isort to sort the imports in a Python buffer" single ((:commit . "e67306f459c47c53a65604e4eea88a3914596560") (:authors ("Friedrich Paetzke" . "paetzke@fastmail.fm")) (:maintainer "Friedrich Paetzke" . "paetzke@fastmail.fm") (:url . "http://paetzke.me/project/py-isort.el"))]) (py-import-check . [(20130802 1111) nil "Finds the unused python imports using importchecker" single ((:commit . "9787f87745a4234cd9bed711860b707902bc8ae4") (:keywords "python" "import" "check") (:authors ("Sibi" . "sibi@psibi.in")) (:maintainer "Sibi" . "sibi@psibi.in") (:url . "https://github.com/psibi/emacs-py-import-check"))]) (py-gnitset . [(20170821 1732) nil "Run your Python tests any way you'd like" single ((:commit . "1e993cc29cbc31e06fe1e335dec198e21972fa55") (:authors ("Brandon W Maister" . "quodlibetor@gmail.com")) (:maintainer "Brandon W Maister" . "quodlibetor@gmail.com") (:url . "https://www.github.com/quodlibetor/py-gnitset"))]) (py-autopep8 . [(20160925 1052) nil "Use autopep8 to beautify a Python buffer" single ((:commit . "68e12d8788c91c7ec53a68acf1d23adb2ffa4788") (:authors ("Friedrich Paetzke" . "f.paetzke@gmail.com")) (:maintainer "Friedrich Paetzke" . "f.paetzke@gmail.com") (:url . "http://paetzke.me/project/py-autopep8.el"))]) (px . [(20170317 2330) nil "preview inline latex in any mode" single ((:commit . "0c52f7933eab3ca1642ab0df151db9950430c9e2") (:authors ("Aurélien Aptel" . "aurelien.aptel@gmail.com")) (:maintainer "Aurélien Aptel" . "aurelien.aptel@gmail.com") (:url . "http://github.com/aaptel/preview-latex"))]) (pushover . [(20170818 2103) ((cl-lib (0 5))) "Pushover API Access" single ((:commit . "bbe3ac8df3c532a72da4552615af960b8a577588") (:keywords "notifications") (:authors ("Samuel W. Flint" . "swflint@flintfam.org")) (:maintainer "Samuel W. Flint" . "swflint@flintfam.org") (:url . "http://github.com/swflint/pushover.el"))]) (pushbullet . [(20140809 1232) ((grapnel (0 5 2)) (json (1 2))) "Emacs client for the PushBullet Android app" single ((:commit . "73c59a0f1dc04875b3e5a2c8afbc26c32128e445") (:keywords "convenience") (:authors ("Abhishek L" . "abhishek.lekshmanan@gmail.com")) (:maintainer "Abhishek L" . "abhishek.lekshmanan@gmail.com") (:url . "http://www.github.com/theanalyst/revolver"))]) (purty-mode . [(20131004 2259) nil "Safely pretty-print greek letters, mathematical symbols, or anything else." single ((:commit . "8eef77317a3bab07ade212353a50fbd3f20f365a") (:authors ("James Atwood" . "jatwood@cs.umass.edu")) (:maintainer "James Atwood" . "jatwood@cs.umass.edu"))]) (purple-haze-theme . [(20141015 229) ((emacs (24 0))) "an overtly purple color theme for Emacs24." single ((:commit . "3e245cbef7cd09e6b3ee124963e372a04e9a6485") (:authors ("Jason Milkins" . "jasonm23@gmail.com")) (:maintainer "Jason Milkins" . "jasonm23@gmail.com") (:url . "https://github.com/jasonm23/emacs-purple-haze-theme"))]) (purp-theme . [(20181012 1454) nil "No description available." tar ((:commit . "9c0c1246008ed0844a90661e45c660d99451425e"))]) (purescript-mode . [(20181028 838) ((cl-lib (0 6))) "A PureScript editing mode" tar ((:commit . "a6c7e4cc5ea29cf96478490a57d495e745d6e054"))]) (puppet-mode . [(20180813 1947) ((emacs (24 1)) (pkg-info (0 4))) "Major mode for Puppet manifests" single ((:commit . "7dee1b5a5debac6e56f9107492a413b6c0edb94d") (:keywords "languages") (:authors ("Bozhidar Batsov" . "bozhidar@batsov.com") ("Sebastian Wiesner" . "swiesner@lunaryorn.com") ("Russ Allbery" . "rra@stanford.edu")) (:maintainer "Bozhidar Batsov" . "bozhidar@batsov.com") (:url . "https://github.com/voxpupuli/puppet-mode"))]) (punpun-theme . [(20161103 847) nil "A bleak theme" tar ((:commit . "cce8b10b2df6f9187a9eaa0c3f21ff0dda175968"))]) (pungi . [(20150222 1246) ((jedi (0 2 0 -3 2)) (pyvenv (1 5))) "Integrates jedi with virtualenv and buildout python environments" single ((:commit . "a2d4d439ea371be0b064a12248288903b8a521a0") (:keywords "convenience") (:authors ("Matthew Russell" . "matthew.russell@horizon5.org")) (:maintainer "Matthew Russell" . "matthew.russell@horizon5.org"))]) (punctuality-logger . [(20141120 2031) nil "Punctuality logger for Emacs" single ((:commit . "e09e5dd37bc92289fa2f7dc44aed51a7b5e04bb0") (:keywords "reminder" "calendar") (:authors ("Philip Woods" . "elzairthesorcerer@gmail.com")) (:maintainer "Philip Woods" . "elzairthesorcerer@gmail.com") (:url . "https://gitlab.com/elzair/punctuality-logger"))]) (pulseaudio-control . [(20180627 1150) nil "Use `pactl' to manage PulseAudio volumes." single ((:commit . "1da372ec79f5d2fb901d1f9f0679fee8848fd011") (:keywords "multimedia" "hardware" "sound" "pulseaudio") (:authors ("Alexis" . "flexibeast@gmail.com") ("Ellington Santos" . "ellingtonsantos@gmail.com") ("Sergey Trofimov" . "sarg@sarg.org.ru")) (:maintainer "Alexis" . "flexibeast@gmail.com") (:url . "https://github.com/flexibeast/pulseaudio-control"))]) (pug-mode . [(20180513 2126) ((emacs (24 4)) (cl-lib (0 5))) "Major mode for jade/pug template files" single ((:commit . "685fd3414d89736bf232f5d1a6bed9e0353b98fe") (:keywords "markup" "language" "jade" "pug") (:authors ("Nathan Weizenbaum")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/emacs-pug-mode"))]) (pt . [(20161226 1959) nil "A front-end for pt, The Platinum Searcher." single ((:commit . "6d99b2aaded3ece3db19a20f4b8f1d4abe382622") (:keywords "pt" "ack" "ag" "grep" "search") (:authors ("Bailey Ling")) (:maintainer "Bailey Ling") (:url . "https://github.com/bling/pt.el"))]) (psysh . [(20171023 529) ((emacs (24 3)) (s (1 9 0)) (f (0 17))) "PsySH, PHP interactive shell (REPL)" single ((:commit . "926af4ae0c068ed699fc939f4b3e642aaa6f7c9e") (:keywords "processes" "php") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/psysh.el"))]) (psession . [(20181111 1412) ((emacs (24)) (cl-lib (0 5)) (async (1 9 3))) "Persistent save of elisp objects." single ((:commit . "ce7c28dc5aed37a3a3c4bd9a099032c15e5ef9e1") (:authors ("Thierry Volpiatto" . "thierry.volpiatto@gmail.com")) (:maintainer "Thierry Volpiatto" . "thierry.volpiatto@gmail.com") (:url . "https://github.com/thierryvolpiatto/psession"))]) (psci . [(20180418 1233) ((purescript-mode (13 10)) (dash (2 9 0)) (s (1 9 0)) (f (0 17 1))) "Major mode for purescript repl psci" tar ((:commit . "3f5ef1141a97c4b5507204d48e8aeccd553e4591") (:keywords "purescript" "psci" "repl" "major" "mode") (:authors ("Antoine R. Dumont <eniotna.t AT gmail.com>")) (:maintainer "Antoine R. Dumont <eniotna.t AT gmail.com>") (:url . "https://github.com/ardumont/emacs-psci"))]) (psc-ide . [(20181002 1319) ((dash (2 13 0)) (dash-functional (1 2 0)) (company (0 8 7)) (cl-lib (0 5)) (s (1 10 0)) (emacs (24 4)) (flycheck (0 24)) (let-alist (1 0 4)) (seq (1 11))) "Minor mode for PureScript's psc-ide tool." tar ((:commit . "01a158b77210fec9c1bfc0caffaf08fccc0412ac") (:keywords "languages") (:authors ("Erik Post" . "erik@shinsetsu.nl") ("Dmitry Bushenko" . "d.bushenko@gmail.com") ("Christoph Hegemann") ("Brian Sermons")) (:maintainer "Erik Post" . "erik@shinsetsu.nl") (:url . "https://github.com/epost/psc-ide-emacs"))]) (proxy-mode . [(20180521 330) ((emacs (25))) "A minor mode to toggle proxy." single ((:commit . "1cf689c2408945081215550589936a7eaab14987") (:keywords "comm" "proxy") (:url . "https://github.com/stardiviner/proxy-mode"))]) (protocols . [(20170802 1132) ((cl-lib (0 5))) "Protocol database access functions." single ((:commit . "d0f7c4acb05465f1a0d4be54363bbd2802647e77") (:keywords "convenience" "net" "protocols") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/protocols.el"))]) (protobuf-mode . [(20170526 1650) nil "major mode for editing protocol buffers." single ((:commit . "9313cdc442c22bc62694742597ce7c543d195a73") (:keywords "google" "protobuf" "languages") (:authors ("Alexandre Vassalotti" . "alexandre@peadrop.com")) (:maintainer "Alexandre Vassalotti" . "alexandre@peadrop.com"))]) (prosjekt . [(20151127 1416) ((dash (2 8 0))) "a software project tool for emacs" tar ((:commit . "a864a8be5842223043702395f311e3350c28e9db") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/prosjekt"))]) (proportional . [(20171025 2337) ((emacs (25 1))) "use a proportional font everywhere" single ((:commit . "f671ffe8fd803e2fc462e2e1844aeeab1a13918e") (:keywords "faces") (:authors ("Johannes Goslar")) (:maintainer "Johannes Goslar") (:url . "https://github.com/ksjogo/proportional"))]) (propfont-mixed . [(20150113 2211) ((emacs (24)) (cl-lib (0 5))) "Use proportional fonts with space-based indentation." single ((:commit . "0b461ef4754a469610dba71874a34b6da42176bf") (:keywords "faces") (:authors ("Kirill Ignatiev <github.com/ikirill>")) (:maintainer "Kirill Ignatiev <github.com/ikirill>") (:url . "https://github.com/ikirill/propfont-mixed"))]) (prop-menu . [(20150728 1118) ((emacs (24 3)) (cl-lib (0 5))) "Create and display a context menu based on text and overlay properties" single ((:commit . "50b102c1c0935fd3e0c465feed7f27d66b21cdf3") (:keywords "convenience") (:authors ("David Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Christiansen" . "david@davidchristiansen.dk") (:url . "https://github.com/david-christiansen/prop-menu-el"))]) (proof-general . [(20181115 1610) ((emacs (24 3))) "A generic front-end for proof assistants (interactive theorem provers)" tar ((:commit . "05df29f7ff065d8da45b81691c602b6cf075e4a0"))]) (prompts . [(20160916 1041) ((dash (2 13 0))) "utilities for working with text prompts." single ((:commit . "1cd5e732ff2a86b47836eb7252e5b59cd4b6ab26") (:keywords "input" "minibuffer") (:authors ("Ben Moon" . "guiltydolphin@gmail.com")) (:maintainer "Ben Moon" . "guiltydolphin@gmail.com") (:url . "https://github.com/guiltydolphin/prompts.el"))]) (prompt-text . [(20160106 1409) nil "Various information in minibuffer prompt" single ((:commit . "bb9265ebfada42d0e3c67c809665e1e5d980691e") (:keywords "utility" "minibuffer") (:authors ("10sr <8slashes+el [at] gmail [dot] com>")) (:maintainer "10sr <8slashes+el [at] gmail [dot] com>") (:url . "https://github.com/10sr/prompt-text-el"))]) (promise . [(20180409 952) ((emacs (25)) (async (1 9))) "Promises/A+" tar ((:commit . "f623fa7466983fd1ba7034371f599434c03da723") (:keywords "async" "promise" "convenience") (:authors ("chuntaro" . "chuntaro@sakura-games.jp")) (:maintainer "chuntaro" . "chuntaro@sakura-games.jp") (:url . "https://github.com/chuntaro/emacs-promise"))]) (projmake-mode . [(20161031 1715) ((dash (20150611 922)) (indicators (20130217 1405))) "Project oriented automatic builder and error highlighter, flymake for projects" tar ((:commit . "a897701f7e8f8cc11459ed44eb0e454db2a460c1"))]) (projekt . [(20150324 848) ((emacs (24))) "some kind of staging for CVS" single ((:commit . "a65e554e5d8b0def08c5d06f3fe34fec40bebd83") (:authors ("Engelke Eschner" . "tekai@gmx.li")) (:maintainer "Engelke Eschner" . "tekai@gmx.li"))]) (projector . [(20180724 1822) ((alert (1 1)) (projectile (0 11 0)) (cl-lib (0 5))) "Lightweight library for managing project-aware shell and command buffers" single ((:commit . "d4aad9449960457932c19123c7ea2d60a67d1cca") (:authors ("Justin Talbott" . "justin@waymondo.com")) (:maintainer "Justin Talbott" . "justin@waymondo.com") (:url . "https://github.com/waymondo/projector"))]) (projectile-variable . [(20170208 1718) ((emacs (24)) (cl-lib (0 5))) "Store project local variables." single ((:commit . "8d348ac70bdd6dc320c13a12941b32b38140e264") (:keywords "project" "convenience") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/projectile-variable"))]) (projectile-trailblazer . [(20170928 1624) ((emacs (24 4)) (projectile (0 12 0)) (inflections (1 1)) (inf-ruby (2 2 6)) (f (0 13 0)) (rake (0 3 2))) "Minor mode for Rails projects using trailblazer" single ((:commit . "a37a4f7b7f727d98e4c74c0256e059e84263553d") (:keywords "rails" "projectile" "trailblazer" "languages") (:authors ("Michael Dahl" . "michael.dahl84@gmail.com")) (:maintainer "Michael Dahl" . "michael.dahl84@gmail.com") (:url . "https://github.com/micdahl/projectile-trailblazer"))]) (projectile-speedbar . [(20170517 243) ((projectile (0 11 0)) (sr-speedbar (0))) "projectile integration for speedbar" single ((:commit . "dcab13db72c2084edbebe808e35f1126fe0b3bcd") (:keywords "project" "convenience" "speedbar" "projectile") (:authors ("Anshul Verma" . "anshul.verma86@gmail.com")) (:maintainer "Anshul Verma" . "anshul.verma86@gmail.com") (:url . "https://github.com/anshulverma/projectile-speedbar"))]) (projectile-sift . [(20160107 1015) ((sift (0 2 0)) (projectile (0 13 0))) "Run a sift with Projectile" single ((:commit . "4ce8878a0fc396ded7521ce38852d93e1d863065") (:keywords "sift" "projectile") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/sift.el"))]) (projectile-ripgrep . [(20180914 1500) ((ripgrep (0 3 0)) (projectile (0 14 0))) "Run ripgrep with Projectile" single ((:commit . "93eca9138f6d6eea1af92f476c797ce19fa573d9") (:keywords "ripgrep" "projectile") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/ripgrep.el"))]) (projectile-rails . [(20181009 1317) ((emacs (24 3)) (projectile (0 12 0)) (inflections (1 1)) (inf-ruby (2 2 6)) (f (0 13 0)) (rake (0 3 2))) "Minor mode for Rails projects based on projectile-mode" single ((:commit . "af0f826f2e1b1aad4e31e089e5fc7b5937e82359") (:keywords "rails" "projectile") (:authors ("Adam Sokolnicki" . "adam.sokolnicki@gmail.com")) (:maintainer "Adam Sokolnicki" . "adam.sokolnicki@gmail.com") (:url . "https://github.com/asok/projectile-rails"))]) (projectile-hanami . [(20160505 1311) ((emacs (24 3)) (projectile (0 12 0)) (rake (0 3 2)) (inf-ruby (2 2 6))) "Minor mode for Hanami projects based on projectile" single ((:commit . "c4b8e7d4dfec789ef8493a7c5d4ce0cf7937e579") (:keywords "hanami" "ruby" "projectile") (:authors ("Arjan van der Gaag")) (:maintainer "Arjan van der Gaag") (:url . "https://github.com/avdgaag/projectile-hanami"))]) (projectile-git-autofetch . [(20180418 2336) ((projectile (0 14 0)) (alert (1 2))) "automatically fetch git repositories" single ((:commit . "55855886bccb5a22fbeb2b1c86ef2e9ff4de9067") (:keywords "tools" "vc") (:authors ("Andreas Müller" . "code@0x7.ch")) (:maintainer "Andreas Müller" . "code@0x7.ch") (:url . "https://github.com/andrmuel/projectile-git-autofetch"))]) (projectile-direnv . [(20160306 138) ((emacs (24)) (s (1 11 0)) (dash (2 12 0)) (projectile (0 13 0))) "Set environment variables from .envrc" single ((:commit . "d5d29e5228f840b7a25358a2fd50353ef2dc9b16") (:keywords "convenience") (:authors ("Christian Romney" . "crommney@pointslope.com")) (:maintainer "Christian Romney" . "crommney@pointslope.com") (:url . "https://github.com/christianromney/projectile-direnv"))]) (projectile-codesearch . [(20180508 1522) ((codesearch (20171122 431)) (projectile (20150405 126))) "Integration of codesearch into projectile" single ((:commit . "f6eb96f034a925444412cfa03e45e0ccbbafe3f2") (:keywords "tools" "development" "search") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/emacs-codesearch"))]) (projectile . [(20181106 1631) ((emacs (25 1)) (pkg-info (0 4))) "Manage and navigate projects in Emacs easily" single ((:commit . "9482d69e5ca6549ec7baea58f86c1445b544563b") (:keywords "project" "convenience") (:authors ("Bozhidar Batsov" . "bozhidar@batsov.com")) (:maintainer "Bozhidar Batsov" . "bozhidar@batsov.com") (:url . "https://github.com/bbatsov/projectile"))]) (project-shells . [(20171107 851) ((emacs (24 3)) (seq (2 19))) "Manage the shell buffers of each project" single ((:commit . "d9401de750e444697c2eb9de1ff79f2a2eba4af8") (:keywords "processes" "terminals") (:authors ("\"Huang, Ying\"" . "huang.ying.caritas@gmail.com")) (:maintainer "\"Huang, Ying\"" . "huang.ying.caritas@gmail.com") (:url . "https://github.com/hying-caritas/project-shells"))]) (project-root . [(20110206 2030) nil "Define a project root and take actions based upon it." single ((:authors ("Philip Jackson" . "phil@shellarchive.co.uk")) (:maintainer "Philip Jackson" . "phil@shellarchive.co.uk"))]) (project-persist-drawer . [(20151108 1222) ((project-persist (0 3))) "Use a project drawer with project-persist." tar ((:commit . "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626"))]) (project-persist . [(20180906 1302) nil "A minor mode to allow loading and saving of project settings." tar ((:commit . "26d9435bef44da2a1b0892eba822f9f487b98eec"))]) (project-explorer . [(20150504 14) ((cl-lib (0 3)) (es-lib (0 3)) (es-windows (0 1)) (emacs (24))) "A project explorer sidebar" single ((:commit . "589a09008706f5f4ef91393dc4306eede0d15ca9") (:authors ("sabof")) (:maintainer "sabof") (:url . "https://github.com/sabof/project-explorer"))]) (project-abbrev . [(20180706 254) ((emacs (24 4))) "Customize abbreviation expansion in the project." single ((:commit . "3678f1bc0084c1092467f8fc1778fecdbe255c43") (:authors ("Shen, Jen-Chieh" . "jcs090218@gmail.com")) (:maintainer "Shen, Jen-Chieh" . "jcs090218@gmail.com") (:url . "https://github.com/jcs090218/project-abbrev"))]) (programmer-dvorak . [(20150427 137) nil "Input method for Programmer Dvorak." single ((:commit . "3288a8f058eca4cab390a564babbbcb17cfa0350") (:keywords "dvorak" "programmer-dvorak" "input-method") (:authors ("Chenyun Yang" . "yangchenyun@gmail.com")) (:maintainer "Chenyun Yang" . "yangchenyun@gmail.com") (:url . "https://github.com/yangchenyun/programmer-dvorak"))]) (prognth . [(20130920 1759) nil "Extend prog1 to arbitrary index" single ((:commit . "2f1ca4d34b1fd581163e1df122c85418137e8e62") (:keywords "lisp") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com"))]) (prog-fill . [(20180607 132) ((emacs (25 1)) (cl-lib (0 6 1))) "Smartly format lines to use vertical space." single ((:commit . "3fbf7da6dd826e95c9077d659566ee29814a31d8") (:keywords "ahungry" "convenience" "c" "formatting" "editing") (:authors ("Matthew Carter" . "m@ahungry.com")) (:maintainer "Matthew Carter" . "m@ahungry.com") (:url . "https://github.com/ahungry/prog-fill"))]) (professional-theme . [(20150315 1100) nil "Emacs port of Vim's professional theme" single ((:commit . "0927d1474049a193f9f366bde5eb1887b9ba20ed") (:keywords "theme" "light" "professional") (:authors ("Juanjo Alvarez" . "juanjo@juanjoalvarez.net")) (:maintainer "Juanjo Alvarez" . "juanjo@juanjoalvarez.net") (:url . "https://github.com/juanjux/emacs-professional-theme"))]) (prodigy . [(20180511 938) ((s (1 8 0)) (dash (2 4 0)) (f (0 14 0)) (emacs (24))) "Manage external services from within Emacs" single ((:commit . "701dccaa56de9e6a330c05bde33bce4f3b3d6a97") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/prodigy.el"))]) (processing-snippets . [(20140426 1428) ((yasnippet (0 8 0))) "Snippets for processing-mode" tar ((:commit . "448aba82970c98322629eaf2746e73be6c30c98e"))]) (processing-mode . [(20171022 2302) nil "Major mode for Processing 2.0" single ((:commit . "448aba82970c98322629eaf2746e73be6c30c98e") (:keywords "languages" "snippets") (:authors ("Peter Vasil" . "mail@petervasil.net")) (:maintainer "Peter Vasil" . "mail@petervasil.net") (:url . "https://github.com/ptrv/processing2-emacs"))]) (proc-net . [(20130322 12) nil "network process tools" single ((:commit . "10861112a1f3994c8e6374d6c5bb5d734cfeaf73") (:keywords "processes") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "http://github.com/nicferrier/emacs-procnet"))]) (private-diary . [(20151216 1657) ((emacs (24 0))) "maintain a private diary in Emacs" single ((:commit . "0c86fb6150ad8ed14f94def3504f5a68f4147283") (:keywords "diary" "encryption") (:authors ("James P. Ascher" . "jpa4q@virginia.edu")) (:maintainer "James P. Ascher" . "jpa4q@virginia.edu") (:url . "https://github.com/cacology/private-diary"))]) (private . [(20150122 157) ((aes (0 6))) "take care of your private configuration files." single ((:commit . "9266d01c095895cc3ee9de95bc20511e88353755") (:keywords "private" "configuration" "backup" "recover") (:authors ("Cheung Mou Wai" . "yeannylam@gmail.com")) (:maintainer "Cheung Mou Wai" . "yeannylam@gmail.com") (:url . "https://github.com/cheunghy/private"))]) (pretty-symbols . [(20140814 959) nil "Draw tokens as Unicode glyphs." single ((:commit . "582cbe51ecfe1cc0a5b185bc06113c8a661e3956") (:keywords "faces") (:authors ("David Röthlisberger" . "david@rothlis.net")) (:maintainer "David Röthlisberger" . "david@rothlis.net") (:url . "http://github.com/drothlis/pretty-symbols"))]) (pretty-sha-path . [(20141105 1826) nil "Prettify Guix/Nix store paths" single ((:commit . "a2b43dd9de423a38d67cda2e3bd9412f7d363257") (:keywords "faces" "convenience") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://gitorious.org/alezost-emacs/pretty-sha-path"))]) (pretty-mode . [(20160614 1846) nil "Redisplay parts of the buffer as pretty Unicode symbols." single ((:commit . "59466813f6a46bed926ddcbae1a70b0eae7f73a0") (:keywords "pretty" "unicode" "symbols") (:authors ("Arthur Danskin" . "arthurdanskin@gmail.com")) (:maintainer "Dmitri Akatov" . "akatov@gmail.com") (:url . "https://github.com/akatov/pretty-mode"))]) (prettify-greek . [(20160603 908) nil "Greek letters for prettify-symbols" single ((:commit . "698d07a6ffe85f6fb53f3bfec4f49380c25cfd90") (:keywords "faces") (:url . "https://gitlab.com/fommil/emacs-prettify-greek"))]) (prettier-js . [(20180109 726) nil "Minor mode to format JS code on file save" single ((:commit . "fac9dd29720f8417bd8cd5dd8ab5138c6dd7d701") (:keywords "convenience" "wp" "edit" "js") (:authors ("James Long and contributors")) (:maintainer "James Long and contributors") (:url . "https://github.com/prettier/prettier-emacs"))]) (presentation . [(20180427 224) ((emacs (24 4)) (cl-lib (0 5))) "Display large character for presentation" single ((:commit . "f53f67aeab97e8eea6d1f12df5f7ce3b1b03b879") (:keywords "environment" "faces" "frames") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/emacs-presentation-mode"))]) (preseed-generic-mode . [(20180210 500) nil "Debian preseed file major mode" single ((:commit . "3aa8806c4a659064baa01751400c53fbaf847f66") (:authors ("Tong Sun" . "suntong@users.sourceforge.net")) (:maintainer "Tong Sun" . "suntong@users.sourceforge.net") (:url . "https://github.com/suntong/preseed-generic-mode"))]) (prescient . [(20181022 2256) ((emacs (25 1))) "Better sorting and filtering." single ((:commit . "1623a0d4e5b9a752db45923fd91da48b49c85068") (:keywords "extensions") (:authors ("Radon Rosborough" . "radon.neon@gmail.com")) (:maintainer "Radon Rosborough" . "radon.neon@gmail.com") (:url . "https://github.com/raxod502/prescient.el"))]) (preproc-font-lock . [(20151107 2018) nil "Highlight C-style preprocessor directives." single ((:commit . "565fda9f5fdeb0598986174a07e9fb09f7604397") (:keywords "c" "languages" "faces") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/preproc-font-lock"))]) (prassee-theme . [(20180709 1004) ((emacs (24))) "A high contrast color theme for Emacs." single ((:commit . "81126f69cdbaab836c00ae7a49aaf89d4229fde1") (:keywords "dark" "high-contrast" "faces") (:authors ("Prassee " . "prassee.sathian@gmail.com")) (:maintainer "Prassee " . "prassee.sathian@gmail.com") (:url . "https://github.com/prassee/prassee-emacs-theme"))]) (ppd-sr-speedbar . [(20151108 1224) ((sr-speedbar (20140914 2339)) (project-persist-drawer (0 0 4))) "Sr Speedbar adaptor for project-persist-drawer." tar ((:commit . "d88d7f63f695824c435dd996405454d1e46d2aa3"))]) (powerthesaurus . [(20180719 908) ((emacs (24)) (request (0 3 0)) (s (1 12 0))) "Powerthesaurus integration" single ((:commit . "ab39b050e801934872f3dcaa60b50b0d30ecf367") (:keywords "convenience" "writing") (:url . "http://github.com/SavchenkoValeriy/emacs-powerthesaurus"))]) (powershell . [(20181011 1951) ((emacs (24))) "Mode for editing PowerShell scripts" single ((:commit . "c9a20e5a8b02dc5d7ccd2b1974eba28a9348ad5e") (:keywords "powershell" "languages") (:authors ("Frédéric Perrin <frederic (dot) perrin (arobas) resel (dot) fr>")) (:maintainer "Frédéric Perrin <frederic (dot) perrin (arobas) resel (dot) fr>") (:url . "http://github.com/jschaf/powershell.el"))]) (powerline-evil . [(20151112 1510) ((evil (1 0 8)) (powerline (2 3))) "Utilities for better Evil support for Powerline" tar ((:commit . "98b3a102b6dba6632aa0755a7257300c9b164309") (:keywords "evil" "mode-line" "powerline") (:authors ("Chris Johnson" . "raugturi@gmail.com")) (:maintainer "Chris Johnson" . "raugturi@gmail.com") (:url . "http://github.com/raugturi/powerline-evil/"))]) (powerline . [(20180322 248) ((cl-lib (0 2))) "Rewrite of Powerline" tar ((:commit . "af5ef31a33c3589a9be0b2a55a2741582e605efd") (:keywords "mode-line") (:authors ("Donald Ephraim Curtis" . "dcurtis@milkbox.net")) (:maintainer "Donald Ephraim Curtis" . "dcurtis@milkbox.net") (:url . "http://github.com/milkypostman/powerline/"))]) (pow . [(20140420 806) ((emacs (24)) (cl-lib (0 5))) "pow (http://pow.cx/) manager for emacs" tar ((:commit . "ea83986b8ca8e27cb996290d6463b111ec0966ce") (:keywords "develop" "web" "pow") (:authors ("yukihiro hara" . "yukihr@gmail.com")) (:maintainer "yukihiro hara" . "yukihr@gmail.com") (:url . "http://github.com/yukihr/emacs-pow"))]) (pov-mode . [(20161115 743) nil "Major mode for editing POV-Ray scene files." tar ((:commit . "9fc1db3aab7c27155674dd1a87ec62606035d074"))]) (postcss-sorting . [(20180211 956) ((emacs (24))) "postcss-sorting interface" single ((:commit . "deb0c935d2904c11a965758a9aee5a0e905f21fc") (:authors ("Peiwen Lu" . "hi@peiwen.lu")) (:maintainer "Peiwen Lu" . "hi@peiwen.lu") (:url . "https://github.com/P233/postcss-sorting.el"))]) (posframe . [(20180927 602) ((emacs (26))) "Pop a posframe (just a frame) at point" single ((:commit . "2f4baf00ab9184dff75ec97fc520d1c91e1acb9c") (:keywords "tooltip") (:authors ("Feng Shu" . "tumashu@163.com")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/posframe"))]) (pos-tip . [(20150318 1513) nil "Show tooltip at point" single ((:commit . "051e08fec5cf30b7574bdf439f79fef7d42d689d") (:keywords "tooltip") (:authors ("S. Irie")) (:maintainer "S. Irie"))]) (portage-navi . [(20141208 1355) ((concurrent (0 3 1)) (ctable (0 1 2))) "portage viewer" single ((:commit . "8016c3e99fe6cef101d479a3d69185796b22ca2f") (:keywords "tools" "gentoo") (:authors ("<m.sakurai at kiwanami.net>")) (:maintainer "<m.sakurai at kiwanami.net>") (:url . "https://github.com/kiwanami/emacs-portage-navi"))]) (popwin . [(20150315 1300) nil "Popup Window Manager." single ((:commit . "95dea14c60019d6cccf9a3b33e0dec4e1f22c304") (:keywords "convenience") (:authors ("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) (:maintainer "Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))]) (popup-switcher . [(20171205 851) ((cl-lib (0 3)) (popup (0 5 3))) "switch to other buffers and files via popup." single ((:commit . "f5788a31918e37bb5c04139048c667bcec9f1b62") (:keywords "popup" "switch" "buffers" "functions") (:authors ("Kostafey" . "kostafey@gmail.com")) (:maintainer "Kostafey" . "kostafey@gmail.com") (:url . "https://github.com/kostafey/popup-switcher"))]) (popup-kill-ring . [(20131020 1854) ((popup (0 4)) (pos-tip (0 4))) "interactively insert item from kill-ring" single ((:commit . "5773dfadc104a906c088a3ec62e8cdd3e01e57fa") (:keywords "popup" "kill-ring" "pos-tip") (:authors ("khiker" . "khiker.mail+elisp@gmail.com")) (:maintainer "khiker" . "khiker.mail+elisp@gmail.com") (:url . "https://github.com/waymondo/popup-kill-ring"))]) (popup-imenu . [(20170326 1040) ((dash (2 12 1)) (popup (0 5 3)) (flx-ido (0 6 1))) "imenu index popup" single ((:commit . "c5e2e69adbd3a630e4cb750965a1aee8c10c1f09") (:keywords "popup" "imenu") (:authors ("Igor Shymko" . "igor.shimko@gmail.com")) (:maintainer "Igor Shymko" . "igor.shimko@gmail.com") (:url . "https://github.com/ancane/popup-imenu"))]) (popup-edit-menu . [(20170404 1425) ((emacs (24))) "a popup context edit menu package" single ((:commit . "925600a6e29183841199e866cf55e566a6a1b002") (:keywords "lisp" "pop-up" "context" "edit" "menu") (:authors ("Debugfan Chin" . "debugfanchin@gmail.com")) (:maintainer "Debugfan Chin" . "debugfanchin@gmail.com"))]) (popup-complete . [(20141109 308) ((popup (0 5 0))) "completion with popup" single ((:commit . "caa655a6d8472e9a4bfa1311126d90d7d1b07fca") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-popup-complete"))]) (popup . [(20160709 1429) ((cl-lib (0 5))) "Visual Popup User Interface" single ((:commit . "80829dd46381754639fb764da11c67235fe63282") (:keywords "lisp") (:authors ("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) (:maintainer "Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))]) (poporg . [(20170403 751) nil "Pop a comment or string to an empty buffer for text editing" single ((:commit . "2c58d68c81ecca4140bf179f19ed153ec804b65a") (:keywords "outlines" "tools") (:authors ("François Pinard" . "pinard@iro.umontreal.ca") ("Joseph Rabinoff" . "rabinoff@post.harvard.edu")) (:maintainer "Joseph Rabinoff" . "rabinoff@post.harvard.edu") (:url . "https://github.com/QBobWatson/poporg"))]) (pophint . [(20170918 248) ((log4e (0 2 0)) (yaxception (0 3))) "Provide navigation using pop-up tips, like Firefox's Vimperator Hint Mode" tar ((:commit . "909025c5a871ca4b9ec7aed7f1a27c819a94dba1") (:keywords "popup") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-pophint"))]) (ponylang-mode . [(20180804 1521) ((dash (2 10 0))) "Major mode for Pony code" single ((:commit . "be6f9dce623415656320f32e350e28da75c53437") (:keywords "languages" "programming") (:url . "https://github.com/seantallen/ponylang-mode"))]) (pony-snippets . [(20160205 411) ((yasnippet (0 8 0))) "Yasnippets for Pony" tar ((:commit . "a6615ab0693f17fc47ec45753202010238157810") (:keywords "snippets" "pony") (:url . "https://github.com/seantallen/pony-snippets"))]) (pony-mode . [(20170807 1522) nil "Minor mode for working with Django Projects" tar ((:commit . "760684d30b6c234d1b88c9a4673a808f36f7f341"))]) (pomodoro . [(20150716 1746) nil "A timer for the Pomodoro Technique" single ((:commit . "4a299b8f5e6623010224dcb3e524ff288c6a082c") (:authors ("David Kerschner" . "dkerschner@gmail.com")) (:maintainer "David Kerschner" . "dkerschner@gmail.com"))]) (pomidor . [(20180614 828) ((emacs (24 3)) (alert (1 2))) "Simple and cool pomodoro timer" tar ((:commit . "8859aecdb48b76a36c5e251793da0f108b2dfeb4") (:keywords "tools" "time" "applications" "pomodoro technique") (:authors ("TatriX" . "tatrics@gmail.com")) (:maintainer "TatriX" . "tatrics@gmail.com") (:url . "https://github.com/TatriX/pomidor"))]) (polymode . [(20181118 1144) ((emacs (25))) "Extensible framework for multiple major modes" tar ((:commit . "ce328b8c9526f495536e4502fc6f606e1b2b8d06") (:keywords "languages" "multi-modes" "processes") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/vitoshka/polymode"))]) (poly-slim . [(20181010 2138) ((emacs (25)) (polymode (0 1 5)) (slim-mode (1 1))) "Polymodes for slim" single ((:commit . "1ec1ca8120e087cd1f33baee7b7059c324149f4b") (:keywords "emacs") (:authors ("Siavash Sajjadi and Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/polymode/poly-slim"))]) (poly-ruby . [(20180905 929) ((emacs (25)) (polymode (0 1 2))) "Provides poly-ruby-mode" single ((:commit . "794ebb926ace23e9c1398da934701951432dcea2") (:keywords "languages") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/poly-ruby.el"))]) (poly-org . [(20181010 2137) ((emacs (25)) (polymode (0 1 5))) "Polymode for org-mode" single ((:commit . "3f74d3ba0ad8ffe01bbc0994fcc4e5fc7aef6121") (:keywords "languages" "multi-modes") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/polymode/poly-org"))]) (poly-noweb . [(20181010 2137) ((emacs (25)) (polymode (0 1 5))) "Polymode for noweb" single ((:commit . "d604d62fa311c6d18dc10058b637eb95bd684eee") (:keywords "languages" "multi-modes") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/polymode/poly-noweb"))]) (poly-markdown . [(20181010 2137) ((emacs (25)) (polymode (0 1 5)) (markdown-mode (2 3))) "Polymode for markdown-mode" single ((:commit . "d55d14273ba1ad05c6f1adf7ca5457b5a89acfce") (:keywords "emacs") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/polymode/poly-markdown"))]) (poly-erb . [(20181019 1402) ((emacs (25)) (polymode (0 1 5))) "Polymode for erb" single ((:commit . "61fa4640a1cb08120c2c70bfc32029cc79b31b79") (:keywords "emacs") (:authors ("Siavash Sajjadi and Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/polymode/poly-erb"))]) (poly-R . [(20181024 2054) ((emacs (25)) (polymode (0 1 5)) (poly-markdown (0 1 5)) (poly-noweb (0 1 5))) "Various polymodes for R language" single ((:commit . "b9236aab9043747bf764703e7b84f3c6bb526dec") (:keywords "languages" "multi-modes") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/polymode/poly-R"))]) (pollen-mode . [(20181022 130) ((emacs (24 3)) (cl-lib (0 5))) "major mode for editing pollen files" single ((:commit . "3b57f40f78eb4458e7be41dc4051f9cf0ff6982e") (:keywords "languages" "pollen" "pollenpub") (:authors ("Junsong Li <ljs.darkfish AT GMAIL>")) (:maintainer "Junsong Li") (:url . "https://github.com/lijunsong/pollen-mode"))]) (pointback . [(20100210 1552) nil "Restore window points when returning to buffers" single ((:commit . "e3a02c1784d81b5a1d2477338d049af581ed19f8") (:keywords "convenience") (:authors ("Markus Triska" . "markus.triska@gmx.at")) (:maintainer "Markus Triska" . "markus.triska@gmx.at"))]) (point-stack . [(20170808 1658) nil "Back and forward navigation through buffer locations" single ((:commit . "76e17311e3a810314c7d31ac46dc55450ff30fa2") (:authors ("Matt Harrison" . "matthewharrison@gmail.com") ("Dmitry Gutov" . "dgutov@yandex.ru")) (:maintainer "Matt Harrison" . "matthewharrison@gmail.com"))]) (point-pos . [(20170421 1632) nil "Save and restore point positions" single ((:commit . "442bccb40791832cbc2d6f5c8f53be745aea2b73") (:keywords "tools" "convenience") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/point-pos.el"))]) (poet-theme . [(20180924 329) nil "A theme for prose." tar ((:commit . "44439fd84143632760abfd5d8a65436e787955fd") (:authors ("Kunal Bhalla" . "bhalla.kunal@gmail.com")) (:maintainer "Kunal Bhalla" . "bhalla.kunal@gmail.com") (:url . "https://github.com/kunalb/poet/"))]) (podcaster . [(20161020 1535) ((cl-lib (0 5))) "Podcast client" single ((:commit . "9854517025deb5d556168a68955fb7b662239f5c") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/podcaster"))]) (pocket-reader . [(20180819 2007) ((emacs (25 1)) (dash (2 13 0)) (kv (0 0 19)) (pocket-lib (0 1)) (s (1 10)) (ov (1 0 6)) (rainbow-identifiers (0 2 2)) (org-web-tools (0 1)) (ht (2 2))) "Client for Pocket reading list" single ((:commit . "0eb2e678b3fdc8899e420e6ecca03a2ada4b6283") (:keywords "pocket") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "https://github.com/alphapapa/pocket-reader.el"))]) (pocket-mode . [(20171201 1315) ((emacs (24 4)) (pocket-api (0 1))) "Manage your pocket" single ((:commit . "229de7d35b7e5605797591c46aa8200d7efc363c") (:keywords "convenience" "pocket") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com"))]) (pocket-lib . [(20180712 23) ((emacs (25 1)) (request (0 2)) (dash (2 13 0)) (kv (0 0 19)) (s (1 12 0))) "Library for accessing getpocket.com API" single ((:commit . "8dd89153472d2e49bf9a3b3507b93c2acf0b44ac") (:keywords "pocket") (:authors (nil . "Adam Porter <adam@alphapapa.net")) (:maintainer nil . "Adam Porter <adam@alphapapa.net") (:url . "https://github.com/alphapapa/pocket-lib.el"))]) (pocket-api . [(20180403 109) ((emacs (24 4)) (request (0 2))) "another pocket api" single ((:commit . "3eb9430b9db90bc02e736e433eb86389f7655189") (:keywords "convenience" "pocket") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/pocket-api.el"))]) (po-mode . [(20180505 1115) nil "major mode for GNU gettext PO files" single ((:commit . "17b1b16277d81af3afd5c51c53eda385e33f3178") (:keywords "i18n" "gettext"))]) (pmdm . [(20151109 1836) nil "poor man's desktop-mode alternative." single ((:authors ("Iñigo Serna" . "inigoserna@gmail.com")) (:maintainer "Iñigo Serna" . "inigoserna@gmail.com") (:url . "https://bitbucket.com/inigoserna/pmdm.el"))]) (plur . [(20160504 924) ((emacs (24 4))) "Easily search and replace multiple variants of a word" single ((:commit . "5bdd3b9a2f0624414bd596e798644713cd1545f0") (:authors ("Chunyang Xu" . "xuchunyang.me@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang.me@gmail.com") (:url . "https://github.com/xuchunyang/plur"))]) (plsense-direx . [(20140520 2008) ((direx (0 1 -3)) (plsense (0 3 2)) (log4e (0 2 0)) (yaxception (0 3 2))) "Perl Package Explorer" single ((:commit . "8a2f465264c74e04524cc789cdad0190ace43f6c") (:keywords "perl" "convenience") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/plsense-direx"))]) (plsense . [(20151104 1445) ((auto-complete (1 4 0)) (log4e (0 2 0)) (yaxception (0 2 0))) "provide interface for PlSense that is a development tool for Perl." single ((:commit . "d50f9dccc98f42bdb42f1d1c8142246e03879218") (:keywords "perl" "completion") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-plsense"))]) (plim-mode . [(20140813 13) nil "Major mode for editing Plim files" single ((:commit . "92e39190286f172567ceb02c80e1df3b81abfa2d") (:keywords "markup" "language") (:authors ("Dong Weiming")) (:maintainer "Dong Weiming") (:url . "http://github.com/dongweiming/plim-mode"))]) (plenv . [(20130707 616) nil "A plenv wrapper for Emacs" single ((:commit . "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2") (:keywords "emacs" "perl") (:authors ("Kenta Sato" . "karupa@cpan.org")) (:maintainer "Kenta Sato" . "karupa@cpan.org"))]) (playground . [(20180624 326) ((emacs (24 4))) "Manage sandboxes for alternative configurations" single ((:commit . "9212790026bea9ab5fb4ecf0da1163be8ab00776") (:keywords "maint") (:authors ("Akira Komamura" . "akira.komamura@gmail.com")) (:maintainer "Akira Komamura" . "akira.komamura@gmail.com") (:url . "https://github.com/akirak/emacs-playground"))]) (playerctl . [(20180301 1354) nil "Control your music player (e.g. Spotify) with playerctl" single ((:commit . "3eee541423c2e5eb9f23a26fa9aa88c9c5a19ad1") (:keywords "multimedia" "playerctl" "music") (:authors ("Thomas Luquet" . "thomas@luquet.net")) (:maintainer "Thomas Luquet" . "thomas@luquet.net") (:url . "https://github.com/thomasluquet/playerctl.el"))]) (play-routes-mode . [(20170426 733) nil "Play Framework Routes File Support" single ((:commit . "22d7b87e0eaf0330f2b2283872f8dc08a3258771") (:keywords "play" "scala") (:authors ("M.Riehl <max@flatmap.ninja>, P.Haun" . "bomgar85@googlemail.com")) (:maintainer "M.Riehl <max@flatmap.ninja>, P.Haun" . "bomgar85@googlemail.com") (:url . "https://github.com/brocode/play-routes-mode/"))]) (play-crystal . [(20180114 1024) ((emacs (24 4)) (dash (2 12 0)) (request (0 2 0))) "https://play.crystal-lang.org integration." single ((:commit . "0b4810a9025213bd11dbcbfd38b3ca928829e0a5") (:keywords "convenience") (:authors ("Vitalii Elenhaupt")) (:maintainer "Vitalii Elenhaupt") (:url . "https://github.com/veelenga/play-crystal.el"))]) (platformio-mode . [(20161210 1339) ((projectile (0 13 0))) "PlatformIO integration" single ((:commit . "1466aed132a77f48fcb31938d64abb1a1e58ec42") (:authors ("Zach Massia" . "zmassia@gmail.com")) (:maintainer "Zach Massia" . "zmassia@gmail.com") (:url . "https://github.com/zachmassia/platformio-mode"))]) (plaster . [(20180127 2050) ((emacs (24 3))) "Pasting to a plaster host with buffers." single ((:commit . "2e61d16af81b96ff3191afd7a880f032d245182b") (:keywords "convenience" "paste service") (:authors ("Nicolas Hafner" . "shinmera@tymoon.eu")) (:maintainer "Nicolas Hafner" . "shinmera@tymoon.eu") (:url . "http://github.com/shirakumo/plaster/"))]) (plantuml-mode . [(20180816 1012) ((emacs (25 0))) "Major mode for PlantUML" single ((:commit . "b358a53bb0ab195f0193169d0d6869a3ef2c543e") (:keywords "uml" "plantuml" "ascii") (:authors ("Zhang Weize (zwz)")) (:maintainer "Carlo Sciolla (skuro)"))]) (planet-theme . [(20161031 217) ((emacs (24))) "A dark theme inspired by Gmail's 'Planets' theme of yore" single ((:commit . "b0a310ff36565fe22224c407cf59569986698a32") (:keywords "themes") (:authors ("Charlie McMackin" . "charlie.mac@gmail.com")) (:maintainer "Charlie McMackin" . "charlie.mac@gmail.com") (:url . "https://github.com/cmack/emacs-planet-theme"))]) (plan9-theme . [(20180804 1441) nil "A color theme for Emacs based on Plan9" single ((:commit . "4c1050b8ed42e0f99ef64c77ec370a786bd0003c") (:authors ("John Louis Del Rosario" . "john2x@gmail.com")) (:maintainer "John Louis Del Rosario" . "john2x@gmail.com") (:url . "https://github.com/john2x/plan9-theme.el"))]) (plain-theme . [(20171124 410) ((emacs (24))) "Plain theme without syntax highlighting" single ((:commit . "a3d5389a44326314da21f147bad2ede60e2cf986"))]) (pkgbuild-mode . [(20181116 1331) ((emacs (25 1))) "Interface to the ArchLinux package manager" single ((:commit . "c27b65c3deb116b296cef013f342159d9dec5c11") (:keywords "languages") (:authors ("Juergen Hoetzel" . "juergen@hoetzel.info")) (:maintainer "Juergen Hoetzel" . "juergen@hoetzel.info") (:url . "https://github.com/juergenhoetzel/pkgbuild-mode"))]) (pkg-info . [(20150517 1143) ((epl (0 8))) "Information about packages" single ((:commit . "76ba7415480687d05a4353b27fea2ae02b8d9d61") (:keywords "convenience") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/lunaryorn/pkg-info.el"))]) (pixiv-novel-mode . [(20160220 1421) nil "Major mode for pixiv novel" single ((:commit . "0d1ca524d92b91f20a7105402a773bc21779b434") (:keywords "novel" "pixiv") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me"))]) (pixie-mode . [(20180626 541) ((clojure-mode (3 0 1)) (inf-clojure (1 0 0))) "Major mode for Pixie-lang" single ((:commit . "a40c2632cfbe948852a5cdcfd44e6a65db11834d") (:authors ("John Walker" . "john.lou.walker@gmail.com")) (:maintainer "John Walker" . "john.lou.walker@gmail.com") (:url . "https://github.com/johnwalker/pixie-mode"))]) (pivotal-tracker . [(20170720 1516) nil "Interact with Pivotal Tracker through its API" single ((:commit . "0311d117037c74512149a4a78b269c2e46d7dfba") (:authors ("John Andrews")) (:maintainer "John Andrews") (:url . "http://github.com/jxa/pivotal-tracker"))]) (pippel . [(20180710 856) ((emacs (25 1)) (s (1 11 0)) (dash (2 12 0))) "Frontend to python package manager pip" tar ((:commit . "21a5200e8e5ccaa1911abb4ebf090b76ca839756") (:authors ("Fritz Stelzer" . "brotzeitmacher@gmail.com")) (:maintainer "Fritz Stelzer" . "brotzeitmacher@gmail.com") (:url . "https://github.com/brotzeitmacher/pippel"))]) (pipenv . [(20180719 547) ((emacs (25 1)) (f (0 19 0)) (s (1 12 0))) "A Pipenv porcelain." single ((:commit . "5582bf60577de74e6301871c6b77ac86b6ce1970") (:authors ("Paul Walsh" . "paulywalsh@gmail.com")) (:maintainer "Paul Walsh" . "paulywalsh@gmail.com") (:url . "https://github.com/pwalsh/pipenv.el"))]) (pip-requirements . [(20181027 1629) ((dash (2 8 0))) "A major mode for editing pip requirements files." single ((:commit . "216cd1690f80cc965d4ae47b8753fc185f778ff6") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (pinyinlib . [(20170827 2142) nil "Convert first letter of Pinyin to Simplified/Traditional Chinese characters" single ((:commit . "45f05d3dbb4fe957f7ab332ca6f94675848b6aa3") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (pinyin-search . [(20160515 358) ((pinyinlib (0 1 0))) "Search Chinese by Pinyin" single ((:commit . "2e877a76851009d41bde66eb33182a03a7f04262") (:keywords "chinese" "search") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/pinyin-search.el"))]) (pinyin . [(20180620 1241) ((cl-lib (0 5)) (emacs (24))) "Convert Hanzi to Pinyin (汉字转拼音)" tar ((:commit . "a325e790e9dd7c5028c4c8d110b08e9d78227382") (:keywords "extensions") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/pinyin.el"))]) (pinot . [(20140211 2026) nil "Emacs interface to pinot-search" tar ((:commit . "67fda555a155b22bb2ce44ba618b4bd6fc5f144a") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>"))]) (pine-script-mode . [(20181110 151) ((emacs (24))) "Trading View Pine Script major mode" single ((:commit . "f7892d373e30df0b2e8d2191e4ddb2064a92dd3c") (:keywords "extensions") (:authors ("Eric Crosson" . "eric.s.crosson@utexas.edu")) (:maintainer "Eric Crosson" . "eric.s.crosson@utexas.edu") (:url . "https://github.com/ericcrosson/pine-script-mode"))]) (pinboard-popular . [(20180511 1726) ((loop (1 4))) "Displays links from the pinboard.in popular page." single ((:commit . "c0bc76cd35f8ecf34723c64a702b82eec2751318") (:keywords "pinboard") (:url . "https://github.com/asimpson/pinboard-popular"))]) (pinboard-api . [(20140324 1148) nil "Rudimentary http://pinboard.in integration" single ((:commit . "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4") (:keywords "pinboard" "www") (:authors ("Danie Roux" . "danie@danieroux.com")) (:maintainer "Danie Roux" . "danie@danieroux.com") (:url . "https://github.com/danieroux/pinboard-api-el"))]) (pillar . [(20141112 1811) ((makey (0 3))) "Major mode for editing Pillar files" tar ((:commit . "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909") (:keywords "markup" "major-mode") (:authors ("Damien Cassou" . "damien.cassou@gmail.com")) (:maintainer "Damien Cassou" . "damien.cassou@gmail.com") (:url . "http://github.com/DamienCassou/pillar-mode"))]) (pig-snippets . [(20130913 624) ((yasnippet (0 8 0))) "Snippets for pig-mode" tar ((:commit . "4c6c6e1b1bb719d8adc6c47cc24665f6fe558959"))]) (pig-mode . [(20180520 1400) nil "Major mode for Pig files" single ((:commit . "4c6c6e1b1bb719d8adc6c47cc24665f6fe558959") (:maintainer "David A. Shamma"))]) (picpocket . [(20180914 1819) ((emacs (24 4))) "Image viewer" single ((:commit . "6fd88b8711c4370662c0f9c462170187d092a046") (:keywords "multimedia") (:authors ("Johan Claesson" . "johanclaesson@bredband.net")) (:maintainer "Johan Claesson" . "johanclaesson@bredband.net") (:url . "https://github.com/johanclaesson/picpocket"))]) (picolisp-mode . [(20150516 855) nil "Major mode for PicoLisp programming." single ((:commit . "1a537b14090813f46cbba54636d40365e1a8067e") (:keywords "picolisp" "lisp" "programming") (:authors ("Alexis" . "flexibeast@gmail.com")) (:maintainer "Alexis" . "flexibeast@gmail.com") (:url . "https://github.com/flexibeast/picolisp-mode"))]) (pickle . [(20180628 237) ((emacs (25 1)) (cl-lib (0 6 1))) "Major mode for editing cucumber gherkin files." single ((:commit . "568570b7d376026fbcb7c3df1ad8f605bd14c820") (:keywords "languages" "cucumber" "gherkin") (:authors ("Matthew Carter" . "m@ahungry.com")) (:maintainer "Matthew Carter" . "m@ahungry.com") (:url . "https://github.com/ahungry/pickle-mode"))]) (pianobar . [(20180417 104) nil "thin wrapper for Pianobar, a Pandora Radio client" single ((:commit . "3154c4cb7401017fd441fcd6a7a0b669a4406882") (:authors ("Aaron Griffith" . "aargri@gmail.com")) (:maintainer "Aaron Griffith" . "aargri@gmail.com") (:url . "http://github.com/agrif/pianobar.el"))]) (phpunit . [(20180829 1438) ((s (1 12 0)) (f (0 19 0)) (pkg-info (0 6)) (cl-lib (0 5)) (emacs (24 3))) "Launch PHP unit tests using phpunit" tar ((:commit . "fe6bc91c3bd8b329c6d26ad883a025f06b5121ee") (:keywords "tools" "php" "tests" "phpunit") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com") ("Eric Hansen" . "hansen.c.eric@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/phpunit.el"))]) (phpstan . [(20180721 1935) ((emacs (24 3))) "Interface to PHPStan." single ((:commit . "beac0e0e7160454d4f42162b3502a36ccf488120") (:keywords "tools" "php") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/phpstan.el"))]) (phpcbf . [(20180519 838) ((s (1 9 0))) "Format PHP code in Emacs using PHP_CodeSniffer's phpcbf" single ((:commit . "a31020fc4c5add7339e009faea66894dc02a77f1") (:keywords "tools" "php") (:authors ("nishimaki10")) (:maintainer "nishimaki10") (:url . "https://github.com/nishimaki10/emacs-phpcbf"))]) (phpactor . [(20181028 556) ((emacs (24 3)) (cl-lib (0 5)) (f (0 17)) (composer (0 1))) "Interface to Phpactor" tar ((:commit . "eda8b34a729b3acb641aafa30552c501dec27d37") (:keywords "tools" "php") (:authors ("USAMI Kenta" . "tadsan@zonu.me") ("Mikael Kermorgant" . "mikael@kgtech.fi")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/phpactor.el"))]) (php-scratch . [(20161103 2217) ((emacs (24 3)) (s (1 11 0)) (php-mode (1 17 0))) "A scratch buffer to interactively evaluate php code" single ((:commit . "3aa66d1d53b84b779374edff7a7e6b5f2cd7575d") (:authors ("Tijs Mallaerts" . "tijs.mallaerts@gmail.com")) (:maintainer "Tijs Mallaerts" . "tijs.mallaerts@gmail.com"))]) (php-runtime . [(20180922 2215) ((emacs (25)) (cl-lib (0 5))) "Language binding bridge to PHP" single ((:commit . "a205c8dc4d19619b5e37478caeec0c74b7502b3c") (:keywords "processes" "php") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/php-runtime.el"))]) (php-refactor-mode . [(20171124 635) nil "Minor mode to quickly and safely perform common refactorings" single ((:commit . "7a794b0618df2882b1bd586fdd698dba0bc5130d") (:keywords "php" "refactor") (:authors ("Matthew M. Keeler" . "keelerm84@gmail.com")) (:maintainer "Matthew M. Keeler" . "keelerm84@gmail.com") (:url . "https://github.com/keelerm84/php-refactor-mode.el"))]) (php-mode . [(20180829 520) ((emacs (24 3)) (cl-lib (0 5))) "Major mode for editing PHP code" tar ((:commit . "1f04813f46219e626b385d0d96abefad914bfae0") (:keywords "languages" "php") (:authors ("Eric James Michael Ritz")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/php-mode"))]) (php-eldoc . [(20140202 1941) nil "eldoc backend for php" tar ((:commit . "df05064146b884d9081e10657e32dc480f070cfe") (:authors ("sabof")) (:maintainer "sabof") (:url . "https://github.com/sabof/php-eldoc"))]) (php-cs-fixer . [(20170506 1833) ((cl-lib (0 5))) "php-cs-fixer wrapper." single ((:commit . "ca2c075a22ad156c336d2aa093fb6394c9f6c112") (:keywords "languages" "php") (:authors ("Philippe Ivaldi for OVYA")) (:maintainer "Philippe Ivaldi for OVYA") (:url . "https://github.com/OVYA/php-cs-fixer"))]) (php-boris-minor-mode . [(20140209 1835) ((php-boris (0 0 1)) (highlight (0))) "a minor mode to evaluate PHP code in the Boris repl" single ((:commit . "c70e176dd6545f2d42ca3427e87b469635616d8a") (:keywords "php" "repl" "eval") (:authors ("steckerhalter")) (:maintainer "steckerhalter") (:url . "https://github.com/steckerhalter/php-boris-minor-mode"))]) (php-boris . [(20130527 821) nil "Run boris php REPL" single ((:commit . "f2faebf610c917f7091f7ec0cd97645629c4f819") (:keywords "php" "commint" "repl" "boris") (:authors ("Tom Regner")) (:maintainer "Tom Regner" . "tom@goochesa.de"))]) (php-auto-yasnippets . [(20170331 114) ((php-mode (1 11)) (yasnippet (0 8 0))) "Creates snippets for PHP functions" tar ((:commit . "03e1f0899c081813901ac15c2f7a675a37cca9f5") (:authors ("Eric James Michael Ritz")) (:maintainer "Eric James Michael Ritz") (:url . "https://github.com/ejmr/php-auto-yasnippets"))]) (phoenix-dark-pink-theme . [(20170729 1403) nil "Originally a port of the Sublime Text 2 theme" single ((:commit . "4defbb76b00c1a29f060813898578152d6be623d") (:authors ("J Irving" . "j@lollyshouse.ca")) (:maintainer "J Irving" . "j@lollyshouse.ca") (:url . "http://github.com/j0ni/phoenix-dark-pink"))]) (phoenix-dark-mono-theme . [(20170729 1406) nil "Monochromatic version of the Phoenix theme" single ((:commit . "a54f515d162148bcb38676980bc2316adb3d7b8b") (:authors ("J Irving" . "j@lollyshouse.ca")) (:maintainer "J Irving" . "j@lollyshouse.ca") (:url . "http://github.com/j0ni/phoenix-dark-mono"))]) (phi-search-migemo . [(20170618 921) ((phi-search (2 2 0)) (migemo (1 9 1))) "migemo extension for phi-search" single ((:commit . "308909ebfc8003d16673f97ca9eb26a667b72969") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (phi-search-mc . [(20160324 1503) ((phi-search (2 0 0)) (multiple-cursors (1 2 1))) "multiple-cursors extension for phi-search" single ((:commit . "7aa671910f766437089aec26c3aa7814222d1356") (:keywords "search" "cursors") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/phi-search-mc.el"))]) (phi-search-dired . [(20150405 714) ((phi-search (2 2 0))) "interactive filtering for dired powered by phi-search" single ((:commit . "162a5e4507c72512affae22744bb606a906d4193") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (phi-search . [(20180322 129) nil "another incremental search & replace, compatible with \"multiple-cursors\"" tar ((:commit . "9a089b8271cb1cff9640848850298c9ec855286c") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (phi-rectangle . [(20151208 654) nil "another rectangle-mark command (rewrite of rect-mark)" single ((:commit . "0c12716afc71d803d1f39417469521dc465762d9") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (phi-grep . [(20170606 807) ((cl-lib (0 1))) "Interactively-editable recursive grep implementation in elisp" single ((:commit . "ab9bd8d25e751a9cbfa108b49839293230b6e8b5") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://github.com/zk-phi/phi-grep"))]) (phi-autopair . [(20170217 353) ((paredit (20))) "another simple-minded autopair implementation" single ((:commit . "3c7556779c3a53b045f5df33ae2a0c67469cbf60") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (phan . [(20180528 339) ((emacs (24)) (composer (0 0 8)) (f (0 17))) "Utility functions for Phan (PHP static analizer)" single ((:commit . "6b077b3421a0b2c0b98a6906b8ab0d14d9d7bf50") (:keywords "tools" "php") (:authors ("USAMI Kenta" . "tadsan@pixiv.com")) (:maintainer "USAMI Kenta" . "tadsan@pixiv.com") (:url . "https://github.com/emacs-php/phan.el"))]) (phabricator . [(20160510 1425) ((emacs (24 4)) (dash (1 0)) (projectile (0 13 0)) (s (1 10 0)) (f (0 17 2))) "Phabricator/Arcanist helpers for Emacs." single ((:commit . "d09d6f059aea92d3b11c68664a5e80c901182ab8") (:keywords "phabricator" "arcanist" "diffusion") (:authors ("Andrew Tulloch")) (:maintainer "Andrew Tulloch") (:url . "https://github.com/ajtulloch/phabricator.el"))]) (ph . [(20161029 1522) ((emacs (24 3))) "A global minor mode for managing multiple projects." tar ((:commit . "ed80dad9211583ed0db633448b3624c99b7fac23"))]) (pgdevenv . [(20150105 2236) nil "Manage your PostgreSQL development envs" tar ((:commit . "7f1d5bc734750aca98cf67a9491cdbd5615fd132") (:keywords "emacs" "postgresql" "development" "environment" "shell" "debug" "gdb") (:authors ("Dimitri Fontaine" . "dim@tapoueh.org")) (:maintainer "Dimitri Fontaine" . "dim@tapoueh.org"))]) (pg . [(20130731 2142) nil "Emacs Lisp interface to the PostgreSQL RDBMS" single ((:commit . "4f6516ec3946d95dcef49abb6703cc89ecb5183d") (:keywords "data" "comm" "database" "postgresql") (:authors ("Eric Marsden" . "emarsden@laas.fr")) (:maintainer "Helmut Eller" . "heller@common-lisp.net"))]) (pfuture . [(20180922 1315) ((emacs (25 2))) "a simple wrapper around asynchronous processes" single ((:commit . "c06e78b37ac3fba72ea446f11da38a6a5cba428c") (:authors ("Alexander Miller" . "alexanderm@web.de")) (:maintainer "Alexander Miller" . "alexanderm@web.de") (:url . "https://github.com/Alexander-Miller/pfuture"))]) (perspeen . [(20171203 1021) ((emacs (25 0)) (powerline (2 4))) "An package for multi-workspace" tar ((:commit . "edb70c530bda50ff3d1756e32a703d5fef5e5480") (:keywords "lisp") (:authors ("Peng Li" . "seudut@gmail.com")) (:maintainer "Peng Li" . "seudut@gmail.com") (:url . "https://github.com/seudut/perspeen"))]) (perspective . [(20181120 114) ((cl-lib (0 5))) "switch between named \"perspectives\" of the editor" single ((:commit . "2c8cf56d170c3eb1fcc1a8fe41026b780e0ffead") (:keywords "workspace" "convenience" "frames") (:authors ("Natalie Weizenbaum" . "nex342@gmail.com")) (:maintainer "Natalie Weizenbaum" . "nex342@gmail.com") (:url . "http://github.com/nex3/perspective-el"))]) (persp-projectile . [(20180616 1944) ((perspective (1 9)) (projectile (0 11 0)) (cl-lib (0 3))) "Perspective integration with Projectile" single ((:commit . "533808b3e4f8f95a1e3ed9c55d9aa720277ebd5f") (:keywords "project" "convenience") (:authors ("Daniel Wu")) (:maintainer "Daniel Wu"))]) (persp-mode-projectile-bridge . [(20170315 1120) ((persp-mode (2 9)) (projectile (0 13 0)) (cl-lib (0 5))) "persp-mode + projectile integration." single ((:commit . "f6453cd7b8b4352c06e771706f2c5b7e2cdff1ce") (:keywords "persp-mode" "projectile") (:authors ("Constantin Kulikov (Bad_ptr)" . "zxnotdead@gmail.com")) (:maintainer "Constantin Kulikov (Bad_ptr)" . "zxnotdead@gmail.com") (:url . "https://github.com/Bad-ptr/persp-mode-projectile-bridge.el"))]) (persp-mode . [(20180930 1720) nil "windows/buffers sets shared among frames + save/load." single ((:commit . "689f63e7370cd9424d84b9f7b2eb3d1955443313") (:keywords "perspectives" "session" "workspace" "persistence" "windows" "buffers" "convenience") (:authors ("Constantin Kulikov (Bad_ptr)" . "zxnotdead@gmail.com")) (:maintainer "Constantin Kulikov (Bad_ptr)" . "zxnotdead@gmail.com") (:url . "https://github.com/Bad-ptr/persp-mode.el"))]) (persp-fr . [(20180801 727) ((emacs (25 0)) (persp-mode (2 9 6)) (dash (2 13 0))) "In persp-mode, show perspective list in the GUI window title" single ((:commit . "3f536440b120499464106fd25f182d7580192870") (:keywords "perspectives" "workspace" "windows" "convenience") (:authors ("Francesc Rocher" . "francesc.rocher@gmail.com")) (:maintainer "Francesc Rocher" . "francesc.rocher@gmail.com") (:url . "http://github.com/rocher/persp-fr"))]) (persistent-soft . [(20150223 1853) ((pcache (0 3 1)) (list-utils (0 4 2))) "Persistent storage, returning nil on failure" single ((:commit . "a1e0ddf2a12a6f18cab565dee250f070384cbe02") (:keywords "data" "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/persistent-soft"))]) (persistent-scratch . [(20180929 1413) ((emacs (24))) "Preserve the scratch buffer across Emacs sessions" single ((:commit . "2e6678a837db85e68da713bbd4772c7fb88d83d4") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/persistent-scratch"))]) (persistent-overlays . [(20161128 700) nil "Minor mode to store selected overlays to be loaded later" tar ((:commit . "f563c8b966edc78c9d806661c4eb80e4781c4eab") (:keywords "overlays" "persistent") (:authors ("Michael Neilly" . "mneilly@yahoo.com")) (:maintainer "Michael Neilly" . "mneilly@yahoo.com") (:url . "https://github.com/mneilly/Emacs-Persistent-Overlays"))]) (perlbrew . [(20161109 709) nil "A perlbrew wrapper for Emacs" single ((:commit . "3a3406c3307c92aa30f9400d430925c434a3b6f0") (:keywords "emacs" "perl") (:authors ("Kentaro Kuribayashi" . "kentarok@gmail.com")) (:maintainer "Kentaro Kuribayashi" . "kentarok@gmail.com"))]) (perl6-mode . [(20180619 1159) ((emacs (24 4)) (pkg-info (0 1))) "Major mode for editing Perl 6 code" tar ((:commit . "88de065795d6863b23b6042576b9e90f8cbf8798") (:keywords "languages") (:authors ("Hinrik Örn Sigurðsson" . "hinrik.sig@gmail.com")) (:maintainer "Hinrik Örn Sigurðsson" . "hinrik.sig@gmail.com") (:url . "https://github.com/hinrik/perl6-mode"))]) (per-buffer-theme . [(20160318 2201) ((cl-lib (0 5))) "Change theme according to buffer name or major mode." single ((:keywords "themes") (:authors ("Iñigo Serna" . "inigoserna@gmail.com")) (:maintainer "Iñigo Serna" . "inigoserna@gmail.com") (:url . "https://bitbucket.com/inigoserna/per-buffer-theme.el"))]) (pelican-mode . [(20180604 2207) ((emacs (25))) "Minor mode for editing Pelican sites" single ((:commit . "209ad24318e1f28675da430aa10ef3467694b9ac") (:keywords "convenience" "editing") (:authors ("Joe Wreschnig" . "joe.wreschnig@gmail.com")) (:maintainer "Joe Wreschnig" . "joe.wreschnig@gmail.com") (:url . "https://git.korewanetadesu.com/pelican-mode.git"))]) (peg . [(20150708 641) nil "Parsing Expression Grammars in Emacs Lisp" single ((:commit . "081efeca91d790c7fbc90871ac22c40935f4833b"))]) (peep-dired . [(20160321 2237) nil "Peep at files in another window from dired buffers" single ((:commit . "c88a9a3050197840edfe145f11e0bb9488de32f4") (:keywords "files" "convenience") (:authors ("Adam Sokolnicki" . "adam.sokolnicki@gmail.com")) (:maintainer "Adam Sokolnicki" . "adam.sokolnicki@gmail.com"))]) (peek-mode . [(20130620 1946) ((elnode (0 9 8 1))) "Serve buffers live over HTTP with elnode backend" tar ((:commit . "55a7dd011375330c7d57322257a5167516702c71") (:authors ("Erik Iverson" . "erik@sigmafield.org")) (:maintainer "Erik Iverson" . "erik@sigmafield.org") (:url . "https://github.com/erikriverson/peek-mode"))]) (peacock-theme . [(20170808 1320) ((emacs (24 0))) "an Emacs 24 theme based on Peacock (tmTheme)" single ((:commit . "9e46fbfb562b6e26c6e3d6d618b044b3694da4c8") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (pdfgrep . [(20181007 1728) ((emacs (24 4))) "run `pdfgrep' and display the results." single ((:commit . "e251cd5c88a4ba5cb69008ba412d329f4d59e1d2") (:keywords "extensions" "mail" "pdf" "grep") (:authors ("Jérémy Compostella" . "jeremy.compostella@gmail.com")) (:maintainer "Jérémy Compostella" . "jeremy.compostella@gmail.com") (:url . "https://github.com/jeremy-compostella/pdfgrep"))]) (pdf-tools . [(20181118 2051) ((emacs (24 3)) (tablist (0 70)) (let-alist (1 0 4))) "Support library for PDF documents." tar ((:commit . "9e765939ee42d59ba0280e52a2ce70f41c61f71e") (:keywords "files" "multimedia") (:authors ("Andreas Politz" . "politza@fh-trier.de")) (:maintainer "Andreas Politz" . "politza@fh-trier.de"))]) (pdb-mode . [(20150128 1751) nil "Major mode for editing Protein Data Bank files" single ((:commit . "855fb18ebb73b5df30c8d7677c2bcd0f361b138a") (:keywords "data" "pdb") (:authors (nil . "charles.bond@uwa.edu.au")) (:maintainer nil . "aix.bing@gmail.com") (:url . "http://bondxray.org/software/pdb-mode/"))]) (pcsv . [(20150220 1131) nil "Parser of csv" single ((:commit . "798e0933f8d0818beb17aebf3b1056bbf74e03d0") (:keywords "data") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-pcsv/raw/master/pcsv.el"))]) (pcre2el . [(20161120 2103) ((emacs (24)) (cl-lib (0 3))) "regexp syntax converter" single ((:commit . "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d") (:authors ("joddie <jonxfield at gmail.com>")) (:maintainer "joddie <jonxfield at gmail.com>") (:url . "https://github.com/joddie/pcre2el"))]) (pcomplete-extension . [(20180707 455) ((emacs (24)) (cl-lib (0 5))) "additional completion for pcomplete" single ((:commit . "bb941272b54f49f780819f7ce4fd2c802de9a0da") (:authors ("Thierry Volpiatto" . "thierry.volpiatto@gmail.com")) (:maintainer "Thierry Volpiatto" . "thierry.volpiatto@gmail.com") (:url . "https://github.com/thierryvolpiatto/pcomplete-extension"))]) (pcmpl-pip . [(20171201 833) ((s (1 12 0)) (f (0 19 0)) (seq (2 15))) "pcomplete for pip" single ((:commit . "8b001b579fc015f80ee0e4f3211058b830bf7c47") (:keywords "pcomplete" "pip" "python" "tools") (:authors ("Wei Zhao" . "kaihaosw@gmail.com")) (:maintainer "Wei Zhao" . "kaihaosw@gmail.com"))]) (pcmpl-homebrew . [(20181105 309) nil "pcomplete for homebrew" single ((:commit . "3dc4eb22231d82edb9d33d17287bd9a018f7645e") (:keywords "pcomplete" "homebrew" "tools" "cask" "services") (:authors ("hiddenlotus" . "kaihaosw@gmail.com")) (:maintainer "hiddenlotus" . "kaihaosw@gmail.com"))]) (pcmpl-git . [(20170121 59) nil "pcomplete for git" tar ((:commit . "9472ac70baeda025ef7becd1cf141d72aec93f32") (:keywords "tools") (:authors ("Leo Liu" . "sdl.web@gmail.com")) (:maintainer "Leo Liu" . "sdl.web@gmail.com"))]) (pcmpl-args . [(20120912 524) nil "Enhanced shell command completion" single ((:commit . "2ba03b3125ada8037585e545b88bd85b79da5c37") (:keywords "abbrev" "completion" "convenience" "processes" "terminals" "unix") (:authors ("Jonathan Waltman" . "jonathan.waltman@gmail.com")) (:maintainer "Jonathan Waltman" . "jonathan.waltman@gmail.com") (:url . "https://github.com/JonWaltman/pcmpl-args.el"))]) (pcap-mode . [(20161025 1448) ((emacs (24 3))) "Major mode for working with PCAP files" single ((:commit . "52780669af0ade136f84d73f21b4dbb7ab655416") (:keywords "pcap" "packets" "tcpdump" "wireshark" "tshark") (:authors ("Aaron Conole" . "aconole@bytheb.org")) (:maintainer "Aaron Conole" . "aconole@bytheb.org"))]) (pcache . [(20170105 2214) ((eieio (1 3))) "persistent caching for Emacs." single ((:commit . "1f8086077d770e524492e6fa59b07856e85a6fea") (:authors ("Yann Hodique" . "yann.hodique@gmail.com")) (:maintainer "Yann Hodique" . "yann.hodique@gmail.com"))]) (pc-bufsw . [(20180107 1840) nil "PC style quick buffer switcher" single ((:commit . "b99ba484e18ebf2b88654704146746490bb7625f") (:keywords "buffer") (:authors ("Igor Bukanov" . "igor@mir2.org")) (:maintainer "Igor Bukanov" . "igor@mir2.org") (:url . "https://github.com/ibukanov/pc-bufsw"))]) (pbcopy . [(20150225 459) nil "Emacs Interface to pbcopy" single ((:commit . "338f7245746b5de1bb96c5cc2b32bfd9b5d83272") (:keywords "mac" "osx" "pbcopy") (:authors ("Daniel Nelson")) (:maintainer "Daniel Nelson") (:url . "https://github.com/jkp/pbcopy.el"))]) (paxedit . [(20160730 1727) ((cl-lib (0 5)) (paredit (23))) "Structured, Context Driven LISP Editing and Refactoring" single ((:commit . "09f3d5aeb108937a801e77ef413e29eaa4ecc4be") (:keywords "lisp" "refactoring" "context") (:authors ("Mustafa Shameem")) (:maintainer "Mustafa Shameem") (:url . "https://github.com/promethial/paxedit"))]) (pathify . [(20160423 846) nil "Symlink your scripts into a PATH directory" single ((:commit . "401b184c743694a60b3bc4273fc43de05cd5ac4b") (:keywords "convenience") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://gitlab.com/alezost-emacs/pathify"))]) (path-helper . [(20181112 1828) ((emacs (24))) "Set PATH environment variables from config files" single ((:commit . "f04b637aca9d2d87bb14896ac8961668284a0fb9") (:keywords "tools" "unix") (:authors ("Arnaud Rouanet" . "arnaud@rouanet.org")) (:maintainer "Arnaud Rouanet" . "arnaud@rouanet.org") (:url . "https://github.com/arouanet/path-helper"))]) (path-headerline-mode . [(20140423 1332) nil "Displaying file path on headerline." single ((:commit . "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69") (:keywords "headerline") (:authors ("7696122")) (:maintainer "7696122") (:url . "https://github.com/7696122/path-headerline-mode"))]) (pastery . [(20171114 349) ((emacs (24 4)) (request (0 2 0))) "paste snippets to pastery.net." tar ((:commit . "4493be98b743b4d062cb4e00760125e394a55022") (:keywords "tools") (:authors ("Bruno Dias" . "dias.h.bruno@gmail.com")) (:maintainer "Bruno Dias" . "dias.h.bruno@gmail.com") (:url . "https://github.com/diasbruno/pastery.el"))]) (pastelmac-theme . [(20151031 236) ((emacs (24 1))) "a soothing theme with a pastel color palette" single ((:commit . "bead21741e3f46f6506e8aef4469d4240a819389") (:keywords "themes") (:authors ("Brian Mastenbrook" . "brian@mastenbrook.net")) (:maintainer "Brian Mastenbrook" . "brian@mastenbrook.net") (:url . "https://github.com/bmastenbrook/pastelmac-theme-el"))]) (pastehub . [(20140615 620) nil "A client for the PasteHub cloud service" single ((:commit . "37b045c67659c078f1517d0fbd5282dab58dca23") (:authors ("Kiyoka Nishiyama")) (:maintainer "Kiyoka Nishiyama") (:url . "https://github.com/kiyoka/pastehub"))]) (pastebin . [(20101125 2002) nil "A simple interface to the www.pastebin.com webservice" single ((:commit . "8e9a829298ce0f747ab80758aa26caeb2af6cb30"))]) (paste-of-code . [(20170709 2355) ((emacs (24 3)) (request (0 2 0))) "paste code on https://paste.ofcode.org" single ((:commit . "92d258e8ec98598d847ecab82903f9224c7c2050") (:keywords "lisp") (:authors ("Bernhard Specht" . "bernhard@specht.net")) (:maintainer "Bernhard Specht" . "bernhard@specht.net"))]) (password-vault . [(20160126 1820) ((cl-lib (0 2)) (emacs (24))) "A Password manager for Emacs." single ((:commit . "dc56e6c2f5da66f1ab63736cecf08fb2c6c2b30f") (:keywords "password" "productivity") (:authors ("Javier \"PuercoPop\" Olaechea" . "pirata@gmail.com")) (:maintainer "Javier \"PuercoPop\" Olaechea" . "pirata@gmail.com") (:url . "http://github.com/PuercoPop/password-vault"))]) (password-store-otp . [(20180815 610) ((emacs (25)) (s (1 9 0)) (password-store (0 1))) "Password store (pass) OTP extension support" single ((:commit . "1819cd88463cd98a5be9a63273b09202dc2bba63") (:keywords "tools" "pass") (:authors ("Daniel Barreto")) (:maintainer "Daniel Barreto") (:url . "https://github.com/volrath/password-store-otp.el"))]) (password-store . [(20181031 1440) ((emacs (24)) (f (0 11 0)) (s (1 9 0)) (with-editor (2 5 11))) "Password store (pass) support" single ((:commit . "d29a389a40524c684595f51bb937f66958bc14ea") (:keywords "tools" "pass" "password" "password-store") (:authors ("Svend Sorensen" . "svend@svends.net")) (:maintainer "Svend Sorensen" . "svend@svends.net") (:url . "https://www.passwordstore.org/"))]) (password-mode . [(20170412 629) nil "Hide password text using overlays" single ((:commit . "ed764a4ec1011526457c71b7c37fa9a659a866ab") (:keywords "docs" "password" "passphrase") (:authors ("Jürgen Hötzel" . "juergen@archlinux.org")) (:maintainer "Jürgen Hötzel" . "juergen@archlinux.org"))]) (password-generator . [(20150222 2040) nil "Password generator for humans. Good, Bad, Phonetic passwords included." single ((:commit . "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282") (:authors ("Zargener" . "zargener@gmail.com")) (:maintainer "Zargener" . "zargener@gmail.com") (:url . "http://github.com/zargener/emacs-password-genarator"))]) (passthword . [(20141201 923) ((cl-lib (0 5))) "Simple password manager" single ((:commit . "30bace842eaaa6b48cb2251fb84868ebca0467d6") (:authors ("Peter Stiernström" . "peter@stiernstrom.se")) (:maintainer "Peter Stiernström" . "peter@stiernstrom.se"))]) (passmm . [(20180622 2326) ((emacs (24 4)) (password-store (0))) "A minor mode for pass (Password Store)." single ((:commit . "898709c63130d6c0422af544ebac64eae04d24ac") (:authors ("Peter Jones" . "pjones@devalot.com")) (:maintainer "Peter Jones" . "pjones@devalot.com") (:url . "https://github.com/pjones/passmm"))]) (pass . [(20180201 1251) ((emacs (24 3)) (password-store (0 1)) (password-store-otp (0 1 5)) (f (0 17))) "Major mode for password-store.el" single ((:commit . "da08fed8dbe1bac980088d47b01f90154dbb8d8b") (:keywords "password-store" "password" "keychain") (:authors ("Nicolas Petton" . "petton.nicolas@gmail.com") ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Nicolas Petton" . "petton.nicolas@gmail.com"))]) (pasp-mode . [(20180404 1700) ((emacs (24 3))) "- A major mode for editing Answer Set Programs." single ((:commit . "59385eb0e8ebcfc8c11dd811fb145d4b0fa3cc92") (:keywords "asp" "pasp" "answer set programs" "potassco answer set programs" "major mode" "languages") (:authors ("Henrik Jürges" . "juerges.henrik@gmail.com")) (:maintainer "Henrik Jürges" . "juerges.henrik@gmail.com") (:url . "https://github.com/santifa/pasp-mode"))]) (parseclj . [(20180602 2006) ((emacs (25)) (a (0 1 0 -3 4))) "Clojure/EDN parser" tar ((:commit . "dc0d165b0a8633f5b11ed9175a6e421c52f4d314") (:keywords "lisp") (:authors ("Arne Brasseur" . "arne@arnebrasseur.net")) (:maintainer "Arne Brasseur" . "arne@arnebrasseur.net"))]) (parsec . [(20180730 16) ((emacs (24)) (cl-lib (0 5))) "Parser combinator library" single ((:commit . "2cbbbc2254aa7bcaa4fb5e07c8c1bf2f381dba26") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com") (:url . "https://github.com/cute-jumper/parsec.el"))]) (parsebib . [(20181031 1021) ((emacs (24 3))) "A library for parsing bib files" single ((:commit . "27b30f5220b80637ed55f3b062ce2823adb40477") (:keywords "text" "bibtex") (:authors ("Joost Kremers" . "joostkremers@fastmail.fm")) (:maintainer "Joost Kremers" . "joostkremers@fastmail.fm"))]) (parse-csv . [(20160512 1723) nil "Parse strings with CSV fields into s-expressions" single ((:commit . "96bef1ffbc89ea12d13311c9fa239c5c3e864890") (:keywords "csv") (:authors ("Edward Marco Baringer (Common Lisp)") ("Matt Curtis" . "matt.r.curtis@gmail.com")) (:maintainer "Matt Curtis" . "matt.r.curtis@gmail.com") (:url . "https://github.com/mrc/el-csv"))]) (parrot . [(20181026 1612) ((emacs (24 1))) "Party Parrot rotates gracefully in mode-line." tar ((:commit . "2403f11e7e238b57629edd446da47828a3f549b7") (:keywords "party" "parrot" "rotate" "sirocco" "kakapo" "games") (:authors ("Daniel Ting" . "deep.paren.12@gmail.com")) (:maintainer "Daniel Ting" . "deep.paren.12@gmail.com") (:url . "https://github.com/dp12/parrot.git"))]) (parinfer . [(20180904 844) ((dash (2 13 0)) (cl-lib (0 5))) "Simpler Lisp editing" tar ((:commit . "a7c041454e05ec2b88333a73e72debaa671ed596") (:keywords "parinfer") (:authors ("Shi Tianshu")) (:maintainer "Shi Tianshu") (:url . "https://github.com/DogLooksGood/parinfer-mode"))]) (parent-mode . [(20150824 2300) nil "get major mode's parent modes" single ((:commit . "db692cf08deff2f0e973e6e86e26662b44813d1b") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/parent-mode"))]) (paren-face . [(20180318 2025) nil "a face for parentheses in lisp modes" single ((:commit . "a45d111153a76c481fa0b36d6172ac90e073dfc4") (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/paren-face"))]) (paren-completer . [(20160501 1052) ((emacs (24 3))) "Automatically, language agnostically, fill in delimiters." single ((:commit . "74183a8e13fa1266271bdcbcb4bfb29a4f915f0a") (:keywords "convenience") (:authors ("Matthew Bregg")) (:maintainer "Matthew Bregg") (:url . "https://github.com/MatthewBregg/paren-completer"))]) (paredit-menu . [(20160128 1733) ((paredit (25))) "Adds a menu to paredit.el as memory aid" single ((:commit . "cc0ae85bd819f9ebfa4f2a419ab3b2d70e39c9c8") (:keywords "paredit") (:authors ("Phillip Lord" . "phillip.lord@newcastle.ac.uk")) (:maintainer "Phillip Lord" . "phillip.lord@newcastle.ac.uk"))]) (paredit-everywhere . [(20180506 849) ((paredit (22))) "Enable some paredit features in non-lisp buffers" single ((:commit . "653d7a58fb370d5f7df367464d8d05e23a70b29d") (:keywords "languages" "convenience") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (paredit . [(20171127 205) nil "minor mode for editing parentheses" single ((:commit . "acbe10fdd85d2e91831adf70b6a828bc7e900da0") (:keywords "lisp") (:authors ("Taylor R. Campbell" . "campbell+paredit@mumble.net")) (:maintainer "Taylor R. Campbell" . "campbell+paredit@mumble.net"))]) (paradox . [(20181027 2234) ((emacs (24 4)) (seq (1 7)) (let-alist (1 0 3)) (spinner (1 7 3)) (hydra (0 13 2))) "A modern Packages Menu. Colored, with package ratings, and customizable." tar ((:commit . "798bdabdca6575d677631b1c482e975c9372d536") (:keywords "package" "packages") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "https://github.com/Malabarba/paradox"))]) (paperless . [(20180224 1245) ((emacs (24 4)) (f (0 11 0)) (s (1 10 0)) (cl-lib (0 6 1))) "A major mode for sorting and filing PDF documents." tar ((:commit . "b3b6c05da393f6b1292a3d5937bc4499baabd0b6") (:keywords "pdf" "convenience") (:authors ("Anthony Green" . "green@moxielogic.com")) (:maintainer "Anthony Green" . "green@moxielogic.com") (:url . "http://github.com/atgreen/paperless"))]) (paper-theme . [(20180429 2215) ((emacs (24))) "A minimal Emacs colour theme." single ((:commit . "05f2655321f020fd4c069d1939f0902eaa837eb4") (:keywords "theme" "paper") (:authors ("Göktuğ Kayaalp")) (:maintainer "Göktuğ Kayaalp") (:url . "https://cadadr.github.io/elisp/index.html#paper"))]) (pangu-spacing . [(20170317 857) nil "Minor-mode to add space between Chinese and English characters." single ((:commit . "a4463dbb74abdeddb6c1c132a1f8fcf67ed87498") (:authors ("coldnew" . "coldnew.tw@gmail.com")) (:maintainer "coldnew" . "coldnew.tw@gmail.com") (:url . "http://github.com/coldnew/pangu-spacing"))]) (pandoc-mode . [(20180917 721) ((hydra (0 10 0)) (dash (2 10 0))) "Minor mode for interacting with Pandoc" tar ((:commit . "d594ce399fc75eb553a6d8572713b827f744d95b") (:keywords "text" "pandoc") (:authors ("Joost Kremers" . "joostkremers@fastmail.fm")) (:maintainer "Joost Kremers" . "joostkremers@fastmail.fm"))]) (pandoc . [(20161128 1157) ((emacs (24 4))) "Pandoc interface" single ((:commit . "198d262d09e30448f1672338b0b5a81cf75e1eaa") (:keywords "hypermedia" "documentation" "markup" "converter") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/pandoc.el"))]) (panda-theme . [(20180807 1143) ((emacs (24))) "Panda Theme" single ((:commit . "53b4cbb6bfdd531a8366bf1d01eede420e1f93c9") (:authors ("jamiecollinson" . "jamiecollinson@gmail.com")) (:maintainer "jamiecollinson" . "jamiecollinson@gmail.com") (:url . "https://github.com/jamiecollinson/emacs-panda-theme"))]) (pamparam . [(20180415 748) ((emacs (24 3)) (lispy (0 26 0)) (worf (0 1 0)) (hydra (0 13 4))) "Simple and fast flashcards." single ((:commit . "8fa25d06fb2ae6d992e738a10d8b2150e109d9bf") (:keywords "outlines" "hypermedia" "flashcards" "memory") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/pamparam"))]) (pallet . [(20150512 702) ((dash (2 10 0)) (s (1 9 0)) (f (0 17 1)) (cask (0 7))) "A package management tool for Emacs, using Cask." tar ((:commit . "b8d0df1883224a371ac0a3bc9b9c1c4dc61e6ac0"))]) (palimpsest . [(20170119 2032) nil "Various deletion strategies when editing" single ((:commit . "e6d5944393c260ceb724462c84046cc62c9ae916") (:authors ("Daniel Szmulewicz" . "daniel.szmulewicz@gmail.com")) (:maintainer "Daniel Szmulewicz" . "daniel.szmulewicz@gmail.com"))]) (pager-default-keybindings . [(20130719 2057) ((pager (1 0))) "Add the default keybindings suggested for pager.el" single ((:commit . "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3") (:authors ("Nathaniel Flath" . "nflath@gmail.com")) (:maintainer "Nathaniel Flath" . "nflath@gmail.com") (:url . "http://github.com/nflath/pager-default-keybindings"))]) (pager . [(20151202 120) nil "windows-scroll commands" single ((:commit . "5c791ed23f1136e04040d6f4bc9b4ca5b6dc919f") (:authors (nil . "Mikael Sjödin  --  mic@docs.uu.se")) (:maintainer nil . "Mikael Sjödin  --  mic@docs.uu.se"))]) (page-break-lines . [(20171210 831) ((emacs (24 4))) "Display ^L page breaks as tidy horizontal lines" single ((:commit . "fd3b7e38ad8747cd009ead7ef1bb150849ccc693") (:keywords "convenience" "faces") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/page-break-lines"))]) (paganini-theme . [(20180815 1921) ((emacs (24 0))) "A colorful, dark and warm theme." single ((:commit . "255c5a2a8abee9c5935465ec42b9c3604c178c3c") (:authors ("Onur Temizkan")) (:maintainer "Onur Temizkan") (:url . "https://github.com/onurtemizkan/paganini"))]) (pact-mode . [(20180905 1647) ((emacs (24 3))) "Mode for Pact, a LISPlike smart contract language." single ((:commit . "e4e4487c1d55b3fb8775abd948be28442efcffec") (:keywords "pact" "lisp" "languages" "blockchain" "smartcontracts" "tools" "mode") (:authors ("Stuart Popejoy")) (:maintainer "Stuart Popejoy" . "stuart@kadena.io") (:url . "https://github.com/kadena-io/pact-mode"))]) (pacmacs . [(20160131 832) ((emacs (24 4)) (dash (2 11 0)) (dash-functional (1 2 0)) (cl-lib (0 5)) (f (0 18 0))) "Pacman for Emacs" tar ((:commit . "d813e9c62c2540fe619234824fc60e128c786442") (:authors ("Codingteam" . "codingteam@conference.jabber.ru")) (:maintainer "Alexey Kutepov" . "reximkut@gmail.com") (:url . "http://github.com/codingteam/pacmacs.el"))]) (packed . [(20180318 1729) ((emacs (24 3))) "package manager agnostic Emacs Lisp package utilities" single ((:commit . "c41c3dfda86ae33832ffc146923e2a4675cbacfa") (:keywords "compile" "convenience" "lisp" "package" "library") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/emacscollective/packed"))]) (package-utils . [(20180514 1415) ((restart-emacs (0 1 1))) "Extensions for package.el" single ((:commit . "5621b95c56b55499f0463fd8b29501da25d861bd") (:keywords "package" "convenience") (:authors ("Philippe Vaucher" . "philippe.vaucher@gmail.com")) (:maintainer "Philippe Vaucher" . "philippe.vaucher@gmail.com") (:url . "https://github.com/Silex/package-utils"))]) (package-safe-delete . [(20150116 1607) ((emacs (24)) (epl (0 7 -4))) "Safely delete package.el packages" single ((:commit . "138171e4fc03c0ef05a8260cbb5cd2e114c1c194") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/package-safe-delete"))]) (package-lint-flymake . [(20181117 856) ((emacs (26)) (package-lint (0 5))) "A package-lint Flymake backend" single ((:commit . "83f34f747a13633c92210e6110e3c5377397761c") (:url . "https://github.com/purcell/package-lint"))]) (package-lint . [(20181115 103) ((cl-lib (0 5)) (emacs (24))) "A linting library for elisp package authors" tar ((:commit . "77422967927abf60166d31c9b52c640f1239066e") (:keywords "lisp") (:authors ("Steve Purcell" . "steve@sanityinc.com") ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/package-lint"))]) (package-filter . [(20161122 719) nil "package archive whitelist and blacklist" single ((:commit . "bc73b41aea1d65ca44ef1593ca13126df9bbb39e") (:authors ("Donald Ephraim Curtis" . "dcurtis@milkbox.net")) (:maintainer "Donald Ephraim Curtis" . "dcurtis@milkbox.net") (:url . "https://github.com/milkypostman/package-filter"))]) (package-build . [(20181005 2241) ((cl-lib (0 5))) "Tools for assembling a package archive" tar ((:commit . "0a22c3fbbf661822ec1791739953b937a12fa623") (:keywords "tools") (:authors ("Donald Ephraim Curtis" . "dcurtis@milkbox.net")) (:maintainer "Donald Ephraim Curtis" . "dcurtis@milkbox.net"))]) (package+ . [(20170816 256) nil "Extensions for the package library." single ((:commit . "9213f6134eabc2cff5826779ced437714324c066") (:keywords "extensions" "tools") (:authors ("Ryan Davis" . "ryand-ruby@zenspider.com")) (:maintainer "Ryan Davis" . "ryand-ruby@zenspider.com") (:url . "TBA"))]) (pacfiles-mode . [(20181028 1744) ((emacs (26)) (cl-lib (0 5))) "pacnew and pacsave merging tool" tar ((:commit . "ff58f387e0f85ca20c4c9f119bf13303bf8b5a76") (:keywords "files" "pacman" "arch" "pacnew" "pacsave" "update" "linux") (:authors ("Carlos G. Cordero <http://github/UndeadKernel>")) (:maintainer "Carlos G. Cordero" . "pacfiles@binarycharly.com") (:url . "https://github.com/UndeadKernel/pacfiles-mode"))]) (pabbrev . [(20160320 2101) nil "Predictive abbreviation expansion" single ((:commit . "56400d5d256b42ffe45c229ea9827f026b650cf5") (:authors ("Phillip Lord" . "phillip.lord@newcastle.ac.uk")) (:maintainer "Phillip Lord" . "phillip.lord@newcastle.ac.uk"))]) (p4 . [(20150721 1937) nil "Simple Perforce-Emacs Integration" single ((:commit . "eff047caa75dbe4965defca9d1212454cdb755d5") (:authors ("Gareth Rees" . "gdr@garethrees.org")) (:maintainer "Gareth Rees" . "gdr@garethrees.org") (:url . "https://github.com/gareth-rees/p4.el"))]) (ox-wk . [(20181111 934) ((emacs (24 4)) (org (8 3))) "Wiki Back-End for Org Export Engine" single ((:commit . "9fc37e7e2f789b0ba07cb117ea1e1dcd14a2fd83") (:keywords "org" "wp" "wiki") (:authors ("Vilibald Wanča" . "vilibald@wvi.cz")) (:maintainer "Vilibald Wanča" . "vilibald@wvi.cz") (:url . "https://github.com/w-vi/ox-wk.el"))]) (ox-twiki . [(20170803 2039) ((org (8)) (cl-lib (0 5))) "org Twiki and Foswiki export" single ((:commit . "99d0c25d56dbf75ce894a84e776ba4459208dbc2") (:keywords "org") (:authors ("Derek Feichtinger" . "derek.feichtinger@psi.ch")) (:maintainer "Derek Feichtinger" . "derek.feichtinger@psi.ch") (:url . "https://github.com/dfeich/org8-wikiexporters"))]) (ox-twbs . [(20161103 2016) nil "Bootstrap compatible HTML Back-End for Org" single ((:commit . "2414e6b1de7deb6dd2ae79a7be633fdccb9c2f28") (:keywords "org" "html" "publish" "twitter" "bootstrap") (:authors ("Carsten Dominik <carsten at orgmode dot org>") ("Jambunathan K <kjambunathan at gmail dot com>") ("Brandon van Beekum <marsmining at gmail dot com>")) (:maintainer "Carsten Dominik <carsten at orgmode dot org>") (:url . "https://github.com/marsmining/ox-twbs"))]) (ox-tufte . [(20160926 1607) ((org (8 2)) (emacs (24))) "Tufte HTML org-mode export backend" single ((:commit . "49d7ea78fde063b407ce6fa57739f90c83500682") (:keywords "org" "tufte" "html") (:authors ("M. Lee Hinman")) (:maintainer "M. Lee Hinman") (:url . "https://github.com/dakrone/ox-tufte"))]) (ox-trac . [(20171026 1823) ((org (9 0))) "Org Export Backend to Trac WikiFormat" single ((:commit . "03cc31efb1aa06991918f1071e250a9d58f96cfb") (:keywords "org-mode" "trac") (:authors ("Brian J. Carlson <hacker (at) abutilize (dot) com>")) (:maintainer "Brian J. Carlson <hacker (at) abutilize (dot) com>") (:url . "https://github.com/JalapenoGremlin/ox-trac"))]) (ox-tiddly . [(20180626 2052) ((org (8)) (cl-lib (0 5))) "org TiddlyWiki exporter" single ((:commit . "99d0c25d56dbf75ce894a84e776ba4459208dbc2") (:keywords "org") (:authors ("Derek Feichtinger" . "derek.feichtinger@psi.ch")) (:maintainer "Derek Feichtinger" . "derek.feichtinger@psi.ch") (:url . "https://github.com/dfeich/org8-wikiexporters"))]) (ox-textile . [(20180502 947) ((org (8 1))) "Textile Back-End for Org Export Engine" single ((:commit . "b179abaa6616604c6efe32cb509e62ad46e7374e") (:keywords "org" "textile") (:authors ("Yasushi SHOJI" . "yasushi.shoji@gmail.com")) (:maintainer "Yasushi SHOJI" . "yasushi.shoji@gmail.com") (:url . "https://github.com/yashi/org-textile"))]) (ox-slack . [(20181119 1131) ((org (9 1 4)) (ox-gfm (1 0))) "Slack Exporter for org-mode" single ((:commit . "96d90914e6df1a0141657fc51f1dc5bb8f1da6bd") (:keywords "org" "slack" "outlines") (:authors ("Matt Price")) (:maintainer "Matt Price") (:url . "https://github.com/titaniumbones/ox-slack"))]) (ox-rst . [(20180315 13) ((emacs (24 4)) (org (8 2 4))) "Export reStructuredText using org-mode." single ((:commit . "a74b60883b0d844c80efb364dac1560b85f2548f") (:keywords "org" "rst" "rest" "restructuredtext") (:authors ("Masanao Igarashi" . "syoux2@gmail.com")) (:maintainer "Masanao Igarashi" . "syoux2@gmail.com") (:url . "https://github.com/masayuko/ox-rst"))]) (ox-reveal . [(20161027 926) ((org (20150330))) "reveal.js Presentation Back-End for Org Export Engine" single ((:commit . "001567cc12d50ba07612edd1718b86a12e8c2547") (:keywords "outlines" "hypermedia" "slideshow" "presentation") (:authors ("Yujie Wen <yjwen.ty at gmail dot com>")) (:maintainer "Yujie Wen <yjwen.ty at gmail dot com>"))]) (ox-qmd . [(20170402 1657) ((org (8 0))) "Qiita Markdown Back-End for Org Export Engine" single ((:commit . "3a24c7a0b3ec80e494b977e14a3dfb94c9f1d8ec") (:keywords "org" "wp" "markdown" "qiita") (:authors ("0x60DF" . "0x60DF@gmail.com")) (:maintainer "0x60DF" . "0x60DF@gmail.com") (:url . "https://github.com/0x60df/ox-qmd"))]) (ox-pukiwiki . [(20150124 1716) ((org (8 1))) "Pukiwiki Back-End for Org Export Engine" single ((:commit . "bdbde2c294f5d3de11f08a3fe19f01175d2e011a") (:keywords "org" "pukiwiki") (:authors ("Yasushi SHOJI" . "yasushi.shoji@gmail.com")) (:maintainer "Yasushi SHOJI" . "yasushi.shoji@gmail.com") (:url . "https://github.com/yashi/org-pukiwiki"))]) (ox-pandoc . [(20180510 1338) ((org (8 2)) (emacs (24)) (dash (2 8)) (ht (2 0)) (cl-lib (0 5))) "org exporter for pandoc." single ((:commit . "aa37dc7e94213d4ebedb85c384c1ba35007da18e") (:keywords "tools") (:authors ("KAWABATA, Taichi" . "kawabata.taichi@gmail.com")) (:maintainer "KAWABATA, Taichi" . "kawabata.taichi@gmail.com") (:url . "https://github.com/kawabata/ox-pandoc"))]) (ox-nikola . [(20151114 1116) ((emacs (24 4)) (org (8 2 4)) (ox-rst (0 2))) "Export Nikola articles using org-mode." single ((:commit . "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48") (:keywords "org" "nikola") (:authors ("IGARASHI Masanao" . "syoux2@gmail.com")) (:maintainer "IGARASHI Masanao" . "syoux2@gmail.com") (:url . "https://github.com/masayuko/ox-nikola"))]) (ox-minutes . [(20180202 1734) ((emacs (24 4))) "Plain text backend for Org for Meeting Minutes" single ((:commit . "27c29f3fdb9181322ae56f8bace8d95e621230e5") (:keywords "org" "exporter" "notes") (:authors ("Kaushal Modi" . "kaushal.modi@gmail.com")) (:maintainer "Kaushal Modi" . "kaushal.modi@gmail.com") (:url . "https://github.com/kaushalmodi/ox-minutes"))]) (ox-mediawiki . [(20180105 2154) ((cl-lib (0 5)) (s (1 9 0))) "Mediawiki Back-End for Org Export Engine" single ((:commit . "a9327150293e370e500ba55bddfe5fc435c6bf9b") (:keywords "org" "wp" "mediawiki") (:authors ("Tom Alexander" . "tomalexander@paphus.com")) (:maintainer "Tom Alexander" . "tomalexander@paphus.com") (:url . "https://github.com/tomalexander/orgmode-mediawiki"))]) (ox-mdx-deck . [(20181115 1847) ((emacs (24)) (ox-hugo (0 7))) "org-mode to mdx-deck exporter" single ((:commit . "2e46ac76f7ac279c371474cbbf39634bbe40f4c7") (:keywords "lisp" "org" "ox" "mdx" "deck") (:authors ("Joshua Wolfe")) (:maintainer "Joshua Wolfe") (:url . "https://github.com/WolfeCub/ox-mdx-deck/"))]) (ox-jira . [(20171001 916) ((org (8 3))) "JIRA Backend for Org Export Engine" single ((:commit . "db2ec528f46c9e611624ba28611c440a99bff255") (:keywords "outlines" "hypermedia" "wp") (:authors ("Stig Brautaset" . "stig@brautaset.org")) (:maintainer "Stig Brautaset" . "stig@brautaset.org") (:url . "https://github.com/stig/ox-jira.el"))]) (ox-jekyll-md . [(20180831 1732) nil "Export Jekyll on Markdown articles using org-mode." single ((:commit . "ff7b81733354c2b427293e531bb51647fa84fc88") (:keywords "org" "jekyll") (:authors ("Elsa Gonsiorowski" . "gonsie@me.com")) (:maintainer "Elsa Gonsiorowski" . "gonsie@me.com"))]) (ox-jekyll . [(20180813 1755) nil "Export Jekyll articles using org-mode." single ((:commit . "102c53b1333abbf15b7c5c3ee1dc27124d1c0d68") (:keywords "org" "jekyll") (:authors ("Elsa Gonsiorowski" . "gonsie@me.com")) (:maintainer "Elsa Gonsiorowski" . "gonsie@me.com"))]) (ox-ioslide . [(20161015 1338) ((emacs (24 1)) (org (8 0)) (cl-lib (0 5)) (f (0 17 2)) (makey (0 3))) "Export org-mode to Google I/O HTML5 slide." tar ((:commit . "6555680be5364c8ddd2bf446865cb1a82adb6b9e") (:keywords "html" "presentation") (:authors ("coldnew" . "coldnew.tw@gmail.com")) (:maintainer "coldnew" . "coldnew.tw@gmail.com") (:url . "http://github.com/coldnew/org-ioslide"))]) (ox-impress-js . [(20150412 1716) ((org (8))) "impress.js Back-End for Org Export Engine" tar ((:commit . "91c6d2af6af308ade352a03355c4fb551b238c6b") (:keywords "outlines" "hypermedia" "calendar" "wp") (:authors ("Takumi Kinjo <takumi dot kinjo at gmail dot org>")) (:maintainer "Takumi Kinjo <takumi dot kinjo at gmail dot org>") (:url . "https://github.com/kinjo/org-impress-js.el"))]) (ox-hugo . [(20181106 2350) ((emacs (24 4)) (org (9 0))) "Hugo Markdown Back-End for Org Export Engine" tar ((:commit . "7fb284ec4b7f47ff1286598220650c5b24b56b45") (:keywords "org" "markdown" "docs") (:url . "https://ox-hugo.scripter.co"))]) (ox-html5slide . [(20131228 606) ((org (8 0))) "Export org-mode to HTML5 slide." single ((:commit . "4703dfbd9d79161509def673d2c1e118d722a58f") (:keywords "html" "presentation") (:authors ("coldnew" . "coldnew.tw@gmail.com")) (:maintainer "coldnew" . "coldnew.tw@gmail.com") (:url . "http://github.com/coldnew/org-html5slide"))]) (ox-gfm . [(20170628 2102) nil "Github Flavored Markdown Back-End for Org Export Engine" single ((:commit . "99f93011b069e02b37c9660b8fcb45dab086a07f") (:keywords "org" "wp" "markdown" "github") (:authors ("Lars Tveito")) (:maintainer "Lars Tveito"))]) (ox-epub . [(20181101 1854) ((emacs (24 3)) (org (9))) "Export org mode projects to EPUB" single ((:commit . "a66eeb00daa01ad403ac1a1db953ddbf9054be07") (:keywords "hypermedia") (:authors ("Mark Meyer" . "mark@ofosos.org")) (:maintainer "Mark Meyer" . "mark@ofosos.org") (:url . "http://github.com/ofosos/org-epub"))]) (ox-clip . [(20180306 340) ((org (8 2)) (htmlize (0))) "Cross-platform formatted copying for org-mode" single ((:commit . "594c90953a91948505bb394350adf110e041f19a") (:keywords "org-mode") (:authors ("John Kitchin" . "jkitchin@andrew.cmu.edu")) (:maintainer "John Kitchin" . "jkitchin@andrew.cmu.edu") (:url . "https://github.com/jkitchin/ox-clip/ox-clip.el"))]) (ox-bibtex-chinese . [(20170723 309) ((emacs (24 4))) "Let ox-bibtex work well for Chinese users" tar ((:commit . "2ad2364399229144110db7ef6365ad0461d6a38c"))]) (ox-asciidoc . [(20171111 1154) ((org (8 1))) "AsciiDoc Back-End for Org Export Engine" single ((:commit . "e75d9565dd07dc59d11fa92d392ab47cecb3c902") (:keywords "org" "asciidoc") (:authors ("Yasushi SHOJI" . "yasushi.shoji@gmail.com")) (:maintainer "Yasushi SHOJI" . "yasushi.shoji@gmail.com") (:url . "https://github.com/yashi/org-asciidoc"))]) (owdriver . [(20170401 1312) ((smartrep (0 0 3)) (log4e (0 2 0)) (yaxception (0 2 0))) "Quickly perform various actions on other windows" single ((:commit . "d934f182bafe29aa16c173440eff3fef08b0ec10") (:keywords "convenience") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/owdriver"))]) (overseer . [(20180226 619) ((emacs (24)) (dash (2 10 0)) (pkg-info (0 4)) (f (0 18 1))) "Ert-runner Integration Into Emacs" single ((:commit . "02d49f582e80e36b4334c9187801c5ecfb027789") (:authors ("Samuel Tonini" . "tonini.samuel@gmail.com")) (:maintainer "Samuel Tonini" . "tonini.samuel@gmail.com") (:url . "http://www.github.com/tonini/overseer.el"))]) (overcast-theme . [(20180315 1943) ((emacs (24))) "A dark but vibrant color theme for Emacs" single ((:commit . "009257956522dedf07d9e136ee41ac0b1b0b3518") (:keywords "theme") (:authors ("Mohammed Ismail Ansari" . "team.terminal@gmail.com")) (:maintainer "Mohammed Ismail Ansari" . "team.terminal@gmail.com") (:url . "http://ismail.teamfluxion.com"))]) (ov . [(20150312 528) ((emacs (24 3))) "Overlay library for Emacs Lisp" single ((:commit . "fae7215b3dedba2a9ced145284332e4609bfdc38") (:keywords "overlay") (:authors ("Shingo Fukuyama - http://fukuyama.co")) (:maintainer "Shingo Fukuyama - http://fukuyama.co") (:url . "https://github.com/ShingoFukuyama/ov.el"))]) (outshine . [(20181024 1414) ((outorg (2 0)) (cl-lib (0 5))) "outline with outshine outshines outline" tar ((:commit . "345d85ab5467ec6015fc58fe268936da93be0a5c") (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/outshine"))]) (outrespace . [(20180711 1432) ((emacs (24 4))) "c++ namespace utility functions" single ((:commit . "7dafed7e1cabf4a0bb55e5c6465e83796e3fdabe") (:keywords "tools" "c++" "namespace") (:authors ("Dan Harms" . "danielrharms@gmail.com")) (:maintainer "Dan Harms" . "danielrharms@gmail.com") (:url . "https://github.com/articuluxe/outrespace.git"))]) (outorg . [(20170414 1915) ((emacs (24 4))) "Org-style comment editing" single ((:commit . "78b0695121fb974bc4e971eb4ef7f8afd6d89d64") (:maintainer "Adam Porter") (:url . "https://github.com/alphapapa/outorg"))]) (outlook . [(20180428 1430) ((emacs (24 4))) "send emails in MS Outlook style" tar ((:commit . "359683aff91b38bd1398a6ed4058a06f09a02d65") (:keywords "mail") (:authors ("Andrew Savonichev")) (:maintainer "Andrew Savonichev") (:url . "https://github.com/asavonic/outlook.el"))]) (outlined-elisp-mode . [(20131108 1127) nil "outline-minor-mode settings for emacs lisp" single ((:commit . "c16cb02b540448919ad148f2be6a41523ee5489c") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (outline-toc . [(20170730 1130) nil "Sidebar showing a \"table of contents\"." single ((:commit . "31f04bea19cfcfb01a94d1fd2b72391cb02b7463") (:keywords "convenience" "outlines") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/outline-toc.el"))]) (outline-minor-faces . [(20181111 906) ((emacs (25 1))) "Headings faces for outline-minor-mode" single ((:commit . "3dc548f145f26a1405910d69468728846d575f79") (:keywords "outlines") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/bicycle"))]) (outline-magic . [(20180619 1819) nil "outline mode extensions for Emacs" single ((:commit . "2a5f07417b696cf7541d435c43bafcc64817636b") (:keywords "outlines") (:authors ("Carsten Dominik" . "dominik@science.uva.nl")) (:maintainer "Thorsten Jolitz <tjolitz AT gmail DOT com>"))]) (other-emacs-eval . [(20180408 1348) ((emacs (25 1)) (async (1 9 2))) "Evaluate the Emacs Lisp expression in other Emacs" single ((:commit . "8ace5acafef65daabf0c6619eff60733d7f5d792") (:keywords "tools") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/other-emacs-eval"))]) (otama . [(20160404 1032) nil "Org-table Manipulator" single ((:commit . "c114fd8006762f891bc120a7c0ea213872e7ab31") (:keywords "database" "org-mode") (:authors ("Yoshinari Nomura" . "nom@quickhack.net")) (:maintainer "Yoshinari Nomura" . "nom@quickhack.net"))]) (osx-trash . [(20160520 1300) ((emacs (24 1))) "System trash for OS X" tar ((:commit . "0f1dc052d0a750b8c75f14530a4897f5d4324b4e") (:keywords "files" "convenience" "tools" "unix") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/lunaryorn/osx-trash.el"))]) (osx-pseudo-daemon . [(20170722 607) nil "Daemon mode that plays nice with OSX." single ((:commit . "d235680a72677f11925b912428ad1a57b664e3e8") (:keywords "convenience" "osx") (:authors ("Ryan C. Thompson")) (:maintainer "Ryan C. Thompson") (:url . "https://github.com/DarwinAwardWinner/osx-pseudo-daemon"))]) (osx-org-clock-menubar . [(20150205 2111) nil "simple menubar integration for org-clock" tar ((:commit . "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3") (:keywords "org" "osx") (:authors ("Jordon Biondo" . "jordonbiondo@gmail.com")) (:maintainer "Jordon Biondo" . "jordonbiondo@gmail.com") (:url . "https://github.com/jordonbiondo/osx-org-clock-menubar"))]) (osx-location . [(20150613 917) nil "Watch and respond to changes in geographical location on OS X" tar ((:commit . "8bb3a94cc9f04b922d2d730fe08596cc6ee12bf2"))]) (osx-lib . [(20160920 0) ((emacs (24 4))) "Basic function for Apple/OSX." single ((:commit . "fdbbb41e07ba64d6a09b54bd142a7c7b83bfd09f") (:keywords "apple" "applescript" "osx" "finder" "emacs" "elisp" "vpn" "speech") (:authors ("Raghav Kumar Gautam" . "raghav@apache.org")) (:maintainer "Raghav Kumar Gautam" . "raghav@apache.org"))]) (osx-dictionary . [(20171026 734) ((cl-lib (0 5))) "Interface for OSX Dictionary.app" tar ((:commit . "b16630ecf69f87ac873486d8b9c8c03e6c9ea7fa") (:keywords "mac" "dictionary") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/osx-dictionary.el"))]) (osx-clipboard . [(20141012 717) nil "Use the OS X clipboard from terminal Emacs" single ((:commit . "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d") (:authors ("Jon Oddie <jonxfield at gmail.com>")) (:maintainer "Jon Oddie <jonxfield at gmail.com>") (:url . "https://github.com/joddie/osx-clipboard-mode"))]) (osx-browse . [(20140508 2041) ((string-utils (0 3 2)) (browse-url-dwim (0 6 6))) "Web browsing helpers for OS X" single ((:commit . "44ded7cc3a7ee426c1c3257fae534c121f7e752e") (:keywords "hypermedia" "external") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/osx-browse"))]) (origami . [(20180101 1553) ((s (1 9 0)) (dash (2 5 0)) (emacs (24)) (cl-lib (0 5))) "Flexible text folding" tar ((:commit . "1f38085c8f9af7842765ed63f7d6dfe4dab59366") (:keywords "folding") (:authors ("Greg Sexton" . "gregsexton@gmail.com")) (:maintainer "Greg Sexton" . "gregsexton@gmail.com") (:url . "https://github.com/gregsexton/origami.el"))]) (orgtbl-show-header . [(20141023 837) nil "Show the header of the current column in the minibuffer" single ((:commit . "112d54a44682f065318ed0c9c89a8f5b8907342a") (:authors ("Damien Cassou" . "damien.cassou@gmail.com")) (:maintainer "Damien Cassou" . "damien.cassou@gmail.com"))]) (orgtbl-join . [(20150121 2246) ((cl-lib (0 5))) "join columns from another table" tar ((:commit . "ccf5e0d96e053dc289da39a048715fcf36835ff2") (:keywords "org" "table" "join" "filtering") (:authors ("Thierry Banel tbanelwebmin at free dot fr")) (:maintainer "Thierry Banel tbanelwebmin at free dot fr"))]) (orgtbl-ascii-plot . [(20151215 2151) nil "ascii-art bar plots in org-mode tables" single ((:commit . "cd91f6ae26a7402e192a1f4fd6248f5797edf19e") (:keywords "org" "table" "ascii" "plot") (:authors ("Thierry Banel  tbanelwebmin at free dot fr") ("Michael Brand")) (:maintainer "Thierry Banel  tbanelwebmin at free dot fr"))]) (orgtbl-aggregate . [(20180731 2154) nil "Create an aggregated Org table from another one" tar ((:commit . "7e87e0fb0784be9370462614ec0ffc9d9ae6ef1c") (:keywords "org" "table" "aggregation" "filtering"))]) (orgnav . [(20170608 1713) ((helm (2 7 0)) (s (1 11 0)) (dash (1 11 0)) (emacs (24))) "Org tree navigation using helm" tar ((:commit . "9e2cac9c1a67af5f0080e60022e821bf7b70312d") (:keywords "convenience" "outlines") (:authors ("Facet Framer" . "facet@facetframer.com")) (:maintainer "Facet Framer" . "facet@facetframer.com") (:url . "http://github.com/facetframer/orgnav"))]) (orglue . [(20171220 1226) ((org (8 1)) (epic (0 2))) "more functionality to org-mode." tar ((:commit . "ae2a45c19b52e45db7891093a3ff17ba2e51c507") (:keywords "org") (:authors ("Yoshinari Nomura" . "nom@quickhack.net")) (:maintainer "Yoshinari Nomura" . "nom@quickhack.net"))]) (orglink . [(20180318 2023) ((emacs (24 3)) (dash (2 12 1)) (org (8 3))) "use Org Mode links in other modes" single ((:commit . "e9e90e16ddaceaf99c9b251a215d6338b9762b4d") (:keywords "hypertext") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/orglink"))]) (orgit . [(20180318 2001) ((emacs (24 4)) (dash (2 13 0)) (magit (2 10 0)) (org (8 3 3))) "support for Org links to Magit buffers" single ((:commit . "d909f92d3b1b42184143fd5e6d4c6a2762477ab7") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/magit/orgit"))]) (orgbox . [(20180827 218) ((org (8 0)) (cl-lib (0 5))) "Mailbox-like task scheduling Org." single ((:commit . "609e5e37348815ec3ba53ab6d643e38b0cc4fe17") (:keywords "org") (:authors ("Yasuhito Takamiya" . "yasuhito@gmail.com")) (:maintainer "Yasuhito Takamiya" . "yasuhito@gmail.com") (:url . "https://github.com/yasuhito/orgbox"))]) (organize-imports-java . [(20180623 1909) ((emacs (26)) (f (0 20 0)) (s (1 12 0)) (cl-lib (0 6))) "Mimic Eclipse's Organize Imports functionality." single ((:commit . "98dca0c9e046e03a3f14946c3f7af05debdf8197") (:authors ("Shen, Jen-Chieh" . "jcs090218@gmail.com")) (:maintainer "Shen, Jen-Chieh" . "jcs090218@gmail.com") (:url . "https://github.com/jcs090218/organize-imports-java"))]) (organic-green-theme . [(20180522 1620) nil "Low-contrast green color theme." single ((:commit . "200ac4a636eeb6faf1793d1937e62a343debc437"))]) (org2web . [(20171005 2317) ((cl-lib (1 0)) (ht (1 5)) (mustache (0 22)) (htmlize (1 47)) (org (8 0)) (dash (2 0 0)) (el2org (0 10)) (simple-httpd (0 1))) "A static site generator based on org mode." tar ((:commit . "5243b399927a4c474bb3b8d1c8a00799df1f27d7"))]) (org2jekyll . [(20170225 915) ((dash-functional (2 11 0)) (s (1 9 0)) (deferred (0 3 1)) (kv (0 0 19))) "Minor mode to publish org-mode post to jekyll without specific yaml" tar ((:commit . "52a19a5d372116262b9d613f4ec8490a3b49e329") (:keywords "org-mode" "jekyll" "blog" "publish") (:authors ("Antoine R. Dumont <eniotna.t AT gmail.com>")) (:maintainer "Antoine R. Dumont <eniotna.t AT gmail.com>") (:url . "https://github.com/ardumont/org2jekyll"))]) (org2issue . [(20160427 118) ((org (8 0)) (emacs (24 4)) (ox-gfm (0 1)) (gh (0 1)) (s (20160405 920))) "export org to github issue" single ((:commit . "0f7f13463e389f2d8d7d830a928042d0cf1c71eb") (:keywords "convenience" "github" "org") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/org2issue"))]) (org2elcomment . [(20170324 945) ((org (8 3 4))) "Convert Org file to Elisp comments" single ((:commit . "c88a75d9587c484ead18f7adf08592b09c1cceb0") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (org2ctex . [(20181012 151) ((emacs (24 4))) "Export org to ctex (a latex macro for Chinese)" single ((:commit . "2143992462594ce63733305f75f7c7d08123710a") (:authors ("Feng Shu" . "tumashu@163.com")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/org2ctex"))]) (org2blog . [(20171219 311) ((org (8 3)) (xml-rpc (1 6 12)) (metaweblog (1 0 1)) (htmlize (1 51))) "Blog from Org mode to wordpress" tar ((:commit . "aa7a5730f4a58a53c41370dcde7bec43d5c1a2cd"))]) (org-wunderlist . [(20150818 213) ((request-deferred (0 2 0)) (alert (1 1)) (emacs (24)) (cl-lib (0 5)) (org (8 2 4)) (s (1 9 0))) "Org sync with Wunderlist" single ((:commit . "f7f1ca73661356b9fa072efd73431592ff1182e1") (:keywords "convenience") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/org-wunderlist.el"))]) (org-wild-notifier . [(20180222 425) ((alert (1 2)) (dash (2 13 0)) (emacs (24 4))) "Customizable org-agenda notifications" single ((:commit . "d0df145d9bbb72b2c315b7d8007cb6a59fea2095") (:keywords "notification" "alert" "org" "org-agenda" "agenda") (:authors ("Artem Khramov" . "futu.fata@gmail.com")) (:maintainer "Artem Khramov" . "futu.fata@gmail.com") (:url . "https://github.com/akhramov/org-wild-notifier.el"))]) (org-web-tools . [(20181120 501) ((emacs (25 1)) (org (9 0)) (dash (2 12)) (esxml (0 3 4)) (s (1 10 0)) (request (0 3 0))) "Display and capture web content with Org-mode" tar ((:commit . "38097ce6bbc73f7eef360e367c0b06b6ac3a9a0f") (:keywords "hypermedia" "outlines" "org" "web") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/org-web-tools"))]) (org-wc . [(20180610 253) nil "Count words in org mode trees." single ((:commit . "0716c1e8276f6953e139e357e97566e792c8be19") (:authors ("Simon Guest")) (:maintainer "Simon Guest"))]) (org-vcard . [(20170929 1110) nil "org-mode support for vCard export and import." tar ((:commit . "dbe266b79df4fb31f1766010322bf4e383ce1c03") (:keywords "outlines" "org" "vcard") (:authors ("Alexis" . "flexibeast@gmail.com")) (:maintainer "Alexis" . "flexibeast@gmail.com") (:url . "https://github.com/flexibeast/org-vcard"))]) (org-variable-pitch . [(20180429 2215) ((emacs (25))) "Minor mode for variable pitch text in org mode." single ((:commit . "05f2655321f020fd4c069d1939f0902eaa837eb4") (:keywords "faces") (:authors ("Göktuğ Kayaalp" . "self@gkayaalp.com")) (:maintainer "Göktuğ Kayaalp" . "self@gkayaalp.com") (:url . "https://cadadr.github.io/elisp/index.html#ovp"))]) (org-trello . [(20180331 631) ((request-deferred (0 2 0)) (deferred (0 4 0)) (s (1 11 0)) (dash-functional (2 12 1)) (dash (2 12 1))) "Minor mode to synchronize org-mode buffer and trello board" tar ((:commit . "e2e8a3d45057645e4caae7d46a79d2d9be2894bd"))]) (org-tree-slide . [(20180906 949) nil "A presentation tool for org-mode" single ((:commit . "d45152fad1c0a153251073806f1b65ebd3731411") (:keywords "org-mode" "presentation" "narrowing") (:authors ("Takaaki ISHIKAWA <takaxp at ieee dot org>")) (:maintainer "Takaaki ISHIKAWA <takaxp at ieee dot org>"))]) (org-transform-tree-table . [(20150110 1433) ((dash (2 10 0)) (s (1 3 0))) "Transform org-mode tree with properties to a table, and the other way around" single ((:commit . "0a9bf07f01bc5fc3b349aff64e83999a8de83b52") (:keywords "org-mode" "table" "org-table" "tree" "csv" "convert") (:authors (nil . "Johan Lindstrom <buzzwordninja not_this_bit@googlemail.com>")) (:maintainer nil . "Johan Lindstrom <buzzwordninja not_this_bit@googlemail.com>") (:url . "https://github.com/jplindstrom/emacs-org-transform-tree-table"))]) (org-tracktable . [(20161118 1329) ((emacs (24)) (cl-lib (0 5))) "Track your writing progress in an org-table" single ((:commit . "8e0e60a582a034bd66d5efb72d513140b7d4d90a") (:keywords "org" "writing") (:authors ("tty-tourist" . "andreasrasholm@protonmail.com")) (:maintainer "tty-tourist" . "andreasrasholm@protonmail.com") (:url . "https://github.com/tty-tourist/org-tracktable"))]) (org-toodledo . [(20150301 1113) ((request-deferred (0 2 0)) (emacs (24)) (cl-lib (0 5))) "Toodledo integration for Emacs Org mode" tar ((:commit . "2c91a92bd07ae4a546771b018a6faa0e06399968") (:keywords "outlines" "data") (:authors ("Christopher J. White" . "emacs@grierwhite.com")) (:maintainer "Christopher J. White" . "emacs@grierwhite.com"))]) (org-timeline . [(20180812 1119) ((dash (2 13 0)) (emacs (24 3))) "Add graphical view of agenda to agenda buffer." single ((:commit . "701f13246ad1ce286be69cc16c1126536b71e7ca") (:keywords "calendar") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/org-timeline/"))]) (org-time-budgets . [(20151111 801) ((alert (0 5 10)) (cl-lib (0 5))) "Define time budgets and display clocked time." single ((:commit . "baa1ce6333157fed3b3799a80e6cf8c73c9e2c18") (:authors ("Arthur Leonard Andersen" . "leoc.git@gmail.com")) (:maintainer "Arthur Leonard Andersen" . "leoc.git@gmail.com"))]) (org-themis . [(20160122 404) ((cl-lib (0 4))) "Experimental project management mode for org-mode" single ((:commit . "78aadbbe22b1993be5c4accd0d3f91a4e85c9a3c") (:keywords "org-mode" "elisp" "project") (:maintainer "Zachary Elliott" . "contact@zell.io") (:url . "http://github.com/zellio/org-themis"))]) (org-tfl . [(20170923 1218) ((org (0 16 2)) (cl-lib (0 5)) (emacs (24 1))) "Transport for London meets Orgmode" tar ((:commit . "f0d7d39106a1de5457f5160cddd98ab892b61066") (:keywords "org" "tfl") (:authors ("storax (David Zuber), <zuber [dot] david [at] gmx [dot] de>")) (:maintainer "storax (David Zuber), <zuber [dot] david [at] gmx [dot] de>") (:url . "https://github.com/storax/org-tfl"))]) (org-table-sticky-header . [(20170409 114) ((org (8 2 10)) (emacs (24 4))) "Sticky header for org-mode tables" single ((:commit . "93dc69efc00ac9fd3cc2ece5100f51df33ec7d8b") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (org-table-comment . [(20120209 1851) nil "Org table comment modes." single ((:commit . "33b9966c33ecbc3e27cca67c2f2cdea04364d74e") (:keywords "org-mode" "orgtbl") (:authors ("Matthew L. Fidler <matthew dot fidler at gmail . com>")) (:maintainer "Matthew L. Fidler") (:url . "http://github.com/mlf176f2/org-table-comment.el"))]) (org-sync-snippets . [(20170824 1828) ((org (8 3 5)) (emacs (24 3)) (f (0 17 3))) "Export snippets to org-mode and vice versa" single ((:commit . "0f264a032d371d7dbb4a7cbaf0ea2f91b5a629ca") (:keywords "snippet" "org-mode" "yasnippet" "tools") (:authors ("Adrien Brochard")) (:maintainer "Adrien Brochard") (:url . "https://github.com/abrochard/org-sync-snippets"))]) (org-sync . [(20180221 1927) ((cl-lib (0 5)) (org (8 2)) (emacs (24))) "Synchronize Org documents with External Issue Trackers" tar ((:commit . "095335063b306871970f981898a220f62ad0ae4e") (:keywords "org" "synchronization" "issue tracking" "github" "redmine") (:authors ("Aurelien Aptel <aurelien dot aptel at gmail dot com>")) (:maintainer "Andrei Beliankou" . "arbox@yandex.ru") (:url . "https://github.com/arbox/org-sync"))]) (org-super-agenda . [(20181121 335) ((emacs (25 1)) (s (1 10 0)) (dash (2 13)) (org (9 0)) (ht (2 2))) "Supercharge your agenda" tar ((:commit . "4af03c98028008cdd5c2f50c28c0ab68990ac70d") (:keywords "hypermedia" "outlines" "org" "agenda") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/org-super-agenda"))]) (org-sticky-header . [(20170423 435) ((emacs (24 4)) (org (8 3 5))) "Show off-screen Org heading at top of window" single ((:commit . "aae8dbc7f3b33c4dd35dc38d83791d7c23757060") (:keywords "hypermedia" "outlines" "org") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/org-sticky-header"))]) (org-static-blog . [(20180528 648) ((emacs (24 3))) "a simple org-mode based static blog generator" single ((:commit . "f69d2fd6671fb250fbd87df5efa898a7bf5b9bda") (:authors ("Bastian Bechtold")) (:maintainer "Bastian Bechtold") (:url . "https://github.com/bastibe/org-static-blog"))]) (org-starter . [(20180917 1205) ((emacs (25 1)) (dash (2 12)) (dash-functional (1 2 0))) "A basic configuration framework for org mode" single ((:commit . "a1274f901366a39c2eeeaa36644c0bdd9837374b") (:authors ("Akira Komamura" . "akira.komamura@gmail.com")) (:maintainer "Akira Komamura" . "akira.komamura@gmail.com") (:url . "https://github.com/akirak/org-starter"))]) (org-send-ebook . [(20181016 800) ((emacs (25)) (cl-lib (0 5)) (seq (2 20))) "Send org link file to ebook reader." single ((:commit . "b4913a709f9206115c3e3ea73e217029cc0fb3de") (:keywords "org" "link" "ebook" "kindle" "epub" "mobi") (:url . "https://github.com/stardiviner/org-send-ebook"))]) (org-seek . [(20161217 502) ((emacs (24 3)) (ag (0 48))) "Searching Org-mode files with search tools." single ((:commit . "1f51e6634e3b9a6a29d335d0d14370a6ffef2265") (:keywords "org" "search" "ag" "pt") (:authors ("stardiviner" . "numbchild@gmail.com")) (:maintainer "stardiviner" . "numbchild@gmail.com") (:url . "https://github.com/stardiviner/org-seek.el"))]) (org-rtm . [(20160214 1236) ((rtm (0 1))) "Simple import/export from rememberthemilk to org-mode" single ((:commit . "adc42ad1fbe92ab447ccc9553780f4456f2508d2") (:keywords "outlines" "data") (:authors ("Philipp Middendorf" . "pmidden@secure.mailbox.org")) (:maintainer "Philipp Middendorf" . "pmidden@secure.mailbox.org") (:url . "https://github.com/pmiddend/org-rtm"))]) (org-rich-yank . [(20181120 1354) ((emacs (24 4))) "paste with org-mode markup and link to source" single ((:commit . "d2f350c5296cf05d6c84b02762ba44f09a02b4e3") (:keywords "convenience" "hypermedia" "org") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org") (:url . "https://github.com/unhammer/org-rich-yank"))]) (org-review . [(20160907 537) nil "schedule reviews for Org entries" single ((:commit . "058e75b7f28d2ad2390290fe17a63d98ef5ab763") (:keywords "org" "review") (:authors ("Alan Schmitt" . "alan.schmitt@polytechnique.org")) (:maintainer "Alan Schmitt" . "alan.schmitt@polytechnique.org") (:url . "https://github.com/brabalan/org-review"))]) (org-repo-todo . [(20171228 119) nil "Simple repository todo management with org-mode" single ((:commit . "f73ebd91399c5760ad52c6ad9033de1066042003") (:keywords "convenience") (:authors ("justin talbott" . "justin@waymondo.com")) (:maintainer "justin talbott" . "justin@waymondo.com") (:url . "https://github.com/waymondo/org-repo-todo"))]) (org-ref . [(20181115 51) ((dash (2 11 0)) (htmlize (1 51)) (helm (1 5 5)) (helm-bibtex (2 0 0)) (ivy (0 8 0)) (hydra (0 13 2)) (key-chord (0)) (s (1 10 0)) (f (0 18 0)) (emacs (24 4)) (pdf-tools (0 7))) "citations, cross-references and bibliographies in org-mode" tar ((:commit . "1b5cf239d2abe203b9c64000c9010bbb6bf18fb4") (:keywords "org-mode" "cite" "ref" "label") (:authors ("John Kitchin" . "jkitchin@andrew.cmu.edu")) (:maintainer "John Kitchin" . "jkitchin@andrew.cmu.edu") (:url . "https://github.com/jkitchin/org-ref"))]) (org-redmine . [(20160711 1114) nil "Redmine tools using Emacs OrgMode" single ((:commit . "e77d013bc3784947c46a5c53f03cd7d3c68552fc") (:keywords "redmine" "org") (:authors ("Wataru MIYAGUNI" . "gonngo@gmail.com")) (:maintainer "Wataru MIYAGUNI" . "gonngo@gmail.com") (:url . "https://github.com/gongo/org-redmine"))]) (org-recent-headings . [(20170908 429) ((emacs (25 1)) (org (9 0 5)) (dash (2 13 0)) (frecency (0 1))) "Jump to recently used Org headings" single ((:commit . "a09c2670c400c7a4fbbf0ac05d2d9226aa10e8f4") (:keywords "hypermedia" "outlines" "org") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/org-recent-headings"))]) (org-readme . [(20151204 1217) ((http-post-simple (1 0)) (yaoddmuse (0 1 1)) (header2 (21 0)) (lib-requires (21 0)) (cl-lib (0 5))) "Integrates Readme.org and Commentary/Change-logs." tar ((:commit . "4cb9f768d282a2835b4510b6504ff9ede487007d") (:keywords "header2" "readme.org" "emacswiki" "git") (:authors ("Matthew L. Fidler")) (:maintainer "Matthew L. Fidler") (:url . "https://github.com/mlf176f2/org-readme"))]) (org-randomnote . [(20171210 1357) ((f (0 19 0)) (dash (2 12 0))) "Find a random note in your Org-Mode files" single ((:commit . "c89eb4cf625ea7e7624b6a2d3d5676ce25ab03d7") (:authors ("Michael Fogleman" . "michaelwfogleman@gmail.com")) (:maintainer "Michael Fogleman" . "michaelwfogleman@gmail.com") (:url . "http://github.com/mwfogleman/org-randomnote"))]) (org-random-todo . [(20180312 804) ((emacs (24 3)) (alert (1 2))) "show a random TODO (with alert) every so often" single ((:commit . "8357350a66bbc4e0e5cb590acc104d39870cf736") (:keywords "org" "todo" "notification" "calendar") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org"))]) (org-radiobutton . [(20180612 1028) ((dash (2 13 0)) (emacs (24))) "Radiobutton for org-mode lists." single ((:commit . "4182aafbe5ae1bdfb0b07efa435bdba8bbd7199d") (:keywords "outlines") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/org-radiobutton"))]) (org-protocol-jekyll . [(20170328 1639) ((cl-lib (0 5))) "Jekyll's handler for org-protocol" single ((:commit . "dec064a42d6dfe81dfde7ba59ece5ca103ac6334") (:authors ("Vladimir S. Ivanov" . "ivvl82@gmail.com")) (:maintainer "Vladimir S. Ivanov" . "ivvl82@gmail.com"))]) (org-projectile-helm . [(20180601 1822) ((org-projectile (1 0 0)) (helm (2 3 1)) (emacs (25))) "helm functions for org-projectile" single ((:commit . "c798b1dff1d94304fa3621a905cbb572c7cb1d33") (:keywords "org" "projectile" "todo" "helm" "outlines") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/org-projectile"))]) (org-projectile . [(20180601 242) ((projectile (0 11 0)) (dash (2 10 0)) (emacs (24)) (s (1 9 0)) (org-category-capture (0 0 0))) "Repository todo management for org-mode" single ((:commit . "c798b1dff1d94304fa3621a905cbb572c7cb1d33") (:keywords "org-mode" "projectile" "todo" "tools" "outlines") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/org-projectile"))]) (org-preview-html . [(20180625 619) ((org (8 0)) (emacs (24 4))) "automatically use eww to preview the current org file on save" single ((:commit . "8ba7ecd7ac624f33b3e2395f477bbff4f1ec4efe") (:keywords "convenience" "eww" "org") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/org-preview-html"))]) (org-present-remote . [(20181001 2141) ((org-present (9)) (elnode (0 9)) (emacs (24))) "A web-based remote control for org-present" single ((:commit . "2defabacd04b1d3a76de81b07d7f7c89d67babca") (:keywords "comm" "docs") (:authors ("Duncan Bayne" . "duncan@bayne.id.au")) (:maintainer "Duncan Bayne" . "duncan@bayne.id.au") (:url . "https://gitlab.com/duncan-bayne/org-present-remote"))]) (org-present . [(20180303 2330) ((org (7))) "Minimalist presentation minor-mode for Emacs org-mode." single ((:commit . "d13acd70eff6a1608bc991920232146a0de76b21") (:authors ("Ric Lister")) (:maintainer "Ric Lister") (:url . "https://github.com/rlister/org-present"))]) (org-pomodoro . [(20171108 2114) ((alert (0 5 10)) (cl-lib (0 5))) "Pomodoro implementation for org-mode." tar ((:commit . "3deed1c26dcbda4d5231b9085ddf68e302b0f9dc") (:authors ("Arthur Leonard Andersen" . "leoc.git@gmail.com")) (:maintainer "Arthur Leonard Andersen" . "leoc.git@gmail.com") (:url . "https://github.com/lolownia/org-pomodoro"))]) (org-pdfview . [(20180225 1006) ((org (8 2 10)) (pdf-tools (0 80))) "Support for links to documents in pdfview mode" single ((:commit . "09ef4bf8ff8319c1ac78046c7e6b89f6a0beb82c") (:keywords "org" "pdf-view" "pdf-tools") (:authors ("Markus Hauck" . "markus1189@gmail.com")) (:maintainer "Markus Hauck" . "markus1189@gmail.com"))]) (org-password-manager . [(20180227 1810) ((org (8 2 10)) (s (1 9 0)) (dash (2 13 0))) "Password manager for Org Mode." single ((:commit . "4b30a36e71182553a02e4dd415369290d98ec03a") (:keywords "password") (:authors ("Leandro Facchinetti" . "me@leafac.com")) (:maintainer "Leandro Facchinetti" . "me@leafac.com") (:url . "https://git.leafac.com/org-password-manager"))]) (org-parser . [(20171003 436) ((emacs (25 1)) (dash (2 12 0)) (ht (2 1))) "parse org files into structured datatypes." single ((:keywords "files" "outlines" "tools") (:url . "https://bitbucket.org/zck/org-parser.el"))]) (org-page . [(20170807 224) ((ht (1 5)) (simple-httpd (1 4 6)) (mustache (0 22)) (htmlize (1 47)) (org (8 0)) (dash (2 0 0)) (cl-lib (0 5)) (git (0 1 1))) "a static site generator based on org mode" tar ((:commit . "50430ababf73a2d090881a952e9770badaf7478b"))]) (org-outlook . [(20160705 1338) nil "Outlook org" tar ((:commit . "ec32d8d9d8ffd17e6de4de0b52fc3f5ad9b4cc0d") (:keywords "org-outlook") (:authors ("Matthew L. Fidler")) (:maintainer "Matthew L. Fidler") (:url . "https://github.com/mlf176f2/org-outlook.el"))]) (org-outline-numbering . [(20180705 1501) ((emacs (24)) (org (8 3)) (cl-lib (0 6)) (ov (1 0 6))) "Show outline numbering as overlays in org-mode" single ((:commit . "b95b6a7ed9289637cb512232470633b330ca9713") (:keywords "wp" "convenience") (:authors ("Anders Johansson")) (:maintainer "Anders Johansson") (:url . "https://gitlab.com/andersjohansson/org-outline-numbering"))]) (org-onenote . [(20171008 500) ((oauth2 (0 11)) (request (0 2 0)) (org (8 2 10))) "export org-mode document to onenote." single ((:commit . "5ce5cf4edb143180e0b185ac26826d39ae5bc929") (:keywords "tools" "docs" "org-mode" "onenote") (:authors ("Frei Zhang" . "ifree0@gmail.com")) (:maintainer "Frei Zhang" . "ifree0@gmail.com") (:url . "https://github.com/ifree/org-onenote"))]) (org-octopress . [(20170821 415) ((org (9 0)) (orglue (0 1)) (ctable (0 1 1))) "Compose octopress articles using org-mode." tar ((:commit . "38598ef98d04076a8eb78d549907ddfde8d3a652") (:keywords "org" "jekyll" "octopress" "blog") (:authors ("Yoshinari Nomura" . "nom@quickhack.net")) (:maintainer "Yoshinari Nomura" . "nom@quickhack.net"))]) (org-noter . [(20181106 2341) ((emacs (24 4)) (cl-lib (0 6)) (org (9 0))) "A synchronized, Org-mode, document annotator" single ((:commit . "8e5d8eacffe251a4b6ab55f6cb36e0830f5fe8dc") (:keywords "lisp" "pdf" "interleave" "annotate" "external" "sync" "notes" "documents" "org-mode") (:authors (nil . "Gonçalo Santos (aka. weirdNox@GitHub)")) (:maintainer nil . "Gonçalo Santos (aka. weirdNox@GitHub)") (:url . "https://github.com/weirdNox/org-noter"))]) (org-notebook . [(20170322 452) ((emacs (24)) (org (8)) (cl-lib (0 5))) "Ease the use of org-mode as a notebook" single ((:commit . "86042d866bf441e2c9bb51f995e5994141b78517") (:keywords "convenience" "tools") (:authors ("Paul Elder" . "paul.elder@amanokami.net")) (:maintainer "Paul Elder" . "paul.elder@amanokami.net"))]) (org-multiple-keymap . [(20150329 106) ((org (8 2 4)) (emacs (24)) (cl-lib (0 5))) "Set keymap to elements, such as timestamp and priority." single ((:commit . "8ebc532df7f0dd6e6c3aa7c380a51d4166c668e8") (:keywords "convenience" "org-mode") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/org-multiple-keymap.el"))]) (org-msg . [(20181111 1815) ((emacs (24 4)) (htmlize (1 54))) "Org mode to send and reply to email in HTML." single ((:commit . "9c9ae7b37dc1404ff6d4de4b543ae01dd1562914") (:keywords "extensions" "mail") (:authors ("Jérémy Compostella" . "jeremy.compostella@gmail.com")) (:maintainer "Jérémy Compostella" . "jeremy.compostella@gmail.com") (:url . "https://github.com/jeremy-compostella/org-msg"))]) (org-mru-clock . [(20180419 1306) ((emacs (24 3))) "clock in/out of tasks with completion and persistent history" single ((:commit . "72e6cd0a6458ae0392f587026233f553278ab481") (:keywords "convenience" "calendar") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org"))]) (org-mobile-sync . [(20180606 524) ((emacs (24 3 50)) (org (8 0))) "automatically sync org-mobile on changes" single ((:commit . "06764b943a528827df1e2acc6bc7806cc2c1351f") (:keywords "org-mode" "org" "mobile" "sync" "todo") (:authors ("steckerhalter")) (:maintainer "steckerhalter") (:url . "https://framagit.org/steckerhalter/org-mobile-sync"))]) (org-mind-map . [(20180826 2340) ((emacs (24)) (dash (1 8 0)) (org (8 2 10))) "Creates a directed graph from org-mode files" single ((:commit . "16a8aac5462c01c4e7b6b7915381fde42fd3caf6") (:keywords "orgmode" "extensions" "graphviz" "dot") (:authors ("Ted Wiles" . "theodore.wiles@gmail.com")) (:maintainer "Ted Wiles" . "theodore.wiles@gmail.com") (:url . "https://github.com/theodorewiles/org-mind-map"))]) (org-mime . [(20181023 2314) ((emacs (24 4)) (cl-lib (0 5))) "org html export for text/html MIME emails" single ((:commit . "1e792ef0616069b3ec74a4b7d96fced8c9c6eb8a") (:keywords "mime" "mail" "email" "html") (:authors ("Eric Schulte")) (:maintainer "Chen Bin (redguardtoo)") (:url . "http://github.com/org-mime/org-mime"))]) (org-make-toc . [(20181118 500) ((emacs (25 1)) (dash (2 12)) (s (1 10 0)) (org (9 0))) "Automatic tables of contents for Org files" single ((:commit . "a73ec43211a2ec41a8dadae2e82a516c8bf5856a") (:keywords "org" "convenience") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/org-make-toc"))]) (org-listcruncher . [(20180815 603) ((cl-lib (0 5)) (seq (2 3)) (emacs (24 4))) "Parse Org mode list contents into table" single ((:commit . "50bd8c22cde3b9b091889861e44a5043b53556f7") (:keywords "convenience") (:authors ("Derek Feichtinger" . "dfeich@gmail.com")) (:maintainer "Derek Feichtinger" . "dfeich@gmail.com") (:url . "https://github.com/dfeich/org-listcruncher"))]) (org-linkany . [(20160207 411) ((log4e (0 2 0)) (yaxception (0 1))) "Insert link using anything.el/helm.el on org-mode" single ((:commit . "8cfe2f1a46e6654a79f56505349d1396263cecb3") (:keywords "org" "completion") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/org-linkany"))]) (org-link-travis . [(20140405 2327) ((org (7))) "Insert/Export the link of Travis CI on org-mode" single ((:commit . "596615ad8373d9090bd4138da683524f0ad0bda5") (:keywords "org") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/org-link-travis"))]) (org-link-minor-mode . [(20170805 1852) ((org (8))) "Enable org-mode links in non-org modes" single ((:commit . "7b92df60f3fee7f609d649d80ef243b45771ebea") (:authors ("Sean O'Halpin <sean dot ohalpin at gmail dot com>")) (:maintainer "Sean O'Halpin <sean dot ohalpin at gmail dot com>") (:url . "https://github.com/seanohalpin/org-link-minor-mode"))]) (org-kanban . [(20180916 816) ((dash (2 13 0)) (emacs (24 4)) (org (9 1))) "kanban dynamic block for org-mode." single ((:commit . "8091bdd96d0bf405e4d88766cd31a31f2afe8a36") (:keywords "org-mode" "org" "kanban" "tools") (:authors ("Christian Köstlin" . "christian.koestlin@gmail.com")) (:maintainer "Christian Köstlin" . "christian.koestlin@gmail.com") (:url . "http://github.com/gizmomogwai/org-kanban"))]) (org-journal . [(20181115 714) ((emacs (25 1))) "a simple org-mode based journaling mode" single ((:commit . "3ae2e7d7e372dee08143282a9137bf4dfc946645") (:authors ("Bastian Bechtold")) (:maintainer "Bastian Bechtold") (:url . "http://github.com/bastibe/org-journal"))]) (org-jira . [(20181118 310) ((emacs (24 5)) (cl-lib (0 5)) (request (0 2 0)) (s (0 0 0)) (dash (2 14 1))) "Syncing between Jira and Org-mode." tar ((:commit . "45f3e8f19f511fae2012828a99b8e3254708531c") (:keywords "ahungry" "jira" "org" "bug" "tracker") (:maintainer "Matthew Carter" . "m@ahungry.com") (:url . "https://github.com/ahungry/org-jira"))]) (org-iv . [(20171001 1022) ((impatient-mode (1 0 0)) (org (8 0)) (cl-lib (0 5))) "a tool used to view html (in browser) generated by org-file once the org-file changes" tar ((:commit . "7f2bb1b32647655fd9d6684f6f09dcc66b61b0cd"))]) (org-index . [(20181019 1258) ((emacs (24 4))) "A personal adaptive index for org" single ((:commit . "905e3dba6bdc009aa3fe7df0391f5f46afc0f68d") (:authors ("Marc Ihm" . "org-index@2484.de")) (:maintainer "Marc Ihm" . "org-index@2484.de") (:url . "https://github.com/marcIhm/org-index"))]) (org-if . [(20150920 1513) nil "Interactive Fiction Authoring System for Org-Mode." tar ((:commit . "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8"))]) (org-grep . [(20151202 1229) ((cl-lib (0 5))) "Kind of M-x rgrep adapted for Org mode." single ((:commit . "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684") (:authors ("François Pinard" . "pinard@iro.umontreal.ca")) (:maintainer "François Pinard" . "pinard@iro.umontreal.ca") (:url . "https://github.com/pinard/org-grep"))]) (org-gnome . [(20150614 1457) ((alert (1 2)) (telepathy (0 1)) (gnome-calendar (0 1))) "Orgmode integration with the GNOME desktop" single ((:commit . "122e14cf6f8104150a65246a9a7c10e1d7939862") (:keywords "org" "gnome") (:authors ("Nicolas Petton" . "petton.nicolas@gmail.com")) (:maintainer "Nicolas Petton" . "petton.nicolas@gmail.com"))]) (org-gcal . [(20181004 748) ((request-deferred (0 2 0)) (alert (1 1)) (emacs (24)) (cl-lib (0 5)) (org (8 2 4))) "Org sync with Google Calendar" single ((:commit . "d1c2549e7e220880848bef5a8fcc06cbb82dbd9f") (:keywords "convenience") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "Raimon Grau" . "raimonster@gmail.com") (:url . "https://github.com/kidd/org-gcal.el"))]) (org-fancy-priorities . [(20180328 2331) nil "Display org priorities as custom strings" single ((:commit . "819bb993b71e7253cefef7047306ab4e0f9d0a86") (:keywords "convenience" "faces" "outlines") (:authors ("Harry Bournis" . "harrybournis@gmail.com")) (:maintainer "Harry Bournis" . "harrybournis@gmail.com") (:url . "https://github.com/harrybournis/org-fancy-priorities"))]) (org-evil . [(20180620 1517) ((dash (2 13 0)) (evil (0)) (monitor (0)) (org (0))) "Evil extensions for Org." tar ((:commit . "3b4620edc606412ef75c0b5aa637af22486eb126") (:keywords "convenience" "evil" "org") (:authors ("Ben Moon" . "software@guiltydolphin.com")) (:maintainer "Ben Moon" . "software@guiltydolphin.com") (:url . "https://github.com/guiltydolphin/org-evil"))]) (org-emms . [(20181010 1114) ((emacs (24))) "Play multimedia files from org-mode" single ((:commit . "07a8917f3d628c32e5de1dbd118ac08203772533") (:keywords "multimedia") (:authors ("Jonathan Gregory <jgrg at autistici dot org>")) (:maintainer "Jonathan Gregory <jgrg at autistici dot org>") (:url . "https://gitlab.com/jagrg/org-emms"))]) (org-elisp-help . [(20161122 55) ((cl-lib (0 5)) (org (9 0))) "org links to emacs-lisp documentation" single ((:commit . "3e33ab1a2933dd7f2782ef91d667a37f12d633ab") (:keywords "org" "remember" "lisp") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/org-elisp-help"))]) (org-ehtml . [(20150506 2358) ((web-server (20140109 2200)) (emacs (24 3))) "Export Org-mode files as editable web pages" tar ((:commit . "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0"))]) (org-edit-latex . [(20170908 1522) ((emacs (24 4)) (auctex (11 90))) "Edit embedded LaTeX in a dedicated buffer" single ((:commit . "1f228310ef2f3f2959a527f6d99e42ce977384c8") (:keywords "org" "latex") (:authors ("James Wong" . "jianwang.academic@gmail.com")) (:maintainer "James Wong" . "jianwang.academic@gmail.com") (:url . "https://github.com/et2010/org-edit-latex"))]) (org-easy-img-insert . [(20160915 2008) ((emacs (24 4))) "An easier way to add images from the web in org mode" single ((:commit . "9f8aaa7f68ff1f0d8d7b1e9b618abb15002f971e") (:keywords "convenience" "hypermedia" "files") (:authors ("Tashrif Sanil" . "tashrifsanil@kloke-source.com")) (:maintainer "Tashrif Sanil" . "tashrifsanil@kloke-source.com") (:url . "https://github.com/tashrifsanil/org-easy-img-insert"))]) (org-dropbox . [(20150114 509) ((dash (2 2)) (names (20150000)) (emacs (24))) "move Dropbox notes from phone into org-mode datetree" single ((:commit . "75dab6d6f0438a7a8a18ccf3a5d55f50bf531f6e") (:keywords "dropbox" "android" "notes" "org-mode") (:authors ("Heikki Lehvaslaiho" . "heikki.lehvaslaiho@gmail.com")) (:maintainer "Heikki Lehvaslaiho" . "heikki.lehvaslaiho@gmail.com") (:url . "https://github.com/heikkil/org-dropbox"))]) (org-drill-table . [(20180115 1009) ((s (1 7 0)) (dash (2 2 0)) (cl-lib (0 3)) (org (8 2)) (emacs (24 1))) "Generate drill cards from org tables" single ((:commit . "2729aaa42c1e2720d9bf7bcc125e92dcf48b7f7d") (:authors ("Chris Barrett" . "chris.d.barrett@me.com")) (:maintainer "Chris Barrett" . "chris.d.barrett@me.com"))]) (org-dp . [(20180311 923) ((cl-lib (0 5))) "Declarative Local Programming with Org Elements" tar ((:commit . "e720f1c155a795a5b65a04790ad195c413449716") (:authors ("Thorsten Jolitz <tjolitz AT gmail DOT com>")) (:maintainer "Thorsten Jolitz <tjolitz AT gmail DOT com>") (:url . "https://github.com/tj64/org-dp"))]) (org-download . [(20180925 1528) ((async (1 2))) "Image drag-and-drop for Emacs org-mode" single ((:commit . "07b98eb4f7252e3f64a306c09dfb618be6ac181d") (:keywords "images" "screenshots" "download") (:authors ("Oleh Krehel")) (:maintainer "Oleh Krehel") (:url . "https://github.com/abo-abo/org-download"))]) (org-dotemacs . [(20180802 28) ((org (7 9 3)) (cl-lib (0 5))) "Store your emacs config as an org file, and choose which bits to load." single ((:commit . "49072168158b6cd45796e92e940c9ac71e181722") (:keywords "local") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/org-dotemacs"))]) (org-doing . [(20161017 1620) nil "Keep track of what you're doing" tar ((:commit . "07ddbfc238cba31e4990c9b52e9a2757b39111da") (:keywords "tools" "org") (:authors ("Rudolf Olah")) (:maintainer "Rudolf Olah") (:url . "https://github.com/omouse/org-doing"))]) (org-dashboard . [(20171223 1924) ((cl-lib (0 5))) "Visually summarize progress in org files" single ((:commit . "02c0699771d199075a286e4502340ca6e7c9e831") (:keywords "outlines" "calendar") (:authors ("Massimiliano Mirra" . "hyperstruct@gmail.com")) (:maintainer "Massimiliano Mirra" . "hyperstruct@gmail.com") (:url . "http://github.com/bard/org-dashboard"))]) (org-cua-dwim . [(20120203 534) nil "Org-mode and Cua mode compatibility layer" single ((:commit . "a55d6c7009fc0b22f1110c07de629acc955c85e4") (:keywords "org-mode" "cua-mode") (:authors ("Matthew L. Fidler")) (:maintainer "Matthew L. Fidler"))]) (org-context . [(20170107 1337) nil "Contextual capture and agenda commands for Org-mode" single ((:commit . "a3b4a4ce6d15e3c2d45eb5dcb78bea81913f3e21") (:keywords "org" "capture" "agenda" "convenience") (:authors ("Sylvain Rousseau <thisirs at gmail dot com>")) (:maintainer "Sylvain Rousseau <thisirs at gmail dot com>") (:url . "https://github.com/thisirs/org-context"))]) (org-commentary . [(20160802 637) ((dash (2 0)) (emacs (24 4)) (org (8 0))) "generate or update conventional library headers using Org mode files" tar ((:commit . "821ccb994811359c42f4e3d459e0e88849d42b75") (:keywords "convenience" "docs" "tools") (:authors ("Sergei Maximov" . "s.b.maximov@gmail.com")) (:maintainer "Sergei Maximov" . "s.b.maximov@gmail.com") (:url . "https://github.com/smaximov/org-commentary"))]) (org-clock-today . [(20161014 920) ((emacs (25))) "Show the total clocked time of the current day in the mode line" single ((:commit . "02b8fd541a01040405a9a1400c46dcb68b7c2a3a") (:authors ("Tijs Mallaerts" . "tijs.mallaerts@gmail.com")) (:maintainer "Tijs Mallaerts" . "tijs.mallaerts@gmail.com"))]) (org-clock-split . [(20180909 2047) ((emacs (24))) "Split clock entries" single ((:commit . "b2f1497b62e7f4a767be02e249e4ac95d4f8f21c") (:keywords "calendar") (:authors ("Justin Taft <https://github.com/justintaft>")) (:maintainer "Justin Taft <https://github.com/justintaft>") (:url . "https://github.com/justintaft/emacs-org-clock-split"))]) (org-clock-csv . [(20180314 257) ((org (8 3)) (s (1 0))) "Export `org-mode' clock entries to CSV format." single ((:commit . "5f96532e7a2c4a56a414a9e34f7a76b2f29d5d03") (:keywords "calendar" "data" "org") (:authors ("Aaron Jacobs" . "atheriel@gmail.com")) (:maintainer "Aaron Jacobs" . "atheriel@gmail.com") (:url . "https://github.com/atheriel/org-clock-csv"))]) (org-clock-convenience . [(20160830 1856) ((cl-lib (0 5)) (org (8)) (emacs (24 3))) "convenience functions for org time tracking" single ((:commit . "2d3fab0991ef7fa8d94c46a63a66abd289c79d9e") (:keywords "org") (:authors ("Derek Feichtinger <dfeich.gmail.com>")) (:maintainer "Derek Feichtinger <dfeich.gmail.com>") (:url . "https://github.com/dfeich/org-clock-convenience"))]) (org-cliplink . [(20181022 1239) ((emacs (24 4))) "insert org-mode links from the clipboard" tar ((:commit . "7ab98f2b17a627e907b50c27737ec1a8ae8b0f3d") (:authors ("Alexey Kutepov" . "reximkut@gmail.com")) (:maintainer "Alexey Kutepov" . "reximkut@gmail.com") (:url . "http://github.com/rexim/org-cliplink"))]) (org-chef . [(20181105 2035) ((org (0)) (emacs (24))) "Cookbook and recipe management with org-mode." tar ((:commit . "a35ad92970bdf6e251756cfecf5455997b8f8599") (:keywords "convenience" "abbrev" "outlines" "org" "food" "recipes" "cooking") (:authors ("Calvin Beck" . "hobbes@ualberta.ca")) (:maintainer "Calvin Beck" . "hobbes@ualberta.ca") (:url . "https://github.com/Chobbes/org-chef"))]) (org-category-capture . [(20180601 242) ((org (9 0 0)) (emacs (24))) "Contextualy capture of org-mode TODOs." single ((:commit . "c798b1dff1d94304fa3621a905cbb572c7cb1d33") (:keywords "org-mode" "todo" "tools" "outlines") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/org-projectile"))]) (org-capture-pop-frame . [(20160518 1008) ((emacs (24 4))) "Run org-capture in a new pop frame" single ((:commit . "b16fd712de62cf0d1f9befd03be6ab5983cb3301") (:authors ("Feng Shu" . "tumashu@163.com")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/org-capture-pop-frame.git"))]) (org-caldav . [(20180403 2036) ((org (7))) "Sync org files with external calendar through CalDAV" single ((:commit . "8d3492c27a09f437d2d94f2736c56d7652e87aa0") (:keywords "calendar" "caldav") (:authors ("David Engster" . "deng@randomsample.de")) (:maintainer "David Engster" . "deng@randomsample.de"))]) (org-bullets . [(20180208 2343) nil "Show bullets in org-mode as UTF-8 characters" single ((:commit . "b56f2e3812626f2c4ac1686073d102c71f4a8513") (:authors ("sabof")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/emacsorphanage/org-bullets"))]) (org-brain . [(20181114 2246) ((emacs (25)) (org (9))) "Org-mode concept mapping" single ((:commit . "d2bd1461e69189a39bbe40ae0d0be080b13d0ba0") (:keywords "outlines" "hypermedia") (:authors ("Erik Sjöstrand" . "sjostrand.erik@gmail.com")) (:maintainer "Erik Sjöstrand" . "sjostrand.erik@gmail.com") (:url . "http://github.com/Kungsgeten/org-brain"))]) (org-bookmark-heading . [(20180904 1709) ((emacs (24 4)) (f (0 17 2))) "Emacs bookmark support for org-mode" single ((:commit . "eba5ef7a3c992c4a9da86f64d12fca0c1158208a") (:keywords "hypermedia" "outlines") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/org-bookmark-heading"))]) (org-board . [(20180530 1820) nil "bookmarking and web archival system for Org mode." single ((:commit . "38de9ff14099bb79b55ddf73b68b8e30ebd7b280") (:keywords "org" "bookmarks" "archives") (:authors ("Charles A. Roelli " . "charles@aurox.ch")) (:maintainer "Charles A. Roelli " . "charles@aurox.ch") (:url . "https://github.com/scallywag/org-board"))]) (org-beautify-theme . [(20170908 2218) nil "A sub-theme to make org-mode more beautiful." single ((:commit . "df6a1114fda313e1689363e196c8284fbe2a2738") (:keywords "org" "theme") (:authors ("Jonathan Arkell" . "jonnay@jonnay.net")) (:maintainer "Jonathan Arkell" . "jonnay@jonnay.net"))]) (org-babel-eval-in-repl . [(20170511 1214) ((eval-in-repl (0 9 2)) (matlab-mode (3 3 6)) (ess (16 10)) (emacs (24))) "Eval org-mode babel code blocks in various REPLs." tar ((:commit . "bfa72c582ac1531ad42aba23e2b1267ab68e31f6") (:keywords "literate programming" "reproducible research" "async execution") (:authors ("Takeshi Teshima" . "diadochos.developer@gmail.com")) (:maintainer "Takeshi Teshima" . "diadochos.developer@gmail.com") (:url . "https://github.com/diadochos/org-babel-eval-in-repl"))]) (org-autolist . [(20170924 1901) nil "Improved list management in org-mode" single ((:commit . "c82d1e83e982b5f0c106b8800e5b0cfd5f73fdc1") (:keywords "lists" "checklists" "org-mode") (:authors ("Calvin Young")) (:maintainer "Calvin Young") (:url . "https://github.com/calvinwyoung/org-autolist"))]) (org-attach-screenshot . [(20180420 525) nil "screenshots integrated with org attachment dirs" single ((:commit . "6b1edbd2384191122a30788ac72f2233c2df0294") (:keywords "org") (:authors ("Derek Feichtinger" . "derek.feichtinger@psi.ch")) (:maintainer "Derek Feichtinger" . "derek.feichtinger@psi.ch") (:url . "https://github.com/dfeich/org-screenshot"))]) (org-alert . [(20180524 133) ((s (1 10 0)) (dash (2 11 0)) (alert (1 2))) "Notify org deadlines via notify-send" single ((:commit . "f87bff4acbd839acb4d2245b56b2c3d21f950911") (:keywords "org" "org-mode" "notify" "notifications" "calendar") (:authors ("Stephen Pegoraro" . "spegoraro@tutive.com")) (:maintainer "Stephen Pegoraro" . "spegoraro@tutive.com") (:url . "https://github.com/groksteve/org-alert"))]) (org-agenda-property . [(20140626 2116) ((emacs (24 2))) "Display org properties in the agenda buffer." single ((:commit . "3b469f3e93de0036547f3631cd0366d53f7584c8") (:keywords "calendar") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Bruce-Connor/org-agenda-property"))]) (org-ac . [(20170401 1307) ((auto-complete-pcmp (0 0 1)) (log4e (0 2 0)) (yaxception (0 1))) "Some auto-complete sources for org-mode" single ((:commit . "41e3ef8e4039619d0370c23c66730b3b2e9e32ed") (:keywords "org" "completion") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/org-ac"))]) (orca . [(20171030 1916) ((emacs (24 3))) "Org Capture" single ((:commit . "5e1744afb793dda744ddc6fe342144b5e90bea08") (:keywords "org" "convenience") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/orca"))]) (operate-on-number . [(20150707 623) nil "Operate on number at point with arithmetic functions" single ((:commit . "ceb3be565a29326c1098244fac0c50606723a56e") (:keywords "editing") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/operate-on-number.el"))]) (openwith . [(20120531 2136) nil "Open files with external programs" single ((:keywords "files" "processes") (:authors ("Markus Triska" . "markus.triska@gmx.at")) (:maintainer "Markus Triska" . "markus.triska@gmx.at") (:url . "https://bitbucket.org/jpkotta/openwith"))]) (openstack-cgit-browse-file . [(20130819 927) nil "Browse the current file in OpenStack cgit" single ((:commit . "244219288b9aef41155044697bb114b7af83ab8f") (:keywords "convenience" "vc" "git" "cgit" "gerrit" "openstack") (:authors ("Chmouel Boudjnah" . "chmouel@chmouel.com")) (:maintainer "Chmouel Boudjnah" . "chmouel@chmouel.com") (:url . "https://github.com/chmouel/openstack-cgit-browse-file"))]) (opensource . [(20160926 1616) ((s (1 11 0)) (dash (2 12 1)) (pkg-info (0 6 0)) (request (0 2 0))) "Client for Opensource API" tar ((:commit . "13499b7ae602c735e40c1c494bda6252a2f1c98f") (:keywords "opensource") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/OpenSourceOrg/el-opensourceorg"))]) (opener . [(20161207 1810) ((request (0 2 0)) (emacs (24)) (cl-lib (0 5))) "opening urls as buffers" tar ((:commit . "c384f67278046fdcd220275fdd212ab85672cbeb") (:keywords "url" "http" "files") (:authors ("Tim Reddehase" . "tr@rightsrestricted.com")) (:maintainer "Tim Reddehase" . "tr@rightsrestricted.com") (:url . "https://github.com/0robustus1/opener.el"))]) (opencl-mode . [(20170816 1249) nil "Syntax coloring for opencl kernels" single ((:commit . "6e69434d0fa6e11a542acad370611bba18d3bc5c") (:keywords "c" "opencl") (:authors ("Salmane Bah" . "salmane.bah@u-bordeaux.fr")) (:maintainer "Salmane Bah" . "salmane.bah@u-bordeaux.fr") (:url . "https://github.com/salmanebah/opencl-mode"))]) (opencc . [(20170722 816) ((emacs (24 4))) "中文简繁转换 <-> 中文簡繁轉換 (Convert Chinese with OpenCC)" single ((:commit . "8c539f72669ba9a99d8b5198db5ea930897ad1b9") (:keywords "chinese") (:authors ("徐春阳" . "mail@xuchunyang.me")) (:maintainer "徐春阳" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/emacs-opencc"))]) (open-junk-file . [(20161210 1114) nil "Open a junk (memo) file to try-and-error" single ((:commit . "558bec7372b0fed4c4cb6074ab906535fae615bd") (:keywords "convenience" "tools") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/open-junk-file.el"))]) (open-in-msvs . [(20170123 2228) nil "Open current file:line:column in Microsoft Visual Studio" tar ((:commit . "e0d071c83188ad5db8f3297d6ce784b4ed554a04") (:keywords "convenience" "usability" "integration" "visual studio" "msvs" "ide") (:authors ("Evgeny Panasyuk")) (:maintainer "Evgeny Panasyuk") (:url . "https://github.com/evgeny-panasyuk/open-in-msvs"))]) (opam . [(20150719 1220) ((emacs (24 1))) "OPAM tools" single ((:commit . "4d589de5765728f56af7078fae328b6792de8600") (:keywords "convenience") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/lunaryorn/opam.el"))]) (one-time-pad-encrypt . [(20160329 1513) nil "One time pad encryption within file" single ((:commit . "87cc1f124024ce3d277299ca0ac703f182937d9f") (:keywords "convenience") (:authors ("Garvin Guan" . "garvin.guan@gmail.com")) (:maintainer "Garvin Guan" . "garvin.guan@gmail.com") (:url . "https://github.com/garvinguan/emacs-one-time-pad/"))]) (one-themes . [(20181030 1142) ((emacs (24))) "One Colorscheme" tar ((:commit . "1b50f2f88fe5e207cbe6d68db710361e3bc4a9ce") (:authors ("Balaji Sivaraman" . "balaji@balajisivaraman.com")) (:maintainer "Balaji Sivaraman" . "balaji@balajisivaraman.com") (:url . "http://github.com/balajisivaraman/emacs-one-themes"))]) (on-screen . [(20160302 950) ((cl-lib (0))) "guide your eyes while scrolling" single ((:commit . "206468aa4de299ad26c2db12b757f5ad7290912f") (:keywords "convenience") (:authors ("Michael Heerdegen" . "michael_heerdegen@web.de")) (:maintainer "Michael Heerdegen" . "michael_heerdegen@web.de") (:url . "https://github.com/michael-heerdegen/on-screen.el"))]) (on-parens . [(20180202 2241) ((dash (2 10 0)) (emacs (24)) (evil (1 1 6)) (smartparens (1 6 3))) "smartparens wrapper to fit with evil-mode/vim normal-state" single ((:commit . "7a41bc02bcffd265f8a69ed4b4e0df3c3009aaa4") (:keywords "evil" "smartparens") (:authors ("William G Hatch")) (:maintainer "William G Hatch"))]) (omtose-phellack-theme . [(20161111 2120) nil "A dark theme, with cold bluish touch." tar ((:commit . "66f99633e199e65bd28641626435e8e59246529a"))]) (omnisharp . [(20181023 505) ((emacs (24 4)) (flycheck (30)) (dash (2 12 0)) (auto-complete (1 4)) (popup (0 5 1)) (csharp-mode (0 8 7)) (cl-lib (0 5)) (s (1 10 0)) (shut-up (0 3 2)) (f (0 19 0))) "Omnicompletion (intellisense) and more for C#" tar ((:commit . "260b2423b7b909b12b98d84e5b05b5b4e20040d0") (:keywords "languages" "csharp" "c#" "ide" "auto-complete" "intellisense") (:authors ("Mika Vilpas and others")) (:maintainer "Mika Vilpas and others") (:url . "https://github.com/Omnisharp/omnisharp-emacs"))]) (omnibox . [(20180423 49) ((emacs (26 1)) (dash (2 13)) (frame-local (0 0 1))) "Selection package" single ((:commit . "8ee75c71c20c438ebc43ba24ef6f543633d118f3") (:keywords "completion" "selection" "convenience" "frames") (:authors ("Sebastien Chapuis" . "sebastien@chapu.is")) (:maintainer "Sebastien Chapuis" . "sebastien@chapu.is") (:url . "https://github.com/sebastiencs/omnibox"))]) (omni-tags . [(20170426 2109) ((pcre2el (1 7)) (cl-lib (0 5))) "Highlight and Actions for 'Tags'" tar ((:commit . "8f0f6c302fab900b7681e5c039f90850cbbabd33") (:keywords "convenience") (:authors ("Adrien Becchis" . "adriean.khisbe@live.fr")) (:maintainer "Adrien Becchis" . "adriean.khisbe@live.fr") (:url . "http://github.com/AdrieanKhisbe/omni-tags.el"))]) (omni-scratch . [(20171009 2151) nil "Easy and mode-specific draft buffers" single ((:commit . "9eee3161e5cb6df58618548a2173f4da7d194814") (:keywords "convenience" "languages" "tools") (:authors ("Adrien Becchis" . "adriean.khisbe@live.fr")) (:maintainer "Adrien Becchis" . "adriean.khisbe@live.fr") (:url . "https://github.com/AdrieanKhisbe/omni-scratch.el"))]) (omni-quotes . [(20170425 1832) ((dash (2 8)) (omni-log (0 3 3)) (f (0 19 0)) (s (1 11 0)) (ht (2 1))) "Random quotes displayer" tar ((:commit . "454116c1dd6581baaeefd6b9310b1b6b7a5c36d0") (:keywords "convenience") (:authors ("Adrien Becchis" . "adriean.khisbe@live.fr")) (:maintainer "Adrien Becchis" . "adriean.khisbe@live.fr") (:url . "https://github.com/AdrieanKhisbe/omni-quotes.el"))]) (omni-log . [(20170930 1235) ((emacs (24)) (ht (2 0)) (s (1 6 1)) (dash (2 13 0))) "Logging utilities" tar ((:commit . "11e959473c1bd9415d0cda785940c36ba6ad44ab") (:keywords "convenience" "languages" "tools") (:authors ("Adrien Becchis" . "adriean.khisbe@live.fr")) (:maintainer "Adrien Becchis" . "adriean.khisbe@live.fr") (:url . "https://github.com/AdrieanKhisbe/omni-log.el"))]) (omni-kill . [(20171016 2140) nil "Kill all the things" single ((:commit . "904549c8fd6ac3cf22b5d7111ca8944e179cffea") (:keywords "convenience" "editing" "tools") (:authors ("Adrien Becchis" . "adriean.khisbe@live.fr")) (:maintainer "Adrien Becchis" . "adriean.khisbe@live.fr"))]) (om-mode . [(20140915 2110) nil "Insert Om component template with life cycle." single ((:commit . "cdc0c2912321f8438b0f3449ba8aca50ec150bba") (:keywords "clojurescript") (:authors ("Daniel Szmulewicz" . "daniel.szmulewicz@gmail.com")) (:maintainer "Daniel Szmulewicz" . "daniel.szmulewicz@gmail.com"))]) (olivetti . [(20180531 737) ((emacs (24 4))) "Minor mode for a nice writing environment" single ((:commit . "02272654f1d920ea2da5a4b553acd5e5cc096ab1") (:keywords "wp" "text") (:authors ("Paul Rankin" . "hello@paulwrankin.com")) (:maintainer "Paul Rankin" . "hello@paulwrankin.com") (:url . "https://github.com/rnkn/olivetti"))]) (oldlace-theme . [(20150705 1300) ((emacs (24))) "Emacs 24 theme with an 'oldlace' background." single ((:commit . "5c6f437203b0783b36a7aff4a578de4a0c8c4ee6") (:authors ("martin haesler")) (:maintainer "martin haesler"))]) (old-norse-input . [(20170816 1842) ((emacs (24))) "An input method for Old Norse" single ((:commit . "c2e21ee72c3768e9152aff6baf12a19cde1d0c53") (:keywords "languages") (:authors ("David Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Christiansen" . "david@davidchristiansen.dk") (:url . "https://github.com/david-christiansen/emacs-old-norse-input"))]) (offlineimap . [(20150916 1158) nil "Run OfflineIMAP from Emacs" single ((:commit . "cc3e067e6237a1eb7b21c575a41683b1febb47f1") (:authors ("Julien Danjou" . "julien@danjou.info")) (:maintainer "Julien Danjou" . "julien@danjou.info") (:url . "http://julien.danjou.info/offlineimap-el.html"))]) (octopress . [(20181009 2351) nil "A lightweight wrapper for Jekyll and Octopress." tar ((:commit . "d4d16f52278b14a271131a11e9cc0a94316de10e") (:keywords "octopress" "blog") (:authors ("Aaron Bieber" . "aaron@aaronbieber.com")) (:maintainer "Aaron Bieber" . "aaron@aaronbieber.com") (:url . "https://github.com/aaronbieber/octopress.el"))]) (octo-mode . [(20161008 1229) ((emacs (24))) "Major mode for Octo assembly language" single ((:commit . "bd4db7e5e3275b24c74e6a23c11d04f54e9feca5") (:keywords "languages") (:authors ("John Olsson" . "john@cryon.se")) (:maintainer "John Olsson" . "john@cryon.se") (:url . "https://github.com/cryon/octo-mode"))]) (octicons . [(20151101 340) ((cl-lib (0 5))) "octicons utility" tar ((:commit . "a61e561966ffd8faa3b48ce5b3a4eec10c59708b") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-octicons"))]) (ocp-indent . [(20180417 1549) nil "automatic indentation with ocp-indent" single ((:commit . "ccfa9d8fbdf564d5b12d22b859843ffd702f8e24") (:keywords "ocaml" "languages") (:url . "http://www.typerex.org/ocp-indent.html"))]) (ocodo-svg-modelines . [(20150516 1419) ((svg-mode-line-themes (0))) "A collection of beautiful SVG modelines" tar ((:commit . "c7b0789a177219f117c4de5659ecfa8622958c40"))]) (oceanic-theme . [(20161015 819) nil "Oceanic theme." single ((:commit . "a92ee9b470843c923e6cdcafdd65106ff994d04d") (:keywords "oceanic" "color" "theme") (:authors ("Tengfei Guo")) (:maintainer "Tengfei Guo") (:url . "https://github.com/terry3/oceanic-theme"))]) (occur-x . [(20130610 1343) nil "Extra functionality for occur" single ((:commit . "352f5fab207d8a1d3dd048073ff127a83e97c82b") (:keywords "occur" "search" "convenience") (:authors ("Juan-Leon Lahoz" . "juanleon1@gmail.com")) (:maintainer "Juan-Leon Lahoz" . "juanleon1@gmail.com"))]) (occur-context-resize . [(20170904 2309) nil "dynamically resize context around matches in occur-mode" single ((:commit . "cdee5a631ceed9337579d4090e0acf8140747f80") (:keywords "matching") (:authors ("Charles L.G. Comstock" . "dgtized@gmail.com")) (:maintainer "Charles L.G. Comstock" . "dgtized@gmail.com") (:url . "https://github.com/dgtized/occur-context-resize.el"))]) (occidental-theme . [(20130312 1958) nil "Custom theme for faces based on Adwaita" single ((:commit . "fd2db7256d4f78c43d99c3cddb1c39106d479816") (:authors ("William Stevenson" . "yhvh2000@gmail.com") ("Erik Timan" . "dev@timan.info")) (:maintainer "William Stevenson" . "yhvh2000@gmail.com") (:url . "http://github.com/olcai/occidental-theme"))]) (obsidian-theme . [(20170719 948) nil "port of the eclipse obsidian theme" single ((:commit . "f45efb2ebe9942466c1db6abbe2d0e6847b785ea") (:authors ("martin haesler")) (:maintainer "martin haesler") (:url . "http://github.com/mswift42/obsidian-theme"))]) (objed . [(20181120 923) ((emacs (25)) (cl-lib (0 5))) "Navigate and edit text objects." tar ((:commit . "333a9d5fdb945bb41d899b298bda297d8563c372") (:keywords "convenience") (:authors ("Clemens Radermacher" . "clemera@posteo.net")) (:maintainer "Clemens Radermacher" . "clemera@posteo.net") (:url . "https://github.com/clemera/objed"))]) (objc-font-lock . [(20141021 1822) nil "Highlight Objective-C method calls." single ((:commit . "34b457d577f97ca94b8792d025f9a909c7610612") (:keywords "languages" "faces") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/objc-font-lock"))]) (obfusurl . [(20170809 1524) ((cl-lib (0 5))) "Obfuscate URLs so they aren't spoilers" single ((:commit . "7a5a41905000ce2ec1fd72509a5567e5fd9f47e5") (:keywords "convenience" "web" "text") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/obfusurl.el"))]) (oberon . [(20120715 909) nil "Major mode for editing Oberon/Oberon-2 program texts" single ((:commit . "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3") (:keywords "oberon" "oberon-2" "languages" "oop") (:authors ("Karl Landström" . "karl@karllandstrom.se")) (:maintainer "Karl Landström" . "karl@karllandstrom.se"))]) (ob-uart . [(20170521 858) nil "org-babel support for UART communication" single ((:commit . "90daeac90a9e75c20cdcf71234c67b812110c50e") (:keywords "tools" "comm" "org-mode" "uart" "literate programming" "reproducible development") (:authors ("Andreas Müller")) (:maintainer "Andreas Müller") (:url . "https://www.0x7.ch"))]) (ob-typescript . [(20150804 1230) ((emacs (24)) (org (8 0))) "org-babel functions for typescript evaluation" single ((:commit . "9dcbd226cbfb75e790dd9de91d9401dde85a889a") (:keywords "literate programming" "reproducible research" "typescript") (:authors ("KURASHIKI Satoru")) (:maintainer "KURASHIKI Satoru") (:url . "https://github.com/lurdan/ob-typescript"))]) (ob-translate . [(20170720 1919) ((google-translate (0 11)) (org (8))) "Translation of text blocks in org-mode." single ((:commit . "9d9054a51bafd5a29a8135964069b4fa3a80b169") (:keywords "org" "babel" "translate" "translation") (:authors ("Kris Jenkins" . "krisajenkins@gmail.com")) (:maintainer "Kris Jenkins" . "krisajenkins@gmail.com") (:url . "https://github.com/krisajenkins/ob-translate"))]) (ob-tmux . [(20180831 1017) ((emacs (25 1)) (seq (2 3)) (s (1 9 0))) "Babel Support for Interactive Terminal" single ((:commit . "73bed0ebad27f0ad57ea67582494543eb2fab73d") (:keywords "literate programming" "interactive shell" "tmux") (:authors ("Allard Hendriksen")) (:maintainer "Allard Hendriksen") (:url . "https://github.com/ahendriksen/ob-tmux"))]) (ob-swift . [(20170921 1325) ((org (8))) "org-babel functions for swift evaluation" single ((:commit . "ed478ddbbe41ce5373efde06b4dd0c3663c9055f") (:keywords "org" "babel" "swift") (:authors ("Feng Zhou" . "zf.pascal@gmail.com")) (:maintainer "Feng Zhou" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/ob-swift"))]) (ob-sql-mode . [(20180426 1911) ((emacs (24 4))) "SQL code blocks evaluated by sql-mode" single ((:commit . "8f38e4a882f79a53a96dc6f2a0a17b7878a461ad") (:keywords "languages" "org" "org-babel" "sql") (:authors (nil . "Nik Clayton nik@google.com")) (:maintainer nil . "Nik Clayton nik@google.com") (:url . "http://github.com/nikclayton/ob-sql-mode"))]) (ob-sml . [(20130829 1843) ((sml-mode (6 4))) "org-babel functions for template evaluation" single ((:commit . "958165c92b6cff6cada5c85c8ae5887806b8451b") (:keywords "literate programming" "reproducible research") (:authors ("David Nolen")) (:maintainer "David Nolen") (:url . "http://orgmode.org"))]) (ob-sagemath . [(20170131 233) ((sage-shell-mode (0 0 8)) (s (1 8 0)) (emacs (24))) "org-babel functions for SageMath evaluation" tar ((:commit . "68d3e516c712bc7aa5042f305f3eb5bbb6d656c2") (:keywords "sagemath" "org-babel") (:authors ("Sho Takemori" . "stakemorii@gmail.com")) (:maintainer "Sho Takemori" . "stakemorii@gmail.com") (:url . "https://github.com/stakemori/ob-sagemath"))]) (ob-rust . [(20180911 1535) nil "Org-babel functions for Rust" tar ((:commit . "6a82587598cd097e9642be916243c31f1231b24a") (:keywords "rust" "languages" "org" "babel") (:authors ("Mican Zhang")) (:maintainer "Mican Zhang") (:url . "https://github.com/micanzhang/ob-rust"))]) (ob-restclient . [(20180904 709) ((restclient (0))) "org-babel functions for restclient-mode" single ((:commit . "00b2c5a6637ab6e504708612357ffb29b5416e4b") (:keywords "literate programming" "reproducible research") (:authors ("Alf Lervåg")) (:maintainer "Alf Lervåg") (:url . "http://orgmode.org"))]) (ob-prolog . [(20180720 1044) nil "org-babel functions for prolog evaluation." single ((:commit . "85ada8fc1f523167f137746c82d823a194160141") (:keywords "literate programming" "reproducible research") (:authors ("Bjarte Johansen")) (:maintainer "Bjarte Johansen") (:url . "https://github.com/ljos/ob-prolog"))]) (ob-nim . [(20170809 1830) ((cl-lib (0 5))) "Babel Functions for nim" single ((:commit . "bf1642cb93f0a898804dc13fd9408d2964403bd2") (:keywords "literate programming" "reproducible research") (:authors ("Lompik")) (:maintainer "Lompik"))]) (ob-mongo . [(20170720 1919) ((org (8))) "Execute mongodb queries within org-mode blocks." single ((:commit . "371bf19c7c10eab2f86424f8db8ab685997eb5aa") (:keywords "org" "babel" "mongo" "mongodb") (:authors ("Kris Jenkins" . "krisajenkins@gmail.com")) (:maintainer "Kris Jenkins" . "krisajenkins@gmail.com") (:url . "https://github.com/krisajenkins/ob-mongo"))]) (ob-ml-marklogic . [(20170622 1833) nil "org-babel functions for MarkLogic evaluation" tar ((:commit . "f678af0f440b3030e311ed6fbc444200be04da91") (:keywords "marklogic" "xquery" "javascript" "sparql") (:authors ("Norman Walsh" . "ndw@nwalsh.com")) (:maintainer "Norman Walsh" . "ndw@nwalsh.com") (:url . "http://github.com/ndw/ob-ml-marklogic"))]) (ob-mermaid . [(20180522 1659) nil "org-babel support for mermaid evaluation" single ((:commit . "5deaea757b3a5de874d94e40c03116fbc8195308") (:keywords "lisp") (:authors ("Alexei Nunez" . "alexeirnunez@gmail.com")) (:maintainer "Alexei Nunez" . "alexeirnunez@gmail.com") (:url . "https://github.com/arnm/ob-mermaid"))]) (ob-lfe . [(20170725 1420) ((org (8))) "org-babel functions for lfe evaluation" single ((:commit . "f7780f58e650b4d29dfd834c662b1d354b620a8e") (:keywords "org" "babel" "lfe" "lisp" "erlang") (:authors ("ZHOU Feng" . "zf.pascal@gmail.com")) (:maintainer "ZHOU Feng" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/ob-lfe"))]) (ob-kotlin . [(20180823 1321) ((org (8))) "org-babel functions for kotlin evaluation" single ((:commit . "96e420cbd2e9ea8a77043e5dcaebdfc6da17492a") (:keywords "org" "babel" "kotlin") (:authors ("ZHOU Feng" . "zf.pascal@gmail.com")) (:maintainer "ZHOU Feng" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/ob-kotlin"))]) (ob-ipython . [(20180224 953) ((s (1 9 0)) (dash (2 10 0)) (dash-functional (1 2 0)) (f (0 17 2)) (emacs (24))) "org-babel functions for IPython evaluation" tar ((:commit . "7147455230841744fb5b95dcbe03320313a77124") (:keywords "literate programming" "reproducible research") (:authors ("Greg Sexton" . "gregsexton@gmail.com")) (:maintainer "Greg Sexton" . "gregsexton@gmail.com") (:url . "http://www.gregsexton.org"))]) (ob-hy . [(20180702 540) ((emacs (24 4))) "org-babel functions for Hy-lang evaluation" tar ((:commit . "a42ecaf440adc03e279afe43ee5ef6093ddd542a") (:keywords "hy" "literate programming" "reproducible research") (:authors ("Brantou" . "brantou89@gmail.com")) (:maintainer "Brantou" . "brantou89@gmail.com") (:url . "https://github.com/brantou/ob-hy"))]) (ob-http . [(20180707 1448) ((s (1 9 0)) (cl-lib (0 5))) "http request in org-mode babel" tar ((:commit . "b1428ea2a63bcb510e7382a1bf5fe82b19c104a7") (:authors ("ZHOU Feng" . "zf.pascal@gmail.com")) (:maintainer "ZHOU Feng" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/ob-http"))]) (ob-go . [(20181107 1941) nil "org-babel functions for go evaluation" tar ((:commit . "237aded7aeb236573514fb26f23129852fd3c206") (:keywords "golang" "go" "literate programming" "reproducible research") (:authors ("K. Adam Christensen")) (:maintainer "K. Adam Christensen") (:url . "http://orgmode.org"))]) (ob-fsharp . [(20170618 1429) ((emacs (25)) (fsharp-mode (1 9 8))) "Org-Babel F#" single ((:commit . "0b2fdd9bb4f38af8b5cf4914627af52f5b43d9f7") (:keywords "literate programming" "reproducible research") (:authors ("Jürgen Hötzel" . "juergen@archlinux.org")) (:maintainer "Jürgen Hötzel" . "juergen@archlinux.org") (:url . "https://github.com/juergenhoetzel/ob-fsharp"))]) (ob-elvish . [(20180427 1900) nil "org-babel functions for Elvish shell" single ((:commit . "369181ceae1190bf971c71aebf9fc6133bd98c39") (:keywords "literate programming" "elvish" "shell" "languages" "processes" "tools") (:authors ("Diego Zamboni" . "diego@zzamboni.org")) (:maintainer "Diego Zamboni" . "diego@zzamboni.org") (:url . "https://github.com/zzamboni/ob-elvish"))]) (ob-elixir . [(20170725 1419) ((org (8))) "org-babel functions for elixir evaluation" single ((:commit . "8990a8178b2f7bd93504a9ab136622aab6e82e32") (:keywords "org" "babel" "elixir") (:authors ("ZHOU Feng" . "zf.pascal@gmail.com")) (:maintainer "ZHOU Feng" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/ob-elixir"))]) (ob-diagrams . [(20160407 1237) nil "org-babel functions for diagrams evaluation" single ((:commit . "ed6649616325ca5b2d2109f74aded8bcb8aa5186") (:keywords "literate programming" "reproducible research") (:authors ("Daniel Bergey")) (:maintainer "Daniel Bergey") (:url . "http://orgmode.org"))]) (ob-dart . [(20170106 1624) nil "org-babel functions for Dart evaluation" single ((:commit . "04d63b922a5469506560ca0c00678e57131e0269") (:keywords "literate programming" "reproducible research" "emacs" "org" "babel" "dart") (:authors ("Milan Zimmermann")) (:maintainer "Milan Zimmermann") (:url . "http://github.org/mzimmerm/ob-dart"))]) (ob-dao . [(20170816 1558) ((org (8))) "Org Babel Functions for Dao" single ((:commit . "fa92f62a63c684d689f57e790e5dd614c5bba270") (:keywords "literate programming" "reproducible research" "org" "babel" "dao") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/ob-dao"))]) (ob-cypher . [(20170725 1420) ((s (1 9 0)) (cypher-mode (0 0 6)) (dash (2 10 0)) (dash-functional (1 2 0))) "query neo4j using cypher in org-mode blocks" single ((:commit . "114bdf6db20ee0ade060bb5df379ddee48ff4f26") (:keywords "org" "babel" "cypher" "neo4j") (:authors ("ZHOU Feng" . "zf.pascal@gmail.com")) (:maintainer "ZHOU Feng" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/ob-cypher"))]) (ob-crystal . [(20180126 718) ((emacs (24 3))) "org-babel functions for Crystal evaluation" tar ((:commit . "d84c1adee4b269cdba06a97caedb8071561a09af") (:keywords "crystal" "literate programming" "reproducible research") (:authors ("Brantou" . "brantou89@gmail.com")) (:maintainer "Brantou" . "brantou89@gmail.com") (:url . "https://github.com/brantou/ob-crystal"))]) (ob-coffeescript . [(20180126 719) ((emacs (24 4))) "org-babel functions for coffee-script evaluation, and fully implementation!" single ((:commit . "5a5bb04aea9c2a6eab5b05f90f5c7cb6de7b4261") (:keywords "coffee-script" "literate programming" "reproducible research") (:authors ("Brantou" . "brantou89@gmail.com")) (:maintainer "Brantou" . "brantou89@gmail.com") (:url . "https://github.com/brantou/ob-coffeescript"))]) (ob-coffee . [(20170725 1424) ((org (8))) "org-babel functions for coffee-script evaluation" tar ((:commit . "7f0b330273e8af7777de87a75fe52a89798e4548") (:keywords "org" "babel" "coffee-script") (:authors ("ZHOU Feng" . "zf.pascal@gmail.com")) (:maintainer "ZHOU Feng" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/ob-coffee"))]) (ob-clojurescript . [(20180406 1828) ((emacs (24 4)) (org (9 0))) "org-babel functions for ClojureScript evaluation" single ((:commit . "17ee1558aa94c7b0246fd03f684884122806cfe7") (:keywords "literate programming" "reproducible research") (:authors ("Larry Staton Jr.")) (:maintainer "Larry Staton Jr.") (:url . "https://gitlab.com/statonjr/ob-clojurescript"))]) (ob-cfengine3 . [(20180102 1812) nil "Org Babel functions for CFEngine 3" single ((:commit . "93ebcfceec3734f4bd187ae123686187d66fd401") (:keywords "tools" "convenience") (:authors ("Nick Anderson" . "nick@cmdln.org")) (:maintainer "Nick Anderson" . "nick@cmdln.org") (:url . "https://github.com/nickanderson/ob-cfengine3"))]) (ob-browser . [(20170720 1918) ((org (8))) "Render HTML in org-mode blocks." tar ((:commit . "a347d9df1c87b7eb660be8723982c7ad2563631a") (:keywords "org" "babel" "browser" "phantomjs") (:authors ("Kris Jenkins" . "krisajenkins@gmail.com")) (:maintainer "Kris Jenkins" . "krisajenkins@gmail.com") (:url . "https://github.com/krisajenkins/ob-browser"))]) (ob-blockdiag . [(20170728 101) nil "org-babel functions for blockdiag evaluation" single ((:commit . "634fcf64a4ae735afe7001d865b03f5d71e23046") (:keywords "tools" "convenience") (:authors ("Dmitry Moskowski")) (:maintainer "Dmitry Moskowski") (:url . "https://github.com/corpix/ob-blockdiag.el"))]) (ob-axiom . [(20171103 2248) ((emacs (24 2)) (axiom-environment (20171021))) "An org-babel backend for the axiom-environment system" single ((:commit . "5d6b2cd12f639c11b032185c4c5fe4f5bba15b08") (:keywords "axiom" "openaxiom" "fricas") (:authors ("Paul Onions")) (:maintainer "Paul Onions"))]) (ob-async . [(20180816 1553) ((async (1 9)) (org (9 0 1)) (emacs (24 4)) (dash (2 14 1))) "Asynchronous org-babel src block execution" single ((:commit . "2470490e6efb3f8efde1702f7986f6e31cc1ab6c") (:keywords "tools") (:authors ("Andrew Stahlman" . "andrewstahlman@gmail.com")) (:maintainer "Andrew Stahlman" . "andrewstahlman@gmail.com") (:url . "https://github.com/astahlman/ob-async"))]) (ob-applescript . [(20160914 2027) nil "org-babel functions for template evaluation" single ((:commit . "bc708af6cf45707d4e8d8f00ea59a7e413bfaca7") (:keywords "literate programming" "reproducible research" "mac") (:authors ("Stig Brautaset")) (:maintainer "Stig Brautaset") (:url . "http://github.com/stig/ob-applescript.el"))]) (oauth . [(20130128 151) nil "Oauth library." tar ((:commit . "ee4744ad76a1560281b0c4944575a3bd598c6458") (:keywords "comm") (:authors ("Peter Sanford <peter AT petersdanceparty.com>")) (:maintainer "Peter Sanford <peter AT petersdanceparty.com>"))]) (o-blog . [(20151202 2339) nil "Standalone orgmode blog exporter" tar ((:commit . "e466c59478feddc8126c43c1b98550474af484c0") (:keywords "emacs") (:authors ("Sébastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>")) (:maintainer "Sébastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>"))]) (nyx-theme . [(20170910 1307) ((emacs (24))) "Dark theme" single ((:commit . "afe2b8c3b5421b4c292d182dcf77079b278e93d8") (:keywords "themes" "dark-theme") (:authors ("Guido Schmidt")) (:maintainer "Guido Schmidt" . "guido.schmidt.2912@gmail.com") (:url . "https://github.com/GuidoSchmidt/emacs-nyx-theme"))]) (nyan-mode . [(20170423 740) nil "Nyan Cat shows position in current buffer in mode-line." tar ((:commit . "a85ac925367ddc542827182a2d9f0133b421c41b") (:keywords "nyan" "cat" "lulz" "scrolling" "pop tart cat" "build something amazing") (:authors ("Jacek \"TeMPOraL\" Zlydach" . "temporal.pl@gmail.com")) (:maintainer "Jacek \"TeMPOraL\" Zlydach" . "temporal.pl@gmail.com") (:url . "https://github.com/TeMPOraL/nyan-mode/"))]) (nvm . [(20171217 1636) ((s (1 8 0)) (dash (2 4 0)) (f (0 14 0)) (dash-functional (2 4 0))) "Manage Node versions within Emacs" single ((:commit . "bc0a33257ec16e9f575bb6914b5949199897ada9") (:keywords "node" "nvm") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/nvm.el"))]) (nv-delete-back . [(20170224 1249) ((emacs (24))) "backward delete like modern text editors" single ((:commit . "44d506105989873dc1725e0cfc675925b35c9c98") (:keywords "lisp") (:authors ("Nicolas Vaughan <n.vaughan [at] oxon.org>")) (:maintainer "Nicolas Vaughan <n.vaughan [at] oxon.org>"))]) (nummm-mode . [(20131117 1014) nil "Display the number of minor modes instead of their names" single ((:commit . "81951e12032274543c5f7a585b29bd93961e94e4") (:authors ("Andreu Gil" . "agpchil@gmail.com")) (:maintainer "Andreu Gil" . "agpchil@gmail.com") (:url . "http://github.com/agpchil/nummm-mode"))]) (numbers . [(20170802 1134) ((emacs (24))) "Display information and trivia about numbers" single ((:commit . "dd02508b788a13b7d4dbcc4923fa23134b783ab3") (:keywords "games" "trivia" "maths" "numbers") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/numbers.el"))]) (number-lock . [(20160830 200) nil "Enter symbols on your number keys without pressing shift" single ((:commit . "74417b1238953bf485961a0dd7d20f5c36ae25ea") (:keywords "convenience") (:authors ("Liu233w" . "wwwlsmcom@outlook.com")) (:maintainer "Liu233w" . "wwwlsmcom@outlook.com") (:url . "https://github.com/Liu233w/number-lock.el"))]) (number . [(20170901 1312) nil "Working with numbers at point." single ((:commit . "bbc278d34dbcca83e70e3be855ec98b23debfb99"))]) (nubox . [(20170619 910) nil "Nubox color theme (dark, light and tty versions)" tar ((:commit . "1ccb8035ae42727ba6bdd5c1106fbceddeeed370") (:keywords "faces") (:authors ("Martijn Terpstra" . "bigmartijn@gmail.com")) (:maintainer "Martijn Terpstra" . "bigmartijn@gmail.com"))]) (nu-mode . [(20181021 2032) ((undo-tree (0 6 5)) (ace-window (0)) (avy (0)) (which-key (0)) (transpose-frame (0))) "Modern Emacs Prompts Based Keybinding." tar ((:commit . "1c20826ee462ad991e8b9cdeedfacb6bf1c159bf"))]) (nsis-mode . [(20180719 308) nil "NSIS-mode" tar ((:commit . "a49f5dbc8a5e60d3bbb803582efb5468bbbe7507") (:keywords "nsis") (:authors ("Matthew L. Fidler")) (:maintainer "Matthew L. Fidler") (:url . "http://github.com/mlf176f2/nsis-mode"))]) (ns-auto-titlebar . [(20181022 2154) ((emacs (24 4))) "Set the MacOS transparent titlebar to match theme" single ((:commit . "b16092e8058af63ad2bc222f166b0aa3cb66bf9d") (:keywords "frames") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/ns-auto-titlebar"))]) (nrepl-sync . [(20140807 1554) ((cider (0 6))) "connect to nrepl port and eval .sync.clj." single ((:commit . "bab53a2361526d63a24cda176d07a1247bf5b399") (:authors ("Phillip Lord" . "phillip.lord@newcastle.ac.uk")) (:maintainer "Phillip Lord" . "phillip.lord@newcastle.ac.uk") (:url . "https://github.com/phillord/lein-sync"))]) (nrepl-eval-sexp-fu . [(20140311 1041) ((highlight (0 0 0)) (smartparens (0 0 0)) (thingatpt (0 0 0))) "Tiny functionality enhancements for evaluating sexps." single ((:commit . "3a24b7d4bca13e87c987a4ddd212da914ff59191") (:keywords "lisp" "highlight" "convenience") (:authors ("Takeshi Banse" . "takebi@laafc.net")) (:maintainer "Takeshi Banse" . "takebi@laafc.net"))]) (npm-mode . [(20180720 1701) ((emacs (24 1))) "minor mode for working with npm projects" single ((:commit . "4f4b9fc2c07290ae87f65179df95be5221e76bf2") (:keywords "convenience" "project" "javascript" "node" "npm") (:authors ("Allen Gooch" . "allen.gooch@gmail.com")) (:maintainer "Allen Gooch" . "allen.gooch@gmail.com") (:url . "https://github.com/mojochao/npm-mode"))]) (noxml-fold . [(20170823 1357) nil "Fold away XML things." single ((:commit . "46c7f6a008672213238a9f8d7a416ce80916aa62") (:keywords "xml" "folding") (:authors ("Patrick McAllister" . "pma@rdorte.org")) (:maintainer "Patrick McAllister" . "pma@rdorte.org") (:url . "https://github.com/paddymcall/noxml-fold"))]) (nova-theme . [(20180905 1911) ((emacs (24 3))) "A dark, pastel color theme" single ((:commit . "932c83e6e06e795c2a380b69eee3913a3a805cea") (:keywords "theme" "dark" "nova" "pastel" "faces") (:authors ("Muir Manders" . "muir+emacs@mnd.rs")) (:maintainer "Muir Manders" . "muir+emacs@mnd.rs") (:url . "https://github.com/muirmanders/emacs-nova-theme"))]) (nov . [(20181118 750) ((dash (2 12 0)) (esxml (0 3 3)) (emacs (24 4))) "Featureful EPUB reader mode" single ((:commit . "3bb7a4038f0c2100df671c9f1f33b785ed4ae296") (:keywords "hypermedia" "multimedia" "epub") (:authors ("Vasilij Schneidermann" . "mail@vasilij.de")) (:maintainer "Vasilij Schneidermann" . "mail@vasilij.de") (:url . "https://github.com/wasamasa/nov.el"))]) (notmuch-labeler . [(20131230 1719) ((notmuch (0))) "Improve notmuch way of displaying labels" tar ((:commit . "d65d1129555d368243df4770ecc1e7ccb88efc58") (:keywords "emacs" "package" "elisp" "notmuch" "emails") (:authors ("Damien Cassou" . "damien.cassou@gmail.com")) (:maintainer "Damien Cassou" . "damien.cassou@gmail.com") (:url . "https://github.com/DamienCassou/notmuch-labeler"))]) (notmuch . [(20181021 1330) nil "run notmuch within emacs" tar ((:commit . "7f726c6e87517eb9c84119a1c5e3a63bfaaa49f6") (:url . "https://notmuchmail.org/"))]) (nose . [(20140520 1648) nil "Easy Python test running in Emacs" single ((:keywords "nose" "python" "testing"))]) (northcode-theme . [(20180423 1649) ((emacs (24))) "A dark theme focused on blue and orange colors." single ((:commit . "4d3750461ba25ec45321318b5f1af4e8fdf16147") (:authors ("Andreas Larsen" . "andreas@northcode.no")) (:maintainer "Andreas Larsen" . "andreas@northcode.no") (:url . "https://github.com/Northcode/northcode-theme.el"))]) (nordless-theme . [(20180613 750) nil "A mostly colorless theme" single ((:commit . "e4da9d2465a123ea28e33a507cc7ab69692cde86") (:keywords "theme" "dark") (:authors ("Thomas Letan" . "contact@thomasletan.fr")) (:maintainer "Thomas Letan" . "contact@thomasletan.fr") (:url . "https://github.com/lethom/nordless-theme.el"))]) (nord-theme . [(20180913 1749) ((emacs (24))) "An arctic, north-bluish clean and elegant theme" single ((:commit . "c4e0b5548e2f3a149658617b33813cb115bdecfe") (:authors ("Arctic Ice Studio" . "development@arcticicestudio.com")) (:maintainer "Arctic Ice Studio" . "development@arcticicestudio.com") (:url . "https://github.com/arcticicestudio/nord-emacs"))]) (nofrils-acme-theme . [(20180620 1248) ((emacs (24))) "Port of \"No Frils Acme\" Vim theme." tar ((:commit . "98ad7bfaff1d85b33dc162645670285b067c6f92") (:authors ("Eric Sessoms" . "esessoms@protonmail.com")) (:maintainer "Eric Sessoms" . "esessoms@protonmail.com") (:url . "https://gitlab.com/esessoms/nofrils-theme"))]) (noflet . [(20141102 1454) nil "locally override functions" single ((:commit . "7ae84dc3257637af7334101456dafe1759c6b68a") (:keywords "lisp") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "https://github.com/nicferrier/emacs-noflet"))]) (nodenv . [(20181023 1543) ((emacs (24 4))) "Integration with nodenv" tar ((:commit . "832fb0cbac4513edde7ebd6d1ab971c54313be36") (:keywords "node" "environment" "tools") (:authors ("Gong Qijian" . "gongqijian@gmail.com")) (:maintainer "Gong Qijian" . "gongqijian@gmail.com") (:url . "https://github.com/twlz0ne/nodenv.el"))]) (nodemcu-mode . [(20180501 2225) ((emacs (25))) "Minor mode for NodeMCU" single ((:commit . "8effd9f3df40b6b92a2f05e4d54750b624afc4a7") (:keywords "tools") (:authors ("Andreas Müller" . "code@0x7.ch")) (:maintainer "Andreas Müller" . "code@0x7.ch") (:url . "https://github.com/andrmuel/nodemcu-mode"))]) (nodejs-repl . [(20181024 1654) nil "Run Node.js REPL" single ((:commit . "d518947584c8041a36ffa103e2d487d852cd12ee") (:authors ("Takeshi Arabiki")) (:maintainer "Takeshi Arabiki"))]) (node-resolver . [(20140930 1723) ((cl-lib (0 5))) "hook to install node modules in background" single ((:commit . "ef9d0486907a746a80b02ffc6208a09c168a9f7c") (:keywords "convenience" "nodejs" "javascript" "npm") (:authors ("Dave Justice")) (:maintainer "Dave Justice") (:url . "https://github.com/meandavejustice/node-resolver.el"))]) (noctilux-theme . [(20161113 1442) ((emacs (24))) "Dark theme inspired by LightTable" single ((:commit . "a3265a1be7f4d73f44acce6d968ca6f7add1f2ca") (:authors ("Simon Manning" . "simon@ecksdee.org")) (:maintainer "Simon Manning" . "simon@ecksdee.org") (:url . "https://github.com/sjrmanning/noctilux-theme"))]) (nocomments-mode . [(20170213 2037) nil "Minor mode that makes comments invisible." single ((:commit . "5a41a20cc44dfe4a9ea584354ed6dbc15dd92f46") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/nocomments-mode"))]) (noccur . [(20150514 2120) nil "Run multi-occur on project/dired files" single ((:commit . "6cc02ce07178a61ae38a849f80472c01969272bc") (:keywords "convenience") (:authors ("Nicolas Petton" . "petton.nicolas@gmail.com")) (:maintainer "Nicolas Petton" . "petton.nicolas@gmail.com"))]) (noaa . [(20181120 2017) ((request (0 2 0)) (cl-lib (0 5)) (emacs (24)) (dash (2 14 1))) "Get NOAA weather data" single ((:commit . "0ee07ec1b4b6314d4641773acf056b5b1c794237") (:authors ("David Thompson")) (:maintainer "David Thompson") (:url . "https://github.com/thomp/noaa"))]) (no-littering . [(20181030 1247) ((cl-lib (0 5))) "help keeping ~/.emacs.d clean" single ((:commit . "b9c8dcfd5d0757aeca2fb772ff233cd6f1fd75db") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/emacscollective/no-littering"))]) (no-emoji . [(20180515 1837) ((emacs (24))) "Show :emoji-name: instead of emoji characters" single ((:commit . "ebceeab50dbfe4d60235180a57633745dbc18c77") (:keywords "extensions") (:authors ("Peter" . "craven@gmx.net")) (:maintainer "Peter" . "craven@gmx.net") (:url . "https://github.com/ecraven/no-emoji"))]) (nnir-est . [(20180710 2103) nil "Gnus nnir interface for HyperEstraier" single ((:commit . "6d0d5c8e33f4e4ccbc22350324c0990d2676fb5a") (:keywords "mail") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/nnir-est"))]) (nm . [(20151110 1910) ((notmuch (0 21)) (peg (0 6)) (company (0)) (emacs (24 3))) "NEVERMORE: an email interface for Notmuch" tar ((:commit . "5a3f29174b3a4b2b2e7a700a862f3b16a942687e") (:authors ("Trevor Jim")) (:maintainer "Trevor Jim") (:url . "https://github.com/tjim/nevermore"))]) (nlinum-relative . [(20160526 708) ((emacs (24 4)) (nlinum (1 5))) "Relative line number with nlinum" single ((:commit . "5b9950c97ba79a6f0683e38b13da23f39e01031c") (:keywords "convenience") (:authors ("codefalling" . "code.falling@gmail.com")) (:maintainer "codefalling" . "code.falling@gmail.com"))]) (nlinum-hl . [(20170614 48) ((emacs (24 4)) (nlinum (1 7)) (cl-lib (0 5))) "heal nlinum's line numbers" single ((:commit . "d5ca1490e0cde0605e34a6a17de8cc236c9810da") (:keywords "nlinum" "highlight" "current" "line" "faces") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/emacs-nlinum-hl"))]) (nixos-options . [(20160209 1841) ((emacs (24))) "Interface for browsing and completing NixOS options." single ((:commit . "45c8d90748304c90e1503c9fa8db0443f3d4bd89") (:keywords "unix") (:authors ("Diego Berrocal" . "cestdiego@gmail.com") ("Travis B. Hartwell" . "nafai@travishartwell.net")) (:maintainer "Diego Berrocal" . "cestdiego@gmail.com") (:url . "http://www.github.com/travisbhartwell/nix-emacs/"))]) (nix-update . [(20180425 48) ((emacs (25))) "Update \"fetch\" blocks in .nix expressions" single ((:commit . "d92b2c190dbaeb16751be724fe381f8a796c424c") (:keywords "nix") (:authors ("John Wiegley" . "johnw@newartisans.com")) (:maintainer "John Wiegley" . "johnw@newartisans.com") (:url . "https://github.com/jwiegley/nix-update-el"))]) (nix-sandbox . [(20171004 1706) ((dash (2 12 1)) (s (1 10 0))) "Utility functions to work with nix-shell sandboxes" single ((:commit . "45c8d90748304c90e1503c9fa8db0443f3d4bd89") (:authors ("Sven Keidel" . "svenkeidel@gmail.com")) (:maintainer "Sven Keidel" . "svenkeidel@gmail.com") (:url . "https://github.com/travisbhartwell/nix-emacs"))]) (nix-mode . [(20181120 2253) ((emacs (24 3))) "Major mode for editing .nix files" tar ((:commit . "90ac0a74b205f11dc456676b6dbefc5072e7eb6c") (:keywords "nix" "languages" "tools" "unix") (:maintainer "Matthew Bauer" . "mjbauer95@gmail.com") (:url . "https://github.com/NixOS/nix-mode"))]) (nix-buffer . [(20180212 1518) ((f (0 17 3)) (emacs (24 4))) "Set up buffer environments with nix" single ((:commit . "db57cda36e7477bdc7ef5a136357b971b1d4d099") (:authors ("Shea Levy")) (:maintainer "Shea Levy") (:url . "https://github.com/shlevy/nix-buffer/tree/master/"))]) (ninja-mode . [(20181024 1439) ((emacs (24))) "Major mode for editing .ninja files" single ((:commit . "5a78423193c48cae4800eb1ec44b62d14ae03920"))]) (nimbus-theme . [(20181109 1214) nil "An awesome dark theme" single ((:commit . "e1fbbb5644c0ef5cd070f958ca17f4e5978c2ab6") (:keywords "faces") (:authors ("Marcin Swieczkowski" . "scatman@bu.edu")) (:maintainer "Marcin Swieczkowski" . "scatman@bu.edu") (:url . "https://github.com/m-cat/nimbus-theme"))]) (nim-mode . [(20181028 1713) ((emacs (24 4)) (epc (0 1 1)) (let-alist (1 0 1)) (commenter (0 5 1)) (flycheck-nimsuggest (0 8 1))) "A major mode for the Nim programming language" tar ((:commit . "2acb601e6b3bf81f2fe29cfa1f3967e81bd12564") (:keywords "nim" "languages") (:authors ("Simon Hafner")) (:maintainer "Simon Hafner" . "hafnersimon@gmail.com"))]) (nikola . [(20170703 2021) ((async (1 5)) (emacs (24 3))) "Simple wrapper for nikola" single ((:commit . "964715ac30943c9d6976999cad208dc60d09def0") (:keywords ":" "nikola") (:authors (": drymer <drymer [ AT ] autistici.org>")) (:maintainer ": drymer <drymer [ AT ] autistici.org>") (:url . ": https://git.daemons.it/drymer/nikola.el"))]) (night-owl-theme . [(20180630 2131) ((emacs (24))) "A color theme for the night owls out there" single ((:commit . "6c73732986015c6a36919f16096d5e4f81b516ad") (:authors ("Aaron Jensen" . "aaronjensen@gmail.com")) (:maintainer "Aaron Jensen" . "aaronjensen@gmail.com") (:url . "http://github.com/aaronjensen/night-owl-theme"))]) (niconama . [(20170910 1501) ((emacs (24)) (request (20170131 1747)) (cl-lib (0 5))) "Tools for Niconico Live Broadcast" single ((:commit . "96e7553e50e6bf7b58aac50f52c9b0b8edb41c56") (:keywords "comm") (:url . "https://github.com/NOBUTOKA/niconama.el"))]) (niceify-info . [(20160416 1244) nil "improve usability of Info pages" single ((:commit . "38df5062bc3b99d1074cab3e788b5ed66732111c"))]) (nginx-mode . [(20170612 437) nil "major mode for editing nginx config files" single ((:commit . "a2bab83c2eb233d57d76b236e7c141c2ccc97005") (:keywords "languages" "nginx") (:authors ("Andrew J Cosgriff" . "andrew@cosgriff.name")) (:maintainer "Andrew J Cosgriff" . "andrew@cosgriff.name"))]) (ng2-mode . [(20180920 12) ((typescript-mode (0 1))) "Major modes for editing Angular 2" tar ((:commit . "db55c94c6697ca0e99d6713218bd8f47d2d374e3") (:keywords "typescript" "angular" "angular2" "template") (:authors ("Adam Niederer" . "adam.niederer@gmail.com")) (:maintainer "Adam Niederer" . "adam.niederer@gmail.com") (:url . "http://github.com/AdamNiederer/ng2-mode"))]) (nexus . [(20140114 1305) nil "REST Client for Nexus Maven Repository servers" tar ((:commit . "c46f499951b90839aa8683779fe43d8f01672a60") (:keywords "comm") (:authors ("Juergen Hoetzel" . "juergen@archlinux.org")) (:maintainer "Juergen Hoetzel" . "juergen@archlinux.org"))]) (newlisp-mode . [(20160226 1545) nil "newLISP editing mode for Emacs" single ((:commit . "ac23be40c81a360988ab803d365f1510733f6db4") (:keywords "language" "lisp" "newlisp") (:authors ("KOBAYASHI Shigeru <shigeru.kb[at]gmail.com>")) (:maintainer "KOBAYASHI Shigeru <shigeru.kb[at]gmail.com>") (:url . "https://github.com/kosh04/newlisp-mode"))]) (never-comment . [(20140104 2207) nil "Never blocks are comment" single ((:commit . "74ded8f1e7f23240f5f6032d0451fb0a51733bc4") (:authors ("Scott Frazer")) (:maintainer "Toon Claes") (:url . "http://stackoverflow.com/a/4554658/89376"))]) (network-watch . [(20171123 1146) ((emacs (24 3))) "Support for intermittent network connectivity" single ((:commit . "958dd0d419e4f9402648a86b754091ba346e01b8") (:keywords "unix" "tools" "hardware" "lisp") (:authors ("Juan Amiguet Vercher" . "jamiguet@gmail.com")) (:maintainer "Juan Amiguet Vercher" . "jamiguet@gmail.com") (:url . "https://github.com/jamiguet/network-watch"))]) (netrunner . [(20160910 2332) ((popup (0 5 3)) (company (0 9 0)) (helm (1 9 5))) "Create Android: Netrunner decklists using Company, Helm and org-mode" single ((:commit . "c64672992175c8c1073c0f56c2e471839db71a0f") (:keywords "games") (:authors ("Erik Sjöstrand")) (:maintainer "Erik Sjöstrand") (:url . "http://github.com/Kungsgeten/netrunner"))]) (netherlands-holidays . [(20150202 1617) nil "Netherlands holidays for Emacs calendar." single ((:commit . "26236178cdd650df9958bf5a086e184096559f00") (:keywords "calendar") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/netherlands-holidays"))]) (netease-music . [(20181028 1254) ((names (0 5)) (emacs (25))) "listen netease music" single ((:commit . "31c31cff44d2889c0456ac11d5d38227f15f03b6") (:keywords "multimedia" "chinese" "music") (:authors ("hiro方圆" . "wfy11235813@gmail.com")) (:maintainer "hiro方圆" . "wfy11235813@gmail.com") (:url . "https://github.com/nicehiro/netease-music"))]) (nerdtab . [(20180811 339) ((emacs (24 5))) "Keyboard-oriented tabs" single ((:commit . "74ccc14d7956712e477a34b4a733284e8b3832a6") (:keywords "convenience") (:authors ("Yuan Fu" . "casouri@gmail.com")) (:maintainer "Yuan Fu" . "casouri@gmail.com") (:url . "https://github.com/casouri/nerdtab"))]) (neotree . [(20181120 2232) ((cl-lib (0 5))) "A tree plugin like NerdTree for Vim" tar ((:commit . "f66e8be792af2bd1cc28308fda2901e2f4d02c91") (:authors ("jaypei" . "jaypei97159@gmail.com")) (:maintainer "jaypei" . "jaypei97159@gmail.com") (:url . "https://github.com/jaypei/emacs-neotree"))]) (neon-mode . [(20180406 1156) nil "Simple major mode for editing neon files" single ((:commit . "99d15e46beaf1e7d71e39a00cce810df1f33229d") (:keywords "conf") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (nemerle . [(20161029 2023) nil "major mode for editing nemerle programs" single ((:commit . "6904f590bf8b25a97838c6733dd2e53bd68467fd") (:keywords "nemerle" "mode" "languages") (:authors ("Jacek Sliwerski (rzyjontko)" . "rzyj@o2.pl")) (:maintainer "Jacek Sliwerski (rzyjontko)" . "rzyj@o2.pl"))]) (neato-graph-bar . [(20171231 153) ((emacs (24 3))) "Neat-o graph bars CPU/memory etc." single ((:commit . "c59f15ed9a40aecc174aa22c4bbfa7978e182705") (:authors ("Robert Cochran" . "robert-git@cochranmail.com")) (:maintainer "Robert Cochran" . "robert-git@cochranmail.com") (:url . "https://gitlab.com/RobertCochran/neato-graph-bar"))]) (nclip . [(20130617 2015) nil "Network (HTTP) Clipboard" tar ((:commit . "af88e38b1f04be02bf2e57affc662dbd0f828e67") (:keywords "nclip" "clipboard" "network") (:authors ("Marian Schubert" . "marian.schubert@gmail.com")) (:maintainer "Marian Schubert" . "marian.schubert@gmail.com") (:url . "http://www.github.com/maio/nclip.el"))]) (ncl-mode . [(20180129 703) ((emacs (24))) "Major Mode for editing NCL scripts and other goodies" tar ((:commit . "602292712a9e6b7e7c25155978999e77d06b7338"))]) (navorski . [(20141203 1824) ((s (1 9 0)) (dash (1 5 0)) (multi-term (0 8 14))) "Helping you live in the terminal, like Viktor did." single ((:commit . "698c1c62da70164aebe9a7a5d034778fbc30ea5b") (:keywords "terminal") (:authors ("Roman Gonzalez <romanandreg@gmail.com>, Tavis Rudd" . "tavis@birdseye-sw.com")) (:maintainer "Roman Gonzalez" . "romanandreg@gmail.com"))]) (navi2ch . [(20150330 216) nil "Navigator for 2ch for Emacsen" tar ((:commit . "f39d93c32acd5b9c3a7fb1a9fe14c5e1c4b5288e") (:keywords "network" "2ch") (:authors ("Taiki SUGAWARA" . "taiki@users.sourceforge.net")) (:maintainer "Taiki SUGAWARA" . "taiki@users.sourceforge.net"))]) (navi-mode . [(20180516 248) ((outshine (2 0)) (outorg (2 0))) "major-mode for easy buffer-navigation" single ((:commit . "7c3fd1a9b520300abfdb1b7c3de21403e81a95bf") (:maintainer "Adam Porter") (:url . "https://github.com/alphapapa/navi"))]) (nav-flash . [(20140508 2041) nil "Briefly highlight the current line" single ((:commit . "53f5bc59e3f32c1192d15637d3979732dacb2c35") (:keywords "extensions" "navigation" "interface") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/nav-flash"))]) (nav . [(20120507 707) nil "Emacs mode for filesystem navigation" tar ((:commit . "c5eb234c063f435dbdcd1f8bdc46cfc68c973ebe") (:authors ("Issac Trotts" . "issactrotts@google.com")) (:maintainer "Issac Trotts" . "issactrotts@google.com"))]) (nasm-mode . [(20180711 1909) ((emacs (24 3))) "NASM x86 assembly major mode" single ((:commit . "1d4871ef184fc5da792bccbae1ea189f876706fc") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/nasm-mode"))]) (nash-mode . [(20160830 1212) nil "Nash major mode" single ((:commit . "2cd96535eb7d669a94306183e95ee37333872c1a") (:keywords "nash" "languages") (:authors ("Tiago Natel de Moura")) (:maintainer "Tiago Natel de Moura") (:url . "https://github.com/tiago4orion/nash-mode.el"))]) (narrowed-page-navigation . [(20150109 519) ((emacs (24)) (cl-lib (0 5))) "A minor mode for showing one page at a time" single ((:commit . "b215adbac4873f56fbab65772062f0f5be8058a1") (:keywords "outlines") (:authors ("David Raymond Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Raymond Christiansen" . "david@davidchristiansen.dk"))]) (narrow-reindent . [(20150722 1906) ((emacs (24 4))) "Defines a minor mode to left-align narrowed regions." single ((:commit . "87466aac4dbeb79597124dd077bf5c704872fd3d") (:authors ("J David Smith" . "emallson@atlanis.net")) (:maintainer "J David Smith" . "emallson@atlanis.net") (:url . "https://github.com/emallson/narrow-reindent.el"))]) (naquadah-theme . [(20180212 1240) nil "A theme based on Tango color set" single ((:commit . "999056526db5095ce600c83672fc80cb744bd93e"))]) (nanowrimo . [(20151105 228) nil "Track progress for nanowrimo" single ((:authors ("Ivan Andrus <darthandrus at gmail.com>")) (:maintainer "Ivan Andrus <darthandrus at gmail.com>") (:url . "https://bitbucket.org/gvol/nanowrimo-mode"))]) (nand2tetris-assembler . [(20171201 1813) ((nand2tetris (1 1 0))) "Assembler For the Nand2tetris Course" single ((:commit . "33acee34d24b1c6a87db833b7d23449cf858f64f") (:keywords "nand2tetris-assembler" "hdl") (:authors ("Diego Berrocal" . "cestdiego@gmail.com")) (:maintainer "Diego Berrocal" . "cestdiego@gmail.com") (:url . "http://www.github.com/CestDiego/nand2tetris-assembler.el/"))]) (nand2tetris . [(20171201 1813) ((emacs (24))) "Major mode for HDL files in the nand2tetris course" tar ((:commit . "33acee34d24b1c6a87db833b7d23449cf858f64f") (:keywords "nand2tetris" "hdl") (:authors ("Diego Berrocal" . "cestdiego@gmail.com")) (:maintainer "Diego Berrocal" . "cestdiego@gmail.com") (:url . "http://www.github.com/CestDiego/nand2tetris.el/"))]) (namespaces . [(20130326 2250) nil "An implementation of namespaces for Elisp, with an emphasis on immutabilty." single ((:commit . "3d02525d9b9a5ae6e7be3adefd880121436e6270") (:authors ("Chris Barrett")) (:maintainer "Chris Barrett") (:url . "https://github.com/chrisbarrett/elisp-namespaces"))]) (names . [(20180321 1155) ((emacs (24 1)) (cl-lib (0 5))) "Namespaces for emacs-lisp. Avoid name clobbering without hiding symbols." tar ((:commit . "d8baba5360e5253938a25d3e005455b6d2d86971") (:keywords "extensions" "lisp") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "https://github.com/Malabarba/names"))]) (nameless . [(20180215 2221) ((emacs (24 4))) "Hide package namespace in your emacs-lisp code" single ((:commit . "3cd4ade5433c8e2041dfff9d9624d9e676d9c5ee") (:keywords "convenience" "lisp") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "https://github.com/Malabarba/nameless"))]) (nameframe-projectile . [(20160928 403) ((nameframe (0 4 1 -2)) (projectile (0 13 0))) "Nameframe integration with Projectile" single ((:commit . "aafb8c5c5fbe0510e2f5d5b6b6b5dd0b73abe5d8") (:authors ("John Del Rosario" . "john2x@gmail.com")) (:maintainer "John Del Rosario" . "john2x@gmail.com") (:url . "https://github.com/john2x/nameframe"))]) (nameframe-perspective . [(20170406 119) ((nameframe (0 4 1 -2)) (perspective (1 12))) "Nameframe integration with perspective.el" single ((:commit . "aafb8c5c5fbe0510e2f5d5b6b6b5dd0b73abe5d8") (:authors ("John Del Rosario" . "john2x@gmail.com")) (:maintainer "John Del Rosario" . "john2x@gmail.com") (:url . "https://github.com/john2x/nameframe"))]) (nameframe . [(20171107 56) nil "Manage frames by name." single ((:commit . "aafb8c5c5fbe0510e2f5d5b6b6b5dd0b73abe5d8") (:authors ("John Del Rosario" . "john2x@gmail.com")) (:maintainer "John Del Rosario" . "john2x@gmail.com") (:url . "https://github.com/john2x/nameframe"))]) (name-this-color . [(20151014 2030) ((emacs (24)) (cl-lib (0 5)) (dash (2 11 0))) "Match RGB codes to names easily and precisely" single ((:commit . "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa") (:keywords "lisp" "color" "hex" "rgb" "shade" "name") (:url . "https://github.com/knl/name-this-color.el"))]) (n4js . [(20150714 231) ((emacs (24)) (cypher-mode (0))) "Neo4j Shell" single ((:commit . "3991ed8975151d5e8d568e952362df810f7ffab7") (:keywords "neo4j" "shell" "comint") (:authors ("TruongTx" . "me@truongtx.me")) (:maintainer "TruongTx" . "me@truongtx.me") (:url . "https://github.com/tmtxt/n4js.el"))]) (myterminal-controls . [(20170426 236) ((emacs (24)) (cl-lib (0 5))) "Quick toggle controls at a key-stroke" single ((:commit . "aae4f50f9f22d374eaaac2ce95e522f13dcc8fc0") (:keywords "convenience" "shortcuts") (:authors ("Mohammed Ismail Ansari" . "team.terminal@gmail.com")) (:maintainer "Mohammed Ismail Ansari" . "team.terminal@gmail.com") (:url . "http://ismail.teamfluxion.com"))]) (mysql2sqlite . [(20170725 2216) nil "Convert mysql databases into sqlite databases." single ((:commit . "8e6e74451c942e2e92f90dc13222b95a7dbb285e"))]) (mysql-to-org . [(20181012 2034) ((emacs (24 3)) (s (1 11 0))) "Minor mode to output the results of mysql queries to org tables" single ((:commit . "7c986065adcbe13a525e1da5db8aa4c80b0ef7a3") (:authors ("Tijs Mallaerts" . "tijs.mallaerts@gmail.com")) (:maintainer "Tijs Mallaerts" . "tijs.mallaerts@gmail.com"))]) (mynt-mode . [(20150512 2049) ((virtualenvwrapper (20131514))) "Minor mode to work with the mynt static site generator" single ((:commit . "23d4489167bfa899634548cb41ed32fdeb3600c9") (:keywords "convenience") (:authors ("Christian Brassat")) (:maintainer "Christian Brassat") (:url . "https://github.com/crshd/mynt-mode"))]) (mykie . [(20150808 2205) ((emacs (24 3)) (cl-lib (0 5))) "Command multiplexer: Register multiple functions to a keybind" tar ((:commit . "7676f0e883af1d1054e404e97691f3c13aba196f") (:keywords "emacs" "configuration" "keybind") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/yuutayamada/mykie-el"))]) (myanmar-input-methods . [(20160106 1537) nil "Emacs Input Method for Myanmar" single ((:commit . "9d4e0d6358c61bde7a2274e430ef71683faea32e") (:keywords "myanmar" "unicode" "keyboard") (:authors ("Ye Lin Kyaw" . "yelinkyaw@gmail.com")) (:maintainer "Ye Lin Kyaw" . "yelinkyaw@gmail.com") (:url . "http://github.com/yelinkyaw/emacs-myanmar-input-methods"))]) (mxf-view . [(20180501 740) ((emacs (25))) "Simple MXF viewer" single ((:commit . "6ca3cc93d995fac5fc4d72275e1e984e9857ffcb") (:keywords "data" "multimedia") (:authors ("Tomotaka SUWA" . "tomotaka.suwa@gmail.com")) (:maintainer "Tomotaka SUWA" . "tomotaka.suwa@gmail.com") (:url . "https://github.com/t-suwa/mxf-view"))]) (mwim . [(20181110 1900) nil "Switch between the beginning/end of line or code" single ((:commit . "b4f3edb4c0fb8f8b71cecbf8095c2c25a8ffbf85") (:keywords "convenience") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/mwim.el"))]) (mw-thesaurus . [(20180629 525) ((emacs (25))) "Merriam-Webster Thesaurus" single ((:commit . "b3f8c3aae2b68a4e6cc054c6c99d3b3135e781d1") (:keywords "wp" "matching") (:authors ("Ag Ibragimov")) (:maintainer "Ag Ibragimov") (:url . "https://github.com/agzam/mw-thesaurus.el"))]) (mvn . [(20181002 1617) nil "helpers for compiling with maven" single ((:commit . "ffa40235b7dabb6c6c165f64f32a963cde8031f0") (:keywords "compilation" "maven" "java") (:authors ("Andrew Gwozdziewycz" . "git@apgwoz.com")) (:maintainer "Andrew Gwozdziewycz" . "git@apgwoz.com") (:url . "https://github.com/apgwoz/mvn-el"))]) (mutant . [(20160124 1353) ((emacs (24 4)) (dash (2 1 0))) "An interface for the Mutant testing tool" single ((:commit . "de9cdefe48c880128a8f62c6699d7416e9c8ced1") (:keywords "mutant" "testing") (:authors ("Pedro Lambert")) (:maintainer "Pedro Lambert") (:url . "http://github.com/p-lambert/mutant.el"))]) (mustard-theme . [(20170808 1319) ((emacs (24 0))) "an Emacs 24 theme based on Mustard (tmTheme)" single ((:commit . "3b15d992c79590d7ea2503004e2a863b57e274b5") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (mustang-theme . [(20170719 946) nil "port of vim's mustang theme" single ((:commit . "dda6d04803f1c9b196b620ef564e7768fee15de2") (:authors ("martin haesler")) (:maintainer "martin haesler") (:url . "http://github.com/mswift42/mustang-theme"))]) (mustache-mode . [(20141024 1432) nil "A major mode for editing Mustache files." single ((:commit . "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f") (:authors ("Tony Gentilcore") ("Chris Wanstrath") ("Daniel Hackney")) (:maintainer "Tony Gentilcore"))]) (mustache . [(20170923 1233) ((ht (0 9)) (s (1 3 0)) (dash (1 2 0))) "a mustache templating library in emacs lisp" tar ((:commit . "5e39654b933a18131146a0f3b3e3dc55c5058124"))]) (multitran . [(20181107 1414) ((emacs (24)) (cl-lib (0 5))) "Interface to multitran" single ((:commit . "9e10b29c4e7cc64736a832649fa9fad8781fc65f") (:keywords "dictionary" "hypermedia") (:authors ("Zajcev Evgeny" . "zevlg@yandex.ru")) (:maintainer "Zajcev Evgeny" . "zevlg@yandex.ru"))]) (multiple-cursors . [(20180913 1237) ((cl-lib (0 5))) "Multiple cursors for Emacs." tar ((:commit . "6a7c3c0853e3fe9e4b8e5985dbed8fd4075f33ff"))]) (multifiles . [(20130615 2133) nil "View and edit parts of multiple files in one buffer" single ((:commit . "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897") (:keywords "multiple" "files") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (multicolumn . [(20150202 2251) nil "Creating and managing multiple side-by-side windows." single ((:commit . "c7a3afecd470859b2e60aa7c554d6e4d436df7fa") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/multicolumn"))]) (multi-web-mode . [(20130824 354) nil "multiple major mode support for web editing" tar ((:commit . "ad1c8d1c870334052d244c7ae3636cb7b9357b7c") (:keywords "convenience" "languages" "wp") (:authors ("Fabián E. Gallina" . "fabian@anue.biz")) (:maintainer "Fabián E. Gallina" . "fabian@anue.biz") (:url . "https://github.com/fgallina/multi-web-mode"))]) (multi-term . [(20160619 933) nil "Managing multiple terminal buffers in Emacs." single ((:commit . "f954e4e18b0a035151d34852387e724d87a3316f") (:keywords "term" "terminal" "multiple buffer") (:authors ("Andy Stewart" . "lazycat.manatee@gmail.com")) (:maintainer "Andy Stewart" . "lazycat.manatee@gmail.com") (:url . "http://www.emacswiki.org/emacs/download/multi-term.el"))]) (multi-run . [(20181118 2314) ((emacs (24)) (window-layout (1 4))) "Manage multiple terminals and run commands on them" tar ((:commit . "ce5ce0c56b56a9f47915dd8b83a94db353b548a5") (:keywords "tools" "terminals") (:authors ("Sagar Jha")) (:maintainer "Sagar Jha") (:url . "https://www.github.com/sagarjha/multi-run"))]) (multi-project . [(20171217 2011) ((emacs (25))) "Find files, compile, search, and switch between" single ((:keywords "convenience" "project" "management") (:authors ("Shawn Ellis" . "shawn.ellis17@gmail.com")) (:maintainer "Shawn Ellis" . "shawn.ellis17@gmail.com") (:url . "https://bitbucket.org/ellisvelo/multi-project/overview"))]) (multi-line . [(20170822 226) ((emacs (24 3)) (s (1 9 0)) (cl-lib (0 5)) (dash (2 12 0)) (shut-up (0 3 2))) "multi-line statements" tar ((:commit . "d5ae863ced0adeb7032ada398005f27a6c669d79") (:keywords "multi" "line" "length" "whitespace" "programming" "tools" "convenience" "files") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/multi-line"))]) (multi-compile . [(20160306 2223) ((emacs (24)) (dash (2 12 1))) "Multi target interface to compile." single ((:commit . "bd0331854774e7a269ce8a7dd49580cd397c0ec2") (:keywords "tools" "compile" "build") (:authors ("Kvashnin Vladimir" . "reangd@gmail.com")) (:maintainer "Kvashnin Vladimir" . "reangd@gmail.com") (:url . "https://github.com/ReanGD/emacs-multi-compile"))]) (multi . [(20131013 1544) ((emacs (24))) "Clojure-style multi-methods for emacs lisp" single ((:commit . "0987ab71692717ed457cb3984de184db9185806d") (:keywords "multimethod" "generic" "predicate" "dispatch") (:authors ("Christina Whyte" . "kurisu.whyte@gmail.com")) (:maintainer "Christina Whyte" . "kurisu.whyte@gmail.com") (:url . "http://github.com/kurisuwhyte/emacs-multi"))]) (muban . [(20180415 1219) ((emacs (25))) "Lightweight template expansion tool" single ((:commit . "7078e439ee0433a8fbd1cb174464496f9a9d00fa") (:keywords "abbrev" "tools") (:authors ("Jiahao Li" . "jiahaowork@gmail.com")) (:maintainer "Jiahao Li" . "jiahaowork@gmail.com") (:url . "https://github.com/jiahaowork/muban.el"))]) (mu4e-query-fragments . [(20170923 1322) ((emacs (24 4))) "mu4e query fragments extension" single ((:commit . "34ddad4e6785f575333efcc66153d892daa1c884") (:keywords "mu4e" "mail" "convenience") (:authors ("Yuri D'Elia" . "wavexx@thregr.org")) (:maintainer "Yuri D'Elia" . "wavexx@thregr.org") (:url . "https://github.com/wavexx/mu4e-query-fragments.el"))]) (mu4e-maildirs-extension . [(20180606 812) ((dash (0 0 0))) "Show mu4e maildirs summary in mu4e-main-view" single ((:commit . "3ef4c48516be66e73d24fe764aadbcfc126b7964") (:authors ("Andreu Gil Pàmies" . "agpchil@gmail.com")) (:maintainer "Andreu Gil Pàmies" . "agpchil@gmail.com") (:url . "http://github.com/agpchil/mu4e-maildirs-extension"))]) (mu4e-jump-to-list . [(20180425 1832) ((emacs (24 4)) (cl-lib (0 5))) "mu4e jump-to-list extension" single ((:commit . "e336ffe84b55edaaf4e48040d4d9156a9f4c881e") (:keywords "mu4e" "mail" "convenience") (:authors ("Yuri D'Elia" . "wavexx@thregr.org")) (:maintainer "Yuri D'Elia" . "wavexx@thregr.org") (:url . "https://github.com/wavexx/mu4e-jump-to-list.el"))]) (mu4e-conversation . [(20181105 1722) ((emacs (25 1))) "Show a complete thread in a single buffer" single ((:commit . "54368a009474276247bdf39683e25ea68ae1f943") (:keywords "mail" "convenience" "mu4e") (:authors ("Pierre Neidhardt" . "mail@ambrevar.xyz")) (:maintainer "Pierre Neidhardt" . "mail@ambrevar.xyz") (:url . "https://gitlab.com/Ambrevar/mu4e-conversation"))]) (mu4e-alert . [(20180305 646) ((alert (1 2)) (s (1 10 0)) (ht (2 0)) (emacs (24 3))) "Desktop notification for mu4e" single ((:commit . "96a293b28646f4620e257f24748becc4a06843cd") (:keywords "mail" "convenience") (:authors ("Iqbal Ansari" . "iqbalansari02@yahoo.com")) (:maintainer "Iqbal Ansari" . "iqbalansari02@yahoo.com") (:url . "https://github.com/iqbalansari/mu4e-alert"))]) (mu-cite . [(20160130 1100) ((flim (1 14 9))) "A library to provide MIME features." tar ((:commit . "aea3c2d01eb3284d5e0124059d368e8c6b6ffddc"))]) (mtg-deck-mode . [(20180613 2010) ((emacs (25 1))) "Major mode to edit MTG decks" tar ((:commit . "8265b8ed17fcd4406760c19aa6ee9c76068b1ab0") (:keywords "data" "mtg" "magic") (:authors ("Mattias Bengtsson" . "mattias.jc.bengtsson@gmail.com")) (:maintainer "Mattias Bengtsson" . "mattias.jc.bengtsson@gmail.com") (:url . "https://github.com/mattiasb/mtg-deck-mode"))]) (msvc . [(20171225 1538) ((emacs (24)) (cl-lib (0 5)) (cedet (1 0)) (ac-clang (2 0 0))) "Microsoft Visual C/C++ mode" tar ((:commit . "dfc529aa6da8b46b0a0c7db9a0e5e9bc33ab1fb3") (:keywords "languages" "completion" "syntax check" "mode" "intellisense") (:authors ("yaruopooner [https://github.com/yaruopooner]")) (:maintainer "yaruopooner [https://github.com/yaruopooner]") (:url . "https://github.com/yaruopooner/msvc"))]) (mqtt-mode . [(20180605 1731) ((emacs (25)) (dash (2 12 0))) "client for interaction with MQTT servers" single ((:commit . "36d1d4296d79e17b8f35e8e14f2708980eb502db") (:keywords "tools") (:authors ("Andreas Müller" . "code@0x7.ch")) (:maintainer "Andreas Müller" . "code@0x7.ch") (:url . "https://github.com/andrmuel/mqtt-mode"))]) (mqr . [(20180527 1204) ((emacs (24 4))) "Multi-dimensional query and replace" single ((:commit . "4ade19d4620b8b61340290bf63fa56d5e493859f") (:keywords "convenience" "extensions" "lisp") (:authors ("Tino Calancha" . "tino.calancha@gmail.com")) (:maintainer "Tino Calancha" . "tino.calancha@gmail.com") (:url . "https://github.com/calancha/multi-replace"))]) (mpv . [(20180602 1014) ((cl-lib (0 5)) (emacs (24)) (json (1 3)) (org (8 0))) "control mpv for easy note-taking" single ((:commit . "9dedf3b7c1bfd778284df7f394207ce0447ea7aa") (:keywords "tools" "multimedia") (:authors ("Johann Klähn" . "kljohann@gmail.com")) (:maintainer "Johann Klähn" . "kljohann@gmail.com") (:url . "https://github.com/kljohann/mpv.el"))]) (mpmc-queue . [(20180303 2029) ((emacs (26 0)) (queue (0 2 0))) "a multiple-producer-multiple-consumer queue" single ((:commit . "df07d6bef7468edb1d73ef73b8331b94d0e5d0ca") (:keywords "lisp" "async") (:authors ("Sho Mizoe" . "sho.mizoe@gmail.com")) (:maintainer "Sho Mizoe" . "sho.mizoe@gmail.com") (:url . "https://github.com/smizoe/mpmc-queue"))]) (mpdel . [(20181018 1208) ((emacs (25 1)) (libmpdel (0 7 0))) "Play and control your MPD music" tar ((:commit . "b9ada1670d6c104ebee3d186977a09b0aaca0d5e") (:keywords "multimedia") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://gitlab.petton.fr/mpdel/mpdel"))]) (mpages . [(20150710 1404) nil "An Emacs buffer for quickly writing your Morning Pages" single ((:commit . "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f") (:authors ("Sean Levin")) (:maintainer "Sean Levin") (:url . "https://github.com/slevin/mpages"))]) (mozc-temp . [(20160228 840) ((emacs (24)) (dash (2 10 0)) (mozc (0))) "Use mozc temporarily" single ((:commit . "01f09b6c0b308e9f7057fb2aa80171e2ce328bb8") (:authors ("Hiroki YAMAKAWA" . "s06139@gmail.com")) (:maintainer "Hiroki YAMAKAWA" . "s06139@gmail.com") (:url . "https://github.com/HKey/mozc-temp"))]) (mozc-popup . [(20150224 34) ((popup (0 5 2)) (mozc (0))) "Mozc with popup" single ((:commit . "f0684b875a7427ec08f8df13939a486e5d5cf420") (:keywords "i18n" "extentions") (:authors ("Daisuke Kobayashi" . "d5884jp@gmail.com")) (:maintainer "Daisuke Kobayashi" . "d5884jp@gmail.com"))]) (mozc-im . [(20160412 22) ((mozc (0))) "Mozc with input-method-function interface." single ((:commit . "df614a1076c28a11551fb3e822868bae47e855a5") (:keywords "i18n" "extentions") (:authors ("Daisuke Kobayashi" . "d5884jp@gmail.com")) (:maintainer "Daisuke Kobayashi" . "d5884jp@gmail.com"))]) (mozc . [(20180101 800) nil "minor mode to input Japanese with Mozc" single ((:commit . "afb03ddfe72dde4cf2409863a3bfea160f7a66d8") (:keywords "mule" "multilingual" "input method"))]) (moz-controller . [(20151209 206) ((moz (0))) "Control Firefox from Emacs" single ((:commit . "46f665c03574fa922de767fc29795e0db4a7c5c6") (:authors ("任文山 (Ren Wenshan) <renws1990 at gmail.com>")) (:maintainer "任文山 (Ren Wenshan) <renws1990 at gmail.com>") (:url . "https://github.com/RenWenshan/emacs-moz-controller"))]) (moz . [(20150805 1706) nil "Lets current buffer interact with inferior mozilla." single ((:commit . "ab3e79914445039ceb62f7f2dc342358fec3492e") (:authors ("Massimiliano Mirra, <bard [at] hyperstruct [dot] net>")) (:maintainer "Massimiliano Mirra, <bard [at] hyperstruct [dot] net>") (:url . "http://github.com/bard/mozrepl/raw/master/chrome/content/moz.el"))]) (mowedline . [(20161122 235) nil "elisp utilities for using mowedline" single ((:commit . "6121b7d4aacd18f7b24da226e61dbae054e50a7c") (:authors ("John Foerch" . "jjfoerch@earthlink.net")) (:maintainer "John Foerch" . "jjfoerch@earthlink.net"))]) (move-text . [(20170909 330) nil "Move current line or region with M-up or M-down." single ((:commit . "7cbc941a9150468609010a93c429117da2523903") (:keywords "edit") (:authors ("Jason Milkins" . "jasonm23@gmail.com")) (:maintainer "Jason Milkins" . "jasonm23@gmail.com") (:url . "https://github.com/emacsfodder/move-text"))]) (move-dup . [(20180531 1237) nil "Eclipse-like moving and duplicating lines or rectangles." single ((:commit . "24e5b6d7222cbe2437c602f1af37d5807569961a") (:keywords "convenience" "text" "edit") (:authors ("Jimmy Yuen Ho Wong" . "wyuenho@gmail.com")) (:maintainer "Jimmy Yuen Ho Wong" . "wyuenho@gmail.com") (:url . "https://github.com/wyuenho/move-dup"))]) (mouse-slider-mode . [(20161021 1914) ((emacs (24 3)) (cl-lib (0 3))) "scale numbers dragged under the mouse" single ((:commit . "b3c19cd231edecce76787c5a9bbe5e4046d91f88") (:authors ("Christopher Wellons" . "mosquitopsu@gmail.com")) (:maintainer "Christopher Wellons" . "mosquitopsu@gmail.com") (:url . "https://github.com/skeeto/mouse-slider-mode"))]) (motion-mode . [(20140920 156) ((flymake-easy (0 7)) (flymake-cursor (1 0 2))) "major mode for RubyMotion enviroment" tar ((:commit . "4c94180e3ecea611a61240a0c0cd48f1032c4a55") (:authors ("Satoshi Namai")) (:maintainer "Satoshi Namai") (:url . "https://github.com/ainame/motion-mode"))]) (mote-mode . [(20160123 29) ((ruby-mode (1 1))) "Mote minor mode" single ((:commit . "666c6641addbd3b337a7aa01fd2742ded2f41b83") (:authors ("Leandro López (inkel)" . "inkel.ar@gmail.com")) (:maintainer "Leandro López (inkel)" . "inkel.ar@gmail.com") (:url . "http://inkel.github.com/mote-mode/"))]) (mosey . [(20180614 1649) ((emacs (24 4))) "Mosey around your buffers" single ((:commit . "2e3ac9d334fa2937ed5267193dfd25d8e1f14dc2") (:keywords "convenience") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/mosey.el"))]) (morlock . [(20180318 2023) nil "more font-lock keywords for elisp" single ((:commit . "b883d48024ddfffebe2d0dd69f5ed54c617f8834") (:keywords "convenience") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/morlock"))]) (morganey-mode . [(20170118 934) ((emacs (24 4))) "Major mode for editing Morganey files" single ((:commit . "5cf3870432a2aeb69d373abe63b3be1f325f6d21") (:authors ("Alexey Kutepov" . "reximkut@gmail.com")) (:maintainer "Alexey Kutepov" . "reximkut@gmail.com") (:url . "https://github.com/morganey-lang/morganey-mode"))]) (moonscript . [(20170831 2226) ((cl-lib (0 5)) (emacs (24))) "Major mode for editing MoonScript code" tar ((:commit . "56f90471e2ced2b0a177aed4d8c2f854797e9cc7") (:authors ("@GriffinSchneider, @k2052, @EmacsFodder")) (:maintainer "@GriffinSchneider, @k2052, @EmacsFodder"))]) (moom . [(20180910 438) ((emacs (25 1))) "Commands to control frame position and size" tar ((:commit . "a8820f19a8168ab395ba835872606280ad96916d") (:keywords "frames" "faces" "convenience") (:authors ("Takaaki ISHIKAWA <takaxp at ieee dot org>")) (:maintainer "Takaaki ISHIKAWA <takaxp at ieee dot org>") (:url . "https://github.com/takaxp/Moom"))]) (moody . [(20181014 1447) ((emacs (25 3))) "Tabs and ribbons for the mode line" single ((:commit . "f0cfdcff5946775a22e5b789899269669ba58ecd") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/moody"))]) (monroe . [(20180703 1746) nil "Yet another client for nREPL" single ((:commit . "7eeac4f5127f7d74cd975542a8b901742b682922") (:keywords "languages" "clojure" "nrepl" "lisp") (:authors ("Sanel Zukan" . "sanelz@gmail.com")) (:maintainer "Sanel Zukan" . "sanelz@gmail.com") (:url . "http://www.github.com/sanel/monroe"))]) (monotropic-theme . [(20181015 1230) ((emacs (24))) "Monotropic Theme" single ((:commit . "36df566aa8225e303f6c9d90c00740dd678a415e") (:authors ("caffo")) (:maintainer "caffo") (:url . "https://github.com/caffo/monotropic-theme"))]) (monokai-theme . [(20180730 1329) nil "A fruity color theme for Emacs." single ((:commit . "f4ef092129f4a35edaee0a9b2219c17e86309730") (:authors ("Kelvin Smith" . "oneKelvinSmith@gmail.com")) (:maintainer "Kelvin Smith" . "oneKelvinSmith@gmail.com") (:url . "http://github.com/oneKelvinSmith/monokai-emacs"))]) (monokai-alt-theme . [(20170630 2048) ((emacs (24))) "Theme with a dark background. Based on sublime monokai theme." single ((:commit . "f342b6afc31f929be0626eca2d696ee9fab78011") (:authors ("Dmytro Koval")) (:maintainer "Dmytro Koval") (:url . "https://github.com/dawidof/emacs-monokai-theme"))]) (monochrome-theme . [(20140326 1050) nil "A dark Emacs 24 theme for your focused hacking sessions" tar ((:commit . "bfca67fe7365310bc47ae9ca96c417caada54896") (:authors ("Xavier Noria" . "fxn@hashref.com")) (:maintainer "Xavier Noria" . "fxn@hashref.com"))]) (monky . [(20181120 2337) nil "Control Hg from Emacs." tar ((:commit . "d5e787c153eeb35241c165cfda852d37f8dae562"))]) (monitor . [(20161018 1144) ((dash (2 13 0))) "Utilities for monitoring expressions." tar ((:commit . "63f4643a0ee81616dbb692b8b03bae21df2283e2") (:keywords "lisp" "monitor" "utility") (:authors ("Ben Moon" . "software@guiltydolphin.com")) (:maintainer "Ben Moon" . "software@guiltydolphin.com") (:url . "https://github.com/guiltydolphin/monitor"))]) (mongo . [(20150315 1219) nil "MongoDB driver for Emacs Lisp" tar ((:commit . "595529ddd70ecb9fab8b11daad2c3929941099d6") (:keywords "convenience") (:authors ("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) (:maintainer "Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))]) (molokai-theme . [(20151016 1545) nil "molokai theme with Emacs theme engine" single ((:commit . "04a44f21184b6a26caae4f2c92db9019d883309c") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/alloy-d/color-theme-molokai"))]) (molecule . [(20180527 743) ((emacs (25 1))) "Simple wrapper for molecule" single ((:commit . "2ef72b81d9aa24ea782b71a061a3abdad6cae162") (:keywords ":" "languages" "terminals") (:authors (": drymer <drymer [ AT ] autistici.org>")) (:maintainer ": drymer <drymer [ AT ] autistici.org>") (:url . "https://git.daemons.it/drymer/molecule.el"))]) (moe-theme . [(20180617 200) nil "A colorful eye-candy theme. Moe, moe, kyun!" tar ((:commit . "ee6d7a1c84ac7a11fcc82dfc3b174eee1c8461fa") (:url . "https://github.com/kuanyui/moe-theme.el"))]) (modtime-skip-mode . [(20140128 2201) nil "Minor mode for disabling modtime and supersession checks on files." single ((:commit . "c0e49523aa26b2263a8693691ac775988015f592") (:authors ("Jordon Biondo" . "biondoj@mail.gvsu.edu")) (:maintainer "Jordon Biondo" . "biondoj@mail.gvsu.edu") (:url . "http://www.github.com/jordonbiondo/modtime-skip-mode"))]) (modern-cpp-font-lock . [(20180110 2031) nil "Font-locking for \"Modern C++\"" single ((:commit . "9b10e1831bac34685be89e32e83ed969c4bac683") (:keywords "languages" "c++" "cpp" "font-lock") (:authors ("Ludwig PACIFICI" . "ludwig@lud.cc")) (:maintainer "Ludwig PACIFICI" . "ludwig@lud.cc") (:url . "https://github.com/ludwigpacifici/modern-cpp-font-lock"))]) (mode-line-debug . [(20180318 2225) nil "show status of `debug-on-error' in the mode-line" single ((:commit . "a0fcc394b07d2414bd6f722da10f1c7567333f6b") (:keywords "convenience" "lisp") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/mode-line-debug"))]) (mode-line-bell . [(20181029 516) nil "Flash the mode line instead of ringing the bell" single ((:commit . "4985ba42f5a19f46ddbf9b3622453a9694995ce5") (:keywords "convenience") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (mode-icons . [(20180910 1504) ((emacs (24)) (cl-lib (0 5))) "Show icons for modes" tar ((:commit . "26138d825cba7e6bd882707a909505d5536acb9b") (:keywords "multimedia") (:authors ("Tom Willemse" . "tom@ryuslash.org")) (:maintainer "Tom Willemse" . "tom@ryuslash.org") (:url . "http://ryuslash.org/projects/mode-icons.html"))]) (modalka . [(20180101 613) ((emacs (24 4))) "Easily introduce native modal editing of your own design" single ((:commit . "9d990341aa13ea27ba4e47ad02b1a9619af22792") (:keywords "modal" "editing") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/modalka"))]) (mocker . [(20150917 154) ((eieio (1 3)) (el-x (0 2 4))) "mocking framework for emacs" single ((:commit . "6a1d7c9189bd721debd1a60707526e43a733f537") (:keywords "lisp" "testing") (:authors ("Yann Hodique" . "yann.hodique@gmail.com")) (:maintainer "Yann Hodique" . "yann.hodique@gmail.com"))]) (mocha-snippets . [(20170104 527) ((yasnippet (0 8 0))) "Yasnippets for the Mocha JS Testing Framework" tar ((:commit . "e054137bd78f0d236e983874da1f345d30a71816") (:keywords "test" "javascript") (:authors ("Charles Lowell" . "cowboyd@frontside.io")) (:maintainer "Charles Lowell" . "cowboyd@frontside.io"))]) (mocha . [(20180321 2322) ((js2-mode (20150909)) (f (0 18))) "Run Mocha or Jasmine tests" single ((:commit . "33e1b521a8a8d0225df353b51f1e8a4588ee32d0") (:keywords "javascript" "mocha" "jasmine") (:authors ("Al Scott")) (:maintainer "Al Scott") (:url . "http://github.com/scottaj/mocha.el"))]) (mobdebug-mode . [(20140110 346) ((lua-mode (20130419)) (emacs (24))) "Major mode for MobDebug" single ((:commit . "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da") (:authors ("Shihpin Tseng" . "deftsp@gmail.com")) (:maintainer "Shihpin Tseng" . "deftsp@gmail.com") (:url . "https://github.com/deftsp/mobdebug-mode"))]) (mo-vi-ment-mode . [(20131029 633) nil "Provide vi-like cursor movement that's easy on the fingers" single ((:commit . "f45b014261f8fab19254920bd1d92f3a83263411") (:keywords "convenience") (:authors ("Ajay MT" . "ajay.tatachar@gmail.com")) (:maintainer "Ajay MT" . "ajay.tatachar@gmail.com"))]) (mo-git-blame . [(20160129 1759) nil "An interactive, iterative 'git blame' mode for Emacs" single ((:commit . "254a675eb794cdbbdef9fa2b4b7bb510b70089c0") (:keywords "tools") (:authors ("Moritz Bunkus" . "moritz@bunkus.org")) (:maintainer "Moritz Bunkus" . "moritz@bunkus.org"))]) (mmt . [(20180101 619) ((emacs (24 1)) (cl-lib (0 3))) "Missing macro tools for Emacs Lisp" single ((:commit . "e860009ce531ee05d2902309db5f804326596b45") (:keywords "macro" "emacs-lisp") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/mmt"))]) (mmm-mako . [(20121020 651) ((mmm-mode (0 4 8))) "MMM submode class for Mako Templates" single ((:authors ("Philip Jenvey" . "pjenvey@underboss.org")) (:maintainer "Philip Jenvey" . "pjenvey@underboss.org") (:url . "https://bitbucket.org/pjenvey/mmm-mako"))]) (mmm-jinja2 . [(20170313 1420) ((mmm-mode (0 5 4))) "MMM submode class for Jinja2 Templates" single ((:commit . "c8cb763174fa2fb61b9a0e5e0ff8cb0210f8492f") (:authors ("Ben Hayden" . "hayden767@gmail.com")) (:maintainer "Ben Hayden" . "hayden767@gmail.com") (:url . "https://github.com/glynnforrest/mmm-jinja2"))]) (mkdown . [(20140517 1418) ((markdown-mode (2 0))) "Pretty Markdown previews based on mkdown.com" tar ((:commit . "8e23de82719af6c5b53b52b3308a02b3a1fb872e") (:keywords "markdown") (:authors ("Andrew Tulloch")) (:maintainer "Andrew Tulloch") (:url . "https://github.com/ajtulloch/mkdown.el"))]) (mixed-pitch . [(20181119 2303) ((emacs (24 3))) "Use a variable pitch, keeping fixed pitch where it's sensible" single ((:commit . "9acced5c7797fe855550d0870e874bbf030169fa") (:authors ("J. Alexander Branham" . "branham@utexas.edu")) (:maintainer "J. Alexander Branham" . "branham@utexas.edu") (:url . "https://gitlab.com/jabranham/mixed-pitch"))]) (mips-mode . [(20180502 1457) nil "Major-mode for MIPS assembly" single ((:commit . "75152fc78baa762af4f83602f6cb3c8b9bcebca3") (:keywords "languages" "mips" "assembly") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/emacs-mips-mode"))]) (mip-mode . [(20151127 617) nil "virtual projects for emacs." single ((:commit . "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c") (:keywords "workspaces" "workspace" "project" "projects" "mip-mode") (:authors ("Eeli Reilin" . "gaudecker@fea.st")) (:maintainer "Eeli Reilin" . "gaudecker@fea.st"))]) (minor-mode-hack . [(20170926 34) nil "Change priority of minor-mode keymaps" single ((:commit . "9688994e23ccb2de568225ef125b41c46e5667c3") (:keywords "lisp") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/minor-mode-hack.el"))]) (minizinc-mode . [(20180201 1450) ((emacs (24 1))) "Major mode for MiniZinc code" single ((:commit . "2512521ba7f8e263a06db88df663fc6b3cca7e16") (:keywords "languages" "minizinc") (:url . "http://github.com/m00nlight/minizinc-mode"))]) (minitest . [(20160628 1820) ((dash (1 0 0))) "An Emacs mode for ruby minitest files" tar ((:commit . "1aadb7865c1dc69c201cecee275751ecec33a182") (:authors ("Arthur Neves")) (:maintainer "Arthur Neves") (:url . "https://github.com/arthurnn/minitest-emacs"))]) (minions . [(20181030 2101) ((emacs (25 2)) (dash (2 13 0))) "A minor-mode menu for the mode line" single ((:commit . "d36d2445420460c81bcd4822d0bfcbafaec2c682") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/minions"))]) (minimal-theme . [(20160608 1022) nil "A light/dark minimalistic Emacs 24 theme." tar ((:commit . "430e0d3fc2044c16aa9f10961841febbd60df285") (:keywords "color" "theme" "minimal") (:authors ("Anler Hp <anler86 [at] gmail.com>")) (:maintainer "Anler Hp <anler86 [at] gmail.com>") (:url . "http://github.com/ikame/minimal-theme"))]) (minimal-session-saver . [(20140508 2041) nil "Very lean session saver" single ((:commit . "cf654ac549850746dc21091746e4bcc1aef7668e") (:keywords "tools" "frames" "project") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/minimal-session-saver"))]) (miniedit . [(20100419 1745) nil "Enhanced editing for minibuffer fields." single ((:commit . "e12bf659c3eb92dd8a4cb77642dc0865c54667a3"))]) (minibuffer-cua . [(20130906 1134) nil "Make CUA mode's S-up/S-down work in minibuffer" single ((:commit . "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7") (:keywords "completion" "editing") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/minibuffer-cua.el"))]) (minibuffer-complete-cycle . [(20130813 1645) nil "Cycle through the *Completions* buffer" single ((:commit . "3df80135887d0169e02294a948711f6dfeca4a6f") (:keywords "completion") (:authors ("Akinori MUSHA" . "knu@iDaemons.org") ("Kevin Rodgers" . "ihs_4664@yahoo.com")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/minibuffer-complete-cycle"))]) (minibuf-isearch . [(20151226 1943) nil "incremental search on minibuffer history" single ((:commit . "2846c6ac369ee623dad4cd3c8a7a6d9078965516") (:keywords "minibuffer" "history" "incremental search") (:authors ("Keiichiro Nagano" . "knagano@sodan.org") ("Hideyuki SHIRAI " . "shirai@meadowy.org")) (:maintainer "Keiichiro Nagano" . "knagano@sodan.org"))]) (mini-header-line . [(20170621 1221) ((emacs (24 4))) "a minimal header-line" single ((:commit . "73b6724e0a26c4528d93768191c8aa59e6bce2e5") (:keywords "header-line" "mode-line") (:authors ("Johannes Goslar")) (:maintainer "Johannes Goslar") (:url . "https://github.com/ksjogo/mini-header-line"))]) (mingus . [(20180713 636) ((libmpdee (2 1))) "MPD Interface" tar ((:commit . "686d383f48b196c916c5fcb6ddc3bcff8a0c4b14") (:keywords "multimedia" "elisp" "music" "mpd") (:authors ("Niels Giesen <pft on #emacs>")) (:maintainer "Niels Giesen <pft on #emacs>") (:url . "https://github.com/pft/mingus"))]) (minesweeper . [(20150414 522) nil "play minesweeper in Emacs" single ((:keywords "game" "fun" "minesweeper" "inane" "diversion") (:authors ("Zachary Kanfer" . "zkanfer@gmail.com")) (:maintainer "Zachary Kanfer" . "zkanfer@gmail.com") (:url . "https://bitbucket.org/zck/minesweeper.el"))]) (milkode . [(20140927 529) nil "Command line search and direct jump with Milkode" single ((:commit . "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513") (:keywords "milkode" "search" "grep" "jump" "keyword") (:authors ("ongaeshi")) (:maintainer "ongaeshi"))]) (migemo . [(20160924 1441) ((cl-lib (0 5))) "Japanese incremental search through dynamic pattern expansion" single ((:commit . "e4744efae1b2fdea2bbd2ceaff0f6ea0bb739f5a") (:authors ("Satoru Takabayashi" . "satoru-t@is.aist-nara.ac.jp")) (:maintainer "Satoru Takabayashi" . "satoru-t@is.aist-nara.ac.jp") (:url . "https://github.com/emacs-jp/migemo"))]) (midje-mode . [(20170809 403) ((cider (0 1 4)) (clojure-mode (1 0))) "Minor mode for running Midje tests in emacs" tar ((:commit . "10ad5b6084cd03d5cd268b486a7c3c246d85535f"))]) (micgoline . [(20160415 326) ((emacs (24 3)) (powerline (2 3))) "powerline mode, color schemes from microsoft and google's logo." single ((:commit . "837504263bb1711203b0f7efecd6b7b5f272fae0") (:keywords "mode-line" "powerline" "theme") (:authors ("yzprofile" . "yzprofiles@gmail.com")) (:maintainer "yzprofile" . "yzprofiles@gmail.com") (:url . "https://github.com/yzprofile/micgoline"))]) (mic-paren . [(20170731 1907) nil "advanced highlighting of matching parentheses" single ((:commit . "d0410c7d805c9aaf51a1bcefaaef092bed5824c4") (:keywords "languages" "faces" "parenthesis" "matching") (:authors ("Mikael Sjödin" . "mic@docs.uu.se") ("Klaus Berndl " . "berndl@sdm.de") ("Jonathan Kotta" . "jpkotta@gmail.com")) (:maintainer "ttn"))]) (mhc . [(20180724 458) ((calfw (20150703))) "Message Harmonized Calendaring system." tar ((:commit . "2cd1e97fa2e32e7dfde5ee7878fb9a915fb6a3b8") (:keywords "calendar") (:authors ("Yoshinari Nomura" . "nom@quickhack.net")) (:maintainer "Yoshinari Nomura" . "nom@quickhack.net") (:url . "http://www.quickhack.net/mhc"))]) (mgmtconfig-mode . [(20180222 2057) ((emacs (24 3))) "mgmt configuration management language" single ((:commit . "43b5b4f5a409b203e4331fed962857e4ba034cd9") (:keywords "languages") (:authors ("Peter Oliver" . "mgmtconfig@mavit.org.uk")) (:maintainer "Mgmt contributors <https://github.com/purpleidea/mgmt>") (:url . "https://github.com/purpleidea/mgmt/misc/emacs"))]) (mexican-holidays . [(20160109 2142) nil "Mexico holidays for Emacs calendar." single ((:commit . "43ced1f9e40a04be6927d1a1be64060f9be4f5c5") (:keywords "calendar") (:authors ("Saúl Gutiérrez" . "me@sggc.me")) (:maintainer "Saúl Gutiérrez" . "me@sggc.me") (:url . "https://github.com/shopClerk/mexican-holidays"))]) (mew . [(20180911 123) nil "Messaging in the Emacs World" tar ((:commit . "91a78fd6c6d74d0881d68c51dcd9be8cae065c02") (:authors ("Kazu Yamamoto" . "Kazu@Mew.org")) (:maintainer "Kazu Yamamoto" . "Kazu@Mew.org"))]) (metaweblog . [(20171217 240) ((xml-rpc (1 6 8))) "An emacs library to access metaweblog based weblogs" tar ((:commit . "aa14380eb7e7b879a0c16c96866b20a987cd3f2a"))]) (metascript-mode . [(20150709 57) ((emacs (24 3))) "Major mode for the Metascript programming language" single ((:commit . "edb361c7b0e5de231e5334a17b90652fb1df78f9") (:keywords "languages" "metascript" "mjs") (:url . "http://github.com/metascript/metascript-mode"))]) (metamorph . [(20180930 2028) ((emacs (24 4))) "Transform your buffers with lisp" single ((:commit . "d9dc7037b7eed7b3fe85ea50e91f332e3f831514") (:keywords "metaprogramming" "wp") (:authors ("Adam Niederer" . "adam.niederer@gmail.com")) (:maintainer "Adam Niederer" . "adam.niederer@gmail.com") (:url . "http://github.com/AdamNiederer/metamorph"))]) (metalheart-theme . [(20160710 641) ((emacs (24))) "Low-contrast theme with a dark blue-green background." single ((:commit . "ec98ea2c11dc1213dae8cbe1fe0cee73ca138bb2") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler"))]) (meta-presenter . [(20170426 234) nil "A simple multi-file presentation tool for Emacs" single ((:commit . "4e7aae56e5abf6deaadbda84fd5ec4e3e19c22be") (:keywords "productivity" "presentation") (:authors ("Mohammed Ismail Ansari" . "team.terminal@gmail.com")) (:maintainer "Mohammed Ismail Ansari" . "team.terminal@gmail.com") (:url . "http://ismail.teamfluxion.com"))]) (messages-are-flowing . [(20170219 120) nil "visible indication when composing \"flowed\" emails" single ((:commit . "ef879726957c850c3a5afd7f1118604991e37e32") (:keywords "mail") (:authors ("Magnus Henoch" . "magnus.henoch@gmail.com")) (:maintainer "Magnus Henoch" . "magnus.henoch@gmail.com"))]) (meson-mode . [(20181115 2125) ((emacs (24 3))) "Major mode for the Meson build system files" single ((:commit . "b507a87455af906e6c49aa4af70eba5b1d1af9ef") (:keywords "languages" "tools") (:authors ("Michal Sojka" . "sojkam1@fel.cvut.cz")) (:maintainer "Michal Sojka" . "sojkam1@fel.cvut.cz") (:url . "https://github.com/wentasah/meson-mode"))]) (merlin-eldoc . [(20180830 1016) ((emacs (24 4)) (merlin (3 0))) "eldoc for OCaml and Reason" single ((:commit . "85dec436648f43c050048524fae7a3ad7ad4c019") (:keywords "merlin" "ocaml" "languages" "eldoc") (:authors ("Louis Roché" . "louis@louisroche.net")) (:maintainer "Louis Roché" . "louis@louisroche.net") (:url . "https://github.com/khady/merlin-eldoc"))]) (merlin . [(20180816 815) nil "Mode for Merlin, an assistant for OCaml." tar ((:commit . "b9c4dc9730c4cb5aaf52d9f446a54b0a1c2c98c0") (:keywords "ocaml" "languages") (:authors ("Frédéric Bour <frederic.bour(_)lakaban.net>")) (:maintainer "Frédéric Bour <frederic.bour(_)lakaban.net>") (:url . "https://github.com/ocaml/merlin"))]) (mentor . [(20181029 2007) ((xml-rpc (1 6 9)) (seq (1 11)) (cl-lib (0 5)) (async (1 9 3))) "Frontend for the rTorrent bittorrent client" tar ((:commit . "9415472470ff23ee9600d94123c51c455d63018d") (:keywords "comm" "processes" "bittorrent") (:authors ("Stefan Kangas" . "stefankangas@gmail.com")) (:maintainer "Stefan Kangas" . "stefankangas@gmail.com"))]) (memolist . [(20150804 1721) ((markdown-mode (22 0)) (ag (0 45))) "memolist.el is Emacs port of memolist.vim." single ((:commit . "60c296e202a71e9dcf1c3936d47b5c4b95c5839f") (:keywords "markdown" "memo") (:authors ("mikanfactory <k952i4j14x17_at_gmail.com>")) (:maintainer "mikanfactory") (:url . "http://github.com/mikanfactory/emacs-memolist"))]) (memoize . [(20180614 1930) nil "Memoization functions" single ((:commit . "9a561268ffb550b257a08710489a95cd087998b6") (:authors ("Christopher Wellons" . "mosquitopsu@gmail.com")) (:maintainer "Christopher Wellons" . "mosquitopsu@gmail.com") (:url . "https://github.com/skeeto/emacs-memoize"))]) (melpa-upstream-visit . [(20130720 1033) ((s (1 6 0))) "A set of kludges to visit a melpa-hosted package's homepage" single ((:commit . "7310c74fdead3c0f86ad6eff76cf989e63f70f66") (:keywords "convenience") (:authors ("Alessandro Piras" . "laynor@gmail.com")) (:maintainer "Alessandro Piras" . "laynor@gmail.com"))]) (mellow-theme . [(20170808 1317) ((emacs (24 0))) "an Emacs 24 theme based on Mellow (tmTheme)" single ((:commit . "2bdf18f05f5212b6f269d9a94afe2cf201766891") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (melancholy-theme . [(20170220 2048) nil "A dark theme for dark minds" single ((:commit . "a9e13ca7051731b3a2c2aece9f3e3033b9a5e41d") (:authors ("Sod Oscarfono" . "sod@oscarfono.com")) (:maintainer "Sod Oscarfono" . "sod@oscarfono.com") (:url . "http://github.com/techquila/melancholy-theme"))]) (meghanada . [(20181116 1302) ((emacs (24 3)) (yasnippet (0 6 1)) (company (0 9 0)) (flycheck (0 23))) "A better java development mode" tar ((:commit . "4914ab1496d88251f179dc3b6158fc65e999804a") (:keywords "languages" "java") (:authors ("Yutaka Matsubara" . "yutaka.matsubara@gmail.com")) (:maintainer "Yutaka Matsubara" . "yutaka.matsubara@gmail.com") (:url . "https://github.com/mopemope/meghanada-emacs"))]) (mediawiki . [(20170813 555) nil "mediawiki frontend" single ((:commit . "8473e12d1839f5287a4227586bf117dad820f867") (:keywords "mediawiki" "wikipedia" "network" "wiki") (:authors ("Mark A. Hershberger" . "mah@everybody.org")) (:maintainer "Mark A. Hershberger" . "mah@everybody.org") (:url . "https://github.com/hexmode/mediawiki-el"))]) (md4rd . [(20180626 536) ((emacs (25 1)) (hierarchy (0 7 0)) (request (0 3 0)) (cl-lib (0 6 1)) (dash (2 12 0)) (s (1 12 0)) (tree-mode (1 0 0))) "Mode for reddit (browse it)." single ((:commit . "75fbf295d896230c4b441dc773d266fa6cd7a509") (:keywords "ahungry" "reddit" "browse" "news") (:authors ("Matthew Carter" . "m@ahungry.com")) (:maintainer "Matthew Carter" . "m@ahungry.com") (:url . "https://github.com/ahungry/md4rd"))]) (md-readme . [(20160811 1646) nil "Markdown-formatted READMEs for your ELisp" tar ((:commit . "bf818dd847c8b06b3b5100c5d3cf24cf96662528") (:keywords "lisp" "help" "readme" "markdown" "header" "documentation" "github") (:authors ("Thomas Kappler" . "tkappler@gmail.com")) (:maintainer "Thomas Kappler" . "tkappler@gmail.com") (:url . "http://github.com/thomas11/md-readme/tree/master"))]) (mc-extras . [(20181109 1735) ((multiple-cursors (1 2 1))) "Extra functions for multiple-cursors mode." tar ((:commit . "053abc52181b8718559d7361a587bbb795faf164") (:keywords "editing" "cursors") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/mc-extras.el"))]) (mbsync . [(20181002 640) nil "run mbsync to fetch mails" single ((:commit . "f549eccde6033449d24cd5b6148599484850c403") (:authors ("Dimitri Fontaine" . "dim@tapoueh.org")) (:maintainer "Dimitri Fontaine" . "dim@tapoueh.org") (:url . "https://github.com/dimitri/mbsync-el"))]) (mbo70s-theme . [(20170808 1315) ((emacs (24 0))) "70s style palette, with similarities to mbo theme" single ((:commit . "bed3db8965708ed4e9482b224a9b084765c052f2") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (mbe . [(20151126 1134) ((emacs (24)) (cl-lib (0 5))) "Macros by Example" single ((:commit . "bb10aa8f26bb7e9b1d5746934c94edb00402940c") (:keywords "tools" "macros") (:authors ("Ian Price" . "ianprice90@googlemail.com")) (:maintainer "Ian Price" . "ianprice90@googlemail.com") (:url . "https://github.com/ijp/mbe.el"))]) (mb-url . [(20181011 1752) ((cl-lib (0))) "Multiple Backends for Emacs URL package." tar ((:commit . "224b92353094aec25c9c46159d71ab2db5831498") (:url . "https://github.com/dochang/mb-url") (:keywords "url"))]) (maxframe . [(20170120 1705) nil "maximize the emacs frame based on display size" single ((:commit . "13bda6dd9f1d96aa4b9dd9957a26cefd399a7772") (:keywords "display" "frame" "window" "maximize") (:authors ("Ryan McGeary")) (:maintainer "Ryan McGeary"))]) (maven-test-mode . [(20141220 557) ((s (1 9)) (emacs (24))) "Utilities for navigating test files and running maven test tasks." single ((:commit . "a19151861df2ad8ae4880a2e7c86ddf848cb569a") (:keywords "java" "maven" "test") (:authors ("Renan Ranelli")) (:maintainer "Renan Ranelli") (:url . "http://github.com/rranelli/maven-test-mode"))]) (maude-mode . [(20160222 1607) nil "Emacs mode for the programming language Maude" single ((:commit . "c9543bb8a172fa77af592388e7f520a4a6d38987") (:keywords "maude") (:authors ("Ellef Gjelstad <ellefg+maude*ifi.uio.no>")) (:maintainer "Rudi Schlatte" . "rudi@constantly.at"))]) (matlab-mode . [(20180928 1526) nil "Major mode for MATLAB(R) dot-m files" tar ((:commit . "3fbca4259b2584bde08df07ba51944d7e3e2b4f4") (:url . "http://sourceforge.net/projects/matlab-emacs/") (:keywords "matlab" "programming" "language" "(X)emacs"))]) (math-symbols . [(20170818 1459) ((helm (1 0))) "Math Symbol Input methods and conversion tools" tar ((:commit . "3f8b466f002e1b28ddbe9a6f236c9a1352adb17d") (:keywords "i18n" "languages" "tex") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/math-symbols"))]) (math-symbol-lists . [(20170221 1353) nil "Lists of Unicode math symbols and latex commands" tar ((:commit . "1af8fdcab7941a62287c2d04b8876e1538f39c60") (:keywords "unicode" "symbols" "mathematics") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/vspinu/math-symbol-lists"))]) (material-theme . [(20171123 1840) ((emacs (24 1))) "A Theme based on the colors of the Google Material Design" tar ((:commit . "b66838d220ad380a16da1d8878936974b26f815d") (:keywords "themes") (:authors ("Christoph Paulik" . "cpaulik@gmail.com")) (:maintainer "Christoph Paulik" . "cpaulik@gmail.com") (:url . "http://github.com/cpaulik/emacs-material-theme"))]) (mastodon . [(20180811 220) ((emacs (24 4))) "Client for Mastodon" tar ((:commit . "585a2dd79f6f929378237c3a678cf43efdf37407") (:authors ("Johnson Denen" . "johnson.denen@gmail.com")) (:maintainer "Johnson Denen" . "johnson.denen@gmail.com") (:url . "https://github.com/jdenen/mastodon.el"))]) (maruo-macro-mode . [(20160616 1349) ((emacs (24 3))) "Major mode for editing Hidemaru/Maruo macro script" single ((:commit . "8fc9a38ad051eafa8eb94038711acc52c5d1d8d5") (:keywords "programming" "editor" "macro") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me"))]) (marshal . [(20180124 1239) ((eieio (1 4)) (json (1 3)) (ht (2 1))) "eieio extension for automatic (un)marshalling" single ((:commit . "f038689cbd5b3680b80b44edd0c7a63ca3038e26") (:keywords "eieio") (:authors ("Yann Hodique" . "hodiquey@vmware.com")) (:maintainer "Yann Hodique" . "hodiquey@vmware.com") (:url . "https://github.com/sigma/marshal.el"))]) (marmalade-client . [(20141231 2007) ((web (0 5 2)) (kv (0 0 19)) (gh (0 8 0))) "client for marmalade API from emacs" tar ((:commit . "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a") (:keywords "lisp") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "https://github.com/nicferrier/emacs-marmalade-upload"))]) (markup-faces . [(20141110 817) nil "collection of faces for markup language modes" single ((:commit . "98a807ed82473eb41c6a201ed7ef816d6bcd67b0") (:keywords "wp" "faces") (:authors ("Florian Kaufmann" . "sensorflo@gmail.com")) (:maintainer "Florian Kaufmann" . "sensorflo@gmail.com") (:url . "https://github.com/sensorflo/markup-faces"))]) (markup . [(20170420 1129) ((cl-lib (0 5))) "Simple markup generation helpers." single ((:commit . "876da2d3f23473475bb0fd0a1480ae11d2671291") (:keywords "convenience" "markup" "html") (:authors ("Arthur Leonard Andersen" . "leoc.git@gmail.com")) (:maintainer "Arthur Leonard Andersen" . "leoc.git@gmail.com") (:url . "http://github.com/leoc/markup.el"))]) (markdownfmt . [(20160609 1241) ((emacs (24))) "Format markdown using markdownfmt" single ((:commit . "187a74eb4fd9e8520ce08da42d1d292b9af7f2b7") (:keywords "markdown") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/emacs-markdownfmt"))]) (markdown-toc . [(20170711 1949) ((s (1 9 0)) (dash (2 11 0)) (markdown-mode (2 1))) "A simple TOC generator for markdown file" tar ((:commit . "7038f4f6d5c2bc7e4aea89699a607ac2b7dd16a8"))]) (markdown-preview-mode . [(20180929 725) ((emacs (24 3)) (websocket (1 6)) (markdown-mode (2 0)) (cl-lib (0 5)) (web-server (0 1 1)) (uuidgen (0 3))) "markdown realtime preview minor mode." tar ((:commit . "cba12b77764df0fd3cf7008073df1badfa216073") (:keywords "markdown" "gfm" "convenience") (:authors ("Igor Shymko" . "igor.shimko@gmail.com")) (:maintainer "Igor Shymko" . "igor.shimko@gmail.com") (:url . "https://github.com/ancane/markdown-preview-mode"))]) (markdown-preview-eww . [(20160111 1502) ((emacs (24 4))) "Realtime preview by eww" single ((:commit . "5853f836425c877c8a956501f0adda137ef1d3b7") (:authors ("niku" . "niku@niku.name")) (:maintainer "niku" . "niku@niku.name") (:url . "https://github.com/niku/markdown-preview-eww"))]) (markdown-mode . [(20181112 1529) ((emacs (24 4)) (cl-lib (0 5))) "Major mode for Markdown-formatted text" single ((:commit . "d18a8f856d19dfac8fa6e6e72b2448e262045fcc") (:keywords "markdown" "github flavored markdown" "itex") (:authors ("Jason R. Blevins" . "jblevins@xbeta.org")) (:maintainer "Jason R. Blevins" . "jblevins@xbeta.org") (:url . "https://jblevins.org/projects/markdown-mode/"))]) (markdown-mode+ . [(20170320 2104) ((markdown-mode (20111229))) "extra functions for markdown-mode" tar ((:commit . "411d079f4430a33c34ec0bbcb1535fe1145a2509") (:keywords "markdown" "latex" "osx" "rtf") (:authors ("Donald Ephraim Curtis")) (:maintainer "Donald Ephraim Curtis") (:url . "http://github.com/milkypostman/markdown-mode-plus"))]) (mark-tools . [(20130614 1025) nil "Some simple tools to access the mark-ring in Emacs" single ((:commit . "a11b61effa90bd0abc876d12573674d36fc17f0c") (:authors ("Alex Bennée" . "alex@bennee.com")) (:maintainer "Alex Bennée" . "alex@bennee.com") (:url . "https://github.com/stsquad/emacs-mark-tools"))]) (mark-multiple . [(20121118 1554) nil "Sorta lets you mark several regions at once." tar ((:commit . "f6a53c7c5283d640ae718f4548b0fda78877a375"))]) (marcopolo . [(20160421 1004) ((s (1 9 0)) (dash (2 9 0)) (pkg-info (0 5 0)) (request (0 1 0))) "Emacs client to the Docker HUB/Registry API" tar ((:commit . "9193aabdf12223087b5ed58f1507d5d8a24a4381") (:keywords "docker") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/marcopolo"))]) (map-regexp . [(20130522 2103) ((cl-lib (0 2))) "map over matches of a regular expression" single ((:commit . "b8e06284ec1c593d7d2bda5f35597a63de46333f") (:keywords "convenience") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/map-regexp"))]) (map-progress . [(20140310 2132) nil "mapping macros that report progress" single ((:commit . "3167eb218510953fb97e7d50948a625eaa3f0005") (:keywords "convenience") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/map-progress/"))]) (mandoku-tls . [(20171118 240) ((emacs (24 4)) (mandoku (20170301)) (github-clone (0 2)) (hydra (0 13 6)) (helm (1 7 0)) (org (9 0)) (helm-charinfo (20170601))) "A tool to access the TLS database" single ((:commit . "ffeebf5bd451ac1806ddfe1744fbbd036a56f902") (:keywords "convenience") (:authors ("Christian Wittern" . "cwittern@gmail.com")) (:maintainer "Christian Wittern" . "cwittern@gmail.com") (:url . "https://github.com/mandoku/mandoku-tls"))]) (mandoku . [(20180403 1106) ((org (8 0)) (magit (20151028)) (github-clone (20150705)) (git (20140128))) "A tool to access repositories of premodern Chinese texts" tar ((:commit . "f230c871de8aab1be7b7a9718cd930548a90baa8"))]) (mandm-theme . [(20180915 1940) nil "An M&M color theme." single ((:commit . "b560aa0129c55a2f4fcc5e67a7d6c66ee4dc3124") (:authors ("Christian Hopps" . "chopps@gmail.com")) (:maintainer "Christian Hopps" . "chopps@gmail.com") (:url . "https://github.com/choppsv1/emacs-mandm-theme.git"))]) (manage-minor-mode . [(20140310 1600) ((emacs (24 3))) "Manage your minor-modes easily" single ((:commit . "1bed33b0752380b548b822fe72e6858c5fe70c8e") (:keywords "minor-mode" "manage" "emacs") (:authors ("Shingo Fukuyama - http://fukuyama.co")) (:maintainer "Shingo Fukuyama - http://fukuyama.co") (:url . "https://github.com/ShingoFukuyama/manage-minor-mode"))]) (man-commands . [(20151221 2221) ((cl-lib (0 5))) "Add interactive commands for every manpages installed in your computer." single ((:commit . "f4ba0c3790855d7544dff92d470d212f24de1d9d") (:authors ("Nathaniel Flath" . "nflath@gmail.com")) (:maintainer "Nathaniel Flath" . "nflath@gmail.com") (:url . "http://github.com/nflath/man-commands"))]) (malyon . [(20161208 2125) ((cl-lib (0 5))) "mode to execute Z-code files version 3, 5, 8" single ((:commit . "0d9882650720b4a791556f5e2d917388965d6fc0") (:keywords "games" "emulations") (:authors ("Peter Ilberg <peter.ilberg@gmail.com>, Christopher Madsen <cjm@cjmweb.net>, Erik Selberg" . "erik@selberg.org")) (:maintainer "Christopher Madsen <cjm@cjmweb.net>, Erik Selberg" . "erik@selberg.org") (:url . "https://github.com/speedenator/malyon"))]) (mallard-snippets . [(20131023 1851) ((yasnippet (0 8 0)) (mallard-mode (0 1 1))) "Yasnippets for Mallard" tar ((:commit . "70c5293f10722f2ace73bdf74d9a18f95b040edc") (:keywords "snippets" "mallard") (:authors ("Jaromir Hradilek" . "jhradilek@gmail.com")) (:maintainer "Jaromir Hradilek" . "jhradilek@gmail.com") (:url . "https://github.com/jhradilek/emacs-mallard-snippets"))]) (mallard-mode . [(20131204 425) nil "Major mode for editing Mallard files" tar ((:commit . "c48170c1ace4959abcc5fb1df0d4cb149cff44c1") (:keywords "xml" "mallard") (:authors ("Jaromir Hradilek" . "jhradilek@gmail.com")) (:maintainer "Jaromir Hradilek" . "jhradilek@gmail.com") (:url . "https://github.com/jhradilek/emacs-mallard-mode"))]) (malinka . [(20171202 1021) ((s (1 9 0)) (dash (2 4 0)) (f (0 11 0)) (cl-lib (0 3)) (rtags (0 0)) (projectile (0 11 0))) "A C/C++ project configuration package for Emacs" single ((:commit . "d4aa517c7a9022eae16c758c7efdb3a0403542d7") (:keywords "c" "c++" "project-management") (:authors ("Lefteris Karapetsas" . "lefteris@refu.co")) (:maintainer "Lefteris Karapetsas" . "lefteris@refu.co") (:url . "https://github.com/LefterisJP/malinka"))]) (makey . [(20131231 1430) ((cl-lib (0 2))) "interactive commandline mode" single ((:commit . "a61781e69d3b451551e269446e1c5f624ab81137") (:authors ("Mickey Petersen" . "mickey@masteringemacs.org")) (:maintainer "Mickey Petersen" . "mickey@masteringemacs.org"))]) (makefile-executor . [(20180720 832) ((emacs (24 3)) (dash (2 11 0)) (f (0 11 0)) (s (1 10 0))) "Commands for conveniently running makefile targets" single ((:commit . "9a7d78f814a4b372d8f8179819cb1b37b83b1973") (:keywords "processes") (:authors ("Lowe Thiderman" . "lowe.thiderman@gmail.com")) (:maintainer "Lowe Thiderman" . "lowe.thiderman@gmail.com") (:url . "https://github.com/thiderman/makefile-executor.el"))]) (make-it-so . [(20180128 2107) ((swiper (0 8 0)) (emacs (24))) "Transform files with Makefile recipes." tar ((:commit . "bc3b01d6b9ed6ff66ebbd524234f9d6df60dd4be") (:keywords "make" "dired") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/make-it-so"))]) (make-color . [(20140625 1150) nil "Alternative to picking color - update fg/bg color by pressing r/g/b/... keys" single ((:commit . "5ca1383ca9228bca82120b238bdc119f302b75c0") (:keywords "color") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/make-color.el"))]) (major-mode-icons . [(20170301 714) ((emacs (24 3)) (powerline (2 4)) (all-the-icons (2 3 0))) "display icon for major-mode on mode-line." tar ((:commit . "e6117a236b2ad52e948576550b183053321dfc91") (:keywords "frames" "multimedia") (:url . "http://github.com/stardiviner/major-mode-icons"))]) (majapahit-theme . [(20160817 1848) nil "Color theme with a dark and light versions" tar ((:commit . "77c96df7619666b2102d90d452eeadf04adc89a6") (:keywords "color" "theme") (:url . "https://gitlab.com/franksn/majapahit-theme"))]) (magnatune . [(20151030 1935) ((dash (2 9 0)) (s (1 9 0))) "browse magnatune's music catalog" tar ((:commit . "605b01505ba30589c77ebb4c96834b5072ccbdd4"))]) (magma-mode . [(20180413 1427) ((cl-lib (0 3)) (dash (2 6 0)) (f (0 17 1))) "Magma mode for Emacs" tar ((:commit . "d8e41b3c0bc7d37be78fdbcabf6c13c9e182dfaa") (:url . "https://github.com/ThibautVerron/magma-mode"))]) (magithub . [(20181116 1355) ((emacs (25)) (magit (2 12)) (s (1 12 0)) (ghub+ (0 3)) (git-commit (2 12)) (markdown-mode (2 3))) "Magit interfaces for GitHub" tar ((:commit . "94e9f9a1a168e324ec7b79e3437afd1c1fb80200") (:keywords "git" "tools" "vc") (:authors ("Sean Allred" . "code@seanallred.com")) (:maintainer "Sean Allred" . "code@seanallred.com") (:url . "https://github.com/vermiculus/magithub"))]) (magit-topgit . [(20160313 1954) ((emacs (24 4)) (magit (2 1 0))) "TopGit extension for Magit" single ((:commit . "11489ea798bc88d0ea5244bbf725285eedfefbef") (:keywords "vc" "tools") (:authors ("Yann Hodique" . "yann.hodique@gmail.com")) (:maintainer "Robin Green" . "greenrd@greenrd.org"))]) (magit-todos . [(20181009 424) ((emacs (25 2)) (async (1 9 2)) (dash (2 13 0)) (f (0 17 2)) (hl-todo (1 9 0)) (magit (2 13 0)) (pcre2el (1 8)) (s (1 12 0))) "Show source file TODOs in Magit" single ((:commit . "ccfb2c5df0d6371aee0d4abc4a55c403ee2b0241") (:keywords "magit" "vc") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/magit-todos"))]) (magit-tbdiff . [(20181120 122) ((emacs (24 4)) (magit (2 10 0))) "Magit extension for git-tbdiff" single ((:commit . "156751e38af34b76d591762c5a5b04739d0806ca") (:keywords "vc" "tools") (:authors ("Kyle Meyer" . "kyle@kyleam.com")) (:maintainer "Kyle Meyer" . "kyle@kyleam.com") (:url . "https://github.com/magit/magit-tbdiff"))]) (magit-svn . [(20170213 1233) ((emacs (24 4)) (magit (2 1 0))) "Git-Svn extension for Magit" single ((:commit . "c833903732a14478f5c4cfc561bae7c50671b36c") (:keywords "vc" "tools") (:authors ("Phil Jackson" . "phil@shellarchive.co.uk")) (:maintainer "Phil Jackson" . "phil@shellarchive.co.uk"))]) (magit-stgit . [(20180522 1242) ((emacs (24 4)) (magit (2 1 0))) "StGit extension for Magit" single ((:commit . "186e60489f5449d87d94aca24b9d65e2f26a3bc5") (:keywords "vc" "tools") (:authors ("Lluís Vilanova" . "vilanova@ac.upc.edu")) (:maintainer "Lluís Vilanova" . "vilanova@ac.upc.edu"))]) (magit-rbr . [(20181009 2016) ((magit (2 13 0)) (emacs (24 3))) "Support for git rbr in Magit" single ((:commit . "029203b3e48537205052a058e964f058cd802c3c") (:keywords "git" "magit" "rbr" "tools") (:authors ("Anatoly Fayngelerin" . "fanatoly+magitrbr@gmail.com")) (:maintainer "Anatoly Fayngelerin" . "fanatoly+magitrbr@gmail.com") (:url . "https://github.com/fanatoly/magit-rbr"))]) (magit-popup . [(20181003 921) ((emacs (24 4)) (async (1 9 2)) (dash (2 13 0))) "Define prefix-infix-suffix command combos" tar ((:commit . "8436447e3166b797edc596cf220f3bf9b41ff4d0") (:keywords "bindings") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/magit/magit-popup"))]) (magit-p4 . [(20170414 1246) ((magit (2 1)) (magit-popup (2 1)) (p4 (12 0)) (cl-lib (0 5))) "git-p4 plug-in for Magit" single ((:commit . "01e8bb24830861c50109878812550b4265cba82b") (:keywords "vc" "tools") (:authors ("Damian T. Dobroczy\\\\'nski" . "qoocku@gmail.com")) (:maintainer "Aleksey Fedotov" . "lexa@cfotr.com") (:url . "https://github.com/qoocku/magit-p4"))]) (magit-org-todos . [(20180709 1950) ((magit (2 0 0)) (emacs (24))) "Add local todo items to the magit status buffer" single ((:commit . "9ffa3efb098434d837cab4bacd1601fdfc6fe999") (:keywords "org-mode" "magit" "tools") (:authors ("Daniel Ma")) (:maintainer "Daniel Ma") (:url . "http://github.com/danielma/magit-org-todos"))]) (magit-lfs . [(20170312 2224) ((emacs (24 4)) (magit (2 10 3)) (dash (2 13 0))) "Magit plugin for Git LFS" single ((:commit . "799282fce73b668d2cf6e4fa87f889fec8e25333") (:keywords "magit" "git" "lfs" "tools" "vc") (:authors ("Junyoung Clare Jang" . "jjc9310@gmail.com")) (:maintainer "Junyoung Clare Jang" . "jjc9310@gmail.com") (:url . "https://github.com/ailrun/magit-lfs"))]) (magit-imerge . [(20181120 255) ((emacs (24 4)) (magit (2 10 0))) "Magit extension for git-imerge" single ((:commit . "5b45efa65317886640c339d1c71d2b9e00e98b77") (:keywords "vc" "tools") (:authors ("Kyle Meyer" . "kyle@kyleam.com")) (:maintainer "Kyle Meyer" . "kyle@kyleam.com") (:url . "https://github.com/magit/magit-imerge"))]) (magit-gitflow . [(20170929 824) ((magit (2 1 0)) (magit-popup (2 2 0))) "gitflow extension for magit" single ((:commit . "cc41b561ec6eea947fe9a176349fb4f771ed865b") (:keywords "vc" "tools") (:authors ("Jan Tatarik" . "Jan.Tatarik@gmail.com")) (:maintainer "Jan Tatarik" . "Jan.Tatarik@gmail.com") (:url . "https://github.com/jtatarik/magit-gitflow"))]) (magit-gh-pulls . [(20180716 1636) ((emacs (24 4)) (gh (0 9 1)) (magit (2 12 0)) (pcache (0 2 3)) (s (1 6 1))) "GitHub pull requests extension for Magit" single ((:commit . "6949e973f3e951cb0bfe75d889e0fcccc33ba733") (:keywords "git" "tools") (:authors ("Yann Hodique" . "yann.hodique@gmail.com")) (:maintainer "Yann Hodique" . "yann.hodique@gmail.com") (:url . "https://github.com/sigma/magit-gh-pulls"))]) (magit-gerrit . [(20160226 930) ((magit (2 3 1))) "Magit plugin for Gerrit Code Review" single ((:commit . "ece6f369694aca17f3ac166ed2801b432acfe20d") (:authors ("Brian Fransioli" . "assem@terranpro.org")) (:maintainer "Brian Fransioli" . "assem@terranpro.org") (:url . "https://github.com/terranpro/magit-gerrit"))]) (magit-find-file . [(20150702 830) ((magit (2 1 0)) (dash (2 8 0))) "completing-read over all files in Git" single ((:commit . "c3ea91bab37d10a814a829728ec972811f728d60") (:keywords "git") (:authors ("Bradley Wright" . "brad@intranation.com")) (:maintainer "Bradley Wright" . "brad@intranation.com") (:url . "https://github.com/bradleywright/magit-find-file.el"))]) (magit-filenotify . [(20151116 2340) ((magit (1 3 0)) (emacs (24 4))) "Refresh status buffer when git tree changes" single ((:commit . "c0865b3c41af20b6cd89de23d3b0beb54c8401a4") (:keywords "tools") (:authors ("Rüdiger Sonderfeld" . "ruediger@c-plusplus.de")) (:maintainer "Rüdiger Sonderfeld" . "ruediger@c-plusplus.de"))]) (magit-annex . [(20181120 226) ((cl-lib (0 3)) (magit (2 90 0))) "Control git-annex from Magit" single ((:commit . "21cb2927d672cc6bf631d8373a361b1766ccf004") (:keywords "vc" "tools") (:authors ("Kyle Meyer" . "kyle@kyleam.com") ("Rémi Vanicat" . "vanicat@debian.org")) (:maintainer "Kyle Meyer" . "kyle@kyleam.com") (:url . "https://github.com/magit/magit-annex"))]) (magit . [(20181116 1412) ((emacs (25 1)) (async (20180527)) (dash (20180910)) (ghub (20181107)) (git-commit (20181104)) (magit-popup (20181003)) (with-editor (20181103))) "A Git porcelain inside Emacs." tar ((:commit . "36d89c88e1337ec2b33c75c3d426289c66f86b10"))]) (magik-mode . [(20181005 841) nil "mode for editing Magik + some utils." tar ((:commit . "d87b9a5be8fc56e48241e02bab4b4a2d347b999d") (:keywords "languages") (:url . "http://github.com/roadrunner1776/magik"))]) (magic-latex-buffer . [(20170531 5) ((cl-lib (0 5)) (emacs (24 3))) "Magically enhance LaTeX-mode font-locking for semi-WYSIWYG editing" single ((:commit . "c03277d5619d9adcd871f3e6480a1a27985810cb") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (magic-filetype . [(20180219 1552) ((emacs (24)) (s (1 9 0))) "Enhance filetype major mode" single ((:commit . "019494add5ff02dd36cb3f500142fc51125522cc") (:keywords "emulations" "vim" "ft" "file" "magic-mode") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/magic-filetype.el"))]) (mag-menu . [(20150505 1850) ((splitter (0 1 0))) "Intuitive keyboard-centric menu system" single ((:commit . "9b9277021cd09fb1dba64b1d2a00705d20914bd6") (:keywords "convenience") (:authors ("Steven Thomas")) (:maintainer "Steven Thomas") (:url . "https://github.com/chumpage/mag-menu"))]) (madhat2r-theme . [(20170203 30) ((emacs (24))) "dark color theme that is easy on the eyes" single ((:commit . "6b387f09de055cfcc15d74981cd4f32f8f9a7323") (:keywords "color" "theme") (:authors ("Micah Duke")) (:maintainer "Micah Duke") (:url . "https://github.com/madhat2r/madhat2r-theme"))]) (macrostep . [(20161120 2106) ((cl-lib (0 5))) "interactive macro expander" tar ((:commit . "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267") (:keywords "lisp" "languages" "macro" "debugging") (:authors ("joddie" . "j.j.oddie@gmail.com")) (:maintainer "joddie" . "j.j.oddie@gmail.com") (:url . "https://github.com/joddie/macrostep"))]) (macro-math . [(20130328 1604) nil "in-buffer mathematical operations" single ((:commit . "216e59371e9ee39c34117ba79b9acd78bb415750") (:keywords "convenience") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/macro-math/"))]) (maces-game . [(20170903 1551) ((dash (2 12 0)) (cl-lib (0 5)) (emacs (24))) "another anagram game." tar ((:commit . "c0fb795f5642467ea528d2f04d904547e8a77ecd") (:keywords "games" "word games" "anagram") (:authors ("Pawel Bokota" . "pawelb.lnx@gmail.com")) (:maintainer "Pawel Bokota" . "pawelb.lnx@gmail.com") (:url . "https://github.com/pawelbx/anagram-game"))]) (mac-pseudo-daemon . [(20170728 1940) ((cl-lib (0 1))) "Daemon mode that plays nice with Mac OS." single ((:commit . "d235680a72677f11925b912428ad1a57b664e3e8") (:keywords "convenience" "osx" "mac") (:authors ("Ryan C. Thompson")) (:maintainer "Ryan C. Thompson") (:url . "https://github.com/DarwinAwardWinner/osx-pseudo-daemon"))]) (m-buffer . [(20170407 2141) ((seq (2 14))) "List-Oriented, Functional Buffer Manipulation" tar ((:commit . "8681342aaffa187e5c54945ab91b812965a96d19") (:authors ("Phillip Lord" . "phillip.lord@russet.org.uk")) (:maintainer "Phillip Lord" . "phillip.lord@russet.rg.uk"))]) (lyrics . [(20180812 1841) ((emacs (25 1)) (seq (2 15))) "Show lyrics" single ((:commit . "d0b920be634a5be81ad49418cfaada0f0a57d6cd") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/lyrics.el"))]) (lxd-tramp . [(20181023 7) ((emacs (24 4)) (cl-lib (0 6))) "TRAMP integration for LXD containers" single ((:commit . "f335c76245f62b02cf67a9376eca6f3863c8a75a") (:keywords "lxd" "lxc" "convenience") (:authors ("Yc.S" . "onixie@gmail.com")) (:maintainer "Yc.S" . "onixie@gmail.com") (:url . "https://github.com/onixie/lxd-tramp.git"))]) (lxc-tramp . [(20180523 2024) ((emacs (24)) (cl-lib (0 6))) "TRAMP integration for LXC containers" single ((:commit . "1aab85fef50df2067902bff13e1bac5e6366908b") (:keywords "lxc" "convenience") (:authors ("montag451")) (:maintainer "montag451") (:url . "https://github.com/montag451/lxc-tramp"))]) (lxc . [(20140410 2022) nil "lxc integration with Emacs" single ((:commit . "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835") (:keywords "processes") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "https://github.com/nicferrier/emacs-lxc"))]) (lv . [(20181110 1740) nil "Other echo area" single ((:commit . "5c5b9ca3262594c92f8f73c98db5ed0f1efd0319") (:authors ("Oleh Krehel")) (:maintainer "Oleh Krehel"))]) (lusty-explorer . [(20180628 1346) nil "Dynamic filesystem explorer and buffer switcher" single ((:commit . "fc4b2f0f8a07db107234490fdfbf72f8b76a6643") (:keywords "convenience" "files" "matching"))]) (lush-theme . [(20180816 2200) ((emacs (24))) "A dark theme with lush colors" single ((:commit . "7cfc993709d712f75c51b505078608c9e1c11466") (:keywords "theme" "dark" "strong colors") (:authors ("Andre Richter" . "andre.o.richter@gmail.com")) (:maintainer "Andre Richter" . "andre.o.richter@gmail.com") (:url . "https://github.com/andre-richter/emacs-lush-theme"))]) (luarocks . [(20170430 2305) ((emacs (24)) (cl-lib (0 5))) "luarocks tools" single ((:commit . "cee27ba0716edf338077387969883226dd2b7484") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/luarocks.el"))]) (lua-mode . [(20180323 1021) nil "a major-mode for editing Lua scripts" tar ((:commit . "99312b8d6c500ba3067da6d81efcfbbea05a1cbd") (:keywords "languages" "processes" "tools") (:authors ("2011-2013 immerrr" . "immerrr+lua@gmail.com") ("2010-2011 Reuben Thomas" . "rrt@sc3d.org") ("2006 Juergen Hoetzel" . "juergen@hoetzel.info") ("2004 various (support for Lua 5 and byte compilation)") ("2001 Christian Vogler" . "cvogler@gradient.cis.upenn.edu") ("1997 Bret Mogilefsky" . "mogul-lua@gelatinous.com") ("tcl-mode by Gregor Schmid" . "schmid@fb3-s7.math.tu-berlin.de") ("with tons of assistance from") ("Paul Du Bois" . "pld-lua@gelatinous.com") ("Aaron Smith" . "aaron-lua@gelatinous.com")) (:maintainer "2011-2013 immerrr" . "immerrr+lua@gmail.com") (:url . "http://immerrr.github.com/lua-mode"))]) (lsp-vue . [(20181030 1136) ((emacs (25 1)) (lsp-mode (3 0))) "Vue support for lsp-mode" single ((:commit . "85567342323943b37bb4e90376d3fae740be4aeb") (:authors ("Nikita Sivakov" . "cryptomaniac.512@gmail.com")) (:maintainer "Nikita Sivakov" . "cryptomaniac.512@gmail.com") (:url . "https://github.com/emacs-lsp/lsp-vue"))]) (lsp-ui . [(20181031 2002) ((emacs (25 1)) (dash (2 14)) (dash-functional (1 2 0)) (flycheck (31)) (lsp-mode (5 0)) (markdown-mode (2 3))) "UI modules for lsp-mode" tar ((:commit . "5138e720451dfbcae2f55a8380416340d5706583") (:keywords "lsp") (:authors ("Sebastien Chapuis <sebastien@chapu.is>, Fangrui Song" . "i@maskray.me")) (:maintainer "Sebastien Chapuis <sebastien@chapu.is>, Fangrui Song" . "i@maskray.me") (:url . "https://github.com/emacs-lsp/lsp-ui"))]) (lsp-typescript . [(20180906 524) ((lsp-mode (3 0)) (typescript-mode (0 1)) (emacs (25 1))) "Javascript/Typescript support for lsp-mode" single ((:commit . "ab62826962887e82f0bc968817be4fc89a6953e4") (:keywords "languages" "tools") (:authors ("George Pittarelli" . "g@gjp.cc")) (:maintainer "George Pittarelli" . "g@gjp.cc") (:url . "https://github.com/emacs-lsp/lsp-javascript"))]) (lsp-sh . [(20180913 158) ((lsp-mode (3 0))) "Shell support for lsp-mode" single ((:commit . "d9e94837ccbb54eafa381833d2a9a0089e01096b") (:keywords "sh" "shell" "bash") (:authors ("Mike Wilkerson" . "wilkystyle@gmail.com")) (:maintainer "Mike Wilkerson" . "wilkystyle@gmail.com") (:url . "https://github.com/wilkystyle/lsp-sh"))]) (lsp-rust . [(20180305 1308) ((emacs (25)) (lsp-mode (3 0)) (rust-mode (0 3 0)) (dash (1 0)) (markdown-mode (2 3))) "Rust support for lsp-mode" single ((:commit . "ecc889cc8735b280e0e6e84d2f4526b0048148b3") (:keywords "rust") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/emacs-lsp/lsp-rust"))]) (lsp-ruby . [(20180910 1921) ((lsp-mode (3 0)) (emacs (25 1))) "Ruby support for lsp-mode" single ((:commit . "690caff89ccf48d0b45688466482e78ec734e75b") (:keywords "languages" "tools") (:authors ("George Pittarelli" . "g@gjp.cc")) (:maintainer "George Pittarelli" . "g@gjp.cc") (:url . "https://github.com/emacs-lsp/lsp-ruby"))]) (lsp-python . [(20181108 754) ((lsp-mode (3 0))) "Python support for lsp-mode" single ((:commit . "9b67b63c4c8c53c77eda8b8081b8d458e655ba55") (:keywords "python") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/emacs-lsp/lsp-python"))]) (lsp-php . [(20180331 1644) ((emacs (25 1)) (lsp-mode (3 4))) "PHP support for lsp-mode" single ((:commit . "f96e23570120eca765132504df852a78d8b4d042") (:authors ("Declspeck" . "declspeck@declblog.com") ("zg" . "13853850881@163.com")) (:maintainer "Declspeck" . "declspeck@declblog.com") (:url . "https://github.com/emacs-lsp/lsp-php"))]) (lsp-p4 . [(20180728 1915) ((lsp-mode (3 0))) "P4 support for lsp-mode" single ((:commit . "9ac56f8932d6bfb332b6c84bc79361eba6df370a") (:keywords "lsp" "p4") (:authors ("Dmitri Makarov")) (:maintainer "Dmitri Makarov") (:url . "https://github.com/dmakarov/p4ls"))]) (lsp-ocaml . [(20180610 1854) ((emacs (25 1)) (lsp-mode (3 0))) "OCaml support for lsp-mode" single ((:commit . "5a8c776b6d75b502703243b3d628fccd813481b0") (:keywords "languages" "ocaml" "reason" "lsp") (:authors ("Antonio N. Monteiro" . "anmonteiro@gmail.com")) (:maintainer "Antonio N. Monteiro" . "anmonteiro@gmail.com") (:url . "https://github.com/emacs-lsp/lsp-ocaml"))]) (lsp-mode . [(20181115 308) ((emacs (25 1))) "Minor mode for interacting with Language Servers" tar ((:commit . "9e0426cf88190a5c350a5436ab11af6f8d4d412e") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/emacs-lsp/lsp-mode"))]) (lsp-javascript-typescript . [(20180614 2011) ((lsp-mode (3 0)) (typescript-mode (0 1)) (emacs (25 1))) "Javascript/Typescript support for lsp-mode" single ((:commit . "ab62826962887e82f0bc968817be4fc89a6953e4") (:keywords "languages" "tools") (:authors ("George Pittarelli" . "g@gjp.cc")) (:maintainer "George Pittarelli" . "g@gjp.cc") (:url . "https://github.com/emacs-lsp/lsp-javascript"))]) (lsp-javascript-flow . [(20180613 508) ((lsp-mode (3 0)) (emacs (25 1))) "Javascript/Flow support for lsp-mode" single ((:commit . "ab62826962887e82f0bc968817be4fc89a6953e4") (:keywords "languages" "tools") (:authors ("Ozan Sener" . "hi@ozan.email")) (:maintainer "Ozan Sener" . "hi@ozan.email") (:url . "https://github.com/emacs-lsp/lsp-javascript"))]) (lsp-javacomp . [(20181029 2028) ((emacs (25 1)) (lsp-mode (3 0)) (s (1 2 0))) "Provide Java IDE features powered by JavaComp." single ((:commit . "2b5130951f758eb9d3000b9e391b5e7a3b63d371") (:keywords "java" "tools" "lsp") (:url . "https://github.com/tigersoldier/lsp-javacomp"))]) (lsp-java . [(20181102 1943) ((emacs (25 1)) (lsp-mode (3 0)) (markdown-mode (2 3)) (dash (2 14 1)) (f (0 20 0)) (ht (2 0)) (dash-functional (1 2 0))) "Java support for lsp-mode" tar ((:commit . "7eebaf5d45763627a5e49180d9f76a82432d62e3") (:keywords "java") (:url . "https://github.com/emacs-lsp/lsp-java"))]) (lsp-intellij . [(20180831 2051) ((emacs (25 1)) (lsp-mode (4 1))) "intellij lsp client" single ((:commit . "cf30f0ac63bd0140e758840b8ab070e8313697b2") (:keywords "languages" "processes" "tools") (:authors ("Ruin0x11" . "ipickering2@gmail.com")) (:maintainer "Ruin0x11" . "ipickering2@gmail.com") (:url . "https://github.com/Ruin0x11/lsp-intellij"))]) (lsp-html . [(20180629 725) ((lsp-mode (4 2))) "HTML support for lsp-mode" single ((:commit . "53b3c30511cab7e5f1e4ad15094b407b27cdc7f5") (:keywords "languages" "html" "lsp") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/emacs-lsp/lsp-html"))]) (lsp-haskell . [(20181023 657) ((lsp-mode (3 0)) (haskell-mode (1 0))) "Haskell support for lsp-mode" single ((:commit . "1d18fb6b3c055d665dd0bc8694fd74782091d5cf") (:keywords "haskell") (:url . "https://github.com/emacs-lsp/lsp-haskell"))]) (lsp-hack . [(20181114 1747) ((lsp-mode (4 2))) "lsp-mode client for hacklang" single ((:commit . "2a9025a331aa08ebc4ad3524fe69eaa6f624ceae") (:authors ("John Allen" . "oss@porcnick.com")) (:maintainer "John Allen" . "oss@porcnick.com") (:url . "https://github.com/jra3/lsp-hack"))]) (lsp-go . [(20180914 515) ((lsp-mode (3 0))) "Go support for lsp-mode" single ((:commit . "2327556e78682770a7a434610b08115f20ea5b1a") (:keywords "go" "golang") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/emacs-lsp/lsp-go"))]) (lsp-fortran . [(20180904 1636) ((lsp-mode (3 0))) "Fortran support for lsp-mode" single ((:commit . "dd990e5b1e8177c807dd935b6ffa76b495a54b4f") (:keywords "fortran" "fortran" "language server") (:authors ("Magnus Badel")) (:maintainer "Magnus Badel") (:url . "https://github.com/MagB93/lsp-fortran"))]) (lsp-dart . [(20181021 1708) ((emacs (25 1)) (lsp-mode (3 0))) "Dart support for lsp-mode" single ((:commit . "4979ccf88f09a8576fb739597eca22f4ece0a7e8") (:keywords "languages" "lsp" "dart") (:authors ("Gong Qijian" . "gongqijian@gmail.com")) (:maintainer "Gong Qijian" . "gongqijian@gmail.com") (:url . "https://github.com/twlz0ne/lsp-dart"))]) (lsp-css . [(20180627 1951) ((lsp-mode (3 0)) (emacs (25 1))) "CSS/LESS/SASS support for lsp-mode" single ((:commit . "1395b48209c5744e19f688ebb5fe8201e5a006df") (:keywords "languages" "tools") (:authors ("George Pittarelli" . "g@gjp.cc")) (:maintainer "George Pittarelli" . "g@gjp.cc") (:url . "https://github.com/emacs-lsp/lsp-css"))]) (lsp-clangd . [(20180828 1657) ((lsp-mode (3 0)) (emacs (24 3))) "clangd support for lsp-mode" single ((:commit . "37ca521483e3ce5b63b97672916368dbf4566a67") (:keywords "lsp" "clang" "clangd" "c" "c++" "objective-c" "objective-c++") (:authors ("Thomas Brown" . "tabsoftwareconsulting@gmail.com")) (:maintainer "Thomas Brown" . "tabsoftwareconsulting@gmail.com") (:url . "https://github.com/emacs-lsp/lsp-clangd"))]) (love-minor-mode . [(20170727 536) ((lua-mode (20130419))) "Minor mode for working on LÖVE projects" single ((:commit . "3ca8f3405338f2d6f4fbcdd5e89342a46378543a") (:authors ("Eric James Michael Ritz")) (:maintainer "Eric James Michael Ritz") (:url . "https://github.com/ejmr/love-minor-mode"))]) (lorem-ipsum . [(20140911 2108) nil "Insert dummy pseudo Latin text." single ((:commit . "4b39f6fed455d67f635b3837cf5668bf74d0f6cd") (:keywords "tools" "language" "convenience") (:authors ("Jean-Philippe Theberge" . "jphil21@sourceforge.net")) (:maintainer "Joe Schafer" . "joe@jschaf.com"))]) (loop . [(20160813 1407) nil "friendly imperative loop structures" single ((:commit . "e22807f83a0890dc8a904c51ee0742c34efccc6c") (:keywords "loop" "while" "for each" "break" "continue") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (look-mode . [(20151211 1826) nil "quick file viewer for image and text file browsing" single ((:commit . "d65f75e8ea24eff2ac31c53b4835b45127eedd56") (:authors ("Peter H. Mao <peter.mao@gmail.com>" . "peterm@srl.caltech.edu")) (:maintainer "Peter H. Mao <peter.mao@gmail.com>" . "peterm@srl.caltech.edu"))]) (look-dired . [(20160729 2323) ((look-mode (1 0))) "Extensions to look-mode for dired buffers" single ((:commit . "9bfa4e5e6f3810705b6426c88493ea0bf6b15640") (:keywords "convenience") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/look-dired"))]) (lolcode-mode . [(20111002 847) nil "Major mode for editing LOLCODE" single ((:commit . "1914f1ba87587ecf5f175eeb2144c28e9f039317") (:keywords "lolcode" "major" "mode") (:authors ("Bodil Stokke" . "lolcode@bodil.tv")) (:maintainer "Bodil Stokke" . "lolcode@bodil.tv") (:url . "http://github.com/bodil/lolcode-mode"))]) (logview . [(20181027 1757) ((emacs (24 4)) (datetime (0 6 1)) (extmap (1 0))) "Major mode for viewing log files" single ((:commit . "bd662d467dbd7c93cfe1e3058e4f11c49314fd6a") (:keywords "files" "tools") (:authors ("Paul Pogonyshev" . "pogonyshev@gmail.com")) (:maintainer "Paul Pogonyshev" . "pogonyshev@gmail.com") (:url . "https://github.com/doublep/logview"))]) (logstash-conf . [(20170524 1929) nil "basic mode for editing logstash configuration" single ((:commit . "4e127f9aec190786613445aa88efa307ff7c6748") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (logpad . [(20180607 1915) nil "Simulate Windows Notepad for logging." single ((:keywords "files" "outlines" "notepad") (:authors ("Jens K. Loewe" . "git@tuxproject.de")) (:maintainer "Jens K. Loewe" . "git@tuxproject.de") (:url . "https://bitbucket.org/tux_/logpad.el"))]) (lognav-mode . [(20180708 1022) ((emacs (24 3))) "Navigate Log Error Messages" single ((:keywords "log" "error" "lognav-mode" "convenience") (:authors ("Shawn Ellis" . "shawn.ellis17@gmail.com")) (:maintainer "Shawn Ellis" . "shawn.ellis17@gmail.com") (:url . "https://bitbucket.org/ellisvelo/lognav-mode"))]) (logito . [(20120225 2055) ((eieio (1 3))) "logging library for Emacs" single ((:commit . "824acb89d2cc18cb47281a4fbddd81ad244a2052") (:keywords "lisp" "tool") (:authors ("Yann Hodique" . "yann.hodique@gmail.com")) (:maintainer "Yann Hodique" . "yann.hodique@gmail.com"))]) (logalimacs . [(20131021 1829) ((popwin (0 6 2)) (popup (0 5 0)) (stem (20130120))) "Front-end to logaling-command for Ruby gems" single ((:commit . "8286e39502250fc6c3c6656a7f46a8eee8e9a713") (:keywords "translation" "logaling-command") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/logaling/logalimacs"))]) (log4j-mode . [(20160108 1918) nil "major mode for viewing log files" single ((:commit . "26171b1e723502055e085393b0ecdcb6db406010") (:keywords "tools") (:authors ("Johan Dykstrom" . "jody4711-sf@yahoo.se")) (:maintainer "Johan Dykstrom" . "jody4711-sf@yahoo.se") (:url . "http://log4j-mode.sourceforge.net"))]) (log4e . [(20170401 1304) nil "provide logging framework for elisp" single ((:commit . "c69424e407be0d9d0e54b427d8b18b1ac5a607e2") (:keywords "log") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/log4e"))]) (lodgeit . [(20150312 1349) nil "Paste to a lodgeit powered pastebin" single ((:commit . "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c") (:keywords "pastebin" "lodgeit") (:authors ("Eric Larson" . "eric@ionrock.org")) (:maintainer "Eric Larson" . "eric@ionrock.org") (:url . "https://github.com/ionrock/lodgeit-el"))]) (lockfile-mode . [(20170625 507) nil "Major mode for .lock files" single ((:commit . "fcfef88460cb3cd67c4d83a1801d0326d282feac") (:authors ("Preetpal S. Sohal")) (:maintainer "Preetpal S. Sohal") (:url . "https://github.com/preetpalS/emacs-lockfile-mode"))]) (loccur . [(20161227 1051) ((emacs (24 3))) "Perform an occur-like folding in current buffer" single ((:commit . "650d91dda0d313c8f445a0803c07809d857dee0f") (:keywords "matching") (:authors ("Alexey Veretennikov" . "alexey.veretennikov@gmail.com")) (:maintainer "Alexey Veretennikov" . "alexey.veretennikov@gmail.com") (:url . "https://github.com/fourier/loccur"))]) (loc-changes . [(20160801 1708) nil "keep track of positions even after buffer changes" single ((:commit . "4d1dcdf7631c23b1259ad4f72bf9686cf95fb46c") (:authors ("Rocky Bernstein" . "rocky@gnu.org")) (:maintainer "Rocky Bernstein" . "rocky@gnu.org") (:url . "http://github.com/rocky/emacs-loc-changes"))]) (load-theme-buffer-local . [(20120702 2036) nil "Install emacs24 color themes by buffer." single ((:commit . "e606dec66f16a06140b9aad625a4fd52bca4f936") (:keywords "faces") (:authors ("Victor Borja" . "vic.borja@gmail.com")) (:maintainer "Victor Borja" . "vic.borja@gmail.com") (:url . "http://github.com/vic/color-theme-buffer-local"))]) (load-relative . [(20170526 1010) nil "relative file load (within a multi-file Emacs package)" tar ((:commit . "738896e3da491b35399178ed2c6bc92cc728d119") (:keywords "internal") (:authors ("Rocky Bernstein" . "rocky@gnu.org")) (:maintainer "Rocky Bernstein" . "rocky@gnu.org") (:url . "http://github.com/rocky/emacs-load-relative"))]) (load-env-vars . [(20180511 2210) ((emacs (24))) "Load environment variables from files" single ((:commit . "3808520efaf9492033f6e11a9bffd68eabf02a0f") (:keywords "lisp") (:authors ("Jorge Dias" . "jorge@mrdias.com")) (:maintainer "Jorge Dias" . "jorge@mrdias.com") (:url . "https://github.com/diasjorge/emacs-load-env-vars"))]) (lms . [(20170804 1622) ((emacs (25 1))) "Squeezebox / Logitech Media Server frontend" single ((:keywords "multimedia") (:authors ("Iñigo Serna" . "inigoserna@gmail.com")) (:maintainer "Iñigo Serna" . "inigoserna@gmail.com") (:url . "https://bitbucket.com/inigoserna/lms.el"))]) (livid-mode . [(20131116 1344) ((skewer-mode (1 5 3)) (s (1 8 0))) "Live browser eval of JavaScript every time a buffer changes" single ((:commit . "dfe5212fa64738bc4138bfebf349fbc8bc237c26") (:authors ("Murphy McMahon")) (:maintainer "Murphy McMahon") (:url . "https://github.com/pandeiro/livid-mode"))]) (livescript-mode . [(20140613 421) nil "Major mode for editing LiveScript files" single ((:commit . "90a918d9686e256e6d4d439cc20f24dad8d3b804") (:keywords "languages" "livescript") (:authors ("Hisamatsu Yasuyuki" . "yas@null.net")) (:maintainer "Hisamatsu Yasuyuki" . "yas@null.net") (:url . "https://github.com/yhisamatsu/livescript-mode"))]) (livereload . [(20170629 650) ((emacs (25)) (websocket (1 8))) "Livereload server" tar ((:commit . "1e501d7e46dbd476c2c7cc9d20b5ac9d41fb1955") (:keywords "convenience") (:authors ("João Távora" . "joaotavora@gmail.com")) (:maintainer "João Távora" . "joaotavora@gmail.com"))]) (lively . [(20171005 754) nil "interactively updating text" single ((:commit . "348675828c6a81bfa1ac311ca465aad813542c1b") (:authors ("Luke Gorrie" . "luke@bup.co.nz")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (live-py-mode . [(20181116 536) ((emacs (24 3))) "Live Coding in Python" tar ((:commit . "e823a86707a5821ad761fd27a9c9e90ac47d2319") (:keywords "live" "coding") (:authors ("Don Kirkby http://donkirkby.github.io")) (:maintainer "Don Kirkby http://donkirkby.github.io") (:url . "http://donkirkby.github.io/live-py-plugin/"))]) (live-code-talks . [(20180907 1647) ((emacs (24)) (cl-lib (0 5)) (narrowed-page-navigation (0 1))) "Support for slides with live code in them" single ((:commit . "97f16a9ee4e6ff3e0f9291eaead772c66e3e12ae") (:keywords "docs" "multimedia") (:authors ("David Raymond Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Raymond Christiansen" . "david@davidchristiansen.dk"))]) (literate-starter-kit . [(20150730 1854) ((emacs (24 3))) "A literate starter kit to configure Emacs using Org-mode files." tar ((:commit . "6dce1d01781966c14558aa553cfc85008c06e115"))]) (literate-coffee-mode . [(20170211 1515) ((coffee-mode (0 5 0))) "major-mode for Literate CoffeeScript" single ((:commit . "55ce0305495f4a38c8063c4bd63deb1e1252373d") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-literate-coffee-mode"))]) (literal-string . [(20170301 1530) ((markdown-mode (2 0)) (emacs (25))) "edit string literals in a dedicated buffer" single ((:commit . "2ca4fc08b8e19e6183b1f1db747bb0a4aa4f98eb") (:keywords "lisp" "tools" "docs") (:authors ("Joost Diepenmaat" . "joost@zeekat.nl")) (:maintainer "Joost Diepenmaat" . "joost@zeekat.nl") (:url . "https://github.com/joodie/literal-string-mode/"))]) (litecoin-ticker . [(20160612 11) ((json (1 2))) "litecoin price in modeline" single ((:commit . "3d8047c736e4ee0b8638953f8cc63eaefad34106") (:authors ("Zhe Lei")) (:maintainer "Zhe Lei"))]) (litable . [(20160922 1559) ((dash (2 6 0))) "dynamic evaluation replacement with emacs" single ((:commit . "90a2dca14a6da9b24fe332a65cff899ab4a90810") (:keywords "lisp") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com"))]) (lit-mode . [(20141123 1736) nil "Major mode for lit" single ((:commit . "c61c403afc8333a5649c5421ab1a6341dc1c7d92") (:keywords "languages" "tools") (:authors ("Hector A Escobedo" . "ninjahector.escobedo@gmail.com")) (:maintainer "Hector A Escobedo" . "ninjahector.escobedo@gmail.com"))]) (list-utils . [(20160414 1402) nil "List-manipulation utility functions" single ((:commit . "acf18aca1131a90f8d673974673e3c5d8fdc6a86") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/list-utils"))]) (list-unicode-display . [(20150219 901) ((cl-lib (0 5))) "Search for and list unicode characters by name" single ((:commit . "222c21c68ccc930b2843ea919c960de9be3b55c2") (:keywords "convenience") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (list-packages-ext . [(20151115 1716) ((s (1 6 0)) (ht (1 5 0)) (persistent-soft (0 8 6))) "Extras for list-packages" single ((:commit . "b4dd644e4369c9aa66f5bb8895ea49ebbfd0a27a") (:keywords "convenience" "tools") (:authors ("Alessandro Piras" . "laynor@gmail.com")) (:maintainer "Alessandro Piras" . "laynor@gmail.com"))]) (list-environment . [(20151227 256) nil "A tabulated process environment editor" single ((:commit . "b7ca30b05905047be2e55199a6475f8d98ce318b") (:keywords "processes" "unix") (:authors ("Charles L.G. Comstock" . "dgtized@gmail.com")) (:maintainer "Charles L.G. Comstock" . "dgtized@gmail.com"))]) (lispyville . [(20181111 1142) ((lispy (0)) (evil (1 2 12)) (cl-lib (0 5)) (emacs (24 4))) "A minor mode for integrating evil with lispy." single ((:commit . "4d87b4532d549bed5fdac38ee137ad23451d0abf") (:keywords "vim" "evil" "lispy" "lisp" "parentheses") (:authors ("Fox Kiester" . "noct@openmailbox.org")) (:maintainer "Fox Kiester" . "noct@openmailbox.org") (:url . "https://github.com/noctuid/lispyville"))]) (lispyscript-mode . [(20170720 1917) nil "Major mode for LispyScript code." single ((:commit . "def632e3335b0c481fbcf5a17f18b0a8c58dd12f") (:keywords "lisp" "languages") (:authors ("Kris Jenkins" . "krisajenkins@gmail.com")) (:maintainer "Kris Jenkins" . "krisajenkins@gmail.com") (:url . "https://github.com/krisajenkins/lispyscript-mode"))]) (lispy . [(20181114 2049) ((emacs (24 1)) (ace-window (0 9 0)) (iedit (0 9 9)) (swiper (0 7 0)) (hydra (0 13 4)) (zoutline (0 1 0))) "vi-like Paredit" tar ((:commit . "4a9247144b77c904b45c21e94c4dbca91ef56c95"))]) (lispxmp . [(20170926 23) nil "Automagic emacs lisp code annotation" single ((:commit . "7ad077b4ee91ce8a42f84eeddb9fc7ea4eac7814") (:keywords "lisp" "convenience") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/lispxmp.el"))]) (lisp-extra-font-lock . [(20181008 1921) nil "Highlight bound variables and quoted exprs." single ((:commit . "4605eccbe1a7fcbd3cacf5b71249435413b4db4f") (:keywords "languages" "faces") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/lisp-extra-font-lock"))]) (liso-theme . [(20160410 2029) nil "Eclectic Dark Theme for GNU Emacs" single ((:commit . "844688245eb860d23043455e165ee24503454c81") (:keywords "theme" "themes") (:authors ("Vlad Piersec" . "vlad.piersec@gmail.com")) (:maintainer "Vlad Piersec" . "vlad.piersec@gmail.com") (:url . "https://github.com/caisah/liso-theme"))]) (liquid-types . [(20151202 735) ((flycheck (0 13)) (dash (1 2)) (emacs (24 1)) (popup (0 5 2)) (pos-tip (0 5 0)) (flycheck-liquidhs (0 0 1)) (button-lock (1 0 2))) "show inferred liquid-types" single ((:commit . "cc4bacbbf204ef9cf0756f78dfebee2c6ae14d7b") (:authors ("Ranjit Jhala" . "jhala@cs.ucsd.edu")) (:maintainer "Ranjit Jhala" . "jhala@cs.ucsd.edu"))]) (linum-relative . [(20180124 1047) nil "display relative line number in emacs." single ((:commit . "c74a6981b688a5e1e6b8e0809363963ff558ce4d") (:keywords "converience") (:authors ("coldnew" . "coldnew.tw@gmail.com")) (:maintainer "coldnew" . "coldnew.tw@gmail.com") (:url . "http://github.com/coldnew/linum-relative"))]) (linum-off . [(20160217 2137) nil "Provides an interface for turning line-numbering off" single ((:commit . "116e66ac259b183e0763b85616888316ab196822") (:keywords "line" "numbering") (:authors ("Matthew L. Fidler, Florian Adamsky (see wiki)")) (:maintainer "Matthew L. Fidler") (:url . "http://www.emacswiki.org/emacs/auto-indent-mode.el "))]) (linphone . [(20130524 1109) nil "Emacs interface to Linphone" tar ((:commit . "99af3db941b7f4e5272bb48bff96c1ce4ceac302") (:keywords "comm") (:authors ("Yoni Rabkin" . "yonirabkin@member.fsf.org")) (:maintainer "Yoni Rabkin" . "yonirabkin@member.fsf.org") (:url . "https://github.com/zabbal/emacs-linphone"))]) (link-hint . [(20180519 2130) ((avy (0 4 0)) (emacs (24 1)) (cl-lib (0 5))) "Use avy to open, copy, etc. visible links." single ((:commit . "23df5fa36ab182452be6b772475eab67b846dd92") (:keywords "convenience" "url" "avy" "link" "links" "hyperlink") (:authors ("Fox Kiester" . "noct@openmailbox.org")) (:maintainer "Fox Kiester" . "noct@openmailbox.org") (:url . "https://github.com/noctuid/link-hint.el"))]) (link . [(20140718 329) nil "Hypertext links in text buffers" single ((:commit . "a23b8f4a422d0de69a006ed010eff5795319db98") (:keywords "interface" "hypermedia") (:authors ("Torsten Hilbrich" . "torsten.hilbrich@gmx.net")) (:maintainer "Torsten Hilbrich" . "torsten.hilbrich@gmx.net"))]) (linguistic . [(20181019 1542) nil "A package for basic linguistic analysis." tar ((:commit . "04ceb873ba41cd7cb4dc09e537a6dbb80cd12d65") (:keywords "linguistics" "text analysis" "matching") (:authors ("Andrew Favia <drewlinguistics01 at gmail dot com>")) (:maintainer "Andrew Favia <drewlinguistics01 at gmail dot com>") (:url . "https://github.com/andcarnivorous/linguistic"))]) (lingr . [(20100807 1731) nil "Lingr Client for GNU Emacs" single ((:commit . "4215a8704492d3c860097cbe2649936c22c196df") (:keywords "chat" "client" "internet") (:authors ("lugecy" . "lugecy@gmail.com")) (:maintainer "lugecy" . "lugecy@gmail.com") (:url . "http://github.com/lugecy/lingr-el"))]) (lines-at-once . [(20180422 247) ((emacs (25))) "Insert and edit multiple lines at once" single ((:commit . "a018ba90549384d52ec58c2685fd14a0f65252be") (:keywords "abbrev" "tools") (:authors ("Jiahao Li" . "jiahaowork@gmail.com")) (:maintainer "Jiahao Li" . "jiahaowork@gmail.com") (:url . "https://github.com/jiahaowork/lines-at-once.el"))]) (line-up-words . [(20180219 1024) nil "Align words in an intelligent way" single ((:commit . "b6713d19dbc507a30e39f892f698a511f1cf3d1f") (:url . "https://github.com/janestreet/line-up-words"))]) (line-reminder . [(20180603 552) ((emacs (24 4)) (cl-lib (0 6))) "Remind current line status by current buffer." single ((:commit . "07543e7a2c09dee204e312e0318e7b230fb14ec7") (:authors ("Shen, Jen-Chieh" . "jcs090218@gmail.com")) (:maintainer "Shen, Jen-Chieh" . "jcs090218@gmail.com") (:url . "https://github.com/jcs090218/line-reminder"))]) (light-soap-theme . [(20150607 1445) ((emacs (24))) "Emacs 24 theme with a light background." single ((:commit . "76a787bd40c6b567ae68ced7f5d9f9f10725e00d"))]) (lice . [(20170220 943) nil "License And Header Template" tar ((:commit . "4339929927c62bd636f89bb39ea999d18d269250") (:keywords "template" "license" "tools") (:authors ("Taiki Sugawara" . "buzz.taiki@gmail.com")) (:maintainer "Taiki Sugawara" . "buzz.taiki@gmail.com") (:url . "https://github.com/buzztaiki/lice-el"))]) (libmpdel . [(20181016 653) ((emacs (25 1))) "Communication with an MPD server" single ((:commit . "76711d7c32fe617647098f01d4fee9b3c1eaab46") (:keywords "multimedia") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://gitlab.petton.fr/mpdel/libmpdel"))]) (libmpdee . [(20160117 2301) nil "Client end library for mpd, a music playing daemon" single ((:commit . "a6ca3b7d6687f3ba60996b9b5044ad1d3b228290") (:keywords "music" "mpd") (:authors ("Ramkumar R. Aiyengar" . "andyetitmoves@gmail.com")) (:maintainer "Ramkumar R. Aiyengar" . "andyetitmoves@gmail.com"))]) (libgit . [(20181120 1359) ((emacs (25 1))) "Thin bindings to libgit2." tar ((:commit . "a952314d674b55b5119b5378cd82749a3a18e27f") (:keywords "git" "vc") (:authors ("Eivind Fonn" . "evfonn@gmail.com")) (:maintainer "Eivind Fonn" . "evfonn@gmail.com") (:url . "https://github.com/TheBB/libegit2"))]) (libelcouch . [(20180604 753) ((emacs (25 1)) (request (0 3 0))) "Communication with CouchDB" single ((:commit . "1faa877fd83c31f612eacb1d12645b2b4cfb57ed") (:keywords "tools") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://gitlab.petton.fr/elcouch/libelcouch/"))]) (lfe-mode . [(20170121 1254) nil "Lisp Flavoured Erlang mode" tar ((:commit . "ea62f924b7abbe2a0ff65e27be47acb7f452bc38"))]) (lexbind-mode . [(20141027 1429) nil "Puts the value of lexical-binding in the mode line" single ((:commit . "fa0a6848c1cfd3fbf45db43dc2deef16377d887d") (:keywords "convenience" "lisp") (:authors ("Andrew Kirkpatrick" . "ubermonk@gmail.com")) (:maintainer "Andrew Kirkpatrick" . "ubermonk@gmail.com") (:url . "https://github.com/spacebat/lexbind-mode"))]) (levenshtein . [(20090830 1040) nil "Edit distance between two strings." single ((:commit . "070925197ebf6b704e6e00c4f2d2ec783f3df38c") (:keywords "lisp") (:authors ("Aaron S. Hawley <ashawley at uvm dot edu>,") ("Art Taylor")) (:maintainer "Aaron S. Hawley <ashawley at uvm dot edu>,"))]) (leuven-theme . [(20181120 1033) nil "Awesome Emacs color theme on white background" tar ((:commit . "77dcc0bd277541ce90438e9ea9fc3f3fe5d90e22") (:keywords "color" "theme") (:authors ("Fabrice Niessen <(concat \"fniessen\" at-sign \"pirilampo.org\")>")) (:maintainer "Fabrice Niessen <(concat \"fniessen\" at-sign \"pirilampo.org\")>") (:url . "https://github.com/fniessen/emacs-leuven-theme"))]) (letterbox-mode . [(20170702 125) ((emacs (24 3))) "hide sensitive text on a buffer" single ((:commit . "88c67a51d67216d569a28e8423200883fde096dd") (:keywords "password" "convenience") (:authors ("Fernando Leboran" . "f.leboran@gmail.com")) (:maintainer "Fernando Leboran" . "f.leboran@gmail.com") (:url . "http://github.com/pacha64/letterbox-mode"))]) (letcheck . [(20160202 1948) nil "Check the erroneous assignments in let forms" single ((:commit . "edf188ca2f85349e971b83f164c6484264e79426") (:keywords "convenience") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/letcheck"))]) (less-css-mode . [(20161001 453) nil "Major mode for editing LESS CSS files (lesscss.org)" single ((:commit . "c7fa3d56d83206b28657f2e56439dc62280a2bf2") (:keywords "less" "css" "mode") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/less-css-mode"))]) (lentic-server . [(20160717 2052) ((lentic (0 8)) (web-server (0 1 1))) "Web Server for Emacs Literate Source" single ((:commit . "8e809fafbb27a98f815b544d9d9ee15843eb6a36") (:authors ("Phillip Lord" . "phillip.lord@newcastle.ac.uk")) (:maintainer "Phillip Lord" . "phillip.lord@newcastle.ac.uk"))]) (lentic . [(20161202 2152) ((emacs (24 4)) (m-buffer (0 13)) (dash (2 5 0)) (f (0 17 2)) (s (1 9 0))) "One buffer as a view of another" tar ((:commit . "678db9327209a1e6200c9272f4080595dc68f8a5") (:authors ("Phillip Lord" . "phillip.lord@russet.org.uk")) (:maintainer "Phillip Lord" . "phillip.lord@russet.org.uk"))]) (lenlen-theme . [(20170329 245) ((color-theme-solarized (20150110))) "a solarized-based kawaii light theme" single ((:commit . "b8a6412c81633b10fb98ba0930f55b25071c084a") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (lemon-mode . [(20130216 1304) nil "A major mode for editing lemon grammar files" single ((:commit . "155bfced6c9afc8072a0133d3d1baa54c6d67430") (:keywords "lemon") (:authors ("mooz" . "stillpedant@gmail.com")) (:maintainer "mooz" . "stillpedant@gmail.com"))]) (legalese . [(20150820 1724) nil "Add legalese to your program files" single ((:commit . "ec23e69d18329456beed9546a1d6c72f96db91cf") (:keywords "convenience") (:authors ("Jorgen Schaefer" . "forcer@forcix.cx")) (:maintainer "Jorgen Schaefer" . "forcer@forcix.cx") (:url . "https://github.com/jorgenschaefer/legalese"))]) (leerzeichen . [(20170422 1313) nil "Minor mode to display whitespace characters." single ((:commit . "5acf9855ecb2b2cd5da4402bb48df149e7525cc5") (:keywords "whitespace" "characters") (:authors ("Felix Geller" . "fgeller@gmail.com")) (:maintainer "Felix Geller" . "fgeller@gmail.com") (:url . "http://github.com/fgeller/leerzeichen.el"))]) (ledger-mode . [(20181107 1942) ((emacs (24 3))) "Helper code for use with the \"ledger\" command-line tool" tar ((:commit . "1f5c68fb59d81d2fffe49436ee99a8c291a4fe41"))]) (leanote . [(20161223 139) ((emacs (24 4)) (cl-lib (0 5)) (request (0 2)) (let-alist (1 0 3)) (pcache (0 4 0)) (s (1 10 0)) (async (1 9))) "A minor mode writing markdown leanote" single ((:commit . "d499e7b59bb1f1a2fabc0e4c26fb101ed62ebc7b") (:keywords "leanote" "note" "markdown") (:authors ("Aborn Jiang" . "aborn.jiang@gmail.com")) (:maintainer "Aborn Jiang" . "aborn.jiang@gmail.com") (:url . "https://github.com/aborn/leanote-emacs"))]) (lean-mode . [(20180906 1645) ((emacs (24 3)) (dash (2 12 0)) (dash-functional (1 2 0)) (s (1 10 0)) (f (0 19 0)) (flycheck (30))) "A major mode for the Lean language" tar ((:commit . "9d6b8471e2044310b4cd7cd3213b1fc8f78ec499") (:keywords "languages") (:authors ("Leonardo de Moura" . "leonardo@microsoft.com") ("Soonho Kong      " . "soonhok@cs.cmu.edu") ("Gabriel Ebner    " . "gebner@gebner.org") ("Sebastian Ullrich" . "sebasti@nullri.ch")) (:maintainer "Sebastian Ullrich" . "sebasti@nullri.ch") (:url . "https://github.com/leanprover/lean-mode"))]) (lcr . [(20180902 1919) ((dash (2 12 0)) (emacs (25 1))) "lightweight coroutines" single ((:commit . "c14f40692292d59156c7632dbdd2867c086aa75f") (:keywords "tools") (:authors ("Jean-Philippe Bernardy" . "jeanphilippe.bernardy@gmail.com")) (:maintainer "Jean-Philippe Bernardy" . "jeanphilippe.bernardy@gmail.com") (:url . "https://github.com/jyp/lcr"))]) (lcb-mode . [(20160816 540) ((emacs (24))) "LiveCode Builder major mode" single ((:commit . "be0768e9aa6f9b8e76f2230f4f7f4d152a766b9a") (:keywords "languages") (:authors ("Peter TB Brett" . "peter@peter-b.co.uk")) (:maintainer "Peter TB Brett" . "peter@peter-b.co.uk") (:url . "https://github.com/peter-b/lcb-mode"))]) (lavender-theme . [(20170808 1313) ((emacs (24 0))) "an Emacs 24 theme based on Lavender (tmTheme)" single ((:commit . "ef5e959b95d7fb8152137bc186c4c24e986c1e3c") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (launchctl . [(20150518 1309) ((emacs (24 1))) "Interface to launchctl on Mac OS X." single ((:commit . "73f8f52a5aa9a0be9bdcf68c29ad0fa2b4a115a4") (:keywords "tools" "convenience") (:authors ("Peking Duck <github.com/pekingduck>")) (:maintainer "Peking Duck <github.com/pekingduck>") (:url . "http://github.com/pekingduck/launchctl-el"))]) (launch-mode . [(20170106 512) ((emacs (24 4))) "Major mode for launch-formatted text" tar ((:commit . "25ebd4ba77afcbe729901eb74923dbe9ae81c313") (:authors ("iory" . "ab.ioryz@gmail.com")) (:maintainer "iory" . "ab.ioryz@gmail.com") (:url . "https://github.com/iory/launch-mode"))]) (launch . [(20130619 2204) nil "launch files with OS-standard associated applications." single ((:commit . "e7c3b573fc05fe4d3d322389079909311542e799") (:keywords "convenience" "processes") (:authors ("Simon Law" . "sfllaw@sfllaw.ca")) (:maintainer "Simon Law" . "sfllaw@sfllaw.ca") (:url . "https://github.com/sfllaw/emacs-launch"))]) (latexdiff . [(20180521 2232) ((emacs (24 4))) "Latexdiff integration in Emacs" single ((:commit . "024ee7a4fd235695dacd9f53594fef3d79bee88b") (:keywords "tex" "vc" "tools" "git" "helm") (:authors ("Launay Gaby" . "gaby.launay@tutanota.com")) (:maintainer "Launay Gaby" . "gaby.launay@tutanota.com") (:url . "http://github.com/galaunay/latexdiff.el"))]) (latex-unicode-math-mode . [(20170123 1816) nil "Input method for Unicode math symbols" tar ((:commit . "eb4a5c9f9b00a58d2ca80f90782a851f4c8497b8") (:authors ("Christoph Dittmann" . "github@christoph-d.de")) (:maintainer "Christoph Dittmann" . "github@christoph-d.de") (:url . "https://github.com/Christoph-D/latex-unicode-math-mode"))]) (latex-preview-pane . [(20181008 1822) nil "Makes LaTeX editing less painful by providing a updatable preview pane" tar ((:commit . "5297668a89996b50b2b62f99cba01cc544dbed2e"))]) (latex-pretty-symbols . [(20151112 1044) nil "Display many latex symbols as their unicode counterparts" single ((:keywords "convenience" "display") (:authors ("Erik Parmann" . "eparmann@gmail.com") ("Pål Drange")) (:maintainer "Erik Parmann" . "eparmann@gmail.com") (:url . "https://bitbucket.org/mortiferus/latex-pretty-symbols.el"))]) (latex-math-preview . [(20170522 2155) nil "preview LaTeX mathematical expressions." single ((:commit . "775887a89447dd19541b121161cc02e9799d0d3a") (:keywords "latex" "tex") (:authors ("Takayuki YAMAGUCHI" . "d@ytak.info")) (:maintainer "Takayuki YAMAGUCHI" . "d@ytak.info") (:url . "https://gitlab.com/latex-math-preview/latex-math-preview"))]) (latex-extra . [(20170817 147) ((auctex (11 86 1)) (cl-lib (0 5))) "Adds several useful functionalities to LaTeX-mode." single ((:commit . "82d99b8b0c2db20e5270749582e03bcc2443ffb5") (:keywords "tex") (:authors ("Artur Malabarba" . "artur@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "artur@endlessparentheses.com") (:url . "http://github.com/Malabarba/latex-extra"))]) (lastpass . [(20171208 1016) ((emacs (24 4)) (seq (1 9)) (cl-lib (0 5))) "LastPass command wrapper" single ((:commit . "a4529ce70b8187ed9ac4972997df152af58ef2eb") (:keywords "extensions" "processes" "lpass" "lastpass") (:authors ("Petter Storvik")) (:maintainer "Petter Storvik") (:url . "https://github.com/storvik/emacs-lastpass"))]) (language-detection . [(20161123 1813) ((emacs (24)) (cl-lib (0 5))) "Automatic language detection from code snippets" single ((:commit . "54a6ecf55304fba7d215ef38a4ec96daff2f35a4") (:authors ("Andreas Jansson" . "andreas@jansson.me.uk")) (:maintainer "Andreas Jansson" . "andreas@jansson.me.uk") (:url . "https://github.com/andreasjansson/language-detection.el"))]) (langtool . [(20180409 1016) ((cl-lib (0 3))) "Grammar check utility using LanguageTool" single ((:commit . "d93286722cff3fecf8641a4a6c3b0691f30362fe") (:keywords "docs") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-langtool"))]) (langdoc . [(20150218 645) ((cl-lib (0 2))) "Help to define help document mode for various languages" single ((:commit . "2c7223bacb116992d700ecb19a60df5c09c63424") (:keywords "convenience" "eldoc") (:authors ("Tomoya Tanjo" . "ttanjo@gmail.com")) (:maintainer "Tomoya Tanjo" . "ttanjo@gmail.com") (:url . "https://github.com/tom-tan/langdoc/"))]) (lang-refactor-perl . [(20131122 2127) nil "Simple refactorings, primarily for Perl" single ((:commit . "691bd69639de6b7af357e3b7143563ececd9c497") (:keywords "languages" "refactoring" "perl") (:authors (nil . "Johan Lindstrom <buzzwordninja not_this_bit@googlemail.com>")) (:maintainer nil . "Johan Lindstrom <buzzwordninja not_this_bit@googlemail.com>") (:url . "https://github.com/jplindstrom/emacs-lang-refactor-perl"))]) (lammps-mode . [(20180801 1319) ((emacs (24 4))) "basic syntax highlighting for LAMMPS files" single ((:commit . "a5b68d7a59975770b56ee8f6e66fa4f703a72ffe") (:keywords "languages" "faces") (:authors ("Aidan Thompson <athomps at sandia.gov>")) (:maintainer "Rohit Goswami <r95g10 at gmail.com>") (:url . "https://github.com/lammps/lammps/tree/master/tools/emacs"))]) (labburn-theme . [(20170502 907) nil "A lab color space zenburn theme." single ((:commit . "e95334acd8a73fbe8e156f70e047014a87e92e66") (:keywords "theme" "zenburn") (:authors ("Johannes Goslar")) (:maintainer "Johannes Goslar") (:url . "https://github.com/ksjogo/labburn-theme"))]) (lab-themes . [(20181015 1820) ((emacs (24))) "A custom theme carefully constructed in the LAB space" tar ((:commit . "dd1676e901c458cfcd7b9f331535150ae38a36f2") (:keywords "lisp") (:authors ("MetroWind" . "chris.corsair@gmail.com")) (:maintainer "MetroWind" . "chris.corsair@gmail.com") (:url . "https://github.com/MetroWind/lab-theme"))]) (kwin . [(20150308 1812) nil "communicatewith the KWin window manager" single ((:commit . "d4f8f3593598b71ee596e0a87b2c1d6a912a9566") (:authors ("Simon Hafner")) (:maintainer "Simon Hafner") (:url . "http://github.com/reactormonk/kwin-minor-mode"))]) (kv . [(20140108 1534) nil "key/value data structure functions" single ((:commit . "721148475bce38a70e0b678ba8aa923652e8900e") (:keywords "lisp") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk"))]) (kurecolor . [(20180401 1221) ((emacs (24 1)) (s (1 0))) "color editing goodies for Emacs" single ((:commit . "a27153f6a01f38226920772dc4917b73166da5e6") (:authors ("Jason Milkins" . "jasonm23@gmail.com")) (:maintainer "Jason Milkins" . "jasonm23@gmail.com"))]) (kubernetes-tramp . [(20171026 1622) ((emacs (24)) (cl-lib (0 5))) "TRAMP integration for kubernetes containers" single ((:commit . "9fa84df71f6e88bc23a756cdf2df393a35aec945") (:keywords "kubernetes" "convenience") (:authors ("Giovanni Ruggiero" . "giovanni.ruggiero+github@gmail.com")) (:maintainer "Giovanni Ruggiero" . "giovanni.ruggiero+github@gmail.com") (:url . "https://github.com/gruggiero/kubernetes-tramp"))]) (kubernetes-evil . [(20171123 219) ((kubernetes (0 12 0)) (evil (1 2 12))) "Kubernetes keybindings for evil-mode." single ((:commit . "2b5ce22b12bd8a569cb0a8019a395173e3a13523") (:authors ("Chris Barrett" . "chris+emacs@walrus.cool")) (:maintainer "Chris Barrett" . "chris+emacs@walrus.cool"))]) (kubernetes . [(20180706 1220) ((emacs (25 1)) (dash (2 12 0)) (magit (2 8 0))) "Magit-like porcelain for Kubernetes." tar ((:commit . "2b5ce22b12bd8a569cb0a8019a395173e3a13523") (:authors ("Chris Barrett" . "chris+emacs@walrus.cool")) (:maintainer "Chris Barrett" . "chris+emacs@walrus.cool"))]) (ksp-cfg-mode . [(20180609 547) ((cl-lib (0 5))) "major mode for editing KSP CFG files" single ((:commit . "fda64705f605fb8fccee53a5040fe4865ca17d44") (:keywords "data") (:authors ("Emily Backes" . "lucca@accela.net")) (:maintainer "Emily Backes" . "lucca@accela.net") (:url . "http://github.com/lashtear/ksp-cfg-mode"))]) (kroman . [(20150827 2340) nil "Korean hangul romanization" single ((:commit . "90402b6ae40383e75d8ba97d66eee93eebf40f70") (:keywords "korean" "roman") (:authors ("Zhang Kai Yu" . "yeannylam@gmail.com")) (:maintainer "Zhang Kai Yu" . "yeannylam@gmail.com"))]) (kpm-list . [(20170924 1352) nil "An emacs buffer list that tries to intelligently group together buffers." single ((:commit . "e0f5112e5ce8ec1b603f4428fa51681c68bb28f5") (:authors ("Kevin Mahoney")) (:maintainer "Kevin Mahoney") (:url . "https://github.com/KMahoney/kpm-list/"))]) (kotlin-mode . [(20181109 1818) ((emacs (24 3))) "Major mode for kotlin" single ((:commit . "666187a086c042e70b65b13ea83b34a493440d95") (:keywords "languages") (:authors ("Shodai Yokoyama" . "quantumcars@gmail.com")) (:maintainer "Shodai Yokoyama" . "quantumcars@gmail.com"))]) (kosmos-theme . [(20170502 1850) ((emacs (24))) "Black and lightgray theme with not so much syntax highlighting." single ((:commit . "616456d2376a75dc31190ad65137d179fbad4336") (:authors ("Maxim Kim" . "habamax@gmail.com")) (:maintainer "Maxim Kim" . "habamax@gmail.com") (:url . "https://github.com/habamax/kosmos-theme"))]) (korean-holidays . [(20170301 445) nil "Korean holidays for calendar." single ((:commit . "6e94c2e071069aee9ed12ebbfd9b0ad863b8c78e") (:keywords "calendar") (:authors ("SeungKi Kim" . "tttuuu888@gmail.com")) (:maintainer "SeungKi Kim" . "tttuuu888@gmail.com") (:url . "https://github.com/tttuuu888/korean-holidays"))]) (kooten-theme . [(20161023 905) ((emacs (24 1))) "Dark color theme" single ((:commit . "d10197b4dd7af02cd14aeab2573c273a294798c3") (:keywords "themes") (:authors ("Pascal van Kooten" . "kootenpv@gmail.com")) (:maintainer "Pascal van Kooten" . "kootenpv@gmail.com") (:url . "http://github.com/kootenpv/emacs-kooten-theme"))]) (kolon-mode . [(20140122 1134) nil "Syntax highlighting for Text::Xslate's Kolon syntax" single ((:commit . "5af0955e280ae991862189ebecd3937c5fc8fb9f") (:keywords "xslate" "perl") (:authors ("Sam Tran")) (:maintainer "Sam Tran") (:url . "https://github.com/samvtran/kolon-mode"))]) (kodi-remote . [(20181120 2027) ((request (0 2 0)) (let-alist (1 0 4)) (json (1 4)) (elnode (20140203 1506))) "Remote Control for Kodi" single ((:commit . "a8ba7f3744d18002b192b787ba3463861d6b9453") (:keywords "kodi" "tools" "convinience") (:authors ("Stefan Huchler" . "stefan.huchler@mail.de")) (:maintainer "Stefan Huchler" . "stefan.huchler@mail.de") (:url . "http://github.com/spiderbit/kodi-remote.el"))]) (know-your-http-well . [(20160208 2304) nil "Look up the meaning of HTTP headers, methods, relations, status codes" tar ((:commit . "3cc5ab6d2764ab7aacb1b6e026abaccbeb6c37f2"))]) (klere-theme . [(20180415 1823) ((emacs (24))) "A dark theme with lambent color highlights and incremental grays" single ((:commit . "c064f9e5c44173c239fce239a62c8d5e61827672") (:authors ("Wamm K. D." . "jaft.r@outlook.com")) (:maintainer "Wamm K. D." . "jaft.r@outlook.com") (:url . "https://github.com/WammKD/emacs-klere-theme"))]) (kixtart-mode . [(20150611 1604) ((emacs (24))) "major mode for Kixtart scripting files" single ((:commit . "1c2356797e7b766bbaaa2b341176a8b10499cd79") (:keywords "languages") (:authors ("Ryrun <https://github.com/ryrun>")) (:maintainer "Ryrun <https://github.com/ryrun>") (:url . "https://github.com/ryrun/kixtart-mode"))]) (kiwix . [(20170927 820) ((emacs (24 4)) (cl-lib (0 5))) "Kiwix interface and support." single ((:commit . "86dbead6c0017beefd92a0b64a0bb5f5d12c5b16") (:keywords "kiwix" "wikipedia") (:authors ("stardiviner" . "numbchild@gmail.com")) (:maintainer "stardiviner" . "numbchild@gmail.com") (:url . "https://github.com/stardiviner/kiwix.el"))]) (kivy-mode . [(20180702 2029) nil "Emacs major mode for editing Kivy files" single ((:commit . "372b81964f55d2ca74641944ab8c908172306e59") (:authors ("Dean Serenevy" . "dean@serenevy.net")) (:maintainer "Dean Serenevy" . "dean@serenevy.net"))]) (kite-mini . [(20160508 1106) ((dash (2 11 0)) (websocket (1 5))) "Remotely evaluate JavaScript in the WebKit debugger" tar ((:commit . "a68619dbc109c7989f3448426d8c1ee9e797c11f") (:keywords "webkit") (:authors ("Tung Dao" . "me@tungdao.com")) (:maintainer "Tung Dao" . "me@tungdao.com") (:url . "https://github.com/tungd/kite-mini.el"))]) (kite . [(20130201 1938) ((json (1 2)) (websocket (0 93 1))) "WebKit inspector front-end" tar ((:commit . "7ed74d1147a6ddd152d3da65dc30df3517d53144") (:keywords "tools") (:authors ("Julian Scheid" . "julians37@gmail.com")) (:maintainer "Julian Scheid" . "julians37@gmail.com"))]) (killer . [(20120808 1122) nil "kill and delete text" single ((:commit . "7bbb223f875402a7b2abee4baa5a54f10bd97212") (:keywords "convenience") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "http://github.com/tarsius/killer"))]) (kill-ring-search . [(20140422 1555) nil "incremental search for the kill ring" single ((:commit . "23535b4a01a1cb1574604e36c49614e84e85c883") (:keywords "convenience" "matching") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/kill-ring-search/"))]) (kill-or-bury-alive . [(20180101 618) ((emacs (24 4)) (cl-lib (0 5))) "Precise control over buffer killing in Emacs" single ((:commit . "0ba8f44efe60058ef66b10a059fd30489b42546f") (:keywords "buffer" "killing" "convenience") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/kill-or-bury-alive"))]) (kibit-helper . [(20150508 1533) ((s (0 8)) (emacs (24))) "Conveniently use the Kibit Leiningen plugin from Emacs" single ((:commit . "16bdfff785ee05d8e74a5780f6808506d990cef7") (:keywords "languages" "clojure" "kibit") (:authors ("Jonas Enlund") ("James Elliott" . "james@brunchboy.com")) (:maintainer "Jonas Enlund") (:url . "http://www.github.com/brunchboy/kibit-helper"))]) (keyword-search . [(20180424 1102) nil "browser keyword search from Emacs" tar ((:commit . "f8475ecaddb8804a9be6bee47678207c86ac8dee") (:keywords "web" "search" "keyword") (:maintainer "Jens Petersen") (:url . "https://github.com/juhp/keyword-search"))]) (keyswap . [(20160813 957) ((emacs (24 3))) "swap bindings between key pairs" single ((:commit . "cd682a7c4a8d64d6bae6a005db5045232e5e7b95") (:keywords "convenience") (:authors ("Matthew Malcomson" . "hardenedapple@gmail.com")) (:maintainer "Matthew Malcomson" . "hardenedapple@gmail.com") (:url . "http://github.com/hardenedapple/keyswap.el"))]) (keyset . [(20150220 530) ((dash (2 8 0)) (cl-lib (0 5))) "A small library for structuring key bindings." single ((:commit . "41bbfc4dbed5de6ecf3ec1dba634c7c26241ca84") (:authors ("Hiroki YAMAKAWA" . "s06139@gmail.com")) (:maintainer "Hiroki YAMAKAWA" . "s06139@gmail.com") (:url . "https://github.com/HKey/keyset"))]) (keypress-multi-event . [(20180817 853) ((emacs (24 3))) "Perform different actions for the same keypress." single ((:commit . "ec94209e52e17427e513b0b24ac2de1ac90b3762") (:keywords "abbrev" "convenience" "wp" "keyboard") (:authors ("Boruch Baum" . "boruch_baum@gmx.com")) (:maintainer "Boruch Baum" . "boruch_baum@gmx.com") (:url . "https://www.github.com/Boruch_Baum/emacs-keypress-multi-event"))]) (keymap-utils . [(20180318 2237) ((cl-lib (0 3))) "keymap utilities" single ((:commit . "1ad766dbc111ec78b1a292da97b9bd4856cd2ff7") (:keywords "convenience" "extensions") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/keymap-utils"))]) (keyfreq . [(20160516 1416) ((cl-lib (0 5))) "track command frequencies" single ((:commit . "9c665c8c219d18866403897936427bb408e3d6b9") (:authors ("Ryan Yeske, Michal Nazarewicz (mina86/AT/mina86.com)")) (:maintainer "David Capello, Xah lee"))]) (keydef . [(20090428 1931) nil "a simpler way to define keys, with kbd syntax" single ((:commit . "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0") (:keywords "convenience" "lisp" "customization" "keyboard" "keys") (:authors ("Michael John Downes" . "mjd@ams.org")) (:maintainer "Michael John Downes" . "mjd@ams.org"))]) (keychain-environment . [(20180318 2223) nil "load keychain environment variables" single ((:commit . "d3643196de6dc79ea77f9f4805028350fd76100b") (:keywords "gnupg" "pgp" "ssh") (:authors ("Paul Tipper <bluefoo at googlemail dot com>")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/keychain-environment"))]) (keycast . [(20180318 2021) ((emacs (25 3))) "Show current command and its key in the mode line" single ((:commit . "46370b8a72922902921d3ed2fa194564568053dc") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/keycast"))]) (key-seq . [(20150907 756) ((key-chord (0 6))) "map pairs of sequentially pressed keys to commands" single ((:commit . "e29b083a6427d061638749194fc249ef69ad2cc0") (:keywords "convenience" "keyboard" "keybindings") (:authors ("Vyacheslav Levit" . "dev@vlevit.org")) (:maintainer "Vyacheslav Levit" . "dev@vlevit.org") (:url . "http://github.com/vlevit/key-seq.el"))]) (key-leap . [(20160831 1447) ((emacs (24 3))) "Leap between lines by typing keywords" single ((:commit . "b3f6ef15c8a13870475d5af159fa24b30f97dea0") (:keywords "point" "convenience") (:authors ("Martin Rykfors" . "martinrykfors@gmail.com")) (:maintainer "Martin Rykfors" . "martinrykfors@gmail.com") (:url . "https://github.com/MartinRykfors/key-leap"))]) (key-intercept . [(20140211 749) nil "Intercept prefix keys" single ((:commit . "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2") (:keywords "keyboard") (:authors ("INA Lintaro <tarao.gnn at gmail.com>")) (:maintainer "INA Lintaro <tarao.gnn at gmail.com>") (:url . "http://github.com/tarao/key-intercept-el"))]) (key-combo . [(20150324 1439) nil "map key sequence to commands" single ((:commit . "2fb5c65bc82d5bd2964e2b163822429ab45d90a1") (:keywords "keyboard" "input") (:authors ("Yuuki Arisawa" . "yuuki.ari@gmail.com")) (:maintainer "Vitalie Spinu" . "spinuvit@gmail.com") (:url . "https://github.com/uk-ar/key-combo"))]) (key-chord . [(20160227 1238) nil "map pairs of simultaneously pressed keys to commands" single ((:commit . "72443e9ff3c4f1c3ccaced3130236801efde3d83") (:keywords "keyboard" "chord" "input") (:authors ("David Andersson <l.david.andersson(at)sverige.nu>")) (:maintainer "David Andersson <l.david.andersson(at)sverige.nu>"))]) (kerl . [(20150424 2005) nil "Emacs integration for kerl" single ((:commit . "1732ee26213f021bf040919c45ad276aafcaae14") (:keywords "tools") (:authors ("Correl Roush" . "correl@gmail.com")) (:maintainer "Correl Roush" . "correl@gmail.com") (:url . "http://github.com/correl/kerl.el/"))]) (kdeconnect . [(20180126 2340) nil "An interface for KDE Connect" single ((:commit . "ca0cbf9a628ba7b519b43fa85e0d988ca26bf853") (:keywords "kdeconnect" "android") (:authors ("Carl Lieberman" . "dev@carl.ac")) (:maintainer "Carl Lieberman" . "dev@carl.ac"))]) (karma . [(20160220 1245) ((pkg-info (0 4)) (emacs (24))) "Karma Test Runner Emacs Integration" single ((:commit . "31d3e7708246183d7ed0686be92bf23140af348c") (:keywords "language" "javascript" "js" "karma" "testing") (:authors ("Samuel Tonini")) (:maintainer "Samuel Tonini") (:url . "http://github.com/tonini/karma.el"))]) (kapacitor . [(20180910 442) ((emacs (25 1)) (magit (2 13 0)) (magit-popup (2 12 4))) "Main file for kapacitor-mode" single ((:commit . "b0e95f98b965f215be6ead14779949d5cf358ea5") (:keywords "kapacitor" "emacs" "magit" "tools") (:authors ("Manoj Kumar Manikchand" . "manojm.321@gmail.com")) (:maintainer "Manoj Kumar Manikchand" . "manojm.321@gmail.com") (:url . "http://github.com/Manoj321/kapacitor-el"))]) (kaomoji . [(20171227 440) ((emacs (24 3)) (helm-core (1 9 1))) "Input kaomoji superb easily" tar ((:commit . "90a1490743b2a30762f5454c9d9309018eff83dd") (:keywords "tools" "fun") (:authors ("Ono Hiroko" . "azazabc123@gmail.com")) (:maintainer "Ono Hiroko" . "azazabc123@gmail.com") (:url . "https://github.com/kuanyui/kaomoji.el"))]) (kaolin-themes . [(20181117 836) ((emacs (25 1)) (autothemer (0 2 2)) (cl-lib (0 6))) "A set of eye pleasing themes" tar ((:commit . "7ddbe315c85082a6ed9ded576ed8b9e9ed8fe1f2") (:keywords "dark" "light" "teal" "blue" "violet" "purple" "brown" "theme" "faces") (:authors ("Ogden Webb" . "ogdenwebb@gmail.com")) (:maintainer "Ogden Webb" . "ogdenwebb@gmail.com") (:url . "https://github.com/ogdenwebb/emacs-kaolin-themes"))]) (kanji-mode . [(20160826 1139) nil "View stroke order for kanji characters at cursor" tar ((:commit . "eda4f8666486689d36317db7dbda54fb73d3e3d2") (:authors ("Wojciech Gac" . "wojciech.s.gac@gmail.com")) (:maintainer "Wojciech Gac" . "wojciech.s.gac@gmail.com") (:url . "http://github.com/wsgac/kanji-mode "))]) (kanban . [(20170418 810) nil "Parse org-todo headlines to use org-tables as Kanban tables" single ((:keywords "outlines" "convenience") (:authors ("Arne Babenhauserheide" . "arne_bab@web.de")) (:maintainer "Arne Babenhauserheide" . "arne_bab@web.de"))]) (kaleidoscope-evil-state-flash . [(20170728 1020) ((evil (1 2 12)) (kaleidoscope (0 1 0)) (s (1 11 0))) "Flash keyboard LEDs when changing Evil state" single ((:commit . "52b5be3277f65cb5ca657973e9bd7f914b996356") (:authors ("Gergely Nagy")) (:maintainer "Gergely Nagy") (:url . "https://github.com/algernon/kaleidoscope.el"))]) (kaleidoscope . [(20170808 817) ((s (1 11 0))) "Controlling Kaleidoscope-powered devices." single ((:commit . "52b5be3277f65cb5ca657973e9bd7f914b996356") (:authors ("Gergely Nagy")) (:maintainer "Gergely Nagy") (:url . "https://github.com/algernon/kaleidoscope.el"))]) (kakapo-mode . [(20171004 451) ((cl-lib (0 5))) "TABS (hard or soft) for indentation (leading whitespace), and SPACES for alignment." single ((:commit . "292e07203c676361a1d918deb5acf2123cd70eaf") (:keywords "indentation") (:url . "https://github.com/listx/kakapo-mode"))]) (kaesar-mode . [(20160128 1008) ((kaesar (0 1 4)) (cl-lib (0 3))) "Encrypt/Decrypt buffer by AES with password." single ((:commit . "d087075cb1a46c2c85cd075220e09b2eaef9b86e") (:keywords "data" "convenience") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-kaesar"))]) (kaesar-file . [(20160128 1008) ((kaesar (0 1 1))) "Encrypt/Decrypt file by AES with password." single ((:commit . "d087075cb1a46c2c85cd075220e09b2eaef9b86e") (:keywords "data" "files") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-kaesar"))]) (kaesar . [(20160128 1008) ((cl-lib (0 3))) "Another AES algorithm encrypt/decrypt string with password." single ((:commit . "d087075cb1a46c2c85cd075220e09b2eaef9b86e") (:keywords "data") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-kaesar"))]) (jvm-mode . [(20150422 708) ((dash (2 6 0)) (emacs (24))) "Monitor and manage your JVMs" single ((:commit . "3355dbaf5b0185aadfbad24160399abb32c5bea0") (:keywords "convenience") (:authors ("Martin Trojer" . "martin.trojer@gmail.com")) (:maintainer "Martin Trojer" . "martin.trojer@gmail.com") (:url . "https://github.com/martintrojer/jvm-mode.el"))]) (jumplist . [(20151120 345) ((cl-lib (0 5))) "Jump like vim jumplist or ex jumplist" single ((:commit . "c482d137d95bc5e1bcd790cdbde25b7f729b2502") (:keywords "jumplist" "vim") (:authors ("ganmacs <ganmacs_at_gmail.com>")) (:maintainer "ganmacs <ganmacs_at_gmail.com>") (:url . "https://github.com/ganmacs/jumplist"))]) (jump-tree . [(20171014 1551) nil "Treat position history as a tree" tar ((:commit . "282267dc6305889e31d46b405b7ad4dfe5923b66") (:keywords "convenience" "position" "jump" "tree") (:authors ("Wen Yang" . "yangwen0228@foxmail.com")) (:maintainer "Wen Yang" . "yangwen0228@foxmail.com") (:url . "https://github.com/yangwen0228/jump-tree"))]) (jump-to-line . [(20130122 1653) nil "Jump to line number at point." single ((:commit . "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8") (:keywords "jump" "line" "back" "file" "ruby" "csharp" "python" "perl") (:authors ("ongaeshi")) (:maintainer "ongaeshi"))]) (jump-char . [(20180601 1348) nil "navigation by char" single ((:commit . "1e31a3c687f2b3c71bbfab881c6d75915534bb9e") (:authors ("Le Wang")) (:maintainer "Le Wang") (:url . "https://github.com/lewang/jump-char"))]) (jump . [(20161127 128) ((findr (0 7)) (inflections (2 4)) (cl-lib (0 5))) "build functions which contextually jump between files" single ((:commit . "e4f1372cf22e811faca52fc86bdd5d817498a4d8") (:keywords "project" "convenience" "navigation") (:authors ("Eric Schulte")) (:maintainer "Eric Schulte") (:url . "http://github.com/eschulte/jump.el"))]) (jumblr . [(20170727 2043) ((s (1 8 0)) (dash (2 2 0))) "an anagram game for emacs" tar ((:commit . "34533dfb9db8538c005f4eaffafeff7ed193729f") (:keywords "anagram" "word game" "games") (:url . "https://github.com/mkmcc/jumblr"))]) (julia-shell . [(20161125 1910) ((julia-mode (0 3))) "Major mode for an inferior Julia shell" tar ((:commit . "583a0b2ca20461ab4356929fd0f2212c22341b69") (:authors ("Dennis Ogbe" . "dogbe@purdue.edu")) (:maintainer "Dennis Ogbe" . "dogbe@purdue.edu"))]) (julia-repl . [(20180923 1124) ((emacs (25))) "A minor mode for a Julia REPL" single ((:commit . "d8b94c6dbfa47fd51540b9d5b1bb0c2dfce3ebc2") (:keywords "languages") (:authors ("Tamas Papp" . "tkpapp@gmail.com")) (:maintainer "Tamas Papp" . "tkpapp@gmail.com") (:url . "https://github.com/tpapp/julia-repl"))]) (julia-mode . [(20180816 2117) nil "Major mode for editing Julia source code" single ((:commit . "ec01995f60486480cf2240bbd3b9a2ff3fa9e0f0") (:keywords "languages") (:url . "https://github.com/JuliaLang/julia"))]) (jtags . [(20160211 2029) nil "enhanced tags functionality for Java development" tar ((:commit . "b50daa48510f71e74ce0ec2eb85030896a79cf96") (:keywords "languages" "tools") (:authors ("Alexander Baltatzis" . "alexander@baltatzis.com") ("Johan Dykstrom" . "jody4711-sf@yahoo.se")) (:maintainer "Johan Dykstrom" . "jody4711-sf@yahoo.se") (:url . "http://jtags.sourceforge.net"))]) (jsx-mode . [(20130908 1724) nil "major mode for JSX" single ((:commit . "47213429c09259126cddb5742482cfc444c70d50") (:authors ("Takeshi Arabiki (abicky)")) (:maintainer "Takeshi Arabiki (abicky)") (:url . "https://github.com/jsx/jsx-mode.el"))]) (jst . [(20150604 1138) ((s (1 9)) (f (0 17)) (dash (2 10)) (pcache (0 3)) (emacs (24 4))) "JS test mode" single ((:commit . "2a3fd16c992f7790dc67134ef06a814c3d20579c") (:keywords "js" "javascript" "jasmine" "coffee" "coffeescript") (:authors ("Cheung Hoi Yu" . "yeannylam@gmail.com")) (:maintainer "Cheung Hoi Yu" . "yeannylam@gmail.com") (:url . "https://github.com/cheunghy/jst-mode"))]) (jss . [(20130508 1423) ((emacs (24 1)) (websocket (0)) (js2-mode (0))) "An emacs interface to webkit and mozilla debuggers" tar ((:commit . "41749257aecf13c7bd6ed489b5ab3304d06e40bc") (:keywords "languages") (:authors ("Marco Baringer" . "mb@bese.it")) (:maintainer "Marco Baringer" . "mb@bese.it"))]) (jsonnet-mode . [(20180822 1619) ((emacs (24))) "Major mode for editing jsonnet files" single ((:commit . "0d68681d501fd57ebde5ed4fe100033a5d3aafa8") (:keywords "languages") (:authors ("Nick Lanham")) (:maintainer "Nick Lanham") (:url . "https://github.com/mgyucht/jsonnet-mode"))]) (json-snatcher . [(20150512 347) ((emacs (24))) "Grabs the path to JSON values in a JSON file" single ((:commit . "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c") (:authors ("Sterling Graham" . "sterlingrgraham@gmail.com")) (:maintainer "Sterling Graham" . "sterlingrgraham@gmail.com") (:url . "http://github.com/sterlingg/json-snatcher"))]) (json-rpc . [(20180104 1528) ((emacs (24 1)) (cl-lib (0 5))) "JSON-RPC library" single ((:commit . "0992ae71964055230aa5d4d934a1b93b5dfd7eb4") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/elisp-json-rpc"))]) (json-reformat . [(20160212 853) nil "Reformatting tool for JSON" single ((:commit . "8eb6668ed447988aea06467ba8f42e1f2178246f") (:keywords "json") (:authors ("Wataru MIYAGUNI" . "gonngo@gmail.com")) (:maintainer "Wataru MIYAGUNI" . "gonngo@gmail.com") (:url . "https://github.com/gongo/json-reformat"))]) (json-navigator . [(20171220 819) ((emacs (24 3)) (hierarchy (0 6 0))) "View and navigate JSON structures" single ((:commit . "7a1fec93500c46ccba4086d10115d8188607d0d0") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://github.com/DamienCassou/json-navigator"))]) (json-mode . [(20180718 809) ((json-reformat (0 0 5)) (json-snatcher (1 0 0))) "Major mode for editing JSON files." single ((:commit . "ffc92b1eefc54963703b43be140f4c8c8ad348f7") (:authors ("Josh Johnston")) (:maintainer "Josh Johnston") (:url . "https://github.com/joshwnj/json-mode"))]) (jsfmt . [(20180920 1008) nil "Interface to jsfmt command for javascript files" single ((:commit . "ca141a135c7700eaedef92561d334e1fb7dc28a1") (:authors ("Brett Langdon" . "brett@blangdon.com")) (:maintainer "Brett Langdon" . "brett@blangdon.com") (:url . "https://github.com/brettlangdon/jsfmt.el"))]) (jscs . [(20151015 1749) ((emacs (24 1)) (cl-lib (0 5))) "Consistent JavaScript editing using JSCS" single ((:commit . "9d39d0f2355e69a020bf76242504f3a33e013ccf") (:keywords "languages" "convenience") (:authors ("papaeye" . "papaeye@gmail.com")) (:maintainer "papaeye" . "papaeye@gmail.com") (:url . "https://github.com/papaeye/emacs-jscs"))]) (js3-mode . [(20160515 1550) nil "An improved JavaScript editing mode" tar ((:commit . "229aeb374f1b1f3ee5c59b8ba3eebb6385c232cb") (:keywords "javascript" "languages") (:authors ("Thom Blake" . "webmaster@thomblake.com")) (:maintainer "Thom Blake" . "webmaster@thomblake.com"))]) (js2-refactor . [(20180502 1042) ((js2-mode (20101228)) (s (1 9 0)) (multiple-cursors (1 0 0)) (dash (1 0 0)) (s (1 0 0)) (yasnippet (0 9 0 1))) "A JavaScript refactoring library for emacs." tar ((:commit . "79124b3274c43ad1f9ec6205fa362576552db02f"))]) (js2-mode . [(20180724 801) ((emacs (24 1)) (cl-lib (0 5))) "Improved JavaScript editing mode" tar ((:commit . "5165f4dc3805add174e48f0d64c5617d10ac3507") (:keywords "languages" "javascript") (:authors ("Steve Yegge" . "steve.yegge@gmail.com") ("mooz" . "stillpedant@gmail.com") ("Dmitry Gutov" . "dgutov@yandex.ru")) (:maintainer "Steve Yegge" . "steve.yegge@gmail.com") (:url . "https://github.com/mooz/js2-mode/"))]) (js2-highlight-vars . [(20170418 1829) ((emacs (24 4)) (js2-mode (20150908))) "highlight occurrences of the variable under cursor" single ((:commit . "e3bb177e50f76b272e8073a94d4f46be6512a163") (:authors ("Mihai Bazon" . "mihai.bazon@gmail.com")) (:maintainer "Mihai Bazon" . "mihai.bazon@gmail.com") (:url . "http://mihai.bazon.net/projects/editing-javascript-with-emacs-js2-mode/js2-highlight-vars-mode"))]) (js2-closure . [(20170816 1918) ((js2-mode (20150909))) "Google Closure dependency manager" single ((:commit . "f59db386d7d0693935d0bf52babcd2c203c06d04") (:keywords "javascript" "closure") (:authors ("Justine Tunney" . "jart@google.com")) (:maintainer "Justine Tunney" . "jart@google.com") (:url . "http://github.com/jart/js2-closure"))]) (js-import . [(20180817 1056) ((emacs (24 4)) (f (0 19 0)) (projectile (0 14 0)) (dash (2 13 0))) "Import Javascript files from your current project or dependencies" single ((:commit . "c98e74a0b43d6ccb8764cf572cdde95ca27f5633") (:keywords "tools") (:authors ("Jakob Lind" . "karl.jakob.lind@gmail.com")) (:maintainer "Jakob Lind" . "karl.jakob.lind@gmail.com") (:url . "https://github.com/jakoblind/js-import"))]) (js-format . [(20170119 102) ((emacs (24 1)) (js2-mode (20101228))) "Format or transform code style using NodeJS server with different javascript formatter" tar ((:commit . "544bda9be72b74ec2d442543ba60cff727d96669") (:keywords "js" "javascript" "format" "standard" "jsbeautify" "esformatter" "airbnb") (:authors ("James Yang" . "jamesyang999@gmail.com")) (:maintainer "James Yang" . "jamesyang999@gmail.com") (:url . "http://github.com/futurist/js-format.el"))]) (js-doc . [(20160715 434) nil "Insert JsDoc style comment easily" single ((:commit . "f0606e89d5aa89146f96edb38cf69af0068a9d1e") (:keywords "document" "comment") (:authors ("mooz" . "stillpedant@gmail.com")) (:maintainer "mooz" . "stillpedant@gmail.com") (:url . "https://github.com/mooz/js-doc"))]) (js-comint . [(20181106 2238) ((emacs (24 3))) "JavaScript interpreter in window." single ((:commit . "01be9d821269c513665d00416f6dac5c77808801") (:keywords "javascript" "node" "inferior-mode" "convenience") (:authors ("Paul Huff" . "paul.huff@gmail.com")) (:maintainer "Chen Bin <chenbin.sh AT gmail DOT com>") (:url . "https://github.com/redguardtoo/js-comint"))]) (js-codemod . [(20171104 1154) ((emacs (24 4))) "Run js-codemod on current line or selected region" tar ((:commit . "014e56c846487d1eeaf8a91dd503b9d96eb1510a") (:keywords "js" "codemod" "region") (:authors (nil . "Torgeir Thoresen <@torgeir>")) (:maintainer nil . "Torgeir Thoresen <@torgeir>"))]) (js-auto-format-mode . [(20180807 1352) ((emacs (24))) "Minor mode for auto-formatting JavaScript code" single ((:commit . "29d245b4d126a5fc5153a4d8f17396be4165b4a6") (:keywords "languages") (:authors ("Masafumi Koba" . "ybiquitous@gmail.com")) (:maintainer "Masafumi Koba" . "ybiquitous@gmail.com") (:url . "https://github.com/ybiquitous/js-auto-format-mode"))]) (js-auto-beautify . [(20161031 509) ((web-beautify (0 3 1)) (web-mode (14 0 27))) "auto format you js/jsx file" single ((:commit . "180d15af7b5dfaab4ee1954cca2fdc797932f9de") (:authors (nil . "quanwei9958@126.com")) (:maintainer nil . "quanwei9958@126.com"))]) (jquery-doc . [(20150812 758) nil "jQuery api documentation interface for emacs" tar ((:commit . "24032284919b942ec27707d929bdd8bf48420062") (:keywords "docs" "jquery") (:authors ("Anantha kumaran" . "ananthakumaran@gmail.com")) (:maintainer "Anantha kumaran" . "ananthakumaran@gmail.com"))]) (jq-mode . [(20181103 1258) ((emacs (25 1))) "Edit jq scripts." tar ((:commit . "d6bbd83baf0746f22564f7ae92db44e06da6e08c") (:authors ("Bjarte Johansen <Bjarte dot Johansen at gmail dot com>")) (:maintainer "Bjarte Johansen <Bjarte dot Johansen at gmail dot com>") (:url . "https://github.com/ljos/jq-mode"))]) (jpop . [(20170410 1250) ((emacs (24)) (dash (2 11 0)) (cl-lib (0 5))) "Lightweight project caching and navigation framework" tar ((:commit . "7628b03260be96576b34459d45959ee77d8b2110") (:keywords "project" "convenience") (:authors ("Dom Charlesworth" . "dgc336@gmail.com")) (:maintainer "Dom Charlesworth" . "dgc336@gmail.com") (:url . "https://github.com/domtronn/jpop.el"))]) (jonprl-mode . [(20160819 59) ((emacs (24 3)) (cl-lib (0 5)) (yasnippet (0 8 0))) "A major mode for editing JonPRL files" tar ((:commit . "6059bb64891fae45827174e044d6a87ac07172d8") (:keywords "languages") (:authors ("David Raymond Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Raymond Christiansen" . "david@davidchristiansen.dk"))]) (jknav . [(20121006 2025) nil "Automatically enable j/k keys for line-based navigation" single ((:commit . "861245715c728503dad6573278fdd75c271dbf8b") (:keywords "keyboard" "navigation") (:authors ("Aaron Culich" . "aculich@gmail.com")) (:maintainer "Aaron Culich" . "aculich@gmail.com"))]) (jist . [(20161229 1721) ((emacs (24 4)) (dash (2 12 0)) (seq (1 11)) (let-alist (1 0 4)) (magit (2 1 0)) (request (0 2 0))) "Gist integration" single ((:commit . "da0692452e312a99bb27d8708504b521798aca48") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/jist.el"))]) (jira-markup-mode . [(20150601 2109) nil "Emacs Major mode for JIRA-markup-formatted text files" single ((:commit . "4fc534c47df26a2f402bf835ebe2ed89474a4062") (:keywords "jira" "markup") (:authors ("Matthias Nuessler" . "m.nuessler@web.de>")) (:maintainer "Matthias Nuessler" . "m.nuessler@web.de>") (:url . "https://github.com/mnuessler/jira-markup-mode"))]) (jinja2-mode . [(20141128 1007) nil "A major mode for jinja2" single ((:commit . "cfaa7bbe7bb290cc500440124ce89686f3e26f86") (:authors ("Florian Mounier aka paradoxxxzero")) (:maintainer "Florian Mounier aka paradoxxxzero"))]) (jg-quicknav . [(20170809 130) ((s (1 9 0)) (cl-lib (0 5))) "Quickly navigate the file system to find a file." single ((:commit . "c8d53e774d63e68a944092c08a026b57da741038") (:keywords "navigation") (:authors ("Jeff Gran" . "jeff@jeffgran.com")) (:maintainer "Jeff Gran" . "jeff@jeffgran.com") (:url . "https://github.com/jeffgran/jg-quicknav"))]) (jetbrains . [(20180301 502) ((emacs (24 3)) (cl-lib (0 5)) (f (0 17))) "JetBrains IDE bridge" single ((:commit . "56f71a17d455581c10d48f6dbb31d9e2126227bf") (:keywords "tools" "php") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/jetbrains.el"))]) (jenkins-watch . [(20121004 2326) nil "Watch continuous integration build status" single ((:commit . "37b84dfbd98240a57ff798e1ff8bc7dba2913577") (:authors ("Andrew Taylor" . "ataylor@redtoad.ca")) (:maintainer "Andrew Taylor" . "ataylor@redtoad.ca") (:url . "https://github.com/ataylor284/jenkins-watch"))]) (jenkins . [(20170721 936) ((dash (2 12)) (emacs (24 3)) (json (1 4))) "Minimalistic Jenkins client for Emacs" single ((:commit . "1ec967973db685c9d84133ec6a5e06489ce06b62") (:keywords "jenkins" "convenience") (:authors ("Rustem Muslimov" . "r.muslimov@gmail.com")) (:maintainer "Rustem Muslimov" . "r.muslimov@gmail.com"))]) (jemdoc-mode . [(20170704 2027) ((emacs (24 3))) "Major mode for editing jemdoc files" single ((:commit . "529b4d4681e1198b9892f340fdd6c3f1592a047a") (:keywords "convenience" "usability") (:authors ("Dimitar Dimitrov" . "mail.mitko@gmail.com")) (:maintainer "Dimitar Dimitrov" . "mail.mitko@gmail.com") (:url . "https://github.com/drdv/jemdoc-mode"))]) (jekyll-modes . [(20141117 1314) ((polymode (0 2))) "Major modes (markdown and HTML) for authoring Jekyll content" single ((:commit . "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c") (:keywords "docs") (:authors ("Fredrik Appelberg" . "fredrik@milgrim.local")) (:maintainer "Fredrik Appelberg" . "fredrik@milgrim.local") (:url . "https://github.com/fred-o/jekyll-modes"))]) (jedi-direx . [(20140310 936) ((jedi (0 1 2)) (direx (0 1 -3))) "Tree style source code viewer for Python buffer" single ((:commit . "7a2e677400717ed12b959cb5988e7b3fb1c12117") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>"))]) (jedi-core . [(20181117 954) ((emacs (24)) (epc (0 1 0)) (python-environment (0 0 2)) (cl-lib (0 5))) "Common code of jedi.el and company-jedi.el" tar ((:commit . "f0ec869f352e8c37a53c73b579ac94bad064c0d9") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>"))]) (jedi . [(20160426 456) ((emacs (24)) (jedi-core (0 2 2)) (auto-complete (1 4))) "a Python auto-completion for Emacs" single ((:commit . "f0ec869f352e8c37a53c73b579ac94bad064c0d9") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>"))]) (jdee . [(20180831 1500) ((emacs (24 3)) (flycheck (30)) (memoize (1 0 1)) (dash (2 13 0)) (s (1 12 0))) "Java Development Environment for Emacs" tar ((:commit . "8451b811b11d8cb428bafab31752e93180a3c724") (:keywords "java" "tools") (:authors ("Paul Kinnucan" . "pkinnucan@attbi.com")) (:maintainer "Paul Landes") (:url . "http://github.com/jdee-emacs/jdee"))]) (jdecomp . [(20170224 2200) ((emacs (24 5))) "Interface to Java decompilers" single ((:commit . "692866abc83deedce62be8d6040cf24dda7fb7a8") (:keywords "decompile" "java" "languages" "tools") (:authors ("Tianxiang Xiong" . "tianxiang.xiong@gmail.com")) (:maintainer "Tianxiang Xiong" . "tianxiang.xiong@gmail.com") (:url . "https://github.com/xiongtx/jdecomp"))]) (jbeans-theme . [(20180309 1625) ((emacs (24))) "Jbeans theme for GNU Emacs 24 (deftheme)" single ((:commit . "3caa95998d8492a2ca6c17971de499ca15609871") (:authors ("Adam Olsen" . "arolsen@gmail.com")) (:maintainer "Adam Olsen" . "arolsen@gmail.com") (:url . "https://github.com/synic/jbeans-emacs"))]) (jazz-theme . [(20170411 1411) nil "A warm color theme for Emacs 24+." single ((:commit . "b1cb78a97cc4050f19d88a89e455c3e52d98240e") (:authors ("Roman Parykin" . "donderom@ymail.com")) (:maintainer "Roman Parykin" . "donderom@ymail.com") (:url . "https://github.com/donderom/jazz-theme"))]) (jaword . [(20170426 627) ((tinysegmenter (0 1))) "Minor-mode for handling Japanese words better" single ((:commit . "ac062b0e5ab4bd3270497e80aa0f3ac033a0493f") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (javap-mode . [(20120223 2208) nil "Javap major mode" single ((:commit . "864c1130e204b2072e1d19cd027b6fce8ebe6629") (:url . "http://github.com/hiredman/javap-mode"))]) (javadoc-lookup . [(20160214 31) ((cl-lib (0 3))) "Javadoc Emacs integration with Maven" tar ((:commit . "507a2dd443d60b537b8f779c1847e2cd0ccd1382") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/javadoc-lookup"))]) (java-snippets . [(20160627 252) ((yasnippet (0 8 0))) "Yasnippets for Java" tar ((:commit . "6d0e2768823be27dbe07448f4cb244cd657a7136") (:authors ("Takayoshi Kimura")) (:maintainer "Takayoshi Kimura") (:url . "https://github.com/nekop/yasnippet-java-mode"))]) (java-imports . [(20170913 1410) ((emacs (24 4)) (s (1 10 0)) (pcache (0 3 2))) "Code for dealing with Java imports" single ((:commit . "e96ff44ed48b362ab6227b8b802b84d84f78bcaa") (:keywords "java") (:authors ("Lee Hinman" . "lee@writequit.org")) (:maintainer "Lee Hinman" . "lee@writequit.org") (:url . "http://www.github.com/dakrone/emacs-java-imports"))]) (jastadd-ast-mode . [(20161219 926) ((emacs (24))) "Major mode for editing JastAdd AST files" single ((:commit . "a29fdb470cbf0a398164950a3b0d2217de48e0c0") (:keywords "languages") (:authors ("Rudi Schlatte" . "rudi@constantly.at")) (:maintainer "Rudi Schlatte" . "rudi@constantly.at") (:url . "https://github.com/rudi/jastadd-ast-mode"))]) (jasminejs-mode . [(20150527 5) nil "A minor mode for manipulating jasmine test files" tar ((:commit . "9f8044bf81ab5b4841a30b0bd099916e1b7ff54a") (:keywords "javascript" "jasmine") (:authors ("Eric Stolten" . "stoltene2@gmail.com")) (:maintainer "Eric Stolten" . "stoltene2@gmail.com") (:url . "https://github.com/stoltene2/jasminejs-mode"))]) (jar-manifest-mode . [(20160501 26) nil "Major mode to edit JAR manifest files" single ((:commit . "270dae14c481300f75ed96dad3a5ae42ca928a1d") (:keywords "convenience" "languages") (:authors ("Omair Majid" . "omair.majid@gmail.com")) (:maintainer "Omair Majid" . "omair.majid@gmail.com") (:url . "http://github.com/omajid/jar-manifest-mode"))]) (jape-mode . [(20140903 1506) nil "An Emacs editing mode mode for GATE's JAPE files" single ((:commit . "85b9182850707b5d107391f6caee5bd401507a7d") (:keywords "languages" "jape" "gate") (:url . "http://github.com/tanzoniteblack/jape-mode"))]) (japanlaw . [(20160129 820) ((cl-lib (0 5))) "Japan law from law.e-gov.go.jp" single ((:commit . "c160e195cda0e02a709a2d39c62bc2a1ed39a09a") (:keywords "docs" "help") (:authors ("Kazushi NODA (http://www.ne.jp/asahi/alpha/kazu/)")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com"))]) (japanese-holidays . [(20160928 618) ((cl-lib (0 3))) "calendar functions for the Japanese calendar" single ((:commit . "0bccfac342d6ebda1c1a35c3babca0c800ff0c9b") (:keywords "calendar") (:authors ("Takashi Hattori" . "hattori@sfc.keio.ac.jp") ("Hiroya Murata" . "lapis-lazuli@pop06.odn.ne.jp")) (:maintainer "Takashi Hattori" . "hattori@sfc.keio.ac.jp") (:url . "https://github.com/emacs-jp/japanese-holidays"))]) (jammer . [(20160310 859) nil "Punish yourself for using Emacs inefficiently" single ((:commit . "48aa795df6df7ae6484518bcd0398293ca49d7c6") (:keywords "games") (:authors ("Vasilij Schneidermann" . "v.schneidermann@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com") (:url . "https://github.com/wasamasa/jammer"))]) (jade-mode . [(20160525 1441) nil "Major mode for editing .jade files" single ((:commit . "4dbde92542fc7ad61df38776980905a4721d642e") (:authors ("Brian M. Carlson and other contributors")) (:maintainer "Brian M. Carlson and other contributors") (:url . "https://github.com/brianc/jade-mode"))]) (jack-connect . [(20141207 1207) nil "Manage jack connections within Emacs" single ((:commit . "b00658dfe3d5d67431c18ffa693d5a3705067ba0") (:authors ("Stefano Barbi" . "stefanobarbi@gmail.com")) (:maintainer "Stefano Barbi" . "stefanobarbi@gmail.com"))]) (jabber-otr . [(20150918 1144) ((emacs (24)) (jabber (0 8 92))) "Off-The-Record messaging for jabber.el" tar ((:commit . "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0") (:keywords "comm") (:authors ("Magnus Henoch" . "magnus.henoch@gmail.com")) (:maintainer "Magnus Henoch" . "magnus.henoch@gmail.com") (:url . "https://github.com/legoscia/emacs-jabber-otr/"))]) (jabber . [(20180927 2325) ((fsm (0 2)) (srv (0 2))) "A Jabber client for Emacs." tar ((:commit . "fff33826f42e040dad7ef64ea312d85215d3b0a1"))]) (j-mode . [(20171224 1856) nil "Major mode for editing J programs" tar ((:commit . "e8725ac8af95498faabb2ca3ab3bd809a8f148e6") (:keywords "j" "languages") (:url . "http://github.com/zellio/j-mode"))]) (iy-go-to-char . [(20141029 1546) nil "Go to next CHAR which is similar to \"f\" and \"t\" in vim" single ((:commit . "04ab4f5f3a241cbbc9b8c178a22b412a62f632f9") (:keywords "navigation" "search") (:authors ("Ian Yang <doit dot ian (at) gmail dot com>")) (:maintainer "Ian Yang <doit dot ian (at) gmail dot com>") (:url . "https://github.com/doitian/iy-go-to-char"))]) (ix . [(20131027 1629) ((grapnel (0 5 3))) "Emacs client for http://ix.io pastebin" single ((:commit . "aea4c54a5cc5a6f26637353c16a3a0e70fc76963") (:authors ("Abhishek L" . "abhishekl.2006@gmail.com")) (:maintainer "Abhishek L" . "abhishekl.2006@gmail.com") (:url . "http://www.github.com/theanalyst/ix.el"))]) (ivy-youtube . [(20181031 1208) ((request (0 2 0)) (ivy (0 8 0)) (cl-lib (0 5))) "Query YouTube and play videos in your browser" single ((:commit . "57e773e29412dc87e9bf007b15ac8dbed149e7fc") (:keywords "youtube" "multimedia" "mpv" "vlc") (:authors ("Brunno dos Santos")) (:maintainer "Brunno dos Santos") (:url . "https://github.com/squiter/ivy-youtube"))]) (ivy-ycmd . [(20180909 1225) ((ycmd (1 3)) (emacs (24)) (ivy (0 10 0)) (dash (2 14 1))) "Ivy interface to ycmd" single ((:commit . "25bfee8f676e4ecbb645e4f30b47083410a00c58") (:keywords "tools") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/emacs-ivy-ycmd"))]) (ivy-yasnippet . [(20181002 1655) ((emacs (24)) (ivy (0 10 0)) (yasnippet (0 12 2)) (dash (2 14 1)) (cl-lib (0))) "Preview yasnippets with ivy" single ((:commit . "32580b4fd23ebf9ca7dde96704f7d53df6e253cd") (:keywords "convenience") (:authors ("Michał Krzywkowski" . "k.michal@zoho.com")) (:maintainer "Michał Krzywkowski" . "k.michal@zoho.com") (:url . "https://github.com/mkcms/ivy-yasnippet"))]) (ivy-xref . [(20180821 1211) ((emacs (25 1)) (ivy (0 10 0))) "Ivy interface for xref results" single ((:commit . "61864f82e554121be0a26ba0a1d8f48b669dd5f0") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/ivy-xref"))]) (ivy-xcdoc . [(20160917 1055) ((ivy (0 8 0)) (emacs (24 4))) "Search Xcode documents with ivy interface." single ((:commit . "5ea22af36c4c2737fb0bec53432c233482d8b314") (:keywords "ivy" "xcode" "xcdoc") (:authors ("C.T.Chen" . "chenct@7adybird.com")) (:maintainer "C.T.Chen" . "chenct@7adybird.com") (:url . "https://github.com/hex2010/emacs-ivy-xcdoc"))]) (ivy-todo . [(20171208 1609) ((ivy (0 8 0)) (emacs (24 3))) "Manage org-mode TODOs with ivy" single ((:commit . "964e347cea1a6097854d7113f5b07f6c5ef81df0") (:keywords "convenience") (:authors ("Erik Sjöstrand" . "sjostrand.erik@gmail.com")) (:maintainer "Erik Sjöstrand" . "sjostrand.erik@gmail.com") (:url . "http://github.com/Kungsgeten/ivy-todo"))]) (ivy-rtags . [(20170523 454) ((ivy (0 7 0)) (rtags (2 10))) "RTags completion back-end for ivy" single ((:commit . "194cd70d38c3e2e01b9de04d006f94573510aebb") (:authors ("Jan Erik Hanssen" . "jhanssen@gmail.com") ("Anders Bakken" . "agbakken@gmail.com")) (:maintainer "Jan Erik Hanssen" . "jhanssen@gmail.com") (:url . "http://rtags.net"))]) (ivy-rich . [(20181001 1147) ((emacs (24 4)) (ivy (0 8 0))) "More friendly display transformer for ivy." single ((:commit . "dee5d60f655c93f4f9f0e40507244112bd90dab5") (:keywords "ivy") (:authors ("Yevgnen Koh" . "wherejoystarts@gmail.com")) (:maintainer "Yevgnen Koh" . "wherejoystarts@gmail.com"))]) (ivy-purpose . [(20160724 1003) ((emacs (24)) (ivy (0 8)) (window-purpose (1 5))) "Ivy Interface for Purpose" single ((:commit . "0495f2f3aed64d7e0028125e76a9a68f8fc4107e") (:authors ("Bar Magal (2016)")) (:maintainer "Bar Magal (2016)") (:url . "https://github.com/bmag/ivy-purpose"))]) (ivy-prescient . [(20181022 2256) ((emacs (25 1)) (prescient (2 2 1)) (ivy (0 10 0))) "prescient.el + Ivy" single ((:commit . "1623a0d4e5b9a752db45923fd91da48b49c85068") (:keywords "extensions") (:authors ("Radon Rosborough" . "radon.neon@gmail.com")) (:maintainer "Radon Rosborough" . "radon.neon@gmail.com") (:url . "https://github.com/raxod502/prescient.el"))]) (ivy-posframe . [(20180818 424) ((emacs (26 0)) (posframe (0 1 0)) (ivy (0 10 0))) "Using posframe to show Ivy" single ((:commit . "b92aaa1c4695e2c6012cdbc1469b89e8c0dac4c2") (:keywords "abbrev" "convenience" "matching" "ivy") (:authors ("Feng Shu")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/ivy-posframe"))]) (ivy-phpunit . [(20180219 915) ((ivy (0 10 0)) (phpunit (0 7 0)) (emacs (25))) "Ivy integration for phpunit.el" single ((:commit . "ffedb0138d36564e8e36a28fd9bc71ea8944681f") (:keywords "convenience" "tools" "ivy" "phpunit" "php") (:authors ("12pt")) (:maintainer "12pt") (:url . "https://github.com/12pt/ivy-phpunit"))]) (ivy-pass . [(20170812 1955) ((emacs (24)) (ivy (0 8 0)) (password-store (1 6 5))) "ivy interface for pass" single ((:commit . "5b523de1151f2109fdd6a8114d0af12eef83d3c5") (:keywords "pass" "password" "convenience" "data") (:authors ("ecraven")) (:maintainer "ecraven") (:url . "https://github.com/ecraven/ivy-pass/"))]) (ivy-pages . [(20160728 1920) ((emacs (24 1)) (ivy (0 8 0))) "Complete current buffer's pages with Ivy" single ((:commit . "47b03a1f9384502cf22369ff31a2898c863d3aff") (:keywords "convenience" "matching") (:authors ("Igor Epstein" . "igorepst@gmail.com")) (:maintainer "Igor Epstein" . "igorepst@gmail.com") (:url . "https://github.com/igorepst/ivy-pages"))]) (ivy-mpdel . [(20180502 1848) ((emacs (25 1)) (ivy (0 10 0)) (libmpdel (0 5 0)) (mpdel (0 4 0))) "Ivy interface to navigate MPD" single ((:commit . "3f7d91cb10416b26a8e465d8c22e0faad4a722a8") (:keywords "multimedia") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://gitlab.petton.fr/mpdel/ivy-mpdel"))]) (ivy-lobsters . [(20171202 2041) ((ivy (0 8 0)) (cl-lib (0 5))) "Browse lobste.rs stories with ivy." single ((:commit . "4364df4b3685fd1b50865ac9360fb948c0288dd1") (:authors ("Julien Blanchard <https://github.com/julienXX>")) (:maintainer "Julien Blanchard <https://github.com/julienXX>") (:url . "https://github.com/julienXX/ivy-lobsters"))]) (ivy-hydra . [(20180614 2200) ((emacs (24 1)) (ivy (0 9 0)) (hydra (0 13 4))) "Additional key bindings for Ivy" single ((:commit . "18019278d2b849b1287d299a894a4b98c9707ba2") (:keywords "convenience") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/swiper"))]) (ivy-historian . [(20170716 420) ((emacs (24 4)) (historian (20170111)) (ivy (0 8 0)) (flx (0 6 1))) "Persistently store selected minibuffer candidates" single ((:commit . "6be869f585b854eb849303c452ab4f91dab04fa9") (:keywords "convenience" "ivy") (:authors ("PythonNut" . "pythonnut@pythonnut.com")) (:maintainer "PythonNut" . "pythonnut@pythonnut.com") (:url . "https://github.com/PythonNut/historian.el"))]) (ivy-gitlab . [(20180312 1647) ((s (1 9 0)) (dash (2 9 0)) (ivy (0 8 0)) (gitlab (0 8))) "Ivy interface to Gitlab" single ((:commit . "68318aca3206d50701039c9aae39734ca29a49f9") (:keywords "gitlab" "ivy") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/emacs-gitlab"))]) (ivy-feedwrangler . [(20180618 1522) nil "No description available." single ((:commit . "051eac49cae32b16fab2e06ff0115cd8fb5dc499"))]) (ivy-erlang-complete . [(20180716 444) ((async (1 9)) (counsel (0 8 0)) (ivy (0 8 0)) (erlang (19 2)) (emacs (24 4))) "Erlang context sensitive completion at point using ivy. It also support xref and eldoc." tar ((:commit . "6dad91e4951ed6fd8886bfee587144da18b57049"))]) (ivy-dired-history . [(20170626 556) ((ivy (0 9 0)) (counsel (0 9 0)) (cl-lib (0 5))) "use ivy to open recent directories" single ((:commit . "c9c67ea1ee5e68443f0e6006ba162d6c8d868b69") (:authors ("纪秀峰" . "jixiuf@gmail.com")) (:maintainer "纪秀峰" . "jixiuf@gmail.com") (:url . "https://github.com/jixiuf/ivy-dired-history"))]) (ivy-bibtex . [(20181030 2142) ((swiper (0 7 0)) (parsebib (1 0)) (s (1 9 0)) (dash (2 6 0)) (f (0 16 2)) (cl-lib (0 5)) (biblio (0 2))) "A bibliography manager based on Ivy" tar ((:commit . "af05ccb498d89550644cc01c80628053d4d2d73f") (:authors ("Justin Burkett" . "justin@burkett.cc")) (:maintainer "Titus von der Malsburg" . "malsburg@posteo.de"))]) (ivy . [(20181120 1847) ((emacs (24 1))) "Incremental Vertical completYon" tar ((:commit . "18019278d2b849b1287d299a894a4b98c9707ba2") (:keywords "matching") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/swiper"))]) (ivs-edit . [(20170818 1441) ((emacs (24 3)) (dash (2 6 0)) (cl-lib (1 0))) "IVS (Ideographic Variation Sequence) editing tool" tar ((:commit . "5db39c234aa7393b591168a4fd0a9a4cbbca347d") (:keywords "text") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "http://github.com/kawabata/ivs-edit"))]) (ivariants . [(20170823 224) ((emacs (24 3)) (ivs-edit (1 0))) "Ideographic variants editor and browser" tar ((:commit . "ca0b74d32b5d2d77a45cc6ad6edc00be0ee85284") (:keywords "i18n" "languages") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "http://github.com/kawabata/ivariants"))]) (iterator . [(20170207 838) ((emacs (24)) (cl-lib (0 5))) "A library to create and use elisp iterators objects." single ((:commit . "9da54f9aed945b46866782cdf962c9e530419297") (:authors ("Thierry Volpiatto <thierry dot volpiatto at gmail dot com>")) (:maintainer "Thierry Volpiatto <thierry dot volpiatto at gmail dot com>") (:url . "https://github.com/thierryvolpiatto/iterator"))]) (iter2 . [(20181020 1502) ((emacs (25 1))) "Reimplementation of Elisp generators" single ((:commit . "3b418e05e93ea380baf905de14efda4c174f779c") (:keywords "elisp" "extensions") (:authors ("Paul Pogonyshev" . "pogonyshev@gmail.com")) (:maintainer "Paul Pogonyshev" . "pogonyshev@gmail.com") (:url . "https://github.com/doublep/iter2"))]) (itasca . [(20170601 1622) ((emacs (24 3))) "Major modes for Itasca software data files." tar ((:commit . "3d15dd1b70d6db69b0f4758a3e28b8b506cc84ca") (:keywords "itasca" "flac" "3dec" "udec" "flac3d" "pfc" "pfc2d" "pfc3d" "fish") (:authors ("Jason Furtney" . "jkfurtney@gmail.com")) (:maintainer "Jason Furtney" . "jkfurtney@gmail.com") (:url . "http://github.com/jkfurtney/itasca-emacs/"))]) (itail . [(20171112 804) nil "An interactive tail mode" single ((:commit . "6e43c20da03be3b9c6ece93b7dc3495975ec1888") (:keywords "tail") (:authors ("atom smith")) (:maintainer "atom smith") (:url . "https://github.com/re5et/itail"))]) (iss-mode . [(20141001 1913) nil "Mode for InnoSetup install scripts" single ((:commit . "3b517aff31529bab33f8d7b562bd17aff0107fd1") (:authors ("Stefan Reichoer," . "stefan@xsteve.at")) (:maintainer "Stefan Reichoer," . "stefan@xsteve.at"))]) (isortify . [(20180612 1322) ((emacs (25)) (pythonic (0 1 0))) "(automatically) format python buffers using isort." single ((:commit . "442f12fa91695a43a4b542f7b82d6ac9b004729b") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/isortify"))]) (isolate . [(20181018 2235) ((emacs (25))) "Surrounding tool with flexible customizations." single ((:commit . "39ecc20ce57e338ece07fbd4f23b2a659c2365ca") (:keywords "convenience") (:authors ("Yuan Fu" . "casouri@gmail.com")) (:maintainer "Yuan Fu" . "casouri@gmail.com") (:url . "https://github.com/casouri/isolate"))]) (isgd . [(20150414 936) nil "Shorten URLs using the isgd.com shortener service" single ((:commit . "764306dadd5a9213799081a48aba22f7c75cca9a") (:authors ("Chmouel Boudjnah" . "chmouel@chmouel.com")) (:maintainer "Chmouel Boudjnah" . "chmouel@chmouel.com") (:url . "https://github.com/chmouel/isgd.el"))]) (isend-mode . [(20171118 1545) nil "Interactively send parts of an Emacs buffer to an interpreter" single ((:commit . "88d4576e70e5874115c305ab2767d181dfda5985") (:authors ("François Févotte" . "fevotte@gmail.com")) (:maintainer "François Févotte" . "fevotte@gmail.com") (:url . "https://github.com/ffevotte/isend-mode.el"))]) (isearch-symbol-at-point . [(20130728 2221) nil "Use isearch to search for the symbol at point" single ((:commit . "51a1029bec1ec414885f9edb7e5947603dffdab2") (:keywords "isearch") (:authors ("atom smith")) (:maintainer "atom smith") (:url . "https://github.com/re5et/isearch-symbol-at-point"))]) (isearch-dabbrev . [(20141224 622) ((cl-lib (0 5))) "Use dabbrev in isearch" single ((:commit . "1efe7abba4923015cbc2462395deaec5446a9cc8") (:keywords "dabbrev" "isearch") (:authors ("Dewdrops" . "v_v_4474@126.com")) (:maintainer "Dewdrops" . "v_v_4474@126.com") (:url . "https://github.com/Dewdrops/isearch-dabbrev"))]) (irony-eldoc . [(20170502 1908) ((emacs (24)) (cl-lib (0 5)) (irony (0 1))) "irony-mode support for eldoc-mode" single ((:commit . "0df5831eaae264a25422b061eb2792aadde8b3f2") (:keywords "c" "c++" "objc" "convenience" "tools") (:authors ("Kirill Ignatiev <github.com/ikirill>")) (:maintainer "Kirill Ignatiev <github.com/ikirill>") (:url . "https://github.com/ikirill/irony-eldoc"))]) (irony . [(20181030 834) ((cl-lib (0 5)) (json (1 2))) "C/C++ minor mode powered by libclang" tar ((:commit . "0a5ea0b9e7c28ec7d0685b108b8fb1f71f4365f4") (:keywords "c" "convenience" "tools") (:authors ("Guillaume Papin" . "guillaume.papin@epitech.eu")) (:maintainer "Guillaume Papin" . "guillaume.papin@epitech.eu") (:url . "https://github.com/Sarcasm/irony-mode"))]) (iregister . [(20150515 2107) nil "Interactive register commands for Emacs." tar ((:commit . "6a48c66187289de5f300492be11c83e98410c018") (:keywords "convenience") (:authors ("Andrey Tykhonov" . "atykhonov@gmail.com")) (:maintainer "Andrey Tykhonov" . "atykhonov@gmail.com") (:url . "https://github.com/atykhonov/iregister.el"))]) (ir-black-theme . [(20130303 755) nil "Port of ir-black theme" single ((:commit . "36e930d107604b5763c80294a6f92aaa02e6c272") (:keywords "faces") (:authors ("Jon-Michael Deldin" . "dev@jmdeldin.com")) (:maintainer "Jon-Michael Deldin" . "dev@jmdeldin.com"))]) (iqa . [(20181024 2253) ((emacs (24 3))) "Init file(and directory) Quick Access." single ((:commit . "b45614f5204ed851de0abe93907aa94de5e37379") (:url . "https://github.com/a13/iqa.el"))]) (ipython-shell-send . [(20180910 446) ((emacs (24))) "Send code (including magics) to ipython shell" single ((:commit . "95dea09628c91f03df79befd7532d79afac1244e") (:keywords "tools" "processes") (:authors ("Jack Kamm" . "jackkamm@gmail.com")) (:maintainer "Jack Kamm" . "jackkamm@gmail.com") (:url . "https://github.com/jackkamm/ipython-shell-send-el"))]) (ipretty . [(20180606 522) nil "Interactive Emacs Lisp pretty-printing" single ((:commit . "042f5cc4e6f81d59115e8335c582bb5c571c2585") (:keywords "pretty-print" "elisp" "buffer") (:authors ("steckerhalter")) (:maintainer "steckerhalter") (:url . "https://framagit.org/steckerhalter/ipretty"))]) (iplayer . [(20161120 2120) nil "Browse and download BBC TV/radio shows" single ((:commit . "b788fffa4b36bbd558047ffa6be51b1f0f462f23") (:keywords "multimedia" "bbc") (:authors ("Christophe Rhodes" . "csr21@cantab.net")) (:maintainer "Christophe Rhodes" . "csr21@cantab.net") (:url . "https://github.com/csrhodes/iplayer-el"))]) (ipcalc . [(20170926 805) ((cl-lib (0 5))) "IP subnet calculator" single ((:commit . "2720f7e3e662e04e195f8338b81a499cf321296a") (:keywords "networking" "tools") (:authors ("\"Aleksandar Simic\"" . "asimic@gmail.com")) (:maintainer "\"Aleksandar Simic\"" . "asimic@gmail.com") (:url . "http://github.com/dotemacs/ipcalc.el"))]) (iodine-theme . [(20151031 1639) ((emacs (24))) "A light emacs color theme" single ((:commit . "02fb780e1d8d8a6b9c709bfac399abe1665c6999") (:keywords "themes") (:authors ("Srđan Panić" . "srdja.panic@gmail.com")) (:maintainer "Srđan Panić" . "srdja.panic@gmail.com") (:url . "https://github.com/srdja/iodine-theme"))]) (ioccur . [(20130822 548) nil "Incremental occur" single ((:commit . "4c0ef992a6fcd2aed62e3866d56650463108ab5a") (:authors ("Thierry Volpiatto <thierry dot volpiatto at gmail dot com>")) (:maintainer "Thierry Volpiatto <thierry dot volpiatto at gmail dot com>") (:url . "https://github.com/thierryvolpiatto/ioccur"))]) (io-mode-inf . [(20140128 1934) nil "Interaction with an Io interpreter." single ((:commit . "6dd2bac3fd87484bb7d97e135b06c29d70b444b6") (:keywords "io" "languages") (:url . "https://github.com/slackorama/io-emacs"))]) (io-mode . [(20161004 756) nil "Major mode to edit Io language files in Emacs" single ((:commit . "fd65ae769093defcf554d6d637eba6e6dfc29f56") (:keywords "languages" "io") (:authors ("Sergei Lebedev" . "superbobry@gmail.com")) (:maintainer "Sergei Lebedev" . "superbobry@gmail.com") (:url . "https://github.com/superbobry/io-mode"))]) (inverse-acme-theme . [(20170823 254) ((autothemer (0 2)) (cl-lib (0 5))) "A theme that looks like an inverse of Acme's color scheme." single ((:commit . "74d6f3e2f6534371509dd2d77006435156c276d6") (:authors ("Dylan Johnson")) (:maintainer "Dylan Johnson") (:url . "http://github.com/djohnson/inverse-acme-theme"))]) (interval-tree . [(20130325 1407) ((dash (1 1 0))) "Interval tree data structure for 1D range queries" single ((:commit . "301302f480617091cf3ab6989caac385d52543dc") (:keywords "extensions" "data structure") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/interval-tree"))]) (interval-list . [(20150327 1718) ((dash (2 4 0)) (cl-lib (0 5)) (emacs (24 4))) "Interval list data structure for 1D selections" single ((:commit . "38af7ecf0a493ad8f487074938a2a115f3531177") (:keywords "extensions" "data structure") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/interval-list"))]) (intero . [(20181109 1547) ((flycheck (0 25)) (company (0 8)) (emacs (24 4)) (haskell-mode (13 0))) "Complete development mode for Haskell" single ((:commit . "4be2a4a5de81bae504654a6b3a5d8a340be00e7e") (:keywords "haskell" "tools") (:authors ("Chris Done" . "chrisdone@fpcomplete.com")) (:maintainer "Chris Done" . "chrisdone@fpcomplete.com") (:url . "https://github.com/commercialhaskell/intero"))]) (interleave . [(20171004 624) nil "Interleaving text books since 2015" single ((:commit . "87549df30cbc681baf86b238bd14c7cf7ec11fc4") (:authors ("Sebastian Christ" . "rudolfo.christ@gmail.com")) (:maintainer "Sebastian Christ" . "rudolfo.christ@gmail.com") (:url . "https://github.com/rudolfochrist/interleave"))]) (interaction-log . [(20160305 1301) ((cl-lib (0))) "exhaustive log of interactions with Emacs" single ((:commit . "a49a06746d4df6bcfceec3c48dece065d635f9f9") (:keywords "convenience") (:authors ("Michael Heerdegen" . "michael_heerdegen@web.de")) (:maintainer "Michael Heerdegen" . "michael_heerdegen@web.de") (:url . "https://github.com/michael-heerdegen/interaction-log.el"))]) (intellij-theme . [(20171017 1415) nil "Inspired by IntelliJ's default theme" single ((:commit . "1bbfff8e6742d18e9b77ed796f44da3b7bd10606") (:keywords "faces") (:authors ("Vladimir Polushin" . "vovapolu@gmail.com")) (:maintainer "Vladimir Polushin" . "vovapolu@gmail.com"))]) (intel-hex-mode . [(20180423 31) nil "Mode for Intel Hex files." single ((:commit . "e83c94e1c31a8435a88b3ae395f2bc842ef83217") (:keywords "tools" "hex") (:maintainer "Michael Schuldt" . "mbschuldt@gmail.com") (:url . "https://github.com/mschuldt/intel-hex-mode"))]) (instapaper . [(20130104 1421) nil "add URLs to instapaper from emacs" single ((:authors ("Jason F. McBrayer" . "jmcbray@carcosa.net")) (:maintainer "Jason F. McBrayer" . "jmcbray@carcosa.net") (:url . "htts://bitbucket.org/jfm/emacs-instapaper"))]) (insfactor . [(20141117 2) nil "Client for a Clojure project with insfactor in it" single ((:commit . "7ef5446cebb08a17d4106d2e6f3c053e49e1e829") (:keywords "clojure") (:authors ("John D. Hume" . "duelin.markers@gmail.com")) (:maintainer "John D. Hume" . "duelin.markers@gmail.com") (:url . "http://github.com/duelinmarkers/insfactor.el"))]) (insert-shebang . [(20180403 1214) nil "Insert shebang line automatically." single ((:commit . "7bfea92ba1dae9d13d442e2f84f9fb6c05a0a9bd") (:keywords "shebang" "tool" "convenience") (:authors ("Sachin Patil" . "iclcoolster@gmail.com")) (:maintainer "Sachin Patil" . "iclcoolster@gmail.com") (:url . "http://github.com/psachin/insert-shebang"))]) (inlineR . [(20120520 1432) nil "insert Tag for inline image of R graphics" single ((:commit . "29357186beca825e3d0451b700ec09b9ed65e37b") (:keywords "convenience" "iimage.el" "cacoo.el") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/inlineR.el"))]) (inline-docs . [(20170523 450) ((emacs (24 3))) "Show inline contextual docs." single ((:commit . "b57f1681be6147f999cdc12abff414a0442e8897") (:keywords "inline" "docs" "overlay") (:authors ("stardiviner" . "numbchild@gmail.com")) (:maintainer "stardiviner" . "numbchild@gmail.com") (:url . "https://github.com/stardiviner/inline-docs.el"))]) (inline-crypt . [(20170824 900) nil "Simple inline encryption via openssl" tar ((:commit . "281385b383f850fd2e895926b1cef804dd052633"))]) (inkpot-theme . [(20181119 706) nil "port of vim's inkpot theme" single ((:commit . "054c125b49247a08af5a391992817776fd0e8af6") (:keywords "color" "theme") (:authors ("Sarah Iovan" . "sarah@hwaetageek.com") ("Campbell Barton" . "ideasman42@gmail.com")) (:maintainer "Sarah Iovan" . "sarah@hwaetageek.com") (:url . "https://github.com/ideasman42/emacs-inkpot-theme"))]) (ink-mode . [(20160814 1116) ((emacs (24 3))) "Major mode for writing interactive fiction in Ink" single ((:commit . "e35f26abbaf8ea23c5aa0a0c7ef15334cdfb7b48") (:keywords "languages") (:authors ("Erik Sjöstrand")) (:maintainer "Erik Sjöstrand") (:url . "http://github.com/Kungsgeten/ink-mode"))]) (initsplit . [(20160919 1818) nil "code to split customizations into different files" single ((:commit . "c941d436eb2b10b01c76a582c5a2b23fb30751aa") (:keywords "lisp") (:authors ("John Wiegley <johnw@gnu.org>, Dave Abrahams" . "dave@boostpro.com")) (:maintainer "John Wiegley <johnw@gnu.org>, Dave Abrahams" . "dave@boostpro.com") (:url . "http://www.gci-net.com/users/j/johnw/emacs.html"))]) (init-open-recentf . [(20161206 1445) ((emacs (24 4))) "Open recentf immediately after Emacs is started" single ((:commit . "7d8fb124806291f7f6ef2ec3a664ea25899b6d68") (:keywords "files" "recentf" "after-init-hook") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/init-open-recentf.el"))]) (init-loader . [(20160528 1315) nil "Loader for configuration files" single ((:commit . "5d3cea1004c11ff96b33020e337b03b925c67c42") (:authors ("IMAKADO" . "ken.imakado@gmail.com")) (:maintainer "IMAKADO" . "ken.imakado@gmail.com") (:url . "https://github.com/emacs-jp/init-loader/"))]) (ini-mode . [(20170424 909) nil "Major mode for Windows-style ini files." single ((:commit . "2194cfa2fd13196a37350ec20b3f00dcf6162b7c") (:keywords "languages" "faces") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/ini-mode"))]) (inherit-local . [(20170409 1649) ((emacs (24 3))) "Inherited buffer-local variables" single ((:commit . "b1f4ff9c41f9d64e4adaf5adcc280b82f084cdc7") (:authors ("Shea Levy")) (:maintainer "Shea Levy") (:url . "https://github.com/shlevy/inherit-local/tree-master/"))]) (info-colors . [(20180205 1150) ((emacs (24)) (cl-lib (0 5))) "Extra colors for Info-mode" single ((:commit . "a8ebb7b8efa314c08ea8110d8b1876afb562bb45") (:keywords "faces") (:authors ("Tuấn-Anh Nguyễn" . "ubolonton@gmail.com")) (:maintainer "Tuấn-Anh Nguyễn" . "ubolonton@gmail.com") (:url . "https://github.com/ubolonton/info-colors"))]) (info-buffer . [(20170112 1422) nil "Display info topics in separate buffers" single ((:commit . "d35dad6e766c6e2ddb8dc6acb4ce5b6e10fbcaa7") (:keywords "docs" "info") (:authors ("Lluís Vilanova" . "vilanova@ac.upc.edu")) (:maintainer "Lluís Vilanova" . "vilanova@ac.upc.edu") (:url . "http://www.github.com/llvilanova/info-buffer"))]) (info-beamer . [(20180604 2122) ((emacs (24 4))) "Utilities for working with info-beamer" single ((:commit . "af443795af20481af91ac54a489b20f6a9d90b0a") (:keywords "tools" "processes" "comm") (:authors ("Daniel Kraus" . "daniel@kraus.my")) (:maintainer "Daniel Kraus" . "daniel@kraus.my") (:url . "https://github.com/dakra/info-beamer.el"))]) (inflections . [(20170913 916) ((cl-lib (0 5)) (emacs (24))) "convert english words between singular and plural" single ((:commit . "e4f1372cf22e811faca52fc86bdd5d817498a4d8") (:keywords "languages" "tools" "wp") (:authors ("Dmitry Galinsky, Howard Yeh")) (:maintainer "Dmitry Galinsky, Howard Yeh") (:url . "https://github.com/eschulte/jump.el"))]) (inferior-spim . [(20160826 1346) nil "inferior mode for spim." single ((:commit . "fb9aa091f6058bf320793f1a608c1ed7322c1f47") (:keywords "spim" "inferior" "mips") (:authors ("hiddenlotus" . "kaihaosw@gmail.com")) (:maintainer "hiddenlotus" . "kaihaosw@gmail.com"))]) (inf-ruby . [(20180521 1348) nil "Run a Ruby process in a buffer" single ((:commit . "49d59a7897f594e3be74ecbddae83719f9a6c0f0") (:keywords "languages" "ruby") (:authors ("Yukihiro Matsumoto") ("Nobuyoshi Nakada") ("Cornelius Mika" . "cornelius.mika@gmail.com") ("Dmitry Gutov" . "dgutov@yandex.ru") ("Kyle Hargraves" . "pd@krh.me")) (:maintainer "Yukihiro Matsumoto") (:url . "http://github.com/nonsequitur/inf-ruby"))]) (inf-mongo . [(20180408 1338) nil "Run a MongoDB shell process in a buffer" single ((:commit . "2e498d1c88bd1904eeec18ed06b1a0cf8bdc2a92") (:keywords "databases" "mongodb") (:authors ("Tobias Svensson")) (:maintainer "Tobias Svensson") (:url . "http://github.com/endofunky/inf-mongo"))]) (inf-crystal . [(20180119 211) ((emacs (24 3)) (crystal-mode (0 1 0))) "Run a Inferior-Crystal process in a buffer" single ((:commit . "02007b2a2a3bea44902d7c83c4acba1e39d278e3") (:keywords "languages" "crystal") (:authors ("Brantou" . "brantou89@gmail.com")) (:maintainer "Brantou" . "brantou89@gmail.com") (:url . "https://github.com/brantou/inf-crystal.el"))]) (inf-clojure . [(20180402 2103) ((emacs (24 4)) (clojure-mode (5 6))) "Run an external Clojure process in an Emacs buffer" single ((:commit . "59868ff0433f7631c362ce25879bd4271d350ebc") (:keywords "processes" "clojure") (:url . "http://github.com/clojure-emacs/inf-clojure"))]) (indy . [(20150610 1706) nil "A minor mode and EDSL to manage your mode's indentation rules." single ((:commit . "4604867d8111f0e186a5351e68e054a77cb14abf") (:keywords "convenience" "matching" "tools") (:authors ("Kevin W. van Rooijen" . "kevin.van.rooijen@attichacker.com")) (:maintainer "Kevin W. van Rooijen" . "kevin.van.rooijen@attichacker.com"))]) (indium . [(20181015 908) ((emacs (25)) (seq (2 16)) (js2-mode (20140114)) (js2-refactor (0 9 0)) (company (0 9 0))) "JavaScript Awesome Development Environment" tar ((:commit . "042a47aa63a1156f26c332f04f87d354877106ed") (:keywords "tools" "javascript") (:authors ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Nicolas Petton" . "nicolas@petton.fr") (:url . "https://github.com/NicolasPetton/indium"))]) (indicators . [(20161211 1126) ((dash (2 13 0)) (cl-lib (0 5 0))) "Display the buffer relative location of line in the fringe." single ((:commit . "f62a1201f21453e3aca93f48483e65ae8251432e") (:keywords "fringe" "frames") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/indicators.el"))]) (indent-tools . [(20180124 1208) ((s (0)) (hydra (0)) (yafolding (0))) "Indent, navigate (and more) by blocks of indentation: yaml, python etc." tar ((:commit . "b650b2ca82ccd9ccb4f3142afa0da4737ddd364f") (:keywords "indentation" "movements" "navigation" "kill" "fold" "yaml" "python") (:authors ("vindarel" . "ehvince@mailz.org")) (:maintainer "vindarel" . "ehvince@mailz.org") (:url . "https://gitlab.com/emacs-stuff/indent-tools/"))]) (indent-info . [(20180423 1912) nil "show indentation information in status bar" single ((:commit . "d218b4cb3726476caee91db6f6c920856ab992bc") (:keywords "convenience" "tools") (:authors ("Terje Larsen" . "terlar@gmail.com")) (:maintainer "Terje Larsen" . "terlar@gmail.com") (:url . "https://github.com/terlar/indent-info.el"))]) (indent-guide . [(20170221 1127) nil "show vertical lines to guide indentation" single ((:commit . "d64f43011c72068e008621e620009ec592b35913") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (importmagic . [(20180520 303) ((f (0 11 0)) (epc (0 1 0)) (emacs (24 3))) "Fix Python imports using importmagic." tar ((:commit . "bbc131278f8cd62f3e71b6f4a86b0c91792a3524") (:keywords "languages" "convenience") (:authors ("Nicolás Salas V." . "nikosalas@gmail.com")) (:maintainer "Nicolás Salas V." . "nikosalas@gmail.com") (:url . "https://github.com/anachronic/importmagic.el"))]) (import-popwin . [(20170218 1407) ((emacs (24 3)) (popwin (0 6))) "popwin buffer near by import statements with popwin" single ((:commit . "bb05a9e226f8c63fe7b18a3e92010357049ab5ba") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-import-popwin"))]) (import-js . [(20180709 1833) ((grizzl (0 1 0)) (emacs (24))) "Import Javascript dependencies" single ((:commit . "fb1f167e33c388b09a2afd32fbda90a67bfb2e40") (:keywords "javascript") (:authors ("Kevin Kehl" . "kevin.kehl@gmail.com")) (:maintainer "Kevin Kehl" . "kevin.kehl@gmail.com") (:url . "http://github.com/Galooshi/emacs-import-js/"))]) (impatient-mode . [(20181002 1231) ((cl-lib (0 3)) (simple-httpd (1 5 0)) (htmlize (1 40))) "Serve buffers live over HTTP" tar ((:commit . "96f6a05f8de74e19d570217fe83f0734623ddb0c") (:authors ("Brian Taylor" . "el.wubo@gmail.com")) (:maintainer "Brian Taylor" . "el.wubo@gmail.com") (:url . "https://github.com/netguy204/imp.el"))]) (immutant-server . [(20140311 2208) nil "Run your Immutant server in Emacs" single ((:commit . "2a21e65588acb6a976f2998e30b21fdabdba4dbb") (:authors ("David Leatherman" . "leathekd@gmail.com")) (:maintainer "David Leatherman" . "leathekd@gmail.com") (:url . "http://www.github.com/leathekd/immutant-server.el"))]) (immortal-scratch . [(20160517 2118) nil "respawn the scratch buffer when it's killed" single ((:authors ("Jonathan Kotta" . "jpkotta@gmail.com")) (:maintainer "Jonathan Kotta" . "jpkotta@gmail.com"))]) (imgbb . [(20180609 1649) ((emacs (24)) (request (0 3 0))) "Simple image upload client for imgbb.com" single ((:commit . "a524a46263835aa474f908827ebab4e8fa586001") (:keywords "extensions") (:authors ("Peter" . "craven@gmx.net")) (:maintainer "Peter" . "craven@gmx.net") (:url . "https://github.com/ecraven/imgbb.el"))]) (imenus . [(20180505 1717) ((cl-lib (0 5))) "Imenu for multiple buffers and without subgroups" single ((:commit . "149cfa579ee231014d3341a0e05add69759757a5") (:keywords "tools" "convenience") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/imenus.el"))]) (imenu-list . [(20180601 1402) ((cl-lib (0 5))) "Show imenu entries in a separate buffer" single ((:commit . "04f0632f7b8c81be8747617768c57b66e5d60994") (:authors ("Bar Magal (2015)")) (:maintainer "Bar Magal (2015)") (:url . "https://github.com/bmag/imenu-list"))]) (imenu-anywhere . [(20170805 1855) ((cl-lib (0 5))) "ido/ivy/helm imenu across same mode/project/etc buffers" single ((:commit . "fc7f0fd2f19e5ebee70156a99bf87393123893e3") (:keywords "ido" "imenu" "tags") (:authors ("Vitalie Spinu  <spinuvit.list[ aaattt ]gmail[ dot ]com>")) (:maintainer "Vitalie Spinu  <spinuvit.list[ aaattt ]gmail[ dot ]com>") (:url . "https://github.com/vitoshka/imenu-anywhere"))]) (imapfilter . [(20180318 2027) nil "run the imapfilter executable" single ((:commit . "79bbbe918319bc1e8f42a0bef53dc7c77fe868ea") (:keywords "mail") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/imapfilter"))]) (imake . [(20180318 2259) ((emacs (24 3))) "Simple, opinionated make target runner" single ((:commit . "7df5fb9684a0288313ef5f64594078d477105959") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/imake"))]) (imakado . [(20141024 923) nil "imakado's usefull macros and functions" single ((:commit . "00a1e7eea2cb9e9066343a23927d6c747707902f") (:keywords "convenience") (:authors ("imakado <ken.imakado_at_gmail.com>")) (:maintainer "imakado") (:url . "https://github.com/imakado/emacs-imakado"))]) (image-dired+ . [(20150430 544) ((cl-lib (0 3))) "Image-dired extensions" single ((:commit . "b68094625d963056ad64e0e44af0e2266b2eadc7") (:keywords "extensions" "multimedia") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-image-diredx"))]) (image-archive . [(20150621 132) ((emacs (24)) (cl-lib (0 5))) "Image thumbnails in archive file with non-blocking" single ((:commit . "8d29535bd832329ffeeac780aae7aa8919af1175") (:keywords "multimedia") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-image-archive"))]) (image+ . [(20150707 1616) ((cl-lib (0 3))) "Image manipulate extensions for Emacs" single ((:commit . "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc") (:keywords "multimedia" "extensions") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-imagex"))]) (igv . [(20141210 1227) nil "Control Integrative Genomic Viewer within Emacs" single ((:commit . "47ac6ceede252f451348a2c696398c0cb5279555") (:authors ("Stefano Barbi" . "stefanobarbi@gmail.com")) (:maintainer "Stefano Barbi" . "stefanobarbi@gmail.com"))]) (ignoramus . [(20160414 1409) nil "Ignore backups, build files, et al." single ((:commit . "b37dc7c07edd9d152436f9019c14df158b599be3") (:keywords "convenience" "tools") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/ignoramus"))]) (iflipb . [(20171113 2044) nil "interactively flip between recently visited buffers" single ((:commit . "a5ad1fbd1173cff5228dab265515c92c0778f86a") (:authors ("Joel Rosdahl" . "joel@rosdahl.net")) (:maintainer "Joel Rosdahl" . "joel@rosdahl.net") (:url . "https://github.com/jrosdahl/iflipb"))]) (ietf-docs . [(20150928 957) nil "Fetch, Cache and Load IETF documents" single ((:commit . "ede30d6d26044069e1731fd20c0ab2324552c0b4") (:keywords "ietf" "rfc") (:authors ("Christian E. Hopps" . "chopps@gmail.com")) (:maintainer "Christian E. Hopps" . "chopps@gmail.com") (:url . "https://github.com/choppsv1/ietf-docs"))]) (iedit . [(20181114 950) nil "Edit multiple regions in the same way simultaneously." tar ((:commit . "35505ad860be27feaee71e8caf646706bf8ee31d") (:keywords "occurrence" "region" "simultaneous" "refactoring") (:authors ("Victor Ren" . "victorhge@gmail.com")) (:maintainer "Victor Ren" . "victorhge@gmail.com") (:url . "https://www.emacswiki.org/emacs/Iedit"))]) (ids-edit . [(20170818 1502) ((emacs (24 3))) "IDS (Ideographic Description Sequence) editing tool" tar ((:commit . "8562a6cbfb3f2d44bc6f62ab15081a80f8fee502") (:keywords "i18n" "wp") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "http://github.com/kawabata/ids-edit"))]) (idris-mode . [(20180922 2051) ((emacs (24)) (prop-menu (0 1)) (cl-lib (0 5))) "Major mode for editing Idris code" tar ((:commit . "0e3508aca4d1f46f8c062f84c386d9e5533a21c3") (:keywords "languages") (:url . "https://github.com/idris-hackers/idris-mode"))]) (idomenu . [(20141123 2120) nil "imenu tag selection a la ido" single ((:commit . "4b0152d606360c70204fb4c27f68de79ca885386") (:authors ("Georg Brandl" . "georg@python.org")) (:maintainer "Georg Brandl" . "georg@python.org"))]) (ido-yes-or-no . [(20161108 2351) ((ido-completing-read+ (0))) "Use Ido to answer yes-or-no questions" single ((:commit . "c55383b1fce5879e87e7ca6809fc60534508e182") (:keywords "convenience" "completion" "ido") (:authors ("Ryan C. Thompson")) (:maintainer "Ryan C. Thompson") (:url . "https://github.com/DarwinAwardWinner/ido-yes-or-no"))]) (ido-vertical-mode . [(20180618 2101) nil "Makes ido-mode display vertically." single ((:commit . "16c4c1a112796ee0bcf401ea39d3e2643a89feaf") (:keywords "convenience") (:authors ("Steven Degutis")) (:maintainer "Christopher Reichert" . "creichert07@gmail.com") (:url . "https://github.com/creichert/ido-vertical-mode.el"))]) (ido-springboard . [(20170106 755) nil "Temporarily change default-directory for one command" single ((:commit . "263a8cd4582c81bfc29d7db37d5267e2488b148c") (:keywords "ido") (:authors ("John Wiegley" . "jwiegley@gmail.com")) (:maintainer "John Wiegley" . "jwiegley@gmail.com") (:url . "https://github.com/jwiegley/springboard"))]) (ido-sort-mtime . [(20171121 859) nil "Sort Ido's file list by modification time" single ((:commit . "f638ff0c922af862f5211779f2311a27fde428eb") (:keywords "convenience" "files") (:authors ("Paweł Kraśnicki")) (:maintainer "Paweł Kraśnicki"))]) (ido-skk . [(20151111 950) ((emacs (24 4)) (ddskk (20150912 1820))) "ido interface for skk henkan" single ((:commit . "89a2e62799bff2841ff634517c86084c4ce69246") (:keywords "languages") (:authors ("tsukimizake <shomasd_at_gmail.com>")) (:maintainer "tsukimizake <shomasd_at_gmail.com>") (:url . "https://github.com/tsukimizake/ido-skk"))]) (ido-select-window . [(20131220 2047) ((emacs (24 1))) "Select a window using ido and buffer names" single ((:commit . "a64707d8d154664d50d12e26417d586e4c3dd78b") (:authors ("Peter Jones" . "pjones@devalot.com")) (:maintainer "Peter Jones" . "pjones@devalot.com") (:url . "https://github.com/pjones/ido-select-window"))]) (ido-occur . [(20160820 1440) ((dash (2 13 0))) "Yet another `occur' with `ido'." single ((:commit . "522af5d55b3d4cd6885f3b4100913566c202cec4") (:keywords "inner" "buffer" "search") (:authors ("Danil" . "danil@kutkevich.org")) (:maintainer "Danil" . "danil@kutkevich.org") (:url . "https://github.com/danil/ido-occur"))]) (ido-occasional . [(20150214 1248) ((emacs (24 1))) "Use ido where you choose." single ((:commit . "d405f1795e1e0c63be411ee2825184738d29c33a") (:keywords "completion") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/ido-occasional"))]) (ido-migemo . [(20150921 2244) ((migemo (1 9 1))) "Migemo plug-in for Ido" single ((:commit . "e71114a92dd69cb46abf3fb71a09ce27506fcf77") (:keywords "files") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/ido-migemo.el"))]) (ido-load-library . [(20140611 1600) ((persistent-soft (0 8 8)) (pcache (0 2 3))) "Load-library alternative using ido-completing-read" single ((:commit . "e03b55957c93aa1a7dd190e173e16ec59dbb2ba7") (:keywords "maint" "completion") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/ido-load-library"))]) (ido-hacks . [(20150331 1909) nil "Put more IDO in your IDO" single ((:commit . "b7e7514a0e011e4d767d1f5755c5eae9d85f83dc") (:keywords "convenience") (:authors ("Andreas Politz")) (:maintainer "Scott Jaderholm" . "jaderholm@gmail.com"))]) (ido-grid-mode . [(20160122 1139) ((emacs (24 4))) "Display ido-prospects in the minibuffer in a grid." single ((:commit . "7cfca3988a6dc3ad18e28abe114218095ff2366f") (:keywords "convenience") (:authors ("Tom Hinton")) (:maintainer "Tom Hinton" . "t@larkery.com") (:url . "https://github.com/larkery/ido-grid-mode.el"))]) (ido-gnus . [(20140216 1646) ((gnus (5 13))) "Access gnus groups or servers using ido" single ((:commit . "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089") (:keywords "comm") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/ido-gnus"))]) (ido-flex-with-migemo . [(20180817 1440) ((flx-ido (0 6 1)) (migemo (1 9 1)) (emacs (24 4))) "use ido with flex and migemo" single ((:commit . "acced7c19f3ad505cc27cd95ab05593b8194d2e5") (:keywords "matching") (:authors ("ROCKTAKEY " . "rocktakey@gmail.com")) (:maintainer "ROCKTAKEY " . "rocktakey@gmail.com") (:url . "https://github.com/ROCKTAKEY/ido-flex-with-migemo"))]) (ido-exit-target . [(20170717 1851) ((emacs (24 4))) "Commands and keys for selecting other window and frame targets within ido" single ((:commit . "e56fc6928649c87ccf39d56d84ab53ebaced1f73") (:keywords "convenience" "tools" "extensions") (:authors ("justin talbott" . "justin@waymondo.com")) (:maintainer "justin talbott" . "justin@waymondo.com") (:url . "https://github.com/waymondo/ido-exit-target"))]) (ido-describe-bindings . [(20161023 1102) ((dash (2 13 0))) "Yet another `describe-bindings' with `ido'." single ((:commit . "a142ff1c33df23ed9665497d0dcae2943b3c706a") (:keywords "help") (:authors ("Danil <danil@kutkevich.org>, Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Danil <danil@kutkevich.org>, Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/danil/ido-describe-bindings"))]) (ido-completing-read+ . [(20180628 244) ((emacs (24 4)) (cl-lib (0 5)) (s (0 1)) (memoize (1 1))) "A completing-read-function using ido" single ((:commit . "51d9d4e667aaf2833e94614e5eeffdbbcab4ee98") (:keywords "ido" "completion" "convenience") (:authors ("Ryan Thompson")) (:maintainer "Ryan Thompson") (:url . "https://github.com/DarwinAwardWinner/ido-completing-read-plus"))]) (ido-complete-space-or-hyphen . [(20180929 150) nil "Complete SPACE or HYPHEN when type SPACE in ido" single ((:commit . "ed60ebed113e4e1552efeab0c416f7c88428268e") (:keywords "ido" "completion") (:authors ("Ian Yang <me (at) iany.me>")) (:maintainer "Ian Yang <me (at) iany.me>") (:url . "https://github.com/doitian/ido-complete-space-or-hyphen"))]) (ido-clever-match . [(20151011 1726) ((emacs (24 4)) (cl-lib (0 5))) "Alternative matcher for ido." single ((:commit . "f173473e99c8b0756f12e4cc8f67e68fa59eadd3") (:keywords "ido" "flex") (:authors ("Bogdan Paul Popa" . "popa.bogdanp@gmail.com")) (:maintainer "Bogdan Paul Popa" . "popa.bogdanp@gmail.com") (:url . "https://github.com/Bogdanp/ido-clever-match"))]) (ido-at-point . [(20151021 757) ((emacs (24))) "ido-style completion-at-point" single ((:commit . "e5907bbe8a3d148d07698b76bd994dc3076e16ee") (:keywords "convenience" "abbrev") (:authors ("katspaugh")) (:maintainer "katspaugh") (:url . "https://github.com/katspaugh/ido-at-point"))]) (idle-require . [(20090715 2203) nil "load elisp libraries while Emacs is idle" single ((:commit . "33592bb098223b4432d7a35a1d65ab83f47c1ec1") (:keywords "internal") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/idle-require/"))]) (idle-highlight-mode . [(20120920 1648) nil "highlight the word the point is on" single ((:commit . "c466f2a9e291f9da1167dc879577b2e1a7880482") (:keywords "convenience") (:authors ("Phil Hagelberg, Cornelius Mika")) (:maintainer "Phil Hagelberg, Cornelius Mika") (:url . "http://www.emacswiki.org/cgi-bin/wiki/IdleHighlight"))]) (idle-highlight-in-visible-buffers-mode . [(20181027 1531) nil "highlight the word the point is on" single ((:commit . "8d8de309d5bd4b035c01bf7f0cfc6e079c79d898") (:keywords "convenience") (:authors ("Ignacy Moryc")) (:maintainer "Ignacy Moryc") (:url . "https://github.com/ignacy/idle-highlight-in-visible-buffers"))]) (identica-mode . [(20130204 2253) nil "Major mode API client for status.net open microblogging" tar ((:commit . "cf9183ee11ac922e85c7c908f04e2d00b03111b3") (:keywords "identica" "web") (:authors ("Gabriel Saldana" . "gsaldana@gmail.com")) (:maintainer "Gabriel Saldana" . "gsaldana@gmail.com") (:url . "http://blog.gabrielsaldana.org/identica-mode-for-emacs/"))]) (idea-darkula-theme . [(20160416 2303) ((emacs (24 1))) "Color theme based on IntelliJ IDEA Darkula color theme" single ((:commit . "52602d9b91883e1f297d000951aeed48bf60176e") (:keywords "themes") (:authors ("Alexey Veretennikov <alexey dot veretennikov at gmail dot com>")) (:maintainer "Alexey Veretennikov <alexey dot veretennikov at gmail dot com>") (:url . "http://github.com/fourier/idea-darkula-theme"))]) (id-manager . [(20170320 1246) nil "id-password management" single ((:commit . "14ebc35db298aac4dedc8aa188bc46bacab81f3b") (:keywords "password" "convenience") (:authors ("SAKURAI Masashi <m.sakurai atmark kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai atmark kiwanami.net>"))]) (ibuffer-vc . [(20181025 324) ((cl-lib (0 2))) "Group ibuffer's list by VC project, or show VC status" single ((:commit . "1a2dcdbaf1d314620b0512ce32e27dbcc6916e73") (:keywords "themes") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "http://github.com/purcell/ibuffer-vc"))]) (ibuffer-tramp . [(20151118 1739) nil "Group ibuffer's list by TRAMP connection" single ((:commit . "bcad0bda3a67f55d1be936bf8fa9ef735fe1e3f3") (:keywords "convenience") (:authors ("Svend Sorensen" . "svend@ciffer.net")) (:maintainer "Svend Sorensen" . "svend@ciffer.net") (:url . "http://github.com/svend/ibuffer-tramp"))]) (ibuffer-sidebar . [(20180219 131) ((emacs (25 1))) "Sidebar for `ibuffer'" single ((:commit . "7ddf1b5a158b33e9a7d3fe5dad7ea626a464d2bc") (:keywords "ibuffer" "files" "tools") (:authors ("James Nguyen" . "james@jojojames.com")) (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/ibuffer-sidebar"))]) (ibuffer-rcirc . [(20150215 2118) ((cl-lib (0 2))) "Ibuffer integration for rcirc" single ((:commit . "8a4409b1c679d65c819dee4085faf929840e79f8") (:keywords "buffer" "convenience" "comm") (:authors ("Fabián Ezequiel Gallina" . "fgallina@gnu.org")) (:maintainer "Fabián Ezequiel Gallina" . "fgallina@gnu.org") (:url . "https://github.com/fgallina/ibuffer-rcirc"))]) (ibuffer-projectile . [(20180325 325) ((projectile (0 11 0))) "Group ibuffer's list by projectile root" single ((:commit . "1e89bfa7cae0629d29f24af3d81774b88b3cede0") (:keywords "themes") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "http://github.com/purcell/ibuffer-projectile"))]) (ibuffer-git . [(20110508 731) nil "show git status in ibuffer column" single ((:commit . "d326319c05ddb8280885b31f9094040c1b365876") (:keywords "convenience") (:authors ("Jonathan Rockway" . "jon@jrock.us")) (:maintainer "Jonathan Rockway" . "jon@jrock.us"))]) (iasm-mode . [(20171023 1422) nil "interactive assembly major mode." single ((:commit . "abbec7f308f9ce97beeb57e459fff35f559b4c18") (:keywords ":" "tools") (:authors ("Rémi Attab" . "remi.attab@gmail.com")) (:maintainer "Rémi Attab" . "remi.attab@gmail.com") (:url . "https://github.com/RAttab/iasm-mode"))]) (ialign . [(20181002 1655) ((emacs (24 4))) "visual align-regexp" single ((:commit . "2504a9e8c6c5ce6b470541955154af31a8f9d3ca") (:keywords "tools" "editing" "align" "interactive") (:authors ("Michał Krzywkowski" . "k.michal@zoho.com")) (:maintainer "Michał Krzywkowski" . "k.michal@zoho.com") (:url . "https://github.com/mkcms/interactive-align"))]) (i3wm . [(20170822 1438) nil "i3wm integration library" single ((:commit . "71391dc61063fee77ad174f3b2ca25c60b41009e") (:keywords "convenience" "extensions") (:authors ("Samuel W. Flint" . "swflint@flintfam.org")) (:maintainer "Samuel W. Flint" . "swflint@flintfam.org") (:url . "https://git.flintfam.org/swf-projects/emacs-i3"))]) (i2b2-mode . [(20140710 104) nil "Highlights corresponding PHI data in the text portion of an i2b2 XML Document." single ((:commit . "db10efcfc8bed369a516bbf7526ede41f98cb95a") (:keywords "xml" "phi" "i2b2" "deidi2b2") (:authors ("Dan LaManna" . "dan.lamanna@gmail.com")) (:maintainer "Dan LaManna" . "dan.lamanna@gmail.com"))]) (hydra . [(20181110 1740) ((cl-lib (0 5))) "Make bindings that stick around." tar ((:commit . "5c5b9ca3262594c92f8f73c98db5ed0f1efd0319") (:keywords "bindings") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/hydra"))]) (hyde . [(20160508 308) nil "Major mode to help create and manage Jekyll blogs" tar ((:commit . "a8cd6ed00ecd8d7de0ded2f4867015b412b15b76"))]) (hydandata-light-theme . [(20160816 418) nil "A light color theme that is easy on your eyes" single ((:commit . "0fbc91678ef65e1f65d7ec6792ff0b2f104d16a9") (:keywords "color-theme" "theme") (:authors ("David Chkhikvadze" . "david.chk@outlook.com")) (:maintainer "David Chkhikvadze" . "david.chk@outlook.com"))]) (hyai . [(20170301 1447) ((cl-lib (0 5)) (emacs (24))) "Haskell Yet Another Indentation" single ((:commit . "e1cd115c19225bbe0e1183d9a8c289eadaeb37b6") (:authors ("Iku Iwasa" . "iku.iwasa@gmail.com")) (:maintainer "Iku Iwasa" . "iku.iwasa@gmail.com") (:url . "https://github.com/iquiw/hyai"))]) (hy-mode . [(20180702 1940) ((dash (2 13 0)) (dash-functional (1 2 0)) (s (1 11 0)) (emacs (24))) "Major mode for Hylang" single ((:commit . "71a12a9208c4b87859bcbb6978e7915dd518e8dd") (:keywords "languages" "lisp" "python") (:url . "http://github.com/hylang/hy-mode"))]) (hungry-delete . [(20170412 102) nil "hungry delete minor mode" single ((:commit . "0434458d3f6b2b585f332271feaa054bf4ec96d7") (:authors ("Nathaniel Flath" . "flat0103@gmail.com")) (:maintainer "Nathaniel Flath" . "flat0103@gmail.com") (:url . "http://github.com/nflath/hungry-delete"))]) (hungarian-holidays . [(20161020 1138) nil "Adds a list of Hungarian public holidays to Emacs calendar" single ((:commit . "653108769279499d84a79267c90e640d98823872") (:keywords "calendar") (:authors ("Gergely Polonkai" . "gergely@polonkai.eu")) (:maintainer "Gergely Polonkai" . "gergely@polonkai.eu"))]) (hugsql-ghosts . [(20180425 1129) ((s (1 9 0)) (dash (2 10 0)) (cider (0 14 0))) "Display hugsql defqueries in clojure code as an overlay." single ((:commit . "f3ebc60c66204ad39058cb84eb4bd5facce091df") (:authors ("Roland Kaercher" . "roland.kaercher@gmail.com")) (:maintainer "Roland Kaercher" . "roland.kaercher@gmail.com") (:url . "https://github.com/rkaercher/hugsql-ghosts"))]) (httprepl . [(20141101 1734) ((s (1 9 0)) (dash (2 5 0)) (emacs (24))) "An HTTP REPL" single ((:commit . "cfa3693267a8ed1c96a86a126823f37dbfe077d8") (:keywords "http" "repl") (:authors ("Greg Sexton" . "gregsexton@gmail.com")) (:maintainer "Greg Sexton" . "gregsexton@gmail.com") (:url . "https://github.com/gregsexton/httprepl.el"))]) (httpcode . [(20121002 345) nil "explains the meaning of an HTTP status code" single ((:commit . "a45e735082b09477cd704a99294d336cdbeb12ba") (:authors ("Ruslan Spivak" . "ruslan.spivak@gmail.com")) (:maintainer "Ruslan Spivak" . "ruslan.spivak@gmail.com") (:url . "http://github.com/rspivak/httpcode.el"))]) (http-twiddle . [(20160801 1911) nil "send & twiddle & resend HTTP requests" single ((:commit . "4d0c73b7dcbde8b483d4f3a75c49c74d2fe3ca45") (:keywords "http" "rest" "soap") (:authors ("Luke Gorrie" . "luke@synap.se")) (:maintainer "Hasan Veldstra" . "h@vidiowiki.com") (:url . "https://github.com/hassy/http-twiddle/blob/master/http-twiddle.el"))]) (http-post-simple . [(20170715 940) nil "HTTP POST requests using the url library" single ((:commit . "f53697fca278c741051aeb668b00466b5e0fd3fe") (:keywords "comm" "data" "processes" "hypermedia") (:authors ("Tom Schutzer-Weissmann")) (:maintainer "Tom Schutzer-Weissmann"))]) (http . [(20181008 2121) ((emacs (24 4)) (request (0 2 0)) (edit-indirect (0 1 4))) "Yet another HTTP client" single ((:commit . "1bbfff5994e16ffc185c4ac28d792cb040da3351") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/http.el"))]) (htmlize . [(20180923 1829) nil "Convert buffer text and decorations to HTML." single ((:commit . "8db0aa6aab77475a732b7363f0d57bd3933c18fd") (:keywords "hypermedia" "extensions") (:authors ("Hrvoje Niksic" . "hniksic@gmail.com")) (:maintainer "Hrvoje Niksic" . "hniksic@gmail.com"))]) (html2org . [(20170418 501) ((emacs (24 4))) "Convert html to org format text" single ((:commit . "6904aed40259ad8afccff079ebd8a07bff319ebc") (:keywords "convenience" "html" "org") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "http://github.com/lujun9972/html2org.el"))]) (html-to-markdown . [(20151105 840) ((cl-lib (0 5))) "HTML to Markdown converter written in Emacs-lisp." single ((:commit . "60c5498c801be186478cf7c05be05b4430c4a144") (:keywords "tools" "wp" "languages") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Bruce-Connor/html-to-markdown"))]) (html-to-hiccup . [(20161028 1401) ((emacs (25 1)) (dash (2 13 0)) (s (1 10 0))) "Convert HTML to Hiccup syntax" single ((:commit . "99217a5058626d253ed8ada51a7642071fe54ba5") (:keywords "html" "hiccup" "clojure") (:authors ("Arne Brasseur" . "arne@arnebrasseur.net")) (:maintainer "Arne Brasseur" . "arne@arnebrasseur.net") (:url . "https://github.com/plexus/html-to-hiccup"))]) (html-script-src . [(20120403 1815) nil "Insert <script src=\"..\"> for popular JavaScript libraries" single ((:commit . "66460f8ab1b24656e6f3ce5bd50cff6a81be8422") (:keywords "tools" "convenience") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/html-script-src"))]) (html-check-frag . [(20160131 535) ((emacs (24 3))) "Check html-fragments" single ((:commit . "feb89765eafd69dfcf07afeebded8985dc456e7c") (:keywords "html") (:authors ("Tobias.Zawada" . "i@tn-home.de")) (:maintainer "Tobias.Zawada" . "i@tn-home.de"))]) (ht . [(20180129 2234) ((dash (2 12 0))) "The missing hash table library for Emacs" single ((:commit . "5a665d00dc8fda77bad2a43277d8809c23e46ab8") (:keywords "hash table" "hash map" "hash") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (howm . [(20180929 1214) ((cl-lib (0 5))) "Wiki-like note-taking tool" tar ((:commit . "f707233a99f425d67ddb86b197edeaa3f03a280d") (:authors ("HIRAOKA Kazuyuki" . "khi@users.osdn.me")) (:maintainer "HIRAOKA Kazuyuki" . "khi@users.osdn.me") (:url . "https://howm.osdn.jp"))]) (howdoi . [(20150204 43) nil "Instant coding answers via Emacs." tar ((:commit . "5fbf7069ee160c597a328e5ce5fb32920e1ca88f"))]) (how-many-lines-in-project . [(20140807 442) nil "Calculate how many lines are there in your project." single ((:commit . "8a37ef885d004fe2ce231bfe05ed4867c6192d9b") (:keywords "project" "convenience") (:authors ("Wei Zhao" . "kaihaosw@gmail.com")) (:maintainer "Wei Zhao" . "kaihaosw@gmail.com"))]) (hound . [(20170627 1959) ((request (0 2 0)) (cl-lib (0 5))) "Display hound search results in a compilation window" single ((:commit . "0c5a250ef82870dca737a429b6e9b9db93874ed3") (:authors ("Ryan Young")) (:maintainer "Ryan Young"))]) (horoscope . [(20180409 641) ((emacs (24))) "generate horoscopes." single ((:commit . "f4c683e991adce0a8f9023f15050f306f9b9a9ed") (:keywords "extensions" "games") (:authors ("Bob Manson" . "manson@cygnus.com")) (:maintainer "Noah Friedman" . "friedman@prep.ai.mit.edu") (:url . "https://github.com/mschuldt/horoscope.el"))]) (hookify . [(20141216 2209) ((s (1 9 0)) (dash (1 5 0))) "Interactive commands to create temporary hooks" single ((:commit . "21baae7393b07257de5796402fde0ca72fb00d77") (:keywords "hook" "convenience") (:authors ("Philippe Vaucher" . "philippe.vaucher@gmail.com")) (:maintainer "Philippe Vaucher" . "philippe.vaucher@gmail.com") (:url . "https://github.com/Silex/hookify"))]) (honcho . [(20180707 24) ((emacs (25 1)) (sudo-edit (0 1))) "Run and manage long-running services" single ((:commit . "f6a89a27e255b3ecb1f0b13058933558b1f0c6fb") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/honcho.el"))]) (homebrew-mode . [(20160615 1320) ((emacs (24 4)) (inf-ruby (2 4 0)) (dash (1 2 0))) "minor mode for editing Homebrew formulae" single ((:commit . "d422307aee2f897d1a92e3b959c3214bc54cbe38") (:keywords "homebrew" "brew" "ruby") (:authors ("Alex Dunn" . "dunn.alex@gmail.com")) (:maintainer "Alex Dunn" . "dunn.alex@gmail.com") (:url . "https://github.com/dunn/homebrew-mode"))]) (home-end . [(20180817 855) ((emacs (24 3)) (keypress-multi-event (1 0))) "Smart multi-purpose home / end keys" single ((:commit . "359201766f41307958b6963f2a6b8cd8c7e64158") (:keywords "abbrev" "convenience" "wp" "keyboard") (:authors ("Boruch Baum" . "boruch_baum@gmx.com")) (:maintainer "Boruch Baum" . "boruch_baum@gmx.com") (:url . "https://www.github.com/Boruch_Baum/emacs-home-end"))]) (holiday-pascha-etc . [(20160822 58) nil "Eastern Christian analog to holiday-easter-etc" single ((:commit . "eb198656f63cb8679fb0e3a8248782df071a0f3c") (:authors ("Mark A. Hershberger" . "mah@everybody.org")) (:maintainer "Mark A. Hershberger" . "mah@everybody.org") (:url . "http://github.com/hexmode/holiday-pascha-etc"))]) (hoa-pp-mode . [(20151027 736) ((emacs (24 1)) (names (20150723 0))) "Major mode for Hoa PP grammars" single ((:commit . "925b79930a3f4377b0fb2a36b3c6d5566d4b9a8e") (:keywords "php" "hoa") (:authors ("Steven Rémot")) (:maintainer "Steven Rémot") (:url . "https://github.com/hoaproject/Contributions-Emacs-Pp"))]) (hoa-mode . [(20151203 1650) nil "Major mode for the Hanoi Omega Automata format" single ((:commit . "3c608e15b655d2375c5f81323ac561c7848dc029") (:keywords "major-mode" "automata" "convenience") (:authors ("Alexandre Duret-Lutz" . "adl@lrde.epita.fr")) (:maintainer "Alexandre Duret-Lutz" . "adl@lrde.epita.fr") (:url . "https://gitlab.lrde.epita.fr/spot/emacs-modes"))]) (hmac . [(20180429 2010) ((cl-lib (0 5)) (emacs (25))) "hash-based message authentication code" single ((:commit . "30132cd3fee7d3d91a9f04709d49ca0dcb96d565") (:authors ("Sean McAfee")) (:maintainer "Sean McAfee") (:url . "https://github.com/grimnebulin/emacs-hmac"))]) (hlinum . [(20180422 412) ((cl-lib (0 2))) "Extension for linum.el to highlight current line number" single ((:commit . "f17360fe93de6df99a05b4b64b0a1ca4ee45abb6") (:keywords "convenience" "extensions") (:authors ("Tomoya Tanjo" . "ttanjo@gmail.com")) (:maintainer "Tomoya Tanjo" . "ttanjo@gmail.com") (:url . "https://github.com/tom-tan/hlinum-mode/"))]) (hlint-refactor . [(20170818 448) nil "Apply HLint suggestions" single ((:commit . "92c69aa01c65968e86c15db087bb1ea785e4736c") (:keywords "haskell" "refactor") (:url . "https://github.com/mpickering/hlint-refactor-mode"))]) (hledger-mode . [(20180821 1433) ((emacs (24 4)) (popup (0 5 3)) (async (1 9)) (htmlize (1 47))) "A mode for writing journal entries for hledger." tar ((:commit . "af51c0a7a0952c244e5c6bb818ab4ce3b9806609") (:keywords "data") (:authors ("Narendra Joshi" . "narendraj9@gmail.com")) (:maintainer "Narendra Joshi" . "narendraj9@gmail.com") (:url . "https://github.com/narendraj9/hledger-mode.git"))]) (hl-todo . [(20181031 1909) nil "highlight TODO and similar keywords" single ((:commit . "24b9925b1b2c7ad6bf7b66800395f74abf035c5f") (:keywords "convenience") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/hl-todo"))]) (hl-sentence . [(20171018 1519) nil "highlight a sentence based on customizable face" single ((:commit . "86ae38d3103bd20da5485cbdd59dfbd396c45ee4") (:keywords "highlighting") (:authors ("Donald Ephraim Curtis" . "dcurtis@milkbox.net")) (:maintainer "Donald Ephraim Curtis" . "dcurtis@milkbox.net") (:url . "http://github.com/milkypostman/hl-sentence"))]) (hl-indent . [(20170429 2104) ((emacs (24)) (cl-lib (0 5))) "Highlight irregular indentation." single ((:commit . "bdb2e0177a7c8b29af26998e688b856adc6ded93") (:keywords "convenience" "faces") (:authors ("Kirill Ignatiev <github.com/ikirill>")) (:maintainer "Kirill Ignatiev <github.com/ikirill>") (:url . "https://github.com/ikirill/hl-indent"))]) (hl-anything . [(20160422 1708) ((emacs (24 3))) "Highlight symbols, selections, enclosing parens and more." tar ((:commit . "8696bc55a8cba408f0fc83a907a9ec529d79e558") (:authors ("boyw165")) (:maintainer "boyw165"))]) (hiwin . [(20150825 827) nil "Visible active window mode." single ((:commit . "6ee8ed051405653bd9b7332d7e9fbb591d954051") (:keywords "faces" "editing" "emulating") (:authors ("k.sugita")) (:maintainer "k.sugita"))]) (hive . [(20131217 1512) ((sql (3 0))) "Hive SQL mode extension" single ((:commit . "11b5172e081ad8079fc78758bef6f306f82ae32b") (:keywords "sql" "hive") (:authors ("Roman Scherer" . "roman@burningswell.com")) (:maintainer "Roman Scherer" . "roman@burningswell.com"))]) (historyf . [(20151124 159) nil "file history library like browser" single ((:commit . "196c058ceb092fdd56b0e4ce85b7e714d6f72224") (:authors ("k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>")) (:maintainer "k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>") (:url . "https://github.com/k1LoW/emacs-historyf"))]) (history . [(20160821 1602) ((emacs (24 3))) "History utility for source code navigation" tar ((:commit . "5317663fb45bbd5e96d258cb0807dcc266ce67ff") (:authors ("boyw165")) (:maintainer "boyw165") (:url . "https://github.com/boyw165/history"))]) (historian . [(20180619 1923) ((emacs (24 4))) "Persistently store selected minibuffer candidates" single ((:commit . "6be869f585b854eb849303c452ab4f91dab04fa9") (:keywords "convenience") (:authors ("PythonNut" . "pythonnut@pythonnut.com")) (:maintainer "PythonNut" . "pythonnut@pythonnut.com") (:url . "https://github.com/PythonNut/historian.el"))]) (hippie-namespace . [(20140508 2041) nil "Special treatment for namespace prefixes in hippie-expand" single ((:commit . "d0d0f15c67ab8bef5e9d1e29a89ecd3613a60b49") (:keywords "convenience" "lisp" "tools" "completion") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/hippie-namespace"))]) (hippie-expand-slime . [(20170723 146) nil "Hook slime's completion into hippie-expand" single ((:commit . "39bbae94896a62854d31754debdfae71d35fec62") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/hippie-expand-slime"))]) (hippie-exp-ext . [(20160502 2326) nil "Extension of hippie-expand" single ((:commit . "4eda13f90da51ab217d024701f4c30f91ffcb90e") (:keywords "abbrev" "convenience" "completions" "hippie-expand") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/emacs/download/hippie-exp-ext.el"))]) (hindent . [(20180518 902) ((cl-lib (0 5))) "Indent haskell code using the \"hindent\" program" single ((:commit . "ffe03701050d159387c06103ecaf8147716d5cb8") (:authors ("Chris Done" . "chrisdone@gmail.com")) (:maintainer "Chris Done" . "chrisdone@gmail.com") (:url . "https://github.com/chrisdone/hindent"))]) (himp . [(20181002 1654) ((emacs (24 3)) (vimish-fold (0 1 0))) "Automatically hide imports/documentation" single ((:commit . "3975c76cc9e7c6bfe7fe04ad95d8659cfed46b58") (:keywords "convenience" "tools") (:authors ("Michał Krzywkowski" . "k.michal@zoho.com")) (:maintainer "Michał Krzywkowski" . "k.michal@zoho.com") (:url . "http://github.com/mkcms/himp/"))]) (highlight2clipboard . [(20151020 1840) ((htmlize (1 47))) "Copy text to clipboard with highlighting." tar ((:commit . "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15") (:keywords "tools") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren"))]) (highlight-unique-symbol . [(20130612 542) ((deferred (0 3 2))) "highlight symbols which not appear in the repository" single ((:commit . "4141bf86a94e30d94d9af9c29d40b16886226e1c") (:authors ("hitode909" . "hitode909@gmail.com")) (:maintainer "hitode909" . "hitode909@gmail.com") (:url . "https://github.com/hitode909/emacs-highlight-unique-symbol"))]) (highlight-thing . [(20170919 1404) nil "Minimalistic minor mode to highlight current thing under point." single ((:commit . "4eadd178175772fb04ae50e1199d797a6375ad4d") (:keywords "highlight" "thing" "symbol") (:authors ("Felix Geller" . "fgeller@gmail.com")) (:maintainer "Felix Geller" . "fgeller@gmail.com") (:url . "https://github.com/fgeller/highlight-thing.el"))]) (highlight-symbol . [(20160102 2009) nil "automatic and manual symbol highlighting" single ((:commit . "7a789c779648c55b16e43278e51be5898c121b3a") (:keywords "faces" "matching") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/highlight-symbol/"))]) (highlight-stages . [(20161212 1457) nil "highlight staged (quasi-quoted) expressions" single ((:commit . "29cbc5b78261916da042ddb107420083da49b271") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (highlight-refontification . [(20170211 2024) nil "Visualize font-lock refontification." single ((:commit . "32632897d88c4611fadb08517ca00ef5cbc989b6") (:keywords "faces" "tools") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/highlight-refontification"))]) (highlight-quoted . [(20140916 1822) ((emacs (24))) "Highlight Lisp quotes and quoted symbols" single ((:commit . "24103478158cd19fbcfb4339a3f1fa1f054f1469") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/highlight-quoted"))]) (highlight-parentheses . [(20180704 1102) nil "highlight surrounding parentheses" single ((:commit . "f0bd58c8dadd2db703b7bfd09e911b5fda05b3df") (:keywords "faces" "matching") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Tassilo Horn" . "tsdh@gnu.org") (:url . "https://github.com/tsdh/highlight-parentheses.el"))]) (highlight-operators . [(20170213 2220) nil "a face for operators in programming modes" single ((:authors ("Jonathan Kotta" . "jpkotta@gmail.com")) (:maintainer "Jonathan Kotta" . "jpkotta@gmail.com"))]) (highlight-numbers . [(20181013 1744) ((emacs (24)) (parent-mode (2 0))) "Highlight numbers in source code" single ((:commit . "8b4744c7f46c72b1d3d599d4fb75ef8183dee307") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/highlight-numbers"))]) (highlight-leading-spaces . [(20151216 1222) ((emacs (24 4))) "Highlight leading spaces" single ((:commit . "840db19d863dd97993fd9f893f5be501627b6354") (:authors ("Thomas Winant" . "dewinant@gmail.com")) (:maintainer "Thomas Winant" . "dewinant@gmail.com") (:url . "https://github.com/mrBliss/highlight-leading-spaces"))]) (highlight-indentation . [(20171218 937) nil "Minor modes for highlighting indentation" single ((:commit . "35e2c1d4f8f368685893128f77f90454cb9c2708") (:authors ("Anton Johansson" . "anton.johansson@gmail.com")) (:maintainer "Anton Johansson" . "anton.johansson@gmail.com") (:url . "https://github.com/antonj/Highlight-Indentation-for-Emacs"))]) (highlight-indent-guides . [(20181106 1821) ((emacs (24))) "Minor mode to highlight indentation" single ((:commit . "fc99ee753ac9d53ce91fb032f97430a551e04466") (:authors ("DarthFennec" . "darthfennec@derpymail.org")) (:maintainer "DarthFennec" . "darthfennec@derpymail.org") (:url . "https://github.com/DarthFennec/highlight-indent-guides"))]) (highlight-function-calls . [(20170908 500) ((emacs (24 4))) "Highlight function/macro calls" single ((:commit . "f7a1eaf95fc64cc0db4d0567f9ff79ec4ae04787") (:keywords "faces" "highlighting") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/highlight-function-calls"))]) (highlight-escape-sequences . [(20171117 1237) nil "Highlight escape sequences" single ((:commit . "08d846a7aa748209d65fecead2b6a766c3e5cb41") (:keywords "convenience") (:authors ("Dmitry Gutov" . "dgutov@yandex.ru") ("Pavel Matcula" . "dev.plvlml@gmail.com")) (:maintainer "Dmitry Gutov" . "dgutov@yandex.ru") (:url . "https://github.com/dgutov/highlight-escape-sequences"))]) (highlight-doxygen . [(20180829 1818) nil "Highlight Doxygen comments" single ((:commit . "53f2250018725fa19548e1771ee79fcc23641694") (:keywords "faces") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/highlight-doxygen"))]) (highlight-defined . [(20181106 1718) ((emacs (24))) "Syntax highlighting of known Elisp symbols" single ((:commit . "8e05be23e555ab05edc6fb188f5ce28ef495c946") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/highlight-defined"))]) (highlight-context-line . [(20170319 2142) nil "Improve orientation when scrolling" single ((:commit . "716e10a0c7b703b5f1d9c6ca1481524a4d06b7b8") (:keywords "faces" "services" "user") (:authors ("Stefan Kamphausen <www.skamphausen.de>")) (:maintainer "Stefan Kamphausen <www.skamphausen.de>") (:url . "https://github.com/ska2342/highlight-context-line/"))]) (highlight-blocks . [(20151201 1615) ((emacs (24))) "Highlight the blocks point is in" single ((:commit . "9c4240a5d16008db430d1a81c76dad474d3deb0c") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/highlight-blocks"))]) (highlight . [(20181002 1151) nil "Highlighting commands." single ((:commit . "ea733e17884aeae19172407e20559fc693fdd3a7") (:keywords "faces" "help" "local") (:authors ("Drew Adams")) (:maintainer nil . "Drew Adams (concat \"drew.adams\" \"@\" \"oracle\" \".com\")") (:url . "https://www.emacswiki.org/emacs/download/highlight.el"))]) (hierarchy . [(20171221 1151) ((emacs (25 1))) "Library to create and display hierarchy structures" single ((:commit . "06f21d3fc16c44c1fa45dc9c91d10100b4db9355") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://github.com/DamienCassou/hierarchy"))]) (hideshow-org . [(20120223 2250) nil "Provides org-mode like hide and show for hideshow.el" single ((:commit . "16419e52e6cdd2f46f755144c0ab11ce00d1a626") (:keywords "c" "c++" "java" "lisp" "tools" "editing" "comments" "blocks" "hiding" "outlines" "org-mode") (:authors ("Shane Celis <shane (at) gnufoo (dot) org>")) (:maintainer "Shane Celis <shane (at) gnufoo (dot) org>"))]) (hide-mode-line . [(20180302 1910) ((emacs (24 4))) "minor mode that hides/masks your modeline" single ((:commit . "86b9057391edad75467261c2e579603567e608f9") (:keywords "frames" "mode-line") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/emacs-hide-mode-line"))]) (hide-lines . [(20151127 1840) nil "Commands for hiding lines based on a regexp" single ((:commit . "331122bf19361130351cfe55968c2a7820329eb3") (:keywords "convenience") (:authors ("Mark Hulme-Jones <ture at plig cucumber dot net>")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/hide-lines"))]) (hi2 . [(20141005 1931) nil "indentation module for Haskell Mode" single ((:commit . "c9d199727b5cdcb9e36a972b38131ce4611fd6c8") (:keywords "indentation" "haskell") (:authors ("Gergely Risko" . "gergely@risko.hu")) (:maintainer "Gergely Risko" . "gergely@risko.hu") (:url . "https://github.com/errge/hi2"))]) (hgrc-mode . [(20150409 2043) nil "major mode for editing hgrc files" single ((:commit . "314e8320b82cc1ce74b1bd372f296252e7a23090") (:keywords "convenience" "vc" "hg") (:authors ("Omair Majid" . "omair.majid@gmail.com")) (:maintainer "Omair Majid" . "omair.majid@gmail.com") (:url . "http://github.com/omajid/hgrc-mode"))]) (hgignore-mode . [(20160501 7) nil "a major mode for editing hgignore files" single ((:commit . "7aa9f3b8a9c610dbd80b952061b40194e1d9c5bd") (:keywords "convenience" "vc" "hg") (:authors ("Omair Majid" . "omair.majid@gmail.com")) (:maintainer "Omair Majid" . "omair.majid@gmail.com") (:url . "http://github.com/omajid/hgignore-mode"))]) (hfst-mode . [(20160708 1202) nil "major mode for editing HFST files" single ((:commit . "ac1bb9dd92545d3e7fdc05c83996c227cc15c6b8") (:keywords "languages") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org") (:url . "http://wiki.apertium.org/wiki/Emacs"))]) (hexo . [(20180815 219) ((emacs (24 3))) "Major mode & tools for Hexo" single ((:commit . "6bca18f911f6b2cd5c055ed73ddec98c385f9f86") (:keywords "tools" "hexo") (:authors ("Ono Hiroko (kuanyui)" . "azazabc123@gmail.com")) (:maintainer "Ono Hiroko (kuanyui)" . "azazabc123@gmail.com") (:url . "https://github.com/kuanyui/hexo.el"))]) (heroku-theme . [(20150523 219) nil "Heroku color theme" single ((:commit . "8083643fe92ec3a1c3eb82f1b8dc2236c9c9691d") (:authors ("Jonathan Chu" . "me@jonathanchu.is")) (:maintainer "Jonathan Chu" . "me@jonathanchu.is") (:url . "https://github.com/jonathanchu/color-theme-heroku"))]) (heroku . [(20120629 1813) nil "Interface to Heroku apps." single ((:commit . "92af1c073b593c4def99c8777c869992aa4d0b3a") (:keywords "convenience" "api" "database") (:authors ("Phil Hagelberg" . "technomancy@gmail.com")) (:maintainer "Phil Hagelberg" . "technomancy@gmail.com") (:url . "https://github.com/technomancy/heroku.el"))]) (hemisu-theme . [(20130508 1844) nil "Hemisu for Emacs." tar ((:commit . "5c206561aa2c844ecdf3e3b672c3235e559ddd7f") (:authors ("Andrzej Sliwa")) (:maintainer "Andrzej Sliwa") (:url . "http://github/anrzejsliwa/django-theme"))]) (hemera-theme . [(20180916 924) ((emacs (24))) "Light theme" single ((:commit . "b67c902b210b37b00cac68726822404543147ba8") (:keywords "themes" "light-theme") (:authors ("Guido Schmidt")) (:maintainer "Guido Schmidt" . "guido.schmidt.2912@gmail.com") (:url . "https://github.com/GuidoSchmidt/emacs-hemera-theme"))]) (helpful . [(20181031 2008) ((emacs (25 1)) (dash (2 12 0)) (dash-functional (1 2 0)) (s (1 11 0)) (f (0 20 0)) (elisp-refs (1 2)) (shut-up (0 3))) "a better *help* buffer" single ((:commit . "039345ef60b4722d050c94ab1978540137df35f9") (:keywords "help" "lisp") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk") (:url . "https://github.com/Wilfred/helpful"))]) (helm-zhihu-daily . [(20160625 1145) ((helm (1 0)) (cl-lib (0 5)) (emacs (24 4))) "Helm interface for 知乎日报 (http://daily.zhihu.com)" single ((:commit . "be27dcc6be1eb97663b65581a9a5c0fc81cfaba7") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/helm-zhihu-daily"))]) (helm-z . [(20171204 325) ((helm (1 0))) "Show z directory list with helm.el support." single ((:commit . "37212220bebea8b9c238cb1bbacd8332b7f26c03") (:authors ("yynozk" . "yynozk@gmail.com")) (:maintainer "yynozk" . "yynozk@gmail.com") (:url . "https://github.com/yynozk/helm-z"))]) (helm-youtube . [(20161114 248) ((request (0 2 0)) (helm (2 3 1)) (cl-lib (0 5))) "Query YouTube and play videos in your browser" single ((:commit . "202c27fc3b54927611e9d9c764465e1b42ef7e41") (:keywords "youtube" "multimedia") (:authors ("Maximilian Roquemore" . "maximus12793@gmail.com")) (:maintainer "Maximilian Roquemore" . "maximus12793@gmail.com") (:url . "https://github.com/maximus12793/helm-youtube"))]) (helm-xref . [(20180528 1516) ((emacs (25 1)) (helm (1 9 4))) "Helm interface for xref results" single ((:commit . "6f7e8eeec5cc4db64a76ba242c0f2f61e7ee1e46") (:authors ("Fritz Stelzer" . "brotzeitmacher@gmail.com")) (:maintainer "Fritz Stelzer" . "brotzeitmacher@gmail.com") (:url . "https://github.com/brotzeitmacher/helm-xref"))]) (helm-xcdoc . [(20160116 1018) ((helm (1 5)) (emacs (24 4))) "Search Xcode Document by docsetutil and eww with helm interface" single ((:commit . "a85612149a6d8e18ab309b3db2d222ce39c42049") (:authors ("Ryo Fujimoto" . "fujimisakri@gmail.com")) (:maintainer "Ryo Fujimoto" . "fujimisakri@gmail.com") (:url . "https://github.com/fujimisakari/emacs-helm-xcdoc"))]) (helm-wordnet . [(20160128 1507) ((emacs (24)) (helm (1 7 0)) (cl-lib (0 5))) "Helm interface to local wordnet dictionary" single ((:commit . "a36dbc6fcb570b812870bc1e190f203e0a0042fc") (:keywords "dictionary" "wordnet" "emacs" "elisp" "helm") (:authors ("Raghav Kumar Gautam" . "rgautam@apache.com")) (:maintainer "Raghav Kumar Gautam" . "rgautam@apache.com") (:url . "https://github.com/raghavgautam/helm-wordnet"))]) (helm-w3m . [(20181029 726) ((helm (1 5)) (w3m (0 0)) (cl-lib (0 5)) (emacs (24 1))) "W3m bookmark - helm interface." single ((:commit . "c15d926631198d6d759ec8881837bcca5a64963b"))]) (helm-w32-launcher . [(20141223 2014) ((emacs (24)) (helm (1 6 5)) (cl-lib (0 5))) "Start Menu entry launcher using Helm" tar ((:commit . "3e59ad62b89dd21d334af0203d445a83eb25dc5b") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/helm-w32-launcher"))]) (helm-unicode . [(20180608 1407) ((helm (1 9 8)) (emacs (24 4))) "Helm command for unicode characters." single ((:commit . "fbeb0c5e741a6f462520884b744d43a9acbe1d34"))]) (helm-tramp . [(20180829 709) ((emacs (24 3)) (helm (2 0))) "Tramp helm interface for ssh, docker, vagrant" single ((:commit . "523a902fe69be5f770f79f815630e7e5d4766e9d") (:authors ("Masashı Mıyaura")) (:maintainer "Masashı Mıyaura") (:url . "https://github.com/masasam/emacs-helm-tramp"))]) (helm-themes . [(20160918 545) ((helm-core (2 0)) (emacs (24 4))) "Color theme selection with helm interface" single ((:commit . "1160af42590b0d845a55e65e1e782d9e4027fd6e") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-themes"))]) (helm-tail . [(20180624 903) ((emacs (25 1)) (helm (2 7 0))) "Read recent output from various sources" single ((:commit . "cdbbd9bfb121534a4c089df84325cf776ba2c578") (:keywords "maint" "tools") (:authors ("Akira Komamura" . "akira.komamura@gmail.com")) (:maintainer "Akira Komamura" . "akira.komamura@gmail.com") (:url . "https://github.com/akirak/helm-tail"))]) (helm-systemd . [(20180131 434) ((emacs (24 4)) (helm (1 9 2)) (with-editor (2 5 0))) "helm's systemd interface" single ((:commit . "96f5cd3ee3412539c2f8d145201f47c4f8e53b4f") (:keywords "convenience") (:authors (nil . "<lompik@oriontabArch>")) (:maintainer nil . "<lompik@oriontabArch>"))]) (helm-system-packages . [(20181012 655) ((emacs (24 4)) (helm (2 8 7)) (seq (1 8))) "Helm UI wrapper for system package managers." tar ((:commit . "d25e88c6791fb6166aa3f69693670750e56caa5b") (:keywords "helm" "packages") (:authors ("Pierre Neidhardt" . "mail@ambrevar.xyz")) (:maintainer "Pierre Neidhardt" . "mail@ambrevar.xyz") (:url . "https://github.com/emacs-helm/helm-system-packages"))]) (helm-swoop . [(20180215 1154) ((helm (1 0)) (emacs (24 3))) "Efficiently hopping squeezed lines powered by helm interface" single ((:commit . "c66336b8245ddc51c4206f19c119f1081920985c") (:keywords "helm" "swoop" "inner" "buffer" "search") (:authors ("Shingo Fukuyama - http://fukuyama.co")) (:maintainer "Shingo Fukuyama - http://fukuyama.co") (:url . "https://github.com/ShingoFukuyama/helm-swoop"))]) (helm-sql-connect . [(20170319 1251) ((helm (0 0 0))) "Choose a database to connect to via Helm." single ((:commit . "5aead55b6f8636140945714d8c332b287ab9ef10") (:keywords "tools" "convenience" "comm") (:authors ("Eric Hansen" . "hansen.c.eric@gmail.com")) (:maintainer "Eric Hansen" . "hansen.c.eric@gmail.com") (:url . "https://github.com/eric-hansen/helm-sql-connect"))]) (helm-spotify-plus . [(20180107 1138) ((emacs (24 4)) (helm (2 0 0)) (multi (2 0 1))) "Control Spotify search and select music with Helm." single ((:commit . "895f241f1259891d5c89cd42023f119f9fa121d6") (:authors ("Wanderson Ferreira <https://github.com/wandersoncferreira> and Luis Moneda <https://github.com/lgmoneda>")) (:maintainer "Wanderson Ferreira <https://github.com/wandersoncferreira> and Luis Moneda <https://github.com/lgmoneda>"))]) (helm-spotify . [(20160905 2147) ((helm (0 0 0)) (multi (2 0 0))) "Control Spotify with Helm." single ((:commit . "f7a62d1ff88e3127de9be7cd3e818b0a92268ab3") (:keywords "helm" "spotify") (:authors ("Kris Jenkins" . "krisajenkins@gmail.com")) (:maintainer "Kris Jenkins" . "krisajenkins@gmail.com") (:url . "https://github.com/krisajenkins/helm-spotify"))]) (helm-spaces . [(20161001 1409) ((helm-core (2 2)) (spaces (0 1 0))) "helm sources for spaces" single ((:commit . "877e2b5178926308d6a7c2a37477bb12c33a96d4") (:keywords "helm" "frames" "convenience") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/helm-spaces"))]) (helm-smex . [(20171004 2008) ((emacs (24)) (smex (3 0)) (helm (1 7 7))) "Helm interface for smex" single ((:commit . "2269375dfa452b88b5170d1a5d5849ebb2c1e413") (:keywords "convenience") (:authors ("Peter Vasil" . "mail@petervasil.net")) (:maintainer "Peter Vasil" . "mail@petervasil.net"))]) (helm-slime . [(20181110 934) ((emacs (24)) (helm-core (1 9 8)) (slime (2 18)) (cl-lib (0 5))) "helm-sources and some utilities for SLIME." single ((:commit . "070d024147e1632b7358711b7f8fb77a28dcf265") (:keywords "convenience" "helm" "slime") (:authors ("Takeshi Banse" . "takebi@laafc.net")) (:maintainer "Takeshi Banse" . "takebi@laafc.net") (:url . "https://github.com/emacs-helm/helm-slime"))]) (helm-sheet . [(20130630 1239) ((helm (1 0))) "helm sources for sheet" single ((:commit . "d360b68d0ddb09aa1854e7b2f3cb39caeee26463") (:keywords "helm" "sheet") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/helm-sheet"))]) (helm-selected . [(20171223 210) ((emacs (24 4)) (helm (2 8 6)) (selected (1 1))) "helm extension for selected.el" single ((:commit . "6743ede584571319e4c29204197e9ff6b7ee97cf") (:keywords "extensions" "convenience") (:authors ("Takaaki ISHIKAWA <takaxp at ieee dot org>")) (:maintainer "Takaaki ISHIKAWA <takaxp at ieee dot org>") (:url . "https://github.com/takaxp/helm-selected"))]) (helm-sage . [(20160514 745) ((cl-lib (0 5)) (helm (1 5 6)) (sage-shell-mode (0 1 0))) "A helm extension for sage-shell-mode." single ((:commit . "f14e9281d8f2162df7d8f9c2ad9ad1248a24803b") (:keywords "sage" "math" "helm") (:authors ("Sho Takemori" . "stakemorii@gmail.com")) (:maintainer "Sho Takemori" . "stakemorii@gmail.com") (:url . "https://github.com/stakemori/helm-sage"))]) (helm-safari . [(20160404 324) ((helm (1 9 1)) (emacs (24))) "Browse your Safari bookmarks and history" single ((:commit . "664c7f4488829228eed7e90cd53002e14bec555b") (:keywords "tools") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/helm-safari"))]) (helm-rubygems-org . [(20140826 1156) ((emacs (24)) (helm (1 6 3)) (cl-lib (0 5))) "Use helm to search rubygems.org" single ((:commit . "6aaed984f698cbdf9f9aceb0221404563e28764d") (:keywords "ruby" "rubygems" "gemfile" "helm") (:authors ("Chad Albers" . "calbers@neomantic.com")) (:maintainer "Chad Albers" . "calbers@neomantic.com") (:url . "https://github.com/neomantic/helm-rubygems-org"))]) (helm-rubygems-local . [(20130712 111) ((helm (1 5 3))) "Installed local rubygems find-file for helm" single ((:commit . "289cb33d41c703af9791d6da46b55f070013c2e3") (:authors ("hadashiA" . "dev@hadashikick.jp")) (:maintainer "hadashiA" . "dev@hadashikick.jp") (:url . "https://github.com/f-kubotar/helm-rubygems-local"))]) (helm-rtags . [(20170813 411) ((helm (2 0)) (rtags (2 10))) "A front-end for rtags" single ((:commit . "194cd70d38c3e2e01b9de04d006f94573510aebb") (:authors ("Jan Erik Hanssen" . "jhanssen@gmail.com") ("Anders Bakken" . "agbakken@gmail.com")) (:maintainer "Jan Erik Hanssen" . "jhanssen@gmail.com") (:url . "http://rtags.net"))]) (helm-ros . [(20160812 1752) ((helm (1 9 9)) (xterm-color (1 0)) (cl-lib (0 5))) "Interfaces ROS with helm" single ((:commit . "92b0b215f6a017f0f57f1af15466cc0b2a5a0135") (:keywords "helm" "ros") (:authors ("David Landry" . "davidlandry93@gmail.com")) (:maintainer "David Landry" . "davidlandry93@gmail.com") (:url . "https://www.github.com/davidlandry93/helm-ros"))]) (helm-robe . [(20151209 355) ((helm (1 7 7))) "completing read function for robe" single ((:commit . "6e69543b4ee76c5f8f3f2510c76e6d9aed17a370") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-robe"))]) (helm-rhythmbox . [(20160524 1158) ((helm (1 5 0)) (cl-lib (0 5))) "control Rhythmbox's play queue via Helm" single ((:commit . "c92e1ded34ddd4e62e7e9a558259c232e05193fa") (:authors ("Thomas Winant" . "dewinant@gmail.com")) (:maintainer "Thomas Winant" . "dewinant@gmail.com") (:url . "https://github.com/mrBliss/helm-rhythmbox"))]) (helm-rg . [(20180629 920) ((emacs (25)) (cl-lib (0 5)) (dash (2 13 0)) (helm (2 8 8))) "a helm interface to ripgrep" single ((:commit . "d356a2abb6359d709487ed49414e151627287577") (:keywords "find" "file" "files" "helm" "fast" "rg" "ripgrep" "grep" "search" "match") (:authors ("Danny McClanahan")) (:maintainer "Danny McClanahan") (:url . "https://github.com/cosmicexplorer/helm-rg"))]) (helm-recoll . [(20160731 921) ((helm (1 9 9))) "helm interface for the recoll desktop search tool." single ((:commit . "cc4c4fa9c8f4f99383647baa8512b60523dc8b36") (:keywords "convenience") (:authors ("Thierry Volpiatto <thierry.volpiatto at gmail.com>")) (:maintainer "Thierry Volpiatto <thierry.volpiatto at gmail.com>") (:url . "https://github.com/emacs-helm/helm-recoll"))]) (helm-rdefs . [(20161130 536) ((emacs (24)) (helm (1 6 4))) "rdefs with helm interface" single ((:commit . "cd3a6b3af3015ee58ef30cb7c81c79ebe5fc867b") (:keywords "matching" "tools") (:authors ("Hiroshi Saito" . "monodie@gmail.com")) (:maintainer "Hiroshi Saito" . "monodie@gmail.com") (:url . "https://github.com/saidie/helm-rdefs"))]) (helm-rb . [(20131123 1639) ((helm (1 0)) (helm-ag-r (20131123))) "Search Ruby's method by ag and display helm" tar ((:commit . "4949d646420a9849af234dacdd8eb34a77c662fd") (:keywords "searching" "ruby") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/yuutayamada/helm-rb"))]) (helm-rails . [(20130424 1519) ((helm (1 5 1)) (inflections (1 1))) "Helm extension for Rails projects." single ((:commit . "506d9948d45dfbc575c9c4c0d102c1ad2f511e82") (:keywords "helm" "rails" "git") (:authors ("Adam Sokolnicki" . "adam.sokolnicki@gmail.com")) (:maintainer "Adam Sokolnicki" . "adam.sokolnicki@gmail.com") (:url . "https://github.com/asok/helm-rails"))]) (helm-rage . [(20180118 1532) ((helm (1 9 8)) (emacs (24 4)) (dash (2 13 0)) (s (1 11 0))) "Helm command for rage characters." tar ((:commit . "5d0aefb53d859186181d4bdcfeff7d315339c7b8") (:keywords "helm" "rage" "meme") (:url . "https://github.com/bomgar/helm-rage"))]) (helm-qiita . [(20180301 1435) ((helm (2 8 2))) "Qiita with helm interface" single ((:commit . "3ccb85640bf54491ed3c3c8110d454ae181650dc") (:authors ("Takashi Masuda" . "masutaka.net@gmail.com")) (:maintainer "Takashi Masuda" . "masutaka.net@gmail.com") (:url . "https://github.com/masutaka/emacs-helm-qiita"))]) (helm-pydoc . [(20160918 542) ((helm-core (2 0)) (emacs (24 4))) "pydoc with helm interface" tar ((:commit . "85480a29b56dacde425655bc8f5a597c785afdf5") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-pydoc"))]) (helm-purpose . [(20170114 1636) ((emacs (24)) (helm (1 9 2)) (window-purpose (1 4))) "Helm Interface for Purpose" single ((:commit . "9ff4c21c1e9ebc7afb851b738f815df7343bb287") (:authors ("Bar Magal (2016)")) (:maintainer "Bar Magal (2016)") (:url . "https://github.com/bmag/helm-purpose"))]) (helm-pt . [(20160214 2342) ((helm (1 5 6))) "Helm interface to the platinum searcher" tar ((:commit . "8acc52911dad1ed0c3975f134a468762afe0b76b") (:keywords "helm" "platinum searcher"))]) (helm-prosjekt . [(20140129 717) ((prosjekt (0 3)) (helm (1 5 9))) "Helm integration for prosjekt." single ((:commit . "a864a8be5842223043702395f311e3350c28e9db") (:authors ("Sohail Somani" . "sohail@taggedtype.net")) (:maintainer "Sohail Somani" . "sohail@taggedtype.net") (:url . "https://github.com/abingham/prosjekt"))]) (helm-projectile . [(20180815 1514) ((helm (1 9 9)) (projectile (0 14 0)) (cl-lib (0 3))) "Helm integration for Projectile" single ((:commit . "8a2dbc973548fac89356c11d70f7f474ea1367a5") (:keywords "project" "convenience") (:authors ("Bozhidar Batsov")) (:maintainer "Bozhidar Batsov") (:url . "https://github.com/bbatsov/helm-projectile"))]) (helm-project-persist . [(20151210 1543) ((helm (1 5 2)) (project-persist (0 1 4))) "Helm integration for project-persist package" single ((:commit . "357950fbac18090985a750e40d5d8b10ee9dcd53") (:keywords "project-persist" "project" "helm") (:authors ("Sliim" . "sliim@mailoo.org")) (:maintainer "Sliim" . "sliim@mailoo.org"))]) (helm-proc . [(20161006 305) ((helm (1 6 0))) "Helm interface for managing system processes" tar ((:commit . "576d31c2d74ba3897d56e2acd2b0993f52c2547c"))]) (helm-posframe . [(20180610 1748) ((emacs (26 0)) (posframe (0 1 0)) (helm (0 1))) "Using posframe to show helm window" single ((:commit . "d28f96ea92ee9393658901bb552723db10f40dc3") (:keywords "abbrev" "convenience" "matching" "helm") (:authors ("Feng Shu")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/helm-posframe"))]) (helm-phpunit . [(20160513 853) ((helm (1 9 5)) (phpunit (0 7 0))) "Helm integration for phpunit.el" single ((:commit . "739f26204ad2ba76c25f45e8eab1e5216f7c3518") (:keywords "phpunit" "helm" "php") (:authors ("Eric Hansen" . "hansen.c.eric@gmail.com")) (:maintainer "Eric Hansen" . "hansen.c.eric@gmail.com") (:url . "https://github.com/eric-hansen/phpunit-helm"))]) (helm-perspeen . [(20170228 1345) ((perspeen (0 1 0)) (helm (2 5 0))) "Helm interface for perspeen." single ((:commit . "7fe2922d85608bfa9e18269fc44181428b8849ff") (:keywords "projects" "lisp") (:authors ("Yoshinobu Fujimoto")) (:maintainer "Yoshinobu Fujimoto") (:url . "https://github.com/jimo1001/helm-perspeen"))]) (helm-perldoc . [(20160918 556) ((helm-core (2 0)) (deferred (0 3 1)) (emacs (24 4))) "perldoc with helm interface" tar ((:commit . "1979f9f67814c11ec9498502237c89a5e1153100") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-perldoc"))]) (helm-pass . [(20180607 2348) ((emacs (25)) (helm (0)) (password-store (0)) (auth-source-pass (4 0 0))) "helm interface of pass, the standard Unix password manager" single ((:commit . "fdff8f8f2e2b8a61caed7b6c171624700dbe1346") (:authors ("J. Alexander Branham" . "branham@utexas.edu")) (:maintainer "J. Alexander Branham" . "branham@utexas.edu") (:url . "https://github.com/jabranham/helm-pass"))]) (helm-pages . [(20161121 226) ((helm (1 6 5)) (emacs (24)) (cl-lib (0 5))) "Pages in current buffer as Helm datasource" single ((:commit . "51dcb9374d1df9feaae85e60cfb39b970554ecba") (:keywords "convenience" "helm" "outlines") (:authors ("David Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Christiansen" . "david@davidchristiansen.dk"))]) (helm-orgcard . [(20151001 1524) ((helm-core (1 7 7))) "browse the orgcard by helm" single ((:commit . "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d") (:keywords "convenience" "helm" "org") (:authors ("Yuhei Maeda <yuhei.maeda_at_gmail.com>")) (:maintainer "Yuhei Maeda") (:url . "https://github.com/emacs-jp/helm-orgcard"))]) (helm-org-rifle . [(20180923 2209) ((emacs (24 4)) (dash (2 12)) (f (0 18 1)) (helm (1 9 4)) (s (1 10 0))) "Rifle through your Org files" single ((:commit . "e272fc43b964ef06a2673afd7c341dba87ae9ac4") (:keywords "hypermedia" "outlines") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/helm-org-rifle"))]) (helm-open-github . [(20170220 159) ((emacs (24 4)) (helm-core (1 7 7)) (gh (0 8 2))) "Utilities of Opening Github Page" single ((:commit . "2f03d97552a1233db7694116d5f80ecde7612756") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-open-github"))]) (helm-notmuch . [(20180730 1722) ((helm (1 9 3)) (notmuch (0 21))) "Search emails with Notmuch and Helm" single ((:commit . "9988eb0f787c82c779f2417b5613b9142a5b1c9b") (:keywords "mail") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/helm-notmuch"))]) (helm-nixos-options . [(20151013 2309) ((nixos-options (0 0 1)) (helm (1 5 6))) "Helm Interface for nixos-options" single ((:commit . "45c8d90748304c90e1503c9fa8db0443f3d4bd89") (:keywords "unix") (:authors ("Diego Berrocal" . "cestdiego@gmail.com") ("Travis B. Hartwell" . "nafai@travishartwell.net")) (:maintainer "Diego Berrocal" . "cestdiego@gmail.com") (:url . "http://www.github.com/travisbhartwell/nix-emacs/"))]) (helm-navi . [(20170402 1452) ((emacs (24 4)) (helm (1 9 4)) (navi-mode (2 0)) (s (1 10 0))) "Helm for navi-mode" single ((:commit . "2256591174ff79f889450fdc10822316819d6476") (:keywords "navigation" "outlines") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/emacs-helm/helm-navi"))]) (helm-mu . [(20180513 921) ((helm (1 5 5))) "Helm sources for searching emails and contacts" single ((:commit . "77e6fea24e01481418738421dbcfe28ef1bd63cf") (:authors ("Titus von der Malsburg" . "malsburg@posteo.de")) (:maintainer "Titus von der Malsburg" . "malsburg@posteo.de") (:url . "https://github.com/emacs-helm/helm-mu"))]) (helm-mt . [(20160918 452) ((emacs (24)) (helm (0 0)) (multi-term (0 0)) (cl-lib (0 5))) "helm multi-term management" single ((:commit . "d2bff4100118483bc398c56d0ff095294209265b") (:keywords "helm" "multi-term") (:authors ("Didier Deshommes" . "dfdeshom@gmail.com")) (:maintainer "Didier Deshommes" . "dfdeshom@gmail.com") (:url . "https://github.com/dfdeshom/helm-mt"))]) (helm-mode-manager . [(20151124 938) ((helm (1 5 3))) "Select and toggle major and minor modes with helm" single ((:commit . "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc") (:authors ("istib")) (:maintainer "istib") (:url . "https://github.com/istib/helm-mode-manager"))]) (helm-migemo . [(20151010 356) ((emacs (24 4)) (helm-core (1 7 8)) (migemo (1 9)) (cl-lib (0 5))) "Migemo plug-in for helm" single ((:commit . "66c6a19d07c6a385daefd2090d0709d26b608b4e") (:keywords "matching" "convenience" "tools" "i18n") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "Yuhei Maeda <yuhei.maeda_at_gmail.com>") (:url . "https://github.com/emacs-jp/helm-migemo"))]) (helm-make . [(20181107 2126) ((helm (1 5 3)) (projectile (0 11 0))) "Select a Makefile target with helm" single ((:commit . "f86c3973af760df6d7d0ecc61c3d9d14e1d93e2b") (:keywords "makefile") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/helm-make"))]) (helm-ls-svn . [(20150717 739) ((emacs (24 1)) (helm (1 7 0)) (cl-lib (0 5))) "helm extension to list svn files" single ((:commit . "4d4dc1a272f27fba5fdd7cc47e5d309b53c63ae3") (:keywords "helm" "svn") (:authors ("Chunyang Xu" . "chunyang@macports.org")) (:maintainer "Chunyang Xu" . "chunyang@macports.org") (:url . "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el/helm-ls-svn.el"))]) (helm-ls-hg . [(20150909 543) ((helm (1 7 8))) "List hg files in hg project." single ((:commit . "61b91a22fcfb62d0fc56e361ec01ce96973c7165"))]) (helm-ls-git . [(20180711 923) ((helm (1 7 8))) "list git files." single ((:commit . "e38cee59c42fbf16b6de239a537d27af58473394"))]) (helm-lobsters . [(20150213 1546) ((helm (1 0)) (cl-lib (0 5))) "helm front-end for lobste.rs" single ((:commit . "53c5b42baf72776dcba891fc3d7cd7d47721e9b0") (:authors ("Julien BLANCHARD" . "julien@sideburns.eu")) (:maintainer "Julien BLANCHARD" . "julien@sideburns.eu") (:url . "https://github.com/julienXX/helm-lobste.rs"))]) (helm-lines . [(20180601 2033) ((emacs (24 4)) (helm (1 9 8))) "A helm interface for completing by lines" single ((:commit . "3bfe15a60c6405682085ab289de3eb364624c4e9") (:keywords "files" "helm" "ag" "pt" "vc" "git" "lines" "complete" "tools" "languages") (:authors ("@torgeir")) (:maintainer "@torgeir") (:url . "https://github.com/torgeir/helm-lines.el/"))]) (helm-lib-babel . [(20180510 1324) ((cl-lib (0 5)) (helm (1 9 2)) (emacs (24 4))) "helm insertion of babel function references" single ((:commit . "41bc0cdea8a604c6c8dc83ed5066644d33688fad") (:keywords "convenience") (:authors ("Derek Feichtinger" . "dfeich@gmail.com")) (:maintainer "Derek Feichtinger" . "dfeich@gmail.com") (:url . "https://github.com/dfeich/helm-lib-babel.el"))]) (helm-lean . [(20171102 1454) ((emacs (24 3)) (dash (2 12 0)) (helm (2 8 0)) (lean-mode (3 3 0))) "Helm interfaces for lean-mode" single ((:commit . "9d6b8471e2044310b4cd7cd3213b1fc8f78ec499") (:keywords "languages") (:authors ("Leonardo de Moura" . "leonardo@microsoft.com") ("Soonho Kong      " . "soonhok@cs.cmu.edu") ("Gabriel Ebner    " . "gebner@gebner.org") ("Sebastian Ullrich" . "sebasti@nullri.ch")) (:maintainer "Sebastian Ullrich" . "sebasti@nullri.ch") (:url . "https://github.com/leanprover/lean-mode"))]) (helm-lastpass . [(20180722 806) ((emacs (25 1)) (helm (2 0)) (csv (2 1))) "Helm interface of LastPass" single ((:commit . "82e1ffb6ae77d9d9e29c398eb013cd20ce963f77") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/helm-lastpass"))]) (helm-kythe . [(20170709 726) ((emacs (25)) (dash (2 12 0)) (helm (2 0))) "Google Kythe helm interface" single ((:commit . "eabbef4948f8ec7c7b2fac498e9145dfdb10ca82") (:authors ("Fangrui Song" . "i@maskray.me")) (:maintainer "Fangrui Song" . "i@maskray.me") (:url . "https://github.com/MaskRay/emacs-helm-kythe"))]) (helm-jstack . [(20150603 422) ((emacs (24)) (helm (1 7 0)) (cl-lib (0 5))) "Helm interface to Jps & Jstack for Java/JVM processes" single ((:commit . "2064f7215dcf4ccbd6a7b8784223251507746da4") (:keywords "java" "jps" "jstack" "jvm" "emacs" "elisp" "helm") (:authors ("Raghav Kumar Gautam" . "rgautam@apache.com")) (:maintainer "Raghav Kumar Gautam" . "rgautam@apache.com"))]) (helm-js-codemod . [(20171106 1044) ((emacs (24 4)) (helm-core (1 9 8)) (js-codemod (1 0 0))) "A helm interface for running js-codemods" single ((:commit . "18503d94e64418e8ea5c5854f197ae9f3009cdbf") (:keywords "helm" "js" "codemod" "region") (:authors (nil . "Torgeir Thoresen <@torgeir>")) (:maintainer nil . "Torgeir Thoresen <@torgeir>"))]) (helm-jira . [(20180802 815) ((emacs (25)) (cl-lib (0 5)) (helm (1 9 9))) "Helm bindings for JIRA/Bitbucket/stash" single ((:commit . "75d6ed5bd7a041fa8c1adb21cbbbe57b5a7c7cc7") (:keywords "tools" "helm" "jira" "bitbucket" "stash") (:authors ("Roman Decker <roman dot decker at gmail dot com>")) (:maintainer "Roman Decker <roman dot decker at gmail dot com>") (:url . "https://github.com/DeX3/helm-jira"))]) (helm-j-cheatsheet . [(20170217 829) ((helm (1 5 3))) "Quick J reference for Emacs" single ((:commit . "6c47e7162b9ba2de4b41221d01180146973d860b") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/helm-j-cheatsheet"))]) (helm-itunes . [(20151013 648) ((helm (1 6 1))) "Play local iTunes and Spotify tracks" single ((:commit . "966de755a5aadbe02311a6cef77bd4790e84c263") (:authors ("Adam Schwartz" . "adam@adamschwartz.io")) (:maintainer "Adam Schwartz" . "adam@adamschwartz.io") (:url . "https://github.com/daschwa/helm-itunes"))]) (helm-ispell . [(20151231 853) ((helm-core (1 7 7))) "ispell-complete-word with helm interface" single ((:commit . "cb735695ab3a0e66c123c2f3f3e8911fb1c2d5fc") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-ispell"))]) (helm-img-tiqav . [(20151224 2322) ((helm-img (0 0 1))) "An helm-source for joking." single ((:commit . "33a7e9508bc8f37d53320b56c92b53d321a57bb0") (:keywords "convenience") (:authors ("Sho Matsumoto <l3msh0_at_gmail.com>")) (:maintainer "l3msh0") (:url . "https://github.com/l3msh0/helm-img"))]) (helm-img . [(20151224 2321) ((helm (1 7 7)) (cl-lib (0 5))) "Utilities for making image sources for helm." tar ((:commit . "aa3f8a5dce8d0413bf07584f07153a39015c2bfc") (:keywords "convenience") (:authors ("Sho Matsumoto <l3msh0_at_gmail.com>")) (:maintainer "l3msh0") (:url . "https://github.com/l3msh0/helm-img"))]) (helm-idris . [(20141202 1757) ((helm (0 0 0)) (idris-mode (0 9 14))) "A Helm datasource for Idris documentation, queried from the compiler" single ((:commit . "a2f45d6817974f318b55ad9b7fd19d5df132d47e") (:keywords "languages" "helm") (:authors ("David Raymond Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Raymond Christiansen" . "david@davidchristiansen.dk"))]) (helm-hunks . [(20171217 1933) ((emacs (24 4)) (helm (1 9 8))) "A helm interface for git hunks - browsing, staging, unstaging and killing" single ((:commit . "6392bf716f618eac23ce81140aceb0dfacb9c6d0") (:keywords "helm" "git" "hunks" "vc") (:authors ("@torgeir")) (:maintainer "@torgeir"))]) (helm-hoogle . [(20161027 534) ((helm (1 6 2)) (emacs (24 4))) "Use helm to navigate query results from Hoogle" single ((:commit . "73969a9d46d2121a849a01a9f7ed3636d01f7bbc") (:keywords "haskell" "programming" "hoogle") (:authors ("John Wiegley" . "jwiegley@gmail.com")) (:maintainer "John Wiegley" . "jwiegley@gmail.com") (:url . "https://github.com/jwiegley/haskell-config"))]) (helm-helm-commands . [(20130902 1748) ((helm (1 5 4))) "List all helm commands with helm" single ((:commit . "3a05aa19c976501343ad9ae630a36810921a85f6") (:keywords "convenience") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/helm-helm-commands"))]) (helm-hayoo . [(20151014 651) ((helm (1 6 0)) (json (1 2)) (haskell-mode (13 7))) "Source and configured helm for searching hayoo" single ((:commit . "dd4c0c8c87521026edf1b808c4de01fa19b7c693") (:keywords "helm") (:authors ("Markus Hauck" . "markus1189@gmail.com")) (:maintainer "Markus Hauck" . "markus1189@gmail.com"))]) (helm-hatena-bookmark . [(20180804 546) ((helm (2 8 2))) "Hatena::Bookmark with helm interface" single ((:commit . "274e18182fe20c11e96009387a8e38e8cd2a1d7e") (:authors ("Takashi Masuda" . "masutaka.net@gmail.com")) (:maintainer "Takashi Masuda" . "masutaka.net@gmail.com") (:url . "https://github.com/masutaka/emacs-helm-hatena-bookmark"))]) (helm-gtags . [(20170116 529) ((emacs (24 4)) (helm (2 0))) "GNU GLOBAL helm interface" single ((:commit . "108e93d0d099ebb7b98847388f368311cf177033") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-gtags"))]) (helm-growthforecast . [(20140120 344) ((helm (1 5 9))) "helm extensions for growthforecast." single ((:commit . "0f94ac090d6c354058ad89a86e5c18385c136d9b") (:authors ("Daichi Hirata" . "daichi.hirat@gmail.com")) (:maintainer "Daichi Hirata" . "daichi.hirat@gmail.com") (:url . "https://github.com/daic-h/helm-growthforecast"))]) (helm-grepint . [(20161001 1413) ((helm (1 0)) (emacs (24))) "Generic helm interface to grep" single ((:commit . "a62ca27515ff6a366b89b420500eb16d380cc653") (:keywords "grep" "grepping" "searching" "helm") (:authors ("Kalle Kankare" . "kalle.kankare@iki.fi")) (:maintainer "Kalle Kankare" . "kalle.kankare@iki.fi") (:url . "https://github.com/kopoli/helm-grepint"))]) (helm-google . [(20180606 520) ((helm (0))) "Emacs Helm Interface for quick Google searches" single ((:commit . "48e91a73d5f48c39d7a219022a24440cff548e1a") (:keywords "helm" "google" "search" "browse" "searx") (:authors ("steckerhalter")) (:maintainer "steckerhalter") (:url . "https://framagit.org/steckerhalter/helm-google"))]) (helm-go-package . [(20161103 153) ((emacs (24 4)) (helm-core (2 2 1)) (go-mode (1 4 0)) (deferred (0 4 0))) "helm sources for Go programming language's package" single ((:commit . "e42c563936c205ceedb930a687c11b4bb56447bc") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/helm-go-package"))]) (helm-gitlab . [(20180312 1647) ((s (1 9 0)) (dash (2 9 0)) (helm (1 0)) (gitlab (0 8 0))) "Helm interface to Gitlab" single ((:commit . "68318aca3206d50701039c9aae39734ca29a49f9") (:keywords "gitlab" "helm") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/emacs-gitlab"))]) (helm-gitignore . [(20170211 8) ((gitignore-mode (1 1 0)) (helm (1 7 0)) (request (0 1 0)) (cl-lib (0 5))) "Generate .gitignore files with gitignore.io." single ((:commit . "2a2e7da7855a6db0ab3bb6a6a087863d7abd4391") (:keywords "helm" "gitignore" "gitignore.io") (:authors ("Juan Placencia")) (:maintainer "Juan Placencia") (:url . "https://github.com/jupl/helm-gitignore"))]) (helm-github-stars . [(20180718 111) ((helm (1 6 8)) (emacs (24 4))) "Helm integration for your starred repositories on github" single ((:commit . "809cf88e2984b121348b1046e1d3890f1fd580b4") (:keywords "helm" "github" "stars") (:authors ("Sliim" . "sliim@mailoo.org") ("xuchunyang" . "xuchunyang56@gmail.com")) (:maintainer "Sliim" . "sliim@mailoo.org") (:url . "https://github.com/Sliim/helm-github-stars"))]) (helm-git-grep . [(20170614 1411) ((helm-core (2 2 0))) "helm for git grep, an incremental git-grep(1)" single ((:commit . "744cea07dba6e6a5effbdba83f1b786c78fd86d3") (:authors ("mechairoi")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/helm-git-grep"))]) (helm-git-files . [(20141212 1317) ((helm (1 5 9))) "helm for git files" single ((:commit . "43193960774069369ac6964bbf7c026900206fa8") (:keywords "helm" "git") (:authors ("INA Lintaro <tarao.gnn at gmail.com>") ("TAKAGI Kentaro <kentaro0910_at_gmail.com>")) (:maintainer "INA Lintaro <tarao.gnn at gmail.com>"))]) (helm-git . [(20120630 2103) nil "Helm extension for Git." single ((:commit . "cb96a52b5aecadd3c27aba7749d14e43ab128d55") (:keywords "helm" "git") (:authors ("Marian Schubert" . "marian.schubert@gmail.com")) (:maintainer "Marian Schubert" . "marian.schubert@gmail.com") (:url . "https://github.com/maio/helm-git"))]) (helm-ghs . [(20170715 541) ((emacs (24)) (helm (2 2 0))) "ghs with helm interface" single ((:commit . "17a70bf16255d90d67c8350e88200ec8bfd47563") (:authors ("iory" . "ab.ioryz@gmail.com")) (:maintainer "iory" . "ab.ioryz@gmail.com") (:url . "https://github.com/iory/emacs-helm-ghs"))]) (helm-ghq . [(20161015 817) ((helm (2 2 0))) "ghq with helm interface" single ((:commit . "49481685adbb25b3f766aabfdb7472becc673a94") (:authors ("Takashi Masuda" . "masutaka.net@gmail.com")) (:maintainer "Takashi Masuda" . "masutaka.net@gmail.com") (:url . "https://github.com/masutaka/emacs-helm-ghq"))]) (helm-ghc . [(20141105 1459) ((emacs (24)) (cl-lib (0 5)) (helm (1 6 4)) (ghc (5 2 1 0))) "A Helm datasource for ghc-mod errors" single ((:commit . "e5ee7b8d3b745d162553aecfbd41381c4de85f35") (:keywords "languages" "helm") (:authors ("David Raymond Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Raymond Christiansen" . "david@davidchristiansen.dk"))]) (helm-fuzzy-find . [(20171106 400) ((emacs (24 1)) (helm (1 7 0))) "Find file using Fuzzy Search" single ((:commit . "de2abbf7ca13609587325bacd4a1ed4376b5c927") (:keywords "helm" "fuzzy" "find" "file") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/helm-fuzzy-find"))]) (helm-fuzzier . [(20160605 2145) ((emacs (24 3)) (helm (1 7 0))) "Better fuzzy matching for Helm" single ((:commit . "8798dcf3583b863df5b9dea7fe3b0179ba1c35bc") (:keywords "convenience" "helm" "fuzzy") (:authors ("Ephram Perdition")) (:maintainer "Ephram Perdition") (:url . "http://github.com/EphramPerdition/helm-fuzzier"))]) (helm-frame . [(20170515 1950) ((emacs (24 4))) "open helm buffers in a dedicated frame" single ((:commit . "389e6461a423d649b7062ba99a2234bef7770059") (:keywords "lisp" "helm" "popup" "frame") (:authors ("chee" . "chee@snake.dog")) (:maintainer "chee" . "chee@snake.dog"))]) (helm-flyspell . [(20170210 1901) ((helm (1 6 5))) "Helm extension for correcting words with flyspell" single ((:commit . "8d4d947c687cb650cb149aa2271ad5201ea92594") (:keywords "convenience") (:authors ("Andrzej Pronobis")) (:maintainer "Andrzej Pronobis") (:url . "https://github.com/pronobis/helm-flyspell"))]) (helm-flymake . [(20160610 2) ((helm (1 0))) "helm interface for flymake" single ((:commit . "72cf18a1a1f843db9bb5d58301739ea9ccb1655b") (:authors ("Akira Tamamori" . "tamamori5917@gmail.com")) (:maintainer "Akira Tamamori" . "tamamori5917@gmail.com") (:url . "https://github.com/tam17aki"))]) (helm-flycheck . [(20160710 829) ((dash (2 12 1)) (flycheck (28)) (helm-core (1 9 8))) "Show flycheck errors with helm" single ((:commit . "3cf7d3bb194acacc6395f88360588013d92675d6") (:keywords "helm" "flycheck") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/helm-flycheck"))]) (helm-flx . [(20180103 516) ((emacs (24 4)) (helm (1 7 9)) (flx (0 5))) "Sort helm candidates by flx score" single ((:commit . "6640fac5cb16bee73c95b8ed1248a4e5e113690e") (:keywords "convenience" "helm" "fuzzy" "flx") (:authors ("PythonNut" . "pythonnut@pythonnut.com")) (:maintainer "PythonNut" . "pythonnut@pythonnut.com") (:url . "https://github.com/PythonNut/helm-flx"))]) (helm-firefox . [(20161202 1317) ((helm (1 5)) (cl-lib (0 5)) (emacs (24 1))) "Firefox bookmarks" single ((:commit . "0ad34b7b5abc485a86cae6920c14de861cbeb085") (:url . "https://github.com/emacs-helm/helm-firefox"))]) (helm-filesets . [(20140929 1835) ((helm (1 6 3)) (filesets+ (0))) "A helm source for emacs filesets" single ((:commit . "b352910af4c3099267a8aa0169c7f743b35bb1fa") (:keywords "filesets") (:authors ("Graham Clark" . "grclark@gmail.com")) (:maintainer "Graham Clark" . "grclark@gmail.com") (:url . "https://github.com/gcla/helm-filesets"))]) (helm-exwm . [(20180827 837) ((emacs (25 2)) (helm (2 8 5)) (exwm (0 15))) "Helm for EXWM buffers" single ((:commit . "e21c6ffabadd2fe8d6c7805b6027cc59a6f914e9") (:keywords "helm" "exwm") (:authors ("Pierre Neidhardt" . "mail@ambrevar.xyz")) (:maintainer "Pierre Neidhardt" . "mail@ambrevar.xyz") (:url . "https://github.com/emacs-helm/helm-exwm"))]) (helm-ext . [(20180526 350) ((emacs (24 4)) (helm (2 5 3))) "A few extensions to Helm" tar ((:commit . "90b788aced21ec467a234b6b77b5a6ebae6de75f") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (helm-eww . [(20180827 836) ((emacs (24 4)) (helm (2 8 6)) (seq (1 8))) "Helm UI wrapper for EWW." single ((:commit . "2bb7b644f953c45b5dd03298b556312440618026") (:keywords "helm" "packages") (:authors ("Pierre Neidhardt" . "mail@ambrevar.xyz")) (:maintainer "Pierre Neidhardt" . "mail@ambrevar.xyz") (:url . "https://github.com/emacs-helm/helm-eww"))]) (helm-etags-plus . [(20170113 1414) ((helm (1 7 8))) "Another Etags helm.el interface" single ((:commit . "704f0991ee4a2298b01c33aafc224eef322e15e3") (:keywords "helm" "etags") (:authors ("纪秀峰(Joseph)" . "jixiuf@gmail.com")) (:maintainer "纪秀峰(Joseph)" . "jixiuf@gmail.com") (:url . "https://github.com/jixiuf/helm-etags-plus"))]) (helm-emms . [(20180406 528) ((helm (1 5)) (emms (0 0)) (cl-lib (0 5)) (emacs (24 1))) "Emms for Helm." single ((:commit . "d3f9bdef8ff0d093eaf6e26af50ea905ab53fdec") (:url . "https://github.com/emacs-helm/helm-emms"))]) (helm-emmet . [(20160713 1231) ((helm (1 0)) (emmet-mode (1 0 2))) "helm sources for emmet-mode's snippets" single ((:commit . "f0364e736b10cf44232053a78de04133a88185ae") (:keywords "convenience" "helm" "emmet") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/helm-emmet"))]) (helm-elscreen . [(20170709 914) ((helm (2 8 0)) (elscreen (0)) (cl-lib (0 5)) (emacs (24 1))) "Elscreen with helm interface" single ((:commit . "b8212866939dc4a1e1dc23ad572407b688e130e3") (:keywords "files" "convenience") (:authors ("Thierry Volpiatto" . "thierry.volpiatto@gmail.com")) (:maintainer "Thierry Volpiatto" . "thierry.volpiatto@gmail.com") (:url . "https://github.com/emacs-helm/helm-elscreen"))]) (helm-dirset . [(20151209 12) ((f (0 16 2)) (helm (1 6 1)) (s (1 9 0)) (cl-lib (0 5))) "helm sources for multi directories" single ((:commit . "eb30810cd26e1ee73d84a863e6b2667700e9aead") (:keywords "files" "directories") (:authors ("k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>")) (:maintainer "k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>") (:url . "http://101000lab.org"))]) (helm-dired-recent-dirs . [(20131228 1414) ((helm (1 0))) "Show recent dirs with helm.el support." single ((:commit . "3bcd125b44f5a707588ae3868777d91192351523") (:keywords "helm" "dired" "zsh") (:authors ("Akisute" . "akisute3@gmail.com")) (:maintainer "Akisute" . "akisute3@gmail.com"))]) (helm-dired-history . [(20170524 1046) ((helm (1 9 8)) (cl-lib (0 5))) "Show dired history with helm.el support." single ((:commit . "281523f9fc46cf00fafd670ba5cd16552a607212") (:keywords "helm" "dired history") (:authors ("Joseph(纪秀峰)" . "jixiuf@gmail.com")) (:maintainer "Joseph(纪秀峰)" . "jixiuf@gmail.com") (:url . "https://github.com/jixiuf/helm-dired-history"))]) (helm-directory . [(20170706 402) ((emacs (24 4)) (helm (2 0))) "selecting directory before select the file" single ((:commit . "51bd7cd6e40a84a7efda894283ec76a0107830ad") (:authors ("Masashı Mıyaura")) (:maintainer "Masashı Mıyaura") (:url . "https://github.com/masasam/emacs-helm-directory"))]) (helm-dictionary . [(20160817 2033) ((helm (1 5 5))) "Helm source for looking up dictionaries" single ((:commit . "805ce850d4cbe811227d9c9b16cc51f652198f3f") (:authors ("Titus von der Malsburg" . "malsburg@posteo.de") ("Michael Heerdegen" . "michael_heerdegen@web.de")) (:maintainer "Titus von der Malsburg" . "malsburg@posteo.de") (:url . "https://github.com/emacs-helm/helm-dictionary"))]) (helm-describe-modes . [(20160212 518) ((helm (1 9)) (cl-lib (0 5)) (emacs (24 1))) "Helm interface to major and minor modes." single ((:commit . "11fb36af119b784539d31c6160002de1957408aa") (:keywords "docs" "convenience") (:authors ("Tianxiang Xiong" . "tianxiang.xiong@gmail.com")) (:maintainer "Tianxiang Xiong" . "tianxiang.xiong@gmail.com") (:url . "https://github.com/emacs-helm/helm-describe-modes"))]) (helm-descbinds . [(20180429 1456) ((helm (1 5))) "A convenient `describe-bindings' with `helm'" single ((:commit . "033be73f21778633813264ce1634a6e1ad873d8e") (:keywords "helm" "help") (:authors ("Taiki SUGAWARA" . "buzz.taiki@gmail.com")) (:maintainer "Taiki SUGAWARA" . "buzz.taiki@gmail.com") (:url . "https://github.com/emacs-helm/helm-descbinds"))]) (helm-dash . [(20180503 918) ((helm (1 9 2)) (cl-lib (0 5))) "Offline documentation browser for +150 APIs using Dash docsets." single ((:commit . "0ac2db529577fa63f2ed32310062873c585b91de") (:keywords "docs") (:authors ("Raimon Grau" . "raimonster@gmail.com") ("Toni Reina " . "areina0@gmail.com")) (:maintainer "Raimon Grau" . "raimonster@gmail.com") (:url . "http://github.com/areina/helm-dash"))]) (helm-ctest . [(20180821 1005) ((s (1 9 0)) (dash (2 11 0)) (helm-core (1 7 4))) "Run ctest from within emacs" single ((:commit . "0c73689692a290f56080e95325c15362e90d529b") (:keywords "helm" "ctest") (:authors ("Dan LaManna" . "me@danlamanna.com")) (:maintainer "Dan LaManna" . "me@danlamanna.com"))]) (helm-css-scss . [(20140627 25) ((helm (1 0)) (emacs (24))) "CSS/SCSS/LESS Selectors with helm interface" single ((:commit . "ab8348aa98e0daa2f1b771e35bdb06bfacbe5016") (:keywords "scss" "css" "less" "selector" "helm") (:authors ("Shingo Fukuyama - http://fukuyama.co")) (:maintainer "Shingo Fukuyama - http://fukuyama.co") (:url . "https://github.com/ShingoFukuyama/helm-css-scss"))]) (helm-cscope . [(20170326 722) ((xcscope (1 0)) (helm (1 6 7)) (cl-lib (0 5)) (emacs (24 1))) "Helm interface for xcscope.el." single ((:commit . "3cc7259ab4989f9f7ca039e703cdac14b907530a") (:keywords "cscope" "helm") (:authors ("alpha22jp" . "alpha22jp@gmail.com")) (:maintainer "alpha22jp" . "alpha22jp@gmail.com") (:url . "https://github.com/alpha22jp/helm-cscope.el"))]) (helm-core . [(20181119 2038) ((emacs (24 4)) (async (1 9 3))) "Development files for Helm" tar ((:commit . "fa119eb9c79fb444a8ffd865a894380682f31840") (:url . "https://emacs-helm.github.io/helm/"))]) (helm-company . [(20180828 1612) ((helm (1 5 9)) (company (0 6 13))) "Helm interface for company-mode" single ((:commit . "d3fc093a0e833b4dee6561c00d6df3d62aa50f3f") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Daniel Ralston" . "Sodel-the-Vociferous@users.noreply.github.com") (:url . "https://github.com/Sodel-the-Vociferous/helm-company"))]) (helm-commandlinefu . [(20150611 545) ((emacs (24 1)) (helm (1 7 0)) (json (1 3)) (let-alist (1 0 3))) "Search and browse commandlinefu.com from helm" single ((:commit . "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d") (:keywords "commandlinefu.com") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/helm-commandlinefu"))]) (helm-codesearch . [(20180204 433) ((s (1 10 0)) (dash (2 12 0)) (helm (1 7 7)) (cl-lib (0 5))) "helm interface for codesearch" single ((:commit . "87a68168b7c1490769305db0df60035e47799a75") (:keywords "tools") (:authors ("Youngjoo Lee" . "youngker@gmail.com")) (:maintainer "Youngjoo Lee" . "youngker@gmail.com"))]) (helm-cmd-t . [(20170125 1459) nil "cmd-t style completion" tar ((:commit . "7fa3d4a9f7271512e54c5de999079b27c9eec6bf") (:keywords "helm" "project-management" "completion" "convenience" "cmd-t" "textmate") (:authors ("Le Wang")) (:maintainer "Le Wang") (:url . "https://github.com/lewang/helm-cmd-t"))]) (helm-clojuredocs . [(20160405 723) ((edn (1 1 2)) (helm (1 5 7))) "search for help in clojuredocs.org" single ((:commit . "5a7f0f2cb401be0b09e73262a1c18265ab9a3cea") (:keywords "helm" "clojure") (:authors ("Michal Buczko" . "michal.buczko@gmail.com")) (:maintainer "Michal Buczko" . "michal.buczko@gmail.com") (:url . "https://github.com/mbuczko/helm-clojuredocs"))]) (helm-circe . [(20160207 652) ((emacs (24)) (helm (0 0)) (circe (0 0)) (cl-lib (0 5))) "helm circe buffer management." single ((:commit . "9091651d9fdd8d49d8ff6f9dcf3a2ae416c9f15a") (:keywords "helm" "circe") (:authors ("Les Harris" . "les@lesharris.com")) (:maintainer "Les Harris" . "les@lesharris.com") (:url . "https://github.com/lesharris/helm-circe"))]) (helm-cider-history . [(20150719 2120) ((helm (1 4 0)) (cider (0 9 0))) "Helm interface for cider history" single ((:commit . "c391fcb2e162a02001605a0b9449783575a831fd") (:keywords "convenience") (:authors ("Andreas Klein" . "git@kungi.org")) (:maintainer "Andreas Klein" . "git@kungi.org") (:url . "https://github.com/Kungi/helm-cider-history"))]) (helm-cider . [(20180307 458) ((emacs (24 4)) (cider (0 16)) (helm-core (2 8))) "Helm interface to CIDER" tar ((:commit . "9363cc537f06233345aa3af5cd46aa5681ad607b") (:keywords "cider" "clojure" "helm" "languages") (:authors ("Tianxiang Xiong" . "tianxiang.xiong@gmail.com")) (:maintainer "Tianxiang Xiong" . "tianxiang.xiong@gmail.com") (:url . "https://github.com/clojure-emacs/helm-cider"))]) (helm-chronos . [(20150528 2036) ((chronos (1 2)) (helm (1 7 1))) "helm interface for chronos timers" tar ((:commit . "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef") (:keywords "calendar") (:authors ("David Knight" . "dxknight@opmbx.org")) (:maintainer "David Knight" . "dxknight@opmbx.org") (:url . "http://github.com/dxknight/helm-chronos"))]) (helm-chrome . [(20160719 520) ((helm (1 5)) (cl-lib (0 3)) (emacs (24))) "Helm interface for Chrome bookmarks" single ((:commit . "fd630ace4b4b4f33355a973743bbfe0c90ce4830") (:keywords "tools") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/helm-chrome"))]) (helm-charinfo . [(20170810 1231) ((emacs (24)) (helm (1 7 0)) (cl-lib (0 5))) "A helm source for character information" single ((:commit . "91798a49dc115342a7e01e48b264e9a0bf5ea414") (:keywords "convenience") (:authors ("Christian Wittern" . "cwittern@gmail.com")) (:maintainer "Christian Wittern" . "cwittern@gmail.com") (:url . "https://github.com/cwittern/helm-charinfo"))]) (helm-c-yasnippet . [(20170128 1542) ((helm (1 7 7)) (yasnippet (0 8 0)) (cl-lib (0 3))) "helm source for yasnippet.el" single ((:commit . "65ca732b510bfc31636708aebcfe4d2d845b59b0") (:keywords "convenience" "emulation") (:authors ("Kenji.I (Kenji Imakado)" . "ken.imakaado@gmail.com")) (:maintainer "Kenji.I (Kenji Imakado)" . "ken.imakaado@gmail.com"))]) (helm-c-moccur . [(20151230 924) ((helm (20120811)) (color-moccur (2 71))) "helm source for color-moccur.el" single ((:commit . "b0a906f85fa352db091f88b91a9c510de607dfe9") (:keywords "convenience" "emulation") (:authors ("Kenji.I (Kenji Imakado)" . "ken.imakaado@gmail.com")) (:maintainer "Kenji.I (Kenji Imakado)" . "ken.imakaado@gmail.com"))]) (helm-bundle-show . [(20151221 1230) ((helm (1 8 0))) "bundle show with helm interface" single ((:commit . "850fecb36f609f1dfd5d20ca0170c9a6b7f90ab9") (:authors ("Takashi Masuda" . "masutaka.net@gmail.com")) (:maintainer "Takashi Masuda" . "masutaka.net@gmail.com") (:url . "https://github.com/masutaka/emacs-helm-bundle-show"))]) (helm-books . [(20170325 631) ((helm (1 7 7))) "Helm interface for searching books" single ((:commit . "625aadec1541a5ca36951e4ce1301f4b6fe2bf3f") (:authors ("grugrut" . "grugruglut+github@gmail.com")) (:maintainer "grugrut" . "grugruglut+github@gmail.com") (:url . "https://github.com/grugrut/helm-books"))]) (helm-bm . [(20160321 1331) ((bm (1 0)) (cl-lib (0 5)) (helm (1 9 3)) (s (1 11 0))) "helm sources for bm.el" single ((:commit . "d66341f5646c23178d4d8bffb6cfebe3fb73f1d7") (:keywords "helm" "bookmark") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/helm-bm"))]) (helm-bind-key . [(20141109 515) ((bind-key (1 0)) (helm (1 6 4))) "helm-source for for bind-key." single ((:commit . "9da6ad8b7530e72fb4ac67be8c6a482898dddc25") (:keywords "convenience" "emulation") (:authors ("Yuhei Maeda <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe"))]) (helm-bibtexkey . [(20140214 1504) ((helm (1 5 8))) "Bibtexkey source for helm" tar ((:commit . "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f") (:keywords "bib" "tex") (:authors ("TAKAGI Kentaro <kentaro0910_at_gmail.com>")) (:maintainer "TAKAGI Kentaro <kentaro0910_at_gmail.com>") (:url . "https://github.com/kenbeese/helm-bibtexkey"))]) (helm-bibtex . [(20181030 2142) ((helm (1 5 5)) (parsebib (1 0)) (s (1 9 0)) (dash (2 6 0)) (f (0 16 2)) (cl-lib (0 5)) (biblio (0 2))) "A bibliography manager based on Helm" tar ((:commit . "af05ccb498d89550644cc01c80628053d4d2d73f") (:authors ("Titus von der Malsburg" . "malsburg@posteo.de")) (:maintainer "Titus von der Malsburg" . "malsburg@posteo.de"))]) (helm-bbdb . [(20180505 1508) ((helm (1 5)) (bbdb (3 1 2))) "Helm interface for bbdb" single ((:commit . "db286b0ee0ea18142f7d005e465832bb755bb0cb") (:url . "https://github.com/emacs-helm/helm-bbdb"))]) (helm-backup . [(20180911 614) ((helm (1 5 5)) (s (1 8 0)) (cl-lib (0))) "Backup each file change using git" single ((:commit . "691fe542f38fc7c8cca409997f6a0ff5d76ad6c2") (:keywords "backup" "convenience" "files" "tools" "vc") (:authors ("Anthony HAMON" . "hamon.anth@gmail.com")) (:maintainer "Anthony HAMON" . "hamon.anth@gmail.com") (:url . "http://github.com/antham/helm-backup"))]) (helm-aws . [(20180514 1032) ((helm (1 5 3)) (cl-lib (0 5)) (s (1 9 0))) "Manage AWS EC2 server instances directly from Emacs" single ((:commit . "b36c744b3f00f458635a91d1f5158fccbb5baef6") (:authors ("istib")) (:maintainer "istib") (:url . "https://github.com/istib/helm-aws"))]) (helm-ag-r . [(20131123 1531) ((helm (1 0))) "Search something by ag and display by helm" single ((:commit . "67de4ebafe9b088db950eefa5ef590a6d78b4ac8") (:keywords "searching") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/yuutayamada/helm-ag-r"))]) (helm-ag . [(20170209 1545) ((emacs (24 4)) (helm (2 0))) "the silver searcher with helm interface" single ((:commit . "2fc02c4ead29bf0db06fd70740cc7c364cb650ac") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-ag"))]) (helm-addressbook . [(20170903 728) ((helm (2 8 2)) (addressbook-bookmark (1 0)) (cl-lib (0 5)) (emacs (24 4))) "Helm for addressbook bookmarks." single ((:commit . "62497f72d46afd3a9f9f94b27d062a82fb232de4") (:url . "https://github.com/emacs-helm/helm-addressbook"))]) (helm-ad . [(20151209 1015) ((dash (2 8 0)) (helm (1 6 2))) "helm source for Active Directory" single ((:commit . "8ac044705d8620ee354a9cfa8cc1b865e83c0d55") (:keywords "comm") (:authors ("Takahiro Noda" . "takahiro.noda+github@gmail.com")) (:maintainer "Takahiro Noda" . "takahiro.noda+github@gmail.com"))]) (helm-ack . [(20141030 1226) ((helm (1 0)) (cl-lib (0 5))) "Ack command with helm interface" single ((:commit . "889bc225318d14c6e3be80e73b1d9d6fb30e48c3") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-helm-ack"))]) (helm-R . [(20120820 14) ((helm (20120517)) (ess (20120509))) "helm-sources and some utilities for GNU R." single ((:commit . "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2") (:keywords "convenience") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/helm-R.el"))]) (helm . [(20181120 1326) ((emacs (24 4)) (async (1 9 3)) (popup (0 5 3)) (helm-core (3 0))) "Helm is an Emacs incremental and narrowing framework" tar ((:commit . "fa119eb9c79fb444a8ffd865a894380682f31840") (:url . "https://emacs-helm.github.io/helm/"))]) (heaven-and-hell . [(20180421 921) ((emacs (24 4))) "easy toggle light/dark themes" single ((:commit . "0e4191065a1c18b50734a437f3cafb629b89edc0") (:keywords "faces") (:authors ("Valentin Ignatev" . "valentignatev@gmail.com")) (:maintainer "Valentin Ignatev" . "valentignatev@gmail.com") (:url . "https://github.com/valignatev/heaven-and-hell"))]) (headlong . [(20150417 1526) nil "reckless completion" single ((:commit . "f6830f87f236eee88263cb6976125f72422abe72") (:keywords "completion") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/headlong"))]) (hcl-mode . [(20170107 827) ((emacs (24 3))) "Major mode for Hashicorp" single ((:commit . "0f2c5ec7e7bcf77c8548e8cac8721ea935ca1b5e") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-hcl-mode"))]) (hc-zenburn-theme . [(20150928 1633) nil "An higher contrast version of the Zenburn theme." single ((:commit . "fd0024a5191cdce204d91c8f1db99ba31640f6e9") (:authors ("Nantas Nardelli" . "nantas.nardelli@gmail.com")) (:maintainer "Nantas Nardelli" . "nantas.nardelli@gmail.com") (:url . "https:github.com/edran/hc-zenburn-emacs"))]) (hayoo . [(20140831 1221) ((emacs (24)) (json (1 3))) "Query hayoo and show results in a tabulated buffer." single ((:commit . "3ca2fb0c4d5f337d0410c21b2702dd147014e984") (:keywords "hayoo" "haskell") (:authors ("Marko Bencun" . "mbencun@gmail.com")) (:maintainer "Marko Bencun" . "mbencun@gmail.com") (:url . "https://github.com/benma/hayoo.el/"))]) (haxor-mode . [(20160618 1129) ((emacs (24 0))) "Major mode for editing Haxor Assembly Files" single ((:commit . "6fa25a8e6b6a59481bc0354c2fe1e0ed53cbdc91") (:keywords "haxor") (:authors ("Krzysztof Magosa" . "krzysztof@magosa.pl")) (:maintainer "Krzysztof Magosa" . "krzysztof@magosa.pl") (:url . "https://github.com/krzysztof-magosa/haxor-mode"))]) (haxe-mode . [(20131004 842) nil "An Emacs major mode for Haxe" single ((:authors ("Jens Peter Secher")) (:maintainer "Jens Peter Secher") (:url . "http://people.debian.org/~jps/misc/haxe-mode.el"))]) (haxe-imports . [(20170330 2304) ((emacs (24 4)) (s (1 10 0)) (pcache (0 3 1))) "Code for dealing with Haxe imports" single ((:commit . "f104a641f3dfe698359d9aca1f28d9383cf43e04") (:keywords "haxe") (:authors ("Juan Karlo Licudine" . "karlo@accidentalrebel.com")) (:maintainer "Juan Karlo Licudine" . "karlo@accidentalrebel.com") (:url . "http://www.github.com/accidentalrebel/emacs-haxe-imports"))]) (haste . [(20141030 2034) ((json (1 2))) "Emacs client for hastebin (http://hastebin.com/about.md)" single ((:commit . "22d05aacc3296ab50a7361222ab139fb4d447c25") (:authors ("Ric Lister")) (:maintainer "Ric Lister") (:url . "http://github.com/rlister/emacs-haste-client"))]) (hasky-stack . [(20181108 1707) ((emacs (24 4)) (f (0 18 0)) (magit-popup (2 10))) "Interface to the Stack Haskell development tool" single ((:commit . "b62b18d6d2f4f3cf2a75b137c5ec12fa6b934910") (:keywords "tools" "haskell") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/hasky-mode/hasky-stack"))]) (hasky-extensions . [(20180108 512) ((emacs (24 4)) (avy-menu (0 2))) "Toggle Haskell language extensions" single ((:commit . "6909022bccb7e5c26d1c4e5fa20cbc6b65c62d69") (:keywords "programming") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/hasky-mode/hasky-extensions"))]) (hasklig-mode . [(20181110 1859) ((emacs (25))) "Hasklig ligatures" single ((:commit . "386c098c93a744f6b30ad937d193eebf0fd79e1b") (:authors ("Daniel Mendler")) (:maintainer "Daniel Mendler") (:url . "https://github.com/minad/hasklig-mode"))]) (haskell-tab-indent . [(20170701 958) nil "tab-based indentation for haskell-mode" single ((:commit . "b4cb851aef96c42ec7b3cc37b6fdd867fe5a0853") (:keywords "indentation" "haskell") (:authors ("Sean Whitton" . "spwhitton@spwhitton.name")) (:maintainer "Sean Whitton" . "spwhitton@spwhitton.name") (:url . "https://spwhitton.name/tech/code/haskell-tab-indent/"))]) (haskell-snippets . [(20160919 22) ((cl-lib (0 5)) (yasnippet (0 8 0))) "Yasnippets for Haskell" tar ((:commit . "07b0f460b946fd1be26c29652cb0468b47782f3a") (:keywords "snippets" "haskell") (:authors ("Luke Hoersten" . "luke@hoersten.org")) (:maintainer "Luke Hoersten" . "luke@hoersten.org") (:url . "https://github.com/haskell/haskell-snippets"))]) (haskell-mode . [(20180917 923) ((emacs (24 3))) "A Haskell editing mode" tar ((:commit . "6a70c1858c7d505ba23185e209ef7eacf703ed8f") (:keywords "haskell" "cabal" "ghc" "repl") (:url . "https://github.com/haskell/haskell-mode"))]) (haskell-emacs-text . [(20150713 1416) ((haskell-emacs (2 4 0))) "Haskell functions from Data.Text" tar ((:commit . "a2c6a079175904689eed7c6c200754bfa85d1ed9") (:keywords "haskell" "emacs" "ffi") (:authors ("Florian Knupfer")) (:maintainer "Florian Knupfer") (:url . "https://github.com/knupfer/haskell-emacs/modules/text"))]) (haskell-emacs-base . [(20150714 1559) ((haskell-emacs (2 4 0))) "Haskell functions from Prelude" tar ((:commit . "a2c6a079175904689eed7c6c200754bfa85d1ed9") (:keywords "haskell" "emacs" "ffi") (:authors ("Florian Knupfer")) (:maintainer "Florian Knupfer") (:url . "https://github.com/knupfer/haskell-emacs/modules/base"))]) (haskell-emacs . [(20160904 2026) nil "Write emacs extensions in haskell" tar ((:commit . "a2c6a079175904689eed7c6c200754bfa85d1ed9") (:keywords "haskell" "emacs" "ffi") (:authors ("Florian Knupfer")) (:maintainer "Florian Knupfer") (:url . "https://github.com/knupfer/haskell-emacs"))]) (harvest . [(20170822 1746) ((swiper (0 7 0)) (hydra (0 13 0)) (s (1 11 0))) "Harvest integration" single ((:commit . "7acbc0564b250521b67131ee2a0a92720239454f") (:keywords "harvest") (:authors ("Kosta Harlan" . "kosta@kostaharlan.net")) (:maintainer "Kosta Harlan" . "kosta@kostaharlan.net") (:url . "https://github.com/kostajh/harvest.el"))]) (hardhat . [(20160414 1413) ((ignoramus (0 7 0))) "Protect against clobbering user-writable files" single ((:commit . "9038a49ab55cd4c502cf7f07ed0d1b9b6bc3626e") (:keywords "convenience") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/hardhat"))]) (hardcore-mode . [(20151114 701) nil "Disable arrow keys + optionally backspace and return" single ((:commit . "b1dda19692b4a7a58a689e81784a9b35be39e70d") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (handoff . [(20150917 600) nil "Get your hand off that mouse, damn it!" single ((:commit . "75dc7a7e352f38679f65d0ca80ad158798e168bd") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/handoff.el"))]) (handlebars-sgml-mode . [(20130623 2333) nil "Add Handlebars contextual indenting support to sgml-mode" single ((:commit . "c76df93a9a8c1b1b3efdcc4add32bf93304192a4") (:authors ("Geoff Jacobsen" . "geoffjacobsen@gmail.com")) (:maintainer "Geoff Jacobsen" . "geoffjacobsen@gmail.com") (:url . "http://github.com/jacott/handlebars-sgml-mode"))]) (handlebars-mode . [(20150211 1749) nil "A major mode for editing Handlebars files." single ((:commit . "81f6b73fea8f397807781a1b51568397af21a6ef") (:authors ("Tony Gentilcore") ("Chris Wanstrath") ("Daniel Hackney") ("Daniel Evans")) (:maintainer "Tony Gentilcore"))]) (hamlet-mode . [(20131208 724) ((cl-lib (0 3)) (dash (2 3 0)) (s (1 7 0))) "Hamlet editing mode" single ((:commit . "7362b955e556a3d007fa06945a27e5b99349527d") (:keywords "wp" "languages" "comm") (:authors (nil . "Kata <lightquake@amateurtopologist.com")) (:maintainer nil . "Kata <lightquake@amateurtopologist.com") (:url . "https://github.com/lightquake/hamlet-mode"))]) (haml-mode . [(20170924 453) ((emacs (24)) (cl-lib (0 5))) "Major mode for editing Haml files" single ((:commit . "1cbb2de8f0fc25f35448c5cad04642f28078f3bb") (:keywords "markup" "languages" "html") (:authors ("Natalie Weizenbaum")) (:maintainer "Natalie Weizenbaum") (:url . "https://github.com/nex3/haml-mode"))]) (hamburger-menu . [(20160825 2031) ((emacs (24 5))) "Mode line hamburger menu" single ((:commit . "3568159c693c30bed7f61580e4f3b6241253ad4e") (:keywords "hamburger" "menu") (:authors ("Iain Nicol")) (:maintainer "Iain Nicol") (:url . "https://gitlab.com/iain/hamburger-menu-mode"))]) (hamburg-theme . [(20160123 740) ((emacs (24))) "Color Theme with a dark blue background." single ((:commit . "aacefdf1501d97a5afc0e63c8ead4b2463323028") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler"))]) (ham-mode . [(20150811 1306) ((html-to-markdown (1 2)) (markdown-mode (2 0))) "Html As Markdown. Transparently edit an html file using markdown" single ((:commit . "3a141986a21c2aa6eefb428983352abb8b7907d2") (:keywords "convenience" "emulation" "wp") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Bruce-Connor/ham-mode"))]) (hal-mode . [(20160704 1746) nil "Major mode for editing HAL files" single ((:commit . "cd2f66f219ee520198d4586fb6b169cef7ad3f21") (:keywords "language") (:authors ("Alexander Rössler")) (:maintainer "Alexander Rössler") (:url . "https://github.com/strahlex/hal-mode/"))]) (hackernews . [(20180903 612) ((json (1 2))) "Access the Hacker News aggregator from Emacs" tar ((:commit . "ee077c4734ac6a1990dff6043a7deb2f57825c40"))]) (hacker-typer . [(20170206 1520) ((emacs (24))) "Pretend to write code like a pro" tar ((:commit . "d5a23714a4ccc5071580622f278597d5973f40bd") (:keywords "hacker" "typer" "multimedia" "games") (:authors ("Diego A. Mundo" . "diegoamundo@gmail.com")) (:maintainer "Diego A. Mundo" . "diegoamundo@gmail.com") (:url . "http://github.com/therockmandolinist/emacs-hacker-typer"))]) (hack-time-mode . [(20170527 1610) ((emacs (24 4))) "Forge time" single ((:commit . "73d6fcf8b39283526e5d4e3919193611e25a0898") (:keywords "time" "convenience") (:authors ("Marco Wahl" . "marcowahlsoft@gmail.com")) (:maintainer "Marco Wahl" . "marcowahlsoft@gmail.com") (:url . "https://gitlab.com/marcowahl/hack-time-mode"))]) (hack-mode . [(20181107 1748) ((emacs (25 1)) (s (1 11 0))) "Major mode for the Hack programming language" single ((:commit . "96d941984706f9bb97f8705ed1a0125c2c1647fd") (:authors ("John Allen" . "jallen@fb.com")) (:maintainer "John Allen" . "jallen@fb.com") (:url . "https://github.com/hhvm/hack-mode"))]) (habitica . [(20181024 1811) ((org (8 3 5)) (emacs (24 3))) "Interface for habitica.com" single ((:commit . "d977984ac342e9177ba98f400b3c160c450c936d") (:keywords "habitica" "todo") (:authors ("Adrien Brochard")) (:maintainer "Adrien Brochard") (:url . "https://github.com/abrochard/emacs-habitica"))]) (habamax-theme . [(20181001 850) ((emacs (24))) "Boring white background color that gets the job done." single ((:commit . "6e86a1b23b6e2aaf40d4374b5673da00a28be447") (:authors ("Maxim Kim" . "habamax@gmail.com")) (:maintainer "Maxim Kim" . "habamax@gmail.com") (:url . "https://github.com/habamax/habamax-theme"))]) (gxref . [(20170411 1753) ((emacs (25))) "xref backend using GNU Global." single ((:commit . "380b02c3c3c2586c828456716eef6a6392bb043b") (:keywords "xref" "global" "tools") (:authors ("Dedi Hirschfeld")) (:maintainer "Dedi Hirschfeld") (:url . "https://github.com/dedi/gxref"))]) (gvpr-mode . [(20131208 1718) nil "A major mode offering basic syntax coloring for gvpr scripts." single ((:commit . "3d6cc6f4416faf2a1913821d12ba6eb624362af0") (:keywords "graphviz" "gv" "dot" "gvpr" "graph") (:authors ("Rod Waldhoff" . "r.waldhoff@gmail.com")) (:maintainer "Rod Waldhoff" . "r.waldhoff@gmail.com") (:url . "https://raw.github.com/rodw/gvpr-lib/master/extra/gvpr-mode.el"))]) (guru-mode . [(20170730 731) nil "Become an Emacs guru" single ((:commit . "c180e05ebc1484764aad245c85b69de779826e4e") (:keywords "convenience") (:authors ("Bozhidar Batsov")) (:maintainer "Bozhidar Batsov") (:url . "https://github.com/bbatsov/guru-mode"))]) (gulp-task-runner . [(20170718 2041) nil "Gulp task runner" single ((:commit . "877990e956b1d71e2d9c7c3e5a129ad199b9debb") (:keywords "convenience" "javascript") (:authors ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Nicolas Petton" . "nicolas@petton.fr"))]) (guix . [(20181028 1414) ((emacs (24 3)) (dash (2 11 0)) (geiser (0 8)) (bui (1 1 0)) (magit-popup (2 1 0)) (edit-indirect (0 1 4))) "Interface for GNU Guix" tar ((:commit . "bffd65a26c6960e2af2abb57274e4818cf683960") (:keywords "tools") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://emacs-guix.gitlab.io/website/"))]) (guide-key-tip . [(20161011 823) ((guide-key (1 2 3)) (pos-tip (0 4 5))) "Show guide-key.el hints using pos-tip.el" single ((:commit . "02c5d4b0b65f3e91be5a47f0ff1ae5e86e00c64e") (:keywords "help" "convenience" "tooltip") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/guide-key-tip"))]) (guide-key . [(20150108 635) ((dash (2 10 0)) (popwin (0 3 0)) (s (1 9 0))) "Guide the following key bindings automatically and dynamically" single ((:commit . "9236d287a7272e307fb941237390a96037c8c0a2") (:keywords "help" "convenience") (:authors ("Tsunenobu Kai" . "kai2nenobu@gmail.com")) (:maintainer "Tsunenobu Kai" . "kai2nenobu@gmail.com") (:url . "https://github.com/kai2nenobu/guide-key"))]) (guess-language . [(20170620 1008) ((cl-lib (0 5)) (emacs (24))) "Robust automatic language detection" tar ((:commit . "1f1602f74d7159e7fb8c90f92ec5a3d1df5429da") (:authors ("Titus von der Malsburg" . "malsburg@posteo.de")) (:maintainer "Titus von der Malsburg" . "malsburg@posteo.de") (:url . "https://github.com/tmalsburg/guess-language.el"))]) (gtk-pomodoro-indicator . [(20171230 1640) nil "A pomodoro indicator for the GTK tray" tar ((:commit . "eb59b229de0dde307b20654075a9bbac69899a66") (:keywords "convenience" "pomodoro") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/gtk-pomodoro-indicator"))]) (gscholar-bibtex . [(20170913 2157) nil "Retrieve BibTeX from Google Scholar and other online sources(ACM, IEEE, DBLP)" single ((:commit . "ba4ce159e385d695d8560e8b06b3cbe48424861c") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (gs-mode . [(20151202 1006) nil "Major mode for editing GrADS script files" single ((:commit . "1a13051db21b999c7682a015b33a03096ff9d891") (:keywords "grads" "script" "major-mode") (:authors ("Joe Wielgosz" . "joew@cola.iges.org")) (:maintainer "Joe Wielgosz" . "joew@cola.iges.org"))]) (gruvbox-theme . [(20181013 1144) ((autothemer (0 2))) "A retro-groove colour theme for Emacs" tar ((:commit . "39124183cf47d25780cd02e33e57743484b4c680") (:authors ("Jason Milkins" . "jasonm23@gmail.com")) (:maintainer "Jason Milkins" . "jasonm23@gmail.com") (:url . "http://github.com/greduan/emacs-theme-gruvbox"))]) (grunt . [(20160316 1528) ((dash (2 9 0)) (ansi-color (3 4 2)) (emacs (24 3))) "Some glue to stick Emacs and Gruntfiles together" single ((:commit . "4c269e2738658643ec2ed9ef61a2a3d71b08d304") (:keywords "convenience" "grunt") (:authors ("Daniel Gempesaw" . "dgempesaw@sharecare.com")) (:maintainer "Daniel Gempesaw" . "dgempesaw@sharecare.com") (:url . "https://github.com/gempesaw/grunt.el"))]) (gruber-darker-theme . [(20180529 712) nil "Gruber Darker color theme for Emacs 24." single ((:commit . "c7687ec0511941db1371dcd70b31061d74aa5668") (:authors ("Alexey Kutepov" . "reximkut@gmail.com")) (:maintainer "Alexey Kutepov" . "reximkut@gmail.com") (:url . "http://github.com/rexim/gruber-darker-theme"))]) (groovy-mode . [(20181111 1057) ((s (1 12 0)) (emacs (24 3)) (dash (2 13 0))) "Major mode for Groovy source files" tar ((:commit . "f80b6795f645aff592ffbdc6b500084955094f5c") (:keywords "languages") (:authors ("Russel Winder" . "russel@winder.org.uk") ("Jim Morris" . "morris@wolfman.com") ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Russel Winder" . "russel@winder.org.uk"))]) (groovy-imports . [(20161003 851) ((emacs (24 4)) (s (1 10 0)) (pcache (0 3 2))) "Code for dealing with Groovy imports" single ((:commit . "e56d7dda617555ec6205644d32ffddf2e1fa43d9") (:keywords "groovy") (:authors ("Miro Bezjak")) (:maintainer "Miro Bezjak") (:url . "http://www.github.com/mbezjak/emacs-groovy-imports"))]) (grizzl . [(20160818 737) ((cl-lib (0 5)) (emacs (24 3))) "Fast fuzzy search index for Emacs." single ((:commit . "1e917253ce2b846f0272b8356fad3dbff9cd513a") (:keywords "convenience" "usability") (:authors ("Chris Corbyn" . "chris@w3style.co.uk")) (:maintainer "Bozhidar Batsov" . "bozhidar@batsov.com") (:url . "https://github.com/grizzl/grizzl"))]) (grin . [(20110806 658) nil "run grin and grind (python replacements for grep and find) putting hits in a grep buffer" single ((:keywords "python" "grin" "grind" "grep" "find") (:authors ("Darius Powell" . "dariusp686@gmail.com")) (:maintainer "Darius Powell" . "dariusp686@gmail.com") (:url . "http://bitbucket.org/dariusp686/emacs-grin"))]) (greymatters-theme . [(20150621 1123) ((emacs (24))) "Emacs 24 theme with a light background." single ((:commit . "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler"))]) (grep-context . [(20181002 1654) ((emacs (24 4)) (dash (2 12 0)) (cl-lib (0 5 0))) "Increase context in compilation and grep buffers" single ((:commit . "5a4e3efdf775755c1bbefcfe4b461c1166d81d7d") (:keywords "convenience" "search" "grep" "compile") (:authors ("Michał Krzywkowski" . "k.michal@zoho.com")) (:maintainer "Michał Krzywkowski" . "k.michal@zoho.com") (:url . "https://github.com/mkcms/grep-context"))]) (grep-a-lot . [(20131006 1347) nil "manages multiple search results buffers for grep.el" single ((:commit . "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad") (:keywords "tools" "convenience" "search") (:authors ("Avi Rozen" . "avi.rozen@gmail.com")) (:maintainer "Avi Rozen" . "avi.rozen@gmail.com") (:url . "https://github.com/ZungBang/emacs-grep-a-lot"))]) (gregorio-mode . [(20170705 1451) nil "Gregorio Mode for .gabc files" single ((:commit . "736fd3d05fb67f707cca1a7ce24e3ee7ca5e9567") (:keywords "gregorio" "chant") (:authors ("Fr. John Jenkins" . "jenkins@sspx.ng")) (:maintainer "Fr. John Jenkins" . "jenkins@sspx.ng") (:url . "https://jsrjenkins.github.io/gregorio-mode/"))]) (green-screen-theme . [(20180816 1502) nil "A nice color theme for those who miss green CRTs" single ((:commit . "774e8f6c033786406267f71ec07319d906a30b75") (:keywords "faces" "theme") (:authors ("Ricardo Banffy" . "rbanffy@gmail.com")) (:maintainer "Ricardo Banffy" . "rbanffy@gmail.com") (:url . "https://github.com/rbanffy/green-screen-emacs"))]) (green-phosphor-theme . [(20150515 1447) nil "A light color theme with muted, autumnal colors." single ((:commit . "fa42f598626adfdc5450e5c380fa2d5df6110f28") (:keywords "color" "theme") (:authors ("Adam Alpern" . "adam.alpern@gmail.com")) (:maintainer "Adam Alpern" . "adam.alpern@gmail.com") (:url . "http://github.com/aalpern/emacs-color-theme-green-phosphor"))]) (green-is-the-new-black-theme . [(20180323 203) nil "A cool and minimalist green blackened theme engine" single ((:commit . "8a03687a2b8b55c5dc7f099086019278d505d8d8") (:keywords "faces" "themes") (:authors ("Fred Campos" . "fred.tecnologia@gmail.com")) (:maintainer "Fred Campos" . "fred.tecnologia@gmail.com") (:url . "https://github.com/fredcamps/green-is-the-new-black-emacs"))]) (grayscale-theme . [(20171005 802) nil "A simple grayscale theme" single ((:commit . "53ad50e10e68f2f076ebfc96e10ecef7a932d38d") (:keywords "lisp") (:authors ("Kaleb Elwert" . "belak@coded.io")) (:maintainer "Kaleb Elwert" . "belak@coded.io") (:url . "https://github.com/belak/emacs-grayscale-theme"))]) (grass-mode . [(20170503 1500) ((cl-lib (0 2)) (dash (2 8 0))) "Provides Emacs modes for interacting with the GRASS GIS program" single ((:keywords "grass" "gis") (:authors ("Tyler Smith" . "tyler@plantarum.ca")) (:maintainer "Tyler Smith" . "tyler@plantarum.ca"))]) (grapnel . [(20131001 1534) nil "HTTP request lib with flexible callback dispatch" single ((:commit . "fbd0f9a51139973d35e4014855964fa435e8ecaf") (:authors ("David Leatherman" . "leathekd@gmail.com")) (:maintainer "David Leatherman" . "leathekd@gmail.com") (:url . "http://www.github.com/leathekd/grapnel"))]) (graphviz-dot-mode . [(20181118 551) nil "Mode for the dot-language used by graphviz (att)." single ((:commit . "243de72e09ddd5cdc4863613af8b749827a5e1cd") (:keywords "mode" "dot" "dot-language" "dotlanguage" "graphviz" "graphs" "att") (:maintainer "Pieter Pareit" . "pieter.pareit@gmail.com") (:url . "http://ppareit.github.com/graphviz-dot-mode/"))]) (graphql-mode . [(20180303 2358) ((emacs (24 3))) "Major mode for editing GraphQL schemas" single ((:commit . "36b1a4ed9fe78ccd1f386111644e69a5424a1a7b") (:keywords "languages") (:authors ("David Vazquez Pua" . "davazp@gmail.com")) (:maintainer "David Vazquez Pua" . "davazp@gmail.com"))]) (graphql . [(20180912 31) ((emacs (25))) "GraphQL utilities" single ((:commit . "e2b309689f4faf9225f290080f836e988c5a576d") (:keywords "hypermedia" "tools" "lisp") (:authors ("Sean Allred" . "code@seanallred.com")) (:maintainer "Sean Allred" . "code@seanallred.com") (:url . "https://github.com/vermiculus/graphql.el"))]) (graphene-meta-theme . [(20161204 1607) nil "Integrated theming for common packages" single ((:commit . "62cc73fee31f1bd9474027b83a249feee050271e") (:keywords "defaults") (:authors ("Robert Dallas Gray" . "mail@robertdallasgray.com")) (:maintainer "Robert Dallas Gray" . "mail@robertdallasgray.com") (:url . "https://github.com/rdallasgray/graphene"))]) (graphene . [(20180529 1112) ((dash (2 10 0)) (exec-path-from-shell (1 9)) (ppd-sr-speedbar (0 0 6)) (sr-speedbar (20140505)) (ido-completing-read+ (4 3)) (smex (3 0)) (web-mode (11 2)) (smartparens (1 8 0)) (graphene-meta-theme (0 0 2)) (flycheck (0 23)) (company (0 8 12))) "Friendly Emacs defaults" tar ((:commit . "cc8477fcfb7771ea4e5bbaf3c01f9e679234c1c1"))]) (grandshell-theme . [(20180606 517) nil "Dark color theme for Emacs > 24 with intensive colors." tar ((:commit . "0ed8e4273607dd4fcaa742b4097259233b09eda6"))]) (grails-projectile-mode . [(20160327 1324) ((projectile (0 10 0)) (emacs (24)) (cl-lib (0 5))) "Grails mode with Projectile for projects management." tar ((:commit . "8efca50ce92b556fe9d467b157d7aec635bcc017") (:keywords "grails" "projectile") (:authors ("Yves Zoundi" . "rimerosolutions@gmail.com")) (:maintainer "Yves Zoundi") (:url . "https://github.com/yveszoundi/grails-projectile-mode"))]) (grails-mode . [(20160504 911) nil "minor-mode that adds some Grails project management to a grails project" single ((:commit . "f80b6795f645aff592ffbdc6b500084955094f5c") (:keywords "languages") (:authors ("Jim Morris" . "morris@wolfman.com")) (:maintainer "Russel Winder" . "russel@winder.org.uk") (:url . "http://blog.wolfman.com"))]) (grails . [(20160417 636) ((emacs (24))) "Minor mode for Grails projects" single ((:commit . "fa638abe5c37f3f8af4fcd32f212453185ce50b1") (:url . "https://github.com/lifeisfoo/emacs-grails"))]) (gradle-mode . [(20150313 1905) ((s (1 8 0))) "Gradle integration with Emacs' compile" single ((:commit . "e4d665d5784ecda7ddfba015f07c69be3cfc45f2") (:keywords "gradle") (:authors ("Daniel Mijares" . "daniel.j.mijares@gmail.com")) (:maintainer "Daniel Mijares" . "daniel.j.mijares@gmail.com") (:url . "http://github.com/jacobono/emacs-gradle-mode"))]) (grab-x-link . [(20180205 1146) ((emacs (24)) (cl-lib (0 5))) "Grab links from X11 apps and insert into Emacs" single ((:commit . "d19f0c0da0ddc55005a4c1cdc2b8c5de8bea1e8c") (:keywords "hyperlink") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/grab-x-link"))]) (grab-mac-link . [(20180328 1445) ((emacs (24))) "Grab link from Mac Apps and insert it into Emacs" single ((:commit . "35edb57d136c2a9726fd14e6a59cce4fc0248771") (:keywords "mac" "hyperlink") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/grab-mac-link.el"))]) (gpastel . [(20180420 650) ((emacs (24 3))) "Integrates GPaste with the kill-ring" single ((:commit . "ae11a0ae58577321605c338809fc5ae29b38fc72") (:keywords "tools") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://gitlab.petton.fr/DamienCassou/desktop-environment"))]) (govet . [(20170808 1724) nil "linter/problem finder for the Go source code" single ((:commit . "1c05817cf8b96589076c7ac4e52ee58a860a0cbf") (:url . "https://godoc.org/golang.org/x/tools/cmd/vet"))]) (govc . [(20180524 2023) ((emacs (24 3)) (dash (1 5 0)) (s (1 9 0)) (magit-popup (2 0 50)) (json-mode (1 6 0))) "Interface to govc for managing VMware ESXi and vCenter" single ((:commit . "ac4f46595a7bf1d15d7bdf10d6132b39ea856fdf") (:keywords "convenience") (:authors ("The govc developers")) (:maintainer "The govc developers") (:url . "https://github.com/vmware/govmomi/tree/master/govc/emacs"))]) (goto-last-change . [(20150109 1823) nil "Move point through buffer-undo-list positions" single ((:commit . "58b0928bc255b47aad318cd183a5dce8f62199cc") (:keywords "convenience") (:authors ("Kevin Rodgers" . "ihs_4664@yahoo.com")) (:maintainer "Kevin Rodgers" . "ihs_4664@yahoo.com") (:url . "https://github.com/camdez/goto-last-change.el"))]) (goto-gem . [(20140729 1845) ((s (1 9 0))) "Open dired in gem directory" single ((:commit . "e3206f11f48bb7e798514a4ca2c2f60649613e5e") (:keywords "gemfile" "convenience") (:authors ("Peter Stiernström" . "peter@stiernstrom.se")) (:maintainer "Peter Stiernström" . "peter@stiernstrom.se"))]) (goto-chg . [(20180105 1833) nil "goto last change" single ((:commit . "e5b38e4e1378f6ea48fa9e8439f49c2998654aa4") (:keywords "convenience" "matching") (:authors ("David Andersson <l.david.andersson(at)sverige.nu>")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@github.com") (:url . "https://github.com/emacs-evil/goto-chg"))]) (gotham-theme . [(20171013 1916) nil "A very dark Emacs color theme." single ((:commit . "5e97554d1f9639698faedb0660e63694be33bd84") (:authors ("Vasilij Schneidermann" . "v.schneidermann@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com") (:url . "https://github.com/wasamasa/gotham-theme"))]) (gotest . [(20180617 1333) ((emacs (24 3)) (s (1 11 0)) (f (0 19 0)) (go-mode (1 5 0))) "Launch GO unit tests" single ((:commit . "36e09a6bf1face4c56d4a7707935c992786e0076") (:keywords "languages" "go" "tests") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/gotest.el"))]) (gorepl-mode . [(20170905 945) ((emacs (24)) (s (1 11 0)) (f (0 19 0)) (hydra (0 13 0))) "Go REPL Interactive Development in top of Gore" single ((:commit . "bbd27f6a0a77f484e2a3f082d70dc69da63ae52a") (:keywords "languages" "go" "golang" "gorepl") (:authors ("Manuel Alonso" . "manuteali@gmail.com")) (:maintainer "Manuel Alonso" . "manuteali@gmail.com") (:url . "http://www.github.com/manute/gorepl-mode"))]) (gore-mode . [(20151123 1927) ((go-mode (1 0 0))) "Simple mode for gore, a command-line evaluator for golang." single ((:commit . "94d7f3e99104e06167967c98fdc201049c433c2d") (:keywords "go" "repl") (:authors ("Sergey Pashaev" . "sergey.pashaev@gmail.com")) (:maintainer "Sergey Pashaev" . "sergey.pashaev@gmail.com"))]) (goose-theme . [(20160828 1245) ((emacs (24 1))) "A gray color theme" single ((:commit . "acd017b50ab25a75fd1331eb3de66467e2042e9c") (:authors ("Stephen Whipple" . "shw@wicdmedia.org")) (:maintainer "Stephen Whipple" . "shw@wicdmedia.org") (:url . "https://github.com/thwg/goose-theme"))]) (google-translate . [(20180926 1925) nil "Emacs interface to Google Translate." tar ((:commit . "eb1c4f51d522d2252dadfb4cd7ea045ccd344b98"))]) (google-this . [(20170810 1215) ((emacs (24 1))) "A set of functions and bindings to google under point." single ((:commit . "8a2e3ca5da6a8c89bfe99a21486c6c7db125dc84") (:keywords "convenience" "hypermedia") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Malabarba/emacs-google-this"))]) (google-maps . [(20171002 1434) ((emacs (24 3))) "Access Google Maps from Emacs" tar ((:commit . "c0e5dccfdc9f7f77ff8f29177547be47833d7156") (:keywords "comm") (:authors ("Julien Danjou" . "julien@danjou.info")) (:maintainer "Julien Danjou" . "julien@danjou.info") (:url . "https://julien.danjou.info/projects/emacs-packages#google-maps"))]) (google-contacts . [(20180919 1314) ((oauth2 (0 10)) (cl-lib (0 5))) "Support for Google Contacts in Emacs" tar ((:commit . "2273582713712a58e71156a8a29972d42e8e690e") (:keywords "comm") (:authors ("Julien Danjou" . "julien@danjou.info")) (:maintainer "Julien Danjou" . "julien@danjou.info") (:url . "http://julien.danjou.info/projects/emacs-packages#google-contacts"))]) (google-c-style . [(20180130 1736) nil "Google's C/C++ style for c-mode" single ((:commit . "9f41862c0efa7681e2147910d39629c73a2b2702") (:keywords "c" "tools"))]) (google . [(20140416 1748) nil "Emacs interface to the Google API" single ((:commit . "3b3189a8b201c8d36fed6e61496274e530dd40bd") (:keywords "comm" "processes" "tools") (:authors ("Edward O'Connor" . "ted@oconnor.cx")) (:maintainer "Edward O'Connor" . "ted@oconnor.cx"))]) (gom-mode . [(20131008 253) nil "Major mode for Gomfile" single ((:commit . "972e33df1d38ff323bc97de87477305826013701") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-gom-mode"))]) (golint . [(20180221 2015) nil "lint for the Go source code" single ((:commit . "c67002cb31c3a748b7688c27f20d8358b4193582") (:url . "https://github.com/golang/lint"))]) (goldendict . [(20180121 920) ((emacs (24 4)) (cl-lib (0 5))) "query word smartly with goldendict.el" single ((:commit . "1aac19daaec811deb9afe45eea4929309c09ac8b") (:keywords "dict" "goldendict") (:url . "https://github.com/stardiviner/goldendict.el"))]) (golden-ratio-scroll-screen . [(20170224 229) nil "Scroll half screen down or up, and highlight current line" single ((:commit . "44e947194d3e5cbe0fd2f3c4886a4e6e1a0c0791") (:keywords "scroll" "screen" "highlight") (:authors ("纪秀峰 <jixiuf at gmail dot com>")) (:maintainer "纪秀峰 <jixiuf at gmail dot com>") (:url . "https://github.com/jixiuf/golden-ratio-scroll-screen"))]) (golden-ratio . [(20150819 1120) nil "Automatic resizing of Emacs windows to the golden ratio" single ((:commit . "72b028808b41d23fa3f7e8c0d23d2c475e7b46ae") (:keywords "window" "resizing") (:authors ("Roman Gonzalez" . "romanandreg@gmail.com")) (:maintainer "Roman Gonzalez" . "romanandreg@gmail.com"))]) (gold-mode . [(20140607 206) ((sws-mode (0))) "Major mode for editing .gold files" single ((:commit . "6d3aa59602b1b835495271c8c9741ac344c2eab1") (:keywords "golang" "template" "gold") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/yuutayamada/gold-mode-el"))]) (godoctor . [(20180710 2152) nil "Frontend for godoctor" single ((:commit . "4b45ff3d0572f0e84056e4c3ba91fcc178199859") (:keywords "go" "golang" "refactoring") (:authors ("Sangho Na" . "microamp@protonmail.com")) (:maintainer "Sangho Na" . "microamp@protonmail.com") (:url . "https://github.com/microamp/godoctor.el"))]) (god-mode . [(20180117 1134) nil "God-like command entering minor mode" tar ((:commit . "344167ed9b4c212273dd056e7481cf1373b461d0") (:authors ("Chris Done" . "chrisdone@gmail.com")) (:maintainer "Chris Done" . "chrisdone@gmail.com") (:url . "https://github.com/chrisdone/god-mode"))]) (gobgen . [(20161020 1523) ((emacs (24 4))) "Generate GObject descendants using a detailed form" single ((:commit . "ed2c2b0d217deae293096f3cf14aa492791ddd4f") (:keywords "gobject" "glib" "gtk" "helper" "utilities") (:authors ("Gergely Polonkai" . "gergely@polonkai.eu")) (:maintainer "Gergely Polonkai" . "gergely@polonkai.eu"))]) (go-tag . [(20180227 411) ((emacs (24 0)) (go-mode (1 5 0))) "Edit Golang struct field tag" single ((:commit . "59b243f2fa079d9de9d56f6e2d94397e9560310a") (:keywords "tools") (:authors ("Brantou" . "brantou89@gmail.com")) (:maintainer "Brantou" . "brantou89@gmail.com") (:url . "https://github.com/brantou/emacs-go-tag"))]) (go-stacktracer . [(20150430 2142) nil "parse Go stack traces" single ((:commit . "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976") (:keywords "tools") (:authors ("Samer Masterson" . "samer@samertm.com")) (:maintainer "Samer Masterson" . "samer@samertm.com") (:url . "https://github.com/samertm/go-stacktracer.el"))]) (go-snippets . [(20180113 611) ((yasnippet (0 8 0))) "Yasnippets for go" tar ((:commit . "d437df148879566ffe7f2e503a3cf2602aa9fb28"))]) (go-scratch . [(20150810 440) ((go-mode (1 3 1)) (emacs (24))) "*scratch* buffer for Go" single ((:commit . "3f68cbcce04f59eb8e83af109164731ec0454be0") (:keywords "languages" "go") (:authors ("Emanuel Evans" . "mail@emanuel.industries")) (:maintainer "Emanuel Evans" . "mail@emanuel.industries"))]) (go-rename . [(20180627 648) ((go-mode (1 3 1))) "Integration of the 'gorename' tool into Emacs." single ((:commit . "120fb911f1d8038f828da85eed8aaad977dabd8c") (:keywords "tools"))]) (go-projectile . [(20181023 2144) ((projectile (0 10 0)) (go-mode (0)) (go-eldoc (0 16)) (go-rename (0)) (go-guru (0))) "Go add-ons for Projectile" single ((:commit . "7910884b4de560f3fc70b53752f658ef9cdc02cd") (:keywords "project" "convenience") (:authors ("Doug MacEachern" . "dougm@vmware.com")) (:maintainer "Doug MacEachern" . "dougm@vmware.com") (:url . "https://github.com/dougm/go-projectile"))]) (go-playground-cli . [(20160503 914) ((emacs (24)) (request (0 2 0)) (deferred (0 3 2)) (names (20151201 404)) (s (1 10 0)) (f (0 17 2)) (let-alist (1 0 4)) (cl-lib (0 5))) "Go Playground client tool" single ((:commit . "60beebd98e3930641d41cee0189c579626f223bc") (:authors ("KOBAYASHI Shigeru (kosh)" . "shigeru.kb@gmail.com")) (:maintainer "KOBAYASHI Shigeru (kosh)" . "shigeru.kb@gmail.com") (:url . "https://github.com/kosh04/go-playground-cli"))]) (go-playground . [(20181103 1846) ((emacs (24)) (go-mode (1 4 0)) (gotest (0 13 0))) "Local Golang playground for short snippets." single ((:commit . "fe75581eb81bb13ab129d2bbbc4af9a8b605fc3b") (:keywords "tools" "golang") (:authors ("Alexander I.Grafov (axel)" . "grafov@gmail.com")) (:maintainer "Alexander I.Grafov (axel)" . "grafov@gmail.com") (:url . "https://github.com/grafov/go-playground"))]) (go-mode . [(20181012 329) nil "Major mode for the Go programming language" single ((:commit . "120fb911f1d8038f828da85eed8aaad977dabd8c") (:keywords "languages" "go") (:authors ("The go-mode Authors")) (:maintainer "The go-mode Authors") (:url . "https://github.com/dominikh/go-mode.el"))]) (go-imports . [(20180710 528) nil "Insert go import statement given package name" tar ((:commit . "d9950309c868aa46c45f8671413e53f97dc7fe0b") (:keywords "tools" "go" "import") (:authors ("Yaz Saito")) (:maintainer "Yaz Saito") (:url . "https://github.com/yasushi-saito/go-imports"))]) (go-impl . [(20170125 1552) ((emacs (24 3)) (go-mode (1 3 0))) "impl integration for go-mode" single ((:commit . "69f0d0ef05771487e15abec500cd06befd171abf") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-go-impl"))]) (go-imenu . [(20181029 1029) ((emacs (24 3))) "Enhance imenu for go language" single ((:commit . "4f3f334ed0b6f6afaca6b9775636a52ad3843053") (:keywords "tools") (:authors ("Brantou" . "brantou89@gmail.com")) (:maintainer "Brantou" . "brantou89@gmail.com") (:url . "https://github.com/brantou/go-imenu.el"))]) (go-guru . [(20181012 330) ((go-mode (1 3 1)) (cl-lib (0 5))) "Integration of the Go 'guru' analysis tool into Emacs." single ((:commit . "120fb911f1d8038f828da85eed8aaad977dabd8c") (:keywords "tools"))]) (go-gopath . [(20160705 1034) ((cl-lib (0 5))) "Will guess GOPATH using gb and projectile." single ((:commit . "5172fc53f21edbf9347d5ee7d1d745da1ec88a15") (:authors ("Andrew Kirilenko" . "andrew.kirilenko.main@gmail.com")) (:maintainer "Andrew Kirilenko" . "andrew.kirilenko.main@gmail.com") (:url . "http://github.com/iced/go-gopath/"))]) (go-gen-test . [(20171023 358) ((emacs (24 3)) (s (1 12))) "Generate tests for go code with gotests" single ((:commit . "44c202ac97e728e93a35cee028a0ea8dd6e4292c") (:keywords "languages") (:authors ("Sergey Kostyaev" . "feo.me@ya.ru")) (:maintainer "Sergey Kostyaev" . "feo.me@ya.ru") (:url . "https://github.com/s-kostyaev/go-gen-test"))]) (go-fill-struct . [(20171225 331) ((emacs (24))) "Fill struct for golang." single ((:commit . "a613d0b378473eef39e8fd5724abe790aea84321") (:keywords "tools") (:authors ("Sergey Kostyaev" . "feo.me@ya.ru")) (:maintainer "Sergey Kostyaev" . "feo.me@ya.ru") (:url . "https://github.com/s-kostyaev/go-fill-struct"))]) (go-errcheck . [(20160723 43) nil "errcheck integration for go-mode" single ((:commit . "9db21eccecedc2490793f176246094167164af31") (:authors ("Dominik Honnef" . "dominikh@fork-bomb.org")) (:maintainer "Dominik Honnef" . "dominikh@fork-bomb.org"))]) (go-eldoc . [(20170305 1427) ((emacs (24 3)) (go-mode (1 0 0))) "eldoc for go-mode" single ((:commit . "cbbd2ea1e94a36004432a9ac61414cb5a95a39bd") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-go-eldoc"))]) (go-dlv . [(20160517 2046) ((go-mode (1 3 1))) "Go Delve - Debug Go programs interactively with the GUD." single ((:commit . "45a9e8a047c9995eb7c802268d96b3e527569f41") (:keywords "go" "debug" "debugger" "delve" "interactive" "gud") (:authors ("Marko Bencun" . "mbencun@gmail.com")) (:maintainer "Marko Bencun" . "mbencun@gmail.com") (:url . "https://github.com/benma/go-dlv.el/"))]) (go-direx . [(20150316 143) ((direx (1 0 0)) (cl-lib (0 5))) "Tree style source code viewer for Go language" single ((:commit . "8f2206469328ee932c7f1892f5e1fb02dec98432") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-go-direx"))]) (go-complete . [(20151015 928) ((go-mode (0)) (cl-lib (0 5))) "Native code completion for Go" single ((:commit . "e39efc356f6e19f17db3f3d2c81f28d38b31a55e") (:keywords "go" "golang" "completion") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/vibhavp/go-complete"))]) (go-autocomplete . [(20170626 1023) ((auto-complete (1 4 0))) "auto-complete-mode backend for go-mode" single ((:commit . "7b1d4e18cdc58a74dc1bd4c2d45b3f1b2ca227c3") (:keywords "languages") (:authors ("Mikhail" . "tensai@cirno.in")) (:maintainer "Mikhail" . "tensai@cirno.in"))]) (go-add-tags . [(20161123 1227) ((emacs (24 3)) (s (1 11 0))) "Add field tags for struct fields" single ((:commit . "54879945e46a0884c5f93d7fd6c866a9cdf401ac") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-go-add-tags"))]) (go . [(20161111 249) ((emacs (24))) "Play GO, translate and transfer between GO back ends" tar ((:commit . "ff45fb44d9cb6579d8511d8b6156ed0b34d5ac97") (:keywords "game" "go" "sgf") (:authors ("Eric Schulte" . "schulte.eric@gmail.com")) (:maintainer "Eric Schulte" . "schulte.eric@gmail.com") (:url . "http://eschulte.github.io/el-go/"))]) (gnus-x-gm-raw . [(20140610 731) ((log4e (0 2 0)) (yaxception (0 1))) "Search mail of Gmail using X-GM-RAW as web interface" single ((:commit . "978bdfcecc8844465b71641c2e909fcdc66b22be") (:keywords "gnus") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/gnus-x-gm-raw"))]) (gnus-summary-ext . [(20180113 1316) nil "Extra limit and process mark commands for the gnus summary buffer" single ((:commit . "025fd853fe9280ae696a89ec2c2cac9befd010aa") (:keywords "comm") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/gnus-summary-ext"))]) (gnus-select-account . [(20170722 511) nil "Select an account before writing a mail in gnus" single ((:commit . "ddc8c135eeaf90f5b6692a033af2badae36e68ce") (:keywords "convenience") (:authors ("Feng Shu " . "tumashu@163.com")) (:maintainer "Feng Shu " . "tumashu@163.com") (:url . "https://github.com/tumashu/gnus-select-account"))]) (gnus-desktop-notify . [(20180623 1538) ((gnus (1 0))) "Gnus Desktop Notification global minor mode" single ((:commit . "44ebe0241a19f4052cd427dff408206542aa3c8f") (:authors ("Yuri D'Elia <wavexx AT thregr.org>")) (:maintainer "Yuri D'Elia <wavexx AT thregr.org>") (:url . "http://www.thregr.org/~wavexx/software/gnus-desktop-notify.el/"))]) (gnus-alias . [(20150316 42) nil "an alternative to gnus-posting-styles" single ((:commit . "9447d3ccb4c0e75d0468899cccff7aa249657bac") (:keywords "personality" "identity" "news" "mail" "gnus") (:authors ("Joe Casadonte" . "emacs@northbound-train.com")) (:maintainer "Mark A. Hershberger" . "mah@everybody.org"))]) (gnuplot-mode . [(20171013 1616) nil "Major mode for editing gnuplot scripts" single ((:commit . "601f6392986f0cba332c87678d31ae0d0a496ce7") (:keywords "gnuplot" "plotting") (:url . "https://github.com/mkmcc/gnuplot-mode"))]) (gnuplot . [(20141231 2137) nil "drive gnuplot from within emacs" tar ((:commit . "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9") (:keywords "gnuplot" "plotting") (:authors ("Bruce Ravel" . "bruceravel1@gmail.com")) (:maintainer "Bruce Ravel" . "bruceravel1@gmail.com"))]) (gnu-apl-mode . [(20180130 700) ((emacs (24))) "Integrate GNU APL with Emacs" tar ((:commit . "fa569827c916ed46e410e9f28e4b4d28f8567654") (:keywords "languages" "apl") (:url . "https://github.com/lokedhs/gnu-apl-mode"))]) (gntp . [(20141025 250) nil "Growl Notification Protocol for Emacs" single ((:commit . "767571135e2c0985944017dc59b0be79af222ef5") (:authors ("Engelke Eschner" . "tekai@gmx.li")) (:maintainer "Engelke Eschner" . "tekai@gmx.li"))]) (gnomenm . [(20150316 1918) ((s (1 9 0)) (dash (2 3 0)) (kv (0 0 19))) "Emacs interface to Gnome nmcli command" single ((:commit . "9065cda44ffc9e06239b8189a0154d31314c3b4d") (:keywords "processes" "hardware") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "http://github.com/nicferrier/emacs-nm"))]) (gnome-calendar . [(20161110 1256) nil "Integration with the GNOME Shell calendar" single ((:commit . "489f9f15f7bb35696b1cc19db75b554ae8328df2") (:keywords "gnome" "calendar") (:authors ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Nicolas Petton" . "nicolas@petton.fr"))]) (gmpl-mode . [(20171031 2054) ((emacs (24))) "Major mode for editing GMPL(MathProg) files" single ((:commit . "c5d362169819ee8b8e8954145daee7e260c54921") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (gmail2bbdb . [(20170423 1144) nil "import email and name into bbdb from vcard." single ((:commit . "a84fa385cfaec7fc5f1518c368e52722da139f99") (:keywords "vcard" "bbdb" "email" "contact" "gmail") (:authors ("Chen Bin" . "chenbin.sh@gmail.com")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "http://github.com/redguardtoo/gmail2bbdb"))]) (gmail-message-mode . [(20160627 1847) ((ham-mode (1 0))) "A major-mode for editing gmail messages using markdown syntax." single ((:commit . "ec36672a9dc93c09ebe2f77597b498d11883d008") (:keywords "mail" "convenience" "emulation") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Bruce-Connor/gmail-message-mode"))]) (glsl-mode . [(20170927 1436) nil "major mode for Open GLSL shader files" single ((:commit . "384968506cf25c5c2df61b32fdfdbd041e3bf651") (:keywords "languages") (:url . "http://artis.inrialpes.fr/~Xavier.Decoret/resources/glsl-mode/"))]) (glab . [(20180821 1551) nil "minuscule client library for the Gitlab API" single ((:commit . "d75ba1bd8843f53ae3e37b206187b3b97d9f3540") (:keywords "tools") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/magit/ghub"))]) (gl-conf-mode . [(20170714 1310) ((emacs (24 3))) "Mode for editing gitolite config files" single ((:commit . "9136a9b737e0a5b6471a91571d104c487c43f35b") (:keywords "git" "gitolite" "languages") (:authors ("Luis Lloret")) (:maintainer "Luis Lloret") (:url . "https://github.com/llloret/gitolite-emacs"))]) (gitter . [(20180122 856) ((emacs (24 4)) (let-alist (1 0 4))) "An Emacs Gitter client" single ((:commit . "11cb9b4b45f67bdc24f055a9bfac21d2bd19ea1a") (:keywords "gitter" "chat" "client" "internet") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/gitter.el"))]) (gitpatch . [(20170722 410) ((emacs (24 3))) "Git-format patch toolkit" single ((:commit . "577d5adf65c8133caa325c10e89e1e2fc323c907") (:keywords "convenience") (:authors ("Feng Shu" . "tumashu@163.com")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/gitpatch"))]) (gitolite-clone . [(20160609 2355) ((dash (2 10 0)) (s (1 9 0)) (pcache (0 3 1)) (emacs (24))) "Clone gitolite repositories from a completing list" single ((:commit . "d8a4c2875c984e51137c980b5773f42703602721") (:keywords "gitolite" "clone" "git") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/gitolite-clone"))]) (gitlab-ci-mode-flycheck . [(20180604 2204) ((emacs (25)) (flycheck (31)) (gitlab-ci-mode (1))) "Flycheck support for ‘gitlab-ci-mode’" single ((:commit . "30ea0eab74b24818f187242b079845785035e967") (:keywords "tools" "vc" "convenience") (:authors ("Joe Wreschnig")) (:maintainer "Joe Wreschnig") (:url . "https://gitlab.com/joewreschnig/gitlab-ci-mode-flycheck/"))]) (gitlab-ci-mode . [(20180604 2203) ((emacs (25)) (yaml-mode (0 0 12))) "mode for editing GitLab CI files" single ((:commit . "b9fd692d27351e959c4d272a2149def63ef1c00c") (:keywords "tools" "vc") (:authors ("Joe Wreschnig")) (:maintainer "Joe Wreschnig") (:url . "https://gitlab.com/joewreschnig/gitlab-ci-mode/"))]) (gitlab . [(20180312 1647) ((s (1 9 0)) (dash (2 9 0)) (pkg-info (0 5 0)) (request (0 1 0))) "Emacs client for Gitlab" tar ((:commit . "68318aca3206d50701039c9aae39734ca29a49f9") (:keywords "gitlab") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/emacs-gitlab"))]) (gitignore-templates . [(20180327 1326) ((emacs (24 3))) "Access GitHub .gitignore templates" single ((:commit . "b0705b8de4cbdd631c64c4e0024d62ba4ad68052") (:keywords "tools") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/gitignore-templates.el"))]) (gitignore-mode . [(20180318 1956) nil "Major mode for editing .gitignore files" single ((:commit . "55468314a5f6b77d2c96be62c7005ac94545e217") (:keywords "convenience" "vc" "git") (:authors ("Sebastian Wiesner" . "lunaryorn@gmail.com")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/magit/git-modes"))]) (github-theme . [(20170630 2201) nil "The GitHub color theme for Emacs." single ((:commit . "29f00a51d949a248a5f6355a97131e216747c797") (:authors ("Philip Arvidsson" . "philip@philiparvidsson.com")) (:maintainer "Philip Arvidsson" . "philip@philiparvidsson.com") (:url . "https://github.com/philiparvidsson/GitHub-Theme-for-Emacs"))]) (github-stars . [(20181118 448) ((emacs (25 1)) (ghub (2 0 0))) "Browse your Github Stars" single ((:commit . "807de6da3ab32d278d68a1b709c012f6bfa4d280") (:keywords "tools") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/github-stars.el"))]) (github-search . [(20170824 323) ((magit (0 8 1)) (gh (1 0 0))) "Clone repositories by searching github" single ((:commit . "c5fa1d9f8f9bcf201fa31478a6f5e02ed5ac086b") (:keywords "github" "search" "clone" "api" "gh" "magit" "vc" "tools") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/github-search"))]) (github-pullrequest . [(20170116 616) ((emacs (24 4)) (request (0 2 0)) (dash (2 11 0)) (magit (2 10 0))) "Create and fetch Github Pull requests with ease" single ((:commit . "6ae5c38b0fc15b638b5ba4490112d9822ce5e267") (:keywords "tools") (:authors ("Jakob Lind" . "karl.jakob.lind@gmail.com")) (:maintainer "Jakob Lind" . "karl.jakob.lind@gmail.com") (:url . "https://github.com/jakoblind/github-pullrequest"))]) (github-notifier . [(20180421 316) ((emacs (24))) "Displays your GitHub notifications unread count in mode-line" single ((:commit . "274f3812926ea371346f639fcee98066f6e8c96f") (:keywords "github" "mode-line") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/github-notifier.el"))]) (github-modern-theme . [(20171109 1251) nil "The GitHub color theme for Emacs." single ((:commit . "a7e7b8e5e9c122138e79e837caf9b7299e748d44") (:authors ("Philip Arvidsson" . "philip@philiparvidsson.com")) (:maintainer "Philip Arvidsson" . "philip@philiparvidsson.com") (:url . "https://github.com/philiparvidsson/GitHub-Theme-for-Emacs"))]) (github-issues . [(20160616 1841) ((emacs (24))) "Functions and modes for managing GitHub projects' issues" single ((:commit . "816f7712b0eb05bffec0add3507302862d2629c4") (:keywords "github" "issues") (:authors ("Leandro M. López (inkel)" . "inkel.ar@gmail.com")) (:maintainer "Leandro M. López (inkel)" . "inkel.ar@gmail.com") (:url . "http://inkel.github.com/github-issues.el/"))]) (github-elpa . [(20180831 811) ((package-build (1 0)) (commander (0 7 0)) (git (0 1 1))) "Build and publish ELPA repositories with GitHub Pages" tar ((:commit . "32979fa1080f19d10c108d2776fbfe16547b4cf8") (:authors (nil . "10sr<8slashes+el@gmail.com>")) (:maintainer nil . "10sr<8slashes+el@gmail.com>") (:url . "https://github.com/10sr/github-elpa"))]) (github-clone . [(20160623 310) ((gh (0 7 2)) (magit (2 1 0)) (emacs (24 4))) "Fork and clone github repos" single ((:commit . "467b40ca60a6c26257466ebc43c74414df7f19cc") (:keywords "vc" "tools") (:authors ("Charles L.G. Comstock" . "dgtized@gmail.com")) (:maintainer "Charles L.G. Comstock" . "dgtized@gmail.com") (:url . "https://github.com/dgtized/github-clone.el"))]) (github-browse-file . [(20160205 1427) ((cl-lib (0 5))) "View the file you're editing on GitHub" single ((:commit . "9742a5183af853788c6ecb83fb7ee0b00d1675ac") (:keywords "convenience" "vc" "git" "github") (:authors ("Ozan Sener" . "ozan@ozansener.com")) (:maintainer "Ozan Sener" . "ozan@ozansener.com") (:url . "https://github.com/osener/github-browse-file"))]) (gitconfig-mode . [(20180318 1956) nil "Major mode for editing .gitconfig files" single ((:commit . "55468314a5f6b77d2c96be62c7005ac94545e217") (:keywords "convenience" "vc" "git") (:authors ("Sebastian Wiesner" . "lunaryorn@gmail.com")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/magit/git-modes"))]) (gitconfig . [(20130718 935) nil "Emacs lisp interface to work with git-config variables" single ((:commit . "7612a37ca14009cac8fb8d6b6f54adad739a5741") (:keywords "git" "gitconfig" "git-config") (:authors ("Samuel Tonini")) (:maintainer "Samuel Tonini"))]) (gitattributes-mode . [(20180318 1956) nil "Major mode for editing .gitattributes files" single ((:commit . "55468314a5f6b77d2c96be62c7005ac94545e217") (:keywords "convenience" "vc" "git") (:authors ("Rüdiger Sonderfeld" . "ruediger@c-plusplus.net")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/magit/git-modes"))]) (git-wip-timemachine . [(20150408 1006) ((s (1 9 0))) "Walk through git-wip revisions of a file" single ((:commit . "ed4c7931a5f5233bf3e358b1e81647d063526460") (:keywords "git") (:authors ("Tim Krones" . "t.krones@gmx.net")) (:maintainer "Tim Krones" . "t.krones@gmx.net") (:url . "https://github.com/itsjeyd/git-wip-timemachine"))]) (git-timemachine . [(20181114 1342) ((emacs (24 3))) "Walk through git revisions of a file" single ((:commit . "4eb2ee6eabcc437bc3a1addc19ba38eed165743d") (:keywords "git") (:authors ("Peter Stiernström" . "peter@stiernstrom.se")) (:maintainer "Peter Stiernström" . "peter@stiernstrom.se") (:url . "https://github.com/pidu/git-timemachine"))]) (git-ps1-mode . [(20181115 349) nil "Global minor-mode to print __git_ps1" single ((:commit . "b9188e26a64fa6f8678da6cbf5e3e865065f4f04") (:keywords "utility" "mode-line" "git") (:authors ("10sr <8slashes+el [at] gmail [dot] com>")) (:maintainer "10sr <8slashes+el [at] gmail [dot] com>") (:url . "https://github.com/10sr/git-ps1-mode-el"))]) (git-msg-prefix . [(20180118 1446) ((emacs (24)) (s (1 10 0)) (dash (2 9 0))) "Insert commit message prefix (issue number)" single ((:commit . "848f2c7475f5e4937b09f55e85ea89a3be5f8588") (:keywords "vc" "tools") (:authors ("Raimon Grau" . "raimonster@gmail.com")) (:maintainer "Raimon Grau" . "raimonster@gmail.com") (:url . "http://github.com/kidd/git-msg-prefix.el"))]) (git-messenger . [(20170102 440) ((emacs (24 3)) (popup (0 5 0))) "Pop up last commit information of current line" single ((:commit . "83815915eb8c1cb47443ff34bca3fecf7d2edf3a") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-git-messenger"))]) (git-link . [(20181031 259) ((emacs (24 3))) "Get the GitHub/Bitbucket/GitLab URL for a buffer location" single ((:commit . "976723dfdb9ae42e093a3cb32fc41841e94201e6") (:keywords "git" "vc" "github" "bitbucket" "gitlab" "convenience") (:authors ("Skye Shaw" . "skye.shaw@gmail.com")) (:maintainer "Skye Shaw" . "skye.shaw@gmail.com") (:url . "http://github.com/sshaw/git-link"))]) (git-lens . [(20180328 1417) ((emacs (24 4))) "Show new, deleted or modified files in branch" single ((:commit . "ea49e2e005af977a08331f8caa8f64d102b3b932") (:keywords "vc" "convenience") (:authors ("Peter Stiernström" . "peter@stiernstrom.se")) (:maintainer "Peter Stiernström" . "peter@stiernstrom.se") (:url . "https://github.com/pidu/git-lens"))]) (git-io . [(20180317 1752) ((emacs (24 4))) "git.io integration" single ((:commit . "48753acba73b48b997bb678fb5e2a938ae63b5d6") (:keywords "convenience" "files") (:authors ("Tejas Bubane" . "tejasbubane@gmail.com")) (:maintainer "Tejas Bubane" . "tejasbubane@gmail.com") (:url . "https://github.com/tejasbubane/emacs-git-io"))]) (git-gutter-fringe . [(20170113 533) ((git-gutter (0 88)) (fringe-helper (0 1 1)) (cl-lib (0 5)) (emacs (24))) "Fringe version of git-gutter.el" single ((:commit . "16226caab44174301f1659f7bf8cc67a76153445") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-git-gutter-fringe"))]) (git-gutter-fringe+ . [(20140729 1103) ((git-gutter+ (0 1)) (fringe-helper (1 0 1))) "Fringe version of git-gutter+.el" single ((:commit . "7a2f49d2455a3a872e90e5f7dd4e6b27f1d96cfc") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/nonsequitur/git-gutter-fringe-plus"))]) (git-gutter . [(20161105 1356) ((emacs (24 3))) "Port of Sublime Text plugin GitGutter" single ((:commit . "00c05264af046b5ce248e5b0bc42f117d9c27a09") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-git-gutter"))]) (git-gutter+ . [(20151204 1723) ((git-commit (0)) (dash (0))) "Manage Git hunks straight from the buffer" single ((:commit . "b7726997806d9a2da9fe84ff00ecf21d62b6f975") (:keywords "git" "vc") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/nonsequitur/git-gutter-plus"))]) (git-dwim . [(20170126 1214) nil "Context-aware git commands such as branch handling" single ((:commit . "485c732130686c2f28a026e385366006435394b9") (:keywords "git" "tools" "convenience") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/git-dwim.el"))]) (git-commit-insert-issue . [(20171102 1841) ((projectile (0)) (s (0)) (github-issues (0)) (gitlab (0)) (bitbucket (0))) "Get issues list when typing \"Fixes #\"" single ((:commit . "f986923b04b587206ce7ee8e0c456768600e8be7") (:keywords "git" "github" "gitlab" "bitbucket" "commit" "issues") (:authors ("Vindarel")) (:maintainer "Vindarel") (:url . "https://gitlab.com/emacs-stuff/git-commit-insert-issue/"))]) (git-commit . [(20181116 1408) ((emacs (25 1)) (dash (20180910)) (with-editor (20181103))) "Edit Git commit messages" single ((:commit . "36d89c88e1337ec2b33c75c3d426289c66f86b10") (:keywords "git" "tools" "vc") (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/magit/magit"))]) (git-command . [(20160111 1303) ((term-run (0 1 4)) (with-editor (2 3 1))) "Yet another Git interface" single ((:commit . "dce465ca1cd80e16df0f8dce8e427a76e9edc3b7") (:keywords "utility" "git") (:authors ("10sr <8slashes+el [at] gmail [dot] com>")) (:maintainer "10sr <8slashes+el [at] gmail [dot] com>") (:url . "https://github.com/10sr/git-command-el"))]) (git-blamed . [(20161028 1926) nil "Minor mode for incremental blame for Git" single ((:commit . "cef196abf398e2dd11f775d1e6cd8690567408aa") (:keywords "git" "version control" "release management"))]) (git-auto-commit-mode . [(20161229 1617) nil "Emacs Minor mode to automatically commit and push" single ((:commit . "2c8197e5d7813734d6a49f9b9c0b227b7ae022a8") (:keywords "vc") (:authors ("Tom Willemse" . "tom@ryuslash.org")) (:maintainer "Tom Willemse" . "tom@ryuslash.org") (:url . "http://projects.ryuslash.org/git-auto-commit-mode/"))]) (git-attr . [(20180925 2003) ((emacs (24 3))) "Git attributes of buffer file" tar ((:commit . "8f6290c76e7827d5a198e7dc04516bcfb2128c06") (:keywords "vc") (:authors ("Arne Jørgensen" . "arne@arnested.dk")) (:maintainer "Arne Jørgensen" . "arne@arnested.dk") (:url . "https://github.com/arnested/emacs-git-attr"))]) (git-annex . [(20180427 1556) nil "Mode for easy editing of git-annex'd files" single ((:commit . "ebdb44aef1883f1b2b8058e05d30fb9315b03707") (:keywords "files" "data" "git" "annex") (:authors ("John Wiegley" . "jwiegley@gmail.com")) (:maintainer "John Wiegley" . "jwiegley@gmail.com") (:url . "https://github.com/jwiegley/git-annex-el"))]) (git . [(20140128 1041) ((s (1 7 0)) (dash (2 2 0)) (f (0 10 0))) "An Elisp API for programmatically using Git" single ((:commit . "a3396a7027a7d986598c6a2d6d5599bac918f3da") (:keywords "git") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/git.el"))]) (gist . [(20171128 406) ((emacs (24 1)) (gh (0 10 0))) "Emacs integration for gist.github.com" single ((:commit . "314fe6ab80fae35b95f0734eceb82f72813b6f41") (:keywords "tools") (:authors ("Yann Hodique" . "yann.hodique@gmail.com")) (:maintainer "Yann Hodique" . "yann.hodique@gmail.com") (:url . "https://github.com/defunkt/gist.el"))]) (gildas-mode . [(20181022 649) ((polymode (0 1 5)) (emacs (25))) "Major mode for Gildas" single ((:commit . "d0c9e997e2aa0bcd9b8b7db082d69100448cb1b2") (:keywords "languages" "gildas") (:authors ("Sébastien Maret" . "sebastien.maret@icloud.com")) (:maintainer "Sébastien Maret" . "sebastien.maret@icloud.com") (:url . "https://github.com/smaret/gildas-mode"))]) (gift-mode . [(20180530 1235) nil "major mode for editing GIFT format quizzes" single ((:commit . "b0441ae6e02f343be3b611a2d4b40495ecd932f0") (:authors ("Christophe Rhodes" . "christophe@rhodes.io")) (:maintainer "Christophe Rhodes" . "christophe@rhodes.io") (:url . "https://github.com/csrhodes/gift-mode"))]) (gif-screencast . [(20180827 835) ((emacs (25 1))) "One-frame-per-action GIF recording" single ((:commit . "62e69ea464e87f1f7791d95a4fbbe9b70a84668a") (:keywords "multimedia" "screencast") (:authors ("Pierre Neidhardt" . "mail@ambrevar.xyz")) (:maintainer "Pierre Neidhardt" . "mail@ambrevar.xyz") (:url . "https://gitlab.com/ambrevar/emacs-gif-screencast"))]) (ghub . [(20181112 1755) ((emacs (25 1)) (dash (2 14 1)) (graphql (0 1 1)) (let-alist (1 0 5)) (treepy (1 0 0))) "Minuscule client libraries for Git forge APIs." tar ((:commit . "f389fce41cd1bd1805bad18d12e237362af05283"))]) (ghub+ . [(20181113 32) ((emacs (25)) (ghub (2 0)) (apiwrap (0 5))) "a thick GitHub API client built on ghub" single ((:commit . "51ebffe549286b3c0b0565a373f44f4d64fc57af") (:keywords "extensions" "multimedia" "tools") (:authors ("Sean Allred" . "code@seanallred.com")) (:maintainer "Sean Allred" . "code@seanallred.com") (:url . "https://github.com/vermiculus/ghub-plus"))]) (ghq . [(20160803 1557) nil "Ghq interface for emacs" single ((:commit . "aae4b8cb22fd6c24d2c9e3962c7e8e9dac6d9825") (:keywords "ghq") (:authors ("Roman Coedo" . "romancoedo@gmail.com")) (:maintainer "Roman Coedo" . "romancoedo@gmail.com"))]) (ghost-blog . [(20171023 742) ((markdown-mode (1 0))) "A package to manage Ghost blog" single ((:commit . "71b358643cc9a2db1bf752281ff94aba9b59e4cc") (:keywords "ghost" "blog") (:authors ("Javier Aguirre" . "hello@javaguirre.net")) (:maintainer "Javier Aguirre" . "hello@javaguirre.net") (:url . "https://github.com/javaguirre/ghost-blog"))]) (gherkin-mode . [(20171224 1353) nil "An emacs major mode for editing gherkin files." single ((:commit . "0313492e7da152f0aa73ddf96c0287ded8f51253") (:keywords "languages") (:authors ("Craig Andera")) (:maintainer "Craig Andera"))]) (ghci-completion . [(20151125 1257) ((emacs (24 1)) (cl-lib (0 5))) "Completion for GHCi commands in inferior-haskell buffers" single ((:commit . "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5") (:keywords "convenience") (:authors ("Oleksandr Manzyuk" . "manzyuk@gmail.com")) (:maintainer "Oleksandr Manzyuk" . "manzyuk@gmail.com"))]) (ghc-imported-from . [(20141124 1932) ((emacs (24 1))) "Haskell documentation lookup with ghc-imported-from" single ((:commit . "fcff08628a19f5d26151564659218cc677779b79") (:keywords "languages") (:authors ("David Raymond Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Raymond Christiansen" . "david@davidchristiansen.dk"))]) (ghc . [(20180121 1218) ((haskell-mode (13 0))) "Sub mode for Haskell mode" tar ((:commit . "96c2207f0e9019f958d39582d4bf4af3bc9469d2"))]) (gh-md . [(20151207 1740) ((emacs (24))) "Render markdown using the Github api" single ((:commit . "693cb0dcadff70e813e1a9d303d227aff7898557") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/gh-md.el"))]) (gh . [(20180308 2138) ((emacs (24 3)) (pcache (0 4 1)) (logito (0 1)) (marshal (0 6 3))) "A GitHub library for Emacs" tar ((:commit . "f029fc11f345ef04ab62ee91c38657e29c462fea"))]) (ggtags . [(20181031 1803) ((emacs (25))) "emacs frontend to GNU Global source code tagging system" single ((:commit . "669676461c74ffd30b81dce60cf4f081270f2858") (:keywords "tools" "convenience") (:authors ("Leo Liu" . "sdl.web@gmail.com")) (:maintainer "Leo Liu" . "sdl.web@gmail.com") (:url . "https://github.com/leoliu/ggtags"))]) (ggo-mode . [(20130524 1143) nil "Gengetopt major mode" single ((:commit . "e326899d9ed8217c7a4ea6cfdc4dd7aea61d6c1b") (:keywords "extensions" "convenience" "local") (:authors ("Matthew K. Junker" . "junker@alum.mit.edu")) (:maintainer "Matthew K. Junker" . "junker@alum.mit.edu"))]) (gf . [(20181028 1542) ((s (1 0)) (ht (2 0))) "Major mode for editing GF code" single ((:commit . "30b3127f229e0db522c7752f6957ca01b2ea2821") (:keywords "languages") (:authors ("Johan Bockgård" . "bojohan+mail@dd.chalmers.se")) (:maintainer "bruno cuconato" . "bcclaro+emacs@gmail.com") (:url . "https://github.com/GrammaticalFramework/gf-emacs-mode"))]) (gerrit-download . [(20150714 1408) ((emacs (24 0)) (magit (2 1 0))) "Show gerrit reviews in a diff buffer." single ((:commit . "d568acc7c5935188c9bc19ba72719a6092d9f6fd") (:keywords "tools" "gerrit" "git") (:authors ("Chmouel Boudjnah" . "chmouel@chmouel.com")) (:maintainer "Chmouel Boudjnah" . "chmouel@chmouel.com") (:url . "https://github.com/chmouel/gerrit-download.el"))]) (german-holidays . [(20161011 713) nil "German holidays for Emacs calendar" single ((:commit . "d7d540c229c1a8be68ee09fbda08fe3ea31b7d29") (:authors ("Sebastian Christ" . "rudolfo.christ@gmail.com")) (:maintainer "Sebastian Christ" . "rudolfo.christ@gmail.com") (:url . "https://github.com/rudolfochrist/german-holidays"))]) (genrnc . [(20140612 1237) ((deferred (0 3 1)) (concurrent (0 3)) (log4e (0 2 0)) (yaxception (0 1))) "generate RELAX NG Compact Schema from RELAX NG Schema, XML Schema and DTD." tar ((:commit . "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a") (:keywords "xml") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-genrnc"))]) (general . [(20181020 2323) ((emacs (24 4)) (cl-lib (0 5))) "Convenience wrappers for keybindings." single ((:commit . "f48c43c4449677fa629aac2693ffcb850ca58c89") (:keywords "vim" "evil" "leader" "keybindings" "keys") (:authors ("Fox Kiester" . "noct@openmailbox.org")) (:maintainer "Fox Kiester" . "noct@openmailbox.org") (:url . "https://github.com/noctuid/general.el"))]) (geiser . [(20181117 650) nil "GNU Emacs and Scheme talk to each other" tar ((:commit . "dcf754c0b9cdb87ffa5930ef8ffbae9256f2d07d") (:url . "http://www.nongnu.org/geiser/"))]) (geeknote . [(20160717 1249) ((emacs (24))) "Use Evernote in Emacs through geeknote" single ((:commit . "8ed607c76864afcc9c338972ab093caf4501cbf8") (:keywords "evernote" "geeknote" "note" "emacs-evernote" "evernote-mode") (:authors ("Evan Dale Aromin")) (:maintainer "Evan Dale Aromin") (:url . "http://github.com/avendael/emacs-geeknote"))]) (geben-helm-projectile . [(20160611 59) ((emacs (24)) (geben (0 26)) (helm-projectile (0 13 0))) "Integrate helm-projectile with geben" single ((:commit . "31ce0faca5dcc71924884f03fd5a7a25d00ccd9b") (:keywords "ahungry" "emacs" "geben" "helm" "projectile" "debug") (:authors ("Matthew Carter" . "m@ahungry.com")) (:maintainer "Matthew Carter" . "m@ahungry.com") (:url . "https://github.com/ahungry/geben-helm-projectile"))]) (geben . [(20170801 1251) ((emacs (24 3)) (cl-lib (0 5))) "DBGp protocol frontend, a script debugger" tar ((:commit . "ec3f5e9376cf1ea5615990bd8c212543d57f033b") (:keywords "c" "comm" "tools") (:authors ("Matthew Carter" . "m@ahungry.com")) (:maintainer "Matthew Carter" . "m@ahungry.com") (:url . "https://github.com/ahungry/geben"))]) (gdscript-mode . [(20180118 456) ((emacs (24 3))) "Major mode for editing Godot GDScript files" single ((:commit . "31af5283eaec207bc864022a28e2824132471eaf") (:keywords "languages") (:authors ("Adam Bark" . "adam@adambark.com")) (:maintainer "Adam Bark" . "adam@adambark.com") (:url . "https://github.com/AdamBark/gdscript-mode"))]) (gather . [(20141230 1338) nil "Gather string in buffer." single ((:commit . "50809fbc22d70a1c724c2dd99ac5a1f818ffeb6b") (:keywords "matching" "convenience" "tools") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-gather/raw/master/gather.el"))]) (gap-mode . [(20180809 445) nil "Major mode for editing files in the GAP programing language." tar ((:keywords "gap") (:authors ("Michael Smith" . "smith@pell.anu.edu.au") ("Gary Zablackis") ("Goetz Pfeiffer") ("Ivan Andrus" . "darthandrus@gmail.com")) (:maintainer "Ivan Andrus" . "darthandrus@gmail.com") (:url . "https://bitbucket.org/gvol/gap-mode"))]) (gandalf-theme . [(20130809 947) nil "Gandalf color theme" single ((:commit . "4e472fc851431458537d458d09c1f5895e338536") (:keywords "color" "theme") (:authors ("Peter Vasil" . "mail@petervasil.net")) (:maintainer "Peter Vasil" . "mail@petervasil.net"))]) (gams-mode . [(20181112 601) ((emacs (24 3))) "Major mode for General Algebraic Modeling System (GAMS)" single ((:commit . "210bd355dd2075bde3fd76c880aa489a25a54cb5") (:keywords "languages" "tools" "gams") (:authors ("Shiro Takeda")) (:maintainer "Shiro Takeda") (:url . "http://shirotakeda.org/en/gams/gams-mode/"))]) (gams-ac . [(20180423 926) ((emacs (24)) (auto-complete (1 0)) (gams-mode (4 0))) "auto-complete source file for GAMS mode" single ((:commit . "66d04ff36033f54205c19bc1d893e926d4dbf02e") (:keywords "languages" "tools" "gams-mode" "auto-complete") (:authors ("Shiro Takeda")) (:maintainer "Shiro Takeda") (:url . "https://github.com/ShiroTakeda/gams-ac"))]) (fzf . [(20180619 145) ((emacs (24 4))) "A front-end for fzf." single ((:commit . "521d18933cb586337c4e34281bdc71ac07202c98") (:keywords "fzf" "fuzzy" "search") (:authors ("Bailey Ling")) (:maintainer "Bailey Ling") (:url . "https://github.com/bling/fzf.el"))]) (fyure . [(20130216 1314) nil "An interface to fix Japanese hyoki-yure" tar ((:commit . "b6977f1eb148e8b63259f7233b55bb050e44d9b8") (:keywords "languages") (:authors ("Masafumi Oyamada" . "stillpedant@gmail.com")) (:maintainer "Masafumi Oyamada" . "stillpedant@gmail.com"))]) (fxrd-mode . [(20170728 1801) ((s (1 2))) "Major mode for editing fixed field width files" tar ((:commit . "18a603474abb5a786a8d9f20c283d5f7beed3540") (:keywords "convenience") (:authors ("Marc Sherry" . "msherry@gmail.com")) (:maintainer "Marc Sherry" . "msherry@gmail.com") (:url . "https://github.com/msherry/fxrd-mode"))]) (fwb-cmds . [(20180318 2219) nil "misc frame, window and buffer commands" single ((:commit . "90258a5c7dbbaa2ac227e0fb4ff6c7d5aec3628f") (:keywords "convenience") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/fwb-cmds"))]) (fvwm-mode . [(20160411 1138) nil "A major mode for editing Fvwm configuration files" single ((:commit . "6832a1c1f68bf6249c3fd6672ea8e27dc7a5c79e") (:keywords "files") (:authors ("Bert Geens" . "bert@lair.be")) (:maintainer "Bert Geens" . "bert@lair.be") (:url . "https://github.com/theBlackDragon/fvwm-mode"))]) (fuzzy . [(20150730 337) nil "Fuzzy Matching" single ((:commit . "534d723ad2e06322ff8d9bd0ba4863d243f698e7") (:keywords "convenience") (:authors ("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) (:maintainer "Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))]) (futhark-mode . [(20181101 1900) ((cl-lib (0 5))) "major mode for editing Futhark source files" single ((:commit . "8ab840c6d2d24696b916bfb28c99d4d0043ab64e") (:keywords "languages") (:url . "https://github.com/diku-dk/futhark"))]) (furl . [(20150509 316) nil "Friendly URL retrieval" single ((:commit . "014438271e0ef27333dfcd599cb247f12a20d870") (:authors ("Natalie Weizenbaum" . "nweiz@google.com")) (:maintainer "Natalie Weizenbaum" . "nweiz@google.com"))]) (fuo . [(20180314 1648) ((emacs (24 4))) "feeluown client." single ((:commit . "5318bef9d935b53031e6312652554920def69af2") (:keywords "feeluown" "multimedia" "unix") (:authors ("cosven" . "yinshaowen241@gmail.com")) (:maintainer "cosven" . "yinshaowen241@gmail.com") (:url . "http://github.com/cosven/emacs-fuo"))]) (function-args . [(20171031 1704) ((ivy (0 9 1))) "C++ completion for GNU Emacs" tar ((:commit . "609b25305670fff08d5e357298e7128e4f4e3497") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/function-args"))]) (fullframe . [(20170816 1003) ((cl-lib (0 5))) "Generalized automatic execution in a single frame" single ((:commit . "d6a5217f7f2a5a5edcb75140f3fa69b3a50f1cdd") (:keywords "fullscreen") (:authors ("Tom Regner" . "tom@goochesa.de")) (:maintainer "Tom Regner" . "tom@goochesa.de"))]) (full-ack . [(20140223 1732) nil "a front-end for ack" single ((:commit . "761d846e105b150f8e6d13d7a8983f0248313a45") (:keywords "tools" "matching") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/full-ack/"))]) (fuff . [(20170202 1503) ((seq (2 3))) "Find files with findutils, recursively" single ((:commit . "278e849913df87bd8756c59382282d87474802c3") (:keywords "files" "project" "convenience") (:authors ("Joel Moberg")) (:maintainer "Joel Moberg") (:url . "https://github.com/joelmo/fuff"))]) (fuel . [(20180224 2211) ((cl-lib (0 2)) (emacs (24 2))) "Major mode for the Factor programming language." tar ((:commit . "d82ce045ea74e6221077da5d94efe6bacc0964e0"))]) (fstar-mode . [(20181110 1349) ((emacs (24 3)) (dash (2 11)) (company (0 8 12)) (quick-peek (1 0)) (yasnippet (0 11 0)) (flycheck (30 0)) (company-quickhelp (2 2 0))) "Support for F* programming" tar ((:commit . "0089f2d4451f73c389f82ebff9e22773f2d0014d") (:keywords "convenience" "languages") (:authors ("Clément Pit-Claudel" . "clement.pitclaudel@live.com")) (:maintainer "Clément Pit-Claudel" . "clement.pitclaudel@live.com") (:url . "https://github.com/FStarLang/fstar-mode.el"))]) (fsharp-mode . [(20180518 1820) ((company (0 8 0)) (company-quickhelp (1 2 0)) (popup (0 5 3)) (pos-tip (0 4 5)) (s (1 3 1)) (dash (1 1 0)) (flycheck (0 25))) "F# mode for Emacs" tar ((:commit . "68d2121a7317d90fe3794c9295d117f4aebd1438"))]) (fsbot-data-browser . [(20160921 1533) nil "browse the fsbot database using tabulated-list-mode" single ((:commit . "6bca4f7de63e31839d2542f6c678b79931dec344") (:keywords "fsbot" "irc" "tabulated-list-mode") (:authors ("Benaiah Mischenko")) (:maintainer "Benaiah Mischenko") (:url . "http://github.com/benaiah/fsbot-data-browser"))]) (fringe-helper . [(20140620 2109) nil "helper functions for fringe bitmaps" single ((:commit . "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd") (:keywords "lisp") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/fringe-helper/"))]) (fringe-current-line . [(20140111 411) nil "show current line on the fringe." single ((:commit . "0ef000bac76abae30601222e6f06c7d133ab4942") (:authors ("Kouhei Yanagita" . "yanagi@shakenbu.org")) (:maintainer "Kouhei Yanagita" . "yanagi@shakenbu.org") (:url . "http://github.com/kyanagi/fringe-current-line/raw/master/fringe-current-line.el"))]) (free-keys . [(20160726 2050) ((cl-lib (0 3))) "Show free keybindings for modkeys or prefixes" single ((:commit . "edfd69dc369b2647447b7c28c7c1163b1ddf45b4") (:keywords "convenience") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/free-keys"))]) (frecency . [(20170909 631) ((emacs (25 1)) (a (0 1)) (dash (2 13 0))) "Library for sorting items by frequency and recency of access" single ((:commit . "31ef9ff4af1a4fed3dcc24ea74037feea8795c87") (:keywords "libraries" "recency" "recent" "frequency" "frequent") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/frecency.el"))]) (framesize . [(20131017 2132) ((key-chord (0 5 20080915))) "change the size of frames in Emacs" single ((:commit . "f2dbf5d2513b2bc45f2085370a55c1754b6025da") (:keywords "frames") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "http://github.com/nicferrier/emacs-framesize"))]) (frameshot . [(20181110 1910) ((emacs (25 3))) "Take screenshots of a frame" single ((:commit . "3e1c9c2b34a3ab25cf373c411321280cc00096f6") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/frameshot"))]) (frames-only-mode . [(20180114 1848) ((emacs (24 4)) (dash (2 13 0)) (s (1 11 0))) "Use frames instead of Emacs windows" single ((:commit . "9a398dd58ebc1814183432118d11957b46746556") (:keywords "frames" "windows") (:authors ("David Shepherd" . "davidshepherd7@gmail.com")) (:maintainer "David Shepherd" . "davidshepherd7@gmail.com") (:url . "https://github.com/davidshepherd7/frames-only-mode"))]) (frame-tag . [(20170111 6) ((cl-lib (0 5))) "Minor mode that assigns a unique number to each frame for easy switching" single ((:commit . "73d6163568c7d32952175e663318b872f995a4e5") (:keywords "frame" "movement") (:authors ("Wong Liang Zan" . "zan@liangzan.net")) (:maintainer "Wong Liang Zan" . "zan@liangzan.net") (:url . "http://github.com/liangzan/frame-tag.el"))]) (frame-purpose . [(20180624 57) ((emacs (25 1)) (dash (2 12)) (dash-functional (1 2 0))) "Purpose-specific frames" single ((:commit . "ef571eb64acb4fef5c5ab22bc1e87a0e6614efa4") (:keywords "buffers" "convenience" "frames") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/frame-purpose.el"))]) (frame-mode . [(20170419 2127) ((s (1 9 0)) (emacs (24 4))) "Use frames instead of windows" single ((:commit . "fcdbafbda45758cd60ab3acb492fbbd692987a58") (:keywords "frames") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/frame-mode"))]) (frame-local . [(20180330 940) ((emacs (25 1))) "Variables local to a frame" single ((:commit . "7ee1106c3bcd4022f48421f8cb1ef4f995da816e") (:keywords "frames" "tools" "local" "lisp") (:authors ("Sebastien Chapuis" . "sebastien@chapu.is")) (:maintainer "Sebastien Chapuis" . "sebastien@chapu.is") (:url . "https://github.com/sebastiencs/frame-local"))]) (fraktur-mode . [(20160815 227) ((cl-lib (0 5))) "Easily insert Unicode mathematical Fraktur characters" single ((:commit . "514baf5546aed12a0d9fa0fe66e87cdcc7843b08") (:keywords "unicode" "fraktur" "math" "mathematical") (:authors ("Grant Rettke" . "gcr@wisdomandwonder.com")) (:maintainer nil . "<gcr@wisdomandwonder.com>") (:url . "https://github.com/grettke/fraktur-mode"))]) (fountain-mode . [(20181011 843) ((emacs (24 5))) "Major mode for screenwriting in Fountain markup" single ((:commit . "6f2d72ecbe8d6cad637f3eac4de88dff469dd42c") (:keywords "wp" "text") (:authors ("Paul Rankin" . "hello@paulwrankin.com")) (:maintainer "Paul Rankin" . "hello@paulwrankin.com"))]) (fortune-cookie . [(20170407 2217) nil "Print a fortune in your scratch buffer." single ((:commit . "bad99a2cd090f6646c7ee1125b95dd98744939c6") (:keywords "fortune" "cowsay" "scratch" "startup") (:authors ("Andrew Schwartzmeyer" . "andrew@schwartzmeyer.com")) (:maintainer "Andrew Schwartzmeyer" . "andrew@schwartzmeyer.com") (:url . "https://github.com/andschwa/fortune-cookie"))]) (fortpy . [(20150715 2032) ((epc (0 1 0)) (auto-complete (1 4)) (python-environment (0 0 2)) (pos-tip (0 4 5))) "a Fortran auto-completion for Emacs" tar ((:commit . "c614517e9396ef7a78be3b8786fbf303879cf43b") (:authors ("Conrad Rosenbrock <rosenbrockc at gmail.com>")) (:maintainer "Conrad Rosenbrock <rosenbrockc at gmail.com>"))]) (forth-mode . [(20170527 1930) nil "Programming language mode for Forth" tar ((:commit . "522256d98d1a909983bcfd3ae20c65226d5929b6") (:keywords "languages" "forth") (:authors ("Lars Brinkhoff" . "lars@nocrew.org")) (:maintainer "Lars Brinkhoff" . "lars@nocrew.org") (:url . "http://github.com/larsbrinkhoff/forth-mode"))]) (format-sql . [(20150422 1333) nil "Use format-sql to make your SQL readable in directly Emacs." single ((:commit . "97f475c245cd6c81a72a265678e2087cee66ac7b") (:authors ("Friedrich Paetzke" . "paetzke@fastmail.fm")) (:maintainer "Friedrich Paetzke" . "paetzke@fastmail.fm") (:url . "https://github.com/paetzke/format-sql.el"))]) (format-all . [(20181108 921) ((emacs (24)) (cl-lib (0 5))) "Auto-format C, C++, JS, Python, Ruby and 30 other languages" single ((:commit . "76054ed7236f18737cca4566fe8be7257f58cd81") (:keywords "languages" "util") (:authors ("Lassi Kortela" . "lassi@lassi.io")) (:maintainer "Lassi Kortela" . "lassi@lassi.io") (:url . "https://github.com/lassik/emacs-format-all-the-code"))]) (form-feed . [(20160102 2253) nil "Display ^L glyphs as horizontal lines" single ((:commit . "799ca3e72b20a59a755a094b8cead57f654f3170") (:keywords "faces") (:authors ("Vasilij Schneidermann" . "v.schneidermann@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com") (:url . "https://github.com/wasamasa/form-feed"))]) (forest-blue-theme . [(20160627 842) ((emacs (24))) "Emacs theme with a dark background." single ((:commit . "58096ce1a25615d2bae806c3775bae3e2775019d") (:authors ("olkinn")) (:maintainer "olkinn"))]) (foreman-mode . [(20170725 1422) ((s (1 9 0)) (dash (2 10 0)) (dash-functional (1 2 0)) (f (0 17 2)) (emacs (24))) "View and manage Procfile-based applications" single ((:commit . "22b3bb13134b617870ed1e888af739f4818be929") (:keywords "foreman") (:authors ("ZHOU Feng" . "zf.pascal@gmail.com")) (:maintainer "ZHOU Feng" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/foreman-mode"))]) (foreign-regexp . [(20180224 1121) nil "search and replace by foreign regexp." tar ((:commit . "2ec5c44f27c2396ee487aa0ed77ae47d143fa5aa") (:keywords "convenience" "emulations" "matching" "tools" "unix" "wp") (:authors ("K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>")) (:maintainer "K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>"))]) (forecast . [(20180429 2215) ((emacs (24 4))) "Weather forecasts" single ((:commit . "05f2655321f020fd4c069d1939f0902eaa837eb4") (:keywords "weather" "forecast") (:authors ("Göktuğ Kayaalp" . "self@gkayaalp.com")) (:maintainer "Göktuğ Kayaalp" . "self@gkayaalp.com") (:url . "https://cadadr.github.io/elisp/index.html#forecast-el"))]) (fontify-face . [(20180420 1624) ((emacs (24))) "Fontify symbols representing faces with that face." single ((:commit . "fc3325c98427523d86f0b411e0515cec51ac3d8a") (:keywords "faces") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/fontify-face"))]) (fontawesome . [(20170305 1356) ((emacs (24 4))) "fontawesome utility" tar ((:commit . "a743f80bfd53767ca9ee32da34c5ca032172a480") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-fontawesome"))]) (font-utils . [(20150806 1751) ((persistent-soft (0 8 8)) (pcache (0 2 3))) "Utility functions for working with fonts" single ((:commit . "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/font-utils"))]) (font-lock-studio . [(20170127 2051) ((emacs (24 3))) "interactive debugger for Font Lock keywords." single ((:commit . "12c35967b31233e06946c70627aa3152dacfe261") (:keywords "faces" "tools") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/font-lock-studio"))]) (font-lock-profiler . [(20170208 2008) ((emacs (24 3))) "Coverage and timing tool for font-lock keywords." single ((:commit . "6e096458416888a4f63cca0d6bc5965a052753c8") (:keywords "faces" "tools") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/font-lock-profiler"))]) (folding . [(20170925 1538) nil "A folding-editor-like minor mode." single ((:commit . "3bf134fd1ecfa8767ab7020c25281ea5ce9968a2") (:keywords "tools") (:maintainer "Jari Aalto <jari aalto A T cante dt net>"))]) (fold-this . [(20180828 1336) nil "Just fold this region please" single ((:commit . "59ec711ee5f4decf197b8168e333b691b852c827") (:keywords "convenience") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (fold-dwim-org . [(20131203 1351) ((fold-dwim (1 2))) "Fold DWIM bound to org key-strokes." single ((:commit . "c09bb2b46d65afbd1d0febc6fded7495be7a3037") (:keywords "folding" "emacs" "org-mode") (:authors ("Matthew L. Fidler & Shane Celis")) (:maintainer "Matthew L. Fidler") (:url . "https://github.com/mlf176f2/fold-dwim-org"))]) (fold-dwim . [(20140208 1637) nil "Unified user interface for Emacs folding modes" single ((:commit . "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b") (:authors ("Peter Heslin" . "p.j.heslin@dur.ac.uk")) (:maintainer "Peter Heslin" . "p.j.heslin@dur.ac.uk") (:url . "http://www.dur.ac.uk/p.j.heslin/Software/Emacs"))]) (foggy-night-theme . [(20160209 1508) ((emacs (24))) "Dark low contrast theme with soft and muted colors." single ((:commit . "60a12abdac29c2d913e1cf24485d0cc083e26093") (:authors ("Martin Haesler")) (:maintainer "Martin Haesler"))]) (focus-autosave-mode . [(20160519 2116) ((emacs (24 4))) "Automatically save files in focus-out-hook." single ((:commit . "2e0844fabb6f0dc9e0f31928e4785febf38b9e35") (:keywords "convenience" "files" "frames" "mouse") (:authors ("Wojciech Siewierski" . "wojciech.siewierski@onet.pl")) (:maintainer "Wojciech Siewierski" . "wojciech.siewierski@onet.pl"))]) (focus . [(20171204 503) ((emacs (24)) (cl-lib (0 5))) "Dim the font color of text in surrounding sections" single ((:commit . "045ee6175e9340f873db03445c74ff9eefa35a27") (:authors ("Lars Tveito" . "larstvei@ifi.uio.no")) (:maintainer "Lars Tveito" . "larstvei@ifi.uio.no") (:url . "http://github.com/larstvei/Focus"))]) (fn . [(20170210 204) ((emacs (24)) (cl-lib (0 5)) (dash (2 12 1)) (dash-functional (1 2 0))) "Concise anonymous functions for Emacs Lisp" single ((:commit . "f685fd0c08ec3b1d1b9974b37e62edd78a000cb8") (:keywords "functional") (:authors ("Troy Pracy")) (:maintainer "Troy Pracy"))]) (fm-bookmarks . [(20170104 1716) ((emacs (24 3)) (cl-lib (0 5))) "Use file manager bookmarks (eg Dolphin, Nautilus, PCManFM) in Dired" single ((:commit . "11dacfd16a926bfecba96a94c6b13e162c7717f7") (:keywords "files" "convenience") (:authors ("Ono Hiroko" . "azazabc123@gmail.com")) (:maintainer "Ono Hiroko" . "azazabc123@gmail.com") (:url . "http://github.com/kuanyui/fm-bookmarks.el"))]) (flyspell-popup . [(20170529 815) ((popup (0 5 0))) "Correcting words with Flyspell in popup menus" single ((:commit . "29311849bfd253b9b689bf331860b4c4d3bd4dde") (:keywords "convenience") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/flyspell-popup"))]) (flyspell-lazy . [(20180224 2106) nil "Improve flyspell responsiveness using idle timers" single ((:commit . "3ebf68cc9eb10c972a2de8d7861cbabbbce69570") (:keywords "spelling") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/flyspell-lazy"))]) (flyspell-correct-popup . [(20180928 504) ((flyspell-correct (0 5 0)) (popup (0 5 3))) "correcting words with flyspell via popup interface" single ((:commit . "204f145678df5e34a48ea3beae888a1bd6809974") (:authors ("Boris Buliga" . "boris@d12frosted.io")) (:maintainer "Boris Buliga" . "boris@d12frosted.io") (:url . "https://github.com/d12frosted/flyspell-correct"))]) (flyspell-correct-ivy . [(20180929 1331) ((flyspell-correct (0 5 0)) (ivy (0 8 0))) "correcting words with flyspell via ivy interface" single ((:commit . "204f145678df5e34a48ea3beae888a1bd6809974") (:authors ("Boris Buliga" . "boris@d12frosted.io")) (:maintainer "Boris Buliga" . "boris@d12frosted.io") (:url . "https://github.com/d12frosted/flyspell-correct"))]) (flyspell-correct-helm . [(20180928 504) ((flyspell-correct (0 5 0)) (helm (1 9 0))) "correcting words with flyspell via helm interface" single ((:commit . "204f145678df5e34a48ea3beae888a1bd6809974") (:authors ("Boris Buliga" . "boris@d12frosted.io")) (:maintainer "Boris Buliga" . "boris@d12frosted.io") (:url . "https://github.com/d12frosted/flyspell-correct"))]) (flyspell-correct . [(20181106 801) nil "correcting words with flyspell via custom interface" tar ((:commit . "204f145678df5e34a48ea3beae888a1bd6809974") (:authors ("Boris Buliga" . "boris@d12frosted.io")) (:maintainer "Boris Buliga" . "boris@d12frosted.io") (:url . "https://github.com/d12frosted/flyspell-correct"))]) (flyparens . [(20140723 1846) nil "Check for unbalanced parens on the fly" tar ((:commit . "af9b8cfd647d0e5f97684d613dc2eea7cfc19398") (:keywords "faces" "convenience" "lisp" "matching" "parentheses" "parens") (:authors ("Jisang Yoo")) (:maintainer "Jisang Yoo"))]) (flymd . [(20160617 1214) ((cl-lib (0 5))) "On the fly markdown preview" tar ((:commit . "84d5a68bcfed4a295952c33ffcd11e880978d9d7") (:keywords "markdown" "convenience") (:authors ("Mola-T" . "Mola@molamola.xyz")) (:maintainer "Mola-T" . "Mola@molamola.xyz") (:url . "https://github.com/mola-T/flymd"))]) (flymake-yaml . [(20130423 1548) ((flymake-easy (0 1))) "A flymake handler for YAML" single ((:commit . "24cb5b744a1796e554e6dbfc6eeb237d06a00b10") (:keywords "yaml") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/flymake-yaml"))]) (flymake-vala . [(20150326 531) ((flymake-easy (0 1))) "A flymake handler for vala-mode files" single ((:commit . "c3674f461fc84fb0300cd3a562fb903a59782745") (:keywords "convenience" "vala") (:authors ("Daniel Lawrence" . "dannyla@linux.com")) (:maintainer "Daniel Lawrence" . "dannyla@linux.com") (:url . "https://github.com/daniellawrence/flymake-vala"))]) (flymake-solidity . [(20170805 644) ((flymake-easy (0 10))) "A flymake handler for solidity using solc" single ((:commit . "48bfe9525f764d8a68cc0270905dbf45bfd00bb8") (:authors ("Pascal van Kooten" . "kootenpv@gmail.com")) (:maintainer "Pascal van Kooten" . "kootenpv@gmail.com") (:url . "https://github.com/kootenvp/flymake-solidity"))]) (flymake-shellcheck . [(20180830 1145) ((emacs (26))) "A bash/sh Flymake backend" single ((:commit . "deed7160f2be6bfffe46c4cc77d0f1fefd03f82a") (:authors ("Federico Tedin" . "federicotedin@gmail.com")) (:maintainer "Federico Tedin" . "federicotedin@gmail.com") (:url . "https://github.com/federicotdn/flymake-shellcheck"))]) (flymake-shell . [(20170723 146) ((flymake-easy (0 1))) "A flymake syntax-checker for shell scripts" single ((:commit . "a16cf453056b9849cc7c912bb127fb0b08fc6dab") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-shell"))]) (flymake-sass . [(20170723 146) ((flymake-easy (0 1))) "Flymake handler for sass and scss files" single ((:commit . "2de28148e92deb93bff3d55fe14e7c67ac476056") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-sass"))]) (flymake-rust . [(20170729 2139) ((flymake-easy (0 1))) "A flymake handler for rust-mode files" single ((:commit . "2f42d1f2dad73ec9de460eda6176e3ab25c446f0") (:authors ("Joao Oliveira" . "joaoxsouls@gmail.com")) (:maintainer "Joao Oliveira" . "joaoxsouls@gmail.com") (:url . "https://github.com/joaoxsouls/flymake-rust"))]) (flymake-ruby . [(20170723 146) ((flymake-easy (0 1))) "A flymake handler for ruby-mode files" single ((:commit . "6c320c6fb686c5223bf975cc35178ad6b195e073") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-ruby"))]) (flymake-racket . [(20180912 109) ((emacs (26 1))) "Flymake extension for Racket." single ((:commit . "cf5c1d10280693bd2b8a6533fbca4383fb998c07") (:keywords "languages" "racket" "scheme") (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/flymake-racket"))]) (flymake-python-pyflakes . [(20170723 146) ((flymake-easy (0 8))) "A flymake handler for python-mode files using pyflakes (or flake8)" single ((:commit . "1d65c26bf65a5dcbd29fcd967e2feb90e1e7a33d") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-python-pyflakes"))]) (flymake-puppet . [(20170801 554) ((flymake-easy (0 9))) "Flymake handler using puppet-lint" single ((:commit . "8a772395f4ccc59d883712ab53a92a17c1d9a429") (:authors ("Ben Prew")) (:maintainer "Ben Prew") (:url . "https://github.com/benprew/flymake-puppet"))]) (flymake-phpcs . [(20140713 631) ((flymake-easy (0 9))) "making flymake work with PHP CodeSniffer" single ((:commit . "a4d383474e055e554aaf1cd617055d5d7181aa50") (:keywords "flymake" "phpcs" "php") (:authors ("Akiha Senda")) (:maintainer "Akiha Senda") (:url . "https://github.com/senda-akiha/flymake-phpcs/"))]) (flymake-php . [(20170723 146) ((flymake-easy (0 1))) "A flymake handler for php-mode files" single ((:commit . "c045d01e002ba5e09b05f40e25bf5068d02126bc") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-php"))]) (flymake-perlcritic . [(20120328 814) ((flymake (0 3))) "Flymake handler for Perl to invoke Perl::Critic" tar ((:commit . "edfaa86500ddfa8a6a6f51f5581a81a821277df6") (:authors ("Sam Graham <libflymake-perlcritic-emacs BLAHBLAH illusori.co.uk>")) (:maintainer "Sam Graham <libflymake-perlcritic-emacs BLAHBLAH illusori.co.uk>") (:url . "https://github.com/illusori/emacs-flymake-perlcritic"))]) (flymake-lua . [(20170129 154) nil "Flymake for Lua" single ((:commit . "84589f20066921a5b79cf3a1f914a223a2552d2a") (:keywords "lua") (:authors (nil . "Sébastien Roccaserra (format \"<%s%s@%s.%s>\" \"s\" \"roccaserra\" \"yahoo\" \"com\")")) (:maintainer nil . "Sébastien Roccaserra (format \"<%s%s@%s.%s>\" \"s\" \"roccaserra\" \"yahoo\" \"com\")"))]) (flymake-less . [(20151111 738) ((less-css-mode (0 15)) (flymake-easy (0 1))) "Flymake handler for LESS stylesheets (lesscss.org)" single ((:commit . "32d3c28a9a5c52b82d1741ff9d715013b6498421") (:keywords "languages") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (flymake-ktlint . [(20180831 346) ((emacs (26 1))) "Flymake extension for Ktlint." single ((:commit . "33730a4818b74cb27196f06a9b23045d0af4c16d") (:keywords "languages" "ktlint") (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/flymake-ktlint"))]) (flymake-json . [(20180511 911) ((flymake-easy (0 1))) "A flymake handler for json using jsonlint" single ((:commit . "ae58795f948402e987cda4c15f10354f8ec2d0fd") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-json"))]) (flymake-jslint . [(20170723 146) ((flymake-easy (0 1))) "A flymake handler for javascript using jslint" single ((:commit . "8edb82be605542b0ef62d38d818adcdde335eecb") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-jslint"))]) (flymake-jshint . [(20140319 2200) ((flymake-easy (0 8))) "making flymake work with JSHint" single ((:commit . "79dd554c227883c487db38ac111306c8d5382c95") (:keywords "flymake" "jshint" "javascript") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (flymake-hlint . [(20170723 146) ((flymake-easy (0 1))) "A flymake handler for haskell-mode files using hlint" single ((:commit . "f910736b26784efc9a2fa29503f45c1f1dd0aa38") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-hlint"))]) (flymake-haskell-multi . [(20170723 146) ((flymake-easy (0 1))) "Syntax-check haskell-mode using both ghc and hlint" tar ((:commit . "b564a94312259885b1380272eb867bf52a164020"))]) (flymake-haml . [(20170723 146) ((flymake-easy (0 1))) "A flymake handler for haml files" single ((:commit . "22a81e8484734552d461e7ae7305664dc244447e") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-haml"))]) (flymake-gradle . [(20180924 200) ((emacs (26 1))) "Flymake extension for Gradle." single ((:commit . "c6045dd00e0bb1ec2b19df32756c61cbc5b3728b") (:keywords "languages" "gradle") (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/flymake-gradle"))]) (flymake-google-cpplint . [(20140205 1325) ((flymake-easy (0 9))) "Help to comply with the Google C++ Style Guide" single ((:commit . "905d32e84a27f18a78bec455ca930ab1ff9ae31e") (:keywords "flymake" "c" "c++") (:authors ("Akiha Senda" . "senda.akiha@gmail.com")) (:maintainer "Akiha Senda" . "senda.akiha@gmail.com") (:url . "https://github.com/senda-akiha/flymake-google-cpplint/"))]) (flymake-go . [(20150714 733) nil "A flymake handler for go-mode files" single ((:commit . "ae83761aa908c1a50ff34af04f00dcc46bca2ce9") (:keywords "go" "flymake") (:authors ("Michael Fellinger" . "michael@iron.io") ("Robert Zaremba" . "robert.marek.zaremba@wp.eu")) (:maintainer "Michael Fellinger" . "michael@iron.io") (:url . "https://github.com/robert-zaremba/flymake-go"))]) (flymake-gjshint . [(20130327 1232) nil "A flymake handler for javascript using both jshint and gjslint" single ((:commit . "dc957c14cb060819585de8aedb330e24efa4b784") (:keywords "flymake" "javascript" "jshint" "gjslint") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com"))]) (flymake-elixir . [(20130810 1417) nil "A flymake handler for elixir-mode .ex files." single ((:commit . "3810566cffe35d04cc3f01e27fe397d68d52f802") (:authors ("Sylvain Benner" . "syl20bnr@gmail.com")) (:maintainer "Sylvain Benner" . "syl20bnr@gmail.com"))]) (flymake-easy . [(20140818 755) nil "Helpers for easily building flymake checkers" single ((:commit . "de41ea49503f71f997e5c359a2ad08df696c0147") (:keywords "convenience" "internal") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-easy"))]) (flymake-cursor . [(20120322 1757) ((flymake (0 3))) "Show flymake messages in the minibuffer after delay" single ((:commit . "ecc539082c3fc9e91bba33d72c26989217411593") (:keywords "languages" "mode" "flymake") (:authors ("Unknown Original Author") ("Dino Chiesa" . "dpchiesa@hotmail.com") ("Sam Graham <libflymake-emacs BLAHBLAH illusori.co.uk>")) (:maintainer "Sam Graham <libflymake-emacs BLAHBLAH illusori.co.uk>") (:url . "https://github.com/illusori/emacs-flymake-cursor"))]) (flymake-css . [(20170723 146) ((flymake-easy (0 1))) "Flymake support for css using csslint" single ((:commit . "de090163ba289910ceeb61b13368ce42d0f2dfd8") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-css"))]) (flymake-cppcheck . [(20140415 1257) ((flymake-easy (0 9))) "Flymake work with Cppcheck for C/C++" single ((:commit . "9554f504d425a04fa6a875f7e3179bc7cf07dd03") (:keywords "flymake" "cppcheck" "c" "c++") (:authors ("Akiha Senda" . "senda.akiha@gmail.com")) (:maintainer "Akiha Senda" . "senda.akiha@gmail.com") (:url . "https://github.com/senda-akiha/flymake-cppcheck/"))]) (flymake-coffee . [(20170723 146) ((flymake-easy (0 1))) "A flymake handler for coffee script" single ((:commit . "dee295acf30820ed15fe0de17137d50bc27fc80c") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/flymake-coffee"))]) (flycheck-ycmd . [(20181016 618) ((emacs (24)) (dash (2 13 0)) (flycheck (0 22)) (ycmd (1 2)) (let-alist (1 0 5))) "flycheck integration for ycmd" single ((:commit . "ef87d020d3314efbac2e8925c115d0ac5c128c2a") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/emacs-ycmd"))]) (flycheck-yang . [(20180312 1831) ((yang-mode (0 9 4)) (flycheck (0 18))) "YANG flycheck checker" single ((:commit . "47881fc42ef0163c47064b72b5d6dbef4f83d778") (:authors (nil . "Andrew Fort (@andaru)")) (:maintainer nil . "Andrew Fort (@andaru)"))]) (flycheck-yamllint . [(20170325 1735) ((flycheck (30))) "Flycheck integration for YAMLLint" single ((:commit . "c2b273d84f15bd03464d6722391e595d7c179a5c") (:keywords "convenience" "languages" "tools") (:authors ("Krzysztof Magosa" . "krzysztof@magosa.pl")) (:maintainer "Krzysztof Magosa" . "krzysztof@magosa.pl") (:url . "https://github.com/krzysztof-magosa/flycheck-yamllint"))]) (flycheck-xcode . [(20180122 651) ((emacs (25 1)) (flycheck (0 25))) "Flycheck extension for Apple's Xcode." single ((:commit . "6147ab777e2c08e4f5ffdbd85d3013ca700fa835") (:keywords "languages" "xcode") (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/flycheck-xcode"))]) (flycheck-vdm . [(20181108 2022) ((emacs (24)) (flycheck (32 -4)) (vdm-mode (0 0 3))) "Syntax checking for vdm-mode" single ((:commit . "a8f9eb9addc51bc2022a1fce5ad3210961befcce") (:keywords "languages") (:authors ("Peter W. V. Tran-Jørgensen" . "peter.w.v.jorgensen@gmail.com")) (:maintainer "Peter W. V. Tran-Jørgensen" . "peter.w.v.jorgensen@gmail.com") (:url . "https://github.com/peterwvj/vdm-mode"))]) (flycheck-vale . [(20180928 742) ((emacs (24 4)) (flycheck (0 22)) (let-alist (1 0 4))) "flycheck integration for vale" single ((:commit . "131dacdf55e2b469d64543e4ae373aa93ec40a4f") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/flycheck-vale"))]) (flycheck-title . [(20170216 2346) ((flycheck (30)) (emacs (24))) "show flycheck errors in the frame title" single ((:commit . "6faea67be8661faf8152217869d16e993cc2bc49") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (flycheck-tip . [(20171020 1048) ((flycheck (29)) (emacs (24 1)) (popup (0 5 0))) "Show flycheck/flymake errors by tooltip" tar ((:commit . "9b0072d92e6b4a52834bf5a34120a0f5e1c8c2fd") (:keywords "flycheck") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/yuutayamada/flycheck-tip"))]) (flycheck-tcl . [(20180327 1259) ((emacs (24 4)) (flycheck (0 22))) "A flycheck checker for Tcl using tclchecker" single ((:commit . "7ca23f4673e178b9f5dcc8a82b86cf05b15d7236") (:authors ("Niels Widger" . "niels.widger@gmail.com")) (:maintainer "Niels Widger" . "niels.widger@gmail.com") (:url . "https://github.com/nwidger/flycheck-tcl"))]) (flycheck-swiftlint . [(20180830 340) ((emacs (25 1)) (flycheck (0 25))) "Flycheck extension for Swiftlint." single ((:commit . "65101873c4c9f8e7eac9471188b161eeddda1555") (:keywords "languages" "swiftlint" "swift" "emacs") (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/flycheck-swiftlint"))]) (flycheck-swift3 . [(20181116 1202) ((emacs (24 4)) (flycheck (26))) "Flycheck: Swift support for Apple swift-mode" single ((:commit . "37994f11c93f585119647e6ba10761e9766b593d") (:keywords "convenience" "languages" "tools") (:authors ("Goichi Hirakawa" . "gooichi@gyazsquare.com")) (:maintainer "Goichi Hirakawa" . "gooichi@gyazsquare.com") (:url . "https://github.com/GyazSquare/flycheck-swift3"))]) (flycheck-swift . [(20170129 549) ((emacs (24 4)) (flycheck (0 25))) "Flycheck extension for Apple's Swift." single ((:commit . "4c5ad401252400a78da395fd56a71e67ff8c2761") (:keywords "languages" "swift"))]) (flycheck-status-emoji . [(20180330 2325) ((cl-lib (0 1)) (emacs (24)) (flycheck (0 20)) (let-alist (1 0))) "Show flycheck status using cute, compact emoji" single ((:commit . "4bd113ab42dec9544b66e0a27ed9008ce8148433") (:keywords "convenience" "languages" "tools") (:authors ("Ben Liblit" . "liblit@acm.org")) (:maintainer "Ben Liblit" . "liblit@acm.org") (:url . "https://github.com/liblit/flycheck-status-emoji"))]) (flycheck-stack . [(20160520 944) ((flycheck (26)) (haskell-mode (13))) "Flychecker using stack ghci" single ((:commit . "f04235e00998000ee2c305f5a3ee72bb5dbbc926"))]) (flycheck-soar . [(20181106 852) ((emacs (25 1)) (flycheck (0 22))) "Analyze the SQL statements using mi soar." single ((:commit . "d2f03a0af9b625a645f3194dc24cfeee94d92760") (:keywords "convenience") (:authors ("zg" . "13853850881@163.com")) (:maintainer "zg" . "13853850881@163.com") (:url . "https://github.com/tszg/flycheck-soar"))]) (flycheck-rust . [(20180904 1117) ((emacs (24 1)) (flycheck (28)) (dash (2 13 0)) (seq (2 3)) (let-alist (1 0 4))) "Flycheck: Rust additions and Cargo support" single ((:commit . "f1220ccd9acbdb2556765f49f2f3dcb00dca2970") (:keywords "tools" "convenience") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/flycheck/flycheck-rust"))]) (flycheck-rtags . [(20180619 824) ((emacs (24)) (flycheck (0 23)) (rtags (2 10))) "RTags Flycheck integration." single ((:commit . "194cd70d38c3e2e01b9de04d006f94573510aebb") (:authors ("Christian Schwarzgruber" . "c.schwarzgruber.cs@gmail.com")) (:maintainer "Christian Schwarzgruber" . "c.schwarzgruber.cs@gmail.com") (:url . "http://rtags.net"))]) (flycheck-rebar3 . [(20180806 2103) ((flycheck (27))) "Rebar3 flycheck integration for Erlang projects" single ((:commit . "3cca1268c54643204b5bae52e3f0bf5bc921018c") (:keywords "erlang" "flycheck" "rebar3") (:authors ("Joe DeVivo")) (:maintainer "Joe DeVivo") (:url . "https://github/joedevivo/flycheck-rebar3"))]) (flycheck-pyre . [(20181014 155) ((emacs (24)) (flycheck (29)) (cl-lib (0 6))) "Support Pyre in flycheck" tar ((:commit . "58ba48d570e11011a4b70609f3a2565772010ad2") (:authors ("Vyacheslav Linnik" . "vyacheslav.linnik@gmail.com")) (:maintainer "Vyacheslav Linnik" . "vyacheslav.linnik@gmail.com") (:url . "https://github.com/linnik/flycheck-pyre"))]) (flycheck-pyflakes . [(20170330 2311) ((flycheck (0 18))) "Support pyflakes in flycheck" single ((:commit . "61b045939e3743b2162b7e4e73249c66fc2b8f65") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (flycheck-pycheckers . [(20181114 2039) ((flycheck (0 18))) "multiple syntax checker for Python, using Flycheck" tar ((:commit . "73f348b68532c856a32e3c962ebbee14f7b6c059") (:keywords "convenience" "tools" "languages") (:url . "https://github.com/msherry/flycheck-pycheckers"))]) (flycheck-purescript . [(20161121 1707) ((emacs (24 3)) (flycheck (0 22)) (dash (2 12 0)) (let-alist (1 0 4)) (seq (1 11))) "Flycheck: PureScript support" single ((:commit . "30f0435d5e2715053c8c6170b2bce2ae462ac819") (:keywords "convenience" "tools" "languages") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/flycheck-purescript"))]) (flycheck-prospector . [(20180524 450) ((flycheck (0 22))) "Support prospector in flycheck" single ((:commit . "92f2680573290ba4a69a2d6e140f44680efce6a8") (:authors ("Carlos Coelho" . "carlospecter@gmail.com")) (:maintainer "Carlos Coelho" . "carlospecter@gmail.com") (:url . "https://github.com/chocoelho/flycheck-prospector"))]) (flycheck-posframe . [(20180322 607) ((flycheck (0 24)) (emacs (26)) (posframe (0 3 0))) "Show flycheck error messages using posframe.el" single ((:commit . "61bdfd4b04e1651163fdcaa7dc631ad073b3e513") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/flycheck-posframe"))]) (flycheck-pos-tip . [(20180610 1615) ((emacs (24 1)) (flycheck (0 22)) (pos-tip (0 4 6))) "Display Flycheck errors in GUI tooltips" single ((:commit . "909113977d37739387c7f099d74a724cfe6efcec") (:keywords "tools" "convenience") (:authors ("Akiha Senda" . "senda.akiha@gmail.com") ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/flycheck/flycheck-pos-tip"))]) (flycheck-popup-tip . [(20170812 2351) ((flycheck (0 22)) (popup (0 5)) (emacs (24))) "Display Flycheck error messages using popup.el" single ((:commit . "ef86aad907f27ca076859d8d9416f4f7727619c6") (:keywords "convenience" "tools" "flycheck" "tooltip") (:authors ("Saša Jovanić" . "sasa@simplify.ba")) (:maintainer "Saša Jovanić" . "sasa@simplify.ba") (:url . "https://github.com/flycheck/flycheck-popup-tip/"))]) (flycheck-pony . [(20160501 2117) ((flycheck (0 25 1))) "Pony support in Flycheck" single ((:commit . "ef27475a14090396a01924d131bfee9e163cf6e9") (:keywords "tools" "convenience") (:url . "https://github.com/seantallen/flycheck-pony"))]) (flycheck-plantuml . [(20171018 111) ((flycheck (0 24)) (emacs (24 4)) (plantuml-mode (1 2 2))) "Integrate plantuml with flycheck" single ((:commit . "183be89e1dbba0b38237dd198dff600e0790309d") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/flycheck-plantuml"))]) (flycheck-pkg-config . [(20180430 2243) ((dash (2 8 0)) (s (1 9 0)) (flycheck (29))) "configure flycheck using pkg-config" single ((:commit . "e72e4c1b8153611ed82695673af84096f4d52795") (:keywords "flycheck") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (flycheck-phpstan . [(20180801 1741) ((emacs (24 3)) (flycheck (26)) (phpstan (0 2 1))) "Flycheck integration for PHPStan" single ((:commit . "beac0e0e7160454d4f42162b3502a36ccf488120") (:keywords "convenience" "php") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/phpstan.el"))]) (flycheck-perl6 . [(20180509 2201) ((emacs (24 3)) (flycheck (0 22))) "Perl 6 support in Flycheck" single ((:commit . "b804702305d7a6e26f762ff98cfdeec2e9dd4cb7") (:keywords "tools" "convenience") (:authors ("Hinrik Örn Sigurðsson" . "hinrik.sig@gmail.com")) (:maintainer "Hinrik Örn Sigurðsson" . "hinrik.sig@gmail.com") (:url . "https://github.com/hinrik/flycheck-perl6"))]) (flycheck-pact . [(20180920 2052) ((emacs (24 3)) (flycheck (0 25)) (pact-mode (0 0 4))) "Flycheck support for pact-mode" single ((:commit . "0e10045064ef89ec8b6f5a473073d47b976a2ca3") (:keywords "pact" "lisp" "languages" "blockchain" "smartcontracts" "tools" "linting") (:authors ("Stuart Popejoy")) (:maintainer "Stuart Popejoy" . "stuart@kadena.io") (:url . "http://github.com/kadena-io/flycheck-pact"))]) (flycheck-package . [(20161111 2251) ((flycheck (0 22)) (package-lint (0 2))) "A Flycheck checker for elisp package authors" single ((:commit . "6d99248b45eea1e5236062f38e524230efdb1a84") (:keywords "lisp") (:authors ("Steve Purcell" . "steve@sanityinc.com") ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (flycheck-ocaml . [(20170730 2153) ((emacs (24 1)) (flycheck (0 22)) (merlin (3 0 1)) (let-alist (1 0 3))) "Flycheck: OCaml support" single ((:commit . "8707a7bf545a8639a6a5c600a98d9a2ea1487dc9") (:keywords "convenience" "tools" "languages") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/flycheck/flycheck-ocaml"))]) (flycheck-objc-clang . [(20181116 1201) ((emacs (24 4)) (flycheck (26))) "Flycheck: Objective-C support using Clang" single ((:commit . "a3781e47f14068c811534a3348bf479eeb3f2041") (:keywords "convenience" "languages" "tools") (:authors ("Goichi Hirakawa" . "gooichi@gyazsquare.com")) (:maintainer "Goichi Hirakawa" . "gooichi@gyazsquare.com") (:url . "https://github.com/GyazSquare/flycheck-objc-clang"))]) (flycheck-nimsuggest . [(20171027 2208) ((flycheck (0 23)) (emacs (24 3))) "flycheck backend for Nim using nimsuggest" single ((:commit . "dc9a5de1cb3ee05db5794d824610959a1f603bc9") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/yuutayamada/flycheck-nimsuggest"))]) (flycheck-nim . [(20160715 428) ((dash (2 4 0)) (flycheck (0 20))) "Defines a flycheck syntax checker for nim" single ((:commit . "6d27349b66e44578851e6148299709d64d2bde41") (:authors ("Adam Schwalm" . "adamschwalm@gmail.com")) (:maintainer "Adam Schwalm" . "adamschwalm@gmail.com") (:url . "https://github.com/ALSchwalm/flycheck-nim"))]) (flycheck-mypy . [(20180907 1016) ((flycheck (0 18))) "Support mypy in flycheck" single ((:commit . "6f99166f5229c7b4298cff1818b7eaece1c9c8bd") (:authors ("Lorenzo Bolla" . "lbolla@gmail.com")) (:maintainer "Lorenzo Bolla" . "lbolla@gmail.com"))]) (flycheck-mmark . [(20180203 1732) ((emacs (24 4)) (flycheck (0 29))) "Flycheck checker for the MMark markdown processor" single ((:commit . "7fdcc48ff6ffa5e7db126a76f4948ab08b9eb8d4") (:keywords "convenience" "text") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mmark-md/flycheck-mmark"))]) (flycheck-mix . [(20170118 1430) ((flycheck (27)) (elixir-mode (1 8 0))) "Elixir mix flycheck integration" single ((:commit . "76684d4b5987925b98b254aab656f8bf8198ab88") (:keywords "elixir" "flycheck" "mix") (:authors ("Tomasz Kowal" . "tomekowal@gmail.com")) (:maintainer "Tomasz Kowal" . "tomekowal@gmail.com") (:url . "https://github.com/tomekowal/flycheck-mix"))]) (flycheck-mercury . [(20181118 1952) ((flycheck (0 22)) (s (1 9 0)) (dash (2 4 0))) "Mercury support in Flycheck" single ((:commit . "b6807a8db70981e21a91a93324c31e49de85c89f") (:keywords "convenience" "languages" "tools") (:authors ("Matthias Güdemann" . "matthias.gudemann@gmail.com")) (:maintainer "Matthias Güdemann" . "matthias.gudemann@gmail.com") (:url . "https://github.com/flycheck/flycheck-mercury"))]) (flycheck-liquidhs . [(20170412 2326) ((flycheck (0 15))) "A flycheck checker for Haskell using liquid (i.e. liquidhaskell)" single ((:commit . "c27252ac24d77f4b6eec76a4ba9cd61761a3fba9") (:keywords "convenience" "languages" "tools") (:authors ("Ranjit Jhala" . "jhala@cs.ucsd.edu")) (:maintainer "Ranjit Jhala" . "jhala@cs.ucsd.edu") (:url . "https://github.com/ucsd-progsys/liquidhaskell/flycheck-liquid.el"))]) (flycheck-lilypond . [(20171203 1332) ((emacs (24 3)) (flycheck (0 22))) "LilyPond support in Flycheck" single ((:commit . "cc1b7677a932c42e5dab1661ad7b923d4aae744c") (:keywords "tools" "convenience") (:authors ("Hinrik Örn Sigurðsson" . "hinrik.sig@gmail.com")) (:maintainer "Hinrik Örn Sigurðsson" . "hinrik.sig@gmail.com") (:url . "https://github.com/hinrik/flycheck-lilypond"))]) (flycheck-ledger . [(20180819 321) ((flycheck (0 15))) "Flycheck integration for ledger files" single ((:commit . "8d7f52a4c7f80ca396ef0fc6c7d8e9f005778dfc") (:keywords "convenience" "languages" "tools") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (flycheck-kotlin . [(20170122 1137) ((flycheck (0 18))) "Support kotlin in flycheck" single ((:commit . "cbb9fbf70dbe8efcc3971b3606ee95c97469b1fe") (:authors ("Elric Milon" . "whirm_REMOVETHIS__@gmx.com")) (:maintainer "Elric Milon" . "whirm_REMOVETHIS__@gmx.com"))]) (flycheck-julia . [(20170729 2141) ((emacs (24)) (flycheck (0 22))) "Julia support for Flycheck" single ((:commit . "213b60a5a9a1cb7887260e1d159b5bb27167cbb6") (:keywords "convenience" "tools" "languages") (:authors ("Guido Kraemer" . "guido.kraemer@gmx.de")) (:maintainer "Guido Kraemer" . "guido.kraemer@gmx.de") (:url . "https://github.com/gdkrmr/flycheck-julia"))]) (flycheck-joker . [(20180913 504) ((flycheck (0 18))) "Add Clojure syntax checker (via Joker) to flycheck" single ((:commit . "51e99e697761ee8dab863930910abdba7607c1bd") (:authors ("Roman Bataev" . "roman.bataev@gmail.com")) (:maintainer "Roman Bataev" . "roman.bataev@gmail.com"))]) (flycheck-jest . [(20180411 328) ((emacs (25 1)) (flycheck (0 25))) "Flycheck extension for Jest." single ((:commit . "08f27c5ed97c83c445f99fab58f0b6c826f14449") (:keywords "languages" "jest") (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/flycheck-jest"))]) (flycheck-irony . [(20180604 2152) ((emacs (24 1)) (flycheck (0 22)) (irony (0 2 0))) "Flycheck: C/C++ support via Irony" single ((:commit . "42dbecd4a865cabeb301193bb4d660e26ae3befe") (:keywords "convenience" "tools" "c") (:authors ("Guillaume Papin" . "guillaume.papin@epitech.eu")) (:maintainer "Guillaume Papin" . "guillaume.papin@epitech.eu") (:url . "https://github.com/Sarcasm/flycheck-irony/"))]) (flycheck-inline . [(20180821 849) ((emacs (25 1)) (flycheck (31))) "Display Flycheck errors inline" single ((:commit . "6381d676462dab74f337e6fed9ada121fec25caf") (:keywords "tools" "convenience") (:authors ("fmdkdd")) (:maintainer "fmdkdd") (:url . "https://github.com/flycheck/flycheck-inline"))]) (flycheck-hdevtools . [(20160926 702) ((flycheck (0 21 -4 1)) (dash (2 0))) "A flycheck checker for Haskell using hdevtools" single ((:commit . "eab1fc184854341a56154623a131cab6ff0ce18c") (:keywords "convenience" "languages" "tools") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/flycheck/flycheck-hdevtools"))]) (flycheck-haskell . [(20181117 1001) ((emacs (24 3)) (flycheck (0 25)) (haskell-mode (13 7)) (dash (2 4 0)) (seq (1 11)) (let-alist (1 0 1))) "Flycheck: Automatic Haskell configuration" tar ((:commit . "072c854a65a73b441624a90a8aa3b86ec64cdd1e") (:keywords "tools" "convenience") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/flycheck/flycheck-haskell"))]) (flycheck-grammalecte . [(20181115 1646) ((emacs (24)) (flycheck (26))) "Integrate Grammalecte with Flycheck" tar ((:commit . "fe5d94dc6175fe8cc09965956fda5c0de0b280d6") (:keywords "i18n" "text") (:authors ("Guilhem Doulcier" . "guilhem.doulcier@espci.fr") ("Étienne Deparis" . "etienne@depar.is")) (:maintainer "Guilhem Doulcier" . "guilhem.doulcier@espci.fr") (:url . "https://git.deparis.io/flycheck-grammalecte/"))]) (flycheck-gradle . [(20180924 200) ((emacs (25 1)) (flycheck (0 25))) "Flycheck extension for Gradle." single ((:commit . "6a61daada4b2353a1c7c223cf8d5bccb907534c8") (:keywords "languages" "gradle") (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/flycheck-gradle"))]) (flycheck-gometalinter . [(20180424 941) ((emacs (24)) (flycheck (0 22))) "flycheck checker for gometalinter" single ((:commit . "422f6e4b77b27fd7370f0c88437ac5072c9d3413") (:keywords "convenience" "tools" "go") (:authors ("Diep Pham" . "me@favadi.com")) (:maintainer "Diep Pham" . "me@favadi.com") (:url . "https://github.com/favadi/flycheck-gometalinter"))]) (flycheck-golangci-lint . [(20180711 817) ((emacs (24)) (flycheck (0 22))) "Flycheck checker for golangci-lint" single ((:commit . "b4b51aa6fe5335c0f46f2f83c7dc32e4141ff9f1") (:keywords "convenience" "tools" "go") (:authors ("Wei Jian Gan" . "weijiangan@outlook.com")) (:maintainer "Wei Jian Gan" . "weijiangan@outlook.com") (:url . "https://github.com/weijiangan/flycheck-golangci-lint"))]) (flycheck-ghcmod . [(20150114 632) ((flycheck (0 21 -4 1)) (dash (2 0))) "A flycheck checker for Haskell using ghcmod" single ((:commit . "6bb7b7d879f05bbae54e99eb04806c877adf3ccc") (:keywords "convenience" "languages" "tools") (:authors ("Shen Chao" . "scturtle@gmail.com")) (:maintainer "Shen Chao" . "scturtle@gmail.com") (:url . "https://github.com/scturtle/flycheck-ghcmod"))]) (flycheck-flow . [(20180801 1242) ((flycheck (0 18)) (json (1 4))) "Support Flow in flycheck" single ((:commit . "5d42270c798918c05c5e983e774063930bd87838") (:authors ("Lorenzo Bolla" . "lbolla@gmail.com")) (:maintainer "Lorenzo Bolla" . "lbolla@gmail.com"))]) (flycheck-flawfinder . [(20170116 327) ((flycheck (0 24)) (emacs (24 4))) "Integrate flawfinder with flycheck" single ((:commit . "7d964d38023b088adf3ffc2fddeead81f4491a45") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/flycheck-flawfinder"))]) (flycheck-elsa . [(20181029 1421) ((emacs (25)) (seq (2 0)) (cask (0 8 4))) "Flycheck for Elsa." single ((:commit . "a48d1b1c28f908dcb0bc3aece38c161059df336d") (:keywords "convenience") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/emacs-elsa/flycheck-elsa"))]) (flycheck-elm . [(20181107 146) ((flycheck (0 29 -4)) (emacs (24 4)) (let-alist (1 0 5)) (seq (2 20))) "Flycheck support for the elm language" single ((:commit . "debd0af563cb6c2944367a691c7fa3021d9378c1") (:authors ("Brian Sermons")) (:maintainer "Brian Sermons") (:url . "https://github.com/bsermons/flycheck-elm"))]) (flycheck-elixir . [(20180810 642) ((flycheck (0 25))) "Support Elixir in flycheck" single ((:commit . "11998d7e3e63a33453e934d25b3673f7c558e579") (:authors ("Lorenzo Bolla" . "lbolla@gmail.com")) (:maintainer "Lorenzo Bolla" . "lbolla@gmail.com"))]) (flycheck-dtrace . [(20180903 1630) ((emacs (25 1)) (flycheck (0 22))) "Flycheck: DTrace support" single ((:commit . "951fab3a15c11d92b9fac1ea4791a80dfe034a00") (:keywords "languages" "convenience" "tools") (:authors ("Jürgen Hötzel" . "juergen@hoetzel.info")) (:maintainer "Jürgen Hötzel" . "juergen@hoetzel.info"))]) (flycheck-dogma . [(20170125 721) ((flycheck (29))) "flycheck checker for elixir dogma" single ((:commit . "eea1844a81e87e2488b05e703a93272d0fc3bc74") (:authors ("Aaron Jensen" . "aaronjensen@gmail.com")) (:maintainer "Aaron Jensen" . "aaronjensen@gmail.com") (:url . "https://github.com/aaronjensen/flycheck-dogma"))]) (flycheck-dmd-dub . [(20180625 1635) ((flycheck (0 24)) (f (0 18 2))) "Sets flycheck-dmd-include-paths from dub package information" single ((:commit . "d7df2895d7d27cc39916816e3c32a60ce0e1d2d9") (:keywords "languages") (:authors ("Atila Neves" . "atila.neves@gmail.com")) (:maintainer "Atila Neves" . "atila.neves@gmail.com") (:url . "http://github.com/atilaneves/flycheck-dmd-dub"))]) (flycheck-dialyzer . [(20160326 1430) ((flycheck (0 18))) "Support dialyzer in flycheck" single ((:commit . "a5df0db95ac69f397b5f85d325a6d88cf8974f64") (:authors ("Lorenzo Bolla" . "lbolla@gmail.com")) (:maintainer "Lorenzo Bolla" . "lbolla@gmail.com"))]) (flycheck-dialyxir . [(20170515 1525) ((flycheck (29))) "flycheck checker for elixir dialyxir" single ((:commit . "adfb73374cb2bee75724822972f405f2ec371199") (:authors ("Aaron Jensen" . "aaronjensen@gmail.com")) (:maintainer "Aaron Jensen" . "aaronjensen@gmail.com") (:url . "https://github.com/aaronjensen/flycheck-dialyxir"))]) (flycheck-demjsonlint . [(20161115 718) ((flycheck (30))) "Flychecker for json-mode using jsonlint from demjson" tar ((:commit . "a3dfe1df8ecdea76c076c0849901427567356228") (:keywords "convenience" "tools") (:authors ("Zenkie Zhu" . "451218651@qq.com")) (:maintainer "Zenkie Zhu" . "451218651@qq.com") (:url . "https://github.com/z4139jq/flycheck-demjsonlint"))]) (flycheck-dedukti . [(20171103 1212) ((flycheck (0 19)) (dedukti-mode (0 1))) "Flycheck integration of Dedukti" single ((:commit . "3dbff5646355f39d57a3ec514f560a6b0082a1cd") (:keywords "convenience" "languages" "tools" "flycheck" "dedukti") (:authors ("Raphaël Cauderlier")) (:maintainer "Raphaël Cauderlier") (:url . "https://github.com/rafoo/flycheck-dedukti"))]) (flycheck-d-unittest . [(20160522 417) ((flycheck (0 21 -4 1)) (dash (1 4 0))) "Add D unittest support to flycheck" single ((:commit . "3e614f23cb4a5566fd7988dbcaaf254af81c7718") (:keywords "flycheck" "d") (:authors ("Tomoya Tanjo" . "ttanjo@gmail.com")) (:maintainer "Tomoya Tanjo" . "ttanjo@gmail.com") (:url . "https://github.com/tom-tan/flycheck-d-unittest/"))]) (flycheck-cython . [(20170724 958) ((flycheck (0 25))) "Support Cython in flycheck" single ((:commit . "ecc4454d35ab5317ab66a04406f36f0c1dbc0b76") (:authors ("Lorenzo Bolla" . "lbolla@gmail.com")) (:maintainer "Lorenzo Bolla" . "lbolla@gmail.com"))]) (flycheck-cstyle . [(20160905 2341) ((flycheck (0 24)) (emacs (24 4))) "Integrate cstyle with flycheck" single ((:commit . "207285140a353d08cf1fc450cacab158bc98ba82") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/flycheck-cstyle"))]) (flycheck-css-colorguard . [(20161031 1122) ((flycheck (0 22)) (emacs (24))) "Detect similar colors in CSS" single ((:commit . "ae94fa0396acd99f9ec36d9572459df793f37fe8") (:keywords "flycheck" "css" "colorguard") (:authors ("Saša Jovanić" . "info@simplify.ba")) (:maintainer "Saša Jovanić" . "info@simplify.ba") (:url . "https://github.com/Simplify/flycheck-css-colorguard/"))]) (flycheck-crystal . [(20180627 242) ((flycheck (30))) "Add support for Crystal to Flycheck" single ((:commit . "8649736fea8960a5e54c3ec934484f231a518ea5") (:keywords "tools" "crystal") (:url . "https://github.com/crystal-lang-tools/emacs-crystal-mode"))]) (flycheck-credo . [(20170526 1545) ((flycheck (29))) "flycheck checker for elixir credo" single ((:commit . "e88f11ead53805c361ec7706e44c3dfee1daa19f") (:authors ("Aaron Jensen" . "aaronjensen@gmail.com")) (:maintainer "Aaron Jensen" . "aaronjensen@gmail.com") (:url . "https://github.com/aaronjensen/flycheck-credo"))]) (flycheck-coverity . [(20170704 59) ((flycheck (0 24)) (dash (2 12 0)) (emacs (24 4))) "Integrate Coverity with flycheck" single ((:commit . "cb211e3dd50413a5042eb20175be518214591c9d") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/flycheck-coverity"))]) (flycheck-color-mode-line . [(20171122 707) ((flycheck (0 15)) (dash (1 2)) (emacs (24 1))) "Change mode line color with Flycheck status" single ((:commit . "cc474804d4e8088a627485faaf4217a5781aec7d") (:keywords "convenience" "language" "tools") (:authors ("Sylvain Benner" . "sylvain.benner@gmail.com")) (:maintainer "Sylvain Benner" . "sylvain.benner@gmail.com"))]) (flycheck-clojure . [(20180721 1412) ((cider (0 8 1)) (flycheck (0 22 -4 1)) (let-alist (1 0 1)) (emacs (24))) "Flycheck: Clojure support" single ((:commit . "d81d875f83f7db26cd7bf43d0f9bab272fb54a3c") (:authors ("Peter Fraenkel" . "pnf@podsnap.com") ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Peter Fraenkel" . "pnf@podsnap.com") (:url . "https://github.com/clojure-emacs/squiggly-clojure"))]) (flycheck-clangcheck . [(20150712 710) ((cl-lib (0 5)) (seq (1 7)) (flycheck (0 17))) "A Flycheck checker difinition for ClangCheck." single ((:commit . "24a9424c484420073a24443a829fd5779752362b") (:authors ("kumar8600" . "kumar8600@gmail.com")) (:maintainer "kumar8600" . "kumar8600@gmail.com") (:url . "https://github.com/kumar8600/flycheck-clangcheck"))]) (flycheck-clang-tidy . [(20171024 808) ((flycheck (0 30))) "Flycheck syntax checker using clang-tidy" single ((:commit . "b8ebd49693f67e08e420ba847cc88f6721ef9e3e") (:keywords "convenience" "languages" "tools") (:authors (nil . "Sebastian Nagel<sebastian.nagel@ncoding.at>")) (:maintainer nil . "Sebastian Nagel<sebastian.nagel@ncoding.at>") (:url . "https://github.com/ch1bo/flycheck-clang-tidy"))]) (flycheck-clang-analyzer . [(20180917 1425) ((flycheck (0 24)) (emacs (24 4))) "Integrate Clang Analyzer with flycheck" single ((:commit . "5c707505e3ea806fddb54d031ab64351293d7c2d") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/flycheck-clang-analyzer"))]) (flycheck-checkpatch . [(20170217 1025) ((emacs (25)) (flycheck (30))) "Flycheck support for checkpatch.pl tool" single ((:commit . "6461fc7b0d493eb9863814055f8bce5fa35739de") (:authors ("Alexander Yarygin" . "yarygin.alexander@gmail.com")) (:maintainer "Alexander Yarygin" . "yarygin.alexander@gmail.com") (:url . "https://github.com/zpp0/flycheck-checkpatch"))]) (flycheck-checkbashisms . [(20160224 1706) ((emacs (24)) (flycheck (0 25))) "checkbashisms checker for flycheck" single ((:commit . "0794ad763d7cd81286283f6400bc89a81e8e07d4") (:keywords "convenience" "tools" "sh" "unix") (:authors ("Cuong Le" . "cuong.manhle.vn@gmail.com")) (:maintainer "Cuong Le" . "cuong.manhle.vn@gmail.com") (:url . "https://github.com/Gnouc/flycheck-checkbashisms"))]) (flycheck-cask . [(20160928 926) ((emacs (24 1)) (flycheck (0 14)) (dash (2 4 0))) "Cask support in Flycheck" single ((:commit . "c3a51147eddeb7347de81f6a498fc96538bac499") (:keywords "tools" "convenience") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/flycheck/flycheck-cask"))]) (flycheck-bashate . [(20160630 440) ((flycheck (0 24)) (emacs (24 4))) "Integrate bashate with flycheck" single ((:commit . "77fa03dbc578c34fe71ca44926bac2aff8f2b021") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/flycheck-bashate"))]) (flycheck-ats2 . [(20170225 1636) ((emacs (24 1)) (flycheck (0 22))) "Flycheck: ATS2 support" single ((:commit . "9f77add8408462af35bdddf87e37a661880255e3") (:keywords "convenience" "tools" "languages") (:authors ("Mark Laws" . "mdl@60hz.org")) (:maintainer "Mark Laws" . "mdl@60hz.org") (:url . "http://github.com/drvink/flycheck-ats2"))]) (flycheck-apertium . [(20160406 1318) ((flycheck (0 25))) "Apertium checkers in flycheck" tar ((:commit . "71cf49d5aaee962b995583384bfa045a1d4c3db7") (:keywords "convenience" "tools" "xml") (:authors ("Kevin Brubeck Unhammer" . "unhammer+apertium@mm.st")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer+apertium@mm.st") (:url . "http://wiki.apertium.org/wiki/Emacs"))]) (flycheck . [(20181018 1021) ((dash (2 12 1)) (pkg-info (0 4)) (let-alist (1 0 4)) (seq (1 11)) (emacs (24 3))) "On-the-fly syntax checking" tar ((:commit . "894d96f75fed380a3a26103da88bb9c75a7997f3") (:keywords "convenience" "languages" "tools") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Clément Pit-Claudel" . "clement.pitclaudel@live.com") (:url . "http://www.flycheck.org"))]) (flx-isearch . [(20180103 514) ((emacs (24)) (flx (20140821)) (cl-lib (0 5))) "Fuzzy incremental searching for emacs" single ((:commit . "f132fd6367e369885ab3a865fbfe20eee989bc0b") (:keywords "convenience" "search" "flx") (:authors ("PythonNut" . "pythonnut@pythonnut.com")) (:maintainer "PythonNut" . "pythonnut@pythonnut.com") (:url . "https://github.com/pythonnut/flx-isearch"))]) (flx-ido . [(20180117 1519) ((flx (0 1)) (cl-lib (0 3))) "flx integration for ido" single ((:commit . "46040d0b096a0340d91235561f27a959a61d0fef") (:authors ("Le Wang")) (:maintainer "Le Wang") (:url . "https://github.com/lewang/flx"))]) (flx . [(20151030 1812) ((cl-lib (0 3))) "fuzzy matching with good sorting" single ((:commit . "46040d0b096a0340d91235561f27a959a61d0fef") (:authors ("Le Wang")) (:maintainer "Le Wang") (:url . "https://github.com/lewang/flx"))]) (fluxus-mode . [(20170210 1941) ((osc (0 1)) (emacs (24 4))) "Major mode for interfacing with Fluxus" single ((:commit . "3661d4dfdaf249138e7f215f15f291c9391ede8d") (:keywords "languages") (:authors ("modula t." . "defaultxr@gmail.com")) (:maintainer "modula t." . "defaultxr@gmail.com") (:url . "https://github.com/defaultxr/fluxus-mode"))]) (flucui-themes . [(20181015 1821) ((emacs (24))) "Custom theme inspired by the Flat UI palette" tar ((:commit . "eba54099a8a42524ccf41fe724ad495d528abcd2") (:keywords "lisp") (:authors ("MetroWind" . "chris.corsair@gmail.com")) (:maintainer "MetroWind" . "chris.corsair@gmail.com") (:url . "https://github.com/MetroWind/flucui-theme"))]) (flower . [(20181025 1626) ((emacs (24 4)) (clomacs (0 0 3))) "Emacs task tracker client." tar ((:commit . "49e224ab26d85f5cd4a3ad9cdac391264b80ad5e") (:keywords "hypermedia" "outlines" "tools" "vc") (:authors ("Sergey Sobko" . "SSobko@ptsecurity.com")) (:maintainer "Sergey Sobko" . "SSobko@ptsecurity.com") (:url . "https://github.com/PositiveTechnologies/flower"))]) (flow-minor-mode . [(20180315 1824) ((emacs (25 1))) "Flow type mode based on web-mode." single ((:commit . "d1b32a7dd0d33c6a00a106da5f4b2323602cbd3e") (:url . "https://github.com/an-sh/flow-minor-mode"))]) (floobits . [(20180801 524) ((json (1 2)) (highlight (0))) "Floobits plugin for real-time collaborative editing" tar ((:commit . "489b294a7f30ecd2af2edc0823dead8102f27af6") (:keywords "comm" "tools") (:authors ("Matt Kaniaris") ("Geoff Greer")) (:maintainer "Matt Kaniaris") (:url . "http://github.com/Floobits/floobits-emacs"))]) (fliptext . [(20171124 2056) nil "Input method for flipping characters upside down" single ((:commit . "fd821f645ffebae6ae3894afa7ba7fc06f91afc6") (:keywords "games" "i18n") (:authors ("André Riemann" . "andre.riemann@web.de")) (:maintainer "André Riemann" . "andre.riemann@web.de"))]) (flimenu . [(20170418 147) ((dash (2 10 0)) (emacs (24 4))) "Flatten imenu automatically" single ((:commit . "9351201d89b05cbdaec312a6ebd7fd10c38d6112") (:keywords "imenu" "browse" "structure" "hook" "mode" "matching" "tools" "convenience" "files") (:authors ("Ivan Malison" . "IvanMalison@gmail.com")) (:maintainer "Ivan Malison" . "IvanMalison@gmail.com") (:url . "https://github.com/IvanMalison/flimenu"))]) (flim . [(20180328 2324) ((apel (10 8))) "A library to provide basic features about message representation or encoding." tar ((:commit . "faaa2b1f2bb8fcf835ddfb8981654e4d3b2bdbc6"))]) (flex-isearch . [(20170308 2010) nil "Flex matching (like ido) in isearch." single ((:keywords "convenience" "search") (:authors ("Jonathan Kotta" . "jpkotta@gmail.com")) (:maintainer "Jonathan Kotta" . "jpkotta@gmail.com") (:url . "https://bitbucket.org/jpkotta/flex-isearch"))]) (flex-compile . [(20181107 426) ((emacs (25)) (buffer-manage (0 7)) (dash (2 13 0))) "Run, evaluate and compile for a many languages and modes." tar ((:commit . "a06f07e658d460cb662fa51c1c5d439ebee10375") (:keywords "compilation" "integration") (:authors ("Paul Landes")) (:maintainer "Paul Landes") (:url . "https://github.com/plandes/flex-compile"))]) (flex-autopair . [(20120809 1218) nil "Automatically insert pair braces and quotes, insertion conditions & actions are highly customizable." single ((:commit . "4bb757f2556a4a51828e2fed8fb81e31e83052cb") (:keywords "keyboard" "input") (:authors ("Yuuki Arisawa" . "yuuki.ari@gmail.com")) (:maintainer "Yuuki Arisawa" . "yuuki.ari@gmail.com") (:url . "https://github.com/uk-ar/flex-autopair.el"))]) (flatui-theme . [(20160619 127) nil "A color theme for Emacs based on flatuicolors.com" single ((:commit . "9c15db5526c15c8dba55023f5698372b19c2a780") (:authors ("John Louis Del Rosario" . "john2x@gmail.com")) (:maintainer "John Louis Del Rosario" . "john2x@gmail.com") (:url . "https://github.com/john2x/flatui-theme.el"))]) (flatui-dark-theme . [(20170513 1422) ((emacs (24))) "Dark color theme with colors from https://flatuicolors.com/" single ((:commit . "5b959a9f743f891e4660b1b432086417947872ea") (:keywords "color" "theme" "dark" "flatui" "faces") (:authors ("Andrew Phillips" . "theasp@gmail.com")) (:maintainer "Andrew Phillips" . "theasp@gmail.com") (:url . "https://github.com/theasp/flatui-dark-theme"))]) (flatland-theme . [(20171113 1521) nil "A simple theme for Emacs based on the Flatland theme for Sublime Text" single ((:commit . "a98a6f19ad4dff0fa3fad1ea487b7d0ef634a19a") (:authors ("Greg Chapple" . "info@gregchapple.com")) (:maintainer "Greg Chapple" . "info@gregchapple.com") (:url . "http://github.com/gregchapple/flatland-emacs"))]) (flatland-black-theme . [(20170808 1312) ((emacs (24 0))) "an Emacs 24 theme based on Flatland Black (tmTheme)" single ((:commit . "348c5d5fe615e6ea13cadc17f046e506e789ce07") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/flatland-black-theme"))]) (flash-region . [(20130923 1817) nil "Flash a region" single ((:commit . "261b3597b23cdd40e5c14262a5687bcc6c1d0901") (:keywords "utility") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com"))]) (flappymacs . [(20171023 1004) nil "flappybird clone for emacs" single ((:commit . "27f3e21acb22f786606481e3f4e5dc1edbaaaed4") (:keywords "games") (:authors ("Takayuki Sato")) (:maintainer "Takayuki Sato") (:url . "https://github.com/taksatou/flappymacs"))]) (flame . [(20180303 2016) ((emacs (24))) "automatic generation of flamage, as if we needed more." single ((:commit . "a749b2a77b87e505572d0f1f5d59fac76348bb73") (:keywords "games") (:authors ("Ian G. Batten" . "batten@uk.ac.bham.multics") ("Noah Friedman" . "friedman@splode.com")) (:maintainer "Noah Friedman" . "friedman@splode.com") (:url . "https://github.com/mschuldt/flame"))]) (fixmee . [(20150223 1355) ((button-lock (1 0 2)) (nav-flash (1 0 0)) (back-button (0 6 0)) (smartrep (0 0 3)) (string-utils (0 3 2)) (tabulated-list (0))) "Quickly navigate to FIXME notices in code" single ((:commit . "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084") (:keywords "navigation" "convenience") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/fixmee"))]) (fix-word . [(20180101 615) ((emacs (24 1)) (cl-lib (0 5))) "Convenient word transformation" single ((:commit . "8e66b6a7b599c6c5098490e83ef4e69acf307603") (:keywords "word" "convenience") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/fix-word"))]) (fix-muscle-memory . [(20160823 439) nil "Simple hacks to fix muscle memory problems" single ((:commit . "a123e04f8a1d2982cbf930efb909cad9522ac884") (:keywords "spelling" "typing") (:authors ("Jonathan Arkell" . "jonnay@jonnay.net")) (:maintainer "Jonathan Arkell" . "jonnay@jonnay.net"))]) (fix-input . [(20180101 620) ((emacs (24 4))) "Make input methods play nicely with alternative keyboard layout on OS level" single ((:commit . "37bc0734a2e71d66245ee3960879577e5ef906bb") (:keywords "input" "method") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/fix-input"))]) (fish-mode . [(20180827 303) ((emacs (24))) "Major mode for fish shell scripts" single ((:commit . "35fc7c1e243a7410823088a571ecf378e9f3efa6") (:keywords "fish" "shell") (:authors ("Tony Wang" . "wwwjfy@gmail.com")) (:maintainer "Tony Wang" . "wwwjfy@gmail.com"))]) (fish-completion . [(20180827 829) nil "Add fish completion to pcomplete (shell and Eshell)" single ((:commit . "a73526d67c4c5f7f2e425cec79d56c7517c7f1e9") (:authors ("Pierre Neidhardt" . "mail@ambrevar.xyz")) (:maintainer "Pierre Neidhardt" . "mail@ambrevar.xyz") (:url . "https://gitlab.com/Ambrevar/emacs-fish-completion"))]) (firrtl-mode . [(20180221 2355) ((emacs (24 3))) "mode for working with FIRRTL files" single ((:commit . "1ac00d526018945389bcb2292dbdd8395381774a") (:keywords "languages" "firrtl") (:authors ("Schuyler Eldridge" . "schuyler.eldridge@ibm.com")) (:maintainer "Schuyler Eldridge" . "schuyler.eldridge@ibm.com") (:url . "https://github.com/ibm/firrtl-mode"))]) (firestarter . [(20161219 1323) nil "Execute (shell) commands on save" single ((:commit . "4d6b106f325ac1802eabce3c8a7cd0a4c7a32864") (:keywords "convenience") (:authors ("Vasilij Schneidermann" . "v.schneidermann@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com") (:url . "https://github.com/wasamasa/firestarter"))]) (fireplace . [(20160811 1219) nil "A cozy fireplace for emacs" single ((:commit . "23a444f749bcb2b804593e3b2cb9c73cc59231fb") (:keywords "games") (:authors ("Johan Sivertsen" . "johanvts@gmail.com")) (:maintainer "Johan Sivertsen" . "johanvts@gmail.com") (:url . "https://github.com/johanvts/emacs-fireplace"))]) (firefox-controller . [(20160320 1847) ((moz (0)) (popwin (1 0 0)) (cl-lib (0 5))) "An improved Firefox controller" single ((:commit . "a8af8cbf70afaf6b89a26d6ac69af8e92afc181f") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com") (:url . "https://github.com/cute-jumper/emacs-firefox-controller"))]) (firecode-theme . [(20170808 1311) ((emacs (24 0))) "an Emacs 24 theme based on FireCode (tmTheme)" single ((:commit . "8b7b03ecdd41e70dab145b98906017e1392eaef4") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (fiplr . [(20140724 645) ((grizzl (0 1 0)) (cl-lib (0 1))) "Fuzzy Search for Files in Projects" tar ((:commit . "3f50159fd42125440d5b0eb9d6398560461f030b"))]) (fingers . [(20160817 829) nil "Modal editing with universal text manipulation helpers." tar ((:commit . "fed0f742afb1d72eaef29d8da394467550a030fa") (:keywords "fingers" "modal" "editing" "workman") (:authors ("Felix Geller" . "fgeller@gmail.com")) (:maintainer "Felix Geller" . "fgeller@gmail.com") (:url . "http://github.com/fgeller/fingers.el"))]) (findr . [(20130127 2032) nil "Breadth-first file-finding facility for (X)Emacs" single ((:commit . "1ddbc0464bb05dcda392b62666ad17239a2152d3") (:keywords "files") (:authors ("David Bakhash" . "cadet@bu.edu")) (:maintainer "David Bakhash" . "cadet@bu.edu"))]) (find-things-fast . [(20150519 2226) nil "Find things fast, leveraging the power of git" single ((:commit . "efc7c189019ed65430e2f9e910e8e0a5ca9d2d03") (:keywords "project" "convenience") (:authors ("Elvio Toccalino and Elliot Glaysher and Phil Hagelberg and Doug Alcorn")) (:maintainer "Elvio Toccalino and Elliot Glaysher and Phil Hagelberg and Doug Alcorn"))]) (find-temp-file . [(20170107 1339) nil "Open quickly a temporary file" single ((:commit . "513005d19d72d71f34481ee00158dd57bd93206f") (:keywords "convenience") (:authors ("Sylvain Rousseau <thisirs at gmail dot com>")) (:maintainer "Sylvain Rousseau <thisirs at gmail dot com>") (:url . "https://github.com/thisirs/find-temp-file.git"))]) (find-file-in-repository . [(20151113 1319) nil "Quickly find files in a git, mercurial or other repository" single ((:commit . "8a8c84a6dbe7a2bba4564c3b58c92d157abfa3f8") (:keywords "files" "convenience" "repository" "project" "source control") (:authors ("Samuel Hoffstaetter" . "samuel@hoffstaetter.com")) (:maintainer "Samuel Hoffstaetter" . "samuel@hoffstaetter.com") (:url . "https://github.com/hoffstaetter/find-file-in-repository"))]) (find-file-in-project . [(20181020 1413) ((ivy (0 10 0)) (emacs (24 3))) "Find file/directory and review Diff/Patch/Commit efficiently everywhere" single ((:commit . "83c9384e0c85ee8e0e4ad79d13a24181b43ae0b0") (:keywords "project" "convenience") (:authors ("Phil Hagelberg, Doug Alcorn, and Will Farrington")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "https://github.com/technomancy/find-file-in-project"))]) (find-by-pinyin-dired . [(20180210 218) ((pinyinlib (0 1 0))) "Find file by first PinYin character of Chinese Hanzi" single ((:commit . "3b4781148dddc84a701ad76c0934ed991ecd59d5") (:keywords "hanzi" "chinese" "dired" "find" "file" "pinyin") (:authors ("Chen Bin" . "chenbin.sh@gmail.com")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "http://github.com/redguardtoo/find-by-pinyin-dired"))]) (finalize . [(20170418 1945) ((emacs (24 1)) (cl-generic (0 3)) (cl-lib (0 3)) (eieio (1 4))) "finalizers for Emacs Lisp" tar ((:commit . "846731531e7d1d80451787992e07bfe7dedbe9ff"))]) (fillcode . [(20171029 1625) nil "Fill (wrap) function calls and expressions in source code" single ((:commit . "d0a9e20f5fcc24a786d09ea19bfb9237681ba823") (:authors ("Ryan Barrett" . "fillcode@ryanb.org")) (:maintainer "Ryan Barrett" . "fillcode@ryanb.org") (:url . "https://snarfed.org/fillcode"))]) (fill-function-arguments . [(20180427 1702) ((emacs (24 4))) "Convert function arguments to/from single line" single ((:commit . "7e4d6928f978a7ead825b4f49092b1d1ca63a0e1") (:keywords "convenience") (:authors ("David Shepherd" . "davidshepherd7@gmail.com")) (:maintainer "David Shepherd" . "davidshepherd7@gmail.com") (:url . "https://github.com/davidshepherd7/fill-function-arguments"))]) (fill-column-indicator . [(20171209 1924) nil "Graphically indicate the fill column" single ((:commit . "d2536b1c48f78679e15a2b50cd5d8c0ffde4b155") (:keywords "convenience") (:authors ("Alp Aker" . "alp.tekin.aker@gmail.com")) (:maintainer "Alp Aker" . "alp.tekin.aker@gmail.com"))]) (filelock . [(20180524 2215) ((emacs (24)) (cl-lib (0)) (f (0))) "Functions for manipulating file locks" single ((:commit . "17a5ca6e0dee14d2e7d92c84be91143bca9d9663") (:keywords "extensions" "files" "tools") (:authors ("Ryan C. Thompson")) (:maintainer "Ryan C. Thompson") (:url . "https://github.com/DarwinAwardWinner/emacs-filelock"))]) (figlet . [(20160218 2237) nil "Annoy people with big, ascii art text" single ((:authors ("Philip Jackson" . "phil@shellarchive.co.uk")) (:maintainer "Philip Jackson" . "phil@shellarchive.co.uk"))]) (fifo-class . [(20160425 558) nil "First in first out abstract class" single ((:commit . "8fe4cf690727f4ac7b67f29c55f845df023c3f21") (:keywords "lisp") (:authors ("Mola-T" . "Mola@molamola.xyz")) (:maintainer "Mola-T" . "Mola@molamola.xyz") (:url . "https://github.com/mola-T/fifo-class"))]) (fic-mode . [(20180603 2035) nil "Show FIXME/TODO/BUG(...) in special face only in comments and strings" single ((:commit . "a05fc36ed54ba0c6dc22ac216a6a72cf191ca13d") (:url . "https://github.com/lewang/fic-mode"))]) (fetch . [(20131201 730) nil "Fetch and unpack resources" single ((:commit . "3f2793afcbbc32f320e572453166f9354ecc6d06") (:authors ("Christian 'crshd' Brassat" . "christian.brassat@gmail.com")) (:maintainer "Christian 'crshd' Brassat" . "christian.brassat@gmail.com") (:url . "https://github.com/crshd/fetch.el"))]) (fennel-mode . [(20181105 431) nil "a major-mode for editing Fennel code" single ((:commit . "b7335f7116944cbe82f20b4012cfcf0073f090ae") (:keywords "languages" "tools") (:authors ("Phil Hagelberg")) (:maintainer "Phil Hagelberg") (:url . "https://gitlab.com/technomancy/fennel-mode"))]) (feebleline . [(20180914 2100) nil "Replace modeline with a slimmer proxy" single ((:commit . "89ddf31ecad885e5491e8d6b71b48c1591b3faec") (:authors ("Benjamin Lindqvist" . "benjamin.lindqvist@gmail.com")) (:maintainer "Benjamin Lindqvist" . "benjamin.lindqvist@gmail.com") (:url . "https://github.com/tautologyclub/feebleline"))]) (feature-mode . [(20170907 1448) nil "Major mode for editing Gherkin (i.e. Cucumber) user stories" tar ((:commit . "722b352c4f0b800a9356dd369c79612782b3b847"))]) (fd-dired . [(20180731 1049) ((emacs (25))) "find-dired alternative using fd" single ((:commit . "fd4c3f490b0b6727592b85f1635e57638dec8f91") (:keywords "tools" "fd" "find" "dired") (:authors ("Rashawn Zhang" . "namy.19@gmail.com")) (:maintainer "Rashawn Zhang" . "namy.19@gmail.com") (:url . "https://github.com/yqrashawn/fd-dired"))]) (fcopy . [(20150304 1403) nil "Funny Copy, set past point HERE then search copy text" single ((:commit . "e355f6ec889d8ecbdb096019c2dc660b1cec4941") (:keywords "convenience") (:authors ("Masayuki Ataka" . "masayuki.ataka@gmail.com")) (:maintainer "Masayuki Ataka" . "masayuki.ataka@gmail.com") (:url . "https://github.com/ataka/fcopy"))]) (fcitx . [(20170914 200) nil "Make fcitx better in Emacs" single ((:commit . "095332fbeb994c908c533fe2ad068c0728211c3d") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com") (:url . "https://github.com/cute-jumper/fcitx.el"))]) (faustine . [(20171122 1202) ((emacs (24 3)) (faust-mode (0 3))) "Edit, visualize, build and run Faust code" single ((:commit . "07a38963111518f86123802f9d477be0d4689a3f") (:keywords "languages" "faust") (:authors ("Yassin Philip" . "xaccrocheur@gmail.com")) (:maintainer "Yassin Philip" . "xaccrocheur@gmail.com") (:url . "https://bitbucket.org/yphil/faustine"))]) (faust-mode . [(20180205 926) nil "Faust syntax colorizer for Emacs." single ((:commit . "7c31b22bdbfd2f8c16ec117d2975d56dd61ac15c") (:keywords "languages" "faust") (:authors ("rukano" . "rukano@gmail.com")) (:maintainer "Yassin Philip" . "xaccrocheur@gmail.com") (:url . "https://github.com/rukano/emacs-faust-mode"))]) (fastnav . [(20120211 1457) nil "Fast navigation and editing routines." single ((:commit . "1019ba2b61d1a070204099b23da347278a61bc89") (:keywords "nav" "fast" "fastnav" "navigation") (:authors ("Zsolt Terek" . "zsolt@google.com")) (:maintainer "Zsolt Terek" . "zsolt@google.com"))]) (fastdef . [(20160713 1329) ((ivy (0 7 0)) (w3m (0 0))) "Insert terminology from Google top search results" single ((:commit . "0696f41dc150d35ce31fe8d2ea74f4173818bb55") (:keywords "terminology" "org-mode" "markdown") (:authors ("Chen Bin <chenin DOT sh AT gmail DOT com>")) (:maintainer "Chen Bin <chenin DOT sh AT gmail DOT com>") (:url . "http://github.com/redguardtoo/fastdef"))]) (fasd . [(20180606 505) nil "Emacs integration for the command-line productivity booster `fasd'" single ((:commit . "020c6a4b5fd1498a84ae142d2e32c7ff678fb029") (:keywords "cli" "bash" "zsh" "autojump") (:authors ("steckerhalter")) (:maintainer "steckerhalter") (:url . "https://framagit.org/steckerhalter/emacs-fasd"))]) (farmhouse-theme . [(20160713 2244) nil "Farmhouse Theme, Emacs edition" tar ((:commit . "7ddc1ff13b4a3d5466bd0d33ecb86100352e83a7") (:keywords "color" "theme") (:url . "https://github.com/mattly/emacs-farmhouse-theme"))]) (fancy-narrow . [(20171031 16) nil "narrow-to-region with more eye candy." single ((:commit . "9f4a587f6a5a387271fb665e13f59d41fd42504c") (:keywords "faces" "convenience") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Bruce-Connor/fancy-narrow"))]) (fancy-battery . [(20150101 1204) ((emacs (24 1))) "Fancy battery display" single ((:commit . "9b88ae77a01aa3edc529840338bcb2db7f445822") (:keywords "convenience" "tools" "hardware") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn.com") (:url . "https://github.com/lunaryorn/fancy-battery.el"))]) (fakir . [(20140729 1652) ((noflet (0 0 8)) (dash (1 3 2)) (kv (0 0 19))) "fakeing bits of Emacs" single ((:commit . "1fca406ad7de80fece6319ff75d4230b648534b0") (:keywords "lisp" "tools") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "http://github.com/nicferrier/emacs-fakir"))]) (fakespace . [(20120818 6) nil "fake namespaces with defpackage" single ((:commit . "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a") (:authors ("Christopher Wellons" . "mosquitopsu@gmail.com")) (:maintainer "Christopher Wellons" . "mosquitopsu@gmail.com") (:url . "https://github.com/skeeto/elisp-fakespace"))]) (faff-theme . [(20181114 1336) nil "Light Emacs color theme on cornsilk3 background" single ((:commit . "646ab8b56093614679b8465993eae9678e792c12") (:keywords "color" "theme") (:authors ("James Ferguson <(concat \"wjcferguson\" at-sign \"gmail.com\")>")) (:maintainer "James Ferguson <(concat \"wjcferguson\" at-sign \"gmail.com\")>") (:url . "https://github.com/WJCFerguson/emacs-faff-theme"))]) (factlog . [(20130210 140) ((deferred (0 3 1))) "File activity logger" single ((:commit . "6503d77ea882c995b051d22e72db336fb28770fc") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>") (:url . "https://github.com/tkf/factlog"))]) (faceup . [(20170925 1946) nil "Markup language for faces and font-lock regression testing" single ((:commit . "6c92dad56a133e14e7b27831e1bcf9b3a71ff154") (:keywords "faces" "languages") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/faceup"))]) (face-explorer . [(20170710 1901) nil "Library and tools for faces and text properties" single ((:commit . "13bd4553bc4b09215a04d0267be1cb4ed834775c") (:keywords "faces") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/face-explorer"))]) (fabric . [(20171116 656) nil "Launch Fabric using Emacs" tar ((:commit . "df79be341d0b34ed23850f9894136092fa5fea8c") (:keywords "python" "fabric") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@chmouel.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@chmouel.com") (:url . "https://github.com/nlamirault/fabric.el"))]) (f3 . [(20180130 1158) ((emacs (24 3)) (helm (2 8 8)) (cl-lib (0 5))) "a helm interface to find" tar ((:commit . "000009ce4adf7a57eae80512f29c4ec2a1391ce5") (:keywords "find" "file" "files" "helm" "fast" "finder") (:authors ("Danny McClanahan")) (:maintainer "Danny McClanahan") (:url . "https://github.com/cosmicexplorer/f3"))]) (f . [(20180106 922) ((s (1 7 0)) (dash (2 2 0))) "Modern API for working with files and directories" single ((:commit . "de6d4d40ddc844eee643e92d47b9d6a63fbebb48") (:keywords "files" "directories") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/f.el"))]) (eziam-theme . [(20180414 1029) nil "A mostly monochrome theme, inspired by Tao and Leuven, with dark and light versions." tar ((:commit . "96595833110cd64c391e0ccd5230782a8f0a4e08"))]) (ez-query-replace . [(20170814 1321) ((dash (1 2 0)) (s (1 11 0))) "a smarter context-sensitive query-replace that can be reapplied" single ((:commit . "f5dbd2d3e5e62e6b7e7cc1a98fc4d0cd411e5afa") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (eyuml . [(20141028 2227) ((request (0 2 0)) (s (1 8 0))) "Write textual uml diagram from emacs using yuml.me" single ((:commit . "eb29c37316e44a14741f16e894fbcfcb7537dc80") (:keywords "uml") (:authors ("Anthony HAMON" . "hamon.anth@gmail.com")) (:maintainer "Anthony HAMON" . "hamon.anth@gmail.com") (:url . "http://github.com/antham/eyuml"))]) (eyebrowse . [(20180514 1919) ((dash (2 7 0)) (emacs (24 3 1))) "Easy window config switching" single ((:commit . "dfeea9e9cd6dcd78ddc9fccdf9a21f7317f754bc") (:keywords "convenience") (:authors ("Vasilij Schneidermann" . "v.schneidermann@gmail.com")) (:maintainer "Vasilij Schneidermann" . "v.schneidermann@gmail.com") (:url . "https://github.com/wasamasa/eyebrowse"))]) (exwm-x . [(20181117 918) ((cl-lib (0 5)) (exwm (0 17)) (switch-window (0 10)) (swiper (0 9 0)) (bind-key (1 0)) (counsel (0 9 0)) (ivy (0 9 0))) "A derivative wm based on EXWM (emacs x window manager)" tar ((:commit . "c33cc513513c83b55a6c490f68fdb2196d44657d") (:keywords "window-manager" "exwm") (:authors ("Feng Shu" . "tumashu@163.com")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/exwm-x"))]) (exwm-surf . [(20171204 1140) ((emacs (24 4)) (exwm (0 16))) "Interface for Surf (surf.suckless.org) under exwm" single ((:commit . "6c17e2c1597fe4b7b454a1dac23b9127ac951e94") (:keywords "extensions") (:authors ("Peter" . "craven@gmx.net")) (:maintainer "Peter" . "craven@gmx.net") (:url . "https://github.com/ecraven/exwm-surf"))]) (exwm-edit . [(20180905 743) ((emacs (24 4))) "Edit mode for EXWM" single ((:commit . "961c0f3ea45766b888c73d7353da13d329538034") (:keywords "convenience") (:authors ("Ag Ibragimov")) (:maintainer "Ag Ibragimov") (:url . "https://github.com/agzam/exwm-edit"))]) (extmap . [(20181028 1645) ((emacs (24 1))) "Externally-stored constant mapping for Elisp" single ((:commit . "1139b57d8f4276fe56b8416fdaf4745f2cdfe7c3") (:keywords "lisp") (:authors ("Paul Pogonyshev" . "pogonyshev@gmail.com")) (:maintainer "Paul Pogonyshev" . "pogonyshev@gmail.com") (:url . "https://github.com/doublep/extmap"))]) (extend-dnd . [(20151122 1850) nil "R drag and Drop" tar ((:commit . "80c966c93b82c9bb5c6225a432557c39144fc602") (:keywords "extend" "drag and drop") (:authors ("Matthew L. Fidler")) (:maintainer "Matthew L. Fidler") (:url . "https://github.com/mlf176f2/extend-dnd"))]) (extempore-mode . [(20180105 621) ((emacs (24 4))) "Emacs major mode for Extempore source files" single ((:commit . "ae5f40d4b0883a4519e460cd7720e5fcc3a68fa5") (:keywords "extempore") (:authors ("Ben Swift" . "ben@benswift.me")) (:maintainer "Ben Swift" . "ben@benswift.me") (:url . "http://github.com/extemporelang/extempore-emacs-mode"))]) (exsqlaim-mode . [(20170607 1003) ((s (1 10 0))) "Use variables inside sql queries" single ((:commit . "a2e0a62ec8b87193d8eaa695774bfd689324b06c") (:authors ("Ahmad Nazir Raja" . "ahmadnazir@gmail.com")) (:maintainer "Ahmad Nazir Raja" . "ahmadnazir@gmail.com") (:url . "https://github.com/ahmadnazir/exsqlaim-mode"))]) (express . [(20140508 2041) ((string-utils (0 3 2))) "Alternatives to `message'" single ((:commit . "93dae7377eace4a5413ba99aecb6f26f90798725") (:keywords "extensions" "message" "interface") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/express"))]) (expand-region . [(20180817 1134) nil "Increase selected region by semantic units." tar ((:commit . "ed3292473035dc8f3d2f321e82974ef87327808f"))]) (expand-line . [(20151006 207) nil "Expand selection by line" single ((:commit . "75a5d0241f35dd0748ab8ecb4ff16891535be372") (:authors ("Kai Yu" . "yeannylam@gmail.com")) (:maintainer "Kai Yu" . "yeannylam@gmail.com"))]) (exotica-theme . [(20180212 2329) ((emacs (24))) "A dark theme with vibrant colors" single ((:commit . "ff3ef4f6fa38c93b99becad977c7810c990a4d2f") (:keywords "faces" "theme" "dark" "vibrant colors") (:authors ("Bharat Joshi" . "jbharat@outlook.com")) (:maintainer "Bharat Joshi" . "jbharat@outlook.com") (:url . "https://github.com/jbharat/exotica-theme"))]) (exiftool . [(20170822 2132) ((emacs (25))) "Elisp wrapper around ExifTool" single ((:commit . "3a07dbcb975577734d4abf6d68e1ab83a01951bb") (:keywords "data") (:authors ("Arun I" . "arunisaac@systemreboot.net")) (:maintainer "Arun I" . "arunisaac@systemreboot.net") (:url . "https://git.systemreboot.net/exiftool.el"))]) (exec-path-from-shell . [(20180324 204) nil "Get environment variables such as $PATH from the shell" single ((:commit . "9bc0f4a762f16d488376fb52409c58239a86d75d") (:keywords "unix" "environment") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/exec-path-from-shell"))]) (exato . [(20180305 1042) ((evil (1 2 13)) (emacs (24))) "EXATO: Evil XML/HTML Attributes Text Object" single ((:commit . "88266fa7fcfbef704032f671b94f756f2f98bd4f") (:authors ("Filipe Silva" . "filipe.silva@gmail.com")) (:maintainer "Filipe Silva" . "filipe.silva@gmail.com") (:url . "https://github.com/ninrod/exato"))]) (eww-lnum . [(20150102 1512) nil "Conkeror-like functionality for eww" single ((:commit . "4b0ecec769919ecb05ca4fb15ec51911ba589929") (:keywords "eww" "browse" "conkeror") (:authors ("Andrey Kotlarski" . "m00naticus@gmail.com")) (:maintainer "Andrey Kotlarski" . "m00naticus@gmail.com") (:url . "https://github.com/m00natic/eww-lnum"))]) (ewmctrl . [(20170922 217) nil "Use `wmctrl' to manage desktop windows via EWMH/NetWM." single ((:commit . "3d0217c4d6cdb5c308b6cb4293574f470d4faacf") (:keywords "desktop" "windows" "ewmh" "netwm") (:authors ("Alexis" . "flexibeast@gmail.com") ("Adam Plaice" . "plaice.adam@gmail.com")) (:maintainer "Alexis" . "flexibeast@gmail.com") (:url . "https://github.com/flexibeast/ewmctrl"))]) (evm . [(20141007 1156) ((dash (2 3 0)) (f (0 13 0))) "Emacs Version Manager" single ((:commit . "d0623b2355436a5fd9f7238b419782080c79196b") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/evm"))]) (evil-visualstar . [(20160223 48) ((evil (0))) "Starts a * or # search from the visual selection" single ((:commit . "06c053d8f7381f91c53311b1234872ca96ced752") (:keywords "evil" "vim" "visualstar") (:authors ("Bailey Ling")) (:maintainer "Bailey Ling") (:url . "https://github.com/bling/evil-visualstar"))]) (evil-visual-replace . [(20171016 613) ((evil (1 0 0))) "search/replace commands for evil visual state, inc. blocks" single ((:commit . "163fc827a1ffc106475da470c37fb26f4cc9b008") (:keywords "evil" "search" "replace" "regexp" "block" "rectangular" "region" "visual") (:authors ("Troy Pracy")) (:maintainer "Troy Pracy") (:url . "https://github.com/troyp/evil-visual-replace"))]) (evil-visual-mark-mode . [(20150202 1800) ((evil (1 0 9)) (dash (2 10))) "Display evil marks on buffer" single ((:commit . "094ee37599492885ff3144918fcdd9b74dadaaa0") (:keywords "evil") (:authors ("Roman Gonzalez" . "romanandreg@gmail.com")) (:maintainer "Roman Gonzalez" . "romanandreg@gmail.com"))]) (evil-vimish-fold . [(20171030 1151) ((emacs (24 4)) (evil (1 0 0)) (vimish-fold (0 2 0))) "Integrate vimish-fold with evil" single ((:commit . "c617fecb91303f8c63f85a6101a503fdc88aae84") (:authors ("Alex Murray" . "murray.alex@gmail.com")) (:maintainer "Alex Murray" . "murray.alex@gmail.com") (:url . "https://github.com/alexmurray/evil-vimish-fold"))]) (evil-tutor-ja . [(20160917 132) ((evil (1 0 9)) (evil-tutor (0 1))) "Japanese Vimtutor adapted to Evil and wrapped in a major-mode" tar ((:commit . "99af7d82e02ce3bcdfaff47c5c80b57327a7ea8d") (:keywords "convenience" "editing" "evil" "japanese") (:authors ("Kenji Miyazaki" . "kenjizmyzk@gmail.com")) (:maintainer "Kenji Miyazaki" . "kenjizmyzk@gmail.com") (:url . "https://github.com/kenjimyzk/evil-tutor-ja"))]) (evil-tutor . [(20150103 650) ((evil (1 0 9))) "Vimtutor adapted to Evil and wrapped in a major-mode" tar ((:commit . "4e124cd3911dc0d1b6817ad2c9e59b4753638f28") (:keywords "convenience" "editing" "evil") (:authors ("Sylvain Benner" . "sylvain.benner@gmail.com")) (:maintainer "Sylvain Benner" . "sylvain.benner@gmail.com") (:url . "https://github.com/syl20bnr/evil-tutor"))]) (evil-textobj-syntax . [(20181101 1404) ((names (0 5)) (emacs (24)) (evil (0))) "Provides syntax text objects." single ((:commit . "933752ff2ae22d1bbcda394bdeed5c575d90d1d8") (:keywords "evil" "syntax" "highlight" "text-object") (:url . "https://github.com/laishulu/evil-textobj-syntax"))]) (evil-textobj-line . [(20150729 1522) ((evil (1 0 0))) "evil textobj line" single ((:commit . "3d401b6831bdbeec967ec8e64177a8950251e812") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-evil-textobj-line"))]) (evil-textobj-entire . [(20150422 1254) ((emacs (24)) (evil (1 0 0))) "text object for entire lines of buffer for evil" single ((:commit . "5b3a98f3a69edc3a788f539f6ffef4a0ef5e853d") (:keywords "convenience" "emulations") (:authors ("supermomonga")) (:maintainer "supermomonga") (:url . "https://github.com/supermomonga/evil-textobj-entire"))]) (evil-textobj-column . [(20170905 1905) ((names (0 5)) (emacs (24)) (evil (0))) "Provides column text objects." single ((:commit . "835d7036d0bc9a6e44fc9b7c54ccf2a7c01428cd") (:keywords "evil" "column" "text-object") (:authors ("Fox Kiester" . "noct@openmailbox.org")) (:maintainer "Fox Kiester" . "noct@openmailbox.org") (:url . "https://github.com/noctuid/evil-textobj-column"))]) (evil-textobj-anyblock . [(20170905 1907) ((cl-lib (0 5)) (evil (1 1 0))) "Textobject for the closest user-defined blocks." single ((:commit . "ff00980f0634f95bf2ad9956b615a155ea8743be") (:keywords "evil") (:authors ("Fox Kiester" . "noct@openmailbox.org")) (:maintainer "Fox Kiester" . "noct@openmailbox.org") (:url . "https://github.com/noctuid/evil-textobj-anyblock"))]) (evil-text-object-python . [(20160815 841) ((emacs (24)) (evil (1 2 12))) "Python specific evil text objects" single ((:commit . "3b3fb01e7ad7eeeeae1143695547fe75148cc44f") (:keywords "evil" "python" "text-object") (:authors ("Wouter Bolsterlee" . "wouter@bolsterl.ee")) (:maintainer "Wouter Bolsterlee" . "wouter@bolsterl.ee") (:url . "https://github.com/wbolster/evil-text-object-python"))]) (evil-test-helpers . [(20180109 1840) ((evil (1 2 13))) "unit test helpers for Evil" single ((:commit . "99bcf8c31ee72a3a571e013f40d105618fb92d19") (:authors ("Vegard Øye <vegard_oye at hotmail.com>")) (:maintainer "Vegard Øye <vegard_oye at hotmail.com>"))]) (evil-terminal-cursor-changer . [(20170401 842) ((evil (1 0 8))) "Change cursor shape and color by evil state in terminal" single ((:commit . "b49ca4393d2f3cc6014174950059b36a5cb22949") (:keywords "evil" "terminal" "cursor") (:authors ("7696122")) (:maintainer "7696122") (:url . "https://github.com/7696122/evil-terminal-cursor-changer"))]) (evil-tabs . [(20160217 1520) ((evil (0 0 0)) (elscreen (0 0 0))) "Integrating Vim-style tabs for Evil mode users." single ((:commit . "53d3314a810017b6056ab6796aef671f5ea1c063") (:keywords "evil" "tab" "tabs" "vim") (:authors ("Kris Jenkins" . "krisajenkins@gmail.com")) (:maintainer "Kris Jenkins" . "krisajenkins@gmail.com") (:url . "https://github.com/krisajenkins/evil-tabs"))]) (evil-swap-keys . [(20170726 1820) ((emacs (24))) "intelligently swap keys on text input with evil" single ((:commit . "56bc201e265a6bd482a7c41a7c81d2238341ef3a") (:keywords "evil" "key" "swap" "numbers" "symbols") (:authors ("Wouter Bolsterlee" . "wouter@bolsterl.ee")) (:maintainer "Wouter Bolsterlee" . "wouter@bolsterl.ee") (:url . "https://github.com/wbolster/evil-swap-keys"))]) (evil-surround . [(20181020 1248) ((evil (1 2 12))) "emulate surround.vim from Vim" single ((:commit . "63ce01848878ce011eb4fee59c51109dd1e3ddb5") (:keywords "emulation" "vi" "evil") (:authors ("Tim Harper <timcharper at gmail dot com>") ("Vegard Øye <vegard_oye at hotmail dot com>")) (:maintainer "Tim Harper <timcharper at gmail dot com>"))]) (evil-string-inflection . [(20180313 1755) ((emacs (24)) (evil (1 2 13)) (string-inflection (1 0 6))) "snake_case -> CamelCase -> etc. for text objects" single ((:commit . "008b74a9b2994abfb4ff5b679b8a5a26fd45e98a") (:authors ("Filipe Silva" . "filipe.silva@gmail.com")) (:maintainer "Filipe Silva" . "filipe.silva@gmail.com") (:url . "https://github.com/ninrod/evil-string-inflection"))]) (evil-space . [(20151208 1228) ((evil (1 0 0))) "Repeat motion in Evil. Correct the behaviour of what SPC should do." single ((:commit . "a9c07284d308425deee134c9d88a2d538dd229e6") (:keywords "space" "repeat" "motion") (:authors ("Quang Linh LE" . "linktohack@gmail.com")) (:maintainer "Quang Linh LE" . "linktohack@gmail.com") (:url . "http://github.com/linktohack/evil-space"))]) (evil-snipe . [(20180731 1731) ((emacs (24 4)) (evil (1 2 12)) (cl-lib (0 5))) "emulate vim-sneak & vim-seek" single ((:commit . "8dd076cc56eb9b04494e4e303b86a959b048350b") (:keywords "emulation" "vim" "evil" "sneak" "seek") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/evil-snipe"))]) (evil-smartparens . [(20171210 1513) ((evil (1 0)) (emacs (24 4)) (smartparens (1 10 1))) "Evil support for smartparens" single ((:commit . "026d4a3cfce415a4dfae1457f871b385386e61d3") (:keywords "evil" "smartparens") (:authors ("Lars Andersen" . "expez@expez.com")) (:maintainer "Lars Andersen" . "expez@expez.com") (:url . "https://www.github.com/expez/evil-smartparens"))]) (evil-search-highlight-persist . [(20170523 334) ((highlight (0))) "Persistent highlights after search" single ((:commit . "979d2dec58d3b9c5ca5fdf4bb802a0209913794e") (:authors ("Juanjo Alvarez" . "juanjo@juanjoalvarez.net")) (:maintainer "Juanjo Alvarez" . "juanjo@juanjoalvarez.net"))]) (evil-rsi . [(20160221 2104) ((evil (1 0 0))) "Use emacs motion keys in evil, inspired by vim-rsi" single ((:commit . "65ae60866be494e4622fe383e23975e04d2a42a3") (:keywords "evil" "rsi" "evil-rsi") (:authors ("Quang Linh LE" . "linktohack@gmail.com")) (:maintainer "Quang Linh LE" . "linktohack@gmail.com") (:url . "http://github.com/linktohack/evil-rsi"))]) (evil-replace-with-register . [(20170713 925) ((evil (1 0 8))) "Port of vim plugin ReplaceWithRegister" single ((:commit . "91cc7bf21a94703c441cc9212214075b226b7f67") (:keywords "evil" "plugin") (:authors ("Dewdrops" . "v_v_4474@126.com")) (:maintainer "Dewdrops" . "v_v_4474@126.com") (:url . "https://github.com/Dewdrops/evil-ReplaceWithRegister"))]) (evil-replace-with-char . [(20180324 2206) ((evil (1 2 13)) (emacs (24))) "replace chars of a text object with a char" single ((:commit . "ed4a12d5bff11163eb03ad2826c52fd30f51a8d3") (:authors ("Filipe Silva" . "filipe.silva@gmail.com")) (:maintainer "Filipe Silva" . "filipe.silva@gmail.com") (:url . "https://github.com/ninrod/evil-replace-with-char"))]) (evil-rails . [(20160621 2258) ((evil (1 0)) (projectile-rails (1 0))) "Rails support for Evil Mode" single ((:commit . "c8669783d8a40719b2604c58a4c06c248cab272f") (:keywords "ruby" "rails" "vim" "project" "convenience" "web" "evil" "projectile") (:authors ("Antono Vasiljev" . "antono.vasiljev@gmail.com")) (:maintainer "Antono Vasiljev" . "antono.vasiljev@gmail.com") (:url . "https://github.com/antono/evil-rails"))]) (evil-quickscope . [(20160202 1924) ((evil (0))) "Highlight unique characters in words for f,F,t,T navigation" single ((:commit . "37a20e4c56c6058abf186ad4013c155e695e876f") (:keywords "faces" "emulation" "vim" "evil") (:authors ("Michael Chen" . "blorbx@gmail.com")) (:maintainer "Michael Chen" . "blorbx@gmail.com") (:url . "http://github.com/blorbx/evil-quickscope"))]) (evil-python-movement . [(20180724 1420) ((emacs (25 1)) (cl-lib (0 5)) (dash (2 13 0)) (evil (1 0)) (s (1 12 0))) "Port Neovim's python movement to Evil" single ((:commit . "9936b3b7f8d96415d517c1f3604637889484a637") (:authors ("Felipe Lema <felipelema en mortemale punto org>")) (:maintainer "Felipe Lema <felipelema en mortemale punto org>") (:url . "https://bitbucket.org/FelipeLema/evil-python-movement.el/"))]) (evil-paredit . [(20150413 2048) ((evil (1 0 9)) (paredit (25 -2))) "Paredit support for evil keybindings" single ((:commit . "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f") (:keywords "paredit" "evil") (:authors ("Roman Gonzalez" . "romanandreg@gmail.com")) (:maintainer "Roman Gonzalez" . "romanandreg@gmail.com") (:url . "https://github.com/roman/evil-paredit"))]) (evil-org . [(20180323 2306) ((emacs (24 4)) (evil (1 0))) "evil keybindings for org-mode" tar ((:commit . "b6d652a9163d3430a9e0933a554bdbee5244bbf6") (:keywords "evil" "vim-emulation" "org-mode" "key-bindings" "presets") (:maintainer "Somelauw") (:url . "https://github.com/Somelauw/evil-org-mode.git"))]) (evil-opener . [(20161207 1810) ((evil (1 2 12)) (opener (0 2 2))) "opening urls as buffers in evil" tar ((:commit . "c384f67278046fdcd220275fdd212ab85672cbeb") (:keywords "url" "http" "files") (:authors ("Tim Reddehase" . "tr@rightsrestricted.com")) (:maintainer "Tim Reddehase" . "tr@rightsrestricted.com") (:url . "https://github.com/0robustus1/opener.el"))]) (evil-numbers . [(20140606 1251) nil "increment/decrement numbers like in vim" single ((:commit . "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e") (:keywords "numbers" "increment" "decrement" "octal" "hex" "binary") (:authors ("Michael Markert" . "markert.michael@googlemail.com")) (:maintainer "Michael Markert" . "markert.michael@googlemail.com") (:url . "http://github.com/cofi/evil-numbers"))]) (evil-nerd-commenter . [(20180722 2325) ((emacs (24 4))) "Comment/uncomment lines efficiently. Like Nerd Commenter in Vim" tar ((:commit . "275c95c89cc09c7096bd6fd0deabd49f29634f5d") (:keywords "commenter" "vim" "line" "evil") (:authors ("Chen Bin" . "chenbin.sh@gmail.com")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "http://github.com/redguardtoo/evil-nerd-commenter"))]) (evil-multiedit . [(20181009 1515) ((emacs (24 4)) (evil (1 2 12)) (iedit (0 97)) (cl-lib (0 5))) "multiple cursors for evil-mode" single ((:commit . "ea38ac2f96c19a45591ece0e8b60252efe324657") (:keywords "multiple cursors" "editing" "iedit") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/evil-multiedit"))]) (evil-mu4e . [(20180613 1039) ((emacs (24 4)) (evil (1 2 10))) "evil-based key bindings for mu4e" single ((:commit . "5b22c1e30246318f233264506272d770f63897ca") (:authors ("Joris Engbers" . "info@jorisengbers.nl")) (:maintainer "Joris Engbers" . "info@jorisengbers.nl") (:url . "https://github.com/JorisE/evil-mu4e"))]) (evil-mc-extras . [(20170202 1649) ((emacs (24 3)) (evil (1 2 12)) (cl-lib (0 5)) (evil-mc (0 0 2)) (evil-numbers (0 4))) "Extra functionality for evil-mc" tar ((:commit . "8c1af3232dd1e15b2ea38360b8cd1e857e11c416") (:keywords "evil" "editing" "multiple-cursors" "vim" "evil-multiple-cursors" "evil-mc" "evil-mc-extras") (:authors ("Gabriel Adomnicai" . "gabesoft@gmail.com")) (:maintainer "Gabriel Adomnicai" . "gabesoft@gmail.com") (:url . "https://github.com/gabesoft/evil-mc-extras"))]) (evil-mc . [(20180921 1727) ((emacs (24 3)) (evil (1 2 13)) (cl-lib (0 5))) "Multiple cursors for evil-mode" tar ((:commit . "2af29ecd2fbed1571c4cc2501dfb2e38ffd4bfa2") (:keywords "evil" "editing" "multiple-cursors" "vim" "evil-multiple-cursors" "evil-mc" "evil-mc") (:authors ("Gabriel Adomnicai" . "gabesoft@gmail.com")) (:maintainer "Gabriel Adomnicai" . "gabesoft@gmail.com") (:url . "https://github.com/gabesoft/evil-mc"))]) (evil-matchit . [(20181111 604) ((evil (1 2 0)) (emacs (24 4))) "Vim matchit ported to Evil" tar ((:commit . "7d65b4167b1f0086c2b42b3aec805e47a0d355c4") (:keywords "matchit" "vim" "evil") (:authors ("Chen Bin" . "chenbin.sh@gmail.com")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "http://github.com/redguardtoo/evil-matchit"))]) (evil-mark-replace . [(20150424 718) ((evil (1 0 8))) "replace the thing in marked area" single ((:commit . "56cf191724a3e82239ca47a17b071c20aedb0617") (:keywords "mark" "replace" "evil") (:authors ("Chen Bin" . "chenbin.sh@gmail.com")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "http://github.com/redguardtoo/evil-mark-replace"))]) (evil-magit . [(20180702 1553) ((evil (1 2 3)) (magit (2 6 0))) "evil-based key bindings for magit" single ((:commit . "9e2275b14807168451e10b93d69e420e435f21ef") (:authors ("Justin Burkett" . "justin@burkett.cc")) (:maintainer "Justin Burkett" . "justin@burkett.cc") (:url . "https://github.com/justbur/evil-magit"))]) (evil-lispy . [(20170304 1059) ((lispy (0 26 0)) (evil (1 2 12)) (hydra (0 13 5))) "precision Lisp editing with Evil and Lispy" tar ((:commit . "040a7ee130c2403a1d6dac591b94b202bb48e186") (:keywords "lisp") (:authors ("Brandon Carrell <brandoncarrell@gmail.com>, Mika Vilpas" . "mika.vilpas@gmail.com")) (:maintainer "Brandon Carrell <brandoncarrell@gmail.com>, Mika Vilpas" . "mika.vilpas@gmail.com") (:url . "https://github.com/sp3ctum/evil-lispy"))]) (evil-lisp-state . [(20160404 248) ((evil (1 0 9)) (bind-map (0)) (smartparens (1 6 1))) "An evil state to edit Lisp code" single ((:commit . "3c65fecd9917a41eaf6460f22187e2323821f3ce") (:keywords "convenience" "editing" "evil" "smartparens" "lisp" "mnemonic") (:authors ("Sylvain Benner" . "sylvain.benner@gmail.com")) (:maintainer "Sylvain Benner" . "sylvain.benner@gmail.com") (:url . "https://github.com/syl20bnr/evil-lisp-state"))]) (evil-lion . [(20170811 614) ((emacs (24 3)) (evil (1 0 0))) "Evil align operator, port of vim-lion" single ((:commit . "aaa3874ad54c31b4322ac5bbc63e331498b11d61") (:keywords "emulations" "evil" "vim") (:authors ("edkolev" . "evgenysw@gmail.com")) (:maintainer "edkolev" . "evgenysw@gmail.com") (:url . "http://github.com/edkolev/evil-lion"))]) (evil-ledger . [(20180802 1612) ((emacs (24 4)) (evil (1 2 12)) (ledger-mode (0))) "Make `ledger-mode' more `evil'." single ((:commit . "7a9f9f5d39c42fffdba8004f8982642351f2b233") (:keywords "convenience" "evil" "languages" "ledger" "vim-emulation") (:authors ("Aaron Jacobs" . "atheriel@gmail.com")) (:maintainer "Aaron Jacobs" . "atheriel@gmail.com") (:url . "https://github.com/atheriel/evil-ledger"))]) (evil-leader . [(20140606 1243) ((evil (0))) "let there be <leader>" single ((:commit . "39f7014bcf8b36463e0c7512c638bda4bac6c2cf") (:keywords "evil" "vim-emulation" "leader") (:authors ("Michael Markert" . "markert.michael@googlemail.com")) (:maintainer "Michael Markert" . "markert.michael@googlemail.com") (:url . "http://github.com/cofi/evil-leader"))]) (evil-indent-textobject . [(20130831 2219) ((evil (0))) "evil textobjects based on indentation" single ((:commit . "70a1154a531b7cfdbb9a31d6922482791e20a3a7") (:keywords "convenience" "evil") (:authors ("Michael Markert" . "markert.michael@gmail.com")) (:maintainer "Michael Markert" . "markert.michael@gmail.com") (:url . "http://github.com/cofi/evil-indent-textobject"))]) (evil-indent-plus . [(20151109 1906) ((evil (0)) (cl-lib (0 5))) "Evil textobjects based on indentation" single ((:commit . "0c7501e6efed661242c3a20e0a6c79a6455c2c40") (:keywords "convenience" "evil") (:authors ("Eivind Fonn" . "evfonn@gmail.com")) (:maintainer "Eivind Fonn" . "evfonn@gmail.com") (:url . "http://github.com/TheBB/evil-indent-plus"))]) (evil-iedit-state . [(20180607 558) ((evil (1 0 9)) (iedit (0 97))) "Evil states to interface iedit mode." single ((:commit . "f75cff4ecbd5beaa9ca64a6c157c4105f078daec") (:keywords "convenience" "editing" "evil" "iedit" "mnemonic") (:authors ("Sylvain Benner" . "sylvain.benner@gmail.com")) (:maintainer "Sylvain Benner" . "sylvain.benner@gmail.com") (:url . "https://github.com/syl20bnr/evil-iedit-state"))]) (evil-goggles . [(20180725 952) ((emacs (24 4)) (evil (1 0 0))) "Add a visual hint to evil operations" single ((:commit . "d7876e6566ac82b7c3251a59651e7db6ab756589") (:keywords "emulations" "evil" "vim" "visual") (:authors ("edkolev" . "evgenysw@gmail.com")) (:maintainer "edkolev" . "evgenysw@gmail.com") (:url . "http://github.com/edkolev/evil-goggles"))]) (evil-god-state . [(20141117 255) ((evil (1 0 8)) (god-mode (2 12 0))) "use god-mode keybindings in evil-mode" single ((:commit . "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40") (:keywords "evil" "leader" "god-mode") (:authors ("Eric Seidel")) (:maintainer "Eric Seidel") (:url . "https://github.com/gridaphobe/evil-god-state"))]) (evil-fringe-mark . [(20180728 647) ((emacs (24 3)) (evil (1 0 0)) (fringe-helper (0 1 1)) (goto-chg (1 6))) "Display evil-mode marks in the fringe" tar ((:commit . "37521e190dc0414a2bfddd6b219527b1a8dd3f58") (:authors ("Andrew Smith" . "andy.bill.smith@gmail.com")) (:maintainer "Andrew Smith" . "andy.bill.smith@gmail.com") (:url . "https://github.com/Andrew-William-Smith/evil-fringe-mark"))]) (evil-find-char-pinyin . [(20160514 2041) ((evil (1 2 12)) (pinyinlib (0 1 0))) "Evil's f/F/t/T/evil-snipe commands with Pinyin support" single ((:commit . "04e277946d658f1a73c68dcbbadea9c21097a31c") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (evil-extra-operator . [(20161213 403) ((evil (1 0 7))) "Evil operator for evaluating codes, taking notes, searching via google, etc." single ((:commit . "e16a9b36f9901254da9af8a73871061616410fc3") (:keywords "evil" "plugin") (:authors ("Dewdrops" . "v_v_4474@126.com")) (:maintainer "Dewdrops" . "v_v_4474@126.com") (:url . "http://github.com/Dewdrops/evil-extra-operator"))]) (evil-expat . [(20180719 816) ((emacs (24 3)) (evil (1 0 0))) "Evil ex commands" single ((:commit . "3ff831784c5f301330ecced5ebd43cce42980d2b") (:keywords "emulations" "evil" "vim") (:authors ("edkolev" . "evgenysw@gmail.com")) (:maintainer "edkolev" . "evgenysw@gmail.com") (:url . "http://github.com/edkolev/evil-expat"))]) (evil-exchange . [(20170511 259) ((evil (1 2 8)) (cl-lib (0 3))) "Exchange text more easily within Evil" single ((:commit . "47691537815150715e64e6f6ec79be7746c96120") (:keywords "evil" "plugin") (:authors ("Dewdrops" . "v_v_4474@126.com")) (:maintainer "Dewdrops" . "v_v_4474@126.com") (:url . "http://github.com/Dewdrops/evil-exchange"))]) (evil-ex-shell-command . [(20180903 614) ((emacs (24 4)) (evil (1 1 0))) "invoke shell-command right from evil-ex" single ((:commit . "dd31672b1f6b67072b06805c9460f90bc682488a") (:keywords "tools" "shell-command" "evil") (:authors ("Rashawn Zhang" . "namy.19@gmail.com")) (:maintainer "Rashawn Zhang" . "namy.19@gmail.com") (:url . "https://github.com/yqrashawn/evil-ex-shell-command"))]) (evil-ex-fasd . [(20180903 612) ((emacs (24 4)) (evil (1 1 0)) (fasd (0))) "using fasd right from evil-ex" single ((:commit . "ed8fbbe23a8a268d9dcbf1a6132e928ba2c655c5") (:keywords "tools" "fasd" "evil" "navigation") (:authors ("Rashawn Zhang" . "namy.19@gmail.com")) (:maintainer "Rashawn Zhang" . "namy.19@gmail.com") (:url . "https://github.com/yqrashawn/evil-ex-fasd"))]) (evil-escape . [(20180910 1234) nil "No description available." single ((:commit . "f4e9116bfbaac8c9d210c17ad488e0982291245f"))]) (evil-embrace . [(20160519 1829) ((emacs (24 4)) (embrace (0 1 0)) (evil-surround (0))) "Evil integration of embrace.el" single ((:commit . "4379adea032b25e359d01a36301b4a5afdd0d1b7") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (evil-ediff . [(20170724 1923) ((evil (1 2 3))) "Make ediff a little evil" single ((:commit . "50d26cb0654fca8f8fd7227410e5cbf0b8f681cf") (:authors ("Justin Burkett" . "justin@burkett.cc")) (:maintainer "Justin Burkett" . "justin@burkett.cc") (:url . "https://github.com/justbur/evil-ediff"))]) (evil-easymotion . [(20180114 654) ((emacs (24)) (avy (0 3 0)) (cl-lib (0 5))) "A port of vim's easymotion to emacs" single ((:commit . "79c13ed3bce018ac09d358e642e5bd7025e93603") (:keywords "convenience" "evil") (:authors ("PythonNut" . "pythonnut@pythonnut.com")) (:maintainer "PythonNut" . "pythonnut@pythonnut.com") (:url . "https://github.com/pythonnut/evil-easymotion"))]) (evil-dvorak . [(20160416 1841) ((evil (1 0 8))) "evil keybindings for that work with dvorak mode" tar ((:commit . "824f7c56980d72a0ff04c662223540cd66f13754") (:keywords "evil" "vim-emulation" "dvorak" "keyboard") (:url . "https://github.com/jbranso/evil-dvorak.git"))]) (evil-commentary . [(20170413 1451) ((evil (1 0 0))) "Comment stuff out. A port of vim-commentary." tar ((:commit . "395f91014b69844b81660c155f42eb9b1b3d199d") (:keywords "evil" "comment" "commentary" "evil-commentary") (:authors ("Quang Linh LE" . "linktohack@gmail.com")) (:maintainer "Quang Linh LE" . "linktohack@gmail.com") (:url . "http://github.com/linktohack/evil-commentary"))]) (evil-collection . [(20181114 950) ((emacs (25 1)) (cl-lib (0 5)) (evil (1 2 13))) "A set of keybindings for Evil mode" tar ((:commit . "dfa412db04b3714a14a1879679daddefb873b89b") (:keywords "evil" "tools") (:authors ("James Nguyen" . "james@jojojames.com")) (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/emacs-evil/evil-collection"))]) (evil-colemak-minimal . [(20171006 1317) ((emacs (24)) (evil (1 2 12))) "Minimal Colemak key bindings for evil-mode" single ((:commit . "6d98b6da60f414524a0d718f76024c26dce742b3") (:keywords "colemak" "evil") (:authors ("Bryan Allred" . "bryan@revolvingcow.com")) (:maintainer "Bryan Allred" . "bryan@revolvingcow.com") (:url . "https://github.com/bmallred/evil-colemak-minimal"))]) (evil-colemak-basics . [(20170425 1209) ((emacs (24)) (evil (1 2 12)) (evil-snipe (2 0 3))) "Basic Colemak key bindings for evil-mode" single ((:commit . "7844079b47f47bb1dc24c885b0ac2e67524fa960") (:keywords "colemak" "evil") (:authors ("Wouter Bolsterlee" . "wouter@bolsterl.ee")) (:maintainer "Wouter Bolsterlee" . "wouter@bolsterl.ee") (:url . "https://github.com/wbolster/evil-colemak-basics"))]) (evil-cleverparens . [(20170718 413) ((evil (1 0)) (paredit (1)) (smartparens (1 6 1)) (emacs (24 4)) (dash (2 12 0))) "Evil friendly minor-mode for editing lisp." tar ((:commit . "8c45879d49bfa6d4e414b6c1df700a4a51cbb869") (:keywords "cleverparens" "parentheses" "evil" "paredit" "smartparens") (:authors ("Olli Piepponen" . "opieppo@gmail.com")) (:maintainer "Olli Piepponen" . "opieppo@gmail.com") (:url . "https://github.com/luxbock/evil-cleverparens"))]) (evil-better-visual-line . [(20181026 1028) ((evil (1 2 13))) "gj and gk visual line mode fix" single ((:commit . "15f77e67fcc3c48db323ccd8c8c4bc249e2911b8") (:keywords "evil" "vim" "motion") (:authors ("<nuckollsp at gmail.com>")) (:maintainer "<nuckollsp at gmail.com>") (:url . "https://github.com/yourfin/evil-better-visual-line"))]) (evil-avy . [(20150908 748) ((emacs (24 1)) (cl-lib (0 5)) (avy (0 3 0)) (evil (1 2 3))) "set-based completion" single ((:commit . "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5") (:keywords "point" "location" "evil" "vim") (:authors ("Yufan Lou" . "loganlyf@gmail.com")) (:maintainer "Yufan Lou" . "loganlyf@gmail.com") (:url . "https://github.com/louy2/evil-avy"))]) (evil-args . [(20180908 2157) ((evil (1 0 8))) "Motions and text objects for delimited arguments in Evil." single ((:commit . "758ad5ae54ad34202064fec192c88151c08cb387") (:keywords "evil" "vim-emulation") (:authors ("Connor Smith" . "wconnorsmith@gmail.com")) (:maintainer "Connor Smith" . "wconnorsmith@gmail.com") (:url . "http://github.com/wcsmith/evil-args"))]) (evil-anzu . [(20170124 718) ((evil (1 0 0)) (anzu (0 46))) "anzu for evil-mode" single ((:commit . "9bca6ca14d865e7e005bc02a28a09b4ae74facc9") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com") ("Fredrik Bergroth" . "fbergroth@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-evil-anzu"))]) (evil . [(20181107 1016) ((emacs (24 1)) (undo-tree (0 6 3)) (goto-chg (1 6)) (cl-lib (0 5))) "Extensible Vi layer for Emacs." tar ((:commit . "99bcf8c31ee72a3a571e013f40d105618fb92d19"))]) (eve-mode . [(20170822 2231) ((emacs (25)) (polymode (1 0)) (markdown-mode (2 0))) "Major mode for editing Eve documents." single ((:commit . "a4661114d9c18725691b76321d72167ca5a9070a") (:keywords "languages" "wp" "tools") (:authors ("Joshua Cole" . "joshuafcole@gmail.com")) (:maintainer "Joshua Cole" . "joshuafcole@gmail.com") (:url . "https://github.com/witheve/emacs-eve-mode"))]) (evalator-clojure . [(20160208 2148) ((cider (0 10 0)) (evalator (1 0 0))) "Clojure evaluation context for evalator via CIDER." tar ((:commit . "caa4e0a137bdfada86593128a654e16aa617ad50") (:keywords "languages" "clojure" "cider" "helm") (:authors ("Sean Irby")) (:maintainer "Sean Irby" . "sean.t.irby@gmail.com") (:url . "http://www.github.com/seanirby/evalator-clojure"))]) (evalator . [(20160213 128) ((helm-core (1 9 1))) "Package for interactive transformation of data with helm" tar ((:commit . "f30da4da48c0b3f3cfa1fc1c7cfdb53ffe79df36") (:keywords "languages" "elisp" "helm") (:authors ("Sean Irby")) (:maintainer "Sean Irby" . "sean.t.irby@gmail.com") (:url . "http://www.github.com/seanirby/evalator"))]) (eval-sexp-fu . [(20180510 203) ((cl-lib (0)) (highlight (0))) "Tiny functionality enhancements for evaluating sexps." single ((:commit . "1cfd0f3e167d63080692fad97ffe0091b024ad73") (:keywords "lisp" "highlight" "convenience") (:authors ("Takeshi Banse" . "takebi@laafc.net")) (:maintainer "Takeshi Banse" . "takebi@laafc.net"))]) (eval-in-repl . [(20171122 1343) ((dash (0 0 0)) (paredit (0 0 0)) (ace-window (0 0 0))) "Consistent ESS-like eval interface for various REPLs" tar ((:commit . "fea05a5b81d74ac53cb2a83aa83a73d9526bcc42") (:url . "https://github.com/kaz-yos/eval-in-repl/"))]) (eval-expr . [(20120619 647) nil "enhanced eval-expression command" single ((:commit . "a0e69e83de41df8dbccefc1962ab4f02206a3328") (:keywords "lisp" "extensions") (:authors ("Noah Friedman" . "friedman@splode.com")) (:maintainer nil . "friedman@splode.com"))]) (euslisp-mode . [(20170830 1929) ((emacs (24 3)) (s (1 9)) (exec-path-from-shell (0)) (helm-ag (0 58))) "Major mode for Euslisp-formatted text" single ((:commit . "db62a2d148482317794727982576494596365a55") (:keywords "euslisp" "euslisp" "github") (:authors ("iory" . "ab.ioryz@gmail.com")) (:maintainer "iory" . "ab.ioryz@gmail.com") (:url . "https://github.com/iory/euslisp-mode"))]) (ethan-wspace . [(20170507 2030) nil "whitespace customizations for emacs" single ((:commit . "e055ee6730c0b03525d32e67511ef6c51e4c29e4") (:keywords "whitespace" "tab" "newline" "trailing" "clean") (:authors ("Ethan Glasser-Camp" . "ethan@betacantrips.com")) (:maintainer "Ethan Glasser-Camp" . "ethan@betacantrips.com"))]) (eterm-256color . [(20181026 1529) ((emacs (24 4)) (xterm-color (1 7)) (f (0 19 0))) "Customizable 256 colors for term." tar ((:commit . "1340f69a78faf4e709ee29875550ecc9f434b216") (:keywords "faces") (:authors ("Diego A. Mundo" . "diegoamundo@gmail.com")) (:maintainer "Diego A. Mundo" . "diegoamundo@gmail.com") (:url . "http://github.com/dieggsy/eterm-256color"))]) (etable . [(20161028 2009) ((dash (2 9 0)) (interval-list (0 1)) (emacs (24 4))) "Implementation of javax.swing.JTable for Emacs." tar ((:commit . "d502141f0c69bf95256ba5cb9cd15350c7e942d2"))]) (esxml . [(20171129 807) nil "Library for working with xml via esxml and sxml" tar ((:commit . "5548ceba17deae0c3c6d0092672edc4de3c75ce3"))]) (esup . [(20180727 342) ((cl-lib (0 5)) (emacs (24))) "the Emacs StartUp Profiler (ESUP)" tar ((:commit . "5acb60e8d7a8fef854178f325682765820522b10") (:keywords "convenience" "processes") (:authors ("Joe Schafer" . "joe@jschaf.com")) (:maintainer "Joe Schafer" . "joe@jschaf.com") (:url . "http://github.com/jschaf/esup"))]) (ess-view . [(20181001 1730) ((ess (15)) (s (1 8 0)) (f (0 16 0))) "View R dataframes in a spreadsheet software" single ((:commit . "d4e5a340b7bcc58c434867b97923094bd0680283") (:keywords "extensions" "ess") (:authors ("Bocci Gionata" . "boccigionata@gmail.com")) (:maintainer "Bocci Gionata" . "boccigionata@gmail.com") (:url . "https://github.com/GioBo/ess-view"))]) (ess-smart-underscore . [(20181112 2102) ((ess (0))) "Ess Smart Underscore" tar ((:commit . "17fde1f2bffffeb67520922e09ebf66693ef0c6f") (:keywords "ess" "underscore") (:authors ("Matthew L. Fidler")) (:maintainer "Matthew Fidler") (:url . "http://github.com/mlf176f2/ess-smart-underscore.el"))]) (ess-smart-equals . [(20150202 601) ((emacs (24)) (ess (5 0))) "better smart-assignment with =-key in R and S" single ((:commit . "e0f5f18f01ed252fde50d051adf1fa6254a254c9") (:keywords "r" "s" "ess" "convenience") (:authors ("Christopher R. Genovese" . "genovese@cmu.edu")) (:maintainer "Christopher R. Genovese" . "genovese@cmu.edu") (:url . "https://github.com/genovese/ess-smart-equals"))]) (ess-R-data-view . [(20130509 1158) ((ctable (20130313 1743)) (popup (20130324 1305)) (ess (20130225 1754))) "Data viewer for GNU R" single ((:commit . "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9") (:keywords "convenience") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/ess-R-data-view.el"))]) (ess . [(20181119 1451) ((julia-mode (0 3))) "Emacs Speaks Statistics" tar ((:commit . "3d617ae97ee6e0fb5ed65180f8b2d1bb858efb28") (:authors ("David Smith" . "dsmith@stats.adelaide.edu.au") ("A.J. Rossini" . "blindglobe@gmail.com") ("Richard M. Heiberger" . "rmh@temple.edu") ("Kurt Hornik" . "Kurt.Hornik@R-project.org") ("Martin Maechler" . "maechler@stat.math.ethz.ch") ("Rodney A. Sparapani" . "rsparapa@mcw.edu") ("Stephen Eglen" . "stephen@gnu.org") ("Sebastian P. Luque" . "spluque@gmail.com") ("Henning Redestig" . "henning.red@googlemail.com") ("Vitalie Spinu" . "spinuvit@gmail.com") ("Lionel Henry" . "lionel.hry@gmail.com") ("J. Alexander Branham" . "alex.branham@gmail.com")) (:maintainer "ESS Core Team" . "ESS-core@r-project.org"))]) (esqlite-helm . [(20151116 850) ((esqlite (0 2 0)) (helm (20131207 845))) "Define helm source for sqlite database" single ((:commit . "bc4047e09b8f6c34802db86095cd465935670dce") (:keywords "data") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-esqlite"))]) (esqlite . [(20151206 1206) ((pcsv (1 3 3))) "Manipulate sqlite file from Emacs" single ((:commit . "bc4047e09b8f6c34802db86095cd465935670dce") (:keywords "data") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-esqlite"))]) (espy . [(20180929 1602) ((emacs (24))) "Emacs Simple Password Yielder" single ((:commit . "3daf31d55dc04bc0cd87f668b0ad106e67711349") (:keywords "convenience") (:authors ("Sebastian Wålinder" . "s.walinder@gmail.com")) (:maintainer "Sebastian Wålinder" . "s.walinder@gmail.com") (:url . "https://github.com/walseb/espy"))]) (espuds . [(20160905 1300) ((s (1 7 0)) (dash (2 2 0)) (f (0 12 1))) "Ecukes step definitions" single ((:commit . "78fc53feaf77a98d63894cd410faee2a18107b00") (:keywords "test") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/ecukes/espuds"))]) (espresso-theme . [(20181025 826) nil "Espresso Tutti Colori port for Emacs" single ((:commit . "d2fa034eb833bf37cc6842017070725e0da9b046") (:authors ("Martin Kühl <purl.org/net/mkhl>")) (:maintainer "Martin Kühl <purl.org/net/mkhl>") (:url . "https://github.com/dgutov/espresso-theme"))]) (eslintd-fix . [(20180429 1455) ((dash (2 12 0)) (emacs (24 3))) "use eslint_d to automatically fix js files" single ((:commit . "90e451af4daa190d6c0e29fb714b0501a7cce89a") (:authors ("Aaron Jensen" . "aaronjensen@gmail.com")) (:maintainer "Aaron Jensen" . "aaronjensen@gmail.com") (:url . "https://github.com/aaronjensen/eslintd-fix"))]) (eslint-fix . [(20180514 700) nil "Fix JavaScript files using ESLint" single ((:commit . "f81f3b47a47460611fbdbdae1d23275ec78f2f8d") (:keywords "tools" "javascript" "eslint" "lint" "formatting" "style") (:authors ("Neri Marschik" . "marschik_neri@cyberagent.co.jp")) (:maintainer "Neri Marschik" . "marschik_neri@cyberagent.co.jp") (:url . "https://github.com/codesuki/eslint-fix"))]) (eshell-z . [(20170117 438) ((cl-lib (0 5))) "cd to frequent directory in eshell" single ((:commit . "c9334cbc1552234df3437f35d98e32f4d18446b8") (:keywords "convenience") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/eshell-z"))]) (eshell-up . [(20170425 1737) ((emacs (24))) "Quickly go to a specific parent directory in eshell" single ((:commit . "9c100bae5c3020e8d9307e4332d3b64e7dc28519") (:keywords "eshell") (:authors ("Peter W. V. Tran-Jørgensen" . "peter.w.v.jorgensen@gmail.com")) (:maintainer "Peter W. V. Tran-Jørgensen" . "peter.w.v.jorgensen@gmail.com") (:url . "https://github.com/peterwvj/eshell-up"))]) (eshell-prompt-extras . [(20180110 634) nil "Display extra information for your eshell prompt." single ((:commit . "1d8825dcc005b488c6366d0b3015fc6686194eea") (:keywords "eshell" "prompt") (:authors ("Wei Zhao" . "kaihaosw@gmail.com")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/hiddenlotus/eshell-prompt-extras"))]) (eshell-git-prompt . [(20170909 1452) ((emacs (24 1)) (cl-lib (0 5)) (dash (2 11 0))) "Some Eshell prompt for Git users" single ((:commit . "b6bb2d7bd4e393b4170b29891cfefb72ae020aab") (:keywords "eshell" "git") (:authors ("Chunyang Xu" . "mail@xuchunyang.me")) (:maintainer "Chunyang Xu" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/eshell-git-prompt"))]) (eshell-fringe-status . [(20170117 2316) nil "Show last status in fringe" single ((:commit . "adc6997c68e39c0d52a2af1b2fd5cf2057783797") (:authors ("Tom Willemse" . "tom@ryuslash.org")) (:maintainer "Tom Willemse" . "tom@ryuslash.org") (:url . "http://projects.ryuslash.org/eshell-fringe-status/"))]) (eshell-fixed-prompt . [(20170804 1335) ((emacs (25)) (s (1 11 0))) "Restrict eshell to a single fixed prompt" single ((:commit . "4351b214de6d4e8e45279930448e2f93b491848e") (:authors ("Tijs Mallaerts" . "tijs.mallaerts@gmail.com")) (:maintainer "Tijs Mallaerts" . "tijs.mallaerts@gmail.com"))]) (eshell-did-you-mean . [(20150915 1952) ((emacs (24 1)) (cl-lib (0 5))) "command not found (\"did you mean…\" feature) in Eshell" single ((:commit . "7cb6ef8e2274d0a50a9e114d412307a6543533d5") (:keywords "eshell") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/eshell-did-you-mean"))]) (eshell-bookmark . [(20170922 1514) ((emacs (24 3))) "Integrate bookmarks with eshell." single ((:commit . "deda4b848b2fb979dbe73ead2cb866610e3596ed") (:keywords "convenience" "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/eshell-bookmark"))]) (eshell-autojump . [(20150927 724) nil "autojump command for Eshell" single ((:commit . "c6a8b81a16576df9875e721fbbfe6690d04e7e43") (:authors ("Alex Schroeder")) (:maintainer "Yen-Chin, Lee" . "coldnew.tw@gmail.com") (:url . "http://github.com/coldnew/eshell-autojump"))]) (esh-help . [(20170830 411) ((dash (1 4 0))) "Add some help functions and support for Eshell" single ((:commit . "8a8a9d4d9852f8bd96da3b94e95ff57097ac8ec6") (:keywords "eshell" "extensions") (:authors ("Tomoya Tanjo" . "ttanjo@gmail.com")) (:maintainer "Tomoya Tanjo" . "ttanjo@gmail.com") (:url . "https://github.com/tom-tan/esh-help/"))]) (esh-buf-stack . [(20140107 1018) nil "Add a buffer stack feature to Eshell" single ((:commit . "ce0ea5aadca3150eaa9d2e6ec20296add4e99176") (:keywords "eshell" "extensions") (:authors ("Tomoya Tanjo" . "ttanjo@gmail.com")) (:maintainer "Tomoya Tanjo" . "ttanjo@gmail.com"))]) (esh-autosuggest . [(20171224 255) ((emacs (24 4)) (company (0 9 4))) "History autosuggestions for eshell" single ((:commit . "2fd996c1a29b21e60854a3c90d7d4fc3d5b0aded") (:keywords "completion" "company" "matching" "convenience" "abbrev") (:authors ("Diego A. Mundo" . "diegoamundo@gmail.com")) (:maintainer "Diego A. Mundo" . "diegoamundo@gmail.com") (:url . "http://github.com/dieggsy/esh-autosuggest"))]) (esa . [(20180403 1525) ((cl-lib (0 5))) "Interface to esa.io" single ((:commit . "417e0ac55abe9b17e0b7165d0df26bc018aff42e") (:keywords "tools" "esa") (:authors ("Nab Inno" . "nab@blahfe.com")) (:maintainer "Nab Inno" . "nab@blahfe.com") (:url . "https://github.com/nabinno/esa.el"))]) (es-windows . [(20140211 904) ((cl-lib (0 3)) (emacs (24))) "Window-management utilities" single ((:commit . "239e30408cb1adb4bc8bd63e2df34711fa910b4f") (:authors ("sabof")) (:maintainer "sabof") (:url . "https://github.com/sabof/es-windows"))]) (es-mode . [(20181004 2217) ((dash (2 11 0)) (cl-lib (0 5)) (spark (1 0)) (s (1 11 0)) (request (0 3 0))) "A major mode for editing and executing Elasticsearch queries" tar ((:commit . "1b7aca9b4e9fcebf4a67682203035eaf75b692e2") (:keywords "elasticsearch") (:authors ("Lee Hinman" . "lee@writequit.org")) (:maintainer "Lee Hinman" . "lee@writequit.org") (:url . "http://www.github.com/dakrone/es-mode"))]) (es-lib . [(20141111 1830) ((cl-lib (0 3))) "A collection of emacs utilities" tar ((:commit . "753b27363e39c10edc9e4e452bdbbbe4d190df4a") (:authors ("sabof")) (:maintainer "sabof") (:url . "https://github.com/sabof/es-lib"))]) (ert-runner . [(20180831 1145) ((s (1 6 1)) (dash (1 8 0)) (f (0 10 0)) (commander (0 2 0)) (ansi (0 1 0)) (shut-up (0 1 0))) "Opinionated Ert testing workflow" tar ((:commit . "90b8fdd5970ef76a4649be60003b37f82cdc1a65") (:keywords "test") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/ert-runner.el"))]) (ert-modeline . [(20140115 1015) ((s (1 3 1)) (dash (1 2 0)) (emacs (24 1)) (projectile (0 9 1))) "displays ert test results in the modeline." single ((:commit . "e7be2b81191afb437b70368a819770f8f750e4af") (:keywords "tools" "tests" "convenience") (:authors ("Chris Barrett" . "chris.d.barrett@me.com")) (:maintainer "Chris Barrett" . "chris.d.barrett@me.com"))]) (ert-junit . [(20181118 2256) ((ert (0)) (emacs (23 4))) "JUnit XML reports from ert results" single ((:commit . "b0649e94460aff5176dee5b33f28946bffb602d5") (:keywords "tools" "test" "unittest" "ert") (:authors ("Ola Nilsson" . "ola.nilsson@gmail.com")) (:maintainer "Ola Nilsson" . "ola.nilsson@gmail.com") (:url . "http://bitbucket.org/olanilsson/ert-junit"))]) (ert-expectations . [(20121009 734) nil "The simplest unit test framework in the world" single ((:commit . "aed70e002c4305b66aed7f6d0d48e9addd2dc1e6") (:keywords "test" "unittest" "ert" "expectations") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/emacs/download/ert-expectations.el"))]) (ert-async . [(20151011 1359) nil "Async support for ERT" single ((:commit . "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526") (:keywords "test") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/ert-async.el"))]) (eros . [(20180415 618) ((emacs (24 4))) "Evaluation Result OverlayS for Emacs Lisp" single ((:commit . "dd8910279226259e100dab798b073a52f9b4233a") (:keywords "convenience" "lisp") (:authors ("Tianxiang Xiong" . "tianxiang.xiong@gmail.com")) (:maintainer "Tianxiang Xiong" . "tianxiang.xiong@gmail.com") (:url . "https://github.com/xiongtx/eros"))]) (erlstack-mode . [(20181019 2117) ((emacs (25 1)) (dash (2 12 0))) "Minor mode for analysing Erlang stacktraces" single ((:commit . "984ffddb18432ce3e11528052da8c1a5beb31e72") (:keywords "tools" "erlang") (:authors ("k32")) (:maintainer "k32") (:url . "https://github.com/k32/erlstack-mode"))]) (erlang . [(20181011 1236) ((emacs (24 1))) "Erlang major mode" tar ((:commit . "0bcc9fa7fbe302f26cddd48e23d5d5d3eec21943"))]) (ergoemacs-status . [(20160318 538) ((powerline (2 3)) (mode-icons (0 1 0))) "Adaptive Status Bar / Mode Line" single ((:commit . "d952cc2361adf6eb4d6af60950ad4ab699c81320") (:authors ("Matthew Fidler")) (:maintainer "Matthew Fidler"))]) (ergoemacs-mode . [(20180709 1345) ((emacs (24 1)) (undo-tree (0 6 5)) (cl-lib (0 5))) "Emacs mode based on common modern interface and ergonomics." tar ((:commit . "a5d46653fd3a521276630c81bf75d3e8d224e5cb") (:keywords "convenience") (:authors ("Xah Lee" . "xah@xahlee.org") ("David Capello" . "davidcapello@gmail.com") ("Matthew L. Fidler" . "matthew.fidler@gmail.com")) (:maintainer "Matthew L. Fidler" . "matthew.fidler@gmail.com") (:url . "https://github.com/ergoemacs/ergoemacs-mode"))]) (erefactor . [(20160121 959) ((cl-lib (0 3))) "Emacs-Lisp refactoring utilities" single ((:commit . "bf68085e5635eb94fd85709f8e1355c1f5534745") (:keywords "extensions" "tools" "maint") (:authors ("Masahiro Hayashi" . "mhayashi1120@gmail.com")) (:maintainer "Masahiro Hayashi" . "mhayashi1120@gmail.com") (:url . "https://github.com/mhayashi1120/Emacs-erefactor"))]) (eredis . [(20181119 131) ((dash (0))) "eredis, a Redis client in emacs lisp" single ((:commit . "cfbfc25832f6fbc507bdd56b02e3a0b851a3c368") (:keywords "redis" "api" "tools" "org") (:authors ("Justin Heyes-Jones" . "justinhj@gmail.com")) (:maintainer "Justin Heyes-Jones" . "justinhj@gmail.com") (:url . "http://github.com/justinhj/eredis/"))]) (ereader . [(20170810 501) ((emacs (24 4)) (dash (2 12 1)) (s (1 10 0)) (xml+ (0 0 0))) "Major mode for reading ebooks with org-mode integration" tar ((:commit . "f3bbd3f13195f8fba3e3c880aab0e4c60430dcf3") (:keywords "epub" "ebook") (:authors ("Ben Dean" . "bendean837@gmail.com")) (:maintainer "Ben Dean" . "bendean837@gmail.com") (:url . "https://github.com/bddean/emacs-ereader"))]) (ercn . [(20150523 1503) nil "Flexible ERC notifications" single ((:commit . "79a4df5609046ae2e2e3375998287be6dda80615") (:authors ("David Leatherman" . "leathekd@gmail.com")) (:maintainer "David Leatherman" . "leathekd@gmail.com") (:url . "http://www.github.com/leathekd/ercn"))]) (erc-yt . [(20150426 1249) ((dash (2 10 0))) "An erc module to display youtube links nicely" single ((:commit . "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8") (:keywords "multimedia") (:authors ("William Stevenson" . "yhvh2000@gmail.com")) (:maintainer "William Stevenson" . "yhvh2000@gmail.com"))]) (erc-youtube . [(20150603 2136) nil "Show info about a YouTube URL in an ERC buffer." single ((:commit . "97054ba8475b442e2aa81e5a291f668b7f28697f") (:keywords "multimedia") (:authors ("Raimon Grau Cuscó" . "raimonster@gmail.com")) (:maintainer "Raimon Grau Cuscó" . "raimonster@gmail.com"))]) (erc-view-log . [(20140227 2039) nil "Major mode for viewing ERC logs" single ((:commit . "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266") (:keywords "erc" "viewer" "logs" "colors") (:authors ("Antoine Levitt") ("Thomas Riccardi" . "riccardi.thomas@gmail.com")) (:maintainer "Antoine Levitt") (:url . "http://github.com/Niluge-KiWi/erc-view-log/raw/master/erc-view-log.el"))]) (erc-twitch . [(20170427 606) ((json (1 3)) (erc (5 0))) "Support for Twitch emotes for ERC." single ((:commit . "53c6af0cb72e56d897d30a40e7e5066668d6b5ec") (:keywords "twitch" "erc" "emotes") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/vibhavp/erc-twitch"))]) (erc-tweet . [(20150920 1258) nil "shows text of a tweet when an url is posted in erc buffers" single ((:commit . "91fed61e139fa788d66a7358f0d50acc896414b8") (:keywords "extensions") (:authors ("Raimon Grau" . "raimonster@gmail.com")) (:maintainer "Raimon Grau" . "raimonster@gmail.com"))]) (erc-track-score . [(20130328 1215) nil "Add score support to tracked channel buffers" single ((:commit . "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3") (:authors ("Julien Danjou" . "julien@danjou.info")) (:maintainer "Julien Danjou" . "julien@danjou.info") (:url . "http://julien.danjou.info/erc-track-score.html"))]) (erc-terminal-notifier . [(20140115 1024) nil "OSX notifications via the terminal-notifier gem for Emacs ERC." single ((:commit . "a3dacb935845e4a20031212bbd82b2170f68d2a8") (:keywords "erc" "terminal-notifier" "nick") (:authors ("Julien Blanchard" . "julien@sideburns.eu")) (:maintainer "Julien Blanchard" . "julien@sideburns.eu") (:url . "http://github.com/julienXX/"))]) (erc-status-sidebar . [(20171223 2124) ((emacs (24 5)) (seq (2 3))) "a hexchat-like activity overview for ERC channels" single ((:commit . "ea4189a1dbfe60117359c36e681ad7c389e2968c") (:authors ("Andrew Barbarello")) (:maintainer "Andrew Barbarello") (:url . "https://github.com/drewbarbs/erc-status-sidebar"))]) (erc-social-graph . [(20150508 1204) nil "A social network graph module for ERC." single ((:commit . "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0") (:keywords "erc" "graph") (:authors ("Vibhav Pant" . "vibhavp@gmail.com")) (:maintainer "Vibhav Pant" . "vibhavp@gmail.com") (:url . "https://github.com/vibhavp/erc-social-graph"))]) (erc-scrolltoplace . [(20180608 606) ((emacs (24 0)) (switch-buffer-functions (0 0 1))) "An Erc module to scrolltobottom better with keep-place" single ((:commit . "feb0fbf1fd4bdf220ae2d31ea7c066d8e62089f9") (:keywords "erc" "module" "comm" "scrolltobottom" "keep-place") (:authors ("Jay Kamat" . "jaygkamat@gmail.com")) (:maintainer "Jay Kamat" . "jaygkamat@gmail.com") (:url . "http://gitlab.com/jgkamat/erc-scrolltoplace"))]) (erc-image . [(20180522 1424) nil "Show received image urls in the ERC buffer" single ((:commit . "82fb3871f02e24b1e880770b9a3d187aab43d0f0") (:keywords "multimedia") (:authors ("Jon de Andrés Frías" . "jondeandres@gmail.com") ("Raimon Grau Cuscó" . "raimonster@gmail.com")) (:maintainer "Jon de Andrés Frías" . "jondeandres@gmail.com"))]) (erc-hl-nicks . [(20180415 1946) nil "ERC nick highlighter that ignores uniquifying chars when colorizing" single ((:commit . "756c4438a8245ccd3e389bf6c9850ee8453783ec") (:authors ("David Leatherman" . "leathekd@gmail.com")) (:maintainer "David Leatherman" . "leathekd@gmail.com") (:url . "http://www.github.com/leathekd/erc-hl-nicks"))]) (erc-hipchatify . [(20170314 1637) ((emacs (24 4)) (s (1 10 0)) (alert (1 2)) (request (0 2 0))) "Provide emoticons and html rendering for HipChat" single ((:keywords "erc" "bitlbee" "hipchat" "multimedia") (:authors ("Sean Farley" . "sean@farley.io")) (:maintainer "Sean Farley" . "sean@farley.io") (:url . "https://bitbucket.org/seanfarley/erc-hipchatify"))]) (erc-crypt . [(20161228 1539) ((cl-lib (0 5))) "Symmetric Encryption for ERC" single ((:commit . "731f9264a5bf08a8fc0b5ce69e72058c86f873a5") (:keywords "comm") (:authors (nil . "xristos@sdf.lonestar.org")) (:maintainer nil . "xristos@sdf.lonestar.org") (:url . "https://github.com/atomontage/erc-crypt"))]) (erc-colorize . [(20170107 1339) nil "Per user colorization of whole message" single ((:commit . "d026a016dcb9d63d9ac66d30627a92a8f1681bbd") (:keywords "erc" "convenience") (:authors ("Sylvain Rousseau <thisirs at gmail dot com>")) (:maintainer "Sylvain Rousseau <thisirs at gmail dot com>") (:url . "https://github.com/thisirs/erc-colorize.git"))]) (eproject . [(20180312 1642) ((helm (1 6 4))) "assign files to projects, programatically" tar ((:commit . "068218d2cf2138cb2e8fc29b57e773a0097a7e8b") (:keywords "programming" "projects") (:authors ("Jonathan Rockway" . "jon@jrock.us")) (:maintainer "Jonathan Rockway" . "jon@jrock.us"))]) (eprime-mode . [(20140513 1816) nil "An E-prime checking mode for Emacs" single ((:commit . "17a481af26496be91c07139a9bfc05cfe722506f") (:keywords "e-prime" "english" "grammar") (:authors ("Andrew Hynes" . "andrewhynes@openmailbox.org")) (:maintainer "Andrew Hynes" . "andrewhynes@openmailbox.org") (:url . "https://github.com/AndrewHynes/eprime-mode"))]) (epresent . [(20160411 201) ((org (8)) (cl-lib (0 5))) "Simple presentation mode for Emacs Org-mode" single ((:commit . "6c8abedcf46ff08091fa2bba52eb905c6290057d") (:keywords "gui") (:url . "https://github.com/dakrone/epresent"))]) (epm . [(20161027 734) ((emacs (24 3)) (epl (0 8))) "Emacs Package Manager" tar ((:commit . "ab3d194fc4d11520d6b9bce4746d7242f3f1606a") (:authors ("Chunyang Xu" . "xuchunyang.me@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang.me@gmail.com") (:url . "https://github.com/xuchunyang/epm"))]) (epl . [(20180205 2049) ((cl-lib (0 3))) "Emacs Package Library" single ((:commit . "78ab7a85c08222cd15582a298a364774e3282ce6") (:keywords "convenience") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/cask/epl"))]) (epkg . [(20181104 1943) ((closql (1 0 0)) (dash (2 14 1)) (emacs (25 1))) "browse the Emacsmirror package database" tar ((:commit . "c42bc98a711ffa8d2a7b9096b563ac0edb0b9bf3") (:keywords "tools") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/emacscollective/epkg"))]) (epic . [(20170210 23) ((htmlize (1 47))) "Evernote Picker for Cocoa Emacs" single ((:commit . "a41826c330eb0ea061d58a08cc861b0c4ac8ec4e") (:keywords "evernote" "applescript") (:authors ("Yoshinari Nomura" . "nom@quickhack.net")) (:maintainer "Yoshinari Nomura" . "nom@quickhack.net") (:url . "https://github.com/yoshinari-nomura/epic"))]) (epc . [(20140610 534) ((concurrent (0 3 1)) (ctable (0 1 2))) "A RPC stack for the Emacs Lisp" tar ((:commit . "e1bfa5ca163273859336e3cc89b4b6460f7f8cda") (:keywords "lisp" "rpc") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>") (:url . "https://github.com/kiwanami/emacs-epc"))]) (eopengrok . [(20160904 659) ((s (1 9 0)) (dash (2 10 0)) (magit (2 1 0)) (cl-lib (0 5))) "opengrok interface for emacs" single ((:commit . "78f734328aaf19c52720415c037708ece1944c4c") (:keywords "tools") (:authors ("Youngjoo Lee" . "youngker@gmail.com")) (:maintainer "Youngjoo Lee" . "youngker@gmail.com"))]) (envdir . [(20160221 1923) ((emacs (24)) (dash (2 10 0)) (f (0 17 2))) "Modify environment according to files in a specified directory" single ((:commit . "f29346c55ccf11d8c75628edc6d430ed63c36917") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/envdir-mode"))]) (ensime . [(20180615 1330) ((scala-mode (0 23)) (sbt-mode (0 2)) (yasnippet (0 10 0)) (company (0 9 0)) (dash (2 12 1)) (s (1 11 0)) (popup (0 5 3))) "ENhanced Scala Interaction Mode for Emacs" tar ((:commit . "34eb11dac3ec9d1c554c2e55bf056ece6983add7") (:keywords "languages") (:url . "https://github.com/ensime/ensime-emacs"))]) (enotify . [(20130407 1348) nil "A networked notification system for emacs" tar ((:commit . "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80"))]) (eno . [(20160110 1034) ((dash (2 12 1)) (edit-at-point (1 0))) "Goto/copy/cut any word/symbol/line in view, similar to ace-jump/easymotion" single ((:commit . "40075bb1ed9e62f42c5799f3d3721734742ed417") (:authors (nil . "<e.enoson@gmail.com>")) (:maintainer nil . "<e.enoson@gmail.com>") (:url . "http://github.com/enoson/eno.el"))]) (enlive . [(20170725 1417) nil "query html document with css selectors" single ((:commit . "604a8ca272b6889f114e2b5a13adb5b1dc4bae86") (:keywords "css" "selector" "query") (:authors ("ZHOU Feng" . "zf.pascal@gmail.com")) (:maintainer "ZHOU Feng" . "zf.pascal@gmail.com") (:url . "http://github.com/zweifisch/enlive"))]) (enh-ruby-mode . [(20180730 2309) ((emacs (24))) "Major mode for editing Ruby files" tar ((:commit . "09e1ed06c1cf323e3b4d45cd86353087e6a12fde") (:keywords "languages" "elisp" "ruby") (:authors ("Geoff Jacobsen")) (:maintainer "Geoff Jacobsen") (:url . "http://github.com/zenspider/Enhanced-Ruby-Mode"))]) (engine-mode . [(20180401 1646) ((cl-lib (0 5))) "Define and query search engines from within Emacs." single ((:commit . "fd5a235b2c93b95143d676e6b654e388d7cdd956") (:authors ("Harry R. Schwartz" . "hello@harryrschwartz.com")) (:maintainer "Harry R. Schwartz" . "hello@harryrschwartz.com") (:url . "https://github.com/hrs/engine-mode"))]) (encourage-mode . [(20151128 905) ((emacs (24 4))) "Encourages you in your work. :D" single ((:commit . "99edacf2d94d168d3da0609860dc7253db7c9815") (:keywords "fun") (:authors ("Patrick Mosby" . "patrick@schreiblogade.de")) (:maintainer "Patrick Mosby" . "patrick@schreiblogade.de") (:url . "https://github.com/halbtuerke/encourage-mode.el"))]) (enclose . [(20121008 1614) nil "Enclose cursor within punctuation pairs." tar ((:commit . "2747653e84af39017f503064bc66ed1812a77259"))]) (emr . [(20180921 2115) ((s (1 3 1)) (dash (1 2 0)) (cl-lib (0 2)) (popup (0 5 0)) (emacs (24 1)) (list-utils (0 3 0)) (paredit (24 0 0)) (projectile (0 9 1)) (clang-format (0)) (iedit (0 97))) "Emacs refactoring system." tar ((:commit . "8856b2ed7e45dd33a5f81e1302a2fba736c64dd6") (:keywords "tools" "convenience" "refactoring") (:authors ("Chris Barrett" . "chris.d.barrett@me.com")) (:maintainer "Chris Barrett" . "chris.d.barrett@me.com"))]) (empos . [(20151011 1916) nil "Locate bibtex citations from within emacs" single ((:commit . "7b99ad30e56937adb7e6349777e5a2045597d564") (:keywords "citations" "reference" "bibtex" "reftex") (:authors ("Dimitris Alikaniotis <da352 [at] cam.ac.uk>")) (:maintainer "Dimitris Alikaniotis <da352 [at] cam.ac.uk>") (:url . "http://github.com/dimalik/empos/"))]) (emojify-logos . [(20180814 917) ((emojify (0 4))) "Add logos to emojify" tar ((:commit . "a3e78bcbdf863092d4c9b026ac08bf7d1c7c0e8b") (:authors ("mxgoldstein" . "m_goldstein@gmx.net")) (:maintainer "mxgoldstein" . "m_goldstein@gmx.net") (:url . "https://github.com/mxgoldstein/emojify-logos"))]) (emojify . [(20180611 1538) ((seq (1 11)) (ht (2 0)) (emacs (24 3))) "Display emojis in Emacs" tar ((:commit . "38ae28d95b58e9fb86a3495a2dda3e5de254c4fc") (:keywords "multimedia" "convenience") (:authors ("Iqbal Ansari" . "iqbalansari02@yahoo.com")) (:maintainer "Iqbal Ansari" . "iqbalansari02@yahoo.com") (:url . "https://github.com/iqbalansari/emacs-emojify"))]) (emoji-recall . [(20160723 2208) ((emacs (24))) "How many emoji can you recall from memory?" tar ((:commit . "d9122f8fb1467309260109a1985cd14f18fdf631") (:keywords "game") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/emoji-recall.el"))]) (emoji-fontset . [(20160726 1924) nil "Set font face for Emoji." single ((:commit . "10be897fa5165fd40fd35a89e38c759e008fa775") (:keywords "emoji" "font" "config") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me"))]) (emoji-display . [(20140117 1013) nil "emoji displaying module" single ((:commit . "bb4217f6400151a9cfa6d4524b8427f01feb5193") (:keywords "emoji") (:authors ("Kazuhiro Ito" . "kzhr@d1.dion.ne.jp")) (:maintainer "Kazuhiro Ito" . "kzhr@d1.dion.ne.jp") (:url . "https://github.com/ikazuhiro/emoji-display"))]) (emoji-cheat-sheet-plus . [(20150617 1331) ((emacs (24)) (helm (1 6 4))) "emoji-cheat-sheet for emacs" tar ((:commit . "96a003127d646a2683d81ca906a17eace0a6413e") (:keywords "emacs" "emoji") (:authors ("Sylvain Benner (based on the work of Shingo Fukuyama)")) (:maintainer "Sylvain Benner (based on the work of Shingo Fukuyama)") (:url . "https://github.com/syl20bnr/emacs-emoji-cheat-sheet-plus"))]) (emms-state . [(20160504 805) ((emms (0))) "Display track description and playing time in the mode line" single ((:commit . "77930300222333b71eafd495cc1fee3a3585eb23") (:keywords "emms") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/emms-state.el"))]) (emms-soundcloud . [(20131221 1145) ((emms (20131016)) (json (1 2))) "EMMS source for Soundcloud audio sharing platform" single ((:commit . "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b") (:keywords "emms" "soundcloud") (:authors ("Ozan Sener" . "ozan@ozansener.com")) (:maintainer "Ozan Sener" . "ozan@ozansener.com") (:url . "http://github.com/osener/emms-soundcloud"))]) (emms-player-simple-mpv . [(20180316 1549) ((emacs (24)) (cl-lib (0 5)) (emms (4 0))) "An extension of emms-player-simple.el for mpv JSON IPC" tar ((:commit . "101d120ccdee1c2c213fd2f0423c858b21649c00") (:keywords "emms" "mpv") (:authors ("momomo5717")) (:maintainer "momomo5717") (:url . "https://github.com/momomo5717/emms-player-simple-mpv"))]) (emms-player-mpv-jp-radios . [(20180325 1117) ((emacs (24)) (cl-lib (0 5)) (emms (4 0)) (emms-player-simple-mpv (0 1 7))) "EMMS players and stream lists of Japan radio stations" tar ((:commit . "f6b37f5878c741124d5fca43c5b80af873541edd") (:keywords "emms" "mpv" "radio") (:url . "https://github.com/momomo5717/emms-player-mpv-jp-radios"))]) (emms-player-mpv . [(20180503 2127) ((emms (0))) "mpv support for EMMS" single ((:commit . "9c9ffc6f00a737a6db6377681a88e5292ebcf86b") (:keywords "multimedia" "emms" "mpv") (:url . "https://github.com/dochang/emms-player-mpv/"))]) (emms-mode-line-cycle . [(20160221 1120) ((emacs (24)) (emms (4 0))) "Display the emms mode line as a ticker" single ((:commit . "2c2f395e484a1d345050ddd61ff5fab71a92a6bc") (:keywords "emms" "mode-line") (:authors ("momomo5717")) (:maintainer "momomo5717") (:url . "https://github.com/momomo5717/emms-mode-line-cycle"))]) (emms-mark-ext . [(20130529 327) ((emms (3 0))) "Extra functions for emms-mark-mode and emms-tag-edit-mode" single ((:commit . "ec68129e3e9e469e5bf160c6a1b7030e322f3541") (:keywords "convenience" "multimedia") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/emms-mark-ext"))]) (emms-info-mediainfo . [(20131223 1300) ((emms (0))) "Info-method for EMMS using medianfo" single ((:commit . "bce16eae9eacd38719fea62a9755225a888da59d") (:keywords "multimedia" "processes") (:authors ("Fabián Ezequiel Gallina" . "fgallina@gnu.org")) (:maintainer "Fabián Ezequiel Gallina" . "fgallina@gnu.org"))]) (emms-bilibili . [(20180103 418) ((emacs (25)) (cl-lib (0 5))) "Play Bilibili in EMMS." single ((:commit . "294bca3dfc42fe3a55fb326ab39bc0fcfc8c5090") (:keywords "emms" "bilibili") (:url . "https://github.com/stardiviner/emms-bilibili"))]) (emms . [(20181101 1813) ((cl-lib (0 5))) "The Emacs Multimedia System" tar ((:commit . "56d9ec27dbbe75496e338f6621e196c04472470f") (:keywords "emms" "mp3" "mpeg" "multimedia") (:authors ("Jorgen Schäfer" . "forcer@forcix.cx")) (:maintainer "Jorgen Schäfer" . "forcer@forcix.cx") (:url . "http://www.gnu.org/software/emms/"))]) (emmet-mode . [(20180613 341) nil "Unofficial Emmet's support for emacs" single ((:commit . "1acb821e0142136344ccf40c1e5fb664d7db2e70") (:keywords "convenience") (:authors ("Shin Aoyama" . "smihica@gmail.com")) (:maintainer "Shin Aoyama" . "smihica@gmail.com") (:url . "https://github.com/smihica/emmet-mode"))]) (emlib . [(20161126 1523) ((dash (2 13 0)) (cl-lib (0 5))) "A Machine Learning library for Emacs" tar ((:commit . "dea2af00f551ea580c641d86dd69219f7d4f3685") (:keywords "data" "ai" "neural networks" "ml") (:authors ("Narendra Joshi" . "narendraj9@gmail.com")) (:maintainer "Narendra Joshi" . "narendraj9@gmail.com") (:url . "https://github.com/narendraj9/emlib.git"))]) (embrace . [(20171031 1833) ((cl-lib (0 5)) (expand-region (0 10 0))) "Add/Change/Delete pairs based on `expand-region'" single ((:commit . "dd5da196e5bcc5e6d87e1937eca0c21da4334ef2") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (ember-yasnippets . [(20160526 1658) ((yasnippet (0 8 0))) "Snippets for Ember.js development" tar ((:commit . "3b5bd01569646237bf1b540d097e12f9118b67f4") (:keywords "tools" "abbrev" "languages") (:authors ("Ron White" . "ronco@costite.com")) (:maintainer "Ron White" . "ronco@costite.com"))]) (ember-mode . [(20181001 936) ((cl-lib (0 5))) "Ember navigation mode for emacs" single ((:commit . "88e5ffd33d8664b4d5124d6aa2ea9ed8d50c8c9e") (:keywords "ember" "ember.js" "emberjs") (:authors ("Aad Versteden" . "madnificent@gmail.com")) (:maintainer "Aad Versteden" . "madnificent@gmail.com"))]) (emaps . [(20180712 1916) nil "utilities for working with keymaps." single ((:commit . "823b8f72e6459c9f1a5dd62451ee4005ef71d955") (:keywords "convenience" "keyboard" "keymap" "utility") (:authors ("Ben Moon" . "software@guiltydolphin.com")) (:maintainer "Ben Moon" . "software@guiltydolphin.com") (:url . "https://github.com/GuiltyDolphin/emaps"))]) (emamux-ruby-test . [(20130812 1639) ((emamux (0 1)) (projectile (0 9 1))) "Ruby test with emamux" single ((:commit . "23b73c650573b340351a919da3da416acfc2ac84") (:url . "https://github.com/syohex/emamux-ruby-test"))]) (emamux . [(20170227 337) ((emacs (24 3))) "Interact with tmux" single ((:commit . "39f57786b2cdd3844888df42d71c7bd251f07158") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-emamux"))]) (emacsshot . [(20161018 1443) nil "Snapshot a frame or window from within Emacs" tar ((:commit . "11ace77ab718292d05b82d93178380aff591468b") (:keywords "convenience") (:authors ("Marco Wahl" . "marcowahlsoft@gmail.com")) (:maintainer "Marco Wahl") (:url . "https://github.com/marcowahl/emacsshot"))]) (emacsql-sqlite . [(20180128 2052) ((emacs (25 1)) (emacsql (2 0 0))) "EmacSQL back-end for SQLite" tar ((:commit . "f8c3d9fce28ab7d5b0c9fcf2c1236151ca7add24") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/emacsql"))]) (emacsql-psql . [(20171219 227) ((emacs (25 1)) (emacsql (2 0 0))) "EmacSQL back-end for PostgreSQL via psql" tar ((:commit . "f8c3d9fce28ab7d5b0c9fcf2c1236151ca7add24") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/emacsql"))]) (emacsql-mysql . [(20171219 227) ((emacs (25 1)) (emacsql (2 0 0))) "EmacSQL back-end for MySQL" single ((:commit . "f8c3d9fce28ab7d5b0c9fcf2c1236151ca7add24") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/emacsql"))]) (emacsql . [(20181111 1005) ((emacs (25 1))) "high-level SQL database front-end" tar ((:commit . "f8c3d9fce28ab7d5b0c9fcf2c1236151ca7add24") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/emacsql"))]) (emacsist-view . [(20160426 1223) nil "Mode for viewing emacsist.com" single ((:commit . "f67761259ed779a9bc95c9a4e0474522990c5c6b") (:keywords "convenience" "usability") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/emacsist-view"))]) (emacsc . [(20161028 1706) nil "helper for emacsc(1)" tar ((:commit . "421e0c567358769e32f670ae8e949d99abae0c28") (:keywords "tools") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/emacsc"))]) (emacsagist . [(20140331 1830) ((cl-lib (0 5))) "Search Packagist.org packages without leaving Emacs" single ((:commit . "aba342ba59c254a88017f25e9fb7a8cd6f2fda83") (:keywords "tools") (:authors ("Brian Zwahr" . "echosa@icloud.com")) (:maintainer "Brian Zwahr" . "echosa@icloud.com") (:url . "http://github.com/echosa/emacsagist"))]) (emacs-setup . [(20120727 1426) nil "Package for maintaining your emacs configuration. Clean up your .emacs!" tar ((:commit . "c783ec13e3b39093fffb6f6d64dccdce8ce4d375"))]) (elx . [(20181111 1007) ((emacs (25 1))) "extract information from Emacs Lisp libraries" single ((:commit . "c554db7e7f2c0c8a503def7739b8205193ba821f") (:keywords "docs" "libraries" "packages") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/emacscollective/elx"))]) (elwm . [(20150817 1007) ((dash (1 1 0))) "Minimalistic window manager for emacs" single ((:commit . "c33b183f006ad476c3a44dab316f580f8b369930") (:keywords "docs") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/elwm"))]) (elvish-mode . [(20180809 1612) ((emacs (24 3))) "Defines a major mode for Elvish" single ((:commit . "c3a7e31564256b9755b1ab9fb40d32ad78cd1ad2") (:authors ("Adam Schwalm" . "adamschwalm@gmail.com")) (:maintainer "Adam Schwalm" . "adamschwalm@gmail.com") (:url . "https://github.com/ALSchwalm/elvish-mode"))]) (elscreen-separate-buffer-list . [(20161107 358) ((emacs (24 4)) (elscreen (1 4 6))) "Separate buffer list manager for elscreen" single ((:commit . "7652d827aa1b8c1b04303c5b4b0bda5e8f85565e") (:keywords "elscreen") (:authors ("wamei" . "wamei.cho@gmail.com")) (:maintainer "wamei" . "wamei.cho@gmail.com"))]) (elscreen-multi-term . [(20151022 233) ((emacs (24 4)) (elscreen (1 4 6)) (multi-term (1 3))) "Multi term for elscreen" single ((:commit . "7b6048a0dd80f69460a62bbc6f1af8856141a5ea") (:keywords "elscreen" "multi term") (:authors ("wamei" . "wamei.cho@gmail.com")) (:maintainer "wamei" . "wamei.cho@gmail.com"))]) (elscreen-mew . [(20160504 1835) ((elscreen (20120413 807))) "ElScreen Add-On for Mew" single ((:commit . "c90a23441d836da14a1cb12788432308ba58e2b6") (:authors ("Takashi Masuda" . "masutaka.net@gmail.com")) (:maintainer "Takashi Masuda" . "masutaka.net@gmail.com") (:url . "https://github.com/masutaka/elscreen-mew"))]) (elscreen-fr . [(20160920 953) ((elscreen (0)) (seq (1 11))) "Use frame title as screen tab" single ((:commit . "b9c11f80d277086d5d5bf88623e15fc7adbbbe3c") (:authors ("Francesc Rocher" . "francesc.rocher@gmail.com")) (:maintainer "Francesc Rocher" . "francesc.rocher@gmail.com") (:url . "http://github.com/rocher/elscreen-fr"))]) (elscreen-buffer-group . [(20181027 528) ((emacs (24 4)) (elscreen (0)) (cl-lib (0 5))) "elscreen buffer group" single ((:commit . "cd671c4a86ff6e481d24d060b4069e518940f9c9") (:keywords "buffer") (:authors ("Jeff Gran" . "jeff@jeffgran.com") ("Author: Ryan C. Thompson")) (:maintainer "Jeff Gran" . "jeff@jeffgran.com") (:url . "https://github.com/jeffgran/elscreen-buffer-group"))]) (elscreen . [(20181009 451) ((emacs (24))) "Emacs window session manager" tar ((:commit . "cc58337faf5ba1eae7e87f75f6ff3758675688f2") (:keywords "window" "convenience") (:authors ("Naoto Morishima" . "naoto@morishima.net")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/elscreen"))]) (elsa . [(20181119 2147) ((trinary (1 0 0)) (emacs (25 1)) (f (0)) (dash (2 14)) (cl-lib (0 3))) "Emacs Lisp Static Analyser" tar ((:commit . "9a2f3d5abfac44ab50aa9b6c34bbe8b9562741b1"))]) (elquery . [(20180917 2217) ((emacs (25 1)) (s (1 11 0)) (dash (2 13 0))) "The HTML library for elisp." single ((:commit . "eac429d8550fbf1582c57d5e16fed9f320d6eb30") (:keywords "html" "hypermedia" "tools" "webscale") (:authors ("Adam Niederer")) (:maintainer "Adam Niederer") (:url . "https://github.com/AdamNiederer/elquery"))]) (elpygen . [(20171225 1736) ((emacs (25)) (yasnippet (0 8 0))) "Generate a Python function/method using a symbol under point" single ((:commit . "21929c997a05968f9eefe52b85a76ceaab3b0d81") (:keywords "python" "languages" "tools") (:authors ("Vladimir Kazanov" . "vkazanov@inbox.ru")) (:maintainer "Vladimir Kazanov" . "vkazanov@inbox.ru") (:url . "https://github.com/vkazanov/elpygen"))]) (elpy . [(20181103 1105) ((company (0 9 2)) (emacs (24 4)) (find-file-in-project (3 3)) (highlight-indentation (0 5 0)) (pyvenv (1 3)) (yasnippet (0 8 0)) (s (1 11 0))) "Emacs Python Development Environment" tar ((:commit . "c60189ec9bba29b75f32dfab814a9c7af96520eb"))]) (elpa-mirror . [(20181013 256) ((emacs (24 4))) "Create local package repository so package upgrade never breaks" single ((:commit . "4e94c5058f67ace2f739f5b3a8cd04d30289febf") (:keywords "cloud" "mirror" "elpa") (:authors ("Chen Bin" . "chenbin.sh@gmail.com")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "http://github.com/redguardtoo/elpa-mirror"))]) (elpa-clone . [(20170502 1214) ((emacs (24 4)) (cl-lib (0))) "Clone ELPA archive" single ((:commit . "92f4c9d3570ad002575a90d0cc4a522c203a1110") (:keywords "comm" "elpa" "clone" "mirror") (:authors ("ZHANG Weiyi" . "dochang@gmail.com")) (:maintainer "ZHANG Weiyi" . "dochang@gmail.com") (:url . "https://github.com/dochang/elpa-clone"))]) (elpa-audit . [(20141023 1331) nil "Handy functions for inspecting and comparing package archives" single ((:commit . "727da50e626977351aff2675b6540a36818bbbe6") (:keywords "maint") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/elpa-audit"))]) (eloud . [(20160731 1557) ((emacs (24 4))) "A lightweight, interactive screen reader" single ((:commit . "82c97918585bd2a749251ae87d7732ca9d856c16") (:keywords "extensions") (:authors ("Patrick Smyth" . "patricksmyth01@gmail.com")) (:maintainer "Patrick Smyth" . "patricksmyth01@gmail.com") (:url . "https://github.com/smythp/eloud"))]) (elogcat . [(20151121 41) ((s (1 9 0)) (dash (2 10 0))) "logcat interface" single ((:commit . "4f311b7a07565b0d060334bc68edb36f2bff703f") (:keywords "tools") (:authors ("Youngjoo Lee" . "youngker@gmail.com")) (:maintainer "Youngjoo Lee" . "youngker@gmail.com"))]) (elog . [(20160724 2255) ((eieio (1 3))) "logging library extended from logito" single ((:commit . "a67237d9813c7591614d95e2ef31cc5e5ed3f31b") (:keywords "lisp" "tool" "log") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com"))]) (elnode . [(20140203 2306) ((web (0 1 4)) (dash (1 1 0)) (noflet (0 0 7)) (s (1 5 0)) (creole (0 8 14)) (fakir (0 1 6)) (db (0 0 5)) (kv (0 0 17))) "The Emacs webserver." tar ((:commit . "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9"))]) (elmine . [(20170511 720) ((s (1 10 0))) "Redmine API access via elisp." single ((:commit . "432d2f2f7cb5b533f25b993d1001abcadcebe8ed") (:keywords "tools") (:authors ("Arthur Andersen" . "leoc.git@gmail.com")) (:maintainer "Arthur Andersen" . "leoc.git@gmail.com") (:url . "http://github.com/leoc/elmine"))]) (elmacro . [(20180628 1411) ((s (1 11 0)) (dash (2 13 0))) "Convert keyboard macros to emacs lisp" single ((:commit . "89b9b0feabafd01fee48111d67131c4c9b5fed9a") (:keywords "macro" "elisp" "convenience") (:authors ("Philippe Vaucher" . "philippe.vaucher@gmail.com")) (:maintainer "Philippe Vaucher" . "philippe.vaucher@gmail.com") (:url . "https://github.com/Silex/elmacro"))]) (elm-yasnippets . [(20160401 524) ((yasnippet (0 8 0))) "Yasnippets for Elm" tar ((:commit . "45a11a0cef0c36633fb3477d3dc4167e82779ba4") (:keywords "snippets") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com"))]) (elm-test-runner . [(20180918 2255) ((emacs (24 4))) "Enhanced support for running elm-test" single ((:commit . "73696add403cee6547fcb6eb4e49798e1583d0e2") (:authors ("Juan Edi")) (:maintainer "Juan Edi") (:url . "https://github.com/juanedi/elm-test-runner"))]) (elm-mode . [(20181114 2235) ((f (0 17)) (let-alist (1 0 5)) (seq (2 2)) (s (1 7 0)) (emacs (24 4)) (dash (2 13 0))) "Major mode for Elm" tar ((:commit . "a52c0c6216145ec1cf39d06541ad74f33f4816cc") (:authors ("Joseph Collard")) (:maintainer "Joseph Collard") (:url . "https://github.com/jcollard/elm-mode"))]) (elixir-yasnippets . [(20150417 1239) ((yasnippet (0 8 0))) "Yasnippets for Elixir" tar ((:commit . "980ca7626c14ef0573bec0035ec7942796062783"))]) (elixir-mode . [(20180711 1245) ((emacs (24)) (pkg-info (0 4))) "Major mode for editing Elixir files" tar ((:commit . "bfd09392a0253e4b96c642472e5d5b757a5254f8") (:keywords "languages" "elixir") (:url . "https://github.com/elixir-lang/emacs-elixir"))]) (elisp-slime-nav . [(20160128 1909) ((cl-lib (0 2))) "Make M-. and M-, work in elisp like they do in slime" single ((:commit . "34938422929800839e2f935aca890cd4a229ca99") (:keywords "navigation" "slime" "elisp" "emacs-lisp") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/elisp-slime-nav"))]) (elisp-sandbox . [(20131116 1842) nil "Evaluate EmacsLisp expressions in a sandbox" single ((:commit . "d894d68934ef09c42f72ac4e1173a0bedc23f139") (:keywords "lisp") (:authors ("Joel McCracken <mccracken.joel@gmail.com>, D. Goel" . "deego@gnufans.org")) (:maintainer "Joel McCracken <mccracken.joel@gmail.com>, D. Goel" . "deego@gnufans.org") (:url . "https://github.com/joelmccracken/elisp-sandbox"))]) (elisp-refs . [(20181111 2223) ((dash (2 12 0)) (loop (1 2)) (s (1 11 0))) "find callers of elisp functions or macros" single ((:commit . "686aa5e6a6cc7cd20c6e11837251e19f303211b6") (:keywords "lisp") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (elisp-lint . [(20180224 2042) ((emacs (24))) "basic linting for Emacs Lisp" single ((:commit . "04b0d36ec0e4dc1bb54c2bf4c2d16b2af8cf6a39") (:keywords "lisp" "maint" "tools") (:authors ("Nikolaj Schumacher <bugs * nschum de>,")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>,") (:url . "http://github.com/gonewest818/elisp-lint/"))]) (elisp-format . [(20160508 952) nil "Format elisp code" single ((:commit . "03cc293eb2f78ec58fc1d84279af06816a04b979") (:authors (nil . "Andy Stewart lazycat.manatee@gmail.com")) (:maintainer "Yuki Inoue inouetakahiroki _at_ gmail.com") (:url . "https://github.com/Yuki-Inoue/elisp-format"))]) (elisp-docstring-mode . [(20170304 1615) nil "Major mode for editing elisp docstrings." single ((:commit . "f512e509dd690f65133e55563ebbfd2dede5034f") (:keywords "languages") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (elisp-depend . [(20161230 1550) nil "Parse depend libraries of elisp file." single ((:commit . "e4b201ac7dcee4489d58800c299fd04aaa61d07a"))]) (elisp-def . [(20180806 723) ((dash (2 12 0)) (f (0 19 0)) (s (1 11 0)) (emacs (24 3))) "macro-aware go-to-definition for elisp" single ((:commit . "368b04da68783601b52e3169312183381871cf9e") (:keywords "lisp") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (elhome . [(20161025 2042) ((initsplit (20120630))) "A framework for a \"home\" Emacs configuration" tar ((:commit . "e789e806469af3e9705f72298683c21f6c3a516d") (:keywords "lisp") (:authors ("Dave Abrahams" . "dave@boostpro.com")) (:maintainer "Demyan Rogozhin" . "demyan.rogozhin@gmail.com") (:url . "http://github.com/demyanrogozhin/elhome"))]) (elgrep . [(20181023 959) ((emacs (25 1)) (async (1 9 2))) "Searching files for regular expressions" single ((:commit . "d648df1f2bde466d74c4810d7abab700a10b30d0") (:keywords "tools" "matching" "files" "unix") (:authors ("Tobias Zawada" . "naehring@smtp.1und1.de")) (:maintainer "Tobias Zawada" . "naehring@smtp.1und1.de") (:url . "https://github.com/TobiasZawada/elgrep"))]) (elfeed-web . [(20180829 1716) ((simple-httpd (1 4 3)) (elfeed (1 4 0)) (emacs (24 1))) "web interface to Elfeed" tar ((:commit . "afafa1f7d9e29de55ce5b1709074738a7e185f2a"))]) (elfeed-protocol . [(20181117 1159) ((emacs (24 4)) (elfeed (2 1 1)) (cl-lib (0 5)) (auth-source (0))) "Provide owncloud/ttrss protocols for elfeed" tar ((:commit . "29895e39400a31750dfd3d9a327840d7a59384df") (:keywords "news") (:authors ("Xu Fasheng" . "fasheng.xu@gmail.com")) (:maintainer "Xu Fasheng" . "fasheng.xu@gmail.com") (:url . "https://github.com/fasheng/elfeed-protocol"))]) (elfeed-org . [(20181015 1100) ((elfeed (1 1 1)) (org (8 2 7)) (dash (2 10 0)) (s (1 9 0)) (cl-lib (0 5))) "Configure elfeed with one or more org-mode files" single ((:commit . "607b8bf4923a995260a072559b77bee188614a06") (:keywords "news") (:authors ("Remy Honig" . "remyhonig@gmail.com")) (:maintainer "Remy Honig" . "remyhonig@gmail.com") (:url . "https://github.com/remyhonig/elfeed-org"))]) (elfeed-goodies . [(20171127 651) ((popwin (1 0 0)) (powerline (2 2)) (elfeed (2 0 0)) (cl-lib (0 5)) (noflet (0 0 10)) (ace-jump-mode (2 0))) "Elfeed goodies" tar ((:commit . "fc0c3e72f9fcd7bbf5237f6f2323bc666e8240b4") (:authors ("Gergely Nagy")) (:maintainer "Gergely Nagy") (:url . "https://github.com/algernon/elfeed-goodies"))]) (elfeed . [(20180916 1338) ((emacs (24 3))) "an Emacs Atom/RSS feed reader" tar ((:commit . "afafa1f7d9e29de55ce5b1709074738a7e185f2a"))]) (elf-mode . [(20161009 748) ((emacs (24 3))) "Show symbols in binaries" single ((:commit . "cd280d683cd3341d8bb31af6db7e3b74a133e6ab") (:keywords "matching") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/elf-mode"))]) (elein . [(20120120 1116) nil "running leiningen commands from emacs" single ((:commit . "d4c0c0491dbb7c90e953d7a16172107c37103605") (:keywords "tools" "processes") (:authors ("R.W. van 't Veer")) (:maintainer "R.W. van 't Veer") (:url . "https://github.com/remvee/elein"))]) (electric-spacing . [(20161209 1957) nil "Insert operators with surrounding spaces smartly" single ((:commit . "9d0f8a213133f2619a4e9dfbba3b00d4348c07b0") (:authors ("William Xu" . "william.xwl@gmail.com")) (:maintainer "William Xu" . "william.xwl@gmail.com"))]) (electric-operator . [(20181030 2155) ((dash (2 10 0)) (emacs (24 4))) "Automatically add spaces around operators" tar ((:commit . "3057f786b2a7b00364da2995da482858e94046e1") (:keywords "electric") (:authors ("David Shepherd" . "davidshepherd7@gmail.com")) (:maintainer "David Shepherd" . "davidshepherd7@gmail.com") (:url . "https://github.com/davidshepherd7/electric-operator"))]) (electric-case . [(20150417 1112) nil "insert camelCase, snake_case words without \"Shift\"ing" single ((:commit . "bac64e772107e3dc721a9819f63b9ebdc28a81f7") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (eldoc-overlay . [(20171219 940) ((emacs (24 3)) (inline-docs (1 0 1)) (quick-peek (1 0))) "Display eldoc with contextual documentation overlay." single ((:commit . "a391396f4cdf30a2f27a4c426b58b44ab3d0f0d0") (:keywords "documentation" "eldoc" "overlay") (:authors ("stardiviner" . "numbchild@gmail.com")) (:maintainer "stardiviner" . "numbchild@gmail.com") (:url . "https://github.com/stardiviner/eldoc-overlay"))]) (eldoc-eval . [(20180607 1157) nil "Enable eldoc support when minibuffer is in use." single ((:commit . "f59a1ae7ecfa97ef659c7adb93e0673419acc485") (:authors ("Thierry Volpiatto" . "thierry.volpiatto@gmail.com")) (:maintainer "Thierry Volpiatto" . "thierry.volpiatto@gmail.com"))]) (elcouch . [(20180809 936) ((emacs (25 1)) (json-mode (1 0 0)) (libelcouch (0 8 0))) "View and manipulate CouchDB databases" single ((:commit . "ae9b6261c5167d538914bfdbc4d34a36e50b5bc2") (:keywords "data" "tools") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://gitlab.petton.fr/DamienCassou/elcouch"))]) (elcord . [(20181028 650) ((emacs (25))) "Allows you to integrate Rich Presence from Discord" tar ((:commit . "2224b0dd9137c04a62dd8ff7078ab80e9289643e") (:keywords "games") (:authors ("heatingdevice") ("Wilfredo Velázquez-Rodríguez" . "zulu.inuoe@gmail.com")) (:maintainer "heatingdevice") (:url . "https://github.com/Mstrodl/elcord"))]) (elcontext . [(20180526 1304) ((ht (2 3)) (hydra (0 14 0)) (emacs (24 3)) (f (0 20 0)) (osx-location (0 4)) (uuidgen (0 3))) "Create context specific actions" tar ((:commit . "f434ffc655e6349a4dd52285ff68a9194bcfc949") (:keywords "calendar" "convenience") (:authors ("Thomas Sojka")) (:maintainer "Thomas Sojka") (:url . "https://github.com/rollacaster/elcontext"))]) (elbank . [(20180316 1343) ((emacs (25)) (seq (2 16))) "Personal finances reporting application" tar ((:commit . "fa9bc7dec0a8fd489e90b9f178719344cc8d315a") (:keywords "tools" "personal-finances") (:authors ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Nicolas Petton" . "nicolas@petton.fr"))]) (el2org . [(20180311 1555) ((emacs (25 1))) "Convert elisp file to org file" single ((:commit . "81f1c97db8911f5bdf92c729630ab509de4ec73f") (:keywords "convenience") (:authors ("Feng Shu  <tumashu AT 163.com>")) (:maintainer "Feng Shu  <tumashu AT 163.com>") (:url . "https://github.com/tumashu/el2org"))]) (el2markdown . [(20170630 1858) nil "Convert commentary section of elisp files to markdown." single ((:commit . "368d99313683cd943c99feaffca356be60bdb636") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/el2markdown"))]) (el-x . [(20140111 2201) nil "main entry point for el-x package" tar ((:commit . "e7c333d4fc31a90f4dca951efe21129164b42605") (:keywords "lisp") (:authors ("Yann Hodique" . "yann.hodique@gmail.com")) (:maintainer "Yann Hodique" . "yann.hodique@gmail.com"))]) (el-spy . [(20131226 2008) nil "Mocking framework for Emacs lisp. It also support spy, proxy." single ((:commit . "b1dead9d1877660856ada22d906ac4e54695aec7") (:keywords "test") (:authors ("Yuuki Arisawa" . "yuuki.ari@gmail.com")) (:maintainer "Yuuki Arisawa" . "yuuki.ari@gmail.com") (:url . "https://github.com/uk-ar/el-spy"))]) (el-sprunge . [(20140107 139) ((web-server (20140105 2246)) (htmlize (20130207 1202)) (emacs (24 3))) "Command line paste server with Emacs highlighting" tar ((:commit . "37855ec60aeb4d565c49a4d711edc7341e9a22cb"))]) (el-spice . [(20180128 1721) nil "Extra spice for emacs lisp programming" tar ((:commit . "4e0852ebf5d8e9cbb3eaaa6ae9c53d126b53f58c") (:keywords "languages" "extensions") (:authors ("Vedang Manerikar" . "vedang.manerikar@gmail.com")) (:maintainer "Vedang Manerikar" . "vedang.manerikar@gmail.com") (:url . "https://github.com/vedang/el-spice"))]) (el-spec . [(20121018 704) nil "ruby's rspec like syntax test frame work" single ((:commit . "1dbc465401d4aea5560318c4f13ff30920a0718d") (:keywords "test") (:authors ("Yuuki Arisawa" . "yuuki.ari@gmail.com")) (:maintainer "Yuuki Arisawa" . "yuuki.ari@gmail.com") (:url . "https://github.com/uk-ar/el-spec"))]) (el-pocket . [(20170922 1249) ((web (0 5 2)) (emacs (24))) "Read and write to Pocket (getpocket.com)" single ((:commit . "a80abfb67efe68ada1d7d0a73aecee57e763baaa") (:keywords "emacs" "pocket" "bookmarks") (:authors ("Tod Davies" . "davies.t.o@gmail.com")) (:maintainer "Tod Davies" . "davies.t.o@gmail.com") (:url . "http://github.com/pterygota/el-pocket"))]) (el-patch . [(20181018 1610) ((emacs (25))) "Future-proof your Elisp." single ((:commit . "3051dd30d6d90b855da16332b5b16b4f754a39c6") (:keywords "extensions") (:authors ("Radon Rosborough" . "radon.neon@gmail.com")) (:maintainer "Radon Rosborough" . "radon.neon@gmail.com") (:url . "https://github.com/raxod502/el-patch"))]) (el-mock . [(20170824 1954) nil "Tiny Mock and Stub framework in Emacs Lisp" single ((:commit . "5df1d3a956544f1d3ad0bcd81daf47fff33ab8cc") (:keywords "lisp" "testing" "unittest") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/el-mock.el"))]) (el-init-viewer . [(20150303 828) ((emacs (24)) (cl-lib (0 5)) (ctable (0 1 2)) (dash (2 10 0)) (anaphora (1 0 0)) (el-init (0 1 4))) "Record viewer for el-init" single ((:commit . "8a2ab457586962bde0da2a1c56a37ce6363ae690") (:authors ("Hiroki YAMAKAWA" . "s06139@gmail.com")) (:maintainer "Hiroki YAMAKAWA" . "s06139@gmail.com") (:url . "https://github.com/HKey/el-init-viewer"))]) (el-init . [(20150728 920) ((emacs (24)) (cl-lib (0 5)) (anaphora (1 0 0))) "A loader inspired by init-loader" single ((:commit . "65c48ec47fea84d16ff2d1ef7015b4d220fcf5ff") (:authors ("Hiroki YAMAKAWA" . "s06139@gmail.com")) (:maintainer "Hiroki YAMAKAWA" . "s06139@gmail.com") (:url . "https://github.com/HKey/el-init"))]) (el-get . [(20181006 225) nil "Manage the external elisp bits and pieces you depend upon" tar ((:commit . "424487ed3aef4e6a08b48084654e7210deb0512e") (:keywords "emacs" "package" "elisp" "install" "elpa" "git" "git-svn" "bzr" "cvs" "svn" "darcs" "hg" "apt-get" "fink" "pacman" "http" "http-tar" "emacswiki") (:authors ("Dimitri Fontaine" . "dim@tapoueh.org")) (:maintainer "Dimitri Fontaine" . "dim@tapoueh.org") (:url . "http://www.emacswiki.org/emacs/el-get"))]) (el-fly-indent-mode . [(20180422 243) ((emacs (25))) "Indent Emacs Lisp on the fly" single ((:commit . "4917f486a7be7482dedfea0a7ac3d01cab4ce21c") (:keywords "lisp" "languages") (:authors ("Jiahao Li" . "jiahaowork@gmail.com")) (:maintainer "Jiahao Li" . "jiahaowork@gmail.com") (:url . "https://github.com/jiahaowork/el-fly-indent-mode.el"))]) (el-autoyas . [(20120918 1317) nil "Automatically create Emacs-Lisp Yasnippets" tar ((:commit . "bde0251ecb504f585dfa27c205c8e312655310cc") (:keywords "emacs" "lisp" "mode" "yasnippet") (:authors ("Matthew L. Fidler")) (:maintainer "Matthew L. Fidler") (:url . "https://github.com/mlf176f2/el-autoyas.el"))]) (ejc-sql . [(20181113 1055) ((emacs (25 1)) (clomacs (0 0 3)) (dash (2 12 1)) (auto-complete (1 5 1)) (spinner (1 7 1)) (direx (1 0 0))) "Emacs SQL client uses Clojure JDBC." tar ((:commit . "9eef50aeecf58fe7cc88722c8ade62edbe22c34e") (:keywords "sql" "jdbc") (:authors ("Kostafey" . "kostafey@gmail.com")) (:maintainer "Kostafey" . "kostafey@gmail.com") (:url . "https://github.com/kostafey/ejc-sql"))]) (eink-theme . [(20170717 1507) nil "E Ink color theme" single ((:commit . "4c990bb3428f725735fa1f733ef4c5ad61f632b0") (:authors ("Marian Schubert" . "marian.schubert@gmail.com")) (:maintainer "Marian Schubert" . "marian.schubert@gmail.com") (:url . "http://github.com/maio/eink-emacs"))]) (ein-mumamo . [(20150302 28) ((ein (0 4))) "Multiple major mode support for Emacs IPython Notebook" single ((:commit . "028fefec499598add1a87b92ed991891f38f0c7b") (:authors ("Takafumi Arakaki <aka.tkf at gmail.com>") (": John Miller <millejoh at mac.com>")) (:maintainer "Takafumi Arakaki <aka.tkf at gmail.com>"))]) (ein . [(20181113 2117) ((websocket (1 7)) (auto-complete (1 4 0)) (request (0 3)) (deferred (0 5)) (request-deferred (0 2 0)) (cl-generic (0 3)) (dash (2 13 0)) (s (1 11 0)) (skewer-mode (1 6 2))) "Emacs IPython Notebook" tar ((:commit . "07bc906df91bc60d1f39426ea2e86482aa03370c"))]) (eimp . [(20120826 2039) nil "Emacs Image Manipulation Package" single ((:commit . "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f") (:keywords "files" "frames") (:authors ("Matthew P. Hodges" . "MPHodges@member.fsf.org")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk"))]) (eide . [(20180626 1959) nil "IDE interface" tar ((:commit . "6bd4c3b67a532527b3514c72bf2d7371172b8a93"))]) (ego . [(20180301 104) ((emacs (24 5)) (ht (1 5)) (mustache (0 22)) (htmlize (1 47)) (org (8 0)) (dash (2 0 0)) (simple-httpd (1 4 5))) "a static site generator based on org mode, forked from org-page." tar ((:commit . "719809679c1a60887735db41abae53b61f08ef59"))]) (eglot . [(20181119 2026) ((emacs (26 1)) (jsonrpc (1 0 6))) "Client for Language Server Protocol (LSP) servers" single ((:commit . "d66f2eb1d85c40291b55106d8d694d0298b3fddb") (:keywords "convenience" "languages") (:authors ("João Távora" . "joaotavora@gmail.com")) (:maintainer "João Távora" . "joaotavora@gmail.com") (:url . "https://github.com/joaotavora/eglot"))]) (egison-mode . [(20181109 1624) nil "Egison editing mode" single ((:commit . "932d3d05527b2abfccb835798aa615543d740623") (:authors ("Satoshi Egi" . "egisatoshi@gmail.com")) (:maintainer "Satoshi Egi" . "egisatoshi@gmail.com") (:url . "https://github.com/egisatoshi/egison3/blob/master/elisp/egison-mode.el"))]) (egg . [(20180713 918) nil "Emacs Got Git - Emacs interface to Git" tar ((:commit . "5bf9879eec067e25a60f2363137c9e69f7b5cc68") (:keywords "git" "version control" "release management") (:authors ("Bogolisk" . "bogolisk@gmail.com")) (:maintainer "Bogolisk" . "bogolisk@gmail.com"))]) (eg . [(20170830 815) ((cl-lib (0 5)) (emacs (24 3))) "Norton Guide reader" single ((:commit . "1c7f1613d2aaae728ef540305f6ba030616f86bd") (:keywords "docs") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/eg.el"))]) (efire . [(20151009 2031) ((circe (1 2))) "Use campfire from Emacs" single ((:commit . "91a644662afb352475efad0b377713656f131e5c") (:keywords "convenience" "tools") (:authors ("João Távora" . "joaotavora@gmail.com")) (:maintainer "João Távora" . "joaotavora@gmail.com") (:url . "https://github.com/capitaomorte/efire"))]) (edts . [(20171030 709) ((auto-complete (1 3 1)) (auto-highlight-symbol (1 53)) (dash (2 13)) (erlang (2 4 1)) (f (0 19 0)) (popup (0 4)) (s (1 11 0))) "Erlang Development Tool Suite" tar ((:commit . "6ef4bdf571235ee1b078db321402270cabff7fda"))]) (edn . [(20160215 1219) ((cl-lib (0 3)) (emacs (24 1)) (peg (0 6))) "Support for reading and writing the edn data format from elisp" single ((:commit . "be9e32d1b49e35247b263b0243df7cfdc8d413ab") (:keywords "edn" "clojure") (:authors ("Lars Andersen" . "expez@expez.com")) (:maintainer "Lars Andersen" . "expez@expez.com") (:url . "https://www.github.com/expez/edn.el"))]) (editorconfig-generate . [(20181116 635) ((emacs (24))) "Generate .editorconfig" single ((:commit . "2921b53700dedf16b57d684439add187663954cd") (:keywords "tools") (:authors ("10sr" . "8.slashes@gmail.com")) (:maintainer "10sr" . "8.slashes@gmail.com") (:url . "https://github.com/10sr/emacs-lisp/blob/master/editorconfig-generate.el"))]) (editorconfig-domain-specific . [(20180505 924) ((cl-lib (0 5)) (editorconfig (0 6 0))) "Apply brace style and other \"domain-specific\" EditorConfig properties" single ((:commit . "e9824160fb2e466afa755240ee3ab7cc5657fb04") (:keywords "editorconfig" "util") (:authors ("Lassi Kortela" . "lassi@lassi.io")) (:maintainer "Lassi Kortela" . "lassi@lassi.io") (:url . "https://github.com/lassik/editorconfig-emacs-domain-specific"))]) (editorconfig-custom-majormode . [(20180816 244) ((editorconfig (0 6 0))) "Decide major-mode and mmm-mode from EditorConfig" single ((:commit . "13ad1c83f847bedd4b3a19f9df7fd925853b19de") (:keywords "editorconfig" "util") (:authors ("10sr <8slashes+el [at] gmail [dot] com>")) (:maintainer "10sr <8slashes+el [at] gmail [dot] com>") (:url . "https://github.com/10sr/editorconfig-custom-majormode-el"))]) (editorconfig-charset-extras . [(20180223 457) ((editorconfig (0 6 0))) "Extra EditorConfig Charset Support" single ((:commit . "ddf60923c6f4841cb593b2ea04c9c710a01d262f") (:keywords "tools") (:authors ("10sr" . "8.slashes@gmail.com")) (:maintainer "10sr" . "8.slashes@gmail.com") (:url . "https://github.com/10sr/editorconfig-charset-extras-el"))]) (editorconfig . [(20181115 709) ((cl-lib (0 5))) "EditorConfig Emacs Plugin" tar ((:commit . "d6e48c863ed246be8894c6ee3c3c088ab4db4711") (:authors ("EditorConfig Team" . "editorconfig@googlegroups.com")) (:maintainer "EditorConfig Team" . "editorconfig@googlegroups.com") (:url . "https://github.com/editorconfig/editorconfig-emacs#readme"))]) (edit-server-htmlize . [(20130329 2248) ((edit-server (1 9))) "(de)HTMLization hooks for edit-server.el" single ((:commit . "e7f8dadfabe869c77ca241cd6fbd4c52bd908392") (:authors ("Roland McGrath" . "roland@hack.frob.com")) (:maintainer "Roland McGrath" . "roland@hack.frob.com") (:url . "https://github.com/frobtech/edit-server-htmlize"))]) (edit-server . [(20181016 1125) nil "server that responds to edit requests from Chrome" single ((:commit . "81eb5211f79cf5a2234b7a932f6006d27d506aa5") (:authors ("Alex Bennée" . "alex@bennee.com")) (:maintainer "Alex Bennée" . "alex@bennee.com") (:url . "https://github.com/stsquad/emacs_chrome"))]) (edit-list . [(20100930 1443) nil "edit a single list" single ((:commit . "f460d3f9e208a4e606fe6ded307f1b011916ca71") (:authors ("Michael Olson" . "mwolson@gnu.org")) (:maintainer "Michael Olson" . "mwolson@gnu.org") (:url . "http://mwolson.org/static/dist/elisp/edit-list.el"))]) (edit-indirect-region-latex . [(20161129 645) ((emacs (24 3)) (ht (2 2)) (edit-indirect (0 1 4))) "Edit LaTeX regions in separate buffers, e.g. for English grammar checks" single ((:commit . "05043f2c0c9838947d3ca4b51b695deb7c47612e") (:authors ("Hirotaka Niitsuma" . "hirotaka.niitsuma@gmail.com")) (:maintainer "Hirotaka Niitsuma" . "hirotaka.niitsuma@gmail.com") (:url . "https://github.com/niitsuma/edit-indirect-region-latex"))]) (edit-indirect . [(20180422 1807) ((emacs (24 3))) "Edit regions in separate buffers" single ((:commit . "de645d8144e8a08f039a9c88185121ec81d957ef") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/edit-indirect"))]) (edit-color-stamp . [(20130529 1733) ((es-lib (0 2)) (cl-lib (1 0))) "Edit a hex color stamp, using a QT or the internal color picker" tar ((:commit . "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3") (:authors ("sabof")) (:maintainer "sabof") (:url . "https://github.com/sabof/edit-color-stamp"))]) (edit-at-point . [(20150716 1324) nil "edit(copy,cut..) current things(word,symbol..) under cursor" single ((:commit . "3b800c11685102e1eab62ec71c5fc1589ebb81a7") (:authors (nil . "<e.enoson@gmail.com>")) (:maintainer nil . "<e.enoson@gmail.com>") (:url . "http://github.com/enoson/edit-at-point.el"))]) (edebug-x . [(20130616 625) nil "Extensions for Edebug" single ((:commit . "a2c2c42553d3bcbd5ac11898554865acbed1bc46") (:keywords "extensions") (:authors ("Scott Barnett" . "scott.n.barnett@gmail.com")) (:maintainer "Scott Barnett" . "scott.n.barnett@gmail.com") (:url . "https://github.com/ScottyB/edebug-x"))]) (ede-php-autoload-drupal . [(20170316 2158) ((ede-php-autoload (1 0 0)) (f (0 19 0)) (s (1 7 0))) "Drupal support for ede-php-autoload" single ((:commit . "54a04241d94fabc4f4d16ae4dc8ba4f0c6e3b435") (:keywords "programming" "php" "drupal") (:authors ("Thomas Fini Hansen" . "xen@xen.dk")) (:maintainer "Thomas Fini Hansen" . "xen@xen.dk"))]) (ede-php-autoload-composer-installers . [(20170221 2026) ((ede-php-autoload (1 0 0)) (f (0 19 0)) (s (1 7 0))) "Composer installers support for ede-php-autoload" single ((:commit . "7840439802c7d11ee086bbf465657f3da12f9f66") (:keywords "programming" "php") (:authors ("Thomas Fini Hansen" . "xen@xen.dk")) (:maintainer "Thomas Fini Hansen" . "xen@xen.dk") (:url . "https://github.com/xendk/ede-php-autoload-composer-installers"))]) (ede-php-autoload . [(20180901 1255) nil "Simple EDE PHP Project" tar ((:commit . "8a4eeeaa93b8d87b65a107c4ebcbeb14528d9449") (:keywords "php" "project" "ede") (:authors ("Steven Rémot" . "steven.remot@gmail.com") ("original code for C++ by Eric M. Ludlam" . "eric@siege-engine.com")) (:maintainer "Steven Rémot" . "steven.remot@gmail.com") (:url . "https://github.com/emacs-php/ede-php-autoload"))]) (ede-compdb . [(20150920 2033) ((ede (1 2)) (semantic (2 2)) (cl-lib (0 4))) "Support for compilation database projects in EDE" single ((:commit . "d6d8466cd62876fc90adeff5875a1a584fd846cd") (:keywords "development" "ninja" "build" "cedet" "ede") (:authors ("Alastair Rankine" . "alastair@girtby.net")) (:maintainer "Alastair Rankine" . "alastair@girtby.net"))]) (edbi-sqlite . [(20160221 1923) ((emacs (24)) (edbi (0 1 3))) "Open sqlite files with edbi" single ((:commit . "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/edbi-sqlite"))]) (edbi-minor-mode . [(20160706 1447) ((edbi (0 1 3))) "Use edbi with regular SQL files." single ((:commit . "566a2141a6eb9d9d5d7e1bd7c251d1c5e8f0d2ec") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/edbi-minor-mode"))]) (edbi-django . [(20180924 2234) ((emacs (25)) (pythonic (0 1 0)) (edbi (0 1 3))) "Run edbi with django settings" single ((:commit . "c5ae06c4bad57b53c2dbb313cd59e96a1606814d") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/edbi-django"))]) (edbi-database-url . [(20160221 1923) ((emacs (24)) (edbi (0 1 3))) "Run edbi with database url" single ((:commit . "d56c580268cd93651998c4c6b1c5558e6b6ca90f") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/edbi-database-url"))]) (edbi . [(20160225 141) ((concurrent (0 3 1)) (ctable (0 1 2)) (epc (0 1 1))) "Emacs Database Interface" tar ((:commit . "6f50aaf4bde75255221f2292c7a4ad3fa9d918c0"))]) (ecukes . [(20171216 1208) ((commander (0 6 1)) (espuds (0 2 2)) (ansi (0 3 0)) (dash (2 2 0)) (s (1 8 0)) (f (0 11 0))) "Cucumber for Emacs." tar ((:commit . "3a77ba9f1064c2bca47b401974c009e65727c46e"))]) (eclipse-theme . [(20160430 1022) nil "Theme based on Eclipse circa 2010" single ((:commit . "dc54d9312d97210823b922038076e2b1b132eff2") (:keywords "themes") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/eclipse-theme"))]) (eclim . [(20181108 1134) ((dash (2 11 0)) (json (1 2)) (popup (0 5 2)) (s (1 9 0)) (cl-lib (0 5)) (yasnippet (0 10 0))) "An interface to the Eclipse IDE." tar ((:commit . "23f5b294f833ce58516d7b9ae08a7792d70022a1"))]) (ecb . [(20170728 1921) nil "a code browser for Emacs" tar ((:commit . "1330a44cf3c171781083b0b926ab7622f64e6e81") (:keywords "browser" "code" "programming" "tools") (:authors ("Jesper Nordenberg" . "mayhem@home.se") ("Klaus Berndl" . "klaus.berndl@sdm.de") ("Kevin A. Burton" . "burton@openprivacy.org")) (:maintainer "Klaus Berndl" . "klaus.berndl@sdm.de"))]) (ebib . [(20181018 706) ((dash (2 5 0)) (seq (2 15)) (parsebib (2 3)) (emacs (24 4))) "a BibTeX database manager" tar ((:commit . "0163cbaf843661b1bd612936cbf26e7d1d77235c") (:keywords "text" "bibtex") (:authors ("Joost Kremers" . "joostkremers@fastmail.fm")) (:maintainer "Joost Kremers" . "joostkremers@fastmail.fm"))]) (ebf . [(20160211 1758) ((dash (2 11 0)) (dash-functional (1 2 0)) (cl-lib (0 5))) "brainfuck language transpiler to Emacs Lisp" tar ((:commit . "4cd9c26354d8be6571354b2954d21fba882e78a2") (:authors ("Alexey Kutepov" . "reximkut@gmail.com")) (:maintainer "Alexey Kutepov" . "reximkut@gmail.com") (:url . "http://github.com/rexim/ebf"))]) (ebal . [(20180101 616) ((emacs (24 4)) (f (0 18 0))) "Emacs interface to Cabal and Stack" single ((:commit . "1740118125ae7aa6ba82d36e1fe0e69065a6fcaa") (:keywords "convenience" "cabal" "haskell") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/ebal"))]) (easy-repeat . [(20150516 848) ((emacs (24 4))) "Repeat easily" single ((:commit . "060f0e6801c82c40c06961dc0528a00e18947a8c") (:keywords "repeat" "convenience") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/easy-repeat.el"))]) (easy-kill-extras . [(20180920 1334) ((easy-kill (0 9 4))) "Extra functions for easy-kill." tar ((:commit . "b8ce8350cc86e0229f195082557970cd51def960") (:keywords "killing" "convenience") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/easy-kill-extras.el"))]) (easy-kill . [(20181114 2330) ((emacs (24)) (cl-lib (0 5))) "kill & mark things easily" single ((:commit . "2a6309d98aa6b71df6bbbcdf15cab3187c521a6b") (:keywords "killing" "convenience") (:authors ("Leo Liu" . "sdl.web@gmail.com")) (:maintainer "Leo Liu" . "sdl.web@gmail.com") (:url . "https://github.com/leoliu/easy-kill"))]) (easy-jekyll . [(20181104 1256) ((emacs (24 4))) "Major mode managing jekyll blogs" single ((:commit . "3b810558b5816a5413460e77f4c6009dd8dfedcc") (:authors ("Masashı Mıyaura")) (:maintainer "Masashı Mıyaura") (:url . "https://github.com/masasam/emacs-easy-jekyll"))]) (easy-hugo . [(20181030 1238) ((emacs (24 4)) (popup (0 5 3))) "Write blogs made with hugo by markdown or org-mode" single ((:commit . "2a87555a74fdc22d690fd19a04eaa53ad51d694b") (:authors ("Masashı Mıyaura")) (:maintainer "Masashı Mıyaura") (:url . "https://github.com/masasam/emacs-easy-hugo"))]) (easy-escape . [(20161209 1544) nil "Improve readability of escape characters in regular expressions" single ((:commit . "63fa5fcf9a53b7d3c1e872081e65afad5a722ba8") (:keywords "convenience" "lisp" "tools") (:authors ("Clément Pit--Claudel" . "clement.pitclaudel@live.com")) (:maintainer "Clément Pit--Claudel" . "clement.pitclaudel@live.com") (:url . "https://github.com/cpitclaudel/easy-escape"))]) (easy-after-load . [(20170817 1231) nil "eval-after-load for all files in a directory" single ((:commit . "29e20145da49ac9ea40463c552130777408040de") (:authors ("Kyle Hargraves")) (:maintainer "Kyle Hargraves") (:url . "https://github.com/pd/easy-after-load"))]) (eacl . [(20180607 1358) ((emacs (24 3)) (ivy (0 9 1))) "Auto-complete line(s) by grepping project" single ((:commit . "ccf1401b1acff67fe445c95e8be7b09e8c3ae5d8") (:keywords "abbrev" "convenience" "matching") (:authors ("Chen Bin <chenbin DOT sh AT gmail DOT com>")) (:maintainer "Chen Bin <chenbin DOT sh AT gmail DOT com>") (:url . "http://github.com/redguardtoo/eacl"))]) (e2wm-term . [(20141009 1308) ((e2wm (1 2)) (log4e (0 2 0)) (yaxception (0 3 2))) "Perspective of e2wm.el for work in terminal" single ((:commit . "65b5ac88043d5c4048920a048f3599904ca55981") (:keywords "tools" "window manager") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/e2wm-term"))]) (e2wm-sww . [(20140524 858) ((e2wm (1 2))) "Plugin of e2wm.el to switch plugin quickly" single ((:commit . "1063f9854bd34db5ac771cd1036cecc89834729d") (:keywords "tools" "window manager") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/e2wm-sww"))]) (e2wm-svg-clock . [(20150106 1306) ((e2wm (20130225 1602)) (svg-clock (0 4))) "e2wm plugin for svg-clock" single ((:commit . "d425925e3afffcbe2ff74edc80b714e4319d4c94") (:keywords "convenience" "e2wm") (:authors ("Yuhei Maeda <yuhei.maeda_at_gmail.com>")) (:maintainer "Yuhei Maeda") (:url . "https://github.com/myuhe/e2wm-svg-clock.el"))]) (e2wm-pkgex4pl . [(20140525 1047) ((e2wm (1 2)) (plsense-direx (0 2 0))) "Plugin of e2wm.el for package explorer of Perl" single ((:commit . "7ea994450727190c4f3cb46cb429ba41b692ecc0") (:keywords "tools" "window manager" "perl") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/e2wm-pkgex4pl"))]) (e2wm-direx . [(20170509 1301) ((e2wm (1 2)) (direx (0 1 -3))) "Plugin of e2wm.el for direx.el" single ((:commit . "b47f19d15436cc28233a812a1150689f61d11046") (:keywords "tools" "window manager" "convenience") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/e2wm-direx"))]) (e2wm-bookmark . [(20151123 521) ((e2wm (1 2))) "Bookmark plugin for e2wm.el" single ((:commit . "bad816b6d8049984d69bcd277b7d325fb84d55eb") (:keywords "convenience") (:authors ("Yuhei Maeda <yuhei.maeda_at_gmail.com>")) (:maintainer "Yuhei Maeda <yuhei.maeda_at_gmail.com>"))]) (e2wm-R . [(20151230 926) ((e2wm (1 3)) (inlineR (1 0)) (ess (15 3))) "some e2wm plugin and perspective for GNU R" single ((:commit . "4350601ee1a96bf89777b3f09f1b79b88e2e6e4d") (:keywords "convenience" "e2wm") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/e2wm-R.el"))]) (e2wm . [(20170215 36) ((window-layout (1 4))) "simple window manager for emacs" tar ((:commit . "4353d3394c77a49f8f0291c239858c8c5e877549") (:keywords "tools" "window manager") (:authors ("SAKURAI Masashi <m.sakurai atmark kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai atmark kiwanami.net>"))]) (e2ansi . [(20180403 1915) ((face-explorer (0 0 3))) "Syntax highlighting support for `less', powered by Emacs." tar ((:commit . "f886e687d50ff58063a92d40623f2400fa913af0") (:keywords "faces" "languages") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/e2ansi"))]) (dynamic-spaces . [(20171027 1851) nil "When editing, don't move text separated by spaces" single ((:commit . "97ae8480c257ba573ca3d06dbf602f9b23c41d38") (:keywords "convenience") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/dynamic-spaces"))]) (dynamic-ruler . [(20160602 808) nil "Displays a dynamic ruler at point." single ((:commit . "c9c0de6fe5721f06b50e01d9b4684b519c71b367") (:keywords "ruler" "tools" "convenience") (:authors ("Francesc Rocher" . "francesc.rocher@gmail.com")) (:maintainer "Francesc Rocher" . "francesc.rocher@gmail.com") (:url . "http://rocher.github.io/dynamic-ruler"))]) (dynamic-fonts . [(20140731 1226) ((font-utils (0 7 0)) (persistent-soft (0 8 8)) (pcache (0 2 3))) "Set faces based on available fonts" single ((:commit . "ab0c65accbdb59acaed5b263327e22ec019b3e82") (:keywords "faces" "frames") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/dynamic-fonts"))]) (dylan-mode . [(20180928 505) nil "Major mode for editing Dylan programs." tar ((:commit . "a347998ae3ab69c181e09d73f49e11666e89fe71") (:authors ("Robert Stockton" . "rgs@cs.cmu.edu")) (:maintainer "Chris Page" . "cpage@opendylan.org"))]) (dyalog-mode . [(20180605 2113) ((cl-lib (0 2)) (emacs (24))) "Major mode for editing Dyalog APL source code" tar ((:keywords "languages") (:authors ("Joakim Hårsman" . "joakim.harsman@gmail.com")) (:maintainer "Joakim Hårsman" . "joakim.harsman@gmail.com") (:url . "https://bitbucket.org/harsman/dyalog-mode/"))]) (dut-mode . [(20170729 2111) ((emacs (24))) "Major mode for the Dut programming language" single ((:commit . "9235c7acaa6690942e9de8b7acd1e4be0c859dc1") (:keywords "languages" "gut") (:authors ("The dut-mode Authors")) (:maintainer "The dut-mode Authors") (:url . "https://github.com/dut-lang/dut-mode"))]) (duplicate-thing . [(20181031 1500) nil "Duplicate current line & selection" single ((:commit . "9d8fd05e3e5caa35d3f2a0c0032c92f0c0908e21") (:keywords "convenience" "command" "duplicate" "line" "selection") (:authors ("ongaeshi")) (:maintainer "ongaeshi") (:url . "https://github.com/ongaeshi/duplicate-thing"))]) (dummyparens . [(20141009 1024) nil "parenthesis auto-pairing and wrapping" single ((:commit . "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89") (:keywords "dummyparens" "auto-pair" "wrapping") (:authors ("Sergei Nosov <sergei.nosov [at] gmail.com>")) (:maintainer "Sergei Nosov <sergei.nosov [at] gmail.com>") (:url . "https://github.com/snosov1/dummyparens"))]) (dumb-jump . [(20181022 2224) ((emacs (24 3)) (f (0 20 0)) (s (1 11 0)) (dash (2 9 0)) (popup (0 5 3))) "jump to definition for multiple languages without configuration." single ((:commit . "0c893392f6f5e797fc4dcda67cdc44c7ceed31ca") (:keywords "programming") (:authors ("jack angers")) (:maintainer "jack angers"))]) (dumb-diff . [(20171211 2122) ((emacs (24 3))) "fast arbitrary diffs" single ((:commit . "1a2331d283049b71a07c1b06b1e0627a950d55f4") (:keywords "programming" "diff") (:authors ("jack angers")) (:maintainer "jack angers"))]) (ducpel . [(20140702 1154) ((cl-lib (0 5))) "Logic game with sokoban elements" tar ((:commit . "b53b935ab95c02b82ccf38f63c89e39e99477a55") (:keywords "games") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/ducpel"))]) (dts-mode . [(20161103 1223) nil "Major mode for Devicetree source code" single ((:commit . "9ee0854446dcc6c53d2b8d2941051768dba50344") (:keywords "languages") (:authors ("Ben Gamari" . "ben@smart-cactus.org")) (:maintainer "Ben Gamari" . "ben@smart-cactus.org"))]) (dtrt-indent . [(20180921 2221) nil "Adapt to foreign indentation offsets" tar ((:commit . "e860db7235147ed5ac1fd8f12b51dbb7cf2e75f1") (:keywords "convenience" "files" "languages" "c") (:authors ("Julian Scheid" . "julians37@googlemail.com")) (:maintainer "Julian Scheid" . "julians37@googlemail.com"))]) (dtrace-script-mode . [(20150214 623) nil "DTrace code editing commands for Emacs" single ((:commit . "801af1ef16075d31a19830ebb8404bbf3a322f10"))]) (dsvn . [(20130120 2057) nil "Subversion interface" single ((:commit . "17bce692e9bd5a43373d5cb1d66da50e1acb903b") (:keywords "docs") (:authors ("David Kågedal" . "davidk@lysator.liu.se") ("   Mattias Engdegård" . "mattiase@acm.org")) (:maintainer "Mattias Engdegård" . "mattiase@acm.org"))]) (drupal-spell . [(20130520 1655) nil "Aspell extra dictionary for Drupal" tar ((:commit . "cddf1dbc71fb4c5c4c50317db6830467fa97cff0") (:keywords "wp") (:authors ("Arne Jørgensen" . "arne@arnested.dk")) (:maintainer "Arne Jørgensen" . "arne@arnested.dk") (:url . "https://github.com/arnested/drupal-spell"))]) (drupal-mode . [(20171120 2309) ((php-mode (1 5 0))) "Advanced minor mode for Drupal development" tar ((:commit . "47fda0a38a5b197f4606137d9c3b7d44aaeaa886") (:keywords "programming" "php" "drupal") (:authors ("Arne Jørgensen" . "arne@arnested.dk")) (:maintainer "Arne Jørgensen" . "arne@arnested.dk") (:url . "https://github.com/arnested/drupal-mode"))]) (dropbox . [(20181105 306) ((json (1 2)) (oauth (1 0 3))) "Emacs backend for dropbox" single ((:commit . "761254c7de1bd8f76b2065ee2522e66ce3be032d") (:keywords "dropbox") (:authors ("Pavel Panchekha" . "me@pavpanchekha.com")) (:maintainer "Pavel Panchekha" . "me@pavpanchekha.com"))]) (drone . [(20161106 918) nil "Launch your drone test suite if drone.yml is present" single ((:commit . "1d4ee037ad3208847a4235426edf0c4a3e7b1899") (:keywords "drone" "tests" "ci") (:authors ("Oliver Marks" . "oly@digitaloctave.com")) (:maintainer "Oliver Marks" . "oly@digitaloctave.com") (:url . "https://github.com/olymk2/emacs-drone"))]) (drill-instructor-AZIK-force . [(20151123 514) ((popup (0 5))) "Support AZIK input" tar ((:commit . "008cea202dc31d7d6fb1e7d8e6334d516403b7a5"))]) (drawille . [(20160418 1838) ((cl-lib (0 5))) "Drawille implementation in elisp" tar ((:commit . "d914845725719d8293e2f0dea3c9c7e0a1e0e62a") (:keywords "graphics") (:authors ("Josuah Demangeon" . "josuah.demangeon@gmail.com")) (:maintainer "Josuah Demangeon" . "josuah.demangeon@gmail.com") (:url . "https://github.com/sshbio/elisp-drawille"))]) (drag-stuff . [(20161108 749) nil "Drag stuff (lines, words, region, etc...) around" tar ((:commit . "6d06d846cd37c052d79acd0f372c13006aa7e7c8"))]) (draft-mode . [(20140609 1456) nil "Rough drafting for Emacs." single ((:commit . "4779fb32daf53746459da2def7e08004492d4f18") (:keywords "draft" "drafting") (:authors ("Eeli Reilin" . "gaudecker@fea.st")) (:maintainer "Eeli Reilin" . "gaudecker@fea.st") (:url . "https://github.com/gaudecker/draft-mode"))]) (dracula-theme . [(20180710 1324) ((emacs (24))) "Dracula Theme" single ((:commit . "a1c9888b7876ace60a536d27fb290e788bffc9cb") (:authors ("film42")) (:maintainer "film42") (:url . "https://github.com/dracula/emacs"))]) (dr-racket-like-unicode . [(20161021 1211) ((emacs (24 1))) "DrRacket-style unicode input" single ((:commit . "4953f1c8a68472e157a0dcd0a7e35a4ec2577133") (:keywords "i18n" "tools") (:authors ("David Christiansen" . "david@davidchristiansen.dk")) (:maintainer "David Christiansen" . "david@davidchristiansen.dk"))]) (dpkg-dev-el . [(20181022 8) ((debian-el (37))) "Emacs modes for debian packaging" tar ((:commit . "a80f8ac5d81720cce90cf3bc5fbb45d50b1953d7"))]) (dpaste_de . [(20131015 1225) ((web (0 3 7))) "Emacs mode to paste to dpaste.de" single ((:commit . "f0c39e8864299f735642f7d9fa490689398ce39d") (:keywords "pastebin") (:authors ("Thejaswi Puthraya" . "thejaswi.puthraya@gmail.com")) (:maintainer "Thejaswi Puthraya" . "thejaswi.puthraya@gmail.com"))]) (dpaste . [(20160303 2112) nil "Emacs integration for dpaste.com" single ((:commit . "5ebabb466a6ae70882549855b6b2194fc32189f8") (:keywords "paste" "pastie" "pastebin" "dpaste" "python") (:authors ("Greg Newman" . "greg@gregnewman.org") ("Guilherme Gondim" . "semente@taurinus.org")) (:maintainer "Greg Newman" . "greg@gregnewman.org"))]) (downplay-mode . [(20151125 2009) nil "focus attention on a region of the buffer" single ((:commit . "4a2c3addc73c8ca3816345c3c11c08af265baedb") (:authors ("Toby Crawley" . "toby@tcrawley.org")) (:maintainer "Toby Crawley" . "toby@tcrawley.org") (:url . "https://github.com/tobias/downplay-mode/"))]) (download-region . [(20180124 133) ((cl-lib (0 3))) "Simple in-buffer download manager" single ((:commit . "bbba3ecd80818d5d940d41fe89a6e2ec5dd2c53c") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (dotnet . [(20181117 1531) nil "Interact with dotnet CLI tool" single ((:commit . "70ed170caeeecba5fddbd82b0d6aec967b6c6ee4") (:keywords ".net" "tools") (:authors ("Julien BLANCHARD" . "julien@sideburns.eu")) (:maintainer "Julien BLANCHARD" . "julien@sideburns.eu") (:url . "https://github.com/julienXX/dotnet.el"))]) (dotenv-mode . [(20180207 1914) ((emacs (24 3))) "Major mode for .env files" single ((:commit . "f4c52bcd5313379b9f2460db7f7a33119dfa96ea") (:authors ("Preetpal S. Sohal")) (:maintainer "Preetpal S. Sohal") (:url . "https://github.com/preetpalS/emacs-dotenv-mode"))]) (dot-mode . [(20180312 2300) ((emacs (24 3))) "minor mode to repeat typing or commands" single ((:commit . "6ca22b73bcdae2363ee9641b822a60685df16a3e") (:keywords "convenience") (:authors ("Robert Wyrick" . "rob@wyrick.org")) (:maintainer "Robert Wyrick" . "rob@wyrick.org") (:url . "https://github.com/wyrickre/dot-mode"))]) (doom-themes . [(20181101 218) ((emacs (24 4)) (all-the-icons (1 0 0)) (cl-lib (0 5))) "an opinionated pack of modern color-themes" tar ((:commit . "2aa163b8322a55a69296552bc03b1b84413d5abc") (:keywords "dark" "light" "blue" "atom" "one" "theme" "neotree" "icons" "faces" "nova") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/emacs-doom-theme"))]) (doom-modeline . [(20181120 1529) ((emacs (25 1)) (all-the-icons (1 0 0)) (shrink-path (0 2 0)) (eldoc-eval (0 1)) (dash (2 11 0))) "A minimal and modern modeline" single ((:commit . "69f3029c31ffe91e23bc2728fbbee9acf98b8e0e") (:keywords "faces" "mode-line") (:authors ("Vincent Zhang" . "seagle0128@gmail.com")) (:maintainer "Vincent Zhang" . "seagle0128@gmail.com") (:url . "https://github.com/seagle0128/doom-modeline"))]) (doom . [(20180301 2308) ((cl-lib (0 5))) "DOM implementation and manipulation library" single ((:commit . "e59040aefc92dd9b3134eb623624307fb9e4327b") (:keywords "xml" "dom") (:authors ("Alex Schroeder" . "alex@gnu.org") ("Henrik.Motakef" . "elisp@henrik-motakef.de") ("Katherine Whitlock" . "toroidal-code@gmail.com") ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Alex Schroeder") (:url . "http://www.github.com/kensanata/doom.el/"))]) (doneburn-theme . [(20181110 1857) nil "A light theme based on Bozhidar Batsov's Zenburn" single ((:commit . "9c31dd6d664436df73c776560c7a660041b3a5bf") (:keywords "faces" "themes") (:authors ("Manuel Uberti" . "manuel.uberti@inventati.org")) (:maintainer "Manuel Uberti" . "manuel.uberti@inventati.org") (:url . "http://github.com/manuel-uberti/doneburn-emacs"))]) (dollaro . [(20151123 1302) ((s (1 6 0))) "simple text templates" single ((:commit . "500127f0172ac7a1eec627e026b59136580a74ac") (:keywords "tools" "convenience") (:authors ("Alessandro Piras" . "laynor@gmail.com")) (:maintainer "Alessandro Piras" . "laynor@gmail.com"))]) (dokuwiki-mode . [(20170223 1301) nil "Major mode for DokuWiki document" single ((:commit . "e4e116f6fcc373e3f5937c1a7daa5c2c9c6d3fa1") (:keywords "hypermedia" "text" "dokuwiki") (:authors ("Tsunenobu Kai" . "kai2nenobu@gmail.com")) (:maintainer "Tsunenobu Kai" . "kai2nenobu@gmail.com") (:url . "https://github.com/kai2nenobu/emacs-dokuwiki-mode"))]) (dokuwiki . [(20180102 59) ((emacs (24 3)) (xml-rpc (1 6 8))) "Edit Remote DokuWiki Pages Using XML-RPC" single ((:commit . "594c4d4904dcc2796bbbd2c0845d9e7c09ccf6f7") (:keywords "convenience") (:authors ("Juan Karlo Licudine" . "accidentalrebel@gmail.com")) (:maintainer "Juan Karlo Licudine" . "accidentalrebel@gmail.com") (:url . "http://www.github.com/accidentalrebel/emacs-dokuwiki"))]) (dockerfile-mode . [(20181104 1800) ((emacs (24)) (s (1 12))) "Major mode for editing Docker's Dockerfiles" single ((:commit . "7223d92718f78fa3ab15667cdb2ed90cfeb579e7") (:url . "https://github.com/spotify/dockerfile-mode"))]) (docker-tramp . [(20170207 325) ((emacs (24)) (cl-lib (0 5))) "TRAMP integration for docker containers" tar ((:commit . "8e2b671eff7a81af43b76d9dfcf94ddaa8333a23") (:keywords "docker" "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/docker-tramp.el"))]) (docker-compose-mode . [(20180324 1752) ((emacs (24 3)) (dash (2 12 0)) (yaml-mode (0 0 12))) "Major mode for editing docker-compose files" single ((:commit . "c9f131d2c90d652435d407fd36c40feebfed1dad") (:keywords "convenience") (:authors ("Ricardo Martins")) (:maintainer "Ricardo Martins") (:url . "https://github.com/meqif/docker-compose-mode"))]) (docker-api . [(20160525 720) ((dash (2 12 1)) (request (0 2 0)) (s (1 11 0))) "Emacs interface to the Docker API" tar ((:commit . "206144346b7fa4165223349cfeb64a75d47ddd1b") (:authors ("Philippe Vaucher" . "philippe.vaucher@gmail.com")) (:maintainer "Philippe Vaucher" . "philippe.vaucher@gmail.com") (:url . "https://github.com/Silex/docker-api.el"))]) (docker . [(20181101 504) ((emacs (24 5)) (dash (2 14 1)) (docker-tramp (0 1)) (magit-popup (2 12 4)) (s (1 12 0)) (tablist (0 70)) (json-mode (1 7 0))) "Emacs interface to Docker" tar ((:commit . "c36bce1bad03833e0d35e260ed1e402c152606ba") (:keywords "filename" "convenience") (:authors ("Philippe Vaucher" . "philippe.vaucher@gmail.com")) (:maintainer "Philippe Vaucher" . "philippe.vaucher@gmail.com") (:url . "https://github.com/Silex/docker.el"))]) (docean . [(20180605 1744) ((emacs (24)) (cl-lib (0 5)) (request (0 2 0))) "Interact with DigitalOcean from Emacs." single ((:commit . "bbe2298fd21f7876fc2d5c52a69b931ff59df979") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/docean.el"))]) (docbook-snippets . [(20150714 1625) ((yasnippet (0 8 0))) "Yasnippets for DocBook" tar ((:commit . "b06297fdec039a541aaa6312cb328a11062cfab4") (:keywords "snippets" "docbook") (:authors ("Jaromir Hradilek" . "jhradilek@gmail.com")) (:maintainer "Jaromir Hradilek" . "jhradilek@gmail.com") (:url . "https://github.com/jhradilek/emacs-docbook-snippets"))]) (dna-mode . [(20170804 814) nil "a major mode for editing dna sequences" tar ((:commit . "471d374de22c33eaddd8e41dd8ae29753fab2f6a") (:keywords "dna" "emacs" "editing") (:authors ("Harley Gorrell" . "harley@panix.com")) (:maintainer "Harley Gorrell" . "harley@panix.com") (:url . "http://www.mahalito.net/~harley/elisp/dna-mode.el"))]) (dmenu . [(20180118 1245) ((cl-lib (0 5))) "simulate the dmenu command line program" single ((:commit . "6e492cd4ee4fb39ecda92776707fc270f54d25e7") (:keywords "convenience" "usability") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com"))]) (dkmisc . [(20131110 1115) ((emacs (24 1))) "Miscellaneous functions required by dk* packages." tar ((:commit . "fe3d49c6f8322b6f89466361acd97585bdfe0608"))]) (dklrt . [(20131110 1341) ((dkmisc (0 50)) (ledger-mode (20130908 1357)) (emacs (24 1))) "Ledger Recurring Transactions." tar ((:commit . "5d6c99f8018335256ab934b4c1049708ae2d48ba"))]) (dkl . [(20161005 7) nil "Display keyboard layout." tar ((:commit . "6b4584f86037bda3383960c678d51f340229fb91") (:keywords "input" "keyboard" "layout") (:authors ("Alexis" . "flexibeast@gmail.com")) (:maintainer "Alexis" . "flexibeast@gmail.com") (:url . "https://github.com/flexibeast/dkl"))]) (dkdo . [(20131110 1119) ((dkmisc (0 50)) (emacs (24 1))) "Do List major mode based on org-mode." tar ((:commit . "fd6bb105e8331fafb6385c5238c988c4c5bbe2da"))]) (djangonaut . [(20180727 1544) ((emacs (25 2)) (magit-popup (2 6 0)) (pythonic (0 1 0)) (f (0 20 0)) (s (1 12 0))) "Minor mode to interact with Django projects" single ((:commit . "3e154709def09020a9b9eb29d330fb1f833a8250") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/djangonaut"))]) (django-theme . [(20131022 902) nil "Custom face theme for Emacs" single ((:commit . "86c8142b3eb1addd94a43aa6f1d98dab06401af0") (:authors ("Andrzej Sliwa")) (:maintainer "Andrzej Sliwa") (:url . "http://github/anrzejsliwa/django-theme"))]) (django-snippets . [(20131229 1611) ((yasnippet (0 8 0))) "Yasnippets for django" tar ((:commit . "a71b8dd984e7f724b8321246e5c353a4ae5c986e") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/myfreeweb/django-mode"))]) (django-mode . [(20170522 714) ((projectile (0)) (s (0)) (helm-make (0))) "Major mode for Django web framework." tar ((:commit . "a71b8dd984e7f724b8321246e5c353a4ae5c986e") (:keywords "languages") (:authors ("Greg V" . "floatboth@me.com")) (:maintainer "Greg V" . "floatboth@me.com"))]) (django-manage . [(20160819 212) ((hydra (0 13 2))) "Django minor mode for commanding manage.py" single ((:commit . "876fb2cb627d465adfdc905841279784bcdd7ee8") (:keywords "languages") (:authors ("Daniel Gopar" . "gopardaniel@yahoo.com")) (:maintainer "Daniel Gopar" . "gopardaniel@yahoo.com"))]) (django-commands . [(20181029 804) ((emacs (25 1))) "Run django commands" single ((:commit . "4e6387175b56095e53732cf1d3b3422eb85696fb") (:keywords "tools") (:authors ("Andrii Kolomoiets" . "andreyk.mad@gmail.com")) (:maintainer "Andrii Kolomoiets" . "andreyk.mad@gmail.com") (:url . "https://github.com/muffinmad/emacs-django-commands"))]) (dizzee . [(20171201 916) nil "A more pleasant way to manage your project's subprocesses in Emacs." tar ((:commit . "e3cf1c2ea5d0fc00747524b6f3c5b905d0a8c8e1"))]) (dix-evil . [(20170105 1423) ((dix (0 3 0)) (evil (1 0 7))) "optional evil-integration with dix.el" single ((:commit . "bcc7fd7aef5d25171978c386c620e09d0ba8d2f8") (:keywords "languages") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org") (:url . "http://wiki.apertium.org/wiki/Emacs"))]) (dix . [(20170224 1415) ((cl-lib (0 5))) "minor mode for editing Apertium XML dictionary files" tar ((:commit . "bcc7fd7aef5d25171978c386c620e09d0ba8d2f8") (:keywords "languages") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org") (:url . "http://wiki.apertium.org/wiki/Emacs"))]) (ditz-mode . [(20150729 940) nil "Emacs interface to Ditz issue tracking system" single ((:keywords "tools") (:authors ("Glenn Hutchings" . "zondo42@gmail.com")) (:maintainer "Glenn Hutchings" . "zondo42@gmail.com"))]) (distinguished-theme . [(20151216 2015) nil "A dark and elegant theme for emacs." single ((:commit . "9b1d25ac59465a5016d187ea84b7614c95a29b3b") (:authors ("Kim Silkebækken" . "kim.silkebaekken@gmail.com")) (:maintainer "Kim Silkebækken" . "kim.silkebaekken@gmail.com") (:url . "https://github.com/Lokaltog/distinguished-theme"))]) (distel-completion-lib . [(20180827 1344) nil "Completion library for Erlang/Distel" single ((:commit . "acc4c0a5521904203d797fe96b08e5fae4233c7e") (:keywords "erlang" "distel" "completion") (:authors ("Sebastian Weddmark Olsson")) (:maintainer "Sebastian Weddmark Olsson") (:url . "github.com/sebastiw/distel-completion"))]) (dist-file-mode . [(20180830 418) ((emacs (24)) (cl-lib (0 5)) (s (1 9 0))) "Dispatch major mode for *.dist files" single ((:commit . "e1ce8f592bc5d4d86d2f09e334728ac0d524c761") (:keywords "files" "convenience") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/dist-file-mode.el"))]) (display-theme . [(20140115 1556) ((emacs (24))) "display current theme(s) at mode-line" single ((:commit . "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15") (:keywords "tools") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/emacs-display-theme/"))]) (dispass . [(20140202 1531) ((dash (1 0 0))) "Emacs wrapper for DisPass" single ((:commit . "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861") (:keywords "processes") (:authors ("Tom Willemsen" . "tom@ryuslash.org")) (:maintainer "Tom Willemsen" . "tom@ryuslash.org") (:url . "http://projects.ryuslash.org/dispass.el/"))]) (disk . [(20171116 731) nil "simplified find-file, revert-file, save-buffer interface" single ((:commit . "283e54e3be7d08f959076240b2ab324e25632137") (:keywords "convenience") (:authors ("Alex Schroeder" . "alex@gnu.org") ("Peter Barabas" . "peter.barabas+disk@gmail.com")) (:maintainer "Alex Schroeder" . "alex@gnu.org") (:url . "http://www.emacswiki.org/emacs/DiskKey"))]) (discover-my-major . [(20180606 511) ((makey (0 2))) "Discover key bindings and their meaning for the current Emacs major mode" single ((:commit . "c592e5e67454f0d1b68669ac0c270073164b16b3") (:keywords "discover" "help" "major-mode" "keys") (:authors ("steckerhalter")) (:maintainer "steckerhalter") (:url . "https://framagit.org/steckerhalter/discover-my-major"))]) (discover-js2-refactor . [(20140129 1552) ((js2-refactor (20131221 501)) (discover (20140103 1339))) "Adds discover context menu for js2-refactor" single ((:commit . "3812abf61f39f3e73a9f3daefa6fed4f21a429ba") (:keywords "js2-refactor" "discover") (:authors ("Nicolas Petton" . "petton.nicolas@gmail.com")) (:maintainer "Nicolas Petton" . "petton.nicolas@gmail.com"))]) (discover-clj-refactor . [(20150328 1459) ((clj-refactor (0 14 0)) (discover (0 3))) "Adds discover context menu for clj-refactor" single ((:commit . "3fbd5c1162739e606d7cf5d4f5d7426547d99647") (:keywords "clj-refactor" "discover" "convenience") (:authors ("Marian Schubert" . "marian.schubert@gmail.com")) (:maintainer "Marian Schubert" . "marian.schubert@gmail.com"))]) (discover . [(20140103 2139) ((makey (0 3))) "discover more of Emacs" single ((:commit . "7b0044bbb3b3bd5d811fdfb0f5ac6ec8de1239df") (:authors ("Mickey Petersen" . "mickey@fyeah.org")) (:maintainer "Mickey Petersen" . "mickey@fyeah.org"))]) (discourse . [(20160911 819) ((cl-lib (0 5)) (request (0 2)) (s (1 11 0))) "discourse api" single ((:commit . "a86c7e608851e186fe12e892a573994f08c8e65e") (:keywords "lisp" "discourse") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/discourse-api"))]) (disaster . [(20171016 2152) nil "Disassemble C/C++ code under cursor in Emacs" single ((:commit . "10a785facc60d89d78e0d5177985ab1af1741bb4") (:keywords "tools") (:authors ("Justine Tunney" . "jtunney@gmail.com")) (:maintainer "Justine Tunney" . "jtunney@gmail.com") (:url . "https://github.com/jart/disaster"))]) (disable-mouse . [(20171227 115) nil "Disable mouse commands globally" single ((:commit . "541363bd6353b8b05375552bab884a6315ea545c") (:keywords "mouse") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/disable-mouse"))]) (dirtree-prosjekt . [(20140129 904) ((prosjekt (0 3)) (dirtree (0 1))) "dirtree integration for prosjekt." single ((:commit . "a864a8be5842223043702395f311e3350c28e9db") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/prosjekt"))]) (dirtree . [(20140129 832) ((tree-mode (1 1 1 1)) (windata (0))) "Directory tree views" single ((:commit . "ba55f1e716e386fdd37cb8e7f48616e405dc7251") (:authors ("Ye Wenbin" . "wenbinye@gmail.com")) (:maintainer "Ye Wenbin" . "wenbinye@gmail.com"))]) (direx-grep . [(20140515 1506) ((direx (0 1 -3))) "Grep node of direx.el using incremental search like anything.el/helm.el" single ((:commit . "1109a512a80b2673a70b18b8568514049017faad") (:keywords "convenience") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/direx-grep"))]) (direx . [(20170422 1327) nil "Simple Directory Explorer" tar ((:commit . "a79bfdb5980cf6ed7bfb3b41ddc471a7b6c0ede4") (:keywords "convenience") (:authors ("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) (:maintainer "Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))]) (direnv . [(20180513 823) ((emacs (24 4)) (dash (2 12 0)) (with-editor (2 5 10))) "direnv support" single ((:commit . "6cf079fe8171bdf4bebefe02e8353d7f13847ebd") (:keywords "direnv" "environment" "processes" "unix" "tools") (:authors ("Wouter Bolsterlee" . "wouter@bolsterl.ee")) (:maintainer "Wouter Bolsterlee" . "wouter@bolsterl.ee") (:url . "https://github.com/wbolster/emacs-direnv"))]) (diredful . [(20160529 2017) nil "colorful file names in dired buffers" single ((:commit . "c08e163d9d6c62f7b07e94d54c96c2e364e67e0e") (:keywords "dired" "colors" "extension" "widget") (:authors ("Thamer Mahmoud" . "thamer.mahmoud@gmail.com")) (:maintainer "Thamer Mahmoud" . "thamer.mahmoud@gmail.com") (:url . "https://github.com/thamer/diredful"))]) (diredfl . [(20180211 214) ((emacs (24))) "Extra font lock rules for a more colourful dired" single ((:commit . "9b2a89951cee8bdf5c0cb67f9c3ad6ac73abf9cb") (:keywords "faces") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/diredfl"))]) (dired-toggle-sudo . [(20151109 1006) nil "Browse directory with sudo privileges." single ((:commit . "02449dbda4e168f99fe5352c9628df5d39e11483") (:keywords "emacs" "dired") (:authors ("Sebastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>")) (:maintainer "Sebastien Gross <seb•ɑƬ•chezwam•ɖɵʈ•org>"))]) (dired-toggle . [(20140907 2049) nil "provide a simple way to toggle dired buffer for current directory" single ((:commit . "84efb9ec9c327e4da53cdb7cda5b51dcd0ede0e5") (:keywords "dired" "toggle") (:authors ("Xu FaSheng" . "fasheng.xu@gmail.com")) (:maintainer "Xu FaSheng") (:url . "https://github.com/fasheng/dired-toggle"))]) (dired-subtree . [(20180922 1615) ((dash (2 5 0)) (dired-hacks-utils (0 0 1))) "Insert subdirectories in a tree-like fashion" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (dired-single . [(20180824 312) nil "Reuse the current dired buffer to visit a directory" single ((:commit . "b0ccca83df0542c5525c047ae283c0eadf500f5c") (:keywords "dired" "reuse" "buffer") (:authors ("Joe Casadonte" . "emacs@northbound-train.com")) (:maintainer "crocket" . "crockabiscuit@gmail.com"))]) (dired-sidebar . [(20181111 1740) ((emacs (25 1)) (dired-subtree (0 0 1))) "Tree browser leveraging dired" single ((:commit . "f7782416e5e8e5018f775106dc61dd3a4e5dda84") (:keywords "dired" "files" "tools") (:authors ("James Nguyen" . "james@jojojames.com")) (:maintainer "James Nguyen" . "james@jojojames.com") (:url . "https://github.com/jojojames/dired-sidebar"))]) (dired-rsync . [(20180906 1002) ((s (1 12 0)) (dash (2 0 0)) (emacs (24))) "Allow rsync from dired buffers" single ((:commit . "e112bf22c913d1491bb2149250be866ceb1806ff") (:authors ("Alex Bennée" . "alex@bennee.com")) (:maintainer "Alex Bennée" . "alex@bennee.com") (:url . "https://github.com/stsquad/dired-rsync"))]) (dired-rifle . [(20181012 2131) nil "Call rifle(1) from dired" single ((:commit . "a4f7b1e798397688b9c00d3507fcd395ece17a40") (:keywords "files" "convenience") (:authors ("Wojciech Siewierski <wojciech dot siewierski at onet dot pl>")) (:maintainer "Wojciech Siewierski <wojciech dot siewierski at onet dot pl>") (:url . "https://github.com/vifon/dired-rifle.el"))]) (dired-recent . [(20180921 2238) ((emacs (24))) "Dired visited paths history" single ((:commit . "7c5a818ab88fdfa779674931cc6d9466308fcd86") (:keywords "files") (:authors ("Wojciech Siewierski <wojciech dot siewierski at onet dot pl>")) (:maintainer "Wojciech Siewierski <wojciech dot siewierski at onet dot pl>") (:url . "https://github.com/vifon/dired-recent.el"))]) (dired-ranger . [(20180401 2206) ((dash (2 7 0)) (dired-hacks-utils (0 0 1))) "Implementation of useful ranger features for dired" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (dired-rainbow . [(20171202 2248) ((dash (2 5 0)) (dired-hacks-utils (0 0 1))) "Extended file highlighting according to its type" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com"))]) (dired-quick-sort . [(20161208 2112) ((hydra (0 13 0))) "Persistent quick sorting of dired buffers in various ways." single ((:commit . "1845f978d313f750a5b70b832457ed803c4ffbdb") (:keywords "convenience" "files") (:authors ("Hong Xu" . "hong@topbug.net")) (:maintainer "Hong Xu" . "hong@topbug.net") (:url . "https://gitlab.com/xuhdev/dired-quick-sort#dired-quick-sort"))]) (dired-open . [(20180922 1113) ((dash (2 5 0)) (dired-hacks-utils (0 0 1))) "Open files from dired using using custom actions" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (dired-narrow . [(20181114 1723) ((dash (2 7 0)) (dired-hacks-utils (0 0 1))) "Live-narrowing of search results for dired" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (dired-launch . [(20180607 1841) nil "Use dired as a launcher" single ((:commit . "ad45940f76ef2f6c3bb55e998829b311de191dae") (:keywords "dired" "launch") (:authors ("David Thompson")) (:maintainer "David Thompson") (:url . "https://github.com/thomp/dired-launch"))]) (dired-k . [(20170313 1503) ((emacs (24 3))) "highlight dired buffer by file size, modified time, git status" tar ((:commit . "c50e8f73358060a448bff66db2d330b52bbeffc1") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-dired-k"))]) (dired-imenu . [(20140109 1610) nil "imenu binding for dired mode" single ((:commit . "610e21fe0988c85931d34894d3eee2442c79ab0a") (:keywords "dired" "imenu") (:authors ("Damien Cassou" . "damien.cassou@gmail.com")) (:maintainer "Damien Cassou" . "damien.cassou@gmail.com") (:url . "https://github.com/DamienCassou/dired-imenu"))]) (dired-icon . [(20170223 526) ((emacs (24 3))) "A minor mode to display a list of associated icons in dired buffers." tar ((:commit . "f60e10757a5011235b519231ad35974ff25963ed") (:keywords "dired" "files") (:authors ("Hong Xu" . "hong@topbug.net")) (:maintainer "Hong Xu" . "hong@topbug.net") (:url . "https://gitlab.com/xuhdev/dired-icon"))]) (dired-hide-dotfiles . [(20170314 2039) ((emacs (25 1))) "Hide dotfiles in dired" single ((:commit . "b715f643ec805b3b8aca334595e6589320f04a49") (:keywords "files") (:authors ("Mattias Bengtsson" . "mattias.jc.bengtsson@gmail.com")) (:maintainer "Mattias Bengtsson" . "mattias.jc.bengtsson@gmail.com") (:url . "https://github.com/mattiasb/dired-hide-dotfiles"))]) (dired-hacks-utils . [(20160527 2136) ((dash (2 5 0))) "Utilities and helpers for dired-hacks collection" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (dired-filter . [(20180922 1107) ((dash (2 10 0)) (dired-hacks-utils (0 0 1)) (f (0 17 0)) (cl-lib (0 3))) "Ibuffer-like filtering for dired" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (dired-filetype-face . [(20180907 1339) nil "Set different faces for different filetypes in dired" single ((:commit . "7ade7f7e8c2d7518c65f3f0343a10c272da0f47e") (:keywords "dired" "filetype" "face") (:authors ("纪秀峰 <jixiuf at gmail dot com>")) (:maintainer "纪秀峰 <jixiuf at gmail dot com>") (:url . "https://github.com/jixiuf/dired-filetype-face"))]) (dired-fdclone . [(20180403 608) nil "dired functions and settings to mimic FDclone" single ((:commit . "903d7a736d240ef7352989a4e5d0ff9129c2ee3c") (:keywords "unix" "directories" "dired") (:authors ("Akinori MUSHA" . "knu@iDaemons.org")) (:maintainer "Akinori MUSHA" . "knu@iDaemons.org") (:url . "https://github.com/knu/dired-fdclone.el"))]) (dired-explorer . [(20180607 221) ((cl-lib (0 5))) "minor-mode provides Explorer like select file at dired." single ((:commit . "3ade0a31b5340271d05e9bf443f2504960f6c6dd") (:keywords "dired" "explorer") (:maintainer "jidaikobo-shibata"))]) (dired-efap . [(20140122 1656) nil "Edit Filename At Point in a dired buffer" single ((:commit . "624757b2e54d9a13e2183118d6c113e37684b90c") (:keywords "dired" "environment" "files" "renaming") (:authors ("Juan-Leon Lahoz" . "juanleon1@gmail.com")) (:maintainer "Juan-Leon Lahoz" . "juanleon1@gmail.com") (:url . "https://github.com/juan-leon/dired-efap"))]) (dired-dups . [(20130527 2125) nil "Find duplicate files and display them in a dired buffer" single ((:commit . "694ad128c822c59348ced16c4a0c1356d43da47a") (:keywords "unix") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/dired-dups"))]) (dired-collapse . [(20180724 1644) ((dash (2 10 0)) (f (0 19 0)) (dired-hacks-utils (0 0 1))) "Collapse unique nested paths in dired listing" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (dired-avfs . [(20161012 1104) ((dash (2 5 0)) (dired-hacks-utils (0 0 1))) "AVFS support for dired" single ((:commit . "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3") (:keywords "files") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com"))]) (dired-atool . [(20180303 740) ((emacs (24))) "Pack/unpack files with atool on dired." single ((:commit . "bfa95c2a9ef81e8de51a15b2a43f707899946f9c") (:keywords "files") (:authors ("Hiroki YAMAKAWA" . "s06139@gmail.com")) (:maintainer "Hiroki YAMAKAWA" . "s06139@gmail.com") (:url . "https://github.com/HKey/dired-atool"))]) (dircmp . [(20141204 1756) nil "Compare and sync directories." tar ((:commit . "558ee0b601c2de9d247612085aafe2926f56a09f") (:keywords "unix" "tools") (:authors ("Matt McClure -- http://matthewlmcclure.com")) (:maintainer "Matt McClure -- http://matthewlmcclure.com") (:url . "https://github.com/matthewlmcclure/dircmp-mode"))]) (dionysos . [(20160810 1056) ((libmpdee (2 1 0)) (alert (1 2)) (s (1 11 0)) (dash (2 12 1)) (pkg-info (0 5 0)) (cl-lib (0 5))) "Dionysos, a music player for Emacs" tar ((:commit . "0aac21caadabc5a7f09e18a9dcb02f3dec26588b") (:keywords "music") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/dionysos"))]) (dimmer . [(20180218 411) ((emacs (25))) "visually highlight the selected buffer" single ((:commit . "d033fdda154e688e45cca35902dbff9915351b98") (:keywords "faces" "editing") (:authors ("Neil Okamoto")) (:maintainer "Neil Okamoto") (:url . "https://github.com/gonewest818/dimmer.el"))]) (diminish . [(20170419 1736) nil "Diminished modes are minor modes with no modeline display" single ((:commit . "565a983a39d2e2cffab5df13b34f3b6116723208") (:keywords "extensions" "diminish" "minor" "codeprose") (:authors ("Will Mengarini" . "seldon@eskimo.com")) (:maintainer "Martin Yrjölä" . "martin.yrjola@gmail.com") (:url . "https://github.com/myrjola/diminish.el"))]) (dim-autoload . [(20180318 2027) nil "dim or hide autoload cookie lines" single ((:commit . "788320fe089fafbdf1cb09d2ab4d29d64a804e21") (:keywords "convenience") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/dim-autoload"))]) (dim . [(20160818 949) ((emacs (24 4))) "Change mode-line names of major/minor modes" single ((:commit . "79b81724b951fedffdd3113f473c18990af837a9") (:keywords "convenience") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/dim.el"))]) (digitalocean-helm . [(20180610 746) ((emacs (24 3)) (helm (2 5)) (digitalocean (0 1))) "Create and manipulate digitalocean droplets" single ((:commit . "b125c9882eded7d73ec109d152b26625f333440b") (:keywords "processes" "tools") (:authors ("Oliver Marks" . "oly@digitaloctave.com")) (:maintainer "Oliver Marks" . "oly@digitaloctave.com") (:url . "https://gitlab.com/olymk2/digitalocean-api"))]) (digitalocean . [(20180603 925) ((request (2 5)) (emacs (24 4))) "Create and manipulate digitalocean droplets" single ((:commit . "1cac663c4bcb7f8325783954df6c0caf3dc20f6e") (:keywords "processes" "tools") (:authors ("Oliver Marks" . "oly@digitaloctave.com")) (:maintainer "Oliver Marks" . "oly@digitaloctave.com") (:url . "https://github.com/olymk2/emacs-digitalocean"))]) (digit-groups . [(20160817 226) ((dash (2 11 0))) "Highlight place-value positions in numbers" single ((:authors ("Michael D. Adams <http://michaeldadams.org>")) (:maintainer "Michael D. Adams <http://michaeldadams.org>") (:url . "http://bitbucket.com/adamsmd/digit-groups"))]) (digistar-mode . [(20160218 1955) nil "major mode for Digistar scripts" single ((:commit . "15288b1e1a04b79b5ab7097fdd26d48b2ff41076") (:keywords "languages") (:authors ("John Foerch" . "jjfoerch@earthlink.net")) (:maintainer "John Foerch" . "jjfoerch@earthlink.net"))]) (diffview . [(20150929 511) nil "View diffs in side-by-side format" single ((:commit . "031b70913e755c5e55222680f80185032a7d1728") (:keywords "convenience" "diff") (:authors ("Mitchel Humpherys" . "mitch.special@gmail.com")) (:maintainer "Mitchel Humpherys" . "mitch.special@gmail.com") (:url . "https://github.com/mgalgs/diffview-mode"))]) (diffscuss-mode . [(20141014 2357) nil "Major mode for diffscuss files." single ((:commit . "e0aacd8b3d9f886f27222c1397f0655e849e0af7") (:keywords "tools") (:authors ("Edmund Jorgensen" . "edmund@hut8labs.com")) (:maintainer "Edmund Jorgensen" . "edmund@hut8labs.com"))]) (difflib . [(20171227 1518) ((emacs (24 4)) (cl-generic (0 3)) (ht (2 2)) (s (1 12 0))) "Helpers for computing deltas between sequences." single ((:commit . "b08850251812d71e62fd6956081299590acdf37b") (:keywords "matching" "tools" "string") (:authors ("Diego A. Mundo" . "diegoamundo@gmail.com")) (:maintainer "Diego A. Mundo" . "diegoamundo@gmail.com") (:url . "http://github.com/dieggsy/difflib.el"))]) (diff-hl . [(20180201 1155) ((cl-lib (0 2)) (emacs (24 3))) "Highlight uncommitted changes using VC" tar ((:commit . "154c64affe7bdd16da814d198277d29bd1b6bb2a") (:keywords "vc" "diff") (:authors ("Dmitry Gutov" . "dgutov@yandex.ru")) (:maintainer "Dmitry Gutov" . "dgutov@yandex.ru") (:url . "https://github.com/dgutov/diff-hl"))]) (dictionary . [(20140718 329) ((connection (1 10)) (link (1 10))) "Client for rfc2229 dictionary servers" single ((:commit . "a23b8f4a422d0de69a006ed010eff5795319db98") (:keywords "interface" "dictionary") (:authors ("Torsten Hilbrich" . "torsten.hilbrich@gmx.net")) (:maintainer "Torsten Hilbrich" . "torsten.hilbrich@gmx.net"))]) (dictcc . [(20171213 2134) ((emacs (24 4)) (cl-lib (0 5)) (ivy (0 10 0))) "Look up translations on dict.cc" single ((:commit . "7b988413f7719820cd846827525142a23f401e50") (:keywords "convenience") (:authors ("Marten Lienen" . "marten.lienen@gmail.com")) (:maintainer "Marten Lienen" . "marten.lienen@gmail.com"))]) (dic-lookup-w3m . [(20180526 1621) ((w3m (20120723 324)) (stem (20120826))) "look up dictionaries on the Internet" tar ((:commit . "3254ab10cbf0078c7162557dd1f68dac28459cf9") (:keywords "emacs-w3m" "w3m" "dictionary") (:authors ("mcprvmec")) (:maintainer "mcprvmec"))]) (diary-manager . [(20181027 222) ((emacs (25))) "Simple personal diary." single ((:commit . "1960f854073d37ac0ba6855efda833a790263ee2") (:keywords "extensions") (:authors ("Radon Rosborough" . "radon.neon@gmail.com")) (:maintainer "Radon Rosborough" . "radon.neon@gmail.com") (:url . "https://github.com/raxod502/diary-manager"))]) (dhall-mode . [(20181104 109) ((emacs (24 4))) "a major mode for dhall configuration language" single ((:commit . "1fa48e3aaa1623f2ac3d63a0681f3fb9343fee7a") (:keywords "languages") (:authors ("Sibi Prabakaran" . "sibi@psibi.in")) (:maintainer "Sibi Prabakaran" . "sibi@psibi.in") (:url . "https://github.com/psibi/dhall-mode"))]) (dfmt . [(20170728 1023) nil "Emacs Interface to D indenting/formatting tool dfmt." single ((:commit . "21b9094e907b7ac53f5ecb4ff4539613a9d12434") (:keywords "tools" "convenience" "languages" "dlang") (:authors ("Per Nordlöw")) (:maintainer "Kirill Babikhin <qsimpleq>") (:url . "https://github.com/qsimpleq/elisp-dfmt"))]) (devdocs . [(20170731 850) nil "Launch DevDocs search" single ((:commit . "a2d51e824f0cc48a9dd611cc740bc8b86143e611") (:authors ("Chunyang Xu" . "xuchunyang.me@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang.me@gmail.com") (:url . "https://github.com/xuchunyang/DevDocs.el"))]) (desktop-registry . [(20140119 2143) nil "Keep a central registry of desktop files" single ((:commit . "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd") (:keywords "convenience") (:authors ("Tom Willemse" . "tom@ryuslash.org")) (:maintainer "Tom Willemse" . "tom@ryuslash.org") (:url . "http://projects.ryuslash.org/desktop-registry/"))]) (desktop-environment . [(20180423 853) ((emacs (25 1))) "Helps you control your GNU/Linux computer" single ((:commit . "62fbceded526b8e35c90803bcf80e33ebfe8473a") (:authors ("Damien Cassou" . "damien@cassou.me")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://gitlab.petton.fr/DamienCassou/desktop-environment"))]) (desktop+ . [(20170107 2132) ((emacs (24 4)) (dash (2 11 0)) (f (0 17 2))) "Handle special buffers when saving & restoring sessions" single ((:commit . "88055cee526a000056201898499cebbd35e3ea76") (:authors ("François Févotte" . "fevotte@gmail.com")) (:maintainer "François Févotte" . "fevotte@gmail.com") (:url . "https://github.com/ffevotte/desktop-plus"))]) (describe-number . [(20151101 55) ((yabin (1 1))) "Describe arbitrarily large number at point." single ((:commit . "40618345a37831804b29589849a785ef5aa5ac24") (:keywords "describe" "value" "help") (:authors ("Morten Slot Kristensen <msk AT nullpointer DOT dk>")) (:maintainer "Morten Slot Kristensen <msk AT nullpointer DOT dk>") (:url . "https://github.com/netromdk/describe-number"))]) (demo-it . [(20180404 332) nil "Create demonstrations" tar ((:commit . "4f74e6f1bb6519587303e20fe59470853b1a0352") (:keywords "demonstration" "presentation" "test") (:authors ("Howard Abrams" . "howard.abrams@gmail.com")) (:maintainer "Howard Abrams" . "howard.abrams@gmail.com"))]) (demangle-mode . [(20180516 245) ((cl-lib (0 1)) (emacs (24))) "Automatically demangle C++ symbols" single ((:commit . "a34b062c8a08d35fe2b9ee66e92f6f9626aae9a3") (:keywords "c" "tools") (:authors ("Ben Liblit" . "liblit@acm.org")) (:maintainer "Ben Liblit" . "liblit@acm.org") (:url . "https://github.com/liblit/demangle-mode"))]) (delim-kill . [(20100517 620) nil "Kill text between delimiters." single ((:commit . "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1") (:keywords "convenience" "languages") (:authors ("Thomas Kappler" . "tkappler@gmail.com")) (:maintainer "Thomas Kappler" . "tkappler@gmail.com") (:url . "http://github.com/thomas11/delim-kill/tree/master"))]) (deft . [(20181029 213) nil "quickly browse, filter, and edit plain text notes" single ((:commit . "47d268355b0d988804e19896770b29da7f01c7aa") (:keywords "plain text" "notes" "simplenote" "notational velocity") (:authors ("Jason R. Blevins" . "jrblevin@xbeta.org")) (:maintainer "Jason R. Blevins" . "jrblevin@xbeta.org") (:url . "https://jblevins.org/projects/deft/"))]) (defrepeater . [(20180830 410) ((emacs (25 2)) (s (1 12 0))) "Easily make commands repeatable" single ((:commit . "9c027a2561fe141dcfb79f75fcaee36cd0386ec1") (:keywords "convenience") (:authors ("Adam Porter" . "adam@alphapapa.net")) (:maintainer "Adam Porter" . "adam@alphapapa.net") (:url . "http://github.com/alphapapa/defrepeater.el"))]) (defproject . [(20151201 2219) ((emacs (24))) "Manager dir-locals and project specific variables" single ((:commit . "674d48a5e34cb4bba76faa38ee901322ec649086") (:keywords "convenience") (:authors (nil . "<kotfic@gmail.com>")) (:maintainer nil . "<kotfic@gmail.com>") (:url . "https://github.com/kotfic/defproject"))]) (define-word . [(20180706 2029) ((emacs (24 3))) "display the definition of word at point." single ((:commit . "637cd29837d4bd5567e17a11a479fd2edfb0e2c1") (:keywords "dictionary" "convenience") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/define-word"))]) (deferred . [(20170901 1330) ((emacs (24 4))) "Simple asynchronous functions for emacs lisp" single ((:commit . "2239671d94b38d92e9b28d4e12fd79814cfb9c16") (:keywords "deferred" "async") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>") (:url . "https://github.com/kiwanami/emacs-deferred"))]) (default-text-scale . [(20180521 649) nil "Easily adjust the font size in all frames" single ((:commit . "512d701df5e2079cad33329184fd7683c3b0b0af") (:keywords "frames" "faces") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/default-text-scale"))]) (dedukti-mode . [(20171103 1212) nil "Major mode for Dedukti files" single ((:commit . "d7c3505a1046187de3c3aeb144455078d514594e") (:keywords "languages" "dedukti") (:authors ("Raphaël Cauderlier")) (:maintainer "Raphaël Cauderlier") (:url . "https://github.com/rafoo/dedukti-mode"))]) (dedicated . [(20090428 1931) nil "A very simple minor mode for dedicated buffers" single ((:commit . "8275fb672f9cc4ba6682ebda0ef91db827e32992") (:keywords "dedicated" "buffer") (:authors ("Eric Crampton" . "eric@atdesk.com")) (:maintainer "Eric Crampton" . "eric@atdesk.com"))]) (decl . [(20171212 1458) ((dash (2 5 0)) (emacs (24 3)) (cl-lib (0 3))) "Library for organizing code declaratively" single ((:commit . "ff7f8a4f1225cbdf141c86172104e67a4cf58c86") (:authors ("Preetpal S. Sohal")) (:maintainer "Preetpal S. Sohal") (:url . "https://github.com/preetpalS/decl.el"))]) (decide . [(20180316 1801) nil "rolling dice and other random things" single ((:commit . "257f0e39ac60ca375942950b44eeaee04cb9d961") (:authors ("Pelle Nilsson" . "perni@lysator.liu.se")) (:maintainer "Pelle Nilsson" . "perni@lysator.liu.se"))]) (debug-print . [(20140126 19) ((emacs (24))) "A nice printf debugging environment by the way Gauche do" single ((:commit . "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5") (:keywords "extensions" "lisp" "tools" "maint") (:authors ("Ken Okada" . "keno.ss57@gmail.com")) (:maintainer "Ken Okada" . "keno.ss57@gmail.com") (:url . "https://github.com/kenoss/debug-print"))]) (debpaste . [(20160113 2347) ((xml-rpc (1 6 7))) "Interface for getting/posting/deleting pastes from paste.debian.net" single ((:commit . "6f2a400665062468ebd03a2ce1de2a73d9084958") (:keywords "paste") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "http://github.com/alezost/debpaste.el"))]) (debian-el . [(20181020 1513) nil "Emacs helpers specific to Debian users" tar ((:commit . "a499822afc2154ca83edf6a605ed22c5a932fa12"))]) (deadgrep . [(20181021 1349) ((emacs (25 1)) (dash (2 12 0)) (s (1 11 0)) (spinner (1 7 3))) "fast, friendly searching with ripgrep" single ((:commit . "4e177d7c540f0a6d317f08a15dcfec6ba97609fc") (:keywords "tools") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk") (:url . "https://github.com/Wilfred/deadgrep"))]) (ddskk . [(20180707 532) ((ccc (1 43)) (cdb (20141201 754))) "Simple Kana to Kanji conversion program." tar ((:commit . "b05c610e27b86e71fb4e8d67292ef6a696dd5992"))]) (db-pg . [(20130131 1902) ((pg (0 12)) (db (0 0 6))) "A PostgreSQL adapter for emacs-db" single ((:commit . "7d5ab86b74b05fe003b3b434d4835f37f3f3eded") (:keywords "data" "comm" "database" "postgresql") (:authors ("Nic Ferrier" . "nic@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nic@ferrier.me.uk"))]) (db . [(20140421 2111) ((kv (0 0 11))) "A database for EmacsLisp" single ((:commit . "b3a423fb8e72f9013009cbe033d654df2ce31438") (:keywords "data" "lisp") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk"))]) (dayone . [(20160105 1240) ((uuid (0 0 3)) (mustache (0 22)) (ht (1 5))) "Utility script for Day One" tar ((:commit . "ab628274f0806451f23bce16f62a6a11cbf91a2b") (:keywords "day one" "tools" "convenience") (:authors ("mori-dev" . "mori.dev.asdf@gmail.com")) (:maintainer "mori-dev" . "mori.dev.asdf@gmail.com") (:url . "https://github.com/mori-dev/emacs-dayone"))]) (datomic-snippets . [(20180817 1045) ((s (1 4 0)) (dash (1 2 0)) (yasnippet (0 6 1))) "Yasnippets for Datomic" tar ((:commit . "4a14228840d5252e13d2bf6209670f26345bbb84"))]) (datetime-format . [(20160612 1715) nil "Datetime functions" single ((:commit . "e6427538b547cbe02e1bd6ed4b765c73620bdae8") (:keywords "datetime" "calendar") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/emacs-datetime"))]) (datetime . [(20181021 1750) ((emacs (24 1)) (extmap (1 0))) "Parsing, formatting and matching timestamps" tar ((:commit . "178befd4881f407ad97c05fadb74589ade7297f2") (:keywords "lisp" "i18n") (:authors ("Paul Pogonyshev" . "pogonyshev@gmail.com")) (:maintainer "Paul Pogonyshev" . "pogonyshev@gmail.com") (:url . "https://github.com/doublep/datetime"))]) (date-field . [(20141129 105) ((dash (2 9 0)) (log4e (0 2 0)) (yaxception (0 3 2))) "Date widget" single ((:commit . "11c9170d1f7b343233f7716d4c0a62be024c1654") (:keywords "widgets") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-date-field"))]) (date-at-point . [(20150308 1243) nil "Add `date' to `thing-at-point' function" single ((:commit . "38df823d05df08ec0748a4185113fae5f99090e9") (:keywords "convenience") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/date-at-point.el"))]) (dashboard . [(20180902 1848) ((emacs (24 4)) (page-break-lines (0 11))) "A startup screen extracted from Spacemacs" tar ((:commit . "caef4564d50cc00b748d98f6180f26d4036cc8c6") (:keywords "startup" "screen" "tools") (:authors ("Rakan Al-Hneiti")) (:maintainer "Rakan Al-Hneiti") (:url . "https://github.com/rakanalh/emacs-dashboard"))]) (dash-functional . [(20180107 1618) ((dash (2 0 0)) (emacs (24))) "Collection of useful combinators for Emacs Lisp" single ((:commit . "6514359b8606a6a9a94068ccd601fcd6379d6584") (:keywords "lisp" "functions" "combinators"))]) (dash-at-point . [(20180710 1356) nil "Search the word at point with Dash" single ((:commit . "4d795a23a8428c421d5107f1b005c9d8e0d1816c") (:authors ("Shinji Tanaka" . "shinji.tanaka@gmail.com")) (:maintainer "Shinji Tanaka" . "shinji.tanaka@gmail.com") (:url . "https://github.com/stanaka/dash-at-point"))]) (dash . [(20180910 1856) nil "A modern list library for Emacs" single ((:commit . "6514359b8606a6a9a94068ccd601fcd6379d6584") (:keywords "lists") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (dart-mode . [(20181012 346) ((emacs (24 5)) (cl-lib (0 5)) (dash (2 10 0)) (flycheck (0 23)) (s (1 10))) "Major mode for editing Dart files" single ((:commit . "5d0a7cd09305d2dc4584e72a008db3f099228000") (:keywords "language") (:authors ("Natalie Weizenbaum")) (:maintainer "Natalie Weizenbaum") (:url . "https://github.com/nex3/dart-mode"))]) (darktooth-theme . [(20181013 906) ((autothemer (0 2))) "From the darkness... it watches" single ((:commit . "780f9e25ae4abccab4e053f2caba7add4bc9d3be") (:url . "http://github.com/emacsfodder/emacs-theme-darktooth"))]) (darkokai-theme . [(20181019 1859) nil "A darker variant on Monokai." single ((:commit . "b887fc6080f8e021058bff7f53fad84c82c81a7a") (:url . "http://github.com/sjrmanning/darkokai"))]) (darkmine-theme . [(20160406 624) nil "Yet another emacs dark color theme." single ((:commit . "7f7e82ca03bcad52911fa41fb3e204e32d6ee63e") (:authors ("Pierre Lecocq" . "pierre.lecocq@gmail.com")) (:maintainer "Pierre Lecocq" . "pierre.lecocq@gmail.com") (:url . "https://github.com/pierre-lecocq/darkmine-theme"))]) (darkburn-theme . [(20170423 1652) nil "A not-so-low contrast color theme for Emacs." single ((:commit . "0af794ff7fac19778ac8a7efb92455c6f6c2158f") (:authors ("Jonas Gorauskas" . "jgorauskas@gmail.com")) (:maintainer "Jonas Gorauskas" . "jgorauskas@gmail.com") (:url . "http://github.com/gorauskas/darkburn-theme"))]) (dark-souls . [(20140314 1128) nil "Prepare to die" single ((:commit . "94122b1215423e58dcf18584a2bd022029d54d4b") (:keywords "games") (:authors ("Tom Jakubowski" . "tom@crystae.net")) (:maintainer "Tom Jakubowski" . "tom@crystae.net") (:url . "http://github.com/tomjakubowski/dark-souls.el"))]) (dark-mint-theme . [(20160302 642) nil "dark & minty fresh theme" single ((:commit . "95c30a26de31549cd341184ba9ab2be8fdc67eba"))]) (dark-krystal-theme . [(20170808 1300) ((emacs (24 0))) "an Emacs 24 theme based on Dark Krystal (tmTheme)" single ((:commit . "79084b99665dc9ffb0ec62cc092349a5ecebebbc") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (darcula-theme . [(20171227 1845) nil "Inspired by IntelliJ's Darcula theme" single ((:commit . "d9b82b58ded9014985be6658f4ab17e26ed9e93e") (:keywords "faces") (:authors ("Sam Halliday" . "Sam.Halliday@gmail.com")) (:maintainer "Sam Halliday" . "Sam.Halliday@gmail.com") (:url . "https://gitlab.com/fommil/emacs-darcula-theme"))]) (darcsum . [(20140316 410) nil "a pcl-cvs like interface for managing darcs patches" tar ((:commit . "00c252b51cb24c25fb74f529960ebd631514a4c1") (:keywords "completion" "convenience" "tools" "vc") (:authors ("John Wiegley" . "johnw@gnu.org")) (:maintainer "John Wiegley" . "johnw@gnu.org"))]) (dap-mode . [(20181026 1913) ((emacs (25 1)) (dash (2 14 1)) (lsp-mode (4 0)) (dash-functional (1 2 0)) (tree-mode (1 1 1 1)) (bui (1 1 0)) (f (0 20 0)) (s (1 12 0))) "Debug Adapter Protocol mode" tar ((:commit . "c99258d944f877bcf778375511582c852e4f3e76") (:keywords "languages" "debug") (:authors ("Ivan Yonchovski" . "yyoncho@gmail.com")) (:maintainer "Ivan Yonchovski" . "yyoncho@gmail.com") (:url . "https://github.com/yyoncho/dap-mode"))]) (dante . [(20180916 729) ((dash (2 12 0)) (emacs (25 1)) (f (0 19 0)) (flycheck (0 30)) (haskell-mode (13 14)) (s (1 11 0)) (lcr (1 0))) "Development mode for Haskell" single ((:commit . "f16562abe570f5ca0e7abbf8c7058c81976a921f") (:keywords "haskell" "tools") (:authors ("Jean-Philippe Bernardy" . "jeanphilippe.bernardy@gmail.com")) (:maintainer "Jean-Philippe Bernardy" . "jeanphilippe.bernardy@gmail.com") (:url . "https://github.com/jyp/dante"))]) (danneskjold-theme . [(20181101 757) nil "Beautiful high-contrast Emacs theme." tar ((:commit . "5c55c2ced259e8bbf658b23fc0cb74946caa009e"))]) (dakrone-theme . [(20170801 1933) nil "dakrone's custom dark theme" single ((:commit . "232ad1be5f3572dcbdf528f1655109aa355a6937") (:keywords "color" "themes") (:authors ("Lee Hinman <lee _AT_ writequit.org>")) (:maintainer "Lee Hinman <lee _AT_ writequit.org>") (:url . "https://github.com/dakrone/dakrone-theme"))]) (dakrone-light-theme . [(20170808 2140) nil "dakrone's custom light theme" single ((:commit . "06f198dc8b4ca7421990b30a23d89c8e0b8c5de4") (:keywords "color" "themes" "faces") (:authors ("Lee Hinman <lee _AT_ writequit.org>")) (:maintainer "Lee Hinman <lee _AT_ writequit.org>") (:url . "https://github.com/dakrone/dakrone-light-theme"))]) (daemons . [(20180610 1510) ((emacs (25 1))) "UI for managing init system daemons (services)" tar ((:commit . "dcf42cb3178d7245d6d49de346d5e2b44e5b7498") (:keywords "unix" "convenience") (:authors ("Chris Bowdon")) (:maintainer "Chris Bowdon") (:url . "https://github.com/cbowdon/daemons.el"))]) (dad-joke . [(20170928 658) ((emacs (24))) "Get/display dad jokes" single ((:commit . "bee47e7b746b403228fa7d7361cb095de19ac9ba") (:keywords "games") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/dad-joke.el"))]) (dactyl-mode . [(20140906 1725) nil "Major mode for editing Pentadactyl config files" single ((:commit . "cc55fe6b987271d9647492b8df4c812d884f661f") (:keywords "languages" "vim") (:url . "https://github.com/luxbock/dactyl-mode"))]) (d-mode . [(20181011 1927) ((emacs (24 3))) "D Programming Language major mode for (X)Emacs" single ((:commit . "385cda4afad79000b4cb7704861faf34009b0fc2") (:keywords "d" "programming" "language" "emacs" "cc-mode") (:authors ("William Baxter")) (:maintainer "Russel Winder" . "russel@winder.org.uk"))]) (czech-holidays . [(20160113 1752) nil "Adds a list of Czech public holidays to Emacs calendar" single ((:commit . "d136fa09a152b3cd80db6d55c7b4ddfe07b90fbf") (:keywords "calendar") (:authors ("David Chkhikvadze" . "david.chk@outlook.com")) (:maintainer "David Chkhikvadze" . "david.chk@outlook.com"))]) (cython-mode . [(20180213 1654) nil "Major mode for editing Cython files" single ((:commit . "f158e490b9e8515cf47cf301f996c1b7e631eebb"))]) (cypher-mode . [(20151110 1142) nil "major mode for editing cypher scripts" single ((:commit . "ce8543d7877c736c574a17b49874c9dcdc7a06d6") (:keywords "cypher" "graph") (:authors ("François-Xavier Bois <fxbois AT Google Mail Service>")) (:maintainer "François-Xavier Bois") (:url . "http://github.com/fxbois/cypher-mode"))]) (cyphejor . [(20180101 618) ((emacs (24 4))) "Shorten major mode names using user-defined rules" single ((:commit . "df449180d28691c9bdbef7bcb25aee75b2af50ca") (:keywords "mode-line" "major-mode") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/cyphejor"))]) (cycle-themes . [(20150403 309) ((cl-lib (0 5))) "A global minor mode to make switching themes easier" single ((:commit . "6e125d11fdbc6b78fc9f219eb2609a5e29815898") (:keywords "themes" "utility" "global minor mode") (:url . "http://github.com/toroidal-code/cycle-themes.el"))]) (cycle-resize . [(20160521 1557) nil "Cycle resize the current window horizontally or vertically" single ((:commit . "7d255d6fe85f12c967a0f7fcfcf18633be194c88") (:authors ("Pierre Lecocq")) (:maintainer "Pierre Lecocq") (:url . "https://github.com/pierre-lecocq/cycle-resize"))]) (cycbuf . [(20131203 2037) nil "Cycle buffers, inspired by swbuff.el, swbuff-x.el, and bs.el" single ((:commit . "1079b41c3eb27d65b66d4399959bb6253f84858e") (:keywords "files" "convenience" "buffer switching") (:authors ("Martin Pohlack martinp (at) gmx.de")) (:maintainer "Martin Pohlack martinp (at) gmx.de") (:url . "https://github.com/martinp26/cycbuf"))]) (cyberpunk-theme . [(20180609 509) nil "Cyberpunk Color Theme" single ((:commit . "f8967e46b8bdb3eaf7b72474f2d70997dc1152e9") (:keywords "color" "theme" "cyberpunk") (:authors ("Nicholas M. Van Horn" . "nvanhorn@protonmail.com")) (:maintainer "Nicholas M. Van Horn" . "nvanhorn@protonmail.com"))]) (cwl-mode . [(20171205 945) ((yaml-mode (0 0 13)) (emacs (24 4))) "A major mode for editing CWL" single ((:commit . "bdeb9c0734126f940db80bfb8b1dc735dab671c7") (:keywords "languages" "cwl" "common workflow language") (:authors ("Tomoya Tanjo" . "ttanjo@gmail.com")) (:maintainer "Tomoya Tanjo" . "ttanjo@gmail.com") (:url . "https://github.com/tom-tan/cwl-mode"))]) (cursor-test . [(20131207 1732) ((emacs (24))) "testing library for cursor position in emacs." single ((:commit . "e09956e048b88fd2ee8dd90b5678baed8b04d31b") (:authors ("ainame")) (:maintainer "ainame") (:url . "https://github.com/ainame/cursor-test.el"))]) (cuda-mode . [(20151214 321) nil "NVIDIA CUDA Major Mode" single ((:commit . "9ae9eacfdba3559b5456342d0d03296290df8ff5") (:keywords "c" "languages") (:authors ("Jack Morrison" . "jackmorrison1@gmail.com")) (:maintainer "Jack Morrison" . "jackmorrison1@gmail.com"))]) (cucumber-goto-step . [(20131210 519) ((pcre2el (1 5))) "Jump to cucumber step definition" single ((:commit . "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa") (:authors ("Glen Stampoultzis" . "gstamp@gmail.com")) (:maintainer "Glen Stampoultzis" . "gstamp@gmail.com") (:url . "http://orthogonal.me"))]) (cubicle-mode . [(20171009 1957) nil "Major mode for the Cubicle model checker" single ((:commit . "c2fba597da83b9ddc1195f1c8710d5330db24735") (:authors ("Alain Mebsout")) (:maintainer "Alain Mebsout"))]) (cubicaltt . [(20171108 1402) ((emacs (24 1)) (cl-lib (0 5))) "Mode for cubical type theory" single ((:commit . "a5c6f94bfc0da84e214641e0b87aa9649ea114ea") (:keywords "languages") (:url . "https://github.com/mortberg/cubicaltt"))]) (ctxmenu . [(20140303 2142) ((popup (20140205 103)) (log4e (0 2 0)) (yaxception (0 1))) "Provide a context menu like right-click." tar ((:commit . "5c2376859562b98c07c985d2b483658e4c0e888e") (:keywords "popup") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-ctxmenu"))]) (ctl-mode . [(20151202 1006) nil "Major mode for editing GrADS script files" single ((:commit . "1a13051db21b999c7682a015b33a03096ff9d891") (:keywords "grads" "script" "major-mode") (:authors ("Joe Wielgosz" . "joew@cola.iges.org")) (:maintainer "Joe Wielgosz" . "joew@cola.iges.org"))]) (ctags-update . [(20170728 758) nil "(auto) update TAGS in parent directory using exuberant-ctags" single ((:commit . "783bf91eba1cd27cbb739067a24e15e5e04564e6") (:keywords "exuberant-ctags" "etags") (:authors (nil . "Joseph(纪秀峰)  jixiuf@gmail.com")) (:maintainer nil . "Joseph(纪秀峰)  jixiuf@gmail.com") (:url . "https://github.com/jixiuf/ctags-update"))]) (ctable . [(20171006 11) nil "Table component for Emacs Lisp" single ((:commit . "b8830d1ca95abb100a81bc32011bd17d5ecba000") (:keywords "table") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>") (:url . "https://github.com/kiwanami/emacs-ctable"))]) (csv . [(20161113 1510) nil "Functions for reading and parsing CSV files." single ((:commit . "aa1dfa1263565d5fac3879c21d8ddf5f8915e411") (:keywords "extensions" "data" "csv") (:authors ("Ulf Jasper" . "ulf.jasper@web.de")) (:maintainer "Ulf Jasper" . "ulf.jasper@web.de"))]) (cssh . [(20150810 1709) nil "clusterssh implementation for emacs" single ((:commit . "2fe2754235225a59b63f08b130cfd4352e2e1c3f") (:keywords "clusterssh" "ssh" "cssh") (:authors ("Dimitri Fontaine" . "dim@tapoueh.org")) (:maintainer "Dimitri Fontaine" . "dim@tapoueh.org") (:url . "http://tapoueh.org/emacs/cssh.html"))]) (css-eldoc . [(20150125 323) nil "an eldoc-mode plugin for CSS source code" tar ((:commit . "c558ac4c470742c98a37290e6b409db28183df30") (:authors ("Zeno Zeng" . "zenoes@qq.com")) (:maintainer "Zeno Zeng" . "zenoes@qq.com"))]) (css-comb . [(20160416 559) nil "Sort CSS properties in a particular order using CSS Comb" single ((:commit . "6fa45e5af8a8bd3af6c1154cde3540e32c4206ee") (:authors ("Charanjit Singh" . "ckhabra@gmail.com")) (:maintainer "Charanjit Singh" . "ckhabra@gmail.com") (:url . "https://github.com/channikhabra/css-comb.el"))]) (css-autoprefixer . [(20180311 1600) ((emacs (24))) "Adds autoprefix to CSS" single ((:commit . "386a5defc8543a3b87820f1761c075c7d1d93b38") (:keywords "convenience" "usability" "css") (:authors (nil . "Kyung Mo Kweon<kkweon@gmail.com> and contributors")) (:maintainer nil . "Kyung Mo Kweon<kkweon@gmail.com> and contributors") (:url . "https://github.com/kkweon/emacs-css-autoprefixer"))]) (csound-mode . [(20180925 1814) ((emacs (25)) (shut-up (0 3 2)) (multi (2 0 1))) "A major mode for interacting and coding Csound" tar ((:commit . "9bc2d0badf8316cca2d167348bb81a82e34297c8") (:authors ("Hlöðver Sigurðsson" . "hlolli@gmail.com")) (:maintainer "Hlöðver Sigurðsson" . "hlolli@gmail.com") (:url . "https://github.com/hlolli/csound-mode"))]) (csharp-mode . [(20181011 718) nil "C# mode derived mode" single ((:commit . "239527c1f27cf5246505f1faf23269487fdbfdd2") (:keywords "c#" "languages" "oop" "mode") (:authors ("Dylan R. E. Moonfire (original)")) (:maintainer "Jostein Kjønigsen" . "jostein@gmail.com") (:url . "https://github.com/josteink/csharp-mode"))]) (csgo-conf-mode . [(20161209 1619) nil "CS:GO Configuration files syntax highlighting" single ((:commit . "57e7224f87a3ccc76b5564cc95fa0ff43bb6807c") (:keywords "languages") (:authors ("Guillermo Robles" . "guillerobles1995@gmail.com")) (:maintainer "Guillermo Robles" . "guillerobles1995@gmail.com") (:url . "https://github.com/wynro/emacs-csgo-conf-mode"))]) (crystal-playground . [(20180830 501) ((emacs (25)) (crystal-mode (0 1 2))) "Local crystal playground for short code snippets." single ((:commit . "fb3691b1281207b459c5be50015a626f356dc40d") (:keywords "tools" "crystal") (:authors ("Jason Howell")) (:maintainer "Jason Howell") (:url . "https://github.com/jasonrobot/crystal-playground"))]) (crystal-mode . [(20180827 329) ((emacs (24 4))) "Major mode for editing Crystal files" single ((:commit . "8649736fea8960a5e54c3ec934484f231a518ea5") (:keywords "languages" "crystal") (:url . "https://github.com/crystal-lang-tools/emacs-crystal-mode"))]) (cryptsy-public-api . [(20141008 1228) ((json (1 2))) "Library for working with the Cryptsy public API" single ((:commit . "795c204452f880c0087663e7c35faf26ea34af4d") (:keywords "cryptsy" "bitcoin" "litecoin" "dogecoin") (:authors ("Phil Newton" . "phil@sodaware.net")) (:maintainer "Phil Newton" . "phil@sodaware.net"))]) (cryptol-mode . [(20180321 1808) nil "Cryptol major mode for Emacs" single ((:commit . "91f8ad617e5db2fad57a7be1da211f22f3b51550") (:keywords "cryptol" "cryptography") (:authors (nil . "Austin Seipp <aseipp [@at] pobox [dot] com>")) (:maintainer nil . "Austin Seipp <aseipp [@at] pobox [dot] com>") (:url . "http://github.com/thoughtpolice/cryptol-mode"))]) (crux . [(20181108 827) ((seq (1 11))) "A Collection of Ridiculously Useful eXtensions" single ((:commit . "308f17d914e2cd79cbc809de66d02b03ceb82859") (:keywords "convenience") (:authors ("Bozhidar Batsov" . "bozhidar@batsov.com")) (:maintainer "Bozhidar Batsov" . "bozhidar@batsov.com") (:url . "https://github.com/bbatsov/crux"))]) (crm-custom . [(20160117 6) ((cl-lib (0 5))) "Alternate `completing-read-multiple' that uses `completing-read'" single ((:commit . "f1aaccf64306a5f99d9bf7ba815d7ea41c15518d") (:keywords "completion" "minibuffer" "multiple elements") (:authors ("Ryan C. Thompson" . "rct@thompsonclan.org")) (:maintainer "Ryan C. Thompson" . "rct@thompsonclan.org") (:url . "https://github.com/DarwinAwardWinner/crm-custom"))]) (cricbuzz . [(20180804 2254) ((enlive (0 0 1)) (f (0 19 0)) (dash (2 13 0)) (s (1 11 0))) "Cricket scores from cricbuzz in emacs" single ((:commit . "0b95d45991bbcd2fa58d96ce921f6a57ba42c153") (:keywords "cricket" "score") (:authors ("Abhinav Tushar" . "abhinav.tushar.vs@gmail.com")) (:maintainer "Abhinav Tushar" . "abhinav.tushar.vs@gmail.com") (:url . "https://github.com/lepisma/cricbuzz.el"))]) (creole-mode . [(20130722 50) nil "a markup mode for creole" single ((:commit . "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4") (:keywords "hypermedia" "wp") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk") (:url . "https://github.com/nicferrier/creole-mode"))]) (creole . [(20140924 1500) ((noflet (0 0 3)) (kv (0 0 17))) "A parser for the Creole Wiki language" single ((:commit . "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53") (:keywords "lisp" "creole" "wiki") (:authors ("Nic Ferrier" . "nferrier@ferrier.me.uk")) (:maintainer "Nic Ferrier" . "nferrier@ferrier.me.uk"))]) (creds . [(20140510 1706) ((s (1 9 0)) (dash (2 5 0))) "A parser credentials file library (not limited to credentials entries)" tar ((:commit . "b059397a7d59481f05fbb1bb9c8d3c2c69226482"))]) (creamsody-theme . [(20170222 1058) ((autothemer (0 2))) "Straight from the soda fountain." single ((:commit . "32fa3f4e461da92700523b1b20e7b28974c19a26") (:url . "http://github.com/emacsfodder/emacs-theme-creamsody"))]) (crappy-jsp-mode . [(20140311 931) nil "A pretty crappy major-mode for jsp." single ((:commit . "6c45ab92b452411cc0fab9bcee2f456276b4fc40") (:keywords "jsp" "major" "mode"))]) (cquery . [(20180811 2131) ((emacs (25 1)) (lsp-mode (3 4)) (dash (0 13))) "cquery client for lsp-mode" tar ((:commit . "a803e92e77e1ffc74c13a753c1eb4f6f47127a97") (:keywords "languages" "lsp" "c++") (:authors ("Tobias Pisani")) (:maintainer "Tobias Pisani") (:url . "https://github.com/jacobdufault/cquery"))]) (cql-mode . [(20160721 339) ((emacs (24))) "Major mode for editting CQLs" single ((:commit . "2529ade55c125a89d8215f096a74733a90611c5d") (:keywords "cql" "cassandra") (:authors ("Yuki Inoue <inouetakahiroki at gmail.com>")) (:maintainer "Yuki Inoue <inouetakahiroki at gmail.com>") (:url . "https://github.com/Yuki-Inoue/cql-mode"))]) (cpputils-cmake . [(20181006 328) nil "Easy realtime C++ syntax check and IntelliSense with CMake." single ((:commit . "64b2b05eff5398b4cd522e66efaf14553ab18ff4") (:keywords "cmake" "intellisense" "flymake" "flycheck") (:authors ("Chen Bin" . "chenbin.sh@gmail.com")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "http://github.com/redguardtoo/cpputils-cmake"))]) (cpanfile-mode . [(20161001 710) ((emacs (24 4))) "Major mode for cpanfiles" single ((:commit . "eda675703525198df1f76ddf250bffa40217ec5d") (:keywords "perl") (:authors ("Zak B. Elep" . "zakame@zakame.net")) (:maintainer "Zak B. Elep" . "zakame@zakame.net") (:url . "https://github.com/zakame/cpanfile-mode"))]) (cp5022x . [(20120323 2335) nil "cp50220, cp50221, cp50222 coding system" single ((:commit . "ea7327dd75e54539576916f592ae1be98179ae35") (:keywords "languages" "cp50220" "cp50221" "cp50222" "cp51932" "cp932") (:authors ("ARISAWA Akihiro" . "ari@mbf.ocn.ne.jp")) (:maintainer "ARISAWA Akihiro" . "ari@mbf.ocn.ne.jp"))]) (coverlay . [(20180518 2255) ((emacs (24 1)) (cl-lib (0 5))) "Test coverage overlays" single ((:commit . "8205a845d58755dd7640b2e2b5991bf842998935") (:keywords "coverage" "overlay") (:authors ("Takuto Wada <takuto.wada at gmail com>")) (:maintainer "Takuto Wada <takuto.wada at gmail com>") (:url . "https://github.com/twada/coverlay.el"))]) (coverage . [(20180227 457) ((ov (1 0)) (cl-lib (0 5))) "Code coverage line highlighting" single ((:commit . "c73d984168955ca0f47f44b0464aa45282df42b6") (:keywords "coverage" "metrics" "simplecov" "ruby" "rspec") (:authors ("Kieran Trezona-le Comte" . "trezona.lecomte@gmail.com")) (:maintainer "Kieran Trezona-le Comte" . "trezona.lecomte@gmail.com") (:url . "https://github.com/trezona-lecomte/coverage"))]) (cov . [(20180415 2031) ((emacs (24 4)) (f (0 18 2)) (s (1 11 0)) (elquery (0))) "Show coverage stats in the fringe." single ((:commit . "7c72a949b9628296af97cc7e4df0af6c3824d66e") (:keywords "coverage" "gcov" "c") (:authors ("Adam Niederer")) (:maintainer "Adam Niederer") (:url . "https://github.com/AdamNiederer/cov"))]) (counsel-world-clock . [(20171202 737) ((ivy (0 9 0)) (s (1 12 0))) "Display world clock using Ivy." single ((:commit . "04153fbb21e51b1cfd042bdfc6ed1e8355a1edd7") (:authors ("Kuang Chen <http://github.com/kchenphy>")) (:maintainer "Kuang Chen <http://github.com/kchenphy>") (:url . "https://github.com/kchenphy/counsel-world-clock"))]) (counsel-tramp . [(20180911 157) ((emacs (24 3)) (counsel (0 10))) "Tramp ivy interface for ssh, docker, vagrant" single ((:commit . "d44b986135fc09c8feefdba3caa55cc59cefc1e8") (:authors ("Masashı Mıyaura")) (:maintainer "Masashı Mıyaura") (:url . "https://github.com/masasam/emacs-counsel-tramp"))]) (counsel-spotify . [(20180320 322) ((emacs (25)) (ivy (0 9 0))) "Control Spotify search and select music with Ivy." single ((:commit . "9033e207dccdfea7fe590d2e102d50fcd2bd22e3") (:authors ("Lautaro García <https://github.com/Lautaro-Garcia>")) (:maintainer "Lautaro García <https://github.com/Lautaro-Garcia>"))]) (counsel-pydoc . [(20171018 2042) ((emacs (24 3)) (ivy (0 9 1))) "run pydoc with counsel" single ((:commit . "1d8ff8ca3b9d69453cde423b1887fbb490a95c9e") (:keywords "completion" "matching") (:authors (nil . "Hao Deng(denghao8888@gmail.com)")) (:maintainer nil . "Hao Deng(denghao8888@gmail.com)") (:url . "https://github.com/co-dh/pydoc_utils"))]) (counsel-projectile . [(20181020 1906) ((counsel (0 10 0)) (projectile (1 0 0))) "Ivy integration for Projectile" single ((:commit . "7607fb8bb4eb7fbe0ec20f9644b6bbaa5c363330") (:keywords "project" "convenience") (:authors ("Eric Danan")) (:maintainer "Eric Danan") (:url . "https://github.com/ericdanan/counsel-projectile"))]) (counsel-osx-app . [(20160821 809) ((ivy (0 8 0)) (emacs (24 3))) "launch osx applications via ivy interface" single ((:commit . "b1c54cbc033c4939966910d85ce035503079e108") (:authors ("Boris Buliga" . "d12frosted@gmail.com")) (:maintainer "Boris Buliga" . "d12frosted@gmail.com") (:url . "https://github.com/d12frosted/counsel-osx-app"))]) (counsel-org-clock . [(20180623 1317) ((emacs (24 3)) (ivy (0 10 0)) (dash (2 0))) "Counsel commands for org-clock" single ((:commit . "960c919ed730f95b740cc6b3b9c17e0e1765d7d8") (:authors ("Akira Komamura" . "akira.komamura@gmail.com")) (:maintainer "Akira Komamura" . "akira.komamura@gmail.com") (:url . "https://github.com/akirak/counsel-org-clock"))]) (counsel-org-capture-string . [(20180816 724) ((emacs (25 1)) (ivy (0 10))) "Counsel for org-capture-string" single ((:commit . "0fd5d72397a9268a89dd26de2a6c355f127453ac") (:keywords "outlines") (:authors ("Akira Komamura" . "akira.komamura@gmail.com")) (:maintainer "Akira Komamura" . "akira.komamura@gmail.com") (:url . "https://github.com/akirak/counsel-org-capture-string"))]) (counsel-notmuch . [(20180714 40) ((emacs (24)) (ivy (0 10 0)) (notmuch (0 21)) (s (1 12 0))) "Search emails in Notmuch asynchronously with Ivy" single ((:commit . "f4c864eca400abe0bb7420bcee80f2f8259ca0ff") (:keywords "mail") (:authors ("Alexander Fu Xi" . "fuxialexander@gmail.com")) (:maintainer "Alexander Fu Xi" . "fuxialexander@gmail.com") (:url . "https://github.com/fuxialexander/counsel-notmuch"))]) (counsel-gtags . [(20170326 1259) ((emacs (24 3)) (counsel (0 8 0))) "ivy for GNU global" single ((:commit . "220ebb48419ee6891ecbf9ea8fe130b494b17ee2") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-counsel-gtags"))]) (counsel-etags . [(20181119 1135) ((emacs (24 4)) (counsel (0 9 1))) "Fast and complete Ctags/Etags solution using ivy" tar ((:commit . "ccbfe83926f989e67bf84ee46f825bb1194fffef") (:keywords "tools" "convenience") (:authors ("Chen Bin" . "chenbin.sh@gmail.com")) (:maintainer "Chen Bin" . "chenbin.sh@gmail.com") (:url . "http://github.com/redguardtoo/counsel-etags"))]) (counsel-dash . [(20160729 1529) ((emacs (24 4)) (dash (2 12 1)) (dash-functional (1 2 0)) (helm-dash (1 3 0)) (counsel (0 8 0))) "Browse dash docsets using Ivy" single ((:commit . "07fa74a94ff4da5b6c8c4810f5e143e701b480d2") (:keywords "dash" "ivy" "counsel") (:authors ("Nathan Kot" . "nk@nathankot.com")) (:maintainer "Nathan Kot" . "nk@nathankot.com") (:url . "https://github.com/nathankot/counsel-dash"))]) (counsel-css . [(20180302 1036) ((emacs (24 4)) (counsel (0 7 0)) (cl-lib (0 5))) "stylesheet-selector-aware swiper" single ((:commit . "0536af00236cdce1ed08b40dd46c917e8b4b8869") (:keywords "convenience" "tools" "counsel" "swiper" "selector" "css" "less" "scss") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/emacs-counsel-css"))]) (counsel-codesearch . [(20180925 803) ((codesearch (1)) (counsel (0 10 0)) (emacs (24)) (ivy (0 10 0))) "Counsel interface for codesearch.el" single ((:commit . "b7989fad3e06f301c31d5e896c42b6cc549a0e0c") (:keywords "tools") (:authors ("Austin Bingham" . "austin.bingham@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/emacs-counsel-codesearch"))]) (counsel-bbdb . [(20171130 137) ((ivy (0 8 0)) (emacs (24 3))) "Quick search&input email from BBDB based on ivy" single ((:commit . "c86f4b9ef99c9db0b2c4196a300d61300dc2d0c1") (:keywords "mail" "abbrev" "convenience" "matching") (:authors ("Chen Bin <chenbin.sh AT gmail>")) (:maintainer "Chen Bin <chenbin.sh AT gmail>") (:url . "https://github.com/redguard/counsel-bbdb"))]) (counsel . [(20181120 1844) ((emacs (24 3)) (swiper (0 9 0))) "Various completion functions using Ivy" single ((:commit . "18019278d2b849b1287d299a894a4b98c9707ba2") (:keywords "convenience" "matching" "tools") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/swiper"))]) (cosmo . [(20170922 744) ((emacs (24 4))) "Cosmological Calculator" single ((:commit . "dd83b09a49a2843606b28279b674b2207040b36b") (:keywords "tools") (:authors ("Francesco Montanari" . "fmnt@fmnt.info")) (:maintainer "Francesco Montanari" . "fmnt@fmnt.info") (:url . "https://gitlab.com/montanari/cosmo-el"))]) (corral . [(20160502 701) nil "Quickly surround text with delimiters" single ((:commit . "e7ab6aa118e46b93d4933d1364bc273f57cd6911") (:authors ("Kevin Liu" . "mail@nivekuil.com")) (:maintainer "Kevin Liu" . "mail@nivekuil.com") (:url . "http://github.com/nivekuil/corral"))]) (coq-commenter . [(20170822 2309) ((dash (2 13 0)) (s (1 11 0)) (cl-lib (0 5))) "Coq commenting minor mode for proof" single ((:commit . "7fe9a2cc0ebdb0b1e54a24eb7971d757fb588ac3") (:keywords "comment" "coq" "proof") (:authors ("Junyoung Clare Jang" . "jjc9310@gmail.com")) (:maintainer "Junyoung Clare Jang" . "jjc9310@gmail.com") (:url . "http://github.com/ailrun/coq-commenter"))]) (copyit-pandoc . [(20160624 2028) ((emacs (24)) (copyit (0 0 1)) (pandoc (0 0 1))) "Copy it, yank anything!" single ((:commit . "f50d033b129d467fb517a351adf3f16cabd82a62") (:keywords "convinience" "yank" "clipboard") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/emacs-copyit"))]) (copyit . [(20161126 1229) ((emacs (24)) (cl-lib (0 5)) (s (1 9 0))) "Copy it, yank anything!" single ((:commit . "f50d033b129d467fb517a351adf3f16cabd82a62") (:keywords "convenience" "yank" "clipboard") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/emacs-copyit"))]) (copy-file-on-save . [(20180604 1419) ((emacs (24 3)) (cl-lib (0 5)) (f (0 17)) (s (1 7 0))) "Copy file on save, automatic deployment it." single ((:commit . "5af6d5fcc35ddf9050eada96fd5f334bf0661b62") (:keywords "files" "comm" "deploy") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/emacs-auto-deployment"))]) (copy-as-format . [(20171216 16) ((cl-lib (0 5))) "Copy buffer locations as GitHub/Slack/JIRA/HipChat/... formatted code" single ((:commit . "971957166fe64d914ec4be209b4f80efeeabbb19") (:keywords "github" "slack" "jira" "hipchat" "gitlab" "bitbucket" "org-mode" "pod" "rst" "asciidoc" "tools" "convenience") (:authors ("Skye Shaw" . "skye.shaw@gmail.com")) (:maintainer "Skye Shaw" . "skye.shaw@gmail.com") (:url . "https://github.com/sshaw/copy-as-format"))]) (control-mode . [(20160624 1710) nil "A \"control\" mode, similar to vim's \"normal\" mode" single ((:commit . "72d6179b60adc438aada74083b2bf4264b575de3") (:keywords "convenience" "emulations") (:authors ("Stephen Marsh" . "stephen.david.marsh@gmail.com")) (:maintainer "Stephen Marsh" . "stephen.david.marsh@gmail.com") (:url . "https://github.com/stephendavidmarsh/control-mode"))]) (contrast-color . [(20160903 1807) ((emacs (24 3)) (cl-lib (0 5))) "Pick best contrast color for you" single ((:commit . "c5fb77a211ebbef3185ada37bea7420534c33f94") (:keywords "color" "convenience") (:authors ("Yuta Yamada <cokesboy[at]gmail.com>")) (:maintainer "Yuta Yamada <cokesboy[at]gmail.com>") (:url . "https://github.com/yuutayamada/contrast-color-el"))]) (contextual-menubar . [(20180205 709) nil "display the menubar only on a graphical display" single ((:commit . "f76f55232ac07df76ef9a334a0c527dfab97c40b") (:authors ("Aaron Jensen" . "aaronjensen@gmail.com")) (:maintainer "Aaron Jensen" . "aaronjensen@gmail.com") (:url . "https://github.com/aaronjensen/contextual-menubar"))]) (contextual . [(20180726 800) ((emacs (24)) (dash (2 12 1)) (cl-lib (0 5))) "Contextual profile management system" single ((:commit . "e3c0de4a2e06757a0e8407c3c6e75930026191e3") (:keywords "convenience" "tools") (:authors ("Alexander Kahl" . "ak@sodosopa.io")) (:maintainer "Alexander Kahl" . "ak@sodosopa.io") (:url . "https://github.com/lshift-de/contextual"))]) (constant-theme . [(20180921 1012) ((emacs (24 1))) "A calm, dark, almost monochrome color theme." tar ((:commit . "f7d5bb79b39be65951485c17fe2092cc74b75c7b") (:keywords "themes") (:authors ("Jannis Pohlmann" . "contact@jannispohlmann.de")) (:maintainer "Jannis Pohlmann" . "contact@jannispohlmann.de") (:url . "https://github.com/jannis/emacs-constant-theme"))]) (connection . [(20140718 329) nil "TCP-based client connection" single ((:commit . "a23b8f4a422d0de69a006ed010eff5795319db98") (:keywords "network") (:authors ("Torsten Hilbrich" . "torsten.hilbrich@gmx.net")) (:maintainer "Torsten Hilbrich" . "torsten.hilbrich@gmx.net"))]) (conllu-mode . [(20181104 1742) ((emacs (25)) (cl-lib (0 5)) (flycheck (30)) (hydra (0 13 0)) (s (1 0))) "editing mode for CoNLL-U files" tar ((:commit . "1813121d8aafa0edf28741ad6f013573168cd4a6") (:keywords "extensions") (:authors ("bruno cuconato" . "bcclaro+emacs@gmail.com")) (:maintainer "bruno cuconato" . "bcclaro+emacs@gmail.com") (:url . "https://github.com/odanoburu/conllu-mode"))]) (conkeror-minor-mode . [(20150114 1604) nil "Mode for editing conkeror javascript files." single ((:commit . "476e81c27b056e21c192391fe674a2bf875466b0") (:keywords "programming" "tools") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com>")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com>") (:url . "http://github.com/Bruce-Connor/conkeror-minor-mode"))]) (confluence . [(20151021 128) ((xml-rpc (1 6 4))) "Emacs mode for interacting with confluence wikis" tar ((:commit . "4518d270a07760644c4204985c83d234ece4738b") (:keywords "confluence" "wiki" "xmlrpc") (:authors ("James Ahlborn")) (:maintainer "James Ahlborn") (:url . "http://code.google.com/p/confluence-el/"))]) (config-parser . [(20160426 1219) ((emacs (24 4))) "a library for parsing config file" single ((:commit . "85d559e7889d8f5b98b8794b79426ae25ec3caa5") (:keywords "convenience" "config") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/el-config-parser"))]) (config-general-mode . [(20171024 1840) nil "Config::General config file mode" single ((:commit . "b4a8e6ba0bb027a77e4a0f701409f3e57bb2e4c0") (:keywords "files") (:authors ("T.v.Dein" . "tlinden@cpan.org")) (:maintainer "T.v.Dein" . "tlinden@cpan.org") (:url . "https://github.com/tlinden/config-general-mode"))]) (conda . [(20181107 1951) ((emacs (24 4)) (pythonic (0 1 0)) (dash (2 13 0)) (s (1 11 0)) (f (0 18 2))) "Work with your conda environments" single ((:commit . "94e9ece8c90f234b3fafd0fb82a1c24e3473c78e") (:keywords "python" "environment" "conda") (:authors ("Rami Chowdhury" . "rami.chowdhury@gmail.com")) (:maintainer "Rami Chowdhury" . "rami.chowdhury@gmail.com") (:url . "http://github.com/necaris/conda.el"))]) (concurrent . [(20161229 330) ((emacs (24 3)) (deferred (0 5 0))) "Concurrent utility functions for emacs lisp" single ((:commit . "2239671d94b38d92e9b28d4e12fd79814cfb9c16") (:keywords "deferred" "async" "concurrent") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>") (:url . "https://github.com/kiwanami/emacs-deferred/blob/master/README-concurrent.markdown"))]) (composer . [(20180923 1140) ((emacs (24)) (s (1 9 0)) (f (0 17)) (request (0 2 0)) (seq (1 9)) (php-runtime (0 1 0))) "Interface to PHP Composer" single ((:commit . "6c1578b2352c81cc9a22616a70db2a14b7d2b67f") (:keywords "tools" "php" "dependency" "manager") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/composer.el"))]) (composable . [(20170724 647) ((emacs (24 4))) "composable editing" tar ((:commit . "ac981974f89607393cc61314aaa19672d45b0650") (:keywords "lisp") (:authors ("Simon Friis Vindum" . "simon@vindum.io")) (:maintainer "Simon Friis Vindum" . "simon@vindum.io"))]) (company-ycmd . [(20180520 1053) ((ycmd (1 3)) (company (0 9 3)) (deferred (0 5 1)) (s (1 11 0)) (dash (2 13 0)) (let-alist (1 0 5)) (f (0 19 0))) "company-mode backend for ycmd" single ((:commit . "ef87d020d3314efbac2e8925c115d0ac5c128c2a") (:url . "https://github.com/abingham/emacs-ycmd"))]) (company-ycm . [(20140904 1817) ((ycm (0 1))) "company-ycm" single ((:commit . "4da8a14abcd0f4fa3235042ade2e12b5068c0601") (:keywords "abbrev") (:authors ("Ajay Gopinathan" . "ajay@gopinathan.net")) (:maintainer "Ajay Gopinathan" . "ajay@gopinathan.net"))]) (company-web . [(20180402 1155) ((company (0 8 0)) (dash (2 8 0)) (cl-lib (0 5 0)) (web-completion-data (0 1 0))) "Company version of ac-html, complete for web,html,emmet,jade,slim modes" tar ((:commit . "f0cc9187c9c34f72ad71f5649a69c74f996bae9a") (:keywords "html" "company") (:authors ("Olexandr Sydorchuk" . "olexandr.syd@gmail.com")) (:maintainer "Olexandr Sydorchuk" . "olexandr.syd@gmail.com") (:url . "https://github.com/osv/company-web"))]) (company-try-hard . [(20150902 2206) ((emacs (24 3)) (company (0 8 0)) (dash (2 0))) "get all completions from company backends" single ((:commit . "70b94cfc40c576af404e743133979048e1bd2610") (:keywords "matching") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (company-terraform . [(20180703 1233) ((emacs (24 4)) (company (0 8 12)) (terraform-mode (0 6))) "A company backend for terraform" tar ((:commit . "9c1146bfe23d4c461f4a59577faf4e46fcca7fe9") (:keywords "abbrev" "convenience" "terraform" "company") (:authors ("Rafał Cieślak" . "rafalcieslak256@gmail.com")) (:maintainer "Rafał Cieślak" . "rafalcieslak256@gmail.com") (:url . "https://github.com/rafalcieslak/emacs-company-terraform"))]) (company-tern . [(20161004 1847) ((company (0 8 0)) (tern (0 0 1)) (dash (2 8 0)) (dash-functional (2 8 0)) (s (1 9 0)) (cl-lib (0 5 0))) "Tern backend for company-mode" single ((:commit . "10ac058b065ae73c1f30e9fb7d969dd1a79387be") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/company-tern"))]) (company-tabnine . [(20181114 417) ((emacs (25)) (company (0 9 3)) (cl-lib (0 5)) (unicode-escape (1 1)) (s (1 12 0))) "A company-mode backend for TabNine" single ((:commit . "85277a840357142c44843172b2a2898ad74587a7") (:keywords "convenience") (:authors ("Tommy Xiang" . "tommyx058@gmail.com")) (:maintainer "Tommy Xiang" . "tommyx058@gmail.com") (:url . "https://github.com/TommyX12/company-tabnine/"))]) (company-suggest . [(20180527 1631) ((company (0 9 0)) (emacs (25 1))) "Company-mode back-end for search engine suggests" single ((:commit . "e1fa663b48639c76d91d1f5ac3b23215aa3dabc3") (:keywords "completion" "convenience") (:authors ("Jürgen Hötzel" . "juergen@archlinux.org")) (:maintainer "Jürgen Hötzel" . "juergen@archlinux.org") (:url . "https://github.com/juergenhoetzel/company-suggest"))]) (company-statistics . [(20170210 1933) ((emacs (24 3)) (company (0 8 5))) "Sort candidates using completion history" single ((:commit . "e62157d43b2c874d2edbd547c3bdfb05d0a7ae5c") (:keywords "abbrev" "convenience" "matching") (:authors ("Ingo Lohmar" . "i.lohmar@gmail.com")) (:maintainer "Ingo Lohmar" . "i.lohmar@gmail.com") (:url . "https://github.com/company-mode/company-statistics"))]) (company-sourcekit . [(20170126 1153) ((emacs (24 3)) (company (0 8 12)) (dash (2 12 1)) (dash-functional (1 2 0)) (sourcekit (0 2 0))) "company-mode completion backend for SourceKit" single ((:commit . "abf9bc5a0102eb666d3aa6d6bf22f6efcc852781") (:keywords "abbrev") (:authors ("Nathan Kot" . "nk@nathankot.com")) (:maintainer "Nathan Kot" . "nk@nathankot.com") (:url . "https://github.com/nathankot/company-sourcekit"))]) (company-solidity . [(20181117 1518) ((company (0 9 0)) (cl-lib (0 5 0)) (solidity-mode (0 1 9))) "Company-mode back-end for solidity-mode" single ((:commit . "d6c48a1cb64d3c8a825dc0d06c839f2cacd4d289") (:keywords "solidity" "completion" "company") (:authors ("Samuel Smolkin" . "sam@future-precedent.org")) (:maintainer "Samuel Smolkin" . "sam@future-precedent.org") (:url . "https://github.com/ethereum/emacs-solidity"))]) (company-shell . [(20170518 541) ((emacs (24 4)) (company (0 8 12)) (dash (2 12 0)) (cl-lib (0 5))) "Company mode backend for shell functions" single ((:commit . "6ae625f80d90e0779c79de38e8f83a336c1d00fa") (:keywords "company" "shell" "auto-completion") (:authors ("Alexander Miller" . "alexanderm@web.de")) (:maintainer "Alexander Miller" . "alexanderm@web.de") (:url . "https://github.com/Alexander-Miller/company-shell"))]) (company-rtags . [(20180730 338) ((emacs (24 3)) (company (0 8 1)) (rtags (2 10))) "RTags back-end for company" single ((:commit . "194cd70d38c3e2e01b9de04d006f94573510aebb") (:authors ("Jan Erik Hanssen" . "jhanssen@gmail.com") ("Anders Bakken" . "agbakken@gmail.com")) (:maintainer "Jan Erik Hanssen" . "jhanssen@gmail.com") (:url . "http://rtags.net"))]) (company-restclient . [(20151202 1201) ((cl-lib (0 5)) (company (0 8 0)) (emacs (24)) (know-your-http-well (0 2 0)) (restclient (0 0 0))) "company-mode completion back-end for restclient-mode" single ((:commit . "19d819b14b7cd186a840369060963a08377d052e") (:authors ("Iku Iwasa" . "iku.iwasa@gmail.com")) (:maintainer "Iku Iwasa" . "iku.iwasa@gmail.com") (:url . "https://github.com/iquiw/company-restclient"))]) (company-reftex . [(20180713 841) ((emacs (25 1)) (s (1 12)) (company (0 8))) "Company backend based on RefTeX." single ((:commit . "d96ce340851499452c8d4d64bee80a3d7f9e9275") (:keywords "bib" "tex" "company" "latex" "reftex" "references" "labels" "citations") (:authors ("Eivind Fonn" . "evfonn@gmail.com")) (:maintainer "Eivind Fonn" . "evfonn@gmail.com") (:url . "https://github.com/TheBB/company-reftex"))]) (company-racer . [(20171205 310) ((emacs (24 4)) (cl-lib (0 5)) (company (0 8 0)) (deferred (0 3 1))) "Company integration for racer" single ((:commit . "a00381c9d416f375f783fcb6ae8d40669ce1f567") (:keywords "convenience") (:authors ("Mario Rodas" . "marsam@users.noreply.github.com")) (:maintainer "Mario Rodas" . "marsam@users.noreply.github.com") (:url . "https://github.com/emacs-pe/company-racer"))]) (company-quickhelp . [(20180525 1003) ((emacs (24 3)) (company (0 8 9)) (pos-tip (0 4 6))) "Popup documentation for completion candidates" single ((:commit . "479676cade80a9f03802ca3d956591820ed5c537") (:keywords "company" "popup" "documentation" "quickhelp") (:authors ("Lars Andersen" . "expez@expez.com")) (:maintainer "Lars Andersen" . "expez@expez.com") (:url . "https://www.github.com/expez/company-quickhelp"))]) (company-qml . [(20170428 1708) ((qml-mode (0 1)) (company (0 8 12))) "Company backend for QML files" tar ((:commit . "4af4f32a7ad86d86bb9293fb0b675aec513b5736") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com"))]) (company-prescient . [(20181022 2256) ((emacs (25 1)) (prescient (2 2 1)) (company (0 9 6))) "prescient.el + Company" single ((:commit . "1623a0d4e5b9a752db45923fd91da48b49c85068") (:keywords "extensions") (:authors ("Radon Rosborough" . "radon.neon@gmail.com")) (:maintainer "Radon Rosborough" . "radon.neon@gmail.com") (:url . "https://github.com/raxod502/prescient.el"))]) (company-posframe . [(20180610 1710) ((emacs (26 0)) (company (0 9 0)) (posframe (0 1 0))) "Use a posframe as company candidate menu" single ((:commit . "47861f501891d3c67958353c25f4dce13b386c3d") (:keywords "abbrev" "convenience" "matching") (:authors ("Clément Pit-Claudel, Feng Shu")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/company-posframe"))]) (company-pollen . [(20160812 1510) ((company (0 9 0)) (pollen-mode (1 0))) "company-mode completion backend for pollen" single ((:commit . "3b57f40f78eb4458e7be41dc4051f9cf0ff6982e") (:keywords "languages" "pollen" "pollenpub" "company") (:authors ("Junsong Li <ljs.darkfish AT GMAIL>")) (:maintainer "Junsong Li") (:url . "https://github.com/lijunsong/pollen-mode"))]) (company-plsense . [(20180118 58) ((company (0 9 3)) (cl-lib (0 5 0)) (dash (2 12 0)) (s (1 12)) (emacs (24))) "Company backend for Perl" single ((:commit . "b48e3181e08ec597269621d621aa06636f02d883") (:authors ("Troy Hinckley" . "troy.hinckley@gmail.com")) (:maintainer "Troy Hinckley" . "troy.hinckley@gmail.com") (:url . "https://github.com/CeleritasCelery/company-plsense"))]) (company-phpactor . [(20181110 902) ((emacs (24 3)) (cl-lib (0 5)) (company (0 9 6)) (phpactor (0 1 0))) "company-mode backend for Phpactor" single ((:commit . "eda8b34a729b3acb641aafa30552c501dec27d37") (:keywords "tools" "php") (:authors ("Martin Tang" . "martin.tang365@gmail.com") ("Mikael Kermorgant" . "mikael@kgtech.fi")) (:maintainer "Martin Tang" . "martin.tang365@gmail.com") (:url . "https://github.com/emacs-php/phpactor.el"))]) (company-php . [(20181110 303) ((cl-lib (0 5)) (ac-php-core (1)) (company (0 9))) "company completion source for php" single ((:commit . "1883d3178ded71534a7e93189bc789d65e4a000e") (:keywords "completion" "convenience" "intellisense") (:authors (nil . "xcwenn@qq.com [https://github.com/xcwen]")) (:maintainer nil . "xcwenn@qq.com [https://github.com/xcwen]") (:url . "https://github.com/xcwen/ac-php"))]) (company-nixos-options . [(20160215 857) ((company (0 8 0)) (nixos-options (0 0 1)) (cl-lib (0 5 0))) "Company Backend for nixos-options" single ((:commit . "45c8d90748304c90e1503c9fa8db0443f3d4bd89") (:keywords "unix") (:authors ("Diego Berrocal" . "cestdiego@gmail.com") ("Travis B. Hartwell" . "nafai@travishartwell.net")) (:maintainer "Diego Berrocal" . "cestdiego@gmail.com") (:url . "http://www.github.com/travisbhartwell/nix-emacs/"))]) (company-ngram . [(20170129 1913) ((cl-lib (0 5)) (company (0 8 0))) "N-gram based completion" tar ((:commit . "09a68b802e64799e95f205b438d469bbd78cd2e6") (:authors ("kshramt")) (:maintainer "kshramt") (:url . "https://github.com/kshramt/company-ngram"))]) (company-nginx . [(20180604 2) ((emacs (24))) "company-mode keywords support for nginx-mode" single ((:commit . "3074a5d322562f36867ef67bffeb25f1c0d8aca9") (:keywords "company" "nginx") (:url . "https://github.com/stardiviner/company-nginx"))]) (company-nand2tetris . [(20171201 1813) ((nand2tetris (1 1 0)) (company (0 5)) (cl-lib (0 5 0))) "Company backend for nand2tetris major mode" single ((:commit . "33acee34d24b1c6a87db833b7d23449cf858f64f") (:keywords "nand2tetris" "hdl" "company") (:authors ("Diego Berrocal" . "cestdiego@gmail.com")) (:maintainer "Diego Berrocal" . "cestdiego@gmail.com") (:url . "http://www.github.com/CestDiego/nand2tetris.el/"))]) (company-math . [(20171016 1514) ((company (0 8 0)) (math-symbol-lists (1 2))) "Completion backends for unicode math symbols and latex tags" single ((:commit . "3481f03ebb6a613ff85b71ca8edd2d5842c49012") (:keywords "unicode" "symbols" "completion") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/vspinu/company-math"))]) (company-lua . [(20171108 2306) ((company (0 8 12)) (s (1 10 0)) (f (0 17 0)) (lua-mode (20151025))) "Company backend for Lua" tar ((:commit . "29f6819de4d691e5fd0b62893a9f4fbc1c6fcb52") (:authors ("Peter Vasil" . "mail@petervasil.net")) (:maintainer "Peter Vasil" . "mail@petervasil.net"))]) (company-lsp . [(20181105 1644) ((emacs (25 1)) (lsp-mode (3 4)) (company (0 9 0)) (s (1 2 0)) (dash (2 11 0))) "Company completion backend for lsp-mode." single ((:commit . "d333e5594f8d5e5cb96309f8a913747ff83ab089") (:url . "https://github.com/tigersoldier/company-lsp"))]) (company-lean . [(20171102 1454) ((emacs (24 3)) (dash (2 12 0)) (dash-functional (1 2 0)) (s (1 10 0)) (f (0 19 0)) (company (0 9 3)) (lean-mode (3 3 0))) "A company backend for lean-mode" single ((:commit . "9d6b8471e2044310b4cd7cd3213b1fc8f78ec499") (:keywords "languages") (:authors ("Leonardo de Moura" . "leonardo@microsoft.com") ("Soonho Kong      " . "soonhok@cs.cmu.edu") ("Gabriel Ebner    " . "gebner@gebner.org") ("Sebastian Ullrich" . "sebasti@nullri.ch")) (:maintainer "Sebastian Ullrich" . "sebasti@nullri.ch") (:url . "https://github.com/leanprover/lean-mode"))]) (company-jedi . [(20151217 321) ((emacs (24)) (cl-lib (0 5)) (company (0 8 11)) (jedi-core (0 2 7))) "company-mode completion back-end for Python JEDI" single ((:commit . "2f54e791e10f5dc0ff164bfe97f1878359fab6f6") (:authors ("Boy" . "boyw165@gmail.com")) (:maintainer "Boy" . "boyw165@gmail.com"))]) (company-irony-c-headers . [(20151018 909) ((cl-lib (0 5)) (company (0 9 0)) (irony (0 2 0))) "Company mode backend for C/C++ header files with Irony" single ((:commit . "72c386aeb079fb261d9ec02e39211272f76bbd97") (:keywords "c" "company") (:authors ("Yutian Li" . "hotpxless@gmail.com")) (:maintainer "Yutian Li" . "hotpxless@gmail.com") (:url . "https://github.com/hotpxl/company-irony-c-headers"))]) (company-irony . [(20170905 2046) ((emacs (24 1)) (company (0 8 0)) (irony (1 1 0)) (cl-lib (0 5))) "company-mode completion back-end for irony-mode" single ((:commit . "52aca45bcd0f2cb0648fcafa2bbb4f8ad4b2fee7") (:keywords "convenience") (:authors ("Guillaume Papin" . "guillaume.papin@epitech.eu")) (:maintainer "Guillaume Papin" . "guillaume.papin@epitech.eu") (:url . "https://github.com/Sarcasm/company-irony/"))]) (company-inf-ruby . [(20140805 2054) ((company (0 6 10)) (inf-ruby (2 2 7)) (emacs (24 1))) "company-mode completion back-end for inf-ruby" single ((:commit . "fe3e4863bc971fbb81edad447efad5795ead1b17") (:authors ("Dmitry Gutov" . "dgutov@yandex.ru")) (:maintainer "Dmitry Gutov" . "dgutov@yandex.ru") (:url . "https://github.com/company-mode/company-inf-ruby"))]) (company-go . [(20180427 1856) ((company (0 8 0)) (go-mode (1 0 0))) "company-mode backend for Go (using gocode)" single ((:commit . "fa5c674aad2c2d9b67b2339701b192d95da2849d") (:keywords "languages") (:authors ("nsf" . "no.smile.face@gmail.com")) (:maintainer "nsf" . "no.smile.face@gmail.com"))]) (company-glsl . [(20171015 1749) ((company (0 9 4)) (glsl-mode (2 0)) (emacs (24 4))) "Support glsl in company-mode" single ((:commit . "a262c12c3bcd0807718c4edcaf2b054e30ef0e26") (:authors ("Guido Schmidt" . "git@guidoschmidt.cc")) (:maintainer "Guido Schmidt" . "git@guidoschmidt.cc") (:url . "https://github.com/guidoschmidt/company-glsl"))]) (company-ghci . [(20160311 200) ((company (0 8 11)) (haskell-mode (13))) "company backend which uses the current ghci process." single ((:commit . "c2d74a41166e76de2e78c87f582ba3a1179b2aa6") (:authors ("Hector Orellana" . "hofm92@gmail.com")) (:maintainer "Hector Orellana" . "hofm92@gmail.com"))]) (company-ghc . [(20170918 833) ((cl-lib (0 5)) (company (0 8 0)) (ghc (5 4 0 0)) (emacs (24))) "company-mode ghc-mod backend" single ((:commit . "8b264b5c3c0e42c0d0c4e9315559896c9b0edfdc") (:keywords "haskell" "completion") (:authors ("Iku Iwasa" . "iku.iwasa@gmail.com")) (:maintainer "Iku Iwasa" . "iku.iwasa@gmail.com") (:url . "https://github.com/iquiw/company-ghc"))]) (company-flx . [(20180103 518) ((emacs (24)) (company (0 8 12)) (flx (0 5))) "flx based fuzzy matching for company" single ((:commit . "16ca0d2f84e8e768bf2db8c5cfe421230a00bded") (:keywords "convenience" "company" "fuzzy" "flx") (:authors ("PythonNut" . "pythonnut@pythonnut.com")) (:maintainer "PythonNut" . "pythonnut@pythonnut.com") (:url . "https://github.com/PythonNut/company-flx"))]) (company-flow . [(20180225 2159) ((company (0 8 0)) (dash (2 13 0))) "Flow backend for company-mode" single ((:commit . "76ef585c70d2a3206c2eadf24ba61e59124c3a16") (:authors ("Aaron Jensen" . "aaronjensen@gmail.com")) (:maintainer "Aaron Jensen" . "aaronjensen@gmail.com") (:url . "https://github.com/aaronjensen/company-flow"))]) (company-erlang . [(20170123 538) ((emacs (24 4)) (ivy-erlang-complete (0 1)) (company (0 9 2))) "company backend based on ivy-erlang-complete" single ((:commit . "bc0524a16f17b66c7397690e4ca0e004f09ea6c5") (:keywords "tools") (:authors ("Sergey Kostyaev" . "feo.me@ya.ru")) (:maintainer "Sergey Kostyaev" . "feo.me@ya.ru"))]) (company-emoji . [(20180925 2008) ((cl-lib (0 5)) (company (0 8 0))) "company-mode backend for emoji" tar ((:commit . "f0d91d5be0077b20b418a3ba37d36f431fae322f") (:keywords "emoji" "company") (:authors ("Alex Dunn" . "dunn.alex@gmail.com")) (:maintainer "Alex Dunn" . "dunn.alex@gmail.com") (:url . "https://github.com/dunn/company-emoji.git"))]) (company-emacs-eclim . [(20180911 1121) ((eclim (0 3)) (company (0 7)) (cl-lib (0 5))) "Eclim company backend" single ((:commit . "23f5b294f833ce58516d7b9ae08a7792d70022a1"))]) (company-edbi . [(20160221 1923) ((company (0 8 5)) (edbi (0 1 3)) (cl-lib (0 5 0)) (s (1 9 0))) "Edbi backend for company-mode" single ((:commit . "ffaeff75d0457285d16d11db772881542a6026ad") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/company-edbi"))]) (company-distel . [(20180827 1344) ((distel-completion-lib (1 0 0))) "Erlang/distel completion backend for company-mode" single ((:commit . "acc4c0a5521904203d797fe96b08e5fae4233c7e") (:keywords "erlang" "distel" "company") (:authors ("Sebastian Weddmark Olsson")) (:maintainer "Sebastian Weddmark Olsson") (:url . "github.com/sebastiw/distel-completion"))]) (company-dict . [(20180216 956) ((emacs (24 4)) (company (0 8 12)) (parent-mode (2 3))) "A backend that emulates ac-source-dictionary" single ((:commit . "7ab6331d8095e9b93c726da754102fd708c0002e") (:keywords "company" "dictionary" "ac-source-dictionary") (:authors ("Henrik Lissner <http://github/hlissner>")) (:maintainer "Henrik Lissner" . "henrik@lissner.net") (:url . "https://github.com/hlissner/emacs-company-dict"))]) (company-dcd . [(20170516 910) ((company (0 9)) (flycheck-dmd-dub (0 7)) (yasnippet (0 8)) (popwin (0 7)) (cl-lib (0 5)) (ivy (20160804 326))) "Company backend for Dlang using DCD." single ((:commit . "4832188a9e42287539a69c372fe1643166a6a7aa") (:keywords "languages") (:authors ("tsukimizake <shomasd_at_gmail.com>")) (:maintainer "tsukimizake <shomasd_at_gmail.com>") (:url . "http://github.com/tsukimizake/company-dcd"))]) (company-coq . [(20181107 2136) ((company-math (1 1)) (company (0 8 12)) (yasnippet (0 11 0)) (dash (2 12 1)) (cl-lib (0 5))) "A collection of extensions for Proof General's Coq mode" tar ((:commit . "24f33527c5917cdd4c3c139f966c49c33b21d4d0"))]) (company-childframe . [(20180705 546) ((emacs (26 0)) (company-posframe (0 1 0))) "Please use company-posframe instead." single ((:commit . "562eaa1e3a0c39dd36f10cda37a3724384fde1df") (:keywords "abbrev" "convenience" "matching") (:authors ("Clément Pit-Claudel, Feng Shu")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/company-mode/company-mode"))]) (company-cabal . [(20170917 1317) ((cl-lib (0 5)) (company (0 8 0)) (emacs (24))) "company-mode cabal backend" tar ((:commit . "62112a7259e24bd6c08885629a185afe512b7d3d") (:authors ("Iku Iwasa" . "iku.iwasa@gmail.com")) (:maintainer "Iku Iwasa" . "iku.iwasa@gmail.com") (:url . "https://github.com/iquiw/company-cabal"))]) (company-c-headers . [(20180814 1730) ((emacs (24 1)) (company (0 8))) "Company mode backend for C/C++ header files" single ((:commit . "41331192b3961c8e3a51540678e1d11eaa346f03") (:keywords "development" "company") (:authors ("Alastair Rankine" . "alastair@girtby.net")) (:maintainer "Alastair Rankine" . "alastair@girtby.net"))]) (company-box . [(20180607 1545) ((emacs (26 0 91)) (dash (2 13)) (dash-functional (1 2 0)) (company (0 9 6))) "Company front-end with icons" tar ((:commit . "6e047e6fd7226a1b8292a74985db82bbccc679c7") (:keywords "company" "completion" "front-end" "convenience") (:authors ("Sebastien Chapuis" . "sebastien@chapu.is")) (:maintainer "Sebastien Chapuis" . "sebastien@chapu.is") (:url . "https://github.com/sebastiencs/company-box"))]) (company-bibtex . [(20171105 644) ((company (0 9 0)) (cl-lib (0 5)) (parsebib (1 0))) "Company completion for bibtex keys" single ((:commit . "da67faf3a6faba8e7f1b222dedfc5521b02c7655") (:keywords "company-mode" "bibtex") (:authors ("GB Gardner" . "gbgar@users.noreply.github.com")) (:maintainer "GB Gardner" . "gbgar@users.noreply.github.com") (:url . "https://github.com/gbgar/company-bibtex"))]) (company-axiom . [(20171024 2010) ((emacs (24)) (company (0 9)) (axiom-environment (20171021))) "A company-mode backend for the axiom-environment system" single ((:commit . "5d6b2cd12f639c11b032185c4c5fe4f5bba15b08") (:keywords "axiom" "openaxiom" "fricas" "axiom-environment") (:authors ("Paul Onions" . "paul.onions@acm.org")) (:maintainer "Paul Onions" . "paul.onions@acm.org"))]) (company-auctex . [(20180725 1912) ((yasnippet (0 8 0)) (company (0 8 0)) (auctex (11 87))) "Company-mode auto-completion for AUCTeX" single ((:commit . "48c42c58ce2f0e693301b0cb2d085055410c1b25") (:authors ("Christopher Monsanto <chris@monsan.to>, Alexey Romanov" . "alexey.v.romanov@gmail.com")) (:maintainer "Christopher Monsanto <chris@monsan.to>, Alexey Romanov" . "alexey.v.romanov@gmail.com") (:url . "https://github.com/alexeyr/company-auctex/"))]) (company-arduino . [(20160306 1739) ((emacs (24 1)) (company (0 8 0)) (irony (0 1 0)) (cl-lib (0 5)) (company-irony (0 1 0)) (company-c-headers (20140930)) (arduino-mode (1 0))) "company-mode for Arduino" single ((:commit . "d7e369702b8eee63e6dfdeba645ce28b6dc66fb1") (:keywords "convenience" "development" "company") (:authors ("Yuta Yamada" . "sleepboy.zzz@gmail.com")) (:maintainer "Yuta Yamada" . "sleepboy.zzz@gmail.com") (:url . "https://github.com/yuutayamada/company-arduino"))]) (company-ansible . [(20180701 1813) ((emacs (24 4)) (company (0 8 12))) "A company back-end for ansible" tar ((:commit . "c6dc714e3a15f89671ae5e8fe668858b20ef63e8") (:keywords "ansible") (:authors ("Krzysztof Magosa" . "krzysztof@magosa.pl")) (:maintainer "Krzysztof Magosa" . "krzysztof@magosa.pl") (:url . "https://github.com/krzysztof-magosa/company-ansible"))]) (company-anaconda . [(20181025 1305) ((company (0 8 0)) (anaconda-mode (0 1 1)) (cl-lib (0 5 0)) (dash (2 6 0)) (s (1 9))) "Anaconda backend for company-mode" single ((:commit . "0ab70de1740e67cee451abcf3685c7525ff9e95a") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/anaconda-mode"))]) (company . [(20181105 2312) ((emacs (24 3))) "Modular text completion framework" tar ((:commit . "c95a6b41d621de4253b77e512aa61fc0e75acddc") (:keywords "abbrev" "convenience" "matching") (:authors ("Nikolaj Schumacher")) (:maintainer "Dmitry Gutov" . "dgutov@yandex.ru") (:url . "http://company-mode.github.io/"))]) (common-lisp-snippets . [(20180226 1523) ((yasnippet (0 8 0))) "Yasnippets for Common Lisp" tar ((:commit . "1ddf808311ba4d9e8444a1cb50bd5ee75e4111f6") (:keywords "snippets") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/common-lisp-snippets"))]) (commify . [(20161106 2334) ((s (1 9 0))) "Toggle grouping commas in numbers" single ((:commit . "78732c2fa6c1a10288b7436d7c561ec9ebdd41be") (:keywords "convenience" "editing" "numbers" "grouping" "commas") (:authors ("Daniel E. Doherty" . "ded-commify@ddoherty.net")) (:maintainer "Daniel E. Doherty" . "ded-commify@ddoherty.net") (:url . "https://github.com/ddoherty03/commify"))]) (commenter . [(20160219 1627) ((emacs (24 4)) (let-alist (1 0 4))) "multiline-comment support package" single ((:commit . "6d1885419434ba779270c6fda0e30d390bb074bd") (:keywords "comment") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/yuutayamada/commenter"))]) (commentary-theme . [(20180816 2115) ((emacs (24))) "A minimal theme with contrasting comments" single ((:commit . "1e2a64719b9d52992c6cdb91911ab313bcd69a77") (:url . "https://github.com/pzel/commentary-theme"))]) (comment-tags . [(20170910 1735) ((emacs (24 5))) "Highlight & navigate comment tags like 'TODO'." single ((:commit . "7d914097f0a03484af71e621db533737fc692f58") (:keywords "convenience" "comments" "tags") (:authors ("Vincent Dumas" . "vincekd@gmail.com")) (:maintainer "Vincent Dumas" . "vincekd@gmail.com") (:url . "https://github.com/vincekd/comment-tags"))]) (comment-dwim-2 . [(20170809 2054) nil "An all-in-one comment command to rule them all" single ((:commit . "8da8aba4cab4a0a1eef3aea2de219227526876e4") (:keywords "convenience") (:authors ("Rémy Ferré" . "dev@remyferre.net")) (:maintainer "Rémy Ferré" . "dev@remyferre.net") (:url . "https://github.com/remyferre/comment-dwim-2"))]) (commander . [(20140120 1852) ((s (1 6 0)) (dash (2 0 0)) (cl-lib (0 3)) (f (0 6 1))) "Emacs command line parser" single ((:commit . "c93985dc318fe89e5a29abc21d19fb41e2fd14d2") (:keywords "cli" "argv") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/commander.el"))]) (command-queue . [(20160328 1725) ((emacs (24 3))) "shell command queue" single ((:commit . "f327c6f852592229a755ec6de0c62c6aeafd6659") (:authors ("Yuki INOUE <inouetakahiroki at gmail.com>")) (:maintainer "Yuki INOUE <inouetakahiroki at gmail.com>") (:url . "https://github.com/Yuki-Inoue/command-queue"))]) (command-log-mode . [(20160413 447) nil "log keyboard commands to buffer" single ((:commit . "af600e6b4129c8115f464af576505ea8e789db27") (:keywords "help") (:authors ("Michael Weber" . "michaelw@foldr.org")) (:maintainer "Michael Weber" . "michaelw@foldr.org") (:url . "https://github.com/lewang/command-log-mode"))]) (comint-intercept . [(20170317 1228) ((emacs (24 3))) "Intercept input in comint-mode" single ((:commit . "a329abf01fa8e0c6b02b46b29bcb421a21120dc5") (:keywords "processes" "terminals") (:authors ("\"Huang, Ying\"" . "huang.ying.caritas@gmail.com")) (:maintainer "\"Huang, Ying\"" . "huang.ying.caritas@gmail.com") (:url . "https://github.com/hying-caritas/comint-intercept"))]) (comb . [(20180831 721) ((emacs (25 1))) "Interactive grep tool for manual static analysis" tar ((:commit . "69d59284e19428794b5c0aaa9be0e7d2770cc846") (:keywords "matching") (:authors ("Andrea Cardaci" . "cyrus.and@gmail.com")) (:maintainer "Andrea Cardaci" . "cyrus.and@gmail.com") (:url . "https://github.com/cyrus-and/comb"))]) (com-css-sort . [(20180927 1543) ((emacs (24 4)) (s (1 12 0))) "Common way of sorting the CSS attributes." single ((:commit . "d4121d2dc88b2f33c1b60a326a07e6f78e1f7a91") (:authors ("Shen, Jen-Chieh" . "jcs090218@gmail.com")) (:maintainer "Shen, Jen-Chieh" . "jcs090218@gmail.com") (:url . "https://github.com/jcs090218/com-css-sort"))]) (column-enforce-mode . [(20171030 1900) nil "Highlight text that extends beyond a  column" single ((:commit . "2341a2b6a33d4b8b74c35062ec9cfe1bffd61944") (:authors ("Jordon Biondo")) (:maintainer "Jordon Biondo") (:url . "www.github.com/jordonbiondo/column-enforce-mode"))]) (colormaps . [(20171008 2224) ((emacs (25))) "Hex colormaps" single ((:commit . "19fbb64a6288d505b9cf45c9b5a3eed0bfb135e2") (:keywords "tools") (:authors ("Abhinav Tushar" . "lepisma@fastmail.com")) (:maintainer "Abhinav Tushar" . "lepisma@fastmail.com") (:url . "https://github.com/lepisma/colormaps.el"))]) (color-theme-x . [(20180227 46) ((cl-lib (0 5))) "convert color themes to X11 resource settings" single ((:commit . "6c2264aa6c5d9a72caeae67ebaa4472090e70350") (:keywords "convenience" "faces" "frames") (:authors ("Matthew Kennedy" . "mkennedy@killr.ath.cx")) (:maintainer "Andrew Johnson" . "andrew@andrewjamesjohnson.com") (:url . "https://github.com/ajsquared/color-theme-x"))]) (color-theme-solarized . [(20171024 1525) ((color-theme (6 5 5))) "Solarized themes for Emacs" tar ((:commit . "f3ca8902ea056fb8e46cb09f09c96294e31cd4ee"))]) (color-theme-sanityinc-tomorrow . [(20181024 1728) nil "A version of Chris Kempson's \"tomorrow\" themes" tar ((:commit . "d3c694f4c423bc8cfc74bd80d624b974ebc94e02") (:keywords "faces" "themes") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "http://github.com/purcell/color-theme-sanityinc-tomorrow"))]) (color-theme-sanityinc-solarized . [(20181021 2055) nil "A version of Ethan Schoonover's Solarized themes" tar ((:commit . "fa2afc66beebdf7936b9f1391878798d6426730c") (:keywords "themes") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "http://github.com/purcell/color-theme-sanityinc-solarized"))]) (color-theme-modern . [(20161219 1144) ((emacs (24))) "Reimplement colortheme with Emacs 24 theme framework." tar ((:commit . "42a79266f1d7b473e9328e67a455e505e6c3eff5") (:url . "https://github.com/emacs-jp/replace-colorthemes/"))]) (color-theme-buffer-local . [(20170126 601) ((color-theme (0))) "Install color-themes by buffer." single ((:commit . "e606dec66f16a06140b9aad625a4fd52bca4f936") (:keywords "faces") (:authors ("Victor Borja" . "vic.borja@gmail.com")) (:maintainer "Victor Borja" . "vic.borja@gmail.com") (:url . "http://github.com/vic/color-theme-buffer-local"))]) (color-theme-approximate . [(20140228 436) nil "Makes Emacs theme works on terminal transparently" single ((:commit . "f54301ca39bc5d2ffb000f233f8114184a3e7d71") (:authors ("Tung Dao" . "me@tungdao.com")) (:maintainer "Tung Dao" . "me@tungdao.com"))]) (color-theme . [(20080305 834) nil "install color themes" tar ((:commit . "eeb07560b30aaf7934dfd21f5c2518a479905cd9") (:keywords "faces") (:authors ("Jonadab the Unsightly One" . "jonadab@bright.net")) (:maintainer "Xavier Maillard" . "zedek@gnu.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki.pl?ColorTheme"))]) (color-moccur . [(20141223 35) nil "multi-buffer occur (grep) mode" single ((:commit . "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7") (:keywords "convenience") (:url . "http://www.bookshelf.jp/elc/color-moccur.el"))]) (color-identifiers-mode . [(20181120 1951) ((dash (2 5 0)) (emacs (24))) "Color identifiers based on their names" single ((:commit . "4ba39f0274e1f85e50c956c507f942d950891a20") (:keywords "faces" "languages") (:authors ("Ankur Dave" . "ankurdave@gmail.com")) (:maintainer "Ankur Dave" . "ankurdave@gmail.com") (:url . "https://github.com/ankurdave/color-identifiers-mode"))]) (colonoscopy-theme . [(20170808 1309) ((emacs (24 0))) "an Emacs 24 theme based on Colonoscopy (tmTheme)" single ((:commit . "64bbb322b13dae91ce9f1e3581f836f94f800ead") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (colemak-evil . [(20171015 2307) ((evil (20170323 1140))) "Colemak-friendly keybindings for Evil." single ((:commit . "192c779281ae1fbf2405dcdb55b3c5b2a1d0b3d1") (:authors ("Patrick Brinich-Langlois" . "pbrinichlanglois@gmail.com")) (:maintainer "Patrick Brinich-Langlois" . "pbrinichlanglois@gmail.com") (:url . "https://github.com/patbl/colemak-evil"))]) (coin-ticker . [(20170611 727) ((request (0 3 0)) (emacs (25))) "Show a cryptocurrency price ticker" single ((:commit . "9efab90fe4e6f29464af14e0d8fd1e20c0147b80") (:keywords "news") (:authors ("Evan Klitzke" . "evan@eklitzke.org")) (:maintainer "Evan Klitzke" . "evan@eklitzke.org") (:url . "https://github.com/eklitzke/coin-ticker-mode"))]) (coffee-mode . [(20170324 940) ((emacs (24 3))) "Major mode for CoffeeScript code" single ((:commit . "86ab8aae8662e8eff54d3013010b9c693b16eac5") (:keywords "coffeescript" "major" "mode") (:authors ("Chris Wanstrath" . "chris@ozmm.org")) (:maintainer "Chris Wanstrath" . "chris@ozmm.org") (:url . "http://github.com/defunkt/coffee-mode"))]) (coffee-fof . [(20131012 1230) ((coffee-mode (0 4 1))) "A coffee-mode configuration for `ff-find-other-file'." single ((:commit . "211529594bc074721c6cbc4edb73a63cc05f89ac") (:keywords "coffee-mode") (:authors ("Yasuyki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyki Oka" . "yasuyk@gmail.com") (:url . "http://github.com/yasuyk/coffee-fof"))]) (codic . [(20150926 1127) ((emacs (24)) (cl-lib (0 5))) "Search Codic (codic.jp) naming dictionaries" tar ((:commit . "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-codic"))]) (codesearch . [(20181006 1431) ((log4e (0 3 1))) "Core support for managing codesearch tools" tar ((:commit . "f6eb96f034a925444412cfa03e45e0ccbbafe3f2") (:keywords "tools" "development" "search") (:authors ("Austin Bingham" . "austin.bingham@gmail.com") ("Youngjoo Lee" . "youngker@gmail.com")) (:maintainer "Austin Bingham" . "austin.bingham@gmail.com") (:url . "https://github.com/abingham/emacs-codesearch"))]) (codebug . [(20140929 2137) nil "Interact with codebug" single ((:commit . "ac0e4331ba94ccb5203fa492570e1ca6b90c3d52") (:authors ("Shane Dowling")) (:maintainer "Shane Dowling") (:url . "http://www.shanedowling.com/"))]) (code-stats . [(20181110 1952) ((emacs (25)) (request (0 3 0))) "Code::Stats plugin" single ((:commit . "20d60ded0743f01206c3c2e92ab73788def9adcb") (:authors ("Xu Chunyang" . "mail@xuchunyang.me")) (:maintainer "Xu Chunyang" . "mail@xuchunyang.me") (:url . "https://github.com/xuchunyang/code-stats-emacs"))]) (code-library . [(20160426 1218) ((gist (1 3 1))) "use org-mode to collect code snippets" single ((:commit . "32d59c5c845d6dbdda18f9bd1c03a58d55417fc5") (:keywords "lisp" "code") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com"))]) (code-archive . [(20180706 213) ((emacs (24 3))) "git supported code archive and reference for org-mode" single ((:commit . "bc51428d2761dedc20bca1014cc2760b3af87e0e") (:authors ("Michael Schuldt" . "mbschuldt@gmail.com")) (:maintainer "Michael Schuldt" . "mbschuldt@gmail.com") (:url . "https://github.com/mschuldt/code-archive"))]) (cobra-mode . [(20140116 2116) nil "Major mode for .NET-based Cobra language" single ((:commit . "acd6e53f6286af5176471d01f25257e5ddb6dd01") (:keywords "languages") (:authors ("Taylor \"Nekroze\" Lawson")) (:maintainer "Taylor \"Nekroze\" Lawson") (:url . "http://github.com/Nekroze/cobra-mode"))]) (cobalt . [(20180304 1155) ((emacs (24))) "Easily use the Cobalt.rs static site generator" single ((:commit . "634ace275697e188746ca22a30ff94380ec756be") (:keywords "convenience") (:authors ("Juan Karlo Licudine" . "accidentalrebel@gmail.com")) (:maintainer "Juan Karlo Licudine" . "accidentalrebel@gmail.com") (:url . "https://github.com/cobalt-org/cobalt.el"))]) (cnfonts . [(20180830 2128) ((emacs (24))) "A simple Chinese fonts config tool" tar ((:commit . "6d07b14e5c04033966056dd231047f110ce925c0") (:keywords "convenience" "chinese" "font") (:authors ("Feng Shu" . "tumashu@163.com")) (:maintainer "Feng Shu" . "tumashu@163.com") (:url . "https://github.com/tumashu/cnfonts"))]) (cmm-mode . [(20150225 746) nil "Major mode for C-- source code" single ((:commit . "c3ad514dff3eb30434f6b20d953276d4c00de1ee"))]) (cmd-to-echo . [(20161203 2133) ((emacs (24 4)) (s (1 11 0)) (shell-split-string (20151224 208))) "Show the output of long-running commands in the echo area" single ((:commit . "e0e874fc0e1ad6d291e39ed76023445297ad438a") (:authors ("Tijs Mallaerts" . "tijs.mallaerts@gmail.com")) (:maintainer "Tijs Mallaerts" . "tijs.mallaerts@gmail.com"))]) (cmake-project . [(20171121 1115) nil "Integrates CMake build process with Emacs" single ((:commit . "d3f408f226eff3f77f7e00dd519f4efc78fd292d") (:keywords "c" "cmake" "languages" "tools") (:authors ("Alexander Lamaison" . "alexander.lamaison@gmail")) (:maintainer "Alexander Lamaison" . "alexander.lamaison@gmail") (:url . "http://github.com/alamaison/emacs-cmake-project"))]) (cmake-mode . [(20180709 1426) nil "major-mode for editing CMake sources" single ((:commit . "ec43aca7037987e189a39ebe2c93c7b4e219a9a7"))]) (cmake-ide . [(20181023 1430) ((emacs (24 4)) (cl-lib (0 5)) (seq (1 11)) (levenshtein (0)) (s (1 11 0))) "Calls CMake to find out include paths and other compiler flags" single ((:commit . "0a90200a74913f07c0ed08d1a1d5ebe314af26a4") (:keywords "languages") (:authors ("Atila Neves" . "atila.neves@gmail.com")) (:maintainer "Atila Neves" . "atila.neves@gmail.com") (:url . "http://github.com/atilaneves/cmake-ide"))]) (cmake-font-lock . [(20170117 2025) ((cmake-mode (0 0))) "Advanced, type aware, highlight support for CMake" single ((:commit . "8be491b4b13338078e524e2fe6213c93e18a101e") (:keywords "faces" "languages") (:authors ("Anders Lindgren")) (:maintainer "Anders Lindgren") (:url . "https://github.com/Lindydancer/cmake-font-lock"))]) (cm-mode . [(20170203 2107) ((cl-lib (0 5))) "Minor mode for CriticMarkup" single ((:commit . "276d49c859822265070ae5dfbb403fd7d8d06436") (:keywords "text" "markdown") (:authors ("Joost Kremers" . "joostkremers@fastmail.fm")) (:maintainer "Joost Kremers" . "joostkremers@fastmail.fm"))]) (clues-theme . [(20161213 1127) ((emacs (24 0))) "an Emacs 24 theme which may well be fully awesome..." single ((:commit . "abd61f2b7f3e98de58ca26e6d1230e70c6406cc7") (:authors ("Jason Milkins" . "jasonm23@gmail.com")) (:maintainer "Jason Milkins" . "jasonm23@gmail.com") (:url . "https://github.com/emacsfodder/emacs-clues-theme"))]) (cloud-to-butt-erc . [(20130627 2308) nil "Replace 'the cloud' with 'my butt'" single ((:commit . "6710c03d1bc91736435cbfe845924940cae34e5c") (:authors ("David Leatherman" . "leathekd@gmail.com")) (:maintainer "David Leatherman" . "leathekd@gmail.com") (:url . "http://www.github.com/leathekd/cloud-to-butt-erc"))]) (closure-lint-mode . [(20101118 2124) nil "minor mode for the Closure Linter" single ((:commit . "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5") (:keywords "tools" "closure" "javascript" "lint" "flymake") (:authors ("Roman Scherer" . "roman@burningswell.com")) (:maintainer "Roman Scherer" . "roman@burningswell.com") (:url . "https://github.com/r0man/closure-lint-mode"))]) (closql . [(20181031 2158) ((emacs (25 1)) (emacsql-sqlite (3 0 0))) "store EIEIO objects using EmacSQL" single ((:commit . "012b94f8695e194455111fd54eff0b94dd0dd0db") (:keywords "extensions") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/emacscollective/closql"))]) (clomacs . [(20181003 1735) ((emacs (24 3)) (cider (0 18 0)) (s (1 12 0)) (simple-httpd (1 4 6))) "Simplifies Emacs Lisp interaction with Clojure." single ((:commit . "6c83a0e2ac13e8fcc4b99183dbb3426bfe8bbb9c") (:keywords "clojure" "interaction") (:authors ("Kostafey" . "kostafey@gmail.com")) (:maintainer "Kostafey" . "kostafey@gmail.com") (:url . "https://github.com/clojure-emacs/clomacs"))]) (clojure-snippets . [(20180314 1308) ((yasnippet (0 10 0))) "Yasnippets for clojure" tar ((:commit . "6068dca90467a0f4ebc2cd39338a173d6f5ddc04"))]) (clojure-quick-repls . [(20150814 736) ((cider (0 8 1)) (dash (2 9 0))) "Quickly create Clojure and ClojureScript repls for a project." single ((:commit . "730311dd3ac4e0aceb0204f818b422017873467f") (:keywords "languages" "clojure" "cider" "clojurescript") (:url . "https://github.com/symfrog/clojure-quick-repls"))]) (clojure-mode-extra-font-locking . [(20180114 1711) ((clojure-mode (3 0))) "Extra font-locking for Clojure mode" single ((:commit . "0d2e6a6d744c31b2c0992e5a7a0eb348daa29b7d") (:keywords "languages" "lisp") (:authors ("Bozhidar Batsov" . "bozhidar@batsov.com")) (:maintainer "Bozhidar Batsov" . "bozhidar@batsov.com") (:url . "http://github.com/clojure-emacs/clojure-mode"))]) (clojure-mode . [(20181119 1200) ((emacs (25 1))) "Major mode for Clojure code" single ((:commit . "0d2e6a6d744c31b2c0992e5a7a0eb348daa29b7d") (:keywords "languages" "clojure" "clojurescript" "lisp") (:url . "http://github.com/clojure-emacs/clojure-mode"))]) (clojure-cheatsheet . [(20180201 804) ((helm (1 7 7)) (cider (0 9 0))) "The Clojure Cheatsheet for Emacs" single ((:commit . "85c382317a56bbdfac03ae95999c28fc0cde65d7") (:keywords "clojure" "cider" "cheatsheet" "helm") (:authors ("Kris Jenkins" . "krisajenkins@gmail.com")) (:maintainer "Kris Jenkins" . "krisajenkins@gmail.com") (:url . "https://github.com/clojure-emacs/clojure-cheatsheet"))]) (clojars . [(20180825 1951) ((request-deferred (0 2 0))) "clojars.org search interface" single ((:commit . "696c5b056e45067512a7d6dcce2515f3c639f61b") (:keywords "docs" "help" "tools") (:authors ("Joshua Miller" . "josh@joshmiller.io")) (:maintainer "Joshua Miller" . "josh@joshmiller.io") (:url . "https://github.com/joshuamiller/clojars.el"))]) (clocker . [(20160125 2305) ((projectile (0 11 0)) (dash (2 10))) "Note taker and clock-in enforcer" single ((:commit . "4a4831ed4e42e18976edd16b844cb16cb78f3c17") (:keywords "org") (:authors ("Roman Gonzalez" . "romanandreg@gmail.com")) (:maintainer "Roman Gonzalez" . "romanandreg@gmail.com"))]) (cloc . [(20170728 1824) ((cl-lib (0 5))) "count lines of code over emacs buffers" single ((:commit . "f30f0472e465cc8d433d2473e9d3b8dfe2c94491") (:keywords "cloc" "count" "source" "code" "lines") (:authors ("Danny McClanahan" . "danieldmcclanahan@gmail.com")) (:maintainer "Danny McClanahan" . "danieldmcclanahan@gmail.com") (:url . "https://github.com/cosmicexplorer/cloc-emacs"))]) (clmemo . [(20160326 1623) nil "Change Log MEMO" tar ((:commit . "846a81b984d71edf8278a4d9f9b886e44d5b8365") (:keywords "convenience") (:authors ("Masayuki Ataka" . "masayuki.ataka@gmail.com")) (:maintainer "Masayuki Ataka" . "masayuki.ataka@gmail.com") (:url . "https://github.com/ataka/clmemo"))]) (cljsbuild-mode . [(20160402 1700) nil "A minor mode for the ClojureScript 'lein cljsbuild' command" single ((:commit . "fa2315660cb3ce944b5e16c679dcf5afd6a97f4c") (:keywords "clojure" "clojurescript" "leiningen" "compilation") (:url . "http://github.com/kototama/cljsbuild-mode"))]) (cljr-helm . [(20160913 828) ((clj-refactor (0 13 0)) (helm-core (1 7 7)) (cl-lib (0 5))) "Wraps clojure refactor commands with helm" single ((:commit . "f2fc7b698a56e4a44d5dfbc6a55d77a93c0fa9a4") (:keywords "helm" "clojure" "refactor") (:authors ("Phil Jackson" . "phil@shellarchive.co.uk")) (:maintainer "Phil Jackson" . "phil@shellarchive.co.uk") (:url . "https://github.com/philjackson/cljr-helm"))]) (clj-refactor . [(20180826 2149) ((emacs (25 1)) (seq (2 19)) (yasnippet (0 6 1)) (paredit (24)) (multiple-cursors (1 2 2)) (clojure-mode (5 6 1)) (cider (0 17 0)) (edn (1 1 2)) (inflections (2 3)) (hydra (0 13 2))) "A collection of commands for refactoring Clojure code" tar ((:commit . "ec158357c4f7a375bc47f89de71ea28028a3bfa0") (:keywords "convenience" "clojure" "cider") (:authors ("Magnar Sveen" . "magnars@gmail.com") ("Lars Andersen" . "expez@expez.com") ("Benedek Fazekas" . "benedek.fazekas@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (clips-mode . [(20170909 823) nil "Major mode for editing CLIPS code and REPL" tar ((:commit . "dd38e2822640a38f7d8bfec4f69d8dd24be27074"))]) (clippy . [(20161028 1954) ((pos-tip (1 0))) "Show tooltip with function documentation at point" single ((:commit . "ad4b5dba4cede6d4b21533186303d3d3e9a2510f") (:keywords "docs") (:authors ("Matus Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matus Goljer" . "matus.goljer@gmail.com") (:url . "https://github.com/Fuco1/clippy.el"))]) (clipmon . [(20180129 1054) nil "Clipboard monitor - watch system clipboard, add changes to kill ring/autoinsert" tar ((:commit . "95dc56c7ed84a654ec90f4740eb6df1050de8cf1") (:keywords "convenience") (:authors ("Brian Burns" . "bburns.km@gmail.com")) (:maintainer "Brian Burns" . "bburns.km@gmail.com") (:url . "https://github.com/bburns/clipmon"))]) (cliphist . [(20171113 538) ((emacs (24 3)) (ivy (0 9 0))) "Read data from clipboard managers at Linux and Mac" tar ((:commit . "3cf4723defb41196c25bd174630dddd7caa579f2") (:keywords "clipboard" "manager" "history") (:authors ("Chen Bin <chenin DOT sh AT gmail DOT com>")) (:maintainer "Chen Bin <chenin DOT sh AT gmail DOT com>") (:url . "http://github.com/redguardtoo/cliphist"))]) (click-mode . [(20180611 44) ((emacs (24))) "Major mode for the Click Modular Router Project" single ((:commit . "b94ea8cce89cf0e753b2ab915202d49ffc470fb6") (:keywords "click" "router") (:authors ("Brian Malehorn" . "bmalehorn@gmail.com")) (:maintainer "Brian Malehorn" . "bmalehorn@gmail.com") (:url . "https://github.com/bmalehorn/click-mode"))]) (clevercss . [(20131229 155) nil "A major mode for editing CleverCSS files" single ((:commit . "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc") (:keywords "languages" "css") (:authors ("Joe Schafer" . "joesmoe10@gmail.com")) (:maintainer "Joe Schafer" . "joesmoe10@gmail.com"))]) (clear-text . [(20160406 2043) nil "Make you use clear text" tar ((:commit . "b50669b6077d6948f72cb3c649281d206e0c2f2b") (:keywords "convenience") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/clear-text.el"))]) (clean-buffers . [(20160529 2259) ((cl-lib (0 5))) "clean useless buffers" single ((:commit . "1be6c54e3095761b6b64bf749faae3dfce94e72a") (:keywords "convenience" "usability" "buffers") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com"))]) (clean-aindent-mode . [(20171017 2043) nil "Simple indent and unindent, trims indent white-space" single ((:commit . "a97bcae8f43a9ff64e95473e4ef0d8bafe829211") (:keywords "indentation" "whitespace" "backspace") (:authors ("peter marinov" . "efravia@gmail.com")) (:maintainer "peter marinov" . "efravia@gmail.com") (:url . "https://github.com/pmarinov/clean-aindent-mode"))]) (clang-format . [(20180406 1514) ((cl-lib (0 3))) "Format code using clang-format" single ((:commit . "5556c31528af2661bed3011bd63ffc0ed44e18a0") (:keywords "tools" "c"))]) (cl-lib-highlight . [(20140127 2112) ((cl-lib (0 3))) "full cl-lib font-lock highlighting" single ((:commit . "fd1b308e6e989791d1df14438efa6b77d20f7c7e") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/cl-lib-highlight"))]) (cl-format . [(20160413 45) nil "CL format routine." tar ((:commit . "4380cb8009c47cc6d9098b383082b93b1aefa460"))]) (citeproc . [(20180429 757) ((emacs (25)) (dash (2 13 0)) (s (1 12 0)) (f (0 18 0)) (queue (0 2)) (string-inflection (1 0)) (org (9))) "A CSL 1.0.1 Citation Processor" tar ((:commit . "44f147d228d2d652cdd404d31e987e14519c3eef") (:keywords "bib") (:authors ("András Simonyi" . "andras.simonyi@gmail.com")) (:maintainer "András Simonyi" . "andras.simonyi@gmail.com") (:url . "https://github.com/andras-simonyi/citeproc-el"))]) (circe-notifications . [(20180102 2318) ((emacs (24 4)) (circe (2 3)) (alert (1 2))) "Add desktop notifications to Circe." single ((:commit . "291149ac12877bbd062da993479d3533a26862b0") (:authors ("Ruben Maher" . "r@rkm.id.au")) (:maintainer "Ruben Maher" . "r@rkm.id.au") (:url . "https://github.com/eqyiel/circe-notifications"))]) (circe . [(20180525 1231) ((cl-lib (0 5))) "Client for IRC in Emacs" tar ((:commit . "fedfa7eb8516a53fa70b6a1f4fce4b5ab66ea91f") (:url . "https://github.com/jorgenschaefer/circe"))]) (circadian . [(20181024 1256) ((emacs (24 4))) "Theme-switching based on daytime" single ((:commit . "414127acad8e2e0092ca60918e6a7cb89da6e28a") (:keywords "themes") (:authors ("Guido Schmidt")) (:maintainer "Guido Schmidt" . "git@guidoschmidt.cc") (:url . "https://github.com/GuidoSchmidt/circadian"))]) (cinspect . [(20150716 233) ((emacs (24)) (cl-lib (0 5)) (deferred (0 3 1)) (python-environment (0 0 2))) "Use cinspect to look at the CPython source of builtins and other C objects!" single ((:commit . "4e199a90f89b335cccda1518aa0963e0a1d4fbab") (:keywords "python") (:authors ("Ben Yelsey" . "ben.yelsey@gmail.com")) (:maintainer "Ben Yelsey" . "ben.yelsey@gmail.com") (:url . "https://github.com/inlinestyle/cinspect-mode"))]) (cil-mode . [(20160622 1430) nil "Common Intermediate Language mode" single ((:commit . "a78a88ca9a66a82f069329a96e34b67478ae2d9b") (:keywords "languages") (:authors ("Friedrich von Never" . "friedrich@fornever.me")) (:maintainer "Friedrich von Never" . "friedrich@fornever.me") (:url . "https://github.com/ForNeVeR/cil-mode"))]) (ciel . [(20180914 815) ((emacs (24))) "A command that is clone of \"ci\" in vim." single ((:commit . "429773a3c551691a463ecfddd634b8bae2f48503") (:keywords "convinience") (:authors ("Takuma Matsushita" . "cs14095@gmail.com")) (:maintainer "Takuma Matsushita" . "cs14095@gmail.com") (:url . "https://github.com/cs14095/ciel.el"))]) (cider-spy . [(20160313 1440) ((emacs (24 4)) (cider (0 10 0)) (dash (2 5 0)) (cl-lib (0 5)) (noflet (0 0 15))) "Spy on CIDER to get info" single ((:commit . "0224608d240e9900e588b6df049c2a87c24fc936") (:keywords "languages" "clojure" "cider" "nrepl") (:authors ("Jon Pither" . "jon.pither@gmail.com")) (:maintainer "Jon Pither" . "jon.pither@gmail.com") (:url . "http://www.github.com/jonpither/cider-spy"))]) (cider-hydra . [(20181015 727) ((cider (0 18 0)) (hydra (0 13 0))) "Hydras for CIDER." single ((:commit . "5956c3909cd9beae11f64973e4f0d830cea7860d") (:keywords "convenience" "tools") (:authors ("Tianxiang Xiong" . "tianxiang.xiong@gmail.com")) (:maintainer "Tianxiang Xiong" . "tianxiang.xiong@gmail.com") (:url . "https://github.com/clojure-emacs/cider-hydra"))]) (cider-eval-sexp-fu . [(20160907 800) ((emacs (24)) (highlight (0)) (eval-sexp-fu (0 4 0))) "Briefly highlights an evaluated sexp." single ((:commit . "5687e7b33e17f2be40b036dac82da4a5bc6705fb") (:keywords "languages" "clojure" "cider") (:authors ("Sylvain Benner" . "sylvain.benner@gmail.com")) (:maintainer "Sylvain Benner" . "sylvain.benner@gmail.com"))]) (cider-decompile . [(20151122 537) ((cider (0 3 0)) (javap-mode (9))) "decompilation extension for cider" single ((:commit . "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651") (:keywords "languages" "clojure" "cider") (:authors ("Dmitry Bushenko")) (:maintainer "Dmitry Bushenko") (:url . "http://www.github.com/clojure-emacs/cider-decompile"))]) (cider . [(20181118 1736) ((emacs (25)) (clojure-mode (5 9)) (pkg-info (0 4)) (queue (0 2)) (spinner (1 7)) (seq (2 16)) (sesman (0 3 2))) "Clojure Interactive Development Environment that Rocks" tar ((:commit . "1fd1275a5621096bb3320498e032db3764d09f56") (:keywords "languages" "clojure" "cider") (:authors ("Tim King" . "kingtim@gmail.com") ("Phil Hagelberg" . "technomancy@gmail.com") ("Bozhidar Batsov" . "bozhidar@batsov.com") ("Artur Malabarba" . "bruce.connor.am@gmail.com") ("Hugo Duncan" . "hugo@hugoduncan.org") ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Bozhidar Batsov" . "bozhidar@batsov.com") (:url . "http://www.github.com/clojure-emacs/cider"))]) (chyla-theme . [(20180302 1658) nil "chyla.org - green color theme." single ((:commit . "ae5e7ecace2ab474151eb0ac5ef07fba2dc32f8a") (:authors ("Adam Chyła" . "adam@chyla.org")) (:maintainer "Adam Chyła" . "adam@chyla.org") (:url . "https://github.com/chyla/ChylaThemeForEmacs"))]) (chruby . [(20180114 1652) ((cl-lib (0 5))) "Emacs integration for chruby" single ((:commit . "42bc6d521f832eca8e2ba210f30d03ad5529788f") (:keywords "languages") (:authors ("Arne Brasseur" . "arne@arnebrasseur.net")) (:maintainer "Arne Brasseur" . "arne@arnebrasseur.net") (:url . "https://github.com/plexus/chruby.el"))]) (chronos . [(20150602 1529) nil "multiple simultaneous countdown / countup timers" tar ((:commit . "b360d9dae57aa553cf2a14ffa0756a51ad71de09") (:keywords "calendar") (:authors ("David Knight" . "dxknight@opmbx.org")) (:maintainer "David Knight" . "dxknight@opmbx.org") (:url . "http://github.com/dxknight/chronos"))]) (choice-program . [(20180921 313) ((emacs (25)) (cl-lib (1 0))) "parameter based program" tar ((:commit . "08ce5a5dd79690aed12fd9d152d8cb4be988fdb1") (:keywords "exec" "execution" "parameter" "option") (:authors ("Paul Landes")) (:maintainer "Paul Landes") (:url . "https://github.com/plandes/choice-program"))]) (chinese-yasdcv . [(20171015 144) ((cl-lib (0 5)) (pyim (1 6 0))) "Yet another StarDict frontend" tar ((:commit . "5ab830daf1273d5a5cddcb94b56a9737f12d996f") (:keywords "convenience" "chinese" "dictionary") (:authors ("Feng Shu" . "tumashu@gmail.com")) (:maintainer "Feng Shu" . "tumashu@gmail.com") (:url . "https://github.com/tumashu/chinese-yasdcv"))]) (chinese-word-at-point . [(20170811 941) ((cl-lib (0 5))) "Add `chinese-word' thing to `thing-at-point'" single ((:commit . "8223d7439e005555b86995a005b225ae042f0538") (:keywords "convenience" "chinese") (:authors ("Chunyang Xu" . "xuchunyang56@gmail.com")) (:maintainer "Chunyang Xu" . "xuchunyang56@gmail.com") (:url . "https://github.com/xuchunyang/chinese-word-at-point.el"))]) (chinese-wbim . [(20150624 350) nil "Enable Wubi Input Method in Emacs." tar ((:commit . "57ff61ff3895d77335709d24b40cefc4d10b0095"))]) (chinese-number . [(20161008 509) nil "Convert numbers between Arabic and Chinese formats" single ((:commit . "7311c2a0c5eea5f016a90d733dfe75144c302fb2") (:authors (nil . "zhcosin<zhcosin@163.com>")) (:maintainer nil . "zhcosin<zhcosin@163.com>") (:url . "https://github.com/zhcosin/chinese-number"))]) (chinese-conv . [(20170807 2128) ((cl-lib (0 5))) "Conversion between Chinese Characters with opencc or cconv" single ((:commit . "b56815bbb163d642e97fa73093b5a7e87cc32574") (:authors ("gucong" . "gucong43216@gmail.com")) (:maintainer "gucong" . "gucong43216@gmail.com") (:url . "https://github.com/gucong/emacs-chinese-conv"))]) (chicken-scheme . [(20141116 1939) nil "Scheme-mode extensions for Chicken Scheme" single ((:commit . "19b0b08b5592063e852cae094b394c7d1f923639") (:authors ("Daniel Leslie" . "dan@ironoxide.ca")) (:maintainer "Daniel Leslie" . "dan@ironoxide.ca") (:url . "http://github.com/dleslie/chicken-scheme"))]) (cherry-blossom-theme . [(20150622 342) ((emacs (24 0))) "a soothing color theme for Emacs24." single ((:commit . "eea7653e00f35973857ee23b27bc2fae5e753e50") (:authors ("Ben Yelsey" . "byelsey1@gmail.com")) (:maintainer "Ben Yelsey" . "byelsey1@gmail.com") (:url . "https://github.com/inlinestyle/emacs-cherry-blossom-theme"))]) (chef-mode . [(20180628 1453) nil "minor mode for editing an opscode chef repository" single ((:commit . "048d691cb63981ae235763d4a6ced4af5c729924") (:keywords "chef" "knife") (:authors ("Maciej Pasternacki" . "maciej@pasternacki.net")) (:maintainer "Maciej Pasternacki" . "maciej@pasternacki.net"))]) (cheerilee . [(20160313 1835) ((xelb (0 1))) "Toolkit library" tar ((:commit . "41bd81b5b0bb657241ceda5be6af5e07254d7376") (:keywords "tools"))]) (chee . [(20171123 2233) ((dash (2 12 1)) (s (1 10 0)) (f (0 18 2))) "Interface to chee using dired and image-dired" tar ((:commit . "669ff9ee429f24c3c2d03b83d9cb9aec5f86bb8b") (:url . "https://github.com/eikek/chee/tree/release/0.3.0/emacs"))]) (checkbox . [(20141117 58) ((emacs (24)) (cl-lib (0 5))) "Quick manipulation of textual checkboxes" single ((:commit . "335afa4404adf72973195a580458927004664d98") (:keywords "convenience") (:authors ("Cameron Desautels" . "camdez@gmail.com")) (:maintainer "Cameron Desautels" . "camdez@gmail.com") (:url . "http://github.com/camdez/checkbox.el"))]) (cheatsheet . [(20170126 2150) ((emacs (24)) (cl-lib (0 5))) "create your own cheatsheet" single ((:commit . "e4f8e0110167ea16a17a74517d1f10cb7ff805b8") (:keywords "convenience" "usability") (:authors ("Shirin Nikita" . "shirin.nikita@gmail.com")) (:maintainer "Shirin Nikita" . "shirin.nikita@gmail.com") (:url . "http://github.com/darksmile/cheatsheet/"))]) (cheat-sh . [(20170802 1118) ((emacs (24))) "Interact with cheat.sh" single ((:commit . "e90445124f3f145a047779e42d070a3c5e150f70") (:keywords "docs" "help") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/cheat-sh.el"))]) (chatwork . [(20170511 442) nil "ChatWork client for Emacs" single ((:commit . "fea231d479f06bf40dbfcf45de143eecc9ed744c") (:keywords "web") (:authors ("Masayuki Ataka" . "masayuki.ataka@gmail.com")) (:maintainer "Masayuki Ataka" . "masayuki.ataka@gmail.com") (:url . "https://github.com/ataka/chatwork"))]) (charmap . [(20160309 946) nil "Unicode table for Emacs" single ((:commit . "bd4b3e466d7a9433cf35167e3a68ec74fe631bb2") (:keywords "unicode" "character" "ucs") (:authors ("Anan Mikami" . "lateau@gmail.com")) (:maintainer "Anan Mikami" . "lateau@gmail.com") (:url . "https://github.com/lateau/charmap"))]) (char-menu . [(20180101 618) ((emacs (24 3)) (avy-menu (0 1))) "Create your own menu for fast insertion of arbitrary symbols" single ((:commit . "82f0422179737bcb9f93481aebaf1071d54fc859") (:keywords "convenience" "editing") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/char-menu"))]) (chapel-mode . [(20160504 808) nil "a CC Mode for Chapel derived from derived-mode-ex.el" single ((:commit . "6e095edd7639f5f0a81e14d6412410b49466697e") (:keywords "chapel" "languages" "oop") (:authors ("Steven T Balensiefer")) (:maintainer "Russel Winder" . "russel@winder.org.uk"))]) (change-inner . [(20150707 1544) ((expand-region (0 7))) "Change contents based on semantic units" single ((:commit . "52c543a4b9808c0d15b565fcdf646c9779de33e8") (:keywords "convenience" "extensions") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (challenger-deep-theme . [(20180816 2258) ((emacs (24))) "challenger-deep Theme" single ((:commit . "443ca72dca966b3d27dbec9eab54a09cbd76eac0") (:authors ("MaxSt")) (:maintainer "MaxSt") (:url . "https://github.com/challenger-deep-theme/emacs"))]) (cg . [(20181022 1316) ((emacs (24 3))) "major mode for editing Constraint Grammar files" single ((:commit . "34a892aa77c9870006bae988c79f694f2e5a68a3") (:keywords "languages") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org") (:url . "https://visl.sdu.dk/constraint_grammar.html"))]) (cftag-mode . [(20170812 540) ((emacs (25))) "Emacs mode for editing tag-based CFML files" single ((:commit . "86e77dcbb583191a3e755bdc29534f33d82bfc56") (:authors ("Andrew Myers" . "am2605@gmail.com")) (:maintainer "Andrew Myers" . "am2605@gmail.com") (:url . "https://github.com/am2605/cftag-mode"))]) (cframe . [(20170917 2209) ((emacs (25)) (buffer-manage (0 6)) (dash (2 13 0))) "customize a frame and fast switch size and positions" single ((:commit . "bb99672502046e87c8f029ce98c637f762a4fc54") (:keywords "frame" "customize") (:authors ("Paul Landes")) (:maintainer "Paul Landes") (:url . "https://github.com/plandes/cframe"))]) (cfml-mode . [(20170904 249) ((emacs (25)) (mmm-mode (0 5 4)) (cftag-mode (1 0 0))) "Emacs mode for editing CFML files" single ((:commit . "86e77dcbb583191a3e755bdc29534f33d82bfc56") (:authors ("Andrew Myers" . "am2605@gmail.com")) (:maintainer "Andrew Myers" . "am2605@gmail.com") (:url . "https://github.com/am2605/cfml-mode"))]) (cff . [(20160118 2018) ((cl-lib (0 5)) (emacs (24))) "Search of the C/C++ file header by the source and vice versa" single ((:commit . "b6ab2a28e64ef06f281ec74cfe3114e450644dfa") (:keywords "find-file") (:authors ("Alexey Veretennikov" . "alexey.veretennikov@gmail.com")) (:maintainer "Alexey Veretennikov" . "alexey.veretennikov@gmail.com") (:url . "https://github.com/fourier/cff"))]) (cfengine-code-style . [(20171115 2108) nil "C code style for CFEngine project." single ((:commit . "369d6d449119ecdbdcdd333c0b09ede82770cc91") (:authors ("Mikhail Gusarov" . "mikhail.gusarov@cfengine.com")) (:maintainer "Mikhail Gusarov" . "mikhail.gusarov@cfengine.com") (:url . "https://github.com/cfengine/core"))]) (ceylon-mode . [(20180606 1324) ((emacs (25))) "Major mode for editing Ceylon source code" single ((:commit . "948515672bc596dc118e8e3ede3ede5ec6a3c95a") (:keywords "languages" "ceylon") (:authors ("Lucas Werkmeister" . "mail@lucaswerkmeister.de")) (:maintainer "Lucas Werkmeister" . "mail@lucaswerkmeister.de") (:url . "https://github.com/lucaswerkmeister/ceylon-mode"))]) (cerbere . [(20181113 1641) ((pkg-info (0 5))) "Unit testing in Emacs for several programming languages" tar ((:commit . "bb18d932b16541105d41a668dbf6fc4e833a6dc2") (:keywords "python" "go" "php" "phpunit" "elisp" "ert" "tests" "tdd") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com") (:url . "https://github.com/nlamirault/cerbere"))]) (centimacro . [(20140306 1427) nil "Assign multiple macros as global key bindings" single ((:commit . "1b97a9b558ed9c49d5da1bfbf29b2506575c2742") (:keywords "macros") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/centimacro"))]) (centered-window . [(20171127 949) ((emacs (24 4))) "Center the text when there's only one window" single ((:commit . "24f7c5be9def20879f46659082d497e67b55d7af") (:keywords "faces" "windows") (:authors ("Anler Hernández Peral" . "inbox+emacs@anler.me")) (:maintainer "Anler Hernández Peral" . "inbox+emacs@anler.me") (:url . "https://github.com/anler/centered-window-mode"))]) (centered-cursor-mode . [(20180112 1555) nil "cursor stays vertically centered" single ((:commit . "00fb47d227f9e211ec1c58161a501a1550c3a60d") (:keywords "convenience") (:authors ("André Riemann" . "andre.riemann@web.de")) (:maintainer "André Riemann" . "andre.riemann@web.de") (:url . "https://github.com/andre-r/centered-cursor-mode.el"))]) (celestial-mode-line . [(20180518 822) ((emacs (24))) "Show lunar phase and sunrise/-set time in modeline" single ((:commit . "3f5794aca99b977f1592cf1ab4516ae7922196a1") (:keywords "extensions") (:authors ("Peter" . "craven@gmx.net")) (:maintainer "Peter" . "craven@gmx.net") (:url . "https://github.com/ecraven/celestial-mode-line"))]) (celery . [(20170225 924) ((emacs (24)) (dash-functional (2 11 0)) (s (1 9 0)) (deferred (0 3 2))) "a minor mode to draw stats from celery and more?" single ((:commit . "51197d74f5eaa8ae09144af7663a2f4277f07d16") (:keywords "celery" "convenience") (:authors ("ardumont" . "eniotna.t@gmail.com")) (:maintainer "ardumont" . "eniotna.t@gmail.com") (:url . "https://github.com/ardumont/emacs-celery"))]) (cedit . [(20141231 1614) nil "paredit-like commands for c-like languages" single ((:commit . "0878d851b6307c162bfbddd2bb02789e5e27bc2c") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (cdnjs . [(20161031 1522) ((dash (2 13 0)) (deferred (0 4)) (f (0 17 2)) (pkg-info (0 5))) "A front end for http://cdnjs.com" single ((:commit . "ce19880d3ec3d81e6c665d0b1dfea99cc7a3f908") (:keywords "tools") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/cdnjs.el"))]) (cdlatex . [(20140707 1126) nil "Fast input methods for LaTeX environments and math" single ((:commit . "ff534912b93fc2c7a6b191b1c8d6d699a46bbb01") (:keywords "tex") (:authors ("Carsten Dominik" . "carsten.dominik@gmail.com")) (:maintainer "Carsten Dominik" . "carsten.dominik@gmail.com"))]) (cdb . [(20151205 1343) nil "constant database (cdb) reader for Emacs Lisp" single ((:commit . "b05c610e27b86e71fb4e8d67292ef6a696dd5992") (:keywords "cdb") (:authors ("Yusuke Shinyama <yusuke at cs . nyu . edu>")) (:maintainer "SKK Development Team" . "skk@ring.gr.jp"))]) (cd-compile . [(20141108 1957) nil "run compile in a specific directory" single ((:commit . "10284ccae86afda4a37b09ba90acd1e2efedec9f") (:authors ("Jamie Nicol" . "jamie@thenicols.net")) (:maintainer "Jamie Nicol" . "jamie@thenicols.net"))]) (ccls . [(20181106 546) ((emacs (25 1)) (lsp-mode (4 2)) (dash (0 14)) (projectile (1 0 0))) "ccls client for lsp-mode" tar ((:commit . "07ad553950e69f862f7c74c9b1f02c00ab450d22") (:keywords "languages" "lsp" "c++") (:authors ("Tobias Pisani, Fangrui Song")) (:maintainer "Tobias Pisani, Fangrui Song") (:url . "https://github.com/MaskRay/emacs-ccls"))]) (ccc . [(20151205 1343) nil "buffer local cursor color control library" single ((:commit . "b05c610e27b86e71fb4e8d67292ef6a696dd5992") (:keywords "cursor") (:authors ("Masatake YAMATO" . "masata-y@is.aist-nara.ac.jp")) (:maintainer "SKK Development Team" . "skk@ring.gr.jp") (:url . "https://github.com/skk-dev/ddskk/blob/master/READMEs/README.ccc.org"))]) (cbm . [(20171116 1240) ((cl-lib (0 5))) "Switch to similar buffers." single ((:commit . "5b41c936ba9f6d170309a85ffebc9939c1050b31") (:keywords "buffers") (:authors ("Lukas Fürmetz" . "fuermetz@mailbox.org")) (:maintainer "Lukas Fürmetz" . "fuermetz@mailbox.org") (:url . "http://github.com/akermu/cbm.el"))]) (catmacs . [(20170826 1157) ((emacs (24))) "Simple CAT interface for Yaesu Transceivers." single ((:commit . "65d3e0563abe6ff9577202cf2278074d4130fbdd") (:keywords "comm" "hardware") (:authors ("Frank Singleton" . "b17flyboy@gmail.com")) (:maintainer "Frank Singleton" . "b17flyboy@gmail.com") (:url . "https://bitbucket.org/pymaximus/catmacs"))]) (caskxy . [(20140513 1539) ((log4e (0 2 0)) (yaxception (0 1))) "Control Cask in Emacs" single ((:commit . "dc18dcab7ed526070ab76de071c9c5272e6ac40e") (:keywords "convenience") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/caskxy"))]) (cask-package-toolset . [(20170921 2256) ((emacs (24)) (cl-lib (0 3)) (s (1 6 1)) (dash (1 8 0)) (f (0 10 0)) (commander (0 2 0)) (ansi (0 1 0)) (shut-up (0 1 0))) "Toolsettize your package" tar ((:commit . "2c74cd827e88c7f8360581a841e45f0b794510e7") (:keywords "convenience" "tools") (:authors ("Adrien Becchis" . "adriean.khisbe@live.fr")) (:maintainer "Adrien Becchis" . "adriean.khisbe@live.fr") (:url . "http://github.com/AdrieanKhisbe/cask-package-toolset.el"))]) (cask-mode . [(20160410 1449) ((emacs (24 3))) "major mode for editing Cask files" single ((:commit . "7c6719d3bb4fe552958634bd5a11abc56681f3a7") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (cask . [(20181107 942) ((s (1 8 0)) (dash (2 2 0)) (f (0 16 0)) (epl (0 5)) (shut-up (0 1 0)) (cl-lib (0 3)) (package-build (1 2)) (ansi (0 4 1))) "Cask: Project management for Emacs package development" tar ((:commit . "199b4380dd3e178ff9df3a9d13d044d67e522b3f") (:keywords "speed" "convenience") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/cask/cask"))]) (caseformat . [(20160115 1615) ((emacs (24)) (cl-lib (0 5)) (dash (2 12 1)) (s (1 10 0))) "Format based letter case converter" single ((:commit . "92a31f6a7cae0b4e2af106cd6f2b0abe6c2d8921") (:keywords "convenience") (:authors ("Hiroki YAMAKAWA" . "s06139@gmail.com")) (:maintainer "Hiroki YAMAKAWA" . "s06139@gmail.com") (:url . "https://github.com/HKey/caseformat"))]) (caroline-theme . [(20160318 520) ((emacs (24))) "A trip down to New Orleans..." single ((:commit . "222fd483db304509f9e422dc82883d808e023ceb") (:authors ("Jack Killilea" . "jaaacckz1@gmail.com")) (:maintainer "Jack Killilea" . "jaaacckz1@gmail.com") (:url . "https://github.com/xjackk/carolines-theme"))]) (cargo . [(20181112 722) ((emacs (24 3)) (rust-mode (0 2 0)) (markdown-mode (2 4))) "Emacs Minor Mode for Cargo, Rust's Package Manager." tar ((:commit . "f8504cd51021741a3931c28dc5e87cc16687420b") (:keywords "tools") (:authors ("Kevin W. van Rooijen" . "kevin.van.rooijen@attichacker.com")) (:maintainer "Kevin W. van Rooijen" . "kevin.van.rooijen@attichacker.com"))]) (carbon-now-sh . [(20180331 1735) ((emacs (24 4)) (dash (2 12 0))) "https://carbon.now.sh integration." single ((:commit . "71dee6bc4f2a2cb02b9b7b5e643c4c92b880e6a4") (:keywords "convenience") (:authors ("Vitalii Elenhaupt")) (:maintainer "Vitalii Elenhaupt") (:url . "https://github.com/veelenga/carbon-now-sh.el"))]) (capture . [(20130828 1644) nil "screencasting with \"avconv\" or \"ffmpeg\"" tar ((:commit . "1bb26060311da76767f70096218313fc93b0c806") (:authors ("Sergey Pashinin <sergey at pashinin dot com>")) (:maintainer "Sergey Pashinin <sergey at pashinin dot com>"))]) (cangjie . [(20181015 1220) ((emacs (24)) (s (1 12 0)) (dash (2 14 1)) (f (0 2 0))) "retrieve cangjie code for han characters" single ((:commit . "98b53c3ffc289d5fbc893651b17280ed2f043d0b") (:keywords "convenience" "writing") (:url . "https://github.com/kisaragi-hiu/cangjie.el"))]) (caml . [(20181011 1328) nil "OCaml code editing commands for Emacs" tar ((:commit . "5daea807289deace6d53f10992ba3541e0e86bb8") (:keywords "ocaml") (:authors ("Jacques Garrigue" . "garrigue@kurims.kyoto-u.ac.jp") ("Ian T Zimmerman" . "itz@rahul.net")) (:maintainer "Damien Doligez" . "damien.doligez@inria.fr") (:url . "https://github.com/ocaml/ocaml/"))]) (camcorder . [(20160405 434) ((emacs (24)) (names (20150000)) (cl-lib (0 5))) "Record screencasts in gif or other formats." single ((:commit . "b13d939990e6709492efefc0945798adc1c0fcb9") (:keywords "multimedia" "screencast") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Bruce-Connor/camcorder.el"))]) (calmer-forest-theme . [(20130926 510) nil "Darkish theme with green/orange tint" single ((:commit . "87ba7bae389084d13fe3bc34e0c923017eda6ba0") (:authors ("Artur Hefczyc, created 2003-04-18") ("David Caldwell" . "david@porkrind.org")) (:maintainer "Artur Hefczyc, created 2003-04-18") (:url . "https://github.com/caldwell/calmer-forest-theme"))]) (call-graph . [(20180509 1335) ((emacs (25 1)) (cl-lib (0 6 1)) (hierarchy (0 7 0)) (tree-mode (1 0 0)) (ivy (0 10 0))) "Library to generate call graph for c/c++ functions" single ((:commit . "7e51c1eea59b13e6c1c099680492ebcd58893399") (:keywords "programming" "convenience") (:authors ("Huming Chen" . "chenhuming@gmail.com")) (:maintainer "Huming Chen" . "chenhuming@gmail.com") (:url . "https://github.com/beacoder/call-graph"))]) (calfw-org . [(20160303 258) nil "calendar view for org-agenda" single ((:commit . "03abce97620a4a7f7ec5f911e669da9031ab9088") (:keywords "calendar" "org") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>"))]) (calfw-ical . [(20150703 819) nil "calendar view for ical format" single ((:commit . "03abce97620a4a7f7ec5f911e669da9031ab9088") (:keywords "calendar") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>"))]) (calfw-howm . [(20170704 4) nil "calendar view for howm" single ((:commit . "03abce97620a4a7f7ec5f911e669da9031ab9088") (:keywords "calendar") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>"))]) (calfw-gcal . [(20120111 1000) nil "edit Google calendar for calfw.el." tar ((:commit . "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870") (:keywords "convenience" "calendar" "calfw.el") (:authors ("myuhe <yuhei.maeda_at_gmail.com>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/calfw-gcal.el"))]) (calfw-cal . [(20170320 1206) nil "calendar view for emacs diary" single ((:commit . "03abce97620a4a7f7ec5f911e669da9031ab9088") (:keywords "calendar") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>"))]) (calfw . [(20180118 45) nil "Calendar view framework on Emacs" single ((:commit . "03abce97620a4a7f7ec5f911e669da9031ab9088") (:keywords "calendar") (:authors ("SAKURAI Masashi <m.sakurai at kiwanami.net>")) (:maintainer "SAKURAI Masashi <m.sakurai at kiwanami.net>") (:url . "https://github.com/kiwanami/emacs-calfw"))]) (calendar-norway . [(20180906 1502) nil "Norwegian calendar" single ((:commit . "8d1fda8268caa74ba5e712c7675ed3c34e46e2d4") (:keywords "calendar" "norwegian" "localization") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org"))]) (cal-china-x . [(20180211 1901) ((cl-lib (0 5))) "Chinese localization, lunar/horoscope/zodiac info and more..." tar ((:commit . "e9b309065829af3a9a0c526509bd64d9228fdced") (:authors ("William Xu" . "william.xwl@gmail.com")) (:maintainer "William Xu" . "william.xwl@gmail.com") (:url . "https://github.com/xwl/cal-china-x"))]) (cakecrumbs . [(20180929 139) ((emacs (24 4))) "Show parents on header for HTML/Jade/Sass/Stylus" single ((:commit . "cf8c1df885eee004602f73c4f841301e200e5850") (:keywords "languages" "html" "jade" "pug" "sass" "scss" "stylus") (:authors ("ono hiroko <kuanyui.github.io>")) (:maintainer "ono hiroko <kuanyui.github.io>") (:url . "https://github.com/kuanyui/cakecrumbs.el"))]) (cake-inflector . [(20140415 858) ((s (1 9 0))) "Lazy porting CakePHP infrector.php to el" single ((:commit . "a1d338ec4840b1b1bc14f7f9298c07e2c1d2d8fc") (:authors ("k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>")) (:maintainer "k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>") (:url . "https://github.com/k1LoW/emacs-cake-inflector"))]) (cacoo . [(20120319 2359) ((concurrent (0 3 1))) "Minor mode for Cacoo : http://cacoo.com" tar ((:commit . "c9fa04fbe97639b24698709530361c2bb5f3273c"))]) (cache . [(20111019 2300) nil "implementation of a hash table whose key-value pairs expire" single ((:commit . "7499586b6c8224df9f5c5bc4dec96b008258d580") (:authors ("Nathaniel Flath")) (:maintainer "Nathaniel Flath"))]) (cabledolphin . [(20160204 938) ((emacs (24 4)) (seq (1 0))) "capture Emacs network traffic" single ((:commit . "fffc192cafa61558e924323d6da8166fe5f2a6f9") (:keywords "comm") (:authors ("Magnus Henoch" . "magnus.henoch@gmail.com")) (:maintainer "Magnus Henoch" . "magnus.henoch@gmail.com"))]) (c0-mode . [(20151110 1852) nil "Major mode for editing C0 files" tar ((:commit . "c214093c36864d6208fcb9e6a72413ed17ed5d60") (:keywords "c0" "languages") (:authors ("Jakob Max Uecker")) (:maintainer "Jakob Max Uecker") (:url . "http://c0.typesafety.net/"))]) (c-eldoc . [(20181109 439) nil "helpful description of the arguments to C functions" single ((:commit . "e35c0e40f71c25804919f6c01fd27e95c2e2adb7") (:authors ("Nathaniel Flath" . "flat0103@gmail.com")) (:maintainer "Nathaniel Flath" . "flat0103@gmail.com") (:url . "http://github.com/nflath/c-eldoc"))]) (c-c-combo . [(20151224 255) nil "Make stuff happen when you reach a target wpm" tar ((:commit . "a261a833499a7fdc29610863b3aafc74818770ba") (:authors ("Diego Berrocal" . "cestdiego@gmail.com")) (:maintainer "Diego Berrocal" . "cestdiego@gmail.com") (:url . "https://www.github.com/CestDiego/c-c-combo.el"))]) (button-lock . [(20150223 1354) nil "Clickable text defined by regular expression" single ((:commit . "f9082feb329432fcf2ac49a95e64bed9fda24d58") (:keywords "mouse" "button" "hypermedia" "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/button-lock"))]) (buttercup . [(20181103 1106) nil "Behavior-Driven Emacs Lisp Testing" tar ((:commit . "4089d5f66dcf1dd25d8e56fe6508f1fa48ac097c"))]) (butler . [(20150812 8) ((deferred (0 3 2)) (json (1 2)) (emacs (24))) "Emacs client for Jenkins" tar ((:commit . "8ceb35737107572455cca9a61ff46b3ff78f1016"))]) (busybee-theme . [(20170719 928) nil "port of vim's mustang theme" single ((:commit . "66b2315b030582d0ebee605cf455d386d8c30fcd") (:authors ("martin haesler")) (:maintainer "martin haesler") (:url . "http://github.com/mswift42/busybee-theme"))]) (buster-snippets . [(20151125 1010) ((yasnippet (0 8 0))) "Yasnippets for the Buster javascript testing framework" tar ((:commit . "bb8769dae132659858e74d52f3f4e8790399423a") (:keywords "snippets") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (buster-mode . [(20140928 1213) nil "Minor mode to speed up development when writing tests with Buster.js" single ((:commit . "de6958ef8369400922618b8d1e99abfa91b97ac5") (:keywords "buster" "testing" "javascript"))]) (bury-successful-compilation . [(20181106 403) nil "Bury the *compilation* buffer after successful compilation" single ((:commit . "674644c844184605a1bb4f9487a60f7a780a6fe7") (:keywords "compilation") (:authors ("Eric Crosson" . "esc@ericcrosson.com")) (:maintainer "Eric Crosson" . "esc@ericcrosson.com"))]) (bundler . [(20160815 915) ((inf-ruby (2 1)) (cl-lib (0 5))) "Interact with Bundler from Emacs" single ((:commit . "f981f67c33b42243e57a78c358dffff70022b56b") (:keywords "bundler" "ruby") (:authors ("Tobias Svensson" . "tob@tobiassvensson.co.uk")) (:maintainer "Tobias Svensson" . "tob@tobiassvensson.co.uk") (:url . "http://github.com/endofunky/bundler.el"))]) (build-status . [(20171111 1947) ((cl-lib (0 5))) "Mode line build status indicator" single ((:commit . "ef44185d9dd748ea578d68398f3f729a8adb45b5") (:keywords "mode-line" "ci" "circleci" "travis-ci") (:authors ("Skye Shaw" . "skye.shaw@gmail.com")) (:maintainer "Skye Shaw" . "skye.shaw@gmail.com") (:url . "http://github.com/sshaw/build-status"))]) (build-helper . [(20161009 1755) ((projectile (0 9 0))) "Utilities to help build code" single ((:commit . "7a6fe71125a26ed1c492dab77cc688a7fe1d68ac") (:keywords "convenience") (:authors ("Afonso Bordado" . "afonsobordado@az8.co")) (:maintainer "Afonso Bordado" . "afonsobordado@az8.co") (:url . "http://github.com/afonso360/build-helper"))]) (build-farm . [(20180906 1858) ((emacs (24 4)) (bui (1 1 0)) (magit-popup (2 1 0))) "Interface for Nix and Guix build farms (Hydra and Cuirass)" tar ((:commit . "e244dea35566a10253d61be430d3caf81b779af8") (:keywords "tools") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://gitlab.com/alezost-emacs/build-farm"))]) (bui . [(20180812 2113) ((emacs (24 3)) (dash (2 11 0))) "Buffer interface library" tar ((:commit . "bd3c5ee32d28d80c6eb54b0340626103c32e3093") (:keywords "tools") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/bui.el"))]) (bug-reference-github . [(20180128 1314) nil "Set `bug-reference-url-format' in Github repos" tar ((:commit . "f570a0532bfb44f095b42cf68ab1f69799101137") (:keywords "programming" "tools") (:authors ("Arne Jørgensen" . "arne@arnested.dk")) (:maintainer "Arne Jørgensen" . "arne@arnested.dk") (:url . "https://github.com/arnested/bug-reference-github"))]) (bufshow . [(20130726 1838) ((emacs (24 1))) "A simple presentation tool for Emacs." single ((:commit . "d60a554e7239e6f7520d9c3436d5ecdbc9cf6957") (:authors ("Peter Jones" . "pjones@pmade.com")) (:maintainer "Peter Jones" . "pjones@pmade.com") (:url . "https://github.com/pjones/bufshow"))]) (buffer-watcher . [(20170913 839) ((f (0 16 2)) (cl-lib (0 5))) "Easily run shell scripts per filetype/directory when a buffer is saved" single ((:commit . "b32c67c8a5d724257d759f4c903d0dedc32246ef") (:authors ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Nicolas Petton" . "nicolas@petton.fr"))]) (buffer-utils . [(20140512 1400) nil "Buffer-manipulation utility functions" single ((:commit . "685b13457e3a2085b7584e41365d2aa0779a1b6f") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/buffer-utils"))]) (buffer-sets . [(20170718 340) ((cl-lib (0 5))) "Sets of Buffers for Buffer Management" single ((:commit . "4a4ccb0d6916c3e9fba737bb7b48e8aac921954e") (:keywords "buffer-management") (:authors ("Samuel W. Flint" . "swflint@flintfam.org")) (:maintainer "Samuel W. Flint" . "swflint@flintfam.org") (:url . "http://github.com/swflint/buffer-sets"))]) (buffer-move . [(20160615 1803) nil "easily swap buffers" single ((:commit . "cb517ecf8409b5fdcda472d7190c6021f0c49751") (:keywords "lisp" "convenience") (:url . "https://github.com/lukhas/buffer-move"))]) (buffer-manage . [(20180528 1613) ((emacs (25)) (choice-program (0 3)) (dash (2 13 0))) "manage buffers" tar ((:commit . "8bbe342a4dafcfdaf305baea98bd4208036ab89a") (:keywords "interactive" "buffer" "management") (:authors ("Paul Landes")) (:maintainer "Paul Landes") (:url . "https://github.com/plandes/buffer-manage"))]) (buffer-flip . [(20180307 2251) nil "Cycle through buffers like Alt-Tab in Windows" single ((:commit . "e093360e05164c78255866c1ac8f966aa38ba514") (:keywords "convenience") (:authors ("Russell Black" . "killdash9@github")) (:maintainer "Russell Black" . "killdash9@github") (:url . "https://github.com/killdash9/buffer-flip.el"))]) (buffer-buttons . [(20150106 1439) nil "Define, save, and load code-safe buttons in files for emacs" single ((:commit . "2feb8494fa7863b98256bc85da670d74a3a8a975") (:authors ("Ryan Pavlik" . "rpavlik@gmail.com")) (:maintainer "Ryan Pavlik" . "rpavlik@gmail.com") (:url . "https://github.com/rpav/buffer-buttons"))]) (buckwalter . [(20180107 1643) nil "Write arabic using Buckwalter transliteration" single ((:commit . "2aa5451c3682c268adebc6b1191a796466732f53") (:keywords "arabic" "transliteration" "i18n") (:authors ("Joe HAKIM RAHME" . "joehakimrahme@gmail.com")) (:maintainer "Joe HAKIM RAHME" . "joehakimrahme@gmail.com") (:url . "https://github.com/joehakimrahme/buckwalter-arabic"))]) (bubbleberry-theme . [(20141017 944) ((emacs (24 1))) "A theme based on LightTable for Emacs24" single ((:commit . "22e9adf4586414024e4592972022ec297321b320") (:authors ("Jason Milkins" . "jasonm23@gmail.com") ("Gaurav Giri github.com/grvgr")) (:maintainer "Jason Milkins" . "jasonm23@gmail.com") (:url . "https://github.com/jasonm23/emacs-bubbleberry-theme"))]) (bts-github . [(20170401 1249) ((bts (0 0 1)) (gh (0 8 2))) "A plugin of bts.el for GitHub" single ((:commit . "ef2cf9202dc2128e5efdb613bfde9276a8cd95ad") (:keywords "convenience" "git" "github") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-bts-github"))]) (bts . [(20151109 1333) ((widget-mvc (0 0 2)) (log4e (0 3 0)) (yaxception (0 3 3)) (dash (2 9 0)) (s (1 9 0)) (pos-tip (0 4 5))) "A unified UI for various bug tracking systems" single ((:commit . "df42d58a36447697f93b56e69f5e700b2baef1f9") (:keywords "convenience") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/emacs-bts"))]) (btc-ticker . [(20151113 1459) ((json (1 2)) (request (0 2 0))) "Shows latest bitcoin price" single ((:commit . "845235b545f070d0812cd1654cbaa4997565824f") (:keywords "news") (:authors ("Jorge Niedbalski R." . "jnr@metaklass.org")) (:maintainer "Jorge Niedbalski R." . "jnr@metaklass.org"))]) (bshell . [(20170903 1837) ((emacs (25)) (buffer-manage (0 5))) "manage and track multiple inferior shells" single ((:commit . "884a8b906617d305e9d5d2c3750618d2f86f9aed") (:keywords "interactive" "shell" "management") (:authors ("Paul Landes")) (:maintainer "Paul Landes") (:url . "https://github.com/plandes/bshell"))]) (brutalist-theme . [(20181023 1222) nil "Brutalist theme" tar ((:commit . "8899f4f4a7faf0080977cd137e0ad7b00c40f1e8") (:authors ("Gergely Nagy")) (:maintainer "Gergely Nagy") (:url . "https://git.madhouse-project.org/algernon/brutalist-theme.el"))]) (browse-url-dwim . [(20140731 1922) ((string-utils (0 3 2))) "Context-sensitive external browse URL or Internet search" single ((:commit . "3d611dbb167c286109ac53995ad68286d87aafb9") (:keywords "hypermedia") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/browse-url-dwim"))]) (browse-kill-ring . [(20171219 1908) nil "interactively insert items from kill-ring" single ((:commit . "8debc43e41d7e51532698331c6f283905890b904") (:keywords "convenience") (:authors ("Colin Walters" . "walters@verbum.org")) (:maintainer "browse-kill-ring" . "browse-kill-ring@tonotdo.com") (:url . "https://github.com/browse-kill-ring/browse-kill-ring"))]) (browse-at-remote . [(20180622 631) ((f (0 17 2)) (s (1 9 0)) (cl-lib (0 5))) "Open github/gitlab/bitbucket/stash page from Emacs" single ((:commit . "99af94ada33badd3e1eceb704e07f62c1eef513a") (:keywords "github" "gitlab" "bitbucket" "convenience") (:authors ("Rustem Muslimov" . "r.muslimov@gmail.com")) (:maintainer "Rustem Muslimov" . "r.muslimov@gmail.com"))]) (broadcast . [(20151205 212) ((emacs (24 4))) "Links buffers together for simultaneous editing." single ((:commit . "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16") (:keywords "convenience" "frames" "link" "cursors") (:authors ("Russell Black" . "killdash9@github")) (:maintainer "Russell Black" . "killdash9@github") (:url . "https://github.com/killdash9/broadcast.el"))]) (brainfuck-mode . [(20150113 842) ((langdoc (20130601 1450))) "Brainfuck mode for Emacs" single ((:commit . "36e69552bb3b97a4f888d362c59845651bd0d492") (:keywords "brainfuck" "langdoc") (:authors ("Tomoya Tanjo" . "ttanjo@gmail.com")) (:maintainer "Tomoya Tanjo" . "ttanjo@gmail.com") (:url . "https://github.com/tom-tan/brainfuck-mode/"))]) (bracketed-paste . [(20160407 2348) ((emacs (24 3))) "bracketed paste mode support within emacs -nw" single ((:commit . "843ce3bbb63d560face889e13a57a2f7543957d5") (:keywords "terminals") (:authors ("Takeshi Banse" . "takebi@laafc.net")) (:maintainer "Takeshi Banse" . "takebi@laafc.net"))]) (bpr . [(20180220 1844) ((emacs (24))) "Background Process Runner" tar ((:commit . "af84a83dea09d86e77d87ac30604f2c5b4bf4117") (:keywords "background" "async" "process" "management") (:authors ("Ilya Babanov" . "ilya-babanov@ya.ru")) (:maintainer "Ilya Babanov" . "ilya-babanov@ya.ru") (:url . "https://github.com/ilya-babanov/emacs-bpr"))]) (bpe . [(20141228 2205) ((emacs (24 1))) "Blog from Org mode to Blogger" single ((:commit . "7b5b25f83506e6c9f4075d3803fa32404943a189") (:keywords "blogger" "blog") (:authors ("Yuta Yamada <cokesboy\"at\"gmail.com>")) (:maintainer "Yuta Yamada <cokesboy\"at\"gmail.com>") (:url . "https://github.com/yuutayamada/bpe"))]) (boxquote . [(20170802 1117) ((cl-lib (0 5))) "Quote text with a semi-box." single ((:commit . "7e47e0e2853bc1215739b2e28f260e9eed93b2c5") (:keywords "quoting") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/boxquote.el"))]) (boron-theme . [(20170808 1308) ((emacs (24 0))) "an Emacs 24 theme based on Boron (tmTheme)" single ((:commit . "87ae1a765e07429fec25d2f29b004f84b52d2e0a") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (borland-blue-theme . [(20160117 1321) ((emacs (24 1))) "Blue/yellow theme based on old DOS Borland/Turbo C IDE" single ((:commit . "db74eefebbc89d3c62575f8f50b319e87b4a3470") (:keywords "themes") (:authors ("Alexey Veretennikov <alexey dot veretennikov at gmail dot com>")) (:maintainer "Alexey Veretennikov <alexey dot veretennikov at gmail dot com>") (:url . "http://github.com/fourier/borland-blue-theme"))]) (borg . [(20181031 2202) ((emacs (26)) (dash (2 14 1)) (epkg (3 1 1)) (magit (2 13 0))) "assimilate Emacs packages as Git submodules" tar ((:commit . "73990d3039f94da4ba213a3423f42f47f454d5db") (:keywords "tools") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/emacscollective/borg"))]) (boon . [(20181014 927) ((emacs (25 1)) (expand-region (0 10 0)) (dash (2 12 0)) (multiple-cursors (1 3 0))) "Ergonomic Command Mode for Emacs." tar ((:commit . "675719ec1f6608a690fc613214920ac3c0d350a3"))]) (bool-flip . [(20161215 1539) ((emacs (24 3))) "flip the boolean under the point" single ((:commit . "f58a9a7b9ab875bcfbd57c8262697ae404eb4485") (:keywords "boolean" "convenience" "usability") (:authors ("Michael Brandt" . "michaelbrandt5@gmail.com")) (:maintainer "Michael Brandt" . "michaelbrandt5@gmail.com") (:url . "http://github.com/michaeljb/bool-flip/"))]) (boogie-friends . [(20171025 255) ((cl-lib (0 5)) (dash (2 10 0)) (flycheck (0 23)) (yasnippet (0 9 0 1)) (company (0 8 12))) "A collection of programming modes for Boogie, Dafny, and Z3 (SMTLIB v2)." tar ((:commit . "ff9903783013f3598b6f44c99d47b25c5cdbed00"))]) (bonjourmadame . [(20170919 1134) nil "Say \"Hello ma'am!\"" single ((:commit . "d3df185fce78aefa689fded8e56a654f0fde4ac0"))]) (bongo . [(20171119 242) ((cl-lib (0 5)) (emacs (24 1))) "play music with Emacs" tar ((:commit . "3d246be1e8d14865f5253567ab8fee5d4e9c470c"))]) (bolt-mode . [(20180310 810) ((emacs (24 3))) "Editing support for Bolt language" single ((:commit . "85a5a752bfbebb4aed884326c25db64c000e9934") (:keywords "languages") (:authors ("Mikhail Pontus" . "mpontus@gmail.com")) (:maintainer "Mikhail Pontus" . "mpontus@gmail.com") (:url . "https://github.com/mpontus/bolt-mode"))]) (bog . [(20180815 2213) ((cl-lib (0 5))) "Extensions for research notes in Org mode" single ((:commit . "b5df3647f55359f8546dcfa991a351673a069a49") (:keywords "bib" "outlines") (:authors ("Kyle Meyer" . "kyle@kyleam.com")) (:maintainer "Kyle Meyer" . "kyle@kyleam.com") (:url . "https://github.com/kyleam/bog"))]) (bnfc . [(20160605 1927) ((emacs (24 3))) "Define context-free grammars for the BNFC tool" single ((:commit . "1b58df1dd0cb9b81900632fb2843a03b94f56fdb") (:keywords "languages" "tools") (:authors ("Jacob Mitchell" . "jmitchell@member.fsf.org")) (:maintainer "Jacob Mitchell" . "jmitchell@member.fsf.org") (:url . "https://github.com/jmitchell/bnfc-mode"))]) (bmx-mode . [(20180929 1132) ((emacs (25 1)) (cl-lib (0 5)) (company (0 9 4)) (dash (2 13 0)) (s (1 12 0))) "Batch Mode eXtras" single ((:commit . "536b332edc3b98cc97588c937c7368803ba5961c") (:keywords "c" "convenience" "tools") (:authors ("Jostein Kjønigsen" . "jostein@gmail.com")) (:maintainer "Jostein Kjønigsen" . "jostein@gmail.com") (:url . "http://github.com/josteink/bmx-mode"))]) (bm . [(20181012 1631) nil "Visible bookmarks in buffer." tar ((:commit . "b85d407b53e1d852c47fcea2a245a4e67e48c38a") (:keywords "bookmark" "highlight" "faces" "persistent") (:authors ("Jo Odland <jo.odland(at)gmail.com>")) (:maintainer "Jo Odland <jo.odland(at)gmail.com>") (:url . "https://github.com/joodland/bm"))]) (blog-minimal . [(20181021 849) ((ht (1 5)) (simple-httpd (1 4 6)) (mustache (0 22)) (s (1 11 0)) (org (9 0 3))) "a simple static site generator based on org mode" tar ((:commit . "356c878322258159021eecdd15757e11cf02e335") (:keywords "tools") (:authors ("Thank Fly" . "thiefuniverses@gmail.com")) (:maintainer "Thank Fly" . "thiefuniverses@gmail.com") (:url . "https://github.com/thiefuniverse/blog-minimal"))]) (blog-admin . [(20170923 1409) ((ctable (0 1 1)) (s (1 10 0)) (f (0 17 3)) (names (20151201 0)) (cl-lib (0 5))) "Blog admin for emacs with hexo/org-page supported" tar ((:commit . "b5f2e1dad7d68ec903619f7280bb0bcb7e398a1e") (:keywords "tools" "blog" "org" "hexo" "org-page") (:authors (nil . "code.falling@gmail.com")) (:maintainer nil . "code.falling@gmail.com"))]) (blockdiag-mode . [(20160427 524) ((emacs (24 3))) "Major mode for editing blockdiag files" single ((:commit . "f3b21ba433d60327cebd103ae4492200750e24a9") (:authors ("xcezx" . "main.xcezx@gmail.com")) (:maintainer "xcezx" . "main.xcezx@gmail.com") (:url . "https://github.com/xcezx/xdiag-mode"))]) (bln-mode . [(20180730 1223) nil "binary line navigation minor mode for cursor movement in long lines" single ((:commit . "b5e86b1bc8b7ac25bf8ec07056824861c4c3f050") (:keywords "motion" "location" "cursor" "convenience") (:authors ("Maarten Grachten")) (:maintainer "Maarten Grachten") (:url . "https://github.com/mgrachten/bln-mode"))]) (bliss-theme . [(20170808 1307) ((emacs (24 0))) "an Emacs 24 theme based on Bliss (tmTheme)" single ((:commit . "c3cf6d8a666ab26909b7da158f9e94df71a5fbbf") (:authors ("Jason Milkins")) (:maintainer "Jason Milkins") (:url . "https://github.com/emacsfodder/tmtheme-to-deftheme"))]) (blimp . [(20180903 2240) ((emacs (25)) (eimp (1 4 0))) "Bustling Image Manipulation Package" single ((:commit . "a4c538c52f2371f4a184e4c905584c6decf7b407") (:keywords "multimedia" "unix") (:authors ("Sebastian Wålinder" . "s.walinder@gmail.com")) (:maintainer "Sebastian Wålinder" . "s.walinder@gmail.com") (:url . "https://github.com/walseb/blimp"))]) (blgrep . [(20150401 1416) ((clmemo (20140321 715))) "Block grep" tar ((:commit . "605beda210610a5829750a987f5fcebea97af546") (:keywords "tools" "convenience") (:authors ("Masayuki Ataka" . "masayuki.ataka@gmail.com")) (:maintainer "Masayuki Ataka" . "masayuki.ataka@gmail.com"))]) (blacken . [(20181025 1814) ((emacs (25 2))) "Reformat python buffers using the \"black\" formatter" single ((:commit . "d6929cf32adb180ac3c11da9861f62f57a66a64f") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/blacken"))]) (blackboard-theme . [(20161216 656) ((emacs (24))) "TextMate Blackboard Theme" single ((:commit . "d8b984f2541bb86eb4363a2b4c94631e49843d4a") (:authors ("Dong Zheng")) (:maintainer "Dong Zheng") (:url . "https://github.com/don9z/blackboard-theme"))]) (blackboard-bold-mode . [(20160813 206) ((cl-lib (0 5))) "Easily insert Unicode mathematical double-struck characters" single ((:commit . "5299cb064ba71baa3e331b8560bf8dd38cbbc4ed") (:keywords "unicode" "double struck" "blackboard bold" "math" "mathematical") (:authors ("Grant Rettke" . "gcr@wisdomandwonder.com")) (:maintainer nil . "<gcr@wisdomandwonder.com>") (:url . "https://github.com/grettke/blackboard-bold-mode"))]) (bitlbee . [(20151203 0) nil "Help get Bitlbee (http://www.bitlbee.org) up and running." single ((:commit . "3a92a4119e0c007df2c7dcf1b1c3a5f23ee40e05"))]) (bitbucket . [(20170405 446) ((emacs (24)) (request (0 1 0)) (s (1 9 0))) "Bitbucket API wrapper" tar ((:commit . "5e663da1bd38a14c1ecf4d66a79d4321ac833bcf") (:keywords "bitbucket") (:authors ("2017 Tjaart van der Walt" . "tjaart@tjaart.co.za")) (:maintainer "2017 Tjaart van der Walt" . "tjaart@tjaart.co.za") (:url . "http://github.com/tjaartvdwalt/bitbucket.el/"))]) (bitbake . [(20180326 758) ((emacs (24 1)) (dash (2 6 0)) (mmm-mode (0 5 4)) (s (1 10 0))) "Running bitbake from emacs" single ((:commit . "e5088c4b3dfb4feb96850fbc281b4207d23c7713") (:keywords "convenience") (:authors ("Damien Merenne")) (:maintainer "Damien Merenne") (:url . "https://github.com/canatella/bitbake-el"))]) (bison-mode . [(20160617 552) nil "Major mode for editing bison, yacc and lex files." single ((:commit . "314af3b7af7eb897fd3932616cb8600a85228cea") (:keywords "bison-mode" "yacc-mode") (:authors ("Eric Beuscher" . "beuscher@eecs.tulane.edu")) (:maintainer "Eric Beuscher" . "beuscher@eecs.tulane.edu"))]) (birds-of-paradise-plus-theme . [(20130419 2129) nil "A brown/orange light-on-dark theme for Emacs 24 (deftheme)." single ((:commit . "bb9f9d4ef7f7872a388ec4eee1253069adcadb6f") (:keywords "themes") (:authors ("Jim Myhrberg" . "contact@jimeh.me")) (:maintainer "Jim Myhrberg" . "contact@jimeh.me") (:url . "https://github.com/jimeh/birds-of-paradise-plus-theme.el"))]) (bing-dict . [(20181111 200) nil "Minimalists' English-Chinese Bing dictionary" tar ((:commit . "51266b11bca22923c3a86bc101abf9145d1397d3") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com") (:url . "https://github.com/cute-jumper/bing-dict.el"))]) (bind-map . [(20161207 1511) ((emacs (24 3))) "Bind personal keymaps in multiple locations" single ((:commit . "bf4181e3a41463684adfffc6c5c305b30480e30f") (:authors ("Justin Burkett" . "justin@burkett.cc")) (:maintainer "Justin Burkett" . "justin@burkett.cc") (:url . "https://github.com/justbur/emacs-bind-map"))]) (bind-key . [(20180513 430) nil "A simple way to manage personal keybindings" single ((:commit . "39a8b8812c2c9f6f0b299e6a04e504ef393694ce") (:keywords "keys" "keybinding" "config" "dotemacs") (:authors ("John Wiegley" . "johnw@newartisans.com")) (:maintainer "John Wiegley" . "johnw@newartisans.com") (:url . "https://github.com/jwiegley/use-package"))]) (bind-chord . [(20171204 2010) ((bind-key (1 0)) (key-chord (0 6))) "key-chord binding helper for use-package-chords" single ((:commit . "39a8b8812c2c9f6f0b299e6a04e504ef393694ce") (:keywords "convenience" "tools" "extensions") (:authors ("Justin Talbott" . "justin@waymondo.com")) (:maintainer "Justin Talbott" . "justin@waymondo.com") (:url . "https://github.com/waymondo/use-package-chords"))]) (binclock . [(20170802 1116) ((cl-lib (0 5))) "Display the current time using a binary clock." single ((:commit . "87042230d7f3fe3e9a77fae0dbab7d8f7e7794ad") (:keywords "games" "time" "display") (:authors ("Dave Pearson" . "davep@davep.org")) (:maintainer "Dave Pearson" . "davep@davep.org") (:url . "https://github.com/davep/binclock.el"))]) (bifocal . [(20181110 341) ((emacs (24 4))) "Split-screen scrolling for comint-mode buffers" single ((:commit . "add30c678488cec04976a85ba8cda20805938a01") (:keywords "frames" "processes" "tools") (:url . "https://github.com/riscy/bifocal-mode"))]) (bicycle . [(20180909 2126) ((emacs (25 1))) "cycle outline and code visibility" single ((:commit . "42a5db3514019d539500a67f913411f5533a1eb3") (:keywords "outlines") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/bicycle"))]) (bibtex-utils . [(20170817 1919) nil "Provides utilities for extending BibTeX mode" single ((:commit . "ed5ccce46c2088a28a2f0c49caa679d2f20567f0") (:keywords "bibtex") (:authors ("Tyler Smith" . "tyler@plantarum.ca")) (:maintainer "Tyler Smith" . "tyler@plantarum.ca") (:url . "https://github.com/plantarum/bibtex-utils"))]) (bibslurp . [(20151202 2346) ((s (1 6 0)) (dash (1 5 0))) "retrieve BibTeX entries from NASA ADS" single ((:commit . "aeba96368f2a06959e4fe945375ce2a54d34b189") (:keywords "bibliography" "nasa ads") (:url . "https://github.com/mkmcc/bibslurp"))]) (bibretrieve . [(20180901 928) ((auctex (11 87)) (emacs (24 3))) "Retrieve BibTeX entries from the internet" tar ((:commit . "600fa1fcc4c5d79c628457f2316f3429c96be006") (:keywords "bibtex" "bibliography" "mathscinet" "arxiv" "zbmath") (:authors ("Antonio Sartori")) (:maintainer "Pavel Zorin-Kranich" . "pzorin@uni-bonn.de") (:url . "https://github.com/pzorin/bibretrieve"))]) (bibliothek . [(20180429 2215) ((emacs (24 4)) (pdf-tools (0 70)) (a (0 1 0 -3 4))) "Managing a digital library of PDFs" single ((:commit . "05f2655321f020fd4c069d1939f0902eaa837eb4") (:keywords "tools") (:authors ("Göktuğ Kayaalp" . "self@gkayaalp.com")) (:maintainer "Göktuğ Kayaalp" . "self@gkayaalp.com") (:url . "https://cadadr.github.io/elisp/index.html#bibliothek-el"))]) (biblio-core . [(20160901 1815) ((emacs (24 3)) (let-alist (1 0 4)) (seq (1 11)) (dash (2 12 1))) "A framework for looking up and displaying bibliographic entries" single ((:commit . "a5a68fcf677f286f205f32dc7486f6c9f66aa6af") (:keywords "bib" "tex" "convenience" "hypermedia") (:authors ("Clément Pit-Claudel" . "clement.pitclaudel@live.com")) (:maintainer "Clément Pit-Claudel" . "clement.pitclaudel@live.com") (:url . "http://github.com/cpitclaudel/biblio.el"))]) (biblio . [(20161014 2304) ((emacs (24 3)) (biblio-core (0 2))) "Browse and import bibliographic references from CrossRef, arXiv, DBLP, HAL, Dissemin, and doi.org" tar ((:commit . "a5a68fcf677f286f205f32dc7486f6c9f66aa6af"))]) (bfbuilder . [(20150924 1650) ((cl-lib (0 3))) "A brainfuck development environment with interactive debugger" single ((:commit . "49560bdef131fa5672dab660e0c62376dbdcd906") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (bf-mode . [(20130403 1442) nil "Browse file persistently on dired" single ((:commit . "7cc4d09aed64d9db6be95646f5f5067de68f8895") (:keywords "convenience") (:authors ("isojin")) (:maintainer "myuhe <yuhei.maeda_at_gmail.com>") (:url . "https://github.com/emacs-jp/bf-mode"))]) (better-shell . [(20180625 1316) ((emacs (24 4))) "Better shell management" single ((:commit . "cfcd9d57f87ad68cd72bf4935fd1aaa1d9f059a9") (:keywords "convenience") (:authors ("Russell Black" . "killdash9@github")) (:maintainer "Russell Black" . "killdash9@github") (:url . "https://github.com/killdash9/better-shell"))]) (better-defaults . [(20170614 404) nil "Fixing weird quirks and poor defaults" single ((:commit . "ab830cf1a0987f43e419565404a4fa8c0a2f5560") (:keywords "convenience") (:authors ("Phil Hagelberg")) (:maintainer "Phil Hagelberg") (:url . "https://github.com/technomancy/better-defaults"))]) (bert . [(20131117 1014) nil "BERT serialization library for Emacs" single ((:commit . "a3eec6980a725aa4abd2019e4c00246450260490") (:keywords "comm" "data") (:authors ("Oleksandr Manzyuk" . "manzyuk@gmail.com")) (:maintainer "Oleksandr Manzyuk" . "manzyuk@gmail.com"))]) (benchstat . [(20171014 312) nil "proper benchmarking made simple" single ((:commit . "a5b67cf7972ca2bbc9f5bc6a0f521ab02b76d4f0") (:keywords "lisp") (:authors ("Iskander Sharipov" . "quasilyte@gmail.com")) (:maintainer "Iskander Sharipov" . "quasilyte@gmail.com") (:url . "https://github.com/Quasilyte/benchstat.el"))]) (benchmark-init . [(20150905 938) nil "Benchmarks Emacs require and load calls" tar ((:commit . "7a0f263282bbc86b01b662636306f22813082647") (:keywords "benchmark") (:authors ("Steve Purcell")) (:maintainer "David Holm" . "dholmster@gmail.com"))]) (belarus-holidays . [(20180615 1311) nil "Belarus holidays whith transfers" single ((:commit . "410a7dcf46fdcbee762a0c0aa0c7af03230b9656") (:authors ("Yauhen Makei" . "yauhen.makei@gmail.com")) (:maintainer "Yauhen Makei" . "yauhen.makei@gmail.com") (:url . "http://bitbucket.org/EugeneMakei/belarus-holidays.el"))]) (beginend . [(20180827 926) ((emacs (25 3))) "Redefine M-< and M-> for some modes" single ((:commit . "e4ff077de4a2c80e1f42adfc86837537899447a5") (:url . "https://github.com/DamienCassou/beginend"))]) (beeminder . [(20180413 1929) ((org (7))) "Emacs interface for Beeminder" tar ((:commit . "3fcee7a7003a37171ddb59171c7f4b5dd4b34349") (:keywords "beeminder") (:authors ("Phil Newton" . "phil@sodaware.net")) (:maintainer "Phil Newton" . "phil@sodaware.net") (:url . "http://www.philnewton.net/code/beeminder-el/"))]) (beacon . [(20181008 1350) ((seq (2 14))) "Highlight the cursor whenever the window scrolls" single ((:commit . "07a2e9566be2a0b8f59b8ac8668448f1e250a400") (:keywords "convenience") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "https://github.com/Malabarba/beacon"))]) (bdo . [(20140126 901) nil "Do things to a browser page from Emacs. BETA!" tar ((:commit . "c96cb6aa9e97fa3491185c50dee0f77a13241010") (:keywords "development") (:authors ("Chris Done" . "chrisdone@gmail.com")) (:maintainer "Chris Done" . "chrisdone@gmail.com"))]) (bbyac . [(20180206 1441) ((browse-kill-ring (1 3)) (cl-lib (0 5))) "Type a little Bit, and Bang! You Are Completed." tar ((:commit . "9f0de9cad13801891ffb590dc09f51ff9a7cb225") (:keywords "abbrev") (:authors ("Bao Haojun" . "baohaojun@gmail.com")) (:maintainer "Bao Haojun" . "baohaojun@gmail.com") (:url . "https://github.com/baohaojun/bbyac"))]) (bbdb2erc . [(20170221 1354) ((bbdb (3 0))) "make bbdb show if pal is online with ERC, click i to chat" single ((:commit . "15db2bd29df0f6ee32c499fdeffb960b6a7f97a0") (:keywords "irc" "contacts" "chat" "client" "internet") (:authors ("Kevin Brubeck Unhammer" . "unhammer@fsfe.org")) (:maintainer "Kevin Brubeck Unhammer" . "unhammer@fsfe.org"))]) (bbdb-vcard . [(20181005 1019) ((bbdb (3 0))) "vCard import/export for BBDB" tar ((:commit . "3e8630a8c45add7b495d7ef290ba9f402b359489") (:keywords "data" "calendar" "mail" "news") (:authors ("Bert Burgemeister" . "trebbu@googlemail.com") ("Toke Høiland-Jørgensen") ("Kevin Brubeck Unhammer") ("Steve Purcell") ("Vincent Geddes" . "vincent.geddes@gmail.com")) (:maintainer "Bert Burgemeister" . "trebbu@googlemail.com") (:url . "http://github.com/vgeddes/bbdb-vcard"))]) (bbdb-ext . [(20151220 2013) ((bbdb (2 36))) "Extra commands for BBDB" single ((:commit . "fee97b1b3faa83edaea00fbc5ad3cbca5e791a55") (:keywords "extensions") (:authors ("Joe Bloggs" . "vapniks@yahoo.com")) (:maintainer "Joe Bloggs" . "vapniks@yahoo.com") (:url . "https://github.com/vapniks/bbdb-ext"))]) (bbdb-csv-import . [(20180122 49) ((pcsv (1 3 3)) (dash (2 5 0)) (bbdb (20140412 1949))) "import csv to bbdb version 3+" single ((:commit . "dbc2e0fe9e8ae65e494011044d905ae79b3cee3e") (:keywords "csv" "util" "bbdb") (:authors ("Ian Kelling" . "ian@iankelling.org")) (:maintainer "Ian Kelling" . "ian@iankelling.org") (:url . "https://gitlab.com/iankelling/bbdb-csv-import"))]) (bbdb . [(20180907 311) nil "The Insidious Big Brother Database for GNU Emacs" tar ((:commit . "1a6ad82b11c7059f6a19fba575146cc31c6ffa8b"))]) (bbdb- . [(20140221 2354) ((bbdb (20140123 1541)) (log4e (0 2 0)) (yaxception (0 1))) "provide interface for more easily search/choice than BBDB." single ((:commit . "2839e84c894de2513af41053e80a277a1b483d22") (:keywords "bbdb" "news" "mail") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/bbdb-"))]) (bbcode-mode . [(20180505 927) ((cl-lib (0 5))) "Major mode for phpBB posts (BBCode markup)" single ((:commit . "ee30d43f9029e0919a06be0dde0ed16f201647c1") (:keywords "bbcode" "languages") (:authors ("Eric James Michael Ritz" . "lobbyjones@gmail.com")) (:maintainer "Lassi Kortela" . "lassi@lassi.io") (:url . "https://github.com/lassik/bbcode-mode"))]) (bazel-mode . [(20180223 653) ((emacs (24 3))) "A major mode for editing Bazel files" single ((:commit . "b7aa14516feaed40ee4910eafa81db719de0fe56") (:keywords "languages" "bazel") (:authors ("Neri Marschik")) (:maintainer "Neri Marschik") (:url . "https://github.com/codesuki/bazel-mode"))]) (bats-mode . [(20160514 615) nil "Emacs mode for editing and running Bats tests" single ((:commit . "d519f7c89f5ae17dfc33400596df4564b478315f") (:keywords "bats" "tests") (:authors ("Doug MacEachern")) (:maintainer "Doug MacEachern") (:url . "https://github.com/dougm/bats-mode"))]) (basic-theme . [(20160817 827) ((emacs (24))) "Minimalistic light color theme" single ((:commit . "e2a855bd39f4b78296228d4b790f9123156f7d7e") (:keywords "theme" "basic" "minimal" "colors") (:authors ("Felix Geller" . "fgeller@gmail.com")) (:maintainer "Felix Geller" . "fgeller@gmail.com") (:url . "http://github.com/fgeller/basic-theme.el"))]) (basic-mode . [(20180919 1752) ((seq (2 20)) (emacs (24 3))) "major mode for editing BASIC code" single ((:commit . "812f078240f9de09491701853569335ba6d9b5ff") (:keywords "basic" "languages") (:authors ("Johan Dykstrom")) (:maintainer "Johan Dykstrom") (:url . "https://github.com/dykstrom/basic-mode"))]) (basic-c-compile . [(20170302 1112) ((cl-lib (0 5)) (f (0 19 0))) "Quickly create a Makefile, compile and run C." single ((:commit . "0129786aeee50d7bb0020d9fc2b7508875d403e8") (:keywords "c" "makefile" "compilation" "convenience") (:authors ("Nick Spain" . "nicholas.spain96@gmail.com")) (:maintainer "Nick Spain" . "nicholas.spain96@gmail.com") (:url . "https://github.com/nick96/basic-c-compile"))]) (bash-completion . [(20180519 1620) nil "BASH completion for the shell buffer" single ((:commit . "fbdc78b8770833752ac4bda28e2c3ea764bf8e76") (:authors ("Stephane Zermatten" . "szermatt@gmx.net")) (:maintainer "Stephane Zermatten" . "szermatt@gmx.net"))]) (base16-theme . [(20181116 1843) nil "Collection of themes built on combinations of 16 base colors" tar ((:commit . "629c7e3eee756c088808322bbad996d05255f0e4") (:url . "https://github.com/belak/base16-emacs"))]) (bart-mode . [(20180201 229) ((emacs (24 3))) "Real time BART departures info." single ((:commit . "6feeb8f9badbc2ce4b60499bf7bf4acdae4cfed7") (:keywords "convenience" "transit") (:authors ("Michael Schuldt" . "mbschuldt@gmail.com")) (:maintainer "Michael Schuldt" . "mbschuldt@gmail.com") (:url . "https://github.com/mschuldt/bart-mode"))]) (bar-cursor . [(20180227 45) nil "package used to switch block cursor to a bar" single ((:commit . "20cb59bedc3532a712fe7feeff3660ebd72a8107") (:keywords "files") (:authors ("Joe Casadonte" . "emacs@northbound-train.com")) (:maintainer "Andrew Johnson" . "andrew@andrewjamesjohnson.com") (:url . "https://github.com/ajsquared/bar-cursor"))]) (bap-mode . [(20180802 1310) nil "Major-mode for BAP's IR" single ((:commit . "b74e583fa1e82046d79df21be225f9409698d293") (:keywords "languages") (:authors ("Thomas Barabosch <http://github/tbarabosch>")) (:maintainer "Thomas Barabosch" . "thomas.barabosch@fkie.fraunhofer.de") (:url . "https://github.com/fkie-cad/bap-mode"))]) (banner-comment . [(20180923 1911) ((emacs (24 4))) "For producing banner comments." single ((:commit . "ac52f6b24e590787a385c08cc3751d6f2ddca815") (:keywords "convenience") (:authors ("James Ferguson" . "james@faff.org")) (:maintainer "James Ferguson" . "james@faff.org") (:url . "https://github.com/WJCFerguson/banner-comment"))]) (badwolf-theme . [(20161004 715) ((emacs (24))) "Bad Wolf color theme" single ((:commit . "ea01a3d9358e968f75e3ed15dec6a2a96ce3d9a1") (:keywords "themes") (:authors ("bkruczyk" . "bartlomiej.kruczyk@gmail.com")) (:maintainer "bkruczyk" . "bartlomiej.kruczyk@gmail.com") (:url . "https://github.com/bkruczyk/badwolf-emacs"))]) (badger-theme . [(20140717 232) nil "A dark theme for Emacs 24." single ((:commit . "493d672d5a5478976da7d5ca752008cc7837c57f") (:authors ("Cody Canning" . "cocanning11@gmail.com")) (:maintainer "Cody Canning" . "cocanning11@gmail.com") (:url . "https://github.com/ccann/badger-theme"))]) (backward-forward . [(20161229 550) ((emacs (24 5))) "navigation backwards and forwards across marks" single ((:commit . "58489957a62a0da25dfb5df902624d2548d800b4") (:keywords "navigation" "convenience" "backward" "forward") (:authors ("Currell Berry" . "currellberry@gmail.com")) (:maintainer "Currell Berry" . "currellberry@gmail.com") (:url . "https://gitlab.com/vancan1ty/emacs-backward-forward/tree/master"))]) (backup-walker . [(20130720 1516) nil "quickly traverse all backups of a file" single ((:commit . "934a4128c122972ac32bb9952addf279a60a94da") (:keywords "backup") (:authors ("Le Wang")) (:maintainer "Le Wang") (:url . "https://github.com/lewang/backup-walker"))]) (backup-each-save . [(20180227 557) nil "backup each savepoint of a file" single ((:commit . "3c414b9d6b278911c95c5b8b71819e6af6f8a02a") (:authors ("Benjamin Rutt" . "brutt@bloomington.in.us")) (:maintainer "Conor Nash" . "conor@nashcobusinessservicesllc.com"))]) (backline . [(20181111 832) ((emacs (25 1)) (outline-minor-faces (0 1 0))) "Preserve appearance of outline headings" single ((:commit . "960deaef1d87658f79a0bd95c85946371d211590") (:keywords "outlines") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/tarsius/backline"))]) (backlight . [(20180629 2159) ((emacs (24 3))) "backlight brightness adjustment on GNU/Linux" single ((:commit . "096e632bf100d318754d6c961c90ebb0ef29dce5") (:keywords "hardware") (:authors ("Michael Schuldt" . "mbschuldt@gmail.com")) (:maintainer "Michael Schuldt" . "mbschuldt@gmail.com") (:url . "https://github.com/mschuldt/backlight.el"))]) (back-button . [(20150804 2004) ((nav-flash (1 0 0)) (smartrep (0 0 3)) (ucs-utils (0 7 2)) (list-utils (0 4 2)) (persistent-soft (0 8 8)) (pcache (0 2 3))) "Visual navigation through mark rings" single ((:commit . "98d92984a740acd1547bd7ed05cca0affdb21c3e") (:keywords "convenience" "navigation" "interface") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/back-button"))]) (babel-repl . [(20160504 2201) ((emacs (24))) "Run babel REPL" single ((:commit . "e619c16e349a1ee7bd0ee0d7f3650d33bff73fc3") (:keywords "babel" "javascript" "es6") (:authors ("Hung Phan")) (:maintainer "Hung Phan") (:url . "https://github.com/hung-phan/babel-repl/"))]) (babel . [(20181115 1210) nil "interface to web translation services such as Babelfish" single ((:commit . "972b133ca9054b900de4be8288f79c9896fef548") (:keywords "translation" "web") (:authors ("Juergen Hoetzel" . "juergen@hoetzel.info") ("Eric Marsden" . "emarsden@laas.fr")) (:maintainer "Juergen Hoetzel" . "juergen@hoetzel.info") (:url . "http://github.com/juergenhoetzel/babel"))]) (axiom-environment . [(20180823 955) ((emacs (24 2))) "An environment for using Axiom/OpenAxiom/FriCAS" tar ((:commit . "5d6b2cd12f639c11b032185c4c5fe4f5bba15b08") (:keywords "axiom" "openaxiom" "fricas") (:authors ("Paul Onions" . "paul.onions@acm.org")) (:maintainer "Paul Onions" . "paul.onions@acm.org"))]) (aws-snippets . [(20180410 1545) ((yasnippet (0 8 0))) "Yasnippets for AWS" tar ((:commit . "a2ebae582a8c8a5f5f16dbc42ecd2ded9d70fca8") (:keywords "snippets"))]) (aws-ec2 . [(20161007 1914) ((emacs (24 4)) (dash (2 12 1)) (tblui (0 1 0))) "Manage AWS EC2 instances" single ((:commit . "5601d4f268fc34b86a02ca90cde7d3771619a368") (:authors ("Yuki Inoue <inouetakahiroki _at_ gmail.com>")) (:maintainer "Yuki Inoue <inouetakahiroki _at_ gmail.com>") (:url . "https://github.com/Yuki-Inoue/aws.el"))]) (avy-zap . [(20160921 2144) ((avy (0 2 0))) "Zap to char using `avy'" single ((:commit . "6081738668ab726099ce1c711c580d9745dfaede") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com") (:url . "https://github.com/cute-jumper/avy-zap"))]) (avy-migemo . [(20180716 1455) ((emacs (24 4)) (avy (0 4 0)) (migemo (1 9))) "avy with migemo" tar ((:commit . "922a6dd82c0bfa316b0fbb56a9d4dd4ffa5707e7") (:keywords "avy" "migemo") (:authors ("momomo5717")) (:maintainer "momomo5717") (:url . "https://github.com/momomo5717/avy-migemo"))]) (avy-menu . [(20180101 620) ((emacs (24 3)) (avy (0 3 0))) "Library providing avy-powered popup menu" single ((:commit . "b133564cc438870d9b5505c8104611c8998fd0d5") (:keywords "popup" "menu") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/avy-menu"))]) (avy-flycheck . [(20160720 1500) ((emacs (24 1)) (flycheck (0 14)) (seq (1 11)) (avy (0 4 0))) "Jump to and fix syntax errors using `flycheck' with `avy' interface" single ((:commit . "5522f3bbbed1801d9278ed696ec0cbba38352985") (:keywords "tools" "convenience" "avy" "flycheck") (:authors ("Xu Ma" . "magicdirac@gmail.com")) (:maintainer "Xu Ma" . "magicdirac@gmail.com") (:url . "https://github.com/magicdirac/avy-flycheck"))]) (avy . [(20181009 1648) ((emacs (24 1)) (cl-lib (0 5))) "Jump to arbitrary positions in visible text and select text quickly." single ((:commit . "df4c4ac488ee59bc44f8658d9fcca0c86fb32c5c") (:keywords "point" "location") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/avy"))]) (avk-emacs-themes . [(20180921 1233) nil "Collection of avk themes" tar ((:commit . "c0669408cfa423e0d38f990778232a771f63f05e") (:url . "https://github.com/avkoval/avk-emacs-themes"))]) (avandu . [(20170101 1903) nil "Gateway to Tiny Tiny RSS" tar ((:commit . "f44588d8e747fa880411cb4542cc39962252b90a") (:keywords "net") (:authors ("Tom Willemse" . "tom@ryuslash.org")) (:maintainer "Tom Willemse" . "tom@ryuslash.org"))]) (autumn-light-theme . [(20150515 1447) nil "A light color theme with muted, autumnal colors." single ((:commit . "1e3b2a43a3001e4a97a5ff073ba3f0d2ea3888f9") (:keywords "color" "theme") (:authors ("Adam Alpern" . "adam.alpern@gmail.com")) (:maintainer "Adam Alpern" . "adam.alpern@gmail.com") (:url . "http://github.com/aalpern/emacs-color-theme-autumn-light"))]) (autothemer . [(20180920 923) ((dash (2 10 0)) (emacs (24)) (cl-lib (0 5))) "Conveniently define themes." single ((:commit . "69488c71dfc182cf2e7be2d745037f230ade678e") (:authors ("Sebastian Sturm")) (:maintainer "Sebastian Sturm") (:url . "https://github.com/sebastiansturm/autothemer"))]) (autotetris-mode . [(20141114 1646) ((cl-lib (0 5))) "automatically play tetris" single ((:commit . "0c3a746dcc304a67d2a6e7ad4ef93f512486343a") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/autotetris-mode"))]) (autotest . [(20180323 2242) nil "ZenTest's autotest integration with emacs." single ((:commit . "4ce20cc5b25a1f1b4669ea8ff2880ec764eaf7da") (:keywords "testing" "ruby" "convenience") (:authors ("Ryan Davis" . "ryand-ruby@zenspider.com")) (:maintainer "Ryan Davis" . "ryand-ruby@zenspider.com") (:url . "https://github.com/zenspider/elisp/blob/master/autotest.el"))]) (autopair . [(20160304 1237) ((cl-lib (0 3))) "Automagically pair braces and quotes like TextMate" single ((:commit . "2b6d72bccb0ebba6e7e711528872b898b0c65b0a") (:keywords "convenience" "emulations") (:authors ("Joao Tavora <joaotavora [at] gmail.com>")) (:maintainer "Joao Tavora <joaotavora [at] gmail.com>") (:url . "https://github.com/capitaomorte/autopair"))]) (automargin . [(20131112 814) nil "add margins to windows not-splitted, and center them" single ((:commit . "4901d969ad69f5244e6300baab4ba04efed800c3") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (autodisass-llvm-bitcode . [(20150411 125) nil "Automatically disassemble LLVM bitcode" tar ((:commit . "d2579e3a1427af2dc947c343e49eb3434078bf04"))]) (autodisass-java-bytecode . [(20151005 1612) nil "Automatically disassemble Java bytecode" tar ((:commit . "3d61dbe266133c950b39e880f78d142751c7dc4c"))]) (autobookmarks . [(20180531 1906) ((dash (2 10 0)) (cl-lib (0 5))) "Save recently visited files and buffers" single ((:commit . "e971aa49d97da9f7ed760b37e0b674e45f1c5673") (:keywords "files") (:authors ("Matúš Goljer" . "matus.goljer@gmail.com")) (:maintainer "Matúš Goljer" . "matus.goljer@gmail.com"))]) (auto-yasnippet . [(20180503 1908) ((yasnippet (0 8 0))) "Quickly create disposable yasnippets" single ((:commit . "623734aa418b18ff52cb65a0adb9e359aed31615") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/auto-yasnippet"))]) (auto-virtualenvwrapper . [(20181006 937) ((cl-lib (0 6)) (s (1 10 0)) (virtualenvwrapper (0))) "Lightweight auto activate python virtualenvs" single ((:commit . "72cc9168db475e8328019f9592493560dab832a5") (:keywords "python" "virtualenv" "tools") (:authors ("Marcwebbie" . "marcwebbie@gmail.com") ("Robert Zaremba" . "robert-zaremba@scale-it.pl")) (:maintainer "Marcwebbie" . "marcwebbie@gmail.com"))]) (auto-virtualenv . [(20170125 1917) ((cl-lib (0 5)) (pyvenv (1 9)) (s (1 10 0))) "Auto activate python virtualenvs" single ((:commit . "3826db66b417788e2b2eb138717255b1f52a55c3") (:keywords "python" "virtualenv" "tools") (:authors ("Marcwebbie" . "marcwebbie@gmail.com")) (:maintainer "Marcwebbie" . "marcwebbie@gmail.com") (:url . "http://github.com/marcwebbie/auto-virtualenv"))]) (auto-sudoedit . [(20180915 706) ((emacs (24)) (f (0 19 0))) "auto sudo edit by tramp" single ((:commit . "16bfa23e6d9c30968a6b6364ada17c88138255f3") (:authors ("ncaq" . "ncaq@ncaq.net")) (:maintainer "ncaq" . "ncaq@ncaq.net") (:url . "https://github.com/ncaq/auto-sudoedit"))]) (auto-shell-command . [(20180817 1502) ((deferred (20130312)) (popwin (20130329))) "Run the shell command asynchronously that you specified when you save the file." single ((:commit . "a8f9213e3c773b5687b81881240e6e648f2f56ba") (:keywords "shell" "save" "async" "deferred" "auto") (:authors ("ongaeshi")) (:maintainer "ongaeshi"))]) (auto-save-buffers-enhanced . [(20161109 710) nil "Automatically save buffers in a decent way" single ((:commit . "461e8c816c1b7c650be5f209078b381fe55da8c6") (:authors ("Kentaro Kuribayashi" . "kentarok@gmail.com")) (:maintainer "Kentaro Kuribayashi" . "kentarok@gmail.com"))]) (auto-read-only . [(20170306 443) ((cl-lib (0 5))) "Automatically make the buffer to read-only" single ((:commit . "79654f8fc024f383ae7af05487c1345738236500") (:keywords "files" "convenience") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/zonuexe/auto-read-only.el"))]) (auto-pause . [(20160426 1216) ((emacs (24 4))) "Run processes which will be paused when Emacs is idle" single ((:commit . "a4d778de774ca3895542cb559a953e0d98657338") (:keywords "convenience" "menu") (:authors ("DarkSun" . "lujun9972@gmail.com")) (:maintainer "DarkSun" . "lujun9972@gmail.com") (:url . "https://github.com/lujun9972/auto-pause"))]) (auto-package-update . [(20180712 2045) ((emacs (24 4)) (dash (2 1 0))) "Automatically update Emacs packages." single ((:commit . "55870d313fbe9db40b1a2b59dbc420ba66a9297e") (:keywords "package" "update") (:authors ("Renan Ranelli")) (:maintainer "Renan Ranelli") (:url . "http://github.com/rranelli/auto-package-update.el"))]) (auto-org-md . [(20180213 2343) ((emacs (24 4))) "export a markdown file automatically when you save an org-file" single ((:commit . "9318338bdb7fe8bd698d88f3af89b2d6413efdd2") (:keywords "org" "markdown") (:authors ("jamcha" . "jamcha.aa@gmail.com")) (:maintainer "jamcha" . "jamcha.aa@gmail.com") (:url . "https://github.com/jamcha-aa/auto-org-md"))]) (auto-minor-mode . [(20180527 1123) ((emacs (24 4))) "Enable minor modes by file name and contents" single ((:commit . "c62f4e04c7b73835c399f0348bea0ade2720bcbb") (:keywords "convenience") (:authors ("Joe Wreschnig" . "joe.wreschnig@gmail.com")) (:maintainer "Joe Wreschnig" . "joe.wreschnig@gmail.com") (:url . "https://github.com/joewreschnig/auto-minor-mode"))]) (auto-indent-mode . [(20171222 506) nil "Auto indent Minor mode" tar ((:commit . "28069360a7f89ad0286fd6a53db550752ec58488") (:keywords "auto" "indentation") (:authors ("Matthew L. Fidler, Le Wang & Others")) (:maintainer "Matthew L. Fidler") (:url . "https://github.com/mlf176f2/auto-indent-mode.el/"))]) (auto-highlight-symbol . [(20130313 943) nil "Automatic highlighting current symbol minor mode" single ((:commit . "26573de912d760e04321b350897aea70958cee8b") (:keywords "highlight" "face" "match" "convenience") (:authors ("Mitsuo Saito" . "arch320@NOSPAM.gmail.com")) (:maintainer "Mitsuo Saito" . "arch320@NOSPAM.gmail.com") (:url . "http://github.com/gennad/auto-highlight-symbol/raw/master/auto-highlight-symbol.el"))]) (auto-dim-other-buffers . [(20180612 2341) nil "Makes non-current buffers less prominent" single ((:commit . "ec74b4803adeadf06296c84595fb6ccf4e1b4a3f") (:authors ("Steven Degutis") ("Michal Nazarewicz" . "mina86@mina86.com")) (:maintainer "Michal Nazarewicz" . "mina86@mina86.com") (:url . "https://github.com/mina86/auto-dim-other-buffers.el"))]) (auto-dictionary . [(20150410 1610) nil "automatic dictionary switcher for flyspell" single ((:commit . "b364e08009fe0062cf0927d8a0582fad5a12b8e7") (:keywords "wp") (:authors ("Nikolaj Schumacher <bugs * nschum de>")) (:maintainer "Nikolaj Schumacher <bugs * nschum de>") (:url . "http://nschum.de/src/emacs/auto-dictionary/"))]) (auto-complete-sage . [(20160514 751) ((auto-complete (1 5 1)) (sage-shell-mode (0 1 0))) "An auto-complete source for sage-shell-mode." single ((:commit . "51b8e3905196d266e1f8aa47881189833151b398") (:keywords "sage" "math" "auto-complete") (:authors ("Sho Takemori" . "stakemorii@gmail.com")) (:maintainer "Sho Takemori" . "stakemorii@gmail.com") (:url . "https://github.com/stakemori/auto-complete-sage"))]) (auto-complete-rst . [(20140225 944) ((auto-complete (1 4))) "Auto-complete extension for ReST and Sphinx" tar ((:commit . "4803ce41a96224e6fa54e6741a5b5f40ebed7351") (:authors ("ARAKAKI, Takafumi")) (:maintainer "ARAKAKI, Takafumi") (:url . "https://github.com/tkf/auto-complete-rst"))]) (auto-complete-pcmp . [(20140227 651) ((auto-complete (1 4 0)) (log4e (0 2 0)) (yaxception (0 1))) "Provide auto-complete sources using pcomplete results" single ((:commit . "2595d3dab1ef3549271ca922f212928e9d830eec") (:keywords "completion") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/auto-complete-pcmp"))]) (auto-complete-nxml . [(20140221 458) ((auto-complete (1 4))) "do completion by auto-complete.el on nXML-mode" single ((:commit . "ac7b09a23e45f9bd02affb31847263de4180163a") (:keywords "completion" "html" "xml") (:authors ("Hiroaki Otsu" . "ootsuhiroaki@gmail.com")) (:maintainer "Hiroaki Otsu" . "ootsuhiroaki@gmail.com") (:url . "https://github.com/aki2o/auto-complete-nxml"))]) (auto-complete-exuberant-ctags . [(20140320 724) ((auto-complete (1 4 0))) "Exuberant ctags auto-complete.el source" single ((:commit . "ff6121ff8b71beb5aa606d28fd389c484ed49765") (:keywords "anto-complete" "exuberant ctags") (:authors ("Kenichirou Oyama" . "k1lowxb@gmail.com")) (:maintainer "Kenichirou Oyama" . "k1lowxb@gmail.com") (:url . "http://code.101000lab.org"))]) (auto-complete-distel . [(20180827 1344) ((auto-complete (1 4)) (distel-completion-lib (1 0 0))) "Erlang/distel completion backend for auto-complete-mode" single ((:commit . "acc4c0a5521904203d797fe96b08e5fae4233c7e") (:keywords "erlang" "distel" "auto-complete") (:authors ("Sebastian Weddmark Olsson")) (:maintainer "Sebastian Weddmark Olsson") (:url . "github.com/sebastiw/distel-completion"))]) (auto-complete-clang-async . [(20130526 1514) nil "Auto Completion source for clang for GNU Emacs" single ((:commit . "5d9c5cabbb6b31e0ac3637631c0c8b25184aa8b4") (:keywords "completion" "convenience"))]) (auto-complete-clang . [(20140409 752) ((auto-complete (1 3 1))) "Auto Completion source for clang for GNU Emacs" single ((:commit . "a195db1d0593b4fb97efe50885e12aa6764d998c") (:keywords "completion" "convenience") (:authors ("Brian Jiang" . "brianjcj@gmail.com")) (:maintainer "Brian Jiang" . "brianjcj@gmail.com") (:url . "https://github.com/brianjcj/auto-complete-clang"))]) (auto-complete-chunk . [(20140225 946) ((auto-complete (1 4))) "Auto-completion for dot.separated.words." single ((:commit . "a9aa77ffb84a1037984a7ce4dda25074272f13fe") (:authors ("ARAKAKI, Takafumi")) (:maintainer "ARAKAKI, Takafumi") (:url . "https://github.com/tkf/auto-complete-chunk"))]) (auto-complete-c-headers . [(20150912 323) ((auto-complete (1 4))) "An auto-complete source for C/C++ header files" single ((:commit . "52fef720c6f274ad8de52bef39a343421006c511") (:keywords "c") (:authors ("Masafumi Oyamada" . "stillpedant@gmail.com")) (:maintainer "Masafumi Oyamada" . "stillpedant@gmail.com"))]) (auto-complete-auctex . [(20140223 1758) ((yasnippet (0 6 1)) (auto-complete (1 4))) "auto-completion for auctex" single ((:commit . "855633f668bcc4b9408396742a7cb84e0c4a2f77") (:authors ("Christopher Monsanto" . "chris@monsan.to")) (:maintainer "Christopher Monsanto" . "chris@monsan.to"))]) (auto-complete . [(20170125 245) ((popup (0 5 0)) (cl-lib (0 5))) "Auto Completion for GNU Emacs" tar ((:commit . "2e83566ddfa758c69afe50b8a1c62a66f47471e3"))]) (auto-compile . [(20180321 1507) ((emacs (24 3)) (packed (2 0 0))) "automatically compile Emacs Lisp libraries" single ((:commit . "6ce4255ab9a0b010ef8414c5bd9a6d6d9eea012f") (:keywords "compile" "convenience" "lisp") (:authors ("Jonas Bernoulli" . "jonas@bernoul.li")) (:maintainer "Jonas Bernoulli" . "jonas@bernoul.li") (:url . "https://github.com/emacscollective/auto-compile"))]) (auto-auto-indent . [(20131106 1903) ((es-lib (0 1)) (cl-lib (1 0))) "Indents code as you type" single ((:commit . "0139378577f936d34b20276af6f022fb457af490") (:authors ("sabof")) (:maintainer "sabof") (:url . "https://github.com/sabof/auto-auto-indent"))]) (auto-async-byte-compile . [(20160916 454) nil "Automatically byte-compile when saved" single ((:commit . "8681e74ddb8481789c5dbb3cafabb327db4c4484") (:keywords "lisp" "convenience") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/auto-async-byte-compile.el"))]) (auth-source-pass . [(20181106 1348) ((emacs (25))) "Integrate auth-source with password-store" single ((:commit . "63c0631896b2f2ed6b359e026c6a7949932aa0bf") (:authors ("Damien Cassou" . "damien@cassou.me") ("Nicolas Petton" . "nicolas@petton.fr")) (:maintainer "Damien Cassou" . "damien@cassou.me") (:url . "https://github.com/DamienCassou/auth-password-store"))]) (aurora-config-mode . [(20180216 2302) nil "Major mode for Apache Aurora configuration files" single ((:commit . "8273ec7937a21b469b9dbb6c11714255b890f410") (:keywords "languages" "configuration") (:authors ("Berk D. Demir" . "bdd@mindcast.org")) (:maintainer "Berk D. Demir" . "bdd@mindcast.org") (:url . "https://github.com/bdd/aurora-config.el"))]) (aurel . [(20170114 937) ((emacs (24 3)) (bui (1 1 0)) (dash (2 11 0))) "Search, get info, vote for and download AUR packages" single ((:commit . "fc7ad208f43f8525f84a18941c9b55f956df8961") (:keywords "tools") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/aurel"))]) (audio-notes-mode . [(20170611 2159) nil "Play audio notes synced from somewhere else." single ((:commit . "fa38350829c7e97257efc746a010471d33748a68") (:keywords "hypermedia" "convenience") (:authors ("Artur Malabarba" . "bruce.connor.am@gmail.com")) (:maintainer "Artur Malabarba" . "bruce.connor.am@gmail.com") (:url . "http://github.com/Bruce-Connor/audio-notes-mode"))]) (auctex-lua . [(20151121 1610) ((auctex (11 86)) (lua-mode (20130419))) "Lua editing support for AUCTeX" single ((:commit . "799cd8ac10c96991bb63d9aa60528ae5d8c786b5") (:keywords "latex" "lua") (:authors ("Sean Allred" . "seallred@smcm.edu")) (:maintainer "Sean Allred" . "seallred@smcm.edu") (:url . "http://github.com/vermiculus/auctex-lua"))]) (auctex-latexmk . [(20170618 1636) ((auctex (11 87))) "Add LatexMk support to AUCTeX" single ((:commit . "4d353522650d7685acbf1d38f7dbc504f734bd84") (:keywords "tex") (:authors ("Tomoya Tanjo" . "ttanjo@gmail.com")) (:maintainer "Tomoya Tanjo" . "ttanjo@gmail.com") (:url . "https://github.com/tom-tan/auctex-latexmk/"))]) (attrap . [(20181114 841) ((dash (2 12 0)) (emacs (25 1)) (f (0 19 0)) (flycheck (0 30)) (s (1 11 0))) "ATtempt To Repair At Point" single ((:commit . "f0336cf81a7e3a368a29d7125db652494d28ad61") (:keywords "programming" "tools") (:authors ("Jean-Philippe Bernardy" . "jeanphilippe.bernardy@gmail.com")) (:maintainer "Jean-Philippe Bernardy" . "jeanphilippe.bernardy@gmail.com") (:url . "https://github.com/jyp/attrap"))]) (atomic-chrome . [(20180617 724) ((emacs (24 3)) (let-alist (1 0 4)) (websocket (1 4))) "Edit Chrome text area with Emacs using Atomic Chrome" single ((:commit . "a505f638866f9e7b913784be0dc84f338e9ad449") (:keywords "chrome" "edit" "textarea") (:authors ("alpha22jp" . "alpha22jp@gmail.com")) (:maintainer "alpha22jp" . "alpha22jp@gmail.com") (:url . "https://github.com/alpha22jp/atomic-chrome"))]) (atom-one-dark-theme . [(20181010 1348) nil "Atom One Dark color theme" single ((:commit . "8cba629dce7a2c53c690337915fdcaa80b4af769") (:authors ("Jonathan Chu" . "me@jonathanchu.is")) (:maintainer "Jonathan Chu" . "me@jonathanchu.is") (:url . "https://github.com/jonathanchu/atom-one-dark-theme"))]) (atom-dark-theme . [(20181022 1602) nil "An Emacs port of the Atom Dark theme from Atom.io." single ((:commit . "5c8610d0b45a536b8f7f9777297c86362685a357") (:keywords "themes" "atom" "dark") (:authors (nil . "Jeremy Whitlock <jwhitlock@apache.org")) (:maintainer nil . "Jeremy Whitlock <jwhitlock@apache.org") (:url . "https://github.com/whitlockjc/atom-dark-theme-emacs"))]) (async-await . [(20170208 1150) ((emacs (25)) (promise (1 0))) "Async/Await" single ((:commit . "56ab90e4019ed1f81fd4ad9e8701b5cec7ffa795") (:keywords "async" "await" "convenience") (:authors ("chuntaro" . "chuntaro@sakura-games.jp")) (:maintainer "chuntaro" . "chuntaro@sakura-games.jp") (:url . "https://github.com/chuntaro/emacs-async-await"))]) (async . [(20180527 1730) nil "Asynchronous processing in Emacs" tar ((:commit . "d17c11e6082aa51f421bb037b828bdb15f405618") (:keywords "async") (:url . "https://github.com/jwiegley/emacs-async"))]) (assess . [(20170504 1357) ((emacs (24 1)) (m-buffer (0 15))) "Test support functions" tar ((:commit . "e5b0415126c6bd24bd220759ff04220d963a0195") (:authors ("Phillip Lord" . "phillip.lord@russet.org.uk")) (:maintainer "Phillip Lord" . "phillip.lord@russet.org.uk"))]) (asn1-mode . [(20170729 226) ((emacs (24 3)) (s (1 10 0))) "ASN.1/GDMO mode for GNU Emacs" single ((:commit . "d5d4a8259daf708411699bcea85d322f18beb972") (:keywords "languages" "processes" "tools") (:authors ("Taichi Kawabata <kawabata.taichi_at_gmail.com>")) (:maintainer "Taichi Kawabata <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/asn1-mode/"))]) (asilea . [(20150105 1525) ((emacs (24)) (cl-lib (0 5))) "Find best compiler options using simulated annealing" single ((:commit . "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f") (:authors ("Fanael Linithien" . "fanael4@gmail.com")) (:maintainer "Fanael Linithien" . "fanael4@gmail.com") (:url . "https://github.com/Fanael/asilea"))]) (arview . [(20160419 2109) nil "extract and view archives in the temporary directory" single ((:commit . "5437b4221b64b238c273a651d4792c577dba6d45") (:keywords "files") (:authors ("Andrey Fainer" . "fandrey@gmx.com")) (:maintainer "Andrey Fainer" . "fandrey@gmx.com") (:url . "https://github.com/afainer/arview"))]) (artbollocks-mode . [(20170524 422) nil "Improve your writing (especially about art)" single ((:commit . "33a41ca4f8206f57e5498a526d3b0ea18d08bb93") (:authors ("Rob Myers <rob@robmyers.org>, Sacha Chua" . "sacha@sachachua.com")) (:maintainer "Rob Myers <rob@robmyers.org>, Sacha Chua" . "sacha@sachachua.com") (:url . "https://github.com/sachac/artbollocks-mode"))]) (arjen-grey-theme . [(20170522 2047) nil "A soothing dark grey theme" single ((:commit . "4cd0be72b65d42390e2105cfdaa408a1ead8d8d1") (:keywords "faces") (:authors ("Arjen Wiersma" . "arjen@wiersma.org")) (:maintainer "Arjen Wiersma" . "arjen@wiersma.org") (:url . "https://github.com/credmp/arjen-grey"))]) (ariadne . [(20131117 1711) ((bert (0 1))) "Ariadne plugin for Emacs" single ((:commit . "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15") (:keywords "comm" "convenience" "processes") (:authors ("Oleksandr Manzyuk" . "manzyuk@gmail.com")) (:maintainer "Oleksandr Manzyuk" . "manzyuk@gmail.com"))]) (aria2 . [(20141107 2317) ((emacs (24 4))) "Control aria2c commandline tool from Emacs" single ((:commit . "7a944c5100812269369225af7aa9580fedab175f") (:keywords "download" "bittorrent" "aria2") (:authors ("Łukasz Gruner" . "lukasz@gruner.lu")) (:maintainer "Łukasz Gruner" . "lukasz@gruner.lu") (:url . "https://bitbucket.org/ukaszg/aria2-mode"))]) (arduino-mode . [(20180509 36) ((emacs (25)) (cl-lib (0 5)) (spinner (1 7 3))) "Major mode for editing Arduino code." tar ((:commit . "e39cb1c02acb6676aea35f93fbd0d86badce6a38") (:keywords "languages" "arduino") (:maintainer "stardiviner" . "numbchild@gmail.com") (:url . "https://github.com/stardiviner/arduino-mode"))]) (archive-rpm . [(20180706 1232) ((emacs (24 4))) "RPM and CPIO support for archive-mode" tar ((:commit . "59f83caebbd2f92fd634f6968e6d17b50ffa3dc7"))]) (archive-region . [(20140201 2342) nil "Move region to archive file instead of killing" single ((:commit . "0d357d4c42a6a248c457f358f81b20fd20fede2f") (:keywords "languages") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "http://www.emacswiki.org/cgi-bin/wiki/download/archive-region.el"))]) (arch-packer . [(20170730 1321) ((emacs (25 1)) (s (1 11 0)) (async (1 9 2)) (dash (2 12 0))) "Arch Linux package management frontend" single ((:commit . "940e96f7d357c6570b675a0f942181c787f1bfd7") (:authors ("Fritz Stelzer" . "brotzeitmacher@gmail.com")) (:maintainer "Fritz Stelzer" . "brotzeitmacher@gmail.com") (:url . "https://github.com/brotzeitmacher/arch-packer"))]) (apt-sources-list . [(20180527 1241) ((emacs (24 4))) "Mode for editing APT source.list files" single ((:commit . "44112833b3fa7f4d7e43708e5996782e22bb2fa3") (:authors ("Dr. Rafael Sepúlveda" . "drs@gnulinux.org.mx")) (:maintainer "Joe Wreschnig" . "joe.wreschnig@gmail.com") (:url . "https://git.korewanetadesu.com/apt-sources-list.git"))]) (apropospriate-theme . [(20181111 2112) nil "A colorful, low-contrast, light & dark theme set for Emacs with a fun name." tar ((:commit . "88c243ec90c1df7918c463b5a7ec875d057e8999") (:keywords "color" "theme") (:url . "https://github.com/waymondo/apropospriate-theme"))]) (aproject . [(20150605 906) nil "Basic project framework for Emacs" tar ((:commit . "3c7d23c341862dfd77fd0a64775df12ddb44ab54") (:keywords "environment" "project") (:authors ("Vietor Liu" . "vietor.liu@gmail.com")) (:maintainer "Vietor Liu" . "vietor.liu@gmail.com") (:url . "https://github.com/vietor/aproject"))]) (applescript-mode . [(20090321 632) nil "major mode for editing AppleScript source" single ((:commit . "8f888cd80af1e0902b5609143facd3051bc94892") (:keywords "languages" "tools") (:authors ("sakito" . "sakito@users.sourceforge.jp")) (:maintainer "sakito" . "sakito@users.sourceforge.jp"))]) (apples-mode . [(20110121 418) nil "Major mode for editing and executing AppleScript code" tar ((:commit . "83a9ab0d6ba82496e2f7df386909b1a55701fccb") (:keywords "applescript" "languages") (:authors ("tequilasunset" . "tequilasunset.mac@gmail.com")) (:maintainer "tequilasunset" . "tequilasunset.mac@gmail.com"))]) (apiwrap . [(20180602 2231) ((emacs (25))) "api-wrapping macros" single ((:commit . "e4c9c57d6620a788ec8a715ff1bb50542edea3a6") (:keywords "tools" "maint" "convenience") (:authors ("Sean Allred" . "code@seanallred.com")) (:maintainer "Sean Allred" . "code@seanallred.com") (:url . "https://github.com/vermiculus/apiwrap.el"))]) (apib-mode . [(20170520 1358) ((markdown-mode (2 1))) "Major mode for API Blueprint files" single ((:commit . "6cc7c6f21b8e415b1718bb6a07ab2182e9e9dde6") (:keywords "tools" "api-blueprint") (:authors ("Vilibald Wanča" . "vilibald@wvi.cz")) (:maintainer "Vilibald Wanča" . "vilibald@wvi.cz") (:url . "http://github.com/w-vi/apib-mode"))]) (apel . [(20170122 2258) nil "APEL (A Portable Emacs Library) provides support for portable Emacs Lisp programs" tar ((:commit . "339eb28ffae3165255a79de9b1fd362f43cd37c3"))]) (apache-mode . [(20180724 351) nil "major mode for editing Apache configuration files" single ((:commit . "d2ac57942f852a727db4fc73004e1e8f046cb657") (:keywords "languages" "faces") (:authors ("Karl Chen" . "quarl@nospam.quarl.org")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me") (:url . "https://github.com/emacs-php/apache-mode"))]) (aozora-view . [(20140310 1317) nil "Aozora Bunko text Emacs viewer." tar ((:commit . "b0390616d19e45f15f9a2f5d5688274831e721fd") (:keywords "text") (:authors ("KAWABATA, Taichi <kawabata.taichi_at_gmail.com>")) (:maintainer "KAWABATA, Taichi <kawabata.taichi_at_gmail.com>") (:url . "https://github.com/kawabata/aozora-view"))]) (anzu . [(20161017 1607) ((emacs (24 3))) "Show number of matches in mode-line while searching" single ((:commit . "e6c56ca8b23ac433f7be58b6f3f50801dd4164e4") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-anzu"))]) (anyins . [(20131229 1041) nil "Insert content at multiple places from shell command or kill-ring" single ((:commit . "83844c17ac9b5b6c7655ee556b75689e4c8ea663") (:keywords "insert" "rectangular") (:authors ("Anthony HAMON" . "hamon.anth@gmail.com")) (:maintainer "Anthony HAMON" . "hamon.anth@gmail.com") (:url . "http://github.com/antham/anyins"))]) (anybar . [(20160816 1421) nil "Control AnyBar from Emacs" single ((:commit . "7a0743e0d31bcb36ab1bb2e351f3e7139c422ac5") (:keywords "anybar") (:authors ("Christopher Shea" . "cmshea@gmail.com")) (:maintainer "Christopher Shea" . "cmshea@gmail.com"))]) (anx-api . [(20140208 1514) nil "Interact with the AppNexus API from Emacs." single ((:commit . "b2411ebc966ac32c3ffc61bc22bf183834df0fa0") (:keywords "convenience" "json" "rest" "api" "appnexus") (:authors ("Rich Loveland")) (:maintainer "Rich Loveland"))]) (anti-zenburn-theme . [(20180712 1838) nil "Low-contrast Zenburn-inverted theme" single ((:commit . "dbafbaa86be67c1d409873f57a5c0bbe1e7ca158") (:authors ("Andrey Kotlarski" . "m00naticus@gmail.com")) (:maintainer "Andrey Kotlarski" . "m00naticus@gmail.com") (:url . "https://github.com/m00natic/anti-zenburn-theme"))]) (ant . [(20160211 1543) nil "helpers for compiling with ant" single ((:commit . "510b5a3f57ee4b2855422d88d359a28922c1ab70") (:keywords "compilation" "ant" "java"))]) (ansible-vault . [(20181116 1706) ((emacs (24 3))) "Minor mode for editing ansible vault files" single ((:commit . "d16389f44a4e76a12c789fe65df20692c7113685") (:keywords "ansible" "ansible-vault" "tools") (:maintainer "Zachary Elliott" . "contact@zell.io") (:url . "http://github.com/zellio/ansible-vault-mode"))]) (ansible-doc . [(20160924 824) ((emacs (24 3))) "Ansible documentation Minor Mode" single ((:commit . "86083a7bb2ed0468ca64e52076b06441a2f8e9e0") (:keywords "tools" "help") (:authors ("Sebastian Wiesner" . "swiesner@lunaryorn")) (:maintainer "Sebastian Wiesner" . "swiesner@lunaryorn") (:url . "https://github.com/lunaryorn/ansible-doc.el"))]) (ansible . [(20180813 114) ((s (1 9 0)) (f (0 16 2))) "Ansible minor mode" tar ((:commit . "8a097176d6772b6667254dbbe19c5fb64527bf5d") (:authors ("k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>")) (:maintainer "k1LoW (Kenichirou Oyama), <k1lowxb [at] gmail [dot] com> <k1low [at] 101000lab [dot] org>") (:url . "http://101000lab.org"))]) (ansi . [(20150703 826) ((s (1 6 1)) (dash (1 5 0))) "Turn string into ansi strings" single ((:commit . "12b4c5d91b3da1902838f421e5af6d40e2cd57dd") (:keywords "color" "ansi") (:authors ("Johan Andersson" . "johan.rejeep@gmail.com")) (:maintainer "Johan Andersson" . "johan.rejeep@gmail.com") (:url . "http://github.com/rejeep/ansi"))]) (annoying-arrows-mode . [(20161024 646) ((cl-lib (0 5))) "Ring the bell if using arrows too much" single ((:commit . "3c42e9807d7696da2da2a21b63beebf9cdb3f5dc") (:authors ("Magnar Sveen" . "magnars@gmail.com")) (:maintainer "Magnar Sveen" . "magnars@gmail.com"))]) (annotate-depth . [(20160520 2040) nil "Annotate buffer if indentation depth is beyond threshold." single ((:commit . "fcb24fa36287250e40d195590c4ca4a8a696277b") (:keywords "convenience") (:authors ("Morten Slot Kristensen <msk AT nullpointer DOT dk>")) (:maintainer "Morten Slot Kristensen <msk AT nullpointer DOT dk>") (:url . "https://github.com/netromdk/annotate-depth"))]) (annotate . [(20171111 736) nil "annotate files without changing them" single ((:commit . "dedbd9e5d5286f1ca8ad73e489d408a20f06156c") (:authors ("Bastian Bechtold")) (:maintainer "Bastian Bechtold") (:url . "https://github.com/bastibe/annotate.el"))]) (anki-mode . [(20181106 1837) ((emacs (24 4)) (dash (2 12 0)) (markdown-mode (2 2)) (s (1 11 0)) (request (0 3 0))) "A major mode for creating anki cards" single ((:commit . "365fcfff45ed543f3df0d4110415f6f818ec2727") (:keywords "tools") (:authors ("David Shepherd" . "davidshepherd7@gmail.com")) (:maintainer "David Shepherd" . "davidshepherd7@gmail.com") (:url . "https://github.com/davidshepherd7/anki-mode"))]) (anki-editor . [(20181005 838) ((emacs (25)) (request (0 3 0)) (dash (2 12 0))) "Minor mode for making Anki cards with Org" tar ((:commit . "0bee0064bc23ff2b3b6fc29beba97346576b380d") (:authors ("Lei Tan")) (:maintainer "Lei Tan") (:url . "https://github.com/louietan/anki-editor"))]) (angular-snippets . [(20140514 523) ((s (1 4 0)) (dash (1 2 0))) "Yasnippets for AngularJS" tar ((:commit . "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b"))]) (angular-mode . [(20151201 2127) nil "Major mode for Angular.js" tar ((:commit . "8720cde86af0f1859ccc8580571e8d0ad1c52cff") (:keywords "languages" "javascript") (:authors ("Rudolf Olah" . "omouse@gmail.com")) (:maintainer "Rudolf Olah" . "omouse@gmail.com") (:url . "https://github.com/omouse/angularjs-mode"))]) (angry-police-captain . [(20120829 1252) nil "Show quote from http://theangrypolicecaptain.com in the minibuffer" single ((:commit . "d11931c5cb63368dcc4a48797962428cca6d3e9d") (:keywords "games" "web" "fun") (:authors ("Rolando Pereira" . "rolando_pereira@sapo.pt")) (:maintainer "Rolando Pereira" . "rolando_pereira@sapo.pt"))]) (android-mode . [(20181016 709) nil "Minor mode for Android application development" single ((:commit . "f8cabafaa266b56fcf4b3c6942b3ae062735251a") (:keywords "tools" "processes") (:authors ("R.W. van 't Veer")) (:maintainer "R.W. van 't Veer") (:url . "https://github.com/remvee/android-mode"))]) (anaphora . [(20180618 2200) nil "anaphoric macros providing implicit temp variables" single ((:commit . "3b2da3f759b244975852e79721c4a2dbad3905cf") (:keywords "extensions") (:authors ("Roland Walker" . "walker@pobox.com")) (:maintainer "Roland Walker" . "walker@pobox.com") (:url . "http://github.com/rolandwalker/anaphora"))]) (anaconda-mode . [(20181030 2109) ((emacs (25)) (pythonic (0 1 0)) (dash (2 6 0)) (s (1 9)) (f (0 16 2))) "Code navigation, documentation lookup and completion for Python" single ((:commit . "21a6218c2299575c82573a5c2c773d72b0f8be0d") (:authors ("Artem Malyshev" . "proofit404@gmail.com")) (:maintainer "Artem Malyshev" . "proofit404@gmail.com") (:url . "https://github.com/proofit404/anaconda-mode"))]) (amx . [(20181011 2251) ((emacs (24 4)) (s (0))) "Alternative M-x with extra features." single ((:commit . "4b08edb34c4d9c807ef1a820a629cda15e2347a0") (:keywords "convenience" "usability") (:authors ("Ryan C. Thompson" . "rct@thompsonclan.org") ("Cornelius Mika" . "cornelius.mika@gmail.com")) (:maintainer "Ryan C. Thompson" . "rct@thompsonclan.org") (:url . "http://github.com/DarwinAwardWinner/amx/"))]) (ample-zen-theme . [(20150119 2154) nil "AmpleZen Theme for Emacs 24" single ((:commit . "b277bb7abd4b6624e8d59f02474b79af50a007bd") (:keywords "theme" "dark" "emacs 24") (:authors ("Michael Wall")) (:maintainer "Michael Wall") (:url . "https://github.com/mjwall/ample-zen"))]) (ample-theme . [(20180207 1745) nil "Calm Dark Theme for Emacs" tar ((:commit . "366698400c555211c2082962a5d74f3dd79a78c8") (:keywords "theme" "dark") (:authors ("Jordon Biondo" . "jordonbiondo@gmail.com")) (:maintainer "Jordon Biondo" . "jordonbiondo@gmail.com") (:url . "https://github.com/jordonbiondo/ample-theme"))]) (ample-regexps . [(20151023 1000) nil "ample regular expressions for Emacs" tar ((:commit . "cbe91e148cac1ee8e223874dc956ed4cf607f046") (:keywords "regexps" "extensions" "tools") (:authors ("immerrr" . "immerrr@gmail.com")) (:maintainer "immerrr" . "immerrr@gmail.com"))]) (amd-mode . [(20180111 1402) ((emacs (25)) (projectile (20161008 47)) (s (1 9 0)) (f (0 16 2)) (seq (2 16)) (makey (0 3)) (js2-mode (20140114)) (js2-refactor (0 6 1))) "Minor mode for handling JavaScript AMD module requirements." single ((:commit . "01fd19e0d635ccaf8e812364d8720733f2e84126") (:keywords "javascript" "amd" "projectile") (:authors ("Nicolas Petton" . "petton.nicolas@gmail.com")) (:maintainer "Nicolas Petton" . "petton.nicolas@gmail.com"))]) (all-the-icons-ivy . [(20180826 2016) ((emacs (24 4)) (all-the-icons (2 4 0)) (ivy (0 8 0))) "Shows icons while using ivy and counsel" single ((:commit . "7baba16410e78ca3c7a564c3731baa75b2e8d93a") (:keywords "faces") (:authors ("asok")) (:maintainer "asok"))]) (all-the-icons-gnus . [(20180511 654) ((emacs (24 4)) (dash (2 12 0)) (all-the-icons (3 1 0))) "Shows icons for in Gnus" single ((:commit . "27f78996da0725943bcfb2d18038e6f7bddfa9c7") (:keywords "mail" "tools") (:authors ("Nicolas Lamirault" . "nicolas.lamirault@gmail.com")) (:maintainer "Nicolas Lamirault" . "nicolas.lamirault@gmail.com"))]) (all-the-icons-dired . [(20170418 2131) ((emacs (24 4)) (all-the-icons (2 2 0))) "Shows icons for each file in dired mode" single ((:commit . "980b7747d6c4a7992a1ec56afad908956db0a519") (:keywords "files" "icons" "dired") (:authors ("jtbm37")) (:maintainer "jtbm37"))]) (all-the-icons . [(20180125 1557) ((emacs (24 3)) (memoize (1 0 1))) "A library for inserting Developer icons" tar ((:commit . "52d1f2d36468146c93aaf11399f581401a233306") (:keywords "convenient" "lisp") (:authors ("Dominic Charlesworth" . "dgc336@gmail.com")) (:maintainer "Dominic Charlesworth" . "dgc336@gmail.com") (:url . "https://github.com/domtronn/all-the-icons.el"))]) (all-ext . [(20170115 205) ((all (1 0))) "M-x all with helm-swoop/anything/multiple-cursors/line-number" single ((:commit . "9f4ef84a147cf4e0af6ef45826d6cb3558db6b88") (:keywords "all" "search" "replace" "anything" "helm" "helm-swoop" "occur") (:authors ("rubikitch" . "rubikitch@ruby-lang.org")) (:maintainer "rubikitch" . "rubikitch@ruby-lang.org") (:url . "https://github.com/rubikitch/all-ext"))]) (align-cljlet . [(20160112 2101) ((clojure-mode (1 11 5))) "Space align various Clojure forms" single ((:commit . "602d72a7ad52788a0265e3c6da519464a98166b8") (:url . "https://github.com/gstamp/align-cljlet"))]) (alert . [(20181022 1742) ((gntp (0 1)) (log4e (0 3 0)) (cl-lib (0 5))) "Growl-style notification system for Emacs" single ((:commit . "9f329be87820474925f29b52a1131084c8ea95b9") (:keywords "notification" "emacs" "message") (:authors ("John Wiegley" . "jwiegley@gmail.com")) (:maintainer "John Wiegley" . "jwiegley@gmail.com") (:url . "https://github.com/jwiegley/alert"))]) (alect-themes . [(20180504 1720) ((emacs (24 0))) "Configurable light, dark and black themes for Emacs 24 or later" tar ((:commit . "4d90833a7381123a979f73fa97a013071ca7ff00") (:keywords "color" "theme") (:authors ("Alex Kost" . "alezost@gmail.com")) (:maintainer "Alex Kost" . "alezost@gmail.com") (:url . "https://github.com/alezost/alect-themes"))]) (alda-mode . [(20180608 605) ((emacs (24 0))) "An Alda major mode" single ((:commit . "c49dad79591de6662bf5f4eb79acac1d5dd2610e") (:keywords "alda" "highlight") (:authors ("Jay Kamat" . "jaygkamat@gmail.com")) (:maintainer "Jay Kamat" . "jaygkamat@gmail.com") (:url . "http://gitlab.com/jgkamat/alda-mode"))]) (alchemist . [(20180312 1304) ((elixir-mode (2 2 5)) (dash (2 11 0)) (emacs (24 4)) (company (0 8 0)) (pkg-info (0 4)) (s (1 11 0))) "Elixir tooling integration into Emacs" tar ((:commit . "6f99367511ae209f8fe2c990779764bbb4ccb6ed") (:keywords "languages" "elixir" "elixirc" "mix" "hex" "alchemist") (:authors ("Samuel Tonini" . "tonini.samuel@gmail.com")) (:maintainer "Samuel Tonini" . "tonini.samuel@gmail.com") (:url . "http://www.github.com/tonini/alchemist.el"))]) (alarm-clock . [(20181114 2335) ((emacs (24 4))) "Alarm Clock" tar ((:commit . "bf3f8e638c21d7ec27a63c28a90a4456de1ee50c") (:keywords "calendar" "tools" "convenience") (:authors ("Steve Lemuel" . "wlemuel@hotmail.com")) (:maintainer "Steve Lemuel" . "wlemuel@hotmail.com") (:url . "https://github.com/wlemuel/alarm-clock"))]) (alan-mode . [(20181011 1129) ((flycheck (32)) (emacs (25 1)) (s (1 12))) "Major mode for editing M-industries Alan files" single ((:commit . "130511906423732fdb941e51ca3e26194f65685a") (:keywords "alan" "languages") (:authors ("Paul van Dam" . "pvandam@m-industries.com")) (:maintainer "Paul van Dam" . "pvandam@m-industries.com") (:url . "https://github.com/M-industries/AlanForEmacs"))]) (airplay . [(20130212 1226) ((request (20130110 2144)) (simple-httpd (1 4 1)) (deferred (0 3 1))) "Airplay bindings to Emacs" tar ((:commit . "bd690aafcae3a887946e1bba8327597932d964ad") (:keywords "appletv" "airplay") (:authors ("Wataru MIYAGUNI" . "gonngo@gmail.com")) (:maintainer "Wataru MIYAGUNI" . "gonngo@gmail.com") (:url . "https://github.com/gongo/airplay-el"))]) (airline-themes . [(20180411 406) ((powerline (2 3))) "vim-airline themes for emacs powerline" tar ((:commit . "8b528fbae0e557461315bed82883275d58df41f2") (:keywords "evil" "mode-line" "powerline" "airline" "themes") (:authors ("Anthony DiGirolamo" . "anthony.digirolamo@gmail.com")) (:maintainer "Anthony DiGirolamo" . "anthony.digirolamo@gmail.com") (:url . "http://github.com/AnthonyDiGirolamo/airline-themes"))]) (ahungry-theme . [(20180131 328) ((emacs (24))) "Ahungry color theme for Emacs.  Make sure to (load-theme 'ahungry)." single ((:commit . "a038d91ec593d1f1b19ca66a0576d59bbc24c523") (:keywords "ahungry" "palette" "color" "theme" "emacs" "color-theme" "deftheme") (:authors ("Matthew Carter" . "m@ahungry.com")) (:maintainer "Matthew Carter" . "m@ahungry.com") (:url . "https://github.com/ahungry/color-theme-ahungry"))]) (ahk-mode . [(20181113 1238) ((emacs (24 3))) "Major mode for editing AHK (AutoHotkey and AutoHotkey_L)" single ((:commit . "fde5be2cd4a0a48dc876031fb25be82892f700e0") (:keywords "ahk" "autohotkey" "hotkey" "keyboard shortcut" "automation") (:authors ("Rich Alesi")) (:maintainer "Rich Alesi") (:url . "https://github.com/ralesi/ahk-mode"))]) (ahg . [(20181120 1301) nil "Alberto's Emacs interface for Mercurial (Hg)" single ((:authors ("Alberto Griggio" . "agriggio@users.sourceforge.net")) (:maintainer "Alberto Griggio" . "agriggio@users.sourceforge.net") (:url . "https://bitbucket.org/agriggio/ahg"))]) (aggressive-indent . [(20181018 236) ((emacs (24 1)) (cl-lib (0 5))) "Minor mode to aggressively keep your code always indented" single ((:commit . "cc8da01e32684e1b75d2901400e6723b2c2d42f8") (:keywords "indent" "lisp" "maint" "tools") (:authors ("Artur Malabarba" . "emacs@endlessparentheses.com")) (:maintainer "Artur Malabarba" . "emacs@endlessparentheses.com") (:url . "https://github.com/Malabarba/aggressive-indent-mode"))]) (aggressive-fill-paragraph . [(20180910 816) ((dash (2 10 0))) "A mode to automatically keep paragraphs filled" single ((:commit . "2d65d925318006e2f6fa261ad192fbc2d212877b") (:keywords "fill-paragraph" "automatic" "comments") (:authors ("David Shepherd" . "davidshepherd7@gmail.com")) (:maintainer "David Shepherd" . "davidshepherd7@gmail.com") (:url . "https://github.com/davidshepherd7/aggressive-fill-paragraph-mode"))]) (ag . [(20180225 1040) ((dash (2 8 0)) (s (1 9 0)) (cl-lib (0 5))) "A front-end for ag ('the silver searcher'), the C ack replacement." single ((:commit . "77b4f50c5372bf219da496567b2b867261f0d354") (:authors ("Wilfred Hughes" . "me@wilfred.me.uk")) (:maintainer "Wilfred Hughes" . "me@wilfred.me.uk"))]) (afternoon-theme . [(20140104 1859) ((emacs (24 1))) "Dark color theme with a deep blue background" single ((:commit . "89b1d778a1f8b385775c122f2bd1c62f0fbf931a") (:keywords "themes") (:authors ("Ozan Sener" . "ozan@ozansener.com")) (:maintainer "Ozan Sener" . "ozan@ozansener.com") (:url . "http://github.com/osener/emacs-afternoon-theme"))]) (aes . [(20171029 623) nil "Implementation of AES" single ((:commit . "b7d5da89c3443292e4f0b1c9d254d459933cf5af") (:keywords "data" "tools") (:authors ("Markus Sauermann" . "emacs-aes@sauermann-consulting.de")) (:maintainer "Markus Sauermann" . "emacs-aes@sauermann-consulting.de") (:url . "https://github.com/Sauermann/emacs-aes"))]) (adoc-mode . [(20160314 2130) ((markup-faces (1 0 0))) "a major-mode for editing AsciiDoc files in Emacs" single ((:commit . "745884359a1b8826ede2c4cfd2f0b5478953ac40") (:keywords "wp" "asciidoc") (:authors ("Florian Kaufmann" . "sensorflo@gmail.com")) (:maintainer "Florian Kaufmann" . "sensorflo@gmail.com") (:url . "https://github.com/sensorflo/adoc-mode/wiki"))]) (addressbook-bookmark . [(20171108 634) ((emacs (24))) "An address book based on Standard Emacs bookmarks." single ((:commit . "981355dcfb7477c00d41560a5a66fce73f02c0f5") (:authors ("Thierry Volpiatto" . "thierry.volpiatto@gmail.com")) (:maintainer "Thierry Volpiatto" . "thierry.volpiatto@gmail.com") (:url . "https://github.com/thierryvolpiatto/addressbook-bookmark"))]) (add-node-modules-path . [(20180710 2342) nil "Add node_modules to your exec-path" single ((:commit . "f31e69ccb681f882aebb806ce6e9478e3ac39708") (:keywords "javascript" "node" "node_modules" "eslint") (:authors ("Neri Marschik" . "marschik_neri@cyberagent.co.jp")) (:maintainer "Neri Marschik" . "marschik_neri@cyberagent.co.jp") (:url . "https://github.com/codesuki/add-node-modules-path"))]) (add-hooks . [(20171217 123) nil "Functions for setting multiple hooks" single ((:commit . "1845137703461fc44bd77cf24014ba58f19c369d") (:keywords "lisp") (:authors ("Nick McCurdy" . "nick@nickmccurdy.com")) (:maintainer "Nick McCurdy" . "nick@nickmccurdy.com") (:url . "https://github.com/nickmccurdy/add-hooks"))]) (adafruit-wisdom . [(20180225 52) ((emacs (25))) "Get/display adafruit.com quotes" single ((:commit . "aafc01726f1b3160321d40160298a0e1b054b382") (:keywords "games") (:authors ("Neil Okamoto" . "neil.okamoto+melpa@gmail.com")) (:maintainer "Neil Okamoto" . "neil.okamoto+melpa@gmail.com") (:url . "https://github.com/gonewest818/adafruit-wisdom.el"))]) (activity-watch-mode . [(20181112 1134) ((emacs (24)) (projectile (0)) (request (0))) "Automatic time tracking extension." single ((:commit . "85a34b213db8ef88db3ae32896bb3235b643e26f") (:keywords "calendar" "comm") (:authors ("Gabor Torok <gabor@20y.hu>, Alan Hamlett" . "alan@wakatime.com")) (:maintainer "Paul d'Hubert" . "paul.dhubert@ya.ru") (:url . "https://github.com/pauldub/activity-watch-mode"))]) (actionscript-mode . [(20180527 1701) nil "A simple mode for editing Actionscript 3 files" single ((:commit . "65abd58e198458a8e46748c5962c41d80d60c4ea") (:keywords "language" "modes") (:authors ("Austin Haas")) (:maintainer "Austin Haas"))]) (ack-menu . [(20150504 2022) ((mag-menu (0 1 0))) "A menu-based front-end for ack" single ((:commit . "f77be93a4697926ecf3195a355eb69580f695f4d") (:keywords "tools" "matching" "convenience") (:authors ("Steven Thomas") ("Nikolaj Schumacher")) (:maintainer "Steven Thomas") (:url . "https://github.com/chumpage/ack-menu"))]) (achievements . [(20150530 1826) ((keyfreq (0 0 3))) "Achievements for emacs usage." tar nil]) (ace-window . [(20181008 1549) ((avy (0 2 0))) "Quickly switch windows." single ((:commit . "5b88de026cea5fc57e62bb490034392815be5f0f") (:keywords "window" "location") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/ace-window"))]) (ace-popup-menu . [(20180101 615) ((emacs (24 3)) (avy-menu (0 1))) "Replace GUI popup menu with something more efficient" single ((:commit . "7b436a0d9e896463d00afbeb7e49a59cc6670e9c") (:keywords "convenience" "popup" "menu") (:authors ("Mark Karpov" . "markkarpov92@gmail.com")) (:maintainer "Mark Karpov" . "markkarpov92@gmail.com") (:url . "https://github.com/mrkkrp/ace-popup-menu"))]) (ace-pinyin . [(20170501 626) ((avy (0 2 0)) (pinyinlib (0 1 0))) "Jump to Chinese characters using avy or ace-jump-mode" single ((:commit . "a9df88c1e6a32a4f4895acbb8c45383693c494c1") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com") (:url . "https://github.com/cute-jumper/ace-pinyin"))]) (ace-mc . [(20160409 37) ((ace-jump-mode (1 0)) (multiple-cursors (1 0)) (dash (2 10 0))) "Add multiple cursors quickly using ace jump" single ((:commit . "b106bf6a6c78c3e026fbe9a99a34d6239adce4fd") (:keywords "motion" "location" "cursor") (:authors ("Josh Moller-Mara" . "jmm@cns.nyu.edu")) (:maintainer "Josh Moller-Mara" . "jmm@cns.nyu.edu") (:url . "https://github.com/mm--/ace-mc"))]) (ace-link . [(20181103 2106) ((avy (0 4 0))) "Quickly follow links" single ((:commit . "dfd0fdf649703790a9a5ee027f2f86d6f1269d55") (:keywords "convenience" "links" "avy") (:authors ("Oleh Krehel" . "ohwoeowho@gmail.com")) (:maintainer "Oleh Krehel" . "ohwoeowho@gmail.com") (:url . "https://github.com/abo-abo/ace-link"))]) (ace-jump-zap . [(20170717 1849) ((ace-jump-mode (1 0)) (dash (2 10 0))) "Character zapping, `ace-jump-mode` style" single ((:commit . "52b5d4c6c73bd0fc833a0dcb4e803a5287d8cae8") (:keywords "convenience" "tools" "extensions") (:authors ("justin talbott" . "justin@waymondo.com")) (:maintainer "justin talbott" . "justin@waymondo.com") (:url . "https://github.com/waymondo/ace-jump-zap"))]) (ace-jump-mode . [(20140616 815) nil "a quick cursor location minor mode for emacs" single ((:commit . "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac") (:keywords "motion" "location" "cursor") (:authors ("winterTTr" . "winterTTr@gmail.com")) (:maintainer "winterTTr" . "winterTTr@gmail.com") (:url . "https://github.com/winterTTr/ace-jump-mode/"))]) (ace-jump-helm-line . [(20160918 1836) ((avy (0 4 0)) (helm (1 6 3))) "Ace-jump to a candidate in helm window" single ((:commit . "1483055255df3f8ae349f7520f05b1e43ea3ed37") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com") (:url . "https://github.com/cute-jumper/ace-jump-helm-line"))]) (ace-jump-buffer . [(20171031 1550) ((avy (0 4 0)) (dash (2 4 0))) "fast buffer switching extension to `avy'" single ((:commit . "ae5be0415c823f7bb66833aa4af2180d4cf99cef") (:authors ("Justin Talbott" . "justin@waymondo.com")) (:maintainer "Justin Talbott" . "justin@waymondo.com") (:url . "https://github.com/waymondo/ace-jump-buffer"))]) (ace-isearch . [(20170506 712) ((emacs (24))) "A seamless bridge between isearch, ace-jump-mode, avy, helm-swoop and swiper" single ((:commit . "0502f95e333c8059a678745e5a112542965661d1") (:authors ("Akira Tamamori")) (:maintainer "Akira Tamamori") (:url . "https://github.com/tam17aki/ace-isearch"))]) (ace-flyspell . [(20170309 509) ((avy (0 4 0))) "Jump to and correct spelling errors using `ace-jump-mode' and flyspell" single ((:commit . "538d4f8508d305262ba0228dfe7c819fb65b53c9") (:keywords "extensions") (:authors ("Junpeng Qiu" . "qjpchmail@gmail.com")) (:maintainer "Junpeng Qiu" . "qjpchmail@gmail.com") (:url . "https://github.com/cute-jumper/ace-flyspell"))]) (academic-phrases . [(20180723 1021) ((dash (2 12 0)) (s (1 12 0)) (ht (2 0)) (emacs (24))) "Bypass that mental block when writing your papers." single ((:commit . "25d9cf67feac6359cb213f061735e2679c84187f") (:keywords "academic" "convenience" "papers" "writing" "wp") (:authors ("Nasser Alshammari" . "designernasser@gmail.com")) (:maintainer "Nasser Alshammari" . "designernasser@gmail.com") (:url . "https://github.com/nashamri/academic-phrases"))]) (ac-sly . [(20170728 1027) ((sly (1 0 0 -3)) (auto-complete (1 4)) (cl-lib (0 5))) "An auto-complete source using sly completions" single ((:commit . "bf69c687c4ecf1994349d20c182e9b567399912e") (:authors ("Damian T. Dobroczy\\'nski" . "qoocku@gmail.com")) (:maintainer "Damian T. Dobroczy\\'nski" . "qoocku@gmail.com") (:url . "https://github.com/qoocku/ac-sly"))]) (ac-slime . [(20171027 2100) ((auto-complete (1 4)) (slime (2 9)) (cl-lib (0 5))) "An auto-complete source using slime completions" single ((:commit . "6c80cb602ddad46486288f94ad7546396c6e4b1a") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com") (:url . "https://github.com/purcell/ac-slime"))]) (ac-skk . [(20141230 119) ((auto-complete (1 3 1)) (ddskk (16 0 50)) (tinysegmenter (0)) (cl-lib (0 5))) "auto-complete-mode source for DDSKK a.k.a Japanese input method" single ((:commit . "d25a265930430d080329789fb253d786c01dfa24") (:keywords "convenience" "auto-complete") (:authors ("lugecy <https://twitter.com/lugecy>")) (:maintainer "myuhe") (:url . "https://github.com/myuhe/ac-skk.el"))]) (ac-rtags . [(20181117 1949) ((auto-complete (1 4 0)) (rtags (2 10))) "auto-complete back-end for RTags" single ((:commit . "194cd70d38c3e2e01b9de04d006f94573510aebb") (:authors ("Jan Erik Hanssen" . "jhanssen@gmail.com") ("Anders Bakken" . "agbakken@gmail.com")) (:maintainer "Jan Erik Hanssen" . "jhanssen@gmail.com") (:url . "http://rtags.net"))]) (ac-racer . [(20170114 809) ((emacs (24 3)) (auto-complete (1 5 0)) (racer (0 0 2))) "auto-complete source of racer" single ((:commit . "4408c2d652dec0432e20c05e001db8222d778c6b") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-ac-racer"))]) (ac-php-core . [(20181115 1442) ((emacs (24)) (dash (1)) (php-mode (1)) (xcscope (1)) (s (1)) (f (0 17 0)) (popup (0 5 0))) "gen tags for php" tar ((:commit . "1883d3178ded71534a7e93189bc789d65e4a000e") (:keywords "completion" "convenience" "intellisense") (:authors (nil . "xcwenn@qq.com [https://github.com/xcwen]")) (:maintainer nil . "xcwenn@qq.com [https://github.com/xcwen]") (:url . "https://github.com/xcwen/ac-php"))]) (ac-php . [(20171201 934) ((ac-php-core (1)) (auto-complete (1 4 0)) (yasnippet (0 8 0))) "auto-completion source for php" single ((:commit . "1883d3178ded71534a7e93189bc789d65e4a000e") (:keywords "completion" "convenience" "intellisense") (:authors (nil . "xcwenn@qq.com [https://github.com/xcwen]")) (:maintainer nil . "xcwenn@qq.com [https://github.com/xcwen]") (:url . "https://github.com/xcwen/ac-php"))]) (ac-octave . [(20180406 334) ((auto-complete (1 4 0))) "An auto-complete source for Octave" single ((:commit . "fe0f931f2024f43de3c4fff4b1ace672413adeae") (:keywords "octave" "auto-complete" "completion") (:authors ("coldnew" . "coldnew.tw@gmail.com")) (:maintainer "coldnew" . "coldnew.tw@gmail.com") (:url . "https://github.com/coldnew/ac-octave"))]) (ac-mozc . [(20150227 1619) ((cl-lib (0 5)) (auto-complete (1 4)) (mozc (0))) "auto-complete sources for Japanese input using Mozc" single ((:commit . "4c6c8be4701010d9362184437c0f783e0335c631") (:authors ("igjit" . "igjit1@gmail.com")) (:maintainer "igjit" . "igjit1@gmail.com") (:url . "https://github.com/igjit/ac-mozc"))]) (ac-math . [(20141116 2127) ((auto-complete (1 4)) (math-symbol-lists (1 0))) "Auto-complete sources for input of mathematical symbols and latex tags" single ((:commit . "c012a8f620a48cb18db7d78995035d65eae28f11") (:keywords "latex" "auto-complete" "unicode" "symbols") (:authors ("Vitalie Spinu")) (:maintainer "Vitalie Spinu") (:url . "https://github.com/vitoshka/ac-math"))]) (ac-js2 . [(20140906 1142) ((js2-mode (20090723)) (skewer-mode (1 4))) "Auto-complete source for Js2-mode, with navigation" tar ((:commit . "721c482e1d4a08f4a29a74437257d573e8f69969") (:authors ("Scott Barnett" . "scott.n.barnett@gmail.com")) (:maintainer "Scott Barnett" . "scott.n.barnett@gmail.com") (:url . "https://github.com/ScottyB/ac-js2"))]) (ac-ispell . [(20151101 226) ((auto-complete (1 4)) (cl-lib (0 5))) "ispell completion source for auto-complete" single ((:commit . "22bace7387e9012002a6a444922f75f9913077b0") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-ac-ispell"))]) (ac-inf-ruby . [(20131115 1150) ((inf-ruby (2 3 2)) (auto-complete (1 4))) "Enable auto-complete in inf-ruby sessions" single ((:commit . "ee53fc9c61950da9a96df3ff5ef186f9a9faf151") (:keywords "languages" "tools") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (ac-html-csswatcher . [(20151208 2113) ((web-completion-data (0 1))) "css/less class/id completion with `ac-html' or `company-web'" single ((:commit . "b0f3e7e1a3fe49e88b6eb6432377232fc715f221") (:keywords "html" "css" "less" "auto-complete") (:authors ("Olexandr Sydorchuck " . "olexandr.syd@gmail.com")) (:maintainer "Olexandr Sydorchuck " . "olexandr.syd@gmail.com") (:url . "https://github.com/osv/ac-html-csswatcher"))]) (ac-html-angular . [(20151225 719) ((web-completion-data (0 1))) "auto complete angular15 data for `ac-html' and `company-web'" tar ((:commit . "6bafe09afe03112ca4183d58461c1a6f6c2b3c67") (:keywords "html" "auto-complete" "angular") (:authors ("Olexandr Sydorchuk" . "olexandr.syd@gmail.com")) (:maintainer "Olexandr Sydorchuk" . "olexandr.syd@gmail.com") (:url . "https://github.com/osv/ac-html-bootstrap"))]) (ac-html . [(20151005 731) ((auto-complete (1 4)) (s (1 9)) (f (0 17)) (dash (2 10))) "auto complete source for html tags and attributes" tar ((:commit . "668154cba123c321d1b07c2dc8b26d14092253b8") (:keywords "html" "auto-complete" "slim" "haml" "jade") (:authors ("Zhang Kai Yu" . "yeannylam@gmail.com")) (:maintainer "Zhang Kai Yu" . "yeannylam@gmail.com") (:url . "https://github.com/cheunghy/ac-html"))]) (ac-helm . [(20160319 233) ((helm (1 6 3)) (auto-complete (1 4 0)) (popup (0 5 0)) (cl-lib (0 5))) "Helm interface for auto-complete" single ((:commit . "baf2b1e04bcffa835084389c0fab415f26efbf32") (:keywords "completion" "convenience" "helm") (:authors ("rubikitch" . "rubikitch@ruby-lang.org") ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com"))]) (ac-haskell-process . [(20150423 1402) ((auto-complete (1 4)) (haskell-mode (13))) "Haskell auto-complete source which uses the current haskell process" single ((:commit . "0362d4323511107ec70e7165cb612f3ab01b712f") (:keywords "languages") (:authors ("Steve Purcell" . "steve@sanityinc.com")) (:maintainer "Steve Purcell" . "steve@sanityinc.com"))]) (ac-geiser . [(20130929 647) ((geiser (0 5)) (auto-complete (1 4))) "Auto-complete backend for geiser" tar ((:commit . "502d18a8a0bd4b5fdd495a99299ba2a632c5cd9a"))]) (ac-etags . [(20161001 1507) ((auto-complete (1 4))) "etags/ctags completion source for auto-complete" single ((:commit . "7983e631c226fe0fa53af3b2d56bf4eca3d785ce") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-ac-etags"))]) (ac-emoji . [(20150823 711) ((auto-complete (1 5 0)) (cl-lib (0 5))) "auto-complete source of Emoji" tar ((:commit . "40a639764eb654f1b4bb705c817b66032a26ff2b") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-ac-emoji"))]) (ac-emmet . [(20131015 1558) ((emmet-mode (1 0 2)) (auto-complete (1 4))) "auto-complete sources for emmet-mode's snippets" single ((:commit . "88f24876ee3b759978d4614a758280b5d512d543") (:keywords "completion" "convenience" "emmet") (:authors ("Yasuyuki Oka" . "yasuyk@gmail.com")) (:maintainer "Yasuyuki Oka" . "yasuyk@gmail.com") (:url . "https://github.com/yasuyk/ac-emmet"))]) (ac-emacs-eclim . [(20180911 1121) ((eclim (0 3)) (auto-complete (1 5))) "auto-complete source for eclim" single ((:commit . "23f5b294f833ce58516d7b9ae08a7792d70022a1"))]) (ac-dcd . [(20170323 1301) ((auto-complete (1 3 1)) (flycheck-dmd-dub (0 7))) "Auto Completion source for dcd for GNU Emacs" single ((:commit . "1614aa624252e3445b0392c8a9b7197084f3e422") (:keywords "languages") (:authors (nil . "<atila.neves@gmail.com>")) (:maintainer nil . "<atila.neves@gmail.com>") (:url . "http://github.com/atilaneves/ac-dcd"))]) (ac-clang . [(20180710 546) ((emacs (24)) (cl-lib (0 5)) (auto-complete (1 4 0)) (pos-tip (0 4 6)) (yasnippet (0 8 0))) "Auto Completion source by libclang for GNU Emacs" tar ((:commit . "3294b968eb1a8317049190940193f9da47c085ef") (:keywords "completion" "convenience" "intellisense") (:authors ("yaruopooner [https://github.com/yaruopooner]")) (:maintainer "yaruopooner [https://github.com/yaruopooner]") (:url . "https://github.com/yaruopooner/ac-clang"))]) (ac-cider . [(20161006 719) ((cider (0 8 0)) (auto-complete (1 4)) (cl-lib (0 3))) "Clojure auto-complete sources using CIDER" single ((:commit . "fa13e067dd9c8c76151c7d140a2803da1d109b84") (:keywords "languages" "clojure" "nrepl" "cider" "compliment") (:authors ("Alex Yakushev" . "alex@bytopia.org") ("Steve Purcell" . "steve@sanityinc.com") ("Sam Aaron" . "samaaron@gmail.com")) (:maintainer "Alex Yakushev" . "alex@bytopia.org") (:url . "https://github.com/clojure-emacs/ac-cider"))]) (ac-capf . [(20151101 217) ((auto-complete (1 4)) (cl-lib (0 5))) "auto-complete source with completion-at-point" single ((:commit . "17571dba0a8f98111f2ab758e9bea285b263781b") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-ac-capf"))]) (ac-c-headers . [(20151021 834) ((auto-complete (1 3 1))) "auto-complete source for C headers" single ((:commit . "de13a1d35b311e6601556d8ef163de102057deea") (:authors ("zk_phi")) (:maintainer "zk_phi") (:url . "http://hins11.yu-yake.com/"))]) (ac-alchemist . [(20150908 656) ((auto-complete (1 5 0)) (alchemist (1 5 0)) (cl-lib (0 5))) "auto-complete source for alchemist" single ((:commit . "b1891c3d41aed83f61d78a609ea97be5cc2758d9") (:authors ("Syohei YOSHIDA" . "syohex@gmail.com")) (:maintainer "Syohei YOSHIDA" . "syohex@gmail.com") (:url . "https://github.com/syohex/emacs-ac-alchemist"))]) (abyss-theme . [(20170808 1345) ((emacs (24))) "A dark theme with contrasting colours." single ((:commit . "18791c6e8d9cc2b4815c9f08627a2e94fc0eeb14") (:keywords "theme" "dark" "contrasting colours") (:authors ("Matt Russell" . "matt@mgrbyte.co.uk")) (:maintainer "Matt Russell" . "matt@mgrbyte.co.uk") (:url . "https://github.com/mgrbyte/emacs-abyss-theme"))]) (abl-mode . [(20181031 830) nil "Python TDD minor mode" single ((:commit . "b4c65b5a60a83200fe06f6caa77073316e5a4228") (:authors ("Ulas Tuerkmen <ulas.tuerkmen at gmail dot com>")) (:maintainer "Ulas Tuerkmen <ulas.tuerkmen at gmail dot com>") (:url . "http://github.com/afroisalreadyinu/abl-mode"))]) (abgaben . [(20171119 646) ((pdf-tools (0 80)) (f (0 19 0)) (s (1 11 0))) "review and correct assignments received by mail" single ((:commit . "20d14830f07d66e2a04bcad1498a4a6fbf4b4451") (:keywords "mail" "outlines" "convenience") (:authors ("Arne Köhn" . "arne@chark.eu")) (:maintainer "Arne Köhn" . "arne@chark.eu") (:url . "http://arne.chark.eu/"))]) (abc-mode . [(20171020 1019) nil "Major mode for editing abc music files" single ((:commit . "238deedeb6c90df168045552eb463cfae9e1f88f") (:keywords "local" "docs") (:authors ("Matthew K. Junker" . "junker@alum.mit.edu")) (:maintainer "Matthew K. Junker" . "junker@alum.mit.edu"))]) (aa-edit-mode . [(20170119 320) ((emacs (24 3)) (navi2ch (2 0 0))) "Major mode for editing AA(S_JIS Art) and .mlt file" single ((:commit . "1dd801225b7ad3c23ad09698f5e77f0df7012a65") (:keywords "wp" "text" "shiftjis" "mlt" "yaruo") (:authors ("USAMI Kenta" . "tadsan@zonu.me")) (:maintainer "USAMI Kenta" . "tadsan@zonu.me"))]) (a . [(20180907 953) ((emacs (25))) "Associative data structure functions" single ((:commit . "18966975db7110d0aac726be95b593e2fc3d44ed") (:keywords "lisp") (:authors ("Arne Brasseur" . "arne@arnebrasseur.net")) (:maintainer "Arne Brasseur" . "arne@arnebrasseur.net") (:url . "https://github.com/plexus/a.el"))]) (@ . [(20181013 1828) ((emacs (24 3))) "multiple-inheritance prototype-based objects DSL" tar ((:commit . "fe78a75c88429343f017ccd74e62bd9465dba50a") (:authors ("Christopher Wellons" . "wellons@nullprogram.com")) (:maintainer "Christopher Wellons" . "wellons@nullprogram.com") (:url . "https://github.com/skeeto/at-el"))]) (4clojure . [(20131014 2207) ((json (1 2)) (request (0 2 0))) "Open and evaluate 4clojure.com questions" single ((:commit . "3cdfd356c24cd3518397d29ae833f56a4d20b4ca") (:keywords "languages" "data") (:authors ("Joshua Hoff")) (:maintainer "Joshua Hoff"))]) (2048-game . [(20151026 1933) nil "play 2048 in Emacs" single ((:authors ("Zachary Kanfer" . "zkanfer@gmail.com")) (:maintainer "Zachary Kanfer" . "zkanfer@gmail.com") (:url . "https://bitbucket.org/zck/2048.el"))]) (0xc . [(20170126 353) ((emacs (24 4)) (s (1 11 0))) "Base conversion made easy" single ((:commit . "12c2c6118c062a49594965c69e6a17bb46339eb2") (:keywords "base" "conversion") (:authors ("Adam Niederer" . "adam.niederer@gmail.com")) (:maintainer "Adam Niederer" . "adam.niederer@gmail.com") (:url . "http://github.com/AdamNiederer/0xc"))]) (0blayout . [(20161008 607) nil "Layout grouping with ease" single ((:commit . "873732ddb99a3ec18845a37467ee06bce4e61d87") (:keywords "convenience" "window-management") (:authors ("Elis \"etu\" Axelsson")) (:maintainer "Elis \"etu\" Axelsson") (:url . "https://github.com/etu/0blayout"))]))
diff --git a/elpa/async-20180527.1730/async-autoloads.el b/elpa/async-20180527.1730/async-autoloads.el
deleted file mode 100644
index addfab1..0000000
--- a/elpa/async-20180527.1730/async-autoloads.el
+++ /dev/null
@@ -1,174 +0,0 @@
-;;; async-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "async" "async.el" (0 0 0 0))
-;;; Generated autoloads from async.el
-
-(autoload 'async-start-process "async" "\
-Start the executable PROGRAM asynchronously.  See `async-start'.
-PROGRAM is passed PROGRAM-ARGS, calling FINISH-FUNC with the
-process object when done.  If FINISH-FUNC is nil, the future
-object will return the process object when the program is
-finished.  Set DEFAULT-DIRECTORY to change PROGRAM's current
-working directory.
-
-\(fn NAME PROGRAM FINISH-FUNC &rest PROGRAM-ARGS)" nil nil)
-
-(autoload 'async-start "async" "\
-Execute START-FUNC (often a lambda) in a subordinate Emacs process.
-When done, the return value is passed to FINISH-FUNC.  Example:
-
-    (async-start
-       ;; What to do in the child process
-       (lambda ()
-         (message \"This is a test\")
-         (sleep-for 3)
-         222)
-
-       ;; What to do when it finishes
-       (lambda (result)
-         (message \"Async process done, result should be 222: %s\"
-                  result)))
-
-If FINISH-FUNC is nil or missing, a future is returned that can
-be inspected using `async-get', blocking until the value is
-ready.  Example:
-
-    (let ((proc (async-start
-                   ;; What to do in the child process
-                   (lambda ()
-                     (message \"This is a test\")
-                     (sleep-for 3)
-                     222))))
-
-        (message \"I'm going to do some work here\") ;; ....
-
-        (message \"Waiting on async process, result should be 222: %s\"
-                 (async-get proc)))
-
-If you don't want to use a callback, and you don't care about any
-return value from the child process, pass the `ignore' symbol as
-the second argument (if you don't, and never call `async-get', it
-will leave *emacs* process buffers hanging around):
-
-    (async-start
-     (lambda ()
-       (delete-file \"a remote file on a slow link\" nil))
-     'ignore)
-
-Note: Even when FINISH-FUNC is present, a future is still
-returned except that it yields no value (since the value is
-passed to FINISH-FUNC).  Call `async-get' on such a future always
-returns nil.  It can still be useful, however, as an argument to
-`async-ready' or `async-wait'.
-
-\(fn START-FUNC &optional FINISH-FUNC)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "async" '("async-")))
-
-;;;***
-
-;;;### (autoloads nil "async-bytecomp" "async-bytecomp.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from async-bytecomp.el
-
-(autoload 'async-byte-recompile-directory "async-bytecomp" "\
-Compile all *.el files in DIRECTORY asynchronously.
-All *.elc files are systematically deleted before proceeding.
-
-\(fn DIRECTORY &optional QUIET)" nil nil)
-
-(defvar async-bytecomp-package-mode nil "\
-Non-nil if Async-Bytecomp-Package mode is enabled.
-See the `async-bytecomp-package-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `async-bytecomp-package-mode'.")
-
-(custom-autoload 'async-bytecomp-package-mode "async-bytecomp" nil)
-
-(autoload 'async-bytecomp-package-mode "async-bytecomp" "\
-Byte compile asynchronously packages installed with package.el.
-Async compilation of packages can be controlled by
-`async-bytecomp-allowed-packages'.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'async-byte-compile-file "async-bytecomp" "\
-Byte compile Lisp code FILE asynchronously.
-
-Same as `byte-compile-file' but asynchronous.
-
-\(fn FILE)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "async-bytecomp" '("async-byte")))
-
-;;;***
-
-;;;### (autoloads nil "dired-async" "dired-async.el" (0 0 0 0))
-;;; Generated autoloads from dired-async.el
-
-(defvar dired-async-mode nil "\
-Non-nil if Dired-Async mode is enabled.
-See the `dired-async-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `dired-async-mode'.")
-
-(custom-autoload 'dired-async-mode "dired-async" nil)
-
-(autoload 'dired-async-mode "dired-async" "\
-Do dired actions asynchronously.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'dired-async-do-copy "dired-async" "\
-Run ‘dired-do-copy’ asynchronously.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'dired-async-do-symlink "dired-async" "\
-Run ‘dired-do-symlink’ asynchronously.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'dired-async-do-hardlink "dired-async" "\
-Run ‘dired-do-hardlink’ asynchronously.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'dired-async-do-rename "dired-async" "\
-Run ‘dired-do-rename’ asynchronously.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dired-async" '("dired-async-")))
-
-;;;***
-
-;;;### (autoloads nil "smtpmail-async" "smtpmail-async.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from smtpmail-async.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smtpmail-async" '("async-smtpmail-")))
-
-;;;***
-
-;;;### (autoloads nil nil ("async-pkg.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; async-autoloads.el ends here
diff --git a/elpa/async-20180527.1730/async-bytecomp.el b/elpa/async-20180527.1730/async-bytecomp.el
deleted file mode 100644
index 7bb2d46..0000000
--- a/elpa/async-20180527.1730/async-bytecomp.el
+++ /dev/null
@@ -1,219 +0,0 @@
-;;; async-bytecomp.el --- Compile elisp files asynchronously -*- lexical-binding: t -*-
-
-;; Copyright (C) 2014-2016 Free Software Foundation, Inc.
-
-;; Authors: John Wiegley <jwiegley@gmail.com>
-;;          Thierry Volpiatto <thierry.volpiatto@gmail.com>
-
-;; Keywords: dired async byte-compile
-;; X-URL: https://github.com/jwiegley/dired-async
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License as
-;; published by the Free Software Foundation; either version 2, or (at
-;; your option) any later version.
-
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
-
-;;; Commentary:
-;;
-;;  This package provide the `async-byte-recompile-directory' function
-;;  which allows, as the name says to recompile a directory outside of
-;;  your running emacs.
-;;  The benefit is your files will be compiled in a clean environment without
-;;  the old *.el files loaded.
-;;  Among other things, this fix a bug in package.el which recompile
-;;  the new files in the current environment with the old files loaded, creating
-;;  errors in most packages after upgrades.
-;;
-;;  NB: This package is advicing the function `package--compile'.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'async)
-
-(defcustom async-bytecomp-allowed-packages
-  '(async helm helm-core helm-ls-git helm-ls-hg magit)
-  "Packages in this list will be compiled asynchronously by `package--compile'.
-All the dependencies of these packages will be compiled async too,
-so no need to add dependencies to this list.
-The value of this variable can also be a list with a single element,
-the symbol `all', in this case packages are always compiled asynchronously."
-  :group 'async
-  :type '(repeat (choice symbol)))
-
-(defvar async-byte-compile-log-file
-  (concat user-emacs-directory "async-bytecomp.log"))
-
-;;;###autoload
-(defun async-byte-recompile-directory (directory &optional quiet)
-  "Compile all *.el files in DIRECTORY asynchronously.
-All *.elc files are systematically deleted before proceeding."
-  (cl-loop with dir = (directory-files directory t "\\.elc\\'")
-           unless dir return nil
-           for f in dir
-           when (file-exists-p f) do (delete-file f))
-  ;; Ensure async is reloaded when async.elc is deleted.
-  ;; This happen when recompiling its own directory.
-  (load "async")
-  (let ((call-back
-         (lambda (&optional _ignore)
-           (if (file-exists-p async-byte-compile-log-file)
-               (let ((buf (get-buffer-create byte-compile-log-buffer))
-                     (n 0))
-                 (with-current-buffer buf
-                   (goto-char (point-max))
-                   (let ((inhibit-read-only t))
-                     (insert-file-contents async-byte-compile-log-file)
-                     (compilation-mode))
-                   (display-buffer buf)
-                   (delete-file async-byte-compile-log-file)
-                   (unless quiet
-                     (save-excursion
-                       (goto-char (point-min))
-                       (while (re-search-forward "^.*:Error:" nil t)
-                         (cl-incf n)))
-                     (if (> n 0)
-                         (message "Failed to compile %d files in directory `%s'" n directory)
-                         (message "Directory `%s' compiled asynchronously with warnings" directory)))))
-               (unless quiet
-                 (message "Directory `%s' compiled asynchronously with success" directory))))))
-    (async-start
-     `(lambda ()
-        (require 'bytecomp)
-        ,(async-inject-variables "\\`\\(load-path\\)\\|byte\\'")
-        (let ((default-directory (file-name-as-directory ,directory))
-              error-data)
-          (add-to-list 'load-path default-directory)
-          (byte-recompile-directory ,directory 0 t)
-          (when (get-buffer byte-compile-log-buffer)
-            (setq error-data (with-current-buffer byte-compile-log-buffer
-                               (buffer-substring-no-properties (point-min) (point-max))))
-            (unless (string= error-data "")
-              (with-temp-file ,async-byte-compile-log-file
-                (erase-buffer)
-                (insert error-data))))))
-     call-back)
-    (unless quiet (message "Started compiling asynchronously directory %s" directory))))
-
-(defvar package-archive-contents)
-(defvar package-alist)
-(declare-function package-desc-reqs "package.el" (cl-x))
-
-(defun async-bytecomp--get-package-deps (pkg &optional only)
-  ;; Same as `package--get-deps' but parse instead `package-archive-contents'
-  ;; because PKG is not already installed and not present in `package-alist'.
-  ;; However fallback to `package-alist' in case PKG no more present
-  ;; in `package-archive-contents' due to modification to `package-archives'.
-  ;; See issue #58.
-  (let* ((pkg-desc (cadr (or (assq pkg package-archive-contents)
-                             (assq pkg package-alist))))
-         (direct-deps (cl-loop for p in (package-desc-reqs pkg-desc)
-                               for name = (car p)
-                               when (or (assq name package-archive-contents)
-                                        (assq name package-alist))
-                               collect name))
-         (indirect-deps (unless (eq only 'direct)
-                          (delete-dups
-                           (cl-loop for p in direct-deps append
-                                    (async-bytecomp--get-package-deps p))))))
-    (cl-case only
-      (direct   direct-deps)
-      (separate (list direct-deps indirect-deps))
-      (indirect indirect-deps)
-      (t        (delete-dups (append direct-deps indirect-deps))))))
-
-(defun async-bytecomp-get-allowed-pkgs ()
-  (when (and async-bytecomp-allowed-packages
-             (listp async-bytecomp-allowed-packages))
-    (if package-archive-contents
-        (cl-loop for p in async-bytecomp-allowed-packages
-                 when (assq p package-archive-contents)
-                 append (async-bytecomp--get-package-deps p) into reqs
-                 finally return
-                 (delete-dups
-                  (append async-bytecomp-allowed-packages reqs)))
-        async-bytecomp-allowed-packages)))
-
-(defadvice package--compile (around byte-compile-async)
-  (let ((cur-package (package-desc-name pkg-desc))
-        (pkg-dir (package-desc-dir pkg-desc)))
-    (if (or (equal async-bytecomp-allowed-packages '(all))
-            (memq cur-package (async-bytecomp-get-allowed-pkgs)))
-        (progn
-          (when (eq cur-package 'async)
-            (fmakunbound 'async-byte-recompile-directory))
-          ;; Add to `load-path' the latest version of async and
-          ;; reload it when reinstalling async.
-          (when (string= cur-package "async")
-            (cl-pushnew pkg-dir load-path)
-            (load "async-bytecomp"))
-          ;; `async-byte-recompile-directory' will add directory
-          ;; as needed to `load-path'.
-          (async-byte-recompile-directory (package-desc-dir pkg-desc) t))
-        ad-do-it)))
-
-;;;###autoload
-(define-minor-mode async-bytecomp-package-mode
-    "Byte compile asynchronously packages installed with package.el.
-Async compilation of packages can be controlled by
-`async-bytecomp-allowed-packages'."
-  :group 'async
-  :global t
-  (if async-bytecomp-package-mode
-      (ad-activate 'package--compile)
-      (ad-deactivate 'package--compile)))
-
-;;;###autoload
-(defun async-byte-compile-file (file)
-  "Byte compile Lisp code FILE asynchronously.
-
-Same as `byte-compile-file' but asynchronous."
-  (interactive "fFile: ")
-  (let ((call-back
-         (lambda (&optional _ignore)
-           (let ((bn (file-name-nondirectory file)))
-             (if (file-exists-p async-byte-compile-log-file)
-                 (let ((buf (get-buffer-create byte-compile-log-buffer))
-                       start)
-                   (with-current-buffer buf
-                     (goto-char (setq start (point-max)))
-                     (let ((inhibit-read-only t))
-                       (insert-file-contents async-byte-compile-log-file)
-                       (compilation-mode))
-                     (display-buffer buf)
-                     (delete-file async-byte-compile-log-file)
-                     (save-excursion
-                       (goto-char start)
-                       (if (re-search-forward "^.*:Error:" nil t)
-                           (message "Failed to compile `%s'" bn)
-                         (message "`%s' compiled asynchronously with warnings" bn)))))
-               (message "`%s' compiled asynchronously with success" bn))))))
-    (async-start
-     `(lambda ()
-        (require 'bytecomp)
-        ,(async-inject-variables "\\`load-path\\'")
-        (let ((default-directory ,(file-name-directory file)))
-          (add-to-list 'load-path default-directory)
-          (byte-compile-file ,file)
-          (when (get-buffer byte-compile-log-buffer)
-            (setq error-data (with-current-buffer byte-compile-log-buffer
-                               (buffer-substring-no-properties (point-min) (point-max))))
-            (unless (string= error-data "")
-              (with-temp-file ,async-byte-compile-log-file
-                (erase-buffer)
-                (insert error-data))))))
-     call-back)))
-
-(provide 'async-bytecomp)
-
-;;; async-bytecomp.el ends here
diff --git a/elpa/async-20180527.1730/async-bytecomp.elc b/elpa/async-20180527.1730/async-bytecomp.elc
deleted file mode 100644
index 86bfd26..0000000
--- a/elpa/async-20180527.1730/async-bytecomp.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/async-20180527.1730/async-pkg.el b/elpa/async-20180527.1730/async-pkg.el
deleted file mode 100644
index 507e066..0000000
--- a/elpa/async-20180527.1730/async-pkg.el
+++ /dev/null
@@ -1,6 +0,0 @@
-(define-package "async" "20180527.1730" "Asynchronous processing in Emacs" 'nil :keywords
-  '("async")
-  :url "https://github.com/jwiegley/emacs-async")
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/async-20180527.1730/async.el b/elpa/async-20180527.1730/async.el
deleted file mode 100644
index 771e641..0000000
--- a/elpa/async-20180527.1730/async.el
+++ /dev/null
@@ -1,392 +0,0 @@
-;;; async.el --- Asynchronous processing in Emacs -*- lexical-binding: t -*-
-
-;; Copyright (C) 2012-2016 Free Software Foundation, Inc.
-
-;; Author: John Wiegley <jwiegley@gmail.com>
-;; Created: 18 Jun 2012
-;; Version: 1.9.3
-
-;; Keywords: async
-;; X-URL: https://github.com/jwiegley/emacs-async
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License as
-;; published by the Free Software Foundation; either version 2, or (at
-;; your option) any later version.
-
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
-
-;;; Commentary:
-
-;; Adds the ability to call asynchronous functions and process with ease.  See
-;; the documentation for `async-start' and `async-start-process'.
-
-;;; Code:
-
-(eval-when-compile (require 'cl-lib))
-
-(defgroup async nil
-  "Simple asynchronous processing in Emacs"
-  :group 'emacs)
-
-(defcustom async-variables-noprops-function #'async-variables-noprops
-  "Default function to remove text properties in variables."
-  :group 'async
-  :type 'function)
-
-(defvar async-debug nil)
-(defvar async-send-over-pipe t)
-(defvar async-in-child-emacs nil)
-(defvar async-callback nil)
-(defvar async-callback-for-process nil)
-(defvar async-callback-value nil)
-(defvar async-callback-value-set nil)
-(defvar async-current-process nil)
-(defvar async--procvar nil)
-
-(defun async-variables-noprops (sequence)
-  "Remove text properties in SEQUENCE.
-
-Argument SEQUENCE may be a list or a string, if anything else it
-is returned unmodified.
-
-Note that this is a naive function that doesn't remove text properties
-in SEQUENCE recursively, only at the first level which suffice in most
-cases."
-  (cond ((stringp sequence)
-         (substring-no-properties sequence))
-        ((listp sequence)
-         (cl-loop for elm in sequence
-                  if (stringp elm)
-                  collect (substring-no-properties elm)
-                  else collect elm))
-        (t sequence)))
-
-(defun async-inject-variables
-  (include-regexp &optional predicate exclude-regexp noprops)
-  "Return a `setq' form that replicates part of the calling environment.
-
-It sets the value for every variable matching INCLUDE-REGEXP and
-also PREDICATE.  It will not perform injection for any variable
-matching EXCLUDE-REGEXP (if present) or representing a syntax-table
-i.e. ending by \"-syntax-table\".
-When NOPROPS is non nil it tries to strip out text properties of each
-variable's value with `async-variables-noprops-function'.
-
-It is intended to be used as follows:
-
-    (async-start
-       `(lambda ()
-          (require 'smtpmail)
-          (with-temp-buffer
-            (insert ,(buffer-substring-no-properties (point-min) (point-max)))
-            ;; Pass in the variable environment for smtpmail
-            ,(async-inject-variables \"\\`\\(smtpmail\\|\\(user-\\)?mail\\)-\")
-            (smtpmail-send-it)))
-       'ignore)"
-  `(setq
-    ,@(let (bindings)
-        (mapatoms
-         (lambda (sym)
-           (let* ((sname (and (boundp sym) (symbol-name sym)))
-                  (value (and sname (symbol-value sym))))
-             (when (and sname
-                        (or (null include-regexp)
-                            (string-match include-regexp sname))
-                        (or (null exclude-regexp)
-                            (not (string-match exclude-regexp sname)))
-                        (not (string-match "-syntax-table\\'" sname)))
-               (unless (or (stringp value)
-                           (memq value '(nil t))
-                           (numberp value)
-                           (vectorp value))
-                 (setq value `(quote ,value)))
-               (when noprops
-                 (setq value (funcall async-variables-noprops-function
-                                      value)))
-               (when (or (null predicate)
-                         (funcall predicate sym))
-                 (setq bindings (cons value bindings)
-                       bindings (cons sym bindings)))))))
-        bindings)))
-
-(defalias 'async-inject-environment 'async-inject-variables)
-
-(defun async-handle-result (func result buf)
-  (if (null func)
-      (progn
-        (set (make-local-variable 'async-callback-value) result)
-        (set (make-local-variable 'async-callback-value-set) t))
-    (unwind-protect
-        (if (and (listp result)
-                 (eq 'async-signal (nth 0 result)))
-            (signal (car (nth 1 result))
-                    (cdr (nth 1 result)))
-          (funcall func result))
-      (unless async-debug
-        (kill-buffer buf)))))
-
-(defun async-when-done (proc &optional _change)
-  "Process sentinel used to retrieve the value from the child process."
-  (when (eq 'exit (process-status proc))
-    (with-current-buffer (process-buffer proc)
-      (let ((async-current-process proc))
-        (if (= 0 (process-exit-status proc))
-            (if async-callback-for-process
-                (if async-callback
-                    (prog1
-                        (funcall async-callback proc)
-                      (unless async-debug
-                        (kill-buffer (current-buffer))))
-                  (set (make-local-variable 'async-callback-value) proc)
-                  (set (make-local-variable 'async-callback-value-set) t))
-              (goto-char (point-max))
-              (backward-sexp)
-              (async-handle-result async-callback (read (current-buffer))
-                                   (current-buffer)))
-          (set (make-local-variable 'async-callback-value)
-               (list 'error
-                     (format "Async process '%s' failed with exit code %d"
-                             (process-name proc) (process-exit-status proc))))
-          (set (make-local-variable 'async-callback-value-set) t))))))
-
-(defun async--receive-sexp (&optional stream)
-  (let ((sexp (decode-coding-string (base64-decode-string
-                                     (read stream)) 'utf-8-auto))
-	;; Parent expects UTF-8 encoded text.
-	(coding-system-for-write 'utf-8-auto))
-    (if async-debug
-        (message "Received sexp {{{%s}}}" (pp-to-string sexp)))
-    (setq sexp (read sexp))
-    (if async-debug
-        (message "Read sexp {{{%s}}}" (pp-to-string sexp)))
-    (eval sexp)))
-
-(defun async--insert-sexp (sexp)
-  (let (print-level
-	print-length
-	(print-escape-nonascii t)
-	(print-circle t))
-    (prin1 sexp (current-buffer))
-    ;; Just in case the string we're sending might contain EOF
-    (encode-coding-region (point-min) (point-max) 'utf-8-auto)
-    (base64-encode-region (point-min) (point-max) t)
-    (goto-char (point-min)) (insert ?\")
-    (goto-char (point-max)) (insert ?\" ?\n)))
-
-(defun async--transmit-sexp (process sexp)
-  (with-temp-buffer
-    (if async-debug
-        (message "Transmitting sexp {{{%s}}}" (pp-to-string sexp)))
-    (async--insert-sexp sexp)
-    (process-send-region process (point-min) (point-max))))
-
-(defun async-batch-invoke ()
-  "Called from the child Emacs process' command-line."
-  ;; Make sure 'message' and 'prin1' encode stuff in UTF-8, as parent
-  ;; process expects.
-  (let ((coding-system-for-write 'utf-8-auto))
-    (setq async-in-child-emacs t
-	  debug-on-error async-debug)
-    (if debug-on-error
-	(prin1 (funcall
-		(async--receive-sexp (unless async-send-over-pipe
-				       command-line-args-left))))
-      (condition-case err
-	  (prin1 (funcall
-		  (async--receive-sexp (unless async-send-over-pipe
-					 command-line-args-left))))
-	(error
-	 (prin1 (list 'async-signal err)))))))
-
-(defun async-ready (future)
-  "Query a FUTURE to see if it is ready.
-
-I.e., if no blocking
-would result from a call to `async-get' on that FUTURE."
-  (and (memq (process-status future) '(exit signal))
-       (let ((buf (process-buffer future)))
-         (if (buffer-live-p buf)
-             (with-current-buffer buf
-               async-callback-value-set)
-             t))))
-
-(defun async-wait (future)
-  "Wait for FUTURE to become ready."
-  (while (not (async-ready future))
-    (sleep-for 0.05)))
-
-(defun async-get (future)
-  "Get the value from process FUTURE when it is ready.
-FUTURE is returned by `async-start' or `async-start-process' when
-its FINISH-FUNC is nil."
-  (and future (async-wait future))
-  (let ((buf (process-buffer future)))
-    (when (buffer-live-p buf)
-      (with-current-buffer buf
-        (async-handle-result
-         #'identity async-callback-value (current-buffer))))))
-
-(defun async-message-p (value)
-  "Return true of VALUE is an async.el message packet."
-  (and (listp value)
-       (plist-get value :async-message)))
-
-(defun async-send (&rest args)
-  "Send the given messages to the asychronous Emacs PROCESS."
-  (let ((args (append args '(:async-message t))))
-    (if async-in-child-emacs
-        (if async-callback
-            (funcall async-callback args))
-      (async--transmit-sexp (car args) (list 'quote (cdr args))))))
-
-(defun async-receive ()
-  "Send the given messages to the asychronous Emacs PROCESS."
-  (async--receive-sexp))
-
-;;;###autoload
-(defun async-start-process (name program finish-func &rest program-args)
-  "Start the executable PROGRAM asynchronously.  See `async-start'.
-PROGRAM is passed PROGRAM-ARGS, calling FINISH-FUNC with the
-process object when done.  If FINISH-FUNC is nil, the future
-object will return the process object when the program is
-finished.  Set DEFAULT-DIRECTORY to change PROGRAM's current
-working directory."
-  (let* ((buf (generate-new-buffer (concat "*" name "*")))
-         (proc (let ((process-connection-type nil))
-                 (apply #'start-process name buf program program-args))))
-    (with-current-buffer buf
-      (set (make-local-variable 'async-callback) finish-func)
-      (set-process-sentinel proc #'async-when-done)
-      (unless (string= name "emacs")
-        (set (make-local-variable 'async-callback-for-process) t))
-      proc)))
-
-(defvar async-quiet-switch "-Q"
-  "The Emacs parameter to use to call emacs without config.
-Can be one of \"-Q\" or \"-q\".
-Default is \"-Q\" but it is sometimes useful to use \"-q\" to have a
-enhanced config or some more variables loaded.")
-
-;;;###autoload
-(defun async-start (start-func &optional finish-func)
-  "Execute START-FUNC (often a lambda) in a subordinate Emacs process.
-When done, the return value is passed to FINISH-FUNC.  Example:
-
-    (async-start
-       ;; What to do in the child process
-       (lambda ()
-         (message \"This is a test\")
-         (sleep-for 3)
-         222)
-
-       ;; What to do when it finishes
-       (lambda (result)
-         (message \"Async process done, result should be 222: %s\"
-                  result)))
-
-If FINISH-FUNC is nil or missing, a future is returned that can
-be inspected using `async-get', blocking until the value is
-ready.  Example:
-
-    (let ((proc (async-start
-                   ;; What to do in the child process
-                   (lambda ()
-                     (message \"This is a test\")
-                     (sleep-for 3)
-                     222))))
-
-        (message \"I'm going to do some work here\") ;; ....
-
-        (message \"Waiting on async process, result should be 222: %s\"
-                 (async-get proc)))
-
-If you don't want to use a callback, and you don't care about any
-return value from the child process, pass the `ignore' symbol as
-the second argument (if you don't, and never call `async-get', it
-will leave *emacs* process buffers hanging around):
-
-    (async-start
-     (lambda ()
-       (delete-file \"a remote file on a slow link\" nil))
-     'ignore)
-
-Note: Even when FINISH-FUNC is present, a future is still
-returned except that it yields no value (since the value is
-passed to FINISH-FUNC).  Call `async-get' on such a future always
-returns nil.  It can still be useful, however, as an argument to
-`async-ready' or `async-wait'."
-  (let ((sexp start-func)
-	;; Subordinate Emacs will send text encoded in UTF-8.
-	(coding-system-for-read 'utf-8-auto))
-    (setq async--procvar
-          (async-start-process
-           "emacs" (file-truename
-                    (expand-file-name invocation-name
-                                      invocation-directory))
-           finish-func
-           async-quiet-switch "-l"
-           ;; Using `locate-library' ensure we use the right file
-           ;; when the .elc have been deleted.
-           (locate-library "async")
-           "-batch" "-f" "async-batch-invoke"
-           (if async-send-over-pipe
-               "<none>"
-               (with-temp-buffer
-                 (async--insert-sexp (list 'quote sexp))
-                 (buffer-string)))))
-    (if async-send-over-pipe
-        (async--transmit-sexp async--procvar (list 'quote sexp)))
-    async--procvar))
-
-(defmacro async-sandbox(func)
-  "Evaluate FUNC in a separate Emacs process, synchronously."
-  `(async-get (async-start ,func)))
-
-(defun async--fold-left (fn forms bindings)
-  (let ((res forms))
-    (dolist (binding bindings)
-      (setq res (funcall fn res
-                         (if (listp binding)
-                             binding
-                             (list binding)))))
-    res))
-
-(defmacro async-let (bindings &rest forms)
-  "Implements `let', but each binding is established asynchronously.
-For example:
-
-  (async-let ((x (foo))
-              (y (bar)))
-     (message \"%s %s\" x y))
-
-    expands to ==>
-
-  (async-start (foo)
-   (lambda (x)
-     (async-start (bar)
-      (lambda (y)
-        (message \"%s %s\" x y)))))"
-  (declare (indent 1))
-  (async--fold-left
-   (lambda (acc binding)
-     (let ((fun (pcase (cadr binding)
-                  ((and (pred functionp) f) f)
-                  (f `(lambda () ,f)))))
-       `(async-start ,fun
-                     (lambda (,(car binding))
-                       ,acc))))
-   `(progn ,@forms)
-   (reverse bindings)))
-
-(provide 'async)
-
-;;; async.el ends here
diff --git a/elpa/async-20180527.1730/async.elc b/elpa/async-20180527.1730/async.elc
deleted file mode 100644
index e3c4f13..0000000
--- a/elpa/async-20180527.1730/async.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/async-20180527.1730/dired-async.el b/elpa/async-20180527.1730/dired-async.el
deleted file mode 100644
index bc406b3..0000000
--- a/elpa/async-20180527.1730/dired-async.el
+++ /dev/null
@@ -1,405 +0,0 @@
-;;; dired-async.el --- Asynchronous dired actions -*- lexical-binding: t -*-
-
-;; Copyright (C) 2012-2016 Free Software Foundation, Inc.
-
-;; Authors: John Wiegley <jwiegley@gmail.com>
-;;          Thierry Volpiatto <thierry.volpiatto@gmail.com>
-
-;; Keywords: dired async network
-;; X-URL: https://github.com/jwiegley/dired-async
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License as
-;; published by the Free Software Foundation; either version 2, or (at
-;; your option) any later version.
-
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
-
-;;; Commentary:
-
-;; This file provide a redefinition of `dired-create-file' function,
-;; performs copies, moves and all what is handled by `dired-create-file'
-;; in the background using a slave Emacs process,
-;; by means of the async.el module.
-;; To use it, put this in your .emacs:
-
-;;     (dired-async-mode 1)
-
-;; This will enable async copy/rename etc...
-;; in dired and helm.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'dired-aux)
-(require 'async)
-
-(eval-when-compile
-  (defvar async-callback))
-
-(defgroup dired-async nil
-  "Copy rename files asynchronously from dired."
-  :group 'dired)
-
-(defcustom dired-async-env-variables-regexp
-  "\\`\\(tramp-\\(default\\|connection\\|remote\\)\\|ange-ftp\\)-.*"
-  "Variables matching this regexp will be loaded on Child Emacs."
-  :type  'regexp
-  :group 'dired-async)
-
-(defcustom dired-async-message-function 'dired-async-mode-line-message
-  "Function to use to notify result when operation finish.
-Should take same args as `message'."
-  :group 'dired-async
-  :type  'function)
-
-(defcustom dired-async-log-file "/tmp/dired-async.log"
-  "File use to communicate errors from Child Emacs to host Emacs."
-  :group 'dired-async
-  :type 'string)
-
-(defcustom dired-async-mode-lighter '(:eval
-                                      (when (eq major-mode 'dired-mode)
-                                        " Async"))
-  "Mode line lighter used for `dired-async-mode'."
-  :group 'dired-async
-  :risky t
-  :type 'sexp)
-
-(defface dired-async-message
-    '((t (:foreground "yellow")))
-  "Face used for mode-line message."
-  :group 'dired-async)
-
-(defface dired-async-failures
-    '((t (:foreground "red")))
-  "Face used for mode-line message."
-  :group 'dired-async)
-
-(defface dired-async-mode-message
-    '((t (:foreground "Gold")))
-  "Face used for `dired-async--modeline-mode' lighter."
-  :group 'dired-async)
-
-(define-minor-mode dired-async--modeline-mode
-    "Notify mode-line that an async process run."
-  :group 'dired-async
-  :global t
-  :lighter (:eval (propertize (format " [%s Async job(s) running]"
-                                      (length (dired-async-processes)))
-                              'face 'dired-async-mode-message))
-  (unless dired-async--modeline-mode
-    (let ((visible-bell t)) (ding))))
-
-(defun dired-async-mode-line-message (text face &rest args)
-  "Notify end of operation in `mode-line'."
-  (message nil)
-  (let ((mode-line-format (concat
-                           " " (propertize
-                                (if args
-                                    (apply #'format text args)
-                                    text)
-                                'face face))))
-    (force-mode-line-update)
-    (sit-for 3)
-    (force-mode-line-update)))
-
-(defun dired-async-processes ()
-  (cl-loop for p in (process-list)
-           when (cl-loop for c in (process-command p) thereis
-                         (string= "async-batch-invoke" c))
-           collect p))
-
-(defun dired-async-kill-process ()
-  (interactive)
-  (let* ((processes (dired-async-processes))
-         (proc (car (last processes))))
-    (and proc (delete-process proc))
-    (unless (> (length processes) 1)
-      (dired-async--modeline-mode -1))))
-
-(defun dired-async-after-file-create (total operation failures skipped)
-  "Callback function used for operation handled by `dired-create-file'."
-  (unless (dired-async-processes)
-    ;; Turn off mode-line notification
-    ;; only when last process end.
-    (dired-async--modeline-mode -1))
-  (when operation
-    (if (file-exists-p dired-async-log-file)
-        (progn
-          (pop-to-buffer (get-buffer-create dired-log-buffer))
-          (goto-char (point-max))
-          (setq inhibit-read-only t)
-          (insert "Error: ")
-          (insert-file-contents dired-async-log-file)
-          (special-mode)
-          (shrink-window-if-larger-than-buffer)
-          (delete-file dired-async-log-file))
-        (run-with-timer
-         0.1 nil
-         (lambda ()
-           ;; First send error messages.
-           (cond (failures
-                  (funcall dired-async-message-function
-                           "%s failed for %d of %d file%s -- See *Dired log* buffer"
-                           'dired-async-failures
-                           (car operation) (length failures)
-                           total (dired-plural-s total)))
-                 (skipped
-                  (funcall dired-async-message-function
-                           "%s: %d of %d file%s skipped -- See *Dired log* buffer"
-                           'dired-async-failures
-                           (car operation) (length skipped) total
-                           (dired-plural-s total))))
-           (when dired-buffers
-             (cl-loop for (_f . b) in dired-buffers
-                      when (buffer-live-p b)
-                      do (with-current-buffer b (revert-buffer nil t))))
-           ;; Finally send the success message.
-           (funcall dired-async-message-function
-                    "Asynchronous %s of %s on %s file%s done"
-                    'dired-async-message
-                    (car operation) (cadr operation)
-                    total (dired-plural-s total)))))))
-
-(defun dired-async-maybe-kill-ftp ()
-  "Return a form to kill ftp process in child emacs."
-  (quote
-   (progn
-     (require 'cl-lib)
-     (let ((buf (cl-loop for b in (buffer-list)
-                         thereis (and (string-match
-                                       "\\`\\*ftp.*"
-                                       (buffer-name b)) b))))
-       (when buf (kill-buffer buf))))))
-
-(defvar overwrite-query)
-(defun dired-async-create-files (file-creator operation fn-list name-constructor
-                                 &optional _marker-char)
-  "Same as `dired-create-files' but asynchronous.
-
-See `dired-create-files' for the behavior of arguments."
-  (setq overwrite-query nil)
-  (let ((total (length fn-list))
-        failures async-fn-list skipped callback
-        async-quiet-switch)
-    (let (to)
-      (dolist (from fn-list)
-        (setq to (funcall name-constructor from))
-        (if (and (equal to from)
-                 (null (eq file-creator 'backup-file)))
-            (progn
-              (setq to nil)
-              (dired-log "Cannot %s to same file: %s\n"
-                         (downcase operation) from)))
-        (if (not to)
-            (setq skipped (cons (dired-make-relative from) skipped))
-            (let* ((overwrite (and (null (eq file-creator 'backup-file))
-                                   (file-exists-p to)))
-                   (dired-overwrite-confirmed ; for dired-handle-overwrite
-                    (and overwrite
-                         (let ((help-form `(format "\
-Type SPC or `y' to overwrite file `%s',
-DEL or `n' to skip to next,
-ESC or `q' to not overwrite any of the remaining files,
-`!' to overwrite all remaining files with no more questions." ,to)))
-                           (dired-query 'overwrite-query "Overwrite `%s'?" to)))))
-              ;; Handle the `dired-copy-file' file-creator specially
-              ;; When copying a directory to another directory or
-              ;; possibly to itself or one of its subdirectories.
-              ;; e.g "~/foo/" => "~/test/"
-              ;; or "~/foo/" =>"~/foo/"
-              ;; or "~/foo/ => ~/foo/bar/")
-              ;; In this case the 'name-constructor' have set the destination
-              ;; TO to "~/test/foo" because the old emacs23 behavior
-              ;; of `copy-directory' was to not create the subdirectory
-              ;; and instead copy the contents.
-              ;; With the new behavior of `copy-directory'
-              ;; (similar to the `cp' shell command) we don't
-              ;; need such a construction of the target directory,
-              ;; so modify the destination TO to "~/test/" instead of "~/test/foo/".
-              (let ((destname (file-name-directory to)))
-                (when (and (file-directory-p from)
-                           (file-directory-p to)
-                           (eq file-creator 'dired-copy-file))
-                  (setq to destname))
-                ;; If DESTNAME is a subdirectory of FROM, not a symlink,
-                ;; and the method in use is copying, signal an error.
-                (and (eq t (car (file-attributes destname)))
-                     (eq file-creator 'dired-copy-file)
-                     (file-in-directory-p destname from)
-                     (error "Cannot copy `%s' into its subdirectory `%s'"
-                            from to)))
-              (if overwrite
-                  (or (and dired-overwrite-confirmed
-                           (push (cons from to) async-fn-list))
-                      (progn
-                        (push (dired-make-relative from) failures)
-                        (dired-log "%s `%s' to `%s' failed\n"
-                                   operation from to)))
-                  (push (cons from to) async-fn-list)))))
-      ;; Fix tramp issue #80 with emacs-26, use "-q" only when needed.
-      (setq async-quiet-switch
-            (if (and (boundp 'tramp-cache-read-persistent-data)
-                     async-fn-list
-                     (cl-loop for (_from . to) in async-fn-list
-                              thereis (file-remote-p to)))
-                "-q" "-Q"))
-      ;; When failures have been printed to dired log add the date at bob.
-      (when (or failures skipped) (dired-log t))
-      ;; When async-fn-list is empty that's mean only one file
-      ;; had to be copied and user finally answer NO.
-      ;; In this case async process will never start and callback
-      ;; will have no chance to run, so notify failures here.
-      (unless async-fn-list
-        (cond (failures
-               (funcall dired-async-message-function
-                        "%s failed for %d of %d file%s -- See *Dired log* buffer"
-                        'dired-async-failures
-                        operation (length failures)
-                        total (dired-plural-s total)))
-              (skipped
-               (funcall dired-async-message-function
-                        "%s: %d of %d file%s skipped -- See *Dired log* buffer"
-                        'dired-async-failures
-                        operation (length skipped) total
-                        (dired-plural-s total)))))
-      ;; Setup callback.
-      (setq callback
-            (lambda (&optional _ignore)
-               (dired-async-after-file-create
-                total (list operation (length async-fn-list)) failures skipped)
-               (when (string= (downcase operation) "rename")
-                 (cl-loop for (file . to) in async-fn-list
-                          for bf = (get-file-buffer file)
-                          for destp = (file-exists-p to)
-                          do (and bf destp
-                                  (with-current-buffer bf
-                                    (set-visited-file-name to t t))))))))
-    ;; Start async process.
-    (when async-fn-list
-      (async-start `(lambda ()
-                      (require 'cl-lib) (require 'dired-aux) (require 'dired-x)
-                      ,(async-inject-variables dired-async-env-variables-regexp)
-                          (let ((dired-recursive-copies (quote always))
-                                (dired-copy-preserve-time
-                                 ,dired-copy-preserve-time))
-                            (setq overwrite-backup-query nil)
-                            ;; Inline `backup-file' as long as it is not
-                            ;; available in emacs.
-                            (defalias 'backup-file
-                                ;; Same feature as "cp -f --backup=numbered from to"
-                                ;; Symlinks are copied as file from source unlike
-                                ;; `dired-copy-file' which is same as cp -d.
-                                ;; Directories are omitted.
-                                (lambda (from to ok)
-                                  (cond ((file-directory-p from) (ignore))
-                                        (t (let ((count 0))
-                                             (while (let ((attrs (file-attributes to)))
-                                                      (and attrs (null (nth 0 attrs))))
-                                               (cl-incf count)
-                                               (setq to (concat (file-name-sans-versions to)
-                                                                (format ".~%s~" count)))))
-                                           (condition-case err
-                                               (copy-file from to ok dired-copy-preserve-time)
-                                             (file-date-error
-                                              (dired-log "Can't set date on %s:\n%s\n" from err)))))))
-                            ;; Now run the FILE-CREATOR function on files.
-                            (cl-loop with fn = (quote ,file-creator)
-                                     for (from . dest) in (quote ,async-fn-list)
-                                     do (condition-case err
-                                            (funcall fn from dest t)
-                                          (file-error
-                                           (dired-log "%s: %s\n" (car err) (cdr err)))
-                                          nil))
-                        (when (get-buffer dired-log-buffer)
-                          (dired-log t)
-                          (with-current-buffer dired-log-buffer
-                           (write-region (point-min) (point-max)
-                                         ,dired-async-log-file))))
-                      ,(dired-async-maybe-kill-ftp))
-                   callback)
-      ;; Run mode-line notifications while process running.
-      (dired-async--modeline-mode 1)
-      (message "%s proceeding asynchronously..." operation))))
-
-(defvar wdired-use-interactive-rename)
-(defun dired-async-wdired-do-renames (old-fn &rest args)
-  ;; Perhaps a better fix would be to ask for renaming BEFORE starting
-  ;; OLD-FN when `wdired-use-interactive-rename' is non-nil.  For now
-  ;; just bind it to nil to ensure no questions will be asked between
-  ;; each rename.
-  (let (wdired-use-interactive-rename)
-    (apply old-fn args)))
-
-(defadvice wdired-do-renames (around wdired-async)
-  (let (wdired-use-interactive-rename)
-    ad-do-it))
-
-(defadvice dired-create-files (around dired-async)
-  (dired-async-create-files file-creator operation fn-list
-                            name-constructor marker-char))
-
-;;;###autoload
-(define-minor-mode dired-async-mode
-  "Do dired actions asynchronously."
-  :group 'dired-async
-  :lighter dired-async-mode-lighter
-  :global t
-  (if dired-async-mode
-      (if (fboundp 'advice-add)
-          (progn (advice-add 'dired-create-files :override #'dired-async-create-files)
-                 (advice-add 'wdired-do-renames :around #'dired-async-wdired-do-renames))
-        (ad-activate 'dired-create-files)
-        (ad-activate 'wdired-do-renames))
-      (if (fboundp 'advice-remove)
-          (progn (advice-remove 'dired-create-files #'dired-async-create-files)
-                 (advice-remove 'wdired-do-renames #'dired-async-wdired-do-renames))
-          (ad-deactivate 'dired-create-files)
-          (ad-deactivate 'wdired-do-renames))))
-
-(defmacro dired-async--with-async-create-files (&rest body)
-  "Evaluate BODY with ‘dired-create-files’ set to ‘dired-async-create-files’."
-  (declare (indent 0))
-  `(cl-letf (((symbol-function 'dired-create-files) #'dired-async-create-files))
-     ,@body))
-
-;;;###autoload
-(defun dired-async-do-copy (&optional arg)
-  "Run ‘dired-do-copy’ asynchronously."
-  (interactive "P")
-  (dired-async--with-async-create-files
-    (dired-do-copy arg)))
-
-;;;###autoload
-(defun dired-async-do-symlink (&optional arg)
-  "Run ‘dired-do-symlink’ asynchronously."
-  (interactive "P")
-  (dired-async--with-async-create-files
-    (dired-do-symlink arg)))
-
-;;;###autoload
-(defun dired-async-do-hardlink (&optional arg)
-  "Run ‘dired-do-hardlink’ asynchronously."
-  (interactive "P")
-  (dired-async--with-async-create-files
-    (dired-do-hardlink arg)))
-
-;;;###autoload
-(defun dired-async-do-rename (&optional arg)
-  "Run ‘dired-do-rename’ asynchronously."
-  (interactive "P")
-  (dired-async--with-async-create-files
-    (dired-do-rename arg)))
-
-(provide 'dired-async)
-
-;;; dired-async.el ends here
diff --git a/elpa/async-20180527.1730/dired-async.elc b/elpa/async-20180527.1730/dired-async.elc
deleted file mode 100644
index 04af044..0000000
--- a/elpa/async-20180527.1730/dired-async.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/async-20180527.1730/smtpmail-async.el b/elpa/async-20180527.1730/smtpmail-async.el
deleted file mode 100644
index ac26923..0000000
--- a/elpa/async-20180527.1730/smtpmail-async.el
+++ /dev/null
@@ -1,73 +0,0 @@
-;;; smtpmail-async.el --- Send e-mail with smtpmail.el asynchronously -*- lexical-binding: t -*-
-
-;; Copyright (C) 2012-2016 Free Software Foundation, Inc.
-
-;; Author: John Wiegley <jwiegley@gmail.com>
-;; Created: 18 Jun 2012
-
-;; Keywords: email async
-;; X-URL: https://github.com/jwiegley/emacs-async
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License as
-;; published by the Free Software Foundation; either version 2, or (at
-;; your option) any later version.
-
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
-
-;;; Commentary:
-
-;; Send e-mail with smtpmail.el asynchronously.  To use:
-;;
-;;   (require 'smtpmail-async)
-;;
-;;   (setq send-mail-function 'async-smtpmail-send-it
-;;         message-send-mail-function 'async-smtpmail-send-it)
-;;
-;; This assumes you already have smtpmail.el working.
-
-;;; Code:
-
-(defgroup smtpmail-async nil
-  "Send e-mail with smtpmail.el asynchronously"
-  :group 'smptmail)
-
-(require 'async)
-(require 'smtpmail)
-(require 'message)
-
-(defvar async-smtpmail-before-send-hook nil
-  "Hook running in the child emacs in `async-smtpmail-send-it'.
-It is called just before calling `smtpmail-send-it'.")
-
-(defun async-smtpmail-send-it ()
-  (let ((to          (message-field-value "To"))
-        (buf-content (buffer-substring-no-properties
-                      (point-min) (point-max))))
-    (message "Delivering message to %s..." to)
-    (async-start
-     `(lambda ()
-        (require 'smtpmail)
-        (with-temp-buffer
-          (insert ,buf-content)
-          (set-buffer-multibyte nil)
-          ;; Pass in the variable environment for smtpmail
-          ,(async-inject-variables
-            "\\`\\(smtpmail\\|async-smtpmail\\|\\(user-\\)?mail\\)-\\|auth-sources\\|epg\\|nsm"
-            nil "\\`\\(mail-header-format-function\\|smtpmail-address-buffer\\|mail-mode-abbrev-table\\)")
-          (run-hooks 'async-smtpmail-before-send-hook)
-          (smtpmail-send-it)))
-     (lambda (&optional _ignore)
-       (message "Delivering message to %s...done" to)))))
-
-(provide 'smtpmail-async)
-
-;;; smtpmail-async.el ends here
diff --git a/elpa/async-20180527.1730/smtpmail-async.elc b/elpa/async-20180527.1730/smtpmail-async.elc
deleted file mode 100644
index 6705966..0000000
--- a/elpa/async-20180527.1730/smtpmail-async.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/auctex-readme.txt b/elpa/auctex-readme.txt
deleted file mode 100644
index fe474cf..0000000
--- a/elpa/auctex-readme.txt
+++ /dev/null
@@ -1,238 +0,0 @@
-This is the README file for the AUCTeX distribution.
-
-     Copyright (C) 2008, 2017 Free Software Foundation, Inc.
-
-     Copying and distribution of this file, with or without
-     modification, are permitted in any medium without royalty provided
-     the copyright notice and this notice are preserved.
-
-Introduction to AUCTeX
-**********************
-
-This file gives a brief overview of what AUCTeX is.  It is *not* an
-attempt to document AUCTeX.  Real documentation for AUCTeX is available
-in the manual, which should be available as an info file after
-installation.
-
-AUCTeX is a comprehensive customizable integrated environment for
-writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using
-Emacs.
-
-It supports you in the insertion of macros, environments, and sectioning
-commands by providing completion alternatives and prompting for
-parameters.  It automatically indents your text as you type it and lets
-you format a whole file at once.  The outlining and folding facilities
-provide you with a focused and clean view of your text.
-
-AUCTeX lets you process your source files by running TeX and related
-tools (such as output filters, post processors for generating indices
-and bibliographies, and viewers) from inside Emacs.  AUCTeX lets you
-browse through the errors TeX reported, while it moves the cursor
-directly to the reported error, and displays some documentation for that
-particular error.  This will even work when the document is spread over
-several files.
-
-One component of AUCTeX that LaTeX users will find attractive is
-preview-latex, a combination of folding and in-source previewing that
-provides true "What You See Is What You Get" experience in your
-sourcebuffer, while letting you retain full control.  For more
-information, see further below.
-
-More detailed information about the features and usage of AUCTeX can be
-found in the AUCTeX manual.  You can access it from within Emacs by
-typing 'C-h i d m auctex <RET>'.  If you prefer the standalone info
-reader, issue the command 'info auctex' in a terminal.
-
-AUCTeX is written entirely in Emacs Lisp, and hence you can easily add
-new features for your own needs.  It is a GNU project and distributed
-under the 'GNU General Public License Version 3'.
-
-The most recent version is always available at
-<http://ftp.gnu.org/pub/gnu/auctex/>.
-
-WWW users may want to check out the AUCTeX page at
-<http://www.gnu.org/software/auctex/>.
-
-For comprehensive information about how to install AUCTeX read the file
-'INSTALL' or 'INSTALL.windows', respectively.
-
-If you are considering upgrading AUCTeX, the recent changes are
-described in the 'CHANGES' file.
-
-If you want to discuss AUCTeX with other users or its developers, there
-are several mailing lists you can use.
-
-Send a mail with the subject "subscribe" to <auctex-request@gnu.org> in
-order to join the general discussion list for AUCTeX.  Articles should
-be sent to <auctex@gnu.org>.  In a similar way, you can subscribe to the
-<info-auctex@gnu.org> list for just getting important announcements
-about AUCTeX.  The list <bug-auctex@gnu.org> is for bug reports which
-you should usually file with the 'M-x TeX-submit-bug-report <RET>'
-command.  If you want to address the developers of AUCTeX themselves
-with technical issues, they can be found on the discussion list
-<auctex-devel@gnu.org>.
-preview-latex in a nutshell
-***************************
-
-Does your neck hurt from turning between previewer windows and the
-source too often?  This AUCTeX component will render your displayed
-LaTeX equations right into the editing window where they belong.
-
-The purpose of preview-latex is to embed LaTeX environments such as
-display math or figures into the source buffers and switch conveniently
-between source and image representation.
-
-1 What use is it?
-*****************
-
-WYSIWYG (what you see is what you get) sometimes is considered all the
-rage, sometimes frowned upon.  Do we really want it?  Wrong question.
-The right question is _what_ we want from it.  Except when finetuning
-the layout, we don't want to use printer fonts for on-screen text
-editing.  The low resolution and contrast of a computer screen render
-all but the coarsest printer fonts (those for low-quality newsprint)
-unappealing, and the margins and pagination of the print are not wanted
-on the screen, either.  On the other hand, more complex visual
-compositions like math formulas and tables can't easily be taken in when
-seen only in the source.  preview-latex strikes a balance: it only uses
-graphic renditions of the output for certain, configurable constructs,
-does this only when told, and then right in the source code.  Switching
-back and forth between the source and preview is easy and natural and
-can be done for each image independently.  Behind the scenes of
-preview-latex, a sophisticated framework of other programs like
-'dvipng', Dvips and Ghostscript are employed together with a special
-LaTeX style file for extracting the material of interest in the
-background and providing fast interactive response.
-
-2 Activating preview-latex
-**************************
-
-After installation, the package may need to be activated (and remember
-to activate AUCTeX too).  If preview-latex is installed via the Emacs
-package manager (ELPA), activation should be automatic upon
-installation.
-
-The usual activation (if it is not done automatically) would be
-
-     (load "preview-latex.el" nil t t)
-
-If you still don't get a "Preview" menu in LaTeX mode in spite of AUCTeX
-showing its "Command", your installation is broken.  One possible cause
-are duplicate Lisp files that might be detectable with '<M-x>
-list-load-path-shadows <RET>'.
-
-3 Getting started
-*****************
-
-Once activated, preview-latex and its documentation will be accessible
-via its menus (note that preview-latex requires AUCTeX to be loaded).
-When you have loaded a LaTeX document (a sample document 'circ.tex' is
-included in the distribution, but most documents including math and/or
-figures should do), you can use its menu or 'C-c C-p C-d' (for
-'Preview/Document').  Previews will now be generated for various objects
-in your document.  You can use the time to take a short look at the
-other menu entries and key bindings in the 'Preview' menu.  You'll see
-the previewed objects change into a roadworks sign when preview-latex
-has determined just what it is going to preview.  Note that you can
-freely navigate the buffer while this is going on.  When the process is
-finished you will see the objects typeset in your buffer.
-
-It is a bad idea, however, to edit the buffer before the roadworks signs
-appear, since that is the moment when the correlation between the
-original text and the buffer locations gets established.  If the buffer
-changes before that point of time, the previews will not be placed where
-they belong.  If you do want to change some obvious error you just
-spotted, we recommend you stop the background process by pressing 'C-c
-C-k'.
-
-To see/edit the LaTeX code for a specific object, put the point (the
-cursor) on it and press 'C-c C-p C-p' (for 'Preview/at point').  It will
-also do to click with the middle mouse button on the preview.  Now you
-can edit the code, and generate a new preview by again pressing 'C-c C-p
-C-p' (or by clicking with the middle mouse button on the icon before the
-edited text).
-
-If you are using the 'desktop' package, previews will remain from one
-session to the next as long as you don't kill your buffer.
-
-4 Basic modes of operation
-**************************
-
-preview-latex has a number of methods for generating its graphics.  Its
-default operation is equivalent to using the 'LaTeX' command from
-AUCTeX.  If this happens to be a call of PDFLaTeX generating PDF output
-(you need at least AUCTeX 11.51 for this), then Ghostscript will be
-called directly on the resulting PDF file.  If a DVI file gets produced,
-first Dvips and then Ghostscript get called by default.
-
-The image type to be generated by Ghostscript can be configured with
-
-     M-x customize-variable RET preview-image-type RET
-
-The default is 'png' (the most efficient image type).  A special setting
-is 'dvipng' in case you have the 'dvipng' program installed.  In this
-case, 'dvipng' will be used for converting DVI files and Ghostscript
-(with a 'PNG' device) for converting PDF files.  'dvipng' is much faster
-than the combination of Dvips and Ghostscript.  You can get downloads,
-access to its CVS archive and further information from its project site
-(http://savannah.nongnu.org/projects/dvipng).
-
-5 More documentation
-********************
-
-After the installation, documentation in the form of an info manual will
-be available.  You can access it with the standalone info reader with
-
-     info preview-latex
-
-or by pressing 'C-h i d m preview-latex <RET>' in Emacs.  Once
-preview-latex is activated, you can instead use 'C-c C-p <TAB>' (or the
-menu entry 'Preview/Read documentation').
-
-Depending on your installation, a printable manual may also be available
-in the form of 'preview-latex.dvi' or 'preview-latex.ps'.
-
-Detailed documentation for the LaTeX style used for extracting the
-preview images is placed in 'preview.dvi' in a suitable directory during
-installation; on typical teTeX-based systems,
-
-     texdoc preview
-
-will display it.
-
-6 Availability
-**************
-
-The preview-latex project is now part of AUCTeX and accessible as part
-of the AUCTeX project page (http://savannah.gnu.org/projects/auctex).
-You can get its files from the AUCTeX download area
-(ftp://ftp.gnu.org/pub/gnu/auctex).  As of AUCTeX 11.81, preview-latex
-should already be integrated into AUCTeX, so no separate download will
-be necessary.
-
-You will also find '.rpm' files there for Fedora and possibly SuSE.
-Anonymous Git is available as well.
-
-7 Contacts
-**********
-
-Bug reports should be sent by using 'M-x preview-report-bug <RET>', as
-this will fill in a lot of information interesting to us.  If the
-installation fails (but this should be a rare event), report bugs to
-<bug-auctex@gnu.org>.
-
-There is a general discussion list for AUCTeX which also covers
-preview-latex, look at <http://lists.gnu.org/mailman/listinfo/auctex>.
-For more information on the mailing list, send a message with just the
-word "help" as subject or body to <auctex-request@gnu.org>.  For the
-developers, there is the <auctex-devel@gnu.org> list; it would probably
-make sense to direct feature requests and questions about internal
-details there.  There is a low-volume read-only announcement list
-available to which you can subscribe by sending a mail with "subscribe"
-in the subject to <info-auctex-request@gnu.org>.
-
-Offers to support further development will be appreciated.  If you want
-to show your appreciation with a donation to the main developer, you can
-do so via PayPal to <dak@gnu.org>, and of course you can arrange for
-service contracts or for added functionality.  Take a look at the 'TODO'
-list for suggestions in that area.
diff --git a/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode-autoloads.el b/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode-autoloads.el
deleted file mode 100644
index 30db341..0000000
--- a/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode-autoloads.el
+++ /dev/null
@@ -1,54 +0,0 @@
-;;; clean-aindent-mode-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "clean-aindent-mode" "clean-aindent-mode.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from clean-aindent-mode.el
-
-(defvar clean-aindent-mode nil "\
-Non-nil if Clean-Aindent mode is enabled.
-See the `clean-aindent-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `clean-aindent-mode'.")
-
-(custom-autoload 'clean-aindent-mode "clean-aindent-mode" nil)
-
-(autoload 'clean-aindent-mode "clean-aindent-mode" "\
-Activates clean auto indent for function 'newline-and-indent' and
-back-space unindent for M-DEL (meta-backspace).
-
-clean-aindent mode is a global minor mode.
-
-1. Extension of 'newline-and-indent' that keeps track of the last
-auto-indent operation and, if it is abandoned, would take care to
-trim down the unused white space characters.
-
-2. Simple indent, if activated, where cursor is aligned with
-indent of the lines above.
-
-3. Backspace Unindent. Extension of M-backspace. When cursor is
-in the indentation space of a line, or at the first character and
-you press M-backspace it will move the entire line to be aligned
-to the line above or any other that is with indentation smaller
-than the current.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "clean-aindent-mode" '("clean-aindent-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; clean-aindent-mode-autoloads.el ends here
diff --git a/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode-pkg.el b/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode-pkg.el
deleted file mode 100644
index 0d55a76..0000000
--- a/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "clean-aindent-mode" "20171017.2043" "Simple indent and unindent, trims indent white-space" 'nil :commit "a97bcae8f43a9ff64e95473e4ef0d8bafe829211" :keywords '("indentation" "whitespace" "backspace") :authors '(("peter marinov" . "efravia@gmail.com")) :maintainer '("peter marinov" . "efravia@gmail.com") :url "https://github.com/pmarinov/clean-aindent-mode")
diff --git a/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode.el b/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode.el
deleted file mode 100644
index ff6ab2a..0000000
--- a/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode.el
+++ /dev/null
@@ -1,336 +0,0 @@
-;;; clean-aindent-mode.el --- Simple indent and unindent, trims indent white-space
-
-;; This is free and unencumbered software released into the public domain.
-;; (http://unlicense.org)
-
-;; Author: peter marinov <efravia@gmail.com>
-;; Created: 2013-08-17
-;; Last: 2015-08-16
-;; Version: 1.5.0
-;; Package-Version: 20171017.2043
-;; License: C0 (public domain)
-;; URL: https://github.com/pmarinov/clean-aindent-mode
-;; Doc URL: http://www.emacswiki.org/emacs/CleanAutoIndent
-;; Keywords: indentation whitespace backspace
-
-;; This file is not part of GNU Emacs.
-
-;;; Commentary:
-
-;; === Description of the features
-;; 1. Extension of 'newline-and-indent' that keeps track of the last
-;; auto-indent operation and, if it is abandoned, would take care to
-;; trim down the unused white space characters.
-;;
-;; 2. Simple indent, if activated, where cursor is aligned with
-;; indent of the lines above.
-;;
-;; 3. Backspace Unindent. Extension of M-backspace.
-;; When cursor is in the indentation space of a line, or at the first
-;; character and you press M-backspace it will move the entire line to
-;; be aligned to the line above or any other that is with indentation
-;; smaller than the current.
-;;
-;; Detailed documentation with example situations and screenshots:
-;; http://www.emacswiki.org/emacs/CleanAutoIndent
-;;
-;; === To activate
-;; 'M-x clean-aindent-mode'
-;; or
-;; add this to your init.el:
-;; (clean-aindent-mode t)
-;;
-;; By default auto-indent is bound to 'C-j'. Bind it to 'RET' for most
-;; convenient use of the features. Add this to your init.el:
-;; (define-key global-map (kbd "RET") 'newline-and-indent)
-;;
-;; In case you installed the extension via MELPA, use this suggested configiration:
-;;
-;;  (defun my-pkg-init()
-;;    (electric-indent-mode -1)  ; no electric indent, auto-indent is sufficient
-;;    (clean-aindent-mode t)
-;;    (setq clean-aindent-is-simple-indent t)
-;;    (define-key global-map (kbd "RET") 'newline-and-indent))
-;;  (add-hook 'after-init-hook 'my-pkg-init)
-;;
-;; === Options
-;; M-x customize, search for 'auto indent', toggle to on,
-;; then 'Apply and Save'.
-;; or
-;; add this to your init.el:
-;; (set 'clean-aindent-is-simple-indent t)
-;;
-
-;;; Change Log:
-;;
-;; 2015-06-18, v1.5.0, pmarinov
-;;     - Fix for a compiler warning by justbur
-;;     - Extra comments in README
-;;
-;; 2014-06-14, pmarinov, v1.4.0
-;;     - Implement as an advice to 'newline-and-indent'
-;;
-;; 2014-06-01, pmarinov, v1.3.0
-;;     - Activate via a minor mode
-;;     - Further cleanup of the name space
-;;
-;; 2014-05-27, pmarinov, v1.2.0
-;;     Changed: Move all function under the same namespace (function prefix)
-;;
-;; 2014-03-07, pmarinov, v1.1.0
-;;     Added: Simple auto indent feature. Configurable via M-x customize.
-;;
-;; 2013-08-31, pmarinov, v1.0.0
-;;     First implementation.
-;;
-
-
-(defgroup clean-aindent nil
-  "Settings for 'clean-aindent-mode'"
-  :group 'indent)
-
-(defcustom clean-aindent-is-simple-indent nil
-  "Determines if indentation should use the smart language mode or simple mode"
-  :tag "Clean auto indent is in simple mode"
-  :group 'clean-aindent
-  :type 'boolean)
-
-;;
-;; Implementation of Clean auto indent and simple indent
-;;
-
-(defun clean-aindent--get-indent-len()
-  "Computes the length of the line at 'clean-aindent--last-indent."
-  (let ((eol-pos 0))
-    (save-excursion
-      (goto-char clean-aindent--last-indent)
-      (end-of-line)
-      (setq eol-pos (point))
-      (beginning-of-line)
-      ;; return ln-len = eol-pos - pos
-      (- eol-pos (point)))))
-
-(defun clean-aindent--abandonedp()
-  "Checks if last auto-indent position was abandoned.
-Verifies if cursor moved away and that the indent was left
-unaltered."
-  (if (not clean-aindent--last-indent)
-    nil
-    ;; (message "clean-aindent--last-indent %d point %d" clean-aindent--last-indent (point))
-    (if (= clean-aindent--last-indent (point))
-      nil
-      ;; Checking for indent length is to detect if something was not
-      ;; typed to alter it. Altered indent shouldn't be trimmed.
-      (if (not (= clean-aindent--last-indent-len (clean-aindent--get-indent-len)))
-        nil
-        t))))
-
-(defun clean-aindent--trim-last-point()
-  "Deletes the whitespaces inserted at last indentation"
-  (save-excursion
-    (goto-char clean-aindent--last-indent)
-    ; Select the entire line
-    (let ((s 0)
-         (e 0))
-      (beginning-of-line)
-      (setq s (point))
-      (end-of-line)
-      (setq e (point))
-      (delete-trailing-whitespace s e)
-      (end-of-line)
-      (message "auto trimmed %d chars" (- e (point))))))
-
-(defun clean-aindent--check-last-point()
-  "Checks if last pos of auto-indent was abandoned and deletes it"
-  (if (clean-aindent--abandonedp)
-    (clean-aindent--trim-last-point))
-  ;; Once we leave the position, clean the indent bookmark
-  (if
-    (and
-      clean-aindent--last-indent
-      (not (= clean-aindent--last-indent (point))))
-    (setq clean-aindent--last-indent nil)))
-
-(defun clean-aindent--find-indent()
-  "Searches lines backward, finds first non-blank. Returns
-indentation value"
-  (save-excursion
-    ;; Walk lines backward, until first non-blank
-    (clean-aindent--prev-line)
-    ;; Return indentation of that line
-    (current-indentation)))
-
-(defun clean-aindent--simple-newline-and-indent()
-  "Simple auto indent. Indentation is based only on previous line
-indentation, regardless of language settings."
-  ;; First remove any trailing spaces from the current line
-  (save-excursion
-    (let ((s 0)
-         (e 0))
-      (beginning-of-line)
-      (setq s (point))
-      (end-of-line)
-      (setq e (point))
-      (delete-trailing-whitespace s e)
-      (end-of-line)))
-  ;; Insert a new line and indent
-  (newline)
-  (indent-to (clean-aindent--find-indent) 0))
-
-(defadvice newline-and-indent (around clean-aindent)
-  "Advice for newline-and-indent(), implements clean auto-indent.
-Removes unneeded whitespaces by keeping track of the place of the
-last indentation so that they can be deleted in case the indentation was
-abandoned."
-  (clean-aindent--check-last-point)  ;; In case of consequtive aindent calls
-  (if clean-aindent-is-simple-indent
-      (clean-aindent--simple-newline-and-indent)  ;; Run our simple indent feature
-    (progn
-     ad-do-it))  ;; Run 'newline-and-indent' here
-  (setq clean-aindent--last-indent nil)
-  ;; Make local: track on per buffer basis
-  (make-local-variable 'clean-aindent--last-indent)
-  ;; Track position and length of the indentation
-  (setq clean-aindent--last-indent (point))
-  (setq clean-aindent--last-indent-len (clean-aindent--get-indent-len))
-  (make-local-variable 'clean-aindent--last-indent-len))
-
-;;
-;; Backspace-unindent implementation functions
-;;
-
-(defun clean-aindent--get-line-len()
-  "Computes length of current line"
-  (save-excursion
-    (beginning-of-line nil)
-      (let ((pos (point)))
-        (end-of-line nil)
-        (- (point) pos))))
-
-(defun clean-aindent--line-emptyp()
-  "Checks if line is empty"
-  (save-excursion
-    (beginning-of-line nil)
-    (if (= (point) 1)
-      nil
-      (= (clean-aindent--get-line-len) 0))))
-
-(defun clean-aindent--prev-line()
-  "Move cursor to previous line, skip empty lines"
-  (let ((c (point)))
-    (while
-      (and
-        (= 0 (forward-line -1))
-        (clean-aindent--line-emptyp)))
-    ;; return 't if we moved, nil if already beginning of buffer
-    (not (= c (point)))))
-
-(defun clean-aindent--find-u-indent(start)
-  "Searches lines backward, finds the one that is indented less
-than certain indentation t"
-  (save-excursion
-    (let (c)
-      (while
-        (and
-          (setq c (current-indentation))
-          (> c 0)
-          ;; Find an indent smaller than _start_
-          (<= start c)
-          ;; Walk lines backward
-          (clean-aindent--prev-line)))
-      ;; _c_ is the computed unindent size
-      c)))
-
-(defun clean-aindent--inside-indentp()
-  "Returns true if cursor is in the leading whitespace or first
-non-blank character of a line"
-  (save-excursion
-    (let ((pos (point)))
-      (beginning-of-line nil)
-      (skip-chars-forward " \t")
-      (if (<= pos (point))
-        t
-        nil))))
-
-(defun clean-aindent--line-point()
-  "Get (point) at the beginning of the current line"
-  (save-excursion
-    (beginning-of-line)
-    (point)))
-
-(defun clean-aindent--goto-column(col)
-  "Moves the cursor to a certain column position.
-Column position is different from char position because of TABs"
-  (beginning-of-line nil)
-  (while (< (current-column) col)
-    (right-char)))
-
-(defun clean-aindent--bsunindent(arg)
-  "Unindents.
-Bound to `M-backspace' key. Searches lines backward, finds the one that
-is indented less than the current one. Unindents current line to
-align with that smaller indentation"
-  (interactive "p")
-  (if (not (clean-aindent--inside-indentp))
-      (kill-word (- arg))  ;; Original "C-backspace" key function
-    ;; else: cursor is inside indent space, do unindent
-    (let*
-        ((ln (clean-aindent--line-point))
-        (c (current-indentation))
-        (n (clean-aindent--find-u-indent c))  ;; compute new indent
-        (s (+ ln n)))  ;; start of region to delete
-      (if (not (= s c))
-        (progn
-          ;; (message "new unindent %d" n)
-          ;; Delete characters between s to c
-          (clean-aindent--goto-column c)
-          (backward-delete-char-untabify (- c n)))))))
-
-
-;;
-;; Initial setup
-;;
-
-(defvar clean-aindent--last-indent nil)
-(defvar clean-aindent--last-indent-len 0)
-
-(defvar clean-aindent-mode--keymap (make-keymap) "clean-aindent-mode keymap.")
-(define-key clean-aindent-mode--keymap [remap backward-kill-word] 'clean-aindent--bsunindent)
-
-;;;###autoload
-(define-minor-mode clean-aindent-mode
-  "Activates clean auto indent for function 'newline-and-indent' and
-back-space unindent for M-DEL (meta-backspace).
-
-clean-aindent mode is a global minor mode.
-
-1. Extension of 'newline-and-indent' that keeps track of the last
-auto-indent operation and, if it is abandoned, would take care to
-trim down the unused white space characters.
-
-2. Simple indent, if activated, where cursor is aligned with
-indent of the lines above.
-
-3. Backspace Unindent. Extension of M-backspace. When cursor is
-in the indentation space of a line, or at the first character and
-you press M-backspace it will move the entire line to be aligned
-to the line above or any other that is with indentation smaller
-than the current."
-  :init-value nil  ; The initial value - disabled by default
-  :global t        ; Global minor mode
-  :keymap clean-aindent-mode--keymap
-  ;; BODY
-  (if clean-aindent-mode
-      ;; Activate
-      (progn
-      (ad-enable-advice 'newline-and-indent 'around 'clean-aindent)
-      (ad-activate 'newline-and-indent)
-      (add-hook 'post-command-hook 'clean-aindent--check-last-point))
-    ;; Deactivate
-    (progn
-    (ad-disable-advice 'newline-and-indent 'around 'clean-aindent)
-    (ad-activate 'newline-and-indent)
-    (remove-hook 'post-command-hook 'clean-aindent--check-last-point))))
-
-(provide 'clean-aindent-mode)
-;;; clean-aindent-mode.el ends here
diff --git a/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode.elc b/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode.elc
deleted file mode 100644
index fb64f1e..0000000
--- a/elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-abbrev.el b/elpa/company-20181105.2312/company-abbrev.el
deleted file mode 100644
index 24ec3b7..0000000
--- a/elpa/company-20181105.2312/company-abbrev.el
+++ /dev/null
@@ -1,50 +0,0 @@
-;;; company-abbrev.el --- company-mode completion backend for abbrev
-
-;; Copyright (C) 2009-2011, 2015  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-(require 'abbrev)
-
-(defun company-abbrev-insert (match)
-  "Replace MATCH with the expanded abbrev."
-  (expand-abbrev))
-
-;;;###autoload
-(defun company-abbrev (command &optional arg &rest ignored)
-  "`company-mode' completion backend for abbrev."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-abbrev
-                                        'company-abbrev-insert))
-    (prefix (company-grab-symbol))
-    (candidates (nconc
-                 (delete "" (all-completions arg global-abbrev-table))
-                 (delete "" (all-completions arg local-abbrev-table))))
-    (meta (abbrev-expansion arg))))
-
-(provide 'company-abbrev)
-;;; company-abbrev.el ends here
diff --git a/elpa/company-20181105.2312/company-abbrev.elc b/elpa/company-20181105.2312/company-abbrev.elc
deleted file mode 100644
index 29bd4a3..0000000
--- a/elpa/company-20181105.2312/company-abbrev.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-autoloads.el b/elpa/company-20181105.2312/company-autoloads.el
deleted file mode 100644
index 4f3bf48..0000000
--- a/elpa/company-20181105.2312/company-autoloads.el
+++ /dev/null
@@ -1,383 +0,0 @@
-;;; company-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "company" "company.el" (0 0 0 0))
-;;; Generated autoloads from company.el
-
-(autoload 'company-mode "company" "\
-\"complete anything\"; is an in-buffer completion framework.
-Completion starts automatically, depending on the values
-`company-idle-delay' and `company-minimum-prefix-length'.
-
-Completion can be controlled with the commands:
-`company-complete-common', `company-complete-selection', `company-complete',
-`company-select-next', `company-select-previous'.  If these commands are
-called before `company-idle-delay', completion will also start.
-
-Completions can be searched with `company-search-candidates' or
-`company-filter-candidates'.  These can be used while completion is
-inactive, as well.
-
-The completion data is retrieved using `company-backends' and displayed
-using `company-frontends'.  If you want to start a specific backend, call
-it interactively or use `company-begin-backend'.
-
-By default, the completions list is sorted alphabetically, unless the
-backend chooses otherwise, or `company-transformers' changes it later.
-
-regular keymap (`company-mode-map'):
-
-\\{company-mode-map}
-keymap during active completions (`company-active-map'):
-
-\\{company-active-map}
-
-\(fn &optional ARG)" t nil)
-
-(defvar global-company-mode nil "\
-Non-nil if Global Company mode is enabled.
-See the `global-company-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `global-company-mode'.")
-
-(custom-autoload 'global-company-mode "company" nil)
-
-(autoload 'global-company-mode "company" "\
-Toggle Company mode in all buffers.
-With prefix ARG, enable Global Company mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Company mode is enabled in all buffers where
-`company-mode-on' would do it.
-See `company-mode' for more information on Company mode.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'company-manual-begin "company" "\
-
-
-\(fn)" t nil)
-
-(autoload 'company-complete "company" "\
-Insert the common part of all candidates or the current selection.
-The first time this is called, the common part is inserted, the second
-time, or when the selection has been changed, the selected candidate is
-inserted.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company" '("company-")))
-
-;;;***
-
-;;;### (autoloads nil "company-abbrev" "company-abbrev.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from company-abbrev.el
-
-(autoload 'company-abbrev "company-abbrev" "\
-`company-mode' completion backend for abbrev.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-abbrev" '("company-abbrev-insert")))
-
-;;;***
-
-;;;### (autoloads nil "company-bbdb" "company-bbdb.el" (0 0 0 0))
-;;; Generated autoloads from company-bbdb.el
-
-(autoload 'company-bbdb "company-bbdb" "\
-`company-mode' completion backend for BBDB.
-
-\(fn COMMAND &optional ARG &rest IGNORE)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-bbdb" '("company-bbdb-")))
-
-;;;***
-
-;;;### (autoloads nil "company-capf" "company-capf.el" (0 0 0 0))
-;;; Generated autoloads from company-capf.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-capf" '("company-")))
-
-;;;***
-
-;;;### (autoloads nil "company-clang" "company-clang.el" (0 0 0 0))
-;;; Generated autoloads from company-clang.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-clang" '("company-clang")))
-
-;;;***
-
-;;;### (autoloads nil "company-cmake" "company-cmake.el" (0 0 0 0))
-;;; Generated autoloads from company-cmake.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-cmake" '("company-cmake")))
-
-;;;***
-
-;;;### (autoloads nil "company-css" "company-css.el" (0 0 0 0))
-;;; Generated autoloads from company-css.el
-
-(autoload 'company-css "company-css" "\
-`company-mode' completion backend for `css-mode'.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-css" '("company-css-")))
-
-;;;***
-
-;;;### (autoloads nil "company-dabbrev" "company-dabbrev.el" (0 0
-;;;;;;  0 0))
-;;; Generated autoloads from company-dabbrev.el
-
-(autoload 'company-dabbrev "company-dabbrev" "\
-dabbrev-like `company-mode' completion backend.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-dabbrev" '("company-dabbrev-")))
-
-;;;***
-
-;;;### (autoloads nil "company-dabbrev-code" "company-dabbrev-code.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from company-dabbrev-code.el
-
-(autoload 'company-dabbrev-code "company-dabbrev-code" "\
-dabbrev-like `company-mode' backend for code.
-The backend looks for all symbols in the current buffer that aren't in
-comments or strings.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-dabbrev-code" '("company-dabbrev-code-")))
-
-;;;***
-
-;;;### (autoloads nil "company-eclim" "company-eclim.el" (0 0 0 0))
-;;; Generated autoloads from company-eclim.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-eclim" '("company-eclim")))
-
-;;;***
-
-;;;### (autoloads nil "company-elisp" "company-elisp.el" (0 0 0 0))
-;;; Generated autoloads from company-elisp.el
-
-(autoload 'company-elisp "company-elisp" "\
-`company-mode' completion backend for Emacs Lisp.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-elisp" '("company-elisp-")))
-
-;;;***
-
-;;;### (autoloads nil "company-etags" "company-etags.el" (0 0 0 0))
-;;; Generated autoloads from company-etags.el
-
-(autoload 'company-etags "company-etags" "\
-`company-mode' completion backend for etags.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-etags" '("company-etags-")))
-
-;;;***
-
-;;;### (autoloads nil "company-files" "company-files.el" (0 0 0 0))
-;;; Generated autoloads from company-files.el
-
-(autoload 'company-files "company-files" "\
-`company-mode' completion backend existing file names.
-Completions works for proper absolute and relative files paths.
-File paths with spaces are only supported inside strings.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-files" '("company-file")))
-
-;;;***
-
-;;;### (autoloads nil "company-gtags" "company-gtags.el" (0 0 0 0))
-;;; Generated autoloads from company-gtags.el
-
-(autoload 'company-gtags "company-gtags" "\
-`company-mode' completion backend for GNU Global.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-gtags" '("company-gtags-")))
-
-;;;***
-
-;;;### (autoloads nil "company-ispell" "company-ispell.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from company-ispell.el
-
-(autoload 'company-ispell "company-ispell" "\
-`company-mode' completion backend using Ispell.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-ispell" '("company-ispell-")))
-
-;;;***
-
-;;;### (autoloads nil "company-keywords" "company-keywords.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from company-keywords.el
-
-(autoload 'company-keywords "company-keywords" "\
-`company-mode' backend for programming language keywords.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-keywords" '("company-keywords-")))
-
-;;;***
-
-;;;### (autoloads nil "company-nxml" "company-nxml.el" (0 0 0 0))
-;;; Generated autoloads from company-nxml.el
-
-(autoload 'company-nxml "company-nxml" "\
-`company-mode' completion backend for `nxml-mode'.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-nxml" '("company-nxml-")))
-
-;;;***
-
-;;;### (autoloads nil "company-oddmuse" "company-oddmuse.el" (0 0
-;;;;;;  0 0))
-;;; Generated autoloads from company-oddmuse.el
-
-(autoload 'company-oddmuse "company-oddmuse" "\
-`company-mode' completion backend for `oddmuse-mode'.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-oddmuse" '("company-oddmuse-")))
-
-;;;***
-
-;;;### (autoloads nil "company-semantic" "company-semantic.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from company-semantic.el
-
-(autoload 'company-semantic "company-semantic" "\
-`company-mode' completion backend using CEDET Semantic.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-semantic" '("company-semantic-")))
-
-;;;***
-
-;;;### (autoloads nil "company-template" "company-template.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from company-template.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-template" '("company-template-")))
-
-;;;***
-
-;;;### (autoloads nil "company-tempo" "company-tempo.el" (0 0 0 0))
-;;; Generated autoloads from company-tempo.el
-
-(autoload 'company-tempo "company-tempo" "\
-`company-mode' completion backend for tempo.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-tempo" '("company-tempo-")))
-
-;;;***
-
-;;;### (autoloads nil "company-tng" "company-tng.el" (0 0 0 0))
-;;; Generated autoloads from company-tng.el
-
-(autoload 'company-tng-frontend "company-tng" "\
-When the user changes the selection at least once, this
-frontend will display the candidate in the buffer as if it's
-already there and any key outside of `company-active-map' will
-confirm the selection and finish the completion.
-
-\(fn COMMAND)" nil nil)
-
-(autoload 'company-tng-configure-default "company-tng" "\
-Applies the default configuration to enable company-tng.
-
-\(fn)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-tng" '("company-tng--")))
-
-;;;***
-
-;;;### (autoloads nil "company-xcode" "company-xcode.el" (0 0 0 0))
-;;; Generated autoloads from company-xcode.el
-
-(autoload 'company-xcode "company-xcode" "\
-`company-mode' completion backend for Xcode projects.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-xcode" '("company-xcode-")))
-
-;;;***
-
-;;;### (autoloads nil "company-yasnippet" "company-yasnippet.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from company-yasnippet.el
-
-(autoload 'company-yasnippet "company-yasnippet" "\
-`company-mode' backend for `yasnippet'.
-
-This backend should be used with care, because as long as there are
-snippets defined for the current major mode, this backend will always
-shadow backends that come after it.  Recommended usages:
-
-* In a buffer-local value of `company-backends', grouped with a backend or
-  several that provide actual text completions.
-
-  (add-hook 'js-mode-hook
-            (lambda ()
-              (set (make-local-variable 'company-backends)
-                   '((company-dabbrev-code company-yasnippet)))))
-
-* After keyword `:with', grouped with other backends.
-
-  (push '(company-semantic :with company-yasnippet) company-backends)
-
-* Not in `company-backends', just bound to a key.
-
-  (global-set-key (kbd \"C-c y\") 'company-yasnippet)
-
-\(fn COMMAND &optional ARG &rest IGNORE)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-yasnippet" '("company-yasnippet--")))
-
-;;;***
-
-;;;### (autoloads nil nil ("company-pkg.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; company-autoloads.el ends here
diff --git a/elpa/company-20181105.2312/company-bbdb.el b/elpa/company-20181105.2312/company-bbdb.el
deleted file mode 100644
index 872e1fc..0000000
--- a/elpa/company-20181105.2312/company-bbdb.el
+++ /dev/null
@@ -1,61 +0,0 @@
-;;; company-bbdb.el --- company-mode completion backend for BBDB in message-mode
-
-;; Copyright (C) 2013-2014, 2016  Free Software Foundation, Inc.
-
-;; Author: Jan Tatarik <jan.tatarik@gmail.com>
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-(require 'company)
-(require 'cl-lib)
-
-(declare-function bbdb-record-get-field "bbdb")
-(declare-function bbdb-records "bbdb")
-(declare-function bbdb-dwim-mail "bbdb-com")
-(declare-function bbdb-search "bbdb-com")
-
-(defgroup company-bbdb nil
-  "Completion backend for BBDB."
-  :group 'company)
-
-(defcustom company-bbdb-modes '(message-mode)
-  "Major modes in which `company-bbdb' may complete."
-  :type '(repeat (symbol :tag "Major mode"))
-  :package-version '(company . "0.8.8"))
-
-(defun company-bbdb--candidates (arg)
-  (cl-mapcan (lambda (record)
-               (mapcar (lambda (mail) (bbdb-dwim-mail record mail))
-                       (bbdb-record-get-field record 'mail)))
-             (eval '(bbdb-search (bbdb-records) arg nil arg))))
-
-;;;###autoload
-(defun company-bbdb (command &optional arg &rest ignore)
-  "`company-mode' completion backend for BBDB."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-bbdb))
-    (prefix (and (memq major-mode company-bbdb-modes)
-                 (featurep 'bbdb-com)
-                 (looking-back "^\\(To\\|Cc\\|Bcc\\): *.*? *\\([^,;]*\\)"
-                               (line-beginning-position))
-                 (match-string-no-properties 2)))
-    (candidates (company-bbdb--candidates arg))
-    (sorted t)
-    (no-cache t)))
-
-(provide 'company-bbdb)
-;;; company-bbdb.el ends here
diff --git a/elpa/company-20181105.2312/company-bbdb.elc b/elpa/company-20181105.2312/company-bbdb.elc
deleted file mode 100644
index cbe13a6..0000000
--- a/elpa/company-20181105.2312/company-bbdb.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-capf.el b/elpa/company-20181105.2312/company-capf.el
deleted file mode 100644
index 343edca..0000000
--- a/elpa/company-20181105.2312/company-capf.el
+++ /dev/null
@@ -1,189 +0,0 @@
-;;; company-capf.el --- company-mode completion-at-point-functions backend -*- lexical-binding: t -*-
-
-;; Copyright (C) 2013-2018  Free Software Foundation, Inc.
-
-;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-;; The CAPF back-end provides a bridge to the standard
-;; completion-at-point-functions facility, and thus can support any major mode
-;; that defines a proper completion function, including emacs-lisp-mode,
-;; css-mode and nxml-mode.
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(defvar company--capf-cache nil)
-
-(defun company--capf-data ()
-  (let ((cache company--capf-cache))
-    (if (and (equal (current-buffer) (car cache))
-             (equal (point) (car (setq cache (cdr cache))))
-             (equal (buffer-chars-modified-tick) (car (setq cache (cdr cache)))))
-        (cadr cache)
-      (let ((data (company--capf-data-real)))
-        (setq company--capf-cache
-              (list (current-buffer) (point) (buffer-chars-modified-tick) data))
-        data))))
-
-(defun company--capf-data-real ()
-  (cl-letf* (((default-value 'completion-at-point-functions)
-              ;; Ignore tags-completion-at-point-function because it subverts
-              ;; company-etags in the default value of company-backends, where
-              ;; the latter comes later.
-              (remove 'tags-completion-at-point-function
-                      (default-value 'completion-at-point-functions)))
-             (completion-at-point-functions (company--capf-workaround))
-             (data (run-hook-wrapped 'completion-at-point-functions
-                                     ;; Ignore misbehaving functions.
-                                     #'completion--capf-wrapper 'optimist)))
-    (when (and (consp (cdr data)) (integer-or-marker-p (nth 1 data))) data)))
-
-(declare-function python-shell-get-process "python")
-
-(defun company--capf-workaround ()
-  ;; For http://debbugs.gnu.org/cgi/bugreport.cgi?bug=18067
-  (if (or (not (listp completion-at-point-functions))
-          (not (memq 'python-completion-complete-at-point completion-at-point-functions))
-          (python-shell-get-process))
-      completion-at-point-functions
-    (remq 'python-completion-complete-at-point completion-at-point-functions)))
-
-(defun company-capf (command &optional arg &rest _args)
-  "`company-mode' backend using `completion-at-point-functions'."
-  (interactive (list 'interactive))
-  (pcase command
-    (`interactive (company-begin-backend 'company-capf))
-    (`prefix
-     (let ((res (company--capf-data)))
-       (when res
-         (let ((length (plist-get (nthcdr 4 res) :company-prefix-length))
-               (prefix (buffer-substring-no-properties (nth 1 res) (point))))
-           (cond
-            ((> (nth 2 res) (point)) 'stop)
-            (length (cons prefix length))
-            (t prefix))))))
-    (`candidates
-     (let ((res (company--capf-data)))
-       (when res
-         (let* ((table (nth 3 res))
-                (pred (plist-get (nthcdr 4 res) :predicate))
-                (meta (completion-metadata
-                       (buffer-substring (nth 1 res) (nth 2 res))
-                       table pred))
-                (sortfun (cdr (assq 'display-sort-function meta)))
-                (candidates (completion-all-completions arg table pred (length arg)))
-                (last (last candidates))
-                (base-size (and (numberp (cdr last)) (cdr last))))
-           (when base-size
-             (setcdr last nil))
-           (when sortfun
-             (setq candidates (funcall sortfun candidates)))
-           (if (not (zerop (or base-size 0)))
-               (let ((before (substring arg 0 base-size)))
-                 (mapcar (lambda (candidate)
-                           (concat before candidate))
-                         candidates))
-             candidates)))))
-    (`sorted
-     (let ((res (company--capf-data)))
-       (when res
-         (let ((meta (completion-metadata
-                      (buffer-substring (nth 1 res) (nth 2 res))
-                      (nth 3 res) (plist-get (nthcdr 4 res) :predicate))))
-           (cdr (assq 'display-sort-function meta))))))
-    (`match
-     ;; Ask the for the `:company-match' function.  If that doesn't help,
-     ;; fallback to sniffing for face changes to get a suitable value.
-     (let ((f (plist-get (nthcdr 4 (company--capf-data)) :company-match)))
-       (if f (funcall f arg)
-         (let* ((match-start nil) (pos -1)
-                (prop-value nil)  (faces nil)
-                (has-face-p nil)  chunks
-                (limit (length arg)))
-           (while (< pos limit)
-             (setq pos
-                   (if (< pos 0) 0 (next-property-change pos arg limit)))
-             (setq prop-value (or
-                               (get-text-property pos 'face arg)
-                               (get-text-property pos 'font-lock-face arg))
-                   faces (if (listp prop-value) prop-value (list prop-value))
-                   has-face-p (memq 'completions-common-part faces))
-             (cond ((and (not match-start) has-face-p)
-                    (setq match-start pos))
-                   ((and match-start (not has-face-p))
-                    (push (cons match-start pos) chunks)
-                    (setq match-start nil))))
-           (nreverse chunks)))))
-    (`duplicates t)
-    (`no-cache t)   ;Not much can be done here, as long as we handle
-                    ;non-prefix matches.
-    (`meta
-     (let ((f (plist-get (nthcdr 4 (company--capf-data)) :company-docsig)))
-       (when f (funcall f arg))))
-    (`doc-buffer
-     (let ((f (plist-get (nthcdr 4 (company--capf-data)) :company-doc-buffer)))
-       (when f (funcall f arg))))
-    (`location
-     (let ((f (plist-get (nthcdr 4 (company--capf-data)) :company-location)))
-       (when f (funcall f arg))))
-    (`annotation
-     (save-excursion
-       ;; FIXME: `company-begin' sets `company-point' after calling
-       ;; `company--begin-new'.  We shouldn't rely on `company-point' here,
-       ;; better to cache the capf-data value instead.  However: we can't just
-       ;; save the last capf-data value in `prefix', because that command can
-       ;; get called more often than `candidates', and at any point in the
-       ;; buffer (https://github.com/company-mode/company-mode/issues/153).
-       ;; We could try propertizing the returned prefix string, but it's not
-       ;; passed to `annotation', and `company-prefix' is set only after
-       ;; `company--strip-duplicates' is called.
-       (when company-point
-         (goto-char company-point))
-       (let ((f (plist-get (nthcdr 4 (company--capf-data)) :annotation-function)))
-         (when f (funcall f arg)))))
-    (`require-match
-     (plist-get (nthcdr 4 (company--capf-data)) :company-require-match))
-    (`init nil)      ;Don't bother: plenty of other ways to initialize the code.
-    (`post-completion
-     (company--capf-post-completion arg))
-    ))
-
-(defun company--capf-post-completion (arg)
-  (let* ((res (company--capf-data))
-         (exit-function (plist-get (nthcdr 4 res) :exit-function))
-         (table (nth 3 res))
-         (pred (plist-get (nthcdr 4 res) :predicate)))
-    (if exit-function
-        ;; Follow the example of `completion--done'.
-        (funcall exit-function arg
-                 ;; FIXME: Should probably use an additional heuristic:
-                 ;; completion-at-point doesn't know when the user picked a
-                 ;; particular candidate explicitly (it only checks whether
-                 ;; futher completions exist). Whereas company user can press
-                 ;; RET (or use implicit completion with company-tng).
-                 (if (eq (try-completion arg table pred) t)
-                     'finished 'sole)))))
-
-(provide 'company-capf)
-
-;;; company-capf.el ends here
diff --git a/elpa/company-20181105.2312/company-capf.elc b/elpa/company-20181105.2312/company-capf.elc
deleted file mode 100644
index 3655fef..0000000
--- a/elpa/company-20181105.2312/company-capf.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-clang.el b/elpa/company-20181105.2312/company-clang.el
deleted file mode 100644
index 962db1e..0000000
--- a/elpa/company-20181105.2312/company-clang.el
+++ /dev/null
@@ -1,350 +0,0 @@
-;;; company-clang.el --- company-mode completion backend for Clang  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2009, 2011, 2013-2017  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'company-template)
-(require 'cl-lib)
-
-(defgroup company-clang nil
-  "Completion backend for Clang."
-  :group 'company)
-
-(defcustom company-clang-executable
-  (executable-find "clang")
-  "Location of clang executable."
-  :type 'file)
-
-(defcustom company-clang-begin-after-member-access t
-  "When non-nil, automatic completion will start whenever the current
-symbol is preceded by \".\", \"->\" or \"::\", ignoring
-`company-minimum-prefix-length'.
-
-If `company-begin-commands' is a list, it should include `c-electric-lt-gt'
-and `c-electric-colon', for automatic completion right after \">\" and
-\":\"."
-  :type 'boolean)
-
-(defcustom company-clang-arguments nil
-  "Additional arguments to pass to clang when completing.
-Prefix files (-include ...) can be selected with `company-clang-set-prefix'
-or automatically through a custom `company-clang-prefix-guesser'."
-  :type '(repeat (string :tag "Argument")))
-
-(defcustom company-clang-prefix-guesser 'company-clang-guess-prefix
-  "A function to determine the prefix file for the current buffer."
-  :type '(function :tag "Guesser function" nil))
-
-(defvar company-clang-modes '(c-mode c++-mode objc-mode)
-  "Major modes which clang may complete.")
-
-(defcustom company-clang-insert-arguments t
-  "When non-nil, insert function arguments as a template after completion."
-  :type 'boolean
-  :package-version '(company . "0.8.0"))
-
-;; prefix ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar company-clang--prefix nil)
-
-(defsubst company-clang--guess-pch-file (file)
-  (let ((dir (directory-file-name (file-name-directory file))))
-    (when (equal (file-name-nondirectory dir) "Classes")
-      (setq dir (file-name-directory dir)))
-    (car (directory-files dir t "\\([^.]h\\|[^h]\\).pch\\'" t))))
-
-(defsubst company-clang--file-substring (file beg end)
-  (with-temp-buffer
-    (insert-file-contents-literally file nil beg end)
-    (buffer-string)))
-
-(defun company-clang-guess-prefix ()
-  "Try to guess the prefix file for the current buffer."
-  ;; Prefixes seem to be called .pch.  Pre-compiled headers do, too.
-  ;; So we look at the magic number to rule them out.
-  (let* ((file (company-clang--guess-pch-file buffer-file-name))
-         (magic-number (and file (company-clang--file-substring file 0 4))))
-    (unless (member magic-number '("CPCH" "gpch"))
-      file)))
-
-(defun company-clang-set-prefix (&optional prefix)
-  "Use PREFIX as a prefix (-include ...) file for clang completion."
-  (interactive (let ((def (funcall company-clang-prefix-guesser)))
-     (unless (stringp def)
-       (setq def default-directory))
-     (list (read-file-name "Prefix file: "
-                           (when def (file-name-directory def))
-                           def t (when def (file-name-nondirectory def))))))
-  ;; TODO: pre-compile?
-  (setq company-clang--prefix (and (stringp prefix)
-                                   (file-regular-p prefix)
-                                   prefix)))
-
-;; Clean-up on exit.
-(add-hook 'kill-emacs-hook 'company-clang-set-prefix)
-
-;; parsing ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-;; TODO: Handle Pattern (syntactic hints would be neat).
-;; Do we ever see OVERLOAD (or OVERRIDE)?
-(defconst company-clang--completion-pattern
-  "^COMPLETION: \\_<\\(%s[a-zA-Z0-9_:]*\\)\\(?: : \\(.*\\)$\\)?$")
-
-(defconst company-clang--error-buffer-name "*clang-error*")
-
-(defun company-clang--lang-option ()
-     (if (eq major-mode 'objc-mode)
-         (if (string= "m" (file-name-extension buffer-file-name))
-             "objective-c" "objective-c++")
-       (substring (symbol-name major-mode) 0 -5)))
-
-(defun company-clang--parse-output (prefix _objc)
-  (goto-char (point-min))
-  (let ((pattern (format company-clang--completion-pattern
-                         (regexp-quote prefix)))
-        (case-fold-search nil)
-        lines match)
-    (while (re-search-forward pattern nil t)
-      (setq match (match-string-no-properties 1))
-      (unless (equal match "Pattern")
-        (save-match-data
-          (when (string-match ":" match)
-            (setq match (substring match 0 (match-beginning 0)))))
-        (let ((meta (match-string-no-properties 2)))
-          (when (and meta (not (string= match meta)))
-            (put-text-property 0 1 'meta
-                               (company-clang--strip-formatting meta)
-                               match)))
-        (push match lines)))
-    lines))
-
-(defun company-clang--meta (candidate)
-  (get-text-property 0 'meta candidate))
-
-(defun company-clang--annotation (candidate)
-  (let ((ann (company-clang--annotation-1 candidate)))
-    (if (not (and ann (string-prefix-p "(*)" ann)))
-        ann
-      (with-temp-buffer
-        (insert ann)
-        (search-backward ")")
-        (let ((pt (1+ (point))))
-          (re-search-forward ".\\_>" nil t)
-          (delete-region pt (point)))
-        (buffer-string)))))
-
-(defun company-clang--annotation-1 (candidate)
-  (let ((meta (company-clang--meta candidate)))
-    (cond
-     ((null meta) nil)
-     ((string-match "[^:]:[^:]" meta)
-      (substring meta (1+ (match-beginning 0))))
-     ((string-match "(anonymous)" meta) nil)
-     ((string-match "\\((.*)[ a-z]*\\'\\)" meta)
-      (let ((paren (match-beginning 1)))
-        (if (not (eq (aref meta (1- paren)) ?>))
-            (match-string 1 meta)
-          (with-temp-buffer
-            (insert meta)
-            (goto-char paren)
-            (substring meta (1- (search-backward "<"))))))))))
-
-(defun company-clang--strip-formatting (text)
-  (replace-regexp-in-string
-   "#]" " "
-   (replace-regexp-in-string "[<{[]#\\|#[>}]" "" text t)
-   t))
-
-(defun company-clang--handle-error (res args)
-  (goto-char (point-min))
-  (let* ((buf (get-buffer-create company-clang--error-buffer-name))
-         (cmd (concat company-clang-executable " " (mapconcat 'identity args " ")))
-         (pattern (format company-clang--completion-pattern ""))
-         (message-truncate-lines t)
-         (err (if (re-search-forward pattern nil t)
-                  (buffer-substring-no-properties (point-min)
-                                                  (1- (match-beginning 0)))
-                ;; Warn the user more aggressively if no match was found.
-                (message "clang failed with error %d: %s" res cmd)
-                (buffer-string))))
-
-    (with-current-buffer buf
-      (let ((inhibit-read-only t))
-        (erase-buffer)
-        (insert (current-time-string)
-                (format "\nclang failed with error %d:\n" res)
-                cmd "\n\n")
-        (insert err)
-        (setq buffer-read-only t)
-        (goto-char (point-min))))))
-
-(defun company-clang--start-process (prefix callback &rest args)
-  (let* ((objc (derived-mode-p 'objc-mode))
-         (buf (get-buffer-create "*clang-output*"))
-         ;; Looks unnecessary in Emacs 25.1 and later.
-         (process-adaptive-read-buffering nil)
-         (existing-process (get-buffer-process buf)))
-    (when existing-process
-      (kill-process existing-process))
-    (with-current-buffer buf
-      (erase-buffer)
-      (setq buffer-undo-list t))
-    (let* ((process-connection-type nil)
-           (process (apply #'start-file-process "company-clang" buf
-                           company-clang-executable args)))
-      (set-process-sentinel
-       process
-       (lambda (proc status)
-         (unless (string-match-p "hangup\\|killed" status)
-           (funcall
-            callback
-            (let ((res (process-exit-status proc)))
-              (with-current-buffer buf
-                (unless (eq 0 res)
-                  (company-clang--handle-error res args))
-                ;; Still try to get any useful input.
-                (company-clang--parse-output prefix objc)))))))
-      (unless (company-clang--auto-save-p)
-        (send-region process (point-min) (point-max))
-        (send-string process "\n")
-        (process-send-eof process)))))
-
-(defsubst company-clang--build-location (pos)
-  (save-excursion
-    (goto-char pos)
-    (format "%s:%d:%d"
-            (if (company-clang--auto-save-p) buffer-file-name "-")
-            (line-number-at-pos)
-            (1+ (length
-                 (encode-coding-region
-                  (line-beginning-position)
-                  (point)
-                  'utf-8
-                  t))))))
-
-(defsubst company-clang--build-complete-args (pos)
-  (append '("-fsyntax-only" "-Xclang" "-code-completion-macros")
-          (unless (company-clang--auto-save-p)
-            (list "-x" (company-clang--lang-option)))
-          company-clang-arguments
-          (when (stringp company-clang--prefix)
-            (list "-include" (expand-file-name company-clang--prefix)))
-          (list "-Xclang" (format "-code-completion-at=%s"
-                                  (company-clang--build-location pos)))
-          (list (if (company-clang--auto-save-p) buffer-file-name "-"))))
-
-(defun company-clang--candidates (prefix callback)
-  (and (company-clang--auto-save-p)
-       (buffer-modified-p)
-       (basic-save-buffer))
-  (when (null company-clang--prefix)
-    (company-clang-set-prefix (or (funcall company-clang-prefix-guesser)
-                                  'none)))
-  (apply 'company-clang--start-process
-         prefix
-         callback
-         (company-clang--build-complete-args
-          (if (company-clang--check-version 4.0 9.0)
-              (point)
-            (- (point) (length prefix))))))
-
-(defun company-clang--prefix ()
-  (if company-clang-begin-after-member-access
-      (company-grab-symbol-cons "\\.\\|->\\|::" 2)
-    (company-grab-symbol)))
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defconst company-clang-required-version 1.1)
-
-(defvar company-clang--version nil)
-
-(defun company-clang--auto-save-p ()
-  (not
-   (company-clang--check-version 2.9 3.1)))
-
-(defun company-clang--check-version (min apple-min)
-  (pcase company-clang--version
-    (`(apple . ,ver) (>= ver apple-min))
-    (`(normal . ,ver) (>= ver min))
-    (_ (error "pcase-exhaustive is not in Emacs 24.3!"))))
-
-(defsubst company-clang-version ()
-  "Return the version of `company-clang-executable'."
-  (with-temp-buffer
-    (call-process company-clang-executable nil t nil "--version")
-    (goto-char (point-min))
-    (if (re-search-forward "\\(clang\\|Apple LLVM\\) version \\([0-9.]+\\)" nil t)
-        (cons
-         (if (equal (match-string-no-properties 1) "Apple LLVM")
-             'apple
-           'normal)
-         (string-to-number (match-string-no-properties 2)))
-      0)))
-
-(defun company-clang (command &optional arg &rest ignored)
-  "`company-mode' completion backend for Clang.
-Clang is a parser for C and ObjC.  Clang version 1.1 or newer is required.
-
-Additional command line arguments can be specified in
-`company-clang-arguments'.  Prefix files (-include ...) can be selected
-with `company-clang-set-prefix' or automatically through a custom
-`company-clang-prefix-guesser'.
-
-With Clang versions before 2.9, we have to save the buffer before
-performing completion.  With Clang 2.9 and later, buffer contents are
-passed via standard input."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-clang))
-    (init (when (memq major-mode company-clang-modes)
-            (unless company-clang-executable
-              (error "Company found no clang executable"))
-            (setq company-clang--version (company-clang-version))
-            (unless (company-clang--check-version
-                     company-clang-required-version
-                     company-clang-required-version)
-              (error "Company requires clang version %s"
-                     company-clang-required-version))))
-    (prefix (and (memq major-mode company-clang-modes)
-                 buffer-file-name
-                 company-clang-executable
-                 (not (company-in-string-or-comment))
-                 (or (company-clang--prefix) 'stop)))
-    (candidates (cons :async
-                      (lambda (cb) (company-clang--candidates arg cb))))
-    (meta       (company-clang--meta arg))
-    (annotation (company-clang--annotation arg))
-    (post-completion (let ((anno (company-clang--annotation arg)))
-                       (when (and company-clang-insert-arguments anno)
-                         (insert anno)
-                         (if (string-match "\\`:[^:]" anno)
-                             (company-template-objc-templatify anno)
-                           (company-template-c-like-templatify
-                            (concat arg anno))))))))
-
-(provide 'company-clang)
-;;; company-clang.el ends here
diff --git a/elpa/company-20181105.2312/company-clang.elc b/elpa/company-20181105.2312/company-clang.elc
deleted file mode 100644
index 5727110..0000000
--- a/elpa/company-20181105.2312/company-clang.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-cmake.el b/elpa/company-20181105.2312/company-cmake.el
deleted file mode 100644
index 1bfb20b..0000000
--- a/elpa/company-20181105.2312/company-cmake.el
+++ /dev/null
@@ -1,206 +0,0 @@
-;;; company-cmake.el --- company-mode completion backend for CMake
-
-;; Copyright (C) 2013-2014, 2017-2018  Free Software Foundation, Inc.
-
-;; Author: Chen Bin <chenbin DOT sh AT gmail>
-;; Version: 0.2
-
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; company-cmake offers completions for module names, variable names and
-;; commands used by CMake.  And their descriptions.
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(defgroup company-cmake nil
-  "Completion backend for CMake."
-  :group 'company)
-
-(defcustom company-cmake-executable
-  (executable-find "cmake")
-  "Location of cmake executable."
-  :type 'file)
-
-(defvar company-cmake-executable-arguments
-  '("--help-command-list"
-    "--help-module-list"
-    "--help-variable-list")
-  "The arguments we pass to cmake, separately.
-They affect which types of symbols we get completion candidates for.")
-
-(defvar company-cmake--completion-pattern
-  "^\\(%s[a-zA-Z0-9_<>]%s\\)$"
-  "Regexp to match the candidates.")
-
-(defvar company-cmake-modes '(cmake-mode)
-  "Major modes in which cmake may complete.")
-
-(defvar company-cmake--candidates-cache nil
-  "Cache for the raw candidates.")
-
-(defvar company-cmake--meta-command-cache nil
-  "Cache for command arguments to retrieve descriptions for the candidates.")
-
-(defun company-cmake--replace-tags (rlt)
-  (setq rlt (replace-regexp-in-string
-             "\\(.*?\\(IS_GNU\\)?\\)<LANG>\\(.*\\)"
-             (lambda (_match)
-               (mapconcat 'identity
-                          (if (match-beginning 2)
-                              '("\\1CXX\\3" "\\1C\\3" "\\1G77\\3")
-                            '("\\1CXX\\3" "\\1C\\3" "\\1Fortran\\3"))
-                          "\n"))
-             rlt t))
-  (setq rlt (replace-regexp-in-string
-             "\\(.*\\)<CONFIG>\\(.*\\)"
-             (mapconcat 'identity '("\\1DEBUG\\2" "\\1RELEASE\\2"
-                                    "\\1RELWITHDEBINFO\\2" "\\1MINSIZEREL\\2")
-                        "\n")
-             rlt))
-  rlt)
-
-(defun company-cmake--fill-candidates-cache (arg)
-  "Fill candidates cache if needed."
-  (let (rlt)
-    (unless company-cmake--candidates-cache
-      (setq company-cmake--candidates-cache (make-hash-table :test 'equal)))
-
-    ;; If hash is empty, fill it.
-    (unless (gethash arg company-cmake--candidates-cache)
-      (with-temp-buffer
-        (let ((res (call-process company-cmake-executable nil t nil arg)))
-          (unless (zerop res)
-            (message "cmake executable exited with error=%d" res)))
-        (setq rlt (buffer-string)))
-      (setq rlt (company-cmake--replace-tags rlt))
-      (puthash arg rlt company-cmake--candidates-cache))
-    ))
-
-(defun company-cmake--parse (prefix content cmd)
-  (let ((start 0)
-        (pattern (format company-cmake--completion-pattern
-                         (regexp-quote prefix)
-                         (if (zerop (length prefix)) "+" "*")))
-        (lines (split-string content "\n"))
-        match
-        rlt)
-    (dolist (line lines)
-      (when (string-match pattern line)
-        (let ((match (match-string 1 line)))
-          (when match
-            (puthash match cmd company-cmake--meta-command-cache)
-            (push match rlt)))))
-    rlt))
-
-(defun company-cmake--candidates (prefix)
-  (let (results
-        cmd-opts
-        str)
-
-    (unless company-cmake--meta-command-cache
-      (setq company-cmake--meta-command-cache (make-hash-table :test 'equal)))
-
-    (dolist (arg company-cmake-executable-arguments)
-      (company-cmake--fill-candidates-cache arg)
-      (setq cmd-opts (replace-regexp-in-string "-list$" "" arg) )
-
-      (setq str (gethash arg company-cmake--candidates-cache))
-      (when str
-        (setq results (nconc results
-                             (company-cmake--parse prefix str cmd-opts)))))
-    results))
-
-(defun company-cmake--unexpand-candidate (candidate)
-  (cond
-   ((string-match "^CMAKE_\\(C\\|CXX\\|Fortran\\)\\(_.*\\)$" candidate)
-    (setq candidate (concat "CMAKE_<LANG>" (match-string 2 candidate))))
-
-   ;; C flags
-   ((string-match "^\\(.*_\\)IS_GNU\\(C\\|CXX\\|G77\\)$" candidate)
-    (setq candidate (concat (match-string 1 candidate) "IS_GNU<LANG>")))
-
-   ;; C flags
-   ((string-match "^\\(.*_\\)OVERRIDE_\\(C\\|CXX\\|Fortran\\)$" candidate)
-    (setq candidate (concat (match-string 1 candidate) "OVERRIDE_<LANG>")))
-
-   ((string-match "^\\(.*\\)\\(_DEBUG\\|_RELEASE\\|_RELWITHDEBINFO\\|_MINSIZEREL\\)\\(.*\\)$" candidate)
-    (setq candidate (concat (match-string 1 candidate)
-                            "_<CONFIG>"
-                            (match-string 3 candidate)))))
-  candidate)
-
-(defun company-cmake--meta (candidate)
-  (let ((cmd-opts (gethash candidate company-cmake--meta-command-cache))
-        result)
-    (setq candidate (company-cmake--unexpand-candidate candidate))
-
-    ;; Don't cache the documentation of every candidate (command)
-    ;; Cache in this case will cost too much memory.
-    (with-temp-buffer
-      (call-process company-cmake-executable nil t nil cmd-opts candidate)
-      ;; Go to the third line, trim it and return the result.
-      ;; Tested with cmake 2.8.9.
-      (goto-char (point-min))
-      (forward-line 2)
-      (setq result (buffer-substring-no-properties (line-beginning-position)
-                                                   (line-end-position)))
-      (setq result (replace-regexp-in-string "^[ \t\n\r]+" "" result))
-      result)))
-
-(defun company-cmake--doc-buffer (candidate)
-  (let ((cmd-opts (gethash candidate company-cmake--meta-command-cache)))
-
-    (setq candidate (company-cmake--unexpand-candidate candidate))
-    (with-temp-buffer
-      (call-process company-cmake-executable nil t nil cmd-opts candidate)
-      ;; Go to the third line, trim it and return the doc buffer.
-      ;; Tested with cmake 2.8.9.
-      (goto-char (point-min))
-      (forward-line 2)
-      (company-doc-buffer
-       (buffer-substring-no-properties (line-beginning-position)
-                                       (point-max))))))
-
-(defun company-cmake-prefix-dollar-brace-p ()
-  "Test if the current symbol follows ${."
-  (save-excursion
-    (skip-syntax-backward "w_")
-    (and (eq (char-before (point)) ?\{)
-         (eq (char-before (1- (point))) ?$))))
-
-(defun company-cmake (command &optional arg &rest ignored)
-  "`company-mode' completion backend for CMake.
-CMake is a cross-platform, open-source make system."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-cmake))
-    (init (when (memq major-mode company-cmake-modes)
-            (unless company-cmake-executable
-              (error "Company found no cmake executable"))))
-    (prefix (and (memq major-mode company-cmake-modes)
-                 (or (not (company-in-string-or-comment))
-                     (company-cmake-prefix-dollar-brace-p))
-                 (company-grab-symbol)))
-    (candidates (company-cmake--candidates arg))
-    (meta (company-cmake--meta arg))
-    (doc-buffer (company-cmake--doc-buffer arg))
-    ))
-
-(provide 'company-cmake)
-;;; company-cmake.el ends here
diff --git a/elpa/company-20181105.2312/company-cmake.elc b/elpa/company-20181105.2312/company-cmake.elc
deleted file mode 100644
index ea21cd9..0000000
--- a/elpa/company-20181105.2312/company-cmake.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-css.el b/elpa/company-20181105.2312/company-css.el
deleted file mode 100644
index d3ece74..0000000
--- a/elpa/company-20181105.2312/company-css.el
+++ /dev/null
@@ -1,446 +0,0 @@
-;;; company-css.el --- company-mode completion backend for css-mode  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2009, 2011, 2014, 2018  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; In Emacs >= 26, company-capf is used instead.
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(declare-function web-mode-language-at-pos "web-mode" (&optional pos))
-
-(defconst company-css-property-alist
-  ;; see http://www.w3.org/TR/CSS21/propidx.html
-  '(("azimuth" angle "left-side" "far-left" "left" "center-left" "center"
-     "center-right" "right" "far-right" "right-side" "behind" "leftwards"
-     "rightwards")
-    ("background" background-color background-image background-repeat
-     background-attachment background-position
-     background-clip background-origin background-size)
-    ("background-attachment" "scroll" "fixed")
-    ("background-color" color "transparent")
-    ("background-image" uri "none")
-    ("background-position" percentage length "left" "center" "right" percentage
-     length "top" "center" "bottom" "left" "center" "right" "top" "center"
-     "bottom")
-    ("background-repeat" "repeat" "repeat-x" "repeat-y" "no-repeat")
-    ("border" border-width border-style border-color)
-    ("border-bottom" border)
-    ("border-bottom-color" border-color)
-    ("border-bottom-style" border-style)
-    ("border-bottom-width" border-width)
-    ("border-collapse" "collapse" "separate")
-    ("border-color" color "transparent")
-    ("border-left" border)
-    ("border-left-color" border-color)
-    ("border-left-style" border-style)
-    ("border-left-width" border-width)
-    ("border-right" border)
-    ("border-right-color" border-color)
-    ("border-right-style" border-style)
-    ("border-right-width" border-width)
-    ("border-spacing" length length)
-    ("border-style" border-style)
-    ("border-top" border)
-    ("border-top-color" border-color)
-    ("border-top-style" border-style)
-    ("border-top-width" border-width)
-    ("border-width" border-width)
-    ("bottom" length percentage "auto")
-    ("caption-side" "top" "bottom")
-    ("clear" "none" "left" "right" "both")
-    ("clip" shape "auto")
-    ("color" color)
-    ("content" "normal" "none" string uri counter "attr()" "open-quote"
-     "close-quote" "no-open-quote" "no-close-quote")
-    ("counter-increment" identifier integer "none")
-    ("counter-reset" identifier integer "none")
-    ("cue" cue-before cue-after)
-    ("cue-after" uri "none")
-    ("cue-before" uri "none")
-    ("cursor" uri "*" "auto" "crosshair" "default" "pointer" "move" "e-resize"
-     "ne-resize" "nw-resize" "n-resize" "se-resize" "sw-resize" "s-resize"
-     "w-resize" "text" "wait" "help" "progress")
-    ("direction" "ltr" "rtl")
-    ("display" "inline" "block" "list-item" "run-in" "inline-block" "table"
-     "inline-table" "table-row-group" "table-header-group" "table-footer-group"
-     "table-row" "table-column-group" "table-column" "table-cell"
-     "table-caption" "none")
-    ("elevation" angle "below" "level" "above" "higher" "lower")
-    ("empty-cells" "show" "hide")
-    ("float" "left" "right" "none")
-    ("font" font-style font-weight font-size "/" line-height
-     font-family "caption" "icon" "menu" "message-box" "small-caption"
-     "status-bar" "normal" "small-caps"
-     ;; CSS3
-     font-stretch)
-    ("font-family" family-name generic-family)
-    ("font-size" absolute-size relative-size length percentage)
-    ("font-style" "normal" "italic" "oblique")
-    ("font-weight" "normal" "bold" "bolder" "lighter" "100" "200" "300" "400"
-     "500" "600" "700" "800" "900")
-    ("height" length percentage "auto")
-    ("left" length percentage "auto")
-    ("letter-spacing" "normal" length)
-    ("line-height" "normal" number length percentage)
-    ("list-style" list-style-type list-style-position list-style-image)
-    ("list-style-image" uri "none")
-    ("list-style-position" "inside" "outside")
-    ("list-style-type" "disc" "circle" "square" "decimal" "decimal-leading-zero"
-     "lower-roman" "upper-roman" "lower-greek" "lower-latin" "upper-latin"
-     "armenian" "georgian" "lower-alpha" "upper-alpha" "none")
-    ("margin" margin-width)
-    ("margin-bottom" margin-width)
-    ("margin-left" margin-width)
-    ("margin-right" margin-width)
-    ("margin-top" margin-width)
-    ("max-height" length percentage "none")
-    ("max-width" length percentage "none")
-    ("min-height" length percentage)
-    ("min-width" length percentage)
-    ("orphans" integer)
-    ("outline" outline-color outline-style outline-width)
-    ("outline-color" color "invert")
-    ("outline-style" border-style)
-    ("outline-width" border-width)
-    ("overflow" "visible" "hidden" "scroll" "auto"
-     ;; CSS3:
-     "no-display" "no-content")
-    ("padding" padding-width)
-    ("padding-bottom" padding-width)
-    ("padding-left" padding-width)
-    ("padding-right" padding-width)
-    ("padding-top" padding-width)
-    ("page-break-after" "auto" "always" "avoid" "left" "right")
-    ("page-break-before" "auto" "always" "avoid" "left" "right")
-    ("page-break-inside" "avoid" "auto")
-    ("pause" time percentage)
-    ("pause-after" time percentage)
-    ("pause-before" time percentage)
-    ("pitch" frequency "x-low" "low" "medium" "high" "x-high")
-    ("pitch-range" number)
-    ("play-during" uri "mix" "repeat" "auto" "none")
-    ("position" "static" "relative" "absolute" "fixed")
-    ("quotes" string string "none")
-    ("richness" number)
-    ("right" length percentage "auto")
-    ("speak" "normal" "none" "spell-out")
-    ("speak-header" "once" "always")
-    ("speak-numeral" "digits" "continuous")
-    ("speak-punctuation" "code" "none")
-    ("speech-rate" number "x-slow" "slow" "medium" "fast" "x-fast" "faster"
-     "slower")
-    ("stress" number)
-    ("table-layout" "auto" "fixed")
-    ("text-align" "left" "right" "center" "justify")
-    ("text-indent" length percentage)
-    ("text-transform" "capitalize" "uppercase" "lowercase" "none")
-    ("top" length percentage "auto")
-    ("unicode-bidi" "normal" "embed" "bidi-override")
-    ("vertical-align" "baseline" "sub" "super" "top" "text-top" "middle"
-     "bottom" "text-bottom" percentage length)
-    ("visibility" "visible" "hidden" "collapse")
-    ("voice-family" specific-voice generic-voice "*" specific-voice
-     generic-voice)
-    ("volume" number percentage "silent" "x-soft" "soft" "medium" "loud"
-     "x-loud")
-    ("white-space" "normal" "pre" "nowrap" "pre-wrap" "pre-line")
-    ("widows" integer)
-    ("width" length percentage "auto")
-    ("word-spacing" "normal" length)
-    ("z-index" "auto" integer)
-    ;; CSS3
-    ("align-content" align-stretch "space-between" "space-around")
-    ("align-items" align-stretch "baseline")
-    ("align-self" align-items "auto")
-    ("animation" animation-name animation-duration animation-timing-function
-     animation-delay animation-iteration-count animation-direction
-     animation-fill-mode)
-    ("animation-delay" time)
-    ("animation-direction" "normal" "reverse" "alternate" "alternate-reverse")
-    ("animation-duration" time)
-    ("animation-fill-mode" "none" "forwards" "backwards" "both")
-    ("animation-iteration-count" integer "infinite")
-    ("animation-name" "none")
-    ("animation-play-state" "paused" "running")
-    ("animation-timing-function" transition-timing-function
-     "step-start" "step-end" "steps(,)")
-    ("backface-visibility" "visible" "hidden")
-    ("background-clip" background-origin)
-    ("background-origin" "border-box" "padding-box" "content-box")
-    ("background-size" length percentage "auto" "cover" "contain")
-    ("border-image" border-image-outset border-image-repeat border-image-source
-     border-image-slice border-image-width)
-    ("border-image-outset" length)
-    ("border-image-repeat" "stretch" "repeat" "round" "space")
-    ("border-image-source" uri "none")
-    ("border-image-slice" length)
-    ("border-image-width" length percentage)
-    ("border-radius" length)
-    ("border-top-left-radius" length)
-    ("border-top-right-radius" length)
-    ("border-bottom-left-radius" length)
-    ("border-bottom-right-radius" length)
-    ("box-decoration-break" "slice" "clone")
-    ("box-shadow" length color)
-    ("box-sizing" "content-box" "border-box")
-    ("break-after" "auto" "always" "avoid" "left" "right" "page" "column"
-     "avoid-page" "avoid-column")
-    ("break-before" break-after)
-    ("break-inside" "avoid" "auto")
-    ("columns" column-width column-count)
-    ("column-count" integer)
-    ("column-fill" "auto" "balance")
-    ("column-gap" length "normal")
-    ("column-rule" column-rule-width column-rule-style column-rule-color)
-    ("column-rule-color" color)
-    ("column-rule-style" border-style)
-    ("column-rule-width" border-width)
-    ("column-span" "all" "none")
-    ("column-width" length "auto")
-    ("filter" url "blur()" "brightness()" "contrast()" "drop-shadow()"
-     "grayscale()" "hue-rotate()" "invert()" "opacity()" "saturate()" "sepia()")
-    ("flex" flex-grow flex-shrink flex-basis)
-    ("flex-basis" percentage length "auto")
-    ("flex-direction" "row" "row-reverse" "column" "column-reverse")
-    ("flex-flow" flex-direction flex-wrap)
-    ("flex-grow" number)
-    ("flex-shrink" number)
-    ("flex-wrap" "nowrap" "wrap" "wrap-reverse")
-    ("font-feature-setting" normal string number)
-    ("font-kerning" "auto" "normal" "none")
-    ("font-language-override" "normal" string)
-    ("font-size-adjust" "none" number)
-    ("font-stretch" "normal" "ultra-condensed" "extra-condensed" "condensed"
-     "semi-condensed" "semi-expanded" "expanded" "extra-expanded" "ultra-expanded")
-    ("font-synthesis" "none" "weight" "style")
-    ("font-variant" font-variant-alternates font-variant-caps
-     font-variant-east-asian font-variant-ligatures font-variant-numeric
-     font-variant-position)
-    ("font-variant-alternates" "normal" "historical-forms" "stylistic()"
-     "styleset()" "character-variant()" "swash()" "ornaments()" "annotation()")
-    ("font-variant-caps" "normal" "small-caps" "all-small-caps" "petite-caps"
-     "all-petite-caps" "unicase" "titling-caps")
-    ("font-variant-east-asian" "jis78" "jis83" "jis90" "jis04" "simplified"
-     "traditional" "full-width" "proportional-width" "ruby")
-    ("font-variant-ligatures" "normal" "none" "common-ligatures"
-     "no-common-ligatures" "discretionary-ligatures" "no-discretionary-ligatures"
-     "historical-ligatures" "no-historical-ligatures" "contextual" "no-contextual")
-    ("font-variant-numeric" "normal" "ordinal" "slashed-zero"
-     "lining-nums" "oldstyle-nums" "proportional-nums" "tabular-nums"
-     "diagonal-fractions" "stacked-fractions")
-    ("font-variant-position" "normal" "sub" "super")
-    ("hyphens" "none" "manual" "auto")
-    ("justify-content" align-common "space-between" "space-around")
-    ("line-break" "auto" "loose" "normal" "strict")
-    ("marquee-direction" "forward" "reverse")
-    ("marquee-play-count" integer "infinite")
-    ("marquee-speed" "slow" "normal" "fast")
-    ("marquee-style" "scroll" "slide" "alternate")
-    ("opacity" number)
-    ("order" number)
-    ("outline-offset" length)
-    ("overflow-x" overflow)
-    ("overflow-y" overflow)
-    ("overflow-style" "auto" "marquee-line" "marquee-block")
-    ("overflow-wrap" "normal" "break-word")
-    ("perspective" "none" length)
-    ("perspective-origin" percentage length "left" "center" "right" "top" "bottom")
-    ("resize" "none" "both" "horizontal" "vertical")
-    ("tab-size" integer length)
-    ("text-align-last" "auto" "start" "end" "left" "right" "center" "justify")
-    ("text-decoration" text-decoration-color text-decoration-line text-decoration-style)
-    ("text-decoration-color" color)
-    ("text-decoration-line" "none" "underline" "overline" "line-through" "blink")
-    ("text-decoration-style" "solid" "double" "dotted" "dashed" "wavy")
-    ("text-overflow" "clip" "ellipsis")
-    ("text-shadow" color length)
-    ("text-underline-position" "auto" "under" "left" "right")
-    ("transform" "matrix(,,,,,)" "translate(,)" "translateX()" "translateY()"
-     "scale()" "scaleX()" "scaleY()" "rotate()" "skewX()" "skewY()" "none")
-    ("transform-origin" perspective-origin)
-    ("transform-style" "flat" "preserve-3d")
-    ("transition" transition-property transition-duration
-     transition-timing-function transition-delay)
-    ("transition-delay" time)
-    ("transition-duration" time)
-    ("transition-timing-function"
-     "ease" "linear" "ease-in" "ease-out" "ease-in-out" "cubic-bezier(,,,)")
-    ("transition-property" "none" "all" identifier)
-    ("word-wrap" overflow-wrap)
-    ("word-break" "normal" "break-all" "keep-all"))
-  "A list of CSS properties and their possible values.")
-
-(defconst company-css-value-classes
-  '((absolute-size "xx-small" "x-small" "small" "medium" "large" "x-large"
-                   "xx-large")
-    (align-common "flex-start" "flex-end" "center")
-    (align-stretch align-common "stretch")
-    (border-style "none" "hidden" "dotted" "dashed" "solid" "double" "groove"
-                  "ridge" "inset" "outset")
-    (border-width "thick" "medium" "thin")
-    (color "aqua" "black" "blue" "fuchsia" "gray" "green" "lime" "maroon" "navy"
-           "olive" "orange" "purple" "red" "silver" "teal" "white" "yellow")
-    (counter "counter(,)")
-    (family-name "Courier" "Helvetica" "Times")
-    (generic-family "serif" "sans-serif" "cursive" "fantasy" "monospace")
-    (generic-voice "male" "female" "child")
-    (margin-width "auto") ;; length percentage
-    (relative-size "larger" "smaller")
-    (shape "rect(,,,)")
-    (uri "url()"))
-  "A list of CSS property value classes and their contents.")
-;; missing, because not completable
-;; <angle><frequency><identifier><integer><length><number><padding-width>
-;; <percentage><specific-voice><string><time><uri>
-
-(defconst company-css-html-tags
-  '("a" "abbr" "acronym" "address" "applet" "area" "b" "base" "basefont" "bdo"
-    "big" "blockquote" "body" "br" "button" "caption" "center" "cite" "code"
-    "col" "colgroup" "dd" "del" "dfn" "dir" "div" "dl" "dt" "em" "fieldset"
-    "font" "form" "frame" "frameset" "h1" "h2" "h3" "h4" "h5" "h6" "head" "hr"
-    "html" "i" "iframe" "img" "input" "ins" "isindex" "kbd" "label" "legend"
-    "li" "link" "map" "menu" "meta" "noframes" "noscript" "object" "ol"
-    "optgroup" "option" "p" "param" "pre" "q" "s" "samp" "script" "select"
-    "small" "span" "strike" "strong" "style" "sub" "sup" "table" "tbody" "td"
-    "textarea" "tfoot" "th" "thead" "title" "tr" "tt" "u" "ul" "var"
-    ;; HTML5
-    "section" "article" "aside" "header" "footer" "nav" "figure" "figcaption"
-    "time" "mark" "main")
-  "A list of HTML tags for use in CSS completion.")
-
-(defconst company-css-pseudo-classes
-  '("active" "after" "before" "first" "first-child" "first-letter" "first-line"
-    "focus" "hover" "lang" "left" "link" "right" "visited")
-  "Identifiers for CSS pseudo-elements and pseudo-classes.")
-
-(defconst company-css-property-cache (make-hash-table :size 115 :test 'equal))
-
-(defun company-css-property-values (attribute)
-  "Access the `company-css-property-alist' cached and flattened."
-  (or (gethash attribute company-css-property-cache)
-      (let (results)
-        (dolist (value (cdr (assoc attribute company-css-property-alist)))
-          (if (symbolp value)
-              (dolist (child (or (cdr (assoc value company-css-value-classes))
-                                 (company-css-property-values
-                                  (symbol-name value))))
-                (push child results))
-            (push value results)))
-        (setq results (sort results 'string<))
-        (puthash attribute
-                 (if (fboundp 'delete-consecutive-dups)
-                     (delete-consecutive-dups results)
-                   (delete-dups results))
-                 company-css-property-cache)
-        results)))
-
-;;; bracket detection
-
-(defconst company-css-braces-syntax-table
-  (let ((table (make-syntax-table)))
-    (setf (aref table ?{) '(4 . 125))
-    (setf (aref table ?}) '(5 . 123))
-    table)
-  "A syntax table giving { and } paren syntax.")
-
-(defun company-css-inside-braces-p ()
-  "Return non-nil, if point is within matched { and }."
-  (ignore-errors
-    (with-syntax-table company-css-braces-syntax-table
-      (let ((parse-sexp-ignore-comments t))
-        (scan-lists (point) -1 1)))))
-
-;;; tags
-(defconst company-css-tag-regexp
-  (concat "\\(?:\\`\\|}\\)[[:space:]]*"
-          ;; multiple
-          "\\(?:"
-          ;; previous tags:
-          "\\(?:#\\|\\_<[[:alpha:]]\\)[[:alnum:]-#]*\\(?:\\[[^]]*\\]\\)?"
-          ;; space or selectors
-          "\\(?:[[:space:]]+\\|[[:space:]]*[+,>][[:space:]]*\\)"
-          "\\)*"
-          "\\(\\(?:#\\|\\_<[[:alpha:]]\\)\\(?:[[:alnum:]-#]*\\_>\\)?\\_>\\|\\)"
-          "\\=")
-  "A regular expression matching CSS tags.")
-
-;;; pseudo id
-(defconst company-css-pseudo-regexp
-  (concat "\\(?:\\`\\|}\\)[[:space:]]*"
-          ;; multiple
-          "\\(?:"
-          ;; previous tags:
-          "\\(?:#\\|\\_<[[:alpha:]]\\)[[:alnum:]-#]*\\(?:\\[[^]]*\\]\\)?"
-          ;; space or delimiters
-          "\\(?:[[:space:]]+\\|[[:space:]]*[+,>][[:space:]]*\\)"
-          "\\)*"
-          "\\(?:\\(?:\\#\\|\\_<[[:alpha:]]\\)[[:alnum:]-#]*\\):"
-          "\\([[:alpha:]-]+\\_>\\|\\)\\_>\\=")
-  "A regular expression matching CSS pseudo classes.")
-
-;;; properties
-
-(defun company-css-grab-property ()
-  "Return the CSS property before point, if any.
-Returns \"\" if no property found, but feasible at this position."
-  (when (company-css-inside-braces-p)
-    (company-grab-symbol)))
-
-;;; values
-(defconst company-css-property-value-regexp
-  "\\_<\\([[:alpha:]-]+\\):\\(?:[^{};]*[[:space:]]+\\)?\\([^{};]*\\_>\\|\\)\\="
-  "A regular expression matching CSS tags.")
-
-;;;###autoload
-(defun company-css (command &optional arg &rest ignored)
-  "`company-mode' completion backend for `css-mode'."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-css))
-    (prefix (and (or (derived-mode-p 'css-mode)
-                     (and (derived-mode-p 'web-mode)
-                          (string= (web-mode-language-at-pos) "css")))
-                 (or (company-grab company-css-tag-regexp 1)
-                     (company-grab company-css-pseudo-regexp 1)
-                     (company-grab company-css-property-value-regexp 2
-                                   (line-beginning-position))
-                     (company-css-grab-property))))
-    (candidates
-     (cond
-      ((company-grab company-css-tag-regexp 1)
-       (all-completions arg company-css-html-tags))
-      ((company-grab company-css-pseudo-regexp 1)
-       (all-completions arg company-css-pseudo-classes))
-      ((company-grab company-css-property-value-regexp 2
-                     (line-beginning-position))
-       (all-completions arg
-                        (company-css-property-values
-                         (company-grab company-css-property-value-regexp 1))))
-      ((company-css-grab-property)
-       (all-completions arg company-css-property-alist))))
-    (sorted t)))
-
-(provide 'company-css)
-;;; company-css.el ends here
diff --git a/elpa/company-20181105.2312/company-css.elc b/elpa/company-20181105.2312/company-css.elc
deleted file mode 100644
index 6bcb889..0000000
--- a/elpa/company-20181105.2312/company-css.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-dabbrev-code.el b/elpa/company-20181105.2312/company-dabbrev-code.el
deleted file mode 100644
index 37f287c..0000000
--- a/elpa/company-20181105.2312/company-dabbrev-code.el
+++ /dev/null
@@ -1,104 +0,0 @@
-;;; company-dabbrev-code.el --- dabbrev-like company-mode backend for code  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2009, 2011, 2014  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'company-dabbrev)
-(require 'cl-lib)
-
-(defgroup company-dabbrev-code nil
-  "dabbrev-like completion backend for code."
-  :group 'company)
-
-(defcustom company-dabbrev-code-modes
-  '(prog-mode
-    batch-file-mode csharp-mode css-mode erlang-mode haskell-mode jde-mode
-    lua-mode python-mode)
-  "Modes that use `company-dabbrev-code'.
-In all these modes (and their derivatives) `company-dabbrev-code' will
-complete only symbols, not text in comments or strings.  In other modes
-`company-dabbrev-code' will pass control to other backends
-\(e.g. `company-dabbrev'\).  Value t means complete in all modes."
-  :type '(choice (repeat :tag "Some modes" (symbol :tag "Major mode"))
-                 (const :tag "All modes" t)))
-
-(defcustom company-dabbrev-code-other-buffers t
-  "Determines whether `company-dabbrev-code' should search other buffers.
-If `all', search all other buffers, except the ignored ones.  If t, search
-buffers with the same major mode.  If `code', search all buffers with major
-modes in `company-dabbrev-code-modes', or derived from one of them.  See
-also `company-dabbrev-code-time-limit'."
-  :type '(choice (const :tag "Off" nil)
-                 (const :tag "Same major mode" t)
-                 (const :tag "Code major modes" code)
-                 (const :tag "All" all)))
-
-(defcustom company-dabbrev-code-time-limit .1
-  "Determines how long `company-dabbrev-code' should look for matches."
-  :type '(choice (const :tag "Off" nil)
-                 (number :tag "Seconds")))
-
-(defcustom company-dabbrev-code-everywhere nil
-  "Non-nil to offer completions in comments and strings."
-  :type 'boolean)
-
-(defcustom company-dabbrev-code-ignore-case nil
-  "Non-nil to ignore case when collecting completion candidates."
-  :type 'boolean)
-
-(defun company-dabbrev-code--make-regexp (prefix)
-  (concat "\\_<" (if (equal prefix "")
-                     "\\([a-zA-Z]\\|\\s_\\)"
-                   (regexp-quote prefix))
-          "\\(\\sw\\|\\s_\\)*\\_>"))
-
-;;;###autoload
-(defun company-dabbrev-code (command &optional arg &rest ignored)
-  "dabbrev-like `company-mode' backend for code.
-The backend looks for all symbols in the current buffer that aren't in
-comments or strings."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-dabbrev-code))
-    (prefix (and (or (eq t company-dabbrev-code-modes)
-                     (apply #'derived-mode-p company-dabbrev-code-modes))
-                 (or company-dabbrev-code-everywhere
-                     (not (company-in-string-or-comment)))
-                 (or (company-grab-symbol) 'stop)))
-    (candidates (let ((case-fold-search company-dabbrev-code-ignore-case))
-                  (company-dabbrev--search
-                   (company-dabbrev-code--make-regexp arg)
-                   company-dabbrev-code-time-limit
-                   (pcase company-dabbrev-code-other-buffers
-                     (`t (list major-mode))
-                     (`code company-dabbrev-code-modes)
-                     (`all `all))
-                   (not company-dabbrev-code-everywhere))))
-    (ignore-case company-dabbrev-code-ignore-case)
-    (duplicates t)))
-
-(provide 'company-dabbrev-code)
-;;; company-dabbrev-code.el ends here
diff --git a/elpa/company-20181105.2312/company-dabbrev-code.elc b/elpa/company-20181105.2312/company-dabbrev-code.elc
deleted file mode 100644
index 7617feb..0000000
--- a/elpa/company-20181105.2312/company-dabbrev-code.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-dabbrev.el b/elpa/company-20181105.2312/company-dabbrev.el
deleted file mode 100644
index 5d2f318..0000000
--- a/elpa/company-20181105.2312/company-dabbrev.el
+++ /dev/null
@@ -1,206 +0,0 @@
-;;; company-dabbrev.el --- dabbrev-like company-mode completion backend  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2009, 2011, 2014, 2015, 2016  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(defgroup company-dabbrev nil
-  "dabbrev-like completion backend."
-  :group 'company)
-
-(defcustom company-dabbrev-other-buffers 'all
-  "Determines whether `company-dabbrev' should search other buffers.
-If `all', search all other buffers, except the ignored ones.  If t, search
-buffers with the same major mode.  See also `company-dabbrev-time-limit'."
-  :type '(choice (const :tag "Off" nil)
-                 (const :tag "Same major mode" t)
-                 (const :tag "All" all)))
-
-(defcustom company-dabbrev-ignore-buffers "\\`[ *]"
-  "Regexp matching the names of buffers to ignore.
-Or a function that returns non-nil for such buffers."
-  :type '(choice (regexp :tag "Regexp")
-                 (function :tag "Predicate"))
-  :package-version '(company . "0.9.0"))
-
-(defcustom company-dabbrev-time-limit .1
-  "Determines how many seconds `company-dabbrev' should look for matches."
-  :type '(choice (const :tag "Off" nil)
-                 (number :tag "Seconds")))
-
-(defcustom company-dabbrev-char-regexp "\\sw"
-  "A regular expression matching the characters `company-dabbrev' looks for."
-  :type 'regexp)
-
-(defcustom company-dabbrev-ignore-case 'keep-prefix
-  "Non-nil to ignore case when collecting completion candidates.
-When it's `keep-prefix', the text before point will remain unchanged after
-candidate is inserted, even some of its characters have different case."
-  :type '(choice
-          (const :tag "Don't ignore case" nil)
-          (const :tag "Ignore case" t)
-          (const :tag "Keep case before point" keep-prefix)))
-
-(defcustom company-dabbrev-downcase 'case-replace
-  "Whether to downcase the returned candidates.
-
-The value of nil means keep them as-is.
-`case-replace' means use the value of `case-replace'.
-Any other value means downcase.
-
-If you set this value to nil, you may also want to set
-`company-dabbrev-ignore-case' to any value other than `keep-prefix'."
-  :type '(choice
-          (const :tag "Keep as-is" nil)
-          (const :tag "Downcase" t)
-          (const :tag "Use case-replace" case-replace)))
-
-(defcustom company-dabbrev-minimum-length 4
-  "The minimum length for the completion candidate to be included.
-This variable affects both `company-dabbrev' and `company-dabbrev-code'."
-  :type 'integer
-  :package-version '(company . "0.8.3"))
-
-(defcustom company-dabbrev-ignore-invisible nil
-  "Non-nil to skip invisible text."
-  :type 'boolean
-  :package-version '(company . "0.9.0"))
-
-(defmacro company-dabbrev--time-limit-while (test start limit freq &rest body)
-  (declare (indent 3) (debug t))
-  `(let ((company-time-limit-while-counter 0))
-     (catch 'done
-       (while ,test
-         ,@body
-         (and ,limit
-              (= (cl-incf company-time-limit-while-counter) ,freq)
-              (setq company-time-limit-while-counter 0)
-              (> (float-time (time-since ,start)) ,limit)
-              (throw 'done 'company-time-out))))))
-
-(defun company-dabbrev--make-regexp ()
-  (concat "\\(?:" company-dabbrev-char-regexp "\\)+"))
-
-(defun company-dabbrev--search-buffer (regexp pos symbols start limit
-                                       ignore-comments)
-  (save-excursion
-    (cl-labels ((maybe-collect-match
-                 ()
-                 (let ((match (match-string-no-properties 0)))
-                   (when (and (>= (length match) company-dabbrev-minimum-length)
-                              (not (and company-dabbrev-ignore-invisible
-                                        (invisible-p (match-beginning 0)))))
-                     (push match symbols)))))
-      (goto-char (if pos (1- pos) (point-min)))
-      ;; Search before pos.
-      (let ((tmp-end (point)))
-        (company-dabbrev--time-limit-while (and (not (input-pending-p))
-                                                (> tmp-end (point-min)))
-            start limit 1
-          (ignore-errors
-            (forward-char -10000))
-          (forward-line 0)
-          (save-excursion
-            ;; Before, we used backward search, but it matches non-greedily, and
-            ;; that forced us to use the "beginning/end of word" anchors in
-            ;; `company-dabbrev--make-regexp'.  It's also about 2x slower.
-            (while (and (not (input-pending-p))
-                        (re-search-forward regexp tmp-end t))
-              (if (and ignore-comments (save-match-data (company-in-string-or-comment)))
-                  (re-search-forward "\\s>\\|\\s!\\|\\s\"" tmp-end t)
-                (maybe-collect-match))))
-          (setq tmp-end (point))))
-      (goto-char (or pos (point-min)))
-      ;; Search after pos.
-      (company-dabbrev--time-limit-while (and (not (input-pending-p))
-                                              (re-search-forward regexp nil t))
-          start limit 25
-        (if (and ignore-comments (save-match-data (company-in-string-or-comment)))
-            (re-search-forward "\\s>\\|\\s!\\|\\s\"" nil t)
-          (maybe-collect-match)))
-      symbols)))
-
-(defun company-dabbrev--search (regexp &optional limit other-buffer-modes
-                                ignore-comments)
-  (let* ((start (current-time))
-         (symbols (company-dabbrev--search-buffer regexp (point) nil start limit
-                                                  ignore-comments)))
-    (when other-buffer-modes
-      (cl-dolist (buffer (delq (current-buffer) (buffer-list)))
-        (unless (if (stringp company-dabbrev-ignore-buffers)
-                    (string-match-p company-dabbrev-ignore-buffers
-                                    (buffer-name buffer))
-                  (funcall company-dabbrev-ignore-buffers buffer))
-          (with-current-buffer buffer
-            (when (or (eq other-buffer-modes 'all)
-                      (apply #'derived-mode-p other-buffer-modes))
-              (setq symbols
-                    (company-dabbrev--search-buffer regexp nil symbols start
-                                                    limit ignore-comments)))))
-        (and limit
-             (> (float-time (time-since start)) limit)
-             (cl-return))))
-    symbols))
-
-(defun company-dabbrev--prefix ()
-  ;; Not in the middle of a word.
-  (unless (looking-at company-dabbrev-char-regexp)
-    ;; Emacs can't do greedy backward-search.
-    (company-grab-line (format "\\(?:^\\| \\)[^ ]*?\\(\\(?:%s\\)*\\)"
-                               company-dabbrev-char-regexp)
-                       1)))
-
-(defun company-dabbrev--filter (prefix candidates)
-  (let ((completion-ignore-case company-dabbrev-ignore-case))
-    (all-completions prefix candidates)))
-
-;;;###autoload
-(defun company-dabbrev (command &optional arg &rest ignored)
-  "dabbrev-like `company-mode' completion backend."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-dabbrev))
-    (prefix (company-dabbrev--prefix))
-    (candidates
-     (let* ((case-fold-search company-dabbrev-ignore-case)
-            (words (company-dabbrev--search (company-dabbrev--make-regexp)
-                                            company-dabbrev-time-limit
-                                            (pcase company-dabbrev-other-buffers
-                                              (`t (list major-mode))
-                                              (`all `all))))
-            (downcase-p (if (eq company-dabbrev-downcase 'case-replace)
-                            case-replace
-                          company-dabbrev-downcase)))
-       (setq words (company-dabbrev--filter arg words))
-       (if downcase-p
-           (mapcar 'downcase words)
-         words)))
-    (ignore-case company-dabbrev-ignore-case)
-    (duplicates t)))
-
-(provide 'company-dabbrev)
-;;; company-dabbrev.el ends here
diff --git a/elpa/company-20181105.2312/company-dabbrev.elc b/elpa/company-20181105.2312/company-dabbrev.elc
deleted file mode 100644
index e5279c4..0000000
--- a/elpa/company-20181105.2312/company-dabbrev.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-eclim.el b/elpa/company-20181105.2312/company-eclim.el
deleted file mode 100644
index b37f756..0000000
--- a/elpa/company-20181105.2312/company-eclim.el
+++ /dev/null
@@ -1,186 +0,0 @@
-;;; company-eclim.el --- company-mode completion backend for Eclim
-
-;; Copyright (C) 2009, 2011, 2013, 2015  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; Using `emacs-eclim' together with (or instead of) this backend is
-;; recommended, as it allows you to use other Eclim features.
-;;
-;; The alternative backend provided by `emacs-eclim' uses `yasnippet'
-;; instead of `company-template' to expand function calls, and it supports
-;; some languages other than Java.
-
-;;; Code:
-
-(require 'company)
-(require 'company-template)
-(require 'cl-lib)
-
-(defgroup company-eclim nil
-  "Completion backend for Eclim."
-  :group 'company)
-
-(defun company-eclim-executable-find ()
-  (let (file)
-    (cl-dolist (eclipse-root '("/Applications/eclipse" "/usr/lib/eclipse"
-                            "/usr/local/lib/eclipse"))
-      (and (file-exists-p (setq file (expand-file-name "plugins" eclipse-root)))
-           (setq file (car (last (directory-files file t "^org.eclim_"))))
-           (file-exists-p (setq file (expand-file-name "bin/eclim" file)))
-           (cl-return file)))))
-
-(defcustom company-eclim-executable
-  (or (bound-and-true-p eclim-executable)
-      (executable-find "eclim")
-      (company-eclim-executable-find))
-  "Location of eclim executable."
-  :type 'file)
-
-(defcustom company-eclim-auto-save t
-  "Determines whether to save the buffer when retrieving completions.
-eclim can only complete correctly when the buffer has been saved."
-  :type '(choice (const :tag "Off" nil)
-                 (const :tag "On" t)))
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-eclim--project-dir 'unknown)
-
-(defvar-local company-eclim--project-name nil)
-
-(declare-function json-read "json")
-(defvar json-array-type)
-
-(defun company-eclim--call-process (&rest args)
-  (let ((coding-system-for-read 'utf-8)
-        res)
-    (require 'json)
-    (with-temp-buffer
-      (if (= 0 (setq res (apply 'call-process company-eclim-executable nil t nil
-                                "-command" args)))
-          (let ((json-array-type 'list))
-            (goto-char (point-min))
-            (unless (eobp)
-              (json-read)))
-        (message "Company-eclim command failed with error %d:\n%s" res
-                 (buffer-substring (point-min) (point-max)))
-        nil))))
-
-(defun company-eclim--project-list ()
-  (company-eclim--call-process "project_list"))
-
-(defun company-eclim--project-dir ()
-  (if (eq company-eclim--project-dir 'unknown)
-      (let ((dir (locate-dominating-file buffer-file-name ".project")))
-        (when dir
-          (setq company-eclim--project-dir
-                (directory-file-name
-                 (expand-file-name dir)))))
-    company-eclim--project-dir))
-
-(defun company-eclim--project-name ()
-  (or company-eclim--project-name
-      (let ((dir (company-eclim--project-dir)))
-        (when dir
-          (setq company-eclim--project-name
-                (cl-loop for project in (company-eclim--project-list)
-                         when (equal (cdr (assoc 'path project)) dir)
-                         return (cdr (assoc 'name project))))))))
-
-(defun company-eclim--candidates (prefix)
-  (interactive "d")
-  (let ((project-file (file-relative-name buffer-file-name
-                                          (company-eclim--project-dir)))
-        completions)
-    (when company-eclim-auto-save
-      (when (buffer-modified-p)
-        (basic-save-buffer))
-      ;; FIXME: Sometimes this isn't finished when we complete.
-      (company-eclim--call-process "java_src_update"
-                                   "-p" (company-eclim--project-name)
-                                   "-f" project-file))
-    (dolist (item (cdr (assoc 'completions
-                              (company-eclim--call-process
-                               "java_complete" "-p" (company-eclim--project-name)
-                               "-f" project-file
-                               "-o" (number-to-string
-                                     (company-eclim--search-point prefix))
-                               "-e" "utf-8"
-                               "-l" "standard"))))
-      (let* ((meta (cdr (assoc 'info item)))
-             (completion meta))
-        (when (string-match " ?[(:-]" completion)
-          (setq completion (substring completion 0 (match-beginning 0))))
-        (put-text-property 0 1 'meta meta completion)
-        (push completion completions)))
-    (let ((completion-ignore-case nil))
-      (all-completions prefix completions))))
-
-(defun company-eclim--search-point (prefix)
-  (if (or (cl-plusp (length prefix)) (eq (char-before) ?.))
-      (1- (point))
-    (point)))
-
-(defun company-eclim--meta (candidate)
-  (get-text-property 0 'meta candidate))
-
-(defun company-eclim--annotation (candidate)
-  (let ((meta (company-eclim--meta candidate)))
-    (when (string-match "\\(([^-]*\\) -" meta)
-      (substring meta (match-beginning 1) (match-end 1)))))
-
-(defun company-eclim--prefix ()
-  (let ((prefix (company-grab-symbol)))
-    (when prefix
-      ;; Completion candidates for annotations don't include '@'.
-      (when (eq ?@ (string-to-char prefix))
-        (setq prefix (substring prefix 1)))
-      prefix)))
-
-(defun company-eclim (command &optional arg &rest ignored)
-  "`company-mode' completion backend for Eclim.
-Eclim provides access to Eclipse Java IDE features for other editors.
-
-Eclim version 1.7.13 or newer (?) is required.
-
-Completions only work correctly when the buffer has been saved.
-`company-eclim-auto-save' determines whether to do this automatically."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-eclim))
-    (prefix (and (derived-mode-p 'java-mode 'jde-mode)
-                 buffer-file-name
-                 company-eclim-executable
-                 (company-eclim--project-name)
-                 (not (company-in-string-or-comment))
-                 (or (company-eclim--prefix) 'stop)))
-    (candidates (company-eclim--candidates arg))
-    (meta (company-eclim--meta arg))
-    ;; because "" doesn't return everything
-    (no-cache (equal arg ""))
-    (annotation (company-eclim--annotation arg))
-    (post-completion (let ((anno (company-eclim--annotation arg)))
-                       (when anno
-                         (insert anno)
-                         (company-template-c-like-templatify anno))))))
-
-(provide 'company-eclim)
-;;; company-eclim.el ends here
diff --git a/elpa/company-20181105.2312/company-eclim.elc b/elpa/company-20181105.2312/company-eclim.elc
deleted file mode 100644
index 3513f9c..0000000
--- a/elpa/company-20181105.2312/company-eclim.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-elisp.el b/elpa/company-20181105.2312/company-elisp.el
deleted file mode 100644
index db1653d..0000000
--- a/elpa/company-20181105.2312/company-elisp.el
+++ /dev/null
@@ -1,226 +0,0 @@
-;;; company-elisp.el --- company-mode completion backend for Emacs Lisp -*- lexical-binding: t -*-
-
-;; Copyright (C) 2009, 2011-2013, 2017  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-;; In newer versions of Emacs, company-capf is used instead.
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-(require 'help-mode)
-(require 'find-func)
-
-(defgroup company-elisp nil
-  "Completion backend for Emacs Lisp."
-  :group 'company)
-
-(defcustom company-elisp-detect-function-context t
-  "If enabled, offer Lisp functions only in appropriate contexts.
-Functions are offered for completion only after ' and \(."
-  :type '(choice (const :tag "Off" nil)
-                 (const :tag "On" t)))
-
-(defcustom company-elisp-show-locals-first t
-  "If enabled, locally bound variables and functions are displayed
-first in the candidates list."
-  :type '(choice (const :tag "Off" nil)
-                 (const :tag "On" t)))
-
-(defun company-elisp--prefix ()
-  (let ((prefix (company-grab-symbol)))
-    (if prefix
-        (when (if (company-in-string-or-comment)
-                  (= (char-before (- (point) (length prefix))) ?`)
-                (company-elisp--should-complete))
-          prefix)
-      'stop)))
-
-(defun company-elisp--predicate (symbol)
-  (or (boundp symbol)
-      (fboundp symbol)
-      (facep symbol)
-      (featurep symbol)))
-
-(defun company-elisp--fns-regexp (&rest names)
-  (concat "\\_<\\(?:cl-\\)?" (regexp-opt names) "\\*?\\_>"))
-
-(defvar company-elisp-parse-limit 30)
-(defvar company-elisp-parse-depth 100)
-
-(defvar company-elisp-defun-names '("defun" "defmacro" "defsubst"))
-
-(defvar company-elisp-var-binding-regexp
-  (apply #'company-elisp--fns-regexp "let" "lambda" "lexical-let"
-         company-elisp-defun-names)
-  "Regular expression matching head of a multiple variable bindings form.")
-
-(defvar company-elisp-var-binding-regexp-1
-  (company-elisp--fns-regexp "dolist" "dotimes")
-  "Regular expression matching head of a form with one variable binding.")
-
-(defvar company-elisp-fun-binding-regexp
-  (company-elisp--fns-regexp "flet" "labels")
-  "Regular expression matching head of a function bindings form.")
-
-(defvar company-elisp-defuns-regexp
-  (concat "([ \t\n]*"
-          (apply #'company-elisp--fns-regexp company-elisp-defun-names)))
-
-(defun company-elisp--should-complete ()
-  (let ((start (point))
-        (depth (car (syntax-ppss))))
-    (not
-     (when (> depth 0)
-       (save-excursion
-         (up-list (- depth))
-         (when (looking-at company-elisp-defuns-regexp)
-           (forward-char)
-           (forward-sexp 1)
-           (unless (= (point) start)
-             (condition-case nil
-                 (let ((args-end (scan-sexps (point) 2)))
-                   (or (null args-end)
-                       (> args-end start)))
-               (scan-error
-                t)))))))))
-
-(defun company-elisp--locals (prefix functions-p)
-  (let ((regexp (concat "[ \t\n]*\\(\\_<" (regexp-quote prefix)
-                        "\\(?:\\sw\\|\\s_\\)*\\_>\\)"))
-        (pos (point))
-        res)
-    (condition-case nil
-        (save-excursion
-          (dotimes (_ company-elisp-parse-depth)
-            (up-list -1)
-            (save-excursion
-              (when (eq (char-after) ?\()
-                (forward-char 1)
-                (when (ignore-errors
-                        (save-excursion (forward-list)
-                                        (<= (point) pos)))
-                  (skip-chars-forward " \t\n")
-                  (cond
-                   ((looking-at (if functions-p
-                                    company-elisp-fun-binding-regexp
-                                  company-elisp-var-binding-regexp))
-                    (down-list 1)
-                    (condition-case nil
-                        (dotimes (_ company-elisp-parse-limit)
-                          (save-excursion
-                            (when (looking-at "[ \t\n]*(")
-                              (down-list 1))
-                            (when (looking-at regexp)
-                              (cl-pushnew (match-string-no-properties 1) res)))
-                          (forward-sexp))
-                      (scan-error nil)))
-                   ((unless functions-p
-                      (looking-at company-elisp-var-binding-regexp-1))
-                    (down-list 1)
-                    (when (looking-at regexp)
-                      (cl-pushnew (match-string-no-properties 1) res)))))))))
-      (scan-error nil))
-    res))
-
-(defun company-elisp-candidates (prefix)
-  (let* ((predicate (company-elisp--candidates-predicate prefix))
-         (locals (company-elisp--locals prefix (eq predicate 'fboundp)))
-         (globals (company-elisp--globals prefix predicate))
-         (locals (cl-loop for local in locals
-                          when (not (member local globals))
-                          collect local)))
-    (if company-elisp-show-locals-first
-        (append (sort locals 'string<)
-                (sort globals 'string<))
-      (append locals globals))))
-
-(defun company-elisp--globals (prefix predicate)
-  (all-completions prefix obarray predicate))
-
-(defun company-elisp--candidates-predicate (prefix)
-  (let* ((completion-ignore-case nil)
-         (beg (- (point) (length prefix)))
-         (before (char-before beg)))
-    (if (and company-elisp-detect-function-context
-             (not (memq before '(?' ?`))))
-        (if (and (eq before ?\()
-                 (not
-                  (save-excursion
-                    (ignore-errors
-                      (goto-char (1- beg))
-                      (or (company-elisp--before-binding-varlist-p)
-                          (progn
-                            (up-list -1)
-                            (company-elisp--before-binding-varlist-p)))))))
-            'fboundp
-          'boundp)
-      'company-elisp--predicate)))
-
-(defun company-elisp--before-binding-varlist-p ()
-  (save-excursion
-    (and (prog1 (search-backward "(")
-           (forward-char 1))
-         (looking-at company-elisp-var-binding-regexp))))
-
-(defun company-elisp--doc (symbol)
-  (let* ((symbol (intern symbol))
-         (doc (if (fboundp symbol)
-                  (documentation symbol t)
-                (documentation-property symbol 'variable-documentation t))))
-    (and (stringp doc)
-         (string-match ".*$" doc)
-         (match-string 0 doc))))
-
-;;;###autoload
-(defun company-elisp (command &optional arg &rest ignored)
-  "`company-mode' completion backend for Emacs Lisp."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-elisp))
-    (prefix (and (derived-mode-p 'emacs-lisp-mode 'inferior-emacs-lisp-mode)
-                 (company-elisp--prefix)))
-    (candidates (company-elisp-candidates arg))
-    (sorted company-elisp-show-locals-first)
-    (meta (company-elisp--doc arg))
-    (doc-buffer (let ((symbol (intern arg)))
-                  (save-window-excursion
-                    (ignore-errors
-                      (cond
-                       ((fboundp symbol) (describe-function symbol))
-                       ((boundp symbol) (describe-variable symbol))
-                       ((featurep symbol) (describe-package symbol))
-                       ((facep symbol) (describe-face symbol))
-                       (t (signal 'user-error nil)))
-                      (help-buffer)))))
-    (location (let ((sym (intern arg)))
-                (cond
-                 ((fboundp sym) (find-definition-noselect sym nil))
-                 ((boundp sym) (find-definition-noselect sym 'defvar))
-                 ((featurep sym) (cons (find-file-noselect (find-library-name
-                                                            (symbol-name sym)))
-                                       0))
-                 ((facep sym) (find-definition-noselect sym 'defface)))))))
-
-(provide 'company-elisp)
-;;; company-elisp.el ends here
diff --git a/elpa/company-20181105.2312/company-elisp.elc b/elpa/company-20181105.2312/company-elisp.elc
deleted file mode 100644
index 6d2cca4..0000000
--- a/elpa/company-20181105.2312/company-elisp.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-etags.el b/elpa/company-20181105.2312/company-etags.el
deleted file mode 100644
index d0c27c9..0000000
--- a/elpa/company-20181105.2312/company-etags.el
+++ /dev/null
@@ -1,108 +0,0 @@
-;;; company-etags.el --- company-mode completion backend for etags
-
-;; Copyright (C) 2009-2011, 2014  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-(require 'etags)
-
-(defgroup company-etags nil
-  "Completion backend for etags."
-  :group 'company)
-
-(defcustom company-etags-use-main-table-list t
-  "Always search `tags-table-list' if set.
-If this is disabled, `company-etags' will try to find the one table for each
-buffer automatically."
-  :type '(choice (const :tag "off" nil)
-                 (const :tag "on" t)))
-
-(defcustom company-etags-ignore-case nil
-  "Non-nil to ignore case in completion candidates."
-  :type 'boolean
-  :package-version '(company . "0.7.3"))
-
-(defcustom company-etags-everywhere nil
-  "Non-nil to offer completions in comments and strings.
-Set it to t or to a list of major modes."
-  :type '(choice (const :tag "Off" nil)
-                 (const :tag "Any supported mode" t)
-                 (repeat :tag "Some major modes"
-                         (symbol :tag "Major mode")))
-  :package-version '(company . "0.9.0"))
-
-(defvar company-etags-modes '(prog-mode c-mode objc-mode c++-mode java-mode
-                              jde-mode pascal-mode perl-mode python-mode))
-
-(defvar-local company-etags-buffer-table 'unknown)
-
-(defun company-etags-find-table ()
-  (let ((file (expand-file-name
-               "TAGS"
-               (locate-dominating-file (or buffer-file-name
-                                           default-directory)
-                                       "TAGS"))))
-    (when (and file (file-regular-p file))
-      (list file))))
-
-(defun company-etags-buffer-table ()
-  (or (and company-etags-use-main-table-list tags-table-list)
-      (if (eq company-etags-buffer-table 'unknown)
-          (setq company-etags-buffer-table (company-etags-find-table))
-        company-etags-buffer-table)))
-
-(defun company-etags--candidates (prefix)
-  (let ((tags-table-list (company-etags-buffer-table))
-        (tags-file-name tags-file-name)
-        (completion-ignore-case company-etags-ignore-case))
-    (and (or tags-file-name tags-table-list)
-         (fboundp 'tags-completion-table)
-         (save-excursion
-           (visit-tags-table-buffer)
-           (all-completions prefix (tags-completion-table))))))
-
-;;;###autoload
-(defun company-etags (command &optional arg &rest ignored)
-  "`company-mode' completion backend for etags."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-etags))
-    (prefix (and (apply #'derived-mode-p company-etags-modes)
-                 (or (eq t company-etags-everywhere)
-                     (apply #'derived-mode-p company-etags-everywhere)
-                     (not (company-in-string-or-comment)))
-                 (company-etags-buffer-table)
-                 (or (company-grab-symbol) 'stop)))
-    (candidates (company-etags--candidates arg))
-    (location (let ((tags-table-list (company-etags-buffer-table)))
-                (when (fboundp 'find-tag-noselect)
-                  (save-excursion
-                    (let ((buffer (find-tag-noselect arg)))
-                      (cons buffer (with-current-buffer buffer (point))))))))
-    (ignore-case company-etags-ignore-case)))
-
-(provide 'company-etags)
-;;; company-etags.el ends here
diff --git a/elpa/company-20181105.2312/company-etags.elc b/elpa/company-20181105.2312/company-etags.elc
deleted file mode 100644
index 870da52..0000000
--- a/elpa/company-20181105.2312/company-etags.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-files.el b/elpa/company-20181105.2312/company-files.el
deleted file mode 100644
index c6102a1..0000000
--- a/elpa/company-20181105.2312/company-files.el
+++ /dev/null
@@ -1,148 +0,0 @@
-;;; company-files.el --- company-mode completion backend for file names
-
-;; Copyright (C) 2009-2011, 2014-2015  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(defgroup company-files nil
-  "Completion backend for file names."
-  :group 'company)
-
-(defcustom company-files-exclusions nil
-  "File name extensions and directory names to ignore.
-The values should use the same format as `completion-ignored-extensions'."
-  :type '(const string)
-  :package-version '(company . "0.9.1"))
-
-(defun company-files--directory-files (dir prefix)
-  ;; Don't use directory-files. It produces directories without trailing /.
-  (condition-case err
-      (let ((comp (sort (file-name-all-completions prefix dir)
-                        (lambda (s1 s2) (string-lessp (downcase s1) (downcase s2))))))
-        (when company-files-exclusions
-          (setq comp (company-files--exclusions-filtered comp)))
-        (if (equal prefix "")
-            (delete "../" (delete "./" comp))
-          comp))
-    (file-error nil)))
-
-(defun company-files--exclusions-filtered (completions)
-  (let* ((dir-exclusions (cl-delete-if-not #'company-files--trailing-slash-p
-                                           company-files-exclusions))
-         (file-exclusions (cl-set-difference company-files-exclusions
-                                             dir-exclusions)))
-    (cl-loop for c in completions
-             unless (if (company-files--trailing-slash-p c)
-                        (member c dir-exclusions)
-                      (cl-find-if (lambda (exclusion)
-                                    (string-suffix-p exclusion c))
-                                  file-exclusions))
-             collect c)))
-
-(defvar company-files--regexps
-  (let* ((root (if (eq system-type 'windows-nt)
-                   "[a-zA-Z]:/"
-                 "/"))
-         (begin (concat "\\(?:\\.\\{1,2\\}/\\|~/\\|" root "\\)")))
-    (list (concat "\"\\(" begin "[^\"\n]*\\)")
-          (concat "\'\\(" begin "[^\'\n]*\\)")
-          (concat "\\(?:[ \t=]\\|^\\)\\(" begin "[^ \t\n]*\\)"))))
-
-(defun company-files--grab-existing-name ()
-  ;; Grab the file name.
-  ;; When surrounded with quotes, it can include spaces.
-  (let (file dir)
-    (and (cl-dolist (regexp company-files--regexps)
-           (when (setq file (company-grab-line regexp 1))
-             (cl-return file)))
-         (company-files--connected-p file)
-         (setq dir (file-name-directory file))
-         (not (string-match "//" dir))
-         (file-exists-p dir)
-         file)))
-
-(defun company-files--connected-p (file)
-  (or (not (file-remote-p file))
-      (file-remote-p file nil t)))
-
-(defun company-files--trailing-slash-p (file)
-  ;; `file-directory-p' is very expensive on remotes. We are relying on
-  ;; `file-name-all-completions' returning directories with trailing / instead.
-  (let ((len (length file)))
-    (and (> len 0) (eq (aref file (1- len)) ?/))))
-
-(defvar company-files--completion-cache nil)
-
-(defun company-files--complete (prefix)
-  (let* ((dir (file-name-directory prefix))
-         (file (file-name-nondirectory prefix))
-         (key (list file
-                    (expand-file-name dir)
-                    (nth 5 (file-attributes dir))))
-         (completion-ignore-case read-file-name-completion-ignore-case))
-    (unless (company-file--keys-match-p key (car company-files--completion-cache))
-      (let* ((candidates (mapcar (lambda (f) (concat dir f))
-                                 (company-files--directory-files dir file)))
-             (directories (unless (file-remote-p dir)
-                            (cl-remove-if-not (lambda (f)
-                                                (and (company-files--trailing-slash-p f)
-                                                     (not (file-remote-p f))
-                                                     (company-files--connected-p f)))
-                                              candidates)))
-             (children (and directories
-                            (cl-mapcan (lambda (d)
-                                         (mapcar (lambda (c) (concat d c))
-                                                 (company-files--directory-files d "")))
-                                       directories))))
-        (setq company-files--completion-cache
-              (cons key (append candidates children)))))
-    (all-completions prefix
-                     (cdr company-files--completion-cache))))
-
-(defun company-file--keys-match-p (new old)
-  (and (equal (cdr old) (cdr new))
-       (string-prefix-p (car old) (car new))))
-
-;;;###autoload
-(defun company-files (command &optional arg &rest ignored)
-  "`company-mode' completion backend existing file names.
-Completions works for proper absolute and relative files paths.
-File paths with spaces are only supported inside strings."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-files))
-    (prefix (company-files--grab-existing-name))
-    (candidates (company-files--complete arg))
-    (location (cons (dired-noselect
-                     (file-name-directory (directory-file-name arg))) 1))
-    (post-completion (when (company-files--trailing-slash-p arg)
-                       (delete-char -1)))
-    (sorted t)
-    (no-cache t)))
-
-(provide 'company-files)
-;;; company-files.el ends here
diff --git a/elpa/company-20181105.2312/company-files.elc b/elpa/company-20181105.2312/company-files.elc
deleted file mode 100644
index f6e00fd..0000000
--- a/elpa/company-20181105.2312/company-files.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-gtags.el b/elpa/company-20181105.2312/company-gtags.el
deleted file mode 100644
index 2a85f23..0000000
--- a/elpa/company-20181105.2312/company-gtags.el
+++ /dev/null
@@ -1,117 +0,0 @@
-;;; company-gtags.el --- company-mode completion backend for GNU Global
-
-;; Copyright (C) 2009-2011, 2014  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'company-template)
-(require 'cl-lib)
-
-(defgroup company-gtags nil
-  "Completion backend for GNU Global."
-  :group 'company)
-
-(define-obsolete-variable-alias
-  'company-gtags-gnu-global-program-name
-  'company-gtags-executable "earlier")
-
-(defcustom company-gtags-executable
-  (executable-find "global")
-  "Location of GNU global executable."
-  :type 'string)
-
-(defcustom company-gtags-insert-arguments t
-  "When non-nil, insert function arguments as a template after completion."
-  :type 'boolean
-  :package-version '(company . "0.8.1"))
-
-(defvar-local company-gtags--tags-available-p 'unknown)
-
-(defcustom company-gtags-modes '(prog-mode jde-mode)
-  "Modes that use `company-gtags'.
-In all these modes (and their derivatives) `company-gtags' will perform
-completion."
-  :type '(repeat (symbol :tag "Major mode"))
-  :package-version '(company . "0.8.4"))
-
-(defun company-gtags--tags-available-p ()
-  (if (eq company-gtags--tags-available-p 'unknown)
-      (setq company-gtags--tags-available-p
-            (locate-dominating-file buffer-file-name "GTAGS"))
-    company-gtags--tags-available-p))
-
-(defun company-gtags--fetch-tags (prefix)
-  (with-temp-buffer
-    (let (tags)
-      (when (= 0 (process-file company-gtags-executable nil
-                               ;; "-T" goes through all the tag files listed in GTAGSLIBPATH
-                               (list (current-buffer) nil) nil "-xGqT" (concat "^" prefix)))
-        (goto-char (point-min))
-        (cl-loop while
-                 (re-search-forward (concat
-                                     "^"
-                                     "\\([^ ]*\\)" ;; completion
-                                     "[ \t]+\\([[:digit:]]+\\)" ;; linum
-                                     "[ \t]+\\([^ \t]+\\)" ;; file
-                                     "[ \t]+\\(.*\\)" ;; definition
-                                     "$"
-                                     ) nil t)
-                 collect
-                 (propertize (match-string 1)
-                             'meta (match-string 4)
-                             'location (cons (expand-file-name (match-string 3))
-                                             (string-to-number (match-string 2)))
-                             ))))))
-
-(defun company-gtags--annotation (arg)
-  (let ((meta (get-text-property 0 'meta arg)))
-    (when (string-match (concat arg "\\((.*)\\).*") meta)
-      (match-string 1 meta))))
-
-;;;###autoload
-(defun company-gtags (command &optional arg &rest ignored)
-  "`company-mode' completion backend for GNU Global."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-gtags))
-    (prefix (and company-gtags-executable
-                 buffer-file-name
-                 (apply #'derived-mode-p company-gtags-modes)
-                 (not (company-in-string-or-comment))
-                 (company-gtags--tags-available-p)
-                 (or (company-grab-symbol) 'stop)))
-    (candidates (company-gtags--fetch-tags arg))
-    (sorted t)
-    (duplicates t)
-    (annotation (company-gtags--annotation arg))
-    (meta (get-text-property 0 'meta arg))
-    (location (get-text-property 0 'location arg))
-    (post-completion (let ((anno (company-gtags--annotation arg)))
-                       (when (and company-gtags-insert-arguments anno)
-                         (insert anno)
-                         (company-template-c-like-templatify anno))))))
-
-(provide 'company-gtags)
-;;; company-gtags.el ends here
diff --git a/elpa/company-20181105.2312/company-gtags.elc b/elpa/company-20181105.2312/company-gtags.elc
deleted file mode 100644
index b150f2a..0000000
--- a/elpa/company-20181105.2312/company-gtags.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-ispell.el b/elpa/company-20181105.2312/company-ispell.el
deleted file mode 100644
index ed658f2..0000000
--- a/elpa/company-20181105.2312/company-ispell.el
+++ /dev/null
@@ -1,82 +0,0 @@
-;;; company-ispell.el --- company-mode completion backend using Ispell
-
-;; Copyright (C) 2009-2011, 2013-2016  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-(require 'ispell)
-
-(defgroup company-ispell nil
-  "Completion backend using Ispell."
-  :group 'company)
-
-(defcustom company-ispell-dictionary nil
-  "Dictionary to use for `company-ispell'.
-If nil, use `ispell-complete-word-dict'."
-  :type '(choice (const :tag "default (nil)" nil)
-                 (file :tag "dictionary" t)))
-
-(defvar company-ispell-available 'unknown)
-
-(defalias 'company-ispell--lookup-words
-  (if (fboundp 'ispell-lookup-words)
-      'ispell-lookup-words
-    'lookup-words))
-
-(defun company-ispell-available ()
-  (when (eq company-ispell-available 'unknown)
-    (condition-case err
-        (progn
-          (company-ispell--lookup-words "WHATEVER")
-          (setq company-ispell-available t))
-      (error
-       (message "Company-Ispell: %s" (error-message-string err))
-       (setq company-ispell-available nil))))
-  company-ispell-available)
-
-;;;###autoload
-(defun company-ispell (command &optional arg &rest ignored)
-  "`company-mode' completion backend using Ispell."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-ispell))
-    (prefix (when (company-ispell-available)
-              (company-grab-word)))
-    (candidates
-     (let ((words (company-ispell--lookup-words
-                   arg
-                   (or company-ispell-dictionary ispell-complete-word-dict)))
-           (completion-ignore-case t))
-       (if (string= arg "")
-           ;; Small optimization.
-           words
-         ;; Work around issue #284.
-         (all-completions arg words))))
-    (sorted t)
-    (ignore-case 'keep-prefix)))
-
-(provide 'company-ispell)
-;;; company-ispell.el ends here
diff --git a/elpa/company-20181105.2312/company-ispell.elc b/elpa/company-20181105.2312/company-ispell.elc
deleted file mode 100644
index e56266f..0000000
--- a/elpa/company-20181105.2312/company-ispell.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-keywords.el b/elpa/company-20181105.2312/company-keywords.el
deleted file mode 100644
index b6dfd1d..0000000
--- a/elpa/company-20181105.2312/company-keywords.el
+++ /dev/null
@@ -1,306 +0,0 @@
-;;; company-keywords.el --- A company backend for programming language keywords
-
-;; Copyright (C) 2009-2011, 2016  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(defun company-keywords-upper-lower (&rest lst)
-  ;; Upcase order is different for _.
-  (nconc (sort (mapcar 'upcase lst) 'string<) lst))
-
-(defvar company-keywords-alist
-  ;; Please contribute corrections or additions.
-  `((c++-mode
-     "alignas" "alignof" "asm" "auto" "bool" "break" "case" "catch" "char"
-     "char16_t" "char32_t" "class" "const" "const_cast" "constexpr" "continue"
-     "decltype" "default" "delete" "do" "double" "dynamic_cast" "else" "enum"
-     "explicit" "export" "extern" "false" "final" "float" "for" "friend"
-     "goto" "if" "inline" "int" "long" "mutable" "namespace" "new" "noexcept"
-     "nullptr" "operator" "override"
-     "private" "protected" "public" "register" "reinterpret_cast"
-     "return" "short" "signed" "sizeof" "static" "static_assert"
-     "static_cast" "struct" "switch" "template" "this" "thread_local"
-     "throw" "true" "try" "typedef" "typeid" "typename"
-     "union" "unsigned" "using" "virtual" "void" "volatile" "wchar_t" "while")
-    (c-mode
-     "auto" "break" "case" "char" "const" "continue" "default" "do"
-     "double" "else" "enum" "extern" "float" "for" "goto" "if" "int" "long"
-     "register" "return" "short" "signed" "sizeof" "static" "struct"
-     "switch" "typedef" "union" "unsigned" "void" "volatile" "while")
-    (csharp-mode
-     "abstract" "add" "alias" "as" "base" "bool" "break" "byte" "case"
-     "catch" "char" "checked" "class" "const" "continue" "decimal" "default"
-     "delegate" "do" "double" "else" "enum" "event" "explicit" "extern"
-     "false" "finally" "fixed" "float" "for" "foreach" "get" "global" "goto"
-     "if" "implicit" "in" "int" "interface" "internal" "is" "lock" "long"
-     "namespace" "new" "null" "object" "operator" "out" "override" "params"
-     "partial" "private" "protected" "public" "readonly" "ref" "remove"
-     "return" "sbyte" "sealed" "set" "short" "sizeof" "stackalloc" "static"
-     "string" "struct" "switch" "this" "throw" "true" "try" "typeof" "uint"
-     "ulong" "unchecked" "unsafe" "ushort" "using" "value" "var" "virtual"
-     "void" "volatile" "where" "while" "yield")
-    (d-mode
-     ;; from http://www.digitalmars.com/d/2.0/lex.html
-     "abstract" "alias" "align" "asm"
-     "assert" "auto" "body" "bool" "break" "byte" "case" "cast" "catch"
-     "cdouble" "cent" "cfloat" "char" "class" "const" "continue" "creal"
-     "dchar" "debug" "default" "delegate" "delete" "deprecated" "do"
-     "double" "else" "enum" "export" "extern" "false" "final" "finally"
-     "float" "for" "foreach" "foreach_reverse" "function" "goto" "idouble"
-     "if" "ifloat" "import" "in" "inout" "int" "interface" "invariant"
-     "ireal" "is" "lazy" "long" "macro" "mixin" "module" "new" "nothrow"
-     "null" "out" "override" "package" "pragma" "private" "protected"
-     "public" "pure" "real" "ref" "return" "scope" "short" "static" "struct"
-     "super" "switch" "synchronized" "template" "this" "throw" "true" "try"
-     "typedef" "typeid" "typeof" "ubyte" "ucent" "uint" "ulong" "union"
-     "unittest" "ushort" "version" "void" "volatile" "wchar" "while" "with")
-    (f90-mode .
-     ;; from f90.el
-     ;; ".AND." ".GE." ".GT." ".LT." ".LE." ".NE." ".OR." ".TRUE." ".FALSE."
-     ,(company-keywords-upper-lower
-      "abs" "abstract" "achar" "acos" "adjustl" "adjustr" "aimag" "aint"
-      "align" "all" "all_prefix" "all_scatter" "all_suffix" "allocatable"
-      "allocate" "allocated" "and" "anint" "any" "any_prefix" "any_scatter"
-      "any_suffix" "asin" "assign" "assignment" "associate" "associated"
-      "asynchronous" "atan" "atan2" "backspace" "bind" "bit_size" "block"
-      "btest" "c_alert" "c_associated" "c_backspace" "c_bool"
-      "c_carriage_return" "c_char" "c_double" "c_double_complex" "c_f_pointer"
-      "c_f_procpointer" "c_float" "c_float_complex" "c_form_feed" "c_funloc"
-      "c_funptr" "c_horizontal_tab" "c_int" "c_int16_t" "c_int32_t" "c_int64_t"
-      "c_int8_t" "c_int_fast16_t" "c_int_fast32_t" "c_int_fast64_t"
-      "c_int_fast8_t" "c_int_least16_t" "c_int_least32_t" "c_int_least64_t"
-      "c_int_least8_t" "c_intmax_t" "c_intptr_t" "c_loc" "c_long"
-      "c_long_double" "c_long_double_complex" "c_long_long" "c_new_line"
-      "c_null_char" "c_null_funptr" "c_null_ptr" "c_ptr" "c_short"
-      "c_signed_char" "c_size_t" "c_vertical_tab" "call" "case" "ceiling"
-      "char" "character" "character_storage_size" "class" "close" "cmplx"
-      "command_argument_count" "common" "complex" "conjg" "contains" "continue"
-      "copy_prefix" "copy_scatter" "copy_suffix" "cos" "cosh" "count"
-      "count_prefix" "count_scatter" "count_suffix" "cpu_time" "cshift"
-      "cycle" "cyclic" "data" "date_and_time" "dble" "deallocate" "deferred"
-      "digits" "dim" "dimension" "distribute" "do" "dot_product" "double"
-      "dprod" "dynamic" "elemental" "else" "elseif" "elsewhere" "end" "enddo"
-      "endfile" "endif" "entry" "enum" "enumerator" "eoshift" "epsilon" "eq"
-      "equivalence" "eqv" "error_unit" "exit" "exp" "exponent" "extends"
-      "extends_type_of" "external" "extrinsic" "false" "file_storage_size"
-      "final" "floor" "flush" "forall" "format" "fraction" "function" "ge"
-      "generic" "get_command" "get_command_argument" "get_environment_variable"
-      "goto" "grade_down" "grade_up" "gt" "hpf_alignment" "hpf_distribution"
-      "hpf_template" "huge" "iachar" "iall" "iall_prefix" "iall_scatter"
-      "iall_suffix" "iand" "iany" "iany_prefix" "iany_scatter" "iany_suffix"
-      "ibclr" "ibits" "ibset" "ichar" "ieee_arithmetic" "ieee_exceptions"
-      "ieee_features" "ieee_get_underflow_mode" "ieee_set_underflow_mode"
-      "ieee_support_underflow_control" "ieor" "if" "ilen" "implicit"
-      "import" "include" "independent" "index" "inherit" "input_unit"
-      "inquire" "int" "integer" "intent" "interface" "intrinsic" "ior"
-      "iostat_end" "iostat_eor" "iparity" "iparity_prefix" "iparity_scatter"
-      "iparity_suffix" "ishft" "ishftc" "iso_c_binding" "iso_fortran_env"
-      "kind" "lbound" "le" "leadz" "len" "len_trim" "lge" "lgt" "lle" "llt"
-      "log" "log10" "logical" "lt" "matmul" "max" "maxexponent" "maxloc"
-      "maxval" "maxval_prefix" "maxval_scatter" "maxval_suffix" "merge"
-      "min" "minexponent" "minloc" "minval" "minval_prefix" "minval_scatter"
-      "minval_suffix" "mod" "module" "modulo" "move_alloc" "mvbits" "namelist"
-      "ne" "nearest" "neqv" "new" "new_line" "nint" "non_intrinsic"
-      "non_overridable" "none" "nopass" "not" "null" "nullify"
-      "number_of_processors" "numeric_storage_size" "only" "onto" "open"
-      "operator" "optional" "or" "output_unit" "pack" "parameter" "parity"
-      "parity_prefix" "parity_scatter" "parity_suffix" "pass" "pause"
-      "pointer" "popcnt" "poppar" "precision" "present" "print" "private"
-      "procedure" "processors" "processors_shape" "product" "product_prefix"
-      "product_scatter" "product_suffix" "program" "protected" "public"
-      "pure" "radix" "random_number" "random_seed" "range" "read" "real"
-      "realign" "recursive" "redistribute" "repeat" "reshape" "result"
-      "return" "rewind" "rrspacing" "same_type_as" "save" "scale" "scan"
-      "select" "selected_char_kind" "selected_int_kind" "selected_real_kind"
-      "sequence" "set_exponent" "shape" "sign" "sin" "sinh" "size" "spacing"
-      "spread" "sqrt" "stop" "subroutine" "sum" "sum_prefix" "sum_scatter"
-      "sum_suffix" "system_clock" "tan" "tanh" "target" "template" "then"
-      "tiny" "transfer" "transpose" "trim" "true" "type" "ubound" "unpack"
-      "use" "value" "verify" "volatile" "wait" "where" "while" "with" "write"))
-    (go-mode
-     ;; 1. Keywords ref: https://golang.org/ref/spec#Keywords
-     ;; 2. Builtin functions and types ref: https://golang.org/pkg/builtin/
-     "append" "bool" "break" "byte" "cap" "case" "chan" "close" "complex" "complex128"
-     "complex64" "const" "continue" "copy" "default" "defer" "delete" "else" "error"
-     "fallthrough" "false" "float32" "float64" "for" "func" "go" "goto" "if" "imag"
-     "import" "int" "int16" "int32" "int64" "int8" "interface" "len" "make"
-     "map" "new" "nil" "package" "panic" "print" "println" "range" "real" "recover"
-     "return" "rune" "select" "string" "struct" "switch" "true" "type" "uint" "uint16"
-     "uint32" "uint64" "uint8" "uintptr" "var")
-    (java-mode
-     "abstract" "assert" "boolean" "break" "byte" "case" "catch" "char" "class"
-     "continue" "default" "do" "double" "else" "enum" "extends" "final"
-     "finally" "float" "for" "if" "implements" "import" "instanceof" "int"
-     "interface" "long" "native" "new" "package" "private" "protected" "public"
-     "return" "short" "static" "strictfp" "super" "switch" "synchronized"
-     "this" "throw" "throws" "transient" "try" "void" "volatile" "while")
-    (javascript-mode
-     ;; https://tc39.github.io/ecma262/ + async, static and undefined
-     "async" "await" "break" "case" "catch" "class" "const" "continue"
-     "debugger" "default" "delete" "do" "else" "enum" "export" "extends" "false"
-     "finally" "for" "function" "if" "import" "in" "instanceof" "let" "new"
-     "null" "return" "static" "super" "switch" "this" "throw" "true" "try"
-     "typeof" "undefined" "var" "void" "while" "with" "yield")
-    (kotlin-mode
-     "abstract" "annotation" "as" "break" "by" "catch" "class" "companion"
-     "const" "constructor" "continue" "data" "do" "else" "enum" "false" "final"
-     "finally" "for" "fun" "if" "import" "in" "init" "inner" "interface"
-     "internal" "is" "lateinit" "nested" "null" "object" "open" "out" "override"
-     "package" "private" "protected" "public" "return" "super" "this" "throw"
-     "trait" "true" "try" "typealias" "val" "var" "when" "while")
-    (objc-mode
-     "@catch" "@class" "@encode" "@end" "@finally" "@implementation"
-     "@interface" "@private" "@protected" "@protocol" "@public"
-     "@selector" "@synchronized" "@throw" "@try" "alloc" "autorelease"
-     "bycopy" "byref" "in" "inout" "oneway" "out" "release" "retain")
-    (perl-mode
-     ;; from cperl.el
-     "AUTOLOAD" "BEGIN" "CHECK" "CORE" "DESTROY" "END" "INIT" "__END__"
-     "__FILE__" "__LINE__" "abs" "accept" "alarm" "and" "atan2" "bind"
-     "binmode" "bless" "caller" "chdir" "chmod" "chomp" "chop" "chown" "chr"
-     "chroot" "close" "closedir" "cmp" "connect" "continue" "cos"
-     "crypt" "dbmclose" "dbmopen" "defined" "delete" "die" "do" "dump" "each"
-     "else" "elsif" "endgrent" "endhostent" "endnetent" "endprotoent"
-     "endpwent" "endservent" "eof" "eq" "eval" "exec" "exists" "exit" "exp"
-     "fcntl" "fileno" "flock" "for" "foreach" "fork" "format" "formline"
-     "ge" "getc" "getgrent" "getgrgid" "getgrnam" "gethostbyaddr"
-     "gethostbyname" "gethostent" "getlogin" "getnetbyaddr" "getnetbyname"
-     "getnetent" "getpeername" "getpgrp" "getppid" "getpriority"
-     "getprotobyname" "getprotobynumber" "getprotoent" "getpwent" "getpwnam"
-     "getpwuid" "getservbyname" "getservbyport" "getservent" "getsockname"
-     "getsockopt" "glob" "gmtime" "goto" "grep" "gt" "hex" "if" "index" "int"
-     "ioctl" "join" "keys" "kill" "last" "lc" "lcfirst" "le" "length"
-     "link" "listen" "local" "localtime" "lock" "log" "lstat" "lt" "map"
-     "mkdir" "msgctl" "msgget" "msgrcv" "msgsnd" "my" "ne" "next" "no"
-     "not" "oct" "open" "opendir" "or" "ord" "our" "pack" "package" "pipe"
-     "pop" "pos" "print" "printf" "push" "q" "qq" "quotemeta" "qw" "qx"
-     "rand" "read" "readdir" "readline" "readlink" "readpipe" "recv" "redo"
-     "ref" "rename" "require" "reset" "return" "reverse" "rewinddir" "rindex"
-     "rmdir" "scalar" "seek" "seekdir" "select" "semctl" "semget" "semop"
-     "send" "setgrent" "sethostent" "setnetent" "setpgrp" "setpriority"
-     "setprotoent" "setpwent" "setservent" "setsockopt" "shift" "shmctl"
-     "shmget" "shmread" "shmwrite" "shutdown" "sin" "sleep" "socket"
-     "socketpair" "sort" "splice" "split" "sprintf" "sqrt" "srand" "stat"
-     "study" "sub" "substr" "symlink" "syscall" "sysopen" "sysread" "system"
-     "syswrite" "tell" "telldir" "tie" "time" "times" "tr" "truncate" "uc"
-     "ucfirst" "umask" "undef" "unless" "unlink" "unpack" "unshift" "untie"
-     "until" "use" "utime" "values" "vec" "wait" "waitpid"
-     "wantarray" "warn" "while" "write" "x" "xor" "y")
-    (php-mode
-     "__CLASS__" "__DIR__" "__FILE__" "__FUNCTION__" "__LINE__" "__METHOD__"
-     "__NAMESPACE__" "_once" "abstract" "and" "array" "as" "break" "case"
-     "catch" "cfunction" "class" "clone" "const" "continue" "declare"
-     "default" "die" "do" "echo" "else" "elseif" "empty" "enddeclare"
-     "endfor" "endforeach" "endif" "endswitch" "endwhile" "eval" "exception"
-     "exit" "extends" "final" "for" "foreach" "function" "global"
-     "goto" "if" "implements" "include" "instanceof" "interface"
-     "isset" "list" "namespace" "new" "old_function" "or" "php_user_filter"
-     "print" "private" "protected" "public" "require" "require_once" "return"
-     "static" "switch" "this" "throw" "try" "unset" "use" "var" "while" "xor")
-    (python-mode
-     ;; https://docs.python.org/3/reference/lexical_analysis.html#keywords
-     "False" "None" "True" "and" "as" "assert" "break" "class" "continue" "def"
-     "del" "elif" "else" "except" "exec" "finally" "for" "from" "global" "if"
-     "import" "in" "is" "lambda" "nonlocal" "not" "or" "pass" "print" "raise"
-     "return" "try" "while" "with" "yield")
-    (ruby-mode
-     "BEGIN" "END" "alias" "and"  "begin" "break" "case" "class" "def" "defined?"
-     "do" "else" "elsif"  "end" "ensure" "false" "for" "if" "in" "module"
-     "next" "nil" "not" "or" "redo" "rescue" "retry" "return" "self" "super"
-     "then" "true" "undef" "unless" "until" "when" "while" "yield")
-    ;; From https://doc.rust-lang.org/grammar.html#keywords
-    ;; but excluding unused reserved words: https://www.reddit.com/r/rust/comments/34fq0k/is_there_a_good_list_of_rusts_keywords/cqucvnj
-    (rust-mode
-     "Self"
-     "as" "box" "break" "const" "continue" "crate" "else" "enum" "extern"
-     "false" "fn" "for" "if" "impl" "in" "let" "loop" "macro" "match" "mod"
-     "move" "mut" "pub" "ref" "return" "self" "static" "struct" "super"
-     "trait" "true" "type" "unsafe" "use" "where" "while")
-    (scala-mode
-     "abstract" "case" "catch" "class" "def" "do" "else" "extends" "false"
-     "final" "finally" "for" "forSome" "if" "implicit" "import" "lazy" "match"
-     "new" "null" "object" "override" "package" "private" "protected"
-     "return" "sealed" "super" "this" "throw" "trait" "true" "try" "type" "val"
-     "var" "while" "with" "yield")
-    (swift-mode
-     "Protocol" "Self" "Type" "and" "as" "assignment" "associatedtype"
-     "associativity" "available" "break" "case" "catch" "class" "column" "continue"
-     "convenience" "default" "defer" "deinit" "didSet" "do" "dynamic" "dynamicType"
-     "else" "elseif" "endif" "enum" "extension" "fallthrough" "false" "file"
-     "fileprivate" "final" "for" "func" "function" "get" "guard" "higherThan" "if"
-     "import" "in" "indirect" "infix" "init" "inout" "internal" "is" "lazy" "left"
-     "let" "line" "lowerThan" "mutating" "nil" "none" "nonmutating" "open"
-     "operator" "optional" "override" "postfix" "precedence" "precedencegroup"
-     "prefix" "private" "protocol" "public" "repeat" "required" "rethrows" "return"
-     "right" "selector" "self" "set" "static" "struct" "subscript" "super" "switch"
-     "throw" "throws" "true" "try" "typealias" "unowned" "var" "weak" "where"
-     "while" "willSet")
-    (julia-mode
-     "abstract" "break" "case" "catch" "const" "continue" "do" "else" "elseif"
-     "end" "eval" "export" "false" "finally" "for" "function" "global" "if"
-     "ifelse" "immutable" "import" "importall" "in" "let" "macro" "module"
-     "otherwise" "quote" "return" "switch" "throw" "true" "try" "type"
-     "typealias" "using" "while"
-     )
-    ;; From https://github.com/apache/thrift/blob/master/contrib/thrift.el
-    (thrift-mode
-     "binary" "bool" "byte" "const" "double" "enum" "exception" "extends"
-     "i16" "i32" "i64" "include" "list" "map" "oneway" "optional" "required"
-     "service" "set" "string" "struct" "throws" "typedef" "void"
-     )
-    ;; aliases
-    (js2-mode . javascript-mode)
-    (js2-jsx-mode . javascript-mode)
-    (espresso-mode . javascript-mode)
-    (js-mode . javascript-mode)
-    (js-jsx-mode . javascript-mode)
-    (rjsx-mode . javascript-mode)
-    (cperl-mode . perl-mode)
-    (jde-mode . java-mode)
-    (ess-julia-mode . julia-mode)
-    (enh-ruby-mode . ruby-mode))
-  "Alist mapping major-modes to sorted keywords for `company-keywords'.")
-
-;;;###autoload
-(defun company-keywords (command &optional arg &rest ignored)
-  "`company-mode' backend for programming language keywords."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-keywords))
-    (prefix (and (assq major-mode company-keywords-alist)
-                 (not (company-in-string-or-comment))
-                 (or (company-grab-symbol) 'stop)))
-    (candidates
-     (let ((completion-ignore-case nil)
-           (symbols (cdr (assq major-mode company-keywords-alist))))
-       (all-completions arg (if (consp symbols)
-                                symbols
-                              (cdr (assq symbols company-keywords-alist))))))
-    (sorted t)))
-
-(provide 'company-keywords)
-;;; company-keywords.el ends here
diff --git a/elpa/company-20181105.2312/company-keywords.elc b/elpa/company-20181105.2312/company-keywords.elc
deleted file mode 100644
index 296a78a..0000000
--- a/elpa/company-20181105.2312/company-keywords.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-nxml.el b/elpa/company-20181105.2312/company-nxml.el
deleted file mode 100644
index 36ff1ce..0000000
--- a/elpa/company-20181105.2312/company-nxml.el
+++ /dev/null
@@ -1,143 +0,0 @@
-;;; company-nxml.el --- company-mode completion backend for nxml-mode
-
-;; Copyright (C) 2009-2011, 2013, 2018  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-;; In Emacs >= 26, company-capf is used instead.
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(defvar rng-open-elements)
-(defvar rng-validate-mode)
-(defvar rng-in-attribute-regex)
-(defvar rng-in-attribute-value-regex)
-(declare-function rng-set-state-after "rng-nxml")
-(declare-function rng-match-possible-start-tag-names "rng-match")
-(declare-function rng-adjust-state-for-attribute "rng-nxml")
-(declare-function rng-match-possible-attribute-names "rng-match")
-(declare-function rng-adjust-state-for-attribute-value "rng-nxml")
-(declare-function rng-match-possible-value-strings "rng-match")
-
-(defconst company-nxml-token-regexp
-  "\\(?:[_[:alpha:]][-._[:alnum:]]*\\_>\\)")
-
-(defvar company-nxml-in-attribute-value-regexp
-  (replace-regexp-in-string "w" company-nxml-token-regexp
-   "<w\\(?::w\\)?\
-\\(?:[ \t\r\n]+w\\(?::w\\)?[ \t\r\n]*=\
-\[ \t\r\n]*\\(?:\"[^\"]*\"\\|'[^']*'\\)\\)*\
-\[ \t\r\n]+\\(w\\(:w\\)?\\)[ \t\r\n]*=[ \t\r\n]*\
-\\(\"\\([^\"]*\\>\\)\\|'\\([^']*\\>\\)\\)\\="
-   t t))
-
-(defvar company-nxml-in-tag-name-regexp
-  (replace-regexp-in-string "w" company-nxml-token-regexp
-                            "<\\(/?w\\(?::w?\\)?\\)?\\=" t t))
-
-(defun company-nxml-all-completions (prefix alist)
-  (let ((candidates (mapcar 'cdr alist))
-        (case-fold-search nil)
-        filtered)
-    (when (cdar rng-open-elements)
-      (push (concat "/" (cdar rng-open-elements)) candidates))
-    (setq candidates (sort (all-completions prefix candidates) 'string<))
-    (while candidates
-      (unless (equal (car candidates) (car filtered))
-        (push (car candidates) filtered))
-      (pop candidates))
-    (nreverse filtered)))
-
-(defmacro company-nxml-prepared (&rest body)
-  (declare (indent 0) (debug t))
-  `(let ((lt-pos (save-excursion (search-backward "<" nil t)))
-         xmltok-dtd)
-     (when (and lt-pos (= (rng-set-state-after lt-pos) lt-pos))
-       ,@body)))
-
-(defun company-nxml-tag (command &optional arg &rest ignored)
-  (cl-case command
-    (prefix (and (derived-mode-p 'nxml-mode)
-                 rng-validate-mode
-                 (company-grab company-nxml-in-tag-name-regexp 1)))
-    (candidates (company-nxml-prepared
-                 (company-nxml-all-completions
-                  arg (rng-match-possible-start-tag-names))))
-    (sorted t)))
-
-(defun company-nxml-attribute (command &optional arg &rest ignored)
-  (cl-case command
-    (prefix (and (derived-mode-p 'nxml-mode)
-                 rng-validate-mode
-                 (memq (char-after) '(?\  ?\t ?\n)) ;; outside word
-                 (company-grab rng-in-attribute-regex 1)))
-    (candidates (company-nxml-prepared
-                 (and (rng-adjust-state-for-attribute
-                       lt-pos (- (point) (length arg)))
-                      (company-nxml-all-completions
-                       arg (rng-match-possible-attribute-names)))))
-    (sorted t)))
-
-(defun company-nxml-attribute-value (command &optional arg &rest ignored)
-  (cl-case command
-    (prefix (and (derived-mode-p 'nxml-mode)
-                 rng-validate-mode
-                 (and (memq (char-after) '(?' ?\" ?\  ?\t ?\n)) ;; outside word
-                      (looking-back company-nxml-in-attribute-value-regexp nil)
-                      (or (match-string-no-properties 4)
-                          (match-string-no-properties 5)
-                          ""))))
-    (candidates (company-nxml-prepared
-                 (let (attr-start attr-end colon)
-                   (and (looking-back rng-in-attribute-value-regex lt-pos)
-                        (setq colon (match-beginning 2)
-                              attr-start (match-beginning 1)
-                              attr-end (match-end 1))
-                        (rng-adjust-state-for-attribute lt-pos attr-start)
-                        (rng-adjust-state-for-attribute-value
-                         attr-start colon attr-end)
-                        (all-completions
-                         arg (rng-match-possible-value-strings))))))))
-
-;;;###autoload
-(defun company-nxml (command &optional arg &rest ignored)
-  "`company-mode' completion backend for `nxml-mode'."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-nxml))
-    (prefix (or (company-nxml-tag 'prefix)
-                (company-nxml-attribute 'prefix)
-                (company-nxml-attribute-value 'prefix)))
-    (candidates (cond
-                 ((company-nxml-tag 'prefix)
-                  (company-nxml-tag 'candidates arg))
-                 ((company-nxml-attribute 'prefix)
-                  (company-nxml-attribute 'candidates arg))
-                 ((company-nxml-attribute-value 'prefix)
-                  (sort (company-nxml-attribute-value 'candidates arg)
-                        'string<))))
-    (sorted t)))
-
-(provide 'company-nxml)
-;;; company-nxml.el ends here
diff --git a/elpa/company-20181105.2312/company-nxml.elc b/elpa/company-20181105.2312/company-nxml.elc
deleted file mode 100644
index f4c0b44..0000000
--- a/elpa/company-20181105.2312/company-nxml.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-oddmuse.el b/elpa/company-20181105.2312/company-oddmuse.el
deleted file mode 100644
index 1b68950..0000000
--- a/elpa/company-20181105.2312/company-oddmuse.el
+++ /dev/null
@@ -1,57 +0,0 @@
-;;; company-oddmuse.el --- company-mode completion backend for oddmuse-mode
-
-;; Copyright (C) 2009-2011, 2014  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-(eval-when-compile (require 'yaoddmuse nil t))
-(eval-when-compile (require 'oddmuse nil t))
-
-(defvar company-oddmuse-link-regexp
-  "\\(\\<[A-Z][[:alnum:]]*\\>\\)\\|\\[\\[\\([[:alnum:]]+\\>\\|\\)")
-
-(defun company-oddmuse-get-page-table ()
-  (cl-case major-mode
-    (yaoddmuse-mode (with-no-warnings
-                      (yaoddmuse-get-pagename-table yaoddmuse-wikiname)))
-    (oddmuse-mode (with-no-warnings
-                    (oddmuse-make-completion-table oddmuse-wiki)))))
-
-;;;###autoload
-(defun company-oddmuse (command &optional arg &rest ignored)
-  "`company-mode' completion backend for `oddmuse-mode'."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-oddmuse))
-    (prefix (let ((case-fold-search nil))
-              (and (memq major-mode '(oddmuse-mode yaoddmuse-mode))
-                   (looking-back company-oddmuse-link-regexp (point-at-bol))
-                   (or (match-string 1)
-                       (match-string 2)))))
-    (candidates (all-completions arg (company-oddmuse-get-page-table)))))
-
-(provide 'company-oddmuse)
-;;; company-oddmuse.el ends here
diff --git a/elpa/company-20181105.2312/company-oddmuse.elc b/elpa/company-20181105.2312/company-oddmuse.elc
deleted file mode 100644
index 83cb17c..0000000
--- a/elpa/company-20181105.2312/company-oddmuse.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-pkg.el b/elpa/company-20181105.2312/company-pkg.el
deleted file mode 100644
index 28c6ff4..0000000
--- a/elpa/company-20181105.2312/company-pkg.el
+++ /dev/null
@@ -1,12 +0,0 @@
-(define-package "company" "20181105.2312" "Modular text completion framework"
-  '((emacs "24.3"))
-  :keywords
-  '("abbrev" "convenience" "matching")
-  :authors
-  '(("Nikolaj Schumacher"))
-  :maintainer
-  '("Dmitry Gutov" . "dgutov@yandex.ru")
-  :url "http://company-mode.github.io/")
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/company-20181105.2312/company-semantic.el b/elpa/company-20181105.2312/company-semantic.el
deleted file mode 100644
index 2f6fe2a..0000000
--- a/elpa/company-20181105.2312/company-semantic.el
+++ /dev/null
@@ -1,168 +0,0 @@
-;;; company-semantic.el --- company-mode completion backend using Semantic
-
-;; Copyright (C) 2009-2011, 2013-2016  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'company-template)
-(require 'cl-lib)
-
-(defvar semantic-idle-summary-function)
-(declare-function semantic-documentation-for-tag "semantic/doc" )
-(declare-function semantic-analyze-current-context "semantic/analyze")
-(declare-function semantic-analyze-possible-completions "semantic/complete")
-(declare-function semantic-analyze-find-tags-by-prefix "semantic/analyze/fcn")
-(declare-function semantic-tag-class "semantic/tag")
-(declare-function semantic-tag-name "semantic/tag")
-(declare-function semantic-tag-start "semantic/tag")
-(declare-function semantic-tag-buffer "semantic/tag")
-(declare-function semantic-active-p "semantic")
-(declare-function semantic-format-tag-prototype "semantic/format")
-
-(defgroup company-semantic nil
-  "Completion backend using Semantic."
-  :group 'company)
-
-(defcustom company-semantic-metadata-function 'company-semantic-summary-and-doc
-  "The function turning a semantic tag into doc information."
-  :type 'function)
-
-(defcustom company-semantic-begin-after-member-access t
-  "When non-nil, automatic completion will start whenever the current
-symbol is preceded by \".\", \"->\" or \"::\", ignoring
-`company-minimum-prefix-length'.
-
-If `company-begin-commands' is a list, it should include `c-electric-lt-gt'
-and `c-electric-colon', for automatic completion right after \">\" and
-\":\"."
-  :type 'boolean)
-
-(defcustom company-semantic-insert-arguments t
-  "When non-nil, insert function arguments as a template after completion."
-  :type 'boolean
-  :package-version '(company . "0.9.0"))
-
-(defvar company-semantic-modes '(c-mode c++-mode jde-mode java-mode))
-
-(defvar-local company-semantic--current-tags nil
-  "Tags for the current context.")
-
-(defun company-semantic-documentation-for-tag (tag)
-  (when (semantic-tag-buffer tag)
-    ;; When TAG's buffer is unknown, the function below raises an error.
-    (semantic-documentation-for-tag tag)))
-
-(defun company-semantic-doc-or-summary (tag)
-  (or (company-semantic-documentation-for-tag tag)
-      (and (require 'semantic-idle nil t)
-           (require 'semantic/idle nil t)
-           (funcall semantic-idle-summary-function tag nil t))))
-
-(defun company-semantic-summary-and-doc (tag)
-  (let ((doc (company-semantic-documentation-for-tag tag))
-        (summary (funcall semantic-idle-summary-function tag nil t)))
-    (and (stringp doc)
-         (string-match "\n*\\(.*\\)$" doc)
-         (setq doc (match-string 1 doc)))
-    (concat summary
-            (when doc
-                  (if (< (+ (length doc) (length summary) 4) (window-width))
-                      " -- "
-                    "\n"))
-            doc)))
-
-(defun company-semantic-doc-buffer (tag)
-  (let ((doc (company-semantic-documentation-for-tag tag)))
-    (when doc
-      (company-doc-buffer
-       (concat (funcall semantic-idle-summary-function tag nil t)
-               "\n"
-               doc)))))
-
-(defsubst company-semantic-completions (prefix)
-  (ignore-errors
-    (let ((completion-ignore-case nil)
-          (context (semantic-analyze-current-context)))
-      (setq company-semantic--current-tags
-            (semantic-analyze-possible-completions context 'no-unique))
-      (all-completions prefix company-semantic--current-tags))))
-
-(defun company-semantic-completions-raw (prefix)
-  (setq company-semantic--current-tags nil)
-  (dolist (tag (semantic-analyze-find-tags-by-prefix prefix))
-    (unless (eq (semantic-tag-class tag) 'include)
-      (push tag company-semantic--current-tags)))
-  (delete "" (mapcar 'semantic-tag-name company-semantic--current-tags)))
-
-(defun company-semantic-annotation (argument tags)
-  (let* ((tag (assq argument tags))
-         (kind (when tag (elt tag 1))))
-    (cl-case kind
-      (function (let* ((prototype (semantic-format-tag-prototype tag nil nil))
-                       (par-pos (string-match "(" prototype)))
-                  (when par-pos (substring prototype par-pos)))))))
-
-(defun company-semantic--prefix ()
-  (if company-semantic-begin-after-member-access
-      (company-grab-symbol-cons "\\.\\|->\\|::" 2)
-    (company-grab-symbol)))
-
-;;;###autoload
-(defun company-semantic (command &optional arg &rest ignored)
-  "`company-mode' completion backend using CEDET Semantic."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-semantic))
-    (prefix (and (featurep 'semantic)
-                 (semantic-active-p)
-                 (memq major-mode company-semantic-modes)
-                 (not (company-in-string-or-comment))
-                 (or (company-semantic--prefix) 'stop)))
-    (candidates (if (and (equal arg "")
-                         (not (looking-back "->\\|\\.\\|::" (- (point) 2))))
-                    (company-semantic-completions-raw arg)
-                  (company-semantic-completions arg)))
-    (meta (funcall company-semantic-metadata-function
-                   (assoc arg company-semantic--current-tags)))
-    (annotation (company-semantic-annotation arg
-                                             company-semantic--current-tags))
-    (doc-buffer (company-semantic-doc-buffer
-                 (assoc arg company-semantic--current-tags)))
-    ;; Because "" is an empty context and doesn't return local variables.
-    (no-cache (equal arg ""))
-    (duplicates t)
-    (location (let ((tag (assoc arg company-semantic--current-tags)))
-                (when (buffer-live-p (semantic-tag-buffer tag))
-                  (cons (semantic-tag-buffer tag)
-                        (semantic-tag-start tag)))))
-    (post-completion (let ((anno (company-semantic-annotation
-                                  arg company-semantic--current-tags)))
-                       (when (and company-semantic-insert-arguments anno)
-                         (insert anno)
-                         (company-template-c-like-templatify (concat arg anno)))
-                       ))))
-
-(provide 'company-semantic)
-;;; company-semantic.el ends here
diff --git a/elpa/company-20181105.2312/company-semantic.elc b/elpa/company-20181105.2312/company-semantic.elc
deleted file mode 100644
index f63f6eb..0000000
--- a/elpa/company-20181105.2312/company-semantic.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-template.el b/elpa/company-20181105.2312/company-template.el
deleted file mode 100644
index 930e638..0000000
--- a/elpa/company-20181105.2312/company-template.el
+++ /dev/null
@@ -1,260 +0,0 @@
-;;; company-template.el --- utility library for template expansion
-
-;; Copyright (C) 2009, 2010, 2014-2017 Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Code:
-
-(require 'cl-lib)
-
-(defface company-template-field
-  '((((background dark)) (:background "yellow" :foreground "black"))
-    (((background light)) (:background "orange" :foreground "black")))
-  "Face used for editable text in template fields."
-  :group 'company)
-
-(defvar company-template-nav-map
-  (let ((keymap (make-sparse-keymap)))
-    (define-key keymap [tab] 'company-template-forward-field)
-    (define-key keymap (kbd "TAB") 'company-template-forward-field)
-    keymap))
-
-(defvar company-template-field-map
-  (let ((keymap (make-sparse-keymap)))
-    (set-keymap-parent keymap company-template-nav-map)
-    (define-key keymap (kbd "C-d") 'company-template-clear-field)
-    keymap))
-
-(defvar-local company-template--buffer-templates nil)
-
-;; interactive ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun company-template-templates-at (pos)
-  (let (os)
-    (dolist (o (overlays-at pos))
-      ;; FIXME: Always return the whole list of templates?
-      ;; We remove templates not at point after every command.
-      (when (memq o company-template--buffer-templates)
-        (push o os)))
-    os))
-
-(defun company-template-move-to-first (templ)
-  (interactive)
-  (goto-char (overlay-start templ))
-  (company-template-forward-field))
-
-(defun company-template-forward-field ()
-  (interactive)
-  (let ((start (point))
-        (next-field-start (company-template-find-next-field)))
-    (push-mark)
-    (goto-char next-field-start)
-    (company-template-remove-field (company-template-field-at start))))
-
-(defun company-template-clear-field ()
-  "Clear the field at point."
-  (interactive)
-  (let ((ovl (company-template-field-at (point))))
-    (when ovl
-      (company-template-remove-field ovl t)
-      (let ((after-clear-fn
-             (overlay-get ovl 'company-template-after-clear)))
-        (when (functionp after-clear-fn)
-          (funcall after-clear-fn))))))
-
-(defun company-template--after-clear-c-like-field ()
-  "Function that can be called after deleting a field of a c-like template.
-For c-like templates it is set as `after-post-fn' property on fields in
-`company-template-add-field'.  If there is a next field, delete everything
-from point to it.  If there is no field after point, remove preceding comma
-if present."
-  (let* ((pos (point))
-         (next-field-start (company-template-find-next-field))
-         (last-field-p (not (company-template-field-at next-field-start))))
-    (cond ((and (not last-field-p)
-                (< pos next-field-start)
-                (string-match "^[ ]*,+[ ]*$" (buffer-substring-no-properties
-                                              pos next-field-start)))
-           (delete-region pos next-field-start))
-          ((and last-field-p
-                (looking-back ",+[ ]*" (line-beginning-position)))
-           (delete-region (match-beginning 0) pos)))))
-
-(defun company-template-find-next-field ()
-  (let* ((start (point))
-         (templates (company-template-templates-at start))
-         (minimum (apply 'max (mapcar 'overlay-end templates)))
-         (fields (cl-loop for templ in templates
-                          append (overlay-get templ 'company-template-fields))))
-    (dolist (pos (mapcar 'overlay-start fields) minimum)
-      (and pos
-           (> pos start)
-           (< pos minimum)
-           (setq minimum pos)))))
-
-(defun company-template-field-at (&optional point)
-  (cl-loop for ovl in (overlays-at (or point (point)))
-           when (overlay-get ovl 'company-template-parent)
-           return ovl))
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun company-template-declare-template (beg end)
-  (let ((ov (make-overlay beg end)))
-    ;; (overlay-put ov 'face 'highlight)
-    (overlay-put ov 'keymap company-template-nav-map)
-    (overlay-put ov 'priority 101)
-    (overlay-put ov 'evaporate t)
-    (push ov company-template--buffer-templates)
-    (add-hook 'post-command-hook 'company-template-post-command nil t)
-    ov))
-
-(defun company-template-remove-template (templ)
-  (mapc 'company-template-remove-field
-        (overlay-get templ 'company-template-fields))
-  (setq company-template--buffer-templates
-        (delq templ company-template--buffer-templates))
-  (delete-overlay templ))
-
-(defun company-template-add-field (templ beg end &optional display after-clear-fn)
-  "Add new field to template TEMPL spanning from BEG to END.
-When DISPLAY is non-nil, set the respective property on the overlay.
-Leave point at the end of the field.
-AFTER-CLEAR-FN is a function that can be used to apply custom behavior
-after deleting a field in `company-template-remove-field'."
-  (cl-assert templ)
-  (when (> end (overlay-end templ))
-    (move-overlay templ (overlay-start templ) end))
-  (let ((ov (make-overlay beg end))
-        (siblings (overlay-get templ 'company-template-fields)))
-    ;; (overlay-put ov 'evaporate t)
-    (overlay-put ov 'intangible t)
-    (overlay-put ov 'face 'company-template-field)
-    (when display
-      (overlay-put ov 'display display))
-    (overlay-put ov 'company-template-parent templ)
-    (overlay-put ov 'insert-in-front-hooks '(company-template-insert-hook))
-    (when after-clear-fn
-      (overlay-put ov 'company-template-after-clear after-clear-fn))
-    (overlay-put ov 'keymap company-template-field-map)
-    (overlay-put ov 'priority 101)
-    (push ov siblings)
-    (overlay-put templ 'company-template-fields siblings)))
-
-(defun company-template-remove-field (ovl &optional clear)
-  (when (overlayp ovl)
-    (when (overlay-buffer ovl)
-      (when clear
-        (delete-region (overlay-start ovl) (overlay-end ovl)))
-      (delete-overlay ovl))
-    (let* ((templ (overlay-get ovl 'company-template-parent))
-           (siblings (overlay-get templ 'company-template-fields)))
-      (setq siblings (delq ovl siblings))
-      (overlay-put templ 'company-template-fields siblings))))
-
-(defun company-template-clean-up (&optional pos)
-  "Clean up all templates that don't contain POS."
-  (let ((local-ovs (overlays-at (or pos (point)))))
-    (dolist (templ company-template--buffer-templates)
-      (unless (memq templ local-ovs)
-        (company-template-remove-template templ)))))
-
-;; hooks ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun company-template-insert-hook (ovl after-p &rest _ignore)
-  "Called when a snippet input prompt is modified."
-  (unless after-p
-    (company-template-remove-field ovl t)))
-
-(defun company-template-post-command ()
-  (company-template-clean-up)
-  (unless company-template--buffer-templates
-    (remove-hook 'post-command-hook 'company-template-post-command t)))
-
-;; common ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun company-template-c-like-templatify (call)
-  (let* ((end (point-marker))
-         (beg (- (point) (length call)))
-         (templ (company-template-declare-template beg end))
-         paren-open paren-close)
-    (with-syntax-table (make-syntax-table (syntax-table))
-      (modify-syntax-entry ?< "(")
-      (modify-syntax-entry ?> ")")
-      (when (search-backward ")" beg t)
-        (setq paren-close (point-marker))
-        (forward-char 1)
-        (delete-region (point) end)
-        (backward-sexp)
-        (forward-char 1)
-        (setq paren-open (point-marker)))
-      (when (search-backward ">" beg t)
-        (let ((angle-close (point-marker)))
-          (forward-char 1)
-          (backward-sexp)
-          (forward-char)
-          (company-template--c-like-args templ angle-close)))
-      (when (looking-back "\\((\\*)\\)(" (line-beginning-position))
-        (delete-region (match-beginning 1) (match-end 1)))
-      (when paren-open
-        (goto-char paren-open)
-        (company-template--c-like-args templ paren-close)))
-    (if (overlay-get templ 'company-template-fields)
-        (company-template-move-to-first templ)
-      (company-template-remove-template templ)
-      (goto-char end))))
-
-(defun company-template--c-like-args (templ end)
-  (let ((last-pos (point)))
-    (while (re-search-forward "\\([^,]+\\),?" end 'move)
-      (when (zerop (car (parse-partial-sexp last-pos (point))))
-        (company-template-add-field templ last-pos (match-end 1) nil
-                                    #'company-template--after-clear-c-like-field)
-        (skip-chars-forward " ")
-        (setq last-pos (point))))))
-
-;; objc ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun company-template-objc-templatify (selector)
-  (let* ((end (point-marker))
-         (beg (- (point) (length selector) 1))
-         (templ (company-template-declare-template beg end))
-         (cnt 0))
-    (save-excursion
-      (goto-char beg)
-      (catch 'stop
-        (while (search-forward ":" end t)
-          (if (looking-at "\\(([^)]*)\\) ?")
-              (company-template-add-field templ (point) (match-end 1))
-            ;; Not sure which conditions this case manifests under, but
-            ;; apparently it did before, when I wrote the first test for this
-            ;; function.  FIXME: Revisit it.
-            (company-template-add-field templ (point)
-                                        (progn
-                                          (insert (format "arg%d" cnt))
-                                          (point)))
-            (when (< (point) end)
-              (insert " "))
-            (cl-incf cnt))
-          (when (>= (point) end)
-            (throw 'stop t)))))
-    (company-template-move-to-first templ)))
-
-(provide 'company-template)
-;;; company-template.el ends here
diff --git a/elpa/company-20181105.2312/company-template.elc b/elpa/company-20181105.2312/company-template.elc
deleted file mode 100644
index 745b3e5..0000000
--- a/elpa/company-20181105.2312/company-template.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-tempo.el b/elpa/company-20181105.2312/company-tempo.el
deleted file mode 100644
index cba42c3..0000000
--- a/elpa/company-20181105.2312/company-tempo.el
+++ /dev/null
@@ -1,71 +0,0 @@
-;;; company-tempo.el --- company-mode completion backend for tempo
-
-;; Copyright (C) 2009-2011, 2015  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-(require 'tempo)
-
-(defgroup company-tempo nil
-  "Tempo completion backend."
-  :group 'company)
-
-(defcustom company-tempo-expand nil
-  "Whether to expand a tempo tag after completion."
-  :type '(choice (const :tag "Off" nil)
-                 (const :tag "On" t)))
-
-(defsubst company-tempo-lookup (match)
-  (cdr (assoc match (tempo-build-collection))))
-
-(defun company-tempo-insert (match)
-  "Replace MATCH with the expanded tempo template."
-  (search-backward match)
-  (goto-char (match-beginning 0))
-  (replace-match "")
-  (call-interactively (company-tempo-lookup match)))
-
-(defsubst company-tempo-meta (match)
-  (let ((templ (company-tempo-lookup match))
-        doc)
-    (and templ
-         (setq doc (documentation templ t))
-         (car (split-string doc "\n" t)))))
-
-;;;###autoload
-(defun company-tempo (command &optional arg &rest ignored)
-  "`company-mode' completion backend for tempo."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-tempo))
-    (prefix (or (car (tempo-find-match-string tempo-match-finder)) ""))
-    (candidates (all-completions arg (tempo-build-collection)))
-    (meta (company-tempo-meta arg))
-    (post-completion (when company-tempo-expand (company-tempo-insert arg)))
-    (sorted t)))
-
-(provide 'company-tempo)
-;;; company-tempo.el ends here
diff --git a/elpa/company-20181105.2312/company-tempo.elc b/elpa/company-20181105.2312/company-tempo.elc
deleted file mode 100644
index f22857e..0000000
--- a/elpa/company-20181105.2312/company-tempo.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-tng.el b/elpa/company-20181105.2312/company-tng.el
deleted file mode 100644
index a1d7173..0000000
--- a/elpa/company-20181105.2312/company-tng.el
+++ /dev/null
@@ -1,174 +0,0 @@
-;;; company-tng.el --- company-mode configuration for single-button interaction
-
-;; Copyright (C) 2017  Free Software Foundation, Inc.
-
-;; Author: Nikita Leshenko
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-;; company-tng (Tab and Go) allows you to perform completion using just TAB.
-;; Pressing it will both select the next completion candidate in the list and
-;; insert it into the buffer (or make it look like it's inserted, in fact).
-;;
-;; It cycles the candidates like `yank-pop' or `dabbrev-expand' or Vim:
-;; Pressing TAB selects the first item in the completion menu and inserts it in
-;; the buffer. Pressing TAB again selects the second item and replaces the
-;; "inserted" item with the second one. This can continue as long as the user
-;; wishes to cycle through the menu. You can also press S-TAB to select the
-;; previous candidate, of course.
-;;
-;; The benefits are that you only have to use one shortcut key and there is no
-;; need to confirm the entry.
-;;
-;; Usage:
-;;
-;; To apply the default configuration for company-tng call
-;; `company-tng-configure-default' from your init script.
-;;
-;; You can also configure company-tng manually:
-;;
-;; Add `company-tng-frontend' to `company-frontends':
-;;
-;;   (add-to-list 'company-frontends 'company-tng-frontend)
-;;
-;; We recommend to bind TAB to `company-select-next', S-TAB to
-;; `company-select-previous', and unbind RET and other now-unnecessary
-;; keys from `company-active-map':
-;;
-;;   (define-key company-active-map (kbd "TAB") 'company-select-next)
-;;   (define-key company-active-map (kbd "<backtab>") 'company-select-previous)
-;;   (define-key company-active-map (kbd "RET") nil)
-;;
-;; Note that it's not necessary to rebind keys to use this frontend,
-;; you can use the arrow keys or M-n/M-p to select and insert
-;; candidates. You also need to decide which keys to unbind, depending
-;; on whether you want them to do the Company action or the default
-;; Emacs action (for example C-s or C-w).
-;;
-;; We recommend to disable `company-require-match' to allow free typing at any
-;; point.
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(defvar-local company-tng--overlay nil)
-
-;;;###autoload
-(defun company-tng-frontend (command)
-  "When the user changes the selection at least once, this
-frontend will display the candidate in the buffer as if it's
-already there and any key outside of `company-active-map' will
-confirm the selection and finish the completion."
-  (cl-case command
-    (show
-     (let ((ov (make-overlay (point) (point))))
-       (setq company-tng--overlay ov)
-       (overlay-put ov 'priority 2))
-     (advice-add 'company-select-next :before-until 'company-tng--allow-unselected)
-     (advice-add 'company-fill-propertize :filter-args 'company-tng--adjust-tooltip-highlight))
-    (update
-     (let ((ov company-tng--overlay)
-           (selected (nth company-selection company-candidates))
-           (prefix (length company-prefix)))
-       (move-overlay ov (- (point) prefix) (point))
-       (overlay-put ov
-                    (if (= prefix 0) 'after-string 'display)
-                    (and company-selection-changed selected))))
-    (hide
-     (when company-tng--overlay
-       (delete-overlay company-tng--overlay)
-       (kill-local-variable 'company-tng--overlay))
-     (advice-remove 'company-select-next 'company-tng--allow-unselected)
-     (advice-remove 'company-fill-propertize 'company-tng--adjust-tooltip-highlight))
-    (pre-command
-     (when (and company-selection-changed
-                (not (company--company-command-p (this-command-keys))))
-       (company--unread-this-command-keys)
-       (setq this-command 'company-complete-selection)
-       (advice-add 'company-call-backend :before-until 'company-tng--supress-post-completion)))))
-
-;;;###autoload
-(defun company-tng-configure-default ()
-  "Applies the default configuration to enable company-tng."
-  (setq company-require-match nil)
-  (setq company-frontends '(company-tng-frontend
-                            company-pseudo-tooltip-frontend
-                            company-echo-metadata-frontend))
-  (let ((keymap company-active-map))
-    (define-key keymap [return] nil)
-    (define-key keymap (kbd "RET") nil)
-    (define-key keymap [tab] 'company-select-next)
-    (define-key keymap (kbd "TAB") 'company-select-next)
-    (define-key keymap [backtab] 'company-select-previous)
-    (define-key keymap (kbd "S-TAB") 'company-select-previous)))
-
-(defun company-tng--allow-unselected (&optional arg)
-  "Advice `company-select-next' to allow for an 'unselected'
-state. Unselected means that no user interaction took place on the
-completion candidates and it's marked by setting
-`company-selection-changed' to nil. This advice will call the underlying
-`company-select-next' unless we need to transition to or from an unselected
-state.
-
-Possible state transitions:
-- (arg > 0) unselected -> first candidate selected
-- (arg < 0) first candidate selected -> unselected
-- (arg < 0 wrap-round) unselected -> last candidate selected
-- (arg < 0 no wrap-round) unselected -> unselected
-
-There is no need to advice `company-select-previous' because it calls
-`company-select-next' internally."
-  (cond
-   ;; Selecting next
-   ((or (not arg) (> arg 0))
-    (unless company-selection-changed
-      (company-set-selection (1- (or arg 1)) 'force-update)
-      t))
-   ;; Selecting previous
-   ((< arg 0)
-    (when (and company-selection-changed
-               (< (+ company-selection arg) 0))
-      (company-set-selection 0)
-      (setq company-selection-changed nil)
-      (company-call-frontends 'update)
-      t)
-    )))
-
-(defun company-tng--adjust-tooltip-highlight (args)
-  "Prevent the tooltip from highlighting the current selection if it wasn't
-made explicitly (i.e. `company-selection-changed' is true)"
-  (unless company-selection-changed
-    ;; The 4th arg of `company-fill-propertize' is selected
-    (setf (nth 3 args) nil))
-  args)
-
-(defun company-tng--supress-post-completion (command &rest args)
-  "Installed as a :before-until advice on `company-call-backend' and
-prevents the 'post-completion command from being delivered to the backend
-for the next iteration. post-completion do things like expand snippets
-which are undesirable because completions are implicit in company-tng and
-visible side-effects after the completion are surprising."
-  (when (eq command 'post-completion)
-    (advice-remove 'company-call-backend 'company-tng--supress-post-completion)
-    t))
-
-(provide 'company-tng)
-;;; company-tng.el ends here
diff --git a/elpa/company-20181105.2312/company-tng.elc b/elpa/company-20181105.2312/company-tng.elc
deleted file mode 100644
index b7e5293..0000000
--- a/elpa/company-20181105.2312/company-tng.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-xcode.el b/elpa/company-20181105.2312/company-xcode.el
deleted file mode 100644
index 56da198..0000000
--- a/elpa/company-20181105.2312/company-xcode.el
+++ /dev/null
@@ -1,123 +0,0 @@
-;;; company-xcode.el --- company-mode completion backend for Xcode projects
-
-;; Copyright (C) 2009-2011, 2014  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(defgroup company-xcode nil
-  "Completion backend for Xcode projects."
-  :group 'company)
-
-(defcustom company-xcode-xcodeindex-executable (executable-find "xcodeindex")
-  "Location of xcodeindex executable."
-  :type 'file)
-
-(defvar company-xcode-tags nil)
-
-(defun company-xcode-reset ()
-  "Reset the cached tags."
-  (interactive)
-  (setq company-xcode-tags nil))
-
-(defcustom company-xcode-types
-  '("Class" "Constant" "Enum" "Macro" "Modeled Class" "Structure"
-    "Type" "Union" "Function")
-  "The types of symbols offered by `company-xcode'.
-No context-enabled completion is available.  Types like methods will be
-offered regardless of whether the class supports them.  The defaults should be
-valid in most contexts."
-  :set (lambda (variable value)
-         (set variable value)
-         (company-xcode-reset))
-  :type '(set (const "Category") (const "Class") (const "Class Method")
-              (const "Class Variable") (const "Constant") (const "Enum")
-              (const "Field") (const "Instance Method")
-              (const "Instance Variable") (const "Macro")
-              (const "Modeled Class") (const "Modeled Method")
-              (const "Modeled Property") (const "Property") (const "Protocol")
-              (const "Structure") (const "Type") (const "Union")
-              (const "Variable") (const "Function")))
-
-(defvar-local company-xcode-project 'unknown)
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun company-xcode-fetch (project-bundle)
-  (setq project-bundle (directory-file-name project-bundle))
-  (message "Retrieving dump from %s..." project-bundle)
-  (with-temp-buffer
-    (let ((default-directory (file-name-directory project-bundle)))
-      (call-process company-xcode-xcodeindex-executable nil (current-buffer)
-                    nil "dump" "-project"
-                    (file-name-nondirectory project-bundle) "-quiet")
-      (goto-char (point-min))
-      (let ((regexp (concat "^\\([^\t\n]*\\)\t[^\t\n]*\t"
-                            (regexp-opt company-xcode-types)
-                            "\t[^\t\n]*\t[^\t\n]*"))
-            candidates)
-        (while (re-search-forward regexp nil t)
-          (cl-pushnew (match-string 1) candidates :test #'equal))
-        (message "Retrieving dump from %s...done" project-bundle)
-        candidates))))
-
-(defun company-xcode-find-project ()
-  (let ((dir (if buffer-file-name
-                 (file-name-directory buffer-file-name)
-               (expand-file-name default-directory)))
-        (prev-dir nil)
-        file)
-    (while (not (or file (equal dir prev-dir)))
-      (setq file (car (directory-files dir t ".xcodeproj\\'" t))
-            prev-dir dir
-            dir (file-name-directory (directory-file-name dir))))
-    file))
-
-(defun company-xcode-tags ()
-  (when (eq company-xcode-project 'unknown)
-    (setq company-xcode-project (company-xcode-find-project)))
-  (when company-xcode-project
-    (cdr (or (assoc company-xcode-project company-xcode-tags)
-             (car (push (cons company-xcode-project
-                              (company-xcode-fetch company-xcode-project))
-                        company-xcode-tags))))))
-;;;###autoload
-(defun company-xcode (command &optional arg &rest ignored)
-  "`company-mode' completion backend for Xcode projects."
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-xcode))
-    (prefix (and company-xcode-xcodeindex-executable
-                 (company-xcode-tags)
-                 (not (company-in-string-or-comment))
-                 (or (company-grab-symbol) 'stop)))
-    (candidates (let ((completion-ignore-case nil))
-                  (company-xcode-tags)
-                  (all-completions arg (company-xcode-tags))))))
-
-
-(provide 'company-xcode)
-;;; company-xcode.el ends here
diff --git a/elpa/company-20181105.2312/company-xcode.elc b/elpa/company-20181105.2312/company-xcode.elc
deleted file mode 100644
index f23689b..0000000
--- a/elpa/company-20181105.2312/company-xcode.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company-yasnippet.el b/elpa/company-20181105.2312/company-yasnippet.el
deleted file mode 100644
index e5fded4..0000000
--- a/elpa/company-20181105.2312/company-yasnippet.el
+++ /dev/null
@@ -1,147 +0,0 @@
-;;; company-yasnippet.el --- company-mode completion backend for Yasnippet
-
-;; Copyright (C) 2014, 2015  Free Software Foundation, Inc.
-
-;; Author: Dmitry Gutov
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-
-;;; Code:
-
-(require 'company)
-(require 'cl-lib)
-
-(declare-function yas--table-hash "yasnippet")
-(declare-function yas--get-snippet-tables "yasnippet")
-(declare-function yas-expand-snippet "yasnippet")
-(declare-function yas--template-content "yasnippet")
-(declare-function yas--template-expand-env "yasnippet")
-(declare-function yas--warning "yasnippet")
-
-(defun company-yasnippet--key-prefixes ()
-  ;; Mostly copied from `yas--templates-for-key-at-point'.
-  (defvar yas-key-syntaxes)
-  (save-excursion
-    (let ((original (point))
-          (methods yas-key-syntaxes)
-          prefixes
-          method)
-      (while methods
-        (unless (eq method (car methods))
-          (goto-char original))
-        (setq method (car methods))
-        (cond ((stringp method)
-               (skip-syntax-backward method)
-               (setq methods (cdr methods)))
-              ((functionp method)
-               (unless (eq (funcall method original)
-                           'again)
-                 (setq methods (cdr methods))))
-              (t
-               (setq methods (cdr methods))
-               (yas--warning "Invalid element `%s' in `yas-key-syntaxes'" method)))
-        (let ((prefix (buffer-substring-no-properties (point) original)))
-          (unless (equal prefix (car prefixes))
-            (push prefix prefixes))))
-      prefixes)))
-
-(defun company-yasnippet--candidates (prefix)
-  ;; Process the prefixes in reverse: unlike Yasnippet, we look for prefix
-  ;; matches, so the longest prefix with any matches should be the most useful.
-  (cl-loop with tables = (yas--get-snippet-tables)
-           for key-prefix in (company-yasnippet--key-prefixes)
-           ;; Only consider keys at least as long as the symbol at point.
-           when (>= (length key-prefix) (length prefix))
-           thereis (company-yasnippet--completions-for-prefix prefix
-                                                              key-prefix
-                                                              tables)))
-
-(defun company-yasnippet--completions-for-prefix (prefix key-prefix tables)
-  (cl-mapcan
-   (lambda (table)
-     (let ((keyhash (yas--table-hash table))
-           res)
-       (when keyhash
-         (maphash
-          (lambda (key value)
-            (when (and (stringp key)
-                       (string-prefix-p key-prefix key))
-              (maphash
-               (lambda (name template)
-                 (push
-                  (propertize key
-                              'yas-annotation name
-                              'yas-template template
-                              'yas-prefix-offset (- (length key-prefix)
-                                                    (length prefix)))
-                  res))
-               value)))
-          keyhash))
-       res))
-   tables))
-
-;;;###autoload
-(defun company-yasnippet (command &optional arg &rest ignore)
-  "`company-mode' backend for `yasnippet'.
-
-This backend should be used with care, because as long as there are
-snippets defined for the current major mode, this backend will always
-shadow backends that come after it.  Recommended usages:
-
-* In a buffer-local value of `company-backends', grouped with a backend or
-  several that provide actual text completions.
-
-  (add-hook 'js-mode-hook
-            (lambda ()
-              (set (make-local-variable 'company-backends)
-                   '((company-dabbrev-code company-yasnippet)))))
-
-* After keyword `:with', grouped with other backends.
-
-  (push '(company-semantic :with company-yasnippet) company-backends)
-
-* Not in `company-backends', just bound to a key.
-
-  (global-set-key (kbd \"C-c y\") 'company-yasnippet)
-"
-  (interactive (list 'interactive))
-  (cl-case command
-    (interactive (company-begin-backend 'company-yasnippet))
-    (prefix
-     ;; Should probably use `yas--current-key', but that's bound to be slower.
-     ;; How many trigger keys start with non-symbol characters anyway?
-     (and (bound-and-true-p yas-minor-mode)
-          (company-grab-symbol)))
-    (annotation
-     (concat
-      (unless company-tooltip-align-annotations " -> ")
-      (get-text-property 0 'yas-annotation arg)))
-    (candidates (company-yasnippet--candidates arg))
-    (no-cache t)
-    (post-completion
-     (let ((template (get-text-property 0 'yas-template arg))
-           (prefix-offset (get-text-property 0 'yas-prefix-offset arg)))
-       (yas-expand-snippet (yas--template-content template)
-                           (- (point) (length arg) prefix-offset)
-                           (point)
-                           (yas--template-expand-env template))))))
-
-(provide 'company-yasnippet)
-;;; company-yasnippet.el ends here
diff --git a/elpa/company-20181105.2312/company-yasnippet.elc b/elpa/company-20181105.2312/company-yasnippet.elc
deleted file mode 100644
index 31520ff..0000000
--- a/elpa/company-20181105.2312/company-yasnippet.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-20181105.2312/company.el b/elpa/company-20181105.2312/company.el
deleted file mode 100644
index f60fa1b..0000000
--- a/elpa/company-20181105.2312/company.el
+++ /dev/null
@@ -1,3183 +0,0 @@
-;;; company.el --- Modular text completion framework  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2009-2018  Free Software Foundation, Inc.
-
-;; Author: Nikolaj Schumacher
-;; Maintainer: Dmitry Gutov <dgutov@yandex.ru>
-;; URL: http://company-mode.github.io/
-;; Version: 0.9.7
-;; Keywords: abbrev, convenience, matching
-;; Package-Requires: ((emacs "24.3"))
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; Company is a modular completion framework.  Modules for retrieving completion
-;; candidates are called backends, modules for displaying them are frontends.
-;;
-;; Company comes with many backends, e.g. `company-etags'.  These are
-;; distributed in separate files and can be used individually.
-;;
-;; Enable `company-mode' in all buffers with M-x global-company-mode.  For
-;; further information look at the documentation for `company-mode' (C-h f
-;; company-mode RET).
-;;
-;; If you want to start a specific backend, call it interactively or use
-;; `company-begin-backend'.  For example:
-;; M-x company-abbrev will prompt for and insert an abbrev.
-;;
-;; To write your own backend, look at the documentation for `company-backends'.
-;; Here is a simple example completing "foo":
-;;
-;; (defun company-my-backend (command &optional arg &rest ignored)
-;;   (interactive (list 'interactive))
-;;   (pcase command
-;;     (`interactive (company-begin-backend 'company-my-backend))
-;;     (`prefix (company-grab-symbol))
-;;     (`candidates (list "foobar" "foobaz" "foobarbaz"))
-;;     (`meta (format "This value is named %s" arg))))
-;;
-;; Sometimes it is a good idea to mix several backends together, for example to
-;; enrich gtags with dabbrev-code results (to emulate local variables).  To do
-;; this, add a list with both backends as an element in `company-backends'.
-;;
-;;; Change Log:
-;;
-;; See NEWS.md in the repository.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'newcomment)
-(require 'pcase)
-
-;;; Compatibility
-(eval-and-compile
-  ;; Defined in Emacs 24.4
-  (unless (fboundp 'string-suffix-p)
-    (defun string-suffix-p (suffix string  &optional ignore-case)
-      "Return non-nil if SUFFIX is a suffix of STRING.
-If IGNORE-CASE is non-nil, the comparison is done without paying
-attention to case differences."
-      (let ((start-pos (- (length string) (length suffix))))
-        (and (>= start-pos 0)
-             (eq t (compare-strings suffix nil nil
-                                    string start-pos nil ignore-case)))))))
-
-(defgroup company nil
-  "Extensible inline text completion mechanism"
-  :group 'abbrev
-  :group 'convenience
-  :group 'matching)
-
-(defface company-tooltip
-  '((default :foreground "black")
-    (((class color) (min-colors 88) (background light))
-     (:background "cornsilk"))
-    (((class color) (min-colors 88) (background dark))
-     (:background "yellow")))
-  "Face used for the tooltip.")
-
-(defface company-tooltip-selection
-  '((((class color) (min-colors 88) (background light))
-     (:background "light blue"))
-    (((class color) (min-colors 88) (background dark))
-     (:background "orange1"))
-    (t (:background "green")))
-  "Face used for the selection in the tooltip.")
-
-(defface company-tooltip-search
-  '((default :inherit highlight))
-  "Face used for the search string in the tooltip.")
-
-(defface company-tooltip-search-selection
-  '((default :inherit highlight))
-  "Face used for the search string inside the selection in the tooltip.")
-
-(defface company-tooltip-mouse
-  '((default :inherit highlight))
-  "Face used for the tooltip item under the mouse.")
-
-(defface company-tooltip-common
-  '((((background light))
-     :foreground "darkred")
-    (((background dark))
-     :foreground "red"))
-  "Face used for the common completion in the tooltip.")
-
-(defface company-tooltip-common-selection
-  '((default :inherit company-tooltip-common))
-  "Face used for the selected common completion in the tooltip.")
-
-(defface company-tooltip-annotation
-  '((((background light))
-     :foreground "firebrick4")
-    (((background dark))
-     :foreground "red4"))
-  "Face used for the completion annotation in the tooltip.")
-
-(defface company-tooltip-annotation-selection
-  '((default :inherit company-tooltip-annotation))
-  "Face used for the selected completion annotation in the tooltip.")
-
-(defface company-scrollbar-fg
-  '((((background light))
-     :background "darkred")
-    (((background dark))
-     :background "red"))
-  "Face used for the tooltip scrollbar thumb.")
-
-(defface company-scrollbar-bg
-  '((((background light))
-     :background "wheat")
-    (((background dark))
-     :background "gold"))
-  "Face used for the tooltip scrollbar background.")
-
-(defface company-preview
-  '((((background light))
-     :inherit (company-tooltip-selection company-tooltip))
-    (((background dark))
-     :background "blue4"
-     :foreground "wheat"))
-  "Face used for the completion preview.")
-
-(defface company-preview-common
-  '((((background light))
-     :inherit company-tooltip-common-selection)
-    (((background dark))
-     :inherit company-preview
-     :foreground "red"))
-  "Face used for the common part of the completion preview.")
-
-(defface company-preview-search
-  '((((background light))
-     :inherit company-tooltip-common-selection)
-    (((background dark))
-     :inherit company-preview
-     :background "blue1"))
-  "Face used for the search string in the completion preview.")
-
-(defface company-echo nil
-  "Face used for completions in the echo area.")
-
-(defface company-echo-common
-  '((((background dark)) (:foreground "firebrick1"))
-    (((background light)) (:background "firebrick4")))
-  "Face used for the common part of completions in the echo area.")
-
-(defun company-frontends-set (variable value)
-  ;; Uniquify.
-  (let ((value (delete-dups (copy-sequence value))))
-    (and (or (and (memq 'company-pseudo-tooltip-unless-just-one-frontend value)
-                  (memq 'company-pseudo-tooltip-frontend value))
-             (and (memq 'company-pseudo-tooltip-unless-just-one-frontend-with-delay value)
-                  (memq 'company-pseudo-tooltip-frontend value))
-             (and (memq 'company-pseudo-tooltip-unless-just-one-frontend-with-delay value)
-                  (memq 'company-pseudo-tooltip-unless-just-one-frontend value)))
-         (user-error "Pseudo tooltip frontend cannot be used more than once"))
-    (and (or (and (memq 'company-preview-if-just-one-frontend value)
-                  (memq 'company-preview-frontend value))
-             (and (memq 'company-preview-if-just-one-frontend value)
-                  (memq 'company-preview-common-frontend value))
-             (and (memq 'company-preview-frontend value)
-                  (memq 'company-preview-common-frontend value))
-             )
-         (user-error "Preview frontend cannot be used twice"))
-    (and (memq 'company-echo value)
-         (memq 'company-echo-metadata-frontend value)
-         (user-error "Echo area cannot be used twice"))
-    ;; Preview must come last.
-    (dolist (f '(company-preview-if-just-one-frontend company-preview-frontend company-preview-common-frontend))
-      (when (cdr (memq f value))
-        (setq value (append (delq f value) (list f)))))
-    (set variable value)))
-
-(defcustom company-frontends '(company-pseudo-tooltip-unless-just-one-frontend
-                               company-preview-if-just-one-frontend
-                               company-echo-metadata-frontend)
-  "The list of active frontends (visualizations).
-Each frontend is a function that takes one argument.  It is called with
-one of the following arguments:
-
-`show': When the visualization should start.
-
-`hide': When the visualization should end.
-
-`update': When the data has been updated.
-
-`pre-command': Before every command that is executed while the
-visualization is active.
-
-`post-command': After every command that is executed while the
-visualization is active.
-
-The visualized data is stored in `company-prefix', `company-candidates',
-`company-common', `company-selection', `company-point' and
-`company-search-string'."
-  :set 'company-frontends-set
-  :type '(repeat (choice (const :tag "echo" company-echo-frontend)
-                         (const :tag "echo, strip common"
-                                company-echo-strip-common-frontend)
-                         (const :tag "show echo meta-data in echo"
-                                company-echo-metadata-frontend)
-                         (const :tag "pseudo tooltip"
-                                company-pseudo-tooltip-frontend)
-                         (const :tag "pseudo tooltip, multiple only"
-                                company-pseudo-tooltip-unless-just-one-frontend)
-                         (const :tag "pseudo tooltip, multiple only, delayed"
-                                company-pseudo-tooltip-unless-just-one-frontend-with-delay)
-                         (const :tag "preview" company-preview-frontend)
-                         (const :tag "preview, unique only"
-                                company-preview-if-just-one-frontend)
-                         (const :tag "preview, common"
-                                company-preview-common-frontend)
-                         (function :tag "custom function" nil))))
-
-(defcustom company-tooltip-limit 10
-  "The maximum number of candidates in the tooltip."
-  :type 'integer)
-
-(defcustom company-tooltip-minimum 6
-  "The minimum height of the tooltip.
-If this many lines are not available, prefer to display the tooltip above."
-  :type 'integer)
-
-(defcustom company-tooltip-minimum-width 0
-  "The minimum width of the tooltip's inner area.
-This doesn't include the margins and the scroll bar."
-  :type 'integer
-  :package-version '(company . "0.8.0"))
-
-(defcustom company-tooltip-maximum-width most-positive-fixnum
-  "The maximum width of the tooltip's inner area.
-This doesn't include the margins and the scroll bar."
-  :type 'integer
-  :package-version '(company . "0.9.5"))
-
-(defcustom company-tooltip-margin 1
-  "Width of margin columns to show around the toolip."
-  :type 'integer)
-
-(defcustom company-tooltip-offset-display 'scrollbar
-  "Method using which the tooltip displays scrolling position.
-`scrollbar' means draw a scrollbar to the right of the items.
-`lines' means wrap items in lines with \"before\" and \"after\" counters."
-  :type '(choice (const :tag "Scrollbar" scrollbar)
-                 (const :tag "Two lines" lines)))
-
-(defcustom company-tooltip-align-annotations nil
-  "When non-nil, align annotations to the right tooltip border."
-  :type 'boolean
-  :package-version '(company . "0.7.1"))
-
-(defcustom company-tooltip-flip-when-above nil
-  "Whether to flip the tooltip when it's above the current line."
-  :type 'boolean
-  :package-version '(company . "0.8.1"))
-
-(defvar company-safe-backends
-  '((company-abbrev . "Abbrev")
-    (company-bbdb . "BBDB")
-    (company-capf . "completion-at-point-functions")
-    (company-clang . "Clang")
-    (company-cmake . "CMake")
-    (company-css . "CSS")
-    (company-dabbrev . "dabbrev for plain text")
-    (company-dabbrev-code . "dabbrev for code")
-    (company-eclim . "Eclim (an Eclipse interface)")
-    (company-elisp . "Emacs Lisp")
-    (company-etags . "etags")
-    (company-files . "Files")
-    (company-gtags . "GNU Global")
-    (company-ispell . "Ispell")
-    (company-keywords . "Programming language keywords")
-    (company-nxml . "nxml")
-    (company-oddmuse . "Oddmuse")
-    (company-semantic . "Semantic")
-    (company-tempo . "Tempo templates")
-    (company-xcode . "Xcode")))
-(put 'company-safe-backends 'risky-local-variable t)
-
-(defun company-safe-backends-p (backends)
-  (and (consp backends)
-       (not (cl-dolist (backend backends)
-              (unless (if (consp backend)
-                          (company-safe-backends-p backend)
-                        (assq backend company-safe-backends))
-                (cl-return t))))))
-
-(defcustom company-backends `(,@(unless (version< "24.3.51" emacs-version)
-                                  (list 'company-elisp))
-                              company-bbdb
-                              ,@(unless (version<= "26" emacs-version)
-                                  (list 'company-nxml))
-                              ,@(unless (version<= "26" emacs-version)
-                                  (list 'company-css))
-                              company-eclim company-semantic company-clang
-                              company-xcode company-cmake
-                              company-capf
-                              company-files
-                              (company-dabbrev-code company-gtags company-etags
-                               company-keywords)
-                              company-oddmuse company-dabbrev)
-  "The list of active backends (completion engines).
-
-Only one backend is used at a time.  The choice depends on the order of
-the items in this list, and on the values they return in response to the
-`prefix' command (see below).  But a backend can also be a \"grouped\"
-one (see below).
-
-`company-begin-backend' can be used to start a specific backend,
-`company-other-backend' will skip to the next matching backend in the list.
-
-Each backend is a function that takes a variable number of arguments.
-The first argument is the command requested from the backend.  It is one
-of the following:
-
-`prefix': The backend should return the text to be completed.  It must be
-text immediately before point.  Returning nil from this command passes
-control to the next backend.  The function should return `stop' if it
-should complete but cannot (e.g. when in the middle of a symbol).
-Instead of a string, the backend may return a cons (PREFIX . LENGTH)
-where LENGTH is a number used in place of PREFIX's length when
-comparing against `company-minimum-prefix-length'.  LENGTH can also
-be just t, and in the latter case the test automatically succeeds.
-
-`candidates': The second argument is the prefix to be completed.  The
-return value should be a list of candidates that match the prefix.
-
-Non-prefix matches are also supported (candidates that don't start with the
-prefix, but match it in some backend-defined way).  Backends that use this
-feature must disable cache (return t to `no-cache') and might also want to
-respond to `match'.
-
-Optional commands
-=================
-
-`sorted': Return t here to indicate that the candidates are sorted and will
-not need to be sorted again.
-
-`duplicates': If non-nil, company will take care of removing duplicates
-from the list.
-
-`no-cache': Usually company doesn't ask for candidates again as completion
-progresses, unless the backend returns t for this command.  The second
-argument is the latest prefix.
-
-`ignore-case': Return t here if the backend returns case-insensitive
-matches.  This value is used to determine the longest common prefix (as
-used in `company-complete-common'), and to filter completions when fetching
-them from cache.
-
-`meta': The second argument is a completion candidate.  Return a (short)
-documentation string for it.
-
-`doc-buffer': The second argument is a completion candidate.  Return a
-buffer with documentation for it.  Preferably use `company-doc-buffer'.  If
-not all buffer contents pertain to this candidate, return a cons of buffer
-and window start position.
-
-`location': The second argument is a completion candidate.  Return a cons
-of buffer and buffer location, or of file and line number where the
-completion candidate was defined.
-
-`annotation': The second argument is a completion candidate.  Return a
-string to be displayed inline with the candidate in the popup.  If
-duplicates are removed by company, candidates with equal string values will
-be kept if they have different annotations.  For that to work properly,
-backends should store the related information on candidates using text
-properties.
-
-`match': The second argument is a completion candidate.  Return a positive
-integer, the index after the end of text matching `prefix' within the
-candidate string.  Alternatively, return a list of (CHUNK-START
-. CHUNK-END) elements, where CHUNK-START and CHUNK-END are indexes within
-the candidate string.  The corresponding regions are be used when rendering
-the popup.  This command only makes sense for backends that provide
-non-prefix completion.
-
-`require-match': If this returns t, the user is not allowed to enter
-anything not offered as a candidate.  Please don't use that value in normal
-backends.  The default value nil gives the user that choice with
-`company-require-match'.  Return value `never' overrides that option the
-other way around.
-
-`init': Called once for each buffer. The backend can check for external
-programs and files and load any required libraries.  Raising an error here
-will show up in message log once, and the backend will not be used for
-completion.
-
-`post-completion': Called after a completion candidate has been inserted
-into the buffer.  The second argument is the candidate.  Can be used to
-modify it, e.g. to expand a snippet.
-
-The backend should return nil for all commands it does not support or
-does not know about.  It should also be callable interactively and use
-`company-begin-backend' to start itself in that case.
-
-Grouped backends
-================
-
-An element of `company-backends' can also be a list of backends.  The
-completions from backends in such groups are merged, but only from those
-backends which return the same `prefix'.
-
-If a backend command takes a candidate as an argument (e.g. `meta'), the
-call is dispatched to the backend the candidate came from.  In other
-cases (except for `duplicates' and `sorted'), the first non-nil value among
-all the backends is returned.
-
-The group can also contain keywords.  Currently, `:with' and `:separate'
-keywords are defined.  If the group contains keyword `:with', the backends
-listed after this keyword are ignored for the purpose of the `prefix'
-command.  If the group contains keyword `:separate', the candidates that
-come from different backends are sorted separately in the combined list.
-
-Asynchronous backends
-=====================
-
-The return value of each command can also be a cons (:async . FETCHER)
-where FETCHER is a function of one argument, CALLBACK.  When the data
-arrives, FETCHER must call CALLBACK and pass it the appropriate return
-value, as described above.  That call must happen in the same buffer as
-where completion was initiated.
-
-True asynchronous operation is only supported for command `candidates', and
-only during idle completion.  Other commands will block the user interface,
-even if the backend uses the asynchronous calling convention."
-  :type `(repeat
-          (choice
-           :tag "backend"
-           ,@(mapcar (lambda (b) `(const :tag ,(cdr b) ,(car b)))
-                     company-safe-backends)
-           (symbol :tag "User defined")
-           (repeat :tag "Merged backends"
-                   (choice :tag "backend"
-                           ,@(mapcar (lambda (b)
-                                       `(const :tag ,(cdr b) ,(car b)))
-                                     company-safe-backends)
-                           (const :tag "With" :with)
-                           (symbol :tag "User defined"))))))
-
-(put 'company-backends 'safe-local-variable 'company-safe-backends-p)
-
-(defcustom company-transformers nil
-  "Functions to change the list of candidates received from backends.
-
-Each function gets called with the return value of the previous one.
-The first one gets passed the list of candidates, already sorted and
-without duplicates."
-  :type '(choice
-          (const :tag "None" nil)
-          (const :tag "Sort by occurrence" (company-sort-by-occurrence))
-          (const :tag "Sort by backend importance"
-                 (company-sort-by-backend-importance))
-          (const :tag "Prefer case sensitive prefix"
-                 (company-sort-prefer-same-case-prefix))
-          (repeat :tag "User defined" (function))))
-
-(defcustom company-completion-started-hook nil
-  "Hook run when company starts completing.
-The hook is called with one argument that is non-nil if the completion was
-started manually."
-  :type 'hook)
-
-(defcustom company-completion-cancelled-hook nil
-  "Hook run when company cancels completing.
-The hook is called with one argument that is non-nil if the completion was
-aborted manually."
-  :type 'hook)
-
-(defcustom company-completion-finished-hook nil
-  "Hook run when company successfully completes.
-The hook is called with the selected candidate as an argument.
-
-If you indend to use it to post-process candidates from a specific
-backend, consider using the `post-completion' command instead."
-  :type 'hook)
-
-(defcustom company-minimum-prefix-length 3
-  "The minimum prefix length for idle completion."
-  :type '(integer :tag "prefix length"))
-
-(defcustom company-abort-manual-when-too-short nil
-  "If enabled, cancel a manually started completion when the prefix gets
-shorter than both `company-minimum-prefix-length' and the length of the
-prefix it was started from."
-  :type 'boolean
-  :package-version '(company . "0.8.0"))
-
-(defcustom company-require-match 'company-explicit-action-p
-  "If enabled, disallow non-matching input.
-This can be a function do determine if a match is required.
-
-This can be overridden by the backend, if it returns t or `never' to
-`require-match'.  `company-auto-complete' also takes precedence over this."
-  :type '(choice (const :tag "Off" nil)
-                 (function :tag "Predicate function")
-                 (const :tag "On, if user interaction took place"
-                        'company-explicit-action-p)
-                 (const :tag "On" t)))
-
-(defcustom company-auto-complete nil
-  "Determines when to auto-complete.
-If this is enabled, all characters from `company-auto-complete-chars'
-trigger insertion of the selected completion candidate.
-This can also be a function."
-  :type '(choice (const :tag "Off" nil)
-                 (function :tag "Predicate function")
-                 (const :tag "On, if user interaction took place"
-                        'company-explicit-action-p)
-                 (const :tag "On" t)))
-
-(defcustom company-auto-complete-chars '(?\  ?\) ?.)
-  "Determines which characters trigger auto-completion.
-See `company-auto-complete'.  If this is a string, each string character
-tiggers auto-completion.  If it is a list of syntax description characters (see
-`modify-syntax-entry'), all characters with that syntax auto-complete.
-
-This can also be a function, which is called with the new input and should
-return non-nil if company should auto-complete.
-
-A character that is part of a valid candidate never triggers auto-completion."
-  :type '(choice (string :tag "Characters")
-                 (set :tag "Syntax"
-                      (const :tag "Whitespace" ?\ )
-                      (const :tag "Symbol" ?_)
-                      (const :tag "Opening parentheses" ?\()
-                      (const :tag "Closing parentheses" ?\))
-                      (const :tag "Word constituent" ?w)
-                      (const :tag "Punctuation." ?.)
-                      (const :tag "String quote." ?\")
-                      (const :tag "Paired delimiter." ?$)
-                      (const :tag "Expression quote or prefix operator." ?\')
-                      (const :tag "Comment starter." ?<)
-                      (const :tag "Comment ender." ?>)
-                      (const :tag "Character-quote." ?/)
-                      (const :tag "Generic string fence." ?|)
-                      (const :tag "Generic comment fence." ?!))
-                 (function :tag "Predicate function")))
-
-(defcustom company-idle-delay .5
-  "The idle delay in seconds until completion starts automatically.
-The prefix still has to satisfy `company-minimum-prefix-length' before that
-happens.  The value of nil means no idle completion."
-  :type '(choice (const :tag "never (nil)" nil)
-                 (const :tag "immediate (0)" 0)
-                 (number :tag "seconds")))
-
-(defcustom company-tooltip-idle-delay .5
-  "The idle delay in seconds until tooltip is shown when using
-`company-pseudo-tooltip-unless-just-one-frontend-with-delay'."
-  :type '(choice (const :tag "never (nil)" nil)
-                 (const :tag "immediate (0)" 0)
-                 (number :tag "seconds")))
-
-(defcustom company-begin-commands '(self-insert-command
-                                    org-self-insert-command
-                                    orgtbl-self-insert-command
-                                    c-scope-operator
-                                    c-electric-colon
-                                    c-electric-lt-gt
-                                    c-electric-slash)
-  "A list of commands after which idle completion is allowed.
-If this is t, it can show completions after any command except a few from a
-pre-defined list.  See `company-idle-delay'.
-
-Alternatively, any command with a non-nil `company-begin' property is
-treated as if it was on this list."
-  :type '(choice (const :tag "Any command" t)
-                 (const :tag "Self insert command" '(self-insert-command))
-                 (repeat :tag "Commands" function))
-  :package-version '(company . "0.8.4"))
-
-(defcustom company-continue-commands '(not save-buffer save-some-buffers
-                                           save-buffers-kill-terminal
-                                           save-buffers-kill-emacs
-                                           completion-at-point)
-  "A list of commands that are allowed during completion.
-If this is t, or if `company-begin-commands' is t, any command is allowed.
-Otherwise, the value must be a list of symbols.  If it starts with `not',
-the cdr is the list of commands that abort completion.  Otherwise, all
-commands except those in that list, or in `company-begin-commands', or
-commands in the `company-' namespace, abort completion."
-  :type '(choice (const :tag "Any command" t)
-                 (cons  :tag "Any except"
-                        (const not)
-                        (repeat :tag "Commands" function))
-                 (repeat :tag "Commands" function)))
-
-(defcustom company-show-numbers nil
-  "If enabled, show quick-access numbers for the first ten candidates."
-  :type '(choice (const :tag "off" nil)
-                 (const :tag "on" t)))
-
-(defcustom company-selection-wrap-around nil
-  "If enabled, selecting item before first or after last wraps around."
-  :type '(choice (const :tag "off" nil)
-                 (const :tag "on" t)))
-
-(defvar company-async-wait 0.03
-  "Pause between checks to see if the value's been set when turning an
-asynchronous call into synchronous.")
-
-(defvar company-async-timeout 2
-  "Maximum wait time for a value to be set during asynchronous call.")
-
-;;; mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar company-mode-map (make-sparse-keymap)
-  "Keymap used by `company-mode'.")
-
-(defvar company-active-map
-  (let ((keymap (make-sparse-keymap)))
-    (define-key keymap "\e\e\e" 'company-abort)
-    (define-key keymap "\C-g" 'company-abort)
-    (define-key keymap (kbd "M-n") 'company-select-next)
-    (define-key keymap (kbd "M-p") 'company-select-previous)
-    (define-key keymap (kbd "<down>") 'company-select-next-or-abort)
-    (define-key keymap (kbd "<up>") 'company-select-previous-or-abort)
-    (define-key keymap [remap scroll-up-command] 'company-next-page)
-    (define-key keymap [remap scroll-down-command] 'company-previous-page)
-    (define-key keymap [down-mouse-1] 'ignore)
-    (define-key keymap [down-mouse-3] 'ignore)
-    (define-key keymap [mouse-1] 'company-complete-mouse)
-    (define-key keymap [mouse-3] 'company-select-mouse)
-    (define-key keymap [up-mouse-1] 'ignore)
-    (define-key keymap [up-mouse-3] 'ignore)
-    (define-key keymap [return] 'company-complete-selection)
-    (define-key keymap (kbd "RET") 'company-complete-selection)
-    (define-key keymap [tab] 'company-complete-common)
-    (define-key keymap (kbd "TAB") 'company-complete-common)
-    (define-key keymap (kbd "<f1>") 'company-show-doc-buffer)
-    (define-key keymap (kbd "C-h") 'company-show-doc-buffer)
-    (define-key keymap "\C-w" 'company-show-location)
-    (define-key keymap "\C-s" 'company-search-candidates)
-    (define-key keymap "\C-\M-s" 'company-filter-candidates)
-    (dotimes (i 10)
-      (define-key keymap (read-kbd-macro (format "M-%d" i)) 'company-complete-number))
-     keymap)
-  "Keymap that is enabled during an active completion.")
-
-(defvar company--disabled-backends nil)
-
-(defun company-init-backend (backend)
-  (and (symbolp backend)
-       (not (fboundp backend))
-       (ignore-errors (require backend nil t)))
-  (cond
-   ((symbolp backend)
-    (condition-case err
-        (progn
-          (funcall backend 'init)
-          (put backend 'company-init t))
-      (error
-       (put backend 'company-init 'failed)
-       (unless (memq backend company--disabled-backends)
-         (message "Company backend '%s' could not be initialized:\n%s"
-                  backend (error-message-string err)))
-       (cl-pushnew backend company--disabled-backends)
-       nil)))
-   ;; No initialization for lambdas.
-   ((functionp backend) t)
-   (t ;; Must be a list.
-    (cl-dolist (b backend)
-      (unless (keywordp b)
-        (company-init-backend b))))))
-
-(defun company--maybe-init-backend (backend)
-  (or (not (symbolp backend))
-      (eq t (get backend 'company-init))
-      (unless (get backend 'company-init)
-        (company-init-backend backend))))
-
-(defcustom company-lighter-base "company"
-  "Base string to use for the `company-mode' lighter."
-  :type 'string
-  :package-version '(company . "0.8.10"))
-
-(defvar company-lighter '(" "
-                          (company-candidates
-                           (:eval
-                            (if (consp company-backend)
-                                (company--group-lighter (nth company-selection
-                                                             company-candidates)
-                                                        company-lighter-base)
-                              (symbol-name company-backend)))
-                           company-lighter-base))
-  "Mode line lighter for Company.
-
-The value of this variable is a mode line template as in
-`mode-line-format'.")
-
-(put 'company-lighter 'risky-local-variable t)
-
-;;;###autoload
-(define-minor-mode company-mode
-  "\"complete anything\"; is an in-buffer completion framework.
-Completion starts automatically, depending on the values
-`company-idle-delay' and `company-minimum-prefix-length'.
-
-Completion can be controlled with the commands:
-`company-complete-common', `company-complete-selection', `company-complete',
-`company-select-next', `company-select-previous'.  If these commands are
-called before `company-idle-delay', completion will also start.
-
-Completions can be searched with `company-search-candidates' or
-`company-filter-candidates'.  These can be used while completion is
-inactive, as well.
-
-The completion data is retrieved using `company-backends' and displayed
-using `company-frontends'.  If you want to start a specific backend, call
-it interactively or use `company-begin-backend'.
-
-By default, the completions list is sorted alphabetically, unless the
-backend chooses otherwise, or `company-transformers' changes it later.
-
-regular keymap (`company-mode-map'):
-
-\\{company-mode-map}
-keymap during active completions (`company-active-map'):
-
-\\{company-active-map}"
-  nil company-lighter company-mode-map
-  (if company-mode
-      (progn
-        (add-hook 'pre-command-hook 'company-pre-command nil t)
-        (add-hook 'post-command-hook 'company-post-command nil t)
-        (mapc 'company-init-backend company-backends))
-    (remove-hook 'pre-command-hook 'company-pre-command t)
-    (remove-hook 'post-command-hook 'company-post-command t)
-    (company-cancel)
-    (kill-local-variable 'company-point)))
-
-(defcustom company-global-modes t
-  "Modes for which `company-mode' mode is turned on by `global-company-mode'.
-If nil, means no modes.  If t, then all major modes have it turned on.
-If a list, it should be a list of `major-mode' symbol names for which
-`company-mode' should be automatically turned on.  The sense of the list is
-negated if it begins with `not'.  For example:
- (c-mode c++-mode)
-means that `company-mode' is turned on for buffers in C and C++ modes only.
- (not message-mode)
-means that `company-mode' is always turned on except in `message-mode' buffers."
-  :type '(choice (const :tag "none" nil)
-                 (const :tag "all" t)
-                 (set :menu-tag "mode specific" :tag "modes"
-                      :value (not)
-                      (const :tag "Except" not)
-                      (repeat :inline t (symbol :tag "mode")))))
-
-;;;###autoload
-(define-globalized-minor-mode global-company-mode company-mode company-mode-on)
-
-(defun company-mode-on ()
-  (when (and (not (or noninteractive (eq (aref (buffer-name) 0) ?\s)))
-             (cond ((eq company-global-modes t)
-                    t)
-                   ((eq (car-safe company-global-modes) 'not)
-                    (not (memq major-mode (cdr company-global-modes))))
-                   (t (memq major-mode company-global-modes))))
-    (company-mode 1)))
-
-(defsubst company-assert-enabled ()
-  (unless company-mode
-    (company-uninstall-map)
-    (user-error "Company not enabled")))
-
-;;; keymaps ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-my-keymap nil)
-
-(defvar company-emulation-alist '((t . nil)))
-
-(defsubst company-enable-overriding-keymap (keymap)
-  (company-uninstall-map)
-  (setq company-my-keymap keymap))
-
-(defun company-ensure-emulation-alist ()
-  (unless (eq 'company-emulation-alist (car emulation-mode-map-alists))
-    (setq emulation-mode-map-alists
-          (cons 'company-emulation-alist
-                (delq 'company-emulation-alist emulation-mode-map-alists)))))
-
-(defun company-install-map ()
-  (unless (or (cdar company-emulation-alist)
-              (null company-my-keymap))
-    (setf (cdar company-emulation-alist) company-my-keymap)))
-
-(defun company-uninstall-map ()
-  (setf (cdar company-emulation-alist) nil))
-
-(defun company--company-command-p (keys)
-  "Checks if the keys are part of company's overriding keymap"
-  (or (equal [company-dummy-event] keys)
-      (lookup-key company-my-keymap keys)))
-
-;; Hack:
-;; Emacs calculates the active keymaps before reading the event.  That means we
-;; cannot change the keymap from a timer.  So we send a bogus command.
-;; XXX: Even in Emacs 24.4, seems to be needed in the terminal.
-(defun company-ignore ()
-  (interactive)
-  (setq this-command last-command))
-
-(global-set-key '[company-dummy-event] 'company-ignore)
-
-(defun company-input-noop ()
-  (push 'company-dummy-event unread-command-events))
-
-;; To avoid warnings in Emacs < 26.
-(declare-function line-number-display-width "indent.c")
-
-(defun company--posn-col-row (posn)
-  (let ((col (car (posn-col-row posn)))
-        ;; `posn-col-row' doesn't work well with lines of different height.
-        ;; `posn-actual-col-row' doesn't handle multiple-width characters.
-        (row (cdr (or (posn-actual-col-row posn)
-                      ;; When position is non-visible for some reason.
-                      (posn-col-row posn)))))
-    (when (and header-line-format (version< emacs-version "24.3.93.3"))
-      ;; http://debbugs.gnu.org/18384
-      (cl-decf row))
-    (when (bound-and-true-p display-line-numbers)
-      (cl-decf col (+ 2 (line-number-display-width))))
-    (cons (+ col (window-hscroll)) row)))
-
-(defun company--col-row (&optional pos)
-  (company--posn-col-row (posn-at-point pos)))
-
-(defun company--row (&optional pos)
-  (cdr (company--col-row pos)))
-
-;;; backends ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-backend nil)
-
-(defun company-grab (regexp &optional expression limit)
-  (when (looking-back regexp limit)
-    (or (match-string-no-properties (or expression 0)) "")))
-
-(defun company-grab-line (regexp &optional expression)
-  "Return a match string for REGEXP if it matches text before point.
-If EXPRESSION is non-nil, return the match string for the respective
-parenthesized expression in REGEXP.
-Matching is limited to the current line."
-  (let ((inhibit-field-text-motion t))
-    (company-grab regexp expression (point-at-bol))))
-
-(defun company-grab-symbol ()
-  "If point is at the end of a symbol, return it.
-Otherwise, if point is not inside a symbol, return an empty string."
-  (if (looking-at "\\_>")
-      (buffer-substring (point) (save-excursion (skip-syntax-backward "w_")
-                                                (point)))
-    (unless (and (char-after) (memq (char-syntax (char-after)) '(?w ?_)))
-      "")))
-
-(defun company-grab-word ()
-  "If point is at the end of a word, return it.
-Otherwise, if point is not inside a symbol, return an empty string."
-  (if (looking-at "\\>")
-      (buffer-substring (point) (save-excursion (skip-syntax-backward "w")
-                                                (point)))
-    (unless (and (char-after) (eq (char-syntax (char-after)) ?w))
-      "")))
-
-(defun company-grab-symbol-cons (idle-begin-after-re &optional max-len)
-  "Return a string SYMBOL or a cons (SYMBOL . t).
-SYMBOL is as returned by `company-grab-symbol'.  If the text before point
-matches IDLE-BEGIN-AFTER-RE, return it wrapped in a cons."
-  (let ((symbol (company-grab-symbol)))
-    (when symbol
-      (save-excursion
-        (forward-char (- (length symbol)))
-        (if (looking-back idle-begin-after-re (if max-len
-                                                  (- (point) max-len)
-                                                (line-beginning-position)))
-            (cons symbol t)
-          symbol)))))
-
-(defun company-in-string-or-comment ()
-  "Return non-nil if point is within a string or comment."
-  (let ((ppss (syntax-ppss)))
-    (or (car (setq ppss (nthcdr 3 ppss)))
-        (car (setq ppss (cdr ppss)))
-        (nth 3 ppss))))
-
-(defun company-call-backend (&rest args)
-  (company--force-sync #'company-call-backend-raw args company-backend))
-
-(defun company--force-sync (fun args backend)
-  (let ((value (apply fun args)))
-    (if (not (eq (car-safe value) :async))
-        value
-      (let ((res 'trash)
-            (start (time-to-seconds)))
-        (funcall (cdr value)
-                 (lambda (result) (setq res result)))
-        (while (eq res 'trash)
-          (if (> (- (time-to-seconds) start) company-async-timeout)
-              (error "Company: backend %s async timeout with args %s"
-                     backend args)
-            ;; XXX: Reusing the trick from company--fetch-candidates here
-            ;; doesn't work well: sit-for isn't a good fit when we want to
-            ;; ignore pending input (results in too many calls).
-            ;; FIXME: We should deal with this by standardizing on a kind of
-            ;; Future object that knows how to sync itself. In most cases (but
-            ;; not all), by calling accept-process-output, probably.
-            (sleep-for company-async-wait)))
-        res))))
-
-(defun company-call-backend-raw (&rest args)
-  (condition-case-unless-debug err
-      (if (functionp company-backend)
-          (apply company-backend args)
-        (apply #'company--multi-backend-adapter company-backend args))
-    (user-error (user-error
-                 "Company: backend %s user-error: %s"
-                 company-backend (error-message-string err)))
-    (error (error "Company: backend %s error \"%s\" with args %s"
-                  company-backend (error-message-string err) args))))
-
-(defun company--multi-backend-adapter (backends command &rest args)
-  (let ((backends (cl-loop for b in backends
-                           when (or (keywordp b)
-                                    (company--maybe-init-backend b))
-                           collect b))
-        (separate (memq :separate backends)))
-
-    (when (eq command 'prefix)
-      (setq backends (butlast backends (length (member :with backends)))))
-
-    (setq backends (cl-delete-if #'keywordp backends))
-
-    (pcase command
-      (`candidates
-       (company--multi-backend-adapter-candidates backends (car args) separate))
-      (`sorted separate)
-      (`duplicates (not separate))
-      ((or `prefix `ignore-case `no-cache `require-match)
-       (let (value)
-         (cl-dolist (backend backends)
-           (when (setq value (company--force-sync
-                              backend (cons command args) backend))
-             (cl-return value)))))
-      (_
-       (let ((arg (car args)))
-         (when (> (length arg) 0)
-           (let ((backend (or (get-text-property 0 'company-backend arg)
-                              (car backends))))
-             (apply backend command args))))))))
-
-(defun company--multi-backend-adapter-candidates (backends prefix separate)
-  (let ((pairs (cl-loop for backend in backends
-                        when (equal (company--prefix-str
-                                     (let ((company-backend backend))
-                                       (company-call-backend 'prefix)))
-                                    prefix)
-                        collect (cons (funcall backend 'candidates prefix)
-                                      (company--multi-candidates-mapper
-                                       backend
-                                       separate
-                                       ;; Small perf optimization: don't tag the
-                                       ;; candidates received from the first
-                                       ;; backend in the group.
-                                       (not (eq backend (car backends))))))))
-    (company--merge-async pairs (lambda (values) (apply #'append values)))))
-
-(defun company--multi-candidates-mapper (backend separate tag)
-  (lambda (candidates)
-    (when separate
-      (let ((company-backend backend))
-        (setq candidates
-              (company--preprocess-candidates candidates))))
-    (when tag
-      (setq candidates
-            (mapcar
-             (lambda (str)
-               (propertize str 'company-backend backend))
-             candidates)))
-    candidates))
-
-(defun company--merge-async (pairs merger)
-  (let ((async (cl-loop for pair in pairs
-                        thereis
-                        (eq :async (car-safe (car pair))))))
-    (if (not async)
-        (funcall merger (cl-loop for (val . mapper) in pairs
-                                 collect (funcall mapper val)))
-      (cons
-       :async
-       (lambda (callback)
-         (let* (lst
-                (pending (mapcar #'car pairs))
-                (finisher (lambda ()
-                            (unless pending
-                              (funcall callback
-                                       (funcall merger
-                                                (nreverse lst)))))))
-           (dolist (pair pairs)
-             (push nil lst)
-             (let* ((cell lst)
-                    (val (car pair))
-                    (mapper (cdr pair))
-                    (this-finisher (lambda (res)
-                                     (setq pending (delq val pending))
-                                     (setcar cell (funcall mapper res))
-                                     (funcall finisher))))
-               (if (not (eq :async (car-safe val)))
-                   (funcall this-finisher val)
-                 (let ((fetcher (cdr val)))
-                   (funcall fetcher this-finisher)))))))))))
-
-(defun company--prefix-str (prefix)
-  (or (car-safe prefix) prefix))
-
-;;; completion mechanism ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-prefix nil)
-
-(defvar-local company-candidates nil)
-
-(defvar-local company-candidates-length nil)
-
-(defvar-local company-candidates-cache nil)
-
-(defvar-local company-candidates-predicate nil)
-
-(defvar-local company-common nil)
-
-(defvar-local company-selection 0)
-
-(defvar-local company-selection-changed nil)
-
-(defvar-local company--manual-action nil
-  "Non-nil, if manual completion took place.")
-
-(defvar-local company--manual-prefix nil)
-
-(defvar company--auto-completion nil
-  "Non-nil when current candidate is being inserted automatically.
-Controlled by `company-auto-complete'.")
-
-(defvar-local company--point-max nil)
-
-(defvar-local company-point nil)
-
-(defvar company-timer nil)
-(defvar company-tooltip-timer nil)
-
-(defsubst company-strip-prefix (str)
-  (substring str (length company-prefix)))
-
-(defun company--insert-candidate (candidate)
-  (when (> (length candidate) 0)
-    (setq candidate (substring-no-properties candidate))
-    ;; XXX: Return value we check here is subject to change.
-    (if (eq (company-call-backend 'ignore-case) 'keep-prefix)
-        (insert (company-strip-prefix candidate))
-      (unless (equal company-prefix candidate)
-        (delete-region (- (point) (length company-prefix)) (point))
-        (insert candidate)))))
-
-(defmacro company-with-candidate-inserted (candidate &rest body)
-  "Evaluate BODY with CANDIDATE temporarily inserted.
-This is a tool for backends that need candidates inserted before they
-can retrieve meta-data for them."
-  (declare (indent 1))
-  `(let ((inhibit-modification-hooks t)
-         (inhibit-point-motion-hooks t)
-         (modified-p (buffer-modified-p)))
-     (company--insert-candidate ,candidate)
-     (unwind-protect
-         (progn ,@body)
-       (delete-region company-point (point))
-       (set-buffer-modified-p modified-p))))
-
-(defun company-explicit-action-p ()
-  "Return whether explicit completion action was taken by the user."
-  (or company--manual-action
-      company-selection-changed))
-
-(defun company-reformat (candidate)
-  ;; company-ispell needs this, because the results are always lower-case
-  ;; It's mory efficient to fix it only when they are displayed.
-  ;; FIXME: Adopt the current text's capitalization instead?
-  (if (eq (company-call-backend 'ignore-case) 'keep-prefix)
-      (concat company-prefix (substring candidate (length company-prefix)))
-    candidate))
-
-(defun company--should-complete ()
-  (and (eq company-idle-delay 'now)
-       (not (or buffer-read-only
-                overriding-local-map))
-       ;; Check if in the middle of entering a key combination.
-       (or (equal (this-command-keys-vector) [])
-           (not (keymapp (key-binding (this-command-keys-vector)))))
-       (not (and transient-mark-mode mark-active))))
-
-(defun company--should-continue ()
-  (or (eq t company-begin-commands)
-      (eq t company-continue-commands)
-      (if (eq 'not (car company-continue-commands))
-          (not (memq this-command (cdr company-continue-commands)))
-        (or (memq this-command company-begin-commands)
-            (memq this-command company-continue-commands)
-            (and (symbolp this-command)
-                 (string-match-p "\\`company-" (symbol-name this-command)))))))
-
-(defun company-call-frontends (command)
-  (dolist (frontend company-frontends)
-    (condition-case-unless-debug err
-        (funcall frontend command)
-      (error (error "Company: frontend %s error \"%s\" on command %s"
-                    frontend (error-message-string err) command)))))
-
-(defun company-set-selection (selection &optional force-update)
-  (setq selection
-        (if company-selection-wrap-around
-            (mod selection company-candidates-length)
-          (max 0 (min (1- company-candidates-length) selection))))
-  (when (or force-update (not (equal selection company-selection)))
-    (setq company-selection selection
-          company-selection-changed t)
-    (company-call-frontends 'update)))
-
-(defun company--group-lighter (candidate base)
-  (let ((backend (or (get-text-property 0 'company-backend candidate)
-                     (cl-some (lambda (x) (and (not (keywordp x)) x))
-                              company-backend))))
-    (when (and backend (symbolp backend))
-      (let ((name (replace-regexp-in-string "company-\\|-company" ""
-                                            (symbol-name backend))))
-        (format "%s-<%s>" base name)))))
-
-(defun company-update-candidates (candidates)
-  (setq company-candidates-length (length candidates))
-  (if company-selection-changed
-      ;; Try to restore the selection
-      (let ((selected (nth company-selection company-candidates)))
-        (setq company-selection 0
-              company-candidates candidates)
-        (when selected
-          (catch 'found
-            (while candidates
-              (let ((candidate (pop candidates)))
-                (when (and (string= candidate selected)
-                           (equal (company-call-backend 'annotation candidate)
-                                  (company-call-backend 'annotation selected)))
-                  (throw 'found t)))
-              (cl-incf company-selection))
-            (setq company-selection 0
-                  company-selection-changed nil))))
-    (setq company-selection 0
-          company-candidates candidates))
-  ;; Calculate common.
-  (let ((completion-ignore-case (company-call-backend 'ignore-case)))
-    ;; We want to support non-prefix completion, so filtering is the
-    ;; responsibility of each respective backend, not ours.
-    ;; On the other hand, we don't want to replace non-prefix input in
-    ;; `company-complete-common', unless there's only one candidate.
-    (setq company-common
-          (if (cdr company-candidates)
-              (let ((common (try-completion "" company-candidates)))
-                (when (string-prefix-p company-prefix common
-                                       completion-ignore-case)
-                  common))
-            (car company-candidates)))))
-
-(defun company-calculate-candidates (prefix)
-  (let ((candidates (cdr (assoc prefix company-candidates-cache)))
-        (ignore-case (company-call-backend 'ignore-case)))
-    (or candidates
-        (when company-candidates-cache
-          (let ((len (length prefix))
-                (completion-ignore-case ignore-case)
-                prev)
-            (cl-dotimes (i (1+ len))
-              (when (setq prev (cdr (assoc (substring prefix 0 (- len i))
-                                           company-candidates-cache)))
-                (setq candidates (all-completions prefix prev))
-                (cl-return t)))))
-        (progn
-          ;; No cache match, call the backend.
-          (setq candidates (company--preprocess-candidates
-                            (company--fetch-candidates prefix)))
-          ;; Save in cache.
-          (push (cons prefix candidates) company-candidates-cache)))
-    ;; Only now apply the predicate and transformers.
-    (setq candidates (company--postprocess-candidates candidates))
-    (when candidates
-      (if (or (cdr candidates)
-              (not (eq t (compare-strings (car candidates) nil nil
-                                          prefix nil nil ignore-case))))
-          candidates
-        ;; Already completed and unique; don't start.
-        t))))
-
-(defun company--fetch-candidates (prefix)
-  (let* ((non-essential (not (company-explicit-action-p)))
-         (c (if (or company-selection-changed
-                    ;; FIXME: This is not ideal, but we have not managed to deal
-                    ;; with these situations in a better way yet.
-                    (company-require-match-p))
-                (company-call-backend 'candidates prefix)
-              (company-call-backend-raw 'candidates prefix))))
-    (if (not (eq (car c) :async))
-        c
-      (let ((res 'none)
-            (inhibit-redisplay t))
-        (funcall
-         (cdr c)
-         (lambda (candidates)
-           (when (eq res 'none)
-             (push 'company-foo unread-command-events))
-           (setq res candidates)))
-        (if (company--flyspell-workaround-p)
-            (while (and (eq res 'none)
-                        (not (input-pending-p)))
-              (sleep-for company-async-wait))
-          (while (and (eq res 'none)
-                      (sit-for 0.5 t))))
-        (while (member (car unread-command-events)
-                       '(company-foo (t . company-foo)))
-          (pop unread-command-events))
-        (prog1
-            (and (consp res) res)
-          (setq res 'exited))))))
-
-(defun company--flyspell-workaround-p ()
-  ;; https://debbugs.gnu.org/23980
-  (and (bound-and-true-p flyspell-mode)
-       (version< emacs-version "27")))
-
-(defun company--preprocess-candidates (candidates)
-  (cl-assert (cl-every #'stringp candidates))
-  (unless (company-call-backend 'sorted)
-    (setq candidates (sort candidates 'string<)))
-  (when (company-call-backend 'duplicates)
-    (company--strip-duplicates candidates))
-  candidates)
-
-(defun company--postprocess-candidates (candidates)
-  (when (or company-candidates-predicate company-transformers)
-    (setq candidates (copy-sequence candidates)))
-  (when company-candidates-predicate
-    (setq candidates (cl-delete-if-not company-candidates-predicate candidates)))
-  (company--transform-candidates candidates))
-
-(defun company--strip-duplicates (candidates)
-  (let ((c2 candidates)
-        (annos 'unk))
-    (while c2
-      (setcdr c2
-              (let ((str (pop c2)))
-                (while (let ((str2 (car c2)))
-                         (if (not (equal str str2))
-                             (progn
-                               (setq annos 'unk)
-                               nil)
-                           (when (eq annos 'unk)
-                             (setq annos (list (company-call-backend
-                                                'annotation str))))
-                           (let ((anno2 (company-call-backend
-                                         'annotation str2)))
-                             (if (member anno2 annos)
-                                 t
-                               (push anno2 annos)
-                               nil))))
-                  (pop c2))
-                c2)))))
-
-(defun company--transform-candidates (candidates)
-  (let ((c candidates))
-    (dolist (tr company-transformers)
-      (setq c (funcall tr c)))
-    c))
-
-(defcustom company-occurrence-weight-function
-  #'company-occurrence-prefer-closest-above
-  "Function to weigh matches in `company-sort-by-occurrence'.
-It's called with three arguments: cursor position, the beginning and the
-end of the match."
-  :type '(choice
-          (const :tag "First above point, then below point"
-                 company-occurrence-prefer-closest-above)
-          (const :tag "Prefer closest in any direction"
-                 company-occurrence-prefer-any-closest)))
-
-(defun company-occurrence-prefer-closest-above (pos match-beg match-end)
-  "Give priority to the matches above point, then those below point."
-  (if (< match-beg pos)
-      (- pos match-end)
-    (- match-beg (window-start))))
-
-(defun company-occurrence-prefer-any-closest (pos _match-beg match-end)
-  "Give priority to the matches closest to the point."
-  (abs (- pos match-end)))
-
-(defun company-sort-by-occurrence (candidates)
-  "Sort CANDIDATES according to their occurrences.
-Searches for each in the currently visible part of the current buffer and
-prioritizes the matches according to `company-occurrence-weight-function'.
-The rest of the list is appended unchanged.
-Keywords and function definition names are ignored."
-  (let* ((w-start (window-start))
-         (w-end (window-end))
-         (start-point (point))
-         occurs
-         (noccurs
-          (save-excursion
-            (cl-delete-if
-             (lambda (candidate)
-               (when (catch 'done
-                       (goto-char w-start)
-                       (while (search-forward candidate w-end t)
-                         (when (and (not (eq (point) start-point))
-                                    (save-match-data
-                                      (company--occurrence-predicate)))
-                           (throw 'done t))))
-                 (push
-                  (cons candidate
-                        (funcall company-occurrence-weight-function
-                                 start-point
-                                 (match-beginning 0)
-                                 (match-end 0)))
-                  occurs)
-                 t))
-             candidates))))
-    (nconc
-     (mapcar #'car (sort occurs (lambda (e1 e2) (<= (cdr e1) (cdr e2)))))
-     noccurs)))
-
-(defun company--occurrence-predicate ()
-  (defvar comint-last-prompt)
-  (let ((beg (match-beginning 0))
-        (end (match-end 0))
-        (comint-last-prompt (bound-and-true-p comint-last-prompt)))
-    (save-excursion
-      (goto-char end)
-      ;; Workaround for python-shell-completion-at-point's behavior:
-      ;; https://github.com/company-mode/company-mode/issues/759
-      ;; https://github.com/company-mode/company-mode/issues/549
-      (when (derived-mode-p 'inferior-python-mode)
-        (let ((lbp (line-beginning-position)))
-          (setq comint-last-prompt (cons lbp lbp))))
-      (and (not (memq (get-text-property (1- (point)) 'face)
-                      '(font-lock-function-name-face
-                        font-lock-keyword-face)))
-           (let ((prefix (company--prefix-str
-                          (company-call-backend 'prefix))))
-             (and (stringp prefix)
-                  (= (length prefix) (- end beg))))))))
-
-(defun company-sort-by-backend-importance (candidates)
-  "Sort CANDIDATES as two priority groups.
-If `company-backend' is a function, do nothing.  If it's a list, move
-candidates from backends before keyword `:with' to the front.  Candidates
-from the rest of the backends in the group, if any, will be left at the end."
-  (if (functionp company-backend)
-      candidates
-    (let ((low-priority (cdr (memq :with company-backend))))
-      (if (null low-priority)
-          candidates
-        (sort candidates
-              (lambda (c1 c2)
-                (and
-                 (let ((b2 (get-text-property 0 'company-backend c2)))
-                   (and b2 (memq b2 low-priority)))
-                 (let ((b1 (get-text-property 0 'company-backend c1)))
-                   (or (not b1) (not (memq b1 low-priority)))))))))))
-
-(defun company-sort-prefer-same-case-prefix (candidates)
-  "Prefer CANDIDATES with the exact same prefix.
-If a backend returns case insensitive matches, candidates with the an exact
-prefix match (same case) will be prioritized."
-  (cl-loop for candidate in candidates
-           if (string-prefix-p company-prefix candidate)
-           collect candidate into same-case
-           else collect candidate into other-case
-           finally return (append same-case other-case)))
-
-(defun company-idle-begin (buf win tick pos)
-  (and (eq buf (current-buffer))
-       (eq win (selected-window))
-       (eq tick (buffer-chars-modified-tick))
-       (eq pos (point))
-       (when (company-auto-begin)
-         (company-input-noop)
-         (let ((this-command 'company-idle-begin))
-           (company-post-command)))))
-
-(defun company-auto-begin ()
-  (and company-mode
-       (not company-candidates)
-       (let ((company-idle-delay 'now))
-         (condition-case-unless-debug err
-             (progn
-               (company--perform)
-               ;; Return non-nil if active.
-               company-candidates)
-           (error (message "Company: An error occurred in auto-begin")
-                  (message "%s" (error-message-string err))
-                  (company-cancel))
-           (quit (company-cancel))))))
-
-;;;###autoload
-(defun company-manual-begin ()
-  (interactive)
-  (company-assert-enabled)
-  (setq company--manual-action t)
-  (unwind-protect
-      (let ((company-minimum-prefix-length 0))
-        (or company-candidates
-            (company-auto-begin)))
-    (unless company-candidates
-      (setq company--manual-action nil))))
-
-(defun company-other-backend (&optional backward)
-  (interactive (list current-prefix-arg))
-  (company-assert-enabled)
-  (let* ((after (if company-backend
-                    (cdr (member company-backend company-backends))
-                  company-backends))
-         (before (cdr (member company-backend (reverse company-backends))))
-         (next (if backward
-                   (append before (reverse after))
-                 (append after (reverse before)))))
-    (company-cancel)
-    (cl-dolist (backend next)
-      (when (ignore-errors (company-begin-backend backend))
-        (cl-return t))))
-  (unless company-candidates
-    (user-error "No other backend")))
-
-(defun company-require-match-p ()
-  (let ((backend-value (company-call-backend 'require-match)))
-    (or (eq backend-value t)
-        (and (not (eq backend-value 'never))
-             (if (functionp company-require-match)
-                 (funcall company-require-match)
-               (eq company-require-match t))))))
-
-(defun company-auto-complete-p (input)
-  "Return non-nil if INPUT should trigger auto-completion."
-  (and (if (functionp company-auto-complete)
-           (funcall company-auto-complete)
-         company-auto-complete)
-       (if (functionp company-auto-complete-chars)
-           (funcall company-auto-complete-chars input)
-         (if (consp company-auto-complete-chars)
-             (memq (char-syntax (string-to-char input))
-                   company-auto-complete-chars)
-           (string-match (regexp-quote (substring input 0 1))
-                          company-auto-complete-chars)))))
-
-(defun company--incremental-p ()
-  (and (> (point) company-point)
-       (> (point-max) company--point-max)
-       (not (eq this-command 'backward-delete-char-untabify))
-       (equal (buffer-substring (- company-point (length company-prefix))
-                                company-point)
-              company-prefix)))
-
-(defun company--continue-failed (new-prefix)
-  (cond
-   ((and (or (not (company-require-match-p))
-             ;; Don't require match if the new prefix
-             ;; doesn't continue the old one, and the latter was a match.
-             (not (stringp new-prefix))
-             (<= (length new-prefix) (length company-prefix)))
-         (member company-prefix company-candidates))
-    ;; Last input was a success,
-    ;; but we're treating it as an abort + input anyway,
-    ;; like the `unique' case below.
-    (company-cancel 'non-unique))
-   ((company-require-match-p)
-    ;; Wrong incremental input, but required match.
-    (delete-char (- company-point (point)))
-    (ding)
-    (message "Matching input is required")
-    company-candidates)
-   (t (company-cancel))))
-
-(defun company--good-prefix-p (prefix)
-  (and (stringp (company--prefix-str prefix)) ;excludes 'stop
-       (or (eq (cdr-safe prefix) t)
-           (let ((len (or (cdr-safe prefix) (length prefix))))
-             (if company--manual-prefix
-                 (or (not company-abort-manual-when-too-short)
-                     ;; Must not be less than minimum or initial length.
-                     (>= len (min company-minimum-prefix-length
-                                  (length company--manual-prefix))))
-               (>= len company-minimum-prefix-length))))))
-
-(defun company--continue ()
-  (when (company-call-backend 'no-cache company-prefix)
-    ;; Don't complete existing candidates, fetch new ones.
-    (setq company-candidates-cache nil))
-  (let* ((new-prefix (company-call-backend 'prefix))
-         (c (when (and (company--good-prefix-p new-prefix)
-                       (setq new-prefix (company--prefix-str new-prefix))
-                       (= (- (point) (length new-prefix))
-                          (- company-point (length company-prefix))))
-              (company-calculate-candidates new-prefix))))
-    (cond
-     ((eq c t)
-      ;; t means complete/unique.
-      ;; Handle it like completion was aborted, to differentiate from user
-      ;; calling one of Company's commands to insert the candidate,
-      ;; not to trigger template expansion, etc.
-      (company-cancel 'unique))
-     ((consp c)
-      ;; incremental match
-      (setq company-prefix new-prefix)
-      (company-update-candidates c)
-      c)
-     ((and (> (point) company-point)
-           (company-auto-complete-p (buffer-substring-no-properties
-                                     (point) company-point)))
-      ;; auto-complete
-      (save-excursion
-        (goto-char company-point)
-        (let ((company--auto-completion t))
-          (company-complete-selection))
-        nil))
-     ((not (company--incremental-p))
-      (company-cancel))
-     (t (company--continue-failed new-prefix)))))
-
-(defun company--begin-new ()
-  (let (prefix c)
-    (cl-dolist (backend (if company-backend
-                            ;; prefer manual override
-                            (list company-backend)
-                          company-backends))
-      (setq prefix
-            (if (or (symbolp backend)
-                    (functionp backend))
-                (when (company--maybe-init-backend backend)
-                  (let ((company-backend backend))
-                    (company-call-backend 'prefix)))
-              (company--multi-backend-adapter backend 'prefix)))
-      (when prefix
-        (when (company--good-prefix-p prefix)
-          (setq company-prefix (company--prefix-str prefix)
-                company-backend backend
-                c (company-calculate-candidates company-prefix))
-          (if (not (consp c))
-              (progn
-                (when company--manual-action
-                  (message "No completion found"))
-                (when (eq c t)
-                  ;; t means complete/unique.
-                  ;; Run the hooks anyway, to e.g. clear the cache.
-                  (company-cancel 'unique)))
-            (when company--manual-action
-              (setq company--manual-prefix prefix))
-            (company-update-candidates c)
-            (run-hook-with-args 'company-completion-started-hook
-                                (company-explicit-action-p))
-            (company-call-frontends 'show)))
-        (cl-return c)))))
-
-(defun company--perform ()
-  (or (and company-candidates (company--continue))
-      (and (company--should-complete) (company--begin-new)))
-  (if (not company-candidates)
-      (setq company-backend nil)
-    (setq company-point (point)
-          company--point-max (point-max))
-    (company-ensure-emulation-alist)
-    (company-enable-overriding-keymap company-active-map)
-    (company-call-frontends 'update)))
-
-(defun company-cancel (&optional result)
-  (let ((prefix company-prefix)
-        (backend company-backend))
-    (setq company-backend nil
-          company-prefix nil
-          company-candidates nil
-          company-candidates-length nil
-          company-candidates-cache nil
-          company-candidates-predicate nil
-          company-common nil
-          company-selection 0
-          company-selection-changed nil
-          company--manual-action nil
-          company--manual-prefix nil
-          company--point-max nil
-          company-point nil)
-    (when company-timer
-      (cancel-timer company-timer))
-    (company-echo-cancel t)
-    (company-search-mode 0)
-    (company-call-frontends 'hide)
-    (company-enable-overriding-keymap nil)
-    (when prefix
-      ;; FIXME: RESULT can also be e.g. `unique'.  We should call
-      ;; `company-completion-finished-hook' in that case, with right argument.
-      (if (stringp result)
-          (let ((company-backend backend))
-            (run-hook-with-args 'company-completion-finished-hook result)
-            (company-call-backend 'post-completion result))
-        (run-hook-with-args 'company-completion-cancelled-hook result))))
-  ;; Make return value explicit.
-  nil)
-
-(defun company-abort ()
-  (interactive)
-  (company-cancel 'abort))
-
-(defun company-finish (result)
-  (company--insert-candidate result)
-  (company-cancel result))
-
-(defsubst company-keep (command)
-  (and (symbolp command) (get command 'company-keep)))
-
-(defun company-pre-command ()
-  (company--electric-restore-window-configuration)
-  (unless (company-keep this-command)
-    (condition-case-unless-debug err
-        (when company-candidates
-          (company-call-frontends 'pre-command)
-          (unless (company--should-continue)
-            (company-abort)))
-      (error (message "Company: An error occurred in pre-command")
-             (message "%s" (error-message-string err))
-             (company-cancel))))
-  (when company-timer
-    (cancel-timer company-timer)
-    (setq company-timer nil))
-  (company-echo-cancel t)
-  (company-uninstall-map))
-
-(defun company-post-command ()
-  (when (and company-candidates
-             (null this-command))
-    ;; Happens when the user presses `C-g' while inside
-    ;; `flyspell-post-command-hook', for example.
-    ;; Or any other `post-command-hook' function that can call `sit-for',
-    ;; or any quittable timer function.
-    (company-abort)
-    (setq this-command 'company-abort))
-  (unless (company-keep this-command)
-    (condition-case-unless-debug err
-        (progn
-          (unless (equal (point) company-point)
-            (let (company-idle-delay) ; Against misbehavior while debugging.
-              (company--perform)))
-          (if company-candidates
-              (company-call-frontends 'post-command)
-            (and (or (numberp company-idle-delay)
-                     ;; Deprecated.
-                     (eq company-idle-delay t))
-                 (not defining-kbd-macro)
-                 (company--should-begin)
-                 (setq company-timer
-                       (run-with-timer (company--idle-delay) nil
-                                       'company-idle-begin
-                                       (current-buffer) (selected-window)
-                                       (buffer-chars-modified-tick) (point))))))
-      (error (message "Company: An error occurred in post-command")
-             (message "%s" (error-message-string err))
-             (company-cancel))))
-  (company-install-map))
-
-(defun company--idle-delay ()
-  (if (memql company-idle-delay '(t 0 0.0))
-      0.01
-    company-idle-delay))
-
-(defvar company--begin-inhibit-commands '(company-abort
-                                          company-complete-mouse
-                                          company-complete
-                                          company-complete-common
-                                          company-complete-selection
-                                          company-complete-number)
-  "List of commands after which idle completion is (still) disabled when
-`company-begin-commands' is t.")
-
-(defun company--should-begin ()
-  (if (eq t company-begin-commands)
-      (not (memq this-command company--begin-inhibit-commands))
-    (or
-     (memq this-command company-begin-commands)
-     (and (symbolp this-command) (get this-command 'company-begin)))))
-
-;;; search ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defcustom company-search-regexp-function #'regexp-quote
-  "Function to construct the search regexp from input.
-It's called with one argument, the current search input.  It must return
-either a regexp without groups, or one where groups don't intersect and
-each one wraps a part of the input string."
-  :type '(choice
-          (const :tag "Exact match" regexp-quote)
-          (const :tag "Words separated with spaces" company-search-words-regexp)
-          (const :tag "Words separated with spaces, in any order"
-                 company-search-words-in-any-order-regexp)
-          (const :tag "All characters in given order, with anything in between"
-                 company-search-flex-regexp)))
-
-(defvar-local company-search-string "")
-
-(defvar company-search-lighter '(" "
-                                 (company-search-filtering "Filter" "Search")
-                                 ": \""
-                                 company-search-string
-                                 "\""))
-
-(defvar-local company-search-filtering nil
-  "Non-nil to filter the completion candidates by the search string")
-
-(defvar-local company--search-old-selection 0)
-
-(defvar-local company--search-old-changed nil)
-
-(defun company-search-words-regexp (input)
-  (mapconcat (lambda (word) (format "\\(%s\\)" (regexp-quote word)))
-             (split-string input " +" t) ".*"))
-
-(defun company-search-words-in-any-order-regexp (input)
-  (let* ((words (mapcar (lambda (word) (format "\\(%s\\)" (regexp-quote word)))
-                        (split-string input " +" t)))
-         (permutations (company--permutations words)))
-    (mapconcat (lambda (words)
-                 (mapconcat #'identity words ".*"))
-               permutations
-               "\\|")))
-
-(defun company-search-flex-regexp (input)
-  (if (zerop (length input))
-      ""
-    (concat (regexp-quote (string (aref input 0)))
-            (mapconcat (lambda (c)
-                         (concat "[^" (string c) "]*"
-                                 (regexp-quote (string c))))
-                       (substring input 1) ""))))
-
-(defun company--permutations (lst)
-  (if (not lst)
-      '(nil)
-    (cl-mapcan
-     (lambda (e)
-       (mapcar (lambda (perm) (cons e perm))
-               (company--permutations (cl-remove e lst :count 1))))
-     lst)))
-
-(defun company--search (text lines)
-  (let ((re (funcall company-search-regexp-function text))
-        (i 0))
-    (cl-dolist (line lines)
-      (when (string-match-p re line (length company-prefix))
-        (cl-return i))
-      (cl-incf i))))
-
-(defun company-search-keypad ()
-  (interactive)
-  (let* ((name (symbol-name last-command-event))
-         (last-command-event (aref name (1- (length name)))))
-    (company-search-printing-char)))
-
-(defun company-search-printing-char ()
-  (interactive)
-  (company--search-assert-enabled)
-  (let ((ss (concat company-search-string (string last-command-event))))
-    (when company-search-filtering
-      (company--search-update-predicate ss))
-    (company--search-update-string ss)))
-
-(defun company--search-update-predicate (ss)
-  (let* ((re (funcall company-search-regexp-function ss))
-         (company-candidates-predicate
-          (and (not (string= re ""))
-               company-search-filtering
-               (lambda (candidate) (string-match re candidate))))
-         (cc (company-calculate-candidates company-prefix)))
-    (unless cc (user-error "No match"))
-    (company-update-candidates cc)))
-
-(defun company--search-update-string (new)
-  (let* ((pos (company--search new (nthcdr company-selection company-candidates))))
-    (if (null pos)
-        (ding)
-      (setq company-search-string new)
-      (company-set-selection (+ company-selection pos) t))))
-
-(defun company--search-assert-input ()
-  (company--search-assert-enabled)
-  (when (string= company-search-string "")
-    (user-error "Empty search string")))
-
-(defun company-search-repeat-forward ()
-  "Repeat the incremental search in completion candidates forward."
-  (interactive)
-  (company--search-assert-input)
-  (let ((pos (company--search company-search-string
-                              (cdr (nthcdr company-selection
-                                           company-candidates)))))
-    (if (null pos)
-        (ding)
-      (company-set-selection (+ company-selection pos 1) t))))
-
-(defun company-search-repeat-backward ()
-  "Repeat the incremental search in completion candidates backwards."
-  (interactive)
-  (company--search-assert-input)
-  (let ((pos (company--search company-search-string
-                              (nthcdr (- company-candidates-length
-                                         company-selection)
-                                      (reverse company-candidates)))))
-    (if (null pos)
-        (ding)
-      (company-set-selection (- company-selection pos 1) t))))
-
-(defun company-search-toggle-filtering ()
-  "Toggle `company-search-filtering'."
-  (interactive)
-  (company--search-assert-enabled)
-  (setq company-search-filtering (not company-search-filtering))
-  (let ((ss company-search-string))
-    (company--search-update-predicate ss)
-    (company--search-update-string ss)))
-
-(defun company-search-abort ()
-  "Abort searching the completion candidates."
-  (interactive)
-  (company--search-assert-enabled)
-  (company-search-mode 0)
-  (company-set-selection company--search-old-selection t)
-  (setq company-selection-changed company--search-old-changed))
-
-(defun company-search-other-char ()
-  (interactive)
-  (company--search-assert-enabled)
-  (company-search-mode 0)
-  (company--unread-this-command-keys))
-
-(defun company-search-delete-char ()
-  (interactive)
-  (company--search-assert-enabled)
-  (if (string= company-search-string "")
-      (ding)
-    (let ((ss (substring company-search-string 0 -1)))
-      (when company-search-filtering
-        (company--search-update-predicate ss))
-      (company--search-update-string ss))))
-
-(defvar company-search-map
-  (let ((i 0)
-        (keymap (make-keymap)))
-    (if (fboundp 'max-char)
-        (set-char-table-range (nth 1 keymap) (cons #x100 (max-char))
-                              'company-search-printing-char)
-      (with-no-warnings
-        ;; obsolete in Emacs 23
-        (let ((l (generic-character-list))
-              (table (nth 1 keymap)))
-          (while l
-            (set-char-table-default table (car l) 'company-search-printing-char)
-            (setq l (cdr l))))))
-    (define-key keymap [t] 'company-search-other-char)
-    (while (< i ?\s)
-      (define-key keymap (make-string 1 i) 'company-search-other-char)
-      (cl-incf i))
-    (while (< i 256)
-      (define-key keymap (vector i) 'company-search-printing-char)
-      (cl-incf i))
-    (dotimes (i 10)
-      (define-key keymap (read (format "[kp-%s]" i)) 'company-search-keypad))
-    (let ((meta-map (make-sparse-keymap)))
-      (define-key keymap (char-to-string meta-prefix-char) meta-map)
-      (define-key keymap [escape] meta-map))
-    (define-key keymap (vector meta-prefix-char t) 'company-search-other-char)
-    (define-key keymap (kbd "M-n") 'company-select-next)
-    (define-key keymap (kbd "M-p") 'company-select-previous)
-    (define-key keymap (kbd "<down>") 'company-select-next-or-abort)
-    (define-key keymap (kbd "<up>") 'company-select-previous-or-abort)
-    (define-key keymap "\e\e\e" 'company-search-other-char)
-    (define-key keymap [escape escape escape] 'company-search-other-char)
-    (define-key keymap (kbd "DEL") 'company-search-delete-char)
-    (define-key keymap [backspace] 'company-search-delete-char)
-    (define-key keymap "\C-g" 'company-search-abort)
-    (define-key keymap "\C-s" 'company-search-repeat-forward)
-    (define-key keymap "\C-r" 'company-search-repeat-backward)
-    (define-key keymap "\C-o" 'company-search-toggle-filtering)
-    (dotimes (i 10)
-      (define-key keymap (read-kbd-macro (format "M-%d" i)) 'company-complete-number))
-    keymap)
-  "Keymap used for incrementally searching the completion candidates.")
-
-(define-minor-mode company-search-mode
-  "Search mode for completion candidates.
-Don't start this directly, use `company-search-candidates' or
-`company-filter-candidates'."
-  nil company-search-lighter nil
-  (if company-search-mode
-      (if (company-manual-begin)
-          (progn
-            (setq company--search-old-selection company-selection
-                  company--search-old-changed company-selection-changed)
-            (company-call-frontends 'update)
-            (company-enable-overriding-keymap company-search-map))
-        (setq company-search-mode nil))
-    (kill-local-variable 'company-search-string)
-    (kill-local-variable 'company-search-filtering)
-    (kill-local-variable 'company--search-old-selection)
-    (kill-local-variable 'company--search-old-changed)
-    (when company-backend
-      (company--search-update-predicate "")
-      (company-call-frontends 'update))
-    (company-enable-overriding-keymap company-active-map)))
-
-(defun company--search-assert-enabled ()
-  (company-assert-enabled)
-  (unless company-search-mode
-    (company-uninstall-map)
-    (user-error "Company not in search mode")))
-
-(defun company-search-candidates ()
-  "Start searching the completion candidates incrementally.
-
-\\<company-search-map>Search can be controlled with the commands:
-- `company-search-repeat-forward' (\\[company-search-repeat-forward])
-- `company-search-repeat-backward' (\\[company-search-repeat-backward])
-- `company-search-abort' (\\[company-search-abort])
-- `company-search-delete-char' (\\[company-search-delete-char])
-
-Regular characters are appended to the search string.
-
-Customize `company-search-regexp-function' to change how the input
-is interpreted when searching.
-
-The command `company-search-toggle-filtering' (\\[company-search-toggle-filtering])
-uses the search string to filter the completion candidates."
-  (interactive)
-  (company-search-mode 1))
-
-(defvar company-filter-map
-  (let ((keymap (make-keymap)))
-    (define-key keymap [remap company-search-printing-char]
-      'company-filter-printing-char)
-    (set-keymap-parent keymap company-search-map)
-    keymap)
-  "Keymap used for incrementally searching the completion candidates.")
-
-(defun company-filter-candidates ()
-  "Start filtering the completion candidates incrementally.
-This works the same way as `company-search-candidates' immediately
-followed by `company-search-toggle-filtering'."
-  (interactive)
-  (company-search-mode 1)
-  (setq company-search-filtering t))
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun company-select-next (&optional arg)
-  "Select the next candidate in the list.
-
-With ARG, move by that many elements."
-  (interactive "p")
-  (when (company-manual-begin)
-    (company-set-selection (+ (or arg 1) company-selection))))
-
-(defun company-select-previous (&optional arg)
-  "Select the previous candidate in the list.
-
-With ARG, move by that many elements."
-  (interactive "p")
-  (company-select-next (if arg (- arg) -1)))
-
-(defun company-select-next-or-abort (&optional arg)
-  "Select the next candidate if more than one, else abort
-and invoke the normal binding.
-
-With ARG, move by that many elements."
-  (interactive "p")
-  (if (> company-candidates-length 1)
-      (company-select-next arg)
-    (company-abort)
-    (company--unread-this-command-keys)))
-
-(defun company-select-previous-or-abort (&optional arg)
-  "Select the previous candidate if more than one, else abort
-and invoke the normal binding.
-
-With ARG, move by that many elements."
-  (interactive "p")
-  (if (> company-candidates-length 1)
-      (company-select-previous arg)
-    (company-abort)
-    (company--unread-this-command-keys)))
-
-(defun company-next-page ()
-  "Select the candidate one page further."
-  (interactive)
-  (when (company-manual-begin)
-    (if (and company-selection-wrap-around
-             (= company-selection (1- company-candidates-length)))
-        (company-set-selection 0)
-      (let (company-selection-wrap-around)
-        (company-set-selection (+ company-selection
-                                  company-tooltip-limit))))))
-
-(defun company-previous-page ()
-  "Select the candidate one page earlier."
-  (interactive)
-  (when (company-manual-begin)
-    (if (and company-selection-wrap-around
-             (zerop company-selection))
-        (company-set-selection (1- company-candidates-length))
-      (let (company-selection-wrap-around)
-        (company-set-selection (- company-selection
-                                  company-tooltip-limit))))))
-
-(defvar company-pseudo-tooltip-overlay)
-
-(defvar company-tooltip-offset)
-
-(defun company--inside-tooltip-p (event-col-row row height)
-  (let* ((ovl company-pseudo-tooltip-overlay)
-         (column (overlay-get ovl 'company-column))
-         (width (overlay-get ovl 'company-width))
-         (evt-col (car event-col-row))
-         (evt-row (cdr event-col-row)))
-    (and (>= evt-col column)
-         (< evt-col (+ column width))
-         (if (> height 0)
-             (and (> evt-row row)
-                  (<= evt-row (+ row height) ))
-           (and (< evt-row row)
-                (>= evt-row (+ row height)))))))
-
-(defun company--event-col-row (event)
-  (company--posn-col-row (event-start event)))
-
-(defun company-select-mouse (event)
-  "Select the candidate picked by the mouse."
-  (interactive "e")
-  (let ((event-col-row (company--event-col-row event))
-        (ovl-row (company--row))
-        (ovl-height (and company-pseudo-tooltip-overlay
-                         (min (overlay-get company-pseudo-tooltip-overlay
-                                           'company-height)
-                              company-candidates-length))))
-    (if (and ovl-height
-             (company--inside-tooltip-p event-col-row ovl-row ovl-height))
-        (progn
-          (company-set-selection (+ (cdr event-col-row)
-                                    (1- company-tooltip-offset)
-                                    (if (and (eq company-tooltip-offset-display 'lines)
-                                             (not (zerop company-tooltip-offset)))
-                                        -1 0)
-                                    (- ovl-row)
-                                    (if (< ovl-height 0)
-                                        (- 1 ovl-height)
-                                      0)))
-          t)
-      (company-abort)
-      (company--unread-this-command-keys)
-      nil)))
-
-(defun company-complete-mouse (event)
-  "Insert the candidate picked by the mouse."
-  (interactive "e")
-  (when (company-select-mouse event)
-    (company-complete-selection)))
-
-(defun company-complete-selection ()
-  "Insert the selected candidate."
-  (interactive)
-  (when (company-manual-begin)
-    (let ((result (nth company-selection company-candidates)))
-      (company-finish result))))
-
-(defun company-complete-common ()
-  "Insert the common part of all candidates."
-  (interactive)
-  (when (company-manual-begin)
-    (if (and (not (cdr company-candidates))
-             (equal company-common (car company-candidates)))
-        (company-complete-selection)
-      (company--insert-candidate company-common))))
-
-(defun company-complete-common-or-cycle (&optional arg)
-  "Insert the common part of all candidates, or select the next one.
-
-With ARG, move by that many elements."
-  (interactive "p")
-  (when (company-manual-begin)
-    (let ((tick (buffer-chars-modified-tick)))
-      (call-interactively 'company-complete-common)
-      (when (eq tick (buffer-chars-modified-tick))
-        (let ((company-selection-wrap-around t)
-              (current-prefix-arg arg))
-          (call-interactively 'company-select-next))))))
-
-(defun company-indent-or-complete-common ()
-  "Indent the current line or region, or complete the common part."
-  (interactive)
-  (cond
-   ((use-region-p)
-    (indent-region (region-beginning) (region-end)))
-   ((memq indent-line-function
-          '(indent-relative indent-relative-maybe))
-    (company-complete-common))
-   ((let ((old-point (point))
-          (old-tick (buffer-chars-modified-tick))
-          (tab-always-indent t))
-      (call-interactively #'indent-for-tab-command)
-      (when (and (eq old-point (point))
-                 (eq old-tick (buffer-chars-modified-tick)))
-        (company-complete-common))))))
-
-(defun company-select-next-if-tooltip-visible-or-complete-selection ()
-  "Insert selection if appropriate, or select the next candidate.
-Insert selection if only preview is showing or only one candidate,
-otherwise select the next candidate."
-  (interactive)
-  (if (and (company-tooltip-visible-p) (> company-candidates-length 1))
-      (call-interactively 'company-select-next)
-    (call-interactively 'company-complete-selection)))
-
-;;;###autoload
-(defun company-complete ()
-  "Insert the common part of all candidates or the current selection.
-The first time this is called, the common part is inserted, the second
-time, or when the selection has been changed, the selected candidate is
-inserted."
-  (interactive)
-  (when (company-manual-begin)
-    (if (or company-selection-changed
-            (eq last-command 'company-complete-common))
-        (call-interactively 'company-complete-selection)
-      (call-interactively 'company-complete-common)
-      (setq this-command 'company-complete-common))))
-
-(defun company-complete-number (n)
-  "Insert the Nth candidate visible in the tooltip.
-To show the number next to the candidates in some backends, enable
-`company-show-numbers'.  When called interactively, uses the last typed
-character, stripping the modifiers.  That character must be a digit."
-  (interactive
-   (list (let* ((type (event-basic-type last-command-event))
-                (char (if (characterp type)
-                          ;; Number on the main row.
-                          type
-                        ;; Keypad number, if bound directly.
-                        (car (last (string-to-list (symbol-name type))))))
-                (n (- char ?0)))
-           (if (zerop n) 10 n))))
-  (when (company-manual-begin)
-    (and (or (< n 1) (> n (- company-candidates-length
-                             company-tooltip-offset)))
-         (user-error "No candidate number %d" n))
-    (cl-decf n)
-    (company-finish (nth (+ n company-tooltip-offset)
-                         company-candidates))))
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defconst company-space-strings-limit 100)
-
-(defconst company-space-strings
-  (let (lst)
-    (dotimes (i company-space-strings-limit)
-      (push (make-string (- company-space-strings-limit 1 i) ?\  ) lst))
-    (apply 'vector lst)))
-
-(defun company-space-string (len)
-  (if (< len company-space-strings-limit)
-      (aref company-space-strings len)
-    (make-string len ?\ )))
-
-(defun company-safe-substring (str from &optional to)
-  (let ((bis buffer-invisibility-spec))
-    (if (> from (string-width str))
-        ""
-      (with-temp-buffer
-        (setq buffer-invisibility-spec bis)
-        (insert str)
-        (move-to-column from)
-        (let ((beg (point)))
-          (if to
-              (progn
-                (move-to-column to)
-                (concat (buffer-substring beg (point))
-                        (let ((padding (- to (current-column))))
-                          (when (> padding 0)
-                            (company-space-string padding)))))
-            (buffer-substring beg (point-max))))))))
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-last-metadata nil)
-
-(defun company-fetch-metadata ()
-  (let ((selected (nth company-selection company-candidates)))
-    (unless (eq selected (car company-last-metadata))
-      (setq company-last-metadata
-            (cons selected (company-call-backend 'meta selected))))
-    (cdr company-last-metadata)))
-
-(defun company-doc-buffer (&optional string)
-  (with-current-buffer (get-buffer-create "*company-documentation*")
-    (erase-buffer)
-    (when string
-      (save-excursion
-        (insert string)))
-    (current-buffer)))
-
-(defvar company--electric-saved-window-configuration nil)
-
-(defvar company--electric-commands
-  '(scroll-other-window scroll-other-window-down mwheel-scroll)
-  "List of Commands that won't break out of electric commands.")
-
-(defun company--electric-restore-window-configuration ()
-  "Restore window configuration (after electric commands)."
-  (when (and company--electric-saved-window-configuration
-             (not (memq this-command company--electric-commands)))
-    (set-window-configuration company--electric-saved-window-configuration)
-    (setq company--electric-saved-window-configuration nil)))
-
-(defmacro company--electric-do (&rest body)
-  (declare (indent 0) (debug t))
-  `(when (company-manual-begin)
-     (cl-assert (null company--electric-saved-window-configuration))
-     (setq company--electric-saved-window-configuration (current-window-configuration))
-     (let ((height (window-height))
-           (row (company--row)))
-       ,@body
-       (and (< (window-height) height)
-            (< (- (window-height) row 2) company-tooltip-limit)
-            (recenter (- (window-height) row 2))))))
-
-(defun company--unread-this-command-keys ()
-  (when (> (length (this-command-keys)) 0)
-    (setq unread-command-events (nconc
-                                 (listify-key-sequence (this-command-keys))
-                                 unread-command-events))
-    (clear-this-command-keys t)))
-
-(defun company-show-doc-buffer ()
-  "Temporarily show the documentation buffer for the selection."
-  (interactive)
-  (let (other-window-scroll-buffer)
-    (company--electric-do
-      (let* ((selected (nth company-selection company-candidates))
-             (doc-buffer (or (company-call-backend 'doc-buffer selected)
-                             (user-error "No documentation available")))
-             start)
-        (when (consp doc-buffer)
-          (setq start (cdr doc-buffer)
-                doc-buffer (car doc-buffer)))
-        (setq other-window-scroll-buffer (get-buffer doc-buffer))
-        (let ((win (display-buffer doc-buffer t)))
-          (set-window-start win (if start start (point-min))))))))
-(put 'company-show-doc-buffer 'company-keep t)
-
-(defun company-show-location ()
-  "Temporarily display a buffer showing the selected candidate in context."
-  (interactive)
-  (let (other-window-scroll-buffer)
-    (company--electric-do
-      (let* ((selected (nth company-selection company-candidates))
-             (location (company-call-backend 'location selected))
-             (pos (or (cdr location) (user-error "No location available")))
-             (buffer (or (and (bufferp (car location)) (car location))
-                         (find-file-noselect (car location) t))))
-        (setq other-window-scroll-buffer (get-buffer buffer))
-        (with-selected-window (display-buffer buffer t)
-          (save-restriction
-            (widen)
-            (if (bufferp (car location))
-                (goto-char pos)
-              (goto-char (point-min))
-              (forward-line (1- pos))))
-          (set-window-start nil (point)))))))
-(put 'company-show-location 'company-keep t)
-
-;;; package functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-callback nil)
-
-(defun company-remove-callback (&optional ignored)
-  (remove-hook 'company-completion-finished-hook company-callback t)
-  (remove-hook 'company-completion-cancelled-hook 'company-remove-callback t)
-  (remove-hook 'company-completion-finished-hook 'company-remove-callback t))
-
-(defun company-begin-backend (backend &optional callback)
-  "Start a completion at point using BACKEND."
-  (interactive (let ((val (completing-read "Company backend: "
-                                           obarray
-                                           'functionp nil "company-")))
-                 (when val
-                   (list (intern val)))))
-  (when (setq company-callback callback)
-    (add-hook 'company-completion-finished-hook company-callback nil t))
-  (add-hook 'company-completion-cancelled-hook 'company-remove-callback nil t)
-  (add-hook 'company-completion-finished-hook 'company-remove-callback nil t)
-  (setq company-backend backend)
-  ;; Return non-nil if active.
-  (or (company-manual-begin)
-      (user-error "Cannot complete at point")))
-
-(defun company-begin-with (candidates
-                           &optional prefix-length require-match callback)
-  "Start a completion at point.
-CANDIDATES is the list of candidates to use and PREFIX-LENGTH is the length
-of the prefix that already is in the buffer before point.
-It defaults to 0.
-
-CALLBACK is a function called with the selected result if the user
-successfully completes the input.
-
-Example: \(company-begin-with '\(\"foo\" \"foobar\" \"foobarbaz\"\)\)"
-  (let ((begin-marker (copy-marker (point) t)))
-    (company-begin-backend
-     (lambda (command &optional arg &rest ignored)
-       (pcase command
-         (`prefix
-          (when (equal (point) (marker-position begin-marker))
-            (buffer-substring (- (point) (or prefix-length 0)) (point))))
-         (`candidates
-          (all-completions arg candidates))
-         (`require-match
-          require-match)))
-     callback)))
-
-(declare-function find-library-name "find-func")
-(declare-function lm-version "lisp-mnt")
-
-(defun company-version (&optional show-version)
-  "Get the Company version as string.
-
-If SHOW-VERSION is non-nil, show the version in the echo area."
-  (interactive (list t))
-  (with-temp-buffer
-    (require 'find-func)
-    (insert-file-contents (find-library-name "company"))
-    (require 'lisp-mnt)
-    (if show-version
-        (message "Company version: %s" (lm-version))
-      (lm-version))))
-
-(defun company-diag ()
-  "Pop a buffer with information about completions at point."
-  (interactive)
-  (let* ((bb company-backends)
-         (mode (symbol-name major-mode))
-         backend
-         (prefix (cl-loop for b in bb
-                          thereis (let ((company-backend b))
-                                    (setq backend b)
-                                    (company-call-backend 'prefix))))
-         cc annotations)
-    (when (or (stringp prefix) (consp prefix))
-      (let ((company-backend backend))
-        (condition-case nil
-            (setq cc (company-call-backend 'candidates (company--prefix-str prefix))
-                  annotations
-                  (mapcar
-                   (lambda (c) (cons c (company-call-backend 'annotation c)))
-                   cc))
-          (error (setq annotations 'error)))))
-    (pop-to-buffer (get-buffer-create "*company-diag*"))
-    (setq buffer-read-only nil)
-    (erase-buffer)
-    (insert (format "Emacs %s (%s) of %s on %s"
-                    emacs-version system-configuration
-                    (format-time-string "%Y-%m-%d" emacs-build-time)
-                    emacs-build-system))
-    (insert "\nCompany " (company-version) "\n\n")
-    (insert "company-backends: " (pp-to-string bb))
-    (insert "\n")
-    (insert "Used backend: " (pp-to-string backend))
-    (insert "\n")
-    (insert "Major mode: " mode)
-    (insert "\n")
-    (insert "Prefix: " (pp-to-string prefix))
-    (insert "\n")
-    (insert (message  "Completions:"))
-    (unless cc (insert " none"))
-    (if (eq annotations 'error)
-        (insert "(error fetching)")
-      (save-excursion
-        (dolist (c annotations)
-          (insert "\n  " (prin1-to-string (car c)))
-          (when (cdr c)
-            (insert " " (prin1-to-string (cdr c)))))))
-    (special-mode)))
-
-;;; pseudo-tooltip ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-pseudo-tooltip-overlay nil)
-
-(defvar-local company-tooltip-offset 0)
-
-(defun company-tooltip--lines-update-offset (selection num-lines limit)
-  (cl-decf limit 2)
-  (setq company-tooltip-offset
-        (max (min selection company-tooltip-offset)
-             (- selection -1 limit)))
-
-  (when (<= company-tooltip-offset 1)
-    (cl-incf limit)
-    (setq company-tooltip-offset 0))
-
-  (when (>= company-tooltip-offset (- num-lines limit 1))
-    (cl-incf limit)
-    (when (= selection (1- num-lines))
-      (cl-decf company-tooltip-offset)
-      (when (<= company-tooltip-offset 1)
-        (setq company-tooltip-offset 0)
-        (cl-incf limit))))
-
-  limit)
-
-(defun company-tooltip--simple-update-offset (selection _num-lines limit)
-  (setq company-tooltip-offset
-        (if (< selection company-tooltip-offset)
-            selection
-          (max company-tooltip-offset
-               (- selection limit -1)))))
-
-;;; propertize
-
-(defsubst company-round-tab (arg)
-  (* (/ (+ arg tab-width) tab-width) tab-width))
-
-(defun company-plainify (str)
-  (let ((prefix (get-text-property 0 'line-prefix str)))
-    (when prefix ; Keep the original value unmodified, for no special reason.
-      (setq str (concat prefix str))
-      (remove-text-properties 0 (length str) '(line-prefix) str)))
-  (let* ((pieces (split-string str "\t"))
-         (copy pieces))
-    (while (cdr copy)
-      (setcar copy (company-safe-substring
-                    (car copy) 0 (company-round-tab (string-width (car copy)))))
-      (pop copy))
-    (apply 'concat pieces)))
-
-(defun company-fill-propertize (value annotation width selected left right)
-  (let* ((margin (length left))
-         (common (or (company-call-backend 'match value)
-                     (if company-common
-                         (string-width company-common)
-                       0)))
-         (_ (setq value (company--pre-render value)
-                  annotation (and annotation (company--pre-render annotation t))))
-         (ann-ralign company-tooltip-align-annotations)
-         (ann-truncate (< width
-                          (+ (length value) (length annotation)
-                             (if ann-ralign 1 0))))
-         (ann-start (+ margin
-                       (if ann-ralign
-                           (if ann-truncate
-                               (1+ (length value))
-                             (- width (length annotation)))
-                         (length value))))
-         (ann-end (min (+ ann-start (length annotation)) (+ margin width)))
-         (line (concat left
-                       (if (or ann-truncate (not ann-ralign))
-                           (company-safe-substring
-                            (concat value
-                                    (when (and annotation ann-ralign) " ")
-                                    annotation)
-                            0 width)
-                         (concat
-                          (company-safe-substring value 0
-                                                  (- width (length annotation)))
-                          annotation))
-                       right)))
-    (setq width (+ width margin (length right)))
-
-    (font-lock-append-text-property 0 width 'mouse-face
-                                    'company-tooltip-mouse
-                                    line)
-    (when (< ann-start ann-end)
-      (font-lock-append-text-property ann-start ann-end 'face
-                                      (if selected
-                                          'company-tooltip-annotation-selection
-                                        'company-tooltip-annotation)
-                                      line))
-    (cl-loop
-     with width = (- width (length right))
-     for (comp-beg . comp-end) in (if (integerp common) `((0 . ,common)) common)
-     for inline-beg = (+ margin comp-beg)
-     for inline-end = (min (+ margin comp-end) width)
-     when (< inline-beg width)
-     do (font-lock-prepend-text-property inline-beg inline-end 'face
-                                         (if selected
-                                             'company-tooltip-common-selection
-                                           'company-tooltip-common)
-                                         line))
-    (when (let ((re (funcall company-search-regexp-function
-                             company-search-string)))
-            (and (not (string= re ""))
-                 (string-match re value (length company-prefix))))
-      (pcase-dolist (`(,mbeg . ,mend) (company--search-chunks))
-        (let ((beg (+ margin mbeg))
-              (end (+ margin mend))
-              (width (- width (length right))))
-          (when (< beg width)
-            (font-lock-prepend-text-property beg (min end width) 'face
-                                             (if selected
-                                                 'company-tooltip-search-selection
-                                               'company-tooltip-search)
-                                             line)))))
-    (when selected
-      (font-lock-append-text-property 0 width 'face
-                                      'company-tooltip-selection
-                                      line))
-    (font-lock-append-text-property 0 width 'face
-                                    'company-tooltip
-                                    line)
-    line))
-
-(defun company--search-chunks ()
-  (let ((md (match-data t))
-        res)
-    (if (<= (length md) 2)
-        (push (cons (nth 0 md) (nth 1 md)) res)
-      (while (setq md (nthcdr 2 md))
-        (when (car md)
-          (push (cons (car md) (cadr md)) res))))
-    res))
-
-(defun company--pre-render (str &optional annotation-p)
-  (or (company-call-backend 'pre-render str annotation-p)
-      (progn
-        (when (or (text-property-not-all 0 (length str) 'face nil str)
-                  (text-property-not-all 0 (length str) 'mouse-face nil str))
-          (setq str (copy-sequence str))
-          (remove-text-properties 0 (length str)
-                                  '(face nil font-lock-face nil mouse-face nil)
-                                  str))
-        str)))
-
-(defun company--clean-string (str)
-  (replace-regexp-in-string
-   "\\([^[:graph:] ]\\)\\|\\(\ufeff\\)\\|[[:multibyte:]]"
-   (lambda (match)
-     (cond
-      ((match-beginning 1)
-       ;; FIXME: Better char for 'non-printable'?
-       ;; We shouldn't get any of these, but sometimes we might.
-       "\u2017")
-      ((match-beginning 2)
-       ;; Zero-width non-breakable space.
-       "")
-      ((> (string-width match) 1)
-       (concat
-        (make-string (1- (string-width match)) ?\ufeff)
-        match))
-      (t match)))
-   str))
-
-;;; replace
-
-(defun company-buffer-lines (beg end)
-  (goto-char beg)
-  (let (lines lines-moved)
-    (while (and (not (eobp)) ; http://debbugs.gnu.org/19553
-                (> (setq lines-moved (vertical-motion 1)) 0)
-                (<= (point) end))
-      (let ((bound (min end (point))))
-        ;; A visual line can contain several physical lines (e.g. with outline's
-        ;; folding overlay).  Take only the first one.
-        (push (buffer-substring beg
-                                (save-excursion
-                                  (goto-char beg)
-                                  (re-search-forward "$" bound 'move)
-                                  (point)))
-              lines))
-      ;; One physical line can be displayed as several visual ones as well:
-      ;; add empty strings to the list, to even the count.
-      (dotimes (_ (1- lines-moved))
-        (push "" lines))
-      (setq beg (point)))
-    (unless (eq beg end)
-      (push (buffer-substring beg end) lines))
-    (nreverse lines)))
-
-(defun company-modify-line (old new offset)
-  (concat (company-safe-substring old 0 offset)
-          new
-          (company-safe-substring old (+ offset (length new)))))
-
-(defsubst company--window-height ()
-  (if (fboundp 'window-screen-lines)
-      (floor (window-screen-lines))
-    (window-body-height)))
-
-(defun company--window-width ()
-  (let ((ww (window-body-width)))
-    ;; Account for the line continuation column.
-    (when (zerop (cadr (window-fringes)))
-      (cl-decf ww))
-    (when (bound-and-true-p display-line-numbers)
-      (cl-decf ww (+ 2 (line-number-display-width))))
-    (unless (or (display-graphic-p)
-                (version< "24.3.1" emacs-version))
-      ;; Emacs 24.3 and earlier included margins
-      ;; in window-width when in TTY.
-      (cl-decf ww
-               (let ((margins (window-margins)))
-                 (+ (or (car margins) 0)
-                    (or (cdr margins) 0)))))
-    (when (and word-wrap
-               (version< emacs-version "24.4.51.5"))
-      ;; http://debbugs.gnu.org/19300
-      (cl-decf ww))
-    ;; whitespace-mode with newline-mark
-    (when (and buffer-display-table
-               (aref buffer-display-table ?\n))
-      (cl-decf ww (1- (length (aref buffer-display-table ?\n)))))
-    ww))
-
-(defun company--replacement-string (lines old column nl &optional align-top)
-  (cl-decf column company-tooltip-margin)
-
-  (when (and align-top company-tooltip-flip-when-above)
-    (setq lines (reverse lines)))
-
-  (let ((width (length (car lines)))
-        (remaining-cols (- (+ (company--window-width) (window-hscroll))
-                           column)))
-    (when (> width remaining-cols)
-      (cl-decf column (- width remaining-cols))))
-
-  (let ((offset (and (< column 0) (- column)))
-        new)
-    (when offset
-      (setq column 0))
-    (when align-top
-      ;; untouched lines first
-      (dotimes (_ (- (length old) (length lines)))
-        (push (pop old) new)))
-    ;; length into old lines.
-    (while old
-      (push (company-modify-line (pop old)
-                                 (company--offset-line (pop lines) offset)
-                                 column)
-            new))
-    ;; Append whole new lines.
-    (while lines
-      (push (concat (company-space-string column)
-                    (company--offset-line (pop lines) offset))
-            new))
-
-    (let ((str (concat (when nl " \n")
-                       (mapconcat 'identity (nreverse new) "\n")
-                       "\n")))
-      (font-lock-append-text-property 0 (length str) 'face 'default str)
-      (when nl (put-text-property 0 1 'cursor t str))
-      str)))
-
-(defun company--offset-line (line offset)
-  (if (and offset line)
-      (substring line offset)
-    line))
-
-(defun company--create-lines (selection limit)
-  (let ((len company-candidates-length)
-        (window-width (company--window-width))
-        lines
-        width
-        lines-copy
-        items
-        previous
-        remainder
-        scrollbar-bounds)
-
-    ;; Maybe clear old offset.
-    (when (< len (+ company-tooltip-offset limit))
-      (setq company-tooltip-offset 0))
-
-    ;; Scroll to offset.
-    (if (eq company-tooltip-offset-display 'lines)
-        (setq limit (company-tooltip--lines-update-offset selection len limit))
-      (company-tooltip--simple-update-offset selection len limit))
-
-    (cond
-     ((eq company-tooltip-offset-display 'scrollbar)
-      (setq scrollbar-bounds (company--scrollbar-bounds company-tooltip-offset
-                                                        limit len)))
-     ((eq company-tooltip-offset-display 'lines)
-      (when (> company-tooltip-offset 0)
-        (setq previous (format "...(%d)" company-tooltip-offset)))
-      (setq remainder (- len limit company-tooltip-offset)
-            remainder (when (> remainder 0)
-                        (setq remainder (format "...(%d)" remainder))))))
-
-    (cl-decf selection company-tooltip-offset)
-    (setq width (max (length previous) (length remainder))
-          lines (nthcdr company-tooltip-offset company-candidates)
-          len (min limit len)
-          lines-copy lines)
-
-    (cl-decf window-width (* 2 company-tooltip-margin))
-    (when scrollbar-bounds (cl-decf window-width))
-
-    (dotimes (_ len)
-      (let* ((value (pop lines-copy))
-             (annotation (company-call-backend 'annotation value)))
-        (setq value (company--clean-string (company-reformat value)))
-        (when annotation
-          (setq annotation (company--clean-string annotation))
-          (when company-tooltip-align-annotations
-            ;; `lisp-completion-at-point' adds a space.
-            (setq annotation (comment-string-strip annotation t nil))))
-        (push (cons value annotation) items)
-        (setq width (max (+ (length value)
-                            (if (and annotation company-tooltip-align-annotations)
-                                (1+ (length annotation))
-                              (length annotation)))
-                         width))))
-
-    (setq width (min window-width
-                     company-tooltip-maximum-width
-                     (max company-tooltip-minimum-width
-                          (if company-show-numbers
-                              (+ 2 width)
-                            width))))
-
-    (let ((items (nreverse items))
-          (numbered (if company-show-numbers 0 99999))
-          new)
-      (when previous
-        (push (company--scrollpos-line previous width) new))
-
-      (dotimes (i len)
-        (let* ((item (pop items))
-               (str (car item))
-               (annotation (cdr item))
-               (right (company-space-string company-tooltip-margin))
-               (width width))
-          (when (< numbered 10)
-            (cl-decf width 2)
-            (cl-incf numbered)
-            (setq right (concat (format " %d" (mod numbered 10)) right)))
-          (push (concat
-                 (company-fill-propertize str annotation
-                                          width (equal i selection)
-                                          (company-space-string
-                                           company-tooltip-margin)
-                                          right)
-                 (when scrollbar-bounds
-                   (company--scrollbar i scrollbar-bounds)))
-                new)))
-
-      (when remainder
-        (push (company--scrollpos-line remainder width) new))
-
-      (nreverse new))))
-
-(defun company--scrollbar-bounds (offset limit length)
-  (when (> length limit)
-    (let* ((size (ceiling (* limit (float limit)) length))
-           (lower (floor (* limit (float offset)) length))
-           (upper (+ lower size -1)))
-      (cons lower upper))))
-
-(defun company--scrollbar (i bounds)
-  (propertize " " 'face
-              (if (and (>= i (car bounds)) (<= i (cdr bounds)))
-                  'company-scrollbar-fg
-                'company-scrollbar-bg)))
-
-(defun company--scrollpos-line (text width)
-  (propertize (concat (company-space-string company-tooltip-margin)
-                      (company-safe-substring text 0 width)
-                      (company-space-string company-tooltip-margin))
-              'face 'company-tooltip))
-
-;; show
-
-(defun company--pseudo-tooltip-height ()
-  "Calculate the appropriate tooltip height.
-Returns a negative number if the tooltip should be displayed above point."
-  (let* ((lines (company--row))
-         (below (- (company--window-height) 1 lines)))
-    (if (and (< below (min company-tooltip-minimum company-candidates-length))
-             (> lines below))
-        (- (max 3 (min company-tooltip-limit lines)))
-      (max 3 (min company-tooltip-limit below)))))
-
-(defun company-pseudo-tooltip-show (row column selection)
-  (company-pseudo-tooltip-hide)
-
-    (let* ((height (company--pseudo-tooltip-height))
-           above)
-
-      (when (< height 0)
-        (setq row (+ row height -1)
-              above t))
-
-      (let (nl beg end ov args)
-        (save-excursion
-          (setq nl (< (move-to-window-line row) row)
-                beg (point)
-                end (save-excursion
-                      (move-to-window-line (+ row (abs height)))
-                      (point))
-                ov (make-overlay beg end nil t)
-                args (list (mapcar 'company-plainify
-                                   (company-buffer-lines beg end))
-                           column nl above)))
-
-        (setq company-pseudo-tooltip-overlay ov)
-        (overlay-put ov 'company-replacement-args args)
-
-        (let ((lines (company--create-lines selection (abs height))))
-          (overlay-put ov 'company-display
-                       (apply 'company--replacement-string lines args))
-          (overlay-put ov 'company-width (string-width (car lines))))
-
-        (overlay-put ov 'company-column column)
-        (overlay-put ov 'company-height height))))
-
-(defun company-pseudo-tooltip-show-at-point (pos column-offset)
-  (let* ((col-row (company--col-row pos))
-         (col (- (car col-row) column-offset)))
-    (when (< col 0) (setq col 0))
-    (company-pseudo-tooltip-show (1+ (cdr col-row)) col company-selection)))
-
-(defun company-pseudo-tooltip-edit (selection)
-  (let* ((height (overlay-get company-pseudo-tooltip-overlay 'company-height))
-         (lines  (company--create-lines selection (abs height))))
-    (overlay-put company-pseudo-tooltip-overlay 'company-width
-                 (string-width (car lines)))
-    (overlay-put company-pseudo-tooltip-overlay 'company-display
-                 (apply 'company--replacement-string
-                        lines
-                        (overlay-get company-pseudo-tooltip-overlay
-                                     'company-replacement-args)))))
-
-(defun company-pseudo-tooltip-hide ()
-  (when company-pseudo-tooltip-overlay
-    (delete-overlay company-pseudo-tooltip-overlay)
-    (setq company-pseudo-tooltip-overlay nil)))
-
-(defun company-pseudo-tooltip-hide-temporarily ()
-  (when (overlayp company-pseudo-tooltip-overlay)
-    (overlay-put company-pseudo-tooltip-overlay 'invisible nil)
-    (overlay-put company-pseudo-tooltip-overlay 'line-prefix nil)
-    (overlay-put company-pseudo-tooltip-overlay 'after-string nil)
-    (overlay-put company-pseudo-tooltip-overlay 'display nil)))
-
-(defun company-pseudo-tooltip-unhide ()
-  (when company-pseudo-tooltip-overlay
-    (let* ((ov company-pseudo-tooltip-overlay)
-           (disp (overlay-get ov 'company-display)))
-      ;; Beat outline's folding overlays, at least.
-      (overlay-put ov 'priority 1)
-      ;; No (extra) prefix for the first line.
-      (overlay-put ov 'line-prefix "")
-      ;; `display' is better
-      ;; (http://debbugs.gnu.org/18285, http://debbugs.gnu.org/20847),
-      ;; but it doesn't work on 0-length overlays.
-      (if (< (overlay-start ov) (overlay-end ov))
-          (overlay-put ov 'display disp)
-        (overlay-put ov 'after-string disp)
-        (overlay-put ov 'invisible t))
-      (overlay-put ov 'window (selected-window)))))
-
-(defun company-pseudo-tooltip-guard ()
-  (list
-   (save-excursion (beginning-of-visual-line))
-   (window-width)
-   (let ((ov company-pseudo-tooltip-overlay)
-         (overhang (save-excursion (end-of-visual-line)
-                                   (- (line-end-position) (point)))))
-     (when (>= (overlay-get ov 'company-height) 0)
-       (cons
-        (buffer-substring-no-properties (point) (overlay-start ov))
-        (when (>= overhang 0) overhang))))))
-
-(defun company-pseudo-tooltip-frontend (command)
-  "`company-mode' frontend similar to a tooltip but based on overlays."
-  (cl-case command
-    (pre-command (company-pseudo-tooltip-hide-temporarily))
-    (post-command
-     (unless (when (overlayp company-pseudo-tooltip-overlay)
-              (let* ((ov company-pseudo-tooltip-overlay)
-                     (old-height (overlay-get ov 'company-height))
-                     (new-height (company--pseudo-tooltip-height)))
-                (and
-                 (>= (* old-height new-height) 0)
-                 (>= (abs old-height) (abs new-height))
-                 (equal (company-pseudo-tooltip-guard)
-                        (overlay-get ov 'company-guard)))))
-       ;; Redraw needed.
-       (company-pseudo-tooltip-show-at-point (point) (length company-prefix))
-       (overlay-put company-pseudo-tooltip-overlay
-                    'company-guard (company-pseudo-tooltip-guard)))
-     (company-pseudo-tooltip-unhide))
-    (hide (company-pseudo-tooltip-hide)
-          (setq company-tooltip-offset 0))
-    (update (when (overlayp company-pseudo-tooltip-overlay)
-              (company-pseudo-tooltip-edit company-selection)))))
-
-(defun company-pseudo-tooltip-unless-just-one-frontend (command)
-  "`company-pseudo-tooltip-frontend', but not shown for single candidates."
-  (unless (and (eq command 'post-command)
-               (company--show-inline-p))
-    (company-pseudo-tooltip-frontend command)))
-
-(defun company-pseudo-tooltip-unless-just-one-frontend-with-delay (command)
-  "`compandy-pseudo-tooltip-frontend', but shown after a delay.
-Delay is determined by `company-tooltip-idle-delay'."
-  (defvar company-preview-overlay)
-  (when (and (memq command '(pre-command hide))
-             company-tooltip-timer)
-    (cancel-timer company-tooltip-timer)
-    (setq company-tooltip-timer nil))
-  (cl-case command
-    (post-command
-     (if (or company-tooltip-timer
-             (overlayp company-pseudo-tooltip-overlay))
-         (if (not (overlayp company-preview-overlay))
-             (company-pseudo-tooltip-unless-just-one-frontend command)
-           (let (company-tooltip-timer)
-             (company-call-frontends 'pre-command))
-           (company-call-frontends 'post-command))
-       (setq company-tooltip-timer
-             (run-with-timer company-tooltip-idle-delay nil
-                             'company-pseudo-tooltip-unless-just-one-frontend-with-delay
-                             'post-command))))
-    (t
-     (company-pseudo-tooltip-unless-just-one-frontend command))))
-
-;;; overlay ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-preview-overlay nil)
-
-(defun company-preview-show-at-point (pos completion)
-  (company-preview-hide)
-
-  (setq completion (copy-sequence (company--pre-render completion)))
-  (font-lock-append-text-property 0 (length completion)
-                                  'face 'company-preview
-                                  completion)
-    (font-lock-prepend-text-property 0 (length company-common)
-                                     'face 'company-preview-common
-                                     completion)
-
-    ;; Add search string
-    (and (string-match (funcall company-search-regexp-function
-                                company-search-string)
-                       completion)
-         (pcase-dolist (`(,mbeg . ,mend) (company--search-chunks))
-           (font-lock-prepend-text-property mbeg mend
-                                            'face 'company-preview-search
-                                            completion)))
-
-    (setq completion (company-strip-prefix completion))
-
-    (and (equal pos (point))
-         (not (equal completion ""))
-         (add-text-properties 0 1 '(cursor 1) completion))
-
-    (let* ((beg pos)
-           (pto company-pseudo-tooltip-overlay)
-           (ptf-workaround (and
-                            pto
-                            (char-before pos)
-                            (eq pos (overlay-start pto)))))
-      ;; Try to accomodate for the pseudo-tooltip overlay,
-      ;; which may start at the same position if it's at eol.
-      (when ptf-workaround
-        (cl-decf beg)
-        (setq completion (concat (buffer-substring beg pos) completion)))
-
-      (setq company-preview-overlay (make-overlay beg pos))
-
-      (let ((ov company-preview-overlay))
-        (overlay-put ov (if ptf-workaround 'display 'after-string)
-                     completion)
-        (overlay-put ov 'window (selected-window)))))
-
-(defun company-preview-hide ()
-  (when company-preview-overlay
-    (delete-overlay company-preview-overlay)
-    (setq company-preview-overlay nil)))
-
-(defun company-preview-frontend (command)
-  "`company-mode' frontend showing the selection as if it had been inserted."
-  (pcase command
-    (`pre-command (company-preview-hide))
-    (`post-command (company-preview-show-at-point (point)
-                                                  (nth company-selection company-candidates)))
-    (`hide (company-preview-hide))))
-
-(defun company-preview-if-just-one-frontend (command)
-  "`company-preview-frontend', but only shown for single candidates."
-  (when (or (not (eq command 'post-command))
-            (company--show-inline-p))
-    (company-preview-frontend command)))
-
-(defun company--show-inline-p ()
-  (and (not (cdr company-candidates))
-       company-common
-       (or (eq (company-call-backend 'ignore-case) 'keep-prefix)
-           (string-prefix-p company-prefix company-common))))
-
-(defun company-tooltip-visible-p ()
-  "Returns whether the tooltip is visible."
-  (when (overlayp company-pseudo-tooltip-overlay)
-    (not (overlay-get company-pseudo-tooltip-overlay 'invisible))))
-
-(defun company-preview-common--show-p ()
-  "Returns whether the preview of common can be showed or not"
-  (and company-common
-       (or (eq (company-call-backend 'ignore-case) 'keep-prefix)
-           (string-prefix-p company-prefix company-common))))
-
-(defun company-preview-common-frontend (command)
-  "`company-mode' frontend preview the common part of candidates."
-  (when (or (not (eq command 'post-command))
-            (company-preview-common--show-p))
-    (pcase command
-      (`pre-command (company-preview-hide))
-      (`post-command (company-preview-show-at-point (point) company-common))
-      (`hide (company-preview-hide)))))
-
-;;; echo ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar-local company-echo-last-msg nil)
-
-(defvar company-echo-timer nil)
-
-(defvar company-echo-delay .01)
-
-(defcustom company-echo-truncate-lines t
-  "Whether frontend messages written to the echo area should be truncated."
-  :type 'boolean
-  :package-version '(company . "0.9.3"))
-
-(defun company-echo-show (&optional getter)
-  (when getter
-    (setq company-echo-last-msg (funcall getter)))
-  (let ((message-log-max nil)
-        (message-truncate-lines company-echo-truncate-lines))
-    (if company-echo-last-msg
-        (message "%s" company-echo-last-msg)
-      (message ""))))
-
-(defun company-echo-show-soon (&optional getter)
-  (company-echo-cancel)
-  (setq company-echo-timer (run-with-timer 0 nil 'company-echo-show getter)))
-
-(defun company-echo-cancel (&optional unset)
-  (when company-echo-timer
-    (cancel-timer company-echo-timer))
-  (when unset
-    (setq company-echo-timer nil)))
-
-(defun company-echo-show-when-idle (&optional getter)
-  (company-echo-cancel)
-  (setq company-echo-timer
-        (run-with-idle-timer company-echo-delay nil 'company-echo-show getter)))
-
-(defun company-echo-format ()
-
-  (let ((limit (window-body-width (minibuffer-window)))
-        (len -1)
-        ;; Roll to selection.
-        (candidates (nthcdr company-selection company-candidates))
-        (i (if company-show-numbers company-selection 99999))
-        comp msg)
-
-    (while candidates
-      (setq comp (company-reformat (pop candidates))
-            len (+ len 1 (length comp)))
-      (if (< i 10)
-          ;; Add number.
-          (progn
-            (setq comp (propertize (format "%d: %s" i comp)
-                                   'face 'company-echo))
-            (cl-incf len 3)
-            (cl-incf i)
-            (add-text-properties 3 (+ 3 (length company-common))
-                                 '(face company-echo-common) comp))
-        (setq comp (propertize comp 'face 'company-echo))
-        (add-text-properties 0 (length company-common)
-                             '(face company-echo-common) comp))
-      (if (>= len limit)
-          (setq candidates nil)
-        (push comp msg)))
-
-    (mapconcat 'identity (nreverse msg) " ")))
-
-(defun company-echo-strip-common-format ()
-
-  (let ((limit (window-body-width (minibuffer-window)))
-        (len (+ (length company-prefix) 2))
-        ;; Roll to selection.
-        (candidates (nthcdr company-selection company-candidates))
-        (i (if company-show-numbers company-selection 99999))
-        msg comp)
-
-    (while candidates
-      (setq comp (company-strip-prefix (pop candidates))
-            len (+ len 2 (length comp)))
-      (when (< i 10)
-        ;; Add number.
-        (setq comp (format "%s (%d)" comp i))
-        (cl-incf len 4)
-        (cl-incf i))
-      (if (>= len limit)
-          (setq candidates nil)
-        (push (propertize comp 'face 'company-echo) msg)))
-
-    (concat (propertize company-prefix 'face 'company-echo-common) "{"
-            (mapconcat 'identity (nreverse msg) ", ")
-            "}")))
-
-(defun company-echo-hide ()
-  (unless (equal company-echo-last-msg "")
-    (setq company-echo-last-msg "")
-    (company-echo-show)))
-
-(defun company-echo-frontend (command)
-  "`company-mode' frontend showing the candidates in the echo area."
-  (pcase command
-    (`post-command (company-echo-show-soon 'company-echo-format))
-    (`hide (company-echo-hide))))
-
-(defun company-echo-strip-common-frontend (command)
-  "`company-mode' frontend showing the candidates in the echo area."
-  (pcase command
-    (`post-command (company-echo-show-soon 'company-echo-strip-common-format))
-    (`hide (company-echo-hide))))
-
-(defun company-echo-metadata-frontend (command)
-  "`company-mode' frontend showing the documentation in the echo area."
-  (pcase command
-    (`post-command (company-echo-show-when-idle 'company-fetch-metadata))
-    (`hide (company-echo-hide))))
-
-(provide 'company)
-;;; company.el ends here
diff --git a/elpa/company-20181105.2312/company.elc b/elpa/company-20181105.2312/company.elc
deleted file mode 100644
index d6132ef..0000000
--- a/elpa/company-20181105.2312/company.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/company-c-headers-20180814.1730/company-c-headers-autoloads.el b/elpa/company-c-headers-20180814.1730/company-c-headers-autoloads.el
deleted file mode 100644
index 04e7f60..0000000
--- a/elpa/company-c-headers-20180814.1730/company-c-headers-autoloads.el
+++ /dev/null
@@ -1,28 +0,0 @@
-;;; company-c-headers-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "company-c-headers" "company-c-headers.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from company-c-headers.el
-
-(autoload 'company-c-headers "company-c-headers" "\
-Company backend for C/C++ header files.
-
-\(fn COMMAND &optional ARG &rest IGNORED)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "company-c-headers" '("call-if-function" "company-c-headers-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; company-c-headers-autoloads.el ends here
diff --git a/elpa/company-c-headers-20180814.1730/company-c-headers-pkg.el b/elpa/company-c-headers-20180814.1730/company-c-headers-pkg.el
deleted file mode 100644
index 19f8f60..0000000
--- a/elpa/company-c-headers-20180814.1730/company-c-headers-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "company-c-headers" "20180814.1730" "Company mode backend for C/C++ header files" '((emacs "24.1") (company "0.8")) :commit "41331192b3961c8e3a51540678e1d11eaa346f03" :keywords '("development" "company") :authors '(("Alastair Rankine" . "alastair@girtby.net")) :maintainer '("Alastair Rankine" . "alastair@girtby.net"))
diff --git a/elpa/company-c-headers-20180814.1730/company-c-headers.el b/elpa/company-c-headers-20180814.1730/company-c-headers.el
deleted file mode 100644
index 7cd54d6..0000000
--- a/elpa/company-c-headers-20180814.1730/company-c-headers.el
+++ /dev/null
@@ -1,194 +0,0 @@
-;;; company-c-headers.el --- Company mode backend for C/C++ header files  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2014 Alastair Rankine
-
-;; Author: Alastair Rankine <alastair@girtby.net>
-;; Keywords: development company
-;; Package-Version: 20180814.1730
-;; Package-Requires: ((emacs "24.1") (company "0.8"))
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this file.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This library enables the completion of C/C++ header file names using Company.
-;;
-;; To initialize it, just add it to `company-backends':
-;;
-;; (add-to-list 'company-backends 'company-c-headers)
-;;
-;; When you type an #include declaration within a supported major mode (see
-;; `company-c-headers-modes'), company-c-headers will search for header files
-;; within predefined search paths.  company-c-headers can search "system" and
-;; "user" paths, depending on the type of #include declaration you type.
-;;
-;; You will probably want to customize the `company-c-headers-path-user' and
-;; `company-c-headers-path-system' variables for your specific needs.
-
-;;; Code:
-
-(require 'company)
-(require 'rx)
-(require 'cl)
-(require 'cl-lib)
-
-(defgroup company-c-headers nil
-  "Completion back-end for C/C++ header files."
-  :group 'company)
-
-(defcustom company-c-headers-path-system
-  '("/usr/include/" "/usr/local/include/")
-  "List of paths to search for system (i.e. angle-bracket
-delimited) header files.  Alternatively, a function can be
-supplied which returns the path list."
-  :type '(choice (repeat directory)
-                 function)
-  )
-
-(defcustom company-c-headers-path-user
-  '(".")
-  "List of paths to search for user (i.e. double-quote delimited)
-header files.  Alternatively, a function can be supplied which
-returns the path list.  Note that paths in
-`company-c-headers-path-system' are implicitly appended."
-  :type '(choice (repeat directory)
-                 function)
-  )
-
-(defvar company-c-headers-include-declaration
-  (rx
-   line-start
-   "#" (zero-or-more blank) (or "include" "import")
-   (one-or-more blank)
-   (submatch
-    (in "<\"")
-    (zero-or-more (not (in ">\""))))
-   )
-  "Prefix matching C/C++/ObjC include directives.")
-
-(defvar company-c-headers-modes
-  `(
-    (c-mode     . ,(rx ".h" line-end))
-    (c++-mode   . ,(rx (or (: line-start (one-or-more (in "A-Za-z0-9_")))
-                           (or ".h" ".hpp" ".hxx" ".hh"))
-                       line-end))
-    (objc-mode  . ,(rx ".h" line-end))
-    )
-  "Assoc list of supported major modes and associated header file names.")
-
-(defun call-if-function (path)
-  "If PATH is bound to a function, return the result of calling it.
-Otherwise just return the value."
-  (if (functionp path)
-      (funcall path)
-    path))
-
-(defun company-c-headers--candidates-for (prefix dir)
-  "Return a list of candidates for PREFIX in directory DIR.
-Filters on the appropriate regex for the current major mode."
-  (let* ((delim (substring prefix 0 1))
-         (fileprefix (substring prefix 1))
-         (prefixdir (file-name-directory fileprefix))
-         (subdir (and prefixdir (concat (file-name-as-directory dir) prefixdir)))
-         (hdrs (cdr (assoc major-mode company-c-headers-modes)))
-         candidates)
-
-    ;; If we need to complete inside a subdirectory, use that
-    (when (and subdir (file-directory-p subdir))
-      (setq dir subdir)
-      (setq fileprefix (file-name-nondirectory fileprefix))
-      (setq delim (concat delim prefixdir))
-      )
-
-    ;; Using a list of completions for this directory, remove those that a) don't match the
-    ;; headers regexp, and b) are not directories (except for "." and ".." which ARE removed)
-    (setq candidates (cl-remove-if
-                      (lambda (F) (and (not (string-match-p hdrs F))
-                                       (or (cl-member (directory-file-name F) '("." "..") :test 'equal)
-                                           (not (file-directory-p (concat (file-name-as-directory dir) F))))))
-                      (file-name-all-completions fileprefix dir)))
-
-    ;; We want to see candidates in alphabetical order per directory
-    (setq candidates (sort candidates #'string<))
-
-    ;; Add the delimiter and metadata
-    (mapcar (lambda (C) (propertize (concat delim C) 'directory dir)) candidates)
-    ))
-
-(defun company-c-headers--candidates (prefix)
-  "Return candidates for PREFIX."
-  (let ((p (if (equal (aref prefix 0) ?\")
-               (call-if-function company-c-headers-path-user)
-             (call-if-function company-c-headers-path-system)))
-        (next (when (equal (aref prefix 0) ?\")
-                (call-if-function company-c-headers-path-system)))
-        candidates)
-    (while p
-      (when (file-directory-p (car p))
-        (setq candidates (append candidates (company-c-headers--candidates-for prefix (car p)))))
-
-      (setq p (or (cdr p)
-                  (let ((tmp next))
-                    (setq next nil)
-                    tmp)))
-      )
-    (remove-duplicates candidates :test 'equal)
-    ))
-
-(defun company-c-headers--meta (candidate)
-  "Return the metadata associated with CANDIDATE.  Currently just the directory."
-  (get-text-property 0 'directory candidate))
-
-(defun company-c-headers--location (candidate)
-  "Return the location associated with CANDIDATE."
-  (cons (concat (file-name-as-directory (get-text-property 0 'directory candidate))
-                (file-name-nondirectory (substring candidate 1)))
-        1))
-
-;;;###autoload
-(defun company-c-headers (command &optional arg &rest ignored)
-  "Company backend for C/C++ header files."
-  (interactive (list 'interactive))
-  (pcase command
-    (`interactive (company-begin-backend 'company-c-headers))
-    (`prefix
-     (when (and (assoc major-mode company-c-headers-modes)
-                (looking-back company-c-headers-include-declaration (line-beginning-position)))
-       (match-string-no-properties 1)))
-    (`sorted t)
-    (`candidates (company-c-headers--candidates arg))
-    (`meta (company-c-headers--meta arg))
-    (`location (company-c-headers--location arg))
-    (`post-completion
-     (when (looking-back company-c-headers-include-declaration (line-beginning-position))
-       (let ((matched (match-string-no-properties 1)))
-         (if (string= matched (file-name-as-directory matched))
-             ;; This is a directory, setting `this-command' to a `self-insert-command'
-             ;; tricks company to automatically trigger completion again for the
-             ;; directory files.
-             ;; See https://github.com/company-mode/company-mode/issues/143
-             (setq this-command 'self-insert-command)
-           ;; It's not a directory, add a terminating delimiter.
-           ;; If pre-existing terminating delimiter already exists,
-           ;; move cursor to end of line.
-           (pcase (aref matched 0)
-             (?\" (if (looking-at "\"") (end-of-line) (insert "\"")))
-             (?<  (if (looking-at ">") (end-of-line) (insert ">"))))))))
-    ))
-
-(provide 'company-c-headers)
-
-;;; company-c-headers.el ends here
diff --git a/elpa/company-c-headers-20180814.1730/company-c-headers.elc b/elpa/company-c-headers-20180814.1730/company-c-headers.elc
deleted file mode 100644
index 8c715f2..0000000
--- a/elpa/company-c-headers-20180814.1730/company-c-headers.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/dash-20180910.1856/dash-autoloads.el b/elpa/dash-20180910.1856/dash-autoloads.el
deleted file mode 100644
index 8bacbc8..0000000
--- a/elpa/dash-20180910.1856/dash-autoloads.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; dash-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "dash" "dash.el" (0 0 0 0))
-;;; Generated autoloads from dash.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "dash" '("dash-" "-keep" "-butlast" "-non" "-only-some" "-zip" "-e" "->" "-a" "-gr" "-when-let" "-d" "-l" "-s" "-p" "-r" "-m" "-i" "-f" "-u" "-value-to-list" "-t" "--" "-c" "!cons" "!cdr")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; dash-autoloads.el ends here
diff --git a/elpa/dash-20180910.1856/dash-pkg.el b/elpa/dash-20180910.1856/dash-pkg.el
deleted file mode 100644
index 29e7123..0000000
--- a/elpa/dash-20180910.1856/dash-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "dash" "20180910.1856" "A modern list library for Emacs" 'nil :commit "6514359b8606a6a9a94068ccd601fcd6379d6584" :keywords '("lists") :authors '(("Magnar Sveen" . "magnars@gmail.com")) :maintainer '("Magnar Sveen" . "magnars@gmail.com"))
diff --git a/elpa/dash-20180910.1856/dash.el b/elpa/dash-20180910.1856/dash.el
deleted file mode 100644
index ee67456..0000000
--- a/elpa/dash-20180910.1856/dash.el
+++ /dev/null
@@ -1,2993 +0,0 @@
-;;; dash.el --- A modern list library for Emacs  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2012-2016 Free Software Foundation, Inc.
-
-;; Author: Magnar Sveen <magnars@gmail.com>
-;; Version: 2.14.1
-;; Package-Version: 20180910.1856
-;; Keywords: lists
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; A modern list api for Emacs.
-;;
-;; See documentation on https://github.com/magnars/dash.el#functions
-;;
-;; **Please note** The lexical binding in this file is not utilised at the
-;; moment. We will take full advantage of lexical binding in an upcoming 3.0
-;; release of Dash. In the meantime, we've added the pragma to avoid a bug that
-;; you can read more about in https://github.com/magnars/dash.el/issues/130.
-;;
-
-;;; Code:
-
-(defgroup dash ()
-  "Customize group for dash.el"
-  :group 'lisp
-  :prefix "dash-")
-
-(defun dash--enable-fontlock (symbol value)
-  (when value
-    (dash-enable-font-lock))
-  (set-default symbol value))
-
-(defcustom dash-enable-fontlock nil
-  "If non-nil, enable fontification of dash functions, macros and
-special values."
-  :type 'boolean
-  :set 'dash--enable-fontlock
-  :group 'dash)
-
-(defmacro !cons (car cdr)
-  "Destructive: Set CDR to the cons of CAR and CDR."
-  `(setq ,cdr (cons ,car ,cdr)))
-
-(defmacro !cdr (list)
-  "Destructive: Set LIST to the cdr of LIST."
-  `(setq ,list (cdr ,list)))
-
-(defmacro --each (list &rest body)
-  "Anaphoric form of `-each'."
-  (declare (debug (form body))
-           (indent 1))
-  (let ((l (make-symbol "list")))
-    `(let ((,l ,list)
-           (it-index 0))
-       (while ,l
-         (let ((it (car ,l)))
-           ,@body)
-         (setq it-index (1+ it-index))
-         (!cdr ,l)))))
-
-(defmacro -doto (eval-initial-value &rest forms)
-  "Eval a form, then insert that form as the 2nd argument to other forms.
-The EVAL-INITIAL-VALUE form is evaluated once. Its result is
-passed to FORMS, which are then evaluated sequentially. Returns
-the target form."
-  (declare (indent 1))
-  (let ((retval (make-symbol "value")))
-    `(let ((,retval ,eval-initial-value))
-       ,@(mapcar (lambda (form)
-                   (if (sequencep form)
-                       `(,(-first-item form) ,retval ,@(cdr form))
-                     `(funcall form ,retval)))
-                 forms)
-       ,retval)))
-
-(defun -each (list fn)
-  "Call FN with every item in LIST. Return nil, used for side-effects only."
-  (--each list (funcall fn it)))
-
-(put '-each 'lisp-indent-function 1)
-
-(defalias '--each-indexed '--each)
-
-(defun -each-indexed (list fn)
-  "Call (FN index item) for each item in LIST.
-
-In the anaphoric form `--each-indexed', the index is exposed as symbol `it-index'.
-
-See also: `-map-indexed'."
-  (--each list (funcall fn it-index it)))
-(put '-each-indexed 'lisp-indent-function 1)
-
-(defmacro --each-while (list pred &rest body)
-  "Anaphoric form of `-each-while'."
-  (declare (debug (form form body))
-           (indent 2))
-  (let ((l (make-symbol "list"))
-        (c (make-symbol "continue")))
-    `(let ((,l ,list)
-           (,c t)
-           (it-index 0))
-       (while (and ,l ,c)
-         (let ((it (car ,l)))
-           (if (not ,pred) (setq ,c nil) ,@body))
-         (setq it-index (1+ it-index))
-         (!cdr ,l)))))
-
-(defun -each-while (list pred fn)
-  "Call FN with every item in LIST while (PRED item) is non-nil.
-Return nil, used for side-effects only."
-  (--each-while list (funcall pred it) (funcall fn it)))
-
-(put '-each-while 'lisp-indent-function 2)
-
-(defmacro --each-r (list &rest body)
-  "Anaphoric form of `-each-r'."
-  (declare (debug (form body))
-           (indent 1))
-  (let ((v (make-symbol "vector")))
-    ;; Implementation note: building vector is considerably faster
-    ;; than building a reversed list (vector takes less memory, so
-    ;; there is less GC), plus length comes naturally.  In-place
-    ;; 'nreverse' would be faster still, but BODY would be able to see
-    ;; that, even if modification was reversed before we return.
-    `(let* ((,v (vconcat ,list))
-            (it-index (length ,v))
-            it)
-       (while (> it-index 0)
-         (setq it-index (1- it-index))
-         (setq it (aref ,v it-index))
-         ,@body))))
-
-(defun -each-r (list fn)
-  "Call FN with every item in LIST in reversed order.
- Return nil, used for side-effects only."
-  (--each-r list (funcall fn it)))
-
-(defmacro --each-r-while (list pred &rest body)
-  "Anaphoric form of `-each-r-while'."
-  (declare (debug (form form body))
-           (indent 2))
-  (let ((v (make-symbol "vector")))
-    `(let* ((,v (vconcat ,list))
-            (it-index (length ,v))
-            it)
-       (while (> it-index 0)
-         (setq it-index (1- it-index))
-         (setq it (aref ,v it-index))
-         (if (not ,pred)
-             (setq it-index -1)
-           ,@body)))))
-
-(defun -each-r-while (list pred fn)
-  "Call FN with every item in reversed LIST while (PRED item) is non-nil.
-Return nil, used for side-effects only."
-  (--each-r-while list (funcall pred it) (funcall fn it)))
-
-(defmacro --dotimes (num &rest body)
-  "Repeatedly executes BODY (presumably for side-effects) with symbol `it' bound to integers from 0 through NUM-1."
-  (declare (debug (form body))
-           (indent 1))
-  (let ((n (make-symbol "num")))
-    `(let ((,n ,num)
-           (it 0))
-       (while (< it ,n)
-         ,@body
-         (setq it (1+ it))))))
-
-(defun -dotimes (num fn)
-  "Repeatedly calls FN (presumably for side-effects) passing in integers from 0 through NUM-1."
-  (--dotimes num (funcall fn it)))
-
-(put '-dotimes 'lisp-indent-function 1)
-
-(defun -map (fn list)
-  "Return a new list consisting of the result of applying FN to the items in LIST."
-  (mapcar fn list))
-
-(defmacro --map (form list)
-  "Anaphoric form of `-map'."
-  (declare (debug (form form)))
-  `(mapcar (lambda (it) ,form) ,list))
-
-(defmacro --reduce-from (form initial-value list)
-  "Anaphoric form of `-reduce-from'."
-  (declare (debug (form form form)))
-  `(let ((acc ,initial-value))
-     (--each ,list (setq acc ,form))
-     acc))
-
-(defun -reduce-from (fn initial-value list)
-  "Return the result of applying FN to INITIAL-VALUE and the
-first item in LIST, then applying FN to that result and the 2nd
-item, etc. If LIST contains no items, return INITIAL-VALUE and
-do not call FN.
-
-In the anaphoric form `--reduce-from', the accumulated value is
-exposed as symbol `acc'.
-
-See also: `-reduce', `-reduce-r'"
-  (--reduce-from (funcall fn acc it) initial-value list))
-
-(defmacro --reduce (form list)
-  "Anaphoric form of `-reduce'."
-  (declare (debug (form form)))
-  (let ((lv (make-symbol "list-value")))
-    `(let ((,lv ,list))
-       (if ,lv
-           (--reduce-from ,form (car ,lv) (cdr ,lv))
-         (let (acc it) ,form)))))
-
-(defun -reduce (fn list)
-  "Return the result of applying FN to the first 2 items in LIST,
-then applying FN to that result and the 3rd item, etc. If LIST
-contains no items, return the result of calling FN with no
-arguments. If LIST contains a single item, return that item
-and do not call FN.
-
-In the anaphoric form `--reduce', the accumulated value is
-exposed as symbol `acc'.
-
-See also: `-reduce-from', `-reduce-r'"
-  (if list
-      (-reduce-from fn (car list) (cdr list))
-    (funcall fn)))
-
-(defmacro --reduce-r-from (form initial-value list)
-  "Anaphoric version of `-reduce-r-from'."
-  (declare (debug (form form form)))
-  `(--reduce-from ,form ,initial-value (reverse ,list)))
-
-(defun -reduce-r-from (fn initial-value list)
-  "Replace conses with FN, nil with INITIAL-VALUE and evaluate
-the resulting expression. If LIST is empty, INITIAL-VALUE is
-returned and FN is not called.
-
-Note: this function works the same as `-reduce-from' but the
-operation associates from right instead of from left.
-
-See also: `-reduce-r', `-reduce'"
-  (--reduce-r-from (funcall fn it acc) initial-value list))
-
-(defmacro --reduce-r (form list)
-  "Anaphoric version of `-reduce-r'."
-  (declare (debug (form form)))
-  `(--reduce ,form (reverse ,list)))
-
-(defun -reduce-r (fn list)
-  "Replace conses with FN and evaluate the resulting expression.
-The final nil is ignored. If LIST contains no items, return the
-result of calling FN with no arguments. If LIST contains a single
-item, return that item and do not call FN.
-
-The first argument of FN is the new item, the second is the
-accumulated value.
-
-Note: this function works the same as `-reduce' but the operation
-associates from right instead of from left.
-
-See also: `-reduce-r-from', `-reduce'"
-  (if list
-      (--reduce-r (funcall fn it acc) list)
-    (funcall fn)))
-
-(defun -reductions-from (fn init list)
-  "Return a list of the intermediate values of the reduction.
-
-See `-reduce-from' for explanation of the arguments.
-
-See also: `-reductions', `-reductions-r', `-reduce-r'"
-  (nreverse (--reduce-from (cons (funcall fn (car acc) it) acc) (list init) list)))
-
-(defun -reductions (fn list)
-  "Return a list of the intermediate values of the reduction.
-
-See `-reduce' for explanation of the arguments.
-
-See also: `-reductions-from', `-reductions-r', `-reduce-r'"
-  (and list (-reductions-from fn (car list) (cdr list))))
-
-(defun -reductions-r-from (fn init list)
-  "Return a list of the intermediate values of the reduction.
-
-See `-reduce-r-from' for explanation of the arguments.
-
-See also: `-reductions-r', `-reductions', `-reduce'"
-  (--reduce-r-from (cons (funcall fn it (car acc)) acc) (list init) list))
-
-(defun -reductions-r (fn list)
-  "Return a list of the intermediate values of the reduction.
-
-See `-reduce-r' for explanation of the arguments.
-
-See also: `-reductions-r-from', `-reductions', `-reduce'"
-  (when list
-    (let ((rev (reverse list)))
-      (--reduce-from (cons (funcall fn it (car acc)) acc)
-                     (list (car rev))
-                     (cdr rev)))))
-
-(defmacro --filter (form list)
-  "Anaphoric form of `-filter'.
-
-See also: `--remove'."
-  (declare (debug (form form)))
-  (let ((r (make-symbol "result")))
-    `(let (,r)
-       (--each ,list (when ,form (!cons it ,r)))
-       (nreverse ,r))))
-
-(defun -filter (pred list)
-  "Return a new list of the items in LIST for which PRED returns a non-nil value.
-
-Alias: `-select'
-
-See also: `-keep', `-remove'."
-  (--filter (funcall pred it) list))
-
-(defalias '-select '-filter)
-(defalias '--select '--filter)
-
-(defmacro --remove (form list)
-  "Anaphoric form of `-remove'.
-
-See also `--filter'."
-  (declare (debug (form form)))
-  `(--filter (not ,form) ,list))
-
-(defun -remove (pred list)
-  "Return a new list of the items in LIST for which PRED returns nil.
-
-Alias: `-reject'
-
-See also: `-filter'."
-  (--remove (funcall pred it) list))
-
-(defalias '-reject '-remove)
-(defalias '--reject '--remove)
-
-(defun -remove-first (pred list)
-  "Return a new list with the first item matching PRED removed.
-
-Alias: `-reject-first'
-
-See also: `-remove', `-map-first'"
-  (let (front)
-    (while (and list (not (funcall pred (car list))))
-      (push (car list) front)
-      (!cdr list))
-    (if list
-        (-concat (nreverse front) (cdr list))
-      (nreverse front))))
-
-(defmacro --remove-first (form list)
-  "Anaphoric form of `-remove-first'."
-  (declare (debug (form form)))
-  `(-remove-first (lambda (it) ,form) ,list))
-
-(defalias '-reject-first '-remove-first)
-(defalias '--reject-first '--remove-first)
-
-(defun -remove-last (pred list)
-  "Return a new list with the last item matching PRED removed.
-
-Alias: `-reject-last'
-
-See also: `-remove', `-map-last'"
-  (nreverse (-remove-first pred (reverse list))))
-
-(defmacro --remove-last (form list)
-  "Anaphoric form of `-remove-last'."
-  (declare (debug (form form)))
-  `(-remove-last (lambda (it) ,form) ,list))
-
-(defalias '-reject-last '-remove-last)
-(defalias '--reject-last '--remove-last)
-
-(defun -remove-item (item list)
-  "Remove all occurences of ITEM from LIST.
-
-Comparison is done with `equal'."
-  (declare (pure t) (side-effect-free t))
-  (--remove (equal it item) list))
-
-(defmacro --keep (form list)
-  "Anaphoric form of `-keep'."
-  (declare (debug (form form)))
-  (let ((r (make-symbol "result"))
-        (m (make-symbol "mapped")))
-    `(let (,r)
-       (--each ,list (let ((,m ,form)) (when ,m (!cons ,m ,r))))
-       (nreverse ,r))))
-
-(defun -keep (fn list)
-  "Return a new list of the non-nil results of applying FN to the items in LIST.
-
-If you want to select the original items satisfying a predicate use `-filter'."
-  (--keep (funcall fn it) list))
-
-(defun -non-nil (list)
-  "Return all non-nil elements of LIST."
-  (declare (pure t) (side-effect-free t))
-  (-remove 'null list))
-
-(defmacro --map-indexed (form list)
-  "Anaphoric form of `-map-indexed'."
-  (declare (debug (form form)))
-  (let ((r (make-symbol "result")))
-    `(let (,r)
-       (--each ,list
-         (!cons ,form ,r))
-       (nreverse ,r))))
-
-(defun -map-indexed (fn list)
-  "Return a new list consisting of the result of (FN index item) for each item in LIST.
-
-In the anaphoric form `--map-indexed', the index is exposed as symbol `it-index'.
-
-See also: `-each-indexed'."
-  (--map-indexed (funcall fn it-index it) list))
-
-(defmacro --map-when (pred rep list)
-  "Anaphoric form of `-map-when'."
-  (declare (debug (form form form)))
-  (let ((r (make-symbol "result")))
-    `(let (,r)
-       (--each ,list (!cons (if ,pred ,rep it) ,r))
-       (nreverse ,r))))
-
-(defun -map-when (pred rep list)
-  "Return a new list where the elements in LIST that do not match the PRED function
-are unchanged, and where the elements in LIST that do match the PRED function are mapped
-through the REP function.
-
-Alias: `-replace-where'
-
-See also: `-update-at'"
-  (--map-when (funcall pred it) (funcall rep it) list))
-
-(defalias '-replace-where '-map-when)
-(defalias '--replace-where '--map-when)
-
-(defun -map-first (pred rep list)
-  "Replace first item in LIST satisfying PRED with result of REP called on this item.
-
-See also: `-map-when', `-replace-first'"
-  (let (front)
-    (while (and list (not (funcall pred (car list))))
-      (push (car list) front)
-      (!cdr list))
-    (if list
-        (-concat (nreverse front) (cons (funcall rep (car list)) (cdr list)))
-      (nreverse front))))
-
-(defmacro --map-first (pred rep list)
-  "Anaphoric form of `-map-first'."
-  `(-map-first (lambda (it) ,pred) (lambda (it) (ignore it) ,rep) ,list))
-
-(defun -map-last (pred rep list)
-  "Replace last item in LIST satisfying PRED with result of REP called on this item.
-
-See also: `-map-when', `-replace-last'"
-  (nreverse (-map-first pred rep (reverse list))))
-
-(defmacro --map-last (pred rep list)
-  "Anaphoric form of `-map-last'."
-  `(-map-last (lambda (it) ,pred) (lambda (it) (ignore it) ,rep) ,list))
-
-(defun -replace (old new list)
-  "Replace all OLD items in LIST with NEW.
-
-Elements are compared using `equal'.
-
-See also: `-replace-at'"
-  (declare (pure t) (side-effect-free t))
-  (--map-when (equal it old) new list))
-
-(defun -replace-first (old new list)
-  "Replace the first occurence of OLD with NEW in LIST.
-
-Elements are compared using `equal'.
-
-See also: `-map-first'"
-  (declare (pure t) (side-effect-free t))
-  (--map-first (equal old it) new list))
-
-(defun -replace-last (old new list)
-  "Replace the last occurence of OLD with NEW in LIST.
-
-Elements are compared using `equal'.
-
-See also: `-map-last'"
-  (declare (pure t) (side-effect-free t))
-  (--map-last (equal old it) new list))
-
-(defmacro --mapcat (form list)
-  "Anaphoric form of `-mapcat'."
-  (declare (debug (form form)))
-  `(apply 'append (--map ,form ,list)))
-
-(defun -mapcat (fn list)
-  "Return the concatenation of the result of mapping FN over LIST.
-Thus function FN should return a list."
-  (--mapcat (funcall fn it) list))
-
-(defun -flatten (l)
-  "Take a nested list L and return its contents as a single, flat list.
-
-Note that because `nil' represents a list of zero elements (an
-empty list), any mention of nil in L will disappear after
-flattening.  If you need to preserve nils, consider `-flatten-n'
-or map them to some unique symbol and then map them back.
-
-Conses of two atoms are considered \"terminals\", that is, they
-aren't flattened further.
-
-See also: `-flatten-n'"
-  (declare (pure t) (side-effect-free t))
-  (if (and (listp l) (listp (cdr l)))
-      (-mapcat '-flatten l)
-    (list l)))
-
-(defmacro --iterate (form init n)
-  "Anaphoric version of `-iterate'."
-  (declare (debug (form form form)))
-  `(-iterate (lambda (it) ,form) ,init ,n))
-
-(defun -flatten-n (num list)
-  "Flatten NUM levels of a nested LIST.
-
-See also: `-flatten'"
-  (declare (pure t) (side-effect-free t))
-  (-last-item (--iterate (--mapcat (-list it) it) list (1+ num))))
-
-(defun -concat (&rest lists)
-  "Return a new list with the concatenation of the elements in the supplied LISTS."
-  (declare (pure t) (side-effect-free t))
-  (apply 'append lists))
-
-(defalias '-copy 'copy-sequence
-  "Create a shallow copy of LIST.
-
-\(fn LIST)")
-
-(defun -splice (pred fun list)
-  "Splice lists generated by FUN in place of elements matching PRED in LIST.
-
-FUN takes the element matching PRED as input.
-
-This function can be used as replacement for `,@' in case you
-need to splice several lists at marked positions (for example
-with keywords).
-
-See also: `-splice-list', `-insert-at'"
-  (let (r)
-    (--each list
-      (if (funcall pred it)
-          (let ((new (funcall fun it)))
-            (--each new (!cons it r)))
-        (!cons it r)))
-    (nreverse r)))
-
-(defmacro --splice (pred form list)
-  "Anaphoric form of `-splice'."
-  `(-splice (lambda (it) ,pred) (lambda (it) ,form) ,list))
-
-(defun -splice-list (pred new-list list)
-  "Splice NEW-LIST in place of elements matching PRED in LIST.
-
-See also: `-splice', `-insert-at'"
-  (-splice pred (lambda (_) new-list) list))
-
-(defmacro --splice-list (pred new-list list)
-  "Anaphoric form of `-splice-list'."
-  `(-splice-list (lambda (it) ,pred) ,new-list ,list))
-
-(defun -cons* (&rest args)
-  "Make a new list from the elements of ARGS.
-
-The last 2 members of ARGS are used as the final cons of the
-result so if the final member of ARGS is not a list the result is
-a dotted list."
-  (declare (pure t) (side-effect-free t))
-  (-reduce-r 'cons args))
-
-(defun -snoc (list elem &rest elements)
-  "Append ELEM to the end of the list.
-
-This is like `cons', but operates on the end of list.
-
-If ELEMENTS is non nil, append these to the list as well."
-  (-concat list (list elem) elements))
-
-(defmacro --first (form list)
-  "Anaphoric form of `-first'."
-  (declare (debug (form form)))
-  (let ((n (make-symbol "needle")))
-    `(let (,n)
-       (--each-while ,list (not ,n)
-         (when ,form (setq ,n it)))
-       ,n)))
-
-(defun -first (pred list)
-  "Return the first x in LIST where (PRED x) is non-nil, else nil.
-
-To get the first item in the list no questions asked, use `car'.
-
-Alias: `-find'"
-  (--first (funcall pred it) list))
-
-(defalias '-find '-first)
-(defalias '--find '--first)
-
-(defmacro --some (form list)
-  "Anaphoric form of `-some'."
-  (declare (debug (form form)))
-  (let ((n (make-symbol "needle")))
-    `(let (,n)
-       (--each-while ,list (not ,n)
-         (setq ,n ,form))
-       ,n)))
-
-(defun -some (pred list)
-  "Return (PRED x) for the first LIST item where (PRED x) is non-nil, else nil.
-
-Alias: `-any'"
-  (--some (funcall pred it) list))
-
-(defalias '-any '-some)
-(defalias '--any '--some)
-
-(defmacro --last (form list)
-  "Anaphoric form of `-last'."
-  (declare (debug (form form)))
-  (let ((n (make-symbol "needle")))
-    `(let (,n)
-       (--each ,list
-         (when ,form (setq ,n it)))
-       ,n)))
-
-(defun -last (pred list)
-  "Return the last x in LIST where (PRED x) is non-nil, else nil."
-  (--last (funcall pred it) list))
-
-(defalias '-first-item 'car
-  "Return the first item of LIST, or nil on an empty list.
-
-See also: `-second-item', `-last-item'.
-
-\(fn LIST)")
-
-;; Ensure that calls to `-first-item' are compiled to a single opcode,
-;; just like `car'.
-(put '-first-item 'byte-opcode 'byte-car)
-(put '-first-item 'byte-compile 'byte-compile-one-arg)
-
-(defalias '-second-item 'cadr
-  "Return the second item of LIST, or nil if LIST is too short.
-
-See also: `-third-item'.
-
-\(fn LIST)")
-
-(defalias '-third-item 'caddr
-  "Return the third item of LIST, or nil if LIST is too short.
-
-See also: `-fourth-item'.
-
-\(fn LIST)")
-
-(defun -fourth-item (list)
-  "Return the fourth item of LIST, or nil if LIST is too short.
-
-See also: `-fifth-item'."
-  (declare (pure t) (side-effect-free t))
-  (car (cdr (cdr (cdr list)))))
-
-(defun -fifth-item (list)
-  "Return the fifth item of LIST, or nil if LIST is too short.
-
-See also: `-last-item'."
-  (declare (pure t) (side-effect-free t))
-  (car (cdr (cdr (cdr (cdr list))))))
-
-;; TODO: gv was introduced in 24.3, so we can remove the if statement
-;; when support for earlier versions is dropped
-(eval-when-compile
-  (require 'cl)
-  (if (fboundp 'gv-define-simple-setter)
-      (gv-define-simple-setter -first-item setcar)
-    (require 'cl)
-    (with-no-warnings
-      (defsetf -first-item (x) (val) `(setcar ,x ,val)))))
-
-(defun -last-item (list)
-  "Return the last item of LIST, or nil on an empty list."
-  (declare (pure t) (side-effect-free t))
-  (car (last list)))
-
-;; TODO: gv was introduced in 24.3, so we can remove the if statement
-;; when support for earlier versions is dropped
-(eval-when-compile
-  (if (fboundp 'gv-define-setter)
-      (gv-define-setter -last-item (val x) `(setcar (last ,x) ,val))
-    (with-no-warnings
-      (defsetf -last-item (x) (val) `(setcar (last ,x) ,val)))))
-
-(defun -butlast (list)
-  "Return a list of all items in list except for the last."
-  ;; no alias as we don't want magic optional argument
-  (declare (pure t) (side-effect-free t))
-  (butlast list))
-
-(defmacro --count (pred list)
-  "Anaphoric form of `-count'."
-  (declare (debug (form form)))
-  (let ((r (make-symbol "result")))
-    `(let ((,r 0))
-       (--each ,list (when ,pred (setq ,r (1+ ,r))))
-       ,r)))
-
-(defun -count (pred list)
-  "Counts the number of items in LIST where (PRED item) is non-nil."
-  (--count (funcall pred it) list))
-
-(defun ---truthy? (val)
-  (declare (pure t) (side-effect-free t))
-  (not (null val)))
-
-(defmacro --any? (form list)
-  "Anaphoric form of `-any?'."
-  (declare (debug (form form)))
-  `(---truthy? (--some ,form ,list)))
-
-(defun -any? (pred list)
-  "Return t if (PRED x) is non-nil for any x in LIST, else nil.
-
-Alias: `-any-p', `-some?', `-some-p'"
-  (--any? (funcall pred it) list))
-
-(defalias '-some? '-any?)
-(defalias '--some? '--any?)
-(defalias '-any-p '-any?)
-(defalias '--any-p '--any?)
-(defalias '-some-p '-any?)
-(defalias '--some-p '--any?)
-
-(defmacro --all? (form list)
-  "Anaphoric form of `-all?'."
-  (declare (debug (form form)))
-  (let ((a (make-symbol "all")))
-    `(let ((,a t))
-       (--each-while ,list ,a (setq ,a ,form))
-       (---truthy? ,a))))
-
-(defun -all? (pred list)
-  "Return t if (PRED x) is non-nil for all x in LIST, else nil.
-
-Alias: `-all-p', `-every?', `-every-p'"
-  (--all? (funcall pred it) list))
-
-(defalias '-every? '-all?)
-(defalias '--every? '--all?)
-(defalias '-all-p '-all?)
-(defalias '--all-p '--all?)
-(defalias '-every-p '-all?)
-(defalias '--every-p '--all?)
-
-(defmacro --none? (form list)
-  "Anaphoric form of `-none?'."
-  (declare (debug (form form)))
-  `(--all? (not ,form) ,list))
-
-(defun -none? (pred list)
-  "Return t if (PRED x) is nil for all x in LIST, else nil.
-
-Alias: `-none-p'"
-  (--none? (funcall pred it) list))
-
-(defalias '-none-p '-none?)
-(defalias '--none-p '--none?)
-
-(defmacro --only-some? (form list)
-  "Anaphoric form of `-only-some?'."
-  (declare (debug (form form)))
-  (let ((y (make-symbol "yes"))
-        (n (make-symbol "no")))
-    `(let (,y ,n)
-       (--each-while ,list (not (and ,y ,n))
-         (if ,form (setq ,y t) (setq ,n t)))
-       (---truthy? (and ,y ,n)))))
-
-(defun -only-some? (pred list)
-  "Return `t` if at least one item of LIST matches PRED and at least one item of LIST does not match PRED.
-Return `nil` both if all items match the predicate or if none of the items match the predicate.
-
-Alias: `-only-some-p'"
-  (--only-some? (funcall pred it) list))
-
-(defalias '-only-some-p '-only-some?)
-(defalias '--only-some-p '--only-some?)
-
-(defun -slice (list from &optional to step)
-  "Return copy of LIST, starting from index FROM to index TO.
-
-FROM or TO may be negative.  These values are then interpreted
-modulo the length of the list.
-
-If STEP is a number, only each STEPth item in the resulting
-section is returned.  Defaults to 1."
-  (declare (pure t) (side-effect-free t))
-  (let ((length (length list))
-        (new-list nil))
-    ;; to defaults to the end of the list
-    (setq to (or to length))
-    (setq step (or step 1))
-    ;; handle negative indices
-    (when (< from 0)
-      (setq from (mod from length)))
-    (when (< to 0)
-      (setq to (mod to length)))
-
-    ;; iterate through the list, keeping the elements we want
-    (--each-while list (< it-index to)
-      (when (and (>= it-index from)
-                 (= (mod (- from it-index) step) 0))
-        (push it new-list)))
-    (nreverse new-list)))
-
-(defun -take (n list)
-  "Return a new list of the first N items in LIST, or all items if there are fewer than N.
-
-See also: `-take-last'"
-  (declare (pure t) (side-effect-free t))
-  (let (result)
-    (--dotimes n
-      (when list
-        (!cons (car list) result)
-        (!cdr list)))
-    (nreverse result)))
-
-(defun -take-last (n list)
-  "Return the last N items of LIST in order.
-
-See also: `-take'"
-  (declare (pure t) (side-effect-free t))
-  (copy-sequence (last list n)))
-
-(defalias '-drop 'nthcdr
-  "Return the tail of LIST without the first N items.
-
-See also: `-drop-last'
-
-\(fn N LIST)")
-
-(defun -drop-last (n list)
-  "Remove the last N items of LIST and return a copy.
-
-See also: `-drop'"
-  ;; No alias because we don't want magic optional argument
-  (declare (pure t) (side-effect-free t))
-  (butlast list n))
-
-(defmacro --take-while (form list)
-  "Anaphoric form of `-take-while'."
-  (declare (debug (form form)))
-  (let ((r (make-symbol "result")))
-    `(let (,r)
-       (--each-while ,list ,form (!cons it ,r))
-       (nreverse ,r))))
-
-(defun -take-while (pred list)
-  "Return a new list of successive items from LIST while (PRED item) returns a non-nil value."
-  (--take-while (funcall pred it) list))
-
-(defmacro --drop-while (form list)
-  "Anaphoric form of `-drop-while'."
-  (declare (debug (form form)))
-  (let ((l (make-symbol "list")))
-    `(let ((,l ,list))
-       (while (and ,l (let ((it (car ,l))) ,form))
-         (!cdr ,l))
-       ,l)))
-
-(defun -drop-while (pred list)
-  "Return the tail of LIST starting from the first item for which (PRED item) returns nil."
-  (--drop-while (funcall pred it) list))
-
-(defun -split-at (n list)
-  "Return a list of ((-take N LIST) (-drop N LIST)), in no more than one pass through the list."
-  (declare (pure t) (side-effect-free t))
-  (let (result)
-    (--dotimes n
-      (when list
-        (!cons (car list) result)
-        (!cdr list)))
-    (list (nreverse result) list)))
-
-(defun -rotate (n list)
-  "Rotate LIST N places to the right.  With N negative, rotate to the left.
-The time complexity is O(n)."
-  (declare (pure t) (side-effect-free t))
-  (if (> n 0)
-      (append (last list n) (butlast list n))
-    (append (-drop (- n) list) (-take (- n) list))))
-
-(defun -insert-at (n x list)
-  "Return a list with X inserted into LIST at position N.
-
-See also: `-splice', `-splice-list'"
-  (declare (pure t) (side-effect-free t))
-  (let ((split-list (-split-at n list)))
-    (nconc (car split-list) (cons x (cadr split-list)))))
-
-(defun -replace-at (n x list)
-  "Return a list with element at Nth position in LIST replaced with X.
-
-See also: `-replace'"
-  (declare (pure t) (side-effect-free t))
-  (let ((split-list (-split-at n list)))
-    (nconc (car split-list) (cons x (cdr (cadr split-list))))))
-
-(defun -update-at (n func list)
-  "Return a list with element at Nth position in LIST replaced with `(func (nth n list))`.
-
-See also: `-map-when'"
-  (let ((split-list (-split-at n list)))
-    (nconc (car split-list) (cons (funcall func (car (cadr split-list))) (cdr (cadr split-list))))))
-
-(defmacro --update-at (n form list)
-  "Anaphoric version of `-update-at'."
-  (declare (debug (form form form)))
-  `(-update-at ,n (lambda (it) ,form) ,list))
-
-(defun -remove-at (n list)
-  "Return a list with element at Nth position in LIST removed.
-
-See also: `-remove-at-indices', `-remove'"
-  (declare (pure t) (side-effect-free t))
-  (-remove-at-indices (list n) list))
-
-(defun -remove-at-indices (indices list)
-  "Return a list whose elements are elements from LIST without
-elements selected as `(nth i list)` for all i
-from INDICES.
-
-See also: `-remove-at', `-remove'"
-  (declare (pure t) (side-effect-free t))
-  (let* ((indices (-sort '< indices))
-         (diffs (cons (car indices) (-map '1- (-zip-with '- (cdr indices) indices))))
-         r)
-    (--each diffs
-      (let ((split (-split-at it list)))
-        (!cons (car split) r)
-        (setq list (cdr (cadr split)))))
-    (!cons list r)
-    (apply '-concat (nreverse r))))
-
-(defmacro --split-with (pred list)
-  "Anaphoric form of `-split-with'."
-  (declare (debug (form form)))
-  (let ((l (make-symbol "list"))
-        (r (make-symbol "result"))
-        (c (make-symbol "continue")))
-    `(let ((,l ,list)
-           (,r nil)
-           (,c t))
-       (while (and ,l ,c)
-         (let ((it (car ,l)))
-           (if (not ,pred)
-               (setq ,c nil)
-             (!cons it ,r)
-             (!cdr ,l))))
-       (list (nreverse ,r) ,l))))
-
-(defun -split-with (pred list)
-  "Return a list of ((-take-while PRED LIST) (-drop-while PRED LIST)), in no more than one pass through the list."
-  (--split-with (funcall pred it) list))
-
-(defmacro -split-on (item list)
-  "Split the LIST each time ITEM is found.
-
-Unlike `-partition-by', the ITEM is discarded from the results.
-Empty lists are also removed from the result.
-
-Comparison is done by `equal'.
-
-See also `-split-when'"
-  (declare (debug (form form)))
-  `(-split-when (lambda (it) (equal it ,item)) ,list))
-
-(defmacro --split-when (form list)
-  "Anaphoric version of `-split-when'."
-  (declare (debug (form form)))
-  `(-split-when (lambda (it) ,form) ,list))
-
-(defun -split-when (fn list)
-  "Split the LIST on each element where FN returns non-nil.
-
-Unlike `-partition-by', the \"matched\" element is discarded from
-the results.  Empty lists are also removed from the result.
-
-This function can be thought of as a generalization of
-`split-string'."
-  (let (r s)
-    (while list
-      (if (not (funcall fn (car list)))
-          (push (car list) s)
-        (when s (push (nreverse s) r))
-        (setq s nil))
-      (!cdr list))
-    (when s (push (nreverse s) r))
-    (nreverse r)))
-
-(defmacro --separate (form list)
-  "Anaphoric form of `-separate'."
-  (declare (debug (form form)))
-  (let ((y (make-symbol "yes"))
-        (n (make-symbol "no")))
-    `(let (,y ,n)
-       (--each ,list (if ,form (!cons it ,y) (!cons it ,n)))
-       (list (nreverse ,y) (nreverse ,n)))))
-
-(defun -separate (pred list)
-  "Return a list of ((-filter PRED LIST) (-remove PRED LIST)), in one pass through the list."
-  (--separate (funcall pred it) list))
-
-(defun ---partition-all-in-steps-reversed (n step list)
-  "Private: Used by -partition-all-in-steps and -partition-in-steps."
-  (when (< step 1)
-    (error "Step must be a positive number, or you're looking at some juicy infinite loops."))
-  (let ((result nil))
-    (while list
-      (!cons (-take n list) result)
-      (setq list (-drop step list)))
-    result))
-
-(defun -partition-all-in-steps (n step list)
-  "Return a new list with the items in LIST grouped into N-sized sublists at offsets STEP apart.
-The last groups may contain less than N items."
-  (declare (pure t) (side-effect-free t))
-  (nreverse (---partition-all-in-steps-reversed n step list)))
-
-(defun -partition-in-steps (n step list)
-  "Return a new list with the items in LIST grouped into N-sized sublists at offsets STEP apart.
-If there are not enough items to make the last group N-sized,
-those items are discarded."
-  (declare (pure t) (side-effect-free t))
-  (let ((result (---partition-all-in-steps-reversed n step list)))
-    (while (and result (< (length (car result)) n))
-      (!cdr result))
-    (nreverse result)))
-
-(defun -partition-all (n list)
-  "Return a new list with the items in LIST grouped into N-sized sublists.
-The last group may contain less than N items."
-  (declare (pure t) (side-effect-free t))
-  (-partition-all-in-steps n n list))
-
-(defun -partition (n list)
-  "Return a new list with the items in LIST grouped into N-sized sublists.
-If there are not enough items to make the last group N-sized,
-those items are discarded."
-  (declare (pure t) (side-effect-free t))
-  (-partition-in-steps n n list))
-
-(defmacro --partition-by (form list)
-  "Anaphoric form of `-partition-by'."
-  (declare (debug (form form)))
-  (let ((r (make-symbol "result"))
-        (s (make-symbol "sublist"))
-        (v (make-symbol "value"))
-        (n (make-symbol "new-value"))
-        (l (make-symbol "list")))
-    `(let ((,l ,list))
-       (when ,l
-         (let* ((,r nil)
-                (it (car ,l))
-                (,s (list it))
-                (,v ,form)
-                (,l (cdr ,l)))
-           (while ,l
-             (let* ((it (car ,l))
-                    (,n ,form))
-               (unless (equal ,v ,n)
-                 (!cons (nreverse ,s) ,r)
-                 (setq ,s nil)
-                 (setq ,v ,n))
-               (!cons it ,s)
-               (!cdr ,l)))
-           (!cons (nreverse ,s) ,r)
-           (nreverse ,r))))))
-
-(defun -partition-by (fn list)
-  "Apply FN to each item in LIST, splitting it each time FN returns a new value."
-  (--partition-by (funcall fn it) list))
-
-(defmacro --partition-by-header (form list)
-  "Anaphoric form of `-partition-by-header'."
-  (declare (debug (form form)))
-  (let ((r (make-symbol "result"))
-        (s (make-symbol "sublist"))
-        (h (make-symbol "header-value"))
-        (b (make-symbol "seen-body?"))
-        (n (make-symbol "new-value"))
-        (l (make-symbol "list")))
-    `(let ((,l ,list))
-       (when ,l
-         (let* ((,r nil)
-                (it (car ,l))
-                (,s (list it))
-                (,h ,form)
-                (,b nil)
-                (,l (cdr ,l)))
-           (while ,l
-             (let* ((it (car ,l))
-                    (,n ,form))
-               (if (equal ,h ,n)
-                   (when ,b
-                     (!cons (nreverse ,s) ,r)
-                     (setq ,s nil)
-                     (setq ,b nil))
-                 (setq ,b t))
-               (!cons it ,s)
-               (!cdr ,l)))
-           (!cons (nreverse ,s) ,r)
-           (nreverse ,r))))))
-
-(defun -partition-by-header (fn list)
-  "Apply FN to the first item in LIST. That is the header
-value. Apply FN to each item in LIST, splitting it each time FN
-returns the header value, but only after seeing at least one
-other value (the body)."
-  (--partition-by-header (funcall fn it) list))
-
-(defun -partition-after-pred (pred list)
-  "Partition directly after each time PRED is true on an element of LIST."
-  (when list
-    (let ((rest (-partition-after-pred pred
-                                       (cdr list))))
-      (if (funcall pred (car list))
-          ;;split after (car list)
-          (cons (list (car list))
-                rest)
-
-        ;;don't split after (car list)
-        (cons (cons (car list)
-                    (car rest))
-              (cdr rest))))))
-
-(defun -partition-before-pred (pred list)
-  "Partition directly before each time PRED is true on an element of LIST."
-  (nreverse (-map #'reverse
-                  (-partition-after-pred pred (reverse list)))))
-
-(defun -partition-after-item (item list)
-  "Partition directly after each time ITEM appears in LIST."
-  (-partition-after-pred (lambda (ele) (equal ele item))
-                         list))
-
-(defun -partition-before-item (item list)
-  "Partition directly before each time ITEM appears in LIST."
-  (-partition-before-pred (lambda (ele) (equal ele item))
-                          list))
-
-(defmacro --group-by (form list)
-  "Anaphoric form of `-group-by'."
-  (declare (debug t))
-  (let ((n (make-symbol "n"))
-        (k (make-symbol "k"))
-        (grp (make-symbol "grp")))
-    `(nreverse
-      (-map
-       (lambda (,n)
-         (cons (car ,n)
-               (nreverse (cdr ,n))))
-       (--reduce-from
-        (let* ((,k (,@form))
-               (,grp (assoc ,k acc)))
-          (if ,grp
-              (setcdr ,grp (cons it (cdr ,grp)))
-            (push
-             (list ,k it)
-             acc))
-          acc)
-        nil ,list)))))
-
-(defun -group-by (fn list)
-  "Separate LIST into an alist whose keys are FN applied to the
-elements of LIST.  Keys are compared by `equal'."
-  (--group-by (funcall fn it) list))
-
-(defun -interpose (sep list)
-  "Return a new list of all elements in LIST separated by SEP."
-  (declare (pure t) (side-effect-free t))
-  (let (result)
-    (when list
-      (!cons (car list) result)
-      (!cdr list))
-    (while list
-      (setq result (cons (car list) (cons sep result)))
-      (!cdr list))
-    (nreverse result)))
-
-(defun -interleave (&rest lists)
-  "Return a new list of the first item in each list, then the second etc."
-  (declare (pure t) (side-effect-free t))
-  (when lists
-    (let (result)
-      (while (-none? 'null lists)
-        (--each lists (!cons (car it) result))
-        (setq lists (-map 'cdr lists)))
-      (nreverse result))))
-
-(defmacro --zip-with (form list1 list2)
-  "Anaphoric form of `-zip-with'.
-
-The elements in list1 are bound as symbol `it', the elements in list2 as symbol `other'."
-  (declare (debug (form form form)))
-  (let ((r (make-symbol "result"))
-        (l1 (make-symbol "list1"))
-        (l2 (make-symbol "list2")))
-    `(let ((,r nil)
-           (,l1 ,list1)
-           (,l2 ,list2))
-       (while (and ,l1 ,l2)
-         (let ((it (car ,l1))
-               (other (car ,l2)))
-           (!cons ,form ,r)
-           (!cdr ,l1)
-           (!cdr ,l2)))
-       (nreverse ,r))))
-
-(defun -zip-with (fn list1 list2)
-  "Zip the two lists LIST1 and LIST2 using a function FN.  This
-function is applied pairwise taking as first argument element of
-LIST1 and as second argument element of LIST2 at corresponding
-position.
-
-The anaphoric form `--zip-with' binds the elements from LIST1 as symbol `it',
-and the elements from LIST2 as symbol `other'."
-  (--zip-with (funcall fn it other) list1 list2))
-
-(defun -zip (&rest lists)
-  "Zip LISTS together.  Group the head of each list, followed by the
-second elements of each list, and so on. The lengths of the returned
-groupings are equal to the length of the shortest input list.
-
-If two lists are provided as arguments, return the groupings as a list
-of cons cells. Otherwise, return the groupings as a list of lists.
-
-Please note! This distinction is being removed in an upcoming 3.0
-release of Dash. If you rely on this behavior, use -zip-pair instead."
-  (declare (pure t) (side-effect-free t))
-  (when lists
-    (let (results)
-      (while (-none? 'null lists)
-        (setq results (cons (mapcar 'car lists) results))
-        (setq lists (mapcar 'cdr lists)))
-      (setq results (nreverse results))
-      (if (= (length lists) 2)
-          ;; to support backward compatability, return
-          ;; a cons cell if two lists were provided
-          (--map (cons (car it) (cadr it)) results)
-        results))))
-
-(defalias '-zip-pair '-zip)
-
-(defun -zip-fill (fill-value &rest lists)
-  "Zip LISTS, with FILL-VALUE padded onto the shorter lists. The
-lengths of the returned groupings are equal to the length of the
-longest input list."
-  (declare (pure t) (side-effect-free t))
-  (apply '-zip (apply '-pad (cons fill-value lists))))
-
-(defun -unzip (lists)
-  "Unzip LISTS.
-
-This works just like `-zip' but takes a list of lists instead of
-a variable number of arguments, such that
-
-  (-unzip (-zip L1 L2 L3 ...))
-
-is identity (given that the lists are the same length).
-
-See also: `-zip'"
-  (apply '-zip lists))
-
-(defun -cycle (list)
-  "Return an infinite copy of LIST that will cycle through the
-elements and repeat from the beginning."
-  (declare (pure t) (side-effect-free t))
-  (let ((newlist (-map 'identity list)))
-    (nconc newlist newlist)))
-
-(defun -pad (fill-value &rest lists)
-  "Appends FILL-VALUE to the end of each list in LISTS such that they
-will all have the same length."
-  (let* ((annotations (-annotate 'length lists))
-         (n (-max (-map 'car annotations))))
-    (--map (append (cdr it) (-repeat (- n (car it)) fill-value)) annotations)))
-
-(defun -annotate (fn list)
-  "Return a list of cons cells where each cell is FN applied to each
-element of LIST paired with the unmodified element of LIST."
-  (-zip (-map fn list) list))
-
-(defmacro --annotate (form list)
-  "Anaphoric version of `-annotate'."
-  (declare (debug (form form)))
-  `(-annotate (lambda (it) ,form) ,list))
-
-(defun dash--table-carry (lists restore-lists &optional re)
-  "Helper for `-table' and `-table-flat'.
-
-If a list overflows, carry to the right and reset the list."
-  (while (not (or (car lists)
-                  (equal lists '(nil))))
-    (setcar lists (car restore-lists))
-    (pop (cadr lists))
-    (!cdr lists)
-    (!cdr restore-lists)
-    (when re
-      (push (nreverse (car re)) (cadr re))
-      (setcar re nil)
-      (!cdr re))))
-
-(defun -table (fn &rest lists)
-  "Compute outer product of LISTS using function FN.
-
-The function FN should have the same arity as the number of
-supplied lists.
-
-The outer product is computed by applying fn to all possible
-combinations created by taking one element from each list in
-order.  The dimension of the result is (length lists).
-
-See also: `-table-flat'"
-  (let ((restore-lists (copy-sequence lists))
-        (last-list (last lists))
-        (re (make-list (length lists) nil)))
-    (while (car last-list)
-      (let ((item (apply fn (-map 'car lists))))
-        (push item (car re))
-        (setcar lists (cdar lists)) ;; silence byte compiler
-        (dash--table-carry lists restore-lists re)))
-    (nreverse (car (last re)))))
-
-(defun -table-flat (fn &rest lists)
-  "Compute flat outer product of LISTS using function FN.
-
-The function FN should have the same arity as the number of
-supplied lists.
-
-The outer product is computed by applying fn to all possible
-combinations created by taking one element from each list in
-order.  The results are flattened, ignoring the tensor structure
-of the result.  This is equivalent to calling:
-
-  (-flatten-n (1- (length lists)) (apply \\='-table fn lists))
-
-but the implementation here is much more efficient.
-
-See also: `-flatten-n', `-table'"
-  (let ((restore-lists (copy-sequence lists))
-        (last-list (last lists))
-        re)
-    (while (car last-list)
-      (let ((item (apply fn (-map 'car lists))))
-        (push item re)
-        (setcar lists (cdar lists)) ;; silence byte compiler
-        (dash--table-carry lists restore-lists)))
-    (nreverse re)))
-
-(defun -partial (fn &rest args)
-  "Take a function FN and fewer than the normal arguments to FN,
-and return a fn that takes a variable number of additional ARGS.
-When called, the returned function calls FN with ARGS first and
-then additional args."
-  (apply 'apply-partially fn args))
-
-(defun -elem-index (elem list)
-  "Return the index of the first element in the given LIST which
-is equal to the query element ELEM, or nil if there is no
-such element."
-  (declare (pure t) (side-effect-free t))
-  (car (-elem-indices elem list)))
-
-(defun -elem-indices (elem list)
-  "Return the indices of all elements in LIST equal to the query
-element ELEM, in ascending order."
-  (declare (pure t) (side-effect-free t))
-  (-find-indices (-partial 'equal elem) list))
-
-(defun -find-indices (pred list)
-  "Return the indices of all elements in LIST satisfying the
-predicate PRED, in ascending order."
-  (apply 'append (--map-indexed (when (funcall pred it) (list it-index)) list)))
-
-(defmacro --find-indices (form list)
-  "Anaphoric version of `-find-indices'."
-  (declare (debug (form form)))
-  `(-find-indices (lambda (it) ,form) ,list))
-
-(defun -find-index (pred list)
-  "Take a predicate PRED and a LIST and return the index of the
-first element in the list satisfying the predicate, or nil if
-there is no such element.
-
-See also `-first'."
-  (car (-find-indices pred list)))
-
-(defmacro --find-index (form list)
-  "Anaphoric version of `-find-index'."
-  (declare (debug (form form)))
-  `(-find-index (lambda (it) ,form) ,list))
-
-(defun -find-last-index (pred list)
-  "Take a predicate PRED and a LIST and return the index of the
-last element in the list satisfying the predicate, or nil if
-there is no such element.
-
-See also `-last'."
-  (-last-item (-find-indices pred list)))
-
-(defmacro --find-last-index (form list)
-  "Anaphoric version of `-find-last-index'."
-  `(-find-last-index (lambda (it) ,form) ,list))
-
-(defun -select-by-indices (indices list)
-  "Return a list whose elements are elements from LIST selected
-as `(nth i list)` for all i from INDICES."
-  (declare (pure t) (side-effect-free t))
-  (let (r)
-    (--each indices
-      (!cons (nth it list) r))
-    (nreverse r)))
-
-(defun -select-columns (columns table)
-  "Select COLUMNS from TABLE.
-
-TABLE is a list of lists where each element represents one row.
-It is assumed each row has the same length.
-
-Each row is transformed such that only the specified COLUMNS are
-selected.
-
-See also: `-select-column', `-select-by-indices'"
-  (declare (pure t) (side-effect-free t))
-  (--map (-select-by-indices columns it) table))
-
-(defun -select-column (column table)
-  "Select COLUMN from TABLE.
-
-TABLE is a list of lists where each element represents one row.
-It is assumed each row has the same length.
-
-The single selected column is returned as a list.
-
-See also: `-select-columns', `-select-by-indices'"
-  (declare (pure t) (side-effect-free t))
-  (--mapcat (-select-by-indices (list column) it) table))
-
-(defmacro -> (x &optional form &rest more)
-  "Thread the expr through the forms. Insert X as the second item
-in the first form, making a list of it if it is not a list
-already. If there are more forms, insert the first form as the
-second item in second form, etc."
-  (declare (debug (form &rest [&or symbolp (sexp &rest form)])))
-  (cond
-   ((null form) x)
-   ((null more) (if (listp form)
-                    `(,(car form) ,x ,@(cdr form))
-                  (list form x)))
-   (:else `(-> (-> ,x ,form) ,@more))))
-
-(defmacro ->> (x &optional form &rest more)
-  "Thread the expr through the forms. Insert X as the last item
-in the first form, making a list of it if it is not a list
-already. If there are more forms, insert the first form as the
-last item in second form, etc."
-  (declare (debug ->))
-  (cond
-   ((null form) x)
-   ((null more) (if (listp form)
-                    `(,@form ,x)
-                  (list form x)))
-   (:else `(->> (->> ,x ,form) ,@more))))
-
-(defmacro --> (x &rest forms)
-  "Starting with the value of X, thread each expression through FORMS.
-
-Insert X at the position signified by the symbol `it' in the first
-form.  If there are more forms, insert the first form at the position
-signified by `it' in in second form, etc."
-  (declare (debug (form body)))
-  `(-as-> ,x it ,@forms))
-
-(defmacro -as-> (value variable &rest forms)
-  "Starting with VALUE, thread VARIABLE through FORMS.
-
-In the first form, bind VARIABLE to VALUE.  In the second form, bind
-VARIABLE to the result of the first form, and so forth."
-  (declare (debug (form symbolp body)))
-  (if (null forms)
-      `,value
-    `(let ((,variable ,value))
-       (-as-> ,(if (symbolp (car forms))
-                 (list (car forms) variable)
-               (car forms))
-            ,variable
-              ,@(cdr forms)))))
-
-(defmacro -some-> (x &optional form &rest more)
-  "When expr is non-nil, thread it through the first form (via `->'),
-and when that result is non-nil, through the next form, etc."
-  (declare (debug ->))
-  (if (null form) x
-    (let ((result (make-symbol "result")))
-      `(-some-> (-when-let (,result ,x)
-                  (-> ,result ,form))
-                ,@more))))
-
-(defmacro -some->> (x &optional form &rest more)
-  "When expr is non-nil, thread it through the first form (via `->>'),
-and when that result is non-nil, through the next form, etc."
-  (declare (debug ->))
-  (if (null form) x
-    (let ((result (make-symbol "result")))
-      `(-some->> (-when-let (,result ,x)
-                   (->> ,result ,form))
-                 ,@more))))
-
-(defmacro -some--> (x &optional form &rest more)
-  "When expr in non-nil, thread it through the first form (via `-->'),
-and when that result is non-nil, through the next form, etc."
-  (declare (debug ->))
-  (if (null form) x
-    (let ((result (make-symbol "result")))
-      `(-some--> (-when-let (,result ,x)
-                   (--> ,result ,form))
-                 ,@more))))
-
-(defun -grade-up (comparator list)
-  "Grade elements of LIST using COMPARATOR relation, yielding a
-permutation vector such that applying this permutation to LIST
-sorts it in ascending order."
-  ;; ugly hack to "fix" lack of lexical scope
-  (let ((comp `(lambda (it other) (funcall ',comparator (car it) (car other)))))
-    (->> (--map-indexed (cons it it-index) list)
-         (-sort comp)
-         (-map 'cdr))))
-
-(defun -grade-down (comparator list)
-  "Grade elements of LIST using COMPARATOR relation, yielding a
-permutation vector such that applying this permutation to LIST
-sorts it in descending order."
-  ;; ugly hack to "fix" lack of lexical scope
-  (let ((comp `(lambda (it other) (funcall ',comparator (car other) (car it)))))
-    (->> (--map-indexed (cons it it-index) list)
-         (-sort comp)
-         (-map 'cdr))))
-
-(defvar dash--source-counter 0
-  "Monotonic counter for generated symbols.")
-
-(defun dash--match-make-source-symbol ()
-  "Generate a new dash-source symbol.
-
-All returned symbols are guaranteed to be unique."
-  (prog1 (make-symbol (format "--dash-source-%d--" dash--source-counter))
-    (setq dash--source-counter (1+ dash--source-counter))))
-
-(defun dash--match-ignore-place-p (symbol)
-  "Return non-nil if SYMBOL is a symbol and starts with _."
-  (and (symbolp symbol)
-       (eq (aref (symbol-name symbol) 0) ?_)))
-
-(defun dash--match-cons-skip-cdr (skip-cdr source)
-  "Helper function generating idiomatic shifting code."
-  (cond
-   ((= skip-cdr 0)
-    `(pop ,source))
-   (t
-    `(prog1 ,(dash--match-cons-get-car skip-cdr source)
-       (setq ,source ,(dash--match-cons-get-cdr (1+ skip-cdr) source))))))
-
-(defun dash--match-cons-get-car (skip-cdr source)
-  "Helper function generating idiomatic code to get nth car."
-  (cond
-   ((= skip-cdr 0)
-    `(car ,source))
-   ((= skip-cdr 1)
-    `(cadr ,source))
-   (t
-    `(nth ,skip-cdr ,source))))
-
-(defun dash--match-cons-get-cdr (skip-cdr source)
-  "Helper function generating idiomatic code to get nth cdr."
-  (cond
-   ((= skip-cdr 0)
-    source)
-   ((= skip-cdr 1)
-    `(cdr ,source))
-   (t
-    `(nthcdr ,skip-cdr ,source))))
-
-(defun dash--match-cons (match-form source)
-  "Setup a cons matching environment and call the real matcher."
-  (let ((s (dash--match-make-source-symbol))
-        (n 0)
-        (m match-form))
-    (while (and (consp m)
-                (dash--match-ignore-place-p (car m)))
-      (setq n (1+ n)) (!cdr m))
-    (cond
-     ;; when we only have one pattern in the list, we don't have to
-     ;; create a temporary binding (--dash-source--) for the source
-     ;; and just use the input directly
-     ((and (consp m)
-           (not (cdr m)))
-      (dash--match (car m) (dash--match-cons-get-car n source)))
-     ;; handle other special types
-     ((> n 0)
-      (dash--match m (dash--match-cons-get-cdr n source)))
-     ;; this is the only entry-point for dash--match-cons-1, that's
-     ;; why we can't simply use the above branch, it would produce
-     ;; infinite recursion
-     (t
-      (cons (list s source) (dash--match-cons-1 match-form s))))))
-
-(defun dash--match-cons-1 (match-form source &optional props)
-  "Match MATCH-FORM against SOURCE.
-
-MATCH-FORM is a proper or improper list.  Each element of
-MATCH-FORM is either a symbol, which gets bound to the respective
-value in source or another match form which gets destructured
-recursively.
-
-If the cdr of last cons cell in the list is `nil', matching stops
-there.
-
-SOURCE is a proper or improper list."
-  (let ((skip-cdr (or (plist-get props :skip-cdr) 0)))
-    (cond
-     ((consp match-form)
-      (cond
-       ((cdr match-form)
-        (cond
-         ((and (symbolp (car match-form))
-               (memq (car match-form) '(&keys &plist &alist &hash)))
-          (dash--match-kv (dash--match-kv-normalize-match-form match-form) (dash--match-cons-get-cdr skip-cdr source)))
-         ((dash--match-ignore-place-p (car match-form))
-          (dash--match-cons-1 (cdr match-form) source
-                              (plist-put props :skip-cdr (1+ skip-cdr))))
-         (t
-          (-concat (dash--match (car match-form) (dash--match-cons-skip-cdr skip-cdr source))
-                   (dash--match-cons-1 (cdr match-form) source)))))
-       (t ;; Last matching place, no need for shift
-        (dash--match (car match-form) (dash--match-cons-get-car skip-cdr source)))))
-     ((eq match-form nil)
-      nil)
-     (t ;; Handle improper lists.  Last matching place, no need for shift
-      (dash--match match-form (dash--match-cons-get-cdr skip-cdr source))))))
-
-(defun dash--vector-tail (seq start)
-  "Return the tail of SEQ starting at START."
-  (cond
-   ((vectorp seq)
-    (let* ((re-length (- (length seq) start))
-           (re (make-vector re-length 0)))
-      (--dotimes re-length (aset re it (aref seq (+ it start))))
-      re))
-   ((stringp seq)
-    (substring seq start))))
-
-(defun dash--match-vector (match-form source)
-  "Setup a vector matching environment and call the real matcher."
-  (let ((s (dash--match-make-source-symbol)))
-    (cond
-     ;; don't bind `s' if we only have one sub-pattern
-     ((= (length match-form) 1)
-      (dash--match (aref match-form 0) `(aref ,source 0)))
-     ;; if the source is a symbol, we don't need to re-bind it
-     ((symbolp source)
-      (dash--match-vector-1 match-form source))
-     ;; don't bind `s' if we only have one sub-pattern which is not ignored
-     ((let* ((ignored-places (mapcar 'dash--match-ignore-place-p match-form))
-             (ignored-places-n (length (-remove 'null ignored-places))))
-        (when (= ignored-places-n (1- (length match-form)))
-          (let ((n (-find-index 'null ignored-places)))
-            (dash--match (aref match-form n) `(aref ,source ,n))))))
-     (t
-      (cons (list s source) (dash--match-vector-1 match-form s))))))
-
-(defun dash--match-vector-1 (match-form source)
-  "Match MATCH-FORM against SOURCE.
-
-MATCH-FORM is a vector.  Each element of MATCH-FORM is either a
-symbol, which gets bound to the respective value in source or
-another match form which gets destructured recursively.
-
-If second-from-last place in MATCH-FORM is the symbol &rest, the
-next element of the MATCH-FORM is matched against the tail of
-SOURCE, starting at index of the &rest symbol.  This is
-conceptually the same as the (head . tail) match for improper
-lists, where dot plays the role of &rest.
-
-SOURCE is a vector.
-
-If the MATCH-FORM vector is shorter than SOURCE vector, only
-the (length MATCH-FORM) places are bound, the rest of the SOURCE
-is discarded."
-  (let ((i 0)
-        (l (length match-form))
-        (re))
-    (while (< i l)
-      (let ((m (aref match-form i)))
-        (push (cond
-               ((and (symbolp m)
-                     (eq m '&rest))
-                (prog1 (dash--match
-                        (aref match-form (1+ i))
-                        `(dash--vector-tail ,source ,i))
-                  (setq i l)))
-               ((and (symbolp m)
-                     ;; do not match symbols starting with _
-                     (not (eq (aref (symbol-name m) 0) ?_)))
-                (list (list m `(aref ,source ,i))))
-               ((not (symbolp m))
-                (dash--match m `(aref ,source ,i))))
-              re)
-        (setq i (1+ i))))
-    (-flatten-n 1 (nreverse re))))
-
-(defun dash--match-kv-normalize-match-form (pattern)
-  "Normalize kv PATTERN.
-
-This method normalizes PATTERN to the format expected by
-`dash--match-kv'.  See `-let' for the specification."
-  (let ((normalized (list (car pattern)))
-        (skip nil)
-        (fill-placeholder (make-symbol "--dash-fill-placeholder--")))
-    (-each (apply '-zip (-pad fill-placeholder (cdr pattern) (cddr pattern)))
-      (lambda (pair)
-        (let ((current (car pair))
-              (next (cdr pair)))
-          (if skip
-              (setq skip nil)
-            (if (or (eq fill-placeholder next)
-                    (not (or (and (symbolp next)
-                                  (not (keywordp next))
-                                  (not (eq next t))
-                                  (not (eq next nil)))
-                             (and (consp next)
-                                  (not (eq (car next) 'quote)))
-                             (vectorp next))))
-                (progn
-                  (cond
-                   ((keywordp current)
-                    (push current normalized)
-                    (push (intern (substring (symbol-name current) 1)) normalized))
-                   ((stringp current)
-                    (push current normalized)
-                    (push (intern current) normalized))
-                   ((and (consp current)
-                         (eq (car current) 'quote))
-                    (push current normalized)
-                    (push (cadr current) normalized))
-                   (t (error "-let: found key `%s' in kv destructuring but its pattern `%s' is invalid and can not be derived from the key" current next)))
-                  (setq skip nil))
-              (push current normalized)
-              (push next normalized)
-              (setq skip t))))))
-    (nreverse normalized)))
-
-(defun dash--match-kv (match-form source)
-  "Setup a kv matching environment and call the real matcher.
-
-kv can be any key-value store, such as plist, alist or hash-table."
-  (let ((s (dash--match-make-source-symbol)))
-    (cond
-     ;; don't bind `s' if we only have one sub-pattern (&type key val)
-     ((= (length match-form) 3)
-      (dash--match-kv-1 (cdr match-form) source (car match-form)))
-     ;; if the source is a symbol, we don't need to re-bind it
-     ((symbolp source)
-      (dash--match-kv-1 (cdr match-form) source (car match-form)))
-     (t
-      (cons (list s source) (dash--match-kv-1 (cdr match-form) s (car match-form)))))))
-
-(defun dash--match-kv-1 (match-form source type)
-  "Match MATCH-FORM against SOURCE of type TYPE.
-
-MATCH-FORM is a proper list of the form (key1 place1 ... keyN
-placeN).  Each placeK is either a symbol, which gets bound to the
-value of keyK retrieved from the key-value store, or another
-match form which gets destructured recursively.
-
-SOURCE is a key-value store of type TYPE, which can be a plist,
-an alist or a hash table.
-
-TYPE is a token specifying the type of the key-value store.
-Valid values are &plist, &alist and &hash."
-  (-flatten-n 1 (-map
-                 (lambda (kv)
-                   (let* ((k (car kv))
-                          (v (cadr kv))
-                          (getter (cond
-                                   ((or (eq type '&plist) (eq type '&keys))
-                                    `(plist-get ,source ,k))
-                                   ((eq type '&alist)
-                                    `(cdr (assoc ,k ,source)))
-                                   ((eq type '&hash)
-                                    `(gethash ,k ,source)))))
-                     (cond
-                      ((symbolp v)
-                       (list (list v getter)))
-                      (t (dash--match v getter)))))
-                 (-partition 2 match-form))))
-
-(defun dash--match-symbol (match-form source)
-  "Bind a symbol.
-
-This works just like `let', there is no destructuring."
-  (list (list match-form source)))
-
-(defun dash--match (match-form source)
-  "Match MATCH-FORM against SOURCE.
-
-This function tests the MATCH-FORM and dispatches to specific
-matchers based on the type of the expression.
-
-Key-value stores are disambiguated by placing a token &plist,
-&alist or &hash as a first item in the MATCH-FORM."
-  (cond
-   ((symbolp match-form)
-    (dash--match-symbol match-form source))
-   ((consp match-form)
-    (cond
-     ;; Handle the "x &as" bindings first.
-     ((and (consp (cdr match-form))
-           (symbolp (car match-form))
-           (eq '&as (cadr match-form)))
-      (let ((s (car match-form)))
-        (cons (list s source)
-              (dash--match (cddr match-form) s))))
-     ((memq (car match-form) '(&keys &plist &alist &hash))
-      (dash--match-kv (dash--match-kv-normalize-match-form match-form) source))
-     (t (dash--match-cons match-form source))))
-   ((vectorp match-form)
-    ;; We support the &as binding in vectors too
-    (cond
-     ((and (> (length match-form) 2)
-           (symbolp (aref match-form 0))
-           (eq '&as (aref match-form 1)))
-      (let ((s (aref match-form 0)))
-        (cons (list s source)
-              (dash--match (dash--vector-tail match-form 2) s))))
-     (t (dash--match-vector match-form source))))))
-
-(defun dash--normalize-let-varlist (varlist)
-  "Normalize VARLIST so that every binding is a list.
-
-`let' allows specifying a binding which is not a list but simply
-the place which is then automatically bound to nil, such that all
-three of the following are identical and evaluate to nil.
-
-  (let (a) a)
-  (let ((a)) a)
-  (let ((a nil)) a)
-
-This function normalizes all of these to the last form."
-  (--map (if (consp it) it (list it nil)) varlist))
-
-(defmacro -let* (varlist &rest body)
-  "Bind variables according to VARLIST then eval BODY.
-
-VARLIST is a list of lists of the form (PATTERN SOURCE).  Each
-PATTERN is matched against the SOURCE structurally.  SOURCE is
-only evaluated once for each PATTERN.
-
-Each SOURCE can refer to the symbols already bound by this
-VARLIST.  This is useful if you want to destructure SOURCE
-recursively but also want to name the intermediate structures.
-
-See `-let' for the list of all possible patterns."
-  (declare (debug ((&rest [&or (sexp form) sexp]) body))
-           (indent 1))
-  (let* ((varlist (dash--normalize-let-varlist varlist))
-         (bindings (--mapcat (dash--match (car it) (cadr it)) varlist)))
-    `(let* ,bindings
-       ,@body)))
-
-(defmacro -let (varlist &rest body)
-  "Bind variables according to VARLIST then eval BODY.
-
-VARLIST is a list of lists of the form (PATTERN SOURCE).  Each
-PATTERN is matched against the SOURCE \"structurally\".  SOURCE
-is only evaluated once for each PATTERN.  Each PATTERN is matched
-recursively, and can therefore contain sub-patterns which are
-matched against corresponding sub-expressions of SOURCE.
-
-All the SOURCEs are evalled before any symbols are
-bound (i.e. \"in parallel\").
-
-If VARLIST only contains one (PATTERN SOURCE) element, you can
-optionally specify it using a vector and discarding the
-outer-most parens.  Thus
-
-  (-let ((PATTERN SOURCE)) ..)
-
-becomes
-
-  (-let [PATTERN SOURCE] ..).
-
-`-let' uses a convention of not binding places (symbols) starting
-with _ whenever it's possible.  You can use this to skip over
-entries you don't care about.  However, this is not *always*
-possible (as a result of implementation) and these symbols might
-get bound to undefined values.
-
-Following is the overview of supported patterns.  Remember that
-patterns can be matched recursively, so every a, b, aK in the
-following can be a matching construct and not necessarily a
-symbol/variable.
-
-Symbol:
-
-  a - bind the SOURCE to A.  This is just like regular `let'.
-
-Conses and lists:
-
-  (a) - bind `car' of cons/list to A
-
-  (a . b) - bind car of cons to A and `cdr' to B
-
-  (a b) - bind car of list to A and `cadr' to B
-
-  (a1 a2 a3  ...) - bind 0th car of list to A1, 1st to A2, 2nd to A3 ...
-
-  (a1 a2 a3 ... aN . rest) - as above, but bind the Nth cdr to REST.
-
-Vectors:
-
-  [a] - bind 0th element of a non-list sequence to A (works with
-        vectors, strings, bit arrays...)
-
-  [a1 a2 a3 ...] - bind 0th element of non-list sequence to A0, 1st to
-                   A1, 2nd to A2, ...
-                   If the PATTERN is shorter than SOURCE, the values at
-                   places not in PATTERN are ignored.
-                   If the PATTERN is longer than SOURCE, an `error' is
-                   thrown.
-
-  [a1 a2 a3 ... &rest rest] - as above, but bind the rest of
-                              the sequence to REST.  This is
-                              conceptually the same as improper list
-                              matching (a1 a2 ... aN . rest)
-
-Key/value stores:
-
-  (&plist key0 a0 ... keyN aN) - bind value mapped by keyK in the
-                                 SOURCE plist to aK.  If the
-                                 value is not found, aK is nil.
-                                 Uses `plist-get' to fetch values.
-
-  (&alist key0 a0 ... keyN aN) - bind value mapped by keyK in the
-                                 SOURCE alist to aK.  If the
-                                 value is not found, aK is nil.
-                                 Uses `assoc' to fetch values.
-
-  (&hash key0 a0 ... keyN aN) - bind value mapped by keyK in the
-                                SOURCE hash table to aK.  If the
-                                value is not found, aK is nil.
-                                Uses `gethash' to fetch values.
-
-Further, special keyword &keys supports \"inline\" matching of
-plist-like key-value pairs, similarly to &keys keyword of
-`cl-defun'.
-
-  (a1 a2 ... aN &keys key1 b1 ... keyN bK)
-
-This binds N values from the list to a1 ... aN, then interprets
-the cdr as a plist (see key/value matching above).
-
-A shorthand notation for kv-destructuring exists which allows the
-patterns be optionally left out and derived from the key name in
-the following fashion:
-
-- a key :foo is converted into `foo' pattern,
-- a key 'bar is converted into `bar' pattern,
-- a key \"baz\" is converted into `baz' pattern.
-
-That is, the entire value under the key is bound to the derived
-variable without any further destructuring.
-
-This is possible only when the form following the key is not a
-valid pattern (i.e. not a symbol, a cons cell or a vector).
-Otherwise the matching proceeds as usual and in case of an
-invalid spec fails with an error.
-
-Thus the patterns are normalized as follows:
-
-   ;; derive all the missing patterns
-   (&plist :foo 'bar \"baz\") => (&plist :foo foo 'bar bar \"baz\" baz)
-
-   ;; we can specify some but not others
-   (&plist :foo 'bar explicit-bar) => (&plist :foo foo 'bar explicit-bar)
-
-   ;; nothing happens, we store :foo in x
-   (&plist :foo x) => (&plist :foo x)
-
-   ;; nothing happens, we match recursively
-   (&plist :foo (a b c)) => (&plist :foo (a b c))
-
-You can name the source using the syntax SYMBOL &as PATTERN.
-This syntax works with lists (proper or improper), vectors and
-all types of maps.
-
-  (list &as a b c) (list 1 2 3)
-
-binds A to 1, B to 2, C to 3 and LIST to (1 2 3).
-
-Similarly:
-
-  (bounds &as beg . end) (cons 1 2)
-
-binds BEG to 1, END to 2 and BOUNDS to (1 . 2).
-
-  (items &as first . rest) (list 1 2 3)
-
-binds FIRST to 1, REST to (2 3) and ITEMS to (1 2 3)
-
-  [vect &as _ b c] [1 2 3]
-
-binds B to 2, C to 3 and VECT to [1 2 3] (_ avoids binding as usual).
-
-  (plist &as &plist :b b) (list :a 1 :b 2 :c 3)
-
-binds B to 2 and PLIST to (:a 1 :b 2 :c 3).  Same for &alist and &hash.
-
-This is especially useful when we want to capture the result of a
-computation and destructure at the same time.  Consider the
-form (function-returning-complex-structure) returning a list of
-two vectors with two items each.  We want to capture this entire
-result and pass it to another computation, but at the same time
-we want to get the second item from each vector.  We can achieve
-it with pattern
-
-  (result &as [_ a] [_ b]) (function-returning-complex-structure)
-
-Note: Clojure programmers may know this feature as the \":as
-binding\".  The difference is that we put the &as at the front
-because we need to support improper list binding."
-  (declare (debug ([&or (&rest [&or (sexp form) sexp])
-                        (vector [&rest [sexp form]])]
-                   body))
-           (indent 1))
-  (if (vectorp varlist)
-      `(let* ,(dash--match (aref varlist 0) (aref varlist 1))
-         ,@body)
-    (let* ((varlist (dash--normalize-let-varlist varlist))
-           (inputs (--map-indexed (list (make-symbol (format "input%d" it-index)) (cadr it)) varlist))
-           (new-varlist (--map (list (caar it) (cadr it)) (-zip varlist inputs))))
-      `(let ,inputs
-         (-let* ,new-varlist ,@body)))))
-
-(defmacro -lambda (match-form &rest body)
-  "Return a lambda which destructures its input as MATCH-FORM and executes BODY.
-
-Note that you have to enclose the MATCH-FORM in a pair of parens,
-such that:
-
-  (-lambda (x) body)
-  (-lambda (x y ...) body)
-
-has the usual semantics of `lambda'.  Furthermore, these get
-translated into normal lambda, so there is no performance
-penalty.
-
-See `-let' for the description of destructuring mechanism."
-  (declare (doc-string 2) (indent defun)
-           (debug (&define sexp
-                           [&optional stringp]
-                           [&optional ("interactive" interactive)]
-                           def-body)))
-  (cond
-   ((not (consp match-form))
-    (signal 'wrong-type-argument "match-form must be a list"))
-   ;; no destructuring, so just return regular lambda to make things faster
-   ((-all? 'symbolp match-form)
-    `(lambda ,match-form ,@body))
-   (t
-    (let* ((inputs (--map-indexed (list it (make-symbol (format "input%d" it-index))) match-form)))
-      ;; TODO: because inputs to the lambda are evaluated only once,
-      ;; -let* need not to create the extra bindings to ensure that.
-      ;; We should find a way to optimize that.  Not critical however.
-      `(lambda ,(--map (cadr it) inputs)
-         (-let* ,inputs ,@body))))))
-
-(defmacro -setq (&rest forms)
-  "Bind each MATCH-FORM to the value of its VAL.
-
-MATCH-FORM destructuring is done according to the rules of `-let'.
-
-This macro allows you to bind multiple variables by destructuring
-the value, so for example:
-
-  (-setq (a b) x
-         (&plist :c c) plist)
-
-expands roughly speaking to the following code
-
-  (setq a (car x)
-        b (cadr x)
-        c (plist-get plist :c))
-
-Care is taken to only evaluate each VAL once so that in case of
-multiple assignments it does not cause unexpected side effects.
-
-\(fn [MATCH-FORM VAL]...)"
-  (declare (debug (&rest sexp form))
-           (indent 1))
-  (when (= (mod (length forms) 2) 1)
-    (error "Odd number of arguments"))
-  (let* ((forms-and-sources
-          ;; First get all the necessary mappings with all the
-          ;; intermediate bindings.
-          (-map (lambda (x) (dash--match (car x) (cadr x)))
-                (-partition 2 forms)))
-         ;; To preserve the logic of dynamic scoping we must ensure
-         ;; that we `setq' the variables outside of the `let*' form
-         ;; which holds the destructured intermediate values.  For
-         ;; this we generate for each variable a placeholder which is
-         ;; bound to (lexically) the result of the destructuring.
-         ;; Then outside of the helper `let*' form we bind all the
-         ;; original variables to their respective placeholders.
-         ;; TODO: There is a lot of room for possible optimization,
-         ;; for start playing with `special-variable-p' to eliminate
-         ;; unnecessary re-binding.
-         (variables-to-placeholders
-          (-mapcat
-           (lambda (bindings)
-             (-map
-              (lambda (binding)
-                (let ((var (car binding)))
-                  (list var (make-symbol (concat "--dash-binding-" (symbol-name var) "--")))))
-              (--filter (not (string-prefix-p "--" (symbol-name (car it)))) bindings)))
-           forms-and-sources)))
-    `(let ,(-map 'cadr variables-to-placeholders)
-       (let* ,(-flatten-n 1 forms-and-sources)
-         (setq ,@(-flatten (-map 'reverse variables-to-placeholders))))
-       (setq ,@(-flatten variables-to-placeholders)))))
-
-(defmacro -if-let* (vars-vals then &rest else)
-  "If all VALS evaluate to true, bind them to their corresponding
-VARS and do THEN, otherwise do ELSE. VARS-VALS should be a list
-of (VAR VAL) pairs.
-
-Note: binding is done according to `-let*'.  VALS are evaluated
-sequentially, and evaluation stops after the first nil VAL is
-encountered."
-  (declare (debug ((&rest (sexp form)) form body))
-           (indent 2))
-  (->> vars-vals
-       (--mapcat (dash--match (car it) (cadr it)))
-       (--reduce-r-from
-        (let ((var (car it))
-              (val (cadr it)))
-          `(let ((,var ,val))
-             (if ,var ,acc ,@else)))
-        then)))
-
-(defmacro -if-let (var-val then &rest else)
-  "If VAL evaluates to non-nil, bind it to VAR and do THEN,
-otherwise do ELSE.
-
-Note: binding is done according to `-let'.
-
-\(fn (VAR VAL) THEN &rest ELSE)"
-  (declare (debug ((sexp form) form body))
-           (indent 2))
-  `(-if-let* (,var-val) ,then ,@else))
-
-(defmacro --if-let (val then &rest else)
-  "If VAL evaluates to non-nil, bind it to symbol `it' and do THEN,
-otherwise do ELSE."
-  (declare (debug (form form body))
-           (indent 2))
-  `(-if-let (it ,val) ,then ,@else))
-
-(defmacro -when-let* (vars-vals &rest body)
-  "If all VALS evaluate to true, bind them to their corresponding
-VARS and execute body. VARS-VALS should be a list of (VAR VAL)
-pairs.
-
-Note: binding is done according to `-let*'.  VALS are evaluated
-sequentially, and evaluation stops after the first nil VAL is
-encountered."
-  (declare (debug ((&rest (sexp form)) body))
-           (indent 1))
-  `(-if-let* ,vars-vals (progn ,@body)))
-
-(defmacro -when-let (var-val &rest body)
-  "If VAL evaluates to non-nil, bind it to VAR and execute body.
-
-Note: binding is done according to `-let'.
-
-\(fn (VAR VAL) &rest BODY)"
-  (declare (debug ((sexp form) body))
-           (indent 1))
-  `(-if-let ,var-val (progn ,@body)))
-
-(defmacro --when-let (val &rest body)
-  "If VAL evaluates to non-nil, bind it to symbol `it' and
-execute body."
-  (declare (debug (form body))
-           (indent 1))
-  `(--if-let ,val (progn ,@body)))
-
-(defvar -compare-fn nil
-  "Tests for equality use this function or `equal' if this is nil.
-It should only be set using dynamic scope with a let, like:
-
-  (let ((-compare-fn #\\='=)) (-union numbers1 numbers2 numbers3)")
-
-(defun -distinct (list)
-  "Return a new list with all duplicates removed.
-The test for equality is done with `equal',
-or with `-compare-fn' if that's non-nil.
-
-Alias: `-uniq'"
-  (let (result)
-    (--each list (unless (-contains? result it) (!cons it result)))
-    (nreverse result)))
-
-(defalias '-uniq '-distinct)
-
-(defun -union (list list2)
-  "Return a new list containing the elements of LIST and elements of LIST2 that are not in LIST.
-The test for equality is done with `equal',
-or with `-compare-fn' if that's non-nil."
-  ;; We fall back to iteration implementation if the comparison
-  ;; function isn't one of `eq', `eql' or `equal'.
-  (let* ((result (reverse list))
-         ;; TODO: get rid of this dynamic variable, pass it as an
-         ;; argument instead.
-         (-compare-fn (if (bound-and-true-p -compare-fn)
-                          -compare-fn
-                        'equal)))
-    (if (memq -compare-fn '(eq eql equal))
-        (let ((ht (make-hash-table :test -compare-fn)))
-          (--each list (puthash it t ht))
-          (--each list2 (unless (gethash it ht) (!cons it result))))
-      (--each list2 (unless (-contains? result it) (!cons it result))))
-    (nreverse result)))
-
-(defun -intersection (list list2)
-  "Return a new list containing only the elements that are members of both LIST and LIST2.
-The test for equality is done with `equal',
-or with `-compare-fn' if that's non-nil."
-  (--filter (-contains? list2 it) list))
-
-(defun -difference (list list2)
-  "Return a new list with only the members of LIST that are not in LIST2.
-The test for equality is done with `equal',
-or with `-compare-fn' if that's non-nil."
-  (--filter (not (-contains? list2 it)) list))
-
-(defun -powerset (list)
-  "Return the power set of LIST."
-  (if (null list) '(())
-    (let ((last (-powerset (cdr list))))
-      (append (mapcar (lambda (x) (cons (car list) x)) last)
-              last))))
-
-(defun -permutations (list)
-  "Return the permutations of LIST."
-  (if (null list) '(())
-    (apply #'append
-           (mapcar (lambda (x)
-                     (mapcar (lambda (perm) (cons x perm))
-                             (-permutations (remove x list))))
-                   list))))
-
-(defun -inits (list)
-  "Return all prefixes of LIST."
-  (nreverse (-map 'reverse (-tails (nreverse list)))))
-
-(defun -tails (list)
-  "Return all suffixes of LIST"
-  (-reductions-r-from 'cons nil list))
-
-(defun -common-prefix (&rest lists)
-  "Return the longest common prefix of LISTS."
-  (declare (pure t) (side-effect-free t))
-  (--reduce (--take-while (and acc (equal (pop acc) it)) it)
-            lists))
-
-(defun -common-suffix (&rest lists)
-  "Return the longest common suffix of LISTS."
-  (nreverse (apply #'-common-prefix (mapcar #'reverse lists))))
-
-(defun -contains? (list element)
-  "Return non-nil if LIST contains ELEMENT.
-
-The test for equality is done with `equal', or with `-compare-fn'
-if that's non-nil.
-
-Alias: `-contains-p'"
-  (not
-   (null
-    (cond
-     ((null -compare-fn)    (member element list))
-     ((eq -compare-fn 'eq)  (memq element list))
-     ((eq -compare-fn 'eql) (memql element list))
-     (t
-      (let ((lst list))
-        (while (and lst
-                    (not (funcall -compare-fn element (car lst))))
-          (setq lst (cdr lst)))
-        lst))))))
-
-(defalias '-contains-p '-contains?)
-
-(defun -same-items? (list list2)
-  "Return true if LIST and LIST2 has the same items.
-
-The order of the elements in the lists does not matter.
-
-Alias: `-same-items-p'"
-  (let ((length-a (length list))
-        (length-b (length list2)))
-    (and
-     (= length-a length-b)
-     (= length-a (length (-intersection list list2))))))
-
-(defalias '-same-items-p '-same-items?)
-
-(defun -is-prefix? (prefix list)
-  "Return non-nil if PREFIX is prefix of LIST.
-
-Alias: `-is-prefix-p'"
-  (declare (pure t) (side-effect-free t))
-  (--each-while list (equal (car prefix) it)
-    (!cdr prefix))
-  (not prefix))
-
-(defun -is-suffix? (suffix list)
-  "Return non-nil if SUFFIX is suffix of LIST.
-
-Alias: `-is-suffix-p'"
-  (declare (pure t) (side-effect-free t))
-  (-is-prefix? (reverse suffix) (reverse list)))
-
-(defun -is-infix? (infix list)
-  "Return non-nil if INFIX is infix of LIST.
-
-This operation runs in O(n^2) time
-
-Alias: `-is-infix-p'"
-  (declare (pure t) (side-effect-free t))
-  (let (done)
-    (while (and (not done) list)
-      (setq done (-is-prefix? infix list))
-      (!cdr list))
-    done))
-
-(defalias '-is-prefix-p '-is-prefix?)
-(defalias '-is-suffix-p '-is-suffix?)
-(defalias '-is-infix-p '-is-infix?)
-
-(defun -sort (comparator list)
-  "Sort LIST, stably, comparing elements using COMPARATOR.
-Return the sorted list.  LIST is NOT modified by side effects.
-COMPARATOR is called with two elements of LIST, and should return non-nil
-if the first element should sort before the second."
-  (sort (copy-sequence list) comparator))
-
-(defmacro --sort (form list)
-  "Anaphoric form of `-sort'."
-  (declare (debug (form form)))
-  `(-sort (lambda (it other) ,form) ,list))
-
-(defun -list (&rest args)
-  "Return a list with ARGS.
-
-If first item of ARGS is already a list, simply return ARGS.  If
-not, return a list with ARGS as elements."
-  (declare (pure t) (side-effect-free t))
-  (let ((arg (car args)))
-    (if (listp arg) arg args)))
-
-(defun -repeat (n x)
-  "Return a list with X repeated N times.
-Return nil if N is less than 1."
-  (declare (pure t) (side-effect-free t))
-  (let (ret)
-    (--dotimes n (!cons x ret))
-    ret))
-
-(defun -sum (list)
-  "Return the sum of LIST."
-  (declare (pure t) (side-effect-free t))
-  (apply '+ list))
-
-(defun -running-sum (list)
-  "Return a list with running sums of items in LIST.
-
-LIST must be non-empty."
-  (declare (pure t) (side-effect-free t))
-  (unless (consp list)
-    (error "LIST must be non-empty"))
-  (-reductions '+ list))
-
-(defun -product (list)
-  "Return the product of LIST."
-  (declare (pure t) (side-effect-free t))
-  (apply '* list))
-
-(defun -running-product (list)
-  "Return a list with running products of items in LIST.
-
-LIST must be non-empty."
-  (declare (pure t) (side-effect-free t))
-  (unless (consp list)
-    (error "LIST must be non-empty"))
-  (-reductions '* list))
-
-(defun -max (list)
-  "Return the largest value from LIST of numbers or markers."
-  (declare (pure t) (side-effect-free t))
-  (apply 'max list))
-
-(defun -min (list)
-  "Return the smallest value from LIST of numbers or markers."
-  (declare (pure t) (side-effect-free t))
-  (apply 'min list))
-
-(defun -max-by (comparator list)
-  "Take a comparison function COMPARATOR and a LIST and return
-the greatest element of the list by the comparison function.
-
-See also combinator `-on' which can transform the values before
-comparing them."
-  (--reduce (if (funcall comparator it acc) it acc) list))
-
-(defun -min-by (comparator list)
-  "Take a comparison function COMPARATOR and a LIST and return
-the least element of the list by the comparison function.
-
-See also combinator `-on' which can transform the values before
-comparing them."
-  (--reduce (if (funcall comparator it acc) acc it) list))
-
-(defmacro --max-by (form list)
-  "Anaphoric version of `-max-by'.
-
-The items for the comparator form are exposed as \"it\" and \"other\"."
-  (declare (debug (form form)))
-  `(-max-by (lambda (it other) ,form) ,list))
-
-(defmacro --min-by (form list)
-  "Anaphoric version of `-min-by'.
-
-The items for the comparator form are exposed as \"it\" and \"other\"."
-  (declare (debug (form form)))
-  `(-min-by (lambda (it other) ,form) ,list))
-
-(defun -iterate (fun init n)
-  "Return a list of iterated applications of FUN to INIT.
-
-This means a list of form:
-
-  (init (fun init) (fun (fun init)) ...)
-
-N is the length of the returned list."
-  (if (= n 0) nil
-    (let ((r (list init)))
-      (--dotimes (1- n)
-        (push (funcall fun (car r)) r))
-      (nreverse r))))
-
-(defun -fix (fn list)
-  "Compute the (least) fixpoint of FN with initial input LIST.
-
-FN is called at least once, results are compared with `equal'."
-  (let ((re (funcall fn list)))
-    (while (not (equal list re))
-      (setq list re)
-      (setq re (funcall fn re)))
-    re))
-
-(defmacro --fix (form list)
-  "Anaphoric form of `-fix'."
-  `(-fix (lambda (it) ,form) ,list))
-
-(defun -unfold (fun seed)
-  "Build a list from SEED using FUN.
-
-This is \"dual\" operation to `-reduce-r': while -reduce-r
-consumes a list to produce a single value, `-unfold' takes a
-seed value and builds a (potentially infinite!) list.
-
-FUN should return `nil' to stop the generating process, or a
-cons (A . B), where A will be prepended to the result and B is
-the new seed."
-  (let ((last (funcall fun seed)) r)
-    (while last
-      (push (car last) r)
-      (setq last (funcall fun (cdr last))))
-    (nreverse r)))
-
-(defmacro --unfold (form seed)
-  "Anaphoric version of `-unfold'."
-  (declare (debug (form form)))
-  `(-unfold (lambda (it) ,form) ,seed))
-
-(defun -cons-pair? (con)
-  "Return non-nil if CON is true cons pair.
-That is (A . B) where B is not a list."
-  (declare (pure t) (side-effect-free t))
-  (and (listp con)
-       (not (listp (cdr con)))))
-
-(defun -cons-to-list (con)
-  "Convert a cons pair to a list with `car' and `cdr' of the pair respectively."
-  (declare (pure t) (side-effect-free t))
-  (list (car con) (cdr con)))
-
-(defun -value-to-list (val)
-  "Convert a value to a list.
-
-If the value is a cons pair, make a list with two elements, `car'
-and `cdr' of the pair respectively.
-
-If the value is anything else, wrap it in a list."
-  (declare (pure t) (side-effect-free t))
-  (cond
-   ((-cons-pair? val) (-cons-to-list val))
-   (t (list val))))
-
-(defun -tree-mapreduce-from (fn folder init-value tree)
-  "Apply FN to each element of TREE, and make a list of the results.
-If elements of TREE are lists themselves, apply FN recursively to
-elements of these nested lists.
-
-Then reduce the resulting lists using FOLDER and initial value
-INIT-VALUE. See `-reduce-r-from'.
-
-This is the same as calling `-tree-reduce-from' after `-tree-map'
-but is twice as fast as it only traverse the structure once."
-  (cond
-   ((not tree) nil)
-   ((-cons-pair? tree) (funcall fn tree))
-   ((listp tree)
-    (-reduce-r-from folder init-value (mapcar (lambda (x) (-tree-mapreduce-from fn folder init-value x)) tree)))
-   (t (funcall fn tree))))
-
-(defmacro --tree-mapreduce-from (form folder init-value tree)
-  "Anaphoric form of `-tree-mapreduce-from'."
-  (declare (debug (form form form form)))
-  `(-tree-mapreduce-from (lambda (it) ,form) (lambda (it acc) ,folder) ,init-value ,tree))
-
-(defun -tree-mapreduce (fn folder tree)
-  "Apply FN to each element of TREE, and make a list of the results.
-If elements of TREE are lists themselves, apply FN recursively to
-elements of these nested lists.
-
-Then reduce the resulting lists using FOLDER and initial value
-INIT-VALUE. See `-reduce-r-from'.
-
-This is the same as calling `-tree-reduce' after `-tree-map'
-but is twice as fast as it only traverse the structure once."
-  (cond
-   ((not tree) nil)
-   ((-cons-pair? tree) (funcall fn tree))
-   ((listp tree)
-    (-reduce-r folder (mapcar (lambda (x) (-tree-mapreduce fn folder x)) tree)))
-   (t (funcall fn tree))))
-
-(defmacro --tree-mapreduce (form folder tree)
-  "Anaphoric form of `-tree-mapreduce'."
-  (declare (debug (form form form)))
-  `(-tree-mapreduce (lambda (it) ,form) (lambda (it acc) ,folder) ,tree))
-
-(defun -tree-map (fn tree)
-  "Apply FN to each element of TREE while preserving the tree structure."
-  (cond
-   ((not tree) nil)
-   ((-cons-pair? tree) (funcall fn tree))
-   ((listp tree)
-    (mapcar (lambda (x) (-tree-map fn x)) tree))
-   (t (funcall fn tree))))
-
-(defmacro --tree-map (form tree)
-  "Anaphoric form of `-tree-map'."
-  (declare (debug (form form)))
-  `(-tree-map (lambda (it) ,form) ,tree))
-
-(defun -tree-reduce-from (fn init-value tree)
-  "Use FN to reduce elements of list TREE.
-If elements of TREE are lists themselves, apply the reduction recursively.
-
-FN is first applied to INIT-VALUE and first element of the list,
-then on this result and second element from the list etc.
-
-The initial value is ignored on cons pairs as they always contain
-two elements."
-  (cond
-   ((not tree) nil)
-   ((-cons-pair? tree) tree)
-   ((listp tree)
-    (-reduce-r-from fn init-value (mapcar (lambda (x) (-tree-reduce-from fn init-value x)) tree)))
-   (t tree)))
-
-(defmacro --tree-reduce-from (form init-value tree)
-  "Anaphoric form of `-tree-reduce-from'."
-  (declare (debug (form form form)))
-  `(-tree-reduce-from (lambda (it acc) ,form) ,init-value ,tree))
-
-(defun -tree-reduce (fn tree)
-  "Use FN to reduce elements of list TREE.
-If elements of TREE are lists themselves, apply the reduction recursively.
-
-FN is first applied to first element of the list and second
-element, then on this result and third element from the list etc.
-
-See `-reduce-r' for how exactly are lists of zero or one element handled."
-  (cond
-   ((not tree) nil)
-   ((-cons-pair? tree) tree)
-   ((listp tree)
-    (-reduce-r fn (mapcar (lambda (x) (-tree-reduce fn x)) tree)))
-   (t tree)))
-
-(defmacro --tree-reduce (form tree)
-  "Anaphoric form of `-tree-reduce'."
-  (declare (debug (form form)))
-  `(-tree-reduce (lambda (it acc) ,form) ,tree))
-
-(defun -tree-map-nodes (pred fun tree)
-  "Call FUN on each node of TREE that satisfies PRED.
-
-If PRED returns nil, continue descending down this node.  If PRED
-returns non-nil, apply FUN to this node and do not descend
-further."
-  (if (funcall pred tree)
-      (funcall fun tree)
-    (if (and (listp tree)
-             (not (-cons-pair? tree)))
-        (-map (lambda (x) (-tree-map-nodes pred fun x)) tree)
-      tree)))
-
-(defmacro --tree-map-nodes (pred form tree)
-  "Anaphoric form of `-tree-map-nodes'."
-  `(-tree-map-nodes (lambda (it) ,pred) (lambda (it) ,form) ,tree))
-
-(defun -tree-seq (branch children tree)
-  "Return a sequence of the nodes in TREE, in depth-first search order.
-
-BRANCH is a predicate of one argument that returns non-nil if the
-passed argument is a branch, that is, a node that can have children.
-
-CHILDREN is a function of one argument that returns the children
-of the passed branch node.
-
-Non-branch nodes are simply copied."
-  (cons tree
-        (when (funcall branch tree)
-          (-mapcat (lambda (x) (-tree-seq branch children x))
-                   (funcall children tree)))))
-
-(defmacro --tree-seq (branch children tree)
-  "Anaphoric form of `-tree-seq'."
-  `(-tree-seq (lambda (it) ,branch) (lambda (it) ,children) ,tree))
-
-(defun -clone (list)
-  "Create a deep copy of LIST.
-The new list has the same elements and structure but all cons are
-replaced with new ones.  This is useful when you need to clone a
-structure such as plist or alist."
-  (declare (pure t) (side-effect-free t))
-  (-tree-map 'identity list))
-
-(defun dash-enable-font-lock ()
-  "Add syntax highlighting to dash functions, macros and magic values."
-  (eval-after-load 'lisp-mode
-    '(progn
-       (let ((new-keywords '(
-                             "!cons"
-                             "!cdr"
-                             "-each"
-                             "--each"
-                             "-each-indexed"
-                             "--each-indexed"
-                             "-each-while"
-                             "--each-while"
-                             "-doto"
-                             "-dotimes"
-                             "--dotimes"
-                             "-map"
-                             "--map"
-                             "-reduce-from"
-                             "--reduce-from"
-                             "-reduce"
-                             "--reduce"
-                             "-reduce-r-from"
-                             "--reduce-r-from"
-                             "-reduce-r"
-                             "--reduce-r"
-                             "-reductions-from"
-                             "-reductions-r-from"
-                             "-reductions"
-                             "-reductions-r"
-                             "-filter"
-                             "--filter"
-                             "-select"
-                             "--select"
-                             "-remove"
-                             "--remove"
-                             "-reject"
-                             "--reject"
-                             "-remove-first"
-                             "--remove-first"
-                             "-reject-first"
-                             "--reject-first"
-                             "-remove-last"
-                             "--remove-last"
-                             "-reject-last"
-                             "--reject-last"
-                             "-remove-item"
-                             "-non-nil"
-                             "-keep"
-                             "--keep"
-                             "-map-indexed"
-                             "--map-indexed"
-                             "-splice"
-                             "--splice"
-                             "-splice-list"
-                             "--splice-list"
-                             "-map-when"
-                             "--map-when"
-                             "-replace-where"
-                             "--replace-where"
-                             "-map-first"
-                             "--map-first"
-                             "-map-last"
-                             "--map-last"
-                             "-replace"
-                             "-replace-first"
-                             "-replace-last"
-                             "-flatten"
-                             "-flatten-n"
-                             "-concat"
-                             "-mapcat"
-                             "--mapcat"
-                             "-copy"
-                             "-cons*"
-                             "-snoc"
-                             "-first"
-                             "--first"
-                             "-find"
-                             "--find"
-                             "-some"
-                             "--some"
-                             "-any"
-                             "--any"
-                             "-last"
-                             "--last"
-                             "-first-item"
-                             "-second-item"
-                             "-third-item"
-                             "-fourth-item"
-                             "-fifth-item"
-                             "-last-item"
-                             "-butlast"
-                             "-count"
-                             "--count"
-                             "-any?"
-                             "--any?"
-                             "-some?"
-                             "--some?"
-                             "-any-p"
-                             "--any-p"
-                             "-some-p"
-                             "--some-p"
-                             "-some->"
-                             "-some->>"
-                             "-some-->"
-                             "-all?"
-                             "-all-p"
-                             "--all?"
-                             "--all-p"
-                             "-every?"
-                             "--every?"
-                             "-all-p"
-                             "--all-p"
-                             "-every-p"
-                             "--every-p"
-                             "-none?"
-                             "--none?"
-                             "-none-p"
-                             "--none-p"
-                             "-only-some?"
-                             "--only-some?"
-                             "-only-some-p"
-                             "--only-some-p"
-                             "-slice"
-                             "-take"
-                             "-drop"
-                             "-drop-last"
-                             "-take-last"
-                             "-take-while"
-                             "--take-while"
-                             "-drop-while"
-                             "--drop-while"
-                             "-split-at"
-                             "-rotate"
-                             "-insert-at"
-                             "-replace-at"
-                             "-update-at"
-                             "--update-at"
-                             "-remove-at"
-                             "-remove-at-indices"
-                             "-split-with"
-                             "--split-with"
-                             "-split-on"
-                             "-split-when"
-                             "--split-when"
-                             "-separate"
-                             "--separate"
-                             "-partition-all-in-steps"
-                             "-partition-in-steps"
-                             "-partition-all"
-                             "-partition"
-                             "-partition-after-item"
-                             "-partition-after-pred"
-                             "-partition-before-item"
-                             "-partition-before-pred"
-                             "-partition-by"
-                             "--partition-by"
-                             "-partition-by-header"
-                             "--partition-by-header"
-                             "-group-by"
-                             "--group-by"
-                             "-interpose"
-                             "-interleave"
-                             "-unzip"
-                             "-zip-with"
-                             "--zip-with"
-                             "-zip"
-                             "-zip-fill"
-                             "-zip-pair"
-                             "-cycle"
-                             "-pad"
-                             "-annotate"
-                             "--annotate"
-                             "-table"
-                             "-table-flat"
-                             "-partial"
-                             "-elem-index"
-                             "-elem-indices"
-                             "-find-indices"
-                             "--find-indices"
-                             "-find-index"
-                             "--find-index"
-                             "-find-last-index"
-                             "--find-last-index"
-                             "-select-by-indices"
-                             "-select-columns"
-                             "-select-column"
-                             "-grade-up"
-                             "-grade-down"
-                             "->"
-                             "->>"
-                             "-->"
-                             "-as->"
-                             "-when-let"
-                             "-when-let*"
-                             "--when-let"
-                             "-if-let"
-                             "-if-let*"
-                             "--if-let"
-                             "-let*"
-                             "-let"
-                             "-lambda"
-                             "-distinct"
-                             "-uniq"
-                             "-union"
-                             "-intersection"
-                             "-difference"
-                             "-powerset"
-                             "-permutations"
-                             "-inits"
-                             "-tails"
-                             "-common-prefix"
-                             "-common-suffix"
-                             "-contains?"
-                             "-contains-p"
-                             "-same-items?"
-                             "-same-items-p"
-                             "-is-prefix-p"
-                             "-is-prefix?"
-                             "-is-suffix-p"
-                             "-is-suffix?"
-                             "-is-infix-p"
-                             "-is-infix?"
-                             "-sort"
-                             "--sort"
-                             "-list"
-                             "-repeat"
-                             "-sum"
-                             "-running-sum"
-                             "-product"
-                             "-running-product"
-                             "-max"
-                             "-min"
-                             "-max-by"
-                             "--max-by"
-                             "-min-by"
-                             "--min-by"
-                             "-iterate"
-                             "--iterate"
-                             "-fix"
-                             "--fix"
-                             "-unfold"
-                             "--unfold"
-                             "-cons-pair?"
-                             "-cons-to-list"
-                             "-value-to-list"
-                             "-tree-mapreduce-from"
-                             "--tree-mapreduce-from"
-                             "-tree-mapreduce"
-                             "--tree-mapreduce"
-                             "-tree-map"
-                             "--tree-map"
-                             "-tree-reduce-from"
-                             "--tree-reduce-from"
-                             "-tree-reduce"
-                             "--tree-reduce"
-                             "-tree-seq"
-                             "--tree-seq"
-                             "-tree-map-nodes"
-                             "--tree-map-nodes"
-                             "-clone"
-                             "-rpartial"
-                             "-juxt"
-                             "-applify"
-                             "-on"
-                             "-flip"
-                             "-const"
-                             "-cut"
-                             "-orfn"
-                             "-andfn"
-                             "-iteratefn"
-                             "-fixfn"
-                             "-prodfn"
-                             ))
-             (special-variables '(
-                                  "it"
-                                  "it-index"
-                                  "acc"
-                                  "other"
-                                  )))
-         (font-lock-add-keywords 'emacs-lisp-mode `((,(concat "\\_<" (regexp-opt special-variables 'paren) "\\_>")
-                                                     1 font-lock-variable-name-face)) 'append)
-         (font-lock-add-keywords 'emacs-lisp-mode `((,(concat "(\\s-*" (regexp-opt new-keywords 'paren) "\\_>")
-                                                     1 font-lock-keyword-face)) 'append))
-       (--each (buffer-list)
-         (with-current-buffer it
-           (when (and (eq major-mode 'emacs-lisp-mode)
-                      (boundp 'font-lock-mode)
-                      font-lock-mode)
-             (font-lock-refresh-defaults)))))))
-
-(provide 'dash)
-;;; dash.el ends here
diff --git a/elpa/dash-20180910.1856/dash.elc b/elpa/dash-20180910.1856/dash.elc
deleted file mode 100644
index e5f3059..0000000
--- a/elpa/dash-20180910.1856/dash.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/epl-20180205.2049/epl-autoloads.el b/elpa/epl-20180205.2049/epl-autoloads.el
deleted file mode 100644
index c6221c5..0000000
--- a/elpa/epl-20180205.2049/epl-autoloads.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; epl-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "epl" "epl.el" (0 0 0 0))
-;;; Generated autoloads from epl.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "epl" '("epl-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; epl-autoloads.el ends here
diff --git a/elpa/epl-20180205.2049/epl-pkg.el b/elpa/epl-20180205.2049/epl-pkg.el
deleted file mode 100644
index a977868..0000000
--- a/elpa/epl-20180205.2049/epl-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "epl" "20180205.2049" "Emacs Package Library" '((cl-lib "0.3")) :commit "78ab7a85c08222cd15582a298a364774e3282ce6" :keywords '("convenience") :authors '(("Sebastian Wiesner" . "swiesner@lunaryorn.com")) :maintainer '("Johan Andersson" . "johan.rejeep@gmail.com") :url "http://github.com/cask/epl")
diff --git a/elpa/epl-20180205.2049/epl.el b/elpa/epl-20180205.2049/epl.el
deleted file mode 100644
index 5bbd76a..0000000
--- a/elpa/epl-20180205.2049/epl.el
+++ /dev/null
@@ -1,711 +0,0 @@
-;;; epl.el --- Emacs Package Library -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2015 Sebastian Wiesner
-;; Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2015 Free Software
-
-;; Author: Sebastian Wiesner <swiesner@lunaryorn.com>
-;; Maintainer: Johan Andersson <johan.rejeep@gmail.com>
-;;     Sebastian Wiesner <swiesner@lunaryorn.com>
-;; Version: 0.10-cvs
-;; Package-Version: 20180205.2049
-;; Package-Requires: ((cl-lib "0.3"))
-;; Keywords: convenience
-;; URL: http://github.com/cask/epl
-
-;; This file is NOT part of GNU Emacs.
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; A package management library for Emacs, based on package.el.
-
-;; The purpose of this library is to wrap all the quirks and hassle of
-;; package.el into a sane API.
-
-;; The following functions comprise the public interface of this library:
-
-;;; Package directory selection
-
-;; `epl-package-dir' gets the directory of packages.
-
-;; `epl-default-package-dir' gets the default package directory.
-
-;; `epl-change-package-dir' changes the directory of packages.
-
-;;; Package system management
-
-;; `epl-initialize' initializes the package system and activates all
-;; packages.
-
-;; `epl-reset' resets the package system.
-
-;; `epl-refresh' refreshes all package archives.
-
-;; `epl-add-archive' adds a new package archive.
-
-;;; Package objects
-
-;; Struct `epl-requirement' describes a requirement of a package with `name' and
-;; `version' slots.
-
-;; `epl-requirement-version-string' gets a requirement version as string.
-
-;; Struct `epl-package' describes an installed or installable package with a
-;; `name' and some internal `description'.
-
-;; `epl-package-version' gets the version of a package.
-
-;; `epl-package-version-string' gets the version of a package as string.
-
-;; `epl-package-summary' gets the summary of a package.
-
-;; `epl-package-requirements' gets the requirements of a package.
-
-;; `epl-package-directory' gets the installation directory of a package.
-
-;; `epl-package-from-buffer' creates a package object for the package contained
-;; in the current buffer.
-
-;; `epl-package-from-file' creates a package object for a package file, either
-;; plain lisp or tarball.
-
-;; `epl-package-from-descriptor-file' creates a package object for a package
-;; description (i.e. *-pkg.el) file.
-
-;;; Package database access
-
-;; `epl-package-installed-p' determines whether a package is installed, either
-;; built-in or explicitly installed.
-
-;; `epl-package-outdated-p' determines whether a package is outdated, that is,
-;; whether a package with a higher version number is available.
-
-;; `epl-built-in-packages', `epl-installed-packages', `epl-outdated-packages'
-;; and `epl-available-packages' get all packages built-in, installed, outdated,
-;; or available for installation respectively.
-
-;; `epl-find-built-in-package', `epl-find-installed-packages' and
-;; `epl-find-available-packages' find built-in, installed and available packages
-;; by name.
-
-;; `epl-find-upgrades' finds all upgradable packages.
-
-;; `epl-built-in-p' return true if package is built-in to Emacs.
-
-;;; Package operations
-
-;; `epl-install-file' installs a package file.
-
-;; `epl-package-install' installs a package.
-
-;; `epl-package-delete' deletes a package.
-
-;; `epl-upgrade' upgrades packages.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'package)
-
-
-(unless (fboundp #'define-error)
-  ;; `define-error' for 24.3 and earlier, copied from subr.el
-  (defun define-error (name message &optional parent)
-    "Define NAME as a new error signal.
-MESSAGE is a string that will be output to the echo area if such an error
-is signaled without being caught by a `condition-case'.
-PARENT is either a signal or a list of signals from which it inherits.
-Defaults to `error'."
-    (unless parent (setq parent 'error))
-    (let ((conditions
-           (if (consp parent)
-               (apply #'append
-                      (mapcar (lambda (parent)
-                                (cons parent
-                                      (or (get parent 'error-conditions)
-                                          (error "Unknown signal `%s'" parent))))
-                              parent))
-             (cons parent (get parent 'error-conditions)))))
-      (put name 'error-conditions
-           (delete-dups (copy-sequence (cons name conditions))))
-      (when message (put name 'error-message message)))))
-
-(defsubst epl--package-desc-p (package)
-  "Whether PACKAGE is a `package-desc' object.
-
-Like `package-desc-p', but return nil, if `package-desc-p' is not
-defined as function."
-  (and (fboundp 'package-desc-p) (package-desc-p package)))
-
-
-;;; EPL errors
-(define-error 'epl-error "EPL error")
-
-(define-error 'epl-invalid-package "Invalid EPL package" 'epl-error)
-
-(define-error 'epl-invalid-package-file "Invalid EPL package file"
-  'epl-invalid-package)
-
-
-;;; Package directory
-(defun epl-package-dir ()
-  "Get the directory of packages."
-  package-user-dir)
-
-(defun epl-default-package-dir ()
-  "Get the default directory of packages."
-  (eval (car (get 'package-user-dir 'standard-value))))
-
-(defun epl-change-package-dir (directory)
-  "Change the directory of packages to DIRECTORY."
-  (setq package-user-dir directory)
-  (epl-initialize))
-
-
-;;; Package system management
-(defvar epl--load-path-before-initialize nil
-  "Remember the load path for `epl-reset'.")
-
-(defun epl-initialize (&optional no-activate)
-  "Load Emacs Lisp packages and activate them.
-
-With NO-ACTIVATE non-nil, do not activate packages."
-  (setq epl--load-path-before-initialize load-path)
-  (package-initialize no-activate))
-
-(defalias 'epl-refresh 'package-refresh-contents)
-
-(defun epl-add-archive (name url)
-  "Add a package archive with NAME and URL."
-  (add-to-list 'package-archives (cons name url)))
-
-(defun epl-reset ()
-  "Reset the package system.
-
-Clear the list of installed and available packages, the list of
-package archives and reset the package directory."
-  (setq package-alist nil
-        package-archives nil
-        package-archive-contents nil
-        load-path epl--load-path-before-initialize)
-  (when (boundp 'package-obsolete-alist) ; Legacy package.el
-    (setq package-obsolete-alist nil))
-  (epl-change-package-dir (epl-default-package-dir)))
-
-
-;;; Package structures
-(cl-defstruct (epl-requirement
-               (:constructor epl-requirement-create))
-  "Structure describing a requirement.
-
-Slots:
-
-`name' The name of the required package, as symbol.
-
-`version' The version of the required package, as version list."
-  name
-  version)
-
-(defun epl-requirement-version-string (requirement)
-  "The version of a REQUIREMENT, as string."
-  (package-version-join (epl-requirement-version requirement)))
-
-(cl-defstruct (epl-package (:constructor epl-package-create))
-  "Structure representing a package.
-
-Slots:
-
-`name' The package name, as symbol.
-
-`description' The package description.
-
-The format package description varies between package.el
-variants.  For `package-desc' variants, it is simply the
-corresponding `package-desc' object.  For legacy variants, it is
-a vector `[VERSION REQS DOCSTRING]'.
-
-Do not access `description' directly, but instead use the
-`epl-package' accessors."
-  name
-  description)
-
-(defmacro epl-package-as-description (var &rest body)
-  "Cast VAR to a package description in BODY.
-
-VAR is a symbol, bound to an `epl-package' object.  This macro
-casts this object to the `description' object, and binds the
-description to VAR in BODY."
-  (declare (indent 1))
-  (unless (symbolp var)
-    (signal 'wrong-type-argument (list #'symbolp var)))
-  `(if (epl-package-p ,var)
-       (let ((,var (epl-package-description ,var)))
-         ,@body)
-     (signal 'wrong-type-argument (list #'epl-package-p ,var))))
-
-(defsubst epl-package--package-desc-p (package)
-  "Whether the description of PACKAGE is a `package-desc'."
-  (epl--package-desc-p (epl-package-description package)))
-
-(defun epl-package-version (package)
-  "Get the version of PACKAGE, as version list."
-  (epl-package-as-description package
-    (cond
-     ((fboundp 'package-desc-version) (package-desc-version package))
-     ;; Legacy
-     ((fboundp 'package-desc-vers)
-      (let ((version (package-desc-vers package)))
-        (if (listp version) version (version-to-list version))))
-     (:else (error "Cannot get version from %S" package)))))
-
-(defun epl-package-version-string (package)
-  "Get the version from a PACKAGE, as string."
-  (package-version-join (epl-package-version package)))
-
-(defun epl-package-summary (package)
-  "Get the summary of PACKAGE, as string."
-  (epl-package-as-description package
-    (cond
-     ((fboundp 'package-desc-summary) (package-desc-summary package))
-     ((fboundp 'package-desc-doc) (package-desc-doc package)) ; Legacy
-     (:else (error "Cannot get summary from %S" package)))))
-
-(defsubst epl-requirement--from-req (req)
-  "Create a `epl-requirement' from a `package-desc' REQ."
-  (let  ((version (cadr req)))
-    (epl-requirement-create :name (car req)
-                            :version (if (listp version) version
-                                       (version-to-list version)))))
-
-(defun epl-package-requirements (package)
-  "Get the requirements of PACKAGE.
-
-The requirements are a list of `epl-requirement' objects."
-  (epl-package-as-description package
-    (mapcar #'epl-requirement--from-req (package-desc-reqs package))))
-
-(defun epl-package-directory (package)
-  "Get the directory PACKAGE is installed to.
-
-Return the absolute path of the installation directory of
-PACKAGE, or nil, if PACKAGE is not installed."
-  (cond
-   ((fboundp 'package-desc-dir)
-    (package-desc-dir (epl-package-description package)))
-   ((fboundp 'package--dir)
-    (package--dir (symbol-name (epl-package-name package))
-                  (epl-package-version-string package)))
-   (:else (error "Cannot get package directory from %S" package))))
-
-(defun epl-package-->= (pkg1 pkg2)
-  "Determine whether PKG1 is before PKG2 by version."
-  (not (version-list-< (epl-package-version pkg1)
-                       (epl-package-version pkg2))))
-
-(defun epl-package--from-package-desc (package-desc)
-  "Create an `epl-package' from a PACKAGE-DESC.
-
-PACKAGE-DESC is a `package-desc' object, from recent package.el
-variants."
-  (if (and (fboundp 'package-desc-name)
-           (epl--package-desc-p package-desc))
-      (epl-package-create :name (package-desc-name package-desc)
-                          :description package-desc)
-    (signal 'wrong-type-argument (list 'epl--package-desc-p package-desc))))
-
-(defun epl-package--parse-info (info)
-  "Parse a package.el INFO."
-  (if (epl--package-desc-p info)
-      (epl-package--from-package-desc info)
-    ;; For legacy package.el, info is a vector [NAME REQUIRES DESCRIPTION
-    ;; VERSION COMMENTARY].  We need to re-shape this vector into the
-    ;; `package-alist' format [VERSION REQUIRES DESCRIPTION] to attach it to the
-    ;; new `epl-package'.
-    (let ((name (intern (aref info 0)))
-          (info (vector (aref info 3) (aref info 1) (aref info 2))))
-      (epl-package-create :name name :description info))))
-
-(defun epl-package-from-buffer (&optional buffer)
-  "Create an `epl-package' object from BUFFER.
-
-BUFFER defaults to the current buffer.
-
-Signal `epl-invalid-package' if the buffer does not contain a
-valid package file."
-  (let ((info (with-current-buffer (or buffer (current-buffer))
-                (condition-case err
-                    (package-buffer-info)
-                  (error (signal 'epl-invalid-package (cdr err)))))))
-    (epl-package--parse-info info)))
-
-(defun epl-package-from-lisp-file (file-name)
-  "Parse the package headers the file at FILE-NAME.
-
-Return an `epl-package' object with the header metadata."
-  (with-temp-buffer
-    (insert-file-contents file-name)
-    (condition-case err
-        (epl-package-from-buffer (current-buffer))
-      ;; Attach file names to invalid package errors
-      (epl-invalid-package
-       (signal 'epl-invalid-package-file (cons file-name (cdr err))))
-      ;; Forward other errors
-      (error (signal (car err) (cdr err))))))
-
-(defun epl-package-from-tar-file (file-name)
-  "Parse the package tarball at FILE-NAME.
-
-Return a `epl-package' object with the meta data of the tarball
-package in FILE-NAME."
-  (condition-case nil
-      ;; In legacy package.el, `package-tar-file-info' takes the name of the tar
-      ;; file to parse as argument.  In modern package.el, it has no arguments
-      ;; and works on the current buffer.  Hence, we just try to call the legacy
-      ;; version, and if that fails because of a mismatch between formal and
-      ;; actual arguments, we use the modern approach.  To avoid spurious
-      ;; signature warnings by the byte compiler, we suppress warnings when
-      ;; calling the function.
-      (epl-package--parse-info (with-no-warnings
-                                 (package-tar-file-info file-name)))
-    (wrong-number-of-arguments
-     (with-temp-buffer
-       (insert-file-contents-literally file-name)
-       ;; Switch to `tar-mode' to enable extraction of the file.  Modern
-       ;; `package-tar-file-info' relies on `tar-mode', and signals an error if
-       ;; called in a buffer with a different mode.
-       (tar-mode)
-       (epl-package--parse-info (with-no-warnings
-                                  (package-tar-file-info)))))))
-
-(defun epl-package-from-file (file-name)
-  "Parse the package at FILE-NAME.
-
-Return an `epl-package' object with the meta data of the package
-at FILE-NAME."
-  (if (string-match-p (rx ".tar" string-end) file-name)
-      (epl-package-from-tar-file file-name)
-    (epl-package-from-lisp-file file-name)))
-
-(defun epl-package--parse-descriptor-requirement (requirement)
-  "Parse a REQUIREMENT in a package descriptor."
-  ;; This function is only called on legacy package.el.  On package-desc
-  ;; package.el, we just let package.el do the work.
-  (cl-destructuring-bind (name version-string) requirement
-    (list name (version-to-list version-string))))
-
-(defun epl-package-from-descriptor-file (descriptor-file)
-  "Load a `epl-package' from a package DESCRIPTOR-FILE.
-
-A package descriptor is a file defining a new package.  Its name
-typically ends with -pkg.el."
-  (with-temp-buffer
-    (insert-file-contents descriptor-file)
-    (goto-char (point-min))
-    (let ((sexp (read (current-buffer))))
-      (unless (eq (car sexp) 'define-package)
-        (error "%S is no valid package descriptor" descriptor-file))
-      (if (and (fboundp 'package-desc-from-define)
-               (fboundp 'package-desc-name))
-          ;; In Emacs snapshot, we can conveniently call a function to parse the
-          ;; descriptor
-          (let ((desc (apply #'package-desc-from-define (cdr sexp))))
-            (epl-package-create :name (package-desc-name desc)
-                                :description desc))
-        ;; In legacy package.el, we must manually deconstruct the descriptor,
-        ;; because the load function has eval's the descriptor and has a lot of
-        ;; global side-effects.
-        (cl-destructuring-bind
-            (name version-string summary requirements) (cdr sexp)
-          (epl-package-create
-           :name (intern name)
-           :description
-           (vector (version-to-list version-string)
-                   (mapcar #'epl-package--parse-descriptor-requirement
-                           ;; Strip the leading `quote' from the package list
-                           (cadr requirements))
-                   summary)))))))
-
-
-;;; Package database access
-(defun epl-package-installed-p (package &optional min-version)
-  "Determine whether a PACKAGE, of MIN-VERSION or newer, is installed.
-
-PACKAGE is either a package name as symbol, or a package object.
-When a explicit MIN-VERSION is provided it overwrites the version of the PACKAGE object."
-  (let ((name (if (epl-package-p package)
-                  (epl-package-name package)
-                package))
-        (min-version (or min-version (and (epl-package-p package)
-                                          (epl-package-version package)))))
-    (package-installed-p name min-version)))
-
-(defun epl--parse-built-in-entry (entry)
-  "Parse an ENTRY from the list of built-in packages.
-
-Return the corresponding `epl-package' object."
-  (if (fboundp 'package--from-builtin)
-      ;; In package-desc package.el, convert the built-in package to a
-      ;; `package-desc' and convert that to an `epl-package'
-      (epl-package--from-package-desc (package--from-builtin entry))
-    (epl-package-create :name (car entry) :description (cdr entry))))
-
-(defun epl-built-in-packages ()
-  "Get all built-in packages.
-
-Return a list of `epl-package' objects."
-  ;; This looks mighty strange, but it's the only way to force package.el to
-  ;; build the list of built-in packages.  Without this, `package--builtins'
-  ;; might be empty.
-  (package-built-in-p 'foo)
-  (mapcar #'epl--parse-built-in-entry package--builtins))
-
-(defun epl-find-built-in-package (name)
-  "Find a built-in package with NAME.
-
-NAME is a package name, as symbol.
-
-Return the built-in package as `epl-package' object, or nil if
-there is no built-in package with NAME."
-  (when (package-built-in-p name)
-    ;; We must call `package-built-in-p' *before* inspecting
-    ;; `package--builtins', because otherwise `package--builtins' might be
-    ;; empty.
-    (epl--parse-built-in-entry (assq name package--builtins))))
-
-(defun epl-package-outdated-p (package)
-  "Determine whether a PACKAGE is outdated.
-
-A package is outdated, if there is an available package with a
-higher version.
-
-PACKAGE is either a package name as symbol, or a package object.
-In the former case, test the installed or built-in package with
-the highest version number, in the later case, test the package
-object itself.
-
-Return t, if the package is outdated, or nil otherwise."
-  (let* ((package (if (epl-package-p package)
-                      package
-                    (or (car (epl-find-installed-packages package))
-                        (epl-find-built-in-package package))))
-         (available (car (epl-find-available-packages
-                          (epl-package-name package)))))
-    (and package available (version-list-< (epl-package-version package)
-                                           (epl-package-version available)))))
-
-(defun epl--parse-package-list-entry (entry)
-  "Parse a list of packages from ENTRY.
-
-ENTRY is a single entry in a package list, e.g. `package-alist',
-`package-archive-contents', etc.  Typically it is a cons cell,
-but the exact format varies between package.el versions.  This
-function tries to parse all known variants.
-
-Return a list of `epl-package' objects parsed from ENTRY."
-  (let ((descriptions (cdr entry)))
-    (cond
-     ((listp descriptions)
-      (sort (mapcar #'epl-package--from-package-desc descriptions)
-            #'epl-package-->=))
-     ;; Legacy package.el has just a single package in an entry, which is a
-     ;; standard description vector
-     ((vectorp descriptions)
-      (list (epl-package-create :name (car entry)
-                                :description descriptions)))
-     (:else (error "Cannot parse entry %S" entry)))))
-
-(defun epl-installed-packages ()
-  "Get all installed packages.
-
-Return a list of package objects."
-  (apply #'append (mapcar #'epl--parse-package-list-entry package-alist)))
-
-(defsubst epl--filter-outdated-packages (packages)
-  "Filter outdated packages from PACKAGES."
-  (let (res)
-    (dolist (package packages)
-      (when (epl-package-outdated-p package)
-        (push package res)))
-    (nreverse res)))
-
-(defun epl-outdated-packages ()
-  "Get all outdated packages, as in `epl-package-outdated-p'.
-
-Return a list of package objects."
-  (epl--filter-outdated-packages (epl-installed-packages)))
-
-(defsubst epl--find-package-in-list (name list)
-  "Find a package by NAME in a package LIST.
-
-Return a list of corresponding `epl-package' objects."
-  (let ((entry (assq name list)))
-    (when entry
-      (epl--parse-package-list-entry entry))))
-
-(defun epl-find-installed-package (name)
-  "Find the latest installed package by NAME.
-
-NAME is a package name, as symbol.
-
-Return the installed package with the highest version number as
-`epl-package' object, or nil, if no package with NAME is
-installed."
-  (car (epl-find-installed-packages name)))
-(make-obsolete 'epl-find-installed-package 'epl-find-installed-packages "0.7")
-
-(defun epl-find-installed-packages (name)
-  "Find all installed packages by NAME.
-
-NAME is a package name, as symbol.
-
-Return a list of all installed packages with NAME, sorted by
-version number in descending order.  Return nil, if there are no
-packages with NAME."
-  (epl--find-package-in-list name package-alist))
-
-(defun epl-available-packages ()
-  "Get all packages available for installation.
-
-Return a list of package objects."
-  (apply #'append (mapcar #'epl--parse-package-list-entry
-                          package-archive-contents)))
-
-(defun epl-find-available-packages (name)
-  "Find available packages for NAME.
-
-NAME is a package name, as symbol.
-
-Return a list of available packages for NAME, sorted by version
-number in descending order.  Return nil, if there are no packages
-for NAME."
-  (epl--find-package-in-list name package-archive-contents))
-
-(cl-defstruct (epl-upgrade
-               (:constructor epl-upgrade-create))
-  "Structure describing an upgradable package.
-Slots:
-
-`installed' The installed package
-
-`available' The package available for installation."
-  installed
-  available)
-
-(defun epl-find-upgrades (&optional packages)
-  "Find all upgradable PACKAGES.
-
-PACKAGES is a list of package objects to upgrade, defaulting to
-all installed packages.
-
-Return a list of `epl-upgrade' objects describing all upgradable
-packages."
-  (let ((packages (or packages (epl-installed-packages)))
-        upgrades)
-    (dolist (pkg packages)
-      (let* ((version (epl-package-version pkg))
-             (name (epl-package-name pkg))
-             ;; Find the latest available package for NAME
-             (available-pkg (car (epl-find-available-packages name)))
-             (available-version (when available-pkg
-                                  (epl-package-version available-pkg))))
-        (when (and available-version (version-list-< version available-version))
-          (push (epl-upgrade-create :installed pkg
-                                    :available available-pkg)
-                upgrades))))
-    (nreverse upgrades)))
-
-(defalias 'epl-built-in-p 'package-built-in-p)
-
-
-;;; Package operations
-
-(defun epl-install-file (file)
-    "Install a package from FILE, like `package-install-file'."
-    (interactive (advice-eval-interactive-spec
-                  (cadr (interactive-form #'package-install-file))))
-    (apply #'package-install-file (list file))
-    (let ((package (epl-package-from-file file)))
-      (unless (epl-package--package-desc-p package)
-        (epl--kill-autoload-buffer package))))
-
-(defun epl--kill-autoload-buffer (package)
-  "Kill the buffer associated with autoloads for PACKAGE."
-  (let* ((auto-name (format "%s-autoloads.el" (epl-package-name package)))
-         (generated-autoload-file (expand-file-name auto-name (epl-package-directory package)))
-         (buf (find-buffer-visiting generated-autoload-file)))
-    (when buf (kill-buffer buf))))
-
-(defun epl-package-install (package &optional force)
-  "Install a PACKAGE.
-
-PACKAGE is a `epl-package' object.  If FORCE is given and
-non-nil, install PACKAGE, even if it is already installed."
-  (when (or force (not (epl-package-installed-p package)))
-    (if (epl-package--package-desc-p package)
-        (package-install (epl-package-description package))
-      ;; The legacy API installs by name.  We have no control over versioning,
-      ;; etc.
-      (package-install (epl-package-name package))
-      (epl--kill-autoload-buffer package))))
-
-(defun epl-package-delete (package)
-  "Delete a PACKAGE.
-
-PACKAGE is a `epl-package' object to delete."
-  ;; package-delete allows for packages being trashed instead of fully deleted.
-  ;; Let's prevent his silly behavior
-  (let ((delete-by-moving-to-trash nil))
-    ;; The byte compiler will warn us that we are calling `package-delete' with
-    ;; the wrong number of arguments, since it can't infer that we guarantee to
-    ;; always call the correct version.  Thus we suppress all warnings when
-    ;; calling `package-delete'.  I wish there was a more granular way to
-    ;; disable just that specific warning, but it is what it is.
-    (if (epl-package--package-desc-p package)
-        (with-no-warnings
-          (package-delete (epl-package-description package)))
-      ;; The legacy API deletes by name (as string!) and version instead by
-      ;; descriptor.  Hence `package-delete' takes two arguments.  For some
-      ;; insane reason, the arguments are strings here!
-      (let ((name (symbol-name (epl-package-name package)))
-            (version (epl-package-version-string package)))
-        (with-no-warnings
-          (package-delete name version))
-        ;; Legacy package.el does not remove the deleted package
-        ;; from the `package-alist', so we do it manually here.
-        (let ((pkg (assq (epl-package-name package) package-alist)))
-          (when pkg
-            (setq package-alist (delq pkg package-alist))))))))
-
-(defun epl-upgrade (&optional packages preserve-obsolete)
-  "Upgrade PACKAGES.
-
-PACKAGES is a list of package objects to upgrade, defaulting to
-all installed packages.
-
-The old versions of the updated packages are deleted, unless
-PRESERVE-OBSOLETE is non-nil.
-
-Return a list of all performed upgrades, as a list of
-`epl-upgrade' objects."
-  (let ((upgrades (epl-find-upgrades packages)))
-    (dolist (upgrade upgrades)
-      (epl-package-install (epl-upgrade-available upgrade) 'force)
-      (unless preserve-obsolete
-        (epl-package-delete (epl-upgrade-installed upgrade))))
-    upgrades))
-
-(provide 'epl)
-
-;;; epl.el ends here
diff --git a/elpa/epl-20180205.2049/epl.elc b/elpa/epl-20180205.2049/epl.elc
deleted file mode 100644
index 2bc74d6..0000000
--- a/elpa/epl-20180205.2049/epl.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/f-20180106.922/f-autoloads.el b/elpa/f-20180106.922/f-autoloads.el
deleted file mode 100644
index 366a50c..0000000
--- a/elpa/f-20180106.922/f-autoloads.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; f-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "f" "f.el" (0 0 0 0))
-;;; Generated autoloads from f.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "f" '("f-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; f-autoloads.el ends here
diff --git a/elpa/f-20180106.922/f-pkg.el b/elpa/f-20180106.922/f-pkg.el
deleted file mode 100644
index 60f4a6b..0000000
--- a/elpa/f-20180106.922/f-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "f" "20180106.922" "Modern API for working with files and directories" '((s "1.7.0") (dash "2.2.0")) :commit "de6d4d40ddc844eee643e92d47b9d6a63fbebb48" :keywords '("files" "directories") :authors '(("Johan Andersson" . "johan.rejeep@gmail.com")) :maintainer '("Johan Andersson" . "johan.rejeep@gmail.com") :url "http://github.com/rejeep/f.el")
diff --git a/elpa/f-20180106.922/f.el b/elpa/f-20180106.922/f.el
deleted file mode 100644
index 7124deb..0000000
--- a/elpa/f-20180106.922/f.el
+++ /dev/null
@@ -1,624 +0,0 @@
-;;; f.el --- Modern API for working with files and directories -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013 Johan Andersson
-
-;; Author: Johan Andersson <johan.rejeep@gmail.com>
-;; Maintainer: Johan Andersson <johan.rejeep@gmail.com>
-;; Version: 0.20.0
-;; Package-Version: 20180106.922
-;; Keywords: files, directories
-;; URL: http://github.com/rejeep/f.el
-;; Package-Requires: ((s "1.7.0") (dash "2.2.0"))
-
-;; This file is NOT part of GNU Emacs.
-
-;;; License:
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-;; Boston, MA 02110-1301, USA.
-
-;;; Code:
-
-
-
-(require 's)
-(require 'dash)
-
-(put 'f-guard-error 'error-conditions '(error f-guard-error))
-(put 'f-guard-error 'error-message "Destructive operation outside sandbox")
-
-(defvar f--guard-paths nil
-  "List of allowed paths to modify when guarded.
-
-Do not modify this variable.")
-
-(defmacro f--destructive (path &rest body)
-  "If PATH is allowed to be modified, yield BODY.
-
-If PATH is not allowed to be modified, throw error."
-  (declare (indent 1))
-  `(if f--guard-paths
-       (if (--any? (or (f-same? it ,path)
-                       (f-ancestor-of? it ,path)) f--guard-paths)
-           (progn ,@body)
-         (signal 'f-guard-error (list ,path f--guard-paths)))
-     ,@body))
-
-
-;;;; Paths
-
-(defun f-join (&rest args)
-  "Join ARGS to a single path."
-  (let (path (relative (f-relative? (car args))))
-    (-map
-     (lambda (arg)
-       (setq path (f-expand arg path)))
-     args)
-    (if relative (f-relative path) path)))
-
-(defun f-split (path)
-  "Split PATH and return list containing parts."
-  (let ((parts (s-split (f-path-separator) path 'omit-nulls)))
-    (if (f-absolute? path)
-        (push (f-path-separator) parts)
-      parts)))
-
-(defun f-expand (path &optional dir)
-  "Expand PATH relative to DIR (or `default-directory').
-PATH and DIR can be either a directory names or directory file
-names.  Return a directory name if PATH is a directory name, and
-a directory file name otherwise.  File name handlers are
-ignored."
-  (let (file-name-handler-alist)
-    (expand-file-name path dir)))
-
-(defun f-filename (path)
-  "Return the name of PATH."
-  (file-name-nondirectory (directory-file-name path)))
-
-(defalias 'f-parent 'f-dirname)
-(defun f-dirname (path)
-  "Return the parent directory to PATH."
-  (let ((parent (file-name-directory
-                 (directory-file-name (f-expand path default-directory)))))
-    (unless (f-same? path parent)
-      (if (f-relative? path)
-          (f-relative parent)
-        (directory-file-name parent)))))
-
-(defun f-common-parent (paths)
-  "Return the deepest common parent directory of PATHS."
-  (cond
-   ((not paths) nil)
-   ((not (cdr paths)) (f-parent (car paths)))
-   (:otherwise
-    (let* ((paths (-map 'f-split paths))
-           (common (caar paths))
-           (re nil))
-      (while (and (not (null (car paths))) (--all? (equal (car it) common) paths))
-        (setq paths (-map 'cdr paths))
-        (push common re)
-        (setq common (caar paths)))
-      (cond
-       ((null re) "")
-       ((and (= (length re) 1) (f-root? (car re)))
-        (f-root))
-       (:otherwise
-        (concat (apply 'f-join (nreverse re)) "/")))))))
-
-(defun f-ext (path)
-  "Return the file extension of PATH.
-
-The extension, in a file name, is the part that follows the last
-'.', excluding version numbers and backup suffixes."
-  (file-name-extension path))
-
-(defun f-no-ext (path)
-  "Return everything but the file extension of PATH."
-  (file-name-sans-extension path))
-
-(defun f-swap-ext (path ext)
-  "Return PATH but with EXT as the new extension.
-EXT must not be nil or empty."
-  (if (s-blank? ext)
-      (error "Extension cannot be empty or nil")
-    (concat (f-no-ext path) "." ext)))
-
-(defun f-base (path)
-  "Return the name of PATH, excluding the extension of file."
-  (f-no-ext (f-filename path)))
-
-(defun f-relative (path &optional dir)
-  "Return PATH relative to DIR."
-  (file-relative-name path dir))
-
-(defalias 'f-abbrev 'f-short)
-(defun f-short (path)
-  "Return abbrev of PATH.  See `abbreviate-file-name'."
-  (abbreviate-file-name path))
-
-(defun f-long (path)
-  "Return long version of PATH."
-  (f-expand path))
-
-(defun f-canonical (path)
-  "Return the canonical name of PATH."
-  (file-truename path))
-
-(defun f-slash (path)
-  "Append slash to PATH unless one already.
-
-Some functions, such as `call-process' requires there to be an
-ending slash."
-  (if (f-dir? path)
-      (file-name-as-directory path)
-    path))
-
-(defun f-full (path)
-  "Return absolute path to PATH, with ending slash."
-  (f-slash (f-long path)))
-
-(defun f--uniquify (paths)
-  "Helper for `f-uniquify' and `f-uniquify-alist'."
-  (let* ((files-length (length paths))
-         (uniq-filenames (--map (cons it (f-filename it)) paths))
-         (uniq-filenames-next (-group-by 'cdr uniq-filenames)))
-    (while (/= files-length (length uniq-filenames-next))
-      (setq uniq-filenames-next
-            (-group-by 'cdr
-                       (--mapcat
-                        (let ((conf-files (cdr it)))
-                          (if (> (length conf-files) 1)
-                              (--map (cons (car it) (concat (f-filename (s-chop-suffix (cdr it) (car it))) (f-path-separator) (cdr it))) conf-files)
-                            conf-files))
-                        uniq-filenames-next))))
-    uniq-filenames-next))
-
-(defun f-uniquify (files)
-  "Return unique suffixes of FILES.
-
-This function expects no duplicate paths."
-  (-map 'car (f--uniquify files)))
-
-(defun f-uniquify-alist (files)
-  "Return alist mapping FILES to unique suffixes of FILES.
-
-This function expects no duplicate paths."
-  (-map 'cadr (f--uniquify files)))
-
-
-;;;; I/O
-
-(defun f-read-bytes (path)
-  "Read binary data from PATH.
-
-Return the binary data as unibyte string."
-  (with-temp-buffer
-    (set-buffer-multibyte nil)
-    (setq buffer-file-coding-system 'binary)
-    (insert-file-contents-literally path)
-    (buffer-substring-no-properties (point-min) (point-max))))
-
-(defalias 'f-read 'f-read-text)
-(defun f-read-text (path &optional coding)
-  "Read text with PATH, using CODING.
-
-CODING defaults to `utf-8'.
-
-Return the decoded text as multibyte string."
-  (decode-coding-string (f-read-bytes path) (or coding 'utf-8)))
-
-(defalias 'f-write 'f-write-text)
-(defun f-write-text (text coding path)
-  "Write TEXT with CODING to PATH.
-
-TEXT is a multibyte string.  CODING is a coding system to encode
-TEXT with.  PATH is a file name to write to."
-  (f-write-bytes (encode-coding-string text coding) path))
-
-(defun f-unibyte-string-p (s)
-  "Determine whether S is a unibyte string."
-  (not (multibyte-string-p s)))
-
-(defun f-write-bytes (data path)
-  "Write binary DATA to PATH.
-
-DATA is a unibyte string.  PATH is a file name to write to."
-  (f--destructive path
-    (unless (f-unibyte-string-p data)
-      (signal 'wrong-type-argument (list 'f-unibyte-string-p data)))
-    (let ((file-coding-system-alist nil)
-          (coding-system-for-write 'binary))
-      (with-temp-file path
-        (setq buffer-file-coding-system 'binary)
-        (set-buffer-multibyte nil)
-        (insert data)))))
-
-(defalias 'f-append 'f-append-text)
-(defun f-append-text (text coding path)
-  "Append TEXT with CODING to PATH.
-
-If PATH does not exist, it is created."
-  (f-append-bytes (encode-coding-string text coding) path))
-
-(defun f-append-bytes (data path)
-  "Append binary DATA to PATH.
-
-If PATH does not exist, it is created."
-  (let ((content
-         (if (f-file? path)
-             (f-read-bytes path)
-           "")))
-    (f-write-bytes (concat content data) path)))
-
-
-;;;; Destructive
-
-(defun f-mkdir (&rest dirs)
-  "Create directories DIRS."
-  (let (path)
-    (-each
-        dirs
-      (lambda (dir)
-        (setq path (f-expand dir path))
-        (unless (f-directory? path)
-          (f--destructive path (make-directory path)))))))
-
-(defun f-delete (path &optional force)
-  "Delete PATH, which can be file or directory.
-
-If FORCE is t, a directory will be deleted recursively."
-  (f--destructive path
-    (if (or (f-file? path) (f-symlink? path))
-        (delete-file path)
-      (delete-directory path force))))
-
-(defun f-symlink (source path)
-  "Create a symlink to SOURCE from PATH."
-  (f--destructive path (make-symbolic-link source path)))
-
-(defun f-move (from to)
-  "Move or rename FROM to TO.
-If TO is a directory name, move FROM into TO."
-  (f--destructive to (rename-file from to t)))
-
-(defun f-copy (from to)
-  "Copy file or directory FROM to TO.
-If FROM names a directory and TO is a directory name, copy FROM
-into TO as a subdirectory."
-  (f--destructive to
-    (if (f-file? from)
-        (copy-file from to)
-      ;; The behavior of `copy-directory' differs between Emacs 23 and
-      ;; 24 in that in Emacs 23, the contents of `from' is copied to
-      ;; `to', while in Emacs 24 the directory `from' is copied to
-      ;; `to'. We want the Emacs 24 behavior.
-      (if (> emacs-major-version 23)
-          (copy-directory from to)
-        (if (f-dir? to)
-            (progn
-              (apply 'f-mkdir (f-split to))
-              (let ((new-to (f-expand (f-filename from) to)))
-                (copy-directory from new-to)))
-          (copy-directory from to))))))
-
-(defun f-copy-contents (from to)
-  "Copy contents in directory FROM, to directory TO."
-  (unless (f-exists? to)
-    (error "Cannot copy contents to non existing directory %s" to))
-  (unless (f-dir? from)
-    (error "Cannot copy contents as %s is a file" from))
-  (--each (f-entries from)
-    (f-copy it (file-name-as-directory to))))
-
-(defun f-touch (path)
-  "Update PATH last modification date or create if it does not exist."
-  (f--destructive path
-    (if (f-file? path)
-        (set-file-times path)
-      (f-write-bytes "" path))))
-
-
-;;;; Predicates
-
-(defun f-exists? (path)
-  "Return t if PATH exists, false otherwise."
-  (file-exists-p path))
-
-(defalias 'f-exists-p 'f-exists?)
-
-(defalias 'f-dir? 'f-directory?)
-(defalias 'f-dir-p 'f-dir?)
-
-(defun f-directory? (path)
-  "Return t if PATH is directory, false otherwise."
-  (file-directory-p path))
-
-(defalias 'f-directory-p 'f-directory?)
-
-(defun f-file? (path)
-  "Return t if PATH is file, false otherwise."
-  (file-regular-p path))
-
-(defalias 'f-file-p 'f-file?)
-
-(defun f-symlink? (path)
-  "Return t if PATH is symlink, false otherwise."
-  (not (not (file-symlink-p path))))
-
-(defalias 'f-symlink-p 'f-symlink?)
-
-(defun f-readable? (path)
-  "Return t if PATH is readable, false otherwise."
-  (file-readable-p path))
-
-(defalias 'f-readable-p 'f-readable?)
-
-(defun f-writable? (path)
-  "Return t if PATH is writable, false otherwise."
-  (file-writable-p path))
-
-(defalias 'f-writable-p 'f-writable?)
-
-(defun f-executable? (path)
-  "Return t if PATH is executable, false otherwise."
-  (file-executable-p path))
-
-(defalias 'f-executable-p 'f-executable?)
-
-(defun f-absolute? (path)
-  "Return t if PATH is absolute, false otherwise."
-  (file-name-absolute-p path))
-
-(defalias 'f-absolute-p 'f-absolute?)
-
-(defun f-relative? (path)
-  "Return t if PATH is relative, false otherwise."
-  (not (f-absolute? path)))
-
-(defalias 'f-relative-p 'f-relative?)
-
-(defun f-root? (path)
-  "Return t if PATH is root directory, false otherwise."
-  (not (f-parent path)))
-
-(defalias 'f-root-p 'f-root?)
-
-(defun f-ext? (path &optional ext)
-  "Return t if extension of PATH is EXT, false otherwise.
-
-If EXT is nil or omitted, return t if PATH has any extension,
-false otherwise.
-
-The extension, in a file name, is the part that follows the last
-'.', excluding version numbers and backup suffixes."
-  (if ext
-      (string= (f-ext path) ext)
-    (not (eq (f-ext path) nil))))
-
-(defalias 'f-ext-p 'f-ext?)
-
-(defalias 'f-equal? 'f-same?)
-(defalias 'f-equal-p 'f-equal?)
-
-(defun f-same? (path-a path-b)
-  "Return t if PATH-A and PATH-B are references to same file."
-  (when (and (f-exists? path-a)
-             (f-exists? path-b))
-    (equal
-     (f-canonical (directory-file-name (f-expand path-a)))
-     (f-canonical (directory-file-name (f-expand path-b))))))
-
-(defalias 'f-same-p 'f-same?)
-
-(defun f-parent-of? (path-a path-b)
-  "Return t if PATH-A is parent of PATH-B."
-  (--when-let (f-parent path-b)
-    (f-same? path-a it)))
-
-(defalias 'f-parent-of-p 'f-parent-of?)
-
-(defun f-child-of? (path-a path-b)
-  "Return t if PATH-A is child of PATH-B."
-  (--when-let (f-parent path-a)
-    (f-same? it path-b)))
-
-(defalias 'f-child-of-p 'f-child-of?)
-
-(defun f-ancestor-of? (path-a path-b)
-  "Return t if PATH-A is ancestor of PATH-B."
-  (unless (f-same? path-a path-b)
-    (s-starts-with? (f-full path-a)
-                    (f-full path-b))))
-
-(defalias 'f-ancestor-of-p 'f-ancestor-of?)
-
-(defun f-descendant-of? (path-a path-b)
-  "Return t if PATH-A is desendant of PATH-B."
-  (unless (f-same? path-a path-b)
-    (s-starts-with? (f-full path-b)
-                    (f-full path-a))))
-
-(defalias 'f-descendant-of-p 'f-descendant-of?)
-
-(defun f-hidden? (path)
-  "Return t if PATH is hidden, nil otherwise."
-  (unless (f-exists? path)
-    (error "Path does not exist: %s" path))
-  (string= (substring path 0 1) "."))
-
-(defalias 'f-hidden-p 'f-hidden?)
-
-(defun f-empty? (path)
-  "If PATH is a file, return t if the file in PATH is empty, nil otherwise.
-If PATH is directory, return t if directory has no files, nil otherwise."
-  (if (f-directory? path)
-      (equal (f-files path nil t) nil)
-    (= (f-size path) 0)))
-
-(defalias 'f-empty-p 'f-empty?)
-
-
-;;;; Stats
-
-(defun f-size (path)
-  "Return size of PATH.
-
-If PATH is a file, return size of that file.  If PATH is
-directory, return sum of all files in PATH."
-  (if (f-directory? path)
-      (-sum (-map 'f-size (f-files path nil t)))
-    (nth 7 (file-attributes path))))
-
-(defun f-depth (path)
-  "Return the depth of PATH.
-
-At first, PATH is expanded with `f-expand'.  Then the full path is used to
-detect the depth.
-'/' will be zero depth,  '/usr' will be one depth.  And so on."
-  (- (length (f-split (f-expand path))) 1))
-
-
-;;;; Misc
-
-(defun f-this-file ()
-  "Return path to this file."
-  (cond
-   (load-in-progress load-file-name)
-   ((and (boundp 'byte-compile-current-file) byte-compile-current-file)
-    byte-compile-current-file)
-   (:else (buffer-file-name))))
-
-(defvar f--path-separator nil
-  "A variable to cache result of `f-path-separator'.")
-
-(defun f-path-separator ()
-  "Return path separator."
-  (or f--path-separator
-      (setq f--path-separator (substring (f-join "x" "y") 1 2))))
-
-(defun f-glob (pattern &optional path)
-  "Find PATTERN in PATH."
-  (file-expand-wildcards
-   (f-join (or path default-directory) pattern)))
-
-(defun f--collect-entries (path recursive)
-  (let (result
-        (entries
-         (-reject
-          (lambda (file)
-            (or
-             (equal (f-filename file) ".")
-             (equal (f-filename file) "..")))
-          (directory-files path t))))
-    (cond (recursive
-           (-map
-            (lambda (entry)
-              (if (f-file? entry)
-                  (setq result (cons entry result))
-                (when (f-directory? entry)
-                  (setq result (cons entry result))
-                  (setq result (append result (f--collect-entries entry recursive))))))
-            entries))
-          (t (setq result entries)))
-    result))
-
-(defmacro f--entries (path body &optional recursive)
-  "Anaphoric version of `f-entries'."
-  `(f-entries
-    ,path
-    (lambda (path)
-      (let ((it path))
-        ,body))
-    ,recursive))
-
-(defun f-entries (path &optional fn recursive)
-  "Find all files and directories in PATH.
-
-FN - called for each found file and directory.  If FN returns a thruthy
-value, file or directory will be included.
-RECURSIVE - Search for files and directories recursive."
-  (let ((entries (f--collect-entries path recursive)))
-    (if fn (-select fn entries) entries)))
-
-(defmacro f--directories (path body &optional recursive)
-  "Anaphoric version of `f-directories'."
-  `(f-directories
-    ,path
-    (lambda (path)
-      (let ((it path))
-        ,body))
-    ,recursive))
-
-(defun f-directories (path &optional fn recursive)
-  "Find all directories in PATH.  See `f-entries'."
-  (let ((directories (-select 'f-directory? (f--collect-entries path recursive))))
-    (if fn (-select fn directories) directories)))
-
-(defmacro f--files (path body &optional recursive)
-  "Anaphoric version of `f-files'."
-  `(f-files
-    ,path
-    (lambda (path)
-      (let ((it path))
-        ,body))
-    ,recursive))
-
-(defun f-files (path &optional fn recursive)
-  "Find all files in PATH.  See `f-entries'."
-  (let ((files (-select 'f-file? (f--collect-entries path recursive))))
-    (if fn (-select fn files) files)))
-
-(defmacro f--traverse-upwards (body &optional path)
-  "Anaphoric version of `f-traverse-upwards'."
-  `(f-traverse-upwards
-    (lambda (dir)
-      (let ((it dir))
-        ,body))
-    ,path))
-
-(defun f-traverse-upwards (fn &optional path)
-  "Traverse up as long as FN return nil, starting at PATH.
-
-If FN returns a non-nil value, the path sent as argument to FN is
-returned.  If no function callback return a non-nil value, nil is
-returned."
-  (unless path
-    (setq path default-directory))
-  (when (f-relative? path)
-    (setq path (f-expand path)))
-  (if (funcall fn path)
-      path
-    (unless (f-root? path)
-      (f-traverse-upwards fn (f-parent path)))))
-
-(defun f-root ()
-  "Return absolute root."
-  (f-traverse-upwards 'f-root?))
-
-(defmacro f-with-sandbox (path-or-paths &rest body)
-  "Only allow PATH-OR-PATHS and decendants to be modified in BODY."
-  (declare (indent 1))
-  `(let ((paths (if (listp ,path-or-paths)
-                    ,path-or-paths
-                  (list ,path-or-paths))))
-     (unwind-protect
-         (let ((f--guard-paths paths))
-           ,@body)
-       (setq f--guard-paths nil))))
-
-(provide 'f)
-
-;;; f.el ends here
diff --git a/elpa/f-20180106.922/f.elc b/elpa/f-20180106.922/f.elc
deleted file mode 100644
index de31750..0000000
--- a/elpa/f-20180106.922/f.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/flycheck-20181018.1021/flycheck-autoloads.el b/elpa/flycheck-20181018.1021/flycheck-autoloads.el
deleted file mode 100644
index b5e7a65..0000000
--- a/elpa/flycheck-20181018.1021/flycheck-autoloads.el
+++ /dev/null
@@ -1,259 +0,0 @@
-;;; flycheck-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "flycheck" "flycheck.el" (0 0 0 0))
-;;; Generated autoloads from flycheck.el
-
-(autoload 'flycheck-manual "flycheck" "\
-Open the Flycheck manual.
-
-\(fn)" t nil)
-
-(autoload 'flycheck-mode "flycheck" "\
-Minor mode for on-the-fly syntax checking.
-
-When called interactively, toggle `flycheck-mode'.  With prefix
-ARG, enable `flycheck-mode' if ARG is positive, otherwise disable
-it.
-
-When called from Lisp, enable `flycheck-mode' if ARG is omitted,
-nil or positive.  If ARG is `toggle', toggle `flycheck-mode'.
-Otherwise behave as if called interactively.
-
-In `flycheck-mode' the buffer is automatically syntax-checked
-using the first suitable syntax checker from `flycheck-checkers'.
-Use `flycheck-select-checker' to select a checker for the current
-buffer manually.
-
-\\{flycheck-mode-map}
-
-\(fn &optional ARG)" t nil)
-
-(defvar global-flycheck-mode nil "\
-Non-nil if Global Flycheck mode is enabled.
-See the `global-flycheck-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `global-flycheck-mode'.")
-
-(custom-autoload 'global-flycheck-mode "flycheck" nil)
-
-(autoload 'global-flycheck-mode "flycheck" "\
-Toggle Flycheck mode in all buffers.
-With prefix ARG, enable Global Flycheck mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Flycheck mode is enabled in all buffers where
-`flycheck-mode-on-safe' would do it.
-See `flycheck-mode' for more information on Flycheck mode.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'flycheck-define-error-level "flycheck" "\
-Define a new error LEVEL with PROPERTIES.
-
-The following PROPERTIES constitute an error level:
-
-`:severity SEVERITY'
-     A number denoting the severity of this level.  The higher
-     the number, the more severe is this level compared to other
-     levels.  Defaults to 0.
-
-     The severity is used by `flycheck-error-level-<' to
-     determine the ordering of errors according to their levels.
-
-`:compilation-level LEVEL'
-
-     A number indicating the broad class of messages that errors
-     at this level belong to: one of 0 (info), 1 (warning), or
-     2 or nil (error).  Defaults to nil.
-
-     This is used by `flycheck-checker-pattern-to-error-regexp'
-     to map error levels into `compilation-mode''s hierarchy and
-     to get proper highlighting of errors in `compilation-mode'.
-
-`:overlay-category CATEGORY'
-     A symbol denoting the overlay category to use for error
-     highlight overlays for this level.  See Info
-     node `(elisp)Overlay Properties' for more information about
-     overlay categories.
-
-     A category for an error level overlay should at least define
-     the `face' property, for error highlighting.  Another useful
-     property for error level categories is `priority', to
-     influence the stacking of multiple error level overlays.
-
-`:fringe-bitmap BITMAP'
-     A fringe bitmap symbol denoting the bitmap to use for fringe
-     indicators for this level.  See Info node `(elisp)Fringe
-     Bitmaps' for more information about fringe bitmaps,
-     including a list of built-in fringe bitmaps.
-
-`:fringe-face FACE'
-     A face symbol denoting the face to use for fringe indicators
-     for this level.
-
-`:error-list-face FACE'
-     A face symbol denoting the face to use for messages of this
-     level in the error list.  See `flycheck-list-errors'.
-
-\(fn LEVEL &rest PROPERTIES)" nil nil)
-
-(function-put 'flycheck-define-error-level 'lisp-indent-function '1)
-
-(autoload 'flycheck-define-command-checker "flycheck" "\
-Define SYMBOL as syntax checker to run a command.
-
-Define SYMBOL as generic syntax checker via
-`flycheck-define-generic-checker', which uses an external command
-to check the buffer.  SYMBOL and DOCSTRING are the same as for
-`flycheck-define-generic-checker'.
-
-In addition to the properties understood by
-`flycheck-define-generic-checker', the following PROPERTIES
-constitute a command syntax checker.  Unless otherwise noted, all
-properties are mandatory.  Note that the default `:error-filter'
-of command checkers is `flycheck-sanitize-errors'.
-
-`:command COMMAND'
-     The command to run for syntax checking.
-
-     COMMAND is a list of the form `(EXECUTABLE [ARG ...])'.
-
-     EXECUTABLE is a string with the executable of this syntax
-     checker.  It can be overridden with the variable
-     `flycheck-SYMBOL-executable'.  Note that this variable is
-     NOT implicitly defined by this function.  Use
-     `flycheck-def-executable-var' to define this variable.
-
-     Each ARG is an argument to the executable, either as string,
-     or as special symbol or form for
-     `flycheck-substitute-argument', which see.
-
-`:error-patterns PATTERNS'
-     A list of patterns to parse the output of the `:command'.
-
-     Each ITEM in PATTERNS is a list `(LEVEL SEXP ...)', where
-     LEVEL is a Flycheck error level (see
-     `flycheck-define-error-level'), followed by one or more RX
-     `SEXP's which parse an error of that level and extract line,
-     column, file name and the message.
-
-     See `rx' for general information about RX, and
-     `flycheck-rx-to-string' for some special RX forms provided
-     by Flycheck.
-
-     All patterns are applied in the order of declaration to the
-     whole output of the syntax checker.  Output already matched
-     by a pattern will not be matched by subsequent patterns.  In
-     other words, the first pattern wins.
-
-     This property is optional.  If omitted, however, an
-     `:error-parser' is mandatory.
-
-`:error-parser FUNCTION'
-     A function to parse errors with.
-
-     The function shall accept three arguments OUTPUT CHECKER
-     BUFFER.  OUTPUT is the syntax checker output as string,
-     CHECKER the syntax checker that was used, and BUFFER a
-     buffer object representing the checked buffer.  The function
-     must return a list of `flycheck-error' objects parsed from
-     OUTPUT.
-
-     This property is optional.  If omitted, it defaults to
-     `flycheck-parse-with-patterns'.  In this case,
-     `:error-patterns' is mandatory.
-
-`:standard-input t'
-     Whether to send the buffer contents on standard input.
-
-     If this property is given and has a non-nil value, send the
-     contents of the buffer on standard input.
-
-     Defaults to nil.
-
-Note that you may not give `:start', `:interrupt', and
-`:print-doc' for a command checker.  You can give a custom
-`:verify' function, though, whose results will be appended to the
-default `:verify' function of command checkers.
-
-\(fn SYMBOL DOCSTRING &rest PROPERTIES)" nil nil)
-
-(function-put 'flycheck-define-command-checker 'lisp-indent-function '1)
-
-(function-put 'flycheck-define-command-checker 'doc-string-elt '2)
-
-(autoload 'flycheck-def-config-file-var "flycheck" "\
-Define SYMBOL as config file variable for CHECKER, with default FILE-NAME.
-
-SYMBOL is declared as customizable variable using `defcustom', to
-provide a configuration file for the given syntax CHECKER.
-CUSTOM-ARGS are forwarded to `defcustom'.
-
-FILE-NAME is the initial value of the new variable.  If omitted,
-the default value is nil.
-
-Use this together with the `config-file' form in the `:command'
-argument to `flycheck-define-checker'.
-
-\(fn SYMBOL CHECKER &optional FILE-NAME &rest CUSTOM-ARGS)" nil t)
-
-(function-put 'flycheck-def-config-file-var 'lisp-indent-function '3)
-
-(autoload 'flycheck-def-option-var "flycheck" "\
-Define SYMBOL as option variable with INIT-VALUE for CHECKER.
-
-SYMBOL is declared as customizable variable using `defcustom', to
-provide an option for the given syntax CHECKERS (a checker or a
-list of checkers).  INIT-VALUE is the initial value of the
-variable, and DOCSTRING is its docstring.  CUSTOM-ARGS are
-forwarded to `defcustom'.
-
-Use this together with the `option', `option-list' and
-`option-flag' forms in the `:command' argument to
-`flycheck-define-checker'.
-
-\(fn SYMBOL INIT-VALUE CHECKERS DOCSTRING &rest CUSTOM-ARGS)" nil t)
-
-(function-put 'flycheck-def-option-var 'lisp-indent-function '3)
-
-(function-put 'flycheck-def-option-var 'doc-string-elt '4)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flycheck" '("flycheck-" "list-flycheck-errors" "locate-rebar3-project-root" "contains-rebar-config" "help-flycheck-checker-d" "read-flycheck-")))
-
-;;;***
-
-;;;### (autoloads nil "flycheck-buttercup" "flycheck-buttercup.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from flycheck-buttercup.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flycheck-buttercup" '("flycheck-buttercup-format-error-list")))
-
-;;;***
-
-;;;### (autoloads nil "flycheck-ert" "flycheck-ert.el" (0 0 0 0))
-;;; Generated autoloads from flycheck-ert.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flycheck-ert" '("flycheck-er")))
-
-;;;***
-
-;;;### (autoloads nil nil ("flycheck-pkg.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; flycheck-autoloads.el ends here
diff --git a/elpa/flycheck-20181018.1021/flycheck-buttercup.el b/elpa/flycheck-20181018.1021/flycheck-buttercup.el
deleted file mode 100644
index 9802265..0000000
--- a/elpa/flycheck-20181018.1021/flycheck-buttercup.el
+++ /dev/null
@@ -1,157 +0,0 @@
-;;; flycheck-buttercup.el --- Flycheck: Extensions to Buttercup -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017 Flycheck contributors
-;; Copyright (C) 2016 Sebastian Wiesner and Flycheck contributors
-
-;; Author: Sebastian Wiesner <swiesner@lunaryorn.com>
-;; Maintainer: Clément Pit-Claudel <clement.pitclaudel@live.com>
-;;             fmdkdd <fmdkdd@gmail.com>
-;; Keywords: lisp, tools
-
-;; This file is not part of GNU Emacs.
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Extensions to Buttercup to write BDD tests for Flycheck.
-;;
-;; Buttercup is a BDD testing framework for Emacs, see URL
-;; `https://github.com/jorgenschaefer/emacs-buttercup/'.  Flycheck uses
-;; Buttercup extensively for new tests.
-;;
-;; This library provides extensions to Buttercup to write Specs for Flycheck.
-;;
-;; * Custom matchers
-;;
-;; (expect 'foo :to-be-local) - Is `foo' a local variable in the current buffer?
-
-;;; Code:
-
-(require 'buttercup)
-(require 'flycheck)
-(require 'seq)
-
-
-;;; Buttercup helpers
-
-(defun flycheck-buttercup-format-error-list (errors)
-  "Format ERRORS into a human-readable string."
-  (mapconcat (lambda (e) (flycheck-error-format e 'with-file-name))
-             errors "\n"))
-
-
-;;; Data matchers
-
-(buttercup-define-matcher :to-be-empty-string (s)
-  (let ((s (funcall s)))
-    (if (equal s "")
-        (cons t (format "Expected %S not be an empty string" s))
-      (cons nil (format "Expected %S to be an empty string" s)))))
-
-(buttercup-define-matcher :to-match-with-group (re s index match)
-  (let* ((re (funcall re))
-         (s (funcall s))
-         (index (funcall index))
-         (match (funcall match))
-         (matches? (string-match re s))
-         (result (and matches? (match-string index s))))
-    (if (and matches? (equal result match))
-        (cons t (format "Expected %S not to match %S with %S in group %s"
-                        re s match index))
-
-      (cons nil (format "Expected %S to match %S with %S in group %s, %s"
-                        re s match index
-                        (if matches?
-                            (format "but got %S" result)
-                          "but did not match"))))))
-
-
-;;; Emacs feature matchers
-
-(buttercup-define-matcher :to-be-live (buffer)
-  (let ((buffer (get-buffer (funcall buffer))))
-    (if (buffer-live-p buffer)
-        (cons t (format "Expected %S not to be a live buffer, but it is"
-                        buffer))
-      (cons nil (format "Expected %S to be a live buffer, but it is not"
-                        buffer)))))
-
-(buttercup-define-matcher :to-be-visible (buffer)
-  (let ((buffer (get-buffer (funcall buffer))))
-    (cond
-     ((and buffer (get-buffer-window buffer))
-      (cons t (format "Expected %S not to be a visible buffer, but it is"
-                      buffer)))
-     ((not (bufferp buffer))
-      (cons nil
-            (format "Expected %S to be a visible buffer, but it is not a buffer"
-                    buffer)))
-     (t (cons
-         nil
-         (format "Expected %S to be a visible buffer, but it is not visible"
-                 buffer))))))
-
-(buttercup-define-matcher :to-be-local (symbol)
-  (let ((symbol (funcall symbol)))
-    (if (local-variable-p symbol)
-        (cons t (format "Expected %S not to be a local variable, but it is"
-                        symbol))
-      (cons nil (format "Expected %S to be a local variable, but it is not"
-                        symbol)))))
-
-(buttercup-define-matcher :to-contain-match (buffer re)
-  (let ((buffer (funcall buffer))
-        (re (funcall re)))
-    (if (not (get-buffer buffer))
-        (cons nil (format "Expected %S to contain a match of %s, \
-but is not a buffer" buffer re))
-      (with-current-buffer buffer
-        (save-excursion
-          (goto-char (point-min))
-          (if (re-search-forward re nil 'noerror)
-              (cons t (format "Expected %S to contain a match \
-for %s, but it did not" buffer re))
-            (cons nil (format "Expected %S not to contain a match for \
-%s but it did not." buffer re))))))))
-
-
-;;; Flycheck matchers
-
-(buttercup-define-matcher :to-be-equal-flycheck-errors (a b)
-  (let* ((a (funcall a))
-         (b (funcall b))
-         (a-formatted (flycheck-buttercup-format-error-list a))
-         (b-formatted (flycheck-buttercup-format-error-list b)))
-    (if (equal a b)
-        (cons t (format "Expected
-%s
-not to be equal to
-%s" a-formatted b-formatted))
-      (cons nil (format "Expected
-%s
-to be equal to
-%s" a-formatted b-formatted)))))
-
-(provide 'flycheck-buttercup)
-
-;; Disable byte compilation for this library, to prevent package.el choking on a
-;; missing `buttercup' library.  See
-;; https://github.com/flycheck/flycheck/issues/860
-
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
-
-;;; flycheck-buttercup.el ends here
diff --git a/elpa/flycheck-20181018.1021/flycheck-ert.el b/elpa/flycheck-20181018.1021/flycheck-ert.el
deleted file mode 100644
index b7c2bc0..0000000
--- a/elpa/flycheck-20181018.1021/flycheck-ert.el
+++ /dev/null
@@ -1,483 +0,0 @@
-;;; flycheck-ert.el --- Flycheck: ERT extensions  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017-2018 Flycheck contributors
-;; Copyright (C) 2013-2016 Sebastian Wiesner and Flycheck contributors
-
-;; Author: Sebastian Wiesner <swiesner@lunaryorn.com>
-;; Maintainer: Clément Pit-Claudel <clement.pitclaudel@live.com>
-;;             fmdkdd <fmdkdd@gmail.com>
-;; URL: https://github.com/flycheck/flycheck
-
-;; This file is not part of GNU Emacs.
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Unit testing library for Flycheck, the modern on-the-fly syntax checking
-;; extension for GNU Emacs.
-
-;; Provide various utility functions and unit test helpers to test Flycheck and
-;; Flycheck extensions.
-
-;;; Code:
-
-(require 'flycheck)
-(require 'ert)
-(require 'macroexp)                     ; For macro utilities
-
-
-;;; Compatibility
-
-(eval-and-compile
-  ;; Provide `ert-skip' and friends for Emacs 24.3
-  (defconst flycheck-ert-ert-can-skip (fboundp 'ert-skip)
-    "Whether ERT supports test skipping.")
-
-  (unless (fboundp 'define-error)
-    ;; from Emacs `subr.el'
-    (defun define-error (name message &optional parent)
-      "Define NAME as a new error signal.
-MESSAGE is a string that will be output to the echo area if such an error
-is signaled without being caught by a `condition-case'.
-PARENT is either a signal or a list of signals from which it inherits.
-Defaults to `error'."
-      (unless parent (setq parent 'error))
-      (let ((conditions
-             (if (consp parent)
-                 (apply #'append
-                        (mapcar
-                         (lambda (parent)
-                           (cons parent
-                                 (or (get parent 'error-conditions)
-                                     (error "Unknown signal `%s'" parent))))
-                         parent))
-               (cons parent (get parent 'error-conditions)))))
-        (put name 'error-conditions
-             (delete-dups (copy-sequence (cons name conditions))))
-        (when message (put name 'error-message message)))))
-
-  (unless flycheck-ert-ert-can-skip
-    ;; Fake skipping
-
-    (define-error 'flycheck-ert-skipped "Test skipped")
-
-    (defun ert-skip (data)
-      (signal 'flycheck-ert-skipped data))
-
-    (defmacro skip-unless (form)
-      `(unless (ignore-errors ,form)
-         (signal 'flycheck-ert-skipped ',form)))
-
-    (defun ert-test-skipped-p (result)
-      (and (ert-test-failed-p result)
-           (eq (car (ert-test-failed-condition result))
-               'flycheck-ert-skipped)))))
-
-
-;;; Internal variables
-
-(defvar flycheck-ert--resource-directory nil
-  "The directory to get resources from in this test suite.")
-
-
-;;; Resource management macros
-
-(defmacro flycheck-ert-with-temp-buffer (&rest body)
-  "Eval BODY within a temporary buffer.
-
-Like `with-temp-buffer', but resets the modification state of the
-temporary buffer to make sure that it is properly killed even if
-it has a backing file and is modified."
-  (declare (indent 0))
-  `(with-temp-buffer
-     (unwind-protect
-         ,(macroexp-progn body)
-       ;; Reset modification state of the buffer, and unlink it from its backing
-       ;; file, if any, because Emacs refuses to kill modified buffers with
-       ;; backing files, even if they are temporary.
-       (set-buffer-modified-p nil)
-       (set-visited-file-name nil 'no-query))))
-
-(defmacro flycheck-ert-with-file-buffer (file-name &rest body)
-  "Create a buffer from FILE-NAME and eval BODY.
-
-BODY is evaluated with `current-buffer' being a buffer with the
-contents FILE-NAME."
-  (declare (indent 1))
-  `(let ((file-name ,file-name))
-     (unless (file-exists-p file-name)
-       (error "%s does not exist" file-name))
-     (flycheck-ert-with-temp-buffer
-       (insert-file-contents file-name 'visit)
-       (set-visited-file-name file-name 'no-query)
-       (cd (file-name-directory file-name))
-       ;; Mark the buffer as not modified, because we just loaded the file up to
-       ;; now.
-       (set-buffer-modified-p nil)
-       ,@body)))
-
-(defmacro flycheck-ert-with-help-buffer (&rest body)
-  "Execute BODY and kill the help buffer afterwards.
-
-Use this macro to test functions that create a Help buffer."
-  (declare (indent 0))
-  `(unwind-protect
-       ,(macroexp-progn body)
-     (when (buffer-live-p (get-buffer (help-buffer)))
-       (kill-buffer (help-buffer)))))
-
-(defmacro flycheck-ert-with-global-mode (&rest body)
-  "Execute BODY with Global Flycheck Mode enabled.
-
-After BODY, restore the old state of Global Flycheck Mode."
-  (declare (indent 0))
-  `(let ((old-state global-flycheck-mode))
-     (unwind-protect
-         (progn
-           (global-flycheck-mode 1)
-           ,@body)
-       (global-flycheck-mode (if old-state 1 -1)))))
-
-(defmacro flycheck-ert-with-env (env &rest body)
-  "Add ENV to `process-environment' in BODY.
-
-Execute BODY with a `process-environment' which contains all
-variables from ENV added.
-
-ENV is an alist, where each cons cell `(VAR . VALUE)' is a
-environment variable VAR to be added to `process-environment'
-with VALUE."
-  (declare (indent 1))
-  `(let ((process-environment (copy-sequence process-environment)))
-     (pcase-dolist (`(,var . ,value) ,env)
-       (setenv var value))
-     ,@body))
-
-
-;;; Test resources
-(defun flycheck-ert-resource-filename (resource-file)
-  "Determine the absolute file name of a RESOURCE-FILE.
-
-Relative file names are expanded against
-`flycheck-ert--resource-directory'."
-  (expand-file-name resource-file flycheck-ert--resource-directory))
-
-(defmacro flycheck-ert-with-resource-buffer (resource-file &rest body)
-  "Create a temp buffer from a RESOURCE-FILE and execute BODY.
-
-The absolute file name of RESOURCE-FILE is determined with
-`flycheck-ert-resource-filename'."
-  (declare (indent 1))
-  `(flycheck-ert-with-file-buffer
-       (flycheck-ert-resource-filename ,resource-file)
-     ,@body))
-
-
-;;; Test suite initialization
-
-(defun flycheck-ert-initialize (resource-dir)
-  "Initialize a test suite with RESOURCE-DIR.
-
-RESOURCE-DIR is the directory, `flycheck-ert-resource-filename'
-should use to lookup resource files."
-  (when flycheck-ert--resource-directory
-    (error "Test suite already initialized"))
-  (let ((tests (ert-select-tests t t)))
-    ;; Select all tests
-    (unless tests
-      (error "No tests defined.  \
-Call `flycheck-ert-initialize' after defining all tests!"))
-
-    (setq flycheck-ert--resource-directory resource-dir)
-
-    ;; Emacs 24.3 don't support skipped tests, so we add poor man's test
-    ;; skipping: We mark skipped tests as expected failures by adjusting the
-    ;; expected result of all test cases. Not particularly pretty, but works :)
-    (unless flycheck-ert-ert-can-skip
-      (dolist (test tests)
-        (let ((result (ert-test-expected-result-type test)))
-          (setf (ert-test-expected-result-type test)
-                `(or ,result (satisfies ert-test-skipped-p))))))))
-
-
-;;; Test case definitions
-(defmacro flycheck-ert-def-checker-test (checker language name
-                                                 &rest keys-and-body)
-  "Define a test case for a syntax CHECKER for LANGUAGE.
-
-CHECKER is a symbol or a list of symbols denoting syntax checkers
-being tested by the test.  The test case is skipped, if any of
-these checkers cannot be used.  LANGUAGE is a symbol or a list of
-symbols denoting the programming languages supported by the
-syntax checkers.  This is currently only used for tagging the
-test appropriately.
-
-NAME is a symbol denoting the local name of the test.  The test
-itself is ultimately named
-`flycheck-define-checker/CHECKER/NAME'.  If CHECKER is a list,
-the first checker in the list is used for naming the test.
-
-Optionally, the keyword arguments `:tags' and `:expected-result'
-may be given.  They have the same meaning as in `ert-deftest.',
-and are added to the tags and result expectations set up by this
-macro.
-
-The remaining forms KEYS-AND-BODY denote the body of the test
-case, including assertions and setup code."
-  (declare (indent 3))
-  (unless checker
-    (error "No syntax checkers specified"))
-  (unless language
-    (error "No languages specified"))
-  (let* ((checkers (if (symbolp checker) (list checker) checker))
-         (checker (car checkers))
-         (languages (if (symbolp language) (list language) language))
-         (language-tags (mapcar (lambda (l) (intern (format "language-%s" l)))
-                                languages))
-         (checker-tags (mapcar (lambda (c) (intern (format "checker-%s" c)))
-                               checkers))
-         (local-name (or name 'default))
-         (full-name (intern (format "flycheck-define-checker/%s/%s"
-                                    checker local-name)))
-         (keys-and-body (ert--parse-keys-and-body keys-and-body))
-         (body (cadr keys-and-body))
-         (keys (car keys-and-body))
-         (default-tags '(syntax-checker external-tool)))
-    `(ert-deftest ,full-name ()
-       :expected-result ,(or (plist-get keys :expected-result) :passed)
-       :tags (append ',(append default-tags language-tags checker-tags)
-                     ,(plist-get keys :tags))
-       ,@(mapcar (lambda (c)
-                   `(skip-unless
-                     ;; Ignore non-command checkers
-                     (or (not (flycheck-checker-get ',c 'command))
-                         (executable-find (flycheck-checker-executable ',c)))))
-                 checkers)
-       ,@body)))
-
-
-;;; Test case results
-
-(defun flycheck-ert-syntax-check-timed-out-p (result)
-  "Whether RESULT denotes a timed-out test.
-
-RESULT is an ERT test result object."
-  (and (ert-test-failed-p result)
-       (eq (car (ert-test-failed-condition result))
-           'flycheck-ert-syntax-check-timed-out)))
-
-
-;;; Syntax checking in tests
-
-(defvar-local flycheck-ert-syntax-checker-finished nil
-  "Non-nil if the current checker has finished.")
-
-(add-hook 'flycheck-after-syntax-check-hook
-          (lambda () (setq flycheck-ert-syntax-checker-finished t)))
-
-(defconst flycheck-ert-checker-wait-time 10
-  "Time to wait until a checker is finished in seconds.
-
-After this time has elapsed, the checker is considered to have
-failed, and the test aborted with failure.")
-
-(define-error 'flycheck-ert-syntax-check-timed-out "Syntax check timed out.")
-
-(defun flycheck-ert-wait-for-syntax-checker ()
-  "Wait until the syntax check in the current buffer is finished."
-  (let ((starttime (float-time)))
-    (while (and (not flycheck-ert-syntax-checker-finished)
-                (< (- (float-time) starttime) flycheck-ert-checker-wait-time))
-      (sleep-for 1))
-    (unless (< (- (float-time) starttime) flycheck-ert-checker-wait-time)
-      (flycheck-stop)
-      (signal 'flycheck-ert-syntax-check-timed-out nil)))
-  (setq flycheck-ert-syntax-checker-finished nil))
-
-(defun flycheck-ert-buffer-sync ()
-  "Like `flycheck-buffer', but synchronously."
-  (setq flycheck-ert-syntax-checker-finished nil)
-  (should (not (flycheck-running-p)))
-  (flycheck-mode)                       ; This will only start a deferred check,
-  (flycheck-buffer)                     ; so we need an explicit manual check
-  ;; After starting the check, the checker should either be running now, or
-  ;; already be finished (if it was fast).
-  (should (or flycheck-current-syntax-check
-              flycheck-ert-syntax-checker-finished))
-  ;; Also there should be no deferred check pending anymore
-  (should-not (flycheck-deferred-check-p))
-  (flycheck-ert-wait-for-syntax-checker))
-
-(defun flycheck-ert-ensure-clear ()
-  "Clear the current buffer.
-
-Raise an assertion error if the buffer is not clear afterwards."
-  (flycheck-clear)
-  (should (not flycheck-current-errors))
-  (should (not (-any? (lambda (ov) (overlay-get ov 'flycheck-overlay))
-                      (overlays-in (point-min) (point-max))))))
-
-
-;;; Test assertions
-
-(defun flycheck-error-without-group (err)
-  "Return a copy ERR with the `group' property set to nil."
-  (let ((copy (copy-flycheck-error err)))
-    (setf (flycheck-error-group copy) nil)
-    copy))
-
-(defun flycheck-ert-should-overlay (error)
-  "Test that ERROR has a proper overlay in the current buffer.
-
-ERROR is a Flycheck error object."
-  (let* ((overlay (-first (lambda (ov)
-                            (equal (flycheck-error-without-group
-                                    (overlay-get ov 'flycheck-error))
-                                   (flycheck-error-without-group error)))
-                          (flycheck-overlays-in 0 (+ 1 (buffer-size)))))
-         (region
-          ;; Overlays of errors from other files are on the first line
-          (if (flycheck-relevant-error-other-file-p error)
-              (cons (point-min)
-                    (save-excursion (goto-char (point-min)) (point-at-eol)))
-            (flycheck-error-region-for-mode error 'symbols)))
-         (level (flycheck-error-level error))
-         (category (flycheck-error-level-overlay-category level))
-         (face (get category 'face))
-         (fringe-bitmap (flycheck-error-level-fringe-bitmap level))
-         (fringe-face (flycheck-error-level-fringe-face level))
-         (fringe-icon (list 'left-fringe fringe-bitmap fringe-face)))
-    (should overlay)
-    (should (overlay-get overlay 'flycheck-overlay))
-    (should (= (overlay-start overlay) (car region)))
-    (should (= (overlay-end overlay) (cdr region)))
-    (should (eq (overlay-get overlay 'face) face))
-    (should (equal (get-char-property 0 'display
-                                      (overlay-get overlay 'before-string))
-                   fringe-icon))
-    (should (eq (overlay-get overlay 'category) category))
-    (should (equal (flycheck-error-without-group (overlay-get overlay
-                                                              'flycheck-error))
-                   (flycheck-error-without-group error)))))
-
-(defun flycheck-ert-should-errors (&rest errors)
-  "Test that the current buffers has ERRORS.
-
-ERRORS is a list of errors expected to be present in the current
-buffer.  Each error is given as a list of arguments to
-`flycheck-error-new-at'.
-
-If ERRORS are omitted, test that there are no errors at all in
-the current buffer.
-
-With ERRORS, test that each error in ERRORS is present in the
-current buffer, and that the number of errors in the current
-buffer is equal to the number of given ERRORS.  In other words,
-check that the buffer has all ERRORS, and no other errors."
-  (let ((expected (mapcar (apply-partially #'apply #'flycheck-error-new-at)
-                          errors)))
-    (should (equal (mapcar #'flycheck-error-without-group expected)
-                   (mapcar #'flycheck-error-without-group
-                           flycheck-current-errors)))
-    ;; Check that related errors are the same
-    (cl-mapcar (lambda (err1 err2)
-                 (should (equal (mapcar #'flycheck-error-without-group
-                                        (flycheck-related-errors err1 expected))
-                                (mapcar #'flycheck-error-without-group
-                                        (flycheck-related-errors err2)))))
-               expected flycheck-current-errors)
-    (mapc #'flycheck-ert-should-overlay expected))
-  (should (= (length errors)
-             (length (flycheck-overlays-in (point-min) (point-max))))))
-
-(define-error 'flycheck-ert-suspicious-checker "Suspicious state from checker")
-
-(defun flycheck-ert-should-syntax-check (resource-file modes &rest errors)
-  "Test a syntax check in RESOURCE-FILE with MODES.
-
-RESOURCE-FILE is the file to check.  MODES is a single major mode
-symbol or a list thereof, specifying the major modes to syntax
-check with.  If more than one major mode is specified, the test
-is run for each mode separately, so if you give three major
-modes, the entire test will run three times.  ERRORS is the list
-of expected errors, as in `flycheck-ert-should-errors'.  If
-omitted, the syntax check must not emit any errors.  The errors
-are cleared after each test.
-
-The syntax checker is selected via standard syntax checker
-selection.  To test a specific checker, you need to set
-`flycheck-checker' or `flycheck-disabled-checkers' accordingly
-before using this predicate, depending on whether you want to use
-manual or automatic checker selection.
-
-During the syntax check, configuration files of syntax checkers
-are also searched in the `config-files' sub-directory of the
-resource directory."
-  (when (symbolp modes)
-    (setq modes (list modes)))
-  (dolist (mode modes)
-    (unless (fboundp mode)
-      (ert-skip (format "%S missing" mode)))
-    (flycheck-ert-with-resource-buffer resource-file
-      (funcall mode)
-      ;; Load safe file-local variables because some tests depend on them
-      (let ((enable-local-variables :safe)
-            ;; Disable all hooks at this place, to prevent 3rd party packages
-            ;; from interfering
-            (hack-local-variables-hook))
-        (hack-local-variables))
-      ;; Configure config file locating for unit tests
-      (let ((process-hook-called 0))
-        (add-hook 'flycheck-process-error-functions
-                  (lambda (_err)
-                    (setq process-hook-called (1+ process-hook-called))
-                    nil)
-                  nil :local)
-        (add-hook 'flycheck-status-changed-functions
-                  (lambda (status)
-                    (when (eq status 'suspicious)
-                      (signal 'flycheck-ert-suspicious-checker nil))))
-        (flycheck-ert-buffer-sync)
-        (apply #'flycheck-ert-should-errors errors)
-        (should (= process-hook-called (length errors))))
-      (flycheck-ert-ensure-clear))))
-
-(defun flycheck-ert-at-nth-error (n)
-  "Determine whether point is at the N'th Flycheck error.
-
-Return non-nil if the point is at the N'th Flycheck error in the
-current buffer.  Otherwise return nil."
-  (let* ((error (nth (1- n) flycheck-current-errors))
-         (mode flycheck-highlighting-mode)
-         (region (flycheck-error-region-for-mode error mode)))
-    (and (member error (flycheck-overlay-errors-at (point)))
-         (= (point) (car region)))))
-
-(defun flycheck-ert-explain--at-nth-error (n)
-  "Explain a failed at-nth-error predicate at N."
-  (let ((errors (flycheck-overlay-errors-at (point))))
-    (if (null errors)
-        (format "Expected to be at error %s, but no error at point %s"
-                n (point))
-      (let ((pos (cl-position (car errors) flycheck-current-errors)))
-        (format "Expected to be at error %s, but point %s is at error %s"
-                n (point) (1+ pos))))))
-
-(put 'flycheck-ert-at-nth-error 'ert-explainer
-     'flycheck-ert-explain--at-nth-error)
-
-(provide 'flycheck-ert)
-
-;;; flycheck-ert.el ends here
diff --git a/elpa/flycheck-20181018.1021/flycheck-ert.elc b/elpa/flycheck-20181018.1021/flycheck-ert.elc
deleted file mode 100644
index cf659d6..0000000
--- a/elpa/flycheck-20181018.1021/flycheck-ert.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/flycheck-20181018.1021/flycheck-pkg.el b/elpa/flycheck-20181018.1021/flycheck-pkg.el
deleted file mode 100644
index 0835bf3..0000000
--- a/elpa/flycheck-20181018.1021/flycheck-pkg.el
+++ /dev/null
@@ -1,16 +0,0 @@
-(define-package "flycheck" "20181018.1021" "On-the-fly syntax checking"
-  '((dash "2.12.1")
-    (pkg-info "0.4")
-    (let-alist "1.0.4")
-    (seq "1.11")
-    (emacs "24.3"))
-  :keywords
-  '("convenience" "languages" "tools")
-  :authors
-  '(("Sebastian Wiesner" . "swiesner@lunaryorn.com"))
-  :maintainer
-  '("Clément Pit-Claudel" . "clement.pitclaudel@live.com")
-  :url "http://www.flycheck.org")
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/flycheck-20181018.1021/flycheck.el b/elpa/flycheck-20181018.1021/flycheck.el
deleted file mode 100644
index 4f86d67..0000000
--- a/elpa/flycheck-20181018.1021/flycheck.el
+++ /dev/null
@@ -1,10505 +0,0 @@
-;;; flycheck.el --- On-the-fly syntax checking -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017-2018 Flycheck contributors
-;; Copyright (C) 2012-2016 Sebastian Wiesner and Flycheck contributors
-;; Copyright (C) 2013, 2014 Free Software Foundation, Inc.
-;;
-;; Author: Sebastian Wiesner <swiesner@lunaryorn.com>
-;; Maintainer: Clément Pit-Claudel <clement.pitclaudel@live.com>
-;;             fmdkdd <fmdkdd@gmail.com>
-;; URL: http://www.flycheck.org
-;; Keywords: convenience, languages, tools
-;; Version: 32-cvs
-;; Package-Requires: ((dash "2.12.1") (pkg-info "0.4") (let-alist "1.0.4") (seq "1.11") (emacs "24.3"))
-
-;; This file is not part of GNU Emacs.
-
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; On-the-fly syntax checking for GNU Emacs 24.
-;;
-;; Flycheck is a modern on-the-fly syntax checking extension for GNU Emacs,
-;; intended as replacement for the older Flymake extension which is part of GNU
-;; Emacs.
-;;
-;; Flycheck automatically checks buffers for errors while you type, and reports
-;; warnings and errors directly in the buffer and in an optional IDE-like error
-;; list.
-;;
-;; It comes with a rich interface for custom syntax checkers and other
-;; extensions, and has already many 3rd party extensions adding new features.
-;;
-;; Please read the online manual at http://www.flycheck.org for more
-;; information.  You can open the manual directly from Emacs with `M-x
-;; flycheck-manual'.
-;;
-;; # Setup
-;;
-;; Flycheck works best on Unix systems.  It does not officially support Windows,
-;; but tries to maintain Windows compatibility and should generally work fine on
-;; Windows, too.
-;;
-;; To enable Flycheck add the following to your init file:
-;;
-;;    (add-hook 'after-init-hook #'global-flycheck-mode)
-;;
-;; Flycheck will then automatically check buffers in supported languages, as
-;; long as all necessary tools are present.  Use `flycheck-verify-setup' to
-;; troubleshoot your Flycheck setup.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'let-alist)      ; `let-alist'
-  (require 'compile)        ; Compile Mode integration
-  (require 'jka-compr)      ; To inhibit compression of temp files
-  (require 'pcase)          ; `pcase-dolist' (`pcase' itself is autoloaded)
-  )
-
-(require 'dash)
-
-(require 'seq)                   ; Sequence functions
-(require 'subr-x nil 'no-error)  ; Additional utilities, Emacs 24.4 and upwards
-(require 'cl-lib)                ; `cl-defstruct' and CL utilities
-(require 'tabulated-list)        ; To list errors
-(require 'easymenu)              ; Flycheck Mode menu definition
-(require 'rx)                    ; Regexp fanciness in `flycheck-define-checker'
-(require 'help-mode)             ; `define-button-type'
-(require 'find-func)             ; `find-function-regexp-alist'
-(require 'json)                  ; `flycheck-parse-tslint'
-
-
-;; Declare a bunch of dynamic variables that we need from other modes
-(defvar sh-shell)                       ; For shell script checker predicates
-(defvar ess-language)                   ; For r-lintr predicate
-
-;; Tell the byte compiler about autoloaded functions from packages
-(declare-function pkg-info-version-info "pkg-info" (package))
-
-
-;;; Compatibility
-(eval-and-compile
-  (unless (fboundp 'string-suffix-p)
-    ;; TODO: Remove when dropping support for Emacs 24.3 and earlier
-    (defun string-suffix-p (suffix string &optional ignore-case)
-      "Return non-nil if SUFFIX is a suffix of STRING.
-If IGNORE-CASE is non-nil, the comparison is done without paying
-attention to case differences."
-      (let ((start-pos (- (length string) (length suffix))))
-        (and (>= start-pos 0)
-             (eq t (compare-strings suffix nil nil
-                                    string start-pos nil ignore-case))))))
-
-  ;; TODO: Remove when dropping support for Emacs 24.3 and earlier
-  (unless (featurep 'subr-x)
-    ;; `subr-x' function for Emacs 24.3 and below
-    (defsubst string-join (strings &optional separator)
-      "Join all STRINGS using SEPARATOR."
-      (mapconcat 'identity strings separator))
-
-    (defsubst string-trim-left (string)
-      "Remove leading whitespace from STRING."
-      (if (string-match "\\`[ \t\n\r]+" string)
-          (replace-match "" t t string)
-        string))
-
-    (defsubst string-trim-right (string)
-      "Remove trailing whitespace from STRING."
-      (if (string-match "[ \t\n\r]+\\'" string)
-          (replace-match "" t t string)
-        string))
-
-    (defsubst string-trim (string)
-      "Remove leading and trailing whitespace from STRING."
-      (string-trim-left (string-trim-right string)))
-
-    (defsubst string-empty-p (string)
-      "Check whether STRING is empty."
-      (string= string ""))))
-
-
-;;; Customization
-(defgroup flycheck nil
-  "Modern on-the-fly syntax checking for GNU Emacs."
-  :prefix "flycheck-"
-  :group 'tools
-  :link '(url-link :tag "Website" "http://www.flycheck.org")
-  :link '(url-link :tag "Github" "https://github.com/flycheck/flycheck"))
-
-(defgroup flycheck-config-files nil
-  "Configuration files for on-the-fly syntax checkers."
-  :prefix "flycheck-"
-  :group 'flycheck)
-
-(defgroup flycheck-options nil
-  "Options for on-the-fly syntax checkers."
-  :prefix "flycheck-"
-  :group 'flycheck)
-
-(defgroup flycheck-executables nil
-  "Executables of syntax checkers."
-  :prefix "flycheck-"
-  :group 'flycheck)
-
-(defgroup flycheck-faces nil
-  "Faces used by on-the-fly syntax checking."
-  :prefix "flycheck-"
-  :group 'flycheck)
-
-(defcustom flycheck-checkers
-  '(ada-gnat
-    asciidoctor
-    asciidoc
-    c/c++-clang
-    c/c++-gcc
-    c/c++-cppcheck
-    cfengine
-    chef-foodcritic
-    coffee
-    coffee-coffeelint
-    coq
-    css-csslint
-    css-stylelint
-    cwl
-    d-dmd
-    dockerfile-hadolint
-    emacs-lisp
-    emacs-lisp-checkdoc
-    erlang-rebar3
-    erlang
-    eruby-erubis
-    fortran-gfortran
-    go-gofmt
-    go-golint
-    go-vet
-    go-build
-    go-test
-    go-errcheck
-    go-unconvert
-    go-megacheck
-    groovy
-    haml
-    handlebars
-    haskell-stack-ghc
-    haskell-ghc
-    haskell-hlint
-    html-tidy
-    javascript-eslint
-    javascript-jshint
-    javascript-standard
-    json-jsonlint
-    json-python-json
-    jsonnet
-    less
-    less-stylelint
-    llvm-llc
-    lua-luacheck
-    lua
-    markdown-markdownlint-cli
-    markdown-mdl
-    nix
-    perl
-    perl-perlcritic
-    php
-    php-phpmd
-    php-phpcs
-    processing
-    proselint
-    protobuf-protoc
-    pug
-    puppet-parser
-    puppet-lint
-    python-flake8
-    python-pylint
-    python-pycompile
-    python-mypy
-    r-lintr
-    racket
-    rpm-rpmlint
-    rst-sphinx
-    rst
-    ruby-rubocop
-    ruby-reek
-    ruby-rubylint
-    ruby
-    ruby-jruby
-    rust-cargo
-    rust
-    rust-clippy
-    scala
-    scala-scalastyle
-    scheme-chicken
-    scss-lint
-    scss-stylelint
-    sass/scss-sass-lint
-    sass
-    scss
-    sh-bash
-    sh-posix-dash
-    sh-posix-bash
-    sh-zsh
-    sh-shellcheck
-    slim
-    slim-lint
-    sql-sqlint
-    systemd-analyze
-    tcl-nagelfar
-    tex-chktex
-    tex-lacheck
-    texinfo
-    typescript-tslint
-    verilog-verilator
-    vhdl-ghdl
-    xml-xmlstarlet
-    xml-xmllint
-    yaml-jsyaml
-    yaml-ruby)
-  "Syntax checkers available for automatic selection.
-
-A list of Flycheck syntax checkers to choose from when syntax
-checking a buffer.  Flycheck will automatically select a suitable
-syntax checker from this list, unless `flycheck-checker' is set,
-either directly or with `flycheck-select-checker'.
-
-You should not need to change this variable normally.  In order
-to disable syntax checkers, please use
-`flycheck-disabled-checkers'.  This variable is intended for 3rd
-party extensions to tell Flycheck about new syntax checkers.
-
-Syntax checkers in this list must be defined with
-`flycheck-define-checker'."
-  :group 'flycheck
-  :type '(repeat (symbol :tag "Checker"))
-  :risky t)
-
-(defcustom flycheck-disabled-checkers nil
-  "Syntax checkers excluded from automatic selection.
-
-A list of Flycheck syntax checkers to exclude from automatic
-selection.  Flycheck will never automatically select a syntax
-checker in this list, regardless of the value of
-`flycheck-checkers'.
-
-However, syntax checkers in this list are still available for
-manual selection with `flycheck-select-checker'.
-
-Use this variable to disable syntax checkers, instead of removing
-the syntax checkers from `flycheck-checkers'.  You may also use
-this option as a file or directory local variable to disable
-specific checkers in individual files and directories
-respectively."
-  :group 'flycheck
-  :type '(repeat (symbol :tag "Checker"))
-  :package-version '(flycheck . "0.16")
-  :safe #'flycheck-symbol-list-p)
-(make-variable-buffer-local 'flycheck-disabled-checkers)
-
-(defvar-local flycheck-checker nil
-  "Syntax checker to use for the current buffer.
-
-If unset or nil, automatically select a suitable syntax checker
-from `flycheck-checkers' on every syntax check.
-
-If set to a syntax checker only use this syntax checker and never
-select one from `flycheck-checkers' automatically.  The syntax
-checker is used regardless of whether it is contained in
-`flycheck-checkers' or `flycheck-disabled-checkers'.  If the
-syntax checker is unusable in the current buffer an error is
-signaled.
-
-A syntax checker assigned to this variable must be defined with
-`flycheck-define-checker'.
-
-Use the command `flycheck-select-checker' to select a syntax
-checker for the current buffer, or set this variable as file
-local variable to always use a specific syntax checker for a
-file.  See Info Node `(emacs)Specifying File Variables' for more
-information about file variables.")
-(put 'flycheck-checker 'safe-local-variable 'flycheck-registered-checker-p)
-
-(defcustom flycheck-locate-config-file-functions nil
-  "Functions to locate syntax checker configuration files.
-
-Each function in this hook must accept two arguments: The value
-of the configuration file variable, and the syntax checker
-symbol.  It must return either a string with an absolute path to
-the configuration file, or nil, if it cannot locate the
-configuration file.
-
-The functions in this hook are called in order of appearance, until a
-function returns non-nil.  The configuration file returned by that
-function is then given to the syntax checker if it exists.
-
-This variable is an abnormal hook.  See Info
-node `(elisp)Hooks'."
-  :group 'flycheck
-  :type 'hook
-  :risky t)
-
-(defcustom flycheck-checker-error-threshold 400
-  "Maximum errors allowed per syntax checker.
-
-The value of this variable is either an integer denoting the
-maximum number of errors per syntax checker and buffer, or nil to
-not limit the errors reported from a syntax checker.
-
-If this variable is a number and a syntax checker reports more
-errors than the value of this variable, its errors are not
-discarded, and not highlighted in the buffer or available in the
-error list.  The affected syntax checker is also disabled for
-future syntax checks of the buffer."
-  :group 'flycheck
-  :type '(choice (const :tag "Do not limit reported errors" nil)
-                 (integer :tag "Maximum number of errors"))
-  :risky t
-  :package-version '(flycheck . "0.22"))
-
-(defcustom flycheck-process-error-functions nil
-  "Functions to process errors.
-
-Each function in this hook must accept a single argument: A
-Flycheck error to process.
-
-All functions in this hook are called in order of appearance,
-until a function returns non-nil.  Thus, a function in this hook
-may return nil, to allow for further processing of the error, or
-any non-nil value, to indicate that the error was fully processed
-and inhibit any further processing.
-
-The functions are called for each newly parsed error immediately
-after the corresponding syntax checker finished.  At this stage,
-the overlays from the previous syntax checks are still present,
-and there may be further syntax checkers in the chain.
-
-This variable is an abnormal hook.  See Info
-node `(elisp)Hooks'."
-  :group 'flycheck
-  :type 'hook
-  :package-version '(flycheck . "0.13")
-  :risky t)
-
-(defcustom flycheck-display-errors-delay 0.9
-  "Delay in seconds before displaying errors at point.
-
-Use floating point numbers to express fractions of seconds."
-  :group 'flycheck
-  :type 'number
-  :package-version '(flycheck . "0.15")
-  :safe #'numberp)
-
-(defcustom flycheck-display-errors-function #'flycheck-display-error-messages
-  "Function to display error messages.
-
-If set to a function, call the function with the list of errors
-to display as single argument.  Each error is an instance of the
-`flycheck-error' struct.
-
-If set to nil, do not display errors at all."
-  :group 'flycheck
-  :type '(choice (const :tag "Display error messages"
-                        flycheck-display-error-messages)
-                 (const :tag "Display error messages only if no error list"
-                        flycheck-display-error-messages-unless-error-list)
-                 (function :tag "Error display function"))
-  :package-version '(flycheck . "0.13")
-  :risky t)
-
-(defcustom flycheck-help-echo-function #'flycheck-help-echo-all-error-messages
-  "Function to compute the contents of the error tooltips.
-
-If set to a function, call the function with the list of errors
-to display as single argument.  Each error is an instance of the
-`flycheck-error' struct.  The function is used to set the
-help-echo property of flycheck error overlays.  It should return
-a string, which is displayed when the user hovers over an error
-or presses \\[display-local-help].
-
-If set to nil, do not show error tooltips."
-  :group 'flycheck
-  :type '(choice (const :tag "Concatenate error messages to form a tooltip"
-                        flycheck-help-echo-all-error-messages)
-                 (function :tag "Help echo function"))
-  :package-version '(flycheck . "0.25")
-  :risky t)
-
-(defcustom flycheck-command-wrapper-function #'identity
-  "Function to modify checker commands before execution.
-
-The value of this option is a function which is given a list
-containing the full command of a syntax checker after
-substitution through `flycheck-substitute-argument' but before
-execution.  The function may return a new command for Flycheck to
-execute.
-
-The default value is `identity' which does not change the
-command.  You may provide your own function to run Flycheck
-commands through `bundle exec', `nix-shell' or similar wrappers."
-  :group 'flycheck
-  :type '(choice (const :tag "Do not modify commands" identity)
-                 (function :tag "Modify command with a custom function"))
-  :package-version '(flycheck . "0.25")
-  :risky t)
-
-(defcustom flycheck-executable-find #'flycheck-default-executable-find
-  "Function to search for executables.
-
-The value of this option is a function which is given the name or
-path of an executable and shall return the full path to the
-executable, or nil if the executable does not exit.
-
-The default is `flycheck-default-executable-find', which searches
-`exec-path' when given a command name, and resolves paths to
-absolute ones.  You can customize this option to search for
-checkers in other environments such as bundle or NixOS
-sandboxes."
-  :group 'flycheck
-  :type '(choice
-          (const :tag "Search executables in `exec-path'"
-                 flycheck-default-executable-find)
-          (function :tag "Search executables with a custom function"))
-  :package-version '(flycheck . "32")
-  :risky t)
-
-(defun flycheck-default-executable-find (executable)
-  "Resolve EXECUTABLE to a full path.
-
-Like `executable-find', but supports relative paths.
-
-Attempts invoking `executable-find' first; if that returns nil,
-and EXECUTABLE contains a directory component, expands to a full
-path and tries invoking `executable-find' again."
-  ;; file-name-directory returns non-nil iff the given path has a
-  ;; directory component.
-  (or
-   (executable-find executable)
-   (when (file-name-directory executable)
-     (executable-find (expand-file-name executable)))))
-
-(defcustom flycheck-indication-mode 'left-fringe
-  "The indication mode for Flycheck errors and warnings.
-
-This variable controls how Flycheck indicates errors in buffers.
-May either be `left-fringe', `right-fringe', or nil.
-
-If set to `left-fringe' or `right-fringe', indicate errors and
-warnings via icons in the left and right fringe respectively.
-
-If set to nil, do not indicate errors and warnings, but just
-highlight them according to `flycheck-highlighting-mode'."
-  :group 'flycheck
-  :type '(choice (const :tag "Indicate in the left fringe" left-fringe)
-                 (const :tag "Indicate in the right fringe" right-fringe)
-                 (const :tag "Do not indicate" nil))
-  :safe #'symbolp)
-
-(defcustom flycheck-highlighting-mode 'symbols
-  "The highlighting mode for Flycheck errors and warnings.
-
-The highlighting mode controls how Flycheck highlights errors in
-buffers.  The following modes are known:
-
-`columns'
-     Highlight the error column.  If the error does not have a column,
-     highlight the whole line.
-
-`symbols'
-     Highlight the symbol at the error column, if there is any,
-     otherwise behave like `columns'.  This is the default.
-
-`sexps'
-     Highlight the expression at the error column, if there is
-     any, otherwise behave like `columns'.  Note that this mode
-     can be *very* slow in some major modes.
-
-`lines'
-     Highlight the whole line.
-
-nil
-     Do not highlight errors at all.  However, errors will still
-     be reported in the mode line and in error message popups,
-     and indicated according to `flycheck-indication-mode'."
-  :group 'flycheck
-  :type '(choice (const :tag "Highlight columns only" columns)
-                 (const :tag "Highlight symbols" symbols)
-                 (const :tag "Highlight expressions" sexps)
-                 (const :tag "Highlight whole lines" lines)
-                 (const :tag "Do not highlight errors" nil))
-  :package-version '(flycheck . "0.14")
-  :safe #'symbolp)
-
-(defcustom flycheck-check-syntax-automatically '(save
-                                                 idle-change
-                                                 new-line
-                                                 mode-enabled)
-  "When Flycheck should check syntax automatically.
-
-This variable is a list of events that may trigger syntax checks.
-The following events are known:
-
-`save'
-     Check syntax immediately after the buffer was saved.
-
-`idle-change'
-     Check syntax a short time (see `flycheck-idle-change-delay')
-     after the last change to the buffer.
-
-`new-line'
-     Check syntax immediately after a new line was inserted into
-     the buffer.
-
-`mode-enabled'
-     Check syntax immediately when variable `flycheck-mode' is
-     non-nil.
-
-Flycheck performs a syntax checks only on events, which are
-contained in this list.  For instance, if the value of this
-variable is `(mode-enabled save)', Flycheck will only check if
-the mode is enabled or the buffer was saved, but never after
-changes to the buffer contents.
-
-If nil, never check syntax automatically.  In this case, use
-`flycheck-buffer' to start a syntax check manually."
-  :group 'flycheck
-  :type '(set (const :tag "After the buffer was saved" save)
-              (const :tag "After the buffer was changed and idle" idle-change)
-              (const :tag "After a new line was inserted" new-line)
-              (const :tag "After `flycheck-mode' was enabled" mode-enabled))
-  :package-version '(flycheck . "0.12")
-  :safe #'flycheck-symbol-list-p)
-
-(defcustom flycheck-idle-change-delay 0.5
-  "How many seconds to wait before checking syntax automatically.
-
-After the buffer was changed, Flycheck will wait as many seconds
-as the value of this variable before starting a syntax check.  If
-the buffer is modified during this time, Flycheck will wait
-again.
-
-This variable has no effect, if `idle-change' is not contained in
-`flycheck-check-syntax-automatically'."
-  :group 'flycheck
-  :type 'number
-  :package-version '(flycheck . "0.13")
-  :safe #'numberp)
-
-(defcustom flycheck-standard-error-navigation t
-  "Whether to support error navigation with `next-error'.
-
-If non-nil, enable navigation of Flycheck errors with
-`next-error', `previous-error' and `first-error'.  Otherwise,
-these functions just navigate errors from compilation modes.
-
-Flycheck error navigation with `flycheck-next-error',
-`flycheck-previous-error' and `flycheck-first-error' is always
-enabled, regardless of the value of this variable.
-
-Note that this setting only takes effect when variable
-`flycheck-mode' is non-nil.  Changing it will not affect buffers
-where variable `flycheck-mode' is already non-nil."
-  :group 'flycheck
-  :type 'boolean
-  :package-version '(flycheck . "0.15")
-  :safe #'booleanp)
-
-(define-widget 'flycheck-minimum-level 'lazy
-  "A radio-type choice of minimum error levels.
-
-See `flycheck-navigation-minimum-level' and
-`flycheck-error-list-minimum-level'."
-  :type '(radio (const :tag "All locations" nil)
-                (const :tag "Informational messages" info)
-                (const :tag "Warnings" warning)
-                (const :tag "Errors" error)
-                (symbol :tag "Custom error level")))
-
-(defcustom flycheck-navigation-minimum-level nil
-  "The minimum level of errors to navigate.
-
-If set to an error level, only navigate errors whose error level
-is at least as severe as this one.  If nil, navigate all errors."
-  :group 'flycheck
-  :type 'flycheck-minimum-level
-  :safe #'flycheck-error-level-p
-  :package-version '(flycheck . "0.21"))
-
-(defcustom flycheck-error-list-minimum-level nil
-  "The minimum level of errors to display in the error list.
-
-If set to an error level, only display errors whose error level
-is at least as severe as this one in the error list.  If nil,
-display all errors.
-
-This is the default level, used when the error list is opened.
-You can temporarily change the level using
-\\[flycheck-error-list-set-filter], or reset it to this value
-using \\[flycheck-error-list-reset-filter]."
-  :group 'flycheck
-  :type 'flycheck-minimum-level
-  :safe #'flycheck-error-level-p
-  :package-version '(flycheck . "0.24"))
-
-(defcustom flycheck-completing-read-function #'completing-read
-  "Function to read from minibuffer with completion.
-
-The function must be compatible to the built-in `completing-read'
-function."
-  :group 'flycheck
-  :type '(choice (const :tag "Default" completing-read)
-                 (const :tag "IDO" ido-completing-read)
-                 (function :tag "Custom function"))
-  :risky t
-  :package-version '(flycheck . "26"))
-
-(defcustom flycheck-temp-prefix "flycheck"
-  "Prefix for temporary files created by Flycheck."
-  :group 'flycheck
-  :type 'string
-  :package-version '(flycheck . "0.19")
-  :risky t)
-
-(defcustom flycheck-mode-hook nil
-  "Hooks to run after command `flycheck-mode' is toggled."
-  :group 'flycheck
-  :type 'hook
-  :risky t)
-
-(defcustom flycheck-after-syntax-check-hook nil
-  "Functions to run after each syntax check.
-
-This hook is run after a syntax check was finished.
-
-At this point, *all* chained checkers were run, and all errors
-were parsed, highlighted and reported.  The variable
-`flycheck-current-errors' contains all errors from all syntax
-checkers run during the syntax check, so you can apply any error
-analysis functions.
-
-Note that this hook does *not* run after each individual syntax
-checker in the syntax checker chain, but only after the *last
-checker*.
-
-This variable is a normal hook.  See Info node `(elisp)Hooks'."
-  :group 'flycheck
-  :type 'hook
-  :risky t)
-
-(defcustom flycheck-before-syntax-check-hook nil
-  "Functions to run before each syntax check.
-
-This hook is run right before a syntax check starts.
-
-Error information from the previous syntax check is *not*
-cleared before this hook runs.
-
-Note that this hook does *not* run before each individual syntax
-checker in the syntax checker chain, but only before the *first
-checker*.
-
-This variable is a normal hook.  See Info node `(elisp)Hooks'."
-  :group 'flycheck
-  :type 'hook
-  :risky t)
-
-(defcustom flycheck-syntax-check-failed-hook nil
-  "Functions to run if a syntax check failed.
-
-This hook is run whenever an error occurs during Flycheck's
-internal processing.  No information about the error is given to
-this hook.
-
-You should use this hook to conduct additional cleanup actions
-when Flycheck failed.
-
-This variable is a normal hook.  See Info node `(elisp)Hooks'."
-  :group 'flycheck
-  :type 'hook
-  :risky t)
-
-(defcustom flycheck-status-changed-functions nil
-  "Functions to run if the Flycheck status changed.
-
-This hook is run whenever the status of Flycheck changes.  Each
-hook function takes the status symbol as single argument, as
-given to `flycheck-report-status', which see.
-
-This variable is an abnormal hook.  See Info
-node `(elisp)Hooks'."
-  :group 'flycheck
-  :type 'hook
-  :risky t
-  :package-version '(flycheck . "0.20"))
-
-(defcustom flycheck-error-list-after-refresh-hook nil
-  "Functions to run after the error list was refreshed.
-
-This hook is run whenever the error list is refreshed.
-
-This variable is a normal hook.  See Info node `(elisp)Hooks'."
-  :group 'flycheck
-  :type 'hook
-  :risky t
-  :package-version '(flycheck . "0.21"))
-
-(defface flycheck-error
-  '((((supports :underline (:style wave)))
-     :underline (:style wave :color "Red1"))
-    (t
-     :underline t :inherit error))
-  "Flycheck face for errors."
-  :package-version '(flycheck . "0.13")
-  :group 'flycheck-faces)
-
-(defface flycheck-warning
-  '((((supports :underline (:style wave)))
-     :underline (:style wave :color "DarkOrange"))
-    (t
-     :underline t :inherit warning))
-  "Flycheck face for warnings."
-  :package-version '(flycheck . "0.13")
-  :group 'flycheck-faces)
-
-(defface flycheck-info
-  '((((supports :underline (:style wave)))
-     :underline (:style wave :color "ForestGreen"))
-    (t
-     :underline t :inherit success))
-  "Flycheck face for informational messages."
-  :package-version '(flycheck . "0.15")
-  :group 'flycheck-faces)
-
-(defface flycheck-fringe-error
-  '((t :inherit error))
-  "Flycheck face for fringe error indicators."
-  :package-version '(flycheck . "0.13")
-  :group 'flycheck-faces)
-
-(defface flycheck-fringe-warning
-  '((t :inherit warning))
-  "Flycheck face for fringe warning indicators."
-  :package-version '(flycheck . "0.13")
-  :group 'flycheck-faces)
-
-(defface flycheck-fringe-info
-  ;; Semantically `success' is probably not the right face, but it looks nice as
-  ;; a base face
-  '((t :inherit success))
-  "Flycheck face for fringe info indicators."
-  :package-version '(flycheck . "0.15")
-  :group 'flycheck-faces)
-
-(defface flycheck-error-list-error
-  '((t :inherit error))
-  "Flycheck face for error messages in the error list."
-  :package-version '(flycheck . "0.16")
-  :group 'flycheck-faces)
-
-(defface flycheck-error-list-warning
-  '((t :inherit warning))
-  "Flycheck face for warning messages in the error list."
-  :package-version '(flycheck . "0.16")
-  :group 'flycheck-faces)
-
-(defface flycheck-error-list-info
-  '((t :inherit success))
-  "Flycheck face for info messages in the error list."
-  :package-version '(flycheck . "0.16")
-  :group 'flycheck-faces)
-
-;; The base faces for the following two faces are inspired by Compilation Mode
-(defface flycheck-error-list-line-number
-  '((t :inherit font-lock-constant-face))
-  "Face for line numbers in the error list."
-  :group 'flycheck-faces
-  :package-version '(flycheck . "0.16"))
-
-(defface flycheck-error-list-column-number
-  '((t :inherit font-lock-constant-face))
-  "Face for line numbers in the error list."
-  :group 'flycheck-faces
-  :package-version '(flycheck . "0.16"))
-
-(defface flycheck-error-list-filename
-  '((t :inherit font-lock-variable-name-face))
-  "Face for filenames in the error list."
-  :group 'flycheck-faces
-  :package-version '(flycheck . "32"))
-
-(defface flycheck-error-list-id
-  '((t :inherit font-lock-type-face))
-  "Face for the error ID in the error list."
-  :group 'flycheck-faces
-  :package-version '(flycheck . "0.22"))
-
-(defface flycheck-error-list-id-with-explainer
-  '((t :inherit flycheck-error-list-id
-       :box (:style released-button)))
-  "Face for the error ID in the error list, for errors that have an explainer."
-  :group 'flycheck-faces
-  :package-version '(flycheck . "30"))
-
-(defface flycheck-error-list-checker-name
-  '((t :inherit font-lock-function-name-face))
-  "Face for the syntax checker name in the error list."
-  :group 'flycheck-faces
-  :package-version '(flycheck . "0.21"))
-
-(defface flycheck-error-list-highlight
-  '((t :inherit highlight))
-  "Flycheck face to highlight errors in the error list."
-  :package-version '(flycheck . "0.15")
-  :group 'flycheck-faces)
-
-(defvar flycheck-command-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map "c"         #'flycheck-buffer)
-    (define-key map "C"         #'flycheck-clear)
-    (define-key map (kbd "C-c") #'flycheck-compile)
-    (define-key map "n"         #'flycheck-next-error)
-    (define-key map "p"         #'flycheck-previous-error)
-    (define-key map "l"         #'flycheck-list-errors)
-    (define-key map (kbd "C-w") #'flycheck-copy-errors-as-kill)
-    (define-key map "s"         #'flycheck-select-checker)
-    (define-key map "?"         #'flycheck-describe-checker)
-    (define-key map "h"         #'flycheck-display-error-at-point)
-    (define-key map "e"         #'flycheck-explain-error-at-point)
-    (define-key map "H"         #'display-local-help)
-    (define-key map "i"         #'flycheck-manual)
-    (define-key map "V"         #'flycheck-version)
-    (define-key map "v"         #'flycheck-verify-setup)
-    (define-key map "x"         #'flycheck-disable-checker)
-    map)
-  "Keymap of Flycheck interactive commands.")
-
-(defcustom flycheck-keymap-prefix (kbd "C-c !")
-  "Prefix for key bindings of Flycheck.
-
-Changing this variable outside Customize does not have any
-effect.  To change the keymap prefix from Lisp, you need to
-explicitly re-define the prefix key:
-
-    (define-key flycheck-mode-map flycheck-keymap-prefix nil)
-    (setq flycheck-keymap-prefix (kbd \"C-c f\"))
-    (define-key flycheck-mode-map flycheck-keymap-prefix
-                flycheck-command-map)
-
-Please note that Flycheck's manual documents the default
-keybindings.  Changing this variable is at your own risk."
-  :group 'flycheck
-  :package-version '(flycheck . "0.19")
-  :type 'string
-  :risky t
-  :set
-  (lambda (variable key)
-    (when (and (boundp variable) (boundp 'flycheck-mode-map))
-      (define-key flycheck-mode-map (symbol-value variable) nil)
-      (define-key flycheck-mode-map key flycheck-command-map))
-    (set-default variable key)))
-
-(defcustom flycheck-mode-line '(:eval (flycheck-mode-line-status-text))
-  "Mode line lighter for Flycheck.
-
-The value of this variable is a mode line template as in
-`mode-line-format'.  See Info Node `(elisp)Mode Line Format' for
-more information.  Note that it should contain a _single_ mode
-line construct only.
-
-Customize this variable to change how Flycheck reports its status
-in the mode line.  You may use `flycheck-mode-line-status-text'
-to obtain a human-readable status text, including an
-error/warning count.
-
-You may also assemble your own status text.  The current status
-of Flycheck is available in `flycheck-last-status-change'.  The
-errors in the current buffer are stored in
-`flycheck-current-errors', and the function
-`flycheck-count-errors' may be used to obtain the number of
-errors grouped by error level.
-
-Set this variable to nil to disable the mode line completely."
-  :group 'flycheck
-  :type 'sexp
-  :risky t
-  :package-version '(flycheck . "0.20"))
-
-(defcustom flycheck-mode-line-prefix "FlyC"
-  "Base mode line lighter for Flycheck.
-
-This will have an effect only with the default
-`flycheck-mode-line'.
-
-If you've customized `flycheck-mode-line' then the customized
-function must be updated to use this variable."
-  :group 'flycheck
-  :type 'string
-  :package-version '(flycheck . "26"))
-
-(defcustom flycheck-error-list-mode-line
-  `(,(propertized-buffer-identification "%12b")
-    " for buffer "
-    (:eval (flycheck-error-list-propertized-source-name))
-    (:eval (flycheck-error-list-mode-line-filter-indicator)))
-  "Mode line construct for Flycheck error list.
-
-The value of this variable is a mode line template as in
-`mode-line-format', to be used as
-`mode-line-buffer-identification' in `flycheck-error-list-mode'.
-See Info Node `(elisp)Mode Line Format' for more information.
-
-Customize this variable to change how the error list appears in
-the mode line.  The default shows the name of the buffer and the
-name of the source buffer, i.e. the buffer whose errors are
-currently listed."
-  :group 'flycheck
-  :type 'sexp
-  :risky t
-  :package-version '(flycheck . "0.20"))
-
-(defcustom flycheck-global-modes t
-  "Modes for which option `flycheck-mode' is turned on.
-
-If t, Flycheck Mode is turned on for all major modes.  If a list,
-Flycheck Mode is turned on for all `major-mode' symbols in that
-list.  If the `car' of the list is `not', Flycheck Mode is turned
-on for all `major-mode' symbols _not_ in that list.  If nil,
-Flycheck Mode is never turned on by command
-`global-flycheck-mode'.
-
-Note that Flycheck is never turned on for modes whose
-`mode-class' property is `special' (see Info node `(elisp)Major
-Mode Conventions'), regardless of the value of this option.
-
-Only has effect when variable `global-flycheck-mode' is non-nil."
-  :group 'flycheck
-  :type '(choice (const :tag "none" nil)
-                 (const :tag "all" t)
-                 (set :menu-tag "mode specific" :tag "modes"
-                      :value (not)
-                      (const :tag "Except" not)
-                      (repeat :inline t (symbol :tag "mode"))))
-  :risky t
-  :package-version '(flycheck . "0.23"))
-
-;; Add built-in functions to our hooks, via `add-hook', to make sure that our
-;; functions are really present, even if the variable was implicitly defined by
-;; another call to `add-hook' that occurred before Flycheck was loaded.  See
-;; http://lists.gnu.org/archive/html/emacs-devel/2015-02/msg01271.html for why
-;; we don't initialize the hook variables right away.  We append our own
-;; functions, because a user likely expects that their functions come first,
-;; even if the added them before Flycheck was loaded.
-(dolist (hook (list #'flycheck-locate-config-file-by-path
-                    #'flycheck-locate-config-file-ancestor-directories
-                    #'flycheck-locate-config-file-home))
-  (add-hook 'flycheck-locate-config-file-functions hook 'append))
-
-(add-hook 'flycheck-process-error-functions #'flycheck-add-overlay 'append)
-
-
-;;; Global Flycheck menu
-(defvar flycheck-mode-menu-map
-  (easy-menu-create-menu
-   "Syntax Checking"
-   '(["Enable on-the-fly syntax checking" flycheck-mode
-      :style toggle :selected flycheck-mode
-      :enable (or flycheck-mode
-                  ;; Don't let users toggle the mode if there is no syntax
-                  ;; checker for this buffer
-                  (seq-find #'flycheck-checker-supports-major-mode-p
-                            flycheck-checkers))]
-     ["Check current buffer" flycheck-buffer flycheck-mode]
-     ["Clear errors in buffer" flycheck-clear t]
-     "---"
-     ["Go to next error" flycheck-next-error flycheck-mode]
-     ["Go to previous error" flycheck-previous-error flycheck-mode]
-     ["Show all errors" flycheck-list-errors flycheck-mode]
-     "---"
-     ["Copy messages at point" flycheck-copy-errors-as-kill
-      (flycheck-overlays-at (point))]
-     ["Explain error at point" flycheck-explain-error-at-point]
-     "---"
-     ["Select syntax checker" flycheck-select-checker flycheck-mode]
-     ["Disable syntax checker" flycheck-disable-checker flycheck-mode]
-     ["Set executable of syntax checker" flycheck-set-checker-executable
-      flycheck-mode]
-     "---"
-     ["Describe syntax checker" flycheck-describe-checker t]
-     ["Show Flycheck version" flycheck-version t]
-     ["Read the Flycheck manual" flycheck-info t]))
-  "Menu of command `flycheck-mode'.")
-
-(easy-menu-add-item nil '("Tools") flycheck-mode-menu-map "Spell Checking")
-
-
-;;; Version information, manual and loading of Flycheck
-(defun flycheck-version (&optional show-version)
-  "Get the Flycheck version as string.
-
-If called interactively or if SHOW-VERSION is non-nil, show the
-version in the echo area and the messages buffer.
-
-The returned string includes both, the version from package.el
-and the library version, if both a present and different.
-
-If the version number could not be determined, signal an error,
-if called interactively, or if SHOW-VERSION is non-nil, otherwise
-just return nil."
-  (interactive (list t))
-  (let ((version (pkg-info-version-info 'flycheck)))
-    (when show-version
-      (message "Flycheck version: %s" version))
-    version))
-
-(defun flycheck-unload-function ()
-  "Unload function for Flycheck."
-  (global-flycheck-mode -1)
-  (easy-menu-remove-item nil '("Tools") (cadr flycheck-mode-menu-map))
-  (remove-hook 'kill-emacs-hook #'flycheck-global-teardown)
-  (setq find-function-regexp-alist
-        (assq-delete-all 'flycheck-checker find-function-regexp-alist)))
-
-;;;###autoload
-(defun flycheck-manual ()
-  "Open the Flycheck manual."
-  (interactive)
-  (browse-url "http://www.flycheck.org"))
-
-(define-obsolete-function-alias 'flycheck-info
-  'flycheck-manual "26" "Open the Flycheck manual.")
-
-
-;;; Utility functions
-(defun flycheck-sexp-to-string (sexp)
-  "Convert SEXP to a string.
-
-Like `prin1-to-string' but ensure that the returned string
-is loadable."
-  (let ((print-quoted t)
-        (print-length nil)
-        (print-level nil))
-    (prin1-to-string sexp)))
-
-(defun flycheck-string-to-number-safe (string)
-  "Safely convert STRING to a number.
-
-If STRING is of string type and a numeric string, convert STRING
-to a number and return it.  Otherwise return nil."
-  (let ((number-re (rx string-start (one-or-more (any digit)) string-end)))
-    (when (and (stringp string) (string-match-p number-re string))
-      (string-to-number string))))
-
-(defun flycheck-string-list-p (obj)
-  "Determine if OBJ is a list of strings."
-  (and (listp obj) (seq-every-p #'stringp obj)))
-
-(defun flycheck-symbol-list-p (obj)
-  "Determine if OBJ is a list of symbols."
-  (and (listp obj) (seq-every-p #'symbolp obj)))
-
-(defun flycheck-same-files-p (file-a file-b)
-  "Determine whether FILE-A and FILE-B refer to the same file."
-  (let ((file-a (expand-file-name file-a))
-        (file-b (expand-file-name file-b)))
-    ;; We must resolve symbolic links here, since some syntax checker always
-    ;; output canonical file names with all symbolic links resolved.  However,
-    ;; we still do a simple path compassion first, to avoid the comparatively
-    ;; expensive file system call if possible.  See
-    ;; https://github.com/flycheck/flycheck/issues/561
-    (or (string= (directory-file-name file-a) (directory-file-name file-b))
-        (string= (directory-file-name (file-truename file-a))
-                 (directory-file-name (file-truename file-b))))))
-
-(defvar-local flycheck-temporaries nil
-  "Temporary files and directories created by Flycheck.")
-
-(defun flycheck-temp-dir-system ()
-  "Create a unique temporary directory.
-
-Use `flycheck-temp-prefix' as prefix, and add the directory to
-`flycheck-temporaries'.
-
-Return the path of the directory"
-  (let* ((tempdir (make-temp-file flycheck-temp-prefix 'directory)))
-    (push tempdir flycheck-temporaries)
-    tempdir))
-
-(defun flycheck-temp-file-system (filename)
-  "Create a temporary file named after FILENAME.
-
-If FILENAME is non-nil, this function creates a temporary
-directory with `flycheck-temp-dir-system', and creates a file
-with the same name as FILENAME in this directory.
-
-Otherwise this function creates a temporary file with
-`flycheck-temp-prefix' and a random suffix.  The path of the file
-is added to `flycheck-temporaries'.
-
-Return the path of the file."
-  (let ((tempfile (convert-standard-filename
-                   (if filename
-                       (expand-file-name (file-name-nondirectory filename)
-                                         (flycheck-temp-dir-system))
-                     (make-temp-file flycheck-temp-prefix)))))
-    (push tempfile flycheck-temporaries)
-    tempfile))
-
-(defun flycheck-temp-file-inplace (filename)
-  "Create an in-place copy of FILENAME.
-
-Prefix the file with `flycheck-temp-prefix' and add the path of
-the file to `flycheck-temporaries'.
-
-If FILENAME is nil, fall back to `flycheck-temp-file-system'.
-
-Return the path of the file."
-  (if filename
-      (let* ((tempname (format "%s_%s"
-                               flycheck-temp-prefix
-                               (file-name-nondirectory filename)))
-             (tempfile (convert-standard-filename
-                        (expand-file-name tempname
-                                          (file-name-directory filename)))))
-        (push tempfile flycheck-temporaries)
-        tempfile)
-    (flycheck-temp-file-system filename)))
-
-(defun flycheck-temp-directory (checker)
-  "Return the directory where CHECKER writes temporary files.
-
-Return nil if the CHECKER does not write temporary files."
-  (let ((args (flycheck-checker-arguments checker)))
-    (cond
-     ((memq 'source args) temporary-file-directory)
-     ((memq 'source-inplace args)
-      (if buffer-file-name (file-name-directory buffer-file-name)
-        temporary-file-directory))
-     (t nil))))
-
-(defun flycheck-temp-files-writable-p (checker)
-  "Whether CHECKER can write temporary files.
-
-If CHECKER has `source' or `source-inplace' in its `:command',
-return whether flycheck has the permissions to create the
-respective temporary files.
-
-Return t if CHECKER does not use temporary files."
-  (let ((dir (flycheck-temp-directory checker)))
-    (or (not dir) (file-writable-p dir))))
-
-(defun flycheck-save-buffer-to-file (file-name)
-  "Save the contents of the current buffer to FILE-NAME."
-  (make-directory (file-name-directory file-name) t)
-  (let ((jka-compr-inhibit t))
-    (write-region nil nil file-name nil 0)))
-
-(defun flycheck-save-buffer-to-temp (temp-file-fn)
-  "Save buffer to temp file returned by TEMP-FILE-FN.
-
-Return the name of the temporary file."
-  (let ((filename (funcall temp-file-fn (buffer-file-name))))
-    ;; Do not flush short-lived temporary files onto disk
-    (let ((write-region-inhibit-fsync t))
-      (flycheck-save-buffer-to-file filename))
-    filename))
-
-(defun flycheck-prepend-with-option (option items &optional prepend-fn)
-  "Prepend OPTION to each item in ITEMS, using PREPEND-FN.
-
-Prepend OPTION to each item in ITEMS.
-
-ITEMS is a list of strings to pass to the syntax checker.  OPTION
-is the option, as string.  PREPEND-FN is a function called to
-prepend OPTION to each item in ITEMS.  It receives the option and
-a single item from ITEMS as argument, and must return a string or
-a list of strings with OPTION prepended to the item.  If
-PREPEND-FN is nil or omitted, use `list'.
-
-Return a list of strings where OPTION is prepended to each item
-in ITEMS using PREPEND-FN.  If PREPEND-FN returns a list, it is
-spliced into the resulting list."
-  (unless (stringp option)
-    (error "Option %S is not a string" option))
-  (unless prepend-fn
-    (setq prepend-fn #'list))
-  (let ((prepend
-         (lambda (item)
-           (let ((result (funcall prepend-fn option item)))
-             (cond
-              ((and (listp result) (seq-every-p #'stringp result)) result)
-              ((stringp result) (list result))
-              (t (error "Invalid result type for option: %S" result)))))))
-    (apply #'append (seq-map prepend items))))
-
-(defun flycheck-find-in-buffer (pattern)
-  "Find PATTERN in the current buffer.
-
-Return the result of the first matching group of PATTERN, or nil,
-if PATTERN did not match."
-  (save-restriction
-    (widen)
-    (save-excursion
-      (goto-char (point-min))
-      (when (re-search-forward pattern nil 'no-error)
-        (match-string-no-properties 1)))))
-
-(defun flycheck-buffer-empty-p (&optional buffer)
-  "Whether a BUFFER is empty.
-
-If buffer is nil or omitted check the current buffer.
-
-Return non-nil if so, or nil if the buffer has content."
-  (<= (buffer-size buffer) 0))
-
-(defun flycheck-ephemeral-buffer-p ()
-  "Determine whether the current buffer is an ephemeral buffer.
-
-See Info node `(elisp)Buffer Names' for information about
-ephemeral buffers."
-  (string-prefix-p " " (buffer-name)))
-
-(defun flycheck-encrypted-buffer-p ()
-  "Determine whether the current buffer is an encrypted file.
-
-See Info node `(epa)Top' for Emacs' interface to encrypted
-files."
-  ;; The EPA file handler sets this variable locally to remember the recipients
-  ;; of the encrypted file for re-encryption.  Hence, a local binding of this
-  ;; variable is a good indication that the buffer is encrypted.  I haven't
-  ;; found any better indicator anyway.
-  (local-variable-p 'epa-file-encrypt-to))
-
-(defun flycheck-autoloads-file-p ()
-  "Determine whether the current buffer is an autoloads file.
-
-Autoloads are generated by package.el during installation."
-  (string-suffix-p "-autoloads.el" (buffer-name)))
-
-(defun flycheck-in-user-emacs-directory-p (filename)
-  "Whether FILENAME is in `user-emacs-directory'."
-  (string-prefix-p (file-name-as-directory (file-truename user-emacs-directory))
-                   (file-truename filename)))
-
-(defun flycheck-safe-delete (file-or-dir)
-  "Safely delete FILE-OR-DIR."
-  (ignore-errors
-    (if (file-directory-p file-or-dir)
-        (delete-directory file-or-dir 'recursive)
-      (delete-file file-or-dir))))
-
-(defun flycheck-safe-delete-temporaries ()
-  "Safely delete all temp files and directories of Flycheck.
-
-Safely delete all files and directories listed in
-`flycheck-temporaries' and set the variable's value to nil."
-  (seq-do #'flycheck-safe-delete flycheck-temporaries)
-  (setq flycheck-temporaries nil))
-
-(defun flycheck-rx-file-name (form)
-  "Translate the `(file-name)' FORM into a regular expression."
-  (let ((body (or (cdr form) '((minimal-match
-                                (one-or-more not-newline))))))
-    (rx-submatch-n `(group-n 1 ,@body))))
-
-(defun flycheck-rx-message (form)
-  "Translate the `(message)' FORM into a regular expression."
-  (let ((body (or (cdr form) '((one-or-more not-newline)))))
-    (rx-submatch-n `(group-n 4 ,@body))))
-
-(defun flycheck-rx-id (form)
-  "Translate the `(id)' FORM into a regular expression."
-  (rx-submatch-n `(group-n 5 ,@(cdr form))))
-
-(defun flycheck-rx-to-string (form &optional no-group)
-  "Like `rx-to-string' for FORM, but with special keywords:
-
-`line'
-     matches the line number.
-
-`column'
-     matches the column number.
-
-`(file-name SEXP ...)'
-     matches the file name.  SEXP describes the file name.  If no
-     SEXP is given, use a default body of `(minimal-match
-     (one-or-more not-newline))'.
-
-`(message SEXP ...)'
-     matches the message.  SEXP constitutes the body of the
-     message.  If no SEXP is given, use a default body
-     of `(one-or-more not-newline)'.
-
-`(id SEXP ...)'
-     matches an error ID.  SEXP describes the ID.
-
-NO-GROUP is passed to `rx-to-string'.
-
-See `rx' for a complete list of all built-in `rx' forms."
-  (let ((rx-constituents
-         (append
-          `((line . ,(rx (group-n 2 (one-or-more digit))))
-            (column . ,(rx (group-n 3 (one-or-more digit))))
-            (file-name flycheck-rx-file-name 0 nil)
-            (message flycheck-rx-message 0 nil)
-            (id flycheck-rx-id 0 nil))
-          rx-constituents nil)))
-    (rx-to-string form no-group)))
-
-(defun flycheck-current-load-file ()
-  "Get the source file currently being loaded.
-
-Always return the name of the corresponding source file, never
-any byte-compiled file.
-
-Return nil, if the currently loaded file cannot be determined."
-  (-when-let* ((this-file (cond
-                           (load-in-progress load-file-name)
-                           ((bound-and-true-p byte-compile-current-file))
-                           (t (buffer-file-name))))
-               ;; A best guess for the source file of a compiled library. Works
-               ;; well in most cases, and especially for ELPA packages
-               (source-file (concat (file-name-sans-extension this-file)
-                                    ".el")))
-    (when (file-exists-p source-file)
-      source-file)))
-
-(defun flycheck-module-root-directory (module &optional file-name)
-  "Get the root directory for a MODULE in FILE-NAME.
-
-MODULE is a qualified module name, either a string with
-components separated by a dot, or as list of components.
-FILE-NAME is the name of the file or directory containing the
-module as string.  When nil or omitted, defaults to the return
-value of function `buffer-file-name'.
-
-Return the root directory of the module, that is, the directory,
-from which FILE-NAME can be reached by descending directories
-along each part of MODULE.
-
-If the MODULE name does not match the directory hierarchy upwards
-from FILE-NAME, return the directory containing FILE-NAME.  When
-FILE-NAME is nil, return `default-directory'."
-  (let ((file-name (or file-name (buffer-file-name)))
-        (module-components (if (stringp module)
-                               (split-string module (rx "."))
-                             (copy-sequence module))))
-    (if (and module-components file-name)
-        (let ((parts (nreverse module-components))
-              (base-directory (directory-file-name
-                               (file-name-sans-extension file-name))))
-          (while (and parts
-                      (string= (file-name-nondirectory base-directory)
-                               (car parts)))
-            (pop parts)
-            (setq base-directory (directory-file-name
-                                  (file-name-directory base-directory))))
-          (file-name-as-directory base-directory))
-      (if file-name
-          (file-name-directory file-name)
-        (expand-file-name default-directory)))))
-
-
-;;; Minibuffer tools
-(defvar read-flycheck-checker-history nil
-  "`completing-read' history of `read-flycheck-checker'.")
-
-(defun flycheck-completing-read (prompt candidates default &optional history)
-  "Read a value from the minibuffer.
-
-Use `flycheck-completing-read-function' to read input from the
-minibuffer with completion.
-
-Show PROMPT and read one of CANDIDATES, defaulting to DEFAULT.
-HISTORY is passed to `flycheck-completing-read-function'."
-  (funcall flycheck-completing-read-function
-           prompt candidates nil 'require-match nil history default))
-
-(defun read-flycheck-checker (prompt &optional default property candidates)
-  "Read a flycheck checker from minibuffer with PROMPT and DEFAULT.
-
-PROMPT is a string to show in the minibuffer as prompt.  It
-should end with a single space.  DEFAULT is a symbol denoting the
-default checker to use, if the user did not select any checker.
-PROPERTY is a symbol denoting a syntax checker property.  If
-non-nil, only complete syntax checkers which have a non-nil value
-for PROPERTY.  CANDIDATES is an optional list of all syntax
-checkers available for completion, defaulting to all defined
-checkers.  If given, PROPERTY is ignored.
-
-Return the checker as symbol, or DEFAULT if no checker was
-chosen.  If DEFAULT is nil and no checker was chosen, signal a
-`user-error' if the underlying completion system does not provide
-a default on its own."
-  (when (and default (not (flycheck-valid-checker-p default)))
-    (error "%S is no valid Flycheck checker" default))
-  (let* ((candidates (seq-map #'symbol-name
-                              (or candidates
-                                  (flycheck-defined-checkers property))))
-         (default (and default (symbol-name default)))
-         (input (flycheck-completing-read
-                 prompt candidates default
-                 'read-flycheck-checker-history)))
-    (when (string-empty-p input)
-      (unless default
-        (user-error "No syntax checker selected"))
-      (setq input default))
-    (let ((checker (intern input)))
-      (unless (flycheck-valid-checker-p checker)
-        (error "%S is not a valid Flycheck syntax checker" checker))
-      checker)))
-
-(defun read-flycheck-error-level (prompt)
-  "Read an error level from the user with PROMPT.
-
-Only offers level for which errors currently exist, in addition
-to the default levels."
-  (let* ((levels (seq-map #'flycheck-error-level
-                          (flycheck-error-list-current-errors)))
-         (levels-with-defaults (append '(info warning error) levels))
-         (uniq-levels (seq-uniq levels-with-defaults))
-         (level (flycheck-completing-read prompt uniq-levels nil)))
-    (and (stringp level) (intern level))))
-
-
-;;; Checker API
-(defun flycheck-defined-checkers (&optional property)
-  "Find all defined syntax checkers, optionally with PROPERTY.
-
-PROPERTY is a symbol.  If given, only return syntax checkers with
-a non-nil value for PROPERTY.
-
-The returned list is sorted alphapetically by the symbol name of
-the syntax checkers."
-  (let (defined-checkers)
-    (mapatoms (lambda (symbol)
-                (when (and (flycheck-valid-checker-p symbol)
-                           (or (null property)
-                               (flycheck-checker-get symbol property)))
-                  (push symbol defined-checkers))))
-    (sort defined-checkers #'string<)))
-
-(defun flycheck-registered-checker-p (checker)
-  "Determine whether CHECKER is registered.
-
-A checker is registered if it is contained in
-`flycheck-checkers'."
-  (and (flycheck-valid-checker-p checker)
-       (memq checker flycheck-checkers)))
-
-(defun flycheck-disabled-checker-p (checker)
-  "Determine whether CHECKER is disabled.
-
-A checker is disabled if it is contained in
-`flycheck-disabled-checkers'."
-  (memq checker flycheck-disabled-checkers))
-
-
-;;; Generic syntax checkers
-(defconst flycheck-generic-checker-version 2
-  "The internal version of generic syntax checker declarations.
-
-Flycheck will not use syntax checkers whose generic version is
-less than this constant.")
-
-(defsubst flycheck--checker-property-name (property)
-  "Return the SYMBOL property for checker PROPERTY."
-  (intern (concat "flycheck-" (symbol-name property))))
-
-(defun flycheck-checker-get (checker property)
-  "Get the value of CHECKER's PROPERTY."
-  (get checker (flycheck--checker-property-name property)))
-
-(gv-define-setter flycheck-checker-get (value checker property)
-  `(setf (get ,checker (flycheck--checker-property-name ,property)) ,value))
-
-(defun flycheck-validate-next-checker (next &optional strict)
-  "Validate NEXT checker.
-
-With STRICT non-nil, also check whether the syntax checker and
-the error level in NEXT are valid.  Otherwise just check whether
-these are symbols.
-
-Signal an error if NEXT is not a valid entry for
-`:next-checkers'."
-  (when (symbolp next)
-    (setq next (cons t next)))
-  (pcase next
-    (`(,level . ,checker)
-     (if strict
-         (progn
-           (unless (or (eq level t) (flycheck-error-level-p level))
-             (error "%S is not a valid Flycheck error level" level))
-           (unless (flycheck-valid-checker-p checker)
-             (error "%s is not a valid Flycheck syntax checker" checker)))
-       (unless (symbolp level)
-         (error "Error level %S must be a symbol" level))
-       (unless (symbolp checker)
-         (error "Checker %S must be a symbol" checker))))
-    (_ (error "%S must be a symbol or cons cell" next)))
-  t)
-
-(defun flycheck-define-generic-checker (symbol docstring &rest properties)
-  "Define SYMBOL as generic syntax checker.
-
-Any syntax checker defined with this macro is eligible for manual
-syntax checker selection with `flycheck-select-checker'.  To make
-the new syntax checker available for automatic selection, it must
-be registered in `flycheck-checkers'.
-
-DOCSTRING is the documentation of the syntax checker, for
-`flycheck-describe-checker'.  The following PROPERTIES constitute
-a generic syntax checker.  Unless otherwise noted, all properties
-are mandatory.
-
-`:start FUNCTION'
-     A function to start the syntax checker.
-
-     FUNCTION shall take two arguments and return a context
-     object if the checker is started successfully.  Otherwise it
-     shall signal an error.
-
-     The first argument is the syntax checker being started.  The
-     second is a callback function to report state changes to
-     Flycheck.  The callback takes two arguments STATUS DATA,
-     where STATUS is a symbol denoting the syntax checker status
-     and DATA an optional argument with additional data for the
-     status report.  See `flycheck-report-buffer-checker-status'
-     for more information about STATUS and DATA.
-
-     FUNCTION may be synchronous or asynchronous, i.e. it may
-     call the given callback either immediately, or at some later
-     point (e.g. from a process sentinel).
-
-     A syntax checker _must_ call CALLBACK at least once with a
-     STATUS that finishes the current syntax checker.  Otherwise
-     Flycheck gets stuck at the current syntax check with this
-     syntax checker.
-
-     The context object returned by FUNCTION is passed to
-     `:interrupt'.
-
-`:interrupt FUNCTION'
-     A function to interrupt the syntax check.
-
-     FUNCTION is called with the syntax checker and the context
-     object returned by the `:start' function and shall try to
-     interrupt the syntax check.  The context may be nil, if the
-     syntax check is interrupted before actually started.
-     FUNCTION should handle this situation.
-
-     If it cannot interrupt the syntax check, it may either
-     signal an error or silently ignore the attempt to interrupt
-     the syntax checker, depending on the severity of the
-     situation.
-
-     If interrupting the syntax check failed, Flycheck will let
-     the syntax check continue, but ignore any status reports.
-     Notably, it won't highlight any errors reported by the
-     syntax check in the buffer.
-
-     This property is optional.  If omitted, Flycheck won't
-     attempt to interrupt syntax checks wit this syntax checker,
-     and simply ignore their results.
-
-`:print-doc FUNCTION'
-     A function to print additional documentation into the Help
-     buffer of this checker.
-
-     FUNCTION is called when creating the Help buffer for the
-     syntax checker, with the syntax checker as single argument,
-     after printing the name of the syntax checker and its modes
-     and predicate, but before printing DOCSTRING.  It may insert
-     additional documentation into the current buffer.
-
-     The call occurs within `with-help-window'.  Hence
-     `standard-output' points to the current buffer, so you may
-     use `princ' and friends to add content.  Also, the current
-     buffer is put into Help mode afterwards, which automatically
-     turns symbols into references, if possible.
-
-     This property is optional.  If omitted, no additional
-     documentation is printed for this syntax checker.
-
-:verify FUNCTION
-     A function to verify the checker for the current buffer.
-
-     FUNCTION is called with the syntax checker as single
-     argument, and shall return a list of
-     `flycheck-verification-result' objects indicating whether
-     the syntax checker could be used in the current buffer, and
-     highlighting potential setup problems.
-
-     This property is optional.  If omitted, no additional
-     verification occurs for this syntax checker.  It is however
-     absolutely recommended that you add a `:verify' function to
-     your syntax checker, because it will help users to spot
-     potential setup problems.
-
-`:modes MODES'
-     A major mode symbol or a list thereof, denoting major modes
-     to use this syntax checker in.
-
-     This syntax checker will only be used in buffers whose
-     `major-mode' is contained in MODES.
-
-     If `:predicate' is also given the syntax checker will only
-     be used in buffers for which the `:predicate' returns
-     non-nil.
-
-`:predicate FUNCTION'
-     A function to determine whether to use the syntax checker in
-     the current buffer.
-
-     FUNCTION is called without arguments and shall return
-     non-nil if this syntax checker shall be used to check the
-     current buffer.  Otherwise it shall return nil.
-
-     If this checker has a `:working-directory' FUNCTION is
-     called with `default-directory' bound to the checker's
-     working directory.
-
-     FUNCTION is only called in matching major modes.
-
-     This property is optional.
-
-`:enabled FUNCTION'
-     A function to determine whether to use the syntax checker in
-     the current buffer.
-
-     This property behaves as `:predicate', except that it's only
-     called the first time a syntax checker is to be used in a buffer.
-
-     FUNCTION is called without arguments and shall return
-     non-nil if this syntax checker shall be used to check the
-     current buffer.  Otherwise it shall return nil.
-
-     If FUNCTION returns a non-nil value the checker is put in a
-     whitelist in `flycheck-enabled-checkers' to prevent further
-     invocations of `:enabled'.  Otherwise it is disabled via
-     `flycheck-disabled-checkers' to prevent any further use of
-     it.
-
-     If this checker has a `:working-directory' FUNCTION is
-     called with `default-directory' bound to the checker's
-     working directory.
-
-     FUNCTION is only called in matching major modes.
-
-     This property is optional.
-
-`:error-filter FUNCTION'
-     A function to filter the errors returned by this checker.
-
-     FUNCTION is called with the list of `flycheck-error' objects
-     returned by the syntax checker and shall return another list
-     of `flycheck-error' objects, which is considered the final
-     result of this syntax checker.
-
-     FUNCTION is free to add, remove or modify errors, whether in
-     place or by copying.
-
-     This property is optional.  The default filter is
-     `identity'.
-
-`:error-explainer FUNCTION'
-     A function to return an explanation text for errors
-     generated by this checker.
-
-     FUNCTION is called with a `flycheck-error' object and shall
-     return an explanation message for this error as a string, or
-     nil if there is no explanation for this error.
-
-     This property is optional.
-
-`:next-checkers NEXT-CHECKERS'
-     A list denoting syntax checkers to apply after this syntax
-     checker, in what we call \"chaining\" of syntax checkers.
-
-     Each ITEM is a cons cell `(LEVEL . CHECKER)'.  CHECKER is a
-     syntax checker to run after this syntax checker.  LEVEL is
-     an error level.  CHECKER will only be used if there are no
-     current errors of at least LEVEL.  LEVEL may also be t, in
-     which case CHECKER is used regardless of the current errors.
-
-     ITEM may also be a syntax checker symbol, which is
-     equivalent to `(t . ITEM)'.
-
-     Flycheck tries all items in order of declaration, and uses
-     the first whose LEVEL matches and whose CHECKER is
-     registered and can be used for the current buffer.
-
-     This feature is typically used to apply more than one syntax
-     checker to a buffer.  For instance, you might first use a
-     compiler to check a buffer for syntax and type errors, and
-     then run a linting tool that checks for insecure code, or
-     questionable style.
-
-     This property is optional.  If omitted, it defaults to the
-     nil, i.e. no other syntax checkers are applied after this
-     syntax checker.
-
-`:working-directory FUNCTION'
-     The value of `default-directory' when invoking `:start'.
-
-     FUNCTION is a function taking the syntax checker as sole
-     argument.  It shall return the absolute path to an existing
-     directory to use as `default-directory' for `:start' or
-     nil to fall back to the `default-directory' of the current
-     buffer.
-
-     This property is optional.  If omitted, invoke `:start'
-     from the `default-directory' of the buffer being checked.
-
-Signal an error, if any property has an invalid value."
-  (declare (indent 1)
-           (doc-string 2))
-  (let ((start (plist-get properties :start))
-        (interrupt (plist-get properties :interrupt))
-        (print-doc (plist-get properties :print-doc))
-        (modes (plist-get properties :modes))
-        (predicate (plist-get properties :predicate))
-        (verify (plist-get properties :verify))
-        (enabled (plist-get properties :enabled))
-        (filter (or (plist-get properties :error-filter) #'identity))
-        (explainer (plist-get properties :error-explainer))
-        (next-checkers (plist-get properties :next-checkers))
-        (file (flycheck-current-load-file))
-        (working-directory (plist-get properties :working-directory)))
-
-    (unless (listp modes)
-      (setq modes (list modes)))
-
-    (unless (functionp start)
-      (error ":start %S of syntax checker %s is not a function" start symbol))
-    (unless (or (null interrupt) (functionp interrupt))
-      (error ":interrupt %S of syntax checker %s is not a function"
-             interrupt symbol))
-    (unless (or (null print-doc) (functionp print-doc))
-      (error ":print-doc %S of syntax checker %s is not a function"
-             print-doc symbol))
-    (unless (or (null verify) (functionp verify))
-      (error ":verify %S of syntax checker %S is not a function"
-             verify symbol))
-    (unless (or (null enabled) (functionp enabled))
-      (error ":enabled %S of syntax checker %S is not a function"
-             enabled symbol))
-    (unless modes
-      (error "Missing :modes in syntax checker %s" symbol))
-    (dolist (mode modes)
-      (unless (symbolp mode)
-        (error "Invalid :modes %s in syntax checker %s, %s must be a symbol"
-               modes symbol mode)))
-    (unless (or (null predicate) (functionp predicate))
-      (error ":predicate %S of syntax checker %s  is not a function"
-             predicate symbol))
-    (unless (functionp filter)
-      (error ":error-filter %S of syntax checker %s is not a function"
-             filter symbol))
-    (unless (or (null explainer) (functionp explainer))
-      (error ":error-explainer %S of syntax checker %S is not a function"
-             explainer symbol))
-    (dolist (checker next-checkers)
-      (flycheck-validate-next-checker checker))
-
-    (let ((real-predicate
-           (and predicate
-                (lambda ()
-                  ;; Run predicate in the checker's default directory
-                  (let ((default-directory
-                          (flycheck-compute-working-directory symbol)))
-                    (funcall predicate)))))
-          (real-enabled
-           (lambda ()
-             (if (flycheck-valid-checker-p symbol)
-                 (or (null enabled)
-                     ;; Run enabled in the checker's default directory
-                     (let ((default-directory
-                             (flycheck-compute-working-directory symbol)))
-                       (funcall enabled)))
-               (lwarn 'flycheck
-                      :warning "%S is no valid Flycheck syntax checker.
-Try to reinstall the package defining this syntax checker." symbol)
-               nil))))
-      (pcase-dolist (`(,prop . ,value)
-                     `((start             . ,start)
-                       (interrupt         . ,interrupt)
-                       (print-doc         . ,print-doc)
-                       (modes             . ,modes)
-                       (predicate         . ,real-predicate)
-                       (verify            . ,verify)
-                       (enabled           . ,real-enabled)
-                       (error-filter      . ,filter)
-                       (error-explainer   . ,explainer)
-                       (next-checkers     . ,next-checkers)
-                       (documentation     . ,docstring)
-                       (file              . ,file)
-                       (working-directory . ,working-directory)))
-        (setf (flycheck-checker-get symbol prop) value)))
-
-    ;; Track the version, to avoid breakage if the internal format changes
-    (setf (flycheck-checker-get symbol 'generic-checker-version)
-          flycheck-generic-checker-version)))
-
-(defun flycheck-valid-checker-p (checker)
-  "Check whether a CHECKER is valid.
-
-A valid checker is a symbol defined as syntax checker with
-`flycheck-define-checker'."
-  (and (symbolp checker)
-       (= (or (get checker 'flycheck-generic-checker-version) 0)
-          flycheck-generic-checker-version)))
-
-(defun flycheck-checker-supports-major-mode-p (checker &optional mode)
-  "Whether CHECKER supports the given major MODE.
-
-CHECKER is a syntax checker symbol and MODE a major mode symbol.
-Look at the `modes' property of CHECKER to determine whether
-CHECKER supports buffers in the given major MODE.
-
-MODE defaults to the value of `major-mode' if omitted or nil.
-
-Return non-nil if CHECKER supports MODE and nil otherwise."
-  (let ((mode (or mode major-mode)))
-    (memq mode (flycheck-checker-get checker 'modes))))
-
-(defvar-local flycheck-enabled-checkers nil
-  "Syntax checkers included in automatic selection.
-
-A list of Flycheck syntax checkers included in automatic
-selection for current buffer.")
-
-(defun flycheck-may-enable-checker (checker)
-  "Whether a generic CHECKER may be enabled for current buffer.
-
-Return non-nil if CHECKER may be used for the current buffer, and
-nil otherwise."
-  (let* ((enabled (flycheck-checker-get checker 'enabled))
-         (shall-enable (and (not (flycheck-disabled-checker-p checker))
-                            (or (memq checker flycheck-enabled-checkers)
-                                (null enabled)
-                                (funcall enabled)))))
-    (if shall-enable
-        (cl-pushnew checker flycheck-enabled-checkers)
-      (cl-pushnew checker flycheck-disabled-checkers))
-    shall-enable))
-
-(defun flycheck-may-use-checker (checker)
-  "Whether a generic CHECKER may be used.
-
-Return non-nil if CHECKER may be used for the current buffer, and
-nil otherwise."
-  (let ((predicate (flycheck-checker-get checker 'predicate)))
-    (and (flycheck-valid-checker-p checker)
-         (flycheck-checker-supports-major-mode-p checker)
-         (flycheck-may-enable-checker checker)
-         (or (null predicate) (funcall predicate)))))
-
-(defun flycheck-may-use-next-checker (next-checker)
-  "Determine whether NEXT-CHECKER may be used."
-  (when (symbolp next-checker)
-    (push t next-checker))
-  (let ((level (car next-checker))
-        (next-checker (cdr next-checker)))
-    (and (or (eq level t)
-             (flycheck-has-max-current-errors-p level))
-         (flycheck-registered-checker-p next-checker)
-         (flycheck-may-use-checker next-checker))))
-
-
-;;; Help for generic syntax checkers
-(define-button-type 'help-flycheck-checker-def
-  :supertype 'help-xref
-  'help-function #'flycheck-goto-checker-definition
-  'help-echo "mouse-2, RET: find Flycheck checker definition")
-
-(defconst flycheck-find-checker-regexp
-  (rx line-start (zero-or-more (syntax whitespace))
-      "(" symbol-start "flycheck-define-checker" symbol-end
-      (eval (list 'regexp find-function-space-re))
-      symbol-start
-      "%s"
-      symbol-end
-      (or (syntax whitespace) line-end))
-  "Regular expression to find a checker definition.")
-
-(add-to-list 'find-function-regexp-alist
-             '(flycheck-checker . flycheck-find-checker-regexp))
-
-(defun flycheck-goto-checker-definition (checker file)
-  "Go to to the definition of CHECKER in FILE."
-  (let ((location (find-function-search-for-symbol
-                   checker 'flycheck-checker file)))
-    (pop-to-buffer (car location))
-    (if (cdr location)
-        (goto-char (cdr location))
-      (message "Unable to find checker location in file"))))
-
-(defun flycheck-checker-at-point ()
-  "Return the Flycheck checker found at or before point.
-
-Return nil if there is no checker."
-  (let ((symbol (variable-at-point 'any-symbol)))
-    (when (flycheck-valid-checker-p symbol)
-      symbol)))
-
-(defun flycheck-describe-checker (checker)
-  "Display the documentation of CHECKER.
-
-CHECKER is a checker symbol.
-
-Pop up a help buffer with the documentation of CHECKER."
-  (interactive
-   (let* ((enable-recursive-minibuffers t)
-          (default (or (flycheck-checker-at-point)
-                       (ignore-errors (flycheck-get-checker-for-buffer))))
-          (prompt (if default
-                      (format "Describe syntax checker (default %s): " default)
-                    "Describe syntax checker: ")))
-     (list (read-flycheck-checker prompt default))))
-  (unless (flycheck-valid-checker-p checker)
-    (user-error "You didn't specify a Flycheck syntax checker"))
-  (help-setup-xref (list #'flycheck-describe-checker checker)
-                   (called-interactively-p 'interactive))
-  (save-excursion
-    (with-help-window (help-buffer)
-      (let ((filename (flycheck-checker-get checker 'file))
-            (modes (flycheck-checker-get checker 'modes))
-            (predicate (flycheck-checker-get checker 'predicate))
-            (print-doc (flycheck-checker-get checker 'print-doc))
-            (next-checkers (flycheck-checker-get checker 'next-checkers)))
-        (princ (format "%s is a Flycheck syntax checker" checker))
-        (when filename
-          (princ (format " in `%s'" (file-name-nondirectory filename)))
-          (with-current-buffer standard-output
-            (save-excursion
-              (re-search-backward "`\\([^`']+\\)'" nil t)
-              (help-xref-button 1 'help-flycheck-checker-def
-                                checker filename))))
-        (princ ".\n\n")
-
-        (let ((modes-start (with-current-buffer standard-output (point-max))))
-          ;; Track the start of the modes documentation, to properly re-fill
-          ;; it later
-          (princ "  This syntax checker checks syntax in the major mode(s) ")
-          (princ (string-join
-                  (seq-map (apply-partially #'format "`%s'") modes)
-                  ", "))
-          (when predicate
-            (princ ", and uses a custom predicate"))
-          (princ ".")
-          (when next-checkers
-            (princ "  It runs the following checkers afterwards:"))
-          (with-current-buffer standard-output
-            (save-excursion
-              (fill-region-as-paragraph modes-start (point-max))))
-          (princ "\n")
-
-          ;; Print the list of next checkers
-          (when next-checkers
-            (princ "\n")
-            (let ((beg-checker-list (with-current-buffer standard-output
-                                      (point))))
-              (dolist (next-checker next-checkers)
-                (if (symbolp next-checker)
-                    (princ (format "     * `%s'\n" next-checker))
-                  (princ (format "     * `%s' (maximum level `%s')\n"
-                                 (cdr next-checker) (car next-checker)))))
-              ;;
-              (with-current-buffer standard-output
-                (save-excursion
-                  (while (re-search-backward "`\\([^`']+\\)'"
-                                             beg-checker-list t)
-                    (when (flycheck-valid-checker-p
-                           (intern-soft (match-string 1)))
-                      (help-xref-button 1 'help-flycheck-checker-def checker
-                                        filename))))))))
-        ;; Call the custom print-doc function of the checker, if present
-        (when print-doc
-          (funcall print-doc checker))
-        ;; Ultimately, print the docstring
-        (princ "\nDocumentation:\n")
-        (princ (flycheck-checker-get checker 'documentation))))))
-
-
-;;; Syntax checker verification
-(cl-defstruct (flycheck-verification-result
-               (:constructor flycheck-verification-result-new))
-  "Structure for storing a single verification result.
-
-Slots:
-
-`label'
-     A label for this result, as string
-
-`message'
-     A message for this result, as string
-
-`face'
-     The face to use for the `message'.
-
-     You can either use a face symbol, or a list of face symbols."
-  label message face)
-
-(defun flycheck-verify-generic-checker (checker)
-  "Verify a generic CHECKER in the current buffer.
-
-Return a list of `flycheck-verification-result' objects."
-  (let (results
-        (predicate (flycheck-checker-get checker 'predicate))
-        (enabled (flycheck-checker-get checker 'enabled))
-        (verify (flycheck-checker-get checker 'verify)))
-    (when enabled
-      (let ((result (funcall enabled)))
-        (push (flycheck-verification-result-new
-               :label "may enable"
-               :message (if result "yes" "Automatically disabled!")
-               :face (if result 'success '(bold warning)))
-              results)))
-    (when predicate
-      (let ((result (funcall predicate)))
-        (push (flycheck-verification-result-new
-               :label "predicate"
-               :message (prin1-to-string (not (null result)))
-               :face (if result 'success '(bold warning)))
-              results)))
-    (append (nreverse results)
-            (and verify (funcall verify checker)))))
-
-(define-button-type 'help-flycheck-checker-doc
-  :supertype 'help-xref
-  'help-function #'flycheck-describe-checker
-  'help-echo "mouse-2, RET: describe Flycheck checker")
-
-(defun flycheck--verify-princ-checker (checker buffer &optional with-mm)
-  "Print verification result of CHECKER for BUFFER.
-
-When WITH-MM is given and non-nil, also include the major mode
-into the verification results."
-  (princ "  ")
-  (insert-button (symbol-name checker)
-                 'type 'help-flycheck-checker-doc
-                 'help-args (list checker))
-  (when (with-current-buffer buffer (flycheck-disabled-checker-p checker))
-    (insert (propertize " (disabled)" 'face '(bold error))))
-  (princ "\n")
-  (let ((results (with-current-buffer buffer
-                   (flycheck-verify-generic-checker checker))))
-    (when with-mm
-      (with-current-buffer buffer
-        (let ((message-and-face
-               (if (flycheck-checker-supports-major-mode-p checker)
-                   (cons (format "`%s' supported" major-mode) 'success)
-                 (cons (format "`%s' not supported" major-mode) 'error))))
-          (push (flycheck-verification-result-new
-                 :label "major mode"
-                 :message (car message-and-face)
-                 :face (cdr message-and-face))
-                results))))
-    (let* ((label-length
-            (seq-max (mapcar
-                      (lambda (res)
-                        (length (flycheck-verification-result-label res)))
-                      results)))
-           (message-column (+ 8 label-length)))
-      (dolist (result results)
-        (princ "    - ")
-        (princ (flycheck-verification-result-label result))
-        (princ ": ")
-        (princ (make-string (- message-column (current-column)) ?\ ))
-        (let ((message (flycheck-verification-result-message result))
-              (face (flycheck-verification-result-face result)))
-          (insert (propertize message 'face face)))
-        (princ "\n"))))
-  (princ "\n"))
-
-(defun flycheck--verify-print-header (desc buffer)
-  "Print a title with DESC for BUFFER in the current buffer.
-
-DESC is an arbitrary string containing a description, and BUFFER
-is the buffer being verified.  The name and the major mode mode
-of BUFFER are printed.
-
-DESC and information about BUFFER are printed in the current
-buffer."
-  (princ desc)
-  (insert (propertize (buffer-name buffer) 'face 'bold))
-  (princ " in ")
-  (let ((mode (buffer-local-value 'major-mode buffer)))
-    (insert-button (symbol-name mode)
-                   'type 'help-function
-                   'help-args (list mode)))
-  (princ ":\n\n"))
-
-(defun flycheck--verify-print-footer (buffer)
-  "Print a footer for BUFFER in the current buffer.
-
-BUFFER is the buffer being verified."
-  (princ "Flycheck Mode is ")
-  (let ((enabled (buffer-local-value 'flycheck-mode buffer)))
-    (insert (propertize (if enabled "enabled" "disabled")
-                        'face (if enabled 'success '(warning bold)))))
-  (princ
-   (with-current-buffer buffer
-     ;; Use key binding state in the verified buffer to print the help.
-     (substitute-command-keys
-      ".  Use \\[universal-argument] \\[flycheck-disable-checker] \
-to enable disabled checkers.")))
-  (save-excursion
-    (let ((end (point)))
-      (backward-paragraph)
-      (fill-region-as-paragraph (point) end)))
-
-  (princ "\n\n--------------------\n\n")
-  (princ (format "Flycheck version: %s\n" (flycheck-version)))
-  (princ (format "Emacs version:    %s\n" emacs-version))
-  (princ (format "System:           %s\n" system-configuration))
-  (princ (format "Window system:    %S\n" window-system)))
-
-(defun flycheck-verify-checker (checker)
-  "Check whether a CHECKER can be used in this buffer.
-
-Show a buffer listing possible problems that prevent CHECKER from
-being used for the current buffer.
-
-Note: Do not use this function to check whether a syntax checker
-is applicable from Emacs Lisp code.  Use
-`flycheck-may-use-checker' instead."
-  (interactive (list (read-flycheck-checker "Checker to verify: ")))
-  (unless (flycheck-valid-checker-p checker)
-    (user-error "%s is not a syntax checker" checker))
-
-  ;; Save the buffer to make sure that all predicates are good
-  (when (and (buffer-file-name) (buffer-modified-p))
-    (save-buffer))
-
-  (let ((buffer (current-buffer)))
-    (with-help-window (get-buffer-create " *Flycheck checker*")
-      (with-current-buffer standard-output
-        (flycheck--verify-print-header "Syntax checker in buffer " buffer)
-        (flycheck--verify-princ-checker checker buffer 'with-mm)
-        (if (with-current-buffer buffer (flycheck-may-use-checker checker))
-            (insert (propertize
-                     "Flycheck can use this syntax checker for this buffer.\n"
-                     'face 'success))
-          (insert (propertize
-                   "Flycheck cannot use this syntax checker for this buffer.\n"
-                   'face 'error)))
-        (insert "\n")
-        (flycheck--verify-print-footer buffer)))))
-
-(defun flycheck-verify-setup ()
-  "Check whether Flycheck can be used in this buffer.
-
-Display a new buffer listing all syntax checkers that could be
-applicable in the current buffer.  For each syntax checkers,
-possible problems are shown."
-  (interactive)
-  (when (and (buffer-file-name) (buffer-modified-p))
-    ;; Save the buffer
-    (save-buffer))
-
-  (let ((buffer (current-buffer))
-        ;; Get all checkers that support the current major mode
-        (checkers (seq-filter #'flycheck-checker-supports-major-mode-p
-                              flycheck-checkers))
-        (help-buffer (get-buffer-create " *Flycheck checkers*")))
-
-    ;; Now print all applicable checkers
-    (with-help-window help-buffer
-      (with-current-buffer standard-output
-        (flycheck--verify-print-header "Syntax checkers for buffer " buffer)
-        (unless checkers
-          (insert (propertize
-                   "There are no syntax checkers for this buffer!\n\n"
-                   'face '(bold error))))
-        (dolist (checker checkers)
-          (flycheck--verify-princ-checker checker buffer))
-
-        (-when-let (selected-checker
-                    (buffer-local-value 'flycheck-checker buffer))
-          (insert
-           (propertize
-            "The following checker is explicitly selected for this buffer:\n\n"
-            'face 'bold))
-          (flycheck--verify-princ-checker selected-checker buffer 'with-mm))
-
-        (let ((unregistered-checkers
-               (seq-difference (flycheck-defined-checkers) flycheck-checkers)))
-          (when unregistered-checkers
-            (insert (propertize
-                     "\nThe following syntax checkers are not registered:\n\n"
-                     'face '(bold warning)))
-            (dolist (checker unregistered-checkers)
-              (princ "  - ")
-              (princ checker)
-              (princ "\n"))
-            (princ
-             "\nTry adding these syntax checkers to `flycheck-checkers'.\n")))
-
-        (flycheck--verify-print-footer buffer)))
-
-    (with-current-buffer help-buffer
-      (setq-local revert-buffer-function
-                  (lambda (_ignore-auto _noconfirm)
-                    (with-current-buffer buffer (flycheck-verify-setup)))))))
-
-
-;;; Predicates for generic syntax checkers
-(defun flycheck-buffer-saved-p (&optional buffer)
-  "Determine whether BUFFER is saved to a file.
-
-BUFFER is the buffer to check.  If omitted or nil, use the
-current buffer as BUFFER.
-
-Return non-nil if the BUFFER is backed by a file, and not
-modified, or nil otherwise."
-  (let ((file-name (buffer-file-name buffer)))
-    (and file-name (file-exists-p file-name) (not (buffer-modified-p buffer)))))
-
-
-;;; Extending generic checkers
-(defun flycheck-add-next-checker (checker next &optional append)
-  "After CHECKER add a NEXT checker.
-
-CHECKER is a syntax checker symbol, to which to add NEXT checker.
-
-NEXT is a cons cell `(LEVEL . NEXT-CHECKER)'.  NEXT-CHECKER is a
-symbol denoting the syntax checker to run after CHECKER.  LEVEL
-is an error level.  NEXT-CHECKER will only be used if there is no
-current error whose level is more severe than LEVEL.  LEVEL may
-also be t, in which case NEXT-CHECKER is used regardless of the
-current errors.
-
-NEXT can also be a syntax checker symbol only, which is
-equivalent to `(t . NEXT)'.
-
-NEXT-CHECKER is prepended before other next checkers, unless
-APPEND is non-nil."
-  (unless (flycheck-valid-checker-p checker)
-    (error "%s is not a valid syntax checker" checker))
-  (flycheck-validate-next-checker next 'strict)
-  (if append
-      (setf (flycheck-checker-get checker 'next-checkers)
-            (append (flycheck-checker-get checker 'next-checkers) (list next)))
-    (push next (flycheck-checker-get checker 'next-checkers))))
-
-(defun flycheck-add-mode (checker mode)
-  "To CHECKER add a new major MODE.
-
-CHECKER and MODE are symbols denoting a syntax checker and a
-major mode respectively.
-
-Add MODE to the `:modes' property of CHECKER, so that CHECKER
-will be used in buffers with MODE."
-  (unless (flycheck-valid-checker-p checker)
-    (error "%s is not a valid syntax checker" checker))
-  (unless (symbolp mode)
-    (error "%s is not a symbol" mode))
-  (push mode (flycheck-checker-get checker 'modes)))
-
-
-;;; Generic syntax checks
-(cl-defstruct (flycheck-syntax-check
-               (:constructor flycheck-syntax-check-new))
-  "Structure for storing syntax check state.
-
-Slots:
-
-`buffer'
-     The buffer being checked.
-
-`checker'
-     The syntax checker being used.
-
-`context'
-     The context object.
-
-`working-directory'
-     Working directory for the syntax checker. Serve as a value for
-     `default-directory' for a checker."
-  buffer checker context working-directory)
-
-(defun flycheck-syntax-check-start (syntax-check callback)
-  "Start a SYNTAX-CHECK with CALLBACK."
-  (let ((checker (flycheck-syntax-check-checker syntax-check))
-        (default-directory
-          (flycheck-syntax-check-working-directory syntax-check)))
-    (setf (flycheck-syntax-check-context syntax-check)
-          (funcall (flycheck-checker-get checker 'start) checker callback))))
-
-(defun flycheck-syntax-check-interrupt (syntax-check)
-  "Interrupt a SYNTAX-CHECK."
-  (let* ((checker (flycheck-syntax-check-checker syntax-check))
-         (interrupt-fn (flycheck-checker-get checker 'interrupt))
-         (context (flycheck-syntax-check-context syntax-check)))
-    (when interrupt-fn
-      (funcall interrupt-fn checker context))))
-
-
-;;; Syntax checking mode
-
-(defvar flycheck-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map flycheck-keymap-prefix flycheck-command-map)
-    ;; We place the menu under a custom menu key.  Since this menu key is not
-    ;; present in the menu of the global map, no top-level menu entry is added
-    ;; to the global menu bar.  However, it still appears on the mode line
-    ;; lighter.
-    (define-key map [menu-bar flycheck] flycheck-mode-menu-map)
-    map)
-  "Keymap of command `flycheck-mode'.")
-
-(defvar-local flycheck-old-next-error-function nil
-  "Remember the old `next-error-function'.")
-
-(defconst flycheck-hooks-alist
-  '(
-    ;; Handle events that may start automatic syntax checks
-    (after-save-hook        . flycheck-handle-save)
-    (after-change-functions . flycheck-handle-change)
-    ;; Handle events that may triggered pending deferred checks
-    (window-configuration-change-hook . flycheck-perform-deferred-syntax-check)
-    (post-command-hook                . flycheck-perform-deferred-syntax-check)
-    ;; Teardown Flycheck whenever the buffer state is about to get lost, to
-    ;; clean up temporary files and directories.
-    (kill-buffer-hook       . flycheck-teardown)
-    (change-major-mode-hook . flycheck-teardown)
-    (before-revert-hook     . flycheck-teardown)
-    ;; Update the error list if necessary
-    (post-command-hook . flycheck-error-list-update-source)
-    (post-command-hook . flycheck-error-list-highlight-errors)
-    ;; Display errors.  Show errors at point after commands (like movements) and
-    ;; when Emacs gets focus.  Cancel the display timer when Emacs looses focus
-    ;; (as there's no need to display errors if the user can't see them), and
-    ;; hide the error buffer (for large error messages) if necessary.  Note that
-    ;; the focus hooks only work on Emacs 24.4 and upwards, but since undefined
-    ;; hooks are perfectly ok we don't need a version guard here.  They'll just
-    ;; not work silently.
-    (post-command-hook . flycheck-display-error-at-point-soon)
-    (focus-in-hook     . flycheck-display-error-at-point-soon)
-    (focus-out-hook    . flycheck-cancel-error-display-error-at-point-timer)
-    (post-command-hook . flycheck-hide-error-buffer)
-    ;; Immediately show error popups when navigating to an error
-    (next-error-hook . flycheck-display-error-at-point))
-  "Hooks which Flycheck needs to hook in.
-
-The `car' of each pair is a hook variable, the `cdr' a function
-to be added or removed from the hook variable if Flycheck mode is
-enabled and disabled respectively.")
-
-;;;###autoload
-(define-minor-mode flycheck-mode
-  "Minor mode for on-the-fly syntax checking.
-
-When called interactively, toggle `flycheck-mode'.  With prefix
-ARG, enable `flycheck-mode' if ARG is positive, otherwise disable
-it.
-
-When called from Lisp, enable `flycheck-mode' if ARG is omitted,
-nil or positive.  If ARG is `toggle', toggle `flycheck-mode'.
-Otherwise behave as if called interactively.
-
-In `flycheck-mode' the buffer is automatically syntax-checked
-using the first suitable syntax checker from `flycheck-checkers'.
-Use `flycheck-select-checker' to select a checker for the current
-buffer manually.
-
-\\{flycheck-mode-map}"
-  :init-value nil
-  :keymap flycheck-mode-map
-  :lighter flycheck-mode-line
-  :after-hook (flycheck-buffer-automatically 'mode-enabled 'force-deferred)
-  (cond
-   (flycheck-mode
-    (flycheck-clear)
-
-    (pcase-dolist (`(,hook . ,fn) flycheck-hooks-alist)
-      (add-hook hook fn nil 'local))
-
-    (setq flycheck-old-next-error-function
-          (if flycheck-standard-error-navigation
-              next-error-function
-            :unset))
-    (when flycheck-standard-error-navigation
-      (setq next-error-function #'flycheck-next-error-function)))
-   (t
-    (unless (eq flycheck-old-next-error-function :unset)
-      (setq next-error-function flycheck-old-next-error-function))
-
-    (pcase-dolist (`(,hook . ,fn) flycheck-hooks-alist)
-      (remove-hook hook fn 'local))
-
-    (flycheck-teardown))))
-
-
-;;; Syntax checker selection for the current buffer
-(defun flycheck-get-checker-for-buffer ()
-  "Find the checker for the current buffer.
-
-Use the selected checker for the current buffer, if any,
-otherwise search for the best checker from `flycheck-checkers'.
-
-Return checker if there is a checker for the current buffer, or
-nil otherwise."
-  (if flycheck-checker
-      (when (flycheck-may-use-checker flycheck-checker)
-        flycheck-checker)
-    (seq-find #'flycheck-may-use-checker flycheck-checkers)))
-
-(defun flycheck-get-next-checker-for-buffer (checker)
-  "Get the checker to run after CHECKER for the current buffer."
-  (let ((next (seq-find #'flycheck-may-use-next-checker
-                        (flycheck-checker-get checker 'next-checkers))))
-    (when next
-      (if (symbolp next) next (cdr next)))))
-
-(defun flycheck-select-checker (checker)
-  "Select CHECKER for the current buffer.
-
-CHECKER is a syntax checker symbol (see `flycheck-checkers') or
-nil.  In the former case, use CHECKER for the current buffer,
-otherwise deselect the current syntax checker (if any) and use
-automatic checker selection via `flycheck-checkers'.
-
-If called interactively prompt for CHECKER.  With prefix arg
-deselect the current syntax checker and enable automatic
-selection again.
-
-Set `flycheck-checker' to CHECKER and automatically start a new
-syntax check if the syntax checker changed.
-
-CHECKER will be used, even if it is not contained in
-`flycheck-checkers', or if it is disabled via
-`flycheck-disabled-checkers'."
-  (interactive
-   (if current-prefix-arg
-       (list nil)
-     (list (read-flycheck-checker "Select checker: "
-                                  (flycheck-get-checker-for-buffer)))))
-  (when (not (eq checker flycheck-checker))
-    (unless (or (not checker) (flycheck-may-use-checker checker))
-      (flycheck-verify-checker checker)
-      (user-error "Can't use syntax checker %S in this buffer" checker))
-    (setq flycheck-checker checker)
-    (when flycheck-mode
-      (flycheck-buffer))))
-
-(defun flycheck-disable-checker (checker &optional enable)
-  "Interactively disable CHECKER for the current buffer.
-
-Interactively, prompt for a syntax checker to disable, and add
-the syntax checker to the buffer-local value of
-`flycheck-disabled-checkers'.
-
-With non-nil ENABLE or with prefix arg, prompt for a disabled
-syntax checker and re-enable it by removing it from the
-buffer-local value of `flycheck-disabled-checkers'."
-  (declare
-   (interactive-only "Directly set `flycheck-disabled-checkers' instead"))
-  (interactive
-   (let* ((enable current-prefix-arg)
-          (candidates (if enable flycheck-disabled-checkers flycheck-checkers))
-          (prompt (if enable "Enable syntax checker: "
-                    "Disable syntax checker: ")))
-     (when (and enable (not candidates))
-       (user-error "No syntax checkers disabled in this buffer"))
-     (list (read-flycheck-checker prompt nil nil candidates) enable)))
-  (unless checker
-    (user-error "No syntax checker given"))
-  (if enable
-      ;; We must use `remq' instead of `delq', because we must _not_ modify the
-      ;; list.  Otherwise we could potentially modify the global default value,
-      ;; in case the list is the global default.
-      (when (memq checker flycheck-disabled-checkers)
-        (setq flycheck-disabled-checkers
-              (remq checker flycheck-disabled-checkers))
-        (flycheck-buffer))
-    (unless (memq checker flycheck-disabled-checkers)
-      (push checker flycheck-disabled-checkers)
-      (flycheck-buffer))))
-
-
-;;; Syntax checks for the current buffer
-(defvar-local flycheck-current-syntax-check nil
-  "The current syntax check in the this buffer.")
-(put 'flycheck-current-syntax-check 'permanent-local t)
-
-(defun flycheck-start-current-syntax-check (checker)
-  "Start a syntax check in the current buffer with CHECKER.
-
-Set `flycheck-current-syntax-check' accordingly."
-  ;; Allocate the current syntax check *before* starting it.  This allows for
-  ;; synchronous checks, which call the status callback immediately in their
-  ;; start function.
-  (let* ((check
-          (flycheck-syntax-check-new
-           :buffer (current-buffer)
-           :checker checker
-           :context nil
-           :working-directory (flycheck-compute-working-directory checker)))
-         (callback (flycheck-buffer-status-callback check)))
-    (setq flycheck-current-syntax-check check)
-    (flycheck-report-status 'running)
-    (flycheck-syntax-check-start check callback)))
-
-(defun flycheck-running-p ()
-  "Determine whether a syntax check is running in the current buffer."
-  (not (null flycheck-current-syntax-check)))
-
-(defun flycheck-stop ()
-  "Stop any ongoing syntax check in the current buffer."
-  (when (flycheck-running-p)
-    (flycheck-syntax-check-interrupt flycheck-current-syntax-check)
-    ;; Remove the current syntax check, to reset Flycheck into a non-running
-    ;; state, and to make `flycheck-report-buffer-checker-status' ignore any
-    ;; status reports from the current syntax check.
-    (setq flycheck-current-syntax-check nil)
-    (flycheck-report-status 'interrupted)))
-
-(defun flycheck-buffer-status-callback (syntax-check)
-  "Create a status callback for SYNTAX-CHECK in the current buffer."
-  (lambda (&rest args)
-    (apply #'flycheck-report-buffer-checker-status
-           syntax-check args)))
-
-(defun flycheck-buffer ()
-  "Start checking syntax in the current buffer.
-
-Get a syntax checker for the current buffer with
-`flycheck-get-checker-for-buffer', and start it."
-  (interactive)
-  (flycheck-clean-deferred-check)
-  (if flycheck-mode
-      (unless (flycheck-running-p)
-        ;; Clear error list and mark all overlays for deletion.  We do not
-        ;; delete all overlays immediately to avoid excessive re-displays and
-        ;; flickering, if the same errors gets highlighted again after the check
-        ;; completed.
-        (run-hooks 'flycheck-before-syntax-check-hook)
-        (flycheck-clear-errors)
-        (flycheck-mark-all-overlays-for-deletion)
-        (condition-case err
-            (let* ((checker (flycheck-get-checker-for-buffer)))
-              (if checker
-                  (flycheck-start-current-syntax-check checker)
-                (flycheck-clear)
-                (flycheck-report-status 'no-checker)))
-          (error
-           (flycheck-report-failed-syntax-check)
-           (signal (car err) (cdr err)))))
-    (user-error "Flycheck mode disabled")))
-
-(defun flycheck-report-buffer-checker-status
-    (syntax-check status &optional data)
-  "In BUFFER, report a SYNTAX-CHECK STATUS with DATA.
-
-SYNTAX-CHECK is the `flycheck-syntax-check' which reported
-STATUS.  STATUS denotes the status of CHECKER, with an optional
-DATA.  STATUS may be one of the following symbols:
-
-`errored'
-     The syntax checker has errored.  DATA is an optional error
-     message.
-
-     This report finishes the current syntax check.
-
-`interrupted'
-     The syntax checker was interrupted.  DATA is ignored.
-
-     This report finishes the current syntax check.
-
-`finished'
-     The syntax checker has finished with a proper error report
-     for the current buffer.  DATA is the (potentially empty)
-     list of `flycheck-error' objects reported by the syntax
-     check.
-
-     This report finishes the current syntax check.
-
-`suspicious'
-     The syntax checker encountered a suspicious state, which the
-     user needs to be informed about.  DATA is an optional
-     message.
-
-A syntax checker _must_ report a status at least once with any
-symbol that finishes the current syntax checker.  Otherwise
-Flycheck gets stuck with the current syntax check.
-
-If CHECKER is not the currently used syntax checker in
-`flycheck-current-syntax-check', the status report is largely
-ignored.  Notably, any errors reported by the checker are
-discarded."
-  (let ((buffer (flycheck-syntax-check-buffer syntax-check)))
-    ;; Ignore the status report if the buffer is gone, or if this syntax check
-    ;; isn't the current one in buffer (which can happen if this is an old
-    ;; report of an interrupted syntax check, and a new syntax check was started
-    ;; since this check was interrupted)
-    (when (and (buffer-live-p buffer)
-               (eq syntax-check
-                   (buffer-local-value 'flycheck-current-syntax-check buffer)))
-      (with-current-buffer buffer
-        (let ((checker (flycheck-syntax-check-checker syntax-check)))
-          (pcase status
-            ((or `errored `interrupted)
-             (flycheck-report-failed-syntax-check status)
-             (when (eq status 'errored)
-               ;; In case of error, show the error message
-               (message "Error from syntax checker %s: %s"
-                        checker (or data "UNKNOWN!"))))
-            (`suspicious
-             (when flycheck-mode
-               (message "Suspicious state from syntax checker %s: %s"
-                        checker (or data "UNKNOWN!")))
-             (flycheck-report-status 'suspicious))
-            (`finished
-             (when flycheck-mode
-               ;; Only report errors from the checker if Flycheck Mode is
-               ;; still enabled.
-               (flycheck-finish-current-syntax-check
-                data
-                (flycheck-syntax-check-working-directory syntax-check))))
-            (_
-             (error "Unknown status %s from syntax checker %s"
-                    status checker))))))))
-
-(defun flycheck-finish-current-syntax-check (errors working-dir)
-  "Finish the current syntax-check in the current buffer with ERRORS.
-
-ERRORS is a list of `flycheck-error' objects reported by the
-current syntax check in `flycheck-current-syntax-check'.
-
-Report all ERRORS and potentially start any next syntax checkers.
-
-If the current syntax checker reported excessive errors, it is
-disabled via `flycheck-disable-excessive-checker' for subsequent
-syntax checks.
-
-Relative file names in ERRORS will be expanded relative to
-WORKING-DIR."
-  (let* ((syntax-check flycheck-current-syntax-check)
-         (checker (flycheck-syntax-check-checker syntax-check))
-         (errors (flycheck-relevant-errors
-                  (flycheck-fill-and-expand-error-file-names
-                   (flycheck-filter-errors
-                    (flycheck-assert-error-list-p errors) checker)
-                   working-dir))))
-    (unless (flycheck-disable-excessive-checker checker errors)
-      (flycheck-report-current-errors errors))
-    (let ((next-checker (flycheck-get-next-checker-for-buffer checker)))
-      (if next-checker
-          (flycheck-start-current-syntax-check next-checker)
-        (setq flycheck-current-syntax-check nil)
-        (flycheck-report-status 'finished)
-        ;; Delete overlays only after the very last checker has run, to avoid
-        ;; flickering on intermediate re-displays
-        (flycheck-delete-marked-overlays)
-        (flycheck-error-list-refresh)
-        (run-hooks 'flycheck-after-syntax-check-hook)
-        (when (eq (current-buffer) (window-buffer))
-          (flycheck-display-error-at-point))
-        ;; Immediately try to run any pending deferred syntax check, which
-        ;; were triggered by intermediate automatic check event, to make sure
-        ;; that we quickly refine outdated error information
-        (flycheck-perform-deferred-syntax-check)))))
-
-(defun flycheck-disable-excessive-checker (checker errors)
-  "Disable CHECKER if it reported excessive ERRORS.
-
-If ERRORS has more items than `flycheck-checker-error-threshold',
-add CHECKER to `flycheck-disabled-checkers', and show a warning.
-
-Return t when CHECKER was disabled, or nil otherwise."
-  (when (and flycheck-checker-error-threshold
-             (> (length errors) flycheck-checker-error-threshold))
-    ;; Disable CHECKER for this buffer (`flycheck-disabled-checkers' is a local
-    ;; variable).
-    (lwarn '(flycheck syntax-checker) :warning
-           "Syntax checker %s reported too many errors (%s) and is disabled."
-           checker (length errors))
-    (push checker flycheck-disabled-checkers)
-    t))
-
-(defun flycheck-clear (&optional shall-interrupt)
-  "Clear all errors in the current buffer.
-
-With prefix arg or SHALL-INTERRUPT non-nil, also interrupt the
-current syntax check."
-  (interactive "P")
-  (when shall-interrupt
-    (flycheck-stop))
-  (flycheck-delete-all-overlays)
-  (flycheck-clear-errors)
-  (flycheck-error-list-refresh)
-  (flycheck-hide-error-buffer))
-
-(defun flycheck-teardown ()
-  "Teardown Flycheck in the current buffer..
-
-Completely clear the whole Flycheck state.  Remove overlays, kill
-running checks, and empty all variables used by Flycheck."
-  (flycheck-safe-delete-temporaries)
-  (flycheck-stop)
-  (flycheck-clean-deferred-check)
-  (flycheck-clear)
-  (flycheck-cancel-error-display-error-at-point-timer))
-
-
-;;; Automatic syntax checking in a buffer
-(defun flycheck-may-check-automatically (&optional condition)
-  "Determine whether the buffer may be checked under CONDITION.
-
-Read-only buffers may never be checked automatically.
-
-If CONDITION is non-nil, determine whether syntax may checked
-automatically according to
-`flycheck-check-syntax-automatically'."
-  (and (not (or buffer-read-only (flycheck-ephemeral-buffer-p)))
-       (file-exists-p default-directory)
-       (or (not condition)
-           (memq condition flycheck-check-syntax-automatically))))
-
-(defun flycheck-buffer-automatically (&optional condition force-deferred)
-  "Automatically check syntax at CONDITION.
-
-Syntax is not checked if `flycheck-may-check-automatically'
-returns nil for CONDITION.
-
-The syntax check is deferred if FORCE-DEFERRED is non-nil, or if
-`flycheck-must-defer-check' returns t."
-  (when (and flycheck-mode (flycheck-may-check-automatically condition))
-    (if (or force-deferred (flycheck-must-defer-check))
-        (flycheck-buffer-deferred)
-      (with-demoted-errors "Error while checking syntax automatically: %S"
-        (flycheck-buffer)))))
-
-(defvar-local flycheck-idle-change-timer nil
-  "Timer to mark the idle time since the last change.")
-
-(defun flycheck-clear-idle-change-timer ()
-  "Clear the idle change timer."
-  (when flycheck-idle-change-timer
-    (cancel-timer flycheck-idle-change-timer)
-    (setq flycheck-idle-change-timer nil)))
-
-(defun flycheck-handle-change (beg end _len)
-  "Handle a buffer change between BEG and END.
-
-BEG and END mark the beginning and end of the change text.  _LEN
-is ignored.
-
-Start a syntax check if a new line has been inserted into the
-buffer."
-  ;; Save and restore the match data, as recommended in (elisp)Change Hooks
-  (save-match-data
-    (when flycheck-mode
-      ;; The buffer was changed, thus clear the idle timer
-      (flycheck-clear-idle-change-timer)
-      (if (string-match-p (rx "\n") (buffer-substring beg end))
-          (flycheck-buffer-automatically 'new-line 'force-deferred)
-        (setq flycheck-idle-change-timer
-              (run-at-time flycheck-idle-change-delay nil
-                           #'flycheck--handle-idle-change-in-buffer
-                           (current-buffer)))))))
-
-(defun flycheck--handle-idle-change-in-buffer (buffer)
-  "Handle an expired idle timer in BUFFER since the last change.
-This thin wrapper around `flycheck-handle-idle-change' is needed
-because some users override that function, as described in URL
-`https://github.com/flycheck/flycheck/pull/1305'."
-  (when (buffer-live-p buffer)
-    (with-current-buffer buffer
-      (flycheck-handle-idle-change))))
-
-(defun flycheck-handle-idle-change ()
-  "Handle an expired idle timer since the last change."
-  (flycheck-clear-idle-change-timer)
-  (flycheck-buffer-automatically 'idle-change))
-
-(defun flycheck-handle-save ()
-  "Handle a save of the buffer."
-  (flycheck-buffer-automatically 'save))
-
-
-;;; Deferred syntax checking
-(defvar-local flycheck-deferred-syntax-check nil
-  "If non-nil, a deferred syntax check is pending.")
-
-(defun flycheck-must-defer-check ()
-  "Determine whether the syntax check has to be deferred.
-
-A check has to be deferred if the buffer is not visible, or if the buffer is
-currently being reverted.
-
-Return t if the check is to be deferred, or nil otherwise."
-  (or (not (get-buffer-window))
-      ;; We defer the syntax check if Flycheck is already running, to
-      ;; immediately start a new syntax check after the current one finished,
-      ;; because the result of the current check will most likely be outdated by
-      ;; the time it is finished.
-      (flycheck-running-p)
-      ;; We must defer checks while a buffer is being reverted, to avoid race
-      ;; conditions while the buffer contents are being restored.
-      revert-buffer-in-progress-p))
-
-(defun flycheck-deferred-check-p ()
-  "Determine whether the current buffer has a deferred check.
-
-Return t if so, or nil otherwise."
-  flycheck-deferred-syntax-check)
-
-(defun flycheck-buffer-deferred ()
-  "Defer syntax check for the current buffer."
-  (setq flycheck-deferred-syntax-check t))
-
-(defun flycheck-clean-deferred-check ()
-  "Clean a deferred syntax checking state."
-  (setq flycheck-deferred-syntax-check nil))
-
-(defun flycheck-perform-deferred-syntax-check ()
-  "Perform the deferred syntax check."
-  (when (flycheck-deferred-check-p)
-    (flycheck-clean-deferred-check)
-    (flycheck-buffer-automatically)))
-
-
-;;; Syntax checking in all buffers
-(defun flycheck-may-enable-mode ()
-  "Determine whether Flycheck mode may be enabled.
-
-Flycheck mode is not enabled for
-
-- the minibuffer,
-- `fundamental-mode'
-- major modes whose `mode-class' property is `special',
-- ephemeral buffers (see `flycheck-ephemeral-buffer-p'),
-- encrypted buffers (see `flycheck-encrypted-buffer-p'),
-- remote files (see `file-remote-p'),
-- and major modes excluded by `flycheck-global-modes'.
-
-Return non-nil if Flycheck mode may be enabled, and nil
-otherwise."
-  (and (pcase flycheck-global-modes
-         ;; Whether `major-mode' is disallowed by `flycheck-global-modes'
-         (`t t)
-         (`(not . ,modes) (not (memq major-mode modes)))
-         (modes (memq major-mode modes)))
-       (not (or (minibufferp)
-                (eq major-mode 'fundamental-mode)
-                (eq (get major-mode 'mode-class) 'special)
-                (flycheck-ephemeral-buffer-p)
-                (flycheck-encrypted-buffer-p)
-                (and (buffer-file-name)
-                     (file-remote-p (buffer-file-name) 'method))))))
-
-(defun flycheck-mode-on-safe ()
-  "Enable command `flycheck-mode' if it is safe to do so.
-
-Command `flycheck-mode' is only enabled if
-`flycheck-may-enable-mode' returns a non-nil result."
-  (when (flycheck-may-enable-mode)
-    (flycheck-mode)))
-
-;;;###autoload
-(define-globalized-minor-mode global-flycheck-mode flycheck-mode
-  flycheck-mode-on-safe
-  :init-value nil
-  ;; Do not expose Global Flycheck Mode on customize interface, because the
-  ;; interaction between package.el and customize is currently broken.  See
-  ;; https://github.com/flycheck/flycheck/issues/595
-
-  ;; :require 'flycheck :group
-  ;; 'flycheck
-  )
-
-(defun flycheck-global-teardown ()
-  "Teardown Flycheck in all buffers.
-
-Completely clear the whole Flycheck state in all buffers, stop
-all running checks, remove all temporary files, and empty all
-variables of Flycheck."
-  (dolist (buffer (buffer-list))
-    (with-current-buffer buffer
-      (when flycheck-mode
-        (flycheck-teardown)))))
-
-;; Clean up the entire state of Flycheck when Emacs is killed, to get rid of any
-;; pending temporary files.
-(add-hook 'kill-emacs-hook #'flycheck-global-teardown)
-
-
-;;; Errors from syntax checks
-(cl-defstruct (flycheck-error
-               (:constructor flycheck-error-new)
-               (:constructor flycheck-error-new-at
-                             (line column
-                                   &optional level message
-                                   &key checker id group
-                                   (filename (buffer-file-name))
-                                   (buffer (current-buffer)))))
-  "Structure representing an error reported by a syntax checker.
-Slots:
-
-`buffer'
-     The buffer that the error was reported for, as buffer object.
-
-`checker'
-     The syntax checker which reported this error, as symbol.
-
-`filename'
-     The file name the error refers to, as string.
-
-`line'
-     The line number the error refers to, as number.
-
-`column' (optional)
-     The column number the error refers to, as number.
-
-     For compatibility with external tools and unlike Emacs
-     itself (e.g. in Compile Mode) Flycheck uses _1-based_
-     columns: The first character on a line is column 1.
-
-     Occasionally some tools try to proactively adapt to Emacs
-     and emit 0-based columns automatically.  In these cases, the
-     columns must be adjusted for Flycheck, see
-     `flycheck-increment-error-columns'.
-
-`message' (optional)
-     The error message as a string, if any.
-
-`level'
-     The error level, as either `info', `warning' or `error'.
-
-`id' (optional)
-     An ID identifying the kind of error.
-
-`group` (optional)
-     A symbol identifying the group the error belongs to.
-
-     Some tools will emit multiple errors that relate to the same
-     issue (e.g., lifetime errors in Rust).  All related errors
-     collected by a checker should have the same `group` value,
-     in order to be able to present them to the user.
-
-     See `flycheck-related-errors`."
-  buffer checker filename line column message level id group)
-
-(defmacro flycheck-error-with-buffer (err &rest forms)
-  "Switch to the buffer of ERR and evaluate FORMS.
-
-If the buffer of ERR is not live, FORMS are not evaluated."
-  (declare (indent 1) (debug t))
-  `(when (buffer-live-p (flycheck-error-buffer ,err))
-     (with-current-buffer (flycheck-error-buffer ,err)
-       ,@forms)))
-
-(defun flycheck-error-line-region (err)
-  "Get the line region of ERR.
-
-ERR is a Flycheck error whose region to get.
-
-Return a cons cell `(BEG . END)' where BEG is the first
-non-whitespace character on the line ERR refers to, and END the
-end of the line."
-  (flycheck-error-with-buffer err
-    (save-restriction
-      (save-excursion
-        (widen)
-        (goto-char (point-min))
-        (forward-line (- (flycheck-error-line err) 1))
-        ;; We are at the beginning of the line now, so move to the beginning of
-        ;; its indentation, similar to `back-to-indentation'
-        (let ((end (line-end-position)))
-          (skip-syntax-forward " " end)
-          (backward-prefix-chars)
-          ;; If the current line is empty, include the previous line break
-          ;; character(s) to have any region at all.  When called with 0,
-          ;; `line-end-position' gives us the end of the previous line
-          (cons (if (eolp) (line-end-position 0) (point)) end))))))
-
-(defun flycheck-error-column-region (err)
-  "Get the error column region of ERR.
-
-ERR is a Flycheck error whose region to get.
-
-Return a cons cell `(BEG . END)' where BEG is the character
-before the error column, and END the actual error column, or nil
-if ERR has no column."
-  (flycheck-error-with-buffer err
-    (save-restriction
-      (save-excursion
-        (-when-let (column (flycheck-error-column err))
-          (widen)
-          (goto-char (point-min))
-          (forward-line (- (flycheck-error-line err) 1))
-          (cond
-           ((eobp)                    ; Line beyond EOF
-            ;; If we are at the end of the file (i.e. the line was beyond the
-            ;; end of the file), use the very last column in the file.
-            (cons (- (point-max) 1) (point-max)))
-           ((eolp)                    ; Empty line
-            ;; If the target line is empty, there's no column to highlight on
-            ;; this line, so return the last column of the previous line.
-            (cons (line-end-position 0) (point)))
-           (t
-            ;; The end is either the column offset of the line, or the end of
-            ;; the line, if the column offset points beyond the end of the
-            ;; line.
-            (let ((end (min (+ (point) column)
-                            (+ (line-end-position) 1))))
-              (cons (- end 1) end)))))))))
-
-(defun flycheck-error-thing-region (thing err)
-  "Get the region of THING at the column of ERR.
-
-ERR is a Flycheck error whose region to get.  THING is a
-understood by `thing-at-point'.
-
-Return a cons cell `(BEG . END)' where BEG is the beginning of
-the THING at the error column, and END the end of the symbol.  If
-ERR has no error column, or if there is no THING at this column,
-return nil."
-  (-when-let (column (car (flycheck-error-column-region err)))
-    (flycheck-error-with-buffer err
-      (save-excursion
-        (save-restriction
-          (widen)
-          (goto-char column)
-          (bounds-of-thing-at-point thing))))))
-
-(defun flycheck-error-region-for-mode (err mode)
-  "Get the region of ERR for the highlighting MODE.
-
-ERR is a Flycheck error.  MODE may be one of the following symbols:
-
-`columns'
-     Get the column region of ERR, or the line region if ERR
-     has no column.
-
-`symbols'
-     Get the symbol region of ERR, or the result of `columns', if
-     there is no sexp at the error column.
-
-`sexps'
-     Get the sexp region of ERR, or the result of `columns', if
-     there is no sexp at the error column.
-
-`lines'
-     Return the line region.
-
-Otherwise signal an error."
-  ;; Ignoring fields speeds up calls to `line-end-position' in
-  ;; `flycheck-error-column-region' and `flycheck-error-line-region'.
-  (let ((inhibit-field-text-motion t))
-    (pcase mode
-      (`columns (or (flycheck-error-column-region err)
-                    (flycheck-error-line-region err)))
-      (`symbols (or (flycheck-error-thing-region 'symbol err)
-                    (flycheck-error-region-for-mode err 'columns)))
-      (`sexps (or (flycheck-error-thing-region 'sexp err)
-                  (flycheck-error-region-for-mode err 'columns)))
-      (`lines (flycheck-error-line-region err))
-      (_ (error "Invalid mode %S" mode)))))
-
-(defun flycheck-error-pos (err)
-  "Get the buffer position of ERR.
-
-ERR is a Flycheck error whose position to get.
-
-The error position is the error column, or the first
-non-whitespace character of the error line, if ERR has no error column."
-  (car (or (flycheck-error-column-region err)
-           (flycheck-error-line-region err))))
-
-(defun flycheck-error-format-message-and-id (err)
-  "Format the message and id of ERR as human-readable string."
-  (let ((id (flycheck-error-id err))
-        (filename (flycheck-error-filename err)))
-    (concat (when (and filename (not (equal filename (buffer-file-name))))
-              (format "In \"%s\":\n"
-                      (file-relative-name filename default-directory)))
-            (flycheck-error-message err)
-            (when id
-              (format " [%s]" id)))))
-
-(defun flycheck-error-format (err &optional with-file-name)
-  "Format ERR as human-readable string, optionally WITH-FILE-NAME.
-
-Return a string that represents the given ERR.  If WITH-FILE-NAME
-is given and non-nil, include the file-name as well, otherwise
-omit it."
-  (let* ((line (flycheck-error-line err))
-         (column (flycheck-error-column err))
-         (level (symbol-name (flycheck-error-level err)))
-         (checker (symbol-name (flycheck-error-checker err)))
-         (format `(,@(when with-file-name
-                       (list (flycheck-error-filename err) ":"))
-                   ,(number-to-string line) ":"
-                   ,@(when column (list (number-to-string column) ":"))
-                   ,level ": "
-                   ,(flycheck-error-format-message-and-id err)
-                   " (" ,checker ")")))
-    (apply #'concat format)))
-
-(defun flycheck-error-< (err1 err2)
-  "Determine whether ERR1 is less than ERR2 by location.
-
-Compare by line numbers and then by column numbers."
-  (let ((line1 (flycheck-error-line err1))
-        (line2 (flycheck-error-line err2)))
-    (if (= line1 line2)
-        (let ((col1 (flycheck-error-column err1))
-              (col2 (flycheck-error-column err2)))
-          (and col2
-               ;; Sort errors for the whole line first
-               (or (not col1) (< col1 col2))))
-      (< line1 line2))))
-
-(defun flycheck-error-level-< (err1 err2)
-  "Determine whether ERR1 is less than ERR2 by error level.
-
-Like `flycheck-error-<', but compares by error level severity
-first.  Levels of the same severity are compared by name."
-  (let* ((level1 (flycheck-error-level err1))
-         (level2 (flycheck-error-level err2))
-         (severity1 (flycheck-error-level-severity level1))
-         (severity2 (flycheck-error-level-severity level2)))
-    (cond
-     ((= severity1 severity2)
-      (if (string= level1 level2)
-          (flycheck-error-< err1 err2)
-        (string< level1 level2)))
-     (t (< severity1 severity2)))))
-
-(defun flycheck-assert-error-list-p (errors)
-  "Assert that all items in ERRORS are of `flycheck-error' type.
-
-Signal an error if any item in ERRORS is not a `flycheck-error'
-object, as by `flycheck-error-p'.  Otherwise return ERRORS
-again."
-  (unless (listp errors)
-    (signal 'wrong-type-argument (list 'listp errors)))
-  (dolist (err errors)
-    (unless (flycheck-error-p err)
-      (signal 'wrong-type-argument (list 'flycheck-error-p err))))
-  errors)
-
-
-;;; Errors in the current buffer
-(defvar-local flycheck-current-errors nil
-  "A list of all errors and warnings in the current buffer.")
-
-(defun flycheck-report-current-errors (errors)
-  "Report ERRORS in the current buffer.
-
-Add ERRORS to `flycheck-current-errors' and process each error
-with `flycheck-process-error-functions'."
-  (setq flycheck-current-errors (sort (append errors flycheck-current-errors)
-                                      #'flycheck-error-<))
-  (overlay-recenter (point-max))
-  (seq-do (lambda (err)
-            (run-hook-with-args-until-success 'flycheck-process-error-functions
-                                              err))
-          errors))
-
-(defun flycheck-clear-errors ()
-  "Remove all error information from the current buffer."
-  (setq flycheck-current-errors nil)
-  (flycheck-report-status 'not-checked))
-
-(defun flycheck-fill-and-expand-error-file-names (errors directory)
-  "Fill and expand file names in ERRORS relative to DIRECTORY.
-
-Expand all file names of ERRORS against DIRECTORY.  If the file
-name of an error is nil fill in the result of function
-`buffer-file-name' in the current buffer.
-
-Return ERRORS, modified in-place."
-  (seq-do (lambda (err)
-            (setf (flycheck-error-filename err)
-                  (-if-let (filename (flycheck-error-filename err))
-                      (expand-file-name filename directory)
-                    (buffer-file-name))))
-          errors)
-  errors)
-
-(defun flycheck-relevant-error-other-file-p (err)
-  "Determine whether ERR is a relevant error for another file."
-  (let ((file-name (flycheck-error-filename err)))
-    (and file-name
-         (or (null buffer-file-name)
-             (not (flycheck-same-files-p buffer-file-name file-name)))
-         (eq 'error (flycheck-error-level err)))))
-
-(defun flycheck-relevant-error-p (err)
-  "Determine whether ERR is relevant for the current buffer.
-
-Return t if ERR may be shown for the current buffer, or nil
-otherwise."
-  (flycheck-error-with-buffer err
-    (let ((file-name (flycheck-error-filename err))
-          (message (flycheck-error-message err)))
-      (and
-       (or
-        ;; Neither the error nor buffer have a file name
-        (and (not file-name) (not buffer-file-name))
-        ;; Both have files, and they match
-        (and buffer-file-name file-name
-             (flycheck-same-files-p file-name buffer-file-name))
-        ;; This is a significant error from another file
-        (flycheck-relevant-error-other-file-p err))
-       message
-       (not (string-empty-p message))
-       (flycheck-error-line err)))))
-
-(defun flycheck-relevant-errors (errors)
-  "Filter the relevant errors from ERRORS.
-
-Return a list of all errors that are relevant for their
-corresponding buffer."
-  (seq-filter #'flycheck-relevant-error-p errors))
-
-(defun flycheck-related-errors (err &optional error-set)
-  "Get all the errors that are in the same group as ERR.
-
-Return a list of all errors (from ERROR-SET) that have the same
-`flycheck-error-group' as ERR, including ERR itself.
-
-If ERROR-SET is nil, `flycheck-current-errors' is used instead."
-  (let ((group (flycheck-error-group err))
-        (checker (flycheck-error-checker err)))
-    (if group
-        (seq-filter (lambda (e)
-                      (and (eq (flycheck-error-checker e) checker)
-                           (eq (flycheck-error-group e) group)))
-                    (or error-set flycheck-current-errors))
-      (list err))))
-
-
-;;; Status reporting for the current buffer
-(defvar-local flycheck-last-status-change 'not-checked
-  "The last status change in the current buffer.")
-
-(defun flycheck-report-failed-syntax-check (&optional status)
-  "Report a failed Flycheck syntax check with STATUS.
-
-STATUS is a status symbol for `flycheck-report-status',
-defaulting to `errored'.
-
-Clear Flycheck state, run `flycheck-syntax-check-failed-hook' and
-report an error STATUS."
-  (flycheck-clear)
-  (setq flycheck-current-syntax-check nil)
-  (run-hooks 'flycheck-syntax-check-failed-hook)
-  (flycheck-report-status (or status 'errored)))
-
-(defun flycheck-report-status (status)
-  "Report Flycheck STATUS.
-
-STATUS is one of the following symbols:
-
-`not-checked'
-     The current buffer was not checked.
-
-`no-checker'
-     Automatic syntax checker selection did not find a suitable
-     syntax checker.
-
-`running'
-     A syntax check is now running in the current buffer.
-
-`errored'
-     The current syntax check has errored.
-
-`finished'
-     The current syntax check was finished normally.
-
-`interrupted'
-     The current syntax check was interrupted.
-
-`suspicious'
-     The last syntax check had a suspicious result.
-
-Set `flycheck-last-status-change' and call
-`flycheck-status-changed-functions' with STATUS.  Afterwards
-refresh the mode line."
-  (setq flycheck-last-status-change status)
-  (run-hook-with-args 'flycheck-status-changed-functions status)
-  (force-mode-line-update))
-
-(defun flycheck-mode-line-status-text (&optional status)
-  "Get a text describing STATUS for use in the mode line.
-
-STATUS defaults to `flycheck-last-status-change' if omitted or
-nil."
-  (let ((text (pcase (or status flycheck-last-status-change)
-                (`not-checked "")
-                (`no-checker "-")
-                (`running "*")
-                (`errored "!")
-                (`finished
-                 (let-alist (flycheck-count-errors flycheck-current-errors)
-                   (if (or .error .warning)
-                       (format ":%s/%s" (or .error 0) (or .warning 0))
-                     "")))
-                (`interrupted ".")
-                (`suspicious "?"))))
-    (concat " " flycheck-mode-line-prefix text)))
-
-
-;;; Error levels
-;;;###autoload
-(defun flycheck-define-error-level (level &rest properties)
-  "Define a new error LEVEL with PROPERTIES.
-
-The following PROPERTIES constitute an error level:
-
-`:severity SEVERITY'
-     A number denoting the severity of this level.  The higher
-     the number, the more severe is this level compared to other
-     levels.  Defaults to 0.
-
-     The severity is used by `flycheck-error-level-<' to
-     determine the ordering of errors according to their levels.
-
-`:compilation-level LEVEL'
-
-     A number indicating the broad class of messages that errors
-     at this level belong to: one of 0 (info), 1 (warning), or
-     2 or nil (error).  Defaults to nil.
-
-     This is used by `flycheck-checker-pattern-to-error-regexp'
-     to map error levels into `compilation-mode''s hierarchy and
-     to get proper highlighting of errors in `compilation-mode'.
-
-`:overlay-category CATEGORY'
-     A symbol denoting the overlay category to use for error
-     highlight overlays for this level.  See Info
-     node `(elisp)Overlay Properties' for more information about
-     overlay categories.
-
-     A category for an error level overlay should at least define
-     the `face' property, for error highlighting.  Another useful
-     property for error level categories is `priority', to
-     influence the stacking of multiple error level overlays.
-
-`:fringe-bitmap BITMAP'
-     A fringe bitmap symbol denoting the bitmap to use for fringe
-     indicators for this level.  See Info node `(elisp)Fringe
-     Bitmaps' for more information about fringe bitmaps,
-     including a list of built-in fringe bitmaps.
-
-`:fringe-face FACE'
-     A face symbol denoting the face to use for fringe indicators
-     for this level.
-
-`:error-list-face FACE'
-     A face symbol denoting the face to use for messages of this
-     level in the error list.  See `flycheck-list-errors'."
-  (declare (indent 1))
-  (setf (get level 'flycheck-error-level) t)
-  (setf (get level 'flycheck-error-severity)
-        (or (plist-get properties :severity) 0))
-  (setf (get level 'flycheck-compilation-level)
-        (plist-get properties :compilation-level))
-  (setf (get level 'flycheck-overlay-category)
-        (plist-get properties :overlay-category))
-  (setf (get level 'flycheck-fringe-bitmap-double-arrow)
-        (plist-get properties :fringe-bitmap))
-  (setf (get level 'flycheck-fringe-face)
-        (plist-get properties :fringe-face))
-  (setf (get level 'flycheck-error-list-face)
-        (plist-get properties :error-list-face)))
-
-(defun flycheck-error-level-p (level)
-  "Determine whether LEVEL is a Flycheck error level."
-  (get level 'flycheck-error-level))
-
-(defun flycheck-error-level-severity (level)
-  "Get the numeric severity of LEVEL."
-  (or (get level 'flycheck-error-severity) 0))
-
-(defun flycheck-error-level-compilation-level (level)
-  "Get the compilation level for LEVEL."
-  (get level 'flycheck-compilation-level))
-
-(defun flycheck-error-level-overlay-category (level)
-  "Get the overlay category for LEVEL."
-  (get level 'flycheck-overlay-category))
-
-(defun flycheck-error-level-fringe-bitmap (level)
-  "Get the fringe bitmap for LEVEL."
-  (get level 'flycheck-fringe-bitmap-double-arrow))
-
-(defun flycheck-error-level-fringe-face (level)
-  "Get the fringe face for LEVEL."
-  (get level 'flycheck-fringe-face))
-
-(defun flycheck-error-level-error-list-face (level)
-  "Get the error list face for LEVEL."
-  (get level 'flycheck-error-list-face))
-
-(defun flycheck-error-level-make-fringe-icon (level side)
-  "Create the fringe icon for LEVEL at SIDE.
-
-Return a propertized string that shows a fringe bitmap according
-to LEVEL and the given fringe SIDE.
-
-LEVEL is a Flycheck error level defined with
-`flycheck-define-error-level', and SIDE is either `left-fringe'
-or `right-fringe'.
-
-Return a propertized string representing the fringe icon,
-intended for use as `before-string' of an overlay to actually
-show the icon."
-  (unless (memq side '(left-fringe right-fringe))
-    (error "Invalid fringe side: %S" side))
-  (propertize "!" 'display
-              (list side
-                    (flycheck-error-level-fringe-bitmap level)
-                    (flycheck-error-level-fringe-face level))))
-
-
-;;; Built-in error levels
-(when (fboundp 'define-fringe-bitmap)
-  (define-fringe-bitmap 'flycheck-fringe-bitmap-double-arrow
-    (vector #b00000000
-            #b00000000
-            #b00000000
-            #b00000000
-            #b00000000
-            #b10011000
-            #b01101100
-            #b00110110
-            #b00011011
-            #b00110110
-            #b01101100
-            #b10011000
-            #b00000000
-            #b00000000
-            #b00000000
-            #b00000000
-            #b00000000)))
-
-(setf (get 'flycheck-error-overlay 'face) 'flycheck-error)
-(setf (get 'flycheck-error-overlay 'priority) 110)
-
-(flycheck-define-error-level 'error
-  :severity 100
-  :compilation-level 2
-  :overlay-category 'flycheck-error-overlay
-  :fringe-bitmap 'flycheck-fringe-bitmap-double-arrow
-  :fringe-face 'flycheck-fringe-error
-  :error-list-face 'flycheck-error-list-error)
-
-(setf (get 'flycheck-warning-overlay 'face) 'flycheck-warning)
-(setf (get 'flycheck-warning-overlay 'priority) 100)
-
-(flycheck-define-error-level 'warning
-  :severity 10
-  :compilation-level 1
-  :overlay-category 'flycheck-warning-overlay
-  :fringe-bitmap 'flycheck-fringe-bitmap-double-arrow
-  :fringe-face 'flycheck-fringe-warning
-  :error-list-face 'flycheck-error-list-warning)
-
-(setf (get 'flycheck-info-overlay 'face) 'flycheck-info)
-(setf (get 'flycheck-info-overlay 'priority) 90)
-
-(flycheck-define-error-level 'info
-  :severity -10
-  :compilation-level 0
-  :overlay-category 'flycheck-info-overlay
-  :fringe-bitmap 'flycheck-fringe-bitmap-double-arrow
-  :fringe-face 'flycheck-fringe-info
-  :error-list-face 'flycheck-error-list-info)
-
-
-;;; Error filtering
-(defun flycheck-filter-errors (errors checker)
-  "Filter ERRORS from CHECKER.
-
-Apply the error filter of CHECKER to ERRORs and return the
-result.  If CHECKER has no error filter, fall back to
-`flycheck-sanitize-errors'."
-  (let ((filter (or (flycheck-checker-get checker 'error-filter)
-                    #'flycheck-sanitize-errors)))
-    (funcall filter errors)))
-
-(defun flycheck-sanitize-errors (errors)
-  "Sanitize ERRORS.
-
-Sanitize ERRORS by trimming leading and trailing whitespace in
-all error messages, and by replacing 0 columns and empty error
-messages with nil.
-
-Returns sanitized ERRORS."
-  (dolist (err errors)
-    (flycheck-error-with-buffer err
-      (let ((message (flycheck-error-message err))
-            (column (flycheck-error-column err))
-            (id (flycheck-error-id err)))
-        (when message
-          (setq message (string-trim message))
-          (setf (flycheck-error-message err)
-                (if (string-empty-p message) nil message)))
-        (when (and id (string-empty-p id))
-          (setf (flycheck-error-id err) nil))
-        (when (eq column 0)
-          (setf (flycheck-error-column err) nil)))))
-  errors)
-
-(defun flycheck-remove-error-file-names (file-name errors)
-  "Remove matching FILE-NAME from ERRORS.
-
-Use as `:error-filter' for syntax checkers that output faulty
-filenames.  Flycheck will later fill in the buffer file name.
-
-Return ERRORS."
-  (seq-do (lambda (err)
-            (when (and (flycheck-error-filename err)
-                       (string= (flycheck-error-filename err) file-name))
-              (setf (flycheck-error-filename err) nil)))
-          errors)
-  errors)
-
-(defun flycheck-increment-error-columns (errors &optional offset)
-  "Increment all columns of ERRORS by OFFSET.
-
-Use this as `:error-filter' if a syntax checker outputs 0-based
-columns."
-  (seq-do (lambda (err)
-            (let ((column (flycheck-error-column err)))
-              (when column
-                (setf (flycheck-error-column err)
-                      (+ column (or offset 1))))))
-          errors)
-  errors)
-
-(defun flycheck-collapse-error-message-whitespace (errors)
-  "Collapse whitespace in all messages of ERRORS.
-
-Return ERRORS."
-  (dolist (err errors)
-    (-when-let (message (flycheck-error-message err))
-      (setf (flycheck-error-message err)
-            (replace-regexp-in-string (rx (one-or-more (any space "\n" "\r")))
-                                      " " message 'fixed-case 'literal))))
-  errors)
-
-(defun flycheck-dedent-error-messages (errors)
-  "Dedent all messages of ERRORS.
-
-For each error in ERRORS, determine the indentation offset from
-the leading whitespace of the first line, and dedent all further
-lines accordingly.
-
-Return ERRORS, with in-place modifications."
-  (dolist (err errors)
-    (-when-let (message (flycheck-error-message err))
-      (with-temp-buffer
-        (insert message)
-        ;; Determine the indentation offset
-        (goto-char (point-min))
-        (back-to-indentation)
-        (let* ((indent-offset (- (point) (point-min))))
-          ;; Now iterate over all lines and dedent each according to
-          ;; `indent-offset'
-          (while (not (eobp))
-            (back-to-indentation)
-            ;; If the current line starts with sufficient whitespace, delete the
-            ;; indendation offset.  Otherwise keep the line intact, as we might
-            ;; loose valuable information
-            (when (>= (- (point) (line-beginning-position)) indent-offset)
-              (delete-char (- indent-offset)))
-            (forward-line 1)))
-        (delete-trailing-whitespace (point-min) (point-max))
-        (setf (flycheck-error-message err)
-              (buffer-substring-no-properties (point-min) (point-max))))))
-  errors)
-
-(defun flycheck-fold-include-levels (errors sentinel-message)
-  "Fold levels of ERRORS from included files.
-
-ERRORS is a list of `flycheck-error' objects.  SENTINEL-MESSAGE
-is a regular expression matched against the error message to
-determine whether the errror denotes errors from an included
-file.  Alternatively, it is a function that is given an error and
-shall return non-nil, if the error denotes errors from an
-included file."
-  (unless (or (stringp sentinel-message) (functionp sentinel-message))
-    (error "Sentinel must be string or function: %S" sentinel-message))
-  (let ((sentinel (if (functionp sentinel-message)
-                      sentinel-message
-                    (lambda (err)
-                      (string-match-p sentinel-message
-                                      (flycheck-error-message err)))))
-        (remaining-errors errors))
-    (while remaining-errors
-      (let* ((current-error (pop remaining-errors)))
-        (when (funcall sentinel current-error)
-          ;; We found an error denoting errors in the included file:
-          ;; 1. process all subsequent errors until faulty include file is found
-          ;; 2. process again all subsequent errors until an error has the
-          ;;    current file name again
-          ;; 3. find the most severe error level
-          (let ((current-filename (flycheck-error-filename current-error))
-                (current-level nil)
-                (faulty-include-filename nil)
-                (filename nil)
-                (done (null remaining-errors)))
-
-            (while (not done)
-              (setq filename (flycheck-error-filename (car remaining-errors)))
-              (unless faulty-include-filename
-                (unless (string= filename current-filename)
-                  (setq faulty-include-filename filename)))
-
-              (let* ((error-in-include (pop remaining-errors))
-                     (in-include-level (flycheck-error-level error-in-include)))
-                (unless (funcall sentinel error-in-include)
-                  ;; Ignore nested "included file" errors, we are only
-                  ;; interested in real errors because these define our level
-                  (when (or (not current-level)
-                            (> (flycheck-error-level-severity in-include-level)
-                               (flycheck-error-level-severity current-level)))
-                    (setq current-level in-include-level))))
-
-              (setq done (or (null remaining-errors)
-                             (and faulty-include-filename
-                                  (string= filename current-filename)))))
-
-            (setf (flycheck-error-level current-error) current-level
-                  (flycheck-error-message current-error)
-                  (format "In include %s" faulty-include-filename))))))
-    errors))
-
-(defun flycheck-dequalify-error-ids (errors)
-  "De-qualify error ids in ERRORS.
-
-Remove all qualifications from error ids in ERRORS, by stripping
-all leading dotted components from error IDs.  For instance, if
-the error ID is com.foo.E100, replace it with E100.
-
-This error filter is mainly useful to simplify error IDs obtained
-from parsing Checkstyle XML, which frequently has very verbose
-IDs, that include the name of the tool."
-  (seq-do (lambda (err)
-            (let ((id (flycheck-error-id err)))
-              (when id
-                (setf (flycheck-error-id err)
-                      (replace-regexp-in-string
-                       (rx string-start
-                           (group
-                            (optional (zero-or-more not-newline) "."))
-                           (one-or-more (not (any ".")))
-                           string-end)
-                       "" id 'fixedcase 'literal 1)))))
-          errors)
-  errors)
-
-(defun flycheck-remove-error-ids (errors)
-  "Remove all error ids from ERRORS."
-  (seq-do (lambda (err) (setf (flycheck-error-id err) nil)) errors)
-  errors)
-
-(defun flycheck-fill-empty-line-numbers (errors)
-  "Set ERRORS without lines to line 0.
-
-Use as `:error-filter' for syntax checkers that output errors
-without line numbers.
-
-Return ERRORS."
-  (seq-do (lambda (err)
-            (unless (flycheck-error-line err)
-              (setf (flycheck-error-line err) 0)))
-          errors)
-  errors)
-
-
-;;; Error analysis
-(defun flycheck-count-errors (errors)
-  "Count the number of ERRORS, grouped by level..
-
-Return an alist, where each ITEM is a cons cell whose `car' is an
-error level, and whose `cdr' is the number of errors of that
-level."
-  (let (counts-by-level)
-    (dolist (err errors)
-      (let* ((level (flycheck-error-level err))
-             (item (assq level counts-by-level)))
-        (if item
-            (cl-incf (cdr item))
-          (push (cons level 1) counts-by-level))))
-    counts-by-level))
-
-(defun flycheck-has-max-errors-p (errors level)
-  "Check if there is no error in ERRORS more severe than LEVEL."
-  (let ((severity (flycheck-error-level-severity level)))
-    (seq-every-p (lambda (e) (<= (flycheck-error-level-severity
-                                  (flycheck-error-level e))
-                                 severity))
-                 errors)))
-
-(defun flycheck-has-max-current-errors-p (level)
-  "Check if there is no current error more severe than LEVEL."
-  (flycheck-has-max-errors-p flycheck-current-errors level))
-
-(defun flycheck-has-errors-p (errors level)
-  "Determine if there are any ERRORS with LEVEL."
-  (seq-some (lambda (e) (eq (flycheck-error-level e) level)) errors))
-
-(defun flycheck-has-current-errors-p (&optional level)
-  "Determine if the current buffer has errors with LEVEL.
-
-If LEVEL is omitted if the current buffer has any errors at all."
-  (if level
-      (flycheck-has-errors-p flycheck-current-errors level)
-    (and flycheck-current-errors t)))
-
-
-;;; Error overlays in the current buffer
-(defun flycheck-add-overlay (err)
-  "Add overlay for ERR.
-
-Return the created overlay."
-  ;; We must have a proper error region for the sake of fringe indication,
-  ;; error display and error navigation, even if the highlighting is disabled.
-  ;; We erase the highlighting later on in this case
-  (pcase-let* ((`(,beg . ,end)
-                (if (flycheck-relevant-error-other-file-p err)
-                    ;; Display overlays for other-file errors on the first line
-                    (cons (point-min)
-                          (save-excursion (goto-char (point-min))
-                                          (point-at-eol)))
-                  (flycheck-error-region-for-mode
-                   err (or flycheck-highlighting-mode 'lines))))
-               (overlay (make-overlay beg end))
-               (level (flycheck-error-level err))
-               (category (flycheck-error-level-overlay-category level)))
-    (unless (flycheck-error-level-p level)
-      (error "Undefined error level: %S" level))
-    (setf (overlay-get overlay 'flycheck-overlay) t)
-    (setf (overlay-get overlay 'flycheck-error) err)
-    (setf (overlay-get overlay 'category) category)
-    (unless flycheck-highlighting-mode
-      ;; Erase the highlighting from the overlay if requested by the user
-      (setf (overlay-get overlay 'face) nil))
-    (when flycheck-indication-mode
-      (setf (overlay-get overlay 'before-string)
-            (flycheck-error-level-make-fringe-icon
-             level flycheck-indication-mode)))
-    (setf (overlay-get overlay 'help-echo) #'flycheck-help-echo)
-    overlay))
-
-(defun flycheck-help-echo (_window object pos)
-  "Construct a tooltip message.
-
-Most of the actual work is done by calling
-`flycheck-help-echo-function' with the appropriate list of
-errors.  Arguments WINDOW, OBJECT and POS are as described in
-info node `(elisp)Special properties', as this function is
-intended to be used as the 'help-echo property of flycheck error
-overlays."
-  (-when-let (buf (cond ((bufferp object) object)
-                        ((overlayp object) (overlay-buffer object))))
-    (with-current-buffer buf
-      (-when-let* ((fn flycheck-help-echo-function)
-                   (errs (flycheck-overlay-errors-at pos)))
-        (funcall fn errs)))))
-
-(defun flycheck-help-echo-all-error-messages (errs)
-  "Concatenate error messages and ids from ERRS."
-  (mapconcat
-   (lambda (err)
-     (when err
-       (if (flycheck-error-message err)
-           (flycheck-error-format-message-and-id err)
-         (format "Unknown %s" (flycheck-error-level err)))))
-   (reverse errs) "\n\n"))
-
-(defun flycheck-filter-overlays (overlays)
-  "Get all Flycheck overlays from OVERLAYS."
-  (seq-filter (lambda (o) (overlay-get o 'flycheck-overlay)) overlays))
-
-(defun flycheck-overlays-at (pos)
-  "Get all Flycheck overlays at POS."
-  (flycheck-filter-overlays (overlays-at pos)))
-
-(defun flycheck-overlays-in (beg end)
-  "Get all Flycheck overlays between BEG and END."
-  (flycheck-filter-overlays (overlays-in beg end)))
-
-(defun flycheck-overlay-errors-at (pos)
-  "Return a list of all flycheck errors overlayed at POS."
-  (seq-map (lambda (o) (overlay-get o 'flycheck-error))
-           (flycheck-overlays-at pos)))
-
-(defun flycheck-overlay-errors-in (beg end)
-  "Return a list of all flycheck errors overlayed between BEG and END."
-  (seq-map (lambda (o) (overlay-get o 'flycheck-error))
-           (flycheck-overlays-in beg end)))
-
-(defvar-local flycheck-overlays-to-delete nil
-  "Overlays mark for deletion after all syntax checks completed.")
-(put 'flycheck-overlays-to-delete 'permanent-local t)
-
-(defun flycheck-delete-all-overlays ()
-  "Remove all flycheck overlays in the current buffer."
-  (overlay-recenter (point-max))
-  (flycheck-delete-marked-overlays)
-  (save-restriction
-    (widen)
-    (seq-do #'delete-overlay (flycheck-overlays-in (point-min) (point-max)))))
-
-(defun flycheck-mark-all-overlays-for-deletion ()
-  "Mark all current overlays for deletion."
-  (setq flycheck-overlays-to-delete
-        (append (flycheck-overlays-in (point-min) (point-max))
-                flycheck-overlays-to-delete)))
-
-(defun flycheck-delete-marked-overlays ()
-  "Delete all overlays marked for deletion."
-  (overlay-recenter (point-max))
-  (seq-do #'delete-overlay flycheck-overlays-to-delete)
-  (setq flycheck-overlays-to-delete nil))
-
-
-;;; Error navigation in the current buffer
-(defun flycheck-error-level-interesting-at-pos-p (pos)
-  "Check if error severity at POS passes `flycheck-error-level-interesting-p'."
-  (flycheck-error-level-interesting-p (get-char-property pos 'flycheck-error)))
-
-(defun flycheck-error-level-interesting-p (err)
-  "Check if ERR severity is >= `flycheck-navigation-minimum-level'."
-  (when (flycheck-error-p err)
-    (-if-let (min-level flycheck-navigation-minimum-level)
-        (<= (flycheck-error-level-severity min-level)
-            (flycheck-error-level-severity (flycheck-error-level err)))
-      t)))
-
-(defun flycheck-next-error-pos (n &optional reset)
-  "Get the position of the N-th next error.
-
-With negative N, get the position of the (-N)-th previous error
-instead.  With non-nil RESET, search from `point-min', otherwise
-search from the current point.
-
-Return the position of the next or previous error, or nil if
-there is none."
-  (let ((n (or n 1))
-        (pos (if reset (point-min) (point))))
-    (if (>= n 0)
-        ;; Search forwards
-        (while (and pos (> n 0))
-          (setq n (1- n))
-          (when (get-char-property pos 'flycheck-error)
-            ;; Move beyond from the current error if any
-            (setq pos (next-single-char-property-change pos 'flycheck-error)))
-          (while (not (or (= pos (point-max))
-                          (flycheck-error-level-interesting-at-pos-p pos)))
-            ;; Scan for the next error
-            (setq pos (next-single-char-property-change pos 'flycheck-error)))
-          (when (and (= pos (point-max))
-                     (not (flycheck-error-level-interesting-at-pos-p pos)))
-            ;; If we reached the end of the buffer, but no error, we didn't find
-            ;; any
-            (setq pos nil)))
-      ;; Search backwards
-      (while (and pos (< n 0))
-        (setq n (1+ n))
-        ;; Loop until we find an error.  We need to check the position *before*
-        ;; the current one, because `previous-single-char-property-change'
-        ;; always moves to the position *of* the change.
-        (while (not (or (= pos (point-min))
-                        (flycheck-error-level-interesting-at-pos-p (1- pos))))
-          (setq pos (previous-single-char-property-change pos 'flycheck-error)))
-        (when (and (= pos (point-min))
-                   (not (flycheck-error-level-interesting-at-pos-p pos)))
-          ;; We didn't find any error.
-          (setq pos nil))
-        (when pos
-          ;; We found an error, so move to its beginning
-          (setq pos (previous-single-char-property-change pos
-                                                          'flycheck-error)))))
-    pos))
-
-(defun flycheck-next-error-function (n reset)
-  "Visit the N-th error from the current point.
-
-N is the number of errors to advance by, where a negative N
-advances backwards.  With non-nil RESET, advance from the
-beginning of the buffer, otherwise advance from the current
-position.
-
-Intended for use with `next-error-function'."
-  (-if-let* ((pos (flycheck-next-error-pos n reset))
-             (err (get-char-property pos 'flycheck-error)))
-      (flycheck-jump-to-error err)
-    (user-error "No more Flycheck errors")))
-
-(defun flycheck-next-error (&optional n reset)
-  "Visit the N-th error from the current point.
-
-N is the number of errors to advance by, where a negative N
-advances backwards.  With non-nil RESET, advance from the
-beginning of the buffer, otherwise advance from the current
-position."
-  (interactive "P")
-  (when (consp n)
-    ;; Universal prefix argument means reset
-    (setq reset t n nil))
-  (flycheck-next-error-function n reset)
-  (flycheck-display-error-at-point))
-
-(defun flycheck-previous-error (&optional n)
-  "Visit the N-th previous error.
-
-If given, N specifies the number of errors to move backwards by.
-If N is negative, move forwards instead."
-  (interactive "P")
-  (flycheck-next-error (- (or n 1))))
-
-(defun flycheck-first-error (&optional n)
-  "Visit the N-th error from beginning of the buffer.
-
-If given, N specifies the number of errors to move forward from
-the beginning of the buffer."
-  (interactive "P")
-  (flycheck-next-error n 'reset))
-
-
-;;; Listing errors in buffers
-(defconst flycheck-error-list-buffer "*Flycheck errors*"
-  "The name of the buffer to show error lists.")
-
-(defvar flycheck-error-list-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map (kbd "f") #'flycheck-error-list-set-filter)
-    (define-key map (kbd "F") #'flycheck-error-list-reset-filter)
-    (define-key map (kbd "n") #'flycheck-error-list-next-error)
-    (define-key map (kbd "p") #'flycheck-error-list-previous-error)
-    (define-key map (kbd "g") #'flycheck-error-list-check-source)
-    (define-key map (kbd "e") #'flycheck-error-list-explain-error)
-    (define-key map (kbd "RET") #'flycheck-error-list-goto-error)
-    map)
-  "The keymap of `flycheck-error-list-mode'.")
-
-(defun flycheck-error-list-make-last-column (message checker)
-  "Compute contents of the last error list cell.
-
-MESSAGE and CHECKER are displayed in a single column to allow the
-message to stretch arbitrarily far."
-  (let ((checker-name (propertize (symbol-name checker)
-                                  'face 'flycheck-error-list-checker-name)))
-    (format "%s (%s)" message checker-name)))
-
-(defconst flycheck-error-list-format
-  `[("File" 6)
-    ("Line" 5 flycheck-error-list-entry-< :right-align t)
-    ("Col" 3 nil :right-align t)
-    ("Level" 8 flycheck-error-list-entry-level-<)
-    ("ID" 6 t)
-    (,(flycheck-error-list-make-last-column "Message" 'Checker) 0 t)]
-  "Table format for the error list.")
-
-(defconst flycheck-error-list-padding 1
-  "Padding used in error list.")
-
-(defconst flycheck--error-list-msg-offset
-  (seq-reduce
-   (lambda (offset fmt)
-     (pcase-let* ((`(,_ ,width ,_ . ,props) fmt)
-                  (padding (or (plist-get props :pad-right) 1)))
-       (+ offset width padding)))
-   (seq-subseq flycheck-error-list-format 0 -1)
-   flycheck-error-list-padding)
-  "Amount of space to use in `flycheck-flush-multiline-message'.")
-
-(define-derived-mode flycheck-error-list-mode tabulated-list-mode
-  "Flycheck errors"
-  "Major mode for listing Flycheck errors.
-
-\\{flycheck-error-list-mode-map}"
-  (setq tabulated-list-format flycheck-error-list-format
-        ;; Sort by location initially
-        tabulated-list-sort-key (cons "Line" nil)
-        tabulated-list-padding flycheck-error-list-padding
-        tabulated-list-entries #'flycheck-error-list-entries
-        ;; `revert-buffer' updates the mode line for us, so all we need to do is
-        ;; set the corresponding mode line construct.
-        mode-line-buffer-identification flycheck-error-list-mode-line)
-  ;; Guard `truncate-string-ellipsis' for Emacs 24.
-  ;; TODO: Remove when dropping Emacs 24 compatibility
-  (when (boundp 'truncate-string-ellipsis)
-    ;; See https://github.com/flycheck/flycheck/issues/1101
-    (setq-local truncate-string-ellipsis "…"))
-  (tabulated-list-init-header))
-
-(defvar-local flycheck-error-list-source-buffer nil
-  "The current source buffer of the error list.")
-;; Needs to permanently local to preserve the source buffer across buffer
-;; reversions
-(put 'flycheck-error-list-source-buffer 'permanent-local t)
-
-(defun flycheck-error-list-set-source (buffer)
-  "Set BUFFER as the source buffer of the error list."
-  (when (get-buffer flycheck-error-list-buffer)
-    (with-current-buffer flycheck-error-list-buffer
-      ;; Only update the source when required
-      (unless (eq buffer flycheck-error-list-source-buffer)
-        (setq flycheck-error-list-source-buffer buffer)
-        (flycheck-error-list-refresh)))))
-
-(defun flycheck-error-list-update-source ()
-  "Update the source buffer of the error list."
-  (when (not (eq (current-buffer) (get-buffer flycheck-error-list-buffer)))
-    ;; We must not update the source buffer, if the current buffer is the error
-    ;; list itself.
-    (flycheck-error-list-set-source (current-buffer))))
-
-(defun flycheck-error-list-check-source ()
-  "Trigger a syntax check in the source buffer of the error list."
-  (interactive)
-  (let ((buffer (get-buffer flycheck-error-list-source-buffer)))
-    (when (buffer-live-p buffer)
-      (with-current-buffer buffer
-        (flycheck-buffer)))))
-
-(define-button-type 'flycheck-error-list
-  'action #'flycheck-error-list-button-goto-error
-  'help-echo "mouse-2, RET: goto error"
-  'face nil)
-
-(defun flycheck-error-list-button-goto-error (button)
-  "Go to the error at BUTTON."
-  (flycheck-error-list-goto-error (button-start button)))
-
-(define-button-type 'flycheck-error-list-explain-error
-  'action #'flycheck-error-list-button-explain-error
-  'help-echo "mouse-2, RET: explain error")
-
-(defun flycheck-error-list-button-explain-error (button)
-  "Explain the error at BUTTON."
-  (flycheck-error-list-explain-error (button-start button)))
-
-(defsubst flycheck-error-list-make-cell (text &optional face help-echo type)
-  "Make an error list cell with TEXT and FACE.
-
-If FACE is nil don't set a FACE on TEXT.  If TEXT already has
-face properties, do not specify a FACE.  Note though, that if
-TEXT gets truncated it will not inherit any previous face
-properties.  If you expect TEXT to be truncated in the error
-list, do specify a FACE explicitly!
-
-If HELP-ECHO is non-nil, set a help-echo property on TEXT, with
-value HELP-ECHO.  This is convenient if you expect TEXT to be
-truncated.
-
-The cell will have the type TYPE unless TYPE is nil, and the
-default type `flycheck-error-list' will be used instead."
-  (append (list text 'type (if type type
-                             'flycheck-error-list))
-          (and face (list 'face face))
-          (and help-echo (list 'help-echo help-echo))))
-
-(defsubst flycheck-error-list-make-number-cell (number face)
-  "Make a table cell for a NUMBER with FACE.
-
-Convert NUMBER to string, fontify it with FACE and return the
-string with attached text properties."
-  (flycheck-error-list-make-cell
-   (if (numberp number) (number-to-string number) "")
-   face))
-
-(defun flycheck-error-list-make-entry (error)
-  "Make a table cell for the given ERROR.
-
-Return a list with the contents of the table cell."
-  (let* ((level (flycheck-error-level error))
-         (level-face (flycheck-error-level-error-list-face level))
-         (filename (flycheck-error-filename error))
-         (line (flycheck-error-line error))
-         (column (flycheck-error-column error))
-         (message (or (flycheck-error-message error)
-                      (format "Unknown %s" (symbol-name level))))
-         (flushed-msg (flycheck-flush-multiline-message message))
-         (id (flycheck-error-id error))
-         (id-str (if id (format "%s" id) ""))
-         (checker (flycheck-error-checker error))
-         (msg-and-checker
-          (flycheck-error-list-make-last-column flushed-msg checker))
-         (explainer (flycheck-checker-get checker 'error-explainer)))
-    (list error
-          (vector (flycheck-error-list-make-cell
-                   (if filename
-                       (file-name-nondirectory filename)
-                     "")
-                   'flycheck-error-list-filename)
-                  (flycheck-error-list-make-number-cell
-                   line 'flycheck-error-list-line-number)
-                  (flycheck-error-list-make-number-cell
-                   column 'flycheck-error-list-column-number)
-                  (flycheck-error-list-make-cell
-                   (symbol-name (flycheck-error-level error)) level-face)
-                  ;; Error ID use a different face when an error-explainer is
-                  ;; present
-                  (flycheck-error-list-make-cell
-                   id-str (if explainer 'flycheck-error-list-id-with-explainer
-                            'flycheck-error-list-id)
-                   id-str 'flycheck-error-list-explain-error)
-                  (flycheck-error-list-make-cell
-                   msg-and-checker nil msg-and-checker)))))
-
-(defun flycheck-flush-multiline-message (msg)
-  "Prepare error message MSG for display in the error list.
-
-Prepend all lines of MSG except the first with enough space to
-ensure that they line up properly once the message is displayed."
-  (let* ((spc-spec `(space . (:width ,flycheck--error-list-msg-offset)))
-         (spc (propertize " " 'display spc-spec))
-         (rep (concat "\\1" spc "\\2")))
-    (replace-regexp-in-string "\\([\r\n]+\\)\\(.\\)" rep msg)))
-
-(defun flycheck-error-list-current-errors ()
-  "Read the list of errors in `flycheck-error-list-source-buffer'."
-  (when (buffer-live-p flycheck-error-list-source-buffer)
-    (buffer-local-value 'flycheck-current-errors
-                        flycheck-error-list-source-buffer)))
-
-(defun flycheck-error-list-entries ()
-  "Create the entries for the error list."
-  (-when-let* ((errors (flycheck-error-list-current-errors))
-               (filtered (flycheck-error-list-apply-filter errors)))
-    (seq-map #'flycheck-error-list-make-entry filtered)))
-
-(defun flycheck-error-list-entry-< (entry1 entry2)
-  "Determine whether ENTRY1 is before ENTRY2 by location.
-
-See `flycheck-error-<'."
-  (flycheck-error-< (car entry1) (car entry2)))
-
-(defun flycheck-error-list-entry-level-< (entry1 entry2)
-  "Determine whether ENTRY1 is before ENTRY2 by level.
-
-See `flycheck-error-level-<'."
-  (not (flycheck-error-level-< (car entry1) (car entry2))))
-
-(defvar flycheck-error-list-mode-line-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [mode-line mouse-1]
-      #'flycheck-error-list-mouse-switch-to-source)
-    map)
-  "Keymap for error list mode line.")
-
-(defun flycheck-error-list-propertized-source-name ()
-  "Get the name of the current source buffer for the mode line.
-
-Propertize the name of the current source buffer for use in the
-mode line indication of `flycheck-error-list-mode'."
-  (let ((name (replace-regexp-in-string
-               (rx "%") "%%"
-               (buffer-name flycheck-error-list-source-buffer)
-               'fixed-case 'literal)))
-    (propertize name 'face 'mode-line-buffer-id
-                'mouse-face 'mode-line-highlight
-                'help-echo "mouse-1: switch to source"
-                'local-map flycheck-error-list-mode-line-map)))
-
-(defun flycheck-error-list-mouse-switch-to-source (event)
-  "Switch to the error list source buffer of the EVENT window."
-  (interactive "e")
-  (save-selected-window
-    (when (eventp event)
-      (select-window (posn-window (event-start event))))
-    (when (buffer-live-p flycheck-error-list-source-buffer)
-      (switch-to-buffer flycheck-error-list-source-buffer))))
-
-(defun flycheck-get-error-list-window-list (&optional all-frames)
-  "Get all windows displaying the error list.
-
-ALL-FRAMES specifies the frames to consider, as in
-`get-buffer-window-list'."
-  (-when-let (buf (get-buffer flycheck-error-list-buffer))
-    (get-buffer-window-list buf nil all-frames)))
-
-(defun flycheck-get-error-list-window (&optional all-frames)
-  "Get a window displaying the error list, or nil if none.
-
-ALL-FRAMES specifies the frames to consider, as in
-`get-buffer-window'."
-  (-when-let (buf (get-buffer flycheck-error-list-buffer))
-    (get-buffer-window buf all-frames)))
-
-(defun flycheck-error-list-recenter-at (pos)
-  "Recenter the error list at POS."
-  (dolist (window (flycheck-get-error-list-window-list t))
-    (with-selected-window window
-      (goto-char pos)
-      (let ((recenter-redisplay nil))
-        (recenter)))))
-
-(defun flycheck-error-list-refresh ()
-  "Refresh the current error list.
-
-Add all errors currently reported for the current
-`flycheck-error-list-source-buffer', and recenter the error
-list."
-  ;; We only refresh the error list, when it is visible in a window, and we
-  ;; select this window while reverting, because Tabulated List mode attempts to
-  ;; recenter the error at the old location, so it must have the proper window
-  ;; selected.
-  (-when-let (window (flycheck-get-error-list-window t))
-    (with-selected-window window
-      (revert-buffer))
-    (run-hooks 'flycheck-error-list-after-refresh-hook)
-    (let ((preserve-pos (eq (current-buffer)
-                            (get-buffer flycheck-error-list-buffer))))
-      ;; If the error list is the current buffer, don't recenter when
-      ;; highlighting
-      (flycheck-error-list-highlight-errors preserve-pos))))
-
-(defun flycheck-error-list-mode-line-filter-indicator ()
-  "Create a string representing the current error list filter."
-  (if flycheck-error-list-minimum-level
-      (format " [>= %s]" flycheck-error-list-minimum-level)
-    ""))
-
-(defun flycheck-error-list-set-filter (level)
-  "Restrict the error list to errors at level LEVEL or higher.
-
-LEVEL is either an error level symbol, or nil, to remove the filter."
-  (interactive
-   (list (read-flycheck-error-level
-          "Minimum error level (errors at lower levels will be hidden): ")))
-  (when (and level (not (flycheck-error-level-p level)))
-    (user-error "Invalid level: %s" level))
-  (-when-let (buf (get-buffer flycheck-error-list-buffer))
-    (with-current-buffer buf
-      (setq-local flycheck-error-list-minimum-level level))
-    (flycheck-error-list-refresh)
-    (flycheck-error-list-recenter-at (point-min))))
-
-(defun flycheck-error-list-reset-filter ()
-  "Remove filters and show all errors in the error list."
-  (interactive)
-  (kill-local-variable 'flycheck-error-list-minimum-level))
-
-(defun flycheck-error-list-apply-filter (errors)
-  "Filter ERRORS according to `flycheck-error-list-minimum-level'."
-  (-if-let* ((min-level flycheck-error-list-minimum-level)
-             (min-severity (flycheck-error-level-severity min-level)))
-      (seq-filter (lambda (err) (>= (flycheck-error-level-severity
-                                     (flycheck-error-level err))
-                                    min-severity))
-                  errors)
-    errors))
-
-(defun flycheck-error-list-goto-error (&optional pos)
-  "Go to the location of the error at POS in the error list.
-
-POS defaults to `point'."
-  (interactive)
-  (-when-let* ((error (tabulated-list-get-id pos)))
-    (flycheck-jump-to-error error)))
-
-(defun flycheck-jump-to-error (error)
-  "Go to the location of ERROR."
-  (let* ((error-copy (copy-flycheck-error error))
-         (filename (flycheck-error-filename error))
-         (other-file-error (flycheck-relevant-error-other-file-p error))
-         (buffer (if filename
-                     (find-file-noselect filename)
-                   (flycheck-error-buffer error))))
-    (when (buffer-live-p buffer)
-      (setf (flycheck-error-buffer error-copy) buffer)
-      (flycheck-jump-in-buffer buffer error-copy)
-      ;; When jumping to an error in another file, it may not have
-      ;; this error available for highlighting yet, so we trigger a check
-      ;; if necessary.
-      (when other-file-error
-        (with-current-buffer buffer
-          (unless (seq-contains flycheck-current-errors error-copy 'equal)
-            (when flycheck-mode
-              (flycheck-buffer))))))))
-
-(defun flycheck-jump-in-buffer (buffer error)
-  "In BUFFER, jump to ERROR."
-  ;; FIXME: we assume BUFFER and the buffer of ERROR are the same.  We don't
-  ;; need the first argument then.
-  (if (eq (window-buffer) (get-buffer flycheck-error-list-buffer))
-      ;; When called from within the error list, keep the error list,
-      ;; otherwise replace the current buffer.
-      (pop-to-buffer buffer 'other-window)
-    (switch-to-buffer buffer))
-  (let ((pos (flycheck-error-pos error)))
-    (unless (eq (goto-char pos) (point))
-      ;; If widening gets in the way of moving to the right place, remove it
-      ;; and try again
-      (widen)
-      (goto-char pos)))
-  ;; Re-highlight the errors
-  (flycheck-error-list-highlight-errors 'preserve-pos))
-
-(defun flycheck-error-list-explain-error (&optional pos)
-  "Explain the error at POS in the error list.
-
-POS defaults to `point'."
-  (interactive)
-  (-when-let* ((error (tabulated-list-get-id pos))
-               (explainer (flycheck-checker-get (flycheck-error-checker error)
-                                                'error-explainer))
-               (explanation (funcall explainer error)))
-    (flycheck-display-error-explanation explanation)))
-
-(defun flycheck-error-list-next-error-pos (pos &optional n)
-  "Starting from POS get the N'th next error in the error list.
-
-N defaults to 1.  If N is negative, search for the previous error
-instead.
-
-Get the beginning position of the N'th next error from POS, or
-nil, if there is no next error."
-  (let ((n (or n 1)))
-    (if (>= n 0)
-        ;; Search forward
-        (while (and pos (/= n 0))
-          (setq n (1- n))
-          (setq pos (next-single-property-change pos 'tabulated-list-id)))
-      ;; Search backwards
-      (while (/= n 0)
-        (setq n (1+ n))
-        ;; We explicitly give the limit here to explicitly have the minimum
-        ;; point returned, to be able to move to the first error (which starts
-        ;; at `point-min')
-        (setq pos (previous-single-property-change pos 'tabulated-list-id
-                                                   nil (point-min)))))
-    pos))
-
-(defun flycheck-error-list-previous-error (n)
-  "Go to the N'th previous error in the error list."
-  (interactive "P")
-  (flycheck-error-list-next-error (- (or n 1))))
-
-(defun flycheck-error-list-next-error (n)
-  "Go to the N'th next error in the error list."
-  (interactive "P")
-  (let ((pos (flycheck-error-list-next-error-pos (point) n)))
-    (when (and pos (/= pos (point)))
-      (goto-char pos)
-      (save-selected-window
-        ;; Keep the error list selected, so that the user can navigate errors by
-        ;; repeatedly pressing n/p, without having to re-select the error list
-        ;; window.
-        (flycheck-error-list-goto-error)))))
-
-(defvar-local flycheck-error-list-highlight-overlays nil
-  "Error highlight overlays in the error list buffer.")
-(put 'flycheck-error-list-highlight-overlays 'permanent-local t)
-
-(defun flycheck-error-list-highlight-errors (&optional preserve-pos)
-  "Highlight errors in the error list.
-
-Highlight all errors in the error lists that are at point in the
-source buffer, and on the same line as point.  Then recenter the
-error list to the highlighted error, unless PRESERVE-POS is
-non-nil."
-  (when (get-buffer flycheck-error-list-buffer)
-    (let ((current-errors (flycheck-overlay-errors-in (line-beginning-position)
-                                                      (line-end-position))))
-      (with-current-buffer flycheck-error-list-buffer
-        (let ((old-overlays flycheck-error-list-highlight-overlays)
-              (min-point (point-max))
-              (max-point (point-min)))
-          ;; Display the new overlays first, to avoid re-display flickering
-          (setq flycheck-error-list-highlight-overlays nil)
-          (when current-errors
-            (let ((next-error-pos (point-min)))
-              (while next-error-pos
-                (let* ((beg next-error-pos)
-                       (end (flycheck-error-list-next-error-pos beg))
-                       (err (tabulated-list-get-id beg)))
-                  (when (member err current-errors)
-                    (setq min-point (min min-point beg)
-                          max-point (max max-point beg))
-                    (let ((ov (make-overlay beg
-                                            ;; Extend overlay to the beginning
-                                            ;; of the next line, to highlight
-                                            ;; the whole line
-                                            (or end (point-max)))))
-                      (push ov flycheck-error-list-highlight-overlays)
-                      (setf (overlay-get ov 'flycheck-error-highlight-overlay)
-                            t)
-                      (setf (overlay-get ov 'face)
-                            'flycheck-error-list-highlight)))
-                  (setq next-error-pos end)))))
-          ;; Delete the old overlays
-          (seq-do #'delete-overlay old-overlays)
-          (when (and (not preserve-pos) current-errors)
-            ;; Move point to the middle error
-            (goto-char (+ min-point (/ (- max-point min-point) 2)))
-            (beginning-of-line)
-            ;; And recenter the error list at this position
-            (flycheck-error-list-recenter-at (point))))))))
-
-(defun flycheck-list-errors ()
-  "Show the error list for the current buffer."
-  (interactive)
-  (unless flycheck-mode
-    (user-error "Flycheck mode not enabled"))
-  ;; Create and initialize the error list
-  (unless (get-buffer flycheck-error-list-buffer)
-    (with-current-buffer (get-buffer-create flycheck-error-list-buffer)
-      (flycheck-error-list-mode)))
-  (flycheck-error-list-set-source (current-buffer))
-  ;; Reset the error filter
-  (flycheck-error-list-reset-filter)
-  ;; Show the error list in a window, and re-select the old window
-  (display-buffer flycheck-error-list-buffer)
-  ;; Finally, refresh the error list to show the most recent errors
-  (flycheck-error-list-refresh))
-
-(defalias 'list-flycheck-errors 'flycheck-list-errors)
-
-
-;;; Displaying errors in the current buffer
-(defun flycheck-display-errors (errors)
-  "Display ERRORS using `flycheck-display-errors-function'."
-  (when flycheck-display-errors-function
-    (funcall flycheck-display-errors-function errors)))
-
-(defvar-local flycheck-display-error-at-point-timer nil
-  "Timer to automatically show the error at point in minibuffer.")
-
-(defun flycheck-cancel-error-display-error-at-point-timer ()
-  "Cancel the error display timer for the current buffer."
-  (when flycheck-display-error-at-point-timer
-    (cancel-timer flycheck-display-error-at-point-timer)
-    (setq flycheck-display-error-at-point-timer nil)))
-
-(defun flycheck-display-error-at-point ()
-  "Display the all error messages at point in minibuffer."
-  (interactive)
-  ;; This function runs from a timer, so we must take care to not ignore any
-  ;; errors
-  (with-demoted-errors "Flycheck error display error: %s"
-    (flycheck-cancel-error-display-error-at-point-timer)
-    (when flycheck-mode
-      (-when-let (errors (flycheck-overlay-errors-at (point)))
-        (flycheck-display-errors errors)))))
-
-(defun flycheck-display-error-at-point-soon ()
-  "Display the first error message at point in minibuffer delayed."
-  (flycheck-cancel-error-display-error-at-point-timer)
-  (when (flycheck-overlays-at (point))
-    (setq flycheck-display-error-at-point-timer
-          (run-at-time flycheck-display-errors-delay nil
-                       'flycheck-display-error-at-point))))
-
-
-;;; Functions to display errors
-(defconst flycheck-error-message-buffer "*Flycheck error messages*"
-  "The name of the buffer to show long error messages in.")
-
-(defun flycheck-error-message-buffer ()
-  "Get the buffer object to show long error messages in.
-
-Get the buffer named by variable `flycheck-error-message-buffer',
-or nil if the buffer does not exist."
-  (get-buffer flycheck-error-message-buffer))
-
-(defun flycheck-may-use-echo-area-p ()
-  "Determine whether the echo area may be used.
-
-The echo area may be used if the cursor is not in the echo area,
-and if the echo area is not occupied by minibuffer input."
-  (not (or cursor-in-echo-area (active-minibuffer-window))))
-
-(defun flycheck-display-error-messages (errors)
-  "Display the messages of ERRORS.
-
-Concatenate all non-nil messages of ERRORS separated by empty
-lines, and display them with `display-message-or-buffer', which
-shows the messages either in the echo area or in a separate
-buffer, depending on the number of lines.  See Info
-node `(elisp)Displaying Messages' for more information.
-
-In the latter case, show messages in the buffer denoted by
-variable `flycheck-error-message-buffer'."
-  (when (and errors (flycheck-may-use-echo-area-p))
-    (let ((messages (seq-map #'flycheck-error-format-message-and-id errors)))
-      (display-message-or-buffer (string-join messages "\n\n")
-                                 flycheck-error-message-buffer
-                                 'not-this-window))))
-
-(defun flycheck-display-error-messages-unless-error-list (errors)
-  "Show messages of ERRORS unless the error list is visible.
-
-Like `flycheck-display-error-messages', but only if the error
-list (see `flycheck-list-errors') is not visible in any window in
-the current frame."
-  (unless (flycheck-get-error-list-window 'current-frame)
-    (flycheck-display-error-messages errors)))
-
-(defun flycheck-hide-error-buffer ()
-  "Hide the Flycheck error buffer if necessary.
-
-Hide the error buffer if there is no error under point."
-  (-when-let* ((buffer (flycheck-error-message-buffer))
-               (window (get-buffer-window buffer)))
-    (unless (flycheck-overlays-at (point))
-      ;; save-selected-window prevents `quit-window' from changing the current
-      ;; buffer (see https://github.com/flycheck/flycheck/issues/648).
-      (save-selected-window
-        (quit-window nil window)))))
-
-
-;;; Working with errors
-(defun flycheck-copy-errors-as-kill (pos &optional formatter)
-  "Copy each error at POS into kill ring, using FORMATTER.
-
-FORMATTER is a function to turn an error into a string,
-defaulting to `flycheck-error-message'.
-
-Interactively, use `flycheck-error-format-message-and-id' as
-FORMATTER with universal prefix arg, and `flycheck-error-id' with
-normal prefix arg, i.e. copy the message and the ID with
-universal prefix arg, and only the id with normal prefix arg."
-  (interactive (list (point)
-                     (pcase current-prefix-arg
-                       ((pred not) #'flycheck-error-message)
-                       ((pred consp) #'flycheck-error-format-message-and-id)
-                       (_ #'flycheck-error-id))))
-  (let ((messages (delq nil (seq-map (or formatter #'flycheck-error-message)
-                                     (flycheck-overlay-errors-at pos)))))
-    (when messages
-      (seq-do #'kill-new (reverse messages))
-      (message (string-join messages "\n")))))
-
-(defun flycheck-explain-error-at-point ()
-  "Display an explanation for the first explainable error at point.
-
-The first explainable error at point is the first error at point
-with a non-nil `:error-explainer' function defined in its
-checker.  The `:error-explainer' function is then called with
-this error to produce the explanation to display."
-  (interactive)
-  (-when-let* ((first-error
-                ;; Get the first error at point that has an `error-explainer'.
-                (seq-find (lambda (error)
-                            (flycheck-checker-get
-                             (flycheck-error-checker error) 'error-explainer))
-                          (flycheck-overlay-errors-at (point))))
-               (explainer
-                (flycheck-checker-get (flycheck-error-checker first-error)
-                                      'error-explainer))
-               (explanation (funcall explainer first-error)))
-    (flycheck-display-error-explanation explanation)))
-
-(defconst flycheck-explain-error-buffer "*Flycheck error explanation*"
-  "The name of the buffer to show error explanations.")
-
-(defun flycheck-display-error-explanation (explanation)
-  "Display the EXPLANATION string in a help buffer."
-  (with-help-window (get-buffer-create flycheck-explain-error-buffer)
-    (princ explanation)))
-
-
-;;; Syntax checkers using external commands
-(defun flycheck-command-argument-p (arg)
-  "Check whether ARG is a valid command argument."
-  (pcase arg
-    ((pred stringp) t)
-    ((or `source `source-inplace `source-original) t)
-    ((or `temporary-directory `temporary-file-name) t)
-    (`null-device t)
-    (`(config-file ,option-name ,config-file-var)
-     (and (stringp option-name)
-          (symbolp config-file-var)))
-    (`(config-file ,option-name ,config-file-var ,prepender)
-     (and (stringp option-name)
-          (symbolp config-file-var)
-          (symbolp prepender)))
-    (`(,(or `option `option-list) ,option-name ,option-var)
-     (and (stringp option-name)
-          (symbolp option-var)))
-    (`(,(or `option `option-list) ,option-name ,option-var ,prepender)
-     (and (stringp option-name)
-          (symbolp option-var)
-          (symbolp prepender)))
-    (`(,(or `option `option-list) ,option-name ,option-var ,prepender ,filter)
-     (and (stringp option-name)
-          (symbolp option-var)
-          (symbolp prepender)
-          (symbolp filter)))
-    (`(option-flag ,option-name ,option-var)
-     (and (stringp option-name)
-          (symbolp option-var)))
-    (`(eval ,_) t)
-    (_ nil)))
-
-(defun flycheck-compute-working-directory (checker)
-  "Get the default working directory for CHECKER.
-
-Compute the value of `default-directory' for the invocation of
-the syntax checker command, by calling the function in the
-`working-directory' property of CHECKER, with CHECKER as sole
-argument, and returning its value.  Signal an error if the
-function returns a non-existing working directory.
-
-If the property is undefined or if the function returns nil
-return the `default-directory' of the current buffer."
-  (let* ((def-directory-fn (flycheck-checker-get checker 'working-directory))
-         (directory (or (and def-directory-fn
-                             (funcall def-directory-fn checker))
-                        ;; Default to the `default-directory' of the current
-                        ;; buffer
-                        default-directory)))
-    (unless (file-exists-p directory)
-      (error ":working-directory %s of syntax checker %S does not exist"
-             directory checker))
-    directory))
-
-;;;###autoload
-(defun flycheck-define-command-checker (symbol docstring &rest properties)
-  "Define SYMBOL as syntax checker to run a command.
-
-Define SYMBOL as generic syntax checker via
-`flycheck-define-generic-checker', which uses an external command
-to check the buffer.  SYMBOL and DOCSTRING are the same as for
-`flycheck-define-generic-checker'.
-
-In addition to the properties understood by
-`flycheck-define-generic-checker', the following PROPERTIES
-constitute a command syntax checker.  Unless otherwise noted, all
-properties are mandatory.  Note that the default `:error-filter'
-of command checkers is `flycheck-sanitize-errors'.
-
-`:command COMMAND'
-     The command to run for syntax checking.
-
-     COMMAND is a list of the form `(EXECUTABLE [ARG ...])'.
-
-     EXECUTABLE is a string with the executable of this syntax
-     checker.  It can be overridden with the variable
-     `flycheck-SYMBOL-executable'.  Note that this variable is
-     NOT implicitly defined by this function.  Use
-     `flycheck-def-executable-var' to define this variable.
-
-     Each ARG is an argument to the executable, either as string,
-     or as special symbol or form for
-     `flycheck-substitute-argument', which see.
-
-`:error-patterns PATTERNS'
-     A list of patterns to parse the output of the `:command'.
-
-     Each ITEM in PATTERNS is a list `(LEVEL SEXP ...)', where
-     LEVEL is a Flycheck error level (see
-     `flycheck-define-error-level'), followed by one or more RX
-     `SEXP's which parse an error of that level and extract line,
-     column, file name and the message.
-
-     See `rx' for general information about RX, and
-     `flycheck-rx-to-string' for some special RX forms provided
-     by Flycheck.
-
-     All patterns are applied in the order of declaration to the
-     whole output of the syntax checker.  Output already matched
-     by a pattern will not be matched by subsequent patterns.  In
-     other words, the first pattern wins.
-
-     This property is optional.  If omitted, however, an
-     `:error-parser' is mandatory.
-
-`:error-parser FUNCTION'
-     A function to parse errors with.
-
-     The function shall accept three arguments OUTPUT CHECKER
-     BUFFER.  OUTPUT is the syntax checker output as string,
-     CHECKER the syntax checker that was used, and BUFFER a
-     buffer object representing the checked buffer.  The function
-     must return a list of `flycheck-error' objects parsed from
-     OUTPUT.
-
-     This property is optional.  If omitted, it defaults to
-     `flycheck-parse-with-patterns'.  In this case,
-     `:error-patterns' is mandatory.
-
-`:standard-input t'
-     Whether to send the buffer contents on standard input.
-
-     If this property is given and has a non-nil value, send the
-     contents of the buffer on standard input.
-
-     Defaults to nil.
-
-Note that you may not give `:start', `:interrupt', and
-`:print-doc' for a command checker.  You can give a custom
-`:verify' function, though, whose results will be appended to the
-default `:verify' function of command checkers."
-  (declare (indent 1)
-           (doc-string 2))
-  (dolist (prop '(:start :interrupt :print-doc))
-    (when (plist-get properties prop)
-      (error "%s not allowed in definition of command syntax checker %s"
-             prop symbol)))
-
-  (unless (plist-get properties :error-filter)
-    ;; Default to `flycheck-sanitize-errors' as error filter
-    (setq properties (plist-put properties :error-filter
-                                #'flycheck-sanitize-errors)))
-  (let ((verify-fn (plist-get properties :verify)))
-    (setq properties
-          (plist-put properties :verify
-                     (lambda (checker)
-                       (append (flycheck-verify-command-checker checker)
-                               (and verify-fn
-                                    (funcall verify-fn checker)))))))
-
-  (let ((command (plist-get properties :command))
-        (patterns (plist-get properties :error-patterns))
-        (parser (or (plist-get properties :error-parser)
-                    #'flycheck-parse-with-patterns))
-        (enabled (plist-get properties :enabled))
-        (standard-input (plist-get properties :standard-input)))
-    (unless command
-      (error "Missing :command in syntax checker %s" symbol))
-    (unless (stringp (car command))
-      (error "Command executable for syntax checker %s must be a string: %S"
-             symbol (car command)))
-    (dolist (arg (cdr command))
-      (unless (flycheck-command-argument-p arg)
-        (error "Invalid command argument %S in syntax checker %s" arg symbol)))
-    (when (and (eq parser 'flycheck-parse-with-patterns)
-               (not patterns))
-      (error "Missing :error-patterns in syntax checker %s" symbol))
-
-    (setq properties
-          ;; Automatically disable command checkers if the executable does not
-          ;; exist.
-          (plist-put properties :enabled
-                     (lambda ()
-                       (and (flycheck-find-checker-executable symbol)
-                            (flycheck-temp-files-writable-p symbol)
-                            (or (not enabled) (funcall enabled))))))
-
-    (apply #'flycheck-define-generic-checker symbol docstring
-           :start #'flycheck-start-command-checker
-           :interrupt #'flycheck-interrupt-command-checker
-           :print-doc #'flycheck-command-checker-print-doc
-           properties)
-
-    ;; Pre-compile all errors patterns into strings, so that we don't need to do
-    ;; that on each error parse
-    (let ((patterns (seq-map (lambda (p)
-                               (cons (flycheck-rx-to-string `(and ,@(cdr p))
-                                                            'no-group)
-                                     (car p)))
-                             patterns)))
-      (pcase-dolist (`(,prop . ,value)
-                     `((command        . ,command)
-                       (error-parser   . ,parser)
-                       (error-patterns . ,patterns)
-                       (standard-input . ,standard-input)))
-        (setf (flycheck-checker-get symbol prop) value)))))
-
-(eval-and-compile
-  ;; Make this function available during byte-compilation, since we need it
-  ;; at macro expansion of `flycheck-def-executable-var'.
-  (defun flycheck-checker-executable-variable (checker)
-    "Get the executable variable of CHECKER.
-
-The executable variable is named `flycheck-CHECKER-executable'."
-    (intern (format "flycheck-%s-executable" checker))))
-
-(defun flycheck-checker-default-executable (checker)
-  "Get the default executable of CHECKER."
-  (car (flycheck-checker-get checker 'command)))
-
-(defun flycheck-checker-executable (checker)
-  "Get the command executable of CHECKER.
-
-The executable is either the value of the variable
-`flycheck-CHECKER-executable', or the default executable given in
-the syntax checker definition, if the variable is nil."
-  (let ((var (flycheck-checker-executable-variable checker)))
-    (or (and (boundp var) (symbol-value var))
-        (flycheck-checker-default-executable checker))))
-
-(defun flycheck-find-checker-executable (checker)
-  "Get the full path of the executable of CHECKER.
-
-Return the full absolute path to the executable of CHECKER, or
-nil if the executable does not exist."
-  (funcall flycheck-executable-find (flycheck-checker-executable checker)))
-
-(defun flycheck-checker-arguments (checker)
-  "Get the command arguments of CHECKER."
-  (cdr (flycheck-checker-get checker 'command)))
-
-(defun flycheck-substitute-argument (arg checker)
-  "Substitute ARG for CHECKER.
-
-Return a list of real arguments for the executable of CHECKER,
-substituted for the symbolic argument ARG.  Single arguments,
-e.g. if ARG is a literal strings, are wrapped in a list.
-
-ARG may be one of the following forms:
-
-STRING
-     Return ARG unchanged.
-
-`source', `source-inplace'
-     Create a temporary file to check and return its path.  With
-     `source-inplace' create the temporary file in the same
-     directory as the original file.  The value of
-     `flycheck-temp-prefix' is used as prefix of the file name.
-
-     With `source', try to retain the non-directory component of
-     the buffer's file name in the temporary file.
-
-     `source' is the preferred way to pass the input file to a
-     syntax checker.  `source-inplace' should only be used if the
-     syntax checker needs other files from the source directory,
-     such as include files in C.
-
-`source-original'
-     Return the path of the actual file to check, or an empty
-     string if the buffer has no file name.
-
-     Note that the contents of the file may not be up to date
-     with the contents of the buffer to check.  Do not use this
-     as primary input to a checker, unless absolutely necessary.
-
-     When using this symbol as primary input to the syntax
-     checker, add `flycheck-buffer-saved-p' to the `:predicate'.
-
-`temporary-directory'
-     Create a unique temporary directory and return its path.
-
-`temporary-file-name'
-     Return a unique temporary filename.  The file is *not*
-     created.
-
-     To ignore the output of syntax checkers, try `null-device'
-     first.
-
-`null-device'
-     Return the value of `null-device', i.e the system null
-     device.
-
-     Use this option to ignore the output of a syntax checker.
-     If the syntax checker cannot handle the null device, or
-     won't write to an existing file, try `temporary-file-name'
-     instead.
-
-`(config-file OPTION VARIABLE [PREPEND-FN])'
-     Search the configuration file bound to VARIABLE with
-     `flycheck-locate-config-file' and return a list of arguments
-     that pass this configuration file to the syntax checker, or
-     nil if the configuration file was not found.
-
-     PREPEND-FN is called with the OPTION and the located
-     configuration file, and should return OPTION prepended
-     before the file, either a string or as list.  If omitted,
-     PREPEND-FN defaults to `list'.
-
-`(option OPTION VARIABLE [PREPEND-FN [FILTER]])'
-     Retrieve the value of VARIABLE and return a list of
-     arguments that pass this value as value for OPTION to the
-     syntax checker.
-
-     PREPEND-FN is called with the OPTION and the value of
-     VARIABLE, and should return OPTION prepended before the
-     file, either a string or as list.  If omitted, PREPEND-FN
-     defaults to `list'.
-
-     FILTER is an optional function to be applied to the value of
-     VARIABLE before prepending.  This function must return nil
-     or a string.  In the former case, return nil.  In the latter
-     case, return a list of arguments as described above.
-
-`(option-list OPTION VARIABLE [PREPEND-FN [FILTER]])'
-     Retrieve the value of VARIABLE, which must be a list,
-     and prepend OPTION before each item in this list, using
-     PREPEND-FN.
-
-     PREPEND-FN is called with the OPTION and each item of the
-     list as second argument, and should return OPTION prepended
-     before the item, either as string or as list.  If omitted,
-     PREPEND-FN defaults to `list'.
-
-     FILTER is an optional function to be applied to each item in
-     the list before prepending OPTION.  It shall return the
-     option value for each item as string, or nil, if the item is
-     to be ignored.
-
-`(option-flag OPTION VARIABLE)'
-     Retrieve the value of VARIABLE and return OPTION, if the
-     value is non-nil.  Otherwise return nil.
-
-`(eval FORM)'
-     Return the result of evaluating FORM in the buffer to be
-     checked.  FORM must either return a string or a list of
-     strings, or nil to indicate that nothing should be
-     substituted for CELL.  For all other return types, signal an
-     error
-
-     _No_ further substitutions are performed, neither in FORM
-     before it is evaluated, nor in the result of evaluating
-     FORM.
-
-In all other cases, signal an error.
-
-Note that substitution is *not* recursive.  No symbols or cells
-are substituted within the body of cells!"
-  (pcase arg
-    ((pred stringp) (list arg))
-    (`source
-     (list (flycheck-save-buffer-to-temp #'flycheck-temp-file-system)))
-    (`source-inplace
-     (list (flycheck-save-buffer-to-temp #'flycheck-temp-file-inplace)))
-    (`source-original (list (or (buffer-file-name) "")))
-    (`temporary-directory (list (flycheck-temp-dir-system)))
-    (`temporary-file-name
-     (let ((directory (flycheck-temp-dir-system)))
-       (list (make-temp-name (expand-file-name "flycheck" directory)))))
-    (`null-device (list null-device))
-    (`(config-file ,option-name ,file-name-var)
-     (-when-let* ((value (symbol-value file-name-var))
-                  (file-name (flycheck-locate-config-file value checker)))
-       (flycheck-prepend-with-option option-name (list file-name))))
-    (`(config-file ,option-name ,file-name-var ,prepend-fn)
-     (-when-let* ((value (symbol-value file-name-var))
-                  (file-name (flycheck-locate-config-file value checker)))
-       (flycheck-prepend-with-option option-name (list file-name) prepend-fn)))
-    (`(option ,option-name ,variable)
-     (-when-let (value (symbol-value variable))
-       (unless (stringp value)
-         (error "Value %S of %S for option %s is not a string"
-                value variable option-name))
-       (flycheck-prepend-with-option option-name (list value))))
-    (`(option ,option-name ,variable ,prepend-fn)
-     (-when-let (value (symbol-value variable))
-       (unless (stringp value)
-         (error "Value %S of %S for option %s is not a string"
-                value variable option-name))
-       (flycheck-prepend-with-option option-name (list value) prepend-fn)))
-    (`(option ,option-name ,variable ,prepend-fn ,filter)
-     (-when-let (value (funcall filter (symbol-value variable)))
-       (unless (stringp value)
-         (error "Value %S of %S (filter: %S) for option %s is not a string"
-                value variable filter option-name))
-       (flycheck-prepend-with-option option-name (list value) prepend-fn)))
-    (`(option-list ,option-name ,variable)
-     (let ((value (symbol-value variable)))
-       (unless (and (listp value) (seq-every-p #'stringp value))
-         (error "Value %S of %S for option %S is not a list of strings"
-                value variable option-name))
-       (flycheck-prepend-with-option option-name value)))
-    (`(option-list ,option-name ,variable ,prepend-fn)
-     (let ((value (symbol-value variable)))
-       (unless (and (listp value) (seq-every-p #'stringp value))
-         (error "Value %S of %S for option %S is not a list of strings"
-                value variable option-name))
-       (flycheck-prepend-with-option option-name value prepend-fn)))
-    (`(option-list ,option-name ,variable ,prepend-fn ,filter)
-     (let ((value (delq nil (seq-map filter (symbol-value variable)))))
-       (unless (and (listp value) (seq-every-p #'stringp value))
-         (error "Value %S of %S for option %S is not a list of strings"
-                value variable option-name))
-       (flycheck-prepend-with-option option-name value prepend-fn)))
-    (`(option-flag ,option-name ,variable)
-     (when (symbol-value variable)
-       (list option-name)))
-    (`(eval ,form)
-     (let ((result (eval form)))
-       (cond
-        ((and (listp result) (seq-every-p #'stringp result)) result)
-        ((stringp result) (list result))
-        (t (error "Invalid result from evaluation of %S: %S" form result)))))
-    (_ (error "Unsupported argument %S" arg))))
-
-(defun flycheck-checker-substituted-arguments (checker)
-  "Get the substituted arguments of a CHECKER.
-
-Substitute each argument of CHECKER using
-`flycheck-substitute-argument'.  This replaces any special
-symbols in the command."
-  (apply #'append
-         (seq-map (lambda (arg) (flycheck-substitute-argument arg checker))
-                  (flycheck-checker-arguments checker))))
-
-(defun flycheck--process-send-buffer-contents-chunked (process)
-  "Send contents of current buffer to PROCESS in small batches.
-
-Send the entire buffer to the standard input of PROCESS in chunks
-of 4096 characters.  Chunking is done in Emacs Lisp, hence this
-function is probably far less efficient than
-`send-process-region'.  Use only when required."
-  (let ((from (point-min)))
-    (while (< from (point-max))
-      (let ((to (min (+ from 4096) (point-max))))
-        (process-send-region process from to)
-        (setq from to)))))
-
-(defvar flycheck-chunked-process-input
-  ;; Chunk process output on Windows to work around
-  ;; https://github.com/flycheck/flycheck/issues/794 and
-  ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22344.  The presence of
-  ;; `w32-pipe-buffer-size' denotes an Emacs version (> Emacs 25.1 )where pipe
-  ;; writes on Windows are fixed.
-  ;;
-  ;; TODO: Remove option and chunking when dropping Emacs 24 support, see
-  ;; https://github.com/flycheck/flycheck/issues/856
-  (and (eq system-type 'windows-nt) (not (boundp 'w32-pipe-buffer-size)))
-  "If non-nil send process input in small chunks.
-
-If this variable is non-nil `flycheck-process-send-buffer' sends
-buffer contents in small chunks.
-
-Defaults to nil, except on Windows to work around Emacs bug
-#22344.")
-
-(defun flycheck-process-send-buffer (process)
-  "Send all contents of current buffer to PROCESS.
-
-Sends all contents of the current buffer to the standard input of
-PROCESS, and terminates standard input with EOF.
-
-If `flycheck-chunked-process-input' is non-nil, send buffer
-contents in chunks via
-`flycheck--process-send-buffer-contents-chunked', which see.
-Otherwise use `process-send-region' to send all contents at once
-and rely on Emacs' own buffering and chunking."
-  (save-restriction
-    (widen)
-    (if flycheck-chunked-process-input
-        (flycheck--process-send-buffer-contents-chunked process)
-      (process-send-region process (point-min) (point-max))))
-  (process-send-eof process))
-
-(defun flycheck-start-command-checker (checker callback)
-  "Start a command CHECKER with CALLBACK."
-  (let (process)
-    (condition-case err
-        (let* ((program (flycheck-find-checker-executable checker))
-               (args (flycheck-checker-substituted-arguments checker))
-               (command (funcall flycheck-command-wrapper-function
-                                 (cons program args)))
-               ;; Use pipes to receive output from the syntax checker.  They are
-               ;; more efficient and more robust than PTYs, which Emacs uses by
-               ;; default, and since we don't need any job control features, we
-               ;; can easily use pipes.
-               (process-connection-type nil))
-          ;; We pass do not associate the process with any buffer, by
-          ;; passing nil for the BUFFER argument of `start-process'.
-          ;; Instead, we just remember the buffer being checked in a
-          ;; process property (see below).  This neatly avoids all
-          ;; side-effects implied by attached a process to a buffer, which
-          ;; may cause conflicts with other packages.
-          ;;
-          ;; See https://github.com/flycheck/flycheck/issues/298 for an
-          ;; example for such a conflict.
-          (setq process (apply 'start-process (format "flycheck-%s" checker)
-                               nil command))
-          (setf (process-sentinel process) #'flycheck-handle-signal)
-          (setf (process-filter process) #'flycheck-receive-checker-output)
-          (set-process-query-on-exit-flag process nil)
-          ;; Remember the syntax checker, the buffer and the callback
-          (process-put process 'flycheck-checker checker)
-          (process-put process 'flycheck-callback callback)
-          (process-put process 'flycheck-buffer (current-buffer))
-          ;; The default directory is bound in the `flycheck-syntax-check-start'
-          ;; function.
-          (process-put process 'flycheck-working-directory default-directory)
-          ;; Track the temporaries created by argument substitution in the
-          ;; process itself, to get rid of the global state ASAP.
-          (process-put process 'flycheck-temporaries flycheck-temporaries)
-          (setq flycheck-temporaries nil)
-          ;; Send the buffer to the process on standard input, if enabled.
-          (when (flycheck-checker-get checker 'standard-input)
-            (flycheck-process-send-buffer process))
-          ;; Return the process.
-          process)
-      (error
-       ;; In case of error, clean up our resources, and report the error back to
-       ;; Flycheck.
-       (flycheck-safe-delete-temporaries)
-       (when process
-         ;; No need to explicitly delete the temporary files of the process,
-         ;; because deleting runs the sentinel, which will delete them anyway.
-         (delete-process process))
-       (signal (car err) (cdr err))))))
-
-(defun flycheck-interrupt-command-checker (_checker process)
-  "Interrupt a PROCESS."
-  ;; Deleting the process always triggers the sentinel, which does the cleanup
-  (when process
-    (delete-process process)))
-
-(defun flycheck-command-checker-print-doc (checker)
-  "Print additional documentation for a command CHECKER."
-  (let ((executable (flycheck-checker-default-executable checker))
-        (config-file-var (flycheck-checker-get checker 'config-file-var))
-        (option-vars (seq-sort #'string<
-                               (flycheck-checker-get checker 'option-vars))))
-    (princ "\n")
-
-    (let ((doc-start (with-current-buffer standard-output (point-max))))
-      ;; Track the start of our documentation so that we can re-indent it
-      ;; properly
-      (princ "  This syntax checker executes \"")
-      (princ executable)
-      (princ "\"")
-      (when config-file-var
-        (princ ", using a configuration file from `")
-        (princ (symbol-name config-file-var))
-        (princ "'"))
-      (princ ". The executable can be overridden with `")
-      (princ (symbol-name (flycheck-checker-executable-variable checker)))
-      (princ "'.")
-
-      (with-current-buffer standard-output
-        (save-excursion
-          (fill-region-as-paragraph doc-start (point-max)))))
-    (princ "\n")
-    (when option-vars
-      (princ
-       "\n  This syntax checker can be configured with these options:\n\n")
-      (dolist (var option-vars)
-        (princ (format "     * `%s'\n" var))))))
-
-(defun flycheck-verify-command-checker (checker)
-  "Verify a command CHECKER in the current buffer.
-
-Return a list of `flycheck-verification-result' objects for
-CHECKER."
-  (let ((executable (flycheck-find-checker-executable checker))
-        (config-file-var (flycheck-checker-get checker 'config-file-var)))
-    `(
-      ,(flycheck-verification-result-new
-        :label "executable"
-        :message (if executable (format "Found at %s" executable) "Not found")
-        :face (if executable 'success '(bold error)))
-      ,@(when config-file-var
-          (let* ((value (symbol-value config-file-var))
-                 (path (and value (flycheck-locate-config-file value checker))))
-            (list (flycheck-verification-result-new
-                   :label "configuration file"
-                   :message (if path (format "Found at %S" path) "Not found")
-                   :face (if path 'success 'warning)))))
-      ,@(when (not (flycheck-temp-files-writable-p checker))
-          (list (flycheck-verification-result-new
-                 :label "temp directory"
-                 :message (format "%s is not writable"
-                                  (flycheck-temp-directory checker))
-                 :face 'error))))))
-
-
-;;; Process management for command syntax checkers
-(defun flycheck-receive-checker-output (process output)
-  "Receive a syntax checking PROCESS OUTPUT."
-  (push output (process-get process 'flycheck-pending-output)))
-
-(defun flycheck-get-output (process)
-  "Get the complete output of PROCESS."
-  (with-demoted-errors "Error while retrieving process output: %S"
-    (let ((pending-output (process-get process 'flycheck-pending-output)))
-      (apply #'concat (nreverse pending-output)))))
-
-(defun flycheck-handle-signal (process _event)
-  "Handle a signal from the syntax checking PROCESS.
-
-_EVENT is ignored."
-  (when (memq (process-status process) '(signal exit))
-    (let ((files (process-get process 'flycheck-temporaries))
-          (buffer (process-get process 'flycheck-buffer))
-          (callback (process-get process 'flycheck-callback))
-          (cwd (process-get process 'flycheck-working-directory)))
-      ;; Delete the temporary files
-      (seq-do #'flycheck-safe-delete files)
-      (when (buffer-live-p buffer)
-        (with-current-buffer buffer
-          (condition-case err
-              (pcase (process-status process)
-                (`signal
-                 (funcall callback 'interrupted))
-                (`exit
-                 (flycheck-finish-checker-process
-                  (process-get process 'flycheck-checker)
-                  (process-exit-status process)
-                  files
-                  (flycheck-get-output process) callback cwd)))
-            ((debug error)
-             (funcall callback 'errored (error-message-string err)))))))))
-
-(defun flycheck-finish-checker-process
-    (checker exit-status files output callback cwd)
-  "Finish a checker process from CHECKER with EXIT-STATUS.
-
-FILES is a list of files given as input to the checker.  OUTPUT
-is the output of the syntax checker.  CALLBACK is the status
-callback to use for reporting.
-
-Parse the OUTPUT and report an appropriate error status.
-
-Resolve all errors in OUTPUT using CWD as working directory."
-  (let ((errors (flycheck-parse-output output checker (current-buffer))))
-    (when (and (/= exit-status 0) (not errors))
-      ;; Warn about a suspicious result from the syntax checker.  We do right
-      ;; after parsing the errors, before filtering, because a syntax checker
-      ;; might report errors from other files (e.g. includes) even if there
-      ;; are no errors in the file being checked.
-      (funcall callback 'suspicious
-               (format "Flycheck checker %S returned non-zero \
-exit code %s, but its output contained no errors: %s\nTry \
-installing a more recent version of %S, and please open a bug \
-report if the issue persists in the latest release.  Thanks!"
-                       checker exit-status output checker)))
-    (funcall callback 'finished
-             ;; Fix error file names, by substituting them backwards from the
-             ;; temporaries.
-             (seq-map (lambda (e) (flycheck-fix-error-filename e files cwd))
-                      errors))))
-
-
-;;; Executables of command checkers.
-(defmacro flycheck-def-executable-var (checker default-executable)
-  "Define the executable variable for CHECKER.
-
-DEFAULT-EXECUTABLE is the default executable.  It is only used in
-the docstring of the variable.
-
-The variable is defined with `defcustom' in the
-`flycheck-executables' group.  It's also defined to be risky as
-file-local variable, to avoid arbitrary executables being used
-for syntax checking."
-  (let ((executable-var (flycheck-checker-executable-variable checker)))
-    `(progn
-       (defcustom ,executable-var nil
-         ,(format "The executable of the %s syntax checker.
-
-Either a string containing the name or the path of the
-executable, or nil to use the default executable from the syntax
-checker declaration.
-
-The default executable is %S." checker default-executable)
-         :type '(choice (const :tag "Default executable" nil)
-                        (string :tag "Name or path"))
-         :group 'flycheck-executables
-         :risky t))))
-
-(defun flycheck-set-checker-executable (checker &optional executable)
-  "Set the executable of CHECKER in the current buffer.
-
-CHECKER is a syntax checker symbol.  EXECUTABLE is a string with
-the name of an executable or the path to an executable file, which
-is to be used as executable for CHECKER.  If omitted or nil,
-reset the executable of CHECKER.
-
-Interactively, prompt for a syntax checker and an executable
-file, and set the executable of the selected syntax checker.
-With prefix arg, prompt for a syntax checker only, and reset the
-executable of the select checker to the default.
-
-Set the executable variable of CHECKER, that is,
-`flycheck-CHECKER-executable' to EXECUTABLE.  Signal
-`user-error', if EXECUTABLE does not denote a command or an
-executable file.
-
-This command is intended for interactive use only.  In Lisp, just
-`let'-bind the corresponding variable, or set it directly.  Use
-`flycheck-checker-executable-variable' to obtain the executable
-variable symbol for a syntax checker."
-  (declare (interactive-only "Set the executable variable directly instead"))
-  (interactive
-   (let* ((checker (read-flycheck-checker "Syntax checker: "))
-          (default-executable (flycheck-checker-default-executable checker))
-          (executable (if current-prefix-arg
-                          nil
-                        (read-file-name "Executable: " nil default-executable
-                                        nil nil flycheck-executable-find))))
-     (list checker executable)))
-  (when (and executable (not (funcall flycheck-executable-find executable)))
-    (user-error "%s is no executable" executable))
-  (let ((variable (flycheck-checker-executable-variable checker)))
-    (set (make-local-variable variable) executable)))
-
-
-;;; Configuration files and options for command checkers
-(defun flycheck-register-config-file-var (var checkers)
-  "Register VAR as config file var for CHECKERS.
-
-CHECKERS is a single syntax checker or a list thereof."
-  (when (symbolp checkers)
-    (setq checkers (list checkers)))
-  (dolist (checker checkers)
-    (setf (flycheck-checker-get checker 'config-file-var) var)))
-
-;;;###autoload
-(defmacro flycheck-def-config-file-var (symbol checker &optional file-name
-                                               &rest custom-args)
-  "Define SYMBOL as config file variable for CHECKER, with default FILE-NAME.
-
-SYMBOL is declared as customizable variable using `defcustom', to
-provide a configuration file for the given syntax CHECKER.
-CUSTOM-ARGS are forwarded to `defcustom'.
-
-FILE-NAME is the initial value of the new variable.  If omitted,
-the default value is nil.
-
-Use this together with the `config-file' form in the `:command'
-argument to `flycheck-define-checker'."
-  ;; FIXME: We should allow multiple config files per checker as well as
-  ;; multiple checkers per config file
-  (declare (indent 3))
-  `(progn
-     (defcustom ,symbol ,file-name
-       ,(format "Configuration file for `%s'.
-
-If set to a string, locate the configuration file using the
-functions from `flycheck-locate-config-file-functions'.  If the
-file is found pass it to the syntax checker as configuration
-file.
-
-If no configuration file is found, or if this variable is set to
-nil, invoke the syntax checker without a configuration file.
-
-Use this variable as file-local variable if you need a specific
-configuration file a buffer." checker)
-       :type '(choice (const :tag "No configuration file" nil)
-                      (string :tag "File name or path"))
-       :group 'flycheck-config-files
-       ,@custom-args)
-     (flycheck-register-config-file-var ',symbol ',checker)))
-
-(defun flycheck-locate-config-file (filename checker)
-  "Locate the configuration file FILENAME for CHECKER.
-
-Locate the configuration file using
-`flycheck-locate-config-file-functions'.
-
-Return the absolute path of the configuration file, or nil if no
-configuration file was found."
-  (-when-let (filepath (run-hook-with-args-until-success
-                        'flycheck-locate-config-file-functions
-                        filename checker))
-    (when (file-exists-p filepath)
-      filepath)))
-
-(defun flycheck-locate-config-file-by-path (filepath _checker)
-  "Locate a configuration file by a FILEPATH.
-
-If FILEPATH is a contains a path separator, expand it against the
-default directory and return it if it points to an existing file.
-Otherwise return nil.
-
-_CHECKER is ignored."
-  ;; If the path is just a plain file name, skip it.
-  (unless (string= (file-name-nondirectory filepath) filepath)
-    (let ((file-name (expand-file-name filepath)))
-      (and (file-exists-p file-name) file-name))))
-
-(defun flycheck-locate-config-file-ancestor-directories (filename _checker)
-  "Locate a configuration FILENAME in ancestor directories.
-
-If the current buffer has a file name, search FILENAME in the
-directory of the current buffer and all ancestors thereof (see
-`locate-dominating-file').  If the file is found, return its
-absolute path.  Otherwise return nil.
-
-_CHECKER is ignored."
-  (-when-let* ((basefile (buffer-file-name))
-               (directory (locate-dominating-file basefile filename)))
-    (expand-file-name filename directory)))
-
-(defun flycheck-locate-config-file-home (filename _checker)
-  "Locate a configuration FILENAME in the home directory.
-
-Return the absolute path, if FILENAME exists in the user's home
-directory, or nil otherwise."
-  (let ((path (expand-file-name filename "~")))
-    (when (file-exists-p path)
-      path)))
-
-(seq-do (apply-partially #'custom-add-frequent-value
-                         'flycheck-locate-config-file-functions)
-        '(flycheck-locate-config-file-by-path
-          flycheck-locate-config-file-ancestor-directories
-          flycheck-locate-config-file-home))
-
-(defun flycheck-register-option-var (var checkers)
-  "Register an option VAR with CHECKERS.
-
-VAR is an option symbol, and CHECKERS a syntax checker symbol or
-a list thereof.  Register VAR with all CHECKERS so that it
-appears in the help output."
-  (when (symbolp checkers)
-    (setq checkers (list checkers)))
-  (dolist (checker checkers)
-    (cl-pushnew var (flycheck-checker-get checker 'option-vars))))
-
-;;;###autoload
-(defmacro flycheck-def-option-var (symbol init-value checkers docstring
-                                          &rest custom-args)
-  "Define SYMBOL as option variable with INIT-VALUE for CHECKER.
-
-SYMBOL is declared as customizable variable using `defcustom', to
-provide an option for the given syntax CHECKERS (a checker or a
-list of checkers).  INIT-VALUE is the initial value of the
-variable, and DOCSTRING is its docstring.  CUSTOM-ARGS are
-forwarded to `defcustom'.
-
-Use this together with the `option', `option-list' and
-`option-flag' forms in the `:command' argument to
-`flycheck-define-checker'."
-  (declare (indent 3)
-           (doc-string 4))
-  `(progn
-     (defcustom ,symbol ,init-value
-       ,(concat docstring "
-
-This variable is an option for the following syntax checkers:
-
-"
-                (mapconcat (lambda (c) (format "  - `%s'" c))
-                           (if (symbolp checkers) (list checkers) checkers)
-                           "\n"))
-       :group 'flycheck-options
-       ,@custom-args)
-     (flycheck-register-option-var ',symbol ',checkers)))
-
-(defun flycheck-option-int (value)
-  "Convert an integral option VALUE to a string.
-
-If VALUE is nil, return nil.  Otherwise return VALUE converted to
-a string."
-  (and value (number-to-string value)))
-
-(defun flycheck-option-symbol (value)
-  "Convert a symbol option VALUE to string.
-
-If VALUE is nil return nil.  Otherwise return VALUE converted to
-a string."
-  (and value (symbol-name value)))
-
-(defun flycheck-option-comma-separated-list (value &optional separator filter)
-  "Convert VALUE into a list separated by SEPARATOR.
-
-SEPARATOR is a string to separate items in VALUE, defaulting to
-\",\".  FILTER is an optional function, which takes a single
-argument and returns either a string or nil.
-
-If VALUE is a list, apply FILTER to each item in VALUE, remove
-all nil items, and return a single string of all remaining items
-separated by SEPARATOR.
-
-Otherwise, apply FILTER to VALUE and return the result.
-SEPARATOR is ignored in this case."
-  (let ((filter (or filter #'identity))
-        (separator (or separator ",")))
-    (if (listp value)
-        (-when-let (value (delq nil (seq-map filter value)))
-          (string-join value separator))
-      (funcall filter value))))
-
-(defmacro flycheck-def-args-var (symbol checkers &rest custom-args)
-  "Define SYMBOL as argument variable for CHECKERS.
-
-SYMBOL is declared as customizable, risky and buffer-local
-variable using `defcustom' to provide an option for arbitrary
-arguments for the given syntax CHECKERS (either a single checker
-or a list of checkers).  CUSTOM-ARGS is forwarded to `defcustom'.
-
-Use the `eval' form to splice this variable into the
-`:command'."
-  (declare (indent 2))
-  `(flycheck-def-option-var ,symbol nil ,checkers
-     "A list of additional command line arguments.
-
-The value of this variable is a list of strings with additional
-command line arguments."
-     :risky t
-     :type '(repeat (string :tag "Argument"))
-     ,@custom-args))
-
-
-;;; Command syntax checkers as compile commands
-(defun flycheck-checker-pattern-to-error-regexp (pattern)
-  "Convert PATTERN into an error regexp for compile.el.
-
-Return a list representing PATTERN, suitable as element in
-`compilation-error-regexp-alist'."
-  (let* ((regexp (car pattern))
-         (level (cdr pattern))
-         (level-no (flycheck-error-level-compilation-level level)))
-    (list regexp 1 2 3 level-no)))
-
-(defun flycheck-checker-compilation-error-regexp-alist (checker)
-  "Convert error patterns of CHECKER for use with compile.el.
-
-Return an alist of all error patterns of CHECKER, suitable for
-use with `compilation-error-regexp-alist'."
-  (seq-map #'flycheck-checker-pattern-to-error-regexp
-           (flycheck-checker-get checker 'error-patterns)))
-
-(defun flycheck-checker-shell-command (checker)
-  "Get a shell command for CHECKER.
-
-Perform substitution in the arguments of CHECKER, but with
-`flycheck-substitute-shell-argument'.
-
-Return the command of CHECKER as single string, suitable for
-shell execution."
-  ;; Note: Do NOT use `combine-and-quote-strings' here.  Despite it's name it
-  ;; does not properly quote shell arguments, and actually breaks for special
-  ;; characters.  See https://github.com/flycheck/flycheck/pull/522
-  (let* ((args (apply #'append
-                      (seq-map
-                       (lambda (arg)
-                         (if (memq arg '(source source-inplace source-original))
-                             (list (buffer-file-name))
-                           (flycheck-substitute-argument arg checker)))
-                       (flycheck-checker-arguments checker))))
-         (command (mapconcat
-                   #'shell-quote-argument
-                   (funcall flycheck-command-wrapper-function
-                            (cons (flycheck-checker-executable checker) args))
-                   " ")))
-    (if (flycheck-checker-get checker 'standard-input)
-        ;; If the syntax checker expects the source from standard input add an
-        ;; appropriate shell redirection
-        (concat command " < " (shell-quote-argument (buffer-file-name)))
-      command)))
-
-(defun flycheck-compile-name (_name)
-  "Get a name for a Flycheck compilation buffer.
-
-_NAME is ignored."
-  (format "*Flycheck %s*" (buffer-file-name)))
-
-(defun flycheck-compile (checker)
-  "Run CHECKER via `compile'.
-
-CHECKER must be a valid syntax checker.  Interactively, prompt
-for a syntax checker to run.
-
-Instead of highlighting errors in the buffer, this command pops
-up a separate buffer with the entire output of the syntax checker
-tool, just like `compile' (\\[compile])."
-  (interactive
-   (let ((default (flycheck-get-checker-for-buffer)))
-     (list (read-flycheck-checker "Run syntax checker as compile command: "
-                                  (when (flycheck-checker-get default 'command)
-                                    default)
-                                  'command))))
-  (unless (flycheck-valid-checker-p checker)
-    (user-error "%S is not a valid syntax checker" checker))
-  (unless (buffer-file-name)
-    (user-error "Cannot compile buffers without backing file"))
-  (unless (flycheck-may-use-checker checker)
-    (user-error "Cannot use syntax checker %S in this buffer" checker))
-  (unless (flycheck-checker-executable checker)
-    (user-error "Cannot run checker %S as shell command" checker))
-  (let* ((default-directory (flycheck-compute-working-directory checker))
-         (command (flycheck-checker-shell-command checker))
-         (buffer (compilation-start command nil #'flycheck-compile-name)))
-    (with-current-buffer buffer
-      (setq-local compilation-error-regexp-alist
-                  (flycheck-checker-compilation-error-regexp-alist checker)))))
-
-
-;;; General error parsing for command checkers
-(defun flycheck-parse-output (output checker buffer)
-  "Parse OUTPUT from CHECKER in BUFFER.
-
-OUTPUT is a string with the output from the checker symbol
-CHECKER.  BUFFER is the buffer which was checked.
-
-Return the errors parsed with the error patterns of CHECKER."
-  (funcall (flycheck-checker-get checker 'error-parser) output checker buffer))
-
-(defun flycheck-fix-error-filename (err buffer-files cwd)
-  "Fix the file name of ERR from BUFFER-FILES.
-
-Resolves error file names relative to CWD directory.
-
-Make the file name of ERR absolute.  If the absolute file name of
-ERR is in BUFFER-FILES, replace it with the return value of the
-function `buffer-file-name'."
-  (flycheck-error-with-buffer err
-    (-when-let (filename (flycheck-error-filename err))
-      (when (seq-some (apply-partially #'flycheck-same-files-p
-                                       (expand-file-name filename cwd))
-                      buffer-files)
-        (setf (flycheck-error-filename err) buffer-file-name)
-        (when (and buffer-file-name (flycheck-error-message err))
-          (setf (flycheck-error-message err)
-                (replace-regexp-in-string
-                 (regexp-quote filename) buffer-file-name
-                 (flycheck-error-message err) 'fixed-case 'literal))))))
-  err)
-
-
-;;; Error parsers for command syntax checkers
-(defun flycheck-parse-xml-region (beg end)
-  "Parse the xml region between BEG and END.
-
-Wrapper around `xml-parse-region' which transforms the return
-value of this function into one compatible to
-`libxml-parse-xml-region' by simply returning the first element
-from the node list."
-  (ignore-errors (car (xml-parse-region beg end))))
-
-(defun flycheck-parse-xml-region-with-fallback (beg end)
-  "Parse the xml region between BEG and END.
-
-Try parsing with libxml first; if that fails, revert to
-`flycheck-parse-xml-region'.  Failures can be caused by incorrect
-XML (see URL `https://github.com/flycheck/flycheck/issues/1298'),
-or on Windows by a missing libxml DLL with a libxml-enabled Emacs
-\(see URL `https://github.com/flycheck/flycheck/issues/1330')."
-  ;; FIXME use `libxml-available-p' when it gets implemented.
-  (or (and (fboundp 'libxml-parse-xml-region)
-           (libxml-parse-xml-region beg end))
-      (flycheck-parse-xml-region beg end)))
-
-(defvar flycheck-xml-parser 'flycheck-parse-xml-region-with-fallback
-  "Function used to parse an xml string from a region.
-
-The default uses libxml if available, and falls back to
-`flycheck-parse-xml-region' otherwise.")
-
-(defun flycheck-parse-xml-string (xml)
-  "Parse an XML string.
-
-Return the document tree parsed from XML in the form `(ROOT ATTRS
-BODY...)'.  ROOT is a symbol identifying the name of the root
-element.  ATTRS is an alist of the attributes of the root node.
-BODY is zero or more body elements, either as strings (in case of
-text nodes) or as XML nodes, in the same for as the root node."
-  (with-temp-buffer
-    (insert xml)
-    (funcall flycheck-xml-parser (point-min) (point-max))))
-
-(defun flycheck-parse-checkstyle (output checker buffer)
-  "Parse Checkstyle errors from OUTPUT.
-
-Parse Checkstyle-like XML output.  Use this error parser for
-checkers that have an option to output errors in this format.
-
-CHECKER and BUFFER denoted the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-See URL `http://checkstyle.sourceforge.net/' for information
-about Checkstyle."
-  (pcase (flycheck-parse-xml-string output)
-    (`(checkstyle ,_ . ,file-nodes)
-     (let (errors)
-       (dolist (node file-nodes)
-         (pcase node
-           (`(file ,file-attrs . ,error-nodes)
-            (dolist (node error-nodes)
-              (pcase node
-                (`(error ,error-attrs . ,_)
-                 (let-alist error-attrs
-                   (push (flycheck-error-new-at
-                          (flycheck-string-to-number-safe .line)
-                          (flycheck-string-to-number-safe .column)
-                          (pcase .severity
-                            (`"error"   'error)
-                            (`"warning" 'warning)
-                            (`"info"    'info)
-                            ;; Default to error for unknown .severity
-                            (_          'error))
-                          .message
-                          :checker checker :id .source
-                          :buffer buffer
-                          :filename (cdr (assq 'name file-attrs)))
-                         errors))))))))
-       (nreverse errors)))))
-
-(defun flycheck-parse-cppcheck (output checker buffer)
-  "Parse Cppcheck errors from OUTPUT.
-
-Parse Cppcheck XML v2 output.
-
-CHECKER and BUFFER denoted the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-See URL `http://cppcheck.sourceforge.net/' for more information
-about Cppcheck."
-  (pcase (flycheck-parse-xml-string output)
-    (`(results ,_ . ,body)
-     (let (errors)
-       (dolist (node body)
-         (pcase node
-           (`(errors ,_ . ,error-nodes)
-            (dolist (node error-nodes)
-              (pcase node
-                (`(error ,error-attrs . ,loc-nodes)
-                 (let ((id (cdr (assq 'id error-attrs)))
-                       (message (cdr (assq 'verbose error-attrs)))
-                       (level (pcase (cdr (assq 'severity error-attrs))
-                                (`"error" 'error)
-                                (`"style" 'info)
-                                (`"information" 'info)
-                                (_ 'warning))))
-                   (dolist (node loc-nodes)
-                     (pcase node
-                       (`(location ,loc-attrs . ,_)
-                        (let-alist loc-attrs
-                          (push (flycheck-error-new-at
-                                 (flycheck-string-to-number-safe .line)
-                                 nil
-                                 level
-                                 ;; cppcheck return newline characters as "\012"
-                                 (replace-regexp-in-string "\\\\012" "\n"
-                                                           message)
-                                 :id id
-                                 :checker checker
-                                 :buffer buffer
-                                 :filename .file)
-                                errors))))))))))))
-       (nreverse errors)))))
-
-(defun flycheck-parse-phpmd (output checker buffer)
-  "Parse phpmd errors from OUTPUT.
-
-CHECKER and BUFFER denoted the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-See URL `http://phpmd.org/' for more information about phpmd."
-  (pcase (flycheck-parse-xml-string output)
-    (`(pmd ,_ . ,body)
-     (let (errors)
-       (dolist (node body)
-         (pcase node
-           (`(file ,file-attrs . ,violation-nodes)
-            (let ((filename (cdr (assq 'name file-attrs))))
-              (dolist (node violation-nodes)
-                (pcase node
-                  (`(violation ,vio-attrs ,(and message (pred stringp)))
-                   (let-alist vio-attrs
-                     (push
-                      (flycheck-error-new-at
-                       (flycheck-string-to-number-safe .beginline)
-                       nil
-                       'warning (string-trim message)
-                       :id .rule
-                       :checker checker
-                       :buffer buffer
-                       :filename filename)
-                      errors)))))))))
-       (nreverse errors)))))
-
-(defun flycheck-parse-reek (output checker buffer)
-  "Parse Reek warnings from JSON OUTPUT.
-
-CHECKER and BUFFER denote the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-See URL `https://github.com/troessner/reek' for more information
-about Reek."
-  (let ((errors nil))
-    (dolist (message (car (flycheck-parse-json output)))
-      (let-alist message
-        (dolist (line (delete-dups .lines))
-          (push
-           (flycheck-error-new-at
-            line
-            nil
-            'warning (concat .context " " .message)
-            :id .smell_type
-            :checker checker
-            :buffer buffer
-            :filename .source)
-           errors))))
-    (nreverse errors)))
-
-(defun flycheck-parse-tslint (output checker buffer)
-  "Parse TSLint errors from JSON OUTPUT.
-
-CHECKER and BUFFER denoted the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-See URL `https://palantir.github.io/tslint/' for more information
-about TSLint."
-  (let ((json-array-type 'list))
-    (seq-map (lambda (message)
-               (let-alist message
-                 (flycheck-error-new-at
-                  (+ 1 .startPosition.line)
-                  (+ 1 .startPosition.character)
-                  'warning .failure
-                  :id .ruleName
-                  :checker checker
-                  :buffer buffer
-                  :filename .name)))
-             ;; Don't try to parse empty output as JSON
-             (and (not (string-empty-p output))
-                  (car (flycheck-parse-json output))))))
-
-(defun flycheck-parse-rust-collect-spans (span)
-  "Return a list of spans contained in a SPAN object."
-  (let ((spans))
-    (let-alist span
-      ;; With macro expansion errors, some spans will point to phony file names
-      ;; to indicate an error inside the std rust lib.  We skip these spans as
-      ;; they won't appear in flycheck anyway.
-      (unless (string= .file_name "<std macros>")
-        (push span spans))
-
-      ;; Macro expansion errors will have a span in the 'expansion' field, so we
-      ;; recursively collect it.
-      (if .expansion.span
-          (append (flycheck-parse-rust-collect-spans .expansion.span)
-                  spans)
-        spans))))
-
-(defun flycheck-parse-rustc-diagnostic (diagnostic checker buffer)
-  "Turn a rustc DIAGNOSTIC into a `flycheck-error'.
-
-CHECKER and BUFFER denote the CHECKER that returned DIAGNOSTIC
-and the BUFFER that was checked respectively.
-
-DIAGNOSTIC should be a parsed JSON object describing a rustc
-diagnostic, following the format described there:
-
-https://github.com/rust-lang/rust/blob/master/src/libsyntax/json.rs#L67-L139"
-  (let ((error-message)
-        (error-level)
-        (error-code)
-        (primary-filename)
-        (primary-line)
-        (primary-column)
-        (group (make-symbol "group"))
-        (spans)
-        (children)
-        (errors))
-    ;; The diagnostic format is described in the link above.  The gist of it is
-    ;; that a diagnostic can have several causes in the source text; these
-    ;; causes are represented by spans.  The diagnostic has a message and a
-    ;; level (error, warning), while the spans have a filename, line, column,
-    ;; and an optional label.  The primary span points to the root cause of the
-    ;; error in the source text, while non-primary spans point to related
-    ;; causes.  Spans may have an 'expansion' field for macro expansion errors;
-    ;; these expansion fields will contain another span (and so on).  In
-    ;; addition, a diagnostic can also have children diagnostics that are used
-    ;; to provide additional information through their message field, but do not
-    ;; seem to contain any spans (yet).
-    ;;
-    ;; We first gather spans in order to turn every span into a flycheck error
-    ;; object, that we collect into the `errors' list.
-
-    ;; Nested `let-alist' cause compilation warnings, hence we `setq' all
-    ;; these values here first to avoid nesting.
-    (let-alist diagnostic
-      (setq error-message .message
-            error-level (pcase .level
-                          (`"error" 'error)
-                          (`"warning" 'warning)
-                          (`"note" 'info)
-                          (_ 'error))
-            ;; The 'code' field of the diagnostic contains the actual error
-            ;; code and an optional explanation that we ignore
-            error-code .code.code
-            ;; Collect all spans recursively
-            spans (seq-mapcat #'flycheck-parse-rust-collect-spans .spans)
-            children .children))
-
-    ;; Turn each span into a flycheck error
-    (dolist (span spans)
-      (let-alist span
-        ;; Children may not have filename/line/column information, so we use
-        ;; those from the primary span
-        (when .is_primary
-          (setq primary-filename .file_name
-                primary-line .line_start
-                primary-column .column_start))
-        (push
-         (flycheck-error-new-at
-          .line_start
-          .column_start
-          ;; Non-primary spans are used for notes
-          (if .is_primary error-level 'info)
-          (if .is_primary
-              ;; Primary spans may have labels with additional information
-              (concat error-message (when .label
-                                      (format " (%s)" .label)))
-            ;; If the label is empty, fallback on the error message,
-            ;; otherwise we won't be able to display anything
-            (or .label error-message))
-          :id error-code
-          :checker checker
-          :buffer buffer
-          :filename .file_name
-          :group group)
-         errors)))
-
-    ;; Then we turn children messages into flycheck errors pointing to the
-    ;; location of the primary span.
-    (dolist (child children)
-      (let-alist child
-        (push
-         (flycheck-error-new-at
-          ;; Use the line/column from the first span if there is one, or
-          ;; fallback to the line/column information from the primary span of
-          ;; the diagnostic.
-          (or (cdr (assq 'line_start (car .spans)))
-              primary-line)
-          (or (cdr (assq 'column_start (car .spans)))
-              primary-column)
-          'info
-          ;; Messages from `cargo clippy' may suggest replacement code.  In
-          ;; these cases, the `message' field itself is an unhelpful `try' or
-          ;; `change this to'.  We add the `suggested_replacement' field in
-          ;; these cases.
-          (-if-let (replacement
-                    (cdr (assq 'suggested_replacement (car .spans))))
-              (format "%s: `%s`" .message replacement)
-            .message)
-          :id error-code
-          :checker checker
-          :buffer buffer
-          :filename primary-filename
-          :group group)
-         errors)))
-
-    ;; If there are no spans, the error is not associated with a specific
-    ;; file but with the project as a whole.  We still need to report it to
-    ;; the user by emitting a corresponding flycheck-error object.
-    (unless spans
-      (push (flycheck-error-new-at
-             ;; We have no specific position to attach the error to, so
-             ;; let's use the top of the file.
-             1 1
-             error-level
-             error-message
-             :id error-code
-             :checker checker
-             :buffer buffer
-             :group group)
-            errors))
-    (nreverse errors)))
-
-(defun flycheck-parse-json (output)
-  "Return parsed JSON data from OUTPUT.
-
-OUTPUT is a string that contains JSON data.  Each line of OUTPUT
-may be either plain text, a JSON array (starting with `['), or a
-JSON object (starting with `{').
-
-This function ignores the plain text lines, parses the JSON
-lines, and returns the parsed JSON lines in a list."
-  (let ((objects nil)
-        (json-array-type 'list)
-        (json-false nil))
-    (with-temp-buffer
-      (insert output)
-      (goto-char (point-min))
-      (while (not (eobp))
-        (when (memq (char-after) '(?\{ ?\[))
-          (push (json-read) objects))
-        (forward-line)))
-    (nreverse objects)))
-
-(defun flycheck-parse-rustc (output checker buffer)
-  "Parse rustc errors from OUTPUT and return a list of `flycheck-error'.
-
-CHECKER and BUFFER denote the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-The expected format for OUTPUT is a mix of plain text lines and
-JSON lines.  This function ignores the plain text lines and
-parses only JSON lines.  Each JSON line is expected to be a JSON
-object that corresponds to a diagnostic from the compiler.  The
-expected diagnostic format is described there:
-
-https://github.com/rust-lang/rust/blob/master/src/libsyntax/json.rs#L67-L139"
-  (seq-mapcat (lambda (msg)
-                (flycheck-parse-rustc-diagnostic msg checker buffer))
-              (flycheck-parse-json output)))
-
-(defun flycheck-parse-cargo-rustc (output checker buffer)
-  "Parse Cargo errors from OUTPUT and return a list of `flycheck-error'.
-
-CHECKER and BUFFER denote the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-The expected format for OUTPUT is a mix of plain text lines and
-JSON lines.  This function ignores the plain text lines and
-parses only JSON lines.  Each JSON line is expected to be a JSON
-object that represents a message from Cargo.  The format of
-messages emitted by Cargo is described in cargo's
-machine_message.rs at URL `https://git.io/vh24R'."
-  (let ((errors))
-    (dolist (msg (flycheck-parse-json output))
-      (let-alist msg
-        ;; Errors and warnings from rustc are wrapped by cargo, so we filter and
-        ;; unwrap them, and delegate the actual construction of `flycheck-error'
-        ;; objects to `flycheck-parse-rustc-diagnostic'.
-        (when (string= .reason "compiler-message")
-          (push (flycheck-parse-rustc-diagnostic .message checker buffer)
-                errors))))
-    (apply #'nconc errors)))
-
-
-;;; Error parsing with regular expressions
-(defun flycheck-get-regexp (patterns)
-  "Create a single regular expression from PATTERNS."
-  (rx-to-string `(or ,@(seq-map (lambda (p) (list 'regexp (car p))) patterns))
-                'no-group))
-
-(defun flycheck-tokenize-output-with-patterns (output patterns)
-  "Tokenize OUTPUT with PATTERNS.
-
-Split the output into error tokens, using all regular expressions
-from the error PATTERNS.  An error token is simply a string
-containing a single error from OUTPUT.  Such a token can then be
-parsed into a structured error by applying the PATTERNS again,
-see `flycheck-parse-errors-with-patterns'.
-
-Return a list of error tokens."
-  (let ((regexp (flycheck-get-regexp patterns))
-        (last-match 0)
-        errors)
-    (while (string-match regexp output last-match)
-      (push (match-string 0 output) errors)
-      (setq last-match (match-end 0)))
-    (reverse errors)))
-
-(defun flycheck-try-parse-error-with-pattern (err pattern checker)
-  "Try to parse a single ERR with a PATTERN for CHECKER.
-
-Return the parsed error if PATTERN matched ERR, or nil
-otherwise."
-  (let ((regexp (car pattern))
-        (level (cdr pattern)))
-    (when (string-match regexp err)
-      (let ((filename (match-string 1 err))
-            (line (match-string 2 err))
-            (column (match-string 3 err))
-            (message (match-string 4 err))
-            (id (match-string 5 err)))
-        (flycheck-error-new-at
-         (flycheck-string-to-number-safe line)
-         (flycheck-string-to-number-safe column)
-         level
-         (unless (string-empty-p message) message)
-         :id (unless (string-empty-p id) id)
-         :checker checker
-         :filename (if (or (null filename) (string-empty-p filename))
-                       (buffer-file-name)
-                     filename))))))
-
-(defun flycheck-parse-error-with-patterns (err patterns checker)
-  "Parse a single ERR with error PATTERNS for CHECKER.
-
-Apply each pattern in PATTERNS to ERR, in the given order, and
-return the first parsed error."
-  ;; Try to parse patterns in the order of declaration to make sure that the
-  ;; first match wins.
-  (let (parsed-error)
-    (while (and patterns
-                (not (setq parsed-error
-                           (flycheck-try-parse-error-with-pattern
-                            err (car patterns) checker))))
-      (setq patterns (cdr patterns)))
-    parsed-error))
-
-(defun flycheck-parse-with-patterns (output checker buffer)
-  "Parse OUTPUT from CHECKER with error patterns.
-
-Uses the error patterns of CHECKER to tokenize the output and
-tries to parse each error token with all patterns, in the order
-of declaration.  Hence an error is never matched twice by two
-different patterns.  The pattern declared first always wins.
-
-_BUFFER is ignored.
-
-Return a list of parsed errors and warnings (as `flycheck-error'
-objects)."
-  (with-current-buffer buffer
-    (let ((patterns (flycheck-checker-get checker 'error-patterns)))
-      (seq-map (lambda (err)
-                 (flycheck-parse-error-with-patterns err patterns checker))
-               (flycheck-tokenize-output-with-patterns output patterns)))))
-
-
-;;; Convenience definition of command-syntax checkers
-(defmacro flycheck-define-checker (symbol docstring &rest properties)
-  "Define SYMBOL as command syntax checker with DOCSTRING and PROPERTIES.
-
-Like `flycheck-define-command-checker', but PROPERTIES must not
-be quoted.  Also, implicitly define the executable variable for
-SYMBOL with `flycheck-def-executable-var'."
-  (declare (indent 1)
-           (doc-string 2))
-  (let ((command (plist-get properties :command))
-        (parser (plist-get properties :error-parser))
-        (filter (plist-get properties :error-filter))
-        (explainer (plist-get properties :error-explainer))
-        (predicate (plist-get properties :predicate))
-        (enabled-fn (plist-get properties :enabled))
-        (verify-fn (plist-get properties :verify)))
-
-    `(progn
-       (flycheck-def-executable-var ,symbol ,(car command))
-
-       (flycheck-define-command-checker ',symbol
-         ,docstring
-         :command ',command
-         ,@(when parser
-             `(:error-parser #',parser))
-         :error-patterns ',(plist-get properties :error-patterns)
-         ,@(when filter
-             `(:error-filter #',filter))
-         ,@(when explainer
-             `(:error-explainer #',explainer))
-         :modes ',(plist-get properties :modes)
-         ,@(when predicate
-             `(:predicate #',predicate))
-         :next-checkers ',(plist-get properties :next-checkers)
-         ,@(when enabled-fn
-             `(:enabled #',enabled-fn))
-         ,@(when verify-fn
-             `(:verify #',verify-fn))
-         :standard-input ',(plist-get properties :standard-input)
-         :working-directory ',(plist-get properties :working-directory)))))
-
-
-;;; Built-in checkers
-(flycheck-def-args-var flycheck-gnat-args ada-gnat
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gnat-include-path nil ada-gnat
-  "A list of include directories for GNAT.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of gcc.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gnat-language-standard "2012" ada-gnat
-  "The language standard to use in GNAT.
-
-The value of this variable is either a string denoting a language
-standard, or nil, to use the default standard. When non-nil, pass
-the language standard via the `-std' option."
-  :type '(choice (const :tag "Default standard" nil)
-                 (string :tag "Language standard"))
-  :safe #'stringp
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gnat-warnings
-    '("wa") ada-gnat
-  "A list of additional Ada warnings to enable in GNAT.
-
-The value of this variable is a list of strings, where each
-string is the name of a warning category to enable. By default,
-most optional warnings are recommended, as in `-gnata'.
-
-Refer to Info Node `(gnat_ugn_unw)Warning Message Control' for
-more information about GNAT warnings."
-  :type '(repeat :tag "Warnings" (string :tag "Warning name"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-define-checker ada-gnat
-  "An Ada syntax checker using GNAT.
-
-Uses the GNAT compiler from GCC.  See URL
-`https://www.adacore.com/community/'."
-  :command ("gnatmake"
-            "-c"                        ; Just compile, don't bind
-            "-f"                        ; Force re-compilation
-            "-u"                        ; Compile the main file only
-            "-gnatf"                    ; Full error information
-            "-gnatef"                   ; Full source file name
-            "-D" temporary-directory
-            (option-list "-gnat" flycheck-gnat-warnings concat)
-            (option-list "-I" flycheck-gnat-include-path concat)
-            (option "-gnat" flycheck-gnat-language-standard concat)
-            (eval flycheck-gnat-args)
-            source)
-  :error-patterns
-  ((error line-start
-          (message "In file included from") " " (file-name) ":" line ":"
-          column ":"
-          line-end)
-   (info line-start (file-name) ":" line ":" column
-         ": note: " (message) line-end)
-   (warning line-start (file-name) ":" line ":" column
-            ": warning: " (message) line-end)
-   ;; no specific error prefix in Ada
-   (error line-start (file-name) ":" line ":" column
-          ": " (message) line-end))
-  :modes ada-mode)
-
-(flycheck-define-checker asciidoc
-  "A AsciiDoc syntax checker using the AsciiDoc compiler.
-
-See URL `http://www.methods.co.nz/asciidoc'."
-  :command ("asciidoc" "-o" null-device "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          "asciidoc: ERROR: <stdin>: Line " line ": " (message)
-          line-end)
-   (warning line-start
-            "asciidoc: WARNING: <stdin>: Line " line ": " (message)
-            line-end)
-   (info line-start
-         "asciidoc: DEPRECATED: <stdin>: Line " line ": " (message)
-         line-end))
-  :modes adoc-mode)
-
-(flycheck-define-checker asciidoctor
-  "An AsciiDoc syntax checker using the Asciidoctor compiler.
-
-See URL `http://asciidoctor.org'."
-  :command ("asciidoctor" "-o" null-device "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          "asciidoctor: ERROR: <stdin>: Line " line ": " (message)
-          line-end)
-   (warning line-start
-            "asciidoctor: WARNING: <stdin>: Line " line ": " (message)
-            line-end))
-  :modes adoc-mode)
-
-(flycheck-def-args-var flycheck-clang-args c/c++-clang
-  :package-version '(flycheck . "0.22"))
-
-(flycheck-def-option-var flycheck-clang-blocks nil c/c++-clang
-  "Enable blocks in Clang.
-
-When non-nil, enable blocks in Clang with `-fblocks'.  See URL
-`http://clang.llvm.org/docs/BlockLanguageSpec.html' for more
-information about blocks."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-clang-definitions nil c/c++-clang
-  "Additional preprocessor definitions for Clang.
-
-The value of this variable is a list of strings, where each
-string is an additional definition to pass to Clang, via the `-D'
-option."
-  :type '(repeat (string :tag "Definition"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.15"))
-
-(flycheck-def-option-var flycheck-clang-include-path nil c/c++-clang
-  "A list of include directories for Clang.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of Clang.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.14"))
-
-(flycheck-def-option-var flycheck-clang-includes nil c/c++-clang
-  "A list of additional include files for Clang.
-
-The value of this variable is a list of strings, where each
-string is a file to include before syntax checking.  Relative
-paths are relative to the file being checked."
-  :type '(repeat (file :tag "Include file"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.15"))
-
-(flycheck-def-option-var flycheck-clang-language-standard nil c/c++-clang
-  "The language standard to use in Clang.
-
-The value of this variable is either a string denoting a language
-standard, or nil, to use the default standard.  When non-nil,
-pass the language standard via the `-std' option."
-  :type '(choice (const :tag "Default standard" nil)
-                 (string :tag "Language standard"))
-  :safe #'stringp
-  :package-version '(flycheck . "0.15"))
-(make-variable-buffer-local 'flycheck-clang-language-standard)
-
-(flycheck-def-option-var flycheck-clang-ms-extensions nil c/c++-clang
-  "Whether to enable Microsoft extensions to C/C++ in Clang.
-
-When non-nil, enable Microsoft extensions to C/C++ via
-`-fms-extensions'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.16"))
-
-(flycheck-def-option-var flycheck-clang-no-exceptions nil c/c++-clang
-  "Whether to disable exceptions in Clang.
-
-When non-nil, disable exceptions for syntax checks, via
-`-fno-exceptions'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-clang-no-rtti nil c/c++-clang
-  "Whether to disable RTTI in Clang.
-
-When non-nil, disable RTTI for syntax checks, via `-fno-rtti'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.15"))
-
-(flycheck-def-option-var flycheck-clang-pedantic nil c/c++-clang
-  "Whether to warn about language extensions in Clang.
-
-For ISO C, follows the version specified by any -std option used.
-When non-nil, disable non-ISO extensions to C/C++ via
-`-pedantic'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.23"))
-
-(flycheck-def-option-var flycheck-clang-pedantic-errors nil c/c++-clang
-  "Whether to error on language extensions in Clang.
-
-For ISO C, follows the version specified by any -std option used.
-When non-nil, disable non-ISO extensions to C/C++ via
-`-pedantic-errors'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.23"))
-
-(flycheck-def-option-var flycheck-clang-standard-library nil c/c++-clang
-  "The standard library to use for Clang.
-
-The value of this variable is the name of a standard library as
-string, or nil to use the default standard library.
-
-Refer to the Clang manual at URL
-`http://clang.llvm.org/docs/UsersManual.html' for more
-information about the standard library."
-  :type '(choice (const "libc++")
-                 (const :tag "GNU libstdc++" "libstdc++")
-                 (string :tag "Library name"))
-  :safe #'stringp
-  :package-version '(flycheck . "0.15"))
-
-(flycheck-def-option-var flycheck-clang-warnings '("all" "extra") c/c++-clang
-  "A list of additional warnings to enable in Clang.
-
-The value of this variable is a list of strings, where each string
-is the name of a warning category to enable.  By default, all
-recommended warnings and some extra warnings are enabled (as by
-`-Wall' and `-Wextra' respectively).
-
-Refer to the Clang manual at URL
-`http://clang.llvm.org/docs/UsersManual.html' for more
-information about warnings."
-  :type '(choice (const :tag "No additional warnings" nil)
-                 (repeat :tag "Additional warnings"
-                         (string :tag "Warning name")))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.14"))
-
-(defun flycheck-c/c++-quoted-include-directory ()
-  "Get the directory for quoted includes.
-
-C/C++ compiles typicall look up includes with quotation marks in
-the directory of the file being compiled.  However, since
-Flycheck uses temporary copies for syntax checking, it needs to
-explicitly determine the directory for quoted includes.
-
-This function determines the directory by looking at function
-`buffer-file-name', or if that is nil, at `default-directory'."
-  (-if-let (fn (buffer-file-name))
-      (file-name-directory fn)
-    ;; If the buffer has no file name, fall back to its default directory
-    default-directory))
-
-(flycheck-define-checker c/c++-clang
-  "A C/C++ syntax checker using Clang.
-
-See URL `http://clang.llvm.org/'."
-  :command ("clang"
-            "-fsyntax-only"
-            "-fno-color-diagnostics"    ; Do not include color codes in output
-            "-fno-caret-diagnostics"    ; Do not visually indicate the source
-                                        ; location
-            "-fno-diagnostics-show-option" ; Do not show the corresponding
-                                        ; warning group
-            "-iquote" (eval (flycheck-c/c++-quoted-include-directory))
-            (option "-std=" flycheck-clang-language-standard concat)
-            (option-flag "-pedantic" flycheck-clang-pedantic)
-            (option-flag "-pedantic-errors" flycheck-clang-pedantic-errors)
-            (option "-stdlib=" flycheck-clang-standard-library concat)
-            (option-flag "-fms-extensions" flycheck-clang-ms-extensions)
-            (option-flag "-fno-exceptions" flycheck-clang-no-exceptions)
-            (option-flag "-fno-rtti" flycheck-clang-no-rtti)
-            (option-flag "-fblocks" flycheck-clang-blocks)
-            (option-list "-include" flycheck-clang-includes)
-            (option-list "-W" flycheck-clang-warnings concat)
-            (option-list "-D" flycheck-clang-definitions concat)
-            (option-list "-I" flycheck-clang-include-path)
-            (eval flycheck-clang-args)
-            "-x" (eval
-                  (pcase major-mode
-                    (`c++-mode "c++")
-                    (`c-mode "c")))
-            ;; Read from standard input
-            "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          (message "In file included from") " " (or "<stdin>" (file-name))
-          ":" line ":" line-end)
-   (info line-start (or "<stdin>" (file-name)) ":" line ":" column
-         ": note: " (optional (message)) line-end)
-   (warning line-start (or "<stdin>" (file-name)) ":" line ":" column
-            ": warning: " (optional (message)) line-end)
-   (error line-start (or "<stdin>" (file-name)) ":" line ":" column
-          ": " (or "fatal error" "error") ": " (optional (message)) line-end))
-  :error-filter
-  (lambda (errors)
-    (let ((errors (flycheck-sanitize-errors errors)))
-      (dolist (err errors)
-        ;; Clang will output empty messages for #error/#warning pragmas without
-        ;; messages.  We fill these empty errors with a dummy message to get
-        ;; them past our error filtering
-        (setf (flycheck-error-message err)
-              (or (flycheck-error-message err) "no message")))
-      (flycheck-fold-include-levels errors "In file included from")))
-  :modes (c-mode c++-mode)
-  :next-checkers ((warning . c/c++-cppcheck)))
-
-(flycheck-def-args-var flycheck-gcc-args c/c++-gcc
-  :package-version '(flycheck . "0.22"))
-
-(flycheck-def-option-var flycheck-gcc-definitions nil c/c++-gcc
-  "Additional preprocessor definitions for GCC.
-
-The value of this variable is a list of strings, where each
-string is an additional definition to pass to GCC, via the `-D'
-option."
-  :type '(repeat (string :tag "Definition"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gcc-include-path nil c/c++-gcc
-  "A list of include directories for GCC.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of gcc.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gcc-includes nil c/c++-gcc
-  "A list of additional include files for GCC.
-
-The value of this variable is a list of strings, where each
-string is a file to include before syntax checking.  Relative
-paths are relative to the file being checked."
-  :type '(repeat (file :tag "Include file"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gcc-language-standard nil c/c++-gcc
-  "The language standard to use in GCC.
-
-The value of this variable is either a string denoting a language
-standard, or nil, to use the default standard.  When non-nil,
-pass the language standard via the `-std' option."
-  :type '(choice (const :tag "Default standard" nil)
-                 (string :tag "Language standard"))
-  :safe #'stringp
-  :package-version '(flycheck . "0.20"))
-(make-variable-buffer-local 'flycheck-gcc-language-standard)
-
-(flycheck-def-option-var flycheck-gcc-no-exceptions nil c/c++-gcc
-  "Whether to disable exceptions in GCC.
-
-When non-nil, disable exceptions for syntax checks, via
-`-fno-exceptions'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gcc-no-rtti nil c/c++-gcc
-  "Whether to disable RTTI in GCC.
-
-When non-nil, disable RTTI for syntax checks, via `-fno-rtti'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gcc-openmp nil c/c++-gcc
-  "Whether to enable OpenMP in GCC.
-
-When non-nil, enable OpenMP for syntax checkers, via
-`-fopenmp'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.21"))
-
-(flycheck-def-option-var flycheck-gcc-pedantic nil c/c++-gcc
-  "Whether to warn about language extensions in GCC.
-
-For ISO C, follows the version specified by any -std option used.
-When non-nil, disable non-ISO extensions to C/C++ via
-`-pedantic'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.23"))
-
-(flycheck-def-option-var flycheck-gcc-pedantic-errors nil c/c++-gcc
-  "Whether to error on language extensions in GCC.
-
-For ISO C, follows the version specified by any -std option used.
-When non-nil, disable non-ISO extensions to C/C++ via
-`-pedantic-errors'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.23"))
-
-(flycheck-def-option-var flycheck-gcc-warnings '("all" "extra") c/c++-gcc
-  "A list of additional warnings to enable in GCC.
-
-The value of this variable is a list of strings, where each string
-is the name of a warning category to enable.  By default, all
-recommended warnings and some extra warnings are enabled (as by
-`-Wall' and `-Wextra' respectively).
-
-Refer to the gcc manual at URL
-`https://gcc.gnu.org/onlinedocs/gcc/' for more information about
-warnings."
-  :type '(choice (const :tag "No additional warnings" nil)
-                 (repeat :tag "Additional warnings"
-                         (string :tag "Warning name")))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-define-checker c/c++-gcc
-  "A C/C++ syntax checker using GCC.
-
-Requires GCC 4.4 or newer.  See URL `https://gcc.gnu.org/'."
-  :command ("gcc"
-            "-fshow-column"
-            "-iquote" (eval (flycheck-c/c++-quoted-include-directory))
-            (option "-std=" flycheck-gcc-language-standard concat)
-            (option-flag "-pedantic" flycheck-gcc-pedantic)
-            (option-flag "-pedantic-errors" flycheck-gcc-pedantic-errors)
-            (option-flag "-fno-exceptions" flycheck-gcc-no-exceptions)
-            (option-flag "-fno-rtti" flycheck-gcc-no-rtti)
-            (option-flag "-fopenmp" flycheck-gcc-openmp)
-            (option-list "-include" flycheck-gcc-includes)
-            (option-list "-W" flycheck-gcc-warnings concat)
-            (option-list "-D" flycheck-gcc-definitions concat)
-            (option-list "-I" flycheck-gcc-include-path)
-            (eval flycheck-gcc-args)
-            "-x" (eval
-                  (pcase major-mode
-                    (`c++-mode "c++")
-                    (`c-mode "c")))
-            ;; GCC performs full checking only when actually compiling, so
-            ;; `-fsyntax-only' is not enough. Just let it generate assembly
-            ;; code.
-            "-S" "-o" null-device
-            ;; Read from standard input
-            "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          (message "In file included from") " " (or "<stdin>" (file-name))
-          ":" line ":" column ":" line-end)
-   (info line-start (or "<stdin>" (file-name)) ":" line ":" column
-         ": note: " (message) line-end)
-   (warning line-start (or "<stdin>" (file-name)) ":" line ":" column
-            ": warning: " (message (one-or-more (not (any "\n["))))
-            (optional "[" (id (one-or-more not-newline)) "]") line-end)
-   (error line-start (or "<stdin>" (file-name)) ":" line ":" column
-          ": " (or "fatal error" "error") ": " (message) line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-fold-include-levels (flycheck-sanitize-errors errors)
-                                  "In file included from"))
-  :modes (c-mode c++-mode)
-  :next-checkers ((warning . c/c++-cppcheck)))
-
-(flycheck-def-option-var flycheck-cppcheck-checks '("style") c/c++-cppcheck
-  "Enabled checks for Cppcheck.
-
-The value of this variable is a list of strings, where each
-string is the name of an additional check to enable.  By default,
-all coding style checks are enabled.
-
-See section \"Enable message\" in the Cppcheck manual at URL
-`http://cppcheck.sourceforge.net/manual.pdf', and the
-documentation of the `--enable' option for more information,
-including a list of supported checks."
-  :type '(repeat :tag "Additional checks"
-                 (string :tag "Check name"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.14"))
-
-(flycheck-def-option-var flycheck-cppcheck-standards nil c/c++-cppcheck
-  "The standards to use in cppcheck.
-
-The value of this variable is either a list of strings denoting
-the standards to use, or nil to pass nothing to cppcheck.  When
-non-nil, pass the standards via one or more `--std=' options."
-  :type '(choice (const :tag "Default" nil)
-                 (repeat :tag "Custom standards"
-                         (string :tag "Standard name")))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "28"))
-(make-variable-buffer-local 'flycheck-cppcheck-standards)
-
-(flycheck-def-option-var flycheck-cppcheck-suppressions-file nil c/c++-cppcheck
-  "The suppressions file to use in cppcheck.
-
-The value of this variable is a file with the suppressions to
-use, or nil to pass nothing to cppcheck.  When non-nil, pass the
-suppressions file via the `--suppressions-list=' option."
-  :type '(choice (const :tag "Default" nil)
-                 (file :tag "Suppressions file"))
-  :safe #'stringp
-  :package-version '(flycheck . "32"))
-(make-variable-buffer-local 'flycheck-cppcheck-suppressions-file)
-
-(flycheck-def-option-var flycheck-cppcheck-suppressions nil c/c++-cppcheck
-  "The suppressions to use in cppcheck.
-
-The value of this variable is either a list of strings denoting
-the suppressions to use, or nil to pass nothing to cppcheck.
-When non-nil, pass the suppressions via one or more `--suppress='
-options."
-  :type '(choice (const :tag "Default" nil)
-                 (repeat :tag "Additional suppressions"
-                         (string :tag "Suppression")))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "28"))
-
-(flycheck-def-option-var flycheck-cppcheck-inconclusive nil c/c++-cppcheck
-  "Whether to enable Cppcheck inconclusive checks.
-
-When non-nil, enable Cppcheck inconclusive checks.  This allows Cppcheck to
-report warnings it's not certain of, but it may result in false positives.
-
-This will have no effect when using Cppcheck 1.53 and older."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.19"))
-
-(flycheck-def-option-var flycheck-cppcheck-include-path nil c/c++-cppcheck
-  "A list of include directories for cppcheck.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of cppcheck.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-define-checker c/c++-cppcheck
-  "A C/C++ checker using cppcheck.
-
-See URL `http://cppcheck.sourceforge.net/'."
-  :command ("cppcheck" "--quiet" "--xml-version=2" "--inline-suppr"
-            (option "--enable=" flycheck-cppcheck-checks concat
-                    flycheck-option-comma-separated-list)
-            (option-flag "--inconclusive" flycheck-cppcheck-inconclusive)
-            (option-list "-I" flycheck-cppcheck-include-path)
-            (option-list "--std=" flycheck-cppcheck-standards concat)
-            (option-list "--suppress=" flycheck-cppcheck-suppressions concat)
-            (option "--suppressions-list="
-                    flycheck-cppcheck-suppressions-file concat)
-            "-x" (eval
-                  (pcase major-mode
-                    (`c++-mode "c++")
-                    (`c-mode "c")))
-            source)
-  :error-parser flycheck-parse-cppcheck
-  :modes (c-mode c++-mode))
-
-(flycheck-define-checker cfengine
-  "A CFEngine syntax checker using cf-promises.
-
-See URL `https://cfengine.com/'."
-  :command ("cf-promises" "-Wall" "-f"
-            ;; We must stay in the same directory to resolve @include
-            source-inplace)
-  :error-patterns
-  ((warning line-start (file-name) ":" line ":" column
-            ": warning: " (message) line-end)
-   (error line-start (file-name) ":" line ":" column
-          ": error: " (message) line-end))
-  :modes (cfengine-mode cfengine3-mode))
-
-(flycheck-def-option-var flycheck-foodcritic-tags nil chef-foodcritic
-  "A list of tags to select for Foodcritic.
-
-The value of this variable is a list of strings where each string
-is a tag expression describing Foodcritic rules to enable or
-disable, via the `--tags' option.  To disable a tag, prefix it
-with `~'."
-  :type '(repeat :tag "Tags" (string :tag "Tag expression"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.23"))
-
-(flycheck-define-checker chef-foodcritic
-  "A Chef cookbooks syntax checker using Foodcritic.
-
-See URL `http://www.foodcritic.io'."
-  ;; Use `source-inplace' to allow resource discovery with relative paths.
-  ;; foodcritic interprets these as relative to the source file, so we need to
-  ;; stay within the source tree.  See
-  ;; https://github.com/flycheck/flycheck/pull/556
-  :command ("foodcritic"
-            (option-list "--tags" flycheck-foodcritic-tags)
-            source-inplace)
-  :error-patterns
-  ((error line-start (id (one-or-more alnum)) ": "
-          (message) ": " (file-name) ":" line line-end))
-  :modes (enh-ruby-mode ruby-mode)
-  :predicate
-  (lambda ()
-    (let ((parent-dir (file-name-directory
-                       (directory-file-name
-                        (expand-file-name default-directory)))))
-      (or
-       ;; Chef CookBook
-       ;; http://docs.opscode.com/chef/knife.html#id38
-       (locate-dominating-file parent-dir "recipes")
-       ;; Knife Solo
-       ;; http://matschaffer.github.io/knife-solo/#label-Init+command
-       (locate-dominating-file parent-dir "cookbooks")))))
-
-(flycheck-define-checker coffee
-  "A CoffeeScript syntax checker using coffee.
-
-See URL `https://coffeescript.org/'."
-  ;; --print suppresses generation of compiled .js files
-  :command ("coffee" "--compile" "--print" "--stdio")
-  :standard-input t
-  :error-patterns
-  ((error line-start "[stdin]:" line ":" column
-          ": error: " (message) line-end))
-  :modes coffee-mode
-  :next-checkers ((warning . coffee-coffeelint)))
-
-(flycheck-def-config-file-var flycheck-coffeelintrc coffee-coffeelint
-                              ".coffeelint.json"
-  :safe #'stringp)
-
-(flycheck-define-checker coffee-coffeelint
-  "A CoffeeScript style checker using coffeelint.
-
-See URL `http://www.coffeelint.org/'."
-  :command
-  ("coffeelint"
-   (config-file "--file" flycheck-coffeelintrc)
-   "--stdin" "--reporter" "checkstyle")
-  :standard-input t
-  :error-parser flycheck-parse-checkstyle
-  :error-filter (lambda (errors)
-                  (flycheck-remove-error-file-names
-                   "stdin" (flycheck-remove-error-ids
-                            (flycheck-sanitize-errors errors))))
-  :modes coffee-mode)
-
-(flycheck-define-checker coq
-  "A Coq syntax checker using the Coq compiler.
-
-See URL `https://coq.inria.fr/'."
-  ;; We use coqtop in batch mode, because coqc is picky about file names.
-  :command ("coqtop" "-batch" "-load-vernac-source" source)
-  :error-patterns
-  ((error line-start "File \"" (file-name) "\", line " line
-          ;; TODO: Parse the end column, once Flycheck supports that
-          ", characters " column "-" (one-or-more digit) ":\n"
-          (or "Syntax error:" "Error:")
-          ;; Most Coq error messages span multiple lines, and end with a dot.
-          ;; There are simple one-line messages, too, though.
-          (message (or (and (one-or-more (or not-newline "\n")) ".")
-                       (one-or-more not-newline)))
-          line-end))
-  :error-filter
-  (lambda (errors)
-    (dolist (err (flycheck-sanitize-errors errors))
-      (setf (flycheck-error-message err)
-            (replace-regexp-in-string (rx (1+ (syntax whitespace)) line-end)
-                                      "" (flycheck-error-message err)
-                                      'fixedcase 'literal)))
-    (flycheck-increment-error-columns errors))
-  :modes coq-mode)
-
-(flycheck-define-checker css-csslint
-  "A CSS syntax and style checker using csslint.
-
-See URL `https://github.com/CSSLint/csslint'."
-  :command ("csslint" "--format=checkstyle-xml" source)
-  :error-parser flycheck-parse-checkstyle
-  :error-filter flycheck-dequalify-error-ids
-  :modes css-mode)
-
-(defconst flycheck-stylelint-args '("--formatter" "json")
-  "Common arguments to stylelint invocations.")
-
-(flycheck-def-config-file-var flycheck-stylelintrc
-    (css-stylelint scss-stylelint less-stylelint) nil
-  :safe #'stringp)
-
-(flycheck-def-option-var flycheck-stylelint-quiet
-    nil (css-stylelint scss-stylelint less-stylelint)
-  "Whether to run stylelint in quiet mode.
-
-When non-nil, enable quiet mode, via `--quiet'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . 26))
-
-(defconst flycheck-stylelint-error-re
-  (flycheck-rx-to-string
-   '(: line-start (id (one-or-more word)) ": " (message) line-end)))
-
-(defun flycheck-parse-stylelint (output checker buffer)
-  "Parse stylelint errors from OUTPUT.
-
-CHECKER and BUFFER denoted the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-The CHECKER usually returns the errors as JSON.
-
-If the CHECKER throws an Error it returns an Error message with a stacktrace."
-  (condition-case nil
-      (flycheck-parse-stylelint-json output checker buffer)
-
-    ;; The output could not be parsed as JSON
-    (json-error
-
-     ;; Extract a flycheck error from the output (with a regular expression)
-     ;; For match-string 4/5 see flycheck-rx-message/flycheck-rx-id
-     (when (string-match flycheck-stylelint-error-re output)
-       (list (flycheck-error-new-at
-              1 nil 'error
-              (match-string 4 output)
-              :id (match-string 5 output)
-              :checker checker
-              :buffer buffer
-              :filename (buffer-file-name buffer)))))))
-
-(defun flycheck-parse-stylelint-json (output checker buffer)
-  "Parse stylelint JSON errors from OUTPUT.
-
-CHECKER and BUFFER denoted the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-See URL `http://stylelint.io/developer-guide/formatters/' for information
-about the JSON format of stylelint."
-  (let ((json-object-type 'plist))
-
-    ;; stylelint returns a vector of result objects
-    ;; Since we only passed one file, the first element is enough
-    (let* ((stylelint-output (elt (json-read-from-string output) 0))
-           (filename (buffer-file-name buffer))
-
-           ;; Turn all deprecations into warnings
-           (deprecations
-            (mapcar (lambda (d)
-                      (flycheck-error-new-at
-                       1 nil 'warning
-                       (plist-get d :text)
-                       :id "Deprecation Warning"
-                       :checker checker
-                       :buffer buffer
-                       :filename filename))
-                    (plist-get stylelint-output :deprecations)))
-
-           ;; Turn all invalid options into errors
-           (invalid-options
-            (mapcar (lambda (io)
-                      (flycheck-error-new-at
-                       1 nil 'error
-                       (plist-get io :text)
-                       :id "Invalid Option"
-                       :checker checker
-                       :buffer buffer
-                       :filename filename))
-                    (plist-get stylelint-output :invalidOptionWarnings)))
-
-           ;; Read all linting warnings
-           (warnings
-            (mapcar (lambda (w)
-                      (flycheck-error-new-at
-                       (plist-get w :line) (plist-get w :column)
-                       (pcase (plist-get w :severity)
-                         (`"error"   'error)
-                         (`"warning" 'warning)
-                         ;; Default to info for unknown .severity
-                         (_          'info))
-                       (plist-get w :text)
-                       :id (plist-get w :rule)
-                       :checker checker
-                       :buffer buffer
-                       :filename filename))
-                    (plist-get stylelint-output :warnings))))
-
-      ;; Return the combined errors (deprecations, invalid options, warnings)
-      (append deprecations invalid-options warnings))))
-
-(flycheck-define-checker css-stylelint
-  "A CSS syntax and style checker using stylelint.
-
-See URL `http://stylelint.io/'."
-  :command ("stylelint"
-            (eval flycheck-stylelint-args)
-            (option-flag "--quiet" flycheck-stylelint-quiet)
-            (config-file "--config" flycheck-stylelintrc))
-  :standard-input t
-  :error-parser flycheck-parse-stylelint
-  :modes (css-mode))
-
-(flycheck-def-option-var flycheck-cwl-schema-path nil cwl
-  "A path for the schema file for Common Workflow Language.
-
-The value of this variable is a string that denotes a path for
-the schema file of Common Workflow Language."
-  :type 'string
-  :safe #'stringp)
-
-(flycheck-define-checker cwl
-  "A CWL syntax checker using Schema Salad validator.
-
-Requires Schema Salad 2.6.20171101113912 or newer.
-See URL `https://www.commonwl.org/v1.0/SchemaSalad.html'."
-  :command ("schema-salad-tool"
-            "--quiet"
-            "--print-oneline"
-            (eval flycheck-cwl-schema-path)
-            source-inplace)
-  :error-patterns
-  ((error line-start
-          (file-name) ":" line ":" column ":" (zero-or-more blank)
-          (message (one-or-more not-newline))
-          line-end))
-  :modes cwl-mode)
-
-(defconst flycheck-d-module-re
-  (rx "module" (one-or-more (syntax whitespace))
-      (group (one-or-more (not (syntax whitespace))))
-      (zero-or-more (syntax whitespace))
-      ";")
-  "Regular expression to match a D module declaration.")
-
-(defun flycheck-d-base-directory ()
-  "Get the relative base directory path for this module."
-  (let* ((file-name (buffer-file-name))
-         (module-file (if (string= (file-name-nondirectory file-name)
-                                   "package.d")
-                          (directory-file-name (file-name-directory file-name))
-                        file-name)))
-    (flycheck-module-root-directory
-     (flycheck-find-in-buffer flycheck-d-module-re)
-     module-file)))
-
-(flycheck-def-option-var flycheck-dmd-include-path nil d-dmd
-  "A list of include directories for dmd.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of dmd.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.18"))
-
-(flycheck-def-args-var flycheck-dmd-args d-dmd
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-define-checker d-dmd
-  "A D syntax checker using the DMD compiler.
-
-Requires DMD 2.066 or newer.  See URL `https://dlang.org/'."
-  :command ("dmd"
-            "-debug"                    ; Compile in debug mode
-            "-o-"                       ; Don't generate an object file
-            "-vcolumns"                 ; Add columns in output
-            "-wi" ; Compilation will continue even if there are warnings
-            (eval (concat "-I" (flycheck-d-base-directory)))
-            (option-list "-I" flycheck-dmd-include-path concat)
-            (eval flycheck-dmd-args)
-            source)
-  :error-patterns
-  ((error line-start
-          (file-name) "(" line "," column "): Error: " (message)
-          line-end)
-   (warning line-start (file-name) "(" line "," column "): "
-            (or "Warning" "Deprecation") ": " (message) line-end)
-   (info line-start (file-name) "(" line "," column "): "
-         (one-or-more " ") (message) line-end))
-  :modes d-mode)
-
-(flycheck-define-checker dockerfile-hadolint
-  "A Dockerfile syntax checker using the hadolint.
-
-See URL `http://github.com/hadolint/hadolint/'."
-  :command ("hadolint" "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          (file-name) ":" line ":" column " " (message)
-          line-end)
-   (warning line-start
-            (file-name) ":" line " " (id (one-or-more alnum)) " " (message)
-            line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors
-     (flycheck-remove-error-file-names "/dev/stdin" errors)))
-  :modes dockerfile-mode)
-
-(defconst flycheck-this-emacs-executable
-  (concat invocation-directory invocation-name)
-  "The path to the currently running Emacs executable.")
-
-(defconst flycheck-emacs-args '("-Q" "--batch")
-  "Common arguments to Emacs invocations.")
-
-(defmacro flycheck-prepare-emacs-lisp-form (&rest body)
-  "Prepare BODY for use as check form in a subprocess."
-  (declare (indent 0))
-  `(flycheck-sexp-to-string
-    '(progn
-       (defvar jka-compr-inhibit)
-       (unwind-protect
-           ;; Flycheck inhibits compression of temporary files, thus we
-           ;; must not attempt to decompress.
-           (let ((jka-compr-inhibit t))
-             ;; Strip option-argument separator from arguments, if present
-             (when (equal (car command-line-args-left) "--")
-               (setq command-line-args-left (cdr command-line-args-left)))
-             ,@body)
-         ;; Prevent Emacs from processing the arguments on its own, see
-         ;; https://github.com/flycheck/flycheck/issues/319
-         (setq command-line-args-left nil)))))
-
-(defconst flycheck-emacs-lisp-check-form
-  (flycheck-prepare-emacs-lisp-form
-    ;; Keep track of the generated bytecode files, to delete them after byte
-    ;; compilation.
-    (defvar flycheck-byte-compiled-files nil)
-    (let ((byte-compile-dest-file-function
-           (lambda (source)
-             (let ((temp-file (make-temp-file (file-name-nondirectory source))))
-               (push temp-file flycheck-byte-compiled-files)
-               temp-file))))
-      (unwind-protect
-          (byte-compile-file (car command-line-args-left))
-        (mapc (lambda (f) (ignore-errors (delete-file f)))
-              flycheck-byte-compiled-files))
-      (when (bound-and-true-p flycheck-emacs-lisp-check-declare)
-        (check-declare-file (car command-line-args-left))))))
-
-(flycheck-def-option-var flycheck-emacs-lisp-load-path nil emacs-lisp
-  "Load path to use in the Emacs Lisp syntax checker.
-
-When set to `inherit', use the `load-path' of the current Emacs
-session during syntax checking.
-
-When set to a list of strings, add each directory in this list to
-the `load-path' before invoking the byte compiler.  Relative
-paths in this list are expanded against the `default-directory'
-of the buffer to check.
-
-When nil, do not explicitly set the `load-path' during syntax
-checking.  The syntax check only uses the built-in `load-path' of
-Emacs in this case.
-
-Note that changing this variable can lead to wrong results of the
-syntax check, e.g. if an unexpected version of a required library
-is used."
-  :type '(choice (const :tag "Inherit current `load-path'" inherit)
-                 (repeat :tag "Load path" directory))
-  :risky t
-  :package-version '(flycheck . "0.14"))
-
-(flycheck-def-option-var flycheck-emacs-lisp-initialize-packages
-    'auto emacs-lisp
-  "Whether to initialize packages in the Emacs Lisp syntax checker.
-
-When nil, never initialize packages.  When `auto', initialize
-packages only when checking `user-init-file' or files from
-`user-emacs-directory'.  For any other non-nil value, always
-initialize packages.
-
-When initializing packages is enabled the `emacs-lisp' syntax
-checker calls `package-initialize' before byte-compiling the file
-to be checked.  It also sets `package-user-dir' according to
-`flycheck-emacs-lisp-package-user-dir'."
-  :type '(choice (const :tag "Do not initialize packages" nil)
-                 (const :tag "Initialize packages for configuration only" auto)
-                 (const :tag "Always initialize packages" t))
-  :risky t
-  :package-version '(flycheck . "0.14"))
-
-(defconst flycheck-emacs-lisp-package-initialize-form
-  (flycheck-sexp-to-string
-   '(with-demoted-errors "Error during package initialization: %S"
-      (package-initialize)))
-  "Form used to initialize packages.")
-
-(defun flycheck-option-emacs-lisp-package-initialize (value)
-  "Option VALUE filter for `flycheck-emacs-lisp-initialize-packages'."
-  (let ((shall-initialize
-         (if (eq value 'auto)
-             (or (flycheck-in-user-emacs-directory-p (buffer-file-name))
-                 ;; `user-init-file' is nil in non-interactive sessions.  Now,
-                 ;; no user would possibly use Flycheck in a non-interactive
-                 ;; session, but our unit tests run non-interactively, so we
-                 ;; have to handle this case anyway
-                 (and user-init-file
-                      (flycheck-same-files-p (buffer-file-name)
-                                             user-init-file)))
-           value)))
-    (when shall-initialize
-      ;; If packages shall be initialized, return the corresponding form,
-      ;; otherwise make Flycheck ignore the option by returning nil.
-      flycheck-emacs-lisp-package-initialize-form)))
-
-(flycheck-def-option-var flycheck-emacs-lisp-package-user-dir nil emacs-lisp
-  "Package directory for the Emacs Lisp syntax checker.
-
-If set to a string set `package-user-dir' to the value of this
-variable before initializing packages. If set to nil just inherit
-the value of `package-user-dir' from the running Emacs session.
-
-This variable has no effect, if
-`flycheck-emacs-lisp-initialize-packages' is nil."
-  :type '(choice (const :tag "Default package directory" nil)
-                 (directory :tag "Custom package directory"))
-  :risky t
-  :package-version '(flycheck . "0.14"))
-
-(defun flycheck-option-emacs-lisp-package-user-dir (value)
-  "Option VALUE filter for `flycheck-emacs-lisp-package-user-dir'."
-  ;; Inherit the package directory from our Emacs session
-  (let ((value (or value (bound-and-true-p package-user-dir))))
-    (when value
-      (flycheck-sexp-to-string `(setq package-user-dir ,value)))))
-
-(flycheck-def-option-var flycheck-emacs-lisp-check-declare nil emacs-lisp
-  "If non-nil, check ‘declare-function’ forms using ‘check-declare-file’."
-  :type '(choice (const :tag "Do not check declare forms" nil)
-                 (const :tag "Check declare forms" t))
-  :risky t
-  :package-version '(flycheck . "31"))
-
-(defun flycheck-option-emacs-lisp-check-declare (value)
-  "Option VALUE filter for `flycheck-emacs-lisp-check-declare'."
-  (when value
-    (flycheck-sexp-to-string
-     `(progn
-        (defvar flycheck-emacs-lisp-check-declare)
-        (setq flycheck-emacs-lisp-check-declare ,value)))))
-
-(flycheck-define-checker emacs-lisp
-  "An Emacs Lisp syntax checker using the Emacs Lisp Byte compiler.
-
-See Info Node `(elisp)Byte Compilation'."
-  :command ("emacs" (eval flycheck-emacs-args)
-            (eval
-             (let ((path (pcase flycheck-emacs-lisp-load-path
-                           (`inherit load-path)
-                           (p (seq-map #'expand-file-name p)))))
-               (flycheck-prepend-with-option "--directory" path)))
-            (option "--eval" flycheck-emacs-lisp-package-user-dir nil
-                    flycheck-option-emacs-lisp-package-user-dir)
-            (option "--eval" flycheck-emacs-lisp-initialize-packages nil
-                    flycheck-option-emacs-lisp-package-initialize)
-            (option "--eval" flycheck-emacs-lisp-check-declare nil
-                    flycheck-option-emacs-lisp-check-declare)
-            "--eval" (eval flycheck-emacs-lisp-check-form)
-            "--"
-            source-inplace)
-  :error-patterns
-  ((error line-start (file-name) ":" line ":" column ":Error:"
-          (message (zero-or-more not-newline)
-                   (zero-or-more "\n    " (zero-or-more not-newline)))
-          line-end)
-   (warning line-start (file-name) ":" line ":" column ":Warning:"
-            (message (zero-or-more not-newline)
-                     (zero-or-more "\n    " (zero-or-more not-newline)))
-            line-end)
-   (warning line-start (file-name) ":" line (optional ":" column)
-            ":Warning (check-declare): said\n"
-            (message (zero-or-more "    " (zero-or-more not-newline))
-                     (zero-or-more "\n    " (zero-or-more not-newline)))
-            line-end)
-   ;; The following is for Emacs 24 ‘check-declare-file’, which uses a
-   ;; less informative format.
-   (warning line-start "Warning (check-declare): " (file-name) " said "
-            (message (zero-or-more not-newline))
-            line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-fill-empty-line-numbers
-     (flycheck-collapse-error-message-whitespace
-      (flycheck-sanitize-errors errors))))
-  :modes (emacs-lisp-mode lisp-interaction-mode)
-  :predicate
-  (lambda ()
-    (and
-     ;; Ensure that we only check buffers with a backing file.  For buffers
-     ;; without a backing file we cannot guarantee that file names in error
-     ;; messages are properly resolved, because `byte-compile-file' emits file
-     ;; names *relative to the directory of the checked file* instead of the
-     ;; working directory.  Hence our backwards-substitution will fail, because
-     ;; the checker process has a different base directory to resolve relative
-     ;; file names than the Flycheck code working on the buffer to check.
-     (buffer-file-name)
-     ;; Do not check buffers which should not be byte-compiled.  The checker
-     ;; process will refuse to compile these, which would confuse Flycheck
-     (not (bound-and-true-p no-byte-compile))
-     ;; Do not check buffers used for autoloads generation during package
-     ;; installation.  These buffers are too short-lived for being checked, and
-     ;; doing so causes spurious errors.  See
-     ;; https://github.com/flycheck/flycheck/issues/45 and
-     ;; https://github.com/bbatsov/prelude/issues/248.  We must also not check
-     ;; compilation buffers, but as these are ephemeral, Flycheck won't check
-     ;; them anyway.
-     (not (flycheck-autoloads-file-p))))
-  :next-checkers (emacs-lisp-checkdoc))
-
-(defconst flycheck-emacs-lisp-checkdoc-form
-  (flycheck-prepare-emacs-lisp-form
-    (unless (require 'elisp-mode nil 'no-error)
-      ;; TODO: Fallback for Emacs 24, remove when dropping support for 24
-      (require 'lisp-mode))
-    (require 'checkdoc)
-
-    (let ((source (car command-line-args-left))
-          ;; Remember the default directory of the process
-          (process-default-directory default-directory))
-      ;; Note that we deliberately use our custom approach even despite of
-      ;; `checkdoc-file' which was added to Emacs 25.1.  While it's conceptually
-      ;; the better thing, its implementation has too many flaws to be of use
-      ;; for us.
-      (with-temp-buffer
-        (insert-file-contents source 'visit)
-        (setq buffer-file-name source)
-        ;; And change back to the process default directory to make file-name
-        ;; back-substutition work
-        (setq default-directory process-default-directory)
-        (with-demoted-errors "Error in checkdoc: %S"
-          ;; Checkdoc needs the Emacs Lisp syntax table and comment syntax to
-          ;; parse sexps and identify docstrings correctly; see
-          ;; https://github.com/flycheck/flycheck/issues/833
-          (delay-mode-hooks (emacs-lisp-mode))
-          (setq delayed-mode-hooks nil)
-          (checkdoc-current-buffer t)
-          (with-current-buffer checkdoc-diagnostic-buffer
-            (princ (buffer-substring-no-properties (point-min) (point-max)))
-            (kill-buffer)))))))
-
-(defconst flycheck-emacs-lisp-checkdoc-variables
-  '(checkdoc-symbol-words
-    checkdoc-arguments-in-order-flag
-    checkdoc-force-history-flag
-    checkdoc-permit-comma-termination-flag
-    checkdoc-force-docstrings-flag
-    checkdoc-package-keywords-flag
-    checkdoc-spellcheck-documentation-flag
-    checkdoc-verb-check-experimental-flag
-    checkdoc-max-keyref-before-warn
-    sentence-end-double-space)
-  "Variables inherited by the checkdoc subprocess.")
-
-(defun flycheck-emacs-lisp-checkdoc-variables-form ()
-  "Make a sexp to pass relevant variables to a checkdoc subprocess.
-
-Variables are taken from `flycheck-emacs-lisp-checkdoc-variables'."
-  `(progn
-     ,@(seq-map (lambda (opt) `(setq-default ,opt ',(symbol-value opt)))
-                (seq-filter #'boundp flycheck-emacs-lisp-checkdoc-variables))))
-
-(flycheck-define-checker emacs-lisp-checkdoc
-  "An Emacs Lisp style checker using CheckDoc.
-
-The checker runs `checkdoc-current-buffer'."
-  :command ("emacs" (eval flycheck-emacs-args)
-            "--eval" (eval (flycheck-sexp-to-string
-                            (flycheck-emacs-lisp-checkdoc-variables-form)))
-            "--eval" (eval flycheck-emacs-lisp-checkdoc-form)
-            "--" source)
-  :error-patterns
-  ((warning line-start (file-name) ":" line ": " (message) line-end))
-  :modes (emacs-lisp-mode)
-  :predicate
-  (lambda ()
-    ;; Do not check Autoloads, Cask/Carton and dir-locals files.  These files
-    ;; really don't need to follow Checkdoc conventions.
-    (not (or (flycheck-autoloads-file-p)
-             (and (buffer-file-name)
-                  (member (file-name-nondirectory (buffer-file-name))
-                          '("Cask" "Carton" ".dir-locals.el")))))))
-
-(dolist (checker '(emacs-lisp emacs-lisp-checkdoc))
-  (setf (car (flycheck-checker-get checker 'command))
-        flycheck-this-emacs-executable))
-
-(flycheck-def-option-var flycheck-erlang-include-path nil erlang
-  "A list of include directories for Erlang.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of erlc.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-def-option-var flycheck-erlang-library-path nil erlang
-  "A list of library directories for Erlang.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the library path of erlc.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Library directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-define-checker erlang
-  "An Erlang syntax checker using the Erlang interpreter.
-
-See URL `http://www.erlang.org/'."
-  :command ("erlc"
-            "-o" temporary-directory
-            (option-list "-I" flycheck-erlang-include-path)
-            (option-list "-pa" flycheck-erlang-library-path)
-            "-Wall"
-            source)
-  :error-patterns
-  ((warning line-start (file-name) ":" line ": Warning:" (message) line-end)
-   (error line-start (file-name) ":" line ": " (message) line-end))
-  :modes erlang-mode
-  :enabled (lambda () (string-suffix-p ".erl" (buffer-file-name))))
-
-(defun contains-rebar-config (dir-name)
-  "Return DIR-NAME if DIR-NAME/rebar.config exists, nil otherwise."
-  (when (file-exists-p (expand-file-name "rebar.config" dir-name))
-    dir-name))
-
-(defun locate-rebar3-project-root (file-name &optional prev-file-name acc)
-  "Find the top-most rebar project root for source FILE-NAME.
-
-A project root directory is any directory containing a
-rebar.config file.  Find the top-most directory to move out of any
-nested dependencies.
-
-FILE-NAME is a source file for which to find the project.
-
-PREV-FILE-NAME helps us prevent infinite looping
-
-ACC is an accumulator that keeps the list of results, the first
-non-nil of which will be our project root.
-
-Return the absolute path to the directory"
-  (if (string= file-name prev-file-name)
-      (car (remove nil acc))
-    (let ((current-dir (file-name-directory file-name)))
-      (locate-rebar3-project-root
-       (directory-file-name current-dir)
-       file-name
-       (cons (contains-rebar-config current-dir) acc)))))
-
-(defun flycheck-rebar3-project-root (&optional _checker)
-  "Return directory where rebar.config is located."
-  (locate-rebar3-project-root buffer-file-name))
-
-(flycheck-define-checker erlang-rebar3
-  "An Erlang syntax checker using the rebar3 build tool."
-  :command ("rebar3" "compile")
-  :error-parser
-  (lambda (output checker buffer)
-    ;; rebar3 outputs ANSI terminal colors, which don't match up with
-    ;; :error-patterns, so we strip those color codes from the output
-    ;; here before passing it along to the default behavior. The
-    ;; relevant discussion can be found at
-    ;; https://github.com/flycheck/flycheck/pull/1144
-    (require 'ansi-color)
-    (flycheck-parse-with-patterns
-     (and (fboundp 'ansi-color-filter-apply) (ansi-color-filter-apply output))
-     checker buffer))
-  :error-patterns
-  ((warning line-start
-            (file-name) ":" line ": Warning:" (message) line-end)
-   (error line-start
-          (file-name) ":" line ": " (message) line-end))
-  :modes erlang-mode
-  :enabled flycheck-rebar3-project-root
-  :predicate flycheck-buffer-saved-p
-  :working-directory flycheck-rebar3-project-root)
-
-(flycheck-define-checker eruby-erubis
-  "An eRuby syntax checker using the `erubis' command.
-
-See URL `http://www.kuwata-lab.com/erubis/'."
-  :command ("erubis" "-z" source)
-  :error-patterns
-  ((error line-start (file-name) ":" line ": " (message) line-end))
-  :modes (html-erb-mode rhtml-mode))
-
-(flycheck-def-args-var flycheck-gfortran-args fortran-gfortran
-  :package-version '(flycheck . "0.22"))
-
-(flycheck-def-option-var flycheck-gfortran-include-path nil fortran-gfortran
-  "A list of include directories for GCC Fortran.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of gcc.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gfortran-language-standard "f95"
-                         fortran-gfortran
-  "The language standard to use in GFortran.
-
-The value of this variable is either a string denoting a language
-standard, or nil, to use the default standard.  When non-nil,
-pass the language standard via the `-std' option."
-  :type '(choice (const :tag "Default standard" nil)
-                 (string :tag "Language standard"))
-  :safe #'stringp
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-def-option-var flycheck-gfortran-layout nil fortran-gfortran
-  "The source code layout to use in GFortran.
-
-The value of this variable is one of the following symbols:
-
-nil
-     Let gfortran determine the layout from the extension
-
-`free'
-     Use free form layout
-
-
-`fixed'
-     Use fixed form layout
-
-In any other case, an error is signaled."
-  :type '(choice (const :tag "Guess layout from extension" nil)
-                 (const :tag "Free form layout" free)
-                 (const :tag "Fixed form layout" fixed))
-  :safe (lambda (value) (or (not value) (memq value '(free fixed))))
-  :package-version '(flycheck . "0.20"))
-
-(defun flycheck-option-gfortran-layout (value)
-  "Option VALUE filter for `flycheck-gfortran-layout'."
-  (pcase value
-    (`nil nil)
-    (`free "free-form")
-    (`fixed "fixed-form")
-    (_ (error "Invalid value for flycheck-gfortran-layout: %S" value))))
-
-(flycheck-def-option-var flycheck-gfortran-warnings '("all" "extra")
-                         fortran-gfortran
-  "A list of warnings for GCC Fortran.
-
-The value of this variable is a list of strings, where each string
-is the name of a warning category to enable.  By default, all
-recommended warnings and some extra warnings are enabled (as by
-`-Wall' and `-Wextra' respectively).
-
-Refer to the gfortran manual at URL
-`https://gcc.gnu.org/onlinedocs/gfortran/' for more information
-about warnings"
-  :type '(choice (const :tag "No additional warnings" nil)
-                 (repeat :tag "Additional warnings"
-                         (string :tag "Warning name")))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-define-checker fortran-gfortran
-  "An Fortran syntax checker using GCC.
-
-Uses GCC's Fortran compiler gfortran.  See URL
-`https://gcc.gnu.org/onlinedocs/gfortran/'."
-  :command ("gfortran"
-            "-fsyntax-only"
-            "-fshow-column"
-            ;; Do not visually indicate the source location
-            "-fno-diagnostics-show-caret"
-            ;; Do not show the corresponding warning group
-            "-fno-diagnostics-show-option"
-            ;; Fortran has similar include processing as C/C++
-            "-iquote" (eval (flycheck-c/c++-quoted-include-directory))
-            (option "-std=" flycheck-gfortran-language-standard concat)
-            (option "-f" flycheck-gfortran-layout concat
-                    flycheck-option-gfortran-layout)
-            (option-list "-W" flycheck-gfortran-warnings concat)
-            (option-list "-I" flycheck-gfortran-include-path concat)
-            (eval flycheck-gfortran-args)
-            source)
-  :error-patterns
-  ((error line-start (file-name) ":" line (or ":" ".") column (or ": " ":\n")
-          (or (= 3 (zero-or-more not-newline) "\n") "")
-          (or "Error" "Fatal Error") ": "
-          (message) line-end)
-   (warning line-start (file-name) ":" line (or ":" ".") column (or ": " ":\n")
-            (or (= 3 (zero-or-more not-newline) "\n") "")
-            "Warning: " (message) line-end))
-  :modes (fortran-mode f90-mode))
-
-(flycheck-define-checker go-gofmt
-  "A Go syntax and style checker using the gofmt utility.
-
-See URL `https://golang.org/cmd/gofmt/'."
-  :command ("gofmt")
-  :standard-input t
-  :error-patterns
-  ((error line-start "<standard input>:" line ":" column ": "
-          (message) line-end))
-  :modes go-mode
-  :next-checkers ((warning . go-golint)
-                  ;; Fall back, if go-golint doesn't exist
-                  (warning . go-vet)
-                  ;; Fall back, if go-vet doesn't exist
-                  (warning . go-build) (warning . go-test)
-                  (warning . go-errcheck)
-                  (warning . go-unconvert)
-                  (warning . go-megacheck)))
-
-(flycheck-define-checker go-golint
-  "A Go style checker using Golint.
-
-See URL `https://github.com/golang/lint'."
-  :command ("golint" source)
-  :error-patterns
-  ((warning line-start (file-name) ":" line ":" column ": " (message) line-end))
-  :modes go-mode
-  :next-checkers (go-vet
-                  ;; Fall back, if go-vet doesn't exist
-                  go-build go-test go-errcheck go-unconvert go-megacheck))
-
-(flycheck-def-option-var flycheck-go-vet-print-functions nil go-vet
-  "A list of print-like functions for `go tool vet'.
-
-Go vet will check these functions for format string problems and
-issues, such as a mismatch between the number of formats used,
-and the number of arguments given.
-
-Each entry is in the form Name:N where N is the zero-based
-argument position of the first argument involved in the print:
-either the format or the first print argument for non-formatted
-prints.  For example, if you have Warn and Warnf functions that
-take an io.Writer as their first argument, like Fprintf,
--printfuncs=Warn:1,Warnf:1 "
-  :type '(repeat :tag "print-like functions"
-                 (string :tag "function"))
-  :safe #'flycheck-string-list-p)
-
-(flycheck-def-option-var flycheck-go-vet-shadow nil go-vet
-  "Whether to check for shadowed variables with `go tool vet'.
-
-When non-nil check for shadowed variables.  When `strict' check
-more strictly, which can very noisy.  When nil do not check for
-shadowed variables.
-
-This option requires Go 1.6 or newer."
-  :type '(choice (const :tag "Do not check for shadowed variables" nil)
-                 (const :tag "Check for shadowed variables" t)
-                 (const :tag "Strictly check for shadowed variables" strict)))
-
-(flycheck-def-option-var flycheck-go-megacheck-disabled-checkers nil
-                         go-megacheck
-  "A list of checkers to disable when running `megacheck'.
-
-The value of this variable is a list of strings, where each
-string is a checker to be disabled. Valid checkers are `simple',
-`staticcheck' and `unused'. When nil, all checkers will be
-enabled. "
-  :type '(set (const :tag "Disable simple" "simple")
-              (const :tag "Disable staticcheck" "staticcheck")
-              (const :tag "Disable unused" "unused"))
-  :safe #'flycheck-string-list-p)
-
-(flycheck-define-checker go-vet
-  "A Go syntax checker using the `go tool vet' command.
-
-See URL `https://golang.org/cmd/go/' and URL
-`https://golang.org/cmd/vet/'."
-  :command ("go" "tool" "vet" "-all"
-            (option "-printfuncs=" flycheck-go-vet-print-functions concat
-                    flycheck-option-comma-separated-list)
-            (option-flag "-shadow" flycheck-go-vet-shadow)
-            (option-list "-tags=" flycheck-go-build-tags concat)
-            (eval (when (eq flycheck-go-vet-shadow 'strict) "-shadowstrict"))
-            source)
-  :error-patterns
-  ((warning line-start (file-name) ":" line ": " (message) line-end))
-  :modes go-mode
-  ;; We must explicitly check whether the "vet" tool is available
-  :predicate (lambda ()
-               (let ((go (flycheck-checker-executable 'go-vet)))
-                 (member "vet" (ignore-errors (process-lines go "tool")))))
-  :next-checkers (go-build
-                  go-test
-                  ;; Fall back if `go build' or `go test' can be used
-                  go-errcheck
-                  go-unconvert
-                  go-megacheck)
-  :verify (lambda (_)
-            (let* ((go (flycheck-checker-executable 'go-vet))
-                   (have-vet (member "vet" (ignore-errors
-                                             (process-lines go "tool")))))
-              (list
-               (flycheck-verification-result-new
-                :label "go tool vet"
-                :message (if have-vet "present" "missing")
-                :face (if have-vet 'success '(bold error)))))))
-
-(flycheck-def-option-var flycheck-go-build-install-deps nil (go-build go-test)
-  "Whether to install dependencies in `go build' and `go test'.
-
-If non-nil automatically install dependencies with `go build'
-while syntax checking."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.25"))
-
-(flycheck-def-option-var flycheck-go-build-tags nil go-build
-  "A list of tags for `go build'.
-
-Each item is a string with a tag to be given to `go build'."
-  :type '(repeat (string :tag "Tag"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.25"))
-
-(flycheck-define-checker go-build
-  "A Go syntax and type checker using the `go build' command.
-
-Requires Go 1.6 or newer.  See URL `https://golang.org/cmd/go'."
-  :command ("go" "build"
-            (option-flag "-i" flycheck-go-build-install-deps)
-            ;; multiple tags are listed as "dev debug ..."
-            (option-list "-tags=" flycheck-go-build-tags concat)
-            "-o" null-device)
-  :error-patterns
-  ((error line-start (file-name) ":" line ":"
-          (optional column ":") " "
-          (message (one-or-more not-newline)
-                   (zero-or-more "\n\t" (one-or-more not-newline)))
-          line-end)
-   ;; Catch error message about multiple packages in a directory, which doesn't
-   ;; follow the standard error message format.
-   (info line-start
-         (message "can't load package: package "
-                  (one-or-more (not (any ?: ?\n)))
-                  ": found packages "
-                  (one-or-more not-newline))
-         line-end))
-  :error-filter
-  (lambda (errors)
-    (dolist (error errors)
-      (unless (flycheck-error-line error)
-        ;; Flycheck ignores errors without line numbers, but the error
-        ;; message about multiple packages in a directory doesn't come with a
-        ;; line number, so inject a fake one.
-        (setf (flycheck-error-line error) 1)))
-    errors)
-  :modes go-mode
-  :predicate (lambda ()
-               (and (flycheck-buffer-saved-p)
-                    (not (string-suffix-p "_test.go" (buffer-file-name)))))
-  :next-checkers ((warning . go-errcheck)
-                  (warning . go-unconvert)
-                  (warning . go-megacheck)))
-
-(flycheck-define-checker go-test
-  "A Go syntax and type checker using the `go test' command.
-
-Requires Go 1.6 or newer.  See URL `https://golang.org/cmd/go'."
-  :command ("go" "test"
-            (option-flag "-i" flycheck-go-build-install-deps)
-            (option-list "-tags=" flycheck-go-build-tags concat)
-            "-c" "-o" null-device)
-  :error-patterns
-  ((error line-start (file-name) ":" line ":"
-          (optional column ":") " "
-          (message (one-or-more not-newline)
-                   (zero-or-more "\n\t" (one-or-more not-newline)))
-          line-end))
-  :modes go-mode
-  :predicate
-  (lambda () (and (flycheck-buffer-saved-p)
-                  (string-suffix-p "_test.go" (buffer-file-name))))
-  :next-checkers ((warning . go-errcheck)
-                  (warning . go-unconvert)
-                  (warning . go-megacheck)))
-
-(flycheck-define-checker go-errcheck
-  "A Go checker for unchecked errors.
-
-Requires errcheck newer than commit 8515d34 (Aug 28th, 2015).
-
-See URL `https://github.com/kisielk/errcheck'."
-  :command ("errcheck"
-            "-abspath"
-            (option-list "-tags=" flycheck-go-build-tags concat)
-            ".")
-  :error-patterns
-  ((warning line-start
-            (file-name) ":" line ":" column (or (one-or-more "\t") ": " ":\t")
-            (message)
-            line-end))
-  :error-filter
-  (lambda (errors)
-    (let ((errors (flycheck-sanitize-errors errors)))
-      (dolist (err errors)
-        (-when-let (message (flycheck-error-message err))
-          ;; Improve the messages reported by errcheck to make them more clear.
-          (setf (flycheck-error-message err)
-                (format "Ignored `error` returned from `%s`" message)))))
-    errors)
-  :modes go-mode
-  :predicate (lambda () (flycheck-buffer-saved-p))
-  :next-checkers ((warning . go-unconvert)
-                  (warning . go-megacheck)))
-
-(flycheck-define-checker go-unconvert
-  "A Go checker looking for unnecessary type conversions.
-
-See URL `https://github.com/mdempsky/unconvert'."
-  :command ("unconvert" ".")
-  :error-patterns
-  ((warning line-start (file-name) ":" line ":" column ": " (message) line-end))
-  :modes go-mode
-  :predicate (lambda () (flycheck-buffer-saved-p))
-  :next-checkers ((warning . go-megacheck)))
-
-(flycheck-define-checker go-megacheck
-  "A Go checker that performs static analysis and linting using the `megacheck'
-command.
-
-Requires Go 1.6 or newer. See URL
-`https://github.com/dominikh/go-tools'."
-  :command ("megacheck"
-            (option-list "-tags=" flycheck-go-build-tags concat)
-            (eval (mapcar (lambda (checker) (concat "-" checker
-                                                    ".enabled=false"))
-                          flycheck-go-megacheck-disabled-checkers))
-            ;; Run in current directory to make megacheck aware of symbols
-            ;; declared in other files.
-            ".")
-  :error-patterns
-  ((warning line-start (file-name) ":" line ":" column ": " (message) line-end))
-  :modes go-mode)
-
-(flycheck-define-checker groovy
-  "A groovy syntax checker using groovy compiler API.
-
-See URL `http://www.groovy-lang.org'."
-  :command ("groovy" "-e"
-            "import org.codehaus.groovy.control.*
-
-unit = new CompilationUnit()
-unit.addSource(\"input\", System.in)
-
-try {
-    unit.compile(Phases.CONVERSION)
-} catch (MultipleCompilationErrorsException e) {
-    e.errorCollector.write(new PrintWriter(System.out, true), null)
-}")
-  :standard-input t
-  :error-patterns
-  ((error line-start "input: " line ":" (message)
-          " @ line " line ", column " column "." line-end))
-  :modes groovy-mode)
-
-(flycheck-define-checker haml
-  "A Haml syntax checker using the Haml compiler.
-
-See URL `http://haml.info'."
-  :command ("haml" "-c" "--stdin")
-  :standard-input t
-  :error-patterns
-  ((error line-start "Syntax error on line " line ": " (message) line-end)
-   (error line-start ":" line ": syntax error, " (message) line-end))
-  :modes haml-mode)
-
-(flycheck-define-checker handlebars
-  "A Handlebars syntax checker using the Handlebars compiler.
-
-See URL `http://handlebarsjs.com/'."
-  :command ("handlebars" "-i-")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          "Error: Parse error on line " line ":" (optional "\r") "\n"
-          (zero-or-more not-newline) "\n" (zero-or-more not-newline) "\n"
-          (message) line-end))
-  :modes (handlebars-mode handlebars-sgml-mode web-mode)
-  :predicate
-  (lambda ()
-    (if (eq major-mode 'web-mode)
-        ;; Check if this is a handlebars file since web-mode does not store the
-        ;; non-canonical engine name
-        (let* ((regexp-alist (bound-and-true-p web-mode-engine-file-regexps))
-               (pattern (cdr (assoc "handlebars" regexp-alist))))
-          (and pattern (buffer-file-name)
-               (string-match-p pattern (buffer-file-name))))
-      t)))
-
-(defconst flycheck-haskell-module-re
-  (rx line-start (zero-or-more (or "\n" (any space)))
-      "module" (one-or-more (or "\n" (any space)))
-      (group (one-or-more (not (any space "(" "\n")))))
-  "Regular expression for a Haskell module name.")
-
-(flycheck-def-args-var flycheck-ghc-args (haskell-stack-ghc haskell-ghc)
-  :package-version '(flycheck . "0.22"))
-
-(flycheck-def-option-var flycheck-ghc-stack-use-nix nil haskell-stack-ghc
-  "Whether to enable nix support in stack.
-
-When non-nil, stack will append '--nix' flag to any call."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "26"))
-
-(flycheck-def-option-var flycheck-ghc-stack-project-file nil haskell-stack-ghc
-  "Override project stack.yaml file.
-
-The value of this variable is a file path that refers to a yaml
-file for the current stack project. Relative file paths are
-resolved against the checker's working directory. When non-nil,
-stack will get overridden value via `--stack-yaml'."
-  :type 'string
-  :safe #'stringp
-  :package-version '(flycheck . "32"))
-
-(flycheck-def-option-var flycheck-ghc-no-user-package-database nil haskell-ghc
-  "Whether to disable the user package database in GHC.
-
-When non-nil, disable the user package database in GHC, via
-`-no-user-package-db'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.16"))
-
-(flycheck-def-option-var flycheck-ghc-package-databases nil haskell-ghc
-  "Additional module databases for GHC.
-
-The value of this variable is a list of strings, where each
-string is a directory of a package database.  Each package
-database is given to GHC via `-package-db'."
-  :type '(repeat (directory :tag "Package database"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.16"))
-
-(flycheck-def-option-var flycheck-ghc-search-path nil
-                         (haskell-stack-ghc haskell-ghc)
-  "Module search path for (Stack) GHC.
-
-The value of this variable is a list of strings, where each
-string is a directory containing Haskell modules.  Each directory
-is added to the GHC search path via `-i'."
-  :type '(repeat (directory :tag "Module directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.16"))
-
-(flycheck-def-option-var flycheck-ghc-language-extensions nil
-                         (haskell-stack-ghc haskell-ghc)
-  "Language extensions for (Stack) GHC.
-
-The value of this variable is a list of strings, where each
-string is a Haskell language extension, as in the LANGUAGE
-pragma.  Each extension is enabled via `-X'."
-  :type '(repeat (string :tag "Language extension"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.19"))
-
-(defvar flycheck-haskell-ghc-cache-directory nil
-  "The cache directory for `ghc' output.")
-
-(defun flycheck-haskell-ghc-cache-directory ()
-  "Get the cache location for `ghc' output.
-
-If no cache directory exists yet, create one and return it.
-Otherwise return the previously used cache directory."
-  (setq flycheck-haskell-ghc-cache-directory
-        (or flycheck-haskell-ghc-cache-directory
-            (make-temp-file "flycheck-haskell-ghc-cache" 'directory))))
-
-(defun flycheck--locate-dominating-file-matching (directory regexp)
-  "Search for a file in directory hierarchy starting at DIRECTORY.
-
-Look up the directory hierarchy from DIRECTORY for a directory
-containing a file that matches REGEXP."
-  (locate-dominating-file
-   directory
-   (lambda (dir)
-     (directory-files dir nil regexp t))))
-
-(defun flycheck-haskell--find-default-directory (checker)
-  "Come up with a suitable default directory for Haskell to run CHECKER in.
-
-In case of `haskell-stack-ghc' checker it is directory with
-stack.yaml file.  If there's no stack.yaml file in any parent
-directory, it will be the directory that \"stack path --project-root\"
-command returns.
-
-For all other checkers, it is the closest parent directory that
-contains a cabal file."
-  (pcase checker
-    (`haskell-stack-ghc
-     (or
-      (when (buffer-file-name)
-        (flycheck--locate-dominating-file-matching
-         (file-name-directory (buffer-file-name))
-         "stack.*\\.yaml\\'"))
-      (-when-let* ((stack (funcall flycheck-executable-find "stack"))
-                   (output (ignore-errors
-                             (process-lines stack
-                                            "--no-install-ghc"
-                                            "path" "--project-root")))
-                   (stack-dir (car output)))
-        (and (file-directory-p stack-dir) stack-dir))))
-    (_
-     (when (buffer-file-name)
-       (flycheck--locate-dominating-file-matching
-        (file-name-directory (buffer-file-name))
-        "\\.cabal\\'\\|\\`package\\.yaml\\'")))))
-
-(flycheck-define-checker haskell-stack-ghc
-  "A Haskell syntax and type checker using `stack ghc'.
-
-See URL `https://github.com/commercialhaskell/stack'."
-  :command ("stack"
-            "--no-install-ghc"
-            (option "--stack-yaml" flycheck-ghc-stack-project-file)
-            (option-flag "--nix" flycheck-ghc-stack-use-nix)
-            "ghc" "--" "-Wall" "-no-link"
-            "-outputdir" (eval (flycheck-haskell-ghc-cache-directory))
-            (option-list "-X" flycheck-ghc-language-extensions concat)
-            (option-list "-i" flycheck-ghc-search-path concat)
-            (eval (concat
-                   "-i"
-                   (flycheck-module-root-directory
-                    (flycheck-find-in-buffer flycheck-haskell-module-re))))
-            (eval flycheck-ghc-args)
-            "-x" (eval
-                  (pcase major-mode
-                    (`haskell-mode "hs")
-                    (`literate-haskell-mode "lhs")))
-            source)
-  :error-patterns
-  ((warning line-start (file-name) ":" line ":" column ":"
-            (or " " "\n    ") (in "Ww") "arning:"
-            (optional " " "[" (id (one-or-more not-newline)) "]")
-            (optional "\n")
-            (message
-             (one-or-more " ") (one-or-more not-newline)
-             (zero-or-more "\n"
-                           (one-or-more " ")
-                           (one-or-more (not (any ?\n ?|)))))
-            line-end)
-   (error line-start (file-name) ":" line ":" column ":" (optional " error:")
-          (or (message (one-or-more not-newline))
-              (and "\n"
-                   (message
-                    (one-or-more " ") (one-or-more not-newline)
-                    (zero-or-more "\n"
-                                  (one-or-more " ")
-                                  (one-or-more (not (any ?\n ?|)))))))
-          line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors (flycheck-dedent-error-messages errors)))
-  :modes (haskell-mode literate-haskell-mode)
-  :next-checkers ((warning . haskell-hlint))
-  :working-directory flycheck-haskell--find-default-directory)
-
-(flycheck-define-checker haskell-ghc
-  "A Haskell syntax and type checker using ghc.
-
-See URL `https://www.haskell.org/ghc/'."
-  :command ("ghc" "-Wall" "-no-link"
-            "-outputdir" (eval (flycheck-haskell-ghc-cache-directory))
-            (option-flag "-no-user-package-db"
-                         flycheck-ghc-no-user-package-database)
-            (option-list "-package-db" flycheck-ghc-package-databases)
-            (option-list "-i" flycheck-ghc-search-path concat)
-            ;; Include the parent directory of the current module tree, to
-            ;; properly resolve local imports
-            (eval (concat
-                   "-i"
-                   (flycheck-module-root-directory
-                    (flycheck-find-in-buffer flycheck-haskell-module-re))))
-            (option-list "-X" flycheck-ghc-language-extensions concat)
-            (eval flycheck-ghc-args)
-            "-x" (eval
-                  (pcase major-mode
-                    (`haskell-mode "hs")
-                    (`literate-haskell-mode "lhs")))
-            source)
-  :error-patterns
-  ((warning line-start (file-name) ":" line ":" column ":"
-            (or " " "\n    ") (in "Ww") "arning:"
-            (optional " " "[" (id (one-or-more not-newline)) "]")
-            (optional "\n")
-            (message
-             (one-or-more " ") (one-or-more not-newline)
-             (zero-or-more "\n"
-                           (one-or-more " ")
-                           (one-or-more (not (any ?\n ?|)))))
-            line-end)
-   (error line-start (file-name) ":" line ":" column ":" (optional " error:")
-          (or (message (one-or-more not-newline))
-              (and "\n"
-                   (message
-                    (one-or-more " ") (one-or-more not-newline)
-                    (zero-or-more "\n"
-                                  (one-or-more " ")
-                                  (one-or-more (not (any ?\n ?|)))))))
-          line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors (flycheck-dedent-error-messages errors)))
-  :modes (haskell-mode literate-haskell-mode)
-  :next-checkers ((warning . haskell-hlint))
-  :working-directory flycheck-haskell--find-default-directory)
-
-(flycheck-def-config-file-var flycheck-hlintrc haskell-hlint "HLint.hs"
-  :safe #'stringp)
-
-(flycheck-def-args-var flycheck-hlint-args haskell-hlint
-  :package-version '(flycheck . "0.25"))
-
-(flycheck-def-option-var flycheck-hlint-language-extensions
-    nil haskell-hlint
-  "Extensions list to enable for hlint.
-
-The value of this variable is a list of strings, where each
-string is a name of extension to enable in
-hlint (e.g. \"QuasiQuotes\")."
-  :type '(repeat :tag "Extensions" (string :tag "Extension"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-def-option-var flycheck-hlint-ignore-rules
-    nil haskell-hlint
-  "Ignore rules list for hlint checks.
-
-The value of this variable is a list of strings, where each
-string is an ignore rule (e.g. \"Use fmap\")."
-  :type '(repeat :tag "Ignore rules" (string :tag "Ignore rule"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-def-option-var flycheck-hlint-hint-packages
-    nil haskell-hlint
-  "Hint packages to include for hlint checks.
-
-The value of this variable is a list of strings, where each
-string is a default hint package (e.g. (\"Generalise\"
-\"Default\" \"Dollar\"))."
-  :type '(repeat :tag "Hint packages" (string :tag "Hint package"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-define-checker haskell-hlint
-  "A Haskell style checker using hlint.
-
-See URL `https://github.com/ndmitchell/hlint'."
-  :command ("hlint"
-            (option-list "-X" flycheck-hlint-language-extensions concat)
-            (option-list "-i=" flycheck-hlint-ignore-rules concat)
-            (option-list "-h" flycheck-hlint-hint-packages concat)
-            (config-file "-h" flycheck-hlintrc)
-            (eval flycheck-hlint-args)
-            source-inplace)
-  :error-patterns
-  ((info line-start
-         (file-name) ":" line ":" column
-         ": Suggestion: "
-         (message (one-or-more (and (one-or-more (not (any ?\n))) ?\n)))
-         line-end)
-   (warning line-start
-            (file-name) ":" line ":" column
-            ": Warning: "
-            (message (one-or-more (and (one-or-more (not (any ?\n))) ?\n)))
-            line-end)
-   (error line-start
-          (file-name) ":" line ":" column
-          ": Error: "
-          (message (one-or-more (and (one-or-more (not (any ?\n))) ?\n)))
-          line-end))
-  :modes (haskell-mode literate-haskell-mode))
-
-(flycheck-def-config-file-var flycheck-tidyrc html-tidy ".tidyrc"
-  :safe #'stringp)
-
-(flycheck-define-checker html-tidy
-  "A HTML syntax and style checker using Tidy.
-
-See URL `https://github.com/htacg/tidy-html5'."
-  :command ("tidy" (config-file "-config" flycheck-tidyrc)
-            "-lang" "en"
-            "-e" "-q")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          "line " line
-          " column " column
-          " - Error: " (message) line-end)
-   (warning line-start
-            "line " line
-            " column " column
-            " - Warning: " (message) line-end))
-  :modes (html-mode mhtml-mode nxhtml-mode))
-
-(flycheck-def-config-file-var flycheck-jshintrc javascript-jshint ".jshintrc"
-  :safe #'stringp)
-
-(flycheck-def-option-var flycheck-jshint-extract-javascript nil
-                         javascript-jshint
-  "Whether jshint should extract Javascript from HTML.
-
-If nil no extract rule is given to jshint.  If `auto' only
-extract Javascript if a HTML file is detected.  If `always' or
-`never' extract Javascript always or never respectively.
-
-Refer to the jshint manual at the URL
-`http://jshint.com/docs/cli/#flags' for more information."
-  :type
-  '(choice (const :tag "No extraction rule" nil)
-           (const :tag "Try to extract Javascript when detecting HTML files"
-                  auto)
-           (const :tag "Always try to extract Javascript" always)
-           (const :tag "Never try to extract Javascript" never))
-  :safe #'symbolp
-  :package-version '(flycheck . "26"))
-
-(flycheck-define-checker javascript-jshint
-  "A Javascript syntax and style checker using jshint.
-
-See URL `http://www.jshint.com'."
-  :command ("jshint" "--reporter=checkstyle"
-            "--filename" source-original
-            (config-file "--config" flycheck-jshintrc)
-            (option "--extract=" flycheck-jshint-extract-javascript
-                    concat flycheck-option-symbol)
-            "-")
-  :standard-input t
-  :error-parser flycheck-parse-checkstyle
-  :error-filter
-  (lambda (errors)
-    (flycheck-remove-error-file-names
-     "stdin" (flycheck-dequalify-error-ids errors)))
-  :modes (js-mode js2-mode js3-mode rjsx-mode))
-
-(flycheck-def-args-var flycheck-eslint-args javascript-eslint
-  :package-version '(flycheck . "32"))
-
-(flycheck-def-option-var flycheck-eslint-rules-directories nil javascript-eslint
-  "A list of directories with custom rules for ESLint.
-
-The value of this variable is a list of strings, where each
-string is a directory with custom rules for ESLint.
-
-Refer to the ESLint manual at URL
-`http://eslint.org/docs/user-guide/command-line-interface#--rulesdir'
-for more information about the custom directories."
-  :type '(repeat (directory :tag "Custom rules directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "29"))
-
-(defun flycheck-eslint-config-exists-p ()
-  "Whether there is a valid eslint config for the current buffer."
-  (let* ((executable (flycheck-find-checker-executable 'javascript-eslint))
-         (exitcode (and executable (call-process executable nil nil nil
-                                                 "--print-config" "."))))
-    (eq exitcode 0)))
-
-(defun flycheck-parse-eslint (output checker buffer)
-  "Parse ESLint errors/warnings from JSON OUTPUT.
-
-CHECKER and BUFFER denote the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-See URL `https://eslint.org' for more information about ESLint."
-  (mapcar (lambda (err)
-            (let-alist err
-              (flycheck-error-new-at
-               .line
-               .column
-               (pcase .severity
-                 (2 'error)
-                 (1 'warning)
-                 (_ 'warning))
-               .message
-               :id .ruleId
-               :checker checker
-               :buffer buffer
-               :filename (buffer-file-name buffer))))
-          (let-alist (caar (flycheck-parse-json output))
-            .messages)))
-
-(defun flycheck-eslint--find-working-directory (_checker)
-  "Look for a working directory to run ESLint CHECKER in.
-
-This will be the directory that contains the `node_modules'
-directory.  If no such directory is found in the directory
-hierarchy, it looks first for `.eslintignore' and then for
-`.eslintrc' files to detect the project root."
-  (let* ((regex-config (concat "\\`\\.eslintrc"
-                               "\\(\\.\\(js\\|ya?ml\\|json\\)\\)?\\'")))
-    (when buffer-file-name
-      (or (locate-dominating-file buffer-file-name "node_modules")
-          (locate-dominating-file buffer-file-name ".eslintignore")
-          (locate-dominating-file
-           (file-name-directory buffer-file-name)
-           (lambda (directory)
-             (> (length (directory-files directory nil regex-config t)) 0)))))))
-
-(flycheck-define-checker javascript-eslint
-  "A Javascript syntax and style checker using eslint.
-
-See URL `https://eslint.org/'."
-  :command ("eslint" "--format=json"
-            (option-list "--rulesdir" flycheck-eslint-rules-directories)
-            (eval flycheck-eslint-args)
-            "--stdin" "--stdin-filename" source-original)
-  :standard-input t
-  :error-parser flycheck-parse-eslint
-  :enabled (lambda () (flycheck-eslint-config-exists-p))
-  :modes (js-mode js-jsx-mode js2-mode js2-jsx-mode js3-mode rjsx-mode)
-  :working-directory flycheck-eslint--find-working-directory
-  :verify
-  (lambda (_)
-    (let* ((default-directory
-             (flycheck-compute-working-directory 'javascript-eslint))
-           (have-config (flycheck-eslint-config-exists-p)))
-      (list
-       (flycheck-verification-result-new
-        :label "config file"
-        :message (if have-config "found" "missing or incorrect")
-        :face (if have-config 'success '(bold error)))))))
-
-(flycheck-define-checker javascript-standard
-  "A Javascript code and style checker for the (Semi-)Standard Style.
-
-This checker works with `standard' and `semistandard', defaulting
-to the former.  To use it with the latter, set
-`flycheck-javascript-standard-executable' to `semistandard'.
-
-See URL `https://github.com/standard/standard' and URL
-`https://github.com/Flet/semistandard'."
-  :command ("standard" "--stdin")
-  :standard-input t
-  :error-patterns
-  ((error line-start "  <text>:" line ":" column ":" (message) line-end))
-  :modes (js-mode js-jsx-mode js2-mode js2-jsx-mode js3-mode rjsx-mode))
-
-(flycheck-define-checker json-jsonlint
-  "A JSON syntax and style checker using jsonlint.
-
-See URL `https://github.com/zaach/jsonlint'."
-  ;; We can't use standard input for jsonlint, because it doesn't output errors
-  ;; anymore when using -c -q with standard input :/
-  :command ("jsonlint" "-c" "-q" source)
-  :error-patterns
-  ((error line-start
-          (file-name)
-          ": line " line
-          ", col " column ", "
-          (message) line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors (flycheck-increment-error-columns errors)))
-  :modes json-mode)
-
-(flycheck-define-checker json-python-json
-  "A JSON syntax checker using Python json.tool module.
-
-See URL `https://docs.python.org/3.5/library/json.html#command-line-interface'."
-  :command ("python" "-m" "json.tool" source
-            ;; Send the pretty-printed output to the null device
-            null-device)
-  :error-patterns
-  ((error line-start
-          (message) ": line " line " column " column
-          ;; Ignore the rest of the line which shows the char position.
-          (one-or-more not-newline)
-          line-end))
-  :modes json-mode
-  ;; The JSON parser chokes if the buffer is empty and has no JSON inside
-  :predicate (lambda () (not (flycheck-buffer-empty-p))))
-
-(flycheck-define-checker jsonnet
-  "A Jsonnet syntax checker using the jsonnet binary.
-
-See URL `https://jsonnet.org'."
-  :command ("jsonnet" source-inplace)
-  :error-patterns
-  ((error line-start "STATIC ERROR: " (file-name) ":" line ":" column
-          (zero-or-one (group "-" (one-or-more digit))) ": "
-          (message) line-end)
-   (error line-start "RUNTIME ERROR: " (message) "\n"
-          (one-or-more space) (file-name) ":" (zero-or-one "(")
-          line ":" column (zero-or-more not-newline) line-end))
-  :modes jsonnet-mode)
-
-(flycheck-define-checker less
-  "A LESS syntax checker using lessc.
-
-Requires lessc 1.4 or newer.
-
-See URL `http://lesscss.org'."
-  :command ("lessc" "--lint" "--no-color"
-            "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start (one-or-more word) ":"
-          (message)
-          " in - on line " line
-          ", column " column ":"
-          line-end))
-  :modes less-css-mode)
-
-(flycheck-define-checker less-stylelint
-  "A LESS syntax and style checker using stylelint.
-
-See URL `http://stylelint.io/'."
-  :command ("stylelint"
-            (eval flycheck-stylelint-args)
-            "--syntax" "less"
-            (option-flag "--quiet" flycheck-stylelint-quiet)
-            (config-file "--config" flycheck-stylelintrc))
-  :standard-input t
-  :error-parser flycheck-parse-stylelint
-  :modes (less-css-mode))
-
-(flycheck-define-checker llvm-llc
-  "Flycheck LLVM IR checker using llc.
-
-See URL `http://llvm.org/docs/CommandGuide/llc.html'."
-  :command ("llc" "-o" null-device source)
-  :error-patterns
-  ((error line-start
-          ;; llc prints the executable path
-          (zero-or-one (minimal-match (one-or-more not-newline)) ": ")
-          (file-name) ":" line ":" column ": error: " (message)
-          line-end))
-  :error-filter
-  (lambda (errors)
-    ;; sanitize errors occurring in inline assembly
-    (flycheck-sanitize-errors
-     (flycheck-remove-error-file-names "<inline asm>" errors)))
-  :modes llvm-mode)
-
-(flycheck-def-config-file-var flycheck-luacheckrc lua-luacheck ".luacheckrc"
-  :safe #'stringp)
-
-(flycheck-def-option-var flycheck-luacheck-standards nil lua-luacheck
-  "The standards to use in luacheck.
-
-The value of this variable is either a list of strings denoting
-the standards to use, or nil to pass nothing to luacheck.  When
-non-nil, pass the standards via one or more `--std' options."
-  :type '(choice (const :tag "Default" nil)
-                 (repeat :tag "Custom standards"
-                         (string :tag "Standard name")))
-  :safe #'flycheck-string-list-p)
-(make-variable-buffer-local 'flycheck-luacheck-standards)
-
-(flycheck-define-checker lua-luacheck
-  "A Lua syntax checker using luacheck.
-
-See URL `https://github.com/mpeterv/luacheck'."
-  :command ("luacheck"
-            "--formatter" "plain"
-            "--codes"                   ; Show warning codes
-            "--no-color"
-            (option-list "--std" flycheck-luacheck-standards)
-            (config-file "--config" flycheck-luacheckrc)
-            "--filename" source-original
-            ;; Read from standard input
-            "-")
-  :standard-input t
-  :error-patterns
-  ((warning line-start
-            (optional (file-name))
-            ":" line ":" column
-            ": (" (id "W" (one-or-more digit)) ") "
-            (message) line-end)
-   (error line-start
-          (optional (file-name))
-          ":" line ":" column ":"
-          ;; `luacheck' before 0.11.0 did not output codes for errors, hence
-          ;; the ID is optional here
-          (optional " (" (id "E" (one-or-more digit)) ") ")
-          (message) line-end))
-  :modes lua-mode)
-
-(flycheck-define-checker lua
-  "A Lua syntax checker using the Lua compiler.
-
-See URL `http://www.lua.org/'."
-  :command ("luac" "-p" "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          ;; Skip the name of the luac executable.
-          (minimal-match (zero-or-more not-newline))
-          ": stdin:" line ": " (message) line-end))
-  :modes lua-mode)
-
-(flycheck-def-option-var flycheck-perl-include-path nil perl
-  "A list of include directories for Perl.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of Perl.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-def-option-var flycheck-perl-module-list nil perl
-  "A list of modules to use for Perl.
-
-The value of this variable is a list of strings, where each
-string is a module to 'use' in Perl."
-  :type '(repeat :tag "Module")
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "32"))
-
-(flycheck-define-checker perl
-  "A Perl syntax checker using the Perl interpreter.
-
-See URL `https://www.perl.org'."
-  :command ("perl" "-w" "-c"
-            (option-list "-I" flycheck-perl-include-path)
-            (option-list "-M" flycheck-perl-module-list concat))
-  :standard-input t
-  :error-patterns
-  ((error line-start (minimal-match (message))
-          " at - line " line
-          (or "." (and ", " (zero-or-more not-newline))) line-end))
-  :modes (perl-mode cperl-mode)
-  :next-checkers (perl-perlcritic))
-
-(flycheck-def-option-var flycheck-perlcritic-severity nil perl-perlcritic
-  "The message severity for Perl Critic.
-
-The value of this variable is a severity level as integer, for
-the `--severity' option to Perl Critic."
-  :type '(integer :tag "Severity level")
-  :safe #'integerp
-  :package-version '(flycheck . "0.18"))
-
-(flycheck-def-config-file-var flycheck-perlcriticrc perl-perlcritic
-                              ".perlcriticrc"
-  :safe #'stringp
-  :package-version '(flycheck . "26"))
-
-(flycheck-define-checker perl-perlcritic
-  "A Perl syntax checker using Perl::Critic.
-
-See URL `https://metacpan.org/pod/Perl::Critic'."
-  :command ("perlcritic" "--no-color" "--verbose" "%f/%l/%c/%s/%p/%m (%e)\n"
-            (config-file "--profile" flycheck-perlcriticrc)
-            (option "--severity" flycheck-perlcritic-severity nil
-                    flycheck-option-int))
-  :standard-input t
-  :error-patterns
-  ((info line-start
-         "STDIN/" line "/" column "/" (any "1") "/"
-         (id (one-or-more (not (any "/")))) "/" (message)
-         line-end)
-   (warning line-start
-            "STDIN/" line "/" column "/" (any "234") "/"
-            (id (one-or-more (not (any "/")))) "/" (message)
-            line-end)
-   (error line-start
-          "STDIN/" line "/" column "/" (any "5") "/"
-          (id (one-or-more (not (any "/")))) "/" (message)
-          line-end))
-  :modes (cperl-mode perl-mode))
-
-(flycheck-define-checker php
-  "A PHP syntax checker using the PHP command line interpreter.
-
-See URL `http://php.net/manual/en/features.commandline.php'."
-  :command ("php" "-l" "-d" "error_reporting=E_ALL" "-d" "display_errors=1"
-            "-d" "log_errors=0" source)
-  :error-patterns
-  ((error line-start (or "Parse" "Fatal" "syntax") " error" (any ":" ",") " "
-          (message) " in " (file-name) " on line " line line-end))
-  :modes (php-mode php+-mode)
-  :next-checkers ((warning . php-phpmd)
-                  (warning . php-phpcs)))
-
-(flycheck-def-option-var flycheck-phpmd-rulesets
-    '("cleancode" "codesize" "controversial" "design" "naming" "unusedcode")
-    php-phpmd
-  "The rule sets for PHP Mess Detector.
-
-Set default rule sets and custom rule set files.
-
-See section \"Using multiple rule sets\" in the PHP Mess Detector
-manual at URL `https://phpmd.org/documentation/index.html'."
-  :type '(repeat :tag "rule sets"
-                 (string :tag "A filename or rule set"))
-  :safe #'flycheck-string-list-p)
-
-(flycheck-define-checker php-phpmd
-  "A PHP style checker using PHP Mess Detector.
-
-See URL `https://phpmd.org/'."
-  :command ("phpmd" source "xml"
-            (eval (flycheck-option-comma-separated-list
-                   flycheck-phpmd-rulesets)))
-  :error-parser flycheck-parse-phpmd
-  :modes (php-mode php+-mode)
-  :next-checkers (php-phpcs))
-
-(flycheck-def-option-var flycheck-phpcs-standard nil php-phpcs
-  "The coding standard for PHP CodeSniffer.
-
-When nil, use the default standard from the global PHP
-CodeSniffer configuration.  When set to a string, pass the string
-to PHP CodeSniffer which will interpret it as name as a standard,
-or as path to a standard specification."
-  :type '(choice (const :tag "Default standard" nil)
-                 (string :tag "Standard name or file"))
-  :safe #'stringp)
-
-(flycheck-define-checker php-phpcs
-  "A PHP style checker using PHP Code Sniffer.
-
-Needs PHP Code Sniffer 2.6 or newer.
-
-See URL `http://pear.php.net/package/PHP_CodeSniffer/'."
-  :command ("phpcs" "--report=checkstyle"
-            ;; Use -q flag to force quiet mode
-            ;; Quiet mode prevents errors from extra output when phpcs has
-            ;; been configured with show_progress enabled
-            "-q"
-            (option "--standard=" flycheck-phpcs-standard concat)
-            ;; Pass original file name to phpcs.  We need to concat explicitly
-            ;; here, because phpcs really insists to get option and argument as
-            ;; a single command line argument :|
-            (eval (when (buffer-file-name)
-                    (concat "--stdin-path=" (buffer-file-name))))
-            ;; Read from standard input
-            "-")
-  :standard-input t
-  :error-parser flycheck-parse-checkstyle
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors
-     (flycheck-remove-error-file-names "STDIN" errors)))
-  :modes (php-mode php+-mode)
-  ;; phpcs seems to choke on empty standard input, hence skip phpcs if the
-  ;; buffer is empty, see https://github.com/flycheck/flycheck/issues/907
-  :predicate (lambda () (not (flycheck-buffer-empty-p))))
-
-(flycheck-define-checker processing
-  "Processing command line tool.
-
-See https://github.com/processing/processing/wiki/Command-Line"
-  :command ("processing-java" "--force"
-            ;; Don't change the order of these arguments, processing is pretty
-            ;; picky
-            (eval (concat "--sketch=" (file-name-directory (buffer-file-name))))
-            (eval (concat "--output=" (flycheck-temp-dir-system)))
-            "--build")
-  :error-patterns
-  ((error line-start (file-name) ":" line ":" column
-          (zero-or-more (or digit ":")) (message) line-end))
-  :modes processing-mode
-  ;; This syntax checker needs a file name
-  :predicate (lambda () (buffer-file-name)))
-
-(defun flycheck-proselint-parse-errors (output checker buffer)
-  "Parse proselint json output errors from OUTPUT.
-
-CHECKER and BUFFER denoted the CHECKER that returned OUTPUT and
-the BUFFER that was checked respectively.
-
-See URL `http://proselint.com/' for more information about proselint."
-  (mapcar (lambda (err)
-            (let-alist err
-              (flycheck-error-new-at
-               .line
-               .column
-               (pcase .severity
-                 (`"suggestion" 'info)
-                 (`"warning"    'warning)
-                 (`"error"      'error)
-                 ;; Default to error
-                 (_             'error))
-               .message
-               :id .check
-               :buffer buffer
-               :checker checker)))
-          (let-alist (car (flycheck-parse-json output))
-            .data.errors)))
-
-(flycheck-define-checker proselint
-  "Flycheck checker using Proselint.
-
-See URL `http://proselint.com/'."
-  :command ("proselint" "--json" "-")
-  :standard-input t
-  :error-parser flycheck-proselint-parse-errors
-  :modes (text-mode markdown-mode gfm-mode message-mode))
-
-(flycheck-define-checker protobuf-protoc
-  "A protobuf syntax checker using the protoc compiler.
-
-See URL `https://developers.google.com/protocol-buffers/'."
-  :command ("protoc" "--error_format" "gcc"
-            (eval (concat "--java_out=" (flycheck-temp-dir-system)))
-            ;; Add the file directory of protobuf path to resolve import
-            ;; directives
-            (eval (concat "--proto_path="
-                          (file-name-directory (buffer-file-name))))
-            source-inplace)
-  :error-patterns
-  ((info line-start (file-name) ":" line ":" column
-         ": note: " (message) line-end)
-   (error line-start (file-name) ":" line ":" column
-          ": " (message) line-end)
-   (error line-start
-          (message "In file included from") " " (file-name) ":" line ":"
-          column ":" line-end))
-  :modes protobuf-mode
-  :predicate (lambda () (buffer-file-name)))
-
-(flycheck-define-checker pug
-  "A Pug syntax checker using the pug compiler.
-
-See URL `https://pugjs.org/'."
-  :command ("pug" "-p" (eval (expand-file-name (buffer-file-name))))
-  :standard-input t
-  :error-patterns
-  ;; errors with includes/extends (e.g. missing files)
-  ((error "Error: " (message) (zero-or-more not-newline) "\n"
-          (zero-or-more not-newline) "at "
-          (zero-or-more not-newline) " line " line)
-   ;; syntax/runtime errors (e.g. type errors, bad indentation, etc.)
-   (error line-start
-          (optional "Type") "Error: "  (file-name) ":"
-          line (optional ":" column)
-          (zero-or-more not-newline) "\n"
-          (one-or-more (or (zero-or-more not-newline) "|"
-                           (zero-or-more not-newline) "\n")
-                       (zero-or-more "-")  (zero-or-more not-newline) "|"
-                       (zero-or-more not-newline) "\n")
-          (zero-or-more not-newline) "\n"
-          (one-or-more
-           (zero-or-more not-newline) "|"
-           (zero-or-more not-newline) "\n")
-          (zero-or-more not-newline) "\n"
-          (message)
-          line-end))
-  :modes pug-mode)
-
-(flycheck-define-checker puppet-parser
-  "A Puppet DSL syntax checker using puppet's own parser.
-
-See URL `https://puppet.com/'."
-  :command ("puppet" "parser" "validate" "--color=false")
-  :standard-input t
-  :error-patterns
-  (
-   ;; Patterns for Puppet 4
-   (error line-start "Error: Could not parse for environment "
-          (one-or-more (in "a-z" "0-9" "_")) ":"
-          (message) "(line: " line ", column: " column ")" line-end)
-   ;; Errors from Puppet < 4
-   (error line-start "Error: Could not parse for environment "
-          (one-or-more (in "a-z" "0-9" "_")) ":"
-          (message (minimal-match (one-or-more anything)))
-          " at line " line line-end)
-   (error line-start
-          ;; Skip over the path of the Puppet executable
-          (minimal-match (zero-or-more not-newline))
-          ": Could not parse for environment " (one-or-more word)
-          ": " (message (minimal-match (zero-or-more anything)))
-          " at " (file-name "/" (zero-or-more not-newline)) ":" line line-end))
-  :modes puppet-mode
-  :next-checkers ((warning . puppet-lint)))
-
-(flycheck-def-config-file-var flycheck-puppet-lint-rc puppet-lint
-                              ".puppet-lint.rc"
-  :safe #'stringp
-  :package-version '(flycheck . "26"))
-
-(flycheck-def-option-var flycheck-puppet-lint-disabled-checks nil puppet-lint
-  "Disabled checkers for `puppet-lint'.
-
-The value of this variable is a list of strings, where each
-string is the name of a check to disable (e.g. \"80chars\" or
-\"double_quoted_strings\").
-
-See URL `http://puppet-lint.com/checks/' for a list of all checks
-and their names."
-  :type '(repeat (string :tag "Check Name"))
-  :package-version '(flycheck . "26"))
-
-(defun flycheck-puppet-lint-disabled-arg-name (check)
-  "Create an argument to disable a puppetlint CHECK."
-  (concat "--no-" check "-check"))
-
-(flycheck-define-checker puppet-lint
-  "A Puppet DSL style checker using puppet-lint.
-
-See URL `http://puppet-lint.com/'."
-  ;; We must check the original file, because Puppetlint is quite picky on the
-  ;; names of files and there place in the directory structure, to comply with
-  ;; Puppet's autoload directory layout.  For instance, a class foo::bar is
-  ;; required to be in a file foo/bar.pp.  Any other place, such as a Flycheck
-  ;; temporary file will cause an error.
-  :command ("puppet-lint"
-            (config-file "--config" flycheck-puppet-lint-rc)
-            "--log-format"
-            "%{path}:%{line}:%{kind}: %{message} (%{check})"
-            (option-list "" flycheck-puppet-lint-disabled-checks concat
-                         flycheck-puppet-lint-disabled-arg-name)
-            source-original)
-  :error-patterns
-  ((warning line-start (file-name) ":" line ":warning: " (message) line-end)
-   (error line-start (file-name) ":" line ":error: " (message) line-end))
-  :modes puppet-mode
-  ;; Since we check the original file, we can only use this syntax checker if
-  ;; the buffer is actually linked to a file, and if it is not modified.
-  :predicate flycheck-buffer-saved-p)
-
-(defun flycheck-python-find-module (checker module)
-  "Check if a Python MODULE is available.
-CHECKER's executable is assumed to be a Python REPL."
-  (-when-let* ((py (flycheck-find-checker-executable checker))
-               (script (concat "import sys; sys.path.pop(0);"
-                               (format "import %s; print(%s.__file__)"
-                                       module module))))
-    (with-temp-buffer
-      (and (eq (ignore-errors (call-process py nil t nil "-c" script)) 0)
-           (string-trim (buffer-string))))))
-
-(defun flycheck-python-needs-module-p (checker)
-  "Determines whether CHECKER needs to be invoked through Python.
-Previous versions of Flycheck called pylint and flake8 directly;
-this check ensures that we don't break existing code."
-  (not (string-match-p (rx (or "pylint" "flake8")
-                           (or "-script.pyw" ".exe" ".bat" "")
-                           eos)
-                       (flycheck-checker-executable checker))))
-
-(defun flycheck-python-verify-module (checker module)
-  "Verify that a Python MODULE is available.
-Return nil if CHECKER's executable is not a Python REPL.  This
-function's is suitable for a checker's :verify."
-  (when (flycheck-python-needs-module-p checker)
-    (let ((mod-path (flycheck-python-find-module checker module)))
-      (list (flycheck-verification-result-new
-             :label (format "`%s' module" module)
-             :message (if mod-path (format "Found at %S" mod-path) "Missing")
-             :face (if mod-path 'success '(bold error)))))))
-
-(defun flycheck-python-module-args (checker module-name)
-  "Compute arguments to pass to CHECKER's executable to run MODULE-NAME.
-Return nil if CHECKER's executable is not a Python REPL.
-Otherwise, return a list starting with -c (-m is not enough
-because it adds the current directory to Python's path)."
-  (when (flycheck-python-needs-module-p checker)
-    `("-c" ,(concat "import sys,runpy;sys.path.pop(0);"
-                    (format "runpy.run_module(%S)" module-name)))))
-
-(flycheck-def-config-file-var flycheck-flake8rc python-flake8 ".flake8rc"
-  :safe #'stringp)
-
-(flycheck-def-option-var flycheck-flake8-error-level-alist
-    '(("^E9.*$"  . error)               ; Syntax errors from pep8
-      ("^F82.*$" . error)               ; undefined variables from pyflakes
-      ("^F83.*$" . error)               ; Duplicate arguments from flake8
-      ("^D.*$"   . info)                ; Docstring issues from flake8-pep257
-      ("^N.*$"   . info)                ; Naming issues from pep8-naming
-      )
-    python-flake8
-  "An alist mapping flake8 error IDs to Flycheck error levels.
-
-Each item in this list is a cons cell `(PATTERN . LEVEL)' where
-PATTERN is a regular expression matched against the error ID, and
-LEVEL is a Flycheck error level symbol.
-
-Each PATTERN is matched in the order of appearance in this list
-against the error ID.  If it matches the ID, the level of the
-corresponding error is set to LEVEL.  An error that is not
-matched by any PATTERN defaults to warning level.
-
-The default value of this option matches errors from flake8
-itself and from the following flake8 plugins:
-
-- pep8-naming
-- flake8-pep257
-
-You may add your own mappings to this option in order to support
-further flake8 plugins."
-  :type '(repeat (cons (regexp :tag "Error ID pattern")
-                       (symbol :tag "Error level")))
-  :package-version '(flycheck . "0.22"))
-
-(flycheck-def-option-var flycheck-flake8-maximum-complexity nil python-flake8
-  "The maximum McCabe complexity of methods.
-
-If nil, do not check the complexity of methods.  If set to an
-integer, report any complexity greater than the value of this
-variable as warning.
-
-If set to an integer, this variable overrules any similar setting
-in the configuration file denoted by `flycheck-flake8rc'."
-  :type '(choice (const :tag "Do not check McCabe complexity" nil)
-                 (integer :tag "Maximum complexity"))
-  :safe #'integerp)
-
-(flycheck-def-option-var flycheck-flake8-maximum-line-length nil python-flake8
-  "The maximum length of lines.
-
-If set to an integer, the value of this variable denotes the
-maximum length of lines, overruling any similar setting in the
-configuration file denoted by `flycheck-flake8rc'.  An error will
-be reported for any line longer than the value of this variable.
-
-If set to nil, use the maximum line length from the configuration
-file denoted by `flycheck-flake8rc', or the PEP 8 recommendation
-of 79 characters if there is no configuration with this setting."
-  :type '(choice (const :tag "Default value")
-                 (integer :tag "Maximum line length in characters"))
-  :safe #'integerp)
-
-(defun flycheck-flake8-fix-error-level (err)
-  "Fix the error level of ERR.
-
-Update the error level of ERR according to
-`flycheck-flake8-error-level-alist'."
-  (pcase-dolist (`(,pattern . ,level) flycheck-flake8-error-level-alist)
-    (when (string-match-p pattern (flycheck-error-id err))
-      (setf (flycheck-error-level err) level)))
-  err)
-
-(flycheck-define-checker python-flake8
-  "A Python syntax and style checker using Flake8.
-
-Requires Flake8 3.0 or newer. See URL
-`https://flake8.readthedocs.io/'."
-  ;; Not calling flake8 directly makes it easier to switch between different
-  ;; Python versions; see https://github.com/flycheck/flycheck/issues/1055.
-  :command ("python"
-            (eval (flycheck-python-module-args 'python-flake8 "flake8"))
-            "--format=default"
-            (config-file "--config" flycheck-flake8rc)
-            (option "--max-complexity" flycheck-flake8-maximum-complexity nil
-                    flycheck-option-int)
-            (option "--max-line-length" flycheck-flake8-maximum-line-length nil
-                    flycheck-option-int)
-            "-")
-  :standard-input t
-  :error-filter (lambda (errors)
-                  (let ((errors (flycheck-sanitize-errors errors)))
-                    (seq-map #'flycheck-flake8-fix-error-level errors)))
-  :error-patterns
-  ((warning line-start
-            "stdin:" line ":" (optional column ":") " "
-            (id (one-or-more (any alpha)) (one-or-more digit)) " "
-            (message (one-or-more not-newline))
-            line-end))
-  :enabled (lambda ()
-             (or (not (flycheck-python-needs-module-p 'python-flake8))
-                 (flycheck-python-find-module 'python-flake8 "flake8")))
-  :verify (lambda (_) (flycheck-python-verify-module 'python-flake8 "flake8"))
-  :modes python-mode)
-
-(flycheck-def-config-file-var flycheck-pylintrc python-pylint ".pylintrc"
-  :safe #'stringp)
-
-(flycheck-def-option-var flycheck-pylint-use-symbolic-id t python-pylint
-  "Whether to use pylint message symbols or message codes.
-
-A pylint message has both an opaque identifying code (such as `F0401') and a
-more meaningful symbolic code (such as `import-error').  This option governs
-which should be used and reported to the user."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.25"))
-
-(flycheck-define-checker python-pylint
-  "A Python syntax and style checker using Pylint.
-
-This syntax checker requires Pylint 1.0 or newer.
-
-See URL `https://www.pylint.org/'."
-  ;; --reports=n disables the scoring report.
-  ;; Not calling pylint directly makes it easier to switch between different
-  ;; Python versions; see https://github.com/flycheck/flycheck/issues/1055.
-  :command ("python"
-            (eval (flycheck-python-module-args 'python-pylint "pylint"))
-            "--reports=n"
-            "--output-format=text"
-            (eval (if flycheck-pylint-use-symbolic-id
-                      "--msg-template={path}:{line}:{column}:{C}:{symbol}:{msg}"
-                    "--msg-template={path}:{line}:{column}:{C}:{msg_id}:{msg}"))
-            (config-file "--rcfile=" flycheck-pylintrc concat)
-            ;; Need `source-inplace' for relative imports (e.g. `from .foo
-            ;; import bar'), see https://github.com/flycheck/flycheck/issues/280
-            source-inplace)
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors (flycheck-increment-error-columns errors)))
-  :error-patterns
-  ((error line-start (file-name) ":" line ":" column ":"
-          (or "E" "F") ":"
-          (id (one-or-more (not (any ":")))) ":"
-          (message) line-end)
-   (warning line-start (file-name) ":" line ":" column ":"
-            (or "W" "R") ":"
-            (id (one-or-more (not (any ":")))) ":"
-            (message) line-end)
-   (info line-start (file-name) ":" line ":" column ":"
-         (or "C" "I") ":"
-         (id (one-or-more (not (any ":")))) ":"
-         (message) line-end))
-  :enabled (lambda ()
-             (or (not (flycheck-python-needs-module-p 'python-pylint))
-                 (flycheck-python-find-module 'python-pylint "pylint")))
-  :verify (lambda (_) (flycheck-python-verify-module 'python-pylint "pylint"))
-  :modes python-mode)
-
-(flycheck-define-checker python-pycompile
-  "A Python syntax checker using Python's builtin compiler.
-
-See URL `https://docs.python.org/3.4/library/py_compile.html'."
-  :command ("python" "-m" "py_compile" source)
-  :error-patterns
-  ;; Python 2.7
-  ((error line-start "  File \"" (file-name) "\", line " line "\n"
-          (>= 2 (zero-or-more not-newline) "\n")
-          "SyntaxError: " (message) line-end)
-   (error line-start "Sorry: IndentationError: "
-          (message) "(" (file-name) ", line " line ")"
-          line-end)
-   ;; 2.6
-   (error line-start "SyntaxError: ('" (message (one-or-more (not (any "'"))))
-          "', ('" (file-name (one-or-more (not (any "'")))) "', "
-          line ", " column ", " (one-or-more not-newline) line-end))
-  :modes python-mode)
-
-(flycheck-def-config-file-var flycheck-python-mypy-ini python-mypy
-                              "mypy.ini"
-  :safe #'stringp)
-
-(flycheck-def-option-var flycheck-python-mypy-cache-dir nil python-mypy
-  "Directory used to write .mypy_cache directories."
-  :safe #'stringp
-  :type '(choice
-          (const :tag "Write to the working directory" nil)
-          (const :tag "Never write .mypy_cache directories" null-device)
-          (string :tag "Path"))
-  :package-version '(flycheck . "32"))
-
-(flycheck-define-checker python-mypy
-  "Mypy syntax and type checker.  Requires mypy>=0.580.
-
-See URL `http://mypy-lang.org/'."
-  :command ("mypy"
-            "--show-column-numbers"
-            (config-file "--config-file" flycheck-python-mypy-ini)
-            (option "--cache-dir" flycheck-python-mypy-cache-dir)
-            source-original)
-  :error-patterns
-  ((error line-start (file-name) ":" line ":" column ": error:" (message)
-          line-end)
-   (warning line-start (file-name) ":" line ":" column  ": warning:" (message)
-            line-end))
-  :modes python-mode
-  ;; Ensure the file is saved, to work around
-  ;; https://github.com/python/mypy/issues/4746.
-  :predicate flycheck-buffer-saved-p
-  :next-checkers '(t . python-flake8))
-
-(flycheck-def-option-var flycheck-lintr-caching t r-lintr
-  "Whether to enable caching in lintr.
-
-By default, lintr caches all expressions in a file and re-checks
-only those that have changed.  Setting this option to nil
-disables caching in case there are problems."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.23"))
-
-(flycheck-def-option-var flycheck-lintr-linters "default_linters" r-lintr
-  "Linters to use with lintr.
-
-The value of this variable is a string containing an R
-expression, which selects linters for lintr."
-  :type 'string
-  :risky t
-  :package-version '(flycheck . "0.23"))
-
-(defun flycheck-r-has-lintr (R)
-  "Whether R has installed the `lintr' library."
-  (with-temp-buffer
-    (let ((process-environment (append '("LC_ALL=C") process-environment)))
-      (call-process R nil t nil
-                    "--slave" "--restore" "--no-save" "-e"
-                    "library('lintr')")
-      (goto-char (point-min))
-      (not (re-search-forward "there is no package called 'lintr'"
-                              nil 'no-error)))))
-
-(flycheck-define-checker r-lintr
-  "An R style and syntax checker using the lintr package.
-
-See URL `https://github.com/jimhester/lintr'."
-  :command ("R" "--slave" "--restore" "--no-save" "-e"
-            (eval (concat
-                   "library(lintr);"
-                   "try(lint(commandArgs(TRUE)"
-                   ", cache=" (if flycheck-lintr-caching "TRUE" "FALSE")
-                   ", " flycheck-lintr-linters
-                   "))"))
-            "--args" source)
-  :error-patterns
-  ((info line-start (file-name) ":" line ":" column ": style: " (message)
-         line-end)
-   (warning line-start (file-name) ":" line ":" column ": warning: " (message)
-            line-end)
-   (error line-start (file-name) ":" line ":" column ": error: " (message)
-          line-end))
-  :modes ess-mode
-  :predicate
-  ;; Don't check ESS files which do not contain R, and make sure that lintr is
-  ;; actually available
-  (lambda ()
-    (and (equal ess-language "S")
-         (flycheck-r-has-lintr (flycheck-checker-executable 'r-lintr))))
-  :verify (lambda (checker)
-            (let ((has-lintr (flycheck-r-has-lintr
-                              (flycheck-checker-executable checker))))
-              (list
-               (flycheck-verification-result-new
-                :label "lintr library"
-                :message (if has-lintr "present" "missing")
-                :face (if has-lintr 'success '(bold error)))))))
-
-(defun flycheck-racket-has-expand-p (checker)
-  "Whether the executable of CHECKER provides the `expand' command."
-  (let ((raco (flycheck-find-checker-executable checker)))
-    (when raco
-      (with-temp-buffer
-        (call-process raco nil t nil "expand")
-        (goto-char (point-min))
-        (not (looking-at-p (rx bol (1+ not-newline)
-                               "Unrecognized command: expand"
-                               eol)))))))
-
-(flycheck-define-checker racket
-  "A Racket syntax checker with `raco expand'.
-
-The `compiler-lib' racket package is required for this syntax
-checker.
-
-See URL `https://racket-lang.org/'."
-  :command ("raco" "expand" source-inplace)
-  :predicate
-  (lambda ()
-    (and (or (not (eq major-mode 'scheme-mode))
-             ;; In `scheme-mode' we must check the current Scheme implementation
-             ;; being used
-             (and (boundp 'geiser-impl--implementation)
-                  (eq geiser-impl--implementation 'racket)))
-         (flycheck-racket-has-expand-p 'racket)))
-  :verify
-  (lambda (checker)
-    (let ((has-expand (flycheck-racket-has-expand-p checker))
-          (in-scheme-mode (eq major-mode 'scheme-mode))
-          (geiser-impl (bound-and-true-p geiser-impl--implementation)))
-      (list
-       (flycheck-verification-result-new
-        :label "compiler-lib package"
-        :message (if has-expand "present" "missing")
-        :face (if has-expand 'success '(bold error)))
-       (flycheck-verification-result-new
-        :label "Geiser Implementation"
-        :message (cond
-                  ((not in-scheme-mode) "Using Racket Mode")
-                  ((eq geiser-impl 'racket) "Racket")
-                  (geiser-impl (format "Other: %s" geiser-impl))
-                  (t "Geiser not active"))
-        :face (cond
-               ((or (not in-scheme-mode) (eq geiser-impl 'racket)) 'success)
-               (t '(bold error)))))))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors
-     (flycheck-increment-error-columns
-      (seq-remove
-       (lambda (err)
-         (string=
-          "/usr/share/racket/pkgs/compiler-lib/compiler/commands/expand.rkt"
-          (flycheck-error-filename err)))
-       errors))))
-  :error-patterns
-  ((error line-start (zero-or-more space)
-          (file-name) ":" line ":" column ":" (message) line-end))
-  :modes (racket-mode scheme-mode))
-
-(flycheck-define-checker rpm-rpmlint
-  "A RPM SPEC file syntax checker using rpmlint.
-
-See URL `https://sourceforge.net/projects/rpmlint/'."
-  :command ("rpmlint" source)
-  :error-patterns
-  ((error line-start
-          (file-name) ":" (optional line ":") " E: " (message)
-          line-end)
-   (warning line-start
-            (file-name) ":" (optional line ":") " W: " (message)
-            line-end))
-  :error-filter
-  ;; Add fake line numbers if they are missing in the lint output
-  (lambda (errors)
-    (dolist (err errors)
-      (unless (flycheck-error-line err)
-        (setf (flycheck-error-line err) 1)))
-    errors)
-  :error-explainer
-  (lambda (error)
-    (-when-let* ((error-message (flycheck-error-message error))
-                 (message-id (save-match-data
-                               (string-match "\\([^ ]+\\)" error-message)
-                               (match-string 1 error-message))))
-      (with-output-to-string
-        (call-process "rpmlint" nil standard-output nil "-I" message-id))))
-  :modes (sh-mode rpm-spec-mode)
-  :predicate (lambda () (or (not (eq major-mode 'sh-mode))
-                            ;; In `sh-mode', we need the proper shell
-                            (eq sh-shell 'rpm))))
-
-(flycheck-def-config-file-var flycheck-markdown-markdownlint-cli-config
-    markdown-markdownlint-cli nil
-  :safe #'stringp
-  :package-version '(flycheck . "32"))
-
-(flycheck-define-checker markdown-markdownlint-cli
-  "Markdown checker using markdownlint-cli.
-
-See URL `https://github.com/igorshubovych/markdownlint-cli'."
-  :command ("markdownlint"
-            (config-file "--config" flycheck-markdown-markdownlint-cli-config)
-            source)
-  :error-patterns
-  ((error line-start
-          (file-name) ": " line ": " (id (one-or-more (not (any space))))
-          " " (message) line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors
-     (flycheck-remove-error-file-names "(string)" errors)))
-  :modes (markdown-mode gfm-mode))
-
-(flycheck-def-option-var flycheck-markdown-mdl-rules nil markdown-mdl
-  "Rules to enable for mdl.
-
-The value of this variable is a list of strings each of which is
-the name of a rule to enable.
-
-By default all rules are enabled.
-
-See URL `https://git.io/vhi2t'."
-  :type '(repeat :tag "Enabled rules"
-                 (string :tag "rule name"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "27"))
-
-(flycheck-def-option-var flycheck-markdown-mdl-tags nil markdown-mdl
-  "Rule tags to enable for mdl.
-
-The value of this variable is a list of strings each of which is
-the name of a rule tag.  Only rules with these tags are enabled.
-
-By default all rules are enabled.
-
-See URL `https://git.io/vhi2t'."
-  :type '(repeat :tag "Enabled tags"
-                 (string :tag "tag name"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "27"))
-
-(flycheck-def-config-file-var flycheck-markdown-mdl-style markdown-mdl nil
-  :safe #'stringp
-  :package-version '(flycheck . "27"))
-
-(flycheck-define-checker markdown-mdl
-  "Markdown checker using mdl.
-
-See URL `https://github.com/markdownlint/markdownlint'."
-  :command ("mdl"
-            (config-file "--style" flycheck-markdown-mdl-style)
-            (option "--tags=" flycheck-markdown-mdl-rules concat
-                    flycheck-option-comma-separated-list)
-            (option "--rules=" flycheck-markdown-mdl-rules concat
-                    flycheck-option-comma-separated-list))
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          (file-name) ":" line ": " (id (one-or-more alnum)) " " (message)
-          line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors
-     (flycheck-remove-error-file-names "(stdin)" errors)))
-  :modes (markdown-mode gfm-mode))
-
-(flycheck-define-checker nix
-  "Nix checker using nix-instantiate.
-
-See URL `https://nixos.org/nix/manual/#sec-nix-instantiate'."
-  :command ("nix-instantiate" "--parse" "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          "error: " (message) " at " (file-name) ":" line ":" column
-          line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors
-     (flycheck-remove-error-file-names "(string)" errors)))
-  :modes nix-mode)
-
-(defun flycheck-locate-sphinx-source-directory ()
-  "Locate the Sphinx source directory for the current buffer.
-
-Return the source directory, or nil, if the current buffer is not
-part of a Sphinx project."
-  (-when-let* ((filename (buffer-file-name))
-               (dir (locate-dominating-file filename "conf.py")))
-    (expand-file-name dir)))
-
-(flycheck-define-checker rst
-  "A ReStructuredText (RST) syntax checker using Docutils.
-
-See URL `http://docutils.sourceforge.net/'."
-  ;; We need to use source-inplace to properly resolve relative paths in
-  ;; include:: directives
-  :command ("rst2pseudoxml.py" "--report=2" "--halt=5"
-            ;; Read from standard input and throw output away
-            "-" null-device)
-  :standard-input t
-  :error-patterns
-  ((warning line-start "<stdin>:" line ": (WARNING/2) " (message) line-end)
-   (error line-start "<stdin>:" line
-          ": (" (or "ERROR/3" "SEVERE/4") ") "
-          (message) line-end))
-  :modes rst-mode)
-
-(flycheck-def-option-var flycheck-sphinx-warn-on-missing-references t rst-sphinx
-  "Whether to warn about missing references in Sphinx.
-
-When non-nil (the default), warn about all missing references in
-Sphinx via `-n'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.17"))
-
-(flycheck-define-checker rst-sphinx
-  "A ReStructuredText (RST) syntax checker using Sphinx.
-
-Requires Sphinx 1.2 or newer.  See URL `http://sphinx-doc.org'."
-  :command ("sphinx-build" "-b" "pseudoxml"
-            "-q" "-N"                   ; Reduced output and no colors
-            (option-flag "-n" flycheck-sphinx-warn-on-missing-references)
-            (eval (flycheck-locate-sphinx-source-directory))
-            temporary-directory         ; Redirect the output to a temporary
-                                        ; directory
-            source-original)            ; Sphinx needs the original document
-  :error-patterns
-  ((warning line-start (file-name) ":" line ": WARNING: " (message) line-end)
-   (error line-start
-          (file-name) ":" line
-          ": " (or "ERROR" "SEVERE") ": "
-          (message) line-end))
-  :modes rst-mode
-  :predicate (lambda () (and (flycheck-buffer-saved-p)
-                             (flycheck-locate-sphinx-source-directory))))
-
-(defun flycheck-ruby--find-project-root (_checker)
-  "Compute an appropriate working-directory for flycheck-ruby.
-
-This is either a parent directory containing a Gemfile, or nil."
-  (and
-   buffer-file-name
-   (locate-dominating-file buffer-file-name "Gemfile")))
-
-(flycheck-def-config-file-var flycheck-rubocoprc ruby-rubocop ".rubocop.yml"
-  :safe #'stringp)
-
-(flycheck-def-option-var flycheck-rubocop-lint-only nil ruby-rubocop
-  "Whether to only report code issues in Rubocop.
-
-When non-nil, only report code issues in Rubocop, via `--lint'.
-Otherwise report style issues as well."
-  :safe #'booleanp
-  :type 'boolean
-  :package-version '(flycheck . "0.16"))
-
-(flycheck-define-checker ruby-rubocop
-  "A Ruby syntax and style checker using the RuboCop tool.
-
-You need at least RuboCop 0.34 for this syntax checker.
-
-See URL `http://batsov.com/rubocop/'."
-  :command ("rubocop"
-            "--display-cop-names"
-            "--force-exclusion"
-            "--format" "emacs"
-            ;; Explicitly disable caching to prevent Rubocop 0.35.1 and earlier
-            ;; from caching standard input.  Later versions of Rubocop
-            ;; automatically disable caching with --stdin, see
-            ;; https://github.com/flycheck/flycheck/issues/844 and
-            ;; https://github.com/bbatsov/rubocop/issues/2576
-            "--cache" "false"
-            (config-file "--config" flycheck-rubocoprc)
-            (option-flag "--lint" flycheck-rubocop-lint-only)
-            ;; Rubocop takes the original file name as argument when reading
-            ;; from standard input
-            "--stdin" source-original)
-  :standard-input t
-  :working-directory flycheck-ruby--find-project-root
-  :error-patterns
-  ((info line-start (file-name) ":" line ":" column ": C: "
-         (optional (id (one-or-more (not (any ":")))) ": ") (message) line-end)
-   (warning line-start (file-name) ":" line ":" column ": W: "
-            (optional (id (one-or-more (not (any ":")))) ": ") (message)
-            line-end)
-   (error line-start (file-name) ":" line ":" column ": " (or "E" "F") ": "
-          (optional (id (one-or-more (not (any ":")))) ": ") (message)
-          line-end))
-  :modes (enh-ruby-mode ruby-mode)
-  :next-checkers ((warning . ruby-reek)
-                  (warning . ruby-rubylint)))
-
-;; Default to `nil' to let Reek find its configuration file by itself
-(flycheck-def-config-file-var flycheck-reekrc ruby-reek nil
-  :safe #'string-or-null-p
-  :package-version '(flycheck . "30"))
-
-(flycheck-define-checker ruby-reek
-  "A Ruby smell checker using reek.
-
-See URL `https://github.com/troessner/reek'."
-  :command ("reek" "--format" "json"
-            (config-file "--config" flycheck-reekrc)
-            source)
-  :error-parser flycheck-parse-reek
-  :modes (enh-ruby-mode ruby-mode)
-  :next-checkers ((warning . ruby-rubylint)))
-
-;; Default to `nil' to let Rubylint find its configuration file by itself, and
-;; to maintain backwards compatibility with older Rubylint and Flycheck releases
-(flycheck-def-config-file-var flycheck-rubylintrc ruby-rubylint nil
-  :safe #'stringp)
-
-(flycheck-define-checker ruby-rubylint
-  "A Ruby syntax and code analysis checker using ruby-lint.
-
-Requires ruby-lint 2.0.2 or newer.  See URL
-`https://github.com/YorickPeterse/ruby-lint'."
-  :command ("ruby-lint" "--presenter=syntastic"
-            (config-file "--config" flycheck-rubylintrc)
-            source)
-  ;; Ruby Lint can't read from standard input
-  :error-patterns
-  ((info line-start
-         (file-name) ":I:" line ":" column ": " (message) line-end)
-   (warning line-start
-            (file-name) ":W:" line ":" column ": " (message) line-end)
-   (error line-start
-          (file-name) ":E:" line ":" column ": " (message) line-end))
-  :modes (enh-ruby-mode ruby-mode))
-
-(flycheck-define-checker ruby
-  "A Ruby syntax checker using the standard Ruby interpreter.
-
-Please note that the output of different Ruby versions and
-implementations varies wildly.  This syntax checker supports
-current versions of MRI and JRuby, but may break when used with
-other implementations or future versions of these
-implementations.
-
-Please consider using `ruby-rubocop' or `ruby-reek' instead.
-
-See URL `https://www.ruby-lang.org/'."
-  :command ("ruby" "-w" "-c")
-  :standard-input t
-  :error-patterns
-  ;; These patterns support output from JRuby, too, to deal with RVM or Rbenv
-  ((error line-start "SyntaxError in -:" line ": " (message) line-end)
-   (warning line-start "-:" line ":" (optional column ":")
-            " warning: " (message) line-end)
-   (error line-start "-:" line ": " (message) line-end))
-  :modes (enh-ruby-mode ruby-mode)
-  :next-checkers ((warning . ruby-rubylint)))
-
-(flycheck-define-checker ruby-jruby
-  "A Ruby syntax checker using the JRuby interpreter.
-
-This syntax checker is very primitive, and may break on future
-versions of JRuby.
-
-Please consider using `ruby-rubocop' or `ruby-rubylint' instead.
-
-See URL `http://jruby.org/'."
-  :command ("jruby" "-w" "-c")
-  :standard-input t
-  :error-patterns
-  ((error   line-start "SyntaxError in -:" line ": " (message) line-end)
-   (warning line-start "-:" line ": warning: " (message) line-end)
-   (error   line-start "-:" line ": "          (message) line-end))
-  :modes (enh-ruby-mode ruby-mode)
-  :next-checkers ((warning . ruby-rubylint)))
-
-(flycheck-def-args-var flycheck-cargo-check-args (rust-cargo)
-  :package-version '(flycheck . "32"))
-
-(flycheck-def-args-var flycheck-rust-args (rust)
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-def-option-var flycheck-rust-check-tests t (rust-cargo rust)
-  "Whether to check test code in Rust.
-
-For the `rust' checker: When non-nil, `rustc' is passed the
-`--test' flag, which will check any code marked with the
-`#[cfg(test)]' attribute and any functions marked with
-`#[test]'. Otherwise, `rustc' is not passed `--test' and test
-code will not be checked.  Skipping `--test' is necessary when
-using `#![no_std]', because compiling the test runner requires
-`std'.
-
-For the `rust-cargo' checker: When non-nil, calls `cargo test
---no-run' instead of `cargo check'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '("flycheck" . "0.19"))
-
-(flycheck-def-option-var flycheck-rust-crate-root nil rust
-  "A path to the crate root for the current buffer.
-
-The value of this variable is either a string with the path to
-the crate root for the current buffer, or nil if the current buffer
-is a crate.  A relative path is relative to the current buffer.
-
-If this variable is non nil the current buffer will only be checked
-if it is not modified, i.e. after it has been saved."
-  :type 'string
-  :package-version '(flycheck . "0.20")
-  :safe #'stringp)
-(make-variable-buffer-local 'flycheck-rust-crate-root)
-
-(flycheck-def-option-var flycheck-rust-crate-type "lib" (rust-cargo rust)
-  "The type of the Rust Crate to check.
-
-For `rust-cargo', the value should be a string denoting the
-target type passed to Cargo.  See
-`flycheck-rust-valid-crate-type-p' for the list of allowed
-values.
-
-For `rust', the value should be a string denoting the crate type
-for the `--crate-type' flag of rustc."
-  :type '(choice (const :tag "nil (rust/rust-cargo)" nil)
-                 (const :tag "lib (rust/rust-cargo)" "lib")
-                 (const :tag "bin (rust/rust-cargo)" "bin")
-                 (const :tag "example (rust-cargo)" "example")
-                 (const :tag "test (rust-cargo)" "test")
-                 (const :tag "bench (rust-cargo)" "bench")
-                 (const :tag "rlib (rust)" "rlib")
-                 (const :tag "dylib (rust)" "dylib")
-                 (const :tag "cdylib (rust)" "cdylib")
-                 (const :tag "staticlib (rust)" "staticlib")
-                 (const :tag "metadata (rust)" "metadata"))
-  :safe #'stringp
-  :package-version '(flycheck . "0.20"))
-(make-variable-buffer-local 'flycheck-rust-crate-type)
-
-(flycheck-def-option-var flycheck-rust-binary-name nil rust-cargo
-  "The name of the binary to pass to `cargo check --CRATE-TYPE'.
-
-The value of this variable is a string denoting the name of the
-target to check: usually the name of the crate, or the name of
-one of the files under `src/bin', `tests', `examples' or
-`benches'.
-
-This always requires a non-nil value, unless
-`flycheck-rust-crate-type' is `lib' or nil, in which case it is
-ignored."
-  :type 'string
-  :safe #'stringp
-  :package-version '(flycheck . "28"))
-(make-variable-buffer-local 'flycheck-rust-binary-name)
-
-(flycheck-def-option-var flycheck-rust-features nil rust-cargo
-  "List of features to activate during build or check.
-
-The value of this variable is a list of strings denoting features
-that will be activated to build the target to check. Features will
-be passed to `cargo check --features=FEATURES'."
-  :type '(repeat :tag "Features to activate"
-                 (string :tag "Feature"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "32"))
-(make-variable-buffer-local 'flycheck-rust-features)
-
-(flycheck-def-option-var flycheck-rust-library-path nil rust
-  "A list of library directories for Rust.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the library path of Rust.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Library directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.18"))
-
-(defun flycheck-rust-error-explainer (error)
-  "Return an explanation text for the given `flycheck-error' ERROR."
-  (-when-let (error-code (flycheck-error-id error))
-    (with-output-to-string
-      (call-process "rustc" nil standard-output nil "--explain" error-code))))
-
-(defun flycheck-rust-error-filter (errors)
-  "Filter ERRORS from rustc output that have no explanatory value."
-  (seq-remove
-   (lambda (err)
-     (or
-      ;; Macro errors emit a diagnostic in a phony file,
-      ;; e.g. "<println macros>".
-      (-when-let (filename (flycheck-error-filename err))
-        (string-match-p (rx "macros>" line-end) filename))
-      ;; Redundant message giving the number of failed errors
-      (-when-let (msg (flycheck-error-message err))
-        (string-match-p
-         (rx
-          (or (: "aborting due to " (optional (one-or-more num) " ")
-                 "previous error")
-              (: "For more information about this error, try `rustc --explain "
-                 (one-or-more alnum) "`.")))
-         msg))))
-   errors))
-
-(defun flycheck-rust-manifest-directory ()
-  "Return the nearest directory holding the Cargo manifest.
-
-Return the nearest directory containing the `Cargo.toml' manifest
-file, starting from the current buffer and using
-`locate-dominating-file'.  Return nil if there is no such file,
-or if the current buffer has no file name."
-  (and buffer-file-name
-       (locate-dominating-file buffer-file-name "Cargo.toml")))
-
-(defun flycheck-rust-cargo-metadata ()
-  "Run 'cargo metadata' and return the result as parsed JSON object."
-  (car (flycheck-parse-json
-        (with-output-to-string
-          (call-process "cargo" nil standard-output nil
-                        "metadata" "--no-deps" "--format-version" "1")))))
-
-(defun flycheck-rust-cargo-workspace-root ()
-  "Return the path to the workspace root of a Rust Cargo project.
-
-Return nil if the workspace root does not exist (for Rust
-versions inferior to 1.25)."
-  (let-alist (flycheck-rust-cargo-metadata)
-    .workspace_root))
-
-(defun flycheck-rust-cargo-has-command-p (command)
-  "Whether Cargo has COMMAND in its list of commands.
-
-Execute `cargo --list' to find out whether COMMAND is present."
-  (let ((cargo (funcall flycheck-executable-find "cargo")))
-    (member command (mapcar #'string-trim-left
-                            (ignore-errors (process-lines cargo "--list"))))))
-
-(defun flycheck-rust-valid-crate-type-p (crate-type)
-  "Whether CRATE-TYPE is a valid target type for Cargo.
-
-A valid Cargo target type is one of `lib', `bin', `example',
-`test' or `bench'."
-  (member crate-type '(nil "lib" "bin" "example" "test" "bench")))
-
-(flycheck-define-checker rust-cargo
-  "A Rust syntax checker using Cargo.
-
-This syntax checker requires Rust 1.17 or newer.  See URL
-`https://www.rust-lang.org'."
-  :command ("cargo"
-            (eval (if flycheck-rust-check-tests
-                      "test"
-                    "check"))
-            (eval (when flycheck-rust-check-tests
-                    "--no-run"))
-            (eval (when flycheck-rust-crate-type
-                    (concat "--" flycheck-rust-crate-type)))
-            ;; All crate targets except "lib" need a binary name
-            (eval (when (and flycheck-rust-crate-type
-                             (not (string= flycheck-rust-crate-type "lib")))
-                    flycheck-rust-binary-name))
-            (option "--features=" flycheck-rust-features concat
-                    flycheck-option-comma-separated-list)
-            (eval flycheck-cargo-check-args)
-            "--message-format=json")
-  :error-parser flycheck-parse-cargo-rustc
-  :error-filter (lambda (errors)
-                  ;; In Rust 1.25+, filenames are relative to the workspace
-                  ;; root.
-                  (let ((root (flycheck-rust-cargo-workspace-root)))
-                    (seq-do (lambda (err)
-                              (setf (flycheck-error-filename err)
-                                    (expand-file-name
-                                     (flycheck-error-filename err) root)))
-                            (flycheck-rust-error-filter errors))))
-  :error-explainer flycheck-rust-error-explainer
-  :modes rust-mode
-  :predicate flycheck-buffer-saved-p
-  :enabled flycheck-rust-manifest-directory
-  :working-directory (lambda (_) (flycheck-rust-manifest-directory))
-  :verify
-  (lambda (_)
-    (and buffer-file-name
-         (let* ((has-toml (flycheck-rust-manifest-directory))
-                (valid-crate-type (flycheck-rust-valid-crate-type-p
-                                   flycheck-rust-crate-type))
-                (need-binary-name
-                 (and flycheck-rust-crate-type
-                      (not (string= flycheck-rust-crate-type "lib")))))
-           (list
-            (flycheck-verification-result-new
-             :label "Cargo.toml"
-             :message (if has-toml "Found" "Missing")
-             :face (if has-toml 'success '(bold warning)))
-            (flycheck-verification-result-new
-             :label "Crate type"
-             :message (if valid-crate-type
-                          (format "%s" flycheck-rust-crate-type)
-                        (format "%s (invalid, should be one of 'lib', 'bin', \
-'test', 'example' or 'bench')"
-                                flycheck-rust-crate-type))
-             :face (if valid-crate-type 'success '(bold error)))
-            (flycheck-verification-result-new
-             :label "Binary name"
-             :message (cond
-                       ((not need-binary-name) "Not required")
-                       ((not flycheck-rust-binary-name) "Required")
-                       (t (format "%s" flycheck-rust-binary-name)))
-             :face (cond
-                    ((not need-binary-name) 'success)
-                    ((not flycheck-rust-binary-name) '(bold error))
-                    (t 'success))))))))
-
-(flycheck-define-checker rust
-  "A Rust syntax checker using Rust compiler.
-
-This syntax checker needs Rust 1.18 or newer.  See URL
-`https://www.rust-lang.org'."
-  :command ("rustc"
-            (option "--crate-type" flycheck-rust-crate-type)
-            "--emit=mir" "-o" "/dev/null" ; avoid creating binaries
-            "--error-format=json"
-            (option-flag "--test" flycheck-rust-check-tests)
-            (option-list "-L" flycheck-rust-library-path concat)
-            (eval flycheck-rust-args)
-            (eval (or flycheck-rust-crate-root
-                      (flycheck-substitute-argument 'source-original 'rust))))
-  :error-parser flycheck-parse-rustc
-  :error-filter flycheck-rust-error-filter
-  :error-explainer flycheck-rust-error-explainer
-  :modes rust-mode
-  :predicate flycheck-buffer-saved-p)
-
-(flycheck-define-checker rust-clippy
-  "A Rust syntax checker using clippy.
-
-See URL `https://github.com/rust-lang-nursery/rust-clippy'."
-  :command ("cargo" "+nightly" "clippy" "--message-format=json")
-  :error-parser flycheck-parse-cargo-rustc
-  :error-filter flycheck-rust-error-filter
-  :error-explainer flycheck-rust-error-explainer
-  :modes rust-mode
-  :predicate flycheck-buffer-saved-p
-  :enabled (lambda ()
-             (and (flycheck-rust-cargo-has-command-p "clippy")
-                  (flycheck-rust-manifest-directory)))
-  :working-directory (lambda (_) (flycheck-rust-manifest-directory))
-  :verify
-  (lambda (_)
-    (and buffer-file-name
-         (let ((has-toml (flycheck-rust-manifest-directory))
-               (has-clippy (flycheck-rust-cargo-has-command-p "clippy")))
-           (list
-            (flycheck-verification-result-new
-             :label "Clippy"
-             :message (if has-clippy "Found"
-                        "Cannot find the `cargo clippy' command")
-             :face (if has-clippy 'success '(bold warning)))
-            (flycheck-verification-result-new
-             :label "Cargo.toml"
-             :message (if has-toml "Found" "Missing")
-             :face (if has-toml 'success '(bold warning))))))))
-
-(defvar flycheck-sass-scss-cache-directory nil
-  "The cache directory for `sass' and `scss'.")
-
-(defun flycheck-sass-scss-cache-location ()
-  "Get the cache location for `sass' and `scss'.
-
-If no cache directory exists yet, create one and return it.
-Otherwise return the previously used cache directory."
-  (setq flycheck-sass-scss-cache-directory
-        (or flycheck-sass-scss-cache-directory
-            (make-temp-file "flycheck-sass-scss-cache" 'directory))))
-
-(flycheck-def-option-var flycheck-sass-compass nil sass
-  "Whether to enable the Compass CSS framework.
-
-When non-nil, enable the Compass CSS framework, via `--compass'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.16"))
-
-(flycheck-define-checker sass
-  "A Sass syntax checker using the Sass compiler.
-
-See URL `http://sass-lang.com'."
-  :command ("sass"
-            "--cache-location" (eval (flycheck-sass-scss-cache-location))
-            (option-flag "--compass" flycheck-sass-compass)
-            "--check" "--stdin")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          (or "Syntax error: " "Error: ")
-          (message (one-or-more not-newline)
-                   (zero-or-more "\n"
-                                 (one-or-more " ")
-                                 (one-or-more not-newline)))
-          (optional "\r") "\n" (one-or-more " ") "on line " line
-          " of standard input"
-          line-end)
-   (warning line-start
-            "WARNING: "
-            (message (one-or-more not-newline)
-                     (zero-or-more "\n"
-                                   (one-or-more " ")
-                                   (one-or-more not-newline)))
-            (optional "\r") "\n" (one-or-more " ") "on line " line
-            " of " (one-or-more not-newline)
-            line-end))
-  :modes sass-mode)
-
-(flycheck-def-config-file-var flycheck-sass-lintrc sass/scss-sass-lint
-                              ".sass-lint.yml"
-  :safe #'stringp
-  :package-version '(flycheck . "30"))
-
-(flycheck-define-checker sass/scss-sass-lint
-  "A SASS/SCSS syntax checker using sass-Lint.
-
-See URL `https://github.com/sasstools/sass-lint'."
-  :command ("sass-lint"
-            "--verbose"
-            "--no-exit"
-            "--format" "Checkstyle"
-            (config-file "--config" flycheck-sass-lintrc)
-            source)
-  :error-parser flycheck-parse-checkstyle
-  :modes (sass-mode scss-mode))
-
-(flycheck-define-checker scala
-  "A Scala syntax checker using the Scala compiler.
-
-See URL `https://www.scala-lang.org/'."
-  :command ("scalac" "-Ystop-after:parser" source)
-  :error-patterns
-  ((error line-start (file-name) ":" line ": error: " (message) line-end))
-  :modes scala-mode
-  :next-checkers ((warning . scala-scalastyle)))
-
-(flycheck-def-config-file-var flycheck-scalastylerc scala-scalastyle nil
-  :safe #'stringp
-  :package-version '(flycheck . "0.20"))
-
-(flycheck-define-checker scala-scalastyle
-  "A Scala style checker using scalastyle.
-
-Note that this syntax checker is not used if
-`flycheck-scalastylerc' is nil or refers to a non-existing file.
-
-See URL `http://www.scalastyle.org'."
-  :command ("scalastyle"
-            (config-file "-c" flycheck-scalastylerc)
-            source)
-  :error-patterns
-  ((error line-start "error file=" (file-name) " message="
-          (message) " line=" line (optional " column=" column) line-end)
-   (warning line-start "warning file=" (file-name) " message="
-            (message) " line=" line (optional " column=" column) line-end))
-  :error-filter (lambda (errors)
-                  (flycheck-sanitize-errors
-                   (flycheck-increment-error-columns errors)))
-  :modes scala-mode
-  :predicate
-  ;; Inhibit this syntax checker if the JAR or the configuration are unset or
-  ;; missing
-  (lambda () (and flycheck-scalastylerc
-                  (flycheck-locate-config-file flycheck-scalastylerc
-                                               'scala-scalastyle)))
-  :verify (lambda (checker)
-            (let ((config-file (and flycheck-scalastylerc
-                                    (flycheck-locate-config-file
-                                     flycheck-scalastylerc checker))))
-              (list
-               (flycheck-verification-result-new
-                :label "Configuration file"
-                :message (cond
-                          ((not flycheck-scalastylerc)
-                           "`flycheck-scalastyletrc' not set")
-                          ((not config-file)
-                           (format "file %s not found" flycheck-scalastylerc))
-                          (t (format "found at %s" config-file)))
-                :face (cond
-                       ((not flycheck-scalastylerc) '(bold warning))
-                       ((not config-file) '(bold error))
-                       (t 'success)))))))
-
-(flycheck-def-args-var flycheck-scheme-chicken-args scheme-chicken
-  :package-version '(flycheck . "32"))
-
-(flycheck-define-checker scheme-chicken
-  "A CHICKEN Scheme syntax checker using the CHICKEN compiler `csc'.
-
-See URL `http://call-cc.org/'."
-  :command ("csc" "-analyze-only" "-local"
-            (eval flycheck-scheme-chicken-args)
-            source)
-  :error-patterns
-  ((info line-start
-         "Note: " (zero-or-more not-newline) ":\n"
-         (one-or-more (any space)) "(" (file-name) ":" line ") " (message)
-         line-end)
-   (warning line-start
-            "Warning: " (zero-or-more not-newline) ",\n"
-            (one-or-more (any space)) (zero-or-more not-newline) ":\n"
-            (one-or-more (any space)) "(" (file-name) ":" line ") " (message)
-            line-end)
-   (warning line-start
-            "Warning: " (zero-or-more not-newline) ":\n"
-            (one-or-more (any space)) "(" (file-name) ":" line ") " (message)
-            line-end)
-   (error line-start "Error: (line " line ") " (message) line-end)
-   (error line-start "Syntax error: (" (file-name) ":" line ")"
-          (zero-or-more not-newline) " - "
-          (message (one-or-more not-newline)
-                   (zero-or-more "\n"
-                                 (zero-or-more space)
-                                 (zero-or-more not-newline))
-                   (one-or-more space) "<--")
-          line-end)
-   ;; A of version 4.12.0, the chicken compiler doesn't provide a
-   ;; line number for this error.
-   (error line-start "Syntax error: "
-          (message (one-or-more not-newline)
-                   (zero-or-more "\n"
-                                 (zero-or-more space)
-                                 (zero-or-more not-newline))
-                   (one-or-more space) "<--")
-          line-end)
-   (error line-start
-          "Error: " (zero-or-more not-newline) ":\n"
-          (one-or-more (any space)) "(" (file-name) ":" line ") " (message)
-          line-end)
-   ;; A of version 4.12.0, the chicken compiler doesn't provide a
-   ;; line number for this error.
-   (error line-start "Error: "
-          (message (one-or-more not-newline)
-                   (zero-or-more "\n"
-                                 (zero-or-more space)
-                                 (zero-or-more not-newline))
-                   (one-or-more space) "<--")))
-  :error-filter flycheck-fill-empty-line-numbers
-  :predicate
-  (lambda ()
-    ;; In `scheme-mode' we must check the current Scheme implementation
-    ;; being used
-    (and (boundp 'geiser-impl--implementation)
-         (eq geiser-impl--implementation 'chicken)))
-  :verify
-  (lambda (_checker)
-    (let ((geiser-impl (bound-and-true-p geiser-impl--implementation)))
-      (list
-       (flycheck-verification-result-new
-        :label "Geiser Implementation"
-        :message (cond
-                  ((eq geiser-impl 'chicken) "Chicken Scheme")
-                  (geiser-impl (format "Other: %s" geiser-impl))
-                  (t "Geiser not active"))
-        :face (cond
-               ((eq geiser-impl 'chicken) 'success)
-               (t '(bold error)))))))
-  :modes scheme-mode)
-
-(defconst flycheck-scss-lint-checkstyle-re
-  (rx "cannot load such file" (1+ not-newline) "scss_lint_reporter_checkstyle")
-  "Regular expression to parse missing checkstyle error.")
-
-(defun flycheck-parse-scss-lint (output checker buffer)
-  "Parse SCSS-Lint OUTPUT from CHECKER and BUFFER.
-
-Like `flycheck-parse-checkstyle', but catches errors about
-missing checkstyle reporter from SCSS-Lint."
-  (if (string-match-p flycheck-scss-lint-checkstyle-re output)
-      (list (flycheck-error-new-at
-             1 nil 'error "Checkstyle reporter for SCSS-Lint missing.
-Please run gem install scss_lint_reporter_checkstyle"
-             :checker checker
-             :buffer buffer
-             :filename (buffer-file-name buffer)))
-    (flycheck-parse-checkstyle output checker buffer)))
-
-(flycheck-def-config-file-var flycheck-scss-lintrc scss-lint ".scss-lint.yml"
-  :safe #'stringp
-  :package-version '(flycheck . "0.23"))
-
-(flycheck-define-checker scss-lint
-  "A SCSS syntax checker using SCSS-Lint.
-
-Needs SCSS-Lint 0.43.2 or newer.
-
-See URL `https://github.com/brigade/scss-lint'."
-  :command ("scss-lint"
-            "--require=scss_lint_reporter_checkstyle"
-            "--format=Checkstyle"
-            (config-file "--config" flycheck-scss-lintrc)
-            "--stdin-file-path" source-original "-")
-  :standard-input t
-  ;; We cannot directly parse Checkstyle XML, since for some mysterious reason
-  ;; SCSS-Lint doesn't have a built-in Checkstyle reporter, and instead ships it
-  ;; as an addon which might not be installed.  We use a custom error parser to
-  ;; check whether the addon is missing and turn that into a special kind of
-  ;; Flycheck error.
-  :error-parser flycheck-parse-scss-lint
-  :modes scss-mode
-  :verify
-  (lambda (checker)
-    (let* ((executable (flycheck-find-checker-executable checker))
-           (reporter-missing
-            (and executable
-                 (with-temp-buffer
-                   (call-process executable nil t nil
-                                 "--require=scss_lint_reporter_checkstyle")
-                   (goto-char (point-min))
-                   (re-search-forward
-                    flycheck-scss-lint-checkstyle-re
-                    nil 'no-error)))))
-      (when executable
-        (list
-         (flycheck-verification-result-new
-          :label "checkstyle reporter"
-          :message (if reporter-missing
-                       "scss_lint_reporter_checkstyle missing"
-                     "present")
-          :face (if reporter-missing
-                    '(bold error)
-                  'success)))))))
-
-(flycheck-define-checker scss-stylelint
-  "A SCSS syntax and style checker using stylelint.
-
-See URL `http://stylelint.io/'."
-  :command ("stylelint"
-            (eval flycheck-stylelint-args)
-            "--syntax" "scss"
-            (option-flag "--quiet" flycheck-stylelint-quiet)
-            (config-file "--config" flycheck-stylelintrc))
-  :standard-input t
-  :error-parser flycheck-parse-stylelint
-  :modes (scss-mode))
-
-(flycheck-def-option-var flycheck-scss-compass nil scss
-  "Whether to enable the Compass CSS framework.
-
-When non-nil, enable the Compass CSS framework, via `--compass'."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "0.16"))
-
-(flycheck-define-checker scss
-  "A SCSS syntax checker using the SCSS compiler.
-
-See URL `http://sass-lang.com'."
-  :command ("scss"
-            "--cache-location" (eval (flycheck-sass-scss-cache-location))
-            (option-flag "--compass" flycheck-scss-compass)
-            "--check" "--stdin")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          (or "Syntax error: " "Error: ")
-          (message (one-or-more not-newline)
-                   (zero-or-more "\n"
-                                 (one-or-more " ")
-                                 (one-or-more not-newline)))
-          (optional "\r") "\n" (one-or-more " ") "on line " line
-          " of standard input"
-          line-end)
-   (warning line-start
-            "WARNING: "
-            (message (one-or-more not-newline)
-                     (zero-or-more "\n"
-                                   (one-or-more " ")
-                                   (one-or-more not-newline)))
-            (optional "\r") "\n" (one-or-more " ") "on line " line
-            " of an unknown file"
-            line-end))
-  :modes scss-mode)
-
-(flycheck-def-args-var flycheck-sh-bash-args (sh-bash)
-  :package-version '(flycheck . "32"))
-
-(flycheck-define-checker sh-bash
-  "A Bash syntax checker using the Bash shell.
-
-See URL `http://www.gnu.org/software/bash/'."
-  :command ("bash" "--norc" "-n"
-            (eval flycheck-sh-bash-args)
-            "--")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          ;; The name/path of the bash executable
-          (one-or-more (not (any ":"))) ":"
-          ;; A label "line", possibly localized
-          (one-or-more (not (any digit)))
-          line (zero-or-more " ") ":" (zero-or-more " ")
-          (message) line-end))
-  :modes sh-mode
-  :predicate (lambda () (eq sh-shell 'bash))
-  :next-checkers ((warning . sh-shellcheck)))
-
-(flycheck-define-checker sh-posix-dash
-  "A POSIX Shell syntax checker using the Dash shell.
-
-See URL `http://gondor.apana.org.au/~herbert/dash/'."
-  :command ("dash" "-n")
-  :standard-input t
-  :error-patterns
-  ((error line-start (one-or-more (not (any ":"))) ": " line ": " (message)))
-  :modes sh-mode
-  :predicate (lambda () (eq sh-shell 'sh))
-  :next-checkers ((warning . sh-shellcheck)))
-
-(flycheck-define-checker sh-posix-bash
-  "A POSIX Shell syntax checker using the Bash shell.
-
-See URL `http://www.gnu.org/software/bash/'."
-  :command ("bash" "--posix" "--norc" "-n" "--")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          ;; The name/path of the bash executable
-          (one-or-more (not (any ":"))) ":"
-          ;; A label "line", possibly localized
-          (one-or-more (not (any digit)))
-          line (zero-or-more " ") ":" (zero-or-more " ")
-          (message) line-end))
-  :modes sh-mode
-  :predicate (lambda () (eq sh-shell 'sh))
-  :next-checkers ((warning . sh-shellcheck)))
-
-(flycheck-define-checker sh-zsh
-  "A Zsh syntax checker using the Zsh shell.
-
-See URL `http://www.zsh.org/'."
-  :command ("zsh" "--no-exec" "--no-globalrcs" "--no-rcs" source)
-  :error-patterns
-  ((error line-start (file-name) ":" line ": " (message) line-end))
-  :modes sh-mode
-  :predicate (lambda () (eq sh-shell 'zsh))
-  :next-checkers ((warning . sh-shellcheck)))
-
-(defconst flycheck-shellcheck-supported-shells '(bash ksh88 sh)
-  "Shells supported by ShellCheck.")
-
-(flycheck-def-option-var flycheck-shellcheck-excluded-warnings nil sh-shellcheck
-  "A list of excluded warnings for ShellCheck.
-
-The value of this variable is a list of strings, where each
-string is a warning code to be excluded from ShellCheck reports.
-By default, no warnings are excluded."
-  :type '(repeat :tag "Excluded warnings"
-                 (string :tag "Warning code"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.21"))
-
-(flycheck-def-option-var flycheck-shellcheck-follow-sources t sh-shellcheck
-  "Whether to follow external sourced files in scripts.
-
-Shellcheck will follow and parse sourced files so long as a
-pre-runtime resolvable path to the file is present.  This can
-either be part of the source command itself:
-   source /full/path/to/file.txt
-or added as a shellcheck directive before the source command:
-   # shellcheck source=/full/path/to/file.txt."
-  :type 'boolean
-  :safe #'booleanp
-  :package-version '(flycheck . "31"))
-
-(flycheck-define-checker sh-shellcheck
-  "A shell script syntax and style checker using Shellcheck.
-
-See URL `https://github.com/koalaman/shellcheck/'."
-  :command ("shellcheck"
-            "--format" "checkstyle"
-            "--shell" (eval (symbol-name sh-shell))
-            (option-flag "--external-sources"
-                         flycheck-shellcheck-follow-sources)
-            (option "--exclude" flycheck-shellcheck-excluded-warnings list
-                    flycheck-option-comma-separated-list)
-            "-")
-  :standard-input t
-  :error-parser flycheck-parse-checkstyle
-  :error-filter
-  (lambda (errors)
-    (flycheck-remove-error-file-names
-     "-" (flycheck-dequalify-error-ids errors)))
-  :modes sh-mode
-  :predicate (lambda () (memq sh-shell flycheck-shellcheck-supported-shells))
-  :verify (lambda (_)
-            (let ((supports-shell (memq sh-shell
-                                        flycheck-shellcheck-supported-shells)))
-              (list
-               (flycheck-verification-result-new
-                :label (format "Shell %s supported" sh-shell)
-                :message (if supports-shell "yes" "no")
-                :face (if supports-shell 'success '(bold warning)))))))
-
-(flycheck-define-checker slim
-  "A Slim syntax checker using the Slim compiler.
-
-See URL `http://slim-lang.com'."
-  :command ("slimrb" "--compile")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          "Slim::Parser::SyntaxError:" (message) (optional "\r") "\n  "
-          "STDIN, Line " line (optional ", Column " column)
-          line-end))
-  :modes slim-mode
-  :next-checkers ((warning . slim-lint)))
-
-(flycheck-define-checker slim-lint
-  "A Slim linter.
-
-See URL `https://github.com/sds/slim-lint'."
-  :command ("slim-lint" "--reporter=checkstyle" source)
-  :error-parser flycheck-parse-checkstyle
-  :modes slim-mode)
-
-(flycheck-define-checker sql-sqlint
-  "A SQL syntax checker using the sqlint tool.
-
-See URL `https://github.com/purcell/sqlint'."
-  :command ("sqlint")
-  :standard-input t
-  :error-patterns
-  ((warning line-start "stdin:" line ":" column ":WARNING "
-            (message (one-or-more not-newline)
-                     (zero-or-more "\n"
-                                   (one-or-more "  ")
-                                   (one-or-more not-newline)))
-            line-end)
-   (error line-start "stdin:" line ":" column ":ERROR "
-          (message (one-or-more not-newline)
-                   (zero-or-more "\n"
-                                 (one-or-more "  ")
-                                 (one-or-more not-newline)))
-          line-end))
-  :modes (sql-mode))
-
-(flycheck-define-checker systemd-analyze
-  "A systemd unit checker using systemd-analyze(1).
-
-See URL
-`https://www.freedesktop.org/software/systemd/man/systemd-analyze.html'."
-  :command ("systemd-analyze" "verify" source)
-  :error-patterns
-  ((error line-start "[" (file-name) ":" line "] " (message) line-end))
-  :modes (systemd-mode))
-
-(flycheck-def-config-file-var flycheck-chktexrc tex-chktex ".chktexrc"
-  :safe #'stringp)
-
-(flycheck-define-checker tcl-nagelfar
-  "An extensible tcl syntax checker
-
-See URL `http://nagelfar.sourceforge.net/'."
-  :command ("nagelfar" "-H" source)
-  :error-patterns
-  ;; foo.tcl: 29: E Wrong number of arguments (4) to "set"
-  ;; foo.tcl: 29: W Expr without braces
-  ((info    line-start (file-name) ": " line ": N " (message) line-end)
-   (warning line-start (file-name) ": " line ": W " (message) line-end)
-   (error   line-start (file-name) ": " line ": E " (message) line-end))
-  :modes tcl-mode)
-
-(flycheck-define-checker tex-chktex
-  "A TeX and LaTeX syntax and style checker using chktex.
-
-See URL `http://www.nongnu.org/chktex/'."
-  :command ("chktex"
-            (config-file "--localrc" flycheck-chktexrc)
-            ;; Compact error messages, and no version information, and execute
-            ;; \input statements
-            "--verbosity=0" "--quiet" "--inputfiles")
-  :standard-input t
-  :error-patterns
-  ((warning line-start "stdin:" line ":" column ":"
-            (id (one-or-more digit)) ":" (message) line-end))
-  :error-filter
-  (lambda (errors)
-    (flycheck-sanitize-errors (flycheck-increment-error-columns errors)))
-  :modes (latex-mode plain-tex-mode))
-
-(flycheck-define-checker tex-lacheck
-  "A LaTeX syntax and style checker using lacheck.
-
-See URL `http://www.ctan.org/pkg/lacheck'."
-  :command ("lacheck" source-inplace)
-  :error-patterns
-  ((warning line-start
-            "\"" (file-name) "\", line " line ": " (message)
-            line-end))
-  :modes latex-mode)
-
-(flycheck-define-checker texinfo
-  "A Texinfo syntax checker using makeinfo.
-
-See URL `http://www.gnu.org/software/texinfo/'."
-  :command ("makeinfo" "-o" null-device "-")
-  :standard-input t
-  :error-patterns
-  ((warning line-start
-            "-:" line (optional ":" column) ": " "warning: " (message)
-            line-end)
-   (error line-start
-          "-:" line (optional ":" column) ": " (message)
-          line-end))
-  :modes texinfo-mode)
-
-(flycheck-def-config-file-var flycheck-typescript-tslint-config
-    typescript-tslint "tslint.json"
-  :safe #'stringp
-  :package-version '(flycheck . "27"))
-
-(flycheck-def-option-var flycheck-typescript-tslint-rulesdir
-    nil typescript-tslint
-  "The directory of custom rules for TSLint.
-
-The value of this variable is either a string containing the path
-to a directory with custom rules, or nil, to not give any custom
-rules to TSLint.
-
-Refer to the TSLint manual at URL
-`http://palantir.github.io/tslint/usage/cli/'
-for more information about the custom directory."
-  :type '(choice (const :tag "No custom rules directory" nil)
-                 (directory :tag "Custom rules directory"))
-  :safe #'stringp
-  :package-version '(flycheck . "27"))
-
-(flycheck-def-args-var flycheck-tslint-args (typescript-tslint)
-  :package-version '(flycheck . "31"))
-
-(flycheck-define-checker typescript-tslint
-  "TypeScript style checker using TSLint.
-
-Note that this syntax checker is not used if
-`flycheck-typescript-tslint-config' is nil or refers to a
-non-existing file.
-
-See URL `https://github.com/palantir/tslint'."
-  :command ("tslint" "--format" "json"
-            (config-file "--config" flycheck-typescript-tslint-config)
-            (option "--rules-dir" flycheck-typescript-tslint-rulesdir)
-            (eval flycheck-tslint-args)
-            source-inplace)
-  :error-parser flycheck-parse-tslint
-  :modes (typescript-mode))
-
-(flycheck-def-option-var flycheck-verilator-include-path nil verilog-verilator
-  "A list of include directories for Verilator.
-
-The value of this variable is a list of strings, where each
-string is a directory to add to the include path of Verilator.
-Relative paths are relative to the file being checked."
-  :type '(repeat (directory :tag "Include directory"))
-  :safe #'flycheck-string-list-p
-  :package-version '(flycheck . "0.24"))
-
-(flycheck-define-checker verilog-verilator
-  "A Verilog syntax checker using the Verilator Verilog HDL simulator.
-
-See URL `https://www.veripool.org/wiki/verilator'."
-  :command ("verilator" "--lint-only" "-Wall"
-            (option-list "-I" flycheck-verilator-include-path concat)
-            source)
-  :error-patterns
-  ((warning line-start "%Warning-" (zero-or-more not-newline) ": "
-            (file-name) ":" line ": " (message) line-end)
-   (error line-start "%Error: " (file-name) ":"
-          line ": " (message) line-end))
-  :modes verilog-mode)
-
-(flycheck-def-option-var flycheck-ghdl-language-standard nil vhdl-ghdl
-  "The language standard to use in GHDL.
-
-The value of this variable is either a string denoting a language
-standard, or nil, to use the default standard.  When non-nil,
-pass the language standard via the `--std' option."
-  :type '(choice (const :tag "Default standard" nil)
-                 (string :tag "Language standard"))
-  :safe #'stringp
-  :package-version '(flycheck . "32"))
-(make-variable-buffer-local 'flycheck-ghdl-language-standard)
-
-(flycheck-def-option-var flycheck-ghdl-workdir nil vhdl-ghdl
-  "The directory to use for the file library
-
-The value of this variable is either a string with the directory
-to use for the file library, or nil, to use the default value.
-When non-nil, pass the directory via the `--workdir' option."
-  :type '(choice (const :tag "Default directory" nil)
-                 (string :tag "Directory for the file library"))
-  :safe #'stringp
-  :package-version '(flycheck . "32"))
-(make-variable-buffer-local 'flycheck-ghdl-workdir)
-
-(flycheck-define-checker vhdl-ghdl
-  "A VHDL syntax checker using GHDL.
-
-See URL `https://github.com/ghdl/ghdl'."
-  :command ("ghdl"
-            "-s" ; only do the syntax checking
-            (option "--std=" flycheck-ghdl-language-standard concat)
-            (option "--workdir=" flycheck-ghdl-workdir concat)
-            source)
-  :error-patterns
-  ((error line-start (file-name) ":" line ":" column ": " (message) line-end))
-  :modes vhdl-mode)
-
-(flycheck-def-option-var flycheck-xml-xmlstarlet-xsd-path nil xml-xmlstarlet
-  "An XSD schema to validate against."
-  :type '(file :tag "XSD schema")
-  :safe #'stringp
-  :package-version '(flycheck . "31"))
-
-(flycheck-define-checker xml-xmlstarlet
-  "A XML syntax checker and validator using the xmlstarlet utility.
-
-See URL `http://xmlstar.sourceforge.net/'."
-  ;; Validate standard input with verbose error messages, and do not dump
-  ;; contents to standard output
-  :command ("xmlstarlet" "val" "--err" "--quiet"
-            (option "--xsd" flycheck-xml-xmlstarlet-xsd-path)
-            "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start "-:" line "." column ": " (message) line-end))
-  :modes (xml-mode nxml-mode))
-
-(flycheck-def-option-var flycheck-xml-xmllint-xsd-path nil xml-xmllint
-  "An XSD schema to validate against."
-  :type '(file :tag "XSD schema")
-  :safe #'stringp
-  :package-version '(flycheck . "31"))
-
-(flycheck-define-checker xml-xmllint
-  "A XML syntax checker and validator using the xmllint utility.
-
-The xmllint is part of libxml2, see URL
-`http://www.xmlsoft.org/'."
-  :command ("xmllint" "--noout"
-            (option "--schema" flycheck-xml-xmllint-xsd-path)
-            "-")
-  :standard-input t
-  :error-patterns
-  ((error line-start "-:" line ": " (message) line-end))
-  :modes (xml-mode nxml-mode))
-
-(flycheck-define-checker yaml-jsyaml
-  "A YAML syntax checker using JS-YAML.
-
-See URL `https://github.com/nodeca/js-yaml'."
-  :command ("js-yaml")
-  :standard-input t
-  :error-patterns
-  ((error line-start
-          (or "JS-YAML" "YAMLException") ": "
-          (message) " at line " line ", column " column ":"
-          line-end))
-  :modes yaml-mode
-  :next-checkers ((warning . cwl)))
-
-(flycheck-define-checker yaml-ruby
-  "A YAML syntax checker using Ruby's YAML parser.
-
-This syntax checker uses the YAML parser from Ruby's standard
-library.
-
-See URL `http://www.ruby-doc.org/stdlib-2.0.0/libdoc/yaml/rdoc/YAML.html'."
-  :command ("ruby" "-ryaml" "-e" "begin;
-   YAML.load(STDIN); \
- rescue Exception => e; \
-   STDERR.puts \"stdin:#{e}\"; \
- end")
-  :standard-input t
-  :error-patterns
-  ((error line-start "stdin:" (zero-or-more not-newline) ":" (message)
-          "at line " line " column " column line-end))
-  :modes yaml-mode
-  :next-checkers ((warning . cwl)))
-
-(provide 'flycheck)
-
-;; Local Variables:
-;; coding: utf-8
-;; indent-tabs-mode: nil
-;; End:
-
-;;; flycheck.el ends here
diff --git a/elpa/flycheck-20181018.1021/flycheck.elc b/elpa/flycheck-20181018.1021/flycheck.elc
deleted file mode 100644
index 8a965fc..0000000
--- a/elpa/flycheck-20181018.1021/flycheck.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip-autoloads.el b/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip-autoloads.el
deleted file mode 100644
index f944913..0000000
--- a/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip-autoloads.el
+++ /dev/null
@@ -1,51 +0,0 @@
-;;; flycheck-pos-tip-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "flycheck-pos-tip" "flycheck-pos-tip.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from flycheck-pos-tip.el
-
-(defvar flycheck-pos-tip-mode nil "\
-Non-nil if Flycheck-Pos-Tip mode is enabled.
-See the `flycheck-pos-tip-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `flycheck-pos-tip-mode'.")
-
-(custom-autoload 'flycheck-pos-tip-mode "flycheck-pos-tip" nil)
-
-(autoload 'flycheck-pos-tip-mode "flycheck-pos-tip" "\
-A minor mode to show Flycheck error messages in a popup.
-
-When called interactively, toggle `flycheck-pos-tip-mode'.  With
-prefix ARG, enable `flycheck-pos-tip-mode' if ARG is positive,
-otherwise disable it.
-
-When called from Lisp, enable `flycheck-pos-tip-mode' if ARG is
-omitted, nil or positive.  If ARG is `toggle', toggle
-`flycheck-pos-tip-mode'.  Otherwise behave as if called
-interactively.
-
-In `flycheck-pos-tip-mode' show Flycheck's error messages in a
-GUI tooltip.  Falls back to `flycheck-display-error-messages' on
-TTY frames.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "flycheck-pos-tip" '("flycheck-pos-tip-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; flycheck-pos-tip-autoloads.el ends here
diff --git a/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip-pkg.el b/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip-pkg.el
deleted file mode 100644
index bb6d65e..0000000
--- a/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "flycheck-pos-tip" "20180610.1615" "Display Flycheck errors in GUI tooltips" '((emacs "24.1") (flycheck "0.22") (pos-tip "0.4.6")) :commit "909113977d37739387c7f099d74a724cfe6efcec" :keywords '("tools" "convenience") :authors '(("Akiha Senda" . "senda.akiha@gmail.com") ("Sebastian Wiesner" . "swiesner@lunaryorn.com")) :maintainer '("Sebastian Wiesner" . "swiesner@lunaryorn.com") :url "https://github.com/flycheck/flycheck-pos-tip")
diff --git a/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip.el b/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip.el
deleted file mode 100644
index a7a5313..0000000
--- a/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip.el
+++ /dev/null
@@ -1,143 +0,0 @@
-;;; flycheck-pos-tip.el --- Display Flycheck errors in GUI tooltips -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015-2016 Sebastian Wiesner <swiesner@lunaryorn.com>
-;; Copyright (C) 2014 Akiha Senda
-
-;; Author: Akiha Senda <senda.akiha@gmail.com>
-;;     Sebastian Wiesner <swiesner@lunaryorn.com>
-;; Maintainer: Sebastian Wiesner <swiesner@lunaryorn.com>
-;; URL: https://github.com/flycheck/flycheck-pos-tip
-;; Package-Version: 20180610.1615
-;; Keywords: tools, convenience
-;; Version: 0.4-cvs
-;; Package-Requires: ((emacs "24.1") (flycheck "0.22") (pos-tip "0.4.6"))
-
-;; This file is not part of GNU Emacs.
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Provide an error display function to show errors in a tooltip.
-
-;;;; Setup
-
-;; (with-eval-after-load 'flycheck
-;;   (flycheck-pos-tip-mode))
-
-;;; Code:
-
-(require 'flycheck)
-(require 'pos-tip)
-
-(defgroup flycheck-pos-tip nil
-  "Display Flycheck errors in tooltips."
-  :prefix "flycheck-pos-tip-"
-  :group 'flycheck
-  :link '(url-link :tag "Github" "https://github.com/flycheck/flycheck-pos-tip"))
-
-(defcustom flycheck-pos-tip-max-width nil
-  "If non-nil, the max width of the tooltip in chars."
-  :group 'flycheck-pos-tip
-  :type '(choice (const :tag "Auto" nil)
-                 (integer :tag "Characters"))
-  :package-version '(flycheck-pos-tip . "0.4"))
-
-(defcustom flycheck-pos-tip-timeout 5
-  "Time in seconds to hide the tooltip after."
-  :group 'flycheck-pos-tip
-  :type 'number
-  :package-version '(flycheck-pos-tip . "0.2"))
-
-(defcustom flycheck-pos-tip-display-errors-tty-function
-  #'flycheck-display-error-messages
-  "Fallback function for error display on TTY frames.
-
-Like `flycheck-display-errors-function'; called to show error
-messages on TTY frames if `flycheck-pos-tip-mode' is active."
-  :group 'flycheck-pos-tip
-  :type 'function
-  :package-version '(flycheck-pos-tip . "0.2"))
-
-(defun flycheck-pos-tip-error-messages (errors)
-  "Display ERRORS, using a graphical tooltip on GUI frames."
-  (when errors
-    (if (display-graphic-p)
-        (let ((message (mapconcat #'flycheck-error-format-message-and-id
-                                  errors "\n\n"))
-              (line-height (car (window-line-height))))
-          (pos-tip-show message nil nil nil flycheck-pos-tip-timeout
-                        flycheck-pos-tip-max-width nil
-                        ;; Add a little offset to the tooltip to move it away
-                        ;; from the corresponding text in the buffer.  We
-                        ;; explicitly take the line height into account because
-                        ;; pos-tip computes the offset from the top of the line
-                        ;; apparently.
-                        nil (and line-height (+ line-height 5))))
-      (funcall flycheck-pos-tip-display-errors-tty-function errors))))
-
-(defun flycheck-pos-tip-hide-messages ()
-  "Hide messages currently being shown if any."
-  (if (display-graphic-p)
-      (pos-tip-hide)
-    (flycheck-hide-error-buffer)))
-
-(defvar flycheck-pos-tip-old-display-function nil
-  "The former value of `flycheck-display-errors-function'.")
-
-;;;###autoload
-(define-minor-mode flycheck-pos-tip-mode
-  "A minor mode to show Flycheck error messages in a popup.
-
-When called interactively, toggle `flycheck-pos-tip-mode'.  With
-prefix ARG, enable `flycheck-pos-tip-mode' if ARG is positive,
-otherwise disable it.
-
-When called from Lisp, enable `flycheck-pos-tip-mode' if ARG is
-omitted, nil or positive.  If ARG is `toggle', toggle
-`flycheck-pos-tip-mode'.  Otherwise behave as if called
-interactively.
-
-In `flycheck-pos-tip-mode' show Flycheck's error messages in a
-GUI tooltip.  Falls back to `flycheck-display-error-messages' on
-TTY frames."
-  :global t
-  :group 'flycheck
-  (let ((hooks '(post-command-hook focus-out-hook)))
-    (cond
-     ;; Use our display function and remember the old one but only if we haven't
-     ;; yet configured it, to avoid activating twice.
-     ((and flycheck-pos-tip-mode
-           (not (eq flycheck-display-errors-function
-                    #'flycheck-pos-tip-error-messages)))
-      (setq flycheck-pos-tip-old-display-function
-            flycheck-display-errors-function
-            flycheck-display-errors-function
-            #'flycheck-pos-tip-error-messages)
-      (dolist (hook hooks)
-        (add-hook hook #'flycheck-pos-tip-hide-messages)))
-     ;; Reset the display function and remove ourselves from all hooks but only
-     ;; if the mode is still active.
-     ((and (not flycheck-pos-tip-mode)
-           (eq flycheck-display-errors-function
-               #'flycheck-pos-tip-error-messages))
-      (setq flycheck-display-errors-function
-            flycheck-pos-tip-old-display-function
-            flycheck-pos-tip-old-display-function nil)
-      (dolist (hook hooks)
-        (remove-hook hook 'flycheck-pos-tip-hide-messages))))))
-
-(provide 'flycheck-pos-tip)
-
-;;; flycheck-pos-tip.el ends here
diff --git a/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip.elc b/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip.elc
deleted file mode 100644
index 1191f5e..0000000
--- a/elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/ggtags-20181031.1803/ggtags-autoloads.el b/elpa/ggtags-20181031.1803/ggtags-autoloads.el
deleted file mode 100644
index 4962944..0000000
--- a/elpa/ggtags-20181031.1803/ggtags-autoloads.el
+++ /dev/null
@@ -1,57 +0,0 @@
-;;; ggtags-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "ggtags" "ggtags.el" (0 0 0 0))
-;;; Generated autoloads from ggtags.el
-
-(autoload 'ggtags-find-project "ggtags" "\
-
-
-\(fn)" nil nil)
-
-(autoload 'ggtags-find-tag-dwim "ggtags" "\
-Find NAME by context.
-If point is at a definition tag, find references, and vice versa.
-If point is at a line that matches `ggtags-include-pattern', find
-the include file instead.
-
-When called interactively with a prefix arg, always find
-definition tags.
-
-\(fn NAME &optional WHAT)" t nil)
-
-(autoload 'ggtags-mode "ggtags" "\
-Toggle Ggtags mode on or off.
-With a prefix argument ARG, enable Ggtags mode if ARG is
-positive, and disable it otherwise.  If called from Lisp, enable
-the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'.
-\\{ggtags-mode-map}
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'ggtags-build-imenu-index "ggtags" "\
-A function suitable for `imenu-create-index-function'.
-
-\(fn)" nil nil)
-
-(autoload 'ggtags-try-complete-tag "ggtags" "\
-A function suitable for `hippie-expand-try-functions-list'.
-
-\(fn OLD)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ggtags" '("ggtags-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; ggtags-autoloads.el ends here
diff --git a/elpa/ggtags-20181031.1803/ggtags-pkg.el b/elpa/ggtags-20181031.1803/ggtags-pkg.el
deleted file mode 100644
index fbe3029..0000000
--- a/elpa/ggtags-20181031.1803/ggtags-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "ggtags" "20181031.1803" "emacs frontend to GNU Global source code tagging system" '((emacs "25")) :commit "669676461c74ffd30b81dce60cf4f081270f2858" :keywords '("tools" "convenience") :authors '(("Leo Liu" . "sdl.web@gmail.com")) :maintainer '("Leo Liu" . "sdl.web@gmail.com") :url "https://github.com/leoliu/ggtags")
diff --git a/elpa/ggtags-20181031.1803/ggtags.el b/elpa/ggtags-20181031.1803/ggtags.el
deleted file mode 100644
index 221d14d..0000000
--- a/elpa/ggtags-20181031.1803/ggtags.el
+++ /dev/null
@@ -1,2368 +0,0 @@
-;;; ggtags.el --- emacs frontend to GNU Global source code tagging system  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2018  Free Software Foundation, Inc.
-
-;; Author: Leo Liu <sdl.web@gmail.com>
-;; Version: 0.9.0
-;; Package-Version: 20181031.1803
-;; Keywords: tools, convenience
-;; Created: 2013-01-29
-;; URL: https://github.com/leoliu/ggtags
-;; Package-Requires: ((emacs "25"))
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; A package to integrate GNU Global source code tagging system
-;; (http://www.gnu.org/software/global) with Emacs.
-;;
-;; Usage:
-;;
-;; `ggtags' is similar to the standard `etags' package. These keys
-;; `M-.', `M-,' and `C-M-.' should work as expected in `ggtags-mode'.
-;; See the README in https://github.com/leoliu/ggtags for more
-;; details.
-;;
-;; All commands are available from the `Ggtags' menu in `ggtags-mode'.
-
-;;; NEWS 0.8.13 (2018-07-25):
-
-;; - Don't choke on tag names start with `-'.
-;; - `ggtags-show-definition' supports `ggtags-sort-by-nearness'.
-;; - New variable `ggtags-extra-args'.
-;; - Unbreak `ggtags-sort-by-nearness'.
-;;
-;; See full NEWS on https://github.com/leoliu/ggtags#news
-
-;;; Code:
-
-(eval-when-compile
-  (require 'url-parse))
-
-(require 'cl-lib)
-(require 'ewoc)
-(require 'compile)
-(require 'etags)
-
-(eval-when-compile
-  (defmacro ignore-errors-unless-debug (&rest body)
-    "Ignore all errors while executing BODY unless debug is on."
-    (declare (debug t) (indent 0))
-    `(condition-case-unless-debug nil (progn ,@body) (error nil)))
-
-  (defmacro with-display-buffer-no-window (&rest body)
-    (declare (debug t) (indent 0))
-    ;; See http://debbugs.gnu.org/13594
-    `(let ((display-buffer-overriding-action
-            (if ggtags-auto-jump-to-match
-                (list #'display-buffer-no-window)
-              display-buffer-overriding-action)))
-       ,@body)))
-
-(defgroup ggtags nil
-  "GNU Global source code tagging system."
-  :group 'tools)
-
-(defface ggtags-highlight '((t (:underline t)))
-  "Face used to highlight a valid tag at point."
-  :group 'ggtags)
-
-(defface ggtags-global-line '((t (:inherit secondary-selection)))
-  "Face used to highlight matched line in Global buffer."
-  :group 'ggtags)
-
-(defcustom ggtags-executable-directory nil
-  "If non-nil the directory to search global executables."
-  :type '(choice (const :tag "Unset" nil) directory)
-  :risky t
-  :group 'ggtags)
-
-(defcustom ggtags-oversize-limit (* 10 1024 1024)
-  "The over size limit for the  GTAGS file.
-When the size of the GTAGS file is below this limit, ggtags
-always maintains up-to-date tags for the whole source tree by
-running `global -u'. For projects with GTAGS larger than this
-limit, only files edited in Ggtags mode are updated (via `global
---single-update')."
-  :safe 'numberp
-  :type '(choice (const :tag "None" nil)
-                 (const :tag "Always" t)
-                 number)
-  :group 'ggtags)
-
-(defcustom ggtags-include-pattern
-  '("^\\s-*#\\s-*\\(?:include\\|import\\)\\s-*[\"<]\\(?:[./]*\\)?\\(.*?\\)[\">]" . 1)
-  "Pattern used to detect #include files.
-Value can be (REGEXP . SUB) or a function with no arguments.
-REGEXP should match from the beginning of line."
-  :type '(choice (const :tag "Disable" nil)
-                 (cons regexp integer)
-                 function)
-  :safe 'stringp
-  :group 'ggtags)
-
-;; See also: http://article.gmane.org/gmane.comp.gnu.global.bugs/1751
-(defcustom ggtags-use-project-gtagsconf t
-  "Non-nil to use GTAGSCONF file found at project root.
-File .globalrc and gtags.conf are checked in order.
-
-Note: GNU Global v6.2.13 has the feature of using gtags.conf at
-project root. Setting this variable to nil doesn't disable this
-feature."
-  :safe 'booleanp
-  :type 'boolean
-  :group 'ggtags)
-
-(defcustom ggtags-project-duration 600
-  "Seconds to keep information of a project in memory."
-  :type 'number
-  :group 'ggtags)
-
-(defcustom ggtags-process-environment nil
-  "Similar to `process-environment' with higher precedence.
-Elements are run through `substitute-env-vars' before use.
-GTAGSROOT will always be expanded to current project root
-directory. This is intended for project-wise ggtags-specific
-process environment settings. Note on remote hosts (e.g. tramp)
-directory local variables is not enabled by default per
-`enable-remote-dir-locals' (which see)."
-  :safe 'ggtags-list-of-string-p
-  :type '(repeat string)
-  :group 'ggtags)
-
-(defcustom ggtags-auto-jump-to-match 'history
-  "Strategy on how to jump to match: nil, first or history.
-
-    nil: never automatically jump to any match;
-  first: jump to the first match;
-history: jump to the match stored in search history."
-  :type '(choice (const :tag "First match" first)
-                 (const :tag "Search History" history)
-                 (const :tag "Never" nil))
-  :group 'ggtags)
-
-(defcustom ggtags-global-window-height 8 ; ggtags-global-mode
-  "Number of lines for the *ggtags-global* popup window.
-If nil, use Emacs default."
-  :type '(choice (const :tag "Default" nil) integer)
-  :group 'ggtags)
-
-(defcustom ggtags-global-abbreviate-filename 40
-  "Non-nil to display file names abbreviated e.g. \"/u/b/env\".
-If an integer abbreviate only names longer than that number."
-  :type '(choice (const :tag "No" nil)
-                 (const :tag "Always" t)
-                 integer)
-  :group 'ggtags)
-
-(defcustom ggtags-split-window-function split-window-preferred-function
-  "A function to control how ggtags pops up the auxiliary window."
-  :type 'function
-  :group 'ggtags)
-
-(defcustom ggtags-use-idutils (and (executable-find "mkid") t)
-  "Non-nil to also generate the idutils DB."
-  :type 'boolean
-  :group 'ggtags)
-
-(defcustom ggtags-use-sqlite3 nil
-  "Use sqlite3 for storage instead of Berkeley DB.
-This feature requires GNU Global 6.3.3+ and is ignored if `gtags'
-isn't built with sqlite3 support."
-  :type 'boolean
-  :safe 'booleanp
-  :group 'ggtags)
-
-(defcustom ggtags-extra-args nil
-  "Extra arguments to pass to `gtags' in `ggtags-create-tags'."
-  :type '(repeat string)
-  :safe #'ggtags-list-of-string-p
-  :group 'ggtags)
-
-(defcustom ggtags-sort-by-nearness nil
-  "Sort tags by nearness to current directory.
-GNU Global 6.5+ required."
-  :type 'boolean
-  :safe #'booleanp
-  :group 'ggtags)
-
-(defcustom ggtags-update-on-save t
-  "Non-nil to update tags for current buffer on saving."
-  ;; It is reported that `global --single-update' can be slow in sshfs
-  ;; directories. See https://github.com/leoliu/ggtags/issues/85.
-  :safe #'booleanp
-  :type 'boolean
-  :group 'ggtags)
-
-(defcustom ggtags-global-output-format 'grep
-  "Global output format: path, ctags, ctags-x, grep or cscope."
-  :type '(choice (const path)
-                 (const ctags)
-                 (const ctags-x)
-                 (const grep)
-                 (const cscope))
-  :group 'ggtags)
-
-(defcustom ggtags-global-use-color t
-  "Non-nil to use color in output if supported by Global.
-Note: processing colored output takes noticeable time
-particularly when the output is large."
-  :type 'boolean
-  :safe 'booleanp
-  :group 'ggtags)
-
-(defcustom ggtags-global-ignore-case nil
-  "Non-nil if Global should ignore case in the search pattern."
-  :safe 'booleanp
-  :type 'boolean
-  :group 'ggtags)
-
-(defcustom ggtags-global-treat-text nil
-  "Non-nil if Global should include matches from text files.
-This affects `ggtags-find-file' and `ggtags-grep'."
-  :safe 'booleanp
-  :type 'boolean
-  :group 'ggtags)
-
-;; See also https://github.com/leoliu/ggtags/issues/52
-(defcustom ggtags-global-search-libpath-for-reference t
-  "If non-nil global will search GTAGSLIBPATH for references.
-Search is only continued in GTAGSLIBPATH if it finds no matches
-in current project."
-  :safe 'booleanp
-  :type 'boolean
-  :group 'ggtags)
-
-(defcustom ggtags-global-large-output 1000
-  "Number of lines in the Global buffer to indicate large output."
-  :type 'number
-  :group 'ggtags)
-
-(defcustom ggtags-global-history-length history-length
-  "Maximum number of items to keep in `ggtags-global-search-history'."
-  :type 'integer
-  :group 'ggtags)
-
-(defcustom ggtags-enable-navigation-keys t
-  "If non-nil key bindings in `ggtags-navigation-map' are enabled."
-  :safe 'booleanp
-  :type 'boolean
-  :group 'ggtags)
-
-(defcustom ggtags-find-tag-hook nil
-  "Hook run immediately after finding a tag."
-  :options '(recenter reposition-window)
-  :type 'hook
-  :group 'ggtags)
-
-(defcustom ggtags-get-definition-function #'ggtags-get-definition-default
-  "Function called by `ggtags-show-definition' to get definition.
-It is passed a list of definition candidates of the form:
-
- (TEXT NAME FILE LINE)
-
-where TEXT is usually the source line of the definition.
-
-The return value is passed to `ggtags-print-definition-function'."
-  :type 'function
-  :group 'ggtags)
-
-(defcustom ggtags-print-definition-function
-  (lambda (s) (ggtags-echo "%s" (or s "[definition not found]")))
-  "Function used by `ggtags-show-definition' to print definition."
-  :type 'function
-  :group 'ggtags)
-
-(defcustom ggtags-mode-sticky t
-  "If non-nil enable Ggtags Mode in files visited."
-  :safe 'booleanp
-  :type 'boolean
-  :group 'ggtags)
-
-(defcustom ggtags-mode-prefix-key "\C-c"
-  "Key binding used for `ggtags-mode-prefix-map'.
-Users should change the value using `customize-variable' to
-properly update `ggtags-mode-map'."
-  :set (lambda (sym value)
-         (when (bound-and-true-p ggtags-mode-map)
-           (let ((old (and (boundp sym) (symbol-value sym))))
-             (and old (define-key ggtags-mode-map old nil)))
-           (and value
-                (bound-and-true-p ggtags-mode-prefix-map)
-                (define-key ggtags-mode-map value ggtags-mode-prefix-map)))
-         (set-default sym value))
-  :type 'key-sequence
-  :group 'ggtags)
-
-(defcustom ggtags-completing-read-function nil
-  "Ggtags specific `completing-read-function' (which see).
-Nil means using the value of `completing-read-function'."
-  :type '(choice (const :tag "Use completing-read-function" nil)
-                 function)
-  :group 'ggtags)
-
-(define-obsolete-variable-alias 'ggtags-highlight-tag-delay 'ggtags-highlight-tag
-  "0.8.11")
-
-(defcustom ggtags-highlight-tag 0.25
-  "If non-nil time in seconds before highlighting tag at point.
-Set to nil to disable tag highlighting."
-  :set (lambda (sym value)
-         (when (fboundp 'ggtags-setup-highlight-tag-at-point)
-           (ggtags-setup-highlight-tag-at-point value))
-         (set-default sym value))
-  :type '(choice (const :tag "Disable" nil) number)
-  :group 'ggtags)
-
-(defcustom ggtags-bounds-of-tag-function (lambda ()
-                                           (bounds-of-thing-at-point 'symbol))
-  "Function to get the start and end positions of the tag at point."
-  :type 'function
-  :group 'ggtags)
-
-;; Used by ggtags-global-mode
-(defvar ggtags-global-error "match"
-  "Stem of message to print when no matches are found.")
-
-(defconst ggtags-bug-url "https://github.com/leoliu/ggtags/issues")
-
-(defvar ggtags-global-last-buffer nil)
-
-(defvar ggtags-global-continuation nil)
-
-(defvar ggtags-current-tag-name nil)
-
-(defvar ggtags-highlight-tag-overlay nil)
-
-(defvar ggtags-highlight-tag-timer nil)
-
-(defmacro ggtags-with-temp-message (message &rest body)
-  (declare (debug t) (indent 1))
-  (let ((init-time (make-symbol "-init-time-"))
-        (tmp-msg (make-symbol "-tmp-msg-")))
-    `(let ((,init-time (float-time))
-           (,tmp-msg ,message))
-       (with-temp-message ,tmp-msg
-         (prog1 (progn ,@body)
-           (message "%sdone (%.2fs)" ,(or tmp-msg "")
-                    (- (float-time) ,init-time)))))))
-
-(defmacro ggtags-delay-finish-functions (&rest body)
-  "Delay running `compilation-finish-functions' until after BODY."
-  (declare (indent 0) (debug t))
-  (let ((saved (make-symbol "-saved-"))
-        (exit-args (make-symbol "-exit-args-")))
-    `(let ((,saved compilation-finish-functions)
-           ,exit-args)
-       (setq-local compilation-finish-functions nil)
-       (add-hook 'compilation-finish-functions
-                 (lambda (&rest args) (setq ,exit-args args))
-                 nil t)
-       (unwind-protect (progn ,@body)
-         (setq-local compilation-finish-functions ,saved)
-         (and ,exit-args (apply #'run-hook-with-args
-                                'compilation-finish-functions ,exit-args))))))
-
-(defmacro ggtags-ensure-global-buffer (&rest body)
-  (declare (debug t) (indent 0))
-  `(progn
-     (or (and (buffer-live-p ggtags-global-last-buffer)
-              (with-current-buffer ggtags-global-last-buffer
-                (derived-mode-p 'ggtags-global-mode)))
-         (error "No global buffer found"))
-     (with-current-buffer ggtags-global-last-buffer ,@body)))
-
-(defun ggtags-list-of-string-p (xs)
-  "Return non-nil if XS is a list of strings."
-  (cl-every #'stringp xs))
-
-(defun ggtags-ensure-localname (file)
-  (and file (or (file-remote-p file 'localname) file)))
-
-(defun ggtags-echo (format-string &rest args)
-  "Print formatted text to echo area."
-  (let (message-log-max) (apply #'message format-string args)))
-
-(defun ggtags-forward-to-line (line)
-  "Move to line number LINE in current buffer."
-  (cl-check-type line (integer 1))
-  (save-restriction
-    (widen)
-    (goto-char (point-min))
-    (forward-line (1- line))))
-
-(defun ggtags-kill-window ()
-  "Quit selected window and kill its buffer."
-  (interactive)
-  (quit-window t))
-
-(defun ggtags-program-path (name)
-  (if ggtags-executable-directory
-      (expand-file-name name ggtags-executable-directory)
-    name))
-
-(defun ggtags-process-succeed-p (program &rest args)
-  "Return non-nil if successfully running PROGRAM with ARGS."
-  (let ((program (ggtags-program-path program)))
-    (condition-case err
-        (zerop (apply #'process-file program nil nil nil args))
-      (error (message "`%s' failed: %s" program (error-message-string err))
-             nil))))
-
-(defun ggtags-process-string (program &rest args)
-  (with-temp-buffer
-    (let ((exit (apply #'process-file
-                       (ggtags-program-path program) nil t nil args))
-          (output (progn
-                    (goto-char (point-max))
-                    (skip-chars-backward " \t\n\r")
-                    (buffer-substring-no-properties (point-min) (point)))))
-      (or (zerop exit)
-          (error "`%s' non-zero exit: %s" program output))
-      output)))
-
-(defun ggtags-tag-at-point ()
-  (pcase (funcall ggtags-bounds-of-tag-function)
-    (`(,beg . ,end) (buffer-substring-no-properties beg end))))
-
-;;; Store for project info and settings
-
-(defvar ggtags-projects (make-hash-table :size 7 :test #'equal))
-
-(cl-defstruct (ggtags-project (:constructor ggtags-project--make)
-                              (:copier nil)
-                              (:type vector)
-                              :named)
-  root tag-size has-refs has-path-style has-color dirty-p mtime timestamp)
-
-(defun ggtags-make-project (root)
-  (cl-check-type root string)
-  (let* ((default-directory (file-name-as-directory root))
-         ;; NOTE: use of GTAGSDBPATH is not recommended. -- GLOBAL(1)
-         ;; ROOT and DB can be different directories due to GTAGSDBPATH.
-         (dbdir (concat (file-remote-p root)
-                        (ggtags-process-string "global" "-p"))))
-    (pcase (nthcdr 5 (file-attributes (expand-file-name "GTAGS" dbdir)))
-      (`(,mtime ,_ ,tag-size . ,_)
-       (let* ((rtags-size (nth 7 (file-attributes (expand-file-name "GRTAGS" dbdir))))
-              (has-refs
-               (when rtags-size
-                 (and (or (> rtags-size (* 32 1024))
-                          (with-demoted-errors "ggtags-make-project: %S"
-                            (not (equal "" (ggtags-process-string "global" "-crs")))))
-                      'has-refs)))
-              ;; http://thread.gmane.org/gmane.comp.gnu.global.bugs/1518
-              (has-path-style
-               (and (ggtags-process-succeed-p "global" "--path-style" "shorter" "--help")
-                    'has-path-style))
-              ;; http://thread.gmane.org/gmane.comp.gnu.global.bugs/1542
-              (has-color (and (ggtags-process-succeed-p "global" "--color" "--help")
-                              'has-color)))
-         (puthash default-directory
-                  (ggtags-project--make :root default-directory
-                                        :tag-size tag-size
-                                        :has-refs has-refs
-                                        :has-path-style has-path-style
-                                        :has-color has-color
-                                        :mtime (float-time mtime)
-                                        :timestamp (float-time))
-                  ggtags-projects))))))
-
-(defun ggtags-project-expired-p (project)
-  (or (< (ggtags-project-timestamp project) 0)
-      (> (- (float-time)
-            (ggtags-project-timestamp project))
-         ggtags-project-duration)))
-
-(defun ggtags-project-update-mtime-maybe (&optional project)
-  "Update PROJECT's modtime and if current file is newer.
-Value is new modtime if updated."
-  (let ((project (or project (ggtags-find-project))))
-    (when (and (ggtags-project-p project)
-               (consp (visited-file-modtime))
-               (> (float-time (visited-file-modtime))
-                  (ggtags-project-mtime project)))
-      (setf (ggtags-project-dirty-p project) t)
-      (setf (ggtags-project-mtime project)
-            (float-time (visited-file-modtime))))))
-
-(defun ggtags-project-oversize-p (&optional project)
-  (pcase ggtags-oversize-limit
-    (`nil nil)
-    (`t t)
-    (size (let ((project (or project (ggtags-find-project))))
-            (and project (> (ggtags-project-tag-size project) size))))))
-
-(defvar-local ggtags-last-default-directory nil)
-(defvar-local ggtags-project-root 'unset
-  "Internal variable for project root directory.")
-
-;;;###autoload
-(defun ggtags-find-project ()
-  ;; See https://github.com/leoliu/ggtags/issues/42
-  ;;
-  ;; It is unsafe to cache `ggtags-project-root' in non-file buffers
-  ;; whose `default-directory' can often change.
-  (unless (equal ggtags-last-default-directory default-directory)
-    (kill-local-variable 'ggtags-project-root))
-  (let ((project (gethash ggtags-project-root ggtags-projects)))
-    (if (ggtags-project-p project)
-        (if (ggtags-project-expired-p project)
-            (progn
-              (remhash ggtags-project-root ggtags-projects)
-              (ggtags-find-project))
-          project)
-      (setq ggtags-last-default-directory default-directory)
-      (setq ggtags-project-root
-            (or (ignore-errors
-                  (file-name-as-directory
-                   (concat (file-remote-p default-directory)
-                           ;; Resolves symbolic links
-                           (ggtags-process-string "global" "-pr"))))
-                ;; 'global -pr' resolves symlinks before checking the
-                ;; GTAGS file which could cause issues such as
-                ;; https://github.com/leoliu/ggtags/issues/22, so
-                ;; let's help it out.
-                (let ((dir (locate-dominating-file
-                            default-directory
-                            (lambda (dir) (file-regular-p (expand-file-name "GTAGS" dir))))))
-                  ;; `file-truename' may strip the trailing '/' on
-                  ;; remote hosts, see http://debbugs.gnu.org/16851
-                  (and dir (file-name-as-directory (file-truename dir))))))
-      (when ggtags-project-root
-        (if (gethash ggtags-project-root ggtags-projects)
-            (ggtags-find-project)
-          (ggtags-make-project ggtags-project-root))))))
-
-(defun ggtags-current-project-root ()
-  (and (ggtags-find-project)
-       (ggtags-project-root (ggtags-find-project))))
-
-(defun ggtags-check-project ()
-  (or (ggtags-find-project) (error "File GTAGS not found")))
-
-(defun ggtags-ensure-project ()
-  (or (ggtags-find-project)
-      (progn (call-interactively #'ggtags-create-tags)
-             ;; Need checking because `ggtags-create-tags' can create
-             ;; tags in any directory.
-             (ggtags-check-project))))
-
-(defun ggtags-save-project-settings (&optional noconfirm)
-  "Save Gnu Global's specific environment variables."
-  (interactive "P")
-  (ggtags-check-project)
-  (let* ((inhibit-read-only t)          ; for `add-dir-local-variable'
-         (default-directory (ggtags-current-project-root))
-         ;; Not using `ggtags-with-current-project' to preserve
-         ;; environment variables that may be present in
-         ;; `ggtags-process-environment'.
-         (process-environment
-          (append ggtags-process-environment
-                  process-environment
-                  (and (not (ggtags-project-has-refs (ggtags-find-project)))
-                       (list "GTAGSLABEL=ctags"))))
-         (envlist (delete-dups
-                   (cl-loop for x in process-environment
-                            when (string-match
-                                  "^\\(GTAGS[^=\n]*\\|MAKEOBJDIRPREFIX\\)=" x)
-                            ;; May have duplicates thus `delete-dups'.
-                            collect (concat (match-string 1 x)
-                                            "="
-                                            (getenv (match-string 1 x))))))
-         (help-form (format "y: save\nn: don't save\n=: diff\n?: help\n")))
-    (add-dir-local-variable nil 'ggtags-process-environment envlist)
-    ;; Remove trailing newlines by `add-dir-local-variable'.
-    (let ((delete-trailing-lines t)) (delete-trailing-whitespace))
-    (or noconfirm
-        (while (pcase (read-char-choice
-                       (format "Save `%s'? (y/n/=/?) " buffer-file-name)
-                       '(?y ?n ?= ??))
-                 (?n (user-error "Aborted"))
-                 (?y nil)
-                 (?= (diff-buffer-with-file) 'loop)
-                 (?? (help-form-show) 'loop))))
-    (save-buffer)
-    (kill-buffer)))
-
-(defun ggtags-toggle-project-read-only ()
-  (interactive)
-  (ggtags-check-project)
-  (let ((inhibit-read-only t)           ; for `add-dir-local-variable'
-        (val (not buffer-read-only))
-        (default-directory (ggtags-current-project-root)))
-    (add-dir-local-variable nil 'buffer-read-only val)
-    (save-buffer)
-    (kill-buffer)
-    (when buffer-file-name
-      (read-only-mode (if val +1 -1)))
-    (when (called-interactively-p 'interactive)
-      (message "Project read-only-mode is %s" (if val "on" "off")))
-    val))
-
-(defun ggtags-visit-project-root (&optional project)
-  "Visit the root directory of (current) PROJECT in dired.
-When called with a prefix \\[universal-argument], choose from past projects."
-  (interactive (list (and current-prefix-arg
-                          (completing-read "Project: " ggtags-projects))))
-  (dired (cl-typecase project
-           (string project)
-           (ggtags-project (ggtags-project-root project))
-           (t (ggtags-ensure-project) (ggtags-current-project-root)))))
-
-(defmacro ggtags-with-current-project (&rest body)
-  "Eval BODY in current project's `process-environment'."
-  (declare (debug t) (indent 0))
-  (let ((gtagsroot (make-symbol "-gtagsroot-"))
-        (root (make-symbol "-ggtags-project-root-")))
-    `(let* ((,root ggtags-project-root)
-            (,gtagsroot (when (ggtags-find-project)
-                          (ggtags-ensure-localname
-                           (directory-file-name (ggtags-current-project-root)))))
-            (process-environment
-             (append (let ((process-environment (copy-sequence process-environment)))
-                       (and ,gtagsroot (setenv "GTAGSROOT" ,gtagsroot))
-                       (mapcar #'substitute-env-vars ggtags-process-environment))
-                     process-environment
-                     (and ,gtagsroot (list (concat "GTAGSROOT=" ,gtagsroot)))
-                     (and (ggtags-find-project)
-                          (not (ggtags-project-has-refs (ggtags-find-project)))
-                          (list "GTAGSLABEL=ctags")))))
-       (unwind-protect (save-current-buffer ,@body)
-         (setq ggtags-project-root ,root)))))
-
-(defun ggtags-get-libpath ()
-  (let ((path (ggtags-with-current-project (getenv "GTAGSLIBPATH"))))
-    (and path (mapcar (apply-partially #'concat (file-remote-p default-directory))
-                      (split-string path (regexp-quote path-separator) t)))))
-
-(defun ggtags-project-relative-file (file)
-  "Get file name relative to current project root."
-  (ggtags-check-project)
-  (if (file-name-absolute-p file)
-      (file-relative-name file (if (string-prefix-p (ggtags-current-project-root)
-                                                    file)
-                                   (ggtags-current-project-root)
-                                 (locate-dominating-file file "GTAGS")))
-    file))
-
-(defun ggtags-project-file-p (file)
-  "Return non-nil if FILE is part of current project."
-  (when (ggtags-find-project)
-    (with-temp-buffer
-      (ggtags-with-current-project
-        ;; NOTE: `process-file' requires all files in ARGS be relative
-        ;; to `default-directory'; see its doc string for details.
-        (let ((default-directory (ggtags-current-project-root)))
-          (process-file (ggtags-program-path "global") nil t nil
-                        "-vP" (concat "^" (ggtags-project-relative-file file) "$"))))
-      (goto-char (point-min))
-      (not (re-search-forward "^file not found" nil t)))))
-
-(defun ggtags-invalidate-buffer-project-root (root)
-  (mapc (lambda (buf)
-          (with-current-buffer buf
-            (and buffer-file-truename
-                 (string-prefix-p root buffer-file-truename)
-                 (kill-local-variable 'ggtags-project-root))))
-        (buffer-list)))
-
-(defun ggtags-create-tags (root)
-  "Create tag files (e.g. GTAGS) in directory ROOT.
-If file .globalrc or gtags.conf exists in ROOT, it will be used
-as configuration file per `ggtags-use-project-gtagsconf'.
-
-If file gtags.files exists in ROOT, it should be a list of source
-files to index, which can be used to speed gtags up in large
-source trees. See Info node `(global)gtags' for details."
-  (interactive "DRoot directory: ")
-  (let ((process-environment (copy-sequence process-environment)))
-    (when (zerop (length root)) (error "No root directory provided"))
-    (setenv "GTAGSROOT" (ggtags-ensure-localname
-                         (expand-file-name
-                          (directory-file-name (file-name-as-directory root)))))
-    (ggtags-with-current-project
-      (let ((conf (and ggtags-use-project-gtagsconf
-                       (cl-loop for name in '(".globalrc" "gtags.conf")
-                                for full = (expand-file-name name root)
-                                thereis (and (file-exists-p full) full)))))
-        (unless (or conf (getenv "GTAGSLABEL")
-                    (not (yes-or-no-p "Use `ctags' backend? ")))
-          (setenv "GTAGSLABEL" "ctags"))
-        (ggtags-with-temp-message "`gtags' in progress..."
-          (let ((default-directory (file-name-as-directory root))
-                (args (append (cl-remove-if
-                               #'null
-                               (list (and ggtags-use-idutils "--idutils")
-                                     (and ggtags-use-sqlite3
-                                          (ggtags-process-succeed-p "gtags" "--sqlite3" "--help")
-                                          "--sqlite3")
-                                     (and conf "--gtagsconf")
-                                     (and conf (ggtags-ensure-localname conf))))
-                              ggtags-extra-args)))
-            (condition-case err
-                (apply #'ggtags-process-string "gtags" args)
-              (error (if (and ggtags-use-idutils
-                              (stringp (cadr err))
-                              (string-match-p "mkid not found" (cadr err)))
-                         ;; Retry without mkid
-                         (apply #'ggtags-process-string
-                                "gtags" (cl-remove "--idutils" args))
-                       (signal (car err) (cdr err)))))))))
-    (ggtags-invalidate-buffer-project-root (file-truename root))
-    (message "GTAGS generated in `%s'" root)
-    root))
-
-(defun ggtags-explain-tags ()
-  "Explain how each file is indexed in current project."
-  (interactive (ignore (ggtags-check-project)
-                       (or (ggtags-process-succeed-p "gtags" "--explain" "--help")
-                           (user-error "Global 6.4+ required"))))
-  (ggtags-check-project)
-  (ggtags-with-current-project
-    (let ((default-directory (ggtags-current-project-root)))
-      (compilation-start (concat (ggtags-program-path "gtags") " --explain")))))
-
-(defun ggtags-update-tags (&optional force)
-  "Update GNU Global tag database.
-Do nothing if GTAGS exceeds the oversize limit unless FORCE.
-
-When called interactively on large (per `ggtags-oversize-limit')
-projects, the update process runs in the background without
-blocking emacs."
-  (interactive (progn
-                 (ggtags-check-project)
-                 ;; Mark project info expired.
-                 (setf (ggtags-project-timestamp (ggtags-find-project)) -1)
-                 (list 'interactive)))
-  (cond ((and (eq force 'interactive) (ggtags-project-oversize-p))
-         (ggtags-with-current-project
-           (with-display-buffer-no-window
-             (with-current-buffer (compilation-start "global -u")
-               ;; A hack to fool compilation mode to display `global
-               ;; -u finished' on finish.
-               (setq mode-name "global -u")
-               (add-hook 'compilation-finish-functions
-                         #'ggtags-update-tags-finish nil t)))))
-        ((or force (and (ggtags-find-project)
-                        (not (ggtags-project-oversize-p))
-                        (ggtags-project-dirty-p (ggtags-find-project))))
-         (ggtags-with-current-project
-           (ggtags-with-temp-message "`global -u' in progress..."
-             (ggtags-process-string "global" "-u")
-             (ggtags-update-tags-finish))))))
-
-(defun ggtags-update-tags-finish (&optional buf how)
-  (if (and how buf (string-prefix-p "exited abnormally" how))
-      (display-buffer buf)
-    (setf (ggtags-project-dirty-p (ggtags-find-project)) nil)
-    (setf (ggtags-project-mtime (ggtags-find-project)) (float-time))))
-
-(defun ggtags-update-tags-single (file &optional nowait)
-  ;; NOTE: NOWAIT is ignored if file is remote file; see
-  ;; `tramp-sh-handle-process-file'.
-  (cl-check-type file string)
-  (let ((nowait (unless (file-remote-p file) nowait)))
-    (ggtags-with-current-project
-      ;; See comment in `ggtags-project-file-p'.
-      (let ((default-directory (ggtags-current-project-root)))
-        (process-file (ggtags-program-path "global") nil (and nowait 0) nil
-                      "--single-update" (ggtags-project-relative-file file))))))
-
-(defun ggtags-delete-tags ()
-  "Delete file GTAGS, GRTAGS, GPATH, ID etc. generated by gtags."
-  (interactive (ignore (ggtags-check-project)))
-  (when (ggtags-current-project-root)
-    (let* ((re (concat "\\`" (regexp-opt '("GPATH" "GRTAGS" "GTAGS" "ID")) "\\'"))
-           (files (cl-remove-if-not
-                   (lambda (file)
-                     ;; Don't trust `directory-files'.
-                     (let ((case-fold-search nil))
-                       (string-match-p re (file-name-nondirectory file))))
-                   (directory-files (ggtags-current-project-root) t re)))
-           (buffer "*GTags File List*"))
-      (or files (user-error "No tag files found"))
-      (with-output-to-temp-buffer buffer
-        (princ (mapconcat #'identity files "\n")))
-      (let ((win (get-buffer-window buffer)))
-        (unwind-protect
-            (progn
-              (fit-window-to-buffer win)
-              (when (yes-or-no-p "Remove GNU Global tag files? ")
-                (with-demoted-errors (mapc #'delete-file files))
-                (remhash (ggtags-current-project-root) ggtags-projects)
-                (and (overlayp ggtags-highlight-tag-overlay)
-                     (delete-overlay ggtags-highlight-tag-overlay))))
-          (when (window-live-p win)
-            (quit-window t win)))))))
-
-(defvar-local ggtags-completion-cache nil)
-
-;; See global/libutil/char.c
-;; (defconst ggtags-regexp-metachars "[][$()*+.?\\{}|^]")
-(defvar ggtags-completion-flag "")      ;internal use
-
-(defvar ggtags-completion-table
-  (completion-table-dynamic
-   (lambda (prefix)
-     (let ((cache-key (concat prefix "$" ggtags-completion-flag)))
-       (unless (equal cache-key (car ggtags-completion-cache))
-         (setq ggtags-completion-cache
-               (cons cache-key
-                     (ignore-errors-unless-debug
-                       ;; May throw global: only name char is allowed
-                       ;; with -c option.
-                       (ggtags-with-current-project
-                         (split-string
-                          (apply #'ggtags-process-string
-                                 "global"
-                                 (append (and completion-ignore-case '("--ignore-case"))
-                                         ;; Note -c alone returns only definitions
-                                         (list (concat "-c" ggtags-completion-flag) prefix)))
-                          "\n" t)))))))
-     (cdr ggtags-completion-cache))))
-
-(defun ggtags-completion-at-point ()
-  "A function for `completion-at-point-functions'."
-  (pcase (funcall ggtags-bounds-of-tag-function)
-    (`(,beg . ,end)
-     (and (< beg end) (list beg end ggtags-completion-table)))))
-
-(defun ggtags-read-tag (&optional type confirm prompt require-match default)
-  (ggtags-ensure-project)
-  (let ((default (or default (ggtags-tag-at-point)))
-        (prompt (or prompt (capitalize (symbol-name (or type 'tag)))))
-        (ggtags-completion-flag (pcase type
-                                  (`(or nil definition) "T")
-                                  (`symbol "s")
-                                  (`reference "r")
-                                  (`id "I")
-                                  (`path "P")
-                                  ((pred stringp) type)
-                                  (_ ggtags-completion-flag))))
-    (setq ggtags-current-tag-name
-          (cond (confirm
-                 (ggtags-update-tags)
-                 (let ((completing-read-function
-                        (or ggtags-completing-read-function
-                            completing-read-function)))
-                   (completing-read
-                    (format (if default "%s (default %s): " "%s: ") prompt default)
-                    ggtags-completion-table nil require-match nil nil default)))
-                (default (substring-no-properties default))
-                (t (ggtags-read-tag type t prompt require-match default))))))
-
-(defun ggtags-sort-by-nearness-p ()
-  (and ggtags-sort-by-nearness
-       (ggtags-process-succeed-p "global" "--nearness=." "--help")))
-
-(defun ggtags-global-build-command (cmd &rest args)
-  ;; CMD can be definition, reference, symbol, grep, idutils
-  (let ((xs (append (list (shell-quote-argument (ggtags-program-path "global"))
-                          "-v"
-                          (format "--result=%s" ggtags-global-output-format)
-                          (and ggtags-global-ignore-case "--ignore-case")
-                          (and ggtags-global-use-color
-                               (ggtags-find-project)
-                               (ggtags-project-has-color (ggtags-find-project))
-                               "--color=always")
-                          (and (ggtags-sort-by-nearness-p) "--nearness=.")
-                          (and (ggtags-find-project)
-                               (ggtags-project-has-path-style (ggtags-find-project))
-                               "--path-style=shorter")
-                          (and ggtags-global-treat-text "--other")
-                          (pcase cmd
-                            ((pred stringp) cmd)
-                            (`definition nil) ;-d not supported by Global 5.7.1
-                            (`reference "--reference")
-                            (`symbol "--symbol")
-                            (`path "--path")
-                            (`grep "--grep")
-                            (`idutils "--idutils")))
-                    args)))
-    (mapconcat #'identity (delq nil xs) " ")))
-
-;; Can be three values: nil, t and a marker; t means start marker has
-;; been saved in the tag ring.
-(defvar ggtags-global-start-marker nil)
-(defvar ggtags-global-start-file nil)
-(defvar ggtags-tag-ring-index nil)
-(defvar ggtags-global-search-history nil)
-
-(defvar ggtags-auto-jump-to-match-target nil)
-
-(defvar-local ggtags-global-exit-info nil) ; (EXIT-STATUS COUNT DB)
-
-(defun ggtags-global-save-start-marker ()
-  (when (markerp ggtags-global-start-marker)
-    (setq ggtags-tag-ring-index nil)
-    (xref-push-marker-stack ggtags-global-start-marker)
-    (setq ggtags-global-start-marker t)))
-
-(defun ggtags-global-start (command &optional directory)
-  (let* ((default-directory (or directory (ggtags-current-project-root)))
-         (split-window-preferred-function ggtags-split-window-function)
-         (env ggtags-process-environment))
-    (unless (and (markerp ggtags-global-start-marker)
-                 (marker-position ggtags-global-start-marker))
-      (setq ggtags-global-start-marker (point-marker)))
-    ;; Record the file name for `ggtags-navigation-start-file'.
-    (setq ggtags-global-start-file buffer-file-name)
-    (setq ggtags-auto-jump-to-match-target
-          (nth 4 (assoc (ggtags-global-search-id command default-directory)
-                        ggtags-global-search-history)))
-    (ggtags-navigation-mode +1)
-    (ggtags-update-tags)
-    (ggtags-with-current-project
-      (with-current-buffer (with-display-buffer-no-window
-                             (compilation-start command 'ggtags-global-mode))
-        (setq-local ggtags-process-environment env)
-        (setq ggtags-global-last-buffer (current-buffer))))))
-
-(defun ggtags-find-tag-continue ()
-  (interactive)
-  (ggtags-ensure-global-buffer
-    (ggtags-navigation-mode +1)
-    (let ((split-window-preferred-function ggtags-split-window-function))
-      (ignore-errors (compilation-next-error 1))
-      (compile-goto-error))))
-
-(defun ggtags-find-tag (cmd &rest args)
-  (ggtags-check-project)
-  (ggtags-global-start (apply #'ggtags-global-build-command cmd args)))
-
-(defun ggtags-include-file ()
-  "Calculate the include file based on `ggtags-include-pattern'."
-  (pcase ggtags-include-pattern
-    (`nil nil)
-    ((pred functionp)
-     (funcall ggtags-include-pattern))
-    (`(,re . ,sub)
-     (save-excursion
-       (beginning-of-line)
-       (and (looking-at re) (match-string sub))))
-    (_ (warn "Invalid value for `ggtags-include-pattern': %s"
-             ggtags-include-pattern)
-       nil)))
-
-;;;###autoload
-(defun ggtags-find-tag-dwim (name &optional what)
-  "Find NAME by context.
-If point is at a definition tag, find references, and vice versa.
-If point is at a line that matches `ggtags-include-pattern', find
-the include file instead.
-
-When called interactively with a prefix arg, always find
-definition tags."
-  (interactive
-   (let ((include (and (not current-prefix-arg) (ggtags-include-file))))
-     (ggtags-ensure-project)
-     (if include (list include 'include)
-       (list (ggtags-read-tag 'definition current-prefix-arg)
-             (and current-prefix-arg 'definition)))))
-  (ggtags-check-project)    ; For `ggtags-current-project-root' below.
-  (cond
-   ((eq what 'include)
-    (ggtags-find-file name))
-   ((or (eq what 'definition)
-        (not buffer-file-name)
-        (not (ggtags-project-has-refs (ggtags-find-project)))
-        (not (ggtags-project-file-p buffer-file-name)))
-    (ggtags-find-definition name))
-   (t (ggtags-find-tag
-       (format "--from-here=%d:%s"
-               (line-number-at-pos)
-               ;; Note `ggtags-find-tag' binds `default-directory' to
-               ;; project root.
-               (shell-quote-argument
-                (ggtags-project-relative-file buffer-file-name)))
-       "--" (shell-quote-argument name)))))
-
-(defun ggtags-find-tag-mouse (event)
-  (interactive "e")
-  (with-selected-window (posn-window (event-start event))
-    (save-excursion
-      (goto-char (posn-point (event-start event)))
-      (call-interactively #'ggtags-find-tag-dwim))))
-
-;; Another option for `M-.'.
-(defun ggtags-find-definition (name)
-  (interactive (list (ggtags-read-tag 'definition current-prefix-arg)))
-  (ggtags-find-tag 'definition "--" (shell-quote-argument name)))
-
-(defun ggtags-setup-libpath-search (type name)
-  (pcase (and ggtags-global-search-libpath-for-reference
-              (ggtags-get-libpath))
-    ((and libs (guard libs))
-     (cl-labels ((cont (buf how)
-                   (pcase ggtags-global-exit-info
-                     (`(0 0 ,_)
-                      (with-temp-buffer
-                        (setq default-directory
-                              (file-name-as-directory (pop libs)))
-                        (and libs (setq ggtags-global-continuation #'cont))
-                        (if (ggtags-find-project)
-                            (ggtags-find-tag type (shell-quote-argument name))
-                          (cont buf how))))
-                     (_ (ggtags-global-handle-exit buf how)))))
-       (setq ggtags-global-continuation #'cont)))))
-
-(defun ggtags-find-reference (name)
-  (interactive (list (ggtags-read-tag 'reference current-prefix-arg)))
-  (ggtags-setup-libpath-search 'reference name)
-  (ggtags-find-tag 'reference "--" (shell-quote-argument name)))
-
-(defun ggtags-find-other-symbol (name)
-  "Find tag NAME that is a reference without a definition."
-  (interactive (list (ggtags-read-tag 'symbol current-prefix-arg)))
-  (ggtags-setup-libpath-search 'symbol name)
-  (ggtags-find-tag 'symbol "--" (shell-quote-argument name)))
-
-(defun ggtags-quote-pattern (pattern)
-  (prin1-to-string (substring-no-properties pattern)))
-
-(defun ggtags-idutils-query (pattern)
-  (interactive (list (ggtags-read-tag 'id t)))
-  (ggtags-find-tag 'idutils "--" (ggtags-quote-pattern pattern)))
-
-(defun ggtags-grep (pattern &optional invert-match)
-  "Grep for lines matching PATTERN.
-Invert the match when called with a prefix arg \\[universal-argument]."
-  (interactive (list (ggtags-read-tag 'definition 'confirm
-                                      (if current-prefix-arg
-                                          "Inverted grep pattern" "Grep pattern"))
-                     current-prefix-arg))
-  (ggtags-find-tag 'grep (and invert-match "--invert-match")
-                   "--" (ggtags-quote-pattern pattern)))
-
-(defun ggtags-find-file (pattern &optional invert-match)
-  (interactive (list (ggtags-read-tag 'path 'confirm (if current-prefix-arg
-                                                         "Inverted path pattern"
-                                                       "Path pattern")
-                                      nil (thing-at-point 'filename))
-                     current-prefix-arg))
-  (let ((ggtags-global-output-format 'path))
-    (ggtags-find-tag 'path (and invert-match "--invert-match")
-                     "--" (ggtags-quote-pattern pattern))))
-
-;; Note: Coloured output requested in http://goo.gl/Y9IcX and appeared
-;; in global v6.2.12.
-(defun ggtags-find-tag-regexp (regexp directory)
-  "List tags matching REGEXP in DIRECTORY (default to project root).
-When called interactively with a prefix, ask for the directory."
-  (interactive
-   (progn
-     (ggtags-check-project)
-     (list (ggtags-read-tag "" t "POSIX regexp")
-           (if current-prefix-arg
-               (read-directory-name "Directory: " nil nil t)
-             (ggtags-current-project-root)))))
-  (ggtags-check-project)
-  (ggtags-global-start
-   (ggtags-global-build-command nil nil "-l" "--" (ggtags-quote-pattern regexp))
-   (file-name-as-directory directory)))
-
-(defvar ggtags-navigation-mode)
-
-(defun ggtags-foreach-file (fn)
-  "Invoke FN with each file found.
-FN is invoked while *ggtags-global* buffer is current."
-  (ggtags-ensure-global-buffer
-    (save-excursion
-      (goto-char (point-min))
-      (while (with-demoted-errors "compilation-next-error: %S"
-               (compilation-next-error 1 'file)
-               t)
-        (funcall fn (caar
-                     (compilation--loc->file-struct
-                      (compilation--message->loc
-                       (get-text-property (point) 'compilation-message)))))))))
-
-(defun ggtags-query-replace (from to &optional delimited)
-  "Query replace FROM with TO on files in the Global buffer.
-If not in navigation mode, do a grep on FROM first.
-
-Note: the regular expression FROM must be supported by both
-Global and Emacs."
-  (interactive
-   ;; Note: in 24.4 query-replace-read-args returns a list of 4 elements.
-   (let ((args (query-replace-read-args "Query replace (regexp)" t t)))
-     (list (nth 0 args) (nth 1 args) (nth 2 args))))
-  (unless ggtags-navigation-mode
-    (let ((ggtags-auto-jump-to-match nil))
-      (ggtags-grep from)))
-  (let ((file-form
-         '(let ((files))
-            (ggtags-ensure-global-buffer
-              (ggtags-with-temp-message "Waiting for Grep to finish..."
-                (while (get-buffer-process (current-buffer))
-                  (sit-for 0.2)))
-              (ggtags-foreach-file
-               (lambda (file) (push (expand-file-name file) files))))
-            (ggtags-navigation-mode -1)
-            (nreverse files))))
-    (tags-query-replace from to delimited file-form)))
-
-(defun ggtags-global-normalise-command (cmd)
-  (if (string-match
-       (concat (regexp-quote (ggtags-global-build-command nil)) "\\s-*")
-       cmd)
-      (substring-no-properties cmd (match-end 0))
-    cmd))
-
-(defun ggtags-global-search-id (cmd directory)
-  (sha1 (concat directory (make-string 1 0)
-                (ggtags-global-normalise-command cmd))))
-
-(defun ggtags-global-current-search ()
-  ;; CMD DIR ENV LINE TEXT
-  (ggtags-ensure-global-buffer
-    (list (ggtags-global-normalise-command (car compilation-arguments))
-          default-directory
-          ggtags-process-environment
-          (line-number-at-pos)
-          (buffer-substring-no-properties
-           (line-beginning-position) (line-end-position)))))
-
-(defun ggtags-global-rerun-search (data)
-  (pcase data
-    (`(,cmd ,dir ,env ,line ,_text)
-     (with-current-buffer (let ((ggtags-auto-jump-to-match nil)
-                                ;; Switch current project to DIR.
-                                (default-directory dir)
-                                (ggtags-project-root dir)
-                                (ggtags-process-environment env))
-                            (ggtags-global-start
-                             (ggtags-global-build-command cmd) dir))
-       (add-hook 'compilation-finish-functions
-                 (lambda (buf _msg)
-                   (with-current-buffer buf
-                     (ggtags-forward-to-line line)
-                     (compile-goto-error)))
-                 nil t)))))
-
-(defvar-local ggtags-global-search-ewoc nil)
-(defvar ggtags-view-search-history-last nil)
-
-(defvar ggtags-view-search-history-mode-map
-  (let ((m (make-sparse-keymap)))
-    (define-key m "p" 'ggtags-view-search-history-prev)
-    (define-key m "\M-p" 'ggtags-view-search-history-prev)
-    (define-key m "n" 'ggtags-view-search-history-next)
-    (define-key m "\M-n" 'ggtags-view-search-history-next)
-    (define-key m "\C-k" 'ggtags-view-search-history-kill)
-    (define-key m [remap yank] (lambda (&optional arg) (interactive "P") (yank arg)))
-    (define-key m "\C-c\C-c" 'ggtags-view-search-history-update)
-    (define-key m "r" 'ggtags-save-to-register)
-    (define-key m "\r" 'ggtags-view-search-history-action)
-    (define-key m "q" 'ggtags-kill-window)
-    m))
-
-(defun ggtags-view-search-history-remember ()
-  (setq ggtags-view-search-history-last
-        (pcase (ewoc-locate ggtags-global-search-ewoc)
-          (`nil nil)
-          (node (ewoc-data node)))))
-
-(defun ggtags-view-search-history-next (&optional arg)
-  (interactive "p")
-  (let ((arg (or arg 1)))
-    (prog1 (funcall (if (cl-minusp arg) #'ewoc-goto-prev #'ewoc-goto-next)
-                    ggtags-global-search-ewoc (abs arg))
-      (ggtags-view-search-history-remember))))
-
-(defun ggtags-view-search-history-prev (&optional arg)
-  (interactive "p")
-  (ggtags-view-search-history-next (- (or arg 1))))
-
-(defun ggtags-view-search-history-kill (&optional append)
-  (interactive "P")
-  (let* ((node (or (ewoc-locate ggtags-global-search-ewoc)
-                   (user-error "No node at point")))
-         (next (ewoc-next ggtags-global-search-ewoc node))
-         (text (filter-buffer-substring (ewoc-location node)
-                                        (if next (ewoc-location next)
-                                          (point-max)))))
-    (put-text-property
-     0 (length text) 'yank-handler
-     (list (lambda (arg)
-             (if (not ggtags-global-search-ewoc)
-                 (insert (car arg))
-               (let* ((inhibit-read-only t)
-                      (node (unless (looking-at-p "[ \t\n]*\\'")
-                              (ewoc-locate ggtags-global-search-ewoc))))
-                 (if node
-                     (ewoc-enter-before ggtags-global-search-ewoc
-                                        node (cadr arg))
-                   (ewoc-enter-last ggtags-global-search-ewoc (cadr arg)))
-                 (setq ggtags-view-search-history-last (cadr arg)))))
-           (list text (ewoc-data node)))
-     text)
-    (if append (kill-append text nil)
-      (kill-new text))
-    (let ((inhibit-read-only t))
-      (ewoc-delete ggtags-global-search-ewoc node))))
-
-(defun ggtags-view-search-history-update (&optional noconfirm)
-  "Update `ggtags-global-search-history' to current buffer."
-  (interactive "P")
-  (when (and (buffer-modified-p)
-             (or noconfirm
-                 (yes-or-no-p "Modify `ggtags-global-search-history'?")))
-    (setq ggtags-global-search-history
-          (ewoc-collect ggtags-global-search-ewoc #'identity))
-    (set-buffer-modified-p nil)))
-
-(defun ggtags-view-search-history-action ()
-  (interactive)
-  (let ((data (ewoc-data (or (ewoc-locate ggtags-global-search-ewoc)
-                             (user-error "No search at point")))))
-    (ggtags-view-search-history-remember)
-    (quit-window t)
-    (ggtags-global-rerun-search (cdr data))))
-
-(defvar bookmark-make-record-function)
-
-(define-derived-mode ggtags-view-search-history-mode special-mode "SearchHist"
-  "Major mode for viewing search history."
-  :group 'ggtags
-  (setq-local ggtags-enable-navigation-keys nil)
-  (setq-local bookmark-make-record-function #'ggtags-make-bookmark-record)
-  (setq truncate-lines t)
-  (add-hook 'kill-buffer-hook #'ggtags-view-search-history-update nil t))
-
-(defun ggtags-view-search-history-restore-last ()
-  (when ggtags-view-search-history-last
-    (cl-loop for n = (ewoc-nth ggtags-global-search-ewoc 0)
-             then (ewoc-next ggtags-global-search-ewoc n)
-             while n when (eq (ewoc-data n)
-                              ggtags-view-search-history-last)
-             do (progn (goto-char (ewoc-location n)) (cl-return t)))))
-
-(defun ggtags-view-search-history ()
-  "Pop to a buffer to view or re-run past searches.
-
-\\{ggtags-view-search-history-mode-map}"
-  (interactive)
-  (or ggtags-global-search-history (user-error "No search history"))
-  (let ((split-window-preferred-function ggtags-split-window-function)
-        (inhibit-read-only t))
-    (pop-to-buffer "*Ggtags Search History*")
-    (erase-buffer)
-    (ggtags-view-search-history-mode)
-    (cl-labels ((prop (s)
-                  (propertize s 'face 'minibuffer-prompt))
-                (prop-tag (cmd)
-                  (with-temp-buffer
-                    (insert cmd)
-                    (forward-sexp -1)
-                    (if (eobp)
-                        cmd
-                      (put-text-property (point) (point-max)
-                                         'face font-lock-constant-face)
-                      (buffer-string))))
-                (pp (data)
-                  (pcase data
-                    (`(,_id ,cmd ,dir ,_env ,line ,text)
-                     (insert (prop " cmd: ") (prop-tag cmd) "\n"
-                             (prop " dir: ") dir "\n"
-                             (prop "line: ") (number-to-string line) "\n"
-                             (prop "text: ") text "\n"
-                             (propertize (make-string 32 ?-) 'face 'shadow))))))
-      (setq ggtags-global-search-ewoc
-            (ewoc-create #'pp "Global search history keys:  n:next  p:prev  r:register  RET:choose\n")))
-    (dolist (data ggtags-global-search-history)
-      (ewoc-enter-last ggtags-global-search-ewoc data))
-    (ggtags-view-search-history-restore-last)
-    (set-buffer-modified-p nil)
-    (fit-window-to-buffer nil (floor (frame-height) 2))))
-
-(defun ggtags-save-to-register (r)
-  "Save current search session to register R.
-Use \\[jump-to-register] to restore the search session."
-  (interactive (list (register-read-with-preview "Save search to register: ")))
-  (cl-labels ((prn (data)
-                (pcase data
-                  (`(,command ,root ,_env ,line ,_)
-                   (princ (format "a ggtags search session `%s' in directory `%s' at line %d."
-                                  command root line))))))
-    (set-register r (registerv-make
-                     (if ggtags-global-search-ewoc
-                         (cdr (ewoc-data (ewoc-locate ggtags-global-search-ewoc)))
-                       (ggtags-global-current-search))
-                     :jump-func #'ggtags-global-rerun-search
-                     :print-func #'prn))))
-
-(defun ggtags-make-bookmark-record ()
-  `(,(and ggtags-current-tag-name (format "*ggtags %s*" ggtags-current-tag-name))
-    (ggtags-search . ,(if ggtags-global-search-ewoc
-                          (cdr (ewoc-data (ewoc-locate ggtags-global-search-ewoc)))
-                        (ggtags-global-current-search)))
-    (handler . ggtags-bookmark-jump)))
-
-(declare-function bookmark-prop-get "bookmark")
-
-(defun ggtags-bookmark-jump (bmk)
-  (ggtags-global-rerun-search (bookmark-prop-get bmk 'ggtags-search)))
-
-(defun ggtags-browse-file-as-hypertext (file line)
-  "Browse FILE in hypertext (HTML) form."
-  (interactive (if (or current-prefix-arg (not buffer-file-name))
-                   (list (read-file-name "Browse file: " nil nil t)
-                         (read-number "Line: " 1))
-                 (list buffer-file-name (line-number-at-pos))))
-  (cl-check-type line (integer 1))
-  (or (and file (file-exists-p file)) (error "File `%s' doesn't exist" file))
-  (ggtags-check-project)
-  (or (file-exists-p (expand-file-name "HTML" (ggtags-current-project-root)))
-      (if (yes-or-no-p "No hypertext form exists; run htags? ")
-          (let ((default-directory (ggtags-current-project-root)))
-            (ggtags-with-current-project (ggtags-process-string "htags")))
-        (user-error "Aborted")))
-  (let ((url (ggtags-process-string "gozilla" "-p" (format "+%d" line)
-                                    (file-relative-name file))))
-    (or (equal (file-name-extension
-                (url-filename (url-generic-parse-url url))) "html")
-        (user-error "No hypertext form for `%s'" file))
-    (when (called-interactively-p 'interactive)
-      (message "Browsing %s" url))
-    (browse-url url)))
-
-(defun ggtags-next-mark (&optional arg)
-  "Move to the next (newer) mark in the tag marker ring."
-  (interactive)
-  (and (ring-empty-p xref--marker-ring) (user-error "Tag ring empty"))
-  (setq ggtags-tag-ring-index
-        ;; Note `ring-minus1' gets newer item.
-        (funcall (if arg #'ring-plus1 #'ring-minus1)
-                 (or ggtags-tag-ring-index
-                     (progn (xref-push-marker-stack)
-                            0))
-                 (ring-length xref--marker-ring)))
-  (let ((m (ring-ref xref--marker-ring ggtags-tag-ring-index))
-        (i (- (ring-length xref--marker-ring) ggtags-tag-ring-index)))
-    (ggtags-echo "%d%s marker%s" i (pcase (mod i 10)
-                                     (1 "st")
-                                     (2 "nd")
-                                     (3 "rd")
-                                     (_ "th"))
-                 (if (marker-buffer m) "" " (dead)"))
-    (if (not (marker-buffer m))
-        (ding)
-      (switch-to-buffer (marker-buffer m))
-      (goto-char m))))
-
-(defun ggtags-prev-mark ()
-  "Move to the previous (older) mark in the tag marker ring."
-  (interactive)
-  (ggtags-next-mark 'previous))
-
-(defvar ggtags-view-tag-history-mode-map
-  (let ((m (make-sparse-keymap)))
-    (define-key m "\M-n" 'next-error-no-select)
-    (define-key m "\M-p" 'previous-error-no-select)
-    (define-key m "q"    'ggtags-kill-window)
-    m))
-
-(define-derived-mode ggtags-view-tag-history-mode tabulated-list-mode "TagHist"
-  :abbrev-table nil :group 'ggtags)
-
-(defun ggtags-view-tag-history ()
-  "Pop to a buffer listing visited locations from newest to oldest.
-The buffer is a next error buffer and works with standard
-commands `next-error' and `previous-error'.
-
-\\{ggtags-view-tag-history-mode-map}"
-  (interactive)
-  (and (ring-empty-p xref--marker-ring)
-       (user-error "Tag ring empty"))
-  (let ((split-window-preferred-function ggtags-split-window-function)
-        (inhibit-read-only t))
-    (pop-to-buffer "*Tag Ring*")
-    (erase-buffer)
-    (ggtags-view-tag-history-mode)
-    (setq next-error-function #'ggtags-view-tag-history-next-error
-          next-error-last-buffer (current-buffer))
-    (setq tabulated-list-entries
-          ;; Use a function so that revert can work properly.
-          (lambda ()
-            (let ((counter (ring-length xref--marker-ring))
-                  (elements (or (ring-elements xref--marker-ring)
-                                (user-error "Tag ring empty")))
-                  (action (lambda (_button) (next-error 0)))
-                  (get-line (lambda (m)
-                              (with-current-buffer (marker-buffer m)
-                                (save-excursion
-                                  (goto-char m)
-                                  (buffer-substring (line-beginning-position)
-                                                    (line-end-position)))))))
-              (setq tabulated-list-format
-                    `[("ID" ,(max (1+ (floor (log counter 10))) 2)
-                       car-less-than-car)
-                      ("Buffer" ,(max (cl-loop for m in elements
-                                               for b = (marker-buffer m)
-                                               maximize
-                                               (length (and b (buffer-name b))))
-                                      6)
-                       t :right-align t)
-                      ("Position" ,(max (cl-loop for m in elements
-                                                 for p = (or (marker-position m) 1)
-                                                 maximize (1+ (floor (log p 10))))
-                                        8)
-                       (lambda (x y)
-                         (< (string-to-number (aref (cadr x) 2))
-                            (string-to-number (aref (cadr y) 2))))
-                       :right-align t)
-                      ("Contents" 100 t)])
-              (tabulated-list-init-header)
-              (mapcar (lambda (x)
-                        (prog1
-                            (list counter
-                                  (if (marker-buffer x)
-                                      (vector (number-to-string counter)
-                                              `(,(buffer-name (marker-buffer x))
-                                                face link
-                                                follow-link t
-                                                marker ,x
-                                                action ,action)
-                                              (number-to-string (marker-position x))
-                                              (funcall get-line x))
-                                    (vector (number-to-string counter)
-                                            "(dead)" "?" "?")))
-                          (cl-decf counter)))
-                      elements))))
-    (setq tabulated-list-sort-key '("ID" . t))
-    (tabulated-list-print)
-    (fit-window-to-buffer nil (floor (frame-height) 2))))
-
-(defun ggtags-view-tag-history-next-error (&optional arg reset)
-  (if (not reset)
-      (forward-button arg)
-    (goto-char (point-min))
-    (forward-button (if (button-at (point)) 0 1)))
-  (when (get-buffer-window)
-    (set-window-point (get-buffer-window) (point)))
-  (pcase (button-get (button-at (point)) 'marker)
-    ((and (pred markerp) m)
-     (if (eq (get-buffer-window) (selected-window))
-         (pop-to-buffer (marker-buffer m))
-       (switch-to-buffer (marker-buffer m)))
-     (goto-char (marker-position m)))
-    (_ (error "Dead marker"))))
-
-(defun ggtags-global-exit-message-1 ()
-  "Get the total of matches and db file used."
-  (save-excursion
-    (goto-char (point-max))
-    (if (re-search-backward
-         "^\\w+ \\(not found\\)\\|^\\([0-9]+\\) \\w+ located" nil t)
-        (cons (or (and (match-string 1) 0)
-                  (string-to-number (match-string 2)))
-              (when (re-search-forward
-                     "using \\(?:\\(idutils\\)\\|'[^']*/\\(\\w+\\)'\\)"
-                     (line-end-position)
-                     t)
-                (or (and (match-string 1) "ID")
-                    (match-string 2))))
-      (cons 0 nil))))
-
-(defun ggtags-global-exit-message-function (_process-status exit-status msg)
-  "A function for `compilation-exit-message-function'."
-  (pcase (ggtags-global-exit-message-1)
-    (`(,count . ,db)
-     (setq ggtags-global-exit-info (list exit-status count db))
-     ;; Clear the start marker in case of zero matches.
-     (and (zerop count)
-          (markerp ggtags-global-start-marker)
-          (not ggtags-global-continuation)
-          (setq ggtags-global-start-marker nil))
-     (cons (if (> exit-status 0)
-               msg
-             (format "found %d %s" count
-                     (funcall (if (= count 1) #'car #'cadr)
-                              (pcase db
-                                ("GTAGS"  '("definition" "definitions"))
-                                ("GSYMS"  '("symbol"     "symbols"))
-                                ("GRTAGS" '("reference"  "references"))
-                                ("GPATH"  '("file"       "files"))
-                                ("ID"     '("identifier" "identifiers"))
-                                (_         '("match"      "matches"))))))
-           exit-status))))
-
-(defun ggtags-global-column (start)
-  ;; START is the beginning position of source text.
-  (let ((mbeg (text-property-any start (line-end-position) 'global-color t)))
-    (and mbeg (- mbeg start))))
-
-;;; NOTE: Must not match the 'Global started at Mon Jun 3 10:24:13'
-;;; line or `compilation-auto-jump' will jump there and fail. See
-;;; comments before the 'gnu' entry in
-;;; `compilation-error-regexp-alist-alist'.
-(defvar ggtags-global-error-regexp-alist-alist
-  (append
-   `((path "^\\(?:[^\"'\n]*/\\)?[^ )\t\n]+$" 0)
-     ;; ACTIVE_ESCAPE   src/dialog.cc   172
-     (ctags "^\\([^ \t\n]+\\)[ \t]+\\(.*?\\)[ \t]+\\([0-9]+\\)$"
-            2 3 nil nil 2 (1 font-lock-function-name-face))
-     ;; ACTIVE_ESCAPE     172 src/dialog.cc    #undef ACTIVE_ESCAPE
-     (ctags-x "^\\([^ \t\n]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\(\\(?:[^/\n]*/\\)?[^ \t\n]+\\)"
-              3 2 (,(lambda () (ggtags-global-column (1+ (match-end 0)))))
-              nil 3 (1 font-lock-function-name-face))
-     ;; src/dialog.cc:172:#undef ACTIVE_ESCAPE
-     (grep "^\\(.+?\\):\\([0-9]+\\):\\(?:$\\|[^0-9\n]\\|[0-9][^0-9\n]\\|[0-9][0-9].\\)"
-           1 2 (,(lambda () (ggtags-global-column (1+ (match-end 2))))) nil 1)
-     ;; src/dialog.cc ACTIVE_ESCAPE 172 #undef ACTIVE_ESCAPE
-     (cscope "^\\(.+?\\)[ \t]+\\([^ \t\n]+\\)[ \t]+\\([0-9]+\\).*\\(?:[^0-9\n]\\|[^0-9\n][0-9]\\|[^:\n][0-9][0-9]\\)$"
-             1 3 nil nil 1 (2 font-lock-function-name-face)))
-   compilation-error-regexp-alist-alist))
-
-(defun ggtags-abbreviate-file (start end)
-  (let ((inhibit-read-only t)
-        (amount (if (numberp ggtags-global-abbreviate-filename)
-                    (- (- end start) ggtags-global-abbreviate-filename)
-                  999))
-        (advance-word (lambda ()
-                        "Return the length of the text made invisible."
-                        (let ((wend (min end (progn (forward-word 1) (point))))
-                              (wbeg (max start (progn (backward-word 1) (point)))))
-                          (goto-char wend)
-                          (if (<= (- wend wbeg) 1)
-                              0
-                            (put-text-property (1+ wbeg) wend 'invisible t)
-                            (1- (- wend wbeg)))))))
-    (goto-char start)
-    (while (and (> amount 0) (> end (point)))
-      (cl-decf amount (funcall advance-word)))))
-
-(defun ggtags-abbreviate-files (start end)
-  (goto-char start)
-  (let* ((error-re (cdr (assq (car compilation-error-regexp-alist)
-                              ggtags-global-error-regexp-alist-alist)))
-         (sub (cadr error-re)))
-    (when (and ggtags-global-abbreviate-filename error-re)
-      (while (re-search-forward (car error-re) end t)
-        (when (and (or (not (numberp ggtags-global-abbreviate-filename))
-                       (> (length (match-string sub))
-                          ggtags-global-abbreviate-filename))
-                   ;; Ignore bogus file lines such as:
-                   ;;     Global found 2 matches at Thu Jan 31 13:45:19
-                   (get-text-property (match-beginning sub) 'compilation-message))
-          (ggtags-abbreviate-file (match-beginning sub) (match-end sub)))))))
-
-(defvar-local ggtags-global-output-lines 0)
-
-(defun ggtags-global--display-buffer (&optional buffer desired-point)
-  (pcase (let ((buffer (or buffer (current-buffer)))
-               (split-window-preferred-function ggtags-split-window-function))
-           (and (not (get-buffer-window buffer))
-                (display-buffer buffer '(nil (allow-no-window . t)))))
-    ((and (pred windowp) w)
-     (with-selected-window w
-       (compilation-set-window-height w)
-       (and desired-point (goto-char desired-point))))))
-
-(defun ggtags-global-filter ()
-  "Called from `compilation-filter-hook' (which see)."
-  (let ((ansi-color-apply-face-function
-         (lambda (beg end face)
-           (when face
-             (ansi-color-apply-overlay-face beg end face)
-             (put-text-property beg end 'global-color t)))))
-    (ansi-color-apply-on-region compilation-filter-start (point)))
-  ;; Get rid of line "Using config file '/PATH/TO/.globalrc'." or
-  ;; "Using default configuration."
-  (when (re-search-backward
-         "^ *Using \\(?:config file '.*\\|default configuration.\\)\n"
-         compilation-filter-start t)
-    (replace-match ""))
-  (cl-incf ggtags-global-output-lines
-           (count-lines compilation-filter-start (point)))
-  ;; If the number of output lines is small
-  ;; `ggtags-global-handle-exit' takes care of displaying the buffer.
-  (when (and (> ggtags-global-output-lines 30) ggtags-navigation-mode)
-    (ggtags-global--display-buffer nil (or compilation-current-error (point-min))))
-  (when (and (eq ggtags-auto-jump-to-match 'history)
-             (numberp ggtags-auto-jump-to-match-target)
-             (not compilation-current-error)
-             ;; `ggtags-global-output-lines' is imprecise but use it
-             ;; as first approximation.
-             (> (+ 10 ggtags-global-output-lines) ggtags-auto-jump-to-match-target)
-             (> (line-number-at-pos (point-max))
-                ggtags-auto-jump-to-match-target))
-    (ggtags-forward-to-line ggtags-auto-jump-to-match-target)
-    (setq-local ggtags-auto-jump-to-match-target nil)
-    (ggtags-delay-finish-functions
-      (with-display-buffer-no-window
-        (condition-case nil
-            (let ((compilation-auto-jump-to-first-error t))
-              (compilation-auto-jump (current-buffer) (point)))
-          (error (message "\
-ggtags: history match invalid, jump to first match instead")
-                 (first-error)))))
-    ;; `compilation-filter' restores point and as a result commands
-    ;; dependent on point such as `ggtags-navigation-next-file' and
-    ;; `ggtags-navigation-previous-file' fail to work.
-    (run-with-idle-timer
-     0 nil
-     (lambda (buf pt)
-       (and (buffer-live-p buf)
-            (with-current-buffer buf (goto-char pt))))
-     (current-buffer) (point)))
-  (make-local-variable 'ggtags-global-large-output)
-  (when (> ggtags-global-output-lines ggtags-global-large-output)
-    (cl-incf ggtags-global-large-output 500)
-    (ggtags-echo "Output %d lines (Type `C-c C-k' to cancel)"
-                 ggtags-global-output-lines)))
-
-(defun ggtags-global-handle-exit (buf how)
-  "A function for `compilation-finish-functions' (which see)."
-  (cond
-   (ggtags-global-continuation
-    (let ((cont (prog1 ggtags-global-continuation
-                  (setq ggtags-global-continuation nil))))
-      (funcall cont buf how)))
-   ((string-prefix-p "exited abnormally" how)
-    ;; If exit abnormally display the buffer for inspection.
-    (ggtags-global--display-buffer)
-    (when (save-excursion
-            (goto-char (point-max))
-            (re-search-backward
-             (eval-when-compile
-               (format "^global: %s not found.$"
-                       (regexp-opt '("GTAGS" "GRTAGS" "GSYMS" "GPATH"))))
-             nil t))
-      (ggtags-echo "WARNING: Global tag files missing in `%s'"
-                   ggtags-project-root)
-      (remhash ggtags-project-root ggtags-projects)))
-   (ggtags-auto-jump-to-match
-    (if (pcase (compilation-next-single-property-change
-                (point-min) 'compilation-message)
-          ((and pt (guard pt))
-           (compilation-next-single-property-change
-            (save-excursion (goto-char pt) (end-of-line) (point))
-            'compilation-message)))
-        ;; There are multiple matches so pop up the buffer.
-        (and ggtags-navigation-mode (ggtags-global--display-buffer))
-      ;; Manually run the `compilation-auto-jump' timer. Hackish but
-      ;; everything else seems unreliable. See:
-      ;;
-      ;; - http://debbugs.gnu.org/13829
-      ;; - http://debbugs.gnu.org/23987
-      ;; - https://github.com/leoliu/ggtags/issues/89
-      ;;
-      (pcase (cl-find 'compilation-auto-jump timer-list :key #'timer--function)
-        (`nil )
-        (timer (timer-event-handler timer)))
-      (ggtags-navigation-mode -1)
-      (ggtags-navigation-mode-cleanup buf t)))))
-
-(defvar ggtags-global-mode-font-lock-keywords
-  '(("^Global \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
-     (1 'compilation-error)
-     (2 'compilation-error nil t))
-    ("^Global found \\([0-9]+\\)" (1 compilation-info-face))))
-
-(define-compilation-mode ggtags-global-mode "Global"
-  "A mode for showing outputs from gnu global."
-  ;; Note: Place `ggtags-global-output-format' as first element for
-  ;; `ggtags-abbreviate-files'.
-  (setq-local compilation-error-regexp-alist (list ggtags-global-output-format))
-  (when (markerp ggtags-global-start-marker)
-    (setq ggtags-project-root
-          (buffer-local-value 'ggtags-project-root
-                              (marker-buffer ggtags-global-start-marker))))
-  (pcase ggtags-auto-jump-to-match
-    (`history (make-local-variable 'ggtags-auto-jump-to-match-target)
-              (setq-local compilation-auto-jump-to-first-error
-                          (not ggtags-auto-jump-to-match-target)))
-    (`nil (setq-local compilation-auto-jump-to-first-error nil))
-    (_ (setq-local compilation-auto-jump-to-first-error t)))
-  (setq-local compilation-scroll-output nil)
-  ;; See `compilation-move-to-column' for details.
-  (setq-local compilation-first-column 0)
-  (setq-local compilation-error-screen-columns nil)
-  (setq-local compilation-disable-input t)
-  (setq-local compilation-always-kill t)
-  (setq-local compilation-error-face 'compilation-info)
-  (setq-local compilation-exit-message-function
-              'ggtags-global-exit-message-function)
-  ;; See: https://github.com/leoliu/ggtags/issues/26
-  (setq-local find-file-suppress-same-file-warnings t)
-  (setq-local truncate-lines t)
-  (jit-lock-register #'ggtags-abbreviate-files)
-  (add-hook 'compilation-filter-hook 'ggtags-global-filter nil 'local)
-  (add-hook 'compilation-finish-functions 'ggtags-global-handle-exit nil t)
-  (setq-local bookmark-make-record-function #'ggtags-make-bookmark-record)
-  (setq-local ggtags-enable-navigation-keys nil)
-  (add-hook 'kill-buffer-hook (lambda () (ggtags-navigation-mode -1)) nil t))
-
-;; NOTE: Need this to avoid putting menu items in
-;; `emulation-mode-map-alists', which creates double entries. See
-;; http://i.imgur.com/VJJTzVc.png
-(defvar ggtags-navigation-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map "\M-n" 'next-error)
-    (define-key map "\M-p" 'previous-error)
-    (define-key map "\M-}" 'ggtags-navigation-next-file)
-    (define-key map "\M-{" 'ggtags-navigation-previous-file)
-    (define-key map "\M-=" 'ggtags-navigation-start-file)
-    (define-key map "\M->" 'ggtags-navigation-last-error)
-    (define-key map "\M-<" 'first-error)
-    ;; Note: shadows `isearch-forward-regexp' but it can still be
-    ;; invoked with `C-u C-s'.
-    (define-key map "\C-\M-s" 'ggtags-navigation-isearch-forward)
-    ;; Add an alternative binding because C-M-s is reported not
-    ;; working on some systems.
-    (define-key map "\M-ss" 'ggtags-navigation-isearch-forward)
-    (define-key map "\C-c\C-k"
-      (lambda () (interactive)
-        (ggtags-ensure-global-buffer (kill-compilation))))
-    (define-key map "\M-o" 'ggtags-navigation-visible-mode)
-    (define-key map [return] 'ggtags-navigation-mode-done)
-    (define-key map "\r" 'ggtags-navigation-mode-done)
-    (define-key map [remap xref-pop-marker-stack] 'ggtags-navigation-mode-abort)
-    map))
-
-(defvar ggtags-mode-map-alist
-  `((ggtags-enable-navigation-keys . ,ggtags-navigation-map)))
-
-(defvar ggtags-navigation-mode-map
-  (let ((map (make-sparse-keymap))
-        (menu (make-sparse-keymap "GG-Navigation")))
-    ;; Menu items: (info "(elisp)Extended Menu Items")
-    (define-key map [menu-bar ggtags-navigation] (cons "GG-Navigation" menu))
-    ;; Ordered backwards
-    (define-key menu [visible-mode]
-      '(menu-item "Visible mode" ggtags-navigation-visible-mode
-                  :button (:toggle . (ignore-errors
-                                       (ggtags-ensure-global-buffer
-                                         visible-mode)))))
-    (define-key menu [done]
-      '(menu-item "Finish navigation" ggtags-navigation-mode-done))
-    (define-key menu [abort]
-      '(menu-item "Abort" ggtags-navigation-mode-abort))
-    (define-key menu [last-match]
-      '(menu-item "Last match" ggtags-navigation-last-error))
-    (define-key menu [first-match] '(menu-item "First match" first-error))
-    (define-key menu [previous-file]
-      '(menu-item "Previous file" ggtags-navigation-previous-file))
-    (define-key menu [next-file]
-      '(menu-item "Next file" ggtags-navigation-next-file))
-    (define-key menu [isearch-forward]
-      '(menu-item "Find match with isearch" ggtags-navigation-isearch-forward))
-    (define-key menu [previous]
-      '(menu-item "Previous match" previous-error))
-    (define-key menu [next]
-      '(menu-item "Next match" next-error))
-    map))
-
-(defun ggtags-move-to-tag (&optional name)
-  "Move to NAME tag in current line."
-  (let ((tag (or name ggtags-current-tag-name)))
-    ;; Do nothing if on the tag already i.e. by `ggtags-global-column'.
-    (unless (or (not tag) (looking-at (concat (regexp-quote tag) "\\_>")))
-      (let ((orig (point))
-            (regexps (mapcar (lambda (fmtstr)
-                               (format fmtstr (regexp-quote tag)))
-                             '("\\_<%s\\_>" "%s\\_>" "%s"))))
-        (beginning-of-line)
-        (if (cl-loop for re in regexps
-                     ;; Note: tag might not agree with current
-                     ;; major-mode's symbol, so try harder. For
-                     ;; example, in `php-mode' $cacheBackend is a
-                     ;; symbol, but cacheBackend is a tag.
-                     thereis (re-search-forward re (line-end-position) t))
-            (goto-char (match-beginning 0))
-          (goto-char orig))))))
-
-(defun ggtags-navigation-mode-cleanup (&optional buf kill)
-  (let ((buf (or buf ggtags-global-last-buffer)))
-    (and (buffer-live-p buf)
-         (with-current-buffer buf
-           (when (get-buffer-process (current-buffer))
-             (kill-compilation))
-           (when (and (derived-mode-p 'ggtags-global-mode)
-                      (get-buffer-window))
-             (quit-windows-on (current-buffer)))
-           (and kill (kill-buffer buf))))))
-
-(defun ggtags-navigation-mode-done ()
-  (interactive)
-  (ggtags-navigation-mode -1)
-  (setq tags-loop-scan t
-        tags-loop-operate '(ggtags-find-tag-continue))
-  (ggtags-navigation-mode-cleanup))
-
-(defun ggtags-navigation-mode-abort ()
-  "Abort navigation and return to where the search was started."
-  (interactive)
-  (ggtags-navigation-mode -1)
-  (ggtags-navigation-mode-cleanup nil t)
-  ;; Run after (ggtags-navigation-mode -1) or
-  ;; ggtags-global-start-marker might not have been saved.
-  (when (and ggtags-global-start-marker
-             (not (markerp ggtags-global-start-marker)))
-    (setq ggtags-global-start-marker nil)
-    (xref-pop-marker-stack)))
-
-(defun ggtags-navigation-next-file (n)
-  (interactive "p")
-  (ggtags-ensure-global-buffer
-    (compilation-next-file n)
-    (compile-goto-error)))
-
-(defun ggtags-navigation-previous-file (n)
-  (interactive "p")
-  (ggtags-navigation-next-file (- n)))
-
-(defun ggtags-navigation-start-file ()
-  "Move to the file where navigation session starts."
-  (interactive)
-  (let ((start-file (or ggtags-global-start-file
-                        (user-error "Cannot decide start file"))))
-    (ggtags-ensure-global-buffer
-      (pcase (cl-block nil
-               (ggtags-foreach-file
-                (lambda (file)
-                  (when (file-equal-p file start-file)
-                    (cl-return (point))))))
-        (`nil (user-error "No matches for `%s'" start-file))
-        (n (goto-char n) (compile-goto-error))))))
-
-(defun ggtags-navigation-last-error ()
-  (interactive)
-  (ggtags-ensure-global-buffer
-    (goto-char (point-max))
-    (compilation-previous-error 1)
-    (compile-goto-error)))
-
-(defun ggtags-navigation-isearch-forward (&optional regexp-p)
-  (interactive "P")
-  (ggtags-ensure-global-buffer
-    (let ((saved (if visible-mode 1 -1)))
-      (visible-mode 1)
-      (with-selected-window (get-buffer-window (current-buffer))
-        (isearch-forward regexp-p)
-        (beginning-of-line)
-        (visible-mode saved)
-        (compile-goto-error)))))
-
-(defun ggtags-navigation-visible-mode (&optional arg)
-  (interactive (list (or current-prefix-arg 'toggle)))
-  (ggtags-ensure-global-buffer
-    (visible-mode arg)))
-
-(defvar ggtags-global-line-overlay nil)
-
-(defun ggtags-global-next-error-function ()
-  (when (eq next-error-last-buffer ggtags-global-last-buffer)
-    (ggtags-move-to-tag)
-    (ggtags-global-save-start-marker)
-    (and (ggtags-project-update-mtime-maybe)
-         (message "File `%s' is newer than GTAGS"
-                  (file-name-nondirectory buffer-file-name)))
-    (and ggtags-mode-sticky (ggtags-mode 1))
-    (ignore-errors
-      (ggtags-ensure-global-buffer
-        (unless (overlayp ggtags-global-line-overlay)
-          (setq ggtags-global-line-overlay (make-overlay (point) (point)))
-          (overlay-put ggtags-global-line-overlay 'face 'ggtags-global-line))
-        (move-overlay ggtags-global-line-overlay
-                      (line-beginning-position) (line-end-position)
-                      (current-buffer))
-        ;; Update search history
-        (let ((id (ggtags-global-search-id (car compilation-arguments)
-                                           default-directory)))
-          (setq ggtags-global-search-history
-                (cl-remove id ggtags-global-search-history :test #'equal :key #'car))
-          (add-to-history 'ggtags-global-search-history
-                          (cons id (ggtags-global-current-search))
-                          ggtags-global-history-length))))
-    (run-hooks 'ggtags-find-tag-hook)))
-
-(put 'ggtags-navigation-mode-lighter 'risky-local-variable t)
-
-(defvar ggtags-navigation-mode-lighter
-  '(" GG["
-    (:eval
-     (if (not (buffer-live-p ggtags-global-last-buffer))
-         '(:propertize "??" face error help-echo "No Global buffer")
-       (with-current-buffer ggtags-global-last-buffer
-         (pcase (or ggtags-global-exit-info '(0 0 ""))
-           (`(,exit ,count ,db)
-            `((:propertize ,(pcase db
-                              (`"GTAGS"  "D")
-                              (`"GRTAGS" "R")
-                              (`"GSYMS"  "S")
-                              (`"GPATH"  "F")
-                              (`"ID"     "I"))
-                           face success)
-              (:propertize
-               ,(pcase (get-text-property (line-beginning-position)
-                                          'compilation-message)
-                  (`nil "?")
-                  ;; Assume the first match appears at line 5
-                  (_ (number-to-string (- (line-number-at-pos) 4))))
-               face success)
-              "/"
-              (:propertize ,(number-to-string count) face success)
-              ,(unless (zerop exit)
-                 `(":" (:propertize ,(number-to-string exit) face error)))))))))
-    "]")
-  "Ligher for `ggtags-navigation-mode'; set to nil to disable it.")
-
-(define-minor-mode ggtags-navigation-mode nil
-  ;; If `ggtags-enable-navigation-keys' is set to nil only display the
-  ;; lighter in `ggtags-mode' buffers.
-  ;; See https://github.com/leoliu/ggtags/issues/124
-  :lighter (:eval (and (or ggtags-enable-navigation-keys
-                           ggtags-mode)
-                       ggtags-navigation-mode-lighter))
-  :global t
-  (if ggtags-navigation-mode
-      (progn
-        ;; Higher priority for `ggtags-navigation-mode' to avoid being
-        ;; hijacked by modes such as `view-mode'.
-        (add-to-list 'emulation-mode-map-alists 'ggtags-mode-map-alist)
-        (add-hook 'next-error-hook 'ggtags-global-next-error-function)
-        (add-hook 'minibuffer-setup-hook 'ggtags-minibuffer-setup-function))
-    (setq emulation-mode-map-alists
-          (delq 'ggtags-mode-map-alist emulation-mode-map-alists))
-    (remove-hook 'next-error-hook 'ggtags-global-next-error-function)
-    (remove-hook 'minibuffer-setup-hook 'ggtags-minibuffer-setup-function)))
-
-(defun ggtags-minibuffer-setup-function ()
-  ;; Disable ggtags-navigation-mode in minibuffer.
-  (setq-local ggtags-enable-navigation-keys nil))
-
-(defun ggtags-kill-file-buffers (&optional interactive)
-  "Kill all buffers visiting files in current project."
-  (interactive "p")
-  (ggtags-check-project)
-  (let ((directories (cons (ggtags-current-project-root) (ggtags-get-libpath)))
-        (count 0))
-    (dolist (buf (buffer-list))
-      (let ((file (and (buffer-live-p buf)
-                       (not (eq buf (current-buffer)))
-                       (buffer-file-name buf))))
-        (when (and file (cl-some (lambda (dir)
-                                   ;; Don't use `file-in-directory-p'
-                                   ;; to allow symbolic links.
-                                   (string-prefix-p dir file))
-                                 directories))
-          (and (kill-buffer buf) (cl-incf count)))))
-    (and interactive
-         (message "%d %s killed" count (if (= count 1) "buffer" "buffers")))))
-
-(defun ggtags-after-save-function ()
-  (when (ggtags-find-project)
-    (ggtags-project-update-mtime-maybe)
-    (and buffer-file-name ggtags-update-on-save
-         (ggtags-update-tags-single buffer-file-name 'nowait))))
-
-(defun ggtags-global-output (buffer cmds callback &optional cutoff sync)
-  "Asynchronously pipe the output of running CMDS to BUFFER.
-When finished invoke CALLBACK in BUFFER with process exit status.
-If SYNC is non-nil, synchronously run CMDS and call CALLBACK."
-  (or buffer (error "Output buffer required"))
-  (when (get-buffer-process (get-buffer buffer))
-    ;; Notice running multiple processes in the same buffer so that we
-    ;; can fix the caller. See for example `ggtags-eldoc-function'.
-    (message "Warning: detected %S already running in %S; interrupting..."
-             (get-buffer-process buffer) buffer)
-    (interrupt-process (get-buffer-process buffer)))
-  (let* ((program (car cmds))
-         (args (cdr cmds))
-         (cutoff (and cutoff (+ cutoff (if (get-buffer buffer)
-                                           (with-current-buffer buffer
-                                             (line-number-at-pos (point-max)))
-                                         0))))
-         (proc (apply #'start-file-process program buffer program args))
-         (filter (lambda (proc string)
-                   (and (buffer-live-p (process-buffer proc))
-                        (with-current-buffer (process-buffer proc)
-                          (goto-char (process-mark proc))
-                          (insert string)
-                          (cl-incf (process-get proc :nlines)
-                                   (count-lines (process-mark proc) (point)))
-                          (set-marker (process-mark proc) (point))
-                          (when (and (> (line-number-at-pos (point-max)) cutoff)
-                                     (process-live-p proc))
-                            (interrupt-process (current-buffer)))))))
-         (sentinel (lambda (proc _msg)
-                     (when (memq (process-status proc) '(exit signal))
-                       (with-current-buffer (process-buffer proc)
-                         (set-process-buffer proc nil)
-                         (unwind-protect
-                             (funcall callback (process-exit-status proc))
-                           (process-put proc :callback-done t)))))))
-    (set-process-query-on-exit-flag proc nil)
-    (and cutoff (set-process-filter proc filter))
-    (set-process-sentinel proc sentinel)
-    (process-put proc :callback-done nil)
-    (process-put proc :nlines 0)
-    (if sync (while (not (process-get proc :callback-done))
-               (accept-process-output proc 1))
-      proc)))
-
-(cl-defun ggtags-fontify-code (code &optional (mode major-mode))
-  (cl-check-type mode function)
-  (if (stringp code)
-      (with-temp-buffer
-        (insert code)
-        (funcall mode)
-        (font-lock-ensure)
-        (buffer-string))
-    code))
-
-(defun ggtags-get-definition-default (defs)
-  (and (caar defs)
-       (concat (ggtags-fontify-code (caar defs))
-               (and (cdr defs) " [guess]"))))
-
-(defun ggtags-show-definition (name)
-  (interactive (list (ggtags-read-tag 'definition current-prefix-arg)))
-  (ggtags-check-project)
-  (let* ((re (cadr (assq 'grep ggtags-global-error-regexp-alist-alist)))
-         (current (current-buffer))
-         (buffer (get-buffer-create " *ggtags-definition*"))
-         (args (list "--result=grep" "--path-style=absolute" name))
-         ;; Need these bindings so that let-binding
-         ;; `ggtags-print-definition-function' can work see
-         ;; `ggtags-eldoc-function'.
-         (get-fn ggtags-get-definition-function)
-         (print-fn ggtags-print-definition-function)
-         (show (lambda (_status)
-                 (goto-char (point-min))
-                 (let ((defs (cl-loop while (re-search-forward re nil t)
-                                      collect (list (buffer-substring-no-properties
-                                                     (1+ (match-end 2))
-                                                     (line-end-position))
-                                                    name
-                                                    (match-string 1)
-                                                    (string-to-number (match-string 2))))))
-                   (kill-buffer buffer)
-                   (with-current-buffer current
-                     (funcall print-fn (funcall get-fn defs)))))))
-    (ggtags-with-current-project
-      (ggtags-global-output
-       buffer
-       (cons (ggtags-program-path "global")
-             (if (ggtags-sort-by-nearness-p) (cons "--nearness=." args) args))
-       show 100))))
-
-(defvar ggtags-mode-prefix-map
-  (let ((m (make-sparse-keymap)))
-    ;; Globally bound to `M-g p'.
-    ;; (define-key m "\M-'" 'previous-error)
-    (define-key m (kbd "M-DEL") 'ggtags-delete-tags)
-    (define-key m "\M-p" 'ggtags-prev-mark)
-    (define-key m "\M-n" 'ggtags-next-mark)
-    (define-key m "\M-f" 'ggtags-find-file)
-    (define-key m "\M-o" 'ggtags-find-other-symbol)
-    (define-key m "\M-g" 'ggtags-grep)
-    (define-key m "\M-i" 'ggtags-idutils-query)
-    (define-key m "\M-b" 'ggtags-browse-file-as-hypertext)
-    (define-key m "\M-k" 'ggtags-kill-file-buffers)
-    (define-key m "\M-h" 'ggtags-view-tag-history)
-    (define-key m "\M-j" 'ggtags-visit-project-root)
-    (define-key m "\M-/" 'ggtags-view-search-history)
-    (define-key m (kbd "M-SPC") 'ggtags-save-to-register)
-    (define-key m (kbd "M-%") 'ggtags-query-replace)
-    (define-key m "\M-?" 'ggtags-show-definition)
-    m))
-
-(defvar ggtags-mode-map
-  (let ((map (make-sparse-keymap))
-        (menu (make-sparse-keymap "Ggtags")))
-    (define-key map "\M-." 'ggtags-find-tag-dwim)
-    (define-key map (kbd "M-]") 'ggtags-find-reference)
-    (define-key map (kbd "C-M-.") 'ggtags-find-tag-regexp)
-    (define-key map ggtags-mode-prefix-key ggtags-mode-prefix-map)
-    ;; Menu items
-    (define-key map [menu-bar ggtags] (cons "Ggtags" menu))
-    ;; Ordered backwards
-    (define-key menu [report-bugs]
-      `(menu-item "Report bugs"
-                  (lambda () (interactive)
-                    (browse-url ggtags-bug-url)
-                    (message "Please visit %s" ggtags-bug-url))
-                  :help ,(format "Visit %s" ggtags-bug-url)))
-    (define-key menu [custom-ggtags]
-      '(menu-item "Customize Ggtags"
-                  (lambda () (interactive) (customize-group 'ggtags))))
-    (define-key menu [eldoc-mode]
-      '(menu-item "Toggle eldoc mode" eldoc-mode :button (:toggle . eldoc-mode)))
-    (define-key menu [save-project]
-      '(menu-item "Save project settings" ggtags-save-project-settings))
-    (define-key menu [toggle-read-only]
-      '(menu-item "Toggle project read-only" ggtags-toggle-project-read-only
-                  :button (:toggle . buffer-read-only)))
-    (define-key menu [visit-project-root]
-      '(menu-item "Visit project root" ggtags-visit-project-root))
-    (define-key menu [sep2] menu-bar-separator)
-    (define-key menu [browse-hypertext]
-      '(menu-item "Browse as hypertext" ggtags-browse-file-as-hypertext
-                  :enable (ggtags-find-project)))
-    (define-key menu [delete-tags]
-      '(menu-item "Delete tags" ggtags-delete-tags
-                  :enable (ggtags-find-project)
-                  :help "Delete file GTAGS, GRTAGS, GPATH, ID etc."))
-    (define-key menu [kill-buffers]
-      '(menu-item "Kill project file buffers" ggtags-kill-file-buffers
-                  :enable (ggtags-find-project)))
-    (define-key menu [view-tag]
-      '(menu-item "View tag history" ggtags-view-tag-history))
-    (define-key menu [pop-mark]
-      '(menu-item "Pop mark" xref-pop-marker-stack
-                  :help "Pop to previous mark and destroy it"))
-    (define-key menu [next-mark]
-      '(menu-item "Next mark" ggtags-next-mark))
-    (define-key menu [prev-mark]
-      '(menu-item "Previous mark" ggtags-prev-mark))
-    (define-key menu [sep1] menu-bar-separator)
-    (define-key menu [previous-error]
-      '(menu-item "Previous match" previous-error))
-    (define-key menu [next-error]
-      '(menu-item "Next match" next-error))
-    (define-key menu [rerun-search]
-      '(menu-item "View past searches" ggtags-view-search-history))
-    (define-key menu [save-to-register]
-      '(menu-item "Save search to register" ggtags-save-to-register))
-    (define-key menu [find-file]
-      '(menu-item "Find files" ggtags-find-file))
-    (define-key menu [query-replace]
-      '(menu-item "Query replace" ggtags-query-replace))
-    (define-key menu [idutils]
-      '(menu-item "Query idutils DB" ggtags-idutils-query))
-    (define-key menu [grep]
-      '(menu-item "Grep" ggtags-grep))
-    (define-key menu [find-symbol]
-      '(menu-item "Find other symbol" ggtags-find-other-symbol
-                  :help "Find references without definition"))
-    (define-key menu [find-tag-regexp]
-      '(menu-item "Find tag matching regexp" ggtags-find-tag-regexp))
-    (define-key menu [show-definition]
-      '(menu-item "Show definition" ggtags-show-definition))
-    (define-key menu [find-reference]
-      '(menu-item "Find reference" ggtags-find-reference))
-    ;; TODO: bind `find-tag-continue' to `M-*' after dropping support
-    ;; for emacs < 25.
-    (define-key menu [find-tag-continue]
-      '(menu-item "Continue find tag" tags-loop-continue))
-    (define-key menu [find-tag]
-      '(menu-item "Find tag" ggtags-find-tag-dwim))
-    (define-key menu [update-tags]
-      '(menu-item "Update tag files" ggtags-update-tags
-                  :visible (ggtags-find-project)))
-    (define-key menu [run-gtags]
-      '(menu-item "Run gtags" ggtags-create-tags
-                  :visible (not (ggtags-find-project))))
-    map))
-
-(defvar ggtags-mode-line-project-keymap
-  (let ((map (make-sparse-keymap)))
-    (define-key map [mode-line mouse-1] 'ggtags-visit-project-root)
-    map))
-
-(put 'ggtags-mode-line-project-name 'risky-local-variable t)
-(defvar ggtags-mode-line-project-name
-  '("[" (:eval (let ((name (if (stringp ggtags-project-root)
-                               (file-name-nondirectory
-                                (directory-file-name ggtags-project-root))
-                             "?")))
-                 (propertize
-                  name 'face compilation-info-face
-                  'help-echo (if (stringp ggtags-project-root)
-                                 (concat "mouse-1 to visit " ggtags-project-root)
-                               "mouse-1 to set project")
-                  'mouse-face 'mode-line-highlight
-                  'keymap ggtags-mode-line-project-keymap)))
-    "]")
-  "Mode line construct for displaying current project name.
-The value is the name of the project root directory. Setting it
-to nil disables displaying this information.")
-
-;;;###autoload
-(define-minor-mode ggtags-mode nil
-  :lighter (:eval (if ggtags-navigation-mode "" " GG"))
-  (ggtags-setup-highlight-tag-at-point ggtags-highlight-tag)
-  (if ggtags-mode
-      (progn
-        (add-hook 'after-save-hook 'ggtags-after-save-function nil t)
-        ;; Append to serve as a fallback method.
-        (add-hook 'completion-at-point-functions
-                  #'ggtags-completion-at-point t t)
-        ;; Work around http://debbugs.gnu.org/19324
-        (or eldoc-documentation-function
-            (setq-local eldoc-documentation-function #'ignore))
-        (add-function :after-until (local 'eldoc-documentation-function)
-                      #'ggtags-eldoc-function '((name . ggtags-eldoc-function)
-                                                (depth . -100)))
-        (unless (memq 'ggtags-mode-line-project-name
-                      mode-line-buffer-identification)
-          (setq mode-line-buffer-identification
-                (append mode-line-buffer-identification
-                        '(ggtags-mode-line-project-name)))))
-    (remove-hook 'after-save-hook 'ggtags-after-save-function t)
-    (remove-hook 'completion-at-point-functions #'ggtags-completion-at-point t)
-    (remove-function (local 'eldoc-documentation-function) 'ggtags-eldoc-function)
-    (setq mode-line-buffer-identification
-          (delq 'ggtags-mode-line-project-name mode-line-buffer-identification))
-    (ggtags-cancel-highlight-tag-at-point 'keep-timer)))
-
-(defvar ggtags-highlight-tag-map
-  (let ((map (make-sparse-keymap)))
-    ;; Bind down- events so that the global keymap won't ``shine
-    ;; through''. See `mode-line-buffer-identification-keymap' for
-    ;; similar workaround.
-    (define-key map [S-mouse-1] 'ggtags-find-tag-dwim)
-    (define-key map [S-down-mouse-1] 'ignore)
-    (define-key map [S-mouse-3] 'ggtags-find-reference)
-    (define-key map [S-down-mouse-3] 'ignore)
-    map)
-  "Keymap used for valid tag at point.")
-
-(put 'ggtags-active-tag 'face 'ggtags-highlight)
-(put 'ggtags-active-tag 'keymap ggtags-highlight-tag-map)
-;; (put 'ggtags-active-tag 'mouse-face 'match)
-(put 'ggtags-active-tag 'help-echo
-     "S-mouse-1 for definitions\nS-mouse-3 for references")
-
-(defun ggtags-setup-highlight-tag-at-point (flag)
-  (cond ((null flag) (ggtags-cancel-highlight-tag-at-point))
-        ((not (timerp ggtags-highlight-tag-timer))
-         (setq ggtags-highlight-tag-timer
-               (run-with-idle-timer flag t #'ggtags-highlight-tag-at-point)))
-        (t (timer-set-idle-time ggtags-highlight-tag-timer flag t))))
-
-(defun ggtags-cancel-highlight-tag-at-point (&optional keep-timer)
-  (when (and (not keep-timer)
-             (timerp ggtags-highlight-tag-timer))
-    (cancel-timer ggtags-highlight-tag-timer)
-    (setq ggtags-highlight-tag-timer nil))
-  (when ggtags-highlight-tag-overlay
-    (delete-overlay ggtags-highlight-tag-overlay)
-    (setq ggtags-highlight-tag-overlay nil)))
-
-(defun ggtags-highlight-tag-at-point ()
-  (when (and ggtags-mode ggtags-project-root (ggtags-find-project))
-    (unless (overlayp ggtags-highlight-tag-overlay)
-      (setq ggtags-highlight-tag-overlay (make-overlay (point) (point) nil t))
-      (overlay-put ggtags-highlight-tag-overlay 'modification-hooks
-                   (list (lambda (o after &rest _args)
-                           (and (not after) (delete-overlay o))))))
-    (let ((bounds (funcall ggtags-bounds-of-tag-function))
-          (o ggtags-highlight-tag-overlay))
-      (cond
-       ((and bounds
-             (eq (overlay-buffer o) (current-buffer))
-             (= (overlay-start o) (car bounds))
-             (= (overlay-end o) (cdr bounds)))
-        ;; Overlay matches current tag so do nothing.
-        nil)
-       ((and bounds (let ((completion-ignore-case nil))
-                      (test-completion
-                       (buffer-substring-no-properties
-                        (car bounds) (cdr bounds))
-                       ggtags-completion-table)))
-        (move-overlay o (car bounds) (cdr bounds) (current-buffer))
-        (overlay-put o 'category 'ggtags-active-tag))
-       (t (move-overlay o
-                        (or (car bounds) (point))
-                        (or (cdr bounds) (point))
-                        (current-buffer))
-          (overlay-put o 'category nil))))))
-
-;;; eldoc
-
-(defvar-local ggtags-eldoc-cache nil)
-
-(declare-function eldoc-message "eldoc")
-(defun ggtags-eldoc-function ()
-  "A function suitable for `eldoc-documentation-function' (which see)."
-  (pcase (ggtags-tag-at-point)
-    (`nil nil)
-    (tag (if (equal tag (car ggtags-eldoc-cache))
-             (cadr ggtags-eldoc-cache)
-           (and ggtags-project-root (ggtags-find-project)
-                (let* ((ggtags-print-definition-function
-                        (lambda (s)
-                          (setq ggtags-eldoc-cache (list tag s))
-                          (eldoc-message s))))
-                  ;; Prevent multiple runs of ggtags-show-definition
-                  ;; for the same tag.
-                  (setq ggtags-eldoc-cache (list tag))
-                  (condition-case err
-                      (ggtags-show-definition tag)
-                    (file-error
-                     (remove-function (local 'eldoc-documentation-function)
-                                      'ggtags-eldoc-function)
-                     (message "\
-Function `ggtags-eldoc-function' disabled for eldoc in current buffer: %S" err)))
-                  nil))))))
-
-;;; imenu
-
-(defun ggtags-goto-imenu-index (name line &rest _args)
-  (ggtags-forward-to-line line)
-  (ggtags-move-to-tag name))
-
-;;;###autoload
-(defun ggtags-build-imenu-index ()
-  "A function suitable for `imenu-create-index-function'."
-  (let ((file (and buffer-file-name (file-relative-name buffer-file-name))))
-    (and file (with-temp-buffer
-                (when (with-demoted-errors "ggtags-build-imenu-index: %S"
-                        (zerop (ggtags-with-current-project
-                                 (process-file (ggtags-program-path "global")
-                                               nil t nil "-x" "-f" file))))
-                  (goto-char (point-min))
-                  (cl-loop while (re-search-forward
-                                  "^\\([^ \t]+\\)[ \t]+\\([0-9]+\\)" nil t)
-                           collect (list (match-string 1)
-                                         (string-to-number (match-string 2))
-                                         'ggtags-goto-imenu-index)))))))
-
-;;; hippie-expand
-
-;;;###autoload
-(defun ggtags-try-complete-tag (old)
-  "A function suitable for `hippie-expand-try-functions-list'."
-  (eval-and-compile (require 'hippie-exp))
-  (unless old
-    (he-init-string (or (car (funcall ggtags-bounds-of-tag-function)) (point))
-                    (point))
-    (setq he-expand-list
-          (and (not (equal he-search-string ""))
-               (ggtags-find-project)
-               (sort (all-completions he-search-string
-                                      ggtags-completion-table)
-                     #'string-lessp))))
-  (if (null he-expand-list)
-      (progn
-        (if old (he-reset-string))
-        nil)
-    (he-substitute-string (car he-expand-list))
-    (setq he-expand-list (cdr he-expand-list))
-    t))
-
-(defun ggtags-reload (&optional force)
-  (interactive "P")
-  (unload-feature 'ggtags force)
-  (require 'ggtags))
-
-(provide 'ggtags)
-;;; ggtags.el ends here
diff --git a/elpa/ggtags-20181031.1803/ggtags.elc b/elpa/ggtags-20181031.1803/ggtags.elc
deleted file mode 100644
index 6c8626b..0000000
--- a/elpa/ggtags-20181031.1803/ggtags.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/ghub-20181112.1755/buck.el b/elpa/ghub-20181112.1755/buck.el
deleted file mode 100644
index 141ea90..0000000
--- a/elpa/ghub-20181112.1755/buck.el
+++ /dev/null
@@ -1,128 +0,0 @@
-;;; buck.el --- minuscule client library for the Bitbucket API  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2016-2018  Jonas Bernoulli
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Homepage: https://github.com/magit/ghub
-;; Keywords: tools
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; For a copy of the GPL see https://www.gnu.org/licenses/gpl.txt.
-
-;;; Commentary:
-
-;; Buck is a library that provides basic support for using the Bitbucket API
-;; from Emacs packages.  It abstracts access to API resources using only
-;; a handful of functions that are not resource-specific.
-
-;; This library is implemented on top of Ghub.  Unlike Ghub, Buck does
-;; not support the guided creation of tokens because Bitbucket lacks the
-;; features that would be necessary to implement that.  Users have to
-;; create tokens through the web interface.
-
-;;; Code:
-
-(require 'ghub)
-
-(defconst buck-default-host "api.bitbucket.org/2.0"
-  "The default host that is used if `buck.host' is not set.")
-
-;; HEAD and PATCH are not supported according to
-;; https://developer.atlassian.com/bitbucket/api/2/reference/meta/uri-uuid
-
-(cl-defun buck-get (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `GET' request for RESOURCE, with optional query PARAMS.
-Like calling `ghub-request' (which see) with \"GET\" as METHOD
-and `bitbucket' as FORGE."
-  (ghub-request "GET" resource params :forge 'bitbucket
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun buck-put (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `PUT' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PUT\" as METHOD
-and `bitbucket' as FORGE."
-  (ghub-request "PUT" resource params :forge 'bitbucket
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun buck-post (resource &optional params
-                              &key query payload headers
-                              silent unpaginate noerror reader
-                              username auth host
-                              callback errorback extra)
-  "Make a `POST' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"POST\" as METHOD
-and `bitbucket' as FORGE."
-  (ghub-request "POST" resource params :forge 'bitbucket
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun buck-delete (resource &optional params
-                                &key query payload headers
-                                silent unpaginate noerror reader
-                                username auth host
-                                callback errorback extra)
-  "Make a `DELETE' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"DELETE\" as METHOD
-and `bitbucket' as FORGE."
-  (ghub-request "DELETE" resource params :forge 'bitbucket
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun buck-request (method resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host
-                               callback errorback extra)
-  "Make a request for RESOURCE and return the response body.
-Like calling `ghub-request' (which see) with `bitbucket' as FORGE."
-  (ghub-request method resource params :forge 'bitbucket
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun buck-repository-id (owner name &key username auth host)
-  "Return the id of the repository specified by OWNER, NAME and HOST."
-  (substring (cdr (assq 'uuid
-                        (buck-get (format "/repositories/%s/%s" owner name)
-                                  nil
-                                  :username username :auth auth :host host)))
-             1 -1))
-
-;;; _
-(provide 'buck)
-;;; buck.el ends here
diff --git a/elpa/ghub-20181112.1755/buck.elc b/elpa/ghub-20181112.1755/buck.elc
deleted file mode 100644
index 3a8be4a..0000000
--- a/elpa/ghub-20181112.1755/buck.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/ghub-20181112.1755/dir b/elpa/ghub-20181112.1755/dir
deleted file mode 100644
index 8392fa0..0000000
--- a/elpa/ghub-20181112.1755/dir
+++ /dev/null
@@ -1,18 +0,0 @@
-This is the file .../info/dir, which contains the
-topmost node of the Info hierarchy, called (dir)Top.
-The first time you invoke Info you start off looking at this node.
-
-File: dir,	Node: Top	This is the top of the INFO tree
-
-  This (the Directory node) gives a menu of major topics.
-  Typing "q" exits, "H" lists all Info commands, "d" returns here,
-  "h" gives a primer for first-timers,
-  "mEmacs<Return>" visits the Emacs manual, etc.
-
-  In Emacs, you can click mouse button 2 on a menu item or cross reference
-  to select it.
-
-* Menu:
-
-Emacs
-* Ghub: (ghub).                 Minuscule client library for the Github API.
diff --git a/elpa/ghub-20181112.1755/ghub-autoloads.el b/elpa/ghub-20181112.1755/ghub-autoloads.el
deleted file mode 100644
index 2785cba..0000000
--- a/elpa/ghub-20181112.1755/ghub-autoloads.el
+++ /dev/null
@@ -1,90 +0,0 @@
-;;; ghub-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "buck" "buck.el" (0 0 0 0))
-;;; Generated autoloads from buck.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "buck" '("buck-default-host")))
-
-;;;***
-
-;;;### (autoloads nil "ghub" "ghub.el" (0 0 0 0))
-;;; Generated autoloads from ghub.el
-
-(autoload 'ghub-create-token "ghub" "\
-Create, store and return a new token.
-
-HOST is the Github instance, usually \"api.github.com\".
-USERNAME is the name of a user on that instance.
-PACKAGE is the package that will use the token.
-SCOPES are the scopes the token is given access to.
-
-\(fn HOST USERNAME PACKAGE SCOPES)" t nil)
-
-(autoload 'ghub-token-scopes "ghub" "\
-Return and echo the scopes of the specified token.
-This is intended for debugging purposes only.  The user
-has to provide several values including their password.
-
-\(fn HOST USERNAME PACKAGE)" t nil)
-
-(autoload 'ghub-clear-caches "ghub" "\
-Clear all caches that might negatively affect Ghub.
-
-If a library that is used by Ghub caches incorrect information
-such as a mistyped password, then that can prevent Ghub from
-asking the user for the correct information again.
-
-Set `url-http-real-basic-auth-storage' to nil
-and call `auth-source-forget+'.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ghub" '("auth-source-netrc-parse-next-interesting@save-match-data" "ghub-")))
-
-;;;***
-
-;;;### (autoloads nil "ghub-graphql" "ghub-graphql.el" (0 0 0 0))
-;;; Generated autoloads from ghub-graphql.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ghub-graphql" '("ghub-")))
-
-;;;***
-
-;;;### (autoloads nil "glab" "glab.el" (0 0 0 0))
-;;; Generated autoloads from glab.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "glab" '("glab-default-host")))
-
-;;;***
-
-;;;### (autoloads nil "gogs" "gogs.el" (0 0 0 0))
-;;; Generated autoloads from gogs.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gogs" '("gogs-default-host")))
-
-;;;***
-
-;;;### (autoloads nil "gtea" "gtea.el" (0 0 0 0))
-;;; Generated autoloads from gtea.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "gtea" '("gtea-default-host")))
-
-;;;***
-
-;;;### (autoloads nil nil ("ghub-pkg.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; ghub-autoloads.el ends here
diff --git a/elpa/ghub-20181112.1755/ghub-graphql.el b/elpa/ghub-20181112.1755/ghub-graphql.el
deleted file mode 100644
index 0f907cb..0000000
--- a/elpa/ghub-20181112.1755/ghub-graphql.el
+++ /dev/null
@@ -1,442 +0,0 @@
-;;; ghub-graphql.el --- access Github API using GrapthQL  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2016-2018  Jonas Bernoulli
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Homepage: https://github.com/magit/ghub
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; For a copy of the GPL see https://www.gnu.org/licenses/gpl.txt.
-
-;;; Code:
-
-(require 'dash)
-(require 'ghub)
-(require 'graphql)
-(require 'treepy)
-
-(eval-when-compile
-  (require 'subr-x))
-
-;;; Api
-
-(cl-defun ghub-graphql (graphql &optional variables
-                                &key username auth host
-                                silent
-                                callback errorback value extra)
-  "Make a GraphQL request using GRAPHQL and VARIABLES.
-Return the response as a JSON-like alist.  Even if the response
-contains `errors', do not raise an error.  GRAPHQL is a GraphQL
-string.  VARIABLES is a JSON-like alist.  The other arguments
-behave as for `ghub-request' (which see)."
-  (cl-assert (stringp graphql))
-  (cl-assert (not (stringp variables)))
-  (ghub-request "POST" "/graphql" nil :payload
-                (json-encode `(("query" . ,graphql)
-                               ,@(and variables `(("variables" ,@variables)))))
-                :silent silent
-                :username username :auth auth :host host
-                :callback callback :errorback errorback
-                :extra extra :value value))
-
-(cl-defun ghub-graphql-rate-limit (&key username auth host)
-  "Return rate limit information."
-  (let-alist (ghub-graphql
-              "query { rateLimit { limit cost remaining resetAt }}"
-              nil :username username :auth auth :host host)
-    .data.rateLimit))
-
-(cl-defun ghub--repository-id (owner name &key username auth host)
-  "Return the id of the repository specified by OWNER, NAME and HOST."
-  (let-alist (ghub-graphql
-              "query ($owner:String!, $name:String!) {
-                 repository(owner:$owner, name:$name) { id }
-               }"
-              `((owner . ,owner)
-                (name  . ,name))
-              :username username :auth auth :host host)
-    .data.repository.id))
-
-;;; Api (drafts)
-
-(defconst ghub-fetch-repository
-  '(query
-    (repository
-     [(owner $owner String!)
-      (name  $name  String!)]
-     name
-     id
-     createdAt
-     updatedAt
-     nameWithOwner
-     description
-     (defaultBranchRef name)
-     isArchived
-     isFork
-     isLocked
-     isMirror
-     isPrivate
-     hasIssuesEnabled
-     hasWikiEnabled
-     (licenseInfo name)
-     (stargazers totalCount)
-     (watchers totalCount)
-     (assignableUsers [(:edges t)]
-                      id
-                      login
-                      name)
-     (issues         [(:edges t)
-                      (:singular issue number)
-                      (orderBy ((field . UPDATED_AT) (direction . DESC)))]
-                     number
-                     state
-                     (author login)
-                     title
-                     createdAt
-                     updatedAt
-                     closedAt
-                     locked
-                     (milestone id)
-                     body
-                     (assignees [(:edges t)]
-                                id)
-                     (comments  [(:edges t)]
-                                databaseId
-                                (author login)
-	                        createdAt
-	                        updatedAt
-                                body)
-                     (labels    [(:edges t)]
-                                id))
-     (labels         [(:edges t)
-                      (:singular label id)]
-                     id
-                     name
-                     color
-                     description)
-     (pullRequests   [(:edges t)
-                      (:singular pullRequest number)
-                      (orderBy ((field . UPDATED_AT) (direction . DESC)))]
-                     number
-                     state
-                     (author login)
-                     title
-                     createdAt
-                     updatedAt
-                     closedAt
-                     mergedAt
-                     locked
-                     maintainerCanModify
-                     isCrossRepository
-                     (milestone id)
-                     body
-                     (baseRef name
-                              (repository nameWithOwner))
-                     (headRef name
-                              (repository (owner login)
-                                          nameWithOwner))
-                     (assignees [(:edges t)]
-                                id)
-                     (comments  [(:edges t)]
-                                databaseId
-                                (author login)
-                                createdAt
-	                        updatedAt
-	                        body)
-                     (labels    [(:edges t)]
-                                id)))))
-
-(cl-defun ghub-fetch-repository (owner name callback
-                                       &optional until
-                                       &key username auth host forge)
-  "Asynchronously fetch forge data about the specified repository.
-Once all data has been collected, CALLBACK is called with the
-data as the only argument."
-  (ghub--graphql-vacuum ghub-fetch-repository
-                        `((owner . ,owner)
-                          (name  . ,name))
-                        callback until
-                        :narrow   '(repository)
-                        :username username
-                        :auth     auth
-                        :host     host
-                        :forge    forge))
-
-(cl-defun ghub-fetch-issue (owner name number callback
-                                  &optional until
-                                  &key username auth host forge)
-  "Asynchronously fetch forge data about the specified issue.
-Once all data has been collected, CALLBACK is called with the
-data as the only argument."
-  (ghub--graphql-vacuum (ghub--graphql-prepare-query
-                         ghub-fetch-repository
-                         `(repository issues (issue . ,number)))
-                        `((owner . ,owner)
-                          (name  . ,name))
-                        callback until
-                        :narrow   '(repository issue)
-                        :username username
-                        :auth     auth
-                        :host     host
-                        :forge    forge))
-
-(cl-defun ghub-fetch-pullreq (owner name number callback
-                                    &optional until
-                                    &key username auth host forge)
-  "Asynchronously fetch forge data about the specified pull-request.
-Once all data has been collected, CALLBACK is called with the
-data as the only argument."
-  (ghub--graphql-vacuum (ghub--graphql-prepare-query
-                         ghub-fetch-repository
-                         `(repository pullRequests (pullRequest . ,number)))
-                        `((owner . ,owner)
-                          (name  . ,name))
-                        callback until
-                        :narrow   '(repository pullRequest)
-                        :username username
-                        :auth     auth
-                        :host     host
-                        :forge    forge))
-
-;;; Internal
-
-(cl-defstruct (ghub--graphql-req
-               (:include ghub--req)
-               (:constructor ghub--make-graphql-req)
-               (:copier nil))
-  (query     nil :read-only t)
-  (variables nil :read-only t)
-  (until     nil :read-only t)
-  (pages     0   :read-only nil))
-
-(cl-defun ghub--graphql-vacuum (query variables callback
-                                      &optional until
-                                      &key narrow username auth host forge)
-  "Make a GraphQL request using QUERY and VARIABLES.
-See Info node `(ghub)GraphQL Support'."
-  (unless host
-    (setq host (ghub--host forge)))
-  (unless (or username (stringp auth) (eq auth 'none))
-    (setq username (ghub--username host forge)))
-  (ghub--graphql-retrieve
-   (ghub--make-graphql-req
-    :url       (url-generic-parse-url (concat "https://" host "/graphql"))
-    :method    "POST"
-    :headers   (ghub--headers nil host auth username forge)
-    :handler   'ghub--graphql-handle-response
-    :query     query
-    :variables variables
-    :until     until
-    :callback  (if narrow
-                   (lambda (data)
-                     (let ((path narrow) key)
-                       (while (setq key (pop path))
-                         (setq data (cdr (assq key data)))))
-                     (funcall callback data))
-                 callback))))
-
-(cl-defun ghub--graphql-retrieve (req &optional lineage cursor)
-  (let ((p (cl-incf (ghub--graphql-req-pages req))))
-    (when (> p 1)
-      (message "Fetching page %s..." p)))
-  (ghub--retrieve
-   (let ((json-false nil))
-     (ghub--encode-payload
-      `((query     . ,(ghub--graphql-encode
-                       (ghub--graphql-prepare-query
-                        (ghub--graphql-req-query req)
-                        lineage cursor)))
-        (variables . ,(ghub--graphql-req-variables req)))))
-   req))
-
-(defun ghub--graphql-prepare-query (query &optional lineage cursor)
-  (when lineage
-    (setq query (ghub--graphql-narrow-query query lineage cursor)))
-  (let ((loc (ghub--alist-zip query))
-        variables)
-    (cl-block nil
-      (while t
-        (let ((node (treepy-node loc)))
-          (when (vectorp node)
-            (let ((alist (cl-coerce node 'list))
-                  vars)
-              (when (assq :edges alist)
-                (push (list 'first 100) vars)
-                (setq loc  (treepy-up loc))
-                (setq node (treepy-node loc))
-                (setq loc  (treepy-replace
-                            loc `(,(car  node)
-                                  ,(cadr node)
-                                  (pageInfo endCursor hasNextPage)
-                                  (edges (node ,@(cddr node))))))
-                (setq loc  (treepy-down loc))
-                (setq loc  (treepy-next loc)))
-              (dolist (elt alist)
-                (cond ((keywordp (car elt)))
-                      ((= (length elt) 3)
-                       (push (list (nth 0 elt)
-                                   (nth 1 elt)) vars)
-                       (push (list (nth 1 elt)
-                                   (nth 2 elt)) variables))
-                      ((= (length elt) 2)
-                       (push elt vars))))
-              (setq loc (treepy-replace loc (cl-coerce vars 'vector))))))
-        (if (treepy-end-p loc)
-            (let ((node (copy-sequence (treepy-node loc))))
-              (when variables
-                (push (cl-coerce variables 'vector)
-                      (cdr node)))
-              (cl-return node))
-          (setq loc (treepy-next loc)))))))
-
-(defun ghub--graphql-handle-response (status req)
-  (let ((buffer (current-buffer)))
-    (unwind-protect
-        (progn
-          (set-buffer-multibyte t)
-          (let* ((headers (ghub--handle-response-headers status req))
-                 (payload (ghub--handle-response-payload req))
-                 (payload (ghub--handle-response-error status payload req))
-                 (err     (plist-get status :error))
-                 (errors  (cdr (assq 'errors payload)))
-                 (errors  (and errors
-                               (cons 'ghub-graphql-error errors)))
-                 (data    (assq 'data payload))
-                 (value   (ghub--req-value req)))
-            (setf (ghub--req-value req) value)
-            (if (or err errors)
-                (if-let ((errorback (ghub--req-errorback req)))
-                    (funcall errorback (or err errors) headers status req)
-                  (ghub--signal-error (or err errors)))
-              (ghub--graphql-walk-response value data req))))
-      (when (buffer-live-p buffer)
-        (kill-buffer buffer)))))
-
-(defun ghub--graphql-walk-response (loc data req)
-  (if (not loc)
-      (setf (ghub--req-value req)
-            (setq loc (ghub--alist-zip data)))
-    (setq data (ghub--graphql-narrow-data data (ghub--graphql-lineage loc)))
-    (setf (alist-get 'edges data)
-          (append (alist-get 'edges (treepy-node loc))
-                  (or (alist-get 'edges data)
-                      (error "BUG: Expected new nodes"))))
-    (setq loc (treepy-replace loc data)))
-  (cl-block nil
-    (while t
-      (when (eq (car-safe (treepy-node loc)) 'edges)
-        (setq loc (treepy-up loc))
-        (pcase-let ((`(,key . ,val) (treepy-node loc)))
-          (let-alist val
-            (let* ((cursor (and .pageInfo.hasNextPage
-                                .pageInfo.endCursor))
-                   (until (cdr (assq (intern (format "%s-until" key))
-                                     (ghub--graphql-req-until req))))
-                   (nodes (mapcar #'cdar .edges))
-                   (nodes (if until
-                              (--take-while
-                               (or (string> (cdr (assq 'updatedAt it)) until)
-                                   (setq cursor nil))
-                               nodes)
-                            nodes)))
-              (if cursor
-                  (progn
-                    (setf (ghub--req-value req) loc)
-                    (ghub--graphql-retrieve req
-                                            (ghub--graphql-lineage loc)
-                                            cursor)
-                    (cl-return))
-                (setq loc (treepy-replace loc (cons key nodes))))))))
-      (if (not (treepy-end-p loc))
-          (setq loc (treepy-next loc))
-        (funcall (ghub--req-callback req)
-                 (treepy-root loc))
-        (cl-return)))))
-
-(defun ghub--graphql-lineage (loc)
-  (let (lineage)
-    (while (treepy-up loc)
-      (push (car (treepy-node loc)) lineage)
-      (setq loc (treepy-up loc)))
-    lineage))
-
-(defun ghub--graphql-narrow-data (data lineage)
-  (let (key)
-    (while (setq key (pop lineage))
-      (if (consp (car lineage))
-          (progn (pop lineage)
-                 (setf data (cadr data)))
-        (setq data (assq key (cdr data))))))
-  data)
-
-(defun ghub--graphql-narrow-query (query lineage cursor)
-  (if (consp (car lineage))
-      (let* ((child  (cddr query))
-             (alist  (cl-coerce (cadr query) 'list))
-             (single (cdr (assq :singular alist))))
-        `(,(car single)
-          ,(vector (list (cadr single) (cdr (car lineage))))
-          ,@(if (cdr lineage)
-               (ghub--graphql-narrow-query child (cdr lineage) cursor)
-             child)))
-    (let* ((child  (or (assq (car lineage) (cdr query))
-                       (cl-find-if (lambda (c)
-                                     (and (listp c)
-                                          (vectorp (cadr c))
-                                          (eq (cadr (assq :singular
-                                                          (cl-coerce (cadr c)
-                                                                     'list)))
-                                              (car lineage))))
-                                   (cdr query))))
-           (object (car query))
-           (args   (and (vectorp (cadr query))
-                        (cadr query))))
-      `(,object
-        ,@(and args (list args))
-        ,(cond ((cdr lineage)
-                (ghub--graphql-narrow-query child (cdr lineage) cursor))
-               (cursor
-                `(,(car child)
-                  ,(vconcat `((after ,cursor))
-                            (cadr child))
-                  ,@(cddr child)))
-               (t
-                child))))))
-
-(defun ghub--graphql-encode (g)
-  (if (symbolp g)
-      (symbol-name g)
-    (let* ((object (car g))
-           (args   (and (vectorp (cadr g))
-                        (cl-coerce (cadr g) 'list)))
-           (fields (if args (cddr g) (cdr g))))
-       (concat
-        (graphql--encode-object object)
-        (and args
-             (format " (\n%s)"
-                     (mapconcat (pcase-lambda (`(,key ,val))
-                                  (graphql--encode-argument key val))
-                                args ",\n")))
-        (and fields
-             (format " {\n%s\n}"
-                     (mapconcat #'ghub--graphql-encode fields "\n")))))))
-
-(defun ghub--alist-zip (root)
-  (let ((branchp (lambda (elt) (and (listp elt) (listp (cdr elt)))))
-        (make-node (lambda (_ children) children)))
-    (treepy-zipper branchp #'identity make-node root)))
-
-;;; _
-(provide 'ghub-graphql)
-;;; ghub-graphql.el ends here
diff --git a/elpa/ghub-20181112.1755/ghub-graphql.elc b/elpa/ghub-20181112.1755/ghub-graphql.elc
deleted file mode 100644
index b01c129..0000000
--- a/elpa/ghub-20181112.1755/ghub-graphql.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/ghub-20181112.1755/ghub-pkg.el b/elpa/ghub-20181112.1755/ghub-pkg.el
deleted file mode 100644
index 17fdf06..0000000
--- a/elpa/ghub-20181112.1755/ghub-pkg.el
+++ /dev/null
@@ -1,9 +0,0 @@
-(define-package "ghub" "20181112.1755" "Minuscule client libraries for Git forge APIs."
-  '((emacs "25.1")
-    (dash "2.14.1")
-    (graphql "0.1.1")
-    (let-alist "1.0.5")
-    (treepy "1.0.0")))
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/ghub-20181112.1755/ghub.el b/elpa/ghub-20181112.1755/ghub.el
deleted file mode 100644
index fb27147..0000000
--- a/elpa/ghub-20181112.1755/ghub.el
+++ /dev/null
@@ -1,952 +0,0 @@
-;;; ghub.el --- minuscule client libraries for Git forge APIs  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2016-2018  Jonas Bernoulli
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Homepage: https://github.com/magit/ghub
-;; Keywords: tools
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; For a copy of the GPL see https://www.gnu.org/licenses/gpl.txt.
-
-;;; Commentary:
-
-;; Ghub provides basic support for using the APIs of various Git forges
-;; from Emacs packages.  Originally it only supported the Github REST
-;; API, but now it also supports the Github GraphQL API as well as the
-;; REST APIs of Gitlab, Gitea, Gogs and Bitbucket.
-
-;; Ghub abstracts access to API resources using only a handful of basic
-;; functions such as `ghub-get'.  These are convenience wrappers around
-;; `ghub-request'.  Additional forge-specific wrappers like `glab-put',
-;; `gtea-put', `gogs-post' and `buck-delete' are also available.  Ghub
-;; does not provide any resource-specific functions, with the exception
-;; of `FORGE-repository-id'.
-
-;; When accessing Github, then Ghub handles the creation and storage of
-;; access tokens using a setup wizard to make it easier for users to get
-;; started.  The tokens for other forges have to be created manually.
-
-;; Ghub is intentionally limited to only provide these two essential
-;; features — basic request functions and guided setup — to avoid being
-;; too opinionated, which would hinder wide adoption.  It is assumed that
-;; wide adoption would make life easier for users and maintainers alike,
-;; because then all packages that talk to forge APIs could be configured
-;; the same way.
-
-;; Please consult the manual (info "ghub") for more information.
-
-;;; Code:
-
-(require 'auth-source)
-(require 'cl-lib)
-(require 'json)
-(require 'let-alist)
-(require 'url)
-(require 'url-auth)
-(require 'url-http)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(defvar url-callback-arguments)
-(defvar url-http-end-of-headers)
-(defvar url-http-extra-headers)
-(defvar url-http-response-status)
-
-;;; Settings
-
-(defconst ghub-default-host "api.github.com"
-  "The default host that is used if `ghub.host' is not set.")
-
-(defvar ghub-github-token-scopes '(repo)
-  "The Github API scopes that your private tools need.
-
-The token that is created based on the value of this variable
-is used when `ghub-request' (or one of its wrappers) is called
-without providing a value for AUTH.  Packages should always
-identify themselves using that argument, but when you use Ghub
-directly in private tools, then that is not necessary and the
-request is made on behalf of the `ghub' package itself, aka on
-behalf of some private tool.
-
-By default the only requested scope is `repo' because that is
-sufficient as well as required for most common uses.  This and
-other scopes are documented at URL `https://magit.vc/goto/2e586d36'.
-
-If your private tools need other scopes, then you have to add
-them here *before* creating the token.  Alternatively you can
-edit the scopes of an existing token using the web interface
-at URL `https://github.com/settings/tokens'.")
-
-(defvar ghub-override-system-name nil
-  "If non-nil, the string used to identify the local machine.
-If this is nil, then the value returned by `system-name' is
-used instead.")
-
-;;; Request
-;;;; Object
-
-(cl-defstruct (ghub--req
-               (:constructor ghub--make-req)
-               (:copier nil))
-  (url        nil :read-only nil)
-  (forge      nil :read-only t)
-  (silent     nil :read-only t)
-  (method     nil :read-only t)
-  (headers    nil :read-only t)
-  (handler    nil :read-only t)
-  (unpaginate nil :read-only nil)
-  (noerror    nil :read-only t)
-  (reader     nil :read-only t)
-  (callback   nil :read-only t)
-  (errorback  nil :read-only t)
-  (value      nil :read-only nil)
-  (extra      nil :read-only nil))
-
-(defalias 'ghub-req-extra 'ghub--req-extra)
-
-;;;; API
-
-(define-error 'ghub-error "Ghub/Url Error" 'error)
-(define-error 'ghub-http-error "HTTP Error" 'ghub-error)
-
-(defvar ghub-response-headers nil
-  "The headers returned in response to the last request.
-`ghub-request' returns the response body and stores the
-response headers in this variable.")
-
-(cl-defun ghub-head (resource &optional params
-                              &key query payload headers
-                              silent unpaginate noerror reader
-                              username auth host
-                              callback errorback extra)
-  "Make a `HEAD' request for RESOURCE, with optional query PARAMS.
-Like calling `ghub-request' (which see) with \"HEAD\" as METHOD."
-  (ghub-request "HEAD" resource params
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun ghub-get (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `GET' request for RESOURCE, with optional query PARAMS.
-Like calling `ghub-request' (which see) with \"GET\" as METHOD."
-  (ghub-request "GET" resource params
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun ghub-put (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `PUT' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PUT\" as METHOD."
-  (ghub-request "PUT" resource params
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun ghub-post (resource &optional params
-                              &key query payload headers
-                              silent unpaginate noerror reader
-                              username auth host
-                              callback errorback extra)
-  "Make a `POST' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"POST\" as METHOD."
-  (ghub-request "POST" resource params
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun ghub-patch (resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host
-                               callback errorback extra)
-  "Make a `PATCH' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PATCH\" as METHOD."
-  (ghub-request "PATCH" resource params
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun ghub-delete (resource &optional params
-                                &key query payload headers
-                                silent unpaginate noerror reader
-                                username auth host
-                                callback errorback extra)
-  "Make a `DELETE' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"DELETE\" as METHOD."
-  (ghub-request "DELETE" resource params
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun ghub-request (method resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host forge
-                               callback errorback value extra)
-  "Make a request for RESOURCE and return the response body.
-
-Also place the response header in `ghub-response-headers'.
-
-METHOD is the HTTP method, given as a string.
-RESOURCE is the resource to access, given as a string beginning
-  with a slash.
-
-PARAMS, QUERY, PAYLOAD and HEADERS are alists used to specify
-  data.  The Github API documentation is vague on how data has
-  to be transmitted and for a particular resource usually just
-  talks about \"parameters\".  Generally speaking when the METHOD
-  is \"HEAD\" or \"GET\", then they have to be transmitted as a
-  query, otherwise as a payload.
-Use PARAMS to automatically transmit like QUERY or PAYLOAD would
-  depending on METHOD.
-Use QUERY to explicitly transmit data as a query.
-Use PAYLOAD to explicitly transmit data as a payload.
-  Instead of an alist, PAYLOAD may also be a string, in which
-  case it gets encoded as UTF-8 but is otherwise transmitted as-is.
-Use HEADERS for those rare resources that require that the data
-  is transmitted as headers instead of as a query or payload.
-  When that is the case, then the API documentation usually
-  mentions it explicitly.
-
-If SILENT is non-nil, then don't message progress reports and
-  the like.
-
-If UNPAGINATE is t, then make as many requests as necessary to
-  get all values.  If UNPAGINATE is a natural number, then get
-  at most that many pages.  For any other non-nil value raise
-  an error.
-If NOERROR is non-nil, then do not raise an error if the request
-  fails and return nil instead.  If NOERROR is `return', then
-  return the error payload instead of nil.
-If READER is non-nil, then it is used to read and return from the
-  response buffer.  The default is `ghub--read-json-payload'.
-  For the very few resources that do not return JSON, you might
-  want to use `ghub--decode-payload'.
-
-If USERNAME is non-nil, then make a request on behalf of that
-  user.  It is better to specify the user using the Git variable
-  `github.user' for \"api.github.com\", or `github.HOST.user' if
-  connecting to a Github Enterprise instance.
-
-Each package that uses `ghub' should use its own token. If AUTH
-  is nil, then the generic `ghub' token is used instead.  This
-  is only acceptable for personal utilities.  A packages that
-  is distributed to other users should always use this argument
-  to identify itself, using a symbol matching its name.
-
-  Package authors who find this inconvenient should write a
-  wrapper around this function and possibly for the
-  method-specific functions as well.
-
-  Some symbols have a special meaning.  `none' means to make an
-  unauthorized request.  `basic' means to make a password based
-  request.  If the value is a string, then it is assumed to be
-  a valid token.  `basic' and an explicit token string are only
-  intended for internal and debugging uses.
-
-  If AUTH is a package symbol, then the scopes are specified
-  using the variable `AUTH-github-token-scopes'.  It is an error
-  if that is not specified.  See `ghub-github-token-scopes' for
-  an example.
-
-If HOST is non-nil, then connect to that Github instance.  This
-  defaults to \"api.github.com\".  When a repository is connected
-  to a Github Enterprise instance, then it is better to specify
-  that using the Git variable `github.host' instead of using this
-  argument.
-
-If FORGE is `gitlab', then connect to Gitlab.com or, depending
-  on HOST, to another Gitlab instance.  This is only intended for
-  internal use.  Instead of using this argument you should use
-  function `glab-request' and other `glab-*' functions.
-
-If CALLBACK and/or ERRORBACK is non-nil, then make one or more
-  asynchronous requests and call CALLBACK or ERRORBACK when
-  finished.  If an error occurred, then call ERRORBACK, or if
-  that is nil, then CALLBACK.  When no error occurred then call
-  CALLBACK.  When making asynchronous requests, then no errors
-  are signaled, regardless of the value of NOERROR.
-
-Both callbacks are called with four arguments.
-  1. For CALLBACK, the combined value of the retrieved pages.
-     For ERRORBACK, the error that occured when retrieving the
-     last page.
-  2. The headers of the last page as an alist.
-  3. Status information provided by `url-retrieve'. Its `:error'
-     property holds the same information as ERRORBACK's first
-     argument.
-  4. A `ghub--req' struct, which can be passed to `ghub-continue'
-     (which see) to retrieve the next page, if any."
-  (cl-assert (or (booleanp unpaginate) (natnump unpaginate)))
-  (unless (string-prefix-p "/" resource)
-    (setq resource (concat "/" resource)))
-  (unless host
-    (setq host (ghub--host forge)))
-  (unless (or username (stringp auth) (eq auth 'none))
-    (setq username (ghub--username host forge)))
-  (cond ((not params))
-        ((member method '("GET" "HEAD"))
-         (when query
-           (error "PARAMS and QUERY are mutually exclusive for METHOD %S"
-                  method))
-         (setq query params))
-        (t
-         (when payload
-           (error "PARAMS and PAYLOAD are mutually exclusive for METHOD %S"
-                  method))
-         (setq payload params)))
-  (when (or callback errorback)
-    (setq noerror t))
-  (ghub--retrieve
-   (ghub--encode-payload payload)
-   (ghub--make-req
-    :url (url-generic-parse-url
-          (concat "https://" host resource
-                  (and query (concat "?" (ghub--url-encode-params query)))))
-    :forge forge
-    :silent silent
-    ;; Encode in case caller used (symbol-name 'GET). #35
-    :method     (encode-coding-string method 'utf-8)
-    :headers    (ghub--headers headers host auth username forge)
-    :handler    'ghub--handle-response
-    :unpaginate unpaginate
-    :noerror    noerror
-    :reader     reader
-    :callback   callback
-    :errorback  errorback
-    :value      value
-    :extra      extra)))
-
-(defun ghub-continue (req)
-  "If there is a next page, then retrieve that.
-
-This function is only intended to be called from callbacks.  If
-there is a next page, then retrieve that and return the buffer
-that the result will be loaded into, or t if the process has
-already completed.  If there is no next page, then return nil.
-
-Callbacks are called with four arguments (see `ghub-request').
-The forth argument is a `ghub--req' struct, intended to be passed
-to this function.  A callback may use the struct's `extra' slot
-to pass additional information to the callback that will be
-called after the next request has finished.  Use the function
-`ghub-req-extra' to get and set the value of this slot."
-  (and (assq 'next (ghub-response-link-relations req))
-       (or (ghub--retrieve nil req) t)))
-
-(cl-defun ghub-wait (resource &optional duration &key username auth host)
-  "Busy-wait up to DURATION seconds for RESOURCE to become available.
-
-DURATION specifies how many seconds to wait at most.  It defaults
-to 64 seconds.  The first attempt is made immediately, the second
-after two seconds, and each subsequent attempt is made after
-waiting as long again as we already waited between all preceding
-attempts combined.
-
-See `ghub-request' for information about the other arguments."
-  (unless duration
-    (setq duration 64))
-  (with-local-quit
-    (let ((total 0))
-      (while (not (ghub-get resource nil
-                            :noerror t
-                            :username username
-                            :auth auth
-                            :host host))
-        (message "Waited (%3ss of %ss) for %s..." total duration resource)
-        (if (= total duration)
-            (error "Github is taking too long to create %s" resource)
-          (if (> total 0)
-              (let ((wait (min total (- duration total))))
-                (sit-for wait)
-                (cl-incf total wait))
-            (sit-for (setq total 2))))))))
-
-(defun ghub-response-link-relations (req &optional headers payload)
-  "Return an alist of link relations in HEADERS.
-If optional HEADERS is nil, then return those that were
-previously stored in the variable `ghub-response-headers'.
-
-When accessing a Bitbucket instance then the link relations
-are in PAYLOAD instead of HEADERS, making their API merely
-RESTish and forcing this function to append those relations
-to the value of `ghub-response-headers', for later use when
-this function is called with nil for PAYLOAD."
-  (if (eq (ghub--req-forge req) 'bitbucket)
-      (if payload
-          (let* ((page (cl-mapcan (lambda (key)
-                                    (when-let ((elt (assq key payload)))
-                                      (list elt)))
-                                  '(size page pagelen next previous)))
-                 (headers (cons (cons 'link-alist page) headers)))
-            (if (and req (or (ghub--req-callback req)
-                             (ghub--req-errorback req)))
-                (setq-local ghub-response-headers headers)
-              (setq-default ghub-response-headers headers))
-            page)
-        (cdr (assq 'link-alist ghub-response-headers)))
-  (when-let ((rels (cdr (assoc "Link" (or headers ghub-response-headers)))))
-    (mapcar (lambda (elt)
-              (pcase-let ((`(,url ,rel) (split-string elt "; ")))
-                (cons (intern (substring rel 5 -1))
-                      (substring url 1 -1))))
-            (split-string rels ", ")))))
-
-(cl-defun ghub-repository-id (owner name &key username auth host forge)
-  "Return the id of the specified repository."
-  (let ((fn (intern (format "%s-repository-id" (or forge 'ghub)))))
-    (funcall (if (eq fn 'ghub-repository-id) 'ghub--repository-id fn)
-             owner name :username username :auth auth :host host)))
-
-;;;; Internal
-
-(cl-defun ghub--retrieve (payload req)
-  (let ((url-request-extra-headers
-         (let ((headers (ghub--req-headers req)))
-           (if (functionp headers) (funcall headers) headers)))
-        (url-request-method (ghub--req-method req))
-        (url-request-data payload)
-        (url-show-status nil)
-        (url     (ghub--req-url req))
-        (handler (ghub--req-handler req))
-        (silent  (ghub--req-silent req)))
-    (if (or (ghub--req-callback  req)
-            (ghub--req-errorback req))
-        (url-retrieve url handler (list req) silent)
-      ;; When this function has already been called, then it is a
-      ;; no-op.  Otherwise it sets `url-registered-auth-schemes' among
-      ;; other things.  If we didn't ensure that it has been run, then
-      ;; `url-retrieve-synchronously' would do it, which would cause
-      ;; the value that we let-bind below to be overwritten, and the
-      ;; "default" value to be lost outside the let-binding.
-      (url-do-setup)
-      (with-current-buffer
-          (let ((url-registered-auth-schemes
-                 '(("basic" ghub--basic-auth-errorback . 10))))
-            (url-retrieve-synchronously url silent))
-        (funcall handler (car url-callback-arguments) req)))))
-
-(defun ghub--handle-response (status req)
-  (let ((buffer (current-buffer)))
-    (unwind-protect
-        (progn
-          (set-buffer-multibyte t)
-          (let* ((unpaginate (ghub--req-unpaginate req))
-                 (headers    (ghub--handle-response-headers status req))
-                 (payload    (ghub--handle-response-payload req))
-                 (payload    (ghub--handle-response-error status payload req))
-                 (value      (ghub--handle-response-value payload req))
-                 (next       (cdr (assq 'next (ghub-response-link-relations
-                                               req headers payload)))))
-            (when (numberp unpaginate)
-              (cl-decf unpaginate))
-            (setf (ghub--req-url req)
-                  (url-generic-parse-url next))
-            (setf (ghub--req-unpaginate req) unpaginate)
-            (or (and next
-                     unpaginate
-                     (or (eq unpaginate t)
-                         (>  unpaginate 0))
-                     (ghub-continue req))
-                (let ((callback  (ghub--req-callback req))
-                      (errorback (ghub--req-errorback req))
-                      (err       (plist-get status :error)))
-                  (cond ((and err errorback)
-                         (funcall errorback err headers status req))
-                        (callback
-                         (funcall callback value headers status req))
-                        (t value))))))
-      (when (buffer-live-p buffer)
-        (kill-buffer buffer)))))
-
-(defun ghub--handle-response-headers (status req)
-  (goto-char (point-min))
-  (forward-line 1)
-  (let (headers)
-    (while (re-search-forward "^\\([^:]*\\): \\(.+\\)"
-                              url-http-end-of-headers t)
-      (push (cons (match-string 1)
-                  (match-string 2))
-            headers))
-    (setq headers (nreverse headers))
-    (unless url-http-end-of-headers
-      (error "BUG: missing headers %s" (plist-get status :error)))
-    (goto-char (1+ url-http-end-of-headers))
-    (if (and req (or (ghub--req-callback req)
-                     (ghub--req-errorback req)))
-        (setq-local ghub-response-headers headers)
-      (setq-default ghub-response-headers headers))
-    headers))
-
-(defun ghub--handle-response-error (status payload req)
-  (let ((noerror (ghub--req-noerror req))
-        (err (plist-get status :error)))
-    (if err
-        (if noerror
-            (if (eq noerror 'return)
-                payload
-              (setcdr (last err) (list payload))
-              nil)
-          (ghub--signal-error err payload))
-      payload)))
-
-(defun ghub--signal-error (err &optional payload)
-  (pcase-let ((`(,symb . ,data) err))
-    (if (eq symb 'error)
-        (if (eq (car-safe data) 'http)
-            (signal 'ghub-http-error
-                    (let ((code (car (cdr-safe data))))
-                      (list code
-                            (nth 2 (assq code url-http-codes))
-                            payload)))
-          (signal 'ghub-error data))
-      (signal symb data))))
-
-(defun ghub--handle-response-value (payload req)
-  (setf (ghub--req-value req)
-        (nconc (ghub--req-value req)
-               (if-let ((nested (and (eq (ghub--req-forge req) 'bitbucket)
-                                     (assq 'values payload))))
-                   (cdr nested)
-                 payload))))
-
-(defun ghub--handle-response-payload (req)
-  (funcall (or (ghub--req-reader req)
-               'ghub--read-json-payload)
-           url-http-response-status))
-
-(defun ghub--read-json-payload (_status)
-  (let ((raw (ghub--decode-payload)))
-    (and raw
-         (condition-case nil
-             (let ((json-object-type 'alist)
-                   (json-array-type  'list)
-                   (json-key-type    'symbol)
-                   (json-false       nil)
-                   (json-null        nil))
-               (json-read-from-string raw))
-           (json-readtable-error
-            `((message
-               . ,(if (looking-at "<!DOCTYPE html>")
-                      (if (re-search-forward
-                           "<p>\\(?:<strong>\\)?\\([^<]+\\)" nil t)
-                          (match-string 1)
-                        "error description missing")
-                    (string-trim (buffer-substring (point) (point-max)))))
-              (documentation_url
-               . "https://github.com/magit/ghub/wiki/Github-Errors")))))))
-
-(defun ghub--decode-payload (&optional _status)
-  (and (not (eobp))
-       (decode-coding-string
-        (buffer-substring-no-properties (point) (point-max))
-        'utf-8)))
-
-(defun ghub--encode-payload (payload)
-  (and payload
-       (progn
-         (unless (stringp payload)
-           (setq payload (json-encode-list payload)))
-         (encode-coding-string payload 'utf-8))))
-
-(defun ghub--url-encode-params (params)
-  (mapconcat (lambda (param)
-               (pcase-let ((`(,key . ,val) param))
-                 (concat (url-hexify-string (symbol-name key)) "="
-                         (if (integerp val)
-                             (number-to-string val)
-                           (url-hexify-string val)))))
-             params "&"))
-
-;;; Authentication
-;;;; API
-
-;;;###autoload
-(defun ghub-create-token (host username package scopes)
-  "Create, store and return a new token.
-
-HOST is the Github instance, usually \"api.github.com\".
-USERNAME is the name of a user on that instance.
-PACKAGE is the package that will use the token.
-SCOPES are the scopes the token is given access to."
-  (interactive
-   (pcase-let ((`(,host ,username ,package)
-                (ghub--read-triplet)))
-     (list host username package
-           (split-string
-            (read-string
-             "Scopes (separated by commas): "
-             (mapconcat #'symbol-name
-                        (symbol-value
-                         (intern (format "%s-github-token-scopes" package)))
-                        ","))
-            "," t "[\s\t]+"))))
-  (let ((user (ghub--ident username package)))
-    (cl-destructuring-bind (save token)
-        (ghub--auth-source-get (list :save-function :secret)
-          :create t :host host :user user
-          :secret
-          (cdr (assq 'token
-                     (ghub-post
-                      "/authorizations"
-                      `((scopes . ,scopes)
-                        (note   . ,(ghub--ident-github package)))
-                      :username username :auth 'basic :host host))))
-      ;; Build-in back-ends return a function that does the actual
-      ;; saving, while for some third-party back-ends ":create t"
-      ;; is enough.
-      (when (functionp save)
-        (funcall save))
-      ;; If the Auth-Source cache contains the information that there
-      ;; is no value, then setting the value does not invalidate that
-      ;; now incorrect information.
-      (auth-source-forget (list :host host :user user))
-      token)))
-
-;;;###autoload
-(defun ghub-token-scopes (host username package)
-  "Return and echo the scopes of the specified token.
-This is intended for debugging purposes only.  The user
-has to provide several values including their password."
-  (interactive (ghub--read-triplet))
-  (let ((scopes
-         (cdr (assq 'scopes (ghub--get-token-plist host username package)))))
-    (when (called-interactively-p 'any)
-      ;; Also show the input values to make it easy for package
-      ;; authors to verify that the user has done it correctly.
-      (message "Scopes for %s@%s: %S"
-               (ghub--ident username package)
-               host scopes))
-    scopes))
-
-;;;###autoload
-(defun ghub-clear-caches ()
-  "Clear all caches that might negatively affect Ghub.
-
-If a library that is used by Ghub caches incorrect information
-such as a mistyped password, then that can prevent Ghub from
-asking the user for the correct information again.
-
-Set `url-http-real-basic-auth-storage' to nil
-and call `auth-source-forget+'."
-  (interactive)
-  (setq url-http-real-basic-auth-storage nil)
-  (auth-source-forget+))
-
-;;;; Internal
-
-(defun ghub--headers (headers host auth username forge)
-  (push (cons "Content-Type" "application/json") headers)
-  (if (eq auth 'none)
-      headers
-    (unless (or username (stringp auth))
-      (setq username (ghub--username host forge)))
-    (lambda ()
-      (if (eq auth 'basic)
-          (cons (cons "Authorization" (ghub--basic-auth host username))
-                headers)
-        (cons (ghub--auth host auth username forge) headers)))))
-
-(defun ghub--auth (host auth &optional username forge)
-  (unless username
-    (setq username (ghub--username host)))
-  (if (eq auth 'basic)
-      (cl-ecase forge
-        ((nil github gitea gogs bitbucket)
-         (cons "Authorization" (ghub--basic-auth host username)))
-        (gitlab
-         (error "Gitlab does not support basic authentication")))
-    (cons (cl-ecase forge
-            ((nil github gitea gogs bitbucket)
-             "Authorization")
-            (gitlab
-             "Private-Token"))
-          (concat
-           (and (not (eq forge 'gitlab)) "token ")
-           (encode-coding-string
-            (cl-typecase auth
-              (string auth)
-              (null   (ghub--token host username 'ghub nil forge))
-              (symbol (ghub--token host username auth  nil forge))
-              (t (signal 'wrong-type-argument
-                         `((or stringp symbolp) ,auth))))
-            'utf-8)))))
-
-(defun ghub--basic-auth (host username)
-  (let ((url (url-generic-parse-url (concat "https://" host))))
-    (setf (url-user url) username)
-    (url-basic-auth url t)))
-
-(defun ghub--basic-auth-errorback (url &optional prompt _overwrite _realm _args)
-  ;; This gets called twice.  Do nothing the first time,
-  ;; when PROMPT is nil.  See `url-get-authentication'.
-  (when prompt
-    (if (assoc "X-GitHub-OTP" (ghub--handle-response-headers nil nil))
-        (progn
-          (setq url-http-extra-headers
-                `(("Content-Type" . "application/json")
-                  ("X-GitHub-OTP" . ,(ghub--read-2fa-code))
-                  ;; Without "Content-Type" and "Authorization".
-                  ;; The latter gets re-added from the return value.
-                  ,@(cddr url-http-extra-headers)))
-          ;; Return the cached values, they are correct.
-          (url-basic-auth url nil nil nil))
-      ;; Remove the invalid cached values and fail, which
-      ;; is better than the invalid values sticking around.
-      (setq url-http-real-basic-auth-storage
-            (cl-delete (format "%s:%d" (url-host url) (url-port url))
-                       url-http-real-basic-auth-storage
-                       :test #'equal :key #'car))
-      nil)))
-
-(defun ghub--token (host username package &optional nocreate forge)
-  (let* ((user (ghub--ident username package))
-         (token
-          (or (car (ghub--auth-source-get (list :secret)
-                     :host host :user user))
-              (progn
-                ;; Auth-Source caches the information that there is no
-                ;; value, but in our case that is a situation that needs
-                ;; fixing so we want to keep trying by invalidating that
-                ;; information.
-                ;; The (:max 1) is needed and has to be placed at the
-                ;; end for Emacs releases before 26.1.  See #24, #64.
-                (auth-source-forget (list :host host :user user :max 1))
-                (and (not nocreate)
-                     (cl-ecase forge
-                       ((nil github)
-                        (ghub--confirm-create-token host username package))
-                       ((gitlab gitea gogs bitbucket)
-                        (error "Required %s token (%S for %S) does not exist.
-See https://magit.vc/manual/ghub/Support-for-Other-Forges.html for instructions."
-                               (capitalize (symbol-name forge))
-                               user host))))))))
-    (if (functionp token) (funcall token) token)))
-
-(defun ghub--host (&optional forge)
-  (cl-ecase forge
-    ((nil github)
-     (or (ignore-errors (car (process-lines "git" "config" "github.host")))
-         ghub-default-host))
-    (gitlab
-     (or (ignore-errors (car (process-lines "git" "config" "gitlab.host")))
-         (bound-and-true-p glab-default-host)))
-    (gitea
-     (or (ignore-errors (car (process-lines "git" "config" "gitea.host")))
-         (bound-and-true-p gtea-default-host)))
-    (gogs
-     (or (ignore-errors (car (process-lines "git" "config" "gogs.host")))
-         (bound-and-true-p gogs-default-host)))
-    (bitbucket
-     (or (ignore-errors (car (process-lines "git" "config" "bitbucket.host")))
-         (bound-and-true-p buck-default-host)))))
-
-(defun ghub--username (host &optional forge)
-  (let ((var
-         (cl-ecase forge
-           ((nil github)
-            (if (equal host ghub-default-host)
-                "github.user"
-              (format "github.%s.user" host)))
-           (gitlab
-            (if (equal host "gitlab.com/api/v4")
-                "gitlab.user"
-              (format "gitlab.%s.user" host)))
-           (bitbucket
-            (if (equal host "api.bitbucket.org/2.0")
-                "bitbucket.user"
-              (format "bitbucket.%s.user" host)))
-           (gitea
-            (when (zerop (call-process "git" nil nil nil "config" "gitea.host"))
-              (error "gitea.host is set but always ignored"))
-            (format "gitea.%s.user" host))
-           (gogs
-            (when (zerop (call-process "git" nil nil nil "config" "gogs.host"))
-              (error "gogs.host is set but always ignored"))
-            (format "gogs.%s.user"  host)))))
-    (condition-case nil
-        (car (process-lines "git" "config" var))
-      (error
-       (let ((user (read-string
-                    (format "Git variable `%s' is unset.  Set to: " var))))
-         (or (and user (progn (call-process "git" nil nil nil
-                                            "config" "--global" var user)
-                              user))
-             (user-error "Abort")))))))
-
-(defun ghub--ident (username package)
-  (format "%s^%s" username package))
-
-(defun ghub--ident-github (package)
-  (format "Emacs package %s @ %s"
-          package
-          (or ghub-override-system-name (system-name))))
-
-(defun ghub--package-scopes (package)
-  (let ((var (intern (format "%s-github-token-scopes" package))))
-    (if (boundp var)
-        (symbol-value var)
-      (error "%s fails to define %s" package var))))
-
-(defun ghub--confirm-create-token (host username package)
-  (let* ((ident (ghub--ident-github package))
-         (scopes (ghub--package-scopes package))
-         (max-mini-window-height 40))
-    (if (let ((message-log-max nil))
-          (yes-or-no-p
-           (format
-            "Such a Github API token is not available:
-
-  Host:    %s
-  User:    %s
-  Package: %s
-
-  Scopes requested in `%s-github-token-scopes':\n%s
-  Store on Github as:\n    %S
-  Store locally according to option `auth-sources':\n    %S
-%s
-If in doubt, then abort and first view the section of
-the Ghub documentation called \"Interactively Creating
-and Storing a Token\".
-
-Otherwise confirm and then provide your Github username and
-password at the next two prompts.  Depending on the backend
-you might have to provide a passphrase and confirm that you
-really want to save the token.
-
-Create and store such a token? "
-            host username package package
-            (mapconcat (lambda (scope) (format "    %s" scope)) scopes "\n")
-            ident auth-sources
-            (if (and (stringp (car auth-sources))
-                     (not (string-suffix-p ".gpg" (car auth-sources))))
-                (format "
-WARNING: The token will be stored unencrypted in %S.
-         If you don't want that, you have to abort and customize
-         the `auth-sources' option.\n" (car auth-sources))
-              ""))))
-        (condition-case ghub--create-token-error
-            ;; Naively attempt to create the token since the user told us to
-            (ghub-create-token host username package scopes)
-          ;; The API _may_ respond with the fact that a token of the name
-          ;; we wanted already exists. At this point we're out of luck. We
-          ;; don't have a token (otherwise why would we be here?) and, if
-          ;; the user is using SMS 2FA, we have no way of telling GitHub
-          ;; to send a new 2FA code to the user other than sending a POST
-          ;; to /authorizations which is ugly.
-          ;;
-          ;; If they are not using SMS 2FA then we could try to delete the
-          ;; existing token (which will require them to hand us another
-          ;; OTP for the delete request) and then call create again,
-          ;; possibly requiring _another_ OTP if they don't do things fast
-          ;; enough, but this is only because non-SMS 2FA doesn't require
-          ;; any action on GitHub's part.
-          ;;
-          ;; GitHub does hand us a header that indicates what type of 2FA
-          ;; is in use, but it's not currently available in this location
-          ;; and would make the following code which is already quite
-          ;; complicated even more complicated. So in the interest of
-          ;; simplicity it's better to error out here and ask the user to
-          ;; take action. This situation should almost never arise anyway.
-          (ghub-http-error
-           (if (string-equal (let-alist (nth 3 ghub--create-token-error)
-                               (car .errors.code))
-                             "already_exists")
-               (error "\
-A token named %S already exists on Github. \
-Please visit https://github.com/settings/tokens and delete it." ident))))
-      (user-error "Abort"))))
-
-(defun ghub--get-token-id (host username package)
-  (let ((ident (ghub--ident-github package)))
-    (cl-some (lambda (x)
-               (let-alist x
-                 (and (equal .app.name ident) .id)))
-             (ghub-get "/authorizations"
-                       '((per_page . 100))
-                       :unpaginate t
-                       :username username :auth 'basic :host host))))
-
-(defun ghub--get-token-plist (host username package)
-  (ghub-get (format "/authorizations/%s"
-                    (ghub--get-token-id host username package))
-            nil :username username :auth 'basic :host host))
-
-(defun ghub--delete-token (host username package)
-  (ghub-delete (format "/authorizations/%s"
-                       (ghub--get-token-id host username package))
-               nil :username username :auth 'basic :host host))
-
-(defun ghub--read-triplet ()
-  (let ((host (read-string "Host: " (ghub--host))))
-    (list host
-          (read-string "Username: " (ghub--username host))
-          (intern (read-string "Package: " "ghub")))))
-
-(defvar ghub--2fa-cache nil)
-
-(defun ghub--read-2fa-code ()
-  (let ((code (read-number "Two-factor authentication code: "
-                           (and ghub--2fa-cache
-                                (< (float-time (time-subtract
-                                                (current-time)
-                                                (cdr ghub--2fa-cache)))
-                                   25)
-                                (car ghub--2fa-cache)))))
-    (setq ghub--2fa-cache (cons code (current-time)))
-    (number-to-string code)))
-
-(defun ghub--auth-source-get (keys &rest spec)
-  (declare (indent 1))
-  (let ((plist (car (apply #'auth-source-search
-                           (append spec (list :max 1))))))
-    (mapcar (lambda (k)
-              (plist-get plist k))
-            keys)))
-
-(advice-add 'auth-source-netrc-parse-next-interesting :around
-            'auth-source-netrc-parse-next-interesting@save-match-data)
-(defun auth-source-netrc-parse-next-interesting@save-match-data (fn)
-  "Save match-data for the benefit of caller `auth-source-netrc-parse-one'.
-Without wrapping this function in `save-match-data' the caller
-won't see the secret from a line that is followed by a commented
-line."
-  (save-match-data (funcall fn)))
-
-;;; _
-(provide 'ghub)
-(require 'ghub-graphql)
-;;; ghub.el ends here
diff --git a/elpa/ghub-20181112.1755/ghub.elc b/elpa/ghub-20181112.1755/ghub.elc
deleted file mode 100644
index 9fabe59..0000000
--- a/elpa/ghub-20181112.1755/ghub.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/ghub-20181112.1755/ghub.info b/elpa/ghub-20181112.1755/ghub.info
deleted file mode 100644
index bc69c66..0000000
--- a/elpa/ghub-20181112.1755/ghub.info
+++ /dev/null
@@ -1,1312 +0,0 @@
-This is ghub.info, produced by makeinfo version 6.5 from ghub.texi.
-
-     Copyright (C) 2017-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-INFO-DIR-SECTION Emacs
-START-INFO-DIR-ENTRY
-* Ghub: (ghub).         Minuscule client library for the Github API.
-END-INFO-DIR-ENTRY
-
-
-File: ghub.info,  Node: Top,  Next: Introduction,  Up: (dir)
-
-Ghub User and Developer Manual
-******************************
-
-Ghub provides basic support for using the APIs of various Git forges
-from Emacs packages.  Originally it only supported the Github REST API,
-but now it also supports the Github GraphQL API as well as the REST APIs
-of Gitlab, Gitea, Gogs and Bitbucket.
-
-   Ghub abstracts access to API resources using only a handful of basic
-functions such as ‘ghub-get‘.  These are convenience wrappers around
-‘ghub-request‘.  Additional forge-specific wrappers like ‘glab-put‘,
-‘gtea-put‘, ‘gogs-post‘ and ‘buck-delete‘ are also available.  Ghub does
-not provide any resource-specific functions, with the exception of
-‘FORGE-repository-id‘.
-
-   When accessing Github, then Ghub handles the creation and storage of
-access tokens using a setup wizard to make it easier for users to get
-started.  The tokens for other forges have to be created manually.
-
-   Ghub is intentionally limited to only provide these two essential
-features — basic request functions and guided setup — to avoid being too
-opinionated, which would hinder wide adoption.  It is assumed that wide
-adoption would make life easier for users and maintainers alike, because
-then all packages that talk to forge APIs could be configured the same
-way.
-
-This manual is for Ghub version 3.0.0 (v3.0.0-5-g86a17df+1).
-
-     Copyright (C) 2017-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-* Menu:
-
-* Introduction::
-* Getting Started::
-* Using Ghub in Personal Scripts::
-* Using Ghub in a Package::
-* API::
-* GraphQL Support::
-* Support for Other Forges::
-
-— The Detailed Node Listing —
-
-Getting Started
-
-* Setting the Username::
-* Interactively Creating and Storing a Token::
-* Manually Creating and Storing a Token::
-* How Ghub uses Auth-Source::
-
-API
-
-* Making Requests::
-* Authentication::
-* Configuration Variables::
-
-Support for Other Forges
-
-* Forge Functions and Variables::
-* Forge Limitations and Notes::
-
-
-
-File: ghub.info,  Node: Introduction,  Next: Getting Started,  Prev: Top,  Up: Top
-
-1 Introduction
-**************
-
-Ghub provides basic support for using the APIs of various Git forges
-from Emacs packages.  Originally it only supported the Github REST API,
-but now it also supports the Github GraphQL API as well as the REST APIs
-of Gitlab, Gitea, Gogs and Bitbucket.
-
-   Ghub abstracts access to API resources using only a handful of basic
-functions such as ‘ghub-get‘.  These are convenience wrappers around
-‘ghub-request‘.  Additional forge-specific wrappers like ‘glab-put‘,
-‘gtea-put‘, ‘gogs-post‘ and ‘buck-delete‘ are also available.  Ghub does
-not provide any resource-specific functions, with the exception of
-‘FORGE-repository-id‘.
-
-   When accessing Github, then Ghub handles the creation and storage of
-access tokens using a setup wizard to make it easier for users to get
-started.  The tokens for other forges have to be created manually.
-
-   Ghub is intentionally limited to only provide these two essential
-features — basic request functions and guided setup — to avoid being too
-opinionated, which would hinder wide adoption.  It is assumed that wide
-adoption would make life easier for users and maintainers alike, because
-then all packages that talk to forge APIs could be configured the same
-way.
-
-   Fancier interfaces can be implemented on top of Ghub, and one such
-wrapper — named simply Ghub+ — has already been implemented.  The
-benefit of basing various opinionated interfaces on top of a single
-library that provides only the core functionality is that choosing the
-programming interface no longer dictates how access tokens are handled.
-Users can then use multiple packages that access the Github API without
-having to learn the various incompatible ways packages expect the
-appropriate token to be made available to them.
-
-   Ghub uses the built-in ‘auth-source’ library to store access tokens.
-That library is very flexible and supports multiple backends, which
-means that it is up to the user how secrets are stored.  They can, among
-other things, choose between storing secrets in plain text for ease of
-use, or encrypted for better security.
-
-   Previously (as in until this library is widely adopted) it was up to
-package authors to decide if things should be easy or secure.  (Note
-that ‘auth-source’ defaults to "easy" — you have been warned.)
-
-   Ghub expects package authors to use a dedicated access token instead
-of sharing a single token between all packages that rely on it.  That
-means that users cannot configure Ghub once and later start using a new
-package without any additional setup.  But Ghub helps with that.
-
-   When the user invokes some command that ultimately results in
-‘ghub-request’ being called and the appropriate token is not available
-yet, then the user is guided through the process of creating and storing
-a new token, and at the end of that process the request is carried out
-as if the token had been available to begin with.
-
-
-File: ghub.info,  Node: Getting Started,  Next: Using Ghub in Personal Scripts,  Prev: Introduction,  Up: Top
-
-2 Getting Started
-*****************
-
-Each package that uses Ghub uses its own token.  Despite that, chances
-are good that after successfully configuring one package you can just
-start using another package pretty much instantly.
-
-   If the necessary token to access a Github instance is not available
-when a package makes an API request, then a setup wizard pops up, and
-after answering a few questions you are good to go.  Even the request
-that caused the wizard to be summoned should succeed and for most users
-this should be true even when configuring the very first token.
-
-   However, in some situations some manual configuration is necessary
-*before* using the wizard, or the wizard cannot be used at all:
-
-   • If you don’t want to use the wizard then you don’t have to and can
-     create tokens manually as described in *note Manually Creating and
-     Storing a Token::.
-
-   • Unfortunately only Github supports the creation of tokens by using
-     the API.  If you want to access another forge, then you have to
-     create the token manually as describe in *note Manually Creating
-     and Storing a Token::.  Also see *note Support for Other Forges::.
-
-   • If you want to access a Github Enterprise instance, then you have
-     to tell Ghub about that before the wizard makes its appearance by
-     setting the Git variable ‘github.host’.  You also have to tell Ghub
-     your username for that instance using the variable
-     ‘github.HOST.user’ even if it is the same as on Github.com.
-
-     These variables are documented in *note Configuration Variables::.
-     Also see *note Setting the Username::.  TL;DR: If your Github
-     Enterprise instance is hosted at ‘git.example.com’ and your
-     username on that instance is ‘jtribbiani’, then set ‘github.host’
-     to ‘git.example.com/api/v3’ in every repository cloned from that
-     instance (i.e.  _do not_ set it globally) and _globally_ set
-     ‘github.git.example.com/api/v3.user’ to ‘jtribbiani’.  The latter
-     is necessary even if your username on Github.com is the same.
-
-   • If the variable ‘github.user’ (or ‘github.HOST.user’ for an
-     Enterprise instance) is unset when the wizard is first summoned,
-     then you are asked to provide your username.  That value is then
-     stored *globally* to avoid having to ask you that question once per
-     repository.  If you have multiple accounts on Github.com (or a
-     Github Enterprise instance), then you have to explicitly tell Ghub
-     about that.  This can be done by setting the repository-local
-     values of the appropriate variable *before* the wizard is invoked.
-
-   • You might forget to do the above, which is why it is important to
-     carefully read the output of the wizard.  If it turns out that you
-     forgot to set a variable, then you must abort, set the variable,
-     and repeat the request to trigger the wizard again.
-
-   • The setup wizard should work even if you have enabled two-factor
-     authentication.  However if your Github Enterprise instance
-     enforces Single Sign-On as an additional security measure, then you
-     are out of luck and have to create the token manually as described
-     in *note Manually Creating and Storing a Token::.
-
-   The variables mentioned above — and others — are documented in *note
-Configuration Variables:: and the setup wizard is documented in *note
-Interactively Creating and Storing a Token::.
-
-* Menu:
-
-* Setting the Username::
-* Interactively Creating and Storing a Token::
-* Manually Creating and Storing a Token::
-* How Ghub uses Auth-Source::
-
-
-File: ghub.info,  Node: Setting the Username,  Next: Interactively Creating and Storing a Token,  Up: Getting Started
-
-2.1 Setting the Username
-========================
-
-If you haven’t set the Git variable ‘github.user’ yet when making a
-request, then you will be asked:
-
-     Git variable `github.user' is unset.  Set to:
-
-   You are expected to provide your Github username here.  The provided
-value will be saved globally (using ‘git config --global github.user
-USERNAME’).
-
-   If you need to identify as another user in a particular repository,
-then you have to set that variable locally, *before* making a request:
-
-     cd /path/to/repo
-     git config github.user USERNAME
-
-   For Github Enterprise instances you have to specify where the API can
-be accessed *before* you try to access it and a different variable has
-to be used to set the username.  For example if the API is available at
-‘https://example.com/api/v3’, then you should do this:
-
-     # Do this once
-     git config --global github.example.com/api/v3.user EMPLOYEE
-
-     # Do this for every corporate repository
-     cd /path/to/repo
-     git config github.host example.com/api/v3
-
-   If you do not set ‘github.example.com/api/v3.user’, then you will be
-asked to provide the value when trying to make a request, but you do
-have to manually set ‘github.host’, or Ghub assumes that you are trying
-to access ‘api.github.com’.
-
-
-File: ghub.info,  Node: Interactively Creating and Storing a Token,  Next: Manually Creating and Storing a Token,  Prev: Setting the Username,  Up: Getting Started
-
-2.2 Interactively Creating and Storing a Token
-==============================================
-
-Ghub uses a different token for every package as well as for every
-machine from which you access the Github API (and obviously also for
-every Github instance and user).  This allows packages to only request
-the scopes that they actually need and also gives users the opportunity
-to refuse access to certain scopes if they expect to not use the
-features that need them.
-
-   Usually you don’t have to worry about creating and storing a token
-yourself and can just make a request.  Note however that you don’t have
-to use the setup wizard described below.  Alternatively you can perform
-the setup manually as described in the next section.
-
-   If you make a request and the required token is not available yet,
-then the setup wizard will first ask you something like this:
-
-     Such a Github API token is not available:
-
-       Host:    api.github.com
-       User:    USERNAME
-       Package: PACKAGE
-
-       Scopes requested in `PACKAGE-github-token-scopes':
-         repo
-       Store on Github as:
-         "Emacs package PACKAGE @ LOCAL-MACHINE"
-       Store locally according to option `auth-sources':
-         ("~/.authinfo" "~/.authinfo.gpg" "~/.netrc")
-
-     If in doubt, then abort and first view the section of
-     the Ghub documentation called "Interactively Creating
-     and Storing a Token".
-
-     Create and store such a token? (yes or no)
-
-   If you don’t have any doubts, then answer "yes".  Lets address some
-of the doubts that you might have:
-
-   • ‘Host’ usually is "api.github.com" and that is usually what you
-     want.  If you are trying to access a Github Enterprise instance,
-     then it should be something else and you have to set the value
-     manually before the setup wizard is summoned, as described in the
-     parent section.
-
-   • ‘User’ should be your Github.com (or Github Enterprise instance)
-     username.  If it is something else and it doesn’t look like a
-     simple typo, then you should read the parent section again.  In
-     either case you have to abort.
-
-   • ‘Package’ should be the name of the package you are using to access
-     the Github API.
-
-     If it is ‘ghub’, then the package author disregarded that
-     convention and you should probably report a bug in the issue
-     tracker of that package.
-
-     Or you yourself are using ‘ghub-request’ or one of its wrappers
-     directly, in which case this is expected and perfectly fine.  In
-     that case you might however want to abort and change the value of
-     the variable ‘ghub-github-token-scopes’ before triggering the
-     wizard again.
-
-   • Each ‘PACKAGE’ has to specify the tokens that it needs using a
-     variable named ‘PACKAGE-github-token-scopes’.  The doc-string of
-     that variable should document why the various scopes are needed.
-
-     The meaning of the various scopes are documented at
-     <https://magit.vc/goto/f63aeb0a>.
-
-   • The value of ‘auth-sources’ is shown.  The default value causes
-     secrets to be stored in plain text.  Because this might be
-     unexpected, Ghub additionally displays a warning when appropriate.
-
-          WARNING: The token will be stored unencrypted in "~/.authinfo".
-                   If you don't want that, you have to abort and customize
-                   the `auth-sources' option.
-
-     Whether that is something that needs fixing, is up to you.  If your
-     answer is yes, then you should abort and see *note How Ghub uses
-     Auth-Source:: for instructions on how to save the token more
-     securely.
-
-   • When creating a token it is necessary to provide a token
-     description.  Ghub uses descriptions that have the form "Emacs
-     package PACKAGE @ LOCAL-MACHINE".
-
-     Github uses the token description to identify the token, not merely
-     as something useful to humans.  Token descriptions therefore have
-     to be unique and in rare cases you get an additional prompt, asking
-     you something like:
-
-          A token named "Emacs package PACKAGE @ LOCAL-MACHINE"
-          already exists on Github.  Replace it?
-
-     You might see this message when you have lost the old token and
-     want to replace it with a new one, in which case you should
-     obviously just proceed.
-
-     Or two of your computers have the same hostname, which is bad
-     practice because it gains you nothing but leads to issues such as
-     this.  Or you are dual-booting on this machine and use the same
-     hostname in all operating systems, which is a somewhat reasonable
-     thing to do, but never-the-less leads to issues like this.
-
-     In either case you will have to use something other than the value
-     returned by ‘system-name’ to identify the current machine or
-     operating system.  Or you can continue to identify different things
-     using the same identifier, in which case you have to manually
-     distribute the token.
-
-     The former is recommended and also easier to do, using the variable
-     ‘ghub-override-system-name’.  See *note Configuration Variables::
-     for details.
-
-   After the above prompt you are also asked for your username and
-password.  If you have enabled two-factor authentication, then you also
-have to provide the authentication code at least twice.  If you make
-sure the code is still good for a while when asked for it first, then
-you can just press ‘RET’ at the later prompt(s).
-
-
-File: ghub.info,  Node: Manually Creating and Storing a Token,  Next: How Ghub uses Auth-Source,  Prev: Interactively Creating and Storing a Token,  Up: Getting Started
-
-2.3 Manually Creating and Storing a Token
-=========================================
-
-If you cannot or don’t want to use the wizard then you have to (1)
-figure out what scopes a package wants, (2) create such a token using
-the web interface and (3) store the token where Ghub expects to find it.
-
-   A package named ‘PACKAGE’ has to specify the scopes that it wants in
-the variable named ‘PACKAGE-ghub-token-scopes’.  The doc-string of such
-variables should document what the various scopes are needed for.
-
-   To create or edit a token go to <https://github.com/settings/tokens>.
-For Gitlab.com use <https://gitlab.com/profile/personal_access_tokens>.
-
-   Finally store the token in a place where Ghub looks for it, as
-described in *note How Ghub uses Auth-Source::.
-
-   If you store the token in a file like ‘~/.authinfo’, then note that
-‘auth-source’’s parsing of that file is brittle.  Make sure the file
-ends with a newline character, that there are no empty or invalid lines,
-and that all comments are prefixed with ‘#’.
-
-
-File: ghub.info,  Node: How Ghub uses Auth-Source,  Prev: Manually Creating and Storing a Token,  Up: Getting Started
-
-2.4 How Ghub uses Auth-Source
-=============================
-
-Please see *note (auth)Top:: for all the gory details about Auth-Source.
-Some Ghub-specific information and important notes follow.
-
-   The variable ‘auth-sources’ controls how and where Auth-Source stores
-new secrets and where it looks for known secrets.  The default value is
-‘("~/.authinfo" "~/.authinfo.gpg" "~/.netrc")’, which means that it
-looks in all of these files in order to find secrets and that it stores
-new secrets in ‘~/.authinfo’ because that is the first element of the
-list.  It doesn’t matter which files already do or don’t exist when
-storing a new secret, the first file is always used.
-
-   Secrets are stored in ‘~/.authinfo’ in plain text.  If you don’t want
-that (good choice), then you have to customize ‘auth-sources’, e.g.  by
-flipping the positions of the first two elements.
-
-   Auth-Source also supports storing secrets in various key-chains.
-Refer to its documentation for more information.
-
-   Some Auth-Source backends only support storing three values per
-entry, the "machine", the "login" and the "password".  Because Ghub uses
-separate tokens for each package, it has to squeeze four values into
-those three slots, and it does that by using "USERNAME^PACKAGE" as the
-"login".
-
-   Assuming your username is "ziggy",the package is named "stardust",
-and you want to access *Github.com* an entry in one of the three
-mentioned files would then look like this:
-
-     machine api.github.com login ziggy^stardust password 012345abcdef...
-
-   Assuming your username is "ziggy",the package is named "stardust",
-and you want to access *Gitlab.com* an entry in one of the three
-mentioned files would then look like this:
-
-     machine gitlab.com/api/v4 login ziggy^stardust password 012345abcdef...
-
-
-File: ghub.info,  Node: Using Ghub in Personal Scripts,  Next: Using Ghub in a Package,  Prev: Getting Started,  Up: Top
-
-3 Using Ghub in Personal Scripts
-********************************
-
-You can use ‘ghub-request’ and its wrapper functions in your personal
-scripts, of course.  Unlike when you use Ghub from a package that you
-distribute for others to use, you don’t have to specify a package in
-personal scripts.
-
-     ;; This is perfectly acceptable in personal scripts ...
-     (ghub-get "/user")
-
-     ;; ... and actually equal to
-     (ghub-get "/user" nil :auth 'ghub)
-
-     ;; In packages you have to specify the package using AUTH.
-     (ghub-get "/user" nil :auth 'foobar)
-
-   When you do not specify the ‘AUTH’ argument, then a request is made
-on behalf of the ‘ghub’ package itself.  Like for any package that uses
-Ghub, ‘ghub’ has to declare what scopes it needs, using, in this case,
-the variable ‘ghub-github-token-scopes’.
-
-   The default value of that variable is ‘(repo)’ and you might want to
-add additional scopes.  You can later add additional scopes to an
-existing token, using the web interface at
-<https://github.com/settings/tokens>.
-
-   If you do that, then you might want to also set the variable
-accordingly, but note that Ghub only consults that when *creating* a new
-token.  If you want to know a token’s effective scopes use the command
-‘ghub-token-scopes’, described in the next section.
-
-
-File: ghub.info,  Node: Using Ghub in a Package,  Next: API,  Prev: Using Ghub in Personal Scripts,  Up: Top
-
-4 Using Ghub in a Package
-*************************
-
-Every package should use its own token.  This allows you as the author
-of some package to only request access to API scopes that are actually
-needed, which in turn might make it easier for users to trust your
-package not to do unwanted things.
-
-   The scopes used by ‘PACKAGE’ have to be defined using the variable
-‘PACKAGE-github-token-scopes’, and you have to tell ‘ghub-request’ on
-behalf of which package a request is being made by passing the symbol
-‘PACKAGE’ as the value of its ‘AUTH’ argument.
-
-     (ghub-request "GET" "/user" nil :auth 'PACKAGE)
-
- -- Variable: PACKAGE-github-token-scopes
-
-     This variable defines the token scopes requested by the package
-     named ‘PACKAGE’.  The doc-string should explain what the various
-     scopes are needed for to prevent users from giving ‘PACKAGE’ fewer
-     permissions than it absolutely needs and also to give them greater
-     confidence that ‘PACKAGE’ is only requesting the permissions that
-     it actually needs.
-
-     The value of this variable does not necessarily correspond to the
-     scopes that the respective token actually gives access to.  There
-     is nothing that prevents users from changing the value *after*
-     creating the token or from editing the token’s scopes later on.
-
-     So it is pointless to check the value of this variable before
-     making a request.  You also should not query the API to reliably
-     determine the supported tokens before making a query.  Doing the
-     latter would mean that every request becomes two requests and that
-     the first request would have to be done using the user’s password
-     instead of a token.
-
- -- Command: ghub-token-scopes
-
-     Because we cannot be certain that the user hasn’t messed up the
-     scopes, Ghub provides this command to make it easy to debug such
-     issues without having to rely on users being thoughtful enough to
-     correctly determine the used scopes manually.
-
-     Just tell users to run ‘M-x ghub-token-scopes’ and to provide the
-     correct values for the ‘HOST’, ‘USERNAME’ and ‘PACKAGE’ when
-     prompted, and to then post the output.
-
-     It is to be expected that users will occasionally mess that up so
-     this command outputs not only the scopes but also the user input so
-     that you can have greater confidence in the validity of the user’s
-     answer.
-
-          Scopes for USERNAME^PACKAGE@HOST: (SCOPE...)
-
-
-File: ghub.info,  Node: API,  Next: GraphQL Support,  Prev: Using Ghub in a Package,  Up: Top
-
-5 API
-*****
-
-This section describes the Ghub API.  In other words it describes the
-public functions and variables provided by the Ghub package and not the
-APIs of the supported forges, which can be accessed by using those
-functions.  The forge APIs are documented at:
-
-   • Github: <https://developer.github.com/v3>
-
-   • Gitlab: <https://docs.gitlab.com/ee/api/README.html>
-
-   • Gitea: <https://docs.gitea.io/en-us/api-usage> and
-     <https://try.gitea.io/api/swagger>
-
-   • Gogs: <https://github.com/gogs/go-gogs-client/wiki>
-
-   • Bitbucket:
-     <https://developer.atlassian.com/bitbucket/api/2/reference>
-
-* Menu:
-
-* Making Requests::
-* Authentication::
-* Configuration Variables::
-
-
-File: ghub.info,  Node: Making Requests,  Next: Authentication,  Up: API
-
-5.1 Making Requests
-===================
-
- -- Function: ghub-request method resource &optional params &key query
-          payload headers unpaginate noerror reader username auth host
-          callback errorback url value error extra method*
-
-     This function makes a request for ‘RESOURCE’ using ‘METHOD’.
-     ‘PARAMS’, ‘QUERY’, ‘PAYLOAD’ and/or ‘HEADERS’ are alists holding
-     additional request data.  The response body is returned and the
-     response header is stored in the variable ‘ghub-response-headers’.
-
-        • ‘METHOD’ is the HTTP method, given as a string.
-
-        • ‘RESOURCE’ is the resource to access, given as a string
-          beginning with a slash.
-
-        • ‘PARAMS’, ‘QUERY’, ‘PAYLOAD’ and ‘HEADERS’ are alists and are
-          used to specify request data.  All these arguments are alists
-          that resemble the JSON expected and returned by the Github
-          API.  The keys are symbols and the values stored in the ‘cdr’
-          (not the ‘cadr’) can be strings, integers, or lists of strings
-          and integers.
-
-          The Github API documentation is vague on how data has to be
-          transmitted and for a particular resource usually just talks
-          about "parameters".  Generally speaking when the ‘METHOD’ is
-          "HEAD" or "GET", then they have to be transmitted as a query,
-          otherwise as a payload.
-
-             • Use ‘PARAMS’ to automatically transmit like ‘QUERY’ or
-               ‘PAYLOAD’ would depending on ‘METHOD’.
-
-             • Use ‘QUERY’ to explicitly transmit data as a query.
-
-             • Use ‘PAYLOAD’ to explicitly transmit data as a payload.
-               Instead of an alist, ‘PAYLOAD’ may also be a string, in
-               which case it gets encoded as UTF-8 but is otherwise
-               transmitted as-is.
-
-             • Use ‘HEADERS’ for those rare resources that require that
-               the data is transmitted as headers instead of as a query
-               or payload.  When that is the case, then the Github API
-               documentation usually mentions it explicitly.
-
-        • If ‘SILENT’ is non-nil, then progress reports and the like are
-          not messaged.
-
-        • If ‘UNPAGINATE’ is t, then this function make as many requests
-          as necessary to get all values.  If ‘UNPAGINATE’ is a natural
-          number, then it gets at most that many pages.  For any other
-          non-nil value it raises an error.
-
-        • If ‘NOERROR’ is non-nil, then no error is raised if the
-          request fails and ‘nil’ is returned instead.  If ‘NOERROR’ is
-          ‘return’, then the error payload is returned instead of ‘nil’.
-
-        • If ‘READER’ is non-nil, then it is used to read and return
-          from the response buffer.  The default is
-          ‘ghub--read-json-payload’.  For the very few resources that do
-          not return JSON, you might want to use ‘ghub--decode-payload’.
-
-        • If ‘USERNAME’ is non-nil, then the request is made on behalf
-          of that user.  It is better to specify the user using the Git
-          variable ‘github.user’ for "api.github.com", or
-          ‘github.HOST.user’ if connecting to a Github Enterprise
-          instance.
-
-        • Each package that uses Ghub should use its own token.  If
-          ‘AUTH’ is ‘nil’ or unspecified, then the generic ‘ghub’ token
-          is used instead.  This is only acceptable for personal
-          utilities.  A packages that is distributed to other users
-          should always use this argument to identify itself, using a
-          symbol matching its name.
-
-          Package authors who find this inconvenient should write a
-          wrapper around this function and possibly for the
-          method-specific functions as well.
-
-          Beside ‘nil’, some other symbols have a special meaning too.
-          ‘none’ means to make an unauthorized request.  ‘basic’ means
-          to make a password based request.  If the value is a string,
-          then it is assumed to be a valid token.  ‘basic’ and an
-          explicit token string are only intended for internal and
-          debugging uses.
-
-          If ‘AUTH’ is a package symbol, then the scopes are specified
-          using the variable ‘AUTH-github-token-scopes’.  It is an error
-          if that is not specified.  See ‘ghub-github-token-scopes’ for
-          an example.
-
-        • If ‘HOST’ is non-nil, then connect to that Github instance.
-          This defaults to "api.github.com".  When a repository is
-          connected to a Github Enterprise instance, then it is better
-          to specify that using the Git variable ‘github.host’ instead
-          of using this argument.
-
-        • If ‘FORGE’ is ‘gitlab’, then connect to Gitlab.com or,
-          depending on ‘HOST’, to another Gitlab instance.  This is only
-          intended for internal use.  Instead of using this argument you
-          should use function ‘glab-request’ and other ‘glab-*’
-          functions.
-
-        • If ‘CALLBACK’ and/or ‘ERRORBACK’ is non-nil, then this
-          function makes one or more asynchronous requests and calls
-          ‘CALLBACK’ or ‘ERRORBACK’ when finished.  If an error
-          occurred, then it calls ‘ERRORBACK’, or if that is ‘nil’, then
-          ‘CALLBACK’.  When no error occurred then it calls ‘CALLBACK’.
-          When making asynchronous requests, then no errors are
-          signaled, regardless of the value of ‘NOERROR’.
-
-          Both callbacks are called with four arguments.
-
-             • For ‘CALLBACK’, the combined value of the retrieved
-               pages.  For ‘ERRORBACK’, the error that occured when
-               retrieving the last page.
-
-             • The headers of the last page as an alist.
-
-             • Status information provided by ‘url-retrieve’.  Its
-               ‘:error’ property holds the same information as the first
-               argument to ‘ERRORBACK’.
-
-             • A ‘ghub--req’ struct, which can be passed to
-               ‘ghub-continue’ (which see) to retrieve the next page, if
-               any.
-
- -- Function: ghub-continue args
-
-     If there is a next page, then this function retrieves that.
-
-     This function is only intended to be called from callbacks.  If
-     there is a next page, then that is retrieve and the buffer that the
-     result will be loaded into is returned, or t if the process has
-     already completed.  If there is no next page, then return nil.
-
-     Callbacks are called with four arguments (see ‘ghub-request’).  The
-     forth argument is a ‘ghub--req’ struct, intended to be passed to
-     this function.  A callback may use the struct’s ‘extra’ slot to
-     pass additional information to the callback that will be called
-     after the next request.  Use the function ‘ghub-req-extra’ to get
-     and set the value of that slot.
-
-     As an example, using ‘ghub-continue’ in a callback like so:
-
-          (ghub-get "/users/tarsius/repos" nil
-                    :callback (lambda (value _headers _status req)
-                                (unless (ghub-continue req)
-                                  (setq my-value value))))
-
-     is equivalent to:
-
-          (ghub-get "/users/tarsius/repos" nil
-                    :unpaginate t
-                    :callback (lambda (value _headers _status _req)
-                                (setq my-value value)))
-
-     To demonstrate how to pass information from one callback to the
-     next, here we record when we start fetching each page:
-
-          (ghub-get "/users/tarsius/repos" nil
-                    :extra (list (current-time))
-                    :callback (lambda (value _headers _status req)
-                                (push (current-time) (ghub-req-extra req))
-                                (unless (ghub-continue req)
-                                  (setq my-times (ghub-req-extra req))
-                                  (setq my-value value))))
-
- -- Variable: ghub-response-headers
-
-     A select few Github API resources respond by transmitting data in
-     the response header instead of in the response body.  Because there
-     are so few of these inconsistencies, ‘ghub-request’ always returns
-     the response body.
-
-     To access the response headers use this variable after
-     ‘ghub-request’ has returned.
-
- -- Function: ghub-response-link-relations req headers payload
-
-     This function returns an alist of the link relations in ‘HEADERS’,
-     or if optional ‘HEADERS’ is nil, then those in
-     ‘ghub-response-headers’.
-
-     When accessing a Bitbucket instance then the link relations are in
-     ‘PAYLOAD’ instead of ‘HEADERS’, making their API merely RESTish and
-     forcing this function to append those relations to the value of
-     ‘ghub-response-headers’, for later use when this function is called
-     with ‘nil’ for ‘PAYLOAD’.
-
- -- Variable: ghub-override-system-name
-
-     If non-nil, the value of this variable is used to override the
-     value returned by ‘system-name’ for the purpose of identifying the
-     local machine, which is necessary because Ghub uses separate tokens
-     for each machine.  Also see *note Configuration Variables::.
-
- -- Variable: ghub-github-token-scopes
- -- Variable: PACKAGE-github-token-scopes
-
-     Such a variable defines the token scopes requested by the
-     respective package ‘PACKAGE’ given by the first word in the
-     variable name.  ‘ghub’ itself is treated like any other package.
-     Also see *note Using Ghub in a Package::.
-
- -- Function: ghub-head resource &optional params &key query payload
-          headers unpaginate noerror reader username auth host callback
-          errorback
- -- Function: ghub-get resource &optional params &key query payload
-          headers unpaginate noerror reader username auth host callback
-          errorback
-
-     These functions are simple wrappers around ‘ghub-request’.  Their
-     signature is identical to that of the latter, except that they do
-     not have an argument named ‘METHOD’.  The HTTP method is instead
-     given by the second word in the function name.
-
-     As described in the documentation for ‘ghub-request’, it depends on
-     the used method whether the value of the ‘PARAMS’ argument is used
-     as the query or the payload.  For the "HEAD" and "GET" methods it
-     is used as the query.
-
- -- Function: ghub-put resource &optional params &key query payload
-          headers unpaginate noerror reader username auth host callback
-          errorback
- -- Function: ghub-post resource &optional params &key query payload
-          headers unpaginate noerror reader username auth host callback
-          errorback
- -- Function: ghub-patch resource &optional params &key query payload
-          headers unpaginate noerror reader username auth host callback
-          errorback
- -- Function: ghub-delete resource &optional params &key query payload
-          headers unpaginate noerror reader username auth host callback
-          errorback
-
-     These functions are simple wrappers around ‘ghub-request’.  Their
-     signature is identical to that of the latter, except that they do
-     not have an argument named ‘METHOD’.  The HTTP method is instead
-     given by the second word in the function name.
-
-     As described in the documentation for ‘ghub-request’, it depends on
-     the used method whether the value of the ‘PARAMS’ argument is used
-     as the query or the payload.  For the "PUT", "POST", "PATCH" and
-     "DELETE" methods it is used as the payload.
-
- -- Function: ghub-wait resource &optional duration &key username auth
-          host
-
-     Some API requests result in an immediate successful response even
-     when the requested action has not actually been carried out yet.
-     An example is the request for the creation of a new repository,
-     which doesn’t cause the repository to immediately become available.
-     The Github API documentation usually mentions this when describing
-     an affected resource.
-
-     If you want to do something with some resource right after making a
-     request for its creation, then you might have to wait for it to
-     actually be created.  This function can be used to do so.  It
-     repeatedly tries to access the resource until it becomes available
-     or until the timeout exceeds.  In the latter case it signals
-     ‘ghub-error’.
-
-     ‘RESOURCE’ specifies the resource that this function waits for.
-
-     ‘DURATION’ specifies the maximum number of seconds to wait for,
-     defaulting to 64 seconds.  Emacs will block during that time, but
-     the user can abort using ‘C-g’.
-
-     The first attempt is made immediately and will often succeed.  If
-     not, then another attempt is made after two seconds, and each
-     subsequent attempt is made after waiting as long as we already
-     waited between all preceding attempts combined.
-
-     See ‘ghub-request’’s documentation above for information about the
-     other arguments.
-
- -- Function: ghub-graphql graphql &optional variables &key username
-          auth host callback
-
-     This function makes a GraphQL request using ‘GRAPHQL’ and
-     ‘VARIABLES’ as inputs.  ‘GRAPHQL’ is a GraphQL string.  ‘VARIABLES’
-     is a JSON-like alist.  The other arguments behave as for
-     ‘ghub-request’ (which see).
-
-     The response is returned as a JSON-like alist.  Even if the
-     response contains ‘errors’, this function does not raise an error.
-     Cursor-handling is likewise left to the caller.
-
-
-File: ghub.info,  Node: Authentication,  Next: Configuration Variables,  Prev: Making Requests,  Up: API
-
-5.2 Authentication
-==================
-
- -- Command: ghub-create-token
-
-     This command creates a new token using the values it reads from the
-     user and then stores it according to the variable ‘auth-sources’.
-     It can also be called non-interactively, but you shouldn’t do that
-     yourself.
-
-     This is useful if you want to fully setup things before attempting
-     to make the initial request, if you want to provide fewer than the
-     requested scopes or customize ‘auth-sources’ first, or if something
-     has gone wrong when using the wizard that is used when making a
-     request without doing this first.  (Note that instead of using this
-     command you can also just repeat the initial request after making
-     the desired adjustments — that is easier.)
-
-     This command reads, in order, the ‘HOST’ (Github instance), the
-     ‘USERNAME’, the ‘PACKAGE’, and the ‘SCOPES’ in the minibuffer,
-     providing reasonable default choices.  ‘SCOPES’ defaults to the
-     scopes that ‘PACKAGE’ requests using the variable
-     ‘PACKAGE-github-token-scopes’.
-
- -- Command: ghub-token-scopes
-
-     Users are free to give a token access to fewer scopes than what the
-     respective package requested.  That can, of course, lead to issues,
-     and package maintainers have to be able to quickly determine if
-     such a (mis-)configuration is the root cause when users report
-     issues.
-
-     This command reads the required values in the minibuffer and then
-     shows a message containing these values along with the scopes of
-     the respective token.  It also returns the scopes (only) when
-     called non-interactively.  Also see *note Using Ghub in a
-     Package::.
-
-
-File: ghub.info,  Node: Configuration Variables,  Prev: Authentication,  Up: API
-
-5.3 Configuration Variables
-===========================
-
-The username and, unless you only use Github.com itself, the Github
-Enterprise instance have to be configured using Git variables.  In rare
-cases it might also be necessary to specify the identity of the local
-machine, which is done using a lisp variable.
-
- -- Variable: github.user
-
-     The Github.com username.  This should be set globally and if you
-     have multiple Github.com user accounts, then you should set this
-     locally only for those repositories that you want to access using
-     the secondary identity.
-
- -- Variable: github.HOST.user
-
-     This variable serves the same purpose as ‘github.user’ but for the
-     Github Enterprise instance identified by ‘HOST’.
-
-     The reason why separate variables are used is that this makes it
-     possible to set both values globally instead of having to set one
-     of the values locally in each and every repository that is
-     connected to the Github Enterprise instance, not Github.com.
-
- -- Variable: github.host
-
-     This variable should only be set locally for a repository and
-     specifies the Github Enterprise edition that that repository is
-     connected to.  You should not set this globally because then each
-     and every repository becomes connected to the specified Github
-     Enterprise instance, including those that should actually be
-     connected to Github.com.
-
-     When this is undefined, then "api.github.com" is used (defined in
-     the constant ‘ghub-default-host’, which you should never attempt to
-     change.)
-
- -- Variable: ghub-override-system-name
-
-     Ghub uses a different token for each quadruple ‘(USERNAME PACKAGE
-     HOST LOCAL-MACHINE)’.  Theoretically it could reuse tokens to some
-     extent but that would be more difficult to implement, less
-     flexible, and less secure (though slightly more convenient).
-
-     A token is identified on the respective Github instance (Github.com
-     or a Github Enterprise instance) using the pair ‘(PACKAGE .
-     LOCAL-MACHINE)’, or more precisely the string "Emacs package
-     PACKAGE @ LOCAL-MACHINE". ‘USERNAME’ and ‘HOST’ do not have to be
-     encoded because the token is stored for ‘USERNAME’ on ‘HOST’ and
-     cannot be used by another user and/or on another instance.
-
-     There is one potential problem though; for any given ‘(PACKAGE .
-     LOCAL-MACHINE)’ there can only be one token identified by "Emacs
-     package PACKAGE @ LOCAL-MACHINE"; Github does not allow multiple
-     tokens with the same description because it uses the description as
-     the identifier (it could use some hash instead, but alas it does
-     not).
-
-     If you have multiple machines and some of them have the same name,
-     then you should probably change that as this is not how things
-     ought to be.  However if you dual-boot, then it might make sense to
-     give that machine the same name regardless of what operating system
-     you have booted into.
-
-     You could use the same token on both operating systems, but setting
-     that up might be somewhat difficult because it is not possible to
-     download an existing token from Github.  You could, of course,
-     locally copy the token, but that is inconvenient and would make it
-     harder to only revoke the token used on your infected Windows
-     installation without also revoking it for your totally safe *BSD
-     installation.
-
-     Alternatively you can set this variable to a unique value, that
-     will then be used to identify the local machine instead of the
-     value returned by ‘system-name’.
-
-
-File: ghub.info,  Node: GraphQL Support,  Next: Support for Other Forges,  Prev: API,  Up: Top
-
-6 GraphQL Support
-*****************
-
- -- Function: ghub-graphql graphql &optional variables &key username
-          auth host callback silent callback errorback value extra
-
-     This function makes a GraphQL request using ‘GRAPHQL’ and
-     ‘VARIABLES’ as inputs.  ‘GRAPHQL’ is a GraphQL string.  ‘VARIABLES’
-     is a JSON-like alist.  The other arguments behave as for
-     ‘ghub-request’ (which see).
-
-     The response is returned as a JSON-like alist.  Even if the
-     response contains ‘errors’, this function does not raise an error.
-     Cursor-handling is likewise left to the caller.
-
-   ‘ghub-graphql’ is a thin convenience wrapper around ‘ghub-request’,
-similar to ‘ghub-post’ and friends.  While the latter only hard-code the
-value of the ‘METHOD’ argument, the former also hard-codes ‘RESOURCE’
-and constructs ‘PAYLOAD’ from ‘GRAPHEQL’ and ‘VARIABLES’.  It also drops
-‘UNPAGINATE’, ‘NOERROR’, ‘READER’ (internal functions expect alist-ified
-JSON) and ‘FORGE’ (only Github currently supports GraphQL).
-
-   ‘ghub-graphql’ does not account for the fact that pagination works
-differently in GraphQL than it does in REST, so users of this function
-have to deal with that themselves.  Likewise error handling works
-differently and has to be done by the caller too.
-
-   An early attempt at implementing automatic unpaginating for GraphQL
-can be found in the ‘faithful-graphql’ branch, provided I haven’t
-deleted that by now.  On that branch I try to do things as intended by
-the designers of GraphQL, using variables and fragments, and drowning in
-a sea of boilerplate.
-
-   The problem with that approach is that it only works for applications
-that fetch specific information on demand and actually want things to be
-paginated.  I am convinced that GraphQL is very nice for web apps.
-
-   However the Forge package for which I am implementing all of this has
-very different needs.  It wants to fetch "all the data" and "cache" it
-locally, so that it is available even when there is no internet
-connection.  GraphQL was designed around the idea that you should be
-able to "ask for what you need and get exactly that".  But when that
-boils down to "look, if I persist, then you are going to hand me over
-all the data anyway, so just caught it up already", then things start to
-fall apart.  If Github’s GraphQL allowed pagination to be turned off
-completely, then teaching ‘ghub-graphql’ about error handling would be
-enough.
-
-   But it doesn’t and when doing things as intended, then that leads to
-huge amounts of repetitive boilerplate, which is so boring to write that
-doing it without introducing bugs left and right is near impossible; so
-I decided to give up on GraphQL variables, fragments and conditions, and
-instead implement something more powerful, though also more opinionated.
-
- -- Function: ghub--graphql-vacuum query variables callback &optional
-          until &key narrow username auth host forge
-
-     This function is an opinionated alternative to ‘ghub-graphql’.  It
-     relies and dark magic to get the job done.
-
-     It makes an initial request using ‘QUERY’.  It then looks for
-     paginated edges in the returned data and makes more requests to
-     resolve them.  In order to do so it automatically transforms the
-     initial ‘QUERY’ into another query suitable for that particular
-     edge.  The data retrieved by subsequent requests is then injected
-     into the data of the original request before that is returned or
-     passed to the callback.  If subsequently retrieved data features
-     new paginated edges, then those are followed recursively.
-
-     The end result is essentially the same as using ‘ghub-graphql’, if
-     only it were possible to say "do not paginate anything".  The
-     implementation is much more complicated because it is not possible
-     to do that.
-
-     ‘QUERY’ is a GraphQL query expressed as an s-expression.  The
-     ‘graphql’ package is used to turn that into a GraphQL query string,
-     but the format is somewhat different than as documented for that
-     package.  Also only a subset of the GraphQL features are supported;
-     fragments for example are not, and magical stuff happens to
-     variables.  This is not documented yet, I am afraid.  Look at
-     existing callers.
-
-     ‘VARIABLES’ is a JSON-like alist as for ‘ghub-graphql’.
-
-     ‘UNTIL’ is an alist ‘((EDGE-until . VALUE)...)’.  When unpaginating
-     ‘EDGE’ try not to fetch beyond the element whose first field has
-     the value ‘VALUE’ and remove that element as well as all "lesser"
-     elements from the retrieved data if necessary.  Look at
-     ‘forge--pull-repository’ for an example.  This is only useful if
-     you "cache" the response locally and want to avoid fetching data
-     again that you already have.
-
-     Other arguments behave as for ‘ghub-graphql’ and ‘ghub-request’,
-     more or less.
-
-   Using ‘ghub--graphql-vacuum’, the following resource specific
-functions are implemented.  These functions are not part of the public
-API yet and are very much subject to change.
-
- -- Function: ghub-fetch-repository owner name callback &optional until
-          &key username auth host forge
-
-     This function asynchronously fetches forge data about the specified
-     repository.  Once all data has been collected, ‘CALLBACK’ is called
-     with the data as the only argument.
-
- -- Function: ghub-fetch-issue owner name callback &optional until &key
-          username auth host forge
-
-     This function asynchronously fetches forge data about the specified
-     issue.  Once all data has been collected, ‘CALLBACK’ is called with
-     the data as the only argument.
-
- -- Function: ghub-fetch-pullreq owner name callback &optional until
-          &key username auth host forge
-
-     This function asynchronously fetches forge data about the specified
-     pull-request.  Once all data has been collected, ‘CALLBACK’ is
-     called with the data as the only argument.
-
-   Note that in order to avoid duplication all of these functions base
-their initial query on the query stored in ‘ghub-fetch-repository’.  The
-latter two pass that query through ‘ghub--graphql-prepare-query’, which
-then used ‘ghub--graphql-narrow-query’ to remove parts the caller is not
-interested in.  These two functions are also used internally, when
-unpaginating, but as demonstrated here they can be useful even before
-making an initial request.
-
-
-File: ghub.info,  Node: Support for Other Forges,  Prev: GraphQL Support,  Up: Top
-
-7 Support for Other Forges
-**************************
-
-* Menu:
-
-* Forge Functions and Variables::
-* Forge Limitations and Notes::
-
-
-File: ghub.info,  Node: Forge Functions and Variables,  Next: Forge Limitations and Notes,  Up: Support for Other Forges
-
-7.1 Forge Functions and Variables
-=================================
-
-Originally Ghub supported only Github but now it also supports Gitlab,
-Gitea, Gogs and Bitbucket.  The function ‘ghub-request’ and all the
-‘ghub-METHOD’ convenience wrappers default to acting on a Github forge
-but can be told to act on another forge using their FORGE argument.
-
-   The FORGE argument only specifies what kind of forge to act on, not
-which instance.  The HOST argument can be used to select the instance.
-For some forges a default instance is defined:
-
-   • Forge ‘github’ defaults to host ‘api.github.com’.
-
-   • Forge ‘gitlab’ defaults to host ‘gitlab.com/api/v4’.
-
-   • Forge ‘bitbucket’ defaults to host ‘api.bitbucket.org/2.0’.
-
-   • No canonical host exists for the ‘gitea’ and ‘gogs’ forges and
-     ‘localhost:3000/api/v1’ is used as the default host in both cases.
-
-   Together the FORGE and HOST arguments specify the forge type and
-instance.  In addition to that, it is also necessary to specify on whose
-behalf the request is being made, which can be done using the USERNAME
-and AUTH arguments.
-
-   Having to specify these arguments for every request is inconvenient.
-Additional variables and convenience functions can be used to make that
-unnecessary in most cases.
-
-   These variables can be set globally and/or for a specific repository
-as explained in *note Configuration Variables:: with a focus on Github
-instances.  To summarize:
-
-   • For <https://github.com> the Git variable ‘github.user’ specifies
-     the user.
-
-   • For another ‘github’ instance the Git variable ‘github.HOST.user’
-     specifies the user.  The HOST in that variable name is the same as
-     the value of the HOST argument of the called function.
-
-   • Instead of specifying the HOST in every function call, the Git
-     variable ‘github.host’ can be used.  This should only be set
-     locally.
-
-For ‘gitlab’ and ‘bitbucket’ forges similar variables are available:
-
-   • ‘gitlab.user’ specifies the <https://gitlab.com> user.
-
-   • ‘gitlab.HOST.user’ specifies the user for the HOST ‘gitlab’
-     instance.
-
-   • ‘gitlab.host’ specifies the ‘gitlab’ host, unless the HOST argument
-     is non-nil
-
-   • ‘bitbucket.user’ specifies the <https://bitbucket.org> user.
-
-   • ‘bitbucket.HOST.user’ specifies the user for the HOST ‘bitbucket’
-     instance.
-
-   • ‘bitbucket.host’ specifies the ‘bitbucket’ host, unless the HOST
-     argument is non-nil.
-
-   For ‘gitea’ and ‘gogs’ forges some similar variables are available,
-however for some of the ‘ghub.*’ variables no equivalent variable exist
-for these two forges:
-
-   • ‘gitea.user’ is *not* used because no canonical ‘gitea’ instance
-     exists.
-
-   • ‘gitea.HOST.user’ specifies the user for the HOST ‘gitea’ instance.
-
-   • ‘gitea.host’ specifies the ‘gitea’ host, unless the HOST argument
-     is non-nil
-
-   • ‘gogs.user’ is *not* used because no canonical ‘gitea’ instance
-     exists.
-
-   • ‘gogs.HOST.user’ specifies the user for the HOST ‘gogs’ instance.
-
-   • ‘gogs.host’ specifies the ‘gogs’ host, unless the HOST argument is
-     non-nil
-
-   ‘ghub-request’ and ‘ghub-METHOD’ can be used to make a request for
-any of the supported forge types, but except when making a request for a
-‘github’ instance, then that requires the use of the FORGE argument.
-
-   To avoid that, functions named ‘FORGE-request’ and ‘FORGE-METHOD’ are
-also available.  The following forms are equivalent, for example:
-
-     (ghub-get ... :auth 'PACKAGE :forge 'gitlab)
-     (glab-get ... :auth 'PACKAGE)
-
-   These forms would remain equivalent even if you did not specify a
-value for the AUTH arguments — but you should not do that if you plan to
-share your code with others (see *note Using Ghub in a Package::).  If
-you do omit AUTH, then the request is made on behalf of the ‘ghub’
-package, *regardless* of the symbol prefix of the function you use to do
-so.
-
-   All ‘FORGE-request’ and ‘FORGE-METHOD’ functions, including but not
-limited to ‘ghub-METHOD’, are very simple wrappers around
-‘ghub-request’.  They take fewer arguments than ‘ghub-request’ and
-instead pass constant values for the arguments METHOD and/or FORGE.
-
-
-File: ghub.info,  Node: Forge Limitations and Notes,  Prev: Forge Functions and Variables,  Up: Support for Other Forges
-
-7.2 Forge Limitations and Notes
-===============================
-
-   • The token creation wizard is only available for ‘github’ forges,
-     because all other forges do not support using the API to create an
-     API token.  As a consequence, if the user makes a request and the
-     necessary token cannot be found, then that results in an error.
-     Tokens can be created at:
-
-        • Gitlab: <https://gitlab.com/profile/personal_access_tokens>
-
-        • Bitbucket:
-          <https://bitbucket.org/account/user/tarsius/app-passwords>
-
-        • Gitea: <https://localhost:3000/user/settings/applications>
-
-        • Gogs: <https://localhost:3000/user/settings/applications>
-
-     Also see *note Manually Creating and Storing a Token:: and *note
-     How Ghub uses Auth-Source::.
-
-   • As mentioned in the previous node, the variables ‘gitea.host’ and
-     ‘gogs.host’ are not taken into account.
-
-   • Gitea and Gogs do not support limiting a token to certain scopes.
-
-   • The Bitbucket API is fairly broken.  Some resources only work if a
-     slash is appended while others only work if no slash is appended.
-     I am unable to access any private repositories and some resources
-     don’t work for me at all.  Also the API is only RESTish; pagination
-     information is part of the response body instead of the header.
-     Due to such issues it is possible that I will eventually have to
-     remove support for Bitbucket altogether.
-
-   • The Gitlab API documentation is not always accurate, though I don’t
-     have an example at hand.  It also isn’t structured well, making it
-     occationally difficult to find the information one is looking for.
-
-   • Where one would use ‘user/repo’ when accessing another forge, one
-     has to use ‘user%2Frepo’ when accessing Gitlab, e.g.:
-
-          (glab-get "/projects/python-mode-devs%2Fpython-mode")
-
-
-
-Tag Table:
-Node: Top764
-Node: Introduction3279
-Node: Getting Started6321
-Node: Setting the Username10055
-Node: Interactively Creating and Storing a Token11480
-Node: Manually Creating and Storing a Token17131
-Node: How Ghub uses Auth-Source18354
-Node: Using Ghub in Personal Scripts20287
-Node: Using Ghub in a Package21743
-Node: API24361
-Node: Making Requests25158
-Node: Authentication39197
-Node: Configuration Variables41042
-Node: GraphQL Support44762
-Node: Support for Other Forges51427
-Node: Forge Functions and Variables51644
-Node: Forge Limitations and Notes56163
-
-End Tag Table
-
-
-Local Variables:
-coding: utf-8
-End:
diff --git a/elpa/ghub-20181112.1755/glab.el b/elpa/ghub-20181112.1755/glab.el
deleted file mode 100644
index fa35b35..0000000
--- a/elpa/ghub-20181112.1755/glab.el
+++ /dev/null
@@ -1,153 +0,0 @@
-;;; glab.el --- minuscule client library for the Gitlab API  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2016-2018  Jonas Bernoulli
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Homepage: https://github.com/magit/ghub
-;; Keywords: tools
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; For a copy of the GPL see https://www.gnu.org/licenses/gpl.txt.
-
-;;; Commentary:
-
-;; Glab is a library that provides basic support for using the Gitlab API
-;; from Emacs packages.  It abstracts access to API resources using only
-;; a handful of functions that are not resource-specific.
-
-;; This library is implemented on top of Ghub.  Unlike Ghub, Glab does
-;; not support the guided creation of tokens because Gitlab lacks the
-;; features that would be necessary to implement that.  Users have to
-;; create tokens through the web interface.
-
-;;; Code:
-
-(require 'ghub)
-
-(defconst glab-default-host "gitlab.com/api/v4"
-  "The default host that is used if `glab.host' is not set.")
-
-(cl-defun glab-head (resource &optional params
-                              &key query payload headers
-                              silent unpaginate noerror reader
-                              username auth host
-                              callback errorback extra)
-  "Make a `HEAD' request for RESOURCE, with optional query PARAMS.
-Like calling `ghub-request' (which see) with \"HEAD\" as METHOD
-and `gitlab' as FORGE."
-  (ghub-request "HEAD" resource params :forge 'gitlab
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun glab-get (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `GET' request for RESOURCE, with optional query PARAMS.
-Like calling `ghub-request' (which see) with \"GET\" as METHOD
-and `gitlab' as FORGE."
-  (ghub-request "GET" resource params :forge 'gitlab
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun glab-put (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `PUT' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PUT\" as METHOD
-and `gitlab' as FORGE."
-  (ghub-request "PUT" resource params :forge 'gitlab
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun glab-post (resource &optional params
-                              &key query payload headers
-                              silent unpaginate noerror reader
-                              username auth host
-                              callback errorback extra)
-  "Make a `POST' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"POST\" as METHOD
-and `gitlab' as FORGE."
-  (ghub-request "POST" resource params :forge 'gitlab
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun glab-patch (resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host
-                               callback errorback extra)
-  "Make a `PATCH' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PATCH\" as METHOD
-and `gitlab' as FORGE."
-  (ghub-request "PATCH" resource params :forge 'gitlab
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun glab-delete (resource &optional params
-                                &key query payload headers
-                                silent unpaginate noerror reader
-                                username auth host
-                                callback errorback extra)
-  "Make a `DELETE' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"DELETE\" as METHOD
-and `gitlab' as FORGE."
-  (ghub-request "DELETE" resource params :forge 'gitlab
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun glab-request (method resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host
-                               callback errorback extra)
-  "Make a request for RESOURCE and return the response body.
-Like calling `ghub-request' (which see) with `gitlab' as FORGE."
-  (ghub-request method resource params :forge 'gitlab
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun glab-repository-id (owner name &key username auth host)
-  "Return the id of the repository specified by OWNER, NAME and HOST."
-  (number-to-string
-   (cdr (assq 'id (glab-get (format "/projects/%s%%2F%s" owner name)
-                            nil :username username :auth auth :host host)))))
-
-;;; _
-(provide 'glab)
-;;; glab.el ends here
diff --git a/elpa/ghub-20181112.1755/glab.elc b/elpa/ghub-20181112.1755/glab.elc
deleted file mode 100644
index 86ee805..0000000
--- a/elpa/ghub-20181112.1755/glab.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/ghub-20181112.1755/gogs.el b/elpa/ghub-20181112.1755/gogs.el
deleted file mode 100644
index 0fbac46..0000000
--- a/elpa/ghub-20181112.1755/gogs.el
+++ /dev/null
@@ -1,140 +0,0 @@
-;;; gogs.el --- minuscule client library for the Gogs API  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2016-2018  Jonas Bernoulli
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Homepage: https://github.com/magit/ghub
-;; Keywords: tools
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; For a copy of the GPL see https://www.gnu.org/licenses/gpl.txt.
-
-;;; Commentary:
-
-;; Gogs is a library that provides basic support for using the Gogs API
-;; from Emacs packages.  It abstracts access to API resources using only
-;; a handful of functions that are not resource-specific.
-
-;; This library is implemented on top of Ghub.  Unlike Ghub, Gogs does
-;; not support the guided creation of tokens because Gogs lacks the
-;; features that would be necessary to implement that.  Users have to
-;; create tokens through the web interface.
-
-;;; Code:
-
-(require 'ghub)
-
-(defconst gogs-default-host "localhost:3000/api/v1"
-  "The default host that is used if `gogs.host' is not set.")
-
-;; HEAD does not appear to be supported.
-
-(cl-defun gogs-get (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `GET' request for RESOURCE, with optional query PARAMS.
-Like calling `ghub-request' (which see) with \"GET\" as METHOD
-and `gogs' as FORGE."
-  (ghub-request "GET" resource params :forge 'gogs
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gogs-put (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `PUT' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PUT\" as METHOD
-and `gogs' as FORGE."
-  (ghub-request "PUT" resource params :forge 'gogs
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gogs-post (resource &optional params
-                              &key query payload headers
-                              silent unpaginate noerror reader
-                              username auth host
-                              callback errorback extra)
-  "Make a `POST' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"POST\" as METHOD
-and `gogs' as FORGE."
-  (ghub-request "POST" resource params :forge 'gogs
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gogs-patch (resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host
-                               callback errorback extra)
-  "Make a `PATCH' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PATCH\" as METHOD
-and `gogs' as FORGE."
-  (ghub-request "PATCH" resource params :forge 'gogs
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gogs-delete (resource &optional params
-                                &key query payload headers
-                                silent unpaginate noerror reader
-                                username auth host
-                                callback errorback extra)
-  "Make a `DELETE' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"DELETE\" as METHOD
-and `gogs' as FORGE."
-  (ghub-request "DELETE" resource params :forge 'gogs
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gogs-request (method resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host
-                               callback errorback extra)
-  "Make a request for RESOURCE and return the response body.
-Like calling `ghub-request' (which see) with `gogs' as FORGE."
-  (ghub-request method resource params :forge 'gogs
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gogs-repository-id (owner name &key username auth host)
-  "Return the id of the repository specified by OWNER, NAME and HOST."
-  (number-to-string
-   (cdr (assq 'id (gogs-get (format "/repos/%s/%s" owner name)
-                            nil :username username :auth auth :host host)))))
-
-;;; _
-(provide 'gogs)
-;;; gogs.el ends here
diff --git a/elpa/ghub-20181112.1755/gogs.elc b/elpa/ghub-20181112.1755/gogs.elc
deleted file mode 100644
index 79c2f85..0000000
--- a/elpa/ghub-20181112.1755/gogs.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/ghub-20181112.1755/gtea.el b/elpa/ghub-20181112.1755/gtea.el
deleted file mode 100644
index 07ca290..0000000
--- a/elpa/ghub-20181112.1755/gtea.el
+++ /dev/null
@@ -1,140 +0,0 @@
-;;; gtea.el --- minuscule client library for the Gitea API  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2016-2018  Jonas Bernoulli
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Homepage: https://github.com/magit/ghub
-;; Keywords: tools
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; For a copy of the GPL see https://www.gnu.org/licenses/gpl.txt.
-
-;;; Commentary:
-
-;; Gtea is a library that provides basic support for using the Gitea API
-;; from Emacs packages.  It abstracts access to API resources using only
-;; a handful of functions that are not resource-specific.
-
-;; This library is implemented on top of Ghub.  Unlike Ghub, Gtea does
-;; not support the guided creation of tokens because Gitea lacks the
-;; features that would be necessary to implement that.  Users have to
-;; create tokens through the web interface.
-
-;;; Code:
-
-(require 'ghub)
-
-(defconst gtea-default-host "localhost:3000/api/v1"
-  "The default host that is used if `gtea.host' is not set.")
-
-;; HEAD does not appear to be supported.
-
-(cl-defun gtea-get (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `GET' request for RESOURCE, with optional query PARAMS.
-Like calling `ghub-request' (which see) with \"GET\" as METHOD
-and `gitea' as FORGE."
-  (ghub-request "GET" resource params :forge 'gitea
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gtea-put (resource &optional params
-                             &key query payload headers
-                             silent unpaginate noerror reader
-                             username auth host
-                             callback errorback extra)
-  "Make a `PUT' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PUT\" as METHOD
-and `gitea' as FORGE."
-  (ghub-request "PUT" resource params :forge 'gitea
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gtea-post (resource &optional params
-                              &key query payload headers
-                              silent unpaginate noerror reader
-                              username auth host
-                              callback errorback extra)
-  "Make a `POST' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"POST\" as METHOD
-and `gitea' as FORGE."
-  (ghub-request "POST" resource params :forge 'gitea
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gtea-patch (resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host
-                               callback errorback extra)
-  "Make a `PATCH' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"PATCH\" as METHOD
-and `gitea' as FORGE."
-  (ghub-request "PATCH" resource params :forge 'gitea
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gtea-delete (resource &optional params
-                                &key query payload headers
-                                silent unpaginate noerror reader
-                                username auth host
-                                callback errorback extra)
-  "Make a `DELETE' request for RESOURCE, with optional payload PARAMS.
-Like calling `ghub-request' (which see) with \"DELETE\" as METHOD
-and `gitea' as FORGE."
-  (ghub-request "DELETE" resource params :forge 'gitea
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gtea-request (method resource &optional params
-                               &key query payload headers
-                               silent unpaginate noerror reader
-                               username auth host
-                               callback errorback extra)
-  "Make a request for RESOURCE and return the response body.
-Like calling `ghub-request' (which see) with `gitea' as FORGE."
-  (ghub-request method resource params :forge 'gitea
-                :query query :payload payload :headers headers
-                :silent silent :unpaginate unpaginate
-                :noerror noerror :reader reader
-                :username username :auth auth :host host
-                :callback callback :errorback errorback :extra extra))
-
-(cl-defun gtea-repository-id (owner name &key username auth host)
-  "Return the id of the repository specified by OWNER, NAME and HOST."
-  (number-to-string
-   (cdr (assq 'id (gtea-get (format "/repos/%s/%s" owner name)
-                            nil :username username :auth auth :host host)))))
-
-;;; _
-(provide 'gtea)
-;;; gtea.el ends here
diff --git a/elpa/ghub-20181112.1755/gtea.elc b/elpa/ghub-20181112.1755/gtea.elc
deleted file mode 100644
index c2ec20f..0000000
--- a/elpa/ghub-20181112.1755/gtea.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/git-commit-20181116.1408/git-commit-autoloads.el b/elpa/git-commit-20181116.1408/git-commit-autoloads.el
deleted file mode 100644
index bcf5372..0000000
--- a/elpa/git-commit-20181116.1408/git-commit-autoloads.el
+++ /dev/null
@@ -1,53 +0,0 @@
-;;; git-commit-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "git-commit" "git-commit.el" (0 0 0 0))
-;;; Generated autoloads from git-commit.el
-
-(defvar global-git-commit-mode t "\
-Non-nil if Global Git-Commit mode is enabled.
-See the `global-git-commit-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `global-git-commit-mode'.")
-
-(custom-autoload 'global-git-commit-mode "git-commit" nil)
-
-(autoload 'global-git-commit-mode "git-commit" "\
-Edit Git commit messages.
-This global mode arranges for `git-commit-setup' to be called
-when a Git commit message file is opened.  That usually happens
-when Git uses the Emacsclient as $GIT_EDITOR to have the user
-provide such a commit message.
-
-\(fn &optional ARG)" t nil)
-
-(defconst git-commit-filename-regexp "/\\(\\(\\(COMMIT\\|NOTES\\|PULLREQ\\|TAG\\)_EDIT\\|MERGE_\\|\\)MSG\\|\\(BRANCH\\|EDIT\\)_DESCRIPTION\\)\\'")
-
-(autoload 'git-commit-setup-check-buffer "git-commit" "\
-
-
-\(fn)" nil nil)
-
-(autoload 'git-commit-setup "git-commit" "\
-
-
-\(fn)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "git-commit" '("git-commit-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; git-commit-autoloads.el ends here
diff --git a/elpa/git-commit-20181116.1408/git-commit-pkg.el b/elpa/git-commit-20181116.1408/git-commit-pkg.el
deleted file mode 100644
index cda8e2f..0000000
--- a/elpa/git-commit-20181116.1408/git-commit-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "git-commit" "20181116.1408" "Edit Git commit messages" '((emacs "25.1") (dash "20180910") (with-editor "20181103")) :commit "36d89c88e1337ec2b33c75c3d426289c66f86b10" :keywords '("git" "tools" "vc") :maintainer '("Jonas Bernoulli" . "jonas@bernoul.li") :url "https://github.com/magit/magit")
diff --git a/elpa/git-commit-20181116.1408/git-commit.el b/elpa/git-commit-20181116.1408/git-commit.el
deleted file mode 100644
index 6b5c6d0..0000000
--- a/elpa/git-commit-20181116.1408/git-commit.el
+++ /dev/null
@@ -1,945 +0,0 @@
-;;; git-commit.el --- Edit Git commit messages  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Authors: Jonas Bernoulli <jonas@bernoul.li>
-;;	Sebastian Wiesner <lunaryorn@gmail.com>
-;;	Florian Ragwitz <rafl@debian.org>
-;;	Marius Vollmer <marius.vollmer@gmail.com>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Package-Requires: ((emacs "25.1") (dash "20180910") (with-editor "20181103"))
-;; Package-Version: 20181116.1408
-;; Keywords: git tools vc
-;; Homepage: https://github.com/magit/magit
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this file.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This package assists the user in writing good Git commit messages.
-
-;; While Git allows for the message to be provided on the command
-;; line, it is preferable to tell Git to create the commit without
-;; actually passing it a message.  Git then invokes the `$GIT_EDITOR'
-;; (or if that is undefined `$EDITOR') asking the user to provide the
-;; message by editing the file ".git/COMMIT_EDITMSG" (or another file
-;; in that directory, e.g. ".git/MERGE_MSG" for merge commits).
-
-;; When `global-git-commit-mode' is enabled, which it is by default,
-;; then opening such a file causes the features described below, to
-;; be enabled in that buffer.  Normally this would be done using a
-;; major-mode but to allow the use of any major-mode, as the user sees
-;; fit, it is done here by running a setup function, which among other
-;; things turns on the preferred major-mode, by default `text-mode'.
-
-;; Git waits for the `$EDITOR' to finish and then either creates the
-;; commit using the contents of the file as commit message, or, if the
-;; editor process exited with a non-zero exit status, aborts without
-;; creating a commit.  Unfortunately Emacsclient (which is what Emacs
-;; users should be using as `$EDITOR' or at least as `$GIT_EDITOR')
-;; does not differentiate between "successfully" editing a file and
-;; aborting; not out of the box that is.
-
-;; By making use of the `with-editor' package this package provides
-;; both ways of finish an editing session.  In either case the file
-;; is saved, but Emacseditor's exit code differs.
-;;
-;;   C-c C-c  Finish the editing session successfully by returning
-;;            with exit code 0.  Git then creates the commit using
-;;            the message it finds in the file.
-;;
-;;   C-c C-k  Aborts the edit editing session by returning with exit
-;;            code 1.  Git then aborts the commit.
-
-;; Aborting the commit does not cause the message to be lost, but
-;; relying solely on the file not being tampered with is risky.  This
-;; package additionally stores all aborted messages for the duration
-;; of the current session (i.e. until you close Emacs).  To get back
-;; an aborted message use M-p and M-n while editing a message.
-;;
-;;   M-p      Replace the buffer contents with the previous message
-;;            from the message ring.  Of course only after storing
-;;            the current content there too.
-;;
-;;   M-n      Replace the buffer contents with the next message from
-;;            the message ring, after storing the current content.
-
-;; Some support for pseudo headers as used in some projects is
-;; provided by these commands:
-;;
-;;   C-c C-s  Insert a Signed-off-by header.
-;;   C-c C-a  Insert a Acked-by header.
-;;   C-c C-m  Insert a Modified-by header.
-;;   C-c C-t  Insert a Tested-by header.
-;;   C-c C-r  Insert a Reviewed-by header.
-;;   C-c C-o  Insert a Cc header.
-;;   C-c C-p  Insert a Reported-by header.
-;;   C-c M-s  Insert a Suggested-by header.
-
-;; When Git requests a commit message from the user, it does so by
-;; having her edit a file which initially contains some comments,
-;; instructing her what to do, and providing useful information, such
-;; as which files were modified.  These comments, even when left
-;; intact by the user, do not become part of the commit message.  This
-;; package ensures these comments are propertizes as such and further
-;; prettifies them by using different faces for various parts, such as
-;; files.
-
-;; Finally this package highlights style errors, like lines that are
-;; too long, or when the second line is not empty.  It may even nag
-;; you when you attempt to finish the commit without having fixed
-;; these issues.  The style checks and many other settings can easily
-;; be configured:
-;;
-;;   M-x customize-group RET git-commit RET
-
-;;; Code:
-;;;; Dependencies
-
-(require 'dash)
-(require 'log-edit)
-(require 'magit-git nil t)
-(require 'magit-utils nil t)
-(require 'ring)
-(require 'server)
-(require 'with-editor)
-
-(eval-when-compile (require 'recentf))
-
-;;;; Declarations
-
-(defvar diff-default-read-only)
-(defvar flyspell-generic-check-word-predicate)
-(defvar font-lock-beg)
-(defvar font-lock-end)
-
-(declare-function magit-expand-git-file-name "magit-git" (filename))
-(declare-function magit-list-local-branch-names "magit-git" ())
-(declare-function magit-list-remote-branch-names "magit-git"
-                  (&optional remote relative))
-
-;;; Options
-;;;; Variables
-
-(defgroup git-commit nil
-  "Edit Git commit messages."
-  :prefix "git-commit-"
-  :link '(info-link "(magit)Editing Commit Messages")
-  :group 'tools)
-
-;;;###autoload
-(define-minor-mode global-git-commit-mode
-  "Edit Git commit messages.
-This global mode arranges for `git-commit-setup' to be called
-when a Git commit message file is opened.  That usually happens
-when Git uses the Emacsclient as $GIT_EDITOR to have the user
-provide such a commit message."
-  :group 'git-commit
-  :type 'boolean
-  :global t
-  :init-value t
-  :initialize (lambda (symbol exp)
-                (custom-initialize-default symbol exp)
-                (when global-git-commit-mode
-                  (add-hook 'find-file-hook 'git-commit-setup-check-buffer)))
-  (if global-git-commit-mode
-      (add-hook  'find-file-hook 'git-commit-setup-check-buffer)
-    (remove-hook 'find-file-hook 'git-commit-setup-check-buffer)))
-
-(defcustom git-commit-major-mode 'text-mode
-  "Major mode used to edit Git commit messages.
-The major mode configured here is turned on by the minor mode
-`git-commit-mode'."
-  :group 'git-commit
-  :type '(choice (function-item text-mode)
-                 (const :tag "No major mode")))
-
-(defcustom git-commit-setup-hook
-  '(git-commit-save-message
-    git-commit-setup-changelog-support
-    git-commit-turn-on-auto-fill
-    git-commit-propertize-diff
-    bug-reference-mode
-    with-editor-usage-message)
-  "Hook run at the end of `git-commit-setup'."
-  :group 'git-commit
-  :type 'hook
-  :get (and (featurep 'magit-utils) 'magit-hook-custom-get)
-  :options '(git-commit-save-message
-             git-commit-setup-changelog-support
-             git-commit-turn-on-auto-fill
-             git-commit-turn-on-flyspell
-             git-commit-propertize-diff
-             bug-reference-mode
-             with-editor-usage-message))
-
-(defcustom git-commit-post-finish-hook nil
-  "Hook run after the user finished writing a commit message.
-
-\\<with-editor-mode-map>\
-This hook is only run after pressing \\[with-editor-finish] in a buffer used
-to edit a commit message.  If a commit is created without the
-user typing a message into a buffer, then this hook is not run.
-
-This hook is not run until the new commit has been created.  If
-doing so takes Git longer than one second, then this hook isn't
-run at all.  For certain commands such as `magit-rebase-continue'
-this hook is never run because doing so would lead to a race
-condition.
-
-Also see `magit-post-commit-hook'."
-  :group 'git-commit
-  :type 'hook
-  :get (and (featurep 'magit-utils) 'magit-hook-custom-get))
-
-(defcustom git-commit-finish-query-functions
-  '(git-commit-check-style-conventions)
-  "List of functions called to query before performing commit.
-
-The commit message buffer is current while the functions are
-called.  If any of them returns nil, then the commit is not
-performed and the buffer is not killed.  The user should then
-fix the issue and try again.
-
-The functions are called with one argument.  If it is non-nil,
-then that indicates that the user used a prefix argument to
-force finishing the session despite issues.  Functions should
-usually honor this wish and return non-nil."
-  :options '(git-commit-check-style-conventions)
-  :type 'hook
-  :group 'git-commit)
-
-(defcustom git-commit-style-convention-checks '(non-empty-second-line)
-  "List of checks performed by `git-commit-check-style-conventions'.
-Valid members are `non-empty-second-line' and `overlong-summary-line'.
-That function is a member of `git-commit-finish-query-functions'."
-  :options '(non-empty-second-line overlong-summary-line)
-  :type '(list :convert-widget custom-hook-convert-widget)
-  :group 'git-commit)
-
-(defcustom git-commit-summary-max-length 68
-  "Column beyond which characters in the summary lines are highlighted.
-
-The highlighting indicates that the summary is getting too long
-by some standards.  It does in no way imply that going over the
-limit a few characters or in some cases even many characters is
-anything that deserves shaming.  It's just a friendly reminder
-that if you can make the summary shorter, then you might want
-to consider doing so."
-  :group 'git-commit
-  :safe 'numberp
-  :type 'number)
-
-(defcustom git-commit-fill-column nil
-  "Override `fill-column' in commit message buffers.
-
-If this is non-nil, then it should be an integer.  If that is the
-case and the buffer-local value of `fill-column' is not already
-set by the time `git-commit-turn-on-auto-fill' is called as a
-member of `git-commit-setup-hook', then that function sets the
-buffer-local value of `fill-column' to the value of this option.
-
-This option exists mostly for historic reasons.  If you are not
-already using it, then you probably shouldn't start doing so."
-  :group 'git-commit
-  :safe 'numberp
-  :type '(choice (const :tag "use regular fill-column")
-                 number))
-
-(make-obsolete-variable 'git-commit-fill-column 'fill-column
-                        "Magit 2.11.0" 'set)
-
-(defcustom git-commit-known-pseudo-headers
-  '("Signed-off-by" "Acked-by" "Modified-by" "Cc"
-    "Suggested-by" "Reported-by" "Tested-by" "Reviewed-by")
-  "A list of Git pseudo headers to be highlighted."
-  :group 'git-commit
-  :safe (lambda (val) (and (listp val) (-all-p 'stringp val)))
-  :type '(repeat string))
-
-;;;; Faces
-
-(defgroup git-commit-faces nil
-  "Faces used for highlighting Git commit messages."
-  :prefix "git-commit-"
-  :group 'git-commit
-  :group 'faces)
-
-(defface git-commit-summary
-  '((t :inherit font-lock-type-face))
-  "Face used for the summary in commit messages."
-  :group 'git-commit-faces)
-
-(defface git-commit-overlong-summary
-  '((t :inherit font-lock-warning-face))
-  "Face used for the tail of overlong commit message summaries."
-  :group 'git-commit-faces)
-
-(defface git-commit-nonempty-second-line
-  '((t :inherit font-lock-warning-face))
-  "Face used for non-whitespace on the second line of commit messages."
-  :group 'git-commit-faces)
-
-(defface git-commit-note
-  '((t :inherit font-lock-string-face))
-  "Face used for notes in commit messages."
-  :group 'git-commit-faces)
-
-(defface git-commit-pseudo-header
-  '((t :inherit font-lock-string-face))
-  "Face used for pseudo headers in commit messages."
-  :group 'git-commit-faces)
-
-(defface git-commit-known-pseudo-header
-  '((t :inherit font-lock-keyword-face))
-  "Face used for the keywords of known pseudo headers in commit messages."
-  :group 'git-commit-faces)
-
-(defface git-commit-comment-branch-local
-  (if (featurep 'magit)
-      '((t :inherit magit-branch-local))
-    '((t :inherit font-lock-variable-name-face)))
-  "Face used for names of local branches in commit message comments."
-  :group 'git-commit-faces)
-
-(define-obsolete-face-alias 'git-commit-comment-branch
-  'git-commit-comment-branch-local "Git-Commit 2.12.0")
-
-(defface git-commit-comment-branch-remote
-  (if (featurep 'magit)
-      '((t :inherit magit-branch-remote))
-    '((t :inherit font-lock-variable-name-face)))
-  "Face used for names of remote branches in commit message comments.
-This is only used if Magit is available."
-  :group 'git-commit-faces)
-
-(defface git-commit-comment-detached
-  '((t :inherit git-commit-comment-branch-local))
-  "Face used for detached `HEAD' in commit message comments."
-  :group 'git-commit-faces)
-
-(defface git-commit-comment-heading
-  '((t :inherit git-commit-known-pseudo-header))
-  "Face used for headings in commit message comments."
-  :group 'git-commit-faces)
-
-(defface git-commit-comment-file
-  '((t :inherit git-commit-pseudo-header))
-  "Face used for file names in commit message comments."
-  :group 'git-commit-faces)
-
-(defface git-commit-comment-action
-  '((t :inherit bold))
-  "Face used for actions in commit message comments."
-  :group 'git-commit-faces)
-
-;;; Keymap
-
-(defvar git-commit-mode-map
-  (let ((map (make-sparse-keymap)))
-    (cond ((featurep 'jkl)
-           (define-key map (kbd "C-M-i") 'git-commit-prev-message)
-           (define-key map (kbd "C-M-k") 'git-commit-next-message))
-          (t
-           (define-key map (kbd "M-p") 'git-commit-prev-message)
-           (define-key map (kbd "M-n") 'git-commit-next-message)
-           ;; Old bindings to avoid confusion
-           (define-key map (kbd "C-c C-x a") 'git-commit-ack)
-           (define-key map (kbd "C-c C-x i") 'git-commit-suggested)
-           (define-key map (kbd "C-c C-x m") 'git-commit-modified)
-           (define-key map (kbd "C-c C-x o") 'git-commit-cc)
-           (define-key map (kbd "C-c C-x p") 'git-commit-reported)
-           (define-key map (kbd "C-c C-x r") 'git-commit-review)
-           (define-key map (kbd "C-c C-x s") 'git-commit-signoff)
-           (define-key map (kbd "C-c C-x t") 'git-commit-test)))
-    (define-key map (kbd "C-c C-a") 'git-commit-ack)
-    (define-key map (kbd "C-c C-i") 'git-commit-suggested)
-    (define-key map (kbd "C-c C-m") 'git-commit-modified)
-    (define-key map (kbd "C-c C-o") 'git-commit-cc)
-    (define-key map (kbd "C-c C-p") 'git-commit-reported)
-    (define-key map (kbd "C-c C-r") 'git-commit-review)
-    (define-key map (kbd "C-c C-s") 'git-commit-signoff)
-    (define-key map (kbd "C-c C-t") 'git-commit-test)
-    (define-key map (kbd "C-c M-s") 'git-commit-save-message)
-    map)
-  "Key map used by `git-commit-mode'.")
-
-;;; Menu
-
-(require 'easymenu)
-(easy-menu-define git-commit-mode-menu git-commit-mode-map
-  "Git Commit Mode Menu"
-  '("Commit"
-    ["Previous" git-commit-prev-message t]
-    ["Next" git-commit-next-message t]
-    "-"
-    ["Ack" git-commit-ack :active t
-     :help "Insert an 'Acked-by' header"]
-    ["Sign-Off" git-commit-signoff :active t
-     :help "Insert a 'Signed-off-by' header"]
-    ["Modified-by" git-commit-modified :active t
-     :help "Insert a 'Modified-by' header"]
-    ["Tested-by" git-commit-test :active t
-     :help "Insert a 'Tested-by' header"]
-    ["Reviewed-by" git-commit-review :active t
-     :help "Insert a 'Reviewed-by' header"]
-    ["CC" git-commit-cc t
-     :help "Insert a 'Cc' header"]
-    ["Reported" git-commit-reported :active t
-     :help "Insert a 'Reported-by' header"]
-    ["Suggested" git-commit-suggested t
-     :help "Insert a 'Suggested-by' header"]
-    "-"
-    ["Save" git-commit-save-message t]
-    ["Cancel" with-editor-cancel t]
-    ["Commit" with-editor-finish t]))
-
-;;; Hooks
-
-;;;###autoload
-(defconst git-commit-filename-regexp "/\\(\
-\\(\\(COMMIT\\|NOTES\\|PULLREQ\\|TAG\\)_EDIT\\|MERGE_\\|\\)MSG\
-\\|\\(BRANCH\\|EDIT\\)_DESCRIPTION\\)\\'")
-
-(eval-after-load 'recentf
-  '(add-to-list 'recentf-exclude git-commit-filename-regexp))
-
-(add-to-list 'with-editor-file-name-history-exclude git-commit-filename-regexp)
-
-(defun git-commit-setup-font-lock-in-buffer ()
-  (and buffer-file-name
-       (string-match-p git-commit-filename-regexp buffer-file-name)
-       (git-commit-setup-font-lock)))
-
-(add-hook 'after-change-major-mode-hook 'git-commit-setup-font-lock-in-buffer)
-
-;;;###autoload
-(defun git-commit-setup-check-buffer ()
-  (and buffer-file-name
-       (string-match-p git-commit-filename-regexp buffer-file-name)
-       (git-commit-setup)))
-
-(defvar git-commit-mode)
-
-(defun git-commit-file-not-found ()
-  ;; cygwin git will pass a cygwin path (/cygdrive/c/foo/.git/...),
-  ;; try to handle this in window-nt Emacs.
-  (--when-let
-      (and (or (string-match-p git-commit-filename-regexp buffer-file-name)
-               (and (boundp 'git-rebase-filename-regexp)
-                    (string-match-p git-rebase-filename-regexp
-                                    buffer-file-name)))
-           (not (file-accessible-directory-p
-                 (file-name-directory buffer-file-name)))
-           (if (require 'magit-git nil t)
-               ;; Emacs prepends a "c:".
-               (magit-expand-git-file-name (substring buffer-file-name 2))
-             ;; Fallback if we can't load `magit-git'.
-             (and (string-match "\\`[a-z]:/\\(cygdrive/\\)?\\([a-z]\\)/\\(.*\\)"
-                                buffer-file-name)
-                  (concat (match-string 2 buffer-file-name) ":/"
-                          (match-string 3 buffer-file-name)))))
-    (when (file-accessible-directory-p (file-name-directory it))
-      (let ((inhibit-read-only t))
-        (insert-file-contents it t)
-        t))))
-
-(when (eq system-type 'windows-nt)
-  (add-hook 'find-file-not-found-functions #'git-commit-file-not-found))
-
-;;;###autoload
-(defun git-commit-setup ()
-  ;; Pretend that git-commit-mode is a major-mode,
-  ;; so that directory-local settings can be used.
-  (let ((default-directory
-          (if (or (file-exists-p ".dir-locals.el")
-                  (not (fboundp 'magit-toplevel)))
-              default-directory
-            ;; When $GIT_DIR/.dir-locals.el doesn't exist,
-            ;; fallback to $GIT_WORK_TREE/.dir-locals.el,
-            ;; because the maintainer can use the latter
-            ;; to enforce conventions, while s/he has no
-            ;; control over the former.
-            (and (fboundp 'magit-toplevel) ; silence byte-compiler
-                 (magit-toplevel)))))
-    (let ((buffer-file-name nil)         ; trick hack-dir-local-variables
-          (major-mode 'git-commit-mode)) ; trick dir-locals-collect-variables
-      (hack-dir-local-variables)
-      (hack-local-variables-apply)))
-  (when git-commit-major-mode
-    (let ((auto-mode-alist (list (cons (concat "\\`"
-                                               (regexp-quote buffer-file-name)
-                                               "\\'")
-                                       git-commit-major-mode)))
-          ;; The major-mode hook might want to consult these minor
-          ;; modes, while the minor-mode hooks might want to consider
-          ;; the major mode.
-          (git-commit-mode t)
-          (with-editor-mode t))
-      (normal-mode t)))
-  (setq with-editor-show-usage nil)
-  (unless with-editor-mode
-    ;; Maybe already enabled when using `shell-command' or an Emacs shell.
-    (with-editor-mode 1))
-  (add-hook 'with-editor-finish-query-functions
-            'git-commit-finish-query-functions nil t)
-  (add-hook 'with-editor-pre-finish-hook
-            'git-commit-save-message nil t)
-  (add-hook 'with-editor-pre-cancel-hook
-            'git-commit-save-message nil t)
-  (when (and (fboundp 'magit-rev-parse)
-             (not (memq last-command
-                        '(magit-sequencer-continue
-                          magit-sequencer-skip
-                          magit-am-continue
-                          magit-am-skip
-                          magit-rebase-continue
-                          magit-rebase-skip))))
-    (add-hook 'with-editor-post-finish-hook
-              (apply-partially 'git-commit-run-post-finish-hook
-                               (magit-rev-parse "HEAD"))
-              nil t)
-    (when (fboundp 'magit-wip-maybe-add-commit-hook)
-      (magit-wip-maybe-add-commit-hook)))
-  (setq with-editor-cancel-message
-        'git-commit-cancel-message)
-  (make-local-variable 'log-edit-comment-ring-index)
-  (git-commit-mode 1)
-  (git-commit-setup-font-lock)
-  (when (boundp 'save-place)
-    (setq save-place nil))
-  (save-excursion
-    (goto-char (point-min))
-    (when (looking-at "\\`\\(\\'\\|\n[^\n]\\)")
-      (open-line 1)))
-  (run-hooks 'git-commit-setup-hook)
-  (set-buffer-modified-p nil))
-
-(defun git-commit-run-post-finish-hook (previous)
-  (when git-commit-post-finish-hook
-    (cl-block nil
-      (let ((break (time-add (current-time)
-                             (seconds-to-time 1))))
-        (while (equal (magit-rev-parse "HEAD") previous)
-          (if (time-less-p (current-time) break)
-              (sit-for 0.01)
-            (message "No commit created after 1 second.  Not running %s."
-                     'git-commit-post-finish-hook)
-            (cl-return))))
-      (run-hooks 'git-commit-post-finish-hook))))
-
-(define-minor-mode git-commit-mode
-  "Auxiliary minor mode used when editing Git commit messages.
-This mode is only responsible for setting up some key bindings.
-Don't use it directly, instead enable `global-git-commit-mode'."
-  :lighter "")
-
-(put 'git-commit-mode 'permanent-local t)
-
-(defun git-commit-setup-changelog-support ()
-  "Treat ChangeLog entries as paragraphs."
-  (setq-local paragraph-start (concat paragraph-start "\\|\\*\\|(")))
-
-(defun git-commit-turn-on-auto-fill ()
-  "Unconditionally turn on Auto Fill mode.
-If `git-commit-fill-column' is non-nil, and `fill-column'
-doesn't already have a buffer-local value, then set that
-to `git-commit-fill-column'."
-  (when (and (numberp git-commit-fill-column)
-             (not (local-variable-p 'fill-column)))
-    (setq fill-column git-commit-fill-column))
-  (setq-local comment-auto-fill-only-comments nil)
-  (turn-on-auto-fill))
-
-(defun git-commit-turn-on-flyspell ()
-  "Unconditionally turn on Flyspell mode.
-Also prevent comments from being checked and
-finally check current non-comment text."
-  (require 'flyspell)
-  (turn-on-flyspell)
-  (setq flyspell-generic-check-word-predicate
-        'git-commit-flyspell-verify)
-  (let ((end)
-        (comment-start-regex (format "^\\(%s\\|$\\)" comment-start)))
-    (save-excursion
-      (goto-char (point-max))
-      (while (and (not (bobp)) (looking-at comment-start-regex))
-        (forward-line -1))
-      (unless (looking-at comment-start-regex)
-        (forward-line))
-      (setq end (point)))
-    (flyspell-region (point-min) end)))
-
-(defun git-commit-flyspell-verify ()
-  (not (= (char-after (line-beginning-position))
-          (aref comment-start 0))))
-
-(defun git-commit-finish-query-functions (force)
-  (run-hook-with-args-until-failure
-   'git-commit-finish-query-functions force))
-
-(defun git-commit-check-style-conventions (force)
-  "Check for violations of certain basic style conventions.
-
-For each violation ask the user if she wants to proceed anyway.
-Option `git-commit-check-style-conventions' controls which
-conventions are checked."
-  (or force
-      (save-excursion
-        (goto-char (point-min))
-        (re-search-forward (git-commit-summary-regexp) nil t)
-        (if (equal (match-string 1) "")
-            t ; Just try; we don't know whether --allow-empty-message was used.
-          (and (or (not (memq 'overlong-summary-line
-                              git-commit-style-convention-checks))
-                   (equal (match-string 2) "")
-                   (y-or-n-p "Summary line is too long.  Commit anyway? "))
-               (or (not (memq 'non-empty-second-line
-                              git-commit-style-convention-checks))
-                   (not (match-string 3))
-                   (y-or-n-p "Second line is not empty.  Commit anyway? ")))))))
-
-(defun git-commit-cancel-message ()
-  (message
-   (concat "Commit canceled"
-           (and (memq 'git-commit-save-message with-editor-pre-cancel-hook)
-                ".  Message saved to `log-edit-comment-ring'"))))
-
-;;; History
-
-(defun git-commit-prev-message (arg)
-  "Cycle backward through message history, after saving current message.
-With a numeric prefix ARG, go back ARG comments."
-  (interactive "*p")
-  (when (and (git-commit-save-message) (> arg 0))
-    (setq log-edit-comment-ring-index
-          (log-edit-new-comment-index
-           arg (ring-length log-edit-comment-ring))))
-  (save-restriction
-    (goto-char (point-min))
-    (narrow-to-region (point)
-                      (if (re-search-forward (concat "^" comment-start) nil t)
-                          (max 1 (- (point) 2))
-                        (point-max)))
-    (log-edit-previous-comment arg)))
-
-(defun git-commit-next-message (arg)
-  "Cycle forward through message history, after saving current message.
-With a numeric prefix ARG, go forward ARG comments."
-  (interactive "*p")
-  (git-commit-prev-message (- arg)))
-
-(defun git-commit-save-message ()
-  "Save current message to `log-edit-comment-ring'."
-  (interactive)
-  (--when-let (git-commit-buffer-message)
-    (unless (ring-member log-edit-comment-ring it)
-      (ring-insert log-edit-comment-ring it))))
-
-(defun git-commit-buffer-message ()
-  (let ((flush (concat "^" comment-start))
-        (str (buffer-substring-no-properties (point-min) (point-max))))
-    (with-temp-buffer
-      (insert str)
-      (goto-char (point-min))
-      (when (re-search-forward (concat flush " -+ >8 -+$") nil t)
-        (delete-region (point-at-bol) (point-max)))
-      (goto-char (point-min))
-      (flush-lines flush)
-      (goto-char (point-max))
-      (unless (eq (char-before) ?\n)
-        (insert ?\n))
-      (setq str (buffer-string)))
-    (unless (string-match "\\`[ \t\n\r]*\\'" str)
-      (when (string-match "\\`\n\\{2,\\}" str)
-        (setq str (replace-match "\n" t t str)))
-      (when (string-match "\n\\{2,\\}\\'" str)
-        (setq str (replace-match "\n" t t str)))
-      str)))
-
-;;; Headers
-
-(defun git-commit-ack (name mail)
-  "Insert a header acknowledging that you have looked at the commit."
-  (interactive (git-commit-self-ident))
-  (git-commit-insert-header "Acked-by" name mail))
-
-(defun git-commit-modified (name mail)
-  "Insert a header to signal that you have modified the commit."
-  (interactive (git-commit-self-ident))
-  (git-commit-insert-header "Modified-by" name mail))
-
-(defun git-commit-review (name mail)
-  "Insert a header acknowledging that you have reviewed the commit."
-  (interactive (git-commit-self-ident))
-  (git-commit-insert-header "Reviewed-by" name mail))
-
-(defun git-commit-signoff (name mail)
-  "Insert a header to sign off the commit."
-  (interactive (git-commit-self-ident))
-  (git-commit-insert-header "Signed-off-by" name mail))
-
-(defun git-commit-test (name mail)
-  "Insert a header acknowledging that you have tested the commit."
-  (interactive (git-commit-self-ident))
-  (git-commit-insert-header "Tested-by" name mail))
-
-(defun git-commit-cc (name mail)
-  "Insert a header mentioning someone who might be interested."
-  (interactive (git-commit-read-ident))
-  (git-commit-insert-header "Cc" name mail))
-
-(defun git-commit-reported (name mail)
-  "Insert a header mentioning the person who reported the issue."
-  (interactive (git-commit-read-ident))
-  (git-commit-insert-header "Reported-by" name mail))
-
-(defun git-commit-suggested (name mail)
-  "Insert a header mentioning the person who suggested the change."
-  (interactive (git-commit-read-ident))
-  (git-commit-insert-header "Suggested-by" name mail))
-
-(defun git-commit-self-ident ()
-  (list (or (getenv "GIT_AUTHOR_NAME")
-            (getenv "GIT_COMMITTER_NAME")
-            (ignore-errors (car (process-lines "git" "config" "user.name")))
-            user-full-name
-            (read-string "Name: "))
-        (or (getenv "GIT_AUTHOR_EMAIL")
-            (getenv "GIT_COMMITTER_EMAIL")
-            (getenv "EMAIL")
-            (ignore-errors (car (process-lines "git" "config" "user.email")))
-            (read-string "Email: "))))
-
-(defun git-commit-read-ident ()
-  (list (read-string "Name: ")
-        (read-string "Email: ")))
-
-(defun git-commit-insert-header (header name email)
-  (setq header (format "%s: %s <%s>" header name email))
-  (save-excursion
-    (goto-char (point-max))
-    (cond ((re-search-backward "^[-a-zA-Z]+: [^<]+? <[^>]+>" nil t)
-           (end-of-line)
-           (insert ?\n header)
-           (unless (= (char-after) ?\n)
-             (insert ?\n)))
-          (t
-           (while (re-search-backward (concat "^" comment-start) nil t))
-           (unless (looking-back "\n\n" nil)
-             (insert ?\n))
-           (insert header ?\n)))
-    (unless (or (eobp) (= (char-after) ?\n))
-      (insert ?\n))))
-
-;;; Font-Lock
-
-(defun git-commit-summary-regexp ()
-  (concat
-   ;; Leading empty lines and comments
-   (format "\\`\\(?:^\\(?:\\s-*\\|%s.*\\)\n\\)*" comment-start)
-   ;; Summary line
-   (format "\\(.\\{0,%d\\}\\)\\(.*\\)" git-commit-summary-max-length)
-   ;; Non-empty non-comment second line
-   (format "\\(?:\n%s\\|\n\\(.+\\)\\)?" comment-start)))
-
-(defun git-commit-extend-region-summary-line ()
-  "Identify the multiline summary-regexp construct.
-Added to `font-lock-extend-region-functions'."
-  (save-excursion
-    (save-match-data
-      (goto-char (point-min))
-      (when (looking-at (git-commit-summary-regexp))
-        (let ((summary-beg (match-beginning 0))
-              (summary-end (match-end 0)))
-          (when (or (< summary-beg font-lock-beg summary-end)
-                    (< summary-beg font-lock-end summary-end))
-            (setq font-lock-beg (min font-lock-beg summary-beg))
-            (setq font-lock-end (max font-lock-end summary-end))))))))
-
-(defvar-local git-commit--branch-name-regexp nil)
-
-(defconst git-commit-comment-headings
-  '("Changes to be committed:"
-    "Untracked files:"
-    "Changed but not updated:"
-    "Changes not staged for commit:"
-    "Unmerged paths:"
-    "Author:"
-    "Date:"))
-
-(defconst git-commit-font-lock-keywords-1
-  '(;; Pseudo headers
-    (eval . `(,(format "^\\(%s:\\)\\( .*\\)"
-                       (regexp-opt git-commit-known-pseudo-headers))
-              (1 'git-commit-known-pseudo-header)
-              (2 'git-commit-pseudo-header)))
-    ("^[-a-zA-Z]+: [^<]+? <[^>]+>"
-     (0 'git-commit-pseudo-header))
-    ;; Summary
-    (eval . `(,(git-commit-summary-regexp)
-              (1 'git-commit-summary)))
-    ;; - Note (overrides summary)
-    ("\\[.+?\\]"
-     (0 'git-commit-note t))
-    ;; - Non-empty second line (overrides summary and note)
-    (eval . `(,(git-commit-summary-regexp)
-              (2 'git-commit-overlong-summary t t)
-              (3 'git-commit-nonempty-second-line t t)))))
-
-(defconst git-commit-font-lock-keywords-2
-  `(,@git-commit-font-lock-keywords-1
-    ;; Comments
-    (eval . `(,(format "^%s.*" comment-start)
-              (0 'font-lock-comment-face)))
-    (eval . `(,(format "^%s On branch \\(.*\\)" comment-start)
-              (1 'git-commit-comment-branch-local t)))
-    (eval . `(,(format "^%s \\(HEAD\\) detached at" comment-start)
-              (1 'git-commit-comment-detached t)))
-    (eval . `(,(format "^%s %s" comment-start
-                       (regexp-opt git-commit-comment-headings t))
-              (1 'git-commit-comment-heading t)))
-    (eval . `(,(format "^%s\t\\(?:\\([^:\n]+\\):\\s-+\\)?\\(.*\\)" comment-start)
-              (1 'git-commit-comment-action t t)
-              (2 'git-commit-comment-file t)))))
-
-(defconst git-commit-font-lock-keywords-3
-  `(,@git-commit-font-lock-keywords-2
-    ;; More comments
-    (eval
-     ;; Your branch is ahead of 'master' by 3 commits.
-     ;; Your branch is behind 'master' by 2 commits, and can be fast-forwarded.
-     . `(,(format
-           "^%s Your branch is \\(?:ahead\\|behind\\) of '%s' by \\([0-9]*\\)"
-           comment-start git-commit--branch-name-regexp)
-         (1 'git-commit-comment-branch-local t)
-         (2 'git-commit-comment-branch-remote t)
-         (3 'bold t)))
-    (eval
-     ;; Your branch is up to date with 'master'.
-     ;; Your branch and 'master' have diverged,
-     . `(,(format
-           "^%s Your branch \\(?:is up-to-date with\\|and\\) '%s'"
-           comment-start git-commit--branch-name-regexp)
-         (1 'git-commit-comment-branch-local t)
-         (2 'git-commit-comment-branch-remote t)))
-    (eval
-     ;; and have 1 and 2 different commits each, respectively.
-     . `(,(format
-           "^%s and have \\([0-9]*\\) and \\([0-9]*\\) commits each"
-           comment-start)
-         (1 'bold t)
-         (2 'bold t)))))
-
-(defvar git-commit-font-lock-keywords git-commit-font-lock-keywords-2
-  "Font-Lock keywords for Git-Commit mode.")
-
-(defun git-commit-setup-font-lock ()
-  (let ((table (make-syntax-table (syntax-table))))
-    (when comment-start
-      (modify-syntax-entry (string-to-char comment-start) "." table))
-    (modify-syntax-entry ?#  "." table)
-    (modify-syntax-entry ?\" "." table)
-    (modify-syntax-entry ?\' "." table)
-    (modify-syntax-entry ?`  "." table)
-    (set-syntax-table table))
-  (setq-local comment-start
-              (or (ignore-errors
-                    (car (process-lines "git" "config" "core.commentchar")))
-                  "#"))
-  (setq-local comment-start-skip (format "^%s+[\s\t]*" comment-start))
-  (setq-local comment-end-skip "\n")
-  (setq-local comment-use-syntax nil)
-  (setq-local git-commit--branch-name-regexp
-              (if (and (featurep 'magit-git)
-                       ;; When using cygwin git, we may end up in a
-                       ;; non-existing directory, which would cause
-                       ;; any git calls to signal an error.
-                       (file-accessible-directory-p default-directory))
-                  (progn
-                    ;; Make sure the below functions are available.
-                    (require 'magit)
-                    ;; Font-Lock wants every submatch to succeed,
-                    ;; so also match the empty string.  Do not use
-                    ;; `regexp-quote' because that is slow if there
-                    ;; are thousands of branches outweighing the
-                    ;; benefit of an efficient regep.
-                    (format "\\(\\(?:%s\\)\\|\\)\\(\\(?:%s\\)\\|\\)"
-                            (mapconcat #'identity
-                                       (magit-list-local-branch-names)
-                                       "\\|")
-                            (mapconcat #'identity
-                                       (magit-list-remote-branch-names)
-                                       "\\|")))
-                "\\([^']*\\)"))
-  (setq-local font-lock-multiline t)
-  (add-hook 'font-lock-extend-region-functions
-            #'git-commit-extend-region-summary-line
-            t t)
-  (font-lock-add-keywords nil git-commit-font-lock-keywords t))
-
-(defun git-commit-propertize-diff ()
-  (require 'diff-mode)
-  (save-excursion
-    (goto-char (point-min))
-    (when (re-search-forward "^diff --git" nil t)
-      (beginning-of-line)
-      (let ((buffer (current-buffer)))
-        (insert
-         (with-temp-buffer
-           (insert
-            (with-current-buffer buffer
-              (prog1 (buffer-substring-no-properties (point) (point-max))
-                (delete-region (point) (point-max)))))
-           (let ((diff-default-read-only nil))
-             (diff-mode))
-           (let (font-lock-verbose font-lock-support-mode)
-             (if (fboundp 'font-lock-ensure)
-                 (font-lock-ensure)
-               (with-no-warnings
-                 (font-lock-fontify-buffer))))
-           (let (next (pos (point-min)))
-             (while (setq next (next-single-property-change pos 'face))
-               (put-text-property pos next 'font-lock-face
-                                  (get-text-property pos 'face))
-               (setq pos next))
-             (put-text-property pos (point-max) 'font-lock-face
-                                (get-text-property pos 'face)))
-           (buffer-string)))))))
-
-;;; Elisp Text Mode
-
-(define-derived-mode git-commit-elisp-text-mode text-mode "ElText"
-  "Major mode for editing commit messages of elisp projects.
-This is intended for use as `git-commit-major-mode' for projects
-that expect `symbols' to look like this.  I.e. like they look in
-Elisp doc-strings, including this one.  Unlike in doc-strings,
-\"strings\" also look different than the other text."
-  (setq font-lock-defaults '(git-commit-elisp-text-mode-keywords)))
-
-(defvar git-commit-elisp-text-mode-keywords
-  `((,(concat "[`‘]\\(\\(?:\\sw\\|\\s_\\|\\\\.\\)"
-              lisp-mode-symbol-regexp "\\)['’]")
-     (1 font-lock-constant-face prepend))
-    ("\"[^\"]*\"" (0 font-lock-string-face prepend))))
-
-;;; _
-(provide 'git-commit)
-;;; git-commit.el ends here
diff --git a/elpa/git-commit-20181116.1408/git-commit.elc b/elpa/git-commit-20181116.1408/git-commit.elc
deleted file mode 100644
index 68a1147..0000000
--- a/elpa/git-commit-20181116.1408/git-commit.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/graphql-20180912.31/graphql-autoloads.el b/elpa/graphql-20180912.31/graphql-autoloads.el
deleted file mode 100644
index fd7bad3..0000000
--- a/elpa/graphql-20180912.31/graphql-autoloads.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; graphql-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "graphql" "graphql.el" (0 0 0 0))
-;;; Generated autoloads from graphql.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "graphql" '("graphql-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; graphql-autoloads.el ends here
diff --git a/elpa/graphql-20180912.31/graphql-pkg.el b/elpa/graphql-20180912.31/graphql-pkg.el
deleted file mode 100644
index 0ffffb1..0000000
--- a/elpa/graphql-20180912.31/graphql-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "graphql" "20180912.31" "GraphQL utilities" '((emacs "25")) :commit "e2b309689f4faf9225f290080f836e988c5a576d" :keywords '("hypermedia" "tools" "lisp") :authors '(("Sean Allred" . "code@seanallred.com")) :maintainer '("Sean Allred" . "code@seanallred.com") :url "https://github.com/vermiculus/graphql.el")
diff --git a/elpa/graphql-20180912.31/graphql.el b/elpa/graphql-20180912.31/graphql.el
deleted file mode 100644
index 75873f5..0000000
--- a/elpa/graphql-20180912.31/graphql.el
+++ /dev/null
@@ -1,220 +0,0 @@
-;;; graphql.el --- GraphQL utilities                 -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017  Sean Allred
-
-;; Author: Sean Allred <code@seanallred.com>
-;; Keywords: hypermedia, tools, lisp
-;; Homepage: https://github.com/vermiculus/graphql.el
-;; Package-Version: 20180912.31
-;; Package-X-Original-Version: 0.1.1
-;; Package-Requires: ((emacs "25"))
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; GraphQL.el provides a generally-applicable domain-specific language
-;; for creating and executing GraphQL queries against your favorite
-;; web services.
-
-;;; Code:
-
-(require 'pcase)
-
-(defun graphql--encode-object (obj)
-  "Encode OBJ as a GraphQL string."
-  (cond
-   ((stringp obj)
-    obj)
-   ((symbolp obj)
-    (symbol-name obj))
-   ((numberp obj)
-    (number-to-string obj))
-   ((and (consp obj)
-         (not (consp (cdr obj))))
-    (symbol-name (car obj)))))
-
-(defun graphql--encode-argument-spec (spec)
-  "Encode an argument spec SPEC.
-SPEC is of the form..."
-  (graphql--encode-argument (car spec) (cdr spec)))
-
-(defun graphql--encode-argument (key value)
-  "Encode an argument KEY with value VALUE."
-  (format "%s:%s" key (graphql--encode-argument-value value)))
-
-(defun graphql--encode-argument-value (value)
-  "Encode an argument value VALUE.
-VALUE is expected to be one of the following:
-
-* a symbol
-* a 'variable', i.e. \\='($ variableName)
-* an object (as a list)
-* a string
-* a vector of values (e.g., symbols)
-* a number
-* something encode-able by `graphql-encode'."
-  (cond
-   ((symbolp value)
-    (symbol-name value))
-   ((eq '$ (car-safe value))
-    (format "$%s" (cadr value)))
-   ((listp value)
-    (format "{%s}" (mapconcat #'graphql--encode-argument-spec value ",")))
-   ((stringp value)
-    (format "\"%s\"" value))
-   ((vectorp value)
-    (format "[%s]" (mapconcat #'graphql-encode value ",")))
-   ((numberp value)
-    (number-to-string value))
-   (t
-    (graphql-encode value))))
-
-(defun graphql--encode-parameter-spec (spec)
-  "Encode a parameter SPEC.
-SPEC is expected to be of the following form:
-
-   (NAME TYPE [REQUIRED] . [DEFAULT])
-
-NAME is the name of the parameter.
-
-TYPE is the parameter's type.
-
-A non-nil value for REQUIRED will indicate the parameter is
-required.  A value of `!' is recommended.
-
-A non-nil value for DEFAULT will provide a default value for the
-parameter."
-  ;; Unfortunately can't use `pcase' here because the first DEFAULT
-  ;; value (in the case of a complex value) might be misunderstood as
-  ;; the value for REQUIRED.  We need to know if the third cons is the
-  ;; very last one; not just that the list has at least three
-  ;; elements.
-  (if (eq (last spec) (nthcdr 2 spec))
-      (graphql--encode-parameter (nth 0 spec)
-                                 (nth 1 spec)
-                                 (car (last spec))
-                                 (cdr (last spec)))
-    (graphql--encode-parameter (nth 0 spec)
-                               (nth 1 spec)
-                               nil
-                               (nthcdr 2 spec))))
-
-(defun graphql--encode-parameter (name type &optional required default)
-  "Encode a GraphQL parameter with a NAME and TYPE.
-If REQUIRED is non-nil, mark the parameter as required.
-If DEFAULT is non-nil, is the default value of the parameter."
-  (format "$%s:%s%s%s"
-          (symbol-name name)
-          (symbol-name type)
-          (if required "!" "")
-          (if default
-              (concat "=" (graphql--encode-argument-value default))
-            "")))
-
-(defun graphql--get-keys (g)
-  "Get the keyword arguments from a graph G.
-Returns a list where the first element is a plist of arguments
-and the second is a 'clean' copy of G."
-  (or (and (not (consp g))
-           (list nil g))
-      (let (graph keys)
-        (while g
-          (if (keywordp (car g))
-              (let* ((param (pop g))
-                     (value (pop g)))
-                (push (cons param value) keys))
-            (push (pop g) graph)))
-        (list keys (nreverse graph)))))
-
-(defun graphql-encode (g)
-  "Encode graph G as a GraphQL string."
-  (pcase (graphql--get-keys g)
-    (`(,keys ,graph)
-     (let ((object (or (car-safe graph) graph))
-           (name (alist-get :op-name keys))
-           (params (alist-get :op-params keys))
-           (arguments (alist-get :arguments keys))
-           (fields (cdr-safe graph)))
-       (concat
-        (graphql--encode-object object)
-        (when name
-          (format " %S" name))
-        (when arguments
-          ;; Format arguments "key:value,key:value,..."
-          (format "(%s)"
-                  (mapconcat #'graphql--encode-argument-spec arguments ",")))
-        (when params
-          (format "(%s)"
-                  (mapconcat #'graphql--encode-parameter-spec params ",")))
-        (when fields
-          (format "{%s}"
-                  (mapconcat #'graphql-encode fields " "))))))))
-
-(defun graphql-simplify-response-edges (data)
-  "Simplify DATA to collapse edges into their nodes."
-  (pcase data
-    ;; When we encounter a collection of edges, simplify those edges
-    ;; into their nodes
-    (`(,object (edges . ,edges))
-     (cons object (mapcar #'graphql-simplify-response-edges
-                          (mapcar (lambda (edge) (alist-get 'node edge))
-                                  edges))))
-    ;; When we encounter a plain cons cell (not a list), let it pass
-    (`(,(and key (guard (not (consp key)))) . ,(and value (guard (not (consp value)))))
-     (cons key value))
-    ;; symbols should pass unaltered
-    (`,(and symbol (guard (symbolp symbol)))
-     symbol)
-    ;; everything else should be mapped
-    (_ (mapcar #'graphql-simplify-response-edges data))))
-
-(defun graphql--genform-operation (args kind)
-  "Generate the Lisp form for an operation.
-ARGS is is a list ([NAME [PARAMETERS]] GRAPH) where NAME is the
-name of the operation, PARAMETERS are its parameters, and GRAPH
-is the form of the actual operation.
-
-KIND can be `query' or `mutation'."
-  (pcase args
-    (`(,name ,parameters ,graph)
-     `(graphql-encode '(,kind :op-name ,name
-                              :op-params ,parameters
-                              ,@graph)))
-
-    (`(,name ,graph)
-     `(graphql-encode '(,kind :op-name ,name
-                              ,@graph)))
-
-    (`(,graph)
-     `(graphql-encode '(,kind ,@graph)))
-
-    (_ (error "Bad form"))))
-
-(defmacro graphql-query (&rest args)
-  "Construct a Query object.
-ARGS is a listof the form described by `graphql--genform-operation'.
-
-\(fn [NAME] [(PARAMETER-SPEC...)] GRAPH)"
-  (graphql--genform-operation args 'query))
-
-(defmacro graphql-mutation (&rest args)
-  "Construct a Mutation object.
-ARGS is a listof the form described by `graphql--genform-operation'.
-
-\(fn [NAME] [(PARAMETER-SPEC...)] GRAPH)"
-  (graphql--genform-operation args 'mutation))
-
-(provide 'graphql)
-;;; graphql.el ends here
diff --git a/elpa/graphql-20180912.31/graphql.elc b/elpa/graphql-20180912.31/graphql.elc
deleted file mode 100644
index c46d2b7..0000000
--- a/elpa/graphql-20180912.31/graphql.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/guide-key-20150108.635/guide-key-autoloads.el b/elpa/guide-key-20150108.635/guide-key-autoloads.el
deleted file mode 100644
index acf1dfd..0000000
--- a/elpa/guide-key-20150108.635/guide-key-autoloads.el
+++ /dev/null
@@ -1,42 +0,0 @@
-;;; guide-key-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "guide-key" "guide-key.el" (0 0 0 0))
-;;; Generated autoloads from guide-key.el
-
-(defvar guide-key-mode nil "\
-Non-nil if Guide-Key mode is enabled.
-See the `guide-key-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `guide-key-mode'.")
-
-(custom-autoload 'guide-key-mode "guide-key" nil)
-
-(autoload 'guide-key-mode "guide-key" "\
-Toggle guide key mode.
-
-In guide key mode, Guide following keys to an input key sequence
-automatically and dynamically.
-With a prefix argument ARG, enable guide key mode if ARG is
-positive, otherwise disable.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "guide-key" '("guide-key/")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; guide-key-autoloads.el ends here
diff --git a/elpa/guide-key-20150108.635/guide-key-pkg.el b/elpa/guide-key-20150108.635/guide-key-pkg.el
deleted file mode 100644
index 22c767b..0000000
--- a/elpa/guide-key-20150108.635/guide-key-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "guide-key" "20150108.635" "Guide the following key bindings automatically and dynamically" '((dash "2.10.0") (popwin "0.3.0") (s "1.9.0")) :commit "9236d287a7272e307fb941237390a96037c8c0a2" :keywords '("help" "convenience") :authors '(("Tsunenobu Kai" . "kai2nenobu@gmail.com")) :maintainer '("Tsunenobu Kai" . "kai2nenobu@gmail.com") :url "https://github.com/kai2nenobu/guide-key")
diff --git a/elpa/guide-key-20150108.635/guide-key.el b/elpa/guide-key-20150108.635/guide-key.el
deleted file mode 100644
index 399df7a..0000000
--- a/elpa/guide-key-20150108.635/guide-key.el
+++ /dev/null
@@ -1,643 +0,0 @@
-;;; guide-key.el --- Guide the following key bindings automatically and dynamically
-
-;; Copyright (C) 2012, 2013 Tsunenobu Kai
-
-;; Author: Tsunenobu Kai <kai2nenobu@gmail.com>
-;; URL: https://github.com/kai2nenobu/guide-key
-;; Package-Version: 20150108.635
-;; Version: 1.2.5
-;; Package-Requires: ((dash "2.10.0") (popwin "0.3.0") (s "1.9.0"))
-;; Keywords: help convenience
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Overview:
-;;
-;; guide-key.el displays the available key bindings automatically and dynamically.
-;; guide-key aims to be an alternative of one-key.el.
-;;
-;; Here are some features of this library.
-;; - guide-key automatically pops up the keys following your favorite
-;;   prefixes. Moreover, even if you change key bindings, guide-key follows the
-;;   change dynamically.
-;; - guide-key can highlight particular commands. This makes it easy to find a
-;;   command you are looking for, and to learn its key binding.
-;; - guide-key doesn't overwrite existing commands and key bindings, so there
-;;   is no interference with `describe-key' and `describe-bindings'.
-;;
-;;
-;; Installation:
-;;
-;; I added guide-key to MELPA. You can install guide-key with package.el.
-;; Because guide-key depends on popwin.el, popwin.el is also installed.
-;;
-;; If you don't have package.el, please download popwin.el and guide-key.el
-;; directly from https://github.com/m2ym/popwin-el and
-;; https://github.com/kai2nenobu/guide-key, and then put them in your
-;; `load-path'.
-;;
-;;
-;; Basic usage:
-;;
-;; You just add your favorite prefix keys to `guide-key/guide-key-sequence'
-;; as below.
-;;
-;;   (require 'guide-key)
-;;   (setq guide-key/guide-key-sequence '("C-x r" "C-x 4"))
-;;   (guide-key-mode 1) ; Enable guide-key-mode
-;;
-;; When you press these prefix keys, key bindings are automatically
-;; popped up after a short delay (1 second by default).
-;;
-;; To activate guide-key for any key sequence instead of just the ones
-;; listed above then use:
-;;
-;;   (setq guide-key/guide-key-sequence t)
-;;
-;; guide-key can highlight commands which match a specified regular expression.
-;; Key bindings following "C-x r" are rectangle family, register family and
-;; bookmark family.  If you want to highlight only rectangle family
-;; commands, put this setting in your init.el.
-;;
-;;   (setq guide-key/highlight-command-regexp "rectangle")
-;;
-;; This feature makes it easy to find commands and learn their key bindings.
-;; If you want to highlight all families, you can specify multiple regular
-;; expressions and faces as below.
-;;
-;;   (setq guide-key/highlight-command-regexp
-;;         '("rectangle"
-;;           ("register" . font-lock-type-face)
-;;           ("bookmark" . font-lock-warning-face)))
-;;
-;; If an element of `guide-key/highlight-command-regexp' is cons, its car
-;; means a regular expression to highlight, and its cdr means a face put on
-;; command names.
-;;
-;; Moreover, prefix commands are automatically highlighted.
-;;
-;; Depending on your level of emacs experience, you may want a shorter or
-;; longer delay between pressing a key and the appearance of the guide
-;; buffer.  This can be controlled by setting `guide-key/idle-delay':
-;;
-;;   (setq guide-key/idle-delay 0.1)
-;;
-;; The guide buffer is displayed only when you pause between keystrokes
-;; for longer than this delay, so it will keep out of your way when you
-;; are typing key sequences that you already know well.
-;;
-;; I've confirmed that guide-key works well in these environments.
-;; - Emacs 24.2, Ubuntu 12.04 or Windows 7 64bit
-;; - Emacs 23.3, Ubuntu 12.04 or Windows 7 64bit
-;; - Emacs 22.3, Windows 7 64bit
-;; - Emacs 24.3.1, OS X 10.9
-;; If popwin works, I think guide-key will work as well. You can use
-;; guide-key with Emacs working in terminal.
-;;
-;;
-;; Advanced usage:
-;;
-;; It is bothering to add many prefixes to `guide-key/guide-key-sequence'.
-;; `guide-key/recursive-key-sequence-flag' releases you from this problem.
-;; If `guide-key/recursive-key-sequence-flag' is non-nil, guide-key checks a
-;; input key sequence recursively. That is, if "C-x 8 ^" is an input key
-;; sequence, guide-key checks whether `guide-key/guide-key-sequence' includes
-;; "C-x 8" and "C-x".
-;;
-;; For example, if you configure as below,
-;;
-;;   (setq guide-key/guide-key-sequence '("C-x"))
-;;   (setq guide-key/recursive-key-sequence-flag t)
-;;
-;; the guide buffer is popped up when you input "C-x r", "C-x 8" and
-;; any other prefixes following "C-x".
-;;
-;;
-;; You can add extra settings in a particular mode. Please use
-;; `guide-key/add-local-guide-key-sequence',
-;; `guide-key/add-local-highlight-command-regexp' and the hook of
-;; that mode.
-;;
-;;
-;; This code is a example of org-mode.
-;;
-;;   (defun guide-key/my-hook-function-for-org-mode ()
-;;     (guide-key/add-local-guide-key-sequence "C-c")
-;;     (guide-key/add-local-guide-key-sequence "C-c C-x")
-;;     (guide-key/add-local-highlight-command-regexp "org-"))
-;;   (add-hook 'org-mode-hook 'guide-key/my-hook-function-for-org-mode)
-;;
-;; In respect of `guide-key/guide-key-sequence', you can add mode specific key
-;; sequences without `guide-key/add-local-guide-key-sequence'. For example,
-;; configure as below.
-;;
-;;   (setq guide-key/guide-key-sequence
-;;         '("C-x r" "C-x 4"
-;;           (org-mode "C-c C-x")
-;;           (outline-minor-mode "C-c @")))
-;;
-;; In this case, if the current major mode is `org-mode', guide key bindings
-;; following "C-c C-x".  If `outline-minor-mode' is enabled, guide key bindings
-;; following "C-c @".
-;;
-;;
-;; `guide-key' can work with key-chord.el.  If you want to guide key bindings
-;; following key chord, you need to execute
-;; `guide-key/key-chord-hack-on'.  Then, add your favorite key chord to
-;; `guide-key/guide-key-sequence' as below.
-;;
-;;   (key-chord-define global-map "@4" 'ctl-x-4-prefix)
-;;
-;;   (guide-key/key-chord-hack-on)
-;;   (setq guide-key/guide-key-sequence '("<key-chord> @ 4" "<key-chord> 4 @"))
-;;
-;; If =guide-key/recursive-key-sequence-flag= is non-nil, more simple.
-;;
-;;   (guide-key/key-chord-hack-on)
-;;   (setq guide-key/recursive-key-sequence-flag t)
-;;   (setq guide-key/guide-key-sequence '("<key-chord>"))
-;;
-;; In this case, key bindings are popped up when you type any of key chords.
-;;
-;; This hack *may be dangerous* because it advices primitive functions;
-;; `this-command-keys' and `this-command-keys-vector'.
-;;
-;;
-;; Here are some functions and variables which control guide-key.
-;; - `guide-key-mode':
-;;   guide-key-mode is implemented as a minor mode.
-;;   Excuting M-x guide-key-mode toggles whether guide-key is enabled or
-;;   not.  Because guide-key-mode is a global minor mode, guide-key-mode is
-;;   enabled in all buffers or disabled in all buffers.
-;; - `guide-key/popup-window-position':
-;;   This variable controls where a guide-key buffer is popped up. A value of
-;;   this variable is one of `right', `bottom', `left', `top'. The default
-;;   value is `right'.
-;; - `guide-key/polling-time':
-;;   This variable controls a polling time. The default value is 0.1 (in seconds).
-;; - `guide-key/idle-delay':
-;;   This variable controls the delay between starting a key sequence and
-;;   popping up the guide buffer. The default value is 1.0 (in seconds),
-;;   which means that guide-key will keep out of your way unless you hesitate
-;;   in the middle of a key sequence .  Set this to 0.0 to revert to the old
-;;   default behavior.
-;; - `guide-key/text-scale-amount':
-;;   This variable controls the size of text in guide buffer. The default
-;;   value is 0 (it means default size in Emacs). If you want to enlarge
-;;   text, set positive number. Otherwise, set negative number.
-;;
-;; Enjoy!
-
-;;; Code:
-
-(eval-when-compile
-  (require 'cl)
-  (require 'face-remap))
-
-(require 'dash)
-(require 'popwin)
-(require 's)
-
-;;; variables
-(defgroup guide-key nil
-  "Guide key bidings."
-  :group 'help
-  :prefix "guide-key/")
-
-(defcustom guide-key/guide-key-sequence nil
-  "*Key sequences to guide in `guide-key-mode'.
-This variable is a list of string representation.
-Both representations, like \"C-x r\" and \"\\C-xr\",
-are allowed.
-
-In addition, an element of this list can be a list whose car is
-the symbol for a certain mode, and whose cdr is a list of key
-sequences to consider only if that mode is active.
-
-Set this variable to `t' to enable for any key sequence."
-  :type '(repeat (choice (string :tag "Prefix key sequence")
-                         (cons :tag "Mode specific sequence"
-                               (symbol :tag "Symbol for mode")
-                               (repeat (string :tag "Prefix key sequence")))))
-  :group 'guide-key)
-
-(defcustom guide-key/polling-time 0.1
-  "*Polling time to check an input key sequence."
-  :type 'float
-  :group 'guide-key)
-
-(defcustom guide-key/idle-delay 1.0
-  "*Delay in seconds before guide buffer is displayed."
-  :type 'float
-  :group 'guide-key)
-
-(defcustom guide-key/highlight-prefix-regexp "prefix"
-  "*Regexp for prefix commands."
-  :type 'regexp
-  :group 'guide-key)
-
-(defcustom guide-key/highlight-command-regexp nil
-  "*Regexp for commands to highlight.
-If a command name matches this regexp, it is highlighted with
-`guide-key/highlight-command-face'.
-
-This variable can be a list and its element is either a regexp or
-a cons cell, its car is a regexp and its cdr is face symbol or
-color name string.  If regexp, commands which match the regexp
-are highlighted with `guide-key/highlight-command-face'.  If cons
-cell, commands which match the car regexp are highlighted with
-the cdr face or color."
-  :type '(choice (regexp :tag "Regexp to highlight")
-                 (repeat (choice (regexp :tag "Regexp to highlight")
-                                 (cons (regexp :tag "Regexp to highlight")
-                                       (choice (face   :tag "Face on command")
-                                               (string :tag "Color name string"))))))
-  :group 'guide-key)
-
-(defcustom guide-key/align-command-by-space-flag nil
-  "*If non-nil, align guide buffer by space."
-  :type 'boolean
-  :group 'guide-key)
-
-(defcustom guide-key/popup-window-position 'right
-  "*Position where guide buffer is popped up.
-This variable must be one of `right', `bottom', `left' and `top'."
-  :type '(radio (const right) (const bottom) (const left) (const top))
-  :group 'guide-key)
-
-(defcustom guide-key/text-scale-amount 0
-  "*Amount of scaling text in guide buffer.
-
-If positive number, the text becomes larger.  If negative number,
-the text becomes smaller.  Scale of the text is detemined by the
-value of variable `text-scale-mode-step'."
-  :type 'float
-  :group 'guide-key)
-
-(defcustom guide-key/recursive-key-sequence-flag nil
-  "*If non-nil, check an input key sequence recursively.
-For example, if `guide-key/guide-key-sequence' includes \"C-x\",
-guide buffer is popped up when you input \"C-x r\", \"C-x 4\" and
-any other prefixes following \"C-x\"."
-  :type 'boolean
-  :group 'guide-key)
-
-(defface guide-key/prefix-command-face
-  '((((class color) (background dark))
-     (:foreground "cyan"))
-    (((class color) (background light))
-     (:foreground "blue")))
-  "Face for prefix commands to highlight"
-  :group 'guide-key)
-
-(defface guide-key/highlight-command-face
-  '((((class color) (background dark))
-     (:foreground "yellow"))
-    (((class color) (background light))
-     (:foreground "orange red")))
-  "Face for commands to highlight"
-  :group 'guide-key)
-
-(defface guide-key/key-face
-  '((((class color) (background dark))
-     (:foreground "red"))
-    (((class color) (background light))
-     (:foreground "dark green")))
-  "Face for keys following to a key sequence"
-  :group 'guide-key)
-
-;;; internal variables
-(defvar guide-key/polling-timer nil
-  "Polling timer to check an input key sequence.")
-
-(defvar guide-key/idle-timer nil
-  "Idle timer to wait before popping up guide buffer.")
-
-(defvar guide-key/guide-buffer-name " *guide-key*"
-  "Buffer name of guide buffer.")
-
-(defvar guide-key/last-key-sequence-vector nil
-  "Key sequence input at the last polling operation.")
-
-;; or hook
-;; (add-hook 'pre-command-hook 'guide-key/hook-command)
-;; (setq pre-command-hook nil)
-;; (add-hook 'post-command-hook 'guide-key/key-event)
-;; (add-hook 'pre-command-hook 'show-this-command)
-
-;;; functions
-;;;###autoload
-(define-minor-mode guide-key-mode
-  "Toggle guide key mode.
-
-In guide key mode, Guide following keys to an input key sequence
-automatically and dynamically.
-With a prefix argument ARG, enable guide key mode if ARG is
-positive, otherwise disable."
-  :global t
-  :lighter " Guide"
-  (funcall (if guide-key-mode
-               'guide-key/turn-on-timer
-             'guide-key/turn-off-timer)))
-
-(defun guide-key/popup-function (&optional input)
-  "Popup function called after delay of `guide-key/idle-delay' second."
-  (let ((key-seq (or input (this-single-command-keys)))
-        (regexp guide-key/highlight-command-regexp))
-    (let ((dsc-buf (current-buffer))
-	  (max-width 0))
-      (with-current-buffer (get-buffer-create guide-key/guide-buffer-name)
-	(unless truncate-lines (setq truncate-lines t))   ; don't fold line
-	(when indent-tabs-mode (setq indent-tabs-mode nil)) ; don't use tab as white space
-	(setq mode-line-format nil)
-	(text-scale-set guide-key/text-scale-amount)
-	(erase-buffer)
-	(describe-buffer-bindings dsc-buf key-seq)
-	(when (> (guide-key/format-guide-buffer key-seq regexp) 0)
-	  (guide-key/close-guide-buffer)
-	  (guide-key/popup-guide-buffer))))))
-
-
-;;; internal functions
-(defun guide-key/polling-function ()
-  "Polling function executed every `guide-key/polling-time' second."
-  (let ((key-seq (this-single-command-keys)))
-    (if (guide-key/popup-guide-buffer-p key-seq)
-        (when (guide-key/update-guide-buffer-p key-seq)
-          (guide-key/turn-on-idle-timer))
-      (guide-key/close-guide-buffer))
-    (setq guide-key/last-key-sequence-vector key-seq)))
-
-(defun guide-key/popup-guide-buffer ()
-  "Pop up guide buffer at `guide-key/popup-window-position'."
-  (let ((last-config popwin:popup-last-config))
-    (apply 'popwin:popup-buffer (get-buffer guide-key/guide-buffer-name)
-           :position guide-key/popup-window-position
-           :noselect t
-           (cond ((popwin:position-horizontal-p guide-key/popup-window-position)
-                  `(:width ,(guide-key/popup-window-size 'horizontal)))
-                 ((popwin:position-vertical-p guide-key/popup-window-position)
-                  `(:height ,(guide-key/popup-window-size)))))
-    (setq popwin:popup-last-config last-config)))
-
-(defun guide-key/popup-window-size (&optional horizontal)
-  "Return an enough height or width of popup window to display
-all key bindings in guide buffer.
-
-If HORIZONTAL is omitted or nil, return the height of popup
-window.  Otherwise, return the width of popup window"
-  (with-current-buffer (get-buffer guide-key/guide-buffer-name)
-    (let ((margin (if horizontal 5 1))
-          (scale (expt text-scale-mode-step text-scale-mode-amount)))
-      (if horizontal
-          (ceiling (* scale (+ (guide-key/buffer-max-width) margin)))
-        (ceiling (* scale (+ (count-lines (point-min) (point-max)) margin))))
-      )))
-
-(defun guide-key/close-guide-buffer ()
-  "Close guide buffer."
-  (when (eq popwin:popup-buffer (get-buffer guide-key/guide-buffer-name))
-    (popwin:close-popup-window))
-  (guide-key/turn-off-idle-timer)
-  )
-
-(add-hook 'pre-command-hook 'guide-key/close-guide-buffer)
-
-(defun guide-key/update-guide-buffer-p (key-seq)
-  "Return t if guide buffer should be updated."
-  (not (equal guide-key/last-key-sequence-vector key-seq)))
-
-(defun guide-key/popup-guide-buffer-p (key-seq)
-  "Return t if guide buffer should be popped up."
-  (and (> (length key-seq) 0)
-       (or (eq guide-key/guide-key-sequence t)
-           (member key-seq (guide-key/buffer-key-sequences))
-           (and guide-key/recursive-key-sequence-flag
-                (guide-key/popup-guide-buffer-p (guide-key/vbutlast key-seq))))))
-
-(defun guide-key/buffer-key-sequences ()
-  "Return a list of key sequences (vector representation) in current buffer."
-  (let (lst)
-    ;; global key sequences
-    (dolist (ks guide-key/guide-key-sequence)
-      (when (stringp ks)
-        (setq lst (cons ks lst))))
-    ;; major-mode specific key sequences
-    (setq lst (append (assoc-default major-mode guide-key/guide-key-sequence) lst))
-    ;; minor-mode specific key sequences
-    (dolist (mmode minor-mode-list)
-      (when (and (boundp mmode) (symbol-value mmode))
-        (setq lst (append (assoc-default mmode guide-key/guide-key-sequence) lst))))
-    ;; convert key sequences to vector representation
-    (mapcar 'guide-key/convert-key-sequence-to-vector lst)))
-
-(defun guide-key/vbutlast (vec &optional n)
-  "Return a copy of vector VEC with the last N elements removed."
-  (vconcat (butlast (append vec nil) n)))
-
-(defun guide-key/convert-key-sequence-to-vector (key-seq)
-  "Convert key sequence KEY-SEQ to vector representation.
-For example, both \"C-x r\" and \"\\C-xr\" are converted to [24 114]"
-  (vconcat (read-kbd-macro key-seq)))
-
-(defun guide-key/turn-on-idle-timer ()
-  "Turn on an idle timer for popping up guide buffer."
-  (when (null guide-key/idle-timer)
-    (setq guide-key/idle-timer
-          (run-with-idle-timer guide-key/idle-delay t 'guide-key/popup-function))
-    ))
-
-(defun guide-key/turn-off-idle-timer ()
-  "Turn off the idle timer."
-  (when guide-key/idle-timer
-    (cancel-timer guide-key/idle-timer))
-  (setq guide-key/idle-timer nil))
-
-
-(defun guide-key/turn-on-timer ()
-  "Turn on a polling timer."
-  (when (null guide-key/polling-timer)
-    (setq guide-key/polling-timer
-          (run-at-time t guide-key/polling-time 'guide-key/polling-function))))
-
-(defun guide-key/turn-off-timer ()
-  "Turn off a polling timer."
-  (cancel-timer guide-key/polling-timer)
-  (setq guide-key/polling-timer nil))
-
-(defun guide-key/format-guide-buffer (key-seq &optional regexp)
-  "Format guide buffer. This function returns the number of following keys."
-  (let ((fkey-list nil)      ; list of (following-key space command)
-        (fkey-str-list nil)  ; fontified string of `fkey-list'
-        (fkey-list-len 0)    ; length of above lists
-        (key-dsc (key-description key-seq)))
-    (untabify (point-min) (point-max))  ; replace tab to space
-    (goto-char (point-min))
-    ;; extract following keys from buffer bindings
-    (while (re-search-forward
-            (format "^%s \\([^ \t]+\\)\\([ \t]+\\)\\(\\(?:[^ \t\n]+ ?\\)+\\)$" (regexp-quote key-dsc)) nil t)
-      (add-to-list 'fkey-list
-                   (list (match-string 1) (match-string 2) (match-string 3)) t))
-    (erase-buffer)
-    (when (> (setq fkey-list-len (length fkey-list)) 0)
-      ;; fontify following keys as string
-      (setq fkey-str-list
-            (loop for (key space command) in fkey-list
-                  collect (guide-key/fontified-string key space command regexp)))
-      ;; insert a few following keys per line
-      (guide-key/insert-following-key fkey-str-list
-                                      (popwin:position-horizontal-p guide-key/popup-window-position))
-      (goto-char (point-min)))
-    fkey-list-len))
-
-(defun guide-key/insert-following-key (fkey-str-list horizontal)
-  "Insert a few following keys per line.
-
-If HORIZONTAL is omitted or nil, assume that guide buffer is
-popped up at top or bottom. Otherwise, assume that guide buffer
-is popped up at left or right."
-  (let* ((scale (expt text-scale-mode-step text-scale-mode-amount))
-         ;; Calculate the number of items per line
-         (columns
-          (if horizontal
-              (ceiling (/ (* (length fkey-str-list) scale)
-                          (- (frame-height) (if tool-bar-mode 2 0) (if menu-bar-mode 1 0))))
-            (floor (/ (frame-width)
-                      (* (apply 'max (mapcar 'length fkey-str-list)) scale))))))
-    ;; Insert following keys by columns per line.
-    (loop for fkey-str in fkey-str-list
-          for column from 1
-          do (insert fkey-str (if (= (mod column columns) 0) "\n" " ")))
-    (align-regexp (point-min) (point-max) "\\(\\s-*\\) \\[" 1 1 t)))
-
-(defun guide-key/fontified-string (key space command &optional regexp)
-  "Return fontified string of following key"
-  (let ((highlight-face (guide-key/get-highlight-face command regexp)))
-    (concat (propertize "[" 'face 'guide-key/key-face)
-            (if highlight-face (propertize key 'face highlight-face) key)
-            (propertize "]" 'face 'guide-key/key-face)
-            (if guide-key/align-command-by-space-flag space " ") ; white space
-            (if highlight-face (propertize command 'face highlight-face) command))))
-
-(defun guide-key/get-highlight-face (string &optional regexp)
-  "Return an appropriate face for highlighting STRING according
-to `guide-key/highlight-prefix-regexp' and
-`guide-key/highlight-command-regexp'. Return nil if an
-appropriate face is not found."
-  (let ((regexp (or regexp guide-key/highlight-command-regexp)))
-    ;; `guide-key/highlight-prefix-regexp' has the highest priority
-    (if (string-match guide-key/highlight-prefix-regexp string)
-        'guide-key/prefix-command-face
-      ;; Else look up the first match in `guide-key/highlight-command-regexp'
-      (cond ((stringp regexp)
-             (when (string-match regexp string)
-               'guide-key/highlight-command-face))
-            ((listp regexp)
-             (loop for elm in regexp
-                   if (cond ((stringp elm)
-                             (when (string-match elm string)
-                               'guide-key/highlight-command-face))
-                            ((consp elm)
-                             (when (string-match (car elm) string)
-                               (if (stringp (cdr elm))
-                                   ;; anonymous face, see (info "(elisp)Faces")
-                                   (list :foreground (cdr elm))
-                                 (cdr elm)))))
-                   return it)))
-      )))
-
-(defun guide-key/buffer-max-width ()
-  "Return max width in current buffer."
-  (let ((buf-str (buffer-substring-no-properties (point-min) (point-max))))
-    (apply 'max (mapcar 'length (split-string buf-str "\n")))))
-
-(defun guide-key/add-local-guide-key-sequence (key)
-  (add-to-list (make-local-variable 'guide-key/guide-key-sequence) key))
-
-(defun guide-key/add-local-highlight-command-regexp (regexp)
-  (make-local-variable 'guide-key/highlight-command-regexp)
-  (cond ((stringp guide-key/highlight-command-regexp)
-         (setq guide-key/highlight-command-regexp
-               (list regexp guide-key/highlight-command-regexp)))
-        ((listp guide-key/highlight-command-regexp)
-         (add-to-list 'guide-key/highlight-command-regexp regexp))))
-
-;;; key-chord hack
-(defadvice this-command-keys (after key-chord-hack disable)
-  "Add key chord to the key sequence returned by `this-command-keys'.
-
-Original `this-command-keys' returns \"[key-chord]\" when you
-type any of key chords, so it is difficult to know which key
-chord is pressed.  This advice enables to distinguish pressed key
-chord."
-  (condition-case nil
-      (if (equal ad-return-value [key-chord])
-          (let ((rkeys (recent-keys)))
-            (setq ad-return-value
-                  (vector 'key-chord (aref rkeys (- (length rkeys) 2))
-                          (aref rkeys (- (length rkeys) 1))))))
-    (error "")))
-
-(defadvice this-command-keys-vector (after key-chord-hack disable)
-  "Add key chord to the key sequence returned by `this-command-keys-vector'.
-
-Original `this-command-keys-vector' returns \"[key-chord]\" when you
-type any of key chords, so it is difficult to know which key
-chord is pressed.  This advice enables to distinguish pressed key
-chord."
-  (condition-case nil
-      (if (equal ad-return-value [key-chord])
-          (let ((rkeys (recent-keys)))
-            (setq ad-return-value
-                  (vector 'key-chord (aref rkeys (- (length rkeys) 2))
-                          (aref rkeys (- (length rkeys) 1))))))
-    (error [])))
-
-(defun guide-key/key-chord-hack-on ()
-  "Turn on key-chord hack of guide-key.
-
-This hack *may be dangerous* because it advices primitive
-functions; this-command-keys and this-command-keys-vector."
-  (interactive)
-  (dolist (fn '(this-command-keys this-command-keys-vector))
-    (ad-enable-advice fn 'after 'key-chord-hack)
-    (ad-activate fn))
-  (message "Turn on key-chord hack of guide-key"))
-
-(defun guide-key/key-chord-hack-off ()
-  "Turn off key-chord hack of guide-key."
-  (interactive)
-  (dolist (fn '(this-command-keys this-command-keys-vector))
-    (ad-disable-advice fn 'after 'key-chord-hack)
-    (ad-activate fn))
-  (message "Turn off key-chord hack of guide-key"))
-
-;;; debug
-(defun guide-key/message-events ()
-  ""
-  (message (format "lce:%S tck:%S tckv:%S tsck:%S lie:%S uce:%S"
-                   last-command-event
-                   (this-command-keys)
-                   (this-command-keys-vector)
-                   (this-single-command-keys)
-                   last-input-event
-                   unread-command-events
-                   )))
-;; (setq ttt (run-at-time t 1 'guide-key/message-events))
-;; (cancel-timer ttt)
-
-(provide 'guide-key)
-;;; guide-key.el ends here
diff --git a/elpa/guide-key-20150108.635/guide-key.elc b/elpa/guide-key-20150108.635/guide-key.elc
deleted file mode 100644
index 0edb274..0000000
--- a/elpa/guide-key-20150108.635/guide-key.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/helm-projectile-20180815.1514/helm-projectile-autoloads.el b/elpa/helm-projectile-20180815.1514/helm-projectile-autoloads.el
deleted file mode 100644
index 815b4e9..0000000
--- a/elpa/helm-projectile-20180815.1514/helm-projectile-autoloads.el
+++ /dev/null
@@ -1,87 +0,0 @@
-;;; helm-projectile-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "helm-projectile" "helm-projectile.el" (0 0
-;;;;;;  0 0))
-;;; Generated autoloads from helm-projectile.el
-
-(defvar helm-projectile-fuzzy-match t "\
-Enable fuzzy matching for Helm Projectile commands.
-This needs to be set before loading helm-projectile.el.")
-
-(custom-autoload 'helm-projectile-fuzzy-match "helm-projectile" t)
-
-(autoload 'helm-projectile-find-file-dwim "helm-projectile" "\
-Find file at point based on context.
-
-\(fn)" t nil)
-
-(autoload 'helm-projectile-find-other-file "helm-projectile" "\
-Switch between files with the same name but different extensions using Helm.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable `projectile-other-file-alist'.
-
-\(fn &optional FLEX-MATCHING)" t nil)
-
-(autoload 'helm-projectile-on "helm-projectile" "\
-Turn on `helm-projectile' key bindings.
-
-\(fn)" t nil)
-
-(autoload 'helm-projectile-off "helm-projectile" "\
-Turn off `helm-projectile' key bindings.
-
-\(fn)" t nil)
-
-(autoload 'helm-projectile-grep "helm-projectile" "\
-Helm version of `projectile-grep'.
-DIR is the project root, if not set then current directory is used
-
-\(fn &optional DIR)" t nil)
-
-(autoload 'helm-projectile-ack "helm-projectile" "\
-Helm version of projectile-ack.
-
-\(fn &optional DIR)" t nil)
-
-(autoload 'helm-projectile-ag "helm-projectile" "\
-Helm version of `projectile-ag'.
-
-\(fn &optional OPTIONS)" t nil)
-
-(autoload 'helm-projectile-rg "helm-projectile" "\
-Projectile version of `helm-rg'.
-
-\(fn)" t nil)
-
-(autoload 'helm-projectile-toggle "helm-projectile" "\
-Toggle Helm version of Projectile commands.
-
-\(fn TOGGLE)" nil nil)
-
-(autoload 'helm-projectile "helm-projectile" "\
-Use projectile with Helm instead of ido.
-
-With a prefix ARG invalidates the cache first.
-If invoked outside of a project, displays a list of known projects to jump.
-
-\(fn &optional ARG)" t nil)
-
-(eval-after-load 'projectile '(progn (define-key projectile-command-map (kbd "h") #'helm-projectile)))
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-projectile" '("helm-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; helm-projectile-autoloads.el ends here
diff --git a/elpa/helm-projectile-20180815.1514/helm-projectile-pkg.el b/elpa/helm-projectile-20180815.1514/helm-projectile-pkg.el
deleted file mode 100644
index 3cdbdc3..0000000
--- a/elpa/helm-projectile-20180815.1514/helm-projectile-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "helm-projectile" "20180815.1514" "Helm integration for Projectile" '((helm "1.9.9") (projectile "0.14.0") (cl-lib "0.3")) :commit "8a2dbc973548fac89356c11d70f7f474ea1367a5" :keywords '("project" "convenience") :authors '(("Bozhidar Batsov")) :maintainer '("Bozhidar Batsov") :url "https://github.com/bbatsov/helm-projectile")
diff --git a/elpa/helm-projectile-20180815.1514/helm-projectile.el b/elpa/helm-projectile-20180815.1514/helm-projectile.el
deleted file mode 100644
index 723d0a7..0000000
--- a/elpa/helm-projectile-20180815.1514/helm-projectile.el
+++ /dev/null
@@ -1,1087 +0,0 @@
-;;; helm-projectile.el --- Helm integration for Projectile         -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2016 Bozhidar Batsov
-
-;; Author: Bozhidar Batsov
-;; URL: https://github.com/bbatsov/helm-projectile
-;; Package-Version: 20180815.1514
-;; Created: 2011-31-07
-;; Keywords: project, convenience
-;; Version: 0.14.0
-;; Package-Requires: ((helm "1.9.9") (projectile "0.14.0") (cl-lib "0.3"))
-
-;; This file is NOT part of GNU Emacs.
-
-;;; License:
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-;; Boston, MA 02110-1301, USA.
-
-;;; Commentary:
-;;
-;; This library provides easy project management and navigation.  The
-;; concept of a project is pretty basic - just a folder containing
-;; special file.  Currently git, mercurial and bazaar repos are
-;; considered projects by default.  If you want to mark a folder
-;; manually as a project just create an empty .projectile file in
-;; it.  See the README for more details.
-;;
-;;; Code:
-
-(require 'subr-x)
-(require 'projectile)
-(require 'cl-lib)
-(require 'grep)
-(require 'helm)
-(require 'helm-types)
-(require 'helm-locate)
-(require 'helm-buffers)
-(require 'helm-files)
-
-(declare-function eshell "eshell")
-(declare-function helm-do-ag "helm-ag")
-(declare-function dired-get-filename "dired")
-(defvar helm-ag-base-command)
-
-(defvar grep-find-ignored-directories)
-(defvar grep-find-ignored-files)
-
-(defgroup helm-projectile nil
-  "Helm support for projectile."
-  :prefix "helm-projectile-"
-  :group 'projectile
-  :group 'helm
-  :link `(url-link :tag "GitHub" "https://github.com/bbatsov/helm-projectile"))
-
-(defvar helm-projectile-current-project-root)
-
-(defcustom helm-projectile-truncate-lines nil
-  "Truncate lines in helm projectile commands when non--nil.
-
-Some `helm-projectile' commands have similar behavior with existing
-Helms.  In these cases their respective custom var for truncation
-of lines will be honored.  E.g. `helm-buffers-truncate-lines'
-dictates the truncation in `helm-projectile-switch-to-buffer'."
-  :group 'helm-projectile
-  :type 'boolean)
-
-;;;###autoload
-(defcustom helm-projectile-fuzzy-match t
-  "Enable fuzzy matching for Helm Projectile commands.
-This needs to be set before loading helm-projectile.el."
-  :group 'helm-projectile
-  :type 'boolean)
-
-(defmacro helm-projectile-define-key (keymap key def &rest bindings)
-  "In KEYMAP, define KEY - DEF sequence KEY1 as DEF1, KEY2 as DEF2 ..."
-  (declare (indent defun))
-  (let ((ret '(progn)))
-    (while key
-      (push
-       `(define-key ,keymap ,key
-          (lambda ()
-            (interactive)
-            (helm-exit-and-execute-action ,def)))
-       ret)
-      (setq key (pop bindings)
-            def (pop bindings)))
-    (reverse ret)))
-
-(defun helm-projectile-hack-actions (actions &rest prescription)
-  "Given a Helm action list and a prescription, return a hacked Helm action list, after applying the PRESCRIPTION.
-
-The Helm action list ACTIONS is of the form:
-
-\(\(DESCRIPTION1 . FUNCTION1\)
- \(DESCRIPTION2 . FUNCTION2\)
- ...
- \(DESCRIPTIONn . FUNCTIONn\)\)
-
-PRESCRIPTION is in the form:
-
-\(INSTRUCTION1 INSTRUCTION2 ... INSTRUCTIONn\)
-
-If an INSTRUCTION is a symbol, the action with function name
-INSTRUCTION is deleted.
-
-If an INSTRUCTION is of the form \(FUNCTION1 . FUNCTION2\), the
-action with function name FUNCTION1 will change it's function to
-FUNCTION2.
-
-If an INSTRUCTION is of the form \(FUNCTION . DESCRIPTION\), and
-if an action with function name FUNCTION exists in the original
-Helm action list, the action in the Helm action list, with
-function name FUNCTION will change it's description to
-DESCRIPTION.  Otherwise, (FUNCTION . DESCRIPTION) will be added to
-the action list.
-
-Please check out how `helm-projectile-file-actions' is defined
-for an example of how this function is being used."
-  (let* ((to-delete (cl-remove-if (lambda (entry) (listp entry)) prescription))
-         (actions (cl-delete-if (lambda (action) (memq (cdr action) to-delete))
-                                (copy-alist actions)))
-         new)
-    (cl-dolist (action actions)
-      (when (setq new (cdr (assq (cdr action) prescription)))
-        (if (stringp new)
-            (setcar action new)
-          (setcdr action new))))
-    ;; Add new actions from PRESCRIPTION
-    (setq new nil)
-    (cl-dolist (instruction prescription)
-      (when (and (listp instruction)
-                 (null (rassq (car instruction) actions))
-                 (symbolp (car instruction)) (stringp (cdr instruction)))
-        (push (cons (cdr instruction) (car instruction)) new)))
-    (append actions (nreverse new))))
-
-(defun helm-projectile-vc (dir)
-  "A Helm action for jumping to project root using `vc-dir' or Magit.
-DIR is a directory to be switched"
-  (let ((projectile-require-project-root nil))
-    (projectile-vc dir)))
-
-(defun helm-projectile-compile-project (dir)
-  "A Helm action for compile a project.
-DIR is the project root."
-  (let ((helm--reading-passwd-or-string t)
-        (default-directory dir))
-    (projectile-compile-project helm-current-prefix-arg)))
-
-(defun helm-projectile-test-project (dir)
-  "A Helm action for test a project.
-DIR is the project root."
-  (let ((helm--reading-passwd-or-string t)
-        (default-directory dir))
-    (projectile-test-project helm-current-prefix-arg)))
-
-(defun helm-projectile-run-project (dir)
-  "A Helm action for run a project.
-DIR is the project root."
-  (let ((helm--reading-passwd-or-string t)
-        (default-directory dir))
-    (projectile-run-project helm-current-prefix-arg)))
-
-(defun helm-projectile-remove-known-project (_ignore)
-  "Remove selected projects from projectile project list.
-_IGNORE means the argument does not matter.
-It is there because Helm requires it."
-  (let* ((projects (helm-marked-candidates :with-wildcard t))
-         (len (length projects)))
-    (with-helm-display-marked-candidates
-      helm-marked-buffer-name
-      projects
-      (if (not (y-or-n-p (format "Remove *%s projects(s)? " len)))
-          (message "(No removal performed)")
-        (progn
-          (mapc (lambda (p)
-                  (delete p projectile-known-projects))
-                projects)
-          (projectile-save-known-projects))
-        (message "%s projects(s) removed" len)))))
-
-(defvar helm-projectile-projects-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map helm-map)
-    (helm-projectile-define-key map
-      (kbd "C-d") #'dired
-      (kbd "M-g") #'helm-projectile-vc
-      (kbd "M-e") #'helm-projectile-switch-to-eshell
-      (kbd "C-s") #'helm-projectile-grep
-      (kbd "M-c") #'helm-projectile-compile-project
-      (kbd "M-t") #'helm-projectile-test-project
-      (kbd "M-r") #'helm-projectile-run-project
-      (kbd "M-D") #'helm-projectile-remove-known-project)
-    map)
-  "Mapping for known projectile projects.")
-
-(defcustom helm-source-projectile-projects-actions
-  (helm-make-actions
-   "Switch to project" (lambda (project)
-                         (let ((projectile-completion-system 'helm))
-                           (projectile-switch-project-by-name project)))
-   "Open Dired in project's directory `C-d'" #'dired
-   "Open project root in vc-dir or magit `M-g'" #'helm-projectile-vc
-   "Switch to Eshell `M-e'" #'helm-projectile-switch-to-eshell
-   "Grep in projects `C-s'" #'helm-projectile-grep
-   "Compile project `M-c'. With C-u, new compile command" #'helm-projectile-compile-project
-   "Remove project(s) from project list `M-D'" #'helm-projectile-remove-known-project)
-  "Actions for `helm-source-projectile-projects'."
-  :group 'helm-projectile
-  :type '(alist :key-type string :value-type function))
-
-(defvar helm-source-projectile-projects
-  (helm-build-sync-source "Projectile projects"
-    :candidates (lambda () (with-helm-current-buffer projectile-known-projects))
-    :fuzzy-match helm-projectile-fuzzy-match
-    :keymap helm-projectile-projects-map
-    :mode-line helm-read-file-name-mode-line-string
-    :action 'helm-source-projectile-projects-actions)
-  "Helm source for known projectile projects.")
-
-(defvar helm-projectile-dirty-projects-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map helm-map)
-    (helm-projectile-define-key map
-      (kbd "C-d") #'dired
-      (kbd "M-o") #'(lambda (project)
-                      (let ((projectile-completion-system 'helm))
-                        (projectile-switch-project-by-name project)))
-      (kbd "M-e") #'helm-projectile-switch-to-eshell
-      (kbd "C-s") #'helm-projectile-grep
-      (kbd "M-c") #'helm-projectile-compile-project
-      (kbd "M-t") #'helm-projectile-test-project
-      (kbd "M-r") #'helm-projectile-run-project
-      (kbd "M-D") #'helm-projectile-remove-known-project)
-    map)
-  "Mapping for dirty projectile projects.")
-
-(defvar helm-source-projectile-dirty-projects
-  (helm-build-sync-source "Projectile dirty projects"
-    :candidates (lambda () (with-helm-current-buffer (helm-projectile-get-dirty-projects)))
-    :fuzzy-match helm-projectile-fuzzy-match
-    :keymap helm-projectile-dirty-projects-map
-    :mode-line helm-read-file-name-mode-line-string
-    :action '(("Open project root in vc-dir or magit" . helm-projectile-vc)
-              ("Switch to project `M-o'" .
-               (lambda (project)
-                 (let ((projectile-completion-system 'helm))
-                   (projectile-switch-project-by-name project))))
-              ("Open Dired in project's directory `C-d'" . dired)
-              ("Switch to Eshell `M-e'" . helm-projectile-switch-to-eshell)
-              ("Grep in projects `C-s'" . helm-projectile-grep)
-              ("Compile project `M-c'. With C-u, new compile command"
-               . helm-projectile-compile-project)))
-    "Helm source for dirty version controlled projectile projects.")
-
-(defun helm-projectile-get-dirty-projects ()
-  "Return dirty version controlled known projects as an alist to
-have a nice display in Helm."
-  (message "Checking for dirty known projects...")
-  (let* ((status (projectile-check-vcs-status-of-known-projects))
-         (proj-dir (cl-loop for stat in status
-                            collect (car stat)))
-         (status-display (cl-loop for stat in status collect
-                                  (propertize (format "[%s]" (mapconcat 'identity (car (cdr stat)) ", ")) 'face 'helm-match)))
-         (max-status-display-length (cl-loop for sd in status-display
-                                             maximize (length sd)))
-         (status-display (cl-loop for sd in status-display collect
-                                  (format "%s%s    " sd (make-string (- max-status-display-length (length sd)) ? ))))
-         (full-display (cl-mapcar 'concat status-display proj-dir))
-         (helm-list (cl-pairlis full-display proj-dir)))
-    helm-list))
-
-(define-key helm-etags-map (kbd "C-c p f")
-  (lambda ()
-    (interactive)
-    (helm-run-after-exit 'helm-projectile-find-file nil)))
-
-(defun helm-projectile-file-persistent-action (candidate)
-  "Persistent action for file-related functionality.
-
-Previews the contents of a file in a temporary buffer."
-  (let ((buf (get-buffer-create " *helm-projectile persistent*")))
-    (cl-flet ((preview (candidate)
-                       (switch-to-buffer buf)
-                       (setq inhibit-read-only t)
-                       (erase-buffer)
-                       (insert-file-contents candidate)
-                       (let ((buffer-file-name candidate))
-                         (set-auto-mode))
-                       (font-lock-ensure)
-                       (setq inhibit-read-only nil)))
-      (if (and (helm-attr 'previewp)
-               (string= candidate (helm-attr 'current-candidate)))
-          (progn
-            (kill-buffer buf)
-            (helm-attrset 'previewp nil))
-        (preview candidate)
-        (helm-attrset 'previewp t)))
-    (helm-attrset 'current-candidate candidate)))
-
-(defun helm-projectile-find-files-eshell-command-on-file-action (candidate)
-  (interactive)
-  (let* ((helm-ff-default-directory (file-name-directory candidate)))
-    (helm-find-files-eshell-command-on-file candidate)))
-
-(defun helm-projectile-ff-etags-select-action (candidate)
-  (interactive)
-  (let* ((helm-ff-default-directory (file-name-directory candidate)))
-    (helm-ff-etags-select candidate)))
-
-(defun helm-projectile-switch-to-eshell (dir)
-  (interactive)
-  (let* ((projectile-require-project-root nil)
-         (helm-ff-default-directory (file-name-directory (projectile-expand-root dir))))
-    (helm-ff-switch-to-eshell dir)))
-
-(defun helm-projectile-files-in-current-dired-buffer ()
-  "Return a list of files (only) in the current dired buffer."
-  (let (flist)
-    (cl-flet ((fpush (fname) (push fname flist)))
-      (save-excursion
-        (let (file buffer-read-only)
-          (goto-char (point-min))
-          (while (not (eobp))
-            (save-excursion
-              (and (not (eolp))
-                   (setq file (dired-get-filename t t)) ; nil on non-file
-                   (progn (end-of-line)
-                          (funcall #'fpush file))))
-            (forward-line 1)))))
-    (mapcar 'file-truename (nreverse flist))))
-
-(defun helm-projectile-all-dired-buffers ()
-  "Get all current Dired buffers."
-  (mapcar (lambda (b)
-            (with-current-buffer b (buffer-name)))
-          (cl-remove-if-not
-           (lambda (b)
-             (with-current-buffer b
-               (and (eq major-mode 'dired-mode)
-                    (buffer-name))))
-           (buffer-list))))
-
-(defvar helm-projectile-virtual-dired-remote-enable nil
-  "Enable virtual Dired manager on remote host.
-Disabled by default.")
-
-(defun helm-projectile-dired-files-new-action (candidate)
-  "Create a Dired buffer from chosen files.
-CANDIDATE is the selected file, but choose the marked files if available."
-  (if (and (file-remote-p (projectile-project-root))
-           (not helm-projectile-virtual-dired-remote-enable))
-      (message "Virtual Dired manager is disabled in remote host. Enable with %s."
-               (propertize "helm-projectile-virtual-dired-remote-enable" 'face 'font-lock-keyword-face))
-    (let ((files (cl-remove-if-not
-                  (lambda (f)
-                    (not (string= f "")))
-                  (mapcar (lambda (file)
-                            (replace-regexp-in-string (projectile-project-root) "" file))
-                          (helm-marked-candidates :with-wildcard t))))
-          (new-name (completing-read "Select or enter a new buffer name: "
-                                     (helm-projectile-all-dired-buffers)))
-          (helm--reading-passwd-or-string t)
-          (default-directory (projectile-project-root)))
-      ;; create a unique buffer that is unique to any directory in default-directory
-      ;; or opened buffer; when Dired is passed with a non-existence directory name,
-      ;; it only creates a buffer and insert everything. If a new name user supplied
-      ;; exists as default-directory, Dired throws error when insert anything that
-      ;; does not exist in current directory.
-      (with-current-buffer (dired (cons (make-temp-name new-name)
-                                        (if files
-                                            files
-                                          (list candidate))))
-        (when (get-buffer new-name)
-          (kill-buffer new-name))
-        (rename-buffer new-name)))))
-
-(defun helm-projectile-dired-files-add-action (candidate)
-  "Add files to a Dired buffer.
-CANDIDATE is the selected file.  Used when no file is explicitly marked."
-  (if (and (file-remote-p (projectile-project-root))
-           (not helm-projectile-virtual-dired-remote-enable))
-      (message "Virtual Dired manager is disabled in remote host. Enable with %s."
-               (propertize "helm-projectile-virtual-dired-remote-enable" 'face 'font-lock-keyword-face))
-    (if (eq (with-helm-current-buffer major-mode) 'dired-mode)
-        (let* ((marked-files (helm-marked-candidates :with-wildcard t))
-               (helm--reading-passwd-or-string t)
-               (root (projectile-project-root)) ; store root for later use
-               (dired-buffer-name (or (and (eq major-mode 'dired-mode) (buffer-name))
-                                      (completing-read "Select a Dired buffer:"
-                                                       (helm-projectile-all-dired-buffers))))
-               (dired-files (with-current-buffer dired-buffer-name
-                              (helm-projectile-files-in-current-dired-buffer)))
-               (files (sort (mapcar (lambda (file)
-                                      (replace-regexp-in-string (projectile-project-root) "" file))
-                                    (cl-nunion (if marked-files
-                                                   marked-files
-                                                 (list candidate))
-                                               dired-files
-                                               :test #'string-equal))
-                            'string-lessp)))
-          (kill-buffer dired-buffer-name)
-          ;; Rebind default-directory because after killing a buffer, we
-          ;; could be in any buffer and default-directory is set to that
-          ;; random buffer
-          ;;
-          ;; Also use saved root directory, because after killing a buffer,
-          ;; we could be outside of current project
-          (let ((default-directory root))
-            (with-current-buffer (dired (cons (make-temp-name dired-buffer-name)
-                                              (if files
-                                                  (mapcar (lambda (file)
-                                                            (replace-regexp-in-string root "" file))
-                                                          files)
-                                                (list candidate))))
-              (rename-buffer dired-buffer-name))))
-      (error "You're not in a Dired buffer to add"))))
-
-(defun helm-projectile-dired-files-delete-action (candidate)
-  "Delete selected entries from a Dired buffer.
-CANDIDATE is the selected file.  Used when no file is explicitly marked."
-  (if (and (file-remote-p (projectile-project-root))
-           (not helm-projectile-virtual-dired-remote-enable))
-      (message "Virtual Dired manager is disabled in remote host. Enable with %s."
-               (propertize "helm-projectile-virtual-dired-remote-enable" 'face 'font-lock-keyword-face))
-    (let* ((helm--reading-passwd-or-string t)
-           (root (projectile-project-root))
-           (dired-buffer-name (with-helm-current-buffer (buffer-name)))
-           (dired-files (with-current-buffer dired-buffer-name
-                          (helm-projectile-files-in-current-dired-buffer)))
-           (files (sort (cl-set-exclusive-or (helm-marked-candidates :with-wildcard t)
-                                             dired-files
-                                             :test #'string-equal) #'string-lessp)))
-      (kill-buffer dired-buffer-name)
-      ;; similar reason to `helm-projectile-dired-files-add-action'
-      (let ((default-directory root))
-        (with-current-buffer (dired (cons (make-temp-name dired-buffer-name)
-                                          (if files
-                                              (mapcar (lambda (file)
-                                                        (replace-regexp-in-string root "" file))
-                                                      files)
-                                            (list candidate))))
-          (rename-buffer dired-buffer-name))))))
-
-(defun helm-projectile-run-projectile-hooks-after-find-file (_orig-fun &rest _args)
-  "Run `projectile-find-file-hook' if using projectile."
-  (when (and projectile-mode (projectile-project-p))
-    (run-hooks 'projectile-find-file-hook)))
-
-(advice-add 'helm-find-file-or-marked
-            :after #'helm-projectile-run-projectile-hooks-after-find-file)
-
-(defvar helm-projectile-find-file-map
-  (let ((map (copy-keymap helm-find-files-map)))
-    (helm-projectile-define-key map
-      (kbd "C-c f") #'helm-projectile-dired-files-new-action
-      (kbd "C-c a") #'helm-projectile-dired-files-add-action
-      (kbd "M-e") #'helm-projectile-switch-to-eshell
-      (kbd "M-.") #'helm-projectile-ff-etags-select-action
-      (kbd "M-!") #'helm-projectile-find-files-eshell-command-on-file-action)
-    (define-key map (kbd "<left>") #'helm-previous-source)
-    (define-key map (kbd "<right>") #'helm-next-source)
-    (dolist (cmd '(helm-find-files-up-one-level
-                   helm-find-files-down-last-level))
-      (substitute-key-definition cmd nil map))
-    map)
-  "Mapping for file commands in Helm Projectile.")
-
-(defvar helm-projectile-file-actions
-  (helm-projectile-hack-actions
-   helm-find-files-actions
-   ;; Delete these actions
-   'helm-ff-browse-project
-   'helm-insert-file-name-completion-at-point
-   'helm-ff-find-sh-command
-   'helm-ff-cache-add-file
-   ;; Substitute these actions
-   '(helm-ff-switch-to-eshell . helm-projectile-switch-to-eshell)
-   '(helm-ff-etags-select     . helm-projectile-ff-etags-select-action)
-   '(helm-find-files-eshell-command-on-file
-     . helm-projectile-find-files-eshell-command-on-file-action)
-   ;; Change action descriptions
-   '(helm-find-file-as-root . "Find file as root `C-c r'")
-   ;; New actions
-   '(helm-projectile-dired-files-new-action
-     . "Create Dired buffer from files `C-c f'")
-   '(helm-projectile-dired-files-add-action
-     . "Add files to Dired buffer `C-c a'"))
-  "Action for files.")
-
-(defun helm-projectile--move-selection-p (selection)
-  "Return non-nil if should move Helm selector after SELECTION.
-
-SELECTION should be moved unless it's one of:
-
-- Non-string
-- Existing file
-- Non-remote file that matches `helm-tramp-file-name-regexp'"
-  (not (or (not (stringp selection))
-         (file-exists-p selection)
-         (and (string-match helm-tramp-file-name-regexp selection)
-              (not (file-remote-p selection nil t))))))
-
-(defun helm-projectile--move-to-real ()
-  "Move to first real candidate.
-
-Similar to `helm-ff--move-to-first-real-candidate', but without
-unnecessary complexity."
-  (while (let* ((src (helm-get-current-source))
-                (selection (and (not (helm-empty-source-p))
-                                (helm-get-selection nil nil src))))
-           (and (not (helm-end-of-source-p))
-                (helm-projectile--move-selection-p selection)))
-    (helm-next-line)))
-
-(defun helm-projectile--remove-move-to-real ()
-  "Hook function to remove `helm-projectile--move-to-real'.
-
-Meant to be added to `helm-cleanup-hook', from which it removes
- itself at the end."
-  (remove-hook 'helm-after-update-hook #'helm-projectile--move-to-real)
-  (remove-hook 'helm-cleanup-hook #'helm-projectile--remove-move-to-real))
-
-(defvar helm-source-projectile-files-list
-  (helm-build-sync-source "Projectile files"
-    :before-init-hook (lambda ()
-                        (add-hook 'helm-after-update-hook #'helm-projectile--move-to-real)
-                        (add-hook 'helm-cleanup-hook #'helm-projectile--remove-move-to-real))
-    :candidates (lambda ()
-                  (when (projectile-project-p)
-                    (with-helm-current-buffer
-                      (cl-loop with root = (projectile-project-root)
-                               for display in (projectile-current-project-files)
-                               collect (cons display (expand-file-name display root))))))
-    :filtered-candidate-transformer
-    (lambda (files _source)
-      (with-helm-current-buffer
-        (let* ((root (projectile-project-root))
-               (file-at-root (file-relative-name (expand-file-name helm-pattern root))))
-          (if (or (string-empty-p helm-pattern)
-                  (assoc helm-pattern files))
-              files
-            (if (equal helm-pattern file-at-root)
-                (cl-acons (helm-ff-prefix-filename helm-pattern nil t)
-                          (expand-file-name helm-pattern)
-                          files)
-              (cl-pairlis (list (helm-ff-prefix-filename helm-pattern nil t)
-                                (helm-ff-prefix-filename file-at-root nil t))
-                          (list (expand-file-name helm-pattern)
-                                (expand-file-name helm-pattern root))
-                          files))))))
-    :fuzzy-match helm-projectile-fuzzy-match
-    :keymap helm-projectile-find-file-map
-    :help-message 'helm-ff-help-message
-    :mode-line helm-read-file-name-mode-line-string
-    :action helm-projectile-file-actions
-    :persistent-action #'helm-projectile-file-persistent-action
-    :persistent-help "Preview file")
-  "Helm source definition for Projectile files.")
-
-(defvar helm-source-projectile-files-in-all-projects-list
-  (helm-build-sync-source "Projectile files in all Projects"
-    :candidates (lambda ()
-                  (with-helm-current-buffer
-                    (let ((projectile-require-project-root nil))
-                      (projectile-all-project-files))))
-    :keymap helm-projectile-find-file-map
-    :help-message 'helm-ff-help-message
-    :mode-line helm-read-file-name-mode-line-string
-    :action helm-projectile-file-actions
-    :persistent-action #'helm-projectile-file-persistent-action
-    :persistent-help "Preview file")
-  "Helm source definition for all Projectile files in all projects.")
-
-(defvar helm-projectile-dired-file-actions
-  (helm-projectile-hack-actions
-   helm-projectile-file-actions
-   ;; New actions
-   '(helm-projectile-dired-files-delete-action . "Remove entry(s) from Dired buffer `C-c d'")))
-
-(defvar helm-source-projectile-dired-files-list
-  (helm-build-in-buffer-source "Projectile files in current Dired buffer"
-    :data (lambda ()
-            (if (and (file-remote-p (projectile-project-root))
-                     (not helm-projectile-virtual-dired-remote-enable))
-                nil
-              (when (eq major-mode 'dired-mode)
-                (helm-projectile-files-in-current-dired-buffer))))
-    :filter-one-by-one (lambda (file)
-                         (let ((helm-ff-transformer-show-only-basename t))
-                           (helm-ff-filter-candidate-one-by-one file)))
-    :action-transformer 'helm-find-files-action-transformer
-    :keymap (let ((map (copy-keymap helm-projectile-find-file-map)))
-              (helm-projectile-define-key map
-                (kbd "C-c d") 'helm-projectile-dired-files-delete-action)
-              map)
-    :help-message 'helm-ff-help-message
-    :mode-line helm-read-file-name-mode-line-string
-    :action helm-projectile-dired-file-actions)
-  "Helm source definition for Projectile delete files.")
-
-(defun helm-projectile-dired-find-dir (dir)
-  "Jump to a selected directory DIR from `helm-projectile'."
-  (dired (expand-file-name dir (projectile-project-root)))
-  (run-hooks 'projectile-find-dir-hook))
-
-(defun helm-projectile-dired-find-dir-other-window (dir)
-  "Jump to a selected directory DIR from `helm-projectile'."
-  (dired-other-window (expand-file-name dir (projectile-project-root)))
-  (run-hooks 'projectile-find-dir-hook))
-
-(defvar helm-source-projectile-directories-list
-  (helm-build-sync-source "Projectile directories"
-    :candidates (lambda ()
-                  (when (projectile-project-p)
-                    (with-helm-current-buffer
-                      (let ((dirs (if projectile-find-dir-includes-top-level
-                                      (append '("./") (projectile-current-project-dirs))
-                                    (projectile-current-project-dirs))))
-                        (helm-projectile--files-display-real dirs (projectile-project-root))))))
-    :fuzzy-match helm-projectile-fuzzy-match
-    :action-transformer 'helm-find-files-action-transformer
-    :keymap (let ((map (make-sparse-keymap)))
-              (set-keymap-parent map helm-map)
-              (helm-projectile-define-key map
-                (kbd "<left>") #'helm-previous-source
-                (kbd "<right>") #'helm-next-source
-                (kbd "C-c o") #'helm-projectile-dired-find-dir-other-window
-                (kbd "M-e")   #'helm-projectile-switch-to-eshell
-                (kbd "C-c f") #'helm-projectile-dired-files-new-action
-                (kbd "C-c a") #'helm-projectile-dired-files-add-action
-                (kbd "C-s")   #'helm-projectile-grep)
-              map)
-    :help-message 'helm-ff-help-message
-    :mode-line helm-read-file-name-mode-line-string
-    :action '(("Open Dired" . helm-projectile-dired-find-dir)
-              ("Open Dired in other window `C-c o'" . helm-projectile-dired-find-dir)
-              ("Switch to Eshell `M-e'" . helm-projectile-switch-to-eshell)
-              ("Grep in projects `C-s'" . helm-projectile-grep)
-              ("Create Dired buffer from files `C-c f'" . helm-projectile-dired-files-new-action)
-              ("Add files to Dired buffer `C-c a'" . helm-projectile-dired-files-add-action)))
-  "Helm source for listing project directories.")
-
-(defvar helm-projectile-buffers-list-cache nil)
-
-(defclass helm-source-projectile-buffer (helm-source-sync helm-type-buffer)
-  ((init :initform (lambda ()
-                     ;; Issue #51 Create the list before `helm-buffer' creation.
-                     (setq helm-projectile-buffers-list-cache
-                           (ignore-errors (cdr (projectile-project-buffer-names))))
-                     (let ((result (cl-loop for b in helm-projectile-buffers-list-cache
-                                            maximize (length b) into len-buf
-                                            maximize (length (with-current-buffer b
-                                                               (symbol-name major-mode)))
-                                            into len-mode
-                                            finally return (cons len-buf len-mode))))
-                       (unless helm-buffer-max-length
-                         (setq helm-buffer-max-length (car result)))
-                       (unless helm-buffer-max-len-mode
-                         ;; If a new buffer is longer that this value
-                         ;; this value will be updated
-                         (setq helm-buffer-max-len-mode (cdr result))))))
-   (candidates :initform helm-projectile-buffers-list-cache)
-   (matchplugin :initform nil)
-   (match :initform 'helm-buffers-match-function)
-   (persistent-action :initform 'helm-buffers-list-persistent-action)
-   (keymap :initform helm-buffer-map)
-   (volatile :initform t)
-   (persistent-help
-    :initform
-    "Show this buffer / C-u \\[helm-execute-persistent-action]: Kill this buffer")))
-
-(defvar helm-source-projectile-buffers-list (helm-make-source "Project buffers" 'helm-source-projectile-buffer))
-
-(defvar helm-source-projectile-recentf-list
-  (helm-build-sync-source "Projectile recent files"
-    :candidates (lambda ()
-                  (when (projectile-project-p)
-                   (with-helm-current-buffer
-                     (helm-projectile--files-display-real (projectile-recentf-files)
-                                                          (projectile-project-root)))))
-    :fuzzy-match helm-projectile-fuzzy-match
-    :keymap helm-projectile-find-file-map
-    :help-message 'helm-ff-help-message
-    :mode-line helm-read-file-name-mode-line-string
-    :action helm-projectile-file-actions
-    :persistent-action #'helm-projectile-file-persistent-action
-    :persistent-help "Preview file")
-  "Helm source definition for recent files in current project.")
-
-(defvar helm-source-projectile-files-and-dired-list
-  '(helm-source-projectile-dired-files-list
-    helm-source-projectile-files-list))
-
-(defvar helm-source-projectile-directories-and-dired-list
-  '(helm-source-projectile-dired-files-list
-    helm-source-projectile-directories-list))
-
-(defcustom helm-projectile-sources-list
-  '(helm-source-projectile-buffers-list
-    helm-source-projectile-files-list
-    helm-source-projectile-projects)
-  "Default sources for `helm-projectile'."
-  :type 'list
-  :group 'helm-projectile)
-
-(defmacro helm-projectile-command (command source prompt &optional not-require-root truncate-lines-var)
-  "Template for generic `helm-projectile' commands.
-COMMAND is a command name to be appended with \"helm-projectile\" prefix.
-SOURCE is a Helm source that should be Projectile specific.
-PROMPT is a string for displaying as a prompt.
-NOT-REQUIRE-ROOT specifies the command doesn't need to be used in a
-project root.
-TRUNCATE-LINES-VAR is the symbol used dictate truncation of lines.
-Defaults is `helm-projectile-truncate-lines'."
-  (unless truncate-lines-var (setq truncate-lines-var 'helm-projectile-truncate-lines))
-  `(defun ,(intern (concat "helm-projectile-" command)) (&optional arg)
-     "Use projectile with Helm for finding files in project
-
-With a prefix ARG invalidates the cache first."
-     (interactive "P")
-     (if (projectile-project-p)
-         (projectile-maybe-invalidate-cache arg)
-       (unless ,not-require-root
-         (error "You're not in a project")))
-     (let ((helm-ff-transformer-show-only-basename nil)
-           ;; for consistency, we should just let Projectile take care of ignored files
-           (helm-boring-file-regexp-list nil))
-       (helm :sources ,source
-             :buffer (concat "*helm projectile: " (projectile-project-name) "*")
-             :truncate-lines ,truncate-lines-var
-             :prompt (projectile-prepend-project-name ,prompt)))))
-
-(helm-projectile-command "switch-project" 'helm-source-projectile-projects "Switch to project: " t)
-(helm-projectile-command "find-file" helm-source-projectile-files-and-dired-list "Find file: ")
-(helm-projectile-command "find-file-in-known-projects" 'helm-source-projectile-files-in-all-projects-list "Find file in projects: " t)
-(helm-projectile-command "find-dir" helm-source-projectile-directories-and-dired-list "Find dir: ")
-(helm-projectile-command "recentf" 'helm-source-projectile-recentf-list "Recently visited file: ")
-(helm-projectile-command "switch-to-buffer" 'helm-source-projectile-buffers-list "Switch to buffer: " nil helm-buffers-truncate-lines)
-(helm-projectile-command "browse-dirty-projects" 'helm-source-projectile-dirty-projects "Select a project: " t)
-
-(defun helm-projectile--files-display-real (files root)
-  "Create (DISPLAY . REAL) pairs with FILES and ROOT.
-
-  DISPLAY is the short file name.  REAL is the full path."
-  (cl-loop for display in files
-           collect (cons display (expand-file-name display root))))
-
-;;;###autoload
-(defun helm-projectile-find-file-dwim ()
-  "Find file at point based on context."
-  (interactive)
-  (let* ((project-root (projectile-project-root))
-         (project-files (projectile-current-project-files))
-         (files (projectile-select-files project-files)))
-    (if (= (length files) 1)
-        (find-file (expand-file-name (car files) (projectile-project-root)))
-      (helm :sources (helm-build-sync-source "Projectile files"
-                       :candidates (if (> (length files) 1)
-                                       (helm-projectile--files-display-real files project-root)
-                                     (helm-projectile--files-display-real project-files project-root))
-                       :fuzzy-match helm-projectile-fuzzy-match
-                       :action-transformer 'helm-find-files-action-transformer
-                       :keymap helm-projectile-find-file-map
-                       :help-message helm-ff-help-message
-                       :mode-line helm-read-file-name-mode-line-string
-                       :action helm-projectile-file-actions
-                       :persistent-action #'helm-projectile-file-persistent-action
-                       :persistent-help "Preview file")
-            :buffer "*helm projectile*"
-            :truncate-lines helm-projectile-truncate-lines
-            :prompt (projectile-prepend-project-name "Find file: ")))))
-
-;;;###autoload
-(defun helm-projectile-find-other-file (&optional flex-matching)
-  "Switch between files with the same name but different extensions using Helm.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable `projectile-other-file-alist'."
-  (interactive "P")
-  (let* ((project-root (projectile-project-root))
-         (other-files (projectile-get-other-files (buffer-file-name)
-                                                  (projectile-current-project-files)
-                                                  flex-matching)))
-    (if other-files
-        (if (= (length other-files) 1)
-            (find-file (expand-file-name (car other-files) project-root))
-          (progn
-            (let* ((helm-ff-transformer-show-only-basename nil))
-              (helm :sources (helm-build-sync-source "Projectile other files"
-                               :candidates (helm-projectile--files-display-real other-files project-root)
-                               :keymap helm-projectile-find-file-map
-                               :help-message helm-ff-help-message
-                               :mode-line helm-read-file-name-mode-line-string
-                               :action helm-projectile-file-actions
-                               :persistent-action #'helm-projectile-file-persistent-action
-                               :persistent-help "Preview file")
-                    :buffer "*helm projectile*"
-                    :truncate-lines helm-projectile-truncate-lines
-                    :prompt (projectile-prepend-project-name "Find other file: ")))))
-      (error "No other file found"))))
-
-(defcustom helm-projectile-grep-or-ack-actions
-  '("Find file" helm-grep-action
-    "Find file other frame" helm-grep-other-frame
-    (lambda () (and (locate-library "elscreen")
-               "Find file in Elscreen"))
-    helm-grep-jump-elscreen
-    "Save results in grep buffer" helm-grep-save-results
-    "Find file other window" helm-grep-other-window)
-  "Available actions for `helm-projectile-grep-or-ack'.
-The contents of this list are passed as the arguments to `helm-make-actions'."
-  :type 'symbol
-  :group 'helm-projectile)
-
-(defcustom helm-projectile-set-input-automatically t
-  "If non-nil, attempt to set search input automatically.
-Automatic input selection uses the region (if there is an active
-region), otherwise it uses the current symbol at point (if there
-is one).  Applies to `helm-projectile-grep' and
-`helm-projectile-ack' only.  If the `helm-ag' package is
-installed, then automatic input behavior for `helm-projectile-ag'
-can be customized using `helm-ag-insert-at-point'."
-  :group 'helm-projectile
-  :type 'boolean)
-
-(defun helm-projectile-grep-or-ack (&optional dir use-ack-p ack-ignored-pattern ack-executable)
-  "Perform helm-grep at project root.
-DIR directory where to search
-USE-ACK-P indicates whether to use ack or not.
-ACK-IGNORED-PATTERN is a file regex to exclude from searching.
-ACK-EXECUTABLE is the actual ack binary name.
-It is usually \"ack\" or \"ack-grep\".
-If it is nil, or ack/ack-grep not found then use default grep command."
-  (let* ((default-directory (or dir (projectile-project-root)))
-         (helm-ff-default-directory default-directory)
-         (helm-grep-in-recurse t)
-         (helm-grep-ignored-files (cl-union (projectile-ignored-files-rel)  grep-find-ignored-files))
-         (helm-grep-ignored-directories
-          (cl-union (mapcar 'directory-file-name (projectile-ignored-directories-rel))
-                    grep-find-ignored-directories))
-         (helm-grep-default-command (if use-ack-p
-                                        (concat ack-executable " -H --no-group --no-color " ack-ignored-pattern " %p %f")
-                                      (if (and projectile-use-git-grep (eq (projectile-project-vcs) 'git))
-                                          "git --no-pager grep --no-color -n%c -e %p -- %f"
-                                        "grep -a -r %e -n%cH -e %p %f .")))
-         (helm-grep-default-recurse-command helm-grep-default-command))
-
-    (setq helm-source-grep
-          (helm-build-async-source
-              (capitalize (helm-grep-command t))
-            :header-name (lambda (_name)
-                           (let ((name (if use-ack-p
-                                           "Helm Projectile Ack"
-                                         "Helm Projectile Grep")))
-                             (concat name " " "(C-c ? Help)")))
-            :candidates-process 'helm-grep-collect-candidates
-            :filter-one-by-one 'helm-grep-filter-one-by-one
-            :candidate-number-limit 9999
-            :nohighlight t
-            ;; We need to specify keymap here and as :keymap arg [1]
-            ;; to make it available in further resuming.
-            :keymap helm-grep-map
-            :history 'helm-grep-history
-            :action (apply #'helm-make-actions helm-projectile-grep-or-ack-actions)
-            :persistent-action 'helm-grep-persistent-action
-            :persistent-help "Jump to line (`C-u' Record in mark ring)"
-            :requires-pattern 2))
-    (helm
-     :sources 'helm-source-grep
-     :input (when helm-projectile-set-input-automatically
-              (if (region-active-p)
-                  (buffer-substring-no-properties (region-beginning) (region-end))
-                (thing-at-point 'symbol)))
-     :buffer (format "*helm %s*" (if use-ack-p
-                                     "ack"
-                                   "grep"))
-     :default-directory default-directory
-     :keymap helm-grep-map
-     :history 'helm-grep-history
-     :truncate-lines helm-grep-truncate-lines)))
-
-;;;###autoload
-(defun helm-projectile-on ()
-  "Turn on `helm-projectile' key bindings."
-  (interactive)
-  (message "Turn on helm-projectile key bindings")
-  (helm-projectile-toggle 1))
-
-;;;###autoload
-(defun helm-projectile-off ()
-  "Turn off `helm-projectile' key bindings."
-  (interactive)
-  (message "Turn off helm-projectile key bindings")
-  (helm-projectile-toggle -1))
-
-;;;###autoload
-(defun helm-projectile-grep (&optional dir)
-  "Helm version of `projectile-grep'.
-DIR is the project root, if not set then current directory is used"
-  (interactive)
-  (let ((project-root (or dir (projectile-project-root) (error "You're not in a project"))))
-    (funcall 'run-with-timer 0.01 nil
-             #'helm-projectile-grep-or-ack project-root nil)))
-
-;;;###autoload
-(defun helm-projectile-ack (&optional dir)
-  "Helm version of projectile-ack."
-  (interactive)
-  (let ((project-root (or dir (projectile-project-root) (error "You're not in a project"))))
-    (let ((ack-ignored (mapconcat
-                        'identity
-                        (cl-union (mapcar (lambda (path)
-                                            (concat "--ignore-dir=" (file-name-nondirectory (directory-file-name path))))
-                                          (projectile-ignored-directories))
-                                  (mapcar (lambda (path)
-                                            (concat "--ignore-file=match:" (shell-quote-argument path)))
-                                          (append (projectile-ignored-files) (projectile-patterns-to-ignore)))) " "))
-          (helm-ack-grep-executable (cond
-                                     ((executable-find "ack") "ack")
-                                     ((executable-find "ack-grep") "ack-grep")
-                                     (t (error "ack or ack-grep is not available")))))
-      (funcall 'run-with-timer 0.01 nil
-               #'helm-projectile-grep-or-ack project-root t ack-ignored helm-ack-grep-executable))))
-
-;;;###autoload
-(defun helm-projectile-ag (&optional options)
-  "Helm version of `projectile-ag'."
-  (interactive (if current-prefix-arg (list (helm-read-string "option: " "" 'helm-ag--extra-options-history))))
-  (if (require 'helm-ag nil t)
-      (if (projectile-project-p)
-          (let* ((grep-find-ignored-files (cl-union (projectile-ignored-files-rel) grep-find-ignored-files))
-                 (grep-find-ignored-directories (cl-union (projectile-ignored-directories-rel) grep-find-ignored-directories))
-                 (ignored (mapconcat (lambda (i)
-                                       (concat "--ignore " i))
-                                     (append grep-find-ignored-files grep-find-ignored-directories (cadr (projectile-parse-dirconfig-file)))
-                                     " "))
-                 (helm-ag-base-command (concat helm-ag-base-command " " ignored " " options))
-                 (current-prefix-arg nil))
-            (helm-do-ag (projectile-project-root) (car (projectile-parse-dirconfig-file))))
-        (error "You're not in a project"))
-    (when (yes-or-no-p "`helm-ag' is not installed. Install? ")
-      (condition-case nil
-          (progn
-            (package-install 'helm-ag)
-            (helm-projectile-ag options))
-        (error (error "`helm-ag' is not available.  Is MELPA in your `package-archives'?"))))))
-
-;; Declare/define these to satisfy the byte compiler
-(defvar helm-rg-prepend-file-name-line-at-top-of-matches)
-(defvar helm-rg-include-file-on-every-match-line)
-(declare-function helm-rg "helm-rg")
-
-(defun helm-projectile-rg--region-selection ()
-  (when (use-region-p)
-    (buffer-substring-no-properties (region-beginning) (region-end))))
-
-;;;###autoload
-(defun helm-projectile-rg ()
-  "Projectile version of `helm-rg'."
-  (interactive)
-  (if (require 'helm-rg nil t)
-      (if (projectile-project-p)
-          (let ((helm-rg-prepend-file-name-line-at-top-of-matches nil)
-                (helm-rg-include-file-on-every-match-line t))
-            (helm-rg (or (helm-projectile-rg--region-selection) "") nil (list (projectile-project-root))))
-        (error "You're not in a project"))
-    (when (yes-or-no-p "`helm-rg' is not installed. Install? ")
-      (condition-case nil
-          (progn
-            (package-install 'helm-rg)
-            (helm-projectile-rg))
-        (error "`helm-rg' is not available.  Is MELPA in your `package-archives'?")))))
-
-(defun helm-projectile-commander-bindings ()
-  (def-projectile-commander-method ?a
-    "Run ack on project."
-    (call-interactively 'helm-projectile-ack))
-
-  (def-projectile-commander-method ?A
-    "Find ag on project."
-    (call-interactively 'helm-projectile-ag))
-
-  (def-projectile-commander-method ?f
-    "Find file in project."
-    (helm-projectile-find-file))
-
-  (def-projectile-commander-method ?b
-    "Switch to project buffer."
-    (helm-projectile-switch-to-buffer))
-
-  (def-projectile-commander-method ?d
-    "Find directory in project."
-    (helm-projectile-find-dir))
-
-  (def-projectile-commander-method ?g
-    "Run grep on project."
-    (helm-projectile-grep))
-
-  (def-projectile-commander-method ?s
-    "Switch project."
-    (helm-projectile-switch-project))
-
-  (def-projectile-commander-method ?e
-    "Find recently visited file in project."
-    (helm-projectile-recentf))
-
-  (def-projectile-commander-method ?V
-    "Find dirty projects."
-    (helm-projectile-browse-dirty-projects)))
-
-;;;###autoload
-(defun helm-projectile-toggle (toggle)
-  "Toggle Helm version of Projectile commands."
-  (if (> toggle 0)
-      (progn
-        (when (eq projectile-switch-project-action #'projectile-find-file)
-          (setq projectile-switch-project-action #'helm-projectile-find-file))
-        (define-key projectile-mode-map [remap projectile-find-other-file] #'helm-projectile-find-other-file)
-        (define-key projectile-mode-map [remap projectile-find-file] #'helm-projectile-find-file)
-        (define-key projectile-mode-map [remap projectile-find-file-in-known-projects] #'helm-projectile-find-file-in-known-projects)
-        (define-key projectile-mode-map [remap projectile-find-file-dwim] #'helm-projectile-find-file-dwim)
-        (define-key projectile-mode-map [remap projectile-find-dir] #'helm-projectile-find-dir)
-        (define-key projectile-mode-map [remap projectile-switch-project] #'helm-projectile-switch-project)
-        (define-key projectile-mode-map [remap projectile-recentf] #'helm-projectile-recentf)
-        (define-key projectile-mode-map [remap projectile-switch-to-buffer] #'helm-projectile-switch-to-buffer)
-        (define-key projectile-mode-map [remap projectile-grep] #'helm-projectile-grep)
-        (define-key projectile-mode-map [remap projectile-ack] #'helm-projectile-ack)
-        (define-key projectile-mode-map [remap projectile-ag] #'helm-projectile-ag)
-        (define-key projectile-mode-map [remap projectile-ripgrep] #'helm-projectile-rg)
-        (define-key projectile-mode-map [remap projectile-browse-dirty-projects] #'helm-projectile-browse-dirty-projects)
-        (helm-projectile-commander-bindings))
-    (progn
-      (when (eq projectile-switch-project-action #'helm-projectile-find-file)
-        (setq projectile-switch-project-action #'projectile-find-file))
-      (define-key projectile-mode-map [remap projectile-find-other-file] nil)
-      (define-key projectile-mode-map [remap projectile-find-file] nil)
-      (define-key projectile-mode-map [remap projectile-find-file-in-known-projects] nil)
-      (define-key projectile-mode-map [remap projectile-find-file-dwim] nil)
-      (define-key projectile-mode-map [remap projectile-find-dir] nil)
-      (define-key projectile-mode-map [remap projectile-switch-project] nil)
-      (define-key projectile-mode-map [remap projectile-recentf] nil)
-      (define-key projectile-mode-map [remap projectile-switch-to-buffer] nil)
-      (define-key projectile-mode-map [remap projectile-grep] nil)
-      (define-key projectile-mode-map [remap projectile-ag] nil)
-      (define-key projectile-mode-map [remap projectile-ripgrep] nil)
-      (define-key projectile-mode-map [remap projectile-browse-dirty-projects] nil)
-      (projectile-commander-bindings))))
-
-;;;###autoload
-(defun helm-projectile (&optional arg)
-  "Use projectile with Helm instead of ido.
-
-With a prefix ARG invalidates the cache first.
-If invoked outside of a project, displays a list of known projects to jump."
-  (interactive "P")
-  (if (not (projectile-project-p))
-      (helm-projectile-switch-project arg)
-    (projectile-maybe-invalidate-cache arg)
-    (let ((helm-ff-transformer-show-only-basename nil))
-      (helm :sources helm-projectile-sources-list
-            :buffer "*helm projectile*"
-            :truncate-lines helm-projectile-truncate-lines
-            :prompt (projectile-prepend-project-name (if (projectile-project-p)
-                                                         "pattern: "
-                                                       "Switch to project: "))))))
-
-;;;###autoload
-(eval-after-load 'projectile
-  '(progn
-     (define-key projectile-command-map (kbd "h") #'helm-projectile)))
-
-(provide 'helm-projectile)
-
-;;; helm-projectile.el ends here
diff --git a/elpa/helm-projectile-20180815.1514/helm-projectile.elc b/elpa/helm-projectile-20180815.1514/helm-projectile.elc
deleted file mode 100644
index 9efa280..0000000
--- a/elpa/helm-projectile-20180815.1514/helm-projectile.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/AUTHORS.md b/elpa/magit-20181116.1412/AUTHORS.md
deleted file mode 100644
index 17f8191..0000000
--- a/elpa/magit-20181116.1412/AUTHORS.md
+++ /dev/null
@@ -1,318 +0,0 @@
-Authors
-=======
-
-The following people have contributed to Magit, including the
-libraries `git-commit.el`, `magit-popup.el`, and `with-editor.el`
-which are distributed as separate Elpa packages.
-
-For statistics see https://magit.vc/stats/authors.html.
-
-Names below are sorted alphabetically.
-
-Author
-------
-
-- Marius Vollmer <marius.vollmer@gmail.com>
-
-Maintainer
-----------
-
-- Jonas Bernoulli <jonas@bernoul.li>
-
-Developers
-----------
-
-- Kyle Meyer <kyle@kyleam.com>
-- Noam Postavsky <npostavs@users.sourceforge.net>
-
-Retired Maintainers and Developers
-----------------------------------
-
-- Nicolas Dudebout <nicolas.dudebout@gatech.edu>
-- Peter J. Weisberg <pj@irregularexpressions.net>
-- Pieter Praet <pieter@praet.org>
-- Phil Jackson <phil@shellarchive.co.uk>
-- Rémi Vanicat <vanicat@debian.org>
-- Yann Hodique <yann.hodique@gmail.com>
-
-Contributors
-------------
-
-- Aaron Culich <aculich@gmail.com>
-- Aaron Madlon-Kay <aaron@madlon-kay.com>
-- Abdo Roig-Maranges <abdo.roig@gmail.com>
-- Adam Benanti <0entropy@protonmail.com>
-- Adam Porter <adam@alphapapa.net>
-- Adam Spiers <emacs@adamspiers.org>
-- Adeodato Simó <dato@net.com.org.es>
-- Ævar Arnfjörð Bjarmason <avarab@gmail.com>
-- Alan Falloon <alan.falloon@gmail.com>
-- Alban Gruin <alban@pa1ch.fr>
-- Aleksey Uimanov <s9gf4ult@gmail.com>
-- Alexander Gramiak <fice-t@protonmail.com>
-- Alex Branham <alex.branham@gmail.com>
-- Alex Dunn <adunn@ucsb.edu>
-- Alexey Voinov <alexey.v.voinov@gmail.com>
-- Alex Kost <alezost@gmail.com>
-- Alex Ott <alexott@gmail.com>
-- Allen <darkfeline@felesatra.moe>
-- Allen Li <darkfeline@felesatra.moe>
-- Andreas Fuchs <asf@boinkor.net>
-- Andreas Liljeqvist <andreas.liljeqvist@robacks.se>
-- Andreas Rottmann <a.rottmann@gmx.at>
-- Andrei Chițu <andrei.chitu1@gmail.com>
-- Andrew Kirkpatrick <andrew.kirkpatrick@adelaide.edu.au>
-- Andrew Schwartzmeyer <andrew@schwartzmeyer.com>
-- Andrey Smirnov <andrew.smirnov@gmail.com>
-- Andriy Kmit' <dev@madand.net>
-- Andy Sawyer <git@pureabstract.org>
-- Aria Edmonds <aria@ar1as.space>
-- Arialdo Martini <arialdomartini@gmail.com>
-- Barak A. Pearlmutter <barak+git@pearlmutter.net>
-- Bar Magal <bmagamb@gmail.com>
-- Bart Bakker <bart@thesoftwarecraft.com>
-- Basil L. Contovounesios <contovob@tcd.ie>
-- Bastian Beischer <beischer@physik.rwth-aachen.de>
-- Benjamin Motz <benjamin.motz@mailbox.org>
-- Ben North <ben@redfrontdoor.org>
-- Ben Walton <bwalton@artsci.utoronto.ca>
-- Bob Uhl <buhl@zvelo.com>
-- Bradley Wright <brad@intranation.com>
-- Brandon W Maister <quodlibetor@gmail.com>
-- Brian Warner <warner@lothar.com>
-- Bryan Shell <bryan.shell@orbitz.com>
-- Buster Copley <buster@buster.me.uk>
-- Carl Lieberman <liebermancarl@gmail.com>
-- Chillar Anand <anand21nanda@gmail.com>
-- Chris Bernard <cebernard@gmail.com>
-- Chris Done <chrisdone@gmail.com>
-- Chris LaRose <cjlarose@gmail.com>
-- Chris Moore <dooglus@gmail.com>
-- Chris Ring <chris@ringthis.com>
-- Chris Shoemaker <chris@mojotech.com>
-- Christian Dietrich <christian.dietrich@informatik.uni-erlangen.de>
-- Christian Kluge <ckfrakturfreak@web.de>
-- Christophe Junke <junke.christophe@gmail.com>
-- Christopher Monsanto <chris@monsan.to>
-- Cornelius Mika <cornelius.mika@gmail.com>
-- Craig Andera <candera@wangdera.com>
-- Dale Hagglund <dale.hagglund@gmail.com>
-- Damien Cassou <damien@cassou.me>
-- Dan Erikson <derikson3@gmail.com>
-- Daniel Brockman <daniel@gointeractive.se>
-- Daniel Farina <drfarina@acm.org>
-- Daniel Gröber <daniel@dps.uibk.ac.at>
-- Daniel Hackney <dan@haxney.org>
-- Daniel Kraus <daniel@kraus.my>
-- Daniel Mai <daniel@danielmai.net>
-- Dan LaManna <dan.lamanna@gmail.com>
-- Dato Simó <dato@net.com.org.es>
-- David Abrahams <dave@boostpro.com>
-- David Ellison <davide@voicebox.com>
-- David Hull <david.hull@openx.com>
-- David L. Rager <ragerdl@gmail.com>
-- David Wallin <david.wallin@gmail.com>
-- Dean Kariniemi <8913263+d3k4r@users.noreply.github.com>
-- Dennis Paskorz <dennis@walltowall.com>
-- Divye Kapoor <divye@google.com>
-- Dominique Quatravaux <domq@google.com>
-- Duianto Vebotci <vebotci@openmailbox.org>
-- Eli Barzilay <eli@barzilay.org>
-- Eric Davis <ed@npri.org>
-- Eric Prud'hommeaux <eric@w3.org>
-- Eric Schulte <schulte.eric@gmail.com>
-- Erik Anderson <erikbpanderson@gmail.com>
-- Evgkeni Sampelnikof <esabof@gmail.com>
-- Eyal Lotem <eyal.lotem@gmail.com>
-- Fabian Wiget <fabacino@gmail.com>
-- Felix Geller <fgeller@gmail.com>
-- Felix Yan <felixonmars@archlinux.org>
-- Feng Li <fengli@blackmagicdesign.com>
-- Florian Ragwitz <rafl@debian.org>
-- Fritz Grabo <fritz.grabo@gmail.com>
-- Fritz Stelzer <brotzeitmacher@gmail.com>
-- Geoff Shannon <geoffpshannon@gmail.com>
-- George Kadianakis <desnacked@gmail.com>
-- Graham Clark <grclark@gmail.com>
-- Graham Dobbins <gdobbins@protonmail.com>
-- Greg A. Woods <woods@planix.com>
-- Greg Lucas <greg@glucas.net>
-- Greg Sexton <gregsexton@gmail.com>
-- Guillaume Martres <smarter@ubuntu.com>
-- Hannu Koivisto <azure@iki.fi>
-- Hans-Peter Deifel <hpdeifel@gmx.de>
-- Ian Eure <ian.eure@gmail.com>
-- Ingo Lohmar <i.lohmar@gmail.com>
-- Ioan-Adrian Ratiu <adi@adirat.com>
-- Ivan Brennan <ivan.brennan@gmail.com>
-- Jan Tatarik <jan.tatarik@xing.com>
-- Jasper St. Pierre <jstpierre@mecheye.net>
-- Jeff Bellegarde <jbellegarde@whitepages.com>
-- Jeff Dairiki <dairiki@dairiki.org>
-- Jeremy Meng <yumeng@microsoft.com>
-- Jesse Alama <jesse.alama@gmail.com>
-- Jim Blandy <jimb@red-bean.com>
-- Joakim Jalap <JOJA@stoneridge.com>
-- Johann Klähn <kljohann@gmail.com>
-- John Mastro <john.b.mastro@gmail.com>
-- John Morris <john@zultron.com>
-- John Wiegley <johnw@newartisans.com>
-- Jonas Bernoulli <jonas@bernoul.li>
-- Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com>
-- Jonathan Roes <jroes@jroes.net>
-- Jon Vanderwijk <jonathn@github.com>
-- Jordan Galby <gravemind2a@gmail.com>
-- Jordan Greenberg <jordan@softwareslave.com>
-- Josiah Schwab <jschwab@gmail.com>
-- Julien Danjou <julien@danjou.info>
-- Justin Burkett <justin@burkett.cc>
-- Justin Caratzas <justin.caratzas@gmail.com>
-- Justin Guenther <jguenther@gmail.com>
-- Justin Thomas <justin.thomas1@gmail.com>
-- Kan-Ru Chen <kanru@kanru.info>
-- Kenny Ballou <kballou@devnulllabs.io>
-- Keshav Kini <keshav.kini@gmail.com>
-- Kevin Brubeck Unhammer <unhammer@fsfe.org>
-- Kévin Le Gouguec <kevin.legouguec@gmail.com>
-- Kimberly Wolk <kimwolk@hotmail.com>
-- Kyle Meyer <kyle@kyleam.com>
-- Laurent Laffont <laurent.laffont@gmail.com>
-- Laverne Schrock <laverne@schrock.email>
-- Leandro Facchinetti <me@leafac.com>
-- Lele Gaifax <lele@metapensiero.it>
-- Leo Liu <sdl.web@gmail.com>
-- Leonardo Etcheverry <leo@kalio.net>
-- Lingchao Xin <douglarek@users.noreply.github.com>
-- Li-Yun Chang <michael142536@gmail.com>
-- Lluís Vilanova <vilanova@ac.upc.edu>
-- Loic Dachary <loic@dachary.org>
-- Louis Roché <louis@louisroche.net>
-- Luís Oliveira <luismbo@gmail.com>
-- Luke Amdor <luke.amdor@gmail.com>
-- Mak Kolybabi <mak@kolybabi.com>
-- Manuel Vázquez Acosta <mva.led@gmail.com>
-- Marcel Wolf <mwolf@ml1.net>
-- Marc Herbert <marc.herbert@gmail.com>
-- Marcin Bachry <hegel666@gmail.com>
-- Marco Craveiro <marco.craveiro@gmail.com>
-- Marco Wahl <marcowahlsoft@gmail.com>
-- Marc Sherry <msherry@gmail.com>
-- Marian Schubert <marian.schubert@gmail.com>
-- Mario Rodas <marsam@users.noreply.github.com>
-- Marius Vollmer <marius.vollmer@gmail.com>
-- Mark Hepburn <Mark.Hepburn@csiro.au>
-- Mark Karpov <markkarpov@opmbx.org>
-- Mark Oteiza <mvoteiza@udel.edu>
-- Matthew Fluet <matthew.fluet@gmail.com>
-- Matthieu Hauglustaine <matt.hauglustaine@gmail.com>
-- Matus Goljer <dota.keys@gmail.com>
-- Michael Fogleman <michaelwfogleman@gmail.com>
-- Michael Griffiths <mikey@cich.li>
-- Michael Heerdegen <michael_heerdegen@web.de>
-- Michal Sojka <sojkam1@fel.cvut.cz>
-- Miciah Masters <miciah.masters@gmail.com>
-- Miles Bader <miles@gnu.org>
-- Miloš Mošić <mosic.milos@gmail.com>
-- Mitchel Humpherys <mitch.special@gmail.com>
-- Moritz Bunkus <moritz@bunkus.org>
-- Natalie Weizenbaum <nex342@gmail.com>
-- Nguyễn Tuấn Anh <ubolonton@gmail.com>
-- Nic Ferier <nic@ferrier.me.uk>
-- Nick Alcock <nick.alcock@oracle.com>
-- Nick Alexander <nalexander@mozilla.com>
-- Nick Dimiduk <ndimiduk@gmail.com>
-- Nicklas Lindgren <nili@gulmohar.se>
-- Nicolas Dudebout <nicolas.dudebout@gatech.edu>
-- Nicolas Petton <nicolas@petton.fr>
-- Nicolas Richard <theonewiththeevillook@yahoo.fr>
-- Nikolay Martynov <mar.kolya@gmail.com>
-- Noam Postavsky <npostavs@users.sourceforge.net>
-- N. Troy de Freitas <me@ntdef.com>
-- Ole Arndt <oliver.arndt@cegedim.com>
-- Oleh Krehel <ohwoeowho@gmail.com>
-- Orivej Desh <orivej@gmx.fr>
-- Óscar Fuentes <ofv@wanadoo.es>
-- Paul Stadig <paul@stadig.name>
-- Pavel Holejsovsky <pavel.holejsovsky@upek.com>
-- Pekka Pessi <nospam@pessi.fi>
-- Peter Eisentraut <peter@eisentraut.org>
-- Peter Jaros <peter.a.jaros@gmail.com>
-- Peter J. Weisberg <pj@irregularexpressions.net>
-- Peter Vasil <mail@petervasil.net>
-- Philippe Vaucher <philippe.vaucher@gmail.com>
-- Philipp Haselwarter <philipp@haselwarter.org>
-- Philipp Stephani <phst@google.com>
-- Philip Weaver <philip.weaver@gmail.com>
-- Phil Jackson <phil@shellarchive.co.uk>
-- Phil Sainty <phil@catalyst.net.nz>
-- Pierre Neidhardt <ambrevar@gmail.com>
-- Pieter Praet <pieter@praet.org>
-- Prathamesh Sonpatki <csonpatki@gmail.com>
-- rabio <rabiodev@o2.pl>
-- Radon Rosborough <radon.neon@gmail.com>
-- Rafael Laboissiere <rafael@laboissiere.net>
-- Raimon Grau <raimon@3scale.net>
-- Ramkumar Ramachandra <artagnon@gmail.com>
-- Remco van 't Veer <rwvtveer@xs4all.nl>
-- Rémi Vanicat <vanicat@debian.org>
-- René Stadler <mail@renestadler.de>
-- Richard Kim <emacs18@gmail.com>
-- Robert Boone <robo4288@gmail.com>
-- Robin Green <greenrd@greenrd.org>
-- Roger Crew <crew@cs.stanford.edu>
-- Romain Francoise <romain@orebokech.com>
-- Ron Parker <rparker@a123systems.com>
-- Roy Crihfield <rscrihf@gmail.com>
-- Rüdiger Sonderfeld <ruediger@c-plusplus.net>
-- Russell Black <black.russell@gmail.com>
-- Ryan C. Thompson <rct@thompsonclan.org>
-- Samuel Bronson <naesten@gmail.com>
-- Samuel W. Flint <swflint@flintfam.org>
-- Sanjoy Das <sanjoy@playingwithpointers.com>
-- Sean Allred <code@seanallred.com>
-- Sean Bryant <sbryant@hackinggibsons.com>
-- Sean Whitton <spwhitton@spwhitton.name>
-- Sebastian Wiesner <lunaryorn@gmail.com>
-- Sébastien Gross <seb@chezwam.org>
-- Seong-Kook Shin <cinsky@gmail.com>
-- Sergey Pashinin <sergey@pashinin.com>
-- Sergey Vinokurov <serg.foo@gmail.com>
-- Servilio Afre Puentes <afrepues@mcmaster.ca>
-- Silent Sphere <silentsphere110@gmail.com>
-- Štěpán Němec <stepnem@gmail.com>
-- Steven Chow <steve@myfreestuffapp.com>
-- Steven E. Harris <seh@panix.com>
-- Steven Thomas <sthomas314@gmail.com>
-- Steven Vancoillie <steven.vancoillie@runbox.com>
-- Steve Purcell <steve@sanityinc.com>
-- Suhail Shergill <suhailshergill@gmail.com>
-- Sylvain Rousseau <thisirs@gmail.com>
-- Syohei Yoshida <syohex@gmail.com>
-- Takafumi Arakaki <aka.tkf@gmail.com>
-- Teemu Likonen <tlikonen@iki.fi>
-- Teruki Shigitani <teruki.shigitani@gmail.com>
-- Thierry Volpiatto <thierry.volpiatto@gmail.com>
-- Thomas A Caswell <tcaswell@gmail.com>
-- Thomas Frössman <thomasf@jossystem.se>
-- Thomas Jost <thomas.jost@gmail.com>
-- Thomas Riccardi <riccardi.thomas@gmail.com>
-- Tibor Simko <tibor.simko@cern.ch>
-- Timo Juhani Lindfors <timo.lindfors@iki.fi>
-- Tim Perkins <tprk77@gmail.com>
-- Tim Wraight <tim@wraight.net>
-- Ting-Yu Lin <aethanyc@gmail.com>
-- Tom Feist <shabble@metavore.org>
-- Tunc Uzlu <bb2020@users.noreply.github.com>
-- Vineet Naik <vineet@helpshift.com>
-- Vladimir Panteleev <git@thecybershadow.net>
-- Wei Huang <weih@opera.com>
-- Wilfred Hughes <me@wilfred.me.uk>
-- Win Treese <treese@acm.org>
-- Wouter Bolsterlee <wouter@bolsterl.ee>
-- Xavier Noria <fxn@hashref.com>
-- Xu Chunyang <mail@xuchunyang.me>
-- Yann Hodique <yann.hodique@gmail.com>
-- York Zhao <gtdplatform@gmail.com>
-- Yuichi Higashi <aaa707b@gmail.com>
-- Yuri Khan <yurivkhan@gmail.com>
-- Zach Latta <zach@zachlatta.com>
diff --git a/elpa/magit-20181116.1412/LICENSE b/elpa/magit-20181116.1412/LICENSE
deleted file mode 100644
index 4432540..0000000
--- a/elpa/magit-20181116.1412/LICENSE
+++ /dev/null
@@ -1,676 +0,0 @@
-
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-			    Preamble
-
-  The GNU General Public License is a free, copyleft license for
-software and other kinds of works.
-
-  The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works.  By contrast,
-the GNU General Public License is intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.  We, the Free Software Foundation, use the
-GNU General Public License for most of our software; it applies also to
-any other work released this way by its authors.  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
-  To protect your rights, we need to prevent others from denying you
-these rights or asking you to surrender the rights.  Therefore, you have
-certain responsibilities if you distribute copies of the software, or if
-you modify it: responsibilities to respect the freedom of others.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must pass on to the recipients the same
-freedoms that you received.  You must make sure that they, too, receive
-or can get the source code.  And you must show them these terms so they
-know their rights.
-
-  Developers that use the GNU GPL protect your rights with two steps:
-(1) assert copyright on the software, and (2) offer you this License
-giving you legal permission to copy, distribute and/or modify it.
-
-  For the developers' and authors' protection, the GPL clearly explains
-that there is no warranty for this free software.  For both users' and
-authors' sake, the GPL requires that modified versions be marked as
-changed, so that their problems will not be attributed erroneously to
-authors of previous versions.
-
-  Some devices are designed to deny users access to install or run
-modified versions of the software inside them, although the manufacturer
-can do so.  This is fundamentally incompatible with the aim of
-protecting users' freedom to change the software.  The systematic
-pattern of such abuse occurs in the area of products for individuals to
-use, which is precisely where it is most unacceptable.  Therefore, we
-have designed this version of the GPL to prohibit the practice for those
-products.  If such problems arise substantially in other domains, we
-stand ready to extend this provision to those domains in future versions
-of the GPL, as needed to protect the freedom of users.
-
-  Finally, every program is threatened constantly by software patents.
-States should not allow patents to restrict development and use of
-software on general-purpose computers, but in those that do, we wish to
-avoid the special danger that patents applied to a free program could
-make it effectively proprietary.  To prevent this, the GPL assures that
-patents cannot be used to render the program non-free.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-		       TERMS AND CONDITIONS
-
-  0. Definitions.
-
-  "This License" refers to version 3 of the GNU General Public License.
-
-  "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
- 
-  "The Program" refers to any copyrightable work licensed under this
-License.  Each licensee is addressed as "you".  "Licensees" and
-"recipients" may be individuals or organizations.
-
-  To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy.  The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
-  A "covered work" means either the unmodified Program or a work based
-on the Program.
-
-  To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy.  Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
-  To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies.  Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
-  An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License.  If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
-  1. Source Code.
-
-  The "source code" for a work means the preferred form of the work
-for making modifications to it.  "Object code" means any non-source
-form of a work.
-
-  A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
-  The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form.  A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
-  The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities.  However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work.  For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
-  The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
-  The Corresponding Source for a work in source code form is that
-same work.
-
-  2. Basic Permissions.
-
-  All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met.  This License explicitly affirms your unlimited
-permission to run the unmodified Program.  The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work.  This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
-  You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force.  You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright.  Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
-  Conveying under any other circumstances is permitted solely under
-the conditions stated below.  Sublicensing is not allowed; section 10
-makes it unnecessary.
-
-  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
-  No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
-  When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
-  4. Conveying Verbatim Copies.
-
-  You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
-  You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
-  5. Conveying Modified Source Versions.
-
-  You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
-    a) The work must carry prominent notices stating that you modified
-    it, and giving a relevant date.
-
-    b) The work must carry prominent notices stating that it is
-    released under this License and any conditions added under section
-    7.  This requirement modifies the requirement in section 4 to
-    "keep intact all notices".
-
-    c) You must license the entire work, as a whole, under this
-    License to anyone who comes into possession of a copy.  This
-    License will therefore apply, along with any applicable section 7
-    additional terms, to the whole of the work, and all its parts,
-    regardless of how they are packaged.  This License gives no
-    permission to license the work in any other way, but it does not
-    invalidate such permission if you have separately received it.
-
-    d) If the work has interactive user interfaces, each must display
-    Appropriate Legal Notices; however, if the Program has interactive
-    interfaces that do not display Appropriate Legal Notices, your
-    work need not make them do so.
-
-  A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit.  Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
-  6. Conveying Non-Source Forms.
-
-  You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
-    a) Convey the object code in, or embodied in, a physical product
-    (including a physical distribution medium), accompanied by the
-    Corresponding Source fixed on a durable physical medium
-    customarily used for software interchange.
-
-    b) Convey the object code in, or embodied in, a physical product
-    (including a physical distribution medium), accompanied by a
-    written offer, valid for at least three years and valid for as
-    long as you offer spare parts or customer support for that product
-    model, to give anyone who possesses the object code either (1) a
-    copy of the Corresponding Source for all the software in the
-    product that is covered by this License, on a durable physical
-    medium customarily used for software interchange, for a price no
-    more than your reasonable cost of physically performing this
-    conveying of source, or (2) access to copy the
-    Corresponding Source from a network server at no charge.
-
-    c) Convey individual copies of the object code with a copy of the
-    written offer to provide the Corresponding Source.  This
-    alternative is allowed only occasionally and noncommercially, and
-    only if you received the object code with such an offer, in accord
-    with subsection 6b.
-
-    d) Convey the object code by offering access from a designated
-    place (gratis or for a charge), and offer equivalent access to the
-    Corresponding Source in the same way through the same place at no
-    further charge.  You need not require recipients to copy the
-    Corresponding Source along with the object code.  If the place to
-    copy the object code is a network server, the Corresponding Source
-    may be on a different server (operated by you or a third party)
-    that supports equivalent copying facilities, provided you maintain
-    clear directions next to the object code saying where to find the
-    Corresponding Source.  Regardless of what server hosts the
-    Corresponding Source, you remain obligated to ensure that it is
-    available for as long as needed to satisfy these requirements.
-
-    e) Convey the object code using peer-to-peer transmission, provided
-    you inform other peers where the object code and Corresponding
-    Source of the work are being offered to the general public at no
-    charge under subsection 6d.
-
-  A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
-  A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling.  In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage.  For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product.  A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
-  "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source.  The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
-  If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information.  But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
-  The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed.  Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
-  Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
-  7. Additional Terms.
-
-  "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law.  If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
-  When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it.  (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.)  You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
-  Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
-    a) Disclaiming warranty or limiting liability differently from the
-    terms of sections 15 and 16 of this License; or
-
-    b) Requiring preservation of specified reasonable legal notices or
-    author attributions in that material or in the Appropriate Legal
-    Notices displayed by works containing it; or
-
-    c) Prohibiting misrepresentation of the origin of that material, or
-    requiring that modified versions of such material be marked in
-    reasonable ways as different from the original version; or
-
-    d) Limiting the use for publicity purposes of names of licensors or
-    authors of the material; or
-
-    e) Declining to grant rights under trademark law for use of some
-    trade names, trademarks, or service marks; or
-
-    f) Requiring indemnification of licensors and authors of that
-    material by anyone who conveys the material (or modified versions of
-    it) with contractual assumptions of liability to the recipient, for
-    any liability that these contractual assumptions directly impose on
-    those licensors and authors.
-
-  All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10.  If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term.  If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
-  If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
-  Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
-  8. Termination.
-
-  You may not propagate or modify a covered work except as expressly
-provided under this License.  Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
-  However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
-  Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
-  Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License.  If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
-  9. Acceptance Not Required for Having Copies.
-
-  You are not required to accept this License in order to receive or
-run a copy of the Program.  Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance.  However,
-nothing other than this License grants you permission to propagate or
-modify any covered work.  These actions infringe copyright if you do
-not accept this License.  Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
-  10. Automatic Licensing of Downstream Recipients.
-
-  Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License.  You are not responsible
-for enforcing compliance by third parties with this License.
-
-  An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations.  If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
-  You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License.  For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
-  11. Patents.
-
-  A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based.  The
-work thus licensed is called the contributor's "contributor version".
-
-  A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version.  For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
-  Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
-  In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement).  To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
-  If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients.  "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-  
-  If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
-  A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License.  You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
-  Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
-  12. No Surrender of Others' Freedom.
-
-  If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all.  For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
-  13. Use with the GNU Affero General Public License.
-
-  Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU Affero General Public License into a single
-combined work, and to convey the resulting work.  The terms of this
-License will continue to apply to the part which is the covered work,
-but the special requirements of the GNU Affero General Public License,
-section 13, concerning interaction through a network will apply to the
-combination as such.
-
-  14. Revised Versions of this License.
-
-  The Free Software Foundation may publish revised and/or new versions of
-the GNU General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-  Each version is given a distinguishing version number.  If the
-Program specifies that a certain numbered version of the GNU General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation.  If the Program does not specify a version number of the
-GNU General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
-  If the Program specifies that a proxy can decide which future
-versions of the GNU General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
-  Later license versions may give you additional or different
-permissions.  However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
-  15. Disclaimer of Warranty.
-
-  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. Limitation of Liability.
-
-  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
-  17. Interpretation of Sections 15 and 16.
-
-  If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
-		     END OF TERMS AND CONDITIONS
-
-	    How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-Also add information on how to contact you by electronic and paper mail.
-
-  If the program does terminal interaction, make it output a short
-notice like this when it starts in an interactive mode:
-
-    <program>  Copyright (C) <year>  <name of author>
-    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, your program's commands
-might be different; for a GUI interface, you would use an "about box".
-
-  You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU GPL, see
-<http://www.gnu.org/licenses/>.
-
-  The GNU General Public License does not permit incorporating your program
-into proprietary programs.  If your program is a subroutine library, you
-may consider it more useful to permit linking proprietary applications with
-the library.  If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.  But first, please read
-<http://www.gnu.org/philosophy/why-not-lgpl.html>.
-
diff --git a/elpa/magit-20181116.1412/dir b/elpa/magit-20181116.1412/dir
deleted file mode 100644
index dfdbd71..0000000
--- a/elpa/magit-20181116.1412/dir
+++ /dev/null
@@ -1,18 +0,0 @@
-This is the file .../info/dir, which contains the
-topmost node of the Info hierarchy, called (dir)Top.
-The first time you invoke Info you start off looking at this node.
-
-File: dir,	Node: Top	This is the top of the INFO tree
-
-  This (the Directory node) gives a menu of major topics.
-  Typing "q" exits, "H" lists all Info commands, "d" returns here,
-  "h" gives a primer for first-timers,
-  "mEmacs<Return>" visits the Emacs manual, etc.
-
-  In Emacs, you can click mouse button 2 on a menu item or cross reference
-  to select it.
-
-* Menu:
-
-Emacs
-* Magit: (magit).               Using Git from Emacs with Magit.
diff --git a/elpa/magit-20181116.1412/git-rebase.el b/elpa/magit-20181116.1412/git-rebase.el
deleted file mode 100644
index 07577c5..0000000
--- a/elpa/magit-20181116.1412/git-rebase.el
+++ /dev/null
@@ -1,593 +0,0 @@
-;;; git-rebase.el --- Edit Git rebase files  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Phil Jackson <phil@shellarchive.co.uk>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this file.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This package assists the user in editing the list of commits to be
-;; rewritten during an interactive rebase.
-
-;; When the user initiates an interactive rebase, e.g. using "r e" in
-;; a Magit buffer or on the command line using "git rebase -i REV",
-;; Git invokes the `$GIT_SEQUENCE_EDITOR' (or if that is undefined
-;; `$GIT_EDITOR' or even `$EDITOR') letting the user rearrange, drop,
-;; reword, edit, and squash commits.
-
-;; This package provides the major-mode `git-rebase-mode' which makes
-;; doing so much more fun, by making the buffer more colorful and
-;; providing the following commands:
-;;
-;;   C-c C-c  Tell Git to make it happen.
-;;   C-c C-k  Tell Git that you changed your mind, i.e. abort.
-;;
-;;   p        Move point to previous line.
-;;   n        Move point to next line.
-;;
-;;   M-p      Move the commit at point up.
-;;   M-n      Move the commit at point down.
-;;
-;;   k        Drop the commit at point.
-;;   c        Don't drop the commit at point.
-;;   r        Change the message of the commit at point.
-;;   e        Edit the commit at point.
-;;   s        Squash the commit at point, into the one above.
-;;   f        Like "s" but don't also edit the commit message.
-;;   x        Add a script to be run with the commit at point
-;;            being checked out.
-;;   z        Add noop action at point.
-;;
-;;   SPC      Show the commit at point in another buffer.
-;;   RET      Show the commit at point in another buffer and
-;;            select its window.
-;;   C-/      Undo last change.
-
-;; You should probably also read the `git-rebase' manpage.
-
-;;; Code:
-
-(require 'dash)
-(require 'easymenu)
-(require 'server)
-(require 'with-editor)
-(require 'magit)
-
-(and (require 'async-bytecomp nil t)
-     (memq 'magit (bound-and-true-p async-bytecomp-allowed-packages))
-     (fboundp 'async-bytecomp-package-mode)
-     (async-bytecomp-package-mode 1))
-
-(eval-when-compile (require 'recentf))
-
-;;; Options
-;;;; Variables
-
-(defgroup git-rebase nil
-  "Edit Git rebase sequences."
-  :link '(info-link "(magit)Editing Rebase Sequences")
-  :group 'tools)
-
-(defcustom git-rebase-auto-advance t
-  "Whether to move to next line after changing a line."
-  :group 'git-rebase
-  :type 'boolean)
-
-(defcustom git-rebase-show-instructions t
-  "Whether to show usage instructions inside the rebase buffer."
-  :group 'git-rebase
-  :type 'boolean)
-
-(defcustom git-rebase-confirm-cancel t
-  "Whether confirmation is required to cancel."
-  :group 'git-rebase
-  :type 'boolean)
-
-;;;; Faces
-
-(defgroup git-rebase-faces nil
-  "Faces used by Git-Rebase mode."
-  :group 'faces
-  :group 'git-rebase)
-
-(defface git-rebase-hash '((t (:inherit magit-hash)))
-  "Face for commit hashes."
-  :group 'git-rebase-faces)
-
-(defface git-rebase-description nil
-  "Face for commit descriptions."
-  :group 'git-rebase-faces)
-
-(defface git-rebase-killed-action
-  '((t (:inherit font-lock-comment-face :strike-through t)))
-  "Face for commented action and exec lines."
-  :group 'git-rebase-faces)
-
-(defface git-rebase-comment-hash
-  '((t (:inherit git-rebase-hash :weight bold)))
-  "Face for commit hashes in commit message comments."
-  :group 'git-rebase-faces)
-
-(defface git-rebase-comment-heading
-  '((t :inherit font-lock-keyword-face))
-  "Face for headings in rebase message comments."
-  :group 'git-commit-faces)
-
-;;; Keymaps
-
-(defvar git-rebase-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map special-mode-map)
-    (cond ((featurep 'jkl)
-           (define-key map [return]    'git-rebase-show-commit)
-           (define-key map (kbd   "i") 'git-rebase-backward-line)
-           (define-key map (kbd   "k") 'forward-line)
-           (define-key map (kbd "M-i") 'git-rebase-move-line-up)
-           (define-key map (kbd "M-k") 'git-rebase-move-line-down)
-           (define-key map (kbd   "p") 'git-rebase-pick)
-           (define-key map (kbd   ",") 'git-rebase-kill-line))
-          (t
-           (define-key map (kbd "C-m") 'git-rebase-show-commit)
-           (define-key map (kbd   "p") 'git-rebase-backward-line)
-           (define-key map (kbd   "n") 'forward-line)
-           (define-key map (kbd "M-p") 'git-rebase-move-line-up)
-           (define-key map (kbd "M-n") 'git-rebase-move-line-down)
-           (define-key map (kbd   "c") 'git-rebase-pick)
-           (define-key map (kbd   "k") 'git-rebase-kill-line)
-           (define-key map (kbd "C-k") 'git-rebase-kill-line)))
-    (define-key map (kbd "e") 'git-rebase-edit)
-    (define-key map (kbd "m") 'git-rebase-edit)
-    (define-key map (kbd "f") 'git-rebase-fixup)
-    (define-key map (kbd "q") 'undefined)
-    (define-key map (kbd "r") 'git-rebase-reword)
-    (define-key map (kbd "w") 'git-rebase-reword)
-    (define-key map (kbd "s") 'git-rebase-squash)
-    (define-key map (kbd "x") 'git-rebase-exec)
-    (define-key map (kbd "y") 'git-rebase-insert)
-    (define-key map (kbd "z") 'git-rebase-noop)
-    (define-key map (kbd "SPC")     'git-rebase-show-or-scroll-up)
-    (define-key map (kbd "DEL")     'git-rebase-show-or-scroll-down)
-    (define-key map (kbd "C-x C-t") 'git-rebase-move-line-up)
-    (define-key map [M-up]          'git-rebase-move-line-up)
-    (define-key map [M-down]        'git-rebase-move-line-down)
-    (define-key map [remap undo]    'git-rebase-undo)
-    map)
-  "Keymap for Git-Rebase mode.")
-
-(cond ((featurep 'jkl)
-       (put 'git-rebase-reword       :advertised-binding "r")
-       (put 'git-rebase-move-line-up :advertised-binding (kbd "M-i"))
-       (put 'git-rebase-kill-line    :advertised-binding ","))
-      (t
-       (put 'git-rebase-reword       :advertised-binding "r")
-       (put 'git-rebase-move-line-up :advertised-binding (kbd "M-p"))
-       (put 'git-rebase-kill-line    :advertised-binding "k")))
-
-(easy-menu-define git-rebase-mode-menu git-rebase-mode-map
-  "Git-Rebase mode menu"
-  '("Rebase"
-    ["Pick" git-rebase-pick t]
-    ["Reword" git-rebase-reword t]
-    ["Edit" git-rebase-edit t]
-    ["Squash" git-rebase-squash t]
-    ["Fixup" git-rebase-fixup t]
-    ["Kill" git-rebase-kill-line t]
-    ["Noop" git-rebase-noop t]
-    ["Execute" git-rebase-exec t]
-    ["Move Down" git-rebase-move-line-down t]
-    ["Move Up" git-rebase-move-line-up t]
-    "---"
-    ["Cancel" with-editor-cancel t]
-    ["Finish" with-editor-finish t]))
-
-(defvar git-rebase-command-descriptions
-  '((with-editor-finish           . "tell Git to make it happen")
-    (with-editor-cancel           . "tell Git that you changed your mind, i.e. abort")
-    (git-rebase-backward-line     . "move point to previous line")
-    (forward-line                 . "move point to next line")
-    (git-rebase-move-line-up      . "move the commit at point up")
-    (git-rebase-move-line-down    . "move the commit at point down")
-    (git-rebase-show-or-scroll-up . "show the commit at point in another buffer")
-    (git-rebase-show-commit
-     . "show the commit at point in another buffer and select its window")
-    (undo                         . "undo last change")
-    (git-rebase-kill-line         . "drop the commit at point")
-    (git-rebase-insert            . "insert a line for an arbitrary commit")
-    (git-rebase-noop              . "add noop action at point")))
-
-;;; Commands
-
-(defun git-rebase-pick ()
-  "Use commit on current line."
-  (interactive)
-  (git-rebase-set-action "pick"))
-
-(defun git-rebase-reword ()
-  "Edit message of commit on current line."
-  (interactive)
-  (git-rebase-set-action "reword"))
-
-(defun git-rebase-edit ()
-  "Stop at the commit on the current line."
-  (interactive)
-  (git-rebase-set-action "edit"))
-
-(defun git-rebase-squash ()
-  "Meld commit on current line into previous commit, edit message."
-  (interactive)
-  (git-rebase-set-action "squash"))
-
-(defun git-rebase-fixup ()
-  "Meld commit on current line into previous commit, discard its message."
-  (interactive)
-  (git-rebase-set-action "fixup"))
-
-(defvar-local git-rebase-line nil)
-(defvar-local git-rebase-comment-re nil)
-
-(defun git-rebase-set-action (action)
-  (goto-char (line-beginning-position))
-  (if (and (looking-at git-rebase-line)
-           (not (string-match-p "\\(e\\|exec\\|noop\\)$" (match-string 1))))
-      (let ((inhibit-read-only t))
-        (replace-match action t t nil 1)
-        (when git-rebase-auto-advance
-          (forward-line)))
-    (ding)))
-
-(defun git-rebase-line-p (&optional pos)
-  (save-excursion
-    (when pos (goto-char pos))
-    (goto-char (line-beginning-position))
-    (looking-at-p git-rebase-line)))
-
-(defun git-rebase-region-bounds ()
-  (when (use-region-p)
-    (let ((beg (save-excursion (goto-char (region-beginning))
-                               (line-beginning-position)))
-          (end (save-excursion (goto-char (region-end))
-                               (line-end-position))))
-      (when (and (git-rebase-line-p beg)
-                 (git-rebase-line-p end))
-        (list beg (1+ end))))))
-
-(defun git-rebase-move-line-down (n)
-  "Move the current commit (or command) N lines down.
-If N is negative, move the commit up instead.  With an active
-region, move all the lines that the region touches, not just the
-current line."
-  (interactive "p")
-  (pcase-let* ((`(,beg ,end)
-                (or (git-rebase-region-bounds)
-                    (list (line-beginning-position)
-                          (1+ (line-end-position)))))
-               (pt-offset (- (point) beg))
-               (mark-offset (and mark-active (- (mark) beg))))
-    (save-restriction
-      (narrow-to-region
-       (point-min)
-       (1+ (save-excursion
-             (goto-char (point-min))
-             (while (re-search-forward git-rebase-line nil t))
-             (point))))
-      (if (or (and (< n 0) (= beg (point-min)))
-              (and (> n 0) (= end (point-max)))
-              (> end (point-max)))
-          (ding)
-        (goto-char (if (< n 0) beg end))
-        (forward-line n)
-        (atomic-change-group
-          (let ((inhibit-read-only t))
-            (insert (delete-and-extract-region beg end)))
-          (let ((new-beg (- (point) (- end beg))))
-            (when (use-region-p)
-              (setq deactivate-mark nil)
-              (set-mark (+ new-beg mark-offset)))
-            (goto-char (+ new-beg pt-offset))))))))
-
-(defun git-rebase-move-line-up (n)
-  "Move the current commit (or command) N lines up.
-If N is negative, move the commit down instead.  With an active
-region, move all the lines that the region touches, not just the
-current line."
-  (interactive "p")
-  (git-rebase-move-line-down (- n)))
-
-(defun git-rebase-highlight-region (start end window rol)
-  (let ((inhibit-read-only t)
-        (deactivate-mark nil)
-        (bounds (git-rebase-region-bounds)))
-    (mapc #'delete-overlay magit-section-highlight-overlays)
-    (when bounds
-      (magit-section-make-overlay (car bounds) (cadr bounds)
-                                  'magit-section-heading-selection))
-    (if (and bounds (not magit-keep-region-overlay))
-        (funcall (default-value 'redisplay-unhighlight-region-function) rol)
-      (funcall (default-value 'redisplay-highlight-region-function)
-               start end window rol))))
-
-(defun git-rebase-unhighlight-region (rol)
-  (mapc #'delete-overlay magit-section-highlight-overlays)
-  (funcall (default-value 'redisplay-unhighlight-region-function) rol))
-
-(defun git-rebase-kill-line ()
-  "Kill the current action line."
-  (interactive)
-  (goto-char (line-beginning-position))
-  (when (and (looking-at git-rebase-line)
-             (not (eq (char-after) (string-to-char comment-start))))
-    (let ((inhibit-read-only t))
-      (insert comment-start)
-      (insert " "))
-    (when git-rebase-auto-advance
-      (forward-line))))
-
-(defun git-rebase-insert (rev)
-  "Read an arbitrary commit and insert it below current line."
-  (interactive (list (magit-read-branch-or-commit "Insert revision")))
-  (forward-line)
-  (--if-let (magit-rev-format "%h %s" rev)
-      (let ((inhibit-read-only t))
-        (insert "pick " it ?\n))
-    (user-error "Unknown revision")))
-
-(defun git-rebase-exec (arg)
-  "Insert a shell command to be run after the proceeding commit.
-
-If there already is such a command on the current line, then edit
-that instead.  With a prefix argument insert a new command even
-when there already is one on the current line.  With empty input
-remove the command on the current line, if any."
-  (interactive "P")
-  (let ((inhibit-read-only t) initial command)
-    (unless arg
-      (goto-char (line-beginning-position))
-      (when (looking-at (concat git-rebase-comment-re "?"
-                                "\\(e\\|exec\\) \\(.*\\)"))
-        (setq initial (match-string-no-properties 2))))
-    (setq command (read-shell-command "Execute: " initial))
-    (pcase (list command initial)
-      (`("" nil) (ding))
-      (`(""  ,_)
-       (delete-region (match-beginning 0) (1+ (match-end 0))))
-      (`(,_ nil)
-       (forward-line)
-       (insert (concat "exec " command "\n"))
-       (unless git-rebase-auto-advance
-         (forward-line -1)))
-      (_
-       (replace-match (concat "exec " command) t t)
-       (if git-rebase-auto-advance
-           (forward-line)
-         (goto-char (line-beginning-position)))))))
-
-(defun git-rebase-noop (&optional arg)
-  "Add noop action at point.
-
-If the current line already contains a a noop action, leave it
-unchanged.  If there is a commented noop action present, remove
-the comment.  Otherwise add a new noop action.  With a prefix
-argument insert a new noop action regardless what is already
-present on the current line.
-
-A noop action can be used to make git perform a rebase even if
-no commits are selected.  Without the noop action present, git
-would see an empty file and therefore do nothing."
-  (interactive "P")
-  (goto-char (line-beginning-position))
-  ;; The extra space at the end is only there to make the action
-  ;; consistent with the others (action argument). This keeps
-  ;; the regexp `git-rebase-line' from getting complicated.
-  (let ((noop-string "noop \n"))
-    (when (or arg (not (looking-at noop-string)))
-      (let ((inhibit-read-only t))
-        (if (and (not arg)
-                 (looking-at (concat comment-start noop-string)))
-            (delete-char 1)
-          (insert noop-string))))))
-
-(defun git-rebase-undo (&optional arg)
-  "Undo some previous changes.
-Like `undo' but works in read-only buffers."
-  (interactive "P")
-  (let ((inhibit-read-only t))
-    (undo arg)))
-
-(defun git-rebase--show-commit (&optional scroll)
-  (let ((disable-magit-save-buffers t))
-    (save-excursion
-      (goto-char (line-beginning-position))
-      (--if-let (and (looking-at git-rebase-line)
-                     (match-string 2))
-          (pcase scroll
-            (`up   (magit-diff-show-or-scroll-up))
-            (`down (magit-diff-show-or-scroll-down))
-            (_     (apply #'magit-show-commit it (magit-diff-arguments))))
-        (ding)))))
-
-(defun git-rebase-show-commit ()
-  "Show the commit on the current line if any."
-  (interactive)
-  (git-rebase--show-commit))
-
-(defun git-rebase-show-or-scroll-up ()
-  "Update the commit buffer for commit on current line.
-
-Either show the commit at point in the appropriate buffer, or if
-that buffer is already being displayed in the current frame and
-contains information about that commit, then instead scroll the
-buffer up."
-  (interactive)
-  (git-rebase--show-commit 'up))
-
-(defun git-rebase-show-or-scroll-down ()
-  "Update the commit buffer for commit on current line.
-
-Either show the commit at point in the appropriate buffer, or if
-that buffer is already being displayed in the current frame and
-contains information about that commit, then instead scroll the
-buffer down."
-  (interactive)
-  (git-rebase--show-commit 'down))
-
-(defun git-rebase-backward-line (&optional n)
-  "Move N lines backward (forward if N is negative).
-Like `forward-line' but go into the opposite direction."
-  (interactive "p")
-  (forward-line (- (or n 1))))
-
-;;; Mode
-
-;;;###autoload
-(define-derived-mode git-rebase-mode special-mode "Git Rebase"
-  "Major mode for editing of a Git rebase file.
-
-Rebase files are generated when you run 'git rebase -i' or run
-`magit-interactive-rebase'.  They describe how Git should perform
-the rebase.  See the documentation for git-rebase (e.g., by
-running 'man git-rebase' at the command line) for details."
-  :group 'git-rebase
-  (setq comment-start (or (magit-get "core.commentChar") "#"))
-  (setq git-rebase-comment-re (concat "^" (regexp-quote comment-start)))
-  (setq git-rebase-line
-        (concat "^\\(" (regexp-quote comment-start) "? *"
-                "\\(?:[fprse]\\|pick\\|reword\\|edit\\|squash\\|fixup\\|exec\\|noop\\)\\) "
-                "\\(?:\\([^ \n]+\\) \\(.*\\)\\)?"))
-  (setq font-lock-defaults (list (git-rebase-mode-font-lock-keywords) t t))
-  (unless git-rebase-show-instructions
-    (let ((inhibit-read-only t))
-      (flush-lines git-rebase-comment-re)))
-  (unless with-editor-mode
-    ;; Maybe already enabled when using `shell-command' or an Emacs shell.
-    (with-editor-mode 1))
-  (when git-rebase-confirm-cancel
-    (add-hook 'with-editor-cancel-query-functions
-              'git-rebase-cancel-confirm nil t))
-  (setq-local redisplay-highlight-region-function 'git-rebase-highlight-region)
-  (setq-local redisplay-unhighlight-region-function 'git-rebase-unhighlight-region)
-  (add-hook 'with-editor-pre-cancel-hook  'git-rebase-autostash-save  nil t)
-  (add-hook 'with-editor-post-cancel-hook 'git-rebase-autostash-apply nil t)
-  (setq imenu-prev-index-position-function
-        #'magit-imenu--rebase-prev-index-position-function)
-  (setq imenu-extract-index-name-function
-        #'magit-imenu--rebase-extract-index-name-function)
-  (when (boundp 'save-place)
-    (setq save-place nil)))
-
-(defun git-rebase-cancel-confirm (force)
-  (or (not (buffer-modified-p))
-      force
-      (magit-confirm 'abort-rebase "Abort this rebase" nil 'noabort)))
-
-(defun git-rebase-autostash-save ()
-  (--when-let (magit-file-line (magit-git-dir "rebase-merge/autostash"))
-    (push (cons 'stash it) with-editor-cancel-alist)))
-
-(defun git-rebase-autostash-apply ()
-  (--when-let (cdr (assq 'stash with-editor-cancel-alist))
-    (magit-stash-apply it)))
-
-(defun git-rebase-match-comment-line (limit)
-  (re-search-forward (concat git-rebase-comment-re ".*") limit t))
-
-(defun git-rebase-mode-font-lock-keywords ()
-  "Font lock keywords for Git-Rebase mode."
-  (let ((action-re "\
-\\([efprs]\\|pick\\|reword\\|edit\\|squash\\|fixup\\) \\([^ \n]+\\) \\(.*\\)"))
-    `((,(concat "^" action-re)
-       (1 'font-lock-keyword-face)
-       (2 'git-rebase-hash)
-       (3 'git-rebase-description))
-      ("^\\(exec\\) \\(.*\\)"
-       (1 'font-lock-keyword-face)
-       (2 'git-rebase-description))
-      ("^\\(noop\\)"
-       (1 'font-lock-keyword-face))
-      (git-rebase-match-comment-line 0 'font-lock-comment-face)
-      (,(concat git-rebase-comment-re " *" action-re)
-       0 'git-rebase-killed-action t)
-      ("\\[[^[]*\\]"
-       0 'magit-keyword t)
-      (,(format "^%s Rebase \\([^ ]*\\) onto \\([^ ]*\\)" comment-start)
-       (1 'git-rebase-comment-hash t)
-       (2 'git-rebase-comment-hash t))
-      (,(format "^%s \\(Commands:\\)" comment-start)
-       (1 'git-rebase-comment-heading t)))))
-
-(defun git-rebase-mode-show-keybindings ()
-  "Modify the \"Commands:\" section of the comment Git generates
-at the bottom of the file so that in place of the one-letter
-abbreviation for the command, it shows the command's keybinding.
-By default, this is the same except for the \"pick\" command."
-  (let ((inhibit-read-only t))
-    (save-excursion
-      (goto-char (point-min))
-      (when (and git-rebase-show-instructions
-                 (re-search-forward
-                  (concat git-rebase-comment-re "\\s-+p, pick")
-                  nil t))
-        (goto-char (line-beginning-position))
-        (pcase-dolist (`(,cmd . ,desc) git-rebase-command-descriptions)
-          (insert (format "%s %-8s %s\n"
-                          comment-start
-                          (substitute-command-keys (format "\\[%s]" cmd))
-                          desc)))
-        (while (re-search-forward (concat git-rebase-comment-re
-                                          "\\(  ?\\)\\([^\n,],\\) "
-                                          "\\([^\n ]+\\) ")
-                                  nil t)
-          (let ((cmd (intern (concat "git-rebase-" (match-string 3)))))
-            (if (not (fboundp cmd))
-                (delete-region (line-beginning-position) (1+ (line-end-position)))
-              (replace-match " " t t nil 1)
-              (replace-match
-               (format "%-8s"
-                       (mapconcat #'key-description
-                                  (--remove (eq (elt it 0) 'menu-bar)
-                                            (reverse (where-is-internal cmd)))
-                                  ", "))
-               t t nil 2))))))))
-
-(add-hook 'git-rebase-mode-hook 'git-rebase-mode-show-keybindings t)
-
-(defun git-rebase-mode-disable-before-save-hook ()
-  (set (make-local-variable 'before-save-hook) nil))
-
-(add-hook 'git-rebase-mode-hook 'git-rebase-mode-disable-before-save-hook)
-
-;;;###autoload
-(defconst git-rebase-filename-regexp "/git-rebase-todo\\'")
-;;;###autoload
-(add-to-list 'auto-mode-alist
-             (cons git-rebase-filename-regexp 'git-rebase-mode))
-
-(add-to-list 'with-editor-server-window-alist
-             (cons git-rebase-filename-regexp 'switch-to-buffer))
-
-(eval-after-load 'recentf
-  '(add-to-list 'recentf-exclude git-rebase-filename-regexp))
-
-(add-to-list 'with-editor-file-name-history-exclude git-rebase-filename-regexp)
-
-;;; _
-(provide 'git-rebase)
-;;; git-rebase.el ends here
diff --git a/elpa/magit-20181116.1412/git-rebase.elc b/elpa/magit-20181116.1412/git-rebase.elc
deleted file mode 100644
index c890948..0000000
--- a/elpa/magit-20181116.1412/git-rebase.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-apply.el b/elpa/magit-20181116.1412/magit-apply.el
deleted file mode 100644
index b99057e..0000000
--- a/elpa/magit-20181116.1412/magit-apply.el
+++ /dev/null
@@ -1,695 +0,0 @@
-;;; magit-apply.el --- apply Git diffs  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements commands for applying Git diffs or parts
-;; of such a diff.  The supported "apply variants" are apply, stage,
-;; unstage, discard, and reverse - more than Git itself knows about,
-;; at least at the porcelain level.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit-core)
-(require 'magit-diff)
-(require 'magit-wip)
-
-;; For `magit-apply'
-(declare-function magit-am-popup "magit-sequence" (&optional arg))
-(declare-function magit-patch-apply-popup "magit-files" (&optional arg))
-;; For `magit-discard-files'
-(declare-function magit-checkout-stage "magit-merge" (file arg))
-(declare-function magit-checkout-read-stage "magit-merge" (file))
-(defvar auto-revert-verbose)
-;; For `magit-stage-untracked'
-(declare-function magit-submodule-add "magit-submodule"
-                  (url &optional path name args))
-(declare-function magit-submodule-read-name-for-path "magit-submodule"
-                  (path &optional prefer-short))
-(declare-function borg--maybe-absorb-gitdir "borg" (pkg))
-(declare-function borg--sort-submodule-sections "borg" (file))
-(defvar borg-user-emacs-directory)
-
-;;; Options
-
-(defcustom magit-delete-by-moving-to-trash t
-  "Whether Magit uses the system's trash can.
-
-You should absolutely not disable this and also remove `discard'
-from `magit-no-confirm'.  You shouldn't do that even if you have
-all of the Magit-Wip modes enabled, because those modes do not
-track any files that are not tracked in the proper branch."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-essentials
-  :type 'boolean)
-
-(defcustom magit-unstage-committed t
-  "Whether unstaging a committed change reverts it instead.
-
-A committed change cannot be unstaged, because staging and
-unstaging are actions that are concerned with the differences
-between the index and the working tree, not with committed
-changes.
-
-If this option is non-nil (the default), then typing \"u\"
-\(`magit-unstage') on a committed change, causes it to be
-reversed in the index but not the working tree.  For more
-information see command `magit-reverse-in-index'."
-  :package-version '(magit . "2.4.1")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-reverse-atomically nil
-  "Whether to reverse changes atomically.
-
-If some changes can be reversed while others cannot, then nothing
-is reversed if the value of this option is non-nil.  But when it
-is nil, then the changes that can be reversed are reversed and
-for the other changes diff files are created that contain the
-rejected reversals."
-  :package-version '(magit . "2.7.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-post-stage-hook nil
-  "Hook run after staging changes.
-This hook is run by `magit-refresh' if `this-command'
-is a member of `magit-post-stage-hook-commands'."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-commands
-  :type 'hook)
-
-(defvar magit-post-stage-hook-commands
-  '(magit-stage magit-stage-file magit-stage-modified))
-
-(defcustom magit-post-unstage-hook nil
-  "Hook run after unstaging changes.
-This hook is run by `magit-refresh' if `this-command'
-is a member of `magit-post-unstage-hook-commands'."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-commands
-  :type 'hook)
-
-(defvar magit-post-unstage-hook-commands
-  '(magit-unstage magit-unstage-file magit-unstage-all))
-
-;;; Commands
-;;;; Apply
-
-(defun magit-apply (&rest args)
-  "Apply the change at point to the working tree.
-With a prefix argument fallback to a 3-way merge.  Doing
-so causes the change to be applied to the index as well."
-  (interactive (and current-prefix-arg (list "--3way")))
-  (--when-let (magit-apply--get-selection)
-    (pcase (list (magit-diff-type) (magit-diff-scope))
-      (`(,(or `unstaged `staged) ,_)
-       (user-error "Change is already in the working tree"))
-      (`(untracked ,(or `file `files))
-       (magit-am-popup))
-      (`(,_ region) (magit-apply-region it args))
-      (`(,_   hunk) (magit-apply-hunk   it args))
-      (`(,_  hunks) (magit-apply-hunks  it args))
-      (`(rebase-sequence file) (magit-patch-apply-popup))
-      (`(,_   file) (magit-apply-diff   it args))
-      (`(,_  files) (magit-apply-diffs  it args)))))
-
-(defun magit-apply--section-content (section)
-  (buffer-substring-no-properties (if (magit-hunk-section-p section)
-                                      (oref section start)
-                                    (oref section content))
-                                  (oref section end)))
-
-(defun magit-apply-diffs (sections &rest args)
-  (setq sections (magit-apply--get-diffs sections))
-  (magit-apply-patch sections args
-                     (mapconcat
-                      (lambda (s)
-                        (concat (magit-diff-file-header s)
-                                (magit-apply--section-content s)))
-                      sections "")))
-
-(defun magit-apply-diff (section &rest args)
-  (setq section (car (magit-apply--get-diffs (list section))))
-  (magit-apply-patch section args
-                     (concat (magit-diff-file-header section)
-                             (magit-apply--section-content section))))
-
-(defun magit-apply-hunks (sections &rest args)
-  (let ((section (oref (car sections) parent)))
-    (when (string-match "^diff --cc" (oref section value))
-      (user-error "Cannot un-/stage resolution hunks.  Stage the whole file"))
-    (magit-apply-patch section args
-                       (concat (oref section header)
-                               (mapconcat 'magit-apply--section-content
-                                          sections "")))))
-
-(defun magit-apply-hunk (section &rest args)
-  (when (string-match "^diff --cc" (magit-section-parent-value section))
-    (user-error "Cannot un-/stage resolution hunks.  Stage the whole file"))
-  (magit-apply-patch (oref section parent) args
-                     (concat (magit-diff-file-header section)
-                             (magit-apply--section-content section))))
-
-(defun magit-apply-region (section &rest args)
-  (unless (magit-diff-context-p)
-    (user-error "Not enough context to apply region.  Increase the context"))
-  (when (string-match "^diff --cc" (magit-section-parent-value section))
-    (user-error "Cannot un-/stage resolution hunks.  Stage the whole file"))
-  (magit-apply-patch (oref section parent) args
-                     (concat (magit-diff-file-header section)
-                             (magit-diff-hunk-region-patch section args))))
-
-(defun magit-apply-patch (section:s args patch)
-  (let* ((files (if (atom section:s)
-                    (list (oref section:s value))
-                  (--map (oref it value) section:s)))
-         (command (symbol-name this-command))
-         (command (if (and command (string-match "^magit-\\([^-]+\\)" command))
-                      (match-string 1 command)
-                    "apply"))
-         (no-context (not (magit-diff-context-p)))
-         (ignore-context (magit-diff-ignore-any-space-p)))
-    (when (and magit-wip-before-change-mode (not inhibit-magit-refresh))
-      (magit-wip-commit-before-change files (concat " before " command)))
-    (with-temp-buffer
-      (insert patch)
-      (magit-run-git-with-input
-       "apply" args "-p0"
-       (and no-context "--unidiff-zero")
-       (and ignore-context "-C0")
-       "--ignore-space-change" "-"))
-    (unless inhibit-magit-refresh
-      (when magit-wip-after-apply-mode
-        (magit-wip-commit-after-apply files (concat " after " command)))
-      (magit-refresh))))
-
-(defun magit-apply--get-selection ()
-  (or (magit-region-sections '(hunk file module) t)
-      (let ((section (magit-current-section)))
-        (pcase (oref section type)
-          ((or `hunk `file `module) section)
-          ((or `staged `unstaged `untracked
-               `stashed-index `stashed-worktree `stashed-untracked)
-           (oref section children))
-          (_ (user-error "Cannot apply this, it's not a change"))))))
-
-(defun magit-apply--get-diffs (sections)
-  (magit-section-case
-    ([file diffstat]
-     (--map (or (magit-get-section
-                 (append `((file . ,(oref it value)))
-                         (magit-section-ident magit-root-section)))
-                (error "Cannot get required diff headers"))
-            sections))
-    (t sections)))
-
-(defun magit-apply--diff-ignores-whitespace-p ()
-  (and (cl-intersection (if (derived-mode-p 'magit-diff-mode)
-                            (nth 2 magit-refresh-args)
-                          magit-diff-section-arguments)
-                        '("--ignore-space-at-eol"
-                          "--ignore-space-change"
-                          "--ignore-all-space"
-                          "--ignore-blank-lines")
-                        :test #'equal)
-       t))
-
-;;;; Stage
-
-(defun magit-stage (&optional intent)
-  "Add the change at point to the staging area.
-With a prefix argument, INTENT, and an untracked file (or files)
-at point, stage the file but not its content."
-  (interactive "P")
-  (--if-let (and (derived-mode-p 'magit-mode) (magit-apply--get-selection))
-      (pcase (list (magit-diff-type)
-                   (magit-diff-scope)
-                   (magit-apply--diff-ignores-whitespace-p))
-        (`(untracked     ,_  ,_) (magit-stage-untracked intent))
-        (`(unstaged  region  ,_) (magit-apply-region it "--cached"))
-        (`(unstaged    hunk  ,_) (magit-apply-hunk   it "--cached"))
-        (`(unstaged   hunks  ,_) (magit-apply-hunks  it "--cached"))
-        (`(unstaged    file   t) (magit-apply-diff   it "--cached"))
-        (`(unstaged   files   t) (magit-apply-diffs  it "--cached"))
-        (`(unstaged    list   t) (magit-apply-diffs  it "--cached"))
-        (`(unstaged    file nil) (magit-stage-1 "-u" (list (oref it value))))
-        (`(unstaged   files nil) (magit-stage-1 "-u" (magit-region-values nil t)))
-        (`(unstaged    list nil) (magit-stage-modified))
-        (`(staged        ,_  ,_) (user-error "Already staged"))
-        (`(committed     ,_  ,_) (user-error "Cannot stage committed changes"))
-        (`(undefined     ,_  ,_) (user-error "Cannot stage this change")))
-    (call-interactively 'magit-stage-file)))
-
-;;;###autoload
-(defun magit-stage-file (file)
-  "Stage all changes to FILE.
-With a prefix argument or when there is no file at point ask for
-the file to be staged.  Otherwise stage the file at point without
-requiring confirmation."
-  (interactive
-   (let* ((atpoint (magit-section-value-if 'file))
-          (current (magit-file-relative-name))
-          (choices (nconc (magit-unstaged-files)
-                          (magit-untracked-files)))
-          (default (car (member (or atpoint current) choices))))
-     (list (if (or current-prefix-arg (not default))
-               (magit-completing-read "Stage file" choices
-                                      nil t nil nil default)
-             default))))
-  (magit-with-toplevel
-    (magit-stage-1 nil (list file))))
-
-;;;###autoload
-(defun magit-stage-modified (&optional all)
-  "Stage all changes to files modified in the worktree.
-Stage all new content of tracked files and remove tracked files
-that no longer exist in the working tree from the index also.
-With a prefix argument also stage previously untracked (but not
-ignored) files."
-  (interactive "P")
-  (when (magit-anything-staged-p)
-    (magit-confirm 'stage-all-changes))
-  (magit-with-toplevel
-    (magit-stage-1 (if all "--all" "-u"))))
-
-(defun magit-stage-1 (arg &optional files)
-  (magit-wip-commit-before-change files " before stage")
-  (magit-run-git "add" arg (if files (cons "--" files) "."))
-  (when magit-auto-revert-mode
-    (mapc #'magit-turn-on-auto-revert-mode-if-desired files))
-  (magit-wip-commit-after-apply files " after stage"))
-
-(defun magit-stage-untracked (&optional intent)
-  (let* ((section (magit-current-section))
-         (files (pcase (magit-diff-scope)
-                  (`file  (list (oref section value)))
-                  (`files (magit-region-values nil t))
-                  (`list  (magit-untracked-files))))
-         plain repos)
-    (dolist (file files)
-      (if (and (not (file-symlink-p file))
-               (magit-git-repo-p file t))
-          (push file repos)
-        (push file plain)))
-    (magit-wip-commit-before-change files " before stage")
-    (when plain
-      (magit-run-git "add" (and intent "--intent-to-add")
-                     "--" plain)
-      (when magit-auto-revert-mode
-        (mapc #'magit-turn-on-auto-revert-mode-if-desired plain)))
-    (dolist (repo repos)
-      (save-excursion
-        (goto-char (oref (magit-get-section
-                          `((file . ,repo) (untracked) (status)))
-                         start))
-        (let* ((topdir (magit-toplevel))
-               (package
-                (and (equal (bound-and-true-p borg-user-emacs-directory)
-                            topdir)
-                     (file-name-nondirectory (directory-file-name repo)))))
-          (magit-submodule-add
-           (let ((default-directory
-                   (file-name-as-directory (expand-file-name repo))))
-             (or (magit-get "remote" (magit-get-some-remote) "url")
-                 (concat (file-name-as-directory ".") repo)))
-           repo
-           (magit-submodule-read-name-for-path repo package))
-          (when package
-            (borg--sort-submodule-sections
-             (expand-file-name ".gitmodules" topdir))
-            (let ((default-directory borg-user-emacs-directory))
-              (borg--maybe-absorb-gitdir package))
-            (when (and (y-or-n-p
-                        (format "Also build and activate `%s' drone?" package))
-                       (fboundp 'borg-build)
-                       (fboundp 'borg-activate))
-              (borg-build package)
-              (borg-activate package))))))
-    (magit-wip-commit-after-apply files " after stage")))
-
-;;;; Unstage
-
-(defun magit-unstage ()
-  "Remove the change at point from the staging area."
-  (interactive)
-  (--when-let (magit-apply--get-selection)
-    (pcase (list (magit-diff-type)
-                 (magit-diff-scope)
-                 (magit-apply--diff-ignores-whitespace-p))
-      (`(untracked     ,_  ,_) (user-error "Cannot unstage untracked changes"))
-      (`(unstaged      ,_  ,_) (user-error "Already unstaged"))
-      (`(staged    region  ,_) (magit-apply-region it "--reverse" "--cached"))
-      (`(staged      hunk  ,_) (magit-apply-hunk   it "--reverse" "--cached"))
-      (`(staged     hunks  ,_) (magit-apply-hunks  it "--reverse" "--cached"))
-      (`(staged      file   t) (magit-apply-diff   it "--reverse" "--cached"))
-      (`(staged     files   t) (magit-apply-diffs  it "--reverse" "--cached"))
-      (`(staged      list   t) (magit-apply-diffs  it "--reverse" "--cached"))
-      (`(staged      file nil) (magit-unstage-1 (list (oref it value))))
-      (`(staged     files nil) (magit-unstage-1 (magit-region-values nil t)))
-      (`(staged      list nil) (magit-unstage-all))
-      (`(committed     ,_  ,_) (if magit-unstage-committed
-                                   (magit-reverse-in-index)
-                                 (user-error "Cannot unstage committed changes")))
-      (`(undefined     ,_  ,_) (user-error "Cannot unstage this change")))))
-
-;;;###autoload
-(defun magit-unstage-file (file)
-  "Unstage all changes to FILE.
-With a prefix argument or when there is no file at point ask for
-the file to be unstaged.  Otherwise unstage the file at point
-without requiring confirmation."
-  (interactive
-   (let* ((atpoint (magit-section-value-if 'file))
-          (current (magit-file-relative-name))
-          (choices (magit-staged-files))
-          (default (car (member (or atpoint current) choices))))
-     (list (if (or current-prefix-arg (not default))
-               (magit-completing-read "Unstage file" choices
-                                      nil t nil nil default)
-             default))))
-  (magit-with-toplevel
-    (magit-unstage-1 (list file))))
-
-(defun magit-unstage-1 (files)
-  (magit-wip-commit-before-change files " before unstage")
-  (if (magit-no-commit-p)
-      (magit-run-git "rm" "--cached" "--" files)
-    (magit-run-git "reset" "HEAD" "--" files))
-  (magit-wip-commit-after-apply files " after unstage"))
-
-;;;###autoload
-(defun magit-unstage-all ()
-  "Remove all changes from the staging area."
-  (interactive)
-  (when (or (magit-anything-unstaged-p)
-            (magit-untracked-files))
-    (magit-confirm 'unstage-all-changes))
-  (magit-wip-commit-before-change nil " before unstage")
-  (magit-run-git "reset" "HEAD" "--")
-  (magit-wip-commit-after-apply nil " after unstage"))
-
-;;;; Discard
-
-(defun magit-discard ()
-  "Remove the change at point."
-  (interactive)
-  (--when-let (magit-apply--get-selection)
-    (pcase (list (magit-diff-type) (magit-diff-scope))
-      (`(committed ,_) (user-error "Cannot discard committed changes"))
-      (`(undefined ,_) (user-error "Cannot discard this change"))
-      (`(,_    region) (magit-discard-region it))
-      (`(,_      hunk) (magit-discard-hunk   it))
-      (`(,_     hunks) (magit-discard-hunks  it))
-      (`(,_      file) (magit-discard-file   it))
-      (`(,_     files) (magit-discard-files  it))
-      (`(,_      list) (magit-discard-files  it)))))
-
-(defun magit-discard-region (section)
-  (magit-confirm 'discard "Discard region")
-  (magit-discard-apply section 'magit-apply-region))
-
-(defun magit-discard-hunk (section)
-  (magit-confirm 'discard "Discard hunk")
-  (magit-discard-apply section 'magit-apply-hunk))
-
-(defun magit-discard-apply (section apply)
-  (if (eq (magit-diff-type section) 'unstaged)
-      (funcall apply section "--reverse")
-    (if (magit-anything-unstaged-p
-         nil (if (magit-file-section-p section)
-                 (oref section value)
-               (magit-section-parent-value section)))
-        (progn (let ((inhibit-magit-refresh t))
-                 (funcall apply section "--reverse" "--cached")
-                 (funcall apply section "--reverse" "--reject"))
-               (magit-refresh))
-      (funcall apply section "--reverse" "--index"))))
-
-(defun magit-discard-hunks (sections)
-  (magit-confirm 'discard (format "Discard %s hunks from %s"
-                                  (length sections)
-                                  (magit-section-parent-value (car sections))))
-  (magit-discard-apply-n sections 'magit-apply-hunks))
-
-(defun magit-discard-apply-n (sections apply)
-  (let ((section (car sections)))
-    (if (eq (magit-diff-type section) 'unstaged)
-        (funcall apply sections "--reverse")
-      (if (magit-anything-unstaged-p
-           nil (if (magit-file-section-p section)
-                   (oref section value)
-                 (magit-section-parent-value section)))
-          (progn (let ((inhibit-magit-refresh t))
-                   (funcall apply sections "--reverse" "--cached")
-                   (funcall apply sections "--reverse" "--reject"))
-                 (magit-refresh))
-        (funcall apply sections "--reverse" "--index")))))
-
-(defun magit-discard-file (section)
-  (magit-discard-files (list section)))
-
-(defun magit-discard-files (sections)
-  (let ((auto-revert-verbose nil)
-        (type (magit-diff-type (car sections)))
-        (status (magit-file-status))
-        files delete resurrect rename discard discard-new resolve)
-    (dolist (section sections)
-      (let ((file (oref section value)))
-        (push file files)
-        (pcase (cons (pcase type
-                       (`staged ?X)
-                       (`unstaged ?Y)
-                       (`untracked ?Z))
-                     (cddr (assoc file status)))
-          (`(?Z) (dolist (f (magit-untracked-files nil file))
-                   (push f delete)))
-          ((or `(?Z ?? ??) `(?Z ?! ?!)) (push file delete))
-          ((or `(?Z ?D ? ) `(,_ ?D ?D)) (push file delete))
-          ((or `(,_ ?U ,_) `(,_ ,_ ?U)) (push file resolve))
-          (`(,_ ?A ?A)                  (push file resolve))
-          (`(?X ?M ,(or ?  ?M ?D)) (push section discard))
-          (`(?Y ,_         ?M    ) (push section discard))
-          (`(?X ?A         ?M    ) (push file discard-new))
-          (`(?X ?C         ?M    ) (push file discard-new))
-          (`(?X ?A ,(or ?     ?D)) (push file delete))
-          (`(?X ?C ,(or ?     ?D)) (push file delete))
-          (`(?X ?D ,(or ?  ?M   )) (push file resurrect))
-          (`(?Y ,_            ?D ) (push file resurrect))
-          (`(?X ?R ,(or ?  ?M ?D)) (push file rename)))))
-    (unwind-protect
-        (let ((inhibit-magit-refresh t))
-          (magit-wip-commit-before-change files " before discard")
-          (when resolve
-            (magit-discard-files--resolve (nreverse resolve)))
-          (when resurrect
-            (magit-discard-files--resurrect (nreverse resurrect)))
-          (when delete
-            (magit-discard-files--delete (nreverse delete) status))
-          (when rename
-            (magit-discard-files--rename (nreverse rename) status))
-          (when (or discard discard-new)
-            (magit-discard-files--discard (nreverse discard)
-                                          (nreverse discard-new)))
-          (magit-wip-commit-after-apply files " after discard"))
-      (magit-refresh))))
-
-(defun magit-discard-files--resolve (files)
-  (if-let ((arg (and (cdr files)
-                     (magit-read-char-case
-                         (format "For these %i files\n%s\ncheckout:\n"
-                                 (length files)
-                                 (mapconcat (lambda (file)
-                                              (concat "  " file))
-                                            files "\n"))
-                         t
-                       (?o "[o]ur stage"   "--ours")
-                       (?t "[t]heir stage" "--theirs")
-                       (?c "[c]onflict"    "--merge")
-                       (?i "decide [i]ndividually" nil)))))
-      (dolist (file files)
-        (magit-checkout-stage file arg))
-    (dolist (file files)
-      (magit-checkout-stage file (magit-checkout-read-stage file)))))
-
-(defun magit-discard-files--resurrect (files)
-  (magit-confirm-files 'resurrect files)
-  (if (eq (magit-diff-type) 'staged)
-      (magit-call-git "reset"  "--" files)
-    (magit-call-git "checkout" "--" files)))
-
-(defun magit-discard-files--delete (files status)
-  (magit-confirm-files (if magit-delete-by-moving-to-trash 'trash 'delete)
-                       files)
-  (let ((delete-by-moving-to-trash magit-delete-by-moving-to-trash))
-    (dolist (file files)
-      (if (memq (magit-diff-type) '(unstaged untracked))
-          (progn (dired-delete-file file dired-recursive-deletes
-                                    magit-delete-by-moving-to-trash)
-                 (dired-clean-up-after-deletion file))
-        (pcase (nth 3 (assoc file status))
-          (?  (delete-file file t)
-              (magit-call-git "rm" "--cached" "--" file))
-          (?M (let ((temp (magit-git-string "checkout-index" "--temp" file)))
-                (string-match
-                 (format "\\(.+?\\)\t%s" (regexp-quote file)) temp)
-                (rename-file (match-string 1 temp)
-                             (setq temp (concat file ".~{index}~")))
-                (delete-file temp t))
-              (magit-call-git "rm" "--cached" "--force" "--" file))
-          (?D (magit-call-git "checkout" "--" file)
-              (delete-file file t)
-              (magit-call-git "rm" "--cached" "--force" "--" file)))))))
-
-(defun magit-discard-files--rename (files status)
-  (magit-confirm 'rename "Undo rename %s" "Undo %i renames" nil
-    (mapcar (lambda (file)
-              (setq file (assoc file status))
-              (format "%s -> %s" (cadr file) (car file)))
-            files))
-  (dolist (file files)
-    (let ((orig (cadr (assoc file status))))
-      (if (file-exists-p file)
-          (progn
-            (--when-let (file-name-directory orig)
-              (make-directory it t))
-            (magit-call-git "mv" file orig))
-        (magit-call-git "rm" "--cached" "--" file)
-        (magit-call-git "reset" "--" orig)))))
-
-(defun magit-discard-files--discard (sections new-files)
-  (let ((files (--map (oref it value) sections)))
-    (magit-confirm-files 'discard (append files new-files)
-                         (format "Discard %s changes in" (magit-diff-type)))
-    (if (eq (magit-diff-type (car sections)) 'unstaged)
-        (magit-call-git "checkout" "--" files)
-      (when new-files
-        (magit-call-git "add"   "--" new-files)
-        (magit-call-git "reset" "--" new-files))
-      (let ((binaries (magit-binary-files "--cached")))
-        (when binaries
-          (setq sections
-                (--remove (member (oref it value) binaries)
-                          sections)))
-        (cond ((= (length sections) 1)
-               (magit-discard-apply (car sections) 'magit-apply-diff))
-              (sections
-               (magit-discard-apply-n sections 'magit-apply-diffs)))
-        (when binaries
-          (let ((modified (magit-unstaged-files t)))
-            (setq binaries (--separate (member it modified) binaries)))
-          (when (cadr binaries)
-            (magit-call-git "reset" "--" (cadr binaries)))
-          (when (car binaries)
-            (user-error
-             (concat
-              "Cannot discard staged changes to binary files, "
-              "which also have unstaged changes.  Unstage instead."))))))))
-
-;;;; Reverse
-
-(defun magit-reverse (&rest args)
-  "Reverse the change at point in the working tree.
-With a prefix argument fallback to a 3-way merge.  Doing
-so causes the change to be applied to the index as well."
-  (interactive (and current-prefix-arg (list "--3way")))
-  (--when-let (magit-apply--get-selection)
-    (pcase (list (magit-diff-type) (magit-diff-scope))
-      (`(untracked ,_) (user-error "Cannot reverse untracked changes"))
-      (`(unstaged  ,_) (user-error "Cannot reverse unstaged changes"))
-      (`(,_    region) (magit-reverse-region it args))
-      (`(,_      hunk) (magit-reverse-hunk   it args))
-      (`(,_     hunks) (magit-reverse-hunks  it args))
-      (`(,_      file) (magit-reverse-file   it args))
-      (`(,_     files) (magit-reverse-files  it args))
-      (`(,_      list) (magit-reverse-files  it args)))))
-
-(defun magit-reverse-region (section args)
-  (magit-confirm 'reverse "Reverse region")
-  (magit-reverse-apply section 'magit-apply-region args))
-
-(defun magit-reverse-hunk (section args)
-  (magit-confirm 'reverse "Reverse hunk")
-  (magit-reverse-apply section 'magit-apply-hunk args))
-
-(defun magit-reverse-hunks (sections args)
-  (magit-confirm 'reverse
-    (format "Reverse %s hunks from %s"
-            (length sections)
-            (magit-section-parent-value (car sections))))
-  (magit-reverse-apply sections 'magit-apply-hunks args))
-
-(defun magit-reverse-file (section args)
-  (magit-reverse-files (list section) args))
-
-(defun magit-reverse-files (sections args)
-  (pcase-let ((`(,binaries ,sections)
-               (let ((bs (magit-binary-files
-                          (cond ((derived-mode-p 'magit-revision-mode)
-                                 (let ((rev (car magit-refresh-args)))
-                                   (format "%s^..%s" rev rev)))
-                                ((derived-mode-p 'magit-diff-mode)
-                                 (car magit-refresh-args))
-                                (t
-                                 "--cached")))))
-                 (--separate (member (oref it value) bs)
-                             sections))))
-    (magit-confirm-files 'reverse (--map (oref it value) sections))
-    (cond ((= (length sections) 1)
-           (magit-reverse-apply (car sections) 'magit-apply-diff args))
-          (sections
-           (magit-reverse-apply sections 'magit-apply-diffs args)))
-    (when binaries
-      (user-error "Cannot reverse binary files"))))
-
-(defun magit-reverse-apply (section:s apply args)
-  (funcall apply section:s "--reverse" args
-           (and (not magit-reverse-atomically)
-                (not (member "--3way" args))
-                "--reject")))
-
-(defun magit-reverse-in-index (&rest args)
-  "Reverse the change at point in the index but not the working tree.
-
-Use this command to extract a change from `HEAD', while leaving
-it in the working tree, so that it can later be committed using
-a separate commit.  A typical workflow would be:
-
-0. Optionally make sure that there are no uncommitted changes.
-1. Visit the `HEAD' commit and navigate to the change that should
-   not have been included in that commit.
-2. Type \"u\" (`magit-unstage') to reverse it in the index.
-   This assumes that `magit-unstage-committed-changes' is non-nil.
-3. Type \"c e\" to extend `HEAD' with the staged changes,
-   including those that were already staged before.
-4. Optionally stage the remaining changes using \"s\" or \"S\"
-   and then type \"c c\" to create a new commit."
-  (interactive)
-  (magit-reverse (cons "--cached" args)))
-
-;;; _
-(provide 'magit-apply)
-;;; magit-apply.el ends here
diff --git a/elpa/magit-20181116.1412/magit-apply.elc b/elpa/magit-20181116.1412/magit-apply.elc
deleted file mode 100644
index 274af42..0000000
--- a/elpa/magit-20181116.1412/magit-apply.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-autoloads.el b/elpa/magit-20181116.1412/magit-autoloads.el
deleted file mode 100644
index baea348..0000000
--- a/elpa/magit-20181116.1412/magit-autoloads.el
+++ /dev/null
@@ -1,2695 +0,0 @@
-;;; magit-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "git-rebase" "git-rebase.el" (0 0 0 0))
-;;; Generated autoloads from git-rebase.el
-
-(autoload 'git-rebase-mode "git-rebase" "\
-Major mode for editing of a Git rebase file.
-
-Rebase files are generated when you run 'git rebase -i' or run
-`magit-interactive-rebase'.  They describe how Git should perform
-the rebase.  See the documentation for git-rebase (e.g., by
-running 'man git-rebase' at the command line) for details.
-
-\(fn)" t nil)
-
-(defconst git-rebase-filename-regexp "/git-rebase-todo\\'")
-
-(add-to-list 'auto-mode-alist (cons git-rebase-filename-regexp 'git-rebase-mode))
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "git-rebase" '("git-rebase-")))
-
-;;;***
-
-;;;### (autoloads nil "magit" "magit.el" (0 0 0 0))
-;;; Generated autoloads from magit.el
- (autoload 'magit-dispatch-popup "magit" nil t)
- (autoload 'magit-run-popup "magit" nil t)
-
-(autoload 'magit-git-command "magit" "\
-Execute COMMAND asynchronously; display output.
-
-Interactively, prompt for COMMAND in the minibuffer. \"git \" is
-used as initial input, but can be deleted to run another command.
-
-With a prefix argument COMMAND is run in the top-level directory
-of the current working tree, otherwise in `default-directory'.
-
-\(fn COMMAND)" t nil)
-
-(autoload 'magit-git-command-topdir "magit" "\
-Execute COMMAND asynchronously; display output.
-
-Interactively, prompt for COMMAND in the minibuffer. \"git \" is
-used as initial input, but can be deleted to run another command.
-
-COMMAND is run in the top-level directory of the current
-working tree.
-
-\(fn COMMAND)" t nil)
-
-(autoload 'magit-shell-command "magit" "\
-Execute COMMAND asynchronously; display output.
-
-Interactively, prompt for COMMAND in the minibuffer.  With a
-prefix argument COMMAND is run in the top-level directory of
-the current working tree, otherwise in `default-directory'.
-
-\(fn COMMAND)" t nil)
-
-(autoload 'magit-shell-command-topdir "magit" "\
-Execute COMMAND asynchronously; display output.
-
-Interactively, prompt for COMMAND in the minibuffer.  COMMAND
-is run in the top-level directory of the current working tree.
-
-\(fn COMMAND)" t nil)
-
-(autoload 'magit-version "magit" "\
-Return the version of Magit currently in use.
-If optional argument PRINT-DEST is non-nil, output
-stream (interactively, the echo area, or the current buffer with
-a prefix argument), also print the used versions of Magit, Git,
-and Emacs to it.
-
-\(fn &optional PRINT-DEST)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-apply" "magit-apply.el" (0 0 0 0))
-;;; Generated autoloads from magit-apply.el
-
-(autoload 'magit-stage-file "magit-apply" "\
-Stage all changes to FILE.
-With a prefix argument or when there is no file at point ask for
-the file to be staged.  Otherwise stage the file at point without
-requiring confirmation.
-
-\(fn FILE)" t nil)
-
-(autoload 'magit-stage-modified "magit-apply" "\
-Stage all changes to files modified in the worktree.
-Stage all new content of tracked files and remove tracked files
-that no longer exist in the working tree from the index also.
-With a prefix argument also stage previously untracked (but not
-ignored) files.
-
-\(fn &optional ALL)" t nil)
-
-(autoload 'magit-unstage-file "magit-apply" "\
-Unstage all changes to FILE.
-With a prefix argument or when there is no file at point ask for
-the file to be unstaged.  Otherwise unstage the file at point
-without requiring confirmation.
-
-\(fn FILE)" t nil)
-
-(autoload 'magit-unstage-all "magit-apply" "\
-Remove all changes from the staging area.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-apply" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-autorevert" "magit-autorevert.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from magit-autorevert.el
-
-(defvar magit-auto-revert-mode (and (not global-auto-revert-mode) (not noninteractive)) "\
-Non-nil if Magit-Auto-Revert mode is enabled.
-See the `magit-auto-revert-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `magit-auto-revert-mode'.")
-
-(custom-autoload 'magit-auto-revert-mode "magit-autorevert" nil)
-
-(autoload 'magit-auto-revert-mode "magit-autorevert" "\
-Toggle Auto-Revert mode in all buffers.
-With prefix ARG, enable Magit-Auto-Revert mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Auto-Revert mode is enabled in all buffers where
-`magit-turn-on-auto-revert-mode-if-desired' would do it.
-See `auto-revert-mode' for more information on Auto-Revert mode.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-autorevert" '("auto-revert-buffer" "magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-bisect" "magit-bisect.el" (0 0 0 0))
-;;; Generated autoloads from magit-bisect.el
- (autoload 'magit-bisect-popup "magit-bisect" nil t)
-
-(autoload 'magit-bisect-start "magit-bisect" "\
-Start a bisect session.
-
-Bisecting a bug means to find the commit that introduced it.
-This command starts such a bisect session by asking for a know
-good and a bad commit.  To move the session forward use the
-other actions from the bisect popup (\\<magit-status-mode-map>\\[magit-bisect-popup]).
-
-\(fn BAD GOOD)" t nil)
-
-(autoload 'magit-bisect-reset "magit-bisect" "\
-After bisecting, cleanup bisection state and return to original `HEAD'.
-
-\(fn)" t nil)
-
-(autoload 'magit-bisect-good "magit-bisect" "\
-While bisecting, mark the current commit as good.
-Use this after you have asserted that the commit does not contain
-the bug in question.
-
-\(fn)" t nil)
-
-(autoload 'magit-bisect-bad "magit-bisect" "\
-While bisecting, mark the current commit as bad.
-Use this after you have asserted that the commit does contain the
-bug in question.
-
-\(fn)" t nil)
-
-(autoload 'magit-bisect-skip "magit-bisect" "\
-While bisecting, skip the current commit.
-Use this if for some reason the current commit is not a good one
-to test.  This command lets Git choose a different one.
-
-\(fn)" t nil)
-
-(autoload 'magit-bisect-run "magit-bisect" "\
-Bisect automatically by running commands after each step.
-
-Unlike `git bisect run' this can be used before bisecting has
-begun.  In that case it behaves like `git bisect start; git
-bisect run'.
-
-\(fn CMDLINE &optional BAD GOOD)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-bisect" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-blame" "magit-blame.el" (0 0 0 0))
-;;; Generated autoloads from magit-blame.el
-
-(autoload 'magit-blame-echo "magit-blame" "\
-For each line show the revision in which it was added.
-Show the information about the chunk at point in the echo area
-when moving between chunks.  Unlike other blaming commands, do
-not turn on `read-only-mode'.
-
-\(fn)" t nil)
-
-(autoload 'magit-blame-addition "magit-blame" "\
-For each line show the revision in which it was added.
-
-\(fn)" t nil)
-
-(autoload 'magit-blame-removal "magit-blame" "\
-For each line show the revision in which it was removed.
-
-\(fn)" t nil)
-
-(autoload 'magit-blame-reverse "magit-blame" "\
-For each line show the last revision in which it still exists.
-
-\(fn)" t nil)
- (autoload 'magit-blame-popup "magit-blame" nil t)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-blame" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-bookmark" "magit-bookmark.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from magit-bookmark.el
-
-(autoload 'magit-bookmark--status-jump "magit-bookmark" "\
-Handle a Magit status BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--status-make-record "magit-bookmark" "\
-Create a Magit status bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--refs-jump "magit-bookmark" "\
-Handle a Magit refs BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--refs-make-record "magit-bookmark" "\
-Create a Magit refs bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--log-jump "magit-bookmark" "\
-Handle a Magit log BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--log-make-record "magit-bookmark" "\
-Create a Magit log bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--reflog-jump "magit-bookmark" "\
-Handle a Magit reflog BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--reflog-make-record "magit-bookmark" "\
-Create a Magit reflog bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--stashes-jump "magit-bookmark" "\
-Handle a Magit stash list BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--stashes-make-record "magit-bookmark" "\
-Create a Magit stash list bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--cherry-jump "magit-bookmark" "\
-Handle a Magit cherry BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--cherry-make-record "magit-bookmark" "\
-Create a Magit cherry bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--diff-jump "magit-bookmark" "\
-Handle a Magit diff BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--diff-make-record "magit-bookmark" "\
-Create a Magit diff bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--revision-jump "magit-bookmark" "\
-Handle a Magit revision BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--revision-make-record "magit-bookmark" "\
-Create a Magit revision bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--stash-jump "magit-bookmark" "\
-Handle a Magit stash BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--stash-make-record "magit-bookmark" "\
-Create a Magit stash bookmark.
-
-\(fn)" nil nil)
-
-(autoload 'magit-bookmark--submodules-jump "magit-bookmark" "\
-Handle a Magit submodule list BOOKMARK.
-
-\(fn BOOKMARK)" nil nil)
-
-(autoload 'magit-bookmark--submodules-make-record "magit-bookmark" "\
-Create a Magit submodule list bookmark.
-
-\(fn)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-bookmark" '("magit-bookmark--")))
-
-;;;***
-
-;;;### (autoloads nil "magit-branch" "magit-branch.el" (0 0 0 0))
-;;; Generated autoloads from magit-branch.el
- (autoload 'magit-branch-popup "magit" nil t)
-
-(autoload 'magit-checkout "magit-branch" "\
-Checkout REVISION, updating the index and the working tree.
-If REVISION is a local branch, then that becomes the current
-branch.  If it is something else, then `HEAD' becomes detached.
-Checkout fails if the working tree or the staging area contain
-changes.
-
-\(git checkout REVISION).
-
-\(fn REVISION)" t nil)
-
-(autoload 'magit-branch-create "magit-branch" "\
-Create BRANCH at branch or revision START-POINT.
-
-\(git branch [ARGS] BRANCH START-POINT).
-
-\(fn BRANCH START-POINT &optional ARGS)" t nil)
-
-(autoload 'magit-branch-and-checkout "magit-branch" "\
-Create and checkout BRANCH at branch or revision START-POINT.
-
-\(git checkout [ARGS] -b BRANCH START-POINT).
-
-\(fn BRANCH START-POINT &optional ARGS)" t nil)
-
-(autoload 'magit-branch-or-checkout "magit-branch" "\
-Hybrid between `magit-checkout' and `magit-branch-and-checkout'.
-
-Ask the user for an existing branch or revision.  If the user
-input actually can be resolved as a branch or revision, then
-check that out, just like `magit-checkout' would.
-
-Otherwise create and checkout a new branch using the input as
-its name.  Before doing so read the starting-point for the new
-branch.  This is similar to what `magit-branch-and-checkout'
-does.
-
-\(fn ARG &optional START-POINT)" t nil)
-
-(autoload 'magit-branch-checkout "magit-branch" "\
-Checkout an existing or new local branch.
-
-Read a branch name from the user offering all local branches and
-a subset of remote branches as candidates.  Omit remote branches
-for which a local branch by the same name exists from the list
-of candidates.  The user can also enter a completely new branch
-name.
-
-- If the user selects an existing local branch, then check that
-  out.
-
-- If the user selects a remote branch, then create and checkout
-  a new local branch with the same name.  Configure the selected
-  remote branch as push target.
-
-- If the user enters a new branch name, then create and check
-  that out, after also reading the starting-point from the user.
-
-In the latter two cases the upstream is also set.  Whether it is
-set to the chosen START-POINT or something else depends on the
-value of `magit-branch-adjust-remote-upstream-alist', just like
-when using `magit-branch-and-checkout'.
-
-\(fn BRANCH &optional START-POINT)" t nil)
-
-(autoload 'magit-branch-orphan "magit-branch" "\
-Create and checkout an orphan BRANCH with contents from revision START-POINT.
-
-\(git checkout --orphan [ARGS] BRANCH START-POINT).
-
-\(fn BRANCH START-POINT &optional ARGS)" t nil)
-
-(autoload 'magit-branch-pull-request "magit-branch" "\
-Create and configure a new branch from a pull-request.
-Please see the manual for more information.
-
-\(fn PR)" t nil)
-
-(autoload 'magit-branch-spinoff "magit-branch" "\
-Create new branch from the unpushed commits.
-
-Create and checkout a new branch starting at and tracking the
-current branch.  That branch in turn is reset to the last commit
-it shares with its upstream.  If the current branch has no
-upstream or no unpushed commits, then the new branch is created
-anyway and the previously current branch is not touched.
-
-This is useful to create a feature branch after work has already
-began on the old branch (likely but not necessarily \"master\").
-
-If the current branch is a member of the value of option
-`magit-branch-prefer-remote-upstream' (which see), then the
-current branch will be used as the starting point as usual, but
-the upstream of the starting-point may be used as the upstream
-of the new branch, instead of the starting-point itself.
-
-If optional FROM is non-nil, then the source branch is reset
-to `FROM~', instead of to the last commit it shares with its
-upstream.  Interactively, FROM is only ever non-nil, if the
-region selects some commits, and among those commits, FROM is
-the commit that is the fewest commits ahead of the source
-branch.
-
-The commit at the other end of the selection actually does not
-matter, all commits between FROM and `HEAD' are moved to the new
-branch.  If FROM is not reachable from `HEAD' or is reachable
-from the source branch's upstream, then an error is raised.
-
-\(fn BRANCH &optional FROM &rest ARGS)" t nil)
-
-(autoload 'magit-branch-reset "magit-branch" "\
-Reset a branch to the tip of another branch or any other commit.
-
-When the branch being reset is the current branch, then do a
-hard reset.  If there are any uncommitted changes, then the user
-has to confirm the reset because those changes would be lost.
-
-This is useful when you have started work on a feature branch but
-realize it's all crap and want to start over.
-
-When resetting to another branch and a prefix argument is used,
-then also set the target branch as the upstream of the branch
-that is being reset.
-
-\(fn BRANCH TO &optional ARGS SET-UPSTREAM)" t nil)
-
-(autoload 'magit-branch-delete "magit-branch" "\
-Delete one or multiple branches.
-If the region marks multiple branches, then offer to delete
-those, otherwise prompt for a single branch to be deleted,
-defaulting to the branch at point.
-
-\(fn BRANCHES &optional FORCE)" t nil)
-
-(autoload 'magit-branch-rename "magit-branch" "\
-Rename the branch named OLD to NEW.
-
-With a prefix argument FORCE, rename even if a branch named NEW
-already exists.
-
-If `branch.OLD.pushRemote' is set, then unset it.  Depending on
-the value of `magit-branch-rename-push-target' (which see) maybe
-set `branch.NEW.pushRemote' and maybe rename the push-target on
-the remote.
-
-\(fn OLD NEW &optional FORCE)" t nil)
-
-(autoload 'magit-branch-shelve "magit-branch" "\
-Shelve a BRANCH.
-Rename \"refs/heads/BRANCH\" to \"refs/shelved/BRANCH\",
-and also rename the respective reflog file.
-
-\(fn BRANCH)" t nil)
-
-(autoload 'magit-branch-unshelve "magit-branch" "\
-Unshelve a BRANCH
-Rename \"refs/shelved/BRANCH\" to \"refs/heads/BRANCH\",
-and also rename the respective reflog file.
-
-\(fn BRANCH)" t nil)
-
-(autoload 'magit-branch-config-popup "magit-branch" "\
-Popup console for setting branch variables.
-
-\(fn BRANCH)" t nil)
-
-(autoload 'magit-edit-branch*description "magit-branch" "\
-Edit the description of the current branch.
-With a prefix argument edit the description of another branch.
-
-The description for the branch named NAME is stored in the Git
-variable `branch.<name>.description'.
-
-\(fn BRANCH)" t nil)
-
-(autoload 'magit-set-branch*merge/remote "magit-branch" "\
-Set or unset the upstream of the current branch.
-With a prefix argument do so for another branch.
-
-When the branch in question already has an upstream then simply
-unsets it.  Invoke this command again to set another upstream.
-
-Together the Git variables `branch.<name>.remote' and
-`branch.<name>.merge' define the upstream branch of the local
-branch named NAME.  The value of `branch.<name>.remote' is the
-name of the upstream remote.  The value of `branch.<name>.merge'
-is the full reference of the upstream branch, on the remote.
-
-Non-interactively, when UPSTREAM is non-nil, then always set it
-as the new upstream, regardless of whether another upstream was
-already set.  When nil, then always unset.
-
-\(fn BRANCH UPSTREAM)" t nil)
-
-(autoload 'magit-cycle-branch*rebase "magit-branch" "\
-Cycle the value of `branch.<name>.rebase' for the current branch.
-With a prefix argument cycle the value for another branch.
-
-The Git variables `branch.<name>.rebase' controls whether pulling
-into the branch named NAME is done by rebasing that branch onto
-the fetched branch or by merging that branch.
-
-When `true' then pulling is done by rebasing.
-When `false' then pulling is done by merging.
-
-When that variable is undefined then the value of `pull.rebase'
-is used instead.  It defaults to `false'.
-
-\(fn BRANCH)" t nil)
-
-(autoload 'magit-cycle-branch*pushRemote "magit-branch" "\
-Cycle the value of `branch.<name>.pushRemote' for the current branch.
-With a prefix argument cycle the value for another branch.
-
-The Git variable `branch.<name>.pushRemote' specifies the remote
-that the branch named NAME is usually pushed to.  The value has
-to be the name of an existing remote.
-
-If that variable is undefined, then the value of the Git variable
-`remote.pushDefault' is used instead, provided that it is defined,
-which by default it is not.
-
-\(fn BRANCH)" t nil)
-
-(autoload 'magit-cycle-pull\.rebase "magit-branch" "\
-Cycle the repository-local value of `pull.rebase'.
-
-The Git variable `pull.rebase' specifies whether pulling is done
-by rebasing or by merging.  It can be overwritten using the Git
-variable `branch.<name>.rebase'.
-
-When `true' then pulling is done by rebasing.
-When `false' (the default) then pulling is done by merging.
-
-\(fn)" t nil)
-
-(autoload 'magit-cycle-remote\.pushDefault "magit-branch" "\
-Cycle the repository-local value of `remote.pushDefault'.
-
-The Git variable `remote.pushDefault' specifies the remote that
-local branches are usually pushed to.  It can be overwritten
-using the Git variable `branch.<name>.pushRemote'.
-
-\(fn)" t nil)
-
-(autoload 'magit-cycle-branch*autoSetupMerge "magit-branch" "\
-Cycle the repository-local value of `branch.autoSetupMerge'.
-
-The Git variable `branch.autoSetupMerge' under what circumstances
-creating a branch (named NAME) should result in the variables
-`branch.<name>.merge' and `branch.<name>.remote' being set
-according to the starting point used to create the branch.  If
-the starting point isn't a branch, then these variables are never
-set.
-
-When `always' then the variables are set regardless of whether
-the starting point is a local or a remote branch.
-
-When `true' (the default) then the variable are set when the
-starting point is a remote branch, but not when it is a local
-branch.
-
-When `false' then the variables are never set.
-
-\(fn)" t nil)
-
-(autoload 'magit-cycle-branch*autoSetupRebase "magit-branch" "\
-Cycle the repository-local value of `branch.autoSetupRebase'.
-
-The Git variable `branch.autoSetupRebase' specifies whether
-creating a branch (named NAME) should result in the variable
-`branch.<name>.rebase' being set to `true'.
-
-When `always' then the variable is set regardless of whether the
-starting point is a local or a remote branch.
-
-When `local' then the variable are set when the starting point
-is a local branch, but not when it is a remote branch.
-
-When `remote' then the variable are set when the starting point
-is a remote branch, but not when it is a local branch.
-
-When `never' (the default) then the variable is never set.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-branch" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-clone" "magit-clone.el" (0 0 0 0))
-;;; Generated autoloads from magit-clone.el
-
-(autoload 'magit-clone "magit-clone" "\
-Clone the REPOSITORY to DIRECTORY.
-Then show the status buffer for the new repository.
-
-\(fn REPOSITORY DIRECTORY)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-clone" '("magit-clone-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-collab" "magit-collab.el" (0 0 0 0))
-;;; Generated autoloads from magit-collab.el
-
-(autoload 'magit-browse-pull-request "magit-collab" "\
-Visit pull-request PR using `browse-url'.
-
-Currently this only supports Github, but that restriction will
-be lifted eventually to support other Git forges.
-
-\(fn PR)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-collab" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-commit" "magit-commit.el" (0 0 0 0))
-;;; Generated autoloads from magit-commit.el
-
-(autoload 'magit-commit-create "magit-commit" "\
-Create a new commit on `HEAD'.
-With a prefix argument, amend to the commit at `HEAD' instead.
-
-\(git commit [--amend] ARGS)
-
-\(fn &optional ARGS)" t nil)
-
-(autoload 'magit-commit-amend "magit-commit" "\
-Amend the last commit.
-
-\(git commit --amend ARGS)
-
-\(fn &optional ARGS)" t nil)
-
-(autoload 'magit-commit-extend "magit-commit" "\
-Amend the last commit, without editing the message.
-
-With a prefix argument keep the committer date, otherwise change
-it.  The option `magit-commit-extend-override-date' can be used
-to inverse the meaning of the prefix argument.  
-\(git commit
---amend --no-edit)
-
-\(fn &optional ARGS OVERRIDE-DATE)" t nil)
-
-(autoload 'magit-commit-reword "magit-commit" "\
-Reword the last commit, ignoring staged changes.
-
-With a prefix argument keep the committer date, otherwise change
-it.  The option `magit-commit-reword-override-date' can be used
-to inverse the meaning of the prefix argument.
-
-Non-interactively respect the optional OVERRIDE-DATE argument
-and ignore the option.
-
-\(git commit --amend --only)
-
-\(fn &optional ARGS OVERRIDE-DATE)" t nil)
-
-(autoload 'magit-commit-fixup "magit-commit" "\
-Create a fixup commit.
-
-With a prefix argument the target COMMIT has to be confirmed.
-Otherwise the commit at point may be used without confirmation
-depending on the value of option `magit-commit-squash-confirm'.
-
-\(fn &optional COMMIT ARGS)" t nil)
-
-(autoload 'magit-commit-squash "magit-commit" "\
-Create a squash commit, without editing the squash message.
-
-With a prefix argument the target COMMIT has to be confirmed.
-Otherwise the commit at point may be used without confirmation
-depending on the value of option `magit-commit-squash-confirm'.
-
-\(fn &optional COMMIT ARGS)" t nil)
-
-(autoload 'magit-commit-augment "magit-commit" "\
-Create a squash commit, editing the squash message.
-
-With a prefix argument the target COMMIT has to be confirmed.
-Otherwise the commit at point may be used without confirmation
-depending on the value of option `magit-commit-squash-confirm'.
-
-\(fn &optional COMMIT ARGS)" t nil)
-
-(autoload 'magit-commit-instant-fixup "magit-commit" "\
-Create a fixup commit targeting COMMIT and instantly rebase.
-
-\(fn &optional COMMIT ARGS)" t nil)
-
-(autoload 'magit-commit-instant-squash "magit-commit" "\
-Create a squash commit targeting COMMIT and instantly rebase.
-
-\(fn &optional COMMIT ARGS)" t nil)
-
-(autoload 'magit-commit-reshelve "magit-commit" "\
-Change the committer date and possibly the author date of `HEAD'.
-
-If you are the author of `HEAD', then both dates are changed,
-otherwise only the committer date.  The current time is used
-as the initial minibuffer input and the original author (if
-that is you) or committer date is available as the previous
-history element.
-
-\(fn DATE)" t nil)
- (autoload 'magit-commit-absorb-popup "magit-commit" nil t)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-commit" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-diff" "magit-diff.el" (0 0 0 0))
-;;; Generated autoloads from magit-diff.el
-
-(autoload 'magit-diff-popup "magit-diff" "\
-Popup console for diff commands.
-
-\(fn ARG)" t nil)
-
-(autoload 'magit-diff-buffer-file-popup "magit-diff" "\
-Popup console for diff commands.
-
-This is a variant of `magit-diff-popup' which shows the same popup
-but which limits the diff to the file being visited in the current
-buffer.
-
-\(fn)" t nil)
-
-(autoload 'magit-diff-dwim "magit-diff" "\
-Show changes for the thing at point.
-
-\(fn &optional ARGS FILES)" t nil)
-
-(autoload 'magit-diff-range "magit-diff" "\
-Show differences between two commits.
-
-REV-OR-RANGE should be a range or a single revision.  If it is a
-revision, then show changes in the working tree relative to that
-revision.  If it is a range, but one side is omitted, then show
-changes relative to `HEAD'.
-
-If the region is active, use the revisions on the first and last
-line of the region as the two sides of the range.  With a prefix
-argument, instead of diffing the revisions, choose a revision to
-view changes along, starting at the common ancestor of both
-revisions (i.e., use a \"...\" range).
-
-\(fn REV-OR-RANGE &optional ARGS FILES)" t nil)
-
-(autoload 'magit-diff-working-tree "magit-diff" "\
-Show changes between the current working tree and the `HEAD' commit.
-With a prefix argument show changes between the working tree and
-a commit read from the minibuffer.
-
-\(fn &optional REV ARGS FILES)" t nil)
-
-(autoload 'magit-diff-staged "magit-diff" "\
-Show changes between the index and the `HEAD' commit.
-With a prefix argument show changes between the index and
-a commit read from the minibuffer.
-
-\(fn &optional REV ARGS FILES)" t nil)
-
-(autoload 'magit-diff-unstaged "magit-diff" "\
-Show changes between the working tree and the index.
-
-\(fn &optional ARGS FILES)" t nil)
-
-(autoload 'magit-diff-unmerged "magit-diff" "\
-Show changes that are being merged.
-
-\(fn &optional ARGS FILES)" t nil)
-
-(autoload 'magit-diff-while-committing "magit-diff" "\
-While committing, show the changes that are about to be committed.
-While amending, invoking the command again toggles between
-showing just the new changes or all the changes that will
-be committed.
-
-\(fn &optional ARGS)" t nil)
-
-(autoload 'magit-diff-buffer-file "magit-diff" "\
-Show diff for the blob or file visited in the current buffer.
-
-\(fn)" t nil)
-
-(autoload 'magit-diff-paths "magit-diff" "\
-Show changes between any two files on disk.
-
-\(fn A B)" t nil)
-
-(autoload 'magit-show-commit "magit-diff" "\
-Visit the revision at point in another buffer.
-If there is no revision at point or with a prefix argument prompt
-for a revision.
-
-\(fn REV &optional ARGS FILES MODULE)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-diff" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-ediff" "magit-ediff.el" (0 0 0 0))
-;;; Generated autoloads from magit-ediff.el
- (autoload 'magit-ediff-popup "magit-ediff" nil t)
-
-(autoload 'magit-ediff-resolve "magit-ediff" "\
-Resolve outstanding conflicts in FILE using Ediff.
-FILE has to be relative to the top directory of the repository.
-
-In the rare event that you want to manually resolve all
-conflicts, including those already resolved by Git, use
-`ediff-merge-revisions-with-ancestor'.
-
-\(fn FILE)" t nil)
-
-(autoload 'magit-ediff-stage "magit-ediff" "\
-Stage and unstage changes to FILE using Ediff.
-FILE has to be relative to the top directory of the repository.
-
-\(fn FILE)" t nil)
-
-(autoload 'magit-ediff-compare "magit-ediff" "\
-Compare REVA:FILEA with REVB:FILEB using Ediff.
-
-FILEA and FILEB have to be relative to the top directory of the
-repository.  If REVA or REVB is nil, then this stands for the
-working tree state.
-
-If the region is active, use the revisions on the first and last
-line of the region.  With a prefix argument, instead of diffing
-the revisions, choose a revision to view changes along, starting
-at the common ancestor of both revisions (i.e., use a \"...\"
-range).
-
-\(fn REVA REVB FILEA FILEB)" t nil)
-
-(autoload 'magit-ediff-dwim "magit-ediff" "\
-Compare, stage, or resolve using Ediff.
-This command tries to guess what file, and what commit or range
-the user wants to compare, stage, or resolve using Ediff.  It
-might only be able to guess either the file, or range or commit,
-in which case the user is asked about the other.  It might not
-always guess right, in which case the appropriate `magit-ediff-*'
-command has to be used explicitly.  If it cannot read the user's
-mind at all, then it asks the user for a command to run.
-
-\(fn)" t nil)
-
-(autoload 'magit-ediff-show-staged "magit-ediff" "\
-Show staged changes using Ediff.
-
-This only allows looking at the changes; to stage, unstage,
-and discard changes using Ediff, use `magit-ediff-stage'.
-
-FILE must be relative to the top directory of the repository.
-
-\(fn FILE)" t nil)
-
-(autoload 'magit-ediff-show-unstaged "magit-ediff" "\
-Show unstaged changes using Ediff.
-
-This only allows looking at the changes; to stage, unstage,
-and discard changes using Ediff, use `magit-ediff-stage'.
-
-FILE must be relative to the top directory of the repository.
-
-\(fn FILE)" t nil)
-
-(autoload 'magit-ediff-show-working-tree "magit-ediff" "\
-Show changes between `HEAD' and working tree using Ediff.
-FILE must be relative to the top directory of the repository.
-
-\(fn FILE)" t nil)
-
-(autoload 'magit-ediff-show-commit "magit-ediff" "\
-Show changes introduced by COMMIT using Ediff.
-
-\(fn COMMIT)" t nil)
-
-(autoload 'magit-ediff-show-stash "magit-ediff" "\
-Show changes introduced by STASH using Ediff.
-`magit-ediff-show-stash-with-index' controls whether a
-three-buffer Ediff is used in order to distinguish changes in the
-stash that were staged.
-
-\(fn STASH)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-ediff" '("magit-ediff-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-extras" "magit-extras.el" (0 0 0 0))
-;;; Generated autoloads from magit-extras.el
-
-(autoload 'magit-run-git-gui "magit-extras" "\
-Run `git gui' for the current git repository.
-
-\(fn)" t nil)
-
-(autoload 'magit-run-git-gui-blame "magit-extras" "\
-Run `git gui blame' on the given FILENAME and COMMIT.
-Interactively run it for the current file and the `HEAD', with a
-prefix or when the current file cannot be determined let the user
-choose.  When the current buffer is visiting FILENAME instruct
-blame to center around the line point is on.
-
-\(fn COMMIT FILENAME &optional LINENUM)" t nil)
-
-(autoload 'magit-run-gitk "magit-extras" "\
-Run `gitk' in the current repository.
-
-\(fn)" t nil)
-
-(autoload 'magit-run-gitk-branches "magit-extras" "\
-Run `gitk --branches' in the current repository.
-
-\(fn)" t nil)
-
-(autoload 'magit-run-gitk-all "magit-extras" "\
-Run `gitk --all' in the current repository.
-
-\(fn)" t nil)
-
-(autoload 'ido-enter-magit-status "magit-extras" "\
-Drop into `magit-status' from file switching.
-
-This command does not work in Emacs 26.  It does work in Emacs 25
-and Emacs 27.  See https://github.com/magit/magit/issues/3634 and
-https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31707.
-
-To make this command available use something like:
-
-  (add-hook \\='ido-setup-hook
-            (lambda ()
-              (define-key ido-completion-map
-                (kbd \"C-x g\") \\='ido-enter-magit-status)))
-
-Starting with Emacs 25.1 the Ido keymaps are defined just once
-instead of every time Ido is invoked, so now you can modify it
-like pretty much every other keymap:
-
-  (define-key ido-common-completion-map
-    (kbd \"C-x g\") \\='ido-enter-magit-status)
-
-\(fn)" t nil)
-
-(autoload 'magit-dired-jump "magit-extras" "\
-Visit file at point using Dired.
-With a prefix argument, visit in another window.  If there
-is no file at point, then instead visit `default-directory'.
-
-\(fn &optional OTHER-WINDOW)" t nil)
-
-(autoload 'magit-dired-log "magit-extras" "\
-Show log for all marked files, or the current file.
-
-\(fn &optional FOLLOW)" t nil)
-
-(autoload 'magit-do-async-shell-command "magit-extras" "\
-Open FILE with `dired-do-async-shell-command'.
-Interactively, open the file at point.
-
-\(fn FILE)" t nil)
-
-(autoload 'magit-previous-line "magit-extras" "\
-Like `previous-line' but with Magit-specific shift-selection.
-
-Magit's selection mechanism is based on the region but selects an
-area that is larger than the region.  This causes `previous-line'
-when invoked while holding the shift key to move up one line and
-thereby select two lines.  When invoked inside a hunk body this
-command does not move point on the first invocation and thereby
-it only selects a single line.  Which inconsistency you prefer
-is a matter of preference.
-
-\(fn &optional ARG TRY-VSCROLL)" t nil)
-
-(function-put 'magit-previous-line 'interactive-only '"use `forward-line' with negative argument instead.")
-
-(autoload 'magit-next-line "magit-extras" "\
-Like `next-line' but with Magit-specific shift-selection.
-
-Magit's selection mechanism is based on the region but selects
-an area that is larger than the region.  This causes `next-line'
-when invoked while holding the shift key to move down one line
-and thereby select two lines.  When invoked inside a hunk body
-this command does not move point on the first invocation and
-thereby it only selects a single line.  Which inconsistency you
-prefer is a matter of preference.
-
-\(fn &optional ARG TRY-VSCROLL)" t nil)
-
-(function-put 'magit-next-line 'interactive-only 'forward-line)
-
-(autoload 'magit-clean "magit-extras" "\
-Remove untracked files from the working tree.
-With a prefix argument also remove ignored files,
-with two prefix arguments remove ignored files only.
-
-\(git clean -f -d [-x|-X])
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'magit-add-change-log-entry "magit-extras" "\
-Find change log file and add date entry and item for current change.
-This differs from `add-change-log-entry' (which see) in that
-it acts on the current hunk in a Magit buffer instead of on
-a position in a file-visiting buffer.
-
-\(fn &optional WHOAMI FILE-NAME OTHER-WINDOW)" t nil)
-
-(autoload 'magit-add-change-log-entry-other-window "magit-extras" "\
-Find change log file in other window and add entry and item.
-This differs from `add-change-log-entry-other-window' (which see)
-in that it acts on the current hunk in a Magit buffer instead of
-on a position in a file-visiting buffer.
-
-\(fn &optional WHOAMI FILE-NAME)" t nil)
-
-(autoload 'magit-edit-line-commit "magit-extras" "\
-Edit the commit that added the current line.
-
-With a prefix argument edit the commit that removes the line,
-if any.  The commit is determined using `git blame' and made
-editable using `git rebase --interactive' if it is reachable
-from `HEAD', or by checking out the commit (or a branch that
-points at it) otherwise.
-
-\(fn &optional TYPE)" t nil)
-
-(autoload 'magit-reshelve-since "magit-extras" "\
-Change the author and committer dates of the commits since REV.
-
-Ask the user for the first reachable commit whose dates should
-be changed.  The read the new date for that commit.  The initial
-minibuffer input and the previous history element offer good
-values.  The next commit will be created one minute later and so
-on.
-
-This command is only intended for interactive use and should only
-be used on highly rearranged and unpublished history.
-
-\(fn REV)" t nil)
-
-(autoload 'magit-pop-revision-stack "magit-extras" "\
-Insert a representation of a revision into the current buffer.
-
-Pop a revision from the `magit-revision-stack' and insert it into
-the current buffer according to `magit-pop-revision-stack-format'.
-Revisions can be put on the stack using `magit-copy-section-value'
-and `magit-copy-buffer-revision'.
-
-If the stack is empty or with a prefix argument, instead read a
-revision in the minibuffer.  By using the minibuffer history this
-allows selecting an item which was popped earlier or to insert an
-arbitrary reference or revision without first pushing it onto the
-stack.
-
-When reading the revision from the minibuffer, then it might not
-be possible to guess the correct repository.  When this command
-is called inside a repository (e.g. while composing a commit
-message), then that repository is used.  Otherwise (e.g. while
-composing an email) then the repository recorded for the top
-element of the stack is used (even though we insert another
-revision).  If not called inside a repository and with an empty
-stack, or with two prefix arguments, then read the repository in
-the minibuffer too.
-
-\(fn REV TOPLEVEL)" t nil)
-
-(autoload 'magit-copy-section-value "magit-extras" "\
-Save the value of the current section for later use.
-
-Save the section value to the `kill-ring', and, provided that
-the current section is a commit, branch, or tag section, push
-the (referenced) revision to the `magit-revision-stack' for use
-with `magit-pop-revision-stack'.
-
-When the current section is a branch or a tag, and a prefix
-argument is used, then save the revision at its tip to the
-`kill-ring' instead of the reference name.
-
-When the region is active, then save that to the `kill-ring',
-like `kill-ring-save' would, instead of behaving as described
-above.
-
-\(fn)" t nil)
-
-(autoload 'magit-copy-buffer-revision "magit-extras" "\
-Save the revision of the current buffer for later use.
-
-Save the revision shown in the current buffer to the `kill-ring'
-and push it to the `magit-revision-stack'.
-
-This command is mainly intended for use in `magit-revision-mode'
-buffers, the only buffers where it is always unambiguous exactly
-which revision should be saved.
-
-Most other Magit buffers usually show more than one revision, in
-some way or another, so this command has to select one of them,
-and that choice might not always be the one you think would have
-been the best pick.
-
-In such buffers it is often more useful to save the value of
-the current section instead, using `magit-copy-section-value'.
-
-When the region is active, then save that to the `kill-ring',
-like `kill-ring-save' would, instead of behaving as described
-above.
-
-\(fn)" t nil)
-
-(autoload 'magit-abort-dwim "magit-extras" "\
-Abort current operation.
-Depending on the context, this will abort a merge, a rebase, a
-patch application, a cherry-pick, a revert, or a bisect.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-extras" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-fetch" "magit-fetch.el" (0 0 0 0))
-;;; Generated autoloads from magit-fetch.el
- (autoload 'magit-fetch-popup "magit-fetch" nil t)
-
-(autoload 'magit-fetch-from-pushremote "magit-fetch" "\
-Fetch from the push-remote of the current branch.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-fetch-from-upstream "magit-fetch" "\
-Fetch from the upstream repository of the current branch.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-fetch-other "magit-fetch" "\
-Fetch from another repository.
-
-\(fn REMOTE ARGS)" t nil)
-
-(autoload 'magit-fetch-branch "magit-fetch" "\
-Fetch a BRANCH from a REMOTE.
-
-\(fn REMOTE BRANCH ARGS)" t nil)
-
-(autoload 'magit-fetch-refspec "magit-fetch" "\
-Fetch a REFSPEC from a REMOTE.
-
-\(fn REMOTE REFSPEC ARGS)" t nil)
-
-(autoload 'magit-fetch-all "magit-fetch" "\
-Fetch from all remotes.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-fetch-all-prune "magit-fetch" "\
-Fetch from all remotes, and prune.
-Prune remote tracking branches for branches that have been
-removed on the respective remote.
-
-\(fn)" t nil)
-
-(autoload 'magit-fetch-all-no-prune "magit-fetch" "\
-Fetch from all remotes.
-
-\(fn)" t nil)
-
-(autoload 'magit-fetch-modules "magit-fetch" "\
-Fetch all submodules.
-
-Option `magit-fetch-modules-jobs' controls how many submodules
-are being fetched in parallel.  Also fetch the super-repository,
-because `git-fetch' does not support not doing that.  With a
-prefix argument fetch all remotes.
-
-\(fn &optional ALL)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-fetch" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-files" "magit-files.el" (0 0 0 0))
-;;; Generated autoloads from magit-files.el
-
-(autoload 'magit-find-file "magit-files" "\
-View FILE from REV.
-Switch to a buffer visiting blob REV:FILE,
-creating one if none already exists.
-
-\(fn REV FILE)" t nil)
-
-(autoload 'magit-find-file-other-window "magit-files" "\
-View FILE from REV, in another window.
-Like `magit-find-file', but create a new window or reuse an
-existing one.
-
-\(fn REV FILE)" t nil)
- (autoload 'magit-file-popup "magit" nil t)
-
-(defvar global-magit-file-mode t "\
-Non-nil if Global Magit-File mode is enabled.
-See the `global-magit-file-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `global-magit-file-mode'.")
-
-(custom-autoload 'global-magit-file-mode "magit-files" nil)
-
-(autoload 'global-magit-file-mode "magit-files" "\
-Toggle Magit-File mode in all buffers.
-With prefix ARG, enable Global Magit-File mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Magit-File mode is enabled in all buffers where
-`magit-file-mode-turn-on' would do it.
-See `magit-file-mode' for more information on Magit-File mode.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'magit-file-checkout "magit-files" "\
-Checkout FILE from REV.
-
-\(fn REV FILE)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-files" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-git" "magit-git.el" (0 0 0 0))
-;;; Generated autoloads from magit-git.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-git" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-gitignore" "magit-gitignore.el" (0 0
-;;;;;;  0 0))
-;;; Generated autoloads from magit-gitignore.el
- (autoload 'magit-gitignore-popup "magit-gitignore" nil t)
-
-(autoload 'magit-gitignore-globally "magit-gitignore" "\
-Instruct Git to globally ignore FILE-OR-PATTERN.
-
-\(fn FILE-OR-PATTERN)" t nil)
-
-(autoload 'magit-gitignore-locally "magit-gitignore" "\
-Instruct Git to locally ignore FILE-OR-PATTERN.
-
-\(fn FILE-OR-PATTERN)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-gitignore" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-imenu" "magit-imenu.el" (0 0 0 0))
-;;; Generated autoloads from magit-imenu.el
-
-(autoload 'magit-imenu--log-prev-index-position-function "magit-imenu" "\
-Move point to previous line in current buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--log-extract-index-name-function "magit-imenu" "\
-Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--diff-prev-index-position-function "magit-imenu" "\
-Move point to previous file line in current buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--diff-extract-index-name-function "magit-imenu" "\
-Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--status-create-index-function "magit-imenu" "\
-Return an alist of all imenu entries in current buffer.
-This function is used as a value for
-`imenu-create-index-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--refs-create-index-function "magit-imenu" "\
-Return an alist of all imenu entries in current buffer.
-This function is used as a value for
-`imenu-create-index-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--cherry-create-index-function "magit-imenu" "\
-Return an alist of all imenu entries in current buffer.
-This function is used as a value for
-`imenu-create-index-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--submodule-prev-index-position-function "magit-imenu" "\
-Move point to previous line in magit-submodule-list buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--submodule-extract-index-name-function "magit-imenu" "\
-Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--repolist-prev-index-position-function "magit-imenu" "\
-Move point to previous line in magit-repolist buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--repolist-extract-index-name-function "magit-imenu" "\
-Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--process-prev-index-position-function "magit-imenu" "\
-Move point to previous process in magit-process buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--process-extract-index-name-function "magit-imenu" "\
-Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--rebase-prev-index-position-function "magit-imenu" "\
-Move point to previous commit in git-rebase buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'.
-
-\(fn)" nil nil)
-
-(autoload 'magit-imenu--rebase-extract-index-name-function "magit-imenu" "\
-Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line.
-
-\(fn)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-imenu" '("magit-imenu--index-function")))
-
-;;;***
-
-;;;### (autoloads nil "magit-log" "magit-log.el" (0 0 0 0))
-;;; Generated autoloads from magit-log.el
-
-(autoload 'magit-log-buffer-file-popup "magit-log" "\
-Popup console for log commands.
-
-This is a variant of `magit-log-popup' which shows the same popup
-but which limits the log to the file being visited in the current
-buffer.
-
-\(fn)" t nil)
-
-(autoload 'magit-log-current "magit-log" "\
-Show log for the current branch.
-When `HEAD' is detached or with a prefix argument show log for
-one or more revs read from the minibuffer.
-
-\(fn REVS &optional ARGS FILES)" t nil)
-
-(autoload 'magit-log-other "magit-log" "\
-Show log for one or more revs read from the minibuffer.
-The user can input any revision or revisions separated by a
-space, or even ranges, but only branches and tags, and a
-representation of the commit at point, are available as
-completion candidates.
-
-\(fn REVS &optional ARGS FILES)" t nil)
-
-(autoload 'magit-log-head "magit-log" "\
-Show log for `HEAD'.
-
-\(fn &optional ARGS FILES)" t nil)
-
-(autoload 'magit-log-branches "magit-log" "\
-Show log for all local branches and `HEAD'.
-
-\(fn &optional ARGS FILES)" t nil)
-
-(autoload 'magit-log-all-branches "magit-log" "\
-Show log for all local and remote branches and `HEAD'.
-
-\(fn &optional ARGS FILES)" t nil)
-
-(autoload 'magit-log-all "magit-log" "\
-Show log for all references and `HEAD'.
-
-\(fn &optional ARGS FILES)" t nil)
-
-(autoload 'magit-log-buffer-file "magit-log" "\
-Show log for the blob or file visited in the current buffer.
-With a prefix argument or when `--follow' is part of
-`magit-log-arguments', then follow renames.  When the region is
-active, restrict the log to the lines that the region touches.
-
-\(fn &optional FOLLOW BEG END)" t nil)
-
-(autoload 'magit-log-trace-definition "magit-log" "\
-Show log for the definition at point.
-
-\(fn FILE FN REV)" t nil)
-
-(autoload 'magit-log-merged "magit-log" "\
-Show log for the merge of COMMIT into BRANCH.
-More precisely, find merge commit M that brought COMMIT into
-BRANCH, and show the log of the range \"M^..M\".  This command
-requires git-when-merged, which is available from
-https://github.com/mhagger/git-when-merged.
-
-\(fn COMMIT BRANCH &optional ARGS FILES)" t nil)
-
-(autoload 'magit-reflog-current "magit-log" "\
-Display the reflog of the current branch.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-reflog-other "magit-log" "\
-Display the reflog of a branch or another ref.
-
-\(fn REF ARGS)" t nil)
-
-(autoload 'magit-reflog-head "magit-log" "\
-Display the `HEAD' reflog.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-log-move-to-parent "magit-log" "\
-Move to the Nth parent of the current commit.
-
-\(fn &optional N)" t nil)
-
-(autoload 'magit-cherry "magit-log" "\
-Show commits in a branch that are not merged in the upstream branch.
-
-\(fn HEAD UPSTREAM)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-log" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-margin" "magit-margin.el" (0 0 0 0))
-;;; Generated autoloads from magit-margin.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-margin" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-merge" "magit-merge.el" (0 0 0 0))
-;;; Generated autoloads from magit-merge.el
- (autoload 'magit-merge-popup "magit" nil t)
-
-(autoload 'magit-merge-plain "magit-merge" "\
-Merge commit REV into the current branch; using default message.
-
-Unless there are conflicts or a prefix argument is used create a
-merge commit using a generic commit message and without letting
-the user inspect the result.  With a prefix argument pretend the
-merge failed to give the user the opportunity to inspect the
-merge.
-
-\(git merge --no-edit|--no-commit [ARGS] REV)
-
-\(fn REV &optional ARGS NOCOMMIT)" t nil)
-
-(autoload 'magit-merge-editmsg "magit-merge" "\
-Merge commit REV into the current branch; and edit message.
-Perform the merge and prepare a commit message but let the user
-edit it.
-
-\(git merge --edit --no-ff [ARGS] REV)
-
-\(fn REV &optional ARGS)" t nil)
-
-(autoload 'magit-merge-nocommit "magit-merge" "\
-Merge commit REV into the current branch; pretending it failed.
-Pretend the merge failed to give the user the opportunity to
-inspect the merge and change the commit message.
-
-\(git merge --no-commit --no-ff [ARGS] REV)
-
-\(fn REV &optional ARGS)" t nil)
-
-(autoload 'magit-merge-into "magit-merge" "\
-Merge the current branch into BRANCH and remove the former.
-
-Before merging, force push the source branch to its push-remote,
-provided the respective remote branch already exists, ensuring
-that the respective pull-request (if any) won't get stuck on some
-obsolete version of the commits that are being merged.  Finally
-if `magit-branch-pull-request' was used to create the merged
-branch, then also remove the respective remote branch.
-
-\(fn BRANCH &optional ARGS)" t nil)
-
-(autoload 'magit-merge-absorb "magit-merge" "\
-Merge BRANCH into the current branch and remove the former.
-
-Before merging, force push the source branch to its push-remote,
-provided the respective remote branch already exists, ensuring
-that the respective pull-request (if any) won't get stuck on some
-obsolete version of the commits that are being merged.  Finally
-if `magit-branch-pull-request' was used to create the merged
-branch, then also remove the respective remote branch.
-
-\(fn BRANCH &optional ARGS)" t nil)
-
-(autoload 'magit-merge-squash "magit-merge" "\
-Squash commit REV into the current branch; don't create a commit.
-
-\(git merge --squash REV)
-
-\(fn REV)" t nil)
-
-(autoload 'magit-merge-preview "magit-merge" "\
-Preview result of merging REV into the current branch.
-
-\(fn REV)" t nil)
-
-(autoload 'magit-merge-abort "magit-merge" "\
-Abort the current merge operation.
-
-\(git merge --abort)
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-merge" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-mode" "magit-mode.el" (0 0 0 0))
-;;; Generated autoloads from magit-mode.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-mode" '("magit-" "disable-magit-save-buffers" "inhibit-magit-refresh")))
-
-;;;***
-
-;;;### (autoloads nil "magit-notes" "magit-notes.el" (0 0 0 0))
-;;; Generated autoloads from magit-notes.el
- (autoload 'magit-notes-popup "magit" nil t)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-notes" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-patch" "magit-patch.el" (0 0 0 0))
-;;; Generated autoloads from magit-patch.el
- (autoload 'magit-patch-popup "magit-patch" nil t)
-
-(autoload 'magit-format-patch "magit-patch" "\
-Create patches for the commits in RANGE.
-When a single commit is given for RANGE, create a patch for the
-changes introduced by that commit (unlike 'git format-patch'
-which creates patches for all commits that are reachable from
-`HEAD' but not from the specified commit).
-
-\(fn RANGE ARGS FILES)" t nil)
-
-(autoload 'magit-request-pull "magit-patch" "\
-Request upstream to pull from you public repository.
-
-URL is the url of your publically accessible repository.
-START is a commit that already is in the upstream repository.
-END is the last commit, usually a branch name, which upstream
-is asked to pull.  START has to be reachable from that commit.
-
-\(fn URL START END)" t nil)
- (autoload 'magit-patch-apply-popup "magit-patch" nil t)
-
-(autoload 'magit-patch-apply "magit-patch" "\
-Apply the patch file FILE.
-
-\(fn FILE &rest ARGS)" t nil)
-
-(autoload 'magit-patch-save "magit-patch" "\
-Write current diff into patch FILE.
-
-What arguments are used to create the patch depends on the value
-of `magit-patch-save-arguments' and whether a prefix argument is
-used.
-
-If the value is the symbol `buffer', then use the same arguments
-as the buffer.  With a prefix argument use no arguments.
-
-If the value is a list beginning with the symbol `exclude', then
-use the same arguments as the buffer except for those matched by
-entries in the cdr of the list.  The comparison is done using
-`string-prefix-p'.  With a prefix argument use the same arguments
-as the buffer.
-
-If the value is a list of strings (including the empty list),
-then use those arguments.  With a prefix argument use the same
-arguments as the buffer.
-
-Of course the arguments that are required to actually show the
-same differences as those shown in the buffer are always used.
-
-\(fn FILE &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-patch" '("magit-patch-save-arguments")))
-
-;;;***
-
-;;;### (autoloads nil "magit-process" "magit-process.el" (0 0 0 0))
-;;; Generated autoloads from magit-process.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-process" '("magit-" "tramp-sh-handle-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-pull" "magit-pull.el" (0 0 0 0))
-;;; Generated autoloads from magit-pull.el
- (autoload 'magit-pull-popup "magit-pull" nil t)
- (autoload 'magit-pull-and-fetch-popup "magit-pull" nil t)
-
-(autoload 'magit-pull-from-pushremote "magit-pull" "\
-Pull from the push-remote of the current branch.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-pull-from-upstream "magit-pull" "\
-Pull from the upstream of the current branch.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-pull-branch "magit-pull" "\
-Pull from a branch read in the minibuffer.
-
-\(fn SOURCE ARGS)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-pull" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-push" "magit-push.el" (0 0 0 0))
-;;; Generated autoloads from magit-push.el
- (autoload 'magit-push-popup "magit-push" nil t)
-
-(autoload 'magit-push-current-to-pushremote "magit-push" "\
-Push the current branch to `branch.<name>.pushRemote'.
-If that variable is unset, then push to `remote.pushDefault'.
-
-When `magit-push-current-set-remote-if-missing' is non-nil and
-the push-remote is not configured, then read the push-remote from
-the user, set it, and then push to it.  With a prefix argument
-the push-remote can be changed before pushed to it.
-
-\(fn ARGS &optional PUSH-REMOTE)" t nil)
-
-(autoload 'magit-push-current-to-upstream "magit-push" "\
-Push the current branch to its upstream branch.
-
-When `magit-push-current-set-remote-if-missing' is non-nil and
-the upstream is not configured, then read the upstream from the
-user, set it, and then push to it.  With a prefix argument the
-upstream can be changed before pushed to it.
-
-\(fn ARGS &optional UPSTREAM)" t nil)
-
-(autoload 'magit-push-current "magit-push" "\
-Push the current branch to a branch read in the minibuffer.
-
-\(fn TARGET ARGS)" t nil)
-
-(autoload 'magit-push-other "magit-push" "\
-Push an arbitrary branch or commit somewhere.
-Both the source and the target are read in the minibuffer.
-
-\(fn SOURCE TARGET ARGS)" t nil)
-
-(autoload 'magit-push-refspecs "magit-push" "\
-Push one or multiple REFSPECS to a REMOTE.
-Both the REMOTE and the REFSPECS are read in the minibuffer.  To
-use multiple REFSPECS, separate them with commas.  Completion is
-only available for the part before the colon, or when no colon
-is used.
-
-\(fn REMOTE REFSPECS ARGS)" t nil)
-
-(autoload 'magit-push-matching "magit-push" "\
-Push all matching branches to another repository.
-If multiple remotes exist, then read one from the user.
-If just one exists, use that without requiring confirmation.
-
-\(fn REMOTE &optional ARGS)" t nil)
-
-(autoload 'magit-push-tags "magit-push" "\
-Push all tags to another repository.
-If only one remote exists, then push to that.  Otherwise prompt
-for a remote, offering the remote configured for the current
-branch as default.
-
-\(fn REMOTE &optional ARGS)" t nil)
-
-(autoload 'magit-push-tag "magit-push" "\
-Push a tag to another repository.
-
-\(fn TAG REMOTE &optional ARGS)" t nil)
-
-(autoload 'magit-push-implicitly "magit-push" "\
-Push somewhere without using an explicit refspec.
-
-This command simply runs \"git push -v [ARGS]\".  ARGS are the
-arguments specified in the popup buffer.  No explicit refspec
-arguments are used.  Instead the behavior depends on at least
-these Git variables: `push.default', `remote.pushDefault',
-`branch.<branch>.pushRemote', `branch.<branch>.remote',
-`branch.<branch>.merge', and `remote.<remote>.push'.
-
-To add this command to the push popup add this to your init file:
-
-  (with-eval-after-load \\='magit-remote
-    (magit-define-popup-action \\='magit-push-popup ?P
-      \\='magit-push-implicitly--desc
-      \\='magit-push-implicitly ?p t))
-
-The function `magit-push-implicitly--desc' attempts to predict
-what this command will do.  The value it returns is displayed in
-the popup buffer.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-push-to-remote "magit-push" "\
-Push to REMOTE without using an explicit refspec.
-The REMOTE is read in the minibuffer.
-
-This command simply runs \"git push -v [ARGS] REMOTE\".  ARGS
-are the arguments specified in the popup buffer.  No refspec
-arguments are used.  Instead the behavior depends on at least
-these Git variables: `push.default', `remote.pushDefault',
-`branch.<branch>.pushRemote', `branch.<branch>.remote',
-`branch.<branch>.merge', and `remote.<remote>.push'.
-
-To add this command to the push popup add this to your init file:
-
-  (with-eval-after-load \\='magit-remote
-    (magit-define-popup-action \\='magit-push-popup ?r
-      \\='magit-push-to-remote--desc
-      \\='magit-push-to-remote ?p t))
-
-\(fn REMOTE ARGS)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-push" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-refs" "magit-refs.el" (0 0 0 0))
-;;; Generated autoloads from magit-refs.el
-
-(autoload 'magit-show-refs-popup "magit-refs" "\
-Popup console for `magit-show-refs'.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'magit-show-refs-head "magit-refs" "\
-List and compare references in a dedicated buffer.
-Refs are compared with `HEAD'.
-
-\(fn &optional ARGS)" t nil)
-
-(autoload 'magit-show-refs-current "magit-refs" "\
-List and compare references in a dedicated buffer.
-Refs are compared with the current branch or `HEAD' if
-it is detached.
-
-\(fn &optional ARGS)" t nil)
-
-(autoload 'magit-show-refs "magit-refs" "\
-List and compare references in a dedicated buffer.
-Refs are compared with a branch read from the user.
-
-\(fn &optional REF ARGS)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-refs" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-remote" "magit-remote.el" (0 0 0 0))
-;;; Generated autoloads from magit-remote.el
- (autoload 'magit-remote-popup "magit-remote" nil t)
-
-(autoload 'magit-remote-add "magit-remote" "\
-Add a remote named REMOTE and fetch it.
-
-\(fn REMOTE URL &optional ARGS)" t nil)
-
-(autoload 'magit-remote-rename "magit-remote" "\
-Rename the remote named OLD to NEW.
-
-\(fn OLD NEW)" t nil)
-
-(autoload 'magit-remote-remove "magit-remote" "\
-Delete the remote named REMOTE.
-
-\(fn REMOTE)" t nil)
-
-(autoload 'magit-remote-prune "magit-remote" "\
-Remove stale remote-tracking branches for REMOTE.
-
-\(fn REMOTE)" t nil)
-
-(autoload 'magit-remote-prune-refspecs "magit-remote" "\
-Remove stale refspecs for REMOTE.
-
-A refspec is stale if there no longer exists at least one branch
-on the remote that would be fetched due to that refspec.  A stale
-refspec is problematic because its existence causes Git to refuse
-to fetch according to the remaining non-stale refspecs.
-
-If only stale refspecs remain, then offer to either delete the
-remote or to replace the stale refspecs with the default refspec.
-
-Also remove the remote-tracking branches that were created due to
-the now stale refspecs.  Other stale branches are not removed.
-
-\(fn REMOTE)" t nil)
-
-(autoload 'magit-remote-set-head "magit-remote" "\
-Set the local representation of REMOTE's default branch.
-Query REMOTE and set the symbolic-ref refs/remotes/<remote>/HEAD
-accordingly.  With a prefix argument query for the branch to be
-used, which allows you to select an incorrect value if you fancy
-doing that.
-
-\(fn REMOTE &optional BRANCH)" t nil)
-
-(autoload 'magit-remote-unset-head "magit-remote" "\
-Unset the local representation of REMOTE's default branch.
-Delete the symbolic-ref \"refs/remotes/<remote>/HEAD\".
-
-\(fn REMOTE)" t nil)
-
-(autoload 'magit-remote-config-popup "magit-remote" "\
-Popup console for setting remote variables.
-
-\(fn REMOTE)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-remote" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-repos" "magit-repos.el" (0 0 0 0))
-;;; Generated autoloads from magit-repos.el
-
-(autoload 'magit-list-repositories "magit-repos" "\
-Display a list of repositories.
-
-Use the options `magit-repository-directories' to control which
-repositories are displayed.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-repos" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-reset" "magit-reset.el" (0 0 0 0))
-;;; Generated autoloads from magit-reset.el
- (autoload 'magit-reset-popup "magit" nil t)
-
-(autoload 'magit-reset-mixed "magit-reset" "\
-Reset the `HEAD' and index to COMMIT, but not the working tree.
-
-\(git reset --mixed COMMIT)
-
-\(fn COMMIT)" t nil)
-
-(autoload 'magit-reset-soft "magit-reset" "\
-Reset the `HEAD' to COMMIT, but not the index and working tree.
-
-\(git reset --soft REVISION)
-
-\(fn COMMIT)" t nil)
-
-(autoload 'magit-reset-hard "magit-reset" "\
-Reset the `HEAD', index, and working tree to COMMIT.
-
-\(git reset --hard REVISION)
-
-\(fn COMMIT)" t nil)
-
-(autoload 'magit-reset-index "magit-reset" "\
-Reset the index to COMMIT.
-Keep the `HEAD' and working tree as-is, so if COMMIT refers to the
-head this effectively unstages all changes.
-
-\(git reset COMMIT .)
-
-\(fn COMMIT)" t nil)
-
-(autoload 'magit-reset-worktree "magit-reset" "\
-Reset the worktree to COMMIT.
-Keep the `HEAD' and index as-is.
-
-\(fn COMMIT)" t nil)
-
-(autoload 'magit-reset-quickly "magit-reset" "\
-Reset the `HEAD' and index to COMMIT, and possibly the working tree.
-With a prefix argument reset the working tree otherwise don't.
-
-\(git reset --mixed|--hard COMMIT)
-
-\(fn COMMIT &optional HARD)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-reset" '("magit-reset-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-section" "magit-section.el" (0 0 0 0))
-;;; Generated autoloads from magit-section.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-section" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-sequence" "magit-sequence.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from magit-sequence.el
-
-(autoload 'magit-sequencer-continue "magit-sequence" "\
-Resume the current cherry-pick or revert sequence.
-
-\(fn)" t nil)
-
-(autoload 'magit-sequencer-skip "magit-sequence" "\
-Skip the stopped at commit during a cherry-pick or revert sequence.
-
-\(fn)" t nil)
-
-(autoload 'magit-sequencer-abort "magit-sequence" "\
-Abort the current cherry-pick or revert sequence.
-This discards all changes made since the sequence started.
-
-\(fn)" t nil)
- (autoload 'magit-cherry-pick-popup "magit-sequence" nil t)
-
-(autoload 'magit-cherry-copy "magit-sequence" "\
-Copy COMMITS from another branch onto the current branch.
-Prompt for a commit, defaulting to the commit at point.  If
-the region selects multiple commits, then pick all of them,
-without prompting.
-
-\(fn COMMITS &optional ARGS)" t nil)
-
-(autoload 'magit-cherry-apply "magit-sequence" "\
-Apply the changes in COMMITS but do not commit them.
-Prompt for a commit, defaulting to the commit at point.  If
-the region selects multiple commits, then apply all of them,
-without prompting.
-
-\(fn COMMITS &optional ARGS)" t nil)
-
-(autoload 'magit-cherry-harvest "magit-sequence" "\
-Move COMMITS from another BRANCH onto the current branch.
-Remove the COMMITS from BRANCH and stay on the current branch.
-If a conflict occurs, then you have to fix that and finish the
-process manually.
-
-\(fn COMMITS BRANCH &optional ARGS)" t nil)
-
-(autoload 'magit-cherry-donate "magit-sequence" "\
-Move COMMITS from the current branch onto another existing BRANCH.
-Remove COMMITS from the current branch and stay on that branch.
-If a conflict occurs, then you have to fix that and finish the
-process manually.
-
-\(fn COMMITS BRANCH &optional ARGS)" t nil)
-
-(autoload 'magit-cherry-spinout "magit-sequence" "\
-Move COMMITS from the current branch onto a new BRANCH.
-Remove COMMITS from the current branch and stay on that branch.
-If a conflict occurs, then you have to fix that and finish the
-process manually.
-
-\(fn COMMITS BRANCH START-POINT &optional ARGS)" t nil)
-
-(autoload 'magit-cherry-spinoff "magit-sequence" "\
-Move COMMITS from the current branch onto a new BRANCH.
-Remove COMMITS from the current branch and checkout BRANCH.
-If a conflict occurs, then you have to fix that and finish
-the process manually.
-
-\(fn COMMITS BRANCH START-POINT &optional ARGS)" t nil)
- (autoload 'magit-revert-popup "magit-sequence" nil t)
-
-(autoload 'magit-revert-and-commit "magit-sequence" "\
-Revert COMMIT by creating a new commit.
-Prompt for a commit, defaulting to the commit at point.  If
-the region selects multiple commits, then revert all of them,
-without prompting.
-
-\(fn COMMIT &optional ARGS)" t nil)
-
-(autoload 'magit-revert-no-commit "magit-sequence" "\
-Revert COMMIT by applying it in reverse to the worktree.
-Prompt for a commit, defaulting to the commit at point.  If
-the region selects multiple commits, then revert all of them,
-without prompting.
-
-\(fn COMMIT &optional ARGS)" t nil)
- (autoload 'magit-am-popup "magit-sequence" nil t)
-
-(autoload 'magit-am-apply-patches "magit-sequence" "\
-Apply the patches FILES.
-
-\(fn &optional FILES ARGS)" t nil)
-
-(autoload 'magit-am-apply-maildir "magit-sequence" "\
-Apply the patches from MAILDIR.
-
-\(fn &optional MAILDIR ARGS)" t nil)
-
-(autoload 'magit-am-continue "magit-sequence" "\
-Resume the current patch applying sequence.
-
-\(fn)" t nil)
-
-(autoload 'magit-am-skip "magit-sequence" "\
-Skip the stopped at patch during a patch applying sequence.
-
-\(fn)" t nil)
-
-(autoload 'magit-am-abort "magit-sequence" "\
-Abort the current patch applying sequence.
-This discards all changes made since the sequence started.
-
-\(fn)" t nil)
- (autoload 'magit-rebase-popup "magit-sequence" nil t)
-
-(autoload 'magit-rebase-onto-pushremote "magit-sequence" "\
-Rebase the current branch onto `branch.<name>.pushRemote'.
-If that variable is unset, then rebase onto `remote.pushDefault'.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-rebase-onto-upstream "magit-sequence" "\
-Rebase the current branch onto its upstream branch.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-rebase-branch "magit-sequence" "\
-Rebase the current branch onto a branch read in the minibuffer.
-All commits that are reachable from `HEAD' but not from the
-selected branch TARGET are being rebased.
-
-\(fn TARGET ARGS)" t nil)
-
-(autoload 'magit-rebase-subset "magit-sequence" "\
-Rebase a subset of the current branch's history onto a new base.
-Rebase commits from START to `HEAD' onto NEWBASE.
-START has to be selected from a list of recent commits.
-
-\(fn NEWBASE START ARGS)" t nil)
-
-(autoload 'magit-rebase-interactive "magit-sequence" "\
-Start an interactive rebase sequence.
-
-\(fn COMMIT ARGS)" t nil)
-
-(autoload 'magit-rebase-autosquash "magit-sequence" "\
-Combine squash and fixup commits with their intended targets.
-
-\(fn ARGS)" t nil)
-
-(autoload 'magit-rebase-edit-commit "magit-sequence" "\
-Edit a single older commit using rebase.
-
-\(fn COMMIT ARGS)" t nil)
-
-(autoload 'magit-rebase-reword-commit "magit-sequence" "\
-Reword a single older commit using rebase.
-
-\(fn COMMIT ARGS)" t nil)
-
-(autoload 'magit-rebase-remove-commit "magit-sequence" "\
-Remove a single older commit using rebase.
-
-\(fn COMMIT ARGS)" t nil)
-
-(autoload 'magit-rebase-continue "magit-sequence" "\
-Restart the current rebasing operation.
-In some cases this pops up a commit message buffer for you do
-edit.  With a prefix argument the old message is reused as-is.
-
-\(fn &optional NOEDIT)" t nil)
-
-(autoload 'magit-rebase-skip "magit-sequence" "\
-Skip the current commit and restart the current rebase operation.
-
-\(fn)" t nil)
-
-(autoload 'magit-rebase-edit "magit-sequence" "\
-Edit the todo list of the current rebase operation.
-
-\(fn)" t nil)
-
-(autoload 'magit-rebase-abort "magit-sequence" "\
-Abort the current rebase operation, restoring the original branch.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-sequence" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-stash" "magit-stash.el" (0 0 0 0))
-;;; Generated autoloads from magit-stash.el
- (autoload 'magit-stash-popup "magit-stash" nil t)
-
-(autoload 'magit-stash-both "magit-stash" "\
-Create a stash of the index and working tree.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'.
-
-\(fn MESSAGE &optional INCLUDE-UNTRACKED)" t nil)
-
-(autoload 'magit-stash-index "magit-stash" "\
-Create a stash of the index only.
-Unstaged and untracked changes are not stashed.  The stashed
-changes are applied in reverse to both the index and the
-worktree.  This command can fail when the worktree is not clean.
-Applying the resulting stash has the inverse effect.
-
-\(fn MESSAGE)" t nil)
-
-(autoload 'magit-stash-worktree "magit-stash" "\
-Create a stash of unstaged changes in the working tree.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'.
-
-\(fn MESSAGE &optional INCLUDE-UNTRACKED)" t nil)
-
-(autoload 'magit-stash-keep-index "magit-stash" "\
-Create a stash of the index and working tree, keeping index intact.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'.
-
-\(fn MESSAGE &optional INCLUDE-UNTRACKED)" t nil)
-
-(autoload 'magit-snapshot-both "magit-stash" "\
-Create a snapshot of the index and working tree.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'.
-
-\(fn &optional INCLUDE-UNTRACKED)" t nil)
-
-(autoload 'magit-snapshot-index "magit-stash" "\
-Create a snapshot of the index only.
-Unstaged and untracked changes are not stashed.
-
-\(fn)" t nil)
-
-(autoload 'magit-snapshot-worktree "magit-stash" "\
-Create a snapshot of unstaged changes in the working tree.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'.
-
-\(fn &optional INCLUDE-UNTRACKED)" t nil)
-
-(autoload 'magit-stash-apply "magit-stash" "\
-Apply a stash to the working tree.
-Try to preserve the stash index.  If that fails because there
-are staged changes, apply without preserving the stash index.
-
-\(fn STASH)" t nil)
-
-(autoload 'magit-stash-drop "magit-stash" "\
-Remove a stash from the stash list.
-When the region is active offer to drop all contained stashes.
-
-\(fn STASH)" t nil)
-
-(autoload 'magit-stash-clear "magit-stash" "\
-Remove all stashes saved in REF's reflog by deleting REF.
-
-\(fn REF)" t nil)
-
-(autoload 'magit-stash-branch "magit-stash" "\
-Create and checkout a new BRANCH from STASH.
-
-\(fn STASH BRANCH)" t nil)
-
-(autoload 'magit-stash-branch-here "magit-stash" "\
-Create and checkout a new BRANCH and apply STASH.
-The branch is created using `magit-branch', using the current
-branch or `HEAD' as the string-point.
-
-\(fn STASH BRANCH)" t nil)
-
-(autoload 'magit-stash-format-patch "magit-stash" "\
-Create a patch from STASH
-
-\(fn STASH)" t nil)
-
-(autoload 'magit-stash-list "magit-stash" "\
-List all stashes in a buffer.
-
-\(fn)" t nil)
-
-(autoload 'magit-stash-show "magit-stash" "\
-Show all diffs of a stash in a buffer.
-
-\(fn STASH &optional ARGS FILES)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-stash" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-status" "magit-status.el" (0 0 0 0))
-;;; Generated autoloads from magit-status.el
-
-(autoload 'magit-init "magit-status" "\
-Initialize a Git repository, then show its status.
-
-If the directory is below an existing repository, then the user
-has to confirm that a new one should be created inside.  If the
-directory is the root of the existing repository, then the user
-has to confirm that it should be reinitialized.
-
-Non-interactively DIRECTORY is (re-)initialized unconditionally.
-
-\(fn DIRECTORY)" t nil)
-
-(autoload 'magit-status "magit-status" "\
-Show the status of the current Git repository in a buffer.
-With a prefix argument prompt for a repository to be shown.
-With two prefix arguments prompt for an arbitrary directory.
-If that directory isn't the root of an existing repository,
-then offer to initialize it as a new repository.
-
-\(fn &optional DIRECTORY CACHE)" t nil)
-
-(autoload 'magit-status-internal "magit-status" "\
-
-
-\(fn DIRECTORY)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-status" '("magit")))
-
-;;;***
-
-;;;### (autoloads nil "magit-submodule" "magit-submodule.el" (0 0
-;;;;;;  0 0))
-;;; Generated autoloads from magit-submodule.el
- (autoload 'magit-submodule-popup "magit-submodule" nil t)
-
-(autoload 'magit-submodule-add "magit-submodule" "\
-Add the repository at URL as a module.
-
-Optional PATH is the path to the module relative to the root of
-the superproject.  If it is nil, then the path is determined
-based on the URL.  Optional NAME is the name of the module.  If
-it is nil, then PATH also becomes the name.
-
-\(fn URL &optional PATH NAME ARGS)" t nil)
-
-(autoload 'magit-submodule-read-name-for-path "magit-submodule" "\
-
-
-\(fn PATH &optional PREFER-SHORT)" nil nil)
-
-(autoload 'magit-submodule-register "magit-submodule" "\
-Register MODULES.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user.
-
-\(fn MODULES)" t nil)
-
-(autoload 'magit-submodule-populate "magit-submodule" "\
-Create MODULES working directories, checking out the recorded commits.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user.
-
-\(fn MODULES)" t nil)
-
-(autoload 'magit-submodule-update "magit-submodule" "\
-Update MODULES by checking out the recorded commits.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user.
-
-\(fn MODULES ARGS)" t nil)
-
-(autoload 'magit-submodule-synchronize "magit-submodule" "\
-Synchronize url configuration of MODULES.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user.
-
-\(fn MODULES ARGS)" t nil)
-
-(autoload 'magit-submodule-unpopulate "magit-submodule" "\
-Remove working directories of MODULES.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user.
-
-\(fn MODULES ARGS)" t nil)
-
-(autoload 'magit-submodule-remove "magit-submodule" "\
-Unregister MODULES and remove their working directories.
-
-For safety reasons, do not remove the gitdirs and if a module has
-uncomitted changes, then do not remove it at all.  If a module's
-gitdir is located inside the working directory, then move it into
-the gitdir of the superproject first.
-
-With the \"--force\" argument offer to remove dirty working
-directories and with a prefix argument offer to delete gitdirs.
-Both actions are very dangerous and have to be confirmed.  There
-are additional safety precautions in place, so you might be able
-to recover from making a mistake here, but don't count on it.
-
-\(fn MODULES ARGS TRASH-GITDIRS)" t nil)
-
-(autoload 'magit-insert-modules "magit-submodule" "\
-Insert submodule sections.
-Hook `magit-module-sections-hook' controls which module sections
-are inserted, and option `magit-module-sections-nested' controls
-whether they are wrapped in an additional section.
-
-\(fn)" nil nil)
-
-(autoload 'magit-insert-modules-overview "magit-submodule" "\
-Insert sections for all modules.
-For each section insert the path and the output of `git describe --tags',
-or, failing that, the abbreviated HEAD commit hash.
-
-\(fn)" nil nil)
-
-(autoload 'magit-insert-modules-unpulled-from-upstream "magit-submodule" "\
-Insert sections for modules that haven't been pulled from the upstream.
-These sections can be expanded to show the respective commits.
-
-\(fn)" nil nil)
-
-(autoload 'magit-insert-modules-unpulled-from-pushremote "magit-submodule" "\
-Insert sections for modules that haven't been pulled from the push-remote.
-These sections can be expanded to show the respective commits.
-
-\(fn)" nil nil)
-
-(autoload 'magit-insert-modules-unpushed-to-upstream "magit-submodule" "\
-Insert sections for modules that haven't been pushed to the upstream.
-These sections can be expanded to show the respective commits.
-
-\(fn)" nil nil)
-
-(autoload 'magit-insert-modules-unpushed-to-pushremote "magit-submodule" "\
-Insert sections for modules that haven't been pushed to the push-remote.
-These sections can be expanded to show the respective commits.
-
-\(fn)" nil nil)
-
-(autoload 'magit-list-submodules "magit-submodule" "\
-Display a list of the current repository's submodules.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-submodule" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-subtree" "magit-subtree.el" (0 0 0 0))
-;;; Generated autoloads from magit-subtree.el
- (autoload 'magit-subtree-popup "magit-subtree" nil t)
-
-(autoload 'magit-subtree-add "magit-subtree" "\
-Add REF from REPOSITORY as a new subtree at PREFIX.
-
-\(fn PREFIX REPOSITORY REF ARGS)" t nil)
-
-(autoload 'magit-subtree-add-commit "magit-subtree" "\
-Add COMMIT as a new subtree at PREFIX.
-
-\(fn PREFIX COMMIT ARGS)" t nil)
-
-(autoload 'magit-subtree-merge "magit-subtree" "\
-Merge COMMIT into the PREFIX subtree.
-
-\(fn PREFIX COMMIT ARGS)" t nil)
-
-(autoload 'magit-subtree-pull "magit-subtree" "\
-Pull REF from REPOSITORY into the PREFIX subtree.
-
-\(fn PREFIX REPOSITORY REF ARGS)" t nil)
-
-(autoload 'magit-subtree-push "magit-subtree" "\
-Extract the history of the subtree PREFIX and push it to REF on REPOSITORY.
-
-\(fn PREFIX REPOSITORY REF ARGS)" t nil)
-
-(autoload 'magit-subtree-split "magit-subtree" "\
-Extract the history of the subtree PREFIX.
-
-\(fn PREFIX COMMIT ARGS)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-subtree" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-tag" "magit-tag.el" (0 0 0 0))
-;;; Generated autoloads from magit-tag.el
- (autoload 'magit-tag-popup "magit" nil t)
-
-(autoload 'magit-tag-create "magit-tag" "\
-Create a new tag with the given NAME at REV.
-With a prefix argument annotate the tag.
-
-\(git tag [--annotate] NAME REV)
-
-\(fn NAME REV &optional ARGS)" t nil)
-
-(autoload 'magit-tag-delete "magit-tag" "\
-Delete one or more tags.
-If the region marks multiple tags (and nothing else), then offer
-to delete those, otherwise prompt for a single tag to be deleted,
-defaulting to the tag at point.
-
-\(git tag -d TAGS)
-
-\(fn TAGS)" t nil)
-
-(autoload 'magit-tag-prune "magit-tag" "\
-Offer to delete tags missing locally from REMOTE, and vice versa.
-
-\(fn TAGS REMOTE-TAGS REMOTE)" t nil)
-
-(autoload 'magit-tag-release "magit-tag" "\
-Create an opinionated release tag.
-
-Assume version tags that match \"\\\\`v?[0-9]\\\\(\\\\.[0-9]\\\\)*\\\\'\".
-Prompt for the name of the new tag using the highest existing tag
-as initial input and call \"git tag --annotate --sign -m MSG\" TAG,
-regardless of whether these arguments are enabled in the popup.
-Given a TAG \"v1.2.3\" and a repository \"/path/to/foo-bar\", the
-MESSAGE would be \"Foo-Bar 1.2.3\".
-
-Because it is so opinionated, this command is not available from
-the tag popup by default.
-
-\(fn TAG)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "magit-utils" "magit-utils.el" (0 0 0 0))
-;;; Generated autoloads from magit-utils.el
-
-(autoload 'magit-emacs-Q-command "magit-utils" "\
-Show a shell command that runs an uncustomized Emacs with only Magit loaded.
-See info node `(magit)Debugging Tools' for more information.
-
-\(fn)" t nil)
-
-(autoload 'Info-follow-nearest-node--magit-gitman "magit-utils" "\
-
-
-\(fn FN &optional FORK)" nil nil)
-
-(advice-add 'Info-follow-nearest-node :around 'Info-follow-nearest-node--magit-gitman)
-
-(autoload 'org-man-export--magit-gitman "magit-utils" "\
-
-
-\(fn FN LINK DESCRIPTION FORMAT)" nil nil)
-
-(advice-add 'org-man-export :around 'org-man-export--magit-gitman)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-utils" '("magit-" "whitespace-dont-turn-on-in-magit-mode")))
-
-;;;***
-
-;;;### (autoloads nil "magit-wip" "magit-wip.el" (0 0 0 0))
-;;; Generated autoloads from magit-wip.el
-
-(defvar magit-wip-after-save-mode nil "\
-Non-nil if Magit-Wip-After-Save mode is enabled.
-See the `magit-wip-after-save-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `magit-wip-after-save-mode'.")
-
-(custom-autoload 'magit-wip-after-save-mode "magit-wip" nil)
-
-(autoload 'magit-wip-after-save-mode "magit-wip" "\
-Toggle Magit-Wip-After-Save-Local mode in all buffers.
-With prefix ARG, enable Magit-Wip-After-Save mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Magit-Wip-After-Save-Local mode is enabled in all buffers where
-`magit-wip-after-save-local-mode-turn-on' would do it.
-See `magit-wip-after-save-local-mode' for more information on Magit-Wip-After-Save-Local mode.
-
-\(fn &optional ARG)" t nil)
-
-(defvar magit-wip-after-apply-mode nil "\
-Non-nil if Magit-Wip-After-Apply mode is enabled.
-See the `magit-wip-after-apply-mode' command
-for a description of this minor mode.")
-
-(custom-autoload 'magit-wip-after-apply-mode "magit-wip" nil)
-
-(autoload 'magit-wip-after-apply-mode "magit-wip" "\
-Commit to work-in-progress refs.
-
-After applying a change using any \"apply variant\"
-command (apply, stage, unstage, discard, and reverse) commit the
-affected files to the current wip refs.  For each branch there
-may be two wip refs; one contains snapshots of the files as found
-in the worktree and the other contains snapshots of the entries
-in the index.
-
-\(fn &optional ARG)" t nil)
-
-(defvar magit-wip-before-change-mode nil "\
-Non-nil if Magit-Wip-Before-Change mode is enabled.
-See the `magit-wip-before-change-mode' command
-for a description of this minor mode.")
-
-(custom-autoload 'magit-wip-before-change-mode "magit-wip" nil)
-
-(autoload 'magit-wip-before-change-mode "magit-wip" "\
-Commit to work-in-progress refs before certain destructive changes.
-
-Before invoking a revert command or an \"apply variant\"
-command (apply, stage, unstage, discard, and reverse) commit the
-affected tracked files to the current wip refs.  For each branch
-there may be two wip refs; one contains snapshots of the files
-as found in the worktree and the other contains snapshots of the
-entries in the index.
-
-Only changes to files which could potentially be affected by the
-command which is about to be called are committed.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'magit-wip-commit-initial-backup "magit-wip" "\
-Before saving, commit current file to a worktree wip ref.
-
-The user has to add this function to `before-save-hook'.
-
-Commit the current state of the visited file before saving the
-current buffer to that file.  This backs up the same version of
-the file as `backup-buffer' would, but stores the backup in the
-worktree wip ref, which is also used by the various Magit Wip
-modes, instead of in a backup file as `backup-buffer' would.
-
-This function ignores the variables that affect `backup-buffer'
-and can be used along-side that function, which is recommended
-because this function only backs up files that are tracked in
-a Git repository.
-
-\(fn)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-wip" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil "magit-worktree" "magit-worktree.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from magit-worktree.el
- (autoload 'magit-worktree-popup "magit-worktree" nil t)
-
-(autoload 'magit-worktree-checkout "magit-worktree" "\
-Checkout BRANCH in a new worktree at PATH.
-
-\(fn PATH BRANCH)" t nil)
-
-(autoload 'magit-worktree-branch "magit-worktree" "\
-Create a new BRANCH and check it out in a new worktree at PATH.
-
-\(fn PATH BRANCH START-POINT &optional FORCE)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-worktree" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil nil ("magit-core.el" "magit-obsolete.el" "magit-pkg.el")
-;;;;;;  (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; magit-autoloads.el ends here
diff --git a/elpa/magit-20181116.1412/magit-autorevert.el b/elpa/magit-20181116.1412/magit-autorevert.el
deleted file mode 100644
index 9001b13..0000000
--- a/elpa/magit-20181116.1412/magit-autorevert.el
+++ /dev/null
@@ -1,261 +0,0 @@
-;;; magit-autorevert.el --- revert buffers when files in repository change  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'dash)
-
-(require 'magit-git)
-
-(require 'autorevert)
-
-;;; Options
-
-(defgroup magit-auto-revert nil
-  "Revert buffers when files in repository change."
-  :link '(custom-group-link auto-revert)
-  :link '(info-link "(magit)Automatic Reverting of File-Visiting Buffers")
-  :group 'auto-revert
-  :group 'magit-essentials
-  :group 'magit-modes)
-
-(defcustom auto-revert-buffer-list-filter nil
-  "Filter that determines which buffers `auto-revert-buffers' reverts.
-
-This option is provided by `magit', which also redefines
-`auto-revert-buffers' to respect it.  Magit users who do not turn
-on the local mode `auto-revert-mode' themselves, are best served
-by setting the value to `magit-auto-revert-repository-buffers-p'.
-
-However the default is nil, to not disturb users who do use the
-local mode directly.  If you experience delays when running Magit
-commands, then you should consider using one of the predicates
-provided by Magit - especially if you also use Tramp.
-
-Users who do turn on `auto-revert-mode' in buffers in which Magit
-doesn't do that for them, should likely not use any filter.
-Users who turn on `global-auto-revert-mode', do not have to worry
-about this option, because it is disregarded if the global mode
-is enabled."
-  :package-version '(magit . "2.4.2")
-  :group 'auto-revert
-  :group 'magit-auto-revert
-  :group 'magit-related
-  :type '(radio (const :tag "no filter" nil)
-                (function-item magit-auto-revert-buffer-p)
-                (function-item magit-auto-revert-repository-buffer-p)
-                function))
-
-(defcustom magit-auto-revert-tracked-only t
-  "Whether `magit-auto-revert-mode' only reverts tracked files."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-auto-revert
-  :type 'boolean
-  :set (lambda (var val)
-         (set var val)
-         (when (and (bound-and-true-p magit-auto-revert-mode)
-                    (featurep 'magit-autorevert))
-           (magit-auto-revert-mode -1)
-           (magit-auto-revert-mode))))
-
-(defcustom magit-auto-revert-immediately t
-  "Whether Magit reverts buffers immediately.
-
-If this is non-nil and either `global-auto-revert-mode' or
-`magit-auto-revert-mode' is enabled, then Magit immediately
-reverts buffers by explicitly calling `auto-revert-buffers'
-after running git for side-effects.
-
-If `auto-revert-use-notify' is non-nil (and file notifications
-are actually supported), then `magit-auto-revert-immediately'
-does not have to be non-nil, because the reverts happen
-immediately anyway.
-
-If `magit-auto-revert-immediately' and `auto-revert-use-notify'
-are both nil, then reverts happen after `auto-revert-interval'
-seconds of user inactivity.  That is not desirable."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-auto-revert
-  :type 'boolean)
-
-;;; Mode
-
-(defun magit-turn-on-auto-revert-mode-if-desired (&optional file)
-  (if file
-      (--when-let (find-buffer-visiting file)
-        (with-current-buffer it
-          (magit-turn-on-auto-revert-mode-if-desired)))
-    (when (and buffer-file-name
-               (file-readable-p buffer-file-name)
-               (magit-toplevel)
-               (or (not magit-auto-revert-tracked-only)
-                   (magit-file-tracked-p buffer-file-name))
-               (not auto-revert-mode)         ; see #3014
-               (not global-auto-revert-mode)) ; see #3460
-      (auto-revert-mode 1))))
-
-;;;###autoload
-(define-globalized-minor-mode magit-auto-revert-mode auto-revert-mode
-  magit-turn-on-auto-revert-mode-if-desired
-  :package-version '(magit . "2.4.0")
-  :link '(info-link "(magit)Automatic Reverting of File-Visiting Buffers")
-  :group 'magit-auto-revert
-  :group 'magit-essentials
-  ;; - When `global-auto-revert-mode' is enabled, then this mode is
-  ;;   redundant.
-  ;; - In all other cases enable the mode because if buffers are not
-  ;;   automatically reverted that would make many very common tasks
-  ;;   much more cumbersome.
-  ;; - When `magit-revert-buffers' is nil, then the user has opted out
-  ;;   of the automatic reverts while a very old implementation was
-  ;;   still in use.  We continued to respect that setting for another
-  ;;   two and a half years, but no longer do so now.
-  :init-value (and (not global-auto-revert-mode)
-                   (not noninteractive)))
-;; - Unfortunately `:init-value t' only sets the value of the mode
-;;   variable but does not cause the mode function to be called.
-;; - I don't think it works like this on purpose, but since one usually
-;;   should not enable global modes by default, it is understandable.
-;; - If the user has set the variable `magit-auto-revert-mode' to nil
-;;   after loading magit (instead of doing so before loading magit or
-;;   by using the function), then we should still respect that setting.
-;; - If the user has set the obsolete variable `magit-revert-buffers'
-;;   to nil before or after loading magit, then we should still respect
-;;   that setting.
-;; - If the user sets one of these variables after loading magit and
-;;   after `after-init-hook' has run, then that won't have an effect
-;;   and there is nothing we can do about it.
-(defun magit-auto-revert-mode--init-kludge ()
-  "This is an internal kludge to be used on `after-init-hook'.
-Do not use this function elsewhere, and don't remove it from
-the `after-init-hook'.  For more information see the comments
-and code surrounding the definition of this function."
-  (if magit-auto-revert-mode
-      (let ((start (current-time)))
-        (magit-message "Turning on magit-auto-revert-mode...")
-        (magit-auto-revert-mode 1)
-        (magit-message
-         "Turning on magit-auto-revert-mode...done%s"
-         (let ((elapsed (float-time (time-subtract (current-time) start))))
-           (if (> elapsed 0.2)
-               (format " (%.3fs, %s buffers checked)" elapsed
-                       (length (buffer-list)))
-             ""))))
-    (magit-auto-revert-mode -1)))
-(if after-init-time
-    ;; Since `after-init-hook' has already been
-    ;; run, turn the mode on or off right now.
-    (magit-auto-revert-mode--init-kludge)
-  ;; By the time the init file has been fully loaded the
-  ;; values of the relevant variables might have changed.
-  (add-hook 'after-init-hook #'magit-auto-revert-mode--init-kludge t))
-
-(put 'magit-auto-revert-mode 'function-documentation
-     "Toggle Magit Auto Revert mode.
-With a prefix argument ARG, enable Magit Auto Revert mode if ARG
-is positive, and disable it otherwise.  If called from Lisp,
-enable the mode if ARG is omitted or nil.
-
-Magit Auto Revert mode is a global minor mode that reverts
-buffers associated with a file that is located inside a Git
-repository when the file changes on disk.  Use `auto-revert-mode'
-to revert a particular buffer.  Or use `global-auto-revert-mode'
-to revert all file-visiting buffers, not just those that visit
-a file located inside a Git repository.
-
-This global mode works by turning on the buffer-local mode
-`auto-revert-mode' at the time a buffer is first created.  The
-local mode is turned on if the visited file is being tracked in
-a Git repository at the time when the buffer is created.
-
-If `magit-auto-revert-tracked-only' is non-nil (the default),
-then only tracked files are reverted.  But if you stage a
-previously untracked file using `magit-stage', then this mode
-notices that.
-
-Unlike `global-auto-revert-mode', this mode never reverts any
-buffers that are not visiting files.
-
-The behavior of this mode can be customized using the options
-in the `autorevert' and `magit-autorevert' groups.
-
-This function calls the hook `magit-auto-revert-mode-hook'.")
-
-(defun magit-auto-revert-buffers ()
-  (when (and magit-auto-revert-immediately
-             (or global-auto-revert-mode
-                 (and magit-auto-revert-mode auto-revert-buffer-list)))
-    (let ((auto-revert-buffer-list-filter
-           (or auto-revert-buffer-list-filter
-               'magit-auto-revert-repository-buffer-p)))
-      (auto-revert-buffers))))
-
-(defvar magit-auto-revert-toplevel nil)
-
-(when (< emacs-major-version 25)
-  (defvar auto-revert-buffers-counter 1
-    "Incremented each time `auto-revert-buffers' is called"))
-
-(defun magit-auto-revert-buffer-p (buffer)
-  "Return t if BUFFER visits a file inside the current repository.
-The current repository is the one in which `default-directory' is
-located.  If there is no current repository, then return t for
-any BUFFER."
-  (magit-auto-revert-repository-buffer-p buffer t))
-
-(defun magit-auto-revert-repository-buffer-p (buffer &optional fallback)
-  "Return t if BUFFER visits a file inside the current repository.
-The current repository is the one in which `default-directory' is
-located.  If there is no current repository, then return FALLBACK
-\(which defaults to nil) for any BUFFER."
-  ;; Call `magit-toplevel' just once per cycle.
-  (unless (and magit-auto-revert-toplevel
-               (= (cdr magit-auto-revert-toplevel)
-                  auto-revert-buffers-counter))
-    (setq magit-auto-revert-toplevel
-          (cons (or (magit-toplevel) 'no-repo)
-                auto-revert-buffers-counter)))
-  (let ((top (car magit-auto-revert-toplevel)))
-    (if (eq top 'no-repo)
-        fallback
-      (let ((dir (with-current-buffer buffer default-directory)))
-        (and (equal (file-remote-p dir)
-                    (file-remote-p top))
-             ;; ^ `tramp-handle-file-in-directory-p' lacks this optimization.
-             (file-in-directory-p dir top))))))
-
-(defun auto-revert-buffers--buffer-list-filter ()
-  (when (< emacs-major-version 25)
-    (cl-incf auto-revert-buffers-counter))
-  (when auto-revert-buffer-list-filter
-    (setq auto-revert-buffer-list
-          (--filter auto-revert-buffer-list-filter
-                    auto-revert-buffer-list))))
-
-(advice-add 'auto-revert-buffers :before
-            'auto-revert-buffers--buffer-list-filter)
-
-;;; _
-(provide 'magit-autorevert)
-;;; magit-autorevert.el ends here
diff --git a/elpa/magit-20181116.1412/magit-autorevert.elc b/elpa/magit-20181116.1412/magit-autorevert.elc
deleted file mode 100644
index 6e5767d..0000000
--- a/elpa/magit-20181116.1412/magit-autorevert.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-bisect.el b/elpa/magit-20181116.1412/magit-bisect.el
deleted file mode 100644
index 735785b..0000000
--- a/elpa/magit-20181116.1412/magit-bisect.el
+++ /dev/null
@@ -1,217 +0,0 @@
-;;; magit-bisect.el --- bisect support for Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2011-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; Use a binary search to find the commit that introduced a bug.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Options
-
-(defcustom magit-bisect-show-graph t
-  "Whether to use `--graph' in the log showing commits yet to be bisected."
-  :package-version '(magit . "2.8.0")
-  :group 'magit-status
-  :type 'boolean)
-
-(defface magit-bisect-good
-  '((t :foreground "DarkOliveGreen"))
-  "Face for good bisect revisions."
-  :group 'magit-faces)
-
-(defface magit-bisect-skip
-  '((t :foreground "DarkGoldenrod"))
-  "Face for skipped bisect revisions."
-  :group 'magit-faces)
-
-(defface magit-bisect-bad
-  '((t :foreground "IndianRed4"))
-  "Face for bad bisect revisions."
-  :group 'magit-faces)
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-bisect-popup "magit-bisect" nil t)
-(magit-define-popup magit-bisect-popup
-  "Popup console for bisect commands."
-  :man-page "git-bisect"
-  :actions            '((?B "Start"        magit-bisect-start)
-                        (?s "Start script" magit-bisect-run))
-  :sequence-actions   '((?b "Bad"          magit-bisect-bad)
-                        (?g "Good"         magit-bisect-good)
-                        (?k "Skip"         magit-bisect-skip)
-                        (?r "Reset"        magit-bisect-reset)
-                        (?s "Run script"   magit-bisect-run))
-  :sequence-predicate 'magit-bisect-in-progress-p)
-
-;;;###autoload
-(defun magit-bisect-start (bad good)
-  "Start a bisect session.
-
-Bisecting a bug means to find the commit that introduced it.
-This command starts such a bisect session by asking for a know
-good and a bad commit.  To move the session forward use the
-other actions from the bisect popup (\
-\\<magit-status-mode-map>\\[magit-bisect-popup])."
-  (interactive (if (magit-bisect-in-progress-p)
-                   (user-error "Already bisecting")
-                 (magit-bisect-start-read-args)))
-  (unless (magit-rev-ancestor-p good bad)
-    (user-error
-     "The good revision (%s) has to be an ancestor of the bad one (%s)"
-     good bad))
-  (when (magit-anything-modified-p)
-    (user-error "Cannot bisect with uncommitted changes"))
-  (magit-git-bisect "start" (list bad good) t))
-
-(defun magit-bisect-start-read-args ()
-  (let  ((b (magit-read-branch-or-commit "Start bisect with bad revision")))
-    (list b (magit-read-other-branch-or-commit "Good revision" b))))
-
-;;;###autoload
-(defun magit-bisect-reset ()
-  "After bisecting, cleanup bisection state and return to original `HEAD'."
-  (interactive)
-  (magit-confirm 'reset-bisect)
-  (magit-run-git "bisect" "reset")
-  (ignore-errors (delete-file (magit-git-dir "BISECT_CMD_OUTPUT"))))
-
-;;;###autoload
-(defun magit-bisect-good ()
-  "While bisecting, mark the current commit as good.
-Use this after you have asserted that the commit does not contain
-the bug in question."
-  (interactive)
-  (magit-git-bisect "good"))
-
-;;;###autoload
-(defun magit-bisect-bad ()
-  "While bisecting, mark the current commit as bad.
-Use this after you have asserted that the commit does contain the
-bug in question."
-  (interactive)
-  (magit-git-bisect "bad"))
-
-;;;###autoload
-(defun magit-bisect-skip ()
-  "While bisecting, skip the current commit.
-Use this if for some reason the current commit is not a good one
-to test.  This command lets Git choose a different one."
-  (interactive)
-  (magit-git-bisect "skip"))
-
-;;;###autoload
-(defun magit-bisect-run (cmdline &optional bad good)
-  "Bisect automatically by running commands after each step.
-
-Unlike `git bisect run' this can be used before bisecting has
-begun.  In that case it behaves like `git bisect start; git
-bisect run'."
-  (interactive (let ((args (and (not (magit-bisect-in-progress-p))
-                                (magit-bisect-start-read-args))))
-                 (cons (read-shell-command "Bisect shell command: ") args)))
-  (when (and bad good)
-    (magit-bisect-start bad good))
-  (magit-git-bisect "run" (list shell-file-name shell-command-switch cmdline)))
-
-(defun magit-git-bisect (subcommand &optional args no-assert)
-  (unless (or no-assert (magit-bisect-in-progress-p))
-    (user-error "Not bisecting"))
-  (magit-with-toplevel
-    (magit-run-git-with-logfile
-     (magit-git-dir "BISECT_CMD_OUTPUT") "bisect" subcommand args)))
-
-;;; Sections
-
-(defun magit-bisect-in-progress-p ()
-  (file-exists-p (magit-git-dir "BISECT_LOG")))
-
-(defun magit-insert-bisect-output ()
-  "While bisecting, insert section with output from `git bisect'."
-  (when (magit-bisect-in-progress-p)
-    (let* ((lines
-            (or (magit-file-lines (magit-git-dir "BISECT_CMD_OUTPUT"))
-                (list "Bisecting: (no saved bisect output)"
-                      "It appears you have invoked `git bisect' from a shell."
-                      "There is nothing wrong with that, we just cannot display"
-                      "anything useful here.  Consult the shell output instead.")))
-           (done-re "^\\([a-z0-9]\\{40\\}\\) is the first bad commit$")
-           (bad-line (or (and (string-match done-re (car lines))
-                              (pop lines))
-                         (--first (string-match done-re it) lines))))
-      (magit-insert-section ((eval (if bad-line 'commit 'bisect-output))
-                             (and bad-line (match-string 1 bad-line)))
-        (magit-insert-heading
-          (propertize (or bad-line (pop lines))
-                      'face 'magit-section-heading))
-        (dolist (line lines)
-          (insert line "\n"))))
-    (insert "\n")))
-
-(defun magit-insert-bisect-rest ()
-  "While bisecting, insert section visualizing the bisect state."
-  (when (magit-bisect-in-progress-p)
-    (magit-insert-section (bisect-view)
-      (magit-insert-heading "Bisect Rest:")
-      (magit-git-wash (apply-partially 'magit-log-wash-log 'bisect-vis)
-        "bisect" "visualize" "git" "log"
-        "--format=%h%d%x00%s" "--decorate=full"
-        (and magit-bisect-show-graph "--graph")))))
-
-(defun magit-insert-bisect-log ()
-  "While bisecting, insert section logging bisect progress."
-  (when (magit-bisect-in-progress-p)
-    (magit-insert-section (bisect-log)
-      (magit-insert-heading "Bisect Log:")
-      (magit-git-wash #'magit-wash-bisect-log "bisect" "log")
-      (insert ?\n))))
-
-(defun magit-wash-bisect-log (_args)
-  (let (beg)
-    (while (progn (setq beg (point-marker))
-                  (re-search-forward "^\\(git bisect [^\n]+\n\\)" nil t))
-      (magit-bind-match-strings (heading) nil
-        (magit-delete-match)
-        (save-restriction
-          (narrow-to-region beg (point))
-          (goto-char (point-min))
-          (magit-insert-section (bisect-item heading t)
-            (insert (propertize heading 'face 'magit-section-secondary-heading))
-            (magit-insert-heading)
-            (magit-wash-sequence
-             (apply-partially 'magit-log-wash-rev 'bisect-log
-                              (magit-abbrev-length)))
-            (insert ?\n)))))
-    (when (re-search-forward
-           "# first bad commit: \\[\\([a-z0-9]\\{40\\}\\)\\] [^\n]+\n" nil t)
-      (magit-bind-match-strings (hash) nil
-        (magit-delete-match)
-        (magit-insert-section (bisect-item)
-          (insert hash " is the first bad commit\n"))))))
-
-;;; _
-(provide 'magit-bisect)
-;;; magit-bisect.el ends here
diff --git a/elpa/magit-20181116.1412/magit-bisect.elc b/elpa/magit-20181116.1412/magit-bisect.elc
deleted file mode 100644
index 305bc0c..0000000
--- a/elpa/magit-20181116.1412/magit-bisect.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-blame.el b/elpa/magit-20181116.1412/magit-blame.el
deleted file mode 100644
index 99351b7..0000000
--- a/elpa/magit-20181116.1412/magit-blame.el
+++ /dev/null
@@ -1,930 +0,0 @@
-;;; magit-blame.el --- blame support for Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2012-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; Annotates each line in file-visiting buffer with information from
-;; the revision which last modified the line.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-;;; Options
-
-(defgroup magit-blame nil
-  "Blame support for Magit."
-  :link '(info-link "(magit)Blaming")
-  :group 'magit-modes)
-
-(defcustom magit-blame-styles
-  '((headings
-     (heading-format   . "%-20a %C %s\n"))
-    (margin
-     (margin-format    . (" %s%f" " %C %a" " %H"))
-     (margin-width     . 42)
-     (margin-face      . magit-blame-margin)
-     (margin-body-face . (magit-blame-dimmed)))
-    (highlight
-     (highlight-face   . magit-blame-highlight))
-    (lines
-     (show-lines       . t)))
-  "List of styles used to visualize blame information.
-
-Each entry has the form (IDENT (KEY . VALUE)...).  IDENT has
-to be a symbol uniquely identifing the style.  The following
-KEYs are recognized:
-
- `show-lines'
-    Whether to prefix each chunk of lines with a thin line.
-    This has no effect if `heading-format' is non-nil.
- `highlight-face'
-    Face used to highlight the first line of each chunk.
-    If this is nil, then those lines are not highlighted.
- `heading-format'
-    String specifing the information to be shown above each
-    chunk of lines.  It must end with a newline character.
- `margin-format'
-    String specifing the information to be shown in the left
-    buffer margin.  It must NOT end with a newline character.
-    This can also be a list of formats used for the lines at
-    the same positions within the chunk.  If the chunk has
-    more lines than formats are specified, then the last is
-    repeated.
- `margin-width'
-    Width of the margin, provided `margin-format' is non-nil.
- `margin-face'
-    Face used in the margin, provided `margin-format' is
-    non-nil.  This face is used in combination with the faces
-    that are specific to the used %-specs.  If this is nil,
-    then `magit-blame-margin' is used.
- `margin-body-face'
-    Face used in the margin for all but first line of a chunk.
-    This face is used in combination with the faces that are
-    specific to the used %-specs.  This can also be a list of
-    faces (usually one face), in which case only these faces
-    are used and the %-spec faces are ignored.  A good value
-    might be `(magit-blame-dimmed)'.  If this is nil, then
-    the same face as for the first line is used.
-
-The following %-specs can be used in `heading-format' and
-`margin-format':
-
-  %H    hash              using face `magit-blame-hash'
-  %s    summary           using face `magit-blame-summary'
-  %a    author            using face `magit-blame-name'
-  %A    author time       using face `magit-blame-date'
-  %c    committer         using face `magit-blame-name'
-  %C    committer time    using face `magit-blame-date'
-
-Additionally if `margin-format' ends with %f, then the string
-that is displayed in the margin is made at least `margin-width'
-characters wide, which may be desirable if the used face sets
-the background color.
-
-The style used in the current buffer can be cycled from the blame
-popup.  Blame commands (except `magit-blame-echo') use the first
-style as the initial style when beginning to blame in a buffer."
-  :package-version '(magit . "2.13.0")
-  :group 'magit-blame
-  :type 'string)
-
-(defcustom magit-blame-echo-style 'lines
-  "The blame visualization style used by `magit-blame-echo'.
-A symbol that has to be used as the identifier for one of the
-styles defined in `magit-blame-styles'."
-  :package-version '(magit . "2.13.0")
-  :group 'magit-blame
-  :type 'symbol)
-
-(defcustom magit-blame-time-format "%F %H:%M"
-  "Format for time strings in blame headings."
-  :group 'magit-blame
-  :type 'string)
-
-(defcustom magit-blame-read-only t
-  "Whether to initially make the blamed buffer read-only."
-  :package-version '(magit . "2.13.0")
-  :group 'magit-blame
-  :type 'boolean)
-
-(defcustom magit-blame-disable-modes '(fci-mode yascroll-bar-mode)
-  "List of modes not compatible with Magit-Blame mode.
-This modes are turned off when Magit-Blame mode is turned on,
-and then turned on again when turning off the latter."
-  :group 'magit-blame
-  :type '(repeat (symbol :tag "Mode")))
-
-(defcustom magit-blame-mode-lighter " Blame"
-  "The mode-line lighter of the Magit-Blame mode."
-  :group 'magit-blame
-  :type '(choice (const :tag "No lighter" "") string))
-
-(defcustom magit-blame-goto-chunk-hook
-  '(magit-blame-maybe-update-revision-buffer
-    magit-blame-maybe-show-message)
-  "Hook run after point entered another chunk."
-  :package-version '(magit . "2.13.0")
-  :group 'magit-blame
-  :type 'hook
-  :get 'magit-hook-custom-get
-  :options '(magit-blame-maybe-update-revision-buffer
-             magit-blame-maybe-show-message))
-
-;;; Faces
-
-(defface magit-blame-highlight
-  '((((class color) (background light))
-     :background "grey80"
-     :foreground "black")
-    (((class color) (background dark))
-     :background "grey25"
-     :foreground "white"))
-  "Face used for highlighting when blaming.
-Also see option `magit-blame-styles'."
-  :group 'magit-faces)
-
-(defface magit-blame-margin
-  '((t :inherit magit-blame-highlight
-       :weight normal
-       :slant normal))
-  "Face used for the blame margin by default when blaming.
-Also see option `magit-blame-styles'."
-  :group 'magit-faces)
-
-(defface magit-blame-dimmed
-  '((t :inherit magit-dimmed
-       :weight normal
-       :slant normal))
-  "Face used for the blame margin in some cases when blaming.
-Also see option `magit-blame-styles'."
-  :group 'magit-faces)
-
-(defface magit-blame-heading
-  '((t :inherit magit-blame-highlight
-       :weight normal
-       :slant normal))
-  "Face used for blame headings by default when blaming.
-Also see option `magit-blame-styles'."
-  :group 'magit-faces)
-
-(defface magit-blame-summary nil
-  "Face used for commit summaries when blaming."
-  :group 'magit-faces)
-
-(defface magit-blame-hash nil
-  "Face used for commit hashes when blaming."
-  :group 'magit-faces)
-
-(defface magit-blame-name nil
-  "Face used for author and committer names when blaming."
-  :group 'magit-faces)
-
-(defface magit-blame-date nil
-  "Face used for dates when blaming."
-  :group 'magit-faces)
-
-;;; Chunks
-
-(defclass magit-blame-chunk ()
-  (;; <orig-rev> <orig-line> <final-line> <num-lines>
-   (orig-rev   :initarg :orig-rev)
-   (orig-line  :initarg :orig-line)
-   (final-line :initarg :final-line)
-   (num-lines  :initarg :num-lines)
-   ;; previous <prev-rev> <prev-file>
-   (prev-rev   :initform nil)
-   (prev-file  :initform nil)
-   ;; filename <orig-file>
-   (orig-file)))
-
-(defun magit-current-blame-chunk (&optional type)
-  (or (and (not (and type (not (eq type magit-blame-type))))
-           (magit-blame-chunk-at (point)))
-      (and type
-           (let ((rev  (or magit-buffer-refname magit-buffer-revision))
-                 (file (magit-file-relative-name nil (not magit-buffer-file-name)))
-                 (line (format "%i,+1" (line-number-at-pos))))
-             (unless file
-               (error "Buffer does not visit a tracked file"))
-             (with-temp-buffer
-               (magit-with-toplevel
-                 (magit-git-insert
-                  "blame" "--porcelain"
-                  (if (memq magit-blame-type '(final removal))
-                      (cons "--reverse" (magit-blame-arguments))
-                    (magit-blame-arguments))
-                  "-L" line rev "--" file)
-                 (goto-char (point-min))
-                 (car (magit-blame--parse-chunk type))))))))
-
-(defun magit-blame-chunk-at (pos)
-  (--some (overlay-get it 'magit-blame-chunk)
-          (overlays-at pos)))
-
-(defun magit-blame--overlay-at (&optional pos key)
-  (unless pos
-    (setq pos (point)))
-  (--first (overlay-get it (or key 'magit-blame-chunk))
-           (nconc (overlays-at pos)
-                  (overlays-in pos pos))))
-
-;;; Keymaps
-
-(defvar magit-blame-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map (kbd "C-c C-q") 'magit-blame-quit)
-    map)
-  "Keymap for `magit-blame-mode'.
-Note that most blaming key bindings are defined
-in `magit-blame-read-only-mode-map' instead.")
-
-(defvar magit-blame-read-only-mode-map
-  (let ((map (make-sparse-keymap)))
-    (cond ((featurep 'jkl)
-           (define-key map [return]    'magit-show-commit)
-           (define-key map (kbd   "i") 'magit-blame-previous-chunk)
-           (define-key map (kbd   "I") 'magit-blame-previous-chunk-same-commit)
-           (define-key map (kbd   "k") 'magit-blame-next-chunk)
-           (define-key map (kbd   "K") 'magit-blame-next-chunk-same-commit)
-           (define-key map (kbd   "j") 'magit-blame-addition)
-           (define-key map (kbd   "l") 'magit-blame-removal)
-           (define-key map (kbd   "f") 'magit-blame-reverse)
-           (define-key map (kbd   "b") 'magit-blame-popup))
-          (t
-           (define-key map (kbd "C-m") 'magit-show-commit)
-           (define-key map (kbd   "p") 'magit-blame-previous-chunk)
-           (define-key map (kbd   "P") 'magit-blame-previous-chunk-same-commit)
-           (define-key map (kbd   "n") 'magit-blame-next-chunk)
-           (define-key map (kbd   "N") 'magit-blame-next-chunk-same-commit)
-           (define-key map (kbd   "b") 'magit-blame-addition)
-           (define-key map (kbd   "r") 'magit-blame-removal)
-           (define-key map (kbd   "f") 'magit-blame-reverse)
-           (define-key map (kbd   "B") 'magit-blame-popup)))
-    (define-key map (kbd   "c") 'magit-blame-cycle-style)
-    (define-key map (kbd   "q") 'magit-blame-quit)
-    (define-key map (kbd "M-w") 'magit-blame-copy-hash)
-    (define-key map (kbd "SPC") 'magit-diff-show-or-scroll-up)
-    (define-key map (kbd "DEL") 'magit-diff-show-or-scroll-down)
-    map)
-  "Keymap for `magit-blame-read-only-mode'.")
-
-;;; Modes
-;;;; Variables
-
-(defvar-local magit-blame-buffer-read-only nil)
-(defvar-local magit-blame-cache nil)
-(defvar-local magit-blame-disabled-modes nil)
-(defvar-local magit-blame-process nil)
-(defvar-local magit-blame-recursive-p nil)
-(defvar-local magit-blame-type nil)
-(defvar-local magit-blame-separator nil)
-(defvar-local magit-blame-previous-chunk nil)
-
-(defvar-local magit-blame--style nil)
-
-(defsubst magit-blame--style-get (key)
-  (cdr (assoc key (cdr magit-blame--style))))
-
-;;;; Base Mode
-
-(define-minor-mode magit-blame-mode
-  "Display blame information inline."
-  :lighter magit-blame-mode-lighter
-  (cond (magit-blame-mode
-         (when (called-interactively-p 'any)
-           (setq magit-blame-mode nil)
-           (user-error
-            (concat "Don't call `magit-blame-mode' directly; "
-                    "instead use `magit-blame' or `magit-blame-popup'")))
-         (add-hook 'after-save-hook     'magit-blame--run t t)
-         (add-hook 'post-command-hook   'magit-blame-goto-chunk-hook t t)
-         (add-hook 'before-revert-hook  'magit-blame--remove-overlays t t)
-         (add-hook 'after-revert-hook   'magit-blame--run t t)
-         (add-hook 'read-only-mode-hook 'magit-blame-toggle-read-only t t)
-         (setq magit-blame-buffer-read-only buffer-read-only)
-         (when (or magit-blame-read-only magit-buffer-file-name)
-           (read-only-mode 1))
-         (dolist (mode magit-blame-disable-modes)
-           (when (and (boundp mode) (symbol-value mode))
-             (funcall mode -1)
-             (push mode magit-blame-disabled-modes)))
-         (setq magit-blame-separator (magit-blame--format-separator))
-         (unless magit-blame--style
-           (setq magit-blame--style (car magit-blame-styles)))
-         (magit-blame--update-margin))
-        (t
-         (when (process-live-p magit-blame-process)
-           (kill-process magit-blame-process)
-           (while magit-blame-process
-             (sit-for 0.01))) ; avoid racing the sentinal
-         (remove-hook 'after-save-hook     'magit-blame--run t)
-         (remove-hook 'post-command-hook   'magit-blame-goto-chunk-hook t)
-         (remove-hook 'before-revert-hook  'magit-blame--remove-overlays t)
-         (remove-hook 'after-revert-hook   'magit-blame--run t)
-         (remove-hook 'read-only-mode-hook 'magit-blame-toggle-read-only t)
-         (unless magit-blame-buffer-read-only
-           (read-only-mode -1))
-         (magit-blame-read-only-mode -1)
-         (dolist (mode magit-blame-disabled-modes)
-           (funcall mode 1))
-         (kill-local-variable 'magit-blame-disabled-modes)
-         (kill-local-variable 'magit-blame-type)
-         (kill-local-variable 'magit-blame--style)
-         (magit-blame--update-margin)
-         (magit-blame--remove-overlays))))
-
-(defun magit-blame-goto-chunk-hook ()
-  (let ((chunk (magit-blame-chunk-at (point))))
-    (when (cl-typep chunk 'magit-blame-chunk)
-      (unless (eq chunk magit-blame-previous-chunk)
-        (run-hooks 'magit-blame-goto-chunk-hook))
-      (setq magit-blame-previous-chunk chunk))))
-
-(defun magit-blame-toggle-read-only ()
-  (magit-blame-read-only-mode (if buffer-read-only 1 -1)))
-
-;;;; Read-Only Mode
-
-(define-minor-mode magit-blame-read-only-mode
-  "Provide keybindings for Magit-Blame mode.
-
-This minor-mode provides the key bindings for Magit-Blame mode,
-but only when Read-Only mode is also enabled because these key
-bindings would otherwise conflict badly with regular bindings.
-
-When both Magit-Blame mode and Read-Only mode are enabled, then
-this mode gets automatically enabled too and when one of these
-modes is toggled, then this mode also gets toggled automatically.
-
-\\{magit-blame-read-only-mode-map}")
-
-;;;; Kludges
-
-(defun magit-blame-put-keymap-before-view-mode ()
-  "Put `magit-blame-read-only-mode' ahead of `view-mode' in `minor-mode-map-alist'."
-  (--when-let (assq 'magit-blame-read-only-mode
-                    (cl-member 'view-mode minor-mode-map-alist :key #'car))
-    (setq minor-mode-map-alist
-          (cons it (delq it minor-mode-map-alist))))
-  (remove-hook 'view-mode-hook #'magit-blame-put-keymap-before-view-mode))
-
-(add-hook 'view-mode-hook #'magit-blame-put-keymap-before-view-mode)
-
-;;; Process
-
-(defun magit-blame--run ()
-  (magit-with-toplevel
-    (unless magit-blame-mode
-      (magit-blame-mode 1))
-    (message "Blaming...")
-    (magit-blame-run-process
-     (or magit-buffer-refname magit-buffer-revision)
-     (magit-file-relative-name nil (not magit-buffer-file-name))
-     (if (memq magit-blame-type '(final removal))
-         (cons "--reverse" (magit-blame-arguments))
-       (magit-blame-arguments))
-     (list (line-number-at-pos (window-start))
-           (line-number-at-pos (1- (window-end nil t)))))
-    (set-process-sentinel magit-this-process
-                          'magit-blame-process-quickstart-sentinel)))
-
-(defun magit-blame-run-process (revision file args &optional lines)
-  (let ((process (magit-parse-git-async
-                  "blame" "--incremental" args
-                  (and lines (list "-L" (apply #'format "%s,%s" lines)))
-                  revision "--" file)))
-    (set-process-filter   process 'magit-blame-process-filter)
-    (set-process-sentinel process 'magit-blame-process-sentinel)
-    (process-put process 'arguments (list revision file args))
-    (setq magit-blame-cache (make-hash-table :test 'equal))
-    (setq magit-blame-process process)))
-
-(defun magit-blame-process-quickstart-sentinel (process event)
-  (when (memq (process-status process) '(exit signal))
-    (magit-blame-process-sentinel process event t)
-    (magit-blame-assert-buffer process)
-    (with-current-buffer (process-get process 'command-buf)
-      (when magit-blame-mode
-        (let ((default-directory (magit-toplevel)))
-          (apply #'magit-blame-run-process
-                 (process-get process 'arguments)))))))
-
-(defun magit-blame-process-sentinel (process _event &optional quiet)
-  (let ((status (process-status process)))
-    (when (memq status '(exit signal))
-      (kill-buffer (process-buffer process))
-      (if (and (eq status 'exit)
-               (zerop (process-exit-status process)))
-          (unless quiet
-            (message "Blaming...done"))
-        (magit-blame-assert-buffer process)
-        (with-current-buffer (process-get process 'command-buf)
-          (if magit-blame-mode
-              (progn (magit-blame-mode -1)
-                     (message "Blaming...failed"))
-            (message "Blaming...aborted"))))
-      (kill-local-variable 'magit-blame-process))))
-
-(defun magit-blame-process-filter (process string)
-  (internal-default-process-filter process string)
-  (let ((buf  (process-get process 'command-buf))
-        (pos  (process-get process 'parsed))
-        (mark (process-mark process))
-        type cache)
-    (with-current-buffer buf
-      (setq type  magit-blame-type)
-      (setq cache magit-blame-cache))
-    (with-current-buffer (process-buffer process)
-      (goto-char pos)
-      (while (and (< (point) mark)
-                  (save-excursion (re-search-forward "^filename .+\n" nil t)))
-        (pcase-let* ((`(,chunk ,revinfo)
-                      (magit-blame--parse-chunk type))
-                     (rev (oref chunk orig-rev)))
-          (if revinfo
-              (puthash rev revinfo cache)
-            (setq revinfo
-                  (or (gethash rev cache)
-                      (puthash rev (magit-blame--commit-alist rev) cache))))
-          (magit-blame--make-overlays buf chunk revinfo))
-        (process-put process 'parsed (point))))))
-
-(defun magit-blame--parse-chunk (type)
-  (let (chunk revinfo)
-    (looking-at "^\\(.\\{40\\}\\) \\([0-9]+\\) \\([0-9]+\\) \\([0-9]+\\)")
-    (with-slots (orig-rev orig-file prev-rev prev-file)
-        (setq chunk (magit-blame-chunk
-                     :orig-rev                     (match-string 1)
-                     :orig-line  (string-to-number (match-string 2))
-                     :final-line (string-to-number (match-string 3))
-                     :num-lines  (string-to-number (match-string 4))))
-      (forward-line)
-      (let (done)
-        (while (not done)
-          (cond ((looking-at "^filename \\(.+\\)")
-                 (setq done t)
-                 (setf orig-file (match-string 1)))
-                ((looking-at "^previous \\(.\\{40\\}\\) \\(.+\\)")
-                 (setf prev-rev  (match-string 1))
-                 (setf prev-file (match-string 2)))
-                ((looking-at "^\\([^ ]+\\) \\(.+\\)")
-                 (push (cons (match-string 1)
-                             (match-string 2)) revinfo)))
-          (forward-line)))
-      (when (and (eq type 'removal) prev-rev)
-        (cl-rotatef orig-rev  prev-rev)
-        (cl-rotatef orig-file prev-file)
-        (setq revinfo nil)))
-    (list chunk revinfo)))
-
-(defun magit-blame--commit-alist (rev)
-  (cl-mapcar 'cons
-             '("summary"
-               "author" "author-time" "author-tz"
-               "committer" "committer-time" "committer-tz")
-             (split-string (magit-rev-format "%s\v%an\v%ad\v%cn\v%cd" rev
-                                             "--date=format:%s\v%z")
-                           "\v")))
-
-(defun magit-blame-assert-buffer (process)
-  (unless (buffer-live-p (process-get process 'command-buf))
-    (kill-process process)
-    (user-error "Buffer being blamed has been killed")))
-
-;;; Display
-
-(defun magit-blame--make-overlays (buf chunk revinfo)
-  (with-current-buffer buf
-    (save-excursion
-      (save-restriction
-        (widen)
-        (goto-char (point-min))
-        (forward-line (1- (oref chunk final-line)))
-        (let ((beg (point))
-              (end (save-excursion
-                     (forward-line (oref chunk num-lines))
-                     (point))))
-          (magit-blame--remove-overlays beg end)
-          (magit-blame--make-margin-overlays chunk revinfo beg end)
-          (magit-blame--make-heading-overlay chunk revinfo beg end)
-          (magit-blame--make-highlight-overlay   chunk beg))))))
-
-(defun magit-blame--make-margin-overlays (chunk revinfo _beg end)
-  (save-excursion
-    (let ((line 0))
-      (while (< (point) end)
-        (magit-blame--make-margin-overlay chunk revinfo line)
-        (forward-line)
-        (cl-incf line)))))
-
-(defun magit-blame--make-margin-overlay (chunk revinfo line)
-  (let* ((end (line-end-position))
-         ;; If possible avoid putting this on the first character
-         ;; of the line to avoid a conflict with the line overlay.
-         (beg (min (1+ (line-beginning-position)) end))
-         (ov  (make-overlay beg end)))
-    (overlay-put ov 'magit-blame-chunk chunk)
-    (overlay-put ov 'magit-blame-revinfo revinfo)
-    (overlay-put ov 'magit-blame-margin line)
-    (magit-blame--update-margin-overlay ov)))
-
-(defun magit-blame--make-heading-overlay (chunk revinfo beg end)
-  (let ((ov (make-overlay beg end)))
-    (overlay-put ov 'magit-blame-chunk chunk)
-    (overlay-put ov 'magit-blame-revinfo revinfo)
-    (overlay-put ov 'magit-blame-heading t)
-    (magit-blame--update-heading-overlay ov)))
-
-(defun magit-blame--make-highlight-overlay (chunk beg)
-  (let ((ov (make-overlay beg (1+ (line-end-position)))))
-    (overlay-put ov 'magit-blame-chunk chunk)
-    (overlay-put ov 'magit-blame-highlight t)
-    (magit-blame--update-highlight-overlay ov)))
-
-(defun magit-blame--update-margin ()
-  (setq left-margin-width (or (magit-blame--style-get 'margin-width) 0))
-  (set-window-buffer (selected-window) (current-buffer)))
-
-(defun magit-blame--update-overlays ()
-  (save-restriction
-    (widen)
-    (dolist (ov (overlays-in (point-min) (point-max)))
-      (cond ((overlay-get ov 'magit-blame-heading)
-             (magit-blame--update-heading-overlay ov))
-            ((overlay-get ov 'magit-blame-margin)
-             (magit-blame--update-margin-overlay ov))
-            ((overlay-get ov 'magit-blame-highlight)
-             (magit-blame--update-highlight-overlay ov))))))
-
-(defun magit-blame--update-margin-overlay (ov)
-  (overlay-put
-   ov 'before-string
-   (and (magit-blame--style-get 'margin-width)
-        (propertize
-         "o" 'display
-         (list (list 'margin 'left-margin)
-               (let ((line   (overlay-get ov 'magit-blame-margin))
-                     (format (magit-blame--style-get 'margin-format))
-                     (face   (magit-blame--style-get 'margin-face)))
-                 (magit-blame--format-string
-                  ov
-                  (or (and (atom format)
-                           format)
-                      (nth line format)
-                      (car (last format)))
-                  (or (and (not (zerop line))
-                           (magit-blame--style-get 'margin-body-face))
-                      face
-                      'magit-blame-margin))))))))
-
-(defun magit-blame--update-heading-overlay (ov)
-  (overlay-put
-   ov 'before-string
-   (--if-let (magit-blame--style-get 'heading-format)
-       (magit-blame--format-string ov it 'magit-blame-heading)
-     (and (magit-blame--style-get 'show-lines)
-          (or (not (magit-blame--style-get 'margin-format))
-              (save-excursion
-                (goto-char (overlay-start ov))
-                ;; Special case of the special case described in
-                ;; `magit-blame--make-margin-overlay'.  For empty
-                ;; lines it is not possible to show both overlays
-                ;; without the line being to high.
-                (not (= (point) (line-end-position)))))
-          magit-blame-separator))))
-
-(defun magit-blame--update-highlight-overlay (ov)
-  (overlay-put ov 'face (magit-blame--style-get 'highlight-face)))
-
-(defun magit-blame--format-string (ov format face)
-  (let* ((chunk   (overlay-get ov 'magit-blame-chunk))
-         (revinfo (overlay-get ov 'magit-blame-revinfo))
-         (key     (list format face))
-         (string  (cdr (assoc key revinfo))))
-    (unless string
-      (setq string
-            (and format
-                 (magit-blame--format-string-1 (oref chunk orig-rev)
-                                               revinfo format face)))
-      (nconc revinfo (list (cons key string))))
-    string))
-
-(defun magit-blame--format-string-1 (rev revinfo format face)
-  (let ((str
-         (if (equal rev "0000000000000000000000000000000000000000")
-             (propertize (concat (if (string-prefix-p "\s" format) "\s" "")
-                                 "Not Yet Committed"
-                                 (if (string-suffix-p "\n" format) "\n" ""))
-                         'face face)
-           (magit--format-spec
-            (propertize format 'face face)
-            (cl-flet* ((p0 (s f)
-                           (propertize s 'face (if face
-                                                   (if (listp face)
-                                                       face
-                                                     (list f face))
-                                                 f)))
-                       (p1 (k f)
-                           (p0 (cdr (assoc k revinfo)) f))
-                       (p2 (k1 k2 f)
-                           (p0 (magit-blame--format-time-string
-                                (cdr (assoc k1 revinfo))
-                                (cdr (assoc k2 revinfo)))
-                               f)))
-              `((?H . ,(p0 rev         'magit-blame-hash))
-                (?s . ,(p1 "summary"   'magit-blame-summary))
-                (?a . ,(p1 "author"    'magit-blame-name))
-                (?c . ,(p1 "committer" 'magit-blame-name))
-                (?A . ,(p2 "author-time"    "author-tz"    'magit-blame-date))
-                (?C . ,(p2 "committer-time" "committer-tz" 'magit-blame-date))
-                (?f . "")))))))
-    (if-let ((width (and (string-suffix-p "%f" format)
-                         (magit-blame--style-get 'margin-width))))
-        (concat str
-                (propertize (make-string (max 0 (- width (length str))) ?\s)
-                            'face face))
-      str)))
-
-(defun magit-blame--format-separator ()
-  (propertize
-   (concat (propertize "\s" 'display '(space :height (2)))
-           (propertize "\n" 'line-height t))
-   'face (list :background
-               (face-attribute 'magit-blame-heading :background nil t))))
-
-(defun magit-blame--format-time-string (time tz)
-  (let* ((time-format (or (magit-blame--style-get 'time-format)
-                          magit-blame-time-format))
-         (tz-in-second (and (not (version< emacs-version "25"))
-                            (string-match "%z" time-format)
-                            (car (last (parse-time-string tz))))))
-    (format-time-string time-format
-                        (seconds-to-time (string-to-number time))
-                        tz-in-second)))
-
-(defun magit-blame--remove-overlays (&optional beg end)
-  (save-restriction
-    (widen)
-    (dolist (ov (overlays-in (or beg (point-min))
-                             (or end (point-max))))
-      (when (overlay-get ov 'magit-blame-chunk)
-        (delete-overlay ov)))))
-
-(defun magit-blame-maybe-show-message ()
-  (when (magit-blame--style-get 'show-message)
-    (let ((message-log-max 0))
-      (if-let ((msg (cdr (assq 'heading
-                               (gethash (oref (magit-current-blame-chunk)
-                                              orig-rev)
-                                        magit-blame-cache)))))
-          (progn (setq msg (substring msg 0 -1))
-                 (set-text-properties 0 (length msg) nil msg)
-                 (message msg))
-        (message "Commit data not available yet.  Still blaming.")))))
-
-;;; Commands
-
-;;;###autoload
-(defun magit-blame-echo ()
-  "For each line show the revision in which it was added.
-Show the information about the chunk at point in the echo area
-when moving between chunks.  Unlike other blaming commands, do
-not turn on `read-only-mode'."
-  (interactive)
-  (when magit-buffer-file-name
-    (user-error "Blob buffers aren't supported"))
-  (setq-local magit-blame--style
-              (assq magit-blame-echo-style magit-blame-styles))
-  (setq-local magit-blame-disable-modes
-              (cons 'eldoc-mode magit-blame-disable-modes))
-  (if (not magit-blame-mode)
-      (let ((magit-blame-read-only nil))
-        (magit-blame-addition))
-    (read-only-mode -1)
-    (magit-blame--update-overlays)))
-
-;;;###autoload
-(defun magit-blame-addition ()
-  "For each line show the revision in which it was added."
-  (interactive)
-  (magit-blame--pre-blame-assert 'addition)
-  (magit-blame--pre-blame-setup  'addition)
-  (magit-blame--run))
-
-;;;###autoload
-(defun magit-blame-removal ()
-  "For each line show the revision in which it was removed."
-  (interactive)
-  (unless magit-buffer-file-name
-    (user-error "Only blob buffers can be blamed in reverse"))
-  (magit-blame--pre-blame-assert 'removal)
-  (magit-blame--pre-blame-setup  'removal)
-  (magit-blame--run))
-
-;;;###autoload
-(defun magit-blame-reverse ()
-  "For each line show the last revision in which it still exists."
-  (interactive)
-  (unless magit-buffer-file-name
-    (user-error "Only blob buffers can be blamed in reverse"))
-  (magit-blame--pre-blame-assert 'final)
-  (magit-blame--pre-blame-setup  'final)
-  (magit-blame--run))
-
-(defun magit-blame--pre-blame-assert (type)
-  (unless (magit-toplevel)
-    (magit--not-inside-repository-error))
-  (if (and magit-blame-mode
-           (eq type magit-blame-type))
-      (if-let ((chunk (magit-current-blame-chunk)))
-          (unless (oref chunk prev-rev)
-            (user-error "Chunk has no further history"))
-        (user-error "Commit data not available yet.  Still blaming."))
-    (unless (magit-file-relative-name nil (not magit-buffer-file-name))
-      (if buffer-file-name
-          (user-error "Buffer isn't visiting a tracked file")
-        (user-error "Buffer isn't visiting a file")))))
-
-(defun magit-blame--pre-blame-setup (type)
-  (when magit-blame-mode
-    (if (eq type magit-blame-type)
-        (let ((style magit-blame--style))
-          (magit-blame-visit-other-file)
-          (setq-local magit-blame--style style)
-          (setq-local magit-blame-recursive-p t)
-          ;; Set window-start for the benefit of quickstart.
-          (redisplay))
-      (magit-blame--remove-overlays)))
-  (setq magit-blame-type type))
-
-(defun magit-blame-visit-other-file ()
-  "Visit another blob related to the current chunk."
-  (interactive)
-  (with-slots (prev-rev prev-file orig-line)
-      (magit-current-blame-chunk)
-    (unless prev-rev
-      (user-error "Chunk has no further history"))
-    (magit-with-toplevel
-      (magit-find-file prev-rev prev-file))
-    ;; TODO Adjust line like magit-diff-visit-file.
-    (goto-char (point-min))
-    (forward-line (1- orig-line))))
-
-(defun magit-blame-visit-file ()
-  "Visit the blob related to the current chunk."
-  (interactive)
-  (with-slots (orig-rev orig-file orig-line)
-      (magit-current-blame-chunk)
-    (magit-with-toplevel
-      (magit-find-file orig-rev orig-file))
-    (goto-char (point-min))
-    (forward-line (1- orig-line))))
-
-(defun magit-blame-quit ()
-  "Turn off Magit-Blame mode.
-If the buffer was created during a recursive blame,
-then also kill the buffer."
-  (interactive)
-  (magit-blame-mode -1)
-  (when magit-blame-recursive-p
-    (kill-buffer)))
-
-(defun magit-blame-next-chunk ()
-  "Move to the next chunk."
-  (interactive)
-  (--if-let (next-single-char-property-change (point) 'magit-blame-chunk)
-      (goto-char it)
-    (user-error "No more chunks")))
-
-(defun magit-blame-previous-chunk ()
-  "Move to the previous chunk."
-  (interactive)
-  (--if-let (previous-single-char-property-change (point) 'magit-blame-chunk)
-      (goto-char it)
-    (user-error "No more chunks")))
-
-(defun magit-blame-next-chunk-same-commit (&optional previous)
-  "Move to the next chunk from the same commit.\n\n(fn)"
-  (interactive)
-  (if-let ((rev (oref (magit-current-blame-chunk) orig-rev)))
-      (let ((pos (point)) ov)
-        (save-excursion
-          (while (and (not ov)
-                      (not (= pos (if previous (point-min) (point-max))))
-                      (setq pos (funcall
-                                 (if previous
-                                     'previous-single-char-property-change
-                                   'next-single-char-property-change)
-                                 pos 'magit-blame-chunk)))
-            (--when-let (magit-blame--overlay-at pos)
-              (when (equal (oref (magit-blame-chunk-at pos) orig-rev) rev)
-                (setq ov it)))))
-        (if ov
-            (goto-char (overlay-start ov))
-          (user-error "No more chunks from same commit")))
-    (user-error "This chunk hasn't been blamed yet")))
-
-(defun magit-blame-previous-chunk-same-commit ()
-  "Move to the previous chunk from the same commit."
-  (interactive)
-  (magit-blame-next-chunk-same-commit 'previous-single-char-property-change))
-
-(defun magit-blame-cycle-style ()
-  "Change how blame information is visualized.
-Cycle through the elements of option `magit-blame-styles'."
-  (interactive)
-  (setq magit-blame--style
-        (or (cadr (cl-member (car magit-blame--style)
-                             magit-blame-styles :key #'car))
-            (car magit-blame-styles)))
-  (magit-blame--update-margin)
-  (magit-blame--update-overlays))
-
-(defun magit-blame-copy-hash ()
-  "Save hash of the current chunk's commit to the kill ring.
-
-When the region is active, then save the region's content
-instead of the hash, like `kill-ring-save' would."
-  (interactive)
-  (if (use-region-p)
-      (copy-region-as-kill nil nil 'region)
-    (kill-new (message "%s" (oref (magit-current-blame-chunk) orig-rev)))))
-
-;;; Popup
-
-;;;###autoload (autoload 'magit-blame-popup "magit-blame" nil t)
-(magit-define-popup magit-blame-popup
-  "Popup console for blame commands."
-  :man-page "git-blame"
-  :switches '((?w "Ignore whitespace" "-w")
-              (?r "Do not treat root commits as boundaries" "--root"))
-  :options  '((?M "Detect lines moved or copied within a file" "-M")
-              (?C "Detect lines moved or copied between files" "-C"))
-  :actions  '("Actions"
-              (?b "Show commits adding lines" magit-blame-addition)
-              (?r (lambda ()
-                    (with-current-buffer magit-pre-popup-buffer
-                      (and (not buffer-file-name)
-                           (propertize "Show commits removing lines"
-                                       'face 'default))))
-                  magit-blame-removal)
-              (?f (lambda ()
-                    (with-current-buffer magit-pre-popup-buffer
-                      (and (not buffer-file-name)
-                           (propertize "Show last commits that still have lines"
-                                       'face 'default))))
-                  magit-blame-reverse)
-              (lambda ()
-                (and (with-current-buffer magit-pre-popup-buffer
-                       magit-blame-mode)
-                     (propertize "Refresh" 'face 'magit-popup-heading)))
-              (?c "Cycle style" magit-blame-cycle-style))
-  :default-arguments '("-w")
-  :max-action-columns 1
-  :default-action 'magit-blame-addition)
-
-;;; Utilities
-
-(defun magit-blame-maybe-update-revision-buffer ()
-  (unless magit--update-revision-buffer
-    (setq magit--update-revision-buffer nil)
-    (when-let ((chunk  (magit-current-blame-chunk))
-               (commit (oref chunk orig-rev))
-               (buffer (magit-mode-get-buffer 'magit-revision-mode nil t)))
-      (setq magit--update-revision-buffer (list commit buffer))
-      (run-with-idle-timer
-       magit-update-other-window-delay nil
-       (lambda ()
-         (pcase-let ((`(,rev ,buf) magit--update-revision-buffer))
-           (setq magit--update-revision-buffer nil)
-           (when (buffer-live-p buf)
-             (let ((magit-display-buffer-noselect t))
-               (apply #'magit-show-commit rev (magit-diff-arguments))))))))))
-
-;;; _
-(provide 'magit-blame)
-;;; magit-blame.el ends here
diff --git a/elpa/magit-20181116.1412/magit-blame.elc b/elpa/magit-20181116.1412/magit-blame.elc
deleted file mode 100644
index 1c02ee6..0000000
--- a/elpa/magit-20181116.1412/magit-blame.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-bookmark.el b/elpa/magit-20181116.1412/magit-bookmark.el
deleted file mode 100644
index 047132d..0000000
--- a/elpa/magit-20181116.1412/magit-bookmark.el
+++ /dev/null
@@ -1,371 +0,0 @@
-;;; magit-bookmark.el --- bookmark support for Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Yuri Khan <yuri.v.khan@gmail.com>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; Support for bookmarks for most Magit buffers.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-(require 'bookmark)
-
-;;; Supporting primitives
-
-(defun magit-bookmark--jump (bookmark fn &rest args)
-  "Handle a Magit BOOKMARK.
-
-This function will:
-
-1. Bind `default-directory' to the repository root directory
-   stored in the `filename' bookmark property.
-2. Invoke the function FN with ARGS as arguments.  This needs to
-   restore the buffer.
-3. Restore the expanded/collapsed status of top level sections
-   and the point position."
-  (declare (indent 2))
-  (let* ((default-directory (bookmark-get-filename bookmark)))
-    (if default-directory
-        (apply fn args)
-      (signal 'bookmark-error-no-filename (list 'stringp default-directory)))
-    (when (derived-mode-p 'magit-mode)
-      (when-let ((hidden-sections (bookmark-prop-get bookmark
-                                                     'magit-hidden-sections)))
-        (dolist (child (oref magit-root-section children))
-          (if (member (cons (oref child type)
-                            (oref child value))
-                      hidden-sections)
-              (magit-section-hide child)
-            (magit-section-show child)))))
-    (--when-let (bookmark-get-position bookmark)
-      (goto-char it))
-    (--when-let (bookmark-get-front-context-string bookmark)
-      (when (search-forward it (point-max) t)
-        (goto-char (match-beginning 0))))
-    (--when-let (bookmark-get-rear-context-string bookmark)
-      (when (search-backward it (point-min) t)
-        (goto-char (match-end 0))))
-    nil))
-
-(defun magit-bookmark--make-record (mode handler &optional make-props)
-  "Create a Magit bookmark.
-
-MODE specifies the expected major mode of current buffer.
-
-HANDLER should be a function that will be used to restore this
-buffer.
-
-MAKE-PROPS should be either nil or a function that will be called
-with `magit-refresh-args' as the argument list, and may return an
-alist whose every element has the form (PROP . VALUE) and
-specifies additional properties to store in the bookmark."
-  (declare (indent 1))
-  (unless (eq major-mode mode)
-    (user-error "Not in a %s buffer" mode))
-  (let ((bookmark (bookmark-make-record-default 'no-file)))
-    (bookmark-prop-set bookmark 'handler handler)
-    (bookmark-set-filename bookmark (magit-toplevel))
-    (when (derived-mode-p 'magit-mode)
-      (bookmark-prop-set
-       bookmark 'magit-hidden-sections
-       (--map (cons (oref it type)
-                    (oref it value))
-              (--filter (oref it hidden)
-                        (oref magit-root-section children)))))
-    (when make-props
-      (pcase-dolist (`(,prop . ,value) (apply make-props magit-refresh-args))
-        (bookmark-prop-set bookmark prop value)))
-    bookmark))
-
-;;; Status
-
-;;;###autoload
-(defun magit-bookmark--status-jump (bookmark)
-  "Handle a Magit status BOOKMARK."
-  (magit-bookmark--jump bookmark
-      (lambda () (magit-status-internal default-directory))))
-
-;;;###autoload
-(defun magit-bookmark--status-make-record ()
-  "Create a Magit status bookmark."
-  (magit-bookmark--make-record 'magit-status-mode
-    #'magit-bookmark--status-jump))
-
-;;; Refs
-
-;;;###autoload
-(defun magit-bookmark--refs-jump (bookmark)
-  "Handle a Magit refs BOOKMARK."
-  (magit-bookmark--jump bookmark #'magit-show-refs
-    (bookmark-prop-get bookmark 'magit-refs)
-    (bookmark-prop-get bookmark 'magit-args)))
-
-;;;###autoload
-(defun magit-bookmark--refs-make-record ()
-  "Create a Magit refs bookmark."
-  (magit-bookmark--make-record 'magit-refs-mode
-    #'magit-bookmark--refs-jump
-    (lambda (refs args)
-      `((magit-refs . ,refs)
-        (magit-args . ,args)))))
-
-;;; Log
-
-;;;###autoload
-(defun magit-bookmark--log-jump (bookmark)
-  "Handle a Magit log BOOKMARK."
-  (magit-bookmark--jump bookmark #'magit-log-other
-    (bookmark-prop-get bookmark 'magit-revs)
-    (bookmark-prop-get bookmark 'magit-args)
-    (bookmark-prop-get bookmark 'magit-files)))
-
-(defun magit-bookmark--log-make-name (buffer-name revs _args files)
-  "Generate the default name for a log bookmark."
-  (concat
-   buffer-name " " (mapconcat #'identity revs " ")
-   (and files
-        (concat " touching " (mapconcat #'identity files " ")))))
-
-;;;###autoload
-(defun magit-bookmark--log-make-record ()
-  "Create a Magit log bookmark."
-  (magit-bookmark--make-record 'magit-log-mode
-    #'magit-bookmark--log-jump
-    (lambda (revs args files)
-      `((defaults    . (,(magit-bookmark--log-make-name
-                          (buffer-name) revs args files)))
-        (magit-revs  . ,revs)
-        (magit-args  . ,args)
-        (magit-files . ,files)))))
-
-;;; Reflog
-
-;;;###autoload
-(defun magit-bookmark--reflog-jump (bookmark)
-  "Handle a Magit reflog BOOKMARK."
-  (magit-bookmark--jump bookmark
-      (lambda ()
-        (let ((magit-reflog-arguments (bookmark-prop-get bookmark 'magit-args)))
-          (magit-git-reflog (bookmark-prop-get bookmark 'magit-ref)
-                            magit-reflog-arguments)))))
-
-(defun magit-bookmark--reflog-make-name (buffer-name ref)
-  "Generate the default name for a reflog bookmark."
-  (concat buffer-name " " ref))
-
-;;;###autoload
-(defun magit-bookmark--reflog-make-record ()
-  "Create a Magit reflog bookmark."
-  (magit-bookmark--make-record 'magit-reflog-mode
-    #'magit-bookmark--reflog-jump
-    (lambda (ref args)
-      `((defaults   . (,(magit-bookmark--reflog-make-name (buffer-name) ref)))
-        (magit-ref  . ,ref)
-        (magit-args . ,args)))))
-
-;;; Stashes
-
-;;;###autoload
-(defun magit-bookmark--stashes-jump (bookmark)
-  "Handle a Magit stash list BOOKMARK."
-  (magit-bookmark--jump bookmark #'magit-stash-list))
-
-;;;###autoload
-(defun magit-bookmark--stashes-make-record ()
-  "Create a Magit stash list bookmark."
-  (magit-bookmark--make-record 'magit-stashes-mode
-    #'magit-bookmark--stashes-jump))
-
-;;; Cherry
-
-;;;###autoload
-(defun magit-bookmark--cherry-jump (bookmark)
-  "Handle a Magit cherry BOOKMARK."
-  (magit-bookmark--jump bookmark #'magit-cherry
-    (bookmark-prop-get bookmark 'magit-head)
-    (bookmark-prop-get bookmark 'magit-upstream)))
-
-(defun magit-bookmark--cherry-make-name (buffer-name head upstream)
-  "Generate the default name for a cherry bookmark."
-  (concat buffer-name " " head " upstream " upstream))
-
-;;;###autoload
-(defun magit-bookmark--cherry-make-record ()
-  "Create a Magit cherry bookmark."
-  (magit-bookmark--make-record 'magit-cherry-mode
-    #'magit-bookmark--cherry-jump
-    (lambda (upstream head)
-      `((defaults       . (,(magit-bookmark--cherry-make-name
-                             (buffer-name) head upstream)))
-        (magit-head     . ,head)
-        (magit-upstream . ,upstream)))))
-
-;;; Diff
-
-;;;###autoload
-(defun magit-bookmark--diff-jump (bookmark)
-  "Handle a Magit diff BOOKMARK."
-  (magit-bookmark--jump bookmark #'magit-diff-setup
-    (bookmark-prop-get bookmark 'magit-rev-or-range)
-    (bookmark-prop-get bookmark 'magit-const)
-    (bookmark-prop-get bookmark 'magit-args)
-    (bookmark-prop-get bookmark 'magit-files)))
-
-(defun magit-bookmark--resolve (rev-or-range)
-  "Return REV-OR-RANGE with ref names resolved to commit hashes."
-  (pcase (magit-git-lines "rev-parse" rev-or-range)
-    (`(,rev)
-     (magit-rev-abbrev rev))
-    ((and `(,rev1 ,rev2)
-          (guard (/= ?^ (aref rev1 0)))
-          (guard (=  ?^ (aref rev2 0))))
-     (concat (magit-rev-abbrev (substring rev2 1))
-             ".."
-             (magit-rev-abbrev rev1)))
-    ((and `(,rev1 ,rev2 ,rev3)
-          (guard (/= ?^ (aref rev1 0)))
-          (guard (/= ?^ (aref rev2 0)))
-          (guard (=  ?^ (aref rev3 0))))
-     (ignore rev3)
-     (concat (magit-rev-abbrev rev1)
-             "..."
-             (magit-rev-abbrev rev2)))
-    (_
-     rev-or-range)))
-
-(defun magit-bookmark--diff-make-name
-    (buffer-name rev-or-range const _args files)
-  "Generate a default name for a diff bookmark."
-  (if (member "--no-index" const)
-      (apply #'format "*magit-diff %s %s" files)
-    (concat buffer-name " "
-            (cond (rev-or-range)
-                  ((member "--cached" const) "staged")
-                  (t                       "unstaged"))
-            (when files
-              (concat " in " (mapconcat #'identity files ", "))))))
-
-;;;###autoload
-(defun magit-bookmark--diff-make-record ()
-  "Create a Magit diff bookmark."
-  (magit-bookmark--make-record 'magit-diff-mode
-    #'magit-bookmark--diff-jump
-    (lambda (rev-or-range const args files)
-      (let ((resolved (magit-bookmark--resolve rev-or-range)))
-        `((defaults           . (,(magit-bookmark--diff-make-name
-                                   (buffer-name) resolved const args files)))
-          (magit-rev-or-range . ,resolved)
-          (magit-const        . ,const)
-          (magit-args         . ,args)
-          (magit-files        . ,files))))))
-
-;;; Revision
-
-;;;###autoload
-(defun magit-bookmark--revision-jump (bookmark)
-  "Handle a Magit revision BOOKMARK."
-  (magit-bookmark--jump bookmark #'magit-show-commit
-    (bookmark-prop-get bookmark 'magit-rev)
-    (bookmark-prop-get bookmark 'args)
-    (bookmark-prop-get bookmark 'files)))
-
-(defun magit-bookmark--revision-make-name (buffer-name rev _args files)
-  "Generate a default name for a revision bookmark."
-  (let ((subject (magit-rev-format "%s" rev)))
-    (concat buffer-name " "
-            (magit-rev-abbrev rev)
-            (cond (files   (concat " " (mapconcat #'identity files " ")))
-                  (subject (concat " " subject))))))
-
-;;;###autoload
-(defun magit-bookmark--revision-make-record ()
-  "Create a Magit revision bookmark."
-  ;; magit-refresh-args stores the revision in relative form.
-  ;; For bookmarks, the exact hash is more appropriate.
-  (magit-bookmark--make-record 'magit-revision-mode
-    #'magit-bookmark--revision-jump
-    (lambda (_rev _ args files)
-      `((defaults    . (,(magit-bookmark--revision-make-name
-                          (buffer-name) magit-buffer-revision-hash
-                          args files)))
-        (magit-rev   . ,magit-buffer-revision-hash)
-        (magit-args  . ,args)
-        (magit-files . ,files)))))
-
-;;; Stash
-
-;;;###autoload
-(defun magit-bookmark--stash-jump (bookmark)
-  "Handle a Magit stash BOOKMARK."
-  (magit-bookmark--jump bookmark #'magit-stash-show
-    (bookmark-prop-get bookmark 'magit-stash)
-    (bookmark-prop-get bookmark 'magit-args)
-    (bookmark-prop-get bookmark 'magit-files)))
-
-(defun magit-bookmark--stash-make-name (buffer-name stash _args files)
-  "Generate the default name for a stash bookmark."
-  (concat buffer-name " " stash " "
-          (if files
-              (mapconcat #'identity files " ")
-            (magit-rev-format "%s" stash))))
-
-;;;###autoload
-(defun magit-bookmark--stash-make-record ()
-  "Create a Magit stash bookmark."
-  (magit-bookmark--make-record 'magit-stash-mode
-    #'magit-bookmark--stash-jump
-    (lambda (stash _ args files)
-      `((defaults    . (,(magit-bookmark--stash-make-name
-                          (buffer-name)
-                          (magit-rev-abbrev magit-buffer-revision-hash)
-                          args files)))
-        (magit-stash . ,magit-buffer-revision-hash)
-        (magit-args  . ,args)
-        (magit-files . ,files)
-        (magit-hidden-sections
-         . ,(--map `(,(oref it type)
-                     . ,(replace-regexp-in-string (regexp-quote stash)
-                                                  magit-buffer-revision-hash
-                                                  (oref it value)))
-                   (--filter (oref it hidden)
-                             (oref magit-root-section children))))))))
-
-;;; Submodules
-
-;;;###autoload
-(defun magit-bookmark--submodules-jump (bookmark)
-  "Handle a Magit submodule list BOOKMARK."
-  (magit-bookmark--jump bookmark #'magit-list-submodules))
-
-;;;###autoload
-(defun magit-bookmark--submodules-make-record ()
-  "Create a Magit submodule list bookmark."
-  (magit-bookmark--make-record 'magit-submodule-list-mode
-    #'magit-bookmark--submodules-jump))
-
-;;; _
-(provide 'magit-bookmark)
-;;; magit-bookmark.el ends here
diff --git a/elpa/magit-20181116.1412/magit-bookmark.elc b/elpa/magit-20181116.1412/magit-bookmark.elc
deleted file mode 100644
index 5b59abf..0000000
--- a/elpa/magit-20181116.1412/magit-bookmark.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-branch.el b/elpa/magit-20181116.1412/magit-branch.el
deleted file mode 100644
index 7adea0d..0000000
--- a/elpa/magit-20181116.1412/magit-branch.el
+++ /dev/null
@@ -1,1091 +0,0 @@
-;;; magit-branch.el --- branch support  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for branches.  It defines popups
-;; and commands for creating, checking out, manipulating, and
-;; configuring branches.  Commands defined here are mainly concerned
-;; with branches as pointers, commands that deal with what a branch
-;; points at, are defined elsewhere.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-(require 'magit-collab)
-(require 'magit-reset)
-
-;;; Options
-
-(defcustom magit-branch-read-upstream-first t
-  "Whether to read upstream before name of new branch when creating a branch.
-
-`nil'      Read the branch name first.
-`t'        Read the upstream first.
-`fallback' Read the upstream first, but if it turns out that the chosen
-           value is not a valid upstream (because it cannot be resolved
-           as an existing revision), then treat it as the name of the
-           new branch and continue by reading the upstream next."
-  :package-version '(magit . "2.2.0")
-  :group 'magit-commands
-  :type '(choice (const :tag "read branch name first" nil)
-                 (const :tag "read upstream first" t)
-                 (const :tag "read upstream first, with fallback" fallback)))
-
-(defcustom magit-branch-prefer-remote-upstream nil
-  "Whether to favor remote upstreams when creating new branches.
-
-When a new branch is created, then the branch, commit, or stash
-at point is suggested as the default starting point of the new
-branch, or if there is no such revision at point the current
-branch.  In either case the user may choose another starting
-point.
-
-If the chosen starting point is a branch, then it may also be set
-as the upstream of the new branch, depending on the value of the
-Git variable `branch.autoSetupMerge'.  By default this is done
-for remote branches, but not for local branches.
-
-You might prefer to always use some remote branch as upstream.
-If the chosen starting point is (1) a local branch, (2) whose
-name matches a member of the value of this option, (3) the
-upstream of that local branch is a remote branch with the same
-name, and (4) that remote branch can be fast-forwarded to the
-local branch, then the chosen branch is used as starting point,
-but its own upstream is used as the upstream of the new branch.
-
-Members of this option's value are treated as branch names that
-have to match exactly unless they contain a character that makes
-them invalid as a branch name.  Recommended characters to use
-to trigger interpretation as a regexp are \"*\" and \"^\".  Some
-other characters which you might expect to be invalid, actually
-are not, e.g. \".+$\" are all perfectly valid.  More precisely,
-if `git check-ref-format --branch STRING' exits with a non-zero
-status, then treat STRING as a regexp.
-
-Assuming the chosen branch matches these conditions you would end
-up with with e.g.:
-
-  feature --upstream--> origin/master
-
-instead of
-
-  feature --upstream--> master --upstream--> origin/master
-
-Which you prefer is a matter of personal preference.  If you do
-prefer the former, then you should add branches such as \"master\",
-\"next\", and \"maint\" to the value of this options."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-commands
-  :type '(repeat string))
-
-(defcustom magit-branch-adjust-remote-upstream-alist nil
-  "Alist of upstreams to be used when branching from remote branches.
-
-When creating a local branch from an ephemeral branch located
-on a remote, e.g. a feature or hotfix branch, then that remote
-branch should usually not be used as the upstream branch, since
-the push-remote already allows accessing it and having both the
-upstream and the push-remote reference the same related branch
-would be wasteful.  Instead a branch like \"maint\" or \"master\"
-should be used as the upstream.
-
-This option allows specifing the branch that should be used as
-the upstream when branching certain remote branches.  The value
-is an alist of the form ((UPSTREAM . RULE)...).  The first
-matching element is used, the following elements are ignored.
-
-UPSTREAM is the branch to be used as the upstream for branches
-specified by RULE.  It can be a local or a remote branch.
-
-RULE can either be a regular expression, matching branches whose
-upstream should be the one specified by UPSTREAM.  Or it can be
-a list of the only branches that should *not* use UPSTREAM; all
-other branches will.  Matching is done after stripping the remote
-part of the name of the branch that is being branched from.
-
-If you use a finite set of non-ephemeral branches across all your
-repositories, then you might use something like:
-
-  ((\"origin/master\" \"master\" \"next\" \"maint\"))
-
-Or if the names of all your ephemeral branches contain a slash,
-at least in some repositories, then a good value could be:
-
-  ((\"origin/master\" . \"/\"))
-
-Of course you can also fine-tune:
-
-  ((\"origin/maint\" . \"\\\\\\=`hotfix/\")
-   (\"origin/master\" . \"\\\\\\=`feature/\"))
-
-If you use remote branches as UPSTREAM, then you might also want
-to set `magit-branch-prefer-remote-upstream' to a non-nil value.
-However, I recommend that you use local branches as UPSTREAM."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-commands
-  :type '(repeat (cons (string :tag "Use upstream")
-                       (choice :tag "for branches"
-                               (regexp :tag "matching")
-                               (repeat :tag "except"
-                                       (string :tag "branch"))))))
-
-(defcustom magit-branch-rename-push-target t
-  "Whether the push-remote setup is preserved when renaming a branch.
-
-The command `magit-branch-rename' renames a branch named OLD to
-NEW.  This option controls how much of the push-remote setup is
-preserved when doing so.
-
-When nil, then preserve nothing and unset `branch.OLD.pushRemote'.
-
-When `local-only', then first set `branch.NEW.pushRemote' to the
-  same value as `branch.OLD.pushRemote', provided the latter is
-  actually set and unless the former already has another value.
-
-When t, then rename the branch named OLD on the remote specified
-  by `branch.OLD.pushRemote' to NEW, provided OLD exists on that
-  remote and unless NEW already exists on the remote.
-
-When `forge-only' and the `forge' package is available, then
-  behave like `t' if the remote points to a repository on a forge
-  (currently Github or Gitlab), otherwise like `local-only'.
-
-Another supported but obsolete value is `github-only'.  It is a
-  misnomer because it now treated as an alias for `forge-only'."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-commands
-  :type '(choice
-          (const :tag "Don't preserve push-remote setup" nil)
-          (const :tag "Preserve push-remote setup" local-only)
-          (const :tag "... and rename corresponding branch on remote" t)
-          (const :tag "... but only if remote is on a forge" forge-only)))
-
-(defcustom magit-branch-popup-show-variables t
-  "Whether the `magit-branch-popup' shows Git variables.
-This defaults to t to avoid changing key bindings.  When set to
-nil, no variables are displayed directly in this popup, instead
-the sub-popup `magit-branch-config-popup' has to be used to view
-and change branch related variables."
-  :package-version '(magit . "2.7.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-published-branches '("origin/master")
-  "List of branches that are considered to be published."
-  :package-version '(magit . "2.13.0")
-  :group 'magit-commands
-  :type '(repeat string))
-
-;;; Branch Popup
-
-(defvar magit-branch-config-variables)
-
-;;;###autoload (autoload 'magit-branch-popup "magit" nil t)
-(magit-define-popup magit-branch-popup
-  "Popup console for branch commands."
-  :man-page "git-branch"
-  :variables (lambda ()
-               (and magit-branch-popup-show-variables
-                    magit-branch-config-variables))
-  :actions `((?b "Checkout"              magit-checkout) nil
-             (?C "Configure..."          magit-branch-config-popup)
-             (?l "Checkout local branch" magit-branch-checkout)
-             (?s "Create new spin-off"   magit-branch-spinoff)
-             (?m "Rename"                magit-branch-rename)
-             (?c "Checkout new branch"   magit-branch-and-checkout)
-             (?n "Create new branch"     magit-branch-create)
-             (?x "Reset"                 magit-branch-reset)
-             (?w "Checkout new worktree" magit-worktree-checkout)
-             (?W "Create new worktree"   magit-worktree-branch)
-             (?k "Delete"                magit-branch-delete)
-             ,@(and (not (require (quote forge) nil t))
-                    '((?y "Checkout pull-request"    magit-checkout-pull-request)
-                      (?Y "Create from pull-request" magit-branch-pull-request))))
-  :default-action 'magit-checkout
-  :max-action-columns 3
-  :setup-function 'magit-branch-popup-setup)
-
-(defun magit-branch-popup-setup (val def)
-  (magit-popup-default-setup val def)
-  (use-local-map (copy-keymap magit-popup-mode-map))
-  (dolist (ev (-filter #'magit-popup-event-p (magit-popup-get :variables)))
-    (local-set-key (vector (magit-popup-event-key ev))
-                   'magit-invoke-popup-action)))
-
-;;; Branch Commands
-
-;;;###autoload
-(defun magit-checkout (revision)
-  "Checkout REVISION, updating the index and the working tree.
-If REVISION is a local branch, then that becomes the current
-branch.  If it is something else, then `HEAD' becomes detached.
-Checkout fails if the working tree or the staging area contain
-changes.
-\n(git checkout REVISION)."
-  (interactive (list (magit-read-other-branch-or-commit "Checkout")))
-  (when (string-match "\\`heads/\\(.+\\)" revision)
-    (setq revision (match-string 1 revision)))
-  (magit-run-git "checkout" revision))
-
-;;;###autoload
-(defun magit-branch-create (branch start-point &optional args)
-  "Create BRANCH at branch or revision START-POINT.
-\n(git branch [ARGS] BRANCH START-POINT)."
-  (interactive (magit-branch-read-args "Create branch"))
-  (magit-call-git "branch" args branch start-point)
-  (magit-branch-maybe-adjust-upstream branch start-point)
-  (magit-refresh))
-
-;;;###autoload
-(defun magit-branch-and-checkout (branch start-point &optional args)
-  "Create and checkout BRANCH at branch or revision START-POINT.
-\n(git checkout [ARGS] -b BRANCH START-POINT)."
-  (interactive (magit-branch-read-args "Create and checkout branch"))
-  (if (string-match-p "^stash@{[0-9]+}$" start-point)
-      (magit-run-git "stash" "branch" branch start-point)
-    (magit-call-git "checkout" args "-b" branch start-point)
-    (magit-branch-maybe-adjust-upstream branch start-point)
-    (magit-refresh)))
-
-;;;###autoload
-(defun magit-branch-or-checkout (arg &optional start-point)
-  "Hybrid between `magit-checkout' and `magit-branch-and-checkout'.
-
-Ask the user for an existing branch or revision.  If the user
-input actually can be resolved as a branch or revision, then
-check that out, just like `magit-checkout' would.
-
-Otherwise create and checkout a new branch using the input as
-its name.  Before doing so read the starting-point for the new
-branch.  This is similar to what `magit-branch-and-checkout'
-does."
-  (interactive
-   (let ((arg (magit-read-other-branch-or-commit "Checkout")))
-     (list arg
-           (and (not (magit-rev-verify-commit arg))
-                (magit-read-starting-point "Create and checkout branch" arg)))))
-  (when (string-match "\\`heads/\\(.+\\)" arg)
-    (setq arg (match-string 1 arg)))
-  (if start-point
-      (magit-branch-and-checkout arg start-point (magit-branch-arguments))
-    (magit-checkout arg)))
-
-;;;###autoload
-(defun magit-branch-checkout (branch &optional start-point)
-  "Checkout an existing or new local branch.
-
-Read a branch name from the user offering all local branches and
-a subset of remote branches as candidates.  Omit remote branches
-for which a local branch by the same name exists from the list
-of candidates.  The user can also enter a completely new branch
-name.
-
-- If the user selects an existing local branch, then check that
-  out.
-
-- If the user selects a remote branch, then create and checkout
-  a new local branch with the same name.  Configure the selected
-  remote branch as push target.
-
-- If the user enters a new branch name, then create and check
-  that out, after also reading the starting-point from the user.
-
-In the latter two cases the upstream is also set.  Whether it is
-set to the chosen START-POINT or something else depends on the
-value of `magit-branch-adjust-remote-upstream-alist', just like
-when using `magit-branch-and-checkout'."
-  (interactive
-   (let* ((current (magit-get-current-branch))
-          (local   (magit-list-local-branch-names))
-          (remote  (--filter (and (string-match "[^/]+/" it)
-                                  (not (member (substring it (match-end 0))
-                                               (cons "HEAD" local))))
-                             (magit-list-remote-branch-names)))
-          (choices (nconc (delete current local) remote))
-          (atpoint (magit-branch-at-point))
-          (choice  (magit-completing-read
-                    "Checkout branch" choices
-                    nil nil nil 'magit-revision-history
-                    (or (car (member atpoint choices))
-                        (and atpoint
-                             (car (member (and (string-match "[^/]+/" atpoint)
-                                               (substring atpoint (match-end 0)))
-                                          choices)))))))
-     (cond ((member choice remote)
-            (list (and (string-match "[^/]+/" choice)
-                       (substring choice (match-end 0)))
-                  choice))
-           ((member choice local)
-            (list choice))
-           (t
-            (list choice (magit-read-starting-point "Create" choice))))))
-  (if (not start-point)
-      (magit-checkout branch)
-    (when (magit-anything-modified-p)
-      (user-error "Cannot checkout when there are uncommitted changes"))
-    (magit-branch-and-checkout branch start-point (magit-branch-arguments))
-    (when (magit-remote-branch-p start-point)
-      (pcase-let ((`(,remote . ,remote-branch)
-                   (magit-split-branch-name start-point)))
-        (when (and (equal branch remote-branch)
-                   (not (equal remote (magit-get "remote.pushDefault"))))
-          (magit-set remote "branch" branch "pushRemote"))))))
-
-(defun magit-branch-maybe-adjust-upstream (branch start-point)
-  (--when-let
-      (or (and (magit-get-upstream-branch branch)
-               (magit-get-indirect-upstream-branch start-point))
-          (and (magit-remote-branch-p start-point)
-               (let ((name (cdr (magit-split-branch-name start-point))))
-                 (car (--first (if (listp (cdr it))
-                                   (not (member name (cdr it)))
-                                 (string-match-p (cdr it) name))
-                               magit-branch-adjust-remote-upstream-alist)))))
-    (magit-call-git "branch" (concat "--set-upstream-to=" it) branch)))
-
-;;;###autoload
-(defun magit-branch-orphan (branch start-point &optional args)
-  "Create and checkout an orphan BRANCH with contents from revision START-POINT.
-\n(git checkout --orphan [ARGS] BRANCH START-POINT)."
-  (interactive (magit-branch-read-args "Create and checkout orphan branch"))
-  (magit-run-git "checkout" "--orphan" args branch start-point))
-
-;;;###autoload
-(defun magit-branch-pull-request (pr)
-  "Create and configure a new branch from a pull-request.
-Please see the manual for more information."
-  (interactive (list (magit-read-pull-request "Branch pull request")))
-  (let-alist pr
-    (let* ((upstream (or (--first (magit--github-url-equal
-                                   (magit-get "remote" it "url")
-                                   .base.repo.ssh_url)
-                                  (magit-list-remotes))
-                         (user-error
-                          "Upstream repository %s not available as a remote"
-                          .base.repo.ssh_url)))
-           (upstream-url (magit-get "remote" upstream "url"))
-           (remote .head.repo.owner.login)
-           (branch (magit--pullreq-branch pr t))
-           (pr-branch .head.ref))
-      (if (magit--pullreq-from-upstream-p pr)
-          (let ((tracking (concat upstream "/" pr-branch)))
-            (unless (magit-branch-p tracking)
-              (magit-call-git "fetch" upstream))
-            (let ((inhibit-magit-refresh t))
-              (magit-branch-create branch tracking))
-            (magit-set upstream "branch" branch "pushRemote")
-            (magit-set upstream "branch" branch "pullRequestRemote"))
-        (if (magit-remote-p remote)
-            (let ((url   (magit-get     "remote" remote "url"))
-                  (fetch (magit-get-all "remote" remote "fetch")))
-              (unless (magit--github-url-equal url .head.repo.ssh_url)
-                (user-error
-                 "Remote `%s' already exists but does not point to %s"
-                 remote url))
-              (unless (member (format "+refs/heads/*:refs/remotes/%s/*" remote)
-                              fetch)
-                (magit-call-git "remote" "set-branches"
-                                "--add" remote pr-branch)
-                (magit-call-git "fetch" remote)))
-          (magit-call-git
-           "remote" "add" "-f" "--no-tags"
-           "-t" pr-branch remote
-           (cond ((or (string-prefix-p "git@" upstream-url)
-                      (string-prefix-p "ssh://git@" upstream-url))
-                  .head.repo.ssh_url)
-                 ((string-prefix-p "https://" upstream-url)
-                  .head.repo.clone_url)
-                 ((string-prefix-p "git://" upstream-url)
-                  .head.repo.git_url)
-                 (t (error "%s has an unexpected format" upstream-url)))))
-        (magit-call-git "branch" branch (concat remote "/" pr-branch))
-        (if (or .locked (not (equal branch pr-branch)))
-            (magit-set upstream "branch" branch "pushRemote")
-          (magit-set remote "branch" branch "pushRemote"))
-        (magit-set remote "branch" branch "pullRequestRemote"))
-      (magit-set "true" "branch" branch "rebase")
-      (magit-call-git "branch" branch
-                      (concat "--set-upstream-to="
-                              (if magit-branch-prefer-remote-upstream
-                                  (concat upstream "/" .base.ref)
-                                .base.ref)))
-      (magit-set (number-to-string .number) "branch" branch "pullRequest")
-      (magit-set .title                     "branch" branch "description")
-      (magit-refresh)
-      branch)))
-
-(defun magit-checkout-pull-request (pr)
-  "Create, configure and checkout a new branch from a pull-request.
-Please see the manual for more information."
-  (interactive (list (magit-read-pull-request "Checkout pull request")))
-  (magit-checkout
-   (let ((inhibit-magit-refresh t))
-     (magit-branch-pull-request pr))))
-
-(defun magit-branch-read-args (prompt)
-  (let ((args (magit-branch-arguments)))
-    (if magit-branch-read-upstream-first
-        (let ((choice (magit-read-starting-point prompt)))
-          (if (magit-rev-verify choice)
-              (list (magit-read-string-ns
-                     (if magit-completing-read--silent-default
-                         (format "%s (starting at `%s')" prompt choice)
-                       "Name for new branch")
-                     (let ((def (mapconcat #'identity
-                                           (cdr (split-string choice "/"))
-                                           "/")))
-                       (and (member choice (magit-list-remote-branch-names))
-                            (not (member def (magit-list-local-branch-names)))
-                            def)))
-                    choice args)
-            (if (eq magit-branch-read-upstream-first 'fallback)
-                (list choice (magit-read-starting-point prompt choice) args)
-              (user-error "Not a valid starting-point: %s" choice))))
-      (let ((branch (magit-read-string-ns (concat prompt " named"))))
-        (list branch
-              (magit-read-starting-point prompt branch)
-              args)))))
-
-;;;###autoload
-(defun magit-branch-spinoff (branch &optional from &rest args)
-  "Create new branch from the unpushed commits.
-
-Create and checkout a new branch starting at and tracking the
-current branch.  That branch in turn is reset to the last commit
-it shares with its upstream.  If the current branch has no
-upstream or no unpushed commits, then the new branch is created
-anyway and the previously current branch is not touched.
-
-This is useful to create a feature branch after work has already
-began on the old branch (likely but not necessarily \"master\").
-
-If the current branch is a member of the value of option
-`magit-branch-prefer-remote-upstream' (which see), then the
-current branch will be used as the starting point as usual, but
-the upstream of the starting-point may be used as the upstream
-of the new branch, instead of the starting-point itself.
-
-If optional FROM is non-nil, then the source branch is reset
-to `FROM~', instead of to the last commit it shares with its
-upstream.  Interactively, FROM is only ever non-nil, if the
-region selects some commits, and among those commits, FROM is
-the commit that is the fewest commits ahead of the source
-branch.
-
-The commit at the other end of the selection actually does not
-matter, all commits between FROM and `HEAD' are moved to the new
-branch.  If FROM is not reachable from `HEAD' or is reachable
-from the source branch's upstream, then an error is raised."
-  (interactive (list (magit-read-string-ns "Spin off branch")
-                     (car (last (magit-region-values 'commit)))
-                     (magit-branch-arguments)))
-  (when (magit-branch-p branch)
-    (user-error "Cannot spin off %s.  It already exists" branch))
-  (if-let ((current (magit-get-current-branch)))
-      (let ((tracked (magit-get-upstream-branch current))
-            base)
-        (when from
-          (unless (magit-rev-ancestor-p from current)
-            (user-error "Cannot spin off %s.  %s is not reachable from %s"
-                        branch from current))
-          (when (and tracked
-                     (magit-rev-ancestor-p from tracked))
-            (user-error "Cannot spin off %s.  %s is ancestor of upstream %s"
-                        branch from tracked)))
-        (let ((magit-process-raise-error t))
-          (magit-call-git "checkout" args "-b" branch current))
-        (--when-let (magit-get-indirect-upstream-branch current)
-          (magit-call-git "branch" "--set-upstream-to" it branch))
-        (when (and tracked
-                   (setq base
-                         (if from
-                             (concat from "^")
-                           (magit-git-string "merge-base" current tracked)))
-                   (not (magit-rev-eq base current)))
-          (magit-call-git "update-ref" "-m"
-                          (format "reset: moving to %s" base)
-                          (concat "refs/heads/" current) base))
-        (magit-refresh))
-    (magit-run-git "checkout" "-b" branch)))
-
-;;;###autoload
-(defun magit-branch-reset (branch to &optional args set-upstream)
-  "Reset a branch to the tip of another branch or any other commit.
-
-When the branch being reset is the current branch, then do a
-hard reset.  If there are any uncommitted changes, then the user
-has to confirm the reset because those changes would be lost.
-
-This is useful when you have started work on a feature branch but
-realize it's all crap and want to start over.
-
-When resetting to another branch and a prefix argument is used,
-then also set the target branch as the upstream of the branch
-that is being reset."
-  (interactive
-   (let* ((atpoint (magit-local-branch-at-point))
-          (branch  (magit-read-local-branch "Reset branch" atpoint)))
-     (list branch
-           (magit-completing-read (format "Reset %s to" branch)
-                                  (delete branch (magit-list-branch-names))
-                                  nil nil nil 'magit-revision-history
-                                  (or (and (not (equal branch atpoint)) atpoint)
-                                      (magit-get-upstream-branch branch)))
-           (magit-branch-arguments)
-           current-prefix-arg)))
-  (unless (member "--force" args)
-    (setq args (cons "--force" args)))
-  (if (equal branch (magit-get-current-branch))
-      (if (and (magit-anything-modified-p)
-               (not (yes-or-no-p "Uncommitted changes will be lost.  Proceed? ")))
-          (user-error "Abort")
-        (magit-reset-hard to)
-        (when (and set-upstream (magit-branch-p to))
-          (magit-set-upstream-branch branch to)))
-    (magit-branch-create branch to args)))
-
-;;;###autoload
-(defun magit-branch-delete (branches &optional force)
-  "Delete one or multiple branches.
-If the region marks multiple branches, then offer to delete
-those, otherwise prompt for a single branch to be deleted,
-defaulting to the branch at point."
-  ;; One would expect this to be a command as simple as, for example,
-  ;; `magit-branch-rename'; but it turns out everyone wants to squeeze
-  ;; a bit of extra functionality into this one, including myself.
-  (interactive
-   (let ((branches (magit-region-values 'branch t))
-         (force current-prefix-arg))
-     (if (> (length branches) 1)
-         (magit-confirm t nil "Delete %i branches" nil branches)
-       (setq branches
-             (list (magit-read-branch-prefer-other
-                    (if force "Force delete branch" "Delete branch")))))
-     (unless force
-       (when-let ((unmerged (-remove #'magit-branch-merged-p branches)))
-         (if (magit-confirm 'delete-unmerged-branch
-               "Delete unmerged branch %s"
-               "Delete %i unmerged branches"
-               'noabort unmerged)
-             (setq force branches)
-           (or (setq branches (-difference branches unmerged))
-               (user-error "Abort")))))
-     (list branches force)))
-  (let* ((refs (mapcar #'magit-ref-fullname branches))
-         (ambiguous (--remove it refs)))
-    (when ambiguous
-      (user-error
-       "%s ambiguous.  Please cleanup using git directly."
-       (let ((len (length ambiguous)))
-         (cond
-          ((= len 1)
-           (format "%s is" (-first #'magit-ref-ambiguous-p branches)))
-          ((= len (length refs))
-           (format "These %s names are" len))
-          (t
-           (format "%s of these names are" len))))))
-    (cond
-     ((string-match "^refs/remotes/\\([^/]+\\)" (car refs))
-      (let* ((remote (match-string 1 (car refs)))
-             (offset (1+ (length remote))))
-        ;; Assume the branches actually still exists on the remote.
-        (magit-run-git-async
-         "push" remote (--map (concat ":" (substring it offset)) branches))
-        ;; If that is not the case, then this deletes the tracking branches.
-        (set-process-sentinel
-         magit-this-process
-         (apply-partially 'magit-delete-remote-branch-sentinel refs))))
-     ((> (length branches) 1)
-      (setq branches (delete (magit-get-current-branch) branches))
-      (mapc 'magit-branch-maybe-delete-pr-remote branches)
-      (mapc 'magit-branch-unset-pushRemote branches)
-      (magit-run-git "branch" (if force "-D" "-d") branches))
-     (t ; And now for something completely different.
-      (let* ((branch (car branches))
-             (prompt (format "Branch %s is checked out.  " branch)))
-        (when (equal branch (magit-get-current-branch))
-          (pcase (if (or (equal branch "master")
-                         (not (magit-rev-verify "master")))
-                     (magit-read-char-case prompt nil
-                       (?d "[d]etach HEAD & delete" 'detach)
-                       (?a "[a]bort"                'abort))
-                   (magit-read-char-case prompt nil
-                     (?d "[d]etach HEAD & delete"     'detach)
-                     (?c "[c]heckout master & delete" 'master)
-                     (?a "[a]bort"                    'abort)))
-            (`detach (unless (or (equal force '(4))
-                                 (member branch force)
-                                 (magit-branch-merged-p branch t))
-                       (magit-confirm 'delete-unmerged-branch
-                         "Delete unmerged branch %s" ""
-                         nil (list branch)))
-                     (magit-call-git "checkout" "--detach"))
-            (`master (unless (or (equal force '(4))
-                                 (member branch force)
-                                 (magit-branch-merged-p branch "master"))
-                       (magit-confirm 'delete-unmerged-branch
-                         "Delete unmerged branch %s" ""
-                         nil (list branch)))
-                     (magit-call-git "checkout" "master"))
-            (`abort  (user-error "Abort")))
-          (setq force t))
-        (magit-branch-maybe-delete-pr-remote branch)
-        (magit-branch-unset-pushRemote branch)
-        (magit-run-git "branch" (if force "-D" "-d") branch))))))
-
-(put 'magit-branch-delete 'interactive-only t)
-
-(defun magit-branch-maybe-delete-pr-remote (branch)
-  (when-let ((remote (magit-get "branch" branch "pullRequestRemote")))
-    (let* ((variable (format "remote.%s.fetch" remote))
-           (refspecs (magit-get-all variable)))
-      (unless (member (format "+refs/heads/*:refs/remotes/%s/*" remote)
-                      refspecs)
-        (let ((refspec
-               (if (equal (magit-get "branch" branch "pushRemote") remote)
-                   (format "+refs/heads/%s:refs/remotes/%s/%s"
-                           branch remote branch)
-                 (let ((merge (magit-get "branch" branch "merge")))
-                   (and merge
-                        (string-prefix-p "refs/heads/" merge)
-                        (setq merge (substring merge 11))
-                        (format "+refs/heads/%s:refs/remotes/%s/%s"
-                                merge remote merge))))))
-          (when (member refspec refspecs)
-            (if (and (= (length refspecs) 1)
-                     (magit-confirm 'delete-pr-remote
-                       (format "Also delete remote %s (%s)" remote
-                               "no pull-request branch remains")))
-                (magit-call-git "remote" "rm" remote)
-              (magit-call-git "config" "--unset" variable
-                              (regexp-quote refspec)))))))))
-
-(defun magit-branch-unset-pushRemote (branch)
-  (magit-set nil "branch" branch "pushRemote"))
-
-(defun magit-delete-remote-branch-sentinel (refs process event)
-  (when (memq (process-status process) '(exit signal))
-    (if (= (process-exit-status process) 0)
-        (magit-process-sentinel process event)
-      (if-let ((rest (-filter #'magit-ref-exists-p refs)))
-          (progn
-            (process-put process 'inhibit-refresh t)
-            (magit-process-sentinel process event)
-            (setq magit-this-error nil)
-            (message "Some remote branches no longer exist.  %s"
-                     "Deleting just the local tracking refs instead...")
-            (dolist (ref rest)
-              (magit-call-git "update-ref" "-d" ref))
-            (magit-refresh)
-            (message "Deleting local remote-tracking refs...done"))
-        (magit-process-sentinel process event)))))
-
-;;;###autoload
-(defun magit-branch-rename (old new &optional force)
-  "Rename the branch named OLD to NEW.
-
-With a prefix argument FORCE, rename even if a branch named NEW
-already exists.
-
-If `branch.OLD.pushRemote' is set, then unset it.  Depending on
-the value of `magit-branch-rename-push-target' (which see) maybe
-set `branch.NEW.pushRemote' and maybe rename the push-target on
-the remote."
-  (interactive
-   (let ((branch (magit-read-local-branch "Rename branch")))
-     (list branch
-           (magit-read-string-ns (format "Rename branch '%s' to" branch)
-                                 nil 'magit-revision-history)
-           current-prefix-arg)))
-  (when (string-match "\\`heads/\\(.+\\)" old)
-    (setq old (match-string 1 old)))
-  (when (equal old new)
-    (user-error "Old and new branch names are the same"))
-  (magit-call-git "branch" (if force "-M" "-m") old new)
-  (when magit-branch-rename-push-target
-    (let ((remote (magit-get-push-remote old))
-          (old-specific (magit-get "branch" old "pushRemote"))
-          (new-specific (magit-get "branch" new "pushRemote")))
-      (when (and old-specific (or force (not new-specific)))
-        ;; Keep the target setting branch specific, even if that is
-        ;; redundant.  But if a branch by the same name existed before
-        ;; and the rename isn't forced, then do not change a leftover
-        ;; setting.  Such a leftover setting may or may not conform to
-        ;; what we expect here...
-        (magit-set old-specific "branch" new "pushRemote"))
-      (when (and (equal (magit-get-push-remote new) remote)
-                 ;; ...and if it does not, then we must abort.
-                 (not (eq magit-branch-rename-push-target 'local-only))
-                 (or (not (memq magit-branch-rename-push-target
-                                '(forge-only github-only)))
-                     (and (require (quote forge) nil t)
-                          (fboundp 'forge--forge-remote-p)
-                          (forge--forge-remote-p remote))))
-        (let ((old-target (magit-get-push-branch old t))
-              (new-target (magit-get-push-branch new t))
-              (remote (magit-get-push-remote new)))
-          (when (and old-target
-                     (not new-target)
-                     (magit-y-or-n-p (format "Also rename %S to %S on %S"
-                                             old new remote)))
-            ;; Rename on (i.e. within) the remote, but only if the
-            ;; destination ref doesn't exist yet.  If that ref already
-            ;; exists, then it probably is of some value and we better
-            ;; not touch it.  Ignore what the local ref points at,
-            ;; i.e. if the local and the remote ref didn't point at
-            ;; the same commit before the rename then keep it that way.
-            (magit-call-git "push" "-v" remote
-                            (format "%s:refs/heads/%s" old-target new)
-                            (format ":refs/heads/%s" old)))))))
-  (magit-branch-unset-pushRemote old)
-  (magit-refresh))
-
-;;;###autoload
-(defun magit-branch-shelve (branch)
-  "Shelve a BRANCH.
-Rename \"refs/heads/BRANCH\" to \"refs/shelved/BRANCH\",
-and also rename the respective reflog file."
-  (interactive (list (magit-read-other-local-branch "Shelve branch")))
-  (let ((old (concat "refs/heads/"   branch))
-        (new (concat "refs/shelved/" branch)))
-    (magit-git "update-ref" new old "")
-    (magit--rename-reflog-file old new)
-    (magit-branch-unset-pushRemote branch)
-    (magit-run-git "branch" "-D" branch)))
-
-;;;###autoload
-(defun magit-branch-unshelve (branch)
-  "Unshelve a BRANCH
-Rename \"refs/shelved/BRANCH\" to \"refs/heads/BRANCH\",
-and also rename the respective reflog file."
-  (interactive
-   (list (magit-completing-read
-          "Unshelve branch"
-          (--map (substring it 8)
-                 (magit-list-refnames "refs/shelved"))
-          nil t)))
-  (let ((old (concat "refs/shelved/" branch))
-        (new (concat "refs/heads/"   branch)))
-    (magit-git "update-ref" new old "")
-    (magit--rename-reflog-file old new)
-    (magit-run-git "update-ref" "-d" old)))
-
-(defun magit--rename-reflog-file (old new)
-  (let ((old (magit-git-dir (concat "logs/" old)))
-        (new (magit-git-dir (concat "logs/" new))))
-    (when (file-exists-p old)
-      (make-directory (file-name-directory new) t)
-      (rename-file old new t))))
-
-;;; Config Popup
-
-(defvar magit-branch-config-branch nil)
-
-;;;###autoload
-(defun magit-branch-config-popup (branch)
-  "Popup console for setting branch variables."
-  (interactive
-   (list (if (or current-prefix-arg
-                 (and (eq magit-current-popup 'magit-branch-popup)
-                      magit-branch-popup-show-variables))
-             (magit-read-local-branch "Configure branch")
-           (magit-get-current-branch))))
-  (let ((magit-branch-config-branch branch))
-    (magit-invoke-popup 'magit-branch-config-popup nil nil)))
-
-(defvar magit-branch-config-variables
-  '((lambda ()
-      (concat
-       (propertize "Configure " 'face 'magit-popup-heading)
-       (propertize (magit-branch-config-branch) 'face 'magit-branch-local)))
-    (?d "branch.%s.description"
-        magit-edit-branch*description
-        magit-format-branch*description)
-    (?u "branch.%s.merge"
-        magit-set-branch*merge/remote
-        magit-format-branch*merge/remote)
-    (?r "branch.%s.rebase"
-        magit-cycle-branch*rebase
-        magit-format-branch*rebase)
-    (?p "branch.%s.pushRemote"
-        magit-cycle-branch*pushRemote
-        magit-format-branch*pushRemote)
-    "Configure repository defaults"
-    (?\M-r "pull.rebase"
-           magit-cycle-pull.rebase
-           magit-format-pull.rebase)
-    (?\M-p "remote.pushDefault"
-           magit-cycle-remote.pushDefault
-           magit-format-remote.pushDefault)
-    "Configure branch creation"
-    (?U "branch.autoSetupMerge"
-        magit-cycle-branch*autoSetupMerge
-        magit-format-branch*autoSetupMerge)
-    (?R "branch.autoSetupRebase"
-        magit-cycle-branch*autoSetupRebase
-        magit-format-branch*autoSetupRebase)))
-
-(defvar magit-branch-config-popup
-  `(:man-page "git-branch"
-    :variables ,magit-branch-config-variables
-    :setup-function magit-branch-config-popup-setup))
-
-(defun magit-branch-config-popup-setup (val def)
-  (magit-popup-default-setup val def)
-  (setq-local magit-branch-config-branch magit-branch-config-branch)
-  (use-local-map (copy-keymap magit-popup-mode-map))
-  (dolist (ev (-filter #'magit-popup-event-p (magit-popup-get :variables)))
-    (local-set-key (vector (magit-popup-event-key ev))
-                   'magit-invoke-popup-action)))
-
-(defun magit-branch-config-branch (&optional prompt)
-  (if prompt
-      (or (and (not current-prefix-arg)
-               (or magit-branch-config-branch
-                   (magit-get-current-branch)))
-          (magit-read-local-branch prompt))
-    (or magit-branch-config-branch
-        (magit-get-current-branch)
-        "<name>")))
-
-;;; Config Commands and Inserters
-
-;;;###autoload
-(defun magit-edit-branch*description (branch)
-  "Edit the description of the current branch.
-With a prefix argument edit the description of another branch.
-
-The description for the branch named NAME is stored in the Git
-variable `branch.<name>.description'."
-  (interactive (list (magit-branch-config-branch "Edit branch description")))
-  (magit-run-git-with-editor "branch" "--edit-description" branch))
-
-(defun magit-edit-branch*description-check-buffers ()
-  (and buffer-file-name
-       (string-match-p "/\\(BRANCH\\|EDIT\\)_DESCRIPTION\\'" buffer-file-name)
-       (add-hook 'with-editor-post-finish-hook
-                 (lambda ()
-                   (when (derived-mode-p 'magit-popup-mode)
-                     (magit-refresh-popup-buffer)))
-                 nil t)))
-
-(add-hook 'find-file-hook 'magit-edit-branch*description-check-buffers)
-
-(defun magit-format-branch*description ()
-  (let* ((branch (magit-branch-config-branch))
-         (width (+ (length branch) 19))
-         (var (format "branch.%s.description" branch)))
-    (concat var " " (make-string (- width (length var)) ?\s)
-            (if-let ((value (magit-get var)))
-                (propertize (car (split-string value "\n"))
-                            'face 'magit-popup-option-value)
-              (propertize "unset" 'face 'magit-popup-disabled-argument)))))
-
-;;;###autoload
-(defun magit-set-branch*merge/remote (branch upstream)
-  "Set or unset the upstream of the current branch.
-With a prefix argument do so for another branch.
-
-When the branch in question already has an upstream then simply
-unsets it.  Invoke this command again to set another upstream.
-
-Together the Git variables `branch.<name>.remote' and
-`branch.<name>.merge' define the upstream branch of the local
-branch named NAME.  The value of `branch.<name>.remote' is the
-name of the upstream remote.  The value of `branch.<name>.merge'
-is the full reference of the upstream branch, on the remote.
-
-Non-interactively, when UPSTREAM is non-nil, then always set it
-as the new upstream, regardless of whether another upstream was
-already set.  When nil, then always unset."
-  (interactive
-   (let ((branch (magit-branch-config-branch "Change upstream of branch")))
-     (list branch (and (not (magit-get-upstream-branch branch))
-                       (magit-read-upstream-branch branch)))))
-  (magit-set-upstream-branch branch upstream)
-  (magit-refresh))
-
-(defun magit-format-branch*merge/remote ()
-  (let* ((branch (magit-branch-config-branch))
-         (width (+ (length branch) 20))
-         (varM (format "branch.%s.merge" branch))
-         (varR (format "branch.%s.remote" branch))
-         (face (if (equal (magit-get varR) ".")
-                   'magit-branch-local
-                 'magit-branch-remote)))
-    (concat varM (make-string (- width (length varM)) ?\s)
-            (if-let ((value (magit-get varM)))
-                (propertize value 'face face)
-              (propertize "unset" 'face 'magit-popup-disabled-argument))
-            "\n   " varR (make-string (- width (length varR)) ?\s)
-            (if-let ((value (magit-get varR)))
-                (propertize value 'face face)
-              (propertize "unset" 'face 'magit-popup-disabled-argument)))))
-
-;;;###autoload
-(defun magit-cycle-branch*rebase (branch)
-  "Cycle the value of `branch.<name>.rebase' for the current branch.
-With a prefix argument cycle the value for another branch.
-
-The Git variables `branch.<name>.rebase' controls whether pulling
-into the branch named NAME is done by rebasing that branch onto
-the fetched branch or by merging that branch.
-
-When `true' then pulling is done by rebasing.
-When `false' then pulling is done by merging.
-
-When that variable is undefined then the value of `pull.rebase'
-is used instead.  It defaults to `false'."
-  (interactive (list (magit-branch-config-branch
-                      "Cycle branch.<name>.rebase for")))
-  (magit--set-popup-variable (format "branch.%s.rebase" branch)
-                             '("true" "false")
-                             "false" "pull.rebase"))
-
-(defun magit-format-branch*rebase ()
-  (let ((branch (magit-branch-config-branch)))
-    (magit--format-popup-variable:choices
-     (format "branch.%s.rebase" branch)
-     '("true" "false")
-     "false" "pull.rebase"
-     (+ (length branch) 20))))
-
-;;;###autoload
-(defun magit-cycle-branch*pushRemote (branch)
-  "Cycle the value of `branch.<name>.pushRemote' for the current branch.
-With a prefix argument cycle the value for another branch.
-
-The Git variable `branch.<name>.pushRemote' specifies the remote
-that the branch named NAME is usually pushed to.  The value has
-to be the name of an existing remote.
-
-If that variable is undefined, then the value of the Git variable
-`remote.pushDefault' is used instead, provided that it is defined,
-which by default it is not."
-  (interactive (list (magit-branch-config-branch
-                      "Cycle branch.<name>.pushRemote for")))
-  (magit--set-popup-variable (format "branch.%s.pushRemote" branch)
-                             (magit-list-remotes)
-                             "remote.pushDefault"))
-
-(defun magit-format-branch*pushRemote ()
-  (let ((branch (magit-branch-config-branch)))
-    (magit--format-popup-variable:choices
-     (format "branch.%s.pushRemote" branch)
-     (magit-list-remotes)
-     nil "remote.pushDefault"
-     (+ (length branch) 20))))
-
-;;;###autoload
-(defun magit-cycle-pull.rebase ()
-  "Cycle the repository-local value of `pull.rebase'.
-
-The Git variable `pull.rebase' specifies whether pulling is done
-by rebasing or by merging.  It can be overwritten using the Git
-variable `branch.<name>.rebase'.
-
-When `true' then pulling is done by rebasing.
-When `false' (the default) then pulling is done by merging."
-  (interactive)
-  (magit--set-popup-variable "pull.rebase" '("true" "false") "false"))
-
-(defun magit-format-pull.rebase ()
-  (magit--format-popup-variable:choices
-   "pull.rebase" '("true" "false") "false" nil 19))
-
-;;;###autoload
-(defun magit-cycle-remote.pushDefault ()
-  "Cycle the repository-local value of `remote.pushDefault'.
-
-The Git variable `remote.pushDefault' specifies the remote that
-local branches are usually pushed to.  It can be overwritten
-using the Git variable `branch.<name>.pushRemote'."
-  (interactive)
-  (magit--set-popup-variable "remote.pushDefault" (magit-list-remotes)))
-
-(defun magit-format-remote.pushDefault ()
-  (magit--format-popup-variable:choices
-   "remote.pushDefault" (magit-list-remotes) nil nil 19))
-
-;;;###autoload
-(defun magit-cycle-branch*autoSetupMerge ()
-  "Cycle the repository-local value of `branch.autoSetupMerge'.
-
-The Git variable `branch.autoSetupMerge' under what circumstances
-creating a branch (named NAME) should result in the variables
-`branch.<name>.merge' and `branch.<name>.remote' being set
-according to the starting point used to create the branch.  If
-the starting point isn't a branch, then these variables are never
-set.
-
-When `always' then the variables are set regardless of whether
-the starting point is a local or a remote branch.
-
-When `true' (the default) then the variable are set when the
-starting point is a remote branch, but not when it is a local
-branch.
-
-When `false' then the variables are never set."
-  (interactive)
-  (magit--set-popup-variable "branch.autoSetupMerge"
-                             '("always" "true" "false") "true"))
-
-(defun magit-format-branch*autoSetupMerge ()
-  (magit--format-popup-variable:choices
-   "branch.autoSetupMerge" '("always" "true" "false") "true" nil 23))
-
-;;;###autoload
-(defun magit-cycle-branch*autoSetupRebase ()
-  "Cycle the repository-local value of `branch.autoSetupRebase'.
-
-The Git variable `branch.autoSetupRebase' specifies whether
-creating a branch (named NAME) should result in the variable
-`branch.<name>.rebase' being set to `true'.
-
-When `always' then the variable is set regardless of whether the
-starting point is a local or a remote branch.
-
-When `local' then the variable are set when the starting point
-is a local branch, but not when it is a remote branch.
-
-When `remote' then the variable are set when the starting point
-is a remote branch, but not when it is a local branch.
-
-When `never' (the default) then the variable is never set."
-  (interactive)
-  (magit--set-popup-variable "branch.autoSetupRebase"
-                             '("always" "local" "remote" "never") "never"))
-
-(defun magit-format-branch*autoSetupRebase ()
-  (magit--format-popup-variable:choices
-   "branch.autoSetupRebase"
-   '("always" "local" "remote" "never")
-   "never" nil 23))
-
-;;; _
-(provide 'magit-branch)
-;;; magit-branch.el ends here
diff --git a/elpa/magit-20181116.1412/magit-branch.elc b/elpa/magit-20181116.1412/magit-branch.elc
deleted file mode 100644
index 2c88cb8..0000000
--- a/elpa/magit-20181116.1412/magit-branch.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-clone.el b/elpa/magit-20181116.1412/magit-clone.el
deleted file mode 100644
index 7afc1ea..0000000
--- a/elpa/magit-20181116.1412/magit-clone.el
+++ /dev/null
@@ -1,103 +0,0 @@
-;;; magit-clone.el --- clone a repository  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements clone commands.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Options
-
-(defcustom magit-clone-set-remote-head nil
-  "Whether cloning creates the symbolic-ref `<remote>/HEAD'."
-  :package-version '(magit . "2.4.2")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-clone-set-remote.pushDefault 'ask
-  "Whether to set the value of `remote.pushDefault' after cloning.
-
-If t, then set without asking.  If nil, then don't set.  If
-`ask', then ask."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-commands
-  :type '(choice (const :tag "set" t)
-                 (const :tag "ask" ask)
-                 (const :tag "don't set" nil)))
-
-(defcustom magit-clone-default-directory nil
-  "Default directory to use when `magit-clone' reads destination.
-If nil (the default), then use the value of `default-directory'.
-If a directory, then use that.  If a function, then call that
-with the remote url as only argument and use the returned value."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-commands
-  :type '(choice (const     :tag "value of default-directory")
-                 (directory :tag "constant directory")
-                 (function  :tag "function's value")))
-
-;;; Commands
-
-;;;###autoload
-(defun magit-clone (repository directory)
-  "Clone the REPOSITORY to DIRECTORY.
-Then show the status buffer for the new repository."
-  (interactive
-   (let  ((url (magit-read-string-ns "Clone repository")))
-     (list url (read-directory-name
-                "Clone to: "
-                (if (functionp magit-clone-default-directory)
-                    (funcall magit-clone-default-directory url)
-                  magit-clone-default-directory)
-                nil nil
-                (and (string-match "\\([^/:]+?\\)\\(/?\\.git\\)?$" url)
-                     (match-string 1 url))))))
-  (setq directory (file-name-as-directory (expand-file-name directory)))
-  (magit-run-git-async "clone" repository
-                       (magit-convert-filename-for-git directory))
-  ;; Don't refresh the buffer we're calling from.
-  (process-put magit-this-process 'inhibit-refresh t)
-  (set-process-sentinel
-   magit-this-process
-   (lambda (process event)
-     (when (memq (process-status process) '(exit signal))
-       (let ((magit-process-raise-error t))
-         (magit-process-sentinel process event)))
-     (when (and (eq (process-status process) 'exit)
-                (= (process-exit-status process) 0))
-       (let ((default-directory directory))
-         (when (or (eq  magit-clone-set-remote.pushDefault t)
-                   (and magit-clone-set-remote.pushDefault
-                        (y-or-n-p "Set `remote.pushDefault' to \"origin\"? ")))
-           (setf (magit-get "remote.pushDefault") "origin"))
-         (unless magit-clone-set-remote-head
-           (magit-remote-unset-head "origin")))
-       (with-current-buffer (process-get process 'command-buf)
-         (magit-status-internal directory))))))
-
-;;; _
-(provide 'magit-clone)
-;;; magit-clone.el ends here
diff --git a/elpa/magit-20181116.1412/magit-clone.elc b/elpa/magit-20181116.1412/magit-clone.elc
deleted file mode 100644
index 23fc751..0000000
--- a/elpa/magit-20181116.1412/magit-clone.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-collab.el b/elpa/magit-20181116.1412/magit-collab.el
deleted file mode 100644
index a637c7a..0000000
--- a/elpa/magit-20181116.1412/magit-collab.el
+++ /dev/null
@@ -1,174 +0,0 @@
-;;; magit-collab.el --- collaboration tools       -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements various collaboration tools.  These tools
-;; are only early incarnation -- implementing collaboration tools is
-;; a top priority for future development.
-
-;; Currently these tools (including `magit-branch-pull-request', which
-;; is defined elsewhere) only support Github, but support for other
-;; Git forges as well as mailing list based collaboration is in
-;; planning.
-
-;;; Code:
-
-(require 'magit)
-(require 'ghub)
-
-;;; Variables
-
-(defvar magit-github-token-scopes '(repo)
-  "The Github API scopes needed by Magit.
-
-`repo' is the only required scope.  Without this scope none of
-Magit's features that use the API work.  Instead of this scope
-you could use `public_repo' if you are only interested in public
-repositories.
-
-`repo' Grants read/write access to code, commit statuses,
-  invitations, collaborators, adding team memberships, and
-  deployment statuses for public and private repositories
-  and organizations.
-
-`public_repo' Grants read/write access to code, commit statuses,
-  collaborators, and deployment statuses for public repositories
-  and organizations. Also required for starring public
-  repositories.")
-
-;;; Commands
-
-;;;###autoload
-(defun magit-browse-pull-request (pr)
-  "Visit pull-request PR using `browse-url'.
-
-Currently this only supports Github, but that restriction will
-be lifted eventually to support other Git forges."
-  (interactive (list (magit-read-pull-request "Visit pull request")))
-  (browse-url (format "https://github.com/%s/pull/%s"
-                      (--> pr
-                           (cdr (assq 'base it))
-                           (cdr (assq 'repo it))
-                           (cdr (assq 'full_name it)))
-                      (cdr (assq 'number pr)))))
-
-;;; Utilities
-
-(defun magit-read-pull-request (prompt)
-  "Read a pull request from the user, prompting with PROMPT.
-Return the Git forge's API response.  Currently this function
-only supports Github, but that will change eventually."
-  (let* ((origin (magit-upstream-repository))
-         (id     (magit--forge-id origin))
-         (fmtfun (lambda (pull-request)
-                   (format "%s  %s"
-                           (cdr (assq 'number pull-request))
-                           (cdr (assq 'title  pull-request)))))
-         (prs    (ghub-get (format "/repos/%s/pulls" id) nil :auth 'magit))
-         (choice (magit-completing-read
-                  prompt (mapcar fmtfun prs) nil nil nil nil
-                  (let ((default (thing-at-point 'github-pull-request)))
-                    (and default (funcall fmtfun default)))))
-         (number (and (string-match "\\([0-9]+\\)" choice)
-                      (string-to-number (match-string 1 choice)))))
-    (and number
-         ;; Don't reuse the pr from the list, it lacks some information
-         ;; that is only returned when requesting a single pr.  #3371
-         (ghub-get (format "/repos/%s/pulls/%s" id number)
-                   nil :auth 'magit))))
-
-(defun magit-upstream-repository ()
-  "Return the remote name of the upstream repository.
-
-If the Git variable `magit.upstream' is set, then return its
-value.  Otherwise return \"origin\".  If the remote does not
-exist, then raise an error."
-  (let ((remote (or (magit-get "magit.upstream") "origin")))
-    (unless (magit-remote-p remote)
-      (error "No remote named `%s' exists (consider setting `magit.upstream')"
-             remote))
-    (unless (magit--github-remote-p remote)
-      (error "Currently only Github is supported"))
-    remote))
-
-(defun magit--forge-id (remote)
-  (let ((url (magit-get "remote" remote "url")))
-    (and (string-match "\\([^:/]+/[^/]+?\\)\\(?:\\.git\\)?\\'" url)
-         (match-string 1 url))))
-
-(defconst magit--github-url-regexp "\
-\\`\\(?:git://\\|git@\\|ssh://git@\\|https://\\)\
-\\(.*?\\)[/:]\
-\\(\\([^:/]+\\)/\\([^/]+?\\)\\)\
-\\(?:\\.git\\)?\\'")
-
-(defun magit--github-url-p (url)
-  (save-match-data
-    (and url
-         (string-match magit--github-url-regexp url)
-         (let ((host (match-string 1 url)))
-           ;; Match values like "github.com-as-someone", which are
-           ;; translated to just "github.com" according to settings
-           ;; in "~/.ssh/config".  Theoretically this could result
-           ;; in false-positives, but that's rather unlikely.  #3392
-           (and (or (string-match-p (regexp-quote "github.com") host)
-                    (string-match-p
-                     (regexp-quote (car (split-string (ghub--host) "/")))
-                     host))
-                host)))))
-
-(defun magit--github-remote-p (remote)
-  (or (--when-let (magit-git-string "remote" "get-url" "--push" remote)
-        (magit--github-url-p it))
-      (--when-let (magit-git-string "remote" "get-url" "--all" remote)
-        (magit--github-url-p it))))
-
-(defun magit--github-url-equal (r1 r2)
-  (or (equal r1 r2)
-      (save-match-data
-        (let ((n1 (and (string-match magit--github-url-regexp r1)
-                       (match-string 2 r1)))
-              (n2 (and (string-match magit--github-url-regexp r2)
-                       (match-string 2 r2))))
-          (and n1 n2 (equal n1 n2))))))
-
-(defun magit--pullreq-from-upstream-p (pr)
-  (let-alist pr
-    (equal .head.repo.full_name
-           .base.repo.full_name)))
-
-(defun magit--pullreq-branch (pr &optional assert-new)
-  (let-alist pr
-    (let ((branch .head.ref))
-      (when (and (not (magit--pullreq-from-upstream-p pr))
-                 (or (not .maintainer_can_modify)
-                     (magit-branch-p branch)))
-        (setq branch (format "pr-%s" .number)))
-      (when (and assert-new (magit-branch-p branch))
-        (user-error "Branch `%s' already exists" branch))
-      branch)))
-
-;;; _
-(provide 'magit-collab)
-;;; magit-collab.el ends here
diff --git a/elpa/magit-20181116.1412/magit-collab.elc b/elpa/magit-20181116.1412/magit-collab.elc
deleted file mode 100644
index ef39b27..0000000
--- a/elpa/magit-20181116.1412/magit-collab.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-commit.el b/elpa/magit-20181116.1412/magit-commit.el
deleted file mode 100644
index bbd49c8..0000000
--- a/elpa/magit-20181116.1412/magit-commit.el
+++ /dev/null
@@ -1,543 +0,0 @@
-;;; magit-commit.el --- create Git commits  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements commands for creating Git commits.  These
-;; commands just initiate the commit, support for writing the commit
-;; messages is implemented in `git-commit.el'.
-
-;;; Code:
-
-(require 'magit)
-(require 'magit-sequence)
-
-(eval-when-compile (require 'epa)) ; for `epa-protocol'
-(eval-when-compile (require 'epg))
-(eval-when-compile (require 'subr-x))
-
-;;; Options
-
-(defcustom magit-commit-arguments nil
-  "The arguments used when committing."
-  :group 'magit-git-arguments
-  :type '(repeat (string :tag "Argument")))
-
-(defcustom magit-commit-ask-to-stage 'verbose
-  "Whether to ask to stage all unstaged changes when committing and nothing is staged."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-commands
-  :type '(choice (const :tag "Ask showing diff" verbose)
-                 (const :tag "Ask" t)
-                 (const :tag "Don't ask" nil)))
-
-(defcustom magit-commit-show-diff t
-  "Whether the relevant diff is automatically shown when committing."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-commit-extend-override-date t
-  "Whether using `magit-commit-extend' changes the committer date."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-commit-reword-override-date t
-  "Whether using `magit-commit-reword' changes the committer date."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-commit-squash-confirm t
-  "Whether the commit targeted by squash and fixup has to be confirmed.
-When non-nil then the commit at point (if any) is used as default
-choice, otherwise it has to be confirmed.  This option only
-affects `magit-commit-squash' and `magit-commit-fixup'.  The
-\"instant\" variants always require confirmation because making
-an error while using those is harder to recover from."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-post-commit-hook nil
-  "Hook run after creating a commit without the user editing a message.
-
-This hook is run by `magit-refresh' if `this-command' is a member
-of `magit-post-stage-hook-commands'.  This only includes commands
-named `magit-commit-*' that do *not* require that the user edits
-the commit message in a buffer and then finishes by pressing
-\\<with-editor-mode-map>\\[with-editor-finish].
-
-Also see `git-commit-post-finish-hook'."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-commands
-  :type 'hook)
-
-(defvar magit-post-commit-hook-commands
-  '(magit-commit-extend
-    magit-commit-fixup
-    magit-commit-augment
-    magit-commit-instant-fixup
-    magit-commit-instant-squash))
-
-;;; Popup
-
-(defun magit-commit-popup (&optional arg)
-  "Popup console for commit commands."
-  (interactive "P")
-  (--if-let (magit-commit-message-buffer)
-      (switch-to-buffer it)
-    (magit-invoke-popup 'magit-commit-popup nil arg)))
-
-(defvar magit-commit-popup
-  '(:variable magit-commit-arguments
-    :man-page "git-commit"
-    :switches ((?a "Stage all modified and deleted files"   "--all")
-               (?e "Allow empty commit"                     "--allow-empty")
-               (?v "Show diff of changes to be committed"   "--verbose")
-               (?h "Disable hooks"                          "--no-verify")
-               (?s "Add Signed-off-by line"                 "--signoff")
-               (?R "Claim authorship and reset author date" "--reset-author"))
-    :options  ((?A "Override the author"  "--author=")
-               (?S "Sign using gpg"       "--gpg-sign=" magit-read-gpg-secret-key)
-               (?C "Reuse commit message" "--reuse-message="
-                   magit-read-reuse-message))
-    :actions  ((?c "Commit"         magit-commit-create)
-               (?e "Extend"         magit-commit-extend)
-               (?f "Fixup"          magit-commit-fixup)
-               (?F "Instant Fixup"  magit-commit-instant-fixup) nil
-               (?w "Reword"         magit-commit-reword)
-               (?s "Squash"         magit-commit-squash)
-               (?S "Instant Squash" magit-commit-instant-squash) nil
-               (?a "Amend"          magit-commit-amend)
-               (?A "Augment"        magit-commit-augment))
-    :max-action-columns 4
-    :default-action magit-commit-create))
-
-(magit-define-popup-keys-deferred 'magit-commit-popup)
-
-(defun magit-commit-arguments nil
-  (if (eq magit-current-popup 'magit-commit-popup)
-      magit-current-popup-args
-    magit-commit-arguments))
-
-(defvar magit-gpg-secret-key-hist nil)
-
-(defun magit-read-gpg-secret-key (prompt &optional _initial-input)
-  (require 'epa)
-  (let ((keys (--map (concat (epg-sub-key-id (car (epg-key-sub-key-list it)))
-                             " "
-                             (when-let ((id-obj (car (epg-key-user-id-list it))))
-                               (let ((id-str (epg-user-id-string id-obj)))
-                                 (if (stringp id-str)
-                                     id-str
-                                   (epg-decode-dn id-obj)))))
-                     (epg-list-keys (epg-make-context epa-protocol) nil t))))
-    (car (split-string (magit-completing-read
-                        prompt keys nil nil nil 'magit-gpg-secret-key-hist
-                        (car (or magit-gpg-secret-key-hist keys)))
-                       " "))))
-
-(defun magit-read-reuse-message (prompt &optional default)
-  (magit-completing-read prompt (magit-list-refnames)
-                         nil nil nil 'magit-revision-history
-                         (or default
-                             (and (magit-rev-verify "ORIG_HEAD")
-                                  "ORIG_HEAD"))))
-
-;;; Commands
-
-;;;###autoload
-(defun magit-commit-create (&optional args)
-  "Create a new commit on `HEAD'.
-With a prefix argument, amend to the commit at `HEAD' instead.
-\n(git commit [--amend] ARGS)"
-  (interactive (if current-prefix-arg
-                   (list (cons "--amend" (magit-commit-arguments)))
-                 (list (magit-commit-arguments))))
-  (when (member "--all" args)
-    (setq this-command 'magit-commit-all))
-  (when (setq args (magit-commit-assert args))
-    (let ((default-directory (magit-toplevel)))
-      (magit-run-git-with-editor "commit" args))))
-
-;;;###autoload
-(defun magit-commit-amend (&optional args)
-  "Amend the last commit.
-\n(git commit --amend ARGS)"
-  (interactive (list (magit-commit-arguments)))
-  (magit-commit-amend-assert)
-  (magit-run-git-with-editor "commit" "--amend" args))
-
-;;;###autoload
-(defun magit-commit-extend (&optional args override-date)
-  "Amend the last commit, without editing the message.
-
-With a prefix argument keep the committer date, otherwise change
-it.  The option `magit-commit-extend-override-date' can be used
-to inverse the meaning of the prefix argument.  \n(git commit
---amend --no-edit)"
-  (interactive (list (magit-commit-arguments)
-                     (if current-prefix-arg
-                         (not magit-commit-extend-override-date)
-                       magit-commit-extend-override-date)))
-  (when (setq args (magit-commit-assert args (not override-date)))
-    (magit-commit-amend-assert)
-    (let ((process-environment process-environment))
-      (unless override-date
-        (push (magit-rev-format "GIT_COMMITTER_DATE=%cD") process-environment))
-      (magit-run-git-with-editor "commit" "--amend" "--no-edit" args))))
-
-;;;###autoload
-(defun magit-commit-reword (&optional args override-date)
-  "Reword the last commit, ignoring staged changes.
-
-With a prefix argument keep the committer date, otherwise change
-it.  The option `magit-commit-reword-override-date' can be used
-to inverse the meaning of the prefix argument.
-
-Non-interactively respect the optional OVERRIDE-DATE argument
-and ignore the option.
-\n(git commit --amend --only)"
-  (interactive (list (magit-commit-arguments)
-                     (if current-prefix-arg
-                         (not magit-commit-reword-override-date)
-                       magit-commit-reword-override-date)))
-  (magit-commit-amend-assert)
-  (let ((process-environment process-environment))
-    (unless override-date
-      (push (magit-rev-format "GIT_COMMITTER_DATE=%cD") process-environment))
-    (magit-run-git-with-editor "commit" "--amend" "--only" args)))
-
-;;;###autoload
-(defun magit-commit-fixup (&optional commit args)
-  "Create a fixup commit.
-
-With a prefix argument the target COMMIT has to be confirmed.
-Otherwise the commit at point may be used without confirmation
-depending on the value of option `magit-commit-squash-confirm'."
-  (interactive (list (magit-commit-at-point)
-                     (magit-commit-arguments)))
-  (magit-commit-squash-internal "--fixup" commit args))
-
-;;;###autoload
-(defun magit-commit-squash (&optional commit args)
-  "Create a squash commit, without editing the squash message.
-
-With a prefix argument the target COMMIT has to be confirmed.
-Otherwise the commit at point may be used without confirmation
-depending on the value of option `magit-commit-squash-confirm'."
-  (interactive (list (magit-commit-at-point)
-                     (magit-commit-arguments)))
-  (magit-commit-squash-internal "--squash" commit args))
-
-;;;###autoload
-(defun magit-commit-augment (&optional commit args)
-  "Create a squash commit, editing the squash message.
-
-With a prefix argument the target COMMIT has to be confirmed.
-Otherwise the commit at point may be used without confirmation
-depending on the value of option `magit-commit-squash-confirm'."
-  (interactive (list (magit-commit-at-point)
-                     (magit-commit-arguments)))
-  (magit-commit-squash-internal "--squash" commit args nil t))
-
-;;;###autoload
-(defun magit-commit-instant-fixup (&optional commit args)
-  "Create a fixup commit targeting COMMIT and instantly rebase."
-  (interactive (list (magit-commit-at-point)
-                     (magit-commit-arguments)))
-  (magit-commit-squash-internal "--fixup" commit args t))
-
-;;;###autoload
-(defun magit-commit-instant-squash (&optional commit args)
-  "Create a squash commit targeting COMMIT and instantly rebase."
-  (interactive (list (magit-commit-at-point)
-                     (magit-commit-arguments)))
-  (magit-commit-squash-internal "--squash" commit args t))
-
-(defun magit-commit-squash-internal
-    (option commit &optional args rebase edit confirmed)
-  (when-let ((args (magit-commit-assert args t)))
-    (when commit
-      (when (and rebase (not (magit-rev-ancestor-p commit "HEAD")))
-        (magit-read-char-case
-            (format "%s isn't an ancestor of HEAD.  " commit) nil
-          (?c "[c]reate without rebasing" (setq rebase nil))
-          (?s "[s]elect other"            (setq commit nil))
-          (?a "[a]bort"                   (user-error "Quit")))))
-    (when commit
-      (setq commit (magit-rebase-interactive-assert commit t)))
-    (if (and commit
-             (or confirmed
-                 (not (or rebase
-                          current-prefix-arg
-                          magit-commit-squash-confirm))))
-        (let ((magit-commit-show-diff nil))
-          (push (concat option "=" commit) args)
-          (unless edit
-            (push "--no-edit" args))
-          (if rebase
-              (magit-with-editor
-                (magit-call-git
-                 "commit" "--no-gpg-sign"
-                 (-remove-first
-                  (apply-partially #'string-match-p "\\`--gpg-sign=")
-                  args)))
-            (magit-run-git-with-editor "commit" args))
-          t) ; The commit was created; used by below lambda.
-      (magit-log-select
-        (lambda (commit)
-          (when (and (magit-commit-squash-internal option commit args
-                                                   rebase edit t)
-                     rebase)
-            (magit-commit-amend-assert commit)
-            (magit-rebase-interactive-1 commit
-                (list "--autosquash" "--autostash")
-              "" "true" nil t)))
-        (format "Type %%p on a commit to %s into it,"
-                (substring option 2)))
-      (when magit-commit-show-diff
-        (let ((magit-display-buffer-noselect t))
-          (apply #'magit-diff-staged nil (magit-diff-arguments)))))))
-
-(defun magit-commit-amend-assert (&optional commit)
-  (--when-let (magit-list-publishing-branches commit)
-    (let ((m1 "This commit has already been published to ")
-          (m2 ".\nDo you really want to modify it"))
-      (magit-confirm 'amend-published
-        (concat m1 "%s" m2)
-        (concat m1 "%i public branches" m2)
-        nil it))))
-
-(defun magit-commit-assert (args &optional strict)
-  (cond
-   ((or (magit-anything-staged-p)
-        (and (magit-anything-unstaged-p)
-             ;; ^ Everything of nothing is still nothing.
-             (member "--all" args))
-        (and (not strict)
-             ;; ^ For amend variants that don't make sense otherwise.
-             (or (member "--amend" args)
-                 (member "--allow-empty" args))))
-    (or args (list "--")))
-   ((and (magit-rebase-in-progress-p)
-         (not (magit-anything-unstaged-p))
-         (y-or-n-p "Nothing staged.  Continue in-progress rebase? "))
-    (setq this-command 'magit-rebase-continue)
-    (magit-run-git-sequencer "rebase" "--continue")
-    nil)
-   ((and (file-exists-p (magit-git-dir "MERGE_MSG"))
-         (not (magit-anything-unstaged-p)))
-    (or args (list "--")))
-   ((not (magit-anything-unstaged-p))
-    (user-error "Nothing staged (or unstaged)"))
-   (magit-commit-ask-to-stage
-    (when (eq magit-commit-ask-to-stage 'verbose)
-      (magit-diff-unstaged))
-    (prog1 (when (y-or-n-p "Nothing staged.  Stage and commit all unstaged changes? ")
-             (magit-run-git "add" "-u" ".")
-             (or args (list "--")))
-      (when (and (eq magit-commit-ask-to-stage 'verbose)
-                 (derived-mode-p 'magit-diff-mode))
-        (magit-mode-bury-buffer))))
-   (t
-    (user-error "Nothing staged"))))
-
-(defvar magit--reshelve-history nil)
-
-;;;###autoload
-(defun magit-commit-reshelve (date)
-  "Change the committer date and possibly the author date of `HEAD'.
-
-If you are the author of `HEAD', then both dates are changed,
-otherwise only the committer date.  The current time is used
-as the initial minibuffer input and the original author (if
-that is you) or committer date is available as the previous
-history element."
-  (interactive
-   (let ((author-p (magit-rev-author-p "HEAD")))
-     (push (magit-rev-format (if author-p "%ad" "%cd") "HEAD"
-                             (concat "--date=format:%F %T %z"))
-           magit--reshelve-history)
-     (list (read-string (if author-p
-                            "Change author and committer dates to: "
-                          "Change committer date to: ")
-                        (cons (format-time-string "%F %T %z") 17)
-                        'magit--reshelve-history))))
-  (let ((process-environment process-environment))
-    (push (concat "GIT_COMMITTER_DATE=" date) process-environment)
-    (magit-run-git "commit" "--amend" "--no-edit"
-                   (and (magit-rev-author-p "HEAD")
-                        (concat "--date=" date)))))
-
-;;;###autoload (autoload 'magit-commit-absorb-popup "magit-commit" nil t)
-(magit-define-popup magit-commit-absorb-popup
-  "Spread unstaged changes across recent commits.
-Without a prefix argument just call `magit-commit-absorb'.
-With a prefix argument use a popup buffer to select arguments."
-  :man-page "git-bisect"
-  :options '((?c "Diff context lines" "--context=")
-             (?s "Strictness"         "--strict="))
-  :actions '((?x "Absorb" magit-commit-absorb))
-  :default-action 'magit-commit-absorb
-  :use-prefix 'popup)
-
-(defun magit-commit-absorb (&optional commit args confirmed)
-  "Spread unstaged changes across recent commits.
-This command requires the git-autofixup script, which is
-available from https://github.com/torbiak/git-autofixup."
-  (interactive (list (magit-get-upstream-branch)
-                     (magit-commit-absorb-arguments)))
-  (unless (executable-find "git-autofixup")
-    (user-error "This command requires the git-autofixup script, which %s"
-                "is available from https://github.com/torbiak/git-autofixup"))
-  (when (magit-anything-staged-p)
-    (user-error "Cannot absorb when there are staged changes"))
-  (unless (magit-anything-unstaged-p)
-    (user-error "There are no unstaged changes that could be absorbed"))
-  (when commit
-    (setq commit (magit-rebase-interactive-assert commit t)))
-  (if (and commit confirmed)
-      (progn (magit-run-git-async "autofixup" "-vv" args commit) t)
-    (magit-log-select
-      (lambda (commit)
-        (magit-commit-absorb commit args t))
-      nil nil nil nil commit)))
-
-;;; Pending Diff
-
-(defun magit-commit-diff ()
-  (when (and git-commit-mode magit-commit-show-diff)
-    (when-let ((diff-buffer (magit-mode-get-buffer 'magit-diff-mode)))
-      ;; This window just started displaying the commit message
-      ;; buffer.  Without this that buffer would immediately be
-      ;; replaced with the diff buffer.  See #2632.
-      (unrecord-window-buffer nil diff-buffer))
-    (condition-case nil
-        (let ((args (car (magit-diff-arguments)))
-              (magit-inhibit-save-previous-winconf 'unset)
-              (magit-display-buffer-noselect t)
-              (inhibit-quit nil))
-          (message "Diffing changes to be committed (C-g to abort diffing)")
-          (if-let ((fn (cl-case last-command
-                         (magit-commit
-                          (apply-partially 'magit-diff-staged nil))
-                         (magit-commit-all
-                          (apply-partially 'magit-diff-working-tree nil))
-                         ((magit-commit-amend
-                           magit-commit-reword
-                           magit-rebase-reword-commit)
-                          'magit-diff-while-amending))))
-              (funcall fn args)
-            (if (magit-anything-staged-p)
-                (magit-diff-staged nil args)
-              (magit-diff-while-amending args))))
-      (quit))))
-
-;; Mention `magit-diff-while-committing' because that's
-;; always what I search for when I try to find this line.
-(add-hook 'server-switch-hook 'magit-commit-diff)
-
-(add-to-list 'with-editor-server-window-alist
-             (cons git-commit-filename-regexp 'switch-to-buffer))
-
-;;; Message Utilities
-
-(defun magit-commit-message-buffer ()
-  (let* ((find-file-visit-truename t) ; git uses truename of COMMIT_EDITMSG
-         (topdir (magit-toplevel)))
-    (--first (equal topdir (with-current-buffer it
-                             (and git-commit-mode (magit-toplevel))))
-             (append (buffer-list (selected-frame))
-                     (buffer-list)))))
-
-(defvar magit-commit-add-log-insert-function 'magit-commit-add-log-insert
-  "Used by `magit-commit-add-log' to insert a single entry.")
-
-(defun magit-commit-add-log ()
-  "Add a stub for the current change into the commit message buffer.
-If no commit is in progress, then initiate it.  Use the function
-specified by variable `magit-commit-add-log-insert-function' to
-actually insert the entry."
-  (interactive)
-  (let ((hunk (and (magit-section-match 'hunk)
-                   (magit-current-section)))
-        (log  (magit-commit-message-buffer)) buf pos)
-    (save-window-excursion
-      (call-interactively #'magit-diff-visit-file)
-      (setq buf (current-buffer))
-      (setq pos (point)))
-    (unless log
-      (unless (magit-commit-assert nil)
-        (user-error "Abort"))
-      (magit-commit-create)
-      (while (not (setq log (magit-commit-message-buffer)))
-        (sit-for 0.01)))
-    (save-excursion
-      (with-current-buffer buf
-        (goto-char pos)
-        (funcall magit-commit-add-log-insert-function log
-                 (magit-file-relative-name)
-                 (and hunk (add-log-current-defun)))))))
-
-(defun magit-commit-add-log-insert (buffer file defun)
-  (with-current-buffer buffer
-    (undo-boundary)
-    (goto-char (point-max))
-    (while (re-search-backward (concat "^" comment-start) nil t))
-    (save-restriction
-      (narrow-to-region (point-min) (point))
-      (cond ((re-search-backward (format "* %s\\(?: (\\([^)]+\\))\\)?: " file)
-                                 nil t)
-             (when (equal (match-string 1) defun)
-               (setq defun nil))
-             (re-search-forward ": "))
-            (t
-             (when (re-search-backward "^[\\*(].+\n" nil t)
-               (goto-char (match-end 0)))
-             (while (re-search-forward "^[^\\*\n].*\n" nil t))
-             (if defun
-                 (progn (insert (format "* %s (%s): \n" file defun))
-                        (setq defun nil))
-               (insert (format "* %s: \n" file)))
-             (backward-char)
-             (unless (looking-at "\n[\n\\']")
-               (insert ?\n)
-               (backward-char))))
-      (when defun
-        (forward-line)
-        (let ((limit (save-excursion
-                       (and (re-search-forward "^\\*" nil t)
-                            (point)))))
-          (unless (or (looking-back (format "(%s): " defun)
-                                    (line-beginning-position))
-                      (re-search-forward (format "^(%s): " defun) limit t))
-            (while (re-search-forward "^[^\\*\n].*\n" limit t))
-            (insert (format "(%s): \n" defun))
-            (backward-char)))))))
-
-;;; _
-(provide 'magit-commit)
-;;; magit-commit.el ends here
diff --git a/elpa/magit-20181116.1412/magit-commit.elc b/elpa/magit-20181116.1412/magit-commit.elc
deleted file mode 100644
index fa655e8..0000000
--- a/elpa/magit-20181116.1412/magit-commit.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-core.el b/elpa/magit-20181116.1412/magit-core.el
deleted file mode 100644
index 2bad54c..0000000
--- a/elpa/magit-20181116.1412/magit-core.el
+++ /dev/null
@@ -1,132 +0,0 @@
-;;; magit-core.el --- core functionality  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library requires several other libraries, so that yet other
-;; libraries can just require this one, instead of having to require
-;; all the other ones.  In other words this separates the low-level
-;; stuff from the rest.  It also defines some Custom groups.
-
-;;; Code:
-
-(require 'magit-utils)
-(require 'magit-section)
-(require 'magit-git)
-(require 'magit-mode)
-(require 'magit-margin)
-(require 'magit-process)
-(require 'magit-autorevert)
-
-(defgroup magit nil
-  "Controlling Git from Emacs."
-  :link '(url-link "https://magit.vc")
-  :link '(info-link "(magit)FAQ")
-  :link '(info-link "(magit)")
-  :group 'tools)
-
-(defgroup magit-essentials nil
-  "Options that every Magit user should briefly think about.
-
-Each of these options falls into one or more of these categories:
-
-* Options that affect Magit's behavior in fundamental ways.
-* Options that affect safety.
-* Options that affect performance.
-* Options that are of a personal nature."
-  :link '(info-link "(magit)Essential Settings")
-  :group 'magit)
-
-(defgroup magit-miscellaneous nil
-  "Miscellanous Magit options."
-  :group 'magit)
-
-(defgroup magit-commands nil
-  "Options controlling behavior of certain commands."
-  :group 'magit)
-
-(defgroup magit-git-arguments nil
-  "Options controlling what arguments are passed to Git.
-
-Most of these options can be set using the respective popup,
-and it is recommended that you do that because then you can
-be certain that Magit supports the arguments that you select.
-
-An option `magit-NAME-argument' specifies the arguments that
-are enabled by default by the popup `magit-NAME-popup'."
-  :link '(info-link "(magit-popup)Customizing Existing Popups")
-  :link '(info-link "(magit-popup)Usage")
-  :group 'magit-commands)
-
-(defgroup magit-modes nil
-  "Modes used or provided by Magit."
-  :group 'magit)
-
-(defgroup magit-buffers nil
-  "Options concerning Magit buffers."
-  :link '(info-link "(magit)Modes and Buffers")
-  :group 'magit)
-
-(defgroup magit-refresh nil
-  "Options controlling how Magit buffers are refreshed."
-  :link '(info-link "(magit)Automatic Refreshing of Magit Buffers")
-  :group 'magit
-  :group 'magit-buffers)
-
-(defgroup magit-faces nil
-  "Faces used by Magit."
-  :group 'magit
-  :group 'faces)
-
-(defgroup magit-extensions nil
-  "Extensions to Magit."
-  :group 'magit)
-
-(custom-add-to-group 'magit-modes   'magit-popup       'custom-group)
-(custom-add-to-group 'magit-faces   'magit-popup-faces 'custom-group)
-(custom-add-to-group 'magit-modes   'git-commit        'custom-group)
-(custom-add-to-group 'magit-faces   'git-commit-faces  'custom-group)
-(custom-add-to-group 'magit-modes   'git-rebase        'custom-group)
-(custom-add-to-group 'magit-faces   'git-rebase-faces  'custom-group)
-(custom-add-to-group 'magit-process 'with-editor       'custom-group)
-
-(defgroup magit-related nil
-  "Options that are relevant to Magit but that are defined elsewhere."
-  :link '(custom-group-link vc)
-  :link '(custom-group-link smerge)
-  :link '(custom-group-link ediff)
-  :link '(custom-group-link auto-revert)
-  :group 'magit
-  :group 'magit-extensions
-  :group 'magit-essentials)
-
-(custom-add-to-group 'magit-related     'auto-revert-check-vc-info 'custom-variable)
-(custom-add-to-group 'magit-auto-revert 'auto-revert-check-vc-info 'custom-variable)
-
-(custom-add-to-group 'magit-related 'ediff-window-setup-function 'custom-variable)
-(custom-add-to-group 'magit-related 'smerge-refine-ignore-whitespace 'custom-variable)
-(custom-add-to-group 'magit-related 'vc-follow-symlinks 'custom-variable)
-
-;;; _
-(provide 'magit-core)
-;;; magit-core.el ends here
diff --git a/elpa/magit-20181116.1412/magit-core.elc b/elpa/magit-20181116.1412/magit-core.elc
deleted file mode 100644
index 973c5e3..0000000
--- a/elpa/magit-20181116.1412/magit-core.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-diff.el b/elpa/magit-20181116.1412/magit-diff.el
deleted file mode 100644
index 6741308..0000000
--- a/elpa/magit-20181116.1412/magit-diff.el
+++ /dev/null
@@ -1,2831 +0,0 @@
-;;; magit-diff.el --- inspect Git diffs  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for looking at Git diffs and
-;; commits.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'git-commit)
-(require 'magit-core)
-
-;; For `magit-diff-popup'
-(declare-function magit-stash-show "magit-stash" (stash &optional args files))
-;; For `magit-diff-visit-file'
-(declare-function dired-jump "dired-x" (&optional other-window file-name))
-(declare-function magit-find-file-noselect "magit-files" (rev file))
-(declare-function magit-status-internal "magit-status" (directory))
-;; For `magit-diff-while-committing'
-(declare-function magit-commit-message-buffer "magit-commit" ())
-;; For `magit-insert-revision-gravatar'
-(defvar gravatar-size)
-;; For `magit-show-commit' and `magit-diff-show-or-scroll'
-(declare-function magit-current-blame-chunk "magit-blame" ())
-(eval-when-compile
-  (cl-pushnew 'orig-rev eieio--known-slot-names))
-(declare-function magit-blame-mode "magit-blame" (&optional arg))
-(defvar magit-blame-mode)
-(defvar git-rebase-line)
-;; For `magit-diff-unmerged'
-(declare-function magit-merge-in-progress-p "magit-merge" ())
-(declare-function magit--merge-range "magit-merge" (&optional head))
-
-(require 'diff-mode)
-(require 'smerge-mode)
-
-(defvar bookmark-make-record-function)
-
-;;; Options
-;;;; Diff Mode
-
-(defgroup magit-diff nil
-  "Inspect and manipulate Git diffs."
-  :link '(info-link "(magit)Diffing")
-  :group 'magit-modes)
-
-(defcustom magit-diff-mode-hook nil
-  "Hook run after entering Magit-Diff mode."
-  :group 'magit-diff
-  :type 'hook)
-
-(defcustom magit-diff-arguments '("--stat" "--no-ext-diff")
-  "The diff arguments used in buffers whose mode derives from `magit-diff-mode'."
-  :group 'magit-git-arguments
-  :group 'magit-diff
-  :type '(repeat (string :tag "Argument")))
-
-(defcustom magit-diff-sections-hook
-  '(magit-insert-diff
-    magit-insert-xref-buttons)
-  "Hook run to insert sections into a `magit-diff-mode' buffer."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-diff
-  :type 'hook)
-
-(defcustom magit-diff-expansion-threshold 60
-  "After how many seconds not to expand anymore diffs.
-
-Except in status buffers, diffs are usually start out fully
-expanded.  Because that can take a long time, all diffs that
-haven't been fontified during a refresh before the threshold
-defined here are instead displayed with their bodies collapsed.
-
-Note that this can cause sections that were previously expanded
-to be collapsed.  So you should not pick a very low value here.
-
-The hook function `magit-diff-expansion-threshold' has to be a
-member of `magit-section-set-visibility-hook' for this option
-to have any effect."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-diff
-  :type 'float)
-
-(defcustom magit-diff-highlight-hunk-body t
-  "Whether to highlight bodies of selected hunk sections.
-This only has an effect if `magit-diff-highlight' is a
-member of `magit-section-highlight-hook', which see."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-diff
-  :type 'boolean)
-
-(defcustom magit-diff-highlight-hunk-region-functions
-  '(magit-diff-highlight-hunk-region-dim-outside
-    magit-diff-highlight-hunk-region-using-overlays)
-  "The functions used to highlight the hunk-internal region.
-
-`magit-diff-highlight-hunk-region-dim-outside' overlays the outside
-of the hunk internal selection with a face that causes the added and
-removed lines to have the same background color as context lines.
-This function should not be removed from the value of this option.
-
-`magit-diff-highlight-hunk-region-using-overlays' and
-`magit-diff-highlight-hunk-region-using-underline' emphasize the
-region by placing delimiting horizonal lines before and after it.
-The underline variant was implemented because Eli said that is
-how we should do it.  However the overlay variant actually works
-better.  Also see https://github.com/magit/magit/issues/2758.
-
-Instead of, or in addition to, using delimiting horizontal lines,
-to emphasize the boundaries, you may which to emphasize the text
-itself, using `magit-diff-highlight-hunk-region-using-face'.
-
-In terminal frames it's not possible to draw lines as the overlay
-and underline variants normally do, so there they fall back to
-calling the face function instead."
-  :package-version '(magit . "2.9.0")
-  :set-after '(magit-diff-show-lines-boundaries)
-  :group 'magit-diff
-  :type 'hook
-  :options '(magit-diff-highlight-hunk-region-dim-outside
-             magit-diff-highlight-hunk-region-using-underline
-             magit-diff-highlight-hunk-region-using-overlays
-             magit-diff-highlight-hunk-region-using-face))
-
-(defcustom magit-diff-unmarked-lines-keep-foreground t
-  "Whether `magit-diff-highlight-hunk-region-dim-outside' preserves foreground.
-When this is set to nil, then that function only adjusts the
-foreground color but added and removed lines outside the region
-keep their distinct foreground colors."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-diff
-  :type 'boolean)
-
-(defcustom magit-diff-refine-hunk nil
-  "Whether to show word-granularity differences within diff hunks.
-
-nil    never show fine differences.
-t      show fine differences for the current diff hunk only.
-`all'  show fine differences for all displayed diff hunks."
-  :group 'magit-diff
-  :safe (lambda (val) (memq val '(nil t all)))
-  :type '(choice (const :tag "Never" nil)
-                 (const :tag "Current" t)
-                 (const :tag "All" all)))
-
-(put 'magit-diff-refine-hunk 'permanent-local t)
-
-(defcustom magit-diff-adjust-tab-width nil
-  "Whether to adjust the width of tabs in diffs.
-
-Determining the correct width can be expensive if it requires
-opening large and/or many files, so the widths are cached in
-the variable `magit-diff--tab-width-cache'.  Set that to nil
-to invalidate the cache.
-
-nil       Never ajust tab width.  Use `tab-width's value from
-          the Magit buffer itself instead.
-
-t         If the corresponding file-visiting buffer exits, then
-          use `tab-width's value from that buffer.  Doing this is
-          cheap, so this value is used even if a corresponding
-          cache entry exists.
-
-`always'  If there is no such buffer, then temporarily visit the
-          file to determine the value.
-
-NUMBER    Like `always', but don't visit files larger than NUMBER
-          bytes."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-diff
-  :type '(choice (const :tag "Never" nil)
-                 (const :tag "If file-visiting buffer exists" t)
-                 (const :tag "... or file isn't larger than bytes" all)
-                 (const :tag "Always" always)))
-
-(defcustom magit-diff-paint-whitespace t
-  "Specify where to highlight whitespace errors.
-See `magit-diff-highlight-trailing',
-`magit-diff-highlight-indentation'.  The symbol t means in all
-diffs, `status' means only in the status buffer, and nil means
-nowhere."
-  :group 'magit-diff
-  :safe (lambda (val) (memq val '(t nil status)))
-  :type '(choice (const :tag "Always" t)
-                 (const :tag "Never" nil)
-                 (const :tag "In status buffer" status)))
-
-(defcustom magit-diff-highlight-trailing t
-  "Whether to highlight whitespace at the end of a line in diffs.
-Used only when `magit-diff-paint-whitespace' is non-nil."
-  :group 'magit-diff
-  :safe 'booleanp
-  :type 'boolean)
-
-(defcustom magit-diff-highlight-indentation nil
-  "Highlight the \"wrong\" indentation style.
-Used only when `magit-diff-paint-whitespace' is non-nil.
-
-The value is a list of cons cells.  The car is a regular
-expression, and the cdr is the value that applies to repositories
-whose directory matches the regular expression.  If more than one
-element matches, then the *last* element in the list applies.
-The default value should therefore come first in the list.
-
-If the value is `tabs', highlight indentation with tabs.  If the
-value is an integer, highlight indentation with at least that
-many spaces.  Otherwise, highlight neither."
-  :group 'magit-diff
-  :type `(repeat (cons (string :tag "Directory regexp")
-                       (choice (const :tag "Tabs" tabs)
-                               (integer :tag "Spaces" :value ,tab-width)
-                               (const :tag "Neither" nil)))))
-
-(defcustom magit-diff-hide-trailing-cr-characters
-  (and (memq system-type '(ms-dos windows-nt)) t)
-  "Whether to hide ^M characters at the end of a line in diffs."
-  :package-version '(magit . "2.6.0")
-  :group 'magit-diff
-  :type 'boolean)
-
-(defcustom magit-diff-visit-previous-blob t
-  "Whether `magit-diff-visit-file' may visit the previous blob.
-
-When this is t and point is on a removed line in a diff for a
-committed change, then `magit-diff-visit-file' visits the blob
-from the last revision which still had that line.
-
-Currently this is only supported for committed changes, for
-staged and unstaged changes `magit-diff-visit-file' always
-visits the file in the working tree."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-diff
-  :type 'boolean)
-
-(defcustom magit-diff-highlight-keywords t
-  "Whether to highlight bracketed keywords in commit messages."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-diff
-  :type 'boolean)
-
-;;;; File Diff
-
-(defcustom magit-diff-buffer-file-locked t
-  "Whether `magit-diff-buffer-file' uses a dedicated buffer."
-  :package-version '(magit . "2.7.0")
-  :group 'magit-commands
-  :group 'magit-diff
-  :type 'boolean)
-
-;;;; Revision Mode
-
-(defgroup magit-revision nil
-  "Inspect and manipulate Git commits."
-  :link '(info-link "(magit)Revision Buffer")
-  :group 'magit-modes)
-
-(defcustom magit-revision-mode-hook '(bug-reference-mode)
-  "Hook run after entering Magit-Revision mode."
-  :group 'magit-revision
-  :type 'hook
-  :options '(bug-reference-mode))
-
-(defcustom magit-revision-sections-hook
-  '(magit-insert-revision-tag
-    magit-insert-revision-headers
-    magit-insert-revision-message
-    magit-insert-revision-notes
-    magit-insert-revision-diff
-    magit-insert-xref-buttons)
-  "Hook run to insert sections into a `magit-revision-mode' buffer."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-revision
-  :type 'hook)
-
-(defcustom magit-revision-headers-format "\
-Author:     %aN <%aE>
-AuthorDate: %ad
-Commit:     %cN <%cE>
-CommitDate: %cd
-"
-  "Format string used to insert headers in revision buffers.
-
-All headers in revision buffers are inserted by the section
-inserter `magit-insert-revision-headers'.  Some of the headers
-are created by calling `git show --format=FORMAT' where FORMAT
-is the format specified here.  Other headers are hard coded or
-subject to option `magit-revision-insert-related-refs'."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-revision
-  :type 'string)
-
-(defcustom magit-revision-insert-related-refs t
-  "Whether to show related branches in revision buffers
-
-`nil'   Don't show any related branches.
-`t'     Show related local branches.
-`all'   Show related local and remote branches.
-`mixed' Show all containing branches and local merged branches."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-revision
-  :type '(choice (const :tag "don't" nil)
-                 (const :tag "local only" t)
-                 (const :tag "all related" all)
-                 (const :tag "all containing, local merged" mixed)))
-
-(defcustom magit-revision-use-hash-sections 'quicker
-  "Whether to turn hashes inside the commit message into sections.
-
-If non-nil, then hashes inside the commit message are turned into
-`commit' sections.  There is a trade off to be made between
-performance and reliability:
-
-- `slow' calls git for every word to be absolutely sure.
-- `quick' skips words less than seven characters long.
-- `quicker' additionally skips words that don't contain a number.
-- `quickest' uses all words that are at least seven characters
-  long and which contain at least one number as well as at least
-  one letter.
-
-If nil, then no hashes are turned into sections, but you can
-still visit the commit at point using \"RET\"."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-revision
-  :type '(choice (const :tag "Use sections, quickest" quickest)
-                 (const :tag "Use sections, quicker" quicker)
-                 (const :tag "Use sections, quick" quick)
-                 (const :tag "Use sections, slow" slow)
-                 (const :tag "Don't use sections" nil)))
-
-(defcustom magit-revision-show-gravatars nil
-  "Whether to show gravatar images in revision buffers.
-
-If nil, then don't insert any gravatar images.  If t, then insert
-both images.  If `author' or `committer', then insert only the
-respective image.
-
-If you have customized the option `magit-revision-header-format'
-and want to insert the images then you might also have to specify
-where to do so.  In that case the value has to be a cons-cell of
-two regular expressions.  The car specifies where to insert the
-author's image.  The top half of the image is inserted right
-after the matched text, the bottom half on the next line in the
-same column.  The cdr specifies where to insert the committer's
-image, accordingly.  Either the car or the cdr may be nil."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-revision
-  :type '(choice (const :tag "Don't show gravatars" nil)
-                 (const :tag "Show gravatars" t)
-                 (const :tag "Show author gravatar" author)
-                 (const :tag "Show committer gravatar" committer)
-                 (cons  :tag "Show gravatars using custom pattern."
-                        (regexp :tag "Author regexp"    "^Author:     ")
-                        (regexp :tag "Committer regexp" "^Commit:     "))))
-
-(defcustom magit-revision-use-gravatar-kludge nil
-  "Whether to work around a bug which affects display of gravatars.
-
-Gravatar images are spliced into two halves which are then
-displayed on separate lines.  On OS X the splicing has a bug in
-some Emacs builds, which causes the top and bottom halves to be
-interchanged.  Enabling this option works around this issue by
-interchanging the halves once more, which cancels out the effect
-of the bug.
-
-See https://github.com/magit/magit/issues/2265
-and https://debbugs.gnu.org/cgi/bugreport.cgi?bug=7847.
-
-Starting with Emacs 26.1 this kludge should not be required for
-any build."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-revision
-  :type 'boolean)
-
-(defcustom magit-revision-fill-summary-line nil
-  "Whether to fill excessively long summary lines.
-
-If this is an integer, then the summary line is filled if it is
-longer than either the limit specified here or `window-width'.
-
-You may want to only set this locally in \".dir-locals-2.el\" for
-repositories known to contain bad commit messages.
-
-The body of the message is left alone because (a) most people who
-write excessively long summary lines usually don't add a body and
-(b) even people who have the decency to wrap their lines may have
-a good reason to include a long line in the body sometimes."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-revision
-  :type '(choice (const   :tag "Don't fill" nil)
-                 (integer :tag "Fill if longer than")))
-
-;;;; Diff Sections
-
-(defcustom magit-diff-section-arguments '("--no-ext-diff")
-  "The diff arguments used in buffers that show other things besides diffs."
-  :group 'magit-git-arguments
-  :group 'magit-diff
-  :group 'magit-status
-  :type '(repeat (string :tag "Argument")))
-
-(put 'magit-diff-section-arguments 'permanent-local t)
-
-;;; Faces
-
-(defface magit-diff-file-heading
-  '((t :weight bold))
-  "Face for diff file headings."
-  :group 'magit-faces)
-
-(defface magit-diff-file-heading-highlight
-  '((t :inherit (magit-section-highlight)))
-  "Face for current diff file headings."
-  :group 'magit-faces)
-
-(defface magit-diff-file-heading-selection
-  '((((class color) (background light))
-     :inherit magit-diff-file-heading-highlight
-     :foreground "salmon4")
-    (((class color) (background dark))
-     :inherit magit-diff-file-heading-highlight
-     :foreground "LightSalmon3"))
-  "Face for selected diff file headings."
-  :group 'magit-faces)
-
-(defface magit-diff-hunk-heading
-  '((((class color) (background light))
-     :background "grey80"
-     :foreground "grey30")
-    (((class color) (background dark))
-     :background "grey25"
-     :foreground "grey70"))
-  "Face for diff hunk headings."
-  :group 'magit-faces)
-
-(defface magit-diff-hunk-heading-highlight
-  '((((class color) (background light))
-     :background "grey75"
-     :foreground "grey30")
-    (((class color) (background dark))
-     :background "grey35"
-     :foreground "grey70"))
-  "Face for current diff hunk headings."
-  :group 'magit-faces)
-
-(defface magit-diff-hunk-heading-selection
-  '((((class color) (background light))
-     :inherit magit-diff-hunk-heading-highlight
-     :foreground "salmon4")
-    (((class color) (background dark))
-     :inherit magit-diff-hunk-heading-highlight
-     :foreground "LightSalmon3"))
-  "Face for selected diff hunk headings."
-  :group 'magit-faces)
-
-(defface magit-diff-hunk-region
-  '((t :inherit bold))
-  "Face used by `magit-diff-highlight-hunk-region-using-face'.
-
-This face is overlayed over text that uses other hunk faces,
-and those normally set the foreground and background colors.
-The `:foreground' and especially the `:background' properties
-should be avoided here.  Setting the latter would cause the
-lose of information.  Good properties to set here are `:weight'
-and `:slant'."
-  :group 'magit-faces)
-
-(defface magit-diff-lines-heading
-  '((((class color) (background light))
-     :inherit magit-diff-hunk-heading-highlight
-     :background "LightSalmon3")
-    (((class color) (background dark))
-     :inherit magit-diff-hunk-heading-highlight
-     :foreground "grey80"
-     :background "salmon4"))
-  "Face for diff hunk heading when lines are marked."
-  :group 'magit-faces)
-
-(defface magit-diff-lines-boundary
-  '((t :inherit magit-diff-lines-heading))
-  "Face for boundary of marked lines in diff hunk."
-  :group 'magit-faces)
-
-(defface magit-diff-conflict-heading
-  '((t :inherit magit-diff-hunk-heading))
-  "Face for conflict markers."
-  :group 'magit-faces)
-
-(defface magit-diff-added
-  '((((class color) (background light))
-     :background "#ddffdd"
-     :foreground "#22aa22")
-    (((class color) (background dark))
-     :background "#335533"
-     :foreground "#ddffdd"))
-  "Face for lines in a diff that have been added."
-  :group 'magit-faces)
-
-(defface magit-diff-removed
- '((((class color) (background light))
-    :background "#ffdddd"
-    :foreground "#aa2222")
-   (((class color) (background dark))
-    :background "#553333"
-    :foreground "#ffdddd"))
-  "Face for lines in a diff that have been removed."
-  :group 'magit-faces)
-
-(defface magit-diff-our
-  '((t :inherit magit-diff-removed))
-  "Face for lines in a diff for our side in a conflict."
-  :group 'magit-faces)
-
-(defface magit-diff-base
-  '((((class color) (background light))
-     :background "#ffffcc"
-     :foreground "#aaaa11")
-    (((class color) (background dark))
-     :background "#555522"
-     :foreground "#ffffcc"))
-  "Face for lines in a diff for the base side in a conflict."
-  :group 'magit-faces)
-
-(defface magit-diff-their
-  '((t :inherit magit-diff-added))
-  "Face for lines in a diff for their side in a conflict."
-  :group 'magit-faces)
-
-(defface magit-diff-context
-  '((((class color) (background light)) :foreground "grey50")
-    (((class color) (background  dark)) :foreground "grey70"))
-  "Face for lines in a diff that are unchanged."
-  :group 'magit-faces)
-
-(defface magit-diff-added-highlight
-  '((((class color) (background light))
-     :background "#cceecc"
-     :foreground "#22aa22")
-    (((class color) (background dark))
-     :background "#336633"
-     :foreground "#cceecc"))
-  "Face for lines in a diff that have been added."
-  :group 'magit-faces)
-
-(defface magit-diff-removed-highlight
-  '((((class color) (background light))
-     :background "#eecccc"
-     :foreground "#aa2222")
-    (((class color) (background dark))
-     :background "#663333"
-     :foreground "#eecccc"))
-  "Face for lines in a diff that have been removed."
-  :group 'magit-faces)
-
-(defface magit-diff-our-highlight
-  '((t :inherit magit-diff-removed-highlight))
-  "Face for lines in a diff for our side in a conflict."
-  :group 'magit-faces)
-
-(defface magit-diff-base-highlight
-  '((((class color) (background light))
-     :background "#eeeebb"
-     :foreground "#aaaa11")
-    (((class color) (background dark))
-     :background "#666622"
-     :foreground "#eeeebb"))
-  "Face for lines in a diff for the base side in a conflict."
-  :group 'magit-faces)
-
-(defface magit-diff-their-highlight
-  '((t :inherit magit-diff-added-highlight))
-  "Face for lines in a diff for their side in a conflict."
-  :group 'magit-faces)
-
-(defface magit-diff-context-highlight
-  '((((class color) (background light))
-     :background "grey95"
-     :foreground "grey50")
-    (((class color) (background dark))
-     :background "grey20"
-     :foreground "grey70"))
-  "Face for lines in the current context in a diff."
-  :group 'magit-faces)
-
-(defface magit-diff-whitespace-warning
-  '((t :inherit trailing-whitespace))
-  "Face for highlighting whitespace errors added lines."
-  :group 'magit-faces)
-
-(defface magit-diffstat-added
-  '((((class color) (background light)) :foreground "#22aa22")
-    (((class color) (background  dark)) :foreground "#448844"))
-  "Face for plus sign in diffstat."
-  :group 'magit-faces)
-
-(defface magit-diffstat-removed
-  '((((class color) (background light)) :foreground "#aa2222")
-    (((class color) (background  dark)) :foreground "#aa4444"))
-  "Face for minus sign in diffstat."
-  :group 'magit-faces)
-
-;;; Commands
-;;;; Diff popups
-
-(defconst magit-diff-popup-common-keywords
-  '(:variable magit-diff-arguments
-              :man-page "git-diff"))
-
-(defconst magit-diff-popup-common-options
-  '((?f "Limit to files" "-- " magit-read-files)
-    (?u "Context lines"  "-U")
-    (?m "Detect renames" "-M")
-    (?c "Detect copies"  "-C")
-    (?a "Diff algorithm" "--diff-algorithm=" magit-diff-select-algorithm)
-    (?i "Ignore submodules" "--ignore-submodules="
-        magit-diff-select-ignore-submodules)))
-
-(defconst magit-diff-popup-common-switches
-  '((?f "Show surrounding functions"     "--function-context")
-    (?b "Ignore whitespace changes"      "--ignore-space-change")
-    (?w "Ignore all whitespace"          "--ignore-all-space")
-    (?x "Disallow external diff drivers" "--no-ext-diff")))
-
-(defvar magit-diff-popup
-  `(,@magit-diff-popup-common-keywords
-    :options  ,magit-diff-popup-common-options
-    :switches (,@magit-diff-popup-common-switches
-               (?s "Show stats" "--stat"))
-    :actions  ((?d "Dwim"          magit-diff-dwim)
-               (?u "Diff unstaged" magit-diff-unstaged)
-               (?c "Show commit"   magit-show-commit)
-               (?r "Diff range"    magit-diff-range)
-               (?s "Diff staged"   magit-diff-staged)
-               (?t "Show stash"    magit-stash-show)
-               (?p "Diff paths"    magit-diff-paths)
-               (?w "Diff worktree" magit-diff-working-tree))
-    :default-action magit-diff-dwim
-    :max-action-columns 3))
-
-(defvar magit-diff-refresh-popup
-  `(,@magit-diff-popup-common-keywords
-    :options  ,magit-diff-popup-common-options
-    :switches ,magit-diff-popup-common-switches
-    :actions  ((?g "Refresh"                magit-diff-refresh)
-               (?t "Toggle hunk refinement" magit-diff-toggle-refine-hunk)
-               (?s "Set defaults"           magit-diff-set-default-arguments)
-               (?F "Toggle file filter"     magit-diff-toggle-file-filter)
-               (?w "Save defaults"          magit-diff-save-default-arguments))
-    :max-action-columns 2))
-
-(defvar magit-diff-mode-refresh-popup
-  `(,@magit-diff-popup-common-keywords
-    :options  ,magit-diff-popup-common-options
-    :switches (,@magit-diff-popup-common-switches
-               (?s "Show stats" "--stat"))
-    :actions  ((?g "Refresh"                magit-diff-refresh)
-               (?t "Toggle hunk refinement" magit-diff-toggle-refine-hunk)
-               (?s "Set defaults"           magit-diff-set-default-arguments)
-               (?r "Switch range type"      magit-diff-switch-range-type)
-               (?w "Save defaults"          magit-diff-save-default-arguments)
-               (?f "Flip revisions"         magit-diff-flip-revs) nil
-               (?F "Toggle file filter"     magit-diff-toggle-file-filter))
-    :max-action-columns 2))
-
-(defvar magit-revision-mode-refresh-popup
-  `(,@magit-diff-popup-common-keywords
-    :options  ,magit-diff-popup-common-options
-    :switches (,@magit-diff-popup-common-switches
-               (?s "Show stats" "--stat"))
-    :actions  ((?g "Refresh"                magit-diff-refresh)
-               (?t "Toggle hunk refinement" magit-diff-toggle-refine-hunk)
-               (?s "Set defaults"           magit-diff-set-default-arguments)
-               (?F "Toggle file filter"     magit-diff-toggle-file-filter)
-               (?w "Save defaults"          magit-diff-save-default-arguments))
-    :max-action-columns 2))
-
-(magit-define-popup-keys-deferred 'magit-diff-popup)
-(magit-define-popup-keys-deferred 'magit-diff-refresh-popup)
-(magit-define-popup-keys-deferred 'magit-diff-mode-refresh-popup)
-(magit-define-popup-keys-deferred 'magit-revision-mode-refresh-popup)
-
-(defvar magit-diff-section-file-args nil)
-(put 'magit-diff-section-file-args 'permanent-local t)
-(put 'magit-diff-section-file-args 'safe-local-variable
-     (lambda (val)
-       (and (listp val)
-            (-all-p #'stringp val))))
-
-(defun magit-diff-get-buffer-args ()
-  (cond ((and magit-use-sticky-arguments
-              (derived-mode-p 'magit-diff-mode))
-         (list (nth 2 magit-refresh-args)
-               (nth 3 magit-refresh-args)))
-        ((and (eq magit-use-sticky-arguments t)
-              (--when-let (magit-mode-get-buffer 'magit-diff-mode)
-                (with-current-buffer it
-                  (list (nth 2 magit-refresh-args)
-                        (nth 3 magit-refresh-args))))))
-        (t
-         (list (default-value 'magit-diff-arguments) nil))))
-
-(defun magit-diff-arguments (&optional refresh)
-  (cond ((memq magit-current-popup '(magit-diff-popup magit-diff-refresh-popup))
-         (magit-popup-export-file-args magit-current-popup-args))
-        ((and refresh (not (derived-mode-p 'magit-diff-mode)))
-         (list magit-diff-section-arguments
-               magit-diff-section-file-args))
-        (t
-         (magit-diff-get-buffer-args))))
-
-;;;###autoload
-(defun magit-diff-popup (arg)
-  "Popup console for diff commands."
-  (interactive "P")
-  (let ((magit-diff-arguments
-         ;; We cannot possibly know what suffix command the user is
-         ;; about to invoke, so we also don't know from which buffer
-         ;; we should get the current values.  However it is much
-         ;; more likely that we will end up updating the diff buffer,
-         ;; and we therefore use the value from that buffer.
-         (apply #'magit-popup-import-file-args (magit-diff-get-buffer-args))))
-    (magit-invoke-popup 'magit-diff-popup nil arg)))
-
-;;;###autoload
-(defun magit-diff-buffer-file-popup ()
-  "Popup console for diff commands.
-
-This is a variant of `magit-diff-popup' which shows the same popup
-but which limits the diff to the file being visited in the current
-buffer."
-  (interactive)
-  (if-let ((file (magit-file-relative-name)))
-      (let ((magit-diff-arguments
-             (magit-popup-import-file-args
-              (if-let ((buffer (magit-mode-get-buffer 'magit-diff-mode)))
-                  (with-current-buffer buffer
-                    (nth 3 magit-refresh-args))
-                (default-value 'magit-diff-arguments))
-              (list file))))
-        (magit-invoke-popup 'magit-diff-popup nil nil))
-    (user-error "Buffer isn't visiting a file")))
-
-(defun magit-diff-refresh-popup (arg)
-  "Popup console for changing diff arguments in the current buffer."
-  (interactive "P")
-  (let ((magit-diff-refresh-popup
-         (pcase major-mode
-           (`magit-revision-mode magit-revision-mode-refresh-popup)
-           (`magit-diff-mode     magit-diff-mode-refresh-popup)
-           (_                    magit-diff-refresh-popup)))
-        (magit-diff-arguments
-         (if (derived-mode-p 'magit-diff-mode)
-             (magit-popup-import-file-args (nth 2 magit-refresh-args)
-                                           (nth 3 magit-refresh-args))
-           (magit-popup-import-file-args magit-diff-section-arguments
-                                         magit-diff-section-file-args))))
-    (magit-invoke-popup 'magit-diff-refresh-popup nil arg)))
-
-(defun magit-diff-select-algorithm (&rest _ignore)
-  (magit-read-char-case nil t
-    (?d "[d]efault"   "default")
-    (?m "[m]inimal"   "minimal")
-    (?p "[p]atience"  "patience")
-    (?h "[h]istogram" "histogram")))
-
-(defun magit-diff-select-ignore-submodules (&rest _ignored)
-  (magit-read-char-case "Ignore submodules " t
-    (?u "[u]ntracked" "untracked")
-    (?d "[d]irty"     "dirty")
-    (?a "[a]ll"       "all")))
-
-;;;; Diff commands
-
-;;;###autoload
-(defun magit-diff-dwim (&optional args files)
-  "Show changes for the thing at point."
-  (interactive (magit-diff-arguments))
-  (pcase (magit-diff--dwim)
-    (`unmerged (magit-diff-unmerged args files))
-    (`unstaged (magit-diff-unstaged args files))
-    (`staged
-     (let ((file (magit-file-at-point)))
-       (if (and file (equal (cddr (car (magit-file-status file))) '(?D ?U)))
-           ;; File was deleted by us and modified by them.  Show the latter.
-           (magit-diff-unmerged args (list file))
-         (magit-diff-staged nil args files))))
-    (`(commit . ,value)
-     (magit-diff-range (format "%s^..%s" value value) args files))
-    (`(stash  . ,value) (magit-stash-show value args))
-    ((and range (pred stringp))
-     (magit-diff-range range args files))
-    (_
-     (call-interactively #'magit-diff-range))))
-
-(defun magit-diff--dwim ()
-  "Return information for performing DWIM diff.
-
-The information can be in three forms:
-1. TYPE
-   A symbol describing a type of diff where no additional information
-   is needed to generate the diff.  Currently, this includes `staged',
-   `unstaged' and `unmerged'.
-2. (TYPE . VALUE)
-   Like #1 but the diff requires additional information, which is
-   given by VALUE.  Currently, this includes `commit' and `stash',
-   where VALUE is the given commit or stash, respectively.
-3. RANGE
-   A string indicating a diff range.
-
-If no DWIM context is found, nil is returned."
-  (cond
-   ((--when-let (magit-region-values '(commit branch) t)
-      (deactivate-mark)
-      (concat (car (last it)) ".." (car it))))
-   (magit-buffer-refname
-    (cons 'commit magit-buffer-refname))
-   ((derived-mode-p 'magit-stash-mode)
-    (cons 'commit
-          (magit-section-case
-            (commit (oref it value))
-            (file (-> it
-                      (oref parent)
-                      (oref value)))
-            (hunk (-> it
-                      (oref parent)
-                      (oref parent)
-                      (oref value))))))
-   ((derived-mode-p 'magit-revision-mode)
-    (cons 'commit (car magit-refresh-args)))
-   ((derived-mode-p 'magit-diff-mode)
-    (nth 0 magit-refresh-args))
-   (t
-    (magit-section-case
-      ([* unstaged] 'unstaged)
-      ([* staged] 'staged)
-      (unmerged 'unmerged)
-      (unpushed (oref it value))
-      (unpulled (oref it value))
-      (branch (let ((current (magit-get-current-branch))
-                    (atpoint (oref it value)))
-                (if (equal atpoint current)
-                    (--if-let (magit-get-upstream-branch)
-                        (format "%s...%s" it current)
-                      (if (magit-anything-modified-p)
-                          current
-                        (cons 'commit current)))
-                  (format "%s...%s"
-                          (or current "HEAD")
-                          atpoint))))
-      (commit (cons 'commit (oref it value)))
-      (stash (cons 'stash (oref it value)))))))
-
-(defun magit-diff-read-range-or-commit (prompt &optional secondary-default mbase)
-  "Read range or revision with special diff range treatment.
-If MBASE is non-nil, prompt for which rev to place at the end of
-a \"revA...revB\" range.  Otherwise, always construct
-\"revA..revB\" range."
-  (--if-let (magit-region-values '(commit branch) t)
-      (let ((revA (car (last it)))
-            (revB (car it)))
-        (deactivate-mark)
-        (if mbase
-            (let ((base (magit-git-string "merge-base" revA revB)))
-              (cond
-               ((string= (magit-rev-parse revA) base)
-                (format "%s..%s" revA revB))
-               ((string= (magit-rev-parse revB) base)
-                (format "%s..%s" revB revA))
-               (t
-                (let ((main (magit-completing-read "View changes along"
-                                                   (list revA revB)
-                                                   nil t nil nil revB)))
-                  (format "%s...%s"
-                          (if (string= main revB) revA revB) main)))))
-          (format "%s..%s" revA revB)))
-    (magit-read-range prompt
-                      (or (pcase (magit-diff--dwim)
-                            (`(commit . ,value)
-                             (format "%s^..%s" value value))
-                            ((and range (pred stringp))
-                             range))
-                          secondary-default
-                          (magit-get-current-branch)))))
-
-(defun magit-diff-setup (rev-or-range const args files)
-  (require 'magit)
-  (magit-mode-setup #'magit-diff-mode rev-or-range const args files))
-
-;;;###autoload
-(defun magit-diff-range (rev-or-range &optional args files)
-  "Show differences between two commits.
-
-REV-OR-RANGE should be a range or a single revision.  If it is a
-revision, then show changes in the working tree relative to that
-revision.  If it is a range, but one side is omitted, then show
-changes relative to `HEAD'.
-
-If the region is active, use the revisions on the first and last
-line of the region as the two sides of the range.  With a prefix
-argument, instead of diffing the revisions, choose a revision to
-view changes along, starting at the common ancestor of both
-revisions (i.e., use a \"...\" range)."
-  (interactive (cons (magit-diff-read-range-or-commit "Diff for range"
-                                                      nil current-prefix-arg)
-                     (magit-diff-arguments)))
-  (magit-diff-setup rev-or-range nil args files))
-
-;;;###autoload
-(defun magit-diff-working-tree (&optional rev args files)
-  "Show changes between the current working tree and the `HEAD' commit.
-With a prefix argument show changes between the working tree and
-a commit read from the minibuffer."
-  (interactive
-   (cons (and current-prefix-arg
-              (magit-read-branch-or-commit "Diff working tree and commit"))
-         (magit-diff-arguments)))
-  (magit-diff-setup (or rev "HEAD") nil args files))
-
-;;;###autoload
-(defun magit-diff-staged (&optional rev args files)
-  "Show changes between the index and the `HEAD' commit.
-With a prefix argument show changes between the index and
-a commit read from the minibuffer."
-  (interactive
-   (cons (and current-prefix-arg
-              (magit-read-branch-or-commit "Diff index and commit"))
-         (magit-diff-arguments)))
-  (magit-diff-setup rev (list "--cached") args files))
-
-;;;###autoload
-(defun magit-diff-unstaged (&optional args files)
-  "Show changes between the working tree and the index."
-  (interactive (magit-diff-arguments))
-  (magit-diff-setup nil nil args files))
-
-;;;###autoload
-(defun magit-diff-unmerged (&optional args files)
-  "Show changes that are being merged."
-  (interactive (magit-diff-arguments))
-  (unless (magit-merge-in-progress-p)
-    (user-error "No merge is in progress"))
-  (magit-diff-setup (magit--merge-range) nil args files))
-
-;;;###autoload
-(defun magit-diff-while-committing (&optional args)
-  "While committing, show the changes that are about to be committed.
-While amending, invoking the command again toggles between
-showing just the new changes or all the changes that will
-be committed."
-  (interactive (list (car (magit-diff-arguments))))
-  (unless (magit-commit-message-buffer)
-    (user-error "No commit in progress"))
-  (let ((magit-display-buffer-noselect t)
-        (diff-buf (magit-mode-get-buffer 'magit-diff-mode)))
-    (if (and diff-buf
-             (get-buffer-window diff-buf))
-        (with-current-buffer diff-buf
-          (pcase-let ((`(,rev ,arg . ,_) magit-refresh-args))
-            (cond ((and (equal rev "HEAD^")
-                        (equal arg '("--cached")))
-                   (magit-diff-staged nil args))
-                  ((and (equal rev nil)
-                        (equal arg '("--cached")))
-                   (magit-diff-while-amending args))
-                  ((magit-anything-staged-p)
-                   (magit-diff-staged nil args))
-                  (t
-                   (magit-diff-while-amending args)))))
-      (if (magit-anything-staged-p)
-          (magit-diff-staged nil args)
-        (magit-diff-while-amending args)))))
-
-(define-key git-commit-mode-map
-  (kbd "C-c C-d") 'magit-diff-while-committing)
-
-(defun magit-diff-while-amending (&optional args)
-  (magit-diff-setup "HEAD^" (list "--cached") args nil))
-
-;;;###autoload
-(defun magit-diff-buffer-file ()
-  "Show diff for the blob or file visited in the current buffer."
-  (interactive)
-  (require 'magit)
-  (if-let ((file (magit-file-relative-name)))
-      (magit-mode-setup-internal #'magit-diff-mode
-                                 (list (or magit-buffer-refname
-                                           (magit-get-current-branch)
-                                           "HEAD")
-                                       nil
-                                       (cadr (magit-diff-arguments))
-                                       (list file))
-                                 magit-diff-buffer-file-locked)
-    (user-error "Buffer isn't visiting a file")))
-
-;;;###autoload
-(defun magit-diff-paths (a b)
-  "Show changes between any two files on disk."
-  (interactive (list (read-file-name "First file: " nil nil t)
-                     (read-file-name "Second file: " nil nil t)))
-  (magit-diff-setup nil (list "--no-index")
-                    nil (list (magit-convert-filename-for-git
-                               (expand-file-name a))
-                              (magit-convert-filename-for-git
-                               (expand-file-name b)))))
-
-(defvar-local magit-buffer-revision-hash nil)
-
-(defun magit-show-commit--arguments ()
-  (pcase-let ((`(,args ,diff-files) (magit-diff-arguments)))
-    (list args (if (derived-mode-p 'magit-log-mode)
-                   (and (not (member "--follow" (nth 1 magit-refresh-args)))
-                        (nth 2 magit-refresh-args))
-                 diff-files))))
-
-;;;###autoload
-(defun magit-show-commit (rev &optional args files module)
-  "Visit the revision at point in another buffer.
-If there is no revision at point or with a prefix argument prompt
-for a revision."
-  (interactive
-   (pcase-let* ((mcommit (magit-section-value-if 'module-commit))
-                (atpoint (or (and (bound-and-true-p magit-blame-mode)
-                                  (oref (magit-current-blame-chunk) orig-rev))
-                             mcommit
-                             (magit-branch-or-commit-at-point)))
-                (`(,args ,files) (magit-show-commit--arguments)))
-     (list (or (and (not current-prefix-arg) atpoint)
-               (magit-read-branch-or-commit "Show commit" atpoint))
-           args
-           files
-           (and mcommit
-                (magit-section-parent-value (magit-current-section))))))
-  (require 'magit)
-  (magit-with-toplevel
-    (when module
-      (setq default-directory
-            (expand-file-name (file-name-as-directory module))))
-    (unless (magit-rev-verify-commit rev)
-      (user-error "%s is not a commit" rev))
-    (magit-mode-setup #'magit-revision-mode rev nil args files)))
-
-;;;; Setting commands
-
-(defun magit-diff-refresh (args files)
-  "Set the local diff arguments for the current buffer."
-  (interactive (magit-diff-arguments t))
-  (cond ((derived-mode-p 'magit-diff-mode)
-         (setcdr (cdr magit-refresh-args) (list args files)))
-        (t
-         (setq-local magit-diff-section-arguments args)
-         (setq-local magit-diff-section-file-args files)))
-  (magit-refresh))
-
-(defun magit-diff-set-default-arguments (args files)
-  "Set the global diff arguments for the current buffer."
-  (interactive (magit-diff-arguments t))
-  (cond ((derived-mode-p 'magit-diff-mode)
-         (customize-set-variable 'magit-diff-arguments args)
-         (setcdr (cdr magit-refresh-args) (list args files)))
-        (t
-         (customize-set-variable 'magit-diff-section-arguments args)
-         (kill-local-variable 'magit-diff-section-arguments)
-         (kill-local-variable 'magit-diff-section-file-args)))
-  (magit-refresh))
-
-(defun magit-diff-save-default-arguments (args files)
-  "Set and save the global diff arguments for the current buffer."
-  (interactive (magit-diff-arguments t))
-  (cond ((derived-mode-p 'magit-diff-mode)
-         (customize-save-variable 'magit-diff-arguments args)
-         (setcdr (cdr magit-refresh-args) (list args files)))
-        (t
-         (customize-save-variable 'magit-diff-section-arguments args)
-         (kill-local-variable 'magit-diff-section-arguments)
-         (kill-local-variable 'magit-diff-section-file-args)))
-  (magit-refresh))
-
-(defun magit-diff-switch-range-type ()
-  "Convert diff range type.
-Change \"revA..revB\" to \"revB...revA\", or vice versa."
-  (interactive)
-  (let ((range (car magit-refresh-args)))
-    (if (and range
-             (derived-mode-p 'magit-diff-mode)
-             (string-match magit-range-re range))
-        (progn
-          (setcar magit-refresh-args
-                  (concat (match-string 1 range)
-                          (if (string= (match-string 2 range) "..")
-                              "..."
-                            "..")
-                          (match-string 3 range)))
-          (magit-refresh))
-      (user-error "No range to change"))))
-
-(defun magit-diff-flip-revs ()
-  "Swap revisions in diff range.
-Change \"revA..revB\" to \"revB..revA\"."
-  (interactive)
-  (let ((range (car magit-refresh-args)))
-    (if (and range
-             (derived-mode-p 'magit-diff-mode)
-             (string-match magit-range-re range))
-        (progn
-          (setcar magit-refresh-args
-                  (concat (match-string 3 range)
-                          (match-string 2 range)
-                          (match-string 1 range)))
-          (magit-refresh))
-      (user-error "No range to swap"))))
-
-(defvar-local magit-diff--last-file-args nil)
-(defun magit-diff--toggle-file-args (files)
-  (cond (files
-         (setq magit-diff--last-file-args files)
-               nil)
-        (magit-diff--last-file-args)
-        (t
-         (user-error "No diff file filter to toggle"))))
-
-(defun magit-diff-toggle-file-filter ()
-  "Toggle the file restriction of the current buffer's diffs.
-If the current buffer's mode is derived from `magit-log-mode',
-toggle the file restriction in the repository's revision buffer
-instead."
-  (interactive)
-  (--if-let (and (derived-mode-p 'magit-log-mode)
-                 (magit-mode-get-buffer 'magit-revision-mode))
-      (with-current-buffer it
-        (setf (nth 3 magit-refresh-args)
-              (magit-diff--toggle-file-args (nth 3 magit-refresh-args)))
-        (magit-refresh))
-    (if (derived-mode-p 'magit-diff-mode)
-        (setf (nth 3 magit-refresh-args)
-              (magit-diff--toggle-file-args (nth 3 magit-refresh-args)))
-      (setq-local magit-diff-section-file-args
-                  (magit-diff--toggle-file-args magit-diff-section-file-args)))
-    (magit-refresh)))
-
-(defun magit-diff-less-context (&optional count)
-  "Decrease the context for diff hunks by COUNT lines."
-  (interactive "p")
-  (magit-diff-set-context `(lambda (cur) (max 0 (- (or cur 0) ,count)))))
-
-(defun magit-diff-more-context (&optional count)
-  "Increase the context for diff hunks by COUNT lines."
-  (interactive "p")
-  (magit-diff-set-context `(lambda (cur) (+ (or cur 0) ,count))))
-
-(defun magit-diff-default-context ()
-  "Reset context for diff hunks to the default height."
-  (interactive)
-  (magit-diff-set-context #'ignore))
-
-(defun magit-diff-set-context (fn)
-  (let* ((def (--if-let (magit-get "diff.context") (string-to-number it) 3))
-         (val (car (magit-diff-arguments t)))
-         (arg (--first (string-match "^-U\\([0-9]+\\)?$" it) val))
-         (num (--if-let (and arg (match-string 1 arg)) (string-to-number it) def))
-         (val (delete arg val))
-         (num (funcall fn num))
-         (arg (and num (not (= num def)) (format "-U%i" num)))
-         (val (if arg (cons arg val) val)))
-    (if (derived-mode-p 'magit-diff-mode)
-        (setcar (cddr magit-refresh-args) val)
-      (setq magit-diff-section-arguments val)))
-  (magit-refresh))
-
-(defun magit-diff-context-p ()
-  (--if-let (--first (string-match "^-U\\([0-9]+\\)$" it)
-                     (car (magit-diff-arguments t)))
-      (not (equal "-U0" it))
-    t))
-
-(defun magit-diff-ignore-any-space-p ()
-  (let ((args (car (magit-diff-arguments t))))
-    (--any-p (member it args)
-             '("--ignore-cr-at-eol"
-               "--ignore-space-at-eol"
-               "--ignore-space-change" "-b"
-               "--ignore-all-space" "-w"
-               "--ignore-blank-space"))))
-
-(defun magit-diff-toggle-refine-hunk (&optional style)
-  "Turn diff-hunk refining on or off.
-
-If hunk refining is currently on, then hunk refining is turned off.
-If hunk refining is off, then hunk refining is turned on, in
-`selected' mode (only the currently selected hunk is refined).
-
-With a prefix argument, the \"third choice\" is used instead:
-If hunk refining is currently on, then refining is kept on, but
-the refining mode (`selected' or `all') is switched.
-If hunk refining is off, then hunk refining is turned on, in
-`all' mode (all hunks refined).
-
-Customize variable `magit-diff-refine-hunk' to change the default mode."
-  (interactive "P")
-  (setq-local magit-diff-refine-hunk
-              (if style
-                  (if (eq magit-diff-refine-hunk 'all) t 'all)
-                (not magit-diff-refine-hunk)))
-  (magit-diff-update-hunk-refinement))
-
-;;;; Visit commands
-
-(defun magit-diff-visit-file
-    (file &optional other-window force-worktree display-fn)
-  "From a diff, visit the corresponding file at the appropriate position.
-
-If the diff shows changes in the worktree, the index, or `HEAD',
-then visit the actual file.  Otherwise, when the diff is about an
-older commit or a range, then visit the appropriate blob.
-
-If point is on a removed line, then visit the blob for the first
-parent of the commit which removed that line, i.e. the last
-commit where that line still existed.  Otherwise visit the blob
-for the commit whose changes are being shown.
-
-Interactively, when the file or blob to be displayed is already
-being displayed in another window of the same frame, then just
-select that window and adjust point.  Otherwise, or with a prefix
-argument, display the buffer in another window.  The meaning of
-the prefix argument can be inverted or further modified using the
-option `magit-display-file-buffer-function'.
-
-Non-interactively the optional OTHER-WINDOW argument is taken
-literally.  DISPLAY-FN can be used to specify the display
-function explicitly, in which case OTHER-WINDOW is ignored.
-
-The optional FORCE-WORKTREE means to force visiting the worktree
-version of the file.  To do this interactively use the command
-`magit-diff-visit-file-worktree' instead."
-  (interactive (list (--if-let (magit-file-at-point)
-                         (expand-file-name it)
-                       (user-error "No file at point"))
-                     current-prefix-arg))
-  (if (magit-file-accessible-directory-p file)
-      (magit-diff-visit-directory file other-window)
-    (let* ((hunk (magit-diff-visit--hunk))
-           (last (and magit-diff-visit-previous-blob
-                      (not force-worktree)
-                      (magit-section-match 'hunk)
-                      (save-excursion
-                        (goto-char (line-beginning-position))
-                        (looking-at "-"))))
-           (line (and hunk (magit-diff-hunk-line   hunk)))
-           (col  (and hunk (magit-diff-hunk-column hunk last)))
-           (rev  (if last
-                     (magit-diff-visit--range-beginning)
-                   (magit-diff-visit--range-end)))
-           (buf  (if (and (not force-worktree)
-                          (stringp rev))
-                     (magit-find-file-noselect rev file)
-                   (or (get-file-buffer file)
-                       (find-file-noselect file)))))
-      (cond ((called-interactively-p 'any)
-             (magit-display-file-buffer buf))
-            (display-fn
-             (funcall display-fn buf))
-            ((or other-window (get-buffer-window buf))
-             (switch-to-buffer-other-window buf))
-            (t
-             (pop-to-buffer buf)))
-      (with-selected-window
-          (or (get-buffer-window buf 'visible)
-              (error "File buffer is not visible"))
-        (when line
-          (setq line
-                (cond ((eq rev 'staged)
-                       (apply 'magit-diff-visit--offset file nil line))
-                      ((and force-worktree
-                            (stringp rev))
-                       (apply 'magit-diff-visit--offset file rev line))
-                      (t
-                       (apply '+ line))))
-          (let ((pos (save-restriction
-                       (widen)
-                       (goto-char (point-min))
-                       (forward-line (1- line))
-                       (move-to-column col)
-                       (point))))
-            (unless (<= (point-min) pos (point-max))
-              (widen)
-              (goto-char pos))))
-        (when (magit-anything-unmerged-p file)
-          (smerge-start-session))
-        (run-hooks 'magit-diff-visit-file-hook)))))
-
-(defun magit-diff-visit-file-other-window (file)
-  "From a diff, visit the corresponding file at the appropriate position.
-The file is shown in another window.
-
-If the diff shows changes in the worktree, the index, or `HEAD',
-then visit the actual file.  Otherwise, when the diff is about an
-older commit or a range, then visit the appropriate blob.
-
-If point is on a removed line, then visit the blob for the first
-parent of the commit which removed that line, i.e. the last
-commit where that line still existed.  Otherwise visit the blob
-for the commit whose changes are being shown."
-  (interactive (list (--if-let (magit-file-at-point)
-                         (expand-file-name it)
-                       (user-error "No file at point"))))
-  (magit-diff-visit-file file t))
-
-(defvar magit-display-file-buffer-function
-  'magit-display-file-buffer-traditional
-  "The function used by `magit-diff-visit-file' to display blob buffers.
-
-Other commands such as `magit-find-file' do not use this
-function.  Instead they use high-level functions to select the
-window to be used to display the buffer.  This variable and the
-related functions are an experimental feature and should be
-treated as such.")
-
-(defun magit-display-file-buffer (buffer)
-  (funcall magit-display-file-buffer-function buffer))
-
-(defun magit-display-file-buffer-traditional (buffer)
-  "Display BUFFER in the current window.
-With a prefix argument display it in another window.
-Option `magit-display-file-buffer-function' controls
-whether `magit-diff-visit-file' uses this function."
-  (if (or current-prefix-arg (get-buffer-window buffer))
-      (pop-to-buffer buffer)
-    (switch-to-buffer buffer)))
-
-(defun magit-display-file-buffer-other-window (buffer)
-  "Display BUFFER in another window.
-With a prefix argument display it in the current window.
-Option `magit-display-file-buffer-function' controls
-whether `magit-diff-visit-file' uses this function."
-  (if current-prefix-arg
-      (switch-to-buffer buffer)
-    (pop-to-buffer buffer)))
-
-(defun magit-diff-visit-file-worktree (file &optional other-window)
-  "From a diff, visit the corresponding file at the appropriate position.
-
-When the file is already being displayed in another window of the
-same frame, then just select that window and adjust point.  With
-a prefix argument also display in another window.
-
-The actual file in the worktree is visited. The positions in the
-hunk headers get less useful the \"older\" the changes are, and
-as a result, jumping to the appropriate position gets less
-reliable.
-
-Also see `magit-diff-visit-file' which visits the respective
-blob, unless the diff shows changes in the worktree, the index,
-or `HEAD'."
-  (interactive (list (or (magit-file-at-point)
-                         (user-error "No file at point"))
-                     current-prefix-arg))
-  (magit-diff-visit-file file other-window t))
-
-(defun magit-diff-visit--range-end ()
-  (let ((rev (magit-diff--dwim)))
-    (if (symbolp rev)
-        rev
-      (setq rev (if (consp rev)
-                    (cdr rev)
-                  (cdr (magit-split-range rev))))
-      (if (magit-rev-head-p rev)
-          'unstaged
-        rev))))
-
-(defun magit-diff-visit--range-beginning ()
-  (let ((rev (magit-diff--dwim)))
-    (cond ((consp rev)
-           (concat (cdr rev) "^"))
-          ((stringp rev)
-           (car (magit-split-range rev)))
-          (t
-           rev))))
-
-(defun magit-diff-visit--hunk ()
-  (when-let ((scope (magit-diff-scope)))
-    (let ((section (magit-current-section)))
-      (cl-case scope
-        ((file files)
-         (setq section (car (oref section children))))
-        (list
-         (setq section (car (oref section children)))
-         (when section
-           (setq section (car (oref section children))))))
-      (and
-       ;; Unmerged files appear in the list of staged changes
-       ;; but unlike in the list of unstaged changes no diffs
-       ;; are shown here.  In that case `section' is nil.
-       section
-       ;; Currently the `hunk' type is also abused for file
-       ;; mode changes, which we are not interested in here.
-       ;; Such sections have no value.
-       (oref section value)
-       section))))
-
-(defun magit-diff-visit--offset (file rev hunk-start line-offset)
-  (let ((offset 0))
-    (with-temp-buffer
-      (save-excursion
-        (magit-with-toplevel
-          (magit-git-insert "diff" rev "--" file)))
-      (catch 'found
-        (while (re-search-forward
-                "^@@ -\\([0-9]+\\),\\([0-9]+\\) \\+\\([0-9]+\\),\\([0-9]+\\) @@"
-                nil t)
-          (let* ((abeg (string-to-number (match-string 1)))
-                 (alen (string-to-number (match-string 2)))
-                 (bbeg (string-to-number (match-string 3)))
-                 (blen (string-to-number (match-string 4)))
-                 (aend (+ abeg alen))
-                 (bend (+ bbeg blen))
-                 (hend (+ hunk-start line-offset)))
-            (if (<= abeg hunk-start)
-                (if (or (>= aend hend)
-                        (>= bend hend))
-                    (let ((line 0))
-                      (while (<= line alen)
-                        (forward-line 1)
-                        (cl-incf line)
-                        (cond ((looking-at "^\\+") (cl-incf offset))
-                              ((looking-at "^-")   (cl-decf offset)))))
-                  (cl-incf offset (- blen alen)))
-              (throw 'found nil))))))
-    (+ hunk-start line-offset offset)))
-
-(defun magit-diff-hunk-line (section)
-  (let* ((value  (oref section value))
-         (prefix (- (length value) 2))
-         (cpos   (marker-position (oref section content)))
-         (stop   (line-number-at-pos))
-         (cstart (save-excursion (goto-char cpos)
-                                 (line-number-at-pos)))
-         (prior  (and (= (length value) 3)
-                      (save-excursion (goto-char (line-beginning-position))
-                                      (looking-at "-"))))
-         (offset 0)
-         (line   (if prior
-                     (cadr value)
-                   (car (last value)))))
-    (string-match (format "^%s\\([0-9]+\\)" (if prior "-" "\\+")) line)
-    (setq line (string-to-number (match-string 1 line)))
-    (when (> cstart stop)
-      (save-excursion
-        (goto-char cpos)
-        (re-search-forward "^[-+]")
-        (setq stop (line-number-at-pos))))
-    (save-excursion
-      (goto-char cpos)
-      (while (< (line-number-at-pos) stop)
-        (unless (string-match-p
-                 (if prior "\\+" "-")
-                 (buffer-substring (point) (+ (point) prefix)))
-          (cl-incf offset))
-        (forward-line)))
-    (list line offset)))
-
-(defun magit-diff-hunk-column (section visit-beginning)
-  (if (or (< (point)
-             (oref section content))
-          (and (not visit-beginning)
-               (save-excursion (beginning-of-line) (looking-at-p "-"))))
-      0
-    (max 0 (- (+ (current-column) 2)
-              (length (oref section value))))))
-
-(defun magit-diff-visit-directory (directory &optional other-window)
-  (if (equal (magit-toplevel directory)
-             (magit-toplevel))
-      (dired-jump other-window (concat directory "/."))
-    (let ((display-buffer-overriding-action
-           (if other-window
-               '(nil (inhibit-same-window t))
-             '(display-buffer-same-window))))
-      (magit-status-internal directory))))
-
-;;;; Scroll commands
-
-(defun magit-diff-show-or-scroll-up ()
-  "Update the commit or diff buffer for the thing at point.
-
-Either show the commit or stash at point in the appropriate
-buffer, or if that buffer is already being displayed in the
-current frame and contains information about that commit or
-stash, then instead scroll the buffer up.  If there is no
-commit or stash at point, then prompt for a commit."
-  (interactive)
-  (magit-diff-show-or-scroll 'scroll-up))
-
-(defun magit-diff-show-or-scroll-down ()
-  "Update the commit or diff buffer for the thing at point.
-
-Either show the commit or stash at point in the appropriate
-buffer, or if that buffer is already being displayed in the
-current frame and contains information about that commit or
-stash, then instead scroll the buffer down.  If there is no
-commit or stash at point, then prompt for a commit."
-  (interactive)
-  (magit-diff-show-or-scroll 'scroll-down))
-
-(defun magit-diff-show-or-scroll (fn)
-  (let (rev cmd buf win)
-    (cond
-     (magit-blame-mode
-      (setq rev (oref (magit-current-blame-chunk) orig-rev))
-      (setq cmd 'magit-show-commit)
-      (setq buf (magit-mode-get-buffer 'magit-revision-mode)))
-     ((derived-mode-p 'git-rebase-mode)
-      (save-excursion
-        (goto-char (line-beginning-position))
-        (--if-let (and git-rebase-line
-                       (looking-at git-rebase-line)
-                       (match-string 2))
-            (progn (setq rev it)
-                   (setq cmd 'magit-show-commit)
-                   (setq buf (magit-mode-get-buffer 'magit-revision-mode)))
-          (user-error "No commit on this line"))))
-     (t
-      (magit-section-case
-        (branch
-         (setq rev (magit-ref-maybe-qualify (oref it value)))
-         (setq cmd 'magit-show-commit)
-         (setq buf (magit-mode-get-buffer 'magit-revision-mode)))
-        (commit
-         (setq rev (oref it value))
-         (setq cmd 'magit-show-commit)
-         (setq buf (magit-mode-get-buffer 'magit-revision-mode)))
-        (stash
-         (setq rev (oref it value))
-         (setq cmd 'magit-stash-show)
-         (setq buf (magit-mode-get-buffer 'magit-stash-mode))))))
-    (if rev
-        (if (and buf
-                 (setq win (get-buffer-window buf))
-                 (with-current-buffer buf
-                   (and (equal rev (car magit-refresh-args))
-                        (equal (magit-rev-parse rev)
-                               magit-buffer-revision-hash))))
-            (with-selected-window win
-              (condition-case nil
-                  (funcall fn)
-                (error
-                 (goto-char (pcase fn
-                              (`scroll-up   (point-min))
-                              (`scroll-down (point-max)))))))
-          (let ((magit-display-buffer-noselect t))
-            (if (eq cmd 'magit-show-commit)
-                (apply #'magit-show-commit rev (magit-show-commit--arguments))
-              (funcall cmd rev))))
-      (call-interactively #'magit-show-commit))))
-
-;;; Diff Mode
-
-(defvar magit-diff-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-mode-map)
-    (define-key map "\C-c\C-d" 'magit-diff-while-committing)
-    (define-key map "\C-c\C-b" 'magit-go-backward)
-    (define-key map "\C-c\C-f" 'magit-go-forward)
-    (define-key map "\s" 'scroll-up)
-    (define-key map "\d" 'scroll-down)
-    (define-key map "j" 'magit-jump-to-diffstat-or-diff)
-    (define-key map [remap write-file] 'magit-patch-save)
-    map)
-  "Keymap for `magit-diff-mode'.")
-
-(define-derived-mode magit-diff-mode magit-mode "Magit Diff"
-  "Mode for looking at a Git diff.
-
-This mode is documented in info node `(magit)Diff Buffer'.
-
-\\<magit-mode-map>\
-Type \\[magit-refresh] to refresh the current buffer.
-Type \\[magit-section-toggle] to expand or hide the section at point.
-Type \\[magit-visit-thing] to visit the hunk or file at point.
-
-Staging and applying changes is documented in info node
-`(magit)Staging and Unstaging' and info node `(magit)Applying'.
-
-\\<magit-hunk-section-map>Type \
-\\[magit-apply] to apply the change at point, \
-\\[magit-stage] to stage,
-\\[magit-unstage] to unstage, \
-\\[magit-discard] to discard, or \
-\\[magit-reverse] to reverse it.
-
-\\{magit-diff-mode-map}"
-  :group 'magit-diff
-  (hack-dir-local-variables-non-file-buffer)
-  (setq imenu-prev-index-position-function
-        'magit-imenu--diff-prev-index-position-function)
-  (setq imenu-extract-index-name-function
-        'magit-imenu--diff-extract-index-name-function)
-  (setq-local bookmark-make-record-function
-              'magit-bookmark--diff-make-record))
-
-(defun magit-diff-refresh-buffer (rev-or-range const _args files)
-  "Refresh the current `magit-diff-mode' buffer.
-
-In such buffers the buffer-local value of `magit-refresh-args'
-has the same form as the arguments of this function.  The value
-is set in `magit-mode-setup'."
-  (magit-set-header-line-format
-   (if (member "--no-index" const)
-       (apply #'format "Differences between %s and %s" files)
-     (concat (if rev-or-range
-                 (if (string-match-p "\\(\\.\\.\\|\\^-\\)"
-                                     rev-or-range)
-                     (format "Changes in %s" rev-or-range)
-                   (format "Changes from %s to working tree" rev-or-range))
-               (if (member "--cached" const)
-                   "Staged changes"
-                 "Unstaged changes"))
-             (pcase (length files)
-               (0)
-               (1 (concat " in file " (car files)))
-               (_ (concat " in files "
-                          (mapconcat #'identity files ", ")))))))
-  (magit-insert-section (diffbuf)
-    (magit-run-section-hook 'magit-diff-sections-hook rev-or-range)))
-
-(defun magit-insert-diff (rev-or-range)
-  "Insert the diff into this `magit-diff-mode' buffer."
-  (let ((magit-git-global-arguments
-         (remove "--literal-pathspecs" magit-git-global-arguments)))
-    (magit-git-wash #'magit-diff-wash-diffs
-      "diff" rev-or-range "-p" "--no-prefix"
-      (and (member "--stat" (nth 2 magit-refresh-args)) "--numstat")
-      (nth 1 magit-refresh-args)
-      (nth 2 magit-refresh-args) "--"
-      (nth 3 magit-refresh-args))))
-
-(defvar magit-file-section-map
-  (let ((map (make-sparse-keymap)))
-    (unless (featurep 'jkl)
-      (define-key map (kbd "C-j") 'magit-diff-visit-file-worktree))
-    (define-key map [C-return] 'magit-diff-visit-file-worktree)
-    (define-key map [remap magit-visit-thing]      'magit-diff-visit-file)
-    (define-key map [remap magit-delete-thing]     'magit-discard)
-    (define-key map [remap magit-revert-no-commit] 'magit-reverse)
-    (define-key map "a" 'magit-apply)
-    (define-key map "C" 'magit-commit-add-log)
-    (define-key map "s" 'magit-stage)
-    (define-key map "u" 'magit-unstage)
-    (define-key map "&" 'magit-do-async-shell-command)
-    (define-key map "\C-c\C-t" 'magit-diff-trace-definition)
-    (define-key map "\C-c\C-e" 'magit-diff-edit-hunk-commit)
-    map)
-  "Keymap for `file' sections.")
-
-(defvar magit-hunk-section-map
-  (let ((map (make-sparse-keymap)))
-    (unless (featurep 'jkl)
-      (define-key map (kbd "C-j") 'magit-diff-visit-file-worktree))
-    (define-key map [C-return] 'magit-diff-visit-file-worktree)
-    (define-key map [remap magit-visit-thing]      'magit-diff-visit-file)
-    (define-key map [remap magit-delete-thing]     'magit-discard)
-    (define-key map [remap magit-revert-no-commit] 'magit-reverse)
-    (define-key map "a" 'magit-apply)
-    (define-key map "C" 'magit-commit-add-log)
-    (define-key map "s" 'magit-stage)
-    (define-key map "u" 'magit-unstage)
-    (define-key map "&" 'magit-do-async-shell-command)
-    (define-key map "\C-c\C-t" 'magit-diff-trace-definition)
-    (define-key map "\C-c\C-e" 'magit-diff-edit-hunk-commit)
-    map)
-  "Keymap for `hunk' sections.")
-
-(defconst magit-diff-headline-re
-  (concat "^\\(@@@?\\|diff\\|Submodule\\|"
-          "\\* Unmerged path\\|merged\\|changed in both\\|"
-          "added in remote\\|removed in remote\\)"))
-
-(defconst magit-diff-statline-re
-  (concat "^ ?"
-          "\\(.*\\)"     ; file
-          "\\( +| +\\)"  ; separator
-          "\\([0-9]+\\|Bin\\(?: +[0-9]+ -> [0-9]+ bytes\\)?$\\) ?"
-          "\\(\\+*\\)"   ; add
-          "\\(-*\\)$"))  ; del
-
-(defun magit-diff-wash-diffs (args &optional limit)
-  (when (member "--stat" args)
-    (magit-diff-wash-diffstat))
-  (when (re-search-forward magit-diff-headline-re limit t)
-    (goto-char (line-beginning-position))
-    (magit-wash-sequence (apply-partially 'magit-diff-wash-diff args))
-    (insert ?\n)))
-
-(defun magit-jump-to-diffstat-or-diff ()
-  "Jump to the diffstat or diff.
-When point is on a file inside the diffstat section, then jump
-to the respective diff section, otherwise jump to the diffstat
-section or a child thereof."
-  (interactive)
-  (--if-let (magit-get-section
-             (append (magit-section-case
-                       ([file diffstat] `((file . ,(oref it value))))
-                       (file `((file . ,(oref it value)) (diffstat)))
-                       (t '((diffstat))))
-                     (magit-section-ident magit-root-section)))
-      (magit-section-goto it)
-    (user-error "No diffstat in this buffer")))
-
-(defun magit-diff-wash-diffstat ()
-  (let (heading (beg (point)))
-    (when (re-search-forward "^ ?\\([0-9]+ +files? change[^\n]*\n\\)" nil t)
-      (setq heading (match-string 1))
-      (magit-delete-match)
-      (goto-char beg)
-      (magit-insert-section (diffstat)
-        (insert (propertize heading 'face 'magit-diff-file-heading))
-        (magit-insert-heading)
-        (let (files)
-          (while (looking-at "^[-0-9]+\t[-0-9]+\t\\(.+\\)$")
-            (push (magit-decode-git-path
-                   (let ((f (match-string 1)))
-                     (if (string-match " => " f)
-                         (substring f (match-end 0))
-                       f)))
-                  files)
-            (magit-delete-line))
-          (setq files (nreverse files))
-          (while (looking-at magit-diff-statline-re)
-            (magit-bind-match-strings (file sep cnt add del) nil
-              (magit-delete-line)
-              (when (string-match " +$" file)
-                (setq sep (concat (match-string 0 file) sep))
-                (setq file (substring file 0 (match-beginning 0))))
-              (let ((le (length file)) ld)
-                (setq file (magit-decode-git-path file))
-                (setq ld (length file))
-                (when (> le ld)
-                  (setq sep (concat (make-string (- le ld) ?\s) sep))))
-              (magit-insert-section (file (pop files))
-                (insert (propertize file 'face 'magit-filename) sep cnt " ")
-                (when add
-                  (insert (propertize add 'face 'magit-diffstat-added)))
-                (when del
-                  (insert (propertize del 'face 'magit-diffstat-removed)))
-                (insert "\n")))))
-        (if (looking-at "^$") (forward-line) (insert "\n"))))))
-
-(defun magit-diff-wash-diff (args)
-  (cond
-   ((looking-at "^Submodule")
-    (magit-diff-wash-submodule))
-   ((looking-at "^\\* Unmerged path \\(.*\\)")
-    (let ((file (magit-decode-git-path (match-string 1))))
-      (magit-delete-line)
-      (unless (and (derived-mode-p 'magit-status-mode)
-                   (not (member "--cached" args)))
-        (magit-insert-section (file file)
-          (insert (propertize
-                   (format "unmerged   %s%s" file
-                           (pcase (cddr (car (magit-file-status file)))
-                             (`(?D ?D) " (both deleted)")
-                             (`(?D ?U) " (deleted by us)")
-                             (`(?U ?D) " (deleted by them)")
-                             (`(?A ?A) " (both added)")
-                             (`(?A ?U) " (added by us)")
-                             (`(?U ?A) " (added by them)")
-                             (`(?U ?U) "")))
-                   'face 'magit-diff-file-heading))
-          (insert ?\n))))
-    t)
-   ((looking-at (concat "^\\(merged\\|changed in both\\|"
-                        "added in remote\\|removed in remote\\)"))
-    (let ((status (pcase (match-string 1)
-                    ("merged" "merged")
-                    ("changed in both" "conflict")
-                    ("added in remote" "new file")
-                    ("removed in remote" "deleted")))
-          file orig base modes)
-      (magit-delete-line)
-      (while (looking-at
-              "^  \\([^ ]+\\) +[0-9]\\{6\\} \\([a-z0-9]\\{40\\}\\) \\(.+\\)$")
-        (magit-bind-match-strings (side _blob name) nil
-          (pcase side
-            ("result" (setq file name))
-            ("our"    (setq orig name))
-            ("their"  (setq file name))
-            ("base"   (setq base name))))
-        (magit-delete-line))
-      (when orig (setq orig (magit-decode-git-path orig)))
-      (when file (setq file (magit-decode-git-path file)))
-      (magit-diff-insert-file-section (or file base) orig status modes nil)))
-   ((looking-at
-     "^diff --\\(?:\\(git\\) \\(?:\\(.+?\\) \\2\\)?\\|\\(cc\\|combined\\) \\(.+\\)\\)")
-    (let ((status (cond ((equal (match-string 1) "git")        "modified")
-                        ((derived-mode-p 'magit-revision-mode) "resolved")
-                        (t                                     "unmerged")))
-          (file (or (match-string 2) (match-string 4)))
-          (beg (point))
-          orig header modes)
-      (save-excursion
-        (forward-line 1)
-        (setq header (buffer-substring
-                      beg (if (re-search-forward magit-diff-headline-re nil t)
-                              (match-beginning 0)
-                            (point-max)))))
-      (magit-delete-line)
-      (while (not (or (eobp) (looking-at magit-diff-headline-re)))
-        (if (looking-at "^old mode \\([^\n]+\\)\nnew mode \\([^\n]+\\)\n")
-            (progn (setq modes (match-string 0))
-                   (magit-delete-match))
-          (cond
-           ((looking-at "^--- \\([^/].*?\\)\t?$") ; i.e. not /dev/null
-            (setq orig (match-string 1)))
-           ((looking-at "^\\+\\+\\+ \\([^/].*?\\)\t?$")
-            (setq file (match-string 1)))
-           ((looking-at "^\\(copy\\|rename\\) from \\(.+\\)$")
-            (setq orig (match-string 2)))
-           ((looking-at "^\\(copy\\|rename\\) to \\(.+\\)$")
-            (setq file (match-string 2))
-            (setq status (if (equal (match-string 1) "copy") "new file" "renamed")))
-           ((looking-at "^\\(new file\\|deleted\\)")
-            (setq status (match-string 1))))
-          (magit-delete-line)))
-      (when orig
-        (setq orig (magit-decode-git-path orig)))
-      (setq file (magit-decode-git-path file))
-      ;; KLUDGE `git-log' ignores `--no-prefix' when `-L' is used.
-      (when (and (derived-mode-p 'magit-log-mode)
-                 (--first (string-match-p "\\`-L" it)
-                          (nth 1 magit-refresh-args)))
-        (setq file (substring file 2))
-        (when orig
-          (setq orig (substring orig 2))))
-      (magit-diff-insert-file-section file orig status modes header)))))
-
-(defun magit-diff-insert-file-section (file orig status modes header)
-  (magit-insert-section section
-    (file file (or (equal status "deleted")
-                   (derived-mode-p 'magit-status-mode)))
-    (insert (propertize (format "%-10s %s\n" status
-                                (if (or (not orig) (equal orig file))
-                                    file
-                                  (format "%s -> %s" orig file)))
-                        'face 'magit-diff-file-heading))
-    (magit-insert-heading)
-    (unless (equal orig file)
-      (oset section source orig))
-    (oset section header header)
-    (when modes
-      (magit-insert-section (hunk)
-        (insert modes)))
-    (magit-wash-sequence #'magit-diff-wash-hunk)))
-
-(defun magit-diff-wash-submodule ()
-  ;; See `show_submodule_summary' in submodule.c and "this" commit.
-  (when (looking-at "^Submodule \\([^ ]+\\)")
-    (let ((module (match-string 1))
-          untracked modified)
-      (when (looking-at "^Submodule [^ ]+ contains untracked content$")
-        (magit-delete-line)
-        (setq untracked t))
-      (when (looking-at "^Submodule [^ ]+ contains modified content$")
-        (magit-delete-line)
-        (setq modified t))
-      (cond
-       ((and (looking-at "^Submodule \\([^ ]+\\) \\([^ :]+\\)\\( (rewind)\\)?:$")
-             (equal (match-string 1) module))
-        (magit-bind-match-strings (_module range rewind) nil
-          (magit-delete-line)
-          (while (looking-at "^  \\([<>]\\) \\(.+\\)$")
-            (magit-delete-line))
-          (when rewind
-            (setq range (replace-regexp-in-string "[^.]\\(\\.\\.\\)[^.]"
-                                                  "..." range t t 1)))
-          (magit-insert-section (magit-module-section module t)
-            (magit-insert-heading
-              (propertize (concat "modified   " module)
-                          'face 'magit-diff-file-heading)
-              " ("
-              (cond (rewind "rewind")
-                    ((string-match-p "\\.\\.\\." range) "non-ff")
-                    (t "new commits"))
-              (and (or modified untracked)
-                   (concat ", "
-                           (and modified "modified")
-                           (and modified untracked " and ")
-                           (and untracked "untracked")
-                           " content"))
-              ")")
-            (let ((default-directory
-                    (file-name-as-directory
-                     (expand-file-name module (magit-toplevel)))))
-              (magit-git-wash (apply-partially 'magit-log-wash-log 'module)
-                "log" "--oneline" "--left-right" range)
-              (delete-char -1)))))
-       ((and (looking-at "^Submodule \\([^ ]+\\) \\([^ ]+\\) (\\([^)]+\\))$")
-             (equal (match-string 1) module))
-        (magit-bind-match-strings (_module _range msg) nil
-          (magit-delete-line)
-          (magit-insert-section (magit-module-section module)
-            (magit-insert-heading
-              (propertize (concat "submodule  " module)
-                          'face 'magit-diff-file-heading)
-              " (" msg ")"))))
-       (t
-        (magit-insert-section (magit-module-section module)
-          (magit-insert-heading
-            (propertize (concat "modified   " module)
-                        'face 'magit-diff-file-heading)
-            " ("
-            (and modified "modified")
-            (and modified untracked " and ")
-            (and untracked "untracked")
-            " content)")))))))
-
-(defun magit-diff-wash-hunk ()
-  (when (looking-at "^@\\{2,\\} \\(.+?\\) @\\{2,\\}\\(?: \\(.*\\)\\)?")
-    (let ((heading (match-string 0))
-          (value (cons (match-string 2) (split-string (match-string 1)))))
-      (magit-delete-line)
-      (magit-insert-section it (hunk value)
-        (insert (propertize (concat heading "\n") 'face 'magit-diff-hunk-heading))
-        (magit-insert-heading)
-        (while (not (or (eobp) (looking-at "^[^-+\s\\]")))
-          (forward-line))
-        (oset it end (point))
-        (oset it washer 'magit-diff-paint-hunk)))
-    t))
-
-(defun magit-diff-expansion-threshold (section)
-  "Keep new diff sections collapsed if washing takes too long."
-  (and (magit-file-section-p section)
-       (> (float-time (time-subtract (current-time) magit-refresh-start-time))
-          magit-diff-expansion-threshold)
-       'hide))
-
-;;; Revision Mode
-
-(define-derived-mode magit-revision-mode magit-diff-mode "Magit Rev"
-  "Mode for looking at a Git commit.
-
-This mode is documented in info node `(magit)Revision Buffer'.
-
-\\<magit-mode-map>\
-Type \\[magit-refresh] to refresh the current buffer.
-Type \\[magit-section-toggle] to expand or hide the section at point.
-Type \\[magit-visit-thing] to visit the hunk or file at point.
-
-Staging and applying changes is documented in info node
-`(magit)Staging and Unstaging' and info node `(magit)Applying'.
-
-\\<magit-hunk-section-map>Type \
-\\[magit-apply] to apply the change at point, \
-\\[magit-stage] to stage,
-\\[magit-unstage] to unstage, \
-\\[magit-discard] to discard, or \
-\\[magit-reverse] to reverse it.
-
-\\{magit-revision-mode-map}"
-  :group 'magit-revision
-  (hack-dir-local-variables-non-file-buffer)
-  (setq-local bookmark-make-record-function
-              'magit-bookmark--revision-make-record))
-
-(defun magit-revision-refresh-buffer (rev __const _args files)
-  (magit-set-header-line-format
-   (concat (capitalize (magit-object-type rev))
-           " "
-           rev
-           (pcase (length files)
-             (0)
-             (1 (concat " limited to file " (car files)))
-             (_ (concat " limited to files "
-                        (mapconcat #'identity files ", "))))))
-  (setq magit-buffer-revision-hash (magit-rev-parse rev))
-  (magit-insert-section (commitbuf)
-    (magit-run-section-hook 'magit-revision-sections-hook rev)))
-
-(defun magit-insert-revision-diff (rev)
-  "Insert the diff into this `magit-revision-mode' buffer."
-  (let ((magit-git-global-arguments
-         (remove "--literal-pathspecs" magit-git-global-arguments)))
-    ;; Before v2.2.0, "--format=" did not mean "no output".
-    ;; Instead the default format was used.  So use "--format=%n"
-    ;; and then delete the empty lines.
-    (magit-git-wash (lambda (args)
-                      (delete-region (point) (progn (forward-line 3) (point)))
-                      (magit-diff-wash-diffs args))
-      "show" "-p" "--cc" "--format=%n" "--no-prefix"
-      (and (member "--stat" (nth 2 magit-refresh-args)) "--numstat")
-      (nth 2 magit-refresh-args) (concat rev "^{commit}") "--"
-      (nth 3 magit-refresh-args))))
-
-(defun magit-insert-revision-tag (rev)
-  "Insert tag message and headers into a revision buffer.
-This function only inserts anything when `magit-show-commit' is
-called with a tag as argument, when that is called with a commit
-or a ref which is not a branch, then it inserts nothing."
-  (when (equal (magit-object-type rev) "tag")
-    (magit-insert-section (taginfo)
-      (let ((beg (point)))
-        ;; "git verify-tag -v" would output what we need, but the gpg
-        ;; output is send to stderr and we have no control over the
-        ;; order in which stdout and stderr are inserted, which would
-        ;; make parsing hard.  We are forced to use "git cat-file tag"
-        ;; instead, which inserts the signature instead of verifying
-        ;; it.  We remove that later and then insert the verification
-        ;; output using "git verify-tag" (without the "-v").
-        (magit-git-insert "cat-file" "tag" rev)
-        (goto-char beg)
-        (forward-line 3)
-        (delete-region beg (point)))
-      (looking-at "^tagger \\([^<]+\\) <\\([^>]+\\)")
-      (let ((heading (format "Tagger: %s <%s>"
-                             (match-string 1)
-                             (match-string 2))))
-        (magit-delete-line)
-        (insert (propertize heading 'face 'magit-section-secondary-heading)))
-      (magit-insert-heading)
-      (if (re-search-forward "-----BEGIN PGP SIGNATURE-----" nil t)
-          (progn
-            (let ((beg (match-beginning 0)))
-              (re-search-forward "-----END PGP SIGNATURE-----")
-              (delete-region beg (point)))
-            (insert ?\n)
-            (process-file magit-git-executable nil t nil "verify-tag" rev))
-        (goto-char (point-max)))
-      (insert ?\n))))
-
-(defvar magit-commit-message-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing] 'magit-show-commit)
-    map)
-  "Keymap for `commit-message' sections.")
-
-(defun magit-insert-revision-message (rev)
-  "Insert the commit message into a revision buffer."
-  (magit-insert-section section (commit-message)
-    (oset section heading-highlight-face 'magit-diff-hunk-heading-highlight)
-    (let ((beg (point)))
-      (insert (save-excursion ; The risky var query can move point.
-                (with-temp-buffer
-                  (magit-rev-insert-format "%B" rev)
-                  (magit-revision--wash-message))))
-      (if (= (point) (+ beg 2))
-          (progn (backward-delete-char 2)
-                 (insert "(no message)\n"))
-        (goto-char beg)
-        (save-excursion
-          (while (search-forward "\r\n" nil t) ; Remove trailing CRs.
-            (delete-region (match-beginning 0) (1+ (match-beginning 0)))))
-        (when magit-revision-fill-summary-line
-          (let ((fill-column (min magit-revision-fill-summary-line
-                                  (window-width))))
-            (fill-region (point) (line-end-position))))
-        (when magit-revision-use-hash-sections
-          (save-excursion
-            (while (not (eobp))
-              (re-search-forward "\\_<" nil 'move)
-              (let ((beg (point)))
-                (re-search-forward "\\_>" nil t)
-                (when (> (point) beg)
-                  (let ((text (buffer-substring-no-properties beg (point))))
-                    (when (pcase magit-revision-use-hash-sections
-                            (`quickest ; false negatives and positives
-                             (and (>= (length text) 7)
-                                  (string-match-p "[0-9]" text)
-                                  (string-match-p "[a-z]" text)))
-                            (`quicker  ; false negatives (number-less hashes)
-                             (and (>= (length text) 7)
-                                  (string-match-p "[0-9]" text)
-                                  (magit-rev-verify-commit text)))
-                            (`quick    ; false negatives (short hashes)
-                             (and (>= (length text) 7)
-                                  (magit-rev-verify-commit text)))
-                            (`slow
-                             (magit-rev-verify-commit text)))
-                      (put-text-property beg (point) 'face 'magit-hash)
-                      (let ((end (point)))
-                        (goto-char beg)
-                        (magit-insert-section (commit text)
-                          (goto-char end))))))))))
-        (save-excursion
-          (forward-line)
-          (add-face-text-property beg (point) 'magit-diff-hunk-heading)
-          (magit-insert-heading))
-        (when magit-diff-highlight-keywords
-          (save-excursion
-            (while (re-search-forward "\\[[^[]*\\]" nil t)
-              (let ((beg (match-beginning 0))
-                    (end (match-end 0)))
-                (put-text-property
-                 beg end 'face
-                 (if-let ((face (get-text-property beg 'face)))
-                     (list face 'magit-keyword)
-                   'magit-keyword))))))
-        (goto-char (point-max))))))
-
-(defun magit-insert-revision-notes (rev)
-  "Insert commit notes into a revision buffer."
-  (let* ((var "core.notesRef")
-         (def (or (magit-get var) "refs/notes/commits")))
-    (dolist (ref (or (magit-list-active-notes-refs)))
-      (magit-insert-section section (notes ref (not (equal ref def)))
-        (oset section heading-highlight-face 'magit-diff-hunk-heading-highlight)
-        (let ((beg (point)))
-          (insert (with-temp-buffer
-                    (magit-git-insert "-c" (concat "core.notesRef=" ref)
-                                      "notes" "show" rev)
-                    (magit-revision--wash-message)))
-          (if (= (point) beg)
-              (magit-cancel-section)
-            (goto-char beg)
-            (end-of-line)
-            (insert (format " (%s)"
-                            (propertize (if (string-prefix-p "refs/notes/" ref)
-                                            (substring ref 11)
-                                          ref)
-                                        'face 'magit-refname)))
-            (forward-char)
-            (add-face-text-property beg (point) 'magit-diff-hunk-heading)
-            (magit-insert-heading)
-            (goto-char (point-max))
-            (insert ?\n)))))))
-
-(defun magit-revision--wash-message ()
-  (let ((major-mode 'git-commit-mode))
-    (hack-dir-local-variables)
-    (hack-local-variables-apply))
-  (unless (memq git-commit-major-mode '(nil text-mode))
-    (funcall git-commit-major-mode)
-    (font-lock-ensure))
-  (buffer-string))
-
-(defun magit-insert-revision-headers (rev)
-  "Insert headers about the commit into a revision buffer."
-  (magit-insert-section (headers)
-    ;; Before v2.2.0, "%D" was not supported.
-    (--when-let (magit-rev-format "%d" rev "--decorate=full")
-      (insert (magit-format-ref-labels it) ?\s))
-    (insert (propertize (magit-rev-parse (concat rev "^{commit}"))
-                        'face 'magit-hash))
-    (magit-insert-heading)
-    (let ((beg (point)))
-      (magit-rev-insert-format magit-revision-headers-format rev)
-      (magit-insert-revision-gravatars rev beg))
-    (when magit-revision-insert-related-refs
-      (dolist (parent (magit-commit-parents rev))
-        (magit-insert-section (commit parent)
-          (let ((line (magit-rev-format "%h %s" parent)))
-            (string-match "^\\([^ ]+\\) \\(.*\\)" line)
-            (magit-bind-match-strings (hash msg) line
-              (insert "Parent:     ")
-              (insert (propertize hash 'face 'magit-hash))
-              (insert " " msg "\n")))))
-      (magit--insert-related-refs
-       rev "--merged" "Merged"
-       (eq magit-revision-insert-related-refs 'all))
-      (magit--insert-related-refs
-       rev "--contains" "Contained"
-       (eq magit-revision-insert-related-refs '(all mixed)))
-      (when-let ((follows (magit-get-current-tag rev t)))
-        (let ((tag (car  follows))
-              (cnt (cadr follows)))
-          (magit-insert-section (tag tag)
-            (insert (format "Follows:    %s (%s)\n"
-                            (propertize tag 'face 'magit-tag)
-                            (propertize (number-to-string cnt)
-                                        'face 'magit-branch-local))))))
-      (when-let ((precedes (magit-get-next-tag rev t)))
-        (let ((tag (car  precedes))
-              (cnt (cadr precedes)))
-          (magit-insert-section (tag tag)
-            (insert (format "Precedes:   %s (%s)\n"
-                            (propertize tag 'face 'magit-tag)
-                            (propertize (number-to-string cnt)
-                                        'face 'magit-tag))))))
-      (insert ?\n))))
-
-(defun magit--insert-related-refs (rev arg title remote)
-  (when-let ((refs (magit-list-related-branches arg rev (and remote "-a"))))
-    (insert title ":" (make-string (- 10 (length title)) ?\s))
-    (dolist (branch refs)
-      (if (<= (+ (current-column) 1 (length branch))
-              (window-width))
-          (insert ?\s)
-        (insert ?\n (make-string 12 ?\s)))
-      (magit-insert-section (branch branch)
-        (insert (propertize branch 'face
-                            (if (string-prefix-p "remotes/" branch)
-                                'magit-branch-remote
-                              'magit-branch-local)))))
-    (insert ?\n)))
-
-(defun magit-insert-revision-gravatars (rev beg)
-  (when (and magit-revision-show-gravatars
-             (window-system))
-    (require 'gravatar)
-    (pcase-let ((`(,author . ,committer)
-                 (pcase magit-revision-show-gravatars
-                   (`t '("^Author:     " . "^Commit:     "))
-                   (`author '("^Author:     " . nil))
-                   (`committer '(nil . "^Commit:     "))
-                   (_ magit-revision-show-gravatars))))
-      (--when-let (and author (magit-rev-format "%aE" rev))
-        (magit-insert-revision-gravatar beg rev it author))
-      (--when-let (and committer (magit-rev-format "%cE" rev))
-        (magit-insert-revision-gravatar beg rev it committer)))))
-
-(defun magit-insert-revision-gravatar (beg rev email regexp)
-  (save-excursion
-    (goto-char beg)
-    (when (re-search-forward regexp nil t)
-      (let* ((column   (length (match-string 0)))
-             (font-obj (query-font (font-at (point) (get-buffer-window))))
-             (size     (* 2 (+ (aref font-obj 4)
-                               (aref font-obj 5))))
-             (align-to (+ column
-                          (ceiling (/ size (aref font-obj 7) 1.0))
-                          1))
-             (gravatar-size (- size 2)))
-        (ignore-errors ; service may be unreachable
-          (gravatar-retrieve email 'magit-insert-revision-gravatar-cb
-                             (list rev (point-marker) align-to column)))))))
-
-(defun magit-insert-revision-gravatar-cb (image rev marker align-to column)
-  (unless (eq image 'error)
-    (when-let ((buffer (marker-buffer marker)))
-      (with-current-buffer buffer
-        (save-excursion
-          (goto-char marker)
-          ;; The buffer might display another revision by now or
-          ;; it might have been refreshed, in which case another
-          ;; process might already have inserted the image.
-          (when (and (equal rev (car magit-refresh-args))
-                     (not (eq (car-safe
-                               (car-safe
-                                (get-text-property (point) 'display)))
-                              'image)))
-            (let ((top `((,@image :ascent center :relief 1)
-                         (slice 0.0 0.0 1.0 0.5)))
-                  (bot `((,@image :ascent center :relief 1)
-                         (slice 0.0 0.5 1.0 1.0)))
-                  (align `((space :align-to ,align-to))))
-              (when magit-revision-use-gravatar-kludge
-                (cl-rotatef top bot))
-              (let ((inhibit-read-only t))
-                (insert (propertize " " 'display top))
-                (insert (propertize " " 'display align))
-                (forward-line)
-                (forward-char column)
-                (insert (propertize " " 'display bot))
-                (insert (propertize " " 'display align))))))))))
-
-;;; Diff Sections
-
-(defvar magit-unstaged-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing]  'magit-diff-unstaged)
-    (define-key map [remap magit-delete-thing] 'magit-discard)
-    (define-key map "s" 'magit-stage)
-    (define-key map "u" 'magit-unstage)
-    map)
-  "Keymap for the `unstaged' section.")
-
-(magit-define-section-jumper magit-jump-to-unstaged "Unstaged changes" unstaged)
-
-(defun magit-insert-unstaged-changes ()
-  "Insert section showing unstaged changes."
-  (magit-insert-section (unstaged)
-    (magit-insert-heading "Unstaged changes:")
-    (magit-git-wash #'magit-diff-wash-diffs
-      "diff" magit-diff-section-arguments "--no-prefix"
-      "--" magit-diff-section-file-args)))
-
-(defvar magit-staged-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing]      'magit-diff-staged)
-    (define-key map [remap magit-delete-thing]     'magit-discard)
-    (define-key map [remap magit-revert-no-commit] 'magit-reverse)
-    (define-key map "s" 'magit-stage)
-    (define-key map "u" 'magit-unstage)
-    map)
-  "Keymap for the `staged' section.")
-
-(magit-define-section-jumper magit-jump-to-staged "Staged changes" staged)
-
-(defun magit-insert-staged-changes ()
-  "Insert section showing staged changes."
-  ;; Avoid listing all files as deleted when visiting a bare repo.
-  (unless (magit-bare-repo-p)
-    (magit-insert-section (staged)
-      (magit-insert-heading "Staged changes:")
-      (magit-git-wash #'magit-diff-wash-diffs
-        "diff" "--cached" magit-diff-section-arguments "--no-prefix"
-        "--" magit-diff-section-file-args))))
-
-;;; Diff Type
-
-(defun magit-diff-type (&optional section)
-  "Return the diff type of SECTION.
-
-The returned type is one of the symbols `staged', `unstaged',
-`committed', or `undefined'.  This type serves a similar purpose
-as the general type common to all sections (which is stored in
-the `type' slot of the corresponding `magit-section' struct) but
-takes additional information into account.  When the SECTION
-isn't related to diffs and the buffer containing it also isn't
-a diff-only buffer, then return nil.
-
-Currently the type can also be one of `tracked' and `untracked'
-but these values are not handled explicitly everywhere they
-should be and a possible fix could be to just return nil here.
-
-The section has to be a `diff' or `hunk' section, or a section
-whose children are of type `diff'.  If optional SECTION is nil,
-return the diff type for the current section.  In buffers whose
-major mode is `magit-diff-mode' SECTION is ignored and the type
-is determined using other means.  In `magit-revision-mode'
-buffers the type is always `committed'.
-
-Do not confuse this with `magit-diff-scope' (which see)."
-  (--when-let (or section (magit-current-section))
-    (cond ((derived-mode-p 'magit-revision-mode 'magit-stash-mode) 'committed)
-          ((derived-mode-p 'magit-diff-mode)
-           (let ((range (nth 0 magit-refresh-args))
-                 (const (nth 1 magit-refresh-args)))
-             (cond ((member "--no-index" const) 'undefined)
-                   ((or (not range)
-                        (magit-rev-eq range "HEAD"))
-                    (if (member "--cached" const)
-                        'staged
-                      'unstaged))
-                   ((member "--cached" const)
-                    (if (magit-rev-head-p range)
-                        'staged
-                      'undefined)) ; i.e. committed and staged
-                   (t 'committed))))
-          ((derived-mode-p 'magit-status-mode)
-           (let ((stype (oref it type)))
-             (if (memq stype '(staged unstaged tracked untracked))
-                 stype
-               (pcase stype
-                 ((or `file `module)
-                  (let* ((parent (oref it parent))
-                         (type   (oref parent type)))
-                    (if (memq type '(file module))
-                        (magit-diff-type parent)
-                      type)))
-                 (`hunk (-> it
-                            (oref parent)
-                            (oref parent)
-                            (oref type)))))))
-          ((derived-mode-p 'magit-log-mode)
-           (if (or (and (magit-section-match 'commit section)
-                        (oref section children))
-                   (magit-section-match [* file commit] section))
-               'committed
-           'undefined))
-          (t 'undefined))))
-
-(cl-defun magit-diff-scope (&optional (section nil ssection) strict)
-  "Return the diff scope of SECTION or the selected section(s).
-
-A diff's \"scope\" describes what part of a diff is selected, it is
-a symbol, one of `region', `hunk', `hunks', `file', `files', or
-`list'.  Do not confuse this with the diff \"type\", as returned by
-`magit-diff-type'.
-
-If optional SECTION is non-nil, then return the scope of that,
-ignoring the sections selected by the region.  Otherwise return
-the scope of the current section, or if the region is active and
-selects a valid group of diff related sections, the type of these
-sections, i.e. `hunks' or `files'.  If SECTION, or if that is nil
-the current section, is a `hunk' section; and the region region
-starts and ends inside the body of a that section, then the type
-is `region'.  If the region is empty after a mouse click, then
-`hunk' is returned instead of `region'.
-
-If optional STRICT is non-nil, then return nil if the diff type of
-the section at point is `untracked' or the section at point is not
-actually a `diff' but a `diffstat' section."
-  (let ((siblings (and (not ssection) (magit-region-sections nil t))))
-    (setq section (or section (car siblings) (magit-current-section)))
-    (when (and section
-               (or (not strict)
-                   (and (not (eq (magit-diff-type section) 'untracked))
-                        (not (eq (--when-let (oref section parent)
-                                   (oref it type))
-                                 'diffstat)))))
-      (pcase (list (oref section type)
-                   (and siblings t)
-                   (magit-diff-use-hunk-region-p)
-                   ssection)
-        (`(hunk nil   t  ,_)
-         (if (magit-section-internal-region-p section) 'region 'hunk))
-        (`(hunk   t   t nil) 'hunks)
-        (`(hunk  ,_  ,_  ,_) 'hunk)
-        (`(file   t   t nil) 'files)
-        (`(file  ,_  ,_  ,_) 'file)
-        (`(module   t   t nil) 'files)
-        (`(module  ,_  ,_  ,_) 'file)
-        (`(,(or `staged `unstaged `untracked)
-           nil ,_ ,_) 'list)))))
-
-(defun magit-diff-use-hunk-region-p ()
-  (and (region-active-p)
-       (not (and (if (version< emacs-version "25.1")
-                     (eq this-command 'mouse-drag-region)
-                   ;; TODO implement this from first principals
-                   ;; currently it's trial-and-error
-                   (or (eq this-command 'mouse-drag-region)
-                       (eq last-command 'mouse-drag-region)
-                       ;; When another window was previously
-                       ;; selected then the last-command is
-                       ;; some byte-code function.
-                       (byte-code-function-p last-command)))
-                 (eq (region-end) (region-beginning))))))
-
-;;; Diff Highlight
-
-(defun magit-diff-unhighlight (section selection)
-  "Remove the highlighting of the diff-related SECTION."
-  (when (magit-hunk-section-p section)
-    (magit-diff-paint-hunk section selection nil)
-    t))
-
-(defun magit-diff-highlight (section selection)
-  "Highlight the diff-related SECTION.
-If SECTION is not a diff-related section, then do nothing and
-return nil.  If SELECTION is non-nil, then it is a list of sections
-selected by the region, including SECTION.  All of these sections
-are highlighted."
-  (if (and (magit-section-match 'commit section)
-           (oref section children))
-      (progn (if selection
-                 (dolist (section selection)
-                   (magit-diff-highlight-list section selection))
-               (magit-diff-highlight-list section))
-             t)
-    (when-let ((scope (magit-diff-scope section t)))
-      (cond ((eq scope 'region)
-             (magit-diff-paint-hunk section selection t))
-            (selection
-             (dolist (section selection)
-               (magit-diff-highlight-recursive section selection)))
-            (t
-             (magit-diff-highlight-recursive section)))
-      t)))
-
-(defun magit-diff-highlight-recursive (section &optional selection)
-  (pcase (magit-diff-scope section)
-    (`list (magit-diff-highlight-list section selection))
-    (`file (magit-diff-highlight-file section selection))
-    (`hunk (magit-diff-highlight-heading section selection)
-           (magit-diff-paint-hunk section selection t))
-    (_     (magit-section-highlight section nil))))
-
-(defun magit-diff-highlight-list (section &optional selection)
-  (let ((beg (oref section start))
-        (cnt (oref section content))
-        (end (oref section end)))
-    (when (or (eq this-command 'mouse-drag-region)
-              (not selection))
-      (unless (and (region-active-p)
-                   (<= (region-beginning) beg))
-        (magit-section-make-overlay beg cnt 'magit-section-highlight))
-      (unless (oref section hidden)
-        (dolist (child (oref section children))
-          (when (or (eq this-command 'mouse-drag-region)
-                    (not (and (region-active-p)
-                              (<= (region-beginning)
-                                  (oref child start)))))
-            (magit-diff-highlight-recursive child selection)))))
-    (when magit-diff-highlight-hunk-body
-      (magit-section-make-overlay (1- end) end 'magit-section-highlight))))
-
-(defun magit-diff-highlight-file (section &optional selection)
-  (magit-diff-highlight-heading section selection)
-  (unless (oref section hidden)
-    (dolist (child (oref section children))
-      (magit-diff-highlight-recursive child selection))))
-
-(defun magit-diff-highlight-heading (section &optional selection)
-  (magit-section-make-overlay
-   (oref section start)
-   (or (oref section content)
-       (oref section end))
-   (pcase (list (oref section type)
-                (and (member section selection)
-                     (not (eq this-command 'mouse-drag-region))))
-     (`(file   t) 'magit-diff-file-heading-selection)
-     (`(file nil) 'magit-diff-file-heading-highlight)
-     (`(module   t) 'magit-diff-file-heading-selection)
-     (`(module nil) 'magit-diff-file-heading-highlight)
-     (`(hunk   t) 'magit-diff-hunk-heading-selection)
-     (`(hunk nil) 'magit-diff-hunk-heading-highlight))))
-
-;;; Hunk Paint
-
-(cl-defun magit-diff-paint-hunk
-    (section &optional selection
-             (highlight (magit-section-selected-p section selection)))
-  (let (paint)
-    (unless magit-diff-highlight-hunk-body
-      (setq highlight nil))
-    (cond (highlight
-           (unless (oref section hidden)
-             (add-to-list 'magit-section-highlighted-sections section)
-             (cond ((memq section magit-section-unhighlight-sections)
-                    (setq magit-section-unhighlight-sections
-                          (delq section magit-section-unhighlight-sections)))
-                   (magit-diff-highlight-hunk-body
-                    (setq paint t)))))
-          (t
-           (cond ((and (oref section hidden)
-                       (memq section magit-section-unhighlight-sections))
-                  (add-to-list 'magit-section-highlighted-sections section)
-                  (setq magit-section-unhighlight-sections
-                        (delq section magit-section-unhighlight-sections)))
-                 (t
-                  (setq paint t)))))
-    (when paint
-      (save-excursion
-        (goto-char (oref section start))
-        (let ((end (oref section end))
-              (merging (looking-at "@@@"))
-              (stage nil)
-              (tab-width (magit-diff-tab-width
-                          (magit-section-parent-value section))))
-          (forward-line)
-          (while (< (point) end)
-            (when (and magit-diff-hide-trailing-cr-characters
-                       (char-equal ?\r (char-before (line-end-position))))
-              (put-text-property (1- (line-end-position)) (line-end-position)
-                                 'invisible t))
-            (put-text-property
-             (point) (1+ (line-end-position)) 'face
-             (cond
-              ((looking-at "^\\+\\+?\\([<=|>]\\)\\{7\\}")
-               (setq stage (pcase (list (match-string 1) highlight)
-                             (`("<" nil) 'magit-diff-our)
-                             (`("<"   t) 'magit-diff-our-highlight)
-                             (`("|" nil) 'magit-diff-base)
-                             (`("|"   t) 'magit-diff-base-highlight)
-                             (`("=" nil) 'magit-diff-their)
-                             (`("="   t) 'magit-diff-their-highlight)
-                             (`(">" nil) nil)))
-               'magit-diff-conflict-heading)
-              ((looking-at (if merging "^\\(\\+\\| \\+\\)" "^\\+"))
-               (magit-diff-paint-tab merging tab-width)
-               (magit-diff-paint-whitespace merging)
-               (or stage
-                   (if highlight 'magit-diff-added-highlight 'magit-diff-added)))
-              ((looking-at (if merging "^\\(-\\| -\\)" "^-"))
-               (magit-diff-paint-tab merging tab-width)
-               (if highlight 'magit-diff-removed-highlight 'magit-diff-removed))
-              (t
-               (magit-diff-paint-tab merging tab-width)
-               (if highlight 'magit-diff-context-highlight 'magit-diff-context))))
-            (forward-line))))))
-  (magit-diff-update-hunk-refinement section))
-
-(defvar magit-diff--tab-width-cache nil)
-
-(defun magit-diff-tab-width (file)
-  (setq file (expand-file-name file))
-  (cl-flet ((cache (value)
-                   (let ((elt (assoc file magit-diff--tab-width-cache)))
-                     (if elt
-                         (setcdr elt value)
-                       (setq magit-diff--tab-width-cache
-                             (cons (cons file value)
-                                   magit-diff--tab-width-cache))))
-                   value))
-    (cond
-     ((not magit-diff-adjust-tab-width)
-      tab-width)
-     ((--when-let (find-buffer-visiting file)
-        (cache (buffer-local-value 'tab-width it))))
-     ((--when-let (assoc file magit-diff--tab-width-cache)
-        (or (cdr it)
-            tab-width)))
-     ((or (eq magit-diff-adjust-tab-width 'always)
-          (and (numberp magit-diff-adjust-tab-width)
-               (>= magit-diff-adjust-tab-width
-                   (nth 7 (file-attributes file)))))
-      (cache (buffer-local-value 'tab-width (find-file-noselect file))))
-     (t
-      (cache nil)
-      tab-width))))
-
-(defun magit-diff-paint-tab (merging width)
-  (save-excursion
-    (forward-char (if merging 2 1))
-    (while (= (char-after) ?\t)
-      (put-text-property (point) (1+ (point))
-                         'display (list (list 'space :width width)))
-      (forward-char))))
-
-(defun magit-diff-paint-whitespace (merging)
-  (when (and magit-diff-paint-whitespace
-             (or (derived-mode-p 'magit-status-mode)
-                 (not (eq magit-diff-paint-whitespace 'status))))
-    (let ((prefix (if merging "^[-\\+\s]\\{2\\}" "^[-\\+]"))
-          (indent
-           (if (local-variable-p 'magit-diff-highlight-indentation)
-               magit-diff-highlight-indentation
-             (setq-local
-              magit-diff-highlight-indentation
-              (cdr (--first (string-match-p (car it) default-directory)
-                            (nreverse
-                             (default-value
-                               'magit-diff-highlight-indentation))))))))
-      (when (and magit-diff-highlight-trailing
-                 (looking-at (concat prefix ".*?\\([ \t]+\\)$")))
-        (let ((ov (make-overlay (match-beginning 1) (match-end 1) nil t)))
-          (overlay-put ov 'face 'magit-diff-whitespace-warning)
-          (overlay-put ov 'evaporate t)))
-      (when (or (and (eq indent 'tabs)
-                     (looking-at (concat prefix "\\( *\t[ \t]*\\)")))
-                (and (integerp indent)
-                     (looking-at (format "%s\\([ \t]* \\{%s,\\}[ \t]*\\)"
-                                         prefix indent))))
-        (let ((ov (make-overlay (match-beginning 1) (match-end 1) nil t)))
-          (overlay-put ov 'face 'magit-diff-whitespace-warning)
-          (overlay-put ov 'evaporate t))))))
-
-(defun magit-diff-update-hunk-refinement (&optional section)
-  (if section
-      (unless (oref section hidden)
-        (pcase (list magit-diff-refine-hunk
-                     (oref section refined)
-                     (eq section (magit-current-section)))
-          ((or `(all nil ,_) `(t nil t))
-           (oset section refined t)
-           (save-excursion
-             (goto-char (oref section start))
-             ;; `diff-refine-hunk' does not handle combined diffs.
-             (unless (looking-at "@@@")
-               ;; Avoid fsyncing many small temp files
-               (let ((write-region-inhibit-fsync t))
-                 (diff-refine-hunk)))))
-          ((or `(nil t ,_) `(t t nil))
-           (oset section refined nil)
-           (remove-overlays (oref section start)
-                            (oref section end)
-                            'diff-mode 'fine))))
-    (cl-labels ((recurse (section)
-                         (if (magit-section-match 'hunk section)
-                             (magit-diff-update-hunk-refinement section)
-                           (dolist (child (oref section children))
-                             (recurse child)))))
-      (recurse magit-root-section))))
-
-
-;;; Hunk Region
-
-(defun magit-diff-hunk-region-beginning ()
-  (save-excursion (goto-char (region-beginning))
-                  (line-beginning-position)))
-
-(defun magit-diff-hunk-region-end ()
-  (save-excursion (goto-char (region-end))
-                  (line-end-position)))
-
-(defun magit-diff-update-hunk-region (section)
-  "Highlight the hunk-internal region if any."
-  (when (eq (magit-diff-scope section t) 'region)
-    (magit-diff--make-hunk-overlay
-     (oref section start)
-     (1- (oref section content))
-     'face 'magit-diff-lines-heading
-     'display (magit-diff-hunk-region-header section)
-     'after-string (magit-diff--hunk-after-string 'magit-diff-lines-heading))
-    (run-hook-with-args 'magit-diff-highlight-hunk-region-functions section)
-    t))
-
-(defun magit-diff-highlight-hunk-region-dim-outside (section)
-  "Dim the parts of the hunk that are outside the hunk-internal region.
-This is done by using the same foreground and background color
-for added and removed lines as for context lines."
-  (let ((face (if magit-diff-highlight-hunk-body
-                  'magit-diff-context-highlight
-                'magit-diff-context)))
-    (when magit-diff-unmarked-lines-keep-foreground
-      (setq face (list :background (face-attribute face :background))))
-    (magit-diff--make-hunk-overlay (oref section content)
-                                   (magit-diff-hunk-region-beginning)
-                                   'face face
-                                   'priority 2)
-    (magit-diff--make-hunk-overlay (1+ (magit-diff-hunk-region-end))
-                                   (oref section end)
-                                   'face face
-                                   'priority 2)))
-
-(defun magit-diff-highlight-hunk-region-using-face (_section)
-  "Highlight the hunk-internal region by making it bold.
-Or rather highlight using the face `magit-diff-hunk-region', though
-changing only the `:weight' and/or `:slant' is recommended for that
-face."
-  (magit-diff--make-hunk-overlay (magit-diff-hunk-region-beginning)
-                                 (1+ (magit-diff-hunk-region-end))
-                                 'face 'magit-diff-hunk-region))
-
-(defun magit-diff-highlight-hunk-region-using-overlays (section)
-  "Emphasize the hunk-internal region using delimiting horizontal lines.
-This is implemented as single-pixel newlines places inside overlays."
-  (if (window-system)
-      (let ((beg (magit-diff-hunk-region-beginning))
-            (end (magit-diff-hunk-region-end))
-            (str (propertize
-                  (concat (propertize "\s" 'display '(space :height (1)))
-                          (propertize "\n" 'line-height t))
-                  'face 'magit-diff-lines-boundary)))
-        (magit-diff--make-hunk-overlay beg (1+ beg) 'before-string str)
-        (magit-diff--make-hunk-overlay end (1+ end) 'after-string  str))
-    (magit-diff-highlight-hunk-region-using-face section)))
-
-(defun magit-diff-highlight-hunk-region-using-underline (section)
-  "Emphasize the hunk-internal region using delimiting horizontal lines.
-This is implemented by overlining and underlining the first and
-last (visual) lines of the region."
-  (if (window-system)
-      (let* ((beg (magit-diff-hunk-region-beginning))
-             (end (magit-diff-hunk-region-end))
-             (beg-eol (save-excursion (goto-char beg)
-                                      (end-of-visual-line)
-                                      (point)))
-             (end-bol (save-excursion (goto-char end)
-                                      (beginning-of-visual-line)
-                                      (point)))
-             (color (face-background 'magit-diff-lines-boundary nil t)))
-        (cl-flet ((ln (b e &rest face)
-                      (magit-diff--make-hunk-overlay
-                       b e 'face face 'after-string
-                       (magit-diff--hunk-after-string face))))
-          (if (= beg end-bol)
-              (ln beg beg-eol :overline color :underline color)
-            (ln beg beg-eol :overline color)
-            (ln end-bol end :underline color))))
-    (magit-diff-highlight-hunk-region-using-face section)))
-
-(defun magit-diff--make-hunk-overlay (start end &rest args)
-  (let ((ov (make-overlay start end nil t)))
-    (overlay-put ov 'evaporate t)
-    (while args (overlay-put ov (pop args) (pop args)))
-    (push ov magit-region-overlays)
-    ov))
-
-(defun magit-diff--hunk-after-string (face)
-  (propertize "\s"
-              'face face
-              'display (list 'space :align-to
-                             `(+ (0 . right)
-                                 ,(min (window-hscroll)
-                                       (- (line-end-position)
-                                          (line-beginning-position)))))
-              ;; This prevents the cursor from being rendered at the
-              ;; edge of the window.
-              'cursor t))
-
-;;; Hunk Utilities
-
-(defun magit-diff-inside-hunk-body-p ()
-  "Return non-nil if point is inside the body of a hunk."
-  (and (magit-section-match 'hunk)
-       (> (point)
-          (oref (magit-current-section) content))))
-
-;;; Diff Extract
-
-(defun magit-diff-file-header (section)
-  (when (magit-hunk-section-p section)
-    (setq section (oref section parent)))
-  (when (magit-file-section-p section)
-    (oref section header)))
-
-(defun magit-diff-hunk-region-header (section)
-  (let ((patch (magit-diff-hunk-region-patch section)))
-    (string-match "\n" patch)
-    (substring patch 0 (1- (match-end 0)))))
-
-(defun magit-diff-hunk-region-patch (section &optional args)
-  (let ((op (if (member "--reverse" args) "+" "-"))
-        (sbeg (oref section start))
-        (rbeg (magit-diff-hunk-region-beginning))
-        (rend (region-end))
-        (send (oref section end))
-        (patch nil))
-    (save-excursion
-      (goto-char sbeg)
-      (while (< (point) send)
-        (looking-at "\\(.\\)\\([^\n]*\n\\)")
-        (cond ((or (string-match-p "[@ ]" (match-string-no-properties 1))
-                   (and (>= (point) rbeg)
-                        (<= (point) rend)))
-               (push (match-string-no-properties 0) patch))
-              ((equal op (match-string-no-properties 1))
-               (push (concat " " (match-string-no-properties 2)) patch)))
-        (forward-line)))
-    (with-temp-buffer
-      (insert (mapconcat 'identity (reverse patch) ""))
-      (diff-fixup-modifs (point-min) (point-max))
-      (setq patch (buffer-string)))
-    patch))
-
-;;; _
-(provide 'magit-diff)
-;;; magit-diff.el ends here
diff --git a/elpa/magit-20181116.1412/magit-diff.elc b/elpa/magit-20181116.1412/magit-diff.elc
deleted file mode 100644
index 68effac..0000000
--- a/elpa/magit-20181116.1412/magit-diff.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-ediff.el b/elpa/magit-20181116.1412/magit-ediff.el
deleted file mode 100644
index 41b3d83..0000000
--- a/elpa/magit-20181116.1412/magit-ediff.el
+++ /dev/null
@@ -1,510 +0,0 @@
-;;; magit-ediff.el --- Ediff extension for Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library provides basic support for Ediff.
-
-;;; Code:
-
-(require 'magit)
-
-(require 'ediff)
-(require 'smerge-mode)
-
-(defvar smerge-ediff-buf)
-(defvar smerge-ediff-windows)
-
-;;; Options
-
-(defgroup magit-ediff nil
-  "Ediff support for Magit."
-  :link '(info-link "(magit)Ediffing")
-  :group 'magit-extensions)
-
-(defcustom magit-ediff-quit-hook
-  '(magit-ediff-cleanup-auxiliary-buffers
-    magit-ediff-restore-previous-winconf)
-  "Hooks to run after finishing Ediff, when that was invoked using Magit.
-The hooks are run in the Ediff control buffer.  This is similar
-to `ediff-quit-hook' but takes the needs of Magit into account.
-The `ediff-quit-hook' is ignored by Ediff sessions which were
-invoked using Magit."
-  :package-version '(magit . "2.2.0")
-  :group 'magit-ediff
-  :type 'hook
-  :get 'magit-hook-custom-get
-  :options '(magit-ediff-cleanup-auxiliary-buffers
-             magit-ediff-restore-previous-winconf))
-
-(defcustom magit-ediff-dwim-show-on-hunks nil
-  "Whether `magit-ediff-dwim' runs show variants on hunks.
-If non-nil, `magit-ediff-show-staged' or
-`magit-ediff-show-unstaged' are called based on what section the
-hunk is in.  Otherwise, `magit-ediff-dwim' runs
-`magit-ediff-stage' when point is on an uncommitted hunk."
-  :package-version '(magit . "2.2.0")
-  :group 'magit-ediff
-  :type 'boolean)
-
-(defcustom magit-ediff-show-stash-with-index t
-  "Whether `magit-ediff-show-stash' shows the state of the index.
-
-If non-nil, use a third Ediff buffer to distinguish which changes
-in the stash were staged.  In cases where the stash contains no
-staged changes, fall back to a two-buffer Ediff.
-
-More specifically, a stash is a merge commit, stash@{N}, with
-potentially three parents.
-
-* stash@{N}^1 represents the `HEAD' commit at the time the stash
-  was created.
-
-* stash@{N}^2 records any changes that were staged when the stash
-  was made.
-
-* stash@{N}^3, if it exists, contains files that were untracked
-  when stashing.
-
-If this option is non-nil, `magit-ediff-show-stash' will run
-Ediff on a file using three buffers: one for stash@{N}, another
-for stash@{N}^1, and a third for stash@{N}^2.
-
-Otherwise, Ediff uses two buffers, comparing
-stash@{N}^1..stash@{N}.  Along with any unstaged changes, changes
-in the index commit, stash@{N}^2, will be shown in this
-comparison unless they conflicted with changes in the working
-tree at the time of stashing."
-  :package-version '(magit . "2.6.0")
-  :group 'magit-ediff
-  :type 'boolean)
-
-;;; Commands
-
-(defvar magit-ediff-previous-winconf nil)
-
-;;;###autoload (autoload 'magit-ediff-popup "magit-ediff" nil t)
-(magit-define-popup magit-ediff-popup
-  "Popup console for ediff commands."
-  :actions '((?E "Dwim"          magit-ediff-dwim)
-             (?u "Show unstaged" magit-ediff-show-unstaged)
-             (?s "Stage"         magit-ediff-stage)
-             (?i "Show staged"   magit-ediff-show-staged)
-             (?m "Resolve"       magit-ediff-resolve)
-             (?w "Show worktree" magit-ediff-show-working-tree)
-             (?r "Diff range"    magit-ediff-compare)
-             (?c "Show commit"   magit-ediff-show-commit) nil
-             (?z "Show stash"    magit-ediff-show-stash))
-  :max-action-columns 2)
-
-;;;###autoload
-(defun magit-ediff-resolve (file)
-  "Resolve outstanding conflicts in FILE using Ediff.
-FILE has to be relative to the top directory of the repository.
-
-In the rare event that you want to manually resolve all
-conflicts, including those already resolved by Git, use
-`ediff-merge-revisions-with-ancestor'."
-  (interactive
-   (let ((current  (magit-current-file))
-         (unmerged (magit-unmerged-files)))
-     (unless unmerged
-       (user-error "There are no unresolved conflicts"))
-     (list (magit-completing-read "Resolve file" unmerged nil t nil nil
-                                  (car (member current unmerged))))))
-  (magit-with-toplevel
-    (with-current-buffer (find-file-noselect file)
-      (smerge-ediff)
-      (setq-local
-       ediff-quit-hook
-       (lambda ()
-         (let ((bufC ediff-buffer-C)
-               (bufS smerge-ediff-buf))
-           (with-current-buffer bufS
-             (when (yes-or-no-p (format "Conflict resolution finished; save %s? "
-                                        buffer-file-name))
-               (erase-buffer)
-               (insert-buffer-substring bufC)
-               (save-buffer))))
-         (when (buffer-live-p ediff-buffer-A) (kill-buffer ediff-buffer-A))
-         (when (buffer-live-p ediff-buffer-B) (kill-buffer ediff-buffer-B))
-         (when (buffer-live-p ediff-buffer-C) (kill-buffer ediff-buffer-C))
-         (when (buffer-live-p ediff-ancestor-buffer)
-           (kill-buffer ediff-ancestor-buffer))
-         (let ((magit-ediff-previous-winconf smerge-ediff-windows))
-           (run-hooks 'magit-ediff-quit-hook)))))))
-
-;;;###autoload
-(defun magit-ediff-stage (file)
-  "Stage and unstage changes to FILE using Ediff.
-FILE has to be relative to the top directory of the repository."
-  (interactive
-   (list (magit-completing-read "Selectively stage file"
-                                (magit-tracked-files) nil nil nil nil
-                                (magit-current-file))))
-  (magit-with-toplevel
-    (let* ((conf (current-window-configuration))
-           (bufA (magit-get-revision-buffer "HEAD" file))
-           (bufB (get-buffer (concat file ".~{index}~")))
-           (bufBrw (and bufB (with-current-buffer bufB (not buffer-read-only))))
-           (bufC (get-file-buffer file))
-           (fileBufC (or bufC (find-file-noselect file)))
-           (coding-system-for-read
-            (with-current-buffer fileBufC buffer-file-coding-system)))
-      (ediff-buffers3
-       (or bufA (magit-find-file-noselect "HEAD" file))
-       (with-current-buffer (magit-find-file-index-noselect file t)
-         (setq buffer-read-only nil)
-         (current-buffer))
-       fileBufC
-       `((lambda ()
-           (setq-local
-            ediff-quit-hook
-            (lambda ()
-              (and (buffer-live-p ediff-buffer-B)
-                   (buffer-modified-p ediff-buffer-B)
-                   (with-current-buffer ediff-buffer-B
-                     (magit-update-index)))
-              (and (buffer-live-p ediff-buffer-C)
-                   (buffer-modified-p ediff-buffer-C)
-                   (with-current-buffer ediff-buffer-C
-                     (when (y-or-n-p
-                            (format "Save file %s? " buffer-file-name))
-                       (save-buffer))))
-              ,@(unless bufA '((ediff-kill-buffer-carefully ediff-buffer-A)))
-              ,@(if bufB
-                    (unless bufBrw '((with-current-buffer ediff-buffer-B
-                                       (setq buffer-read-only t))))
-                  '((ediff-kill-buffer-carefully ediff-buffer-B)))
-              ,@(unless bufC '((ediff-kill-buffer-carefully ediff-buffer-C)))
-              (let ((magit-ediff-previous-winconf ,conf))
-                (run-hooks 'magit-ediff-quit-hook))))))
-       'ediff-buffers3))))
-
-;;;###autoload
-(defun magit-ediff-compare (revA revB fileA fileB)
-  "Compare REVA:FILEA with REVB:FILEB using Ediff.
-
-FILEA and FILEB have to be relative to the top directory of the
-repository.  If REVA or REVB is nil, then this stands for the
-working tree state.
-
-If the region is active, use the revisions on the first and last
-line of the region.  With a prefix argument, instead of diffing
-the revisions, choose a revision to view changes along, starting
-at the common ancestor of both revisions (i.e., use a \"...\"
-range)."
-  (interactive
-   (pcase-let ((`(,revA ,revB) (magit-ediff-compare--read-revisions
-                                nil current-prefix-arg)))
-     (nconc (list revA revB)
-            (magit-ediff-read-files revA revB))))
-  (magit-with-toplevel
-    (let ((conf (current-window-configuration))
-          (bufA (if revA
-                    (magit-get-revision-buffer revA fileA)
-                  (get-file-buffer fileA)))
-          (bufB (if revB
-                    (magit-get-revision-buffer revB fileB)
-                  (get-file-buffer fileB))))
-      (ediff-buffers
-       (or bufA (if revA
-                    (magit-find-file-noselect revA fileA)
-                  (find-file-noselect fileA)))
-       (or bufB (if revB
-                    (magit-find-file-noselect revB fileB)
-                  (find-file-noselect fileB)))
-       `((lambda ()
-           (setq-local
-            ediff-quit-hook
-            (lambda ()
-              ,@(unless bufA '((ediff-kill-buffer-carefully ediff-buffer-A)))
-              ,@(unless bufB '((ediff-kill-buffer-carefully ediff-buffer-B)))
-              (let ((magit-ediff-previous-winconf ,conf))
-                (run-hooks 'magit-ediff-quit-hook))))))
-       'ediff-revision))))
-
-(defun magit-ediff-compare--read-revisions (&optional arg mbase)
-  (let ((input (or arg (magit-diff-read-range-or-commit
-                        "Compare range or commit"
-                        nil mbase))))
-    (--if-let (magit-split-range input)
-        (-cons-to-list it)
-      (list input nil))))
-
-(defun magit-ediff-read-files (revA revB &optional fileB)
-  "Read file in REVB, return it and the corresponding file in REVA.
-When FILEB is non-nil, use this as REVB's file instead of
-prompting for it."
-  (unless fileB
-    (setq fileB (magit-read-file-choice
-                 (format "File to compare between %s and %s"
-                         revA (or revB "the working tree"))
-                 (magit-changed-files revA revB)
-                 (format "No changed files between %s and %s"
-                         revA (or revB "the working tree")))))
-  (list (or (car (member fileB (magit-revision-files revA)))
-            (cdr (assoc fileB (magit-renamed-files revB revA)))
-            (magit-read-file-choice
-             (format "File in %s to compare with %s in %s"
-                     revA fileB (or revB "the working tree"))
-             (magit-changed-files revB revA)
-             (format "No files have changed between %s and %s"
-                     revA revB)))
-        fileB))
-
-;;;###autoload
-(defun magit-ediff-dwim ()
-  "Compare, stage, or resolve using Ediff.
-This command tries to guess what file, and what commit or range
-the user wants to compare, stage, or resolve using Ediff.  It
-might only be able to guess either the file, or range or commit,
-in which case the user is asked about the other.  It might not
-always guess right, in which case the appropriate `magit-ediff-*'
-command has to be used explicitly.  If it cannot read the user's
-mind at all, then it asks the user for a command to run."
-  (interactive)
-  (magit-section-case
-    (hunk (save-excursion
-            (goto-char (oref (oref it parent) start))
-            (magit-ediff-dwim)))
-    (t
-     (let ((range (magit-diff--dwim))
-           (file (magit-current-file))
-           command revA revB)
-       (pcase range
-         ((and (guard (not magit-ediff-dwim-show-on-hunks))
-               (or `unstaged `staged))
-          (setq command (if (magit-anything-unmerged-p)
-                            #'magit-ediff-resolve
-                          #'magit-ediff-stage)))
-         (`unstaged (setq command #'magit-ediff-show-unstaged))
-         (`staged (setq command #'magit-ediff-show-staged))
-         (`(commit . ,value)
-          (setq command #'magit-ediff-show-commit)
-          (setq revB value))
-         (`(stash . ,value)
-          (setq command #'magit-ediff-show-stash)
-          (setq revB value))
-         ((pred stringp)
-          (pcase-let ((`(,a ,b) (magit-ediff-compare--read-revisions range)))
-            (setq command #'magit-ediff-compare)
-            (setq revA a)
-            (setq revB b)))
-         (_
-          (when (derived-mode-p 'magit-diff-mode)
-            (pcase (magit-diff-type)
-              (`committed (pcase-let ((`(,a ,b)
-                                       (magit-ediff-compare--read-revisions
-                                        (car magit-refresh-args))))
-                            (setq revA a)
-                            (setq revB b)))
-              ((guard (not magit-ediff-dwim-show-on-hunks))
-               (setq command #'magit-ediff-stage))
-              (`unstaged  (setq command #'magit-ediff-show-unstaged))
-              (`staged    (setq command #'magit-ediff-show-staged))
-              (`undefined (setq command nil))
-              (_          (setq command nil))))))
-       (cond ((not command)
-              (call-interactively
-               (magit-read-char-case
-                   "Failed to read your mind; do you want to " t
-                 (?c "[c]ommit"  'magit-ediff-show-commit)
-                 (?r "[r]ange"   'magit-ediff-compare)
-                 (?s "[s]tage"   'magit-ediff-stage)
-                 (?v "resol[v]e" 'magit-ediff-resolve))))
-             ((eq command 'magit-ediff-compare)
-              (apply 'magit-ediff-compare revA revB
-                     (magit-ediff-read-files revA revB file)))
-             ((eq command 'magit-ediff-show-commit)
-              (magit-ediff-show-commit revB))
-             ((eq command 'magit-ediff-show-stash)
-              (magit-ediff-show-stash revB))
-             (file
-              (funcall command file))
-             (t
-              (call-interactively command)))))))
-
-;;;###autoload
-(defun magit-ediff-show-staged (file)
-  "Show staged changes using Ediff.
-
-This only allows looking at the changes; to stage, unstage,
-and discard changes using Ediff, use `magit-ediff-stage'.
-
-FILE must be relative to the top directory of the repository."
-  (interactive
-   (list (magit-read-file-choice "Show staged changes for file"
-                                 (magit-staged-files)
-                                 "No staged files")))
-  (let ((conf (current-window-configuration))
-        (bufA (magit-get-revision-buffer "HEAD" file))
-        (bufB (get-buffer (concat file ".~{index}~"))))
-    (ediff-buffers
-     (or bufA (magit-find-file-noselect "HEAD" file))
-     (or bufB (magit-find-file-index-noselect file t))
-     `((lambda ()
-         (setq-local
-          ediff-quit-hook
-          (lambda ()
-            ,@(unless bufA '((ediff-kill-buffer-carefully ediff-buffer-A)))
-            ,@(unless bufB '((ediff-kill-buffer-carefully ediff-buffer-B)))
-            (let ((magit-ediff-previous-winconf ,conf))
-              (run-hooks 'magit-ediff-quit-hook))))))
-     'ediff-buffers)))
-
-;;;###autoload
-(defun magit-ediff-show-unstaged (file)
-  "Show unstaged changes using Ediff.
-
-This only allows looking at the changes; to stage, unstage,
-and discard changes using Ediff, use `magit-ediff-stage'.
-
-FILE must be relative to the top directory of the repository."
-  (interactive
-   (list (magit-read-file-choice "Show unstaged changes for file"
-                                 (magit-unstaged-files)
-                                 "No unstaged files")))
-  (magit-with-toplevel
-    (let ((conf (current-window-configuration))
-          (bufA (get-buffer (concat file ".~{index}~")))
-          (bufB (get-file-buffer file)))
-      (ediff-buffers
-       (or bufA (magit-find-file-index-noselect file t))
-       (or bufB (find-file-noselect file))
-       `((lambda ()
-           (setq-local
-            ediff-quit-hook
-            (lambda ()
-              ,@(unless bufA '((ediff-kill-buffer-carefully ediff-buffer-A)))
-              ,@(unless bufB '((ediff-kill-buffer-carefully ediff-buffer-B)))
-              (let ((magit-ediff-previous-winconf ,conf))
-                (run-hooks 'magit-ediff-quit-hook))))))
-       'ediff-buffers))))
-
-;;;###autoload
-(defun magit-ediff-show-working-tree (file)
-  "Show changes between `HEAD' and working tree using Ediff.
-FILE must be relative to the top directory of the repository."
-  (interactive
-   (list (magit-read-file-choice "Show changes in file"
-                                 (magit-changed-files "HEAD")
-                                 "No changed files")))
-  (magit-with-toplevel
-    (let ((conf (current-window-configuration))
-          (bufA (magit-get-revision-buffer "HEAD" file))
-          (bufB (get-file-buffer file)))
-      (ediff-buffers
-       (or bufA (magit-find-file-noselect "HEAD" file))
-       (or bufB (find-file-noselect file))
-       `((lambda ()
-           (setq-local
-            ediff-quit-hook
-            (lambda ()
-              ,@(unless bufA '((ediff-kill-buffer-carefully ediff-buffer-A)))
-              ,@(unless bufB '((ediff-kill-buffer-carefully ediff-buffer-B)))
-              (let ((magit-ediff-previous-winconf ,conf))
-                (run-hooks 'magit-ediff-quit-hook))))))
-       'ediff-buffers))))
-
-;;;###autoload
-(defun magit-ediff-show-commit (commit)
-  "Show changes introduced by COMMIT using Ediff."
-  (interactive (list (magit-read-branch-or-commit "Revision")))
-  (let ((revA (concat commit "^"))
-        (revB commit))
-    (apply #'magit-ediff-compare
-           revA revB
-           (magit-ediff-read-files revA revB (magit-current-file)))))
-
-;;;###autoload
-(defun magit-ediff-show-stash (stash)
-  "Show changes introduced by STASH using Ediff.
-`magit-ediff-show-stash-with-index' controls whether a
-three-buffer Ediff is used in order to distinguish changes in the
-stash that were staged."
-  (interactive (list (magit-read-stash "Stash")))
-  (pcase-let* ((revA (concat stash "^1"))
-               (revB (concat stash "^2"))
-               (revC stash)
-               (`(,fileA ,fileC) (magit-ediff-read-files revA revC))
-               (fileB fileC))
-    (if (and magit-ediff-show-stash-with-index
-             (member fileA (magit-changed-files revB revA)))
-        (let ((conf (current-window-configuration))
-              (bufA (magit-get-revision-buffer revA fileA))
-              (bufB (magit-get-revision-buffer revB fileB))
-              (bufC (magit-get-revision-buffer revC fileC)))
-          (ediff-buffers3
-           (or bufA (magit-find-file-noselect revA fileA))
-           (or bufB (magit-find-file-noselect revB fileB))
-           (or bufC (magit-find-file-noselect revC fileC))
-           `((lambda ()
-               (setq-local
-                ediff-quit-hook
-                (lambda ()
-                  ,@(unless bufA
-                      '((ediff-kill-buffer-carefully ediff-buffer-A)))
-                  ,@(unless bufB
-                      '((ediff-kill-buffer-carefully ediff-buffer-B)))
-                  ,@(unless bufC
-                      '((ediff-kill-buffer-carefully ediff-buffer-C)))
-                  (let ((magit-ediff-previous-winconf ,conf))
-                    (run-hooks 'magit-ediff-quit-hook))))))
-           'ediff-buffers3))
-      (magit-ediff-compare revA revC fileA fileC))))
-
-(defun magit-ediff-cleanup-auxiliary-buffers ()
-  (let* ((ctl-buf ediff-control-buffer)
-         (ctl-win (ediff-get-visible-buffer-window ctl-buf))
-         (ctl-frm ediff-control-frame)
-         (main-frame (cond ((window-live-p ediff-window-A)
-                            (window-frame ediff-window-A))
-                           ((window-live-p ediff-window-B)
-                            (window-frame ediff-window-B)))))
-    (ediff-kill-buffer-carefully ediff-diff-buffer)
-    (ediff-kill-buffer-carefully ediff-custom-diff-buffer)
-    (ediff-kill-buffer-carefully ediff-fine-diff-buffer)
-    (ediff-kill-buffer-carefully ediff-tmp-buffer)
-    (ediff-kill-buffer-carefully ediff-error-buffer)
-    (ediff-kill-buffer-carefully ediff-msg-buffer)
-    (ediff-kill-buffer-carefully ediff-debug-buffer)
-    (when (boundp 'ediff-patch-diagnostics)
-      (ediff-kill-buffer-carefully ediff-patch-diagnostics))
-    (cond ((and (ediff-window-display-p)
-                (frame-live-p ctl-frm))
-           (delete-frame ctl-frm))
-          ((window-live-p ctl-win)
-           (delete-window ctl-win)))
-    (unless (ediff-multiframe-setup-p)
-      (ediff-kill-bottom-toolbar))
-    (ediff-kill-buffer-carefully ctl-buf)
-    (when (frame-live-p main-frame)
-      (select-frame main-frame))))
-
-(defun magit-ediff-restore-previous-winconf ()
-  (set-window-configuration magit-ediff-previous-winconf))
-
-;;; _
-(provide 'magit-ediff)
-;;; magit-ediff.el ends here
diff --git a/elpa/magit-20181116.1412/magit-ediff.elc b/elpa/magit-20181116.1412/magit-ediff.elc
deleted file mode 100644
index ab69f9c..0000000
--- a/elpa/magit-20181116.1412/magit-ediff.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-extras.el b/elpa/magit-20181116.1412/magit-extras.el
deleted file mode 100644
index cd0649a..0000000
--- a/elpa/magit-20181116.1412/magit-extras.el
+++ /dev/null
@@ -1,651 +0,0 @@
-;;; magit-extras.el --- additional functionality for Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; Additional functionality for Magit.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-(declare-function dired-read-shell-command "dired-aux" (prompt arg files))
-
-(defgroup magit-extras nil
-  "Additional functionality for Magit."
-  :group 'magit-extensions)
-
-;;; External Tools
-
-(defcustom magit-gitk-executable
-  (or (and (eq system-type 'windows-nt)
-           (let ((exe (magit-git-string
-                       "-c" "alias.X=!x() { which \"$1\" | cygpath -mf -; }; x"
-                       "X" "gitk.exe")))
-             (and exe (file-executable-p exe) exe)))
-      (executable-find "gitk") "gitk")
-  "The Gitk executable."
-  :group 'magit-extras
-  :set-after '(magit-git-executable)
-  :type 'string)
-
-;;;###autoload
-(defun magit-run-git-gui ()
-  "Run `git gui' for the current git repository."
-  (interactive)
-  (magit-with-toplevel
-    (magit-process-file magit-git-executable nil 0 nil "gui")))
-
-;;;###autoload
-(defun magit-run-git-gui-blame (commit filename &optional linenum)
-  "Run `git gui blame' on the given FILENAME and COMMIT.
-Interactively run it for the current file and the `HEAD', with a
-prefix or when the current file cannot be determined let the user
-choose.  When the current buffer is visiting FILENAME instruct
-blame to center around the line point is on."
-  (interactive
-   (let (revision filename)
-     (when (or current-prefix-arg
-               (not (setq revision "HEAD"
-                          filename (magit-file-relative-name nil 'tracked))))
-       (setq revision (magit-read-branch-or-commit "Blame from revision"))
-       (setq filename (magit-read-file-from-rev revision "Blame file")))
-     (list revision filename
-           (and (equal filename
-                       (ignore-errors
-                         (magit-file-relative-name buffer-file-name)))
-                (line-number-at-pos)))))
-  (magit-with-toplevel
-    (apply #'magit-process-file magit-git-executable nil 0 nil "gui" "blame"
-           `(,@(and linenum (list (format "--line=%d" linenum)))
-             ,commit
-             ,filename))))
-
-;;;###autoload
-(defun magit-run-gitk ()
-  "Run `gitk' in the current repository."
-  (interactive)
-  (magit-process-file magit-gitk-executable nil 0))
-
-;;;###autoload
-(defun magit-run-gitk-branches ()
-  "Run `gitk --branches' in the current repository."
-  (interactive)
-  (magit-process-file magit-gitk-executable nil 0 nil "--branches"))
-
-;;;###autoload
-(defun magit-run-gitk-all ()
-  "Run `gitk --all' in the current repository."
-  (interactive)
-  (magit-process-file magit-gitk-executable nil 0 nil "--all"))
-
-;;; Emacs Tools
-
-;;;###autoload
-(defun ido-enter-magit-status ()
-  "Drop into `magit-status' from file switching.
-
-This command does not work in Emacs 26.  It does work in Emacs 25
-and Emacs 27.  See https://github.com/magit/magit/issues/3634 and
-https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31707.
-
-To make this command available use something like:
-
-  (add-hook \\='ido-setup-hook
-            (lambda ()
-              (define-key ido-completion-map
-                (kbd \"C-x g\") \\='ido-enter-magit-status)))
-
-Starting with Emacs 25.1 the Ido keymaps are defined just once
-instead of every time Ido is invoked, so now you can modify it
-like pretty much every other keymap:
-
-  (define-key ido-common-completion-map
-    (kbd \"C-x g\") \\='ido-enter-magit-status)"
-  (interactive)
-  (with-no-warnings ; FIXME these are internal variables
-    (setq ido-exit 'fallback)
-    (setq fallback 'magit-status)      ; for Emacs 25
-    (setq ido-fallback 'magit-status)) ; for Emacs 27
-  (exit-minibuffer))
-
-;;;###autoload
-(defun magit-dired-jump (&optional other-window)
-  "Visit file at point using Dired.
-With a prefix argument, visit in another window.  If there
-is no file at point, then instead visit `default-directory'."
-  (interactive "P")
-  (dired-jump other-window
-              (when-let ((file (magit-file-at-point)))
-                (expand-file-name (if (file-directory-p file)
-                                      (file-name-as-directory file)
-                                    file)))))
-
-;;;###autoload
-(defun magit-dired-log (&optional follow)
-  "Show log for all marked files, or the current file."
-  (interactive "P")
-  (if-let ((topdir (magit-toplevel default-directory)))
-      (let ((args (car (magit-log-arguments)))
-            (files (dired-get-marked-files nil nil #'magit-file-tracked-p)))
-        (unless files
-          (user-error "No marked file is being tracked by Git"))
-        (when (and follow
-                   (not (member "--follow" args))
-                   (not (cdr files)))
-          (push "--follow" args))
-        (magit-mode-setup-internal
-         #'magit-log-mode
-         (list (list (or (magit-get-current-branch) "HEAD"))
-               args
-               (let ((default-directory topdir))
-                 (mapcar #'file-relative-name files)))
-         magit-log-buffer-file-locked))
-    (magit--not-inside-repository-error)))
-
-;;;###autoload
-(defun magit-do-async-shell-command (file)
-  "Open FILE with `dired-do-async-shell-command'.
-Interactively, open the file at point."
-  (interactive (list (or (magit-file-at-point)
-                         (completing-read "Act on file: "
-                                          (magit-list-files)))))
-  (require 'dired-aux)
-  (dired-do-async-shell-command
-   (dired-read-shell-command "& on %s: " current-prefix-arg (list file))
-   nil (list file)))
-
-;;; Shift Selection
-
-(defun magit--turn-on-shift-select-mode-p ()
-  (and shift-select-mode
-       this-command-keys-shift-translated
-       (not mark-active)
-       (not (eq (car-safe transient-mark-mode) 'only))))
-
-;;;###autoload
-(defun magit-previous-line (&optional arg try-vscroll)
-  "Like `previous-line' but with Magit-specific shift-selection.
-
-Magit's selection mechanism is based on the region but selects an
-area that is larger than the region.  This causes `previous-line'
-when invoked while holding the shift key to move up one line and
-thereby select two lines.  When invoked inside a hunk body this
-command does not move point on the first invocation and thereby
-it only selects a single line.  Which inconsistency you prefer
-is a matter of preference."
-  (declare (interactive-only
-            "use `forward-line' with negative argument instead."))
-  (interactive "p\np")
-  (unless arg (setq arg 1))
-  (let ((stay (or (magit-diff-inside-hunk-body-p)
-                  (magit-section-position-in-heading-p))))
-    (if (and stay (= arg 1) (magit--turn-on-shift-select-mode-p))
-        (push-mark nil nil t)
-      (with-no-warnings
-        (handle-shift-selection)
-        (previous-line (if stay (max (1- arg) 1) arg) try-vscroll)))))
-
-;;;###autoload
-(defun magit-next-line (&optional arg try-vscroll)
-  "Like `next-line' but with Magit-specific shift-selection.
-
-Magit's selection mechanism is based on the region but selects
-an area that is larger than the region.  This causes `next-line'
-when invoked while holding the shift key to move down one line
-and thereby select two lines.  When invoked inside a hunk body
-this command does not move point on the first invocation and
-thereby it only selects a single line.  Which inconsistency you
-prefer is a matter of preference."
-  (declare (interactive-only forward-line))
-  (interactive "p\np")
-  (unless arg (setq arg 1))
-  (let ((stay (or (magit-diff-inside-hunk-body-p)
-                  (magit-section-position-in-heading-p))))
-    (if (and stay (= arg 1) (magit--turn-on-shift-select-mode-p))
-        (push-mark nil nil t)
-      (with-no-warnings
-        (handle-shift-selection)
-        (next-line (if stay (max (1- arg) 1) arg) try-vscroll)))))
-
-;;; Clean
-
-;;;###autoload
-(defun magit-clean (&optional arg)
-  "Remove untracked files from the working tree.
-With a prefix argument also remove ignored files,
-with two prefix arguments remove ignored files only.
-\n(git clean -f -d [-x|-X])"
-  (interactive "p")
-  (when (yes-or-no-p (format "Remove %s files? "
-                             (pcase arg
-                               (1 "untracked")
-                               (4 "untracked and ignored")
-                               (_ "ignored"))))
-    (magit-wip-commit-before-change)
-    (magit-run-git "clean" "-f" "-d" (pcase arg (4 "-x") (16 "-X")))))
-
-(put 'magit-clean 'disabled t)
-
-;;; ChangeLog
-
-;;;###autoload
-(defun magit-add-change-log-entry (&optional whoami file-name other-window)
-  "Find change log file and add date entry and item for current change.
-This differs from `add-change-log-entry' (which see) in that
-it acts on the current hunk in a Magit buffer instead of on
-a position in a file-visiting buffer."
-  (interactive (list current-prefix-arg
-                     (prompt-for-change-log-name)))
-  (let (buf pos)
-    (save-window-excursion
-      (call-interactively #'magit-diff-visit-file)
-      (setq buf (current-buffer))
-      (setq pos (point)))
-    (save-excursion
-      (with-current-buffer buf
-        (goto-char pos)
-        (add-change-log-entry whoami file-name other-window)))))
-
-;;;###autoload
-(defun magit-add-change-log-entry-other-window (&optional whoami file-name)
-  "Find change log file in other window and add entry and item.
-This differs from `add-change-log-entry-other-window' (which see)
-in that it acts on the current hunk in a Magit buffer instead of
-on a position in a file-visiting buffer."
-  (interactive (and current-prefix-arg
-                    (list current-prefix-arg
-                          (prompt-for-change-log-name))))
-  (magit-add-change-log-entry whoami file-name t))
-
-;;; Edit Line Commit
-
-;;;###autoload
-(defun magit-edit-line-commit (&optional type)
-  "Edit the commit that added the current line.
-
-With a prefix argument edit the commit that removes the line,
-if any.  The commit is determined using `git blame' and made
-editable using `git rebase --interactive' if it is reachable
-from `HEAD', or by checking out the commit (or a branch that
-points at it) otherwise."
-  (interactive (list (and current-prefix-arg 'removal)))
-  (let* ((chunk (magit-current-blame-chunk (or type 'addition)))
-         (rev   (oref chunk orig-rev)))
-    (if (equal rev "0000000000000000000000000000000000000000")
-        (message "This line has not been committed yet")
-      (let ((rebase (magit-rev-ancestor-p rev "HEAD"))
-            (file   (expand-file-name (oref chunk orig-file)
-                                      (magit-toplevel))))
-        (if rebase
-            (let ((magit--rebase-published-symbol 'edit-published))
-              (magit-rebase-edit-commit rev (magit-rebase-arguments)))
-          (magit-checkout (or (magit-rev-branch rev) rev)))
-        (unless (and buffer-file-name
-                     (file-equal-p file buffer-file-name))
-          (let ((blame-type (and magit-blame-mode magit-blame-type)))
-            (if rebase
-                (set-process-sentinel
-                 magit-this-process
-                 (lambda (process event)
-                   (magit-sequencer-process-sentinel process event)
-                   (when (eq (process-status process) 'exit)
-                     (find-file file)
-                     (when blame-type
-                       (magit-blame--pre-blame-setup blame-type)
-                       (magit-blame--run)))))
-              (find-file file)
-              (when blame-type
-                (magit-blame--pre-blame-setup blame-type)
-                (magit-blame--run)))))))))
-
-(put 'magit-edit-line-commit 'disabled t)
-
-(defun magit-diff-edit-hunk-commit ()
-  "From a hunk, edit the respective commit and visit the file.
-
-First visit the file being modified by the hunk at the correct
-location using `magit-diff-visit-file'.  This actually visits a
-blob.  When point is on a diff header, not within an individual
-hunk, then this visits the blob the first hunk is about.
-
-Then invoke `magit-edit-line-commit', which uses an interactive
-rebase to make the commit editable, or if that is not possible
-because the commit is not reachable from `HEAD' by checking out
-that commit directly.  This also causes the actual worktree file
-to be visited.
-
-Neither the blob nor the file buffer are killed when finishing
-the rebase.  If that is undesirable, then it might be better to
-use `magit-rebase-edit-command' instead of this command."
-  (interactive)
-  (let ((magit-diff-visit-previous-blob nil))
-    (magit-diff-visit-file (--if-let (magit-file-at-point)
-                               (expand-file-name it)
-                             (user-error "No file at point"))
-                           nil 'switch-to-buffer))
-  (magit-edit-line-commit))
-
-(put 'magit-diff-edit-hunk-commit 'disabled t)
-
-;;; Reshelve
-
-;;;###autoload
-(defun magit-reshelve-since (rev)
-  "Change the author and committer dates of the commits since REV.
-
-Ask the user for the first reachable commit whose dates should
-be changed.  The read the new date for that commit.  The initial
-minibuffer input and the previous history element offer good
-values.  The next commit will be created one minute later and so
-on.
-
-This command is only intended for interactive use and should only
-be used on highly rearranged and unpublished history."
-  (interactive (list nil))
-  (cond
-   ((not rev)
-    (let ((backup (concat "refs/original/refs/heads/"
-                          (magit-get-current-branch))))
-      (when (and (magit-ref-p backup)
-                 (not (magit-y-or-n-p
-                       "Backup ref %s already exists.  Override? " backup)))
-        (user-error "Abort")))
-    (magit-log-select 'magit-reshelve-since
-      "Type %p on a commit to reshelve it and the commits above it,"))
-   (t
-    (cl-flet ((adjust (time offset)
-                      (format-time-string
-                       "%F %T %z"
-                       (+ (floor time)
-                          (* offset 60)
-                          (- (car (decode-time time)))))))
-      (let* ((start (concat rev "^"))
-             (range (concat start ".." (magit-get-current-branch)))
-             (time-rev (adjust (float-time (string-to-number
-                                            (magit-rev-format "%at" start)))
-                               1))
-             (time-now (adjust (float-time)
-                               (- (string-to-number
-                                   (magit-git-string "rev-list" "--count"
-                                                     range))))))
-        (push time-rev magit--reshelve-history)
-        (let ((date (floor
-                     (float-time
-                      (date-to-time
-                       (read-string "Date for first commit: "
-                                    time-now 'magit--reshelve-history))))))
-          (magit-with-toplevel
-            (magit-run-git-async
-             "filter-branch" "--force" "--env-filter"
-             (format "case $GIT_COMMIT in %s\nesac"
-                     (mapconcat (lambda (rev)
-                                  (prog1 (format "%s) \
-export GIT_AUTHOR_DATE=\"%s\"; \
-export GIT_COMMITTER_DATE=\"%s\";;" rev date date)
-                                    (cl-incf date 60)))
-                                (magit-git-lines "rev-list" "--reverse"
-                                                 range)
-                                " "))
-             range "--")
-            (set-process-sentinel
-             magit-this-process
-             (lambda (process event)
-               (when (memq (process-status process) '(exit signal))
-                 (if (> (process-exit-status process) 0)
-                     (magit-process-sentinel process event)
-                   (process-put process 'inhibit-refresh t)
-                   (magit-process-sentinel process event)
-                   (magit-run-git "update-ref" "-d"
-                                  (concat "refs/original/refs/heads/"
-                                          (magit-get-current-branch))))))))))))))
-
-;;; Revision Stack
-
-(defvar magit-revision-stack nil)
-
-(defcustom magit-pop-revision-stack-format
-  '("[%N: %h] " "%N: %H\n   %s\n" "\\[\\([0-9]+\\)[]:]")
-  "Control how `magit-pop-revision-stack' inserts a revision.
-
-The command `magit-pop-revision-stack' inserts a representation
-of the revision last pushed to the `magit-revision-stack' into
-the current buffer.  It inserts text at point and/or near the end
-of the buffer, and removes the consumed revision from the stack.
-
-The entries on the stack have the format (HASH TOPLEVEL) and this
-option has the format (POINT-FORMAT EOB-FORMAT INDEX-REGEXP), all
-of which may be nil or a string (though either one of EOB-FORMAT
-or POINT-FORMAT should be a string, and if INDEX-REGEXP is
-non-nil, then the two formats should be too).
-
-First INDEX-REGEXP is used to find the previously inserted entry,
-by searching backward from point.  The first submatch must match
-the index number.  That number is incremented by one, and becomes
-the index number of the entry to be inserted.  If you don't want
-to number the inserted revisions, then use nil for INDEX-REGEXP.
-
-If INDEX-REGEXP is non-nil, then both POINT-FORMAT and EOB-FORMAT
-should contain \"%N\", which is replaced with the number that was
-determined in the previous step.
-
-Both formats, if non-nil and after removing %N, are then expanded
-using `git show --format=FORMAT ...' inside TOPLEVEL.
-
-The expansion of POINT-FORMAT is inserted at point, and the
-expansion of EOB-FORMAT is inserted at the end of the buffer (if
-the buffer ends with a comment, then it is inserted right before
-that)."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-commands
-  :type '(list (choice (string :tag "Insert at point format")
-                       (cons (string :tag "Insert at point format")
-                             (repeat (string :tag "Argument to git show")))
-                       (const :tag "Don't insert at point" nil))
-               (choice (string :tag "Insert at eob format")
-                       (cons (string :tag "Insert at eob format")
-                             (repeat (string :tag "Argument to git show")))
-                       (const :tag "Don't insert at eob" nil))
-               (choice (regexp :tag "Find index regexp")
-                       (const :tag "Don't number entries" nil))))
-
-;;;###autoload
-(defun magit-pop-revision-stack (rev toplevel)
-  "Insert a representation of a revision into the current buffer.
-
-Pop a revision from the `magit-revision-stack' and insert it into
-the current buffer according to `magit-pop-revision-stack-format'.
-Revisions can be put on the stack using `magit-copy-section-value'
-and `magit-copy-buffer-revision'.
-
-If the stack is empty or with a prefix argument, instead read a
-revision in the minibuffer.  By using the minibuffer history this
-allows selecting an item which was popped earlier or to insert an
-arbitrary reference or revision without first pushing it onto the
-stack.
-
-When reading the revision from the minibuffer, then it might not
-be possible to guess the correct repository.  When this command
-is called inside a repository (e.g. while composing a commit
-message), then that repository is used.  Otherwise (e.g. while
-composing an email) then the repository recorded for the top
-element of the stack is used (even though we insert another
-revision).  If not called inside a repository and with an empty
-stack, or with two prefix arguments, then read the repository in
-the minibuffer too."
-  (interactive
-   (if (or current-prefix-arg (not magit-revision-stack))
-       (let ((default-directory
-               (or (and (not (= (prefix-numeric-value current-prefix-arg) 16))
-                        (or (magit-toplevel)
-                            (cadr (car magit-revision-stack))))
-                   (magit-read-repository))))
-         (list (magit-read-branch-or-commit "Insert revision")
-               default-directory))
-     (push (caar magit-revision-stack) magit-revision-history)
-     (pop magit-revision-stack)))
-  (if rev
-      (pcase-let ((`(,pnt-format ,eob-format ,idx-format)
-                   magit-pop-revision-stack-format))
-        (let ((default-directory toplevel)
-              (idx (and idx-format
-                        (save-excursion
-                          (if (re-search-backward idx-format nil t)
-                              (number-to-string
-                               (1+ (string-to-number (match-string 1))))
-                            "1"))))
-              pnt-args eob-args)
-          (when (listp pnt-format)
-            (setq pnt-args (cdr pnt-format))
-            (setq pnt-format (car pnt-format)))
-          (when (listp eob-format)
-            (setq eob-args (cdr eob-format))
-            (setq eob-format (car eob-format)))
-          (when pnt-format
-            (when idx-format
-              (setq pnt-format
-                    (replace-regexp-in-string "%N" idx pnt-format t t)))
-            (magit-rev-insert-format pnt-format rev pnt-args)
-            (backward-delete-char 1))
-          (when eob-format
-            (when idx-format
-              (setq eob-format
-                    (replace-regexp-in-string "%N" idx eob-format t t)))
-            (save-excursion
-              (goto-char (point-max))
-              (skip-syntax-backward ">s-")
-              (beginning-of-line)
-              (if (and comment-start (looking-at comment-start))
-                  (while (looking-at comment-start)
-                    (forward-line -1))
-                (forward-line)
-                (unless (= (current-column) 0)
-                  (insert ?\n)))
-              (insert ?\n)
-              (magit-rev-insert-format eob-format rev eob-args)
-              (backward-delete-char 1)))))
-    (user-error "Revision stack is empty")))
-
-(define-key git-commit-mode-map
-  (kbd "C-c C-w") 'magit-pop-revision-stack)
-
-;;;###autoload
-(defun magit-copy-section-value ()
-  "Save the value of the current section for later use.
-
-Save the section value to the `kill-ring', and, provided that
-the current section is a commit, branch, or tag section, push
-the (referenced) revision to the `magit-revision-stack' for use
-with `magit-pop-revision-stack'.
-
-When the current section is a branch or a tag, and a prefix
-argument is used, then save the revision at its tip to the
-`kill-ring' instead of the reference name.
-
-When the region is active, then save that to the `kill-ring',
-like `kill-ring-save' would, instead of behaving as described
-above."
-  (interactive)
-  (if (use-region-p)
-      (copy-region-as-kill nil nil 'region)
-    (when-let ((section (magit-current-section))
-               (value (oref section value)))
-      (magit-section-case
-        ((branch commit module-commit tag)
-         (let ((default-directory default-directory) ref)
-           (magit-section-case
-             ((branch tag)
-              (setq ref value))
-             (module-commit
-              (setq default-directory
-                    (file-name-as-directory
-                     (expand-file-name (magit-section-parent-value section)
-                                       (magit-toplevel))))))
-           (setq value (magit-rev-parse value))
-           (push (list value default-directory) magit-revision-stack)
-           (kill-new (message "%s" (or (and current-prefix-arg ref)
-                                       value)))))
-        (t (kill-new (message "%s" value)))))))
-
-;;;###autoload
-(defun magit-copy-buffer-revision ()
-  "Save the revision of the current buffer for later use.
-
-Save the revision shown in the current buffer to the `kill-ring'
-and push it to the `magit-revision-stack'.
-
-This command is mainly intended for use in `magit-revision-mode'
-buffers, the only buffers where it is always unambiguous exactly
-which revision should be saved.
-
-Most other Magit buffers usually show more than one revision, in
-some way or another, so this command has to select one of them,
-and that choice might not always be the one you think would have
-been the best pick.
-
-In such buffers it is often more useful to save the value of
-the current section instead, using `magit-copy-section-value'.
-
-When the region is active, then save that to the `kill-ring',
-like `kill-ring-save' would, instead of behaving as described
-above."
-  (interactive)
-  (if (use-region-p)
-      (copy-region-as-kill nil nil 'region)
-    (when-let ((rev (cond ((memq major-mode '(magit-cherry-mode
-                                              magit-log-select-mode
-                                              magit-reflog-mode
-                                              magit-refs-mode
-                                              magit-revision-mode
-                                              magit-stash-mode
-                                              magit-stashes-mode))
-                           (car magit-refresh-args))
-                          ((memq major-mode '(magit-diff-mode
-                                              magit-log-mode))
-                           (let ((r (caar magit-refresh-args)))
-                             (if (string-match "\\.\\.\\.?\\(.+\\)" r)
-                                 (match-string 1 r)
-                               r)))
-                          ((eq major-mode 'magit-status-mode) "HEAD"))))
-      (when (magit-rev-verify-commit rev)
-        (setq rev (magit-rev-parse rev))
-        (push (list rev default-directory) magit-revision-stack)
-        (kill-new (message "%s" rev))))))
-
-;;; Miscellaneous
-
-;;;###autoload
-(defun magit-abort-dwim ()
-  "Abort current operation.
-Depending on the context, this will abort a merge, a rebase, a
-patch application, a cherry-pick, a revert, or a bisect."
-  (interactive)
-  (cond ((magit-merge-in-progress-p)     (magit-merge-abort))
-        ((magit-rebase-in-progress-p)    (magit-rebase-abort))
-        ((magit-am-in-progress-p)        (magit-am-abort))
-        ((magit-sequencer-in-progress-p) (magit-sequencer-abort))
-        ((magit-bisect-in-progress-p)    (magit-bisect-reset))))
-
-;;; _
-(provide 'magit-extras)
-;;; magit-extras.el ends here
diff --git a/elpa/magit-20181116.1412/magit-extras.elc b/elpa/magit-20181116.1412/magit-extras.elc
deleted file mode 100644
index a61d51f..0000000
--- a/elpa/magit-20181116.1412/magit-extras.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-fetch.el b/elpa/magit-20181116.1412/magit-fetch.el
deleted file mode 100644
index dc04233..0000000
--- a/elpa/magit-20181116.1412/magit-fetch.el
+++ /dev/null
@@ -1,157 +0,0 @@
-;;; magit-fetch.el --- download objects and refs  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements fetch commands.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Options
-
-(defcustom magit-fetch-modules-jobs 4
-  "Number of submodules to fetch in parallel.
-Ignored for Git versions before v2.8.0."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-commands
-  :type '(choice (const :tag "one at a time" nil) number))
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-fetch-popup "magit-fetch" nil t)
-(magit-define-popup magit-fetch-popup
-  "Popup console for fetch commands."
-  :man-page "git-fetch"
-  :switches '((?p "Prune deleted branches" "--prune"))
-  :actions  '("Configure"
-              (?C "variables..."           magit-branch-config-popup)
-              "Fetch from"
-              (?p magit-get-push-remote    magit-fetch-from-pushremote)
-              (?u magit-get-remote         magit-fetch-from-upstream)
-              (?e "elsewhere"              magit-fetch-other)
-              (?a "all remotes"            magit-fetch-all)
-              "Fetch"
-              (?o "another branch"         magit-fetch-branch)
-              (?r "explicit refspec"       magit-fetch-refspec)
-              (?m "submodules"             magit-fetch-modules))
-  :default-action 'magit-fetch
-  :max-action-columns 1)
-
-(defun magit-git-fetch (remote args)
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "fetch" remote args))
-
-;;;###autoload
-(defun magit-fetch-from-pushremote (args)
-  "Fetch from the push-remote of the current branch."
-  (interactive (list (magit-fetch-arguments)))
-  (--if-let (magit-get-push-remote)
-      (magit-git-fetch it args)
-    (--if-let (magit-get-current-branch)
-        (user-error "No push-remote is configured for %s" it)
-      (user-error "No branch is checked out"))))
-
-;;;###autoload
-(defun magit-fetch-from-upstream (args)
-  "Fetch from the upstream repository of the current branch."
-  (interactive (list (magit-fetch-arguments)))
-  (--if-let (magit-get-remote)
-      (magit-git-fetch it args)
-    (--if-let (magit-get-current-branch)
-        (user-error "No upstream is configured for %s" it)
-      (user-error "No branch is checked out"))))
-
-;;;###autoload
-(defun magit-fetch-other (remote args)
-  "Fetch from another repository."
-  (interactive (list (magit-read-remote "Fetch remote")
-                     (magit-fetch-arguments)))
-  (magit-git-fetch remote args))
-
-;;;###autoload
-(defun magit-fetch-branch (remote branch args)
-  "Fetch a BRANCH from a REMOTE."
-  (interactive
-   (let ((remote (magit-read-remote-or-url "Fetch from remote or url")))
-     (list remote
-           (magit-read-remote-branch "Fetch branch" remote)
-           (magit-fetch-arguments))))
-  (magit-git-fetch remote (cons branch args)))
-
-;;;###autoload
-(defun magit-fetch-refspec (remote refspec args)
-  "Fetch a REFSPEC from a REMOTE."
-  (interactive
-   (let ((remote (magit-read-remote-or-url "Fetch from remote or url")))
-     (list remote
-           (magit-read-refspec "Fetch using refspec" remote)
-           (magit-fetch-arguments))))
-  (magit-git-fetch remote (cons refspec args)))
-
-;;;###autoload
-(defun magit-fetch-all (args)
-  "Fetch from all remotes."
-  (interactive (list (cl-intersection (magit-fetch-arguments)
-                                      (list "--verbose" "--prune")
-                                      :test #'equal)))
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "remote" "update" args))
-
-;;;###autoload
-(defun magit-fetch-all-prune ()
-  "Fetch from all remotes, and prune.
-Prune remote tracking branches for branches that have been
-removed on the respective remote."
-  (interactive)
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "remote" "update" "--prune"))
-
-;;;###autoload
-(defun magit-fetch-all-no-prune ()
-  "Fetch from all remotes."
-  (interactive)
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "remote" "update"))
-
-;;;###autoload
-(defun magit-fetch-modules (&optional all)
-  "Fetch all submodules.
-
-Option `magit-fetch-modules-jobs' controls how many submodules
-are being fetched in parallel.  Also fetch the super-repository,
-because `git-fetch' does not support not doing that.  With a
-prefix argument fetch all remotes."
-  (interactive "P")
-  (magit-with-toplevel
-    (magit-run-git-async
-     "fetch" "--verbose" "--recurse-submodules"
-     (and magit-fetch-modules-jobs
-          (version<= "2.8.0" (magit-git-version))
-          (list "-j" (number-to-string magit-fetch-modules-jobs)))
-     (and all "--all"))))
-
-;;; _
-(provide 'magit-fetch)
-;;; magit-fetch.el ends here
diff --git a/elpa/magit-20181116.1412/magit-fetch.elc b/elpa/magit-20181116.1412/magit-fetch.elc
deleted file mode 100644
index 7cb194c..0000000
--- a/elpa/magit-20181116.1412/magit-fetch.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-files.el b/elpa/magit-20181116.1412/magit-files.el
deleted file mode 100644
index 094539f..0000000
--- a/elpa/magit-20181116.1412/magit-files.el
+++ /dev/null
@@ -1,493 +0,0 @@
-;;; magit-files.el --- finding files  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for finding blobs, staged files,
-;; and Git configuration files.  It also implements modes useful in
-;; buffers visiting files and blobs, and the commands used by those
-;; modes.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-;;; Find Blob
-
-(defvar magit-find-file-hook nil)
-(add-hook 'magit-find-file-hook #'magit-blob-mode)
-
-;;;###autoload
-(defun magit-find-file (rev file)
-  "View FILE from REV.
-Switch to a buffer visiting blob REV:FILE,
-creating one if none already exists."
-  (interactive (magit-find-file-read-args "Find file"))
-  (switch-to-buffer (magit-find-file-noselect rev file)))
-
-;;;###autoload
-(defun magit-find-file-other-window (rev file)
-  "View FILE from REV, in another window.
-Like `magit-find-file', but create a new window or reuse an
-existing one."
-  (interactive (magit-find-file-read-args "Find file in other window"))
-  (switch-to-buffer-other-window (magit-find-file-noselect rev file)))
-
-(defun magit-find-file-read-args (prompt)
-  (let  ((rev (magit-read-branch-or-commit "Find file from revision")))
-    (list rev (magit-read-file-from-rev rev prompt))))
-
-(defun magit-find-file-noselect (rev file)
-  "Read FILE from REV into a buffer and return the buffer.
-FILE must be relative to the top directory of the repository."
-  (magit-find-file-noselect-1 rev file 'magit-find-file-hook))
-
-(defun magit-find-file-noselect-1 (rev file hookvar &optional revert)
-  "Read FILE from REV into a buffer and return the buffer.
-FILE must be relative to the top directory of the repository.
-An empty REV stands for index."
-  (let ((topdir (magit-toplevel)))
-    (when (file-name-absolute-p file)
-      (setq file (file-relative-name file topdir)))
-    (with-current-buffer (magit-get-revision-buffer-create rev file)
-      (when (or (not magit-buffer-file-name)
-                (if (eq revert 'ask-revert)
-                    (y-or-n-p (format "%s already exists; revert it? "
-                                      (buffer-name))))
-                revert)
-        (setq magit-buffer-revision
-              (if (string= rev "") "{index}" (magit-rev-format "%H" rev)))
-        (setq magit-buffer-refname rev)
-        (setq magit-buffer-file-name (expand-file-name file topdir))
-        (setq default-directory
-              (let ((dir (file-name-directory magit-buffer-file-name)))
-                (if (file-exists-p dir) dir topdir)))
-        (setq-local revert-buffer-function #'magit-revert-rev-file-buffer)
-        (revert-buffer t t)
-        (run-hooks hookvar))
-      (current-buffer))))
-
-(defun magit-get-revision-buffer-create (rev file)
-  (magit-get-revision-buffer rev file t))
-
-(defun magit-get-revision-buffer (rev file &optional create)
-  (funcall (if create 'get-buffer-create 'get-buffer)
-           (format "%s.~%s~" file (if (equal rev "") "index"
-                                    (subst-char-in-string ?/ ?_ rev)))))
-
-(defun magit-revert-rev-file-buffer (_ignore-auto noconfirm)
-  (when (or noconfirm
-            (and (not (buffer-modified-p))
-                 (catch 'found
-                   (dolist (regexp revert-without-query)
-                     (when (string-match regexp magit-buffer-file-name)
-                       (throw 'found t)))))
-            (yes-or-no-p (format "Revert buffer from git %s? "
-                                 (if (equal magit-buffer-refname "") "{index}"
-                                   (concat "revision " magit-buffer-refname)))))
-    (let* ((inhibit-read-only t)
-           (default-directory (magit-toplevel))
-           (file (file-relative-name magit-buffer-file-name))
-           (coding-system-for-read (or coding-system-for-read 'undecided)))
-      (erase-buffer)
-      (magit-git-insert "cat-file" "-p" (concat magit-buffer-refname ":" file))
-      (setq buffer-file-coding-system last-coding-system-used))
-    (let ((buffer-file-name magit-buffer-file-name)
-          (after-change-major-mode-hook
-           (remq 'global-diff-hl-mode-enable-in-buffers
-                 after-change-major-mode-hook)))
-      (normal-mode t))
-    (setq buffer-read-only t)
-    (set-buffer-modified-p nil)
-    (goto-char (point-min))))
-
-;;; Find Index
-
-(defvar magit-find-index-hook nil)
-
-(defun magit-find-file-index-noselect (file &optional revert)
-  "Read FILE from the index into a buffer and return the buffer.
-FILE must to be relative to the top directory of the repository."
-  (magit-find-file-noselect-1 "" file 'magit-find-index-hook
-                              (or revert 'ask-revert)))
-
-(defun magit-update-index ()
-  "Update the index with the contents of the current buffer.
-The current buffer has to be visiting a file in the index, which
-is done using `magit-find-index-noselect'."
-  (interactive)
-  (let ((file (magit-file-relative-name)))
-    (unless (equal magit-buffer-refname "")
-      (user-error "%s isn't visiting the index" file))
-    (if (y-or-n-p (format "Update index with contents of %s" (buffer-name)))
-        (let ((index (make-temp-file "index"))
-              (buffer (current-buffer)))
-          (when magit-wip-before-change-mode
-            (magit-wip-commit-before-change (list file) " before un-/stage"))
-          (let ((coding-system-for-write buffer-file-coding-system))
-            (with-temp-file index
-              (insert-buffer-substring buffer)))
-          (magit-with-toplevel
-            (magit-call-git "update-index" "--cacheinfo"
-                            (substring (magit-git-string "ls-files" "-s" file)
-                                       0 6)
-                            (magit-git-string "hash-object" "-t" "blob" "-w"
-                                              (concat "--path=" file)
-                                              "--" index)
-                            file))
-          (set-buffer-modified-p nil)
-          (when magit-wip-after-apply-mode
-            (magit-wip-commit-after-apply (list file) " after un-/stage")))
-      (message "Abort")))
-  (--when-let (magit-mode-get-buffer 'magit-status-mode)
-    (with-current-buffer it (magit-refresh)))
-  t)
-
-;;; Find Config File
-
-(defun magit-find-git-config-file (filename &optional wildcards)
-  "Edit a file located in the current repository's git directory.
-
-When \".git\", located at the root of the working tree, is a
-regular file, then that makes it cumbersome to open a file
-located in the actual git directory.
-
-This command is like `find-file', except that it temporarily
-binds `default-directory' to the actual git directory, while
-reading the FILENAME."
-  (interactive
-   (let ((default-directory (magit-git-dir)))
-     (find-file-read-args "Find file: "
-                          (confirm-nonexistent-file-or-buffer))))
-  (find-file filename wildcards))
-
-(defun magit-find-git-config-file-other-window (filename &optional wildcards)
-  "Edit a file located in the current repository's git directory, in another window.
-
-When \".git\", located at the root of the working tree, is a
-regular file, then that makes it cumbersome to open a file
-located in the actual git directory.
-
-This command is like `find-file-other-window', except that it
-temporarily binds `default-directory' to the actual git
-directory, while reading the FILENAME."
-  (interactive
-   (let ((default-directory (magit-git-dir)))
-     (find-file-read-args "Find file in other window: "
-                          (confirm-nonexistent-file-or-buffer))))
-  (find-file-other-window filename wildcards))
-
-(defun magit-find-git-config-file-other-frame (filename &optional wildcards)
-  "Edit a file located in the current repository's git directory, in another frame.
-
-When \".git\", located at the root of the working tree, is a
-regular file, then that makes it cumbersome to open a file
-located in the actual git directory.
-
-This command is like `find-file-other-frame', except that it
-temporarily binds `default-directory' to the actual git
-directory, while reading the FILENAME."
-  (interactive
-   (let ((default-directory (magit-git-dir)))
-     (find-file-read-args "Find file in other frame: "
-                          (confirm-nonexistent-file-or-buffer))))
-  (find-file-other-frame filename wildcards))
-
-;;; File Mode
-
-(defvar magit-file-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map "\C-xg"    'magit-status)
-    (define-key map "\C-x\M-g" 'magit-dispatch-popup)
-    (define-key map "\C-c\M-g" 'magit-file-popup)
-    map)
-  "Keymap for `magit-file-mode'.")
-
-;;;###autoload (autoload 'magit-file-popup "magit" nil t)
-(magit-define-popup magit-file-popup
-  "Popup console for Magit commands in file-visiting buffers."
-  :actions '((?s "Stage"     magit-stage-file)
-             (?D "Diff..."   magit-diff-buffer-file-popup)
-             (?L "Log..."    magit-log-buffer-file-popup)
-             (?B "Blame..."  magit-blame-popup) nil
-             (?u "Unstage"   magit-unstage-file)
-             (?d "Diff"      magit-diff-buffer-file)
-             (?l "Log"       magit-log-buffer-file)
-             (?b "Blame"     magit-blame-addition)
-             (?p "Prev blob" magit-blob-previous)
-             (?c "Commit"    magit-commit-popup) nil
-             (?t "Trace"     magit-log-trace-definition)
-             (?r (lambda ()
-                   (with-current-buffer magit-pre-popup-buffer
-                     (and (not buffer-file-name)
-                          (propertize "...removal" 'face 'default))))
-                 magit-blame-removal)
-             (?n "Next blob" magit-blob-next)
-             (?e "Edit line" magit-edit-line-commit)
-             nil nil
-             (?f (lambda ()
-                   (with-current-buffer magit-pre-popup-buffer
-                     (and (not buffer-file-name)
-                          (propertize "...reverse" 'face 'default))))
-                 magit-blame-reverse)
-             nil)
-  :max-action-columns 5)
-
-(defvar magit-file-mode-lighter "")
-
-(define-minor-mode magit-file-mode
-  "Enable some Magit features in a file-visiting buffer.
-
-Currently this only adds the following key bindings.
-\n\\{magit-file-mode-map}"
-  :package-version '(magit . "2.2.0")
-  :lighter magit-file-mode-lighter
-  :keymap  magit-file-mode-map)
-
-(defun magit-file-mode-turn-on ()
-  (and buffer-file-name
-       (magit-inside-worktree-p t)
-       (magit-file-mode)))
-
-;;;###autoload
-(define-globalized-minor-mode global-magit-file-mode
-  magit-file-mode magit-file-mode-turn-on
-  :package-version '(magit . "2.13.0")
-  :link '(info-link "(magit)Minor Mode for Buffers Visiting Files")
-  :group 'magit-essentials
-  :group 'magit-modes
-  :init-value t)
-;; Unfortunately `:init-value t' only sets the value of the mode
-;; variable but does not cause the mode function to be called, and we
-;; cannot use `:initialize' to call that explicitly because the option
-;; is defined before the functions, so we have to do it here.
-(cl-eval-when (load)
-  (when global-magit-file-mode
-    (global-magit-file-mode 1)))
-
-;;; Blob Mode
-
-(defvar magit-blob-mode-map
-  (let ((map (make-sparse-keymap)))
-    (cond ((featurep 'jkl)
-           (define-key map "i" 'magit-blob-previous)
-           (define-key map "k" 'magit-blob-next)
-           (define-key map "j" 'magit-blame-addition)
-           (define-key map "l" 'magit-blame-removal)
-           (define-key map "f" 'magit-blame-reverse))
-          (t
-           (define-key map "p" 'magit-blob-previous)
-           (define-key map "n" 'magit-blob-next)
-           (define-key map "b" 'magit-blame-addition)
-           (define-key map "r" 'magit-blame-removal)
-           (define-key map "f" 'magit-blame-reverse)))
-    (define-key map "q" 'magit-kill-this-buffer)
-    map)
-  "Keymap for `magit-blob-mode'.")
-
-(define-minor-mode magit-blob-mode
-  "Enable some Magit features in blob-visiting buffers.
-
-Currently this only adds the following key bindings.
-\n\\{magit-blob-mode-map}"
-  :package-version '(magit . "2.3.0"))
-
-(defun magit-blob-next ()
-  "Visit the next blob which modified the current file."
-  (interactive)
-  (if magit-buffer-file-name
-      (magit-blob-visit (or (magit-blob-successor magit-buffer-revision
-                                                  magit-buffer-file-name)
-                            magit-buffer-file-name)
-                        (line-number-at-pos))
-    (if (buffer-file-name (buffer-base-buffer))
-        (user-error "You have reached the end of time")
-      (user-error "Buffer isn't visiting a file or blob"))))
-
-(defun magit-blob-previous ()
-  "Visit the previous blob which modified the current file."
-  (interactive)
-  (if-let ((file (or magit-buffer-file-name
-                     (buffer-file-name (buffer-base-buffer)))))
-      (--if-let (magit-blob-ancestor magit-buffer-revision file)
-          (magit-blob-visit it (line-number-at-pos))
-        (user-error "You have reached the beginning of time"))
-    (user-error "Buffer isn't visiting a file or blob")))
-
-(defun magit-blob-visit (blob-or-file line)
-  (if (stringp blob-or-file)
-      (find-file blob-or-file)
-    (pcase-let ((`(,rev ,file) blob-or-file))
-      (magit-find-file rev file)
-      (apply #'message "%s (%s %s ago)"
-             (magit-rev-format "%s" rev)
-             (magit--age (magit-rev-format "%ct" rev)))))
-  (goto-char (point-min))
-  (forward-line (1- line)))
-
-(defun magit-blob-ancestor (rev file)
-  (let ((lines (magit-with-toplevel
-                 (magit-git-lines "log" "-2" "--format=%H" "--name-only"
-                                  "--follow" (or rev "HEAD") "--" file))))
-    (if rev (cddr lines) (butlast lines 2))))
-
-(defun magit-blob-successor (rev file)
-  (let ((lines (magit-with-toplevel
-                 (magit-git-lines "log" "--format=%H" "--name-only" "--follow"
-                                  "HEAD" "--" file))))
-    (catch 'found
-      (while lines
-        (if (equal (nth 2 lines) rev)
-            (throw 'found (list (nth 0 lines) (nth 1 lines)))
-          (setq lines (nthcdr 2 lines)))))))
-
-;;; File Commands
-
-(defun magit-file-rename (file newname)
-  "Rename the FILE to NEWNAME.
-If FILE isn't tracked in Git, fallback to using `rename-file'."
-  (interactive
-   (let* ((file (magit-read-file "Rename file"))
-          (dir (file-name-directory file))
-          (newname (read-file-name (format "Rename %s to file: " file)
-                                   (and dir (expand-file-name dir)))))
-     (list (expand-file-name file (magit-toplevel))
-           (expand-file-name newname))))
-  (if (magit-file-tracked-p (magit-convert-filename-for-git file))
-      (let ((oldbuf (get-file-buffer file)))
-        (when (and oldbuf (buffer-modified-p oldbuf))
-          (user-error "Save %s before moving it" file))
-        (when (file-exists-p newname)
-          (user-error "%s already exists" newname))
-        (magit-run-git "mv"
-                       (magit-convert-filename-for-git file)
-                       (magit-convert-filename-for-git newname))
-        (when oldbuf
-          (with-current-buffer oldbuf
-            (let ((buffer-read-only buffer-read-only))
-              (set-visited-file-name newname))
-            (if (fboundp 'vc-refresh-state)
-                (vc-refresh-state)
-              (with-no-warnings
-                (vc-find-file-hook))))))
-    (rename-file file newname current-prefix-arg)
-    (magit-refresh)))
-
-(defun magit-file-untrack (files &optional force)
-  "Untrack the selected FILES or one file read in the minibuffer.
-
-With a prefix argument FORCE do so even when the files have
-staged as well as unstaged changes."
-  (interactive (list (or (--if-let (magit-region-values 'file t)
-                             (progn
-                               (unless (magit-file-tracked-p (car it))
-                                 (user-error "Already untracked"))
-                               (magit-confirm-files 'untrack it "Untrack"))
-                           (list (magit-read-tracked-file "Untrack file"))))
-                     current-prefix-arg))
-  (magit-run-git "rm" "--cached" (and force "--force") "--" files))
-
-(defun magit-file-delete (files &optional force)
-  "Delete the selected FILES or one file read in the minibuffer.
-
-With a prefix argument FORCE do so even when the files have
-uncommitted changes.  When the files aren't being tracked in
-Git, then fallback to using `delete-file'."
-  (interactive (list (--if-let (magit-region-values 'file t)
-                         (magit-confirm-files 'delete it "Delete")
-                       (list (magit-read-file "Delete file")))
-                     current-prefix-arg))
-  (if (magit-file-tracked-p (car files))
-      (magit-call-git "rm" (and force "--force") "--" files)
-    (let ((topdir (magit-toplevel)))
-      (dolist (file files)
-        (delete-file (expand-file-name file topdir) t))))
-  (magit-refresh))
-
-;;;###autoload
-(defun magit-file-checkout (rev file)
-  "Checkout FILE from REV."
-  (interactive
-   (let ((rev (magit-read-branch-or-commit
-               "Checkout from revision" magit-buffer-revision)))
-     (list rev (magit-read-file-from-rev rev "Checkout file"))))
-  (magit-with-toplevel
-    (magit-run-git "checkout" rev "--" file)))
-
-;;; Read File
-
-(defvar magit-read-file-hist nil)
-
-(defun magit-read-file-from-rev (rev prompt &optional default)
-  (let ((files (magit-revision-files rev)))
-    (magit-completing-read
-     prompt files nil t nil 'magit-read-file-hist
-     (car (member (or default (magit-current-file)) files)))))
-
-(defun magit-read-file (prompt &optional tracked-only)
-  (let ((choices (nconc (magit-list-files)
-                        (unless tracked-only (magit-untracked-files)))))
-    (magit-completing-read
-     prompt choices nil t nil nil
-     (car (member (or (magit-section-value-if '(file submodule))
-                      (magit-file-relative-name nil tracked-only))
-                  choices)))))
-
-(defun magit-read-tracked-file (prompt)
-  (magit-read-file prompt t))
-
-(defun magit-read-file-choice (prompt files &optional error default)
-  "Read file from FILES.
-
-If FILES has only one member, return that instead of prompting.
-If FILES has no members, give a user error.  ERROR can be given
-to provide a more informative error.
-
-If DEFAULT is non-nil, use this as the default value instead of
-`magit-current-file'."
-  (pcase (length files)
-    (0 (user-error (or error "No file choices")))
-    (1 (car files))
-    (_ (magit-completing-read
-        prompt files nil t nil 'magit-read-file-hist
-        (car (member (or default (magit-current-file)) files))))))
-
-(defun magit-read-changed-file (rev-or-range prompt &optional default)
-  (magit-read-file-choice
-   prompt
-   (magit-changed-files rev-or-range)
-   default
-   (concat "No file changed in " rev-or-range)))
-
-(defun magit-read-files (prompt initial-contents)
-  (mapconcat 'identity
-             (completing-read-multiple (or prompt "File,s: ")
-                                       (magit-list-files)
-                                       nil nil initial-contents) ","))
-
-;;; _
-(provide 'magit-files)
-;;; magit-files.el ends here
diff --git a/elpa/magit-20181116.1412/magit-files.elc b/elpa/magit-20181116.1412/magit-files.elc
deleted file mode 100644
index 175652f..0000000
--- a/elpa/magit-20181116.1412/magit-files.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-git.el b/elpa/magit-20181116.1412/magit-git.el
deleted file mode 100644
index 6ebf298..0000000
--- a/elpa/magit-20181116.1412/magit-git.el
+++ /dev/null
@@ -1,2175 +0,0 @@
-;;; magit-git.el --- Git functionality  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements wrappers for various Git plumbing commands.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'dash)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit-utils)
-(require 'magit-section)
-
-(declare-function magit-call-git "magit-process" (&rest args))
-(declare-function magit-maybe-make-margin-overlay "magit-margin" ())
-(declare-function magit-process-buffer "magit-process" (&optional nodisplay))
-(declare-function magit-process-file "magit-process" (&rest args))
-(declare-function magit-process-insert-section "magit-process"
-                  (pwe program args &optional errcode errlog))
-(declare-function magit-refresh "magit-mode" ())
-(defvar magit-process-error-message-regexps)
-(defvar magit-refresh-args) ; from `magit-mode' for `magit-current-file'
-(defvar magit-branch-prefer-remote-upstream)
-(defvar magit-published-branches)
-(defvar magit-diff-section-arguments)
-
-(defvar magit-tramp-process-environment nil)
-
-;;; Options
-
-;; For now this is shared between `magit-process' and `magit-git'.
-(defgroup magit-process nil
-  "Git and other external processes used by Magit."
-  :group 'magit)
-
-(defvar magit-git-environment
-  (list (format "INSIDE_EMACS=%s,magit" emacs-version))
-  "Prepended to `process-environment' while running git.")
-
-(defcustom magit-git-output-coding-system
-  (and (eq system-type 'windows-nt) 'utf-8)
-  "Coding system for receiving output from Git.
-
-If non-nil, the Git config value `i18n.logOutputEncoding' should
-be set via `magit-git-global-arguments' to value consistent with
-this."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-process
-  :type '(choice (coding-system :tag "Coding system to decode Git output")
-                 (const :tag "Use system default" nil)))
-
-(defvar magit-git-w32-path-hack nil
-  "Alist of (EXE . (PATHENTRY)).
-This specifies what additional PATH setting needs to be added to
-the environment in order to run the non-wrapper git executables
-successfully.")
-
-(defcustom magit-git-executable
-  ;; Git might be installed in a different location on a remote, so
-  ;; it is better not to use the full path to the executable, except
-  ;; on Window were we would otherwise end up using one one of the
-  ;; wrappers "cmd/git.exe" or "cmd/git.cmd", which are much slower
-  ;; than using "bin/git.exe" directly.
-  (or (and (eq system-type 'windows-nt)
-           (--when-let (executable-find "git")
-             (ignore-errors
-               ;; Git for Windows 2.x provides cygpath so we can
-               ;; ask it for native paths.
-               (let* ((core-exe
-                       (car
-                        (process-lines
-                         it "-c"
-                         "alias.X=!x() { which \"$1\" | cygpath -mf -; }; x"
-                         "X" "git")))
-                      (hack-entry (assoc core-exe magit-git-w32-path-hack))
-                      ;; Running the libexec/git-core executable
-                      ;; requires some extra PATH entries.
-                      (path-hack
-                       (list (concat "PATH="
-                                     (car (process-lines
-                                           it "-c"
-                                           "alias.P=!cygpath -wp \"$PATH\""
-                                           "P"))))))
-                 ;; The defcustom STANDARD expression can be
-                 ;; evaluated many times, so make sure it is
-                 ;; idempotent.
-                 (if hack-entry
-                     (setcdr hack-entry path-hack)
-                   (push (cons core-exe path-hack) magit-git-w32-path-hack))
-                 core-exe))))
-      "git")
-  "The Git executable used by Magit."
-  :group 'magit-process
-  :type 'string)
-
-(defcustom magit-git-global-arguments
-  `("--no-pager" "--literal-pathspecs" "-c" "core.preloadindex=true"
-    "-c" "log.showSignature=false"
-    ,@(and (eq system-type 'windows-nt)
-           (list "-c" "i18n.logOutputEncoding=UTF-8")))
-  "Global Git arguments.
-
-The arguments set here are used every time the git executable is
-run as a subprocess.  They are placed right after the executable
-itself and before the git command - as in `git HERE... COMMAND
-REST'.  See the manpage `git(1)' for valid arguments.
-
-Be careful what you add here, especially if you are using Tramp
-to connect to servers with ancient Git versions.  Never remove
-anything that is part of the default value, unless you really
-know what you are doing.  And think very hard before adding
-something; it will be used every time Magit runs Git for any
-purpose."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-git-arguments
-  :group 'magit-process
-  :type '(repeat string))
-
-(defvar magit-git-debug nil
-  "Whether to enable additional reporting of git errors.
-
-Magit basically calls git for one of these two reasons: for
-side-effects or to do something with its standard output.
-
-When git is run for side-effects then its output, including error
-messages, go into the process buffer which is shown when using \
-\\<magit-status-mode-map>\\[magit-process].
-
-When git's output is consumed in some way, then it would be too
-expensive to also insert it into this buffer, but when this
-option is non-nil and git returns with a non-zero exit status,
-then at least its standard error is inserted into this buffer.
-
-This is only intended for debugging purposes.  Do not enable this
-permanently, that would negatively affect performance.")
-
-
-(defcustom magit-prefer-remote-upstream nil
-  "Whether to favor remote branches when reading the upstream branch.
-
-This controls whether commands that read a branch from the user
-and then set it as the upstream branch, offer a local or a remote
-branch as default completion candidate, when they have the choice.
-
-This affects all commands that use `magit-read-upstream-branch'
-or `magit-read-starting-point', which includes all commands that
-change the upstream and many which create new branches."
-  :package-version '(magit . "2.4.2")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defcustom magit-list-refs-sortby nil
-  "How to sort the ref collection in the prompt.
-
-This affects commands that read a ref.  More specifically, it
-controls the order of refs returned by `magit-list-refs', which
-is called by functions like `magit-list-branch-names' to generate
-the collection of refs.  By default, refs are sorted according to
-their full refname (i.e., 'refs/...').
-
-Any value accepted by the `--sort' flag of `git for-each-ref' can
-be used.  For example, \"-creatordate\" places refs with more
-recent committer or tagger dates earlier in the list.  A list of
-strings can also be given in order to pass multiple sort keys to
-`git for-each-ref'.
-
-Note that, depending on the completion framework you use, this
-may not be sufficient to change the order in which the refs are
-displayed.  It only controls the order of the collection passed
-to `magit-completing-read' or, for commands that support reading
-multiple strings, `read-from-minibuffer'.  The completion
-framework ultimately determines how the collection is displayed."
-  :package-version '(magit . "2.11.0")
-  :group 'magit-miscellanous
-  :type '(choice string (repeat string)))
-
-;;; Git
-
-(defvar magit--refresh-cache nil)
-
-(defmacro magit--with-refresh-cache (key &rest body)
-  (declare (indent 1) (debug (form body)))
-  (let ((k (cl-gensym)))
-    `(if magit--refresh-cache
-         (let ((,k ,key))
-           (--if-let (assoc ,k (cdr magit--refresh-cache))
-               (progn (cl-incf (caar magit--refresh-cache))
-                      (cdr it))
-             (cl-incf (cdar magit--refresh-cache))
-             (let ((value ,(macroexp-progn body)))
-               (push (cons ,k value)
-                     (cdr magit--refresh-cache))
-               value)))
-       ,@body)))
-
-(defvar magit-with-editor-envvar "GIT_EDITOR"
-  "The environment variable exported by `magit-with-editor'.
-Set this to \"GIT_SEQUENCE_EDITOR\" if you do not want to use
-Emacs to edit commit messages but would like to do so to edit
-rebase sequences.")
-
-(defmacro magit-with-editor (&rest body)
-  "Like `with-editor' but let-bind some more variables.
-Also respect the value of `magit-with-editor-envvar'."
-  (declare (indent 0) (debug (body)))
-  `(let ((magit-process-popup-time -1)
-         ;; The user may have customized `shell-file-name' to
-         ;; something which results in `w32-shell-dos-semantics' nil
-         ;; (which changes the quoting style used by
-         ;; `shell-quote-argument'), but Git for Windows expects shell
-         ;; quoting in the dos style.
-         (shell-file-name (if (and (eq system-type 'windows-nt)
-                                   ;; If we have Cygwin mount points,
-                                   ;; the git flavor is cygwin, so dos
-                                   ;; shell quoting is probably wrong.
-                                   (not magit-cygwin-mount-points))
-                              "cmdproxy"
-                            shell-file-name)))
-     (with-editor* magit-with-editor-envvar
-       ,@body)))
-
-(defun magit-process-git-arguments (args)
-  "Prepare ARGS for a function that invokes Git.
-
-Magit has many specialized functions for running Git; they all
-pass arguments through this function before handing them to Git,
-to do the following.
-
-* Flatten ARGS, removing nil arguments.
-* Prepend `magit-git-global-arguments' to ARGS.
-* On w32 systems, encode to `w32-ansi-code-page'."
-  (setq args (append magit-git-global-arguments (-flatten args)))
-  (if (and (eq system-type 'windows-nt) (boundp 'w32-ansi-code-page))
-      ;; On w32, the process arguments *must* be encoded in the
-      ;; current code-page (see #3250).
-      (mapcar (lambda (arg)
-                (encode-coding-string
-                 arg (intern (format "cp%d" w32-ansi-code-page))))
-              args)
-    args))
-
-(defun magit-git-exit-code (&rest args)
-  "Execute Git with ARGS, returning its exit code."
-  (apply #'magit-process-file magit-git-executable nil nil nil
-         (magit-process-git-arguments args)))
-
-(defun magit-git-success (&rest args)
-  "Execute Git with ARGS, returning t if its exit code is 0."
-  (= (magit-git-exit-code args) 0))
-
-(defun magit-git-failure (&rest args)
-  "Execute Git with ARGS, returning t if its exit code is 1."
-  (= (magit-git-exit-code args) 1))
-
-(defun magit-git-str (&rest args)
-  "Execute Git with ARGS, returning the first line of its output.
-If there is no output, return nil.  If the output begins with a
-newline, return an empty string.  Like `magit-git-string' but
-ignore `magit-git-debug'."
-  (setq args (-flatten args))
-  (magit--with-refresh-cache (cons default-directory args)
-    (with-temp-buffer
-      (apply #'magit-process-file magit-git-executable nil (list t nil) nil
-             (magit-process-git-arguments args))
-      (unless (bobp)
-        (goto-char (point-min))
-        (buffer-substring-no-properties (point) (line-end-position))))))
-
-(defun magit-git-output (&rest args)
-  "Execute Git with ARGS, returning its output."
-  (setq args (-flatten args))
-  (magit--with-refresh-cache (cons default-directory args)
-    (with-temp-buffer
-      (apply #'magit-process-file magit-git-executable nil (list t nil) nil
-             (magit-process-git-arguments args))
-      (buffer-substring-no-properties (point-min) (point-max)))))
-
-(define-error 'magit-invalid-git-boolean "Not a Git boolean")
-
-(defun magit-git-true (&rest args)
-  "Execute Git with ARGS, returning t if it prints \"true\".
-If it prints \"false\", then return nil.  For any other output
-signal `magit-invalid-git-boolean'."
-  (pcase (magit-git-output args)
-    ((or "true"  "true\n")  t)
-    ((or "false" "false\n") nil)
-    (output (signal 'magit-invalid-git-boolean output))))
-
-(defun magit-git-false (&rest args)
-  "Execute Git with ARGS, returning t if it prints \"false\".
-If it prints \"true\", then return nil.  For any other output
-signal `magit-invalid-git-boolean'."
-  (pcase (magit-git-output args)
-    ((or "true"  "true\n")  nil)
-    ((or "false" "false\n") t)
-    (output (signal 'magit-invalid-git-boolean output))))
-
-(defun magit-git-insert (&rest args)
-  "Execute Git with ARGS, inserting its output at point.
-If Git exits with a non-zero exit status, then show a message and
-add a section in the respective process buffer."
-  (setq args (magit-process-git-arguments args))
-  (if magit-git-debug
-      (let (log)
-        (unwind-protect
-            (progn
-              (setq log (make-temp-file "magit-stderr"))
-              (delete-file log)
-              (let ((exit (apply #'magit-process-file magit-git-executable
-                                 nil (list t log) nil args)))
-                (when (> exit 0)
-                  (let ((msg "Git failed"))
-                    (when (file-exists-p log)
-                      (setq msg (with-temp-buffer
-                                  (insert-file-contents log)
-                                  (goto-char (point-max))
-                                  (cond
-                                   ((functionp magit-git-debug)
-                                    (funcall magit-git-debug (buffer-string)))
-                                   ((run-hook-wrapped
-                                     'magit-process-error-message-regexps
-                                     (lambda (re) (re-search-backward re nil t)))
-                                    (match-string-no-properties 1)))))
-                      (let ((magit-git-debug nil))
-                        (with-current-buffer (magit-process-buffer t)
-                          (magit-process-insert-section default-directory
-                                                        magit-git-executable
-                                                        args exit log))))
-                    (message "%s" msg)))
-                exit))
-          (ignore-errors (delete-file log))))
-    (apply #'magit-process-file magit-git-executable
-           nil (list t nil) nil args)))
-
-(defun magit-git-string (&rest args)
-  "Execute Git with ARGS, returning the first line of its output.
-If there is no output, return nil.  If the output begins with a
-newline, return an empty string."
-  (setq args (-flatten args))
-  (magit--with-refresh-cache (cons default-directory args)
-    (with-temp-buffer
-      (apply #'magit-git-insert args)
-      (unless (bobp)
-        (goto-char (point-min))
-        (buffer-substring-no-properties (point) (line-end-position))))))
-
-(defun magit-git-lines (&rest args)
-  "Execute Git with ARGS, returning its output as a list of lines.
-Empty lines anywhere in the output are omitted.
-
-If Git exits with a non-zero exit status, then report show a
-message and add a section in the respective process buffer."
-  (with-temp-buffer
-    (apply #'magit-git-insert args)
-    (split-string (buffer-string) "\n" t)))
-
-(defun magit-git-items (&rest args)
-  "Execute Git with ARGS, returning its null-separated output as a list.
-Empty items anywhere in the output are omitted.
-
-If Git exits with a non-zero exit status, then report show a
-message and add a section in the respective process buffer."
-  (with-temp-buffer
-    (apply #'magit-git-insert args)
-    (split-string (buffer-string) "\0" t)))
-
-(defun magit-git-wash (washer &rest args)
-  "Execute Git with ARGS, inserting washed output at point.
-Actually first insert the raw output at point.  If there is no
-output, call `magit-cancel-section'.  Otherwise temporarily narrow
-the buffer to the inserted text, move to its beginning, and then
-call function WASHER with ARGS as its sole argument."
-  (declare (indent 1))
-  (let ((beg (point)))
-    (setq args (-flatten args))
-    (magit-git-insert args)
-    (if (= (point) beg)
-        (magit-cancel-section)
-      (unless (bolp)
-        (insert "\n"))
-      (save-restriction
-        (narrow-to-region beg (point))
-        (goto-char beg)
-        (funcall washer args))
-      (when (or (= (point) beg)
-                (= (point) (1+ beg)))
-        (magit-cancel-section))
-      (magit-maybe-make-margin-overlay))))
-
-(defun magit-git-version (&optional raw)
-  (--when-let (let (magit-git-global-arguments)
-                (ignore-errors (substring (magit-git-string "version") 12)))
-    (if raw it (and (string-match "^\\([0-9]+\\.[0-9]+\\.[0-9]+\\)" it)
-                    (match-string 1 it)))))
-
-;;; Variables
-
-(defun magit-config-get-from-cached-list (key)
-  (gethash
-   ;; `git config --list' downcases first and last components of the key.
-   (--> key
-        (replace-regexp-in-string "\\`[^.]+" #'downcase it t t)
-        (replace-regexp-in-string "[^.]+\\'" #'downcase it t t))
-   (magit--with-refresh-cache (cons (magit-toplevel) 'config)
-     (let ((configs (make-hash-table :test 'equal)))
-       (dolist (conf (magit-git-items "config" "--list" "-z"))
-         (let* ((nl-pos (cl-position ?\n conf))
-                (key (substring conf 0 nl-pos))
-                (val (if nl-pos (substring conf (1+ nl-pos)) "")))
-           (puthash key (nconc (gethash key configs) (list val)) configs)))
-       configs))))
-
-(defun magit-get (&rest keys)
-  "Return the value of the Git variable specified by KEYS."
-  (car (last (apply 'magit-get-all keys))))
-
-(defun magit-get-all (&rest keys)
-  "Return all values of the Git variable specified by KEYS."
-  (let ((magit-git-debug nil)
-        (arg (and (or (null (car keys))
-                      (string-prefix-p "--" (car keys)))
-                  (pop keys)))
-        (key (mapconcat 'identity keys ".")))
-    (if (and magit--refresh-cache (not arg))
-        (magit-config-get-from-cached-list key)
-      (magit-git-items "config" arg "-z" "--get-all" key))))
-
-(defun magit-get-boolean (&rest keys)
-  "Return the boolean value of the Git variable specified by KEYS."
-  (let ((key (mapconcat 'identity keys ".")))
-    (if magit--refresh-cache
-        (equal "true" (car (last (magit-config-get-from-cached-list key))))
-      (equal (magit-git-str "config" "--bool" key) "true"))))
-
-(defun magit-set (value &rest keys)
-  "Set the value of the Git variable specified by KEYS to VALUE."
-  (let ((arg (and (or (null (car keys))
-                      (string-prefix-p "--" (car keys)))
-                  (pop keys)))
-        (key (mapconcat 'identity keys ".")))
-    (if value
-        (magit-git-success "config" arg key value)
-      (magit-git-success "config" arg "--unset" key))
-    value))
-
-(gv-define-setter magit-get (val &rest keys)
-  `(magit-set ,val ,@keys))
-
-(defun magit-set-all (values &rest keys)
-  "Set all values of the Git variable specified by KEYS to VALUES."
-  (let ((arg (and (or (null (car keys))
-                      (string-prefix-p "--" (car keys)))
-                  (pop keys)))
-        (var (mapconcat 'identity keys ".")))
-    (when (magit-get var)
-      (magit-call-git "config" arg "--unset-all" var))
-    (dolist (v values)
-      (magit-call-git "config" arg "--add" var v))))
-
-;;; Files
-
-(defun magit--safe-default-directory (&optional file)
-  (catch 'unsafe-default-dir
-    (let ((dir (file-name-as-directory
-                (expand-file-name (or file default-directory))))
-          (previous nil))
-      (while (not (magit-file-accessible-directory-p dir))
-        (setq dir (file-name-directory (directory-file-name dir)))
-        (when (equal dir previous)
-          (throw 'unsafe-default-dir nil))
-        (setq previous dir))
-      dir)))
-
-(defmacro magit--with-safe-default-directory (file &rest body)
-  (declare (indent 1) (debug (form body)))
-  `(when-let ((default-directory (magit--safe-default-directory ,file)))
-     ,@body))
-
-(defun magit-gitdir (&optional directory)
-  "Return the absolute and resolved path of the .git directory.
-
-If the `GIT_DIR' environment variable is define then return that.
-Otherwise return the .git directory for DIRECTORY, or if that is
-nil, then for `default-directory' instead.  If the directory is
-not located inside a Git repository, then return nil."
-  (let ((default-directory (or directory default-directory)))
-    (magit-git-dir)))
-
-(defun magit-git-dir (&optional path)
-  "Return the absolute and resolved path of the .git directory.
-
-If the `GIT_DIR' environment variable is define then return that.
-Otherwise return the .git directory for `default-directory'.  If
-the directory is not located inside a Git repository, then return
-nil."
-  (magit--with-refresh-cache (list default-directory 'magit-git-dir path)
-    (magit--with-safe-default-directory nil
-      (when-let ((dir (magit-rev-parse-safe "--git-dir")))
-        (setq dir (file-name-as-directory (magit-expand-git-file-name dir)))
-        (unless (file-remote-p dir)
-          (setq dir (concat (file-remote-p default-directory) dir)))
-        (if path (expand-file-name (convert-standard-filename path) dir) dir)))))
-
-(defvar magit--separated-gitdirs nil)
-
-(defun magit--record-separated-gitdir ()
-  (let ((topdir (magit-toplevel))
-        (gitdir (magit-git-dir)))
-    ;; Kludge: git-annex converts submodule gitdirs to symlinks. See #3599.
-    (when (file-symlink-p (directory-file-name gitdir))
-      (setq gitdir (file-truename gitdir)))
-    ;; We want to delete the entry for `topdir' here, rather than within
-    ;; (unless ...), in case a `--separate-git-dir' repository was switched to
-    ;; the standard structure (i.e., "topdir/.git/").
-    (setq magit--separated-gitdirs (cl-delete topdir
-                                              magit--separated-gitdirs
-                                              :key #'car :test #'equal))
-    (unless (equal (file-name-as-directory (expand-file-name ".git" topdir))
-                   gitdir)
-      (push (cons topdir gitdir) magit--separated-gitdirs))))
-
-(defun magit-toplevel (&optional directory)
-  "Return the absolute path to the toplevel of the current repository.
-
-From within the working tree or control directory of a repository
-return the absolute path to the toplevel directory of the working
-tree.  As a special case, from within a bare repository return
-the control directory instead.  When called outside a repository
-then return nil.
-
-When optional DIRECTORY is non-nil then return the toplevel for
-that directory instead of the one for `default-directory'.
-
-Try to respect the option `find-file-visit-truename', i.e.  when
-the value of that option is nil, then avoid needlessly returning
-the truename.  When a symlink to a sub-directory of the working
-tree is involved, or when called from within a sub-directory of
-the gitdir or from the toplevel of a gitdir, which itself is not
-located within the working tree, then it is not possible to avoid
-returning the truename."
-  (magit--with-refresh-cache
-      (cons (or directory default-directory) 'magit-toplevel)
-    (magit--with-safe-default-directory directory
-      (if-let ((topdir (magit-rev-parse-safe "--show-toplevel")))
-          (let (updir)
-            (setq topdir (magit-expand-git-file-name topdir))
-            (if (and
-                 ;; Always honor these settings.
-                 (not find-file-visit-truename)
-                 (not (getenv "GIT_WORK_TREE"))
-                 ;; `--show-cdup' is the relative path to the toplevel
-                 ;; from `(file-truename default-directory)'.  Here we
-                 ;; pretend it is relative to `default-directory', and
-                 ;; go to that directory.  Then we check whether
-                 ;; `--show-toplevel' still returns the same value and
-                 ;; whether `--show-cdup' now is the empty string.  If
-                 ;; both is the case, then we are at the toplevel of
-                 ;; the same working tree, but also avoided needlessly
-                 ;; following any symlinks.
-                 (progn
-                   (setq updir (file-name-as-directory
-                                (magit-rev-parse-safe "--show-cdup")))
-                   (setq updir (if (file-name-absolute-p updir)
-                                   (concat (file-remote-p default-directory) updir)
-                                 (expand-file-name updir)))
-                   (let ((default-directory updir))
-                     (and (string-equal (magit-rev-parse-safe "--show-cdup") "")
-                          (--when-let (magit-rev-parse-safe "--show-toplevel")
-                            (string-equal (magit-expand-git-file-name it)
-                                          topdir))))))
-                updir
-              (concat (file-remote-p default-directory)
-                      (file-name-as-directory topdir))))
-        (when-let ((gitdir (magit-rev-parse-safe "--git-dir")))
-          (setq gitdir (file-name-as-directory
-                        (if (file-name-absolute-p gitdir)
-                            ;; We might have followed a symlink.
-                            (concat (file-remote-p default-directory)
-                                    (magit-expand-git-file-name gitdir))
-                          (expand-file-name gitdir))))
-          (if (magit-bare-repo-p)
-              gitdir
-            (let* ((link (expand-file-name "gitdir" gitdir))
-                   (wtree (and (file-exists-p link)
-                               (magit-file-line link))))
-              (cond
-               ((and wtree
-                     ;; Ignore .git/gitdir files that result from a
-                     ;; Git bug.  See #2364.
-                     (not (equal wtree ".git")))
-                ;; Return the linked working tree.
-                (file-name-directory wtree))
-               ;; The working directory may not be the parent directory of
-               ;; .git if it was set up with `git init --separate-git-dir'.
-               ;; See #2955.
-               ((car (rassoc gitdir magit--separated-gitdirs)))
-               (t
-                ;; Step outside the control directory to enter the working tree.
-                (file-name-directory (directory-file-name gitdir)))))))))))
-
-(defmacro magit-with-toplevel (&rest body)
-  (declare (indent defun) (debug (body)))
-  (let ((toplevel (cl-gensym "toplevel")))
-    `(let ((,toplevel (magit-toplevel)))
-       (if ,toplevel
-           (let ((default-directory ,toplevel))
-             ,@body)
-         (magit--not-inside-repository-error)))))
-
-(define-error 'magit-outside-git-repo "Not inside Git repository")
-(define-error 'magit-git-executable-not-found
-  "Git executable cannot be found (see https://magit.vc/goto/e6a78ed2)")
-
-(defun magit--not-inside-repository-error ()
-  (if (executable-find magit-git-executable)
-      (signal 'magit-outside-git-repo default-directory)
-    (signal 'magit-git-executable-not-found magit-git-executable)))
-
-(defun magit-inside-gitdir-p (&optioal noerror)
-  "Return t if `default-directory' is below the repository directory.
-If it is below the working directory, then return nil.
-If it isn't below either, then signal an error unless NOERROR
-is non-nil, in which case return nil."
-  (and (magit--assert-default-directory noerror)
-       ;; Below a repository directory that is not located below the
-       ;; working directory "git rev-parse --is-inside-git-dir" prints
-       ;; "false", which is wrong.
-       (let ((gitdir (magit-git-dir)))
-         (cond (gitdir (file-in-directory-p default-directory gitdir))
-               (noerror nil)
-               (t (signal 'magit-outside-git-repo default-directory))))))
-
-(defun magit-inside-worktree-p (&optional noerror)
-  "Return t if `default-directory' is below the working directory.
-If it is below the repository directory, then return nil.
-If it isn't below either, then signal an error unless NOERROR
-is non-nil, in which case return nil."
-  (and (magit--assert-default-directory noerror)
-       (condition-case nil
-           (magit-rev-parse-true "--is-inside-work-tree")
-         (magit-invalid-git-boolean
-          (and (not noerror)
-               (signal 'magit-outside-git-repo default-directory))))))
-
-(defun magit-bare-repo-p (&optional noerror)
-  "Return t if the current repository is bare.
-If it is non-bare, then return nil.  If `default-directory'
-isn't below a Git repository, then signal an error unless
-NOERROR is non-nil, in which case return nil."
-  (and (magit--assert-default-directory noerror)
-       (condition-case nil
-           (magit-rev-parse-true "--is-bare-repository")
-         (magit-invalid-git-boolean
-          (and (not noerror)
-               (signal 'magit-outside-git-repo default-directory))))))
-
-(defun magit--assert-default-directory (&optional noerror)
-  (or (file-directory-p default-directory)
-      (and (not noerror)
-           (let ((exists (file-exists-p default-directory)))
-             (signal (if exists 'file-error 'file-missing)
-                     (list "Running git in directory"
-                           (if exists
-                               "Not a directory"
-                             "No such file or directory")
-                           default-directory))))))
-
-(defun magit-git-repo-p (directory &optional non-bare)
-  "Return t if DIRECTORY is a Git repository.
-When optional NON-BARE is non-nil also return nil if DIRECTORY is
-a bare repository."
-  (and (file-directory-p directory) ; Avoid archives, see #3397.
-       (or (file-regular-p (expand-file-name ".git" directory))
-           (file-directory-p (expand-file-name ".git" directory))
-           (and (not non-bare)
-                (file-regular-p (expand-file-name "HEAD" directory))
-                (file-directory-p (expand-file-name "refs" directory))
-                (file-directory-p (expand-file-name "objects" directory))))))
-
-(defvar-local magit-buffer-revision  nil)
-(defvar-local magit-buffer-refname   nil)
-(defvar-local magit-buffer-file-name nil)
-(put 'magit-buffer-revision  'permanent-local t)
-(put 'magit-buffer-refname   'permanent-local t)
-(put 'magit-buffer-file-name 'permanent-local t)
-
-(defun magit-file-relative-name (&optional file tracked)
-  "Return the path of FILE relative to the repository root.
-
-If optional FILE is nil or omitted, return the relative path of
-the file being visited in the current buffer, if any, else nil.
-If the file is not inside a Git repository, then return nil.
-
-If TRACKED is non-nil, return the path only if it matches a
-tracked file."
-  (unless file
-    (with-current-buffer (or (buffer-base-buffer)
-                             (current-buffer))
-      (setq file (or magit-buffer-file-name buffer-file-name
-                     (and (derived-mode-p 'dired-mode) default-directory)))))
-  (when (and file (or (not tracked)
-                      (magit-file-tracked-p (file-relative-name file))))
-    (--when-let (magit-toplevel
-                 (magit--safe-default-directory
-                  (directory-file-name (file-name-directory file))))
-      (file-relative-name file it))))
-
-(defun magit-file-tracked-p (file)
-  (magit-git-success "ls-files" "--error-unmatch" file))
-
-(defun magit-list-files (&rest args)
-  (apply #'magit-git-items "ls-files" "-z" "--full-name" args))
-
-(defun magit-tracked-files ()
-  (magit-list-files "--cached"))
-
-(defun magit-untracked-files (&optional all files)
-  (magit-list-files "--other" (unless all "--exclude-standard") "--" files))
-
-(defun magit-unstaged-files (&optional nomodules files)
-  (magit-git-items "diff-files" "-z" "--name-only"
-                   (and nomodules "--ignore-submodules")
-                   "--" files))
-
-(defun magit-staged-files (&optional nomodules files)
-  (magit-git-items "diff-index" "-z" "--name-only" "--cached"
-                   (and nomodules "--ignore-submodules")
-                   (magit-headish) "--" files))
-
-(defun magit-binary-files (&rest args)
-  (--mapcat (and (string-match "^-\t-\t\\(.+\\)" it)
-                 (list (match-string 1 it)))
-            (apply #'magit-git-items
-                   "diff" "-z" "--numstat" "--ignore-submodules"
-                   args)))
-
-(defun magit-unmerged-files ()
-  (magit-git-items "diff-files" "-z" "--name-only" "--diff-filter=U"))
-
-(defun magit-ignored-files ()
-  (magit-git-items "ls-files" "-z" "--others" "--ignored"
-                   "--exclude-standard" "--directory"))
-
-(defun magit-revision-files (rev)
-  (magit-with-toplevel
-    (magit-git-items "ls-tree" "-z" "-r" "--name-only" rev)))
-
-(defun magit-changed-files (rev-or-range &optional other-rev)
-  "Return list of files the have changed between two revisions.
-If OTHER-REV is non-nil, REV-OR-RANGE should be a revision, not a
-range.  Otherwise, it can be any revision or range accepted by
-\"git diff\" (i.e., <rev>, <revA>..<revB>, or <revA>...<revB>)."
-  (magit-with-toplevel
-    (magit-git-items "diff" "-z" "--name-only" rev-or-range other-rev)))
-
-(defun magit-renamed-files (revA revB)
-  (--map (cons (nth 1 it) (nth 2 it))
-         (-partition 3 (magit-git-items
-                        "diff-tree" "-r" "--diff-filter=R" "-z" "-M"
-                        revA revB))))
-
-(defun magit-file-status (&rest args)
-  (with-temp-buffer
-    (save-excursion (magit-git-insert "status" "-z" args))
-    (let ((pos (point)) status)
-      (while (> (skip-chars-forward "[:print:]") 0)
-        (let ((x (char-after     pos))
-              (y (char-after (1+ pos)))
-              (file (buffer-substring (+ pos 3) (point))))
-          (forward-char)
-          (if (memq x '(?R ?C))
-              (progn
-                (setq pos (point))
-                (skip-chars-forward "[:print:]")
-                (push (list file (buffer-substring pos (point)) x y) status)
-                (forward-char))
-            (push (list file nil x y) status)))
-        (setq pos (point)))
-      status)))
-
-(defcustom magit-cygwin-mount-points
-  (when (eq system-type 'windows-nt)
-    (cl-sort (--map (if (string-match "^\\(.*\\) on \\(.*\\) type" it)
-                        (cons (file-name-as-directory (match-string 2 it))
-                              (file-name-as-directory (match-string 1 it)))
-                      (lwarn '(magit) :error
-                             "Failed to parse Cygwin mount: %S" it))
-                    ;; If --exec-path is not a native Windows path,
-                    ;; then we probably have a cygwin git.
-                    (let ((process-environment
-                           (append magit-git-environment process-environment)))
-                      (and (not (string-match-p
-                                 "\\`[a-zA-Z]:"
-                                 (car (process-lines
-                                       magit-git-executable "--exec-path"))))
-                           (ignore-errors (process-lines "mount")))))
-             #'> :key (pcase-lambda (`(,cyg . ,_win)) (length cyg))))
-  "Alist of (CYGWIN . WIN32) directory names.
-Sorted from longest to shortest CYGWIN name."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-process
-  :type '(alist :key-type string :value-type directory))
-
-(defun magit-expand-git-file-name (filename)
-  (unless (file-name-absolute-p filename)
-    (setq filename (expand-file-name filename)))
-  (-if-let ((cyg . win)
-            (cl-assoc filename magit-cygwin-mount-points
-                      :test (lambda (f cyg) (string-prefix-p cyg f))))
-      (concat win (substring filename (length cyg)))
-    filename))
-
-(defun magit-convert-filename-for-git (filename)
-  "Convert FILENAME so that it can be passed to git.
-1. If it's a remote filename, then remove the remote part.
-2. Deal with an `windows-nt' Emacs vs. Cygwin Git incompatibility."
-  (if (file-name-absolute-p filename)
-      (-if-let ((cyg . win)
-                (cl-rassoc filename magit-cygwin-mount-points
-                           :test (lambda (f win) (string-prefix-p win f))))
-          (concat cyg (substring filename (length win)))
-        (or (file-remote-p filename 'localname)
-            filename))
-    filename))
-
-(defun magit-decode-git-path (path)
-  (if (eq (aref path 0) ?\")
-      (decode-coding-string (read path)
-                            (or magit-git-output-coding-system
-                                (car default-process-coding-system))
-                            t)
-    path))
-
-(defun magit-file-at-point ()
-  (magit-section-case
-    (file (oref it value))
-    (hunk (magit-section-parent-value it))))
-
-(defun magit-current-file ()
-  (or (magit-file-relative-name)
-      (magit-file-at-point)
-      (and (derived-mode-p 'magit-log-mode)
-           (car (nth 2 magit-refresh-args)))))
-
-;;; Predicates
-
-(defun magit-no-commit-p ()
-  "Return t if there is no commit in the current Git repository."
-  (not (magit-rev-verify "HEAD")))
-
-(defun magit-merge-commit-p (commit)
-  "Return t if COMMIT is a merge commit."
-  (> (length (magit-commit-parents commit)) 1))
-
-(defun magit-anything-staged-p (&optional ignore-submodules &rest files)
-  "Return t if there are any staged changes.
-If optional FILES is non-nil, then only changes to those files
-are considered."
-  (magit-git-failure "diff" "--quiet" "--cached"
-                     (and ignore-submodules "--ignore-submodules")
-                     "--" files))
-
-(defun magit-anything-unstaged-p (&optional ignore-submodules &rest files)
-  "Return t if there are any unstaged changes.
-If optional FILES is non-nil, then only changes to those files
-are considered."
-  (magit-git-failure "diff" "--quiet"
-                     (and ignore-submodules "--ignore-submodules")
-                     "--" files))
-
-(defun magit-anything-modified-p (&optional ignore-submodules &rest files)
-  "Return t if there are any staged or unstaged changes.
-If optional FILES is non-nil, then only changes to those files
-are considered."
-  (or (apply 'magit-anything-staged-p   ignore-submodules files)
-      (apply 'magit-anything-unstaged-p ignore-submodules files)))
-
-(defun magit-anything-unmerged-p (&rest files)
-  "Return t if there are any merge conflicts.
-If optional FILES is non-nil, then only conflicts in those files
-are considered."
-  (and (magit-git-string "ls-files" "--unmerged" files) t))
-
-(defun magit-module-worktree-p (module)
-  (magit-with-toplevel
-    (file-exists-p (expand-file-name (expand-file-name ".git" module)))))
-
-(defun magit-module-no-worktree-p (module)
-  (not (magit-module-worktree-p module)))
-
-(defun magit-ignore-submodules-p ()
-  (cl-find-if (lambda (arg)
-                (string-prefix-p "--ignore-submodules" arg))
-              magit-diff-section-arguments))
-
-;;; Revisions and References
-
-(defun magit-rev-parse (&rest args)
-  "Execute `git rev-parse ARGS', returning first line of output.
-If there is no output, return nil."
-  (apply #'magit-git-string "rev-parse" args))
-
-(defun magit-rev-parse-safe (&rest args)
-  "Execute `git rev-parse ARGS', returning first line of output.
-If there is no output, return nil.  Like `magit-rev-parse' but
-ignore `magit-git-debug'."
-  (apply #'magit-git-str "rev-parse" args))
-
-(defun magit-rev-parse-true (&rest args)
-  "Execute `git rev-parse ARGS', returning t if it prints \"true\".
-If it prints \"false\", then return nil.  For any other output
-signal an error."
-  (magit-git-true "rev-parse" args))
-
-(defun magit-rev-parse-false (&rest args)
-  "Execute `git rev-parse ARGS', returning t if it prints \"false\".
-If it prints \"true\", then return nil.  For any other output
-signal an error."
-  (magit-git-false "rev-parse" args))
-
-(defun magit-rev-parse-p (&rest args)
-  "Execute `git rev-parse ARGS', returning t if it prints \"true\".
-Return t if the first (and usually only) output line is the
-string \"true\", otherwise return nil."
-  (equal (magit-git-str "rev-parse" args) "true"))
-
-(defun magit-rev-verify (rev)
-  (magit-rev-parse-safe "--verify" rev))
-
-(defun magit-rev-verify-commit (rev)
-  "Return full hash for REV if it names an existing commit."
-  (magit-rev-verify (concat rev "^{commit}")))
-
-(defun magit-rev-equal (a b)
-  (magit-git-success "diff" "--quiet" a b))
-
-(defun magit-rev-eq (a b)
-  (let ((a (magit-rev-verify a))
-        (b (magit-rev-verify b)))
-    (and a b (equal a b))))
-
-(defun magit-rev-ancestor-p (a b)
-  "Return non-nil if commit A is an ancestor of commit B."
-  (magit-git-success "merge-base" "--is-ancestor" a b))
-
-(defun magit-rev-head-p (rev)
-  (or (equal rev "HEAD")
-      (and rev
-           (not (string-match-p "\\.\\." rev))
-           (equal (magit-rev-parse rev)
-                  (magit-rev-parse "HEAD")))))
-
-(defun magit-rev-author-p (rev)
-  "Return t if the user is the author of REV.
-More precisely return t if `user.name' is equal to the author
-name of REV and/or `user.email' is equal to the author email
-of REV."
-  (or (equal (magit-get "user.name")  (magit-rev-format "%an" rev))
-      (equal (magit-get "user.email") (magit-rev-format "%ae" rev))))
-
-(defun magit-rev-name (rev &optional pattern)
-  "Return a symbolic name for REV.
-PATTERN is passed to the `--refs' flag of `git-name-rev' and can
-be used to limit the result to a matching ref.  When structured
-as \"refs/<subdir>/*\", PATTERN is taken as a namespace.  In this
-case, the name returned by `git-name-rev' is discarded if it
-corresponds to a ref outside of the namespace."
-  (--when-let (magit-git-string "name-rev" "--name-only" "--no-undefined"
-                                (and pattern (concat "--refs=" pattern))
-                                rev)
-    ;; We can't use name-rev's --exclude to filter out "*/PATTERN"
-    ;; because --exclude wasn't added until Git v2.13.0.
-    (if (and pattern
-             (string-match-p "\\`refs/[^/]+/\\*\\'" pattern))
-        (let ((namespace (substring pattern 0 -1)))
-          (unless (and (string-match-p namespace it)
-                       (not (magit-rev-verify (concat namespace it))))
-            it))
-      it)))
-
-(defun magit-rev-branch (rev)
-  (--when-let (magit-rev-name rev "refs/heads/*")
-    (unless (string-match-p "[~^]" it) it)))
-
-(defun magit-get-shortname (rev)
-  (let* ((fn (apply-partially 'magit-rev-name rev))
-         (name (or (funcall fn "refs/tags/*")
-                   (funcall fn "refs/heads/*")
-                   (funcall fn "refs/remotes/*"))))
-    (cond ((not name)
-           (magit-rev-parse "--short" rev))
-          ((string-match "^\\(?:tags\\|remotes\\)/\\(.+\\)" name)
-           (if (magit-ref-ambiguous-p (match-string 1 name))
-               name
-             (match-string 1 name)))
-          (t (magit-ref-maybe-qualify name)))))
-
-(defun magit-name-branch (rev &optional lax)
-  (or (magit-name-local-branch rev)
-      (magit-name-remote-branch rev)
-      (and lax (or (magit-name-local-branch rev t)
-                   (magit-name-remote-branch rev t)))))
-
-(defun magit-name-local-branch (rev &optional lax)
-  (--when-let (magit-rev-name rev "refs/heads/*")
-    (and (or lax (not (string-match-p "[~^]" it))) it)))
-
-(defun magit-name-remote-branch (rev &optional lax)
-  (--when-let (magit-rev-name rev "refs/remotes/*")
-    (and (or lax (not (string-match-p "[~^]" it)))
-         (substring it 8))))
-
-(defun magit-name-tag (rev &optional lax)
-  (--when-let (magit-rev-name rev "refs/tags/*")
-    (and (or lax (not (string-match-p "[~^]" it)))
-         (substring it 5))))
-
-(defun magit-ref-fullname (name)
-  "Return fully qualified refname for NAME.
-If NAME is ambiguous, return nil.  NAME may include suffixes such
-as \"^1\" and \"~3\".  "
-  (save-match-data
-    (if (string-match "\\`\\([^^~]+\\)\\(.*\\)" name)
-        (--when-let (magit-rev-parse "--symbolic-full-name"
-                                     (match-string 1 name))
-          (concat it (match-string 2 name)))
-      (error "`name' has an unrecognized format"))))
-
-(defun magit-ref-ambiguous-p (name)
-  (not (magit-ref-fullname name)))
-
-(cl-defun magit-ref-maybe-qualify (name &optional (prefix "heads/"))
-  "If NAME is ambiguous, prepend PREFIX to it."
-  (concat (and (magit-ref-ambiguous-p name)
-               prefix)
-          name))
-
-(defun magit-ref-exists-p (ref)
-  (magit-git-success "show-ref" "--verify" ref))
-
-(defun magit-ref-equal (a b)
-  "Return t if the refs A and B are `equal'.
-A symbolic-ref pointing to some ref, is `equal' to that ref,
-as are two symbolic-refs pointing to the same ref."
-  (equal (magit-ref-fullname a)
-         (magit-ref-fullname b)))
-
-(defun magit-ref-eq (a b)
-  "Return t if the refs A and B are `eq'.
-A symbolic-ref is `eq' to itself, but not to the ref it points
-to, or to some other symbolic-ref that points to the same ref."
-  (let ((symbolic-a (magit-symbolic-ref-p a))
-        (symbolic-b (magit-symbolic-ref-p b)))
-    (or (and symbolic-a
-             symbolic-b
-             (equal a b))
-        (and (not symbolic-a)
-             (not symbolic-b)
-             (magit-ref-equal a b)))))
-
-(defun magit-headish ()
-  "Return \"HEAD\" or if that doesn't exist the hash of the empty tree."
-  (if (magit-no-commit-p)
-      (magit-git-string "mktree")
-    "HEAD"))
-
-(defun magit-branch-at-point ()
-  (magit-section-case
-    (branch (oref it value))
-    (commit (or (magit--painted-branch-at-point)
-                (magit-name-branch (oref it value))))))
-
-(defun magit--painted-branch-at-point (&optional type)
-  (or (and (not (eq type 'remote))
-           (memq (get-text-property (point) 'face)
-                 (list 'magit-branch-local
-                       'magit-branch-current))
-           (cdr (magit-split-branch-name
-                 (thing-at-point 'git-revision t))))
-      (and (not (eq type 'local))
-           (memq (get-text-property (point) 'face)
-                 (list 'magit-branch-remote
-                       'magit-branch-remote-head))
-           (thing-at-point 'git-revision t))))
-
-(defun magit-local-branch-at-point ()
-  (magit-section-case
-    (branch (let ((branch (magit-ref-maybe-qualify (oref it value))))
-              (when (member branch (magit-list-local-branch-names))
-                branch)))
-    (commit (or (magit--painted-branch-at-point 'local)
-                (magit-name-local-branch (oref it value))))))
-
-(defun magit-remote-branch-at-point ()
-  (magit-section-case
-    (branch (let ((branch (oref it value)))
-              (when (member branch (magit-list-remote-branch-names))
-                branch)))
-    (commit (or (magit--painted-branch-at-point 'remote)
-                (magit-name-remote-branch (oref it value))))))
-
-(defun magit-commit-at-point ()
-  (or (magit-section-value-if 'commit)
-      (and (derived-mode-p 'magit-revision-mode)
-           (car magit-refresh-args))))
-
-(defun magit-branch-or-commit-at-point ()
-  (or magit-buffer-refname
-      (magit-section-case
-        (branch (magit-ref-maybe-qualify (oref it value)))
-        (commit (or (magit--painted-branch-at-point)
-                    (let ((rev (oref it value)))
-                      (or (magit-name-branch rev)
-                          (magit-get-shortname rev)
-                          rev))))
-        (tag (magit-ref-maybe-qualify (oref it value) "tags/")))
-      (thing-at-point 'git-revision t)
-      (and (derived-mode-p 'magit-revision-mode
-                           'magit-merge-preview-mode)
-           (car magit-refresh-args))))
-
-(defun magit-tag-at-point ()
-  (magit-section-case
-    (tag    (oref it value))
-    (commit (magit-name-tag (oref it value)))))
-
-(defun magit-stash-at-point ()
-  (magit-section-value-if 'stash))
-
-(defun magit-remote-at-point ()
-  (magit-section-case
-    (remote (oref it value))
-    (branch (magit-section-parent-value it))))
-
-(defun magit-module-at-point (&optional predicate)
-  (when (magit-section-match 'magit-module-section)
-    (let ((module (oref (magit-current-section) value)))
-      (and (or (not predicate)
-               (funcall predicate module))
-           module))))
-
-(defun magit-get-current-branch ()
-  "Return the refname of the currently checked out branch.
-Return nil if no branch is currently checked out."
-  (magit-git-string "symbolic-ref" "--short" "HEAD"))
-
-(defvar magit-get-previous-branch-timeout 0.5
-  "Maximum time to spend in `magit-get-previous-branch'.
-Given as a number of seconds.")
-
-(defun magit-get-previous-branch ()
-  "Return the refname of the previously checked out branch.
-Return nil if no branch can be found in the `HEAD' reflog
-which is different from the current branch and still exists.
-The amount of time spent searching is limited by
-`magit-get-previous-branch-timeout'."
-  (let ((t0 (float-time))
-        (current (magit-get-current-branch))
-        (i 1) prev)
-    (while (if (> (- (float-time) t0) magit-get-previous-branch-timeout)
-               (setq prev nil) ;; Timed out.
-             (and (setq prev (magit-rev-verify (format "@{-%i}" i)))
-                  (or (not (setq prev (magit-rev-branch prev)))
-                      (equal prev current))))
-      (cl-incf i))
-    prev))
-
-(defun magit-get-upstream-ref (&optional branch)
-  (and (or branch (setq branch (magit-get-current-branch)))
-       (let ((remote (magit-get "branch" branch "remote"))
-             (merge  (magit-get "branch" branch "merge")))
-         (when (and remote merge)
-           (cond ((string-equal remote ".") merge)
-                 ((string-prefix-p "refs/heads/" merge)
-                  (concat "refs/remotes/" remote "/" (substring merge 11))))))))
-
-(defun magit-set-upstream-branch (branch upstream)
-  (if upstream
-      (pcase-let ((`(,remote . ,merge) (magit-split-branch-name upstream)))
-        (setf (magit-get (format "branch.%s.remote" branch)) remote)
-        (setf (magit-get (format "branch.%s.merge"  branch))
-              (concat "refs/heads/" merge)))
-    (magit-call-git "branch" "--unset-upstream" branch)))
-
-(defun magit-get-upstream-branch (&optional branch verify)
-  (and (or branch (setq branch (magit-get-current-branch)))
-       (when-let ((remote (magit-get "branch" branch "remote"))
-                  (merge  (magit-get "branch" branch "merge")))
-         (and (string-prefix-p "refs/heads/" merge)
-              (let* ((upstream (substring merge 11))
-                     (upstream
-                      (cond ((string-equal remote ".")
-                             (propertize upstream 'face 'magit-branch-local))
-                            ((string-match-p "[@:]" remote)
-                             (propertize (concat remote " " upstream)
-                                         'face 'magit-branch-remote))
-                            (t
-                             (propertize (concat remote "/" upstream)
-                                         'face 'magit-branch-remote)))))
-                (and (or (not verify)
-                         (magit-rev-verify upstream))
-                     upstream))))))
-
-(defun magit-get-indirect-upstream-branch (branch &optional force)
-  (let ((remote (magit-get "branch" branch "remote")))
-    (and remote (not (equal remote "."))
-         ;; The user has opted in...
-         (or force
-             (--some (if (magit-git-success "check-ref-format" "--branch" it)
-                         (equal it branch)
-                       (string-match-p it branch))
-                     magit-branch-prefer-remote-upstream))
-         ;; and local BRANCH tracks a remote branch...
-         (let ((upstream (magit-get-upstream-branch branch)))
-           ;; whose upstream...
-           (and upstream
-                ;; has the same name as BRANCH and...
-                (equal (substring upstream (1+ (length remote))) branch)
-                ;; and can be fast-forwarded to BRANCH.
-                (magit-rev-ancestor-p upstream branch)
-                upstream)))))
-
-(defun magit-get-upstream-remote (&optional branch non-local)
-  (unless branch
-    (setq branch (magit-get-current-branch)))
-  (and branch
-       (let ((remote (magit-get "branch" branch "remote")))
-         (and (not (and non-local (equal remote ".")))
-              remote))))
-
-(defun magit-get-push-remote (&optional branch)
-  (or (and (or branch (setq branch (magit-get-current-branch)))
-           (magit-get "branch" branch "pushRemote"))
-      (magit-get "remote.pushDefault")))
-
-(defun magit-get-push-branch (&optional branch verify)
-  (and (or branch (setq branch (magit-get-current-branch)))
-       (when-let ((remote (magit-get-push-remote branch))
-                  (push-branch (concat remote "/" branch)))
-         (and (or (not verify)
-                  (magit-rev-verify push-branch))
-              (propertize push-branch 'face 'magit-branch-remote)))))
-
-(defun magit-get-@{push}-branch (&optional branch)
-  (let ((ref (magit-rev-parse "--symbolic-full-name"
-                              (concat branch "@{push}"))))
-    (when (and ref (string-prefix-p "refs/remotes/" ref))
-      (substring ref 13))))
-
-(defun magit-get-remote (&optional branch)
-  (when (or branch (setq branch (magit-get-current-branch)))
-    (let ((remote (magit-get "branch" branch "remote")))
-      (unless (equal remote ".")
-        remote))))
-
-(defun magit-get-some-remote (&optional branch)
-  (or (magit-get-remote branch)
-      (and (magit-branch-p "master")
-           (magit-get-remote "master"))
-      (let ((remotes (magit-list-remotes)))
-        (or (car (member "origin" remotes))
-            (car remotes)))))
-
-(defun magit-branch-merged-p (branch &optional target)
-  "Return non-nil if BRANCH is merged into its upstream and TARGET.
-
-TARGET defaults to the current branch.  If `HEAD' is detached and
-TARGET is nil, then always return nil.  As a special case, if
-TARGET is t, then return non-nil if BRANCH is merged into any one
-of the other local branches.
-
-If, and only if, BRANCH has an upstream, then only return non-nil
-if BRANCH is merged into both TARGET (as described above) as well
-as into its upstream."
-  (and (--if-let (and (magit-branch-p branch)
-                      (magit-get-upstream-branch branch))
-           (magit-git-success "merge-base" "--is-ancestor" branch it)
-         t)
-       (if (eq target t)
-           (delete (magit-name-local-branch branch)
-                   (magit-list-containing-branches branch))
-         (--when-let (or target (magit-get-current-branch))
-           (magit-git-success "merge-base" "--is-ancestor" branch it)))))
-
-(defun magit-split-branch-name (branch)
-  (cond ((member branch (magit-list-local-branch-names))
-         (cons "." branch))
-        ((string-match " " branch)
-         (pcase-let ((`(,url ,branch) (split-string branch " ")))
-           (cons url branch)))
-        ((string-match "/" branch)
-         (let ((remote (substring branch 0 (match-beginning 0))))
-           (if (save-match-data (member remote (magit-list-remotes)))
-               (cons remote (substring branch (match-end 0)))
-             (error "Invalid branch name %s" branch))))))
-
-(defun magit-get-current-tag (&optional rev with-distance)
-  "Return the closest tag reachable from REV.
-
-If optional REV is nil, then default to `HEAD'.
-If optional WITH-DISTANCE is non-nil then return (TAG COMMITS),
-if it is `dirty' return (TAG COMMIT DIRTY). COMMITS is the number
-of commits in `HEAD' but not in TAG and DIRTY is t if there are
-uncommitted changes, nil otherwise."
-  (--when-let (magit-git-str "describe" "--long" "--tags"
-                             (and (eq with-distance 'dirty) "--dirty") rev)
-    (save-match-data
-      (string-match
-       "\\(.+\\)-\\(?:0[0-9]*\\|\\([0-9]+\\)\\)-g[0-9a-z]+\\(-dirty\\)?$" it)
-      (if with-distance
-          `(,(match-string 1 it)
-            ,(string-to-number (or (match-string 2 it) "0"))
-            ,@(and (match-string 3 it) (list t)))
-        (match-string 1 it)))))
-
-(defun magit-get-next-tag (&optional rev with-distance)
-  "Return the closest tag from which REV is reachable.
-
-If optional REV is nil, then default to `HEAD'.
-If no such tag can be found or if the distance is 0 (in which
-case it is the current tag, not the next), return nil instead.
-If optional WITH-DISTANCE is non-nil, then return (TAG COMMITS)
-where COMMITS is the number of commits in TAG but not in REV."
-  (--when-let (magit-git-str "describe" "--contains" (or rev "HEAD"))
-    (save-match-data
-      (when (string-match "^[^^~]+" it)
-        (setq it (match-string 0 it))
-        (unless (equal it (magit-get-current-tag rev))
-          (if with-distance
-              (list it (car (magit-rev-diff-count it rev)))
-            it))))))
-
-(defvar magit-list-refs-namespaces
-  '("refs/heads" "refs/remotes" "refs/tags" "refs/pull"))
-
-(defun magit-list-refs (&optional namespaces format sortby)
-  "Return list of references.
-
-When NAMESPACES is non-nil, list refs from these namespaces
-rather than those from `magit-list-refs-namespaces'.
-
-FORMAT is passed to the `--format' flag of `git for-each-ref'
-and defaults to \"%(refname)\".  If the format is \"%(refname)\"
-or \"%(refname:short)\", then drop the symbolic-ref \"HEAD\".
-
-SORTBY is a key or list of keys to pass to the `--sort' flag of
-`git for-each-ref'.  When nil, use `magit-list-refs-sortby'"
-  (unless format
-    (setq format "%(refname)"))
-  (let ((refs (magit-git-lines "for-each-ref"
-                               (concat "--format=" format)
-                               (--map (concat "--sort=" it)
-                                      (pcase (or sortby magit-list-refs-sortby)
-                                        ((and val (pred stringp)) (list val))
-                                        ((and val (pred listp)) val)))
-                               (or namespaces magit-list-refs-namespaces))))
-    (if (member format '("%(refname)" "%(refname:short)"))
-        (--remove (string-match-p "\\(\\`\\|/\\)HEAD\\'" it) refs)
-      refs)))
-
-(defun magit-list-branches ()
-  (magit-list-refs (list "refs/heads" "refs/remotes")))
-
-(defun magit-list-local-branches ()
-  (magit-list-refs "refs/heads"))
-
-(defun magit-list-remote-branches (&optional remote)
-  (magit-list-refs (concat "refs/remotes/" remote)))
-
-(defun magit-list-related-branches (relation &optional commit arg)
-  (--remove (string-match-p "\\(\\`(HEAD\\|HEAD -> \\)" it)
-            (--map (substring it 2)
-                   (magit-git-lines "branch" arg relation commit))))
-
-(defun magit-list-containing-branches (&optional commit arg)
-  (magit-list-related-branches "--contains" commit arg))
-
-(defun magit-list-publishing-branches (&optional commit)
-  (--filter (magit-rev-ancestor-p commit it)
-            magit-published-branches))
-
-(defun magit-list-merged-branches (&optional commit arg)
-  (magit-list-related-branches "--merged" commit arg))
-
-(defun magit-list-unmerged-branches (&optional commit arg)
-  (magit-list-related-branches "--no-merged" commit arg))
-
-(defun magit-list-unmerged-to-upstream-branches ()
-  (--filter (when-let ((upstream (magit-get-upstream-branch it)))
-              (member it (magit-list-unmerged-branches upstream)))
-            (magit-list-local-branch-names)))
-
-(defun magit-list-branches-pointing-at (commit)
-  (let ((re (format "\\`%s refs/\\(heads\\|remotes\\)/\\(.*\\)\\'"
-                   (magit-rev-verify commit))))
-    (--keep (and (string-match re it)
-                 (let ((name (match-string 2 it)))
-                   (and (not (string-suffix-p "HEAD" name))
-                        name)))
-            (magit-git-lines "show-ref"))))
-
-(defun magit-list-refnames (&optional namespaces)
-  (magit-list-refs namespaces "%(refname:short)"))
-
-(defun magit-list-branch-names ()
-  (magit-list-refnames (list "refs/heads" "refs/remotes")))
-
-(defun magit-list-local-branch-names ()
-  (magit-list-refnames "refs/heads"))
-
-(defun magit-list-remote-branch-names (&optional remote relative)
-  (if (and remote relative)
-      (let ((regexp (format "^refs/remotes/%s/\\(.+\\)" remote)))
-        (--mapcat (when (string-match regexp it)
-                    (list (match-string 1 it)))
-                  (magit-list-remote-branches remote)))
-    (magit-list-refnames (concat "refs/remotes/" remote))))
-
-(defun magit-format-refs (format &rest args)
-  (let ((lines (magit-git-lines
-                "for-each-ref" (concat "--format=" format)
-                (or args (list "refs/heads" "refs/remotes" "refs/tags")))))
-    (if (string-match-p "\f" format)
-        (--map (split-string it "\f") lines)
-      lines)))
-
-(defun magit-list-remotes ()
-  (magit-git-lines "remote"))
-
-(defun magit-list-tags ()
-  (magit-git-lines "tag"))
-
-(defun magit-list-stashes (&optional format)
-  (magit-git-lines "stash" "list" (concat "--format=" (or format "%gd"))))
-
-(defun magit-list-active-notes-refs ()
-  "Return notes refs according to `core.notesRef' and `notes.displayRef'."
-  (magit-git-lines "for-each-ref" "--format=%(refname)"
-                   (or (magit-get "core.notesRef") "refs/notes/commits")
-                   (magit-get-all "notes.displayRef")))
-
-(defun magit-list-notes-refnames ()
-  (--map (substring it 6) (magit-list-refnames "refs/notes")))
-
-(defun magit-remote-list-tags (remote)
-  (--keep (and (not (string-match-p "\\^{}$" it))
-               (substring it 51))
-          (magit-git-lines "ls-remote" "--tags" remote)))
-
-(defun magit-remote-list-branches (remote)
-  (--keep (and (not (string-match-p "\\^{}$" it))
-               (substring it 52))
-          (magit-git-lines "ls-remote" "--heads" remote)))
-
-(defun magit-remote-list-refs (remote)
-  (--keep (and (not (string-match-p "\\^{}$" it))
-               (substring it 41))
-          (magit-git-lines "ls-remote" remote)))
-
-(defun magit-list-module-paths ()
-  (--mapcat (and (string-match "^160000 [0-9a-z]\\{40\\} 0\t\\(.+\\)$" it)
-                 (list (match-string 1 it)))
-            (magit-git-items "ls-files" "-z" "--stage")))
-
-(defun magit-get-submodule-name (path)
-  "Return the name of the submodule at PATH.
-PATH has to be relative to the super-repository."
-  (cadr (split-string
-         (car (or (magit-git-items
-                   "config" "-z"
-                   "-f" (expand-file-name ".gitmodules" (magit-toplevel))
-                   "--get-regexp" "^submodule\\..*\\.path$"
-                   (concat "^" (regexp-quote (directory-file-name path)) "$"))
-                  (error "No such submodule `%s'" path)))
-         "\n")))
-
-(defun magit-list-worktrees ()
-  (let (worktrees worktree)
-    (dolist (line (let ((magit-git-global-arguments
-                         ;; KLUDGE At least in v2.8.3 this triggers a segfault.
-                         (remove "--no-pager" magit-git-global-arguments)))
-                    (magit-git-lines "worktree" "list" "--porcelain")))
-      (cond ((string-prefix-p "worktree" line)
-             (push (setq worktree (list (substring line 9) nil nil nil))
-                   worktrees))
-            ((string-equal line "bare")
-             (let* ((default-directory (car worktree))
-                    (wt (and (not (magit-get-boolean "core.bare"))
-                             (magit-get "core.worktree"))))
-               (if (and wt (file-exists-p (expand-file-name wt)))
-                   (progn (setf (nth 0 worktree) (expand-file-name wt))
-                          (setf (nth 2 worktree) (magit-rev-parse "HEAD"))
-                          (setf (nth 3 worktree) (magit-get-current-branch)))
-                 (setf (nth 1 worktree) t))))
-            ((string-prefix-p "HEAD" line)
-             (setf (nth 2 worktree) (substring line 5)))
-            ((string-prefix-p "branch" line)
-             (setf (nth 3 worktree) (substring line 18)))
-            ((string-equal line "detached"))))
-    (nreverse worktrees)))
-
-(defun magit-symbolic-ref-p (name)
-  (magit-git-success "symbolic-ref" "--quiet" name))
-
-(defun magit-ref-p (rev)
-  (or (car (member rev (magit-list-refs)))
-      (car (member rev (magit-list-refnames)))))
-
-(defun magit-branch-p (rev)
-  (or (car (member rev (magit-list-branches)))
-      (car (member rev (magit-list-branch-names)))))
-
-(defun magit-local-branch-p (rev)
-  (or (car (member rev (magit-list-local-branches)))
-      (car (member rev (magit-list-local-branch-names)))))
-
-(defun magit-remote-branch-p (rev)
-  (or (car (member rev (magit-list-remote-branches)))
-      (car (member rev (magit-list-remote-branch-names)))))
-
-(defun magit-branch-set-face (branch)
-  (propertize branch 'face (if (magit-local-branch-p branch)
-                               'magit-branch-local
-                             'magit-branch-remote)))
-
-(defun magit-tag-p (rev)
-  (car (member rev (magit-list-tags))))
-
-(defun magit-remote-p (string)
-  (car (member string (magit-list-remotes))))
-
-(defun magit-rev-diff-count (a b)
-  "Return the commits in A but not B and vice versa.
-Return a list of two integers: (A>B B>A)."
-  (mapcar 'string-to-number
-          (split-string (magit-git-string "rev-list"
-                                          "--count" "--left-right"
-                                          (concat a "..." b))
-                        "\t")))
-
-(defun magit-abbrev-length ()
-  (--if-let (magit-get "core.abbrev")
-      (string-to-number it)
-    ;; Guess the length git will be using based on an example
-    ;; abbreviation.  Actually HEAD's abbreviation might be an
-    ;; outlier, so use the shorter of the abbreviations for two
-    ;; commits.  When a commit does not exist, then fall back
-    ;; to the default of 7.  See #3034.
-    (min (--if-let (magit-rev-parse "--short" "HEAD")  (length it) 7)
-         (--if-let (magit-rev-parse "--short" "HEAD~") (length it) 7))))
-
-(defun magit-abbrev-arg (&optional arg)
-  (format "--%s=%d" (or arg "abbrev") (magit-abbrev-length)))
-
-(defun magit-rev-abbrev (rev)
-  (magit-rev-parse (magit-abbrev-arg "short") rev))
-
-(defun magit-commit-children (commit &optional args)
-  (mapcar #'car
-          (--filter (member commit (cdr it))
-                    (--map (split-string it " ")
-                           (magit-git-lines
-                            "log" "--format=%H %P"
-                            (or args (list "--branches" "--tags" "--remotes"))
-                            "--not" commit)))))
-
-(defun magit-commit-parents (commit)
-  (--when-let (magit-git-string "rev-list" "-1" "--parents" commit)
-    (cdr (split-string it))))
-
-(defun magit-patch-id (rev)
-  (with-temp-buffer
-    (magit-process-file
-     shell-file-name nil '(t nil) nil shell-command-switch
-     (let ((exec (shell-quote-argument magit-git-executable)))
-       (format "%s diff-tree -u %s | %s patch-id" exec rev exec)))
-    (car (split-string (buffer-string)))))
-
-(defun magit-rev-format (format &optional rev args)
-  (let ((str (magit-git-string "show" "--no-patch"
-                               (concat "--format=" format) args
-                               (if rev (concat rev "^{commit}") "HEAD") "--")))
-    (unless (string-equal str "")
-      str)))
-
-(defun magit-rev-insert-format (format &optional rev args)
-  (magit-git-insert "show" "--no-patch"
-                    (concat "--format=" format) args
-                    (if rev (concat rev "^{commit}") "HEAD") "--"))
-
-(defun magit-format-rev-summary (rev)
-  (--when-let (magit-rev-format "%h %s" rev)
-    (string-match " " it)
-    (put-text-property 0 (match-beginning 0) 'face 'magit-hash it)
-    it))
-
-(defvar magit-ref-namespaces
-  '(("\\`HEAD\\'"                  . magit-head)
-    ("\\`refs/tags/\\(.+\\)"       . magit-tag)
-    ("\\`refs/heads/\\(.+\\)"      . magit-branch-local)
-    ("\\`refs/remotes/\\(.+\\)"    . magit-branch-remote)
-    ("\\`refs/bisect/\\(bad\\)"    . magit-bisect-bad)
-    ("\\`refs/bisect/\\(skip.*\\)" . magit-bisect-skip)
-    ("\\`refs/bisect/\\(good.*\\)" . magit-bisect-good)
-    ("\\`refs/stash$"              . magit-refname-stash)
-    ("\\`refs/wip/\\(.+\\)"        . magit-refname-wip)
-    ("\\`refs/pullreqs/\\(.+\\)"   . magit-refname-pullreq)
-    ("\\`\\(bad\\):"               . magit-bisect-bad)
-    ("\\`\\(skip\\):"              . magit-bisect-skip)
-    ("\\`\\(good\\):"              . magit-bisect-good)
-    ("\\`\\(.+\\)"                 . magit-refname))
-  "How refs are formatted for display.
-
-Each entry controls how a certain type of ref is displayed, and
-has the form (REGEXP . FACE).  REGEXP is a regular expression
-used to match full refs.  The first entry whose REGEXP matches
-the reference is used.
-
-In log and revision buffers the first regexp submatch becomes the
-\"label\" that represents the ref and is propertized with FONT.
-In refs buffers the displayed text is controlled by other means
-and this option only controls what face is used.")
-
-(defun magit-format-ref-labels (string)
-  ;; To support Git <2.2.0, we remove the surrounding parentheses here
-  ;; rather than specifying that STRING should be generated with Git's
-  ;; "%D" placeholder.
-  (setq string (->> string
-                    (replace-regexp-in-string "\\`\\s-*(" "")
-                    (replace-regexp-in-string ")\\s-*\\'" "")))
-  (save-match-data
-    (let ((regexp "\\(, \\|tag: \\|HEAD -> \\)")
-          names)
-      (if (and (derived-mode-p 'magit-log-mode)
-               (member "--simplify-by-decoration" (cadr magit-refresh-args)))
-          (let ((branches (magit-list-local-branch-names))
-                (re (format "^%s/.+" (regexp-opt (magit-list-remotes)))))
-            (setq names
-                  (--map (cond ((string-equal it "HEAD")     it)
-                               ((string-prefix-p "refs/" it) it)
-                               ((member it branches) (concat "refs/heads/" it))
-                               ((string-match re it) (concat "refs/remotes/" it))
-                               (t                    (concat "refs/" it)))
-                         (split-string
-                          (replace-regexp-in-string "tag: " "refs/tags/" string)
-                          regexp t))))
-        (setq names (split-string string regexp t)))
-      (let (state head upstream tags branches remotes other combined)
-        (dolist (ref names)
-          (let* ((face (cdr (--first (string-match (car it) ref)
-                                     magit-ref-namespaces)))
-                 (name (propertize (or (match-string 1 ref) ref) 'face face)))
-            (cl-case face
-              ((magit-bisect-bad magit-bisect-skip magit-bisect-good)
-               (setq state name))
-              (magit-head
-               (setq head (propertize "@" 'face 'magit-head)))
-              (magit-tag            (push name tags))
-              (magit-branch-local   (push name branches))
-              (magit-branch-remote  (push name remotes))
-              (t                    (push name other)))))
-        (setq remotes
-              (-keep
-               (lambda (name)
-                 (if (string-match "\\`\\([^/]*\\)/\\(.*\\)\\'" name)
-                     (let ((r (match-string 1 name))
-                           (b (match-string 2 name)))
-                       (and (not (equal b "HEAD"))
-                            (if (equal (concat "refs/remotes/" name)
-                                       (magit-git-string
-                                        "symbolic-ref"
-                                        (format "refs/remotes/%s/HEAD" r)))
-                                (propertize name
-                                            'face 'magit-branch-remote-head)
-                              name)))
-                   name))
-               remotes))
-        (let* ((current (magit-get-current-branch))
-               (target  (magit-get-upstream-branch current t)))
-          (dolist (name branches)
-            (let ((push (car (member (magit-get-push-branch name) remotes))))
-              (when push
-                (setq remotes (delete push remotes))
-                (string-match "^[^/]*/" push)
-                (setq push (substring push 0 (match-end 0))))
-              (cond
-               ((equal name current)
-                (setq head
-                      (concat push
-                              (propertize name 'face 'magit-branch-current))))
-               ((equal name target)
-                (setq upstream
-                      (concat push
-                              (propertize name 'face '(magit-branch-upstream
-                                                       magit-branch-local)))))
-               (t
-                (push (concat push name) combined)))))
-          (when (and target (not upstream))
-            (if (member target remotes)
-                (progn
-                  (add-face-text-property 0 (length target)
-                                          'magit-branch-upstream nil target)
-                  (setq upstream target)
-                  (setq remotes  (delete target remotes)))
-              (when-let ((target (car (member target combined))))
-                (add-face-text-property 0 (length target)
-                                        'magit-branch-upstream nil target)
-                (setq upstream target)
-                (setq combined (delete target combined))))))
-        (mapconcat #'identity
-                   (-flatten `(,state
-                               ,head
-                               ,upstream
-                               ,@(nreverse tags)
-                               ,@(nreverse combined)
-                               ,@(nreverse remotes)
-                               ,@other))
-                   " ")))))
-
-(defun magit-object-type (object)
-  (magit-git-string "cat-file" "-t" object))
-
-(defmacro magit-with-blob (commit file &rest body)
-  (declare (indent 2)
-           (debug (form form body)))
-  `(with-temp-buffer
-     (let ((buffer-file-name ,file))
-       (save-excursion
-         (magit-git-insert "cat-file" "-p"
-                           (concat ,commit ":" buffer-file-name)))
-       (decode-coding-inserted-region
-        (point-min) (point-max) buffer-file-name t nil nil t)
-       ,@body)))
-
-(defmacro magit-with-temp-index (tree arg &rest body)
-  (declare (indent 2) (debug (form form body)))
-  (let ((file (cl-gensym "file")))
-    `(let ((magit--refresh-cache nil)
-           (,file (magit-convert-filename-for-git
-                   (make-temp-name (magit-git-dir "index.magit.")))))
-       (unwind-protect
-           (magit-with-toplevel
-             (--when-let ,tree
-               (or (magit-git-success "read-tree" ,arg it
-                                      (concat "--index-output=" ,file))
-                   (error "Cannot read tree %s" it)))
-             (if (file-remote-p default-directory)
-                 (let ((magit-tramp-process-environment
-                        (cons (concat "GIT_INDEX_FILE=" ,file)
-                              magit-tramp-process-environment)))
-                   ,@body)
-               (let ((process-environment
-                      (cons (concat "GIT_INDEX_FILE=" ,file)
-                            process-environment)))
-                 ,@body)))
-         (ignore-errors
-           (delete-file (concat (file-remote-p default-directory) ,file)))))))
-
-(defun magit-commit-tree (message &optional tree &rest parents)
-  (magit-git-string "commit-tree" "--no-gpg-sign" "-m" message
-                    (--mapcat (list "-p" it) (delq nil parents))
-                    (or tree
-                        (magit-git-string "write-tree")
-                        (error "Cannot write tree"))))
-
-(defun magit-commit-worktree (message &optional arg &rest other-parents)
-  (magit-with-temp-index "HEAD" arg
-    (and (magit-update-files (magit-unstaged-files))
-         (apply #'magit-commit-tree message nil "HEAD" other-parents))))
-
-(defun magit-update-files (files)
-  (magit-git-success "update-index" "--add" "--remove" "--" files))
-
-(defun magit-update-ref (ref message rev &optional stashish)
-  (let ((magit--refresh-cache nil))
-    (or (if (not (version< (magit-git-version) "2.6.0"))
-            (zerop (magit-call-git "update-ref" "--create-reflog"
-                                   "-m" message ref rev
-                                   (or (magit-rev-verify ref) "")))
-          ;; `--create-reflog' didn't exist before v2.6.0
-          (let ((oldrev  (magit-rev-verify ref))
-                (logfile (magit-git-dir (concat "logs/" ref))))
-            (unless (file-exists-p logfile)
-              (when oldrev
-                (magit-git-success "update-ref" "-d" ref oldrev))
-              (make-directory (file-name-directory logfile) t)
-              (with-temp-file logfile)
-              (when (and oldrev (not stashish))
-                (magit-git-success "update-ref" "-m" "enable reflog"
-                                   ref oldrev ""))))
-          (magit-git-success "update-ref" "-m" message ref rev
-                             (or (magit-rev-verify ref) "")))
-        (error "Cannot update %s with %s" ref rev))))
-
-(defconst magit-range-re
-  (concat "\\`\\([^ \t]*[^.]\\)?"       ; revA
-          "\\(\\.\\.\\.?\\)"            ; range marker
-          "\\([^.][^ \t]*\\)?\\'"))     ; revB
-
-(defun magit-split-range (range)
-  (and (string-match magit-range-re range)
-       (let ((beg (or (match-string 1 range) "HEAD"))
-             (end (or (match-string 3 range) "HEAD")))
-         (cons (if (string-equal (match-string 2 range) "...")
-                   (magit-git-string "merge-base" beg end)
-                 beg)
-               end))))
-
-(defvar magit-thingatpt--git-revision-chars "-_./[:alnum:]@{}^~!"
-  "Characters allowable in filenames, excluding space and colon.")
-
-(put 'git-revision 'end-op
-     (lambda ()
-       (re-search-forward
-        (concat "\\=[" magit-thingatpt--git-revision-chars "]*")
-        nil t)))
-
-(put 'git-revision 'beginning-op
-     (lambda ()
-       (if (re-search-backward
-            (concat "[^" magit-thingatpt--git-revision-chars "]") nil t)
-           (forward-char)
-         (goto-char (point-min)))))
-
-(put 'git-revision 'thing-at-point 'magit-thingatpt--git-revision)
-
-(defun magit-thingatpt--git-revision ()
-  (--when-let (bounds-of-thing-at-point 'git-revision)
-    (let ((text (buffer-substring-no-properties (car it) (cdr it))))
-      (and (magit-rev-verify-commit text) text))))
-
-;;; Completion
-
-(defvar magit-revision-history nil)
-
-(defun magit-read-branch (prompt &optional secondary-default)
-  (magit-completing-read prompt (magit-list-branch-names)
-                         nil t nil 'magit-revision-history
-                         (or (magit-branch-at-point)
-                             secondary-default
-                             (magit-get-current-branch))))
-
-(defun magit-read-branch-or-commit (prompt &optional secondary-default)
-  (or (magit-completing-read prompt (cons "HEAD" (magit-list-refnames))
-                             nil nil nil 'magit-revision-history
-                             (or (magit-branch-or-commit-at-point)
-                                 secondary-default
-                                 (magit-get-current-branch)))
-      (user-error "Nothing selected")))
-
-(defun magit-read-range-or-commit (prompt &optional secondary-default)
-  (magit-read-range
-   prompt
-   (or (--when-let (magit-region-values '(commit branch) t)
-         (deactivate-mark)
-         (concat (car (last it)) ".." (car it)))
-       (magit-branch-or-commit-at-point)
-       secondary-default
-       (magit-get-current-branch))))
-
-(defun magit-read-range (prompt &optional default)
-  (magit-completing-read-multiple prompt
-                                  (magit-list-refnames)
-                                  "\\.\\.\\.?"
-                                  default 'magit-revision-history))
-
-(defun magit-read-remote-branch
-    (prompt &optional remote default local-branch require-match)
-  (let ((choice (magit-completing-read
-                 prompt
-                 (-union (and local-branch
-                              (if remote
-                                  (concat remote "/" local-branch)
-                                (--map (concat it "/" local-branch)
-                                       (magit-list-remotes))))
-                         (magit-list-remote-branch-names remote t))
-                 nil require-match nil 'magit-revision-history default)))
-    (if (or remote (string-match "\\`\\([^/]+\\)/\\(.+\\)" choice))
-        choice
-      (user-error "`%s' doesn't have the form REMOTE/BRANCH" choice))))
-
-(defun magit-read-refspec (prompt remote)
-  (magit-completing-read prompt
-                         (prog2 (message "Determining available refs...")
-                             (magit-remote-list-refs remote)
-                           (message "Determining available refs...done"))))
-
-(defun magit-read-local-branch (prompt &optional secondary-default)
-  (magit-completing-read prompt (magit-list-local-branch-names)
-                         nil t nil 'magit-revision-history
-                         (or (magit-local-branch-at-point)
-                             secondary-default
-                             (magit-get-current-branch))))
-
-(defun magit-read-local-branch-or-commit (prompt)
-  (let ((branches (magit-list-local-branch-names))
-        (commit (magit-commit-at-point)))
-    (or (magit-completing-read prompt
-                               (if commit (cons commit branches) branches)
-                               nil nil nil 'magit-revision-history
-                               (or (magit-local-branch-at-point) commit))
-                     (user-error "Nothing selected"))))
-
-(defun magit-read-local-branch-or-ref (prompt &optional secondary-default)
-  (magit-completing-read prompt (nconc (magit-list-local-branch-names)
-                                       (magit-list-refs "refs/"))
-                         nil t nil 'magit-revision-history
-                         (or (magit-local-branch-at-point)
-                             secondary-default
-                             (magit-get-current-branch))))
-
-(defun magit-read-other-branch
-    (prompt &optional exclude secondary-default no-require-match)
-  (let* ((current (magit-get-current-branch))
-         (atpoint (magit-branch-at-point))
-         (exclude (or exclude current))
-         (default (or (and (not (equal atpoint exclude)) atpoint)
-                      (and (not (equal current exclude)) current)
-                      secondary-default
-                      (magit-get-previous-branch))))
-    (magit-completing-read prompt (delete exclude (magit-list-branch-names))
-                           nil (not no-require-match)
-                           nil 'magit-revision-history default)))
-
-(defun magit-read-other-branch-or-commit
-    (prompt &optional exclude secondary-default)
-  (let* ((current (magit-get-current-branch))
-         (atpoint (magit-branch-or-commit-at-point))
-         (exclude (or exclude current))
-         (default (or (and (not (equal atpoint exclude)) atpoint)
-                      (and (not (equal current exclude)) current)
-                      secondary-default
-                      (magit-get-previous-branch))))
-    (or (magit-completing-read prompt (delete exclude (magit-list-refnames))
-                               nil nil nil 'magit-revision-history default)
-        (user-error "Nothing selected"))))
-
-(defun magit-read-other-local-branch
-    (prompt &optional exclude secondary-default no-require-match)
-  (let* ((current (magit-get-current-branch))
-         (atpoint (magit-local-branch-at-point))
-         (exclude (or exclude current))
-         (default (or (and (not (equal atpoint exclude)) atpoint)
-                      (and (not (equal current exclude)) current)
-                      secondary-default
-                      (magit-get-previous-branch))))
-    (magit-completing-read prompt
-                           (delete exclude (magit-list-local-branch-names))
-                           nil (not no-require-match)
-                           nil 'magit-revision-history default)))
-
-(defun magit-read-branch-prefer-other (prompt)
-  (let* ((current (magit-get-current-branch))
-         (commit  (magit-commit-at-point))
-         (atrev   (and commit (magit-list-branches-pointing-at commit)))
-         (atpoint (magit--painted-branch-at-point)))
-    (magit-completing-read prompt (magit-list-branch-names)
-                           nil t nil 'magit-revision-history
-                           (or (magit-section-value-if 'branch)
-                               atpoint
-                               (and (not (cdr atrev)) (car atrev))
-                               (--first (not (equal it current)) atrev)
-                               (magit-get-previous-branch)
-                               (car atrev)))))
-
-(cl-defun magit-read-upstream-branch
-    (&optional (branch (magit-get-current-branch)) prompt)
-  (magit-completing-read
-   (or prompt (format "Change upstream of %s to" branch))
-   (-union (--map (concat it "/" branch)
-                  (magit-list-remotes))
-           (delete branch (magit-list-branch-names)))
-   nil nil nil 'magit-revision-history
-   (or (let ((r (magit-remote-branch-at-point))
-             (l (magit-branch-at-point)))
-         (when (and l (equal l branch))
-           (setq l nil))
-         (if magit-prefer-remote-upstream (or r l) (or l r)))
-       (let ((r (magit-branch-p "origin/master"))
-             (l (and (not (equal branch "master"))
-                     (magit-branch-p "master"))))
-         (if magit-prefer-remote-upstream (or r l) (or l r)))
-       (let ((previous (magit-get-previous-branch)))
-         (and (not (equal previous branch)) previous)))))
-
-(defun magit-read-starting-point (prompt &optional branch)
-  (or (magit-completing-read
-       (concat prompt
-               (and branch
-                    (if (bound-and-true-p ivy-mode)
-                        ;; Ivy-mode strips faces from prompt.
-                        (format  " `%s'" branch)
-                      (concat " "
-                              (propertize branch 'face 'magit-branch-local))))
-               " starting at")
-       (nconc (list "HEAD")
-              (magit-list-refnames)
-              (directory-files (magit-git-dir) nil "_HEAD\\'"))
-       nil nil nil 'magit-revision-history
-       (magit--default-starting-point))
-      (user-error "Nothing selected")))
-
-(defun magit--default-starting-point ()
-  (or (let ((r (magit-remote-branch-at-point))
-            (l (magit-local-branch-at-point)))
-        (if magit-prefer-remote-upstream (or r l) (or l r)))
-      (magit-commit-at-point)
-      (magit-stash-at-point)
-      (magit-get-current-branch)))
-
-(defun magit-read-tag (prompt &optional require-match)
-  (magit-completing-read prompt (magit-list-tags) nil
-                         require-match nil 'magit-revision-history
-                         (magit-tag-at-point)))
-
-(defun magit-read-stash (prompt)
-  (let ((stashes (magit-list-stashes)))
-    (magit-completing-read prompt stashes nil t nil nil
-                           (magit-stash-at-point)
-                           (car stashes))))
-
-(defun magit-read-remote (prompt &optional default use-only)
-  (let ((remotes (magit-list-remotes)))
-    (if (and use-only (= (length remotes) 1))
-        (car remotes)
-      (magit-completing-read prompt remotes
-                             nil t nil nil
-                             (or default
-                                 (magit-remote-at-point)
-                                 (magit-get-remote))))))
-
-(defun magit-read-remote-or-url (prompt &optional default)
-  (magit-completing-read prompt
-                         (nconc (magit-list-remotes)
-                                (list "https://" "git://" "git@"))
-                         nil nil nil nil
-                         (or default
-                             (magit-remote-at-point)
-                             (magit-get-remote))))
-
-(defun magit-read-module-path (prompt &optional predicate)
-  (magit-completing-read prompt (magit-list-module-paths)
-                         predicate t nil nil
-                         (magit-module-at-point predicate)))
-
-(defun magit-module-confirm (verb &optional predicate)
-  (let (modules)
-    (if current-prefix-arg
-        (progn
-          (setq modules (magit-list-module-paths))
-          (when predicate
-            (setq modules (-filter predicate modules)))
-          (unless modules
-            (if predicate
-                (user-error "No modules satisfying %s available" predicate)
-              (user-error "No modules available"))))
-      (setq modules (magit-region-values 'magit-module-section))
-      (when modules
-        (when predicate
-          (setq modules (-filter predicate modules)))
-        (unless modules
-          (user-error "No modules satisfying %s selected" predicate))))
-    (if (> (length modules) 1)
-        (magit-confirm t nil (format "%s %%i modules" verb) nil modules)
-      (list (magit-read-module-path (format "%s module" verb) predicate)))))
-
-;;; Variables in Popups
-
-(defun magit--format-popup-variable:value (variable width &optional global)
-  (concat variable
-          (make-string (max 1 (- width 3 (length variable))) ?\s)
-          (if-let ((value (magit-get (and global "--global") variable)))
-              (propertize value 'face 'magit-popup-option-value)
-            (propertize "unset" 'face 'magit-popup-disabled-argument))))
-
-(defun magit--format-popup-variable:values (variable width &optional global)
-  (concat variable
-          (make-string (max 1 (- width 3 (length variable))) ?\s)
-          (if-let ((values (magit-get-all (and global "--global") variable)))
-              (concat
-               (propertize (car values) 'face 'magit-popup-option-value)
-               (mapconcat
-                (lambda (value)
-                  (concat "\n" (make-string width ?\s)
-                          (propertize value
-                                      'face 'magit-popup-option-value)))
-                (cdr values) ""))
-            (propertize "unset" 'face 'magit-popup-disabled-argument))))
-
-(defun magit--set-popup-variable
-    (variable choices &optional default other)
-  (magit-set (--if-let (magit-git-string "config" "--local" variable)
-                 (cadr (member it choices))
-               (car choices))
-             variable)
-  (magit-with-pre-popup-buffer
-    (magit-refresh))
-  (message "%s %s" variable
-           (magit--format-popup-variable:choices*
-            variable choices default other)))
-
-(defun magit--format-popup-variable:choices
-    (variable choices &optional default other width)
-  (concat variable
-          (if width (make-string (- width (length variable)) ?\s) " ")
-          (magit--format-popup-variable:choices*
-           variable choices default other)))
-
-(defun magit--format-popup-variable:choices*
-    (variable choices &optional default other)
-  (let ((local  (magit-git-string "config" "--local"  variable))
-        (global (magit-git-string "config" "--global" variable)))
-    (when other
-      (setq other (--when-let (magit-get other)
-                    (concat other ":" it))))
-    (concat
-     (propertize "[" 'face 'magit-popup-disabled-argument)
-     (mapconcat
-      (lambda (choice)
-        (propertize choice 'face (if (equal choice local)
-                                     'magit-popup-option-value
-                                   'magit-popup-disabled-argument)))
-      choices
-      (propertize "|" 'face 'magit-popup-disabled-argument))
-     (when (or global other default)
-       (concat
-        (propertize "|" 'face 'magit-popup-disabled-argument)
-        (cond (global
-               (propertize (concat "global:" global)
-                           'face (cond (local
-                                        'magit-popup-disabled-argument)
-                                       ((member global choices)
-                                        'magit-popup-option-value)
-                                       (t
-                                        'font-lock-warning-face))))
-              (other
-               (propertize other
-                           'face (if local
-                                     'magit-popup-disabled-argument
-                                   'magit-popup-option-value)))
-              (default
-               (propertize (concat "default:" default)
-                           'face (if local
-                                     'magit-popup-disabled-argument
-                                   'magit-popup-option-value))))))
-     (propertize "]" 'face 'magit-popup-disabled-argument))))
-
-;;; _
-(provide 'magit-git)
-;;; magit-git.el ends here
diff --git a/elpa/magit-20181116.1412/magit-git.elc b/elpa/magit-20181116.1412/magit-git.elc
deleted file mode 100644
index 4de5687..0000000
--- a/elpa/magit-20181116.1412/magit-git.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-gitignore.el b/elpa/magit-20181116.1412/magit-gitignore.el
deleted file mode 100644
index 1d4e84a..0000000
--- a/elpa/magit-20181116.1412/magit-gitignore.el
+++ /dev/null
@@ -1,98 +0,0 @@
-;;; magit-gitignore.el --- intentionally untracked files  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements gitignore commands.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-gitignore-popup "magit-gitignore" nil t)
-(magit-define-popup magit-gitignore-popup
-  "Popup console for gitignore commands."
-  :man-page "gitignore"
-  :actions '((?l "ignore locally"  magit-gitignore-locally)
-             (?g "ignore globally" magit-gitignore-globally))
-  :max-action-columns 1)
-
-;;;###autoload
-(defun magit-gitignore-globally (file-or-pattern)
-  "Instruct Git to globally ignore FILE-OR-PATTERN."
-  (interactive (list (magit-gitignore-read-pattern nil)))
-  (magit--gitignore file-or-pattern nil))
-
-;;;###autoload
-(defun magit-gitignore-locally (file-or-pattern)
-  "Instruct Git to locally ignore FILE-OR-PATTERN."
-  (interactive (list (magit-gitignore-read-pattern t)))
-  (magit--gitignore file-or-pattern t))
-
-(defun magit--gitignore (file-or-pattern local)
-  (let ((gitignore
-         (if local
-             (magit-git-dir (convert-standard-filename "info/exclude"))
-           (expand-file-name ".gitignore" (magit-toplevel)))))
-    (make-directory (file-name-directory gitignore) t)
-    (with-temp-buffer
-      (when (file-exists-p gitignore)
-        (insert-file-contents gitignore))
-      (goto-char (point-max))
-      (unless (bolp)
-        (insert "\n"))
-      (insert (replace-regexp-in-string "\\(\\\\*\\)" "\\1\\1" file-or-pattern))
-      (insert "\n")
-      (write-region nil nil gitignore))
-    (if local
-        (magit-refresh)
-      (magit-run-git "add" ".gitignore"))))
-
-(defun magit-gitignore-read-pattern (local)
-  (let* ((default (magit-current-file))
-         (choices
-          (delete-dups
-           (--mapcat
-            (cons (concat "/" it)
-                  (when-let ((ext (file-name-extension it)))
-                    (list (concat "/" (file-name-directory "foo") "*." ext)
-                          (concat "*." ext))))
-            (magit-untracked-files)))))
-    (when default
-      (setq default (concat "/" default))
-      (unless (member default choices)
-        (setq default (concat "*." (file-name-extension default)))
-        (unless (member default choices)
-          (setq default nil))))
-    (magit-completing-read (concat "File or pattern to ignore"
-                                   (and local " locally"))
-                           choices nil nil nil nil default)))
-
-;;; _
-(provide 'magit-gitignore)
-;;; magit-gitignore.el ends here
diff --git a/elpa/magit-20181116.1412/magit-gitignore.elc b/elpa/magit-20181116.1412/magit-gitignore.elc
deleted file mode 100644
index 14c374e..0000000
--- a/elpa/magit-20181116.1412/magit-gitignore.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-imenu.el b/elpa/magit-20181116.1412/magit-imenu.el
deleted file mode 100644
index 52b7ed6..0000000
--- a/elpa/magit-20181116.1412/magit-imenu.el
+++ /dev/null
@@ -1,243 +0,0 @@
-;;; magit-imenu.el --- Integrate Imenu in magit major modes  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Damien Cassou <damien@cassou.me>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; Emacs' major modes can facilitate navigation in their buffers by
-;; supporting Imenu.  In such major modes, launching Imenu (M-x imenu)
-;; makes Emacs display a list of items (e.g., function definitions in
-;; a programming major mode).  Selecting an item from this list moves
-;; point to this item.
-
-;; magit-imenu.el adds Imenu support to every major mode in Magit
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-(require 'git-rebase)
-
-(defun magit-imenu--index-function (entry-types menu-types)
-  "Return an alist of imenu entries in current buffer.
-
-ENTRY-TYPES is a list of section types to be selected through
-`imenu'.
-
-MENU-TYPES is a list of section types containing elements of
-ENTRY-TYPES.  Elements of MENU-TYPES are are used to categories
-elements of ENTRY-TYPES.
-
-This function is used as a helper for functions set as
-`imenu-create-index-function'."
-  (let ((entries (make-hash-table :test 'equal)))
-    (goto-char (point-max))
-    (while (magit-section--backward-find
-            (lambda ()
-              (let* ((section (magit-current-section))
-                     (type (oref section type))
-                     (parent (oref section parent))
-                     (parent-type (oref parent type)))
-                (and (-contains-p entry-types type)
-                     (-contains-p menu-types parent-type)))))
-      (let* ((section (magit-current-section))
-             (name (buffer-substring-no-properties
-                    (line-beginning-position)
-                    (line-end-position)))
-             (parent (oref section parent))
-             (parent-title (buffer-substring-no-properties
-                            (oref parent start)
-                            (1- (oref parent content)))))
-        (puthash parent-title
-                 (cons (cons name (point))
-                       (gethash parent-title entries (list)))
-                 entries)))
-    (mapcar (lambda (menu-title)
-              (cons menu-title (gethash menu-title entries)))
-            (hash-table-keys entries))))
-
-;;; Log mode
-
-;;;###autoload
-(defun magit-imenu--log-prev-index-position-function ()
-  "Move point to previous line in current buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'."
-  (magit-section--backward-find
-   (lambda ()
-     (-contains-p '(commit stash)
-                  (oref (magit-current-section) type)))))
-
-;;;###autoload
-(defun magit-imenu--log-extract-index-name-function ()
-  "Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line."
-  (save-match-data
-    (looking-at "\\([^ ]+\\)[ *|]+\\(.+\\)$")
-    (format "%s: %s"
-            (match-string-no-properties 1)
-            (match-string-no-properties 2))))
-
-;;; Diff mode
-
-;;;###autoload
-(defun magit-imenu--diff-prev-index-position-function ()
-  "Move point to previous file line in current buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'."
-  (magit-section--backward-find
-   (lambda ()
-     (let ((section (magit-current-section)))
-       (and (magit-file-section-p section)
-            (not (equal (oref (oref section parent) type)
-                        'diffstat)))))))
-
-;;;###autoload
-(defun magit-imenu--diff-extract-index-name-function ()
-  "Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line."
-  (buffer-substring-no-properties (line-beginning-position)
-                                  (line-end-position)))
-
-;;; Status mode
-
-;;;###autoload
-(defun magit-imenu--status-create-index-function ()
-  "Return an alist of all imenu entries in current buffer.
-This function is used as a value for
-`imenu-create-index-function'."
-  (magit-imenu--index-function
-   '(file commit stash)
-   '(unpushed unstaged unpulled untracked staged stashes)))
-
-;;;; Refs mode
-
-;;;###autoload
-(defun magit-imenu--refs-create-index-function ()
-  "Return an alist of all imenu entries in current buffer.
-This function is used as a value for
-`imenu-create-index-function'."
-  (magit-imenu--index-function
-   '(branch commit tag)
-   '(local remote tags)))
-
-;;;; Cherry mode
-
-;;;###autoload
-(defun magit-imenu--cherry-create-index-function ()
-  "Return an alist of all imenu entries in current buffer.
-This function is used as a value for
-`imenu-create-index-function'."
-  (magit-imenu--index-function
-   '(commit)
-   '(cherries)))
-
-;;;; Submodule list mode
-
-;;;###autoload
-(defun magit-imenu--submodule-prev-index-position-function ()
-  "Move point to previous line in magit-submodule-list buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'."
-  (unless (bobp)
-    (forward-line -1)))
-
-;;;###autoload
-(defun magit-imenu--submodule-extract-index-name-function ()
-  "Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line."
-  (elt (tabulated-list-get-entry) 0))
-
-;;;; Repolist mode
-
-;;;###autoload
-(defun magit-imenu--repolist-prev-index-position-function ()
-  "Move point to previous line in magit-repolist buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'."
-  (unless (bobp)
-    (forward-line -1)))
-
-;;;###autoload
-(defun magit-imenu--repolist-extract-index-name-function ()
-  "Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line."
-  (let ((entry (tabulated-list-get-entry)))
-    (format "%s (%s)"
-            (elt entry 0)
-            (elt entry (1- (length entry))))))
-
-;;;; Process mode
-
-;;;###autoload
-(defun magit-imenu--process-prev-index-position-function ()
-  "Move point to previous process in magit-process buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'."
-  (magit-section--backward-find
-   (lambda ()
-     (eq (oref (magit-current-section) type) 'process))))
-
-;;;###autoload
-(defun magit-imenu--process-extract-index-name-function ()
-  "Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line."
-  (buffer-substring-no-properties (line-beginning-position)
-                                  (line-end-position)))
-
-;;;; Rebase mode
-
-;;;###autoload
-(defun magit-imenu--rebase-prev-index-position-function ()
-  "Move point to previous commit in git-rebase buffer.
-This function is used as a value for
-`imenu-prev-index-position-function'."
-  (catch 'found
-    (while (not (bobp))
-      (git-rebase-backward-line)
-      (when (git-rebase-line-p)
-        (throw 'found t)))))
-
-;;;###autoload
-(defun magit-imenu--rebase-extract-index-name-function ()
-  "Return imenu name for line at point.
-This function is used as a value for
-`imenu-extract-index-name-function'.  Point should be at the
-beginning of the line."
-  (buffer-substring-no-properties (line-beginning-position)
-                                  (line-end-position)))
-
-;;; _
-(provide 'magit-imenu)
-;;; magit-imenu.el ends here
diff --git a/elpa/magit-20181116.1412/magit-imenu.elc b/elpa/magit-20181116.1412/magit-imenu.elc
deleted file mode 100644
index d24bedc..0000000
--- a/elpa/magit-20181116.1412/magit-imenu.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-log.el b/elpa/magit-20181116.1412/magit-log.el
deleted file mode 100644
index 82cad85..0000000
--- a/elpa/magit-20181116.1412/magit-log.el
+++ /dev/null
@@ -1,1754 +0,0 @@
-;;; magit-log.el --- inspect Git history  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for looking at Git logs, including
-;; special logs like reflogs and cherry-logs, as well as for selecting
-;; a commit from a log.
-
-;;; Code:
-
-(require 'magit-core)
-(require 'magit-diff)
-
-(declare-function magit-blob-visit "magit-files" (blob-or-file line))
-(declare-function magit-insert-head-branch-header "magit-status"
-                  (&optional branch))
-(declare-function magit-insert-upstream-branch-header "magit-status"
-                  (&optional branch pull keyword))
-(declare-function magit-read-file-from-rev "magit-files"
-                  (rev prompt &optional default))
-(declare-function magit-show-commit "magit-diff"
-                  (arg1 &optional arg2 arg3 arg4))
-(defvar magit-refs-focus-column-width)
-(defvar magit-refs-margin)
-(defvar magit-refs-show-commit-count)
-(defvar magit-buffer-margin)
-(defvar magit-status-margin)
-(defvar magit-status-sections-hook)
-
-(require 'ansi-color)
-(require 'crm)
-(require 'which-func)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(defvar bookmark-make-record-function)
-
-;;; Options
-;;;; Log Mode
-
-(defgroup magit-log nil
-  "Inspect and manipulate Git history."
-  :link '(info-link "(magit)Logging")
-  :group 'magit-modes)
-
-(defcustom magit-log-mode-hook nil
-  "Hook run after entering Magit-Log mode."
-  :group 'magit-log
-  :type 'hook)
-
-(defcustom magit-log-arguments '("-n256" "--graph" "--decorate")
-  "The log arguments used in `magit-log-mode' buffers."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-git-arguments
-  :group 'magit-log
-  :type '(repeat (string :tag "Argument")))
-
-(defcustom magit-log-remove-graph-args '("--follow" "--grep" "-G" "-S" "-L")
-  "The log arguments that cause the `--graph' argument to be dropped."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-log
-  :type '(repeat (string :tag "Argument"))
-  :options '("--follow" "--grep" "-G" "-S" "-L"))
-
-(defcustom magit-log-revision-headers-format "\
-%+b
-Author:    %aN <%aE>
-Committer: %cN <%cE>"
-  "Additional format string used with the `++header' argument."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-log
-  :type 'string)
-
-(defcustom magit-log-auto-more nil
-  "Insert more log entries automatically when moving past the last entry.
-Only considered when moving past the last entry with
-`magit-goto-*-section' commands."
-  :group 'magit-log
-  :type 'boolean)
-
-(defcustom magit-log-margin '(t age magit-log-margin-width t 18)
-  "Format of the margin in `magit-log-mode' buffers.
-
-The value has the form (INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH).
-
-If INIT is non-nil, then the margin is shown initially.
-STYLE controls how to format the committer date.  It can be one
-  of `age' (to show the age of the commit), `age-abbreviated' (to
-  abbreviate the time unit to a character), or a string (suitable
-  for `format-time-string') to show the actual date.
-WIDTH controls the width of the margin.  This exists for forward
-  compatibility and currently the value should not be changed.
-AUTHOR controls whether the name of the author is also shown by
-  default.
-AUTHOR-WIDTH has to be an integer.  When the name of the author
-  is shown, then this specifies how much space is used to do so."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-log
-  :group 'magit-margin
-  :type magit-log-margin--custom-type
-  :initialize 'magit-custom-initialize-reset
-  :set (apply-partially #'magit-margin-set-variable 'magit-log-mode))
-
-(defcustom magit-log-show-refname-after-summary nil
-  "Whether to show refnames after commit summaries.
-This is useful if you use really long branch names."
-  :package-version '(magit . "2.2.0")
-  :group 'magit-log
-  :type 'boolean)
-
-(defcustom magit-log-highlight-keywords t
-  "Whether to highlight bracketed keywords in commit summaries."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-log
-  :type 'boolean)
-
-(defcustom magit-log-header-line-function 'magit-log-header-line-sentence
-  "Function used to generate text shown in header line of log buffers."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-log
-  :type '(choice (function-item magit-log-header-line-arguments)
-                 (function-item magit-log-header-line-sentence)
-                 function))
-
-(defcustom magit-log-trace-definition-function 'which-function
-  "Function used to determine the function at point.
-This is used by the command `magit-log-trace-definition'."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-log
-  :type '(choice (function-item which-function) function))
-
-(defface magit-log-graph
-  '((((class color) (background light)) :foreground "grey30")
-    (((class color) (background  dark)) :foreground "grey80"))
-  "Face for the graph part of the log output."
-  :group 'magit-faces)
-
-(defface magit-log-author
-  '((((class color) (background light)) :foreground "firebrick")
-    (((class color) (background  dark)) :foreground "tomato"))
-  "Face for the author part of the log output."
-  :group 'magit-faces)
-
-(defface magit-log-date
-  '((((class color) (background light)) :foreground "grey30")
-    (((class color) (background  dark)) :foreground "grey80"))
-  "Face for the date part of the log output."
-  :group 'magit-faces)
-
-(defface magit-header-line-log-select
-  '((t :inherit bold))
-  "Face for the `header-line' in `magit-log-select-mode'."
-  :group 'magit-faces)
-
-;;;; File Log
-
-(defcustom magit-log-buffer-file-locked t
-  "Whether `magit-log-buffer-file' uses a dedicated buffer."
-  :package-version '(magit . "2.7.0")
-  :group 'magit-commands
-  :group 'magit-log
-  :type 'boolean)
-
-;;;; Select Mode
-
-(defcustom magit-log-select-arguments '("-n256" "--graph" "--decorate")
-  "The log arguments used in `magit-log-select-mode' buffers."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-log
-  :type '(repeat (string :tag "Argument")))
-
-(defcustom magit-log-select-show-usage 'both
-  "Whether to show usage information when selecting a commit from a log.
-The message can be shown in the `echo-area' or the `header-line', or in
-`both' places.  If the value isn't one of these symbols, then it should
-be nil, in which case no usage information is shown."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-log
-  :type '(choice (const :tag "in echo-area" echo-area)
-                 (const :tag "in header-line" header-line)
-                 (const :tag "in both places" both)
-                 (const :tag "nowhere")))
-
-(defcustom magit-log-select-margin
-  (list (nth 0 magit-log-margin)
-        (nth 1 magit-log-margin)
-        'magit-log-margin-width t
-        (nth 4 magit-log-margin))
-  "Format of the margin in `magit-log-select-mode' buffers.
-
-The value has the form (INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH).
-
-If INIT is non-nil, then the margin is shown initially.
-STYLE controls how to format the committer date.  It can be one
-  of `age' (to show the age of the commit), `age-abbreviated' (to
-  abbreviate the time unit to a character), or a string (suitable
-  for `format-time-string') to show the actual date.
-WIDTH controls the width of the margin.  This exists for forward
-  compatibility and currently the value should not be changed.
-AUTHOR controls whether the name of the author is also shown by
-  default.
-AUTHOR-WIDTH has to be an integer.  When the name of the author
-  is shown, then this specifies how much space is used to do so."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-log
-  :group 'magit-margin
-  :type magit-log-margin--custom-type
-  :initialize 'magit-custom-initialize-reset
-  :set-after '(magit-log-margin)
-  :set (apply-partially #'magit-margin-set-variable 'magit-log-select-mode))
-
-;;;; Cherry Mode
-
-(defcustom magit-cherry-sections-hook
-  '(magit-insert-cherry-headers
-    magit-insert-cherry-commits)
-  "Hook run to insert sections into the cherry buffer."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-log
-  :type 'hook)
-
-(defcustom magit-cherry-margin
-  (list (nth 0 magit-log-margin)
-        (nth 1 magit-log-margin)
-        'magit-log-margin-width t
-        (nth 4 magit-log-margin))
-  "Format of the margin in `magit-cherry-mode' buffers.
-
-The value has the form (INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH).
-
-If INIT is non-nil, then the margin is shown initially.
-STYLE controls how to format the committer date.  It can be one
-  of `age' (to show the age of the commit), `age-abbreviated' (to
-  abbreviate the time unit to a character), or a string (suitable
-  for `format-time-string') to show the actual date.
-WIDTH controls the width of the margin.  This exists for forward
-  compatibility and currently the value should not be changed.
-AUTHOR controls whether the name of the author is also shown by
-  default.
-AUTHOR-WIDTH has to be an integer.  When the name of the author
-  is shown, then this specifies how much space is used to do so."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-log
-  :group 'magit-margin
-  :type magit-log-margin--custom-type
-  :initialize 'magit-custom-initialize-reset
-  :set-after '(magit-log-margin)
-  :set (apply-partially #'magit-margin-set-variable 'magit-cherry-mode))
-
-;;;; Reflog Mode
-
-(defcustom magit-reflog-arguments '("-n256")
-  "The log arguments used in `magit-reflog-mode' buffers."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-git-arguments
-  :type '(repeat (string :tag "Argument")))
-
-(defcustom magit-reflog-margin
-  (list (nth 0 magit-log-margin)
-        (nth 1 magit-log-margin)
-        'magit-log-margin-width nil
-        (nth 4 magit-log-margin))
-  "Format of the margin in `magit-reflog-mode' buffers.
-
-The value has the form (INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH).
-
-If INIT is non-nil, then the margin is shown initially.
-STYLE controls how to format the committer date.  It can be one
-  of `age' (to show the age of the commit), `age-abbreviated' (to
-  abbreviate the time unit to a character), or a string (suitable
-  for `format-time-string') to show the actual date.
-WIDTH controls the width of the margin.  This exists for forward
-  compatibility and currently the value should not be changed.
-AUTHOR controls whether the name of the author is also shown by
-  default.
-AUTHOR-WIDTH has to be an integer.  When the name of the author
-  is shown, then this specifies how much space is used to do so."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-log
-  :group 'magit-margin
-  :type magit-log-margin--custom-type
-  :initialize 'magit-custom-initialize-reset
-  :set-after '(magit-log-margin)
-  :set (apply-partially #'magit-margin-set-variable 'magit-reflog-mode))
-
-(defface magit-reflog-commit '((t :foreground "green"))
-  "Face for commit commands in reflogs."
-  :group 'magit-faces)
-
-(defface magit-reflog-amend '((t :foreground "magenta"))
-  "Face for amend commands in reflogs."
-  :group 'magit-faces)
-
-(defface magit-reflog-merge '((t :foreground "green"))
-  "Face for merge, checkout and branch commands in reflogs."
-  :group 'magit-faces)
-
-(defface magit-reflog-checkout '((t :foreground "blue"))
-  "Face for checkout commands in reflogs."
-  :group 'magit-faces)
-
-(defface magit-reflog-reset '((t :foreground "red"))
-  "Face for reset commands in reflogs."
-  :group 'magit-faces)
-
-(defface magit-reflog-rebase '((t :foreground "magenta"))
-  "Face for rebase commands in reflogs."
-  :group 'magit-faces)
-
-(defface magit-reflog-cherry-pick '((t :foreground "green"))
-  "Face for cherry-pick commands in reflogs."
-  :group 'magit-faces)
-
-(defface magit-reflog-remote '((t :foreground "cyan"))
-  "Face for pull and clone commands in reflogs."
-  :group 'magit-faces)
-
-(defface magit-reflog-other '((t :foreground "cyan"))
-  "Face for other commands in reflogs."
-  :group 'magit-faces)
-
-;;;; Log Sections
-
-(defcustom magit-log-section-commit-count 10
-  "How many recent commits to show in certain log sections.
-How many recent commits `magit-insert-recent-commits' and
-`magit-insert-unpulled-from-upstream-or-recent' (provided
-the upstream isn't ahead of the current branch) show."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-status
-  :type 'number)
-
-(defcustom magit-log-section-arguments '("-n256" "--decorate")
-  "The log arguments used in buffers that show other things besides logs."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-git-arguments
-  :group 'magit-log
-  :group 'magit-status
-  :type '(repeat (string :tag "Argument")))
-
-;;; Commands
-;;;; Popups
-
-(defvar magit-log-popup
-  '(:variable magit-log-arguments
-    :man-page "git-log"
-    :switches ((?g "Show graph"              "--graph")
-               (?c "Show graph in color"     "--color")
-               (?d "Show refnames"           "--decorate")
-               (?S "Show signatures"         "--show-signature")
-               (?u "Show diffs"              "--patch")
-               (?s "Show diffstats"          "--stat")
-               (?h "Show header"             "++header" magit-log++header)
-               (?r "Show in reverse order"   "--reverse")
-               (?D "Simplify by decoration"  "--simplify-by-decoration")
-               (?f "Follow renames when showing single-file log" "--follow"))
-    :options  ((?n "Limit number of commits" "-n")
-               (?f "Limit to files"          "-- " magit-read-files)
-               (?a "Limit to author"         "--author=")
-               (?o "Order commits by"        "++order=" magit-log-select-order)
-               (?g "Search messages"         "--grep=")
-               (?G "Search changes"          "-G")
-               (?S "Search occurrences"      "-S")
-               (?L "Trace line evolution"    "-L" magit-read-file-trace))
-    :actions  ((?l "Log current"             magit-log-current)
-               (?L "Log local branches"      magit-log-branches)
-               (?r "Reflog current"          magit-reflog-current)
-               (?o "Log other"               magit-log-other)
-               (?b "Log all branches"        magit-log-all-branches)
-               (?O "Reflog other"            magit-reflog-other)
-               (?h "Log HEAD"                magit-log-head)
-               (?a "Log all references"      magit-log-all)
-               (?H "Reflog HEAD"             magit-reflog-head))
-    :default-action magit-log-current
-    :max-action-columns 3))
-
-(defvar magit-log-mode-refresh-popup
-  '(:variable magit-log-arguments
-    :man-page "git-log"
-    :switches ((?g "Show graph"              "--graph")
-               (?c "Show graph in color"     "--color")
-               (?d "Show refnames"           "--decorate")
-               (?S "Show signatures"         "--show-signature")
-               (?u "Show diffs"              "--patch")
-               (?s "Show diffstats"          "--stat")
-               (?r "Show in reverse order"   "--reverse")
-               (?D "Simplify by decoration"  "--simplify-by-decoration")
-               (?f "Follow renames when showing single-file log" "--follow"))
-    :options  ((?n "Limit number of commits" "-n")
-               (?f "Limit to files"          "-- " magit-read-files)
-               (?a "Limit to author"         "--author=")
-               (?o "Order commits by"        "++order=" magit-log-select-order)
-               (?g "Search messages"         "--grep=")
-               (?G "Search changes"          "-G")
-               (?S "Search occurrences"      "-S")
-               (?L "Trace line evolution"    "-L" magit-read-file-trace))
-    :actions  ((?g "Refresh"       magit-log-refresh)
-               (?L "Toggle margin" magit-toggle-margin)
-               (?s "Set defaults"  magit-log-set-default-arguments) nil
-               (?w "Save defaults" magit-log-save-default-arguments))
-    :max-action-columns 2))
-
-(defvar magit-reflog-mode-refresh-popup
-  '(:variable magit-reflog-arguments
-    :man-page "git-reflog"
-    :options  ((?n "Limit number of commits" "-n"))))
-
-(defvar magit-log-refresh-popup
-  '(:variable magit-log-arguments
-    :man-page "git-log"
-    :switches ((?g "Show graph"          "--graph")
-               (?c "Show graph in color" "--color")
-               (?d "Show refnames"       "--decorate"))
-    :options  ((?n "Limit number of commits" "-n")
-               (?o "Order commits by"        "++order=" magit-log-select-order))
-    :actions  ("Refresh"
-               (?g "buffer"                   magit-log-refresh)
-               (?s "buffer and set defaults"  magit-log-set-default-arguments)
-               (?w "buffer and save defaults" magit-log-save-default-arguments)
-               "Margin"
-               (?L "toggle visibility" magit-toggle-margin)
-               (?l "cycle style"       magit-cycle-margin-style)
-               (?d "toggle details"    magit-toggle-margin-details))
-    :max-action-columns 1))
-
-(magit-define-popup-keys-deferred 'magit-log-popup)
-(magit-define-popup-keys-deferred 'magit-log-mode-refresh-popup)
-(magit-define-popup-keys-deferred 'magit-log-refresh-popup)
-
-(defun magit-log-select-order (&rest _ignored)
-  "Set one `--<value>-order' option in Git log.
-This encompasses the options `--author-date-order',
-`--date-order', and `--topo-order'."
-  (magit-read-char-case "Order commits by " t
-    (?t "[t]opography"     "topo")
-    (?a "[a]uthor date"    "author-date")
-    (?c "[c]ommitter date" "date")))
-
-;; This is a dummy procedure used to show help in `magit-log-popup'.
-(defun magit-log++header ()
-  "Insert a header after each revision summary in Git log.
-Customize `magit-log-revision-headers-format' to change this
-header."
-  nil)
-
-(defun magit-log-get-buffer-args ()
-  (cond ((and magit-use-sticky-arguments
-              (derived-mode-p 'magit-log-mode))
-         (list (nth 1 magit-refresh-args)
-               (nth 2 magit-refresh-args)))
-        ((and (eq magit-use-sticky-arguments t)
-              (--when-let (magit-mode-get-buffer 'magit-log-mode)
-                (with-current-buffer it
-                  (list (nth 1 magit-refresh-args)
-                        (nth 2 magit-refresh-args))))))
-        (t
-         (list (default-value 'magit-log-arguments) nil))))
-
-(defun magit-log-arguments (&optional refresh)
-  (cond ((memq magit-current-popup
-               '(magit-log-popup magit-log-refresh-popup))
-         (magit-popup-export-file-args magit-current-popup-args))
-        ((and refresh (not (derived-mode-p 'magit-log-mode)))
-         (list magit-log-section-arguments nil))
-        (t
-         (magit-log-get-buffer-args))))
-
-(defun magit-log-popup (arg)
-  "Popup console for log commands."
-  (interactive "P")
-  (let ((magit-log-refresh-popup
-         (pcase major-mode
-           (`magit-log-mode magit-log-mode-refresh-popup)
-           (_               magit-log-refresh-popup)))
-        (magit-log-arguments
-         (apply #'magit-popup-import-file-args (magit-log-get-buffer-args))))
-    (magit-invoke-popup 'magit-log-popup nil arg)))
-
-;;;###autoload
-(defun magit-log-buffer-file-popup ()
-  "Popup console for log commands.
-
-This is a variant of `magit-log-popup' which shows the same popup
-but which limits the log to the file being visited in the current
-buffer."
-  (interactive)
-  (if-let ((file (magit-file-relative-name)))
-      (let ((magit-log-arguments
-             (magit-popup-import-file-args
-              (if-let ((buffer (magit-mode-get-buffer 'magit-log-mode)))
-                  (with-current-buffer buffer
-                    (nth 2 magit-refresh-args))
-                (default-value 'magit-log-arguments))
-              (list file))))
-        (magit-invoke-popup 'magit-log-popup nil nil))
-    (user-error "Buffer isn't visiting a file")))
-
-(defun magit-log-refresh-popup (arg)
-  "Popup console for changing log arguments in the current buffer."
-  (interactive "P")
-  (magit-log-refresh-assert)
-  (let ((magit-log-refresh-popup
-         (cond ((derived-mode-p 'magit-log-select-mode)
-                magit-log-refresh-popup)
-               ((derived-mode-p 'magit-log-mode)
-                (let ((def (copy-sequence magit-log-refresh-popup)))
-                  (plist-put def :switches (plist-get magit-log-popup :switches))
-                  (plist-put def :options  (plist-get magit-log-popup :options))
-                  def))
-               (t
-                magit-log-refresh-popup)))
-        (magit-log-arguments
-         (cond ((derived-mode-p 'magit-log-select-mode)
-                (cadr magit-refresh-args))
-               ((derived-mode-p 'magit-log-mode)
-                (magit-popup-import-file-args (nth 1 magit-refresh-args)
-                                              (nth 2 magit-refresh-args)))
-               (t
-                magit-log-section-arguments))))
-    (magit-invoke-popup 'magit-log-refresh-popup nil arg)))
-
-(defun magit-read-file-trace (&rest _ignored)
-  (let ((file  (magit-read-file-from-rev "HEAD" "File"))
-        (trace (magit-read-string "Trace")))
-    (concat trace (or (match-string 2 trace) ":") file)))
-
-;;;; Refresh Commands
-
-(defun magit-log-refresh (args files)
-  "Set the local log arguments for the current buffer."
-  (interactive (magit-log-arguments t))
-  (magit-log-refresh-assert)
-  (cond ((derived-mode-p 'magit-log-select-mode)
-         (setcar (cdr magit-refresh-args) args))
-        ((derived-mode-p 'magit-log-mode)
-         (setcdr magit-refresh-args (list args files)))
-        (t
-         (setq-local magit-log-section-arguments args)))
-  (magit-refresh))
-
-(defun magit-log-set-default-arguments (args files)
-  "Set the global log arguments for the current buffer."
-  (interactive (magit-log-arguments t))
-  (magit-log-refresh-assert)
-  (cond ((derived-mode-p 'magit-log-select-mode)
-         (customize-set-variable 'magit-log-select-arguments args)
-         (setcar (cdr magit-refresh-args) args))
-        ((derived-mode-p 'magit-log-mode)
-         (customize-set-variable 'magit-log-arguments args)
-         (setcdr magit-refresh-args (list args files)))
-        (t
-         (customize-set-variable 'magit-log-section-arguments args)
-         (kill-local-variable    'magit-log-section-arguments)))
-  (magit-refresh))
-
-(defun magit-log-save-default-arguments (args files)
-  "Set and save the global log arguments for the current buffer."
-  (interactive (magit-log-arguments t))
-  (magit-log-refresh-assert)
-  (cond ((derived-mode-p 'magit-log-select-mode)
-         (customize-save-variable 'magit-log-select-arguments args)
-         (setcar (cdr magit-refresh-args) args))
-        ((derived-mode-p 'magit-log-mode)
-         (customize-save-variable 'magit-log-arguments args)
-         (setcdr magit-refresh-args (list args files)))
-        (t
-         (customize-save-variable 'magit-log-section-arguments args)
-         (kill-local-variable     'magit-log-section-arguments)))
-  (magit-refresh))
-
-(defun magit-log-refresh-assert ()
-  (cond ((derived-mode-p 'magit-reflog-mode)
-         (user-error "Cannot change log arguments in reflog buffers"))
-        ((derived-mode-p 'magit-cherry-mode)
-         (user-error "Cannot change log arguments in cherry buffers"))))
-
-;;;; Log Commands
-
-(defvar magit-log-read-revs-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map crm-local-completion-map)
-    (define-key map "\s" 'self-insert-command)
-    map))
-
-(defun magit-log-read-revs (&optional use-current)
-  (or (and use-current (--when-let (magit-get-current-branch) (list it)))
-      (let ((collection `(,@(and (file-exists-p (magit-git-dir "FETCH_HEAD"))
-                                 (list "FETCH_HEAD"))
-                          ,@(magit-list-refnames))))
-        (split-string
-         (magit-completing-read-multiple "Log rev,s" collection
-                                         "\\(\\.\\.\\.?\\|[, ]\\)"
-                                         (or (magit-branch-or-commit-at-point)
-                                             (unless use-current
-                                               (magit-get-previous-branch)))
-                                         'magit-revision-history
-                                         magit-log-read-revs-map)
-         "[, ]" t))))
-
-(defun magit-git-log (revs args files)
-  (require 'magit)
-  (magit-mode-setup #'magit-log-mode revs args files)
-  (magit-log-goto-same-commit))
-
-;;;###autoload
-(defun magit-log-current (revs &optional args files)
-  "Show log for the current branch.
-When `HEAD' is detached or with a prefix argument show log for
-one or more revs read from the minibuffer."
-  (interactive (cons (magit-log-read-revs t)
-                     (magit-log-arguments)))
-  (magit-git-log revs args files))
-
-;;;###autoload
-(defun magit-log-other (revs &optional args files)
-  "Show log for one or more revs read from the minibuffer.
-The user can input any revision or revisions separated by a
-space, or even ranges, but only branches and tags, and a
-representation of the commit at point, are available as
-completion candidates."
-  (interactive (cons (magit-log-read-revs)
-                     (magit-log-arguments)))
-  (magit-git-log revs args files))
-
-;;;###autoload
-(defun magit-log-head (&optional args files)
-  "Show log for `HEAD'."
-  (interactive (magit-log-arguments))
-  (magit-git-log (list "HEAD") args files))
-
-;;;###autoload
-(defun magit-log-branches (&optional args files)
-  "Show log for all local branches and `HEAD'."
-  (interactive (magit-log-arguments))
-  (magit-git-log (if (magit-get-current-branch)
-                 (list "--branches")
-               (list "HEAD" "--branches"))
-             args files))
-
-;;;###autoload
-(defun magit-log-all-branches (&optional args files)
-  "Show log for all local and remote branches and `HEAD'."
-  (interactive (magit-log-arguments))
-  (magit-git-log (if (magit-get-current-branch)
-                     (list "--branches" "--remotes")
-                   (list "HEAD" "--branches" "--remotes"))
-                 args files))
-
-;;;###autoload
-(defun magit-log-all (&optional args files)
-  "Show log for all references and `HEAD'."
-  (interactive (magit-log-arguments))
-  (magit-git-log (if (magit-get-current-branch)
-                     (list "--all")
-                   (list "HEAD" "--all"))
-                 args files))
-
-;;;###autoload
-(defun magit-log-buffer-file (&optional follow beg end)
-  "Show log for the blob or file visited in the current buffer.
-With a prefix argument or when `--follow' is part of
-`magit-log-arguments', then follow renames.  When the region is
-active, restrict the log to the lines that the region touches."
-  (interactive
-   (cons current-prefix-arg
-         (and (region-active-p)
-              (magit-file-relative-name)
-              (save-restriction
-                (widen)
-                (list (line-number-at-pos (region-beginning))
-                      (line-number-at-pos
-                       (let ((end (region-end)))
-                         (if (char-after end)
-                             end
-                           ;; Ensure that we don't get the line number
-                           ;; of a trailing newline.
-                           (1- end)))))))))
-  (require 'magit)
-  (if-let ((file (magit-file-relative-name)))
-      (magit-mode-setup-internal
-       #'magit-log-mode
-       (list (list (or magit-buffer-refname
-                       (magit-get-current-branch)
-                       "HEAD"))
-             (let ((args (car (magit-log-arguments))))
-               (when (and follow (not (member "--follow" args)))
-                 (push "--follow" args))
-               (when (and (file-regular-p
-                           (expand-file-name file (magit-toplevel)))
-                          beg end)
-                 (setq args (cons (format "-L%s,%s:%s" beg end file)
-                                  (cl-delete "-L" args :test
-                                             'string-prefix-p)))
-                 (setq file nil))
-               args)
-             (and file (list file)))
-       magit-log-buffer-file-locked)
-    (user-error "Buffer isn't visiting a file"))
-  (magit-log-goto-same-commit))
-
-;;;###autoload
-(defun magit-log-trace-definition (file fn rev)
-  "Show log for the definition at point."
-  (interactive (list (or (magit-file-relative-name)
-                         (user-error "Buffer isn't visiting a file"))
-                     (funcall magit-log-trace-definition-function)
-                     (or magit-buffer-refname
-                         (magit-get-current-branch)
-                         "HEAD")))
-  (require 'magit)
-  (magit-mode-setup-internal
-   #'magit-log-mode
-   (list (list rev)
-         (cons (format "-L:%s:%s" (regexp-quote fn) file)
-               (cl-delete "-L" (car (magit-log-arguments))
-                          :test 'string-prefix-p))
-         nil)
-   magit-log-buffer-file-locked)
-  (magit-log-goto-same-commit))
-
-(defun magit-diff-trace-definition ()
-  "Show log for the definition at point in a diff."
-  (interactive)
-  (let (buf pos)
-    (save-window-excursion
-      (call-interactively #'magit-diff-visit-file)
-      (setq buf (current-buffer))
-      (setq pos (point)))
-    (save-excursion
-      (with-current-buffer buf
-        (goto-char pos)
-        (call-interactively #'magit-log-trace-definition)))))
-
-;;;###autoload
-(defun magit-log-merged (commit branch &optional args files)
-  "Show log for the merge of COMMIT into BRANCH.
-More precisely, find merge commit M that brought COMMIT into
-BRANCH, and show the log of the range \"M^..M\".  This command
-requires git-when-merged, which is available from
-https://github.com/mhagger/git-when-merged."
-  (interactive
-   (append (let ((commit (magit-read-branch-or-commit "Commit")))
-             (list commit
-                   (magit-read-other-branch "Merged into" commit)))
-           (magit-log-arguments)))
-  (unless (executable-find "git-when-merged")
-    (user-error "This command requires git-when-merged (%s)"
-                "https://github.com/mhagger/git-when-merged"))
-  (magit-git-log
-   (list (or (magit-git-string "when-merged" "--show-branch" commit branch)
-             (user-error "Could not find when %s was merged into %s"
-                         commit branch)))
-   args files))
-
-(defun magit-git-reflog (ref args)
-  (require 'magit)
-  (magit-mode-setup #'magit-reflog-mode ref args))
-
-;;;###autoload
-(defun magit-reflog-current (args)
-  "Display the reflog of the current branch."
-  (interactive (list magit-reflog-arguments))
-  (magit-git-reflog (magit-get-current-branch) args))
-
-;;;###autoload
-(defun magit-reflog-other (ref args)
-  "Display the reflog of a branch or another ref."
-  (interactive (list (magit-read-local-branch-or-ref "Show reflog for")
-                     magit-reflog-arguments))
-  (magit-git-reflog ref args))
-
-;;;###autoload
-(defun magit-reflog-head (args)
-  "Display the `HEAD' reflog."
-  (interactive (list magit-reflog-arguments))
-  (magit-git-reflog "HEAD" args))
-
-;;;; Limit Commands
-
-(defun magit-log-toggle-commit-limit ()
-  "Toggle the number of commits the current log buffer is limited to.
-If the number of commits is currently limited, then remove that
-limit.  Otherwise set it to 256."
-  (interactive)
-  (magit-log-set-commit-limit (lambda (&rest _) nil)))
-
-(defun magit-log-double-commit-limit ()
-  "Double the number of commits the current log buffer is limited to."
-  (interactive)
-  (magit-log-set-commit-limit '*))
-
-(defun magit-log-half-commit-limit ()
-  "Half the number of commits the current log buffer is limited to."
-  (interactive)
-  (magit-log-set-commit-limit '/))
-
-(defun magit-log-set-commit-limit (fn)
-  (let* ((val (car (magit-log-arguments t)))
-         (arg (--first (string-match "^-n\\([0-9]+\\)?$" it) val))
-         (num (and arg (string-to-number (match-string 1 arg))))
-         (num (if num (funcall fn num 2) 256)))
-    (setq val (delete arg val))
-    (setcar (cdr magit-refresh-args)
-            (if (and num (> num 0))
-                (cons (format "-n%i" num) val)
-              val)))
-  (magit-refresh))
-
-(defun magit-log-get-commit-limit ()
-  (--when-let (--first (string-match "^-n\\([0-9]+\\)?$" it)
-                       (car (magit-log-arguments t)))
-    (string-to-number (match-string 1 it))))
-
-;;;; Other Commands
-
-(defun magit-log-bury-buffer (&optional arg)
-  "Bury the current buffer or the revision buffer in the same frame.
-Like `magit-mode-bury-buffer' (which see) but with a negative
-prefix argument instead bury the revision buffer, provided it
-is displayed in the current frame."
-  (interactive "p")
-  (if (< arg 0)
-      (let* ((buf (magit-mode-get-buffer 'magit-revision-mode))
-             (win (and buf (get-buffer-window buf (selected-frame)))))
-        (if win
-            (with-selected-window win
-              (with-current-buffer buf
-                (magit-mode-bury-buffer (> (abs arg) 1))))
-          (user-error "No revision buffer in this frame")))
-    (magit-mode-bury-buffer (> arg 1))))
-
-;;;###autoload
-(defun magit-log-move-to-parent (&optional n)
-  "Move to the Nth parent of the current commit."
-  (interactive "p")
-  (when (derived-mode-p 'magit-log-mode)
-    (when (magit-section-match 'commit)
-      (let* ((section (magit-current-section))
-             (parent-rev (format "%s^%s" (oref section value) (or n 1))))
-        (if-let ((parent-hash (magit-rev-parse "--short" parent-rev)))
-            (if-let ((parent (--first (equal (oref section value)
-                                             parent-hash)
-                                      (magit-section-siblings section 'next))))
-                (magit-section-goto parent)
-              (user-error
-               (substitute-command-keys
-                (concat "Parent " parent-hash " not found.  Try typing "
-                        "\\[magit-log-double-commit-limit] first"))))
-          (user-error "Parent %s does not exist" parent-rev))))))
-
-;;; Log Mode
-
-(defvar magit-log-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-mode-map)
-    (define-key map "\C-c\C-b" 'magit-go-backward)
-    (define-key map "\C-c\C-f" 'magit-go-forward)
-    (define-key map "\C-c\C-n" 'magit-log-move-to-parent)
-    (define-key map "=" 'magit-log-toggle-commit-limit)
-    (define-key map "+" 'magit-log-double-commit-limit)
-    (define-key map "-" 'magit-log-half-commit-limit)
-    (define-key map "q" 'magit-log-bury-buffer)
-    map)
-  "Keymap for `magit-log-mode'.")
-
-(define-derived-mode magit-log-mode magit-mode "Magit Log"
-  "Mode for looking at Git log.
-
-This mode is documented in info node `(magit)Log Buffer'.
-
-\\<magit-mode-map>\
-Type \\[magit-refresh] to refresh the current buffer.
-Type \\[magit-visit-thing] or \\[magit-diff-show-or-scroll-up] \
-to visit the commit at point.
-
-Type \\[magit-branch-popup] to see available branch commands.
-Type \\[magit-merge-popup] to merge the branch or commit at point.
-Type \\[magit-cherry-pick-popup] to apply the commit at point.
-Type \\[magit-reset] to reset `HEAD' to the commit at point.
-
-\\{magit-log-mode-map}"
-  :group 'magit-log
-  (hack-dir-local-variables-non-file-buffer)
-  (setq imenu-prev-index-position-function
-        'magit-imenu--log-prev-index-position-function)
-  (setq imenu-extract-index-name-function
-        'magit-imenu--log-extract-index-name-function)
-  (setq-local bookmark-make-record-function
-              'magit-bookmark--log-make-record))
-
-(defvar magit-log-disable-graph-hack-args
-  '("-G" "--grep" "--author")
-  "Arguments which disable the graph speedup hack.")
-
-(defun magit-log-refresh-buffer (revs args files)
-  (magit-set-header-line-format
-   (funcall magit-log-header-line-function revs args files))
-  (if (= (length files) 1)
-      (unless (magit-file-tracked-p (car files))
-        (setq args (cons "--full-history" args)))
-    (setq args (remove "--follow" args)))
-  (when (--any-p (string-match-p
-                  (concat "^" (regexp-opt magit-log-remove-graph-args)) it)
-                 args)
-    (setq args (remove "--graph" args)))
-  (unless (member "--graph" args)
-    (setq args (remove "--color" args)))
-  (when-let ((limit (magit-log-get-commit-limit))
-             (limit (* 2 limit)) ; increase odds for complete graph
-             (count (and (= (length revs) 1)
-                         (> limit 1024) ; otherwise it's fast enough
-                         (setq revs (car revs))
-                         (not (string-match-p "\\.\\." revs))
-                         (not (member revs '("--all" "--branches")))
-                         (-none-p (lambda (arg)
-                                    (--any-p (string-prefix-p it arg)
-                                             magit-log-disable-graph-hack-args))
-                                  args)
-                         (magit-git-string "rev-list" "--count"
-                                           "--first-parent" args revs))))
-    (setq revs (if (< (string-to-number count) limit)
-                   revs
-                 (format "%s~%s..%s" revs limit revs))))
-  (magit-insert-section (logbuf)
-    (magit-insert-log revs args files)))
-
-(defun magit-log-header-line-arguments (revs args files)
-  "Return string describing some of the used arguments."
-  (mapconcat (lambda (arg)
-               (if (string-match-p " " arg)
-                   (prin1 arg)
-                 arg))
-             `("git" "log" ,@args ,@revs "--" ,@files)
-             " "))
-
-(defun magit-log-header-line-sentence (revs args files)
-  "Return string containing all arguments."
-  (concat "Commits in "
-          (mapconcat #'identity revs " ")
-          (and (member "--reverse" args)
-               " in reverse")
-          (and files (concat " touching "
-                             (mapconcat 'identity files " ")))
-          (--some (and (string-prefix-p "-L" it)
-                       (concat " " it))
-                  args)))
-
-(defun magit-insert-log (revs &optional args files)
-  "Insert a log section.
-Do not add this to a hook variable."
-  (let ((magit-git-global-arguments
-         (remove "--literal-pathspecs" magit-git-global-arguments)))
-    (magit-git-wash (apply-partially #'magit-log-wash-log 'log)
-      "log"
-      (format "--format=%s%%h%s%%x00%s%%x00%%aN%%x00%%at%%x00%%s%s"
-              (if (and (member "--left-right" args)
-                       (not (member "--graph" args)))
-                  "%m "
-                "")
-              (if (member "--decorate" args) "%d" "")
-              (if (member "--show-signature" args)
-                  (progn (setq args (remove "--show-signature" args)) "%G?")
-                "")
-              (if (member "++header" args)
-                  (if (member "--graph" (setq args (remove "++header" args)))
-                      (concat "\n" magit-log-revision-headers-format "\n")
-                    (concat "\n" magit-log-revision-headers-format "\n"))
-                ""))
-      (progn
-        (--when-let (--first (string-match "^\\+\\+order=\\(.+\\)$" it) args)
-          (setq args (cons (format "--%s-order" (match-string 1 it))
-                           (remove it args))))
-        (when (member "--decorate" args)
-          (setq args (cons "--decorate=full" (remove "--decorate" args))))
-        (when (member "--reverse" args)
-          (setq args (remove "--graph" args)))
-        args)
-      "--use-mailmap" "--no-prefix" revs "--" files)))
-
-(defvar magit-commit-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing] 'magit-show-commit)
-    (define-key map "a" 'magit-cherry-apply)
-    map)
-  "Keymap for `commit' sections.")
-
-(defvar magit-module-commit-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing] 'magit-show-commit)
-    map)
-  "Keymap for `module-commit' sections.")
-
-(defconst magit-log-heading-re
-  (concat "^"
-          "\\(?4:[-_/|\\*o<>. ]*\\)"               ; graph
-          "\\(?1:[0-9a-fA-F]+\\)"                  ; sha1
-          "\\(?3:[^\0\n]+)\\)?\0"                  ; refs
-          "\\(?7:[BGUXYREN]\\)?\0"                 ; gpg
-          "\\(?5:[^\0\n]*\\)\0"                    ; author
-          ;; Note: Date is optional because, prior to Git v2.19.0,
-          ;; `git rebase -i --root` corrupts the root's author date.
-          "\\(?6:[^\0\n]*\\)\0"                    ; date
-          "\\(?2:.*\\)$"))                         ; msg
-
-(defconst magit-log-cherry-re
-  (concat "^"
-          "\\(?8:[-+]\\) "                         ; cherry
-          "\\(?1:[0-9a-fA-F]+\\) "                 ; sha1
-          "\\(?2:.*\\)$"))                         ; msg
-
-(defconst magit-log-module-re
-  (concat "^"
-          "\\(?:\\(?11:[<>]\\) \\)?"               ; side
-          "\\(?1:[0-9a-fA-F]+\\) "                 ; sha1
-          "\\(?2:.*\\)$"))                         ; msg
-
-(defconst magit-log-bisect-vis-re
-  (concat "^"
-          "\\(?4:[-_/|\\*o<>. ]*\\)"               ; graph
-          "\\(?1:[0-9a-fA-F]+\\)"                  ; sha1
-          "\\(?3:[^\0\n]+)\\)?\0"                  ; refs
-          "\\(?2:.*\\)$"))                         ; msg
-
-(defconst magit-log-bisect-log-re
-  (concat "^# "
-          "\\(?3:bad:\\|skip:\\|good:\\) "         ; "refs"
-          "\\[\\(?1:[^]\n]+\\)\\] "                ; sha1
-          "\\(?2:.*\\)$"))                         ; msg
-
-(defconst magit-log-reflog-re
-  (concat "^"
-          "\\(?1:[^\0\n]+\\)\0"                    ; sha1
-          "\\(?5:[^\0\n]*\\)\0"                    ; author
-          "\\(?:\\(?:[^@\n]+@{\\(?6:[^}\n]+\\)}\0" ; date
-          "\\(?10:merge \\|autosave \\|restart \\|[^:\n]+: \\)?" ; refsub
-          "\\(?2:.*\\)?\\)\\|\0\\)$"))             ; msg
-
-(defconst magit-reflog-subject-re
-  (concat "\\(?1:[^ ]+\\) ?"                       ; command
-          "\\(?2:\\(?: ?-[^ ]+\\)+\\)?"            ; option
-          "\\(?: ?(\\(?3:[^)]+\\))\\)?"))          ; type
-
-(defconst magit-log-stash-re
-  (concat "^"
-          "\\(?1:[^\0\n]+\\)\0"                    ; "sha1"
-          "\\(?5:[^\0\n]*\\)\0"                    ; author
-          "\\(?6:[^\0\n]+\\)\0"                    ; date
-          "\\(?2:.*\\)$"))                         ; msg
-
-(defvar magit-log-count nil)
-
-(defvar magit-log-format-message-function 'magit-log-propertize-keywords)
-
-(defun magit-log-wash-log (style args)
-  (setq args (-flatten args))
-  (when (and (member "--graph" args)
-             (member "--color" args))
-    (let ((ansi-color-apply-face-function
-           (lambda (beg end face)
-             (put-text-property beg end 'font-lock-face
-                                (or face 'magit-log-graph)))))
-      (ansi-color-apply-on-region (point-min) (point-max))))
-  (when (eq style 'cherry)
-    (reverse-region (point-min) (point-max)))
-  (let ((magit-log-count 0))
-    (magit-wash-sequence (apply-partially 'magit-log-wash-rev style
-                                          (magit-abbrev-length)))
-    (if (derived-mode-p 'magit-log-mode)
-        (when (eq magit-log-count (magit-log-get-commit-limit))
-          (magit-insert-section (longer)
-            (insert-text-button
-             (substitute-command-keys
-              (format "Type \\<%s>\\[%s] to show more history"
-                      'magit-log-mode-map
-                      'magit-log-double-commit-limit))
-             'action (lambda (_button)
-                       (magit-log-double-commit-limit))
-             'follow-link t
-             'mouse-face 'magit-section-highlight)))
-      (insert ?\n))))
-
-(cl-defun magit-log-wash-rev (style abbrev)
-  (when (derived-mode-p 'magit-log-mode)
-    (cl-incf magit-log-count))
-  (looking-at (pcase style
-                (`log        magit-log-heading-re)
-                (`cherry     magit-log-cherry-re)
-                (`module     magit-log-module-re)
-                (`reflog     magit-log-reflog-re)
-                (`stash      magit-log-stash-re)
-                (`bisect-vis magit-log-bisect-vis-re)
-                (`bisect-log magit-log-bisect-log-re)))
-  (magit-bind-match-strings
-      (hash msg refs graph author date gpg cherry _ refsub side) nil
-    (setq msg (substring-no-properties msg))
-    (when refs
-      (setq refs (substring-no-properties refs)))
-    (let ((align (or (eq style 'cherry)
-                     (not (member "--stat" (cadr magit-refresh-args)))))
-          (non-graph-re (if (eq style 'bisect-vis)
-                            magit-log-bisect-vis-re
-                          magit-log-heading-re)))
-      (magit-delete-line)
-      ;; If the reflog entries have been pruned, the output of `git
-      ;; reflog show' includes a partial line that refers to the hash
-      ;; of the youngest expired reflog entry.
-      (when (and (eq style 'reflog) (not date))
-        (cl-return-from magit-log-wash-rev t))
-      (magit-insert-section section (commit hash)
-        (pcase style
-          (`stash      (oset section type 'stash))
-          (`module     (oset section type 'module-commit))
-          (`bisect-log (setq hash (magit-rev-parse "--short" hash))))
-        (when cherry
-          (when (and (derived-mode-p 'magit-refs-mode)
-                     magit-refs-show-commit-count)
-            (insert (make-string (1- magit-refs-focus-column-width) ?\s)))
-          (insert (propertize cherry 'face (if (string= cherry "-")
-                                               'magit-cherry-equivalent
-                                             'magit-cherry-unmatched)))
-          (insert ?\s))
-        (when side
-          (insert (propertize side 'face (if (string= side "<")
-                                             'magit-cherry-equivalent
-                                           'magit-cherry-unmatched)))
-          (insert ?\s))
-        (when align
-          (insert (propertize hash 'face 'magit-hash) ?\s))
-        (when graph
-          (insert graph))
-        (unless align
-          (insert (propertize hash 'face 'magit-hash) ?\s))
-        (when (and refs (not magit-log-show-refname-after-summary))
-          (insert (magit-format-ref-labels refs) ?\s))
-        (when (eq style 'reflog)
-          (insert (format "%-2s " (1- magit-log-count)))
-          (when refsub
-            (insert (magit-reflog-format-subject
-                     (substring refsub 0 (if (string-match-p ":" refsub) -2 -1))))))
-        (when msg
-          (when gpg
-            (setq msg (propertize msg 'face
-                                  (pcase (aref gpg 0)
-                                    (?G 'magit-signature-good)
-                                    (?B 'magit-signature-bad)
-                                    (?U 'magit-signature-untrusted)
-                                    (?X 'magit-signature-expired)
-                                    (?Y 'magit-signature-expired-key)
-                                    (?R 'magit-signature-revoked)
-                                    (?E 'magit-signature-error)))))
-          (insert (funcall magit-log-format-message-function hash msg)))
-        (when (and refs magit-log-show-refname-after-summary)
-          (insert ?\s)
-          (insert (magit-format-ref-labels refs)))
-        (insert ?\n)
-        (when (memq style '(log reflog stash))
-          (goto-char (line-beginning-position))
-          (when (and refsub
-                     (string-match "\\`\\([^ ]\\) \\+\\(..\\)\\(..\\)" date))
-            (setq date (+ (string-to-number (match-string 1 date))
-                          (* (string-to-number (match-string 2 date)) 60 60)
-                          (* (string-to-number (match-string 3 date)) 60))))
-          (save-excursion
-            (backward-char)
-            (magit-log-format-margin hash author date)))
-        (when (and (eq style 'cherry)
-                   (magit-buffer-margin-p))
-          (save-excursion
-            (backward-char)
-            (apply #'magit-log-format-margin hash
-                   (split-string (magit-rev-format "%aN%x00%ct" hash) "\0"))))
-        (when (and graph
-                   (not (eobp))
-                   (not (looking-at non-graph-re)))
-          (when (looking-at "")
-            (magit-insert-heading)
-            (delete-char 1)
-            (magit-insert-section (commit-header)
-              (forward-line)
-              (magit-insert-heading)
-              (re-search-forward "")
-              (backward-delete-char 1)
-              (forward-char)
-              (insert ?\n))
-            (delete-char 1))
-          (if (looking-at "^\\(---\\|\n\s\\|\ndiff\\)")
-              (let ((limit (save-excursion
-                             (and (re-search-forward non-graph-re nil t)
-                                  (match-beginning 0)))))
-                (unless (oref magit-insert-section--current content)
-                  (magit-insert-heading))
-                (delete-char (if (looking-at "\n") 1 4))
-                (magit-diff-wash-diffs (list "--stat") limit))
-            (when align
-              (setq align (make-string (1+ abbrev) ? )))
-            (when (and (not (eobp)) (not (looking-at non-graph-re)))
-              (when align
-                (setq align (make-string (1+ abbrev) ? )))
-              (while (and (not (eobp)) (not (looking-at non-graph-re)))
-                (when align
-                  (save-excursion (insert align)))
-                (magit-make-margin-overlay)
-                (forward-line))
-              ;; When `--format' is used and its value isn't one of the
-              ;; predefined formats, then `git-log' does not insert a
-              ;; separator line.
-              (save-excursion
-                (forward-line -1)
-                (looking-at "[-_/|\\*o<>. ]*"))
-              (setq graph (match-string 0))
-              (unless (string-match-p "[/\\]" graph)
-                (insert graph ?\n))))))))
-  t)
-
-(defun magit-log-propertize-keywords (_rev msg)
-  (let ((start 0))
-    (when (string-match "^\\(squash\\|fixup\\)! " msg start)
-      (setq start (match-end 0))
-      (put-text-property (match-beginning 0)
-                         (match-end 0)
-                         'face 'magit-keyword-squash msg))
-    (while (string-match "\\[[^[]*\\]" msg start)
-      (setq start (match-end 0))
-      (when magit-log-highlight-keywords
-        (put-text-property (match-beginning 0)
-                           (match-end 0)
-                           'face 'magit-keyword msg))))
-  msg)
-
-(defun magit-log-maybe-show-more-commits (section)
-  "When point is at the end of a log buffer, insert more commits.
-
-Log buffers end with a button \"Type + to show more history\".
-When the use of a section movement command puts point on that
-button, then automatically show more commits, without the user
-having to press \"+\".
-
-This function is called by `magit-section-movement-hook' and
-exists mostly for backward compatibility reasons."
-  (when (and (eq (oref section type) 'longer)
-             magit-log-auto-more)
-    (magit-log-double-commit-limit)
-    (forward-line -1)
-    (magit-section-forward)))
-
-(defvar magit--update-revision-buffer nil)
-
-(defun magit-log-maybe-update-revision-buffer (&optional _)
-  "When moving in the log buffer, update the revision buffer.
-If there is no revision buffer in the same frame, then do nothing."
-  (when (derived-mode-p 'magit-log-mode)
-    (magit-log-maybe-update-revision-buffer-1)))
-
-(defun magit-log-maybe-update-revision-buffer-1 ()
-  (unless magit--update-revision-buffer
-    (when-let ((commit (magit-section-value-if 'commit))
-               (buffer (magit-mode-get-buffer 'magit-revision-mode nil t)))
-      (setq magit--update-revision-buffer (list commit buffer))
-      (run-with-idle-timer
-       magit-update-other-window-delay nil
-       (let ((args (magit-show-commit--arguments)))
-         (lambda ()
-           (pcase-let ((`(,rev ,buf) magit--update-revision-buffer))
-             (setq magit--update-revision-buffer nil)
-             (when (buffer-live-p buf)
-               (let ((magit-display-buffer-noselect t))
-                 (apply #'magit-show-commit rev args))))
-           (setq magit--update-revision-buffer nil)))))))
-
-(defvar magit--update-blob-buffer nil)
-
-(defun magit-log-maybe-update-blob-buffer (&optional _)
-  "When moving in the log buffer, update the blob buffer.
-If there is no blob buffer in the same frame, then do nothing."
-  (when (derived-mode-p 'magit-log-mode)
-    (magit-log-maybe-update-blob-buffer-1)))
-
-(defun magit-log-maybe-update-blob-buffer-1 ()
-  (unless magit--update-revision-buffer
-    (when-let ((commit (magit-section-value-if 'commit))
-               (buffer (--first (with-current-buffer it magit-buffer-revision)
-                                (mapcar #'window-buffer (window-list)))))
-        (setq magit--update-blob-buffer (list commit buffer))
-        (run-with-idle-timer
-         magit-update-other-window-delay nil
-         (lambda ()
-           (pcase-let ((`(,rev ,buf) magit--update-blob-buffer))
-             (setq magit--update-blob-buffer nil)
-             (when (buffer-live-p buf)
-               (save-excursion
-                 (with-selected-window (get-buffer-window buf)
-                   (with-current-buffer buf
-                     (magit-blob-visit (list (magit-rev-parse rev)
-                                             (magit-file-relative-name
-                                              magit-buffer-file-name))
-                                       (line-number-at-pos))))))))))))
-
-(defun magit-log-goto-same-commit (&optional default)
-  (let ((prev magit-previous-section))
-    (when-let ((rev (cond ((and prev (magit-section-match 'commit prev))
-                           (oref prev value))
-                          ((and prev (magit-section-match 'branch prev))
-                           (magit-rev-format "%h" (oref prev value)))
-                          (default (magit-rev-format "%h" default))))
-               (same (--first (equal (oref it value) rev)
-                              (oref magit-root-section children))))
-      (goto-char (oref same start)))))
-
-;;; Log Margin
-
-(defvar-local magit-log-margin-show-shortstat nil)
-
-(defun magit-toggle-log-margin-style ()
-  "Toggle between the regular and the shortstat margin style.
-The shortstat style is experimental and rather slow."
-  (interactive)
-  (setq magit-log-margin-show-shortstat
-        (not magit-log-margin-show-shortstat))
-  (magit-set-buffer-margin nil t))
-
-(defun magit-log-format-margin (rev author date)
-  (when-let ((option (magit-margin-option)))
-    (if magit-log-margin-show-shortstat
-        (magit-log-format-shortstat-margin rev)
-      (pcase-let ((`(,_ ,style ,width ,details ,details-width)
-                   (or magit-buffer-margin
-                       (symbol-value option))))
-        (magit-make-margin-overlay
-         (concat (and details
-                      (concat (propertize (truncate-string-to-width
-                                           (or author "")
-                                           details-width
-                                           nil ?\s (make-string 1 magit-ellipsis))
-                                          'face 'magit-log-author)
-                              " "))
-                 (propertize
-                  (if (stringp style)
-                      (format-time-string
-                       style
-                       (seconds-to-time (string-to-number date)))
-                    (pcase-let* ((abbr (eq style 'age-abbreviated))
-                                 (`(,cnt ,unit) (magit--age date abbr)))
-                      (format (format (if abbr "%%2i%%-%ic" "%%2i %%-%is")
-                                      (- width (if details (1+ details-width) 0)))
-                              cnt unit)))
-                  'face 'magit-log-date)))))))
-
-(defun magit-log-format-shortstat-margin (rev)
-  (magit-make-margin-overlay
-   (if-let ((line (and rev (magit-git-string
-                            "show" "--format=" "--shortstat" rev))))
-       (if (string-match "\
-\\([0-9]+\\) files? changed, \
-\\(?:\\([0-9]+\\) insertions?(\\+)\\)?\
-\\(?:\\(?:, \\)?\\([0-9]+\\) deletions?(-)\\)?\\'" line)
-           (magit-bind-match-strings (files add del) line
-             (format
-              "%5s %5s%4s"
-              (if add
-                  (propertize (format "%s+" add) 'face 'magit-diffstat-added)
-                "")
-              (if del
-                  (propertize (format "%s-" del) 'face 'magit-diffstat-removed)
-                "")
-              files))
-         "")
-     "")))
-
-(defun magit-log-margin-width (style details details-width)
-  (if magit-log-margin-show-shortstat
-      16
-    (+ (if details (1+ details-width) 0)
-       (if (stringp style)
-           (length (format-time-string style))
-         (+ 2 ; two digits
-            1 ; trailing space
-            (if (eq style 'age-abbreviated)
-                1  ; single character
-              (+ 1 ; gap after digits
-                 (apply #'max (--map (max (length (nth 1 it))
-                                          (length (nth 2 it)))
-                                     magit--age-spec)))))))))
-
-;;; Select Mode
-
-(defvar magit-log-select-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-log-mode-map)
-    (define-key map "\C-c\C-b" 'undefined)
-    (define-key map "\C-c\C-f" 'undefined)
-    (define-key map "."        'magit-log-select-pick)
-    (define-key map "e"        'magit-log-select-pick)
-    (define-key map "\C-c\C-c" 'magit-log-select-pick)
-    (define-key map "q"        'magit-log-select-quit)
-    (define-key map "\C-c\C-k" 'magit-log-select-quit)
-    map)
-  "Keymap for `magit-log-select-mode'.")
-
-(put 'magit-log-select-pick :advertised-binding [?\C-c ?\C-c])
-(put 'magit-log-select-quit :advertised-binding [?\C-c ?\C-k])
-
-(define-derived-mode magit-log-select-mode magit-log-mode "Magit Select"
-  "Mode for selecting a commit from history.
-
-This mode is documented in info node `(magit)Select from Log'.
-
-\\<magit-mode-map>\
-Type \\[magit-refresh] to refresh the current buffer.
-Type \\[magit-visit-thing] or \\[magit-diff-show-or-scroll-up] \
-to visit the commit at point.
-
-\\<magit-log-select-mode-map>\
-Type \\[magit-log-select-pick] to select the commit at point.
-Type \\[magit-log-select-quit] to abort without selecting a commit."
-  :group 'magit-log
-  (hack-dir-local-variables-non-file-buffer))
-
-(defun magit-log-select-refresh-buffer (rev args)
-  (magit-insert-section (logbuf)
-    (magit-insert-log rev args)))
-
-(defvar-local magit-log-select-pick-function nil)
-(defvar-local magit-log-select-quit-function nil)
-
-(defun magit-log-select (pick &optional msg quit branch args initial)
-  (declare (indent defun))
-  (magit-mode-setup #'magit-log-select-mode
-                    (or branch (magit-get-current-branch) "HEAD")
-                    (append args magit-log-select-arguments))
-  (magit-log-goto-same-commit initial)
-  (setq magit-log-select-pick-function pick)
-  (setq magit-log-select-quit-function quit)
-  (when magit-log-select-show-usage
-    (let ((pick (propertize (substitute-command-keys
-                             "\\[magit-log-select-pick]")
-                            'face
-                            'magit-header-line-key))
-          (quit (propertize (substitute-command-keys
-                             "\\[magit-log-select-quit]")
-                            'face
-                            'magit-header-line-key)))
-      (setq msg (format-spec
-                 (if msg
-                     (if (string-suffix-p "," msg)
-                         (concat msg " or %q to abort")
-                       msg)
-                   "Type %p to select commit at point, or %q to abort")
-                 `((?p . ,pick)
-                   (?q . ,quit)))))
-    (add-face-text-property 0 (length msg) 'magit-header-line-log-select t msg)
-    (when (memq magit-log-select-show-usage '(both header-line))
-      (magit-set-header-line-format msg))
-    (when (memq magit-log-select-show-usage '(both echo-area))
-      (message "%s" (substring-no-properties msg)))))
-
-(defun magit-log-select-pick ()
-  "Select the commit at point and act on it.
-Call `magit-log-select-pick-function' with the selected
-commit as argument."
-  (interactive)
-  (let ((fun magit-log-select-pick-function)
-        (rev (magit-commit-at-point)))
-    (magit-mode-bury-buffer 'kill)
-    (funcall fun rev)))
-
-(defun magit-log-select-quit ()
-  "Abort selecting a commit, don't act on any commit."
-  (interactive)
-  (magit-mode-bury-buffer 'kill)
-  (when magit-log-select-quit-function
-    (funcall magit-log-select-quit-function)))
-
-;;; Cherry Mode
-
-(defvar magit-cherry-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-mode-map)
-    (define-key map "q" 'magit-log-bury-buffer)
-    (define-key map "L" 'magit-margin-popup)
-    map)
-  "Keymap for `magit-cherry-mode'.")
-
-(define-derived-mode magit-cherry-mode magit-mode "Magit Cherry"
-  "Mode for looking at commits not merged upstream.
-
-\\<magit-mode-map>\
-Type \\[magit-refresh] to refresh the current buffer.
-Type \\[magit-visit-thing] or \\[magit-diff-show-or-scroll-up] \
-to visit the commit at point.
-
-Type \\[magit-cherry-pick-popup] to apply the commit at point.
-
-\\{magit-cherry-mode-map}"
-  :group 'magit-log
-  (hack-dir-local-variables-non-file-buffer)
-  (setq imenu-create-index-function
-        'magit-imenu--cherry-create-index-function)
-  (setq-local bookmark-make-record-function
-              'magit-bookmark--cherry-make-record))
-
-;;;###autoload
-(defun magit-cherry (head upstream)
-  "Show commits in a branch that are not merged in the upstream branch."
-  (interactive
-   (let  ((head (magit-read-branch "Cherry head")))
-     (list head (magit-read-other-branch "Cherry upstream" head
-                                         (magit-get-upstream-branch head)))))
-  (require 'magit)
-  (magit-mode-setup #'magit-cherry-mode upstream head))
-
-(defun magit-cherry-refresh-buffer (_upstream _head)
-  (magit-insert-section (cherry)
-    (magit-run-section-hook 'magit-cherry-sections-hook)))
-
-(defun magit-insert-cherry-headers ()
-  "Insert headers appropriate for `magit-cherry-mode' buffers."
-  (magit-insert-head-branch-header (nth 1 magit-refresh-args))
-  (magit-insert-upstream-branch-header (nth 1 magit-refresh-args)
-                                       (nth 0 magit-refresh-args)
-                                       "Upstream: ")
-  (insert ?\n))
-
-(defun magit-insert-cherry-commits ()
-  "Insert commit sections into a `magit-cherry-mode' buffer."
-  (magit-insert-section (cherries)
-    (magit-insert-heading "Cherry commits:")
-    (magit-git-wash (apply-partially 'magit-log-wash-log 'cherry)
-      "cherry" "-v" "--abbrev" magit-refresh-args)))
-
-;;; Reflog Mode
-
-(defvar magit-reflog-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-log-mode-map)
-    (define-key map "L" 'magit-margin-popup)
-    map)
-  "Keymap for `magit-reflog-mode'.")
-
-(define-derived-mode magit-reflog-mode magit-log-mode "Magit Reflog"
-  "Mode for looking at Git reflog.
-
-This mode is documented in info node `(magit)Reflog'.
-
-\\<magit-mode-map>\
-Type \\[magit-refresh] to refresh the current buffer.
-Type \\[magit-visit-thing] or \\[magit-diff-show-or-scroll-up] \
-to visit the commit at point.
-
-Type \\[magit-cherry-pick-popup] to apply the commit at point.
-Type \\[magit-reset] to reset `HEAD' to the commit at point.
-
-\\{magit-reflog-mode-map}"
-  :group 'magit-log
-  (hack-dir-local-variables-non-file-buffer)
-  (setq-local bookmark-make-record-function
-              'magit-bookmark--reflog-make-record))
-
-(defun magit-reflog-refresh-buffer (ref args)
-  (magit-set-header-line-format (concat "Reflog for " ref))
-  (magit-insert-section (reflogbuf)
-    (magit-git-wash (apply-partially 'magit-log-wash-log 'reflog)
-      "reflog" "show" "--format=%h%x00%aN%x00%gd%x00%gs" "--date=raw"
-      args ref "--")))
-
-(defvar magit-reflog-labels
-  '(("commit"      . magit-reflog-commit)
-    ("amend"       . magit-reflog-amend)
-    ("merge"       . magit-reflog-merge)
-    ("checkout"    . magit-reflog-checkout)
-    ("branch"      . magit-reflog-checkout)
-    ("reset"       . magit-reflog-reset)
-    ("rebase"      . magit-reflog-rebase)
-    ("cherry-pick" . magit-reflog-cherry-pick)
-    ("initial"     . magit-reflog-commit)
-    ("pull"        . magit-reflog-remote)
-    ("clone"       . magit-reflog-remote)
-    ("autosave"    . magit-reflog-commit)
-    ("restart"     . magit-reflog-reset)))
-
-(defun magit-reflog-format-subject (subject)
-  (let* ((match (string-match magit-reflog-subject-re subject))
-         (command (and match (match-string 1 subject)))
-         (option  (and match (match-string 2 subject)))
-         (type    (and match (match-string 3 subject)))
-         (label (if (string= command "commit")
-                    (or type command)
-                  command))
-         (text (if (string= command "commit")
-                   label
-                 (mapconcat #'identity
-                            (delq nil (list command option type))
-                            " "))))
-    (format "%-16s "
-            (propertize text 'face
-                        (or (cdr (assoc label magit-reflog-labels))
-                            'magit-reflog-other)))))
-
-;;; Log Sections
-;;;; Standard Log Sections
-
-(defvar magit-unpulled-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing] 'magit-diff-dwim)
-    map)
-  "Keymap for `unpulled' sections.")
-
-(magit-define-section-jumper magit-jump-to-unpulled-from-upstream
-  "Unpulled from @{upstream}" unpulled "..@{upstream}")
-
-(defun magit-insert-unpulled-from-upstream ()
-  "Insert commits that haven't been pulled from the upstream yet."
-  (when (magit-git-success "rev-parse" "@{upstream}")
-    (magit-insert-section (unpulled "..@{upstream}" t)
-      (magit-insert-heading
-        (format (propertize "Unpulled from %s:" 'face 'magit-section-heading)
-                (magit-get-upstream-branch)))
-      (magit-insert-log "..@{upstream}" magit-log-section-arguments))))
-
-(magit-define-section-jumper magit-jump-to-unpulled-from-pushremote
-  "Unpulled from <push-remote>" unpulled
-  (concat ".." (magit-get-push-branch)))
-
-(defun magit-insert-unpulled-from-pushremote ()
-  "Insert commits that haven't been pulled from the push-remote yet."
-  (--when-let (magit-get-push-branch)
-    (unless (and (equal (magit-rev-name it)
-                        (magit-rev-name "@{upstream}"))
-                 (or (memq 'magit-insert-unpulled-from-upstream
-                           magit-status-sections-hook)
-                     (memq 'magit-insert-unpulled-from-upstream-or-recent
-                           magit-status-sections-hook)))
-      (magit-insert-section (unpulled (concat ".." it) t)
-        (magit-insert-heading
-          (format (propertize "Unpulled from %s:" 'face 'magit-section-heading)
-                  (propertize it 'face 'magit-branch-remote)))
-        (magit-insert-log (concat ".." it) magit-log-section-arguments)))))
-
-(defvar magit-unpushed-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing] 'magit-diff-dwim)
-    map)
-  "Keymap for `unpushed' sections.")
-
-(magit-define-section-jumper magit-jump-to-unpushed-to-upstream
-  "Unpushed to @{upstream}" unpushed "@{upstream}..")
-
-(defun magit-insert-unpushed-to-upstream-or-recent ()
-  "Insert section showing unpushed or other recent commits.
-If an upstream is configured for the current branch and it is
-behind of the current branch, then show the commits that have
-not yet been pushed into the upstream branch.  If no upstream is
-configured or if the upstream is not behind of the current branch,
-then show the last `magit-log-section-commit-count' commits."
-  (let ((upstream (magit-rev-parse "@{upstream}")))
-    (if (or (not upstream)
-            (magit-rev-ancestor-p "HEAD" upstream))
-        (magit-insert-recent-commits 'unpushed "@{upstream}..")
-      (magit-insert-unpushed-to-upstream))))
-
-(defun magit-insert-unpushed-to-upstream ()
-  "Insert commits that haven't been pushed to the upstream yet."
-  (when (magit-git-success "rev-parse" "@{upstream}")
-    (magit-insert-section (unpushed "@{upstream}..")
-      (magit-insert-heading
-        (format (propertize "Unmerged into %s:" 'face 'magit-section-heading)
-                (magit-get-upstream-branch)))
-      (magit-insert-log "@{upstream}.." magit-log-section-arguments))))
-
-(defun magit-insert-recent-commits (&optional type value)
-  "Insert section showing recent commits.
-Show the last `magit-log-section-commit-count' commits."
-  (let* ((start (format "HEAD~%s" magit-log-section-commit-count))
-         (range (and (magit-rev-verify start)
-                     (concat start "..HEAD"))))
-    (magit-insert-section ((eval (or type 'recent))
-                           (or value range)
-                           t)
-      (magit-insert-heading "Recent commits")
-      (magit-insert-log range
-                        (cons (format "-n%d" magit-log-section-commit-count)
-                              (--remove (string-prefix-p "-n" it)
-                                        magit-log-section-arguments))))))
-
-(magit-define-section-jumper magit-jump-to-unpushed-to-pushremote
-  "Unpushed to <push-remote>" unpushed
-  (concat (magit-get-push-branch) ".."))
-
-(defun magit-insert-unpushed-to-pushremote ()
-  "Insert commits that haven't been pushed to the push-remote yet."
-  (--when-let (magit-get-push-branch)
-    (unless (and (equal (magit-rev-name it)
-                        (magit-rev-name "@{upstream}"))
-                 (or (memq 'magit-insert-unpushed-to-upstream
-                           magit-status-sections-hook)
-                     (memq 'magit-insert-unpushed-to-upstream-or-recent
-                           magit-status-sections-hook)))
-      (magit-insert-section (unpushed (concat it "..") t)
-        (magit-insert-heading
-          (format (propertize "Unpushed to %s:" 'face 'magit-section-heading)
-                  (propertize it 'face 'magit-branch-remote)))
-        (magit-insert-log (concat it "..") magit-log-section-arguments)))))
-
-;;;; Auxiliary Log Sections
-
-(defun magit-insert-unpulled-cherries ()
-  "Insert section showing unpulled commits.
-Like `magit-insert-unpulled-from-upstream' but prefix each commit
-which has not been applied yet (i.e. a commit with a patch-id
-not shared with any local commit) with \"+\", and all others with
-\"-\"."
-  (when (magit-git-success "rev-parse" "@{upstream}")
-    (magit-insert-section (unpulled "..@{upstream}")
-      (magit-insert-heading "Unpulled commits:")
-      (magit-git-wash (apply-partially 'magit-log-wash-log 'cherry)
-        "cherry" "-v" (magit-abbrev-arg)
-        (magit-get-current-branch) "@{upstream}"))))
-
-(defun magit-insert-unpushed-cherries ()
-  "Insert section showing unpushed commits.
-Like `magit-insert-unpushed-to-upstream' but prefix each commit
-which has not been applied to upstream yet (i.e. a commit with
-a patch-id not shared with any upstream commit) with \"+\", and
-all others with \"-\"."
-  (when (magit-git-success "rev-parse" "@{upstream}")
-    (magit-insert-section (unpushed "@{upstream}..")
-      (magit-insert-heading "Unpushed commits:")
-      (magit-git-wash (apply-partially 'magit-log-wash-log 'cherry)
-        "cherry" "-v" (magit-abbrev-arg) "@{upstream}"))))
-
-;;; _
-(provide 'magit-log)
-;;; magit-log.el ends here
diff --git a/elpa/magit-20181116.1412/magit-log.elc b/elpa/magit-20181116.1412/magit-log.elc
deleted file mode 100644
index 167d107..0000000
--- a/elpa/magit-20181116.1412/magit-log.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-margin.el b/elpa/magit-20181116.1412/magit-margin.el
deleted file mode 100644
index 5aaa4f5..0000000
--- a/elpa/magit-20181116.1412/magit-margin.el
+++ /dev/null
@@ -1,242 +0,0 @@
-;;; magit-margin.el --- margins in Magit buffers  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for showing additional information
-;; in the margins of Magit buffers.  Currently this is only used for
-;; commits, for which the committer date or age, and optionally the
-;; author name are shown.
-
-;;; Code:
-
-(require 'dash)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit-section)
-(require 'magit-mode)
-
-(defgroup magit-margin nil
-  "Information Magit displays in the margin.
-
-You can change the STYLE and AUTHOR-WIDTH of all `magit-*-margin'
-options to the same values by customizing `magit-log-margin'
-*before* `magit' is loaded.  If you do that, then the respective
-values for the other options will default to what you have set
-for that variable.  Likewise if you set `magit-log-margin's INIT
-to nil, then that is used in the default of all other options.  But
-setting it to t, i.e. re-enforcing the default for that option,
-does not carry to other options."
-  :link '(info-link "(magit)Log Margin")
-  :group 'magit-log)
-
-(defvar-local magit-buffer-margin nil)
-(put 'magit-buffer-margin 'permanent-local t)
-
-(defvar-local magit-set-buffer-margin-refresh nil)
-
-(defvar magit--age-spec)
-
-;;; Commands
-
-(magit-define-popup magit-margin-popup
-  "Popup console for changing appearance of the margin."
-  :actions '("Margin"
-             (?L "Toggle visibility" magit-toggle-margin)
-             (?l "Cycle style"       magit-cycle-margin-style)
-             (?d "Toggle details"    magit-toggle-margin-details)
-             (lambda ()
-               (and (with-current-buffer magit-pre-popup-buffer
-                      (derived-mode-p 'magit-refs-mode))
-                    (propertize "Left edge" 'face 'magit-popup-heading)))
-             (?v "Change verbosity" magit-refs-set-show-commit-count))
-  :max-action-columns 1)
-
-(defun magit-toggle-margin ()
-  "Show or hide the Magit margin."
-  (interactive)
-  (unless (magit-margin-option)
-    (user-error "Magit margin isn't supported in this buffer"))
-  (setcar magit-buffer-margin (not (magit-buffer-margin-p)))
-  (magit-set-buffer-margin))
-
-(defun magit-cycle-margin-style ()
-  "Cycle style used for the Magit margin."
-  (interactive)
-  (unless (magit-margin-option)
-    (user-error "Magit margin isn't supported in this buffer"))
-  ;; This is only suitable for commit margins (there are not others).
-  (setf (cadr magit-buffer-margin)
-        (pcase (cadr magit-buffer-margin)
-          (`age 'age-abbreviated)
-          (`age-abbreviated
-           (let ((default (cadr (symbol-value (magit-margin-option)))))
-             (if (stringp default) default "%Y-%m-%d %H:%M ")))
-          (_ 'age)))
-  (magit-set-buffer-margin nil t))
-
-(defun magit-toggle-margin-details ()
-  "Show or hide details in the Magit margin."
-  (interactive)
-  (unless (magit-margin-option)
-    (user-error "Magit margin isn't supported in this buffer"))
-  (setf (nth 3 magit-buffer-margin)
-        (not (nth 3 magit-buffer-margin)))
-  (magit-set-buffer-margin nil t))
-
-;;; Core
-
-(defun magit-buffer-margin-p ()
-  (car magit-buffer-margin))
-
-(defun magit-margin-option ()
-  (pcase major-mode
-    (`magit-cherry-mode     'magit-cherry-margin)
-    (`magit-log-mode        'magit-log-margin)
-    (`magit-log-select-mode 'magit-log-select-margin)
-    (`magit-reflog-mode     'magit-reflog-margin)
-    (`magit-refs-mode       'magit-refs-margin)
-    (`magit-stashes-mode    'magit-stashes-margin)
-    (`magit-status-mode     'magit-status-margin)))
-
-(defun magit-set-buffer-margin (&optional reset refresh)
-  (when-let ((option (magit-margin-option)))
-    (let* ((default (symbol-value option))
-           (default-width (nth 2 default)))
-      (when (or reset (not magit-buffer-margin))
-        (setq magit-buffer-margin (copy-sequence default)))
-      (pcase-let ((`(,enable ,style ,_width ,details ,details-width)
-                   magit-buffer-margin))
-        (when (functionp default-width)
-          (setf (nth 2 magit-buffer-margin)
-                (funcall default-width style details details-width)))
-        (dolist (window (get-buffer-window-list nil nil 0))
-          (with-selected-window window
-            (magit-set-window-margin window)
-            (if enable
-                (add-hook  'window-configuration-change-hook
-                           'magit-set-window-margin nil t)
-              (remove-hook 'window-configuration-change-hook
-                           'magit-set-window-margin t))))
-        (when (and enable (or refresh magit-set-buffer-margin-refresh))
-          (magit-refresh-buffer))))))
-
-(defun magit-set-window-margin (&optional window)
-  (when (or window (setq window (get-buffer-window)))
-    (with-selected-window window
-      (set-window-margins
-       nil (car (window-margins))
-       (and (magit-buffer-margin-p)
-            (nth 2 magit-buffer-margin))))))
-
-(defun magit-make-margin-overlay (&optional string previous-line)
-  (if previous-line
-      (save-excursion
-        (forward-line -1)
-        (magit-make-margin-overlay string))
-    ;; Don't put the overlay on the complete line to work around #1880.
-    (let ((o (make-overlay (1+ (line-beginning-position))
-                           (line-end-position)
-                           nil t)))
-      (overlay-put o 'evaporate t)
-      (overlay-put o 'before-string
-                   (propertize "o" 'display
-                               (list (list 'margin 'right-margin)
-                                     (or string " ")))))))
-
-(defun magit-maybe-make-margin-overlay ()
-  (when (or (magit-section-match
-             '(unpulled unpushed recent stashes local cherries)
-             magit-insert-section--current)
-            (and (eq major-mode 'magit-refs-mode)
-                 (magit-section-match
-                  '(remote commit tags)
-                  magit-insert-section--current)))
-    (magit-make-margin-overlay nil t)))
-
-;;; Custom Support
-
-(defun magit-margin-set-variable (mode symbol value)
-  (set-default symbol value)
-  (message "Updating margins in %s buffers..." mode)
-  (dolist (buffer (buffer-list))
-    (with-current-buffer buffer
-      (when (eq major-mode mode)
-        (magit-set-buffer-margin t)
-        (magit-refresh))))
-  (message "Updating margins in %s buffers...done" mode))
-
-(defconst magit-log-margin--custom-type
-  '(list (boolean :tag "Show margin initially")
-         (choice  :tag "Show committer"
-                  (string :tag "date using time-format" "%Y-%m-%d %H:%M ")
-                  (const  :tag "date's age" age)
-                  (const  :tag "date's age (abbreviated)" age-abbreviated))
-         (const   :tag "Calculate width using magit-log-margin-width"
-                  magit-log-margin-width)
-         (boolean :tag "Show author name by default")
-         (integer :tag "Show author name using width")))
-
-;;; Time Utilities
-
-(defvar magit--age-spec
-  `((?Y "year"   "years"   ,(round (* 60 60 24 365.2425)))
-    (?M "month"  "months"  ,(round (* 60 60 24 30.436875)))
-    (?w "week"   "weeks"   ,(* 60 60 24 7))
-    (?d "day"    "days"    ,(* 60 60 24))
-    (?h "hour"   "hours"   ,(* 60 60))
-    (?m "minute" "minutes" 60)
-    (?s "second" "seconds" 1))
-  "Time units used when formatting relative commit ages.
-
-The value is a list of time units, beginning with the longest.
-Each element has the form (CHAR UNIT UNITS SECONDS).  UNIT is the
-time unit, UNITS is the plural of that unit.  CHAR is a character
-abbreviation.  And SECONDS is the number of seconds in one UNIT.
-
-This is defined as a variable to make it possible to use time
-units for a language other than English.  It is not defined
-as an option, because most other parts of Magit are always in
-English.")
-
-(defun magit--age (date &optional abbreviate)
-  (cl-labels ((fn (age spec)
-                  (pcase-let ((`(,char ,unit ,units ,weight) (car spec)))
-                    (let ((cnt (round (/ age weight 1.0))))
-                      (if (or (not (cdr spec))
-                              (>= (/ age weight) 1))
-                          (list cnt (cond (abbreviate char)
-                                          ((= cnt 1) unit)
-                                          (t units)))
-                        (fn age (cdr spec)))))))
-    (fn (abs (- (float-time)
-                (if (stringp date)
-                    (string-to-number date)
-                  date)))
-        magit--age-spec)))
-
-;;; _
-(provide 'magit-margin)
-;;; magit-margin.el ends here
diff --git a/elpa/magit-20181116.1412/magit-margin.elc b/elpa/magit-20181116.1412/magit-margin.elc
deleted file mode 100644
index 66abd53..0000000
--- a/elpa/magit-20181116.1412/magit-margin.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-merge.el b/elpa/magit-20181116.1412/magit-merge.el
deleted file mode 100644
index f06b1dc..0000000
--- a/elpa/magit-20181116.1412/magit-merge.el
+++ /dev/null
@@ -1,285 +0,0 @@
-;;; magit-merge.el --- merge functionality  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements merge commands.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-(declare-function magit-git-push "magit-push" (branch target args))
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-merge-popup "magit" nil t)
-(magit-define-popup magit-merge-popup
-  "Popup console for merge commands."
-  :man-page "git-merge"
-  :switches '((?f "Fast-forward only" "--ff-only")
-              (?n "No fast-forward"   "--no-ff"))
-  :options  '((?s "Strategy" "--strategy="))
-  :actions  '((?m "Merge"                  magit-merge-plain)
-              (?p "Preview merge"          magit-merge-preview)
-              (?e "Merge and edit message" magit-merge-editmsg) nil
-              (?n "Merge but don't commit" magit-merge-nocommit)
-              (?s "Squash merge"           magit-merge-squash)
-              (?a "Absorb"                 magit-merge-absorb)
-              (?i "Merge into"             magit-merge-into))
-  :sequence-actions   '((?m "Commit merge" magit-commit-create)
-                        (?a "Abort merge"  magit-merge-abort))
-  :sequence-predicate 'magit-merge-in-progress-p
-  :default-action 'magit-merge
-  :max-action-columns 2)
-
-;;;###autoload
-(defun magit-merge-plain (rev &optional args nocommit)
-  "Merge commit REV into the current branch; using default message.
-
-Unless there are conflicts or a prefix argument is used create a
-merge commit using a generic commit message and without letting
-the user inspect the result.  With a prefix argument pretend the
-merge failed to give the user the opportunity to inspect the
-merge.
-
-\(git merge --no-edit|--no-commit [ARGS] REV)"
-  (interactive (list (magit-read-other-branch-or-commit "Merge")
-                     (magit-merge-arguments)
-                     current-prefix-arg))
-  (magit-merge-assert)
-  (magit-run-git-async "merge" (if nocommit "--no-commit" "--no-edit") args rev))
-
-;;;###autoload
-(defun magit-merge-editmsg (rev &optional args)
-  "Merge commit REV into the current branch; and edit message.
-Perform the merge and prepare a commit message but let the user
-edit it.
-\n(git merge --edit --no-ff [ARGS] REV)"
-  (interactive (list (magit-read-other-branch-or-commit "Merge")
-                     (magit-merge-arguments)))
-  (magit-merge-assert)
-  (cl-pushnew "--no-ff" args :test #'equal)
-  (apply #'magit-run-git-with-editor "merge" "--edit"
-         (append args (list rev))))
-
-;;;###autoload
-(defun magit-merge-nocommit (rev &optional args)
-  "Merge commit REV into the current branch; pretending it failed.
-Pretend the merge failed to give the user the opportunity to
-inspect the merge and change the commit message.
-\n(git merge --no-commit --no-ff [ARGS] REV)"
-  (interactive (list (magit-read-other-branch-or-commit "Merge")
-                     (magit-merge-arguments)))
-  (magit-merge-assert)
-  (cl-pushnew "--no-ff" args :test #'equal)
-  (magit-run-git-async "merge" "--no-commit" args rev))
-
-;;;###autoload
-(defun magit-merge-into (branch &optional args)
-  "Merge the current branch into BRANCH and remove the former.
-
-Before merging, force push the source branch to its push-remote,
-provided the respective remote branch already exists, ensuring
-that the respective pull-request (if any) won't get stuck on some
-obsolete version of the commits that are being merged.  Finally
-if `magit-branch-pull-request' was used to create the merged
-branch, then also remove the respective remote branch."
-  (interactive
-   (list (magit-read-other-local-branch
-          (format "Merge `%s' into" (magit-get-current-branch))
-          nil
-          (when-let ((upstream (magit-get-upstream-branch)))
-            (when-let ((upstream (cdr (magit-split-branch-name upstream))))
-              (and (magit-branch-p upstream) upstream))))
-         (magit-merge-arguments)))
-  (let ((current (magit-get-current-branch)))
-    (when (zerop (magit-call-git "checkout" branch))
-      (magit--merge-absort current args))))
-
-;;;###autoload
-(defun magit-merge-absorb (branch &optional args)
-  "Merge BRANCH into the current branch and remove the former.
-
-Before merging, force push the source branch to its push-remote,
-provided the respective remote branch already exists, ensuring
-that the respective pull-request (if any) won't get stuck on some
-obsolete version of the commits that are being merged.  Finally
-if `magit-branch-pull-request' was used to create the merged
-branch, then also remove the respective remote branch."
-  (interactive (list (magit-read-other-local-branch "Absorb branch")
-                     (magit-merge-arguments)))
-  (magit--merge-absort branch args))
-
-(defun magit--merge-absort (branch args)
-  (when (equal branch "master")
-    (unless (yes-or-no-p
-             "Do you really want to merge `master' into another branch? ")
-      (user-error "Abort")))
-  (if-let ((target (magit-get-push-branch branch t)))
-      (progn
-        (magit-git-push branch target (list "--force-with-lease"))
-        (set-process-sentinel
-         magit-this-process
-         (lambda (process event)
-           (when (memq (process-status process) '(exit signal))
-             (if (not (zerop (process-exit-status process)))
-                 (magit-process-sentinel process event)
-               (process-put process 'inhibit-refresh t)
-               (magit-process-sentinel process event)
-               (magit--merge-absort-1 branch args))))))
-    (magit--merge-absort-1 branch args)))
-
-(defun magit--merge-absort-1 (branch args)
-  (magit-run-git-async "merge" args "--no-edit" branch)
-  (set-process-sentinel
-   magit-this-process
-   (lambda (process event)
-     (when (memq (process-status process) '(exit signal))
-       (if (> (process-exit-status process) 0)
-           (magit-process-sentinel process event)
-         (process-put process 'inhibit-refresh t)
-         (magit-process-sentinel process event)
-         (magit-branch-maybe-delete-pr-remote branch)
-         (magit-branch-unset-pushRemote branch)
-         (magit-run-git "branch" "-D" branch))))))
-
-;;;###autoload
-(defun magit-merge-squash (rev)
-  "Squash commit REV into the current branch; don't create a commit.
-\n(git merge --squash REV)"
-  (interactive (list (magit-read-other-branch-or-commit "Squash")))
-  (magit-merge-assert)
-  (magit-run-git-async "merge" "--squash" rev))
-
-;;;###autoload
-(defun magit-merge-preview (rev)
-  "Preview result of merging REV into the current branch."
-  (interactive (list (magit-read-other-branch-or-commit "Preview merge")))
-  (magit-mode-setup #'magit-merge-preview-mode rev))
-
-(define-derived-mode magit-merge-preview-mode magit-diff-mode "Magit Merge"
-  "Mode for previewing a merge."
-  :group 'magit-diff
-  (hack-dir-local-variables-non-file-buffer))
-
-(defun magit-merge-preview-refresh-buffer (rev)
-  (let* ((branch (magit-get-current-branch))
-         (head (or branch (magit-rev-verify "HEAD"))))
-    (magit-set-header-line-format (format "Preview merge of %s into %s"
-                                          rev
-                                          (or branch "HEAD")))
-    (magit-insert-section (diffbuf)
-      (magit-git-wash #'magit-diff-wash-diffs
-        "merge-tree" (magit-git-string "merge-base" head rev) head rev))))
-
-;;;###autoload
-(defun magit-merge-abort ()
-  "Abort the current merge operation.
-\n(git merge --abort)"
-  (interactive)
-  (unless (file-exists-p (magit-git-dir "MERGE_HEAD"))
-    (user-error "No merge in progress"))
-  (magit-confirm 'abort-merge)
-  (magit-run-git-async "merge" "--abort"))
-
-(defun magit-checkout-stage (file arg)
-  "During a conflict checkout and stage side, or restore conflict."
-  (interactive
-   (let ((file (magit-completing-read "Checkout file"
-                                      (magit-tracked-files) nil nil nil
-                                      'magit-read-file-hist
-                                      (magit-current-file))))
-     (cond ((member file (magit-unmerged-files))
-            (list file (magit-checkout-read-stage file)))
-           ((yes-or-no-p (format "Restore conflicts in %s? " file))
-            (list file "--merge"))
-           (t
-            (user-error "Quit")))))
-  (pcase (cons arg (cddr (car (magit-file-status file))))
-    ((or `("--ours"   ?D ,_)
-         `("--theirs" ,_ ?D))
-     (magit-run-git "rm" "--" file))
-    (_ (if (equal arg "--merge")
-           ;; This fails if the file was deleted on one
-           ;; side.  And we cannot do anything about it.
-           (magit-run-git "checkout" "--merge" "--" file)
-         (magit-call-git "checkout" arg "--" file)
-         (magit-run-git "add" "-u" "--" file)))))
-
-;;; Utilities
-
-(defun magit-merge-in-progress-p ()
-  (file-exists-p (magit-git-dir "MERGE_HEAD")))
-
-(defun magit--merge-range (&optional head)
-  (unless head
-    (setq head (magit-get-shortname
-                (car (magit-file-lines (magit-git-dir "MERGE_HEAD"))))))
-  (and head
-       (concat (magit-git-string "merge-base" "--octopus" "HEAD" head)
-               ".." head)))
-
-(defun magit-merge-assert ()
-  (or (not (magit-anything-modified-p t))
-      (magit-confirm 'merge-dirty
-        "Merging with dirty worktree is risky.  Continue")))
-
-(defun magit-checkout-read-stage (file)
-  (magit-read-char-case (format "For %s checkout: " file) t
-    (?o "[o]ur stage"   "--ours")
-    (?t "[t]heir stage" "--theirs")
-    (?c "[c]onflict"    "--merge")))
-
-;;; Sections
-
-(defvar magit-unmerged-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing] 'magit-diff-dwim)
-    map)
-  "Keymap for `unmerged' sections.")
-
-(defun magit-insert-merge-log ()
-  "Insert section for the on-going merge.
-Display the heads that are being merged.
-If no merge is in progress, do nothing."
-  (when (magit-merge-in-progress-p)
-    (let* ((heads (mapcar #'magit-get-shortname
-                          (magit-file-lines (magit-git-dir "MERGE_HEAD"))))
-           (range (magit--merge-range (car heads))))
-      (magit-insert-section (unmerged range)
-        (magit-insert-heading
-          (format "Merging %s:" (mapconcat #'identity heads ", ")))
-        (magit-insert-log
-         range
-         (let ((args magit-log-section-arguments))
-           (unless (member "--decorate=full" magit-log-section-arguments)
-             (push "--decorate=full" args))
-           args))))))
-
-;;; _
-(provide 'magit-merge)
-;;; magit-merge.el ends here
diff --git a/elpa/magit-20181116.1412/magit-merge.elc b/elpa/magit-20181116.1412/magit-merge.elc
deleted file mode 100644
index 80a2966..0000000
--- a/elpa/magit-20181116.1412/magit-merge.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-mode.el b/elpa/magit-20181116.1412/magit-mode.el
deleted file mode 100644
index 2431be7..0000000
--- a/elpa/magit-20181116.1412/magit-mode.el
+++ /dev/null
@@ -1,1404 +0,0 @@
-;;; magit-mode.el --- create and refresh Magit buffers  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements the abstract major-mode `magit-mode' from
-;; which almost all other Magit major-modes derive.  The code in here
-;; is mostly concerned with creating and refreshing Magit buffers.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'dash)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit-section)
-(require 'magit-git)
-
-;; For `magit-display-buffer-fullcolumn-most-v1' from `git-commit'
-(defvar git-commit-mode)
-;; For `magit-xref-insert-buttons' from `magit'
-(defvar magit-diff-show-xref-buttons)
-(defvar magit-revision-show-xref-buttons)
-;; For `magit-refresh'
-(defvar magit-post-commit-hook-commands)
-(defvar magit-post-stage-hook-commands)
-(defvar magit-post-unstage-hook-commands)
-;; For `magit-refresh' and `magit-refresh-all'
-(declare-function magit-auto-revert-buffers "magit-autorevert" ())
-;; For `magit-refresh-buffer'
-(declare-function magit-process-unset-mode-line-error-status "magit-process" ())
-;; For `magit-mode-setup-internal'
-(declare-function magit-status-goto-initial-section "magit-status" ())
-
-(require 'format-spec)
-(require 'help-mode)
-
-;;; Options
-
-(defcustom magit-mode-hook
-  '(magit-load-config-extensions
-    magit-xref-setup)
-  "Hook run when entering a mode derived from Magit mode."
-  :group 'magit-modes
-  :type 'hook
-  :options '(magit-load-config-extensions
-             magit-xref-setup
-             bug-reference-mode))
-
-(defcustom magit-mode-setup-hook
-  '(magit-maybe-save-repository-buffers
-    magit-set-buffer-margin)
-  "Hook run by `magit-mode-setup'.
-
-This is run right after displaying the buffer and right before
-generating or updating its content.  `magit-mode-hook' and other,
-more specific, `magit-mode-*-hook's on the other hand are run
-right before displaying the buffer.  Usually one of these hooks
-should be used instead of this one."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-modes
-  :type 'hook
-  :options '(magit-maybe-save-repository-buffers
-             magit-set-buffer-margin))
-
-(defcustom magit-pre-refresh-hook '(magit-maybe-save-repository-buffers)
-  "Hook run before refreshing in `magit-refresh'.
-
-This hook, or `magit-post-refresh-hook', should be used
-for functions that are not tied to a particular buffer.
-
-To run a function with a particular buffer current, use
-`magit-refresh-buffer-hook' and use `derived-mode-p'
-inside your function."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-refresh
-  :type 'hook
-  :options '(magit-maybe-save-repository-buffers))
-
-(defcustom magit-post-refresh-hook nil
-  "Hook run after refreshing in `magit-refresh'.
-
-This hook, or `magit-pre-refresh-hook', should be used
-for functions that are not tied to a particular buffer.
-
-To run a function with a particular buffer current, use
-`magit-refresh-buffer-hook' and use `derived-mode-p'
-inside your function."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-refresh
-  :type 'hook)
-
-(defcustom magit-display-buffer-function 'magit-display-buffer-traditional
-  "The function used display a Magit buffer.
-
-All Magit buffers (buffers whose major-modes derive from
-`magit-mode') are displayed using `magit-display-buffer',
-which in turn uses the function specified here."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-buffers
-  :type '(radio (function-item magit-display-buffer-traditional)
-                (function-item magit-display-buffer-same-window-except-diff-v1)
-                (function-item magit-display-buffer-fullframe-status-v1)
-                (function-item magit-display-buffer-fullframe-status-topleft-v1)
-                (function-item magit-display-buffer-fullcolumn-most-v1)
-                (function-item display-buffer)
-                (function :tag "Function")))
-
-(defcustom magit-pre-display-buffer-hook '(magit-save-window-configuration)
-  "Hook run by `magit-display-buffer' before displaying the buffer."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-buffers
-  :type 'hook
-  :get 'magit-hook-custom-get
-  :options '(magit-save-window-configuration))
-
-(defcustom magit-post-display-buffer-hook '(magit-maybe-set-dedicated)
-  "Hook run by `magit-display-buffer' after displaying the buffer."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-buffers
-  :type 'hook
-  :get 'magit-hook-custom-get
-  :options '(magit-maybe-set-dedicated))
-
-(defcustom magit-generate-buffer-name-function
-  'magit-generate-buffer-name-default-function
-  "The function used to generate the name for a Magit buffer."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-buffers
-  :type '(radio (function-item magit-generate-buffer-name-default-function)
-                (function :tag "Function")))
-
-(defcustom magit-buffer-name-format "%x%M%v: %t%x"
-  "The format string used to name Magit buffers.
-
-The following %-sequences are supported:
-
-`%m' The name of the major-mode, but with the `-mode' suffix
-     removed.
-
-`%M' Like \"%m\" but abbreviate `magit-status-mode' as `magit'.
-
-`%v' The value the buffer is locked to, in parentheses, or an
-     empty string if the buffer is not locked to a value.
-
-`%V' Like \"%v\", but the string is prefixed with a space, unless
-     it is an empty string.
-
-`%t' The top-level directory of the working tree of the
-     repository, or if `magit-uniquify-buffer-names' is non-nil
-     an abbreviation of that.
-
-`%x' If `magit-uniquify-buffer-names' is nil \"*\", otherwise the
-     empty string.  Due to limitations of the `uniquify' package,
-     buffer names must end with the path.
-
-`%T' Obsolete, use \"%t%x\" instead.  Like \"%t\", but append an
-     asterisk if and only if `magit-uniquify-buffer-names' is nil.
-
-The value should always contain \"%m\" or \"%M\", \"%v\" or
-\"%V\", and \"%t\" (or the obsolete \"%T\").
-
-If `magit-uniquify-buffer-names' is non-nil, then the value must
-end with \"%t\" or \"%t%x\" (or the obsolete \"%T\").  See issue
-#2841.
-
-This is used by `magit-generate-buffer-name-default-function'.
-If another `magit-generate-buffer-name-function' is used, then
-it may not respect this option, or on the contrary it may
-support additional %-sequences."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-buffers
-  :type 'string)
-
-(defcustom magit-uniquify-buffer-names t
-  "Whether to uniquify the names of Magit buffers."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-buffers
-  :type 'boolean)
-
-(defcustom magit-bury-buffer-function 'magit-restore-window-configuration
-  "The function used to bury or kill the current Magit buffer."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-buffers
-  :type '(radio (function-item quit-window)
-                (function-item magit-mode-quit-window)
-                (function-item magit-restore-window-configuration)
-                (function :tag "Function")))
-
-(defcustom magit-use-sticky-arguments t
-  "How to reuse arguments from existing diff and log buffers.
-
-nil       Always use the default value of the variable
-          `magit-log-arguments' for log commands.  Likewise,
-          always use the default value of the variable
-          `magit-diff-arguments' for diff command calls.
-
-current   If the mode of the current buffer is derived from
-          `magit-log-mode' or `magit-diff-mode', reuse the
-          arguments from that buffer instead of those given by
-          the variable `magit-log-arguments' or
-          `magit-diff-arguments', respectively.
-
-t         Like `current', but if the mode of the current buffer
-          is not derived from `magit-log-mode' or
-          `magit-diff-mode', use the arguments from the current
-          repository's active (i.e. non-locked) `magit-log-mode'
-          or `magit-diff-mode' buffer, respectively, if it
-          exists.
-
-          Note that commands that generate a
-          `magit-revision-mode' or `magit-stash-mode' buffer will
-          also collect their diff arguments from the active
-          `magit-diff-mode' buffer.
-
-In general, there is a separation between the \"sticky\"
-arguments for log and diff buffers, but there is one special
-case: if the current buffer is a log buffer,
-`magit-show-commit' (considered a diff command) uses the file
-filter from the log buffer."
-  :package-version '(magit . "2.11.0")
-  :group 'magit-buffers
-  :type '(choice (const :tag "disabled" nil)
-                 (const :tag "sticky for current" current)
-                 (const :tag "sticky" t)))
-
-(defcustom magit-region-highlight-hook
-  '(magit-section-update-region magit-diff-update-hunk-region)
-  "Functions used to highlight the region.
-
-Each function is run with the current section as only argument
-until one of them returns non-nil.  If all functions return nil,
-then fall back to regular region highlighting."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-refresh
-  :type 'hook
-  :options '(magit-section-update-region magit-diff-update-hunk-region))
-
-(defcustom magit-create-buffer-hook nil
-  "Normal hook run after creating a new `magit-mode' buffer."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-refresh
-  :type 'hook)
-
-(defcustom magit-refresh-buffer-hook nil
-  "Normal hook for `magit-refresh-buffer' to run after refreshing."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-refresh
-  :type 'hook)
-
-(defcustom magit-refresh-status-buffer t
-  "Whether the status buffer is refreshed after running git.
-
-When this is non-nil, then the status buffer is automatically
-refreshed after running git for side-effects, in addition to the
-current Magit buffer, which is always refreshed automatically.
-
-Only set this to nil after exhausting all other options to
-improve performance."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-refresh
-  :group 'magit-status
-  :type 'boolean)
-
-(defcustom magit-refresh-verbose nil
-  "Whether to revert Magit buffers verbosely."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-refresh
-  :type 'boolean)
-
-(defcustom magit-save-repository-buffers t
-  "Whether to save file-visiting buffers when appropriate.
-
-If non-nil, then all modified file-visiting buffers belonging
-to the current repository may be saved before running Magit
-commands and before creating or refreshing Magit buffers.
-If `dontask', then this is done without user intervention, for
-any other non-nil value the user has to confirm each save.
-
-The default is t to avoid surprises, but `dontask' is the
-recommended value."
-  :group 'magit-essentials
-  :group 'magit-buffers
-  :type '(choice (const :tag "Never" nil)
-                 (const :tag "Ask" t)
-                 (const :tag "Save without asking" dontask)))
-
-(defcustom magit-keep-region-overlay nil
-  "Whether to keep the region overlay when there is a valid selection.
-
-By default Magit removes the regular region overlay if, and only
-if, that region constitutes a valid selection as understood by
-Magit commands.  Otherwise it does not remove that overlay, and
-the region looks like it would in other buffers.
-
-There are two types of such valid selections: hunk-internal
-regions and regions that select two or more sibling sections.
-In such cases Magit removes the region overlay and instead
-highlights a slightly larger range.  All text (for hunk-internal
-regions) or the headings of all sections (for sibling selections)
-that are inside that range (not just inside the region) are acted
-on by commands such as the staging command.  This buffer range
-begins at the beginning of the line on which the region begins
-and ends at the end of the line on which the region ends.
-
-Because Magit acts on this larger range and not the region, it is
-actually quite important to visualize that larger range.  If we
-don't do that, then one might think that these commands act on
-the region instead.  If you want to *also* visualize the region,
-then set this option to t.  But please note that when the region
-does *not* constitute a valid selection, then the region is
-*always* visualized as usual, and that it is usually under such
-circumstances that you want to use a non-magit command to act on
-the region.
-
-Besides keeping the region overlay, setting this option to t also
-causes all face properties, except for `:foreground', to be
-ignored for the faces used to highlight headings of selected
-sections.  This avoids the worst conflicts that result from
-displaying the region and the selection overlays at the same
-time.  We are not interested in dealing with other conflicts.
-In fact we *already* provide a way to avoid all of these
-conflicts: *not* changing the value of this option.
-
-It should be clear by now that we consider it a mistake to set
-this to display the region when the Magit selection is also
-visualized, but since it has been requested a few times and
-because it doesn't cost much to offer this option we do so.
-However that might change.  If the existence of this option
-starts complicating other things, then it will be removed."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-miscellaneous
-  :type 'boolean)
-
-;;; Magit Mode
-
-(defvar magit-mode-map
-  (let ((map (make-keymap)))
-    (suppress-keymap map t)
-    (cond ((featurep 'jkl)
-           (define-key map   [return]  'magit-visit-thing)
-           (define-key map [C-return]  'magit-dired-jump)
-           (define-key map   [tab]     'magit-section-toggle)
-           (define-key map [C-tab]     'magit-section-cycle)
-           (define-key map [M-tab]     'magit-section-cycle-diffs)
-           (define-key map [S-tab]     'magit-section-cycle-global)
-           (define-key map (kbd "M-o") 'magit-section-up)
-           (define-key map (kbd   "i") 'magit-section-backward)
-           (define-key map (kbd   "k") 'magit-section-forward)
-           (define-key map (kbd "M-i") 'magit-section-backward-sibling)
-           (define-key map (kbd "M-k") 'magit-section-forward-sibling)
-           (define-key map (kbd   "p") 'magit-push-popup)
-           (define-key map (kbd   ",") 'magit-delete-thing)
-           (define-key map (kbd   ";") 'magit-file-untrack)
-           (define-key map (kbd "C-c C-i") 'magit-gitignore-popup))
-          (t
-           (define-key map [C-return]  'magit-visit-thing)
-           (define-key map (kbd "C-m") 'magit-visit-thing)
-           (define-key map (kbd "C-M-i") 'magit-dired-jump)
-           (define-key map (kbd "C-i") 'magit-section-toggle)
-           (define-key map [C-tab]     'magit-section-cycle)
-           (define-key map [M-tab]     'magit-section-cycle-diffs)
-           ;; [backtab] is the most portable binding for Shift+Tab.
-           (define-key map [backtab]   'magit-section-cycle-global)
-           (define-key map (kbd   "^") 'magit-section-up)
-           (define-key map (kbd   "p") 'magit-section-backward)
-           (define-key map (kbd   "n") 'magit-section-forward)
-           (define-key map (kbd "M-p") 'magit-section-backward-sibling)
-           (define-key map (kbd "M-n") 'magit-section-forward-sibling)
-           (define-key map (kbd   "P") 'magit-push-popup)
-           (define-key map (kbd   "k") 'magit-delete-thing)
-           (define-key map (kbd   "K") 'magit-file-untrack)
-           (define-key map (kbd   "i") 'magit-gitignore-popup)
-           (define-key map (kbd   "I") 'magit-gitignore-popup)))
-    (define-key map (kbd "SPC") 'magit-diff-show-or-scroll-up)
-    (define-key map (kbd "DEL") 'magit-diff-show-or-scroll-down)
-    (define-key map "+"         'magit-diff-more-context)
-    (define-key map "-"         'magit-diff-less-context)
-    (define-key map "0"         'magit-diff-default-context)
-    (define-key map "1"         'magit-section-show-level-1)
-    (define-key map "2"         'magit-section-show-level-2)
-    (define-key map "3"         'magit-section-show-level-3)
-    (define-key map "4"         'magit-section-show-level-4)
-    (define-key map (kbd "M-1") 'magit-section-show-level-1-all)
-    (define-key map (kbd "M-2") 'magit-section-show-level-2-all)
-    (define-key map (kbd "M-3") 'magit-section-show-level-3-all)
-    (define-key map (kbd "M-4") 'magit-section-show-level-4-all)
-    (define-key map "$" 'magit-process-buffer)
-    (define-key map "%" 'magit-worktree-popup)
-    (define-key map "a" 'magit-cherry-apply)
-    (define-key map "A" 'magit-cherry-pick-popup)
-    (define-key map "b" 'magit-branch-popup)
-    (define-key map "B" 'magit-bisect-popup)
-    (define-key map "c" 'magit-commit-popup)
-    (define-key map "d" 'magit-diff-popup)
-    (define-key map "D" 'magit-diff-refresh-popup)
-    (define-key map "e" 'magit-ediff-dwim)
-    (define-key map "E" 'magit-ediff-popup)
-    (define-key map "f" 'magit-fetch-popup)
-    (define-key map "F" 'magit-pull-popup)
-    (define-key map "g" 'magit-refresh)
-    (define-key map "G" 'magit-refresh-all)
-    (define-key map "h" 'magit-dispatch-popup)
-    (define-key map "?" 'magit-dispatch-popup)
-    (define-key map "l" 'magit-log-popup)
-    (define-key map "L" 'magit-log-refresh-popup)
-    (define-key map "m" 'magit-merge-popup)
-    (define-key map "M" 'magit-remote-popup)
-    (define-key map "o" 'magit-submodule-popup)
-    (define-key map "O" 'magit-subtree-popup)
-    (define-key map "q" 'magit-mode-bury-buffer)
-    (define-key map "r" 'magit-rebase-popup)
-    (define-key map "R" 'magit-file-rename)
-    (define-key map "t" 'magit-tag-popup)
-    (define-key map "T" 'magit-notes-popup)
-    (define-key map "s" 'magit-stage-file)
-    (define-key map "S" 'magit-stage-modified)
-    (define-key map "u" 'magit-unstage-file)
-    (define-key map "U" 'magit-unstage-all)
-    (define-key map "v" 'magit-revert-no-commit)
-    (define-key map "V" 'magit-revert-popup)
-    (define-key map "w" 'magit-am-popup)
-    (define-key map "W" 'magit-patch-popup)
-    (define-key map "x" 'magit-reset-quickly)
-    (define-key map "X" 'magit-reset-popup)
-    (define-key map "y" 'magit-show-refs-popup)
-    (define-key map "Y" 'magit-cherry)
-    (define-key map "z" 'magit-stash-popup)
-    (define-key map "Z" 'magit-stash-popup)
-    (define-key map ":" 'magit-git-command)
-    (define-key map "!" 'magit-run-popup)
-    (define-key map (kbd "C-c C-c") 'magit-dispatch-popup)
-    (define-key map (kbd "C-c C-e") 'magit-edit-thing)
-    (define-key map (kbd "C-c C-w") 'magit-browse-thing)
-    (define-key map (kbd "C-x a")   'magit-add-change-log-entry)
-    (define-key map (kbd "C-x 4 a") 'magit-add-change-log-entry-other-window)
-    (define-key map (kbd "C-w")     'magit-copy-section-value)
-    (define-key map (kbd "M-w")     'magit-copy-buffer-revision)
-    (define-key map [remap previous-line]      'magit-previous-line)
-    (define-key map [remap next-line]          'magit-next-line)
-    (define-key map [remap evil-previous-line] 'evil-previous-visual-line)
-    (define-key map [remap evil-next-line]     'evil-next-visual-line)
-    map)
-  "Parent keymap for all keymaps of modes derived from `magit-mode'.")
-
-(defun magit-delete-thing ()
-  "This is a placeholder command.
-Where applicable, section-specific keymaps bind another command
-which deletes the thing at point."
-  (interactive)
-  (user-error "There is no thing at point that could be deleted"))
-
-(defun magit-visit-thing ()
-  "This is a placeholder command.
-Where applicable, section-specific keymaps bind another command
-which visits the thing at point."
-  (interactive)
-  (if (eq magit-current-popup 'magit-dispatch-popup)
-      (progn (setq magit-current-popup nil)
-             (call-interactively (key-binding (this-command-keys))))
-    (user-error "There is no thing at point that could be visited")))
-
-(defun magit-edit-thing ()
-  "This is a placeholder command.
-Where applicable, section-specific keymaps bind another command
-which lets you edit the thing at point, likely in another buffer."
-  (interactive)
-  (if (eq magit-current-popup 'magit-dispatch-popup)
-      (progn (setq magit-current-popup nil)
-             (call-interactively (key-binding (this-command-keys))))
-    (user-error "There is no thing at point that could be edited")))
-
-(defun magit-browse-thing ()
-  "This is a placeholder command.
-Where applicable, section-specific keymaps bind another command
-which visits the thing at point using `browse-url'."
-  (interactive)
-  (user-error "There is no thing at point that could be browsed"))
-
-(easy-menu-define magit-mode-menu magit-mode-map
-  "Magit menu"
-  '("Magit"
-    ["Refresh" magit-refresh t]
-    ["Refresh all" magit-refresh-all t]
-    "---"
-    ["Stage" magit-stage t]
-    ["Stage modified" magit-stage-modified t]
-    ["Unstage" magit-unstage t]
-    ["Reset index" magit-reset-index t]
-    ["Commit" magit-commit-popup t]
-    ["Add log entry" magit-commit-add-log t]
-    ["Tag" magit-tag-create t]
-    "---"
-    ["Diff working tree" magit-diff-working-tree t]
-    ["Diff" magit-diff t]
-    ("Log"
-     ["Log" magit-log-other t]
-     ["Reflog" magit-reflog-other t]
-     ["Extended..." magit-log-popup t])
-    "---"
-    ["Cherry pick" magit-cherry-pick t]
-    ["Revert commit" magit-revert-popup t]
-    "---"
-    ["Ignore globally" magit-gitignore-globally t]
-    ["Ignore locally" magit-gitignore-locally t]
-    ["Discard" magit-discard t]
-    ["Reset head and index" magit-reset-mixed t]
-    ["Stash" magit-stash-both t]
-    ["Snapshot" magit-snapshot-both t]
-    "---"
-    ["Branch..." magit-checkout t]
-    ["Merge" magit-merge t]
-    ["Ediff resolve" magit-ediff-resolve t]
-    ["Rebase..." magit-rebase-popup t]
-    "---"
-    ["Push" magit-push t]
-    ["Pull" magit-pull-branch t]
-    ["Remote update" magit-fetch-all t]
-    ("Submodule"
-     ["Submodule update" magit-submodule-update t]
-     ["Submodule update and init" magit-submodule-setup t]
-     ["Submodule init" magit-submodule-init t]
-     ["Submodule sync" magit-submodule-sync t])
-    "---"
-    ("Extensions")
-    "---"
-    ["Display Git output" magit-process-buffer t]
-    ["Quit Magit" magit-mode-bury-buffer t]))
-
-(defun magit-load-config-extensions ()
-  "Load Magit extensions that are defined at the Git config layer."
-  (dolist (ext (magit-get-all "magit.extension"))
-    (let ((sym (intern (format "magit-%s-mode" ext))))
-      (when (fboundp sym)
-        (funcall sym 1)))))
-
-(define-derived-mode magit-mode special-mode "Magit"
-  "Parent major mode from which Magit major modes inherit.
-
-Magit is documented in info node `(magit)'."
-  :group 'magit-modes
-  (buffer-disable-undo)
-  (setq truncate-lines t)
-  (setq buffer-read-only t)
-  (setq-local line-move-visual t) ; see #1771
-  (setq show-trailing-whitespace nil)
-  (setq list-buffers-directory (abbreviate-file-name default-directory))
-  (hack-dir-local-variables-non-file-buffer)
-  (make-local-variable 'text-property-default-nonsticky)
-  (push (cons 'keymap t) text-property-default-nonsticky)
-  (add-hook 'post-command-hook #'magit-section-update-highlight t t)
-  (add-hook 'deactivate-mark-hook #'magit-section-update-highlight t t)
-  (setq-local redisplay-highlight-region-function 'magit-highlight-region)
-  (setq-local redisplay-unhighlight-region-function 'magit-unhighlight-region)
-  (setq mode-line-process (magit-repository-local-get 'mode-line-process))
-  (when (bound-and-true-p global-linum-mode)
-    (linum-mode -1))
-  (when (and (fboundp 'nlinum-mode)
-             (bound-and-true-p global-nlinum-mode))
-    (nlinum-mode -1))
-  (when (and (fboundp 'display-line-numbers-mode)
-             (bound-and-true-p global-display-line-numbers-mode))
-    (display-line-numbers-mode -1))
-  (add-hook 'kill-buffer-hook 'magit-preserve-section-visibility-cache))
-
-(defvar-local magit-region-overlays nil)
-
-(defun magit-delete-region-overlays ()
-  (mapc #'delete-overlay magit-region-overlays)
-  (setq magit-region-overlays nil))
-
-(defun magit-highlight-region (start end window rol)
-  (magit-delete-region-overlays)
-  (if (and (run-hook-with-args-until-success 'magit-region-highlight-hook
-                                             (magit-current-section))
-           (not magit-keep-region-overlay)
-           (not (= (line-number-at-pos start)
-                   (line-number-at-pos end)))
-           ;; (not (eq (car-safe last-command-event) 'mouse-movement))
-           )
-      (funcall (default-value 'redisplay-unhighlight-region-function) rol)
-    (funcall (default-value 'redisplay-highlight-region-function)
-             start end window rol)))
-
-(defun magit-unhighlight-region (rol)
-  (setq magit-section-highlighted-section nil)
-  (magit-delete-region-overlays)
-  (funcall (default-value 'redisplay-unhighlight-region-function) rol))
-
-(defvar-local magit-refresh-args nil
-  "The arguments used to refresh the current buffer.")
-(put 'magit-refresh-args 'permanent-local t)
-
-(defvar-local magit-previous-section nil)
-(put 'magit-previous-section 'permanent-local t)
-
-(defun magit-mode-setup (mode &rest args)
-  "Setup up a MODE buffer using ARGS to generate its content."
-  (magit-mode-setup-internal mode args))
-
-(defun magit-mode-setup-internal (mode args &optional locked)
-  "Setup up a MODE buffer using ARGS to generate its content.
-When optional LOCKED is non-nil, then create a buffer that is
-locked to its value, which is derived from MODE and ARGS."
-  (let* ((value   (and locked (magit-buffer-lock-value mode args)))
-         (buffer  (magit-mode-get-buffer mode nil nil value))
-         (section (and buffer (magit-current-section)))
-         (created (not buffer)))
-    (unless buffer
-      (setq buffer (magit-with-toplevel
-                     (magit-generate-new-buffer mode value))))
-    (with-current-buffer buffer
-      (setq magit-previous-section section)
-      (setq magit-refresh-args args)
-      (funcall mode)
-      (when created
-        (magit-status-goto-initial-section)
-        (run-hooks 'magit-create-buffer-hook)))
-    (magit-display-buffer buffer)
-    (with-current-buffer buffer
-      (run-hooks 'magit-mode-setup-hook)
-      (magit-refresh-buffer))))
-
-(defvar magit-display-buffer-noselect nil
-  "If non-nil, then `magit-display-buffer' doesn't call `select-window'.")
-
-(defun magit-display-buffer (buffer)
-  "Display BUFFER in some window and maybe select it.
-
-Display the buffer using `magit-display-buffer-function' and
-then, unless `magit-display-buffer-noselect' is non-nil, select
-the window which was used to display the buffer.
-
-Also run the hooks `magit-pre-display-buffer-hook'
-and `magit-post-display-buffer-hook'."
-  (with-current-buffer buffer
-    (run-hooks 'magit-pre-display-buffer-hook))
-  (let ((window (funcall magit-display-buffer-function buffer)))
-    (unless magit-display-buffer-noselect
-      (let* ((old-frame (selected-frame))
-             (new-frame (window-frame window)))
-        (select-window window)
-        (unless (eq old-frame new-frame)
-          (select-frame-set-input-focus new-frame)))))
-  (with-current-buffer buffer
-    (run-hooks 'magit-post-display-buffer-hook)))
-
-(defun magit-display-buffer-traditional (buffer)
-  "Display BUFFER the way this has traditionally been done."
-  (display-buffer
-   buffer (if (and (derived-mode-p 'magit-mode)
-                   (not (memq (with-current-buffer buffer major-mode)
-                              '(magit-process-mode
-                                magit-revision-mode
-                                magit-diff-mode
-                                magit-stash-mode
-                                magit-status-mode))))
-              '(display-buffer-same-window)
-            nil))) ; display in another window
-
-(defun magit-display-buffer-same-window-except-diff-v1 (buffer)
-  "Display BUFFER in the selected window except for some modes.
-If a buffer's `major-mode' derives from `magit-diff-mode' or
-`magit-process-mode', display it in another window.  Display all
-other buffers in the selected window."
-  (display-buffer
-   buffer (if (with-current-buffer buffer
-                (derived-mode-p 'magit-diff-mode 'magit-process-mode))
-              nil  ; display in another window
-            '(display-buffer-same-window))))
-
-(defun magit--display-buffer-fullframe (buffer alist)
-  (when-let ((window (or (display-buffer-reuse-window buffer alist)
-                         (display-buffer-same-window buffer alist)
-                         (display-buffer-pop-up-window buffer alist)
-                         (display-buffer-use-some-window buffer alist))))
-    (delete-other-windows window)
-    window))
-
-(defun magit-display-buffer-fullframe-status-v1 (buffer)
-  "Display BUFFER, filling entire frame if BUFFER is a status buffer.
-Otherwise, behave like `magit-display-buffer-traditional'."
-  (if (eq (with-current-buffer buffer major-mode)
-          'magit-status-mode)
-      (display-buffer buffer '(magit--display-buffer-fullframe))
-    (magit-display-buffer-traditional buffer)))
-
-(defun magit--display-buffer-topleft (buffer alist)
-  (or (display-buffer-reuse-window buffer alist)
-      (when-let ((window2 (display-buffer-pop-up-window buffer alist)))
-        (let ((window1 (get-buffer-window))
-              (buffer1 (current-buffer))
-              (buffer2 (window-buffer window2))
-              (w2-quit-restore (window-parameter window2 'quit-restore)))
-          (set-window-buffer window1 buffer2)
-          (set-window-buffer window2 buffer1)
-          (select-window window2)
-          ;; Swap some window state that `magit-mode-quit-window' and
-          ;; `quit-restore-window' inspect.
-          (set-window-prev-buffers window2 (cdr (window-prev-buffers window1)))
-          (set-window-prev-buffers window1 nil)
-          (set-window-parameter window2 'magit-dedicated
-                                (window-parameter window1 'magit-dedicated))
-          (set-window-parameter window1 'magit-dedicated t)
-          (set-window-parameter window1 'quit-restore
-                                (list 'window 'window
-                                      (nth 2 w2-quit-restore)
-                                      (nth 3 w2-quit-restore)))
-          (set-window-parameter window2 'quit-restore nil)
-          window1))))
-
-(defun magit-display-buffer-fullframe-status-topleft-v1 (buffer)
-  "Display BUFFER, filling entire frame if BUFFER is a status buffer.
-When BUFFER derives from `magit-diff-mode' or
-`magit-process-mode', try to display BUFFER to the top or left of
-the current buffer rather than to the bottom or right, as
-`magit-display-buffer-fullframe-status-v1' would.  Whether the
-split is made vertically or horizontally is determined by
-`split-window-preferred-function'."
-  (display-buffer
-   buffer
-   (cond ((eq (with-current-buffer buffer major-mode)
-              'magit-status-mode)
-          '(magit--display-buffer-fullframe))
-         ((with-current-buffer buffer
-            (derived-mode-p 'magit-diff-mode 'magit-process-mode))
-          '(magit--display-buffer-topleft))
-         (t
-          '(display-buffer-same-window)))))
-
-(defun magit--display-buffer-fullcolumn (buffer alist)
-  (when-let ((window (or (display-buffer-reuse-window buffer alist)
-                         (display-buffer-same-window buffer alist)
-                         (display-buffer-below-selected buffer alist))))
-    (delete-other-windows-vertically window)
-    window))
-
-(defun magit-display-buffer-fullcolumn-most-v1 (buffer)
-  "Display BUFFER using the full column except in some cases.
-For most cases where BUFFER's `major-mode' derives from
-`magit-mode', display it in the selected window and grow that
-window to the full height of the frame, deleting other windows in
-that column as necessary.  However, display BUFFER in another
-window if 1) BUFFER's mode derives from `magit-process-mode', or
-2) BUFFER's mode derives from `magit-diff-mode', provided that
-the mode of the current buffer derives from `magit-log-mode' or
-`magit-cherry-mode'."
-  (display-buffer
-   buffer
-   (cond ((and (or git-commit-mode
-                   (derived-mode-p 'magit-log-mode 'magit-cherry-mode))
-               (with-current-buffer buffer
-                 (derived-mode-p 'magit-diff-mode)))
-          nil)
-         ((with-current-buffer buffer
-            (derived-mode-p 'magit-process-mode))
-          nil)
-         (t
-          '(magit--display-buffer-fullcolumn)))))
-
-(defun magit-maybe-set-dedicated ()
-  "Mark the selected window as dedicated if appropriate.
-
-If a new window was created to display the buffer, then remember
-that fact.  That information is used by `magit-mode-quit-window',
-to determine whether the window should be deleted when its last
-Magit buffer is buried."
-  (let ((window (get-buffer-window (current-buffer))))
-    (when (and (window-live-p window)
-               (not (window-prev-buffers window)))
-      (set-window-parameter window 'magit-dedicated t))))
-
-(defvar-local magit--default-directory nil
-  "Value of `default-directory' when buffer is generated.
-This exists to prevent a let-bound `default-directory' from
-tricking `magit-mode-get-buffer' or `magit-mode-get-buffers' into
-thinking a buffer belongs to a repo that it doesn't.")
-(put 'magit--default-directory 'permanent-local t)
-
-(defun magit-mode-get-buffers ()
-  (let ((topdir (magit-toplevel)))
-    (--filter (with-current-buffer it
-                (and (derived-mode-p 'magit-mode)
-                     (equal magit--default-directory topdir)))
-              (buffer-list))))
-
-(defvar-local magit-buffer-locked-p nil)
-(put 'magit-buffer-locked-p 'permanent-local t)
-
-(defun magit-mode-get-buffer (mode &optional create frame value)
-  (when create
-    (error "`magit-mode-get-buffer's CREATE argument is obsolete"))
-  (if-let ((topdir (magit-toplevel)))
-      (--first (with-current-buffer it
-                 (and (eq major-mode mode)
-                      (equal magit--default-directory topdir)
-                      (if value
-                          (and magit-buffer-locked-p
-                               (equal (magit-buffer-lock-value) value))
-                        (not magit-buffer-locked-p))))
-               (if frame
-                   (mapcar #'window-buffer
-                           (window-list (unless (eq frame t) frame)))
-                 (buffer-list)))
-    (magit--not-inside-repository-error)))
-
-(defun magit-generate-new-buffer (mode &optional value)
-  (let* ((name (funcall magit-generate-buffer-name-function mode value))
-         (buffer (generate-new-buffer name)))
-    (with-current-buffer buffer
-      (setq magit--default-directory default-directory)
-      (setq magit-buffer-locked-p (and value t))
-      (magit-restore-section-visibility-cache mode))
-    (when magit-uniquify-buffer-names
-      (add-to-list 'uniquify-list-buffers-directory-modes mode)
-      (with-current-buffer buffer
-        (setq list-buffers-directory (abbreviate-file-name default-directory)))
-      (let ((uniquify-buffer-name-style
-             (if (memq uniquify-buffer-name-style '(nil forward))
-                 'post-forward-angle-brackets
-               uniquify-buffer-name-style)))
-        (uniquify-rationalize-file-buffer-names
-         name (file-name-directory (directory-file-name default-directory))
-         buffer)))
-    buffer))
-
-(defun magit-generate-buffer-name-default-function (mode &optional value)
-  "Generate buffer name for a MODE buffer in the current repository.
-The returned name is based on `magit-buffer-name-format' and
-takes `magit-uniquify-buffer-names' and VALUE, if non-nil, into
-account."
-  (let ((m (substring (symbol-name mode) 0 -5))
-        (v (and value (format "%s" (if (listp value) value (list value)))))
-        (n (if magit-uniquify-buffer-names
-               (file-name-nondirectory
-                (directory-file-name default-directory))
-             (abbreviate-file-name default-directory))))
-    (format-spec
-     magit-buffer-name-format
-     `((?m . ,m)
-       (?M . ,(if (eq mode 'magit-status-mode) "magit" m))
-       (?v . ,(or v ""))
-       (?V . ,(if v (concat " " v) ""))
-       (?t . ,n)
-       (?x . ,(if magit-uniquify-buffer-names "" "*"))
-       (?T . ,(if magit-uniquify-buffer-names n (concat n "*")))))))
-
-(defun magit-toggle-buffer-lock ()
-  "Lock the current buffer to its value or unlock it.
-
-Locking a buffer to its value prevents it from being reused to
-display another value.  The name of a locked buffer contains its
-value, which allows telling it apart from other locked buffers
-and the unlocked buffer.
-
-Not all Magit buffers can be locked to their values, for example
-it wouldn't make sense to lock a status buffer.
-
-There can only be a single unlocked buffer using a certain
-major-mode per repository.  So when a buffer is being unlocked
-and another unlocked buffer already exists for that mode and
-repository, then the former buffer is instead deleted and the
-latter is displayed in its place."
-  (interactive)
-  (if magit-buffer-locked-p
-      (if-let ((unlocked (magit-mode-get-buffer major-mode)))
-          (let ((locked (current-buffer)))
-            (switch-to-buffer unlocked nil t)
-            (kill-buffer locked))
-        (setq magit-buffer-locked-p nil)
-        (rename-buffer (funcall magit-generate-buffer-name-function
-                                major-mode)))
-    (if-let ((value (magit-buffer-lock-value)))
-        (if-let ((locked (magit-mode-get-buffer major-mode nil nil value)))
-            (let ((unlocked (current-buffer)))
-              (switch-to-buffer locked nil t)
-              (kill-buffer unlocked))
-          (setq magit-buffer-locked-p t)
-          (rename-buffer (funcall magit-generate-buffer-name-function
-                                  major-mode value)))
-      (user-error "Buffer has no value it could be locked to"))))
-
-(defvar magit-buffer-lock-functions '((forge-topic-mode . car))
-  "Provide buffer-locking support for third-party modes.
-An alist of symbols to functions.
-
-The symbol must be the major-mode the locked buffer will have.
-
-The function must take a single argument, a list of refresh
-arguments (the value of `magit-refresh-args') and return a
-value that identifies the buffer (i.e., its 'lock value').
-If the third-party mode is invoked as
-
-    (magit-mode-setup-internal #\\='my-mode \\='(1 2 3) t)
-
-the function will be invoked as
-
-    (funcall lock-func \\='(1 2 3))
-
-if the cons (my-mode . lock-func) is in this list.
-
-This variable is intended for third-party extensions;
-`magit-buffer-lock-value' implements all built-in behavior.
-
-See also `magit-toggle-buffer-lock'.")
-
-(cl-defun magit-buffer-lock-value
-    (&optional (mode major-mode)
-               (args magit-refresh-args))
-  "Find an appropriate buffer lock value for MODE under ARGS.
-See also `magit-buffer-lock-functions'."
-  (cl-case mode
-    (magit-cherry-mode
-     (pcase-let ((`(,upstream ,head) args))
-       (concat head ".." upstream)))
-    (magit-diff-mode
-     (pcase-let ((`(,rev-or-range ,const ,_args ,files) args))
-       (nconc (cons (or rev-or-range
-                        (if (member "--cached" const)
-                            (progn (setq const (delete "--cached" const))
-                                   'staged)
-                          'unstaged))
-                    const)
-              (and files (cons "--" files)))))
-    (magit-log-mode
-     (pcase-let ((`(,revs ,_args ,files) args))
-       (if (and revs files)
-           (append revs (cons "--" files))
-         (append revs files))))
-    (magit-refs-mode
-     (pcase-let ((`(,ref ,args) args))
-       (cons (or ref "HEAD") args)))
-    (magit-revision-mode
-     (pcase-let ((`(,rev ,_const ,_args ,files) args))
-       (if files (cons rev files) (list rev))))
-    ((magit-reflog-mode   ; (ref ~args)
-      magit-stash-mode    ; (stash _const _args _files)
-      magit-stashes-mode) ; (ref)
-     (car args))
-    (t
-     (--when-let (cdr (assq mode magit-buffer-lock-functions))
-       (funcall it args)))))
-
-(defun magit-mode-bury-buffer (&optional kill-buffer)
-  "Bury the current buffer.
-With a prefix argument, kill the buffer instead.
-This is done using `magit-bury-buffer-function'."
-  (interactive "P")
-  (funcall magit-bury-buffer-function kill-buffer))
-
-(defun magit-mode-quit-window (kill-buffer)
-  "Quit the selected window and bury its buffer.
-
-This behaves similar to `quit-window', but when the window
-was originally created to display a Magit buffer and the
-current buffer is the last remaining Magit buffer that was
-ever displayed in the selected window, then delete that
-window."
-  (if (or (one-window-p)
-          (--first (let ((buffer (car it)))
-                     (and (not (eq buffer (current-buffer)))
-                          (buffer-live-p buffer)
-                          (or (not (window-parameter nil 'magit-dedicated))
-                              (with-current-buffer buffer
-                                (derived-mode-p 'magit-mode
-                                                'magit-process-mode)))))
-                   (window-prev-buffers)))
-      (quit-window kill-buffer)
-    (let ((window (selected-window)))
-      (quit-window kill-buffer)
-      (when (window-live-p window)
-        (delete-window window)))))
-
-;;; Refresh Magit Buffers
-
-(defvar inhibit-magit-refresh nil)
-
-(defun magit-refresh ()
-  "Refresh some buffers belonging to the current repository.
-
-Refresh the current buffer if its major mode derives from
-`magit-mode', and refresh the corresponding status buffer.
-
-Run hooks `magit-pre-refresh-hook' and `magit-post-refresh-hook'."
-  (interactive)
-  (unless inhibit-magit-refresh
-    (unwind-protect
-        (let ((start (current-time))
-              (magit--refresh-cache (or magit--refresh-cache
-                                        (list (cons 0 0)))))
-          (when magit-refresh-verbose
-            (message "Refreshing magit..."))
-          (magit-run-hook-with-benchmark 'magit-pre-refresh-hook)
-          (when (derived-mode-p 'magit-mode)
-            (magit-refresh-buffer))
-          (--when-let (and magit-refresh-status-buffer
-                           (not (derived-mode-p 'magit-status-mode))
-                           (magit-mode-get-buffer 'magit-status-mode))
-            (with-current-buffer it
-              (magit-refresh-buffer)))
-          (magit-auto-revert-buffers)
-          (cond
-           ((and (not this-command)
-                 (memq last-command magit-post-commit-hook-commands))
-            (magit-run-hook-with-benchmark 'magit-post-commit-hook))
-           ((memq this-command magit-post-stage-hook-commands)
-            (magit-run-hook-with-benchmark 'magit-post-stage-hook))
-           ((memq this-command magit-post-unstage-hook-commands)
-            (magit-run-hook-with-benchmark 'magit-post-unstage-hook)))
-          (magit-run-hook-with-benchmark 'magit-post-refresh-hook)
-          (when magit-refresh-verbose
-            (message "Refreshing magit...done (%.3fs, cached %s/%s)"
-                     (float-time (time-subtract (current-time) start))
-                     (caar magit--refresh-cache)
-                     (+ (caar magit--refresh-cache)
-                        (cdar magit--refresh-cache)))))
-      (run-hooks 'magit-unwind-refresh-hook))))
-
-(defun magit-refresh-all ()
-  "Refresh all buffers belonging to the current repository.
-
-Refresh all Magit buffers belonging to the current repository,
-and revert buffers that visit files located inside the current
-repository.
-
-Run hooks `magit-pre-refresh-hook' and `magit-post-refresh-hook'."
-  (interactive)
-  (magit-run-hook-with-benchmark 'magit-pre-refresh-hook)
-  (dolist (buffer (magit-mode-get-buffers))
-    (with-current-buffer buffer (magit-refresh-buffer)))
-  (magit-auto-revert-buffers)
-  (magit-run-hook-with-benchmark 'magit-post-refresh-hook))
-
-(defvar-local magit-refresh-start-time nil)
-
-(defun magit-refresh-buffer ()
-  "Refresh the current Magit buffer."
-  (setq magit-refresh-start-time (current-time))
-  (let ((refresh (intern (format "%s-refresh-buffer"
-                                 (substring (symbol-name major-mode) 0 -5))))
-        (magit--refresh-cache (or magit--refresh-cache (list (cons 0 0)))))
-    (when (functionp refresh)
-      (when magit-refresh-verbose
-        (message "Refreshing buffer `%s'..." (buffer-name)))
-      (let* ((buffer (current-buffer))
-             (windows
-              (--mapcat (with-selected-window it
-                          (with-current-buffer buffer
-                            (when-let ((section (magit-current-section)))
-                              (list
-                               (nconc (list it section)
-                                      (magit-refresh-get-relative-position))))))
-                        (or (get-buffer-window-list buffer nil t)
-                            (list (selected-window))))))
-        (deactivate-mark)
-        (setq magit-section-highlight-overlays nil)
-        (setq magit-section-highlighted-section nil)
-        (setq magit-section-highlighted-sections nil)
-        (setq magit-section-unhighlight-sections nil)
-        (magit-process-unset-mode-line-error-status)
-        (let ((inhibit-read-only t))
-          (erase-buffer)
-          (save-excursion
-            (apply refresh magit-refresh-args)))
-        (dolist (window windows)
-          (with-selected-window (car window)
-            (with-current-buffer buffer
-              (apply #'magit-section-goto-successor (cdr window)))))
-        (run-hooks 'magit-refresh-buffer-hook)
-        (magit-section-update-highlight)
-        (set-buffer-modified-p nil))
-      (when magit-refresh-verbose
-        (message "Refreshing buffer `%s'...done (%.3fs)" (buffer-name)
-                 (float-time (time-subtract (current-time)
-                                            magit-refresh-start-time)))))))
-
-(defun magit-refresh-get-relative-position ()
-  (when-let ((section (magit-current-section)))
-    (let ((start (oref section start)))
-      (list (count-lines start (point))
-            (- (point) (line-beginning-position))
-            (and (magit-hunk-section-p section)
-                 (region-active-p)
-                 (progn (goto-char (line-beginning-position))
-                        (when  (looking-at "^[-+]") (forward-line))
-                        (while (looking-at "^[ @]") (forward-line))
-                        (let ((beg (point)))
-                          (cond ((looking-at "^[-+]")
-                                 (forward-line)
-                                 (while (looking-at "^[-+]") (forward-line))
-                                 (while (looking-at "^ ")    (forward-line))
-                                 (forward-line -1)
-                                 (regexp-quote (buffer-substring-no-properties
-                                                beg (line-end-position))))
-                                (t t)))))))))
-
-;;; Save File-Visiting Buffers
-
-(defvar disable-magit-save-buffers nil)
-
-(defun magit-pre-command-hook ()
-  (setq disable-magit-save-buffers nil))
-(add-hook 'pre-command-hook #'magit-pre-command-hook)
-
-(defvar magit-after-save-refresh-buffers nil)
-
-(defun magit-after-save-refresh-buffers ()
-  (dolist (buffer magit-after-save-refresh-buffers)
-    (when (buffer-live-p buffer)
-      (with-current-buffer buffer
-        (magit-refresh-buffer))))
-  (setq magit-after-save-refresh-buffers nil)
-  (remove-hook 'post-command-hook 'magit-after-save-refresh-buffers))
-
-(defun magit-after-save-refresh-status ()
-  "Refresh the status buffer of the current repository.
-
-This function is intended to be added to `after-save-hook'.
-
-If the status buffer does not exist or the file being visited in
-the current buffer isn't inside the working tree of a repository,
-then do nothing.
-
-Note that refreshing a Magit buffer is done by re-creating its
-contents from scratch, which can be slow in large repositories.
-If you are not satisfied with Magit's performance, then you
-should obviously not add this function to that hook."
-  (when (and (not disable-magit-save-buffers)
-             (magit-inside-worktree-p t))
-    (--when-let (ignore-errors (magit-mode-get-buffer 'magit-status-mode))
-      (add-to-list 'magit-after-save-refresh-buffers it)
-      (add-hook 'post-command-hook 'magit-after-save-refresh-buffers))))
-
-(defun magit-maybe-save-repository-buffers ()
-  "Maybe save file-visiting buffers belonging to the current repository.
-Do so if `magit-save-repository-buffers' is non-nil.  You should
-not remove this from any hooks, instead set that variable to nil
-if you so desire."
-  (when (and magit-save-repository-buffers
-             (not disable-magit-save-buffers))
-    (setq disable-magit-save-buffers t)
-    (let ((msg (current-message)))
-      (magit-save-repository-buffers
-       (eq magit-save-repository-buffers 'dontask))
-      (when (and msg
-                 (current-message)
-                 (not (equal msg (current-message))))
-        (message "%s" msg)))))
-
-(add-hook 'magit-pre-refresh-hook #'magit-maybe-save-repository-buffers)
-(add-hook 'magit-pre-call-git-hook #'magit-maybe-save-repository-buffers)
-(add-hook 'magit-pre-start-git-hook #'magit-maybe-save-repository-buffers)
-
-(defvar-local magit-inhibit-refresh-save nil)
-
-(defun magit-save-repository-buffers (&optional arg)
-  "Save file-visiting buffers belonging to the current repository.
-After any buffer where `buffer-save-without-query' is non-nil
-is saved without asking, the user is asked about each modified
-buffer which visits a file in the current repository.  Optional
-argument (the prefix) non-nil means save all with no questions."
-  (interactive "P")
-  (when-let ((topdir (magit-rev-parse-safe "--show-toplevel")))
-    (let ((remote (file-remote-p topdir))
-          (save-some-buffers-action-alist
-           `((?Y (lambda (buffer)
-                   (with-current-buffer buffer
-                     (setq buffer-save-without-query t)
-                     (save-buffer)))
-                 "to save the current buffer and remember choice")
-             (?N (lambda (buffer)
-                   (with-current-buffer buffer
-                     (setq magit-inhibit-refresh-save t)))
-                 "to skip the current buffer and remember choice")
-             ,@save-some-buffers-action-alist)))
-      (save-some-buffers
-       arg (lambda ()
-             (and (not magit-inhibit-refresh-save)
-                  buffer-file-name
-                  (file-exists-p (file-name-directory buffer-file-name))
-                  ;; Avoid needlessly connecting to unrelated remotes.
-                  (equal (file-remote-p buffer-file-name)
-                         remote)
-                  (string-prefix-p topdir (file-truename buffer-file-name))
-                  (equal (magit-rev-parse-safe "--show-toplevel")
-                         topdir)))))))
-
-;;; Restore Window Configuration
-
-(defvar magit-inhibit-save-previous-winconf nil)
-
-(defvar-local magit-previous-window-configuration nil)
-(put 'magit-previous-window-configuration 'permanent-local t)
-
-(defun magit-save-window-configuration ()
-  "Save the current window configuration.
-
-Later, when the buffer is buried, it may be restored by
-`magit-restore-window-configuration'."
-  (if magit-inhibit-save-previous-winconf
-      (when (eq magit-inhibit-save-previous-winconf 'unset)
-        (setq magit-previous-window-configuration nil))
-    (unless (get-buffer-window (current-buffer) (selected-frame))
-      (setq magit-previous-window-configuration
-            (current-window-configuration)))))
-
-(defun magit-restore-window-configuration (&optional kill-buffer)
-  "Bury or kill the current buffer and restore previous window configuration."
-  (let ((winconf magit-previous-window-configuration)
-        (buffer (current-buffer))
-        (frame (selected-frame)))
-    (quit-window kill-buffer (selected-window))
-    (when (and winconf (equal frame (window-configuration-frame winconf)))
-      (set-window-configuration winconf)
-      (when (buffer-live-p buffer)
-        (with-current-buffer buffer
-          (setq magit-previous-window-configuration nil))))))
-
-;;; Buffer History
-
-(defun magit-go-backward ()
-  "Move backward in current buffer's history."
-  (interactive)
-  (if help-xref-stack
-      (help-xref-go-back (current-buffer))
-    (user-error "No previous entry in buffer's history")))
-
-(defun magit-go-forward ()
-  "Move forward in current buffer's history."
-  (interactive)
-  (if help-xref-forward-stack
-      (help-xref-go-forward (current-buffer))
-    (user-error "No next entry in buffer's history")))
-
-(defun magit-insert-xref-buttons (&optional _)
-  "Insert xref buttons."
-  (when (or help-xref-stack help-xref-forward-stack)
-    (when help-xref-stack
-      (magit-xref-insert-button help-back-label 'magit-xref-backward))
-    (when help-xref-forward-stack
-      (when help-xref-stack
-        (insert " "))
-      (magit-xref-insert-button help-forward-label 'magit-xref-forward))))
-
-(defun magit-xref-insert-button (label type)
-  (magit-insert-section (button label)
-    (insert-text-button label 'type type
-                        'help-args (list (current-buffer)))))
-
-(define-button-type 'magit-xref-backward
-  :supertype 'help-back
-  'mouse-face 'magit-section-highlight
-  'help-echo (purecopy "mouse-2, RET: go back to previous history entry"))
-
-(define-button-type 'magit-xref-forward
-  :supertype 'help-forward
-  'mouse-face 'magit-section-highlight
-  'help-echo (purecopy "mouse-2, RET: go back to next history entry"))
-
-(defun magit-xref-setup ()
-  "Insert backward/forward buttons if the major-mode supports it.
-Currently `magit-log-mode', `magit-reflog-mode',
-`magit-diff-mode', and `magit-revision-mode' support it"
-  (when (memq major-mode '(magit-log-mode
-                           magit-reflog-mode
-                           magit-diff-mode
-                           magit-revision-mode))
-    (when help-xref-stack-item
-      (push (cons (point) help-xref-stack-item) help-xref-stack)
-      (setq help-xref-forward-stack nil))
-    (when (called-interactively-p 'interactive)
-      (--when-let (nthcdr 10 help-xref-stack)
-        (setcdr it nil)))
-    (setq help-xref-stack-item
-          `(magit-xref-restore ,default-directory ,@magit-refresh-args))))
-
-(defun magit-xref-restore (&rest args)
-  (magit-xref-setup)
-  (setq default-directory  (car args))
-  (setq magit-refresh-args (cdr args))
-  (magit-refresh-buffer))
-
-;;; Repository-Local Cache
-
-(defvar magit-repository-local-cache nil
-  "Alist mapping `magit-toplevel' paths to alists of key/value pairs.")
-
-(defun magit-repository-local-repository ()
-  "Return the key for the current repository."
-  (or (bound-and-true-p magit--default-directory)
-      (magit-toplevel)))
-
-(defun magit-repository-local-set (key value &optional repository)
-  "Set the repository-local VALUE for KEY.
-
-Unless specified, REPOSITORY is the current buffer's repository.
-
-If REPOSITORY is nil (meaning there is no current repository),
-then the value is not cached, and we return nil."
-  (let* ((repokey (or repository (magit-repository-local-repository)))
-         (cache (assoc repokey magit-repository-local-cache)))
-    ;; Don't cache values for a nil REPOSITORY, as the 'set' and 'get'
-    ;; calls for some KEY may happen in unrelated contexts.
-    (when repokey
-      (if cache
-          (let ((keyvalue (assoc key (cdr cache))))
-            (if keyvalue
-                ;; Update pre-existing value for key.
-                (setcdr keyvalue value)
-              ;; No such key in repository-local cache.
-              (push (cons key value) (cdr cache))))
-        ;; No cache for this repository.
-        (push (cons repokey (list (cons key value)))
-              magit-repository-local-cache)))))
-
-(defun magit-repository-local-exists-p (key &optional repository)
-  "Non-nil when a repository-local value exists for KEY.
-
-Returns a (KEY . value) cons cell.
-
-The KEY is matched using `equal'.
-
-Unless specified, REPOSITORY is the current buffer's repository."
-  (let* ((repokey (or repository (magit-repository-local-repository)))
-         (cache (assoc repokey magit-repository-local-cache)))
-    (and cache
-         (assoc key (cdr cache)))))
-
-(defun magit-repository-local-get (key &optional default repository)
-  "Return the repository-local value for KEY.
-
-Return DEFAULT if no value for KEY exists.
-
-The KEY is matched using `equal'.
-
-Unless specified, REPOSITORY is the current buffer's repository."
-  (let ((keyvalue (magit-repository-local-exists-p key repository)))
-    (if keyvalue
-        (cdr keyvalue)
-      default)))
-
-(defun magit-repository-local-delete (key &optional repository)
-  "Delete the repository-local value for KEY.
-
-Unless specified, REPOSITORY is the current buffer's repository."
-  (let* ((repokey (or repository (magit-repository-local-repository)))
-         (cache (assoc repokey magit-repository-local-cache)))
-    (when cache
-      ;; There is no `assoc-delete-all'.
-      (setf (cdr cache)
-            (cl-delete key (cdr cache) :key #'car :test #'equal)))))
-
-(defun magit-zap-caches ()
-  "Zap caches for the current repository.
-Remove the repository's entry from `magit-repository-local-cache'
-and set `magit-section-visibility-cache' to nil in all of the
-repository's Magit buffers."
-  (interactive)
-  (magit-with-toplevel
-    (setq magit-repository-local-cache
-          (cl-delete default-directory
-                     magit-repository-local-cache
-                     :key #'car :test #'equal)))
-  (dolist (buffer (magit-mode-get-buffers))
-    (with-current-buffer buffer
-      (setq magit-section-visibility-cache nil))))
-
-;;; Utilities
-
-(defun magit-run-hook-with-benchmark (hook)
-  (when hook
-    (if magit-refresh-verbose
-        (let ((start (current-time)))
-          (message "Running %s..." hook)
-          (run-hooks hook)
-          (message "Running %s...done (%.3fs)" hook
-                   (float-time (time-subtract (current-time) start))))
-      (run-hooks hook))))
-
-;;; _
-(provide 'magit-mode)
-;;; magit-mode.el ends here
diff --git a/elpa/magit-20181116.1412/magit-mode.elc b/elpa/magit-20181116.1412/magit-mode.elc
deleted file mode 100644
index f6b53c9..0000000
--- a/elpa/magit-20181116.1412/magit-mode.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-notes.el b/elpa/magit-20181116.1412/magit-notes.el
deleted file mode 100644
index e4806a2..0000000
--- a/elpa/magit-20181116.1412/magit-notes.el
+++ /dev/null
@@ -1,202 +0,0 @@
-;;; magit-notes.el --- notes support  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for `git-notes'.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Popup
-
-;;;###autoload (autoload 'magit-notes-popup "magit" nil t)
-(magit-define-popup magit-notes-popup
-  "Popup console for notes commands."
-  :man-page "git-notes"
-  :variables '("Configure local settings"
-               (?c "core.notesRef"
-                   magit-set-core.notesRef
-                   magit-format-core.notesRef)
-               (?d "notes.displayRef"
-                   magit-set-notes.displayRef
-                   magit-format-notes.displayRef)
-               "Configure global settings"
-               (?C "core.notesRef"
-                   magit-set-global-core.notesRef
-                   magit-format-global-core.notesRef)
-               (?D "notes.displayRef"
-                   magit-set-global-notes.displayRef
-                   magit-format-global-notes.displayRef))
-  :switches '("Switch for prune"
-              (?n "Dry run"          "--dry-run"))
-  :options  '("Option for edit and remove"
-              (?r "Manipulate ref"   "--ref=" magit-notes-popup-read-ref)
-              "Option for merge"
-              (?s "Merge strategy"   "--strategy="))
-  :actions  '((?T "Edit"             magit-notes-edit)
-              (?r "Remove"           magit-notes-remove)
-              (?m "Merge"            magit-notes-merge)
-              (?p "Prune"            magit-notes-prune))
-  :sequence-actions '((?c "Commit merge" magit-notes-merge-commit)
-                      (?a "Abort merge"  magit-notes-merge-abort))
-  :sequence-predicate 'magit-notes-merging-p
-  :default-action 'magit-notes-edit)
-
-(defun magit-notes-merging-p ()
-  (let ((dir (magit-git-dir "NOTES_MERGE_WORKTREE")))
-    (and (file-directory-p dir)
-         (directory-files dir nil "^[^.]"))))
-
-(defun magit-format-core.notesRef ()
-  (magit--format-popup-variable:value "core.notesRef" 22))
-
-(defun magit-format-notes.displayRef ()
-  (magit--format-popup-variable:values "notes.displayRef" 22))
-
-(defun magit-format-global-core.notesRef ()
-  (magit--format-popup-variable:value "core.notesRef" 22 t))
-
-(defun magit-format-global-notes.displayRef ()
-  (magit--format-popup-variable:values "notes.displayRef" 22 t))
-
-;;; Commands
-
-(defun magit-notes-edit (commit &optional ref)
-  "Edit the note attached to COMMIT.
-REF is the notes ref used to store the notes.
-
-Interactively or when optional REF is nil use the value of Git
-variable `core.notesRef' or \"refs/notes/commits\" if that is
-undefined."
-  (interactive (magit-notes-read-args "Edit notes"))
-  (magit-run-git-with-editor "notes" (and ref (concat "--ref=" ref))
-                             "edit" commit))
-
-(defun magit-notes-remove (commit &optional ref)
-  "Remove the note attached to COMMIT.
-REF is the notes ref from which the note is removed.
-
-Interactively or when optional REF is nil use the value of Git
-variable `core.notesRef' or \"refs/notes/commits\" if that is
-undefined."
-  (interactive (magit-notes-read-args "Remove notes"))
-  (magit-run-git-with-editor "notes" (and ref (concat "--ref=" ref))
-                             "remove" commit))
-
-(defun magit-notes-merge (ref)
-  "Merge the notes ref REF into the current notes ref.
-
-The current notes ref is the value of Git variable
-`core.notesRef' or \"refs/notes/commits\" if that is undefined.
-
-When there are conflicts, then they have to be resolved in the
-temporary worktree \".git/NOTES_MERGE_WORKTREE\".  When
-done use `magit-notes-merge-commit' to finish.  To abort
-use `magit-notes-merge-abort'."
-  (interactive (list (magit-read-string-ns "Merge reference")))
-  (magit-run-git-with-editor "notes" "merge" ref))
-
-(defun magit-notes-merge-commit ()
-  "Commit the current notes ref merge.
-Also see `magit-notes-merge'."
-  (interactive)
-  (magit-run-git-with-editor "notes" "merge" "--commit"))
-
-(defun magit-notes-merge-abort ()
-  "Abort the current notes ref merge.
-Also see `magit-notes-merge'."
-  (interactive)
-  (magit-run-git-with-editor "notes" "merge" "--abort"))
-
-(defun magit-notes-prune (&optional dry-run)
-  "Remove notes about unreachable commits."
-  (interactive (list (and (member "--dry-run" (magit-notes-arguments)) t)))
-  (when dry-run
-    (magit-process-buffer))
-  (magit-run-git-with-editor "notes" "prune" (and dry-run "--dry-run")))
-
-(defun magit-set-core.notesRef (ref)
-  "Set the local value of `core.notesRef' to REF."
-  (interactive (list (magit-notes-read-ref "Set local core.notesRef")))
-  (magit-set ref "core.notesRef")
-  (magit-with-pre-popup-buffer
-    (magit-refresh)))
-
-(defun magit-set-global-core.notesRef (ref)
-  "Set the global value of `core.notesRef' to REF."
-  (interactive (list (magit-notes-read-ref "Set global core.notesRef")))
-  (magit-set ref "--global" "core.notesRef")
-  (magit-with-pre-popup-buffer
-    (magit-refresh)))
-
-(defun magit-set-notes.displayRef (refs)
-  "Set the local values of `notes.displayRef' to REFS."
-  (interactive (list (magit-notes-read-refs "Set local notes.displayRef")))
-  (magit-set-all refs "notes.displayRef")
-  (magit-with-pre-popup-buffer
-    (magit-refresh)))
-
-(defun magit-set-global-notes.displayRef (refs)
-  "Set the global values of `notes.displayRef' to REFS."
-  (interactive (list (magit-notes-read-refs "Set global notes.displayRef")))
-  (magit-set-all refs "--global" "notes.displayRef")
-  (magit-with-pre-popup-buffer
-    (magit-refresh)))
-
-(defun magit-notes-read-ref (prompt)
-  (--when-let (magit-completing-read
-               prompt (magit-list-notes-refnames) nil nil
-               (--when-let (magit-get "core.notesRef")
-                 (if (string-prefix-p "refs/notes/" it)
-                     (substring it 11)
-                   it)))
-    (if (string-prefix-p "refs/" it)
-        it
-      (concat "refs/notes/" it))))
-
-(defun magit-notes-read-refs (prompt)
-  (mapcar (lambda (ref)
-            (if (string-prefix-p "refs/" ref)
-                ref
-              (concat "refs/notes/" ref)))
-          (completing-read-multiple
-           (concat prompt ": ")
-           (magit-list-notes-refnames) nil nil
-           (mapconcat (lambda (ref)
-                        (if (string-prefix-p "refs/notes/" ref)
-                            (substring ref 11)
-                          ref))
-                      (magit-get-all "notes.displayRef")
-                      ","))))
-
-(defun magit-notes-read-args (prompt)
- (list (magit-read-branch-or-commit prompt (magit-stash-at-point))
-       (--when-let (--first (string-match "^--ref=\\(.+\\)" it)
-                            (magit-notes-arguments))
-         (match-string 1 it))))
-
-;;; _
-(provide 'magit-notes)
-;;; magit-notes.el ends here
diff --git a/elpa/magit-20181116.1412/magit-notes.elc b/elpa/magit-20181116.1412/magit-notes.elc
deleted file mode 100644
index 59231de..0000000
--- a/elpa/magit-20181116.1412/magit-notes.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-obsolete.el b/elpa/magit-20181116.1412/magit-obsolete.el
deleted file mode 100644
index 67a3d1c..0000000
--- a/elpa/magit-20181116.1412/magit-obsolete.el
+++ /dev/null
@@ -1,55 +0,0 @@
-;;; magit-obsolete.el --- obsolete definitions  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library defines aliases for obsolete variables and functions.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Obsolete since v2.90.0
-
-(define-obsolete-function-alias 'magit-reset-head 'magit-reset-mixed "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-gitignore 'magit-gitignore-globally "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-branch 'magit-branch-create "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-tag 'magit-tag-create "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-fetch 'magit-fetch-other "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-pull 'magit-pull-branch "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-rebase 'magit-rebase-branch "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-blame 'magit-blame-addition "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-revert 'magit-revert-and-commit "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-reset 'magit-reset-quickly "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-merge 'magit-merge-plain "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-stash 'magit-stash-both "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-snapshot 'magit-snapshot-both "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-push 'magit-push-other "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-commit 'magit-commit-create "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-log 'magit-log-other "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-reflog 'magit-reflog-other "Magit 2.90.0")
-(define-obsolete-function-alias 'magit-diff 'magit-diff-range "Magit 2.90.0")
-
-;;; _
-(provide 'magit-obsolete)
-;;; magit-obsolete.el ends here
diff --git a/elpa/magit-20181116.1412/magit-obsolete.elc b/elpa/magit-20181116.1412/magit-obsolete.elc
deleted file mode 100644
index 1f4bca3..0000000
--- a/elpa/magit-20181116.1412/magit-obsolete.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-patch.el b/elpa/magit-20181116.1412/magit-patch.el
deleted file mode 100644
index e42b44a..0000000
--- a/elpa/magit-20181116.1412/magit-patch.el
+++ /dev/null
@@ -1,188 +0,0 @@
-;;; magit-patch.el --- creating and applying patches  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements patch commands.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-;;; Options
-
-(defcustom magit-patch-save-arguments '(exclude "--stat")
-  "Arguments used by `magit-patch-save-arguments' (which see)"
-  :package-version '(magit . "2.12.0")
-  :group 'magit-diff
-  :type '(choice (const :tag "use buffer arguments" buffer)
-                 (cons :tag "use buffer arguments except"
-                       (const :format "" exclude)
-                       (repeat :format "%v%i\n"
-                               (string :tag "Argument")))
-                 (repeat :tag "use constant arguments"
-                         (string :tag "Argument"))))
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-patch-popup "magit-patch" nil t)
-(magit-define-popup magit-patch-popup
-  "Popup console for patch commands."
-  :man-page "git-format-patch"
-  :switches '("Switches for formatting patches"
-              (?l "Add cover letter" "--cover-letter"))
-  :options  '("Options for formatting patches"
-              (?f "From"             "--from=")
-              (?t "To"               "--to=")
-              (?c "CC"               "--cc=")
-              (?r "In reply to"      "--in-reply-to=")
-              (?P "Subject Prefix"   "--subject-prefix=")
-              (?v "Reroll count"     "--reroll-count=")
-              (?s "Thread style"     "--thread=")
-              (?U "Context lines"    "-U")
-              (?M "Detect renames"   "-M")
-              (?C "Detect copies"    "-C")
-              (?A "Diff algorithm"   "--diff-algorithm="
-                  magit-diff-select-algorithm)
-              (?o "Output directory" "--output-directory=")
-              (?F "Limit to files"   "-- " magit-read-files))
-  :actions  '((?p "Format patches"   magit-format-patch)
-              (?r "Request pull"     magit-request-pull))
-  :default-action 'magit-format-patch)
-
-;;;###autoload
-(defun magit-format-patch (range args files)
-  "Create patches for the commits in RANGE.
-When a single commit is given for RANGE, create a patch for the
-changes introduced by that commit (unlike 'git format-patch'
-which creates patches for all commits that are reachable from
-`HEAD' but not from the specified commit)."
-  (interactive
-   (cons (if-let ((revs (magit-region-values 'commit t)))
-             (concat (car (last revs)) "^.." (car revs))
-           (let ((range (magit-read-range-or-commit
-                         "Format range or commit")))
-             (if (string-match-p "\\.\\." range)
-                 range
-               (format "%s~..%s" range range))))
-         (magit-popup-export-file-args (magit-patch-arguments))))
-  (magit-run-git "format-patch" range args "--" files)
-  (when (member "--cover-letter" args)
-    (find-file
-     (expand-file-name
-      "0000-cover-letter.patch"
-      (let ((topdir (magit-toplevel)))
-        (or (--some (and (string-match "--output-directory=\\(.+\\)" it)
-                         (expand-file-name (match-string 1 it) topdir))
-                    args)
-            topdir))))))
-
-;;;###autoload
-(defun magit-request-pull (url start end)
-  "Request upstream to pull from you public repository.
-
-URL is the url of your publically accessible repository.
-START is a commit that already is in the upstream repository.
-END is the last commit, usually a branch name, which upstream
-is asked to pull.  START has to be reachable from that commit."
-  (interactive
-   (list (magit-get "remote" (magit-read-remote "Remote") "url")
-         (magit-read-branch-or-commit "Start" (magit-get-upstream-branch))
-         (magit-read-branch-or-commit "End")))
-  (let ((dir default-directory))
-    ;; mu4e changes default-directory
-    (compose-mail)
-    (setq default-directory dir))
-  (message-goto-body)
-  (magit-git-insert "request-pull" start url end)
-  (set-buffer-modified-p nil))
-
-;;;###autoload (autoload 'magit-patch-apply-popup "magit-patch" nil t)
-(magit-define-popup magit-patch-apply-popup
-  "Popup console for applying a patch file."
-  :man-page "git-apply"
-  :switches '((?i "Also apply to index"     "--index")
-              (?c "Only apply to index"     "--cached")
-              (?3 "Fall back on 3way merge" "--3way"))
-  :actions  '((?a "Apply patch" magit-patch-apply))
-  :default-action 'magit-patch-apply)
-
-;;;###autoload
-(defun magit-patch-apply (file &rest args)
-  "Apply the patch file FILE."
-  (interactive (list (expand-file-name
-                      (read-file-name "Apply patch: "
-                                      default-directory nil nil
-                                      (--when-let (magit-file-at-point)
-                                        (file-relative-name it))))
-                     (magit-patch-apply-arguments)))
-  (magit-run-git "apply" args "--" (magit-convert-filename-for-git file)))
-
-;;;###autoload
-(defun magit-patch-save (file &optional arg)
-  "Write current diff into patch FILE.
-
-What arguments are used to create the patch depends on the value
-of `magit-patch-save-arguments' and whether a prefix argument is
-used.
-
-If the value is the symbol `buffer', then use the same arguments
-as the buffer.  With a prefix argument use no arguments.
-
-If the value is a list beginning with the symbol `exclude', then
-use the same arguments as the buffer except for those matched by
-entries in the cdr of the list.  The comparison is done using
-`string-prefix-p'.  With a prefix argument use the same arguments
-as the buffer.
-
-If the value is a list of strings (including the empty list),
-then use those arguments.  With a prefix argument use the same
-arguments as the buffer.
-
-Of course the arguments that are required to actually show the
-same differences as those shown in the buffer are always used."
-  (interactive (list (read-file-name "Write patch file: " default-directory)
-                     current-prefix-arg))
-  (unless (derived-mode-p 'magit-diff-mode)
-    (user-error "Only diff buffers can be saved as patches"))
-  (pcase-let ((`(,rev ,const ,args ,files) magit-refresh-args))
-    (when (derived-mode-p 'magit-revision-mode)
-      (setq rev (format "%s~..%s" rev rev)))
-    (cond ((eq magit-patch-save-arguments 'buffer)
-           (when arg
-             (setq args nil)))
-          ((eq (car-safe magit-patch-save-arguments) 'exclude)
-           (unless arg
-             (setq args (-difference args (cdr magit-patch-save-arguments)))))
-          ((not arg)
-           (setq args magit-patch-save-arguments)))
-    (with-temp-file file
-      (magit-git-insert "diff" rev "-p" const args "--" files)))
-  (magit-refresh))
-
-;;; _
-(provide 'magit-patch)
-;;; magit-patch.el ends here
diff --git a/elpa/magit-20181116.1412/magit-patch.elc b/elpa/magit-20181116.1412/magit-patch.elc
deleted file mode 100644
index 7c2456f..0000000
--- a/elpa/magit-20181116.1412/magit-patch.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-pkg.el b/elpa/magit-20181116.1412/magit-pkg.el
deleted file mode 100644
index ba49103..0000000
--- a/elpa/magit-20181116.1412/magit-pkg.el
+++ /dev/null
@@ -1,11 +0,0 @@
-(define-package "magit" "20181116.1412" "A Git porcelain inside Emacs."
-  '((emacs "25.1")
-    (async "20180527")
-    (dash "20180910")
-    (ghub "20181107")
-    (git-commit "20181104")
-    (magit-popup "20181003")
-    (with-editor "20181103")))
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/magit-20181116.1412/magit-process.el b/elpa/magit-20181116.1412/magit-process.el
deleted file mode 100644
index 6378ffc..0000000
--- a/elpa/magit-20181116.1412/magit-process.el
+++ /dev/null
@@ -1,1122 +0,0 @@
-;;; magit-process.el --- process functionality  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements the tools used to run Git for side-effects.
-
-;; Note that the functions used to run Git and then consume its
-;; output, are defined in `magit-git.el'.  There's a bit of overlap
-;; though.
-
-;;; Code:
-
-(require 'ansi-color)
-(require 'cl-lib)
-(require 'dash)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'with-editor)
-(require 'magit-utils)
-(require 'magit-section)
-(require 'magit-git)
-(require 'magit-mode)
-
-(declare-function auth-source-search "auth-source"
-                  (&rest spec &key max require create delete &allow-other-keys))
-
-;;; Options
-
-(defcustom magit-process-connection-type (not (eq system-type 'cygwin))
-  "Connection type used for the Git process.
-
-If nil, use pipes: this is usually more efficient, and works on Cygwin.
-If t, use ptys: this enables Magit to prompt for passphrases when needed."
-  :group 'magit-process
-  :type '(choice (const :tag "pipe" nil)
-                 (const :tag "pty" t)))
-
-(defcustom magit-need-cygwin-noglob
-  (and (eq system-type 'windows-nt)
-       (with-temp-buffer
-         (let ((process-environment
-                (append magit-git-environment process-environment)))
-           (condition-case e
-               (process-file magit-git-executable
-                             nil (current-buffer) nil
-                             "-c" "alias.echo=!echo" "echo" "x{0}")
-             (file-error
-              (lwarn 'magit-process :warning
-                     "Could not run Git: %S" e))))
-         (equal "x0\n" (buffer-string))))
-  "Whether to use a workaround for Cygwin's globbing behavior.
-
-If non-nil, add environment variables to `process-environment' to
-prevent the git.exe distributed by Cygwin and MSYS2 from
-attempting to perform glob expansion when called from a native
-Windows build of Emacs.  See #2246."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-process
-  :type '(choice (const :tag "Yes" t)
-                 (const :tag "No" nil)))
-
-(defcustom magit-process-popup-time -1
-  "Popup the process buffer if a command takes longer than this many seconds."
-  :group 'magit-process
-  :type '(choice (const :tag "Never" -1)
-                 (const :tag "Immediately" 0)
-                 (integer :tag "After this many seconds")))
-
-(defcustom magit-process-log-max 32
-  "Maximum number of sections to keep in a process log buffer.
-When adding a new section would go beyond the limit set here,
-then the older half of the sections are remove.  Sections that
-belong to processes that are still running are never removed.
-When this is nil, no sections are ever removed."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-process
-  :type '(choice (const :tag "Never remove old sections" nil) integer))
-
-(defcustom magit-process-error-tooltip-max-lines 20
-  "The number of lines for `magit-process-error-lines' to return.
-
-These are displayed in a tooltip for `mode-line-process' errors.
-
-If `magit-process-error-tooltip-max-lines' is nil, the tooltip
-displays the text of `magit-process-error-summary' instead."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-process
-  :type '(choice (const :tag "Use summary line" nil)
-                 integer))
-
-(defcustom magit-credential-cache-daemon-socket
-  (--some (pcase-let ((`(,prog . ,args) (split-string it)))
-            (if (and prog
-                     (string-match-p
-                      "\\`\\(?:\\(?:/.*/\\)?git-credential-\\)?cache\\'" prog))
-                (or (cl-loop for (opt val) on args
-                             if (string= opt "--socket")
-                             return val)
-                    (expand-file-name "~/.git-credential-cache/socket"))))
-          ;; Note: `magit-process-file' is not yet defined when
-          ;; evaluating this form, so we use `process-lines'.
-          (ignore-errors
-            (let ((process-environment
-                   (append magit-git-environment process-environment)))
-              (process-lines magit-git-executable
-                             "config" "--get-all" "credential.helper"))))
-  "If non-nil, start a credential cache daemon using this socket.
-
-When using Git's cache credential helper in the normal way, Emacs
-sends a SIGHUP to the credential daemon after the git subprocess
-has exited, causing the daemon to also quit.  This can be avoided
-by starting the `git-credential-cache--daemon' process directly
-from Emacs.
-
-The function `magit-maybe-start-credential-cache-daemon' takes
-care of starting the daemon if necessary, using the value of this
-option as the socket.  If this option is nil, then it does not
-start any daemon.  Likewise if another daemon is already running,
-then it starts no new daemon.  This function has to be a member
-of the hook variable `magit-credential-hook' for this to work.
-If an error occurs while starting the daemon, most likely because
-the necessary executable is missing, then the function removes
-itself from the hook, to avoid further futile attempts."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-process
-  :type '(choice (file  :tag "Socket")
-                 (const :tag "Don't start a cache daemon" nil)))
-
-(defcustom magit-process-yes-or-no-prompt-regexp
-  " [\[(]\\([Yy]\\(?:es\\)?\\)[/|]\\([Nn]o?\\)[\])] ?[?:] ?$"
-  "Regexp matching Yes-or-No prompts of Git and its subprocesses."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-process
-  :type 'regexp)
-
-(defcustom magit-process-password-prompt-regexps
-  '("^\\(Enter \\)?[Pp]assphrase\\( for \\(RSA \\)?key '.*'\\)?: ?$"
-    ;; Match-group 99 is used to identify the "user@host" part.
-    "^\\(Enter \\)?[Pp]assword\\( for '\\(https?://\\)?\\(?99:.*\\)'\\)?: ?$"
-    "^.*'s password: ?$"
-    "^Yubikey for .*: ?$"
-    "^Enter PIN for .*: ?$")
-  "List of regexps matching password prompts of Git and its subprocesses.
-Also see `magit-process-find-password-functions'."
-  :package-version '(magit . "2.8.0")
-  :group 'magit-process
-  :type '(repeat (regexp)))
-
-(defcustom magit-process-find-password-functions nil
-  "List of functions to try in sequence to get a password.
-
-These functions may be called when git asks for a password, which
-is detected using `magit-process-password-prompt-regexps'.  They
-are called if and only if matching the prompt resulted in the
-value of the 99th submatch to be non-nil.  Therefore users can
-control for which prompts these functions should be called by
-putting the host name in the 99th submatch, or not.
-
-If the functions are called, then they are called in the order
-given, with the host name as only argument, until one of them
-returns non-nil.  If they are not called or none of them returns
-non-nil, then the password is read from the user instead."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-process
-  :type 'hook
-  :options '(magit-process-password-auth-source))
-
-(defcustom magit-process-username-prompt-regexps
-  '("^Username for '.*': ?$")
-  "List of regexps matching username prompts of Git and its subprocesses."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-process
-  :type '(repeat (regexp)))
-
-(defcustom magit-process-ensure-unix-line-ending t
-  "Whether Magit should ensure a unix coding system when talking to Git."
-  :package-version '(magit . "2.6.0")
-  :group 'magit-process
-  :type 'boolean)
-
-(defcustom magit-process-display-mode-line-error t
-  "Whether Magit should retain and highlight process errors in the mode line."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-process
-  :type 'boolean)
-
-(defface magit-process-ok
-  '((t :inherit magit-section-heading :foreground "green"))
-  "Face for zero exit-status."
-  :group 'magit-faces)
-
-(defface magit-process-ng
-  '((t :inherit magit-section-heading :foreground "red"))
-  "Face for non-zero exit-status."
-  :group 'magit-faces)
-
-(defface magit-mode-line-process
-  '((t :inherit mode-line-emphasis))
-  "Face for `mode-line-process' status when Git is running for side-effects."
-  :group 'magit-faces)
-
-(defface magit-mode-line-process-error
-  '((t :inherit error))
-  "Face for `mode-line-process' error status.
-
-Used when `magit-process-display-mode-line-error' is non-nil."
-  :group 'magit-faces)
-
-;;; Process Mode
-
-(defvar magit-process-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-mode-map)
-    map)
-  "Keymap for `magit-process-mode'.")
-
-(define-derived-mode magit-process-mode magit-mode "Magit Process"
-  "Mode for looking at Git process output."
-  :group 'magit-process
-  (hack-dir-local-variables-non-file-buffer)
-  (setq imenu-prev-index-position-function
-        'magit-imenu--process-prev-index-position-function)
-  (setq imenu-extract-index-name-function
-        'magit-imenu--process-extract-index-name-function))
-
-(defun magit-process-buffer (&optional nodisplay)
-  "Display the current repository's process buffer.
-
-If that buffer doesn't exist yet, then create it.
-Non-interactively return the buffer and unless
-optional NODISPLAY is non-nil also display it."
-  (interactive)
-  (let ((topdir (magit-toplevel)))
-    (unless topdir
-      (magit--with-safe-default-directory nil
-        (setq topdir default-directory)
-        (let (prev)
-          (while (not (equal topdir prev))
-            (setq prev topdir)
-            (setq topdir (file-name-directory (directory-file-name topdir)))))))
-    (let ((buffer (or (--first (with-current-buffer it
-                                 (and (eq major-mode 'magit-process-mode)
-                                      (equal default-directory topdir)))
-                               (buffer-list))
-                      (let ((default-directory topdir))
-                        (magit-generate-new-buffer 'magit-process-mode)))))
-      (with-current-buffer buffer
-        (if magit-root-section
-            (when magit-process-log-max
-              (magit-process-truncate-log))
-          (magit-process-mode)
-          (let ((inhibit-read-only t)
-                (magit-insert-section--parent  nil)
-                (magit-insert-section--oldroot nil))
-            (make-local-variable 'text-property-default-nonsticky)
-            (magit-insert-section (processbuf)
-              (insert "\n")))))
-      (unless nodisplay
-        (magit-display-buffer buffer))
-      buffer)))
-
-(defun magit-process-kill ()
-  "Kill the process at point."
-  (interactive)
-  (when-let ((process (magit-section-value-if 'process)))
-    (unless (eq (process-status process) 'run)
-      (user-error "Process isn't running"))
-    (magit-confirm 'kill-process)
-    (kill-process process)))
-
-;;; Synchronous Processes
-
-(defvar magit-process-raise-error nil)
-
-(defun magit-git (&rest args)
-  "Call Git synchronously in a separate process, for side-effects.
-
-Option `magit-git-executable' specifies the Git executable.
-The arguments ARGS specify arguments to Git, they are flattened
-before use.
-
-Process output goes into a new section in the buffer returned by
-`magit-process-buffer'.  If Git exits with a non-zero status,
-then raise an error."
-  (let ((magit-process-raise-error t))
-    (magit-call-git args)))
-
-(defun magit-run-git (&rest args)
-  "Call Git synchronously in a separate process, and refresh.
-
-Option `magit-git-executable' specifies the Git executable and
-option `magit-git-global-arguments' specifies constant arguments.
-The arguments ARGS specify arguments to Git, they are flattened
-before use.
-
-After Git returns, the current buffer (if it is a Magit buffer)
-as well as the current repository's status buffer are refreshed.
-
-Process output goes into a new section in the buffer returned by
-`magit-process-buffer'."
-  (let ((magit--refresh-cache (list (cons 0 0))))
-    (magit-call-git args)
-    (when (member (car args) '("init" "clone"))
-      ;; Creating a new repository invalidates the cache.
-      (setq magit--refresh-cache nil))
-    (magit-refresh)))
-
-(defvar magit-pre-call-git-hook nil)
-
-(defun magit-call-git (&rest args)
-  "Call Git synchronously in a separate process.
-
-Option `magit-git-executable' specifies the Git executable and
-option `magit-git-global-arguments' specifies constant arguments.
-The arguments ARGS specify arguments to Git, they are flattened
-before use.
-
-Process output goes into a new section in the buffer returned by
-`magit-process-buffer'."
-  (run-hooks 'magit-pre-call-git-hook)
-  (let ((default-process-coding-system (magit--process-coding-system)))
-    (apply #'magit-call-process magit-git-executable
-           (magit-process-git-arguments args))))
-
-(defun magit-call-process (program &rest args)
-  "Call PROGRAM synchronously in a separate process.
-Process output goes into a new section in the buffer returned by
-`magit-process-buffer'."
-  (pcase-let ((`(,process-buf . ,section)
-               (magit-process-setup program args)))
-    (magit-process-finish
-     (let ((inhibit-read-only t))
-       (apply #'magit-process-file program nil process-buf nil args))
-     process-buf (current-buffer) default-directory section)))
-
-(defun magit-process-file (process &optional infile buffer display &rest args)
-  "Process files synchronously in a separate process.
-Identical to `process-file' but temporarily enable Cygwin's
-\"noglob\" option during the call and ensure unix eol
-conversion."
-  (let ((process-environment (magit-process-environment))
-        (default-process-coding-system (magit--process-coding-system)))
-    (apply #'process-file process infile buffer display args)))
-
-(defun magit-process-environment ()
-  ;; The various w32 hacks are only applicable when running on the
-  ;; local machine.  As of Emacs 25.1, a local binding of
-  ;; process-environment different from the top-level value affects
-  ;; the environment used in
-  ;; tramp-sh-handle-{start-file-process,process-file}.
-  (let ((local (not (file-remote-p default-directory))))
-    (append magit-git-environment
-            (and local
-                 (cdr (assoc magit-git-executable magit-git-w32-path-hack)))
-            (and local magit-need-cygwin-noglob
-                 (mapcar (lambda (var)
-                           (concat var "=" (--if-let (getenv var)
-                                               (concat it " noglob")
-                                             "noglob")))
-                         '("CYGWIN" "MSYS")))
-            process-environment)))
-
-(defvar magit-this-process nil)
-
-(defun magit-run-git-with-input (&rest args)
-  "Call Git in a separate process.
-ARGS is flattened and then used as arguments to Git.
-
-The current buffer's content is used as the process' standard
-input.
-
-Option `magit-git-executable' specifies the Git executable and
-option `magit-git-global-arguments' specifies constant arguments.
-The remaining arguments ARGS specify arguments to Git, they are
-flattened before use."
-  (when (eq system-type 'windows-nt)
-    ;; On w32, git expects UTF-8 encoded input, ignore any user
-    ;; configuration telling us otherwise (see #3250).
-    (encode-coding-region (point-min) (point-max) 'utf-8-unix))
-  (if (file-remote-p default-directory)
-      ;; We lack `process-file-region', so fall back to asynch +
-      ;; waiting in remote case.
-      (progn
-        (magit-start-git (current-buffer) args)
-        (while (and magit-this-process
-                    (eq (process-status magit-this-process) 'run))
-          (sleep-for 0.005)))
-    (run-hooks 'magit-pre-call-git-hook)
-    (pcase-let* ((process-environment (magit-process-environment))
-                 (default-process-coding-system (magit--process-coding-system))
-                 (flat-args (magit-process-git-arguments args))
-                 (`(,process-buf . ,section)
-                  (magit-process-setup magit-git-executable flat-args))
-                 (inhibit-read-only t))
-      (magit-process-finish
-       (apply #'call-process-region (point-min) (point-max)
-              magit-git-executable nil process-buf nil flat-args)
-       process-buf nil default-directory section))))
-
-(defun magit-run-git-with-logfile (file &rest args)
-  "Call Git in a separate process and log its output to FILE.
-This function might have a short halflive."
-  (apply #'magit-process-file magit-git-executable nil `(:file ,file) nil
-         (magit-process-git-arguments args))
-  (magit-refresh))
-
-;;; Asynchronous Processes
-
-(defun magit-run-git-async (&rest args)
-  "Start Git, prepare for refresh, and return the process object.
-ARGS is flattened and then used as arguments to Git.
-
-Display the command line arguments in the echo area.
-
-After Git returns some buffers are refreshed: the buffer that was
-current when this function was called (if it is a Magit buffer
-and still alive), as well as the respective Magit status buffer.
-
-See `magit-start-process' for more information."
-  (message "Running %s %s" magit-git-executable
-           (let ((m (mapconcat #'identity (-flatten args) " ")))
-             (remove-list-of-text-properties 0 (length m) '(face) m)
-             m))
-  (magit-start-git nil args))
-
-(defun magit-run-git-with-editor (&rest args)
-  "Export GIT_EDITOR and start Git.
-Also prepare for refresh and return the process object.
-ARGS is flattened and then used as arguments to Git.
-
-Display the command line arguments in the echo area.
-
-After Git returns some buffers are refreshed: the buffer that was
-current when this function was called (if it is a Magit buffer
-and still alive), as well as the respective Magit status buffer.
-
-See `magit-start-process' and `with-editor' for more information."
-  (magit--record-separated-gitdir)
-  (magit-with-editor (magit-run-git-async args)))
-
-(defun magit-run-git-sequencer (&rest args)
-  "Export GIT_EDITOR and start Git.
-Also prepare for refresh and return the process object.
-ARGS is flattened and then used as arguments to Git.
-
-Display the command line arguments in the echo area.
-
-After Git returns some buffers are refreshed: the buffer that was
-current when this function was called (if it is a Magit buffer
-and still alive), as well as the respective Magit status buffer.
-If the sequence stops at a commit, make the section representing
-that commit the current section by moving `point' there.
-
-See `magit-start-process' and `with-editor' for more information."
-  (apply #'magit-run-git-with-editor args)
-  (set-process-sentinel magit-this-process #'magit-sequencer-process-sentinel)
-  magit-this-process)
-
-(defvar magit-pre-start-git-hook nil)
-
-(defun magit-start-git (input &rest args)
-  "Start Git, prepare for refresh, and return the process object.
-
-If INPUT is non-nil, it has to be a buffer or the name of an
-existing buffer.  The buffer content becomes the processes
-standard input.
-
-Option `magit-git-executable' specifies the Git executable and
-option `magit-git-global-arguments' specifies constant arguments.
-The remaining arguments ARGS specify arguments to Git, they are
-flattened before use.
-
-After Git returns some buffers are refreshed: the buffer that was
-current when this function was called (if it is a Magit buffer
-and still alive), as well as the respective Magit status buffer.
-
-See `magit-start-process' for more information."
-  (run-hooks 'magit-pre-start-git-hook)
-  (let ((default-process-coding-system (magit--process-coding-system)))
-    (apply #'magit-start-process magit-git-executable input
-           (magit-process-git-arguments args))))
-
-(defun magit-start-process (program &optional input &rest args)
-  "Start PROGRAM, prepare for refresh, and return the process object.
-
-If optional argument INPUT is non-nil, it has to be a buffer or
-the name of an existing buffer.  The buffer content becomes the
-processes standard input.
-
-The process is started using `start-file-process' and then setup
-to use the sentinel `magit-process-sentinel' and the filter
-`magit-process-filter'.  Information required by these functions
-is stored in the process object.  When this function returns the
-process has not started to run yet so it is possible to override
-the sentinel and filter.
-
-After the process returns, `magit-process-sentinel' refreshes the
-buffer that was current when `magit-start-process' was called (if
-it is a Magit buffer and still alive), as well as the respective
-Magit status buffer."
-  (pcase-let*
-      ((`(,process-buf . ,section)
-        (magit-process-setup program args))
-       (process
-        (let ((process-connection-type
-               ;; Don't use a pty, because it would set icrnl
-               ;; which would modify the input (issue #20).
-               (and (not input) magit-process-connection-type))
-              (process-environment (magit-process-environment))
-              (default-process-coding-system (magit--process-coding-system)))
-          (apply #'start-file-process
-                 (file-name-nondirectory program)
-                 process-buf program args))))
-    (with-editor-set-process-filter process #'magit-process-filter)
-    (set-process-sentinel process #'magit-process-sentinel)
-    (set-process-buffer   process process-buf)
-    (when (eq system-type 'windows-nt)
-      ;; On w32, git expects UTF-8 encoded input, ignore any user
-      ;; configuration telling us otherwise.
-      (set-process-coding-system process 'utf-8-unix))
-    (process-put process 'section section)
-    (process-put process 'command-buf (current-buffer))
-    (process-put process 'default-dir default-directory)
-    (when inhibit-magit-refresh
-      (process-put process 'inhibit-refresh t))
-    (oset section process process)
-    (with-current-buffer process-buf
-      (set-marker (process-mark process) (point)))
-    (when input
-      (with-current-buffer input
-        (process-send-region process (point-min) (point-max))
-        (process-send-eof    process)))
-    (setq magit-this-process process)
-    (oset section value process)
-    (magit-process-display-buffer process)
-    process))
-
-(defun magit-parse-git-async (&rest args)
-  (setq args (magit-process-git-arguments args))
-  (let ((command-buf (current-buffer))
-        (process-buf (generate-new-buffer " *temp*"))
-        (toplevel (magit-toplevel)))
-    (with-current-buffer process-buf
-      (setq default-directory toplevel)
-      (let ((process
-             (let ((process-connection-type nil)
-                   (process-environment (magit-process-environment))
-                   (default-process-coding-system
-                     (magit--process-coding-system)))
-               (apply #'start-file-process "git" process-buf
-                      magit-git-executable args))))
-        (process-put process 'command-buf command-buf)
-        (process-put process 'parsed (point))
-        (setq magit-this-process process)
-        process))))
-
-;;; Process Internals
-
-(defun magit-process-setup (program args)
-  (magit-process-set-mode-line program args)
-  (let ((pwd default-directory)
-        (buf (magit-process-buffer t)))
-    (cons buf (with-current-buffer buf
-                (prog1 (magit-process-insert-section pwd program args nil nil)
-                  (backward-char 1))))))
-
-(defun magit-process-insert-section (pwd program args &optional errcode errlog)
-  (let ((inhibit-read-only t)
-        (magit-insert-section--parent magit-root-section)
-        (magit-insert-section--oldroot nil))
-    (goto-char (1- (point-max)))
-    (magit-insert-section (process)
-      (insert (if errcode
-                  (format "%3s " (propertize (number-to-string errcode)
-                                             'face 'magit-process-ng))
-                "run "))
-      (unless (equal (expand-file-name pwd)
-                     (expand-file-name default-directory))
-        (insert (file-relative-name pwd default-directory) ?\s))
-      (cond
-       ((and args (equal program magit-git-executable))
-        (setq args (-split-at (length magit-git-global-arguments) args))
-        (insert (propertize (file-name-nondirectory program)
-                            'face 'magit-section-heading) " ")
-        (insert (propertize (char-to-string magit-ellipsis)
-                            'face 'magit-section-heading
-                            'help-echo (mapconcat #'identity (car args) " ")))
-        (insert " ")
-        (insert (propertize (mapconcat #'shell-quote-argument (cadr args) " ")
-                            'face 'magit-section-heading)))
-       ((and args (equal program shell-file-name))
-        (insert (propertize (cadr args) 'face 'magit-section-heading)))
-       (t
-        (insert (propertize (file-name-nondirectory program)
-                            'face 'magit-section-heading) " ")
-        (insert (propertize (mapconcat #'shell-quote-argument args " ")
-                            'face 'magit-section-heading))))
-      (magit-insert-heading)
-      (when errlog
-        (insert-file-contents errlog)
-        (goto-char (1- (point-max))))
-      (insert "\n"))))
-
-(defun magit-process-truncate-log ()
-  (let* ((head nil)
-         (tail (oref magit-root-section children))
-         (count (length tail)))
-    (when (> (1+ count) magit-process-log-max)
-      (while (and (cdr tail)
-                  (> count (/ magit-process-log-max 2)))
-        (let* ((inhibit-read-only t)
-               (section (car tail))
-               (process (oref section process)))
-          (cond ((not process))
-                ((memq (process-status process) '(exit signal))
-                 (delete-region (oref section start)
-                                (1+ (oref section end)))
-                 (cl-decf count))
-                (t
-                 (push section head))))
-        (pop tail))
-      (oset magit-root-section children
-            (nconc (reverse head) tail)))))
-
-(defun magit-process-sentinel (process event)
-  "Default sentinel used by `magit-start-process'."
-  (when (memq (process-status process) '(exit signal))
-    (setq event (substring event 0 -1))
-    (when (string-match "^finished" event)
-      (message (concat (capitalize (process-name process)) " finished")))
-    (magit-process-finish process)
-    (when (eq process magit-this-process)
-      (setq magit-this-process nil))
-    (unless (process-get process 'inhibit-refresh)
-      (let ((command-buf (process-get process 'command-buf)))
-        (if (buffer-live-p command-buf)
-            (with-current-buffer command-buf
-              (magit-refresh))
-          (with-temp-buffer
-            (setq default-directory (process-get process 'default-dir))
-            (magit-refresh)))))))
-
-(defun magit-sequencer-process-sentinel (process event)
-  "Special sentinel used by `magit-run-git-sequencer'."
-  (when (memq (process-status process) '(exit signal))
-    (magit-process-sentinel process event)
-    (when-let ((process-buf (process-buffer process)))
-      (when (buffer-live-p process-buf)
-        (when-let ((status-buf (with-current-buffer process-buf
-                                 (magit-mode-get-buffer 'magit-status-mode))))
-          (with-current-buffer status-buf
-            (--when-let
-                (magit-get-section
-                 `((commit . ,(magit-rev-parse "HEAD"))
-                   (,(pcase (car (cadr (-split-at
-                                        (1+ (length magit-git-global-arguments))
-                                        (process-command process))))
-                       ((or "rebase" "am")   'rebase-sequence)
-                       ((or "cherry-pick" "revert") 'sequence)))
-                   (status)))
-              (goto-char (oref it start))
-              (magit-section-update-highlight))))))))
-
-(defun magit-process-filter (proc string)
-  "Default filter used by `magit-start-process'."
-  (with-current-buffer (process-buffer proc)
-    (let ((inhibit-read-only t))
-      (magit-process-yes-or-no-prompt proc string)
-      (magit-process-username-prompt  proc string)
-      (magit-process-password-prompt  proc string)
-      (goto-char (process-mark proc))
-      (setq string (propertize string 'magit-section
-                               (process-get proc 'section)))
-      ;; Find last ^M in string.  If one was found, ignore
-      ;; everything before it and delete the current line.
-      (let ((ret-pos (length string)))
-        (while (and (>= (cl-decf ret-pos) 0)
-                    (/= ?\r (aref string ret-pos))))
-        (if (< ret-pos 0)
-            (insert string)
-          (delete-region (line-beginning-position) (point))
-          (insert (substring string (1+ ret-pos)))))
-      (set-marker (process-mark proc) (point)))))
-
-(defmacro magit-process-kill-on-abort (proc &rest body)
-  (declare (indent 1) (debug (form body)))
-  (let ((map (cl-gensym)))
-    `(let ((,map (make-sparse-keymap)))
-       (set-keymap-parent ,map minibuffer-local-map)
-       (define-key ,map "\C-g"
-         (lambda ()
-           (interactive)
-           (ignore-errors (kill-process ,proc))
-           (abort-recursive-edit)))
-       (let ((minibuffer-local-map ,map))
-         ,@body))))
-
-(defun magit-process-yes-or-no-prompt (process string)
-  "Forward Yes-or-No prompts to the user."
-  (when-let ((beg (string-match magit-process-yes-or-no-prompt-regexp string)))
-    (let ((max-mini-window-height 30))
-      (process-send-string
-       process
-       (downcase
-        (concat
-         (match-string
-          (if (save-match-data
-                (magit-process-kill-on-abort process
-                  (yes-or-no-p (substring string 0 beg)))) 1 2)
-          string)
-         "\n"))))))
-
-(defun magit-process-password-auth-source (key)
-  "Use `auth-source-search' to get a password.
-If found, return the password.  Otherwise, return nil.
-
-To use this function add it to the appropriate hook
-  (add-hook 'magit-process-find-password-functions
-            'magit-process-password-auth-source)
-
-KEY typically derives from a prompt such as:
-  Password for 'https://tarsius@bitbucket.org'
-in which case it would be the string
-  tarsius@bitbucket.org
-which matches the ~/.authinfo.gpg entry
-  machine bitbucket.org login tarsius password 12345
-or iff that is undefined, for backward compatibility
-  machine tarsius@bitbucket.org password 12345"
-  (require 'auth-source)
-  (and (string-match "\\`\\([^@]+\\)@\\([^@]+\\)\\'" key)
-       (let* ((user (match-string 1 key))
-              (host (match-string 2 key))
-              (secret
-               (plist-get
-                (car (or (auth-source-search :max 1 :host host :user user)
-                         (auth-source-search :max 1 :host key)))
-                :secret)))
-         (if (functionp secret)
-             (funcall secret)
-           secret))))
-
-(defun magit-process-password-prompt (process string)
-  "Find a password based on prompt STRING and send it to git.
-Use `magit-process-password-prompt-regexps' to find a known
-prompt.  If and only if one is found, then call functions in
-`magit-process-find-password-functions' until one of them returns
-the password.  If all function return nil, then read the password
-from the user."
-  (when-let ((prompt (magit-process-match-prompt
-                      magit-process-password-prompt-regexps string)))
-    (process-send-string
-     process (magit-process-kill-on-abort process
-               (concat (or (when-let ((key (match-string 99 string)))
-                             (run-hook-with-args-until-success
-                              'magit-process-find-password-functions key))
-                           (read-passwd prompt))
-                       "\n")))))
-
-(defun magit-process-username-prompt (process string)
-  "Forward username prompts to the user."
-  (--when-let (magit-process-match-prompt
-               magit-process-username-prompt-regexps string)
-    (process-send-string
-     process (magit-process-kill-on-abort process
-               (concat (read-string it nil nil (user-login-name)) "\n")))))
-
-(defun magit-process-match-prompt (prompts string)
-  "Match STRING against PROMPTS and set match data.
-Return the matched string suffixed with \": \", if needed."
-  (when (--any-p (string-match it string) prompts)
-    (let ((prompt (match-string 0 string)))
-      (cond ((string-suffix-p ": " prompt) prompt)
-            ((string-suffix-p ":"  prompt) (concat prompt " "))
-            (t                             (concat prompt ": "))))))
-
-(defun magit--process-coding-system ()
-  (let ((fro (or magit-git-output-coding-system
-                 (car default-process-coding-system)))
-        (to (cdr default-process-coding-system)))
-    (if magit-process-ensure-unix-line-ending
-        (cons (coding-system-change-eol-conversion fro 'unix)
-              (coding-system-change-eol-conversion to 'unix))
-      (cons fro to))))
-
-(defvar magit-credential-hook nil
-  "Hook run before Git needs credentials.")
-
-(defvar magit-credential-cache-daemon-process nil)
-
-(defun magit-maybe-start-credential-cache-daemon ()
-  "Maybe start a `git-credential-cache--daemon' process.
-
-If such a process is already running or if the value of option
-`magit-credential-cache-daemon-socket' is nil, then do nothing.
-Otherwise start the process passing the value of that options
-as argument."
-  (unless (or (not magit-credential-cache-daemon-socket)
-              (process-live-p magit-credential-cache-daemon-process)
-              (memq magit-credential-cache-daemon-process
-                    (list-system-processes)))
-    (setq magit-credential-cache-daemon-process
-          (or (--first (let* ((attr (process-attributes it))
-                              (comm (cdr (assq 'comm attr)))
-                              (user (cdr (assq 'user attr))))
-                         (and (string= comm "git-credential-cache--daemon")
-                              (string= user user-login-name)))
-                       (list-system-processes))
-              (condition-case nil
-                  (start-process "git-credential-cache--daemon"
-                                 " *git-credential-cache--daemon*"
-                                 magit-git-executable
-                                 "credential-cache--daemon"
-                                 magit-credential-cache-daemon-socket)
-                ;; Some Git implementations (e.g. Windows) won't have
-                ;; this program; if we fail the first time, stop trying.
-                ((debug error)
-                 (remove-hook 'magit-credential-hook
-                              #'magit-maybe-start-credential-cache-daemon)))))))
-
-(add-hook 'magit-credential-hook #'magit-maybe-start-credential-cache-daemon)
-
-(defun tramp-sh-handle-start-file-process--magit-tramp-process-environment
-    (fn name buffer program &rest args)
-  (if magit-tramp-process-environment
-      (apply fn name buffer
-             (car magit-tramp-process-environment)
-             (append (cdr magit-tramp-process-environment)
-                     (cons program args)))
-    (apply fn name buffer program args)))
-
-(advice-add 'tramp-sh-handle-start-file-process :around
-            'tramp-sh-handle-start-file-process--magit-tramp-process-environment)
-
-(defun tramp-sh-handle-process-file--magit-tramp-process-environment
-    (fn program &optional infile destination display &rest args)
-  (if magit-tramp-process-environment
-      (apply fn "env" infile destination display
-             (append magit-tramp-process-environment
-                     (cons program args)))
-    (apply fn program infile destination display args)))
-
-(advice-add 'tramp-sh-handle-process-file :around
-            'tramp-sh-handle-process-file--magit-tramp-process-environment)
-
-(defvar magit-mode-line-process-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map (kbd "<mode-line> <mouse-1>")
-      'magit-process-buffer)
-    map)
-  "Keymap for `mode-line-process'.")
-
-(defun magit-process-set-mode-line (program args)
-  "Display the git command (sans arguments) in the mode line."
-  (when (equal program magit-git-executable)
-    (setq args (nthcdr (length magit-git-global-arguments) args)))
-  (let ((str (concat " " (propertize
-                          (concat (file-name-nondirectory program)
-                                  (and args (concat " " (car args))))
-                          'mouse-face 'highlight
-                          'keymap magit-mode-line-process-map
-                          'help-echo "mouse-1: Show process buffer"
-                          'face 'magit-mode-line-process))))
-    (magit-repository-local-set 'mode-line-process str)
-    (dolist (buf (magit-mode-get-buffers))
-      (with-current-buffer buf
-        (setq mode-line-process str)))
-    (force-mode-line-update t)))
-
-(defun magit-process-set-mode-line-error-status (&optional error str)
-  "Apply an error face to the string set by `magit-process-set-mode-line'.
-
-If ERROR is supplied, include it in the `mode-line-process' tooltip.
-
-If STR is supplied, it replaces the `mode-line-process' text."
-  (setq str (or str (magit-repository-local-get 'mode-line-process)))
-  (when str
-    (setq error (format "%smouse-1: Show process buffer"
-                        (if (stringp error)
-                            (concat error "\n\n")
-                          "")))
-    (setq str (concat " " (propertize
-                           (substring-no-properties str 1)
-                           'mouse-face 'highlight
-                           'keymap magit-mode-line-process-map
-                           'help-echo error
-                           'face 'magit-mode-line-process-error)))
-    (magit-repository-local-set 'mode-line-process str)
-    (dolist (buf (magit-mode-get-buffers))
-      (with-current-buffer buf
-        (setq mode-line-process str)))
-    (force-mode-line-update t)
-    ;; We remove any error status from the mode line when a magit
-    ;; buffer is refreshed (see `magit-refresh-buffer'), but we must
-    ;; ensure that we ignore any refreshes during the remainder of the
-    ;; current command -- otherwise a newly-set error status would be
-    ;; removed before it was seen.  We set a flag which prevents the
-    ;; status from being removed prior to the next command, so that
-    ;; the error status is guaranteed to remain visible until then.
-    (let ((repokey (magit-repository-local-repository)))
-      ;; The following closure captures the repokey value, and is
-      ;; added to `pre-command-hook'.
-      (cl-labels ((enable-magit-process-unset-mode-line
-                   () ;; Remove ourself from the hook variable, so
-                      ;; that we only run once.
-                   (remove-hook 'pre-command-hook
-                                #'enable-magit-process-unset-mode-line)
-                   ;; Clear the inhibit flag for the repository in
-                   ;; which we set it.
-                   (magit-repository-local-set
-                    'inhibit-magit-process-unset-mode-line nil repokey)))
-        ;; Set the inhibit flag until the next command is invoked.
-        (magit-repository-local-set
-         'inhibit-magit-process-unset-mode-line t repokey)
-        (add-hook 'pre-command-hook
-                  #'enable-magit-process-unset-mode-line)))))
-
-(defun magit-process-unset-mode-line-error-status ()
-  "Remove any current error status from the mode line."
-  (let ((status (or mode-line-process
-                    (magit-repository-local-get 'mode-line-process))))
-    (when (and status
-               (eq (get-text-property 1 'face status)
-                   'magit-mode-line-process-error))
-      (magit-process-unset-mode-line))))
-
-(defun magit-process-unset-mode-line ()
-  "Remove the git command from the mode line."
-  (unless (magit-repository-local-get 'inhibit-magit-process-unset-mode-line)
-    (magit-repository-local-set 'mode-line-process nil)
-    (dolist (buf (magit-mode-get-buffers))
-      (with-current-buffer buf (setq mode-line-process nil)))
-    (force-mode-line-update t)))
-
-(defvar magit-process-error-message-regexps
-  (list "^\\*ERROR\\*: Canceled by user$"
-        "^\\(?:error\\|fatal\\|git\\): \\(.*\\)$"
-        "^\\(Cannot rebase:.*\\)$"))
-
-(define-error 'magit-git-error "Git error")
-
-(defun magit-process-error-summary (process-buf section)
-  "A one-line error summary from the given SECTION."
-  (or (and (buffer-live-p process-buf)
-           (with-current-buffer process-buf
-             (and (oref section content)
-                  (save-excursion
-                    (goto-char (oref section end))
-                    (run-hook-wrapped
-                     'magit-process-error-message-regexps
-                     (lambda (re)
-                       (save-excursion
-                         (and (re-search-backward
-                               re (oref section start) t)
-                              (or (match-string-no-properties 1)
-                                  (and (not magit-process-raise-error)
-                                       'suppressed))))))))))
-      "Git failed"))
-
-(defun magit-process-error-tooltip (process-buf section)
-  "Returns the text from SECTION of the PROCESS-BUF buffer.
-
-Limited by `magit-process-error-tooltip-max-lines'."
-  (and (integerp magit-process-error-tooltip-max-lines)
-       (> magit-process-error-tooltip-max-lines 0)
-       (buffer-live-p process-buf)
-       (with-current-buffer process-buf
-         (save-excursion
-           (goto-char (or (oref section content)
-                          (oref section start)))
-           (buffer-substring-no-properties
-            (point)
-            (save-excursion
-              (forward-line magit-process-error-tooltip-max-lines)
-              (goto-char
-               (if (> (point) (oref section end))
-                   (oref section end)
-                 (point)))
-              ;; Remove any trailing whitespace.
-              (when (re-search-backward "[^[:space:]\n]"
-                                        (oref section start) t)
-                (forward-char 1))
-              (point)))))))
-
-(defvar-local magit-this-error nil)
-
-(defvar magit-process-finish-apply-ansi-colors nil)
-
-(defun magit-process-finish (arg &optional process-buf command-buf
-                                 default-dir section)
-  (unless (integerp arg)
-    (setq process-buf (process-buffer arg))
-    (setq command-buf (process-get arg 'command-buf))
-    (setq default-dir (process-get arg 'default-dir))
-    (setq section     (process-get arg 'section))
-    (setq arg         (process-exit-status arg)))
-  (when (fboundp 'dired-uncache)
-    (dired-uncache default-dir))
-  (when (buffer-live-p process-buf)
-    (with-current-buffer process-buf
-      (let ((inhibit-read-only t)
-            (marker (oref section start)))
-        (goto-char marker)
-        (save-excursion
-          (delete-char 3)
-          (set-marker-insertion-type marker nil)
-          (insert (propertize (format "%3s" arg)
-                              'magit-section section
-                              'face (if (= arg 0)
-                                        'magit-process-ok
-                                      'magit-process-ng)))
-          (set-marker-insertion-type marker t))
-        (when magit-process-finish-apply-ansi-colors
-          (ansi-color-apply-on-region (oref section content)
-                                      (oref section end)))
-        (if (= (oref section end)
-               (+ (line-end-position) 2))
-            (save-excursion
-              (goto-char (1+ (line-end-position)))
-              (delete-char -1)
-              (oset section content nil))
-          (let ((buf (magit-process-buffer t)))
-            (when (and (= arg 0)
-                       (not (--any-p (eq (window-buffer it) buf)
-                                     (window-list))))
-              (magit-section-hide section)))))))
-  (if (= arg 0)
-      ;; Unset the `mode-line-process' value upon success.
-      (magit-process-unset-mode-line)
-    ;; Otherwise process the error.
-    (let ((msg (magit-process-error-summary process-buf section)))
-      ;; Change `mode-line-process' to an error face upon failure.
-      (if magit-process-display-mode-line-error
-          (magit-process-set-mode-line-error-status
-           (or (magit-process-error-tooltip process-buf section)
-               msg))
-        (magit-process-unset-mode-line))
-      ;; Either signal the error, or else display the error summary in
-      ;; the status buffer and with a message in the echo area.
-      (cond
-       (magit-process-raise-error
-        (signal 'magit-git-error (list (format "%s (in %s)" msg default-dir))))
-       ((not (eq msg 'suppressed))
-        (when (buffer-live-p process-buf)
-          (with-current-buffer process-buf
-            (when-let ((status-buf (magit-mode-get-buffer 'magit-status-mode)))
-              (with-current-buffer status-buf
-                (setq magit-this-error msg)))))
-        (message "%s ... [%s buffer %s for details]" msg
-                 (if-let ((key (and (buffer-live-p command-buf)
-                                    (with-current-buffer command-buf
-                                      (car (where-is-internal
-                                            'magit-process-buffer))))))
-                     (format "Hit %s to see" (key-description key))
-                   "See")
-                 (buffer-name process-buf))))))
-  arg)
-
-(defun magit-process-display-buffer (process)
-  (when (process-live-p process)
-    (let ((buf (process-buffer process)))
-      (cond ((not (buffer-live-p buf)))
-            ((= magit-process-popup-time 0)
-             (if (minibufferp)
-                 (switch-to-buffer-other-window buf)
-               (pop-to-buffer buf)))
-            ((> magit-process-popup-time 0)
-             (run-with-timer magit-process-popup-time nil
-                             (lambda (p)
-                               (when (eq (process-status p) 'run)
-                                 (let ((buf (process-buffer p)))
-                                   (when (buffer-live-p buf)
-                                     (if (minibufferp)
-                                         (switch-to-buffer-other-window buf)
-                                       (pop-to-buffer buf))))))
-                             process))))))
-
-(defun magit--log-action (summary line list)
-  (let (heading lines)
-    (if (cdr list)
-        (progn (setq heading (funcall summary list))
-               (setq lines (mapcar line list)))
-      (setq heading (funcall line (car list))))
-    (with-current-buffer (magit-process-buffer t)
-      (goto-char (1- (point-max)))
-      (let ((inhibit-read-only t))
-        (magit-insert-section (message)
-          (magit-insert-heading (concat "  * " heading))
-          (when lines
-            (dolist (line lines)
-              (insert line "\n"))
-            (insert "\n"))))
-      (let ((inhibit-message t))
-        (when heading
-          (setq lines (cons heading lines)))
-        (message (mapconcat #'identity lines "\n"))))))
-
-;;; _
-(provide 'magit-process)
-;;; magit-process.el ends here
diff --git a/elpa/magit-20181116.1412/magit-process.elc b/elpa/magit-20181116.1412/magit-process.elc
deleted file mode 100644
index 7b19461..0000000
--- a/elpa/magit-20181116.1412/magit-process.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-pull.el b/elpa/magit-20181116.1412/magit-pull.el
deleted file mode 100644
index 67abe43..0000000
--- a/elpa/magit-20181116.1412/magit-pull.el
+++ /dev/null
@@ -1,151 +0,0 @@
-;;; magit-pull.el --- update local objects and refs  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements pull commands.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-pull-popup "magit-pull" nil t)
-(magit-define-popup magit-pull-popup
-  "Popup console for pull commands."
-  :man-page "git-pull"
-  :variables '("Configure"
-               (?r "branch.%s.rebase"
-                   magit-cycle-branch*rebase
-                   magit-pull-format-branch*rebase)
-               (?C "variables..." magit-branch-config-popup))
-  :actions '((lambda ()
-               (--if-let (magit-get-current-branch)
-                   (concat
-                    (propertize "Pull into " 'face 'magit-popup-heading)
-                    (propertize it           'face 'magit-branch-local)
-                    (propertize " from"      'face 'magit-popup-heading))
-                 (propertize "Pull from" 'face 'magit-popup-heading)))
-             (?p magit-get-push-branch     magit-pull-from-pushremote)
-             (?u magit-get-upstream-branch magit-pull-from-upstream)
-             (?e "elsewhere"               magit-pull-branch))
-  :default-action 'magit-pull
-  :max-action-columns 1)
-
-;;;###autoload (autoload 'magit-pull-and-fetch-popup "magit-pull" nil t)
-(magit-define-popup magit-pull-and-fetch-popup
-  "Popup console for pull and fetch commands.
-
-This popup is intended as a replacement for the separate popups
-`magit-pull-popup' and `magit-fetch-popup'.  To use it, add this
-to your init file:
-
-  (with-eval-after-load \\='magit-remote
-    (define-key magit-mode-map \"f\" \\='magit-pull-and-fetch-popup)
-    (define-key magit-mode-map \"F\" nil))
-
-The combined popup does not offer all commands and arguments
-available from the individual popups.  Instead of the argument
-`--prune' and the command `magit-fetch-all' it uses two commands
-`magit-fetch-prune' and `magit-fetch-no-prune'.  And the commands
-`magit-fetch-from-pushremote' and `magit-fetch-from-upstream' are
-missing.  To add them use something like:
-
-  (with-eval-after-load \\='magit-remote
-    (magit-define-popup-action \\='magit-pull-and-fetch-popup ?U
-      \\='magit-get-upstream-branch
-      \\='magit-fetch-from-upstream-remote ?F)
-    (magit-define-popup-action \\='magit-pull-and-fetch-popup ?P
-      \\='magit-get-push-branch
-      \\='magit-fetch-from-push-remote ?F))"
-  :man-page "git-pull"
-  :variables '("Configure"
-               (?r "branch.%s.rebase"
-                   magit-cycle-branch*rebase
-                   magit-pull-format-branch*rebase)
-               (?C "variables..." magit-branch-config-popup))
-  :actions '((lambda ()
-               (--if-let (magit-get-current-branch)
-                   (concat
-                    (propertize "Pull into " 'face 'magit-popup-heading)
-                    (propertize it           'face 'magit-branch-local)
-                    (propertize " from"      'face 'magit-popup-heading))
-                 (propertize "Pull from" 'face 'magit-popup-heading)))
-             (?p magit-get-push-branch     magit-pull-from-pushremote)
-             (?u magit-get-upstream-branch magit-pull-from-upstream)
-             (?e "elsewhere"               magit-pull-branch)
-             "Fetch from"
-             (?f "remotes"           magit-fetch-all-no-prune)
-             (?F "remotes and prune" magit-fetch-all-prune)
-             "Fetch"
-             (?o "another branch"    magit-fetch-branch)
-             (?s "explicit refspec"  magit-fetch-refspec)
-             (?m "submodules"        magit-fetch-modules))
-  :default-action 'magit-fetch
-  :max-action-columns 1)
-
-(defun magit-pull-format-branch*rebase ()
-  (magit--format-popup-variable:choices
-   (format "branch.%s.rebase" (or (magit-get-current-branch) "<name>"))
-   '("true" "false")
-   "false" "pull.rebase"))
-
-(defun magit-git-pull (source args)
-  (run-hooks 'magit-credential-hook)
-  (pcase-let ((`(,remote . ,branch)
-               (magit-split-branch-name source)))
-    (magit-run-git-with-editor "pull" args remote branch)))
-
-;;;###autoload
-(defun magit-pull-from-pushremote (args)
-  "Pull from the push-remote of the current branch."
-  (interactive (list (magit-pull-arguments)))
-  (--if-let (magit-get-push-branch)
-      (magit-git-pull it args)
-    (--if-let (magit-get-current-branch)
-        (user-error "No push-remote is configured for %s" it)
-      (user-error "No branch is checked out"))))
-
-;;;###autoload
-(defun magit-pull-from-upstream (args)
-  "Pull from the upstream of the current branch."
-  (interactive (list (magit-pull-arguments)))
-  (--if-let (magit-get-upstream-branch)
-      (progn (run-hooks 'magit-credential-hook)
-             (magit-run-git-with-editor
-              "pull" args (car (magit-split-branch-name it))))
-    (--if-let (magit-get-current-branch)
-        (user-error "No upstream is configured for %s" it)
-      (user-error "No branch is checked out"))))
-
-;;;###autoload
-(defun magit-pull-branch (source args)
-  "Pull from a branch read in the minibuffer."
-  (interactive (list (magit-read-remote-branch "Pull" nil nil nil t)
-                     (magit-pull-arguments)))
-  (magit-git-pull source args))
-
-;;; _
-(provide 'magit-pull)
-;;; magit-pull.el ends here
diff --git a/elpa/magit-20181116.1412/magit-pull.elc b/elpa/magit-20181116.1412/magit-pull.elc
deleted file mode 100644
index 4975d37..0000000
--- a/elpa/magit-20181116.1412/magit-pull.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-push.el b/elpa/magit-20181116.1412/magit-push.el
deleted file mode 100644
index f6e0428..0000000
--- a/elpa/magit-20181116.1412/magit-push.el
+++ /dev/null
@@ -1,345 +0,0 @@
-;;; magit-push.el --- update remote objects and refs  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements push commands.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-;;; Options
-
-(defcustom magit-push-current-set-remote-if-missing t
-  "Whether to configure missing remotes before pushing.
-
-When nil, then the command `magit-push-current-to-pushremote' and
-`magit-push-current-to-upstream' do not appear in the push popup
-if the push-remote resp. upstream is not configured.  If the user
-invokes one of these commands anyway, then it raises an error.
-
-When non-nil, then these commands always appear in the push
-popup.  But if the required configuration is missing, then they
-do appear in a way that indicates that this is the case.  If the
-user invokes one of them, then it asks for the necessary
-configuration, stores the configuration, and then uses it to push
-a first time.
-
-This option also affects whether the argument `--set-upstream' is
-available in the popup.  If the value is t, then that argument is
-redundant.  But note that changing the value of this option does
-not take affect immediately, the argument will only be added or
-removed after restarting Emacs."
-  :package-version '(magit . "2.6.0")
-  :group 'magit-commands
-  :type '(choice (const :tag "don't set" nil)
-                 (const :tag "set branch.<name>.pushRemote" t)
-                 (const :tag "set remote.pushDefault" default)))
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-push-popup "magit-push" nil t)
-(magit-define-popup magit-push-popup
-  "Popup console for push commands."
-  :man-page "git-push"
-  :switches `((?f "Force with lease" "--force-with-lease")
-              (?F "Force"            "--force")
-              (?h "Disable hooks"    "--no-verify")
-              (?d "Dry run"          "--dry-run")
-              ,@(and (not magit-push-current-set-remote-if-missing)
-                     '((?u "Set upstream"  "--set-upstream"))))
-  :actions '("Configure"
-             (?C "variables..."      magit-branch-config-popup)
-             (lambda ()
-               (--when-let (magit-get-current-branch)
-                 (concat (propertize "Push " 'face 'magit-popup-heading)
-                         (propertize it      'face 'magit-branch-local)
-                         (propertize " to"   'face 'magit-popup-heading))))
-             (?p magit--push-current-to-pushremote-desc
-                 magit-push-current-to-pushremote)
-             (?u magit--push-current-to-upstream-desc
-                 magit-push-current-to-upstream)
-             (?e "elsewhere\n"       magit-push-current)
-             "Push"
-             (?o "another branch"    magit-push-other)
-             (?T "a tag"             magit-push-tag)
-             (?r "explicit refspecs" magit-push-refspecs)
-             (?t "all tags"          magit-push-tags)
-             (?m "matching branches" magit-push-matching))
-  :max-action-columns 2)
-
-(defun magit-git-push (branch target args)
-  (run-hooks 'magit-credential-hook)
-  (pcase-let ((`(,remote . ,target)
-               (magit-split-branch-name target)))
-    (magit-run-git-async "push" "-v" args remote
-                         (format "%s:refs/heads/%s" branch target))))
-
-;;;###autoload
-(defun magit-push-current-to-pushremote (args &optional push-remote)
-  "Push the current branch to `branch.<name>.pushRemote'.
-If that variable is unset, then push to `remote.pushDefault'.
-
-When `magit-push-current-set-remote-if-missing' is non-nil and
-the push-remote is not configured, then read the push-remote from
-the user, set it, and then push to it.  With a prefix argument
-the push-remote can be changed before pushed to it."
-  (interactive
-   (list (magit-push-arguments)
-         (and (magit--push-current-set-pushremote-p current-prefix-arg)
-              (magit-read-remote
-               (if (eq magit-push-current-set-remote-if-missing 'default)
-                   "Set `remote.pushDefault' and push there"
-                 (format "Set `branch.%s.pushRemote' and push there"
-                         (magit-get-current-branch)))))))
-  (--if-let (magit-get-current-branch)
-      (progn (when push-remote
-               (setf (magit-get
-                      (if (eq magit-push-current-set-remote-if-missing 'default)
-                          "remote.pushDefault"
-                        (format "branch.%s.pushRemote" it)))
-                     push-remote))
-             (if-let ((remote (magit-get-push-remote it)))
-                 (if (member remote (magit-list-remotes))
-                     (magit-git-push it (concat remote "/" it) args)
-                   (user-error "Remote `%s' doesn't exist" remote))
-               (user-error "No push-remote is configured for %s" it)))
-    (user-error "No branch is checked out")))
-
-(defun magit--push-current-set-pushremote-p (&optional change)
-  (and (or change
-           (and magit-push-current-set-remote-if-missing
-                (not (magit-get-push-remote))))
-       (magit-get-current-branch)))
-
-(defun magit--push-current-to-pushremote-desc ()
-  (--if-let (magit-get-push-branch)
-      (concat (magit-branch-set-face it) "\n")
-    (and (magit--push-current-set-pushremote-p)
-         (concat
-          (propertize (if (eq magit-push-current-set-remote-if-missing 'default)
-                          "pushDefault"
-                        "pushRemote")
-                      'face 'bold)
-          ", after setting that\n"))))
-
-;;;###autoload
-(defun magit-push-current-to-upstream (args &optional upstream)
-  "Push the current branch to its upstream branch.
-
-When `magit-push-current-set-remote-if-missing' is non-nil and
-the upstream is not configured, then read the upstream from the
-user, set it, and then push to it.  With a prefix argument the
-upstream can be changed before pushed to it."
-  (interactive
-   (list (magit-push-arguments)
-         (and (magit--push-current-set-upstream-p current-prefix-arg)
-              (magit-read-upstream-branch))))
-  (--if-let (magit-get-current-branch)
-      (progn
-        (when upstream
-          (magit-set-upstream-branch it upstream))
-        (if-let ((target (magit-get-upstream-branch it)))
-            (magit-git-push it target args)
-          (user-error "No upstream is configured for %s" it)))
-    (user-error "No branch is checked out")))
-
-(defun magit--push-current-set-upstream-p (&optional change)
-  (and (or change
-           (and magit-push-current-set-remote-if-missing
-                (not (magit-get-upstream-branch))))
-       (magit-get-current-branch)))
-
-(defun magit--push-current-to-upstream-desc ()
-  (--if-let (magit-get-upstream-branch)
-      (concat (magit-branch-set-face it) "\n")
-    (and (magit--push-current-set-upstream-p)
-         (concat (propertize "@{upstream}" 'face 'bold)
-                 ", after setting that\n"))))
-
-;;;###autoload
-(defun magit-push-current (target args)
-  "Push the current branch to a branch read in the minibuffer."
-  (interactive
-   (--if-let (magit-get-current-branch)
-       (list (magit-read-remote-branch (format "Push %s to" it)
-                                       nil nil it 'confirm)
-             (magit-push-arguments))
-     (user-error "No branch is checked out")))
-  (magit-git-push (magit-get-current-branch) target args))
-
-;;;###autoload
-(defun magit-push-other (source target args)
-  "Push an arbitrary branch or commit somewhere.
-Both the source and the target are read in the minibuffer."
-  (interactive
-   (let ((source (magit-read-local-branch-or-commit "Push")))
-     (list source
-           (magit-read-remote-branch
-            (format "Push %s to" source) nil
-            (if (magit-local-branch-p source)
-                (or (magit-get-push-branch source)
-                    (magit-get-upstream-branch source))
-              (and (magit-rev-ancestor-p source "HEAD")
-                   (or (magit-get-push-branch)
-                       (magit-get-upstream-branch))))
-            source 'confirm)
-           (magit-push-arguments))))
-  (magit-git-push source target args))
-
-(defvar magit-push-refspecs-history nil)
-
-;;;###autoload
-(defun magit-push-refspecs (remote refspecs args)
-  "Push one or multiple REFSPECS to a REMOTE.
-Both the REMOTE and the REFSPECS are read in the minibuffer.  To
-use multiple REFSPECS, separate them with commas.  Completion is
-only available for the part before the colon, or when no colon
-is used."
-  (interactive
-   (list (magit-read-remote "Push to remote")
-         (split-string (magit-completing-read-multiple
-                        "Push refspec,s"
-                        (cons "HEAD" (magit-list-local-branch-names))
-                        nil nil 'magit-push-refspecs-history)
-                       crm-default-separator t)
-         (magit-push-arguments)))
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "push" "-v" args remote refspecs))
-
-;;;###autoload
-(defun magit-push-matching (remote &optional args)
-  "Push all matching branches to another repository.
-If multiple remotes exist, then read one from the user.
-If just one exists, use that without requiring confirmation."
-  (interactive (list (magit-read-remote "Push matching branches to" nil t)
-                     (magit-push-arguments)))
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "push" "-v" args remote ":"))
-
-;;;###autoload
-(defun magit-push-tags (remote &optional args)
-  "Push all tags to another repository.
-If only one remote exists, then push to that.  Otherwise prompt
-for a remote, offering the remote configured for the current
-branch as default."
-  (interactive (list (magit-read-remote "Push tags to remote" nil t)
-                     (magit-push-arguments)))
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "push" remote "--tags" args))
-
-;;;###autoload
-(defun magit-push-tag (tag remote &optional args)
-  "Push a tag to another repository."
-  (interactive
-   (let  ((tag (magit-read-tag "Push tag")))
-     (list tag (magit-read-remote (format "Push %s to remote" tag) nil t)
-           (magit-push-arguments))))
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "push" remote tag args))
-
-;;;###autoload
-(defun magit-push-implicitly (args)
-  "Push somewhere without using an explicit refspec.
-
-This command simply runs \"git push -v [ARGS]\".  ARGS are the
-arguments specified in the popup buffer.  No explicit refspec
-arguments are used.  Instead the behavior depends on at least
-these Git variables: `push.default', `remote.pushDefault',
-`branch.<branch>.pushRemote', `branch.<branch>.remote',
-`branch.<branch>.merge', and `remote.<remote>.push'.
-
-To add this command to the push popup add this to your init file:
-
-  (with-eval-after-load \\='magit-remote
-    (magit-define-popup-action \\='magit-push-popup ?P
-      \\='magit-push-implicitly--desc
-      \\='magit-push-implicitly ?p t))
-
-The function `magit-push-implicitly--desc' attempts to predict
-what this command will do.  The value it returns is displayed in
-the popup buffer."
-  (interactive (list (magit-push-arguments)))
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "push" "-v" args))
-
-(defun magit-push-implicitly--desc ()
-  (let ((default (magit-get "push.default")))
-    (unless (equal default "nothing")
-      (or (when-let ((remote (or (magit-get-remote)
-                                 (magit-remote-p "origin")))
-                     (refspec (magit-get "remote" remote "push")))
-            (format "%s using %s"
-                    (propertize remote  'face 'magit-branch-remote)
-                    (propertize refspec 'face 'bold)))
-          (--when-let (and (not (magit-get-push-branch))
-                           (magit-get-upstream-branch))
-            (format "%s aka %s\n"
-                    (magit-branch-set-face it)
-                    (propertize "@{upstream}" 'face 'bold)))
-          (--when-let (magit-get-push-branch)
-            (format "%s aka %s\n"
-                    (magit-branch-set-face it)
-                    (propertize "pushRemote" 'face 'bold)))
-          (--when-let (magit-get-@{push}-branch)
-            (format "%s aka %s\n"
-                    (magit-branch-set-face it)
-                    (propertize "@{push}" 'face 'bold)))
-          (format "using %s (%s is %s)\n"
-                  (propertize "git push"     'face 'bold)
-                  (propertize "push.default" 'face 'bold)
-                  (propertize default        'face 'bold))))))
-
-;;;###autoload
-(defun magit-push-to-remote (remote args)
-  "Push to REMOTE without using an explicit refspec.
-The REMOTE is read in the minibuffer.
-
-This command simply runs \"git push -v [ARGS] REMOTE\".  ARGS
-are the arguments specified in the popup buffer.  No refspec
-arguments are used.  Instead the behavior depends on at least
-these Git variables: `push.default', `remote.pushDefault',
-`branch.<branch>.pushRemote', `branch.<branch>.remote',
-`branch.<branch>.merge', and `remote.<remote>.push'.
-
-To add this command to the push popup add this to your init file:
-
-  (with-eval-after-load \\='magit-remote
-    (magit-define-popup-action \\='magit-push-popup ?r
-      \\='magit-push-to-remote--desc
-      \\='magit-push-to-remote ?p t))"
-  (interactive (list (magit-read-remote "Push to remote")
-                     (magit-push-arguments)))
-  (run-hooks 'magit-credential-hook)
-  (magit-run-git-async "push" "-v" args remote))
-
-(defun magit-push-to-remote--desc ()
-  (format "using %s\n" (propertize "git push <remote>" 'face 'bold)))
-
-;;; _
-(provide 'magit-push)
-;;; magit-push.el ends here
diff --git a/elpa/magit-20181116.1412/magit-push.elc b/elpa/magit-20181116.1412/magit-push.elc
deleted file mode 100644
index 9321e4a..0000000
--- a/elpa/magit-20181116.1412/magit-push.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-refs.el b/elpa/magit-20181116.1412/magit-refs.el
deleted file mode 100644
index a0bddd3..0000000
--- a/elpa/magit-20181116.1412/magit-refs.el
+++ /dev/null
@@ -1,752 +0,0 @@
-;;; magit-refs.el --- listing references  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for listing references in a buffer.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-(defvar bookmark-make-record-function)
-
-;;; Options
-
-(defgroup magit-refs nil
-  "Inspect and manipulate Git branches and tags."
-  :link '(info-link "(magit)References Buffer")
-  :group 'magit-modes)
-
-(defcustom magit-refs-mode-hook nil
-  "Hook run after entering Magit-Refs mode."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-refs
-  :type 'hook)
-
-(defcustom magit-refs-sections-hook
-  '(magit-insert-error-header
-    magit-insert-branch-description
-    magit-insert-local-branches
-    magit-insert-remote-branches
-    magit-insert-tags)
-  "Hook run to insert sections into a references buffer."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-refs
-  :type 'hook)
-
-(defcustom magit-refs-show-commit-count nil
-  "Whether to show commit counts in Magit-Refs mode buffers.
-
-all    Show counts for branches and tags.
-branch Show counts for branches only.
-nil    Never show counts.
-
-To change the value in an existing buffer use the command
-`magit-refs-show-commit-count'"
-  :package-version '(magit . "2.1.0")
-  :group 'magit-refs
-  :safe (lambda (val) (memq val '(all branch nil)))
-  :type '(choice (const all    :tag "For branches and tags")
-                 (const branch :tag "For branches only")
-                 (const nil    :tag "Never")))
-(put 'magit-refs-show-commit-count 'safe-local-variable 'symbolp)
-(put 'magit-refs-show-commit-count 'permanent-local t)
-
-(defcustom magit-refs-pad-commit-counts nil
-  "Whether to pad all counts on all sides in `magit-refs-mode' buffers.
-
-If this is nil, then some commit counts are displayed right next
-to one of the branches that appear next to the count, without any
-space in between.  This might look bad if the branch name faces
-look too similar to `magit-dimmed'.
-
-If this is non-nil, then spaces are placed on both sides of all
-commit counts."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-refs
-  :type 'boolean)
-
-(defvar magit-refs-show-push-remote nil
-  "Whether to show the push-remotes of local branches.
-Also show the commits that the local branch is ahead and behind
-the push-target.  Unfortunately there is a bug in Git that makes
-this useless (the commits ahead and behind the upstream are
-shown), so this isn't enabled yet.")
-
-(defcustom magit-refs-show-remote-prefix nil
-  "Whether to show the remote prefix in lists of remote branches.
-
-This is redundant because the name of the remote is already shown
-in the heading preceeding the list of its branches."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-refs
-  :type 'boolean)
-
-(defcustom magit-refs-margin
-  (list nil
-        (nth 1 magit-log-margin)
-        'magit-log-margin-width nil
-        (nth 4 magit-log-margin))
-  "Format of the margin in `magit-refs-mode' buffers.
-
-The value has the form (INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH).
-
-If INIT is non-nil, then the margin is shown initially.
-STYLE controls how to format the committer date.  It can be one
-  of `age' (to show the age of the commit), `age-abbreviated' (to
-  abbreviate the time unit to a character), or a string (suitable
-  for `format-time-string') to show the actual date.
-WIDTH controls the width of the margin.  This exists for forward
-  compatibility and currently the value should not be changed.
-AUTHOR controls whether the name of the author is also shown by
-  default.
-AUTHOR-WIDTH has to be an integer.  When the name of the author
-  is shown, then this specifies how much space is used to do so."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-refs
-  :group 'magit-margin
-  :safe (lambda (val) (memq val '(all branch nil)))
-  :type magit-log-margin--custom-type
-  :initialize 'magit-custom-initialize-reset
-  :set-after '(magit-log-margin)
-  :set (apply-partially #'magit-margin-set-variable 'magit-refs-mode))
-
-(defcustom magit-refs-margin-for-tags nil
-  "Whether to show information about tags in the margin.
-
-This is disabled by default because it is slow if there are many
-tags."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-refs
-  :group 'magit-margin
-  :type 'boolean)
-
-(defcustom magit-refs-primary-column-width (cons 16 32)
-  "Width of the focus column in `magit-refs-mode' buffers.
-
-The primary column is the column that contains the name of the
-branch that the current row is about.
-
-If this is an integer, then the column is that many columns wide.
-Otherwise it has to be a cons-cell of two integers.  The first
-specifies the minimal width, the second the maximal width.  In that
-case the actual width is determined using the length of the names
-of the shown local branches.  (Remote branches and tags are not
-taken into account when calculating to optimal width.)"
-  :package-version '(magit . "2.12.0")
-  :group 'magit-refs
-  :type '(choice (integer :tag "Constant wide")
-                 (cons    :tag "Wide constrains"
-                          (integer :tag "Minimum")
-                          (integer :tag "Maximum"))))
-
-(defcustom magit-refs-focus-column-width 5
-  "Width of the focus column in `magit-refs-mode' buffers.
-
-The focus column is the first column, which marks one
-branch (usually the current branch) as the focused branch using
-\"*\" or \"@\".  For each other reference, this column optionally
-shows how many commits it is ahead of the focused branch and \"<\", or
-if it isn't ahead then the commits it is behind and \">\", or if it
-isn't behind either, then a \"=\".
-
-This column may also display only \"*\" or \"@\" for the focused
-branch, in which case this option is ignored.  Use \"L v\" to
-change the verbosity of this column."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-refs
-  :type 'integer)
-
-(defcustom magit-refs-filter-alist nil
-  "Alist controlling which refs are omitted from `magit-refs-mode' buffers.
-
-All keys are tried in order until one matches.  Then its value
-is used and subsequent elements are ignored.  If the value is
-non-nil, then the reference is displayed, otherwise it is not.
-If no element matches, then the reference is displayed.
-
-A key can either be a regular expression that the refname has
-to match, or a function that takes the refname as only argument
-and returns a boolean.  Contrary to how they are displayed in
-the buffer, for comparison each tag begins with \"tags/\" and
-each remote branch with \"<remote>/\"."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-refs
-  :type '(alist :key-type   (choice  :tag "Key" regexp function)
-                :value-type (boolean :tag "Value"
-                                     :on  "show (non-nil)"
-                                     :off "omit (nil)")))
-
-(defcustom magit-visit-ref-behavior nil
-  "Control how `magit-visit-ref' behaves in `magit-refs-mode' buffers.
-
-By default `magit-visit-ref' behaves like `magit-show-commit',
-in all buffers, including `magit-refs-mode' buffers.  When the
-type of the section at point is `commit' then \"RET\" is bound to
-`magit-show-commit', and when the type is either `branch' or
-`tag' then it is bound to `magit-visit-ref'.
-
-\"RET\" is one of Magit's most essential keys and at least by
-default it should behave consistently across all of Magit,
-especially because users quickly learn that it does something
-very harmless; it shows more information about the thing at point
-in another buffer.
-
-However \"RET\" used to behave differently in `magit-refs-mode'
-buffers, doing surprising things, some of which cannot really be
-described as \"visit this thing\".  If you have grown accustomed
-to such inconsistent, but to you useful, behavior, then you can
-restore that by adding one or more of the below symbols to the
-value of this option.  But keep in mind that by doing so you
-don't only introduce inconsistencies, you also lose some
-functionality and might have to resort to `M-x magit-show-commit'
-to get it back.
-
-`magit-visit-ref' looks for these symbols in the order in which
-they are described here.  If the presence of a symbol applies to
-the current situation, then the symbols that follow do not affect
-the outcome.
-
-`focus-on-ref'
-
-  With a prefix argument update the buffer to show commit counts
-  and lists of cherry commits relative to the reference at point
-  instead of relative to the current buffer or `HEAD'.
-
-  Instead of adding this symbol, consider pressing \"C-u y o RET\".
-
-`create-branch'
-
-  If point is on a remote branch, then create a new local branch
-  with the same name, use the remote branch as its upstream, and
-  then check out the local branch.
-
-  Instead of adding this symbol, consider pressing \"b c RET RET\",
-  like you would do in other buffers.
-
-`checkout-any'
-
-  Check out the reference at point.  If that reference is a tag
-  or a remote branch, then this results in a detached `HEAD'.
-
-  Instead of adding this symbol, consider pressing \"b b RET\",
-  like you would do in other buffers.
-
-`checkout-branch'
-
-  Check out the local branch at point.
-
-  Instead of adding this symbol, consider pressing \"b b RET\",
-  like you would do in other buffers."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-refs
-  :group 'magit-commands
-  :options '(focus-on-ref create-branch checkout-any checkout-branch)
-  :type '(list :convert-widget custom-hook-convert-widget))
-
-;;; Mode
-
-(defvar magit-refs-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-mode-map)
-    (define-key map "\C-y" 'magit-refs-set-show-commit-count)
-    (define-key map "L"    'magit-margin-popup)
-    map)
-  "Keymap for `magit-refs-mode'.")
-
-(define-derived-mode magit-refs-mode magit-mode "Magit Refs"
-  "Mode which lists and compares references.
-
-This mode is documented in info node `(magit)References Buffer'.
-
-\\<magit-mode-map>\
-Type \\[magit-refresh] to refresh the current buffer.
-Type \\[magit-section-toggle] to expand or hide the section at point.
-Type \\[magit-visit-thing] or \\[magit-diff-show-or-scroll-up] \
-to visit the commit or branch at point.
-
-Type \\[magit-branch-popup] to see available branch commands.
-Type \\[magit-merge-popup] to merge the branch or commit at point.
-Type \\[magit-cherry-pick-popup] to apply the commit at point.
-Type \\[magit-reset] to reset `HEAD' to the commit at point.
-
-\\{magit-refs-mode-map}"
-  :group 'magit-refs
-  (hack-dir-local-variables-non-file-buffer)
-  (setq imenu-create-index-function
-        #'magit-imenu--refs-create-index-function)
-  (setq-local bookmark-make-record-function
-              #'magit-bookmark--refs-make-record))
-
-(defun magit-refs-refresh-buffer (ref &optional args)
-  (setq magit-set-buffer-margin-refresh (not (magit-buffer-margin-p)))
-  (unless ref
-    (setq ref "HEAD"))
-  (unless (magit-rev-verify ref)
-    (setq magit-refs-show-commit-count nil))
-  (magit-set-header-line-format
-   (format "%s %s" ref (mapconcat #'identity args " ")))
-  (magit-insert-section (branchbuf)
-    (magit-run-section-hook 'magit-refs-sections-hook))
-  (add-hook 'kill-buffer-hook 'magit-preserve-section-visibility-cache))
-
-;;; Commands
-
-(defcustom magit-show-refs-arguments nil
-  "The arguments used in `magit-refs-mode' buffers."
-  :group 'magit-git-arguments
-  :group 'magit-refs
-  :type '(repeat (string :tag "Argument")))
-
-(defvar magit-show-refs-popup
-  (list
-   :variable 'magit-show-refs-arguments
-   :man-page "git-branch"
-   :switches '((?m "Merged to HEAD"            "--merged")
-               (?M "Merged to master"          "--merged=master")
-               (?n "Not merged to HEAD"        "--no-merged")
-               (?N "Not merged to master"      "--no-merged=master"))
-   :options  '((?c "Contains"   "--contains="  magit-read-branch-or-commit)
-               (?m "Merged"     "--merged="    magit-read-branch-or-commit)
-               (?n "Not merged" "--no-merged=" magit-read-branch-or-commit)
-               (?s "Sort"       "--sort="      magit-read-ref-sort))
-   :actions  '((?y "Show refs, comparing them with HEAD"
-                   magit-show-refs-head)
-               (?c "Show refs, comparing them with current branch"
-                   magit-show-refs-current)
-               (?o "Show refs, comparing them with other branch"
-                   magit-show-refs))
-   :default-action 'magit-show-refs-head
-   :max-action-columns 1
-   :use-prefix (lambda ()
-                 (if (derived-mode-p 'magit-refs-mode)
-                     (if current-prefix-arg 'popup 'default)
-                   'popup))))
-
-(magit-define-popup-keys-deferred 'magit-show-refs-popup)
-
-(defun magit-read-ref-sort (prompt initial-input)
-  (magit-completing-read prompt
-                         '("-committerdate" "-authordate"
-                           "committerdate" "authordate")
-                         nil nil initial-input))
-
-(defun magit-show-refs-get-buffer-args ()
-  (cond ((and magit-use-sticky-arguments
-              (derived-mode-p 'magit-refs-mode))
-         (cadr magit-refresh-args))
-        ((and (eq magit-use-sticky-arguments t)
-              (--when-let (magit-mode-get-buffer 'magit-refs-mode)
-                (with-current-buffer it
-                  (cadr magit-refresh-args)))))
-        (t
-         (default-value 'magit-show-refs-arguments))))
-
-(defun magit-show-refs-arguments ()
-  (if (eq magit-current-popup 'magit-show-refs-popup)
-      magit-current-popup-args
-    (magit-show-refs-get-buffer-args)))
-
-;;;###autoload
-(defun magit-show-refs-popup (&optional arg)
-  "Popup console for `magit-show-refs'."
-  (interactive "P")
-  (let ((magit-show-refs-arguments (magit-show-refs-get-buffer-args)))
-    (magit-invoke-popup 'magit-show-refs-popup nil arg)))
-
-;;;###autoload
-(defun magit-show-refs-head (&optional args)
-  "List and compare references in a dedicated buffer.
-Refs are compared with `HEAD'."
-  (interactive (list (magit-show-refs-arguments)))
-  (magit-show-refs nil args))
-
-;;;###autoload
-(defun magit-show-refs-current (&optional args)
-  "List and compare references in a dedicated buffer.
-Refs are compared with the current branch or `HEAD' if
-it is detached."
-  (interactive (list (magit-show-refs-arguments)))
-  (magit-show-refs (magit-get-current-branch) args))
-
-;;;###autoload
-(defun magit-show-refs (&optional ref args)
-  "List and compare references in a dedicated buffer.
-Refs are compared with a branch read from the user."
-  (interactive (list (magit-read-other-branch "Compare with")
-                     (magit-show-refs-arguments)))
-  (magit-mode-setup #'magit-refs-mode ref args))
-
-(defun magit-refs-set-show-commit-count ()
-  "Change for which refs the commit count is shown."
-  (interactive)
-  (setq-local magit-refs-show-commit-count
-              (magit-read-char-case "Show commit counts for " nil
-                (?a "[a]ll refs" 'all)
-                (?b "[b]ranches only" t)
-                (?n "[n]othing" nil)))
-  (magit-refresh))
-
-(defun magit-visit-ref ()
-  "Visit the reference or revision at point in another buffer.
-If there is no revision at point or with a prefix argument prompt
-for a revision.
-
-This command behaves just like `magit-show-commit', except if
-point is on a reference in a `magit-refs-mode' buffer (a buffer
-listing branches and tags), in which case the behavior may be
-different, but only if you have customized the option
-`magit-visit-ref-behavior' (which see)."
-  (interactive)
-  (if (and (derived-mode-p 'magit-refs-mode)
-           (magit-section-match '(branch tag)))
-      (let ((ref (oref (magit-current-section) value)))
-        (cond (current-prefix-arg
-               (cond ((memq 'focus-on-ref magit-visit-ref-behavior)
-                      (magit-show-refs ref))
-                     (magit-visit-ref-behavior
-                      ;; Don't prompt for commit to visit.
-                      (let ((current-prefix-arg nil))
-                        (call-interactively #'magit-show-commit)))))
-              ((and (memq 'create-branch magit-visit-ref-behavior)
-                    (magit-section-match [branch remote]))
-               (let ((branch (cdr (magit-split-branch-name ref))))
-                 (if (magit-branch-p branch)
-                     (if (magit-rev-eq branch ref)
-                         (magit-call-git "checkout" branch)
-                       (setq branch (propertize branch 'face 'magit-branch-local))
-                       (setq ref (propertize ref 'face 'magit-branch-remote))
-                       (pcase (prog1 (read-char-choice (format (propertize "\
-Branch %s already exists.
-  [c]heckout %s as-is
-  [r]reset %s to %s and checkout %s
-  [a]bort " 'face 'minibuffer-prompt) branch branch branch ref branch)
-                                                       '(?c ?r ?a))
-                                (message "")) ; otherwise prompt sticks
-                         (?c (magit-call-git "checkout" branch))
-                         (?r (magit-call-git "checkout" "-B" branch ref))
-                         (?a (user-error "Abort"))))
-                   (magit-call-git "checkout" "-b" branch ref))
-                 (setcar magit-refresh-args branch)
-                 (magit-refresh)))
-              ((or (memq 'checkout-any magit-visit-ref-behavior)
-                   (and (memq 'checkout-branch magit-visit-ref-behavior)
-                        (magit-section-match [branch local])))
-               (magit-call-git "checkout" ref)
-               (setcar magit-refresh-args ref)
-               (magit-refresh))
-              (t
-               (call-interactively #'magit-show-commit))))
-    (call-interactively #'magit-show-commit)))
-
-;;; Sections
-
-(defvar magit-remote-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-delete-thing] 'magit-remote-remove)
-    (define-key map "R"                        'magit-remote-rename)
-    map)
-  "Keymap for `remote' sections.")
-
-(defvar magit-branch-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing]  'magit-visit-ref)
-    (define-key map [remap magit-delete-thing] 'magit-branch-delete)
-    (define-key map "R"                        'magit-branch-rename)
-    map)
-  "Keymap for `branch' sections.")
-
-(defvar magit-tag-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing]  'magit-visit-ref)
-    (define-key map [remap magit-delete-thing] 'magit-tag-delete)
-    map)
-  "Keymap for `tag' sections.")
-
-(defun magit-insert-branch-description ()
-  "Insert header containing the description of the current branch.
-Insert a header line with the name and description of the
-current branch.  The description is taken from the Git variable
-`branch.<NAME>.description'; if that is undefined then no header
-line is inserted at all."
-  (when-let ((branch (magit-get-current-branch))
-             (desc (magit-get "branch" branch "description"))
-             (desc (split-string desc "\n")))
-    (when (equal (car (last desc)) "")
-      (setq desc (butlast desc)))
-    (magit-insert-section (branchdesc branch t)
-      (magit-insert-heading branch ": " (car desc))
-      (when (cdr desc)
-        (insert (mapconcat 'identity (cdr desc) "\n"))
-        (insert "\n\n")))))
-
-(defun magit-insert-tags ()
-  "Insert sections showing all tags."
-  (when-let ((tags (magit-git-lines "tag" "--list" "-n"
-                                    (cadr magit-refresh-args))))
-    (let ((_head (magit-rev-parse "HEAD")))
-      (magit-insert-section (tags)
-        (magit-insert-heading "Tags:")
-        (dolist (tag tags)
-          (string-match "^\\([^ \t]+\\)[ \t]+\\([^ \t\n].*\\)?" tag)
-          (let ((tag (match-string 1 tag))
-                (msg (match-string 2 tag)))
-            (when (magit-refs--insert-refname-p tag)
-              (magit-insert-section section (tag tag t)
-                (magit-insert-heading
-                  (magit-refs--format-focus-column tag 'tag)
-                  (propertize tag 'face 'magit-tag)
-                  (make-string (max 1 (- magit-refs-primary-column-width
-                                         (length tag)))
-                               ?\s)
-                  (and msg (magit-log-propertize-keywords nil msg)))
-                (when (and magit-refs-margin-for-tags (magit-buffer-margin-p))
-                  (magit-refs--format-margin tag))
-                (magit-refs--insert-cherry-commits tag section)))))
-        (insert ?\n)
-        (magit-make-margin-overlay nil t)))))
-
-(defun magit-insert-remote-branches ()
-  "Insert sections showing all remote-tracking branches."
-  (dolist (remote (magit-list-remotes))
-    (magit-insert-section (remote remote)
-      (magit-insert-heading
-        (let ((pull (magit-get "remote" remote "url"))
-              (push (magit-get "remote" remote "pushurl")))
-          (format (propertize "Remote %s (%s):" 'face 'magit-section-heading)
-                  (propertize remote 'face 'magit-branch-remote)
-                  (concat pull (and pull push ", ") push))))
-      (let (head)
-        (dolist (line (magit-git-lines "for-each-ref" "--format=\
-%(symref:short)%00%(refname:short)%00%(refname)%00%(subject)"
-                                       (concat "refs/remotes/" remote)
-                                       (cadr magit-refresh-args)))
-          (pcase-let ((`(,head-branch ,branch ,ref ,msg)
-                       (-replace "" nil (split-string line "\0"))))
-            (if head-branch
-                (progn (cl-assert (equal branch (concat remote "/HEAD")))
-                       (setq head head-branch))
-              (when (magit-refs--insert-refname-p branch)
-                (magit-insert-section section (branch branch t)
-                  (let ((headp (equal branch head))
-                        (abbrev (if magit-refs-show-remote-prefix
-                                    branch
-                                  (substring branch (1+ (length remote))))))
-                    (magit-insert-heading
-                      (magit-refs--format-focus-column branch)
-                      (magit-refs--propertize-branch
-                       abbrev ref (and headp 'magit-branch-remote-head))
-                      (make-string (max 1 (- magit-refs-primary-column-width
-                                             (length abbrev)))
-                                   ?\s)
-                      (and msg (magit-log-propertize-keywords nil msg))))
-                  (when (magit-buffer-margin-p)
-                    (magit-refs--format-margin branch))
-                  (magit-refs--insert-cherry-commits branch section)))))))
-      (insert ?\n)
-      (magit-make-margin-overlay nil t))))
-
-(defun magit-insert-local-branches ()
-  "Insert sections showing all local branches."
-  (magit-insert-section (local nil)
-    (magit-insert-heading "Branches:")
-    (dolist (line (magit-refs--format-local-branches))
-      (pcase-let ((`(,branch . ,strings) line))
-        (magit-insert-section section
-          ((eval (if branch 'branch 'commit))
-           (or branch (magit-rev-parse "HEAD"))
-           t)
-          (apply #'magit-insert-heading strings)
-          (when (magit-buffer-margin-p)
-            (magit-refs--format-margin branch))
-          (magit-refs--insert-cherry-commits branch section))))
-    (insert ?\n)
-    (magit-make-margin-overlay nil t)))
-
-(defun magit-refs--format-local-branches ()
-  (let ((lines (-keep 'magit-refs--format-local-branch
-                      (magit-git-lines
-                       "for-each-ref"
-                       (concat "--format=\
-%(HEAD)%00%(refname:short)%00%(refname)%00\
-%(upstream:short)%00%(upstream)%00%(upstream:track)%00"
-                               (if magit-refs-show-push-remote "\
-%(push:remotename)%00%(push)%00%(push:track)%00%(subject)"
-                                 "%00%00%00%(subject)"))
-                       "refs/heads"
-                       (cadr magit-refresh-args)))))
-    (unless (magit-get-current-branch)
-      (push (magit-refs--format-local-branch
-             (concat "*\0\0\0\0\0\0\0\0" (magit-rev-format "%s")))
-            lines))
-    (setq-local magit-refs-primary-column-width
-                (let ((def (default-value 'magit-refs-primary-column-width)))
-                  (if (atom def)
-                      def
-                    (pcase-let ((`(,min . ,max) def))
-                      (min max (apply #'max min (mapcar #'car lines)))))))
-    (mapcar (pcase-lambda (`(,_ ,branch ,focus ,branch-desc ,u:ahead ,p:ahead
-                                ,u:behind ,upstream ,p:behind ,push ,msg))
-              (list branch focus branch-desc u:ahead p:ahead
-                    (make-string (max 1 (- magit-refs-primary-column-width
-                                           (length (concat branch-desc
-                                                           u:ahead
-                                                           p:ahead
-                                                           u:behind))))
-                                 ?\s)
-                    u:behind upstream p:behind push
-                    msg))
-            lines)))
-
-(defun magit-refs--format-local-branch (line)
-  (pcase-let ((`(,head ,branch ,ref ,upstream ,u:ref ,u:track
-                       ,push ,p:ref ,p:track ,msg)
-               (-replace "" nil (split-string line "\0"))))
-    (when (or (not branch)
-              (magit-refs--insert-refname-p branch))
-      (let* ((headp (equal head "*"))
-             (pushp (and push
-                         magit-refs-show-push-remote
-                         (magit-rev-verify p:ref)
-                         (not (equal p:ref u:ref))))
-             (branch-desc
-              (if branch
-                  (magit-refs--propertize-branch
-                   branch ref (and headp 'magit-branch-current))
-                (propertize "(detached)" 'face 'font-lock-warning-face)))
-             (u:ahead  (and u:track
-                            (string-match "ahead \\([0-9]+\\)" u:track)
-                            (propertize
-                             (concat (and magit-refs-pad-commit-counts " ")
-                                     (match-string 1 u:track)
-                                     ">")
-                             'face 'magit-dimmed)))
-             (u:behind (and u:track
-                            (string-match "behind \\([0-9]+\\)" u:track)
-                            (propertize
-                             (concat "<"
-                                     (match-string 1 u:track)
-                                     (and magit-refs-pad-commit-counts " "))
-                             'face 'magit-dimmed)))
-             (p:ahead  (and pushp p:track
-                            (string-match "ahead \\([0-9]+\\)" p:track)
-                            (propertize
-                             (concat (match-string 1 p:track)
-                                     ">"
-                                     (and magit-refs-pad-commit-counts " "))
-                             'face 'magit-branch-remote)))
-             (p:behind (and pushp p:track
-                            (string-match "behind \\([0-9]+\\)" p:track)
-                            (propertize
-                             (concat "<"
-                                     (match-string 1 p:track)
-                                     (and magit-refs-pad-commit-counts " "))
-                             'face 'magit-dimmed))))
-        (list (1+ (length (concat branch-desc u:ahead p:ahead u:behind)))
-              branch
-              (magit-refs--format-focus-column branch headp)
-              branch-desc u:ahead p:ahead u:behind
-              (and upstream
-                   (concat (if (equal u:track "[gone]")
-                               (propertize upstream 'face 'error)
-                             (magit-refs--propertize-branch upstream u:ref))
-                           " "))
-              (and pushp
-                   (concat p:behind
-                           (propertize push 'face 'magit-branch-remote)
-                           " "))
-              (and msg (magit-log-propertize-keywords nil msg)))))))
-
-(defun magit-refs--format-focus-column (ref &optional type)
-  (let ((focus (car magit-refresh-args))
-        (width (if magit-refs-show-commit-count
-                   magit-refs-focus-column-width
-                 1)))
-    (format
-     (format "%%%ss " width)
-     (cond ((or (equal ref focus)
-                (and (eq type t)
-                     (eq focus nil)))
-            (propertize (concat (if focus "@" "*")
-                                (make-string (1- width) ?\s))
-                        'face 'magit-section-heading))
-           ((if (eq type 'tag)
-                (eq magit-refs-show-commit-count 'all)
-              magit-refs-show-commit-count)
-            (pcase-let ((`(,behind ,ahead)
-                         (magit-rev-diff-count
-                          (or (car magit-refresh-args) "HEAD")
-                          ref)))
-              (propertize
-               (cond ((> ahead  0) (concat "<" (number-to-string ahead)))
-                     ((> behind 0) (concat (number-to-string behind) ">"))
-                     (t "="))
-               'face 'magit-dimmed)))
-           (t "")))))
-
-(defun magit-refs--propertize-branch (branch ref &optional head-face)
-  (let ((face (cdr (cl-find-if (pcase-lambda (`(,re . ,_))
-                                 (string-match-p re ref))
-                               magit-ref-namespaces))))
-    (propertize branch 'face (if head-face (list face head-face) face))))
-
-(defun magit-refs--insert-refname-p (refname)
-  (--if-let (-first (pcase-lambda (`(,key . ,_))
-                      (if (functionp key)
-                          (funcall key refname)
-                        (string-match-p key refname)))
-                    magit-refs-filter-alist)
-      (cdr it)
-    t))
-
-(defun magit-refs--insert-cherry-commits (ref section)
-  (if (oref section hidden)
-      (oset section washer
-            (apply-partially #'magit-refs--insert-cherry-commits-1 ref section))
-    (magit-refs--insert-cherry-commits-1 ref section)))
-
-(defun magit-refs--insert-cherry-commits-1 (ref _section)
-  (let ((start (point))
-        (magit-insert-section--current nil))
-    (magit-git-wash (apply-partially 'magit-log-wash-log 'cherry)
-      "cherry" "-v" (magit-abbrev-arg)
-      (or (car magit-refresh-args) "HEAD")
-      ref magit-refresh-args)
-    (unless (= (point) start)
-      (magit-make-margin-overlay nil t))))
-
-(defun magit-refs--format-margin (commit)
-  (save-excursion
-    (goto-char (line-beginning-position 0))
-    (let ((line (magit-rev-format "%ct%cN" commit)))
-      (magit-log-format-margin commit
-                               (substring line 10)
-                               (substring line 0 10)))))
-
-;;; _
-(provide 'magit-refs)
-;;; magit-refs.el ends here
diff --git a/elpa/magit-20181116.1412/magit-refs.elc b/elpa/magit-20181116.1412/magit-refs.elc
deleted file mode 100644
index dd2a47d..0000000
--- a/elpa/magit-20181116.1412/magit-refs.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-remote.el b/elpa/magit-20181116.1412/magit-remote.el
deleted file mode 100644
index 5f80452..0000000
--- a/elpa/magit-20181116.1412/magit-remote.el
+++ /dev/null
@@ -1,376 +0,0 @@
-;;; magit-remote.el --- transfer Git commits  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements remote commands.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Options
-
-(defcustom magit-remote-add-set-remote.pushDefault 'ask-if-unset
-  "Whether to set the value of `remote.pushDefault' after adding a remote.
-
-If `ask', then always ask.  If `ask-if-unset', then ask, but only
-if the variable isn't set already.  If nil, then don't ever set.
-If the value is a string, then set without asking, provided that
-the name of the added remote is equal to that string and the
-variable isn't already set."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-commands
-  :type '(choice (const  :tag "ask if unset" ask-if-unset)
-                 (const  :tag "always ask" ask)
-                 (string :tag "set if named")
-                 (const  :tag "don't set")))
-
-(defcustom magit-remote-popup-show-variables t
-  "Whether the `magit-remote-popup' shows Git variables.
-When set to nil, no variables are displayed directly in this
-popup, instead the sub-popup `magit-remote-config-popup' has
-to be used to view and change remote related variables."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-;;; Commands
-
-(defvar magit-remote-config-variables)
-
-;;;###autoload (autoload 'magit-remote-popup "magit-remote" nil t)
-(magit-define-popup magit-remote-popup
-  "Popup console for remote commands."
-  :man-page "git-remote"
-  :default-arguments '("-f")
-  :variables (lambda ()
-               (and magit-remote-popup-show-variables
-                    magit-remote-config-variables))
-  :switches '("Switches for add"
-              (?f "Fetch after add" "-f"))
-  :actions  '((?a "Add"                  magit-remote-add)
-              (?C "Configure..."         magit-remote-config-popup)
-              (?r "Rename"               magit-remote-rename)
-              (?p "Prune stale branches" magit-remote-prune)
-              (?k "Remove"               magit-remote-remove)
-              (?P "Prune stale refspecs" magit-remote-prune-refspecs))
-  :max-action-columns 2)
-
-(defun magit-read-url (prompt &optional initial-input)
-  (let ((url (magit-read-string-ns prompt initial-input)))
-    (if (string-prefix-p "~" url)
-        (expand-file-name url)
-      url)))
-
-;;;###autoload
-(defun magit-remote-add (remote url &optional args)
-  "Add a remote named REMOTE and fetch it."
-  (interactive (list (magit-read-string-ns "Remote name")
-                     (magit-read-url "Remote url")
-                     (magit-remote-arguments)))
-  (if (pcase (list magit-remote-add-set-remote.pushDefault
-                   (magit-get "remote.pushDefault"))
-        (`(,(pred stringp) ,_) t)
-        ((or `(ask ,_) `(ask-if-unset nil))
-         (y-or-n-p (format "Set `remote.pushDefault' to \"%s\"? " remote))))
-      (progn (magit-call-git "remote" "add" args remote url)
-             (setf (magit-get "remote.pushDefault") remote)
-             (magit-refresh))
-    (magit-run-git-async "remote" "add" args remote url)))
-
-;;;###autoload
-(defun magit-remote-rename (old new)
-  "Rename the remote named OLD to NEW."
-  (interactive
-   (let  ((remote (magit-read-remote "Rename remote")))
-     (list remote (magit-read-string-ns (format "Rename %s to" remote)))))
-  (unless (string= old new)
-    (magit-call-git "remote" "rename" old new)
-    (magit-remote--cleanup-push-variables old new)
-    (magit-refresh)))
-
-;;;###autoload
-(defun magit-remote-remove (remote)
-  "Delete the remote named REMOTE."
-  (interactive (list (magit-read-remote "Delete remote")))
-  (magit-call-git "remote" "rm" remote)
-  (magit-remote--cleanup-push-variables remote)
-  (magit-refresh))
-
-(defun magit-remote--cleanup-push-variables (remote &optional new-name)
-  (magit-with-toplevel
-    (when (equal (magit-get "remote.pushDefault") remote)
-      (magit-set new-name "remote.pushDefault"))
-    (dolist (var (magit-git-lines "config" "--name-only"
-                                  "--get-regexp" "^branch\.[^.]*\.pushRemote"
-                                  (format "^%s$" remote)))
-      (magit-call-git "config" (and (not new-name) "--unset") var new-name))))
-
-(defconst magit--refspec-re "\\`\\(\\+\\)?\\([^:]+\\):\\(.*\\)\\'")
-
-;;;###autoload
-(defun magit-remote-prune (remote)
-  "Remove stale remote-tracking branches for REMOTE."
-  (interactive (list (magit-read-remote "Prune stale branches of remote")))
-  (magit-run-git-async "remote" "prune" remote))
-
-;;;###autoload
-(defun magit-remote-prune-refspecs (remote)
-  "Remove stale refspecs for REMOTE.
-
-A refspec is stale if there no longer exists at least one branch
-on the remote that would be fetched due to that refspec.  A stale
-refspec is problematic because its existence causes Git to refuse
-to fetch according to the remaining non-stale refspecs.
-
-If only stale refspecs remain, then offer to either delete the
-remote or to replace the stale refspecs with the default refspec.
-
-Also remove the remote-tracking branches that were created due to
-the now stale refspecs.  Other stale branches are not removed."
-  (interactive (list (magit-read-remote "Prune refspecs of remote")))
-  (let* ((tracking-refs (magit-list-remote-branches remote))
-         (remote-refs (magit-remote-list-refs remote))
-         (variable (format "remote.%s.fetch" remote))
-         (refspecs (magit-get-all variable))
-         stale)
-    (dolist (refspec refspecs)
-      (when (string-match magit--refspec-re refspec)
-        (let ((theirs (match-string 2 refspec))
-              (ours   (match-string 3 refspec)))
-          (unless (if (string-match "\\*" theirs)
-                      (let ((re (replace-match ".*" t t theirs)))
-                        (--some (string-match-p re it) remote-refs))
-                    (member theirs remote-refs))
-            (push (cons refspec
-                        (if (string-match "\\*" ours)
-                            (let ((re (replace-match ".*" t t ours)))
-                              (--filter (string-match-p re it) tracking-refs))
-                          (list (car (member ours tracking-refs)))))
-                  stale)))))
-    (if (not stale)
-        (message "No stale refspecs for remote %S" remote)
-      (if (= (length stale)
-             (length refspecs))
-          (magit-read-char-case
-              (format "All of %s's refspecs are stale.  " remote) nil
-            (?s "replace with [d]efault refspec"
-                (magit-set-all
-                 (list (format "+refs/heads/*:refs/remotes/%s/*" remote))
-                 variable))
-            (?r "[r]emove remote"
-                (magit-call-git "remote" "rm" remote))
-            (?a "or [a]abort"
-                (user-error "Abort")))
-        (if (if (= (length stale) 1)
-                (pcase-let ((`(,refspec . ,refs) (car stale)))
-                  (magit-confirm 'prune-stale-refspecs
-                    (format "Prune stale refspec %s and branch %%s" refspec)
-                    (format "Prune stale refspec %s and %%i branches" refspec)
-                    nil refs))
-              (magit-confirm 'prune-stale-refspecs nil
-                (format "Prune %%i stale refspecs and %i branches"
-                        (length (cl-mapcan (lambda (s) (copy-sequence (cdr s)))
-                                           stale)))
-                nil
-                (mapcar (pcase-lambda (`(,refspec . ,refs))
-                          (concat refspec "\n"
-                                  (mapconcat (lambda (b) (concat "  " b))
-                                             refs "\n")))
-                        stale)))
-            (pcase-dolist (`(,refspec . ,refs) stale)
-              (magit-call-git "config" "--unset" variable
-                              (regexp-quote refspec))
-              (magit--log-action
-               (lambda (refs)
-                 (format "Deleting %i branches" (length refs)))
-               (lambda (ref)
-                 (format "Deleting branch %s (was %s)" ref
-                         (magit-rev-parse "--short" ref)))
-               refs)
-              (dolist (ref refs)
-                (magit-call-git "update-ref" "-d" ref)))
-          (user-error "Abort")))
-      (magit-refresh))))
-
-;;;###autoload
-(defun magit-remote-set-head (remote &optional branch)
-  "Set the local representation of REMOTE's default branch.
-Query REMOTE and set the symbolic-ref refs/remotes/<remote>/HEAD
-accordingly.  With a prefix argument query for the branch to be
-used, which allows you to select an incorrect value if you fancy
-doing that."
-  (interactive
-   (let  ((remote (magit-read-remote "Set HEAD for remote")))
-     (list remote
-           (and current-prefix-arg
-                (magit-read-remote-branch (format "Set %s/HEAD to" remote)
-                                          remote nil nil t)))))
-  (magit-run-git "remote" "set-head" remote (or branch "--auto")))
-
-;;;###autoload
-(defun magit-remote-unset-head (remote)
-  "Unset the local representation of REMOTE's default branch.
-Delete the symbolic-ref \"refs/remotes/<remote>/HEAD\"."
-  (interactive (list (magit-read-remote "Unset HEAD for remote")))
-  (magit-run-git "remote" "set-head" remote "--delete"))
-
-;;; Configure
-
-(defvar magit-remote-config--remote nil)
-
-;;;###autoload
-(defun magit-remote-config-popup (remote)
-  "Popup console for setting remote variables."
-  (interactive
-   (list (if (or current-prefix-arg
-                 (and (eq magit-current-popup 'magit-remote-popup)
-                      magit-remote-popup-show-variables))
-             (magit-read-remote "Configure remote")
-           (magit-remote-config--remote-1))))
-  (let ((magit-remote-config--remote remote))
-    (magit-invoke-popup 'magit-remote-config-popup nil nil)))
-
-(defvar magit-remote-config-variables
-  '((lambda ()
-      (concat
-       (propertize "Configure " 'face 'magit-popup-heading)
-       (propertize (magit-remote-config--remote) 'face 'magit-branch-remote)))
-    (?u "remote.%s.url"
-        magit-set-remote*url
-        magit-format-remote*url)
-    (?U "remote.%s.fetch"
-        magit-set-remote*fetch
-        magit-format-remote*fetch)
-    (?s "remote.%s.pushurl"
-        magit-set-remote*pushurl
-        magit-format-remote*pushurl)
-    (?S "remote.%s.push"
-        magit-set-remote*push
-        magit-format-remote*push)
-    (?O "remote.%s.tagOpt"
-        magit-cycle-remote*tagOpt
-        magit-format-remote*tagOpt)))
-
-(defvar magit-remote-config-popup
-  `(:man-page "git-remote"
-    :variables ,magit-remote-config-variables
-    :setup-function magit-remote-config-popup-setup))
-
-(defun magit-remote-config-popup-setup (val def)
-  (magit-popup-default-setup val def)
-  (setq-local magit-remote-config--remote magit-remote-config--remote))
-
-(defun magit-remote-config--remote (&optional prompt)
-  (if prompt
-      (or (and (not current-prefix-arg)
-               (or magit-remote-config--remote
-                   (magit-remote-config--remote-1)))
-          (magit-read-remote prompt))
-    (or magit-remote-config--remote
-        (magit-remote-config--remote-1)
-        "<name>")))
-
-(defun magit-remote-config--remote-1 ()
-  (let ((remote (magit-get-upstream-remote)))
-    (if (or (not remote)
-            (equal remote "."))
-        (and (magit-remote-p "origin") "origin")
-      remote)))
-
-(defun magit-set-remote*url (remote urls)
-  "Set the variable `url' for the remote named REMOTE to URLS."
-  (interactive (magit-remote-config--read-args "url" "Urls: "))
-  (magit-remote-config--set-url remote "url" urls))
-
-(defun magit-set-remote*fetch (remote values)
-  "Set the variable `fetch' for the remote named REMOTE to VALUES."
-  (interactive (magit-remote-config--read-args "fetch" "Fetch specs: "))
-  (magit-set-all values "remote" remote "fetch")
-  (magit-refresh))
-
-(defun magit-set-remote*pushurl (remote urls)
-  "Set the variable `pushurl' for the remote named REMOTE to URLS."
-  (interactive (magit-remote-config--read-args "pushurl" "Urls: "))
-  (magit-remote-config--set-url remote "pushurl" urls "--push"))
-
-(defun magit-set-remote*push (remote values)
-  "Set the variable `push' for the remote named REMOTE to VALUES."
-  (interactive (magit-remote-config--read-args "push" "Push specs: "))
-  (magit-set-all values "remote" remote "push")
-  (magit-refresh))
-
-(defun magit-cycle-remote*tagOpt (remote)
-  (interactive (list (magit-remote-config--remote)))
-  (magit--set-popup-variable (format "remote.%s.tagOpt" remote)
-                             '("--no-tags" "--tags") nil))
-
-(defun magit-format-remote*url ()
-  (magit-remote-config--format-variable "url"))
-
-(defun magit-format-remote*fetch ()
-  (magit-remote-config--format-variable "fetch"))
-
-(defun magit-format-remote*pushurl ()
-  (magit-remote-config--format-variable "pushurl"))
-
-(defun magit-format-remote*push ()
-  (magit-remote-config--format-variable "push"))
-
-(defun magit-format-remote*tagOpt ()
-  (let ((remote (magit-remote-config--remote)))
-    (magit--format-popup-variable:choices
-     (format "remote.%s.tagOpts" remote)
-     '("--no-tags" "--tags") nil nil
-     (+ (length remote) 16))))
-
-(defun magit-remote-config--read-args (var prompt)
-  (let* ((remote (magit-remote-config--remote (format "Set `%s' of remote" var)))
-         (value (magit-get-all "remote" remote var)))
-    (list remote
-          (mapcar (lambda (url)
-                    (if (string-prefix-p "~" url)
-                        (expand-file-name url)
-                      url))
-                  (completing-read-multiple
-                   prompt nil nil nil
-                   (and value (mapconcat #'identity value ",")))))))
-
-(defun magit-remote-config--set-url (remote var values &optional arg)
-  (let ((old (magit-get-all "remote" remote var)))
-    (dolist (v (-difference values old))
-      (magit-call-git "remote" "set-url" arg "--add" remote v))
-    (dolist (v (-difference old values))
-      (magit-call-git "remote" "set-url" arg "--delete" remote
-                      (concat "^" (regexp-quote v) "$"))))
-  (magit-refresh))
-
-(defun magit-remote-config--format-variable (variable)
-  (magit--format-popup-variable:values
-   (format "remote.%s.%s" (magit-remote-config--remote) variable)
-   25))
-
-;;; _
-(provide 'magit-remote)
-;;; magit-remote.el ends here
diff --git a/elpa/magit-20181116.1412/magit-remote.elc b/elpa/magit-20181116.1412/magit-remote.elc
deleted file mode 100644
index 6b2ed20..0000000
--- a/elpa/magit-20181116.1412/magit-remote.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-repos.el b/elpa/magit-20181116.1412/magit-repos.el
deleted file mode 100644
index 8db44d8..0000000
--- a/elpa/magit-20181116.1412/magit-repos.el
+++ /dev/null
@@ -1,314 +0,0 @@
-;;; magit-repos.el --- listing repositories  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for listing repositories.  This
-;; includes getting a Lisp list of known repositories as well as a
-;; mode for listing repositories in a buffer.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit-core)
-
-(declare-function magit-status-internal "magit-status" (directory))
-
-(defvar x-stretch-cursor)
-
-;;; Options
-
-(defcustom magit-repository-directories
-  '(("~/.emacs.d/"     . 0)  ; this should always be a repository
-    ("~/.emacs.d/lib/" . 1)) ; useful for `borg' users
-  "List of directories that are or contain Git repositories.
-
-Each element has the form (DIRECTORY . DEPTH).  DIRECTORY has
-to be a directory or a directory file-name, a string.  DEPTH,
-an integer, specifies the maximum depth to look for Git
-repositories.  If it is 0, then only add DIRECTORY itself."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-essentials
-  :type '(repeat (cons directory (integer :tag "Depth"))))
-
-(defgroup magit-repolist nil
-  "List repositories in a buffer."
-  :link '(info-link "(magit)Repository List")
-  :group 'magit-modes)
-
-(defcustom magit-repolist-mode-hook '(hl-line-mode)
-  "Hook run after entering Magit-Repolist mode."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-repolist
-  :type 'hook
-  :get 'magit-hook-custom-get
-  :options '(hl-line-mode))
-
-(defcustom magit-repolist-columns
-  '(("Name"    25 magit-repolist-column-ident nil)
-    ("Version" 25 magit-repolist-column-version nil)
-    ("B<U"      3 magit-repolist-column-unpulled-from-upstream
-     ((:right-align t)
-      (:help-echo "Upstream changes not in branch")))
-    ("B>U"      3 magit-repolist-column-unpushed-to-upstream
-     ((:right-align t)
-      (:help-echo "Local changes not in upstream")))
-    ("Path"    99 magit-repolist-column-path nil))
-  "List of columns displayed by `magit-list-repositories'.
-
-Each element has the form (HEADER WIDTH FORMAT PROPS).
-
-HEADER is the string displayed in the header.  WIDTH is the width
-of the column.  FORMAT is a function that is called with one
-argument, the repository identification (usually its basename),
-and with `default-directory' bound to the toplevel of its working
-tree.  It has to return a string to be inserted or nil.  PROPS is
-an alist that supports the keys `:right-align' and `:pad-right'.
-Some entries also use `:help-echo', but `tabulated-list' does not
-actually support that yet."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-repolist
-  :type `(repeat (list :tag "Column"
-                       (string   :tag "Header Label")
-                       (integer  :tag "Column Width")
-                       (function :tag "Inserter Function")
-                       (repeat   :tag "Properties"
-                                 (list (choice :tag "Property"
-                                               (const :right-align)
-                                               (const :pad-right)
-                                               (symbol))
-                                       (sexp   :tag "Value"))))))
-
-
-;;; List Repositories
-;;;; Command
-;;;###autoload
-(defun magit-list-repositories ()
-  "Display a list of repositories.
-
-Use the options `magit-repository-directories' to control which
-repositories are displayed."
-  (interactive)
-  (if magit-repository-directories
-      (with-current-buffer (get-buffer-create "*Magit Repositories*")
-        (magit-repolist-mode)
-        (magit-repolist-refresh)
-        (tabulated-list-print)
-        (switch-to-buffer (current-buffer)))
-    (message "You need to customize `magit-repository-directories' %s"
-             "before you can list repositories")))
-
-;;;; Mode
-
-(defvar magit-repolist-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map tabulated-list-mode-map)
-    (define-key map (if (featurep 'jkl) [return] (kbd "C-m"))
-      'magit-repolist-status)
-    map)
-  "Local keymap for Magit-Repolist mode buffers.")
-
-(defun magit-repolist-status (&optional _button)
-  "Show the status for the repository at point."
-  (interactive)
-  (--if-let (tabulated-list-get-id)
-      (magit-status-internal (expand-file-name it))
-    (user-error "There is no repository at point")))
-
-(define-derived-mode magit-repolist-mode tabulated-list-mode "Repos"
-  "Major mode for browsing a list of Git repositories."
-  (setq x-stretch-cursor        nil)
-  (setq tabulated-list-padding  0)
-  (setq tabulated-list-sort-key (cons "Path" nil))
-  (setq tabulated-list-format
-        (vconcat (mapcar (pcase-lambda (`(,title ,width ,_fn ,props))
-                           (nconc (list title width t)
-                                  (-flatten props)))
-                         magit-repolist-columns)))
-  (tabulated-list-init-header)
-  (add-hook 'tabulated-list-revert-hook 'magit-repolist-refresh nil t)
-  (setq imenu-prev-index-position-function
-        'magit-imenu--repolist-prev-index-position-function)
-  (setq imenu-extract-index-name-function
-        'magit-imenu--repolist-extract-index-name-function))
-
-(defun magit-repolist-refresh ()
-  (setq tabulated-list-entries
-        (mapcar (pcase-lambda (`(,id . ,path))
-                  (let ((default-directory path))
-                    (list path
-                          (vconcat (--map (or (funcall (nth 2 it) id) "")
-                                          magit-repolist-columns)))))
-                (magit-list-repos-uniquify
-                 (--map (cons (file-name-nondirectory (directory-file-name it))
-                              it)
-                        (magit-list-repos))))))
-
-;;;; Columns
-
-(defun magit-repolist-column-ident (id)
-  "Insert the identification of the repository.
-Usually this is just its basename."
-  id)
-
-(defun magit-repolist-column-path (_id)
-  "Insert the absolute path of the repository."
-  (abbreviate-file-name default-directory))
-
-(defun magit-repolist-column-version (_id)
-  "Insert a description of the repository's `HEAD' revision."
-  (let ((v (or (magit-git-string "describe" "--tags" "--dirty")
-               ;; If there are no tags, use the date in MELPA format.
-               (magit-git-string "show" "--no-patch" "--format=%cd-g%h"
-                                 "--date=format:%Y%m%d.%H%M"))))
-    (save-match-data
-      (when (string-match "-dirty\\'" v)
-        (put-text-property (1+ (match-beginning 0)) (length v) 'face 'error v))
-      (if (and v (string-match "\\`[0-9]" v))
-          (concat " " v)
-        v))))
-
-(defun magit-repolist-column-branch (_id)
-  "Insert the current branch."
-  (magit-get-current-branch))
-
-(defun magit-repolist-column-upstream (_id)
-  "Insert the upstream branch of the current branch."
-  (magit-get-upstream-branch))
-
-(defun magit-repolist-column-dirty (_id)
-  "Insert a letter if there are uncommitted changes.
-
-Show N if there is at least one untracked file.
-Show U if there is at least one unstaged file.
-Show S if there is at least one staged file.
-Only one letter is shown, the first that applies."
-  (cond ((magit-untracked-files) "N")
-        ((magit-unstaged-files)  "U")
-        ((magit-staged-files)    "S")))
-
-(defun magit-repolist-column-unpulled-from-upstream (_id)
-  "Insert number of upstream commits not in the current branch."
-  (--when-let (magit-get-upstream-branch nil t)
-    (let ((n (cadr (magit-rev-diff-count "HEAD" it))))
-      (propertize (number-to-string n) 'face (if (> n 0) 'bold 'shadow)))))
-
-(defun magit-repolist-column-unpulled-from-pushremote (_id)
-  "Insert number of commits in the push branch but not the current branch."
-  (--when-let (magit-get-push-branch nil t)
-    (let ((n (cadr (magit-rev-diff-count "HEAD" it))))
-      (propertize (number-to-string n) 'face (if (> n 0) 'bold 'shadow)))))
-
-(defun magit-repolist-column-unpushed-to-upstream (_id)
-  "Insert number of commits in the current branch but not its upstream."
-  (--when-let (magit-get-upstream-branch nil t)
-    (let ((n (car (magit-rev-diff-count "HEAD" it))))
-      (propertize (number-to-string n) 'face (if (> n 0) 'bold 'shadow)))))
-
-(defun magit-repolist-column-unpushed-to-pushremote (_id)
-  "Insert number of commits in the current branch but not its push branch."
-  (--when-let (magit-get-push-branch nil t)
-    (let ((n (car (magit-rev-diff-count "HEAD" it))))
-      (propertize (number-to-string n) 'face (if (> n 0) 'bold 'shadow)))))
-
-(defun magit-repolist-column-branches (_id)
-  "Insert number of branches."
-  (let ((n (length (magit-list-local-branches))))
-    (propertize (number-to-string n) 'face (if (> n 1) 'bold 'shadow))))
-
-(defun magit-repolist-column-stashes (_id)
-  "Insert number of stashes."
-  (let ((n (length (magit-list-stashes))))
-    (propertize (number-to-string n) 'face (if (> n 0) 'bold 'shadow))))
-
-;;; Read Repository
-
-(defun magit-read-repository (&optional read-directory-name)
-  "Read a Git repository in the minibuffer, with completion.
-
-The completion choices are the basenames of top-levels of
-repositories found in the directories specified by option
-`magit-repository-directories'.  In case of name conflicts
-the basenames are prefixed with the name of the respective
-parent directories.  The returned value is the actual path
-to the selected repository.
-
-With prefix argument simply read a directory name using
-`read-directory-name'."
-  (if-let ((repos (and (not read-directory-name)
-                       magit-repository-directories
-                       (magit-list-repos-uniquify
-                        (--map (cons (file-name-nondirectory
-                                      (directory-file-name it))
-                                     it)
-                               (magit-list-repos))))))
-      (let ((reply (magit-completing-read "Git repository" repos)))
-        (file-name-as-directory
-         (or (cdr (assoc reply repos))
-             (if (file-directory-p reply)
-                 (expand-file-name reply)
-               (user-error "Not a repository or a directory: %s" reply)))))
-    (file-name-as-directory
-     (read-directory-name "Git repository: "
-                          (or (magit-toplevel) default-directory)))))
-
-(defun magit-list-repos ()
-  (cl-mapcan (pcase-lambda (`(,dir . ,depth))
-               (magit-list-repos-1 dir depth))
-             magit-repository-directories))
-
-(defun magit-list-repos-1 (directory depth)
-  (cond ((file-readable-p (expand-file-name ".git" directory))
-         (list directory))
-        ((and (> depth 0) (magit-file-accessible-directory-p directory))
-         (--mapcat (and (file-directory-p it)
-                        (magit-list-repos-1 it (1- depth)))
-                   (directory-files directory t
-                                    directory-files-no-dot-files-regexp t)))))
-
-(defun magit-list-repos-uniquify (alist)
-  (let (result (dict (make-hash-table :test 'equal)))
-    (dolist (a (delete-dups alist))
-      (puthash (car a) (cons (cdr a) (gethash (car a) dict)) dict))
-    (maphash
-     (lambda (key value)
-       (if (= (length value) 1)
-           (push (cons key (car value)) result)
-         (setq result
-               (append result
-                       (magit-list-repos-uniquify
-                        (--map (cons (concat
-                                      key "\\"
-                                      (file-name-nondirectory
-                                       (directory-file-name
-                                        (substring it 0 (- (1+ (length key)))))))
-                                     it)
-                               value))))))
-     dict)
-    result))
-
-;;; _
-(provide 'magit-repos)
-;;; magit-repos.el ends here
diff --git a/elpa/magit-20181116.1412/magit-repos.elc b/elpa/magit-20181116.1412/magit-repos.elc
deleted file mode 100644
index adbb712..0000000
--- a/elpa/magit-20181116.1412/magit-repos.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-reset.el b/elpa/magit-20181116.1412/magit-reset.el
deleted file mode 100644
index c487649..0000000
--- a/elpa/magit-20181116.1412/magit-reset.el
+++ /dev/null
@@ -1,126 +0,0 @@
-;;; magit-reset.el --- reset fuctionality  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements reset commands.
-
-;;; Code:
-
-(require 'magit)
-
-;;;###autoload (autoload 'magit-reset-popup "magit" nil t)
-(magit-define-popup magit-reset-popup
-  "Popup console for reset commands."
-  :man-page "git-reset"
-  :actions '((?m "reset mixed    (HEAD and index)"         magit-reset-mixed)
-             (?s "reset soft     (HEAD only)"              magit-reset-soft)
-             (?h "reset hard     (HEAD, index, and files)" magit-reset-hard)
-             (?i "reset index    (only)"                   magit-reset-index)
-             (?w "reset worktree (only)"                   magit-reset-worktree)
-             nil
-             (?f "reset a file"                            magit-file-checkout))
-  :max-action-columns 1)
-
-;;;###autoload
-(defun magit-reset-mixed (commit)
-  "Reset the `HEAD' and index to COMMIT, but not the working tree.
-\n(git reset --mixed COMMIT)"
-  (interactive (list (magit-reset-read-branch-or-commit "Reset %s to")))
-  (magit-reset-internal "--mixed" commit))
-
-;;;###autoload
-(defun magit-reset-soft (commit)
-  "Reset the `HEAD' to COMMIT, but not the index and working tree.
-\n(git reset --soft REVISION)"
-  (interactive (list (magit-reset-read-branch-or-commit "Soft reset %s to")))
-  (magit-reset-internal "--soft" commit))
-
-;;;###autoload
-(defun magit-reset-hard (commit)
-  "Reset the `HEAD', index, and working tree to COMMIT.
-\n(git reset --hard REVISION)"
-  (interactive (list (magit-reset-read-branch-or-commit
-                      (concat (propertize "Hard" 'face 'bold)
-                              " reset %s to"))))
-  (magit-reset-internal "--hard" commit))
-
-;;;###autoload
-(defun magit-reset-index (commit)
-  "Reset the index to COMMIT.
-Keep the `HEAD' and working tree as-is, so if COMMIT refers to the
-head this effectively unstages all changes.
-\n(git reset COMMIT .)"
-  (interactive (list (magit-read-branch-or-commit "Reset index to")))
-  (magit-reset-internal nil commit "."))
-
-;;;###autoload
-(defun magit-reset-worktree (commit)
-  "Reset the worktree to COMMIT.
-Keep the `HEAD' and index as-is."
-  (interactive (list (magit-read-branch-or-commit "Reset worktree to")))
-  (magit-with-temp-index commit nil
-    (magit-wip-commit-before-change nil " before reset")
-    (magit-run-git "checkout-index" "--all" "--force")
-    (magit-wip-commit-after-apply nil " after reset")))
-
-;;;###autoload
-(defun magit-reset-quickly (commit &optional hard)
-  "Reset the `HEAD' and index to COMMIT, and possibly the working tree.
-With a prefix argument reset the working tree otherwise don't.
-\n(git reset --mixed|--hard COMMIT)"
-  (interactive (list (magit-reset-read-branch-or-commit
-                      (if current-prefix-arg
-                          (concat (propertize "Hard" 'face 'bold)
-                                  " reset %s to")
-                        "Reset %s to"))
-                     current-prefix-arg))
-  (magit-reset-internal (if hard "--hard" "--mixed") commit))
-
-(defun magit-reset-read-branch-or-commit (prompt)
-  "Prompt for and return a ref to reset HEAD to.
-
-PROMPT is a format string, where either the current branch name
-or \"detached head\" will be substituted for %s."
-  (magit-read-branch-or-commit
-   (format prompt (or (magit-get-current-branch) "detached head"))))
-
-(defun magit-reset-internal (arg commit &optional path)
-  (when (and (not (member arg '("--hard" nil)))
-             (equal (magit-rev-parse commit)
-                    (magit-rev-parse "HEAD~")))
-    (with-temp-buffer
-      (magit-git-insert "show" "-s" "--format=%B" "HEAD")
-      (when git-commit-major-mode
-        (funcall git-commit-major-mode))
-      (git-commit-setup-font-lock)
-      (git-commit-save-message)))
-  (let ((cmd (if (and (equal commit "HEAD") (not arg)) "unstage" "reset")))
-    (magit-wip-commit-before-change nil (concat " before " cmd))
-    (magit-run-git "reset" arg commit "--" path)
-    (when (equal cmd "unstage")
-      (magit-wip-commit-after-apply nil " after unstage"))))
-
-;;; _
-(provide 'magit-reset)
-;;; magit-reset.el ends here
diff --git a/elpa/magit-20181116.1412/magit-reset.elc b/elpa/magit-20181116.1412/magit-reset.elc
deleted file mode 100644
index 6c80cad..0000000
--- a/elpa/magit-20181116.1412/magit-reset.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-section.el b/elpa/magit-20181116.1412/magit-section.el
deleted file mode 100644
index 704d5fa..0000000
--- a/elpa/magit-20181116.1412/magit-section.el
+++ /dev/null
@@ -1,1460 +0,0 @@
-;;; magit-section.el --- section functionality  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements "sections" as used in all Magit buffers.
-;; If you have used Magit before, then you probably know what that
-;; means, otherwise think "read-only Org-Mode for Git", kinda.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'dash)
-(require 'eieio)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit-utils)
-
-(declare-function magit-maybe-make-margin-overlay "magit-margin" ())
-(declare-function magit-repository-local-get "magit-mode"
-                  (key &optional default repository))
-(declare-function magit-repository-local-set "magit-mode"
-                  (key value &optional repository))
-(defvar magit-keep-region-overlay)
-
-;;; Options
-
-(defgroup magit-section nil
-  "Expandable sections."
-  :link '(info-link "(magit)Sections")
-  :group 'magit)
-
-(defcustom magit-section-show-child-count t
-  "Whether to append the number of children to section headings.
-This only applies to sections for which doing so makes sense."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-section
-  :type 'boolean)
-
-(defcustom magit-section-movement-hook
-  '(magit-hunk-set-window-start
-    magit-log-maybe-update-revision-buffer
-    magit-log-maybe-show-more-commits)
-  "Hook run by `magit-section-goto'.
-That function in turn is used by all section movement commands."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-section
-  :type 'hook
-  :options '(magit-hunk-set-window-start
-             magit-status-maybe-update-revision-buffer
-             magit-status-maybe-update-blob-buffer
-             magit-log-maybe-update-revision-buffer
-             magit-log-maybe-update-blob-buffer
-             magit-log-maybe-show-more-commits))
-
-(defcustom magit-section-highlight-hook
-  '(magit-diff-highlight
-    magit-section-highlight
-    magit-section-highlight-selection)
-  "Functions used to highlight the current section.
-Each function is run with the current section as only argument
-until one of them returns non-nil."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-section
-  :type 'hook
-  :options '(magit-diff-highlight
-             magit-section-highlight
-             magit-section-highlight-selection))
-
-(defcustom magit-section-unhighlight-hook
-  '(magit-diff-unhighlight)
-  "Functions used to unhighlight the previously current section.
-Each function is run with the current section as only argument
-until one of them returns non-nil.  Most sections are properly
-unhighlighted without requiring a specialized unhighlighter,
-diff-related sections being the only exception."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-section
-  :type 'hook
-  :options '(magit-diff-unhighlight))
-
-(defcustom magit-section-set-visibility-hook
-  '(magit-diff-expansion-threshold
-    magit-section-cached-visibility)
-  "Hook used to set the initial visibility of a section.
-Stop at the first function that returns non-nil.  The returned
-value should be `show', `hide' or nil.  If no function returns
-non-nil, determine the visibility as usual, i.e. use the
-hardcoded section specific default (see `magit-insert-section')."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-section
-  :type 'hook
-  :options '(magit-diff-expansion-threshold
-             magit-section-cached-visibility))
-
-(defcustom magit-section-cache-visibility t
-  "Whether to cache visibility of sections.
-
-Sections always retain their visibility state when they are being
-recreated during a refresh.  But if a section disappears and then
-later reappears again, then this option controls whether this is
-the case.
-
-If t, then cache the visibility of all sections.  If a list of
-section types, then only do so for matching sections.  If nil,
-then don't do so for any sections."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-section
-  :type '(choice (const  :tag "Don't cache visibility" nil)
-                 (const  :tag "Cache visibility of all sections" t)
-                 (repeat :tag "Cache visibility for section types" symbol)))
-
-(defcustom magit-section-initial-visibility-alist
-  '((stashes . hide))
-  "Alist controlling the initial visibility of sections.
-
-Each element maps a section type or lineage to the initial
-visibility state for such sections.  The state has to be one of
-`show' or `hide', or a function that returns one of these symbols.
-A function is called with the section as the only argument.
-
-Use the command `magit-describe-section' to determine a section's
-lineage or type.  The vector in the output is the section lineage
-and the type is the first element of that vector.  Wildcards can
-be used, see `magit-section-match'.
-
-Currently this option is only used to override hardcoded defaults,
-but in the future it will also be used set the defaults.
-
-An entry whose key is `magit-status-initial-section' specifies
-the visibility of the section `magit-status-goto-initial-section'
-jumps to.  This does not only override defaults, but also other
-entries of this alist."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-section
-  :type '(alist :key-type (sexp :tag "Section type/lineage")
-                :value-type (choice (const hide)
-                                    (const show)
-                                    function)))
-
-(defface magit-section-highlight
-  '((((class color) (background light)) :background "grey95")
-    (((class color) (background  dark)) :background "grey20"))
-  "Face for highlighting the current section."
-  :group 'magit-faces)
-
-(defface magit-section-heading
-  '((((class color) (background light)) :foreground "DarkGoldenrod4" :weight bold)
-    (((class color) (background  dark)) :foreground "LightGoldenrod2" :weight bold))
-  "Face for section headings."
-  :group 'magit-faces)
-
-(defface magit-section-secondary-heading '((t :weight bold))
-  "Face for section headings of some secondary headings."
-  :group 'magit-faces)
-
-(defface magit-section-heading-selection
-  '((((class color) (background light)) :foreground "salmon4")
-    (((class color) (background  dark)) :foreground "LightSalmon3"))
-  "Face for selected section headings."
-  :group 'magit-faces)
-
-;;; Classes
-
-(defvar magit--current-section-hook nil
-  "Internal variable used for `magit-explain-section'.")
-
-(defvar magit--section-type-alist
-  '(
-    (file            . magit-file-section)
-    (hunk            . magit-hunk-section)
-    (module          . magit-module-section)
-    ))
-
-(defclass magit-section ()
-  ((keymap   :initform nil :allocation :class)
-   (type     :initform nil :initarg :type)
-   (value    :initform nil :initarg :value)
-   (start    :initform nil :initarg :start)
-   (content  :initform nil)
-   (end      :initform nil)
-   (hidden   :initform nil)
-   (washer   :initform nil)
-   (process  :initform nil)
-   (heading-highlight-face :initform nil)
-   (inserter :initform (symbol-value 'magit--current-section-hook))
-   (parent   :initform nil :initarg :parent)
-   (children :initform nil)))
-
-(defclass magit-file-section (magit-section)
-  ((source   :initform nil)
-   (header   :initform nil)))
-
-(defclass magit-hunk-section (magit-section)
-  ((refined  :initform nil)))
-
-(defclass magit-module-section (magit-file-section)
-  ())
-
-;;; Core
-
-(defvar-local magit-root-section nil
-  "The root section in the current buffer.
-All other sections are descendants of this section.  The value
-of this variable is set by `magit-insert-section' and you should
-never modify it.")
-(put 'magit-root-section 'permanent-local t)
-
-(defun magit-current-section ()
-  "Return the section at point."
-  (or (get-text-property (point) 'magit-section) magit-root-section))
-
-(defun magit-section-ident (section)
-  "Return an unique identifier for SECTION.
-The return value has the form ((TYPE . VALUE)...)."
-  (with-slots (type value parent) section
-    (cons (cons type
-                (cond ((not (memq type '(unpulled unpushed))) value)
-                      ((string-match-p "@{upstream}" value) value)
-                      ;; Unfortunately Git chokes on "@{push}" when
-                      ;; the value of `push.default' does not allow a
-                      ;; 1:1 mapping.  Arbitrary commands may consult
-                      ;; the section value so we cannot use "@{push}".
-                      ;; But `unpushed' and `unpulled' sections should
-                      ;; keep their identity when switching branches
-                      ;; so we have to use another value here.
-                      ((string-match-p "\\`\\.\\." value) "..@{push}")
-                      (t "@{push}..")))
-          (and parent
-               (magit-section-ident parent)))))
-
-(defun magit-get-section (ident &optional root)
-  "Return the section identified by IDENT.
-IDENT has to be a list as returned by `magit-section-ident'."
-  (setq ident (reverse ident))
-  (let ((section (or root magit-root-section)))
-    (when (eq (car (pop ident))
-              (oref section type))
-      (while (and ident
-                  (setq section
-                        (--first
-                         (and (eq    (caar ident) (oref it type))
-                              (equal (cdar ident) (oref it value)))
-                         (oref section children))))
-        (pop ident))
-      section)))
-
-(defun magit-section-lineage (section)
-  "Return the lineage of SECTION.
-The return value has the form (TYPE...)."
-  (cons (oref section type)
-        (when-let ((parent (oref section parent)))
-          (magit-section-lineage parent))))
-
-(defvar magit-insert-section--current nil "For internal use only.")
-(defvar magit-insert-section--parent  nil "For internal use only.")
-(defvar magit-insert-section--oldroot nil "For internal use only.")
-
-;;; Commands
-;;;; Movement
-
-(defun magit-section-forward ()
-  "Move to the beginning of the next visible section."
-  (interactive)
-  (if (eobp)
-      (user-error "No next section")
-    (let ((section (magit-current-section)))
-      (if (oref section parent)
-          (let ((next (and (not (oref section hidden))
-                           (not (= (oref section end)
-                                   (1+ (point))))
-                           (car (oref section children)))))
-            (while (and section (not next))
-              (unless (setq next (car (magit-section-siblings section 'next)))
-                (setq section (oref section parent))))
-            (if next
-                (magit-section-goto next)
-              (user-error "No next section")))
-        (magit-section-goto 1)))))
-
-(defun magit-section-backward ()
-  "Move to the beginning of the current or the previous visible section.
-When point is at the beginning of a section then move to the
-beginning of the previous visible section.  Otherwise move to
-the beginning of the current section."
-  (interactive)
-  (if (bobp)
-      (user-error "No previous section")
-    (let ((section (magit-current-section)) children)
-      (cond
-       ((and (= (point)
-                (1- (oref section end)))
-             (setq children (oref section children)))
-        (magit-section-goto (car (last children))))
-       ((and (oref section parent)
-             (not (= (point)
-                     (oref section start))))
-        (magit-section-goto section))
-       (t
-        (let ((prev (car (magit-section-siblings section 'prev))))
-          (if prev
-              (while (and (not (oref prev hidden))
-                          (setq children (oref prev children)))
-                (setq prev (car (last children))))
-            (setq prev (oref section parent)))
-          (cond (prev
-                 (magit-section-goto prev))
-                ((oref section parent)
-                 (user-error "No previous section"))
-                ;; Eob special cases.
-                ((not (get-text-property (1- (point)) 'invisible))
-                 (magit-section-goto -1))
-                (t
-                 (goto-char (previous-single-property-change
-                             (1- (point)) 'invisible))
-                 (forward-line -1)
-                 (magit-section-goto (magit-current-section))))))))))
-
-(defun magit-section-up ()
-  "Move to the beginning of the parent section."
-  (interactive)
-  (--if-let (oref (magit-current-section) parent)
-      (magit-section-goto it)
-    (user-error "No parent section")))
-
-(defun magit-section-forward-sibling ()
-  "Move to the beginning of the next sibling section.
-If there is no next sibling section, then move to the parent."
-  (interactive)
-  (let ((current (magit-current-section)))
-    (if (oref current parent)
-        (--if-let (car (magit-section-siblings current 'next))
-            (magit-section-goto it)
-          (magit-section-forward))
-      (magit-section-goto 1))))
-
-(defun magit-section-backward-sibling ()
-  "Move to the beginning of the previous sibling section.
-If there is no previous sibling section, then move to the parent."
-  (interactive)
-  (let ((current (magit-current-section)))
-    (if (oref current parent)
-        (--if-let (car (magit-section-siblings current 'prev))
-            (magit-section-goto it)
-          (magit-section-backward))
-      (magit-section-goto -1))))
-
-(defun magit-section-goto (arg)
-  (if (integerp arg)
-      (progn (forward-line arg)
-             (setq arg (magit-current-section)))
-    (goto-char (oref arg start)))
-  (run-hook-with-args 'magit-section-movement-hook arg))
-
-(defun magit-section-set-window-start (section)
-  "Ensure the beginning of SECTION is visible."
-  (unless (pos-visible-in-window-p (oref section end))
-    (set-window-start (selected-window) (oref section start))))
-
-(defun magit-hunk-set-window-start (section)
-  "When SECTION is a `hunk', ensure that its beginning is visible.
-It the SECTION has a different type, then do nothing."
-  (when (magit-hunk-section-p section)
-    (magit-section-set-window-start section)))
-
-(defmacro magit-define-section-jumper (name heading type &optional value)
-  "Define an interactive function to go some section.
-Together TYPE and VALUE identify the section.
-HEADING is the displayed heading of the section."
-  (declare (indent defun))
-  `(defun ,name (&optional expand) ,(format "\
-Jump to the section \"%s\".
-With a prefix argument also expand it." heading)
-     (interactive "P")
-     (--if-let (magit-get-section
-                (cons (cons ',type ,value)
-                      (magit-section-ident magit-root-section)))
-         (progn (goto-char (oref it start))
-                (when expand
-                  (with-local-quit (magit-section-show it))
-                  (recenter 0)))
-       (message ,(format "Section \"%s\" wasn't found" heading)))))
-
-;;;; Visibility
-
-(defun magit-section-show (section)
-  "Show the body of the current section."
-  (interactive (list (magit-current-section)))
-  (oset section hidden nil)
-  (when-let ((washer (oref section washer)))
-    (oset section washer nil)
-    (let ((inhibit-read-only t)
-          (magit-insert-section--parent section)
-          (content (oref section content)))
-      (save-excursion
-        (if (and content (< content (oref section end)))
-            (funcall washer section) ; already partially washed (hunk)
-          (goto-char (oref section end))
-          (oset section content (point-marker))
-          (funcall washer)
-          (oset section end (point-marker)))))
-    (magit-section-update-highlight))
-  (when-let ((beg (oref section content)))
-    (remove-overlays beg (oref section end) 'invisible t))
-  (magit-section-maybe-cache-visibility section)
-  (dolist (child (oref section children))
-    (if (oref child hidden)
-        (magit-section-hide child)
-      (magit-section-show child))))
-
-(defun magit-section-hide (section)
-  "Hide the body of the current section."
-  (interactive (list (magit-current-section)))
-  (if (eq section magit-root-section)
-      (user-error "Cannot hide root section")
-    (oset section hidden t)
-    (when-let ((beg (oref section content)))
-      (let ((end (oref section end)))
-        (remove-overlays beg end 'invisible t)
-        (let ((o (make-overlay beg end)))
-          (overlay-put o 'evaporate t)
-          (overlay-put o 'invisible t))))
-    (magit-section-maybe-cache-visibility section)))
-
-(defun magit-section-toggle (section)
-  "Toggle visibility of the body of the current section."
-  (interactive (list (magit-current-section)))
-  (if (eq section magit-root-section)
-      (user-error "Cannot hide root section")
-    (goto-char (oref section start))
-    (if (oref section hidden)
-        (magit-section-show section)
-      (magit-section-hide section))))
-
-(defun magit-section-toggle-children (section)
-  "Toggle visibility of bodies of children of the current section."
-  (interactive (list (magit-current-section)))
-  (goto-char (oref section start))
-  (let* ((children (oref section children))
-         (show (--any-p (oref it hidden) children)))
-    (dolist (c children)
-      (oset c hidden show)))
-  (magit-section-show section))
-
-(defun magit-section-show-children (section &optional depth)
-  "Recursively show the bodies of children of the current section.
-With a prefix argument show children that deep and hide deeper
-children."
-  (interactive (list (magit-current-section)))
-  (magit-section-show-children-1 section depth)
-  (magit-section-show section))
-
-(defun magit-section-show-children-1 (section &optional depth)
-  (dolist (child (oref section children))
-    (oset child hidden nil)
-    (if depth
-        (if (> depth 0)
-            (magit-section-show-children-1 child (1- depth))
-          (magit-section-hide child))
-      (magit-section-show-children-1 child))))
-
-(defun magit-section-hide-children (section)
-  "Recursively hide the bodies of children of the current section."
-  (interactive (list (magit-current-section)))
-  (mapc 'magit-section-hide (oref section children)))
-
-(defun magit-section-show-headings (section)
-  "Recursively show headings of children of the current section.
-Only show the headings, previously shown text-only bodies are
-hidden."
-  (interactive (list (magit-current-section)))
-  (magit-section-show-headings-1 section)
-  (magit-section-show section))
-
-(defun magit-section-show-headings-1 (section)
-  (dolist (child (oref section children))
-    (oset child hidden nil)
-    (when (or (oref child children)
-              (not (oref child content)))
-      (magit-section-show-headings-1 child))))
-
-(defun magit-section-cycle (section)
-  "Cycle visibility of current section and its children."
-  (interactive (list (magit-current-section)))
-  (goto-char (oref section start))
-  (if (oref section hidden)
-      (progn (magit-section-show section)
-             (magit-section-hide-children section))
-    (let ((children (oref section children)))
-      (cond ((and (--any-p (oref it hidden)   children)
-                  (--any-p (oref it children) children))
-             (magit-section-show-headings section))
-            ((-any-p 'magit-section-hidden-body children)
-             (magit-section-show-children section))
-            (t
-             (magit-section-hide section))))))
-
-(defun magit-section-cycle-global ()
-  "Cycle visibility of all sections in the current buffer."
-  (interactive)
-  (let ((children (oref magit-root-section children)))
-    (cond ((and (--any-p (oref it hidden)   children)
-                (--any-p (oref it children) children))
-           (magit-section-show-headings magit-root-section))
-          ((-any-p 'magit-section-hidden-body children)
-           (magit-section-show-children magit-root-section))
-          (t
-           (mapc 'magit-section-hide children)))))
-
-(defun magit-section-cycle-diffs ()
-  "Cycle visibility of diff-related sections in the current buffer."
-  (interactive)
-  (when-let ((sections
-              (cond ((derived-mode-p 'magit-status-mode)
-                     (--mapcat
-                      (when it
-                        (when (oref it hidden)
-                          (magit-section-show it))
-                        (oref it children))
-                      (list (magit-get-section '((staged)   (status)))
-                            (magit-get-section '((unstaged) (status))))))
-                    ((derived-mode-p 'magit-diff-mode)
-                     (-filter #'magit-file-section-p
-                              (oref magit-root-section children))))))
-    (if (--any-p (oref it hidden) sections)
-        (dolist (s sections)
-          (magit-section-show s)
-          (magit-section-hide-children s))
-      (let ((children (--mapcat (oref it children) sections)))
-        (cond ((and (--any-p (oref it hidden)   children)
-                    (--any-p (oref it children) children))
-               (mapc 'magit-section-show-headings sections))
-              ((-any-p 'magit-section-hidden-body children)
-               (mapc 'magit-section-show-children sections))
-              (t
-               (mapc 'magit-section-hide sections)))))))
-
-(defun magit-section-hidden-body (section &optional pred)
-  (--if-let (oref section children)
-      (funcall (or pred '-any-p) 'magit-section-hidden-body it)
-    (and (oref section content)
-         (oref section hidden))))
-
-(defun magit-section-invisible-p (section)
-  "Return t if the SECTION's body is invisible.
-When the body of an ancestor of SECTION is collapsed then
-SECTION's body (and heading) obviously cannot be visible."
-  (or (oref section hidden)
-      (--when-let (oref section parent)
-        (magit-section-invisible-p it))))
-
-(defun magit-section-show-level (level)
-  "Show surrounding sections up to LEVEL.
-If LEVEL is negative, show up to the absolute value.
-Sections at higher levels are hidden."
-  (if (< level 0)
-      (let ((s (magit-current-section)))
-        (setq level (- level))
-        (while (> (1- (length (magit-section-ident s))) level)
-          (setq s (oref s parent))
-          (goto-char (oref s start)))
-        (magit-section-show-children magit-root-section (1- level)))
-    (cl-do* ((s (magit-current-section)
-                (oref s parent))
-             (i (1- (length (magit-section-ident s)))
-                (cl-decf i)))
-        ((cond ((< i level) (magit-section-show-children s (- level i 1)) t)
-               ((= i level) (magit-section-hide s) t))
-         (magit-section-goto s)))))
-
-(defun magit-section-show-level-1 ()
-  "Show surrounding sections on first level."
-  (interactive)
-  (magit-section-show-level 1))
-
-(defun magit-section-show-level-1-all ()
-  "Show all sections on first level."
-  (interactive)
-  (magit-section-show-level -1))
-
-(defun magit-section-show-level-2 ()
-  "Show surrounding sections up to second level."
-  (interactive)
-  (magit-section-show-level 2))
-
-(defun magit-section-show-level-2-all ()
-  "Show all sections up to second level."
-  (interactive)
-  (magit-section-show-level -2))
-
-(defun magit-section-show-level-3 ()
-  "Show surrounding sections up to third level."
-  (interactive)
-  (magit-section-show-level 3))
-
-(defun magit-section-show-level-3-all ()
-  "Show all sections up to third level."
-  (interactive)
-  (magit-section-show-level -3))
-
-(defun magit-section-show-level-4 ()
-  "Show surrounding sections up to fourth level."
-  (interactive)
-  (magit-section-show-level 4))
-
-(defun magit-section-show-level-4-all ()
-  "Show all sections up to fourth level."
-  (interactive)
-  (magit-section-show-level -4))
-
-;;;; Auxiliary
-
-(defun magit-describe-section-briefly (section &optional message ident)
-  "Show information about the section at point.
-With a prefix argument show the section identity instead of the
-section lineage.  This command is intended for debugging purposes."
-  (interactive (list (magit-current-section) t))
-  (let ((str (format "#<%s %S %S %s-%s>"
-                     (eieio-object-class section)
-                     (let ((val (oref section value)))
-                       (cond ((stringp val)
-                              (substring-no-properties val))
-                             ((and (eieio-object-p val)
-                                   (fboundp 'cl-prin1-to-string))
-                              (cl-prin1-to-string val))
-                             (t
-                              val)))
-                     (if ident
-                         (magit-section-ident section)
-                       (apply #'vector (magit-section-lineage section)))
-                     (when-let ((m (oref section start)))
-                       (marker-position m))
-                     (when-let ((m (oref section end)))
-                       (marker-position m)))))
-    (if message (message "%s" str) str)))
-
-(cl-defmethod cl-print-object ((section magit-section) stream)
-  "Print `magit-describe-section' result of SECTION."
-  ;; Used by debug and edebug as of Emacs 26.
-  (princ (magit-describe-section-briefly section) stream))
-
-(defun magit-describe-section (section &optional interactive-p)
-  "Show information about the section at point."
-  (interactive (list (magit-current-section) t))
-  (let ((inserter-section section))
-    (while (and inserter-section (not (oref inserter-section inserter)))
-      (setq inserter-section (oref inserter-section parent)))
-    (when (and inserter-section (oref inserter-section inserter))
-      (setq section inserter-section)))
-  (pcase (oref section inserter)
-    (`((,hook ,fun) . ,src-src)
-     (help-setup-xref `(magit-describe-section ,section) interactive-p)
-     (with-help-window (help-buffer)
-       (with-current-buffer standard-output
-         (insert (format-message
-                  "%s\n  is inserted by `%s'\n  from `%s'"
-                  (magit-describe-section-briefly section)
-                  (make-text-button (symbol-name fun) nil
-                                    :type 'help-function
-                                    'help-args (list fun))
-                  (make-text-button (symbol-name hook) nil
-                                    :type 'help-variable
-                                    'help-args (list hook))))
-         (pcase-dolist (`(,hook ,fun) src-src)
-           (insert (format-message
-                    ",\n  called by `%s'\n  from `%s'"
-                    (make-text-button (symbol-name fun) nil
-                                      :type 'help-function
-                                      'help-args (list fun))
-                    (make-text-button (symbol-name hook) nil
-                                      :type 'help-variable
-                                      'help-args (list hook)))))
-         (insert ".\n\n")
-         (insert
-          (format-message
-           "`%s' is "
-           (make-text-button (symbol-name fun) nil
-                             :type 'help-function 'help-args (list fun))))
-         (describe-function-1 fun))))
-    (_ (message "%s, inserter unknown"
-                (magit-describe-section-briefly section)))))
-
-;;; Match
-
-(cl-defun magit-section-match
-    (condition &optional (section (magit-current-section)))
-  "Return t if SECTION matches CONDITION.
-
-SECTION defaults to the section at point.  If SECTION is not
-specified and there also is no section at point, then return
-nil.
-
-CONDITION can take the following forms:
-  (CONDITION...)  matches if any of the CONDITIONs matches.
-  [CLASS...]      matches if the section's class is the same
-                  as the first CLASS or a subclass of that;
-                  the section's parent class matches the
-                  second CLASS; and so on.
-  [* CLASS...]    matches sections that match [CLASS...] and
-                  also recursively all their child sections.
-  CLASS           matches if the section's class is the same
-                  as CLASS or a subclass of that; regardless
-                  of the classes of the parent sections.
-
-Each CLASS should be a class symbol, identifying a class that
-derives from `magit-section'.  For backward compatibility CLASS
-can also be a \"type symbol\".  A section matches such a symbol
-if the value of its `type' slot is `eq'.  If a type symbol has
-an entry in `magit--section-type-alist', then a section also
-matches that type if its class is a subclass of the class that
-corresponds to the type as per that alist.
-
-Note that it is not necessary to specify the complete section
-lineage as printed by `magit-describe-section-briefly', unless
-of course you want to be that precise."
-  (and section (magit-section-match-1 condition section)))
-
-(defun magit-section-match-1 (condition section)
-  (cl-assert condition)
-  (and section
-       (if (listp condition)
-           (--first (magit-section-match-1 it section) condition)
-         (magit-section-match-2 (if (symbolp condition)
-                                    (list condition)
-                                  (cl-coerce condition 'list))
-                                section))))
-
-(defun magit-section-match-2 (condition section)
-  (if (eq (car condition) '*)
-      (or (magit-section-match-2 (cdr condition) section)
-          (when-let ((parent (oref section parent)))
-            (magit-section-match-2 condition parent)))
-    (and (let ((c (car condition)))
-           (if (class-p c)
-               (cl-typep section c)
-             (if-let ((class (cdr (assq c magit--section-type-alist))))
-                 (cl-typep section class)
-               (eq (oref section type) c))))
-         (or (not (setq condition (cdr condition)))
-             (when-let ((parent (oref section parent)))
-               (magit-section-match-2 condition parent))))))
-
-(defun magit-section-value-if (condition &optional section)
-  "If the section at point matches CONDITION, then return its value.
-
-If optional SECTION is non-nil then test whether that matches
-instead.  If there is no section at point and SECTION is nil,
-then return nil.  If the section does not match, then return
-nil.
-
-See `magit-section-match' for the forms CONDITION can take."
-  (when-let ((section (or section (magit-current-section))))
-    (and (magit-section-match condition section)
-         (oref section value))))
-
-(defmacro magit-section-when (condition &rest body)
-  "If the section at point matches CONDITION, evaluate BODY.
-
-If the section matches, then evaluate BODY forms sequentially
-with `it' bound to the section and return the value of the last
-form.  If there are no BODY forms, then return the value of the
-section.  If the section does not match or if there is no section
-at point, then return nil.
-
-See `magit-section-match' for the forms CONDITION can take."
-  (declare (obsolete
-            "instead use `magit-section-match' or `magit-section-value-if'."
-            "Magit 2.90.0")
-           (indent 1)
-           (debug (sexp body)))
-  `(--when-let (magit-current-section)
-     ;; Quoting CONDITION here often leads to double-quotes, which
-     ;; isn't an issue because `magit-section-match-1' implicitly
-     ;; deals with that.  We shouldn't force users of this function
-     ;; to not quote CONDITION because that would needlessly break
-     ;; backward compatibility.
-     (when (magit-section-match ',condition it)
-       ,@(or body '((oref it value))))))
-
-(defmacro magit-section-case (&rest clauses)
-  "Choose among clauses on the type of the section at point.
-
-Each clause looks like (CONDITION BODY...).  The type of the
-section is compared against each CONDITION; the BODY forms of the
-first match are evaluated sequentially and the value of the last
-form is returned.  Inside BODY the symbol `it' is bound to the
-section at point.  If no clause succeeds or if there is no
-section at point, return nil.
-
-See `magit-section-match' for the forms CONDITION can take.
-Additionally a CONDITION of t is allowed in the final clause, and
-matches if no other CONDITION match, even if there is no section
-at point."
-  (declare (indent 0)
-           (debug (&rest (sexp body))))
-  `(let* ((it (magit-current-section)))
-     (cond ,@(mapcar (lambda (clause)
-                       `(,(or (eq (car clause) t)
-                              `(and it
-                                    (magit-section-match-1 ',(car clause) it)))
-                         ,@(cdr clause)))
-                     clauses))))
-
-(defun magit-section-match-assoc (section alist)
-  "Return the value associated with SECTION's type or lineage in ALIST."
-  (-some (pcase-lambda (`(,key . ,val))
-           (and (magit-section-match-1 key section) val))
-         alist))
-
-;;; Create
-
-(defvar magit-insert-section-hook nil
-  "Hook run after `magit-insert-section's BODY.
-Avoid using this hook and only ever do so if you know
-what you are doing and are sure there is no other way.")
-
-(defmacro magit-insert-section (&rest args)
-  "Insert a section at point.
-
-TYPE is the section type, a symbol.  Many commands that act on
-the current section behave differently depending on that type.
-Also if a variable `magit-TYPE-section-map' exists, then use
-that as the text-property `keymap' of all text belonging to the
-section (but this may be overwritten in subsections).  TYPE can
-also have the form `(eval FORM)' in which case FORM is evaluated
-at runtime.
-
-Optional VALUE is the value of the section, usually a string
-that is required when acting on the section.
-
-When optional HIDE is non-nil collapse the section body by
-default, i.e. when first creating the section, but not when
-refreshing the buffer.  Else expand it by default.  This can be
-overwritten using `magit-section-set-visibility-hook'.  When a
-section is recreated during a refresh, then the visibility of
-predecessor is inherited and HIDE is ignored (but the hook is
-still honored).
-
-BODY is any number of forms that actually insert the section's
-heading and body.  Optional NAME, if specified, has to be a
-symbol, which is then bound to the struct of the section being
-inserted.
-
-Before BODY is evaluated the `start' of the section object is set
-to the value of `point' and after BODY was evaluated its `end' is
-set to the new value of `point'; BODY is responsible for moving
-`point' forward.
-
-If it turns out inside BODY that the section is empty, then
-`magit-cancel-section' can be used to abort and remove all traces
-of the partially inserted section.  This can happen when creating
-a section by washing Git's output and Git didn't actually output
-anything this time around.
-
-\(fn [NAME] (TYPE &optional VALUE HIDE) &rest BODY)"
-  (declare (indent defun)
-           (debug ([&optional symbolp]
-                   (&or [("eval" symbolp) &optional form form]
-                        [symbolp &optional form form])
-                   body)))
-  (let ((tp (cl-gensym "type"))
-        (s* (and (symbolp (car args))
-                 (pop args)))
-        (s  (cl-gensym "section")))
-    `(let* ((,tp ,(let ((type (nth 0 (car args))))
-                    (if (eq (car-safe type) 'eval)
-                        (cadr type)
-                      `',type)))
-            (,s (funcall (if (class-p ,tp)
-                             ,tp
-                           (or (cdr (assq ,tp magit--section-type-alist))
-                               'magit-section))
-                         :type
-                         (if (class-p ,tp)
-                             (or (car (rassq ,tp magit--section-type-alist))
-                                 (error "BUG: No entry for %s in %s" ,tp
-                                        'magit--section-type-alist))
-                           ,tp)
-                         :value ,(nth 1 (car args))
-                         :start (point-marker)
-                         :parent magit-insert-section--parent)))
-       (oset ,s hidden
-             (if-let ((value (run-hook-with-args-until-success
-                              'magit-section-set-visibility-hook ,s)))
-                 (eq value 'hide)
-               (if-let ((incarnation (and magit-insert-section--oldroot
-                                          (magit-get-section
-                                           (magit-section-ident ,s)
-                                           magit-insert-section--oldroot))))
-                   (oref incarnation hidden)
-                 (if-let ((value (magit-section-match-assoc
-                                  ,s magit-section-initial-visibility-alist)))
-                     (progn
-                       (when (functionp value)
-                         (setq value (funcall value ,s)))
-                       (eq value 'hide))
-                   ,(nth 2 (car args))))))
-       (let ((magit-insert-section--current ,s)
-             (magit-insert-section--parent  ,s)
-             (magit-insert-section--oldroot
-              (or magit-insert-section--oldroot
-                  (unless magit-insert-section--parent
-                    (prog1 magit-root-section
-                      (setq magit-root-section ,s))))))
-         (catch 'cancel-section
-           ,@(if s*
-                 `((let ((,s* ,s))
-                     ,@(cdr args)))
-               (cdr args))
-           ;; `magit-insert-section-hook' should *not* be run with
-           ;; `magit-run-section-hook' because it's a hook that runs
-           ;; on section insertion, not a section inserting hook.
-           (run-hooks 'magit-insert-section-hook)
-           (magit-insert-child-count ,s)
-           (set-marker-insertion-type (oref ,s start) t)
-           (let* ((end (oset ,s end (point-marker)))
-                  (class-map (oref-default ,s keymap))
-                  (magit-map (intern (format "magit-%s-section-map"
-                                             (oref ,s type))))
-                  (forge-map (intern (format "forge-%s-section-map"
-                                             (oref ,s type))))
-                  (map (or (and         class-map  (symbol-value class-map))
-                           (and (boundp magit-map) (symbol-value magit-map))
-                           (and (boundp forge-map) (symbol-value forge-map)))))
-             (save-excursion
-               (goto-char (oref ,s start))
-               (while (< (point) end)
-                 (let ((next (or (next-single-property-change
-                                  (point) 'magit-section)
-                                 end)))
-                   (unless (get-text-property (point) 'magit-section)
-                     (put-text-property (point) next 'magit-section ,s)
-                     (when map
-                       (put-text-property (point) next 'keymap map)))
-                   (goto-char next)))))
-           (if (eq ,s magit-root-section)
-               (let ((magit-section-cache-visibility nil))
-                 (magit-section-show ,s))
-             (oset (oref ,s parent) children
-                   (nconc (oref (oref ,s parent) children)
-                          (list ,s)))))
-         ,s))))
-
-(defun magit-cancel-section ()
-  (when magit-insert-section--current
-    (if (not (oref magit-insert-section--current parent))
-        (insert "(empty)\n")
-      (delete-region (oref magit-insert-section--current start)
-                     (point))
-      (setq magit-insert-section--current nil)
-      (throw 'cancel-section nil))))
-
-(defun magit-insert-heading (&rest args)
-  "Insert the heading for the section currently being inserted.
-
-This function should only be used inside `magit-insert-section'.
-
-When called without any arguments, then just set the `content'
-slot of the object representing the section being inserted to
-a marker at `point'.  The section should only contain a single
-line when this function is used like this.
-
-When called with arguments ARGS, which have to be strings, or
-nil, then insert those strings at point.  The section should not
-contain any text before this happens and afterwards it should
-again only contain a single line.  If the `face' property is set
-anywhere inside any of these strings, then insert all of them
-unchanged.  Otherwise use the `magit-section-heading' face for
-all inserted text.
-
-The `content' property of the section struct is the end of the
-heading (which lasts from `start' to `content') and the beginning
-of the the body (which lasts from `content' to `end').  If the
-value of `content' is nil, then the section has no heading and
-its body cannot be collapsed.  If a section does have a heading,
-then its height must be exactly one line, including a trailing
-newline character.  This isn't enforced, you are responsible for
-getting it right.  The only exception is that this function does
-insert a newline character if necessary."
-  (declare (indent defun))
-  (when args
-    (let ((heading (apply #'concat args)))
-      (insert (if (text-property-not-all 0 (length heading) 'face nil heading)
-                  heading
-                (propertize heading 'face 'magit-section-heading)))))
-  (unless (bolp)
-    (insert ?\n))
-  (magit-maybe-make-margin-overlay)
-  (oset magit-insert-section--current content (point-marker)))
-
-(defun magit-insert-headers (hook)
-  (let* ((header-sections nil)
-         (magit-insert-section-hook
-          (cons (lambda ()
-                  (push magit-insert-section--current
-                        header-sections))
-                (if (listp magit-insert-section-hook)
-                    magit-insert-section-hook
-                  (list magit-insert-section-hook)))))
-    (magit-run-section-hook hook)
-    (when header-sections
-      (insert "\n")
-      ;; Make the first header into the parent of the rest.
-      (when (cdr header-sections)
-        (cl-callf nreverse header-sections)
-        (let* ((1st-header (pop header-sections))
-               (header-parent (oref 1st-header parent)))
-          (oset header-parent children (list 1st-header))
-          (oset 1st-header children header-sections)
-          (oset 1st-header content (oref (car header-sections) start))
-          (oset 1st-header end (oref (car (last header-sections)) end))
-          (dolist (sub-header header-sections)
-            (oset sub-header parent 1st-header)))))))
-
-(defun magit-insert-child-count (section)
-  "Modify SECTION's heading to contain number of child sections.
-
-If `magit-section-show-child-count' is non-nil and the SECTION
-has children and its heading ends with \":\", then replace that
-with \" (N)\", where N is the number of child sections.
-
-This function is called by `magit-insert-section' after that has
-evaluated its BODY.  Admittedly that's a bit of a hack."
-  ;; This has to be fast, not pretty!
-  (let (content count)
-    (when (and magit-section-show-child-count
-               (setq count (length (oref section children)))
-               (> count 0)
-               (setq content (oref section content))
-               (eq (char-before (1- content)) ?:))
-      (save-excursion
-        (goto-char (- content 2))
-        (insert (format " (%s)" count))
-        (delete-char 1)))))
-
-;;; Update
-
-(defvar-local magit-section-highlight-overlays nil)
-(defvar-local magit-section-highlighted-section nil)
-(defvar-local magit-section-highlighted-sections nil)
-(defvar-local magit-section-unhighlight-sections nil)
-
-(defun magit-section-update-region (_)
-  "When the region is a valid section-selection, highlight them all."
-  ;; At least that's what it does conceptually.  In actuality it just
-  ;; returns a list of those sections, and it doesn't even matter if
-  ;; this is a member of `magit-region-highlight-hook'.  It probably
-  ;; should be removed, but I want to make sure before removing it.
-  (magit-region-sections))
-
-(defun magit-section-update-highlight ()
-  (let ((section (magit-current-section)))
-    (unless (eq section magit-section-highlighted-section)
-      (let ((inhibit-read-only t)
-            (deactivate-mark nil)
-            (selection (magit-region-sections)))
-        (mapc #'delete-overlay magit-section-highlight-overlays)
-        (setq magit-section-highlight-overlays nil)
-        (setq magit-section-unhighlight-sections
-              magit-section-highlighted-sections)
-        (setq magit-section-highlighted-sections nil)
-        (unless (eq section magit-root-section)
-          (run-hook-with-args-until-success
-           'magit-section-highlight-hook section selection))
-        (dolist (s magit-section-unhighlight-sections)
-          (run-hook-with-args-until-success
-           'magit-section-unhighlight-hook s selection))
-        (restore-buffer-modified-p nil)
-        (unless (eq magit-section-highlighted-section section)
-          (setq magit-section-highlighted-section
-                (and (not (oref section hidden))
-                     section))))
-      (when (version< emacs-version "25.1")
-        (setq deactivate-mark nil)))))
-
-(defun magit-section-highlight (section selection)
-  "Highlight SECTION and if non-nil all sections in SELECTION.
-This function works for any section but produces undesirable
-effects for diff related sections, which by default are
-highlighted using `magit-diff-highlight'.  Return t."
-  (when-let ((face (oref section heading-highlight-face)))
-    (dolist (section (or selection (list section)))
-      (magit-section-make-overlay
-       (oref section start)
-       (or (oref section content)
-           (oref section end))
-       face)))
-  (cond (selection
-         (magit-section-make-overlay (oref (car selection) start)
-                                     (oref (car (last selection)) end)
-                                     'magit-section-highlight)
-         (magit-section-highlight-selection nil selection))
-        (t
-         (magit-section-make-overlay (oref section start)
-                                     (oref section end)
-                                     'magit-section-highlight)))
-  t)
-
-(defun magit-section-highlight-selection (_ selection)
-  "Highlight the section-selection region.
-If SELECTION is non-nil, then it is a list of sections selected by
-the region.  The headings of these sections are then highlighted.
-
-This is a fallback for people who don't want to highlight the
-current section and therefore removed `magit-section-highlight'
-from `magit-section-highlight-hook'.
-
-This function is necessary to ensure that a representation of
-such a region is visible.  If neither of these functions were
-part of the hook variable, then such a region would be
-invisible."
-  (when (and selection
-             (not (and (eq this-command 'mouse-drag-region))))
-    (dolist (section selection)
-      (magit-section-make-overlay (oref section start)
-                                  (or (oref section content)
-                                      (oref section end))
-                                  'magit-section-heading-selection))
-    t))
-
-(defun magit-section-make-overlay (start end face)
-  ;; Yes, this doesn't belong here.  But the alternative of
-  ;; spreading this hack across the code base is even worse.
-  (when (and magit-keep-region-overlay
-             (memq face '(magit-section-heading-selection
-                          magit-diff-file-heading-selection
-                          magit-diff-hunk-heading-selection)))
-    (setq face (list :foreground (face-foreground face))))
-  (let ((ov (make-overlay start end nil t)))
-    (overlay-put ov 'face face)
-    (overlay-put ov 'evaporate t)
-    (push ov magit-section-highlight-overlays)
-    ov))
-
-(defun magit-section-goto-successor (section line char arg)
-  (let ((ident (magit-section-ident section)))
-    (--if-let (magit-get-section ident)
-        (let ((start (oref it start)))
-          (goto-char start)
-          (unless (eq it magit-root-section)
-            (ignore-errors
-              (forward-line line)
-              (forward-char char))
-            (unless (eq (magit-current-section) it)
-              (goto-char start))))
-      (or (and (magit-hunk-section-p section)
-               (when-let ((parent (magit-get-section
-                                   (magit-section-ident
-                                    (oref section parent)))))
-                 (let* ((children (oref parent children))
-                        (siblings (magit-section-siblings section 'prev))
-                        (previous (nth (length siblings) children)))
-                   (if (not arg)
-                       (--when-let (or previous (car (last children)))
-                         (magit-section-goto it)
-                         t)
-                     (when previous
-                       (magit-section-goto previous))
-                     (if (and (stringp arg)
-                              (re-search-forward arg (oref parent end) t))
-                         (goto-char (match-beginning 0))
-                       (goto-char (oref (car (last children)) end))
-                       (forward-line -1)
-                       (while (looking-at "^ ")    (forward-line -1))
-                       (while (looking-at "^[-+]") (forward-line -1))
-                       (forward-line))))))
-          (goto-char (--if-let (magit-section-goto-successor-1 section)
-                         (if (eq (oref it type) 'button)
-                             (point-min)
-                           (oref it start))
-                       (point-min)))))))
-
-(defun magit-section-goto-successor-1 (section)
-  (or (--when-let (pcase (oref section type)
-                    (`staged 'unstaged)
-                    (`unstaged 'staged)
-                    (`unpushed 'unpulled)
-                    (`unpulled 'unpushed))
-        (magit-get-section `((,it) (status))))
-      (--when-let (car (magit-section-siblings section 'next))
-        (magit-get-section (magit-section-ident it)))
-      (--when-let (car (magit-section-siblings section 'prev))
-        (magit-get-section (magit-section-ident it)))
-      (--when-let (oref section parent)
-        (or (magit-get-section (magit-section-ident it))
-            (magit-section-goto-successor-1 it)))))
-
-;;; Visibility
-
-(defvar-local magit-section-visibility-cache nil)
-(put 'magit-section-visibility-cache 'permanent-local t)
-
-(defun magit-section-cached-visibility (section)
-  "Set SECTION's visibility to the cached value."
-  (cdr (assoc (magit-section-ident section)
-              magit-section-visibility-cache)))
-
-(cl-defun magit-section-cache-visibility
-    (&optional (section magit-insert-section--current))
-  ;; Emacs 25's `alist-get' lacks TESTFN.
-  (let* ((id  (magit-section-ident section))
-         (elt (assoc id magit-section-visibility-cache))
-         (val (if (oref section hidden) 'hide 'show)))
-    (if elt
-        (setcdr elt val)
-      (push (cons id val) magit-section-visibility-cache))))
-
-(cl-defun magit-section-maybe-cache-visibility
-    (&optional (section magit-insert-section--current))
-  (when (or (eq magit-section-cache-visibility t)
-            (memq (oref section type)
-                  magit-section-cache-visibility))
-    (magit-section-cache-visibility section)))
-
-(defun magit-preserve-section-visibility-cache ()
-  (when (derived-mode-p 'magit-status-mode 'magit-refs-mode)
-    (magit-repository-local-set
-     (cons major-mode 'magit-section-visibility-cache)
-     magit-section-visibility-cache)))
-
-(defun magit-restore-section-visibility-cache (mode)
-  (setq magit-section-visibility-cache
-        (magit-repository-local-get
-         (cons mode 'magit-section-visibility-cache))))
-
-;;; Utilities
-
-(cl-defun magit-section-selected-p (section &optional (selection nil sselection))
-  (and (not (eq section magit-root-section))
-       (or  (eq section (magit-current-section))
-            (memq section (if sselection
-                              selection
-                            (setq selection (magit-region-sections))))
-            (--when-let (oref section parent)
-              (magit-section-selected-p it selection)))))
-
-(defun magit-section-parent-value (section)
-  (when-let ((parent (oref section parent)))
-    (oref parent value)))
-
-(defun magit-section-siblings (section &optional direction)
-  "Return a list of the sibling sections of SECTION.
-
-If optional DIRECTION is `prev', then return siblings that come
-before SECTION.  If it is `next', then return siblings that come
-after SECTION.  For all other values, return all siblings
-excluding SECTION itself."
-  (when-let ((parent (oref section parent)))
-    (let ((siblings (oref parent children)))
-      (pcase direction
-        (`prev  (cdr (member section (reverse siblings))))
-        (`next  (cdr (member section siblings)))
-        (_      (remq section siblings))))))
-
-(defun magit-region-values (&optional condition multiple)
-  "Return a list of the values of the selected sections.
-
-Return the values that themselves would be returned by
-`magit-region-sections' (which see)."
-  (--map (oref it value)
-         (magit-region-sections condition multiple)))
-
-(defun magit-region-sections (&optional condition multiple)
-  "Return a list of the selected sections.
-
-When the region is active and constitutes a valid section
-selection, then return a list of all selected sections.  This is
-the case when the region begins in the heading of a section and
-ends in the heading of the same section or in that of a sibling
-section.  If optional MULTIPLE is non-nil, then the region cannot
-begin and end in the same section.
-
-When the selection is not valid, then return nil.  In this case,
-most commands that can act on the selected sections will instead
-act on the section at point.
-
-When the region looks like it would in any other buffer then
-the selection is invalid.  When the selection is valid then the
-region uses the `magit-section-highlight' face.  This does not
-apply to diffs where things get a bit more complicated, but even
-here if the region looks like it usually does, then that's not
-a valid selection as far as this function is concerned.
-
-If optional CONDITION is non-nil, then the selection not only
-has to be valid; all selected sections additionally have to match
-CONDITION, or nil is returned.  See `magit-section-match' for the
-forms CONDITION can take."
-  (when (region-active-p)
-    (let* ((rbeg (region-beginning))
-           (rend (region-end))
-           (sbeg (get-text-property rbeg 'magit-section))
-           (send (get-text-property rend 'magit-section)))
-      (when (and send
-                 (not (eq send magit-root-section))
-                 (not (and multiple (eq send sbeg))))
-        (let ((siblings (cons sbeg (magit-section-siblings sbeg 'next)))
-              sections)
-          (when (and (memq send siblings)
-                     (magit-section-position-in-heading-p sbeg rbeg)
-                     (magit-section-position-in-heading-p send rend))
-            (while siblings
-              (push (car siblings) sections)
-              (when (eq (pop siblings) send)
-                (setq siblings nil)))
-            (setq sections (nreverse sections))
-            (when (or (not condition)
-                      (--all-p (magit-section-match condition it) sections))
-              sections)))))))
-
-(defun magit-section-position-in-heading-p (&optional section pos)
-  "Return t if POSITION is inside the heading of SECTION.
-POSITION defaults to point and SECTION defaults to the
-current section."
-  (unless section
-    (setq section (magit-current-section)))
-  (unless pos
-    (setq pos (point)))
-  (and section
-       (>= pos (oref section start))
-       (<  pos (or (oref section content)
-                   (oref section end)))
-       t))
-
-(defun magit-section-internal-region-p (&optional section)
-  "Return t if the region is active and inside SECTION's body.
-If optional SECTION is nil, use the current section."
-  (and (region-active-p)
-       (or section (setq section (magit-current-section)))
-       (let ((beg (get-text-property (region-beginning) 'magit-section)))
-         (and (eq beg (get-text-property   (region-end) 'magit-section))
-              (eq beg section)))
-       (not (or (magit-section-position-in-heading-p section (region-beginning))
-                (magit-section-position-in-heading-p section (region-end))))
-       t))
-
-(defun magit-section--backward-protected ()
-  "Move to the beginning of the current or the previous visible section.
-Same as `magit-section-backward' but for non-interactive use.
-Suppress `magit-section-movement-hook', and return a boolean to
-indicate whether a section was found, instead of raising an error
-if not."
-  (condition-case nil
-      (let ((magit-section-movement-hook nil))
-        (magit-section-backward)
-        t)
-    (user-error nil)))
-
-(defun magit-section--backward-find (predicate)
-  "Move to the first previous section satisfying PREDICATE.
-PREDICATE does not take any parameter and should not move
-point."
-  (let (found)
-    (while (and (setq found (magit-section--backward-protected))
-                (not (funcall predicate))))
-    found))
-
-(defun magit-wash-sequence (function)
-  "Repeatedly call FUNCTION until it returns nil or eob is reached.
-FUNCTION has to move point forward or return nil."
-  (while (and (not (eobp)) (funcall function))))
-
-(defun magit-add-section-hook (hook function &optional at append local)
-  "Add to the value of section hook HOOK the function FUNCTION.
-
-Add FUNCTION at the beginning of the hook list unless optional
-APPEND is non-nil, in which case FUNCTION is added at the end.
-If FUNCTION already is a member, then move it to the new location.
-
-If optional AT is non-nil and a member of the hook list, then
-add FUNCTION next to that instead.  Add before or after AT, or
-replace AT with FUNCTION depending on APPEND.  If APPEND is the
-symbol `replace', then replace AT with FUNCTION.  For any other
-non-nil value place FUNCTION right after AT.  If nil, then place
-FUNCTION right before AT.  If FUNCTION already is a member of the
-list but AT is not, then leave FUNCTION where ever it already is.
-
-If optional LOCAL is non-nil, then modify the hook's buffer-local
-value rather than its global value.  This makes the hook local by
-copying the default value.  That copy is then modified.
-
-HOOK should be a symbol.  If HOOK is void, it is first set to nil.
-HOOK's value must not be a single hook function.  FUNCTION should
-be a function that takes no arguments and inserts one or multiple
-sections at point, moving point forward.  FUNCTION may choose not
-to insert its section(s), when doing so would not make sense.  It
-should not be abused for other side-effects.  To remove FUNCTION
-again use `remove-hook'."
-  (unless (boundp hook)
-    (error "Cannot add function to undefined hook variable %s" hook))
-  (or (default-boundp hook) (set-default hook nil))
-  (let ((value (if local
-                   (if (local-variable-p hook)
-                       (symbol-value hook)
-                     (unless (local-variable-if-set-p hook)
-                       (make-local-variable hook))
-                     (copy-sequence (default-value hook)))
-                 (default-value hook))))
-    (if at
-        (when (setq at (member at value))
-          (setq value (delq function value))
-          (cond ((eq append 'replace)
-                 (setcar at function))
-                (append
-                 (push function (cdr at)))
-                (t
-                 (push (car at) (cdr at))
-                 (setcar at function))))
-      (setq value (delq function value)))
-    (unless (member function value)
-      (setq value (if append
-                      (append value (list function))
-                    (cons function value))))
-    (when (eq append 'replace)
-      (setq value (delq at value)))
-    (if local
-        (set hook value)
-      (set-default hook value))))
-
-(defun magit-run-section-hook (hook &rest args)
-  "Run HOOK with ARGS, warning about invalid entries."
-  (let ((entries (symbol-value hook)))
-    (unless (listp entries)
-      (setq entries (list entries)))
-    (--when-let (-remove #'functionp entries)
-      (message "`%s' contains entries that are no longer valid.
-%s\nUsing standard value instead.  Please re-configure hook variable."
-               hook
-               (mapconcat (lambda (sym) (format "  `%s'" sym)) it "\n"))
-      (sit-for 5)
-      (setq entries (eval (car (get hook 'standard-value)))))
-    (dolist (entry entries)
-      (let ((magit--current-section-hook (cons (list hook entry)
-                                               magit--current-section-hook)))
-        (apply entry args)))))
-
-;;; _
-(provide 'magit-section)
-;;; magit-section.el ends here
diff --git a/elpa/magit-20181116.1412/magit-section.elc b/elpa/magit-20181116.1412/magit-section.elc
deleted file mode 100644
index e333349..0000000
--- a/elpa/magit-20181116.1412/magit-section.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-sequence.el b/elpa/magit-20181116.1412/magit-sequence.el
deleted file mode 100644
index 0eb1ec6..0000000
--- a/elpa/magit-20181116.1412/magit-sequence.el
+++ /dev/null
@@ -1,915 +0,0 @@
-;;; magit-sequence.el --- history manipulation in Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2011-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; Support for Git commands that replay commits and help the user make
-;; changes along the way.  Supports `cherry-pick', `revert', `rebase',
-;; `rebase--interactive' and `am'.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-;;; Options
-;;;; Faces
-
-(defface magit-sequence-pick
-  '((t :inherit default))
-  "Face used in sequence sections."
-  :group 'magit-faces)
-
-(defface magit-sequence-stop
-  '((((class color) (background light)) :foreground "DarkOliveGreen4")
-    (((class color) (background dark))  :foreground "DarkSeaGreen2"))
-  "Face used in sequence sections."
-  :group 'magit-faces)
-
-(defface magit-sequence-part
-  '((((class color) (background light)) :foreground "Goldenrod4")
-    (((class color) (background dark))  :foreground "LightGoldenrod2"))
-  "Face used in sequence sections."
-  :group 'magit-faces)
-
-(defface magit-sequence-head
-  '((((class color) (background light)) :foreground "SkyBlue4")
-    (((class color) (background dark))  :foreground "LightSkyBlue1"))
-  "Face used in sequence sections."
-  :group 'magit-faces)
-
-(defface magit-sequence-drop
-  '((((class color) (background light)) :foreground "IndianRed")
-    (((class color) (background dark))  :foreground "IndianRed"))
-  "Face used in sequence sections."
-  :group 'magit-faces)
-
-(defface magit-sequence-done
-  '((t :inherit magit-hash))
-  "Face used in sequence sections."
-  :group 'magit-faces)
-
-(defface magit-sequence-onto
-  '((t :inherit magit-sequence-done))
-  "Face used in sequence sections."
-  :group 'magit-faces)
-
-(defface magit-sequence-exec
-  '((t :inherit magit-hash))
-  "Face used in sequence sections."
-  :group 'magit-faces)
-
-;;; Common
-
-;;;###autoload
-(defun magit-sequencer-continue ()
-  "Resume the current cherry-pick or revert sequence."
-  (interactive)
-  (if (magit-sequencer-in-progress-p)
-      (if (magit-anything-unstaged-p t)
-          (user-error "Cannot continue due to unstaged changes")
-        (magit-run-git-sequencer
-         (if (magit-revert-in-progress-p) "revert" "cherry-pick") "--continue"))
-    (user-error "No cherry-pick or revert in progress")))
-
-;;;###autoload
-(defun magit-sequencer-skip ()
-  "Skip the stopped at commit during a cherry-pick or revert sequence."
-  (interactive)
-  (if (magit-sequencer-in-progress-p)
-      (progn (magit-call-git "reset" "--hard")
-             (magit-sequencer-continue))
-    (user-error "No cherry-pick or revert in progress")))
-
-;;;###autoload
-(defun magit-sequencer-abort ()
-  "Abort the current cherry-pick or revert sequence.
-This discards all changes made since the sequence started."
-  (interactive)
-  (if (magit-sequencer-in-progress-p)
-      (magit-run-git-sequencer
-       (if (magit-revert-in-progress-p) "revert" "cherry-pick") "--abort")
-    (user-error "No cherry-pick or revert in progress")))
-
-(defun magit-sequencer-in-progress-p ()
-  (or (magit-cherry-pick-in-progress-p)
-      (magit-revert-in-progress-p)))
-
-;;; Cherry-Pick
-
-(defvar magit-perl-executable "perl"
-  "The Perl executable.")
-
-;;;###autoload (autoload 'magit-cherry-pick-popup "magit-sequence" nil t)
-(magit-define-popup magit-cherry-pick-popup
-  "Popup console for cherry-pick commands."
-  :man-page "git-cherry-pick"
-  :switches '((?s "Add Signed-off-by lines"            "--signoff")
-              (?e "Edit commit messages"               "--edit")
-              (?x "Reference cherry in commit message" "-x")
-              (?F "Attempt fast-forward"               "--ff"))
-  :options  '((?s "Strategy"                        "--strategy=")
-              (?m "Replay merge relative to parent" "--mainline="))
-  :actions  '("Apply here"
-              (?A "Pick"    magit-cherry-copy)
-              (?a "Apply"   magit-cherry-apply)
-              (?h "Harvest" magit-cherry-harvest)
-              "Apply elsewhere"
-              (?d "Donate"  magit-cherry-donate)
-              (?n "Spinout" magit-cherry-spinout)
-              (?s "Spinoff" magit-cherry-spinoff))
-  :sequence-actions '((?A "Continue" magit-sequencer-continue)
-                      (?s "Skip"     magit-sequencer-skip)
-                      (?a "Abort"    magit-sequencer-abort))
-  :sequence-predicate 'magit-sequencer-in-progress-p
-  :default-arguments '("--ff"))
-
-(defun magit-cherry-pick-read-args (prompt)
-  (list (or (nreverse (magit-region-values 'commit))
-            (magit-read-other-branch-or-commit prompt))
-        (magit-cherry-pick-arguments)))
-
-(defun magit--cherry-move-read-args (verb away fn)
-  (declare (indent defun))
-   (let ((commits (or (nreverse (magit-region-values 'commit))
-                      (list (funcall (if away
-                                         'magit-read-branch-or-commit
-                                       'magit-read-other-branch-or-commit)
-                                     (format "%s cherry" (capitalize verb))))))
-         (current (magit-get-current-branch)))
-     (unless current
-       (user-error "Cannot %s cherries while HEAD is detached" verb))
-     (let ((reachable (magit-rev-ancestor-p (car commits) current))
-           (msg "Cannot %s cherries that %s reachable from HEAD"))
-       (pcase (list away reachable)
-         (`(nil t) (user-error msg verb "are"))
-         (`(t nil) (user-error msg verb "are not"))))
-     `(,commits
-       ,@(funcall fn commits)
-       ,(magit-cherry-pick-arguments))))
-
-(defun magit--cherry-spinoff-read-args (verb)
-  (magit--cherry-move-read-args verb t
-    (lambda (commits)
-      (butlast (magit-branch-read-args
-                (format "Create branch from %s cherries" commits))))))
-
-;;;###autoload
-(defun magit-cherry-copy (commits &optional args)
-  "Copy COMMITS from another branch onto the current branch.
-Prompt for a commit, defaulting to the commit at point.  If
-the region selects multiple commits, then pick all of them,
-without prompting."
-  (interactive (magit-cherry-pick-read-args "Cherry-pick"))
-  (magit--cherry-pick commits args))
-
-;;;###autoload
-(defun magit-cherry-apply (commits &optional args)
-  "Apply the changes in COMMITS but do not commit them.
-Prompt for a commit, defaulting to the commit at point.  If
-the region selects multiple commits, then apply all of them,
-without prompting."
-  (interactive (magit-cherry-pick-read-args "Apply changes from commit"))
-  (magit--cherry-pick commits (cons "--no-commit" (remove "--ff" args))))
-
-;;;###autoload
-(defun magit-cherry-harvest (commits branch &optional args)
-  "Move COMMITS from another BRANCH onto the current branch.
-Remove the COMMITS from BRANCH and stay on the current branch.
-If a conflict occurs, then you have to fix that and finish the
-process manually."
-  (interactive
-   (magit--cherry-move-read-args "harvest" nil
-     (lambda (commits)
-       (list (let ((branches (magit-list-containing-branches (car commits))))
-               (pcase (length branches)
-                 (0 nil)
-                 (1 (car branches))
-                 (_ (magit-completing-read
-                     (format "Remove %s cherries from branch" (length commits))
-                     branches nil t))))))))
-  (magit--cherry-move commits branch (magit-get-current-branch) args nil t))
-
-;;;###autoload
-(defun magit-cherry-donate (commits branch &optional args)
-  "Move COMMITS from the current branch onto another existing BRANCH.
-Remove COMMITS from the current branch and stay on that branch.
-If a conflict occurs, then you have to fix that and finish the
-process manually."
-  (interactive
-   (magit--cherry-move-read-args "donate" t
-     (lambda (commits)
-       (list (magit-read-other-branch (format "Move %s cherries to branch"
-                                              (length commits)))))))
-  (magit--cherry-move commits (magit-get-current-branch) branch args))
-
-;;;###autoload
-(defun magit-cherry-spinout (commits branch start-point &optional args)
-  "Move COMMITS from the current branch onto a new BRANCH.
-Remove COMMITS from the current branch and stay on that branch.
-If a conflict occurs, then you have to fix that and finish the
-process manually."
-  (interactive (magit--cherry-spinoff-read-args "spinout"))
-  (magit--cherry-move commits (magit-get-current-branch) branch args
-                      start-point))
-
-;;;###autoload
-(defun magit-cherry-spinoff (commits branch start-point &optional args)
-  "Move COMMITS from the current branch onto a new BRANCH.
-Remove COMMITS from the current branch and checkout BRANCH.
-If a conflict occurs, then you have to fix that and finish
-the process manually."
-  (interactive (magit--cherry-spinoff-read-args "spinoff"))
-  (magit--cherry-move commits (magit-get-current-branch) branch args
-                      start-point t))
-
-(defun magit--cherry-move (commits src dst args
-                                   &optional start-point checkout-dst)
-  (let ((current (magit-get-current-branch)))
-    (unless (magit-branch-p dst)
-      (let ((magit-process-raise-error t))
-        (magit-call-git "branch" dst start-point))
-      (--when-let (magit-get-indirect-upstream-branch start-point)
-        (magit-call-git "branch" "--set-upstream-to" it dst)))
-    (unless (equal dst current)
-      (let ((magit-process-raise-error t))
-        (magit-call-git "checkout" dst)))
-    (if (not src) ; harvest only
-        (magit--cherry-pick commits args)
-      (let ((tip (car (last commits)))
-            (keep (concat (car commits) "^")))
-        (magit--cherry-pick commits args)
-        (set-process-sentinel
-         magit-this-process
-         (lambda (process event)
-           (when (memq (process-status process) '(exit signal))
-             (if (> (process-exit-status process) 0)
-                 (magit-process-sentinel process event)
-               (process-put process 'inhibit-refresh t)
-               (magit-process-sentinel process event)
-               (cond
-                ((magit-rev-equal tip src)
-                 (magit-call-git "update-ref"
-                                 "-m" (format "reset: moving to %s" keep)
-                                 (magit-ref-fullname src)
-                                 keep tip)
-                 (if (not checkout-dst)
-                     (magit-run-git "checkout" src)
-                   (magit-refresh)))
-                (t
-                 (magit-git "checkout" src)
-                 (let ((process-environment process-environment))
-                   (push (format "%s=%s -i -ne '/^pick (%s)/ or print'"
-                                 "GIT_SEQUENCE_EDITOR"
-                                 magit-perl-executable
-                                 (mapconcat #'magit-rev-abbrev commits "|"))
-                         process-environment)
-                   (magit-run-git-sequencer "rebase" "-i" keep))
-                 (when checkout-dst
-                   (set-process-sentinel
-                    magit-this-process
-                    (lambda (process event)
-                      (when (memq (process-status process) '(exit signal))
-                        (if (> (process-exit-status process) 0)
-                            (magit-process-sentinel process event)
-                          (process-put process 'inhibit-refresh t)
-                          (magit-process-sentinel process event)
-                          (magit-run-git "checkout" dst))))))))))))))))
-
-(defun magit--cherry-pick (commits args &optional revert)
-  (let ((command (if revert "revert" "cherry-pick")))
-    (when (stringp commits)
-      (setq commits (if (string-match-p "\\.\\." commits)
-                        (split-string commits "\\.\\.")
-                      (list commits))))
-    (magit-run-git-sequencer
-     (if revert "revert" "cherry-pick")
-     (pcase-let ((`(,merge ,non-merge)
-                  (-separate 'magit-merge-commit-p commits)))
-       (cond
-        ((not merge)
-         (--remove (string-prefix-p "--mainline=" it) args))
-        (non-merge
-         (user-error "Cannot %s merge and non-merge commits at once"
-                     command))
-        ((--first (string-prefix-p "--mainline=" it) args)
-         args)
-        (t
-         (cons (format "--mainline=%s"
-                       (read-number "Replay merges relative to parent: "))
-               args))))
-     commits)))
-
-(defun magit-cherry-pick-in-progress-p ()
-  ;; .git/sequencer/todo does not exist when there is only one commit left.
-  (file-exists-p (magit-git-dir "CHERRY_PICK_HEAD")))
-
-;;; Revert
-
-;;;###autoload (autoload 'magit-revert-popup "magit-sequence" nil t)
-(magit-define-popup magit-revert-popup
-  "Popup console for revert commands."
-  :man-page "git-revert"
-  :switches '((?s "Add Signed-off-by lines"   "--signoff")
-              (?e "Edit commit message"       "--edit")
-              (?E "Don't edit commit message" "--no-edit"))
-  :options  '((?s "Strategy"       "--strategy=")
-              (?S "Sign using gpg" "--gpg-sign=" magit-read-gpg-secret-key)
-              (?m "Replay merge relative to parent" "--mainline="))
-  :actions  '((?V "Revert commit(s)" magit-revert-and-commit)
-              (?v "Revert changes"   magit-revert-no-commit))
-  :sequence-actions '((?V "Continue" magit-sequencer-continue)
-                      (?s "Skip"     magit-sequencer-skip)
-                      (?a "Abort"    magit-sequencer-abort))
-  :sequence-predicate 'magit-sequencer-in-progress-p
-  :default-arguments '("--edit"))
-
-(defun magit-revert-read-args (prompt)
-  (list (or (magit-region-values 'commit)
-            (magit-read-branch-or-commit prompt))
-        (magit-revert-arguments)))
-
-;;;###autoload
-(defun magit-revert-and-commit (commit &optional args)
-  "Revert COMMIT by creating a new commit.
-Prompt for a commit, defaulting to the commit at point.  If
-the region selects multiple commits, then revert all of them,
-without prompting."
-  (interactive (magit-revert-read-args "Revert commit"))
-  (magit--cherry-pick commit args t))
-
-;;;###autoload
-(defun magit-revert-no-commit (commit &optional args)
-  "Revert COMMIT by applying it in reverse to the worktree.
-Prompt for a commit, defaulting to the commit at point.  If
-the region selects multiple commits, then revert all of them,
-without prompting."
-  (interactive (magit-revert-read-args "Revert changes"))
-  (magit--cherry-pick commit (cons "--no-commit" args) t))
-
-(defun magit-revert-in-progress-p ()
-  ;; .git/sequencer/todo does not exist when there is only one commit left.
-  (file-exists-p (magit-git-dir "REVERT_HEAD")))
-
-;;; Patch
-
-;;;###autoload (autoload 'magit-am-popup "magit-sequence" nil t)
-(magit-define-popup magit-am-popup
-  "Popup console for mailbox commands."
-  :man-page "git-am"
-  :switches '((?3 "Fall back on 3way merge"           "--3way")
-              (?s "Add Signed-off-by lines"           "--signoff")
-              (?c "Remove text before scissors line"  "--scissors")
-              (?k "Inhibit removal of email cruft"    "--keep")
-              (?b "Limit removal of email cruft"      "--keep-non-patch")
-              (?d "Use author date as committer date"
-                  "--committer-date-is-author-date")
-              (?D "Use committer date as author date" "--ignore-date"))
-  :options  '((?p "Remove leading slashes from paths" "-p"
-                  magit-read-number-string))
-  :actions  '((?m "Apply maildir"     magit-am-apply-maildir)
-              (?w "Apply patches"     magit-am-apply-patches)
-              (?a "Apply plain patch" magit-patch-apply-popup))
-  :default-arguments '("--3way")
-  :default-actions 'magit-am-apply-patches
-  :max-action-columns 1
-  :sequence-actions '((?w "Continue" magit-am-continue)
-                      (?s "Skip"     magit-am-skip)
-                      (?a "Abort"    magit-am-abort))
-  :sequence-predicate 'magit-am-in-progress-p)
-
-;;;###autoload
-(defun magit-am-apply-patches (&optional files args)
-  "Apply the patches FILES."
-  (interactive (list (or (magit-region-values 'file)
-                         (list (let ((default (magit-file-at-point)))
-                                 (read-file-name
-                                  (if default
-                                      (format "Apply patch (%s): " default)
-                                    "Apply patch: ")
-                                  nil default))))
-                     (magit-am-arguments)))
-  (magit-run-git-sequencer "am" args "--"
-                           (--map (magit-convert-filename-for-git
-                                   (expand-file-name it))
-                                  files)))
-
-;;;###autoload
-(defun magit-am-apply-maildir (&optional maildir args)
-  "Apply the patches from MAILDIR."
-  (interactive (list (read-file-name "Apply mbox or Maildir: ")
-                     (magit-am-arguments)))
-  (magit-run-git-sequencer "am" args (magit-convert-filename-for-git
-                                      (expand-file-name maildir))))
-
-;;;###autoload
-(defun magit-am-continue ()
-  "Resume the current patch applying sequence."
-  (interactive)
-  (if (magit-am-in-progress-p)
-      (if (magit-anything-unstaged-p t)
-          (error "Cannot continue due to unstaged changes")
-        (magit-run-git-sequencer "am" "--continue"))
-    (user-error "Not applying any patches")))
-
-;;;###autoload
-(defun magit-am-skip ()
-  "Skip the stopped at patch during a patch applying sequence."
-  (interactive)
-  (if (magit-am-in-progress-p)
-      (magit-run-git-sequencer "am" "--skip")
-    (user-error "Not applying any patches")))
-
-;;;###autoload
-(defun magit-am-abort ()
-  "Abort the current patch applying sequence.
-This discards all changes made since the sequence started."
-  (interactive)
-  (if (magit-am-in-progress-p)
-      (magit-run-git "am" "--abort")
-    (user-error "Not applying any patches")))
-
-(defun magit-am-in-progress-p ()
-  (file-exists-p (magit-git-dir "rebase-apply/applying")))
-
-;;; Rebase
-
-;;;###autoload (autoload 'magit-rebase-popup "magit-sequence" nil t)
-(magit-define-popup magit-rebase-popup
-  "Key menu for rebasing."
-  :man-page "git-rebase"
-  :switches '((?k "Keep empty commits"       "--keep-empty")
-              (?p "Preserve merges"          "--preserve-merges")
-              (?c "Lie about committer date" "--committer-date-is-author-date")
-              (?a "Autosquash"               "--autosquash")
-              (?A "Autostash"                "--autostash")
-              (?i "Interactive"              "--interactive")
-              (?h "Disable hooks"            "--no-verify"))
-  :actions  '((lambda ()
-                (concat (propertize "Rebase " 'face 'magit-popup-heading)
-                        (propertize (or (magit-get-current-branch) "HEAD")
-                                    'face 'magit-branch-local)
-                        (propertize " onto" 'face 'magit-popup-heading)))
-              (?p (lambda ()
-                    (--when-let (magit-get-push-branch) (concat it "\n")))
-                  magit-rebase-onto-pushremote)
-              (?u (lambda ()
-                    (--when-let (magit-get-upstream-branch) (concat it "\n")))
-                  magit-rebase-onto-upstream)
-              (?e "elsewhere" magit-rebase-branch)
-              "Rebase"
-              (?i "interactively"      magit-rebase-interactive)
-              (?m "to modify a commit" magit-rebase-edit-commit)
-              (?s "a subset"           magit-rebase-subset)
-              (?w "to reword a commit" magit-rebase-reword-commit) nil
-              (?k "to remove a commit" magit-rebase-remove-commit) nil
-              (?f "to autosquash"      magit-rebase-autosquash))
-  :sequence-actions '((?r "Continue" magit-rebase-continue)
-                      (?s "Skip"     magit-rebase-skip)
-                      (?e "Edit"     magit-rebase-edit)
-                      (?a "Abort"    magit-rebase-abort))
-  :sequence-predicate 'magit-rebase-in-progress-p
-  :max-action-columns 2)
-
-(defun magit-git-rebase (target args)
-  (magit-run-git-sequencer "rebase" target args))
-
-;;;###autoload
-(defun magit-rebase-onto-pushremote (args)
-  "Rebase the current branch onto `branch.<name>.pushRemote'.
-If that variable is unset, then rebase onto `remote.pushDefault'."
-  (interactive (list (magit-rebase-arguments)))
-  (--if-let (magit-get-current-branch)
-      (if-let ((remote (magit-get-push-remote it)))
-          (if (member remote (magit-list-remotes))
-              (magit-git-rebase (concat remote "/" it) args)
-            (user-error "Remote `%s' doesn't exist" remote))
-        (user-error "No push-remote is configured for %s" it))
-    (user-error "No branch is checked out")))
-
-;;;###autoload
-(defun magit-rebase-onto-upstream (args)
-  "Rebase the current branch onto its upstream branch."
-  (interactive (list (magit-rebase-arguments)))
-  (--if-let (magit-get-current-branch)
-      (if-let ((target (magit-get-upstream-branch it)))
-          (magit-git-rebase target args)
-        (user-error "No upstream is configured for %s" it))
-    (user-error "No branch is checked out")))
-
-;;;###autoload
-(defun magit-rebase-branch (target args)
-  "Rebase the current branch onto a branch read in the minibuffer.
-All commits that are reachable from `HEAD' but not from the
-selected branch TARGET are being rebased."
-  (interactive (list (magit-read-other-branch-or-commit "Rebase onto")
-                     (magit-rebase-arguments)))
-  (message "Rebasing...")
-  (magit-git-rebase target args)
-  (message "Rebasing...done"))
-
-;;;###autoload
-(defun magit-rebase-subset (newbase start args)
-  "Rebase a subset of the current branch's history onto a new base.
-Rebase commits from START to `HEAD' onto NEWBASE.
-START has to be selected from a list of recent commits."
-  (interactive (list (magit-read-other-branch-or-commit
-                      "Rebase subset onto" nil
-                      (magit-get-upstream-branch))
-                     nil
-                     (magit-rebase-arguments)))
-  (if start
-      (progn (message "Rebasing...")
-             (magit-run-git-sequencer "rebase" "--onto" newbase start args)
-             (message "Rebasing...done"))
-    (magit-log-select
-      `(lambda (commit)
-         (magit-rebase-subset ,newbase (concat commit "^") (list ,@args)))
-      (concat "Type %p on a commit to rebase it "
-              "and commits above it onto " newbase ","))))
-
-(defun magit-rebase-interactive-1
-    (commit args message &optional editor delay-edit-confirm noassert confirm)
-  (declare (indent 2))
-  (when commit
-    (if (eq commit :merge-base)
-        (setq commit (--if-let (magit-get-upstream-branch)
-                         (magit-git-string "merge-base" it "HEAD")
-                       nil))
-      (unless (magit-rev-ancestor-p commit "HEAD")
-        (user-error "%s isn't an ancestor of HEAD" commit))
-      (if (magit-commit-parents commit)
-          (setq commit (concat commit "^"))
-        (setq args (cons "--root" args)))))
-  (when (and commit (not noassert))
-    (setq commit (magit-rebase-interactive-assert commit delay-edit-confirm)))
-  (if (and commit (not confirm))
-      (let ((process-environment process-environment))
-        (when editor
-          (push (concat "GIT_SEQUENCE_EDITOR=" editor) process-environment))
-        (magit-run-git-sequencer "rebase" "-i" args
-                                 (unless (member "--root" args) commit)))
-    (magit-log-select
-      `(lambda (commit)
-         (magit-rebase-interactive-1 commit (list ,@args)
-           ,message ,editor ,delay-edit-confirm ,noassert))
-      message)))
-
-(defvar magit--rebase-published-symbol nil)
-(defvar magit--rebase-public-edit-confirmed nil)
-
-(defun magit-rebase-interactive-assert (since &optional delay-edit-confirm)
-  (let* ((commit (if (string-suffix-p "^" since)
-                     ;; If SINCE is "REV^", then the user selected
-                     ;; "REV", which is the first commit that will
-                     ;; be replaced. (from^..to] <=> [from..to].
-                     (substring since 0 -1)
-                   ;; The "--root" argument is being used.
-                   since))
-         (branches (magit-list-publishing-branches commit)))
-    (setq magit--rebase-public-edit-confirmed
-          (delete (magit-toplevel) magit--rebase-public-edit-confirmed))
-    (when (and branches
-               (or (not delay-edit-confirm)
-                   ;; The user might have stopped at a published commit
-                   ;; merely to add new commits *after* it.  Try not to
-                   ;; ask users whether they really want to edit public
-                   ;; commits, when they don't actually intend to do so.
-                   (not (--all-p (magit-rev-equal it commit) branches))))
-      (let ((m1 "Some of these commits have already been published to ")
-            (m2 ".\nDo you really want to modify them"))
-        (magit-confirm (or magit--rebase-published-symbol 'rebase-published)
-          (concat m1 "%s" m2)
-          (concat m1 "%i public branches" m2)
-          nil branches))
-      (push (magit-toplevel) magit--rebase-public-edit-confirmed)))
-  (if (magit-git-lines "rev-list" "--merges" (concat since "..HEAD"))
-      (magit-read-char-case "Proceed despite merge in rebase range?  " nil
-        (?c "[c]ontinue" since)
-        (?s "[s]elect other" nil)
-        (?a "[a]bort" (user-error "Quit")))
-    since))
-
-;;;###autoload
-(defun magit-rebase-interactive (commit args)
-  "Start an interactive rebase sequence."
-  (interactive (list (magit-commit-at-point)
-                     (magit-rebase-arguments)))
-  (magit-rebase-interactive-1 commit args
-    "Type %p on a commit to rebase it and all commits above it,"
-    nil t))
-
-;;;###autoload
-(defun magit-rebase-autosquash (args)
-  "Combine squash and fixup commits with their intended targets."
-  (interactive (list (magit-rebase-arguments)))
-  (magit-rebase-interactive-1 :merge-base (cons "--autosquash" args)
-    "Type %p on a commit to squash into it and then rebase as necessary,"
-    "true" nil t))
-
-;;;###autoload
-(defun magit-rebase-edit-commit (commit args)
-  "Edit a single older commit using rebase."
-  (interactive (list (magit-commit-at-point)
-                     (magit-rebase-arguments)))
-  (magit-rebase-interactive-1 commit args
-    "Type %p on a commit to edit it,"
-    (concat magit-perl-executable
-            " -i -p -e '++$x if not $x and s/^pick/edit/'")
-    t))
-
-;;;###autoload
-(defun magit-rebase-reword-commit (commit args)
-  "Reword a single older commit using rebase."
-  (interactive (list (magit-commit-at-point)
-                     (magit-rebase-arguments)))
-  (magit-rebase-interactive-1 commit args
-    "Type %p on a commit to reword its message,"
-    (concat magit-perl-executable
-            " -i -p -e '++$x if not $x and s/^pick/reword/'")))
-
-;;;###autoload
-(defun magit-rebase-remove-commit (commit args)
-  "Remove a single older commit using rebase."
-  (interactive (list (magit-commit-at-point)
-                     (magit-rebase-arguments)))
-  (magit-rebase-interactive-1 commit args
-    "Type %p on a commit to remove it,"
-    (concat magit-perl-executable
-            " -i -p -e '++$x if not $x and s/^pick/# pick/'")
-    nil nil t))
-
-;;;###autoload
-(defun magit-rebase-continue (&optional noedit)
-  "Restart the current rebasing operation.
-In some cases this pops up a commit message buffer for you do
-edit.  With a prefix argument the old message is reused as-is."
-  (interactive "P")
-  (if (magit-rebase-in-progress-p)
-      (if (magit-anything-unstaged-p t)
-          (user-error "Cannot continue rebase with unstaged changes")
-        (when (and (magit-anything-staged-p)
-                   (file-exists-p (magit-git-dir "rebase-merge"))
-                   (not (member (magit-toplevel)
-                                magit--rebase-public-edit-confirmed)))
-          (magit-commit-amend-assert))
-        (if noedit
-            (let ((process-environment process-environment))
-              (push "GIT_EDITOR=true" process-environment)
-              (magit-run-git-async (magit--rebase-resume-command) "--continue")
-              (set-process-sentinel magit-this-process
-                                    #'magit-sequencer-process-sentinel)
-              magit-this-process)
-          (magit-run-git-sequencer (magit--rebase-resume-command) "--continue")))
-    (user-error "No rebase in progress")))
-
-;;;###autoload
-(defun magit-rebase-skip ()
-  "Skip the current commit and restart the current rebase operation."
-  (interactive)
-  (unless (magit-rebase-in-progress-p)
-    (user-error "No rebase in progress"))
-  (magit-run-git-sequencer (magit--rebase-resume-command) "--skip"))
-
-;;;###autoload
-(defun magit-rebase-edit ()
-  "Edit the todo list of the current rebase operation."
-  (interactive)
-  (unless (magit-rebase-in-progress-p)
-    (user-error "No rebase in progress"))
-  (magit-run-git-sequencer "rebase" "--edit-todo"))
-
-;;;###autoload
-(defun magit-rebase-abort ()
-  "Abort the current rebase operation, restoring the original branch."
-  (interactive)
-  (unless (magit-rebase-in-progress-p)
-    (user-error "No rebase in progress"))
-  (magit-confirm 'abort-rebase "Abort this rebase")
-  (magit-run-git (magit--rebase-resume-command) "--abort"))
-
-(defun magit-rebase-in-progress-p ()
-  "Return t if a rebase is in progress."
-  (or (file-exists-p (magit-git-dir "rebase-merge"))
-      (file-exists-p (magit-git-dir "rebase-apply/onto"))))
-
-(defun magit--rebase-resume-command ()
-  (if (file-exists-p (magit-git-dir "rebase-recursive")) "rbr" "rebase"))
-
-;;; Sections
-
-(defun magit-insert-sequencer-sequence ()
-  "Insert section for the on-going cherry-pick or revert sequence.
-If no such sequence is in progress, do nothing."
-  (let ((picking (magit-cherry-pick-in-progress-p)))
-    (when (or picking (magit-revert-in-progress-p))
-      (magit-insert-section (sequence)
-        (magit-insert-heading (if picking "Cherry Picking" "Reverting"))
-        (when-let ((lines
-                    (cdr (magit-file-lines (magit-git-dir "sequencer/todo")))))
-          (dolist (line (nreverse lines))
-            (when (string-match
-                   "^\\(pick\\|revert\\) \\([^ ]+\\) \\(.*\\)$" line)
-              (magit-bind-match-strings (cmd hash msg) line
-                (magit-insert-section (commit hash)
-                  (insert (propertize cmd 'face 'magit-sequence-pick)
-                          " " (propertize hash 'face 'magit-hash)
-                          " " msg "\n"))))))
-        (magit-sequence-insert-sequence
-         (magit-file-line (magit-git-dir (if picking
-                                             "CHERRY_PICK_HEAD"
-                                           "REVERT_HEAD")))
-         (magit-file-line (magit-git-dir "sequencer/head")))
-        (insert "\n")))))
-
-(defun magit-insert-am-sequence ()
-  "Insert section for the on-going patch applying sequence.
-If no such sequence is in progress, do nothing."
-  (when (magit-am-in-progress-p)
-    (magit-insert-section (rebase-sequence)
-      (magit-insert-heading "Applying patches")
-      (let ((patches (nreverse (magit-rebase-patches)))
-            patch commit)
-        (while patches
-          (setq patch (pop patches))
-          (setq commit (magit-rev-verify-commit
-                        (cadr (split-string (magit-file-line patch)))))
-          (cond ((and commit patches)
-                 (magit-sequence-insert-commit
-                  "pick" commit 'magit-sequence-pick))
-                (patches
-                 (magit-sequence-insert-am-patch
-                  "pick" patch 'magit-sequence-pick))
-                (commit
-                 (magit-sequence-insert-sequence commit "ORIG_HEAD"))
-                (t
-                 (magit-sequence-insert-am-patch
-                  "stop" patch 'magit-sequence-stop)
-                 (magit-sequence-insert-sequence nil "ORIG_HEAD")))))
-      (insert ?\n))))
-
-(defun magit-sequence-insert-am-patch (type patch face)
-  (magit-insert-section (file patch)
-    (let ((title
-           (with-temp-buffer
-             (insert-file-contents patch nil nil 4096)
-             (unless (re-search-forward "^Subject: " nil t)
-               (goto-char (point-min)))
-             (buffer-substring (point) (line-end-position)))))
-      (insert (propertize type 'face face)
-              ?\s (propertize (file-name-nondirectory patch) 'face 'magit-hash)
-              ?\s title
-              ?\n))))
-
-(defun magit-insert-rebase-sequence ()
-  "Insert section for the on-going rebase sequence.
-If no such sequence is in progress, do nothing."
-  (when (magit-rebase-in-progress-p)
-    (let* ((interactive (file-directory-p (magit-git-dir "rebase-merge")))
-           (dir  (if interactive "rebase-merge/" "rebase-apply/"))
-           (name (-> (concat dir "head-name") magit-git-dir magit-file-line))
-           (onto (-> (concat dir "onto")      magit-git-dir magit-file-line))
-           (onto (or (magit-rev-name onto name)
-                     (magit-rev-name onto "refs/heads/*") onto))
-           (name (or (magit-rev-name name "refs/heads/*") name)))
-      (magit-insert-section (rebase-sequence)
-        (magit-insert-heading (format "Rebasing %s onto %s" name onto))
-        (if interactive
-            (magit-rebase-insert-merge-sequence onto)
-          (magit-rebase-insert-apply-sequence onto))
-        (insert ?\n)))))
-
-(defun magit-rebase-insert-merge-sequence (onto)
-  (let (exec)
-    (dolist (line (nreverse
-                   (magit-file-lines
-                    (magit-git-dir "rebase-merge/git-rebase-todo"))))
-      (cond ((string-prefix-p "exec" line)
-             (setq exec (substring line 5)))
-            ((string-match (format "^\\([^%c ]+\\) \\([^ ]+\\) .*$"
-                                   (string-to-char
-                                    (or (magit-get "core.commentChar") "#")))
-                           line)
-             (magit-bind-match-strings (action hash) line
-               (unless (equal action "exec")
-                 (magit-sequence-insert-commit
-                  action hash 'magit-sequence-pick exec)))
-             (setq exec nil)))))
-  (magit-sequence-insert-sequence
-   (magit-file-line (magit-git-dir "rebase-merge/stopped-sha"))
-   onto
-   (--when-let (magit-file-lines (magit-git-dir "rebase-merge/done"))
-     (cadr (split-string (car (last it)))))))
-
-(defun magit-rebase-insert-apply-sequence (onto)
-  (let ((rewritten
-         (--map (car (split-string it))
-                (magit-file-lines (magit-git-dir "rebase-apply/rewritten"))))
-        (stop (magit-file-line (magit-git-dir "rebase-apply/original-commit"))))
-    (dolist (patch (nreverse (cdr (magit-rebase-patches))))
-      (let ((hash (cadr (split-string (magit-file-line patch)))))
-        (unless (or (member hash rewritten)
-                    (equal hash stop))
-          (magit-sequence-insert-commit "pick" hash 'magit-sequence-pick)))))
-  (magit-sequence-insert-sequence
-   (magit-file-line (magit-git-dir "rebase-apply/original-commit"))
-   onto))
-
-(defun magit-rebase-patches ()
-  (directory-files (magit-git-dir "rebase-apply") t "^[0-9]\\{4\\}$"))
-
-(defun magit-sequence-insert-sequence (stop onto &optional orig)
-  (let ((head (magit-rev-parse "HEAD")) done)
-    (setq onto (if onto (magit-rev-parse onto) head))
-    (setq done (magit-git-lines "log" "--format=%H" (concat onto "..HEAD")))
-    (when (and stop (not (member stop done)))
-      (let ((id (magit-patch-id stop)))
-        (--if-let (--first (equal (magit-patch-id it) id) done)
-            (setq stop it)
-          (cond
-           ((--first (magit-rev-equal it stop) done)
-            ;; The commit's testament has been executed.
-            (magit-sequence-insert-commit "void" stop 'magit-sequence-drop))
-           ;; The faith of the commit is still undecided...
-           ((magit-anything-unmerged-p)
-            ;; ...and time travel isn't for the faint of heart.
-            (magit-sequence-insert-commit "join" stop 'magit-sequence-part))
-           ((magit-anything-modified-p t)
-            ;; ...and the dust hasn't settled yet...
-            (magit-sequence-insert-commit
-             (let* ((magit--refresh-cache nil)
-                    (staged   (magit-commit-tree "oO" nil "HEAD"))
-                    (unstaged (magit-commit-worktree "oO" "--reset")))
-               (cond
-                ;; ...but we could end up at the same tree just by committing.
-                ((or (magit-rev-equal staged   stop)
-                     (magit-rev-equal unstaged stop)) "goal")
-                ;; ...but the changes are still there, untainted.
-                ((or (equal (magit-patch-id staged)   id)
-                     (equal (magit-patch-id unstaged) id)) "same")
-                ;; ...and some changes are gone and/or others were added.
-                (t "work")))
-             stop 'magit-sequence-part))
-           ;; The commit is definitely gone...
-           ((--first (magit-rev-equal it stop) done)
-            ;; ...but all of its changes are still in effect.
-            (magit-sequence-insert-commit "poof" stop 'magit-sequence-drop))
-           (t
-            ;; ...and some changes are gone and/or other changes were added.
-            (magit-sequence-insert-commit "gone" stop 'magit-sequence-drop)))
-          (setq stop nil))))
-    (dolist (rev done)
-      (apply 'magit-sequence-insert-commit
-             (cond ((equal rev stop)
-                    ;; ...but its reincarnation lives on.
-                    ;; Or it didn't die in the first place.
-                    (list (if (and (equal rev head)
-                                   (equal (magit-patch-id rev)
-                                          (magit-patch-id orig)))
-                              "stop" ; We haven't done anything yet.
-                            "like")  ; There are new commits.
-                          rev (if (equal rev head)
-                                  'magit-sequence-head
-                                'magit-sequence-stop)))
-                   ((equal rev head)
-                    (list "done" rev 'magit-sequence-head))
-                   (t
-                    (list "done" rev 'magit-sequence-done)))))
-    (magit-sequence-insert-commit "onto" onto
-                                (if (equal onto head)
-                                    'magit-sequence-head
-                                  'magit-sequence-onto))))
-
-(defun magit-sequence-insert-commit (type hash face &optional exec)
-  (magit-insert-section (commit hash)
-    (magit-insert-heading
-      (propertize type 'face face)    "\s"
-      (magit-format-rev-summary hash) "\n")
-    (when exec
-      (insert (propertize "exec" 'face 'magit-sequence-onto) "\s" exec "\n"))))
-
-;;; _
-(provide 'magit-sequence)
-;;; magit-sequence.el ends here
diff --git a/elpa/magit-20181116.1412/magit-sequence.elc b/elpa/magit-20181116.1412/magit-sequence.elc
deleted file mode 100644
index 9e5ee3f..0000000
--- a/elpa/magit-20181116.1412/magit-sequence.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-stash.el b/elpa/magit-20181116.1412/magit-stash.el
deleted file mode 100644
index 9012c9a..0000000
--- a/elpa/magit-20181116.1412/magit-stash.el
+++ /dev/null
@@ -1,496 +0,0 @@
-;;; magit-stash.el --- stash support for Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; Support for Git stashes.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-(defvar bookmark-make-record-function)
-
-;;; Options
-
-(defgroup magit-stash nil
-  "List stashes and show stash diffs."
-  :group 'magit-modes)
-
-;;;; Diff options
-
-(defcustom magit-stash-sections-hook
-  '(magit-insert-stash-notes
-    magit-insert-stash-worktree
-    magit-insert-stash-index
-    magit-insert-stash-untracked)
-  "Hook run to insert sections into stash diff buffers."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-stash
-  :type 'hook)
-
-;;;; Log options
-
-(defcustom magit-stashes-margin
-  (list (nth 0 magit-log-margin)
-        (nth 1 magit-log-margin)
-        'magit-log-margin-width nil
-        (nth 4 magit-log-margin))
-  "Format of the margin in `magit-stashes-mode' buffers.
-
-The value has the form (INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH).
-
-If INIT is non-nil, then the margin is shown initially.
-STYLE controls how to format the committer date.  It can be one
-  of `age' (to show the age of the commit), `age-abbreviated' (to
-  abbreviate the time unit to a character), or a string (suitable
-  for `format-time-string') to show the actual date.
-WIDTH controls the width of the margin.  This exists for forward
-  compatibility and currently the value should not be changed.
-AUTHOR controls whether the name of the author is also shown by
-  default.
-AUTHOR-WIDTH has to be an integer.  When the name of the author
-  is shown, then this specifies how much space is used to do so."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-stash
-  :group 'magit-margin
-  :type magit-log-margin--custom-type
-  :initialize 'magit-custom-initialize-reset
-  :set-after '(magit-log-margin)
-  :set (apply-partially #'magit-margin-set-variable 'magit-stashes-mode))
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-stash-popup "magit-stash" nil t)
-(magit-define-popup magit-stash-popup
-  "Popup console for stash commands."
-  :man-page "git-stash"
-  :switches '((?u "Also save untracked files" "--include-untracked")
-              (?a "Also save untracked and ignored files" "--all"))
-  :actions  '((?z "Save"               magit-stash-both)
-              (?Z "Snapshot"           magit-snapshot-both)
-              (?p "Pop"                magit-stash-pop)
-              (?i "Save index"         magit-stash-index)
-              (?I "Snapshot index"     magit-snapshot-index)
-              (?a "Apply"              magit-stash-apply)
-              (?w "Save worktree"      magit-stash-worktree)
-              (?W "Snapshot worktree"  magit-snapshot-worktree)
-              (?l "List"               magit-stash-list)
-              (?x "Save keeping index" magit-stash-keep-index)
-              (?r "Snapshot to wipref" magit-wip-commit)
-              (?v "Show"               magit-stash-show)
-              (?b "Branch"             magit-stash-branch)
-              (?k "Drop"               magit-stash-drop) nil
-              (?B "Branch here"        magit-stash-branch-here) nil nil
-              (?f "Format patch"       magit-stash-format-patch))
-  :default-action 'magit-stash
-  :max-action-columns 3)
-
-;;;###autoload
-(defun magit-stash-both (message &optional include-untracked)
-  "Create a stash of the index and working tree.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'."
-  (interactive (magit-stash-read-args))
-  (magit-stash-save message t t include-untracked t))
-
-;;;###autoload
-(defun magit-stash-index (message)
-  "Create a stash of the index only.
-Unstaged and untracked changes are not stashed.  The stashed
-changes are applied in reverse to both the index and the
-worktree.  This command can fail when the worktree is not clean.
-Applying the resulting stash has the inverse effect."
-  (interactive (list (magit-stash-read-message)))
-  (magit-stash-save message t nil nil t 'worktree))
-
-;;;###autoload
-(defun magit-stash-worktree (message &optional include-untracked)
-  "Create a stash of unstaged changes in the working tree.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'."
-  (interactive (magit-stash-read-args))
-  (magit-stash-save message nil t include-untracked t 'index))
-
-;;;###autoload
-(defun magit-stash-keep-index (message &optional include-untracked)
-  "Create a stash of the index and working tree, keeping index intact.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'."
-  (interactive (magit-stash-read-args))
-  (magit-stash-save message t t include-untracked t 'index))
-
-(defun magit-stash-read-args ()
-  (list (magit-stash-read-message)
-        (magit-stash-read-untracked)))
-
-(defun magit-stash-read-untracked ()
-  (let ((prefix (prefix-numeric-value current-prefix-arg))
-        (args   (magit-stash-arguments)))
-    (cond ((or (= prefix 16) (member "--all" args)) 'all)
-          ((or (= prefix  4) (member "--include-untracked" args)) t))))
-
-(defun magit-stash-read-message ()
-  (let* ((default (format "On %s: "
-                          (or (magit-get-current-branch) "(no branch)")))
-         (input (magit-read-string "Stash message" default)))
-    (if (equal input default)
-        (concat default (magit-rev-format "%h %s"))
-      input)))
-
-;;;###autoload
-(defun magit-snapshot-both (&optional include-untracked)
-  "Create a snapshot of the index and working tree.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'."
-  (interactive (magit-snapshot-read-args))
-  (magit-snapshot-save t t include-untracked t))
-
-;;;###autoload
-(defun magit-snapshot-index ()
-  "Create a snapshot of the index only.
-Unstaged and untracked changes are not stashed."
-  (interactive)
-  (magit-snapshot-save t nil nil t))
-
-;;;###autoload
-(defun magit-snapshot-worktree (&optional include-untracked)
-  "Create a snapshot of unstaged changes in the working tree.
-Untracked files are included according to popup arguments.
-One prefix argument is equivalent to `--include-untracked'
-while two prefix arguments are equivalent to `--all'."
-  (interactive (magit-snapshot-read-args))
-  (magit-snapshot-save nil t include-untracked t))
-
-(defun magit-snapshot-read-args ()
-  (list (magit-stash-read-untracked)))
-
-(defun magit-snapshot-save (index worktree untracked &optional refresh)
-  (magit-stash-save (concat "WIP on " (magit-stash-summary))
-                    index worktree untracked refresh t))
-
-;;;###autoload
-(defun magit-stash-apply (stash)
-  "Apply a stash to the working tree.
-Try to preserve the stash index.  If that fails because there
-are staged changes, apply without preserving the stash index."
-  (interactive (list (magit-read-stash "Apply stash")))
-  (if (= (magit-call-git "stash" "apply" "--index" stash) 0)
-      (magit-refresh)
-    (magit-run-git "stash" "apply" stash)))
-
-(defun magit-stash-pop (stash)
-  "Apply a stash to the working tree and remove it from stash list.
-Try to preserve the stash index.  If that fails because there
-are staged changes, apply without preserving the stash index
-and forgo removing the stash."
-  (interactive (list (magit-read-stash "Pop stash")))
-  (if (= (magit-call-git "stash" "apply" "--index" stash) 0)
-      (magit-stash-drop stash)
-    (magit-run-git "stash" "apply" stash)))
-
-;;;###autoload
-(defun magit-stash-drop (stash)
-  "Remove a stash from the stash list.
-When the region is active offer to drop all contained stashes."
-  (interactive (list (--if-let (magit-region-values 'stash)
-                         (magit-confirm t nil "Drop %i stashes" nil it)
-                       (magit-read-stash "Drop stash"))))
-  (dolist (stash (if (listp stash)
-                     (nreverse (prog1 stash (setq stash (car stash))))
-                   (list stash)))
-    (message "Deleted refs/%s (was %s)" stash
-             (magit-rev-parse "--short" stash))
-    (magit-call-git "rev-parse" stash)
-    (magit-call-git "reflog" "delete" "--updateref" "--rewrite" stash))
-  (when-let ((ref (and (string-match "\\(.+\\)@{[0-9]+}$" stash)
-                       (match-string 1 stash))))
-    (unless (string-match "^refs/" ref)
-      (setq ref (concat "refs/" ref)))
-    (unless (magit-rev-verify (concat ref "@{0}"))
-      (magit-run-git "update-ref" "-d" ref)))
-  (magit-refresh))
-
-;;;###autoload
-(defun magit-stash-clear (ref)
-  "Remove all stashes saved in REF's reflog by deleting REF."
-  (interactive (let ((ref (or (magit-section-value-if 'stashes) "refs/stash")))
-                 (magit-confirm t (format "Drop all stashes in %s" ref))
-                 (list ref)))
-  (magit-run-git "update-ref" "-d" ref))
-
-;;;###autoload
-(defun magit-stash-branch (stash branch)
-  "Create and checkout a new BRANCH from STASH."
-  (interactive (list (magit-read-stash "Branch stash")
-                     (magit-read-string-ns "Branch name")))
-  (magit-run-git "stash" "branch" branch stash))
-
-;;;###autoload
-(defun magit-stash-branch-here (stash branch)
-  "Create and checkout a new BRANCH and apply STASH.
-The branch is created using `magit-branch', using the current
-branch or `HEAD' as the string-point."
-  (interactive (list (magit-read-stash "Branch stash")
-                     (magit-read-string-ns "Branch name")))
-  (let ((inhibit-magit-refresh t))
-    (magit-branch-create branch (or (magit-get-current-branch) "HEAD")))
-  (magit-stash-apply stash))
-
-;;;###autoload
-(defun magit-stash-format-patch (stash)
-  "Create a patch from STASH"
-  (interactive (list (magit-read-stash "Create patch from stash")))
-  (with-temp-file (magit-rev-format "0001-%f.patch" stash)
-    (magit-git-insert "stash" "show" "-p" stash))
-  (magit-refresh))
-
-;;; Plumbing
-
-(defun magit-stash-save (message index worktree untracked
-                                 &optional refresh keep noerror ref)
-  (if (or (and index     (magit-staged-files t))
-          (and worktree  (magit-unstaged-files t))
-          (and untracked (magit-untracked-files (eq untracked 'all))))
-      (magit-with-toplevel
-        (magit-stash-store message (or ref "refs/stash")
-                           (magit-stash-create message index worktree untracked))
-        (if (eq keep 'worktree)
-            (with-temp-buffer
-              (magit-git-insert "diff" "--cached")
-              (magit-run-git-with-input
-               "apply" "--reverse" "--cached" "--ignore-space-change" "-")
-              (magit-run-git-with-input
-               "apply" "--reverse" "--ignore-space-change" "-"))
-          (unless (eq keep t)
-            (if (eq keep 'index)
-                (magit-call-git "checkout" "--" ".")
-              (magit-call-git "reset" "--hard" "HEAD"))
-            (when untracked
-              (magit-call-git "clean" "--force" "-d"
-                              (and (eq untracked 'all) "-x")))))
-        (when refresh
-          (magit-refresh)))
-    (unless noerror
-      (user-error "No %s changes to save" (cond ((not index)  "unstaged")
-                                                ((not worktree) "staged")
-                                                (t "local"))))))
-
-(defun magit-stash-store (message ref commit)
-  (magit-update-ref ref message commit t))
-
-(defun magit-stash-create (message index worktree untracked)
-  (unless (magit-rev-parse "--verify" "HEAD")
-    (error "You do not have the initial commit yet"))
-  (let ((magit-git-global-arguments (nconc (list "-c" "commit.gpgsign=false")
-                                           magit-git-global-arguments))
-        (default-directory (magit-toplevel))
-        (summary (magit-stash-summary))
-        (head "HEAD"))
-    (when (and worktree (not index))
-      (setq head (or (magit-commit-tree "pre-stash index" nil "HEAD")
-                     (error "Cannot save the current index state"))))
-    (or (setq index (magit-commit-tree (concat "index on " summary) nil head))
-        (error "Cannot save the current index state"))
-    (and untracked
-         (setq untracked (magit-untracked-files (eq untracked 'all)))
-         (setq untracked (magit-with-temp-index nil nil
-                           (or (and (magit-update-files untracked)
-                                    (magit-commit-tree
-                                     (concat "untracked files on " summary)))
-                               (error "Cannot save the untracked files")))))
-    (magit-with-temp-index index "-m"
-      (when worktree
-        (or (magit-update-files (magit-git-items "diff" "-z" "--name-only" head))
-            (error "Cannot save the current worktree state")))
-      (or (magit-commit-tree message nil head index untracked)
-          (error "Cannot save the current worktree state")))))
-
-(defun magit-stash-summary ()
-  (concat (or (magit-get-current-branch) "(no branch)")
-          ": " (magit-rev-format "%h %s")))
-
-;;; Sections
-
-(defvar magit-stashes-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-delete-thing] 'magit-stash-clear)
-    map)
-  "Keymap for `stashes' section.")
-
-(defvar magit-stash-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing]  'magit-stash-show)
-    (define-key map [remap magit-delete-thing] 'magit-stash-drop)
-    (define-key map "a"  'magit-stash-apply)
-    (define-key map "A"  'magit-stash-pop)
-    map)
-  "Keymap for `stash' sections.")
-
-(magit-define-section-jumper magit-jump-to-stashes
-  "Stashes" stashes "refs/stash")
-
-(cl-defun magit-insert-stashes (&optional (ref   "refs/stash")
-                                          (heading "Stashes:"))
-  "Insert `stashes' section showing reflog for \"refs/stash\".
-If optional REF is non-nil, show reflog for that instead.
-If optional HEADING is non-nil, use that as section heading
-instead of \"Stashes:\"."
-  (let ((verified (magit-rev-verify ref))
-        (autostash
-         (and (magit-rebase-in-progress-p)
-              (magit-file-line
-               (magit-git-dir
-                (-> (if (file-directory-p (magit-git-dir "rebase-merge"))
-                        "rebase-merge/autostash"
-                      "rebase-apply/autostash")))))))
-    (when (or autostash verified)
-      (magit-insert-section (stashes ref)
-        (magit-insert-heading heading)
-        (when autostash
-          (pcase-let ((`(,author ,date ,msg)
-                       (split-string
-                        (car (magit-git-lines
-                              "show" "-q" "--format=%aN%x00%at%x00%s"
-                              autostash))
-                        "\0")))
-            (magit-insert-section (stash autostash)
-              (insert (propertize "AUTOSTASH" 'face 'magit-hash))
-              (insert " " msg "\n")
-              (save-excursion
-                (backward-char)
-                (magit-log-format-margin autostash author date)))))
-        (if verified
-            (magit-git-wash (apply-partially 'magit-log-wash-log 'stash)
-              "reflog" "--format=%gd%x00%aN%x00%at%x00%gs" ref)
-          (insert ?\n)
-          (save-excursion
-            (backward-char)
-            (magit-make-margin-overlay)))))))
-
-;;; List Stashes
-
-;;;###autoload
-(defun magit-stash-list ()
-  "List all stashes in a buffer."
-  (interactive)
-  (magit-mode-setup #'magit-stashes-mode "refs/stash"))
-
-(define-derived-mode magit-stashes-mode magit-reflog-mode "Magit Stashes"
-  "Mode for looking at lists of stashes."
-  :group 'magit-log
-  (hack-dir-local-variables-non-file-buffer)
-  (setq-local bookmark-make-record-function
-              #'magit-bookmark--stashes-make-record))
-
-(cl-defun magit-stashes-refresh-buffer (ref)
-  (magit-insert-section (stashesbuf)
-    (magit-insert-heading (if (equal ref "refs/stash")
-                              "Stashes:"
-                            (format "Stashes [%s]:" ref)))
-    (magit-git-wash (apply-partially 'magit-log-wash-log 'stash)
-      "reflog" "--format=%gd%x00%aN%x00%at%x00%gs" ref)))
-
-;;; Show Stash
-
-;;;###autoload
-(defun magit-stash-show (stash &optional args files)
-  "Show all diffs of a stash in a buffer."
-  (interactive (cons (or (and (not current-prefix-arg)
-                              (magit-stash-at-point))
-                         (magit-read-stash "Show stash"))
-                     (pcase-let ((`(,args ,files) (magit-diff-arguments)))
-                       (list (delete "--stat" args) files))))
-  (magit-mode-setup #'magit-stash-mode stash nil args files))
-
-(define-derived-mode magit-stash-mode magit-diff-mode "Magit Stash"
-  "Mode for looking at individual stashes."
-  :group 'magit-diff
-  (hack-dir-local-variables-non-file-buffer)
-  (setq-local bookmark-make-record-function
-              #'magit-bookmark--stash-make-record))
-
-(defun magit-stash-refresh-buffer (stash _const _args _files)
-  (magit-set-header-line-format
-   (concat (propertize (capitalize stash) 'face 'magit-section-heading)
-           " "
-           (magit-rev-format "%s" stash)))
-  (setq magit-buffer-revision-hash (magit-rev-parse stash))
-  (magit-insert-section (stash)
-    (magit-run-section-hook 'magit-stash-sections-hook)))
-
-(defun magit-stash-insert-section (commit range message &optional files)
-  (magit-insert-section (commit commit)
-    (magit-insert-heading message)
-    (magit-git-wash #'magit-diff-wash-diffs
-      "diff" range "-p" "--no-prefix"
-      (nth 2 magit-refresh-args)
-      "--" (or files (nth 3 magit-refresh-args)))))
-
-(defun magit-insert-stash-notes ()
-  "Insert section showing notes for a stash.
-This shows the notes for stash@{N} but not for the other commits
-that make up the stash."
-  (magit-insert-section section (note)
-    (magit-insert-heading "Notes")
-    (magit-git-insert "notes" "show" (car magit-refresh-args))
-    (if (= (point)
-           (oref section content))
-        (magit-cancel-section)
-      (insert "\n"))))
-
-(defun magit-insert-stash-index ()
-  "Insert section showing staged changes of the stash."
-  (let ((stash (car magit-refresh-args)))
-    (magit-stash-insert-section (format "%s^2" stash)
-                                (format "%s^..%s^2" stash stash)
-                                "Staged")))
-
-(defun magit-insert-stash-worktree ()
-  "Insert section showing unstaged changes of the stash."
-  (let ((stash (car magit-refresh-args)))
-    (magit-stash-insert-section stash
-                                (format "%s^2..%s" stash stash)
-                                "Unstaged")))
-
-(defun magit-insert-stash-untracked ()
-  "Insert section showing the untracked files commit of the stash."
-  (let ((stash (car magit-refresh-args))
-        (rev   (concat (car magit-refresh-args) "^3")))
-    (when (magit-rev-verify rev)
-      (magit-stash-insert-section (format "%s^3" stash)
-                                  (format "%s^..%s^3" stash stash)
-                                  "Untracked files"
-                                  (magit-git-items "ls-tree" "-z" "--name-only"
-                                                   "-r" "--full-tree" rev)))))
-
-;;; _
-(provide 'magit-stash)
-;;; magit-stash.el ends here
diff --git a/elpa/magit-20181116.1412/magit-stash.elc b/elpa/magit-20181116.1412/magit-stash.elc
deleted file mode 100644
index e2714b7..0000000
--- a/elpa/magit-20181116.1412/magit-stash.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-status.el b/elpa/magit-20181116.1412/magit-status.el
deleted file mode 100644
index 73a3167..0000000
--- a/elpa/magit-20181116.1412/magit-status.el
+++ /dev/null
@@ -1,634 +0,0 @@
-;;; magit-status.el --- the grand overview  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements the status buffer.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-(defvar bookmark-make-record-function)
-
-;;; Options
-
-(defgroup magit-status nil
-  "Inspect and manipulate Git repositories."
-  :link '(info-link "(magit)Status Buffer")
-  :group 'magit-modes)
-
-(defcustom magit-status-mode-hook nil
-  "Hook run after entering Magit-Status mode."
-  :group 'magit-status
-  :type 'hook)
-
-(defcustom magit-status-headers-hook
-  '(magit-insert-error-header
-    magit-insert-diff-filter-header
-    magit-insert-head-branch-header
-    magit-insert-upstream-branch-header
-    magit-insert-push-branch-header
-    magit-insert-tags-header)
-  "Hook run to insert headers into the status buffer.
-
-This hook is run by `magit-insert-status-headers', which in turn
-has to be a member of `magit-status-sections-hook' to be used at
-all."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-status
-  :type 'hook
-  :options '(magit-insert-error-header
-             magit-insert-diff-filter-header
-             magit-insert-repo-header
-             magit-insert-remote-header
-             magit-insert-head-branch-header
-             magit-insert-upstream-branch-header
-             magit-insert-push-branch-header
-             magit-insert-tags-header))
-
-(defcustom magit-status-sections-hook
-  '(magit-insert-status-headers
-    magit-insert-merge-log
-    magit-insert-rebase-sequence
-    magit-insert-am-sequence
-    magit-insert-sequencer-sequence
-    magit-insert-bisect-output
-    magit-insert-bisect-rest
-    magit-insert-bisect-log
-    magit-insert-untracked-files
-    magit-insert-unstaged-changes
-    magit-insert-staged-changes
-    magit-insert-stashes
-    magit-insert-unpushed-to-pushremote
-    magit-insert-unpushed-to-upstream-or-recent
-    magit-insert-unpulled-from-pushremote
-    magit-insert-unpulled-from-upstream)
-  "Hook run to insert sections into a status buffer."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-status
-  :type 'hook)
-
-(defcustom magit-status-initial-section '(1)
-  "The section point is placed on when a status buffer is created.
-
-When such a buffer is merely being refreshed or being shown again
-after it was merely burried, then this option has no effect.
-
-If this is nil, then point remains on the very first section as
-usual.  Otherwise it has to be a list of integers and section
-identity lists.  The members of that list are tried in order
-until a matching section is found.
-
-An integer means to jump to the nth section, 1 for example
-jumps over the headings.  To get a section's \"identity list\"
-use \\[universal-argument] \\[magit-describe-section-briefly].
-
-If, for example, you want to jump to the commits that haven't
-been pulled from the upstream, or else the second section, then
-use: (((unpulled . \"..@{upstream}\") (status)) 1).
-
-See option `magit-section-initial-visibility-alist' for how to
-control the initial visibility of the jumped to section."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-status
-  :type '(choice (const :tag "as usual" nil)
-                 (repeat (choice (number :tag "nth top-level section")
-                                 (sexp   :tag "section identity")))))
-
-(defcustom magit-status-show-hashes-in-headers nil
-  "Whether headers in the status buffer show hashes.
-The functions which respect this option are
-`magit-insert-head-branch-header',
-`magit-insert-upstream-branch-header', and
-`magit-insert-push-branch-header'."
-  :package-version '(magit . "2.4.0")
-  :group 'magit-status
-  :type 'boolean)
-
-(defcustom magit-status-margin
-  (list nil
-        (nth 1 magit-log-margin)
-        'magit-log-margin-width nil
-        (nth 4 magit-log-margin))
-  "Format of the margin in `magit-status-mode' buffers.
-
-The value has the form (INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH).
-
-If INIT is non-nil, then the margin is shown initially.
-STYLE controls how to format the committer date.  It can be one
-  of `age' (to show the age of the commit), `age-abbreviated' (to
-  abbreviate the time unit to a character), or a string (suitable
-  for `format-time-string') to show the actual date.
-WIDTH controls the width of the margin.  This exists for forward
-  compatibility and currently the value should not be changed.
-AUTHOR controls whether the name of the author is also shown by
-  default.
-AUTHOR-WIDTH has to be an integer.  When the name of the author
-  is shown, then this specifies how much space is used to do so."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-status
-  :group 'magit-margin
-  :type magit-log-margin--custom-type
-  :initialize 'magit-custom-initialize-reset
-  :set-after '(magit-log-margin)
-  :set (apply-partially #'magit-margin-set-variable 'magit-status-mode))
-
-;;; Commands
-
-;;;###autoload
-(defun magit-init (directory)
-  "Initialize a Git repository, then show its status.
-
-If the directory is below an existing repository, then the user
-has to confirm that a new one should be created inside.  If the
-directory is the root of the existing repository, then the user
-has to confirm that it should be reinitialized.
-
-Non-interactively DIRECTORY is (re-)initialized unconditionally."
-  (interactive
-   (let ((directory (file-name-as-directory
-                     (expand-file-name
-                      (read-directory-name "Create repository in: ")))))
-     (when-let ((toplevel (magit-toplevel directory)))
-       (setq toplevel (expand-file-name toplevel))
-       (unless (y-or-n-p (if (file-equal-p toplevel directory)
-                             (format "Reinitialize existing repository %s? "
-                                     directory)
-                           (format "%s is a repository.  Create another in %s? "
-                                   toplevel directory)))
-         (user-error "Abort")))
-     (list directory)))
-  ;; `git init' does not understand the meaning of "~"!
-  (magit-call-git "init" (magit-convert-filename-for-git
-                          (expand-file-name directory)))
-  (magit-status-internal directory))
-
-;;;###autoload
-(defun magit-status (&optional directory cache)
-  "Show the status of the current Git repository in a buffer.
-With a prefix argument prompt for a repository to be shown.
-With two prefix arguments prompt for an arbitrary directory.
-If that directory isn't the root of an existing repository,
-then offer to initialize it as a new repository."
-  (interactive
-   (let ((magit--refresh-cache (list (cons 0 0))))
-     (list (and (or current-prefix-arg (not (magit-toplevel)))
-                (magit-read-repository
-                 (>= (prefix-numeric-value current-prefix-arg) 16)))
-           magit--refresh-cache)))
-  (let ((magit--refresh-cache (or cache (list (cons 0 0)))))
-    (if directory
-        (let ((toplevel (magit-toplevel directory)))
-          (setq directory (file-name-as-directory
-                           (expand-file-name directory)))
-          (if (and toplevel (file-equal-p directory toplevel))
-              (magit-status-internal directory)
-            (when (y-or-n-p
-                   (if toplevel
-                       (format "%s is a repository.  Create another in %s? "
-                               toplevel directory)
-                     (format "Create repository in %s? " directory)))
-              ;; Creating a new repository will invalidate cached
-              ;; values.
-              (setq magit--refresh-cache nil)
-              (magit-init directory))))
-      (magit-status-internal default-directory))))
-
-(put 'magit-status 'interactive-only 'magit-status-internal)
-
-(defalias 'magit 'magit-status
-  "An alias for `magit-status' for better discoverability.
-
-Instead of invoking this alias for `magit-status' using
-\"M-x magit RET\", you should bind a key to `magit-status'
-and read the info node `(magit)Getting Started', which
-also contains other useful hints.")
-
-;;;###autoload
-(defun magit-status-internal (directory)
-  (magit--tramp-asserts directory)
-  (let ((default-directory directory))
-    (magit-mode-setup #'magit-status-mode)))
-
-(defvar magit--remotes-using-recent-git nil)
-
-(defun magit--tramp-asserts (directory)
-  (when-let ((remote (file-remote-p directory)))
-    (unless (member remote magit--remotes-using-recent-git)
-      (if-let ((version (let ((default-directory directory))
-                          (magit-git-version))))
-          (if (version<= magit--minimal-git version)
-              (push version magit--remotes-using-recent-git)
-            (display-warning 'magit (format "\
-Magit requires Git >= %s, but on %s the version is %s.
-
-If multiple Git versions are installed on the host, then the
-problem might be that TRAMP uses the wrong executable.
-
-First check the value of `magit-git-executable'.  Its value is
-used when running git locally as well as when running it on a
-remote host.  The default value is \"git\", except on Windows
-where an absolute path is used for performance reasons.
-
-If the value already is just \"git\" but TRAMP never-the-less
-doesn't use the correct executable, then consult the info node
-`(tramp)Remote programs'.\n" magit--minimal-git remote version) :error))
-        (display-warning 'magit (format "\
-Magit cannot find Git on %s.
-
-First check the value of `magit-git-executable'.  Its value is
-used when running git locally as well as when running it on a
-remote host.  The default value is \"git\", except on Windows
-where an absolute path is used for performance reasons.
-
-If the value already is just \"git\" but TRAMP never-the-less
-doesn't find the executable, then consult the info node
-`(tramp)Remote programs'.\n" remote) :error)))))
-
-;;; Mode
-
-(defvar magit-status-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-mode-map)
-    (define-key map "jz" 'magit-jump-to-stashes)
-    (define-key map "jt" 'magit-jump-to-tracked)
-    (define-key map "jn" 'magit-jump-to-untracked)
-    (define-key map "ju" 'magit-jump-to-unstaged)
-    (define-key map "js" 'magit-jump-to-staged)
-    (define-key map "jfu" 'magit-jump-to-unpulled-from-upstream)
-    (define-key map "jfp" 'magit-jump-to-unpulled-from-pushremote)
-    (define-key map "jpu" 'magit-jump-to-unpushed-to-upstream)
-    (define-key map "jpp" 'magit-jump-to-unpushed-to-pushremote)
-    (define-key map [remap dired-jump] 'magit-dired-jump)
-    map)
-  "Keymap for `magit-status-mode'.")
-
-(define-derived-mode magit-status-mode magit-mode "Magit"
-  "Mode for looking at Git status.
-
-This mode is documented in info node `(magit)Status Buffer'.
-
-\\<magit-mode-map>\
-Type \\[magit-refresh] to refresh the current buffer.
-Type \\[magit-section-toggle] to expand or hide the section at point.
-Type \\[magit-visit-thing] to visit the change or commit at point.
-
-Type \\[magit-dispatch-popup] to see available prefix popups.
-
-Staging and applying changes is documented in info node
-`(magit)Staging and Unstaging' and info node `(magit)Applying'.
-
-\\<magit-hunk-section-map>Type \
-\\[magit-apply] to apply the change at point, \
-\\[magit-stage] to stage,
-\\[magit-unstage] to unstage, \
-\\[magit-discard] to discard, or \
-\\[magit-reverse] to reverse it.
-
-\\<magit-status-mode-map>\
-Type \\[magit-commit-popup] to create a commit.
-
-\\{magit-status-mode-map}"
-  :group 'magit-status
-  (hack-dir-local-variables-non-file-buffer)
-  (setq imenu-create-index-function
-        'magit-imenu--status-create-index-function)
-  (setq-local bookmark-make-record-function
-              #'magit-bookmark--status-make-record))
-
-(defun magit-status-refresh-buffer ()
-  (magit-git-exit-code "update-index" "--refresh")
-  (magit-insert-section (status)
-    (magit-run-section-hook 'magit-status-sections-hook)))
-
-(defun magit-status-goto-initial-section ()
-  "In a `magit-status-mode' buffer, jump `magit-status-initial-section'.
-Actually doing so is deferred until `magit-refresh-buffer-hook'
-runs `magit-status-goto-initial-section-1'.  That function then
-removes itself from the hook, so that this only happens when the
-status buffer is first created."
-  (when (and magit-status-initial-section
-             (derived-mode-p 'magit-status-mode))
-    (add-hook 'magit-refresh-buffer-hook
-              'magit-status-goto-initial-section-1 nil t)))
-
-(defun magit-status-goto-initial-section-1 ()
-  "In a `magit-status-mode' buffer, jump `magit-status-initial-section'.
-This function removes itself from `magit-refresh-buffer-hook'."
-  (when-let ((section
-              (--some (if (integerp it)
-                          (nth (1- it)
-                               (magit-section-siblings (magit-current-section)
-                                                       'next))
-                        (magit-get-section it))
-                      magit-status-initial-section)))
-    (goto-char (oref section start))
-    (when-let ((vis (cdr (assq 'magit-status-initial-section
-                               magit-section-initial-visibility-alist))))
-      (if (eq vis 'hide)
-          (magit-section-hide section)
-        (magit-section-show section))))
-  (remove-hook 'magit-refresh-buffer-hook
-               'magit-status-goto-initial-section-1 t))
-
-(defun magit-status-maybe-update-revision-buffer (&optional _)
-  "When moving in the status buffer, update the revision buffer.
-If there is no revision buffer in the same frame, then do nothing."
-  (when (derived-mode-p 'magit-status-mode)
-    (magit-log-maybe-update-revision-buffer-1)))
-
-(defun magit-status-maybe-update-blob-buffer (&optional _)
-  "When moving in the status buffer, update the blob buffer.
-If there is no blob buffer in the same frame, then do nothing."
-  (when (derived-mode-p 'magit-status-mode)
-    (magit-log-maybe-update-blob-buffer-1)))
-
-;;; Sections
-;;;; Special Headers
-
-(defun magit-insert-status-headers ()
-  "Insert header sections appropriate for `magit-status-mode' buffers.
-The sections are inserted by running the functions on the hook
-`magit-status-headers-hook'."
-  (if (magit-rev-verify "HEAD")
-      (magit-insert-headers 'magit-status-headers-hook)
-    (insert "In the beginning there was darkness\n\n")))
-
-(defvar magit-error-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing] 'magit-process-buffer)
-    map)
-  "Keymap for `error' sections.")
-
-(defun magit-insert-error-header ()
-  "Insert the message about the Git error that just occured.
-
-This function is only aware of the last error that occur when Git
-was run for side-effects.  If, for example, an error occurs while
-generating a diff, then that error won't be inserted.  Refreshing
-the status buffer causes this section to disappear again."
-  (when magit-this-error
-    (magit-insert-section (error 'git)
-      (insert (propertize (format "%-10s" "GitError! ")
-                          'face 'magit-section-heading))
-      (insert (propertize magit-this-error 'face 'font-lock-warning-face))
-      (when-let ((key (car (where-is-internal 'magit-process-buffer))))
-        (insert (format "  [Type `%s' for details]" (key-description key))))
-      (insert ?\n))
-    (setq magit-this-error nil)))
-
-(defun magit-insert-diff-filter-header ()
-  "Insert a header line showing the effective diff filters."
-  (let ((ignore-modules (magit-ignore-submodules-p)))
-    (when (or ignore-modules
-              magit-diff-section-file-args)
-      (insert (propertize (format "%-10s" "Filter! ")
-                          'face 'magit-section-heading))
-      (when ignore-modules
-        (insert ignore-modules)
-        (when magit-diff-section-file-args
-          (insert " -- ")))
-      (when magit-diff-section-file-args
-        (insert (mapconcat #'identity magit-diff-section-file-args " ")))
-      (insert ?\n))))
-
-;;;; Reference Headers
-
-(cl-defun magit-insert-head-branch-header
-    (&optional (branch (magit-get-current-branch)))
-  "Insert a header line about BRANCH.
-When BRANCH is nil, use the current branch or, if none, the
-detached `HEAD'."
-  (let ((output (magit-rev-format "%h %s" (or branch "HEAD"))))
-    (string-match "^\\([^ ]+\\) \\(.*\\)" output)
-    (magit-bind-match-strings (commit summary) output
-      (if branch
-          (magit-insert-section (branch branch)
-            (insert (format "%-10s" "Head: "))
-            (when magit-status-show-hashes-in-headers
-              (insert (propertize commit 'face 'magit-hash) ?\s))
-            (insert (propertize branch 'face 'magit-branch-local))
-            (insert ?\s)
-            (insert (funcall magit-log-format-message-function branch summary))
-            (insert ?\n))
-        (magit-insert-section (commit commit)
-          (insert (format "%-10s" "Head: "))
-          (insert (propertize commit 'face 'magit-hash))
-          (insert ?\s summary ?\n))))))
-
-(cl-defun magit-insert-upstream-branch-header
-    (&optional (branch (magit-get-current-branch))
-               (pull   (magit-get-upstream-branch branch))
-               keyword)
-  "Insert a header line about branch usually pulled into current branch."
-  (when pull
-    (magit-insert-section (branch pull)
-      (let ((rebase (magit-get "branch" branch "rebase")))
-        (pcase rebase
-          ("true")
-          ("false" (setq rebase nil))
-          (_       (setq rebase (magit-get-boolean "pull.rebase"))))
-        (insert (format "%-10s" (or keyword (if rebase "Rebase: " "Merge: ")))))
-      (--when-let (and magit-status-show-hashes-in-headers
-                       (not (string-match-p " " pull))
-                       (magit-rev-format "%h" pull))
-        (insert (propertize it 'face 'magit-hash) " "))
-      (if (string-match-p " " pull)
-          (pcase-let ((`(,url ,branch) (split-string pull " ")))
-            (insert branch " from " url " "))
-        (insert pull " ")
-        (--if-let (and (magit-rev-verify pull)
-                       (magit-rev-format "%s" pull))
-            (insert (funcall magit-log-format-message-function pull it))
-          (insert (propertize "is missing" 'face 'font-lock-warning-face))))
-      (insert ?\n))))
-
-(cl-defun magit-insert-push-branch-header
-    (&optional (branch (magit-get-current-branch))
-               (push   (magit-get-push-branch branch)))
-  "Insert a header line about the branch the current branch is pushed to."
-  (when push
-    (magit-insert-section (branch push)
-      (insert (format "%-10s" "Push: "))
-      (--when-let (and magit-status-show-hashes-in-headers
-                       (magit-rev-format "%h" push))
-        (insert (propertize it 'face 'magit-hash) ?\s))
-      (insert (propertize push 'face 'magit-branch-remote) ?\s)
-      (--if-let (and (magit-rev-verify push)
-                     (magit-rev-format "%s" push))
-          (insert (funcall magit-log-format-message-function push it))
-        (insert (propertize "is missing" 'face 'font-lock-warning-face)))
-      (insert ?\n))))
-
-(defun magit-insert-tags-header ()
-  "Insert a header line about the current and/or next tag."
-  (let* ((this-tag (magit-get-current-tag nil t))
-         (next-tag (magit-get-next-tag nil t))
-         (this-cnt (cadr this-tag))
-         (next-cnt (cadr next-tag))
-         (this-tag (car this-tag))
-         (next-tag (car next-tag))
-         (both-tags (and this-tag next-tag t)))
-    (when (or this-tag next-tag)
-      (magit-insert-section (tag (or this-tag next-tag))
-        (insert (format "%-10s" (if both-tags "Tags: " "Tag: ")))
-        (cl-flet ((insert-count
-                   (tag count face)
-                   (insert (concat (propertize tag 'face 'magit-tag)
-                                   (and (> count 0)
-                                        (format " (%s)"
-                                                (propertize (format "%s" count)
-                                                            'face face)))))))
-          (when this-tag  (insert-count this-tag this-cnt 'magit-branch-local))
-          (when both-tags (insert ", "))
-          (when next-tag  (insert-count next-tag next-cnt 'magit-tag)))
-        (insert ?\n)))))
-
-;;;; Auxiliary Headers
-
-(defun magit-insert-user-header ()
-  "Insert a header line about the current user."
-  (let ((name  (magit-get "user.name"))
-        (email (magit-get "user.email")))
-    (when (and name email)
-      (magit-insert-section (user name)
-        (insert (format "%-10s" "User: "))
-        (insert (propertize name 'face 'magit-log-author))
-        (insert " <" email ">\n")))))
-
-(defun magit-insert-repo-header ()
-  "Insert a header line showing the path to the repository top-level."
-  (let ((topdir (magit-toplevel)))
-    (magit-insert-section (repo topdir)
-      (insert (format "%-10s%s\n" "Repo: " (abbreviate-file-name topdir))))))
-
-(defun magit-insert-remote-header ()
-  "Insert a header line about the remote of the current branch.
-
-If no remote is configured for the current branch, then fall back
-showing the \"origin\" remote, or if that does not exist the first
-remote in alphabetic order."
-  (when-let ((name (magit-get-some-remote))
-             ;; Under certain configurations it's possible for url
-             ;; to be nil, when name is not, see #2858.
-             (url (magit-get "remote" name "url")))
-    (magit-insert-section (remote name)
-      (insert (format "%-10s" "Remote: "))
-      (insert (propertize name 'face 'magit-branch-remote) ?\s)
-      (insert url ?\n))))
-
-;;;; File Sections
-
-(defvar magit-untracked-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-delete-thing] 'magit-discard)
-    (define-key map "s" 'magit-stage)
-    map)
-  "Keymap for the `untracked' section.")
-
-(magit-define-section-jumper magit-jump-to-untracked "Untracked files" untracked)
-
-(defun magit-insert-untracked-files ()
-  "Maybe insert a list or tree of untracked files.
-
-Do so depending on the value of `status.showUntrackedFiles'.
-Note that even if the value is `all', Magit still initially
-only shows directories.  But the directory sections can then
-be expanded using \"TAB\".
-
-If the first element of `magit-diff-section-arguments' is a
-directory, then limit the list to files below that.  The value
-value of that variable can be set using \"D = f DIRECTORY RET g\"."
-  (let* ((show (or (magit-get "status.showUntrackedFiles") "normal"))
-         (base (car magit-diff-section-file-args))
-         (base (and base (file-directory-p base) base)))
-    (unless (equal show "no")
-      (if (equal show "all")
-          (when-let ((files (magit-untracked-files nil base)))
-            (magit-insert-section (untracked)
-              (magit-insert-heading "Untracked files:")
-              (magit-insert-files files base)
-              (insert ?\n)))
-        (when-let ((files
-                    (--mapcat (and (eq (aref it 0) ??)
-                                   (list (substring it 3)))
-                              (magit-git-items "status" "-z" "--porcelain"
-                                               (magit-ignore-submodules-p)
-                                               "--" base))))
-          (magit-insert-section (untracked)
-            (magit-insert-heading "Untracked files:")
-            (dolist (file files)
-              (magit-insert-section (file file)
-                (insert (propertize file 'face 'magit-filename) ?\n)))
-            (insert ?\n)))))))
-
-(magit-define-section-jumper magit-jump-to-tracked "Tracked files" tracked)
-
-(defun magit-insert-tracked-files ()
-  "Insert a tree of tracked files.
-
-If the first element of `magit-diff-section-arguments' is a
-directory, then limit the list to files below that.  The value
-value of that variable can be set using \"D = f DIRECTORY RET g\"."
-  (when-let ((files (magit-list-files)))
-    (let* ((base (car magit-diff-section-file-args))
-           (base (and base (file-directory-p base) base)))
-      (magit-insert-section (tracked nil t)
-        (magit-insert-heading "Tracked files:")
-        (magit-insert-files files base)
-        (insert ?\n)))))
-
-(defun magit-insert-ignored-files ()
-  "Insert a tree of ignored files.
-
-If the first element of `magit-diff-section-arguments' is a
-directory, then limit the list to files below that.  The value
-of that variable can be set using \"D = f DIRECTORY RET g\"."
-  (when-let ((files (magit-ignored-files)))
-    (let* ((base (car magit-diff-section-file-args))
-           (base (and base (file-directory-p base) base)))
-      (magit-insert-section (tracked nil t)
-        (magit-insert-heading "Ignored files:")
-        (magit-insert-files files base)
-        (insert ?\n)))))
-
-(defun magit-insert-files (files directory)
-  (while (and files (string-prefix-p (or directory "") (car files)))
-    (let ((dir (file-name-directory (car files))))
-      (if (equal dir directory)
-          (let ((file (pop files)))
-            (magit-insert-section (file file)
-              (insert (propertize file 'face 'magit-filename) ?\n)))
-        (magit-insert-section (file dir t)
-          (insert (propertize dir 'file 'magit-filename) ?\n)
-          (magit-insert-heading)
-          (setq files (magit-insert-files files dir))))))
-  files)
-
-;;; _
-(provide 'magit-status)
-;;; magit-status.el ends here
diff --git a/elpa/magit-20181116.1412/magit-status.elc b/elpa/magit-20181116.1412/magit-status.elc
deleted file mode 100644
index 729f6f0..0000000
--- a/elpa/magit-20181116.1412/magit-status.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-submodule.el b/elpa/magit-20181116.1412/magit-submodule.el
deleted file mode 100644
index d05b7e8..0000000
--- a/elpa/magit-20181116.1412/magit-submodule.el
+++ /dev/null
@@ -1,636 +0,0 @@
-;;; magit-submodule.el --- submodule support for Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2011-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit)
-
-(defvar x-stretch-cursor)
-(defvar bookmark-make-record-function)
-
-;;; Options
-
-(defcustom magit-module-sections-hook
-  '(magit-insert-modules-overview
-    magit-insert-modules-unpulled-from-upstream
-    magit-insert-modules-unpulled-from-pushremote
-    magit-insert-modules-unpushed-to-upstream
-    magit-insert-modules-unpushed-to-pushremote)
-  "Hook run by `magit-insert-modules'.
-
-That function isn't part of `magit-status-sections-hook's default
-value, so you have to add it yourself for this hook to have any
-effect."
-  :package-version '(magit . "2.11.0")
-  :group 'magit-status
-  :type 'hook)
-
-(defcustom magit-module-sections-nested t
-  "Whether `magit-insert-modules' wraps inserted sections.
-
-If this is non-nil, then only a single top-level section
-is inserted.  If it is nil, then all sections listed in
-`magit-module-sections-hook' become top-level sections."
-  :package-version '(magit . "2.11.0")
-  :group 'magit-status
-  :type 'boolean)
-
-(defcustom magit-submodule-list-mode-hook '(hl-line-mode)
-  "Hook run after entering Magit-Submodule-List mode."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-repolist
-  :type 'hook
-  :get 'magit-hook-custom-get
-  :options '(hl-line-mode))
-
-(defcustom magit-submodule-list-columns
-  '(("Path"     25 magit-modulelist-column-path   nil)
-    ("Version"  25 magit-repolist-column-version  nil)
-    ("Branch"   20 magit-repolist-column-branch   nil)
-    ("B<U" 3 magit-repolist-column-unpulled-from-upstream   ((:right-align t)))
-    ("B>U" 3 magit-repolist-column-unpushed-to-upstream     ((:right-align t)))
-    ("B<P" 3 magit-repolist-column-unpulled-from-pushremote ((:right-align t)))
-    ("B>P" 3 magit-repolist-column-unpushed-to-pushremote   ((:right-align t)))
-    ("B"   3 magit-repolist-column-branches                 ((:right-align t)))
-    ("S"   3 magit-repolist-column-stashes                  ((:right-align t))))
-  "List of columns displayed by `magit-list-submodules'.
-
-Each element has the form (HEADER WIDTH FORMAT PROPS).
-
-HEADER is the string displayed in the header.  WIDTH is the width
-of the column.  FORMAT is a function that is called with one
-argument, the repository identification (usually its basename),
-and with `default-directory' bound to the toplevel of its working
-tree.  It has to return a string to be inserted or nil.  PROPS is
-an alist that supports the keys `:right-align' and `:pad-right'."
-  :package-version '(magit . "2.8.0")
-  :group 'magit-repolist-mode
-  :type `(repeat (list :tag "Column"
-                       (string   :tag "Header Label")
-                       (integer  :tag "Column Width")
-                       (function :tag "Inserter Function")
-                       (repeat   :tag "Properties"
-                                 (list (choice :tag "Property"
-                                               (const :right-align)
-                                               (const :pad-right)
-                                               (symbol))
-                                       (sexp   :tag "Value"))))))
-
-(defcustom magit-submodule-remove-trash-gitdirs nil
-  "Whether `magit-submodule-remove' offers to trash module gitdirs.
-
-If this is nil, then that command does not offer to do so unless
-a prefix argument is used.  When this is t, then it does offer to
-do so even without a prefix argument.
-
-In both cases the action still has to be confirmed unless that is
-disabled using the option `magit-no-confirm'.  Doing the latter
-and also setting this variable to t will lead to tears."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-;;; Popup
-
-;;;###autoload (autoload 'magit-submodule-popup "magit-submodule" nil t)
-(magit-define-popup magit-submodule-popup
-  "Popup console for submodule commands."
-  :man-page "git-submodule"
-  :switches '((?f "Force"            "--force")
-              (?r "Recursive"        "--recursive")
-              (?N "Do not fetch"     "--no-fetch")
-              (?C "Checkout tip"     "--checkout")
-              (?R "Rebase onto tip"  "--rebase")
-              (?M "Merge tip"        "--merge")
-              (?U "Use upstream tip" "--remote"))
-  :actions
-  '((?a "Add            git submodule add [--force]"
-        magit-submodule-add)
-    (?r "Register       git submodule init"
-        magit-submodule-register)
-    (?p "Populate       git submodule update --init"
-        magit-submodule-populate)
-    (?u "Update         git submodule update [--force] [--no-fetch]
-                     [--remote] [--recursive] [--checkout|--rebase|--merge]"
-        magit-submodule-update)
-    (?s "Synchronize    git submodule sync [--recursive]"
-        magit-submodule-synchronize)
-    (?d "Unpopulate     git submodule deinit [--force]"
-        magit-submodule-unpopulate)
-    (?k "Remove" magit-submodule-remove)
-    nil
-    (?l "List all modules"  magit-list-submodules)
-    (?f "Fetch all modules" magit-fetch-modules))
-  :max-action-columns 1)
-
-(defun magit-submodule-filtered-arguments (&rest filters)
-  (--filter (and (member it filters) it)
-            (magit-submodule-arguments)))
-
-;;;###autoload
-(defun magit-submodule-add (url &optional path name args)
-  "Add the repository at URL as a module.
-
-Optional PATH is the path to the module relative to the root of
-the superproject.  If it is nil, then the path is determined
-based on the URL.  Optional NAME is the name of the module.  If
-it is nil, then PATH also becomes the name."
-  (interactive
-   (magit-with-toplevel
-     (let* ((url (magit-read-string-ns "Add submodule (remote url)"))
-            (path (let ((read-file-name-function
-                         (if (or (eq read-file-name-function 'ido-read-file-name)
-                                 (advice-function-member-p
-                                  'ido-read-file-name
-                                  read-file-name-function))
-                             ;; The Ido variant doesn't work properly here.
-                             #'read-file-name-default
-                           read-file-name-function)))
-                    (directory-file-name
-                     (file-relative-name
-                      (read-directory-name
-                       "Add submodules at path: " nil nil nil
-                       (and (string-match "\\([^./]+\\)\\(\\.git\\)?$" url)
-                            (match-string 1 url))))))))
-       (list url
-             (directory-file-name path)
-             (magit-submodule-read-name-for-path path)
-             (magit-submodule-filtered-arguments "--force")))))
-  (magit-with-toplevel
-    (magit-submodule--maybe-reuse-gitdir name path)
-    (magit-run-git-async "submodule" "add"
-                         (and name (list "--name" name))
-                         args "--" url path)
-    (set-process-sentinel
-     magit-this-process
-     (lambda (process event)
-       (when (memq (process-status process) '(exit signal))
-         (if (> (process-exit-status process) 0)
-             (magit-process-sentinel process event)
-           (process-put process 'inhibit-refresh t)
-           (magit-process-sentinel process event)
-           (unless (version< (magit-git-version) "2.12.0")
-             (magit-call-git "submodule" "absorbgitdirs" path))
-           (magit-refresh)))))))
-
-;;;###autoload
-(defun magit-submodule-read-name-for-path (path &optional prefer-short)
-  (let* ((path (directory-file-name (file-relative-name path)))
-         (name (file-name-nondirectory path)))
-    (push (if prefer-short path name) minibuffer-history)
-    (magit-read-string-ns
-     "Submodule name" nil (cons 'minibuffer-history 2)
-     (or (--keep (pcase-let ((`(,var ,val) (split-string it "=")))
-                   (and (equal val path)
-                        (cadr (split-string var "\\."))))
-                 (magit-git-lines "config" "--list" "-f" ".gitmodules"))
-         (if prefer-short name path)))))
-
-;;;###autoload
-(defun magit-submodule-register (modules)
-  "Register MODULES.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user."
-  ;; This command and the underlying "git submodule init" do NOT
-  ;; "initialize" modules.  They merely "register" modules in the
-  ;; super-projects $GIT_DIR/config file, the purpose of which is to
-  ;; allow users to change such values before actually initializing
-  ;; the modules.
-  (interactive
-   (list (magit-module-confirm "Register" 'magit-module-no-worktree-p)))
-  (magit-with-toplevel
-    (magit-run-git-async "submodule" "init" "--" modules)))
-
-;;;###autoload
-(defun magit-submodule-populate (modules)
-  "Create MODULES working directories, checking out the recorded commits.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user."
-  ;; This is the command that actually "initializes" modules.
-  ;; A module is initialized when it has a working directory,
-  ;; a gitlink, and a .gitmodules entry.
-  (interactive
-   (list (magit-module-confirm "Populate" 'magit-module-no-worktree-p)))
-  (magit-with-toplevel
-    (magit-run-git-async "submodule" "update" "--init" "--" modules)))
-
-;;;###autoload
-(defun magit-submodule-update (modules args)
-  "Update MODULES by checking out the recorded commits.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user."
-  ;; Unlike `git-submodule's `update' command ours can only update
-  ;; "initialized" modules by checking out other commits but not
-  ;; "initialize" modules by creating the working directories.
-  ;; To do the latter we provide the "setup" command.
-  (interactive
-   (list (magit-module-confirm "Update" 'magit-module-worktree-p)
-         (magit-submodule-filtered-arguments
-          "--force" "--remote" "--recursive" "--checkout" "--rebase" "--merge"
-          "--no-fetch")))
-  (magit-with-toplevel
-    (magit-run-git-async "submodule" "update" args "--" modules)))
-
-;;;###autoload
-(defun magit-submodule-synchronize (modules args)
-  "Synchronize url configuration of MODULES.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user."
-  (interactive
-   (list (magit-module-confirm "Synchronize" 'magit-module-worktree-p)
-         (magit-submodule-filtered-arguments "--recursive")))
-  (magit-with-toplevel
-    (magit-run-git-async "submodule" "sync" args "--" modules)))
-
-;;;###autoload
-(defun magit-submodule-unpopulate (modules args)
-  "Remove working directories of MODULES.
-
-With a prefix argument act on all suitable modules.  Otherwise,
-if the region selects modules, then act on those.  Otherwise, if
-there is a module at point, then act on that.  Otherwise read a
-single module from the user."
-  ;; Even though a package is "uninitialized" (it has no worktree)
-  ;; the super-projects $GIT_DIR/config may never-the-less set the
-  ;; module's url.  This may happen if you `deinit' and then `init'
-  ;; to register (NOT initialize).  Because the purpose of `deinit'
-  ;; is to remove the working directory AND to remove the url, this
-  ;; command does not limit itself to modules that have no working
-  ;; directory.
-  (interactive
-   (list (magit-module-confirm "Unpopulate")
-         (magit-submodule-filtered-arguments "--force")))
-  (magit-with-toplevel
-    (magit-run-git-async "submodule" "deinit" args "--" modules)))
-
-;;;###autoload
-(defun magit-submodule-remove (modules args trash-gitdirs)
-  "Unregister MODULES and remove their working directories.
-
-For safety reasons, do not remove the gitdirs and if a module has
-uncomitted changes, then do not remove it at all.  If a module's
-gitdir is located inside the working directory, then move it into
-the gitdir of the superproject first.
-
-With the \"--force\" argument offer to remove dirty working
-directories and with a prefix argument offer to delete gitdirs.
-Both actions are very dangerous and have to be confirmed.  There
-are additional safety precautions in place, so you might be able
-to recover from making a mistake here, but don't count on it."
-  (interactive
-   (list (if-let ((modules (magit-region-values 'magit-module-section t)))
-             (magit-confirm 'remove-modules nil "Remove %i modules" nil modules)
-           (list (magit-read-module-path "Remove module")))
-         (magit-submodule-filtered-arguments "--force")
-         current-prefix-arg))
-  (when (version< (magit-git-version) "2.12.0")
-    (error "This command requires Git v2.12.0"))
-  (when magit-submodule-remove-trash-gitdirs
-    (setq trash-gitdirs t))
-  (magit-with-toplevel
-    (when-let
-        ((modified
-          (-filter (lambda (module)
-                     (let ((default-directory (file-name-as-directory
-                                               (expand-file-name module))))
-                       (and (cddr (directory-files default-directory))
-                            (magit-anything-modified-p))))
-                   modules)))
-      (if (member "--force" args)
-          (if (magit-confirm 'remove-dirty-modules
-                "Remove dirty module %s"
-                "Remove %i dirty modules"
-                t modified)
-              (dolist (module modified)
-                (let ((default-directory (file-name-as-directory
-                                          (expand-file-name module))))
-                  (magit-git "stash" "push"
-                             "-m" "backup before removal of this module")))
-            (setq modules (cl-set-difference modules modified)))
-        (if (cdr modified)
-            (message "Omitting %s modules with uncommitted changes: %s"
-                     (length modified)
-                     (mapconcat #'identity modified ", "))
-          (message "Omitting module %s, it has uncommitted changes"
-                   (car modified)))
-        (setq modules (cl-set-difference modules modified))))
-    (when modules
-      (let ((alist
-             (and trash-gitdirs
-                  (--map (split-string it "\0")
-                         (magit-git-lines "submodule" "foreach" "-q"
-                                          "printf \"$sm_path\\0$name\n\"")))))
-        (magit-git "submodule" "absorbgitdirs" "--" modules)
-        (magit-git "submodule" "deinit" args "--" modules)
-        (magit-git "rm" args "--" modules)
-        (when (and trash-gitdirs
-                   (magit-confirm 'trash-module-gitdirs
-                     "Trash gitdir of module %s"
-                     "Trash gitdirs of %i modules"
-                     t modules))
-          (dolist (module modules)
-            (if-let ((name (cadr (assoc module alist))))
-                ;; Disregard if `magit-delete-by-moving-to-trash'
-                ;; is nil.  Not doing so would be too dangerous.
-                (delete-directory (magit-git-dir
-                                   (convert-standard-filename
-                                    (concat "modules/" name)))
-                                  t t)
-              (error "BUG: Weird module name and/or path for %s" module)))))
-      (magit-refresh))))
-
-;;; Sections
-
-;;;###autoload
-(defun magit-insert-modules ()
-  "Insert submodule sections.
-Hook `magit-module-sections-hook' controls which module sections
-are inserted, and option `magit-module-sections-nested' controls
-whether they are wrapped in an additional section."
-  (when-let ((modules (magit-list-module-paths)))
-    (if magit-module-sections-nested
-        (magit-insert-section section (modules nil t)
-          (magit-insert-heading
-            (format "%s (%s)"
-                    (propertize "Modules" 'face 'magit-section-heading)
-                    (length modules)))
-          (if (oref section hidden)
-              (oset section washer 'magit--insert-modules)
-            (magit--insert-modules)))
-      (magit--insert-modules))))
-
-(defun magit--insert-modules (&optional _section)
-  (magit-run-section-hook 'magit-module-sections-hook))
-
-;;;###autoload
-(defun magit-insert-modules-overview ()
-  "Insert sections for all modules.
-For each section insert the path and the output of `git describe --tags',
-or, failing that, the abbreviated HEAD commit hash."
-  (when-let ((modules (magit-list-module-paths)))
-    (magit-insert-section section (modules nil t)
-      (magit-insert-heading
-        (format "%s (%s)"
-                (propertize "Modules overview" 'face 'magit-section-heading)
-                (length modules)))
-      (if (oref section hidden)
-          (oset section washer 'magit--insert-modules-overview)
-        (magit--insert-modules-overview)))))
-
-(defvar magit-modules-overview-align-numbers t)
-
-(defun magit--insert-modules-overview (&optional _section)
-  (magit-with-toplevel
-    (let* ((modules (magit-list-module-paths))
-           (path-format (format "%%-%is "
-                                (min (apply 'max (mapcar 'length modules))
-                                     (/ (window-width) 2))))
-           (branch-format (format "%%-%is " (min 25 (/ (window-width) 3)))))
-      (dolist (module modules)
-        (let ((default-directory
-                (expand-file-name (file-name-as-directory module))))
-          (magit-insert-section (magit-module-section module t)
-            (insert (propertize (format path-format module)
-                                'face 'magit-diff-file-heading))
-            (if (not (file-exists-p ".git"))
-                (insert "(unpopulated)")
-              (insert (format branch-format
-                              (--if-let (magit-get-current-branch)
-                                  (propertize it 'face 'magit-branch-local)
-                                (propertize "(detached)" 'face 'warning))))
-              (--if-let (magit-git-string "describe" "--tags")
-                  (progn (when (and magit-modules-overview-align-numbers
-                                    (string-match-p "\\`[0-9]" it))
-                           (insert ?\s))
-                         (insert (propertize it 'face 'magit-tag)))
-                (--when-let (magit-rev-format "%h")
-                  (insert (propertize it 'face 'magit-hash)))))
-            (insert ?\n))))))
-  (insert ?\n))
-
-(defvar magit-modules-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing] 'magit-list-submodules)
-    map)
-  "Keymap for `modules' sections.")
-
-(defvar magit-module-section-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-file-section-map)
-    (unless (featurep 'jkl)
-      (define-key map "\C-j"   'magit-submodule-visit))
-    (define-key map [C-return] 'magit-submodule-visit)
-    (define-key map [remap magit-visit-thing]  'magit-submodule-visit)
-    (define-key map [remap magit-delete-thing] 'magit-submodule-unpopulate)
-    (define-key map "K" 'magit-file-untrack)
-    (define-key map "R" 'magit-file-rename)
-    map)
-  "Keymap for `module' sections.")
-
-(defun magit-submodule-visit (module &optional other-window)
-  "Visit MODULE by calling `magit-status' on it.
-Offer to initialize MODULE if it's not checked out yet.
-With a prefix argument, visit in another window."
-  (interactive (list (or (magit-section-value-if 'module)
-                         (magit-read-module-path "Visit module"))
-                     current-prefix-arg))
-  (magit-with-toplevel
-    (let ((path (expand-file-name module)))
-      (cond
-       ((file-exists-p (expand-file-name ".git" module))
-        (magit-diff-visit-directory path other-window))
-       ((y-or-n-p (format "Initialize submodule '%s' first?" module))
-        (magit-run-git-async "submodule" "update" "--init" "--" module)
-        (set-process-sentinel
-         magit-this-process
-         (lambda (process event)
-           (let ((magit-process-raise-error t))
-             (magit-process-sentinel process event))
-           (when (and (eq (process-status      process) 'exit)
-                      (=  (process-exit-status process) 0))
-             (magit-diff-visit-directory path other-window)))))
-       ((file-exists-p path)
-        (dired-jump other-window (concat path "/.")))))))
-
-;;;###autoload
-(defun magit-insert-modules-unpulled-from-upstream ()
-  "Insert sections for modules that haven't been pulled from the upstream.
-These sections can be expanded to show the respective commits."
-  (magit--insert-modules-logs "Modules unpulled from @{upstream}"
-                              'modules-unpulled-from-upstream
-                              "HEAD..@{upstream}"))
-
-;;;###autoload
-(defun magit-insert-modules-unpulled-from-pushremote ()
-  "Insert sections for modules that haven't been pulled from the push-remote.
-These sections can be expanded to show the respective commits."
-  (magit--insert-modules-logs "Modules unpulled from @{push}"
-                              'modules-unpulled-from-pushremote
-                              "HEAD..@{push}"))
-
-;;;###autoload
-(defun magit-insert-modules-unpushed-to-upstream ()
-  "Insert sections for modules that haven't been pushed to the upstream.
-These sections can be expanded to show the respective commits."
-  (magit--insert-modules-logs "Modules unmerged into @{upstream}"
-                              'modules-unpushed-to-upstream
-                              "@{upstream}..HEAD"))
-
-;;;###autoload
-(defun magit-insert-modules-unpushed-to-pushremote ()
-  "Insert sections for modules that haven't been pushed to the push-remote.
-These sections can be expanded to show the respective commits."
-  (magit--insert-modules-logs "Modules unpushed to @{push}"
-                              'modules-unpushed-to-pushremote
-                              "@{push}..HEAD"))
-
-(defun magit--insert-modules-logs (heading type range)
-  "For internal use, don't add to a hook."
-  (unless (magit-ignore-submodules-p)
-    (when-let ((modules (magit-list-module-paths)))
-      (magit-insert-section section ((eval type) nil t)
-        (string-match "\\`\\(.+\\) \\([^ ]+\\)\\'" heading)
-        (magit-insert-heading
-          (propertize (match-string 1 heading) 'face 'magit-section-heading) " "
-          (propertize (match-string 2 heading) 'face 'magit-branch-remote) ":")
-        (magit-with-toplevel
-          (dolist (module modules)
-            (when (magit-module-worktree-p module)
-              (let ((default-directory
-                      (expand-file-name (file-name-as-directory module))))
-                (when (magit-file-accessible-directory-p default-directory)
-                  (magit-insert-section sec (magit-module-section module t)
-                    (magit-insert-heading
-                      (propertize module 'face 'magit-diff-file-heading) ":")
-                    (magit-git-wash
-                        (apply-partially 'magit-log-wash-log 'module)
-                      "-c" "push.default=current" "log" "--oneline" range)
-                    (when (> (point)
-                             (oref sec content))
-                      (delete-char -1))))))))
-        (if (> (point)
-               (oref section content))
-            (insert ?\n)
-          (magit-cancel-section))))))
-
-;;; List
-
-;;;###autoload
-(defun magit-list-submodules ()
-  "Display a list of the current repository's submodules."
-  (interactive)
-  (magit-display-buffer
-   (or (magit-mode-get-buffer 'magit-submodule-list-mode)
-       (magit-with-toplevel
-         (magit-generate-new-buffer 'magit-submodule-list-mode))))
-  (magit-submodule-list-mode)
-  (magit-submodule-list-refresh)
-  (tabulated-list-print))
-
-(defvar magit-submodule-list-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-repolist-mode-map)
-    map)
-  "Local keymap for Magit-Submodule-List mode buffers.")
-
-(define-derived-mode magit-submodule-list-mode tabulated-list-mode "Modules"
-  "Major mode for browsing a list of Git submodules."
-  :group 'magit-repolist-mode
-  (setq x-stretch-cursor        nil)
-  (setq tabulated-list-padding  0)
-  (setq tabulated-list-sort-key (cons "Path" nil))
-  (setq tabulated-list-format
-        (vconcat (mapcar (pcase-lambda (`(,title ,width ,_fn ,props))
-                           (nconc (list title width t)
-                                  (-flatten props)))
-                         magit-submodule-list-columns)))
-  (tabulated-list-init-header)
-  (add-hook 'tabulated-list-revert-hook 'magit-submodule-list-refresh nil t)
-  (setq imenu-prev-index-position-function
-        #'magit-imenu--submodule-prev-index-position-function)
-  (setq imenu-extract-index-name-function
-        #'magit-imenu--submodule-extract-index-name-function)
-  (setq-local bookmark-make-record-function
-              #'magit-bookmark--submodules-make-record))
-
-(defun magit-submodule-list-refresh ()
-  (setq tabulated-list-entries
-        (-keep (lambda (module)
-                 (let ((default-directory
-                         (expand-file-name (file-name-as-directory module))))
-                   (and (file-exists-p ".git")
-                        (list module
-                              (vconcat
-                               (--map (or (funcall (nth 2 it) module) "")
-                                      magit-submodule-list-columns))))))
-               (magit-list-module-paths))))
-
-(defun magit-modulelist-column-path (path)
-  "Insert the relative path of the submodule."
-  path)
-
-;;; Utilities
-
-(defun magit-submodule--maybe-reuse-gitdir (name path)
-  (let ((gitdir
-         (magit-git-dir (convert-standard-filename (concat "modules/" name)))))
-    (when (and (file-exists-p gitdir)
-               (not (file-exists-p path)))
-      (pcase (read-char-choice
-              (concat
-               gitdir " already exists.\n"
-               "Type [u] to use the existing gitdir and create the working tree\n"
-               "     [r] to rename the existing gitdir and clone again\n"
-               "     [t] to trash the existing gitdir and clone again\n"
-               "   [C-g] to abort ")
-              '(?u ?r ?t))
-        (?u (magit-submodule--restore-worktree (expand-file-name path) gitdir))
-        (?r (rename-file gitdir (concat gitdir "-"
-                                        (format-time-string "%F-%T"))))
-        (?t (delete-directory gitdir t t))))))
-
-(defun magit-submodule--restore-worktree (worktree gitdir)
-  (make-directory worktree t)
-  (with-temp-file (expand-file-name ".git" worktree)
-    (insert "gitdir: " (file-relative-name gitdir worktree) "\n"))
-  (let ((default-directory worktree))
-    (magit-call-git "reset" "--hard" "HEAD")))
-
-;;; _
-(provide 'magit-submodule)
-;;; magit-submodule.el ends here
diff --git a/elpa/magit-20181116.1412/magit-submodule.elc b/elpa/magit-20181116.1412/magit-submodule.elc
deleted file mode 100644
index e8081d6..0000000
--- a/elpa/magit-20181116.1412/magit-submodule.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-subtree.el b/elpa/magit-20181116.1412/magit-subtree.el
deleted file mode 100644
index 4e5d32b..0000000
--- a/elpa/magit-20181116.1412/magit-subtree.el
+++ /dev/null
@@ -1,147 +0,0 @@
-;;; magit-subtree.el --- subtree support for Magit  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2011-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Popup
-
-;;;###autoload (autoload 'magit-subtree-popup "magit-subtree" nil t)
-(magit-define-popup magit-subtree-popup
-  "Popup console for subtree commands."
-  :man-page "git-subtree"
-  :switches '("Switches for add, merge, push, and pull"
-              (?s "Squash" "--squash")
-              "Switches for split"
-              (?i "Ignore joins" "--ignore-joins")
-              (?j "Rejoin"       "--rejoin"))
-  :options  '("Options"
-              (?p "Prefix" "--prefix=" magit-subtree-read-prefix)
-              "Options for add, merge, and pull"
-              (?m "Message" "--message=")
-              "Options for split"
-              (?a "Annotate" "--annotate=")
-              (?b "Branch"   "--branch=")
-              (?o "Onto"     "--onto=" magit-read-branch-or-commit))
-  :actions  '((?a "Add"        magit-subtree-add)
-              (?m "Merge"      magit-subtree-merge)
-              (?p "Push"       magit-subtree-push)
-              (?c "Add commit" magit-subtree-add-commit)
-              (?f "Pull"       magit-subtree-pull)
-              (?s "Split"      magit-subtree-split))
-  :max-action-columns 3)
-
-(defun magit-subtree-read-prefix (prompt &optional default)
-  (let* ((insert-default-directory nil)
-         (topdir (magit-toplevel))
-         (prefix (read-directory-name (concat prompt ": ") topdir default)))
-    (if (file-name-absolute-p prefix)
-        ;; At least `ido-mode's variant is not compatible.
-        (if (string-prefix-p topdir prefix)
-            (file-relative-name prefix topdir)
-          (user-error "%s isn't inside the repository at %s" prefix topdir))
-      prefix)))
-
-;;; Commands
-
-(defun magit-subtree-prefix (prompt)
-  (--if-let (--first (string-prefix-p "--prefix=" it)
-                     (magit-subtree-arguments))
-      (substring it 9)
-    (magit-subtree-read-prefix prompt)))
-
-(defun magit-subtree-args ()
-  (-filter (lambda (arg)
-             (if (eq this-command 'magit-subtree-split)
-                 (or (equal arg "--ignore-joins")
-                     (equal arg "--rejoin")
-                     (string-prefix-p "--annotate=" arg)
-                     (string-prefix-p "--branch=" arg)
-                     (string-prefix-p "--onto=" arg))
-               (or (equal arg "--squash")
-                   (and (string-prefix-p "--message=" arg)
-                        (not (eq this-command 'magit-subtree-push))))))
-           (magit-subtree-arguments)))
-
-(defun magit-git-subtree (subcmd prefix &rest args)
-  (magit-run-git-async "subtree" subcmd (concat "--prefix=" prefix) args))
-
-;;;###autoload
-(defun magit-subtree-add (prefix repository ref args)
-  "Add REF from REPOSITORY as a new subtree at PREFIX."
-  (interactive
-   (cons (magit-subtree-prefix "Add subtree")
-         (let ((remote (magit-read-remote-or-url "From repository")))
-           (list remote
-                 (magit-read-refspec "Ref" remote)
-                 (magit-subtree-args)))))
-  (magit-git-subtree "add" prefix args repository ref))
-
-;;;###autoload
-(defun magit-subtree-add-commit (prefix commit args)
-  "Add COMMIT as a new subtree at PREFIX."
-  (interactive (list (magit-subtree-prefix "Add subtree")
-                     (magit-read-string-ns "Commit")
-                     (magit-subtree-args)))
-  (magit-git-subtree "add" prefix args commit))
-
-;;;###autoload
-(defun magit-subtree-merge (prefix commit args)
-  "Merge COMMIT into the PREFIX subtree."
-  (interactive (list (magit-subtree-prefix "Merge into subtree")
-                     (magit-read-string-ns "Commit")
-                     (magit-subtree-args)))
-  (magit-git-subtree "merge" prefix args commit))
-
-;;;###autoload
-(defun magit-subtree-pull (prefix repository ref args)
-  "Pull REF from REPOSITORY into the PREFIX subtree."
-  (interactive
-   (cons (magit-subtree-prefix "Pull into subtree")
-         (let ((remote (magit-read-remote-or-url "From repository")))
-           (list remote
-                 (magit-read-refspec "Ref" remote)
-                 (magit-subtree-args)))))
-  (magit-git-subtree "pull" prefix args repository ref))
-
-;;;###autoload
-(defun magit-subtree-push (prefix repository ref args)
-  "Extract the history of the subtree PREFIX and push it to REF on REPOSITORY."
-  (interactive (list (magit-subtree-prefix "Push subtree")
-                     (magit-read-remote-or-url "To repository")
-                     (magit-read-string-ns "To reference")
-                     (magit-subtree-args)))
-  (magit-git-subtree "push" prefix args repository ref))
-
-;;;###autoload
-(defun magit-subtree-split (prefix commit args)
-  "Extract the history of the subtree PREFIX."
-  (interactive (list (magit-subtree-prefix "Split subtree")
-                     (magit-read-string-ns "Commit")
-                     (magit-subtree-args)))
-  (magit-git-subtree "split" prefix args commit))
-
-;;; _
-(provide 'magit-subtree)
-;;; magit-subtree.el ends here
diff --git a/elpa/magit-20181116.1412/magit-subtree.elc b/elpa/magit-20181116.1412/magit-subtree.elc
deleted file mode 100644
index 409f873..0000000
--- a/elpa/magit-20181116.1412/magit-subtree.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-tag.el b/elpa/magit-20181116.1412/magit-tag.el
deleted file mode 100644
index ca5f6ab..0000000
--- a/elpa/magit-20181116.1412/magit-tag.el
+++ /dev/null
@@ -1,133 +0,0 @@
-;;; magit-tag.el --- tag functionality  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements tag commands.
-
-;;; Code:
-
-(require 'magit)
-
-;;;###autoload (autoload 'magit-tag-popup "magit" nil t)
-(magit-define-popup magit-tag-popup
-  "Popup console for tag commands."
-  :man-page "git-tag"
-  :switches '((?a "Annotate" "--annotate")
-              (?f "Force"    "--force")
-              (?s "Sign"     "--sign"))
-  :options  '((?f "Sign"     "--local-user=" magit-read-gpg-secret-key))
-  :actions  '((?t "Create"   magit-tag-create)
-              (?k "Delete"   magit-tag-delete)
-              (?p "Prune"    magit-tag-prune))
-  :default-action 'magit-tag-create)
-
-;;;###autoload
-(defun magit-tag-create (name rev &optional args)
-  "Create a new tag with the given NAME at REV.
-With a prefix argument annotate the tag.
-\n(git tag [--annotate] NAME REV)"
-  (interactive (list (magit-read-tag "Tag name")
-                     (magit-read-branch-or-commit "Place tag on")
-                     (let ((args (magit-tag-arguments)))
-                       (when current-prefix-arg
-                         (cl-pushnew "--annotate" args))
-                       args)))
-  (magit-run-git-with-editor "tag" args name rev))
-
-;;;###autoload
-(defun magit-tag-delete (tags)
-  "Delete one or more tags.
-If the region marks multiple tags (and nothing else), then offer
-to delete those, otherwise prompt for a single tag to be deleted,
-defaulting to the tag at point.
-\n(git tag -d TAGS)"
-  (interactive (list (--if-let (magit-region-values 'tag)
-                         (magit-confirm t nil "Delete %i tags" nil it)
-                       (magit-read-tag "Delete tag" t))))
-  (magit-run-git "tag" "-d" tags))
-
-;;;###autoload
-(defun magit-tag-prune (tags remote-tags remote)
-  "Offer to delete tags missing locally from REMOTE, and vice versa."
-  (interactive
-   (let* ((remote (magit-read-remote "Prune tags using remote"))
-          (tags   (magit-list-tags))
-          (rtags  (prog2 (message "Determining remote tags...")
-                      (magit-remote-list-tags remote)
-                    (message "Determining remote tags...done")))
-          (ltags  (-difference tags rtags))
-          (rtags  (-difference rtags tags)))
-     (unless (or ltags rtags)
-       (message "Same tags exist locally and remotely"))
-     (unless (magit-confirm t
-               "Delete %s locally"
-               "Delete %i tags locally"
-               'noabort ltags)
-       (setq ltags nil))
-     (unless (magit-confirm t
-               "Delete %s from remote"
-               "Delete %i tags from remote"
-               'noabort rtags)
-       (setq rtags nil))
-     (list ltags rtags remote)))
-  (when tags
-    (magit-call-git "tag" "-d" tags))
-  (when remote-tags
-    (magit-run-git-async "push" remote (--map (concat ":" it) remote-tags))))
-
-;;;###autoload
-(defun magit-tag-release (tag)
-  "Create an opinionated release tag.
-
-Assume version tags that match \"\\\\`v?[0-9]\\\\(\\\\.[0-9]\\\\)*\\\\'\".
-Prompt for the name of the new tag using the highest existing tag
-as initial input and call \"git tag --annotate --sign -m MSG\" TAG,
-regardless of whether these arguments are enabled in the popup.
-Given a TAG \"v1.2.3\" and a repository \"/path/to/foo-bar\", the
-MESSAGE would be \"Foo-Bar 1.2.3\".
-
-Because it is so opinionated, this command is not available from
-the tag popup by default."
-  (interactive
-   (list (read-string "Create tag: "
-                      (car (nreverse
-                            (cl-sort (magit-list-tags) #'version<
-                                     :key (lambda (tag)
-                                            (if (string-prefix-p "v" tag)
-                                                (substring tag 1)
-                                              tag))))))))
-  (magit-run-git
-   "tag" "--annotate" "--sign"
-   "-m" (format "%s %s"
-                (capitalize (file-name-nondirectory
-                             (directory-file-name (magit-toplevel))))
-                (if (string-prefix-p "v" tag)
-                    (substring tag 1)
-                  tag))
-   tag)
-  (magit-show-refs))
-
-;;; _
-(provide 'magit-tag)
-;;; magit-tag.el ends here
diff --git a/elpa/magit-20181116.1412/magit-tag.elc b/elpa/magit-20181116.1412/magit-tag.elc
deleted file mode 100644
index 79971e8..0000000
--- a/elpa/magit-20181116.1412/magit-tag.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-utils.el b/elpa/magit-20181116.1412/magit-utils.el
deleted file mode 100644
index fc81951..0000000
--- a/elpa/magit-20181116.1412/magit-utils.el
+++ /dev/null
@@ -1,1099 +0,0 @@
-;;; magit-utils.el --- various utilities  -*- lexical-binding: t; coding: utf-8 -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Contains code from GNU Emacs https://www.gnu.org/software/emacs,
-;; released under the GNU General Public License version 3 or later.
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library defines several utility functions used by several
-;; other libraries which cannot depend on one another (because
-;; circular dependencies are not good).  Luckily most (all) of these
-;; functions have very little (nothing) to do with Git, so we not only
-;; have to do this, it even makes sense.
-
-;; Unfortunately there are also some options which are used by several
-;; libraries which cannot depend on one another, they are defined here
-;; too.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'dash)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'crm)
-
-(eval-when-compile (require 'ido))
-(declare-function ido-completing-read+ "ido-completing-read+"
-                  (prompt collection &optional predicate
-                          require-match initial-input
-                          hist def inherit-input-method))
-(declare-function Info-get-token "info" (pos start all &optional errorstring))
-
-(eval-when-compile (require 'vc-git))
-(declare-function vc-git--run-command-string "vc-git" (file &rest args))
-
-(defvar magit-wip-before-change-mode)
-
-(require 'magit-popup)
-
-;;; Options
-
-(defcustom magit-completing-read-function 'magit-builtin-completing-read
-  "Function to be called when requesting input from the user.
-
-If you have enabled `ivy-mode' or `helm-mode', then you don't
-have to customize this option; `magit-builtin-completing-read'
-will work just fine.  However, if you use Ido completion, then
-you do have to use `magit-ido-completion-read', because Ido is
-less well behaved than the former, more modern alternatives.
-
-If you would like to use Ivy or Helm completion with Magit but
-not enable the respective modes globally, then customize this
-option to use `ivy-completing-read' or
-`helm--completing-read-default'.  If you choose to use
-`ivy-completing-read', note that the items may always be shown in
-alphabetical order, depending on your version of Ivy."
-  :group 'magit-essentials
-  :type '(radio (function-item magit-builtin-completing-read)
-                (function-item magit-ido-completing-read)
-                (function-item ivy-completing-read)
-                (function-item helm--completing-read-default)
-                (function :tag "Other function")))
-
-(defcustom magit-dwim-selection
-  '((magit-stash-apply        nil t)
-    (magit-stash-branch       nil t)
-    (magit-stash-branch-here  nil t)
-    (magit-stash-format-patch nil t)
-    (magit-stash-drop         nil ask)
-    (magit-stash-pop          nil ask)
-    (forge-browse-commit      nil t)
-    (forge-browse-branch      nil t)
-    (forge-browse-remote      nil t)
-    (forge-browse-issue       nil t)
-    (forge-browse-pullreq     nil t)
-    (forge-edit-topic-title   nil t)
-    (forge-edit-topic-labels  nil t)
-    (forge-edit-topic-assignees nil t)
-    (forge-visit-issue        nil t)
-    (forge-visit-pullreq      nil t))
-  "When not to offer alternatives and ask for confirmation.
-
-Many commands by default ask the user to select from a list of
-possible candidates.  They do so even when there is a thing at
-point that they can act on, which is then offered as the default.
-
-This option can be used to tell certain commands to use the thing
-at point instead of asking the user to select a candidate to act
-on, with or without confirmation.
-
-The value has the form ((COMMAND nil|PROMPT DEFAULT)...).
-
-- COMMAND is the command that should not prompt for a choice.
-  To have an effect, the command has to use the function
-  `magit-completing-read' or a utility function which in turn uses
-  that function.
-
-- If the command uses `magit-completing-read' multiple times, then
-  PROMPT can be used to only affect one of these uses.  PROMPT, if
-  non-nil, is a regular expression that is used to match against
-  the PROMPT argument passed to `magit-completing-read'.
-
-- DEFAULT specifies how to use the default.  If it is t, then
-  the DEFAULT argument passed to `magit-completing-read' is used
-  without confirmation.  If it is `ask', then the user is given
-  a chance to abort.  DEFAULT can also be nil, in which case the
-  entry has no effect."
-  :package-version '(magit . "2.12.0")
-  :group 'magit-commands
-  :type '(repeat
-          (list (symbol :tag "Command") ; It might not be fboundp yet.
-                (choice (const  :tag "for all prompts" nil)
-                        (regexp :tag "for prompts matching regexp"))
-                (choice (const  :tag "offer other choices" nil)
-                        (const  :tag "require confirmation" ask)
-                        (const  :tag "use default without confirmation" t)))))
-
-(defconst magit--confirm-actions
-  '((const reverse)           (const discard)
-    (const rename)            (const resurrect)
-    (const untrack)           (const trash)
-    (const delete)            (const abort-rebase)
-    (const abort-merge)       (const merge-dirty)
-    (const drop-stashes)      (const reset-bisect)
-    (const kill-process)      (const delete-unmerged-branch)
-    (const delete-pr-branch)  (const remove-modules)
-    (const stage-all-changes) (const unstage-all-changes)
-    (const safe-with-wip)))
-
-(defcustom magit-no-confirm nil
-  "A list of symbols for actions Magit should not confirm, or t.
-
-Many potentially dangerous commands by default ask the user for
-confirmation.  Each of the below symbols stands for an action
-which, when invoked unintentionally or without being fully aware
-of the consequences, could lead to tears.  In many cases there
-are several commands that perform variations of a certain action,
-so we don't use the command names but more generic symbols.
-
-Applying changes:
-
-  `discard' Discarding one or more changes (i.e. hunks or the
-  complete diff for a file) loses that change, obviously.
-
-  `reverse' Reverting one or more changes can usually be undone
-  by reverting the reversion.
-
-  `stage-all-changes', `unstage-all-changes' When there are both
-  staged and unstaged changes, then un-/staging everything would
-  destroy that distinction.  Of course that also applies when
-  un-/staging a single change, but then less is lost and one does
-  that so often that having to confirm every time would be
-  unacceptable.
-
-Files:
-
-  `delete' When a file that isn't yet tracked by Git is deleted
-  then it is completely lost, not just the last changes.  Very
-  dangerous.
-
-  `trash' Instead of deleting a file it can also be move to the
-  system trash.  Obviously much less dangerous than deleting it.
-
-  Also see option `magit-delete-by-moving-to-trash'.
-
-  `resurrect' A deleted file can easily be resurrected by
-  \"deleting\" the deletion, which is done using the same command
-  that was used to delete the same file in the first place.
-
-  `untrack' Untracking a file can be undone by tracking it again.
-
-  `rename' Renaming a file can easily be undone.
-
-Sequences:
-
-  `reset-bisect' Aborting (known to Git as \"resetting\") a
-  bisect operation loses all information collected so far.
-
-  `abort-rebase' Aborting a rebase throws away all already
-  modified commits, but it's possible to restore those from the
-  reflog.
-
-  `abort-merge' Aborting a merge throws away all conflict
-  resolutions which has already been carried out by the user.
-
-  `merge-dirty' Merging with a dirty worktree can make it hard to
-  go back to the state before the merge was initiated.
-
-References:
-
-  `delete-unmerged-branch' Once a branch has been deleted it can
-  only be restored using low-level recovery tools provided by
-  Git.  And even then the reflog is gone.  The user always has
-  to confirm the deletion of a branch by accepting the default
-  choice (or selecting another branch), but when a branch has
-  not been merged yet, also make sure the user is aware of that.
-
-  `delete-pr-branch' When deleting a branch that was created from
-  a pull request and if no other branches still exist on that
-  remote, then `magit-branch-delete' offers to delete the remote
-  as well.  This should be safe because it only happens if no
-  other refs exist in the remotes namespace, and you can recreate
-  the remote if necessary.
-
-  `drop-stashes' Dropping a stash is dangerous because Git stores
-  stashes in the reflog.  Once a stash is removed, there is no
-  going back without using low-level recovery tools provided by
-  Git.  When a single stash is dropped, then the user always has
-  to confirm by accepting the default (or selecting another).
-  This action only concerns the deletion of multiple stashes at
-  once.
-
-Edit published history:
-
-  Without adding these symbols here, you will be warned before
-  editing commits that have already been pushed to one of the
-  branches listed in `magit-published-branches'.
-
-  `amend-published' Affects most commands that amend to \"HEAD\".
-
-  `rebase-published' Affects commands that perform interactive
-  rebases.  This includes commands from the commit popup that
-  modify a commit other than \"HEAD\", namely the various fixup
-  and squash variants.
-
-  `edit-published' Affects the commands `magit-edit-line-commit'
-  and `magit-diff-edit-hunk-commit'.  These two commands make
-  it quite easy to accidentally edit a published commit, so you
-  should think twice before configuring them not to ask for
-  confirmation.
-
-  To disable confirmation completely, add all three symbols here
-  or set `magit-published-branches' to nil.
-
-Removing modules:
-
-  `remove-modules' When you remove the working directory of a
-  module that does not contain uncommitted changes, then that is
-  safer than doing so when there are uncommitted changes and/or
-  when you also remove the gitdir.  Still, you don't want to do
-  that by accident.
-
-  `remove-dirty-modules' When you remove the working directory of
-  a module that contains uncommitted changes, then those changes
-  are gone for good.  It is better to go to the module, inspect
-  these changes and only if appropriate discard them manually.
-
-  `trash-module-gitdirs' When you remove the gitdir of a module,
-  then all unpushed changes are gone for good.  It is very easy
-  to forget that you have some unfinished work on an unpublished
-  feature branch or even in a stash.
-
-  Actually there are some safety precautions in place, that might
-  help you out if you make an unwise choice here, but don't count
-  on it.  In case of emergency, stay calm and check the stash and
-  the `trash-directory' for traces of lost work.
-
-Various:
-
-  `kill-process' There seldom is a reason to kill a process.
-
-Global settings:
-
-  Instead of adding all of the above symbols to the value of this
-  option you can also set it to the atom `t', which has the same
-  effect as adding all of the above symbols.  Doing that most
-  certainly is a bad idea, especially because other symbols might
-  be added in the future.  So even if you don't want to be asked
-  for confirmation for any of these actions, you are still better
-  of adding all of the respective symbols individually.
-
-  When `magit-wip-before-change-mode' is enabled then these actions
-  can fairly easily be undone: `discard', `reverse',
-  `stage-all-changes', and `unstage-all-changes'.  If and only if
-  this mode is enabled, then `safe-with-wip' has the same effect
-  as adding all of these symbols individually."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-essentials
-  :group 'magit-commands
-  :type `(choice (const :tag "Always require confirmation" nil)
-                 (const :tag "Never require confirmation" t)
-                 (set   :tag "Require confirmation except for"
-                        ;; `remove-dirty-modules' and
-                        ;; `trash-module-gitdirs' intentionally
-                        ;; omitted.
-                        ,@magit--confirm-actions)))
-
-(defcustom magit-slow-confirm '(drop-stashes)
-  "Whether to ask user \"y or n\" or \"yes or no\" questions.
-
-When this is nil, then `y-or-n-p' is used when the user has to
-confirm a potentially destructive action.  When this is t, then
-`yes-or-no-p' is used instead.  If this is a list of symbols
-identifying actions, then `yes-or-no-p' is used for those,
-`y-or-no-p' for all others.  The list of actions is the same as
-for `magit-no-confirm' (which see)."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-miscellaneous
-  :type `(choice (const :tag "Always ask \"yes or no\" questions" t)
-                 (const :tag "Always ask \"y or n\" questions" nil)
-                 (set   :tag "Ask \"yes or no\" questions only for"
-                        ,@magit--confirm-actions)))
-
-(defcustom magit-no-message nil
-  "A list of messages Magit should not display.
-
-Magit displays most echo area messages using `message', but a few
-are displayed using `magit-message' instead, which takes the same
-arguments as the former, FORMAT-STRING and ARGS.  `magit-message'
-forgoes printing a message if any member of this list is a prefix
-of the respective FORMAT-STRING.
-
-If Magit prints a message which causes you grief, then please
-first investigate whether there is another option which can be
-used to suppress it.  If that is not the case, then ask the Magit
-maintainers to start using `magit-message' instead of `message'
-in that case.  We are not proactively replacing all uses of
-`message' with `magit-message', just in case someone *might* find
-some of these messages useless.
-
-Messages which can currently be suppressed using this option are:
-* \"Turning on magit-auto-revert-mode...\""
-  :package-version '(magit . "2.8.0")
-  :group 'magit-miscellaneous
-  :type '(repeat string))
-
-(defcustom magit-ellipsis ?…
-  "Character used to abbreviate text.
-
-Currently this is used to abbreviate author names in the margin
-and in process buffers to elide `magit-git-global-arguments'."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-miscellaneous
-  :type 'character)
-
-(defcustom magit-update-other-window-delay 0.2
-  "Delay before automatically updating the other window.
-
-When moving around in certain buffers, then certain other
-buffers, which are being displayed in another window, may
-optionally be updated to display information about the
-section at point.
-
-When holding down a key to move by more than just one section,
-then that would update that buffer for each section on the way.
-To prevent that, updating the revision buffer is delayed, and
-this option controls for how long.  For optimal experience you
-might have to adjust this delay and/or the keyboard repeat rate
-and delay of your graphical environment or operating system."
-  :package-version '(magit . "2.3.0")
-  :group 'magit-miscellaneous
-  :type 'number)
-
-(defcustom magit-view-git-manual-method 'info
-  "How links to Git documentation are followed from Magit's Info manuals.
-
-`info'  Follow the link to the node in the `gitman' Info manual
-        as usual.  Unfortunately that manual is not installed by
-        default on some platforms, and when it is then the nodes
-        look worse than the actual manpages.
-
-`man'   View the respective man-page using the `man' package.
-
-`woman' View the respective man-page using the `woman' package."
-  :package-version '(magit . "2.9.0")
-  :group 'magit-miscellaneous
-  :type '(choice (const :tag "view info manual" info)
-                 (const :tag "view manpage using `man'" man)
-                 (const :tag "view manpage using `woman'" woman)))
-
-;;; User Input
-
-(defvar helm-completion-in-region-default-sort-fn)
-(defvar ivy-sort-functions-alist)
-
-(defvar magit-completing-read--silent-default nil)
-
-(defun magit-completing-read (prompt collection &optional
-                                     predicate require-match initial-input
-                                     hist def fallback)
-  "Read a choice in the minibuffer, or use the default choice.
-
-This is the function that Magit commands use when they need the
-user to select a single thing to act on.  The arguments have the
-same meaning as for `completing-read', except for FALLBACK, which
-is unique to this function and is described below.
-
-Instead of asking the user to choose from a list of possible
-candidates, this function may instead just return the default
-specified by DEF, with or without requiring user confirmation.
-Whether that is the case depends on PROMPT, `this-command' and
-`magit-dwim-selection'.  See the documentation of the latter for
-more information.
-
-If it does use the default without the user even having to
-confirm that, then `magit-completing-read--silent-default' is set
-to t, otherwise nil.
-
-If it does read a value in the minibuffer, then this function
-acts similarly to `completing-read', except for the following:
-
-- If REQUIRE-MATCH is nil and the user exits without a choice,
-  then nil is returned instead of an empty string.
-
-- If REQUIRE-MATCH is non-nil and the users exits without a
-  choice, an user-error is raised.
-
-- FALLBACK specifies a secondary default that is only used if
-  the primary default DEF is nil.  The secondary default is not
-  subject to `magit-dwim-selection' — if DEF is nil but FALLBACK
-  is not, then this function always asks the user to choose a
-  candidate, just as if both defaults were nil.
-
-- \": \" is appended to PROMPT.
-
-- PROMPT is modified to end with \" (default DEF|FALLBACK): \"
-  provided that DEF or FALLBACK is non-nil, that neither
-  `ivy-mode' nor `helm-mode' is enabled, and that
-  `magit-completing-read-function' is set to its default value of
-  `magit-builtin-completing-read'."
-  (setq magit-completing-read--silent-default nil)
-  (if-let ((dwim (and def
-                      (nth 2 (-first (pcase-lambda (`(,cmd ,re ,_))
-                                       (and (eq this-command cmd)
-                                            (or (not re)
-                                                (string-match-p re prompt))))
-                                     magit-dwim-selection)))))
-      (if (eq dwim 'ask)
-          (if (y-or-n-p (format "%s %s? " prompt def))
-              def
-            (user-error "Abort"))
-        (setq magit-completing-read--silent-default t)
-        def)
-    (unless def
-      (setq def fallback))
-    (let ((command this-command)
-          (reply (funcall magit-completing-read-function
-                          (concat prompt ": ")
-                          (if (and def (not (member def collection)))
-                              (cons def collection)
-                            collection)
-                          predicate
-                          require-match initial-input hist def)))
-      (setq this-command command)
-      (if (string= reply "")
-          (if require-match
-              (user-error "Nothing selected")
-            nil)
-        reply))))
-
-(defun magit--completion-table (collection)
-  (lambda (string pred action)
-    (if (eq action 'metadata)
-        '(metadata (display-sort-function . identity))
-      (complete-with-action action collection string pred))))
-
-(defun magit-builtin-completing-read
-  (prompt choices &optional predicate require-match initial-input hist def)
-  "Magit wrapper for standard `completing-read' function."
-  (unless (or (bound-and-true-p helm-mode)
-              (bound-and-true-p ivy-mode))
-    (setq prompt (magit-prompt-with-default prompt def))
-    (setq choices (magit--completion-table choices)))
-  (cl-letf (((symbol-function 'completion-pcm--all-completions)
-             #'magit-completion-pcm--all-completions))
-    (let ((ivy-sort-functions-alist nil))
-      (completing-read prompt choices
-                       predicate require-match
-                       initial-input hist def))))
-
-(defun magit-completing-read-multiple
-  (prompt choices &optional sep default hist keymap)
-  "Read multiple items from CHOICES, separated by SEP.
-
-Set up the `crm' variables needed to read multiple values with
-`read-from-minibuffer'.
-
-SEP is a regexp matching characters that can separate choices.
-When SEP is nil, it defaults to `crm-default-separator'.
-DEFAULT, HIST, and KEYMAP are passed to `read-from-minibuffer'.
-When KEYMAP is nil, it defaults to `crm-local-completion-map'.
-
-Unlike `completing-read-multiple', the return value is not split
-into a list."
-  (let* ((crm-separator (or sep crm-default-separator))
-         (crm-completion-table (magit--completion-table choices))
-         (choose-completion-string-functions
-          '(crm--choose-completion-string))
-         (minibuffer-completion-table #'crm--collection-fn)
-         (minibuffer-completion-confirm t)
-         (helm-completion-in-region-default-sort-fn nil)
-         (input
-          (cl-letf (((symbol-function 'completion-pcm--all-completions)
-                     #'magit-completion-pcm--all-completions))
-            (read-from-minibuffer
-             (concat prompt (and default (format " (%s)" default)) ": ")
-             nil (or keymap crm-local-completion-map)
-             nil hist default))))
-    (when (string-equal input "")
-      (or (setq input default)
-          (user-error "Nothing selected")))
-    input))
-
-(defun magit-completing-read-multiple*
-    (prompt table &optional predicate require-match initial-input
-	    hist def inherit-input-method)
-  "Read multiple strings in the minibuffer, with completion.
-Like `completing-read-multiple' but don't mess with order of
-TABLE.  Also bind `helm-completion-in-region-default-sort-fn'
-to nil."
-  (unwind-protect
-      (cl-letf (((symbol-function 'completion-pcm--all-completions)
-                 #'magit-completion-pcm--all-completions))
-        (add-hook 'choose-completion-string-functions
-                  'crm--choose-completion-string)
-        (let* ((minibuffer-completion-table #'crm--collection-fn)
-               (minibuffer-completion-predicate predicate)
-               ;; see completing_read in src/minibuf.c
-               (minibuffer-completion-confirm
-                (unless (eq require-match t) require-match))
-               (crm-completion-table (magit--completion-table table))
-               (map (if require-match
-                        crm-local-must-match-map
-                      crm-local-completion-map))
-               (helm-completion-in-region-default-sort-fn nil)
-               ;; If the user enters empty input, `read-from-minibuffer'
-               ;; returns the empty string, not DEF.
-               (input (read-from-minibuffer
-                       prompt initial-input map
-                       nil hist def inherit-input-method)))
-          (and def (string-equal input "") (setq input def))
-          ;; Remove empty strings in the list of read strings.
-          (split-string input crm-separator t)))
-    (remove-hook 'choose-completion-string-functions
-                 'crm--choose-completion-string)))
-
-(defun magit-ido-completing-read
-  (prompt choices &optional predicate require-match initial-input hist def)
-  "Ido-based `completing-read' almost-replacement.
-
-Unfortunately `ido-completing-read' is not suitable as a
-drop-in replacement for `completing-read', instead we use
-`ido-completing-read+' from the third-party package by the
-same name."
-  (if (require 'ido-completing-read+ nil t)
-      (ido-completing-read+ prompt choices predicate require-match
-                            initial-input hist def)
-    (display-warning 'magit "ido-completing-read+ is not installed
-
-To use Ido completion with Magit you need to install the
-third-party `ido-completing-read+' packages.  Falling
-back to built-in `completing-read' for now." :error)
-    (magit-builtin-completing-read prompt choices predicate require-match
-                                   initial-input hist def)))
-
-(defun magit-prompt-with-default (prompt def)
-  (if (and def (> (length prompt) 2)
-           (string-equal ": " (substring prompt -2)))
-      (format "%s (default %s): " (substring prompt 0 -2) def)
-    prompt))
-
-(defvar magit-minibuffer-local-ns-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map minibuffer-local-map)
-    (define-key map "\s" 'magit-whitespace-disallowed)
-    (define-key map "\t" 'magit-whitespace-disallowed)
-    map))
-
-(defun magit-whitespace-disallowed ()
-  "Beep to tell the user that whitespace is not allowed."
-  (interactive)
-  (ding)
-  (message "Whitespace isn't allowed here")
-  (setq defining-kbd-macro nil)
-  (force-mode-line-update))
-
-(defun magit-read-string (prompt &optional initial-input history default-value
-                                 inherit-input-method no-whitespace)
-  "Read a string from the minibuffer, prompting with string PROMPT.
-
-This is similar to `read-string', but
-* empty input is only allowed if DEFAULT-VALUE is non-nil in
-  which case that is returned,
-* whitespace is not allowed and leading and trailing whitespace is
-  removed automatically if NO-WHITESPACE is non-nil,
-* \": \" is appended to PROMPT, and
-* an invalid DEFAULT-VALUE is silently ignored."
-  (when default-value
-    (when (consp default-value)
-      (setq default-value (car default-value)))
-    (unless (stringp default-value)
-      (setq default-value nil)))
-  (let* ((minibuffer-completion-table nil)
-         (val (read-from-minibuffer
-               (magit-prompt-with-default (concat prompt ": ") default-value)
-               initial-input (and no-whitespace magit-minibuffer-local-ns-map)
-               nil history default-value inherit-input-method))
-         (trim (lambda (regexp string)
-                 (save-match-data
-                   (if (string-match regexp string)
-                       (replace-match "" t t string)
-                     string)))))
-    (when (and (string= val "") default-value)
-      (setq val default-value))
-    (when no-whitespace
-      (setq val (funcall trim "\\`\\(?:[ \t\n\r]+\\)"
-                         (funcall trim "\\(?:[ \t\n\r]+\\)\\'" val))))
-    (cond ((string= val "")
-           (user-error "Need non-empty input"))
-          ((and no-whitespace (string-match-p "[\s\t\n]" val))
-           (user-error "Input contains whitespace"))
-          (t val))))
-
-(defun magit-read-string-ns (prompt &optional initial-input history
-                                    default-value inherit-input-method)
-  "Call `magit-read-string' with non-nil NO-WHITESPACE."
-  (magit-read-string prompt initial-input history default-value
-                     inherit-input-method t))
-
-(defmacro magit-read-char-case (prompt verbose &rest clauses)
-  (declare (indent 2)
-           (debug (form form &rest (characterp form body))))
-  `(pcase (read-char-choice
-           (concat ,prompt
-                   ,(concat (mapconcat 'cadr clauses ", ")
-                            (and verbose ", or [C-g] to abort") " "))
-           ',(mapcar 'car clauses))
-     ,@(--map `(,(car it) ,@(cddr it)) clauses)))
-
-(defun magit-y-or-n-p (prompt &optional action)
-  "Ask user a \"y or n\" or a \"yes or no\" question using PROMPT.
-Which kind of question is used depends on whether
-ACTION is a member of option `magit-slow-confirm'."
-  (if (or (eq magit-slow-confirm t)
-          (and action (member action magit-slow-confirm)))
-      (yes-or-no-p prompt)
-    (y-or-n-p prompt)))
-
-(defvar magit--no-confirm-alist
-  '((safe-with-wip magit-wip-before-change-mode
-                   discard reverse stage-all-changes unstage-all-changes)))
-
-(cl-defun magit-confirm (action &optional prompt prompt-n noabort
-                                (items nil sitems))
-  (declare (indent defun))
-  (setq prompt-n (format (concat (or prompt-n prompt) "? ") (length items)))
-  (setq prompt   (format (concat (or prompt (magit-confirm-make-prompt action))
-                                 "? ")
-                         (car items)))
-  (or (cond ((and (not (eq action t))
-                  (or (eq magit-no-confirm t)
-                      (memq action magit-no-confirm)
-                      (cl-member-if (pcase-lambda (`(,key ,var . ,sub))
-                                      (and (memq key magit-no-confirm)
-                                           (memq action sub)
-                                           (or (not var)
-                                               (and (boundp var)
-                                                    (symbol-value var)))))
-                                    magit--no-confirm-alist)))
-             (or (not sitems) items))
-            ((not sitems)
-             (magit-y-or-n-p prompt action))
-            ((= (length items) 1)
-             (and (magit-y-or-n-p prompt action) items))
-            ((> (length items) 1)
-             (and (magit-y-or-n-p (concat (mapconcat #'identity items "\n")
-                                          "\n\n" prompt-n)
-                                  action)
-                  items)))
-      (if noabort nil (user-error "Abort"))))
-
-(defun magit-confirm-files (action files &optional prompt)
-  (when files
-    (unless prompt
-      (setq prompt (magit-confirm-make-prompt action)))
-    (magit-confirm action
-      (concat prompt " %s")
-      (concat prompt " %i files")
-      nil files)))
-
-(defun magit-confirm-make-prompt (action)
-  (let ((prompt (symbol-name action)))
-    (replace-regexp-in-string
-     "-" " " (concat (upcase (substring prompt 0 1)) (substring prompt 1)))))
-
-(defun magit-read-number-string (prompt &optional default)
-  "Like `read-number' but return value is a string.
-DEFAULT may be a number or a numeric string."
-  (number-to-string
-   (read-number prompt (if (stringp default)
-                           (string-to-number default)
-                         default))))
-
-;;; Debug Utilities
-
-;;;###autoload
-(defun magit-emacs-Q-command ()
-  "Show a shell command that runs an uncustomized Emacs with only Magit loaded.
-See info node `(magit)Debugging Tools' for more information."
-  (interactive)
-  (let ((cmd (mapconcat
-              #'shell-quote-argument
-              `(,(concat invocation-directory invocation-name)
-                "-Q" "--eval" "(setq debug-on-error t)"
-                ,@(cl-mapcan
-                   (lambda (dir) (list "-L" dir))
-                   (delete-dups
-                    (cl-mapcan
-                     (lambda (lib)
-                       (let ((path (locate-library lib)))
-                         (cond
-                          (path
-                           (list (file-name-directory path)))
-                          ((not (member lib '("lv" "transient")))
-                           (error "Cannot find mandatory dependency %s" lib)))))
-                     '(;; Like `LOAD_PATH' in `default.mk'.
-                       "dash"
-                       "ghub"
-                       "graphql"
-                       "lv"
-                       "magit-popup"
-                       "transient"
-                       "treepy"
-                       "with-editor"
-                       ;; Obviously `magit' itself is needed too.
-                       "magit"
-                       ;; While this is part of the Magit repository,
-                       ;; it is distributed as a separate package.
-                       "git-commit"
-                       ;; Even though `async' is a dependency of the
-                       ;; `magit' package, it is not required here.
-                       ))))
-                ;; Avoid Emacs bug#16406 by using full path.
-                "-l" ,(file-name-sans-extension (locate-library "magit")))
-              " ")))
-    (message "Uncustomized Magit command saved to kill-ring, %s"
-             "please run it in a terminal.")
-    (kill-new cmd)))
-
-;;; Text Utilities
-
-(defmacro magit-bind-match-strings (varlist string &rest body)
-  "Bind variables to submatches according to VARLIST then evaluate BODY.
-Bind the symbols in VARLIST to submatches of the current match
-data, starting with 1 and incrementing by 1 for each symbol.  If
-the last match was against a string, then that has to be provided
-as STRING."
-  (declare (indent 2) (debug (listp form body)))
-  (let ((s (cl-gensym "string"))
-        (i 0))
-    `(let ((,s ,string))
-       (let ,(save-match-data
-               (--map (list it (list 'match-string (cl-incf i) s)) varlist))
-         ,@body))))
-
-(defun magit-delete-line ()
-  "Delete the rest of the current line."
-  (delete-region (point) (1+ (line-end-position))))
-
-(defun magit-delete-match (&optional num)
-  "Delete text matched by last search.
-If optional NUM is specified, only delete that subexpression."
-  (delete-region (match-beginning (or num 0))
-                 (match-end (or num 0))))
-
-(defun magit-file-line (file)
-  "Return the first line of FILE as a string."
-  (when (file-regular-p file)
-    (with-temp-buffer
-      (insert-file-contents file)
-      (buffer-substring-no-properties (point-min)
-                                      (line-end-position)))))
-
-(defun magit-file-lines (file &optional keep-empty-lines)
-  "Return a list of strings containing one element per line in FILE.
-Unless optional argument KEEP-EMPTY-LINES is t, trim all empty lines."
-  (when (file-regular-p file)
-    (with-temp-buffer
-      (insert-file-contents file)
-      (split-string (buffer-string) "\n" (not keep-empty-lines)))))
-
-(defun magit-set-header-line-format (string)
-  "Set the header-line using STRING.
-Propertize STRING with the `magit-header-line' face if no face is
-present, and pad the left and right sides of STRING equally such
-that it will align with the text area."
-  (let* ((header-line
-          (concat (propertize " "
-                              'display
-                              '(space :align-to 0))
-                  string
-                  (propertize
-                   " "
-                   'display
-                   `(space :width (+ left-fringe
-                                     left-margin
-                                     ,@(and (eq (car (window-current-scroll-bars))
-                                                'left)
-                                            '(scroll-bar)))))))
-         (len (length header-line)))
-    (setq header-line-format
-          (if (text-property-not-all 0 len 'face nil header-line)
-              (let ((face (get-text-property 0 'face string)))
-                (when (and (atom face)
-                           (magit-face-property-all face string))
-                  (add-face-text-property 0 1 face nil header-line)
-                  (add-face-text-property (1- len) len face nil header-line))
-                header-line)
-            (propertize header-line
-                        'face
-                        'magit-header-line)))))
-
-(defun magit-face-property-all (face string)
-  "Return non-nil if FACE is present in all of STRING."
-  (cl-loop for pos = 0 then (next-single-property-change pos 'face string)
-           unless pos
-             return t
-           for current = (get-text-property pos 'face string)
-           unless (if (consp current)
-                      (memq face current)
-                    (eq face current))
-             return nil))
-
-(defun magit--format-spec (format specification)
-  "Like `format-spec' but preserve text properties in SPECIFICATION."
-  (with-temp-buffer
-    (insert format)
-    (goto-char (point-min))
-    (while (search-forward "%" nil t)
-      (cond
-       ;; Quoted percent sign.
-       ((eq (char-after) ?%)
-        (delete-char 1))
-       ;; Valid format spec.
-       ((looking-at "\\([-0-9.]*\\)\\([a-zA-Z]\\)")
-        (let* ((num (match-string 1))
-               (spec (string-to-char (match-string 2)))
-               (val (assq spec specification)))
-          (unless val
-            (error "Invalid format character: `%%%c'" spec))
-          (setq val (cdr val))
-          ;; Pad result to desired length.
-          (let ((text (format (concat "%" num "s") val)))
-            ;; Insert first, to preserve text properties.
-            (if (next-property-change 0 (concat " " text))
-                ;; If the inserted text has properties, then preserve those.
-                (insert text)
-              ;; Otherwise preserve FORMAT's properties, like `format-spec'.
-              (insert-and-inherit text))
-            ;; Delete the specifier body.
-            (delete-region (+ (match-beginning 0) (length text))
-                           (+ (match-end 0) (length text)))
-            ;; Delete the percent sign.
-            (delete-region (1- (match-beginning 0)) (match-beginning 0)))))
-       ;; Signal an error on bogus format strings.
-       (t
-        (error "Invalid format string"))))
-    (buffer-string)))
-
-;;; Missing from Emacs
-
-(defun magit-kill-this-buffer ()
-  "Kill the current buffer."
-  (interactive)
-  (kill-buffer (current-buffer)))
-
-;;; Kludges for Emacs Bugs
-
-(defun magit-file-accessible-directory-p (filename)
-  "Like `file-accessible-directory-p' but work around an Apple bug.
-See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=21573#17
-and https://github.com/magit/magit/issues/2295."
-  (and (file-directory-p filename)
-       (file-accessible-directory-p filename)))
-
-(when (version<= "25.1" emacs-version)
-  (with-eval-after-load 'vc-git
-    (defun vc-git-conflicted-files (directory)
-      "Return the list of files with conflicts in DIRECTORY."
-      (let* ((status
-              (vc-git--run-command-string directory "diff-files"
-                                          "--name-status"))
-             (lines (when status (split-string status "\n" 'omit-nulls)))
-             files)
-        (dolist (line lines files)
-          (when (string-match "\\([ MADRCU?!]\\)[ \t]+\\(.+\\)" line)
-            (let ((state (match-string 1 line))
-                  (file (match-string 2 line)))
-              (when (equal state "U")
-                (push (expand-file-name file directory) files)))))))))
-
-(when (< emacs-major-version 27)
-  (defun vc-git--call@bug21559 (fn buffer command &rest args)
-    "Backport https://debbugs.gnu.org/cgi/bugreport.cgi?bug=21559."
-    (let ((process-environment process-environment))
-      (when revert-buffer-in-progress-p
-        (push "GIT_OPTIONAL_LOCKS=0" process-environment))
-      (apply fn buffer command args)))
-  (advice-add 'vc-git--call :around 'vc-git--call@bug21559)
-
-  (defun vc-git-command@bug21559
-      (fn buffer okstatus file-or-list &rest flags)
-    "Backport https://debbugs.gnu.org/cgi/bugreport.cgi?bug=21559."
-    (let ((process-environment process-environment))
-      (when revert-buffer-in-progress-p
-        (push "GIT_OPTIONAL_LOCKS=0" process-environment))
-      (apply fn buffer okstatus file-or-list flags)))
-  (advice-add 'vc-git-command :around 'vc-git-command@bug21559)
-
-  (defun auto-revert-handler@bug21559 (fn)
-    "Backport https://debbugs.gnu.org/cgi/bugreport.cgi?bug=21559."
-    (let ((revert-buffer-in-progress-p t))
-      (funcall fn)))
-  (advice-add 'auto-revert-handler :around 'auto-revert-handler@bug21559)
-  )
-
-;; `completion-pcm--all-completions' reverses the completion list.  To
-;; preserve the order of our pre-sorted completions, we'll temporarily
-;; override it with the function below.  bug#24676
-(defun magit-completion-pcm--all-completions (prefix pattern table pred)
-  (if (completion-pcm--pattern-trivial-p pattern)
-      (all-completions (concat prefix (car pattern)) table pred)
-    (let* ((regex (completion-pcm--pattern->regex pattern))
-           (case-fold-search completion-ignore-case)
-           (completion-regexp-list (cons regex completion-regexp-list))
-           (compl (all-completions
-                   (concat prefix
-                           (if (stringp (car pattern)) (car pattern) ""))
-                   table pred)))
-      (if (not (functionp table))
-          compl
-        (let ((poss ()))
-          (dolist (c compl)
-            (when (string-match-p regex c) (push c poss)))
-          ;; This `nreverse' call is the only code change made to the
-          ;; `completion-pcm--all-completions' that shipped with Emacs 25.1.
-          (nreverse poss))))))
-
-;;; Kludges for Incompatible Modes
-
-(defvar whitespace-mode)
-
-(defun whitespace-dont-turn-on-in-magit-mode (fn)
-  "Prevent `whitespace-mode' from being turned on in Magit buffers.
-
-Because `whitespace-mode' uses font-lock and Magit does not, they
-are not compatible.  Therefore you cannot turn on that minor-mode
-in Magit buffers.  If you try to enable it anyway, then this
-advice prevents that.
-
-If the reason the attempt is made is that `global-whitespace-mode'
-is enabled, then that is done silently.  However if you call the local
-minor-mode interactively, then that results in an error.
-
-See `magit-diff-paint-whitespace' for an alternative."
-  (if (not (derived-mode-p 'magit-mode))
-      (funcall fn)
-    (setq whitespace-mode nil)
-    (when (eq this-command 'whitespace-mode)
-      (user-error
-       "Whitespace mode NOT enabled because it is not compatible with Magit"))))
-
-(advice-add 'whitespace-turn-on :around
-            'whitespace-dont-turn-on-in-magit-mode)
-
-;;; Kludges for Custom
-
-(defun magit-custom-initialize-reset (symbol exp)
-  "Initialize SYMBOL based on EXP.
-Set the symbol, using `set-default' (unlike
-`custom-initialize-reset' which uses the `:set' function if any.)
-The value is either the symbol's current value
- (as obtained using the `:get' function), if any,
-or the value in the symbol's `saved-value' property if any,
-or (last of all) the value of EXP."
-  (set-default-toplevel-value
-   symbol
-   (condition-case nil
-       (let ((def (default-toplevel-value symbol))
-             (getter (get symbol 'custom-get)))
-         (if getter (funcall getter symbol) def))
-     (error
-      (eval (let ((sv (get symbol 'saved-value)))
-              (if sv (car sv) exp)))))))
-
-(defun magit-hook-custom-get (symbol)
-  (if (symbol-file symbol 'defvar)
-      (default-toplevel-value symbol)
-    ;;
-    ;; Called by `custom-initialize-reset' on behalf of `symbol's
-    ;; `defcustom', which is being evaluated for the first time to
-    ;; set the initial value, but there's already a default value,
-    ;; which most likely was established by one or more `add-hook'
-    ;; calls.
-    ;;
-    ;; We combine the `standard-value' and the current value, while
-    ;; preserving the order established by `:options', and return
-    ;; the result of that to be used as the "initial" default value.
-    ;;
-    (let ((standard (eval (car (get symbol 'standard-value))))
-          (current (default-toplevel-value symbol))
-          (value nil))
-      (dolist (fn (get symbol 'custom-options))
-        (when (or (memq fn standard)
-                  (memq fn current))
-          (push fn value)))
-      (dolist (fn current)
-        (unless (memq fn value)
-          (push fn value)))
-      (nreverse value))))
-
-;;; Kludges for Info Manuals
-
-;;;###autoload
-(defun Info-follow-nearest-node--magit-gitman (fn &optional fork)
-  (if magit-view-git-manual-method
-      (let ((node (Info-get-token
-                   (point) "\\*note[ \n\t]+"
-                   "\\*note[ \n\t]+\\([^:]*\\):\\(:\\|[ \n\t]*(\\)?")))
-        (if (and node (string-match "^(gitman)\\(.+\\)" node))
-            (pcase magit-view-git-manual-method
-              (`man   (require 'man)
-                      (man (match-string 1 node)))
-              (`woman (require 'woman)
-                      (woman (match-string 1 node)))
-              (_
-               (user-error "Invalid value for `magit-view-git-documentation'")))
-          (funcall fn fork)))
-    (funcall fn fork)))
-
-;;;###autoload
-(advice-add 'Info-follow-nearest-node :around
-            'Info-follow-nearest-node--magit-gitman)
-
-;;;###autoload
-(defun org-man-export--magit-gitman (fn link description format)
-  (if (and (eq format 'texinfo)
-           (string-match-p "\\`git" link))
-      (replace-regexp-in-string "%s" link "
-@ifinfo
-@ref{%s,,,gitman,}.
-@end ifinfo
-@ifhtml
-@html
-the <a href=\"http://git-scm.com/docs/%s\">%s(1)</a> manpage.
-@end html
-@end ifhtml
-@iftex
-the %s(1) manpage.
-@end iftex
-")
-    (funcall fn link description format)))
-
-;;;###autoload
-(advice-add 'org-man-export :around
-            'org-man-export--magit-gitman)
-
-;;; Miscellaneous
-
-(defun magit-message (format-string &rest args)
-  "Display a message at the bottom of the screen, or not.
-Like `message', except that if the users configured option
-`magit-no-message' to prevent the message corresponding to
-FORMAT-STRING to be displayed, then don't."
-  (unless (--first (string-prefix-p it format-string) magit-no-message)
-    (apply #'message format-string args)))
-
-(defun magit-msg (format-string &rest args)
-  "Display a message at the bottom of the screen, but don't log it.
-Like `message', except that `message-log-max' is bound to nil."
-  (let ((message-log-max nil))
-    (apply #'message format-string args)))
-
-;;; _
-(provide 'magit-utils)
-;;; magit-utils.el ends here
diff --git a/elpa/magit-20181116.1412/magit-utils.elc b/elpa/magit-20181116.1412/magit-utils.elc
deleted file mode 100644
index de306c1..0000000
--- a/elpa/magit-20181116.1412/magit-utils.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-wip.el b/elpa/magit-20181116.1412/magit-wip.el
deleted file mode 100644
index 10c085b..0000000
--- a/elpa/magit-20181116.1412/magit-wip.el
+++ /dev/null
@@ -1,432 +0,0 @@
-;;; magit-wip.el --- commit snapshots to work-in-progress refs  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library defines tree global modes which automatically commit
-;; snapshots to branch-specific work-in-progress refs before and after
-;; making changes, and two commands which can be used to do so on
-;; demand.
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'magit-core)
-(require 'magit-log)
-
-;;; Options
-
-(defgroup magit-wip nil
-  "Automatically commit to work-in-progress refs."
-  :link '(info-link "(magit)Wip Modes")
-  :group 'magit-modes
-  :group 'magit-essentials)
-
-(defgroup magit-wip-legacy nil
-  "It is better to not use these modes individually."
-  :link '(info-link "(magit)Legacy Wip Modes")
-  :group 'magit-wip)
-
-(defcustom magit-wip-mode-lighter " Wip"
-  "Lighter for Magit-Wip mode."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-wip
-  :type 'string)
-
-(defcustom magit-wip-after-save-local-mode-lighter ""
-  "Lighter for Magit-Wip-After-Save-Local mode."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-wip-legacy
-  :type 'string)
-
-(defcustom magit-wip-after-apply-mode-lighter ""
-  "Lighter for Magit-Wip-After-Apply mode."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-wip-legacy
-  :type 'string)
-
-(defcustom magit-wip-before-change-mode-lighter ""
-  "Lighter for Magit-Wip-Before-Change mode."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-wip-legacy
-  :type 'string)
-
-(defcustom magit-wip-initial-backup-mode-lighter ""
-  "Lighter for Magit-Wip-Initial Backup mode."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-wip-legacy
-  :type 'string)
-
-(defcustom magit-wip-merge-branch nil
-  "Whether to merge the current branch into its wip ref.
-
-If non-nil and the current branch has new commits, then it is
-merged into the wip ref before creating a new wip commit.  This
-makes it easier to inspect wip history and the wip commits are
-never garbage collected.
-
-If nil and the current branch has new commits, then the wip ref
-is reset to the tip of the branch before creating a new wip
-commit.  With this setting wip commits are eventually garbage
-collected.  This is currently the default."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-wip
-  :type 'boolean)
-
-(defcustom magit-wip-namespace "refs/wip/"
-  "Namespace used for work-in-progress refs.
-The wip refs are named \"<namespace/>index/<branchref>\"
-and \"<namespace/>wtree/<branchref>\".  When snapshots
-are created while the `HEAD' is detached then \"HEAD\"
-is used as `branch-ref'."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-wip
-  :type 'string)
-
-;;; Modes
-
-(define-minor-mode magit-wip-mode
-  "Save uncommitted changes to work-in-progress refs.
-
-Whenever appropriate (i.e. when dataloss would be a possibility
-otherwise) this mode causes uncommitted changes to be committed
-to dedicated work-in-progress refs.
-
-For historic reasons this mode is implemented on top of four
-other `magit-wip-*' modes, which can also be used individually,
-if you want finer control over when the wip refs are updated;
-but that is discouraged."
-  :package-version '(magit . "2.90.0")
-  :lighter magit-wip-mode-lighter
-  :global t
-  (let ((arg (if magit-wip-mode 1 -1)))
-    (magit-wip-after-save-mode arg)
-    (magit-wip-after-apply-mode arg)
-    (magit-wip-before-change-mode arg)
-    (magit-wip-initial-backup-mode arg)))
-
-(define-minor-mode magit-wip-after-save-local-mode
-  "After saving, also commit to a worktree work-in-progress ref.
-
-After saving the current file-visiting buffer this mode also
-commits the changes to the worktree work-in-progress ref for
-the current branch.
-
-This mode should be enabled globally by turning on the globalized
-variant `magit-wip-after-save-mode'."
-  :package-version '(magit . "2.1.0")
-  :lighter magit-wip-after-save-local-mode-lighter
-  (if magit-wip-after-save-local-mode
-      (if (and buffer-file-name (magit-inside-worktree-p t))
-          (add-hook 'after-save-hook 'magit-wip-commit-buffer-file t t)
-        (setq magit-wip-after-save-local-mode nil)
-        (user-error "Need a worktree and a file"))
-    (remove-hook 'after-save-hook 'magit-wip-commit-buffer-file t)))
-
-(defun magit-wip-after-save-local-mode-turn-on ()
-  (and buffer-file-name
-       (magit-inside-worktree-p t)
-       (magit-file-tracked-p buffer-file-name)
-       (magit-wip-after-save-local-mode)))
-
-;;;###autoload
-(define-globalized-minor-mode magit-wip-after-save-mode
-  magit-wip-after-save-local-mode magit-wip-after-save-local-mode-turn-on
-  :package-version '(magit . "2.1.0")
-  :group 'magit-wip)
-
-(defun magit-wip-commit-buffer-file (&optional msg)
-  "Commit visited file to a worktree work-in-progress ref.
-
-Also see `magit-wip-after-save-mode' which calls this function
-automatically whenever a buffer visiting a tracked file is saved."
-  (interactive)
-  (--when-let (magit-wip-get-ref)
-    (magit-with-toplevel
-      (let ((file (file-relative-name buffer-file-name)))
-        (magit-wip-commit-worktree
-         it (list file)
-         (format (cond (msg)
-                       ((called-interactively-p 'any)
-                        "wip-save %s after save")
-                       (t
-                        "autosave %s after save"))
-                 file))))))
-
-;;;###autoload
-(define-minor-mode magit-wip-after-apply-mode
-  "Commit to work-in-progress refs.
-
-After applying a change using any \"apply variant\"
-command (apply, stage, unstage, discard, and reverse) commit the
-affected files to the current wip refs.  For each branch there
-may be two wip refs; one contains snapshots of the files as found
-in the worktree and the other contains snapshots of the entries
-in the index."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-wip
-  :lighter magit-wip-after-apply-mode-lighter
-  :global t)
-
-(defun magit-wip-commit-after-apply (&optional files msg)
-  (when magit-wip-after-apply-mode
-    (magit-wip-commit files msg)))
-
-;;;###autoload
-(define-minor-mode magit-wip-before-change-mode
-  "Commit to work-in-progress refs before certain destructive changes.
-
-Before invoking a revert command or an \"apply variant\"
-command (apply, stage, unstage, discard, and reverse) commit the
-affected tracked files to the current wip refs.  For each branch
-there may be two wip refs; one contains snapshots of the files
-as found in the worktree and the other contains snapshots of the
-entries in the index.
-
-Only changes to files which could potentially be affected by the
-command which is about to be called are committed."
-  :package-version '(magit . "2.1.0")
-  :group 'magit-wip
-  :lighter magit-wip-before-change-mode-lighter
-  :global t)
-
-(defun magit-wip-commit-before-change (&optional files msg)
-  (when magit-wip-before-change-mode
-    (magit-with-toplevel
-      (magit-wip-commit files msg))))
-
-(define-minor-mode magit-wip-initial-backup-mode
-  "Before saving a buffer for the first time, commit to a wip ref."
-  :package-version '(magit . "2.90.0")
-  :group 'magit-wip
-  :lighter magit-wip-initial-backup-mode-lighter
-  :global t
-  (if magit-wip-initial-backup-mode
-      (add-hook  'before-save-hook 'magit-wip-commit-initial-backup)
-    (remove-hook 'before-save-hook 'magit-wip-commit-initial-backup)))
-
-(defvar-local magit-wip-buffer-backed-up nil)
-(put 'magit-wip-buffer-backed-up 'permanent-local t)
-
-;;;###autoload
-(defun magit-wip-commit-initial-backup ()
-  "Before saving, commit current file to a worktree wip ref.
-
-The user has to add this function to `before-save-hook'.
-
-Commit the current state of the visited file before saving the
-current buffer to that file.  This backs up the same version of
-the file as `backup-buffer' would, but stores the backup in the
-worktree wip ref, which is also used by the various Magit Wip
-modes, instead of in a backup file as `backup-buffer' would.
-
-This function ignores the variables that affect `backup-buffer'
-and can be used along-side that function, which is recommended
-because this function only backs up files that are tracked in
-a Git repository."
-  (when (and (not magit-wip-buffer-backed-up)
-             buffer-file-name
-             (magit-inside-worktree-p t)
-             (magit-file-tracked-p buffer-file-name))
-    (let ((magit-save-repository-buffers nil))
-      (magit-wip-commit-buffer-file "autosave %s before save"))
-    (setq magit-wip-buffer-backed-up t)))
-
-;;; Core
-
-(defun magit-wip-commit (&optional files msg)
-  "Commit all tracked files to the work-in-progress refs.
-
-Interactively, commit all changes to all tracked files using
-a generic commit message.  With a prefix-argument the commit
-message is read in the minibuffer.
-
-Non-interactively, only commit changes to FILES using MSG as
-commit message."
-  (interactive (list nil (if current-prefix-arg
-                             (magit-read-string "Wip commit message")
-                           "wip-save tracked files")))
-  (--when-let (magit-wip-get-ref)
-    (magit-wip-commit-index it files msg)
-    (magit-wip-commit-worktree it files msg)))
-
-(defun magit-wip-commit-index (ref files msg)
-  (let* ((wipref (magit--wip-index-ref ref))
-         (parent (magit-wip-get-parent ref wipref))
-         (tree   (magit-git-string "write-tree")))
-    (magit-wip-update-wipref ref wipref tree parent files msg "index")))
-
-(defun magit-wip-commit-worktree (ref files msg)
-  (let* ((wipref (magit--wip-wtree-ref ref))
-         (parent (magit-wip-get-parent ref wipref))
-         (tree (magit-with-temp-index parent "--reset"
-                 (if files
-                     (magit-call-git "add" "--" files)
-                   (magit-with-toplevel
-                     (magit-call-git "add" "-u" ".")))
-                 (magit-git-string "write-tree"))))
-    (magit-wip-update-wipref ref wipref tree parent files msg "worktree")))
-
-(defun magit-wip-update-wipref (ref wipref tree parent files msg start-msg)
-  (cond
-   ((and (not (equal parent wipref))
-         (or (not magit-wip-merge-branch)
-             (not (magit-rev-verify wipref))))
-    (setq start-msg (concat "start autosaving " start-msg))
-    (magit-update-ref wipref start-msg
-                      (magit-git-string "commit-tree" "--no-gpg-sign"
-                                        "-p" parent "-m" start-msg
-                                        (concat parent "^{tree}")))
-    (setq parent wipref))
-   ((and magit-wip-merge-branch
-         (or (not (magit-rev-ancestor-p ref wipref))
-             (not (magit-rev-ancestor-p
-                   (concat (magit-git-string "log" "--format=%H"
-                                             "-1" "--merges" wipref)
-                           "^2")
-                   ref))))
-    (setq start-msg (format "merge %s into %s" ref start-msg))
-    (magit-update-ref wipref start-msg
-                      (magit-git-string "commit-tree" "--no-gpg-sign"
-                                        "-p" wipref "-p" ref
-                                        "-m" start-msg
-                                        (concat ref "^{tree}")))
-    (setq parent wipref)))
-  (when (magit-git-failure "diff-tree" "--quiet" parent tree "--" files)
-    (unless (and msg (not (= (aref msg 0) ?\s)))
-      (let ((len (length files)))
-        (setq msg (concat
-                   (cond ((= len 0) "autosave tracked files")
-                         ((> len 1) (format "autosave %s files" len))
-                         (t (concat "autosave "
-                                    (file-relative-name (car files)
-                                                        (magit-toplevel)))))
-                   msg))))
-    (magit-update-ref wipref msg
-                      (magit-git-string "commit-tree" "--no-gpg-sign"
-                                        "-p" parent "-m" msg tree))))
-
-(defun magit-wip-get-ref ()
-  (let ((ref (or (magit-git-string "symbolic-ref" "HEAD") "HEAD")))
-    (and (magit-rev-verify ref)
-         ref)))
-
-(defun magit-wip-get-parent (ref wipref)
-  (if (and (magit-rev-verify wipref)
-           (equal (magit-git-string "merge-base" wipref ref)
-                  (magit-rev-verify ref)))
-      wipref
-    ref))
-
-(defun magit--wip-index-ref (&optional ref)
-  (magit--wip-ref "index/" ref))
-
-(defun magit--wip-wtree-ref (&optional ref)
-  (magit--wip-ref "wtree/" ref))
-
-(defun magit--wip-ref (namespace &optional ref)
-  (concat magit-wip-namespace namespace
-          (or (and ref (string-prefix-p "refs/" ref) ref)
-              (when-let ((branch (or ref (magit-get-current-branch))))
-                (concat "refs/heads/" branch))
-              "HEAD")))
-
-(defun magit-wip-maybe-add-commit-hook ()
-  (when (and magit-wip-merge-branch
-             (magit-wip-any-enabled-p))
-    (add-hook 'git-commit-post-finish-hook 'magit-wip-commit nil t)))
-
-(defun magit-wip-any-enabled-p ()
-  (or magit-wip-mode
-      magit-wip-after-save-local-mode
-      magit-wip-after-save-mode
-      magit-wip-after-apply-mode
-      magit-wip-before-change-mode
-      magit-wip-initial-backup-mode))
-
-;;; Log
-
-(defun magit-wip-log-index (args files)
-  "Show log for the index wip ref of the current branch."
-  (interactive (magit-log-arguments))
-  (magit-git-log (list (magit--wip-index-ref)) args files))
-
-(defun magit-wip-log-worktree (args files)
-  "Show log for the worktree wip ref of the current branch."
-  (interactive (magit-log-arguments))
-  (magit-git-log (list (magit--wip-wtree-ref)) args files))
-
-(defun magit-wip-log-current (branch args files count)
-  "Show log for the current branch and its wip refs.
-With a negative prefix argument only show the worktree wip ref.
-The absolute numeric value of the prefix argument controls how
-many \"branches\" of each wip ref are shown."
-  (interactive
-   (nconc (list (or (magit-get-current-branch) "HEAD"))
-          (magit-log-arguments)
-          (list (prefix-numeric-value current-prefix-arg))))
-  (magit-wip-log branch args files count))
-
-(defun magit-wip-log (branch args files count)
-  "Show log for a branch and its wip refs.
-With a negative prefix argument only show the worktree wip ref.
-The absolute numeric value of the prefix argument controls how
-many \"branches\" of each wip ref are shown."
-  (interactive
-   (nconc (list (magit-completing-read
-                 "Log branch and its wip refs"
-                 (-snoc (magit-list-local-branch-names) "HEAD")
-                 nil t nil 'magit-revision-history
-                 (or (magit-branch-at-point)
-                     (magit-get-current-branch)
-                     "HEAD")))
-          (magit-log-arguments)
-          (list (prefix-numeric-value current-prefix-arg))))
-  (magit-git-log (nconc (list branch)
-                        (magit-wip-log-get-tips
-                         (magit--wip-wtree-ref branch)
-                         (abs count))
-                        (and (>= count 0)
-                             (magit-wip-log-get-tips
-                              (magit--wip-index-ref branch)
-                              (abs count))))
-                 args files))
-
-(defun magit-wip-log-get-tips (wipref count)
-  (when-let ((reflog (magit-git-lines "reflog" wipref)))
-    (let (tips)
-      (while (and reflog (> count 1))
-        (setq reflog (cl-member "^[^ ]+ [^:]+: restart autosaving"
-                                reflog :test #'string-match-p))
-        (when (and (cadr reflog)
-                   (string-match "^[^ ]+ \\([^:]+\\)" (cadr reflog)))
-          (push (match-string 1 (cadr reflog)) tips))
-        (setq reflog (cddr reflog))
-        (cl-decf count))
-      (cons wipref (nreverse tips)))))
-
-;;; _
-(provide 'magit-wip)
-;;; magit-wip.el ends here
diff --git a/elpa/magit-20181116.1412/magit-wip.elc b/elpa/magit-20181116.1412/magit-wip.elc
deleted file mode 100644
index 5688544..0000000
--- a/elpa/magit-20181116.1412/magit-wip.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit-worktree.el b/elpa/magit-20181116.1412/magit-worktree.el
deleted file mode 100644
index 08941e5..0000000
--- a/elpa/magit-20181116.1412/magit-worktree.el
+++ /dev/null
@@ -1,175 +0,0 @@
-;;; magit-worktree.el --- worktree support  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library implements support for `git-worktree'.
-
-;;; Code:
-
-(require 'magit)
-
-;;; Commands
-
-;;;###autoload (autoload 'magit-worktree-popup "magit-worktree" nil t)
-(magit-define-popup magit-worktree-popup
-  "Popup console for worktree commands."
-  :man-page "git-worktree"
-  :actions  `((?b "Create new worktree"            magit-worktree-checkout)
-              (?c "Create new branch and worktree" magit-worktree-branch)
-              ,@(and (not (require (quote forge) nil t))
-                     '((?p "Create new worktree from pull-request"
-                           magit-worktree-checkout-pull-request)))
-              (?k "Delete worktree"                magit-worktree-delete)
-              (?g "Show status for worktree"       magit-worktree-status))
-  :max-action-columns 1)
-
-;;;###autoload
-(defun magit-worktree-checkout (path branch)
-  "Checkout BRANCH in a new worktree at PATH."
-  (interactive
-   (let ((branch (magit-read-local-branch-or-commit "Checkout")))
-     (list (read-directory-name (format "Checkout %s in new worktree: " branch))
-           branch)))
-  (magit-run-git "worktree" "add" (expand-file-name path) branch)
-  (magit-diff-visit-directory path))
-
-(defun magit-worktree-checkout-pull-request (path pr)
-  "Create, configure and checkout a new worktree from a pull-request.
-This is like `magit-checkout-pull-request', except that it
-also creates a new worktree. Please see the manual for more
-information."
-  (interactive
-   (let ((pr (magit-read-pull-request "Checkout pull request")))
-     (let-alist pr
-       (let ((path (let ((branch (magit--pullreq-branch pr t)))
-                     (read-directory-name
-                      (format "Checkout #%s as `%s' in new worktree: "
-                              .number branch)
-                      (file-name-directory
-                       (directory-file-name default-directory))
-                      nil nil
-                      (if (string-match-p "\\`pr-[0-9]+\\'" branch)
-                          (number-to-string .number)
-                        (format "%s-%s" .number .head.ref))))))
-         (when (equal path "")
-           (user-error "The empty string isn't a valid path"))
-         (list path pr)))))
-  (when (and (file-exists-p path)
-             (not (and (file-directory-p path)
-                       (= (length (directory-files "/tmp/testing/")) 2))))
-    (user-error "%s already exists and isn't empty" path))
-  (magit-worktree-checkout path
-                           (let ((inhibit-magit-refresh t))
-                             (magit-branch-pull-request pr))))
-
-;;;###autoload
-(defun magit-worktree-branch (path branch start-point &optional force)
-  "Create a new BRANCH and check it out in a new worktree at PATH."
-  (interactive
-   `(,(read-directory-name "Create worktree: ")
-     ,@(butlast (magit-branch-read-args "Create and checkout branch"))
-     ,current-prefix-arg))
-  (magit-run-git "worktree" "add" (if force "-B" "-b")
-                 branch (expand-file-name path) start-point)
-  (magit-diff-visit-directory path))
-
-(defun magit-worktree-delete (worktree)
-  "Delete a worktree, defaulting to the worktree at point.
-The primary worktree cannot be deleted."
-  (interactive
-   (list (magit-completing-read "Delete worktree"
-                                (cdr (magit-list-worktrees))
-                                nil t nil nil
-                                (magit-section-value-if 'worktree))))
-  (if (file-directory-p (expand-file-name ".git" worktree))
-      (user-error "Deleting %s would delete the shared .git directory" worktree)
-    (let ((primary (file-name-as-directory (caar (magit-list-worktrees)))))
-      (magit-confirm-files (if magit-delete-by-moving-to-trash 'trash 'delete)
-                           (list "worktree"))
-      (when (file-exists-p worktree)
-        (let ((delete-by-moving-to-trash magit-delete-by-moving-to-trash))
-          (delete-directory worktree t magit-delete-by-moving-to-trash)))
-      (if (file-exists-p default-directory)
-          (magit-run-git "worktree" "prune")
-        (let ((default-directory primary))
-          (magit-run-git "worktree" "prune"))
-        (when (derived-mode-p 'magit-status-mode)
-          (kill-buffer)
-          (magit-status-internal primary))))))
-
-(defun magit-worktree-status (worktree)
-  "Show the status for the worktree at point.
-If there is no worktree at point, then read one in the
-minibuffer.  If the worktree at point is the one whose
-status is already being displayed in the current buffer,
-then show it in Dired instead."
-  (interactive
-   (list (or (magit-section-value-if 'worktree)
-             (magit-completing-read
-              "Show status for worktree"
-              (cl-delete (directory-file-name (magit-toplevel))
-                         (magit-list-worktrees)
-                         :test #'equal :key #'car)))))
-  (magit-diff-visit-directory worktree))
-
-;;; Sections
-
-(defvar magit-worktree-section-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap magit-visit-thing]  'magit-worktree-status)
-    (define-key map [remap magit-delete-thing] 'magit-worktree-delete)
-    map)
-  "Keymap for `worktree' sections.")
-
-(defun magit-insert-worktrees ()
-  "Insert sections for all worktrees.
-If there is only one worktree, then insert nothing."
-  (let ((worktrees (magit-list-worktrees)))
-    (when (> (length worktrees) 1)
-      (magit-insert-section (worktrees)
-        (magit-insert-heading "Worktrees:")
-        (let* ((cols
-                (mapcar (pcase-lambda (`(,path ,barep ,commit ,branch))
-                          (cons (cond
-                                 (branch (propertize branch
-                                                     'face 'magit-branch-local))
-                                 (commit (propertize (magit-rev-abbrev commit)
-                                                     'face 'magit-hash))
-                                 (barep  "(bare)"))
-                                path))
-                        worktrees))
-               (align (1+ (-max (--map (string-width (car it)) cols)))))
-          (pcase-dolist (`(,head . ,path) cols)
-            (magit-insert-section (worktree path)
-              (insert head)
-              (indent-to align)
-              (insert (let ((r (file-relative-name path))
-                            (a (abbreviate-file-name path)))
-                        (if (< (string-width r) (string-width a)) r a)))
-              (insert ?\n))))
-        (insert ?\n)))))
-
-;;; _
-(provide 'magit-worktree)
-;;; magit-worktree.el ends here
diff --git a/elpa/magit-20181116.1412/magit-worktree.elc b/elpa/magit-20181116.1412/magit-worktree.elc
deleted file mode 100644
index e2cdd71..0000000
--- a/elpa/magit-20181116.1412/magit-worktree.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit.el b/elpa/magit-20181116.1412/magit.el
deleted file mode 100644
index 5bd9146..0000000
--- a/elpa/magit-20181116.1412/magit.el
+++ /dev/null
@@ -1,630 +0,0 @@
-;;; magit.el --- A Git porcelain inside Emacs  -*- lexical-binding: t; coding: utf-8 -*-
-
-;; Copyright (C) 2008-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; Author: Marius Vollmer <marius.vollmer@gmail.com>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-;;	Kyle Meyer        <kyle@kyleam.com>
-;;	Noam Postavsky    <npostavs@users.sourceforge.net>
-;; Former-Maintainers:
-;;	Nicolas Dudebout  <nicolas.dudebout@gatech.edu>
-;;	Peter J. Weisberg <pj@irregularexpressions.net>
-;;	Phil Jackson      <phil@shellarchive.co.uk>
-;;	Rémi Vanicat      <vanicat@debian.org>
-;;	Yann Hodique      <yann.hodique@gmail.com>
-
-;; Keywords: git tools vc
-;; Homepage: https://github.com/magit/magit
-
-;; Magit requires at least GNU Emacs 25.1 and Git 2.0.0.
-
-;; Magit is free software; you can redistribute it and/or modify it
-;; under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; Magit is an interface to the version control system Git,
-;; implemented as an Emacs package.  Magit aspires to be a complete
-;; Git porcelain.  While we cannot (yet) claim, that Magit wraps and
-;; improves upon each and every Git command, it is complete enough to
-;; allow even experienced Git users to perform almost all of their
-;; daily version control tasks directly from within Emacs.  While many
-;; fine Git clients exist, only Magit and Git itself deserve to be
-;; called porcelains.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'dash)
-
-(eval-when-compile
-  (require 'subr-x))
-
-(require 'with-editor)
-(require 'git-commit)
-(require 'magit-core)
-(require 'magit-diff)
-(require 'magit-apply)
-(require 'magit-log)
-(require 'magit-repos)
-
-(require 'format-spec)
-(require 'package nil t) ; used in `magit-version'
-
-(defconst magit--minimal-git "2.0.0")
-(defconst magit--minimal-emacs "25.1")
-
-;;; Faces
-
-(defface magit-header-line
-  '((t :inherit magit-section-heading))
-  "Face for the `header-line' in some Magit modes.
-Note that some modes, such as `magit-log-select-mode', have their
-own faces for the `header-line', or for parts of the
-`header-line'."
-  :group 'magit-faces)
-
-(defface magit-header-line-key
-  '((t :inherit magit-popup-key))
-  "Face for keys in the `header-line'."
-  :group 'magit-faces)
-
-(defface magit-dimmed
-  '((((class color) (background light)) :foreground "grey50")
-    (((class color) (background  dark)) :foreground "grey50"))
-  "Face for text that shouldn't stand out."
-  :group 'magit-faces)
-
-(defface magit-hash
-  '((((class color) (background light)) :foreground "grey60")
-    (((class color) (background  dark)) :foreground "grey40"))
-  "Face for the sha1 part of the log output."
-  :group 'magit-faces)
-
-(defface magit-tag
-  '((((class color) (background light)) :foreground "Goldenrod4")
-    (((class color) (background  dark)) :foreground "LightGoldenrod2"))
-  "Face for tag labels shown in log buffer."
-  :group 'magit-faces)
-
-(defface magit-branch-remote
-  '((((class color) (background light)) :foreground "DarkOliveGreen4")
-    (((class color) (background  dark)) :foreground "DarkSeaGreen2"))
-  "Face for remote branch head labels shown in log buffer."
-  :group 'magit-faces)
-
-(defface magit-branch-remote-head
-  '((((class color) (background light)) :inherit magit-branch-remote :box t)
-    (((class color) (background  dark)) :inherit magit-branch-remote :box t))
-  "Face for current branch."
-  :group 'magit-faces)
-
-(defface magit-branch-local
-  '((((class color) (background light)) :foreground "SkyBlue4")
-    (((class color) (background  dark)) :foreground "LightSkyBlue1"))
-  "Face for local branches."
-  :group 'magit-faces)
-
-(defface magit-branch-current
-  '((((class color) (background light)) :inherit magit-branch-local :box t)
-    (((class color) (background  dark)) :inherit magit-branch-local :box t))
-  "Face for current branch."
-  :group 'magit-faces)
-
-(defface magit-branch-upstream
-  '((t :slant italic))
-  "Face for upstream branch.
-This face is only used in logs and it gets combined
- with `magit-branch-local', `magit-branch-remote'
-and/or `magit-branch-remote-head'."
-  :group 'magit-faces)
-
-(defface magit-head
-  '((((class color) (background light)) :inherit magit-branch-local)
-    (((class color) (background  dark)) :inherit magit-branch-local))
-  "Face for the symbolic ref `HEAD'."
-  :group 'magit-faces)
-
-(defface magit-refname
-  '((((class color) (background light)) :foreground "grey30")
-    (((class color) (background  dark)) :foreground "grey80"))
-  "Face for refnames without a dedicated face."
-  :group 'magit-faces)
-
-(defface magit-refname-stash
-  '((t :inherit magit-refname))
-  "Face for stash refnames."
-  :group 'magit-faces)
-
-(defface magit-refname-wip
-  '((t :inherit magit-refname))
-  "Face for wip refnames."
-  :group 'magit-faces)
-
-(defface magit-refname-pullreq
-  '((t :inherit magit-refname))
-  "Face for pullreq refnames."
-  :group 'magit-faces)
-
-(defface magit-keyword
-  '((t :inherit font-lock-string-face))
-  "Face for parts of commit messages inside brackets."
-  :group 'magit-faces)
-
-(defface magit-keyword-squash
-  '((t :inherit font-lock-warning-face))
-  "Face for squash! and fixup! keywords in commit messages."
-  :group 'magit-faces)
-
-(defface magit-signature-good
-  '((t :foreground "green"))
-  "Face for good signatures."
-  :group 'magit-faces)
-
-(defface magit-signature-bad
-  '((t :foreground "red" :weight bold))
-  "Face for bad signatures."
-  :group 'magit-faces)
-
-(defface magit-signature-untrusted
-  '((t :foreground "cyan"))
-  "Face for good untrusted signatures."
-  :group 'magit-faces)
-
-(defface magit-signature-expired
-  '((t :foreground "orange"))
-  "Face for signatures that have expired."
-  :group 'magit-faces)
-
-(defface magit-signature-expired-key
-  '((t :inherit magit-signature-expired))
-  "Face for signatures made by an expired key."
-  :group 'magit-faces)
-
-(defface magit-signature-revoked
-  '((t :foreground "violet red"))
-  "Face for signatures made by a revoked key."
-  :group 'magit-faces)
-
-(defface magit-signature-error
-  '((t :foreground "firebrick3"))
-  "Face for signatures that cannot be checked (e.g. missing key)."
-  :group 'magit-faces)
-
-(defface magit-cherry-unmatched
-  '((t :foreground "cyan"))
-  "Face for unmatched cherry commits."
-  :group 'magit-faces)
-
-(defface magit-cherry-equivalent
-  '((t :foreground "magenta"))
-  "Face for equivalent cherry commits."
-  :group 'magit-faces)
-
-(defface magit-filename
-  '((t :weight normal))
-  "Face for filenames."
-  :group 'magit-faces)
-
-;;; Dispatch Popup
-
-;;;###autoload (autoload 'magit-dispatch-popup "magit" nil t)
-(magit-define-popup magit-dispatch-popup
-  "Popup console for dispatching other popups."
-  :actions '("Popup and dwim commands"
-             (?A "Cherry-picking"  magit-cherry-pick-popup)
-             (?b "Branching"       magit-branch-popup)
-             (?B "Bisecting"       magit-bisect-popup)
-             (?c "Committing"      magit-commit-popup)
-             (?d "Diffing"         magit-diff-popup)
-             (?D "Change diffs"    magit-diff-refresh-popup)
-             (?e "Ediff dwimming"  magit-ediff-dwim)
-             (?E "Ediffing"        magit-ediff-popup)
-             (?f "Fetching"        magit-fetch-popup)
-             (?F "Pulling"         magit-pull-popup)
-             (?l "Logging"         magit-log-popup)
-             (?L "Change logs"     magit-log-refresh-popup)
-             (?m "Merging"         magit-merge-popup)
-             (?M "Remoting"        magit-remote-popup)
-             (?o "Submodules"      magit-submodule-popup)
-             (?O "Subtrees"        magit-subtree-popup)
-             (?P "Pushing"         magit-push-popup)
-             (?r "Rebasing"        magit-rebase-popup)
-             (?t "Tagging"         magit-tag-popup)
-             (?T "Notes"           magit-notes-popup)
-             (?V "Reverting"       magit-revert-popup)
-             (?w "Apply patches"   magit-am-popup)
-             (?W "Format patches"  magit-patch-popup)
-             (?X "Resetting"       magit-reset-popup)
-             (?y "Show Refs"       magit-show-refs-popup)
-             (?z "Stashing"        magit-stash-popup)
-             (?! "Running"         magit-run-popup)
-             (?% "Worktree"        magit-worktree-popup)
-             (lambda ()
-               (and (with-current-buffer magit-pre-popup-buffer
-                      (derived-mode-p 'magit-mode))
-                    (propertize "Applying changes" 'face 'magit-popup-heading)))
-             (?a "Apply"           magit-apply)
-             (?s "Stage"           magit-stage)
-             (?u "Unstage"         magit-unstage)
-             (?v "Reverse"         magit-reverse)
-             (?S "Stage all"       magit-stage-modified)
-             (?U "Unstage all"     magit-unstage-all)
-             (?k "Discard"         magit-discard)
-             (lambda ()
-               (and (with-current-buffer magit-pre-popup-buffer
-                      (derived-mode-p 'magit-mode))
-                    (propertize "Essential commands" 'face 'magit-popup-heading)))
-             (?g  "    refresh current buffer"   magit-refresh)
-             ;; These bindings only work because of :setup-function.
-             (?\t   "  toggle section at point"  magit-section-toggle)
-             (?\r   "  visit thing at point"     magit-visit-thing)
-             ;; This binding has no effect and only appears to do
-             ;; so because it is identical to the global binding.
-             ("C-h m" "show all key bindings"    describe-mode))
-  :setup-function 'magit-dispatch-popup-setup
-  :max-action-columns (lambda (heading)
-                        (pcase heading
-                          ("Popup and dwim commands" 4)
-                          ("Applying changes" 3)
-                          ("Essential commands" 1))))
-
-(defvar magit-dispatch-popup-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map magit-popup-mode-map)
-    (cond ((featurep 'jkl)
-           (define-key map [tab]    'magit-invoke-popup-action)
-           (define-key map [return] 'magit-invoke-popup-action))
-          (t
-           (define-key map (kbd "C-i") 'magit-invoke-popup-action)
-           (define-key map (kbd "C-m") 'magit-invoke-popup-action)))
-    map)
-  "Keymap used by `magit-dispatch-popup'.")
-
-(defun magit-dispatch-popup-setup (val def)
-  (magit-popup-default-setup val def)
-  (use-local-map magit-dispatch-popup-map)
-  ;; This is necessary for users (i.e. me) who have broken the
-  ;; connection between C-i (aka TAB) and tab, and C-m (aka RET)
-  ;; and return.
-  (magit-popup-put
-   :actions (nconc (magit-popup-get :actions)
-                   (list (make-magit-popup-event :key 'tab
-                                                 :fun 'magit-section-toggle)
-                         (make-magit-popup-event :key 'return
-                                                 :fun 'magit-visit-thing)))))
-
-;;; Git Popup
-
-(defcustom magit-shell-command-verbose-prompt t
-  "Whether to show the working directory when reading a command.
-This affects `magit-git-command', `magit-git-command-topdir',
-`magit-shell-command', and `magit-shell-command-topdir'."
-  :package-version '(magit . "2.11.0")
-  :group 'magit-commands
-  :type 'boolean)
-
-(defvar magit-git-command-history nil)
-
-;;;###autoload (autoload 'magit-run-popup "magit" nil t)
-(magit-define-popup magit-run-popup
-  "Popup console for running raw Git commands."
-  :actions '((?! "Git Subcommand (in topdir)" magit-git-command-topdir)
-             (?k "Gitk"                       magit-run-gitk)
-             (?p "Git Subcommand (in pwd)"    magit-git-command)
-             (?a "Gitk --all"                 magit-run-gitk-all)
-             (?s "Shell command (in topdir)"  magit-shell-command-topdir)
-             (?b "Gitk --branches"            magit-run-gitk-branches)
-             (?S "Shell command (in pwd)"     magit-shell-command)
-             (?g "Git Gui"                    magit-run-git-gui))
-  :default-action 'magit-git-command
-  :max-action-columns 2)
-
-;;;###autoload
-(defun magit-git-command (command)
-  "Execute COMMAND asynchronously; display output.
-
-Interactively, prompt for COMMAND in the minibuffer. \"git \" is
-used as initial input, but can be deleted to run another command.
-
-With a prefix argument COMMAND is run in the top-level directory
-of the current working tree, otherwise in `default-directory'."
-  (interactive (list (magit-read-shell-command nil "git ")))
-  (magit--shell-command command))
-
-;;;###autoload
-(defun magit-git-command-topdir (command)
-  "Execute COMMAND asynchronously; display output.
-
-Interactively, prompt for COMMAND in the minibuffer. \"git \" is
-used as initial input, but can be deleted to run another command.
-
-COMMAND is run in the top-level directory of the current
-working tree."
-  (interactive (list (magit-read-shell-command t "git ")))
-  (magit--shell-command command (magit-toplevel)))
-
-;;;###autoload
-(defun magit-shell-command (command)
-  "Execute COMMAND asynchronously; display output.
-
-Interactively, prompt for COMMAND in the minibuffer.  With a
-prefix argument COMMAND is run in the top-level directory of
-the current working tree, otherwise in `default-directory'."
-  (interactive (list (magit-read-shell-command)))
-  (magit--shell-command command))
-
-;;;###autoload
-(defun magit-shell-command-topdir (command)
-  "Execute COMMAND asynchronously; display output.
-
-Interactively, prompt for COMMAND in the minibuffer.  COMMAND
-is run in the top-level directory of the current working tree."
-  (interactive (list (magit-read-shell-command t)))
-  (magit--shell-command command (magit-toplevel)))
-
-(defun magit--shell-command (command &optional directory)
-  (let ((default-directory (or directory default-directory))
-        (process-environment process-environment))
-    (push "GIT_PAGER=cat" process-environment)
-    (magit-start-process shell-file-name nil
-                         shell-command-switch command))
-  (magit-process-buffer))
-
-(defun magit-read-shell-command (&optional toplevel initial-input)
-  (let ((dir (abbreviate-file-name
-              (if (or toplevel current-prefix-arg)
-                  (or (magit-toplevel)
-                      (magit--not-inside-repository-error))
-                default-directory))))
-    (read-shell-command (if magit-shell-command-verbose-prompt
-                            (format "Async shell command in %s: " dir)
-                          "Async shell command: ")
-                        initial-input 'magit-git-command-history)))
-
-;;; Font-Lock Keywords
-
-(defconst magit-font-lock-keywords
-  (eval-when-compile
-    `((,(concat "(\\(magit-define-section-jumper\\)\\_>"
-                "[ \t'\(]*"
-                "\\(\\(?:\\sw\\|\\s_\\)+\\)?")
-       (1 'font-lock-keyword-face)
-       (2 'font-lock-function-name-face nil t))
-      (,(concat "(" (regexp-opt '("magit-insert-section"
-                                  "magit-section-case"
-                                  "magit-bind-match-strings"
-                                  "magit-with-temp-index"
-                                  "magit-with-blob"
-                                  "magit-with-toplevel") t)
-                "\\_>")
-       . 1))))
-
-(font-lock-add-keywords 'emacs-lisp-mode magit-font-lock-keywords)
-
-;;; Version
-
-(defvar magit-version 'undefined
-  "The version of Magit that you're using.
-Use the function by the same name instead of this variable.")
-
-;;;###autoload
-(defun magit-version (&optional print-dest)
-  "Return the version of Magit currently in use.
-If optional argument PRINT-DEST is non-nil, output
-stream (interactively, the echo area, or the current buffer with
-a prefix argument), also print the used versions of Magit, Git,
-and Emacs to it."
-  (interactive (list (if current-prefix-arg (current-buffer) t)))
-  (let ((magit-git-global-arguments nil)
-        (toplib (or load-file-name buffer-file-name))
-        debug)
-    (unless (and toplib
-                 (equal (file-name-nondirectory toplib) "magit.el"))
-      (setq toplib (locate-library "magit.el")))
-    (setq toplib (and toplib (file-chase-links toplib)))
-    (push toplib debug)
-    (when toplib
-      (let* ((topdir (file-name-directory toplib))
-             (gitdir (expand-file-name
-                      ".git" (file-name-directory
-                              (directory-file-name topdir))))
-             (static (locate-library "magit-version.el" nil (list topdir)))
-             (static (and static (file-chase-links static))))
-        (or (progn
-              (push 'repo debug)
-              (when (and (file-exists-p gitdir)
-                         ;; It is a repo, but is it the Magit repo?
-                         (file-exists-p
-                          (expand-file-name "../lisp/magit.el" gitdir)))
-                (push t debug)
-                ;; Inside the repo the version file should only exist
-                ;; while running make.
-                (when (and static (not noninteractive))
-                  (ignore-errors (delete-file static)))
-                (setq magit-version
-                      (let ((default-directory topdir))
-                        (magit-git-string "describe" "--tags" "--dirty")))))
-            (progn
-              (push 'static debug)
-              (when (and static (file-exists-p static))
-                (push t debug)
-                (load-file static)
-                magit-version))
-            (when (featurep 'package)
-              (push 'elpa debug)
-              (ignore-errors
-                (--when-let (assq 'magit package-alist)
-                  (push t debug)
-                  (setq magit-version
-                        (and (fboundp 'package-desc-version)
-                             (package-version-join
-                              (package-desc-version (cadr it))))))))
-            (progn
-              (push 'dirname debug)
-              (let ((dirname (file-name-nondirectory
-                              (directory-file-name topdir))))
-                (when (string-match "\\`magit-\\([0-9]\\{8\\}\\.[0-9]*\\)"
-                                    dirname)
-                  (setq magit-version (match-string 1 dirname))))))))
-    (if (stringp magit-version)
-        (when print-dest
-          (princ (format "Magit %s, Git %s, Emacs %s, %s"
-                         (or magit-version "(unknown)")
-                         (or (let ((magit-git-debug
-                                    (lambda (err)
-                                      (display-warning '(magit git)
-                                                       err :error))))
-                               (magit-git-version t))
-                             "(unknown)")
-                         emacs-version
-                         system-type)
-                 print-dest))
-      (setq debug (reverse debug))
-      (setq magit-version 'error)
-      (when magit-version
-        (push magit-version debug))
-      (unless (equal (getenv "TRAVIS") "true")
-        ;; The repository is a sparse clone.
-        (message "Cannot determine Magit's version %S" debug)))
-    magit-version))
-
-;;; Debugging Tools
-
-(defun magit-debug-git-executable ()
-  "Display a buffer with information about `magit-git-executable'.
-See info node `(magit)Debugging Tools' for more information."
-  (interactive)
-  (with-current-buffer (get-buffer-create "*magit-git-debug*")
-    (pop-to-buffer (current-buffer))
-    (erase-buffer)
-    (insert (concat
-             (format "magit-git-executable: %S" magit-git-executable)
-             (and (not (file-name-absolute-p magit-git-executable))
-                  (format " [%S]" (executable-find magit-git-executable)))
-             (format " (%s)\n"
-                     (let* ((errmsg nil)
-                            (magit-git-debug (lambda (err) (setq errmsg err))))
-                       (or (magit-git-version t) errmsg)))))
-    (insert (format "exec-path: %S\n" exec-path))
-    (--when-let (cl-set-difference
-                 (-filter #'file-exists-p (remq nil (parse-colon-path
-                                                     (getenv "PATH"))))
-                 (-filter #'file-exists-p (remq nil exec-path))
-                 :test #'file-equal-p)
-      (insert (format "  entries in PATH, but not in exec-path: %S\n" it)))
-    (dolist (execdir exec-path)
-      (insert (format "  %s (%s)\n" execdir (car (file-attributes execdir))))
-      (when (file-directory-p execdir)
-        (dolist (exec (directory-files
-                       execdir t (concat
-                                  "\\`git" (regexp-opt exec-suffixes) "\\'")))
-          (insert (format "    %s (%s)\n" exec
-                          (let* ((magit-git-executable exec)
-                                 (errmsg nil)
-                                 (magit-git-debug (lambda (err) (setq errmsg err))))
-                            (or (magit-git-version t) errmsg)))))))))
-
-;;; Startup Asserts
-
-(defun magit-startup-asserts ()
-  (when-let ((val (getenv "GIT_DIR")))
-    (setenv "GIT_DIR")
-    (message "Magit unset $GIT_DIR (was %S).  See \
-https://github.com/magit/magit/wiki/Don't-set-$GIT_DIR-and-alike" val))
-  (when-let ((val (getenv "GIT_WORK_TREE")))
-    (setenv "GIT_WORK_TREE")
-    (message "Magit unset $GIT_WORK_TREE (was %S).  See \
-https://github.com/magit/magit/wiki/Don't-set-$GIT_DIR-and-alike" val))
-  (let ((version (magit-git-version)))
-    (when (and version
-               (version< version magit--minimal-git)
-               (not (equal (getenv "TRAVIS") "true")))
-      (display-warning 'magit (format "\
-Magit requires Git >= %s, you are using %s.
-
-If this comes as a surprise to you, because you do actually have
-a newer version installed, then that probably means that the
-older version happens to appear earlier on the `$PATH'.  If you
-always start Emacs from a shell, then that can be fixed in the
-shell's init file.  If you start Emacs by clicking on an icon,
-or using some sort of application launcher, then you probably
-have to adjust the environment as seen by graphical interface.
-For X11 something like ~/.xinitrc should work.
-
-If you use Tramp to work inside remote Git repositories, then you
-have to make sure a suitable Git is used on the remote machines
-too.\n" magit--minimal-git version) :error)))
-  (when (version< emacs-version magit--minimal-emacs)
-    (display-warning 'magit (format "\
-Magit requires Emacs >= %s, you are using %s.
-
-If this comes as a surprise to you, because you do actually have
-a newer version installed, then that probably means that the
-older version happens to appear earlier on the `$PATH'.  If you
-always start Emacs from a shell, then that can be fixed in the
-shell's init file.  If you start Emacs by clicking on an icon,
-or using some sort of application launcher, then you probably
-have to adjust the environment as seen by graphical interface.
-For X11 something like ~/.xinitrc should work.\n"
-                                    magit--minimal-emacs emacs-version)
-                     :error)))
-
-;;; Loading Libraries
-
-(provide 'magit)
-
-(cl-eval-when (load eval)
-  (require 'magit-status)
-  (require 'magit-refs)
-  (require 'magit-files)
-  (require 'magit-collab)
-  (require 'magit-reset)
-  (require 'magit-branch)
-  (require 'magit-merge)
-  (require 'magit-tag)
-  (require 'magit-worktree)
-  (require 'magit-notes)
-  (require 'magit-sequence)
-  (require 'magit-commit)
-  (require 'magit-remote)
-  (require 'magit-clone)
-  (require 'magit-fetch)
-  (require 'magit-pull)
-  (require 'magit-push)
-  (require 'magit-bisect)
-  (require 'magit-stash)
-  (require 'magit-blame)
-  (require 'magit-obsolete)
-  (require 'magit-submodule)
-  (unless (load "magit-autoloads" t t)
-    (require 'magit-subtree)
-    (require 'magit-ediff)
-    (require 'magit-extras)
-    (require 'git-rebase)
-    (require 'magit-imenu)
-    (require 'magit-bookmark)))
-
-(eval-after-load 'bookmark
-  '(require 'magit-bookmark))
-
-(if after-init-time
-    (progn (magit-startup-asserts)
-           (magit-version))
-  (add-hook 'after-init-hook #'magit-startup-asserts t)
-  (add-hook 'after-init-hook #'magit-version t))
-
-;;; magit.el ends here
diff --git a/elpa/magit-20181116.1412/magit.elc b/elpa/magit-20181116.1412/magit.elc
deleted file mode 100644
index 3267510..0000000
--- a/elpa/magit-20181116.1412/magit.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-20181116.1412/magit.info b/elpa/magit-20181116.1412/magit.info
deleted file mode 100644
index 64e27c0..0000000
--- a/elpa/magit-20181116.1412/magit.info
+++ /dev/null
@@ -1,187 +0,0 @@
-This is magit.info, produced by makeinfo version 6.5 from magit.texi.
-
-     Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-INFO-DIR-SECTION Emacs
-START-INFO-DIR-ENTRY
-* Magit: (magit).       Using Git from Emacs with Magit.
-END-INFO-DIR-ENTRY
-
-
-Indirect:
-magit.info-1: 754
-magit.info-2: 307175
-
-Tag Table:
-(Indirect)
-Node: Top754
-Node: Introduction6307
-Node: Installation11030
-Node: Installing from Melpa11360
-Node: Installing from the Git Repository12433
-Node: Post-Installation Tasks14979
-Node: Getting Started16264
-Node: Interface Concepts21611
-Node: Modes and Buffers21942
-Node: Switching Buffers23691
-Node: Naming Buffers28234
-Node: Quitting Windows31541
-Node: Automatic Refreshing of Magit Buffers33173
-Node: Automatic Saving of File-Visiting Buffers35941
-Node: Automatic Reverting of File-Visiting Buffers37126
-Node: Risk of Reverting Automatically42122
-Node: Sections44505
-Node: Section Movement45446
-Node: Section Visibility49543
-Node: Section Hooks54402
-Node: Section Types and Values56809
-Node: Section Options58112
-Node: Popup Buffers and Prefix Commands58584
-Node: Completion Confirmation and the Selection60965
-Node: Action Confirmation61402
-Node: Completion and Confirmation68748
-Node: The Selection71934
-Node: The hunk-internal region74833
-Node: Support for Completion Frameworks75922
-Node: Additional Completion Options80738
-Node: Running Git81337
-Node: Viewing Git Output81610
-Node: Git Process Status82743
-Node: Running Git Manually83708
-Node: Git Executable86110
-Node: Global Git Arguments88392
-Node: Inspecting89198
-Node: Status Buffer90345
-Node: Status Sections93109
-Node: Status Header Sections97912
-Node: Status Module Sections100542
-Node: Status Options103047
-Node: Repository List104801
-Node: Logging106959
-Node: Refreshing Logs109412
-Node: Log Buffer110797
-Node: Log Margin114592
-Node: Select from Log117232
-Node: Reflog119336
-Node: Cherries120868
-Node: Diffing122595
-Node: Refreshing Diffs125548
-Node: Diff Buffer129039
-Node: Diff Options133623
-Node: Revision Buffer137899
-Node: Ediffing140833
-Node: References Buffer144429
-Node: References Sections154193
-Node: Bisecting155054
-Node: Visiting Blobs156792
-Node: Blaming157302
-Node: Manipulating163113
-Node: Repository Setup163429
-Node: Staging and Unstaging164469
-Node: Staging from File-Visiting Buffers168550
-Node: Applying169718
-Node: Committing171611
-Node: Initiating a Commit172194
-Node: Editing Commit Messages175522
-Node: Branching185918
-Node: The Two Remotes186148
-Node: The Branch Popup188765
-Node: The Branch Config Popup205825
-Node: Auxiliary Branch Commands211766
-Node: Merging212871
-Node: Resolving Conflicts216802
-Node: Rebasing221803
-Node: Editing Rebase Sequences225967
-Node: Information About In-Progress Rebase228997
-Ref: Information About In-Progress Rebase-Footnote-1237746
-Node: Cherry Picking238342
-Node: Reverting242594
-Node: Resetting243968
-Node: Stashing245622
-Node: Transferring250145
-Node: Remotes250383
-Node: The Remote Popup250539
-Node: The Remote Config Popup254007
-Node: Fetching255663
-Node: Pulling257025
-Node: Pushing257868
-Node: Creating and Sending Patches262609
-Node: Applying Patches263446
-Node: Miscellaneous265032
-Node: Tagging265348
-Node: Notes266696
-Node: Submodules269007
-Node: Listing Submodules269221
-Node: Submodule Popup271145
-Node: Subtree273598
-Node: Worktree274838
-Node: Common Commands276048
-Node: Wip Modes277795
-Node: Wip Graph282728
-Node: Legacy Wip Modes285042
-Node: Minor Mode for Buffers Visiting Files287937
-Node: Minor Mode for Buffers Visiting Blobs293353
-Node: Customizing294166
-Node: Per-Repository Configuration295834
-Node: Essential Settings297483
-Node: Safety297807
-Node: Performance299572
-Node: Microsoft Windows Performance307175
-Node: MacOS Performance308366
-Ref: MacOS Performance-Footnote-1309602
-Ref: MacOS Performance-Footnote-2309684
-Ref: MacOS Performance-Footnote-3309744
-Node: Plumbing309910
-Node: Calling Git310733
-Node: Getting a Value from Git312258
-Node: Calling Git for Effect315344
-Node: Section Plumbing321864
-Node: Creating Sections322092
-Node: Section Selection325992
-Node: Matching Sections327791
-Node: Refreshing Buffers333764
-Node: Conventions336906
-Node: Theming Faces337098
-Node: FAQ345213
-Node: FAQ - How to ...?345655
-Node: How to show git's output?346015
-Node: How to install the gitman info manual?346769
-Node: How to show diffs for gpg-encrypted files?347739
-Node: How does branching and pushing work?348335
-Node: Can Magit be used as ediff-version-control-package?348698
-Node: FAQ - Issues and Errors350687
-Node: Magit is slow351619
-Node: I changed several thousand files at once and now Magit is unusable351833
-Node: I am having problems committing352562
-Node: I am using MS Windows and cannot push with Magit353043
-Node: I am using OS X and SOMETHING works in shell but not in Magit353660
-Node: Diffs contain control sequences354466
-Node: Expanding a file to show the diff causes it to disappear355579
-Node: Point is wrong in the COMMIT_EDITMSG buffer356130
-Node: The mode-line information isn't always up-to-date357176
-Node: A branch and tag sharing the same name breaks SOMETHING358258
-Node: My Git hooks work on the command-line but not inside Magit359146
-Node: git-commit-mode isn't used when committing from the command-line359983
-Node: Point ends up inside invisible text when jumping to a file-visiting buffer362250
-Node: Debugging Tools363048
-Node: Keystroke Index364935
-Node: Command Index396948
-Node: Function Index431821
-Node: Variable Index447202
-
-End Tag Table
-
-
-Local Variables:
-coding: utf-8
-End:
diff --git a/elpa/magit-20181116.1412/magit.info-1 b/elpa/magit-20181116.1412/magit.info-1
deleted file mode 100644
index 885be54..0000000
--- a/elpa/magit-20181116.1412/magit.info-1
+++ /dev/null
@@ -1,7962 +0,0 @@
-This is magit.info, produced by makeinfo version 6.5 from magit.texi.
-
-     Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-INFO-DIR-SECTION Emacs
-START-INFO-DIR-ENTRY
-* Magit: (magit).       Using Git from Emacs with Magit.
-END-INFO-DIR-ENTRY
-
-
-File: magit.info,  Node: Top,  Next: Introduction,  Up: (dir)
-
-Magit User Manual
-*****************
-
-Magit is an interface to the version control system Git, implemented as
-an Emacs package.  Magit aspires to be a complete Git porcelain.  While
-we cannot (yet) claim that Magit wraps and improves upon each and every
-Git command, it is complete enough to allow even experienced Git users
-to perform almost all of their daily version control tasks directly from
-within Emacs.  While many fine Git clients exist, only Magit and Git
-itself deserve to be called porcelains.
-
-This manual is for Magit version 2.90.1 (v2.90.1-9-gd2c84d9a5+1).
-
-     Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-* Menu:
-
-* Introduction::
-* Installation::
-* Getting Started::
-* Interface Concepts::
-* Inspecting::
-* Manipulating::
-* Transferring::
-* Miscellaneous::
-* Customizing::
-* Plumbing::
-* FAQ::
-* Debugging Tools::
-* Keystroke Index::
-* Command Index::
-* Function Index::
-* Variable Index::
-
-— The Detailed Node Listing —
-
-Installation
-
-* Installing from Melpa::
-* Installing from the Git Repository::
-* Post-Installation Tasks::
-
-Interface Concepts
-
-* Modes and Buffers::
-* Sections::
-* Popup Buffers and Prefix Commands::
-* Completion, Confirmation and the Selection: Completion Confirmation and the Selection.
-* Running Git::
-
-Modes and Buffers
-
-* Switching Buffers::
-* Naming Buffers::
-* Quitting Windows::
-* Automatic Refreshing of Magit Buffers::
-* Automatic Saving of File-Visiting Buffers::
-* Automatic Reverting of File-Visiting Buffers::
-
-
-Sections
-
-* Section Movement::
-* Section Visibility::
-* Section Hooks::
-* Section Types and Values::
-* Section Options::
-
-
-Completion, Confirmation and the Selection
-
-* Action Confirmation::
-* Completion and Confirmation::
-* The Selection::
-* The hunk-internal region::
-* Support for Completion Frameworks::
-* Additional Completion Options::
-
-
-Running Git
-
-* Viewing Git Output::
-* Git Process Status::
-* Running Git Manually::
-* Git Executable::
-* Global Git Arguments::
-
-
-Inspecting
-
-* Status Buffer::
-* Repository List::
-* Logging::
-* Diffing::
-* Ediffing::
-* References Buffer::
-* Bisecting::
-* Visiting Blobs::
-* Blaming::
-
-Status Buffer
-
-* Status Sections::
-* Status Header Sections::
-* Status Module Sections::
-* Status Options::
-
-
-Logging
-
-* Refreshing Logs::
-* Log Buffer::
-* Log Margin::
-* Select from Log::
-* Reflog::
-* Cherries::
-
-
-Diffing
-
-* Refreshing Diffs::
-* Diff Buffer::
-* Diff Options::
-* Revision Buffer::
-
-
-References Buffer
-
-* References Sections::
-
-
-Manipulating
-
-* Repository Setup::
-* Staging and Unstaging::
-* Applying::
-* Committing::
-* Branching::
-* Merging::
-* Resolving Conflicts::
-* Rebasing::
-* Cherry Picking::
-* Resetting::
-* Stashing::
-
-Staging and Unstaging
-
-* Staging from File-Visiting Buffers::
-
-
-Committing
-
-* Initiating a Commit::
-* Editing Commit Messages::
-
-
-Branching
-
-* The Two Remotes::
-* The Branch Popup::
-* The Branch Config Popup::
-* Auxiliary Branch Commands::
-
-
-Rebasing
-
-* Editing Rebase Sequences::
-* Information About In-Progress Rebase::
-
-
-Cherry Picking
-
-* Reverting::
-
-
-Transferring
-
-* Remotes::
-* Fetching::
-* Pulling::
-* Pushing::
-* Creating and Sending Patches::
-* Applying Patches::
-
-Remotes
-
-* The Remote Popup::
-* The Remote Config Popup::
-
-
-Miscellaneous
-
-* Tagging::
-* Notes::
-* Submodules::
-* Subtree::
-* Worktree::
-* Common Commands::
-* Wip Modes::
-* Minor Mode for Buffers Visiting Files::
-* Minor Mode for Buffers Visiting Blobs::
-
-Submodules
-
-* Listing Submodules::
-* Submodule Popup::
-
-
-Wip Modes
-
-* Wip Graph::
-* Legacy Wip Modes::
-
-
-Customizing
-
-* Per-Repository Configuration::
-* Essential Settings::
-
-Essential Settings
-
-* Safety::
-* Performance::
-
-
-Plumbing
-
-* Calling Git::
-* Section Plumbing::
-* Refreshing Buffers::
-* Conventions::
-
-Calling Git
-
-* Getting a Value from Git::
-* Calling Git for Effect::
-
-
-Section Plumbing
-
-* Creating Sections::
-* Section Selection::
-* Matching Sections::
-
-
-Conventions
-
-* Theming Faces::
-
-
-FAQ
-
-* FAQ - How to ...?::
-* FAQ - Issues and Errors::
-
-FAQ - How to ...?
-
-* How to show git's output?::
-* How to install the gitman info manual?::
-* How to show diffs for gpg-encrypted files?::
-* How does branching and pushing work?::
-* Can Magit be used as ediff-version-control-package?::
-
-
-FAQ - Issues and Errors
-
-* Magit is slow::
-* I changed several thousand files at once and now Magit is unusable::
-* I am having problems committing::
-* I am using MS Windows and cannot push with Magit::
-* I am using OS X and SOMETHING works in shell, but not in Magit: I am using OS X and SOMETHING works in shell but not in Magit.
-* Diffs contain control sequences::
-* Expanding a file to show the diff causes it to disappear::
-* Point is wrong in the COMMIT_EDITMSG buffer::
-* The mode-line information isn't always up-to-date::
-* A branch and tag sharing the same name breaks SOMETHING::
-* My Git hooks work on the command-line but not inside Magit::
-* git-commit-mode isn't used when committing from the command-line::
-* Point ends up inside invisible text when jumping to a file-visiting buffer::
-
-
-
-
-File: magit.info,  Node: Introduction,  Next: Installation,  Prev: Top,  Up: Top
-
-1 Introduction
-**************
-
-Magit is an interface to the version control system Git, implemented as
-an Emacs package.  Magit aspires to be a complete Git porcelain.  While
-we cannot (yet) claim that Magit wraps and improves upon each and every
-Git command, it is complete enough to allow even experienced Git users
-to perform almost all of their daily version control tasks directly from
-within Emacs.  While many fine Git clients exist, only Magit and Git
-itself deserve to be called porcelains.
-
-   Staging and otherwise applying changes is one of the most important
-features in a Git porcelain and here Magit outshines anything else,
-including Git itself.  Git’s own staging interface (‘git add --patch’)
-is so cumbersome that many users only use it in exceptional cases.  In
-Magit staging a hunk or even just part of a hunk is as trivial as
-staging all changes made to a file.
-
-   The most visible part of Magit’s interface is the status buffer,
-which displays information about the current repository.  Its content is
-created by running several Git commands and making their output
-actionable.  Among other things, it displays information about the
-current branch, lists unpulled and unpushed changes and contains
-sections displaying the staged and unstaged changes.  That might sound
-noisy, but, since sections are collapsible, it’s not.
-
-   To stage or unstage a change one places the cursor on the change and
-then types ‘s’ or ‘u’.  The change can be a file or a hunk, or when the
-region is active (i.e.  when there is a selection) several files or
-hunks, or even just part of a hunk.  The change or changes that these
-commands - and many others - would act on are highlighted.
-
-   Magit also implements several other "apply variants" in addition to
-staging and unstaging.  One can discard or reverse a change, or apply it
-to the working tree.  Git’s own porcelain only supports this for staging
-and unstaging and you would have to do something like ‘git diff ... |
-??? | git apply ...’ to discard, revert, or apply a single hunk on the
-command line.  In fact that’s exactly what Magit does internally (which
-is what lead to the term "apply variants").
-
-   Magit isn’t just for Git experts, but it does assume some prior
-experience with Git as well as Emacs.  That being said, many users have
-reported that using Magit was what finally taught them what Git is
-capable of and how to use it to its fullest.  Other users wished they
-had switched to Emacs sooner so that they would have gotten their hands
-on Magit earlier.
-
-   While one has to know the basic features of Emacs to be able to make
-full use of Magit, acquiring just enough Emacs skills doesn’t take long
-and is worth it, even for users who prefer other editors.  Vim users are
-advised to give Evil (https://bitbucket.org/lyro/evil/wiki/Home), the
-"Extensible VI Layer for Emacs", and Spacemacs
-(https://github.com/syl20bnr/spacemacs), an "Emacs starter-kit focused
-on Evil" a try.
-
-   Magit provides a consistent and efficient Git porcelain.  After a
-short learning period, you will be able to perform most of your daily
-version control tasks faster than you would on the command line.  You
-will likely also start using features that seemed too daunting in the
-past.
-
-   Magit fully embraces Git.  It exposes many advanced features using a
-simple but flexible interface instead of only wrapping the trivial ones
-like many GUI clients do.  Of course Magit supports logging, cloning,
-pushing, and other commands that usually don’t fail in spectacular ways;
-but it also supports tasks that often cannot be completed in a single
-step.  Magit fully supports tasks such as merging, rebasing,
-cherry-picking, reverting, and blaming by not only providing a command
-to initiate these tasks but also by displaying context sensitive
-information along the way and providing commands that are useful for
-resolving conflicts and resuming the sequence after doing so.
-
-   Magit wraps and in many cases improves upon at least the following
-Git porcelain commands: ‘add’, ‘am’, ‘bisect’, ‘blame’, ‘branch’,
-‘checkout’, ‘cherry’, ‘cherry-pick’, ‘clean’, ‘clone’, ‘commit’,
-‘config’, ‘describe’, ‘diff’, ‘fetch’, ‘format-patch’, ‘init’, ‘log’,
-‘merge’, ‘merge-tree’, ‘mv’, ‘notes’, ‘pull’, ‘rebase’, ‘reflog’,
-‘remote’, ‘request-pull’, ‘reset’, ‘revert’, ‘rm’, ‘show’, ‘stash’,
-‘submodule’, ‘subtree’, ‘tag’, and ‘worktree.’ Many more Magit porcelain
-commands are implemented on top of Git plumbing commands.
-
-
-File: magit.info,  Node: Installation,  Next: Getting Started,  Prev: Introduction,  Up: Top
-
-2 Installation
-**************
-
-Magit can be installed using Emacs’ package manager or manually from its
-development repository.
-
-* Menu:
-
-* Installing from Melpa::
-* Installing from the Git Repository::
-* Post-Installation Tasks::
-
-
-File: magit.info,  Node: Installing from Melpa,  Next: Installing from the Git Repository,  Up: Installation
-
-2.1 Installing from Melpa
-=========================
-
-Magit is available from Melpa and Melpa-Stable.  If you haven’t used
-Emacs’ package manager before, then it is high time you familiarize
-yourself with it by reading the documentation in the Emacs manual, see
-*note (emacs)Packages::.  Then add one of the archives to
-‘package-archives’:
-
-   • To use Melpa:
-
-     (require 'package)
-     (add-to-list 'package-archives
-                  '("melpa" . "http://melpa.org/packages/") t)
-
-   • To use Melpa-Stable:
-
-     (require 'package)
-     (add-to-list 'package-archives
-                  '("melpa-stable" . "http://stable.melpa.org/packages/") t)
-
-   Once you have added your preferred archive, you need to update the
-local package list using:
-
-     M-x package-refresh-contents RET
-
-   Once you have done that, you can install Magit and its dependencies
-using:
-
-     M-x package-install RET magit RET
-
-   Now see *note Post-Installation Tasks::.
-
-
-File: magit.info,  Node: Installing from the Git Repository,  Next: Post-Installation Tasks,  Prev: Installing from Melpa,  Up: Installation
-
-2.2 Installing from the Git Repository
-======================================
-
-Magit depends on the ‘dash’, ‘ghub’, ‘graphql’, ‘magit-popup’, ‘treepy’
-and ‘with-editor’ libraries which are available from Melpa and
-Melpa-Stable.  Install them using ‘M-x package-install RET <package>
-RET’.  Of course you may also install them manually from their
-repository.
-
-   Then clone the Magit repository:
-
-     $ git clone https://github.com/magit/magit.git ~/.emacs.d/site-lisp/magit
-     $ cd ~/.emacs.d/site-lisp/magit
-
-   Then compile the libraries and generate the info manuals:
-
-     $ make
-
-   If you haven’t installed ‘dash’, ‘ghub’, ‘graphql’, ‘magit-popup’,
-‘treepy’ and ‘with-editor’ from Melpa or at
-‘/path/to/magit/../<package>’, then you have to tell ‘make’ where to
-find them.  To do so create the file ‘/path/to/magit/config.mk’ with the
-following content before running ‘make’:
-
-     LOAD_PATH  = -L /path/to/magit/lisp
-     LOAD_PATH += -L /path/to/dash
-     LOAD_PATH += -L /path/to/ghub
-     LOAD_PATH += -L /path/to/graphql
-     LOAD_PATH += -L /path/to/magit-popup
-     LOAD_PATH += -L /path/to/treepy
-     LOAD_PATH += -L /path/to/with-editor
-
-   Finally add this to your init file:
-
-     (add-to-list 'load-path "~/.emacs.d/site-lisp/magit/lisp")
-     (require 'magit)
-
-     (with-eval-after-load 'info
-       (info-initialize)
-       (add-to-list 'Info-directory-list
-                    "~/.emacs.d/site-lisp/magit/Documentation/"))
-
-   Note that you have to add the ‘lisp’ subdirectory to the ‘load-path’,
-not the top-level of the repository, and that elements of ‘load-path’
-should not end with a slash, while those of ‘Info-directory-list’
-should.
-
-   Instead of requiring the feature ‘magit’, you could load just the
-autoload definitions, by loading the file ‘magit-autoloads.el’.
-
-     (load "/path/to/magit/lisp/magit-autoloads")
-
-   Instead of running Magit directly from the repository by adding that
-to the ‘load-path’, you might want to instead install it in some other
-directory using ‘sudo make install’ and setting ‘load-path’ accordingly.
-
-   To update Magit use:
-
-     $ git pull
-     $ make
-
-   At times it might be necessary to run ‘make clean all’ instead.
-
-   To view all available targets use ‘make help’.
-
-   Now see *note Post-Installation Tasks::.
-
-
-File: magit.info,  Node: Post-Installation Tasks,  Prev: Installing from the Git Repository,  Up: Installation
-
-2.3 Post-Installation Tasks
-===========================
-
-After installing Magit you should verify that you are indeed using the
-Magit, Git, and Emacs releases you think you are using.  It’s best to
-restart Emacs before doing so, to make sure you are not using an
-outdated value for ‘load-path’.
-
-     M-x magit-version RET
-
-   should display something like
-
-     Magit 2.8.0, Git 2.10.2, Emacs 25.1.1, gnu/linux
-
-   Then you might also want to read about options that many users likely
-want to customize.  See *note Essential Settings::.
-
-   To be able to follow cross references to Git manpages found in this
-manual, you might also have to manually install the ‘gitman’ info
-manual, or advice ‘Info-follow-nearest-node’ to instead open the actual
-manpage.  See *note How to install the gitman info manual?::.
-
-   If you are completely new to Magit then see *note Getting Started::.
-
-   If you run into problems, then please see the *note FAQ::.  Also see
-the *note Debugging Tools::.
-
-   And last but not least please consider making a donation, to ensure
-that I can keep working on Magit.  See <https://magit.vc/donations>.
-for various donation options.
-
-
-File: magit.info,  Node: Getting Started,  Next: Interface Concepts,  Prev: Installation,  Up: Top
-
-3 Getting Started
-*****************
-
-This short tutorial describes the most essential features that many
-Magitians use on a daily basis.  It only scratches the surface but
-should be enough to get you started.
-
-   IMPORTANT: It is safest if you clone some repository just for this
-tutorial.  Alternatively you can use an existing local repository, but
-if you do that, then you should commit all uncommitted changes before
-proceeding.
-
-   To display information about the current Git repository, type ‘M-x
-magit-status RET’.  You will be using this command a lot, and should
-therefore give it a global key binding.  This is what we recommend:
-
-     (global-set-key (kbd "C-x g") 'magit-status)
-
-   Most Magit commands are commonly invoked from the status buffer.  It
-can be considered the primary interface for interacting with Git using
-Magit.  Many other Magit buffers may exist at a given time, but they are
-often created from this buffer.
-
-   Depending on what state your repository is in, this buffer may
-contain sections titled "Staged changes", "Unstaged changes", "Unmerged
-into origin/master", "Unpushed to origin/master", and many others.
-
-   Since we are starting from a safe state, which you can easily return
-to (by doing a ‘git reset --hard PRE-MAGIT-STATE’), there currently are
-not staged or unstaged changes.  Edit some files and save the changes.
-Then go back to the status buffer, while at the same time refreshing it,
-by typing ‘C-x g’.  (When the status buffer, or any Magit buffer for
-that matter, is the current buffer, then you can also use just ‘g’ to
-refresh it).
-
-   Move between sections using ‘p’ and ‘n’.  Note that the bodies of
-some sections are hidden.  Type ‘TAB’ to expand or collapse the section
-at point.  You can also use ‘C-tab’ to cycle the visibility of the
-current section and its children.  Move to a file section inside the
-section named "Unstaged changes" and type ‘s’ to stage the changes you
-have made to that file.  That file now appears under "Staged changes".
-
-   Magit can stage and unstage individual hunks, not just complete
-files.  Move to the file you have just staged, expand it using ‘TAB’,
-move to one of the hunks using ‘n’, and unstage just that by typing ‘u’.
-Note how the staging (‘s’) and unstaging (‘u’) commands operate on the
-change at point.  Many other commands behave the same way.
-
-   You can also un-/stage just part of a hunk.  Inside the body of a
-hunk section (move there using ‘C-n’), set the mark using ‘C-SPC’ and
-move down until some added and/or removed lines fall inside the region
-but not all of them.  Again type ‘s’ to stage.
-
-   It is also possible to un-/stage multiple files at once.  Move to a
-file section, type ‘C-SPC’, move to the next file using ‘n’, and then
-‘s’ to stage both files.  Note that both the mark and point have to be
-on the headings of sibling sections for this to work.  If the region
-looks like it does in other buffers, then it doesn’t select Magit
-sections that can be acted on as a unit.
-
-   And then of course you want to commit your changes.  Type ‘c’.  This
-shows the committing popup buffer featuring various commit variants and
-arguments that can be passed to ‘git commit’.  Do not worry about those
-for now.  We want to create a "normal" commit, which is done by typing
-‘c’ again.
-
-   Now two new buffers appear.  One is for writing the commit message,
-the other shows a diff with the changes that you are about to committed.
-Write a message and then type ‘C-c C-c’ to actually create the commit.
-
-   You probably don’t want to push the commit you just created because
-you just committed some random changes, but if that is not the case you
-could push it by typing ‘P’ to bring up the push popup and then ‘p’ to
-push to a branch with the same name as the local branch onto the remote
-configured as the push-remote.  (If the push-remote is not configured
-yet, then you would first be prompted for the remote to push to.)
-
-   So far we have mentioned the commit, push, and log popups.  These are
-probably among the popups you will be using the most, but many others
-exist.  To show a popup that lists all other popups (as well as the
-various apply commands and some other fundamental commands), type ‘h’.
-Try a few.
-
-   The key bindings in that popup correspond to the bindings in Magit
-buffers, including but not limited to the status buffer.  So you could
-type ‘h d’ to bring up the diff popup, but once you remember that "d"
-stands for "diff", you would usually do so by just typing ‘d’.  But the
-"popup of popups" is useful even once you have memorized all the
-bindings, as it can provide easy access to Magit commands from non-Magit
-buffers.  You should create a global key binding for this command too:
-
-     (global-set-key (kbd "C-x M-g") 'magit-dispatch-popup)
-
-   In the same vein, you might also want to enable
-‘global-magit-file-mode’ to get some more Magit key bindings in regular
-file-visiting buffers (see *note Minor Mode for Buffers Visiting
-Files::).
-
-   It is not necessary that you do so now, but if you stick with Magit,
-then it is highly recommended that you read the next section too.
-
-
-File: magit.info,  Node: Interface Concepts,  Next: Inspecting,  Prev: Getting Started,  Up: Top
-
-4 Interface Concepts
-********************
-
-* Menu:
-
-* Modes and Buffers::
-* Sections::
-* Popup Buffers and Prefix Commands::
-* Completion, Confirmation and the Selection: Completion Confirmation and the Selection.
-* Running Git::
-
-
-File: magit.info,  Node: Modes and Buffers,  Next: Sections,  Up: Interface Concepts
-
-4.1 Modes and Buffers
-=====================
-
-Magit provides several major-modes.  For each of these modes there
-usually exists only one buffer per repository.  Separate modes and thus
-buffers exist for commits, diffs, logs, and some other things.
-
-   Besides these special purpose buffers, there also exists an overview
-buffer, called the *status buffer*.  It’s usually from this buffer that
-the user invokes Git commands, or creates or visits other buffers.
-
-   In this manual we often speak about "Magit buffers".  By that we mean
-buffers whose major-modes derive from ‘magit-mode’.
-
-‘M-x magit-toggle-buffer-lock’     (‘magit-toggle-buffer-lock’)
-
-     This command locks the current buffer to its value or if the buffer
-     is already locked, then it unlocks it.
-
-     Locking a buffer to its value prevents it from being reused to
-     display another value.  The name of a locked buffer contains its
-     value, which allows telling it apart from other locked buffers and
-     the unlocked buffer.
-
-     Not all Magit buffers can be locked to their values; for example,
-     it wouldn’t make sense to lock a status buffer.
-
-     There can only be a single unlocked buffer using a certain
-     major-mode per repository.  So when a buffer is being unlocked and
-     another unlocked buffer already exists for that mode and
-     repository, then the former buffer is instead deleted and the
-     latter is displayed in its place.
-
-* Menu:
-
-* Switching Buffers::
-* Naming Buffers::
-* Quitting Windows::
-* Automatic Refreshing of Magit Buffers::
-* Automatic Saving of File-Visiting Buffers::
-* Automatic Reverting of File-Visiting Buffers::
-
-
-File: magit.info,  Node: Switching Buffers,  Next: Naming Buffers,  Up: Modes and Buffers
-
-4.1.1 Switching Buffers
------------------------
-
- -- Function: magit-display-buffer buffer
-
-     This function is a wrapper around ‘display-buffer’ and is used to
-     display any Magit buffer.  It displays BUFFER in some window and,
-     unlike ‘display-buffer’, also selects that window, provided
-     ‘magit-display-buffer-noselect’ is ‘nil’.  It also runs the hooks
-     mentioned below.
-
- -- Variable: magit-display-buffer-noselect
-
-     When this is non-nil, then ‘magit-display-buffer’ only displays the
-     buffer but forgoes also selecting the window.  This variable should
-     not be set globally, it is only intended to be let-bound, by code
-     that automatically updates "the other window".  This is used for
-     example when the revision buffer is updated when you move inside
-     the log buffer.
-
- -- User Option: magit-display-buffer-function
-
-     The function specified here is called by ‘magit-display-buffer’
-     with one argument, a buffer, to actually display that buffer.  This
-     function should call ‘display-buffer’ with that buffer as first and
-     a list of display actions as second argument.
-
-     Magit provides several functions, listed below, that are suitable
-     values for this option.  If you want to use different rules, then a
-     good way of doing that is to start with a copy of one of these
-     functions and then adjust it to your needs.
-
-     Instead of using a wrapper around ‘display-buffer’, that function
-     itself can be used here, in which case the display actions have to
-     be specified by adding them to ‘display-buffer-alist’ instead.
-
-     To learn about display actions, see *note (elisp)Choosing a Window
-     for Display::.
-
- -- Function: magit-display-buffer-traditional buffer
-
-     This function is the current default value of the option
-     ‘magit-display-buffer-function’.  Before that option and this
-     function were added, the behavior was hard-coded in many places all
-     over the code base but now all the rules are contained in this one
-     function (except for the "noselect" special case mentioned above).
-
- -- Function: magit-display-buffer-same-window-except-diff-v1
-
-     This function displays most buffers in the currently selected
-     window.  If a buffer’s mode derives from ‘magit-diff-mode’ or
-     ‘magit-process-mode’, it is displayed in another window.
-
- -- Function: magit-display-buffer-fullframe-status-v1
-
-     This function fills the entire frame when displaying a status
-     buffer.  Otherwise, it behaves like
-     ‘magit-display-buffer-traditional’.
-
- -- Function: magit-display-buffer-fullframe-status-topleft-v1
-
-     This function fills the entire frame when displaying a status
-     buffer.  It behaves like ‘magit-display-buffer-fullframe-status-v1’
-     except that it displays buffers that derive from ‘magit-diff-mode’
-     or ‘magit-process-mode’ to the top or left of the current buffer
-     rather than to the bottom or right.  As a result, Magit buffers
-     tend to pop up on the same side as they would if
-     ‘magit-display-buffer-traditional’ were in use.
-
- -- Function: magit-display-buffer-fullcolumn-most-v1
-
-     This function displays most buffers so that they fill the entire
-     height of the frame.  However, the buffer is displayed in another
-     window if (1) the buffer’s mode derives from ‘magit-process-mode’,
-     or (2) the buffer’s mode derives from ‘magit-diff-mode’, provided
-     that the mode of the current buffer derives from ‘magit-log-mode’
-     or ‘magit-cherry-mode’.
-
- -- User Option: magit-pre-display-buffer-hook
-
-     This hook is run by ‘magit-display-buffer’ before displaying the
-     buffer.
-
- -- Function: magit-save-window-configuration
-
-     This function saves the current window configuration.  Later when
-     the buffer is buried, it may be restored by
-     ‘magit-restore-window-configuration’.
-
- -- User Option: magit-post-display-buffer-hook
-
-     This hook is run by ‘magit-display-buffer’ after displaying the
-     buffer.
-
- -- Function: magit-maybe-set-dedicated
-
-     This function remembers if a new window had to be created to
-     display the buffer, or whether an existing window was reused.  This
-     information is later used by ‘magit-mode-quit-window’, to determine
-     whether the window should be deleted when its last Magit buffer is
-     buried.
-
-
-File: magit.info,  Node: Naming Buffers,  Next: Quitting Windows,  Prev: Switching Buffers,  Up: Modes and Buffers
-
-4.1.2 Naming Buffers
---------------------
-
- -- User Option: magit-generate-buffer-name-function
-
-     The function used to generate the names of Magit buffers.
-
-     Such a function should take the options
-     ‘magit-uniquify-buffer-names’ as well as ‘magit-buffer-name-format’
-     into account.  If it doesn’t, then should be clearly stated in the
-     doc-string.  And if it supports %-sequences beyond those mentioned
-     in the doc-string of the option ‘magit-buffer-name-format’, then
-     its own doc-string should describe the additions.
-
- -- Function: magit-generate-buffer-name-default-function mode
-
-     This function returns a buffer name suitable for a buffer whose
-     major-mode is MODE and which shows information about the repository
-     in which ‘default-directory’ is located.
-
-     This function uses ‘magit-buffer-name-format’ and supporting all of
-     the %-sequences mentioned the documentation of that option.  It
-     also respects the option ‘magit-uniquify-buffer-names’.
-
- -- User Option: magit-buffer-name-format
-
-     The format string used to name Magit buffers.
-
-     At least the following %-sequences are supported:
-
-        • ‘%m’
-
-          The name of the major-mode, but with the ‘-mode’ suffix
-          removed.
-
-        • ‘%M’
-
-          Like ‘%m’ but abbreviate ‘magit-status-mode’ as ‘magit’.
-
-        • ‘%v’
-
-          The value the buffer is locked to, in parentheses, or an empty
-          string if the buffer is not locked to a value.
-
-        • ‘%V’
-
-          Like ‘%v’, but the string is prefixed with a space, unless it
-          is an empty string.
-
-        • ‘%t’
-
-          The top-level directory of the working tree of the repository,
-          or if ‘magit-uniquify-buffer-names’ is non-nil an abbreviation
-          of that.
-
-        • ‘%x’
-
-          If ‘magit-uniquify-buffer-names’ is nil "*", otherwise the
-          empty string.  Due to limitations of the ‘uniquify’ package,
-          buffer names must end with the path.
-
-        • ‘%T’
-
-          Obsolete, use "%t%x" instead.  Like ‘%t’, but append an
-          asterisk if and only if ‘magit-uniquify-buffer-names’ is nil.
-
-     The value should always contain ‘%m’ or ‘%M’, ‘%v’ or ‘%V’, and
-     ‘%t’ (or the obsolete ‘%T’).  If ‘magit-uniquify-buffer-names’ is
-     non-nil, then the value must end with ‘%t’ or ‘%t%x’ (or the
-     obsolete ‘%T’).  See issue #2841.
-
- -- User Option: magit-uniquify-buffer-names
-
-     This option controls whether the names of Magit buffers are
-     uniquified.  If the names are not being uniquified, then they
-     contain the full path of the top-level of the working tree of the
-     corresponding repository.  If they are being uniquified, then they
-     end with the basename of the top-level, or if that would conflict
-     with the name used for other buffers, then the names of all these
-     buffers are adjusted until they no longer conflict.
-
-     This is done using the ‘uniquify’ package; customize its options to
-     control how buffer names are uniquified.
-
-
-File: magit.info,  Node: Quitting Windows,  Next: Automatic Refreshing of Magit Buffers,  Prev: Naming Buffers,  Up: Modes and Buffers
-
-4.1.3 Quitting Windows
-----------------------
-
-‘q’     (‘magit-mode-bury-buffer’)
-
-     This command buries the current Magit buffer.  With a prefix
-     argument, it instead kills the buffer.
-
- -- User Option: magit-bury-buffer-function
-
-     The function used to actually bury or kill the current buffer.
-
-     ‘magit-mode-bury-buffer’ calls this function with one argument.  If
-     the argument is non-nil, then the function has to kill the current
-     buffer.  Otherwise it has to bury it alive.  The default value
-     currently is ‘magit-restore-window-configuration’.
-
- -- Function: magit-restore-window-configuration kill-buffer
-
-     Bury or kill the current buffer using ‘quit-window’, which is
-     called with KILL-BUFFER as first and the selected window as second
-     argument.
-
-     Then restore the window configuration that existed right before the
-     current buffer was displayed in the selected frame.  Unfortunately
-     that also means that point gets adjusted in all the buffers, which
-     are being displayed in the selected frame.
-
- -- Function: magit-mode-quit-window kill-buffer
-
-     Bury or kill the current buffer using ‘quit-window’, which is
-     called with KILL-BUFFER as first and the selected window as second
-     argument.
-
-     Then, if the window was originally created to display a Magit
-     buffer and the buried buffer was the last remaining Magit buffer
-     that was ever displayed in the window, then that is deleted.
-
-
-File: magit.info,  Node: Automatic Refreshing of Magit Buffers,  Next: Automatic Saving of File-Visiting Buffers,  Prev: Quitting Windows,  Up: Modes and Buffers
-
-4.1.4 Automatic Refreshing of Magit Buffers
--------------------------------------------
-
-After running a command which may change the state of the current
-repository, the current Magit buffer and the corresponding status buffer
-are refreshed.  The status buffer may optionally be automatically
-refreshed whenever a buffer is saved to a file inside the respective
-repository.
-
-   Automatically refreshing Magit buffers ensures that the displayed
-information is up-to-date most of the time but can lead to a noticeable
-delay in big repositories.  Other Magit buffers are not refreshed to
-keep the delay to a minimum and also because doing so can sometimes be
-undesirable.
-
-   Buffers can also be refreshed explicitly, which is useful in buffers
-that weren’t current during the last refresh and after changes were made
-to the repository outside of Magit.
-
-‘g’     (‘magit-refresh’)
-
-     This command refreshes the current buffer if its major mode derives
-     from ‘magit-mode’ as well as the corresponding status buffer.
-
-     If the option ‘magit-revert-buffers’ calls for it, then it also
-     reverts all unmodified buffers that visit files being tracked in
-     the current repository.
-
-‘G’     (‘magit-refresh-all’)
-
-     This command refreshes all Magit buffers belonging to the current
-     repository and also reverts all unmodified buffers that visit files
-     being tracked in the current repository.
-
-     The file-visiting buffers are always reverted, even if
-     ‘magit-revert-buffers’ is nil.
-
- -- User Option: magit-refresh-buffer-hook
-
-     This hook is run in each Magit buffer that was refreshed during the
-     current refresh - normally the current buffer and the status
-     buffer.
-
- -- User Option: magit-refresh-status-buffer
-
-     When this option is non-nil, then the status buffer is
-     automatically refreshed after running git for side-effects, in
-     addition to the current Magit buffer, which is always refreshed
-     automatically.
-
-     Only set this to nil after exhausting all other options to improve
-     performance.
-
- -- Function: magit-after-save-refresh-status
-
-     This function is intended to be added to ‘after-save-hook’.  After
-     doing that the corresponding status buffer is refreshed whenever a
-     buffer is saved to a file inside a repository.
-
-     Note that refreshing a Magit buffer is done by re-creating its
-     contents from scratch, which can be slow in large repositories.  If
-     you are not satisfied with Magit’s performance, then you should
-     obviously not add this function to that hook.
-
-
-File: magit.info,  Node: Automatic Saving of File-Visiting Buffers,  Next: Automatic Reverting of File-Visiting Buffers,  Prev: Automatic Refreshing of Magit Buffers,  Up: Modes and Buffers
-
-4.1.5 Automatic Saving of File-Visiting Buffers
------------------------------------------------
-
-File-visiting buffers are by default saved at certain points in time.
-This doesn’t guarantee that Magit buffers are always up-to-date, but,
-provided one only edits files by editing them in Emacs and uses only
-Magit to interact with Git, one can be fairly confident.  When in doubt
-or after outside changes, type ‘g’ (‘magit-refresh’) to save and refresh
-explicitly.
-
- -- User Option: magit-save-repository-buffers
-
-     This option controls whether file-visiting buffers are saved before
-     certain events.
-
-     If this is non-nil then all modified file-visiting buffers
-     belonging to the current repository may be saved before running
-     commands, before creating new Magit buffers, and before explicitly
-     refreshing such buffers.  If this is ‘dontask’ then this is done
-     without user intervention.  If it is ‘t’ then the user has to
-     confirm each save.
-
-
-File: magit.info,  Node: Automatic Reverting of File-Visiting Buffers,  Prev: Automatic Saving of File-Visiting Buffers,  Up: Modes and Buffers
-
-4.1.6 Automatic Reverting of File-Visiting Buffers
---------------------------------------------------
-
-By default Magit automatically reverts buffers that are visiting files
-that are being tracked in a Git repository, after they have changed on
-disk.  When using Magit one often changes files on disk by running git,
-i.e.  "outside Emacs", making this a rather important feature.
-
-   For example, if you discard a change in the status buffer, then that
-is done by running ‘git apply --reverse ...’, and Emacs considers the
-file to have "changed on disk".  If Magit did not automatically revert
-the buffer, then you would have to type ‘M-x revert-buffer RET RET’ in
-the visiting buffer before you could continue making changes.
-
- -- User Option: magit-auto-revert-mode
-
-     When this mode is enabled, then buffers that visit tracked files,
-     are automatically reverted after the visited files changed on disk.
-
- -- User Option: global-auto-revert-mode
-
-     When this mode is enabled, then any file-visiting buffer is
-     automatically reverted after the visited file changed on disk.
-
-     If you like buffers that visit tracked files to be automatically
-     reverted, then you might also like any buffer to be reverted, not
-     just those visiting tracked files.  If that is the case, then
-     enable this mode _instead of_ ‘magit-auto-revert-mode’.
-
- -- User Option: magit-auto-revert-immediately
-
-     This option controls whether Magit reverts buffers immediately.
-
-     If this is non-nil and either ‘global-auto-revert-mode’ or
-     ‘magit-auto-revert-mode’ is enabled, then Magit immediately reverts
-     buffers by explicitly calling ‘auto-revert-buffers’ after running
-     git for side-effects.
-
-     If ‘auto-revert-use-notify’ is non-nil (and file notifications are
-     actually supported), then ‘magit-auto-revert-immediately’ does not
-     have to be non-nil, because the reverts happen immediately anyway.
-
-     If ‘magit-auto-revert-immediately’ and ‘auto-revert-use-notify’ are
-     both ‘nil’, then reverts happen after ‘auto-revert-interval’
-     seconds of user inactivity.  That is not desirable.
-
- -- User Option: auto-revert-use-notify
-
-     This option controls whether file notification functions should be
-     used.  Note that this variable unfortunately defaults to ‘t’ even
-     on systems on which file notifications cannot be used.
-
- -- User Option: magit-auto-revert-tracked-only
-
-     This option controls whether ‘magit-auto-revert-mode’ only reverts
-     tracked files or all files that are located inside Git
-     repositories, including untracked files and files located inside
-     Git’s control directory.
-
- -- Command: auto-revert-mode
-
-     The global mode ‘magit-auto-revert-mode’ works by turning on this
-     local mode in the appropriate buffers (but
-     ‘global-auto-revert-mode’ is implemented differently).  You can
-     also turn it on or off manually, which might be necessary if Magit
-     does not notice that a previously untracked file now is being
-     tracked or vice-versa.
-
- -- User Option: auto-revert-stop-on-user-input
-
-     This option controls whether the arrival of user input suspends the
-     automatic reverts for ‘auto-revert-interval’ seconds.
-
- -- User Option: auto-revert-interval
-
-     This option controls for how many seconds Emacs waits before
-     resuming suspended reverts.
-
- -- User Option: auto-revert-buffer-list-filter
-
-     This option specifies an additional filter used by
-     ‘auto-revert-buffers’ to determine whether a buffer should be
-     reverted or not.
-
-     This option is provided by ‘magit’, which also redefines
-     ‘auto-revert-buffers’ to respect it.  Magit users who do not turn
-     on the local mode ‘auto-revert-mode’ themselves, are best served by
-     setting the value to ‘magit-auto-revert-repository-buffers-p’.
-
-     However the default is nil, to not disturb users who do use the
-     local mode directly.  If you experience delays when running Magit
-     commands, then you should consider using one of the predicates
-     provided by Magit - especially if you also use Tramp.
-
-     Users who do turn on ‘auto-revert-mode’ in buffers in which Magit
-     doesn’t do that for them, should likely not use any filter.  Users
-     who turn on ‘global-auto-revert-mode’, do not have to worry about
-     this option, because it is disregarded if the global mode is
-     enabled.
-
- -- User Option: auto-revert-verbose
-
-     This option controls whether Emacs reports when a buffer has been
-     reverted.
-
-   The options with the ‘auto-revert-’ prefix are located in the Custom
-group named ‘auto-revert’.  The other, magit-specific, options are
-located in the ‘magit’ group.
-
-* Menu:
-
-* Risk of Reverting Automatically::
-
-
-File: magit.info,  Node: Risk of Reverting Automatically,  Up: Automatic Reverting of File-Visiting Buffers
-
-Risk of Reverting Automatically
-...............................
-
-For the vast majority users automatically reverting file-visiting
-buffers after they have changed on disk is harmless.
-
-   If a buffer is modified (i.e.  it contains changes that haven’t been
-saved yet), then Emacs would refuse to automatically revert it.  If you
-save a previously modified buffer, then that results in what is seen by
-Git as an uncommitted change.  Git would then refuse to carry out any
-commands that would cause these changes to be lost.  In other words, if
-there is anything that could be lost, then either Git or Emacs would
-refuse to discard the changes.
-
-   However if you do use file-visiting buffers as a sort of ad hoc
-"staging area", then the automatic reverts could potentially cause data
-loss.  So far I have only heard from one user who uses such a workflow.
-
-   An example: You visit some file in a buffer, edit it, and save the
-changes.  Then, outside of Emacs (or at least not using Magit or by
-saving the buffer) you change the file on disk again.  At this point the
-buffer is the only place where the intermediate version still exists.
-You have saved the changes to disk, but that has since been overwritten.
-Meanwhile Emacs considers the buffer to be unmodified (because you have
-not made any changes to it since you last saved it to the visited file)
-and therefore would not object to it being automatically reverted.  At
-this point an Auto-Revert mode would kick in.  It would check whether
-the buffer is modified and since that is not the case it would revert
-it.  The intermediate version would be lost.  (Actually you could still
-get it back using the ‘undo’ command.)
-
-   If your workflow depends on Emacs preserving the intermediate version
-in the buffer, then you have to disable all Auto-Revert modes.  But
-please consider that such a workflow would be dangerous even without
-using an Auto-Revert mode, and should therefore be avoided.  If Emacs
-crashed or if you quit Emacs by mistake, then you would also lose the
-buffer content.  There would be no autosave file still containing the
-intermediate version (because that was deleted when you saved the
-buffer) and you would not be asked whether you want to save the buffer
-(because it isn’t modified).
-
-
-File: magit.info,  Node: Sections,  Next: Popup Buffers and Prefix Commands,  Prev: Modes and Buffers,  Up: Interface Concepts
-
-4.2 Sections
-============
-
-Magit buffers are organized into nested sections, which can be collapsed
-and expanded, similar to how sections are handled in Org mode.  Each
-section also has a type, and some sections also have a value.  For each
-section type there can also be a local keymap, shared by all sections of
-that type.
-
-   Taking advantage of the section value and type, many commands operate
-on the current section, or when the region is active and selects
-sections of the same type, all of the selected sections.  Commands that
-only make sense for a particular section type (as opposed to just
-behaving differently depending on the type) are usually bound in section
-type keymaps.
-
-* Menu:
-
-* Section Movement::
-* Section Visibility::
-* Section Hooks::
-* Section Types and Values::
-* Section Options::
-
-
-File: magit.info,  Node: Section Movement,  Next: Section Visibility,  Up: Sections
-
-4.2.1 Section Movement
-----------------------
-
-To move within a section use the usual keys (‘C-p’, ‘C-n’, ‘C-b’, ‘C-f’
-etc), whose global bindings are not shadowed.  To move to another
-section use the following commands.
-
-‘p’     (‘magit-section-backward’)
-
-     When not at the beginning of a section, then move to the beginning
-     of the current section.  At the beginning of a section, instead
-     move to the beginning of the previous visible section.
-
-‘n’     (‘magit-section-forward’)
-
-     Move to the beginning of the next visible section.
-
-‘M-p’     (‘magit-section-backward-siblings’)
-
-     Move to the beginning of the previous sibling section.  If there is
-     no previous sibling section, then move to the parent section
-     instead.
-
-‘M-n’     (‘magit-section-forward-siblings’)
-
-     Move to the beginning of the next sibling section.  If there is no
-     next sibling section, then move to the parent section instead.
-
-‘^’     (‘magit-section-up’)
-
-     Move to the beginning of the parent of the current section.
-
-   The above commands all call the hook ‘magit-section-movement-hook’.
-Any of the functions listed below can be used as members of this hook.
-
- -- Variable: magit-section-movement-hook
-
-     This hook is run by all of the above movement commands, after
-     arriving at the destination.
-
- -- Function: magit-hunk-set-window-start
-
-     This hook function ensures that the beginning of the current
-     section is visible, provided it is a ‘hunk’ section.  Otherwise, it
-     does nothing.  This function is a member of the hook’s default
-     value.
-
- -- Function: magit-section-set-window-start
-
-     This hook function ensures that the beginning of the current
-     section is visible, regardless of the section’s type.  If you add
-     this to ‘magit-section-movement-hook’, then you must remove the
-     hunk-only variant in turn.
-
- -- Function: magit-log-maybe-show-more-commits
-
-     This hook function only has an effect in log buffers, and ‘point’
-     is on the "show more" section.  If that is the case, then it
-     doubles the number of commits that are being shown.  This function
-     is a member of the hook’s default value.
-
- -- Function: magit-log-maybe-update-revision-buffer
-
-     When moving inside a log buffer, then this function updates the
-     revision buffer, provided it is already being displayed in another
-     window of the same frame.  This function is a member of the hook’s
-     default value.
-
- -- Function: magit-log-maybe-update-blob-buffer
-
-     When moving inside a log buffer and another window of the same
-     frame displays a blob buffer, then this function instead displays
-     the blob buffer for the commit at point in that window.
-
- -- Function: magit-status-maybe-update-revision-buffer
-
-     When moving inside a status buffer, then this function updates the
-     revision buffer, provided it is already being displayed in another
-     window of the same frame.
-
- -- Function: magit-status-maybe-update-blob-buffer
-
-     When moving inside a status buffer and another window of the same
-     frame displays a blob buffer, then this function instead displays
-     the blob buffer for the commit at point in that window.
-
- -- User Option: magit-update-other-window-delay
-
-     Delay before automatically updating the other window.
-
-     When moving around in certain buffers, then certain other buffers,
-     which are being displayed in another window, may optionally be
-     updated to display information about the section at point.
-
-     When holding down a key to move by more than just one section, then
-     that would update that buffer for each section on the way.  To
-     prevent that, updating the revision buffer is delayed, and this
-     option controls for how long.  For optimal experience you might
-     have to adjust this delay and/or the keyboard repeat rate and delay
-     of your graphical environment or operating system.
-
-
-File: magit.info,  Node: Section Visibility,  Next: Section Hooks,  Prev: Section Movement,  Up: Sections
-
-4.2.2 Section Visibility
-------------------------
-
-Magit provides many commands for changing the visibility of sections,
-but all you need to get started are the next two.
-
-‘TAB’     (‘magit-section-toggle’)
-
-     Toggle the visibility of the body of the current section.
-
-‘C-<tab>’     (‘magit-section-cycle’)
-
-     Cycle the visibility of current section and its children.
-
-‘M-<tab>’     (‘magit-section-cycle-diffs’)
-
-     Cycle the visibility of diff-related sections in the current
-     buffer.
-
-‘S-<tab>’     (‘magit-section-cycle-global’)
-
-     Cycle the visibility of all sections in the current buffer.
-
-‘1’     (‘magit-section-show-level-1’)
-‘2’     (‘magit-section-show-level-2’)
-‘3’     (‘magit-section-show-level-3’)
-‘4’     (‘magit-section-show-level-4’)
-
-     Show sections surrounding the current section up to level N.
-
-‘M-1’     (‘magit-section-show-level-1-all’)
-‘M-2’     (‘magit-section-show-level-2-all’)
-‘M-3’     (‘magit-section-show-level-3-all’)
-‘M-4’     (‘magit-section-show-level-4-all’)
-
-     Show all sections up to level N.
-
-   Some functions, which are used to implement the above commands, are
-also exposed as commands themselves.  By default no keys are bound to
-these commands, as they are generally perceived to be much less useful.
-But your mileage may vary.
-
- -- Command: magit-section-show
-
-     Show the body of the current section.
-
- -- Command: magit-section-hide
-
-     Hide the body of the current section.
-
- -- Command: magit-section-show-headings
-
-     Recursively show headings of children of the current section.  Only
-     show the headings.  Previously shown text-only bodies are hidden.
-
- -- Command: magit-section-show-children
-
-     Recursively show the bodies of children of the current section.
-     With a prefix argument show children down to the level of the
-     current section, and hide deeper children.
-
- -- Command: magit-section-hide-children
-
-     Recursively hide the bodies of children of the current section.
-
- -- Command: magit-section-toggle-children
-
-     Toggle visibility of bodies of children of the current section.
-
-   When a buffer is first created then some sections are shown expanded
-while others are not.  This is hard coded.  When a buffer is refreshed
-then the previous visibility is preserved.  The initial visibility of
-certain sections can also be overwritten using the hook
-‘magit-section-set-visibility-hook’.
-
- -- User Option: magit-section-initial-visibility-alist
-
-     This options can be used to override the initial visibility of
-     sections.  In the future it will also be used to define the
-     defaults, but currently a section’s default is still hardcoded.
-
-     The value is an alist.  Each element maps a section type or lineage
-     to the initial visibility state for such sections.  The state has
-     to be one of ‘show’ or ‘hide’, or a function that returns one of
-     these symbols.  A function is called with the section as the only
-     argument.
-
-     Use the command ‘magit-describe-section-briefly’ to determine a
-     section’s lineage or type.  The vector in the output is the section
-     lineage and the type is the first element of that vector.
-     Wildcards can be used, see ‘magit-section-match’.
-
- -- User Option: magit-section-cache-visibility
-
-     This option controls for which sections the previous visibility
-     state should be restored if a section disappears and later appears
-     again.  The value is a boolean or a list of section types.  If t,
-     then the visibility of all sections is cached.  Otherwise this is
-     only done for sections whose type matches one of the listed types.
-
-     This requires that the function ‘magit-section-cached-visibility’
-     is a member of ‘magit-section-set-visibility-hook’.
-
- -- Variable: magit-section-set-visibility-hook
-
-     This hook is run when first creating a buffer and also when
-     refreshing an existing buffer, and is used to determine the
-     visibility of the section currently being inserted.
-
-     Each function is called with one argument, the section being
-     inserted.  It should return ‘hide’ or ‘show’, or to leave the
-     visibility undefined ‘nil’.  If no function decides on the
-     visibility and the buffer is being refreshed, then the visibility
-     is preserved; or if the buffer is being created, then the hard
-     coded default is used.
-
-     Usually this should only be used to set the initial visibility but
-     not during refreshes.  If ‘magit-insert-section--oldroot’ is
-     non-nil, then the buffer is being refreshed and these functions
-     should immediately return ‘nil’.
-
-
-File: magit.info,  Node: Section Hooks,  Next: Section Types and Values,  Prev: Section Visibility,  Up: Sections
-
-4.2.3 Section Hooks
--------------------
-
-Which sections are inserted into certain buffers is controlled with
-hooks.  This includes the status and the refs buffers.  For other
-buffers, e.g.  log and diff buffers, this is not possible.  The command
-‘magit-describe-section’ can be used to see which hook (if any) was
-responsible for inserting the section at point.
-
-   For buffers whose sections can be customized by the user, a hook
-variable called ‘magit-TYPE-sections-hook’ exists.  This hook should be
-changed using ‘magit-add-section-hook’.  Avoid using ‘add-hooks’ or the
-Custom interface.
-
-   The various available section hook variables are described later in
-this manual along with the appropriate "section inserter functions".
-
- -- Function: magit-add-section-hook hook function &optional at append
-          local
-
-     Add the function FUNCTION to the value of section hook HOOK.
-
-     Add FUNCTION at the beginning of the hook list unless optional
-     APPEND is non-nil, in which case FUNCTION is added at the end.  If
-     FUNCTION already is a member then move it to the new location.
-
-     If optional AT is non-nil and a member of the hook list, then add
-     FUNCTION next to that instead.  Add before or after AT, or replace
-     AT with FUNCTION depending on APPEND.  If APPEND is the symbol
-     ‘replace’, then replace AT with FUNCTION.  For any other non-nil
-     value place FUNCTION right after AT.  If nil, then place FUNCTION
-     right before AT.  If FUNCTION already is a member of the list but
-     AT is not, then leave FUNCTION where ever it already is.
-
-     If optional LOCAL is non-nil, then modify the hook’s buffer-local
-     value rather than its global value.  This makes the hook local by
-     copying the default value.  That copy is then modified.
-
-     HOOK should be a symbol.  If HOOK is void, it is first set to nil.
-     HOOK’s value must not be a single hook function.  FUNCTION should
-     be a function that takes no arguments and inserts one or multiple
-     sections at point, moving point forward.  FUNCTION may choose not
-     to insert its section(s), when doing so would not make sense.  It
-     should not be abused for other side-effects.
-
-   To remove a function from a section hook, use ‘remove-hook’.
-
-
-File: magit.info,  Node: Section Types and Values,  Next: Section Options,  Prev: Section Hooks,  Up: Sections
-
-4.2.4 Section Types and Values
-------------------------------
-
-Each section has a type, for example ‘hunk’, ‘file’, and ‘commit’.
-Instances of certain section types also have a value.  The value of a
-section of type ‘file’, for example, is a file name.
-
-   Users usually do not have to worry about a section’s type and value,
-but knowing them can be handy at times.
-
-‘M-x magit-describe-section-briefly’     (‘magit-describe-section-briefly’)
-
-     Show information about the section at point in the echo area, as
-     "#<magit-section VALUE [TYPE PARENT-TYPE...] BEGINNING-END>".
-
-   Many commands behave differently depending on the type of the section
-at point and/or somehow consume the value of that section.  But that is
-only one of the reasons why the same key may do something different,
-depending on what section is current.
-
-   Additionally for each section type a keymap *might* be defined, named
-‘magit-TYPE-section-map’.  That keymap is used as text property keymap
-of all text belonging to any section of the respective type.  If such a
-map does not exist for a certain type, then you can define it yourself,
-and it will automatically be used.
-
-
-File: magit.info,  Node: Section Options,  Prev: Section Types and Values,  Up: Sections
-
-4.2.5 Section Options
----------------------
-
-This section describes options that have an effect on more than just a
-certain type of sections.  As you can see there are not many of those.
-
- -- User Option: magit-section-show-child-count
-
-     Whether to append the number of children to section headings.  This
-     only affects sections that could benefit from this information.
-
-
-File: magit.info,  Node: Popup Buffers and Prefix Commands,  Next: Completion Confirmation and the Selection,  Prev: Sections,  Up: Interface Concepts
-
-4.3 Popup Buffers and Prefix Commands
-=====================================
-
-Many Magit commands are implemented using *popup buffers*.  First the
-user invokes a *popup* or *prefix* command, which causes a popup buffer
-with the available *infix* arguments and *suffix* commands to be
-displayed.  The user then optionally toggles/sets some arguments and
-finally invokes one of the suffix commands.
-
-   This is implemented in the library ‘magit-popup’.  Earlier releases
-used the library ‘magit-key-mode’.  A future release will switch to a
-yet-to-be-written successor, which will likely be named ‘transient’.
-
-   Because ‘magit-popup’ can also be used by other packages without
-having to depend on all of Magit, it is documented in its own manual.
-See *note (magit-popup)Top::.
-
-‘C-c C-c’     (‘magit-dispatch-popup’)
-
-     This popup command shows a buffer featuring all other Magit popup
-     commands as well as some other commands that are not popup commands
-     themselves.
-
-   This command is also, or especially, useful outside Magit buffers, so
-you should setup a global binding:
-
-     (global-set-key (kbd "C-x M-g") 'magit-dispatch-popup)
-
-   Most popups set their initial arguments according to the
-corresponding ‘magit-*-arguments’ variable.  Two popups, the log and
-diff popups (see *note Logging:: and *note Diffing::), may behave a bit
-differently, depending on the value of ‘magit-use-sticky-arguments’.
-
- -- User Option: magit-use-sticky-arguments
-
-     This option controls how diff and log commands reuse arguments from
-     existing buffers.
-
-     When ‘t’ (the default value), the log or diff popup reuses the
-     arguments from the current repository’s log or diff buffer,
-     respectively.  When no log or diff buffer exists for the current
-     repository, these popups use the default value of
-     ‘magit-log-arguments’ or ‘magit-diff-arguments’.
-
-     When ‘current’, log and diff popups will only reuse the arguments
-     if the current buffer is derived from ‘magit-log-mode’ or
-     ‘magit-diff-mode’, respectively.
-
-     When ‘nil’, the default value of ‘magit-log-arguments’ or
-     ‘magit-diff-arguments’ is always used.
-
-
-File: magit.info,  Node: Completion Confirmation and the Selection,  Next: Running Git,  Prev: Popup Buffers and Prefix Commands,  Up: Interface Concepts
-
-4.4 Completion, Confirmation and the Selection
-==============================================
-
-* Menu:
-
-* Action Confirmation::
-* Completion and Confirmation::
-* The Selection::
-* The hunk-internal region::
-* Support for Completion Frameworks::
-* Additional Completion Options::
-
-
-File: magit.info,  Node: Action Confirmation,  Next: Completion and Confirmation,  Up: Completion Confirmation and the Selection
-
-4.4.1 Action Confirmation
--------------------------
-
-By default many actions that could potentially lead to data loss have to
-be confirmed.  This includes many very common actions, so this can
-quickly become annoying.  Many of these actions can be undone and if you
-have thought about how to undo certain mistakes, then it should be safe
-to disable confirmation for the respective actions.
-
-   The option ‘magit-no-confirm’ can be used to tell Magit to perform
-certain actions without the user having to confirm them.  Note that
-while this option can only be used to disable confirmation for a
-specific set of actions, the next section explains another way of
-telling Magit to ask fewer questions.
-
- -- User Option: magit-no-confirm
-
-     The value of this option is a list of symbols, representing actions
-     that do not have to be confirmed by the user before being carried
-     out.
-
-     By default many potentially dangerous commands ask the user for
-     confirmation.  Each of the below symbols stands for an action
-     which, when invoked unintentionally or without being fully aware of
-     the consequences, could lead to tears.  In many cases there are
-     several commands that perform variations of a certain action, so we
-     don’t use the command names but more generic symbols.
-
-        • Applying changes:
-
-             • ‘discard’ Discarding one or more changes (i.e.  hunks or
-               the complete diff for a file) loses that change,
-               obviously.
-
-             • ‘reverse’ Reverting one or more changes can usually be
-               undone by reverting the reversion.
-
-             • ‘stage-all-changes’, ‘unstage-all-changes’ When there are
-               both staged and unstaged changes, then un-/staging
-               everything would destroy that distinction.  Of course
-               that also applies when un-/staging a single change, but
-               then less is lost and one does that so often that having
-               to confirm every time would be unacceptable.
-
-        • Files:
-
-             • ‘delete’ When a file that isn’t yet tracked by Git is
-               deleted, then it is completely lost, not just the last
-               changes.  Very dangerous.
-
-             • ‘trash’ Instead of deleting a file it can also be move to
-               the system trash.  Obviously much less dangerous than
-               deleting it.
-
-               Also see option ‘magit-delete-by-moving-to-trash’.
-
-             • ‘resurrect’ A deleted file can easily be resurrected by
-               "deleting" the deletion, which is done using the same
-               command that was used to delete the same file in the
-               first place.
-
-             • ‘untrack’ Untracking a file can be undone by tracking it
-               again.
-
-             • ‘rename’ Renaming a file can easily be undone.
-
-        • Sequences:
-
-             • ‘reset-bisect’ Aborting (known to Git as "resetting") a
-               bisect operation loses all information collected so far.
-
-             • ‘abort-rebase’ Aborting a rebase throws away all already
-               modified commits, but it’s possible to restore those from
-               the reflog.
-
-             • ‘abort-merge’ Aborting a merge throws away all conflict
-               resolutions which have already been carried out by the
-               user.
-
-             • ‘merge-dirty’ Merging with a dirty worktree can make it
-               hard to go back to the state before the merge was
-               initiated.
-
-        • References:
-
-             • ‘delete-unmerged-branch’ Once a branch has been deleted,
-               it can only be restored using low-level recovery tools
-               provided by Git.  And even then the reflog is gone.  The
-               user always has to confirm the deletion of a branch by
-               accepting the default choice (or selecting another
-               branch), but when a branch has not been merged yet, also
-               make sure the user is aware of that.
-
-             • ‘delete-pr-branch’ When deleting a branch that was
-               created from a pull request and if no other branches
-               still exist on that remote, then ‘magit-branch-delete’
-               offers to delete the remote as well.  This should be safe
-               because it only happens if no other refs exist in the
-               remotes namespace, and you can recreate the remote if
-               necessary.
-
-             • ‘drop-stashes’ Dropping a stash is dangerous because Git
-               stores stashes in the reflog.  Once a stash is removed,
-               there is no going back without using low-level recovery
-               tools provided by Git.  When a single stash is dropped,
-               then the user always has to confirm by accepting the
-               default (or selecting another).  This action only
-               concerns the deletion of multiple stashes at once.
-
-        • Edit published history:
-
-          Without adding these symbols here, you will be warned before
-          editing commits that have already been pushed to one of the
-          branches listed in ‘magit-published-branches’.
-
-             • ‘amend-published’ Affects most commands that amend to
-               "HEAD".
-
-             • ‘rebase-published’ Affects commands that perform
-               interactive rebases.  This includes commands from the
-               commit popup that modify a commit other than "HEAD",
-               namely the various fixup and squash variants.
-
-             • ‘edit-published’ Affects the commands
-               ‘magit-edit-line-commit’ and
-               ‘magit-diff-edit-hunk-commit’.  These two commands make
-               it quite easy to accidentally edit a published commit, so
-               you should think twice before configuring them not to ask
-               for confirmation.
-
-          To disable confirmation completely, add all three symbols here
-          or set ‘magit-published-branches’ to ‘nil’.
-
-        • Various:
-
-             • ‘kill-process’ There seldom is a reason to kill a
-               process.
-
-        • Global settings:
-
-          Instead of adding all of the above symbols to the value of
-          this option, you can also set it to the atom ‘t’, which has
-          the same effect as adding all of the above symbols.  Doing
-          that most certainly is a bad idea, especially because other
-          symbols might be added in the future.  So even if you don’t
-          want to be asked for confirmation for any of these actions,
-          you are still better of adding all of the respective symbols
-          individually.
-
-          When ‘magit-wip-before-change-mode’ is enabled, then the
-          following actions can be undone fairly easily: ‘discard’,
-          ‘reverse’, ‘stage-all-changes’, and ‘unstage-all-changes’.  If
-          and only if this mode is enabled, then ‘safe-with-wip’ has the
-          same effect as adding all of these symbols individually.
-
-
-File: magit.info,  Node: Completion and Confirmation,  Next: The Selection,  Prev: Action Confirmation,  Up: Completion Confirmation and the Selection
-
-4.4.2 Completion and Confirmation
----------------------------------
-
-Many Magit commands ask the user to select from a list of possible
-things to act on, while offering the most likely choice as the default.
-For many of these commands the default is the thing at point, provided
-that it actually is a valid thing to act on.  For many commands that act
-on a branch, the current branch serves as the default if there is no
-branch at point.
-
-   These commands combine asking for confirmation and asking for a
-target to act on into a single action.  The user can confirm the default
-target using ‘RET’ or abort using ‘C-g’.  This is similar to a
-‘y-or-n-p’ prompt, but the keys to confirm or abort differ.
-
-   At the same time the user is also given the opportunity to select
-another target, which is useful because for some commands and/or in some
-situations you might want to select the action before selecting the
-target by moving to it.
-
-   However you might find that for some commands you always want to use
-the default target, if any, or even that you want the command to act on
-the default without requiring any confirmation at all.  The option
-‘magit-dwim-selection’ can be used to configure certain commands to that
-effect.
-
-   Note that when the region is active then many commands act on the
-things that are selected using a mechanism based on the region, in many
-cases after asking for confirmation.  This region-based mechanism is
-called the "selection" and is described in detail in the next section.
-When a selection exists that is valid for the invoked command, then that
-command never offers to act on something else, and whether it asks for
-confirmation is not controlled by this option.
-
-   Also note that Magit asks for confirmation of certain actions that
-are not coupled with completion (or the selection).  Such dialogs are
-also not affected by this option and are described in the previous
-section.
-
- -- User Option: magit-dwim-selection
-
-   This option can be used to tell certain commands to use the thing at
-point instead of asking the user to select a candidate to act on, with
-or without confirmation.
-
-   The value has the form ‘((COMMAND nil|PROMPT DEFAULT)...)’.
-
-   • COMMAND is the command that should not prompt for a choice.  To
-     have an effect, the command has to use the function
-     ‘magit-completing-read’ or a utility function which in turn uses
-     that function.
-
-   • If the command uses ‘magit-completing-read’ multiple times, then
-     PROMPT can be used to only affect one of these uses.  PROMPT, if
-     non-nil, is a regular expression that is used to match against the
-     PROMPT argument passed to ‘magit-completing-read’.
-
-   • DEFAULT specifies how to use the default.  If it is ‘t’, then the
-     DEFAULT argument passed to ‘magit-completing-read’ is used without
-     confirmation.  If it is ‘ask’, then the user is given a chance to
-     abort.  DEFAULT can also be ‘nil’, in which case the entry has no
-     effect.
-
-
-File: magit.info,  Node: The Selection,  Next: The hunk-internal region,  Prev: Completion and Confirmation,  Up: Completion Confirmation and the Selection
-
-4.4.3 The Selection
--------------------
-
-If the region is active, then many Magit commands act on the things that
-are selected using a mechanism based on the region instead of one single
-thing.  When the region is not active, then these commands act on the
-thing at point or read a single thing to act on.  This is described in
-the previous section — this section only covers how multiple things are
-selected, how that is visualized, and how certain commands behave when
-that is the case.
-
-   Magit’s mechanism for selecting multiple things, or rather sections
-that represent these things, is based on the Emacs region, but the area
-that Magit considers to be selected is typically larger than the region
-and additional restrictions apply.
-
-   Magit makes a distinction between a region that qualifies as forming
-a valid Magit selection and a region that does not.  If the region does
-not qualify, then it is displayed as it is in other Emacs buffers.  If
-the region does qualify as a Magit selection, then the selection is
-always visualized, while the region itself is only visualized if it
-begins and ends on the same line.
-
-   For a region to qualify as a Magit selection, it must begin in the
-heading of one section and end in the heading of a sibling section.
-Note that if the end of the region is at the very beginning of section
-heading (i.e.  at the very beginning of a line) then that section is
-considered to be *inside* the selection.
-
-   This is not consistent with how the region is normally treated in
-Emacs — if the region ends at the beginning of a line, then that line is
-outside the region.  Due to how Magit visualizes the selection, it
-should be obvious that this difference exists.
-
-   Not every command acts on every valid selection.  Some commands do
-not even consider the location of point, others may act on the section
-at point but not support acting on the selection, and even commands that
-do support the selection of course only do so if it selects things that
-they can act on.
-
-   This is the main reason why the selection must include the section at
-point.  Even if a selection exists, the invoked command may disregard
-it, in which case it may act on the current section only.  It is much
-safer to only act on the current section but not the other selected
-sections than it is to act on the current section *instead* of the
-selected sections.  The latter would be much more surprising and if the
-current section always is part of the selection, then that cannot
-happen.
-
- -- Variable: magit-keep-region-overlay
-
-     This variable controls whether the region is visualized as usual
-     even when a valid Magit selection or a hunk-internal region exists.
-     See the doc-string for more information.
-
-
-File: magit.info,  Node: The hunk-internal region,  Next: Support for Completion Frameworks,  Prev: The Selection,  Up: Completion Confirmation and the Selection
-
-4.4.4 The hunk-internal region
-------------------------------
-
-Somewhat related to the Magit selection described in the previous
-section is the hunk-internal region.
-
-   Like the selection, the hunk-internal region is based on the Emacs
-region but causes that region to not be visualized as it would in other
-Emacs buffers, and includes the line on which the region ends even if it
-ends at the very beginning of that line.
-
-   Unlike the selection, which is based on a region that must begin in
-the heading of one section and ends in the section of a sibling section,
-the hunk-internal region must begin inside the *body* of a hunk section
-and end in the body of the *same* section.
-
-   The hunk-internal region is honored by "apply" commands, which can,
-among other targets, act on a hunk.  If the hunk-internal region is
-active, then such commands act only on the marked part of the hunk
-instead of on the complete hunk.
-
-
-File: magit.info,  Node: Support for Completion Frameworks,  Next: Additional Completion Options,  Prev: The hunk-internal region,  Up: Completion Confirmation and the Selection
-
-4.4.5 Support for Completion Frameworks
----------------------------------------
-
-The built-in option ‘completing-read-function’ specifies the low-level
-function used by ‘completing-read’ to ask a user to select from a list
-of choices.  Its default value is ‘completing-read-default’.
-Alternative completion frameworks typically activate themselves by
-substituting their own implementation.
-
-   Mostly for historic reasons Magit provides a similar option named
-‘magit-completing-read-function’, which only controls the low-level
-function used by ‘magit-completing-read’.  This option also makes it
-possible to use a different completing mechanism for Magit than for the
-rest of Emacs, but doing that is not recommend.
-
-   You most likely don’t have to customize the magit-specific option to
-use an alternative completion framework.  For example, if you enable
-‘ivy-mode’, then Magit will respect that, and if you enable ‘helm-mode’,
-then you are done too.
-
-   However if you want to use Ido, then ‘ido-mode’ won’t do the trick.
-You will also have to install the ‘ido-completing-read+’ package and use
-‘magit-ido-completing-read’ as ‘magit-completing-read-function’.
-
- -- User Option: magit-completing-read-function
-
-     The value of this variable is the low-level function used to
-     perform completion by code that uses ‘magit-completing-read’ (as
-     opposed to the built-in ‘completing-read’).
-
-     The default value, ‘magit-builtin-completing-read’, is suitable for
-     the standard completion mechanism, ‘ivy-mode’, and ‘helm-mode’ at
-     least.
-
-     The built-in ‘completing-read’ and ‘completing-read-default’ are
-     *not* suitable to be used here.  ‘magit-builtin-completing-read’
-     performs some additional work, and any function used in its place
-     has to do the same.
-
- -- Function: magit-builtin-completing-read prompt choices &optional
-          predicate require-match initial-input hist def
-
-     This function performs completion using the built-in
-     ‘completion-read’ and does some additional magit-specific work.
-
- -- Function: magit-ido-completing-read prompt choices &optional
-          predicate require-match initial-input hist def
-
-     This function performs completion using ‘ido-completing-read+’ from
-     the package by the same name (which you have to explicitly install)
-     and does some additional magit-specific work.
-
-     We have to use ‘ido-completing-read+’ instead of the
-     ‘ido-completing-read’ that comes with Ido itself, because the
-     latter, while intended as a drop-in replacement, cannot serve that
-     purpose because it violates too many of the implicit conventions.
-
- -- Function: magit-completing-read prompt choices &optional predicate
-          require-match initial-input hist def fallback
-
-     This is the function that Magit commands use when they need the
-     user to select a single thing to act on.  The arguments have the
-     same meaning as for ‘completing-read’, except for FALLBACK, which
-     is unique to this function and is described below.
-
-     Instead of asking the user to choose from a list of possible
-     candidates, this function may just return the default specified by
-     DEF, with or without requiring user confirmation.  Whether that is
-     the case depends on PROMPT, ‘this-command’ and
-     ‘magit-dwim-selection’.  See the documentation of the latter for
-     more information.
-
-     If it does read a value in the minibuffer, then this function acts
-     similar to ‘completing-read’, except for the following:
-
-        • If REQUIRE-MATCH is ‘nil’ and the user exits without a choice,
-          then ‘nil’ is returned instead of an empty string.
-
-        • If REQUIRE-MATCH is non-nil and the users exits without a
-          choice, an user-error is raised.
-
-        • FALLBACK specifies a secondary default that is only used if
-          the primary default DEF is ‘nil’.  The secondary default is
-          not subject to ‘magit-dwim-selection’ — if DEF is ‘nil’ but
-          FALLBACK is not, then this function always asks the user to
-          choose a candidate, just as if both defaults were ‘nil’.
-
-        • ": " is appended to PROMPT.
-
-        • PROMPT is modified to end with \" (default DEF|FALLBACK): \"
-          provided that DEF or FALLBACK is non-nil, that neither
-          ‘ivy-mode’ nor ‘helm-mode’ is enabled, and that
-          ‘magit-completing-read-function’ is set to its default value
-          of ‘magit-builtin-completing-read’.
-
-
-File: magit.info,  Node: Additional Completion Options,  Prev: Support for Completion Frameworks,  Up: Completion Confirmation and the Selection
-
-4.4.6 Additional Completion Options
------------------------------------
-
- -- User Option: magit-list-refs-sortby
-
-     For many commands that read a ref or refs from the user, the value
-     of this option can be used to control the order of the refs.  Valid
-     values include any key accepted by the ‘--sort’ flag of ‘git
-     for-each-ref’.  By default, refs are sorted alphabetically by their
-     full name (e.g., "refs/heads/master").
-
-
-File: magit.info,  Node: Running Git,  Prev: Completion Confirmation and the Selection,  Up: Interface Concepts
-
-4.5 Running Git
-===============
-
-* Menu:
-
-* Viewing Git Output::
-* Git Process Status::
-* Running Git Manually::
-* Git Executable::
-* Global Git Arguments::
-
-
-File: magit.info,  Node: Viewing Git Output,  Next: Git Process Status,  Up: Running Git
-
-4.5.1 Viewing Git Output
-------------------------
-
-Magit runs Git either for side-effects (e.g.  when pushing) or to get
-some value (e.g.  the name of the current branch).
-
-   When Git is run for side-effects, the process output is logged in a
-per-repository log buffer, which can be consulted using the
-‘magit-process’ command when things don’t go as expected.
-
-   The output/errors for up to ‘magit-process-log-max’ Git commands are
-retained.
-
-‘$’     (‘magit-process’)
-
-     This commands displays the process buffer for the current
-     repository.
-
-   Inside that buffer, the usual key bindings for navigating and showing
-sections are available.  There is one additional command.
-
-‘k’     (‘magit-process-kill’)
-
-     This command kills the process represented by the section at point.
-
- -- User Option: magit-git-debug
-
-     When this is non-nil then the output of all calls to git are logged
-     in the process buffer.  This is useful when debugging, otherwise it
-     just negatively affects performance.
-
-
-File: magit.info,  Node: Git Process Status,  Next: Running Git Manually,  Prev: Viewing Git Output,  Up: Running Git
-
-4.5.2 Git Process Status
-------------------------
-
-When a Git process is running for side-effects, Magit displays an
-indicator in the mode line, using the ‘magit-mode-line-process’ face.
-
-   If the Git process exits successfully, the process indicator is
-removed from the mode line immediately.
-
-   In the case of a Git error, the process indicator is not removed, but
-is instead highlighted with the ‘magit-mode-line-process-error’ face,
-and the error details from the process buffer are provided as a tooltip
-for mouse users.  This error indicator persists in the mode line until
-the next magit buffer refresh.
-
-   If you do not wish process errors to be indicated in the mode line,
-customize the ‘magit-process-display-mode-line-error’ user option.
-
-   Process errors are additionally indicated at the top of the status
-buffer.
-
-
-File: magit.info,  Node: Running Git Manually,  Next: Git Executable,  Prev: Git Process Status,  Up: Running Git
-
-4.5.3 Running Git Manually
---------------------------
-
-While Magit provides many Emacs commands to interact with Git, it does
-not cover everything.  In those cases your existing Git knowledge will
-come in handy.  Magit provides some commands for running arbitrary Git
-commands by typing them into the minibuffer, instead of having to switch
-to a shell.
-
-‘!’     (‘magit-run-popup’)
-
-     Shows the popup buffer featuring the below suffix commands.
-
-‘! !’     (‘magit-git-command-topdir’)
-
-     This command reads a command from the user and executes it in the
-     top-level directory of the current working tree.
-
-     The string "git " is used as initial input when prompting the user
-     for the command.  It can be removed to run another command.
-
-‘! p’     (‘magit-git-command’)
-
-     This command reads a command from the user and executes it in
-     ‘default-directory’.  With a prefix argument the command is
-     executed in the top-level directory of the current working tree
-     instead.
-
-     The string "git " is used as initial input when prompting the user
-     for the command.  It can be removed to run another command.
-
-‘! s’     (‘magit-shell-command-topdir’)
-
-     This command reads a command from the user and executes it in the
-     top-level directory of the current working tree.
-
-‘! S’     (‘magit-shell-command’)
-
-     This command reads a command from the user and executes it in
-     ‘default-directory’.  With a prefix argument the command is
-     executed in the top-level directory of the current working tree
-     instead.
-
- -- User Option: magit-shell-command-verbose-prompt
-
-     Whether the prompt, used by the the above commands when reading a
-     shell command, shows the directory in which it will be run.
-
-   These suffix commands start external gui tools.
-
-‘! k’     (‘magit-run-gitk’)
-
-     This command runs ‘gitk’ in the current repository.
-
-‘! a’     (‘magit-run-gitk-all’)
-
-     This command runs ‘gitk --all’ in the current repository.
-
-‘! b’     (‘magit-run-gitk-branches’)
-
-     This command runs ‘gitk --branches’ in the current repository.
-
-‘! g’     (‘magit-run-git-gui’)
-
-     This command runs ‘git gui’ in the current repository.
-
-
-File: magit.info,  Node: Git Executable,  Next: Global Git Arguments,  Prev: Running Git Manually,  Up: Running Git
-
-4.5.4 Git Executable
---------------------
-
-Except on MS Windows, Magit defaults to running Git without specifying
-the path to the git executable.  Instead the first executable found by
-Emacs on ‘exec-path’ is used (whose value in turn is set based on the
-value of the environment variable ‘$PATH’ when Emacs was started).
-
-   This has the advantage that it continues to work even when using
-Tramp to connect to a remote machine on which the executable is found in
-a different place.  The downside is that if you have multiple versions
-of Git installed, then you might end up using another version than the
-one you think you are using.
-
-‘M-x magit-version’     (‘magit-version’)
-
-     This command shows the currently used versions of Magit, Git, and
-     Emacs in the echo area.  Non-interactively this just returns the
-     Magit version.
-
-   When the ‘system-type’ is ‘windows-nt’, then ‘magit-git-executable’
-is set to an absolute path when Magit is first loaded.  This is
-necessary because Git on that platform comes with several wrapper
-scripts for the actual git binary, which are also placed on ‘$PATH’, and
-using one of these wrappers instead of the binary would degrade
-performance horribly.
-
-   If Magit doesn’t find the correct executable then you *can* work
-around that by setting ‘magit-git-executable’ to an absolute path.  But
-note that doing so is a kludge.  It is better to make sure the order in
-the environment variable ‘$PATH’ is correct, and that Emacs is started
-with that environment in effect.  The command
-‘magit-debug-git-executable’ can be useful to find out where Emacs is
-searching for git.  If you have to connect from Windows to a non-Windows
-machine, then you must change the value to "git".
-
- -- User Option: magit-git-executable
-
-     The git executable used by Magit, either the full path to the
-     executable or the string "git" to let Emacs find the executable
-     itself, using the standard mechanism for doing such things.
-
-‘M-x magit-debug-git-executable’     (‘magit-debug-git-executable’)
-
-     Display a buffer with information about ‘magit-git-executable’.
-
-
-File: magit.info,  Node: Global Git Arguments,  Prev: Git Executable,  Up: Running Git
-
-4.5.5 Global Git Arguments
---------------------------
-
- -- User Option: magit-git-global-arguments
-
-     The arguments set here are used every time the git executable is
-     run as a subprocess.  They are placed right after the executable
-     itself and before the git command - as in ‘git HERE... COMMAND
-     REST’.  For valid arguments see *note (gitman)git::.
-
-     Be careful what you add here, especially if you are using Tramp to
-     connect to servers with ancient Git versions.  Never remove
-     anything that is part of the default value, unless you really know
-     what you are doing.  And think very hard before adding something;
-     it will be used every time Magit runs Git for any purpose.
-
-
-File: magit.info,  Node: Inspecting,  Next: Manipulating,  Prev: Interface Concepts,  Up: Top
-
-5 Inspecting
-************
-
-The functionality provided by Magit can be roughly divided into three
-groups: inspecting existing data, manipulating existing data or adding
-new data, and transferring data.  Of course that is a rather crude
-distinction that often falls short, but it’s more useful than no
-distinction at all.  This section is concerned with inspecting data, the
-next two with manipulating and transferring it.  Then follows a section
-about miscellaneous functionality, which cannot easily be fit into this
-distinction.
-
-   Of course other distinctions make sense too, e.g.  Git’s distinction
-between porcelain and plumbing commands, which for the most part is
-equivalent to Emacs’ distinction between interactive commands and
-non-interactive functions.  All of the sections mentioned before are
-mainly concerned with the porcelain – Magit’s plumbing layer is
-described later.
-
-* Menu:
-
-* Status Buffer::
-* Repository List::
-* Logging::
-* Diffing::
-* Ediffing::
-* References Buffer::
-* Bisecting::
-* Visiting Blobs::
-* Blaming::
-
-
-File: magit.info,  Node: Status Buffer,  Next: Repository List,  Up: Inspecting
-
-5.1 Status Buffer
-=================
-
-While other Magit buffers contain e.g.  one particular diff or one
-particular log, the status buffer contains the diffs for staged and
-unstaged changes, logs for unpushed and unpulled commits, lists of
-stashes and untracked files, and information related to the current
-branch.
-
-   During certain incomplete operations – for example when a merge
-resulted in a conflict – additional information is displayed that helps
-proceeding with or aborting the operation.
-
-   The command ‘magit-status’ displays the status buffer belonging to
-the current repository in another window.  This command is used so often
-that it should be bound globally.  We recommend using ‘C-x g’:
-
-     (global-set-key (kbd "C-x g") 'magit-status)
-
-‘C-x g’     (‘magit-status’)
-
-     Show the status of the current Git repository in a buffer.  With a
-     prefix argument prompt for a repository to be shown.  With two
-     prefix arguments prompt for an arbitrary directory.  If that
-     directory isn’t the root of an existing repository, then offer to
-     initialize it as a new repository.
-
- -- User Option: magit-repository-directories
-
-     List of directories that are Git repositories or contain Git
-     repositories.
-
-     Each element has the form ‘(DIRECTORY . DEPTH)’.  DIRECTORY has to
-     be a directory or a directory file-name, a string.  DEPTH, an
-     integer, specifies the maximum depth to look for Git repositories.
-     If it is 0, then only add DIRECTORY itself.
-
- -- User Option: magit-repository-directories-depth
-
-     The maximum depth to look for Git repositories.  This option is
-     obsolete and only used for elements of the option
-     ‘magit-repository-directories’ (which see) that don’t specify the
-     depth directly.
-
- -- Command: ido-enter-magit-status
-
-     From an Ido prompt used to open a file, instead drop into
-     ‘magit-status’.  This is similar to ‘ido-magic-delete-char’, which,
-     despite its name, usually causes a Dired buffer to be created.
-
-     To make this command available, use something like:
-
-          (add-hook 'ido-setup-hook
-                    (lambda ()
-                      (define-key ido-completion-map
-                        (kbd \"C-x g\") 'ido-enter-magit-status)))
-
-     Starting with Emacs 25.1 the Ido keymaps are defined just once
-     instead of every time Ido is invoked, so now you can modify it like
-     pretty much every other keymap:
-
-          (define-key ido-common-completion-map
-            (kbd \"C-x g\") 'ido-enter-magit-status)
-
-* Menu:
-
-* Status Sections::
-* Status Header Sections::
-* Status Module Sections::
-* Status Options::
-
-
-File: magit.info,  Node: Status Sections,  Next: Status Header Sections,  Up: Status Buffer
-
-5.1.1 Status Sections
----------------------
-
-The contents of status buffers is controlled using the hook
-‘magit-status-sections-hook’.  See *note Section Hooks:: to learn about
-such hooks and how to customize them.
-
- -- User Option: magit-status-sections-hook
-
-     Hook run to insert sections into a status buffer.
-
-   The first function on that hook by default is
-‘magit-insert-status-headers’; it is described in the next section.  By
-default the following functions are also members of that hook:
-
- -- Function: magit-insert-merge-log
-
-     Insert section for the on-going merge.  Display the heads that are
-     being merged.  If no merge is in progress, do nothing.
-
- -- Function: magit-insert-rebase-sequence
-
-     Insert section for the on-going rebase sequence.  If no such
-     sequence is in progress, do nothing.
-
- -- Function: magit-insert-am-sequence
-
-     Insert section for the on-going patch applying sequence.  If no
-     such sequence is in progress, do nothing.
-
- -- Function: magit-insert-sequencer-sequence
-
-     Insert section for the on-going cherry-pick or revert sequence.  If
-     no such sequence is in progress, do nothing.
-
- -- Function: magit-insert-bisect-output
-
-     While bisecting, insert section with output from ‘git bisect’.
-
- -- Function: magit-insert-bisect-rest
-
-     While bisecting, insert section visualizing the bisect state.
-
- -- Function: magit-insert-bisect-log
-
-     While bisecting, insert section logging bisect progress.
-
- -- Function: magit-insert-untracked-files
-
-     Maybe insert a list or tree of untracked files.
-
-     Do so depending on the value of ‘status.showUntrackedFiles’.  Note
-     that even if the value is ‘all’, Magit still initially only shows
-     directories.  But the directory sections can then be expanded using
-     ‘TAB’.
-
- -- Function: magit-insert-unstaged-changes
-
-     Insert section showing unstaged changes.
-
- -- Function: magit-insert-staged-changes
-
-     Insert section showing staged changes.
-
- -- Function: magit-insert-stashes &optional ref heading
-
-     Insert the ‘stashes’ section showing reflog for "refs/stash".  If
-     optional REF is non-nil show reflog for that instead.  If optional
-     HEADING is non-nil use that as section heading instead of
-     "Stashes:".
-
- -- Function: magit-insert-unpulled-from-upstream
-
-     Insert section showing commits that haven’t been pulled from the
-     upstream branch yet.
-
- -- Function: magit-insert-unpulled-from-pushremote
-
-     Insert section showing commits that haven’t been pulled from the
-     push-remote branch yet.
-
- -- Function: magit-insert-unpushed-to-upstream
-
-     Insert section showing commits that haven’t been pushed to the
-     upstream yet.
-
- -- Function: magit-insert-unpushed-to-pushremote
-
-     Insert section showing commits that haven’t been pushed to the
-     push-remote yet.
-
-   The following functions can also be added to the above hook:
-
- -- Function: magit-insert-tracked-files
-
-     Insert a tree of tracked files.
-
- -- Function: magit-insert-ignored-files
-
-     Insert a tree of ignored files.
-
-     If the first element of ‘magit-diff-section-arguments’ is a
-     directory, then limit the list to files below that.  The value of
-     that variable can be set using ‘D = f <DIRECTORY> RET g’.
-
- -- Function: magit-insert-unpulled-or-recent-commits
-
-     Insert section showing unpulled or recent commits.  If an upstream
-     is configured for the current branch and it is ahead of the current
-     branch, then show the missing commits.  Otherwise, show the last
-     ‘magit-log-section-commit-count’ commits.
-
- -- Function: magit-insert-recent-commits
-
-     Insert section showing the last ‘magit-log-section-commit-count’
-     commits.
-
- -- User Option: magit-log-section-commit-count
-
-     How many recent commits ‘magit-insert-recent-commits’ and
-     ‘magit-insert-unpulled-or-recent-commits’ (provided there are no
-     unpulled commits) show.
-
- -- Function: magit-insert-unpulled-cherries
-
-     Insert section showing unpulled commits.  Like
-     ‘magit-insert-unpulled-commits’ but prefix each commit that has not
-     been applied yet (i.e.  a commit with a patch-id not shared with
-     any local commit) with "+", and all others with "-".
-
- -- Function: magit-insert-unpushed-cherries
-
-     Insert section showing unpushed commits.  Like
-     ‘magit-insert-unpushed-commits’ but prefix each commit which has
-     not been applied to upstream yet (i.e.  a commit with a patch-id
-     not shared with any upstream commit) with "+" and all others with
-     "-".
-
-   See *note References Buffer:: for some more section inserters, which
-could be used here.
-
-
-File: magit.info,  Node: Status Header Sections,  Next: Status Module Sections,  Prev: Status Sections,  Up: Status Buffer
-
-5.1.2 Status Header Sections
-----------------------------
-
-The contents of status buffers is controlled using the hook
-‘magit-status-sections-hook’ (see *note Status Sections::).
-
-   By default ‘magit-insert-status-headers’ is the first member of that
-hook variable.
-
- -- Function: magit-insert-status-headers
-
-     Insert headers sections appropriate for ‘magit-status-mode’
-     buffers.  The sections are inserted by running the functions on the
-     hook ‘magit-status-headers-hook’.
-
- -- User Option: magit-status-headers-hook
-
-     Hook run to insert headers sections into the status buffer.
-
-     This hook is run by ‘magit-insert-status-headers’, which in turn
-     has to be a member of ‘magit-status-sections-hook’ to be used at
-     all.
-
-   By default the following functions are members of the above hook:
-
- -- Function: magit-insert-error-header
-
-     Insert a header line showing the message about the Git error that
-     just occurred.
-
-     This function is only aware of the last error that occur when Git
-     was run for side-effects.  If, for example, an error occurs while
-     generating a diff, then that error won’t be inserted.  Refreshing
-     the status buffer causes this section to disappear again.
-
- -- Function: magit-insert-diff-filter-header
-
-     Insert a header line showing the effective diff filters.
-
- -- Function: magit-insert-head-branch-header
-
-     Insert a header line about the current branch or detached ‘HEAD’.
-
- -- Function: magit-insert-upstream-branch-header
-
-     Insert a header line about the branch that is usually pulled into
-     the current branch.
-
- -- Function: magit-insert-push-branch-header
-
-     Insert a header line about the branch that the current branch is
-     usually pushed to.
-
- -- Function: magit-insert-tags-header
-
-     Insert a header line about the current and/or next tag, along with
-     the number of commits between the tag and ‘HEAD’.
-
-   The following functions can also be added to the above hook:
-
- -- Function: magit-insert-repo-header
-
-     Insert a header line showing the path to the repository top-level.
-
- -- Function: magit-insert-remote-header
-
-     Insert a header line about the remote of the current branch.
-
-     If no remote is configured for the current branch, then fall back
-     showing the "origin" remote, or if that does not exist the first
-     remote in alphabetic order.
-
- -- Function: magit-insert-user-header
-
-     Insert a header line about the current user.
-
-
-File: magit.info,  Node: Status Module Sections,  Next: Status Options,  Prev: Status Header Sections,  Up: Status Buffer
-
-5.1.3 Status Module Sections
-----------------------------
-
-The contents of status buffers is controlled using the hook
-‘magit-status-sections-hook’ (see *note Status Sections::).
-
-   By default ‘magit-insert-modules’ is _not_ a member of that hook
-variable.
-
- -- Function: magit-insert-modules
-
-     Insert submodule sections.
-
-     Hook ‘magit-module-sections-hook’ controls which module sections
-     are inserted, and option ‘magit-module-sections-nested’ controls
-     whether they are wrapped in an additional section.
-
- -- User Option: magit-module-sections-hook
-
-     Hook run by ‘magit-insert-modules’.
-
- -- User Option: magit-module-sections-nested
-
-     This option controls whether ‘magit-insert-modules’ wraps inserted
-     sections in an additional section.
-
-     If this is non-nil, then only a single top-level section is
-     inserted.  If it is nil, then all sections listed in
-     ‘magit-module-sections-hook’ become top-level sections.
-
- -- Function: magit-insert-modules-overview
-
-     Insert sections for all submodules.  For each section insert the
-     path, the branch, and the output of ‘git describe --tags’, or,
-     failing that, the abbreviated HEAD commit hash.
-
-     Press ‘RET’ on such a submodule section to show its own status
-     buffer.  Press ‘RET’ on the "Modules" section to display a list of
-     submodules in a separate buffer.  This shows additional information
-     not displayed in the super-repository’s status buffer.
-
- -- Function: magit-insert-modules-unpulled-from-upstream
-
-     Insert sections for modules that haven’t been pulled from the
-     upstream yet.  These sections can be expanded to show the
-     respective commits.
-
- -- Function: magit-insert-modules-unpulled-from-pushremote
-
-     Insert sections for modules that haven’t been pulled from the
-     push-remote yet.  These sections can be expanded to show the
-     respective commits.
-
- -- Function: magit-insert-modules-unpushed-to-upstream
-
-     Insert sections for modules that haven’t been pushed to the
-     upstream yet.  These sections can be expanded to show the
-     respective commits.
-
- -- Function: magit-insert-modules-unpushed-to-pushremote
-
-     Insert sections for modules that haven’t been pushed to the
-     push-remote yet.  These sections can be expanded to show the
-     respective commits.
-
-
-File: magit.info,  Node: Status Options,  Prev: Status Module Sections,  Up: Status Buffer
-
-5.1.4 Status Options
---------------------
-
- -- User Option: magit-status-refresh-hook
-
-     Hook run after a status buffer has been refreshed.
-
- -- User Option: magit-status-margin
-
-     This option specifies whether the margin is initially shown in
-     Magit-Status mode buffers and how it is formatted.
-
-     The value has the form ‘(INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH)’.
-
-        • If INIT is non-nil, then the margin is shown initially.
-
-        • STYLE controls how to format the committer date.  It can be
-          one of ‘age’ (to show the age of the commit),
-          ‘age-abbreviated’ (to abbreviate the time unit to a
-          character), or a string (suitable for ‘format-time-string’) to
-          show the actual date.
-
-        • WIDTH controls the width of the margin.  This exists for
-          forward compatibility and currently the value should not be
-          changed.
-
-        • AUTHOR controls whether the name of the author is also shown
-          by default.
-
-        • AUTHOR-WIDTH has to be an integer.  When the name of the
-          author is shown, then this specifies how much space is used to
-          do so.
-
- -- User Option: magit-log-section-args
-
-     Additional Git arguments used when creating log sections.  Only
-     ‘--graph’, ‘--decorate’, and ‘--show-signature’ are supported.
-     This option is only a temporary kludge and will be removed.
-
-     Note that due to an issue in Git the use of ‘--graph’ is very slow
-     with long histories, so you probably don’t want to add this here.
-
-   Also see the proceeding section for more options concerning status
-buffers.
-
-
-File: magit.info,  Node: Repository List,  Next: Logging,  Prev: Status Buffer,  Up: Inspecting
-
-5.2 Repository List
-===================
-
- -- Command: magit-list-repositories
-
-     This command displays a list of repositories in a separate buffer.
-
-     The options ‘magit-repository-directories’ and
-     ‘magit-repository-directories-depth’ control which repositories are
-     displayed.
-
- -- User Option: magit-repolist-columns
-
-     This option controls what columns are displayed by the command
-     ‘magit-list-repositories’ and how they are displayed.
-
-     Each element has the form ‘(HEADER WIDTH FORMAT PROPS)’.
-
-     HEADER is the string displayed in the header.  WIDTH is the width
-     of the column.  FORMAT is a function that is called with one
-     argument, the repository identification (usually its basename), and
-     with ‘default-directory’ bound to the toplevel of its working tree.
-     It has to return a string to be inserted or nil.  PROPS is an alist
-     that supports the keys ‘:right-align’ and ‘:pad-right’.
-
-   The following functions can be added to the above option:
-
- -- Function: magit-repolist-column-ident
-
-     This function inserts the identification of the repository.
-     Usually this is just its basename.
-
- -- Function: magit-repolist-column-path
-
-     This function inserts the absolute path of the repository.
-
- -- Function: magit-repolist-column-version
-
-     This function inserts a description of the repository’s ‘HEAD’
-     revision.
-
- -- Function: magit-repolist-column-unpulled-from-upstream
-
-     This function inserts the number of upstream commits not in the
-     current branch.
-
- -- Function: magit-repolist-column-unpulled-from-pushremote
-
-     This function inserts the number of commits in the push branch but
-     not the current branch.
-
- -- Function: magit-repolist-column-unpushed-to-upstream
-
-     This function inserts the number of commits in the current branch
-     but not its upstream.
-
- -- Function: magit-repolist-column-unpushed-to-pushremote
-
-     This function inserts the number of commits in the current branch
-     but not its push branch.
-
-
-File: magit.info,  Node: Logging,  Next: Diffing,  Prev: Repository List,  Up: Inspecting
-
-5.3 Logging
-===========
-
-The status buffer contains logs for the unpushed and unpulled commits,
-but that obviously isn’t enough.  The prefix command ‘magit-log-popup’,
-on ‘l’, features several suffix commands, which show a specific log in a
-separate log buffer.
-
-   Like other popups, the log popup also features several arguments that
-can be changed before invoking one of the suffix commands.  However, in
-the case of the log popup, these arguments may be taken from those
-currently in use in the current repository’s log buffer, depending on
-the value of ‘magit-use-sticky-arguments’ (see *note Popup Buffers and
-Prefix Commands::).
-
-   For information about the various arguments, see *note
-(gitman)git-log::.
-
-   The switch ‘++order=VALUE’ is converted to one of
-‘--author-date-order’, ‘--date-order’, or ‘--topo-order’ before being
-passed to ‘git log’.
-
-   The log popup also features several reflog commands.  See *note
-Reflog::.
-
-‘l’     (‘magit-log-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘l l’     (‘magit-log-current’)
-
-     Show log for the current branch.  When ‘HEAD’ is detached or with a
-     prefix argument, show log for one or more revs read from the
-     minibuffer.
-
-‘l o’     (‘magit-log-other’)
-
-     Show log for one or more revs read from the minibuffer.  The user
-     can input any revision or revisions separated by a space, or even
-     ranges, but only branches, tags, and a representation of the commit
-     at point are available as completion candidates.
-
-‘l h’     (‘magit-log-head’)
-
-     Show log for ‘HEAD’.
-
-‘l L’     (‘magit-log-branches’)
-
-     Show log for all local branches and ‘HEAD’.
-
-‘l b’     (‘magit-log-all-branches’)
-
-     Show log for all local and remote branches and ‘HEAD’.
-
-‘l a’     (‘magit-log-all’)
-
-     Show log for all references and ‘HEAD’.
-
-   Two additional commands that show the log for the file or blob that
-is being visited in the current buffer exists, see *note Minor Mode for
-Buffers Visiting Files::.  The command ‘magit-cherry’ also shows a log,
-see *note Cherries::.
-
-* Menu:
-
-* Refreshing Logs::
-* Log Buffer::
-* Log Margin::
-* Select from Log::
-* Reflog::
-* Cherries::
-
-
-File: magit.info,  Node: Refreshing Logs,  Next: Log Buffer,  Up: Logging
-
-5.3.1 Refreshing Logs
----------------------
-
-The prefix command ‘magit-log-refresh-popup’, on ‘L’, can be used to
-change the log arguments used in the current buffer, without changing
-which log is shown.  This works in dedicated log buffers, but also in
-the status buffer.
-
-‘L’     (‘magit-log-refresh-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘L g’     (‘magit-log-refresh’)
-
-     This suffix command sets the local log arguments for the current
-     buffer.
-
-‘L s’     (‘magit-log-set-default-arguments’)
-
-     This suffix command sets the default log arguments for buffers of
-     the same type as that of the current buffer.  Other existing
-     buffers of the same type are not affected because their local
-     values have already been initialized.
-
-‘L w’     (‘magit-log-save-default-arguments’)
-
-     This suffix command sets the default log arguments for buffers of
-     the same type as that of the current buffer, and saves the value
-     for future sessions.  Other existing buffers of the same type are
-     not affected because their local values have already been
-     initialized.
-
-‘L t’     (‘magit-toggle-margin’)
-
-     Show or hide the margin.
-
-
-File: magit.info,  Node: Log Buffer,  Next: Log Margin,  Prev: Refreshing Logs,  Up: Logging
-
-5.3.2 Log Buffer
-----------------
-
-‘L’     (‘magit-log-refresh-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.  See *note
-     Refreshing Logs::.
-
-‘q’     (‘magit-log-bury-buffer’)
-
-     Bury the current buffer or the revision buffer in the same frame.
-     Like ‘magit-mode-bury-buffer’ (which see) but with a negative
-     prefix argument instead bury the revision buffer, provided it is
-     displayed in the current frame.
-
-‘C-c C-b’     (‘magit-go-backward’)
-
-     Move backward in current buffer’s history.
-
-‘C-c C-f’     (‘magit-go-forward’)
-
-     Move forward in current buffer’s history.
-
-‘C-c C-n’     (‘magit-log-move-to-parent’)
-
-     Move to a parent of the current commit.  By default, this is the
-     first parent, but a numeric prefix can be used to specify another
-     parent.
-
-‘SPC’     (‘magit-diff-show-or-scroll-up’)
-
-     Update the commit or diff buffer for the thing at point.
-
-     Either show the commit or stash at point in the appropriate buffer,
-     or if that buffer is already being displayed in the current frame
-     and contains information about that commit or stash, then instead
-     scroll the buffer up.  If there is no commit or stash at point,
-     then prompt for a commit.
-
-‘DEL’     (‘magit-diff-show-or-scroll-down’)
-
-     Update the commit or diff buffer for the thing at point.
-
-     Either show the commit or stash at point in the appropriate buffer,
-     or if that buffer is already being displayed in the current frame
-     and contains information about that commit or stash, then instead
-     scroll the buffer down.  If there is no commit or stash at point,
-     then prompt for a commit.
-
-‘=’     (‘magit-log-toggle-commit-limit’)
-
-     Toggle the number of commits the current log buffer is limited to.
-     If the number of commits is currently limited, then remove that
-     limit.  Otherwise set it to 256.
-
-‘+’     (‘magit-log-double-commit-limit’)
-
-     Double the number of commits the current log buffer is limited to.
-
-‘-’     (‘magit-log-half-commit-limit’)
-
-     Half the number of commits the current log buffer is limited to.
-
- -- User Option: magit-log-auto-more
-
-     Insert more log entries automatically when moving past the last
-     entry.  Only considered when moving past the last entry with
-     ‘magit-goto-*-section’ commands.
-
- -- User Option: magit-log-show-refname-after-summary
-
-     Whether to show the refnames after the commit summaries.  This is
-     useful if you use really long branch names.
-
-   Magit displays references in logs a bit differently from how Git does
-it.
-
-   Local branches are blue and remote branches are green.  Of course
-that depends on the used theme, as do the colors used for other types of
-references.  The current branch has a box around it, as do remote
-branches that are their respective remote’s ‘HEAD’ branch.
-
-   If a local branch and its push-target point at the same commit, then
-their names are combined to preserve space and to make that relationship
-visible.  For example:
-
-     origin/feature
-     [green][blue-]
-
-     instead of
-
-     feature origin/feature
-     [blue-] [green-------]
-
-   Also note that while the popup features the ‘--show-signature’
-argument, that won’t actually be used when enabled, because Magit
-defaults to use just one line per commit.  Instead the commit colorized
-to indicate the validity of the signed commit object, using the faces
-named ‘magit-signature-*’ (which see).
-
-   For a description of ‘magit-log-margin’ see *note Log Margin::.
-
-
-File: magit.info,  Node: Log Margin,  Next: Select from Log,  Prev: Log Buffer,  Up: Logging
-
-5.3.3 Log Margin
-----------------
-
-In buffers which show one or more logs, it is possible to show
-additional information about each commit in the margin.  The options
-used to configure the margin are named ‘magit-INFIX-margin’, where INFIX
-is the same as in the respective major-mode ‘magit-INFIX-mode’.  In
-regular log buffers that would be ‘magit-log-margin’.
-
- -- User Option: magit-log-margin
-
-     This option specifies whether the margin is initially shown in
-     Magit-Log mode buffers and how it is formatted.
-
-     The value has the form ‘(INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH)’.
-
-        • If INIT is non-nil, then the margin is shown initially.
-
-        • STYLE controls how to format the committer date.  It can be
-          one of ‘age’ (to show the age of the commit),
-          ‘age-abbreviated’ (to abbreviate the time unit to a
-          character), or a string (suitable for ‘format-time-string’) to
-          show the actual date.
-
-        • WIDTH controls the width of the margin.  This exists for
-          forward compatibility and currently the value should not be
-          changed.
-
-        • AUTHOR controls whether the name of the author is also shown
-          by default.
-
-        • AUTHOR-WIDTH has to be an integer.  When the name of the
-          author is shown, then this specifies how much space is used to
-          do so.
-
-   You can change the STYLE and AUTHOR-WIDTH of all ‘magit-INFIX-margin’
-options to the same values by customizing ‘magit-log-margin’ *before*
-‘magit’ is loaded.  If you do that, then the respective values for the
-other options will default to what you have set for that variable.
-Likewise if you set INIT in ‘magit-log-margin’ to ‘nil’, then that is
-used in the default of all other options.  But setting it to ‘t’, i.e.
-re-enforcing the default for that option, does not carry to other
-options.
-
-‘L’     (‘magit-margin-popup’)
-
-     This prefix command features the following commands for changing
-     the appearance of the margin.
-
-   In some buffers that support the margin, "L" is bound to
-‘magit-log-refresh-popup’, but that popup features the same commands,
-and then some other unrelated commands.
-
-‘L L’     (‘magit-toggle-margin’)
-
-     This command shows or hides the margin.
-
-‘L l’     (‘magit-cycle-margin-style’)
-
-     This command cycles the style used for the margin.
-
-‘L d’     (‘magit-toggle-margin-details’)
-
-     This command shows or hides details in the margin.
-
-
-File: magit.info,  Node: Select from Log,  Next: Reflog,  Prev: Log Margin,  Up: Logging
-
-5.3.4 Select from Log
----------------------
-
-When the user has to select a recent commit that is reachable from
-‘HEAD’, using regular completion would be inconvenient (because most
-humans cannot remember hashes or "HEAD~5", at least not without double
-checking).  Instead a log buffer is used to select the commit, which has
-the advantage that commits are presented in order and with the commit
-message.
-
-   Such selection logs are used when selecting the beginning of a rebase
-and when selecting the commit to be squashed into.
-
-   In addition to the key bindings available in all log buffers, the
-following additional key bindings are available in selection log
-buffers:
-
-‘C-c C-c’     (‘magit-log-select-pick’)
-
-     Select the commit at point and act on it.  Call
-     ‘magit-log-select-pick-function’ with the selected commit as
-     argument.
-
-‘C-c C-k’     (‘magit-log-select-quit’)
-
-     Abort selecting a commit, don’t act on any commit.
-
- -- User Option: magit-log-select-margin
-
-     This option specifies whether the margin is initially shown in
-     Magit-Log-Select mode buffers and how it is formatted.
-
-     The value has the form ‘(INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH)’.
-
-        • If INIT is non-nil, then the margin is shown initially.
-
-        • STYLE controls how to format the committer date.  It can be
-          one of ‘age’ (to show the age of the commit),
-          ‘age-abbreviated’ (to abbreviate the time unit to a
-          character), or a string (suitable for ‘format-time-string’) to
-          show the actual date.
-
-        • WIDTH controls the width of the margin.  This exists for
-          forward compatibility and currently the value should not be
-          changed.
-
-        • AUTHOR controls whether the name of the author is also shown
-          by default.
-
-        • AUTHOR-WIDTH has to be an integer.  When the name of the
-          author is shown, then this specifies how much space is used to
-          do so.
-
-
-File: magit.info,  Node: Reflog,  Next: Cherries,  Prev: Select from Log,  Up: Logging
-
-5.3.5 Reflog
-------------
-
-Also see *note (gitman)git-reflog::.
-
-   These reflog commands are available from the log popup.  See *note
-Logging::.
-
-‘l r’     (‘magit-reflog-current’)
-
-     Display the reflog of the current branch.
-
-‘l O’     (‘magit-reflog-other’)
-
-     Display the reflog of a branch or another ref.
-
-‘l H’     (‘magit-reflog-head’)
-
-     Display the ‘HEAD’ reflog.
-
- -- User Option: magit-reflog-margin
-
-     This option specifies whether the margin is initially shown in
-     Magit-Reflog mode buffers and how it is formatted.
-
-     The value has the form ‘(INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH)’.
-
-        • If INIT is non-nil, then the margin is shown initially.
-
-        • STYLE controls how to format the committer date.  It can be
-          one of ‘age’ (to show the age of the commit),
-          ‘age-abbreviated’ (to abbreviate the time unit to a
-          character), or a string (suitable for ‘format-time-string’) to
-          show the actual date.
-
-        • WIDTH controls the width of the margin.  This exists for
-          forward compatibility and currently the value should not be
-          changed.
-
-        • AUTHOR controls whether the name of the author is also shown
-          by default.
-
-        • AUTHOR-WIDTH has to be an integer.  When the name of the
-          author is shown, then this specifies how much space is used to
-          do so.
-
-
-File: magit.info,  Node: Cherries,  Prev: Reflog,  Up: Logging
-
-5.3.6 Cherries
---------------
-
-Cherries are commits that haven’t been applied upstream (yet), and are
-usually visualized using a log.  Each commit is prefixed with ‘-’ if it
-has an equivalent in the upstream and ‘+’ if it does not, i.e.  if it is
-a cherry.
-
-   The command ‘magit-cherry’ shows cherries for a single branch, but
-the references buffer (see *note References Buffer::) can show cherries
-for multiple "upstreams" at once.
-
-   Also see *note (gitman)git-reflog::.
-
-‘Y’     (‘magit-cherry’)
-
-     Show commits that are in a certain branch but that have not been
-     merged in the upstream branch.
-
- -- User Option: magit-cherry-margin
-
-     This option specifies whether the margin is initially shown in
-     Magit-Cherry mode buffers and how it is formatted.
-
-     The value has the form ‘(INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH)’.
-
-        • If INIT is non-nil, then the margin is shown initially.
-
-        • STYLE controls how to format the committer date.  It can be
-          one of ‘age’ (to show the age of the commit),
-          ‘age-abbreviated’ (to abbreviate the time unit to a
-          character), or a string (suitable for ‘format-time-string’) to
-          show the actual date.
-
-        • WIDTH controls the width of the margin.  This exists for
-          forward compatibility and currently the value should not be
-          changed.
-
-        • AUTHOR controls whether the name of the author is also shown
-          by default.
-
-        • AUTHOR-WIDTH has to be an integer.  When the name of the
-          author is shown, then this specifies how much space is used to
-          do so.
-
-
-File: magit.info,  Node: Diffing,  Next: Ediffing,  Prev: Logging,  Up: Inspecting
-
-5.4 Diffing
-===========
-
-The status buffer contains diffs for the staged and unstaged commits,
-but that obviously isn’t enough.  The prefix command ‘magit-diff-popup’,
-on ‘d’, features several suffix commands, which show a specific diff in
-a separate diff buffer.
-
-   Like other popups, the diff popup also features several arguments
-that can be changed before invoking one of the suffix commands.
-However, in the case of the diff popup, these arguments may be taken
-from those currently in use in the current repository’s log buffer,
-depending on the value of ‘magit-use-sticky-arguments’ (see *note Popup
-Buffers and Prefix Commands::).
-
-   Also see *note (gitman)git-diff::.
-
-‘d’     (‘magit-diff-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘d d’     (‘magit-diff-dwim’)
-
-     Show changes for the thing at point.
-
-‘d r’     (‘magit-diff-range’)
-
-     Show differences between two commits.
-
-     RANGE should be a range (A..B or A...B) but can also be a single
-     commit.  If one side of the range is omitted, then it defaults to
-     ‘HEAD’.  If just a commit is given, then changes in the working
-     tree relative to that commit are shown.
-
-     If the region is active, use the revisions on the first and last
-     line of the region.  With a prefix argument, instead of diffing the
-     revisions, choose a revision to view changes along, starting at the
-     common ancestor of both revisions (i.e., use a "..." range).
-
-‘d w’     (‘magit-diff-working-tree’)
-
-     Show changes between the current working tree and the ‘HEAD’
-     commit.  With a prefix argument show changes between the working
-     tree and a commit read from the minibuffer.
-
-‘d s’     (‘magit-diff-staged’)
-
-     Show changes between the index and the ‘HEAD’ commit.  With a
-     prefix argument show changes between the index and a commit read
-     from the minibuffer.
-
-‘d u’     (‘magit-diff-unstaged’)
-
-     Show changes between the working tree and the index.
-
-‘d p’     (‘magit-diff-paths’)
-
-     Show changes between any two files on disk.
-
-   All of the above suffix commands update the repository’s diff buffer.
-The diff popup also features two commands which show differences in
-another buffer:
-
-‘d c’     (‘magit-show-commit’)
-
-     Show the commit at point.  If there is no commit at point or with a
-     prefix argument, prompt for a commit.
-
-‘d t’     (‘magit-stash-show’)
-
-     Show all diffs of a stash in a buffer.
-
-   Two additional commands that show the diff for the file or blob that
-is being visited in the current buffer exists, see *note Minor Mode for
-Buffers Visiting Files::.
-
-* Menu:
-
-* Refreshing Diffs::
-* Diff Buffer::
-* Diff Options::
-* Revision Buffer::
-
-
-File: magit.info,  Node: Refreshing Diffs,  Next: Diff Buffer,  Up: Diffing
-
-5.4.1 Refreshing Diffs
-----------------------
-
-The prefix command ‘magit-diff-refresh-popup’, on ‘D’, can be used to
-change the diff arguments used in the current buffer, without changing
-which diff is shown.  This works in dedicated diff buffers, but also in
-the status buffer.
-
-‘D’     (‘magit-diff-refresh-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘D g’     (‘magit-diff-refresh’)
-
-     This suffix command sets the local diff arguments for the current
-     buffer.
-
-‘D s’     (‘magit-diff-set-default-arguments’)
-
-     This suffix command sets the default diff arguments for buffers of
-     the same type as that of the current buffer.  Other existing
-     buffers of the same type are not affected because their local
-     values have already been initialized.
-
-‘D w’     (‘magit-diff-save-default-arguments’)
-
-     This suffix command sets the default diff arguments for buffers of
-     the same type as that of the current buffer, and saves the value
-     for future sessions.  Other existing buffers of the same type are
-     not affected because their local values have already been
-     initialized.
-
-‘D t’     (‘magit-diff-toggle-refine-hunk’)
-
-     This command toggles hunk refinement on or off.
-
-‘D r’     (‘magit-diff-switch-range-type’)
-
-     This command converts the diff range type from "revA..revB" to
-     "revB...revA", or vice versa.
-
-‘D f’     (‘magit-diff-flip-revs’)
-
-     This command swaps revisions in the diff range from "revA..revB" to
-     "revB..revA", or vice versa.
-
-‘D F’     (‘magit-diff-toggle-file-filter’)
-
-     This command toggles the file restriction of the diffs in the
-     current buffer, allowing you to quickly switch between viewing all
-     the changes in the commit and the restricted subset.  As a special
-     case, when this command is called from a log buffer, it toggles the
-     file restriction in the repository’s revision buffer, which is
-     useful when you display a revision from a log buffer that is
-     restricted to a file or files.
-
-   In addition to the above popup, which allows changing any of the
-supported arguments, there also exist some commands which change a
-particular argument.
-
-‘-’     (‘magit-diff-less-context’)
-
-     This command decreases the context for diff hunks by COUNT lines.
-
-‘+’     (‘magit-diff-more-context’)
-
-     This command increases the context for diff hunks by COUNT lines.
-
-‘0’     (‘magit-diff-default-context’)
-
-     This command resets the context for diff hunks to the default
-     height.
-
-   The following commands quickly change what diff is being displayed
-without having to using one of the diff popups.
-
-‘C-c C-d’     (‘magit-diff-while-committing’)
-
-     While committing, this command shows the changes that are about to
-     be committed.  While amending, invoking the command again toggles
-     between showing just the new changes or all the changes that will
-     be committed.
-
-     This binding is available in the diff buffer as well as the commit
-     message buffer.
-
-‘C-c C-b’     (‘magit-go-backward’)
-
-     This command moves backward in current buffer’s history.
-
-‘C-c C-f’     (‘magit-go-forward’)
-
-     This command moves forward in current buffer’s history.
-
-
-File: magit.info,  Node: Diff Buffer,  Next: Diff Options,  Prev: Refreshing Diffs,  Up: Diffing
-
-5.4.2 Diff Buffer
------------------
-
-These commands are available in diff buffers.
-
-‘RET’     (‘magit-diff-visit-file’)
-
-     From a diff, visit the corresponding file at the appropriate
-     position.
-
-     If the diff shows changes in the worktree, the index, or ‘HEAD’,
-     then visit the actual file.  Otherwise, when the diff is about an
-     older commit or a range, then visit the appropriate blob.
-
-     If point is on a removed line, then visit the blob for the first
-     parent of the commit which removed that line, i.e.  the last commit
-     where that line still existed.  Otherwise visit the blob for the
-     commit whose changes are being shown.
-
-     Interactively, when the file or blob to be displayed is already
-     being displayed in another window of the same frame, then just
-     select that window and adjust point.  Otherwise, or with a prefix
-     argument, display the buffer in another window.  The meaning of the
-     prefix argument can be inverted or further modified using the
-     option ‘magit-display-file-buffer-function’.
-
-     Non-interactively the optional OTHER-WINDOW argument is taken
-     literally.  DISPLAY-FN can be used to specify the display function
-     explicitly, in which case OTHER-WINDOW is ignored.
-
-     The optional FORCE-WORKTREE means to force visiting the worktree
-     version of the file.  To do this interactively use the command
-     ‘magit-diff-visit-file-worktree’ instead.
-
- -- User Option: magit-diff-visit-previous-blob
-
-     This option controls whether ‘magit-diff-visit-file’ may visit the
-     previous blob.  When this is ‘t’ and point is on a removed line in
-     a diff for a committed change, then ‘magit-diff-visit-file’ visits
-     the blob from the last revision which still had that line.
-
-     Currently this is only supported for committed changes, for staged
-     and unstaged changes ‘magit-diff-visit-file’ always visits the file
-     in the working tree.
-
-‘C-<return>’     (‘magit-diff-visit-file-worktree’)
-
-     From a diff, visit the corresponding file at the appropriate
-     position.
-
-     When the file is already being displayed in another window of the
-     same frame, then just select that window and adjust point.  With a
-     prefix argument also display in another window.
-
-     The actual file in the worktree is visited.  The positions in the
-     hunk headers get less useful the "older" the changes are, and as a
-     result, jumping to the appropriate position gets less reliable.
-
-     Also see ‘magit-diff-visit-file’, which visits the respective blob,
-     unless the diff shows changes in the worktree, the index, or
-     ‘HEAD’.
-
- -- Command: magit-diff-visit-file-other-window
-
-     From a diff, visit the corresponding file at the appropriate
-     position in another window.
-
-‘C-c C-t’     (‘magit-diff-trace-definition’)
-
-     From a diff, show log for the definition at point.
-
- -- User Option: magit-log-trace-definition-function
-
-     The function used by ‘magit-log-trace-definition’ to determine the
-     function at point.  For major-modes that have special needs, you
-     could set that using the mode’s hook.
-
-‘C-c C-e’     (‘magit-diff-edit-hunk-commit’)
-
-     From a hunk, edit the respective commit and visit the file.
-
-     First visit the file being modified by the hunk at the correct
-     location using ‘magit-diff-visit-file’.  This actually visits a
-     blob.  When point is on a diff header, not within an individual
-     hunk, then this visits the blob the first hunk is about.
-
-     Then invoke ‘magit-edit-line-commit’, which uses an interactive
-     rebase to make the commit editable, or if that is not possible
-     because the commit is not reachable from ‘HEAD’ by checking out
-     that commit directly.  This also causes the actual worktree file to
-     be visited.
-
-     Neither the blob nor the file buffer are killed when finishing the
-     rebase.  If that is undesirable, then it might be better to use
-     ‘magit-rebase-edit-command’ instead of this command.
-
-‘j’     (‘magit-jump-to-diffstat-or-diff’)
-
-     Jump to the diffstat or diff.  When point is on a file inside the
-     diffstat section, then jump to the respective diff section.
-     Otherwise, jump to the diffstat section or a child thereof.
-
-‘SPC’     (‘scroll-up’)
-
-     Scroll text upward.
-
-‘DEL’     (‘scroll-down’)
-
-     Scroll text downward.
-
-
-File: magit.info,  Node: Diff Options,  Next: Revision Buffer,  Prev: Diff Buffer,  Up: Diffing
-
-5.4.3 Diff Options
-------------------
-
- -- User Option: magit-diff-refine-hunk
-
-     Whether to show word-granularity differences within diff hunks.
-
-        • ‘nil’ never show fine differences.
-
-        • ‘t’ show fine differences for the current diff hunk only.
-
-        • ‘all’ show fine differences for all displayed diff hunks.
-
- -- User Option: magit-diff-adjust-tab-width
-
-     Whether to adjust the width of tabs in diffs.
-
-     Determining the correct width can be expensive if it requires
-     opening large and/or many files, so the widths are cached in the
-     variable ‘magit-diff--tab-width-cache’.  Set that to nil to
-     invalidate the cache.
-
-        • ‘nil’ Never adjust tab width.  Use ‘tab-width’s value from the
-          Magit buffer itself instead.
-
-        • ‘t’ If the corresponding file-visiting buffer exits, then use
-          ‘tab-width’’s value from that buffer.  Doing this is cheap, so
-          this value is used even if a corresponding cache entry exists.
-
-        • ‘always’ If there is no such buffer, then temporarily visit
-          the file to determine the value.
-
-        • NUMBER Like ‘always’, but don’t visit files larger than NUMBER
-          bytes.
-
- -- User Option: magit-diff-paint-whitespace
-
-     Specify where to highlight whitespace errors.
-
-     See ‘magit-diff-highlight-trailing’,
-     ‘magit-diff-highlight-indentation’.  The symbol ‘t’ means in all
-     diffs, ‘status’ means only in the status buffer, and nil means
-     nowhere.
-
- -- User Option: magit-diff-highlight-trailing
-
-     Whether to highlight whitespace at the end of a line in diffs.
-     Used only when ‘magit-diff-paint-whitespace’ is non-nil.
-
- -- User Option: magit-diff-highlight-indentation
-
-     Highlight the "wrong" indentation style.  Used only when
-     ‘magit-diff-paint-whitespace’ is non-nil.
-
-     The value is a list of cons cells.  The car is a regular
-     expression, and the cdr is the value that applies to repositories
-     whose directory matches the regular expression.  If more than one
-     element matches, then the *last* element in the list applies.  The
-     default value should therefore come first in the list.
-
-     If the value is ‘tabs’, highlight indentation with tabs.  If the
-     value is an integer, highlight indentation with at least that many
-     spaces.  Otherwise, highlight neither.
-
- -- User Option: magit-diff-hide-trailing-cr-characters
-
-     Whether to hide ^M characters at the end of a line in diffs.
-
- -- User Option: magit-diff-highlight-hunk-region-functions
-
-     This option specifies the functions used to highlight the
-     hunk-internal region.
-
-     ‘magit-diff-highlight-hunk-region-dim-outside’ overlays the outside
-     of the hunk internal selection with a face that causes the added
-     and removed lines to have the same background color as context
-     lines.  This function should not be removed from the value of this
-     option.
-
-     ‘magit-diff-highlight-hunk-region-using-overlays’ and
-     ‘magit-diff-highlight-hunk-region-using-underline’ emphasize the
-     region by placing delimiting horizontal lines before and after it.
-     Both of these functions have glitches which cannot be fixed due to
-     limitations of Emacs’ display engine.  For more information see
-     <https://github.com/magit/magit/issues/2758> ff.
-
-     Instead of, or in addition to, using delimiting horizontal lines,
-     to emphasize the boundaries, you may which to emphasize the text
-     itself, using ‘magit-diff-highlight-hunk-region-using-face’.
-
-     In terminal frames it’s not possible to draw lines as the overlay
-     and underline variants normally do, so there they fall back to
-     calling the face function instead.
-
- -- User Option: magit-diff-unmarked-lines-keep-foreground
-
-     This option controls whether added and removed lines outside the
-     hunk-internal region only lose their distinct background color or
-     also the foreground color.  Whether the outside of the region is
-     dimmed at all depends on
-     ‘magit-diff-highlight-hunk-region-functions’.
-
-
-File: magit.info,  Node: Revision Buffer,  Prev: Diff Options,  Up: Diffing
-
-5.4.4 Revision Buffer
----------------------
-
- -- User Option: magit-revision-insert-related-refs
-
-     Whether to show related branches in revision buffers.
-
-        • ‘nil’ Don’t show any related branches.
-
-        • ‘t’ Show related local branches.
-
-        • ‘all’ Show related local and remote branches.
-
-        • ‘mixed’ Show all containing branches and local merged
-          branches.
-
- -- User Option: magit-revision-show-gravatars
-
-     Whether to show gravatar images in revision buffers.
-
-     If ‘nil’, then don’t insert any gravatar images.  If ‘t’, then
-     insert both images.  If ‘author’ or ‘committer’, then insert only
-     the respective image.
-
-     If you have customized the option ‘magit-revision-header-format’
-     and want to insert the images then you might also have to specify
-     where to do so.  In that case the value has to be a cons-cell of
-     two regular expressions.  The car specifies where to insert the
-     author’s image.  The top half of the image is inserted right after
-     the matched text, the bottom half on the next line in the same
-     column.  The cdr specifies where to insert the committer’s image,
-     accordingly.  Either the car or the cdr may be nil."
-
- -- User Option: magit-revision-use-hash-sections
-
-     Whether to turn hashes inside the commit message into sections.
-
-     If non-nil, then hashes inside the commit message are turned into
-     ‘commit’ sections.  There is a trade off to be made between
-     performance and reliability:
-
-        • ‘slow’ calls git for every word to be absolutely sure.
-
-        • ‘quick’ skips words less than seven characters long.
-
-        • ‘quicker’ additionally skips words that don’t contain a
-          number.
-
-        • ‘quickest’ uses all words that are at least seven characters
-          long and which contain at least one number as well as at least
-          one letter.
-
-     If nil, then no hashes are turned into sections, but you can still
-     visit the commit at point using "RET".
-
-   The diffs shown in the revision buffer may be automatically
-restricted to a subset of the changed files.  If the revision buffer is
-displayed from a log buffer, the revision buffer will share the same
-file restriction as that log buffer (also see the command
-‘magit-diff-toggle-file-filter’).  Note, however, that the log’s file
-restriction will be ignored when ‘magit-log-arguments’ includes
-‘--follow’.  In this case, the ‘-u’ argument of the log popup can be
-used to show the file-restricted diffs inline.
-
-   If the revision buffer is not displayed from a log buffer, the file
-restriction is determined by the file restriction in the repository’s
-diff buffer, if it exists, and the value of the option
-‘magit-use-sticky-arguments’.
-
-
-File: magit.info,  Node: Ediffing,  Next: References Buffer,  Prev: Diffing,  Up: Inspecting
-
-5.5 Ediffing
-============
-
-This section describes how to enter Ediff from Magit buffers.  For
-information on how to use Ediff itself, see *note (ediff)Top::.
-
-‘e’     (‘magit-ediff-dwim’)
-
-     Compare, stage, or resolve using Ediff.
-
-     This command tries to guess what file, and what commit or range the
-     user wants to compare, stage, or resolve using Ediff.  It might
-     only be able to guess either the file, or range/commit, in which
-     case the user is asked about the other.  It might not always guess
-     right, in which case the appropriate ‘magit-ediff-*’ command has to
-     be used explicitly.  If it cannot read the user’s mind at all, then
-     it asks the user for a command to run.
-
-‘E’     (‘magit-ediff-popup’)
-
-     This prefix command shows the following suffix commands in a popup
-     buffer.
-
-‘E r’     (‘magit-ediff-compare’)
-
-     Compare two revisions of a file using Ediff.
-
-     If the region is active, use the revisions on the first and last
-     line of the region.  With a prefix argument, instead of diffing the
-     revisions, choose a revision to view changes along, starting at the
-     common ancestor of both revisions (i.e., use a "..." range).
-
-‘E m’     (‘magit-ediff-resolve’)
-
-     Resolve outstanding conflicts in a file using Ediff, defaulting to
-     the file at point.
-
-     Provided that the value of ‘merge.conflictstyle’ is ‘diff3’, you
-     can view the file’s merge-base revision using ‘/’ in the Ediff
-     control buffer.
-
-     In the rare event that you want to manually resolve all conflicts,
-     including those already resolved by Git, use
-     ‘ediff-merge-revisions-with-ancestor’.
-
-‘E s’     (‘magit-ediff-stage’)
-
-     Stage and unstage changes to a file using Ediff, defaulting to the
-     file at point.
-
-‘E u’     (‘magit-ediff-show-unstaged’)
-
-     Show unstaged changes to a file using Ediff.
-
-‘E i’     (‘magit-ediff-show-staged’)
-
-     Show staged changes to a file using Ediff.
-
-‘E w’     (‘magit-ediff-show-working-tree’)
-
-     Show changes in a file between ‘HEAD’ and working tree using Ediff.
-
-‘E c’     (‘magit-ediff-show-commit’)
-
-     Show changes to a file introduced by a commit using Ediff.
-
-‘E z’     (‘magit-ediff-show-stash’)
-
-     Show changes to a file introduced by a stash using Ediff.
-
- -- User Option: magit-ediff-dwim-show-on-hunks
-
-     This option controls what command ‘magit-ediff-dwim’ calls when
-     point is on uncommitted hunks.  When nil, always run
-     ‘magit-ediff-stage’.  Otherwise, use ‘magit-ediff-show-staged’ and
-     ‘magit-ediff-show-unstaged’ to show staged and unstaged changes,
-     respectively.
-
- -- User Option: magit-ediff-show-stash-with-index
-
-     This option controls whether ‘magit-ediff-show-stash’ includes a
-     buffer containing the file’s state in the index at the time the
-     stash was created.  This makes it possible to tell which changes in
-     the stash were staged.
-
- -- User Option: magit-ediff-quit-hook
-
-     This hook is run after quitting an Ediff session that was created
-     using a Magit command.  The hook functions are run inside the Ediff
-     control buffer, and should not change the current buffer.
-
-     This is similar to ‘ediff-quit-hook’ but takes the needs of Magit
-     into account.  The regular ‘ediff-quit-hook’ is ignored by Ediff
-     sessions that were created using a Magit command.
-
-
-File: magit.info,  Node: References Buffer,  Next: Bisecting,  Prev: Ediffing,  Up: Inspecting
-
-5.6 References Buffer
-=====================
-
-‘y’     (‘magit-show-refs-popup’)
-
-     List and compare references in a dedicated buffer.  By default all
-     refs are compared with ‘HEAD’, but with a prefix argument this
-     command instead acts as a prefix command and shows the following
-     suffix commands along with the appropriate infix arguments in a
-     popup buffer.
-
-‘y y’     (‘magit-show-refs-head’)
-
-     List and compare references in a dedicated buffer.  Refs are
-     compared with ‘HEAD’.
-
-‘y c’     (‘magit-show-refs-current’)
-
-     List and compare references in a dedicated buffer.  Refs are
-     compared with the current branch or ‘HEAD’ if it is detached.
-
-‘y o’     (‘magit-show-refs’)
-
-     List and compare references in a dedicated buffer.  Refs are
-     compared with a branch read from the user.
-
- -- User Option: magit-refs-show-commit-count
-
-     Whether to show commit counts in Magit-Refs mode buffers.
-
-        • ‘all’ Show counts for branches and tags.
-
-        • ‘branch’ Show counts for branches only.
-
-        • ‘nil’ Never show counts.
-
-     The default is ‘nil’ because anything else can be very expensive.
-
- -- User Option: magit-refs-pad-commit-counts
-
-     Whether to pad all commit counts on all sides in Magit-Refs mode
-     buffers.
-
-     If this is nil, then some commit counts are displayed right next to
-     one of the branches that appear next to the count, without any
-     space in between.  This might look bad if the branch name faces
-     look too similar to ‘magit-dimmed’.
-
-     If this is non-nil, then spaces are placed on both sides of all
-     commit counts.
-
- -- User Option: magit-refs-show-remote-prefix
-
-     Whether to show the remote prefix in lists of remote branches.
-
-     Showing the prefix is redundant because the name of the remote is
-     already shown in the heading preceding the list of its branches.
-
- -- User Option: magit-refs-primary-column-width
-
-     Width of the primary column in ‘magit-refs-mode’ buffers.  The
-     primary column is the column that contains the name of the branch
-     that the current row is about.
-
-     If this is an integer, then the column is that many columns wide.
-     Otherwise it has to be a cons-cell of two integers.  The first
-     specifies the minimal width, the second the maximal width.  In that
-     case the actual width is determined using the length of the names
-     of the shown local branches.  (Remote branches and tags are not
-     taken into account when calculating to optimal width.)
-
- -- User Option: magit-refs-focus-column-width
-
-     Width of the focus column in ‘magit-refs-mode’ buffers.
-
-     The focus column is the first column, which marks one branch
-     (usually the current branch) as the focused branch using ‘*’ or
-     ‘@’.  For each other reference, this column optionally shows how
-     many commits it is ahead of the focused branch and ‘<’, or if it
-     isn’t ahead then the commits it is behind and ‘>’, or if it isn’t
-     behind either, then a ‘=’.
-
-     This column may also display only ‘*’ or ‘@’ for the focused
-     branch, in which case this option is ignored.  Use ‘L v’ to change
-     the verbosity of this column.
-
- -- User Option: magit-refs-margin
-
-     This option specifies whether the margin is initially shown in
-     Magit-Refs mode buffers and how it is formatted.
-
-     The value has the form ‘(INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH)’.
-
-        • If INIT is non-nil, then the margin is shown initially.
-
-        • STYLE controls how to format the committer date.  It can be
-          one of ‘age’ (to show the age of the commit),
-          ‘age-abbreviated’ (to abbreviate the time unit to a
-          character), or a string (suitable for ‘format-time-string’) to
-          show the actual date.
-
-        • WIDTH controls the width of the margin.  This exists for
-          forward compatibility and currently the value should not be
-          changed.
-
-        • AUTHOR controls whether the name of the author is also shown
-          by default.
-
-        • AUTHOR-WIDTH has to be an integer.  When the name of the
-          author is shown, then this specifies how much space is used to
-          do so.
-
- -- User Option: magit-refs-margin-for-tags
-
-     This option specifies whether to show information about tags in the
-     margin.  This is disabled by default because it is slow if there
-     are many tags.
-
-   The following variables control how individual refs are displayed.
-If you change one of these variables (especially the "%c" part), then
-you should also change the others to keep things aligned.  The following
-%-sequences are supported:
-
-   • ‘%a’ Number of commits this ref has over the one we compare to.
-
-   • ‘%b’ Number of commits the ref we compare to has over this one.
-
-   • ‘%c’ Number of commits this ref has over the one we compare to.
-     For the ref which all other refs are compared this is instead "@",
-     if it is the current branch, or "#" otherwise.
-
-   • ‘%C’ For the ref which all other refs are compared this is "@", if
-     it is the current branch, or "#" otherwise.  For all other refs "
-     ".
-
-   • ‘%h’ Hash of this ref’s tip.
-
-   • ‘%m’ Commit summary of the tip of this ref.
-
-   • ‘%n’ Name of this ref.
-
-   • ‘%u’ Upstream of this local branch.
-
-   • ‘%U’ Upstream of this local branch and additional local vs.
-     upstream information.
-
- -- User Option: magit-refs-filter-alist
-
-     This alist controls which tags and branches are omitted from being
-     displayed in ‘magit-refs-mode’ buffers.  If it is ‘nil’, then all
-     refs are displayed (subject to ‘magit-refs-sections-hook’).
-
-     All keys are tried in order until one matches.  Then its value is
-     used and subsequent elements are ignored.  If the value is non-nil,
-     then the reference is displayed, otherwise it is not.  If no
-     element matches, then the reference is displayed.
-
-     A key can either be a regular expression that the refname has to
-     match, or a function that takes the refname as only argument and
-     returns a boolean.  Contrary to how they are displayed in the
-     buffer, for comparison each tag begins with "tags/" and each remote
-     branch with "<remote>/".
-
-‘RET’     (‘magit-visit-ref’)
-
-     This command visits the reference or revision at point in another
-     buffer.  If there is no revision at point or with a prefix argument
-     then it prompts for a revision.
-
-     This command behaves just like ‘magit-show-commit’ as described
-     above, except if point is on a reference in a ‘magit-refs-mode’
-     buffer, in which case the behavior may be different, but only if
-     you have customized the option ‘magit-visit-ref-behavior’.
-
- -- User Option: magit-visit-ref-behavior
-
-     This option controls how ‘magit-visit-ref’ behaves in
-     ‘magit-refs-mode’ buffers.
-
-     By default ‘magit-visit-ref’ behaves like ‘magit-show-commit’, in
-     all buffers, including ‘magit-refs-mode’ buffers.  When the type of
-     the section at point is ‘commit’ then "RET" is bound to
-     ‘magit-show-commit’, and when the type is either ‘branch’ or ‘tag’
-     then it is bound to ‘magit-visit-ref’.
-
-     "RET" is one of Magit’s most essential keys and at least by default
-     it should behave consistently across all of Magit, especially
-     because users quickly learn that it does something very harmless;
-     it shows more information about the thing at point in another
-     buffer.
-
-     However "RET" used to behave differently in ‘magit-refs-mode’
-     buffers, doing surprising things, some of which cannot really be
-     described as "visit this thing".  If you’ve grown accustomed this
-     behavior, you can restore it by adding one or more of the below
-     symbols to the value of this option.  But keep in mind that by
-     doing so you don’t only introduce inconsistencies, you also lose
-     some functionality and might have to resort to ‘M-x
-     magit-show-commit’ to get it back.
-
-     ‘magit-visit-ref’ looks for these symbols in the order in which
-     they are described here.  If the presence of a symbol applies to
-     the current situation, then the symbols that follow do not affect
-     the outcome.
-
-        • ‘focus-on-ref’
-
-          With a prefix argument update the buffer to show commit counts
-          and lists of cherry commits relative to the reference at point
-          instead of relative to the current buffer or ‘HEAD’.
-
-          Instead of adding this symbol, consider pressing "C-u y o
-          RET".
-
-        • ‘create-branch’
-
-          If point is on a remote branch, then create a new local branch
-          with the same name, use the remote branch as its upstream, and
-          then check out the local branch.
-
-          Instead of adding this symbol, consider pressing "b c RET
-          RET", like you would do in other buffers.
-
-        • ‘checkout-any’
-
-          Check out the reference at point.  If that reference is a tag
-          or a remote branch, then this results in a detached ‘HEAD’.
-
-          Instead of adding this symbol, consider pressing "b b RET",
-          like you would do in other buffers.
-
-        • ‘checkout-branch’
-
-          Check out the local branch at point.
-
-          Instead of adding this symbol, consider pressing "b b RET",
-          like you would do in other buffers.
-
-* Menu:
-
-* References Sections::
-
-
-File: magit.info,  Node: References Sections,  Up: References Buffer
-
-5.6.1 References Sections
--------------------------
-
-The contents of references buffers is controlled using the hook
-‘magit-refs-sections-hook’.  See *note Section Hooks:: to learn about
-such hooks and how to customize them.  All of the below functions are
-members of the default value.  Note that it makes much less sense to
-customize this hook than it does for the respective hook used for the
-status buffer.
-
- -- User Option: magit-refs-sections-hook
-
-     Hook run to insert sections into a references buffer.
-
- -- Function: magit-insert-local-branches
-
-     Insert sections showing all local branches.
-
- -- Function: magit-insert-remote-branches
-
-     Insert sections showing all remote-tracking branches.
-
- -- Function: magit-insert-tags
-
-     Insert sections showing all tags.
-
-
-File: magit.info,  Node: Bisecting,  Next: Visiting Blobs,  Prev: References Buffer,  Up: Inspecting
-
-5.7 Bisecting
-=============
-
-Also see *note (gitman)git-bisect::.
-
-‘B’     (‘magit-bisect-popup’)
-
-     This prefix command shows the following suffix commands in a popup
-     buffer.
-
-   When bisecting is not in progress, then the popup buffer features the
-following commands.
-
-‘B B’     (‘magit-bisect-start’)
-
-     Start a bisect session.
-
-     Bisecting a bug means to find the commit that introduced it.  This
-     command starts such a bisect session by asking for a known good and
-     a bad commit.
-
-‘B s’     (‘magit-bisect-run’)
-
-     Bisect automatically by running commands after each step.
-
-   When bisecting is in progress, then the popup buffer features these
-commands instead.
-
-‘B b’     (‘magit-bisect-bad’)
-
-     Mark the current commit as bad.  Use this after you have asserted
-     that the commit does contain the bug in question.
-
-‘B g’     (‘magit-bisect-good’)
-
-     Mark the current commit as good.  Use this after you have asserted
-     that the commit does not contain the bug in question.
-
-‘B k’     (‘magit-bisect-skip’)
-
-     Skip the current commit.  Use this if for some reason the current
-     commit is not a good one to test.  This command lets Git choose a
-     different one.
-
-‘B r’     (‘magit-bisect-reset’)
-
-     After bisecting, cleanup bisection state and return to original
-     ‘HEAD’.
-
-   By default the status buffer shows information about the ongoing
-bisect session.
-
- -- User Option: magit-bisect-show-graph
-
-     This option controls whether a graph is displayed for the log of
-     commits that still have to be bisected.
-
-
-File: magit.info,  Node: Visiting Blobs,  Next: Blaming,  Prev: Bisecting,  Up: Inspecting
-
-5.8 Visiting Blobs
-==================
-
-‘M-x magit-find-file’     (‘magit-find-file’)
-
-     View FILE from REV.  Switch to a buffer visiting blob REV:FILE,
-     creating one if none already exists.
-
-‘M-x magit-find-file-other-window’     (‘magit-find-file-other-window’)
-
-     View FILE from REV, in another window.  Like ‘magit-find-file’, but
-     create a new window or reuse an existing one.
-
-
-File: magit.info,  Node: Blaming,  Prev: Visiting Blobs,  Up: Inspecting
-
-5.9 Blaming
-===========
-
-Also see *note (gitman)git-blame::.
-
-   To start blaming you can use ‘M-x’ in a file-visiting buffer to
-invoke one of the following commands.  You can also invoke these
-commands using the blame popup, which is available on ‘b’ in
-file-visiting buffers that already contain blame information and, also
-on ‘b’, in all blob-visiting buffers.  You can also enter the blame
-popup from the file popup, which is available on ‘C-c M-g’, provided
-‘magit-file-mode’ is enabled, see *note Minor Mode for Buffers Visiting
-Files::.
-
- -- Command: magit-blame-addition
-
-     This command augments each line or chunk of lines in the current
-     file- or blob-visiting buffer with information about what commits
-     last touched these lines.
-
-     If the buffer visits a revision of that file, then history up to
-     that revision is considered.  Otherwise, the file’s full history is
-     considered, including uncommitted changes.
-
-     If Magit-Blame mode is already turned on in the current buffer then
-     blaming is done recursively, by visiting REVISION:FILE (using
-     ‘magit-find-file’), where REVISION is a parent of the revision that
-     added the current line or chunk of lines.
-
- -- Command: magit-blame-echo
-
-     This command is like ‘magit-blame-addition’ except that it doesn’t
-     turn on ‘read-only-mode’ and that it initially uses the
-     visualization style specified by option ‘magit-blame-echo-style’.
-
- -- Command: magit-blame-removal
-
-     This command augments each line or chunk of lines in the current
-     blob-visiting buffer with information about the revision that
-     removes it.  It cannot be used in file-visiting buffers.
-
-     Like ‘magit-blame-addition’, this command can be used recursively.
-
- -- Command: magit-blame-reverse
-
-     This command augments each line or chunk of lines in the current
-     file- or blob-visiting buffer with information about the last
-     revision in which a line still existed.
-
-     Like ‘magit-blame-addition’, this command can be used recursively.
-
-   The following key bindings are available when Magit-Blame mode is
-enabled and Read-Only mode is not enabled.  These commands are also
-available in other buffers; here only the behavior is described that is
-relevant in file-visiting buffers that are being blamed.
-
-‘RET’     (‘magit-show-commit’)
-
-     This command shows the commit that last touched the line at point.
-
-‘SPC’     (‘magit-diff-show-or-scroll-up’)
-
-     This command updates the commit buffer.
-
-     This either shows the commit that last touched the line at point in
-     the appropriate buffer, or if that buffer is already being
-     displayed in the current frame and if that buffer contains
-     information about that commit, then the buffer is scrolled up
-     instead.
-
-‘DEL’     (‘magit-diff-show-or-scroll-down’)
-
-     This command updates the commit buffer.
-
-     This either shows the commit that last touched the line at point in
-     the appropriate buffer, or if that buffer is already being
-     displayed in the current frame and if that buffer contains
-     information about that commit, then the buffer is scrolled down
-     instead.
-
-   The following key bindings are available when Magit-Blame mode is
-enabled and Read-Only mode is not enabled.
-
-‘b’     (‘magit-blame-popup’)
-
-     This prefix command shows the above suffix command along with the
-     appropriate infix arguments in a popup buffer.
-
-‘n’     (‘magit-blame-next-chunk’)
-
-     This command moves to the next chunk.
-
-‘N’     (‘magit-blame-next-chunk-same-commit’)
-
-     This command moves to the next chunk from the same commit.
-
-‘p’     (‘magit-blame-previous-chunk’)
-
-     This command moves to the previous chunk.
-
-‘P’     (‘magit-blame-previous-chunk-same-commit’)
-
-     This command moves to the previous chunk from the same commit.
-
-‘q’     (‘magit-blame-quit’)
-
-     This command turns off Magit-Blame mode.  If the buffer was created
-     during a recursive blame, then it also kills the buffer.
-
-‘M-w’     (‘magit-blame-copy-hash’)
-
-     This command saves the hash of the current chunk’s commit to the
-     kill ring.
-
-     When the region is active, the command saves the region’s content
-     instead of the hash, like ‘kill-ring-save’ would.
-
-‘c’     (‘magit-blame-cycle-style’)
-
-     This command changes how blame information is visualized in the
-     current buffer by cycling through the styles specified using the
-     option ‘magit-blame-styles’.
-
-   Blaming is also controlled using the following options.
-
- -- User Option: magit-blame-styles
-
-     This option defines a list of styles used to visualize blame
-     information.  For now see its doc-string to learn more.
-
- -- User Option: magit-blame-echo-style
-
-     This option specifies the blame visualization style used by the
-     command ‘magit-blame-echo’.  This must be a symbol that is used as
-     the identifier for one of the styles defined in
-     ‘magit-blame-styles’.
-
- -- User Option: magit-blame-time-format
-
-     This option specifies the format string used to display times when
-     showing blame information.
-
- -- User Option: magit-blame-read-only
-
-     This option controls whether blaming a buffer also makes
-     temporarily read-only.
-
- -- User Option: magit-blame-disable-modes
-
-     This option lists incompatible minor-modes that should be disabled
-     temporarily when a buffer contains blame information.  They are
-     enabled again when the buffer no longer shows blame information.
-
- -- User Option: magit-blame-goto-chunk-hook
-
-     This hook is run when moving between chunks.
-
-
-File: magit.info,  Node: Manipulating,  Next: Transferring,  Prev: Inspecting,  Up: Top
-
-6 Manipulating
-**************
-
-* Menu:
-
-* Repository Setup::
-* Staging and Unstaging::
-* Applying::
-* Committing::
-* Branching::
-* Merging::
-* Resolving Conflicts::
-* Rebasing::
-* Cherry Picking::
-* Resetting::
-* Stashing::
-
-
-File: magit.info,  Node: Repository Setup,  Next: Staging and Unstaging,  Up: Manipulating
-
-6.1 Repository Setup
-====================
-
-‘M-x magit-init’     (‘magit-init’)
-
-     This command initializes a repository and then shows the status
-     buffer for the new repository.
-
-     If the directory is below an existing repository, then the user has
-     to confirm that a new one should be created inside.  If the
-     directory is the root of the existing repository, then the user has
-     to confirm that it should be reinitialized.
-
-‘M-x magit-clone’     (‘magit-clone’)
-
-     This command clones a repository and then shows the status buffer
-     for the new repository.
-
-     The user is queried for a remote url and a local directory.
-
- -- User Option: magit-clone-set-remote.pushDefault
-
-     Whether to set the value of ‘remote.pushDefault’ after cloning.
-
-     If ‘t’, then set without asking.  If ‘nil’, then don’t set.  If
-     ‘ask’, then ask the user every time she clones a repository.
-
-
-File: magit.info,  Node: Staging and Unstaging,  Next: Applying,  Prev: Repository Setup,  Up: Manipulating
-
-6.2 Staging and Unstaging
-=========================
-
-Like Git, Magit can of course stage and unstage complete files.  Unlike
-Git, it also allows users to gracefully un-/stage individual hunks and
-even just part of a hunk.  To stage individual hunks and parts of hunks
-using Git directly, one has to use the very modal and rather clumsy
-interface of a ‘git add --interactive’ session.
-
-   With Magit, on the other hand, one can un-/stage individual hunks by
-just moving point into the respective section inside a diff displayed in
-the status buffer or a separate diff buffer and typing ‘s’ or ‘u’.  To
-operate on just parts of a hunk, mark the changes that should be
-un-/staged using the region and then press the same key that would be
-used to un-/stage.  To stage multiple files or hunks at once use a
-region that starts inside the heading of such a section and ends inside
-the heading of a sibling section of the same type.
-
-   Besides staging and unstaging, Magit also provides several other
-"apply variants" that can also operate on a file, multiple files at
-once, a hunk, multiple hunks at once, and on parts of a hunk.  These
-apply variants are described in the next section.
-
-   You can also use Ediff to stage and unstage.  See *note Ediffing::.
-
-‘s’     (‘magit-stage’)
-
-     Add the change at point to the staging area.
-
-     With a prefix argument and an untracked file (or files) at point,
-     stage the file but not its content.  This makes it possible to
-     stage only a subset of the new file’s changes.
-
-‘S’     (‘magit-stage-modified’)
-
-     Stage all changes to files modified in the worktree.  Stage all new
-     content of tracked files and remove tracked files that no longer
-     exist in the working tree from the index also.  With a prefix
-     argument also stage previously untracked (but not ignored) files.
-
-‘u’     (‘magit-unstage’)
-
-     Remove the change at point from the staging area.
-
-     Only staged changes can be unstaged.  But by default this command
-     performs an action that is somewhat similar to unstaging, when it
-     is called on a committed change: it reverses the change in the
-     index but not in the working tree.
-
-‘U’     (‘magit-unstage-all’)
-
-     Remove all changes from the staging area.
-
- -- User Option: magit-unstage-committed
-
-     This option controls whether ‘magit-unstage’ "unstages" committed
-     changes by reversing them in the index but not the working tree.
-     The alternative is to raise an error.
-
-‘M-x magit-reverse-in-index’     (‘magit-reverse-in-index’)
-
-     This command reverses the committed change at point in the index
-     but not the working tree.  By default no key is bound directly to
-     this command, but it is indirectly called when ‘u’
-     (‘magit-unstage’) is pressed on a committed change.
-
-     This allows extracting a change from ‘HEAD’, while leaving it in
-     the working tree, so that it can later be committed using a
-     separate commit.  A typical workflow would be:
-
-        • Optionally make sure that there are no uncommitted changes.
-
-        • Visit the ‘HEAD’ commit and navigate to the change that should
-          not have been included in that commit.
-
-        • Type ‘u’ (‘magit-unstage’) to reverse it in the index.  This
-          assumes that ‘magit-unstage-committed-changes’ is non-nil.
-
-        • Type ‘c e’ to extend ‘HEAD’ with the staged changes, including
-          those that were already staged before.
-
-        • Optionally stage the remaining changes using ‘s’ or ‘S’ and
-          then type ‘c c’ to create a new commit.
-
-‘M-x magit-reset-index’     (‘magit-reset-index’)
-
-     Reset the index to some commit.  The commit is read from the user
-     and defaults to the commit at point.  If there is no commit at
-     point, then it defaults to ‘HEAD’.
-
-* Menu:
-
-* Staging from File-Visiting Buffers::
-
-
-File: magit.info,  Node: Staging from File-Visiting Buffers,  Up: Staging and Unstaging
-
-6.2.1 Staging from File-Visiting Buffers
-----------------------------------------
-
-Fine-grained un-/staging has to be done from the status or a diff
-buffer, but it’s also possible to un-/stage all changes made to the file
-visited in the current buffer right from inside that buffer.
-
-‘M-x magit-stage-file’     (‘magit-stage-file’)
-
-     When invoked inside a file-visiting buffer, then stage all changes
-     to that file.  In a Magit buffer, stage the file at point if any.
-     Otherwise prompt for a file to be staged.  With a prefix argument
-     always prompt the user for a file, even in a file-visiting buffer
-     or when there is a file section at point.
-
-‘M-x magit-unstage-file’     (‘magit-unstage-file’)
-
-     When invoked inside a file-visiting buffer, then unstage all
-     changes to that file.  In a Magit buffer, unstage the file at point
-     if any.  Otherwise prompt for a file to be unstaged.  With a prefix
-     argument always prompt the user for a file, even in a file-visiting
-     buffer or when there is a file section at point.
-
-
-File: magit.info,  Node: Applying,  Next: Committing,  Prev: Staging and Unstaging,  Up: Manipulating
-
-6.3 Applying
-============
-
-Magit provides several "apply variants": stage, unstage, discard,
-reverse, and "regular apply".  At least when operating on a hunk they
-are all implemented using ‘git apply’, which is why they are called
-"apply variants".
-
-   • Stage.  Apply a change from the working tree to the index.  The
-     change also remains in the working tree.
-
-   • Unstage.  Remove a change from the index.  The change remains in
-     the working tree.
-
-   • Discard.  On a staged change, remove it from the working tree and
-     the index.  On an unstaged change, remove it from the working tree
-     only.
-
-   • Reverse.  Reverse a change in the working tree.  Both committed and
-     staged changes can be reversed.  Unstaged changes cannot be
-     reversed.  Discard them instead.
-
-   • Apply.  Apply a change to the working tree.  Both committed and
-     staged changes can be applied.  Unstaged changes cannot be applied
-     - as they already have been applied.
-
-   The previous section described the staging and unstaging commands.
-What follows are the commands which implement the remaining apply
-variants.
-
-‘a’     (‘magit-apply’)
-
-     Apply the change at point to the working tree.
-
-     With a prefix argument fallback to a 3-way merge.  Doing so causes
-     the change to be applied to the index as well.
-
-‘k’     (‘magit-discard’)
-
-     Remove the change at point from the working tree.
-
-‘v’     (‘magit-reverse’)
-
-     Reverse the change at point in the working tree.
-
-     With a prefix argument fallback to a 3-way merge.  Doing so causes
-     the change to be applied to the index as well.
-
-   With a prefix argument all apply variants attempt a 3-way merge when
-appropriate (i.e.  when ‘git apply’ is used internally).
-
-
-File: magit.info,  Node: Committing,  Next: Branching,  Prev: Applying,  Up: Manipulating
-
-6.4 Committing
-==============
-
-When the user initiates a commit, Magit calls ‘git commit’ without any
-arguments, so Git has to get it from the user.  It creates the file
-‘.git/COMMIT_EDITMSG’ and then opens that file in an editor.  Magit
-arranges for that editor to be the Emacsclient.  Once the user finishes
-the editing session, the Emacsclient exits and Git creates the commit
-using the file’s content as message.
-
-* Menu:
-
-* Initiating a Commit::
-* Editing Commit Messages::
-
-
-File: magit.info,  Node: Initiating a Commit,  Next: Editing Commit Messages,  Up: Committing
-
-6.4.1 Initiating a Commit
--------------------------
-
-Also see *note (gitman)git-commit::.
-
-‘c’     (‘magit-commit-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘c c’     (‘magit-commit-create’)
-
-     Create a new commit on ‘HEAD’.  With a prefix argument amend to the
-     commit at ‘HEAD’ instead.
-
-‘c a’     (‘magit-commit-amend’)
-
-     Amend the last commit.
-
-‘c e’     (‘magit-commit-extend’)
-
-     Amend the last commit, without editing the message.  With a prefix
-     argument keep the committer date, otherwise change it.  The option
-     ‘magit-commit-extend-override-date’ can be used to inverse the
-     meaning of the prefix argument.
-
-     Non-interactively respect the optional OVERRIDE-DATE argument and
-     ignore the option.
-
-‘c w’     (‘magit-commit-reword’)
-
-     Reword the last commit, ignoring staged changes.  With a prefix
-     argument keep the committer date, otherwise change it.  The option
-     ‘magit-commit-reword-override-date’ can be used to inverse the
-     meaning of the prefix argument.
-
-     Non-interactively respect the optional OVERRIDE-DATE argument and
-     ignore the option.
-
-‘c f’     (‘magit-commit-fixup’)
-
-     Create a fixup commit.
-
-     With a prefix argument the target commit has to be confirmed.
-     Otherwise the commit at point may be used without confirmation
-     depending on the value of option ‘magit-commit-squash-confirm’.
-
-‘c F’     (‘magit-commit-instant-fixup’)
-
-     Create a fixup commit and instantly rebase.
-
-‘c s’     (‘magit-commit-squash’)
-
-     Create a squash commit, without editing the squash message.
-
-     With a prefix argument the target commit has to be confirmed.
-     Otherwise the commit at point may be used without confirmation
-     depending on the value of option ‘magit-commit-squash-confirm’.
-
-‘c S’     (‘magit-commit-instant-squash’)
-
-     Create a squash commit and instantly rebase.
-
-‘c A’     (‘magit-commit-augment’)
-
-     Create a squash commit, editing the squash message.
-
-     With a prefix argument the target commit has to be confirmed.
-     Otherwise the commit at point may be used without confirmation
-     depending on the value of option ‘magit-commit-squash-confirm’.
-
- -- User Option: magit-commit-ask-to-stage
-
-     Whether to ask to stage all unstaged changes when committing and
-     nothing is staged.
-
- -- User Option: magit-commit-extend-override-date
-
-     Whether using ‘magit-commit-extend’ changes the committer date.
-
- -- User Option: magit-commit-reword-override-date
-
-     Whether using ‘magit-commit-reword’ changes the committer date.
-
- -- User Option: magit-commit-squash-confirm
-
-     Whether the commit targeted by squash and fixup has to be
-     confirmed.  When non-nil then the commit at point (if any) is used
-     as default choice.  Otherwise it has to be confirmed.  This option
-     only affects ‘magit-commit-squash’ and ‘magit-commit-fixup’.  The
-     "instant" variants always require confirmation because making an
-     error while using those is harder to recover from.
-
-
-File: magit.info,  Node: Editing Commit Messages,  Prev: Initiating a Commit,  Up: Committing
-
-6.4.2 Editing Commit Messages
------------------------------
-
-After initiating a commit as described in the previous section, two new
-buffers appear.  One shows the changes that are about to committed,
-while the other is used to write the message.  All regular editing
-commands are available in the commit message buffer.  This section only
-describes the additional commands.
-
-   Commit messages are edited in an edit session - in the background Git
-is waiting for the editor, in our case the Emacsclient, to save the
-commit message in a file (in most cases ‘.git/COMMIT_EDITMSG’) and then
-return.  If the Emacsclient returns with a non-zero exit status then Git
-does not create the commit.  So the most important commands are those
-for finishing and aborting the commit.
-
-‘C-c C-c’     (‘with-editor-finish’)
-
-     Finish the current editing session by returning with exit code 0.
-     Git then creates the commit using the message it finds in the file.
-
-‘C-c C-k’     (‘with-editor-cancel’)
-
-     Cancel the current editing session by returning with exit code 1.
-     Git then cancels the commit, but leaves the file untouched.
-
-   In addition to being used by Git, these messages may also be stored
-in a ring that persists until Emacs is closed.  By default the message
-is stored at the beginning and the end of an edit session (regardless of
-whether the session is finished successfully or was canceled).  It is
-sometimes useful to bring back messages from that ring.
-
-‘C-c M-s’     (‘git-commit-save-message’)
-
-     Save the current buffer content to the commit message ring.
-
-‘M-p’     (‘git-commit-prev-message’)
-
-     Cycle backward through the commit message ring, after saving the
-     current message to the ring.  With a numeric prefix ARG, go back
-     ARG comments.
-
-‘M-n’     (‘git-commit-next-message’)
-
-     Cycle forward through the commit message ring, after saving the
-     current message to the ring.  With a numeric prefix ARG, go back
-     ARG comments.
-
-   By default the diff for the changes that are about to be committed
-are automatically shown when invoking the commit.  When amending to an
-existing commit it may be useful to show either the changes that are
-about to be added to that commit or to show those changes together with
-those that are already committed.
-
-‘C-c C-d’     (‘magit-diff-while-committing’)
-
-     While committing, show the changes that are about to be committed.
-     While amending, invoking the command again toggles between showing
-     just the new changes or all the changes that will be committed.
-
-‘C-c C-w’     (‘magit-pop-revision-stack’)
-
-     This command inserts a representation of a revision into the
-     current buffer.  It can be used inside buffers used to write commit
-     messages but also in other buffers such as buffers used to edit
-     emails or ChangeLog files.
-
-     By default this command pops the revision which was last added to
-     the ‘magit-revision-stack’ and inserts it into the current buffer
-     according to ‘magit-pop-revision-stack-format’.  Revisions can be
-     put on the stack using ‘magit-copy-section-value’ and
-     ‘magit-copy-buffer-revision’.
-
-     If the stack is empty or with a prefix argument it instead reads a
-     revision in the minibuffer.  By using the minibuffer history this
-     allows selecting an item which was popped earlier or to insert an
-     arbitrary reference or revision without first pushing it onto the
-     stack.
-
-     When reading the revision from the minibuffer, then it might not be
-     possible to guess the correct repository.  When this command is
-     called inside a repository (e.g.  while composing a commit
-     message), then that repository is used.  Otherwise (e.g.  while
-     composing an email) then the repository recorded for the top
-     element of the stack is used (even though we insert another
-     revision).  If not called inside a repository and with an empty
-     stack, or with two prefix arguments, then read the repository in
-     the minibuffer too.
-
- -- User Option: magit-pop-revision-stack-format
-
-     This option controls how the command ‘magit-pop-revision-stack’
-     inserts a revision into the current buffer.
-
-     The entries on the stack have the format ‘(HASH TOPLEVEL)’ and this
-     option has the format ‘(POINT-FORMAT EOB-FORMAT INDEX-REGEXP)’, all
-     of which may be nil or a string (though either one of EOB-FORMAT or
-     POINT-FORMAT should be a string, and if INDEX-REGEXP is non-nil,
-     then the two formats should be too).
-
-     First INDEX-REGEXP is used to find the previously inserted entry,
-     by searching backward from point.  The first submatch must match
-     the index number.  That number is incremented by one, and becomes
-     the index number of the entry to be inserted.  If you don’t want to
-     number the inserted revisions, then use nil for INDEX-REGEXP.
-
-     If INDEX-REGEXP is non-nil then both POINT-FORMAT and EOB-FORMAT
-     should contain \"%N\", which is replaced with the number that was
-     determined in the previous step.
-
-     Both formats, if non-nil and after removing %N, are then expanded
-     using ‘git show –format=FORMAT ...’ inside TOPLEVEL.
-
-     The expansion of POINT-FORMAT is inserted at point, and the
-     expansion of EOB-FORMAT is inserted at the end of the buffer (if
-     the buffer ends with a comment, then it is inserted right before
-     that).
-
-   Some projects use pseudo headers in commit messages.  Magit colorizes
-such headers and provides some commands to insert such headers.
-
- -- User Option: git-commit-known-pseudo-headers
-
-     A list of Git pseudo headers to be highlighted.
-
-‘C-c C-a’     (‘git-commit-ack’)
-
-     Insert a header acknowledging that you have looked at the commit.
-
-‘C-c C-r’     (‘git-commit-review’)
-
-     Insert a header acknowledging that you have reviewed the commit.
-
-‘C-c C-s’     (‘git-commit-signoff’)
-
-     Insert a header to sign off the commit.
-
-‘C-c C-t’     (‘git-commit-test’)
-
-     Insert a header acknowledging that you have tested the commit.
-
-‘C-c C-o’     (‘git-commit-cc’)
-
-     Insert a header mentioning someone who might be interested.
-
-‘C-c C-p’     (‘git-commit-reported’)
-
-     Insert a header mentioning the person who reported the issue being
-     fixed by the commit.
-
-‘C-c C-i’     (‘git-commit-suggested’)
-
-     Insert a header mentioning the person who suggested the change.
-
-   ‘git-commit-mode’ is a minor mode that is only used to establish the
-above key bindings.  This allows using an arbitrary major mode when
-editing the commit message.  It’s even possible to use a different major
-mode in different repositories, which is useful when different projects
-impose different commit message conventions.
-
- -- User Option: git-commit-major-mode
-
-     The value of this option is the major mode used to edit Git commit
-     messages.
-
-   Because ‘git-commit-mode’ is a minor mode, we don’t use its mode hook
-to setup the buffer, except for the key bindings.  All other setup
-happens in the function ‘git-commit-setup’, which among other things
-runs the hook ‘git-commit-setup-hook’.  The following functions are
-suitable for that hook.
-
- -- User Option: git-commit-setup-hook
-
-     Hook run at the end of ‘git-commit-setup’.
-
- -- Function: magit-revert-buffers &optional force
-
-     Revert unmodified file-visiting buffers of the current repository.
-
-     If either ‘magit-revert-buffers’ is non-nil and
-     ‘inhibit-magit-revert’ is nil, or if optional FORCE is non-nil,
-     then revert all unmodified buffers that visit files being tracked
-     in the current repository.
-
- -- Function: git-commit-save-message
-
-     Save the current buffer content to the commit message ring.
-
- -- Function: git-commit-setup-changelog-support
-
-     After this function is called, ChangeLog entries are treated as
-     paragraphs.
-
- -- Function: git-commit-turn-on-auto-fill
-
-     Turn on ‘auto-fill-mode’ and set ‘fill-column’ to the value of
-     ‘git-commit-fill-column’.
-
- -- Function: git-commit-turn-on-flyspell
-
-     Turn on Flyspell mode.  Also prevent comments from being checked
-     and finally check current non-comment text.
-
- -- Function: git-commit-propertize-diff
-
-     Propertize the diff shown inside the commit message buffer.  Git
-     inserts such diffs into the commit message template when the
-     ‘--verbose’ argument is used.  Magit’s commit popup by default does
-     not offer that argument because the diff that is shown in a
-     separate buffer is more useful.  But some users disagree, which is
-     why this function exists.
-
- -- Function: with-editor-usage-message
-
-     Show usage information in the echo area.
-
-   Magit also helps with writing *good* commit messages by complaining
-when certain rules are violated.
-
- -- User Option: git-commit-summary-max-length
-
-     The intended maximal length of the summary line of commit messages.
-     Characters beyond this column are colorized to indicate that this
-     preference has been violated.
-
- -- User Option: git-commit-fill-column
-
-     Column beyond which automatic line-wrapping should happen in commit
-     message buffers.
-
- -- User Option: git-commit-finish-query-functions
-
-     List of functions called to query before performing commit.
-
-     The commit message buffer is current while the functions are
-     called.  If any of them returns nil, then the commit is not
-     performed and the buffer is not killed.  The user should then fix
-     the issue and try again.
-
-     The functions are called with one argument.  If it is non-nil then
-     that indicates that the user used a prefix argument to force
-     finishing the session despite issues.  Functions should usually
-     honor this wish and return non-nil.
-
- -- Function: git-commit-check-style-conventions
-
-     Check for violations of certain basic style conventions.  For each
-     violation ask the user if she wants to proceed anyway.  This makes
-     sure the summary line isn’t too long and that the second line is
-     empty.
-
-   To show no diff while committing remove ‘magit-commit-diff’ from
-‘server-switch-hook’.
-
-
-File: magit.info,  Node: Branching,  Next: Merging,  Prev: Committing,  Up: Manipulating
-
-6.5 Branching
-=============
-
-* Menu:
-
-* The Two Remotes::
-* The Branch Popup::
-* The Branch Config Popup::
-* Auxiliary Branch Commands::
-
-
-File: magit.info,  Node: The Two Remotes,  Next: The Branch Popup,  Up: Branching
-
-6.5.1 The Two Remotes
----------------------
-
-The upstream branch of some local branch is the branch into which the
-commits on that local branch should eventually be merged, usually
-something like ‘origin/master’.  For the ‘master’ branch itself the
-upstream branch and the branch it is being pushed to, are usually the
-same remote branch.  But for a feature branch the upstream branch and
-the branch it is being pushed to should differ.
-
-   The commits on feature branches too should _eventually_ end up in a
-remote branch such as ‘origin/master’ or ‘origin/maint’.  Such a branch
-should therefore be used as the upstream.  But feature branches
-shouldn’t be pushed directly to such branches.  Instead a feature branch
-‘my-feature’ is usually pushed to ‘my-fork/my-feature’ or if you are a
-contributor ‘origin/my-feature’.  After the new feature has been
-reviewed, the maintainer merges the feature into ‘master’.  And finally
-‘master’ (not ‘my-feature’ itself) is pushed to ‘origin/master’.
-
-   But new features seldom are perfect on the first try, and so feature
-branches usually have to be reviewed, improved, and re-pushed several
-times.  Pushing should therefore be easy to do, and for that reason many
-Git users have concluded that it is best to use the remote branch to
-which the local feature branch is being pushed as its upstream.
-
-   But luckily Git has long ago gained support for a push-remote which
-can be configured separately from the upstream branch, using the
-variables ‘branch.<name>.pushRemote’ and ‘remote.pushDefault’.  So we no
-longer have to choose which of the two remotes should be used as "the
-remote".
-
-   Each of the fetching, pulling, and pushing popups features three
-commands that act on the current branch and some other branch.  Of
-these, ‘p’ is bound to a command which acts on the push-remote, ‘u’ is
-bound to a command which acts on the upstream, and ‘e’ is bound to a
-command which acts on any other branch.  The status buffer shows
-unpushed and unpulled commits for both the push-remote and the upstream.
-
-   It’s fairly simple to configure these two remotes.  The values of all
-the variables that are related to fetching, pulling, and pushing (as
-well as some other branch-related variables) can be inspected and
-changed using the popup ‘magit-branch-config-popup’, which is a
-sub-popup of many popups that deal with branches.  It is also possible
-to set the push-remote or upstream while pushing (see *note Pushing::).
-
-
-File: magit.info,  Node: The Branch Popup,  Next: The Branch Config Popup,  Prev: The Two Remotes,  Up: Branching
-
-6.5.2 The Branch Popup
-----------------------
-
-The popup ‘magit-branch-popup’ is used to create and checkout branches,
-and to make changes to existing branches.  It is not used to fetch,
-pull, merge, rebase, or push branches, i.e.  this popup deals with
-branches themselves, not with the commits reachable from them.  Those
-features are available from separate popups.
-
-‘b’     (‘magit-branch-popup’)
-
-     This prefix command shows the following suffix commands in a popup
-     buffer.
-
-     By default it also displays the values of some branch-related Git
-     variables and allows changing their values, just like the
-     specialized ‘magit-branch-config-popup’ does.
-
- -- User Option: magit-branch-popup-show-variables
-
-     Whether the ‘magit-branch-popup’ shows Git variables.  This
-     defaults to t to avoid changing key bindings.  When set to nil, no
-     variables are displayed directly in this popup, and the sub-popup
-     ‘magit-branch-config-popup’ has to be used instead to view and
-     change branch related variables.
-
-‘b C’     (‘magit-branch-config-popup’)
-
-     This command shows branch related variables in a separate popup.
-     By default this asks the user for which branch the variables should
-     be shown.  When ‘magit-branch-popup-show-variables’ is ‘nil’, then
-     it shows the variables for the current branch, unless a prefix
-     argument is used.
-
-‘b b’     (‘magit-checkout’)
-
-     Checkout a revision read in the minibuffer and defaulting to the
-     branch or arbitrary revision at point.  If the revision is a local
-     branch then that becomes the current branch.  If it is something
-     else then ‘HEAD’ becomes detached.  Checkout fails if the working
-     tree or the staging area contain changes.
-
-‘b n’     (‘magit-branch-create’)
-
-     Create a new branch.  The user is asked for a branch or arbitrary
-     revision to use as the starting point of the new branch.  When a
-     branch name is provided, then that becomes the upstream branch of
-     the new branch.  The name of the new branch is also read in the
-     minibuffer.
-
-     Also see option ‘magit-branch-prefer-remote-upstream’.
-
-‘b c’     (‘magit-branch-and-checkout’)
-
-     This command creates a new branch like ‘magit-branch’, but then
-     also checks it out.
-
-     Also see option ‘magit-branch-prefer-remote-upstream’.
-
-‘b l’     (‘magit-branch-checkout’)
-
-     This command checks out an existing or new local branch.  It reads
-     a branch name from the user offering all local branches and a
-     subset of remote branches as candidates.  Remote branches for which
-     a local branch by the same name exists are omitted from the list of
-     candidates.  The user can also enter a completely new branch name.
-
-        • If the user selects an existing local branch, then that is
-          checked out.
-
-        • If the user selects a remote branch, then it creates and
-          checks out a new local branch with the same name, and
-          configures the selected remote branch as the push target.
-
-        • If the user enters a new branch name, then it creates and
-          checks that out, after also reading the starting-point from
-          the user.
-
-     In the latter two cases the upstream is also set.  Whether it is
-     set to the chosen starting point or something else depends on the
-     value of ‘magit-branch-adjust-remote-upstream-alist’.
-
-‘b s’     (‘magit-branch-spinoff’)
-
-     This command creates and checks out a new branch starting at and
-     tracking the current branch.  That branch in turn is reset to the
-     last commit it shares with its upstream.  If the current branch has
-     no upstream or no unpushed commits, then the new branch is created
-     anyway and the previously current branch is not touched.
-
-     This is useful to create a feature branch after work has already
-     began on the old branch (likely but not necessarily "master").
-
-     If the current branch is a member of the value of option
-     ‘magit-branch-prefer-remote-upstream’ (which see), then the current
-     branch will be used as the starting point as usual, but the
-     upstream of the starting-point may be used as the upstream of the
-     new branch, instead of the starting-point itself.
-
-     If optional FROM is non-nil, then the source branch is reset to
-     ‘FROM~’, instead of to the last commit it shares with its upstream.
-     Interactively, FROM is only ever non-nil, if the region selects
-     some commits, and among those commits, FROM is the commit that is
-     the fewest commits ahead of the source branch.
-
-     The commit at the other end of the selection actually does not
-     matter, all commits between FROM and ‘HEAD’ are moved to the new
-     branch.  If FROM is not reachable from ‘HEAD’ or is reachable from
-     the source branch’s upstream, then an error is raised.
-
-‘b Y’     (‘magit-branch-pull-request’)
-
-     This command creates and configures a new branch from a Github
-     pull-request, creating and configuring a new remote if necessary.
-
-     The name of the local branch is the same as the name of the remote
-     branch that you are being asked to merge, unless the contributor
-     could not be bother to properly name the branch before opening the
-     pull-request.  The most likely such case is when you are being
-     asked to merge something like "fork/master" into "origin/master".
-     In such cases the local branch will be named "pr-N", where ‘N’ is
-     the pull-request number.
-
-     These variables are always set by this command:
-
-        • ‘branch.<name>.pullRequest’ is set to the pull-request number.
-
-        • ‘branch.<name>.pullRequestRemote’ is set to the remote on
-          which the pull-request branch is located.
-
-        • ‘branch.<name>.pushRemote’ is set to the same remote as
-          ‘branch.<name>.pullRequestRemote’ if that is possible,
-          otherwise it is set to the upstream remote.
-
-        • ‘branch.<name>.description’ is set to the pull-request title.
-
-        • ‘branch.<name>.rebase’ is set to ‘true’ because there should
-          be no merge commits among the commits in a pull-request.
-
-     This command also configures the upstream and the push-remote of
-     the local branch that it creates.
-
-     The branch against which the pull-request was opened, is always
-     used as the upstream.  This makes it easy to see what commits you
-     are being asked to merge in the section titled something like
-     "Unmerged into origin/master".
-
-     Like for other commands that create a branch it depends on the
-     option ‘magit-branch-prefer-remote-upstream’ whether the remote
-     branch itself or the respective local branch is used as the
-     upstream, so this section may also be titled e.g.  "Unmerged into
-     master".
-
-     When necessary and possible, then the remote pull-request branch is
-     configured to be used as the push-target.  This makes it easy to
-     see what further changes the contributor has made since you last
-     reviewed their changes in the section titled something like
-     "Unpulled from origin/new-feature" or "Unpulled from
-     fork/new-feature".
-
-        • If the pull-request branch is located in the upstream
-          repository, then you probably have set ‘remote.pushDefault’ to
-          that repository.  However some users like to set that variable
-          to their personal fork, even if they have push access to the
-          upstream, so ‘branch.<name>.pushRemote’ is set anyway.
-
-        • If the pull-request branch is located inside a fork, then you
-          are usually able to push to that branch, because Github by
-          default allows the recipient of a pull-request to push to the
-          remote pull-request branch even if it is located in a fork.
-          The contributor has to explicitly disable this.
-
-             • If you are not allowed to push to the pull-request branch
-               on the fork, then a branch by the same name located in
-               the upstream repository is configured as the push-target.
-
-             • A — sadly rather common — special case is when the
-               contributor didn’t bother to use a dedicated branch for
-               the pull-request.
-
-               The most likely such case is when you are being asked to
-               merge something like "fork/master" into "origin/master".
-               The special push permission mentioned above is never
-               granted for the branch that is the repository’s default
-               branch, and that would almost certainly be the case in
-               this scenario.
-
-               To enable you to easily push somewhere anyway, the local
-               branch is named "pr-N" (where ‘N’ is the pull-request
-               number) and the upstream repository is used as the
-               push-remote.
-
-             • Finally, if you are allowed to push to the pull-request
-               branch and the contributor had the foresight to use a
-               dedicated branch, then the fork is configured as the
-               push-remote.
-
-          The push-remote is configured using
-          ‘branch.<name>.pushRemote’, even if the used value is
-          identical to that of ‘remote.pushDefault’, just in case you
-          change the value of the latter later on.  Additionally the
-          variable ‘branch.<name>.pullRequestRemote’ is set to the
-          remote on which the pull-request branch is located.
-
-     When you later delete the local pull-request branch, then you are
-     offered to also delete the corresponding remote, provided it is not
-     the upstream remote and that the tracking branch that corresponds
-     to the deleted branch is the only remaining tracked branch.  If you
-     don’t confirm, then only the tracking branch itself is deleted in
-     addition to the local branch.
-
-     Do not delete the tracking branch instead of the local branch.  The
-     cleanup mentioned in the previous paragraph is not performed if you
-     do that.
-
-‘b y’     (‘magit-checkout-pull-request’)
-
-     This command creates and configures a new branch from a pull
-     request, the same way ‘magit-branch-pull-request’ does.
-     Additionally it checks out the new branch.
-
-‘b x’     (‘magit-branch-reset’)
-
-     This command resets a branch, defaulting to the branch at point, to
-     the tip of another branch or any other commit.
-
-     When the branch being reset is the current branch, then a hard
-     reset is performed.  If there are any uncommitted changes, then the
-     user has to confirm the reset because those changes would be lost.
-
-     This is useful when you have started work on a feature branch but
-     realize it’s all crap and want to start over.
-
-     When resetting to another branch and a prefix argument is used,
-     then the target branch is set as the upstream of the branch that is
-     being reset.
-
-‘b k’     (‘magit-branch-delete’)
-
-     Delete one or multiple branches.  If the region marks multiple
-     branches, then offer to delete those.  Otherwise, prompt for a
-     single branch to be deleted, defaulting to the branch at point.
-
-‘b r’     (‘magit-branch-rename’)
-
-     Rename a branch.  The branch and the new name are read in the
-     minibuffer.  With prefix argument the branch is renamed even if
-     that name conflicts with an existing branch.
-
- -- User Option: magit-branch-read-upstream-first
-
-     When creating a branch, whether to read the upstream branch before
-     the name of the branch that is to be created.  The default is
-     ‘nil’, and I recommend you leave it at that.
-
- -- User Option: magit-branch-prefer-remote-upstream
-
-     This option specifies whether remote upstreams are favored over
-     local upstreams when creating new branches.
-
-     When a new branch is created, then the branch, commit, or stash at
-     point is suggested as the starting point of the new branch, or if
-     there is no such revision at point the current branch.  In either
-     case the user may choose another starting point.
-
-     If the chosen starting point is a branch, then it may also be set
-     as the upstream of the new branch, depending on the value of the
-     Git variable ‘branch.autoSetupMerge’.  By default this is done for
-     remote branches, but not for local branches.
-
-     You might prefer to always use some remote branch as upstream.  If
-     the chosen starting point is (1) a local branch, (2) whose name
-     matches a member of the value of this option, (3) the upstream of
-     that local branch is a remote branch with the same name, and (4)
-     that remote branch can be fast-forwarded to the local branch, then
-     the chosen branch is used as starting point, but its own upstream
-     is used as the upstream of the new branch.
-
-     Members of this option’s value are treated as branch names that
-     have to match exactly unless they contain a character that makes
-     them invalid as a branch name.  Recommended characters to use to
-     trigger interpretation as a regexp are "*" and "^".  Some other
-     characters which you might expect to be invalid, actually are not,
-     e.g.  ".+$" are all perfectly valid.  More precisely, if ‘git
-     check-ref-format –branch STRING’ exits with a non-zero status, then
-     treat STRING as a regexp.
-
-     Assuming the chosen branch matches these conditions you would end
-     up with with e.g.:
-
-          feature --upstream--> origin/master
-
-     instead of
-
-          feature --upstream--> master --upstream--> origin/master
-
-     Which you prefer is a matter of personal preference.  If you do
-     prefer the former, then you should add branches such as ‘master’,
-     ‘next’, and ‘maint’ to the value of this options.
-
- -- User Option: magit-branch-adjust-remote-upstream-alist
-
-     The value of this option is an alist of branches to be used as the
-     upstream when branching a remote branch.
-
-     When creating a local branch from an ephemeral branch located on a
-     remote, e.g.  a feature or hotfix branch, then that remote branch
-     should usually not be used as the upstream branch, since the
-     push-remote already allows accessing it and having both the
-     upstream and the push-remote reference the same related branch
-     would be wasteful.  Instead a branch like "maint" or "master"
-     should be used as the upstream.
-
-     This option allows specifying the branch that should be used as the
-     upstream when branching certain remote branches.  The value is an
-     alist of the form ‘((UPSTREAM . RULE)...)’.  The first matching
-     element is used, the following elements are ignored.
-
-     UPSTREAM is the branch to be used as the upstream for branches
-     specified by RULE.  It can be a local or a remote branch.
-
-     RULE can either be a regular expression, matching branches whose
-     upstream should be the one specified by UPSTREAM.  Or it can be a
-     list of the only branches that should *not* use UPSTREAM; all other
-     branches will.  Matching is done after stripping the remote part of
-     the name of the branch that is being branched from.
-
-     If you use a finite set of non-ephemeral branches across all your
-     repositories, then you might use something like:
-
-          (("origin/master" "master" "next" "maint"))
-
-     Or if the names of all your ephemeral branches contain a slash, at
-     least in some repositories, then a good value could be:
-
-          (("origin/master" . "/"))
-
-     Of course you can also fine-tune:
-
-          (("origin/maint" . "\\`hotfix/")
-           ("origin/master" . "\\`feature/"))
-
- -- Command: magit-branch-orphan
-
-     This command creates and checks out a new orphan branch with
-     contents from a given revision.
-
- -- Command: magit-branch-or-checkout
-
-     This command is a hybrid between ‘magit-checkout’ and
-     ‘magit-branch-and-checkout’ and is intended as a replacement for
-     the former in ‘magit-branch-popup’.
-
-     It first asks the user for an existing branch or revision.  If the
-     user input actually can be resolved as a branch or revision, then
-     it checks that out, just like ‘magit-checkout’ would.
-
-     Otherwise it creates and checks out a new branch using the input as
-     its name.  Before doing so it reads the starting-point for the new
-     branch.  This is similar to what ‘magit-branch-and-checkout’ does.
-
-     To use this command instead of ‘magit-checkout’ add this to your
-     init file:
-
-          (magit-remove-popup-key 'magit-branch-popup :action ?b)
-          (magit-define-popup-action 'magit-branch-popup
-            ?b "Checkout" 'magit-branch-or-checkout
-            'magit-branch t)
-
-
-File: magit.info,  Node: The Branch Config Popup,  Next: Auxiliary Branch Commands,  Prev: The Branch Popup,  Up: Branching
-
-6.5.3 The Branch Config Popup
------------------------------
-
- -- Command: magit-branch-config-popup
-
-     This prefix command shows the following branch-related Git
-     variables in a popup buffer.  The values can be changed from that
-     buffer.
-
-     This popup is a sub-popup of several popups that deal with
-     branches, including ‘magit-branch-popup’, ‘magit-pull-popup’,
-     ‘magit-fetch-popup’, ‘magit-pull-and-fetch-popup’, and
-     ‘magit-push-popup’.  In all of these popups "C" is bound to this
-     popup.
-
-   The following variables are used to configure a specific branch.  The
-values are being displayed for the current branch (if any).  To change
-the value for another branch invoke ‘magit-branch-config-popup’ with a
-prefix argument.
-
- -- Variable: branch.NAME.merge
-
-     Together with ‘branch.NAME.remote’ this variable defines the
-     upstream branch of the local branch named NAME.  The value of this
-     variable is the full reference of the upstream _branch_.
-
- -- Variable: branch.NAME.remote
-
-     Together with ‘branch.NAME.merge’ this variable defines the
-     upstream branch of the local branch named NAME.  The value of this
-     variable is the name of the upstream _remote_.
-
- -- Variable: branch.NAME.rebase
-
-     This variable controls whether pulling into the branch named NAME
-     is done by rebasing or by merging the fetched branch.
-
-        • When ‘true’ then pulling is done by rebasing.
-
-        • When ‘false’ then pulling is done by merging.
-
-        • When undefined then the value of ‘pull.rebase’ is used.  The
-          default of that variable is ‘false’.
-
- -- Variable: branch.NAME.pushRemote
-
-     This variable specifies the remote that the branch named NAME is
-     usually pushed to.  The value has to be the name of an existing
-     remote.
-
-     It is not possible to specify the name of _branch_ to push the
-     local branch to.  The name of the remote branch is always the same
-     as the name of the local branch.
-
-     If this variable is undefined but ‘remote.pushDefault’ is defined,
-     then the value of the latter is used.  By default
-     ‘remote.pushDefault’ is undefined.
-
- -- Variable: branch.NAME.description
-
-     This variable can be used to describe the branch named NAME.  That
-     description is used e.g.  when turning the branch into a series of
-     patches.
-
-   The following variables specify defaults which are used if the above
-branch-specific variables are not set.
-
- -- Variable: pull.rebase
-
-     This variable specifies whether pulling is done by rebasing or by
-     merging.  It can be overwritten using ‘branch.NAME.rebase’.
-
-        • When ‘true’ then pulling is done by rebasing.
-
-        • When ‘false’ (the default) then pulling is done by merging.
-
-     Since it is never a good idea to merge the upstream branch into a
-     feature or hotfix branch and most branches are such branches, you
-     should consider setting this to ‘true’, and ‘branch.master.rebase’
-     to ‘false’.
-
- -- Variable: remote.pushDefault
-
-     This variable specifies what remote the local branches are usually
-     pushed to.  This can be overwritten per branch using
-     ‘branch.NAME.pushRemote’.
-
-   The following variables are used during the creation of a branch and
-control whether the various branch-specific variables are automatically
-set at this time.
-
- -- Variable: branch.autoSetupMerge
-
-     This variable specifies under what circumstances creating a branch
-     NAME should result in the variables ‘branch.NAME.merge’ and
-     ‘branch.NAME.remote’ being set according to the starting point used
-     to create the branch.  If the starting point isn’t a branch, then
-     these variables are never set.
-
-        • When ‘always’ then the variables are set regardless of whether
-          the starting point is a local or a remote branch.
-
-        • When ‘true’ (the default) then the variables are set when the
-          starting point is a remote branch, but not when it is a local
-          branch.
-
-        • When ‘false’ then the variables are never set.
-
- -- Variable: branch.autoSetupRebase
-
-     This variable specifies whether creating a branch NAME should
-     result in the variable ‘branch.NAME.rebase’ being set to ‘true’.
-
-        • When ‘always’ then the variable is set regardless of whether
-          the starting point is a local or a remote branch.
-
-        • When ‘local’ then the variable are set when the starting point
-          is a local branch, but not when it is a remote branch.
-
-        • When ‘remote’ then the variable are set when the starting
-          point is a remote branch, but not when it is a local branch.
-
-        • When ‘never’ (the default) then the variable is never set.
-
-   Note that the respective commands always change the repository-local
-values.  If you want to change the global value, which is used when the
-local value is undefined, then you have to do so on the command line,
-e.g.:
-
-     git config --global remote.autoSetupMerge always
-
-   For more information about these variables you should also see
-
-   *note (gitman)git-config::.  Also see *note (gitman)git-branch::.  ,
-*note (gitman)git-checkout::.  and *note Pushing::.
-
- -- User Option: magit-prefer-remote-upstream
-
-     This option controls whether commands that read a branch from the
-     user and then set it as the upstream branch, offer a local or a
-     remote branch as default completion candidate, when they have the
-     choice.
-
-     This affects all commands that use ‘magit-read-upstream-branch’ or
-     ‘magit-read-starting-point’, which includes all commands that
-     change the upstream and many which create new branches.
-
-
-File: magit.info,  Node: Auxiliary Branch Commands,  Prev: The Branch Config Popup,  Up: Branching
-
-6.5.4 Auxiliary Branch Commands
--------------------------------
-
-These commands are not available from the branch popup by default.
-
- -- Command: magit-branch-shelve
-
-     This command shelves a branch.  This is done by deleting the
-     branch, and creating a new reference "refs/shelved/BRANCH-NAME"
-     pointing at the same commit as the branch pointed at.  If the
-     deleted branch had a reflog, then that is preserved as the reflog
-     of the new reference.
-
-     This is useful if you want to move a branch out of sight, but are
-     not ready to completely discard it yet.
-
- -- Command: magit-branch-unshelve
-
-     This command unshelves a branch that was previously shelved using
-     ‘magit-branch-shelve’.  This is done by deleting the reference
-     "refs/shelved/BRANCH-NAME" and creating a branch "BRANCH-NAME"
-     pointing at the same commit as the deleted reference pointed at.
-     If the deleted reference had a reflog, then that is restored as the
-     reflog of the branch.
-
-
-File: magit.info,  Node: Merging,  Next: Resolving Conflicts,  Prev: Branching,  Up: Manipulating
-
-6.6 Merging
-===========
-
-Also see *note (gitman)git-merge::.  For information on how to resolve
-merge conflicts see the next section.
-
-‘m’     (‘magit-merge-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-   When no merge is in progress, then the popup buffer features the
-following commands.
-
-‘m m’     (‘magit-merge-plain’)
-
-     This command merges another branch or an arbitrary revision into
-     the current branch.  The branch or revision to be merged is read in
-     the minibuffer and defaults to the branch at point.
-
-     Unless there are conflicts or a prefix argument is used, then the
-     resulting merge commit uses a generic commit message, and the user
-     does not get a chance to inspect or change it before the commit is
-     created.  With a prefix argument this does not actually create the
-     merge commit, which makes it possible to inspect how conflicts were
-     resolved and to adjust the commit message.
-
-‘m e’     (‘magit-merge-editmsg’)
-
-     This command merges another branch or an arbitrary revision into
-     the current branch and opens a commit message buffer, so that the
-     user can make adjustments.  The commit is not actually created
-     until the user finishes with ‘C-c C-c’.
-
-‘m n’     (‘magit-merge-nocommit’)
-
-     This command merges another branch or an arbitrary revision into
-     the current branch, but does not actually create the merge commit.
-     The user can then further adjust the merge, even when automatic
-     conflict resolution succeeded and/or adjust the commit message.
-
-‘m a’     (‘magit-merge-absorb’)
-
-     This command merges another local branch into the current branch
-     and then removes the former.
-
-     Before the source branch is merged, it is first force pushed to its
-     push-remote, provided the respective remote branch already exists.
-     This ensures that the respective pull-request (if any) won’t get
-     stuck on some obsolete version of the commits that are being
-     merged.  Finally, if ‘magit-branch-pull-request’ was used to create
-     the merged branch, then the respective remote branch is also
-     removed.
-
-‘m i’     (‘magit-merge-into’)
-
-     This command merges the current branch into another local branch
-     and then removes the former.  The latter becomes the new current
-     branch.
-
-     Before the source branch is merged, it is first force pushed to its
-     push-remote, provided the respective remote branch already exists.
-     This ensures that the respective pull-request (if any) won’t get
-     stuck on some obsolete version of the commits that are being
-     merged.  Finally, if ‘magit-branch-pull-request’ was used to create
-     the merged branch, then the respective remote branch is also
-     removed.
-
-‘m s’     (‘magit-merge-squash’)
-
-     This command squashes the changes introduced by another branch or
-     an arbitrary revision into the current branch.  This only applies
-     the changes made by the squashed commits.  No information is
-     preserved that would allow creating an actual merge commit.
-     Instead of this command you should probably use a command from the
-     apply popup.
-
-‘m p’     (‘magit-merge-preview’)
-
-     This command shows a preview of merging another branch or an
-     arbitrary revision into the current branch.
-
-   When a merge is in progress, then the popup buffer features these
-commands instead.
-
-‘m m’     (‘magit-merge’)
-
-     After the user resolved conflicts, this command proceeds with the
-     merge.  If some conflicts weren’t resolved, then this command
-     fails.
-
-‘m a’     (‘magit-merge-abort’)
-
-     This command aborts the current merge operation.
-
-
-File: magit.info,  Node: Resolving Conflicts,  Next: Rebasing,  Prev: Merging,  Up: Manipulating
-
-6.7 Resolving Conflicts
-=======================
-
-When merging branches (or otherwise combining or changing history)
-conflicts can occur.  If you edited two completely different parts of
-the same file in two branches and then merge one of these branches into
-the other, then Git can resolve that on its own, but if you edit the
-same area of a file, then a human is required to decide how the two
-versions, or "sides of the conflict", are to be combined into one.
-
-   Here we can only provide a brief introduction to the subject and
-point you toward some tools that can help.  If you are new to this, then
-please also consult Git’s own documentation as well as other resources.
-
-   If a file has conflicts and Git cannot resolve them by itself, then
-it puts both versions into the affected file along with special markers
-whose purpose is to denote the boundaries of the unresolved part of the
-file and between the different versions.  These boundary lines begin
-with the strings consisting of six times the same character, one of ‘<’,
-‘|’, ‘=’ and ‘>’ and are followed by information about the source of the
-respective versions, e.g.:
-
-     <<<<<<< HEAD
-     Take the blue pill.
-     =======
-     Take the red pill.
-     >>>>>>> feature
-
-   In this case you have chosen to take the red pill on one branch and
-on another you picked the blue pill.  Now that you are merging these two
-diverging branches, Git cannot possibly know which pill you want to
-take.
-
-   To resolve that conflict you have to create a version of the affected
-area of the file by keeping only one of the sides, possibly by editing
-it in order to bring in the changes from the other side, remove the
-other versions as well as the markers, and then stage the result.  A
-possible resolution might be:
-
-     Take both pills.
-
-   Often it is useful to see not only the two sides of the conflict but
-also the "original" version from before the same area of the file was
-modified twice on different branches.  Instruct Git to insert that
-version as well by running this command once:
-
-     git config --global merge.conflictStyle diff3
-
-   The above conflict might then have looked like this:
-
-     <<<<<<< HEAD
-     Take the blue pill.
-     ||||||| merged common ancestors
-     Take either the blue or the red pill, but not both.
-     =======
-     Take the red pill.
-     >>>>>>> feature
-
-   If that were the case, then the above conflict resolution would not
-have been correct, which demonstrates why seeing the original version
-alongside the conflicting versions can be useful.
-
-   You can perform the conflict resolution completely by hand, but Emacs
-also provides some packages that help in the process: Smerge, Ediff
-(*note (ediff)Top::), and Emerge (*note (emacs)Emerge::).  Magit does
-not provide its own tools for conflict resolution, but it does make
-using Smerge and Ediff more convenient.  (Ediff supersedes Emerge, so
-you probably don’t want to use the latter anyway.)
-
-   In the Magit status buffer, files with unresolved conflicts are
-listed in the "Unstaged changes" and/or "Staged changes" sections.  They
-are prefixed with the word "unmerged", which in this context essentially
-is a synonym for "unresolved".
-
-   Pressing ‘RET’ while point is on such a file section shows a buffer
-visiting that file, turns on ‘smerge-mode’ in that buffer, and places
-point inside the first area with conflicts.  You should then resolve
-that conflict using regular edit commands and/or Smerge commands.
-
-   Unfortunately Smerge does not have a manual, but you can get a list
-of commands and binding ‘C-c ^ C-h’ and press ‘RET’ while point is on a
-command name to read its documentation.
-
-   Normally you would edit one version and then tell Smerge to keep only
-that version.  Use ‘C-c ^ m’ (‘smerge-keep-mine’) to keep the ‘HEAD’
-version or ‘C-c ^ o’ (‘smerge-keep-other’) to keep the version that
-follows "|||||||".  Then use ‘C-c ^ n’ to move to the next conflicting
-area in the same file.  Once you are done resolving conflicts, return to
-the Magit status buffer.  The file should now be shown as "modified", no
-longer as "unmerged", because Smerge automatically stages the file when
-you save the buffer after resolving the last conflict.
-
-   Alternatively you could use Ediff, which uses separate buffers for
-the different versions of the file.  To resolve conflicts in a file
-using Ediff press ‘e’ while point is on such a file in the status
-buffer.
-
-   Ediff can be used for other purposes as well.  For more information
-on how to enter Ediff from Magit, see *note Ediffing::.  Explaining how
-to use Ediff is beyond the scope of this manual, instead see *note
-(ediff)Top::.
-
-   If you are unsure whether you should Smerge or Ediff, then use the
-former.  It is much easier to understand and use, and except for truly
-complex conflicts, the latter is usually overkill.
-
-
-File: magit.info,  Node: Rebasing,  Next: Cherry Picking,  Prev: Resolving Conflicts,  Up: Manipulating
-
-6.8 Rebasing
-============
-
-Also see *note (gitman)git-rebase::.  For information on how to resolve
-conflicts that occur during rebases see the preceding section.
-
-‘r’     (‘magit-rebase-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-   When no rebase is in progress, then the popup buffer features the
-following commands.
-
-   Using one of these commands _starts_ a rebase sequence.  Git might
-then stop somewhere along the way, either because you told it to do so,
-or because applying a commit failed due to a conflict.  When that
-happens, then the status buffer shows information about the rebase
-sequence which is in progress in a section similar to a log section.
-See *note Information About In-Progress Rebase::.
-
-‘r p’     (‘magit-rebase-onto-pushremote’)
-
-     Rebase the current branch onto ‘branch.<name>.pushRemote’.  If that
-     variable is unset, then rebase onto ‘remote.pushDefault’.
-
-‘r u’     (‘magit-rebase-onto-upstream’)
-
-     Rebase the current branch onto its upstream branch.
-
-‘r e’     (‘magit-rebase-branch’)
-
-     Rebase the current branch onto a branch read in the minibuffer.
-     All commits that are reachable from head but not from the selected
-     branch TARGET are being rebased."
-
-‘r s’     (‘magit-rebase-subset’)
-
-     Start a non-interactive rebase sequence with commits from START to
-     ‘HEAD’ onto NEWBASE.  START has to be selected from a list of
-     recent commits.
-
-   By default Magit uses the ‘--autostash’ argument, which causes
-uncommitted changes to be stored in a stash before the rebase begins.
-These changes are restored after the rebase completes and if possible
-the stash is removed.  If the stash does not apply cleanly, then the
-stash is not removed.  In case something goes wrong when resolving the
-conflicts, this allows you to start over.
-
-   Even though one of the actions is dedicated to interactive rebases,
-the popup also features the infix argument ‘--interactive’.  This can be
-used to turn one of the other, non-interactive rebase variants into an
-interactive rebase.
-
-   For example if you want to clean up a feature branch and at the same
-time rebase it onto ‘master’, then you could use ‘r-iu’.  But we
-recommend that you instead do that in two steps.  First use ‘ri’ to
-cleanup the feature branch, and then in a second step ‘ru’ to rebase it
-onto ‘master’.  That way if things turn out to be more complicated than
-you thought and/or you make a mistake and have to start over, then you
-only have to redo half the work.
-
-   Explicitly enabling ‘--interactive’ won’t have an effect on the
-following commands as they always use that argument anyway, even if it
-is not enabled in the popup.
-
-‘r i’     (‘magit-rebase-interactive’)
-
-     Start an interactive rebase sequence.
-
-‘r f’     (‘magit-rebase-autosquash’)
-
-     Combine squash and fixup commits with their intended targets.
-
-‘r m’     (‘magit-rebase-edit-commit’)
-
-     Edit a single older commit using rebase.
-
-‘r w’     (‘magit-rebase-reword-commit’)
-
-     Reword a single older commit using rebase.
-
-‘r k’     (‘magit-rebase-remove-commit’)
-
-     Remove a single older commit using rebase.
-
-   When a rebase is in progress, then the popup buffer features these
-commands instead.
-
-‘r r’     (‘magit-rebase-continue’)
-
-     Restart the current rebasing operation.
-
-     In some cases this pops up a commit message buffer for you do edit.
-     With a prefix argument the old message is reused as-is.
-
-‘r s’     (‘magit-rebase-skip’)
-
-     Skip the current commit and restart the current rebase operation.
-
-‘r e’     (‘magit-rebase-edit’)
-
-     Edit the todo list of the current rebase operation.
-
-‘r a’     (‘magit-rebase-abort’)
-
-     Abort the current rebase operation, restoring the original branch.
-
-* Menu:
-
-* Editing Rebase Sequences::
-* Information About In-Progress Rebase::
-
-
-File: magit.info,  Node: Editing Rebase Sequences,  Next: Information About In-Progress Rebase,  Up: Rebasing
-
-6.8.1 Editing Rebase Sequences
-------------------------------
-
-‘C-c C-c’     (‘with-editor-finish’)
-
-     Finish the current editing session by returning with exit code 0.
-     Git then uses the rebase instructions it finds in the file.
-
-‘C-c C-k’     (‘with-editor-cancel’)
-
-     Cancel the current editing session by returning with exit code 1.
-     Git then forgoes starting the rebase sequence.
-
-‘RET’     (‘git-rebase-show-commit’)
-
-     Show the commit on the current line in another buffer and select
-     that buffer.
-
-‘SPC’     (‘git-rebase-show-or-scroll-up’)
-
-     Show the commit on the current line in another buffer without
-     selecting that buffer.  If the revision buffer is already visible
-     in another window of the current frame, then instead scroll that
-     window up.
-
-‘DEL’     (‘git-rebase-show-or-scroll-down’)
-
-     Show the commit on the current line in another buffer without
-     selecting that buffer.  If the revision buffer is already visible
-     in another window of the current frame, then instead scroll that
-     window down.
-
-‘p’     (‘git-rebase-backward-line’)
-
-     Move to previous line.
-
-‘n’     (‘forward-line’)
-
-     Move to next line.
-
-‘M-p’     (‘git-rebase-move-line-up’)
-
-     Move the current commit (or command) up.
-
-‘M-n’     (‘git-rebase-move-line-down’)
-
-     Move the current commit (or command) down.
-
-‘r’     (‘git-rebase-reword’)
-
-     Edit message of commit on current line.
-
-‘e’     (‘git-rebase-edit’)
-
-     Stop at the commit on the current line.
-
-‘s’     (‘git-rebase-squash’)
-
-     Meld commit on current line into previous commit, and edit message.
-
-‘f’     (‘git-rebase-fixup’)
-
-     Meld commit on current line into previous commit, discarding the
-     current commit’s message.
-
-‘k’     (‘git-rebase-kill-line’)
-
-     Kill the current action line.
-
-‘c’     (‘git-rebase-pick’)
-
-     Use commit on current line.
-
-‘x’     (‘git-rebase-exec’)
-
-     Insert a shell command to be run after the proceeding commit.
-
-     If there already is such a command on the current line, then edit
-     that instead.  With a prefix argument insert a new command even
-     when there already is one on the current line.  With empty input
-     remove the command on the current line, if any.
-
-‘y’     (‘git-rebase-insert’)
-
-     Read an arbitrary commit and insert it below current line.
-
-‘C-x u’     (‘git-rebase-undo’)
-
-     Undo some previous changes.  Like ‘undo’ but works in read-only
-     buffers.
-
- -- User Option: git-rebase-auto-advance
-
-     Whether to move to next line after changing a line.
-
- -- User Option: git-rebase-show-instructions
-
-     Whether to show usage instructions inside the rebase buffer.
-
- -- User Option: git-rebase-confirm-cancel
-
-     Whether confirmation is required to cancel.
-
-
-File: magit.info,  Node: Information About In-Progress Rebase,  Prev: Editing Rebase Sequences,  Up: Rebasing
-
-6.8.2 Information About In-Progress Rebase
-------------------------------------------
-
-While a rebase sequence is in progress, the status buffer features a
-section that lists the commits that have already been applied as well as
-the commits that still have to be applied.
-
-   The commits are split in two halves.  When rebase stops at a commit,
-either because the user has to deal with a conflict or because s/he
-explicitly requested that rebase stops at that commit, then point is
-placed on the commit that separates the two groups, i.e.  on ‘HEAD’.
-The commits above it have not been applied yet, while the ‘HEAD’ and the
-commits below it have already been applied.  In between these two groups
-of applied and yet-to-be applied commits, there sometimes is a commit
-which has been dropped.
-
-   Each commit is prefixed with a word and these words are additionally
-shown in different colors to indicate the status of the commits.
-
-   The following colors are used:
-
-   • Yellow commits have not been applied yet.
-
-   • Gray commits have already been applied.
-
-   • The blue commit is the ‘HEAD’ commit.
-
-   • The green commit is the commit the rebase sequence stopped at.  If
-     this is the same commit as ‘HEAD’ (e.g.  because you haven’t done
-     anything yet after rebase stopped at the commit, then this commit
-     is shown in blue, not green).  There can only be a green *and* a
-     blue commit at the same time, if you create one or more new commits
-     after rebase stops at a commit.
-
-   • Red commits have been dropped.  They are shown for reference only,
-     e.g.  to make it easier to diff.
-
-   Of course these colors are subject to the color-theme in use.
-
-   The following words are used:
-
-   • Commits prefixed with ‘pick’, ‘reword’, ‘edit’, ‘squash’, and
-     ‘fixup’ have not been applied yet.  These words have the same
-     meaning here as they do in the buffer used to edit the rebase
-     sequence.  See *note Editing Rebase Sequences::.
-
-   • Commits prefixed with ‘done’ and ‘onto’ have already been applied.
-     It is possible for such a commit to be the ‘HEAD’, in which case it
-     is blue.  Otherwise it is grey.
-
-        • The commit prefixed with ‘onto’ is the commit on top of which
-          all the other commits are being re-applied.  This commit
-          itself did not have to be re-applied, it is the commit rebase
-          did rewind to before starting to re-apply other commits.
-
-        • Commits prefixed with ‘done’ have already been re-applied.
-          This includes commits that have been re-applied but also new
-          commits that you have created during the rebase.
-
-   • All other commits, those not prefixed with any of the above words,
-     are in some way related to the commit at which rebase stopped.
-
-     To determine whether a commit is related to the stopped-at commit
-     their hashes, trees and patch-ids (1) are being compared.  The
-     commit message is not used for this purpose.
-
-     Generally speaking commits that are related to the stopped-at
-     commit can have any of the used colors, though not all color/word
-     combinations are possible.
-
-     Words used for stopped-at commits are:
-
-        • When a commit is prefixed with ‘void’, then that indicates
-          that Magit knows for sure that all the changes in that commit
-          have been applied using several new commits.  This commit is
-          no longer reachable from ‘HEAD’, and it also isn’t one of the
-          commits that will be applied when resuming the session.
-
-        • When a commit is prefixed with ‘join’, then that indicates
-          that the rebase sequence stopped at that commit due to a
-          conflict - you now have to join (merge) the changes with what
-          has already been applied.  In a sense this is the commit
-          rebase stopped at, but while its effect is already in the
-          index and in the worktree (with conflict markers), the commit
-          itself has not actually been applied yet (it isn’t the
-          ‘HEAD’).  So it is shown in yellow, like the other commits
-          that still have to be applied.
-
-        • When a commit is prefixed with ‘stop’ or a _blue_ or _green_
-          ‘same’, then that indicates that rebase stopped at this
-          commit, that it is still applied or has been applied again,
-          and that at least its patch-id is unchanged.
-
-             • When a commit is prefixed with ‘stop’, then that
-               indicates that rebase stopped at that commit because you
-               requested that earlier, and its patch-id is unchanged.
-               It might even still be the exact same commit.
-
-             • When a commit is prefixed with a _blue_ or _green_
-               ‘same’, then that indicates that while its tree or hash
-               changed, its patch-id did not.  If it is blue, then it is
-               the ‘HEAD’ commit (as always for blue).  When it is
-               green, then it no longer is ‘HEAD’ because other commit
-               have been created since (but before continuing the
-               rebase).
-
-        • When a commit is prefixed with ‘goal’, a _yellow_ ‘same,’ or
-          ‘work’, then that indicates that rebase applied that commit
-          but that you then reset ‘HEAD’ to an earlier commit (likely to
-          split it up into multiple commits), and that there are some
-          uncommitted changes remaining which likely (but not
-          necessarily) originate from that commit.
-
-             • When a commit is prefixed with ‘goal’, then that
-               indicates that it is still possible to create a new
-               commit with the exact same tree (the "goal") without
-               manually editing any files, by committing the index, or
-               by staging all changes and then committing that.  This is
-               the case when the original tree still exists in the index
-               or worktree in untainted form.
-
-             • When a commit is prefixed with a yellow ‘same’, then that
-               indicates that it is no longer possible to create a
-               commit with the exact same tree, but that it is still
-               possible to create a commit with the same patch-id.  This
-               would be the case if you created a new commit with other
-               changes, but the changes from the original commit still
-               exist in the index or working tree in untainted form.
-
-             • When a commit is prefixed with ‘work’, then that
-               indicates that you reset ‘HEAD’ to an earlier commit, and
-               that there are some staged and/or unstaged changes
-               (likely, but not necessarily) originating from that
-               commit.  However it is no longer possible to create a new
-               commit with the same tree or at least the same patch-id
-               because you have already made other changes.
-
-        • When a commit is prefixed with ‘poof’ or ‘gone’, then that
-          indicates that rebase applied that commit but that you then
-          reset ‘HEAD’ to an earlier commit (likely to split it up into
-          multiple commits), and that there are no uncommitted changes.
-
-             • When a commit is prefixed with ‘poof’, then that
-               indicates that it is no longer reachable from ‘HEAD’, but
-               that it has been replaced with one or more commits, which
-               together have the exact same effect.
-
-             • When a commit is prefixed with ‘gone’, then that
-               indicates that it is no longer reachable from ‘HEAD’ and
-               that we also cannot determine whether its changes are
-               still in effect in one or more new commits.  They might
-               be, but if so, then there must also be other changes
-               which makes it impossible to know for sure.
-
-   Do not worry if you do not fully understand the above.  That’s okay,
-you will acquire a good enough understanding through practice.
-
-   For other sequence operations such as cherry-picking, a similar
-section is displayed, but they lack some of the features described
-above, due to limitations in the git commands used to implement them.
-Most importantly these sequences only support "picking" a commit but not
-other actions such as "rewording", and they do not keep track of the
-commits which have already been applied.
-
-   ---------- Footnotes ----------
-
-   (1) The patch-id is a hash of the _changes_ introduced by a commit.
-It differs from the hash of the commit itself, which is a hash of the
-result of applying that change (i.e.  the resulting trees and blobs) as
-well as author and committer information, the commit message, and the
-hashes of the parents of the commit.  The patch-id hash on the other
-hand is created only from the added and removed lines, even line numbers
-and whitespace changes are ignored when calculating this hash.  The
-patch-ids of two commits can be used to answer the question "Do these
-commits make the same change?".
-
-
-File: magit.info,  Node: Cherry Picking,  Next: Resetting,  Prev: Rebasing,  Up: Manipulating
-
-6.9 Cherry Picking
-==================
-
-Also see *note (gitman)git-cherry-pick::.
-
-‘A’     (‘magit-cherry-pick-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-   When no cherry-pick or revert is in progress, then the popup buffer
-features the following commands.
-
-‘A A’     (‘magit-cherry-copy’)
-
-     This command copies COMMITS from another branch onto the current
-     branch.  If the region selects multiple commits, then those are
-     copied, without prompting.  Otherwise the user is prompted for a
-     commit or range, defaulting to the commit at point.
-
-‘A a’     (‘magit-cherry-apply’)
-
-     This command applies the changes in COMMITS from another branch
-     onto the current branch.  If the region selects multiple commits,
-     then those are used, without prompting.  Otherwise the user is
-     prompted for a commit or range, defaulting to the commit at point.
-
-     This command also has a top-level binding, which can be invoked
-     without using the popup by typing ‘a’ at the top-level.
-
-   The following commands not only apply some commits to some branch,
-but also remove them from some other branch.  The removal is performed
-using either ‘git-update-ref’ or if necessary ‘git-rebase’.  Both
-applying commits as well as removing them using ‘git-rebase’ can lead to
-conflicts.  If that happens, then these commands abort and you not only
-have to resolve the conflicts but also finish the process the same way
-you would have to if these commands didn’t exist at all.
-
-‘A h’     (‘magit-cherry-harvest’)
-
-     This command moves the selected COMMITS that must be located on
-     another BRANCH onto the current branch instead, removing them from
-     the former.  When this command succeeds, then the same branch is
-     current as before.
-
-     Applying the commits on the current branch or removing them from
-     the other branch can lead to conflicts.  When that happens, then
-     this command stops and you have to resolve the conflicts and then
-     finish the process manually.
-
-‘A d’     (‘magit-cherry-donate’)
-
-     This command moves the selected COMMITS from the current branch
-     onto another existing BRANCH, removing them from the former.  When
-     this command succeeds, then the same branch is current as before.
-
-     Applying the commits on the other branch or removing them from the
-     current branch can lead to conflicts.  When that happens, then this
-     command stops and you have to resolve the conflicts and then finish
-     the process manually.
-
-‘A n’     (‘magit-cherry-spinout’)
-
-     This command moves the selected COMMITS from the current branch
-     onto a new branch BRANCH, removing them from the former.  When this
-     command succeeds, then the same branch is current as before.
-
-     Applying the commits on the other branch or removing them from the
-     current branch can lead to conflicts.  When that happens, then this
-     command stops and you have to resolve the conflicts and then finish
-     the process manually.
-
-‘A s’     (‘magit-cherry-spinoff’)
-
-     This command moves the selected COMMITS from the current branch
-     onto a new branch BRANCH, removing them from the former.  When this
-     command succeeds, then the new branch is checked out.
-
-     Applying the commits on the other branch or removing them from the
-     current branch can lead to conflicts.  When that happens, then this
-     command stops and you have to resolve the conflicts and then finish
-     the process manually.
-
-   When a cherry-pick or revert is in progress, then the popup buffer
-features these commands instead.
-
-‘A A’     (‘magit-sequence-continue’)
-
-     Resume the current cherry-pick or revert sequence.
-
-‘A s’     (‘magit-sequence-skip’)
-
-     Skip the stopped at commit during a cherry-pick or revert sequence.
-
-‘A a’     (‘magit-sequence-abort’)
-
-     Abort the current cherry-pick or revert sequence.  This discards
-     all changes made since the sequence started.
-
-* Menu:
-
-* Reverting::
-
-
-File: magit.info,  Node: Reverting,  Up: Cherry Picking
-
-6.9.1 Reverting
----------------
-
-‘V’     (‘magit-revert-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-   When no cherry-pick or revert is in progress, then the popup buffer
-features the following commands.
-
-‘V V’     (‘magit-revert-and-commit’)
-
-     Revert a commit by creating a new commit.  Prompt for a commit,
-     defaulting to the commit at point.  If the region selects multiple
-     commits, then revert all of them, without prompting.
-
-‘V v’     (‘magit-revert-no-commit’)
-
-     Revert a commit by applying it in reverse to the working tree.
-     Prompt for a commit, defaulting to the commit at point.  If the
-     region selects multiple commits, then revert all of them, without
-     prompting.
-
-   When a cherry-pick or revert is in progress, then the popup buffer
-features these commands instead.
-
-‘V A’     (‘magit-sequence-continue’)
-
-     Resume the current cherry-pick or revert sequence.
-
-‘V s’     (‘magit-sequence-skip’)
-
-     Skip the stopped at commit during a cherry-pick or revert sequence.
-
-‘V a’     (‘magit-sequence-abort’)
-
-     Abort the current cherry-pick or revert sequence.  This discards
-     all changes made since the sequence started.
-
-
-File: magit.info,  Node: Resetting,  Next: Stashing,  Prev: Cherry Picking,  Up: Manipulating
-
-6.10 Resetting
-==============
-
-Also see *note (gitman)git-reset::.
-
-‘x’     (‘magit-reset-quickly’)
-
-     Reset the ‘HEAD’ and index to some commit read from the user and
-     defaulting to the commit at point, and possibly also reset the
-     working tree.  With a prefix argument reset the working tree
-     otherwise don’t.
-
-‘X m’     (‘magit-reset-mixed’)
-
-     Reset the ‘HEAD’ and index to some commit read from the user and
-     defaulting to the commit at point.  The working tree is kept as-is.
-
-‘X s’     (‘magit-reset-soft’)
-
-     Reset the ‘HEAD’ to some commit read from the user and defaulting
-     to the commit at point.  The index and the working tree are kept
-     as-is.
-
-‘X h’     (‘magit-reset-hard’)
-
-     Reset the ‘HEAD’, index, and working tree to some commit read from
-     the user and defaulting to the commit at point.
-
-‘X i’     (‘magit-reset-index’)
-
-     Reset the index to some commit read from the user and defaulting to
-     the commit at point.  Keep the ‘HEAD’ and working tree as-is, so if
-     the commit refers to the ‘HEAD’, then this effectively unstages all
-     changes.
-
-‘X w’     (‘magit-reset-worktree’)
-
-     Reset the working tree to some commit read from the user and
-     defaulting to the commit at point.  Keep the ‘HEAD’ and index
-     as-is.
-
-‘X f’     (‘magit-file-checkout’)
-
-     Update file in the working tree and index to the contents from a
-     revision.  Both the revision and file are read from the user.
-
-
-File: magit.info,  Node: Stashing,  Prev: Resetting,  Up: Manipulating
-
-6.11 Stashing
-=============
-
-Also see *note (gitman)git-stash::.
-
-‘z’     (‘magit-stash-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘z z’     (‘magit-stash-both’)
-
-     Create a stash of the index and working tree.  Untracked files are
-     included according to popup arguments.  One prefix argument is
-     equivalent to ‘--include-untracked’ while two prefix arguments are
-     equivalent to ‘--all’.
-
-‘z i’     (‘magit-stash-index’)
-
-     Create a stash of the index only.  Unstaged and untracked changes
-     are not stashed.
-
-‘z w’     (‘magit-stash-worktree’)
-
-     Create a stash of unstaged changes in the working tree.  Untracked
-     files are included according to popup arguments.  One prefix
-     argument is equivalent to ‘--include-untracked’ while two prefix
-     arguments are equivalent to ‘--all’.
-
-‘z x’     (‘magit-stash-keep-index’)
-
-     Create a stash of the index and working tree, keeping index intact.
-     Untracked files are included according to popup arguments.  One
-     prefix argument is equivalent to ‘--include-untracked’ while two
-     prefix arguments are equivalent to ‘--all’.
-
-‘z Z’     (‘magit-snapshot-both’)
-
-     Create a snapshot of the index and working tree.  Untracked files
-     are included according to popup arguments.  One prefix argument is
-     equivalent to ‘--include-untracked’ while two prefix arguments are
-     equivalent to ‘--all’.
-
-‘z I’     (‘magit-snapshot-index’)
-
-     Create a snapshot of the index only.  Unstaged and untracked
-     changes are not stashed.
-
-‘z W’     (‘magit-snapshot-worktree’)
-
-     Create a snapshot of unstaged changes in the working tree.
-     Untracked files are included according to popup arguments.  One
-     prefix argument is equivalent to ‘--include-untracked’ while two
-     prefix arguments are equivalent to ‘--all’-.
-
-‘z a’     (‘magit-stash-apply’)
-
-     Apply a stash to the working tree.  Try to preserve the stash
-     index.  If that fails because there are staged changes, apply
-     without preserving the stash index.
-
-‘z p’     (‘magit-stash-pop’)
-
-     Apply a stash to the working tree and remove it from stash list.
-     Try to preserve the stash index.  If that fails because there are
-     staged changes, apply without preserving the stash index and forgo
-     removing the stash.
-
-‘z k’     (‘magit-stash-drop’)
-
-     Remove a stash from the stash list.  When the region is active,
-     offer to drop all contained stashes.
-
-‘z v’     (‘magit-stash-show’)
-
-     Show all diffs of a stash in a buffer.
-
-‘z b’     (‘magit-stash-branch’)
-
-     Create and checkout a new BRANCH from STASH.  The branch starts at
-     the commit that was current when the stash was created.
-
-‘z B’     (‘magit-stash-branch-here’)
-
-     Create and checkout a new BRANCH using ‘magit-branch’ with the
-     current branch or ‘HEAD’ as the starting-point.  Then apply STASH,
-     dropping it if it applies cleanly.
-
-‘z f’     (‘magit-stash-format-patch’)
-
-     Create a patch from STASH.
-
-‘k’     (‘magit-stash-clear’)
-
-     Remove all stashes saved in REF’s reflog by deleting REF.
-
-‘z l’     (‘magit-stash-list’)
-
-     List all stashes in a buffer.
-
- -- User Option: magit-stashes-margin
-
-     This option specifies whether the margin is initially shown in
-     stashes buffers and how it is formatted.
-
-     The value has the form ‘(INIT STYLE WIDTH AUTHOR AUTHOR-WIDTH)’.
-
-        • If INIT is non-nil, then the margin is shown initially.
-
-        • STYLE controls how to format the committer date.  It can be
-          one of ‘age’ (to show the age of the commit),
-          ‘age-abbreviated’ (to abbreviate the time unit to a
-          character), or a string (suitable for ‘format-time-string’) to
-          show the actual date.
-
-        • WIDTH controls the width of the margin.  This exists for
-          forward compatibility and currently the value should not be
-          changed.
-
-        • AUTHOR controls whether the name of the author is also shown
-          by default.
-
-        • AUTHOR-WIDTH has to be an integer.  When the name of the
-          author is shown, then this specifies how much space is used to
-          do so.
-
-
-File: magit.info,  Node: Transferring,  Next: Miscellaneous,  Prev: Manipulating,  Up: Top
-
-7 Transferring
-**************
-
-* Menu:
-
-* Remotes::
-* Fetching::
-* Pulling::
-* Pushing::
-* Creating and Sending Patches::
-* Applying Patches::
-
-
-File: magit.info,  Node: Remotes,  Next: Fetching,  Up: Transferring
-
-7.1 Remotes
-===========
-
-* Menu:
-
-* The Remote Popup::
-* The Remote Config Popup::
-
-
-File: magit.info,  Node: The Remote Popup,  Next: The Remote Config Popup,  Up: Remotes
-
-7.1.1 The Remote Popup
-----------------------
-
-The popup ‘magit-remote-popup’ is used to add remotes and to make
-changes to existing remotes.  This popup only deals with remotes
-themselves, not with branches or the transfer of commits.  Those
-features are available from separate popups.
-
-   Also see *note (gitman)git-remote::.
-
-‘M’     (‘magit-remote-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
- -- User Option: magit-remote-popup-show-variables
-
-     This option controls whether the ‘magit-remote-popup’ shows remote
-     related Git variables.  When set to nil, no variables are displayed
-     directly in this popup, and the sub-popup
-     ‘magit-remote-config-popup’ has to be used instead to view and
-     change remote related variables.
-
-‘M C’     (‘magit-remote-config-popup’)
-
-     This command shows remote related variables in a separate popup.
-     By default this asks the user for which remote the variables should
-     be shown.  When ‘magit-remote-popup-show-variables’ is ‘nil’, then
-     it shows the variables for the upstream of the current branch or
-     "origin" it that branch has no remote upstream.  To select another
-     remote use a prefix argument.
-
-‘M a’     (‘magit-remote-add’)
-
-     This command add a remote and fetches it.  The remote name and url
-     are read in the minibuffer.
-
-‘M r’     (‘magit-remote-rename’)
-
-     This command renames a remote.  Both the old and the new names are
-     read in the minibuffer.
-
-‘M u’     (‘magit-remote-set-url’)
-
-     This command changes the url of a remote.  Both the remote and the
-     new url are read in the minibuffer.
-
-‘M k’     (‘magit-remote-remove’)
-
-     This command deletes a remote, read in the minibuffer.
-
-‘M p’     (‘magit-remote-prune’)
-
-     This command removes stale remote-tracking branches for a remote
-     read in the minibuffer.
-
-‘M P’     (‘magit-remote-prune-refspecs’)
-
-     This command removes stale refspecs for a remote read in the
-     minibuffer.
-
-     A refspec is stale if there no longer exists at least one branch on
-     the remote that would be fetched due to that refspec.  A stale
-     refspec is problematic because its existence causes Git to refuse
-     to fetch according to the remaining non-stale refspecs.
-
-     If only stale refspecs remain, then this command offers to either
-     delete the remote or to replace the stale refspecs with the default
-     refspec ("+refs/heads/*:refs/remotes/REMOTE/*").
-
-     This command also removes the remote-tracking branches that were
-     created due to the now stale refspecs.  Other stale branches are
-     not removed.
-
- -- User Option: magit-remote-add-set-remote.pushDefault
-
-     This option controls whether the user is asked whether they want to
-     set ‘remote.pushDefault’ after adding a remote.
-
-     If ‘ask’, then users is always ask.  If ‘ask-if-unset’, then the
-     user is only if the variable isn’t set already.  If ‘nil’, then the
-     user isn’t asked and the variable isn’t set.  If the value is a
-     string, then the variable is set without the user being asked,
-     provided that the name of the added remote is equal to that string
-     and the variable isn’t already set.
-
-
-File: magit.info,  Node: The Remote Config Popup,  Prev: The Remote Popup,  Up: Remotes
-
-7.1.2 The Remote Config Popup
------------------------------
-
- -- Command: magit-remote-config-popup
-
-     This prefix command shows the following remote-related Git
-     variables in a popup buffer.  The values can be changed from that
-     buffer.
-
-     This popup is a sub-popup of the ‘magit-remote-popup’ in which "C"
-     is bound to this popup.
-
-   The following variables are used to configure a specific remote.  The
-values are being displayed for the upstream remote of the current
-branch.  To change the value for another remote invoke
-‘magit-remote-config-popup’ with a prefix argument.
-
- -- Variable: remote.NAME.url
-
-     This variable specifies the url of the remote named NAME.  It can
-     have multiple values.
-
- -- Variable: remote.NAME.fetch
-
-     The refspec used when fetching from the remote named NAME.  It can
-     have multiple values.
-
- -- Variable: remote.NAME.pushurl
-
-     This variable specifies the url used for fetching from the remote
-     named NAME.  If it is not specified, then ‘remote.NAME.url’ is used
-     instead.  It can have multiple values.
-
- -- Variable: remote.NAME.push
-
-     The refspec used when pushing to the remote named NAME.  It can
-     have multiple values.
-
- -- Variable: remote.NAME.tagOpts
-
-     This variable specifies what tags are fetched by default.  If the
-     value is ‘--no-tags’ then no tags are fetched.  If the value is
-     ‘--tags’, then all tags are fetched.  If this variable has not
-     value, then only tags are fetched that are reachable from fetched
-     branches.
-
-
-File: magit.info,  Node: Fetching,  Next: Pulling,  Prev: Remotes,  Up: Transferring
-
-7.2 Fetching
-============
-
-For information about the differences between the _upstream_ and the
-_push-remote_, see *note Branching::.
-
-   Also see *note (gitman)git-fetch::.
-
-‘f’     (‘magit-fetch-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘f p’     (‘magit-fetch-from-pushremote’)
-
-     Fetch from the push-remote of the current branch.
-
-‘f u’     (‘magit-fetch-from-upstream’)
-
-     Fetch from the upstream of the current branch.
-
-‘f e’     (‘magit-fetch-other’)
-
-     Fetch from another repository.
-
-‘f o’     (‘magit-fetch-branch’)
-
-     Fetch a branch from a remote, both of which are read from the
-     minibuffer.
-
-‘f r’     (‘magit-fetch-refspec’)
-
-     Fetch from a remote using an explicit refspec, both of which are
-     read from the minibuffer.
-
-‘f a’     (‘magit-fetch-all’)
-
-     Fetch from all remotes.
-
-‘f m’     (‘magit-submodule-fetch’)
-
-     Fetch all submodules.  With a prefix argument fetch all remotes of
-     all submodules.
-
-   Instead of using one popup for fetching and another for pulling, you
-could also use ‘magit-pull-and-fetch-popup’.  See its doc-string for
-more information.
-
-
-File: magit.info,  Node: Pulling,  Next: Pushing,  Prev: Fetching,  Up: Transferring
-
-7.3 Pulling
-===========
-
-For information about the differences between the _upstream_ and the
-_push-remote_, see *note Branching::.
-
-   Also see *note (gitman)git-pull::.
-
-‘F’     (‘magit-pull-popup’)
-
-     This prefix command shows the following suffix commands in a popup
-     buffer.
-
-‘F p’     (‘magit-pull-from-pushremote’)
-
-     Pull from the push-remote of the current branch.
-
-‘F u’     (‘magit-pull-from-upstream’)
-
-     Pull from the upstream of the current branch.
-
-‘F e’     (‘magit-pull-branch’)
-
-     Pull from a branch read in the minibuffer.
-
-   Instead of using one popup for fetching and another for pulling, you
-could also use ‘magit-pull-and-fetch-popup’.  See its doc-string for
-more information.
-
-
-File: magit.info,  Node: Pushing,  Next: Creating and Sending Patches,  Prev: Pulling,  Up: Transferring
-
-7.4 Pushing
-===========
-
-For information about the differences between the _upstream_ and the
-_push-remote_, see *note Branching::.
-
-   Also see *note (gitman)git-push::.
-
-‘P’     (‘magit-push-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘P p’     (‘magit-push-current-to-pushremote’)
-
-     Push the current branch to ‘branch.<name>.pushRemote’ or if that is
-     unset to ‘remote.pushDefault’.
-
-     When ‘magit-push-current-set-remote-if-missing’ is non-nil and the
-     push-remote is not configured, then read the push-remote from the
-     user, set it, and then push to it.  With a prefix argument the
-     push-remote can be changed before pushed to it.
-
-‘P u’     (‘magit-push-current-to-upstream’)
-
-     Push the current branch to its upstream branch.
-
-     When ‘magit-push-current-set-remote-if-missing’ is non-nil and the
-     push-remote is not configured, then read the upstream from the
-     user, set it, and then push to it.  With a prefix argument the
-     push-remote can be changed before pushed to it.
-
-‘P e’     (‘magit-push-current’)
-
-     Push the current branch to a branch read in the minibuffer.
-
-‘P o’     (‘magit-push-other’)
-
-     Push an arbitrary branch or commit somewhere.  Both the source and
-     the target are read in the minibuffer.
-
-‘P r’     (‘magit-push-refspecs’)
-
-     Push one or multiple refspecs to a remote, both of which are read
-     in the minibuffer.
-
-     To use multiple refspecs, separate them with commas.  Completion is
-     only available for the part before the colon, or when no colon is
-     used.
-
-‘P m’     (‘magit-push-matching’)
-
-     Push all matching branches to another repository.  If multiple
-     remotes exit, then read one from the user.  If just one exists, use
-     that without requiring confirmation.
-
-‘P t’     (‘magit-push-tags’)
-
-     Push all tags to another repository.  If only one remote exists,
-     then push to that.  Otherwise prompt for a remote, offering the
-     remote configured for the current branch as default.
-
-‘P T’     (‘magit-push-tag’)
-
-     Push a tag to another repository.
-
-   Two more push commands exist, which by default are not available from
-the push popup.  See their doc-strings for instructions on how to add
-them to the popup.
-
- -- Command: magit-push-implicitly args
-
-     Push somewhere without using an explicit refspec.
-
-     This command simply runs ‘git push -v [ARGS]’.  ARGS are the
-     arguments specified in the popup buffer.  No explicit refspec
-     arguments are used.  Instead the behavior depends on at least these
-     Git variables: ‘push.default’, ‘remote.pushDefault’,
-     ‘branch.<branch>.pushRemote’, ‘branch.<branch>.remote’,
-     ‘branch.<branch>.merge’, and ‘remote.<remote>.push’.
-
- -- Command: magit-push-to-remote remote args
-
-     Push to the remote REMOTE without using an explicit refspec.  The
-     remote is read in the minibuffer.
-
-     This command simply runs ‘git push -v [ARGS] REMOTE’.  ARGS are the
-     arguments specified in the popup buffer.  No refspec arguments are
-     used.  Instead the behavior depends on at least these Git
-     variables: ‘push.default’, ‘remote.pushDefault’,
-     ‘branch.<branch>.pushRemote’, ‘branch.<branch>.remote’,
-     ‘branch.<branch>.merge’, and ‘remote.<remote>.push’.
-
- -- User Option: magit-push-current-set-remote-if-missing
-
-     This option controls whether missing remotes are configured before
-     pushing.
-
-     When ‘nil’, then the command ‘magit-push-current-to-pushremote’ and
-     ‘magit-push-current-to-upstream’ do not appear in the push popup if
-     the push-remote resp.  upstream is not configured.  If the user
-     invokes one of these commands anyway, then it raises an error.
-
-     When ‘non-nil’, then these commands always appear in the push
-     popup.  But if the required configuration is missing, then they do
-     appear in a way that indicates that this is the case.  If the user
-     invokes one of them, then it asks for the necessary configuration,
-     stores the configuration, and then uses it to push a first time.
-
-     This option also affects whether the argument ‘--set-upstream’ is
-     available in the popup.  If the value is ‘non-nil’, then that
-     argument is redundant.  But note that changing the value of this
-     option does not take affect immediately, the argument will only be
-     added or removed after restarting Emacs.
-
-
-File: magit.info,  Node: Creating and Sending Patches,  Next: Applying Patches,  Prev: Pushing,  Up: Transferring
-
-7.5 Creating and Sending Patches
-================================
-
-‘W’     (‘magit-patch-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘W p’     (‘magit-format-patch’)
-
-     Create patches for a set commits.  If the region marks commits,
-     then create patches for those.  Otherwise prompt for a range or a
-     single commit, defaulting to the commit at point.
-
-‘W r’     (‘magit-request-pull’)
-
-     Request that upstream pulls from your public repository.
-
-   It is also possible to save a plain patch file by using ‘C-x C-w’
-inside a ‘magit-diff-mode’ or ‘magit-revision-mode’ buffer.
-
-
-File: magit.info,  Node: Applying Patches,  Prev: Creating and Sending Patches,  Up: Transferring
-
-7.6 Applying Patches
-====================
-
-Also see *note (gitman)git-am::.  and *note (gitman)git-apply::.
-
-‘w’     (‘magit-am-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘w w’     (‘magit-am-apply-patches’)
-
-     Apply one or more patches.  If the region marks files, then apply
-     those patches.  Otherwise read a file name in the minibuffer
-     defaulting to the file at point.
-
-‘w m’     (‘magit-am-apply-maildir’)
-
-     Apply the patches from a maildir.
-
-   When an "am" operation is in progress, then the popup buffer features
-these commands instead.
-
-‘w w’     (‘magit-am-continue’)
-
-     Resume the current patch applying sequence.
-
-‘w s’     (‘magit-am-skip’)
-
-     Skip the stopped at patch during a patch applying sequence.
-
-‘w a’     (‘magit-am-abort’)
-
-     Abort the current patch applying sequence.  This discards all
-     changes made since the sequence started.
-
-   In addition to the commands listed at the top, the "am" popup also
-has a binding for the related "patch" popup.
-
-‘w a’     (‘magit-patch-apply-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘w a a’     (‘magit-patch-apply’)
-
-     This command applies a simple patch file, which may not contain any
-     Git metadata in addition to the actual diff.
-
-
-File: magit.info,  Node: Miscellaneous,  Next: Customizing,  Prev: Transferring,  Up: Top
-
-8 Miscellaneous
-***************
-
-* Menu:
-
-* Tagging::
-* Notes::
-* Submodules::
-* Subtree::
-* Worktree::
-* Common Commands::
-* Wip Modes::
-* Minor Mode for Buffers Visiting Files::
-* Minor Mode for Buffers Visiting Blobs::
-
-
-File: magit.info,  Node: Tagging,  Next: Notes,  Up: Miscellaneous
-
-8.1 Tagging
-===========
-
-Also see *note (gitman)git-tag::.
-
-‘t’     (‘magit-tag-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘t t’     (‘magit-tag-create’)
-
-     Create a new tag with the given NAME at REV.  With a prefix
-     argument annotate the tag.
-
-‘t k’     (‘magit-tag-delete’)
-
-     Delete one or more tags.  If the region marks multiple tags (and
-     nothing else), then offer to delete those.  Otherwise, prompt for a
-     single tag to be deleted, defaulting to the tag at point.
-
-‘t p’     (‘magit-tag-prune’)
-
-     Offer to delete tags missing locally from REMOTE, and vice versa.
-
- -- Command: magit-tag-release
-
-     Create an opinionated release tag.
-
-     Assume version tags that match "\\‘v?[0-9]\*\\’".  Prompt for the
-     name of the new tag using the highest existing tag as initial input
-     and call "git tag –annotate –sign -m MSG" TAG, regardless of
-     whether these arguments are enabled in the popup.  Given a TAG
-     "v1.2.3" and a repository "/path/to/foo-bar", the MESSAGE would be
-     "Foo-Bar 1.2.3".
-
-     Because it is so opinionated, this command is not available from
-     the tag popup by default.
-
-
-File: magit.info,  Node: Notes,  Next: Submodules,  Prev: Tagging,  Up: Miscellaneous
-
-8.2 Notes
-=========
-
-Also see *note (gitman)git-notes::.
-
-‘T’     (‘magit-notes-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-‘T T’     (‘magit-notes-edit’)
-
-     Edit the note attached to a commit, defaulting to the commit at
-     point.
-
-     By default use the value of Git variable ‘core.notesRef’ or
-     "refs/notes/commits" if that is undefined.
-
-‘T r’     (‘magit-notes-remove’)
-
-     Remove the note attached to a commit, defaulting to the commit at
-     point.
-
-     By default use the value of Git variable ‘core.notesRef’ or
-     "refs/notes/commits" if that is undefined.
-
-‘T p’     (‘magit-notes-prune’)
-
-     Remove notes about unreachable commits.
-
-   It is possible to merge one note ref into another.  That may result
-in conflicts which have to resolved in the temporary worktree
-".git/NOTES_MERGE_WORKTREE".
-
-‘T m’     (‘magit-notes-merge’)
-
-     Merge the notes of a ref read from the user into the current notes
-     ref.  The current notes ref is the value of Git variable
-     ‘core.notesRef’ or "refs/notes/commits" if that is undefined.
-
-   When a notes merge is in progress then the popup features the
-following suffix commands, instead of those listed above.
-
-‘T c’     (‘magit-notes-merge-commit’)
-
-     Commit the current notes ref merge, after manually resolving
-     conflicts.
-
-‘T a’     (‘magit-notes-merge-abort’)
-
-     Abort the current notes ref merge.
-
-   The following variables control what notes reference ‘magit-notes-*’,
-‘git notes’ and ‘git show’ act on and display.  Both the local and
-global values are displayed and can be modified.
-
- -- Variable: core.notesRef
-
-     This variable specifies the notes ref that is displayed by default
-     and which commands act on by default.
-
- -- Variable: notes.displayRef
-
-     This variable specifies additional notes ref to be displayed in
-     addition to the ref specified by ‘core.notesRef’.  It can have
-     multiple values and may end with ‘*’ to display all refs in the
-     ‘refs/notes/’ namespace (or ‘**’ if some names contain slashes).
-
-
-File: magit.info,  Node: Submodules,  Next: Subtree,  Prev: Notes,  Up: Miscellaneous
-
-8.3 Submodules
-==============
-
-Also see *note (gitman)git-submodule::.
-
-* Menu:
-
-* Listing Submodules::
-* Submodule Popup::
-
-
-File: magit.info,  Node: Listing Submodules,  Next: Submodule Popup,  Up: Submodules
-
-8.3.1 Listing Submodules
-------------------------
-
-The command ‘magit-list-submodules’ displays a list of the current
-repository’s submodules in a separate buffer.  It’s also possible to
-display information about submodules directly in the status buffer of
-the super-repository by adding ‘magit-insert-submodules’ to the hook
-‘magit-status-sections-hook’ as described in *note Status Module
-Sections::.
-
- -- Command: magit-list-submodules
-
-     This command displays a list of the current repository’s submodules
-     in a separate buffer.
-
-     It can be invoked by pressing ‘RET’ on the section titled
-     "Modules".
-
- -- User Option: magit-submodule-list-columns
-
-     This option controls what columns are displayed by the command
-     ‘magit-list-submodules’ and how they are displayed.
-
-     Each element has the form ‘(HEADER WIDTH FORMAT PROPS)’.
-
-     HEADER is the string displayed in the header.  WIDTH is the width
-     of the column.  FORMAT is a function that is called with one
-     argument, the repository identification (usually its basename), and
-     with ‘default-directory’ bound to the toplevel of its working tree.
-     It has to return a string to be inserted or nil.  PROPS is an alist
-     that supports the keys ‘:right-align’ and ‘:pad-right’.
-
- -- Function: magit-insert-submodules
-
-     Insert sections for all submodules.  For each section insert the
-     path, the branch, and the output of ‘git describe --tags’, or,
-     failing that, the abbreviated HEAD commit hash.
-
-     Press ‘RET’ on such a submodule section to show its own status
-     buffer.  Press ‘RET’ on the "Modules" section to display a list of
-     submodules in a separate buffer.  This shows additional information
-     not displayed in the super-repository’s status buffer.
-
-
-File: magit.info,  Node: Submodule Popup,  Prev: Listing Submodules,  Up: Submodules
-
-8.3.2 Submodule Popup
----------------------
-
-‘o’     (‘magit-submodule-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-   Some of the below commands default to act on the modules that are
-selected using the region.  For brevity their description talk about
-"the selected modules", but if no modules are selected, then they act on
-the current module instead, or if point isn’t on a module, then the read
-a single module to act on.  With a prefix argument these commands ignore
-the selection and the current module and instead act on all suitable
-modules.
-
-‘o a’     (‘magit-submodule-add’)
-
-     This commands adds the repository at URL as a module.  Optional
-     PATH is the path to the module relative to the root of the
-     super-project.  If it is nil then the path is determined based on
-     URL.
-
-‘o r’     (‘magit-submodule-register’)
-
-     This command registers the selected modules by copying their urls
-     from ".gitmodules" to "$GIT_DIR/config".  These values can then be
-     edited before running ‘magit-submodule-populate’.  If you don’t
-     need to edit any urls, then use the latter directly.
-
-‘o p’     (‘magit-submodule-populate’)
-
-     This command creates the working directory or directories of the
-     selected modules, checking out the recorded commits.
-
-‘o u’     (‘magit-submodule-update’)
-
-     This command updates the selected modules checking out the recorded
-     commits.
-
-‘o s’     (‘magit-submodule-synchronize’)
-
-     This command synchronizes the urls of the selected modules, copying
-     the values from ".gitmodules" to the ".git/config" of the
-     super-project as well those of the modules.
-
-‘o d’     (‘magit-submodule-unpopulate’)
-
-     This command removes the working directory of the selected modules.
-
-‘o l’     (‘magit-list-submodules’)
-
-     This command displays a list of the current repository’s modules.
-
-‘o f’     (‘magit-fetch-modules’)
-
-     This command fetches all modules.
-
-     Option ‘magit-fetch-modules-jobs’ controls how many submodules are
-     being fetched in parallel.  Also fetch the super-repository,
-     because ‘git fetch’ does not support not doing that.  With a prefix
-     argument fetch all remotes.
-
-
-File: magit.info,  Node: Subtree,  Next: Worktree,  Prev: Submodules,  Up: Miscellaneous
-
-8.4 Subtree
-===========
-
-Also see *note (gitman)git-subtree::.
-
-‘O’     (‘magit-tree-popup’)
-
-     This prefix command shows the following suffix commands along with
-     the appropriate infix arguments in a popup buffer.
-
-   Most infix arguments only apply to some of the ‘git subtree’
-subcommands.  When an argument that does not apply to the invoked
-command is set, then it is silently ignored.
-
-   When the ‘--prefix’ argument is set in the popup buffer, then that is
-used.  Otherwise the prefix is read in the minibuffer.
-
-‘O a’     (‘magit-subtree-add’)
-
-     Add COMMIT from REPOSITORY as a new subtree at PREFIX.
-
-‘O c’     (‘magit-subtree-add-commit’)
-
-     Add COMMIT as a new subtree at PREFIX.
-
-‘O m’     (‘magit-subtree-merge’)
-
-     Merge COMMIT into the PREFIX subtree.
-
-‘O f’     (‘magit-subtree-pull’)
-
-     Pull COMMIT from REPOSITORY into the PREFIX subtree.
-
-‘O p’     (‘magit-subtree-push’)
-
-     Extract the history of the subtree PREFIX and push it to REF on
-     REPOSITORY.
-
-‘O s’     (‘magit-subtree-split’)
-
-     Extract the history of the subtree PREFIX.
-
-
-File: magit.info,  Node: Worktree,  Next: Common Commands,  Prev: Subtree,  Up: Miscellaneous
-
-8.5 Worktree
-============
-
-Also see *note (gitman)git-worktree::.
-
-‘%’     (‘magit-worktree-popup’)
-
-     This prefix command shows the following suffix commands in a popup
-     buffer.
-
-‘% b’     (‘magit-worktree-checkout’)
-
-     Checkout BRANCH in a new worktree at PATH.
-
-‘% c’     (‘magit-worktree-branch’)
-
-     Create a new BRANCH and check it out in a new worktree at PATH.
-
-‘% p’     (‘magit-worktree-checkout-pull-request’)
-
-     Create, configure and checkout a new worktree from a pull-request.
-
-     This is like ‘magit-checkout-pull-request’ (which see) except that
-     it also creates a new worktree.
-
-‘% k’     (‘magit-worktree-delete’)
-
-     Delete a worktree, defaulting to the worktree at point.  The
-     primary worktree cannot be deleted.
-
-‘% g’     (‘magit-worktree-status’)
-
-     Show the status for the worktree at point.
-
-     If there is no worktree at point, then read one in the minibuffer.
-     If the worktree at point is the one whose status is already being
-     displayed in the current buffer, then show it in Dired instead.
-
-
-File: magit.info,  Node: Common Commands,  Next: Wip Modes,  Prev: Worktree,  Up: Miscellaneous
-
-8.6 Common Commands
-===================
-
-These are some of the commands that can be used in all buffers whose
-major-modes derive from ‘magit-mode’.  There are other common commands
-beside the ones below, but these didn’t fit well anywhere else.
-
-‘M-w’     (‘magit-copy-section-value’)
-
-     This command saves the value of the current section to the
-     ‘kill-ring’, and, provided that the current section is a commit,
-     branch, or tag section, it also pushes the (referenced) revision to
-     the ‘magit-revision-stack’.
-
-     When the current section is a branch or a tag, and a prefix
-     argument is used, then it saves the revision at its tip to the
-     ‘kill-ring’ instead of the reference name.
-
-‘C-w’     (‘magit-copy-buffer-revision’)
-
-     This command saves the revision being displayed in the current
-     buffer to the ‘kill-ring’ and also pushes it to the
-     ‘magit-revision-stack’.  It is mainly intended for use in
-     ‘magit-revision-mode’ buffers, the only buffers where it is always
-     unambiguous exactly which revision should be saved.
-
-     Most other Magit buffers usually show more than one revision, in
-     some way or another, so this command has to select one of them, and
-     that choice might not always be the one you think would have been
-     the best pick.
-
-   Outside of Magit ‘M-w’ and ‘C-w’ are usually bound to
-‘kill-ring-save’ and ‘kill-region’, and these commands would also be
-useful in Magit buffers.  Therefore when the region is active, then both
-of these commands behave like ‘kill-ring-save’ instead of as described
-above.
-
-
-File: magit.info,  Node: Wip Modes,  Next: Minor Mode for Buffers Visiting Files,  Prev: Common Commands,  Up: Miscellaneous
-
-8.7 Wip Modes
-=============
-
-Git keeps *committed* changes around long enough for users to recover
-changes they have accidentally deleted.  It does so by not garbage
-collecting any committed but no longer referenced objects for a certain
-period of time, by default 30 days.
-
-   But Git does *not* keep track of *uncommitted* changes in the working
-tree and not even the index (the staging area).  Because Magit makes it
-so convenient to modify uncommitted changes, it also makes it easy to
-shoot yourself in the foot in the process.
-
-   For that reason Magit provides a global mode that saves *tracked*
-files to work-in-progress references after or before certain actions.
-(At present untracked files are never saved and for technical reasons
-nothing is saved before the first commit has been created).
-
-   Two separate work-in-progress references are used to track the state
-of the index and of the working tree: ‘refs/wip/index/<branchref>’ and
-‘refs/wip/wtree/<branchref>’, where ‘<branchref>’ is the full ref of the
-current branch, e.g.  ‘refs/heads/master’.  When the ‘HEAD’ is detached
-then ‘HEAD’ is used in place of ‘<branchref>’.
-
-   Checking out another branch (or detaching ‘HEAD’) causes the use of
-different wip refs for subsequent changes.
-
- -- User Option: magit-wip-mode
-
-     When this mode is enabled, then uncommitted changes are committed
-     to dedicated work-in-progress refs whenever appropriate (i.e.  when
-     dataloss would be a possibility otherwise).
-
-     Setting this variable directly does not take effect; either use the
-     Custom interface to do so or call the respective mode function.
-
-     For historic reasons this mode is implemented on top of four other
-     ‘magit-wip-*’ modes, which can also be used individually, if you
-     want finer control over when the wip refs are updated; but that is
-     discouraged.  See *note Legacy Wip Modes::.
-
-   To view the log for a branch and its wip refs use the commands
-‘magit-wip-log’ and ‘magit-wip-log-current’.  You should use ‘--graph’
-when using these commands.
-
- -- Command: magit-wip-log
-
-     This command shows the log for a branch and its wip refs.  With a
-     negative prefix argument only the worktree wip ref is shown.
-
-     The absolute numeric value of the prefix argument controls how many
-     "branches" of each wip ref are shown.  This is only relevant if the
-     value of ‘magit-wip-merge-branch’ is ‘nil’.
-
- -- Command: magit-wip-log-current
-
-     This command shows the log for the current branch and its wip refs.
-     With a negative prefix argument only the worktree wip ref is shown.
-
-     The absolute numeric value of the prefix argument controls how many
-     "branches" of each wip ref are shown.  This is only relevant if the
-     value of ‘magit-wip-merge-branch’ is ‘nil’.
-
-‘X w’     (‘magit-reset-worktree’)
-
-     This command resets the working tree to some commit read from the
-     user and defaulting to the commit at point, while keeping the
-     ‘HEAD’ and index as-is.
-
-     This can be used to restore files to the state committed to a wip
-     ref.  Note that this will discard any unstaged changes that might
-     have existed before invoking this command (but of course only after
-     committing that to the working tree wip ref).
-
-   Note that even if you enable ‘magit-wip-mode’ this won’t give you
-perfect protection.  The most likely scenario for losing changes despite
-the use of ‘magit-wip-mode’ is making a change outside Emacs and then
-destroying it also outside Emacs.  In some such a scenario, Magit, being
-an Emacs package, didn’t get the opportunity to keep you from shooting
-yourself in the foot.
-
-   When you are unsure whether Magit did commit a change to the wip
-refs, then you can explicitly request that all changes to all tracked
-files are being committed.
-
-‘M-x magit-wip-commit’     (‘magit-wip-commit’)
-
-     This command commits all changes to all tracked files to the index
-     and working tree work-in-progress refs.  Like the modes described
-     above, it does not commit untracked files, but it does check all
-     tracked files for changes.  Use this command when you suspect that
-     the modes might have overlooked a change made outside Emacs/Magit.
-
- -- User Option: magit-wip-namespace
-
-     The namespace used for work-in-progress refs.  It has to end with a
-     slash.  The wip refs are named ‘<namespace>index/<branchref>’ and
-     ‘<namespace>wtree/<branchref>’.  When snapshots are created while
-     the ‘HEAD’ is detached then ‘HEAD’ is used in place of
-     ‘<branchref>’.
-
- -- User Option: magit-wip-mode-lighter
-
-     Mode-line lighter for ‘magit-wip--mode’.
-
-* Menu:
-
-* Wip Graph::
-* Legacy Wip Modes::
-
-
-File: magit.info,  Node: Wip Graph,  Next: Legacy Wip Modes,  Up: Wip Modes
-
-8.7.1 Wip Graph
----------------
-
- -- User Option: magit-wip-merge-branch
-
-     This option controls whether the current branch is merged into the
-     wip refs after a new commit was created on the branch.
-
-     If non-nil and the current branch has new commits, then it is
-     merged into the wip ref before creating a new wip commit.  This
-     makes it easier to inspect wip history and the wip commits are
-     never garbage collected.
-
-     If nil and the current branch has new commits, then the wip ref is
-     reset to the tip of the branch before creating a new wip commit.
-     With this setting wip commits are eventually garbage collected.
-
-   When ‘magit-wip-merge-branch’ is ‘t’, then the history looks like
-this:
-
-       *--*--*--*--*--*       refs/wip/index/refs/heads/master
-      /     /     /
-     A-----B-----C            refs/heads/master
-
-   When ‘magit-wip-merge-branch’ is ‘nil’, then creating a commit on the
-real branch and then making a change causes the wip refs to be recreated
-to fork from the new commit.  But the old commits on the wip refs are
-not lost.  They are still available from the reflog.  To make it easier
-to see when the fork point of a wip ref was changed, an additional
-commit with the message "restart autosaving" is created on it (‘xxO’
-commits below are such boundary commits).
-
-   Starting with
-
-           BI0---BI1    refs/wip/index/refs/heads/master
-          /
-     A---B              refs/heads/master
-          \
-           BW0---BW1    refs/wip/wtree/refs/heads/master
-
-   and committing the staged changes and editing and saving a file would
-result in
-
-           BI0---BI1        refs/wip/index/refs/heads/master
-          /
-     A---B---C              refs/heads/master
-          \   \
-           \   CW0---CW1    refs/wip/wtree/refs/heads/master
-            \
-             BW0---BW1      refs/wip/wtree/refs/heads/master@{2}
-
-   The fork-point of the index wip ref is not changed until some change
-is being staged.  Likewise just checking out a branch or creating a
-commit does not change the fork-point of the working tree wip ref.  The
-fork-points are not adjusted until there actually is a change that
-should be committed to the respective wip ref.
-
-
-File: magit.info,  Node: Legacy Wip Modes,  Prev: Wip Graph,  Up: Wip Modes
-
-8.7.2 Legacy Wip Modes
-----------------------
-
-It is recommended that you use the mode ‘magit-wip-mode’ (which see) and
-ignore the existence of the following modes, which are preserved for
-historic reasons.
-
-   Setting the following variables directly does not take effect; either
-use the Custom interface to do so or call the respective mode functions.
-
- -- User Option: magit-wip-after-save-mode
-
-     When this mode is enabled, then saving a buffer that visits a file
-     tracked in a Git repository causes its current state to be
-     committed to the working tree wip ref for the current branch.
-
- -- User Option: magit-wip-after-apply-mode
-
-     When this mode is enabled, then applying (i.e.  staging, unstaging,
-     discarding, reversing, and regularly applying) a change to a file
-     tracked in a Git repository causes its current state to be
-     committed to the index and/or working tree wip refs for the current
-     branch.
-
-   If you only ever edit files using Emacs and only ever interact with
-Git using Magit, then the above two modes should be enough to protect
-each and every change from accidental loss.  In practice nobody does
-that.  Two additional modes exists that do commit to the wip refs before
-making changes that could cause the loss of earlier changes.
-
- -- User Option: magit-wip-before-change-mode
-
-     When this mode is enabled, then certain commands commit the
-     existing changes to the files they are about to make changes to.
-
- -- User Option: magit-wip-initial-backup-mode
-
-     When this mode is enabled, then the current version of a file is
-     committed to the worktree wip ref before the buffer visiting that
-     file is saved for the first time since the buffer was created.
-
-     This backs up the same version of the file that ‘backup-buffer’
-     would save.  While ‘backup-buffer’ uses a backup file, this mode
-     uses the same worktree wip ref as used by the other Magit Wip
-     modes.  Like ‘backup-buffer’, it only does this once; unless you
-     kill the buffer and visit the file again only one backup will be
-     created per Emacs session.
-
-     This mode ignores the variables that affect ‘backup-buffer’ and can
-     be used along-side that function, which is recommended because it
-     only backs up files that are tracked in a Git repository.
-
- -- User Option: magit-wip-after-save-local-mode-lighter
-
-     Mode-line lighter for ‘magit-wip-after-save-local-mode’.
-
- -- User Option: magit-wip-after-apply-mode-lighter
-
-     Mode-line lighter for ‘magit-wip-after-apply-mode’.
-
- -- User Option: magit-wip-before-change-mode-lighter
-
-     Mode-line lighter for ‘magit-wip-before-change-mode’.
-
- -- User Option: magit-wip-initial-backup-mode-lighter
-
-     Mode-line lighter for ‘magit-wip-initial-backup-mode’.
-
-
-File: magit.info,  Node: Minor Mode for Buffers Visiting Files,  Next: Minor Mode for Buffers Visiting Blobs,  Prev: Wip Modes,  Up: Miscellaneous
-
-8.8 Minor Mode for Buffers Visiting Files
-=========================================
-
-The ‘magit-file-mode’ enables certain Magit features in file-visiting
-buffers belonging to a Git repository.  It should be enabled globally
-using ‘global-magit-file-mode’.  Currently this mode only establishes a
-few key bindings, but this might be extended in the future.
-
- -- User Option: magit-file-mode
-
-     Whether to establish certain Magit key bindings in all
-     file-visiting buffers belonging to a Git repository.  This
-     establishes the bindings suggested in *note Getting Started:: (but
-     only for file-visiting buffers), and additionally binds ‘C-c M-g’
-     to ‘magit-file-popup’.
-
-‘C-c M-g’     (‘magit-file-popup’)
-
-     This prefix command shows a popup buffer featuring suffix commands
-     that operate on the file being visited in the current buffer.
-
-‘C-c M-g s’     (‘magit-stage-file’)
-
-     Stage all changes to the file being visited in the current buffer.
-
-‘C-c M-g u’     (‘magit-unstage-file’)
-
-     Unstage all changes to the file being visited in the current
-     buffer.
-
-‘C-c M-g c’     (‘magit-commit-popup’)
-
-     This prefix command shows suffix commands along with the
-     appropriate infix arguments in a popup buffer.  See *note
-     Initiating a Commit::.
-
-‘C-c M-g D’     (‘magit-diff-buffer-file-popup’)
-
-     This prefix command shows the same suffix commands and infix
-     arguments in a popup buffer as ‘magit-diff-popup’.  But this
-     variant has to be called from a file-visiting buffer and the
-     visited file is automatically used in the popup to limit the diff
-     to that file.
-
-‘C-c M-g d’     (‘magit-diff-buffer-file’)
-
-     This command shows the diff for the file of blob that the current
-     buffer visits.
-
- -- User Option: magit-diff-buffer-file-locked
-
-     This option controls whether ‘magit-diff-buffer-file’ uses a
-     dedicated buffer.  See *note Modes and Buffers::.
-
-‘C-c M-g L’     (‘magit-log-buffer-file-popup’)
-
-     This prefix command shows the same suffix commands and infix
-     arguments in a popup buffer as ‘magit-log-popup’.  But this variant
-     has to be called from a file-visiting buffer and the visited file
-     is automatically used in the popup to limit the log to that file.
-
-‘C-c M-g l’     (‘magit-log-buffer-file’)
-
-     This command shows the log for the file of blob that the current
-     buffer visits.  Renames are followed when a prefix argument is used
-     or when ‘--follow’ is part of ‘magit-log-arguments’.  When the
-     region is active, the log is restricted to the selected line range.
-
-‘C-c M-g t’     (‘magit-log-trace-definition’)
-
-     This command shows the log for the definition at point.
-
- -- User Option: magit-log-buffer-file-locked
-
-     This option controls whether ‘magit-log-buffer-file’ uses a
-     dedicated buffer.  See *note Modes and Buffers::.
-
-‘C-c M-g B’     (‘magit-blame-popup’)
-
-     This prefix command shows all blaming suffix command along with the
-     appropriate infix arguments in a popup buffer.  See *note
-     Blaming::.
-
-‘C-c M-g b’     (‘magit-blame-addition’)
-
-     This command shows for each line the revision in which it was
-     added.
-
-‘C-c M-g r’     (‘magit-blame-removal’)
-
-     This command shows for each line the revision in which it was
-     removed.  This command is only available in blob-visiting buffers.
-
-‘C-c M-g f’     (‘magit-blame-reverse’)
-
-     This command shows for each line the last revision in which it
-     still exists.  This command is only available in blob-visiting
-     buffers.
-
-‘C-c M-g e’     (‘magit-edit-line-commit’)
-
-     This command makes the commit editable that added the current line.
-
-     With a prefix argument it makes the commit editable that removes
-     the line, if any.  The commit is determined using ‘git blame’ and
-     made editable using ‘git rebase --interactive’ if it is reachable
-     from ‘HEAD’, or by checking out the commit (or a branch that points
-     at it) otherwise.
-
-‘C-c M-g p’     (‘magit-blob-previous’)
-
-     Visit the previous blob which modified the current file.
-
-   There are a few additional commands that operate on a single file but
-are not available from the file popup by default:
-
- -- Command: magit-file-rename
-
-     This command renames a file read from the user.
-
- -- Command: magit-file-delete
-
-     This command deletes a file read from the user.
-
- -- Command: magit-file-untrack
-
-     This command untracks a file read from the user.
-
- -- Command: magit-file-checkout
-
-     This command updates a file in the working tree and index to the
-     contents from a revision.  Both the revision and file are read from
-     the user.
-
-   You could add them to the popup like so:
-
-     (magit-define-popup-action 'magit-file-popup
-       ?R "Rename file" 'magit-file-rename)
-     (magit-define-popup-action 'magit-file-popup
-       ?K "Delete file" 'magit-file-delete)
-     (magit-define-popup-action 'magit-file-popup
-       ?U "Untrack file" 'magit-file-untrack)
-     (magit-define-popup-action 'magit-file-popup
-       ?C "Checkout file" 'magit-file-checkout)
-
-
-File: magit.info,  Node: Minor Mode for Buffers Visiting Blobs,  Prev: Minor Mode for Buffers Visiting Files,  Up: Miscellaneous
-
-8.9 Minor Mode for Buffers Visiting Blobs
-=========================================
-
-The ‘magit-blob-mode’ enables certain Magit features in blob-visiting
-buffers.  Such buffers can be created using ‘magit-find-file’ and some
-of the commands mentioned below, which also take care of turning on this
-minor mode.  Currently this mode only establishes a few key bindings,
-but this might be extended.
-
-‘p’     (‘magit-blob-previous’)
-
-     Visit the previous blob which modified the current file.
-
-‘n’     (‘magit-blob-next’)
-
-     Visit the next blob which modified the current file.
-
-‘q’     (‘magit-kill-this-buffer’)
-
-     Kill the current buffer.
-
-
-File: magit.info,  Node: Customizing,  Next: Plumbing,  Prev: Miscellaneous,  Up: Top
-
-9 Customizing
-*************
-
-Both Git and Emacs are highly customizable.  Magit is both a Git
-porcelain as well as an Emacs package, so it makes sense to customize it
-using both Git variables as well as Emacs options.  However this
-flexibility doesn’t come without problems, including but not limited to
-the following.
-
-   • Some Git variables automatically have an effect in Magit without
-     requiring any explicit support.  Sometimes that is desirable - in
-     other cases, it breaks Magit.
-
-     When a certain Git setting breaks Magit but you want to keep using
-     that setting on the command line, then that can be accomplished by
-     overriding the value for Magit only by appending something like
-     ‘("-c" "some.variable=compatible-value")’ to
-     ‘magit-git-global-arguments’.
-
-   • Certain settings like ‘fetch.prune=true’ are respected by Magit
-     commands (because they simply call the respective Git command) but
-     their value is not reflected in the respective popup buffers.  In
-     this case the ‘--prune’ argument in ‘magit-fetch-popup’ might be
-     active or inactive depending on the value of
-     ‘magit-fetch-arguments’ only, but that doesn’t keep the Git
-     variable from being honored by the suffix commands anyway.  So
-     pruning might happen despite the ‘--prune’ arguments being
-     displayed in a way that seems to indicate that no pruning will
-     happen.
-
-   I intend to address these and similar issues in a future release.
-
-* Menu:
-
-* Per-Repository Configuration::
-* Essential Settings::
-
-
-File: magit.info,  Node: Per-Repository Configuration,  Next: Essential Settings,  Up: Customizing
-
-9.1 Per-Repository Configuration
-================================
-
-Magit can be configured on a per-repository level using both Git
-variables as well as Emacs options.
-
-   To set a Git variable for one repository only, simply set it in
-‘/path/to/repo/.git/config’ instead of ‘$HOME/.gitconfig’ or
-‘/etc/gitconfig’.  See *note (gitman)git-config::.
-
-   Similarly, Emacs options can be set for one repository only by
-editing ‘/path/to/repo/.dir-locals.el’.  See *note (emacs)Directory
-Variables::.  For example to disable automatic refreshes of
-file-visiting buffers in just one huge repository use this:
-
-   • ‘/path/to/huge/repo/.dir-locals.el’
-
-          ((nil . ((magit-refresh-buffers . nil))))
-
-   If you want to apply the same settings to several, but not all,
-repositories then keeping the repository-local config files in sync
-would quickly become annoying.  To avoid that you can create config
-files for certain classes of repositories (e.g.  "huge repositories")
-and then include those files in the per-repository config files.  For
-example:
-
-   • ‘/path/to/huge/repo/.git/config’
-
-          [include]
-                  path = /path/to/huge-gitconfig
-
-   • ‘/path/to/huge-gitconfig’
-
-          [status]
-                  showUntrackedFiles = no
-
-   • ‘$HOME/.emacs.d/init.el’
-
-          (dir-locals-set-class-variables 'huge-git-repository
-             '((nil . ((magit-refresh-buffers . nil)))))
-
-          (dir-locals-set-directory-class
-             "/path/to/huge/repo/" 'huge-git-repository)
-
-
-File: magit.info,  Node: Essential Settings,  Prev: Per-Repository Configuration,  Up: Customizing
-
-9.2 Essential Settings
-======================
-
-The next two sections list and discuss several variables that many users
-might want to customize, for safety and/or performance reasons.
-
-* Menu:
-
-* Safety::
-* Performance::
-
-
-File: magit.info,  Node: Safety,  Next: Performance,  Up: Essential Settings
-
-9.2.1 Safety
-------------
-
-This section discusses various variables that you might want to change
-(or *not* change) for safety reasons.
-
-   Git keeps *committed* changes around long enough for users to recover
-changes they have accidentally been deleted.  It does not do the same
-for *uncommitted* changes in the working tree and not even the index
-(the staging area).  Because Magit makes it so easy to modify
-uncommitted changes, it also makes it easy to shoot yourself in the foot
-in the process.  For that reason Magit provides three global modes that
-save *tracked* files to work-in-progress references after or before
-certain actions.  See *note Wip Modes::.
-
-   These modes are not enabled by default because of performance
-concerns.  Instead a lot of potentially destructive commands require
-confirmation every time they are used.  In many cases this can be
-disabled by adding a symbol to ‘magit-no-confirm’ (see *note Completion
-and Confirmation::).  If you enable the various wip modes then you
-should add ‘safe-with-wip’ to this list.
-
-   Similarly it isn’t necessary to require confirmation before moving a
-file to the system trash - if you trashed a file by mistake then you can
-recover it from the there.  Option ‘magit-delete-by-moving-to-trash’
-controls whether the system trash is used, which is the case by default.
-Nevertheless, ‘trash’ isn’t a member of ‘magit-no-confirm’ - you might
-want to change that.
-
-   By default buffers visiting files are automatically reverted when the
-visited file changes on disk.  This isn’t as risky as it might seem, but
-to make an informed decision you should see *note Risk of Reverting
-Automatically::.
-
-
-File: magit.info,  Node: Performance,  Prev: Safety,  Up: Essential Settings
-
-9.2.2 Performance
------------------
-
-After Magit has run ‘git’ for side-effects, it also refreshes the
-current Magit buffer and the respective status buffer.  This is
-necessary because otherwise outdated information might be displayed
-without the user noticing.  Magit buffers are updated by recreating
-their content from scratch, which makes updating simpler and less
-error-prone, but also more costly.  Keeping it simple and just
-re-creating everything from scratch is an old design decision and
-departing from that will require major refactoring.
-
-   I plan to do that in time for the next major release.  I also intend
-to create logs and diffs asynchronously, which should also help a lot
-but also requires major refactoring.
-
-   Meanwhile you can tell Magit to only automatically refresh the
-current Magit buffer, but not the status buffer.  If you do that, then
-the status buffer is only refreshed automatically if it is the current
-buffer.
-
-     (setq magit-refresh-status-buffer nil)
-
-   You should also check whether any third-party packages have added
-anything to ‘magit-refresh-buffer-hook’, ‘magit-status-refresh-hook’,
-‘magit-pre-refresh-hook’, and ‘magit-post-refresh-hook’.  If so, then
-check whether those additions impact performance significantly.  Setting
-‘magit-refresh-verbose’ and then inspecting the output in the
-‘*Messages*’ buffer, should help doing so.
-
-   Magit also reverts buffers for visited files located inside the
-current repository when the visited file changes on disk.  That is
-implemented on top of ‘auto-revert-mode’ from the built-in library
-‘autorevert’.  To figure out whether that impacts performance, check
-whether performance is significantly worse, when many buffers exist
-and/or when some buffers visit files using TRAMP.  If so, then this
-should help.
-
-     (setq auto-revert-buffer-list-filter
-           'magit-auto-revert-repository-buffers-p)
-
-   For alternative approaches see *note Automatic Reverting of
-File-Visiting Buffers::.
-
-   If you have enabled any features that are disabled by default, then
-you should check whether they impact performance significantly.  It’s
-likely that they were not enabled by default because it is known that
-they reduce performance at least in large repositories.
-
-   If performance is only slow inside certain unusually large
-repositories, then you might want to disable certain features on a
-per-repository or per-repository-class basis only.  See *note
-Per-Repository Configuration::.
-
-* Menu:
-
-* Microsoft Windows Performance::
-* MacOS Performance::
-
-Log Performance
-...............
-
-When showing logs, Magit limits the number of commits initially shown in
-the hope that this avoids unnecessary work.  When using ‘--graph’ is
-used, then this unfortunately does not have the desired effect for large
-histories.  Junio, Git’s maintainer, said on the git mailing list
-(<http://www.spinics.net/lists/git/msg232230.html>): "‘--graph’ wants to
-compute the whole history and the max-count only affects the output
-phase after ‘--graph’ does its computation".
-
-   In other words, it’s not that Git is slow at outputting the
-differences, or that Magit is slow at parsing the output - the problem
-is that Git first goes outside and has a smoke.
-
-   We actually work around this issue by limiting the number of commits
-not only by using ‘-<N>’ but by also using a range.  But unfortunately
-that’s not always possible.
-
-   In repositories with more than a few thousand commits ‘--graph’
-should never be a member of ‘magit-log-section-arguments’.  That
-variable is used in the status buffer which is refreshed every time you
-run any Magit command.
-
-   Using ‘--color --graph’ is even slower.  Magit uses code that is part
-of Emacs to turn control characters into faces.  That code is pretty
-slow and this is quite noticeable when showing a log with many branches
-and merges.  For that reason ‘--color’ is not enabled by default
-anymore.  Consider leaving it at that.
-
-Diff Performance
-................
-
-If diffs are slow, then consider turning off some optional diff features
-by setting all or some of the following variables to ‘nil’:
-‘magit-diff-highlight-indentation’, ‘magit-diff-highlight-trailing’,
-‘magit-diff-paint-whitespace’, ‘magit-diff-highlight-hunk-body’, and
-‘magit-diff-refine-hunk’.
-
-   When showing a commit instead of some arbitrary diff, then some
-additional information is displayed.  Calculating this information can
-be quite expensive given certain circumstances.  If looking at a commit
-using ‘magit-revision-mode’ takes considerably more time than looking at
-the same commit in ‘magit-diff-mode’, then consider setting
-‘magit-revision-insert-related-refs’ to ‘nil’.
-
-Refs Buffer Performance
-.......................
-
-When refreshing the "references buffer" is slow, then that’s usually
-because several hundred refs are being displayed.  The best way to
-address that is to display fewer refs, obviously.
-
-   If you are not, or only mildly, interested in seeing the list of
-tags, then start by not displaying them:
-
-     (remove-hook 'magit-refs-sections-hook 'magit-insert-tags)
-
-   Then you should also make sure that the listed remote branches
-actually all exist.  You can do so by pruning branches which no longer
-exist using ‘f-pa’.
-
-Committing Performance
-......................
-
-When you initiate a commit, then Magit by default automatically shows a
-diff of the changes you are about to commit.  For large commits this can
-take a long time, which is especially distracting when you are
-committing large amounts of generated data which you don’t actually
-intend to inspect before committing.  This behavior can be turned off
-using:
-
-     (remove-hook 'server-switch-hook 'magit-commit-diff)
-
-   Then you can type ‘C-c C-d’ to show the diff when you actually want
-to see it, but only then.  Alternatively you can leave the hook alone
-and just type ‘C-g’ in those cases when it takes too long to generate
-the diff.  If you do that, then you will end up with a broken diff
-buffer, but doing it this way has the advantage that you usually get to
-see the diff, which is useful because it increases the odds that you
-spot potential issues.
-
-The Built-In VC Package
-.......................
-
-Emacs comes with a version control interface called "VC", see *note
-(emacs)Version Control::.  It is enabled be default, and if you don’t
-use it in addition to Magit, then you should disable it to keep it from
-performing unnecessary work:
-
-     (setq vc-handled-backends nil)
-
-   You can also disable its use for Git but keep using it when using
-another version control system:
-
-     (setq vc-handled-backends (delq 'Git vc-handled-backends))
-
diff --git a/elpa/magit-20181116.1412/magit.info-2 b/elpa/magit-20181116.1412/magit.info-2
deleted file mode 100644
index 18585bb..0000000
--- a/elpa/magit-20181116.1412/magit.info-2
+++ /dev/null
@@ -1,2692 +0,0 @@
-This is magit.info, produced by makeinfo version 6.5 from magit.texi.
-
-     Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-INFO-DIR-SECTION Emacs
-START-INFO-DIR-ENTRY
-* Magit: (magit).       Using Git from Emacs with Magit.
-END-INFO-DIR-ENTRY
-
-
-File: magit.info,  Node: Microsoft Windows Performance,  Next: MacOS Performance,  Up: Performance
-
-Microsoft Windows Performance
-.............................
-
-In order to update the status buffer, ‘git’ has to be run a few dozen
-times.  That is problematic on Microsoft Windows, because that operating
-system is exceptionally slow at starting processes.  Sadly this is an
-issue that can only be fixed by Microsoft itself, and they don’t appear
-to be particularly interested in doing so.
-
-   Beside the subprocess issue, there are also other Windows-specific
-performance issues.  Some of these have workarounds.  The maintainers of
-"Git for Windows" try to improve performance on Windows.  Always use the
-latest release in order to benefit from the latest performance tweaks.
-Magit too tries to work around some Windows-specific issues.
-
-   According to some sources, setting the following Git variables can
-also help.
-
-     git config --global core.preloadindex true   # default since v2.1
-     git config --global core.fscache true        # default since v2.8
-     git config --global gc.auto 256
-
-   You should also check whether an anti-virus program is affecting
-performance.
-
-
-File: magit.info,  Node: MacOS Performance,  Prev: Microsoft Windows Performance,  Up: Performance
-
-MacOS Performance
-.................
-
-On macOS Emacs currently creates child processes using ‘fork’.  It
-appears that this also copies GUI resources.  The result is that forking
-takes about 30 times as long on Darwin than on Linux.  And because Magit
-starts many ‘git’ processes even when doing simple things, that makes
-quite a difference.
-
-   On the ‘master’ branch Emacs now uses ‘vfork’ when possible, like
-this was already done on Linux, and now child creation only takes about
-twice as long on Darwin.  See (1) for more information.
-
-   Nobody knows when the changes on the ‘master’ branch will be released
-as ‘26.1’, but it is still a long way off.  You might want to get your
-hands on this change before then.  The easiest way to get a patched
-Emacs is to install the ‘emacs-plus’ formula (2) using ‘homebrew’.  The
-change has been backported, so you get it not only when using ‘--HEAD’,
-but also when using ‘--devel’ or when installing the latest release (by
-not using a version argument).
-
-   Alternatively you can apply the backport (3) manually.
-
-   ---------- Footnotes ----------
-
-   (1) 
-<https://lists.gnu.org/archive/html/bug-gnu-emacs/2017-04/msg00201.html>
-
-   (2) <https://github.com/d12frosted/homebrew-emacs-plus>
-
-   (3) 
-<https://gist.githubusercontent.com/aaronjensen/f45894ddf431ecbff78b1bcf533d3e6b/raw/6a5cd7f57341aba673234348d8b0d2e776f86719/Emacs-25-OS-X-use-vfork.patch>
-
-
-File: magit.info,  Node: Plumbing,  Next: FAQ,  Prev: Customizing,  Up: Top
-
-10 Plumbing
-***********
-
-The following sections describe how to use several of Magit’s core
-abstractions to extend Magit itself or implement a separate extension.
-
-   A few of the low-level features used by Magit have been factored out
-into separate libraries/packages, so that they can be used by other
-packages, without having to depend on Magit.  These libraries are
-described in separate manuals, see *note (with-editor)Top:: and *note
-(magit-popup)Top::.
-
-   If you are trying to find an unused key that you can bind to a
-command provided by your own Magit extension, then checkout
-<https://github.com/magit/magit/wiki/Plugin-Dispatch-Key-Registry>.
-
-* Menu:
-
-* Calling Git::
-* Section Plumbing::
-* Refreshing Buffers::
-* Conventions::
-
-
-File: magit.info,  Node: Calling Git,  Next: Section Plumbing,  Up: Plumbing
-
-10.1 Calling Git
-================
-
-Magit provides many specialized functions for calling Git.  All of these
-functions are defined in either ‘magit-git.el’ or ‘magit-process.el’ and
-have one of the prefixes ‘magit-run-’, ‘magit-call-’, ‘magit-start-’, or
-‘magit-git-’ (which is also used for other things).
-
-   All of these functions accept an indefinite number of arguments,
-which are strings that specify command line arguments for Git (or in
-some cases an arbitrary executable).  These arguments are flattened
-before being passed on to the executable; so instead of strings they can
-also be lists of strings and arguments that are ‘nil’ are silently
-dropped.  Some of these functions also require a single mandatory
-argument before these command line arguments.
-
-   Roughly speaking, these functions run Git either to get some value or
-for side-effects.  The functions that return a value are useful to
-collect the information necessary to populate a Magit buffer, while the
-others are used to implement Magit commands.
-
-   The functions in the value-only group always run synchronously, and
-they never trigger a refresh.  The function in the side-effect group can
-be further divided into subgroups depending on whether they run Git
-synchronously or asynchronously, and depending on whether they trigger a
-refresh when the executable has finished.
-
-* Menu:
-
-* Getting a Value from Git::
-* Calling Git for Effect::
-
-
-File: magit.info,  Node: Getting a Value from Git,  Next: Calling Git for Effect,  Up: Calling Git
-
-10.1.1 Getting a Value from Git
--------------------------------
-
-These functions run Git in order to get a value, an exit status, or
-output.  Of course you could also use them to run Git commands that have
-side-effects, but that should be avoided.
-
- -- Function: magit-git-exit-code &rest args
-
-     Executes git with ARGS and returns its exit code.
-
- -- Function: magit-git-success &rest args
-
-     Executes git with ARGS and returns ‘t’ if the exit code is ‘0’,
-     ‘nil’ otherwise.
-
- -- Function: magit-git-failure &rest args
-
-     Executes git with ARGS and returns ‘t’ if the exit code is ‘1’,
-     ‘nil’ otherwise.
-
- -- Function: magit-git-true &rest args
-
-     Executes git with ARGS and returns ‘t’ if the first line printed by
-     git is the string "true", ‘nil’ otherwise.
-
- -- Function: magit-git-false &rest args
-
-     Executes git with ARGS and returns ‘t’ if the first line printed by
-     git is the string "false", ‘nil’ otherwise.
-
- -- Function: magit-git-insert &rest args
-
-     Executes git with ARGS and inserts its output at point.
-
- -- Function: magit-git-string &rest args
-
-     Executes git with ARGS and returns the first line of its output.
-     If there is no output or if it begins with a newline character,
-     then this returns ‘nil’.
-
- -- Function: magit-git-lines &rest args
-
-     Executes git with ARGS and returns its output as a list of lines.
-     Empty lines anywhere in the output are omitted.
-
- -- Function: magit-git-items &rest args
-
-     Executes git with ARGS and returns its null-separated output as a
-     list.  Empty items anywhere in the output are omitted.
-
-     If the value of option ‘magit-git-debug’ is non-nil and git exits
-     with a non-zero exit status, then warn about that in the echo area
-     and add a section containing git’s standard error in the current
-     repository’s process buffer.
-
-   If an error occurs when using one of the above functions, then that
-is usually due to a bug, i.e.  using an argument which is not actually
-supported.  Such errors are usually not reported, but when they occur we
-need to be able to debug them.
-
- -- User Option: magit-git-debug
-
-     Whether to report errors that occur when using ‘magit-git-insert’,
-     ‘magit-git-string’, ‘magit-git-lines’, or ‘magit-git-items’.  This
-     does not actually raise an error.  Instead a message is shown in
-     the echo area, and git’s standard error is insert into a new
-     section in the current repository’s process buffer.
-
- -- Function: magit-git-str &rest args
-
-     This is a variant of ‘magit-git-string’ that ignores the option
-     ‘magit-git-debug’.  It is mainly intended to be used while handling
-     errors in functions that do respect that option.  Using such a
-     function while handing an error could cause yet another error and
-     therefore lead to an infinite recursion.  You probably won’t ever
-     need to use this function.
-
-
-File: magit.info,  Node: Calling Git for Effect,  Prev: Getting a Value from Git,  Up: Calling Git
-
-10.1.2 Calling Git for Effect
------------------------------
-
-These functions are used to run git to produce some effect.  Most Magit
-commands that actually run git do so by using such a function.
-
-   Because we do not need to consume git’s output when using these
-functions, their output is instead logged into a per-repository buffer,
-which can be shown using ‘$’ from a Magit buffer or ‘M-x magit-process’
-elsewhere.
-
-   These functions can have an effect in two distinct ways.  Firstly,
-running git may change something, i.e.  create or push a new commit.
-Secondly, that change may require that Magit buffers are refreshed to
-reflect the changed state of the repository.  But refreshing isn’t
-always desirable, so only some of these functions do perform such a
-refresh after git has returned.
-
-   Sometimes it is useful to run git asynchronously.  For example, when
-the user has just initiated a push, then there is no reason to make her
-wait until that has completed.  In other cases it makes sense to wait
-for git to complete before letting the user do something else.  For
-example after staging a change it is useful to wait until after the
-refresh because that also automatically moves to the next change.
-
- -- Function: magit-call-git &rest args
-
-     Calls git synchronously with ARGS.
-
- -- Function: magit-call-process program &rest args
-
-     Calls PROGRAM synchronously with ARGS.
-
- -- Function: magit-run-git &rest args
-
-     Calls git synchronously with ARGS and then refreshes.
-
- -- Function: magit-run-git-with-input input &rest args
-
-     Calls git synchronously with ARGS and sends it INPUT on standard
-     input.
-
-     INPUT should be a buffer or the name of an existing buffer.  The
-     content of that buffer is used as the process’ standard input.
-     After the process returns a refresh is performed.
-
-     As a special case, INPUT may also be nil.  In that case the content
-     of the current buffer is used as standard input and *no* refresh is
-     performed.
-
-     This function actually runs git asynchronously.  But then it waits
-     for the process to return, so the function itself is synchronous.
-
- -- Function: magit-run-git-with-logfile file &rest args
-
-     Calls git synchronously with ARGS.  The process’ output is saved in
-     FILE.  This is rarely useful and so this function might be removed
-     in the future.
-
-     This function actually runs git asynchronously.  But then it waits
-     for the process to return, so the function itself is synchronous.
-
- -- Function: magit-git &rest args
-
-     Calls git synchronously with ARGS for side-effects only.  This
-     function does not refresh the buffer.
-
- -- Function: magit-git-wash washer &rest args
-
-     Execute Git with ARGS, inserting washed output at point.  Actually
-     first insert the raw output at point.  If there is no output call
-     ‘magit-cancel-section’.  Otherwise temporarily narrow the buffer to
-     the inserted text, move to its beginning, and then call function
-     WASHER with ARGS as its sole argument.
-
-   And now for the asynchronous variants.
-
- -- Function: magit-run-git-async &rest args
-
-     Start Git, prepare for refresh, and return the process object.
-     ARGS is flattened and then used as arguments to Git.
-
-     Display the command line arguments in the echo area.
-
-     After Git returns some buffers are refreshed: the buffer that was
-     current when this function was called (if it is a Magit buffer and
-     still alive), as well as the respective Magit status buffer.
-     Unmodified buffers visiting files that are tracked in the current
-     repository are reverted if ‘magit-revert-buffers’ is non-nil.
-
- -- Function: magit-run-git-with-editor &rest args
-
-     Export GIT_EDITOR and start Git.  Also prepare for refresh and
-     return the process object.  ARGS is flattened and then used as
-     arguments to Git.
-
-     Display the command line arguments in the echo area.
-
-     After Git returns some buffers are refreshed: the buffer that was
-     current when this function was called (if it is a Magit buffer and
-     still alive), as well as the respective Magit status buffer.
-
- -- Function: magit-start-git &rest args
-
-     Start Git, prepare for refresh, and return the process object.
-
-     If INPUT is non-nil, it has to be a buffer or the name of an
-     existing buffer.  The buffer content becomes the processes standard
-     input.
-
-     Option ‘magit-git-executable’ specifies the Git executable and
-     option ‘magit-git-global-arguments’ specifies constant arguments.
-     The remaining arguments ARGS specify arguments to Git.  They are
-     flattened before use.
-
-     After Git returns, some buffers are refreshed: the buffer that was
-     current when this function was called (if it is a Magit buffer and
-     still alive), as well as the respective Magit status buffer.
-     Unmodified buffers visiting files that are tracked in the current
-     repository are reverted if ‘magit-revert-buffers’ is non-nil.
-
- -- Function: magit-start-process &rest args
-
-     Start PROGRAM, prepare for refresh, and return the process object.
-
-     If optional argument INPUT is non-nil, it has to be a buffer or the
-     name of an existing buffer.  The buffer content becomes the
-     processes standard input.
-
-     The process is started using ‘start-file-process’ and then setup to
-     use the sentinel ‘magit-process-sentinel’ and the filter
-     ‘magit-process-filter’.  Information required by these functions is
-     stored in the process object.  When this function returns the
-     process has not started to run yet so it is possible to override
-     the sentinel and filter.
-
-     After the process returns, ‘magit-process-sentinel’ refreshes the
-     buffer that was current when ‘magit-start-process’ was called (if
-     it is a Magit buffer and still alive), as well as the respective
-     Magit status buffer.  Unmodified buffers visiting files that are
-     tracked in the current repository are reverted if
-     ‘magit-revert-buffers’ is non-nil.
-
- -- Variable: magit-this-process
-
-     The child process which is about to start.  This can be used to
-     change the filter and sentinel.
-
- -- Variable: magit-process-raise-error
-
-     When this is non-nil, then ‘magit-process-sentinel’ raises an error
-     if git exits with a non-zero exit status.  For debugging purposes.
-
-
-File: magit.info,  Node: Section Plumbing,  Next: Refreshing Buffers,  Prev: Calling Git,  Up: Plumbing
-
-10.2 Section Plumbing
-=====================
-
-* Menu:
-
-* Creating Sections::
-* Section Selection::
-* Matching Sections::
-
-
-File: magit.info,  Node: Creating Sections,  Next: Section Selection,  Up: Section Plumbing
-
-10.2.1 Creating Sections
-------------------------
-
- -- Macro: magit-insert-section &rest args
-
-     Insert a section at point.
-
-     TYPE is the section type, a symbol.  Many commands that act on the
-     current section behave differently depending on that type.  Also if
-     a variable ‘magit-TYPE-section-map’ exists, then use that as the
-     text-property ‘keymap’ of all text belonging to the section (but
-     this may be overwritten in subsections).  TYPE can also have the
-     form ‘(eval FORM)’ in which case FORM is evaluated at runtime.
-
-     Optional VALUE is the value of the section, usually a string that
-     is required when acting on the section.
-
-     When optional HIDE is non-nil collapse the section body by default,
-     i.e.  when first creating the section, but not when refreshing the
-     buffer.  Otherwise, expand it by default.  This can be overwritten
-     using ‘magit-section-set-visibility-hook’.  When a section is
-     recreated during a refresh, then the visibility of predecessor is
-     inherited and HIDE is ignored (but the hook is still honored).
-
-     BODY is any number of forms that actually insert the section’s
-     heading and body.  Optional NAME, if specified, has to be a symbol,
-     which is then bound to the struct of the section being inserted.
-
-     Before BODY is evaluated the ‘start’ of the section object is set
-     to the value of ‘point’ and after BODY was evaluated its ‘end’ is
-     set to the new value of ‘point’; BODY is responsible for moving
-     ‘point’ forward.
-
-     If it turns out inside BODY that the section is empty, then
-     ‘magit-cancel-section’ can be used to abort and remove all traces
-     of the partially inserted section.  This can happen when creating a
-     section by washing Git’s output and Git didn’t actually output
-     anything this time around.
-
- -- Function: magit-insert-heading &rest args
-
-     Insert the heading for the section currently being inserted.
-
-     This function should only be used inside ‘magit-insert-section’.
-
-     When called without any arguments, then just set the ‘content’ slot
-     of the object representing the section being inserted to a marker
-     at ‘point’.  The section should only contain a single line when
-     this function is used like this.
-
-     When called with arguments ARGS, which have to be strings, then
-     insert those strings at point.  The section should not contain any
-     text before this happens and afterwards it should again only
-     contain a single line.  If the ‘face’ property is set anywhere
-     inside any of these strings, then insert all of them unchanged.
-     Otherwise use the ‘magit-section-heading’ face for all inserted
-     text.
-
-     The ‘content’ property of the section struct is the end of the
-     heading (which lasts from ‘start’ to ‘content’) and the beginning
-     of the body (which lasts from ‘content’ to ‘end’).  If the value of
-     ‘content’ is nil, then the section has no heading and its body
-     cannot be collapsed.  If a section does have a heading then its
-     height must be exactly one line, including a trailing newline
-     character.  This isn’t enforced; you are responsible for getting it
-     right.  The only exception is that this function does insert a
-     newline character if necessary.
-
- -- Function: magit-cancel-section
-
-     Cancel the section currently being inserted.  This exits the
-     innermost call to ‘magit-insert-section’ and removes all traces of
-     what has already happened inside that call.
-
- -- Function: magit-define-section-jumper sym title &optional value
-
-     Define an interactive function to go to section SYM.  TITLE is the
-     displayed title of the section.
-
-
-File: magit.info,  Node: Section Selection,  Next: Matching Sections,  Prev: Creating Sections,  Up: Section Plumbing
-
-10.2.2 Section Selection
-------------------------
-
- -- Function: magit-current-section
-
-     Return the section at point.
-
- -- Function: magit-region-sections &optional condition multiple
-
-     Return a list of the selected sections.
-
-     When the region is active and constitutes a valid section
-     selection, then return a list of all selected sections.  This is
-     the case when the region begins in the heading of a section and
-     ends in the heading of the same section or in that of a sibling
-     section.  If optional MULTIPLE is non-nil, then the region cannot
-     begin and end in the same section.
-
-     When the selection is not valid, then return nil.  In this case,
-     most commands that can act on the selected sections will instead
-     act on the section at point.
-
-     When the region looks like it would in any other buffer then the
-     selection is invalid.  When the selection is valid then the region
-     uses the ‘magit-section-highlight’ face.  This does not apply to
-     diffs where things get a bit more complicated, but even here if the
-     region looks like it usually does, then that’s not a valid
-     selection as far as this function is concerned.
-
-     If optional CONDITION is non-nil, then the selection not only has
-     to be valid; all selected sections additionally have to match
-     CONDITION, or nil is returned.  See ‘magit-section-match’ for the
-     forms CONDITION can take.
-
- -- Function: magit-region-values &optional condition multiple
-
-     Return a list of the values of the selected sections.
-
-     Return the values that themselves would be returned by
-     ‘magit-region-sections’ (which see).
-
-
-File: magit.info,  Node: Matching Sections,  Prev: Section Selection,  Up: Section Plumbing
-
-10.2.3 Matching Sections
-------------------------
-
-‘M-x magit-describe-section-briefly’     (‘magit-describe-section-briefly’)
-
-     Show information about the section at point.  This command is
-     intended for debugging purposes.
-
- -- Function: magit-section-ident section
-
-     Return an unique identifier for SECTION.  The return value has the
-     form ‘((TYPE . VALUE)...)’.
-
- -- Function: magit-get-section ident &optional root
-
-     Return the section identified by IDENT.  IDENT has to be a list as
-     returned by ‘magit-section-ident’.
-
- -- Function: magit-section-match condition &optional section
-
-     Return ‘t’ if SECTION matches CONDITION.  SECTION defaults to the
-     section at point.  If SECTION is not specified and there also is no
-     section at point, then return ‘nil’.
-
-     CONDITION can take the following forms:
-        • ‘(CONDITION...)’
-
-          matches if any of the CONDITIONs matches.
-
-        • ‘[CLASS...]’
-
-          matches if the section’s class is the same as the first CLASS
-          or a subclass of that; the section’s parent class matches the
-          second CLASS; and so on.
-
-        • ‘[* CLASS...]’
-
-          matches sections that match ‘[CLASS...]’ and also recursively
-          all their child sections.
-
-        • ‘CLASS’
-
-          matches if the section’s class is the same as CLASS or a
-          subclass of that; regardless of the classes of the parent
-          sections.
-
-     Each CLASS should be a class symbol, identifying a class that
-     derives from ‘magit-section’.  For backward compatibility CLASS can
-     also be a "type symbol".  A section matches such a symbol if the
-     value of its ‘type’ slot is ‘eq’.  If a type symbol has an entry in
-     ‘magit--section-type-alist’, then a section also matches that type
-     if its class is a subclass of the class that corresponds to the
-     type as per that alist.
-
-     Note that it is not necessary to specify the complete section
-     lineage as printed by ‘magit-describe-section-briefly’, unless of
-     course you want to be that precise.
-
- -- Function: magit-section-value-if condition &optional section
-
-     If the section at point matches CONDITION, then return its value.
-
-     If optional SECTION is non-nil then test whether that matches
-     instead.  If there is no section at point and SECTION is nil, then
-     return nil.  If the section does not match, then return nil.
-
-     See ‘magit-section-match’ for the forms CONDITION can take.
-
- -- Function: magit-section-case &rest clauses
-
-     Choose among clauses on the type of the section at point.
-
-     Each clause looks like (CONDITION BODY...).  The type of the
-     section is compared against each CONDITION; the BODY forms of the
-     first match are evaluated sequentially and the value of the last
-     form is returned.  Inside BODY the symbol ‘it’ is bound to the
-     section at point.  If no clause succeeds or if there is no section
-     at point return nil.
-
-     See ‘magit-section-match’ for the forms CONDITION can take.
-     Additionally a CONDITION of t is allowed in the final clause and
-     matches if no other CONDITION match, even if there is no section at
-     point.
-
- -- Variable: magit-root-section
-
-     The root section in the current buffer.  All other sections are
-     descendants of this section.  The value of this variable is set by
-     ‘magit-insert-section’ and you should never modify it.
-
-   For diff related sections a few additional tools exist.
-
- -- Function: magit-diff-type &optional section
-
-     Return the diff type of SECTION.
-
-     The returned type is one of the symbols ‘staged’, ‘unstaged’,
-     ‘committed’, or ‘undefined’.  This type serves a similar purpose as
-     the general type common to all sections (which is stored in the
-     ‘type’ slot of the corresponding ‘magit-section’ struct) but takes
-     additional information into account.  When the SECTION isn’t
-     related to diffs and the buffer containing it also isn’t a
-     diff-only buffer, then return nil.
-
-     Currently the type can also be one of ‘tracked’ and ‘untracked’,
-     but these values are not handled explicitly in every place they
-     should be.  A possible fix could be to just return nil here.
-
-     The section has to be a ‘diff’ or ‘hunk’ section, or a section
-     whose children are of type ‘diff’.  If optional SECTION is nil,
-     return the diff type for the current section.  In buffers whose
-     major mode is ‘magit-diff-mode’ SECTION is ignored and the type is
-     determined using other means.  In ‘magit-revision-mode’ buffers the
-     type is always ‘committed’.
-
- -- Function: magit-diff-scope &optional section strict
-
-     Return the diff scope of SECTION or the selected section(s).
-
-     A diff’s "scope" describes what part of a diff is selected, it is a
-     symbol, one of ‘region’, ‘hunk’, ‘hunks’, ‘file’, ‘files’, or
-     ‘list’.  Do not confuse this with the diff "type", as returned by
-     ‘magit-diff-type’.
-
-     If optional SECTION is non-nil, then return the scope of that,
-     ignoring the sections selected by the region.  Otherwise return the
-     scope of the current section, or if the region is active and
-     selects a valid group of diff related sections, the type of these
-     sections, i.e.  ‘hunks’ or ‘files’.  If SECTION (or if the current
-     section that is nil) is a ‘hunk’ section and the region starts and
-     ends inside the body of a that section, then the type is ‘region’.
-
-     If optional STRICT is non-nil then return nil if the diff type of
-     the section at point is ‘untracked’ or the section at point is not
-     actually a ‘diff’ but a ‘diffstat’ section.
-
-
-File: magit.info,  Node: Refreshing Buffers,  Next: Conventions,  Prev: Section Plumbing,  Up: Plumbing
-
-10.3 Refreshing Buffers
-=======================
-
-All commands that create a new Magit buffer or change what is being
-displayed in an existing buffer do so by calling ‘magit-mode-setup’.
-Among other things, that function sets the buffer local values of
-‘default-directory’ (to the top-level of the repository),
-‘magit-refresh-function’, and ‘magit-refresh-args’.
-
-   Buffers are refreshed by calling the function that is the local value
-of ‘magit-refresh-function’ (a function named ‘magit-*-refresh-buffer’,
-where ‘*’ may be something like ‘diff’) with the value of
-‘magit-refresh-args’ as arguments.
-
- -- Macro: magit-mode-setup buffer switch-func mode refresh-func
-          &optional refresh-args
-
-     This function displays and selects BUFFER, turns on MODE, and
-     refreshes a first time.
-
-     This function displays and optionally selects BUFFER by calling
-     ‘magit-mode-display-buffer’ with BUFFER, MODE and SWITCH-FUNC as
-     arguments.  Then it sets the local value of
-     ‘magit-refresh-function’ to REFRESH-FUNC and that of
-     ‘magit-refresh-args’ to REFRESH-ARGS.  Finally it creates the
-     buffer content by calling REFRESH-FUNC with REFRESH-ARGS as
-     arguments.
-
-     All arguments are evaluated before switching to BUFFER.
-
- -- Function: magit-mode-display-buffer buffer mode &optional
-          switch-function
-
-     This function display BUFFER in some window and select it.  BUFFER
-     may be a buffer or a string, the name of a buffer.  The buffer is
-     returned.
-
-     Unless BUFFER is already displayed in the selected frame, store the
-     previous window configuration as a buffer local value, so that it
-     can later be restored by ‘magit-mode-bury-buffer’.
-
-     The buffer is displayed and selected using SWITCH-FUNCTION.  If
-     that is ‘nil’ then ‘pop-to-buffer’ is used if the current buffer’s
-     major mode derives from ‘magit-mode’.  Otherwise ‘switch-to-buffer’
-     is used.
-
- -- Variable: magit-refresh-function
-
-     The value of this buffer-local variable is the function used to
-     refresh the current buffer.  It is called with ‘magit-refresh-args’
-     as arguments.
-
- -- Variable: magit-refresh-args
-
-     The list of arguments used by ‘magit-refresh-function’ to refresh
-     the current buffer.  ‘magit-refresh-function’ is called with these
-     arguments.
-
-     The value is usually set using ‘magit-mode-setup’, but in some
-     cases it’s also useful to provide commands which can change the
-     value.  For example, the ‘magit-diff-refresh-popup’ can be used to
-     change any of the arguments used to display the diff, without
-     having to specify again which differences should be shown.
-     ‘magit-diff-more-context’, ‘magit-diff-less-context’, and
-     ‘magit-diff-default-context’ change just the ‘-U<N>’ argument.  In
-     both case this is done by changing the value of this variable and
-     then calling this ‘magit-refresh-function’.
-
-
-File: magit.info,  Node: Conventions,  Prev: Refreshing Buffers,  Up: Plumbing
-
-10.4 Conventions
-================
-
-Also see *note Completion and Confirmation::.
-
-* Menu:
-
-* Theming Faces::
-
-
-File: magit.info,  Node: Theming Faces,  Up: Conventions
-
-10.4.1 Theming Faces
---------------------
-
-The default theme uses blue for local branches, green for remote
-branches, and goldenrod (brownish yellow) for tags.  When creating a new
-theme, you should probably follow that example.  If your theme already
-uses other colors, then stick to that.
-
-   In older releases these reference faces used to have a background
-color and a box around them.  The basic default faces no longer do so,
-to make Magit buffers much less noisy, and you should follow that
-example at least with regards to boxes.  (Boxes were used in the past to
-work around a conflict between the highlighting overlay and text
-property backgrounds.  That’s no longer necessary because highlighting
-no longer causes other background colors to disappear.)  Alternatively
-you can keep the background color and/or box, but then have to take
-special care to adjust ‘magit-branch-current’ accordingly.  By default
-it looks mostly like ‘magit-branch-local’, but with a box (by default
-the former is the only face that uses a box, exactly so that it sticks
-out).  If the former also uses a box, then you have to make sure that it
-differs in some other way from the latter.
-
-   The most difficult faces to theme are those related to diffs,
-headings, highlighting, and the region.  There are faces that fall into
-all four groups - expect to spend some time getting this right.
-
-   The ‘region’ face in the default theme, in both the light and dark
-variants, as well as in many other themes, distributed with Emacs or by
-third-parties, is very ugly.  It is common to use a background color
-that really sticks out, which is ugly but if that were the only problem
-then it would be acceptable.  Unfortunately many themes also set the
-foreground color, which ensures that all text within the region is
-readable.  Without doing that there might be cases where some foreground
-color is too close to the region background color to still be readable.
-But it also means that text within the region loses all syntax
-highlighting.
-
-   I consider the work that went into getting the ‘region’ face right to
-be a good indicator for the general quality of a theme.  My
-recommendation for the ‘region’ face is this: use a background color
-slightly different from the background color of the ‘default’ face, and
-do not set the foreground color at all.  So for a light theme you might
-use a light (possibly tinted) gray as the background color of ‘default’
-and a somewhat darker gray for the background of ‘region’.  That should
-usually be enough to not collide with the foreground color of any other
-face.  But if some other faces also set a light gray as background
-color, then you should also make sure it doesn’t collide with those (in
-some cases it might be acceptable though).
-
-   Magit only uses the ‘region’ face when the region is "invalid" by its
-own definition.  In a Magit buffer the region is used to either select
-multiple sibling sections, so that commands which support it act on all
-of these sections instead of just the current section, or to select
-lines within a single hunk section.  In all other cases, the section is
-considered invalid and Magit won’t act on it.  But such invalid sections
-happen, either because the user has not moved point enough yet to make
-it valid or because she wants to use a non-magit command to act on the
-region, e.g.  ‘kill-region’.
-
-   So using the regular ‘region’ face for invalid sections is a feature.
-It tells the user that Magit won’t be able to act on it.  It’s
-acceptable if that face looks a bit odd and even (but less so) if it
-collides with the background colors of section headings and other things
-that have a background color.
-
-   Magit highlights the current section.  If a section has subsections,
-then all of them are highlighted.  This is done using faces that have
-"highlight" in their names.  For most sections,
-‘magit-section-highlight’ is used for both the body and the heading.
-Like the ‘region’ face, it should only set the background color to
-something similar to that of ‘default’.  The highlight background color
-must be different from both the ‘region’ background color and the
-‘default’ background color.
-
-   For diff related sections Magit uses various faces to highlight
-different parts of the selected section(s).  Note that hunk headings,
-unlike all other section headings, by default have a background color,
-because it is useful to have very visible separators between hunks.
-That face ‘magit-diff-hunk-heading’, should be different from both
-‘magit-diff-hunk-heading-highlight’ and ‘magit-section-highlight’, as
-well as from ‘magit-diff-context’ and ‘magit-diff-context-highlight’.
-By default we do that by changing the foreground color.  Changing the
-background color would lead to complications, and there are already
-enough we cannot get around.  (Also note that it is generally a good
-idea for section headings to always be bold, but only for sections that
-have subsections).
-
-   When there is a valid region selecting diff-related sibling sections,
-i.e.  multiple files or hunks, then the bodies of all these sections use
-the respective highlight faces, but additionally the headings instead
-use one of the faces ‘magit-diff-file-heading-selection’ or
-‘magit-diff-hunk-heading-selection’.  These faces have to be different
-from the regular highlight variants to provide explicit visual
-indication that the region is active.
-
-   When theming diff related faces, start by setting the option
-‘magit-diff-refine-hunk’ to ‘all’.  You might personally prefer to only
-refine the current hunk or not use hunk refinement at all, but some of
-the users of your theme want all hunks to be refined, so you have to
-cater to that.
-
-   (Also turn on ‘magit-diff-highlight-indentation’,
-‘magit-diff-highlight-trailing’, and ‘magit-diff-paint-whitespace’; and
-insert some whitespace errors into the code you use for testing.)
-
-   For e.g.  "added lines" you have to adjust three faces:
-‘magit-diff-added’, ‘magit-diff-added-highlight’, and
-‘smerge-refined-added’.  Make sure that the latter works well with both
-of the former, as well as ‘smerge-other’ and ‘diff-added’.  Then do the
-same for the removed lines, context lines, lines added by us, and lines
-added by them.  Also make sure the respective added, removed, and
-context faces use approximately the same saturation for both the
-highlighted and unhighlighted variants.  Also make sure the file and
-diff headings work nicely with context lines (e.g.  make them look
-different).  Line faces should set both the foreground and the
-background color.  For example, for added lines use two different
-greens.
-
-   It’s best if the foreground color of both the highlighted and the
-unhighlighted variants are the same, so you will need to have to find a
-color that works well on the highlight and unhighlighted background, the
-refine background, and the highlight context background.  When there is
-an hunk internal region, then the added- and removed-lines background
-color is used only within that region.  Outside the region the
-highlighted context background color is used.  This makes it easier to
-see what is being staged.  With an hunk internal region the hunk heading
-is shown using ‘magit-diff-hunk-heading-selection’, and so are the thin
-lines that are added around the lines that fall within the region.  The
-background color of that has to be distinct enough from the various
-other involved background colors.
-
-   Nobody said this would be easy.  If your theme restricts itself to a
-certain set of colors, then you should make an exception here.
-Otherwise it would be impossible to make the diffs look good in each and
-every variation.  Actually you might want to just stick to the default
-definitions for these faces.  You have been warned.  Also please note
-that if you do not get this right, this will in some cases look to users
-like bugs in Magit - so please do it right or not at all.
-
-
-File: magit.info,  Node: FAQ,  Next: Debugging Tools,  Prev: Plumbing,  Up: Top
-
-Appendix A FAQ
-**************
-
-The next two nodes lists frequently asked questions.  For a list of
-frequently *and recently* asked questions, i.e.  questions that haven’t
-made it into the manual yet, see
-<https://github.com/magit/magit/wiki/FAQ>.
-
-   Please also use the *note Debugging Tools::.
-
-* Menu:
-
-* FAQ - How to ...?::
-* FAQ - Issues and Errors::
-
-
-File: magit.info,  Node: FAQ - How to ...?,  Next: FAQ - Issues and Errors,  Up: FAQ
-
-A.1 FAQ - How to ...?
-=====================
-
-* Menu:
-
-* How to show git's output?::
-* How to install the gitman info manual?::
-* How to show diffs for gpg-encrypted files?::
-* How does branching and pushing work?::
-* Can Magit be used as ediff-version-control-package?::
-
-
-File: magit.info,  Node: How to show git's output?,  Next: How to install the gitman info manual?,  Up: FAQ - How to ...?
-
-A.1.1 How to show git’s output?
--------------------------------
-
-To show the output of recently run git commands, press ‘$’ (or, if that
-isn’t available, ‘M-x magit-process-buffer’).  This will show a buffer
-containing a section per git invocation; as always press ‘TAB’ to expand
-or collapse them.
-
-   By default, git’s output is only inserted into the process buffer if
-it is run for side-effects.  When the output is consumed in some way,
-also inserting it into the process buffer would be too expensive.  For
-debugging purposes, it’s possible to do so anyway by setting
-‘magit-git-debug’ to ‘t’.
-
-
-File: magit.info,  Node: How to install the gitman info manual?,  Next: How to show diffs for gpg-encrypted files?,  Prev: How to show git's output?,  Up: FAQ - How to ...?
-
-A.1.2 How to install the gitman info manual?
---------------------------------------------
-
-Git’s manpages can be exported as an info manual called ‘gitman’.
-Magit’s own info manual links to nodes in that manual instead of the
-actual manpages because Info doesn’t support linking to manpages.
-
-   Unfortunately some distributions do not install the ‘gitman’ manual
-by default and you will have to install a separate documentation package
-to get it.
-
-   Magit patches Info adding the ability to visit links to the ‘gitman’
-Info manual by instead viewing the respective manpage.  If you prefer
-that approach, then set the value of ‘magit-view-git-manual-method’ to
-one of the supported packages ‘man’ or ‘woman’, e.g.:
-
-     (setq magit-view-git-manual-method 'man)
-
-
-File: magit.info,  Node: How to show diffs for gpg-encrypted files?,  Next: How does branching and pushing work?,  Prev: How to install the gitman info manual?,  Up: FAQ - How to ...?
-
-A.1.3 How to show diffs for gpg-encrypted files?
-------------------------------------------------
-
-Git supports showing diffs for encrypted files, but has to be told to do
-so.  Since Magit just uses Git to get the diffs, configuring Git also
-affects the diffs displayed inside Magit.
-
-     git config --global diff.gpg.textconv "gpg --no-tty --decrypt"
-     echo "*.gpg filter=gpg diff=gpg" > .gitattributes
-
-
-File: magit.info,  Node: How does branching and pushing work?,  Next: Can Magit be used as ediff-version-control-package?,  Prev: How to show diffs for gpg-encrypted files?,  Up: FAQ - How to ...?
-
-A.1.4 How does branching and pushing work?
-------------------------------------------
-
-Please see *note Branching:: and
-<http://emacsair.me/2016/01/17/magit-2.4>
-
-
-File: magit.info,  Node: Can Magit be used as ediff-version-control-package?,  Prev: How does branching and pushing work?,  Up: FAQ - How to ...?
-
-A.1.5 Can Magit be used as ‘ediff-version-control-package’?
------------------------------------------------------------
-
-No, it cannot.  For that to work the functions ‘ediff-magit-internal’
-and ‘ediff-magit-merge-internal’ would have to be implemented, and they
-are not.  These two functions are only used by the three commands
-‘ediff-revision’, ‘ediff-merge-revisions-with-ancestor’, and
-‘ediff-merge-revisions’.
-
-   These commands only delegate the task of populating buffers with
-certain revisions to the "internal" functions.  The equally important
-task of determining which revisions are to be compared/merged is not
-delegated.  Instead this is done without any support whatsoever from the
-version control package/system - meaning that the user has to enter the
-revisions explicitly.  Instead of implementing ‘ediff-magit-internal’ we
-provide ‘magit-ediff-compare’, which handles both tasks like it is 2005.
-
-   The other commands ‘ediff-merge-revisions’ and
-‘ediff-merge-revisions-with-ancestor’ are normally not what you want
-when using a modern version control system like Git.  Instead of letting
-the user resolve only those conflicts which Git could not resolve on its
-own, they throw away all work done by Git and then expect the user to
-manually merge all conflicts, including those that had already been
-resolved.  That made sense back in the days when version control systems
-couldn’t merge (or so I have been told), but not anymore.  Once in a
-blue moon you might actually want to see all conflicts, in which case
-you *can* use these commands, which then use ‘ediff-vc-merge-internal’.
-So we don’t actually have to implement ‘ediff-magit-merge-internal’.
-Instead we provide the more useful command ‘magit-ediff-resolve’ which
-only shows yet-to-be resolved conflicts.
-
-
-File: magit.info,  Node: FAQ - Issues and Errors,  Prev: FAQ - How to ...?,  Up: FAQ
-
-A.2 FAQ - Issues and Errors
-===========================
-
-* Menu:
-
-* Magit is slow::
-* I changed several thousand files at once and now Magit is unusable::
-* I am having problems committing::
-* I am using MS Windows and cannot push with Magit::
-* I am using OS X and SOMETHING works in shell, but not in Magit: I am using OS X and SOMETHING works in shell but not in Magit.
-* Diffs contain control sequences::
-* Expanding a file to show the diff causes it to disappear::
-* Point is wrong in the COMMIT_EDITMSG buffer::
-* The mode-line information isn't always up-to-date::
-* A branch and tag sharing the same name breaks SOMETHING::
-* My Git hooks work on the command-line but not inside Magit::
-* git-commit-mode isn't used when committing from the command-line::
-* Point ends up inside invisible text when jumping to a file-visiting buffer::
-
-
-File: magit.info,  Node: Magit is slow,  Next: I changed several thousand files at once and now Magit is unusable,  Up: FAQ - Issues and Errors
-
-A.2.1 Magit is slow
--------------------
-
-See *note Performance::.
-
-
-File: magit.info,  Node: I changed several thousand files at once and now Magit is unusable,  Next: I am having problems committing,  Prev: Magit is slow,  Up: FAQ - Issues and Errors
-
-A.2.2 I changed several thousand files at once and now Magit is unusable
-------------------------------------------------------------------------
-
-Magit is *currently* not expected to work under such conditions.  It
-sure would be nice if it did, and v2.5 will hopefully be a big step into
-that direction.  But it might take until v3.1 to accomplish fully
-satisfactory performance, because that requires some heavy refactoring.
-
-   But for now we recommend you use the command line to complete this
-one commit.  Also see *note Performance::.
-
-
-File: magit.info,  Node: I am having problems committing,  Next: I am using MS Windows and cannot push with Magit,  Prev: I changed several thousand files at once and now Magit is unusable,  Up: FAQ - Issues and Errors
-
-A.2.3 I am having problems committing
--------------------------------------
-
-That likely means that Magit is having problems finding an appropriate
-emacsclient executable.  See *note (with-editor)Configuring
-With-Editor:: and *note (with-editor)Debugging::.
-
-
-File: magit.info,  Node: I am using MS Windows and cannot push with Magit,  Next: I am using OS X and SOMETHING works in shell but not in Magit,  Prev: I am having problems committing,  Up: FAQ - Issues and Errors
-
-A.2.4 I am using MS Windows and cannot push with Magit
-------------------------------------------------------
-
-It’s almost certain that Magit is only incidental to this issue.  It is
-much more likely that this is a configuration issue, even if you can
-push on the command line.
-
-   Detailed setup instructions can be found at
-<https://github.com/magit/magit/wiki/Pushing-with-Magit-from-Windows>.
-
-
-File: magit.info,  Node: I am using OS X and SOMETHING works in shell but not in Magit,  Next: Diffs contain control sequences,  Prev: I am using MS Windows and cannot push with Magit,  Up: FAQ - Issues and Errors
-
-A.2.5 I am using OS X and SOMETHING works in shell, but not in Magit
---------------------------------------------------------------------
-
-This usually occurs because Emacs doesn’t have the same environment
-variables as your shell.  Try installing and configuring
-<https://github.com/purcell/exec-path-from-shell>.  By default it
-synchronizes ‘$PATH’, which helps Magit find the same ‘git’ as the one
-you are using on the shell.
-
-   If SOMETHING is "passphrase caching with gpg-agent for commit and/or
-tag signing", then you’ll also need to synchronize ‘$GPG_AGENT_INFO’.
-
-
-File: magit.info,  Node: Diffs contain control sequences,  Next: Expanding a file to show the diff causes it to disappear,  Prev: I am using OS X and SOMETHING works in shell but not in Magit,  Up: FAQ - Issues and Errors
-
-A.2.6 Diffs contain control sequences
--------------------------------------
-
-This happens when you configure Git to always color diffs and/or all of
-its output.  The valid values for relevant Git variables ‘color.ui’ and
-‘color.diff’ are ‘false’, ‘true’ and ‘always’, and the default is
-‘true’.  You should leave it that way because then you get colorful
-output in terminals by default but when git’s output is consumed by
-something else, then no color control sequences are used.
-
-   If you actually use some other tool that requires setting ‘color.ui’
-and/or ‘color.diff’ to ‘always’ (which is highly unlikely), then you can
-override these settings just for Magit by using:
-
-     (setq magit-git-global-arguments
-           (nconc magit-git-global-arguments
-                  '("-c" "color.ui=false"
-                    "-c" "color.diff=false")))
-
-
-File: magit.info,  Node: Expanding a file to show the diff causes it to disappear,  Next: Point is wrong in the COMMIT_EDITMSG buffer,  Prev: Diffs contain control sequences,  Up: FAQ - Issues and Errors
-
-A.2.7 Expanding a file to show the diff causes it to disappear
---------------------------------------------------------------
-
-This is probably caused by a change of a ‘diff.*’ Git variable.  You
-probably set that variable for a reason, and should therefore only undo
-that setting in Magit by customizing ‘magit-git-global-arguments’.
-
-
-File: magit.info,  Node: Point is wrong in the COMMIT_EDITMSG buffer,  Next: The mode-line information isn't always up-to-date,  Prev: Expanding a file to show the diff causes it to disappear,  Up: FAQ - Issues and Errors
-
-A.2.8 Point is wrong in the ‘COMMIT_EDITMSG’ buffer
----------------------------------------------------
-
-Neither Magit nor ‘git-commit‘ fiddle with point in the buffer used to
-write commit messages, so something else must be doing it.
-
-   You have probably globally enabled a mode which does restore point in
-file-visiting buffers.  It might be a bit surprising, but when you write
-a commit message, then you are actually editing a file.
-
-   So you have to figure out which package is doing.  ‘saveplace’,
-‘pointback’, and ‘session’ are likely candidates.  These snippets might
-help:
-
-     (setq session-name-disable-regexp "\\(?:\\`'\\.git/[A-Z_]+\\'\\)")
-
-     (with-eval-after-load 'pointback
-       (lambda ()
-         (when (or git-commit-mode git-rebase-mode)
-           (pointback-mode -1))))
-
-
-File: magit.info,  Node: The mode-line information isn't always up-to-date,  Next: A branch and tag sharing the same name breaks SOMETHING,  Prev: Point is wrong in the COMMIT_EDITMSG buffer,  Up: FAQ - Issues and Errors
-
-A.2.9 The mode-line information isn’t always up-to-date
--------------------------------------------------------
-
-Magit is not responsible for the version control information that is
-being displayed in the mode-line and looks something like ‘Git-master’.
-The built-in "Version Control" package, also known as "VC", updates that
-information, and can be told to do so more often:
-
-     (setq auto-revert-check-vc-info t)
-
-   But doing so isn’t good for performance.  For more (overly
-optimistic) information see *note (emacs)VC Mode Line::.
-
-   If you don’t really care about seeing that information in the
-mode-line, but just don’t want to see _incorrect_ information, then
-consider disabling VC when using Git:
-
-     (setq vc-handled-backends (delq 'Git vc-handled-backends))
-
-   Or to disable it completely:
-
-     (setq vc-handled-backends nil)
-
-
-File: magit.info,  Node: A branch and tag sharing the same name breaks SOMETHING,  Next: My Git hooks work on the command-line but not inside Magit,  Prev: The mode-line information isn't always up-to-date,  Up: FAQ - Issues and Errors
-
-A.2.10 A branch and tag sharing the same name breaks SOMETHING
---------------------------------------------------------------
-
-Or more generally, ambiguous refnames break SOMETHING.
-
-   Magit assumes that refs are named non-ambiguously across the
-"refs/heads/", "refs/tags/", and "refs/remotes/" namespaces (i.e., all
-the names remain unique when those prefixes are stripped).  We consider
-ambiguous refnames unsupported and recommend that you use a
-non-ambiguous naming scheme.  However, if you do work with a repository
-that has ambiguous refnames, please report any issues you encounter so
-that we can investigate whether there is a simple fix.
-
-
-File: magit.info,  Node: My Git hooks work on the command-line but not inside Magit,  Next: git-commit-mode isn't used when committing from the command-line,  Prev: A branch and tag sharing the same name breaks SOMETHING,  Up: FAQ - Issues and Errors
-
-A.2.11 My Git hooks work on the command-line but not inside Magit
------------------------------------------------------------------
-
-When Magit calls ‘git’ it adds a few global arguments including
-‘--literal-pathspecs’ and the ‘git’ process started by Magit then passes
-that setting on to other ‘git’ process it starts itself.  It does so by
-setting the environment variable ‘GIT_LITERAL_PATHSPECS’, not by calling
-subprocesses with the ‘--literal-pathspecs’.  You can therefore override
-this setting in hook scripts using ‘unset GIT_LITERAL_PATHSPECS’.
-
-
-File: magit.info,  Node: git-commit-mode isn't used when committing from the command-line,  Next: Point ends up inside invisible text when jumping to a file-visiting buffer,  Prev: My Git hooks work on the command-line but not inside Magit,  Up: FAQ - Issues and Errors
-
-A.2.12 ‘git-commit-mode’ isn’t used when committing from the command-line
--------------------------------------------------------------------------
-
-The reason for this is that ‘git-commit.el’ has not been loaded yet
-and/or that the server has not been started yet.  These things have
-always already been taken care of when you commit from Magit because in
-order to do so, Magit has to be loaded and doing that involves loading
-‘git-commit’ and starting the server.
-
-   If you want to commit from the command-line, then you have to take
-care of these things yourself.  Your ‘init.el’ file should contain:
-
-     (require 'git-commit)
-     (server-mode)
-
-   Instead of ‘(require ’git-commit)‘ you may also use:
-
-     (load "/path/to/magit-autoloads.el")
-
-   You might want to do that because loading ‘git-commit’ causes large
-parts of Magit to be loaded.
-
-   There are also some variations of ‘(server-mode)’ that you might want
-to try.  Personally I use:
-
-     (use-package server
-       :config (or (server-running-p) (server-mode)))
-
-   Now you can use:
-
-     $ emacs&
-     $ EDITOR=emacsclient git commit
-
-   However you cannot use:
-
-     $ killall emacs
-     $ EDITOR="emacsclient --alternate-editor emacs" git commit
-
-   This will actually end up using ‘emacs’, not ‘emacsclient’.  If you
-do this, then can still edit the commit message but ‘git-commit-mode’
-won’t be used and you have to exit ‘emacs’ to finish the process.
-
-   Tautology ahead.  If you want to be able to use ‘emacsclient’ to
-connect to a running ‘emacs’ instance, even though no ‘emacs’ instance
-is running, then you cannot use ‘emacsclient’ directly.
-
-   Instead you have to create a script that does something like this:
-
-   Try to use ‘emacsclient’ (without using ‘--alternate-editor’).  If
-that succeeds, do nothing else.  Otherwise start ‘emacs &’ (and
-‘init.el’ must call ‘server-start’) and try to use ‘emacsclient’ again.
-
-
-File: magit.info,  Node: Point ends up inside invisible text when jumping to a file-visiting buffer,  Prev: git-commit-mode isn't used when committing from the command-line,  Up: FAQ - Issues and Errors
-
-A.2.13 Point ends up inside invisible text when jumping to a file-visiting buffer
----------------------------------------------------------------------------------
-
-This can happen when you type ‘RET’ on a hunk to visit the respective
-file at the respective position.  One solution to this problem is to use
-‘global-reveal-mode’.  It makes sure that text around point is always
-visible.  If that is too drastic for your taste, then you may instead
-use ‘magit-diff-visit-file-hook’ to reveal the text, possibly using
-‘reveal-post-command’ or for Org buffers ‘org-reveal’.
-
-
-File: magit.info,  Node: Debugging Tools,  Next: Keystroke Index,  Prev: FAQ,  Up: Top
-
-B Debugging Tools
-*****************
-
-Magit and its dependencies provide a few debugging tools, and we
-appreciate it very much if you use those tools before reporting an
-issue.  Please include all relevant output when reporting an issue.
-
-‘M-x magit-version’     (‘magit-version’)
-
-     This command shows the currently used versions of Magit, Git, and
-     Emacs in the echo area.  Non-interactively this just returns the
-     Magit version.
-
-‘M-x magit-emacs-Q-command’     (‘magit-emacs-Q-command’)
-
-     This command shows a debugging shell command in the echo area and
-     adds it to the kill ring.  Paste that command into a shell and run
-     it.
-
-     This shell command starts ‘emacs’ with only ‘magit’ and its
-     dependencies loaded.  Neither your configuration nor other
-     installed packages are loaded.  This makes it easier to determine
-     whether some issue lays with Magit or something else.
-
-     If you run Magit from its Git repository, then you should be able
-     to use ‘make emacs-Q’ instead of the output of this command.
-
-‘M-x magit-debug-git-executable’     (‘magit-debug-git-executable’)
-
-     This command displays a buffer containing information about the
-     available and used ‘git’ executable(s), and can be useful when
-     investigating ‘exec-path’ issues.
-
-     Also see *note Git Executable::.
-
-‘M-x with-editor-debug’     (‘with-editor-debug’)
-
-     This command displays a buffer containing information about the
-     available and used ‘~emacsclient’ executable(s), and can be useful
-     when investigating why Magit (or rather ‘with-editor’) cannot find
-     an appropriate ‘emacsclient’ executable.
-
-     Also see *note (with-editor)Debugging::.
-
-   Please also see the *note FAQ::.
-
-
-File: magit.info,  Node: Keystroke Index,  Next: Command Index,  Prev: Debugging Tools,  Up: Top
-
-Appendix C Keystroke Index
-**************************
-
-�[index�]
-* Menu:
-
-* !:                                     Running Git Manually.
-                                                              (line  12)
-* ! !:                                   Running Git Manually.
-                                                              (line  16)
-* ! a:                                   Running Git Manually.
-                                                              (line  57)
-* ! b:                                   Running Git Manually.
-                                                              (line  61)
-* ! g:                                   Running Git Manually.
-                                                              (line  65)
-* ! k:                                   Running Git Manually.
-                                                              (line  53)
-* ! p:                                   Running Git Manually.
-                                                              (line  24)
-* ! s:                                   Running Git Manually.
-                                                              (line  34)
-* ! S:                                   Running Git Manually.
-                                                              (line  39)
-* $:                                     Viewing Git Output.  (line  16)
-* %:                                     Worktree.            (line   8)
-* % b:                                   Worktree.            (line  13)
-* % c:                                   Worktree.            (line  17)
-* % g:                                   Worktree.            (line  33)
-* % k:                                   Worktree.            (line  28)
-* % p:                                   Worktree.            (line  21)
-* +:                                     Log Buffer.          (line  59)
-* + <1>:                                 Refreshing Diffs.    (line  68)
-* -:                                     Log Buffer.          (line  63)
-* - <1>:                                 Refreshing Diffs.    (line  64)
-* 0:                                     Refreshing Diffs.    (line  72)
-* 1:                                     Section Visibility.  (line  26)
-* 2:                                     Section Visibility.  (line  27)
-* 3:                                     Section Visibility.  (line  28)
-* 4:                                     Section Visibility.  (line  29)
-* =:                                     Log Buffer.          (line  53)
-* ^:                                     Section Movement.    (line  31)
-* a:                                     Applying.            (line  33)
-* A:                                     Cherry Picking.      (line   8)
-* A A:                                   Cherry Picking.      (line  16)
-* A a:                                   Cherry Picking.      (line  23)
-* A A <1>:                               Cherry Picking.      (line  89)
-* A a <1>:                               Cherry Picking.      (line  97)
-* A d:                                   Cherry Picking.      (line  53)
-* A h:                                   Cherry Picking.      (line  41)
-* A n:                                   Cherry Picking.      (line  64)
-* A s:                                   Cherry Picking.      (line  75)
-* A s <1>:                               Cherry Picking.      (line  93)
-* B:                                     Bisecting.           (line   8)
-* b:                                     Blaming.             (line  86)
-* b <1>:                                 The Branch Popup.    (line  12)
-* B B:                                   Bisecting.           (line  16)
-* B b:                                   Bisecting.           (line  31)
-* b b:                                   The Branch Popup.    (line  37)
-* b C:                                   The Branch Popup.    (line  29)
-* b c:                                   The Branch Popup.    (line  55)
-* B g:                                   Bisecting.           (line  36)
-* B k:                                   Bisecting.           (line  41)
-* b k:                                   The Branch Popup.    (line 240)
-* b l:                                   The Branch Popup.    (line  62)
-* b n:                                   The Branch Popup.    (line  45)
-* B r:                                   Bisecting.           (line  47)
-* b r:                                   The Branch Popup.    (line 246)
-* B s:                                   Bisecting.           (line  24)
-* b s:                                   The Branch Popup.    (line  85)
-* b x:                                   The Branch Popup.    (line 224)
-* b Y:                                   The Branch Popup.    (line 113)
-* b y:                                   The Branch Popup.    (line 218)
-* c:                                     Blaming.             (line 120)
-* c <1>:                                 Initiating a Commit. (line   8)
-* c <2>:                                 Editing Rebase Sequences.
-                                                              (line  72)
-* c a:                                   Initiating a Commit. (line  18)
-* c A:                                   Initiating a Commit. (line  66)
-* c c:                                   Initiating a Commit. (line  13)
-* c e:                                   Initiating a Commit. (line  22)
-* c f:                                   Initiating a Commit. (line  42)
-* c F:                                   Initiating a Commit. (line  50)
-* c s:                                   Initiating a Commit. (line  54)
-* c S:                                   Initiating a Commit. (line  62)
-* c w:                                   Initiating a Commit. (line  32)
-* C-<return>:                            Diff Buffer.         (line  48)
-* C-<tab>:                               Section Visibility.  (line  13)
-* C-c C-a:                               Editing Commit Messages.
-                                                              (line 128)
-* C-c C-b:                               Log Buffer.          (line  19)
-* C-c C-b <1>:                           Refreshing Diffs.    (line  90)
-* C-c C-c:                               Popup Buffers and Prefix Commands.
-                                                              (line  20)
-* C-c C-c <1>:                           Select from Log.     (line  20)
-* C-c C-c <2>:                           Editing Commit Messages.
-                                                              (line  19)
-* C-c C-c <3>:                           Editing Rebase Sequences.
-                                                              (line   6)
-* C-c C-d:                               Refreshing Diffs.    (line  80)
-* C-c C-d <1>:                           Editing Commit Messages.
-                                                              (line  57)
-* C-c C-e:                               Diff Buffer.         (line  80)
-* C-c C-f:                               Log Buffer.          (line  23)
-* C-c C-f <1>:                           Refreshing Diffs.    (line  94)
-* C-c C-i:                               Editing Commit Messages.
-                                                              (line 153)
-* C-c C-k:                               Select from Log.     (line  26)
-* C-c C-k <1>:                           Editing Commit Messages.
-                                                              (line  24)
-* C-c C-k <2>:                           Editing Rebase Sequences.
-                                                              (line  11)
-* C-c C-n:                               Log Buffer.          (line  27)
-* C-c C-o:                               Editing Commit Messages.
-                                                              (line 144)
-* C-c C-p:                               Editing Commit Messages.
-                                                              (line 148)
-* C-c C-r:                               Editing Commit Messages.
-                                                              (line 132)
-* C-c C-s:                               Editing Commit Messages.
-                                                              (line 136)
-* C-c C-t:                               Diff Buffer.         (line  70)
-* C-c C-t <1>:                           Editing Commit Messages.
-                                                              (line 140)
-* C-c C-w:                               Editing Commit Messages.
-                                                              (line  63)
-* C-c M-g:                               Minor Mode for Buffers Visiting Files.
-                                                              (line  19)
-* C-c M-g B:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  80)
-* C-c M-g b:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  86)
-* C-c M-g c:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  33)
-* C-c M-g D:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  39)
-* C-c M-g d:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  47)
-* C-c M-g e:                             Minor Mode for Buffers Visiting Files.
-                                                              (line 102)
-* C-c M-g f:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  96)
-* C-c M-g L:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  57)
-* C-c M-g l:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  64)
-* C-c M-g p:                             Minor Mode for Buffers Visiting Files.
-                                                              (line 112)
-* C-c M-g r:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  91)
-* C-c M-g s:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  24)
-* C-c M-g t:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  71)
-* C-c M-g u:                             Minor Mode for Buffers Visiting Files.
-                                                              (line  28)
-* C-c M-s:                               Editing Commit Messages.
-                                                              (line  35)
-* C-w:                                   Common Commands.     (line  21)
-* C-x g:                                 Status Buffer.       (line  22)
-* C-x u:                                 Editing Rebase Sequences.
-                                                              (line  89)
-* d:                                     Diffing.             (line  20)
-* D:                                     Refreshing Diffs.    (line  11)
-* d c:                                   Diffing.             (line  67)
-* d d:                                   Diffing.             (line  25)
-* D f:                                   Refreshing Diffs.    (line  45)
-* D F:                                   Refreshing Diffs.    (line  50)
-* D g:                                   Refreshing Diffs.    (line  16)
-* d p:                                   Diffing.             (line  59)
-* d r:                                   Diffing.             (line  29)
-* D r:                                   Refreshing Diffs.    (line  40)
-* d s:                                   Diffing.             (line  49)
-* D s:                                   Refreshing Diffs.    (line  21)
-* d t:                                   Diffing.             (line  72)
-* D t:                                   Refreshing Diffs.    (line  36)
-* d u:                                   Diffing.             (line  55)
-* d w:                                   Diffing.             (line  43)
-* D w:                                   Refreshing Diffs.    (line  28)
-* DEL:                                   Log Buffer.          (line  43)
-* DEL <1>:                               Diff Buffer.         (line 109)
-* DEL <2>:                               Blaming.             (line  73)
-* DEL <3>:                               Editing Rebase Sequences.
-                                                              (line  28)
-* e:                                     Ediffing.            (line   9)
-* E:                                     Ediffing.            (line  21)
-* e <1>:                                 Editing Rebase Sequences.
-                                                              (line  55)
-* E c:                                   Ediffing.            (line  65)
-* E i:                                   Ediffing.            (line  57)
-* E m:                                   Ediffing.            (line  35)
-* E r:                                   Ediffing.            (line  26)
-* E s:                                   Ediffing.            (line  48)
-* E u:                                   Ediffing.            (line  53)
-* E w:                                   Ediffing.            (line  61)
-* E z:                                   Ediffing.            (line  69)
-* f:                                     Editing Rebase Sequences.
-                                                              (line  63)
-* f <1>:                                 Fetching.            (line  11)
-* F:                                     Pulling.             (line  11)
-* f a:                                   Fetching.            (line  38)
-* f e:                                   Fetching.            (line  24)
-* F e:                                   Pulling.             (line  24)
-* f m:                                   Fetching.            (line  42)
-* f o:                                   Fetching.            (line  28)
-* f p:                                   Fetching.            (line  16)
-* F p:                                   Pulling.             (line  16)
-* f r:                                   Fetching.            (line  33)
-* f u:                                   Fetching.            (line  20)
-* F u:                                   Pulling.             (line  20)
-* g:                                     Automatic Refreshing of Magit Buffers.
-                                                              (line  22)
-* G:                                     Automatic Refreshing of Magit Buffers.
-                                                              (line  31)
-* j:                                     Diff Buffer.         (line  99)
-* k:                                     Viewing Git Output.  (line  24)
-* k <1>:                                 Applying.            (line  40)
-* k <2>:                                 Editing Rebase Sequences.
-                                                              (line  68)
-* k <3>:                                 Stashing.            (line  95)
-* l:                                     Logging.             (line  28)
-* L:                                     Refreshing Logs.     (line  11)
-* L <1>:                                 Log Buffer.          (line   6)
-* L <2>:                                 Log Margin.          (line  47)
-* l a:                                   Logging.             (line  58)
-* l b:                                   Logging.             (line  54)
-* L d:                                   Log Margin.          (line  64)
-* L g:                                   Refreshing Logs.     (line  16)
-* l h:                                   Logging.             (line  46)
-* l H:                                   Reflog.              (line  19)
-* l l:                                   Logging.             (line  33)
-* l L:                                   Logging.             (line  50)
-* L L:                                   Log Margin.          (line  56)
-* L l:                                   Log Margin.          (line  60)
-* l o:                                   Logging.             (line  39)
-* l O:                                   Reflog.              (line  15)
-* l r:                                   Reflog.              (line  11)
-* L s:                                   Refreshing Logs.     (line  21)
-* L t:                                   Refreshing Logs.     (line  36)
-* L w:                                   Refreshing Logs.     (line  28)
-* m:                                     Merging.             (line   9)
-* M:                                     The Remote Popup.    (line  13)
-* m a:                                   Merging.             (line  44)
-* m a <1>:                               Merging.             (line  94)
-* M a:                                   The Remote Popup.    (line  35)
-* M C:                                   The Remote Popup.    (line  26)
-* m e:                                   Merging.             (line  30)
-* m i:                                   Merging.             (line  57)
-* M k:                                   The Remote Popup.    (line  50)
-* m m:                                   Merging.             (line  17)
-* m m <1>:                               Merging.             (line  88)
-* m n:                                   Merging.             (line  37)
-* m p:                                   Merging.             (line  80)
-* M p:                                   The Remote Popup.    (line  54)
-* M P:                                   The Remote Popup.    (line  59)
-* M r:                                   The Remote Popup.    (line  40)
-* m s:                                   Merging.             (line  71)
-* M u:                                   The Remote Popup.    (line  45)
-* M-1:                                   Section Visibility.  (line  33)
-* M-2:                                   Section Visibility.  (line  34)
-* M-3:                                   Section Visibility.  (line  35)
-* M-4:                                   Section Visibility.  (line  36)
-* M-<tab>:                               Section Visibility.  (line  17)
-* M-n:                                   Section Movement.    (line  26)
-* M-n <1>:                               Editing Commit Messages.
-                                                              (line  45)
-* M-n <2>:                               Editing Rebase Sequences.
-                                                              (line  47)
-* M-p:                                   Section Movement.    (line  20)
-* M-p <1>:                               Editing Commit Messages.
-                                                              (line  39)
-* M-p <2>:                               Editing Rebase Sequences.
-                                                              (line  43)
-* M-w:                                   Blaming.             (line 112)
-* M-w <1>:                               Common Commands.     (line  10)
-* M-x magit-clone:                       Repository Setup.    (line  16)
-* M-x magit-debug-git-executable:        Git Executable.      (line  45)
-* M-x magit-debug-git-executable <1>:    Debugging Tools.     (line  30)
-* M-x magit-describe-section-briefly:    Section Types and Values.
-                                                              (line  13)
-* M-x magit-describe-section-briefly <1>: Matching Sections.  (line   6)
-* M-x magit-emacs-Q-command:             Debugging Tools.     (line  16)
-* M-x magit-find-file:                   Visiting Blobs.      (line   6)
-* M-x magit-find-file-other-window:      Visiting Blobs.      (line  11)
-* M-x magit-init:                        Repository Setup.    (line   6)
-* M-x magit-reset-index:                 Staging and Unstaging.
-                                                              (line  87)
-* M-x magit-reverse-in-index:            Staging and Unstaging.
-                                                              (line  62)
-* M-x magit-stage-file:                  Staging from File-Visiting Buffers.
-                                                              (line  10)
-* M-x magit-toggle-buffer-lock:          Modes and Buffers.   (line  17)
-* M-x magit-unstage-file:                Staging from File-Visiting Buffers.
-                                                              (line  18)
-* M-x magit-version:                     Git Executable.      (line  17)
-* M-x magit-version <1>:                 Debugging Tools.     (line  10)
-* M-x magit-wip-commit:                  Wip Modes.           (line  88)
-* M-x with-editor-debug:                 Debugging Tools.     (line  38)
-* n:                                     Section Movement.    (line  16)
-* n <1>:                                 Blaming.             (line  91)
-* N:                                     Blaming.             (line  95)
-* n <2>:                                 Editing Rebase Sequences.
-                                                              (line  39)
-* n <3>:                                 Minor Mode for Buffers Visiting Blobs.
-                                                              (line  16)
-* o:                                     Submodule Popup.     (line   6)
-* O:                                     Subtree.             (line   8)
-* o a:                                   Submodule Popup.     (line  19)
-* O a:                                   Subtree.             (line  20)
-* O c:                                   Subtree.             (line  24)
-* o d:                                   Submodule Popup.     (line  49)
-* o f:                                   Submodule Popup.     (line  57)
-* O f:                                   Subtree.             (line  32)
-* o l:                                   Submodule Popup.     (line  53)
-* O m:                                   Subtree.             (line  28)
-* o p:                                   Submodule Popup.     (line  33)
-* O p:                                   Subtree.             (line  36)
-* o r:                                   Submodule Popup.     (line  26)
-* o s:                                   Submodule Popup.     (line  43)
-* O s:                                   Subtree.             (line  41)
-* o u:                                   Submodule Popup.     (line  38)
-* p:                                     Section Movement.    (line  10)
-* p <1>:                                 Blaming.             (line  99)
-* P:                                     Blaming.             (line 103)
-* p <2>:                                 Editing Rebase Sequences.
-                                                              (line  35)
-* P <1>:                                 Pushing.             (line  11)
-* p <3>:                                 Minor Mode for Buffers Visiting Blobs.
-                                                              (line  12)
-* P e:                                   Pushing.             (line  35)
-* P m:                                   Pushing.             (line  53)
-* P o:                                   Pushing.             (line  39)
-* P p:                                   Pushing.             (line  16)
-* P r:                                   Pushing.             (line  44)
-* P t:                                   Pushing.             (line  59)
-* P T:                                   Pushing.             (line  65)
-* P u:                                   Pushing.             (line  26)
-* q:                                     Quitting Windows.    (line   6)
-* q <1>:                                 Log Buffer.          (line  12)
-* q <2>:                                 Blaming.             (line 107)
-* q <3>:                                 Minor Mode for Buffers Visiting Blobs.
-                                                              (line  20)
-* r:                                     Rebasing.            (line   9)
-* r <1>:                                 Editing Rebase Sequences.
-                                                              (line  51)
-* r a:                                   Rebasing.            (line 107)
-* r e:                                   Rebasing.            (line  33)
-* r e <1>:                               Rebasing.            (line 103)
-* r f:                                   Rebasing.            (line  73)
-* r i:                                   Rebasing.            (line  69)
-* r k:                                   Rebasing.            (line  85)
-* r m:                                   Rebasing.            (line  77)
-* r p:                                   Rebasing.            (line  24)
-* r r:                                   Rebasing.            (line  92)
-* r s:                                   Rebasing.            (line  39)
-* r s <1>:                               Rebasing.            (line  99)
-* r u:                                   Rebasing.            (line  29)
-* r w:                                   Rebasing.            (line  81)
-* RET:                                   Diff Buffer.         (line   8)
-* RET <1>:                               References Buffer.   (line 166)
-* RET <2>:                               Blaming.             (line  59)
-* RET <3>:                               Editing Rebase Sequences.
-                                                              (line  16)
-* s:                                     Staging and Unstaging.
-                                                              (line  28)
-* S:                                     Staging and Unstaging.
-                                                              (line  36)
-* s <1>:                                 Editing Rebase Sequences.
-                                                              (line  59)
-* S-<tab>:                               Section Visibility.  (line  22)
-* SPC:                                   Log Buffer.          (line  33)
-* SPC <1>:                               Diff Buffer.         (line 105)
-* SPC <2>:                               Blaming.             (line  63)
-* SPC <3>:                               Editing Rebase Sequences.
-                                                              (line  21)
-* t:                                     Tagging.             (line   8)
-* T:                                     Notes.               (line   8)
-* T a:                                   Notes.               (line  51)
-* T c:                                   Notes.               (line  46)
-* t k:                                   Tagging.             (line  18)
-* T m:                                   Notes.               (line  37)
-* t p:                                   Tagging.             (line  24)
-* T p:                                   Notes.               (line  29)
-* T r:                                   Notes.               (line  21)
-* t t:                                   Tagging.             (line  13)
-* T T:                                   Notes.               (line  13)
-* TAB:                                   Section Visibility.  (line   9)
-* u:                                     Staging and Unstaging.
-                                                              (line  43)
-* U:                                     Staging and Unstaging.
-                                                              (line  52)
-* v:                                     Applying.            (line  44)
-* V:                                     Reverting.           (line   6)
-* V A:                                   Reverting.           (line  30)
-* V a:                                   Reverting.           (line  38)
-* V s:                                   Reverting.           (line  34)
-* V V:                                   Reverting.           (line  14)
-* V v:                                   Reverting.           (line  20)
-* W:                                     Creating and Sending Patches.
-                                                              (line   6)
-* w:                                     Applying Patches.    (line   8)
-* w a:                                   Applying Patches.    (line  34)
-* w a <1>:                               Applying Patches.    (line  42)
-* w a a:                                 Applying Patches.    (line  47)
-* w m:                                   Applying Patches.    (line  19)
-* W p:                                   Creating and Sending Patches.
-                                                              (line  11)
-* W r:                                   Creating and Sending Patches.
-                                                              (line  17)
-* w s:                                   Applying Patches.    (line  30)
-* w w:                                   Applying Patches.    (line  13)
-* w w <1>:                               Applying Patches.    (line  26)
-* x:                                     Editing Rebase Sequences.
-                                                              (line  76)
-* x <1>:                                 Resetting.           (line   8)
-* X f:                                   Resetting.           (line  44)
-* X h:                                   Resetting.           (line  26)
-* X i:                                   Resetting.           (line  31)
-* X m:                                   Resetting.           (line  15)
-* X s:                                   Resetting.           (line  20)
-* X w:                                   Resetting.           (line  38)
-* X w <1>:                               Wip Modes.           (line  66)
-* Y:                                     Cherries.            (line  17)
-* y:                                     References Buffer.   (line   6)
-* y <1>:                                 Editing Rebase Sequences.
-                                                              (line  85)
-* y c:                                   References Buffer.   (line  19)
-* y o:                                   References Buffer.   (line  24)
-* y y:                                   References Buffer.   (line  14)
-* z:                                     Stashing.            (line   8)
-* z a:                                   Stashing.            (line  58)
-* z b:                                   Stashing.            (line  80)
-* z B:                                   Stashing.            (line  85)
-* z f:                                   Stashing.            (line  91)
-* z i:                                   Stashing.            (line  20)
-* z I:                                   Stashing.            (line  46)
-* z k:                                   Stashing.            (line  71)
-* z l:                                   Stashing.            (line  99)
-* z p:                                   Stashing.            (line  64)
-* z v:                                   Stashing.            (line  76)
-* z w:                                   Stashing.            (line  25)
-* z W:                                   Stashing.            (line  51)
-* z x:                                   Stashing.            (line  32)
-* z z:                                   Stashing.            (line  13)
-* z Z:                                   Stashing.            (line  39)
-
-
-File: magit.info,  Node: Command Index,  Next: Function Index,  Prev: Keystroke Index,  Up: Top
-
-Appendix D Command Index
-************************
-
-�[index�]
-* Menu:
-
-* auto-revert-mode:                      Automatic Reverting of File-Visiting Buffers.
-                                                              (line  62)
-* forward-line:                          Editing Rebase Sequences.
-                                                              (line  39)
-* git-commit-ack:                        Editing Commit Messages.
-                                                              (line 128)
-* git-commit-cc:                         Editing Commit Messages.
-                                                              (line 144)
-* git-commit-next-message:               Editing Commit Messages.
-                                                              (line  45)
-* git-commit-prev-message:               Editing Commit Messages.
-                                                              (line  39)
-* git-commit-reported:                   Editing Commit Messages.
-                                                              (line 148)
-* git-commit-review:                     Editing Commit Messages.
-                                                              (line 132)
-* git-commit-save-message:               Editing Commit Messages.
-                                                              (line  35)
-* git-commit-signoff:                    Editing Commit Messages.
-                                                              (line 136)
-* git-commit-suggested:                  Editing Commit Messages.
-                                                              (line 153)
-* git-commit-test:                       Editing Commit Messages.
-                                                              (line 140)
-* git-rebase-backward-line:              Editing Rebase Sequences.
-                                                              (line  35)
-* git-rebase-edit:                       Editing Rebase Sequences.
-                                                              (line  55)
-* git-rebase-exec:                       Editing Rebase Sequences.
-                                                              (line  76)
-* git-rebase-fixup:                      Editing Rebase Sequences.
-                                                              (line  63)
-* git-rebase-insert:                     Editing Rebase Sequences.
-                                                              (line  85)
-* git-rebase-kill-line:                  Editing Rebase Sequences.
-                                                              (line  68)
-* git-rebase-move-line-down:             Editing Rebase Sequences.
-                                                              (line  47)
-* git-rebase-move-line-up:               Editing Rebase Sequences.
-                                                              (line  43)
-* git-rebase-pick:                       Editing Rebase Sequences.
-                                                              (line  72)
-* git-rebase-reword:                     Editing Rebase Sequences.
-                                                              (line  51)
-* git-rebase-show-commit:                Editing Rebase Sequences.
-                                                              (line  16)
-* git-rebase-show-or-scroll-down:        Editing Rebase Sequences.
-                                                              (line  28)
-* git-rebase-show-or-scroll-up:          Editing Rebase Sequences.
-                                                              (line  21)
-* git-rebase-squash:                     Editing Rebase Sequences.
-                                                              (line  59)
-* git-rebase-undo:                       Editing Rebase Sequences.
-                                                              (line  89)
-* ido-enter-magit-status:                Status Buffer.       (line  47)
-* magit-am-abort:                        Applying Patches.    (line  34)
-* magit-am-apply-maildir:                Applying Patches.    (line  19)
-* magit-am-apply-patches:                Applying Patches.    (line  13)
-* magit-am-continue:                     Applying Patches.    (line  26)
-* magit-am-popup:                        Applying Patches.    (line   8)
-* magit-am-skip:                         Applying Patches.    (line  30)
-* magit-apply:                           Applying.            (line  33)
-* magit-bisect-bad:                      Bisecting.           (line  31)
-* magit-bisect-good:                     Bisecting.           (line  36)
-* magit-bisect-popup:                    Bisecting.           (line   8)
-* magit-bisect-reset:                    Bisecting.           (line  47)
-* magit-bisect-run:                      Bisecting.           (line  24)
-* magit-bisect-skip:                     Bisecting.           (line  41)
-* magit-bisect-start:                    Bisecting.           (line  16)
-* magit-blame-addition:                  Blaming.             (line  17)
-* magit-blame-addition <1>:              Minor Mode for Buffers Visiting Files.
-                                                              (line  86)
-* magit-blame-copy-hash:                 Blaming.             (line 112)
-* magit-blame-cycle-style:               Blaming.             (line 120)
-* magit-blame-echo:                      Blaming.             (line  32)
-* magit-blame-next-chunk:                Blaming.             (line  91)
-* magit-blame-next-chunk-same-commit:    Blaming.             (line  95)
-* magit-blame-popup:                     Blaming.             (line  86)
-* magit-blame-popup <1>:                 Minor Mode for Buffers Visiting Files.
-                                                              (line  80)
-* magit-blame-previous-chunk:            Blaming.             (line  99)
-* magit-blame-previous-chunk-same-commit: Blaming.            (line 103)
-* magit-blame-quit:                      Blaming.             (line 107)
-* magit-blame-removal:                   Blaming.             (line  38)
-* magit-blame-removal <1>:               Minor Mode for Buffers Visiting Files.
-                                                              (line  91)
-* magit-blame-reverse:                   Blaming.             (line  46)
-* magit-blame-reverse <1>:               Minor Mode for Buffers Visiting Files.
-                                                              (line  96)
-* magit-blob-next:                       Minor Mode for Buffers Visiting Blobs.
-                                                              (line  16)
-* magit-blob-previous:                   Minor Mode for Buffers Visiting Files.
-                                                              (line 112)
-* magit-blob-previous <1>:               Minor Mode for Buffers Visiting Blobs.
-                                                              (line  12)
-* magit-branch-and-checkout:             The Branch Popup.    (line  55)
-* magit-branch-checkout:                 The Branch Popup.    (line  62)
-* magit-branch-config-popup:             The Branch Popup.    (line  29)
-* magit-branch-config-popup <1>:         The Branch Config Popup.
-                                                              (line   6)
-* magit-branch-create:                   The Branch Popup.    (line  45)
-* magit-branch-delete:                   The Branch Popup.    (line 240)
-* magit-branch-or-checkout:              The Branch Popup.    (line 350)
-* magit-branch-orphan:                   The Branch Popup.    (line 345)
-* magit-branch-popup:                    The Branch Popup.    (line  12)
-* magit-branch-pull-request:             The Branch Popup.    (line 113)
-* magit-branch-rename:                   The Branch Popup.    (line 246)
-* magit-branch-reset:                    The Branch Popup.    (line 224)
-* magit-branch-shelve:                   Auxiliary Branch Commands.
-                                                              (line   8)
-* magit-branch-spinoff:                  The Branch Popup.    (line  85)
-* magit-branch-unshelve:                 Auxiliary Branch Commands.
-                                                              (line  19)
-* magit-checkout:                        The Branch Popup.    (line  37)
-* magit-checkout-pull-request:           The Branch Popup.    (line 218)
-* magit-cherry:                          Cherries.            (line  17)
-* magit-cherry-apply:                    Cherry Picking.      (line  23)
-* magit-cherry-copy:                     Cherry Picking.      (line  16)
-* magit-cherry-donate:                   Cherry Picking.      (line  53)
-* magit-cherry-harvest:                  Cherry Picking.      (line  41)
-* magit-cherry-pick-popup:               Cherry Picking.      (line   8)
-* magit-cherry-spinoff:                  Cherry Picking.      (line  75)
-* magit-cherry-spinout:                  Cherry Picking.      (line  64)
-* magit-clone:                           Repository Setup.    (line  16)
-* magit-commit-amend:                    Initiating a Commit. (line  18)
-* magit-commit-augment:                  Initiating a Commit. (line  66)
-* magit-commit-create:                   Initiating a Commit. (line  13)
-* magit-commit-extend:                   Initiating a Commit. (line  22)
-* magit-commit-fixup:                    Initiating a Commit. (line  42)
-* magit-commit-instant-fixup:            Initiating a Commit. (line  50)
-* magit-commit-instant-squash:           Initiating a Commit. (line  62)
-* magit-commit-popup:                    Initiating a Commit. (line   8)
-* magit-commit-popup <1>:                Minor Mode for Buffers Visiting Files.
-                                                              (line  33)
-* magit-commit-reword:                   Initiating a Commit. (line  32)
-* magit-commit-squash:                   Initiating a Commit. (line  54)
-* magit-copy-buffer-revision:            Common Commands.     (line  21)
-* magit-copy-section-value:              Common Commands.     (line  10)
-* magit-cycle-margin-style:              Log Margin.          (line  60)
-* magit-debug-git-executable:            Git Executable.      (line  45)
-* magit-debug-git-executable <1>:        Debugging Tools.     (line  30)
-* magit-describe-section-briefly:        Section Types and Values.
-                                                              (line  13)
-* magit-describe-section-briefly <1>:    Matching Sections.   (line   6)
-* magit-diff-buffer-file:                Minor Mode for Buffers Visiting Files.
-                                                              (line  47)
-* magit-diff-buffer-file-popup:          Minor Mode for Buffers Visiting Files.
-                                                              (line  39)
-* magit-diff-default-context:            Refreshing Diffs.    (line  72)
-* magit-diff-dwim:                       Diffing.             (line  25)
-* magit-diff-edit-hunk-commit:           Diff Buffer.         (line  80)
-* magit-diff-flip-revs:                  Refreshing Diffs.    (line  45)
-* magit-diff-less-context:               Refreshing Diffs.    (line  64)
-* magit-diff-more-context:               Refreshing Diffs.    (line  68)
-* magit-diff-paths:                      Diffing.             (line  59)
-* magit-diff-popup:                      Diffing.             (line  20)
-* magit-diff-range:                      Diffing.             (line  29)
-* magit-diff-refresh:                    Refreshing Diffs.    (line  16)
-* magit-diff-refresh-popup:              Refreshing Diffs.    (line  11)
-* magit-diff-save-default-arguments:     Refreshing Diffs.    (line  28)
-* magit-diff-set-default-arguments:      Refreshing Diffs.    (line  21)
-* magit-diff-show-or-scroll-down:        Log Buffer.          (line  43)
-* magit-diff-show-or-scroll-down <1>:    Blaming.             (line  73)
-* magit-diff-show-or-scroll-up:          Log Buffer.          (line  33)
-* magit-diff-show-or-scroll-up <1>:      Blaming.             (line  63)
-* magit-diff-staged:                     Diffing.             (line  49)
-* magit-diff-switch-range-type:          Refreshing Diffs.    (line  40)
-* magit-diff-toggle-file-filter:         Refreshing Diffs.    (line  50)
-* magit-diff-toggle-refine-hunk:         Refreshing Diffs.    (line  36)
-* magit-diff-trace-definition:           Diff Buffer.         (line  70)
-* magit-diff-unstaged:                   Diffing.             (line  55)
-* magit-diff-visit-file:                 Diff Buffer.         (line   8)
-* magit-diff-visit-file-other-window:    Diff Buffer.         (line  65)
-* magit-diff-visit-file-worktree:        Diff Buffer.         (line  48)
-* magit-diff-while-committing:           Refreshing Diffs.    (line  80)
-* magit-diff-while-committing <1>:       Editing Commit Messages.
-                                                              (line  57)
-* magit-diff-working-tree:               Diffing.             (line  43)
-* magit-discard:                         Applying.            (line  40)
-* magit-dispatch-popup:                  Popup Buffers and Prefix Commands.
-                                                              (line  20)
-* magit-ediff-compare:                   Ediffing.            (line  26)
-* magit-ediff-dwim:                      Ediffing.            (line   9)
-* magit-ediff-popup:                     Ediffing.            (line  21)
-* magit-ediff-resolve:                   Ediffing.            (line  35)
-* magit-ediff-show-commit:               Ediffing.            (line  65)
-* magit-ediff-show-staged:               Ediffing.            (line  57)
-* magit-ediff-show-stash:                Ediffing.            (line  69)
-* magit-ediff-show-unstaged:             Ediffing.            (line  53)
-* magit-ediff-show-working-tree:         Ediffing.            (line  61)
-* magit-ediff-stage:                     Ediffing.            (line  48)
-* magit-edit-line-commit:                Minor Mode for Buffers Visiting Files.
-                                                              (line 102)
-* magit-emacs-Q-command:                 Debugging Tools.     (line  16)
-* magit-fetch-all:                       Fetching.            (line  38)
-* magit-fetch-branch:                    Fetching.            (line  28)
-* magit-fetch-from-pushremote:           Fetching.            (line  16)
-* magit-fetch-from-upstream:             Fetching.            (line  20)
-* magit-fetch-modules:                   Submodule Popup.     (line  57)
-* magit-fetch-other:                     Fetching.            (line  24)
-* magit-fetch-popup:                     Fetching.            (line  11)
-* magit-fetch-refspec:                   Fetching.            (line  33)
-* magit-file-checkout:                   Resetting.           (line  44)
-* magit-file-checkout <1>:               Minor Mode for Buffers Visiting Files.
-                                                              (line 131)
-* magit-file-delete:                     Minor Mode for Buffers Visiting Files.
-                                                              (line 123)
-* magit-file-popup:                      Minor Mode for Buffers Visiting Files.
-                                                              (line  19)
-* magit-file-rename:                     Minor Mode for Buffers Visiting Files.
-                                                              (line 119)
-* magit-file-untrack:                    Minor Mode for Buffers Visiting Files.
-                                                              (line 127)
-* magit-find-file:                       Visiting Blobs.      (line   6)
-* magit-find-file-other-window:          Visiting Blobs.      (line  11)
-* magit-format-patch:                    Creating and Sending Patches.
-                                                              (line  11)
-* magit-git-command:                     Running Git Manually.
-                                                              (line  24)
-* magit-git-command-topdir:              Running Git Manually.
-                                                              (line  16)
-* magit-go-backward:                     Log Buffer.          (line  19)
-* magit-go-backward <1>:                 Refreshing Diffs.    (line  90)
-* magit-go-forward:                      Log Buffer.          (line  23)
-* magit-go-forward <1>:                  Refreshing Diffs.    (line  94)
-* magit-init:                            Repository Setup.    (line   6)
-* magit-jump-to-diffstat-or-diff:        Diff Buffer.         (line  99)
-* magit-kill-this-buffer:                Minor Mode for Buffers Visiting Blobs.
-                                                              (line  20)
-* magit-list-repositories:               Repository List.     (line   6)
-* magit-list-submodules:                 Listing Submodules.  (line  13)
-* magit-list-submodules <1>:             Submodule Popup.     (line  53)
-* magit-log-all:                         Logging.             (line  58)
-* magit-log-all-branches:                Logging.             (line  54)
-* magit-log-branches:                    Logging.             (line  50)
-* magit-log-buffer-file:                 Minor Mode for Buffers Visiting Files.
-                                                              (line  64)
-* magit-log-buffer-file-popup:           Minor Mode for Buffers Visiting Files.
-                                                              (line  57)
-* magit-log-bury-buffer:                 Log Buffer.          (line  12)
-* magit-log-current:                     Logging.             (line  33)
-* magit-log-double-commit-limit:         Log Buffer.          (line  59)
-* magit-log-half-commit-limit:           Log Buffer.          (line  63)
-* magit-log-head:                        Logging.             (line  46)
-* magit-log-move-to-parent:              Log Buffer.          (line  27)
-* magit-log-other:                       Logging.             (line  39)
-* magit-log-popup:                       Logging.             (line  28)
-* magit-log-refresh:                     Refreshing Logs.     (line  16)
-* magit-log-refresh-popup:               Refreshing Logs.     (line  11)
-* magit-log-refresh-popup <1>:           Log Buffer.          (line   6)
-* magit-log-save-default-arguments:      Refreshing Logs.     (line  28)
-* magit-log-select-pick:                 Select from Log.     (line  20)
-* magit-log-select-quit:                 Select from Log.     (line  26)
-* magit-log-set-default-arguments:       Refreshing Logs.     (line  21)
-* magit-log-toggle-commit-limit:         Log Buffer.          (line  53)
-* magit-log-trace-definition:            Minor Mode for Buffers Visiting Files.
-                                                              (line  71)
-* magit-margin-popup:                    Log Margin.          (line  47)
-* magit-merge:                           Merging.             (line  88)
-* magit-merge-abort:                     Merging.             (line  94)
-* magit-merge-absorb:                    Merging.             (line  44)
-* magit-merge-editmsg:                   Merging.             (line  30)
-* magit-merge-into:                      Merging.             (line  57)
-* magit-merge-nocommit:                  Merging.             (line  37)
-* magit-merge-plain:                     Merging.             (line  17)
-* magit-merge-popup:                     Merging.             (line   9)
-* magit-merge-preview:                   Merging.             (line  80)
-* magit-merge-squash:                    Merging.             (line  71)
-* magit-mode-bury-buffer:                Quitting Windows.    (line   6)
-* magit-notes-edit:                      Notes.               (line  13)
-* magit-notes-merge:                     Notes.               (line  37)
-* magit-notes-merge-abort:               Notes.               (line  51)
-* magit-notes-merge-commit:              Notes.               (line  46)
-* magit-notes-popup:                     Notes.               (line   8)
-* magit-notes-prune:                     Notes.               (line  29)
-* magit-notes-remove:                    Notes.               (line  21)
-* magit-patch-apply:                     Applying Patches.    (line  47)
-* magit-patch-apply-popup:               Applying Patches.    (line  42)
-* magit-patch-popup:                     Creating and Sending Patches.
-                                                              (line   6)
-* magit-pop-revision-stack:              Editing Commit Messages.
-                                                              (line  63)
-* magit-process:                         Viewing Git Output.  (line  16)
-* magit-process-kill:                    Viewing Git Output.  (line  24)
-* magit-pull-branch:                     Pulling.             (line  24)
-* magit-pull-from-pushremote:            Pulling.             (line  16)
-* magit-pull-from-upstream:              Pulling.             (line  20)
-* magit-pull-popup:                      Pulling.             (line  11)
-* magit-push-current:                    Pushing.             (line  35)
-* magit-push-current-to-pushremote:      Pushing.             (line  16)
-* magit-push-current-to-upstream:        Pushing.             (line  26)
-* magit-push-implicitly args:            Pushing.             (line  73)
-* magit-push-matching:                   Pushing.             (line  53)
-* magit-push-other:                      Pushing.             (line  39)
-* magit-push-popup:                      Pushing.             (line  11)
-* magit-push-refspecs:                   Pushing.             (line  44)
-* magit-push-tag:                        Pushing.             (line  65)
-* magit-push-tags:                       Pushing.             (line  59)
-* magit-push-to-remote remote args:      Pushing.             (line  84)
-* magit-rebase-abort:                    Rebasing.            (line 107)
-* magit-rebase-autosquash:               Rebasing.            (line  73)
-* magit-rebase-branch:                   Rebasing.            (line  33)
-* magit-rebase-continue:                 Rebasing.            (line  92)
-* magit-rebase-edit:                     Rebasing.            (line 103)
-* magit-rebase-edit-commit:              Rebasing.            (line  77)
-* magit-rebase-interactive:              Rebasing.            (line  69)
-* magit-rebase-onto-pushremote:          Rebasing.            (line  24)
-* magit-rebase-onto-upstream:            Rebasing.            (line  29)
-* magit-rebase-popup:                    Rebasing.            (line   9)
-* magit-rebase-remove-commit:            Rebasing.            (line  85)
-* magit-rebase-reword-commit:            Rebasing.            (line  81)
-* magit-rebase-skip:                     Rebasing.            (line  99)
-* magit-rebase-subset:                   Rebasing.            (line  39)
-* magit-reflog-current:                  Reflog.              (line  11)
-* magit-reflog-head:                     Reflog.              (line  19)
-* magit-reflog-other:                    Reflog.              (line  15)
-* magit-refresh:                         Automatic Refreshing of Magit Buffers.
-                                                              (line  22)
-* magit-refresh-all:                     Automatic Refreshing of Magit Buffers.
-                                                              (line  31)
-* magit-remote-add:                      The Remote Popup.    (line  35)
-* magit-remote-config-popup:             The Remote Popup.    (line  26)
-* magit-remote-config-popup <1>:         The Remote Config Popup.
-                                                              (line   6)
-* magit-remote-popup:                    The Remote Popup.    (line  13)
-* magit-remote-prune:                    The Remote Popup.    (line  54)
-* magit-remote-prune-refspecs:           The Remote Popup.    (line  59)
-* magit-remote-remove:                   The Remote Popup.    (line  50)
-* magit-remote-rename:                   The Remote Popup.    (line  40)
-* magit-remote-set-url:                  The Remote Popup.    (line  45)
-* magit-request-pull:                    Creating and Sending Patches.
-                                                              (line  17)
-* magit-reset-hard:                      Resetting.           (line  26)
-* magit-reset-index:                     Staging and Unstaging.
-                                                              (line  87)
-* magit-reset-index <1>:                 Resetting.           (line  31)
-* magit-reset-mixed:                     Resetting.           (line  15)
-* magit-reset-quickly:                   Resetting.           (line   8)
-* magit-reset-soft:                      Resetting.           (line  20)
-* magit-reset-worktree:                  Resetting.           (line  38)
-* magit-reset-worktree <1>:              Wip Modes.           (line  66)
-* magit-reverse:                         Applying.            (line  44)
-* magit-reverse-in-index:                Staging and Unstaging.
-                                                              (line  62)
-* magit-revert-and-commit:               Reverting.           (line  14)
-* magit-revert-no-commit:                Reverting.           (line  20)
-* magit-revert-popup:                    Reverting.           (line   6)
-* magit-run-git-gui:                     Running Git Manually.
-                                                              (line  65)
-* magit-run-gitk:                        Running Git Manually.
-                                                              (line  53)
-* magit-run-gitk-all:                    Running Git Manually.
-                                                              (line  57)
-* magit-run-gitk-branches:               Running Git Manually.
-                                                              (line  61)
-* magit-run-popup:                       Running Git Manually.
-                                                              (line  12)
-* magit-section-backward:                Section Movement.    (line  10)
-* magit-section-backward-siblings:       Section Movement.    (line  20)
-* magit-section-cycle:                   Section Visibility.  (line  13)
-* magit-section-cycle-diffs:             Section Visibility.  (line  17)
-* magit-section-cycle-global:            Section Visibility.  (line  22)
-* magit-section-forward:                 Section Movement.    (line  16)
-* magit-section-forward-siblings:        Section Movement.    (line  26)
-* magit-section-hide:                    Section Visibility.  (line  49)
-* magit-section-hide-children:           Section Visibility.  (line  64)
-* magit-section-show:                    Section Visibility.  (line  45)
-* magit-section-show-children:           Section Visibility.  (line  58)
-* magit-section-show-headings:           Section Visibility.  (line  53)
-* magit-section-show-level-1:            Section Visibility.  (line  26)
-* magit-section-show-level-1-all:        Section Visibility.  (line  33)
-* magit-section-show-level-2:            Section Visibility.  (line  27)
-* magit-section-show-level-2-all:        Section Visibility.  (line  34)
-* magit-section-show-level-3:            Section Visibility.  (line  28)
-* magit-section-show-level-3-all:        Section Visibility.  (line  35)
-* magit-section-show-level-4:            Section Visibility.  (line  29)
-* magit-section-show-level-4-all:        Section Visibility.  (line  36)
-* magit-section-toggle:                  Section Visibility.  (line   9)
-* magit-section-toggle-children:         Section Visibility.  (line  68)
-* magit-section-up:                      Section Movement.    (line  31)
-* magit-sequence-abort:                  Cherry Picking.      (line  97)
-* magit-sequence-abort <1>:              Reverting.           (line  38)
-* magit-sequence-continue:               Cherry Picking.      (line  89)
-* magit-sequence-continue <1>:           Reverting.           (line  30)
-* magit-sequence-skip:                   Cherry Picking.      (line  93)
-* magit-sequence-skip <1>:               Reverting.           (line  34)
-* magit-shell-command:                   Running Git Manually.
-                                                              (line  39)
-* magit-shell-command-topdir:            Running Git Manually.
-                                                              (line  34)
-* magit-show-commit:                     Diffing.             (line  67)
-* magit-show-commit <1>:                 Blaming.             (line  59)
-* magit-show-refs:                       References Buffer.   (line  24)
-* magit-show-refs-current:               References Buffer.   (line  19)
-* magit-show-refs-head:                  References Buffer.   (line  14)
-* magit-show-refs-popup:                 References Buffer.   (line   6)
-* magit-snapshot-both:                   Stashing.            (line  39)
-* magit-snapshot-index:                  Stashing.            (line  46)
-* magit-snapshot-worktree:               Stashing.            (line  51)
-* magit-stage:                           Staging and Unstaging.
-                                                              (line  28)
-* magit-stage-file:                      Staging from File-Visiting Buffers.
-                                                              (line  10)
-* magit-stage-file <1>:                  Minor Mode for Buffers Visiting Files.
-                                                              (line  24)
-* magit-stage-modified:                  Staging and Unstaging.
-                                                              (line  36)
-* magit-stash-apply:                     Stashing.            (line  58)
-* magit-stash-both:                      Stashing.            (line  13)
-* magit-stash-branch:                    Stashing.            (line  80)
-* magit-stash-branch-here:               Stashing.            (line  85)
-* magit-stash-clear:                     Stashing.            (line  95)
-* magit-stash-drop:                      Stashing.            (line  71)
-* magit-stash-format-patch:              Stashing.            (line  91)
-* magit-stash-index:                     Stashing.            (line  20)
-* magit-stash-keep-index:                Stashing.            (line  32)
-* magit-stash-list:                      Stashing.            (line  99)
-* magit-stash-pop:                       Stashing.            (line  64)
-* magit-stash-popup:                     Stashing.            (line   8)
-* magit-stash-show:                      Diffing.             (line  72)
-* magit-stash-show <1>:                  Stashing.            (line  76)
-* magit-stash-worktree:                  Stashing.            (line  25)
-* magit-status:                          Status Buffer.       (line  22)
-* magit-submodule-add:                   Submodule Popup.     (line  19)
-* magit-submodule-fetch:                 Fetching.            (line  42)
-* magit-submodule-populate:              Submodule Popup.     (line  33)
-* magit-submodule-popup:                 Submodule Popup.     (line   6)
-* magit-submodule-register:              Submodule Popup.     (line  26)
-* magit-submodule-synchronize:           Submodule Popup.     (line  43)
-* magit-submodule-unpopulate:            Submodule Popup.     (line  49)
-* magit-submodule-update:                Submodule Popup.     (line  38)
-* magit-subtree-add:                     Subtree.             (line  20)
-* magit-subtree-add-commit:              Subtree.             (line  24)
-* magit-subtree-merge:                   Subtree.             (line  28)
-* magit-subtree-pull:                    Subtree.             (line  32)
-* magit-subtree-push:                    Subtree.             (line  36)
-* magit-subtree-split:                   Subtree.             (line  41)
-* magit-tag-create:                      Tagging.             (line  13)
-* magit-tag-delete:                      Tagging.             (line  18)
-* magit-tag-popup:                       Tagging.             (line   8)
-* magit-tag-prune:                       Tagging.             (line  24)
-* magit-tag-release:                     Tagging.             (line  28)
-* magit-toggle-buffer-lock:              Modes and Buffers.   (line  17)
-* magit-toggle-margin:                   Refreshing Logs.     (line  36)
-* magit-toggle-margin <1>:               Log Margin.          (line  56)
-* magit-toggle-margin-details:           Log Margin.          (line  64)
-* magit-tree-popup:                      Subtree.             (line   8)
-* magit-unstage:                         Staging and Unstaging.
-                                                              (line  43)
-* magit-unstage-all:                     Staging and Unstaging.
-                                                              (line  52)
-* magit-unstage-file:                    Staging from File-Visiting Buffers.
-                                                              (line  18)
-* magit-unstage-file <1>:                Minor Mode for Buffers Visiting Files.
-                                                              (line  28)
-* magit-version:                         Git Executable.      (line  17)
-* magit-version <1>:                     Debugging Tools.     (line  10)
-* magit-visit-ref:                       References Buffer.   (line 166)
-* magit-wip-commit:                      Wip Modes.           (line  88)
-* magit-wip-log:                         Wip Modes.           (line  48)
-* magit-wip-log-current:                 Wip Modes.           (line  57)
-* magit-worktree-branch:                 Worktree.            (line  17)
-* magit-worktree-checkout:               Worktree.            (line  13)
-* magit-worktree-checkout-pull-request:  Worktree.            (line  21)
-* magit-worktree-delete:                 Worktree.            (line  28)
-* magit-worktree-popup:                  Worktree.            (line   8)
-* magit-worktree-status:                 Worktree.            (line  33)
-* scroll-down:                           Diff Buffer.         (line 109)
-* scroll-up:                             Diff Buffer.         (line 105)
-* with-editor-cancel:                    Editing Commit Messages.
-                                                              (line  24)
-* with-editor-cancel <1>:                Editing Rebase Sequences.
-                                                              (line  11)
-* with-editor-debug:                     Debugging Tools.     (line  38)
-* with-editor-finish:                    Editing Commit Messages.
-                                                              (line  19)
-* with-editor-finish <1>:                Editing Rebase Sequences.
-                                                              (line   6)
-
-
-File: magit.info,  Node: Function Index,  Next: Variable Index,  Prev: Command Index,  Up: Top
-
-Appendix E Function Index
-*************************
-
-�[index�]
-* Menu:
-
-* auto-revert-mode:                      Automatic Reverting of File-Visiting Buffers.
-                                                              (line  62)
-* git-commit-check-style-conventions:    Editing Commit Messages.
-                                                              (line 247)
-* git-commit-propertize-diff:            Editing Commit Messages.
-                                                              (line 206)
-* git-commit-save-message:               Editing Commit Messages.
-                                                              (line 187)
-* git-commit-setup-changelog-support:    Editing Commit Messages.
-                                                              (line 191)
-* git-commit-turn-on-auto-fill:          Editing Commit Messages.
-                                                              (line 196)
-* git-commit-turn-on-flyspell:           Editing Commit Messages.
-                                                              (line 201)
-* ido-enter-magit-status:                Status Buffer.       (line  47)
-* magit-add-section-hook:                Section Hooks.       (line  20)
-* magit-after-save-refresh-status:       Automatic Refreshing of Magit Buffers.
-                                                              (line  56)
-* magit-blame-addition:                  Blaming.             (line  17)
-* magit-blame-echo:                      Blaming.             (line  32)
-* magit-blame-removal:                   Blaming.             (line  38)
-* magit-blame-reverse:                   Blaming.             (line  46)
-* magit-branch-config-popup:             The Branch Config Popup.
-                                                              (line   6)
-* magit-branch-or-checkout:              The Branch Popup.    (line 350)
-* magit-branch-orphan:                   The Branch Popup.    (line 345)
-* magit-branch-shelve:                   Auxiliary Branch Commands.
-                                                              (line   8)
-* magit-branch-unshelve:                 Auxiliary Branch Commands.
-                                                              (line  19)
-* magit-builtin-completing-read:         Support for Completion Frameworks.
-                                                              (line  42)
-* magit-call-git:                        Calling Git for Effect.
-                                                              (line  28)
-* magit-call-process:                    Calling Git for Effect.
-                                                              (line  32)
-* magit-cancel-section:                  Creating Sections.   (line  71)
-* magit-completing-read:                 Support for Completion Frameworks.
-                                                              (line  60)
-* magit-current-section:                 Section Selection.   (line   6)
-* magit-define-section-jumper:           Creating Sections.   (line  77)
-* magit-diff-scope:                      Matching Sections.   (line 118)
-* magit-diff-type:                       Matching Sections.   (line  95)
-* magit-diff-visit-file-other-window:    Diff Buffer.         (line  65)
-* magit-display-buffer:                  Switching Buffers.   (line   6)
-* magit-display-buffer-fullcolumn-most-v1: Switching Buffers. (line  72)
-* magit-display-buffer-fullframe-status-topleft-v1: Switching Buffers.
-                                                              (line  62)
-* magit-display-buffer-fullframe-status-v1: Switching Buffers.
-                                                              (line  56)
-* magit-display-buffer-same-window-except-diff-v1: Switching Buffers.
-                                                              (line  50)
-* magit-display-buffer-traditional:      Switching Buffers.   (line  42)
-* magit-file-checkout:                   Minor Mode for Buffers Visiting Files.
-                                                              (line 131)
-* magit-file-delete:                     Minor Mode for Buffers Visiting Files.
-                                                              (line 123)
-* magit-file-rename:                     Minor Mode for Buffers Visiting Files.
-                                                              (line 119)
-* magit-file-untrack:                    Minor Mode for Buffers Visiting Files.
-                                                              (line 127)
-* magit-generate-buffer-name-default-function: Naming Buffers.
-                                                              (line  17)
-* magit-get-section:                     Matching Sections.   (line  16)
-* magit-git:                             Calling Git for Effect.
-                                                              (line  65)
-* magit-git-exit-code:                   Getting a Value from Git.
-                                                              (line  10)
-* magit-git-failure:                     Getting a Value from Git.
-                                                              (line  19)
-* magit-git-false:                       Getting a Value from Git.
-                                                              (line  29)
-* magit-git-insert:                      Getting a Value from Git.
-                                                              (line  34)
-* magit-git-items:                       Getting a Value from Git.
-                                                              (line  49)
-* magit-git-lines:                       Getting a Value from Git.
-                                                              (line  44)
-* magit-git-str:                         Getting a Value from Git.
-                                                              (line  72)
-* magit-git-string:                      Getting a Value from Git.
-                                                              (line  38)
-* magit-git-success:                     Getting a Value from Git.
-                                                              (line  14)
-* magit-git-true:                        Getting a Value from Git.
-                                                              (line  24)
-* magit-git-wash:                        Calling Git for Effect.
-                                                              (line  70)
-* magit-hunk-set-window-start:           Section Movement.    (line  43)
-* magit-ido-completing-read:             Support for Completion Frameworks.
-                                                              (line  48)
-* magit-insert-am-sequence:              Status Sections.     (line  28)
-* magit-insert-bisect-log:               Status Sections.     (line  46)
-* magit-insert-bisect-output:            Status Sections.     (line  38)
-* magit-insert-bisect-rest:              Status Sections.     (line  42)
-* magit-insert-diff-filter-header:       Status Header Sections.
-                                                              (line  38)
-* magit-insert-error-header:             Status Header Sections.
-                                                              (line  28)
-* magit-insert-head-branch-header:       Status Header Sections.
-                                                              (line  42)
-* magit-insert-heading:                  Creating Sections.   (line  42)
-* magit-insert-ignored-files:            Status Sections.     (line 100)
-* magit-insert-local-branches:           References Sections. (line  17)
-* magit-insert-merge-log:                Status Sections.     (line  18)
-* magit-insert-modules:                  Status Module Sections.
-                                                              (line  12)
-* magit-insert-modules-overview:         Status Module Sections.
-                                                              (line  33)
-* magit-insert-modules-unpulled-from-pushremote: Status Module Sections.
-                                                              (line  50)
-* magit-insert-modules-unpulled-from-upstream: Status Module Sections.
-                                                              (line  44)
-* magit-insert-modules-unpushed-to-pushremote: Status Module Sections.
-                                                              (line  62)
-* magit-insert-modules-unpushed-to-upstream: Status Module Sections.
-                                                              (line  56)
-* magit-insert-push-branch-header:       Status Header Sections.
-                                                              (line  51)
-* magit-insert-rebase-sequence:          Status Sections.     (line  23)
-* magit-insert-recent-commits:           Status Sections.     (line 115)
-* magit-insert-remote-branches:          References Sections. (line  21)
-* magit-insert-remote-header:            Status Header Sections.
-                                                              (line  67)
-* magit-insert-repo-header:              Status Header Sections.
-                                                              (line  63)
-* magit-insert-section:                  Creating Sections.   (line   6)
-* magit-insert-sequencer-sequence:       Status Sections.     (line  33)
-* magit-insert-staged-changes:           Status Sections.     (line  63)
-* magit-insert-stashes:                  Status Sections.     (line  67)
-* magit-insert-status-headers:           Status Header Sections.
-                                                              (line  12)
-* magit-insert-submodules:               Listing Submodules.  (line  35)
-* magit-insert-tags:                     References Sections. (line  25)
-* magit-insert-tags-header:              Status Header Sections.
-                                                              (line  56)
-* magit-insert-tracked-files:            Status Sections.     (line  96)
-* magit-insert-unpulled-cherries:        Status Sections.     (line 126)
-* magit-insert-unpulled-from-pushremote: Status Sections.     (line  79)
-* magit-insert-unpulled-from-upstream:   Status Sections.     (line  74)
-* magit-insert-unpulled-or-recent-commits: Status Sections.   (line 108)
-* magit-insert-unpushed-cherries:        Status Sections.     (line 133)
-* magit-insert-unpushed-to-pushremote:   Status Sections.     (line  89)
-* magit-insert-unpushed-to-upstream:     Status Sections.     (line  84)
-* magit-insert-unstaged-changes:         Status Sections.     (line  59)
-* magit-insert-untracked-files:          Status Sections.     (line  50)
-* magit-insert-upstream-branch-header:   Status Header Sections.
-                                                              (line  46)
-* magit-insert-user-header:              Status Header Sections.
-                                                              (line  75)
-* magit-list-repositories:               Repository List.     (line   6)
-* magit-list-submodules:                 Listing Submodules.  (line  13)
-* magit-log-maybe-show-more-commits:     Section Movement.    (line  57)
-* magit-log-maybe-update-blob-buffer:    Section Movement.    (line  71)
-* magit-log-maybe-update-revision-buffer: Section Movement.   (line  64)
-* magit-maybe-set-dedicated:             Switching Buffers.   (line  97)
-* magit-mode-display-buffer:             Refreshing Buffers.  (line  33)
-* magit-mode-quit-window:                Quitting Windows.    (line  31)
-* magit-mode-setup:                      Refreshing Buffers.  (line  17)
-* magit-push-implicitly:                 Pushing.             (line  73)
-* magit-push-to-remote:                  Pushing.             (line  84)
-* magit-region-sections:                 Section Selection.   (line  10)
-* magit-region-values:                   Section Selection.   (line  37)
-* magit-remote-config-popup:             The Remote Config Popup.
-                                                              (line   6)
-* magit-repolist-column-ident:           Repository List.     (line  30)
-* magit-repolist-column-path:            Repository List.     (line  35)
-* magit-repolist-column-unpulled-from-pushremote: Repository List.
-                                                              (line  49)
-* magit-repolist-column-unpulled-from-upstream: Repository List.
-                                                              (line  44)
-* magit-repolist-column-unpushed-to-pushremote: Repository List.
-                                                              (line  59)
-* magit-repolist-column-unpushed-to-upstream: Repository List.
-                                                              (line  54)
-* magit-repolist-column-version:         Repository List.     (line  39)
-* magit-restore-window-configuration:    Quitting Windows.    (line  20)
-* magit-revert-buffers:                  Editing Commit Messages.
-                                                              (line 178)
-* magit-run-git:                         Calling Git for Effect.
-                                                              (line  36)
-* magit-run-git-async:                   Calling Git for Effect.
-                                                              (line  80)
-* magit-run-git-with-editor:             Calling Git for Effect.
-                                                              (line  93)
-* magit-run-git-with-input:              Calling Git for Effect.
-                                                              (line  40)
-* magit-run-git-with-logfile:            Calling Git for Effect.
-                                                              (line  56)
-* magit-save-window-configuration:       Switching Buffers.   (line  86)
-* magit-section-case:                    Matching Sections.   (line  71)
-* magit-section-hide:                    Section Visibility.  (line  49)
-* magit-section-hide-children:           Section Visibility.  (line  64)
-* magit-section-ident:                   Matching Sections.   (line  11)
-* magit-section-match:                   Matching Sections.   (line  21)
-* magit-section-set-window-start:        Section Movement.    (line  50)
-* magit-section-show:                    Section Visibility.  (line  45)
-* magit-section-show-children:           Section Visibility.  (line  58)
-* magit-section-show-headings:           Section Visibility.  (line  53)
-* magit-section-toggle-children:         Section Visibility.  (line  68)
-* magit-section-value-if:                Matching Sections.   (line  61)
-* magit-start-git:                       Calling Git for Effect.
-                                                              (line 105)
-* magit-start-process:                   Calling Git for Effect.
-                                                              (line 124)
-* magit-status-maybe-update-blob-buffer: Section Movement.    (line  83)
-* magit-status-maybe-update-revision-buffer: Section Movement.
-                                                              (line  77)
-* magit-tag-release:                     Tagging.             (line  28)
-* magit-wip-log:                         Wip Modes.           (line  48)
-* magit-wip-log-current:                 Wip Modes.           (line  57)
-* with-editor-usage-message:             Editing Commit Messages.
-                                                              (line 215)
-
-
-File: magit.info,  Node: Variable Index,  Prev: Function Index,  Up: Top
-
-Appendix F Variable Index
-*************************
-
-�[index�]
-* Menu:
-
-* auto-revert-buffer-list-filter:        Automatic Reverting of File-Visiting Buffers.
-                                                              (line  81)
-* auto-revert-interval:                  Automatic Reverting of File-Visiting Buffers.
-                                                              (line  76)
-* auto-revert-stop-on-user-input:        Automatic Reverting of File-Visiting Buffers.
-                                                              (line  71)
-* auto-revert-use-notify:                Automatic Reverting of File-Visiting Buffers.
-                                                              (line  49)
-* auto-revert-verbose:                   Automatic Reverting of File-Visiting Buffers.
-                                                              (line 103)
-* branch.autoSetupMerge:                 The Branch Config Popup.
-                                                              (line  94)
-* branch.autoSetupRebase:                The Branch Config Popup.
-                                                              (line 111)
-* branch.NAME.description:               The Branch Config Popup.
-                                                              (line  61)
-* branch.NAME.merge:                     The Branch Config Popup.
-                                                              (line  23)
-* branch.NAME.pushRemote:                The Branch Config Popup.
-                                                              (line  47)
-* branch.NAME.rebase:                    The Branch Config Popup.
-                                                              (line  35)
-* branch.NAME.remote:                    The Branch Config Popup.
-                                                              (line  29)
-* core.notesRef:                         Notes.               (line  59)
-* git-commit-fill-column:                Editing Commit Messages.
-                                                              (line 228)
-* git-commit-finish-query-functions:     Editing Commit Messages.
-                                                              (line 233)
-* git-commit-known-pseudo-headers:       Editing Commit Messages.
-                                                              (line 124)
-* git-commit-major-mode:                 Editing Commit Messages.
-                                                              (line 163)
-* git-commit-setup-hook:                 Editing Commit Messages.
-                                                              (line 174)
-* git-commit-summary-max-length:         Editing Commit Messages.
-                                                              (line 222)
-* git-rebase-auto-advance:               Editing Rebase Sequences.
-                                                              (line  94)
-* git-rebase-confirm-cancel:             Editing Rebase Sequences.
-                                                              (line 102)
-* git-rebase-show-instructions:          Editing Rebase Sequences.
-                                                              (line  98)
-* global-auto-revert-mode:               Automatic Reverting of File-Visiting Buffers.
-                                                              (line  22)
-* magit-auto-revert-immediately:         Automatic Reverting of File-Visiting Buffers.
-                                                              (line  32)
-* magit-auto-revert-mode:                Automatic Reverting of File-Visiting Buffers.
-                                                              (line  17)
-* magit-auto-revert-tracked-only:        Automatic Reverting of File-Visiting Buffers.
-                                                              (line  55)
-* magit-bisect-show-graph:               Bisecting.           (line  55)
-* magit-blame-disable-modes:             Blaming.             (line 150)
-* magit-blame-echo-style:                Blaming.             (line 133)
-* magit-blame-goto-chunk-hook:           Blaming.             (line 156)
-* magit-blame-read-only:                 Blaming.             (line 145)
-* magit-blame-styles:                    Blaming.             (line 128)
-* magit-blame-time-format:               Blaming.             (line 140)
-* magit-branch-adjust-remote-upstream-alist: The Branch Popup.
-                                                              (line 303)
-* magit-branch-popup-show-variables:     The Branch Popup.    (line  21)
-* magit-branch-prefer-remote-upstream:   The Branch Popup.    (line 258)
-* magit-branch-read-upstream-first:      The Branch Popup.    (line 252)
-* magit-buffer-name-format:              Naming Buffers.      (line  27)
-* magit-bury-buffer-function:            Quitting Windows.    (line  11)
-* magit-cherry-margin:                   Cherries.            (line  22)
-* magit-clone-set-remote.pushDefault:    Repository Setup.    (line  23)
-* magit-commit-ask-to-stage:             Initiating a Commit. (line  74)
-* magit-commit-extend-override-date:     Initiating a Commit. (line  79)
-* magit-commit-reword-override-date:     Initiating a Commit. (line  83)
-* magit-commit-squash-confirm:           Initiating a Commit. (line  87)
-* magit-completing-read-function:        Support for Completion Frameworks.
-                                                              (line  27)
-* magit-diff-adjust-tab-width:           Diff Options.        (line  16)
-* magit-diff-buffer-file-locked:         Minor Mode for Buffers Visiting Files.
-                                                              (line  52)
-* magit-diff-hide-trailing-cr-characters: Diff Options.       (line  67)
-* magit-diff-highlight-hunk-region-functions: Diff Options.   (line  71)
-* magit-diff-highlight-indentation:      Diff Options.        (line  52)
-* magit-diff-highlight-trailing:         Diff Options.        (line  47)
-* magit-diff-paint-whitespace:           Diff Options.        (line  38)
-* magit-diff-refine-hunk:                Diff Options.        (line   6)
-* magit-diff-unmarked-lines-keep-foreground: Diff Options.    (line  97)
-* magit-diff-visit-previous-blob:        Diff Buffer.         (line  37)
-* magit-display-buffer-function:         Switching Buffers.   (line  23)
-* magit-display-buffer-noselect:         Switching Buffers.   (line  14)
-* magit-dwim-selection:                  Completion and Confirmation.
-                                                              (line  42)
-* magit-ediff-dwim-show-on-hunks:        Ediffing.            (line  73)
-* magit-ediff-quit-hook:                 Ediffing.            (line  88)
-* magit-ediff-show-stash-with-index:     Ediffing.            (line  81)
-* magit-file-mode:                       Minor Mode for Buffers Visiting Files.
-                                                              (line  11)
-* magit-generate-buffer-name-function:   Naming Buffers.      (line   6)
-* magit-git-debug:                       Viewing Git Output.  (line  28)
-* magit-git-debug <1>:                   Getting a Value from Git.
-                                                              (line  64)
-* magit-git-executable:                  Git Executable.      (line  39)
-* magit-git-global-arguments:            Global Git Arguments.
-                                                              (line   6)
-* magit-keep-region-overlay:             The Selection.       (line  52)
-* magit-list-refs-sortby:                Additional Completion Options.
-                                                              (line   6)
-* magit-log-auto-more:                   Log Buffer.          (line  67)
-* magit-log-buffer-file-locked:          Minor Mode for Buffers Visiting Files.
-                                                              (line  75)
-* magit-log-margin:                      Log Margin.          (line  12)
-* magit-log-section-args:                Status Options.      (line  36)
-* magit-log-section-commit-count:        Status Sections.     (line 120)
-* magit-log-select-margin:               Select from Log.     (line  30)
-* magit-log-show-refname-after-summary:  Log Buffer.          (line  73)
-* magit-log-trace-definition-function:   Diff Buffer.         (line  74)
-* magit-module-sections-hook:            Status Module Sections.
-                                                              (line  20)
-* magit-module-sections-nested:          Status Module Sections.
-                                                              (line  24)
-* magit-no-confirm:                      Action Confirmation. (line  18)
-* magit-pop-revision-stack-format:       Editing Commit Messages.
-                                                              (line  92)
-* magit-post-display-buffer-hook:        Switching Buffers.   (line  92)
-* magit-pre-display-buffer-hook:         Switching Buffers.   (line  81)
-* magit-prefer-remote-upstream:          The Branch Config Popup.
-                                                              (line 139)
-* magit-process-raise-error:             Calling Git for Effect.
-                                                              (line 151)
-* magit-push-current-set-remote-if-missing: Pushing.          (line  96)
-* magit-reflog-margin:                   Reflog.              (line  23)
-* magit-refresh-args:                    Refreshing Buffers.  (line  55)
-* magit-refresh-buffer-hook:             Automatic Refreshing of Magit Buffers.
-                                                              (line  40)
-* magit-refresh-function:                Refreshing Buffers.  (line  49)
-* magit-refresh-status-buffer:           Automatic Refreshing of Magit Buffers.
-                                                              (line  46)
-* magit-refs-filter-alist:               References Buffer.   (line 149)
-* magit-refs-focus-column-width:         References Buffer.   (line  74)
-* magit-refs-margin:                     References Buffer.   (line  89)
-* magit-refs-margin-for-tags:            References Buffer.   (line 115)
-* magit-refs-pad-commit-counts:          References Buffer.   (line  41)
-* magit-refs-primary-column-width:       References Buffer.   (line  61)
-* magit-refs-sections-hook:              References Sections. (line  13)
-* magit-refs-show-commit-count:          References Buffer.   (line  29)
-* magit-refs-show-remote-prefix:         References Buffer.   (line  54)
-* magit-remote-add-set-remote.pushDefault: The Remote Popup.  (line  77)
-* magit-remote-popup-show-variables:     The Remote Popup.    (line  18)
-* magit-repolist-columns:                Repository List.     (line  14)
-* magit-repository-directories:          Status Buffer.       (line  30)
-* magit-repository-directories-depth:    Status Buffer.       (line  40)
-* magit-revision-insert-related-refs:    Revision Buffer.     (line   6)
-* magit-revision-show-gravatars:         Revision Buffer.     (line  19)
-* magit-revision-use-hash-sections:      Revision Buffer.     (line  36)
-* magit-root-section:                    Matching Sections.   (line  87)
-* magit-save-repository-buffers:         Automatic Saving of File-Visiting Buffers.
-                                                              (line  13)
-* magit-section-cache-visibility:        Section Visibility.  (line  95)
-* magit-section-initial-visibility-alist: Section Visibility. (line  78)
-* magit-section-movement-hook:           Section Movement.    (line  38)
-* magit-section-set-visibility-hook:     Section Visibility.  (line 106)
-* magit-section-show-child-count:        Section Options.     (line   9)
-* magit-shell-command-verbose-prompt:    Running Git Manually.
-                                                              (line  46)
-* magit-stashes-margin:                  Stashing.            (line 103)
-* magit-status-headers-hook:             Status Header Sections.
-                                                              (line  18)
-* magit-status-margin:                   Status Options.      (line  10)
-* magit-status-refresh-hook:             Status Options.      (line   6)
-* magit-status-sections-hook:            Status Sections.     (line  10)
-* magit-submodule-list-columns:          Listing Submodules.  (line  21)
-* magit-this-process:                    Calling Git for Effect.
-                                                              (line 146)
-* magit-uniquify-buffer-names:           Naming Buffers.      (line  74)
-* magit-unstage-committed:               Staging and Unstaging.
-                                                              (line  56)
-* magit-update-other-window-delay:       Section Movement.    (line  89)
-* magit-use-sticky-arguments:            Popup Buffers and Prefix Commands.
-                                                              (line  36)
-* magit-visit-ref-behavior:              References Buffer.   (line 177)
-* magit-wip-after-apply-mode:            Legacy Wip Modes.    (line  19)
-* magit-wip-after-apply-mode-lighter:    Legacy Wip Modes.    (line  59)
-* magit-wip-after-save-local-mode-lighter: Legacy Wip Modes.  (line  55)
-* magit-wip-after-save-mode:             Legacy Wip Modes.    (line  13)
-* magit-wip-before-change-mode:          Legacy Wip Modes.    (line  33)
-* magit-wip-before-change-mode-lighter:  Legacy Wip Modes.    (line  63)
-* magit-wip-initial-backup-mode:         Legacy Wip Modes.    (line  38)
-* magit-wip-initial-backup-mode-lighter: Legacy Wip Modes.    (line  67)
-* magit-wip-merge-branch:                Wip Graph.           (line   6)
-* magit-wip-mode:                        Wip Modes.           (line  30)
-* magit-wip-mode-lighter:                Wip Modes.           (line 104)
-* magit-wip-namespace:                   Wip Modes.           (line  96)
-* notes.displayRef:                      Notes.               (line  64)
-* pull.rebase:                           The Branch Config Popup.
-                                                              (line  70)
-* remote.NAME.fetch:                     The Remote Config Popup.
-                                                              (line  25)
-* remote.NAME.push:                      The Remote Config Popup.
-                                                              (line  36)
-* remote.NAME.pushurl:                   The Remote Config Popup.
-                                                              (line  30)
-* remote.NAME.tagOpts:                   The Remote Config Popup.
-                                                              (line  41)
-* remote.NAME.url:                       The Remote Config Popup.
-                                                              (line  20)
-* remote.pushDefault:                    The Branch Config Popup.
-                                                              (line  84)
-
diff --git a/elpa/magit-popup-20181003.921/dir b/elpa/magit-popup-20181003.921/dir
deleted file mode 100644
index ecec7cb..0000000
--- a/elpa/magit-popup-20181003.921/dir
+++ /dev/null
@@ -1,18 +0,0 @@
-This is the file .../info/dir, which contains the
-topmost node of the Info hierarchy, called (dir)Top.
-The first time you invoke Info you start off looking at this node.
-
-File: dir,	Node: Top	This is the top of the INFO tree
-
-  This (the Directory node) gives a menu of major topics.
-  Typing "q" exits, "H" lists all Info commands, "d" returns here,
-  "h" gives a primer for first-timers,
-  "mEmacs<Return>" visits the Emacs manual, etc.
-
-  In Emacs, you can click mouse button 2 on a menu item or cross reference
-  to select it.
-
-* Menu:
-
-Emacs
-* Magit-Popup: (magit-popup).   Infix arguments with feedback.
diff --git a/elpa/magit-popup-20181003.921/magit-popup-autoloads.el b/elpa/magit-popup-20181003.921/magit-popup-autoloads.el
deleted file mode 100644
index e6e027b..0000000
--- a/elpa/magit-popup-20181003.921/magit-popup-autoloads.el
+++ /dev/null
@@ -1,26 +0,0 @@
-;;; magit-popup-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "magit-popup" "magit-popup.el" (0 0 0 0))
-;;; Generated autoloads from magit-popup.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "magit-popup" '("magit-")))
-
-;;;***
-
-;;;### (autoloads nil nil ("magit-popup-pkg.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; magit-popup-autoloads.el ends here
diff --git a/elpa/magit-popup-20181003.921/magit-popup-pkg.el b/elpa/magit-popup-20181003.921/magit-popup-pkg.el
deleted file mode 100644
index dc89d65..0000000
--- a/elpa/magit-popup-20181003.921/magit-popup-pkg.el
+++ /dev/null
@@ -1,14 +0,0 @@
-(define-package "magit-popup" "20181003.921" "Define prefix-infix-suffix command combos"
-  '((emacs "24.4")
-    (async "1.9.2")
-    (dash "2.13.0"))
-  :keywords
-  '("bindings")
-  :authors
-  '(("Jonas Bernoulli" . "jonas@bernoul.li"))
-  :maintainer
-  '("Jonas Bernoulli" . "jonas@bernoul.li")
-  :url "https://github.com/magit/magit-popup")
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/magit-popup-20181003.921/magit-popup.el b/elpa/magit-popup-20181003.921/magit-popup.el
deleted file mode 100644
index c5bed88..0000000
--- a/elpa/magit-popup-20181003.921/magit-popup.el
+++ /dev/null
@@ -1,1372 +0,0 @@
-;;; magit-popup.el --- Define prefix-infix-suffix command combos  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2010-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file which
-;; lists all contributors.  If not, see http://magit.vc/authors.
-
-;; This library was inspired by and replaces library `magit-key-mode',
-;; which was written by Phil Jackson <phil@shellarchive.co.uk> and is
-;; distributed under the GNU General Public License version 3 or later.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Package-Requires: ((emacs "24.4") (async "1.9.2") (dash "2.13.0"))
-;; Keywords: bindings
-;; Homepage: https://github.com/magit/magit-popup
-
-;; Magit-Popup is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; Magit-Popup is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Magit-Popup.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This package implements a generic interface for toggling switches
-;; and setting options and then invoking an Emacs command which does
-;; something with these arguments.  The prototypical use is for the
-;; command to call an external process, passing on the arguments as
-;; command line arguments.  But this is only one of many possible
-;; uses (though the one this library is optimized for).
-
-;; With the Emacs concept of "prefix arguments" in mind this could be
-;; described as "infix arguments with feedback in a buffer".
-
-;; Commands that set the prefix argument for the subsequent command do
-;; not limit what that next command could be.  But entering a command
-;; console popup does limit the selection to the commands defined for
-;; that popup, and so we use the term "infix" instead of "prefix".
-
-;;; Code:
-
-(require 'button)
-(require 'cl-lib)
-(require 'dash)
-(require 'format-spec)
-(eval-when-compile (require 'subr-x))
-
-(and (require 'async-bytecomp nil t)
-     (cl-intersection '(all magit)
-                      (bound-and-true-p async-bytecomp-allowed-packages))
-     (fboundp 'async-bytecomp-package-mode)
-     (async-bytecomp-package-mode 1))
-
-(declare-function info 'info)
-(declare-function Man-find-section 'man)
-(declare-function Man-next-section 'man)
-
-;; For branch actions.
-(declare-function magit-branch-set-face 'magit-git)
-
-;;; Settings
-;;;; Custom Groups
-
-(defgroup magit-popup nil
-  "Infix arguments with a popup as feedback."
-  :link '(info-link "(magit-popup)")
-  :group 'bindings)
-
-(defgroup magit-popup-faces nil
-  "Faces used by Magit-Popup."
-  :group 'magit-popup)
-
-;;;; Custom Options
-
-(defcustom magit-popup-display-buffer-action '((display-buffer-below-selected))
-  "The action used to display a popup buffer.
-
-Popup buffers are displayed using `display-buffer' with the value
-of this option as ACTION argument.  You can also set this to nil
-and instead add an entry to `display-buffer-alist'."
-  :package-version '(magit-popup . "2.4.0")
-  :group 'magit-popup
-  :type 'sexp)
-
-(defcustom magit-popup-manpage-package
-  (if (memq system-type '(windows-nt ms-dos)) 'woman 'man)
-  "The package used to display manpages.
-One of `man' or `woman'."
-  :group 'magit-popup
-  :type '(choice (const man) (const woman)))
-
-(defcustom magit-popup-show-help-echo t
-  "Show usage information in the echo area."
-  :group 'magit-popup
-  :type 'boolean)
-
-(defcustom magit-popup-show-common-commands nil
-  "Whether to initially show section with commands common to all popups.
-This section can also be toggled temporarily using \
-\\<magit-popup-mode-map>\\[magit-popup-toggle-show-common-commands]."
-  :package-version '(magit-popup . "2.9.0")
-  :group 'magit-popup
-  :type 'boolean)
-
-(defcustom magit-popup-use-prefix-argument 'default
-  "Control how prefix arguments affect infix argument popups.
-
-This option controls the effect that the use of a prefix argument
-before entering a popup has.
-
-`default'  With a prefix argument directly invoke the popup's
-           default action (an Emacs command), instead of bringing
-           up the popup.
-
-`popup'    With a prefix argument bring up the popup, otherwise
-           directly invoke the popup's default action.
-
-`nil'      Ignore prefix arguments."
-  :group 'magit-popup
-  :type '(choice
-          (const :tag "Call default action instead of showing popup" default)
-          (const :tag "Show popup instead of calling default action" popup)
-          (const :tag "Ignore prefix argument" nil)))
-
-;;;; Custom Faces
-
-(defface magit-popup-heading
-  '((t :inherit font-lock-keyword-face))
-  "Face for key mode header lines."
-  :group 'magit-popup-faces)
-
-(defface magit-popup-key
-  '((t :inherit font-lock-builtin-face))
-  "Face for key mode buttons."
-  :group 'magit-popup-faces)
-
-(defface magit-popup-argument
-  '((t :inherit font-lock-warning-face))
-  "Face used to display enabled arguments in popups."
-  :group 'magit-popup-faces)
-
-(defface magit-popup-disabled-argument
-  '((t :inherit shadow))
-  "Face used to display disabled arguments in popups."
-  :group 'magit-popup-faces)
-
-(defface magit-popup-option-value
-  '((t :inherit font-lock-string-face))
-  "Face used to display option values in popups."
-  :group 'magit-popup-faces)
-
-;;;; Keymap
-
-(defvar magit-popup-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap self-insert-command] 'magit-invoke-popup-action)
-    (define-key map (kbd "- <t>")               'magit-invoke-popup-switch)
-    (define-key map (kbd "= <t>")               'magit-invoke-popup-option)
-    (define-key map (kbd "C-g")     'magit-popup-quit)
-    (define-key map (kbd "?")       'magit-popup-help)
-    (define-key map (kbd "C-h k")   'magit-popup-help)
-    (define-key map (kbd "C-h i")   'magit-popup-info)
-    (define-key map (kbd "C-t")     'magit-popup-toggle-show-common-commands)
-    (define-key map (kbd "C-c C-c") 'magit-popup-set-default-arguments)
-    (define-key map (kbd "C-x C-s") 'magit-popup-save-default-arguments)
-    (cond ((featurep 'jkl)
-           (define-key map (kbd "C-p") 'universal-argument)
-           (define-key map [return]    'push-button)
-           (define-key map (kbd "C-i") 'backward-button)
-           (define-key map (kbd "C-k") 'forward-button))
-          (t
-           (define-key map (kbd "C-m") 'push-button)
-           (define-key map (kbd "DEL") 'backward-button)
-           (define-key map (kbd "C-p") 'backward-button)
-           (define-key map (kbd "C-i") 'forward-button)
-           (define-key map (kbd "C-n") 'forward-button)))
-    map)
-  "Keymap for `magit-popup-mode'.
-
-\\<magit-popup-mode-map>\
-This keymap contains bindings common to all popups.  A section
-listing these commands can be shown or hidden using \
-\\[magit-popup-toggle-show-common-commands].
-
-The prefix used to toggle any switch can be changed by binding
-another key to `magit-invoke-popup-switch'.  Likewise binding
-another key to `magit-invoke-popup-option' changes the prefixed
-used to set any option.  The two prefixes have to be different.
-If you change these bindings, you should also change the `prefix'
-property of the button types `magit-popup-switch-button' and
-`magit-popup-option-button'.
-
-If you change any other binding, then you might have to also edit
-`magit-popup-common-commands' for things to align correctly in
-the section listing these commands.
-
-Never bind an alphabetic character in this keymap or you might
-make it impossible to invoke certain actions.")
-
-(defvar magit-popup-common-commands
-  '(("Set defaults"          magit-popup-set-default-arguments)
-    ("View popup manual"     magit-popup-info)
-    ("Toggle this section"   magit-popup-toggle-show-common-commands)
-    ("Save defaults"         magit-popup-save-default-arguments)
-    ("    Popup help prefix" magit-popup-help)
-    ("Abort"                 magit-popup-quit)))
-
-;;;; Buttons
-
-(define-button-type 'magit-popup-button
-  'face nil
-  'action (lambda (button)
-            (funcall (button-get button 'function)
-                     (button-get button 'event))))
-
-(define-button-type 'magit-popup-switch-button
-  'supertype 'magit-popup-button
-  'function  'magit-invoke-popup-switch
-  'property  :switches
-  'heading   "Switches\n"
-  'formatter 'magit-popup-format-argument-button
-  'format    " %k %d (%a)"
-  'prefix    ?-
-  'maxcols   1)
-
-(define-button-type 'magit-popup-option-button
-  'supertype 'magit-popup-button
-  'function  'magit-invoke-popup-option
-  'property  :options
-  'heading   "Options\n"
-  'formatter 'magit-popup-format-argument-button
-  'format    " %k %d (%a%v)"
-  'prefix    ?=
-  'maxcols   1)
-
-(define-button-type 'magit-popup-variable-button
-  'supertype 'magit-popup-button
-  'function  'magit-invoke-popup-action
-  'property  :variables
-  'heading   "Variables\n"
-  'formatter 'magit-popup-format-variable-button
-  'format    " %k %d"
-  'prefix    nil
-  'maxcols   1)
-
-(define-button-type 'magit-popup-action-button
-  'supertype 'magit-popup-button
-  'function  'magit-invoke-popup-action
-  'property  :actions
-  'heading   "Actions\n"
-  'formatter 'magit-popup-format-action-button
-  'format    " %k %d"
-  'prefix    nil
-  'maxcols   :max-action-columns)
-
-(define-button-type 'magit-popup-command-button
-  'supertype 'magit-popup-action-button
-  'formatter 'magit-popup-format-command-button
-  'action    (lambda (button)
-               (let ((command (button-get button 'function)))
-                 (unless (eq command 'push-button)
-                   (call-interactively command)))))
-
-(define-button-type 'magit-popup-internal-command-button
-  'supertype 'magit-popup-command-button
-  'heading   "Common Commands\n"
-  'maxcols   3)
-
-;;; Events
-
-(defvar-local magit-this-popup nil
-  "The popup which is currently active.
-This is intended for internal use only.
-Don't confuse this with `magit-current-popup'.")
-
-(defvar-local magit-this-popup-events nil
-  "The events known to the active popup.
-This is intended for internal use only.
-Don't confuse this with `magit-current-popup-args'.")
-
-(defvar-local magit-previous-popup nil)
-
-(defvar-local magit-pre-popup-buffer nil
-  "The buffer that was current before invoking the active popup.")
-
-(defun magit-popup-get (prop)
-  "While a popup is active, get the value of PROP."
-  (if (memq prop '(:switches :options :variables :actions))
-      (plist-get magit-this-popup-events prop)
-    (plist-get (symbol-value magit-this-popup) prop)))
-
-(defun magit-popup-put (prop val)
-  "While a popup is active, set the value of PROP to VAL."
-  (if (memq prop '(:switches :options :variables :actions))
-      (setq magit-this-popup-events
-            (plist-put magit-this-popup-events prop val))
-    (error "Property %s isn't supported" prop)))
-
-(defvar magit-current-popup nil
-  "The popup from which this editing command was invoked.
-
-Use this inside the `interactive' form of a popup aware command
-to determine whether it was invoked from a popup and if so from
-which popup.  If the current command was invoked without the use
-of a popup, then this is nil.")
-
-(defvar magit-current-popup-action nil
-  "The popup action now being executed.")
-
-(defvar magit-current-popup-args nil
-  "The value of the popup arguments for this editing command.
-
-If the current command was invoked from a popup, then this is
-a list of strings of all the set switches and options.  This
-includes arguments which are set by default not only those
-explicitly set during this invocation.
-
-When the value is nil, then that can be because no argument is
-set, or because the current command wasn't invoked from a popup;
-consult `magit-current-popup' to tell the difference.
-
-Generally it is better to use `NAME-arguments', which is created
-by `magit-define-popup', instead of this variable or the function
-by the same name, because `NAME-argument' uses the default value
-for the arguments when the editing command is invoked directly
-instead of from a popup.  When the command is bound in several
-popups that might not be feasible though.")
-
-(defun magit-current-popup-args (&rest filter)
-  "Return the value of the popup arguments for this editing command.
-
-The value is the same as that of the variable by the same name
-\(which see), except that FILTER is applied.  FILTER is a list
-of regexps; only arguments that match one of them are returned.
-The first element of FILTER may also be `:not' in which case
-only arguments that don't match any of the regexps are returned,
-or `:only' which doesn't change the behaviour."
-  (let ((-compare-fn (lambda (a b) (magit-popup-arg-match b a))))
-    (-filter (if (eq (car filter) :not)
-                 (lambda (arg) (not (-contains-p (cdr filter) arg)))
-               (when (eq (car filter) :only)
-                 (pop filter))
-               (lambda (arg) (-contains-p filter arg)))
-             magit-current-popup-args)))
-
-(defvar magit-current-pre-popup-buffer nil
-  "The buffer that was current before invoking the active popup.
-This is bound when invoking an action or variable.")
-
-(defmacro magit-with-pre-popup-buffer (&rest body)
-  "Execute the forms in BODY in the buffer that current before the popup.
-If `magit-current-pre-popup-buffer' is non-nil use that, else if
-`magit-pre-popup-buffer' is non-nil use that, otherwise (when no
-popup is involved) execute the forms in the current buffer."
-  (declare (indent 0))
-  `(--if-let (or magit-current-pre-popup-buffer magit-pre-popup-buffer)
-       (with-current-buffer it ,@body)
-     ,@body))
-
-(defun magit-popup-arg-match (pattern string)
-  (if (or (string-match-p "=$" pattern)
-          (string-match-p "^-[A-Z]$" pattern))
-      (string-match (format "^%s\\(.*\\)$" pattern) string)
-    (string-equal string pattern)))
-
-(cl-defstruct magit-popup-event key dsc arg fun use val)
-
-(defun magit-popup-event-keydsc (ev)
-  (let ((key (magit-popup-event-key ev)))
-    (key-description (if (vectorp key) key (vector key)))))
-
-(defun magit-popup-lookup (event type)
-  (--first (equal (magit-popup-event-key it) event)
-           (-filter 'magit-popup-event-p (magit-popup-get type))))
-
-(defun magit-popup-get-args ()
-  (--mapcat (when (and (magit-popup-event-p it)
-                       (magit-popup-event-use it))
-              (list (format "%s%s"
-                            (magit-popup-event-arg it)
-                            (or (magit-popup-event-val it) ""))))
-            (append (magit-popup-get :switches)
-                    (magit-popup-get :options))))
-
-(defmacro magit-popup-convert-events (def form)
-  (declare (indent 1) (debug (form form)))
-  `(--map (if (or (null it) (stringp it) (functionp it)) it ,form) ,def))
-
-(defun magit-popup-convert-switches (val def)
-  (magit-popup-convert-events def
-    (let ((a (nth 2 it)))
-      (make-magit-popup-event
-       :key (car it) :dsc (cadr it) :arg a
-       :use (and (member a val) t)
-       ;; For arguments implemented in lisp, this function's
-       ;; doc-string is used by `magit-popup-help'.  That is
-       ;; the only thing it is used for.
-       :fun (and (string-prefix-p "\+\+" a) (nth 3 it))))))
-
-(defun magit-popup-convert-options (val def)
-  (magit-popup-convert-events def
-    (let* ((a (nth 2 it))
-           (r (format "^%s\\(.*\\)" a))
-           (v (--first (string-match r it) val)))
-      (make-magit-popup-event
-       :key (car it)  :dsc (cadr it) :arg a
-       :use (and v t) :val (and v (match-string 1 v))
-       :fun (or (nth 3 it) 'read-from-minibuffer)))))
-
-(defun magit-popup-convert-variables (_val def)
-  (magit-popup-convert-events def
-    (make-magit-popup-event
-     :key (car it) :dsc (cadr it) :fun (nth 2 it) :arg (nth 3 it))))
-
-(defun magit-popup-convert-actions (_val def)
-  (magit-popup-convert-events def
-    (make-magit-popup-event
-     :key (car it) :dsc (cadr it) :fun (nth 2 it))))
-
-;;; Define
-
-(defmacro magit-define-popup (name doc &rest args)
-  "Define a popup command named NAME.
-
-NAME should begin with the package prefix and by convention end
-with `-popup'.  That name is used for the actual command as well
-as for a variable used internally.  DOC is used as the doc-string
-of that command.
-
-Also define an option and a function named `SHORTNAME-arguments',
-where SHORTNAME is NAME with the trailing `-popup' removed.  The
-name of this option and this function can be overwritten using
-the optional argument OPTION, but that is rarely advisable. As a
-special case if OPTION is specified but nil, do not define this
-option and this function at all.
-
-The option `SHORTNAME-arguments' holds the default value for the
-popup arguments.  It can be customized from within the popup or
-using the Custom interface.
-
-The function `SHORTNAME-arguments' is a wrapper around the
-variable `magit-current-popup-args', both of which are intended
-to be used inside the `interactive' form of commands commonly
-invoked from the popup `NAME'.  When such a command is invoked
-from that popup, then the function `SHORTNAME-arguments' returns
-the value of the variable `magit-current-popup-args'; however
-when the command is invoked directly, then it returns the default
-value of the variable `SHORTNAME-arguments'.
-
-Optional argument GROUP specifies the Custom group into which the
-option is placed.  If omitted, then the option is placed into some
-group the same way it is done when directly using `defcustom' and
-omitting the group, except when NAME begins with \"magit-\", in
-which case the group `magit-git-arguments' is used.
-
-Optional argument MODE is deprecated, instead use the keyword
-arguments `:setup-function' and/or `:refresh-function'.  If MODE
-is non-nil, then it specifies the mode used by the popup buffer,
-instead of the default, which is `magit-popup-mode'.
-
-The remaining arguments should have the form
-
-    [KEYWORD VALUE]...
-
-The following keywords are meaningful (and by convention are
-usually specified in that order):
-
-`:actions'
-  The actions which can be invoked from the popup.  VALUE is a
-  list whose members have the form (KEY DESC COMMAND), see
-  `magit-define-popup-action' for details.
-
-  Actions are regular Emacs commands, which usually have an
-  `interactive' form setup to consume the values of the popup
-  `:switches' and `:options' when invoked from the corresponding
-  popup, else when invoked as the default action or directly
-  without using the popup, the default value of the variable
-  `SHORTNAME-arguments'.  This is usually done by calling the
-  function `SHORTNAME-arguments'.
-
-  Members of VALUE may also be strings and functions, assuming
-  the first member is a string or function.  In that case the
-  members are split into sections and these special elements are
-  used as headings.  If such an element is a function then it is
-  called with no arguments and must return either a string, which
-  is used as the heading, or nil, in which case the section is
-  not inserted.
-
-  Members of VALUE may also be nil.  This should only be used
-  together with `:max-action-columns' and allows having gaps in
-  the action grid, which can help arranging actions sensibly.
-
-`:default-action'
-  The default action of the popup which is used directly instead
-  of displaying the popup buffer, when the popup is invoked with
-  a prefix argument.  Also see `magit-popup-use-prefix-argument'
-  and `:use-prefix', which can be used to inverse the meaning of
-  the prefix argument.
-
-`:use-prefix'
-  Controls when to display the popup buffer and when to invoke
-  the default action (if any) directly.  This overrides the
-  global default set using `magit-popup-use-prefix-argument'.
-  The value, if specified, should be one of `default' or `popup',
-  or a function that is called with no arguments and returns one
-  of these symbols.
-
-`:max-action-columns'
-  The maximum number of actions to display on a single line, a
-  number or a function that returns a number and takes the name
-  of the section currently being inserted as argument.  If there
-  isn't enough room to display as many columns as specified here,
-  then fewer are used.
-
-`:switches'
-  The popup arguments which can be toggled on and off.  VALUE
-  is a list whose members have the form (KEY DESC SWITCH), see
-  `magit-define-popup-switch' for details.
-
-  Members of VALUE may also be strings and functions, assuming
-  the first member is a string or function.  In that case the
-  members are split into sections and these special elements are
-  used as headings.  If such an element is a function then it is
-  called with no arguments and must return either a string, which
-  is used as the heading, or nil, in which case the section is
-  not inserted.
-
-`:options'
-  The popup arguments which take a value, as in \"--opt=OPTVAL\".
-  VALUE is a list whose members have the form (KEY DESC OPTION
-  READER), see `magit-define-popup-option' for details.
-
-  Members of VALUE may also be strings and functions, assuming
-  the first member is a string or function.  In that case the
-  members are split into sections and these special elements are
-  used as headings.  If such an element is a function then it is
-  called with no arguments and must return either a string, which
-  is used as the heading, or nil, in which case the section is
-  not inserted.
-
-`:default-arguments'
-  The default arguments, a list of switches (which are then
-  enabled by default) and options with there default values, as
-  in \"--OPT=OPTVAL\".
-
-`:variables'
-
-  Variables which can be set from the popup.  VALUE is a list
-  whose members have the form (KEY DESC COMMAND FORMATTER), see
-  `magit-define-popup-variable' for details.
-
-  Members of VALUE may also be strings and functions, assuming
-  the first member is a string or function.  In that case the
-  members are split into sections and these special elements are
-  used as headings.  If such an element is a function then it is
-  called with no arguments and must return either a string, which
-  is used as the heading, or nil, in which case the section is
-  not inserted.
-
-  Members of VALUE may also be actions as described above for
-  `:actions'.
-
-  VALUE may also be a function that returns a list as describe
-  above.
-
-`:sequence-predicate'
-  When this function returns non-nil, then the popup uses
-  `:sequence-actions' instead of `:actions', and does not show
-  the `:switches' and `:options'.
-
-`:sequence-actions'
-  The actions which can be invoked from the popup, when
-  `:sequence-predicate' returns non-nil.
-
-`:setup-function'
-  When this function is specified, then it is used instead of
-  `magit-popup-default-setup'.
-
-`:refresh-function'
-  When this function is specified, then it is used instead of
-  calling `magit-popup-insert-section' three times with symbols
-  `magit-popup-switch-button', `magit-popup-option-button', and
-  finally `magit-popup-action-button' as argument.
-
-`:man-page'
-  The name of the manpage to be displayed when the user requests
-  help for a switch or argument.
-
-\(fn NAME DOC [GROUP [MODE [OPTION]]] :KEYWORD VALUE...)"
-  (declare (indent defun) (doc-string 2))
-  (let* ((str  (symbol-name name))
-         (grp  (if (keywordp (car args))
-                   (and (string-prefix-p "magit-" str) ''magit-git-arguments)
-                 (pop args)))
-         (mode (and (not (keywordp (car args))) (pop args)))
-         (opt  (if (keywordp (car args))
-                   (intern (concat (if (string-suffix-p "-popup" str)
-                                       (substring str 0 -6)
-                                     str)
-                                   "-arguments"))
-                 (eval (pop args)))))
-    `(progn
-       (defun ,name (&optional arg) ,doc
-         (interactive "P")
-         (magit-invoke-popup ',name ,mode arg))
-       (defvar ,name
-         (list :variable ',opt ,@args))
-       (magit-define-popup-keys-deferred ',name)
-       ,@(when opt
-           `((defcustom ,opt (plist-get ,name :default-arguments)
-               ""
-               ,@(and grp (list :group grp))
-               :type '(repeat (string :tag "Argument")))
-             (defun ,opt ()
-               (if (eq magit-current-popup ',name)
-                   magit-current-popup-args
-                 ,opt))
-             (put ',opt 'definition-name ',name))))))
-
-(defun magit-define-popup-switch (popup key desc switch
-                                        &optional enable at prepend)
-  "In POPUP, define KEY as SWITCH.
-
-POPUP is a popup command defined using `magit-define-popup'.
-SWITCH is a string representing an argument that takes no value.
-KEY is a character representing the second event in the sequence
-of keystrokes used to toggle the argument.  (The first event, the
-prefix, is shared among all switches, defaults to -, and can be
-changed in `magit-popup-mode-keymap').
-
-DESC is a string describing the purpose of the argument, it is
-displayed in the popup.
-
-If optional ENABLE is non-nil, then the switch is on by default.
-
-SWITCH is inserted after all other switches already defined for
-POPUP, unless optional PREPEND is non-nil, in which case it is
-placed first.  If optional AT is non-nil, then it should be the
-KEY of another switch already defined for POPUP, the argument
-is then placed before or after AT, depending on PREPEND."
-  (declare (indent defun))
-  (magit-define-popup-key popup :switches key
-    (list desc switch enable) at prepend))
-
-(defun magit-define-popup-option (popup key desc option
-                                        &optional reader value at prepend)
-  "In POPUP, define KEY as OPTION.
-
-POPUP is a popup command defined using `magit-define-popup'.
-OPTION is a string representing an argument that takes a value.
-KEY is a character representing the second event in the sequence
-of keystrokes used to set the argument's value.  (The first
-event, the prefix, is shared among all options, defaults to =,
-and can be changed in `magit-popup-mode-keymap').
-
-DESC is a string describing the purpose of the argument, it is
-displayed in the popup.
-
-If optional VALUE is non-nil then the option is on by default,
-and VALUE is its default value.
-
-READER is used to read a value from the user when the option is
-invoked and does not currently have a value.  (When the option
-has a value, then invoking the option causes it to be unset.)
-This function must take two arguments but may choose to ignore
-them.  The first argument is the name of the option (with \": \"
-appended, unless it ends with \"=\") and can be used as the
-prompt.  The second argument is nil or the value that was in
-effect before the option was unset, which may be suitable as
-initial completion input.  If no reader is specified, then
-`read-from-minibuffer' is used.
-
-OPTION is inserted after all other options already defined for
-POPUP, unless optional PREPEND is non-nil, in which case it is
-placed first.  If optional AT is non-nil, then it should be the
-KEY of another option already defined for POPUP, the argument
-is then placed before or after AT, depending on PREPEND."
-  (declare (indent defun))
-  (magit-define-popup-key popup :options key
-    (list desc option reader value) at prepend))
-
-(defun magit-define-popup-variable (popup key desc command formatter
-                                          &optional at prepend)
-  "In POPUP, define KEY as COMMAND.
-
-POPUP is a popup command defined using `magit-define-popup'.
-COMMAND is a command which calls `magit-popup-set-variable'.
-FORMATTER is a function which calls `magit-popup-format-variable'.
-These two functions have to be called with the same arguments.
-
-KEY is a character representing the event used interactively call
-the COMMAND.
-
-DESC is the variable or a representation thereof.  It's not
-actually used for anything.
-
-COMMAND is inserted after all other commands already defined for
-POPUP, unless optional PREPEND is non-nil, in which case it is
-placed first.  If optional AT is non-nil, then it should be the
-KEY of another command already defined for POPUP, the command
-is then placed before or after AT, depending on PREPEND."
-  (declare (indent defun))
-  (magit-define-popup-key popup :variables key
-    (list desc command formatter) at prepend))
-
-(defun magit-define-popup-action (popup key desc command
-                                        &optional at prepend)
-  "In POPUP, define KEY as COMMAND.
-
-POPUP is a popup command defined using `magit-define-popup'.
-COMMAND can be any command but should usually consume the popup
-arguments in its `interactive' form.
-KEY is a character representing the event used invoke the action,
-i.e. to interactively call the COMMAND.
-
-DESC is a string describing the purpose of the action, it is
-displayed in the popup.
-
-COMMAND is inserted after all other commands already defined for
-POPUP, unless optional PREPEND is non-nil, in which case it is
-placed first.  If optional AT is non-nil, then it should be the
-KEY of another command already defined for POPUP, the command
-is then placed before or after AT, depending on PREPEND."
-  (declare (indent defun))
-  (magit-define-popup-key popup :actions key
-    (list desc command) at prepend))
-
-(defun magit-define-popup-sequence-action
-    (popup key desc command &optional at prepend)
-  "Like `magit-define-popup-action' but for `:sequence-action'."
-  (declare (indent defun))
-  (magit-define-popup-key popup :sequence-actions key
-    (list desc command) at prepend))
-
-(defconst magit-popup-type-plural-alist
-  '((:switch . :switches)
-    (:option . :options)
-    (:variable . :variables)
-    (:action . :actions)
-    (:sequence-action . :sequence-actions)))
-
-(defun magit-popup-pluralize-type (type)
-  (or (cdr (assq type magit-popup-type-plural-alist))
-      type))
-
-(defun magit-define-popup-key
-    (popup type key def &optional at prepend)
-  "In POPUP, define KEY as an action, switch, or option.
-It's better to use one of the specialized functions
-  `magit-define-popup-action',
-  `magit-define-popup-sequence-action',
-  `magit-define-popup-switch',
-  `magit-define-popup-option', or
-  `magit-define-popup-variable'."
-  (declare (indent defun))
-  (setq type (magit-popup-pluralize-type type))
-  (if (memq type '(:switches :options :variables :actions :sequence-actions))
-      (if (boundp popup)
-          (let* ((plist (symbol-value popup))
-                 (value (plist-get plist type))
-                 (elt   (assoc key value)))
-            (if elt
-                (setcdr elt def)
-              (setq elt (cons key def)))
-            (if at
-                (when (setq at (cl-member at value :key 'car-safe :test 'equal))
-                  (setq value (cl-delete key value :key 'car-safe :test 'equal))
-                  (if prepend
-                      (progn (push (car at) (cdr at))
-                             (setcar at elt))
-                    (push elt (cdr at))))
-              (setq value (cl-delete key value :key 'car-safe :test 'equal)))
-            (unless (assoc key value)
-              (setq value (if prepend
-                              (cons elt value)
-                            (append value (list elt)))))
-            (set popup (plist-put plist type value)))
-        (push (list type key def at prepend)
-              (get popup 'magit-popup-deferred)))
-    (error "Unknown popup event type: %s" type)))
-
-(defun magit-define-popup-keys-deferred (popup)
-  (dolist (args (get popup 'magit-popup-deferred))
-    (condition-case err
-        (apply #'magit-define-popup-key popup args)
-      ((debug error)
-       (display-warning 'magit (error-message-string err) :error))))
-  (put popup 'magit-popup-deferred nil))
-
-(defun magit-change-popup-key (popup type from to)
-  "In POPUP, bind TO to what FROM was bound to.
-TYPE is one of `:action', `:sequence-action', `:switch', or
-`:option'.  Bind TO and unbind FROM, both are characters."
-  (--if-let (assoc from (plist-get (symbol-value popup)
-                                   (magit-popup-pluralize-type type)))
-      (setcar it to)
-    (message "magit-change-popup-key: FROM key %c is unbound" from)))
-
-(defun magit-remove-popup-key (popup type key)
-  "In POPUP, remove KEY's binding of TYPE.
-POPUP is a popup command defined using `magit-define-popup'.
-TYPE is one of `:action', `:sequence-action', `:switch', or
-`:option'.  KEY is the character which is to be unbound."
-  (setq type (magit-popup-pluralize-type type))
-  (let* ((plist (symbol-value popup))
-         (alist (plist-get plist type))
-         (value (assoc key alist)))
-    (set popup (plist-put plist type (delete value alist)))))
-
-;;; Invoke
-
-(defvar-local magit-popup-previous-winconf nil)
-
-(defun magit-invoke-popup (popup mode arg)
-  (let* ((def     (symbol-value popup))
-         (val     (symbol-value (plist-get def :variable)))
-         (default (plist-get def :default-action))
-         (local   (plist-get def :use-prefix))
-         (local   (if (functionp local)
-                      (funcall local)
-                    local))
-         (use-prefix (or local magit-popup-use-prefix-argument)))
-    (cond
-     ((or (and (eq use-prefix 'default) arg)
-          (and (eq use-prefix 'popup) (not arg)))
-      (if default
-          (let ((magit-current-popup (list popup 'default))
-                (magit-current-popup-args
-                 (let ((magit-this-popup popup)
-                       (magit-this-popup-events nil))
-                   (magit-popup-default-setup val def)
-                   (magit-popup-get-args))))
-            (when (and arg (listp arg))
-              (setq current-prefix-arg (and (not (= (car arg) 4))
-                                            (list (/ (car arg) 4)))))
-            (call-interactively default))
-        (message "%s has no default action; showing popup instead." popup)
-        (magit-popup-mode-setup popup mode)))
-     ((memq use-prefix '(default popup nil))
-      (magit-popup-mode-setup popup mode)
-      (when magit-popup-show-help-echo
-        (message
-         (format
-          "[%s] show common commands, [%s] describe events, [%s] show manual"
-          (propertize "C-t"   'face 'magit-popup-key)
-          (propertize "?"     'face 'magit-popup-key)
-          (propertize "C-h i" 'face 'magit-popup-key)))))
-     (local
-      (error "Invalid :use-prefix popup property value: %s" use-prefix))
-     (t
-      (error "Invalid magit-popup-use-prefix-argument value: %s" use-prefix)))))
-
-(defun magit-invoke-popup-switch (event)
-  (interactive (list last-command-event))
-  (--if-let (magit-popup-lookup event :switches)
-      (progn
-        (setf (magit-popup-event-use it)
-              (not (magit-popup-event-use it)))
-        (magit-refresh-popup-buffer))
-    (user-error "%c isn't bound to any switch" event)))
-
-(defun magit-invoke-popup-option (event)
-  (interactive (list last-command-event))
-  (--if-let (magit-popup-lookup event :options)
-      (progn
-        (if (magit-popup-event-use it)
-            (setf (magit-popup-event-use it) nil)
-          (let* ((arg (magit-popup-event-arg it))
-                 (val (funcall
-                       (magit-popup-event-fun it)
-                       (concat arg (unless (string-match-p "=$" arg) ": "))
-                       (magit-popup-event-val it))))
-            (setf (magit-popup-event-use it) t)
-            (setf (magit-popup-event-val it) val)))
-        (magit-refresh-popup-buffer))
-    (user-error "%c isn't bound to any option" event)))
-
-(defun magit-invoke-popup-action (event)
-  (interactive (list last-command-event))
-  (let ((action   (magit-popup-lookup event :actions))
-        (variable (magit-popup-lookup event :variables)))
-    (when (and variable (not (magit-popup-event-arg variable)))
-      (setq action variable)
-      (setq variable nil))
-    (cond ((or action variable)
-           (let* ((magit-current-popup magit-this-popup)
-                  (magit-current-popup-args (magit-popup-get-args))
-                  (magit-current-pre-popup-buffer magit-pre-popup-buffer)
-                  (command (magit-popup-event-fun (or action variable)))
-                  (magit-current-popup-action command))
-             (when action
-               (magit-popup-quit))
-             (setq this-command command)
-             (call-interactively command)
-             (unless action
-               (magit-refresh-popup-buffer))))
-          ((eq event ?q)
-           (magit-popup-quit)
-           (when magit-previous-popup
-             (magit-popup-mode-setup magit-previous-popup nil)))
-          (t
-           (user-error "%c isn't bound to any action" event)))))
-
-(defun magit-popup-quit ()
-  "Quit the current popup command without invoking an action."
-  (interactive)
-  (let ((winconf magit-popup-previous-winconf))
-    (if (derived-mode-p 'magit-popup-mode)
-        (kill-buffer)
-      (magit-popup-help-mode -1)
-      (kill-local-variable 'magit-popup-previous-winconf))
-    (when winconf
-      (set-window-configuration winconf))))
-
-(defun magit-popup-read-number (prompt &optional default)
-  "Like `read-number' but DEFAULT may be a numeric string."
-  (read-number prompt (if (stringp default)
-                          (string-to-number default)
-                        default)))
-
-;;; Save
-
-(defun magit-popup-set-default-arguments (arg)
-  "Set default value for the arguments for the current popup.
-Then close the popup without invoking an action; unless a prefix
-argument is used in which case the popup remains open.
-
-For a popup named `NAME-popup' that usually means setting the
-value of the custom option `NAME-arguments'."
-  (interactive "P")
-  (-if-let (var (magit-popup-get :variable))
-      (progn (customize-set-variable var (magit-popup-get-args))
-             (unless arg (magit-popup-quit)))
-    (user-error "Nothing to set")))
-
-(defun magit-popup-save-default-arguments (arg)
-  "Save default value for the arguments for the current popup.
-Then close the popup without invoking an action; unless a prefix
-argument is used in which case the popup remains open.
-
-For a popup named `NAME-popup' that usually means saving the
-value of the custom option `NAME-arguments'."
-  (interactive "P")
-  (-if-let (var (magit-popup-get :variable))
-      (progn (customize-save-variable var (magit-popup-get-args))
-             (unless arg (magit-popup-quit)))
-    (user-error "Nothing to save")))
-
-;;; Help
-
-(defun magit-popup-toggle-show-common-commands ()
-  "Show or hide an additional section with common commands.
-The commands listed in this section are common to all popups
-and are defined in `magit-popup-mode-map' (which see)."
-  (interactive)
-  (setq magit-popup-show-common-commands
-        (not magit-popup-show-common-commands))
-  (magit-refresh-popup-buffer)
-  (fit-window-to-buffer))
-
-(defun magit-popup-help ()
-  "Show help for the argument or action at point."
-  (interactive)
-  (let* ((man (magit-popup-get :man-page))
-         (key (read-key-sequence
-               (concat "Describe key" (and man " (? for manpage)") ": ")))
-         (int (aref key (1- (length key))))
-         (def (or (lookup-key (current-local-map)  key t)
-                  (lookup-key (current-global-map) key))))
-    (pcase def
-      (`magit-invoke-popup-switch
-       (--if-let (magit-popup-lookup int :switches)
-           (if (and (string-prefix-p "++" (magit-popup-event-arg it))
-                    (magit-popup-event-fun it))
-               (magit-popup-describe-function (magit-popup-event-fun it))
-             (magit-popup-manpage man it))
-         (user-error "%c isn't bound to any switch" int)))
-      (`magit-invoke-popup-option
-       (--if-let (magit-popup-lookup int :options)
-           (if (and (string-prefix-p "++" (magit-popup-event-arg it))
-                    (magit-popup-event-fun it))
-               (magit-popup-describe-function (magit-popup-event-fun it))
-             (magit-popup-manpage man it))
-         (user-error "%c isn't bound to any option" int)))
-      (`magit-popup-help
-       (magit-popup-manpage man nil))
-      ((or `self-insert-command
-           `magit-invoke-popup-action)
-       (setq def (or (magit-popup-lookup int :actions)
-                     (magit-popup-lookup int :variables)))
-       (if def
-           (magit-popup-describe-function (magit-popup-event-fun def))
-         (ding)
-         (message nil)))
-      (`nil (ding)
-            (message nil))
-      (_    (magit-popup-describe-function def)))))
-
-(defun magit-popup-manpage (topic arg)
-  (unless topic
-    (user-error "No man page associated with %s"
-                (magit-popup-get :man-page)))
-  (when arg
-    (setq arg (magit-popup-event-arg arg))
-    (when (string-prefix-p "--" arg)
-      ;; handle '--' option and the '--[no-]' shorthand
-      (setq arg (cond ((string= "-- " arg)
-                       "\\(?:\\[--\\] \\)?<[^[:space:]]+>\\.\\.\\.")
-                      ((string-prefix-p "--no-" arg)
-                       (concat "--"
-                               "\\[?no-\\]?"
-                               (substring arg 5)))
-                      (t
-                       (concat "--"
-                               "\\(?:\\[no-\\]\\)?"
-                               (substring arg 2)))))))
-  (let ((winconf (current-window-configuration)) buffer)
-    (pcase magit-popup-manpage-package
-      (`woman (delete-other-windows)
-              (split-window-below)
-              (with-no-warnings ; display-buffer-function is obsolete
-                (let ((display-buffer-alist nil)
-                      (display-buffer-function nil)
-                      (display-buffer-overriding-action nil))
-                  (woman topic)))
-              (setq buffer (current-buffer)))
-      (`man   (cl-letf (((symbol-function #'fboundp) (lambda (_) nil)))
-                (setq buffer (man topic)))
-              (delete-other-windows)
-              (split-window-below)
-              (set-window-buffer (selected-window) buffer)))
-    (with-current-buffer buffer
-      (setq magit-popup-previous-winconf winconf)
-      (magit-popup-help-mode)
-      (fit-window-to-buffer (next-window))
-      (if (and arg
-               (Man-find-section "OPTIONS")
-               (let ((case-fold-search nil)
-                     ;; This matches preceding/proceeding options.
-                     ;; Options such as '-a', '-S[<keyid>]', and
-                     ;; '--grep=<pattern>' are matched by this regex
-                     ;; without the shy group. The '. ' in the shy
-                     ;; group is for options such as '-m
-                     ;; parent-number', and the '-[^[:space:]]+ ' is
-                     ;; for options such as '--mainline parent-number'
-                     (others "-\\(?:. \\|-[^[:space:]]+ \\)?[^[:space:]]+"))
-                 (re-search-forward
-                  ;; should start with whitespace, and may have any
-                  ;; number of options before/after
-                  (format "^[\t\s]+\\(?:%s, \\)*?\\(?1:%s\\)%s\\(?:, %s\\)*$"
-                          others
-                          ;; options don't necessarily end in an '='
-                          ;; (e.g., '--gpg-sign[=<keyid>]')
-                          (string-remove-suffix "=" arg)
-                          ;; Simple options don't end in an '='.
-                          ;; Splitting this into 2 cases should make
-                          ;; getting false positives less likely.
-                          (if (string-suffix-p "=" arg)
-                              ;; [^[:space:]]*[^.[:space:]] matches
-                              ;; the option value, which is usually
-                              ;; after the option name and either '='
-                              ;; or '[='. The value can't end in a
-                              ;; period, as that means it's being used
-                              ;; at the end of a sentence. The space
-                              ;; is for options such as '--mainline
-                              ;; parent-number'.
-                              "\\(?: \\|\\[?=\\)[^[:space:]]*[^.[:space:]]"
-                            ;; Either this doesn't match anything
-                            ;; (e.g., '-a'), or the option is followed
-                            ;; by a value delimited by a '[', '<', or
-                            ;; ':'. A space might appear before this
-                            ;; value, as in '-f <file>'. The space
-                            ;; alternative is for options such as '-m
-                            ;; parent-number'.
-                            "\\(?:\\(?: \\| ?[\\[<:]\\)[^[:space:]]*[^.[:space:]]\\)?")
-                          others)
-                  nil
-                  t)))
-          (goto-char (match-beginning 1))
-        (goto-char (point-min))))))
-
-(defun magit-popup-describe-function (function)
-  (let ((winconf (current-window-configuration)))
-    (delete-other-windows)
-    (split-window-below)
-    (other-window 1)
-    (with-no-warnings ; display-buffer-function is obsolete
-      (let ((display-buffer-alist '(("" display-buffer-use-some-window)))
-            (display-buffer-function nil)
-            (display-buffer-overriding-action nil)
-            (help-window-select nil))
-        (describe-function function)))
-    (fit-window-to-buffer)
-    (other-window 1)
-    (setq magit-popup-previous-winconf winconf)
-    (magit-popup-help-mode)))
-
-(defun magit-popup-info ()
-  "Show the popup manual."
-  (interactive)
-  (let ((winconf (current-window-configuration)))
-    (delete-other-windows)
-    (split-window-below)
-    (info "(magit-popup.info)Usage")
-    (magit-popup-help-mode)
-    (setq magit-popup-previous-winconf winconf))
-  (magit-popup-help-mode)
-  (fit-window-to-buffer (next-window)))
-
-(define-minor-mode magit-popup-help-mode
-  "Auxiliary minor mode used to restore previous window configuration.
-When some sort of help buffer is created from within a popup,
-then this minor mode is turned on in that buffer, so that when
-the user quits it, the previous window configuration is also
-restored."
-  :keymap '(([remap Man-quit]    . magit-popup-quit)
-            ([remap Info-exit]   . magit-popup-quit)
-            ([remap quit-window] . magit-popup-quit)))
-
-;;; Modes
-
-(define-derived-mode magit-popup-mode fundamental-mode "MagitPopup"
-  "Major mode for infix argument popups."
-  :mode 'magit-popup
-  (setq truncate-lines t)
-  (setq buffer-read-only t)
-  (setq-local scroll-margin 0)
-  (setq-local magit-popup-show-common-commands magit-popup-show-common-commands)
-  (hack-dir-local-variables-non-file-buffer))
-
-(put 'magit-popup-mode 'mode-class 'special)
-
-(defun magit-popup-default-setup (val def)
-  (if (--when-let (magit-popup-get :sequence-predicate)
-        (funcall it))
-      (magit-popup-put :actions (magit-popup-convert-actions
-                                 val (magit-popup-get :sequence-actions)))
-    (let ((vars (plist-get def :variables)))
-      (when (functionp vars)
-        (setq vars (funcall vars)))
-      (when vars
-        (magit-popup-put :variables (magit-popup-convert-variables val vars))))
-    (magit-popup-put :switches (magit-popup-convert-switches
-                                val (plist-get def :switches)))
-    (magit-popup-put :options  (magit-popup-convert-options
-                                val (plist-get def :options)))
-    (magit-popup-put :actions  (magit-popup-convert-actions
-                                val (plist-get def :actions)))))
-
-(defun magit-popup-mode-setup (popup mode)
-  (setq magit-previous-popup magit-current-popup)
-  (let ((val (symbol-value (plist-get (symbol-value popup) :variable)))
-        (def (symbol-value popup))
-        (buf (current-buffer)))
-    (magit-popup-mode-display-buffer (get-buffer-create
-                                      (format "*%s*" popup))
-                                     (or mode 'magit-popup-mode))
-    (setq magit-this-popup popup)
-    (setq magit-pre-popup-buffer buf)
-    (if (bound-and-true-p magit-popup-setup-hook) ; obsolete
-        (run-hook-with-args 'magit-popup-setup-hook val def)
-      (funcall (or (magit-popup-get :setup-function)
-                   'magit-popup-default-setup)
-               val def)))
-  (magit-refresh-popup-buffer)
-  (fit-window-to-buffer nil nil (line-number-at-pos (point-max))))
-
-(defun magit-popup-mode-display-buffer (buffer mode)
-  (let ((winconf (current-window-configuration)))
-    (select-window (display-buffer buffer magit-popup-display-buffer-action))
-    (funcall mode)
-    (setq magit-popup-previous-winconf winconf)))
-
-(defvar magit-refresh-popup-buffer-hook nil
-  "Hook run by `magit-refresh-popup-buffer'.
-
-The hook is run right after inserting the representation of the
-popup events but before optionally inserting the representation
-of events shared by all popups and before point is adjusted.")
-
-(defun magit-refresh-popup-buffer ()
-  (let* ((inhibit-read-only t)
-         (button (button-at (point)))
-         (prefix (and button (button-get button 'prefix)))
-         (event  (and button (button-get button 'event))))
-    (erase-buffer)
-    (save-excursion
-      (--if-let (magit-popup-get :refresh-function)
-          (funcall it)
-        (magit-popup-insert-section 'magit-popup-variable-button)
-        (magit-popup-insert-section 'magit-popup-switch-button)
-        (magit-popup-insert-section 'magit-popup-option-button)
-        (magit-popup-insert-section 'magit-popup-action-button))
-      (run-hooks 'magit-refresh-popup-buffer-hook)
-      (when magit-popup-show-common-commands
-        (magit-popup-insert-command-section
-         'magit-popup-internal-command-button
-         magit-popup-common-commands)))
-    (set-buffer-modified-p nil)
-    (when event
-      (while (and (ignore-errors (forward-button 1))
-                  (let ((b (button-at (point))))
-                    (or (not (equal (button-get b 'prefix) prefix))
-                        (not (equal (button-get b 'event)  event)))))))))
-
-;;; Draw
-
-(defvar magit-popup-min-padding 3
-  "Minimal amount of whitespace between columns in popup buffers.")
-
-(defun magit-popup-insert-section (type &optional spec heading)
-  (if (not spec)
-      (progn (setq spec (magit-popup-get (button-type-get type 'property)))
-             (when spec
-               (if (or (stringp (car spec))
-                       (functionp (car spec)))
-                   (--each (--partition-by-header
-                            (or (stringp it) (functionp it))
-                            spec)
-                     (magit-popup-insert-section type (cdr it) (car it)))
-                 (magit-popup-insert-section type spec))))
-    (let* ((formatter (button-type-get type 'formatter))
-           (items (mapcar (lambda (ev)
-                            (and ev (or (funcall formatter type ev) '(""))))
-                          (or spec (magit-popup-get
-                                    (button-type-get type 'property)))))
-           (maxcols (button-type-get type 'maxcols))
-           (pred (magit-popup-get :sequence-predicate)))
-      (when items
-        (if (functionp heading)
-            (when (setq heading (funcall heading))
-              (insert heading ?\n))
-          (unless heading
-            (setq heading (button-type-get type 'heading)))
-          (insert (propertize heading 'face 'magit-popup-heading))
-          (unless (string-match "\n$" heading)
-            (insert "\n")))
-        (if (and pred (funcall pred))
-            (setq maxcols nil)
-          (cl-typecase maxcols
-            (keyword (setq maxcols (magit-popup-get maxcols)))
-            (symbol  (setq maxcols (symbol-value maxcols)))))
-        (when (functionp maxcols)
-          (setq maxcols (funcall maxcols heading)))
-        (when heading
-          (let ((colwidth
-                 (+ (apply 'max (mapcar (lambda (e) (length (car e))) items))
-                    magit-popup-min-padding)))
-            (dolist (item items)
-              (unless (bolp)
-                (let ((padding (- colwidth (% (current-column) colwidth))))
-                  (if (and (< (+ (current-column) padding colwidth)
-                              (window-width))
-                           (< (ceiling (/ (current-column) (* colwidth 1.0)))
-                              (or maxcols 1000)))
-                      (insert (make-string padding ?\s))
-                    (insert "\n"))))
-              (unless (equal item '(""))
-                (if item
-                    (apply 'insert-button item)
-                  (insert ?\s)))))
-          (insert (if (= (char-before) ?\n) "\n" "\n\n")))))))
-
-(defun magit-popup-format-argument-button (type ev)
-  (list (format-spec
-         (button-type-get type 'format)
-         `((?k . ,(propertize (concat
-                               (--when-let (button-type-get type 'prefix)
-                                 (char-to-string it))
-                               (magit-popup-event-keydsc ev))
-                              'face 'magit-popup-key))
-           (?d . ,(magit-popup-event-dsc ev))
-           (?a . ,(propertize (magit-popup-event-arg ev)
-                              'face (if (magit-popup-event-use ev)
-                                        'magit-popup-argument
-                                      'magit-popup-disabled-argument)))
-           (?v . ,(let ((val (magit-popup-event-val ev)))
-                    (if (and (magit-popup-event-use ev)
-                             (not (equal val "")))
-                        (propertize (format "\"%s\"" val)
-                                    'face 'magit-popup-option-value)
-                      "")))))
-        'type type 'event (magit-popup-event-key ev)))
-
-(defun magit-popup-format-variable-button (type ev)
-  (if (not (magit-popup-event-arg ev))
-      (magit-popup-format-action-button 'magit-popup-action-button ev)
-    (list (format-spec
-           (button-type-get type 'format)
-           `((?k . ,(propertize (magit-popup-event-keydsc ev)
-                                'face 'magit-popup-key))
-             (?d . ,(funcall (magit-popup-event-arg ev)))))
-          'type type 'event (magit-popup-event-key ev))))
-
-(defun magit-popup-format-action-button (type ev)
-  (let* ((cmd (magit-popup-event-fun ev))
-         (dsc (magit-popup-event-dsc ev))
-         (fun (and (functionp dsc) dsc)))
-    (unless (and disabled-command-function
-                 (symbolp cmd)
-                 (get cmd 'disabled))
-      (when fun
-        (setq dsc
-              (-when-let (branch (funcall fun))
-                (if (text-property-not-all 0 (length branch) 'face nil branch)
-                    branch
-                  (magit-branch-set-face branch)))))
-      (when dsc
-        (list (format-spec
-               (button-type-get type 'format)
-               `((?k . ,(propertize (magit-popup-event-keydsc ev)
-                                    'face 'magit-popup-key))
-                 (?d . ,dsc)
-                 (?D . ,(if (and (not fun)
-                                 (eq cmd (magit-popup-get :default-action)))
-                            (propertize dsc 'face 'bold)
-                          dsc))))
-              'type type 'event (magit-popup-event-key ev))))))
-
-(defun magit-popup-insert-command-section (type spec)
-  (magit-popup-insert-section
-   type (mapcar (lambda (elt)
-                  (list (car (where-is-internal (cadr elt)
-                                                (current-local-map)))
-                        (car elt)))
-                spec)))
-
-(defun magit-popup-format-command-button (type elt)
-  (nconc (magit-popup-format-action-button
-          type (make-magit-popup-event :key (car  elt)
-                                       :dsc (cadr elt)))
-         (list 'function (lookup-key (current-local-map) (car elt)))))
-
-;;; Utilities
-
-(defun magit-popup-import-file-args (args files)
-  (if files
-      (cons (concat "-- " (mapconcat #'identity files ",")) args)
-    args))
-
-(defun magit-popup-export-file-args (args)
-  (let ((files (--first (string-prefix-p "-- " it) args)))
-    (when files
-      (setq args  (remove files args))
-      (setq files (split-string (substring files 3) ",")))
-    (list args files)))
-
-(defconst magit-popup-font-lock-keywords
-  (eval-when-compile
-    `((,(concat "(\\(magit-define-popup\\)\\_>"
-                "[ \t'\(]*"
-                "\\(\\(?:\\sw\\|\\s_\\)+\\)?")
-       (1 'font-lock-keyword-face)
-       (2 'font-lock-function-name-face nil t)))))
-
-(font-lock-add-keywords 'emacs-lisp-mode magit-popup-font-lock-keywords)
-
-;;; _
-(provide 'magit-popup)
-;; Local Variables:
-;; indent-tabs-mode: nil
-;; End:
-;;; magit-popup.el ends here
diff --git a/elpa/magit-popup-20181003.921/magit-popup.elc b/elpa/magit-popup-20181003.921/magit-popup.elc
deleted file mode 100644
index 31a0f7e..0000000
--- a/elpa/magit-popup-20181003.921/magit-popup.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/magit-popup-20181003.921/magit-popup.info b/elpa/magit-popup-20181003.921/magit-popup.info
deleted file mode 100644
index 2c1e18f..0000000
--- a/elpa/magit-popup-20181003.921/magit-popup.info
+++ /dev/null
@@ -1,745 +0,0 @@
-This is magit-popup.info, produced by makeinfo version 6.5 from
-magit-popup.texi.
-
-     Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-INFO-DIR-SECTION Emacs
-START-INFO-DIR-ENTRY
-* Magit-Popup: (magit-popup). Infix arguments with feedback.
-END-INFO-DIR-ENTRY
-
-
-File: magit-popup.info,  Node: Top,  Next: Introduction,  Up: (dir)
-
-Magit-Popup User Manual
-***********************
-
-Taking inspiration from regular prefix commands and prefix arguments,
-this library implements a similar abstraction; a new kind of prefix
-command that is associated with a specific set of infix arguments and
-suffix commands.
-
-This manual is for Magit-Popup version 2.12.4 (v2.12.4+1).
-
-     Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-* Menu:
-
-* Introduction::
-* Usage::
-* Defining Prefix and Suffix Commands::
-
-— The Detailed Node Listing —
-
-Usage
-
-* Customizing Existing Popups::
-* Other Options::
-
-Defining Prefix and Suffix Commands
-
-* Defining Prefix Commands::
-* Defining Suffix Commands::
-
-
-
-File: magit-popup.info,  Node: Introduction,  Next: Usage,  Prev: Top,  Up: Top
-
-1 Introduction
-**************
-
-Taking inspiration from regular prefix commands and prefix arguments,
-this library implements a similar abstraction; a new kind of prefix
-command that is associated with a specific set of infix arguments and
-suffix commands.
-
-   Invoking such a prefix command displays a popup buffer which lists
-the associated infix arguments and suffix commands.  In that buffer each
-argument is prefixed with the key sequence that can be used to toggle it
-or change its value.  Likewise each suffix command is prefixed with the
-key used to invoke it.  Such a popup buffer might look like this:
-
-     ,-----------------------------------------
-     |Switches
-     | -l Show graph (--graph)
-     | -d Show refnames (--decorate)
-     |
-     |Options
-     | =m Search messages (--grep="popup")
-     | =p Search patches (-G)
-     |
-     |Action
-     | l Show log for current branch
-     | o Show log for another branch
-     '-----------------------------------------
-
-   The user could then for example type ‘-l’ to toggle the ‘--graph’
-*switch* (when it is on then it is shown in green, otherwise in gray),
-or ‘=m’ to change the value of the *option* ‘--grep’.
-
-   Once all arguments are as desired one invokes a suffix command, which
-causes the popup buffer to disappear.  The suffix command should then
-retrieve the infix arguments in its ‘interactive’ form like this is done
-for prefix arguments.
-
-   While such "prefix-infix-suffix" combos were inspired by regular
-prefix commands and prefix arguments, they are also quite different.
-This should illustrate the most basic differences:
-
-   • A regular prefix command
-
-                  /- command1
-          prefix --- command2
-                  \- command3
-
-   • Prefix arguments
-
-                   /- command1
-          C-u ... --- command2
-                   \- well any command
-
-   • A Prefix-Infix-Suffix combo
-
-                   /- argument1 -\ /- suffix1
-          prefix----- argument2 --+-- suffix2
-                 ^ \- argument3 -/
-                 |        |
-                 '--------'
-              (refresh buffer)
-
-   This library was written as a replacement for ‘magit-key-mode’, which
-was used in Magit releases before 2.1.0.  It is used to implement all
-"popups" in the current Magit release but a future release will switch
-to yet another implementation.
-
-   This library does not depend on any other Magit libraries and it is
-distributed as a separate package, which makes it possible to use it in
-packages that are not related to Magit.  But keep in mind that it will
-be deprecated eventually.
-
-
-File: magit-popup.info,  Node: Usage,  Next: Defining Prefix and Suffix Commands,  Prev: Introduction,  Up: Top
-
-2 Usage
-*******
-
-Every popup buffers created with a prefix command contains a section
-named "Actions" listing the available suffix commands.  Most buffers
-also contain a "Switches" and/or an "Options" section which list the two
-types of infix arguments separately.
-
-   Switches are arguments that can be toggled on or off.  When a switch
-is active then it is shown in color, when it is off then it is shown in
-gray (of course the details depend on the color theme in use).
-
-   Options are arguments that have a value.  When an option has a value
-then that is shown after the option itself.  Because for some options
-the empty string is a valid value, options are additionally colorized
-like switches to indicate whether they are active or not.
-
-   The events bound to suffix commands are always single alphabetic
-characters.  The bindings for arguments are always two events long.  For
-switches the first key is always ‘-’, for options it is always ‘=’.  The
-second key is always an alphabetic character.
-
-   By default popup buffers also feature a section listing commands
-common to all popups.  To avoid conflicts with suffix commands, the
-bindings of these common commands are not alphabetic characters.  This
-section is shown by default so that documentation-resistant users get a
-chance to notice them.
-
- -- User Option: magit-popup-show-common-commands
-
-     This option controls whether the section that lists the commands
-     that are common to all popups is initially shown.
-
-     By default this is not the case, but note that you can temporarily
-     show this section using ‘C-t’, which therefore is the only common
-     command you actually have to memorize.
-
-‘C-t’     (‘magit-popup-toggle-show-common-commands’)
-
-     Show or hide the section listing the commands shared by all popups.
-
-‘C-g’     (‘magit-popup-quit’)
-
-     Quit popup buffer without invoking a suffix command.
-
-   Without further action, setting arguments only affects the next
-suffix command.  Invoking the same prefix command again resets the
-arguments to their default value, but the defaults can be changed
-directly from the popup buffer itself.  For a prefix command named
-‘NAME-popup’ the default values are stored as the value of the custom
-option named ‘NAME-arguments’.  While this option can be customized
-using the Custom interface, it is better to do so directly from the
-popup buffer.
-
-‘C-c C-c’     (‘magit-popup-set-default-arguments’)
-
-     This sets the default value for the arguments for the current
-     popup.
-
-     Then the popup buffer is closed without invoking a suffix command;
-     unless a prefix argument is used in which case the popup remains
-     open.
-
-‘C-x C-s’     (‘magit-popup-save-default-arguments’)
-
-     This sets the default value for the arguments for the current popup
-     and saves it for future Emacs sessions.
-
-     Then the popup buffer is closed without invoking an action; unless
-     a prefix argument is used in which case the popup remains open.
-
-   It is also possible to add additional arguments and commands to an
-existing popup, but that cannot be done directly from the popup (or the
-Custom interface).  See *note Customizing Existing Popups::.
-
-   Documentation about a popup’s arguments and commands can be shown
-directly from the popup.
-
-‘C-h i’     (‘magit-popup-info’)
-
-     Show this manual.
-
-‘?’     (‘magit-popup-help’)
-
-     This command reads a key sequence and then shows the documentation
-     of the argument or command that sequence is bound to.  In other
-     words type the same keys that you would use to invoke the argument
-     or command, but prefix the sequence with ‘?’.
-
-     For suffix commands this shows the doc-string.  For arguments this
-     command can only show something for popups that have an associated
-     man-page.  If the man-page is set, then this command displays it in
-     a separate buffer and puts point on the entry about the argument in
-     question.
-
-     The buffer which is used to display the documentation is selected.
-     Simply press ‘q’ to leave that buffer and restore the old window
-     configuration.
-
-   While it isn’t very useful, it is possible to move around in a popup
-buffer using ‘C-p’ and ‘C-n’, and to invoke the argument or command at
-point using ‘RET’.  But it is much more efficient to use the dedicated
-key bindings instead, so these commands are not listed in popup buffers
-along with the other common commands.
-
-* Menu:
-
-* Customizing Existing Popups::
-* Other Options::
-
-
-File: magit-popup.info,  Node: Customizing Existing Popups,  Next: Other Options,  Up: Usage
-
-2.1 Customizing Existing Popups
-===============================
-
-It is possible to define additional infix arguments and suffix commands
-to an existing popup using the following functions.
-
-   You can find some examples which use the below commands at
-<https://github.com/magit/magit/wiki/Additional-proposed-infix-arguments-and-suffix-commands>.
-
- -- Function: magit-define-popup-switch popup key desc switch &optional
-          enable at prepend
-
-     In POPUP, define KEY as SWITCH.
-
-     POPUP is a popup command defined using ‘magit-define-popup’.
-     SWITCH is a string representing an argument that takes no value.
-     KEY is a character representing the second event in the sequence of
-     keystrokes used to toggle the argument.  (The first event, the
-     prefix, is shared among all switches, defaults to ‘-’, and can be
-     changed in ‘magit-popup-mode-keymap’).
-
-     DESC is a string describing the purpose of the argument, it is
-     displayed in the popup.
-
-     If optional ENABLE is non-nil then the switch is on by default.
-
-     SWITCH is inserted after all other switches already defined for
-     POPUP, unless optional PREPEND is non-nil, in which case it is
-     placed first.  If optional AT is non-nil then it should be the KEY
-     of another switch already defined for POPUP, the argument is then
-     placed before or after AT, depending on PREPEND.
-
- -- Function: magit-define-popup-option popup key desc option &optional
-          reader value at prepend
-
-     In POPUP, define KEY as OPTION.
-
-     POPUP is a popup command defined using ‘magit-define-popup’.
-     OPTION is a string representing an argument that takes a value.
-     KEY is a character representing the second event in the sequence of
-     keystrokes used to set the argument’s value.  (The first event, the
-     prefix, is shared among all options, defaults to ‘=’, and can be
-     changed in ‘magit-popup-mode-keymap’).
-
-     DESC is a string describing the purpose of the argument, it is
-     displayed in the popup.
-
-     If optional VALUE is non-nil then the option is on by default, and
-     VALUE is its default value.
-
-     READER is used to read a value from the user when the option is
-     invoked and does not currently have a value.  (When the option has
-     a value, then invoking the option causes it to be unset.)  This
-     function must take two arguments but may choose to ignore them.
-     The first argument is the name of the option (with ": \" appended,
-     unless it ends with "=") and can be used as the prompt.  The second
-     argument is nil or the value that was in effect before the option
-     was unset, which may be suitable as initial completion input.  If
-     no reader is specified, then ‘read-from-minibuffer’ is used.
-
-     OPTION is inserted after all other options already defined for
-     POPUP, unless optional PREPEND is non-nil, in which case it is
-     placed first.  If optional AT is non-nil then it should be the KEY
-     of another option already defined for POPUP, the argument is then
-     placed before or after AT, depending on PREPEND.
-
- -- Function: magit-define-popup-action popup key desc command &optional
-          at prepend
-
-     In POPUP, define KEY as COMMAND.
-
-     POPUP is a popup command defined using ‘magit-define-popup’.
-     COMMAND can be any command but should usually consume the popup
-     arguments in its ‘interactive’ form.  KEY is a character
-     representing the event used invoke the action, i.e.  to
-     interactively call the COMMAND.
-
-     DESC is a string describing the purpose of the action, it is
-     displayed in the popup.
-
-     COMMAND is inserted after all other commands already defined for
-     POPUP, unless optional PREPEND is non-nil, in which case it is
-     placed first.  If optional AT is non-nil then it should be the KEY
-     of another command already defined for POPUP, the command is then
-     placed before or after AT, depending on PREPEND.
-
- -- Function: magit-define-popup-sequence-action popup key desc command
-          &optional at prepend
-
-     Like ‘magit-define-popup-action’, but modifies the value of the
-     ‘:sequence-actions’ property instead of ‘:actions’.
-
- -- Function: magit-define-popup-variable popup key desc command
-          formatter &optional at prepend
-
-     In POPUP, define KEY as COMMAND.
-
-     POPUP is a popup command defined using ‘magit-define-popup’.
-     COMMAND is a command which calls ‘magit-popup-set-variable’.
-     FORMATTER is a function which calls ‘magit-popup-format-variable’.
-     These two functions have to be called with the same arguments.
-
-     KEY is a character representing the event used interactively call
-     the COMMAND.
-
-     DESC is the variable or a representation thereof.  It’s not
-     actually used for anything.
-
-     COMMAND is inserted after all other commands already defined for
-     POPUP, unless optional PREPEND is non-nil, in which case it is
-     placed first.  If optional AT is non-nil then it should be the KEY
-     of another command already defined for POPUP, the command is then
-     placed before or after AT, depending on PREPEND."
-
- -- Function: magit-change-popup-key popup type from to
-
-     In POPUP, bind TO to what FROM was bound to.  TYPE is one of
-     ‘:action’, ‘:sequence-action’, ‘:switch’, or ‘:option’.  Bind TO
-     and unbind FROM, both are characters.
-
- -- Function: magit-remove-popup-key popup type key
-
-     In POPUP, remove KEY’s binding of TYPE.  POPUP is a popup command
-     defined using ‘magit-define-popup’.  TYPE is one of ‘:action’,
-     ‘:sequence-action’, ‘:switch’, or ‘:option’.  KEY is the character
-     which is to be unbound.
-
-   It is also possible to change other aspects of a popup by setting a
-property using ‘plist-put’.  See *note Defining Prefix Commands:: for
-valid properties.  The most likely change Magit users might want to make
-is:
-
-     (plist-put magit-show-refs-popup :use-prefix nil)
-
-
-File: magit-popup.info,  Node: Other Options,  Prev: Customizing Existing Popups,  Up: Usage
-
-2.2 Other Options
-=================
-
- -- User Option: magit-popup-use-prefix-argument
-
-     This option controls the effect that the use of a prefix argument
-     before entering a popup has.
-
-        • ‘default’
-
-          With a prefix argument directly invoke the popup’s default
-          action (an Emacs command), instead of bringing up the popup.
-
-        • ‘popup’
-
-          With a prefix argument bring up the popup, otherwise directly
-          invoke the popup’s default action.
-
-        • ‘nil’
-
-          Ignore prefix arguments.
-
-     This option can be overridden for individual popups.
-     ‘magit-show-refs-popup’ for example defaults to invoking the
-     default action directly.  It only shows the popup buffer when a
-     prefix argument is used.  See *note Customizing Existing Popups::.
-
- -- User Option: magit-popup-manpage-package
-
-     The Emacs package used to display man-pages, one of ‘man’ or
-     ‘woman’.
-
- -- User Option: magit-popup-display-buffer-action
-
-     The option controls how the window used to display a popup buffer
-     is created.  Popup buffers are displayed using ‘display-buffer’
-     with the value of this option as ACTION argument.  You can also set
-     this to nil and instead add an entry to ‘display-buffer-alist’.
-
-   To emphasize the default action by making it bold use this:
-
-     (button-type-put 'magit-popup-action-button 'format " %k %D")
-
-
-File: magit-popup.info,  Node: Defining Prefix and Suffix Commands,  Prev: Usage,  Up: Top
-
-3 Defining Prefix and Suffix Commands
-*************************************
-
-If you write an extension for Magit then you should use this library now
-and later when ‘transient’ is released port to that.
-
-   If you are considering using this library to define popups for
-packages not related to Magit, then keep in mind that it will be
-superseded eventually.  Once ‘transient’ has been released I will only
-fix bugs in ‘magit-popup’ but not implement any new features.
-
-   Also consider using ‘hydra’ instead.  To some extend ‘magit-popup’
-and ‘hydra’ are similar but have a different focus.  The main purpose of
-‘magit-popup’ is to pass infix arguments to suffix commands.  If all you
-need is a command dispatcher then you are better of using ‘hydra’.  Of
-course ‘hydra’ may also be a better fit not only because of the features
-it lacks, but also because of the features it provides, which are in
-turn missing from ‘magit-popup’.
-
-   Here is an example of how one defines a prefix command along with its
-infix arguments, and then also one of its suffix commands.
-
-     ;;;###autoload (autoload 'magit-tag-popup "magit" nil t)
-     (magit-define-popup magit-tag-popup
-       "Show popup buffer featuring tagging commands."
-       'magit-commands
-       :man-page "git-tag"
-       :switches '((?a "Annotate" "--annotate")
-                   (?s "Sign"     "--sign")
-                   (?f "Force"    "--force"))
-       :actions  '((?t "Create"   magit-tag)
-                   (?k "Delete"   magit-tag-delete)
-                   (?p "Prune"    magit-tag-prune))
-       :default-action 'magit-tag)
-
-     ;;;###autoload
-     (defun magit-tag (name rev &optional args)
-       "Create a new tag with the given NAME at REV."
-       (interactive (list (magit-read-tag "Tag name")
-                          (magit-read-branch-or-commit "Place tag on")
-                          (magit-tag-arguments)))
-       (magit-run-git-with-editor "tag" args name rev))
-
-* Menu:
-
-* Defining Prefix Commands::
-* Defining Suffix Commands::
-
-
-File: magit-popup.info,  Node: Defining Prefix Commands,  Next: Defining Suffix Commands,  Up: Defining Prefix and Suffix Commands
-
-3.1 Defining Prefix Commands
-============================
-
-Prefix commands and their infix arguments are defined using the macro
-‘magit-define-popup’.  The key bindings and descriptions of suffix
-commands are also defined using that macro, but the actual interactive
-commands have to be defined separately using plain ‘defun’.
-
- -- Macro: magit-define-popup name doc [group [mode [option]]] :keyword
-          value...
-
-     This macro defines a popup named NAME.  The NAME should begin with
-     the package prefix and by convention end with ‘-popup’, it is used
-     as the name of the command which shows the popup and for an
-     internal variable (whose value is used to store information about
-     the popup and should not be accessed directly).  DOC is the
-     doc-string of the popup command.
-
-     This macro also defines an option and a function both named
-     ‘SHORTNAME-arguments’, where SHORTNAME is NAME with the trailing
-     ‘-popup’ removed.  The name of this option and this function can be
-     overwritten using the optional argument OPTION, but that is rarely
-     advisable.  As a special case if OPTION is specified but ‘nil’,
-     then this option and this function are not defined at all, which is
-     useful for popups that are used as simple dispatchers that offer no
-     arguments.
-
-     The option ‘SHORTNAME-arguments’ holds the value for the popup
-     arguments.  It can be customized from within the popup or using the
-     Custom interface.  It can also have a buffer local value in any
-     non-popup buffer.  The local value for the buffer from which the
-     popup command was invoked, can be set from within the popup buffer.
-
-     The function ‘SHORTNAME-arguments’ returns the currently effective
-     value of the variable by the same name.  See below for more
-     information.
-
-     Optional argument GROUP specifies the Custom group into which the
-     option is placed.  If omitted then the option is placed into some
-     group the same way it is done when directly using ‘defcustom’ and
-     omitting the group, except when NAME begins with "magit-", in which
-     case the group ‘magit-git-arguments’ is used.
-
-     The optional argument MODE specifies the mode used by the popup
-     buffer.  If it is omitted or ‘nil’ then ‘magit-popup-mode’ is used.
-
-     The remaining arguments should have the form ‘[KEYWORD VALUE]...’.
-
-     The following keywords are meaningful (and by convention are
-     usually specified in that order):
-
-        • ‘:actions’
-
-          The actions which can be invoked from the popup.  VALUE is a
-          list whose members have the form (KEY DESC COMMAND), see
-          ‘magit-define-popup-action’ for details.
-
-          Actions are regular Emacs commands, which usually have an
-          ‘interactive’ form setup to consume the values of the popup
-          ‘:switches’ and ‘:options’ when invoked from the corresponding
-          popup, else when invoked as the default action or directly
-          without using the popup, the default value of the variable
-          ‘SHORTNAME-arguments’.  This is usually done by calling the
-          function ‘SHORTNAME-arguments’.
-
-          Members of VALUE may also be strings and functions, assuming
-          the first member is a string or function.  In that case the
-          members are split into sections and these special elements are
-          used as headings.  If such an element is a function then it is
-          called with no arguments and must return either a string,
-          which is used as the heading, or nil, in which case the
-          section is not inserted.
-
-          Members of VALUE may also be nil.  This should only be used
-          together with ‘:max-action-columns’ and allows having gaps in
-          the action grit, which can help arranging actions sensibly.
-
-        • ‘:default-action’
-
-          The default action of the popup which is used directly instead
-          of displaying the popup buffer, when the popup is invoked with
-          a prefix argument.  Also see ‘magit-popup-use-prefix-argument’
-          and ‘:use-prefix’, which can be used to inverse the meaning of
-          the prefix argument.
-
-        • ‘:use-prefix’
-
-          Controls when to display the popup buffer and when to invoke
-          the default action (if any) directly.  This overrides the
-          global default set using ‘magit-popup-use-prefix-argument’.
-          The value, if specified, should be one of ‘default’ or
-          ‘prefix’, or a function that is called with no arguments and
-          returns one of these symbols.
-
-        • ‘:max-action-columns’
-
-          The maximum number of actions to display on a single line, a
-          number or a function that return a number and takes the name
-          of the section currently being inserted as argument.  If there
-          isn’t enough room to display as many columns as specified
-          here, then fewer are used.
-
-        • ‘:switches’
-
-          The popup arguments which can be toggled on and off.  VALUE is
-          a list whose members have the form ‘(KEY DESC SWITCH)’, see
-          ‘magit-define-popup-switch’ for details.
-
-          Members of VALUE may also be strings and functions, assuming
-          the first member is a string or function.  In that case the
-          members are split into sections and these special elements are
-          used as headings.  If such an element is a function then it is
-          called with no arguments and must return either a string,
-          which is used as the heading, or nil, in which case the
-          section is not inserted.
-
-        • ‘:options’
-
-          The popup arguments which take a value, as in "–opt~OPTVAL".
-          VALUE is a list whose members have the form ‘(KEY DESC OPTION
-          READER)’, see ‘magit-define-popup-option’ for details.
-
-          Members of VALUE may also be strings and functions, assuming
-          the first member is a string or function.  In that case the
-          members are split into sections and these special elements are
-          used as headings.  If such an element is a function then it is
-          called with no arguments and must return either a string,
-          which is used as the heading, or nil, in which case the
-          section is not inserted.
-
-        • ‘:default-arguments’
-
-          The default arguments, a list of switches (which are then
-          enabled by default) and options with there default values, as
-          in ‘"--OPT=OPTVAL"’.
-
-        • ‘:variables’
-
-          Variables which can be set from the popup.  VALUE is a list
-          whose members have the form ‘(KEY DESC COMMAND FORMATTER)’,
-          see ‘magit-define-popup-variable’ for details.
-
-          Members of VALUE may also be strings and functions, assuming
-          the first member is a string or function.  In that case the
-          members are split into sections and these special elements are
-          used as headings.  If such an element is a function then it is
-          called with no arguments and must return either a string,
-          which is used as the heading, or nil, in which case the
-          section is not inserted.
-
-          Members of VALUE may also be actions as described above for
-          ‘:actions’.
-
-          VALUE may also be a function that returns a list as describe
-          above.
-
-        • ‘:sequence-predicate’
-
-          When this function returns non-nil, then the popup uses
-          ‘:sequence-actions’ instead of ‘:actions’, and does not show
-          the ‘:switches’ and ‘:options’.
-
-        • ‘:sequence-actions’
-
-          The actions which can be invoked from the popup, when
-          ‘:sequence-predicate’ returns non-nil.
-
-        • ‘:setup-function’
-
-          When this function is specified, then it is used instead of
-          ‘magit-popup-default-setup’.
-
-        • ‘:refresh-function’
-
-          When this function is specified, then it is used instead of
-          calling ‘magit-popup-insert-section’ three times with symbols
-          ‘magit-popup-switch-button’, ‘magit-popup-option-button’, and
-          finally ‘magit-popup-action-button’ as argument.
-
-        • ‘:man-page’
-
-          The name of the manpage to be displayed when the user requests
-          help for an argument.
-
-
-File: magit-popup.info,  Node: Defining Suffix Commands,  Prev: Defining Prefix Commands,  Up: Defining Prefix and Suffix Commands
-
-3.2 Defining Suffix Commands
-============================
-
-Commands intended to be invoked from a particular popup should determine
-the currently effective arguments by calling the function
-‘SHORTNAME-arguments’ inside their ‘interactive’ form.  This function is
-created by the ‘magit-define-popup’ macro.  For a popup named
-‘prefix-foo-popup’ the name of this function is ‘prefix-foo-arguments’.
-
-   When the command was invoked as an action in the respective popup,
-then this function returns the arguments that were set in the popup.
-Otherwise when the command was invoked as the default of the popup (by
-calling the popup command with a prefix argument), or without using the
-popup command at all, then this function returns the buffer-local or
-global value of the variable ‘SHORTNAME-arguments’.
-
-   Internally arguments are handled as a list of strings.  This might
-not be appropriate for the intended use inside commands, or it might be
-necessary to manipulate that list somehow, i.e.  to split "–ARG=VAL"
-into "–ARG""VAL". This should be done by advising or redefining the
-function ‘SHORTNAME-arguments’.
-
-   Internally ‘SHORNAME-arguments’ used following variables and
-function.  Except when redefining the former, you should not use these
-directly.
-
- -- Variable: magit-current-popup
-
-     The popup from which this editing command was invoked.
-
- -- Variable: magit-current-popup-args
-
-     The value of the popup arguments for this editing command.
-
-     If the current command was invoked from a popup, then this is a
-     list of strings of all the set switches and options.  This includes
-     arguments which are set by default not only those explicitly set
-     during this invocation.
-
-     When the value is nil, then that can be because no argument is set,
-     or because the current command wasn’t invoked from a popup at all.
-
- -- Function: magit-current-popup-args &rest args
-
-     This function returns the value of the popup arguments for this
-     editing command.  The value is the same as that of the variable by
-     the same name, except that FILTER is applied.  FILTER is a list of
-     regexps; only arguments that match one of them are returned.  The
-     first element of FILTER may also be ‘:not’ in which case only
-     arguments that don’t match any of the regexps are returned, or
-     ‘:only’ which doesn’t change the behavior.
-
-
-
-Tag Table:
-Node: Top769
-Node: Introduction2004
-Node: Usage4703
-Node: Customizing Existing Popups9400
-Node: Other Options15541
-Node: Defining Prefix and Suffix Commands17084
-Node: Defining Prefix Commands19236
-Node: Defining Suffix Commands27931
-
-End Tag Table
-
-
-Local Variables:
-coding: utf-8
-End:
diff --git a/elpa/nyan-mode-20170423.740/img/nyan-frame-1.xpm b/elpa/nyan-mode-20170423.740/img/nyan-frame-1.xpm
deleted file mode 100644
index 00196af..0000000
--- a/elpa/nyan-mode-20170423.740/img/nyan-frame-1.xpm
+++ /dev/null
@@ -1,170 +0,0 @@
-/* XPM */
-static char *nyan_frame_1[] = {
-/* columns rows colors chars-per-pixel */
-"25 15 149 2 ",
-"   c black",
-".  c #070B0F",
-"X  c #0C0C0C",
-"o  c #041C0C",
-"O  c #000810",
-"+  c #070917",
-"@  c #0F1011",
-"#  c #02191F",
-"$  c #111111",
-"%  c #161616",
-"&  c #082903",
-"*  c #142700",
-"=  c #083919",
-"-  c #292B00",
-";  c #3C3400",
-":  c #120B2D",
-">  c #001020",
-",  c #3F1E31",
-"<  c #172635",
-"1  c #222222",
-"2  c gray15",
-"3  c #2B2525",
-"4  c #2A2A2A",
-"5  c gray18",
-"6  c #3E2525",
-"7  c #2C2F32",
-"8  c gray22",
-"9  c #3A3C3E",
-"0  c gray24",
-"q  c #490C00",
-"w  c #7C0B10",
-"e  c #4C2400",
-"r  c #4C3100",
-"t  c #483F00",
-"y  c #403326",
-"u  c #4B3C2D",
-"i  c #423B34",
-"p  c #3D4100",
-"a  c #615600",
-"s  c #09264A",
-"d  c #1D2877",
-"f  c #322E75",
-"g  c #522244",
-"h  c #434343",
-"j  c #464646",
-"k  c #4C4646",
-"l  c gray29",
-"z  c gray30",
-"x  c #514C51",
-"c  c gray34",
-"v  c #54575A",
-"b  c #5D5D5D",
-"n  c #745D46",
-"m  c #775E5E",
-"M  c #614C61",
-"N  c #6D4C6D",
-"B  c #625962",
-"V  c gray38",
-"C  c #646464",
-"Z  c #686868",
-"A  c #7B6C6C",
-"S  c gray45",
-"D  c #767676",
-"F  c #7B7B7B",
-"G  c gray50",
-"H  c #BF1119",
-"J  c #F52A02",
-"K  c #FC7800",
-"L  c #947256",
-"P  c #26B210",
-"I  c #438500",
-"U  c #2CCB13",
-"Y  c #20D15C",
-"T  c #889000",
-"R  c #C4AC00",
-"E  c #FBA500",
-"W  c #F0D300",
-"Q  c #BF9973",
-"!  c #202C81",
-"~  c #263498",
-"^  c #432AAB",
-"/  c #5536D9",
-"(  c #1E7FF7",
-")  c #4D43E9",
-"_  c #5247F7",
-"`  c #885788",
-"'  c #A261A2",
-"]  c #AA66AA",
-"[  c #AE68AE",
-"{  c #FF5FC5",
-"}  c #C576C5",
-"|  c #D17DD1",
-" . c #FF66CC",
-".. c #F069C9",
-"X. c #FF68CE",
-"o. c #E073CD",
-"O. c #FF6BD1",
-"+. c #FF72D8",
-"@. c #FF77DD",
-"#. c #FF7CE2",
-"$. c #0A819C",
-"%. c #0EA7CB",
-"&. c #1E80F7",
-"*. c #868686",
-"=. c #888888",
-"-. c gray56",
-";. c gray59",
-":. c gray60",
-">. c #A68F8F",
-",. c #A09999",
-"<. c #A89999",
-"1. c #B09999",
-"2. c #B59999",
-"3. c #A0A0A0",
-"4. c gray65",
-"5. c #D79999",
-"6. c #F69999",
-"7. c #FF9999",
-"8. c #D8AD82",
-"9. c #F0BB99",
-"0. c #F0B6A2",
-"q. c #FFBBBB",
-"w. c #FFBCB9",
-"e. c #F0C090",
-"r. c #FFCC99",
-"t. c #FFC7A2",
-"y. c #FFC7A4",
-"u. c #D882D8",
-"i. c #FF95D5",
-"p. c #FFB3CC",
-"a. c #E086E0",
-"s. c #FF80E6",
-"d. c #FF85EB",
-"f. c #FF86EC",
-"g. c #FF8AF0",
-"h. c #FF8DF3",
-"j. c #FF8FF5",
-"k. c #F794F7",
-"l. c #FF90F6",
-"z. c #FF9DF7",
-"x. c #FF92F8",
-"c. c #FF94FA",
-"v. c #FF97FD",
-"b. c #FF99FF",
-"n. c #FFA6E6",
-"m. c #FFA8E0",
-"M. c #FFA8E2",
-"N. c gray81",
-"B. c None",
-/* pixels */
-"g g g g g g , y y y y y y y y y y y y 7 B.B.B.B.B.",
-"H H H H H w L r.w.p.p.p.p.p.p.p.p.p.y.8.8 B.B.B.B.",
-"J J J J J q e.w.b.b.b.b.{ b. .x.b.b.m.r.n B.B.B.B.",
-"K K K K K e 0.b. .x.b.b.b.b.u.} x.h.x.m.n B.B.B.B.",
-"E E E E E r 0.b.b.b.b.b.b.| M z ] #.x.m.n B.l B.B.",
-"R ; ; a W t 0.b.b.b.b. .x.' b ;.B [ b.m.n V :.l B.",
-"T 8 -.1 p - 0.b.b.f.b.b.b.' b :.:.b 1 4 V :.:.l B.",
-"I * 8 *.4   0.b.b.+.b.b...N F :.:.:.:.:.:.:.:.S B.",
-"U P & 8 =.1 0.#.s.b.b.b.o.8 :.3.4.Z :.:.:.N.j :.4 ",
-"Y Y Y = o   0.b.b.b.h.x.a.8 <.>.2 V :.D Z 8 k 2.3 ",
-"%.%.%.%.$.# 9.m.@.x.f.f.a.8 5.6.*.F :.V :.b 2.7.6 ",
-"&.&.&.&.&.s 9.y.i.b.b.b.k.` A 1.V % 1 X 4 X ,.m B.",
-"_ _ _ ) f 1 i Q Q Q Q Q Q Q u V S S S S S S v B.B.",
-"/ / / ^ l :.j : O l 4 > B.B.B.. l 1 B.% l % B.B.B.",
-"~ ~ ~ d % 1 O ! > 1 < B.B.B.B.B.2 % B.B.1 B.B.B.B."
-};
diff --git a/elpa/nyan-mode-20170423.740/img/nyan-frame-2.xpm b/elpa/nyan-mode-20170423.740/img/nyan-frame-2.xpm
deleted file mode 100644
index f768df7..0000000
--- a/elpa/nyan-mode-20170423.740/img/nyan-frame-2.xpm
+++ /dev/null
@@ -1,157 +0,0 @@
-/* XPM */
-static char *nyan_frame_2[] = {
-/* columns rows colors chars-per-pixel */
-"25 15 136 2 ",
-"   c #00070E",
-".  c #07090A",
-"X  c #070B0F",
-"o  c #0C0C0C",
-"O  c #000A14",
-"+  c #100D1C",
-"@  c #0F1011",
-"#  c #111111",
-"$  c gray9",
-"%  c #152900",
-"&  c #083417",
-"*  c #180F3E",
-"=  c #032D37",
-"-  c #202020",
-";  c #252525",
-":  c #2B2525",
-">  c #2A2A2A",
-",  c #3E2525",
-"<  c #3F3127",
-"1  c #3C3229",
-"2  c gray20",
-"3  c gray22",
-"4  c #3F3F3F",
-"5  c #431C38",
-"6  c #403326",
-"7  c #4B3C2D",
-"8  c #254900",
-"9  c #227C13",
-"0  c #626800",
-"q  c #6C720A",
-"w  c #6F7509",
-"e  c #764939",
-"r  c #1E2974",
-"t  c #322E75",
-"y  c #522244",
-"u  c #075568",
-"i  c #414141",
-"p  c #464646",
-"a  c #4C4646",
-"s  c gray29",
-"d  c gray30",
-"f  c #584E44",
-"g  c #514C51",
-"h  c gray34",
-"j  c #54575A",
-"k  c #5D5D5D",
-"l  c #775E5E",
-"z  c #5B5E61",
-"x  c #614C61",
-"c  c #6D4C6D",
-"v  c #625962",
-"b  c gray38",
-"n  c #646464",
-"m  c #686868",
-"M  c #7B6C6C",
-"N  c #6F706F",
-"B  c gray45",
-"V  c #767676",
-"C  c #7B7B7B",
-"Z  c gray49",
-"A  c #851601",
-"S  c #930D13",
-"D  c #BF1119",
-"F  c #F52A02",
-"G  c #894100",
-"H  c #885900",
-"J  c #827300",
-"K  c #FC7800",
-"L  c #14843A",
-"P  c #20D15C",
-"I  c #B2BD00",
-"U  c #FBA500",
-"Y  c #F0D300",
-"T  c #B28E6B",
-"R  c #B6926E",
-"E  c #BF9973",
-"W  c #212E87",
-"Q  c #263498",
-"!  c #432AAB",
-"~  c #104586",
-"^  c #5536D9",
-"/  c #1E7FF7",
-"(  c #4D43E9",
-")  c #5247F7",
-"_  c #885788",
-"`  c #AA5599",
-"'  c #A261A2",
-"]  c #AE68AE",
-"[  c #C576C5",
-"{  c #D17DD1",
-"}  c #FF68CE",
-"|  c #FF6DD3",
-" . c #FF77DD",
-".. c #FF79DF",
-"X. c #FF7BE1",
-"o. c #FF7DE3",
-"O. c #0EA7CB",
-"+. c #1E80F7",
-"@. c gray59",
-"#. c gray60",
-"$. c #A68F8F",
-"%. c #A09999",
-"&. c #A89999",
-"*. c #B09999",
-"=. c #B59999",
-"-. c #A0A0A0",
-";. c gray65",
-":. c #D79999",
-">. c #F69999",
-",. c #FF9999",
-"<. c #F7C694",
-"1. c #FFCA9E",
-"2. c #FFC5A7",
-"3. c #FFC1AF",
-"4. c #D882D8",
-"5. c #E083DD",
-"6. c #FFA4C8",
-"7. c #FFB3CC",
-"8. c #FFAFD2",
-"9. c #E086E0",
-"0. c #FF80E6",
-"q. c #FF83E9",
-"w. c #F08AE9",
-"e. c #FF8EEB",
-"r. c #FF88EE",
-"t. c #FF8AF0",
-"y. c #FF8EF4",
-"u. c #F794F7",
-"i. c #FF90F6",
-"p. c #FF94FA",
-"a. c #FF97FD",
-"s. c #FF9CF9",
-"d. c #FF99FF",
-"f. c #FFA0F0",
-"g. c gray81",
-"h. c None",
-/* pixels */
-"y y y y y 5 < < < < 6 6 6 6 6 6 < < < h.h.h.h.h.h.",
-"D D D D S e <.3.7.7.7.7.7.7.7.7.7.3.<.f h.h.h.h.h.",
-"F F F F A T 2.f.s.d.d.} y.X.X.d.s.f.2.T h.h.h.h.h.",
-"K K K K G T s...0.s.d.d.s.d.4.[ i.y.s.T h.h.h.h.h.",
-"U U U U H T s.d.d.d.d.d.s.{ x g ` 0.s.T h.h.d h.h.",
-"Y Y Y Y J T s.d.d.d.X.X.d.' k @.v ] s.T   z #.d h.",
-"w ; w I 0 T s.d.0.s.d.d.d.' k #.#.k ; ; b #.#.d h.",
-"; #.> 8 % T s.d...d.d...w.c C #.#.#.#.#.#.#.#.B h.",
-"9 k C B 4 T y.| d.d.d.0.9.3 #.-.;.m #.#.#.g.a #.; ",
-"P L & N 4 T s.s.d.d.r.d.9.3 &.$.; m #.C m 3 a *.: ",
-"O.O.O.u = T 8.0.0.y.X.d.9.3 :.>.Z Z #.b #.z *.,., ",
-"+.+./ / ~ T 1.6.i.d.s.d.u._ M *.b $ ; o ; o %.l h.",
-") ) ) ( t ; R E E E E E E E 7 b B B B B B B j h.h.",
-"^ ^ ^ ! s #.+ * 2 i X h.h.h.h.X d ; h.# d @ h.h.h.",
-"Q Q Q r @ ; r W h.- h.h.h.h.h.h.; # h.h.; . h.h.h."
-};
diff --git a/elpa/nyan-mode-20170423.740/img/nyan-frame-3.xpm b/elpa/nyan-mode-20170423.740/img/nyan-frame-3.xpm
deleted file mode 100644
index 288cf89..0000000
--- a/elpa/nyan-mode-20170423.740/img/nyan-frame-3.xpm
+++ /dev/null
@@ -1,159 +0,0 @@
-/* XPM */
-static char *nyan_frame_3[] = {
-/* columns rows colors chars-per-pixel */
-"25 15 138 2 ",
-"   c black",
-".  c #00070F",
-"X  c #0E0E0E",
-"o  c #0B1700",
-"O  c #061B02",
-"+  c #030C16",
-"@  c #02191F",
-"#  c #151515",
-"$  c #1B1B1B",
-"%  c gray11",
-"&  c #0B3204",
-"*  c #363900",
-"=  c #27221C",
-"-  c #0B0F2D",
-";  c #001122",
-":  c #3F1E31",
-">  c #03252E",
-",  c #1E262E",
-"<  c gray15",
-"1  c #2A2A2A",
-"2  c #2C2C2C",
-"3  c #2C2F32",
-"4  c gray22",
-"5  c #3A3C3E",
-"6  c #3C3C3C",
-"7  c #490C00",
-"8  c #7C0B10",
-"9  c #4C2400",
-"0  c #4C3100",
-"q  c #483F00",
-"w  c #403326",
-"e  c #145C08",
-"r  c #3C7501",
-"t  c #191041",
-"y  c #18154A",
-"u  c #052749",
-"i  c #002E5D",
-"p  c #212646",
-"a  c #373E44",
-"s  c #522244",
-"d  c #643C64",
-"f  c #285059",
-"g  c #414141",
-"h  c #484848",
-"j  c gray30",
-"k  c #5C4242",
-"l  c #554755",
-"z  c #544C54",
-"x  c #5E4D5E",
-"c  c #5A5A5A",
-"v  c #5D5D5D",
-"b  c #745D46",
-"n  c #634463",
-"m  c #614C61",
-"M  c gray38",
-"N  c #6F6161",
-"B  c #6D6D6D",
-"V  c gray45",
-"C  c #777777",
-"Z  c gray48",
-"A  c gray49",
-"S  c #BF1119",
-"D  c #F52A02",
-"F  c #FC7800",
-"G  c #947256",
-"H  c #847373",
-"J  c #4D9801",
-"K  c #2CCB13",
-"L  c #189E45",
-"P  c #B4BF00",
-"I  c #FBA500",
-"U  c #F0D300",
-"Y  c #BF9973",
-"T  c #263498",
-"R  c #165FB9",
-"E  c #5536D9",
-"W  c #196ED5",
-"Q  c #1A70D8",
-"!  c #1E7FF7",
-"~  c #5247F7",
-"^  c #A261A2",
-"/  c #B26BB2",
-"(  c #C95BAC",
-")  c #FF5FC5",
-"_  c #C979C9",
-"`  c #D17DD1",
-"'  c #FF66CC",
-"]  c #FF68CE",
-"[  c #FF6BD1",
-"{  c #FF72D8",
-"}  c #FF77DD",
-"|  c #0C92B2",
-" . c gray51",
-".. c #848484",
-"X. c #8B8B8B",
-"o. c #8D8D8D",
-"O. c #9D8888",
-"+. c gray57",
-"@. c #979797",
-"#. c gray60",
-"$. c #A69999",
-"%. c #AA9999",
-"&. c #AF9999",
-"*. c #B39999",
-"=. c gray70",
-"-. c #CE9999",
-";. c #DD9999",
-":. c #F09999",
-">. c #FF9999",
-",. c #D8AD82",
-"<. c #F0BB99",
-"1. c #F0B6A2",
-"2. c #FFBBBB",
-"3. c #FFBCB9",
-"4. c #F0C090",
-"5. c #FFCC99",
-"6. c #FFC7A2",
-"7. c #FFC7A4",
-"8. c #D580D5",
-"9. c #DC84DC",
-"0. c #FF95D5",
-"q. c #FFB3CC",
-"w. c #E88BE8",
-"e. c #FF80E6",
-"r. c #FF85EB",
-"t. c #FF86EC",
-"y. c #FF8AF0",
-"u. c #FF8DF3",
-"i. c #FF8FF5",
-"p. c #FF90F6",
-"a. c #FF9DF7",
-"s. c #FF92F8",
-"d. c #FF94FA",
-"f. c #FF97FD",
-"g. c #FF99FF",
-"h. c #FFA6E6",
-"j. c #FFA8E0",
-"k. c None",
-/* pixels */
-"s s s s s s : w w w w w w w w w w w w 3 k.k.k.k.k.",
-"S S S S S 8 G 5.3.q.q.q.q.q.q.q.q.q.7.,.4 k.k.k.k.",
-"D D D D D 7 4.3.g.g.g.g.) g.' s.g.g.h.5.b k.k.k.k.",
-"F F F F F 9 1.g.' s.g.g.g.g.g._ ` u.s.j.b k.k.k.k.",
-"I I I I I 0 1.g.g.g.g.g.g.g./ z x ( s.j.b k.k.j k.",
-"U U U U U q 1.g.g.g.g.' s.g.d  .o.z 9.j.b + A #.< ",
-"P P P P P * 1.g.g.t.g.g.g.g.d  .#.#.4 < <  .#.#.< ",
-"J J J J r o 1.g.g.{ g.g.{ ` m X.#.#.#.#.#.#.#.#.M ",
-"K K e & O   1.} e.g.g.g.e.^ v #.=.C  .#.#.#.=.c @.",
-"L # Z +.B , 1.g.g.g.s.s.g.^ v &.H <  .#.c A < N *.",
-"| f j 4 > @ <.j.} s.t.t.g.^ v :.;.B X. .C #.M -.>.",
-"! Q R R W u <.7.0.g.g.g.g.w.n O.&.g % % # < 1 $.k ",
-"~ ~ ~ ~ ~ y 4 Y Y Y Y Y Y Y Y = V V V V V V V a k.",
-"E E E E E t Y , ; X j % k.k.k.k.; 1 j . k.4 4 k.k.",
-"T T T T T - < p i k.< X k.k.k.k.k.k.1 k.k., % k.k."
-};
diff --git a/elpa/nyan-mode-20170423.740/img/nyan-frame-4.xpm b/elpa/nyan-mode-20170423.740/img/nyan-frame-4.xpm
deleted file mode 100644
index 4c26764..0000000
--- a/elpa/nyan-mode-20170423.740/img/nyan-frame-4.xpm
+++ /dev/null
@@ -1,157 +0,0 @@
-/* XPM */
-static char *nyan_frame_4[] = {
-/* columns rows colors chars-per-pixel */
-"25 15 136 2 ",
-"   c #00070E",
-".  c #07090A",
-"X  c #070B0F",
-"o  c #0C0C0C",
-"O  c #000A14",
-"+  c #100D1C",
-"@  c #0F1011",
-"#  c #111111",
-"$  c gray9",
-"%  c #152900",
-"&  c #0B3204",
-"*  c #180F3E",
-"=  c #032D37",
-"-  c #192633",
-";  c #202020",
-":  c gray15",
-">  c #2B2525",
-",  c #2A2A2A",
-"<  c #3E2525",
-"1  c #3F3127",
-"2  c #3C3229",
-"3  c gray20",
-"4  c gray22",
-"5  c #3F3F3F",
-"6  c #431C38",
-"7  c #403326",
-"8  c #4B3C2D",
-"9  c #284E00",
-"0  c #1B7F3D",
-"q  c #626800",
-"w  c #764939",
-"e  c #1E2974",
-"r  c #322E75",
-"t  c #522244",
-"y  c #065062",
-"u  c #414141",
-"i  c #464646",
-"p  c #4C4646",
-"a  c gray29",
-"s  c gray30",
-"d  c #584E44",
-"f  c #514C51",
-"g  c gray34",
-"h  c #54575A",
-"j  c #5D5D5D",
-"k  c #775E5E",
-"l  c #5B5E61",
-"z  c #614C61",
-"x  c #6D4C6D",
-"c  c #625962",
-"v  c gray38",
-"b  c #646464",
-"n  c #686868",
-"m  c #7B6C6C",
-"M  c #6F706F",
-"N  c gray45",
-"B  c #767676",
-"V  c #7B7B7B",
-"C  c gray49",
-"Z  c #851601",
-"A  c #930D13",
-"S  c #BF1119",
-"D  c #F52A02",
-"F  c #894100",
-"G  c #885900",
-"H  c #827300",
-"J  c #FC7800",
-"K  c #1B800C",
-"L  c #4D9801",
-"P  c #2CCB13",
-"I  c #B4BF00",
-"U  c #FBA500",
-"Y  c #F0D300",
-"T  c #B28E6B",
-"R  c #B6926E",
-"E  c #BF9973",
-"W  c #212E87",
-"Q  c #263498",
-"!  c #432AAB",
-"~  c #104586",
-"^  c #1A5091",
-"/  c #1A5195",
-"(  c #5536D9",
-")  c #1D7EF5",
-"_  c #4D43E9",
-"`  c #5247F7",
-"'  c #885788",
-"]  c #AA5599",
-"[  c #A261A2",
-"{  c #AE68AE",
-"}  c #C576C5",
-"|  c #D17DD1",
-" . c #FF68CE",
-".. c #FF6DD3",
-"X. c #FF77DD",
-"o. c #FF79DF",
-"O. c #FF7BE1",
-"+. c #FF7DE3",
-"@. c gray59",
-"#. c gray60",
-"$. c #A68F8F",
-"%. c #A09999",
-"&. c #A89999",
-"*. c #B09999",
-"=. c #B59999",
-"-. c #A0A0A0",
-";. c gray65",
-":. c #D79999",
-">. c #F69999",
-",. c #FF9999",
-"<. c #F7C694",
-"1. c #FFCA9E",
-"2. c #FFC5A7",
-"3. c #FFC1AF",
-"4. c #D882D8",
-"5. c #E083DD",
-"6. c #FFA4C8",
-"7. c #FFB3CC",
-"8. c #FFAFD2",
-"9. c #E086E0",
-"0. c #FF80E6",
-"q. c #FF83E9",
-"w. c #F08AE9",
-"e. c #FF8EEB",
-"r. c #FF88EE",
-"t. c #FF8AF0",
-"y. c #FF8EF4",
-"u. c #F794F7",
-"i. c #FF90F6",
-"p. c #FF94FA",
-"a. c #FF97FD",
-"s. c #FF9CF9",
-"d. c #FF99FF",
-"f. c #FFA0F0",
-"g. c gray81",
-"h. c None",
-/* pixels */
-"t t t t t 6 1 7 7 7 7 7 7 7 7 7 1 1 1 h.h.h.h.h.h.",
-"S S S S A w <.3.7.7.7.7.7.7.7.7.7.3.<.d h.h.h.h.h.",
-"D D D D Z T 2.f.d.d.d. .i.+.+.d.s.f.2.T h.h.h.h.h.",
-"J J J J F T s.o.+.s.d.d.d.s.| } i.y.s.T h.h.h.h.h.",
-"U U U U G T s.d.d.d.d.d.d.| z f ] 0.s.T h.h.s h.h.",
-"Y Y Y Y H T s.d.d.d.+.+.d.[ j @.c { s.T   l #.a h.",
-"I I I I q T s.d.r.d.d.d.d.[ j #.#.j : : v #.#.s h.",
-"L L L 9 % T s.s.o.d.d.o.w.x V #.#.#.#.#.#.#.#.N h.",
-"P K & M 5 T e...d.d.d.r.5.4 #.-.-.v #.#.#.g.p #.: ",
-"0 l C N 5 T s.d.d.y.r.d.5.4 &.$.: j #.V v 5 p *.> ",
-": #.: y = T 8.r.r.y.+.d.9.4 :.>.V @.#.v #.j *.,.< ",
-"/ : ^ ) ~ T 1.6.y.d.d.d.u.' m *.v $ : o : o %.k h.",
-"` ` ` _ r : R E E E E E E E 8 v N N N N N N h h.h.",
-"( ( ( ! i #.+ * 3 u X h.h.h.h.X s : h.# s # h.h.h.",
-"Q Q Q e @ : e W - ; h.h.h.h.h.h.: # h.h.: . h.h.h."
-};
diff --git a/elpa/nyan-mode-20170423.740/img/nyan-frame-5.xpm b/elpa/nyan-mode-20170423.740/img/nyan-frame-5.xpm
deleted file mode 100644
index 3841bd7..0000000
--- a/elpa/nyan-mode-20170423.740/img/nyan-frame-5.xpm
+++ /dev/null
@@ -1,157 +0,0 @@
-/* XPM */
-static char *nyan_frame_5[] = {
-/* columns rows colors chars-per-pixel */
-"25 15 136 2 ",
-"   c black",
-".  c #020F06",
-"X  c #070B0F",
-"o  c #08090C",
-"O  c #0C0C0C",
-"+  c #1D1F00",
-"@  c #020912",
-"#  c #000A14",
-"$  c #131313",
-"%  c #161616",
-"&  c #191919",
-"*  c #251E17",
-"=  c #083417",
-"-  c #292B00",
-";  c #3F1E31",
-":  c #04323D",
-">  c #232323",
-",  c #222126",
-"<  c gray14",
-"1  c gray15",
-"2  c #2B2525",
-"3  c #20262C",
-"4  c #2A2A2A",
-"5  c #3E2525",
-"6  c #2C2F32",
-"7  c gray20",
-"8  c gray22",
-"9  c #3A3C3E",
-"0  c #490C00",
-"q  c #7C0B10",
-"w  c #4C2400",
-"e  c #4C3100",
-"r  c #483F00",
-"t  c #403326",
-"y  c #4B3C2D",
-"u  c #236119",
-"i  c #6F7509",
-"p  c #241856",
-"a  c #1F265A",
-"s  c #522244",
-"d  c #414141",
-"f  c #464646",
-"g  c #4C4646",
-"h  c #494949",
-"j  c gray31",
-"k  c #514C51",
-"l  c gray34",
-"z  c #54575A",
-"x  c #5D5D5D",
-"c  c #5F5F5F",
-"v  c #745D46",
-"b  c #614C61",
-"n  c #6D4C6D",
-"m  c gray38",
-"M  c #646464",
-"N  c gray40",
-"B  c #686868",
-"V  c #7B6C6C",
-"C  c #727272",
-"Z  c gray45",
-"A  c #7B7B7B",
-"S  c gray50",
-"D  c #BF1119",
-"F  c #F52A02",
-"G  c #FC7800",
-"H  c #947256",
-"J  c #20980E",
-"K  c #1AAF4D",
-"L  c #20D15C",
-"P  c #868F00",
-"I  c #FBA500",
-"U  c #F0D300",
-"Y  c #BF9973",
-"T  c #23308F",
-"R  c #263498",
-"E  c #39329C",
-"W  c #1354A2",
-"Q  c #5536D9",
-"!  c #5247F7",
-"~  c #885788",
-"^  c #A261A2",
-"/  c #AA66AA",
-"(  c #AE68AE",
-")  c #FF5FC5",
-"_  c #C576C5",
-"`  c #D17DD1",
-"'  c #FF66CC",
-"]  c #F069C9",
-"[  c #FF68CE",
-"{  c #E073CD",
-"}  c #FF6BD1",
-"|  c #FF72D8",
-" . c #FF77DD",
-".. c #FF79DF",
-"X. c #0EA7CB",
-"o. c #1E80F7",
-"O. c gray59",
-"+. c gray60",
-"@. c #A68F8F",
-"#. c #A89999",
-"$. c #B09999",
-"%. c #B59999",
-"&. c #A0A0A0",
-"*. c gray65",
-"=. c #D79999",
-"-. c #F69999",
-";. c #FF9999",
-":. c #D8AD82",
-">. c #F0BB99",
-",. c #F0B6A2",
-"<. c #FFBBBB",
-"1. c #FFBCB9",
-"2. c #F0C090",
-"3. c #FFCC99",
-"4. c #FFC7A2",
-"5. c #D882D8",
-"6. c #FF95D5",
-"7. c #FFB3CC",
-"8. c #E086E0",
-"9. c #FF80E6",
-"0. c #FF85EB",
-"q. c #FF86EC",
-"w. c #FF8AF0",
-"e. c #FF8DF3",
-"r. c #FF8FF5",
-"t. c #F794F7",
-"y. c #FF90F6",
-"u. c #FF9DF7",
-"i. c #FF92F8",
-"p. c #FF94FA",
-"a. c #FF97FD",
-"s. c #FF99FF",
-"d. c #FFA6E6",
-"f. c #FFA8E0",
-"g. c gray81",
-"h. c None",
-/* pixels */
-"s s s s s s ; t t t t t t t t t t t t 6 h.h.h.h.h.",
-"D D D D D q H 3.1.7.7.7.7.7.7.7.7.7.4.:.9 h.h.h.h.",
-"F F F F F 0 2.1.s.s.s.s.) s.' i.s.s.d.3.v h.h.h.h.",
-"G G G G G w ,.s.' i.s.s.s.s.5._ u.e.p.f.v h.h.h.h.",
-"I I I I I e ,.s.s.s.s.s.s.` b j /  .i.f.v h.j h.h.",
-"U U U U U r ,.s.s.s.s.' i.^ x O.x ( u.f.v x O.h h.",
-"i 1 1 + P - ,.s.s.0.s.s.s.^ x +.+.l 2 2 m +.+.j h.",
-"$ C +.j 4   ,.s.s.| s.s.] n A +.+.+.+.+.+.+.+.C h.",
-"J u 1 1 h 1 ,. .9.s.s.s.{ 8 +.&.*.m +.+.+.g.d +.1 ",
-"L L L K = . ,.s.s.s.e.i.8.8 #.@., x +.A N 9 g %.2 ",
-"X.X.X.X.X.: >.f. .i.0.0.8.8 =.-.H O.+.m +.m %.;.5 ",
-"o.o.o.o.W # 2.4.6.s.s.s.t.~ V $.m % 1 O 3 # +.V h.",
-"! ! ! E 4 1 * Y Y Y Y Y Y Y y m C C C C C C z h.h.",
-"Q Q Q 1 +.m p & j X h.h.h.h.# d 7 h.# j 1 h.h.h.h.",
-"R R R o 1 a T a 1 h.h.h.h.h.h.3 & h.h.1 $ h.h.h.h."
-};
diff --git a/elpa/nyan-mode-20170423.740/img/nyan-frame-6.xpm b/elpa/nyan-mode-20170423.740/img/nyan-frame-6.xpm
deleted file mode 100644
index 7a61f05..0000000
--- a/elpa/nyan-mode-20170423.740/img/nyan-frame-6.xpm
+++ /dev/null
@@ -1,165 +0,0 @@
-/* XPM */
-static char *nyan_frame_6[] = {
-/* columns rows colors chars-per-pixel */
-"25 15 144 2 ",
-"   c black",
-".  c #020F06",
-"X  c #070B0F",
-"o  c #08090C",
-"O  c #0C0C0C",
-"+  c #020912",
-"@  c #000A14",
-"#  c #111111",
-"$  c #151515",
-"%  c #1D1711",
-"&  c #251E17",
-"*  c #083417",
-"=  c #212305",
-"-  c #292B00",
-";  c #3C3400",
-":  c #3F1E31",
-">  c #04323D",
-",  c #202020",
-"<  c #222126",
-"1  c #252525",
-"2  c #2A2A2A",
-"3  c gray18",
-"4  c #3E2525",
-"5  c #2C2F32",
-"6  c #342D34",
-"7  c gray20",
-"8  c gray22",
-"9  c #3A3C3E",
-"0  c #3F3F3F",
-"q  c #490C00",
-"w  c #7C0B10",
-"e  c #4C2400",
-"r  c #4C3100",
-"t  c #483F00",
-"y  c #403326",
-"u  c #402A38",
-"i  c #24451F",
-"p  c #394C25",
-"a  c #241856",
-"s  c #1F265A",
-"d  c #1E297A",
-"f  c #522244",
-"g  c #414141",
-"h  c #464646",
-"j  c gray29",
-"k  c gray31",
-"l  c #554755",
-"z  c #5E4D5E",
-"x  c #515151",
-"c  c #5C5650",
-"v  c #5A5A5A",
-"b  c #5D5D5D",
-"n  c #745D46",
-"m  c #634463",
-"M  c #6D4C6D",
-"N  c #656565",
-"B  c #6C6C6C",
-"V  c gray45",
-"C  c #767676",
-"Z  c #797979",
-"A  c #7C7C7C",
-"S  c #BF1119",
-"D  c #F52A02",
-"F  c #FC7800",
-"G  c #947256",
-"H  c #9A7B7B",
-"J  c #A57272",
-"K  c #26B210",
-"L  c #438500",
-"P  c #2CCB13",
-"I  c #1AAF4D",
-"U  c #20D15C",
-"Y  c #868F00",
-"T  c #988600",
-"R  c #889000",
-"E  c #FBA500",
-"W  c #EACE00",
-"Q  c #F0D300",
-"!  c #BF9973",
-"~  c #263498",
-"^  c #39329C",
-"/  c #1354A2",
-"(  c #5536D9",
-")  c #1E7FF7",
-"_  c #5247F7",
-"`  c #885788",
-"'  c #A261A2",
-"]  c #C95BAC",
-"[  c #E060B9",
-"{  c #FF5FC5",
-"}  c #FF66CC",
-"|  c #FF68CE",
-" . c #E073CD",
-".. c #FF6BD1",
-"X. c #FF72D8",
-"o. c #FF77DD",
-"O. c #FF79DF",
-"+. c #0EA7CB",
-"@. c #1E80F7",
-"#. c #848484",
-"$. c #888888",
-"%. c gray55",
-"&. c #929292",
-"*. c #979797",
-"=. c gray60",
-"-. c gray62",
-";. c #A79999",
-":. c #B59999",
-">. c gray63",
-",. c gray74",
-"<. c #C79999",
-"1. c #D79999",
-"2. c #F69999",
-"3. c #FF9999",
-"4. c #D8AD82",
-"5. c #F0BB99",
-"6. c #F0B6A2",
-"7. c #FFBBBB",
-"8. c #FFBCB9",
-"9. c #F0C090",
-"0. c #FFCC99",
-"q. c #FFC7A2",
-"w. c #FFC7A4",
-"e. c #D580D5",
-"r. c #FF95D5",
-"t. c #FFB3CC",
-"y. c #E086E0",
-"u. c #E88BE8",
-"i. c #FF80E6",
-"p. c #FF85EB",
-"a. c #FF86EC",
-"s. c #FF8DF3",
-"d. c #FF8FF5",
-"f. c #F090F0",
-"g. c #F794F7",
-"h. c #FF90F6",
-"j. c #FF9DF7",
-"k. c #FF92F8",
-"l. c #FF94FA",
-"z. c #FF97FD",
-"x. c #FF99FF",
-"c. c #FFA6E6",
-"v. c #FFA8E2",
-"b. c None",
-/* pixels */
-"f f f f f f : y y y y y y y y y y y y 5 b.b.b.b.b.",
-"S S S S S w G 0.8.t.t.t.t.t.t.t.t.t.q.4.9 b.b.b.b.",
-"D D D D D q 9.8.x.x.x.x.{ x.} k.l.x.c.0.n b.b.b.b.",
-"F F F F F e 6.x.} k.x.x.x.u.m 6 e.s.l.v.n b., b.b.",
-"E E E E E r 6.x.x.x.x.x.x.' b &.z ] k.c.n 6 =.j b.",
-"Q T ; W Q t 6.x.x.x.x.} k.' b =.$.l 6 6 c &.=.j b.",
-"R j =.= R - 6.x.x.a.x.x.g.` B =.=.=.=.=.;.>.*.b b.",
-"L p #.j x $ 6.x.x.X.x.x.[ 8 =.-.-.A =.=.=.,.N =.3 ",
-"P K i 0 =.3 6.o.i.x.x.x. .8 =.&.3 v *.C N k 3 *., ",
-"U U U I * . 6.x.x.x.k.k.y.8 1.2.%.$.*.A =.A :.3.4 ",
-"+.+.+.+.+.> 5.v.o.k.a.a.f.M H <.N 3 j $ k $ ;.J b.",
-") @.) ) / @ 9.q.r.x.x.x.x.u.m #.#.C C C C V C b.b.",
-"_ _ _ ^ b j & ! ! ! ! ! ! ! ! %       O $ @ b.b.b.",
-"( ( ( , =.B a , k X b.b.b.b.@ g 6 b.@ N h b.b.b.b.",
-"~ ~ ~ X , s d # , b.b.b.b.b.b., b.b.b., $ b.b.b.b."
-};
diff --git a/elpa/nyan-mode-20170423.740/img/nyan.xpm b/elpa/nyan-mode-20170423.740/img/nyan.xpm
deleted file mode 100644
index 45123da..0000000
--- a/elpa/nyan-mode-20170423.740/img/nyan.xpm
+++ /dev/null
@@ -1,157 +0,0 @@
-/* XPM */
-static char *nyan[] = {
-/* columns rows colors chars-per-pixel */
-"25 15 136 2 ",
-"   c black",
-".  c #020F06",
-"X  c #070B0F",
-"o  c #08090C",
-"O  c #0C0C0C",
-"+  c #1D1F00",
-"@  c #020912",
-"#  c #000A14",
-"$  c #131313",
-"%  c #161616",
-"&  c #191919",
-"*  c #251E17",
-"=  c #083417",
-"-  c #292B00",
-";  c #3F1E31",
-":  c #04323D",
-">  c #232323",
-",  c #222126",
-"<  c gray14",
-"1  c gray15",
-"2  c #2B2525",
-"3  c #20262C",
-"4  c #2A2A2A",
-"5  c #3E2525",
-"6  c #2C2F32",
-"7  c gray20",
-"8  c gray22",
-"9  c #3A3C3E",
-"0  c #490C00",
-"q  c #7C0B10",
-"w  c #4C2400",
-"e  c #4C3100",
-"r  c #483F00",
-"t  c #403326",
-"y  c #4B3C2D",
-"u  c #236119",
-"i  c #6F7509",
-"p  c #241856",
-"a  c #1F265A",
-"s  c #522244",
-"d  c #414141",
-"f  c #464646",
-"g  c #4C4646",
-"h  c #494949",
-"j  c gray31",
-"k  c #514C51",
-"l  c gray34",
-"z  c #54575A",
-"x  c #5D5D5D",
-"c  c #5F5F5F",
-"v  c #745D46",
-"b  c #614C61",
-"n  c #6D4C6D",
-"m  c gray38",
-"M  c #646464",
-"N  c gray40",
-"B  c #686868",
-"V  c #7B6C6C",
-"C  c #727272",
-"Z  c gray45",
-"A  c #7B7B7B",
-"S  c gray50",
-"D  c #BF1119",
-"F  c #F52A02",
-"G  c #FC7800",
-"H  c #947256",
-"J  c #20980E",
-"K  c #1AAF4D",
-"L  c #20D15C",
-"P  c #868F00",
-"I  c #FBA500",
-"U  c #F0D300",
-"Y  c #BF9973",
-"T  c #23308F",
-"R  c #263498",
-"E  c #39329C",
-"W  c #1354A2",
-"Q  c #5536D9",
-"!  c #5247F7",
-"~  c #885788",
-"^  c #A261A2",
-"/  c #AA66AA",
-"(  c #AE68AE",
-")  c #FF5FC5",
-"_  c #C576C5",
-"`  c #D17DD1",
-"'  c #FF66CC",
-"]  c #F069C9",
-"[  c #FF68CE",
-"{  c #E073CD",
-"}  c #FF6BD1",
-"|  c #FF72D8",
-" . c #FF77DD",
-".. c #FF79DF",
-"X. c #0EA7CB",
-"o. c #1E80F7",
-"O. c gray59",
-"+. c gray60",
-"@. c #A68F8F",
-"#. c #A89999",
-"$. c #B09999",
-"%. c #B59999",
-"&. c #A0A0A0",
-"*. c gray65",
-"=. c #D79999",
-"-. c #F69999",
-";. c #FF9999",
-":. c #D8AD82",
-">. c #F0BB99",
-",. c #F0B6A2",
-"<. c #FFBBBB",
-"1. c #FFBCB9",
-"2. c #F0C090",
-"3. c #FFCC99",
-"4. c #FFC7A2",
-"5. c #D882D8",
-"6. c #FF95D5",
-"7. c #FFB3CC",
-"8. c #E086E0",
-"9. c #FF80E6",
-"0. c #FF85EB",
-"q. c #FF86EC",
-"w. c #FF8AF0",
-"e. c #FF8DF3",
-"r. c #FF8FF5",
-"t. c #F794F7",
-"y. c #FF90F6",
-"u. c #FF9DF7",
-"i. c #FF92F8",
-"p. c #FF94FA",
-"a. c #FF97FD",
-"s. c #FF99FF",
-"d. c #FFA6E6",
-"f. c #FFA8E0",
-"g. c gray81",
-"h. c None",
-/* pixels */
-"s s s s s s ; t t t t t t t t t t t t 6 h.h.h.h.h.",
-"D D D D D q H 3.1.7.7.7.7.7.7.7.7.7.4.:.9 h.h.h.h.",
-"F F F F F 0 2.1.s.s.s.s.) s.' i.s.s.d.3.v h.h.h.h.",
-"G G G G G w ,.s.' i.s.s.s.s.5._ u.e.p.f.v h.h.h.h.",
-"I I I I I e ,.s.s.s.s.s.s.` b j /  .i.f.v h.j h.h.",
-"U U U U U r ,.s.s.s.s.' i.^ x O.x / u.f.v x O.d h.",
-"i 1 1 + P - ,.s.s.0.s.s.s.^ x +.+.x 2 2 m +.+.j h.",
-"$ C +.j 4   ,.s.s.| s.s.] n A +.+.+.+.+.+.+.+.C h.",
-"J u 1 1 h 1 ,. .9.s.s.s.{ 8 +.&.&.B +.+.+.g.g +.1 ",
-"L L L K = . ,.s.s.s.e.i.8.8 #.@., m +.A N 9 g $.2 ",
-"X.X.X.X.X.: >.f. .i.0.0.8.8 =.-.H O.+.m +.c $.;.5 ",
-"o.o.o.o.W # 2.4.6.s.s.s.t.~ V $.m $ 1 O 3 # +.V h.",
-"! ! ! E 4 1 * Y Y Y Y Y Y Y y m C C C C C C z h.h.",
-"Q Q Q 1 +.m p & j X h.h.h.h.# d 7 h.h.j 1 h.h.h.h.",
-"R R R o 1 a T a 1 h.h.h.h.h.h.3 & h.h.1 $ h.h.h.h."
-};
diff --git a/elpa/nyan-mode-20170423.740/img/outerspace.xpm b/elpa/nyan-mode-20170423.740/img/outerspace.xpm
deleted file mode 100644
index a487c08..0000000
--- a/elpa/nyan-mode-20170423.740/img/outerspace.xpm
+++ /dev/null
@@ -1,142 +0,0 @@
-/* XPM */
-static char *outerspace[] = {
-/* columns rows colors chars-per-pixel */
-"8 15 120 2 ",
-"   c None",
-".  c black",
-"X  c black",
-"o  c black",
-"O  c black",
-"+  c black",
-"@  c black",
-"#  c black",
-"$  c black",
-"%  c black",
-"&  c black",
-"*  c black",
-"=  c black",
-"-  c black",
-";  c black",
-":  c black",
-">  c black",
-",  c black",
-"<  c black",
-"1  c black",
-"2  c black",
-"3  c black",
-"4  c black",
-"5  c black",
-"6  c black",
-"7  c black",
-"8  c black",
-"9  c black",
-"0  c black",
-"q  c black",
-"w  c black",
-"e  c black",
-"r  c black",
-"t  c black",
-"y  c black",
-"u  c black",
-"i  c black",
-"p  c black",
-"a  c black",
-"s  c black",
-"d  c black",
-"f  c black",
-"g  c black",
-"h  c black",
-"j  c black",
-"k  c black",
-"l  c black",
-"z  c black",
-"x  c black",
-"c  c black",
-"v  c black",
-"b  c black",
-"n  c black",
-"m  c black",
-"M  c black",
-"N  c black",
-"B  c black",
-"V  c black",
-"C  c black",
-"Z  c black",
-"A  c black",
-"S  c black",
-"D  c black",
-"F  c black",
-"G  c black",
-"H  c black",
-"J  c black",
-"K  c black",
-"L  c black",
-"P  c black",
-"I  c black",
-"U  c black",
-"Y  c black",
-"T  c black",
-"R  c black",
-"E  c black",
-"W  c black",
-"Q  c black",
-"!  c black",
-"~  c black",
-"^  c black",
-"/  c black",
-"(  c black",
-")  c black",
-"_  c black",
-"`  c black",
-"'  c black",
-"]  c black",
-"[  c black",
-"{  c black",
-"}  c black",
-"|  c black",
-" . c black",
-".. c black",
-"X. c black",
-"o. c black",
-"O. c black",
-"+. c black",
-"@. c black",
-"#. c black",
-"$. c black",
-"%. c black",
-"&. c black",
-"*. c black",
-"=. c black",
-"-. c black",
-";. c black",
-":. c black",
-">. c black",
-",. c black",
-"<. c black",
-"1. c black",
-"2. c black",
-"3. c black",
-"4. c black",
-"5. c black",
-"6. c black",
-"7. c black",
-"8. c black",
-"9. c black",
-/* pixels */
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                ",
-"                "
-};
diff --git a/elpa/nyan-mode-20170423.740/img/rainbow.xpm b/elpa/nyan-mode-20170423.740/img/rainbow.xpm
deleted file mode 100644
index 1ed1bc2..0000000
--- a/elpa/nyan-mode-20170423.740/img/rainbow.xpm
+++ /dev/null
@@ -1,42 +0,0 @@
-/* XPM */
-static char *rainbow[] = {
-/* columns rows colors chars-per-pixel */
-"8 15 21 1 ",
-"  c #522244",
-". c #BF1119",
-"X c #F52A02",
-"o c #FC7800",
-"O c #FBA500",
-"+ c #FCA500",
-"@ c #F0D300",
-"# c #B4BF00",
-"$ c #B5BF00",
-"% c #4D9801",
-"& c #4E9802",
-"* c #4E9801",
-"= c #2CCB13",
-"- c #20D15C",
-"; c #0EA7CB",
-": c #0EA6CB",
-"> c #1E7FF7",
-", c #1E80F7",
-"< c #5247F7",
-"1 c #5536D9",
-"2 c #263498",
-/* pixels */
-"        ",
-"........",
-"XXXXXXXX",
-"oooooooo",
-"OOOOO+O+",
-"@@@@@@@@",
-"#####$##",
-"%&&*&&&&",
-"========",
-"--------",
-";;;:;;:;",
-">,,>,,,,",
-"<<<<<<<<",
-"11111111",
-"22222222"
-};
diff --git a/elpa/nyan-mode-20170423.740/mus/nyanlooped.mp3 b/elpa/nyan-mode-20170423.740/mus/nyanlooped.mp3
deleted file mode 100644
index fe406b8..0000000
--- a/elpa/nyan-mode-20170423.740/mus/nyanlooped.mp3
+++ /dev/null
Binary files differ
diff --git a/elpa/nyan-mode-20170423.740/nyan-mode-autoloads.el b/elpa/nyan-mode-20170423.740/nyan-mode-autoloads.el
deleted file mode 100644
index 4960da1..0000000
--- a/elpa/nyan-mode-20170423.740/nyan-mode-autoloads.el
+++ /dev/null
@@ -1,45 +0,0 @@
-;;; nyan-mode-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "nyan-mode" "nyan-mode.el" (0 0 0 0))
-;;; Generated autoloads from nyan-mode.el
-
-(defvar nyan-mode nil "\
-Non-nil if Nyan mode is enabled.
-See the `nyan-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `nyan-mode'.")
-
-(custom-autoload 'nyan-mode "nyan-mode" nil)
-
-(autoload 'nyan-mode "nyan-mode" "\
-Use NyanCat to show buffer size and position in mode-line.
-You can customize this minor mode, see option `nyan-mode'.
-
-Note: If you turn this mode on then you probably want to turn off
-option `scroll-bar-mode'.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "nyan-mode" '("nyan-" "+nyan-")))
-
-;;;***
-
-;;;### (autoloads nil nil ("nyan-mode-pkg.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; nyan-mode-autoloads.el ends here
diff --git a/elpa/nyan-mode-20170423.740/nyan-mode-pkg.el b/elpa/nyan-mode-20170423.740/nyan-mode-pkg.el
deleted file mode 100644
index ee40bad..0000000
--- a/elpa/nyan-mode-20170423.740/nyan-mode-pkg.el
+++ /dev/null
@@ -1,10 +0,0 @@
-(define-package "nyan-mode" "20170423.740" "Nyan Cat shows position in current buffer in mode-line." 'nil :keywords
-  '("nyan" "cat" "lulz" "scrolling" "pop tart cat" "build something amazing")
-  :authors
-  '(("Jacek \"TeMPOraL\" Zlydach" . "temporal.pl@gmail.com"))
-  :maintainer
-  '("Jacek \"TeMPOraL\" Zlydach" . "temporal.pl@gmail.com")
-  :url "https://github.com/TeMPOraL/nyan-mode/")
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/nyan-mode-20170423.740/nyan-mode.el b/elpa/nyan-mode-20170423.740/nyan-mode.el
deleted file mode 100644
index 1f4289f..0000000
--- a/elpa/nyan-mode-20170423.740/nyan-mode.el
+++ /dev/null
@@ -1,300 +0,0 @@
-;;; nyan-mode.el --- Nyan Cat shows position in current buffer in mode-line.
-
-;; Nyanyanyanyanyanyanya!
-
-;; Author: Jacek "TeMPOraL" Zlydach <temporal.pl@gmail.com>
-;; URL: https://github.com/TeMPOraL/nyan-mode/
-;; Version: 1.1.1
-;; Keywords: nyan, cat, lulz, scrolling, pop tart cat, build something amazing
-
-;; This file is not part of GNU Emacs.
-
-;; ...yet. ;).
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License as
-;; published by the Free Software Foundation; either version 3, or
-;; (at your option) any later version.
-;;
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with this program; see the file COPYING.  If not, write to
-;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
-;; Floor, Boston, MA 02110-1301, USA.
-
-;;; Commentary:
-
-;; NEW! You can now click on the rainbow (or the empty space)
-;; to scroll your buffer!
-
-;; NEW! You can now customize the minimum window width
-;; below which the nyan-mode will be disabled, so that more important
-;; information can be shown in the modeline.
-
-;; To activate, just load and put `(nyan-mode 1)' in your init file.
-
-;; Contributions and feature requests welcome!
-
-;; Inspired by (and in few places copied from) sml-modeline.el written by Lennart Borgman.
-;; See: http://bazaar.launchpad.net/~nxhtml/nxhtml/main/annotate/head%3A/util/sml-modeline.el
-
-;;; History:
-
-;; 2016-04-26 - introduced click-to-scroll feature.
-
-;; Started as a totally random idea back in August 2011.
-
-;; The homepage at http://nyan-mode.buildsomethingamazing.com died somewhen in 2014/2015 because reasons.
-;; I might get the domain back one day.
-
-;;; Code:
-
-(eval-when-compile (require 'cl))
-
-(defconst +nyan-directory+ (file-name-directory (or load-file-name buffer-file-name)))
-
-(defconst +nyan-cat-size+ 3)
-
-(defconst +nyan-cat-image+ (concat +nyan-directory+ "img/nyan.xpm"))
-(defconst +nyan-rainbow-image+ (concat +nyan-directory+ "img/rainbow.xpm"))
-(defconst +nyan-outerspace-image+ (concat +nyan-directory+ "img/outerspace.xpm"))
-
-(defconst +nyan-music+ (concat +nyan-directory+ "mus/nyanlooped.mp3"))
-
-(defconst +nyan-modeline-help-string+ "Nyanyanya!\nmouse-1: Scroll buffer position")
-
-(defvar nyan-old-car-mode-line-position nil)
-
-(defgroup nyan nil
-  "Customization group for `nyan-mode'."
-  :group 'frames)
-
-(defun nyan-refresh ()
-  "Refresh after option changes if loaded."
-  (when (featurep 'nyan-mode)
-    (when (and (boundp 'nyan-mode)
-               nyan-mode)
-      (nyan-mode -1)
-      (nyan-mode 1))))
-
-(defcustom nyan-animation-frame-interval 0.2
-  "Number of seconds between animation frames."
-  :type 'float
-  :set (lambda (sym val)
-         (set-default sym val)
-         (nyan-refresh))
-  :group 'nyan)
-
-(defvar nyan-animation-timer nil)
-
-(defun nyan-start-animation ()
-  (interactive)
-  (when (not (and nyan-animate-nyancat
-		  nyan-animation-timer))
-    (setq nyan-animation-timer (run-at-time "1 sec"
-                                            nyan-animation-frame-interval
-                                            'nyan-swich-anim-frame))
-    (setq nyan-animate-nyancat t)))
-
-(defun nyan-stop-animation ()
-  (interactive)
-  (when (and nyan-animate-nyancat
-	     nyan-animation-timer)
-    (cancel-timer nyan-animation-timer)
-    (setq nyan-animation-timer nil)
-    (setq nyan-animate-nyancat nil)))
-
-;; mplayer needs to be installed for that
-(defvar nyan-music-process nil)
-
-(defun nyan-start-music ()
-  (interactive)
-  (unless nyan-music-process
-    (setq nyan-music-process (start-process-shell-command "nyan-music" "nyan-music" (concat "mplayer " +nyan-music+ " -loop 0")))))
-
-(defun nyan-stop-music ()
-  (interactive)
-  (when nyan-music-process
-    (delete-process nyan-music-process)
-    (setq nyan-music-process nil)))
-
-(defcustom nyan-minimum-window-width 64
-  "Determines the minimum width of the window, below which nyan-mode will not be displayed.
-This is important because nyan-mode will push out all informations from small windows."
-  :type 'integer
-  :set (lambda (sym val)
-         (set-default sym val)
-         (nyan-refresh))
-  :group 'nyan)
-
-;;; FIXME bug, doesn't work for antoszka.
-(defcustom nyan-wavy-trail nil
-  "If enabled, Nyan Cat's rainbow trail will be wavy."
-  :type '(choice (const :tag "Enabled" t)
-                 (const :tag "Disabled" nil))
-  :set (lambda (sym val)
-         (set-default sym val)
-         (nyan-refresh))
-  :group 'nyan)
-
-(defcustom nyan-bar-length 32
-  "Length of Nyan Cat bar in units; each unit is equal to an 8px
-  image. Minimum of 3 units are required for Nyan Cat."
-  :type 'integer
-  :set (lambda (sym val)
-         (set-default sym val)
-         (nyan-refresh))
-  :group 'nyan)
-
-(defcustom nyan-animate-nyancat nil
-  "Enable animation for Nyan Cat.
-This can be t or nil."
-  :type '(choice (const :tag "Enabled" t)
-                 (const :tag "Disabled" nil))
-  :set (lambda (sym val)
-         (set-default sym val)
-         (if val
-             (nyan-start-animation)
-           (nyan-stop-animation))
-         (nyan-refresh))
-  :group 'nyan)
-
-(defcustom nyan-cat-face-number 1
-  "Select cat face number for console."
-  :type 'integer
-  :group 'nyan
-  )
-
-;;; Load images of Nyan Cat an it's rainbow.
-(defvar nyan-cat-image (if (image-type-available-p 'xpm)
-                           (create-image +nyan-cat-image+ 'xpm nil :ascent 'center)))
-
-(defvar nyan-animation-frames (if (image-type-available-p 'xpm)
-                                  (mapcar (lambda (id)
-                                            (create-image (concat +nyan-directory+ (format "img/nyan-frame-%d.xpm" id))
-                                                          'xpm nil :ascent 95))
-                                          '(1 2 3 4 5 6))))
-(defvar nyan-current-frame 0)
-
-(defconst +nyan-catface+ [
-                          ["[]*" "[]#"]
-                          ["(*^ー゚)" "( ^ー^)" "(^ー^ )" "(゚ー^*)"]
-                          ["(´ω`三 )" "( ´ω三` )" "( ´三ω` )" "( 三´ω`)"
-                           "( 三´ω`)" "( ´三ω` )" "( ´ω三` )" "(´ω`三 )"]
-                          ["(´д`;)" "( ´д`;)" "( ;´д`)" "(;´д` )"]
-                          ["(」・ω・)」" "(/・ω・)/" "(」・ω・)」" "(/・ω・)/"
-                           "(」・ω・)」" "(/・ω・)/" "(」・ω・)」" "\(・ω・)/"]
-                          ["(>ワ<三   )" "( >ワ三<  )"
-                           "(  >三ワ< )" "(   三>ワ<)"
-                           "(  >三ワ< )" "( >ワ三<  )"]])
-
-(defun nyan-toggle-wavy-trail ()
-  "Toggle the trail to look more like the original Nyan Cat animation."
-  (interactive)
-  (setq nyan-wavy-trail (not nyan-wavy-trail)))
-
-(defun nyan-swich-anim-frame ()
-  (setq nyan-current-frame (% (+ 1 nyan-current-frame) 6))
-  (redraw-modeline))
-
-(defun nyan-get-anim-frame ()
-  (if nyan-animate-nyancat
-      (nth nyan-current-frame nyan-animation-frames)
-    nyan-cat-image))
-
-(defun nyan-wavy-rainbow-ascent (number)
-  (if nyan-animate-nyancat
-      (min 100 (+ 90
-                  (* 3 (abs (- (/ 6 2)
-                               (% (+ number nyan-current-frame)
-                                  6))))))
-    (if (zerop (% number 2)) 80 'center)))
-
-(defun nyan-number-of-rainbows ()
-  (round (/ (* (round (* 100
-                         (/ (- (float (point))
-                               (float (point-min)))
-                            (float (point-max)))))
-               (- nyan-bar-length +nyan-cat-size+))
-            100)))
-
-(defun nyan-catface () (aref +nyan-catface+ nyan-cat-face-number))
-
-(defun nyan-catface-index ()
-  (min (round (/ (* (round (* 100
-                              (/ (- (float (point))
-                                    (float (point-min)))
-                                 (float (point-max)))))
-                    (length (nyan-catface)))
-                 100)) (- (length (nyan-catface)) 1)))
-
-(defun nyan-scroll-buffer (percentage buffer)
-  (interactive)
-  (with-current-buffer buffer
-    (goto-char (floor (* percentage (point-max))))))
-
-(defun nyan-add-scroll-handler (string percentage buffer)
-  (lexical-let ((percentage percentage)
-                (buffer buffer))
-    (propertize string 'keymap `(keymap (mode-line keymap (down-mouse-1 . ,(lambda () (interactive) (nyan-scroll-buffer percentage buffer))))))))
-
-(defun nyan-create ()
-  (if (< (window-width) nyan-minimum-window-width)
-      ""                                ; disabled for too small windows
-    (let* ((rainbows (nyan-number-of-rainbows))
-           (outerspaces (- nyan-bar-length rainbows +nyan-cat-size+))
-           (rainbow-string "")
-           (xpm-support (image-type-available-p 'xpm))
-           (nyancat-string (propertize
-                            (aref (nyan-catface) (nyan-catface-index))
-                            'display (nyan-get-anim-frame)))
-           (outerspace-string "")
-           (buffer (current-buffer)))
-      (dotimes (number rainbows)
-        (setq rainbow-string (concat rainbow-string
-                                     (nyan-add-scroll-handler
-                                      (if xpm-support
-                                          (propertize "|"
-                                                      'display (create-image +nyan-rainbow-image+ 'xpm nil :ascent (or (and nyan-wavy-trail
-                                                                                                                            (nyan-wavy-rainbow-ascent number))
-                                                                                                                       (if nyan-animate-nyancat 95 'center))))
-                                        "|")
-                                      (/ (float number) nyan-bar-length) buffer))))
-      (dotimes (number outerspaces)
-        (setq outerspace-string (concat outerspace-string
-                                        (nyan-add-scroll-handler
-                                         (if xpm-support
-                                             (propertize "-"
-                                                         'display (create-image +nyan-outerspace-image+ 'xpm nil :ascent (if nyan-animate-nyancat 95 'center)))
-                                           "-")
-                                         (/ (float (+ rainbows +nyan-cat-size+ number)) nyan-bar-length) buffer))))
-      ;; Compute Nyan Cat string.
-      (propertize (concat rainbow-string
-                          nyancat-string
-                          outerspace-string)
-                  'help-echo +nyan-modeline-help-string+))))
-
-;;;###autoload
-(define-minor-mode nyan-mode
-  "Use NyanCat to show buffer size and position in mode-line.
-You can customize this minor mode, see option `nyan-mode'.
-
-Note: If you turn this mode on then you probably want to turn off
-option `scroll-bar-mode'."
-  :global t
-  :group 'nyan
-  (if nyan-mode
-      (progn
-        (unless nyan-old-car-mode-line-position
-          (setq nyan-old-car-mode-line-position (car mode-line-position)))
-        (setcar mode-line-position '(:eval (list (nyan-create)))))
-    (setcar mode-line-position nyan-old-car-mode-line-position)))
-
-
-(provide 'nyan-mode)
-
-;;; nyan-mode.el ends here
diff --git a/elpa/nyan-mode-20170423.740/nyan-mode.elc b/elpa/nyan-mode-20170423.740/nyan-mode.elc
deleted file mode 100644
index 9c7c71a..0000000
--- a/elpa/nyan-mode-20170423.740/nyan-mode.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/COPYING b/elpa/org-9.1.14/COPYING
deleted file mode 100644
index 94a9ed0..0000000
--- a/elpa/org-9.1.14/COPYING
+++ /dev/null
@@ -1,674 +0,0 @@
-                    GNU GENERAL PUBLIC LICENSE
-                       Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-                            Preamble
-
-  The GNU General Public License is a free, copyleft license for
-software and other kinds of works.
-
-  The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works.  By contrast,
-the GNU General Public License is intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.  We, the Free Software Foundation, use the
-GNU General Public License for most of our software; it applies also to
-any other work released this way by its authors.  You can apply it to
-your programs, too.
-
-  When we speak of free software, we are referring to freedom, not
-price.  Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
-  To protect your rights, we need to prevent others from denying you
-these rights or asking you to surrender the rights.  Therefore, you have
-certain responsibilities if you distribute copies of the software, or if
-you modify it: responsibilities to respect the freedom of others.
-
-  For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must pass on to the recipients the same
-freedoms that you received.  You must make sure that they, too, receive
-or can get the source code.  And you must show them these terms so they
-know their rights.
-
-  Developers that use the GNU GPL protect your rights with two steps:
-(1) assert copyright on the software, and (2) offer you this License
-giving you legal permission to copy, distribute and/or modify it.
-
-  For the developers' and authors' protection, the GPL clearly explains
-that there is no warranty for this free software.  For both users' and
-authors' sake, the GPL requires that modified versions be marked as
-changed, so that their problems will not be attributed erroneously to
-authors of previous versions.
-
-  Some devices are designed to deny users access to install or run
-modified versions of the software inside them, although the manufacturer
-can do so.  This is fundamentally incompatible with the aim of
-protecting users' freedom to change the software.  The systematic
-pattern of such abuse occurs in the area of products for individuals to
-use, which is precisely where it is most unacceptable.  Therefore, we
-have designed this version of the GPL to prohibit the practice for those
-products.  If such problems arise substantially in other domains, we
-stand ready to extend this provision to those domains in future versions
-of the GPL, as needed to protect the freedom of users.
-
-  Finally, every program is threatened constantly by software patents.
-States should not allow patents to restrict development and use of
-software on general-purpose computers, but in those that do, we wish to
-avoid the special danger that patents applied to a free program could
-make it effectively proprietary.  To prevent this, the GPL assures that
-patents cannot be used to render the program non-free.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.
-
-                       TERMS AND CONDITIONS
-
-  0. Definitions.
-
-  "This License" refers to version 3 of the GNU General Public License.
-
-  "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
-  "The Program" refers to any copyrightable work licensed under this
-License.  Each licensee is addressed as "you".  "Licensees" and
-"recipients" may be individuals or organizations.
-
-  To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy.  The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
-  A "covered work" means either the unmodified Program or a work based
-on the Program.
-
-  To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy.  Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
-  To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies.  Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
-  An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License.  If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
-  1. Source Code.
-
-  The "source code" for a work means the preferred form of the work
-for making modifications to it.  "Object code" means any non-source
-form of a work.
-
-  A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
-  The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form.  A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
-  The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities.  However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work.  For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
-  The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
-  The Corresponding Source for a work in source code form is that
-same work.
-
-  2. Basic Permissions.
-
-  All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met.  This License explicitly affirms your unlimited
-permission to run the unmodified Program.  The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work.  This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
-  You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force.  You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright.  Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
-  Conveying under any other circumstances is permitted solely under
-the conditions stated below.  Sublicensing is not allowed; section 10
-makes it unnecessary.
-
-  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
-  No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
-  When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
-  4. Conveying Verbatim Copies.
-
-  You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
-  You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
-  5. Conveying Modified Source Versions.
-
-  You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
-    a) The work must carry prominent notices stating that you modified
-    it, and giving a relevant date.
-
-    b) The work must carry prominent notices stating that it is
-    released under this License and any conditions added under section
-    7.  This requirement modifies the requirement in section 4 to
-    "keep intact all notices".
-
-    c) You must license the entire work, as a whole, under this
-    License to anyone who comes into possession of a copy.  This
-    License will therefore apply, along with any applicable section 7
-    additional terms, to the whole of the work, and all its parts,
-    regardless of how they are packaged.  This License gives no
-    permission to license the work in any other way, but it does not
-    invalidate such permission if you have separately received it.
-
-    d) If the work has interactive user interfaces, each must display
-    Appropriate Legal Notices; however, if the Program has interactive
-    interfaces that do not display Appropriate Legal Notices, your
-    work need not make them do so.
-
-  A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit.  Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
-  6. Conveying Non-Source Forms.
-
-  You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
-    a) Convey the object code in, or embodied in, a physical product
-    (including a physical distribution medium), accompanied by the
-    Corresponding Source fixed on a durable physical medium
-    customarily used for software interchange.
-
-    b) Convey the object code in, or embodied in, a physical product
-    (including a physical distribution medium), accompanied by a
-    written offer, valid for at least three years and valid for as
-    long as you offer spare parts or customer support for that product
-    model, to give anyone who possesses the object code either (1) a
-    copy of the Corresponding Source for all the software in the
-    product that is covered by this License, on a durable physical
-    medium customarily used for software interchange, for a price no
-    more than your reasonable cost of physically performing this
-    conveying of source, or (2) access to copy the
-    Corresponding Source from a network server at no charge.
-
-    c) Convey individual copies of the object code with a copy of the
-    written offer to provide the Corresponding Source.  This
-    alternative is allowed only occasionally and noncommercially, and
-    only if you received the object code with such an offer, in accord
-    with subsection 6b.
-
-    d) Convey the object code by offering access from a designated
-    place (gratis or for a charge), and offer equivalent access to the
-    Corresponding Source in the same way through the same place at no
-    further charge.  You need not require recipients to copy the
-    Corresponding Source along with the object code.  If the place to
-    copy the object code is a network server, the Corresponding Source
-    may be on a different server (operated by you or a third party)
-    that supports equivalent copying facilities, provided you maintain
-    clear directions next to the object code saying where to find the
-    Corresponding Source.  Regardless of what server hosts the
-    Corresponding Source, you remain obligated to ensure that it is
-    available for as long as needed to satisfy these requirements.
-
-    e) Convey the object code using peer-to-peer transmission, provided
-    you inform other peers where the object code and Corresponding
-    Source of the work are being offered to the general public at no
-    charge under subsection 6d.
-
-  A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
-  A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling.  In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage.  For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product.  A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
-  "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source.  The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
-  If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information.  But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
-  The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed.  Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
-  Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
-  7. Additional Terms.
-
-  "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law.  If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
-  When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it.  (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.)  You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
-  Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
-    a) Disclaiming warranty or limiting liability differently from the
-    terms of sections 15 and 16 of this License; or
-
-    b) Requiring preservation of specified reasonable legal notices or
-    author attributions in that material or in the Appropriate Legal
-    Notices displayed by works containing it; or
-
-    c) Prohibiting misrepresentation of the origin of that material, or
-    requiring that modified versions of such material be marked in
-    reasonable ways as different from the original version; or
-
-    d) Limiting the use for publicity purposes of names of licensors or
-    authors of the material; or
-
-    e) Declining to grant rights under trademark law for use of some
-    trade names, trademarks, or service marks; or
-
-    f) Requiring indemnification of licensors and authors of that
-    material by anyone who conveys the material (or modified versions of
-    it) with contractual assumptions of liability to the recipient, for
-    any liability that these contractual assumptions directly impose on
-    those licensors and authors.
-
-  All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10.  If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term.  If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
-  If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
-  Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
-  8. Termination.
-
-  You may not propagate or modify a covered work except as expressly
-provided under this License.  Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
-  However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
-  Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
-  Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License.  If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
-  9. Acceptance Not Required for Having Copies.
-
-  You are not required to accept this License in order to receive or
-run a copy of the Program.  Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance.  However,
-nothing other than this License grants you permission to propagate or
-modify any covered work.  These actions infringe copyright if you do
-not accept this License.  Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
-  10. Automatic Licensing of Downstream Recipients.
-
-  Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License.  You are not responsible
-for enforcing compliance by third parties with this License.
-
-  An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations.  If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
-  You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License.  For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
-  11. Patents.
-
-  A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based.  The
-work thus licensed is called the contributor's "contributor version".
-
-  A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version.  For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
-  Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
-  In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement).  To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
-  If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients.  "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
-  If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
-  A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License.  You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
-  Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
-  12. No Surrender of Others' Freedom.
-
-  If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all.  For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
-  13. Use with the GNU Affero General Public License.
-
-  Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU Affero General Public License into a single
-combined work, and to convey the resulting work.  The terms of this
-License will continue to apply to the part which is the covered work,
-but the special requirements of the GNU Affero General Public License,
-section 13, concerning interaction through a network will apply to the
-combination as such.
-
-  14. Revised Versions of this License.
-
-  The Free Software Foundation may publish revised and/or new versions of
-the GNU General Public License from time to time.  Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-  Each version is given a distinguishing version number.  If the
-Program specifies that a certain numbered version of the GNU General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation.  If the Program does not specify a version number of the
-GNU General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
-  If the Program specifies that a proxy can decide which future
-versions of the GNU General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
-  Later license versions may give you additional or different
-permissions.  However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
-  15. Disclaimer of Warranty.
-
-  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. Limitation of Liability.
-
-  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
-  17. Interpretation of Sections 15 and 16.
-
-  If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
-                     END OF TERMS AND CONDITIONS
-
-            How to Apply These Terms to Your New Programs
-
-  If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-  To do so, attach the following notices to the program.  It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the program's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This program is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-Also add information on how to contact you by electronic and paper mail.
-
-  If the program does terminal interaction, make it output a short
-notice like this when it starts in an interactive mode:
-
-    <program>  Copyright (C) <year>  <name of author>
-    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
-    This is free software, and you are welcome to redistribute it
-    under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License.  Of course, your program's commands
-might be different; for a GUI interface, you would use an "about box".
-
-  You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU GPL, see
-<http://www.gnu.org/licenses/>.
-
-  The GNU General Public License does not permit incorporating your program
-into proprietary programs.  If your program is a subroutine library, you
-may consider it more useful to permit linking proprietary applications with
-the library.  If this is what you want to do, use the GNU Lesser General
-Public License instead of this License.  But first, please read
-<http://www.gnu.org/philosophy/why-not-lgpl.html>.
diff --git a/elpa/org-9.1.14/README_ELPA b/elpa/org-9.1.14/README_ELPA
deleted file mode 100644
index 7640a44..0000000
--- a/elpa/org-9.1.14/README_ELPA
+++ /dev/null
@@ -1,41 +0,0 @@
-This is the Emacs Org project, an Emacs library for organizing your life.
-
-The homepage of Org is at:
-  https://orgmode.org
-
-Installations instructions are at:
-  https://orgmode.org/org.html#Installation
-
-This distribution contains an ELPA packaged version of Org.
-"ELPA" stands for the "Emacs Lisp Package Archive".
-
-The GNU ELPA is at:
-  http://elpa.gnu.org
-
-It contains the org-*.tar package, containing only the org files
-that are also part of GNU Emacs.
-
-There are other ELPA online, offering more packages.
-
-Some contain the org-plus-contrib-*.tar ELPA package, which bundles
-the core Org files plus many additional contributed libraries.
-
-All ELPA packages of Org contain:
-
-README_ELPA
-    This file.
-
-*.el
-    Elisp files.
-
-org
-    The Org info manual.
-
-orgcard.pdf
-    The Org reference card.
-
-etc/
-    Libraries for the ODT exporter.
-
-org-*-pkg.el
-    The name of the package, requested GNU Emacs packaging system.
diff --git a/elpa/org-9.1.14/dir b/elpa/org-9.1.14/dir
deleted file mode 100644
index 9610c40..0000000
--- a/elpa/org-9.1.14/dir
+++ /dev/null
@@ -1,18 +0,0 @@
-This is the file .../info/dir, which contains the
-topmost node of the Info hierarchy, called (dir)Top.
-The first time you invoke Info you start off looking at this node.
-
-File: dir,	Node: Top	This is the top of the INFO tree
-
-  This (the Directory node) gives a menu of major topics.
-  Typing "q" exits, "?" lists all Info commands, "d" returns here,
-  "h" gives a primer for first-timers,
-  "mEmacs<Return>" visits the Emacs manual, etc.
-
-  In Emacs, you can click mouse button 2 on a menu item or cross reference
-  to select it.
-
-* Menu:
-
-Emacs
-* Org Mode: (org).      Outline-based notes management and organizer
diff --git a/elpa/org-9.1.14/etc/ORG-NEWS b/elpa/org-9.1.14/etc/ORG-NEWS
deleted file mode 100644
index 013c7b1..0000000
--- a/elpa/org-9.1.14/etc/ORG-NEWS
+++ /dev/null
@@ -1,4314 +0,0 @@
-ORG NEWS -- history of user-visible changes.   -*- mode: org; coding: utf-8 -*-
-
-#+LINK: doc https://orgmode.org/worg/doc.html#%s
-#+LINK: git https://code.orgmode.org/bzg/org-mode/commit/%s
-
-Copyright (C) 2012-2018 Free Software Foundation, Inc.
-See the end of the file for license conditions.
-
-Please send Org bug reports to mailto:emacs-orgmode@gnu.org.
-
-* Version 9.1
-
-** Incompatible changes
-
-*** Variables relative to clocksum duration are obsolete
-
-~org-time-clocksum-format~, ~org-time-clocksum-use-fractional~ and
-~org-time-clocksum-fractional-format~ are obsolete.  If you changed
-them, consider modifying ~org-duration-format~ instead.
-
-Variable ~org-time-clocksum-use-effort-durations~ is also obsolete.
-Consider setting ~org-duration-units~ instead.
-
-*** ~org-at-timestamp-p~ optional argument accepts different values
-
-See docstrings for the allowed values.  For backward compatibility,
-~(org-at-timestamp-p t)~ is still supported, but should be updated
-accordingly.
-
-*** ~org-capture-templates~ no longer accepts S-expressions as file names
-
-Since functions are allowed there, a straightforward way to migrate
-is to turn, e.g.,
-
-: (file (sexp))
-
-into
-
-: (file (lambda () (sexp)))
-
-*** Deleted contributed packages
-
-=org-ebib.el, =org-bullets.el= and =org-mime.el= have been deleted
-from the contrib/ directory.
-
-You can now find them here :
-
-- https://github.com/joostkremers/ebib
-- https://github.com/sabof/org-bullets
-- https://github.com/org-mime/org-mime
-
-*** Change ~org-texinfo-classes~ value
-The value cannot support functions to create sectioning commands
-anymore.  Also, the sectioning commands should include commands for
-appendices.  See the docstring for more information.
-*** Removal of ~:sitemap-sans-extension~
-
-The publishing property is no longer recognized, as a consequence of
-changes to site-map generation.
-
-You can get the same functionality by setting ~:sitemap-format-entry~
-to the following
-
-#+BEGIN_SRC elisp
-(lambda (entry style project)
-  (cond ((not (directory-name-p entry))
-	 (format "[[file:%s][%s]]"
-		 (file-name-sans-extension entry)
-		 (org-publish-find-title entry project)))
-	((eq style 'tree) (file-name-nondirectory (directory-file-name entry)))
-	(t entry)))
-#+END_SRC
-
-*** Change signature for ~:sitemap-function~
-
-~:sitemap-function~ now expects to be called with two arguments.  See
-~org-publish-project-alist~ for details.
-
-*** Change signature for some properties in ~org-list-to-generic~
-
-~:istart~, ~:icount~, ~:iend~ and ~:isep~ now expect the type of the
-list as their first argument.
-
-*** Change signature for ~org-get-repeater~
-The optional argument is now a string to extract the repeater from.
-See docstring for details.
-
-*** Change signature for ~org-time-string-to-time~
-See docstring for changes.
-
-*** Change order of items in ~org-agenda-time-grid~
-~org-agenda-time-grid~ gained an extra item to allow users to customize
-the string displayed after times in the agenda. See docstring for
-details.
-
-*** ~tags-todo~ custom searches now include DONE keywords
-
-Use "/!" markup when filtering TODO keywords to get only not-done TODO
-keywords.
-
-*** ~org-split-string~ returns ~("")~ when called on an empty string
-It used to return nil.
-*** Removal of =ob-scala.el=
-
-See [[https://github.com/ensime/emacs-scala-mode/issues/114][this github issue]].
-
-You can use =ob-scala.el= as packaged in scala-mode, available from the
-MELPA repository.
-
-** New features
-*** iCalendar export uses inheritance for TIMEZONE and LOCATION properties
-Both these properties can be inherited during iCalendar export,
-depending on the value of ~org-use-property-inheritance~.
-*** iCalendar export respects a TIMEZONE property
-Set the TIMEZONE property on an entry to specify a time zone for that
-entry only during iCalendar export.  The property value should be
-specified as in "Europe/London".
-*** ~org-attach~ can move directory contents
-When setting a new directory for an entry, org-attach offers to move
-files over from the old directory.  Using a prefix arg will reset the
-directory to old, ID based one.
-*** New Org duration library
-This new library implements tools to read and print time durations in
-various formats (e.g., "H:MM", or "1d 2h 3min"...).
-
-See ~org-duration-to-minutes~ and ~org-duration-from-minutes~
-docstrings.
-
-*** Agenda
-**** New variable : ~org-agenda-show-future-repeats~
-**** New variable : ~org-agenda-prefer-last-repeat~
-**** New variable : ~org-deadline-past-days~
-See docstring for details.
-**** Binding C-c C-x < for ~org-agenda-set-restriction-lock-from-agenda~
-**** New auto-align default setting for =org-agenda-tags-column=
-
-=org-agenda-tags-column= can now be set to =auto=, which will
-automatically align tags to the right edge of the window.  This is now
-the default setting.
-
-*** New value for ~org-publish-sitemap-sort-folders~
-
-The new ~ignore~ value effectively allows toggling inclusion of
-directories in published site-maps.
-
-*** Babel
-
-**** Scheme: support for tables
-**** Scheme: new variable: ~org-babel-scheme-null-to~
-
-This new custom option allows you to use an empty list or null symbol to
-format the table output, initially assigned to ~hlines~.
-
-**** Scheme: new header ~:prologue~
-
-A new block code header has been created for Org Babel that enables
-developers to prepend code to the scheme block being processed.
-
-Multiple ~:prologue~ headers can be added each of them using a string
-with the content to be added.
-
-The scheme blocks are prepared by surrounding the code in the block
-with a let form. The content of the ~:prologue~ headers are prepended
-before this let form.
-
-**** Support for hledger accounting reports added
-**** Clojure: new setting ~org-babel-clojure-sync-nrepl-timeout~
-
-Creation of a new setting to specify the Cider timeout.  By setting
-the =org-babel-clojure-sync-nrepl-timeout= setting option.  The value
-is in seconds and if set to =nil= then no timeout will occur.
-**** Clojure: new header ~:show-process~
-
-A new block code header has been created for Org Babel that enables
-developers to output the process of an ongoing process into a new
-window/buffer.
-
-You can tell Org Babel to output the process of a running code block.
-
-To show that output you only have to specify the =:show-process=
-option in the code block's header like this:
-
-#+begin_example
-,#+BEGIN_SRC clojure :results output :show-process t
-  (dotimes [n 10]
-    (println n ".")
-    (Thread/sleep 500))
-,#+END_SRC
-#+end_example
-
-If =:show-process= is specified that way, then when you will run the
-code using =C-c C-c= a new window will open in Emacs.  Everything that
-is output by the REPL will immediately be added to that new window.
-
-When the processing of the code is finished, then the window and its
-buffer will be closed and the results will be reported in the
-=#+RESULTS= section.
-
-Note that the =:results= parameter's behavior is *not* changed.  If
-=silent= is specified, then no result will be displayed.  If =output=
-is specified then all the output from the window will appears in the
-results section.  If =value= is specified, then only the last returned
-value of the code will be displayed in the results section.
-
-**** Maxima: new headers ~:prologue~ and ~:epilogue~
-Babel options ~:prologue~ and ~:epilogue~ have been implemented for
-Maxima src blocks which prepend and append, respectively, the given
-code strings.  This can be useful for specifying formatting settings
-which would add clutter to exported code.  For instance, you can use
-this ~:prologue "fpprintprec: 2; linel: 50;"~ for presenting Maxima
-results in a beamer presentation.
-**** PlantUML: add support for header arguments
-
-[[http://plantuml.com/][Plantuml]] source blocks now support the [[https://orgmode.org/manual/prologue.html#prologue][~:prologue~]], [[https://orgmode.org/manual/epilogue.html#epilogue][~:epilogue~]] and
-[[https://orgmode.org/manual/var.html#var][~:var~]] header arguments.
-
-**** SQL: new engine added ~sqsh~
-
-A new engine was added to support ~sqsh~ command line utility for use
-against Microsoft SQL Server or Sybase SQL server.
-
-More information on ~sqsh~ can be found here: [[https://sourceforge.net/projects/sqsh/][sourceforge/sqsh]]
-
-To use ~sqsh~ in an *sql* =SRC_BLK= set the =:engine= like this:
-
-#+begin_example
-,#+BEGIN_SRC sql :engine sqsh :dbhost my_host :dbuser master :dbpassword pass :database support
-Select * From Users
-Where clue > 0
-,#+END_SRC
-#+end_example
-
-**** SQL: new engine added =vertica=
-
-A new engine was added to support vsql command line utility for use
-against HP Vertica.
-
-More information on =vsql= can be found here: [[https://my.vertica.com/docs/7.2.x/HTML/index.htm#Authoring/ConnectingToHPVertica/vsql/UsingVsql.htm][my.vertica.com]]
-
-To use =vertica= in an sql =SRC_BLK= set the =:engine= like this:
-
-#+BEGIN_EXAMPLE
-  ,#+BEGIN_SRC sql :engine vertica :dbhost my_host :dbuser dbadmin :dbpassword pw :database vmart
-  SELECT * FROM nodes;
-  ,#+END_SRC
-#+END_EXAMPLE
-**** C++: New header ~:namespaces~
-
-The new ~:namespaces~ export option can be used to specify namespaces
-to be used within a C++ org source block.  Its usage is similar to
-~:includes~, in that it can accept multiple, space-separated
-namespaces to use.  This header is equivalent to adding ~using
-namespace <name>;~ in the source block. Here is a "Hello World" in C++
-using ~:namespaces~:
-
-#+begin_example
-  ,#+BEGIN_SRC C++ :results output :namespaces std :includes <iostream>
-    cout << "Hello World" << endl;
-  ,#+END_SRC
-#+end_example
-
-**** Support for Vala language
-
-[[https://wiki.gnome.org/Projects/Vala][Vala]] language blocks support two special header arguments:
-
-- ~:flags~ passes arguments to the compiler
-- ~:cmdline~ passes commandline arguments to the generated executable
-
-Support for [[https://orgmode.org/manual/var.html#var][~:var~]] does not exist yet, also there is no [[https://orgmode.org/manual/session.html#session][~:session~]]
-support because Vala is a compiled language.
-
-The Vala compiler binary can be changed via the ~defcustom~
-~org-babel-vala-compiler~.
-
-*** New ~function~ scope argument for the Clock Table
-Added a nullary function that returns a list of files as a possible
-argument for the scope of the clock table.
-*** Export
-**** Implement vernacular table of contents in Markdown exporter
-Global table of contents are generated using vanilla Markdown syntax
-instead of HTML.  Also #+TOC keyword, including local table of
-contents, are now supported.
-**** Add Slovenian translations
-**** Implement ~org-export-insert-image-links~
-This new function is meant to be used in back-ends supporting images
-as descriptions of links, a.k.a. image links.  See its docstring for
-details.
-**** New macro : ~{{{n}}}~
-This macro creates and increment multiple counters in a document.  See
-manual for details.
-**** Add global macros through ~org-export-global-macros~
-With this variable, one can define macros available for all documents.
-**** New keyword ~#+EXPORT_FILE_NAME~
-Similarly to ~:EXPORT_FILE_NAME:~ property, this keyword allows the
-user to specify the name of the output file upon exporting the
-document.  This also has an effect on publishing.
-**** Horizontal rules are no longer ignored in LaTeX table math mode
-**** Use ~compilation-mode~ for compilation output
-**** Plain lists accept a new ~:separator~ attribute in Texinfo
-
-The new ~:separator~ attribute splits a tag from a description list
-item into multiple parts.  This allows to have two-column tables with
-multiple entries in the first column.  See manual for more details.
-
-**** ~latex-environment~ elements support ~caption~ keywords for LaTeX export
-*** ~org-edit-special~ can edit LaTeX environments
-
-Using ~C-c '~ on a LaTeX environment opens a sub-editing buffer.  By
-default, major mode in that buffer is ~latex-mode~, but it can be
-changed by configuring ~org-src-lang-modes~.
-
-*** ~org-list-to-generic~ includes a new property: ~:ifmt~
-
-~:ifmt~ is a function to be called on the body of each item.  See
-~org-list-to-generic~ documentation for details.
-
-*** New variable : ~org-bibtex-headline-format-function~
-This allow to use a different title than entry title.
-
-*** ~org-attach~ supports attaching files from URLs
-
-Using ~C-c C-a u~ prompts for a URL pointing to a file to be attached
-to the document.
-
-*** New option for ~org-refile-use-outline-path~
-~org-refile-use-outline-path~ now supports the setting ~buffer-name~,
-which causes refile targets to be prefixed with the buffer’s
-name. This is particularly useful when used in conjunction with
-~uniquify.el~.
-
-*** ~org-file-contents~ now allows the FILE argument to be a URL.
-This allows ~#+SETUPFILE:~ to accept a URL instead of a local file
-path.  The URL contents are auto-downloaded and saved to a temporary
-cache ~org--file-cache~.  A new optional argument ~NOCACHE~ is added
-to ~org-file-contents~.
-
-*** ~org-mode-restart~ now resets the newly added ~org--file-cache~.
-Using ~C-c C-c~ on any keyword (like ~#+SETUPFILE~) will reset the
-that file cache.
-
-*** New option : ~org-table-duration-hour-zero-padding~
-This variable allow computed durations in tables to be zero-padded.
-
-*** New mode switch for table formulas : =U=
-This mode omits seconds in durations.
-
-** Removed functions
-
-*** Org Timeline
-
-This feature has been removed.  Use a custom agenda view, possibly
-narrowed to current buffer to achieve a similar functionality.
-
-*** ~org-agenda-skip-entry-when-regexp-matches~ is obsolete
-
-Use ~org-agenda-skip-if~ instead.
-
-*** ~org-agenda-skip-subtree-when-regexp-matches~ is obsolete
-
-Use ~org-agenda-skip-if~ instead.
-
-*** ~org-agenda-skip-entry-when-regexp-matches-in-subtree~ is obsolete
-
-Use ~org-agenda-skip-if~ instead.
-
-*** ~org-minutes-to-clocksum-string~ is obsolete
-
-Use ~org-duration-from-minutes~ instead.
-
-*** ~org-hh:mm-string-to-minutes~ is obsolete
-
-Use ~org-duration-to-minutes~ instead.
-
-*** ~org-duration-string-to-minutes~ is obsolete
-
-Use ~org-duration-to-minutes~ instead.
-
-*** ~org-gnus-nnimap-cached-article-number~ is removed.
-
-This function relied on ~nnimap-group-overview-filename~, which was
-removed from Gnus circa September 2010.
-
-** Removed options
-
-*** ~org-agenda-repeating-timestamp-show-all~ is removed.
-
-For an equivalent to a ~nil~ value, set
-~org-agenda-show-future-repeats~ to nil and
-~org-agenda-prefer-last-repeat~ to ~t~.
-
-*** ~org-gnus-nnimap-query-article-no-from-file~ is removed.
-
-This variable has no effect, as it was relying on a function that was
-removed from Gnus circa September 2010.
-
-*** ~org-usenet-links-prefer-google~ is obsolete.
-
-Use ~org-gnus-prefer-web-links~ instead.
-
-*** ~org-publish-sitemap-file-entry-format~ is deprecated
-
-One can provide new ~:sitemap-format-entry~ property for a function
-equivalent to the removed format string.
-
-*** ~org-enable-table-editor~ is removed.
-
-Setting it to a ~nil~ value broke some other features (e.g., speed
-keys).
-
-*** ~org-export-use-babel~ cannot be set to ~inline-only~
-
-The variable is now a boolean.
-
-*** ~org-texinfo-def-table-markup~ is obsolete
-
-Use ~org-texinfo-table-default-markup~ instead.
-
-** New functions
-
-*** ~org-publish-find-property~
-
-This function can be used as a tool to format entries in a site-map,
-in addition to ~org-publish-find-title~ and ~org-publish-find-date~.
-
-*** ~org-list-to-org~
-
-It is the reciprocal of ~org-list-to-lisp~, which see.
-
-*** ~org-agenda-set-restriction-lock-from-agenda~
-
-Call ~org-agenda-set-restriction-lock~ from the agenda.
-
-** Miscellaneous
-
-*** The Library of Babel now on Worg
-
-The library-of-babel.org used to be accessible from the =doc/=
-directory, distributed with Org’s core.  It is now accessible
-from the Worg community-driven documentation [[https://orgmode.org/worg/library-of-babel.html][here]].
-
-If you want to contribute to it, please see [[https://orgmode.org/worg/org-contribute.html][how to contribute]].
-
-*** Allow multiple columns view
-
-Columns view is not limited to a single buffer anymore.
-*** Org Attach obeys ~dired-dwim-target~
-
-When a Dired buffer is opened next to the Org document being edited,
-the prompt for file to attach can start in the Dired buffer's
-directory if `dired-dwim-target' in non-nil.
-
-*** ~org-fill-paragraph~ can now fill a whole region
-*** More specific anniversary descriptions
-
-Anniversary descriptions (used in the agenda view, for instance)
-include the point in time, when the anniversary appears.  This is,
-in its most general form, just the date of the anniversary.  Or
-more specific terms, like "today", "tomorrow" or "in n days" are
-used to describe the time span.
-
-This feature allows to automatically change the description of an
-anniversary, depending on if it occurs in the next few days or
-far away in the future.
-
-*** Computed dates in tables appear as inactive time stamps
-
-*** Save point before opening a file with an unknown search option
-
-When following a file link with a search option (e.g., =::#custom-id=)
-that doesn't exist in the target file, save position before raising an
-error.  As a consequence, it is possible to jump back to the original
-document with ~org-mark-ring-goto~ (default binding =C-c &=).
-
-*** ~org-get-heading~ accepts two more optional arguments
-
-See docstring for details.
-
-*** New option ~org-babel-uppercase-example-markers~
-
-This variable is a ~defcustom~ and replaces the variable
-~org-babel-capitalize-example-region-markers~, which is a ~defvar~ and
-is now obsolete.
-*** =INCLUDE= keywords in commented trees are now ignored.
-*** Default value for ~org-texinfo-text-markup-alist~ changed.
-
-Now ~=...=~ markup uses ~@samp{}~ instead of ~@verb{}~.  You can use
-~@verb{}~ again by customizing the variable.
-*** Texinfo exports example blocks as ~@example~
-*** Texinfo exports inline src blocks as ~@code{}~
-*** Texinfo default table markup is ~@asis~
-It used to be ~@samp~ but ~@asis~ is neutral and, therefore, more
-suitable as a default value.
-*** Texinfo default process includes ~--no-split~ option
-*** New entities : ~\dollar~ and ~\USD~
-*** Support for date style URLs in =org-protocol://open-source=
-    URLs like =https://cool-blog.com/2017/05/20/cool-post/= are
-    covered by rewrite rules.
-
-*** Add (C) =COMMENT= support to ~org-structure-template-alist~
-
-* Version 9.0
-
-** Incompatible changes
-
-*** Emacs 23 support has been dropped
-
-From now on, Org expects at least Emacs 24.3, although Emacs 24.4 or
-above is suggested.
-
-*** XEmacs support has been dropped
-
-Incomplete compatibility layer with XEmacs has been removed.  If you
-want to take over maintenance of this compatibility, please contact
-our mailing list.
-
-*** New syntax for export blocks
-
-Export blocks are explicitly marked as such at the syntax level to
-disambiguate their parsing from special blocks.  The new syntax is
-
-#+BEGIN_SRC org
-,#+BEGIN_EXPORT backend
-...
-,#+END_EXPORT
-#+END_SRC
-
-instead of
-
-#+BEGIN_SRC org
-,#+BEGIN_backend
-...
-,#+END_backend
-#+END_SRC
-
-As a consequence, =INCLUDE= keywords syntax is modified, e.g.,
-
-#+BEGIN_SRC org
-,#+INCLUDE: "file.org" HTML
-#+END_SRC
-
-becomes
-
-#+BEGIN_SRC org
-,#+INCLUDE: "file.org" export html
-#+END_SRC
-
-The following function repairs export blocks and =INCLUDE= keywords
-using previous syntax:
-
-#+BEGIN_SRC emacs-lisp
-(defun org-repair-export-blocks ()
-  "Repair export blocks and INCLUDE keywords in current buffer."
-  (interactive)
-  (when (eq major-mode 'org-mode)
-    (let ((case-fold-search t)
-          (back-end-re (regexp-opt
-                        '("HTML" "ASCII" "LATEX" "ODT" "MARKDOWN" "MD" "ORG"
-                          "MAN" "BEAMER" "TEXINFO" "GROFF" "KOMA-LETTER")
-                        t)))
-      (org-with-wide-buffer
-       (goto-char (point-min))
-       (let ((block-re (concat "^[ \t]*#\\+BEGIN_" back-end-re)))
-         (save-excursion
-           (while (re-search-forward block-re nil t)
-             (let ((element (save-match-data (org-element-at-point))))
-               (when (eq (org-element-type element) 'special-block)
-                 (save-excursion
-                   (goto-char (org-element-property :end element))
-                   (save-match-data (search-backward "_"))
-                   (forward-char)
-                   (insert "EXPORT")
-                   (delete-region (point) (line-end-position)))
-                 (replace-match "EXPORT \\1" nil nil nil 1))))))
-       (let ((include-re
-              (format "^[ \t]*#\\+INCLUDE: .*?%s[ \t]*$" back-end-re)))
-         (while (re-search-forward include-re nil t)
-           (let ((element (save-match-data (org-element-at-point))))
-             (when (and (eq (org-element-type element) 'keyword)
-                        (string= (org-element-property :key element) "INCLUDE"))
-               (replace-match "EXPORT \\1" nil nil nil 1)))))))))
-#+END_SRC
-
-Moreover, ~:export-block~ keyword used in ~org-export-define-backend~ and
-~org-export-define-derived-backend~ is no longer used and needs to be
-removed.
-
-*** Footnotes
-
-**** [1]-like constructs are not valid footnotes
-
-Using =[1]= as a footnote was already discouraged in the manual, since
-it introduced too many false-positives in many Org documents.  These
-constructs are now unsupported.
-
-If you used =[N]= in some of your documents, consider turning them into
-=[fn:N]=.
-
-**** /Org Footnote/ library doesn't handle non-Org buffers
-
-Commands for footnotes in an Org document no longer try to do
-something in non-Org ones.  If you need to have footnotes there,
-consider using the =footnote.el= library, shipped with Emacs.
-
-In particular, ~org-footnote-tag-for-non-org-mode-files~ no longer
-exists.
-
-*** ~org-file-apps~ no longer accepts S-expressions as commands
-
-The variable now accepts functions of two arguments instead of plain
-S-expressions.  Replacing an S-expression with an appropriate function
-is straightforward.  For example
-
-: ("pdf" . (foo))
-
-becomes
-
-: ("pdf" . (lambda (file link) (foo)))
-
-*** The ~{{{modification-time}}}~ macro can get time via =vc=
-
-The modification time will be determined via =vc.el= if the second
-argument is non-nil.  See the manual for details.
-
-*** Preparation and completion functions in publishing projects change signature
-
-Preparation and completion functions are now called with an argument,
-which is the project property list.  It used to be dynamically scoped
-through the ~project-plist~ variable.
-
-*** Old Babel header properties are no longer supported
-
-Using header arguments as property names is no longer possible.  As
-such, the following
-
-#+BEGIN_EXAMPLE
-,* Headline
-:PROPERTIES:
-:exports: code
-:var: a=1 b=2
-:var+: c=3
-:END:
-#+END_EXAMPLE
-
-should be written instead
-
-#+BEGIN_EXAMPLE
-,* Headline
-:PROPERTIES:
-:header-args: :exports code
-:header-args+: :var a=1 b=2
-:header-args+: :var c=3
-:END:
-#+END_EXAMPLE
-
-Please note that, however, old properties were defined at the source
-block definition.  Current ones are defined where the block is called.
-
-** New features
-
-*** ~org-eww~ has been moved into core
-*** New org-protocol key=value syntax
-
-Org-protocol can now handle query-style parameters such as:
-
-#+begin_example
-org-protocol://store-link?url=http:%2F%2Flocalhost%2Findex.html&title=The%20title
-org-protocol://capture?template=x&title=Hello&body=World&url=http:%2F%2Fexample.com
-#+end_example
-
-Old-style links such as
-: org-protocol://store-link:/http:%2F%2Flocalhost%2Findex.html/The%20title
-continue to be supported.
-
-If you have defined your own handler functions for
-~org-protocol-protocol-alist~, change them to accept either a property
-list (for new-style links) or a string (for old-style links).  Use
-~org-protocol-parse-parameters~ to convert old-style links into property
-lists.
-
-*** New Org linter library
-
-~org-lint~ can check syntax and report common issues in Org documents.
-
-*** New option ~date-tree-last~ for ~org-agenda-insert-diary-strategy~
-
-When ~org-agenda-insert-diary-strategy~ is set to ~date-tree-last~, diary
-entries are added to last in the date tree.
-
-*** New ~vbar~ entity
-
-~\vbar~ or ~\vbar{}~ will be exported unconditionally as a =|=,
-unlike to existing ~\vert~, which is expanded as ~&vert;~ when using
-a HTML derived export back-end.
-
-*** Export
-
-**** New =#+latex_compiler= keyword to set LaTeX compiler.
-
-PDFLaTeX, XeLaTeX, and LuaLaTeX are supported.  See the manual for
-details.
-
-**** New option ~org-export-with-broken-links~
-
-This option tells the export process how to behave when encountering
-a broken internal link.  See its docstring for more information.
-
-**** Attributes support in custom language environments for LaTeX export
-
-Custom language environments for LaTeX export can now define the
-string to be inserted during export, using attributes to indicate the
-position of the elements. See variable ~org-latex-custom-lang-environments~
-for more details.
-
-**** New Texinfo ~options~ attribute on special blocks
-
-Using ~:options~ as a Texinfo attribute, it is possible to add
-information to custom environments.  See manual for details.
-
-**** New HTML ~id~ attributes on special, example and quote blocks
-
-If the block has a =#+NAME:= attribute assigned, then the HTML element
-will have an ~id~ attribute with that name in the HTML export. This
-enables one to create links to these elements in other places, e.g.,
-~<a href="#name">text</a>~.
-
-**** Listings with captions are now numbered in HTML export
-
-The class associated to the numbering is "listing-number".  If you
-don't want these blocks to be numbered, as it was the case until now,
-You may want to add ~.listing-number { display: none; }~ to the CSS
-used.
-
-**** Line Numbering in SRC/EXAMPLE blocks support arbitrary start number
-
-The ~-n~ option to ~SRC~ and ~EXAMPLE~ blocks can now take a numeric
-argument to specify the staring line number for the source or example
-block.  The ~+n~ option can now take a numeric argument that will be
-added to the last line number from the previous block as the starting
-point for the SRC/EXAMPLE block.
-
-#+BEGIN_SRC org
-,#+BEGIN_SRC emacs-lisp -n 20
-;; this will export with line number 20
-(message "This is line 21")
-,#+END_SRC
-,#+BEGIN_SRC emacs-lisp +n 10
-;; This will be listed as line 31
-(message "This is line 32")
-,#+END_SRC
-#+END_SRC
-
-**** Allow toggling center for images in LaTeX export
-
-With the global variable ~org-latex-images-centered~ or the local
-attribute ~:center~ it is now possible to center an image in LaTeX
-export.
-
-**** Default CSS class ~org-svg~ for SVG images in HTML export
-
-SVG images exported in HTML are now by default assigned a CSS class
-~org-svg~ if no CSS class is specified with the ~:class~ attribute. By
-default, the CSS styling of class ~org-svg~ specifies an image width of
-90\thinsp{}% of the container the image.
-
-**** Markdown footnote export customization
-
-Variables ~org-md-footnotes-section~ and ~org-md-footnote-format~
-introduced for =ox-md.el=.  Both new variables define template strings
-which can be used to customize the format of the exported footnotes
-section and individual footnotes, respectively.
-
-*** Babel
-
-**** Blocks with coderefs labels can now be evaluated
-
-The labels are removed prior to evaluating the block.
-
-**** Support for Lua language
-**** Support for SLY in Lisp blocks
-
-See ~org-babel-lisp-eval-fn~ to activate it.
-
-**** Support for Stan language
-
-New ob-stan.el library.
-
-Evaluating a Stan block can produce two different results.
-
-1. Dump the source code contents to a file.
-
-   This file can then be used as a variable in other blocks, which
-   allows interfaces like RStan to use the model.
-
-2. Compile the contents to a model file.
-
-   This provides access to the CmdStan interface.  To use this, set
-   ~org-babel-stan-cmdstan-directory~ and provide a ~:file~ argument
-   that does not end in ".stan".
-
-For more information and usage examples, visit
-https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-stan.html
-
-**** Support for Oracle databases via ~sqlplus~
-
-=ob-sql= library supports running SQL blocks against an Oracle
-database using ~sqlplus~.  Use with properties like this (all
-mandatory):
-
-#+BEGIN_EXAMPLE
-:engine oracle
-:dbhost <host.com>
-:dbport <1521>
-:dbuser <username>
-:database <database>
-:dbpassword <secret>
-#+END_EXAMPLE
-
-**** Improved support to Microsoft SQL Server via ~sqlcmd~
-
-=ob-sql= library removes support to the ~msosql~ engine which uses the
-deprecated ~osql~ command line tool, and replaces it with ~mssql~
-engine which uses the ~sqlcmd~ command line tool.  Use with properties
-like this:
-
-#+BEGIN_EXAMPLE
-:engine mssql
-:dbhost <host.com>
-:dbuser <username>
-:dbpassword <secret>
-:database <database>
-#+END_EXAMPLE
-
-If you want to use the *trusted connection* feature, omit *both* the
-=dbuser= and =dbpassword= properties and add =cmdline -E= to the properties.
-
-If your Emacs is running in a Cygwin environment, the =ob-sql= library
-can pass the converted path to the =sqlcmd= tool.
-
-**** Improved support of header arguments for postgresql
-
-The postgresql engine in a sql code block supports now ~:dbport~ nd
-~:dbpassword~ as header arguments.
-
-**** Support for additional plantuml output formats
-
-The support for output formats of [[http://plantuml.com/][plantuml]] has been extended to now
-include:
-
-All Diagrams:
-- png ::
-- svg ::
-- eps ::
-- pdf ::
-- vdx ::
-- txt :: ASCII art
-- utxt :: ASCII art using unicode characters
-
-Class Diagrams:
-- xmi ::
-- html ::
-
-State Diagrams:
-- scxml ::
-
-The output formats are determined by the file extension specified
-using the :file property, e.g.:
-
-#+begin_src plantuml :file diagram.png
-@startuml
-Alice -> Bob: Authentication Request
-Bob --> Alice: Authentication Response
-
-Alice -> Bob: Another authentication Request
-Alice <-- Bob: another authentication Response
-@enduml
-#+end_src
-
-Please note that *pdf* *does not work out of the box* and needs additional
-setup in addition to plantuml.  See [[http://plantuml.com/pdf.html]] for
-details and setup information.
-
-*** Rewrite of radio lists
-
-Radio lists, i.e, Org plain lists in foreign buffers, have been
-rewritten to be on par with Radio tables.  You can use a large set of
-parameters to control how a given list should be rendered.  See manual
-for details.
-
-*** org-bbdb-anniversaries-future
-
-Used like ~org-bbdb-anniversaries~, it provides a few days warning for
-upcoming anniversaries (default: 7 days).
-
-*** Clear non-repeated SCHEDULED upon repeating a task
-
-If the task is repeated, and therefore done at least one, scheduling
-information is no longer relevant.  It is therefore removed.
-
-See [[git:481719fbd5751aaa9c672b762cb43aea8ee986b0][commit message]] for more information.
-
-*** Support for ISO week trees
-
-ISO week trees are an alternative date tree format that orders entries
-by ISO week and not by month.
-
-For example:
-
-: * 2015
-: ** 2015-W35
-: ** 2015-W36
-: *** 2015-08-31 Monday
-
-They are supported in org-capture via ~file+weektree~ and
-~file+weektree+prompt~ target specifications.
-
-*** Accept ~:indent~ parameter when capturing column view
-
-When defining a "columnview" dynamic block, it is now possible to add
-an :indent parameter, much like the one in the clock table.
-
-On the other hand, stars no longer appear in an ITEM field.
-
-*** Columns view
-
-**** ~org-columns~ accepts a prefix argument
-
-When called with a prefix argument, ~org-columns~ apply to the whole
-buffer unconditionally.
-
-**** New variable : ~org-agenda-view-columns-initially~
-
-The variable used to be a ~defvar~, it is now a ~defcustom~.
-
-**** Allow custom summaries
-
-It is now possible to add new summary types, or override those
-provided by Org by customizing ~org-columns-summary-types~, which see.
-
-**** Allow multiple summaries for any property
-
-Columns can now summarize the same property using different summary
-types.
-
-*** Preview LaTeX snippets in buffers not visiting files
-*** New option ~org-attach-commit~
-
-When non-nil, commit attachments with git, assuming the document is in
-a git repository.
-
-*** Allow conditional case-fold searches in ~org-occur~
-
-When set to ~smart~, the new variable ~org-occur-case-fold-search~ allows
-to mimic =isearch.el=: if the regexp searched contains any upper case
-character (or character class), the search is case sensitive.
-Otherwise, it is case insensitive.
-
-*** More robust repeated =ox-latex= footnote handling
-
-Repeated footnotes are now numbered by referring to a label in the
-first footnote.
-
-*** The ~org-block~ face is inherited by ~src-blocks~
-
-This works also when =org-src-fontify-natively= is non-nil.  It is also
-possible to specify per-languages faces.  See =org-src-block-faces= and
-the manual for details.
-
-*** Links are now customizable
-
-Links can now have custom colors, tooltips, keymaps, display behavior,
-etc.  Links are now centralized in ~org-link-parameters~.
-
-** New functions
-
-*** ~org-next-line-empty-p~
-
-It replaces the deprecated ~next~ argument to ~org-previous-line-empty-p~.
-
-*** ~org-show-children~
-
-It is a faster implementation of ~outline-show-children~.
-
-** Removed functions
-
-*** ~org-agenda-filter-by-tag-refine~ has been removed.
-
-Use ~org-agenda-filter-by-tag~ instead.
-
-*** ~org-agenda-todayp~ is deprecated.
-
-Use ~org-agenda-today-p~ instead.
-
-*** ~org-babel-get-header~ is removed.
-
-Use ~org-babel--get-vars~ or ~assq~ instead, as applicable.
-
-*** ~org-babel-trim~ is deprecated.
-
-Use ~org-trim~ instead.
-
-*** ~org-element-remove-indentation~ is deprecated.
-
-Use ~org-remove-indentation~ instead.
-
-*** ~org-image-file-name-regexp~ is deprecated
-
-Use ~image-file-name-regexp~ instead.
-The never-used-in-core ~extensions~ argument has been dropped.
-
-*** ~org-list-parse-list~ is deprecated
-
-Use ~org-list-to-lisp~ instead.
-
-*** ~org-on-heading-p~ is deprecated
-
-A comment to this effect was in the source code since 7.8.03, but
-now a byte-compiler warning will be generated as well.
-
-*** ~org-table-p~ is deprecated
-
-Use ~org-at-table-p~ instead.
-
-*** ~org-table-recognize-table.el~ is deprecated
-
-It was not called by any org code since 2010.
-
-*** Various reimplementations of cl-lib functions are deprecated
-
-The affected functions are:
-- ~org-count~
-- ~org-remove-if~
-- ~org-remove-if-not~
-- ~org-reduce~
-- ~org-every~
-- ~org-some~
-
-Additionally, ~org-sublist~ is deprecated in favor of ~cl-subseq~.  Note
-the differences in indexing conventions: ~org-sublist~ is 1-based and
-end-inclusive; ~cl-subseq~ is 0-based and end-exclusive.
-
-** Removed options
-
-*** Remove all options related to ~ido~ or ~iswitchb~
-
-This includes ~org-completion-use-iswitchb~ and ~org-completion-use-ido~.
-Instead Org uses regular functions, e.g., ~completion-read~ so as to
-let those libraries operate.
-
-*** Remove ~org-list-empty-line-terminates-plain-lists~
-
-Two consecutive blank lines always terminate all levels of current
-plain list.
-
-*** ~fixltx2e~ is removed from ~org-latex-default-packages-alist~
-
-fixltx2e is obsolete, see LaTeX News 22.
-
-** Miscellaneous
-*** Add Icelandic smart quotes
-*** Allow multiple receiver locations in radio tables and lists
-*** Allow angular links within link descriptions
-
-It is now allowed to write, e.g.,
-~[[http:orgmode.org][<file:unicorn.png>]]~ as an equivalent to
-~[[http:orgmode.org][file:unicorn.png]]~.  The advantage of the former
-is that spaces are allowed within the path.
-
-*** Beamer export back-ends uses ~org-latex-prefer-user-labels~
-*** ~:preparation-function~ called earlier during publishing
-
-Functions in this list are called before any file is associated to the
-current project.  Thus, they can be used to generate to be published
-Org files.
-
-*** Function ~org-remove-indentation~ changes.
-
-The new algorithm doesn't remove TAB characters not used for
-indentation.
-
-*** Secure placeholders in capture templates
-
-Placeholders in capture templates are no longer expanded recursively.
-However, ~%(...)~ constructs are expanded very late, so you can fill
-the contents of the S-exp with the replacement text of non-interactive
-placeholders.  As before, interactive ones are still expanded as the
-very last step, so the previous statement doesn't apply to them.
-
-Note that only ~%(...)~ placeholders initially present in the
-template, or introduced using a file placeholder, i.e., ~%[...]~ are
-expanded.  This prevents evaluating potentially malicious code when
-another placeholder, e.g., ~%i~ expands to a S-exp.
-
-*** Links stored by ~org-gnus-store-link~ in nnir groups
-
-Since gnus nnir groups are temporary, ~org-gnus-store-link~ now refers
-to the article's original group.
-
-*** ~org-babel-check-confirm-evaluate~ is now a function instead of a macro
-
-The calling convention has changed.
-
-*** HTML export table row customization changes
-
-Variable ~org-html-table-row-tags~ has been split into
-~org-html-table-row-open-tag~ and ~org-html-table-row-close-tag~.
-Both new variables can be either a string or a function which will be
-called with 6 parameters.
-
-*** =ITEM= special property returns headline without stars
-*** Rename ~org-insert-columns-dblock~ into ~org-columns-insert-dblock~
-
-The previous name is, for the time being, kept as an obsolete alias.
-
-*** ~org-trim~ can preserve leading indentation.
-
-When setting a new optional argument to a non-nil value, ~org-trim~
-preserves leading indentation while removing blank lines at the
-beginning of the string.  The behavior is identical for white space at
-the end of the string.
-
-*** Function ~org-info-export~ changes.
-
-HTML links created from certain info links now point to =gnu.org= URL's rather
-than just to local files. For example info links such as =info:emacs#List
-Buffers= used to be converted to HTML links like this:
-
-: <a href="emacs.html#List-Buffers">emacs#List Buffers</a>
-
-where local file =emacs.html= is referenced.
-For most folks this file does not exist.
-Thus the new behavior is to generate this HTML link instead:
-
-: <a href="https://www.gnu.org/software/emacs/manual/html_mono/emacs.html#List-Buffers">emacs#List Buffers</a>
-
-All emacs related info links are similarly translated plus few other
-=gnu.org= manuals.
-
-*** Repeaters with a ~++~ interval and a time can be shifted to later today
-
-Previously, if a recurring task had a timestamp of
-~<2016-01-01 Fri 20:00 ++1d>~ and was completed on =2016-01-02= at
-=08:00=, the task would skip =2016-01-02= and would be rescheduled for
-=2016-01-03=.  Timestamps with ~++~ cookies and a specific time will
-now shift to the first possible future occurrence, even if the
-occurrence is later the same day the task is completed.  (Timestamps
-already in the future are still shifted one time further into the
-future.)
-
-*** ~org-mobile-action-alist~ is now a defconst
-
-It used to be a defcustom, with a warning that it shouldn't be
-modified anyway.
-
-*** ~file+emacs~ and ~file+sys~ link types are deprecated
-
-They are still supported in Org 9.0 but will eventually be removed in
-a later release.  Use ~file~ link type along with universal arguments
-to force opening it in either Emacs or with system application.
-
-*** New defcustom ~org-babel-J-command~ stores the j command
-*** New defalias ~org-babel-execute:j~
-
-Allows J source blocks be indicated by letter j.  Previously the
-indication letter was solely J.
-
-*** ~org-open-line~ ignores tables at the very beginning of the buffer
-
-When ~org-special-ctrl-o~ is non-nil, it is impractical to create
-a blank line above a table at the beginning of the document. Now, as
-a special case, ~org-open-line~ behaves normally in this situation.
-
-*** ~org-babel-hash-show-time~ is now customizable
-
-The experimental variable used to be more or less confidential, as
-a ~defvar~.
-
-*** New ~:format~ property to parsed links
-
-It defines the format of the original link.  Possible values are:
-~plain~, ~bracket~ and ~angle~.
-
-* Version 8.3
-
-** Incompatible changes
-
-*** Properties drawers syntax changes
-
-Properties drawers are now required to be located right after a
-headline and its planning line, when applicable.
-
-It will break some documents as TODO states changes were sometimes
-logged before the property drawer.
-
-The following function will repair them:
-
-#+BEGIN_SRC emacs-lisp
-(defun org-repair-property-drawers ()
-  "Fix properties drawers in current buffer.
-Ignore non Org buffers."
-  (when (eq major-mode 'org-mode)
-    (org-with-wide-buffer
-     (goto-char (point-min))
-     (let ((case-fold-search t)
-           (inline-re (and (featurep 'org-inlinetask)
-                           (concat (org-inlinetask-outline-regexp)
-                                   "END[ \t]*$"))))
-       (org-map-entries
-        (lambda ()
-          (unless (and inline-re (org-looking-at-p inline-re))
-            (save-excursion
-              (let ((end (save-excursion (outline-next-heading) (point))))
-                (forward-line)
-                (when (org-looking-at-p org-planning-line-re) (forward-line))
-                (when (and (< (point) end)
-                           (not (org-looking-at-p org-property-drawer-re))
-                           (save-excursion
-                             (and (re-search-forward org-property-drawer-re end t)
-                                  (eq (org-element-type
-                                       (save-match-data (org-element-at-point)))
-                                      'drawer))))
-                  (insert (delete-and-extract-region
-                           (match-beginning 0)
-                           (min (1+ (match-end 0)) end)))
-                  (unless (bolp) (insert "\n"))))))))))))
-#+END_SRC
-
-*** Using "COMMENT" is now equivalent to commenting with "#"
-
-If you used "COMMENT" in headlines to prevent a subtree from being
-exported, you can still do it but all information within the subtree
-is now commented out, i.e. no #+OPTIONS line will be parsed or taken
-into account when exporting.
-
-If you want to exclude a headline from export while using its contents
-for setting options, use =:noexport:= (see =org-export-exclude-tags=.)
-
-*** =#+CATEGORY= keywords no longer apply partially to document
-
-It was possible to use several such keywords and have them apply to
-the text below until the next one, but strongly deprecated since Org
-5.14 (2008).
-
-=#+CATEGORY= keywords are now global to the document.  You can use node
-properties to set category for a subtree, e.g.,
-
-#+BEGIN_SRC org
-,* Headline
-   :PROPERTIES:
-   :CATEGORY: some category
-   :END:
-#+END_SRC
-
-*** New variable to control visibility when revealing a location
-
-~org-show-following-heading~, ~org-show-siblings~, ~org-show-entry-below~
-and ~org-show-hierarchy-above~ no longer exist.  Instead, visibility is
-controlled through a single variable: ~org-show-context-detail~, which
-see.
-
-*** Replace disputed keys again when reading a date
-
-~org-replace-disputed-keys~ has been ignored when reading date since
-version 8.1, but the former behavior is restored again.
-
-Keybinding for reading date can be customized with a new variable
-~org-read-date-minibuffer-local-map~.
-
-*** No default title is provided when =TITLE= keyword is missing
-
-Skipping =TITLE= keyword no longer provides the current file name, or
-buffer name, as the title.  Instead, simply ignore the title.
-
-*** Default bindings of =C-c C-n= and =C-c C-p= changed
-
-The key sequences =C-c C-n= and =C-c C-p= are now bound to
-~org-next-visible-heading~ and ~org-previous-visible-heading~
-respectively, rather than the =outline-mode= versions of these
-functions.  The Org version of these functions skips over inline tasks
-(and even-level headlines when ~org-odd-levels-only~ is set).
-
-*** ~org-element-context~ no longer return objects in keywords
-
-~org-element-context~ used to return objects on some keywords, i.e.,
-=TITLE=, =DATE= and =AUTHOR=.  It now returns only the keyword.
-
-*** ~org-timer-default-timer~ type changed from number to string
-
-If you have, in your configuration, something like =(setq
-org-timer-default-timer 10)= replace it with =(setq
-org-timer-default-timer "10")=.
-
-*** Functions signature changes
-
-The following functions require an additional argument.  See their
-docstring for more information.
-
-- ~org-export-collect-footnote-definitions~
-- ~org-html-format-headline-function~
-- ~org-html-format-inlinetask-function~
-- ~org-latex-format-headline-function~
-- ~org-latex-format-inlinetask-function~
-- ~org-link-search~
-
-** New features
-
-*** Default lexical evaluation of emacs-lisp src blocks
-
-Emacs-lisp src blocks in babel are now evaluated using lexical
-scoping.  There is a new header to control this behavior.
-
-The default results in an eval with lexical scoping.
-:lexical yes
-
-This turns lexical scoping off in the eval (the former behavior).
-:lexical no
-
-This uses the lexical environment with x=42 in the eval.
-:lexical '((x . 42))
-
-*** Behavior of ~org-return~ changed
-
-If point is before or after the headline title, insert a new line
-without changing the headline.
-
-*** Hierarchies of tags
-
-The functionality of nesting tags in hierarchies is added to org-mode.
-This is the generalization of what was previously called "Tag groups"
-in the manual.  That term is now changed to "Tag hierarchy".
-
-The following in-buffer definition:
-
-#+BEGIN_SRC org
-  ,#+TAGS: [ Group : SubOne SubTwo ]
-  ,#+TAGS: [ SubOne : SubOne1 SubOne2 ]
-  ,#+TAGS: [ SubTwo : SubTwo1 SubTwo2 ]
-#+END_SRC
-
-Should be seen as the following tree of tags:
-
-- Group
-  - SubOne
-    - SubOne1
-    - SubOne2
-  - SubTwo
-    - SubTwo1
-    - SubTwo2
-
-Searching for "Group" should return all tags defined above.  Filtering
-on SubOne filters also it's sub-tags.  Etc.
-
-There is no limit on the depth for the tag hierarchy.
-
-*** Additional syntax for non-unique grouptags
-
-Additional syntax is defined for grouptags if the tags in the group
-don't have to be distinct on a heading.
-
-Grouptags had to previously be defined with { }.  This syntax is
-already used for exclusive tags and Grouptags need their own,
-non-exclusive syntax.  This behavior is achieved with [ ].  Note: { }
-can still be used also for Grouptags but then only one of the given
-tags can be used on the headline at the same time.  Example:
-
-[ group : sub1 sub2 ]
-
-#+BEGIN_SRC org
-,* Test                                                            :sub1:sub2:
-#+END_SRC
-
-This is a more general case than the already existing syntax for
-grouptags; { }.
-
-*** Define regular expression patterns as tags
-
-Tags can be defined as grouptags with regular expressions as
-"sub-tags".
-
-The regular expressions in the group must be marked up within { }.
-Example use:
-
-: #+TAGS: [ Project : {P@.+} ]
-
-Searching for the tag Project will now list all tags also including
-regular expression matches for P@.+.  This is good for example for
-projects tagged with a common identifier, i.e. P@2014_OrgTags.
-
-*** Filtering in the agenda on grouptags (Tag hierarchies)
-
-Filtering in the agenda on grouptags filters all of the related tags.
-Except if a filter is applied with a (double) prefix-argument.
-
-Filtering in the agenda on subcategories does not filter the "above"
-levels anymore.
-
-If a grouptag contains a regular expression the regular expression
-is also used as a filter.
-
-*** Minor refactoring of ~org-agenda-filter-by-tag~
-
-Now uses the argument ARG and optional argument exclude instead of
-strip and narrow.  ARG because the argument has multiple purposes and
-makes more sense than strip now.  The term "narrowing" is changed to
-exclude.
-
-The main purpose is for the function to make more logical sense when
-filtering on tags now when tags can be structured in hierarchies.
-
-*** Babel: support for sed scripts
-
-Thanks to Bjarte Johansen for this feature.
-
-*** Babel: support for Processing language
-
-New ob-processing.el library.
-
-This library implements necessary functions for implementing editing
-of Processing code blocks, viewing the resulting sketches in an
-external viewer, and HTML export of the sketches.
-
-Check the documentation for more details.
-
-Thanks to Jarmo Hurri for this feature.
-
-*** New behavior for ~org-toggle-latex-fragment~
-
-The new behavior is the following:
-
-- With a double prefix argument or with a single prefix argument when
-  point is before the first headline, toggle overlays in the whole
-  buffer;
-
-- With a single prefix argument, toggle overlays in the current
-  subtree;
-
-- On latex code, toggle overlay at point;
-
-- Otherwise, toggle overlays in the current section.
-
-*** Additional markup with =#+INCLUDE= keyword
-
-The content of the included file can now be optionally marked up, for
-instance as HTML.  See the documentation for details.
-
-*** File links with =#+INCLUDE= keyword
-
-Objects can be extracted via =#+INCLUDE= using file links.  It is
-possible to include only the contents of the object.  See manual for
-more information.
-
-*** Drawers do not need anymore to be referenced in =#+DRAWERS=
-
-One can use a drawer without listing it in the =#+DRAWERS= keyword,
-which is now obsolete.  As a consequence, this change also deprecates
-~org-drawers~ variable.
-
-*** ~org-edit-special~ can edit export blocks
-
-Using C-c ' on an export block now opens a sub-editing buffer.  Major
-mode in that buffer is determined by export backend name (e.g.,
-"latex" \to "latex-mode").  You can define exceptions to this rule by
-configuring ~org-src-lang-modes~, which see.
-
-*** Additional =:hline= processing to ob-shell
-
-If the argument =:hlines yes= is present in a babel call, an optional
-argument =:hlines-string= can be used to define a string to use as a
-representation for the lisp symbol ='hline= in the shell program.  The
-default is =hline=.
-
-*** Markdown export supports switches in source blocks
-
-For example, it is now possible to number lines using the =-n= switch in
-a source block.
-
-*** New option in ASCII export
-
-Plain lists can have an extra margin by setting ~org-ascii-list-margin~
-variable to an appropriate integer.
-
-*** New blocks in ASCII export
-
-ASCII export now supports =#+BEGIN_JUSTIFYRIGHT= and =#+BEGIN_JUSTIFYLEFT=
-blocks.  See documentation for details.
-
-*** More back-end specific publishing options
-
-The number of publishing options specific to each back-end has been
-increased.  See manual for details.
-
-*** Export inline source blocks
-
-Inline source code was used to be removed upon exporting.  They are
-now handled as standard code blocks, i.e., the source code can appear
-in the output, depending on the parameters.
-
-*** Extend ~org-export-first-sibling-p~ and ~org-export-last-sibling-p~
-
-These functions now support any element or object, not only headlines.
-
-*** New function: ~org-export-table-row-in-header-p~
-
-*** New function: ~org-export-get-reference~
-
-*** New function: ~org-element-lineage~
-
-This function deprecates ~org-export-get-genealogy~.  It also provides
-more features.  See docstring for details.
-
-*** New function: ~org-element-copy~
-
-*** New filter: ~org-export-filter-body-functions~
-
-Functions in this filter are applied on the body of the exported
-document, before wrapping it within the template.
-
-*** New :environment parameter when exporting example blocks to LaTeX
-
-: #+ATTR_LATEX: :environment myverbatim
-: #+BEGIN_EXAMPLE
-: This sentence is false.
-: #+END_EXAMPLE
-
-will be exported using =@samp(myverbatim)= instead of =@samp(verbatim)=.
-
-*** Various improvements on radio tables
-
-Radio tables feature now relies on Org's export framework ("ox.el").
-~:no-escape~ parameter no longer exists, but additional global
-parameters are now supported: ~:raw~, ~:backend~.  Moreover, there are new
-parameters specific to some pre-defined translators, e.g.,
-~:environment~ and ~:booktabs~ for ~orgtbl-to-latex~.  See translators
-docstrings (including ~orgtbl-to-generic~) for details.
-
-*** Non-floating minted listings in Latex export
-
-It is not possible to specify =#+attr_latex: :float nil= in conjunction
-with source blocks exported by the minted package.
-
-*** Field formulas can now create columns as needed
-
-Previously, evaluating formulas that referenced out-of-bounds columns
-would throw an error. A new variable ~org-table-formula-create-columns~
-was added to adjust this behavior. It is now possible to silently add
-new columns, to do so with a warning or to explicitly ask the user
-each time.
-
-*** ASCII plot
-
-Ability to plot values in a column through ASCII-art bars.  See manual
-for details.
-
-*** New hook: ~org-archive-hook~
-
-This hook is called after successfully archiving a subtree, with point
-on the original subtree, not yet deleted.
-
-*** New option: ~org-attach-archive-delete~
-
-When non-nil, attachments from archived subtrees are removed.
-
-*** New option: ~org-latex-caption-above~
-
-This variable generalizes ~org-latex-table-caption-above~, which is now
-deprecated.  In addition to tables, it applies to source blocks,
-special blocks and images.  See docstring for more information.
-
-*** New option: ~org-latex-prefer-user-labels~
-
-See the docstring for more information.
-
-*** Export unnumbered headlines
-
-Headlines, for which the property ~UNNUMBERED~ is non-nil, are now
-exported without section numbers irrespective of their levels.  The
-property is inherited by children.
-
-*** Tables can be sorted with an arbitrary function
-
-It is now possible to specify a function, both programmatically,
-through a new optional argument, and interactively with ~f~ or ~F~ keys,
-to sort a table.
-
-*** Table of contents can be local to a section
-
-The ~TOC~ keywords now accepts an optional ~local~ parameter.  See manual
-for details.
-
-*** Countdown timers can now be paused
-
-~org-timer-pause-time~ now pauses and restarts both relative and
-countdown timers.
-
-*** New option ~only-window~ for ~org-agenda-window-setup~
-
-When ~org-agenda-window-setup~ is set to ~only-window~, the agenda is
-displayed as the sole window of the current frame.
-
-*** ~{{{date}}}~ macro supports optional formatting argument
-
-It is now possible to supply and optional formatting argument to
-~{{{date}}}~. See manual for details.
-
-*** ~{{{property}}}~ macro supports optional search argument
-
-It is now possible to supply an optional search option to
-~{{{property}}}~ in order to retrieve remote properties optional.  See
-manual for details.
-
-*** New option ~org-export-with-title~
-
-It is possible to suppress the title insertion with ~#+OPTIONS:
-title:nil~ or globally using the variable ~org-export-with-title~.
-
-*** New entities family: "\_ "
-
-"\_ " are used to insert up to 20 contiguous spaces in various
-back-ends.  In particular, this family can be used to introduce
-leading spaces within table cells.
-
-*** New MathJax configuration options
-
-Org uses the MathJax CDN by default.  See the manual and the docstring
-of ~org-html-mathjax-options~ for details.
-
-*** New behavior in `org-export-options-alist'
-
-When defining a back-end, it is now possible to specify to give
-`parse' behavior on a keyword.  It is equivalent to call
-`org-element-parse-secondary-string' on the value.
-
-However, parsed =KEYWORD= is automatically associated to an
-=:EXPORT_KEYWORD:= property, which can be used to override the keyword
-value during a subtree export.  Moreover, macros are expanded in such
-keywords and properties.
-
-*** Viewport support in html export
-
-Viewport for mobile-optimized website is now automatically inserted
-when exporting to html.  See ~org-html-viewport~ for details.
-
-*** New ~#+SUBTITLE~ export keyword
-
-Org can typeset a subtitle in some export backends.  See the manual
-for details.
-
-*** Remotely edit a footnote definition
-
-Calling ~org-edit-footnote-reference~ (C-c ') on a footnote reference
-allows to edit its definition, as long as it is not anonymous, in a
-dedicated buffer.  It works even if buffer is currently narrowed.
-
-*** New function ~org-delete-indentation~ bound to ~M-^~
-
-Work as ~delete-indentation~ unless at heading, in which case text is
-added to headline text.
-
-*** Support for images in Texinfo export
-
-~Texinfo~ back-end now handles images.  See the manual for details.
-
-*** Support for captions in Texinfo export
-
-Tables and source blocks can now have captions.  Additionally, lists
-of tables and lists of listings can be inserted in the document with
-=#+TOC= keyword.
-
-*** Countdown timer support hh:mm:ss format
-
-In addition to setting countdown timers in minutes, they can also be
-set using the hh:mm:ss format.
-
-*** Extend ~org-clone-subtree-with-time-shift~
-
-~org-clone-subtree-with-time-shift~ now accepts 0 as an argument for the
-number of clones, which removes the repeater from the original subtree
-and creates one shifted, repeating clone.
-
-*** New time block for clock tables: ~untilnow~
-
-It encompasses all past closed clocks.
-
-*** Support for the ~polyglossia~ LaTeX package
-
-See the docstring of ~org-latex-classes~ and
-~org-latex-guess-polyglossia-language~ for details.
-
-*** None-floating tables, graphics and blocks can have captions
-
-*** `org-insert-heading' can be forced to insert top-level headline
-
-** Removed functions
-
-*** Removed function ~org-translate-time~
-
-Use ~org-timestamp-translate~ instead.
-
-*** Removed function ~org-beamer-insert-options-template~
-
-This function inserted a Beamer specific template at point or in
-current subtree.  Use ~org-export-insert-default-template~ instead, as
-it provides more features and covers all export back-ends.  It is also
-accessible from the export dispatcher.
-
-*** Removed function ~org-timer-cancel-timer~
-
-~org-timer-stop~ now stops both relative and countdown timers.
-
-*** Removed function ~org-export-solidify-link-text~
-
-This function, being non-bijective, introduced bug in internal
-references.  Use ~org-export-get-reference~ instead.
-
-*** Removed function ~org-end-of-meta-data-and-drawers~
-
-The function is superseded by ~org-end-of-meta-data~, called with an
-optional argument.
-
-*** Removed functions ~org-table-colgroup-line-p~, ~org-table-cookie-line-p~
-
-These functions were left-over from pre 8.0 era.  They are not correct
-anymore.  Since they are not needed, they have no replacement.
-
-** Removed options
-
-*** ~org-list-empty-line-terminates-plain-lists~ is deprecated
-
-It will be kept in code base until next release, for backward
-compatibility.
-
-If you need to separate consecutive lists with blank lines, always use
-two of them, as if this option was nil (default value).
-
-*** ~org-export-with-creator~ is a boolean
-
-Special ~comment~ value is no longer allowed.  It is possible to use a
-body filter to add comments about the creator at the end of the
-document instead.
-
-*** Removed option =org-html-use-unicode-chars=
-
-Setting this to non-nil was problematic as it converted characters
-everywhere in the buffer, possibly corrupting URLs.
-
-*** Removed option =org-babel-sh-command=
-
-This undocumented option defaulted to the value of =shell-file-name= at
-the time of loading =ob-shell=.  The new behavior is to use the value
-of =shell-file-name= directly when the shell langage is =shell=.  To chose
-a different shell, either customize =shell-file-name= or bind this
-variable locally.
-
-*** Removed option =org-babel-sh-var-quote-fmt=
-
-This undocumented option was supposed to provide different quoting
-styles when changing the shell type.  Changing the shell type can now
-be done directly from the source block and the quoting style has to be
-compatible across all shells, so a customization doesn't make sense
-anymore.  The chosen hard coded quoting style conforms to POSIX.
-
-*** Removed option ~org-insert-labeled-timestamps-at-point~
-
-Setting this option to anything else that the default value (nil)
-would create invalid planning info.  This dangerous option is now
-removed.
-
-*** Removed option ~org-koma-letter-use-title~
-
-Use org-export-with-title instead.  See also below.
-
-*** Removed option ~org-entities-ascii-explanatory~
-
-This variable has no effect since Org 8.0.
-
-*** Removed option ~org-table-error-on-row-ref-crossing-hline~
-
-This variable has no effect since August 2009.
-
-*** Removed MathML-related options from ~org-html-mathjax-options~
-
-MathJax automatically chooses the best display technology based on the
-end-users browser.  You may force initial usage of MathML via
-~org-html-mathjax-template~ or by setting the ~path~ property of
-~org-html-mathjax-options~.
-
-*** Removed comment-related filters
-
-~org-export-filter-comment-functions~ and
-~org-export-filter-comment-block-functions~ variables do not exist
-anymore.
-
-** Miscellaneous
-
-*** Strip all meta data from ITEM special property
-
-ITEM special property does not contain TODO, priority or tags anymore.
-
-*** File names in links accept are now compatible with URI syntax
-
-Absolute file names can now start with =///= in addition to =/=. E.g.,
-=[[file:///home/me/unicorn.jpg]]=.
-
-*** Footnotes in included files are now local to the file
-
-As a consequence, it is possible to include multiple Org files with
-footnotes in a master document without being concerned about footnote
-labels colliding.
-
-*** Mailto links now use regular URI syntax
-
-This change deprecates old Org syntax for mailto links:
-=mailto:user@domain::Subject=.
-
-*** =QUOTE= keywords do not exist anymore
-
-=QUOTE= keywords have been deprecated since Org 8.2.
-
-*** Select tests to perform with the build system
-
-The build system has been enhanced to allow test selection with a
-regular expression by defining =BTEST_RE= during the test invocation.
-This is especially useful during bisection to find just when a
-particular test failure was introduced.
-
-*** Exact heading search for external links ignore spaces and cookies
-
-Exact heading search for links now ignore spaces and cookies. This is
-the case for links of the form ~file:projects.org::*task title~, as well
-as links of the form ~file:projects.org::some words~ when
-~org-link-search-must-match-exact-headline~ is not nil.
-
-*** ~org-latex-hyperref-template~, ~org-latex-title-command~ formatting
-
-New formatting keys are supported.  See the respective docstrings.
-Note, ~org-latex-hyperref-template~ has a new default value.
-
-*** ~float, wasysym, marvosym~ are removed from ~org-latex-default-packages-alist~
-
-If you require any of these package add them to your preamble via
-~org-latex-packages-alist~. Org also uses default LaTeX ~\tolerance~ now.
-
-*** When exporting, throw an error on unresolved id/fuzzy links and code refs
-
-This helps spotting wrong links.
-
-* Version 8.2
-
-** Incompatible changes
-*** =ob-sh.el= renamed to =ob-shell=
-This may require two changes in user config.
-
-1. In =org-babel-do-load-languages=, change =(sh . t)= to =(shell . t)=.
-2. Edit =local.mk= files to change the value of =BTEST_OB_LANGUAGES=
-   to remove "sh" and include "shell".
-
-*** Combine org-mac-message.el and org-mac-link-grabber into org-mac-link.el
-
-Please remove calls to =(require 'org-mac-message)= and =(require
-'org-mac-link-grabber)= in your =.emacs= initialization file.  All you
-need now is =(require 'org-mac-link)=.
-
-Additionally, replace any calls to =ogml-grab-link= to
-=org-mac-grab-link=.  For example, replace this line:
-
-: (define-key org-mode-map (kbd "C-c g") 'omgl-grab-link)
-
-with this:
-
-: (define-key org-mode-map (kbd "C-c g") 'org-mac-grab-link)
-
-*** HTML export: Replace =HTML_HTML5_FANCY= by =:html-html5-fancy= (...)
-
-Some of the HTML specific export options in Org <8.1 are either nil or
-t, like =#+HTML_INCLUDE_STYLE=.  We replaced these binary options with
-option keywords like :html-include-style.
-
-So you need to replace
-
-: #+HTML_INCLUDE_STYLE: t
-
-by
-
-: #+OPTIONS: :html-include-style t
-
-Options affected by this change: =HTML5_FANCY=, =HTML_INCLUDE_SCRIPTS=
-and =HTML_INCLUDE_STYLE=.
-
-*** Add an argument to ~org-export-to-file~ and ~org-export-to-buffer~
-
-~org-export-to-file~ and ~org-export-to-file~ can run in a different
-process when provided a non-nil =ASYNC= optional argument, without
-relying on ~org-export-async-start~ macro.
-
-Since =ASYNC= is the first of optional arguments, you have to shift
-the other optional arguments accordingly.
-
-*** Export back-ends are now structures
-
-Export back-ends are now structures, and stored as such in the
-communication channel during an export process.  In other words, from
-now on, ~(plist-get info :back-end)~ will return a structure instead
-of a symbol.
-
-Arguments in hooks and in filters are still symbols, though.
-
-** Important bugfixes
-
-*** [[doc:org-insert-heading][org-insert-heading]] has been rewritten and bugs are now fixed
-*** The replacement of disputed keys is now turned of when reading a date
-
-*** Match string for sparse trees can now contain a slash in a property value
-
-    You can now have searches like SOMEPROP="aaa/bbb".  Until now,
-    this would break because the slash would be interpreted as the
-    separator starting a TOTO match string.
-** New features
-
-*** =C-c ^ x= will now sort checklist items by their checked status
-
-See [[doc:org-sort-list][org-sort-list]]: hitting =C-c ^ x= will put checked items at the end
-of the list.
-*** Various LaTeX export enhancements
-
-- Support SVG images
-- Support for .pgf files
-- LaTeX Babel blocks can now be exported as =.tikz= files
-- Allow =latexmk= as an option for [[doc:org-latex-pdf-process][org-latex-pdf-process]]
-- When using =\usepackage[AUTO]{babel}=, AUTO will automatically be
-  replaced with a value compatible with ~org-export-default-language~
-  or ~LANGUAGE~ keyword.
-- The dependency on the =latexsym= LaTeX package has been removed, we
-  now use =amssymb= symbols by default instead.
-
-*** New functions for paragraph motion
-
-    The commands =C-down= and =C-up= now invoke special commands
-    that use knowledge from the org-elements parser to move the cursor
-    in a paragraph-like way.
-
-*** New entities in =org-entities.el=
-
-Add support for ell, imath, jmath, varphi, varpi, aleph, gimel, beth,
-dalet, cdots, S (§), dag, ddag, colon, therefore, because, triangleq,
-leq, geq, lessgtr, lesseqgtr, ll, lll, gg, ggg, prec, preceq,
-preccurlyeq, succ, succeq, succurlyeq, setminus, nexist(s), mho,
-check, frown, diamond.  Changes loz, vert, checkmark, smile and tilde.
-
-*** Anonymous export back-ends
-
-~org-export-create-backend~ can create anonymous export back-ends,
-which can then be passed to export functions like
-~org-export-to-file~, ~org-export-to-buffer~ or ~org-export-as~.
-
-It allows for quick translation of Org syntax without the overhead of
-registering a new back-end.
-
-*** New agenda fortnight view
-
-    The agenda has not, in addition to day, week, month, and year
-    views, also a fortnight view covering 14 days.
-** New options
-
-*** New option [[doc:org-bookmark-names-plist][org-bookmark-names-plist]]
-
-This allows to specify the names of automatic bookmarks.
-*** New option [[doc:org-agenda-ignore-drawer-properties][org-agenda-ignore-drawer-properties]]
-
-This allows more flexibility when optimizing the agenda generation.
-See https://orgmode.org/worg/agenda-optimization.html for details.
-*** New option: [[doc:org-html-link-use-abs-url][org-html-link-use-abs-url]] to force using absolute URLs
-
-This is an export/publishing option, and should be used either within
-the =#+OPTIONS= line(s) or within a [[doc:org-publish-project-alist][org-publish-project-alist]].
-
-Setting this option to =t= is needed when the HTML output does not
-allow relative URLs.  For example, the =contrib/lisp/ox-rss.el=
-library produces a RSS feed, and RSS feeds need to use absolute URLs,
-so a combination of =:html-link-home "..." and :html-link-use-abs-url
-t= is required---see the configuration example in the comment section
-of =ox-rss.el=.
-
-*** New option [[doc:org-babel-ditaa-java-cmd][org-babel-ditaa-java-cmd]]
-
-This makes java executable configurable for ditaa blocks.
-
-*** New options [[doc:org-babel-latex-htlatex][org-babel-latex-htlatex]] and [[doc:org-babel-latex-htlatex-packages][org-babel-latex-htlatex-packages]]
-
-This enables SVG generation from latex code blocks.
-
-*** New option: [[doc:org-habit-show-done-always-green][org-habit-show-done-always-green]]
-
-See [[https://lists.gnu.org/r/emacs-orgmode/2013-05/msg00214.html][this message]] from Max Mikhanosha.
-
-*** New option: [[doc:org-babel-inline-result-wrap][org-babel-inline-result-wrap]]
-
-If you set this to the following
-
-: (setq org-babel-inline-result-wrap "$%s$")
-
-then inline code snippets will be wrapped into the formatting string.
-
-*** New option: [[doc:org-special-ctrl-o][org-special-ctrl-o]]
-
-    This variable can be used to turn off the special behavior of
-    =C-o= in tables.
-** New contributed packages
-
-- =ox-bibtex.el= by Nicolas Goaziou :: an utility to handle BibTeX
-     export to both LaTeX and HTML exports.  It uses the [[http://www.lri.fr/~filliatr/bibtex2html/][bibtex2html]]
-     software.
-
-- =org-screenshot.el= by Max Mikhanosha :: an utility to handle
-     screenshots easily from Org, using the external tool [[http://freecode.com/projects/scrot][scrot]].
-
-** Miscellaneous
-
-*** "QUOTE" keywords in headlines are deprecated
-
-"QUOTE" keywords are an undocumented feature in Org.  When a headline
-starts with the keyword "QUOTE", its contents are parsed as
-a ~quote-section~ and treated as an example block.  You can achieve
-the same with example blocks.
-
-This feature is deprecated and will be removed in the next Org
-release.
-
-* Version 8.0.1
-
-** Installation
-
-Installation instructions have been updated and simplified.
-
-If you have troubles installing or updating Org, focus on these
-instructions:
-
-- when updating via a =.zip/.tar.gz= file, you only need to set the
-  =load-path= in your =.emacs=.  Set it before any other Org
-  customization that would call autoloaded Org functions.
-
-- when updating by pulling Org's Git repository, make sure to create the
-  correct autoloads.  You can do this by running =~$ make autoloads= (to
-  only create the autoloads) or by running =~$ make= (to also compile
-  the Emacs lisp files.)  =~$ make help= and =~$ make helpall= gives you
-  detailed explanations.
-
-- when updating through ELPA (either from GNU ELPA or from Org ELPA),
-  you have to install Org's ELPA package in a session where no Org
-  function has been called already.
-
-When in doubt, run =M-x org-version RET= and see if you have a mixed-up
-installation.
-
-See https://orgmode.org/org.html#Installation for details.
-
-** Incompatible changes
-
-Org 8.0 is the most disruptive major version of Org.
-
-If you configured export options, you will have to update some of them.
-
-If you used =#+ATTR_*= keywords, the syntax of the attributes changed and
-you will have to update them.
-
-Below is a list of changes for which you need to take action.
-
-See https://orgmode.org/worg/org-8.0.html for the most recent version of
-this list and for detailed instructions on how to migrate.
-
-**** New export engine
-
-Org 8.0 comes with a new export engine written by Nicolas Goaziou.  This
-export engine relies on ~org-element.el~ (Org's syntax parser), which was
-already in Org's core.  This new export engine triggered the rewriting of
-/all/ export back-ends.
-
-The most visible change is the export dispatcher, accessible through the
-keybinding =C-c C-e=.  By default, this menu only shows some of the
-built-in export formats, but you can add more formats by loading them
-directly (e.g., =(require 'ox-texinfo)= or by configuring the option
-[[doc:org-export-backends][org-export-backends]].
-
-More contributed back-ends are available from the =contrib/= directory, the
-corresponding files start with the =ox-= prefix.
-
-If you customized an export back-end (like HTML or LaTeX), you will need to
-rename some options so that your customization is not lost.  Typically, an
-option starting with =org-export-html-= is now named =org-html-=.  See the
-manual for details and check [[https://orgmode.org/worg/org-8.0.html][this Worg page]] for directions.
-
-**** New syntax for #+ATTR_HTML/LaTeX/... options
-
-     : #+ATTR_HTML width="200px"
-
-     should now be written
-
-     : #+ATTR_HTML :width 200px
-
-     Keywords like =#+ATTR_HTML= and =#+ATTR_LaTeX= are defined in their
-     respective back-ends, and the list of supported parameters depends on
-     each backend.  See Org's manual for details.
-
-**** ~org-remember.el~ has been removed
-
-     You cannot use =remember.el= anymore to capture notes.
-
-     Support for remember templates has been obsoleted since long, it is
-     now fully removed.
-
-     Use =M-x org-capture-import-remember-templates RET= to import your
-     remember templates into capture templates.
-
-**** ~org-jsinfo.el~ has been merged into ~ox-html.el~
-
-     If you were requiring ~ox-jsinfo.el~ in your ~.emacs.el~ file, you
-     will have to remove this requirement from your initialization file.
-
-**** Note for third-party developers
-
-     The name of the files for export back-end have changed: we now use the
-     prefix =ox-= for those files (like we use the =ob-= prefix for Babel
-     files.)  For example ~org-html.el~ is now ~ox-html.el~.
-
-     If your code relies on these files, please update the names in your
-     code.
-
-**** Packages moved from core to contrib
-
-     Since packages in Org's core are meant to be part of GNU Emacs, we try
-     to be minimalist when it comes to adding files into core.  For 8.0, we
-     moved some contributions into the =contrib/= directory.
-
-     The rationale for deciding that these files should live in =contrib/=
-     is either because they rely on third-party software that is not
-     included in Emacs, or because they are not targeting a significant
-     user-base.
-
-     - org-colview-xemacs.el
-     - org-mac-message.el
-     - org-mew.el
-     - org-wl.el
-     - ox-freedmind.el
-     - ox-taskjuggler.el
-
-     Note that ~ox-freedmind.el~ has been rewritten by Jambunathan,
-     ~org-mew.el~ has been enhanced by Tokuya Kameshima and
-     ~ox-taskjuggler.el~ by Nicolas Goaziou and others.
-
-     Also, the Taskjuggler exporter now uses TJ3 by default.  John Hendy
-     wrote [[https://orgmode.org/worg/org-tutorials/org-taskjuggler3.html][a tutorial on Worg]] for the TJ3 export.
-
-** New packages in core
-
-*** ~ob-makefile.el~ by Eric Schulte and Thomas S. Dye
-
-    =ob-makefile.el= implements Org Babel support for Makefile tangling.
-
-*** ~ox-man.el~ by Luis Anaya
-
-    =ox-man.el= allows you to export Org files to =man= pages.
-
-*** ~ox-md.el~ by Nicolas Goaziou
-
-    =ox-md.el= allows you to export Org files to Markdown files, using the
-    vanilla [[http://daringfireball.net/projects/markdown/][Markdown syntax]].
-
-*** ~ox-texinfo.el~ by Jonathan Leech-Pepin
-
-    =ox-texinfo.el= allows you to export Org files to [[https://www.gnu.org/software/texinfo/][Texinfo]] files.
-
-** New packages in contrib
-
-*** ~ob-julia.el~ by G. Jay Kerns
-
-    [[http://julialang.org/][Julia]] is a new programming language.
-
-    =ob-julia.el= provides Org Babel support for evaluating Julia source
-    code.
-
-*** ~ob-mathomatic.el~ by Luis Anaya
-
-    [[http://www.mathomatic.org/][mathomatic]] a portable, command-line, educational CAS and calculator
-    software, written entirely in the C programming language.
-
-    ~ob-mathomatic.el~ provides Org Babel support for evaluating mathomatic
-    entries.
-
-*** ~ob-tcl.el~ by Luis Anaya
-
-    ~ob-tcl.el~ provides Org Babel support for evaluating [[http://www.tcl.tk/][Tcl]] source code.
-
-*** ~org-bullets.el~ by Evgeni Sabof
-
-    Display bullets instead of stars for headlines.
-
-    Also see [[https://orgmode.org/worg/org-faq.html#sec-8-12][this updated FAQ]] on how to display another character than "*"
-    for starting headlines.
-
-*** ~org-favtable.el~ by Marc-Oliver Ihm
-
-    ~org-favtable.el~ helps you to create and update a table of favorite
-    locations in org, keeping the most frequently visited lines right at
-    the top.  This table is called "favtable".  See the documentation on
-    [[https://orgmode.org/worg/org-contrib/org-favtable.html][Worg]].
-
-*** ~ox-confluence.el~ by Sébastien Delafond
-
-    ~ox-confluence.el~ lets you convert Org files to [[https://confluence.atlassian.com/display/DOC/Confluence%2BWiki%2BMarkup][Confluence Wiki]] files.
-
-*** ~ox-deck.el~ and ~ox-s5.el~ by Rick Frankel
-
-    [[http://imakewebthings.com/deck.js/][deck.js]] is a javascript library for displaying HTML ages as
-    presentations.  ~ox-deck.el~ exports Org files to HTML presentations
-    using =deck.js=.
-
-    [[http://meyerweb.com/eric/tools/s5/][s5]] is a set of scripts which also allows to display HTML pages as
-    presentations.  ~ox-s5.el~ exports Org files to HTML presentations
-    using =s5=.
-
-*** ~ox-groff.el~ by Luis Anaya and Nicolas Goaziou
-
-    The [[https://www.gnu.org/software/groff/][groff]] (GNU troff) software is a typesetting package which reads
-    plain text mixed with formatting commands and produces formatted
-    output.
-
-    Luis Anaya and Nicolas Goaziou implemented ~ox-groff.el~ to allow
-    conversion from Org files to groff.
-
-*** ~ox-koma-letter.el~ by Nicolas Goaziou and Alan Schmitt
-
-    This back-end allow to export Org pages to the =KOMA Scrlttr2= format.
-
-*** ~ox-rss.el~ by Bastien
-
-    This back-end lets you export Org pages to RSS 2.0 feeds.  Combined
-    with the HTML publishing feature, this allows you to build a blog
-    entirely with Org.
-
-** New features
-
-*** Export
-
-**** New export generic options
-
-If you use Org exporter, we advise you to re-read [[https://orgmode.org/org.html#Exporting][the manual section about
-it]].  It has been updated and includes new options.
-
-Among the new/updated export options, three are of particular importance:
-
-- [[doc:org-export-allow-bind-keywords][org-export-allow-bind-keywords]] :: This option replaces the old option
-     =org-export-allow-BIND= and the default value is =nil=, not =confirm=.
-     You will need to explicitly set this to =t= in your initialization
-     file if you want to allow =#+BIND= keywords.
-
-- [[doc:org-export-with-planning][org-export-with-planning]] :: This new option controls the export of
-     =SCHEDULED:, DEADLINE:, CLOSED:= lines, and planning information is
-     now skipped by default during export.  This use to be the job of
-     [[doc:org-export-with-timestamps][org-export-with-timestamps]], but this latter option has been given a
-     new role: it controls the export of /standalone time-stamps/.  When
-     set to =nil=, Org will not export active and inactive time-stamps
-     standing on a line by themselves or within a paragraph that only
-     contains time-stamps.
-
-To check if an option has been introduced or its default value changed in
-Org 8.0, do =C-h v [option] RET= and check if the documentation says that
-the variable has been introduced (or changed) in version 24.4 of Emacs.
-
-**** Enhanced default stylesheet for the HTML exporter
-
-See the new default value of [[doc:org-html-style-default][org-html-style-default]].
-
-**** New tags, classes and ids for the HTML exporter
-
-See the new default value of [[doc:org-html-divs][org-html-divs]].
-
-**** Support for tikz pictures in LaTeX export
-**** ~org-man.el~: New export function for "man" links
-**** ~org-docview.el~: New export function for docview links
-*** Structure editing
-
-**** =C-u C-u M-RET= inserts a heading at the end of the parent subtree
-**** Cycling to the =CONTENTS= view keeps inline tasks folded
-
-[[doc:org-cycle-hook][org-cycle-hook]] as a new function [[doc:org-cycle-hide-inline-tasks][org-cycle-hide-inline-tasks]] which
-prevents the display of inline tasks when showing the content of a subtree.
-
-**** =C-c -= in a region makes a list item for each line
-
-This is the opposite of the previous behavior, where =C-c -= on a region
-would create one item for the whole region, and where =C-u C-c -= would
-create an item for each line.  Now =C-c -= on the selected region creates
-an item per line, and =C-u C-c -= creates a single item for the whole
-region.
-
-**** When transposing words, markup characters are now part of the words
-
-In Emacs, you can transpose words with =M-t=.  Transposing =*these*
-_words__= will preserve markup.
-
-**** New command [[doc:org-set-property-and-value][org-set-property-and-value]] bound to =C-c C-x P=
-
-This command allows you to quickly add both the property and its value.  It
-is useful in buffers where there are many properties and where =C-c C-x p=
-can slow down the flow of editing too much.
-
-**** New commands [[doc:org-next-block][org-next-block]] and [[doc:org-previous-block][org-previous-block]]
-
-These commands allow you to go to the previous block (=C-c M-b= or the
-speedy key =B=) or to the next block (=C-c M-f= or the speedy key =F=.)
-
-**** New commands [[doc:org-drag-line-forward][org-drag-line-forward]] and [[doc:org-drag-line-backward][org-drag-line-backward]]
-
-These commands emulate the old behavior of =M-<down>= and =M-<up>= but are
-now bound to =S-M-<down>= and =S-M-<up>= respectively, since =M-<down>= and
-=M-<up>= now drag the whole element at point (a paragraph, a table, etc.)
-forward and backward.
-
-**** When a list item has a checkbox, inserting a new item uses a checkbox too
-**** When sorting entries/items, only the description of links is considered
-
-Now Org will sort this list
-
-: - [[http://abc.org][B]]
-: - [[http://def.org][A]]
-
-like this:
-
-: - [[http://def.org][A]]
-: - [[http://abc.org][B]]
-
-by comparing the descriptions, not the links.
-Same when sorting headlines instead of list items.
-**** New option =orgstruct-heading-prefix-regexp=
-
-For example, setting this option to "^;;; " in Emacs lisp files and using
-=orgstruct-mode= in those files will allow you to cycle through visibility
-states as if lines starting with ";;; *..." where headlines.
-
-In general, you want to set =orgstruct-heading-prefix-regexp= as a file
-local variable.
-
-**** New behavior of [[doc:org-clone-subtree-with-time-shift][org-clone-subtree-with-time-shift]]
-
-The default is now to ask for a time-shift only when there is a time-stamp.
-When called with a universal prefix argument =C-u=, it will not ask for a
-time-shift even if there is a time-stamp.
-
-**** New option [[doc:org-agenda-restriction-lock-highlight-subtree][org-agenda-restriction-lock-highlight-subtree]]
-
-This defaults to =t= so that the whole subtree is highlighted when you
-restrict the agenda view to it with =C-c C-x <= (or the speed command =<=).
-The default setting helps ensuring that you are not adding tasks after the
-restricted region.  If you find this highlighting too intrusive, set this
-option to =nil=.
-**** New option [[doc:org-closed-keep-when-no-todo][org-closed-keep-when-no-todo]]
-
-When switching back from a =DONE= keyword to a =TODO= keyword, Org now
-removes the =CLOSED= planning information, if any.  It also removes this
-information when going back to a non-TODO state (e.g., with =C-c C-t SPC=).
-If you want to keep the =CLOSED= planning information when removing the
-TODO keyword, set [[doc:org-closed-keep-when-no-todo][org-closed-keep-when-no-todo]] to =t=.
-
-**** New option [[doc:org-image-actual-width][org-image-actual-width]]
-
-This option allows you to change the width of in-buffer displayed images.
-The default is to use the actual width of the image, but you can use a
-fixed value for all images, or fall back on an attribute like
-
-: #+attr_html: :width 300px
-*** Scheduled/deadline
-
-**** Implement "delay" cookies for scheduled items
-
-If you want to delay the display of a scheduled task in the agenda, you can
-now use a delay cookie like this: =SCHEDULED: <2004-12-25 Sat -2d>=.  The
-task is still scheduled on the 25th but will appear in your agenda starting
-from two days later (i.e. from March 27th.)
-
-Imagine for example that your co-workers are not done in due time and tell
-you "we need two more days".  In that case, you may want to delay the
-display of the task in your agenda by two days, but you still want the task
-to appear as scheduled on March 25th.
-
-In case the task contains a repeater, the delay is considered to affect all
-occurrences; if you want the delay to only affect the first scheduled
-occurrence of the task, use =--2d= instead.  See [[doc:org-scheduled-delay-days][org-scheduled-delay-days]]
-and [[doc:org-agenda-skip-scheduled-delay-if-deadline][org-agenda-skip-scheduled-delay-if-deadline]] for details on how to
-control this globally or per agenda.
-
-**** Use =C-u C-u C-c C-s= will insert a delay cookie for scheduled tasks
-
-See the previous section for why delay cookies may be useful.
-
-**** Use =C-u C-u C-c C-d= will insert a warning delay for deadline tasks
-
-=C-u C-u C-c C-d= now inserts a warning delay to deadlines.
-*** Calendar, diary and appts
-
-**** New variable [[doc:org-read-date-minibuffer-local-map][org-read-date-minibuffer-local-map]]
-
-By default, this new local map uses "." to go to today's date, like in the
-normal =M-x calendar RET=.  If you want to deactivate this and to reassign
-the "@" key to =calendar-goto-today=, use this:
-
-#+BEGIN_SRC emacs-lisp
-  ;; Unbind "." in Org's calendar:
-  (define-key org-read-date-minibuffer-local-map (kbd ".") nil)
-
-  ;; Bind "@" to `calendar-goto-today':
-  (define-key org-read-date-minibuffer-local-map
-              (kbd "@")
-              (lambda () (interactive) (org-eval-in-calendar '(calendar-goto-today))))
-#+END_SRC
-
-**** In Org's calendar, =!= displays diary entries of the date at point
-
-This is useful when you want to check if you don't already have an
-appointment when setting new ones with =C-c .= or =C-c s=.  =!= will
-call =diary-view-entries= and display the diary in a separate buffer.
-
-**** [[doc:org-diary][org-diary]]: only keep the descriptions of links
-
-[[doc:org-diary][org-diary]] returns diary information from Org files, but it returns it
-in a diary buffer, not in an Org mode buffer.  When links are displayed,
-only show their description, not the full links.
-*** Agenda
-
-**** New agenda type =agenda*= and entry types =:scheduled* :deadline*=
-
-When defining agenda custom commands, you can now use =agenda*=: this will
-list entries that have both a date and a time.  This is useful when you
-want to build a list of appointments.
-
-You can also set [[doc:org-agenda-entry-types][org-agenda-entry-types]] either globally or locally in
-each agenda custom command and use =:timestamp*= and/or =:deadline*= there.
-
-Another place where this is useful is your =.diary= file:
-
-: %%(org-diary :scheduled*) ~/org/rdv.org
-
-This will list only entries from =~/org/rdv.org= that are scheduled with a
-time value (i.e. appointments).
-
-**** New agenda sorting strategies
-
-[[doc:org-agenda-sorting-strategy][org-agenda-sorting-strategy]] allows these new sorting strategies:
-
-| Strategy       | Explanations                             |
-|----------------+------------------------------------------|
-| timestamp-up   | Sort by any timestamp, early first       |
-| timestamp-down | Sort by any timestamp, late first        |
-| scheduled-up   | Sort by scheduled timestamp, early first |
-| scheduled-down | Sort by scheduled timestamp, late first  |
-| deadline-up    | Sort by deadline timestamp, early first  |
-| deadline-down  | Sort by deadline timestamp, late first   |
-| ts-up          | Sort by active timestamp, early first    |
-| ts-down        | Sort by active timestamp, late first     |
-| tsia-up        | Sort by inactive timestamp, early first  |
-| tsia-down      | Sort by inactive timestamp, late first   |
-
-**** New options to limit the number of agenda entries
-
-You can now limit the number of entries in an agenda view.  This is
-different from filters: filters only /hide/ the entries in the agenda,
-while limits are set while generating the list of agenda entries.
-
-These new options are available:
-
-- [[doc:org-agenda-max-entries][org-agenda-max-entries]] :: limit by number of entries.
-- [[doc:org-agenda-max-todos][org-agenda-max-todos]] :: limit by number of TODOs.
-- [[doc:org-agenda-max-tags][org-agenda-max-tags]] :: limit by number of tagged entries.
-- [[doc:org-agenda-max-effort][org-agenda-max-effort]] :: limit by effort (minutes).
-
-For example, if you locally set [[doc:org-agenda-max-todos][org-agenda-max-todos]] to 3 in an agenda
-view, the agenda will be limited to the first three todos.  Other entries
-without a TODO keyword or beyond the third TODO headline will be ignored.
-
-When setting a limit (e.g. about an effort's sum), the default behavior is
-to exclude entries that cannot be checked against (e.g. entries that have
-no effort property.)  To include other entries too, you can set the limit
-to a negative number.  For example =(setq org-agenda-max-tags -3)= will not
-show the fourth tagged headline (and beyond), but it will also show
-non-tagged headlines.
-
-**** =~= in agenda view sets temporary limits
-
-You can hit =~= in the agenda to temporarily set limits: this will
-regenerate the agenda as if the limits were set.  This is useful for
-example when you want to only see a list of =N= tasks, or a list of tasks
-that take only =N= minutes.
-
-**** "=" in agenda view filters by regular expressions
-
-You can now filter agenda entries by regular expressions using ~=~.  =C-u
-== will filter entries out.  Regexp filters are cumulative.  You can set
-[[doc:org-agenda-regexp-filter-preset][org-agenda-regexp-filter-preset]] to suit your needs in each agenda view.
-
-**** =|= in agenda view resets all filters
-
-Since it's common to combine tag filters, category filters, and now regexp
-filters, there is a new command =|= to reset all filters at once.
-
-**** Allow writing an agenda to an =.org= file
-
-You can now write an agenda view to an =.org= file.  It copies the
-headlines and their content (but not subheadings) into the new file.
-
-This is useful when you want to quickly share an agenda containing the full
-list of notes.
-
-**** New commands to drag an agenda line forward (=M-<down>=) or backward (=M-<up>=)
-
-It sometimes handy to move agenda lines around, just to quickly reorganize
-your tasks, or maybe before saving the agenda to a file.  Now you can use
-=M-<down>= and =M-<up>= to move the line forward or backward.
-
-This does not persist after a refresh of the agenda, and this does not
-change the =.org= files who contribute to the agenda.
-
-**** Use =%b= for displaying "breadcrumbs" in the agenda view
-
-[[doc:org-agenda-prefix-format][org-agenda-prefix-format]] now allows to use a =%b= formatter to tell Org
-to display "breadcrumbs" in the agenda view.
-
-This is useful when you want to display the task hierarchy in your agenda.
-
-**** Use =%l= for displaying the headline's level in the agenda view
-
-[[doc:org-agenda-prefix-format][org-agenda-prefix-format]] allows to use a =%l= formatter to tell Org to
-display entries with additional spaces corresponding to their level in the
-outline tree.
-
-**** [[doc:org-agenda-write][org-agenda-write]] will ask before overwriting an existing file
-
-=M-x org-agenda-write RET= (or =C-c C-w= from an agenda buffer) used to
-overwrite preexisting file with the same name without confirmation.  It now
-asks for a confirmation.
-
-**** New commands =M-m= and =M-*= to toggle (all) mark(s) for bulk action
-
-- [[doc:org-agenda-bulk-toggle][org-agenda-bulk-toggle]] :: this command is bound to =M-m= and toggles
-     the mark of the entry at point.
-
-- [[doc:org-agenda-bulk-toggle-all][org-agenda-bulk-toggle-all]] :: this command is bound to =M-*= and
-     toggles all the marks in the current agenda.
-
-**** New option [[doc:org-agenda-search-view-max-outline-level][org-agenda-search-view-max-outline-level]]
-
-This option sets the maximum outline level to display in search view.
-E.g. when this is set to 1, the search view will only show headlines of
-level 1.
-
-**** New option [[doc:org-agenda-todo-ignore-time-comparison-use-seconds][org-agenda-todo-ignore-time-comparison-use-seconds]]
-
-This allows to compare times using seconds instead of days when honoring
-options like =org-agenda-todo-ignore-*= in the agenda display.
-
-**** New option [[doc:org-agenda-entry-text-leaders][org-agenda-entry-text-leaders]]
-
-This allows you to get rid of the ">" character that gets added in front of
-entries excerpts when hitting =E= in the agenda view.
-
-**** New formatting string for past deadlines in [[doc:org-agenda-deadline-leaders][org-agenda-deadline-leaders]]
-
-The default formatting for past deadlines is ="%2d d. ago: "=, which makes
-it explicit that the deadline is in the past.  You can configure this via
-[[doc:org-agenda-deadline-leaders][org-agenda-deadline-leaders]].  Note that the width of the formatting
-string is important to keep the agenda alignment clean.
-
-**** New allowed value =repeated-after-deadline= for [[doc:org-agenda-skip-scheduled-if-deadline-is-shown][org-agenda-skip-scheduled-if-deadline-is-shown]]
-
-When [[doc:org-agenda-skip-scheduled-if-deadline-is-shown][org-agenda-skip-scheduled-if-deadline-is-shown]] is set to
-=repeated-after-deadline=, the agenda will skip scheduled items if they are
-repeated beyond the current deadline.
-
-**** New option for [[doc:org-agenda-skip-deadline-prewarning-if-scheduled][org-agenda-skip-deadline-prewarning-if-scheduled]]
-
-This variable may be set to nil, t, the symbol `pre-scheduled', or a number
-which will then give the number of days before the actual deadline when the
-prewarnings should resume.  The symbol `pre-scheduled' eliminates the
-deadline prewarning only prior to the scheduled date.
-
-Read the full docstring for details.
-
-**** [[doc:org-class][org-class]] now supports holiday strings in the skip-weeks parameter
-
-For example, this task will now be skipped only on new year's day:
-
-    : * Task
-    :   <%%(org-class 2012 1 1 2013 12 12 2 "New Year's Day")>
-*** Capture
-
-**** Allow =C-1= as a prefix for [[doc:org-agenda-capture][org-agenda-capture]] and [[doc:org-capture][org-capture]]
-
-With a =C-1= prefix, the capture mechanism will use the =HH:MM= value at
-point (if any) or the current =HH:MM= time as the default time for the
-capture template.
-
-**** Expand keywords within %(sexp) placeholder in capture templates
-
-If you use a =%:keyword= construct within a =%(sexp)= construct, Org will
-expand the keywords before expanding the =%(sexp)=.
-
-**** Allow to contextualize capture (and agenda) commands by checking the name of the buffer
-
-[[doc:org-capture-templates-contexts][org-capture-templates-contexts]] and [[doc:org-agenda-custom-commands-contexts][org-agenda-custom-commands-contexts]]
-allow you to define what capture templates and what agenda commands should
-be available in various contexts.  It is now possible for the context to
-check against the name of the buffer.
-*** Tag groups
-
-Using =#+TAGS: { Tag1 : Tag2 Tag3 }= will define =Tag1= as a /group tag/
-(note the colon after =Tag1=).  If you search for =Tag1=, it will return
-headlines containing either =Tag1=, =Tag2= or =Tag3= (or any combination
-of those tags.)
-
-You can use group tags for sparse tree in an Org buffer, for creating
-agenda views, and for filtering.
-
-See https://orgmode.org/org.html#Tag-groups for details.
-
-*** Links
-
-**** =C-u C-u M-x org-store-link RET= will ignore non-core link functions
-
-Org knows how to store links from Org buffers, from info files and from
-other Emacs buffers.  Org can be taught how to store links from any buffer
-through new link protocols (see [[https://orgmode.org/org.html#Adding-hyperlink-types]["Adding hyperlink types"]] in the manual.)
-
-Sometimes you want Org to ignore added link protocols and store the link
-as if the protocol was not known.
-
-You can now do this with =C-u C-u M-x org-store-link RET=.
-
-**** =C-u C-u C-u M-x org-store-link RET= on an active region will store links for each lines
-
-Imagine for example that you want to store a link for every message in a
-Gnus summary buffer.  In that case =C-x h C-u C-u C-u M-x org-store-link
-RET= will store a link for every line (i.e. message) if the region is
-active.
-
-**** =C-c C-M-l= will add a default description for links which don't have one
-
-=C-c C-M-l= inserts all stored links.  If a link does not have a
-description, this command now adds a default one, so that we are not mixing
-with-description and without-description links when inserting them.
-
-**** No curly braces to bracket links within internal links
-
-When storing a link to a headline like
-
-: * See [[https://orgmode.org][Org website]]
-
-[[doc:org-store-link][org-store-link]] used to convert the square brackets into curly brackets.
-It does not anymore, taking the link description or the link path, when
-there is no description.
-*** Table
-
-**** Switching between #+TBLFM lines
-
-If you have several =#+TBLFM= lines below a table, =C-c C-c= on a line will
-apply the formulas from this line, and =C-c C-c= on another line will apply
-those other formulas.
-
-**** You now use "nan" for empty fields in Calc formulas
-
-If empty fields are of interest, it is recommended to reread the section
-[[https://orgmode.org/org.html#Formula-syntax-for-Calc][3.5.2 Formula syntax for Calc]] of the manual because the description for the
-mode strings has been clarified and new examples have been added towards
-the end.
-
-**** Handle localized time-stamps in formulas evaluation
-
-If your =LOCALE= is set so that Org time-stamps use another language than
-english, and if you make time computations in Org's table, it now works by
-internally converting the time-stamps with a temporary =LOCALE=C= before
-doing computation.
-
-**** New lookup functions
-
-There are now three lookup functions:
-
-- [[doc:org-loopup-first][org-loopup-first]]
-- [[doc:org-loopup-last][org-loopup-last]]
-- [[doc:org-loopup-all][org-loopup-all]]
-
-See [[https://orgmode.org/org.html#Lookup-functions][the manual]] for details.
-*** Startup keywords
-
-These new startup keywords are now available:
-
-| Startup keyword                  | Option                                      |
-|----------------------------------+---------------------------------------------|
-| =#+STARTUP: logdrawer=           | =(setq org-log-into-drawer t)=              |
-| =#+STARTUP: nologdrawer=         | =(setq org-log-into-drawer nil)=            |
-|----------------------------------+---------------------------------------------|
-| =#+STARTUP: logstatesreversed=   | =(setq org-log-states-order-reversed t)=    |
-| =#+STARTUP: nologstatesreversed= | =(setq org-log-states-order-reversed nil)=  |
-|----------------------------------+---------------------------------------------|
-| =#+STARTUP: latexpreview=        | =(setq org-startup-with-latex-preview t)=   |
-| =#+STARTUP: nolatexpreview=      | =(setq org-startup-with-latex-preview nil)= |
-
-*** Clocking
-
-**** New option [[doc:org-clock-rounding-minutes][org-clock-rounding-minutes]]
-
-E.g. if [[doc:org-clock-rounding-minutes][org-clock-rounding-minutes]] is set to 5, time is 14:47 and you
-clock in: then the clock starts at 14:45.  If you clock out within the next
-5 minutes, the clock line will be removed; if you clock out 8 minutes after
-your clocked in, the clock out time will be 14:50.
-
-**** New option [[doc:org-time-clocksum-use-effort-durations][org-time-clocksum-use-effort-durations]]
-
-When non-nil, =C-c C-x C-d= uses effort durations.  E.g., by default, one
-day is considered to be a 8 hours effort, so a task that has been clocked
-for 16 hours will be displayed as during 2 days in the clock display or in
-the clocktable.
-
-See [[doc:org-effort-durations][org-effort-durations]] on how to set effort durations and
-[[doc:org-time-clocksum-format][org-time-clocksum-format]] for more on time clock formats.
-
-**** New option [[doc:org-clock-x11idle-program-name][org-clock-x11idle-program-name]]
-
-This allows to set the name of the program which prints X11 idle time in
-milliseconds.  The default is to use =x11idle=.
-
-**** New option [[doc:org-use-last-clock-out-time-as-effective-time][org-use-last-clock-out-time-as-effective-time]]
-
-When non-nil, use the last clock out time for [[doc:org-todo][org-todo]].  Note that this
-option has precedence over the combined use of [[doc:org-use-effective-time][org-use-effective-time]] and
-[[doc:org-extend-today-until][org-extend-today-until]].
-
-**** =S-<left/right>= on a clocksum column will update the sum by updating the last clock
-**** =C-u 3 C-S-<up/down>= will update clock timestamps synchronously by 3 units
-**** New parameter =:wstart= for clocktables to define the week start day
-**** New parameter =:mstart= to state the starting day of the month
-**** Allow relative times in clocktable tstart and tend options
-**** The clocktable summary is now a caption
-**** =:tstart= and =:tend= and friends allow relative times like "<-1w>" or "<now>"
-*** Babel
-
-**** You can now use =C-c C-k= for [[doc:org-edit-src-abort][org-edit-src-abort]]
-
-This allows you to quickly cancel editing a source block.
-
-**** =C-u C-u M-x org-babel-tangle RET= tangles by the target file of the block at point
-
-This is handy if you want to tangle all source code blocks that have the
-same target than the block at point.
-
-**** New options for auto-saving the base buffer or the source block editing buffer
-
-When [[doc:org-edit-src-turn-on-auto-save][org-edit-src-turn-on-auto-save]] is set to =t=, editing a source block
-in a new window will turn on =auto-save-mode= and save the code in a new
-file under the same directory than the base Org file.
-
-When [[doc:org-edit-src-auto-save-idle-delay][org-edit-src-auto-save-idle-delay]] is set to a number of minutes =N=,
-the base Org buffer will be saved after this number of minutes of idle
-time.
-
-**** New =:post= header argument post-processes results
-
-     This header argument may be used to pass the results of the current
-     code block through another code block for post-processing.  See the
-     manual for a usage example.
-
-**** Commented out heading are ignored when collecting blocks for tangling
-
-If you comment out a heading (with =C-c ;= anywhere on the heading or in
-the subtree), code blocks from within this heading are now ignored when
-collecting blocks for tangling.
-
-**** New option [[doc:org-babel-hash-show-time][org-babel-hash-show-time]] to show a time-stamp in the result hash
-**** Do not ask for confirmation if cached value is current
-
-Do not run [[doc:org-babel-confirm-evaluate][org-babel-confirm-evaluate]] if source block has a cache and the
-cache value is current as there is no evaluation involved in this case.
-**** =ob-sql.el= and =ob-python.el= have been improved.
-**** New Babel files only need to =(require 'ob)=
-
-When writing a new Babel file, you now only need to use =(require 'ob)=
-instead of requiring each Babel library one by one.
-*** Faces
-
-- Org now fontifies radio link targets by default
-- In the agenda, use [[doc:org-todo-keyword-faces][org-todo-keyword-faces]] to highlight selected TODO keywords
-- New face [[doc:org-priority][org-priority]], enhanced fontification of priority cookies in agenda
-- New face [[doc:org-tag-group][org-tag-group]] for group tags
-
-** Miscellaneous
-
-- New speedy key =s= pour [[doc:org-narrow-to-subtree][org-narrow-to-subtree]]
-- Handling of [[doc:org-html-table-row][org-html-table-row]] has been updated (incompatible change)
-- [[doc:org-export-html-table-tag][org-export-html-table-tag]] is replaced by [[doc:org-html-table-default-attributes][org-html-table-default-attributes]]
-- Support using =git-annex= with Org attachments
-- org-protocol: Pass optional value using query in url to capture from protocol
-- When the refile history is empty, use the current filename as default
-- When you cannot change the TODO state of a task, Org displays the blocking task
-- New option [[doc:org-mobile-allpriorities][org-mobile-allpriorities]]
-- org-bibtex.el now use =visual-line-mode= instead of the deprecated =longlines-mode=
-- [[doc:org-format-latex-options][org-format-latex-options]] allows to set the foreground/background colors automatically
-- New option [[doc:org-archive-file-header-format][org-archive-file-header-format]]
-- New "neg" entity in [[doc:org-entities][org-entities]]
-- New function [[doc:org-docview-export][org-docview-export]] to export docview links
-- New =:eps= header argument for ditaa code blocks
-- New option [[doc:org-gnus-no-server][org-gnus-no-server]] to start Gnus with =gnus-no-server=
-- Org is now distributed with =htmlize.el= version 1.43
-- ~org-drill.el~ has been updated to version 2.3.7
-- ~org-mac-iCal.el~ now supports OS X versions up to 10.8
-- Various improvements to ~org-contacts.el~ and =orgpan.el=
-
-** Outside Org
-
-*** Spanish translation of the Org guide by David Arroyo Menéndez
-
-David (and others) translated the Org compact guide in spanish:
-
-You can read the [[https://orgmode.org/worg/orgguide/orgguide.es.pdf][PDF guide]].
-
-*** ~poporg.el~ and ~outorg.el~
-
-Two new libraries (~poporg.el~ by François Pinard and ~outorg.el~ by
-Thorsten Jolitz) now enable editing of comment-sections from source-code
-buffers in temporary Org-mode buffers, making the full editing power of
-Org-mode available.  ~outorg.el~ comes together with ~outshine.el~ and
-~navi-mode.el~, two more libraries by Thorsten Jolitz with the goal to give
-source-code buffers the /look & feel/ of Org-mode buffers while greatly
-improving navigation and structure editing.  A detailed description can be
-found here: https://orgmode.org/worg/org-tutorials/org-outside-org.html
-
-Here are two screencasts demonstrating Thorsten's tools:
-
-- [[http://youtu.be/nqE6YxlY0rw]["Modern conventions for Emacs Lisp files"]]
-- [[http://www.youtube.com/watch?v%3DII-xYw5VGFM][Exploring Bernt Hansen's Org-mode tutorial with 'navi-mode']]
-
-*** MobileOrg for iOS
-
-MobileOrg for iOS back in the App Store The 1.6.0 release was focused on
-the new Dropbox API and minor bug fixes but also includes a new ability to
-launch in Capture mode.  Track development and contribute [[https://github.com/MobileOrg/mobileorg/issues][on github]].
-
-* Version 7.9.3
-
-** New option [[doc::org-agenda-use-tag-inheritance][org-agenda-use-tag-inheritance]]
-
-[[doc::org-use-tag-inheritance][org-use-tag-inheritance]] controls whether tags are inherited when
-org-tags-view is called (either in =tags=, =tags-tree= or =tags-todo=
-agenda views.)
-
-When generating other agenda types such as =agenda=, =todo= and
-=todo-tree=, tags inheritance is not used when selecting the entries
-to display.  Still, you might want to have all tag information correct
-in the agenda buffer, e.g. for tag filtering.  In that case, add the
-agenda type to this variable.
-
-Setting this variable to nil should considerably speeds up the agenda
-generation.
-
-Note that the default was to display inherited tags in the agenda
-lines even if `org-use-tag-inheritance' was nil.  The default is now
-to *never* display inherited tags in agenda lines, but to /know/ about
-them when the agenda type is listed in [[doc::org-agenda-use-tag-inheritance][org-agenda-use-tag-inheritance]].
-
-** New default value nil for [[doc::org-agenda-dim-blocked-tasks][org-agenda-dim-blocked-tasks]]
-
-Using `nil' as the default value speeds up the agenda generation.  You
-can hit `#' (or `C-u #') in agenda buffers to temporarily dim (or turn
-invisible) blocked tasks.
-
-** New speedy keys for [[doc::org-speed-commands-default][org-speed-commands-default]]
-
-You can now use `:' (instead of `;') for setting tags---this is
-consistent with using the `:' key in agenda view.
-
-You can now use `=' for [[doc::org-columns][org-columns]].
-
-** =org-float= is now obsolete, use =diary-float= instead
-** No GPL manual anymore
-
-There used to be a GPL version of the Org manual, but this is not the
-case anymore, the Free Software Foundation does not permit this.
-
-The GNU FDL license is now included in the manual directly.
-
-** Enhanced compatibility with Emacs 22 and XEmacs
-
-Thanks to Achim for his work on enhancing Org's compatibility with
-various Emacsen.  Things may not be perfect, but Org should work okay
-in most environments.
-
-* Version 7.9.2
-
-** New ELPA repository for Org packages
-
-You can now add the Org ELPA repository like this:
-
-#+BEGIN_SRC emacs-lisp
-(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
-#+END_SRC
-
-It contains both the =org-*.tar= package (the core Org distribution, also
-available through https://elpa.gnu.org) and the =org-plus*.tar= package (the
-extended Org distribution, with non-GNU packages from the =contrib/=
-directory.)
-
-See https://orgmode.org/elpa/
-
-** Overview of the new keybindings
-
-   | Keybinding      | Speedy | Command                     |
-   |-----------------+--------+-----------------------------|
-   | =C-c C-x C-z=   |        | [[doc::org-clock-resolve][org-clock-resolve]]           |
-   | =C-c C-x C-q=   |        | [[doc::org-clock-cancel][org-clock-cancel]]            |
-   | =C-c C-x C-x=   |        | [[doc::org-clock-in-last][org-clock-in-last]]           |
-   | =M-h=           |        | [[doc::org-mark-element][org-mark-element]]            |
-   | =*=             |        | [[doc::org-agenda-bulk-mark-all][org-agenda-bulk-mark-all]]    |
-   | =C-c C-M-l=     |        | [[doc::org-insert-all-links][org-insert-all-links]]        |
-   | =C-c C-x C-M-v= |        | [[doc::org-redisplay-inline-images][org-redisplay-inline-images]] |
-   | =C-c C-x E=     | =E=    | [[doc::org-inc-effort][org-inc-effort]]              |
-   |                 | =#=    | [[doc::org-toggle-comment][org-toggle-comment]]          |
-   |                 | =:=    | [[doc::org-columns][org-columns]]                 |
-   |                 | =W=    | Set =APPT_WARNTIME=          |
-   | =k=             |        | [[doc::org-agenda-capture][org-agenda-capture]]          |
-   | C-c ,           | ,      | [[doc::org-priority][org-priority]]                |
-
-** New package and Babel language
-
-*** =org-eshell.el= by Konrad Hinsen is now in Org
-
-    =org-eshell.el= allows you to create links from [[https://www.gnu.org/software/emacs/manual/html_node/eshell/index.html][Eshell]].
-
-*** Support for execution of Scala code blocks (see ob-scala.el)
-*** Support for execution of IO code blocks (see ob-io.el)
-
-** Incompatible changes
-
-   - If your code relies on =org-write-agenda=, please use
-     [[doc::org-agenda-write][org-agenda-write]] from now on.
-
-   - If your code relies on =org-make-link=, please use =concat=
-     instead.
-
-   - =org-link-to-org-use-id= has been renamed to
-     =org-id-link-to-org-use-id= and its default value is nil.  The
-     previous default was =create-if-interactive-and-no-custom-id=.
-
-** New features and user-visible changes
-
-*** Org Element
-
-    =org-element.el= is a toolbox for parsing and analyzing "elements"
-    in an Org-mode buffer.  This has been written by Nicolas Goaziou
-    and has been tested for quite some time.  It is now part of Org's
-    core and many core functions rely on this package.
-
-    Two functions might be particularly handy for users:
-    =org-element-at-point= and =org-element-context=.
-
-    See the docstrings for more details.
-
-    Below is a list of editing and navigating commands that now rely
-    on =org-element.el=.
-
-**** [[doc::org-fill-paragraph][org-fill-paragraph]] has been completely rewritten
-
-     The filling mechanisms now rely on org-element, trying to do the
-     right thing on each element in various contexts.  E.g. filling in
-     a list item will preserve indentation; filling in message-mode
-     will fall back on the relevant filling functions; etc.
-
-**** [[doc::org-metaup][org-metaup]] and [[doc::org-metadown][org-metadown]] will drag the element backward/forward
-
-     If you want to get the old behavior (i.e. moving a line up and
-     down), you can first select the line as an active region, then
-     =org-metaup= or =org-metadown= to move the region backward or
-     forward.  This also works with regions bigger than just one line.
-
-**** [[doc::org-up-element][org-up-element]] and [[doc::org-down-element][org-down-element]] (respectively =C-c C-^= and =C-c C-_=)
-
-     This will move the point up/down in the hierarchy of elements.
-
-**** [[doc::org-backward-element][org-backward-element]] and [[doc::org-forward-element][org-forward-element]] (respectively =M-{= and =M-}=)
-
-     This will move the point backward/forward in the hierarchy of
-     elements.
-
-**** [[doc::org-narrow-to-element][org-narrow-to-element]] will narrow to the element at point
-**** [[doc::org-mark-element][org-mark-element]] will mark the element at point
-
-     This command is bound to =M-h= and will mark the element at
-     point.  If the point is at a paragraph, it will mark the
-     paragraph.  If the point is at a list item, it will mark the list
-     item.  Etc.
-
-     Note that if point is at the beginning of a list, it will mark
-     the whole list.
-
-     To mark a subtree, you can either use =M-h= on the headline
-     (since there is no ambiguity about the element you're at) or
-     [[doc::org-mark-subtree][org-mark-subtree]] (=C-c @=) anywhere in the subtree.
-
-     Invoking [[doc::org-mark-element][org-mark-element]] repeatedly will try to mark the next
-     element on top of the previous one(s).  E.g. hitting =M-h= twice
-     on a headline will mark the current subtree and the next one on
-     the same level.
-
-*** Org Agenda
-
-**** New option [[doc::org-agenda-sticky][org-agenda-sticky]]
-
-     There is a new option =org-agenda-sticky= which enables "sticky"
-     agendas.  Sticky agendas remain opened in the background so that
-     you don't need to regenerate them each time you hit the
-     corresponding keystroke.  This is a big time saver.
-
-     When [[doc::org-agenda-sticky][org-agenda-sticky]] is =non-nil=, the agenda buffer will be
-     named using the agenda key and its description.  In sticky
-     agendas, the =q= key will just bury the agenda buffers and
-     further agenda commands will show existing buffer instead of
-     generating new ones.
-
-     If [[doc::org-agenda-sticky][org-agenda-sticky]] is set to =nil=, =q= will kill the single
-     agenda buffer.
-
-**** New option [[doc::org-agenda-custom-commands-contexts][org-agenda-custom-commands-contexts]]
-
-     Setting this option allows you to define specific context where
-     agenda commands should be available from.  For example, when set
-     to this value
-
-     #+BEGIN_SRC emacs-lisp
-  (setq org-agenda-custom-commands-contexts
-        '(("p" (in-file . "\\.txt"))))
-#+END_SRC
-
-     then the =p= agenda command will only be available from buffers
-     visiting *.txt files.  See the docstring and the manual for more
-     details on how to use this.
-
-**** Changes in bulk actions
-
-     The set of commands starting with =k ...= as been deleted and the
-     features have been merged into the "bulk action" feature.
-
-     After you marked some entries in the agenda, if you call =B s=,
-     the agenda entries will be rescheduled using the date at point if
-     on a date header.  If you are on an entry with a timestamp, you
-     will be prompted for a date to reschedule your marked entries to,
-     using the timestamp at point as the default prompt.
-
-     You can now use =k= to capture the marked entry and use the date
-     at point as an overriding date for the capture template.
-
-     To bind this behavior to =M-x org-capture RET= (or its
-     keybinding), set the new option [[doc::org-capture-use-agenda-date][org-capture-use-agenda-date]] to
-     =t=.
-
-**** =N= and =P= in the agenda will move to the next/previous item
-
-**** New command [[doc::org-agenda-bulk-mark-all][org-agenda-bulk-mark-all]] to mark all items
-
-     This new command is bound to =*= in agenda mode.
-
-     There is also a new option [[doc::org-agenda-bulk-mark-char][org-agenda-bulk-mark-char]] to set the
-     character to use as a mark for bulk actions.
-
-**** New option [[doc::org-agenda-persistent-marks][org-agenda-persistent-marks]]
-
-     When set to =non-nil=, marks will remain visible after a bulk
-     action.  You can temporarily toggle this by pressing =p= when
-     invoking [[doc::org-agenda-bulk-action][org-agenda-bulk-action]].  Marks are deleted if your
-     rebuild the agenda buffer or move to another date/span (e.g. with
-     =f= or =w=).
-
-**** New option [[doc::org-agenda-skip-timestamp-if-deadline-is-shown][org-agenda-skip-timestamp-if-deadline-is-shown]]
-
-     =Non-nil= means skip timestamp line if same entry shows because
-     of deadline.
-
-     In the agenda of today, an entry can show up multiple times
-     because it has both a plain timestamp and has a nearby deadline.
-     When this variable is t, then only the deadline is shown and the
-     fact that the entry has a timestamp for or including today is not
-     shown.  When this variable is =nil=, the entry will be shown
-     several times.
-
-**** New =todo-unblocked= and =nottodo-unblocked= skip conditions
-
-     See the [[https://orgmode.org/cgit.cgi/org-mode.git/commit/?id=f426da][git commit]] for more explanations.
-
-**** Allow category filtering in the agenda
-
-     You can now filter the agenda by category.  Pressing "<" will
-     filter by the category of the item on the current line, and
-     pressing "<" again will remove the filter.  You can combine tag
-     filters and category filters.
-
-     You can use =org-agenda-category-filter= in your custom agenda
-     views and =org-agenda-category-filter-preset= in your main
-     configuration.
-
-     See also the new command [[doc::org-agenda-filter-by-top-category][org-agenda-filter-by-top-category]]:
-     hitting =^= will filter by "Top" category: only show entries that
-     are of the same category than the Top category of the entry at
-     point.
-
-*** Org Links
-
-**** Inserting links
-
-     When inserting links through [[doc::org-insert-link][org-insert-link]], the description is
-     now displayed first, followed by the literal link, as the
-     description is often more useful when you look for the link you
-     want to insert.
-
-     Completion now complete both literal links and description.  If
-     you complete a description, the literal link and its description
-     will be inserted directly, whereas when you complete the literal
-     link, you will be prompted for a description (as with Org 7.8.)
-
-     In the completion buffer, links to the current buffer are now
-     highlighted.
-
-**** New templates =%h= and =%(sexp)= for abbreviated links
-
-     On top of =%s= template, which is replaced by the link tag in
-     abbreviated links, you can now use =%h= (which does the same than =%s=
-     but does not hexify the tag) and =%(sexp)= (which can run a function
-     that takes the tag as its own argument.)
-
-**** New link type =help=
-
-     You can now create links from =help= buffers.
-
-     For example, if you request help for the command [[doc::org-agenda][org-agenda]] with
-     =C-h f org-agenda RET=, creating a link from this buffer will let
-     you go back to the same buffer.
-
-**** New command [[doc::org-insert-all-links][org-insert-all-links]]
-
-     This will insert all links as list items.  With a universal
-     prefix argument, links will not be deleted from the variable
-     =org-stored-links=.
-
-     This new command is bound to =C-c C-M-l=.
-
-**** New option [[doc::org-url-hexify-p][org-url-hexify-p]]
-
-     When set to =nil=, the =URL= part of a link will not be hexified.
-
-**** Org can now open multiple shell links
-
-**** New option [[doc::org-doi-server-url][org-doi-server-url]] to specify an alternate DOI server
-
-**** RET now follows time stamps links
-
-*** Org Editing
-
-**** [[doc::org-todo][org-todo]] and =org-archive-*= can now loop in the active region
-
-     When [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is =non-nil=, using
-     [[doc::org-todo][org-todo]] or =org-archive-*= commands in the active region will
-     loop over headlines.  This is handy if you want to set the TODO
-     keyword for several items, or archive them quickly.
-
-**** You can now set tags for headlines in a region
-
-     If [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is =non-nil=, then
-     selecting the region and hitting =C-c C-q= will set the tags for
-     all headlines in the region.
-
-**** New command [[doc::org-insert-drawer][org-insert-drawer]] to insert a drawer interactively
-
-**** Comments start with "^[ \t]*# " anywhere on a line
-
-     Note that the space after the hashtag is mandatory.  Comments
-     with "^#+" are not supported anymore.
-
-**** New speed key =#= to toggle the COMMENT cookie on a headline
-
-**** =indent-region-function= is now set to [[doc::org-indent-region][org-indent-region]]
-
-     =C-M-\= should now produce useful results.
-
-     You can unindent the buffer with [[doc::org-unindent-buffer][org-unindent-buffer]].
-
-**** New option [[doc::org-allow-promoting-top-level-subtree][org-allow-promoting-top-level-subtree]]
-
-     When =non-nil=, =S-M-<left>= will promote level-1 subtrees
-     containing other subtrees.  The level-1 headline will be
-     commented out.  You can revert to the previous state with =M-x
-     undo RET=.
-
-*** Org Clock
-
-**** New keybinding =C-c C-x C-z= for [[doc::org-clock-resolve][org-clock-resolve]]
-
-**** New keybinding =C-c C-x C-q= for [[doc::org-clock-cancel][org-clock-cancel]]
-
-**** New command [[doc::org-clock-in-last][org-clock-in-last]] to clock in the last clocked item
-
-     This command is bound to =C-c C-x C-x= and will clock in the last
-     clocked entry, if any.
-
-**** =C-u M-x= [[doc::org-clock-out][org-clock-out]] =RET= now prompts for a state to switch to
-
-**** =S-M-<up/down>= on a clock timestamps adjusts the previous/next clock
-
-**** New option [[doc::org-clock-continuously][org-clock-continuously]]
-
-     When set to =nil=, clocking in a task will first try to find the
-     last clocked out task and restart from when that task was clocked
-     out.
-
-     You can temporarily activate continuous clocking with =C-u C-u
-     C-u M-x= [[doc::org-clock-in][org-clock-in]] =RET= (three universal prefix arguments)
-     and =C-u C-u M-x= [[org-clock-in-last][org-clock-in-last]] =RET= (two universal prefix
-     arguments).
-
-
-**** New option [[doc::org-clock-frame-title-format][org-clock-frame-title-format]]
-
-     This option sets the value of =frame-title-format= when clocking
-     in.
-
-**** New options for controlling the clockreport display
-
-     [[doc::org-clock-file-time-cell-format][org-clock-file-time-cell-format]]: Format string for the file time
-     cells in clockreport.
-
-     [[doc::org-clock-total-time-cell-format][org-clock-total-time-cell-format]]: Format string for the total
-     time cells in clockreport.
-
-
-**** New options for controlling the clock/timer display
-
-     [[doc::org-clock-clocked-in-display][org-clock-clocked-in-display]]: control whether the current clock
-     is displayed in the mode line and/or frame title.
-
-     [[doc::org-timer-display][org-timer-display]]: control whether the current timer is displayed
-     in the mode line and/or frame title.
-
-     This allows the clock and timer to be displayed in the frame
-     title instead of, or as well as, the mode line.  This is useful
-     for people with limited space in the mode line but with ample
-     space in the frame title.
-
-*** Org Appearance
-
-**** New option [[doc::org-custom-properties][org-custom-properties]]
-
-     The visibility of properties listed in this options can be turn
-     on/off with [[doc::org-toggle-custom-properties-visibility][org-toggle-custom-properties-visibility]].  This might
-     be useful for properties used by third-part tools or that you
-     don't want to see temporarily.
-
-**** New command [[doc::org-redisplay-inline-images][org-redisplay-inline-images]]
-
-     This will redisplay all images.  It is bound to =C-c C-x C-M-v=.
-
-**** New entities in =org-entities.el=
-
-     There are these new entities:
-
-     : ("tilde" "\\~{}" nil "&tilde;" "~" "~" "~")
-     : ("slash" "/" nil "/" "/" "/" "/")
-     : ("plus" "+" nil "+" "+" "+" "+")
-     : ("under" "\\_" nil "_" "_" "_" "_")
-     : ("equal" "=" nil "=" "=" "=" "=")
-     : ("asciicirc" "\\textasciicircum{}" nil "^" "^" "^" "^")
-
-**** New face =org-list-dt= for definition terms
-**** New face =org-date-selected= for the selected calendar day
-**** New face value for =org-document-title=
-
-     The face is back to a normal height.
-
-*** Org Columns
-
-**** New speed command =:= to activate the column view
-**** New special property =CLOCKSUM_T= to display today's clocked time
-
-     You can use =CLOCKSUM_T= the same way you use =CLOCKSUM=.  It
-     will display the time spent on tasks for today only.
-
-**** Use the =:COLUMNS:= property in columnview dynamic blocks
-
-     If the =:COLUMNS:= is set in a subtree, the columnview dynamic
-     block will use its value as the column format.
-
-**** Consider inline tasks when computing a sum
-
-*** Org Dates and Time Stamps
-
-**** Enhanced [[doc::org-sparse-tree][org-sparse-tree]]
-
-     =C-c /= can now check for time ranges.
-
-     When checking for dates with =C-c /= it is useful to change the
-     type of dates that you are interested in.  You can now do this
-     interactively with =c= after =C-c /= and/or by setting
-     [[doc::org-sparse-tree-default-date-type][org-sparse-tree-default-date-type]] to the default value you want.
-
-**** Support for hourly repeat cookies
-
-     You can now use
-
-     : SCHEDULED: <2012-08-20 lun. 08:00 +1h>
-
-     if you want to add an hourly repeater to an entry.
-
-**** =C-u C-u C-c .= inserts a time-stamp with no prompt
-
-**** When (setq [[doc::org-read-date-prefer-future][org-read-date-prefer-future]] 'time), accept days in the prompt
-
-     "8am Wed" and "Wed 8am" are now acceptable values when entering a
-     date from the prompt.  If [[doc::org-read-date-prefer-future][org-read-date-prefer-future]] is set to
-     =time=, this will produce the expected prompt indication.
-
-**** New option [[doc::org-datetree-add-timestamp][org-datetree-add-timestamp]]
-
-     When set to =non-nil=, datetree entries will also have a
-     timestamp.  This is useful if you want to see these entries in a
-     sparse tree with =C-c /=.
-
-*** Org Capture
-
-**** New command [[doc::org-capture-string][org-capture-string]]
-
-     M-x [[doc::org-capture-string][org-capture-string]] RET will prompt for a string and a capture
-     template.  The string will be used as an annotation for the
-     template.  This is useful when capturing in batch mode as it lets
-     you define the content of the template without being in Emacs.
-
-**** New option [[doc::org-capture-templates-contexts][org-capture-templates-contexts]]
-
-     Setting this option allows you to define specific context where
-     capture templates should be available from.  For example, when
-     set to this value
-
-     #+BEGIN_SRC emacs-lisp
-  (setq org-capture-templates-contexts
-        '(("c" (in-mode . "message-mode"))))
-#+END_SRC
-
-     then the =c= capture template will only be available from
-     =message-mode= buffers.  See the docstring and the manual for
-     more details on how to use this.
-
-**** New =%l= template to insert the literal link
-**** New option [[doc::org-capture-bookmark][org-capture-bookmark]]
-
-     Org used to automatically add a bookmark with capture a note.
-     You can now turn this on by setting [[doc::org-capture-bookmark][org-capture-bookmark]] to
-     =nil=.
-
-**** Expand =%<num>= escape sequences into text entered for <num>'th =%^{PROMPT}= escape
-
-     See the manual for more explanations.
-
-**** More control over empty lines
-
-     You can use =:empty-lines-before= and =:empty-lines-after= to
-     control the insertion of empty lines.  Check the manual for more
-     explanations.
-
-**** New hook [[doc::org-capture-prepare-finalize-hook][org-capture-prepare-finalize-hook]]
-
-     This new hook runs before the finalization process starts.
-
-*** Org Export
-
-**** New functions =orgtbl-to-table.el= and =orgtbl-to-unicode=
-
-     =orgtbl-to-table.el= convert the table to a =table.el= table, and
-     =orgtbl-to-unicode= will use =ascii-art-to-unicode.el= (when
-     available) to print beautiful tables.
-
-**** [[doc::org-table-export][org-table-export]] now a bit clever about the target format
-
-     When you specify a file name like =table.csv=, [[doc::org-table-export][org-table-export]]
-     will now suggest =orgtbl-to-csv= the default method for exporting
-     the table.
-
-**** New option [[doc::org-export-date-timestamp-format][org-export-date-timestamp-format]]
-
-     The option allows to set a time string format for Org timestamps
-     in the #+DATE option.
-
-**** LaTeX: New options for exporting table rules :tstart, :hline and :tend
-
-     See [[doc::org-export-latex-tables-hline][org-export-latex-tables-hline]] and [[doc::org-export-latex-tables-tend][org-export-latex-tables-tend]].
-
-**** LaTeX: You can now set =:hfmt= from =#+ATTR_LaTeX=
-**** Beamer: Add support and keybinding for the =exampleblock= environment
-
-     Add support for these languages in [[doc::org-export-language-setup][org-export-language-setup]].
-     More languages are always welcome.
-
-**** Beamer: New option [[doc::org-beamer-inherited-properties][org-beamer-inherited-properties]]
-
-     This option allows Beamer export to inherit some properties.
-     Thanks to Carsten for implementing this.
-
-**** ODT: Add support for ODT export in org-bbdb.el
-**** ODT: Add support for indented tables (see [[https://orgmode.org/cgit.cgi/org-mode.git/commit/?id=e9fd33][this commit]] for details)
-**** ODT: Improve the conversion from ODT to other formats
-**** ASCII: Swap the level-1/level-2 characters to underline the headlines
-**** Support for Chinese, simplified Chinese, Russian, Ukrainian and Japanese
-**** HTML: New option [[doc::org-export-html-date-format-string][org-export-html-date-format-string]]
-
-     Format string to format the date and time in HTML export.  Thanks
-     to Sébastien Vauban for this patch.
-
-*** Org Babel
-
-**** New =:results drawer= parameter
-
-=:results drawer= replaces =:results wrap=, which is deprecated but still
-supported.
-
-**** =:results org= now put results in a =#+BEGIN_SRC org= block
-
-=:results org= used to put results in a =#+BEGIN_ORG= block but it now puts
-results in a =#+BEGIN_SRC org= block, with comma-escaped lines.
-
-=#+BEGIN_ORG= blocks are obsolete.
-
-**** Exporting =#+BEGIN_SRC org= blocks exports the code
-
-It used to exports the results of the code.
-
-*** Miscellaneous
-
-**** New menu entry for [[doc::org-refile][org-refile]]
-**** Allow capturing to encrypted entries
-
-If you capture to an encrypted entry, it will be decrypted before
-inserting the template then re-encrypted after finalizing the capture.
-
-**** Inactive timestamps are now handled in tables
-
-Calc can do computation on active time-stamps like <2012-09-29 sat.>.
-Inactive time-stamps in a table's cell are now internally deactivated so
-that Calc formulas can operate on them.
-
-**** [[doc::org-table-number-regexp][org-table-number-regexp]] can now accept comma as decimal mark
-**** Org allows a new property =APPT_WARNTIME=
-
-     You can set it with the =W= speedy key or set it manually.  When
-     set, exporting to iCalendar and [[doc::org-agenda-to-appt][org-agenda-to-appt]] will use the
-     value of this property as the number of minutes for the warning
-     alarm.
-
-**** New command [[doc::org-inc-effort][org-inc-effort]]
-
-     This will increment the effort value.
-
-     It is bound to =C-c C-x E= and to =E= as a speedy command.
-
-**** Attach: Add support for creating symbolic links
-
-     =org-attach-method= now supports a new method =lns=, allowing to
-     attach symbolic links.
-
-**** Archive: you can now archive to a datetree
-
-**** New option [[doc::org-inlinetask-show-first-star][org-inlinetask-show-first-star]]
-
-     =Non-nil= means display the first star of an inline task as
-     additional marker.  When =nil=, the first star is not shown.
-
-**** New option [[doc::org-latex-preview-ltxpng-directory][org-latex-preview-ltxpng-directory]]
-
-     This lets you define the path for the =ltxpng/= directory.
-
-**** You can now use imagemagick instead of dvipng to preview LaTeX fragments
-**** You can now turn off [[doc::orgstruct++-mode][orgstruct++-mode]] safely
-**** =C-u C-c C-c= on list items to add check boxes
-
-     =C-u C-c C-c= will add an empty check box on a list item.
-
-     When hit from the top of the list, it will add check boxes for
-     all top level list items.
-
-**** =org-list-ending-method= and =org-list-end-regexp= are now obsolete
-
-     Fall back on using =org-list-end-re= only, which see.
-
-**** org-feed.el now expands =%(sexp)= templates
-**** New option [[doc::org-protocol-data-separator][org-protocol-data-separator]]
-
-**** New option [[doc::org-ditaa-jar-option][org-ditaa-jar-option]] to specify the ditaa jar file
-
-**** New possible value for [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]]
-
-     When [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is set to
-     =start-level=, the command will loop over the active region but
-     will only act upon entries that are of the same level than the
-     first headline in the region.
-
-**** New option [[doc::org-habit-show-all-today][org-habit-show-all-today]]
-
-     When set to =t=, show all (even unscheduled) habits on today's
-     agenda.
-
-** Important bug fixes
-
-*** M-TAB on options keywords perform completion correctly again
-
-    If you hit =M-TAB= on keywords like =#+TITLE=, Org will try to
-    perform completion with meaningful values.
-
-*** Add licenses to javascript embedded and external code snippets
-
-    Embedded javascript code produced when exporting an Org file to
-    HTML is now licensed under GPLv3 (or later), and the copyright is
-    owned by the Free Software Foundation, Inc.
-
-    The javascript code for embedding MathJax in the browser mentions
-    the MathJax copyright and the Apache 2.0 license.
-
-    The javascript code for embedding =org-injo.js= in the browser
-    mentions the copyright of Sebastian Rose and the GPLv3 (or later)
-    license.
-
-    =org-export-html-scripts= is now a variable, so that you can adapt
-    the code and the license to your needs.
-
-    See https://www.gnu.org/philosophy/javascript-trap.html for
-    explanations on why these changes were necessary.
-
-* Version 7.8.11
-
-** Incompatible changes
-
-*** Emacs 21 support has been dropped
-
-    Do not use Org mode 7.xx with Emacs 21, use [[https://orgmode.org/org-6.36c.zip][version 6.36c]] instead.
-
-*** XEmacs support requires the XEmacs development version
-
-    To use Org mode 7.xx with XEmacs, you need to run the developer
-    version of XEmacs.  We were about to drop XEmacs support entirely,
-    but Michael Sperber stepped in and made changes to XEmacs that
-    made it easier to keep the support.  Thanks to Michael for this
-    last-minute save.
-
-*** New keys for TODO sparse trees
-
-    The key =C-c C-v= is now reserved for Org Babel action.  TODO
-    sparse trees can still be made with =C-c / t= (all not-done
-    states) and =C-c / T= (specific states).
-
-*** The Agenda =org-agenda-ndays= is now obsolete
-
-    The variable =org-agenda-ndays= is obsolete - please use
-    =org-agenda-span= instead.
-
-    Thanks to Julien Danjou for this.
-
-*** Changes to the intended use of =org-export-latex-classes=
-
-    So far this variable has been used to specify the complete header
-    of the LaTeX document, including all the =\usepackage= calls
-    necessary for the document.  This setup makes it difficult to
-    maintain the list of packages that Org itself would like to call,
-    for example for the special symbol support it needs.
-
-    First of all, you can *opt out of this change* in the following
-    way: You can say: /I want to have full control over headers, and I
-    will take responsibility to include the packages Org needs/.  If
-    that is what you want, add this to your configuration and skip the
-    rest of this section (except maybe for the description of the
-    =[EXTRA]= place holder):
-
-    #+begin_src emacs-lisp
-   (setq org-export-latex-default-packages-alist nil
-         org-export-latex-packages-alist nil)
-    #+end_src
-
-    /Continue to read here if you want to go along with the modified
-    setup./
-
-    There are now two variables that should be used to list the LaTeX
-    packages that need to be included in all classes.  The header
-    definition in =org-export-latex-classes= should then not contain
-    the corresponding =\usepackage= calls (see below).
-
-    The two new variables are:
-
-    1. =org-export-latex-default-packages-alist= :: This is the
-         variable where Org-mode itself puts the packages it needs.
-         Normally you should not change this variable.  The only
-         reason to change it anyway is when one of these packages
-         causes a conflict with another package you want to use.  Then
-         you can remove that packages and hope that you are not using
-         Org-mode functionality that needs it.
-
-    2. =org-export-latex-packages-alist= :: This is the variable where
-         you can put the packages that you'd like to use across all
-         classes.
-
-    The sequence how these customizations will show up in the LaTeX
-    document are:
-
-    1. Header from =org-export-latex-classes=
-    2. =org-export-latex-default-packages-alist=
-    3. =org-export-latex-packages-alist=
-    4. Buffer-specific things set with =#+LaTeX_HEADER:=
-
-    If you want more control about which segment is placed where, or
-    if you want, for a specific class, have full control over the
-    header and exclude some of the automatic building blocks, you can
-    put the following macro-like place holders into the header:
-
-    #+begin_example
-    [DEFAULT-PACKAGES]      \usepackage statements for default packages
-    [NO-DEFAULT-PACKAGES]   do not include any of the default packages
-    [PACKAGES]              \usepackage statements for packages
-    [NO-PACKAGES]           do not include the packages
-    [EXTRA]                 the stuff from #+LaTeX_HEADER
-    [NO-EXTRA]              do not include #+LaTeX_HEADER stuff
-    #+end_example
-
-    If you have currently customized =org-export-latex-classes=, you
-    should revise that customization and remove any package calls that
-    are covered by =org-export-latex-default-packages-alist=.  This
-    applies to the following packages:
-
-    - inputenc
-    - fontenc
-    - fixltx2e
-    - graphicx
-    - longtable
-    - float
-    - wrapfig
-    - soul
-    - t1enc
-    - textcomp
-    - marvosym
-    - wasysym
-    - latexsym
-    - amssymb
-    - hyperref
-
-    If one of these packages creates a conflict with another package
-    you are using, you can remove it from
-    =org-export-latex-default-packages-alist=.  But then you risk that
-    some of the advertised export features of Org will not work
-    properly.
-
-    You can also consider moving packages that you use in all classes
-    to =org-export-latex-packages-alist=.  If necessary, put the place
-    holders so that the packages get loaded in the right sequence.  As
-    said above, for backward compatibility, if you omit the place
-    holders, all the variables will dump their content at the end of
-    the header.
-
-*** The constant =org-html-entities= is obsolete
-
-    Its content is now part of the new constant =org-entities=, which
-    is defined in the file org-entities.el.  =org-html-entities= was
-    an internal variable, but it is possible that some users did write
-    code using it.
-
-*** =org-bbdb-anniversary-format-alist= has changed
-
-    Please check the docstring and update your settings accordingly.
-
-*** Deleted =org-mode-p=
-
-    This function has been deleted: please update your code.
-
-** Important new features
-
-*** New Org to ODT exporter
-
-    Jambunathan's Org to ODT exporter is now part of Org.
-
-    To use it, it `C-c C-e o' in an Org file.  See the documentation
-    for more information on how to customize it.
-
-*** org-capture.el is now the default capture system
-
-    This replaces the earlier system org-remember.  The manual only
-    describes org-capture, but for people who prefer to continue to
-    use org-remember, we keep a static copy of the former manual
-    section [[https://orgmode.org/org-remember.pdf][chapter about remember]].
-
-    The new system has a technically cleaner implementation and more
-    possibilities for capturing different types of data.  See
-    [[http://thread.gmane.org/gmane.emacs.orgmode/26441/focus%3D26441][Carsten's announcement]] for more details.
-
-    To switch over to the new system:
-
-    1. Run
-
-     : M-x org-capture-import-remember-templates RET
-
-       to get a translated version of your remember templates into the
-       new variable =org-capture-templates=.  This will "mostly" work,
-       but maybe not for all cases.  At least it will give you a good
-       place to modify your templates.  After running this command,
-       enter the customize buffer for this variable with
-
-     : M-x customize-variable RET org-capture-templates RET
-
-       and convince yourself that everything is OK.  Then save the
-       customization.
-
-    2. Bind the command =org-capture= to a key, similar to what you did
-       with org-remember:
-
-     : (define-key global-map "\C-cc" 'org-capture)
-
-       If your fingers prefer =C-c r=, you can also use this key once
-       you have decided to move over completely to the new
-       implementation.  During a test time, there is nothing wrong
-       with using both system in parallel.
-
-** New libraries
-
-*** New Org libraries
-**** org-eshell.el (Konrad Hinsen)
-
-     Implement links to eshell buffers.
-
-**** org-special-blocks (Carsten Dominik)
-
-     This package generalizes the #+begin_foo and #+end_foo tokens.
-
-     To use, put the following in your init file:
-
-     #+BEGIN_EXAMPLE
-(require 'org-special-blocks)
-#+END_EXAMPLE
-
-     The tokens #+begin_center, #+begin_verse, etc. existed
-     previously.  This package generalizes them (at least for the
-     LaTeX and html exporters).  When a #+begin_foo token is
-     encountered by the LaTeX exporter, it is expanded
-     into \begin{foo}.  The text inside the environment is not
-     protected, as text inside environments generally is.
-     When #+begin_foo is encountered by the html exporter, a div with
-     class foo is inserted into the HTML file.  It is up to the user
-     to add this class to his or her stylesheet if this div is to mean
-     anything.
-
-**** org-taskjuggler.el (Christian Egli)
-
-     Christian Egli's /org-taskjuggler.el/ module is now part of Org.
-     He also wrote a [[https://orgmode.org/worg/org-tutorials/org-taskjuggler.php][tutorial]] for it.
-
-**** org-ctags.el (Paul Sexton)
-
-     Targets like =<<my target>>= can now be found by Emacs' etag
-     functionality, and Org-mode links can be used to to link to
-     etags, also in non-Org-mode files.  For details, see the file
-     /org-ctags.el/.
-
-     This feature uses a new hook =org-open-link-functions= which will
-     call function to do something special with text links.
-
-     Thanks to Paul Sexton for this contribution.
-
-**** org-docview.el (Jan Böcker)
-
-     This new module allows links to various file types using docview, where
-     Emacs displays images of document pages.  Docview link types can point
-     to a specific page in a document, for example to page 131 of the
-     Org-mode manual:
-
-     : [[docview:~/.elisp/org/doc/org.pdf::131][Org-Mode Manual]]
-
-     Thanks to Jan Böcker for this contribution.
-
-*** New Babel libraries
-
-- ob-picolisp.el (Thorsten Jolitz)
-- ob-fortran.el (Sergey Litvinov)
-- ob-shen.el (Eric Schulte)
-- ob-maxima.el (Eric S Fraga)
-- ob-java.el (Eric Schulte)
-- ob-lilypond.el (Martyn Jago)
-- ob-awk.el (Eric Schulte)
-
-** Other new features and various enhancements
-
-*** Hyperlinks
-
-**** Org-Bibtex -- major improvements
-
-     Provides support for managing bibtex bibliographical references
-     data in headline properties.  Each headline corresponds to a
-     single reference and the relevant bibliographic meta-data is
-     stored in headline properties, leaving the body of the headline
-     free to hold notes and comments.  Org-bibtex is aware of all
-     standard bibtex reference types and fields.
-
-     The key new functions are
-
-     - org-bibtex-check :: queries the user to flesh out all required
-          (and with prefix argument optional) bibtex fields available
-          for the specific reference =type= of the current headline.
-
-     - org-bibtex-create :: Create a new entry at the given level,
-          using org-bibtex-check to flesh out the relevant fields.
-
-     - org-bibtex-yank :: Yank a bibtex entry on the kill ring as a
-          formatted Org-mode headline into the current buffer
-
-     - org-bibtex-export-to-kill-ring :: Export the current headline
-          to the kill ring as a formatted bibtex entry.
-
-**** org-gnus.el now allows link creation from messages
-
-     You can now create links from messages.  This is particularly
-     useful when the user wants to stored messages that he sends, for
-     later check.  Thanks to Ulf Stegemann for the patch.
-
-**** Modified link escaping
-
-     David Maus worked on `org-link-escape'.  See [[http://article.gmane.org/gmane.emacs.orgmode/37888][his message]]:
-
-     : Percent escaping is used in Org mode to escape certain characters
-     : in links that would either break the parser (e.g. square brackets
-     : in link target oder description) or are not allowed to appear in
-     : a particular link type (e.g. non-ascii characters in a http:
-     : link).
-     :
-     : With this change in place Org will apply percent escaping and
-     : unescaping more consistently especially for non-ascii characters.
-     : Additionally some of the outstanding bugs or glitches concerning
-     : percent escaped links are solved.
-
-     Thanks a lot to David for this work.
-
-**** Make =org-store-link= point to directory in a dired buffer
-
-     When, in a dired buffer, the cursor is not in a line listing a
-     file, `org-store-link' will store a link to the directory.
-
-     Patch by Stephen Eglen.
-
-**** Allow regexps in =org-file-apps= to capture link parameters
-
-     The way extension regexps in =org-file-apps= are handled has
-     changed.  Instead of matching against the file name, the regexps
-     are now matched against the whole link, and you can use grouping
-     to extract link parameters which you can then use in a command
-     string to be executed.
-
-     For example, to allow linking to PDF files using the syntax
-     =file:/doc.pdf::<page number>=, you can add the following entry
-     to org-file-apps:
-
-     #+begin_example
-     Extension: \.pdf::\([0-9]+\)\'
-     Command:   evince "%s" -p %1
-     #+end_example
-
-     Thanks to Jan Böcker for a patch to this effect.
-
-*** Dates and time
-
-**** Allow relative time when scheduling/adding a deadline
-
-     You can now use relative duration strings like "-2d" or "++3w"
-     when calling =org-schedule= or =org-deadline=: it will schedule
-     (or set the deadline for) the item respectively two days before
-     today and three weeks after the current timestamp, if any.
-
-     You can use this programmatically: =(org-schedule nil "+2d")=
-     will work on the current entry.
-
-     You can also use this while (bulk-)rescheduling and
-     (bulk-)resetting the deadline of (several) items from the agenda.
-
-     Thanks to Memnon Anon for a heads up about this!
-
-**** American-style dates are now understood by =org-read-date=
-
-     So when you are prompted for a date, you can now answer like this
-
-     #+begin_example
-     2/5/3         --> 2003-02-05
-     2/5           --> <CURRENT-YEAR>-02-05
-     #+end_example
-
-*** Agenda
-
-**** =org-agenda-custom-commands= has a default value
-
-     This option used to be `nil' by default.  This now has a default
-     value, displaying an agenda and all TODOs.  See the docstring for
-     details.  Thanks to Carsten for this.
-
-**** Improved filtering through =org-agenda-to-appt=
-
-     The new function allows the user to refine the scope of entries
-     to pass to =org-agenda-get-day-entries= and allows to filter out
-     entries using a function.
-
-     Thanks to Peter Münster for raising a related issue and to
-     Tassilo Horn for this idea.  Also thanks to Peter Münster for
-     [[git:68ffb7a7][fixing a small bug]] in the final implementation.
-
-**** Allow ap/pm times in agenda time grid
-
-     Times in the agenda can now be displayed in am/pm format.  See
-     the new variable =org-agenda-timegrid-use-ampm=.  Thanks to
-     C. A. Webber for a patch to this effect.
-
-**** Agenda: Added a bulk "scattering" command
-
-     =B S= in the agenda buffer will cause tasks to be rescheduled a
-     random number of days into the future, with 7 as the default.
-     This is useful if you've got a ton of tasks scheduled for today,
-     you realize you'll never deal with them all, and you just want
-     them to be distributed across the next N days.  When called with
-     a prefix arg, rescheduling will avoid weekend days.
-
-     Thanks to John Wiegley for this.
-
-*** Exporting
-
-**** Simplification of org-export-html-preamble/postamble
-
-     When set to `t', export the preamble/postamble as usual, honoring
-     the =org-export-email/author/creator-info= variables.
-
-     When set to a formatting string, insert this string.  See the
-     docstring of these variable for details about available
-     %-sequences.
-
-     You can set =:html-preamble= in publishing project in the same
-     way: `t' means to honor =:email/creator/author-info=, and a
-     formatting string will insert a string.
-
-**** New exporters to Latin-1 and UTF-8
-
-     While Ulf Stegemann was going through the entities list to
-     improve the LaTeX export, he had the great idea to provide
-     representations for many of the entities in Latin-1, and for all
-     of them in UTF-8.  This means that we can now export files rich
-     in special symbols to Latin-1 and to UTF-8 files.  These new
-     exporters can be reached with the commands =C-c C-e n= and =C-c
-     C-e u=, respectively.
-
-     When there is no representation for a given symbol in the
-     targeted coding system, you can choose to keep the TeX-macro-like
-     representation, or to get an "explanatory" representation.  For
-     example, =\simeq= could be represented as "[approx. equal to]".
-     Please use the variable =org-entities-ascii-explanatory= to state
-     your preference.
-
-**** HTML export: Add class to outline containers using property
-
-     The =HTML_CONTAINER_CLASS= property can now be used to add a
-     class name to the outline container of a node in HTML export.
-
-**** Throw an error when creating an image from a LaTeX snippet fails
-
-     This behavior can be configured with the new option variable
-     =org-format-latex-signal-error=.
-
-**** Support for creating BEAMER presentations from Org-mode documents
-
-     Org-mode documents or subtrees can now be converted directly in
-     to BEAMER presentation.  Turning a tree into a simple
-     presentations is straight forward, and there is also quite some
-     support to make richer presentations as well.  See the [[https://orgmode.org/manual/Beamer-class-export.html#Beamer-class-export][BEAMER
-     section]] in the manual for more details.
-
-     Thanks to everyone who has contributed to the discussion about
-     BEAMER support and how it should work.  This was a great example
-     for how this community can achieve a much better result than any
-     individual could.
-
-*** Refiling
-
-**** Refile targets can now be cached
-
-     You can turn on caching of refile targets by setting the variable
-     =org-refile-use-cache=.  This should speed up refiling if you
-     have many eligible targets in many files.  If you need to update
-     the cache because Org misses a newly created entry or still
-     offers a deleted one, press =C-0 C-c C-w=.
-
-**** New logging support for refiling
-
-     Whenever you refile an item, a time stamp and even a note can be
-     added to this entry.  For details, see the new option
-     =org-log-refile=.
-
-     Thanks to Charles Cave for this idea.
-
-*** Completion
-
-**** In-buffer completion is now done using John Wiegley's pcomplete.el
-
-     Thanks to John Wiegley for much of this code.
-
-*** Tables
-
-**** New command =org-table-transpose-table-at-point=
-
-     See the docstring.  This hack from Juan Pechiar is now part of
-     Org's core.  Thanks to Juan!
-
-**** Display field's coordinates when editing it with =C-c `=
-
-     When editing a field with =C-c `=, the field's coordinate will
-     the displayed in the buffer.
-
-     Thanks to Michael Brand for a patch to this effect.
-
-**** Spreadsheet computation of durations and time values
-
-     If you want to compute time values use the =T= flag, either in
-     Calc formulas or Elisp formulas:
-
-     | Task 1 | Task 2 |   Total |
-     |--------+--------+---------|
-     |  35:00 |  35:00 | 1:10:00 |
-     #+TBLFM: @2$3=$1+$2;T
-
-     Values must be of the form =[HH:]MM:SS=, where hours are
-     optional.
-
-     Thanks to Martin Halder, Eric Schulte and Carsten for code and
-     feedback on this.
-
-**** Implement formulas applying to field ranges
-
-     Carsten implemented this field-ranges formulas.
-
-     : A frequently requested feature for tables has been to be able to define
-     : row formulas in a way similar to column formulas.  The patch below allows
-     : things like
-     :
-     : @3=
-     : @2$2..@5$7=
-     : @I$2..@II$4=
-     :
-     : as the left hand side for table formulas in order to write a formula that
-     : is valid for an entire column or for a rectangular section in a
-     : table.
-
-     Thanks a lot to Carsten for this.
-
-**** Sending radio tables from org buffers is now allowed
-
-     Org radio tables can no also be sent inside Org buffers.  Also,
-     there is a new hook which get called after a table has been sent.
-
-     Thanks to Seweryn Kokot.
-
-*** Lists
-
-**** Improved handling of lists
-
-     Nicolas Goaziou extended and improved the way Org handles lists.
-
-     1. Indentation of text determines again end of items in
-        lists. So, some text less indented than the previous item
-        doesn't close the whole list anymore, only all items more
-        indented than it.
-
-     2. Alphabetical bullets are implemented, through the use of the
-        variable `org-alphabetical-lists'. This also adds alphabetical
-        counters like [@c] or [@W].
-
-     3. Lists can now safely contain drawers, inline tasks, or various
-        blocks, themselves containing lists. Two variables are
-        controlling this: `org-list-forbidden-blocks', and
-        `org-list-export-context'.
-
-     4. Improve `newline-and-indent' (C-j): used in an item, it will
-        keep text from moving at column 0. This allows to split text
-        and make paragraphs and still not break the list.
-
-     5. Improve `org-toggle-item' (C-c -): used on a region with
-        standard text, it will change the region into one item. With a
-        prefix argument, it will fallback to the previous behavior and
-        make every line in region an item. It permits to easily
-        integrate paragraphs inside a list.
-
-     6. `fill-paragraph' (M-q) now understands lists. It can freely be
-        used inside items, or on text just after a list, even with no
-        blank line around, without breaking list structure.
-
-     Thanks a lot to Nicolas for all this!
-
-*** Inline display of linked images
-
-    Images can now be displayed inline.  The key C-c C-x C-v does
-    toggle the display of such images.  Note that only image links
-    that have no description part will be inlined.
-
-*** Implement offsets for ordered lists
-
-    If you want to start an ordered plain list with a number different
-    from 1, you can now do it like this:
-
-    : 1. [@start:12] will star a lit a number 12
-
-*** Babel: code block body expansion for table and preview
-
-    In org-babel, code is "expanded" prior to evaluation. I.e. the
-    code that is actually evaluated comprises the code block contents,
-    augmented with the extra code which assigns the referenced data to
-    variables. It is now possible to preview expanded contents, and
-    also to expand code during during tangling. This expansion takes
-    into account all header arguments, and variables.
-
-    A new keybinding `C-c M-b p' bound to `org-babel-expand-src-block'
-    can be used from inside of a source code block to preview its
-    expanded contents (which can be very useful for debugging).
-    tangling
-
-    The expanded body can now be tangled, this includes variable
-    values which may be the results of other source-code blocks, or
-    stored in headline properties or tables. One possible use for this
-    is to allow those using org-babel for their emacs initialization
-    to store values (e.g. usernames, passwords, etc...) in headline
-    properties or in tables.
-
-    Org-babel now supports three new header arguments, and new default
-    behavior for handling horizontal lines in tables (hlines), column
-    names, and rownames across all languages.
-
-*** Editing Convenience and Appearance
-
-**** New command =org-copy-visible= (=C-c C-x v=)
-
-     This command will copy the visible text in the region into the
-     kill ring.  Thanks to Florian Beck for this function and to
-     Carsten for adding it to org.el and documenting it!
-
-**** Make it possible to protect hidden subtrees from being killed by =C-k=
-
-     See the new variable =org-ctrl-k-protect-subtree=.  This was a
-     request by Scott Otterson.
-
-**** Implement pretty display of entities, sub-, and superscripts.
-
-     The command =C-c C-x \= toggles the display of Org's special
-     entities like =\alpha= as pretty unicode characters.  Also, sub
-     and superscripts are displayed in a pretty way (raised/lower
-     display, in a smaller font).  If you want to exclude sub- and
-     superscripts, see the variable
-     =org-pretty-entities-include-sub-superscripts=.
-
-     Thanks to Eric Schulte and Ulf Stegeman for making this possible.
-
-**** New faces for title, date, author and email address lines
-
-     The keywords in these lines are now dimmed out, and the title is
-     displayed in a larger font, and a special font is also used for
-     author, date, and email information.  This is implemented by the
-     following new faces:
-
-     =org-document-title=
-     =org-document-info=
-     =org-document-info-keyword=
-
-     In addition, the variable =org-hidden-keywords= can be used to
-     make the corresponding keywords disappear.
-
-     Thanks to Dan Davison for this feature.
-
-**** Simpler way to specify faces for tags and todo keywords
-
-     The variables =org-todo-keyword-faces=, =org-tag-faces=, and
-     =org-priority-faces= now accept simple color names as
-     specifications.  The colors will be used as either foreground or
-     background color for the corresponding keyword.  See also the
-     variable =org-faces-easy-properties=, which governs which face
-     property is affected by this setting.
-
-     This is really a great simplification for setting keyword faces.
-     The change is based on an idea and patch by Ryan Thompson.
-
-**** <N> in tables now means fixed width, not maximum width
-
-     Requested by Michael Brand.
-
-**** Better level cycling function
-
-     =TAB= in an empty headline cycles the level of that headline
-     through likely states.  Ryan Thompson implemented an improved
-     version of this function, which does not depend upon when exactly
-     this command is used.  Thanks to Ryan for this improvement.
-
-**** Adaptive filling
-
-     For paragraph text, =org-adaptive-fill-function= did not handle
-     the base case of regular text which needed to be filled.  This is
-     now fixed.  Among other things, it allows email-style ">"
-     comments to be filled correctly.
-
-     Thanks to Dan Hackney for this patch.
-
-**** `org-reveal' (=C-c C-r=) also decrypts encrypted entries (org-crypt.el)
-
-     Thanks to Richard Riley for triggering this change.
-
-**** Better automatic letter selection for TODO keywords
-
-     When all first letters of keywords have been used, Org now
-     assigns more meaningful characters based on the keywords.
-
-     Thanks to Mikael Fornius for this patch.
-
-*** Clocking
-
-**** Clock: Allow synchronous update of timestamps in CLOCK log
-
-     Using =S-M-<up/down>= on CLOCK log timestamps will
-     increase/decrease the two timestamps on this line so that
-     duration will keep the same.  Note that duration can still be
-     slightly modified in case a timestamp needs some rounding.
-
-     Thanks to Rainer Stengele for this idea.
-
-**** Localized clock tables
-
-     Clock tables now support a new new =:lang= parameter, allowing
-     the user to customize the localization of the table headers.  See
-     the variable =org-clock-clocktable-language-setup= which controls
-     available translated strings.
-
-**** Show clock overruns in mode line
-
-     When clocking an item with a planned effort, overrunning the
-     planned time is now made visible in the mode line, for example
-     using the new face =org-mode-line-clock-overrun=, or by adding an
-     extra string given by =org-task-overrun-text=.
-
-     Thanks to Richard Riley for a patch to this effect.
-
-**** Clock reports can now include the running, incomplete clock
-
-     If you have a clock running, and the entry being clocked falls
-     into the scope when creating a clock table, the time so far spent
-     can be added to the total.  This behavior depends on the setting
-     of =org-clock-report-include-clocking-task=.  The default is
-     =nil=.
-
-     Thanks to Bernt Hansen for this useful addition.
-
-*** Misc
-
-**** Improvements with inline tasks and indentation
-
-     There is now a configurable way on how to export inline tasks.
-     See the new variable =org-inlinetask-export-templates=.
-
-     Thanks to Nicolas Goaziou for coding these changes.
-
-**** A property value of "nil" now means to unset a property
-
-     This can be useful in particular with property inheritance, if
-     some upper level has the property, and some grandchild of it
-     would like to have the default settings (i.e. not overruled by a
-     property) back.
-
-     Thanks to Robert Goldman and Bernt Hansen for suggesting this
-     change.
-
-**** New helper functions in org-table.el
-
-     There are new functions to access and write to a specific table field.
-     This is for hackers, and maybe for the org-babel people.
-
-     #+begin_example
-     org-table-get
-     org-table-put
-     org-table-current-line
-     org-table-goto-line
-     #+end_example
-
-**** Archiving: Allow to reverse order in target node
-
-     The new option =org-archive-reversed-order= allows to have
-     archived entries inserted in a last-on-top fashion in the target
-     node.
-
-     This was requested by Tom.
-
-**** Org-reveal: Double prefix arg shows the entire subtree of the parent
-
-     This can help to get out of an inconsistent state produced for
-     example by viewing from the agenda.
-
-     This was a request by Matt Lundin.
-
-* License
-
-  This file is part of GNU Emacs.
-
-  GNU Emacs is free software: you can redistribute it and/or modify
-  it under the terms of the GNU General Public License as published by
-  the Free Software Foundation, either version 3 of the License, or
-  (at your option) any later version.
-
-  GNU Emacs is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-
-  You should have received a copy of the GNU General Public License
-  along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
diff --git a/elpa/org-9.1.14/etc/styles/OrgOdtContentTemplate.xml b/elpa/org-9.1.14/etc/styles/OrgOdtContentTemplate.xml
deleted file mode 100644
index d0c98a3..0000000
--- a/elpa/org-9.1.14/etc/styles/OrgOdtContentTemplate.xml
+++ /dev/null
@@ -1,275 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- See etc/org/README for copyright information -->
-<office:document-content
-    xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
-    xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
-    xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
-    xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
-    xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
-    xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
-    xmlns:xlink="http://www.w3.org/1999/xlink"
-    xmlns:dc="http://purl.org/dc/elements/1.1/"
-    xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
-    xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
-    xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
-    xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
-    xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
-    xmlns:math="http://www.w3.org/1998/Math/MathML"
-    xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
-    xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
-    xmlns:ooo="http://openoffice.org/2004/office"
-    xmlns:ooow="http://openoffice.org/2004/writer"
-    xmlns:oooc="http://openoffice.org/2004/calc"
-    xmlns:dom="http://www.w3.org/2001/xml-events"
-    xmlns:xforms="http://www.w3.org/2002/xforms"
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:rpt="http://openoffice.org/2005/report"
-    xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
-    xmlns:xodt="http://www.w3.org/1999/xodt"
-    xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"    office:version="1.2">
-  <!-- scripts -->
-  <office:scripts/>
-
-  <!-- font face declarations -->
-  <office:font-face-decls>
-    <style:font-face style:name="Tahoma1" svg:font-family="Tahoma"/>
-    <style:font-face style:name="courier" svg:font-family="courier, monospace"/>
-    <style:font-face style:name="Arial Unicode MS" svg:font-family="&apos;Arial Unicode MS&apos;" style:font-pitch="variable"/>
-    <style:font-face style:name="HG Mincho Light J" svg:font-family="&apos;HG Mincho Light J&apos;" style:font-pitch="variable"/>
-    <style:font-face style:name="Thorndale" svg:font-family="Thorndale" style:font-family-generic="roman" style:font-pitch="variable"/>
-    <style:font-face style:name="Times New Roman" svg:font-family="&apos;Times New Roman&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
-    <style:font-face style:name="Albany" svg:font-family="Albany" style:font-family-generic="swiss" style:font-pitch="variable"/>
-    <style:font-face style:name="SimSun" svg:font-family="SimSun" style:font-family-generic="system" style:font-pitch="variable"/>
-    <style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/>
-  </office:font-face-decls>
-
-  <!-- automatic styles -->
-  <office:automatic-styles>
-
-    <!-- Section styles -->
-
-    <!-- Section styles for Table Of Contents and Other Indices -->
-    <style:style style:name="OrgIndexSection" style:family="section">
-      <style:section-properties fo:background-color="#c0c0c0" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-	<style:background-image/>
-      </style:section-properties>
-    </style:style>
-
-    <!-- Indented sections, used as container for tables that occur
-         within list items -->
-    <style:style style:name="OrgIndentedSection-Level-1" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="1.281cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-2" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="1.905cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-3" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="2.54cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-4" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="3.175cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-5" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="3.81cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-6" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="4.445cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-7" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="5.08cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-8" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="5.715cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-9" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="6.35cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-    <style:style style:name="OrgIndentedSection-Level-10" style:family="section">
-      <style:section-properties text:dont-balance-text-columns="false" fo:margin-left="6.985cm" fo:margin-right="0cm" style:editable="false">
-	<style:columns fo:column-count="1" fo:column-gap="0cm"/>
-      </style:section-properties>
-    </style:style>
-
-    <!-- Table styles -->
-    <style:style style:name="OrgTable" style:family="table">
-      <style:table-properties style:rel-width="96%" fo:margin-top="0cm" fo:margin-bottom="0.20cm" table:align="center"/>
-    </style:style>
-
-    <style:style style:name="OrgTableColumn" style:family="table-column">
-      <style:table-column-properties style:rel-column-width="1*"/>
-    </style:style>
-
-    <style:style style:name="OrgTblCell" style:family="table-cell">
-      <style:table-cell-properties style:vertical-align="top" fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="none" fo:border-left="none" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgTblCellL" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="none" fo:border-left="0.002cm solid #000000" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgTblCellR" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="none" fo:border-left="none" fo:border-right="0.002cm solid #000000"/>
-    </style:style>
-    <style:style style:name="OrgTblCellLR" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="none" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000"/>
-    </style:style>
-    <style:style style:name="OrgTblCellT" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="0.002cm solid #000000" fo:border-bottom="none" fo:border-left="none" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgTblCellTL" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="0.002cm solid #000000" fo:border-bottom="none" fo:border-left="0.002cm solid #000000" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgTblCellTR" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="0.002cm solid #000000" fo:border-bottom="none" fo:border-left="none" fo:border-right="0.002cm solid #000000"/>
-    </style:style>
-    <style:style style:name="OrgTblCellTLR" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="0.002cm solid #000000" fo:border-bottom="none" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000"/>
-    </style:style>
-    <style:style style:name="OrgTblCellB" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="0.002cm solid #000000" fo:border-left="none" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgTblCellBL" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="0.002cm solid #000000" fo:border-left="0.002cm solid #000000" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgTblCellBR" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="0.002cm solid #000000" fo:border-left="none" fo:border-right="0.002cm solid #000000"/>
-    </style:style>
-    <style:style style:name="OrgTblCellBLR" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="0.002cm solid #000000" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000"/>
-    </style:style>
-    <style:style style:name="OrgTblCellTB" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000" fo:border-left="none" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgTblCellTBL" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000" fo:border-left="0.002cm solid #000000" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgTblCellTBR" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000" fo:border-left="none" fo:border-right="0.002cm solid #000000"/>
-    </style:style>
-    <style:style style:name="OrgTblCellTBLR" style:family="table-cell" style:parent-style-name="OrgTblCell">
-      <style:table-cell-properties fo:padding="0.159cm" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000"/>
-    </style:style>
-
-    <!-- BEGIN: Table styles for numbered equations -->
-    <style:style style:name="OrgEquation" style:family="table">
-      <style:table-properties style:rel-width="100%" fo:margin-top="0cm" fo:margin-bottom="0.20cm" table:align="center"/>
-    </style:style>
-    <style:style style:name="OrgEquationTableColumn" style:family="table-column">
-      <style:table-column-properties style:rel-column-width="1*"/>
-    </style:style>
-    <style:style style:name="OrgFirstEquationFirstColumnTableCell" style:family="table-cell">
-      <style:table-cell-properties style:vertical-align="middle" fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="none" fo:border-left="none" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgEquationLastColumnTableCell" style:family="table-cell">
-      <style:table-cell-properties style:vertical-align="middle" fo:padding="0.159cm" fo:border-top="none" fo:border-bottom="none" fo:border-left="none" fo:border-right="none"/>
-    </style:style>
-    <style:style style:name="OrgEquationFirstColumnTableParagraph" style:family="paragraph" style:parent-style-name="Table_20_Contents">
-      <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-    </style:style>
-    <style:style style:name="OrgEquationLastColumnTableParagraph" style:family="paragraph" style:parent-style-name="Table_20_Contents">
-      <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
-    </style:style>
-    <!-- END: Table styles for numbered equations -->
-
-    <!-- BEGIN: Custom Table Template -->
-    <style:style style:name="Custom" style:family="table">
-      <style:table-properties style:rel-width="80%" table:align="center"/>
-    </style:style>
-
-    <style:style style:name="CustomColumn" style:family="table-column">
-      <style:table-column-properties style:rel-column-width="1*"/>
-    </style:style>
-
-    <!-- Table Paragraph Styles -->
-    <style:style style:name="CustomTableParagraph" style:family="paragraph" style:parent-style-name="Table_20_Contents">
-      <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
-      <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:font-name="Times New Roman" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-overline-style="none" style:text-overline-color="font-color"/>
-    </style:style>
-
-    <style:style style:name="CustomLastRowTableParagraph" style:family="paragraph" style:parent-style-name="Table_20_Contents">
-      <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
-      <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:font-name="Times New Roman" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-overline-style="none" style:text-overline-color="font-color"/>
-    </style:style>
-
-    <style:style style:name="CustomLastColumnTableParagraph" style:family="paragraph" style:parent-style-name="Table_20_Contents">
-      <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
-      <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:font-name="Times New Roman" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-overline-style="none" style:text-overline-color="font-color"/>
-    </style:style>
-
-    <style:style style:name="CustomFirstRowTableParagraph" style:family="paragraph" style:parent-style-name="Table_20_Contents">
-      <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
-      <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:font-name="Times New Roman" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-overline-style="none" style:text-overline-color="font-color"/>
-    </style:style>
-
-    <style:style style:name="CustomFirstColumnTableParagraph" style:family="paragraph" style:parent-style-name="Table_20_Contents">
-      <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
-      <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:font-name="Times New Roman" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-overline-style="none" style:text-overline-color="font-color"/>
-    </style:style>
-
-    <!-- Table Cell Styles -->
-    <style:style style:name="CustomTableCell" style:family="table-cell">
-      <style:table-cell-properties style:vertical-align="top" fo:background-color="#ffffff" fo:padding="0.097cm" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000">
-	<style:background-image/>
-      </style:table-cell-properties>
-    </style:style>
-
-    <style:style style:name="CustomFirstRowTableCell" style:family="table-cell">
-      <style:table-cell-properties style:vertical-align="top" fo:background-color="#000080" fo:padding="0.097cm" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000">
-	<style:background-image/>
-      </style:table-cell-properties>
-    </style:style>
-
-    <style:style style:name="CustomLastRowTableCell" style:family="table-cell">
-      <style:table-cell-properties style:vertical-align="top" fo:background-color="#cccccc" fo:padding="0.097cm" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000">
-	<style:background-image/>
-      </style:table-cell-properties>
-    </style:style>
-
-    <style:style style:name="CustomFirstColumnTableCell" style:family="table-cell">
-      <style:table-cell-properties style:vertical-align="top" fo:background-color="#4d4d4d" fo:padding="0.097cm" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000">
-	<style:background-image/>
-      </style:table-cell-properties>
-    </style:style>
-
-    <style:style style:name="CustomLastColumnTableCell" style:family="table-cell">
-      <style:table-cell-properties style:vertical-align="top" fo:background-color="#cccccc" fo:padding="0.097cm" fo:border-left="0.002cm solid #000000" fo:border-right="0.002cm solid #000000" fo:border-top="0.002cm solid #000000" fo:border-bottom="0.002cm solid #000000">
-	<style:background-image/>
-      </style:table-cell-properties>
-    </style:style>
-
-    <!-- END: Custom Table Template -->
-
-  </office:automatic-styles>
-
-  <office:body>
-    <office:text>
-      <text:sequence-decls>
-	<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
-	<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
-	<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
-	<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
-	<text:sequence-decl text:display-outline-level="0" text:name="Equation"/>
-	<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
-	<text:sequence-decl text:display-outline-level="0" text:name="Listing"/>
-      </text:sequence-decls>
-    </office:text>
-  </office:body>
-</office:document-content>
diff --git a/elpa/org-9.1.14/etc/styles/OrgOdtStyles.xml b/elpa/org-9.1.14/etc/styles/OrgOdtStyles.xml
deleted file mode 100644
index 1a8edee..0000000
--- a/elpa/org-9.1.14/etc/styles/OrgOdtStyles.xml
+++ /dev/null
@@ -1,861 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- See etc/org/README for copyright information -->
-<office:document-styles xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" office:version="1.2">
- <office:font-face-decls>
-  <style:font-face style:name="OpenSymbol" svg:font-family="OpenSymbol"/>
-  <style:font-face style:name="Tahoma1" svg:font-family="Tahoma"/>
-  <style:font-face style:name="Courier New" svg:font-family="&apos;Courier New&apos;" style:font-family-generic="modern" style:font-pitch="fixed"/>
-  <style:font-face style:name="NSimSun" svg:font-family="NSimSun" style:font-family-generic="modern" style:font-pitch="fixed"/>
-  <style:font-face style:name="Times New Roman" svg:font-family="&apos;Times New Roman&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
-  <style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
-  <style:font-face style:name="SimSun" svg:font-family="SimSun" style:font-family-generic="system" style:font-pitch="variable"/>
-  <style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/>
- </office:font-face-decls>
- <office:styles>
-  <style:default-style style:family="graphic">
-   <style:graphic-properties draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:flow-with-text="false"/>
-   <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
-    <style:tab-stops/>
-   </style:paragraph-properties>
-   <style:text-properties style:use-window-font-color="true" fo:font-size="12pt" fo:language="en" fo:country="GB" style:letter-kerning="true" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
-  </style:default-style>
-  <style:default-style style:family="paragraph">
-   <style:paragraph-properties fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
-   <style:text-properties style:use-window-font-color="true" style:font-name="Times New Roman" fo:font-size="12pt" fo:language="en" fo:country="GB" style:letter-kerning="true" style:font-name-asian="SimSun" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Tahoma" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2"/>
-  </style:default-style>
-  <style:default-style style:family="table">
-   <style:table-properties table:border-model="collapsing"/>
-  </style:default-style>
-  <style:default-style style:family="table-row">
-   <style:table-row-properties fo:keep-together="auto"/>
-  </style:default-style>
-
-  <!-- Outline numbering -->
-  <text:outline-style style:name="OrgOutline">
-   <text:outline-level-style text:level="1" style:num-suffix=". " style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-0.762cm" fo:margin-left="0.762cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="2" style:num-suffix=". " style:num-format="1" text:display-levels="2">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-1.016cm" fo:margin-left="1.016cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="3" style:num-suffix=". " style:num-format="1" text:display-levels="3">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-1.27cm" fo:margin-left="1.27cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="4" style:num-suffix=". " style:num-format="1" text:display-levels="4">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-1.524cm" fo:margin-left="1.524cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="5" style:num-suffix=". " style:num-format="1" text:display-levels="5">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-1.778cm" fo:margin-left="1.778cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="6" style:num-suffix=". " style:num-format="1" text:display-levels="6">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-2.032cm" fo:margin-left="2.032cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="7" style:num-suffix=". " style:num-format="1" text:display-levels="7">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-2.286cm" fo:margin-left="2.286cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="8" style:num-suffix=". " style:num-format="1" text:display-levels="8">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-2.54cm" fo:margin-left="2.54cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="9" style:num-suffix=". " style:num-format="1" text:display-levels="9">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-2.794cm" fo:margin-left="2.794cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-   <text:outline-level-style text:level="10" style:num-suffix=". " style:num-format="1" text:display-levels="10">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="nothing" fo:text-indent="-3.048cm" fo:margin-left="3.048cm"/>
-    </style:list-level-properties>
-   </text:outline-level-style>
-  </text:outline-style>
-
-  <style:style style:name="Standard" style:family="paragraph" style:class="text"/>
-  <style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
-   <style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" fo:keep-with-next="always">
-     <style:tab-stops>
-       <style:tab-stop style:position="17cm" style:type="right"/>
-     </style:tab-stops>
-   </style:paragraph-properties>
-   <style:text-properties style:font-name="Arial" fo:font-size="14pt" style:font-name-asian="SimSun" style:font-size-asian="14pt" style:font-name-complex="Tahoma" style:font-size-complex="14pt"/>
-  </style:style>
-  <style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
-   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.212cm"/>
-  </style:style>
-  <style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
-   <style:text-properties style:font-name-complex="Tahoma1"/>
-  </style:style>
-  <style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
-   <style:paragraph-properties fo:margin-top="0.212cm" fo:margin-bottom="0.212cm" text:number-lines="false" text:line-number="0"/>
-   <style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-name-complex="Tahoma1" style:font-size-complex="12pt" style:font-style-complex="italic"/>
-  </style:style>
-  <style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index">
-   <style:paragraph-properties text:number-lines="false" text:line-number="0"/>
-   <style:text-properties style:font-name-complex="Tahoma1"/>
-  </style:style>
-  <style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="1" style:class="text">
-   <style:text-properties fo:font-size="115%" fo:font-weight="bold" style:font-size-asian="115%" style:font-weight-asian="bold" style:font-size-complex="115%" style:font-weight-complex="bold"/>
-  </style:style>
-   <style:style style:name="Heading_20_1_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_1" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="2" style:class="text">
-   <style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold" style:font-size-asian="14pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-style-complex="italic" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_2_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_2" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="3" style:class="text">
-   <style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_3_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_3" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_4" style:display-name="Heading 4" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="4" style:class="text">
-   <style:text-properties fo:font-size="85%" fo:font-style="italic" fo:font-weight="bold" style:font-size-asian="85%" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-size-complex="85%" style:font-style-complex="italic" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_4_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_4" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_5" style:display-name="Heading 5" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="5" style:class="text">
-   <style:text-properties fo:font-size="85%" fo:font-weight="bold" style:font-size-asian="85%" style:font-weight-asian="bold" style:font-size-complex="85%" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_5_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_5" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_6" style:display-name="Heading 6" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="6" style:class="text">
-   <style:text-properties fo:font-size="75%" fo:font-weight="bold" style:font-size-asian="75%" style:font-weight-asian="bold" style:font-size-complex="75%" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_6_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_6" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_7" style:display-name="Heading 7" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="7" style:class="text">
-   <style:text-properties fo:font-size="75%" fo:font-weight="bold" style:font-size-asian="75%" style:font-weight-asian="bold" style:font-size-complex="75%" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_7_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_7" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_8" style:display-name="Heading 8" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="8" style:class="text">
-   <style:text-properties fo:font-size="75%" fo:font-weight="bold" style:font-size-asian="75%" style:font-weight-asian="bold" style:font-size-complex="75%" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_8_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_8" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_9" style:display-name="Heading 9" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="9" style:class="text">
-   <style:text-properties fo:font-size="75%" fo:font-weight="bold" style:font-size-asian="75%" style:font-weight-asian="bold" style:font-size-complex="75%" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_9_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_9" style:list-style-name="">
-    </style:style>
-  <style:style style:name="Heading_20_10" style:display-name="Heading 10" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:default-outline-level="10" style:class="text">
-   <style:text-properties fo:font-size="75%" fo:font-weight="bold" style:font-size-asian="75%" style:font-weight-asian="bold" style:font-size-complex="75%" style:font-weight-complex="bold"/>
-  </style:style>
-    <style:style style:name="Heading_20_10_unnumbered" style:family="paragraph" style:parent-style-name="Heading_20_10" style:list-style-name="">
-  </style:style>
-  <style:style style:name="Heading_20_1.title" style:display-name="Heading 1.title" style:family="paragraph" style:parent-style-name="Heading_20_1">
-   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="Title" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Subtitle" style:class="chapter">
-   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-   <style:text-properties fo:font-size="18pt" fo:font-weight="bold" style:font-size-asian="18pt" style:font-weight-asian="bold" style:font-size-complex="18pt" style:font-weight-complex="bold"/>
-  </style:style>
-  <style:style style:name="OrgTitle" style:family="paragraph" style:parent-style-name="Title">
-   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm"/>
-   <style:text-properties fo:font-size="24pt"/>
-  </style:style>
-  <style:style style:name="Subtitle" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
-   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-   <style:text-properties fo:font-size="14pt" fo:font-style="italic" style:font-size-asian="14pt" style:font-style-asian="italic" style:font-size-complex="14pt" style:font-style-complex="italic"/>
-  </style:style>
-  <style:style style:name="OrgSubtitle" style:family="paragraph" style:parent-style-name="Subtitle">
-   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm"/>
-   <style:text-properties fo:font-size="20pt"/>
-  </style:style>
-  <style:style style:name="Text_20_body_20_indent" style:display-name="Text body indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text">
-   <style:paragraph-properties fo:margin-left="0.499cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
-  </style:style>
-  <style:style style:name="List_20_Indent" style:display-name="List Indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text">
-   <style:paragraph-properties fo:margin-left="5.001cm" fo:margin-right="0cm" fo:text-indent="-4.5cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="0cm"/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="First_20_line_20_indent" style:display-name="First line indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text">
-   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0.499cm" style:auto-text-indent="false"/>
-  </style:style>
-  <style:style style:name="Hanging_20_indent" style:display-name="Hanging indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text">
-   <style:paragraph-properties fo:margin-left="1cm" fo:margin-right="0cm" fo:text-indent="-0.499cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="0cm"/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Salutation" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
-   <style:paragraph-properties text:number-lines="false" text:line-number="0"/>
-  </style:style>
-  <style:style style:name="Contents_20_Heading" style:display-name="Contents Heading" style:family="paragraph" style:parent-style-name="Heading" style:class="index">
-   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false" text:number-lines="false" text:line-number="0"/>
-   <style:text-properties fo:font-size="16pt" fo:font-weight="bold" style:font-size-asian="16pt" style:font-weight-asian="bold" style:font-size-complex="16pt" style:font-weight-complex="bold"/>
-  </style:style>
-  <style:style style:name="Contents_20_1" style:display-name="Contents 1" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="17cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_2" style:display-name="Contents 2" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="0.499cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="16.501cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_3" style:display-name="Contents 3" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="0.998cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="16.002cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_4" style:display-name="Contents 4" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="1.498cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="15.503cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_5" style:display-name="Contents 5" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="1.997cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="15.004cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_6" style:display-name="Contents 6" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="2.496cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="14.504cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_7" style:display-name="Contents 7" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="2.995cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="14.005cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_8" style:display-name="Contents 8" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="3.494cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="13.506cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_9" style:display-name="Contents 9" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="3.993cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="13.007cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Contents_20_10" style:display-name="Contents 10" style:family="paragraph" style:parent-style-name="Index" style:class="index">
-   <style:paragraph-properties fo:margin-left="4.493cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false">
-    <style:tab-stops>
-     <style:tab-stop style:position="12.508cm" style:type="right" style:leader-style="dotted" style:leader-text="."/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Quotations" style:family="paragraph" style:parent-style-name="Standard" style:class="html">
-   <style:paragraph-properties fo:margin-left="1cm" fo:margin-right="1cm" fo:margin-top="0cm" fo:margin-bottom="0.499cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
-  </style:style>
-  <style:style style:name="OrgFootnoteQuotations" style:family="paragraph" style:parent-style-name="Footnote" style:class="html">
-   <style:paragraph-properties fo:margin-left="1cm" fo:margin-right="1cm" fo:margin-top="0cm" fo:margin-bottom="0.499cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
-  </style:style>
-  <style:style style:name="Preformatted_20_Text" style:display-name="Preformatted Text" style:family="paragraph" style:parent-style-name="Standard" style:class="html">
-   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm"/>
-   <style:text-properties style:font-name="Courier New" fo:font-size="10pt" style:font-name-asian="NSimSun" style:font-size-asian="10pt" style:font-name-complex="Courier New" style:font-size-complex="10pt"/>
-  </style:style>
-
-  <style:style style:name="OrgVerse" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:paragraph-properties fo:background-color="transparent" fo:padding="0cm" fo:border="none" style:shadow="none">
-    <style:background-image/>
-   </style:paragraph-properties>
-  </style:style>
-
-  <style:style style:name="OrgClock" style:family="paragraph" style:parent-style-name="Text_20_body">
-   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm"/>
-  </style:style>
-  <style:style style:name="OrgClockLastLine" style:family="paragraph" style:parent-style-name="OrgClock"/>
-  <style:style style:name="OrgPlanning" style:family="paragraph" style:parent-style-name="Text_20_body"/>
-
-  <!-- Fixed width block -->
-  <style:style style:name="OrgFixedWidthBlock" style:family="paragraph" style:parent-style-name="Preformatted_20_Text">
-   <style:paragraph-properties fo:background-color="#c0c0c0" fo:padding="0.049cm" fo:border="0.06pt solid #000000" style:shadow="none">
-    <style:background-image/>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="OrgFixedWidthBlockLastLine" style:family="paragraph" style:parent-style-name="OrgFixedWidthBlock">
-   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.21cm"/>
-  </style:style>
-
-  <style:style style:name="OrgFormula" style:family="paragraph" style:parent-style-name="Text_20_body">
-   <style:paragraph-properties>
-    <style:tab-stops>
-     <style:tab-stop style:position="17cm" style:type="right"/>
-    </style:tab-stops>
-   </style:paragraph-properties>
-  </style:style>
-
-  <style:style style:name="OrgSrcBlockLastLine" style:family="paragraph" style:parent-style-name="OrgSrcBlock">
-   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.21cm"/>
-  </style:style>
-
-  <style:style style:name="OrgCenter" style:family="paragraph" style:parent-style-name="Text_20_body">
-   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="OrgFootnoteCenter" style:family="paragraph" style:parent-style-name="Footnote">
-   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="OrgTableContents" style:family="paragraph" style:parent-style-name="Text_20_body"/>
-  <style:style style:name="OrgTableHeading" style:family="paragraph" style:parent-style-name="OrgTableContents" style:class="extra">
-    <style:paragraph-properties fo:text-align="center" style:justify-single-word="false" text:number-lines="false" text:line-number="0"/>
-    <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
-  </style:style>
-
-  <style:style style:name="OrgTableHeadingLeft" style:family="paragraph" style:parent-style-name="OrgTableHeading">
-    <style:paragraph-properties fo:text-align="left" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="OrgTableHeadingRight" style:family="paragraph" style:parent-style-name="OrgTableHeading">
-    <style:paragraph-properties fo:text-align="right" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="OrgTableHeadingCenter" style:family="paragraph" style:parent-style-name="OrgTableHeading">
-    <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-  </style:style>
-
-  <style:style style:name="OrgTableContentsLeft" style:family="paragraph" style:parent-style-name="OrgTableContents">
-    <style:paragraph-properties fo:text-align="left" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="OrgTableContentsRight" style:family="paragraph" style:parent-style-name="OrgTableContents">
-    <style:paragraph-properties fo:text-align="right" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="OrgTableContentsCenter" style:family="paragraph" style:parent-style-name="OrgTableContents">
-    <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="Text_20_body_20_bold" style:display-name="Text body bold" style:family="paragraph" style:parent-style-name="Text_20_body" style:next-style-name="Text_20_body">
-   <style:text-properties fo:font-weight="bold"/>
-  </style:style>
-  <style:style style:name="Footnote" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
-   <style:paragraph-properties fo:margin-left="0.499cm" fo:margin-right="0cm" fo:text-indent="-0.499cm" style:auto-text-indent="false" text:number-lines="false" text:line-number="0"/>
-   <style:text-properties fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
-  </style:style>
-  <style:style style:name="Figure" style:family="paragraph" style:parent-style-name="Caption"/>
-  <style:style style:name="Illustration_20_Index_20_Heading" style:display-name="Illustration Index Heading" style:family="paragraph" style:parent-style-name="Heading" style:class="index">
-   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false" text:number-lines="false" text:line-number="0"/>
-   <style:text-properties fo:font-size="16pt" fo:font-weight="bold" style:font-size-asian="16pt" style:font-weight-asian="bold" style:font-size-complex="16pt" style:font-weight-complex="bold"/>
-  </style:style>
-  <style:style style:name="Table" style:family="paragraph" style:parent-style-name="Caption" style:class="extra">
-   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-  </style:style>
-  <style:style style:name="Listing" style:family="paragraph" style:parent-style-name="Caption" style:class="extra">
-   <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false" fo:keep-with-next="always">
-    <style:tab-stops/>
-   </style:paragraph-properties>
-  </style:style>
-  <style:style style:name="Horizontal_20_Line" style:display-name="Horizontal Line" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="html">
-   <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.21cm" style:page-number="auto" fo:padding="0cm" fo:border-left="none" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.06pt solid #000000" style:shadow="none" text:number-lines="false" text:line-number="0" style:join-border="false"/>
-   <style:text-properties fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
-  </style:style>
-
-  <style:style style:name="Emphasis" style:family="text">
-   <style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
-  </style:style>
-  <style:style style:name="Underline" style:family="text">
-   <style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:background-color="transparent"/>
-  </style:style>
-  <style:style style:name="Strikethrough" style:family="text">
-   <style:text-properties style:text-line-through-style="solid"/>
-  </style:style>
-  <style:style style:name="Source_20_Text" style:display-name="Source Text" style:family="text">
-   <style:text-properties style:font-name="Courier New" fo:background-color="transparent" style:font-name-asian="NSimSun" style:font-name-complex="Courier New"/>
-  </style:style>
-  <style:style style:name="Citation" style:family="text">
-   <style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic"/>
-  </style:style>
-  <style:style style:name="Example" style:family="text">
-   <style:text-properties style:font-name="Courier New" fo:background-color="transparent" style:font-name-asian="NSimSun" style:font-name-complex="Courier New"/>
-  </style:style>
-  <style:style style:name="OrgCode" style:family="text" style:parent-style-name="Source_20_Text"/>
-
-  <!-- BEGIN: Org Agenda Styles -->
-  <style:style style:name="OrgTodo" style:family="text"/>
-  <style:style style:name="OrgDone" style:family="text"/>
-
-  <style:style style:name="OrgTag" style:family="text">
-   <style:text-properties fo:font-variant="small-caps" fo:background-color="transparent"/>
-  </style:style>
-  <style:style style:name="OrgTags" style:family="text"/>
-
-  <style:style style:name="OrgPriority" style:family="text"/>
-  <style:style style:name="OrgPriority-A" style:family="text" style:parent-style-name="OrgPriority"/>
-  <style:style style:name="OrgPriority-B" style:family="text" style:parent-style-name="OrgPriority"/>
-  <style:style style:name="OrgPriority-C" style:family="text" style:parent-style-name="OrgPriority"/>
-
-  <style:style style:name="OrgTimestamp" style:display-name="OrgTimestamp" style:family="text">
-    <style:text-properties style:font-name="Courier New" fo:background-color="transparent" style:font-name-asian="NSimSun" style:font-name-complex="Courier New"/>
-  </style:style>
-  <style:style style:name="OrgActiveTimestamp" style:family="text" style:parent-style-name="OrgTimestamp"/>
-  <style:style style:name="OrgInactiveTimestamp" style:family="text" style:parent-style-name="OrgTimestamp"/>
-  <style:style style:name="OrgTimestampKeyword" style:family="text">
-   <style:text-properties style:use-window-font-color="true" fo:font-weight="bold"/>
-  </style:style>
-  <style:style style:name="OrgScheduledKeyword" style:family="text" style:parent-style-name="OrgTimestampKeyword"/>
-  <style:style style:name="OrgDeadlineKeyword" style:family="text" style:parent-style-name="OrgTimestampKeyword"/>
-  <style:style style:name="OrgClockKeyword" style:family="text" style:parent-style-name="OrgTimestampKeyword"/>
-  <style:style style:name="OrgClosedKeyword" style:family="text" style:parent-style-name="OrgTimestampKeyword"/>
-  <style:style style:name="OrgTimestampWrapper" style:family="text"/>
-  <style:style style:name="OrgTarget" style:family="text"/>
-
-  <number:date-style style:name="OrgDate" number:automatic-order="true">
-   <number:day number:style="long"/>
-   <number:text>/</number:text>
-   <number:month number:style="long"/>
-   <number:text>/</number:text>
-   <number:year number:style="long"/>
-  </number:date-style>
-  <!-- END: Org Agenda Styles -->
-
-  <style:style style:name="Bold" style:family="text">
-   <style:text-properties fo:font-weight="bold"/>
-  </style:style>
-  <style:style style:name="Numbering_20_Symbols" style:display-name="Numbering Symbols" style:family="text"/>
-  <style:style style:name="Footnote_20_Symbol" style:display-name="Footnote Symbol" style:family="text"/>
-  <style:style style:name="Footnote_20_anchor" style:display-name="Footnote anchor" style:family="text">
-   <style:text-properties style:text-position="super 58%"/>
-  </style:style>
-  <style:style style:name="OrgSuperscript" style:family="text">
-   <style:text-properties style:text-position="super 58%"/>
-  </style:style>
-  <style:style style:name="OrgSubscript" style:family="text">
-   <style:text-properties style:text-position="sub 58%"/>
-  </style:style>
-  <style:style style:name="Internet_20_link" style:display-name="Internet link" style:family="text">
-   <style:text-properties fo:color="#000080" fo:language="zxx" fo:country="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none"/>
-  </style:style>
-  <style:style style:name="Graphics" style:family="graphic">
-   <style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/>
-  </style:style>
-  <style:style style:name="Frame" style:family="graphic">
-   <style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" fo:margin-left="0.201cm" fo:margin-right="0.201cm" fo:margin-top="0.201cm" fo:margin-bottom="0.201cm" style:wrap="parallel" style:number-wrapped-paragraphs="no-limit" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:padding="0.15cm" fo:border="0.002cm solid #000000"/>
-  </style:style>
-
-  <!-- Simple Images   -->
-  <style:style style:name="OrgDisplayImage" style:family="graphic" style:parent-style-name="Graphics">
-   <style:graphic-properties text:anchor-type="paragraph" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/>
-  </style:style>
-
-  <style:style style:name="OrgPageImage" style:family="graphic" style:parent-style-name="Graphics">
-   <style:graphic-properties text:anchor-type="page" fo:margin-top="0.21cm" fo:margin-bottom="0.21cm" style:vertical-pos="middle" style:vertical-rel="page" style:horizontal-pos="center" style:horizontal-rel="page" fo:background-color="transparent" style:background-transparency="100%" style:shadow="none" style:mirror="none" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard">
-    <style:background-image/>
-   </style:graphic-properties>
-  </style:style>
-
-  <!-- Captioned Images  -->
-  <style:style style:name="OrgCaptionedImage" style:family="graphic" style:parent-style-name="Graphics">
-   <style:graphic-properties style:rel-width="100%" text:anchor-type="paragraph" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" style:run-through="foreground" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="paragraph-content" style:horizontal-pos="from-left" style:horizontal-rel="paragraph-content" fo:padding="0cm" fo:border="none" style:shadow="none"/>
-  </style:style>
-
-  <style:style style:name="OrgImageCaptionFrame" style:family="graphic" style:parent-style-name="Frame">
-   <style:graphic-properties text:anchor-type="paragraph" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:padding="0cm" fo:border="none"/>
-  </style:style>
-
-  <style:style style:name="OrgPageImageCaptionFrame" style:family="graphic" style:parent-style-name="Frame">
-   <style:graphic-properties text:anchor-type="paragraph" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.21cm" fo:margin-bottom="0.21cm" style:wrap="none" style:vertical-pos="middle" style:vertical-rel="page" style:horizontal-pos="center" style:horizontal-rel="page" fo:background-color="transparent" style:background-transparency="100%" fo:padding="0cm" fo:border="none" style:shadow="none">
-    <style:background-image/>
-   </style:graphic-properties>
-  </style:style>
-
-  <!-- Inlined Images -->
-  <style:style style:name="OrgInlineImage" style:family="graphic" style:parent-style-name="Graphics">
-   <style:graphic-properties text:anchor-type="as-char" style:vertical-pos="top" style:vertical-rel="baseline" style:horizontal-pos="center" style:horizontal-rel="paragraph"/>
-  </style:style>
-
-  <!-- Inline Formula -->
-  <style:style style:name="OrgFormula" style:family="graphic">
-    <style:graphic-properties text:anchor-type="as-char" svg:y="0cm" fo:margin-left="0.201cm" fo:margin-right="0.201cm" style:vertical-pos="middle" style:vertical-rel="text" style:shadow="none"/>
-  </style:style>
-
-  <style:style style:name="OrgInlineFormula" style:family="graphic" style:parent-style-name="Formula">
-    <style:graphic-properties text:anchor-type="as-char" fo:margin-left="0.201cm" fo:margin-right="0.201cm" style:vertical-pos="middle" style:vertical-rel="text"/>
-  </style:style>
-
-  <style:style style:name="OrgInlineFormula" style:family="graphic" style:parent-style-name="Formula">
-    <style:graphic-properties style:vertical-pos="middle" style:vertical-rel="text" draw:ole-draw-aspect="1"/>
-  </style:style>
-
-  <style:style style:name="OrgDisplayFormula" style:family="graphic" style:parent-style-name="OrgFormula">
-    <style:graphic-properties style:vertical-pos="middle" style:vertical-rel="text" style:horizontal-pos="from-left" style:horizontal-rel="paragraph-content" draw:ole-draw-aspect="1"/>
-  </style:style>
-
-  <style:style style:name="OrgFormulaCaptionFrame" style:family="graphic" style:parent-style-name="Frame">
-   <style:graphic-properties text:anchor-type="paragraph" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" style:wrap="right" style:number-wrapped-paragraphs="1" style:wrap-contour="false" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph" fo:padding="0cm" fo:border="none"/>
-  </style:style>
-
-  <style:style style:name="OrgCaptionedFormula" style:family="graphic" style:parent-style-name="OrgFormula">
-    <style:graphic-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" style:run-through="foreground" style:wrap="none" style:vertical-pos="from-top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:padding="0cm" fo:border="none" style:shadow="none" draw:ole-draw-aspect="1"/>
-  </style:style>
-
-  <!-- Inline Tasks -->
-  <style:style style:name="OrgInlineTaskHeading" style:family="paragraph" style:parent-style-name="Caption" style:next-style-name="Text_20_body">
-   <style:text-properties style:font-name="Arial1" fo:font-style="normal" fo:font-weight="bold"/>
-  </style:style>
-  <style:style style:name="OrgInlineTaskFrame" style:family="graphic" style:parent-style-name="Frame">
-   <style:graphic-properties svg:x="0cm" svg:y="0cm" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" fo:background-color="#ffffcc" style:background-transparency="0%" fo:padding="0.15cm" fo:border="0.26pt solid #000000" style:shadow="none">
-    <style:background-image/>
-   </style:graphic-properties>
-  </style:style>
-
-  <text:list-style style:name="Numbering_20_1" style:display-name="Numbering 1">
-   <text:list-level-style-number text:level="1" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.499cm" fo:text-indent="-0.499cm" fo:margin-left="0.499cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="2" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1cm" fo:text-indent="-0.499cm" fo:margin-left="1cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="3" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.499cm" fo:text-indent="-0.499cm" fo:margin-left="1.499cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="4" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2cm" fo:text-indent="-0.499cm" fo:margin-left="2cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="5" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.499cm" fo:text-indent="-0.499cm" fo:margin-left="2.499cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="6" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3cm" fo:text-indent="-0.499cm" fo:margin-left="3cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="7" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.5cm" fo:text-indent="-0.499cm" fo:margin-left="3.5cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="8" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="4.001cm" fo:text-indent="-0.499cm" fo:margin-left="4.001cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="9" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="4.5cm" fo:text-indent="-0.499cm" fo:margin-left="4.5cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="10" text:style-name="Numbering_20_Symbols" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="5.001cm" fo:text-indent="-0.499cm" fo:margin-left="5.001cm"/>
-    </style:list-level-properties>
-   </text:list-level-style-number>
-  </text:list-style>
-  <text:list-style style:name="List_20_1" style:display-name="List 1">
-   <text:list-level-style-bullet text:level="1" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.4cm" fo:text-indent="-0.4cm" fo:margin-left="0.4cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="2" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="0.801cm" fo:text-indent="-0.4cm" fo:margin-left="0.801cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="3" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.199cm" fo:text-indent="-0.4cm" fo:margin-left="1.199cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="4" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="1.6cm" fo:text-indent="-0.4cm" fo:margin-left="1.6cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="5" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2cm" fo:text-indent="-0.4cm" fo:margin-left="2cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="6" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.401cm" fo:text-indent="-0.4cm" fo:margin-left="2.401cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="7" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="2.799cm" fo:text-indent="-0.4cm" fo:margin-left="2.799cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="8" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.2cm" fo:text-indent="-0.4cm" fo:margin-left="3.2cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="9" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="3.6cm" fo:text-indent="-0.4cm" fo:margin-left="3.6cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="10" text:style-name="Numbering_20_Symbols" text:bullet-char="•">
-    <style:list-level-properties text:list-level-position-and-space-mode="label-alignment">
-     <style:list-level-label-alignment text:label-followed-by="listtab" text:list-tab-stop-position="4.001cm" fo:text-indent="-0.4cm" fo:margin-left="4.001cm"/>
-    </style:list-level-properties>
-    <style:text-properties style:font-name="OpenSymbol"/>
-   </text:list-level-style-bullet>
-  </text:list-style>
-
-  <!-- Numbered List -->
-  <text:list-style style:name="OrgNumberedList">
-   <text:list-level-style-number text:level="1" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="0.635cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="2" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="1.27cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="3" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="1.905cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="4" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="2.54cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="5" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="3.175cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="6" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="3.81cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="7" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="4.445cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="8" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="5.08cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="9" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="5.715cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="10" style:num-suffix="." style:num-format="1">
-    <style:list-level-properties text:space-before="6.35cm" text:min-label-width="0.635cm"/>
-   </text:list-level-style-number>
-  </text:list-style>
-
-  <!-- Bulleted List -->
-  <text:list-style style:name="OrgBulletedList">
-   <text:list-level-style-bullet text:level="1" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="0.635cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="2" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="1.27cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="3" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="1.905cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="4" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="2.54cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="5" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="3.175cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="6" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="3.81cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="7" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="4.445cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="8" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="5.08cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="9" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="5.715cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-   <text:list-level-style-bullet text:level="10" text:style-name="Bullet_20_Symbols" style:num-suffix="." text:bullet-char="•">
-    <style:list-level-properties text:space-before="6.35cm" text:min-label-width="0.635cm"/>
-    <style:text-properties fo:font-family="StarSymbol" style:font-charset="x-symbol"/>
-   </text:list-level-style-bullet>
-  </text:list-style>
-
-  <!-- Description List -->
-  <text:list-style style:name="OrgDescriptionList">
-   <text:list-level-style-number text:level="1" style:num-format="">
-    <style:list-level-properties text:space-before="0.635cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="2" style:num-format="">
-    <style:list-level-properties text:space-before="1.27cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="3" style:num-format="">
-    <style:list-level-properties text:space-before="1.905cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="4" style:num-format="">
-    <style:list-level-properties text:space-before="2.54cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="5" style:num-format="">
-    <style:list-level-properties text:space-before="3.175cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="6" style:num-format="">
-    <style:list-level-properties text:space-before="3.81cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="7" style:num-format="">
-    <style:list-level-properties text:space-before="4.445cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="8" style:num-format="">
-    <style:list-level-properties text:space-before="5.08cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="9" style:num-format="">
-    <style:list-level-properties text:space-before="5.715cm"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="10" style:num-format="">
-    <style:list-level-properties text:space-before="6.35cm"/>
-   </text:list-level-style-number>
-  </text:list-style>
-
-  <text:list-style style:name="OrgSrcBlockNumberedLine">
-   <text:list-level-style-number text:level="1" style:num-format="1">
-    <style:list-level-properties text:space-before="0.635cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="2" style:num-format="1">
-    <style:list-level-properties text:space-before="1.27cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="3" style:num-format="1">
-    <style:list-level-properties text:space-before="1.905cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="4" style:num-format="1">
-    <style:list-level-properties text:space-before="2.54cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="5" style:num-format="1">
-    <style:list-level-properties text:space-before="3.175cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="6" style:num-format="1">
-    <style:list-level-properties text:space-before="3.81cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="7" style:num-format="1">
-    <style:list-level-properties text:space-before="4.445cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="8" style:num-format="1">
-    <style:list-level-properties text:space-before="5.08cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="9" style:num-format="1">
-    <style:list-level-properties text:space-before="5.715cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-   <text:list-level-style-number text:level="10" style:num-format="1">
-    <style:list-level-properties text:space-before="6.35cm" text:min-label-width="0.635cm" text:min-label-distance="0.101cm" fo:text-align="end"/>
-   </text:list-level-style-number>
-  </text:list-style>
-
-  <text:notes-configuration text:note-class="footnote" text:citation-style-name="Footnote_20_Symbol" text:citation-body-style-name="Footnote_20_anchor" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
-  <text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
-  <text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/>
- </office:styles>
- <office:automatic-styles>
-  <style:style style:name="MP1" style:family="paragraph" style:parent-style-name="Footer">
-   <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
-  </style:style>
-  <style:page-layout style:name="Mpm1" style:page-usage="mirrored">
-   <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
-    <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
-   </style:page-layout-properties>
-   <style:header-style/>
-   <style:footer-style>
-    <style:header-footer-properties fo:min-height="0.6cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.499cm" style:dynamic-spacing="false"/>
-   </style:footer-style>
-  </style:page-layout>
-  <style:page-layout style:name="Mpm2">
-   <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
-    <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
-   </style:page-layout-properties>
-   <style:header-style/>
-   <style:footer-style/>
-  </style:page-layout>
-  <style:page-layout style:name="Mpm3" style:page-usage="mirrored">
-   <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="i" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
-    <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
-   </style:page-layout-properties>
-   <style:header-style/>
-   <style:footer-style>
-    <style:header-footer-properties fo:min-height="0cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.499cm"/>
-   </style:footer-style>
-  </style:page-layout>
-  <style:page-layout style:name="Mpm4" style:page-usage="right">
-   <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" fo:background-color="transparent" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
-    <style:background-image/>
-    <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
-   </style:page-layout-properties>
-   <style:header-style/>
-   <style:footer-style>
-    <style:header-footer-properties fo:min-height="0.6cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.499cm" style:dynamic-spacing="false"/>
-   </style:footer-style>
-  </style:page-layout>
-  <style:page-layout style:name="Mpm5" style:page-usage="mirrored">
-   <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
-    <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="solid" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
-   </style:page-layout-properties>
-   <style:header-style/>
-   <style:footer-style>
-    <style:header-footer-properties fo:min-height="0.6cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.499cm" style:dynamic-spacing="false"/>
-   </style:footer-style>
-  </style:page-layout>
- </office:automatic-styles>
- <office:master-styles>
-  <style:master-page style:name="Standard" style:page-layout-name="Mpm1">
-   <style:footer>
-    <text:p text:style-name="MP1"><text:page-number text:select-page="current"></text:page-number></text:p>
-   </style:footer>
-  </style:master-page>
-  <style:master-page style:name="OrgTitlePage" style:page-layout-name="Mpm2" style:next-style-name="OrgFrontMatterPage"/>
-  <style:master-page style:name="OrgFrontMatterPage" style:page-layout-name="Mpm3">
-   <style:footer>
-    <text:p text:style-name="MP1"><text:page-number text:select-page="current"/></text:p>
-   </style:footer>
-  </style:master-page>
-  <style:master-page style:name="OrgFirstPage" style:page-layout-name="Mpm4" style:next-style-name="OrgPage">
-   <style:footer>
-    <text:p text:style-name="MP1"><text:page-number text:select-page="current"/></text:p>
-   </style:footer>
-  </style:master-page>
-  <style:master-page style:name="OrgPage" style:page-layout-name="Mpm5">
-   <style:footer>
-    <text:p text:style-name="MP1"><text:page-number text:select-page="current"/></text:p>
-   </style:footer>
-  </style:master-page>
- </office:master-styles>
-</office:document-styles>
diff --git a/elpa/org-9.1.14/etc/styles/README b/elpa/org-9.1.14/etc/styles/README
deleted file mode 100644
index 7c175e3..0000000
--- a/elpa/org-9.1.14/etc/styles/README
+++ /dev/null
@@ -1,36 +0,0 @@
-The files OrgOdtContentTemplate.xml and OrgOdtStyles.xml have the
-following copyright information:
-
-Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-These files are part of GNU Emacs.
-
-GNU Emacs is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 3 of the License, or
-(at your option) any later version.
-
-GNU Emacs is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-
-Author: Jambunathan K <kjambunathan at gmail dot com>
-Keywords: outlines, hypermedia, calendar, wp
-Homepage: https://orgmode.org
-
-Commentary:
-
-These files are part of Org-mode's OpenDocument export module.
-
-OrgOdtContentTemplate.xml provides a template within which the content
-of an exported document is enclosed.  This file contributes to
-"content.xml" file within an exported document and acts as a
-repository of automatic styles.
-
-OrgOdtStyles.xml contributes to "styles.xml" file within an exported
-document and acts as a repository of custom styles.
diff --git a/elpa/org-9.1.14/ob-C.el b/elpa/org-9.1.14/ob-C.el
deleted file mode 100644
index ff5be34..0000000
--- a/elpa/org-9.1.14/ob-C.el
+++ /dev/null
@@ -1,469 +0,0 @@
-;;; ob-C.el --- Babel Functions for C and Similar Languages -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;;      Thierry Banel
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating C, C++, D code.
-;;
-;; very limited implementation:
-;; - currently only support :results output
-;; - not much in the way of error feedback
-
-;;; Code:
-
-(require 'cc-mode)
-(require 'ob)
-
-
-(declare-function org-entry-get "org" (pom property &optional inherit literal-nil))
-(declare-function org-remove-indentation "org" (code &optional n))
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("C++" . "cpp"))
-(add-to-list 'org-babel-tangle-lang-exts '("D" . "d"))
-
-(defvar org-babel-default-header-args:C '())
-
-(defconst org-babel-header-args:C '((includes . :any)
-				    (defines . :any)
-				    (main    . :any)
-				    (flags   . :any)
-				    (cmdline . :any)
-				    (libs    . :any))
-  "C/C++-specific header arguments.")
-
-(defconst org-babel-header-args:C++
-  (append '((namespaces . :any))
-	  org-babel-header-args:C)
-  "C++-specific header arguments.")
-
-(defcustom org-babel-C-compiler "gcc"
-  "Command used to compile a C source code file into an executable.
-May be either a command in the path, like gcc
-or an absolute path name, like /usr/local/bin/gcc
-parameter may be used, like gcc -v"
-  :group 'org-babel
-  :version "24.3"
-  :type 'string)
-
-(defcustom org-babel-C++-compiler "g++"
-  "Command used to compile a C++ source code file into an executable.
-May be either a command in the path, like g++
-or an absolute path name, like /usr/local/bin/g++
-parameter may be used, like g++ -v"
-  :group 'org-babel
-  :version "24.3"
-  :type 'string)
-
-(defcustom org-babel-D-compiler "rdmd"
-  "Command used to compile and execute a D source code file.
-May be either a command in the path, like rdmd
-or an absolute path name, like /usr/local/bin/rdmd
-parameter may be used, like rdmd --chatty"
-  :group 'org-babel
-  :version "24.3"
-  :type 'string)
-
-(defvar org-babel-c-variant nil
-  "Internal variable used to hold which type of C (e.g. C or C++ or D)
-is currently being evaluated.")
-
-(defun org-babel-execute:cpp (body params)
-  "Execute BODY according to PARAMS.
-This function calls `org-babel-execute:C++'."
-  (org-babel-execute:C++ body params))
-
-(defun org-babel-expand-body:cpp (body params)
-  "Expand a block of C++ code with org-babel according to its
-header arguments."
-  (org-babel-expand-body:C++ body params))
-
-(defun org-babel-execute:C++ (body params)
-  "Execute a block of C++ code with org-babel.
-This function is called by `org-babel-execute-src-block'."
-  (let ((org-babel-c-variant 'cpp)) (org-babel-C-execute body params)))
-
-(defun org-babel-expand-body:C++ (body params)
-  "Expand a block of C++ code with org-babel according to its
-header arguments."
-  (let ((org-babel-c-variant 'cpp)) (org-babel-C-expand-C++ body params)))
-
-(defun org-babel-execute:D (body params)
-  "Execute a block of D code with org-babel.
-This function is called by `org-babel-execute-src-block'."
-  (let ((org-babel-c-variant 'd)) (org-babel-C-execute body params)))
-
-(defun org-babel-expand-body:D (body params)
-  "Expand a block of D code with org-babel according to its
-header arguments."
-  (let ((org-babel-c-variant 'd)) (org-babel-C-expand-D body params)))
-
-(defun org-babel-execute:C (body params)
-  "Execute a block of C code with org-babel.
-This function is called by `org-babel-execute-src-block'."
-  (let ((org-babel-c-variant 'c)) (org-babel-C-execute body params)))
-
-(defun org-babel-expand-body:C (body params)
-  "Expand a block of C code with org-babel according to its
-header arguments."
-  (let ((org-babel-c-variant 'c)) (org-babel-C-expand-C body params)))
-
-(defun org-babel-C-execute (body params)
-  "This function should only be called by `org-babel-execute:C'
-or `org-babel-execute:C++' or `org-babel-execute:D'."
-  (let* ((tmp-src-file (org-babel-temp-file
-			"C-src-"
-			(pcase org-babel-c-variant
-			  (`c ".c") (`cpp ".cpp") (`d ".d"))))
-	 (tmp-bin-file			;not used for D
-	  (org-babel-process-file-name
-	   (org-babel-temp-file "C-bin-" org-babel-exeext)))
-	 (cmdline (cdr (assq :cmdline params)))
-	 (cmdline (if cmdline (concat " " cmdline) ""))
-	 (flags (cdr (assq :flags params)))
-	 (flags (mapconcat 'identity
-			   (if (listp flags) flags (list flags)) " "))
-	 (libs (org-babel-read
-		(or (cdr (assq :libs params))
-		    (org-entry-get nil "libs" t))
-		nil))
-	 (libs (mapconcat #'identity
-			  (if (listp libs) libs (list libs))
-			  " "))
-	 (full-body
-	  (pcase org-babel-c-variant
-	    (`c (org-babel-C-expand-C body params))
-	    (`cpp (org-babel-C-expand-C++ body params))
-	    (`d (org-babel-C-expand-D body params)))))
-    (with-temp-file tmp-src-file (insert full-body))
-    (pcase org-babel-c-variant
-      ((or `c `cpp)
-       (org-babel-eval
-	(format "%s -o %s %s %s %s"
-		(pcase org-babel-c-variant
-		  (`c org-babel-C-compiler)
-		  (`cpp org-babel-C++-compiler))
-		tmp-bin-file
-		flags
-		(org-babel-process-file-name tmp-src-file)
-		libs)
-	""))
-      (`d nil)) ;; no separate compilation for D
-    (let ((results
-	   (org-babel-eval
-	    (pcase org-babel-c-variant
-	      ((or `c `cpp)
-	       (concat tmp-bin-file cmdline))
-	      (`d
-	       (format "%s %s %s %s"
-		       org-babel-D-compiler
-		       flags
-		       (org-babel-process-file-name tmp-src-file)
-		       cmdline)))
-	    "")))
-      (when results
-	(setq results (org-trim (org-remove-indentation results)))
-	(org-babel-reassemble-table
-	 (org-babel-result-cond (cdr (assq :result-params params))
-	   (org-babel-read results t)
-	   (let ((tmp-file (org-babel-temp-file "c-")))
-	     (with-temp-file tmp-file (insert results))
-	     (org-babel-import-elisp-from-file tmp-file)))
-	 (org-babel-pick-name
-	  (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-	 (org-babel-pick-name
-	  (cdr (assq :rowname-names params)) (cdr (assq :rownames params)))))
-      )))
-
-(defun org-babel-C-expand-C++ (body params)
-  "Expand a block of C or C++ code with org-babel according to
-its header arguments."
-  (org-babel-C-expand-C body params))
-
-(defun org-babel-C-expand-C (body params)
-  "Expand a block of C or C++ code with org-babel according to
-its header arguments."
-  (let ((vars (org-babel--get-vars params))
-	(colnames (cdr (assq :colname-names params)))
-	(main-p (not (string= (cdr (assq :main params)) "no")))
-	(includes (org-babel-read
-		   (cdr (assq :includes params))
-		   nil))
-	(defines (org-babel-read
-		  (cdr (assq :defines params))
-		  nil))
-	(namespaces (org-babel-read
-		     (cdr (assq :namespaces params))
-		     nil)))
-    (when (stringp includes)
-      (setq includes (split-string includes)))
-    (when (stringp namespaces)
-      (setq namespaces (split-string namespaces)))
-    (when (stringp defines)
-      (let ((y nil)
-	    (result (list t)))
-	(dolist (x (split-string defines))
-	  (if (null y)
-	      (setq y x)
-	    (nconc result (list (concat y " " x)))
-	    (setq y nil)))
-	(setq defines (cdr result))))
-    (mapconcat 'identity
-	       (list
-		;; includes
-		(mapconcat
-		 (lambda (inc) (format "#include %s" inc))
-		 includes "\n")
-		;; defines
-		(mapconcat
-		 (lambda (inc) (format "#define %s" inc))
-		 (if (listp defines) defines (list defines)) "\n")
-		;; namespaces
-		(mapconcat
-		 (lambda (inc) (format "using namespace %s;" inc))
-		 namespaces
-		 "\n")
-		;; variables
-		(mapconcat 'org-babel-C-var-to-C vars "\n")
-		;; table sizes
-		(mapconcat 'org-babel-C-table-sizes-to-C vars "\n")
-		;; tables headers utility
-		(when colnames
-		  (org-babel-C-utility-header-to-C))
-		;; tables headers
-		(mapconcat 'org-babel-C-header-to-C colnames "\n")
-		;; body
-		(if main-p
-		    (org-babel-C-ensure-main-wrap body)
-		  body) "\n") "\n")))
-
-(defun org-babel-C-expand-D (body params)
-  "Expand a block of D code with org-babel according to
-its header arguments."
-  (let ((vars (org-babel--get-vars params))
-	(colnames (cdr (assq :colname-names params)))
-	(main-p (not (string= (cdr (assq :main params)) "no")))
-	(imports (or (cdr (assq :imports params))
-		     (org-babel-read (org-entry-get nil "imports" t)))))
-    (when (stringp imports)
-      (setq imports (split-string imports)))
-    (setq imports (append imports '("std.stdio" "std.conv")))
-    (mapconcat 'identity
-	       (list
-		"module mmm;"
-		;; imports
-		(mapconcat
-		 (lambda (inc) (format "import %s;" inc))
-		 imports "\n")
-		;; variables
-		(mapconcat 'org-babel-C-var-to-C vars "\n")
-		;; table sizes
-		(mapconcat 'org-babel-C-table-sizes-to-C vars "\n")
-		;; tables headers utility
-		(when colnames
-		  (org-babel-C-utility-header-to-C))
-		;; tables headers
-		(mapconcat 'org-babel-C-header-to-C colnames "\n")
-		;; body
-		(if main-p
-		    (org-babel-C-ensure-main-wrap body)
-		  body) "\n") "\n")))
-
-(defun org-babel-C-ensure-main-wrap (body)
-  "Wrap BODY in a \"main\" function call if none exists."
-  (if (string-match "^[ \t]*[intvod]+[ \t\n\r]*main[ \t]*(.*)" body)
-      body
-    (format "int main() {\n%s\nreturn 0;\n}\n" body)))
-
-(defun org-babel-prep-session:C (_session _params)
-  "This function does nothing as C is a compiled language with no
-support for sessions"
-  (error "C is a compiled language -- no support for sessions"))
-
-(defun org-babel-load-session:C (_session _body _params)
-  "This function does nothing as C is a compiled language with no
-support for sessions"
-  (error "C is a compiled language -- no support for sessions"))
-
-;; helper functions
-
-(defun org-babel-C-format-val (type val)
-  "Handle the FORMAT part of TYPE with the data from VAL."
-  (let ((format-data (cadr type)))
-    (if (stringp format-data)
-	(cons "" (format format-data val))
-      (funcall format-data val))))
-
-(defun org-babel-C-val-to-C-type (val)
-  "Determine the type of VAL.
-Return a list (TYPE-NAME FORMAT).  TYPE-NAME should be the name of the type.
-FORMAT can be either a format string or a function which is called with VAL."
-  (let* ((basetype (org-babel-C-val-to-base-type val))
-	 (type
-	  (pcase basetype
-	    (`integerp '("int" "%d"))
-	    (`floatp '("double" "%f"))
-	    (`stringp
-	     (list
-	      (if (eq org-babel-c-variant 'd) "string" "const char*")
-	      "\"%s\""))
-	    (_ (error "unknown type %S" basetype)))))
-    (cond
-     ((integerp val) type) ;; an integer declared in the #+begin_src line
-     ((floatp val) type) ;; a numeric declared in the #+begin_src line
-     ((and (listp val) (listp (car val))) ;; a table
-      `(,(car type)
-	(lambda (val)
-	  (cons
-	   (format "[%d][%d]" (length val) (length (car val)))
-	   (concat
-	    (if (eq org-babel-c-variant 'd) "[\n" "{\n")
-	    (mapconcat
-	     (lambda (v)
-	       (concat
-		(if (eq org-babel-c-variant 'd) " [" " {")
-		(mapconcat (lambda (w) (format ,(cadr type) w)) v ",")
-		(if (eq org-babel-c-variant 'd) "]" "}")))
-	     val
-	     ",\n")
-	    (if (eq org-babel-c-variant 'd) "\n]" "\n}"))))))
-     ((or (listp val) (vectorp val)) ;; a list declared in the #+begin_src line
-      `(,(car type)
-	(lambda (val)
-	  (cons
-	   (format "[%d]" (length val))
-	   (concat
-	    (if (eq org-babel-c-variant 'd) "[" "{")
-	    (mapconcat (lambda (v) (format ,(cadr type) v)) val ",")
-	    (if (eq org-babel-c-variant 'd) "]" "}"))))))
-     (t ;; treat unknown types as string
-      type))))
-
-(defun org-babel-C-val-to-base-type (val)
-  "Determine the base type of VAL which may be
-`integerp' if all base values are integers
-`floatp' if all base values are either floating points or integers
-`stringp' otherwise."
-  (cond
-   ((integerp val) 'integerp)
-   ((floatp val) 'floatp)
-   ((or (listp val) (vectorp val))
-    (let ((type nil))
-      (mapc (lambda (v)
-	      (pcase (org-babel-C-val-to-base-type v)
-		(`stringp (setq type 'stringp))
-		(`floatp
-		 (if (or (not type) (eq type 'integerp))
-		     (setq type 'floatp)))
-		(`integerp
-		 (unless type (setq type 'integerp)))))
-	    val)
-      type))
-   (t 'stringp)))
-
-(defun org-babel-C-var-to-C (pair)
-  "Convert an elisp val into a string of C code specifying a var
-of the same value."
-  ;; TODO list support
-  (let ((var (car pair))
-	(val (cdr pair)))
-    (when (symbolp val)
-      (setq val (symbol-name val))
-      (when (= (length val) 1)
-	(setq val (string-to-char val))))
-    (let* ((type-data (org-babel-C-val-to-C-type val))
-	   (type (car type-data))
-	   (formated (org-babel-C-format-val type-data val))
-	   (suffix (car formated))
-	   (data (cdr formated)))
-      (format "%s %s%s = %s;"
-	      type
-	      var
-	      suffix
-	      data))))
-
-(defun org-babel-C-table-sizes-to-C (pair)
-  "Create constants of table dimensions, if PAIR is a table."
-  (when (listp (cdr pair))
-    (cond
-     ((listp (cadr pair)) ;; a table
-      (concat
-       (format "const int %s_rows = %d;" (car pair) (length (cdr pair)))
-       "\n"
-       (format "const int %s_cols = %d;" (car pair) (length (cadr pair)))))
-     (t ;; a list declared in the #+begin_src line
-      (format "const int %s_cols = %d;" (car pair) (length (cdr pair)))))))
-
-(defun org-babel-C-utility-header-to-C ()
-  "Generate a utility function to convert a column name
-into a column number."
-  (pcase org-babel-c-variant
-    ((or `c `cpp)
-     "int get_column_num (int nbcols, const char** header, const char* column)
-{
-  int c;
-  for (c=0; c<nbcols; c++)
-    if (strcmp(header[c],column)==0)
-      return c;
-  return -1;
-}
-")
-    (`d
-     "int get_column_num (string[] header, string column)
-{
-  foreach (c, h; header)
-    if (h==column)
-      return to!int(c);
-  return -1;
-}
-")))
-
-(defun org-babel-C-header-to-C (head)
-  "Convert an elisp list of header table into a C or D vector
-specifying a variable with the name of the table."
-  (let ((table (car head))
-        (headers (cdr head)))
-    (concat
-     (format
-      (pcase org-babel-c-variant
-	((or `c `cpp) "const char* %s_header[%d] = {%s};")
-	(`d "string %s_header[%d] = [%s];"))
-      table
-      (length headers)
-      (mapconcat (lambda (h) (format "%S" h)) headers ","))
-     "\n"
-     (pcase org-babel-c-variant
-       ((or `c `cpp)
-	(format
-	 "const char* %s_h (int row, const char* col) { return %s[row][get_column_num(%d,%s_header,col)]; }"
-	 table table (length headers) table))
-       (`d
-	(format
-	 "string %s_h (size_t row, string col) { return %s[row][get_column_num(%s_header,col)]; }"
-	 table table table))))))
-
-(provide 'ob-C)
-
-;;; ob-C.el ends here
diff --git a/elpa/org-9.1.14/ob-C.elc b/elpa/org-9.1.14/ob-C.elc
deleted file mode 100644
index c190b92..0000000
--- a/elpa/org-9.1.14/ob-C.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-J.el b/elpa/org-9.1.14/ob-J.el
deleted file mode 100644
index 8781221..0000000
--- a/elpa/org-9.1.14/ob-J.el
+++ /dev/null
@@ -1,186 +0,0 @@
-;;; ob-J.el --- Babel Functions for J                -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
-
-;; Author: Oleh Krehel
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating J code.
-;;
-;; Session interaction depends on `j-console' from package `j-mode'
-;; (available in MELPA).
-
-;;; Code:
-
-(require 'ob)
-
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function j-console-ensure-session "ext:j-console" ())
-
-(defcustom org-babel-J-command "jconsole"
-  "Command to call J."
-  :group 'org-babel
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type 'string)
-
-(defun org-babel-expand-body:J (body _params &optional _processed-params)
-  "Expand BODY according to PARAMS, return the expanded body.
-PROCESSED-PARAMS isn't used yet."
-  (org-babel-J-interleave-echos-except-functions body))
-
-(defun org-babel-J-interleave-echos (body)
-  "Interleave echo',' between each source line of BODY."
-  (mapconcat #'identity (split-string body "\n") "\necho','\n"))
-
-(defun org-babel-J-interleave-echos-except-functions (body)
-  "Interleave echo',' between source lines of BODY that aren't functions."
-  (if (obj-string-match-m "\\(?:^\\|\n\\)[^\n]*\\(?:0\\|1\\|2\\|3\\|4\\|dyad\\) : 0\n.*\n)\\(?:\n\\|$\\)" body)
-      (let ((s1 (substring body 0 (match-beginning 0)))
-	    (s2 (match-string 0 body))
-	    (s3 (substring body (match-end 0))))
-	(concat
-	 (if (string= s1 "")
-	     ""
-	   (concat (org-babel-J-interleave-echos s1)
-		   "\necho','\n"))
-	 s2
-	 "\necho','\n"
-	 (org-babel-J-interleave-echos-except-functions s3)))
-    (org-babel-J-interleave-echos body)))
-
-(defalias 'org-babel-execute:j 'org-babel-execute:J)
-
-(defun org-babel-execute:J (body params)
-  "Execute a block of J code BODY.
-PARAMS are given by org-babel.
-This function is called by `org-babel-execute-src-block'"
-  (message "executing J source code block")
-  (let* ((processed-params (org-babel-process-params params))
-	 (sessionp (cdr (assq :session params)))
-         (full-body (org-babel-expand-body:J
-                     body params processed-params))
-	 (tmp-script-file (org-babel-temp-file "J-src")))
-    (org-babel-j-initiate-session sessionp)
-    (org-babel-J-strip-whitespace
-     (if (string= sessionp "none")
-	 (progn
-	   (with-temp-file tmp-script-file
-	     (insert full-body))
-	   (org-babel-eval (format "%s < %s" org-babel-J-command tmp-script-file) ""))
-       (org-babel-J-eval-string full-body)))))
-
-(defun org-babel-J-eval-string (str)
-  "Sends STR to the `j-console-cmd' session and executes it."
-  (let ((session (j-console-ensure-session)))
-    (with-current-buffer (process-buffer session)
-      (goto-char (point-max))
-      (insert (format "\n%s\n" str))
-      (let ((beg (point)))
-	(comint-send-input)
-	(sit-for .1)
-	(buffer-substring-no-properties
-	 beg (point-max))))))
-
-(defun org-babel-J-strip-whitespace (str)
-  "Remove whitespace from jconsole output STR."
-  (mapconcat
-   #'identity
-   (delete "" (mapcar
-	       #'org-babel-J-print-block
-	       (split-string str "^ *,\n" t)))
-   "\n\n"))
-
-(defun obj-get-string-alignment (str)
-  "Return a number to describe STR alignment.
-STR represents a table.
-Positive/negative/zero result means right/left/undetermined.
-Don't trust first line."
-  (let* ((str (org-trim str))
-	 (lines (split-string str "\n" t))
-	 n1 n2)
-    (cond ((<= (length lines) 1)
-	   0)
-	  ((= (length lines) 2)
-	   ;; numbers are right-aligned
-	   (if (and
-		(numberp (read (car lines)))
-		(numberp (read (cadr lines)))
-		(setq n1 (obj-match-second-space-right (nth 0 lines)))
-		(setq n2 (obj-match-second-space-right (nth 1 lines))))
-	       n2
-	     0))
-	  ((not (obj-match-second-space-left (nth 0 lines)))
-	   0)
-	  ((and
-	    (setq n1 (obj-match-second-space-left (nth 1 lines)))
-	    (setq n2 (obj-match-second-space-left (nth 2 lines)))
-	    (= n1 n2))
-	   n1)
-	  ((and
-	    (setq n1 (obj-match-second-space-right (nth 1 lines)))
-	    (setq n2 (obj-match-second-space-right (nth 2 lines)))
-	    (= n1 n2))
-	   (- n1))
-	  (t 0))))
-
-(defun org-babel-J-print-block (x)
-  "Prettify jconsole output X."
-  (let* ((x (org-trim x))
-	 (a (obj-get-string-alignment x))
-	 (lines (split-string x "\n" t))
-	 b)
-    (cond ((< a 0)
-	   (setq b (obj-match-second-space-right (nth 0 lines)))
-	   (concat (make-string (+ a b) ? ) x))
-	  ((> a 0)
-	   (setq b (obj-match-second-space-left (nth 0 lines)))
-	   (concat (make-string (- a b) ? ) x))
-	  (t x))))
-
-(defun obj-match-second-space-left (s)
-  "Return position of leftmost space in second space block of S or nil."
-  (and (string-match "^ *[^ ]+\\( \\)" s)
-       (match-beginning 1)))
-
-(defun obj-match-second-space-right (s)
-  "Return position of rightmost space in second space block of S or nil."
-  (and (string-match "^ *[^ ]+ *\\( \\)[^ ]" s)
-       (match-beginning 1)))
-
-(defun obj-string-match-m (regexp string &optional start)
-  "Call (string-match REGEXP STRING START).
-REGEXP is modified so that .* matches newlines as well."
-  (string-match
-   (replace-regexp-in-string "\\.\\*" "[\0-\377[:nonascii:]]*" regexp)
-   string
-   start))
-
-(defun org-babel-j-initiate-session (&optional session)
-  "Initiate a J session.
-SESSION is a parameter given by org-babel."
-  (unless (string= session "none")
-    (require 'j-console)
-    (j-console-ensure-session)))
-
-(provide 'ob-J)
-
-;;; ob-J.el ends here
diff --git a/elpa/org-9.1.14/ob-J.elc b/elpa/org-9.1.14/ob-J.elc
deleted file mode 100644
index 83a5964..0000000
--- a/elpa/org-9.1.14/ob-J.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-R.el b/elpa/org-9.1.14/ob-R.el
deleted file mode 100644
index d7e936e..0000000
--- a/elpa/org-9.1.14/ob-R.el
+++ /dev/null
@@ -1,469 +0,0 @@
-;;; ob-R.el --- Babel Functions for R                -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;;	Dan Davison
-;; Keywords: literate programming, reproducible research, R, statistics
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating R code
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'ob)
-
-(declare-function orgtbl-to-tsv "org-table" (table params))
-(declare-function R "ext:essd-r" (&optional start-args))
-(declare-function inferior-ess-send-input "ext:ess-inf" ())
-(declare-function ess-make-buffer-current "ext:ess-inf" ())
-(declare-function ess-eval-buffer "ext:ess-inf" (vis))
-(declare-function ess-wait-for-process "ext:ess-inf"
-		  (&optional proc sec-prompt wait force-redisplay))
-
-(defconst org-babel-header-args:R
-  '((width		 . :any)
-    (height		 . :any)
-    (bg			 . :any)
-    (units		 . :any)
-    (pointsize		 . :any)
-    (antialias		 . :any)
-    (quality		 . :any)
-    (compression	 . :any)
-    (res		 . :any)
-    (type		 . :any)
-    (family		 . :any)
-    (title		 . :any)
-    (fonts		 . :any)
-    (version		 . :any)
-    (paper		 . :any)
-    (encoding		 . :any)
-    (pagecentre		 . :any)
-    (colormodel		 . :any)
-    (useDingbats	 . :any)
-    (horizontal		 . :any)
-    (results             . ((file list vector table scalar verbatim)
-			    (raw html latex org code pp drawer)
-			    (replace silent none append prepend)
-			    (output value graphics))))
-  "R-specific header arguments.")
-
-(defconst ob-R-safe-header-args
-  (append org-babel-safe-header-args
-	  '(:width :height :bg :units :pointsize :antialias :quality
-		   :compression :res :type :family :title :fonts
-		   :version :paper :encoding :pagecentre :colormodel
-		   :useDingbats :horizontal))
-  "Header args which are safe for R babel blocks.
-
-See `org-babel-safe-header-args' for documentation of the format of
-this variable.")
-
-(defvar org-babel-default-header-args:R '())
-(put 'org-babel-default-header-args:R 'safe-local-variable
-     (org-babel-header-args-safe-fn ob-R-safe-header-args))
-
-(defcustom org-babel-R-command "R --slave --no-save"
-  "Name of command to use for executing R code."
-  :group 'org-babel
-  :version "24.1"
-  :type 'string)
-
-(defvar ess-current-process-name) ; dynamically scoped
-(defvar ess-local-process-name)   ; dynamically scoped
-(defun org-babel-edit-prep:R (info)
-  (let ((session (cdr (assq :session (nth 2 info)))))
-    (when (and session
-	       (string-prefix-p "*"  session)
-	       (string-suffix-p "*" session))
-      (org-babel-R-initiate-session session nil))))
-
-;; The usage of utils::read.table() ensures that the command
-;; read.table() can be found even in circumstances when the utils
-;; package is not in the search path from R.
-(defconst ob-R-transfer-variable-table-with-header
-  "%s <- local({
-     con <- textConnection(
-       %S
-     )
-     res <- utils::read.table(
-       con,
-       header    = %s,
-       row.names = %s,
-       sep       = \"\\t\",
-       as.is     = TRUE
-     )
-     close(con)
-     res
-   })"
-  "R code used to transfer a table defined as a variable from org to R.
-
-This function is used when the table contains a header.")
-
-(defconst ob-R-transfer-variable-table-without-header
-  "%s <- local({
-     con <- textConnection(
-       %S
-     )
-     res <- utils::read.table(
-       con,
-       header    = %s,
-       row.names = %s,
-       sep       = \"\\t\",
-       as.is     = TRUE,
-       fill      = TRUE,
-       col.names = paste(\"V\", seq_len(%d), sep =\"\")
-     )
-     close(con)
-     res
-   })"
-  "R code used to transfer a table defined as a variable from org to R.
-
-This function is used when the table does not contain a header.")
-
-(defun org-babel-expand-body:R (body params &optional _graphics-file)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (mapconcat 'identity
-	     (append
-	      (when (cdr (assq :prologue params))
-		(list (cdr (assq :prologue params))))
-	      (org-babel-variable-assignments:R params)
-	      (list body)
-	      (when (cdr (assq :epilogue params))
-		(list (cdr (assq :epilogue params)))))
-	     "\n"))
-
-(defun org-babel-execute:R (body params)
-  "Execute a block of R code.
-This function is called by `org-babel-execute-src-block'."
-  (save-excursion
-    (let* ((result-params (cdr (assq :result-params params)))
-	   (result-type (cdr (assq :result-type params)))
-           (session (org-babel-R-initiate-session
-		     (cdr (assq :session params)) params))
-	   (graphics-file (and (member "graphics" (assq :result-params params))
-			       (org-babel-graphical-output-file params)))
-	   (colnames-p (unless graphics-file (cdr (assq :colnames params))))
-	   (rownames-p (unless graphics-file (cdr (assq :rownames params))))
-	   (full-body
-	    (let ((inside
-		   (list (org-babel-expand-body:R body params graphics-file))))
-	      (mapconcat 'identity
-			 (if graphics-file
-			     (append
-			      (list (org-babel-R-construct-graphics-device-call
-				     graphics-file params))
-			      inside
-			      (list "},error=function(e){plot(x=-1:1, y=-1:1, type='n', xlab='', ylab='', axes=FALSE); text(x=0, y=0, labels=e$message, col='red'); paste('ERROR', e$message, sep=' : ')}); dev.off()"))
-			   inside)
-			 "\n")))
-	   (result
-	    (org-babel-R-evaluate
-	     session full-body result-type result-params
-	     (or (equal "yes" colnames-p)
-		 (org-babel-pick-name
-		  (cdr (assq :colname-names params)) colnames-p))
-	     (or (equal "yes" rownames-p)
-		 (org-babel-pick-name
-		  (cdr (assq :rowname-names params)) rownames-p)))))
-      (if graphics-file nil result))))
-
-(defun org-babel-prep-session:R (session params)
-  "Prepare SESSION according to the header arguments specified in PARAMS."
-  (let* ((session (org-babel-R-initiate-session session params))
-	 (var-lines (org-babel-variable-assignments:R params)))
-    (org-babel-comint-in-buffer session
-      (mapc (lambda (var)
-              (end-of-line 1) (insert var) (comint-send-input nil t)
-              (org-babel-comint-wait-for-output session)) var-lines))
-    session))
-
-(defun org-babel-load-session:R (session body params)
-  "Load BODY into SESSION."
-  (save-window-excursion
-    (let ((buffer (org-babel-prep-session:R session params)))
-      (with-current-buffer buffer
-        (goto-char (process-mark (get-buffer-process (current-buffer))))
-        (insert (org-babel-chomp body)))
-      buffer)))
-
-;; helper functions
-
-(defun org-babel-variable-assignments:R (params)
-  "Return list of R statements assigning the block's variables."
-  (let ((vars (org-babel--get-vars params)))
-    (mapcar
-     (lambda (pair)
-       (org-babel-R-assign-elisp
-	(car pair) (cdr pair)
-	(equal "yes" (cdr (assq :colnames params)))
-	(equal "yes" (cdr (assq :rownames params)))))
-     (mapcar
-      (lambda (i)
-	(cons (car (nth i vars))
-	      (org-babel-reassemble-table
-	       (cdr (nth i vars))
-	       (cdr (nth i (cdr (assq :colname-names params))))
-	       (cdr (nth i (cdr (assq :rowname-names params)))))))
-      (number-sequence 0 (1- (length vars)))))))
-
-(defun org-babel-R-quote-tsv-field (s)
-  "Quote field S for export to R."
-  (if (stringp s)
-      (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
-    (format "%S" s)))
-
-(defun org-babel-R-assign-elisp (name value colnames-p rownames-p)
-  "Construct R code assigning the elisp VALUE to a variable named NAME."
-  (if (listp value)
-      (let* ((lengths (mapcar 'length (cl-remove-if-not 'sequencep value)))
-	     (max (if lengths (apply 'max lengths) 0))
-	     (min (if lengths (apply 'min lengths) 0)))
-        ;; Ensure VALUE has an orgtbl structure (depth of at least 2).
-        (unless (listp (car value)) (setq value (list value)))
-	(let ((file (orgtbl-to-tsv value '(:fmt org-babel-R-quote-tsv-field)))
-	      (header (if (or (eq (nth 1 value) 'hline) colnames-p)
-			  "TRUE" "FALSE"))
-	      (row-names (if rownames-p "1" "NULL")))
-	  (if (= max min)
-	      (format ob-R-transfer-variable-table-with-header
-		      name file header row-names)
-	    (format ob-R-transfer-variable-table-without-header
-		    name file header row-names max))))
-    (cond ((integerp value) (format "%s <- %s" name (concat (number-to-string value) "L")))
-	  ((floatp   value) (format "%s <- %s" name value))
-	  ((stringp  value) (format "%s <- %S" name (org-no-properties value)))
-	  (t                (format "%s <- %S" name (prin1-to-string value))))))
-
-
-(defvar ess-ask-for-ess-directory) ; dynamically scoped
-(defun org-babel-R-initiate-session (session params)
-  "If there is not a current R process then create one."
-  (unless (string= session "none")
-    (let ((session (or session "*R*"))
-	  (ess-ask-for-ess-directory
-	   (and (boundp 'ess-ask-for-ess-directory)
-		ess-ask-for-ess-directory
-		(not (cdr (assq :dir params))))))
-      (if (org-babel-comint-buffer-livep session)
-	  session
-	(save-window-excursion
-	  (when (get-buffer session)
-	    ;; Session buffer exists, but with dead process
-	    (set-buffer session))
-	  (require 'ess) (R)
-	  (let ((R-proc (get-process (or ess-local-process-name
-					 ess-current-process-name))))
-	    (while (process-get R-proc 'callbacks)
-	      (ess-wait-for-process R-proc)))
-	  (rename-buffer
-	   (if (bufferp session)
-	       (buffer-name session)
-	     (if (stringp session)
-		 session
-	       (buffer-name))))
-	  (current-buffer))))))
-
-(defun org-babel-R-associate-session (session)
-  "Associate R code buffer with an R session.
-Make SESSION be the inferior ESS process associated with the
-current code buffer."
-  (setq ess-local-process-name
-	(process-name (get-buffer-process session)))
-  (ess-make-buffer-current))
-
-(defvar org-babel-R-graphics-devices
-  '((:bmp "bmp" "filename")
-    (:jpg "jpeg" "filename")
-    (:jpeg "jpeg" "filename")
-    (:tikz "tikz" "file")
-    (:tiff "tiff" "filename")
-    (:png "png" "filename")
-    (:svg "svg" "file")
-    (:pdf "pdf" "file")
-    (:ps "postscript" "file")
-    (:postscript "postscript" "file"))
-  "An alist mapping graphics file types to R functions.
-
-Each member of this list is a list with three members:
-1. the file extension of the graphics file, as an elisp :keyword
-2. the R graphics device function to call to generate such a file
-3. the name of the argument to this function which specifies the
-   file to write to (typically \"file\" or \"filename\")")
-
-(defun org-babel-R-construct-graphics-device-call (out-file params)
-  "Construct the call to the graphics device."
-  (let* ((allowed-args '(:width :height :bg :units :pointsize
-				:antialias :quality :compression :res
-				:type :family :title :fonts :version
-				:paper :encoding :pagecentre :colormodel
-				:useDingbats :horizontal))
-	 (device (file-name-extension out-file))
-	 (device-info (or (assq (intern (concat ":" device))
-				org-babel-R-graphics-devices)
-                          (assq :png org-babel-R-graphics-devices)))
-        (extra-args (cdr (assq :R-dev-args params))) filearg args)
-    (setq device (nth 1 device-info))
-    (setq filearg (nth 2 device-info))
-    (setq args (mapconcat
-		(lambda (pair)
-		  (if (member (car pair) allowed-args)
-		      (format ",%s=%S"
-			      (substring (symbol-name (car pair)) 1)
-			      (cdr pair)) ""))
-		params ""))
-    (format "%s(%s=\"%s\"%s%s%s); tryCatch({"
-	    device filearg out-file args
-	    (if extra-args "," "") (or extra-args ""))))
-
-(defconst org-babel-R-eoe-indicator "'org_babel_R_eoe'")
-(defconst org-babel-R-eoe-output "[1] \"org_babel_R_eoe\"")
-
-(defconst org-babel-R-write-object-command "{
-    function(object,transfer.file) {
-        object
-        invisible(
-            if (
-                inherits(
-                    try(
-                        {
-                            tfile<-tempfile()
-                            write.table(object, file=tfile, sep=\"\\t\",
-                                        na=\"nil\",row.names=%s,col.names=%s,
-                                        quote=FALSE)
-                            file.rename(tfile,transfer.file)
-                        },
-                        silent=TRUE),
-                    \"try-error\"))
-                {
-                    if(!file.exists(transfer.file))
-                        file.create(transfer.file)
-                }
-            )
-    }
-}(object=%s,transfer.file=\"%s\")"
-  "A template for an R command to evaluate a block of code and write the result to a file.
-
-Has four %s escapes to be filled in:
-1. Row names, \"TRUE\" or \"FALSE\"
-2. Column names, \"TRUE\" or \"FALSE\"
-3. The code to be run (must be an expression, not a statement)
-4. The name of the file to write to")
-
-(defun org-babel-R-evaluate
-  (session body result-type result-params column-names-p row-names-p)
-  "Evaluate R code in BODY."
-  (if session
-      (org-babel-R-evaluate-session
-       session body result-type result-params column-names-p row-names-p)
-    (org-babel-R-evaluate-external-process
-     body result-type result-params column-names-p row-names-p)))
-
-(defun org-babel-R-evaluate-external-process
-    (body result-type result-params column-names-p row-names-p)
-  "Evaluate BODY in external R process.
-If RESULT-TYPE equals `output' then return standard output as a
-string.  If RESULT-TYPE equals `value' then return the value of the
-last statement in BODY, as elisp."
-  (cl-case result-type
-    (value
-     (let ((tmp-file (org-babel-temp-file "R-")))
-       (org-babel-eval org-babel-R-command
-		       (format org-babel-R-write-object-command
-			       (if row-names-p "TRUE" "FALSE")
-			       (if column-names-p
-				   (if row-names-p "NA" "TRUE")
-				 "FALSE")
-			       (format "{function ()\n{\n%s\n}}()" body)
-			       (org-babel-process-file-name tmp-file 'noquote)))
-       (org-babel-R-process-value-result
-	(org-babel-result-cond result-params
-	  (with-temp-buffer
-	    (insert-file-contents tmp-file)
-	    (org-babel-chomp (buffer-string) "\n"))
-	  (org-babel-import-elisp-from-file tmp-file '(16)))
-	column-names-p)))
-    (output (org-babel-eval org-babel-R-command body))))
-
-(defvar ess-eval-visibly-p)
-
-(defun org-babel-R-evaluate-session
-    (session body result-type result-params column-names-p row-names-p)
-  "Evaluate BODY in SESSION.
-If RESULT-TYPE equals `output' then return standard output as a
-string.  If RESULT-TYPE equals `value' then return the value of the
-last statement in BODY, as elisp."
-  (cl-case result-type
-    (value
-     (with-temp-buffer
-       (insert (org-babel-chomp body))
-       (let ((ess-local-process-name
-	      (process-name (get-buffer-process session)))
-	     (ess-eval-visibly-p nil))
-	 (ess-eval-buffer nil)))
-     (let ((tmp-file (org-babel-temp-file "R-")))
-       (org-babel-comint-eval-invisibly-and-wait-for-file
-	session tmp-file
-	(format org-babel-R-write-object-command
-		(if row-names-p "TRUE" "FALSE")
-		(if column-names-p
-		    (if row-names-p "NA" "TRUE")
-		  "FALSE")
-		".Last.value" (org-babel-process-file-name tmp-file 'noquote)))
-       (org-babel-R-process-value-result
-	(org-babel-result-cond result-params
-	  (with-temp-buffer
-	    (insert-file-contents tmp-file)
-	    (org-babel-chomp (buffer-string) "\n"))
-	  (org-babel-import-elisp-from-file tmp-file '(16)))
-	column-names-p)))
-    (output
-     (mapconcat
-      'org-babel-chomp
-      (butlast
-       (delq nil
-	     (mapcar
-	      (lambda (line) (when (> (length line) 0) line))
-	      (mapcar
-	       (lambda (line) ;; cleanup extra prompts left in output
-		 (if (string-match
-		      "^\\([>+.]\\([ ][>.+]\\)*[ ]\\)"
-		      (car (split-string line "\n")))
-		     (substring line (match-end 1))
-		   line))
-	       (org-babel-comint-with-output (session org-babel-R-eoe-output)
-		 (insert (mapconcat 'org-babel-chomp
-				    (list body org-babel-R-eoe-indicator)
-				    "\n"))
-		 (inferior-ess-send-input)))))) "\n"))))
-
-(defun org-babel-R-process-value-result (result column-names-p)
-  "R-specific processing of return value.
-Insert hline if column names in output have been requested."
-  (if column-names-p
-      (cons (car result) (cons 'hline (cdr result)))
-    result))
-
-(provide 'ob-R)
-
-
-
-;;; ob-R.el ends here
diff --git a/elpa/org-9.1.14/ob-R.elc b/elpa/org-9.1.14/ob-R.elc
deleted file mode 100644
index 4ee0219..0000000
--- a/elpa/org-9.1.14/ob-R.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-abc.el b/elpa/org-9.1.14/ob-abc.el
deleted file mode 100644
index 75881cc..0000000
--- a/elpa/org-9.1.14/ob-abc.el
+++ /dev/null
@@ -1,90 +0,0 @@
-;;; ob-abc.el --- Org Babel Functions for ABC -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2018 Free Software Foundation, Inc.
-
-;; Author: William Waites
-;; Keywords: literate programming, music
-;; Homepage: http://www.tardis.ed.ac.uk/wwaites
-;; Version: 0.01
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;;; This file adds support to Org Babel for music in ABC notation.
-;;; It requires that the abcm2ps program is installed.
-;;; See http://moinejf.free.fr/
-
-(require 'ob)
-
-;; optionally define a file extension for this language
-(add-to-list 'org-babel-tangle-lang-exts '("abc" . "abc"))
-
-;; optionally declare default header arguments for this language
-(defvar org-babel-default-header-args:abc
-  '((:results . "file") (:exports . "results"))
-  "Default arguments to use when evaluating an ABC source block.")
-
-(defun org-babel-expand-body:abc (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let ((vars (org-babel--get-vars params)))
-    (mapc
-     (lambda (pair)
-       (let ((name (symbol-name (car pair)))
-	     (value (cdr pair)))
-	 (setq body
-	       (replace-regexp-in-string
-		(concat "\$" (regexp-quote name))
-		(if (stringp value) value (format "%S" value))
-		body))))
-     vars)
-    body))
-
-(defun org-babel-execute:abc (body params)
-  "Execute a block of ABC code with org-babel.  This function is
-   called by `org-babel-execute-src-block'"
-  (message "executing Abc source code block")
-  (let* ((cmdline (cdr (assq :cmdline params)))
-	 (out-file (let ((file (cdr (assq :file params))))
-		     (if file (replace-regexp-in-string "\.pdf$" ".ps" file)
-		       (error "abc code block requires :file header argument"))))
-	 (in-file (org-babel-temp-file "abc-"))
-	 (render (concat "abcm2ps" " " cmdline
-		      " -O " (org-babel-process-file-name out-file)
-		      " " (org-babel-process-file-name in-file))))
-    (with-temp-file in-file (insert (org-babel-expand-body:abc body params)))
-    (org-babel-eval render "")
-    ;;; handle where abcm2ps changes the file name (to support multiple files
-    (when (or (string= (file-name-extension out-file) "eps")
-	      (string= (file-name-extension out-file) "svg"))
-      (rename-file (concat
-		    (file-name-sans-extension out-file) "001."
-		    (file-name-extension out-file))
-		   out-file t))
-    ;;; if we were asked for a pdf...
-    (when (string= (file-name-extension (cdr (assq :file params))) "pdf")
-      (org-babel-eval (concat "ps2pdf" " " out-file " " (cdr (assq :file params))) ""))
-    ;;; indicate that the file has been written
-    nil))
-
-;; This function should be used to assign any variables in params in
-;; the context of the session environment.
-(defun org-babel-prep-session:abc (_session _params)
-  "Return an error because abc does not support sessions."
-  (error "ABC does not support sessions"))
-
-(provide 'ob-abc)
-;;; ob-abc.el ends here
diff --git a/elpa/org-9.1.14/ob-abc.elc b/elpa/org-9.1.14/ob-abc.elc
deleted file mode 100644
index 7ac84d5..0000000
--- a/elpa/org-9.1.14/ob-abc.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-asymptote.el b/elpa/org-9.1.14/ob-asymptote.el
deleted file mode 100644
index 84e2364..0000000
--- a/elpa/org-9.1.14/ob-asymptote.el
+++ /dev/null
@@ -1,139 +0,0 @@
-;;; ob-asymptote.el --- Babel Functions for Asymptote -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating asymptote source code.
-;;
-;; This differs from most standard languages in that
-;;
-;; 1) there is no such thing as a "session" in asymptote
-;;
-;; 2) we are generally only going to return results of type "file"
-;;
-;; 3) we are adding the "file" and "cmdline" header arguments, if file
-;;    is omitted then the -V option is passed to the asy command for
-;;    interactive viewing
-
-;;; Requirements:
-
-;; - The asymptote program :: http://asymptote.sourceforge.net/
-;;
-;; - asy-mode :: Major mode for editing asymptote files
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("asymptote" . "asy"))
-
-(defvar org-babel-default-header-args:asymptote
-  '((:results . "file") (:exports . "results"))
-  "Default arguments when evaluating an Asymptote source block.")
-
-(defun org-babel-execute:asymptote (body params)
-  "Execute a block of Asymptote code.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((out-file (cdr (assq :file params)))
-         (format (or (file-name-extension out-file)
-                     "pdf"))
-         (cmdline (cdr (assq :cmdline params)))
-         (in-file (org-babel-temp-file "asymptote-"))
-         (cmd
-	  (concat "asy "
-		  (if out-file
-		      (concat
-		       "-globalwrite -f " format
-		       " -o " (org-babel-process-file-name out-file))
-		    "-V")
-		  " " cmdline
-		  " " (org-babel-process-file-name in-file))))
-    (with-temp-file in-file
-      (insert (org-babel-expand-body:generic
-	       body params
-	       (org-babel-variable-assignments:asymptote params))))
-    (message cmd) (shell-command cmd)
-    nil)) ;; signal that output has already been written to file
-
-(defun org-babel-prep-session:asymptote (_session _params)
-  "Return an error if the :session header argument is set.
-Asymptote does not support sessions"
-  (error "Asymptote does not support sessions"))
-
-(defun org-babel-variable-assignments:asymptote (params)
-  "Return list of asymptote statements assigning the block's variables."
-  (mapcar #'org-babel-asymptote-var-to-asymptote
-	  (org-babel--get-vars params)))
-
-(defun org-babel-asymptote-var-to-asymptote (pair)
-  "Convert an elisp value into an Asymptote variable.
-The elisp value PAIR is converted into Asymptote code specifying
-a variable of the same value."
-  (let ((var (car pair))
-        (val (let ((v (cdr pair)))
-	       (if (symbolp v) (symbol-name v) v))))
-    (cond
-     ((integerp val)
-      (format "int %S=%S;" var val))
-     ((floatp val)
-      (format "real %S=%S;" var val))
-     ((stringp val)
-      (format "string %S=\"%s\";" var val))
-     ((and (listp val) (not (listp (car val))))
-      (let* ((type (org-babel-asymptote-define-type val))
-	     (fmt (if (eq 'string type) "\"%s\"" "%s"))
-	     (vect (mapconcat (lambda (e) (format fmt e)) val ", ")))
-	(format "%s[] %S={%s};" type var vect)))
-     ((listp val)
-      (let* ((type (org-babel-asymptote-define-type val))
-	     (fmt (if (eq 'string type) "\"%s\"" "%s"))
-             (array (mapconcat (lambda (row)
-				 (concat "{"
-					 (mapconcat (lambda (e) (format fmt e))
-						    row ", ")
-					 "}"))
-			       val ",")))
-        (format "%S[][] %S={%s};" type var array))))))
-
-(defun org-babel-asymptote-define-type (data)
-  "Determine type of DATA.
-
-DATA is a list.  Return type as a symbol.
-
-The type is `string' if any element in DATA is a string.
-Otherwise, it is either `real', if some elements are floats, or
-`int'."
-  (letrec ((type 'int)
-	   (find-type
-	    (lambda (row)
-	      (dolist (e row type)
-		(cond ((listp e) (setq type (funcall find-type e)))
-		      ((stringp e) (throw 'exit 'string))
-		      ((floatp e) (setq type 'real)))))))
-    (catch 'exit (funcall find-type data)) type))
-
-(provide 'ob-asymptote)
-
-
-
-;;; ob-asymptote.el ends here
diff --git a/elpa/org-9.1.14/ob-asymptote.elc b/elpa/org-9.1.14/ob-asymptote.elc
deleted file mode 100644
index 2b24caf..0000000
--- a/elpa/org-9.1.14/ob-asymptote.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-awk.el b/elpa/org-9.1.14/ob-awk.el
deleted file mode 100644
index 1ee4552..0000000
--- a/elpa/org-9.1.14/ob-awk.el
+++ /dev/null
@@ -1,111 +0,0 @@
-;;; ob-awk.el --- Babel Functions for Awk            -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Babel's awk can use special header argument:
-;;
-;; - :in-file takes a path to a file of data to be processed by awk
-;;
-;; - :stdin takes an Org data or code block reference, the value of
-;;          which will be passed to the awk process through STDIN
-
-;;; Code:
-(require 'ob)
-(require 'org-compat)
-
-(declare-function org-babel-ref-resolve "ob-ref" (ref))
-(declare-function orgtbl-to-generic "org-table" (table params))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("awk" . "awk"))
-
-(defvar org-babel-awk-command "awk"
-  "Name of the awk executable command.")
-
-(defun org-babel-expand-body:awk (body _params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  body)
-
-(defun org-babel-execute:awk (body params)
-  "Execute a block of Awk code with org-babel.  This function is
-called by `org-babel-execute-src-block'"
-  (message "executing Awk source code block")
-  (let* ((result-params (cdr (assq :result-params params)))
-         (cmd-line (cdr (assq :cmd-line params)))
-         (in-file (cdr (assq :in-file params)))
-	 (full-body (org-babel-expand-body:awk body params))
-	 (code-file (let ((file (org-babel-temp-file "awk-")))
-                      (with-temp-file file (insert full-body)) file))
-	 (stdin (let ((stdin (cdr (assq :stdin params))))
-		   (when stdin
-		     (let ((tmp (org-babel-temp-file "awk-stdin-"))
-			   (res (org-babel-ref-resolve stdin)))
-		       (with-temp-file tmp
-			 (insert (org-babel-awk-var-to-awk res)))
-		       tmp))))
-         (cmd (mapconcat #'identity
-			 (append
-			  (list org-babel-awk-command
-				"-f" code-file cmd-line)
-			  (mapcar (lambda (pair)
-				    (format "-v %s='%s'"
-					    (car pair)
-					    (org-babel-awk-var-to-awk
-					     (cdr pair))))
-				  (org-babel--get-vars params))
-			  (list in-file))
-			 " ")))
-    (org-babel-reassemble-table
-     (let ((results
-            (cond
-             (stdin (with-temp-buffer
-                      (call-process-shell-command cmd stdin (current-buffer))
-                      (buffer-string)))
-             (t (org-babel-eval cmd "")))))
-       (when results
-         (org-babel-result-cond result-params
-	   results
-	   (let ((tmp (org-babel-temp-file "awk-results-")))
-	     (with-temp-file tmp (insert results))
-	     (org-babel-import-elisp-from-file tmp)))))
-     (org-babel-pick-name
-      (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-     (org-babel-pick-name
-      (cdr (assq :rowname-names params)) (cdr (assq :rownames params))))))
-
-(defun org-babel-awk-var-to-awk (var &optional sep)
-  "Return a printed value of VAR suitable for parsing with awk."
-  (let ((echo-var (lambda (v) (if (stringp v) v (format "%S" v)))))
-    (cond
-     ((and (listp var) (listp (car var)))
-      (orgtbl-to-generic var  (list :sep (or sep "\t") :fmt echo-var)))
-     ((listp var)
-      (mapconcat echo-var var "\n"))
-     (t (funcall echo-var var)))))
-
-(provide 'ob-awk)
-
-
-
-;;; ob-awk.el ends here
diff --git a/elpa/org-9.1.14/ob-awk.elc b/elpa/org-9.1.14/ob-awk.elc
deleted file mode 100644
index fff3471..0000000
--- a/elpa/org-9.1.14/ob-awk.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-calc.el b/elpa/org-9.1.14/ob-calc.el
deleted file mode 100644
index 387cba2..0000000
--- a/elpa/org-9.1.14/ob-calc.el
+++ /dev/null
@@ -1,110 +0,0 @@
-;;; ob-calc.el --- Babel Functions for Calc          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating calc code
-
-;;; Code:
-(require 'ob)
-(require 'calc)
-(require 'calc-trail)
-(require 'calc-store)
-
-(declare-function calc-store-into    "calc-store" (&optional var))
-(declare-function calc-recall        "calc-store" (&optional var))
-(declare-function math-evaluate-expr "calc-ext"   (x))
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-default-header-args:calc nil
-  "Default arguments for evaluating a calc source block.")
-
-(defun org-babel-expand-body:calc (body _params)
-  "Expand BODY according to PARAMS, return the expanded body." body)
-
-(defvar org--var-syms) ; Dynamically scoped from org-babel-execute:calc
-
-(defun org-babel-execute:calc (body params)
-  "Execute a block of calc code with Babel."
-  (unless (get-buffer "*Calculator*")
-    (save-window-excursion (calc) (calc-quit)))
-  (let* ((vars (org-babel--get-vars params))
-	 (org--var-syms (mapcar #'car vars))
-	 (var-names (mapcar #'symbol-name org--var-syms)))
-    (mapc
-     (lambda (pair)
-       (calc-push-list (list (cdr pair)))
-       (calc-store-into (car pair)))
-     vars)
-    (mapc
-     (lambda (line)
-       (when (> (length line) 0)
-	 (cond
-	  ;; simple variable name
-	  ((member line var-names) (calc-recall (intern line)))
-	  ;; stack operation
-	  ((string= "'" (substring line 0 1))
-	   (funcall (lookup-key calc-mode-map (substring line 1)) nil))
-	  ;; complex expression
-	  (t
-	   (calc-push-list
-	    (list (let ((res (calc-eval line)))
-                    (cond
-                     ((numberp res) res)
-                     ((math-read-number res) (math-read-number res))
-                     ((listp res) (error "Calc error \"%s\" on input \"%s\""
-                                         (cadr res) line))
-                     (t (replace-regexp-in-string
-                         "'" ""
-                         (calc-eval
-                          (math-evaluate-expr
-                           ;; resolve user variables, calc built in
-                           ;; variables are handled automatically
-                           ;; upstream by calc
-                           (mapcar #'org-babel-calc-maybe-resolve-var
-                                   ;; parse line into calc objects
-                                   (car (math-read-exprs line)))))))))
-                  ))))))
-     (mapcar #'org-trim
-	     (split-string (org-babel-expand-body:calc body params) "[\n\r]"))))
-  (save-excursion
-    (with-current-buffer (get-buffer "*Calculator*")
-      (prog1
-        (calc-eval (calc-top 1))
-        (calc-pop 1)))))
-
-(defun org-babel-calc-maybe-resolve-var (el)
-  (if (consp el)
-      (if (and (eq 'var (car el)) (member (cadr el) org--var-syms))
-	  (progn
-	    (calc-recall (cadr el))
-	    (prog1 (calc-top 1)
-	      (calc-pop 1)))
-	(mapcar #'org-babel-calc-maybe-resolve-var el))
-    el))
-
-(provide 'ob-calc)
-
-
-
-;;; ob-calc.el ends here
diff --git a/elpa/org-9.1.14/ob-calc.elc b/elpa/org-9.1.14/ob-calc.elc
deleted file mode 100644
index 7f842c7..0000000
--- a/elpa/org-9.1.14/ob-calc.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-clojure.el b/elpa/org-9.1.14/ob-clojure.el
deleted file mode 100644
index 890f60a..0000000
--- a/elpa/org-9.1.14/ob-clojure.el
+++ /dev/null
@@ -1,198 +0,0 @@
-;;; ob-clojure.el --- Babel Functions for Clojure    -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Joel Boehland, Eric Schulte, Oleh Krehel, Frederick Giasson
-;;
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Support for evaluating clojure code
-
-;; Requirements:
-
-;; - clojure (at least 1.2.0)
-;; - clojure-mode
-;; - either cider or SLIME
-
-;; For Cider, see https://github.com/clojure-emacs/cider
-
-;; For SLIME, the best way to install these components is by following
-;; the directions as set out by Phil Hagelberg (Technomancy) on the
-;; web page: http://technomancy.us/126
-
-;;; Code:
-(require 'cl-lib)
-(require 'ob)
-
-(declare-function cider-current-connection "ext:cider-client" (&optional type))
-(declare-function cider-current-ns "ext:cider-client" ())
-(declare-function nrepl--merge "ext:nrepl-client" (dict1 dict2))
-(declare-function nrepl-dict-get "ext:nrepl-client" (dict key))
-(declare-function nrepl-dict-put "ext:nrepl-client" (dict key value))
-(declare-function nrepl-request:eval "ext:nrepl-client"
-		  (input callback connection &optional session ns line column additional-params))
-(declare-function nrepl-sync-request:eval "ext:nrepl-client"
-		  (input connection session &optional ns))
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function slime-eval "ext:slime" (sexp &optional package))
-
-(defvar nrepl-sync-request-timeout)
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("clojure" . "clj"))
-
-(defvar org-babel-default-header-args:clojure '())
-(defvar org-babel-header-args:clojure '((package . :any)))
-
-(defcustom org-babel-clojure-sync-nrepl-timeout 10
-  "Timeout value, in seconds, of a Clojure sync call.
-If the value is nil, timeout is disabled."
-  :group 'org-babel
-  :type 'integer
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :safe #'wholenump)
-
-(defcustom org-babel-clojure-backend
-  (cond ((featurep 'cider) 'cider)
-	(t 'slime))
-  "Backend used to evaluate Clojure code blocks."
-  :group 'org-babel
-  :type '(choice
-	  (const :tag "cider" cider)
-	  (const :tag "SLIME" slime)))
-
-(defun org-babel-expand-body:clojure (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let* ((vars (org-babel--get-vars params))
-	 (result-params (cdr (assq :result-params params)))
-	 (print-level nil) (print-length nil)
-	 (body (org-trim
-		(if (null vars) (org-trim body)
-		  (concat "(let ["
-			  (mapconcat
-			   (lambda (var)
-			     (format "%S (quote %S)" (car var) (cdr var)))
-			   vars "\n      ")
-			  "]\n" body ")")))))
-    (if (or (member "code" result-params)
-	    (member "pp" result-params))
-	(format "(clojure.pprint/pprint (do %s))" body)
-      body)))
-
-(defun org-babel-execute:clojure (body params)
-  "Execute a block of Clojure code with Babel.
-The underlying process performed by the code block can be output
-using the :show-process parameter."
-  (let ((expanded (org-babel-expand-body:clojure body params))
-	(response (list 'dict))
-        result)
-    (cl-case org-babel-clojure-backend
-      (cider
-       (require 'cider)
-       (let ((result-params (cdr (assq :result-params params)))
-	     (show (cdr (assq :show-process params))))
-         (if (member show '(nil "no"))
-	     ;; Run code without showing the process.
-	     (progn
-	       (setq response
-		     (let ((nrepl-sync-request-timeout
-			    org-babel-clojure-sync-nrepl-timeout))
-		       (nrepl-sync-request:eval expanded
-						(cider-current-connection)
-						(cider-current-ns))))
-	       (setq result
-		     (concat
-		      (nrepl-dict-get response
-				      (if (or (member "output" result-params)
-					      (member "pp" result-params))
-					  "out"
-					"value"))
-		      (nrepl-dict-get response "ex")
-		      (nrepl-dict-get response "root-ex")
-		      (nrepl-dict-get response "err"))))
-	   ;; Show the process in an output buffer/window.
-           (let ((process-buffer (switch-to-buffer-other-window
-				  "*Clojure Show Process Sub Buffer*"))
-		 status)
-	     ;; Run the Clojure code in nREPL.
-	     (nrepl-request:eval
-	      expanded
-	      (lambda (resp)
-		(when (member "out" resp)
-		  ;; Print the output of the nREPL in the output buffer.
-		  (princ (nrepl-dict-get resp "out") process-buffer))
-		(when (member "ex" resp)
-		  ;; In case there is an exception, then add it to the
-		  ;; output buffer as well.
-		  (princ (nrepl-dict-get resp "ex") process-buffer)
-		  (princ (nrepl-dict-get resp "root-ex") process-buffer))
-		(when (member "err" resp)
-		  ;; In case there is an error, then add it to the
-		  ;; output buffer as well.
-		  (princ (nrepl-dict-get resp "err") process-buffer))
-		(nrepl--merge response resp)
-		;; Update the status of the nREPL output session.
-		(setq status (nrepl-dict-get response "status")))
-	      (cider-current-connection)
-	      (cider-current-ns))
-
-	     ;; Wait until the nREPL code finished to be processed.
-	     (while (not (member "done" status))
-	       (nrepl-dict-put response "status" (remove "need-input" status))
-	       (accept-process-output nil 0.01)
-	       (redisplay))
-
-	     ;; Delete the show buffer & window when the processing is
-	     ;; finalized.
-	     (mapc #'delete-window
-		   (get-buffer-window-list process-buffer nil t))
-	     (kill-buffer process-buffer)
-
-	     ;; Put the output or the value in the result section of
-	     ;; the code block.
-	     (setq result
-		   (concat
-		    (nrepl-dict-get response
-				    (if (or (member "output" result-params)
-					    (member "pp" result-params))
-					"out"
-				      "value"))
-		    (nrepl-dict-get response "ex")
-		    (nrepl-dict-get response "root-ex")
-		    (nrepl-dict-get response "err")))))))
-      (slime
-       (require 'slime)
-       (with-temp-buffer
-	 (insert expanded)
-	 (setq result
-	       (slime-eval
-		`(swank:eval-and-grab-output
-		  ,(buffer-substring-no-properties (point-min) (point-max)))
-		(cdr (assq :package params)))))))
-    (org-babel-result-cond (cdr (assq :result-params params))
-      result
-      (condition-case nil (org-babel-script-escape result)
-	(error result)))))
-
-(provide 'ob-clojure)
-
-;;; ob-clojure.el ends here
diff --git a/elpa/org-9.1.14/ob-clojure.elc b/elpa/org-9.1.14/ob-clojure.elc
deleted file mode 100644
index 837368a..0000000
--- a/elpa/org-9.1.14/ob-clojure.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-comint.el b/elpa/org-9.1.14/ob-comint.el
deleted file mode 100644
index e9c6f93..0000000
--- a/elpa/org-9.1.14/ob-comint.el
+++ /dev/null
@@ -1,156 +0,0 @@
-;;; ob-comint.el --- Babel Functions for Interaction with Comint Buffers -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research, comint
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; These functions build on comint to ease the sending and receiving
-;; of commands and results from comint buffers.
-
-;; Note that the buffers in this file are analogous to sessions in
-;; org-babel at large.
-
-;;; Code:
-(require 'ob-core)
-(require 'org-compat)
-(require 'comint)
-
-(defun org-babel-comint-buffer-livep (buffer)
-  "Check if BUFFER is a comint buffer with a live process."
-  (let ((buffer (if buffer (get-buffer buffer))))
-    (and buffer (buffer-live-p buffer) (get-buffer-process buffer) buffer)))
-
-(defmacro org-babel-comint-in-buffer (buffer &rest body)
-  "Check BUFFER and execute BODY.
-BUFFER is checked with `org-babel-comint-buffer-livep'.  BODY is
-executed inside the protection of `save-excursion' and
-`save-match-data'."
-  (declare (indent 1))
-  `(progn
-     (unless (org-babel-comint-buffer-livep ,buffer)
-       (error "Buffer %s does not exist or has no process" ,buffer))
-     (save-match-data
-       (with-current-buffer ,buffer
-	 (save-excursion
-	   (let ((comint-input-filter (lambda (_input) nil)))
-	     ,@body))))))
-(def-edebug-spec org-babel-comint-in-buffer (form body))
-
-(defmacro org-babel-comint-with-output (meta &rest body)
-  "Evaluate BODY in BUFFER and return process output.
-Will wait until EOE-INDICATOR appears in the output, then return
-all process output.  If REMOVE-ECHO and FULL-BODY are present and
-non-nil, then strip echo'd body from the returned output.  META
-should be a list containing the following where the last two
-elements are optional.
-
- (BUFFER EOE-INDICATOR REMOVE-ECHO FULL-BODY)
-
-This macro ensures that the filter is removed in case of an error
-or user `keyboard-quit' during execution of body."
-  (declare (indent 1))
-  (let ((buffer (nth 0 meta))
-	(eoe-indicator (nth 1 meta))
-	(remove-echo (nth 2 meta))
-	(full-body (nth 3 meta)))
-    `(org-babel-comint-in-buffer ,buffer
-       (let* ((string-buffer "")
-	      (comint-output-filter-functions
-	       (cons (lambda (text) (setq string-buffer (concat string-buffer text)))
-		     comint-output-filter-functions))
-	      dangling-text)
-	 ;; got located, and save dangling text
-	 (goto-char (process-mark (get-buffer-process (current-buffer))))
-	 (let ((start (point))
-	       (end (point-max)))
-	   (setq dangling-text (buffer-substring start end))
-	   (delete-region start end))
-	 ;; pass FULL-BODY to process
-	 ,@body
-	 ;; wait for end-of-evaluation indicator
-	 (while (progn
-		  (goto-char comint-last-input-end)
-		  (not (save-excursion
-			 (and (re-search-forward
-			       (regexp-quote ,eoe-indicator) nil t)
-			      (re-search-forward
-			       comint-prompt-regexp nil t)))))
-	   (accept-process-output (get-buffer-process (current-buffer)))
-	   ;; thought the following this would allow async
-	   ;; background running, but I was wrong...
-	   ;; (run-with-timer .5 .5 'accept-process-output
-	   ;; 		 (get-buffer-process (current-buffer)))
-	   )
-	 ;; replace cut dangling text
-	 (goto-char (process-mark (get-buffer-process (current-buffer))))
-	 (insert dangling-text)
-
-	 ;; remove echo'd FULL-BODY from input
-	 (when (and ,remove-echo ,full-body
-		    (string-match
-		     (replace-regexp-in-string
-		      "\n" "[\r\n]+" (regexp-quote (or ,full-body "")))
-		     string-buffer))
-	   (setq string-buffer (substring string-buffer (match-end 0))))
-	 (split-string string-buffer comint-prompt-regexp)))))
-(def-edebug-spec org-babel-comint-with-output (sexp body))
-
-(defun org-babel-comint-input-command (buffer cmd)
-  "Pass CMD to BUFFER.
-The input will not be echoed."
-  (org-babel-comint-in-buffer buffer
-    (goto-char (process-mark (get-buffer-process buffer)))
-    (insert cmd)
-    (comint-send-input)
-    (org-babel-comint-wait-for-output buffer)))
-
-(defun org-babel-comint-wait-for-output (buffer)
-  "Wait until output arrives from BUFFER.
-Note: this is only safe when waiting for the result of a single
-statement (not large blocks of code)."
-  (org-babel-comint-in-buffer buffer
-    (while (progn
-             (goto-char comint-last-input-end)
-             (not (and (re-search-forward comint-prompt-regexp nil t)
-                       (goto-char (match-beginning 0))
-                       (string= (face-name (face-at-point))
-                                "comint-highlight-prompt"))))
-      (accept-process-output (get-buffer-process buffer)))))
-
-(defun org-babel-comint-eval-invisibly-and-wait-for-file
-  (buffer file string &optional period)
-  "Evaluate STRING in BUFFER invisibly.
-Don't return until FILE exists.  Code in STRING must ensure that
-FILE exists at end of evaluation."
-  (unless (org-babel-comint-buffer-livep buffer)
-    (error "Buffer %s does not exist or has no process" buffer))
-  (when (file-exists-p file) (delete-file file))
-  (process-send-string
-   (get-buffer-process buffer)
-   (if (= (aref string (1- (length string))) ?\n) string (concat string "\n")))
-  (while (not (file-exists-p file)) (sit-for (or period 0.25))))
-
-(provide 'ob-comint)
-
-
-
-;;; ob-comint.el ends here
diff --git a/elpa/org-9.1.14/ob-comint.elc b/elpa/org-9.1.14/ob-comint.elc
deleted file mode 100644
index 5f59dff..0000000
--- a/elpa/org-9.1.14/ob-comint.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-coq.el b/elpa/org-9.1.14/ob-coq.el
deleted file mode 100644
index 875c794..0000000
--- a/elpa/org-9.1.14/ob-coq.el
+++ /dev/null
@@ -1,78 +0,0 @@
-;;; ob-coq.el --- Babel Functions for Coq            -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Rudimentary support for evaluating Coq code blocks.  Currently only
-;; session evaluation is supported.  Requires both coq.el and
-;; coq-inferior.el, both of which are distributed with Coq.
-;;
-;; http://coq.inria.fr/
-
-;;; Code:
-(require 'ob)
-
-(declare-function run-coq "ext:coq-inferior.el" (cmd))
-(declare-function coq-proc "ext:coq-inferior.el" ())
-
-(defvar coq-program-name "coqtop"
-  "Name of the coq toplevel to run.")
-
-(defvar org-babel-coq-buffer "*coq*"
-  "Buffer in which to evaluate coq code blocks.")
-
-(defun org-babel-coq-clean-prompt (string)
-  (if (string-match "^[^[:space:]]+ < " string)
-      (substring string 0 (match-beginning 0))
-    string))
-
-(defun org-babel-execute:coq (body params)
-  (let ((full-body (org-babel-expand-body:generic body params))
-	(session (org-babel-coq-initiate-session))
-	(pt (lambda ()
-	      (marker-position
-	       (process-mark (get-buffer-process (current-buffer)))))))
-    (org-babel-coq-clean-prompt
-     (org-babel-comint-in-buffer session
-       (let ((start (funcall pt)))
-	 (with-temp-buffer
-	   (insert full-body)
-	   (comint-send-region (coq-proc) (point-min) (point-max))
-	   (comint-send-string (coq-proc)
-	    (if (string= (buffer-substring (- (point-max) 1) (point-max)) ".")
-		"\n"
-	      ".\n")))
-	 (while (equal start (funcall pt)) (sleep-for 0.1))
-	 (buffer-substring start (funcall pt)))))))
-
-(defun org-babel-coq-initiate-session ()
-  "Initiate a coq session.
-If there is not a current inferior-process-buffer in SESSION then
-create one.  Return the initialized session."
-  (unless (fboundp 'run-coq)
-    (error "`run-coq' not defined, load coq-inferior.el"))
-  (save-window-excursion (run-coq coq-program-name))
-  (sit-for 0.1)
-  (get-buffer org-babel-coq-buffer))
-
-(provide 'ob-coq)
diff --git a/elpa/org-9.1.14/ob-coq.elc b/elpa/org-9.1.14/ob-coq.elc
deleted file mode 100644
index 5ecf303..0000000
--- a/elpa/org-9.1.14/ob-coq.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-core.el b/elpa/org-9.1.14/ob-core.el
deleted file mode 100644
index 5d5faaa..0000000
--- a/elpa/org-9.1.14/ob-core.el
+++ /dev/null
@@ -1,3161 +0,0 @@
-;;; ob-core.el --- Working with Code Blocks          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Authors: Eric Schulte
-;;	Dan Davison
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Code:
-(require 'cl-lib)
-(require 'ob-eval)
-(require 'org-macs)
-(require 'org-compat)
-
-(defconst org-babel-exeext
-  (if (memq system-type '(windows-nt cygwin))
-      ".exe"
-    nil))
-
-(defvar org-babel-library-of-babel)
-(defvar org-edit-src-content-indentation)
-(defvar org-src-lang-modes)
-(defvar org-src-preserve-indentation)
-
-(declare-function org-at-item-p "org-list" ())
-(declare-function org-at-table-p "org" (&optional table-type))
-(declare-function org-babel-lob-execute-maybe "ob-lob" ())
-(declare-function org-babel-ref-goto-headline-id "ob-ref" (id))
-(declare-function org-babel-ref-headline-body "ob-ref" ())
-(declare-function org-babel-ref-parse "ob-ref" (assignment))
-(declare-function org-babel-ref-resolve "ob-ref" (ref))
-(declare-function org-babel-ref-split-args "ob-ref" (arg-string))
-(declare-function org-babel-tangle-comment-links "ob-tangle" (&optional info))
-(declare-function org-completing-read "org" (&rest args))
-(declare-function org-current-level "org" ())
-(declare-function org-cycle "org" (&optional arg))
-(declare-function org-do-remove-indentation "org" (&optional n))
-(declare-function org-edit-src-code "org-src" (&optional code edit-buffer-name))
-(declare-function org-edit-src-exit "org-src"  ())
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-context "org-element" (&optional element))
-(declare-function org-element-normalize-string "org-element" (s))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-entry-get "org" (pom property &optional inherit literal-nil))
-(declare-function org-escape-code-in-region "org-src" (beg end))
-(declare-function org-get-indentation "org" (&optional line))
-(declare-function org-get-indentation "org" (&optional line))
-(declare-function org-in-regexp "org" (regexp &optional nlines visually))
-(declare-function org-indent-line "org" ())
-(declare-function org-list-get-list-end "org-list" (item struct prevs))
-(declare-function org-list-prevs-alist "org-list" (struct))
-(declare-function org-list-struct "org-list" ())
-(declare-function org-list-to-generic "org-list" (LIST PARAMS))
-(declare-function org-list-to-lisp "org-list" (&optional delete))
-(declare-function org-macro-escape-arguments "org-macro" (&rest args))
-(declare-function org-make-options-regexp "org" (kwds &optional extra))
-(declare-function org-mark-ring-push "org" (&optional pos buffer))
-(declare-function org-narrow-to-subtree "org" ())
-(declare-function org-next-block "org" (arg &optional backward block-regexp))
-(declare-function org-open-at-point "org" (&optional in-emacs reference-buffer))
-(declare-function org-outline-overlay-data "org" (&optional use-markers))
-(declare-function org-previous-block "org" (arg &optional block-regexp))
-(declare-function org-remove-indentation "org" (code &optional n))
-(declare-function org-reverse-string "org" (string))
-(declare-function org-set-outline-overlay-data "org" (data))
-(declare-function org-show-context "org" (&optional key))
-(declare-function org-src-coderef-format "org-src" (&optional element))
-(declare-function org-src-coderef-regexp "org-src" (fmt &optional label))
-(declare-function org-table-align "org-table" ())
-(declare-function org-table-end "org-table" (&optional table-type))
-(declare-function org-table-import "org-table" (file arg))
-(declare-function org-table-to-lisp "org-table" (&optional txt))
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function org-unescape-code-in-string "org-src" (s))
-(declare-function org-uniquify "org" (list))
-(declare-function orgtbl-to-generic "org-table" (table params))
-(declare-function orgtbl-to-orgtbl "org-table" (table params))
-(declare-function outline-show-all "outline" ())
-(declare-function tramp-compat-make-temp-file "tramp-compat" (filename &optional dir-flag))
-
-(defgroup org-babel nil
-  "Code block evaluation and management in `org-mode' documents."
-  :tag "Babel"
-  :group 'org)
-
-(defcustom org-confirm-babel-evaluate t
-  "Confirm before evaluation.
-\\<org-mode-map>\
-Require confirmation before interactively evaluating code
-blocks in Org buffers.  The default value of this variable is t,
-meaning confirmation is required for any code block evaluation.
-This variable can be set to nil to inhibit any future
-confirmation requests.  This variable can also be set to a
-function which takes two arguments the language of the code block
-and the body of the code block.  Such a function should then
-return a non-nil value if the user should be prompted for
-execution or nil if no prompt is required.
-
-Warning: Disabling confirmation may result in accidental
-evaluation of potentially harmful code.  It may be advisable
-remove code block execution from `\\[org-ctrl-c-ctrl-c]' \
-as further protection
-against accidental code block evaluation.  The
-`org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be used to
-remove code block execution from the `\\[org-ctrl-c-ctrl-c]' keybinding."
-  :group 'org-babel
-  :version "24.1"
-  :type '(choice boolean function))
-;; don't allow this variable to be changed through file settings
-(put 'org-confirm-babel-evaluate 'safe-local-variable (lambda (x) (eq x t)))
-
-(defcustom org-babel-no-eval-on-ctrl-c-ctrl-c nil
-  "\\<org-mode-map>\
-Remove code block evaluation from the `\\[org-ctrl-c-ctrl-c]' key binding."
-  :group 'org-babel
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-babel-results-keyword "RESULTS"
-  "Keyword used to name results generated by code blocks.
-It should be \"RESULTS\".  However any capitalization may be
-used."
-  :group 'org-babel
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string
-  :safe (lambda (v)
-	  (and (stringp v)
-	       (eq (compare-strings "RESULTS" nil nil v nil nil t)
-		   t))))
-
-(defcustom org-babel-noweb-wrap-start "<<"
-  "String used to begin a noweb reference in a code block.
-See also `org-babel-noweb-wrap-end'."
-  :group 'org-babel
-  :type 'string)
-
-(defcustom org-babel-noweb-wrap-end ">>"
-  "String used to end a noweb reference in a code block.
-See also `org-babel-noweb-wrap-start'."
-  :group 'org-babel
-  :type 'string)
-
-(defcustom org-babel-inline-result-wrap "=%s="
-  "Format string used to wrap inline results.
-This string must include a \"%s\" which will be replaced by the results."
-  :group 'org-babel
-  :type 'string)
-(put 'org-babel-inline-result-wrap
-     'safe-local-variable
-     (lambda (value)
-       (and (stringp value)
-	    (string-match-p "%s" value))))
-
-(defcustom org-babel-hash-show-time nil
-  "Non-nil means show the time the code block was evaluated in the result hash."
-  :group 'org-babel
-  :type 'boolean
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :safe #'booleanp)
-
-(defcustom org-babel-uppercase-example-markers nil
-  "When non-nil, begin/end example markers will be inserted in upper case."
-  :group 'org-babel
-  :type 'boolean
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :safe #'booleanp)
-
-(defun org-babel-noweb-wrap (&optional regexp)
-  (concat org-babel-noweb-wrap-start
-	  (or regexp "\\([^ \t\n].+?[^ \t]\\|[^ \t\n]\\)")
-	  org-babel-noweb-wrap-end))
-
-(defvar org-babel-src-name-regexp
-  "^[ \t]*#\\+name:[ \t]*"
-  "Regular expression used to match a source name line.")
-
-(defvar org-babel-multi-line-header-regexp
-  "^[ \t]*#\\+headers?:[ \t]*\\([^\n]*\\)$"
-  "Regular expression used to match multi-line header arguments.")
-
-(defvar org-babel-src-block-regexp
-  (concat
-   ;; (1) indentation                 (2) lang
-   "^\\([ \t]*\\)#\\+begin_src[ \t]+\\([^ \f\t\n\r\v]+\\)[ \t]*"
-   ;; (3) switches
-   "\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)"
-   ;; (4) header arguments
-   "\\([^\n]*\\)\n"
-   ;; (5) body
-   "\\([^\000]*?\n\\)??[ \t]*#\\+end_src")
-  "Regexp used to identify code blocks.")
-
-(defun org-babel--get-vars (params)
-  "Return the babel variable assignments in PARAMS.
-
-PARAMS is a quasi-alist of header args, which may contain
-multiple entries for the key `:var'.  This function returns a
-list of the cdr of all the `:var' entries."
-  (mapcar #'cdr
-	  (cl-remove-if-not (lambda (x) (eq (car x) :var)) params)))
-
-(defvar org-babel-exp-reference-buffer nil
-  "Buffer containing original contents of the exported buffer.
-This is used by Babel to resolve references in source blocks.
-Its value is dynamically bound during export.")
-
-(defun org-babel-check-confirm-evaluate (info)
-  "Check whether INFO allows code block evaluation.
-
-Returns nil if evaluation is disallowed, t if it is
-unconditionally allowed, and the symbol `query' if the user
-should be asked whether to allow evaluation."
-  (let* ((headers (nth 2 info))
-	 (eval (or (cdr  (assq :eval headers))
-		   (when (assq :noeval headers) "no")))
-	 (eval-no (member eval '("no" "never")))
-	 (export org-babel-exp-reference-buffer)
-	 (eval-no-export (and export (member eval '("no-export" "never-export"))))
-	 (noeval (or eval-no eval-no-export))
-	 (query (or (equal eval "query")
-		    (and export (equal eval "query-export"))
-		    (if (functionp org-confirm-babel-evaluate)
-			(funcall org-confirm-babel-evaluate
-				 ;; Language, code block body.
-				 (nth 0 info) (nth 1 info))
-		      org-confirm-babel-evaluate))))
-    (cond
-     (noeval nil)
-     (query 'query)
-     (t t))))
-
-(defun org-babel-check-evaluate (info)
-  "Check if code block INFO should be evaluated.
-Do not query the user, but do display an informative message if
-evaluation is blocked.  Returns non-nil if evaluation is not blocked."
-  (let ((confirmed (org-babel-check-confirm-evaluate info)))
-    (unless confirmed
-      (message "Evaluation of this %s code block%sis disabled."
-	       (nth 0 info)
-	       (let ((name (nth 4 info)))
-		 (if name (format " (%s) " name) " "))))
-    confirmed))
-
-;; Dynamically scoped for asynchronous export.
-(defvar org-babel-confirm-evaluate-answer-no)
-
-(defun org-babel-confirm-evaluate (info)
-  "Confirm evaluation of the code block INFO.
-
-This query can also be suppressed by setting the value of
-`org-confirm-babel-evaluate' to nil, in which case all future
-interactive code block evaluations will proceed without any
-confirmation from the user.
-
-Note disabling confirmation may result in accidental evaluation
-of potentially harmful code.
-
-The variable `org-babel-confirm-evaluate-answer-no' is used by
-the async export process, which requires a non-interactive
-environment, to override this check."
-  (let* ((evalp (org-babel-check-confirm-evaluate info))
-	 (lang (nth 0 info))
-	 (name (nth 4 info))
-	 (name-string (if name (format " (%s) " name) " ")))
-    (pcase evalp
-      (`nil nil)
-      (`t t)
-      (`query (or
-	       (and (not (bound-and-true-p
-			  org-babel-confirm-evaluate-answer-no))
-		    (yes-or-no-p
-		     (format "Evaluate this %s code block%son your system? "
-			     lang name-string)))
-	       (progn
-		(message "Evaluation of this %s code block%sis aborted."
-			 lang name-string)
-		nil)))
-      (x (error "Unexpected value `%s' from `org-babel-check-confirm-evaluate'" x)))))
-
-;;;###autoload
-(defun org-babel-execute-safely-maybe ()
-  (unless org-babel-no-eval-on-ctrl-c-ctrl-c
-    (org-babel-execute-maybe)))
-
-;;;###autoload
-(defun org-babel-execute-maybe ()
-  (interactive)
-  (or (org-babel-execute-src-block-maybe)
-      (org-babel-lob-execute-maybe)))
-
-(defmacro org-babel-when-in-src-block (&rest body)
-  "Execute BODY if point is in a source block and return t.
-
-Otherwise do nothing and return nil."
-  `(if (memq (org-element-type (org-element-context))
-	     '(inline-src-block src-block))
-       (progn
-	 ,@body
-	 t)
-     nil))
-
-(defun org-babel-execute-src-block-maybe ()
-  "Conditionally execute a source block.
-Detect if this is context for a Babel src-block and if so
-then run `org-babel-execute-src-block'."
-  (interactive)
-  (org-babel-when-in-src-block
-   (org-babel-eval-wipe-error-buffer)
-   (org-babel-execute-src-block current-prefix-arg)))
-
-;;;###autoload
-(defun org-babel-view-src-block-info ()
-  "Display information on the current source block.
-This includes header arguments, language and name, and is largely
-a window into the `org-babel-get-src-block-info' function."
-  (interactive)
-  (let ((info (org-babel-get-src-block-info 'light))
-	(full (lambda (it) (> (length it) 0)))
-	(printf (lambda (fmt &rest args) (princ (apply #'format fmt args)))))
-    (when info
-      (with-help-window (help-buffer)
-	(let ((name        (nth 4 info))
-	      (lang        (nth 0 info))
-	      (switches    (nth 3 info))
-	      (header-args (nth 2 info)))
-	  (when name            (funcall printf "Name: %s\n"     name))
-	  (when lang            (funcall printf "Lang: %s\n"     lang))
-	  (funcall printf "Properties:\n")
-	  (funcall printf "\t:header-args \t%s\n" (org-entry-get (point) "header-args" t))
-	  (funcall printf "\t:header-args:%s \t%s\n" lang (org-entry-get (point) (concat "header-args:" lang) t))
-
-	  (when (funcall full switches) (funcall printf "Switches: %s\n" switches))
-	  (funcall printf "Header Arguments:\n")
-	  (dolist (pair (sort header-args
-			      (lambda (a b) (string< (symbol-name (car a))
-						     (symbol-name (car b))))))
-	    (when (funcall full (format "%s" (cdr pair)))
-	      (funcall printf "\t%S%s\t%s\n"
-		       (car pair)
-		       (if (> (length (format "%S" (car pair))) 7) "" "\t")
-		       (cdr pair)))))))))
-
-;;;###autoload
-(defun org-babel-expand-src-block-maybe ()
-  "Conditionally expand a source block.
-Detect if this is context for an org-babel src-block and if so
-then run `org-babel-expand-src-block'."
-  (interactive)
-  (org-babel-when-in-src-block
-   (org-babel-expand-src-block current-prefix-arg)))
-
-;;;###autoload
-(defun org-babel-load-in-session-maybe ()
-  "Conditionally load a source block in a session.
-Detect if this is context for an org-babel src-block and if so
-then run `org-babel-load-in-session'."
-  (interactive)
-  (org-babel-when-in-src-block
-   (org-babel-load-in-session current-prefix-arg)))
-
-(add-hook 'org-metaup-hook 'org-babel-load-in-session-maybe)
-
-;;;###autoload
-(defun org-babel-pop-to-session-maybe ()
-  "Conditionally pop to a session.
-Detect if this is context for an org-babel src-block and if so
-then run `org-babel-switch-to-session'."
-  (interactive)
-  (org-babel-when-in-src-block
-   (org-babel-switch-to-session current-prefix-arg)))
-
-(add-hook 'org-metadown-hook 'org-babel-pop-to-session-maybe)
-
-(defconst org-babel-common-header-args-w-values
-  '((cache	. ((no yes)))
-    (cmdline	. :any)
-    (colnames	. ((nil no yes)))
-    (comments	. ((no link yes org both noweb)))
-    (dir	. :any)
-    (eval	. ((yes no no-export strip-export never-export eval never
-			query)))
-    (exports	. ((code results both none)))
-    (epilogue   . :any)
-    (file	. :any)
-    (file-desc  . :any)
-    (file-ext   . :any)
-    (hlines	. ((no yes)))
-    (mkdirp	. ((yes no)))
-    (no-expand)
-    (noeval)
-    (noweb	. ((yes no tangle no-export strip-export)))
-    (noweb-ref	. :any)
-    (noweb-sep  . :any)
-    (output-dir . :any)
-    (padline	. ((yes no)))
-    (post       . :any)
-    (prologue   . :any)
-    (results	. ((file list vector table scalar verbatim)
-		   (raw html latex org code pp drawer)
-		   (replace silent none append prepend)
-		   (output value)))
-    (rownames	. ((no yes)))
-    (sep	. :any)
-    (session	. :any)
-    (shebang	. :any)
-    (tangle	. ((tangle yes no :any)))
-    (tangle-mode . ((#o755 #o555 #o444 :any)))
-    (var	. :any)
-    (wrap       . :any)))
-
-(defconst org-babel-header-arg-names
-  (mapcar #'car org-babel-common-header-args-w-values)
-  "Common header arguments used by org-babel.
-Note that individual languages may define their own language
-specific header arguments as well.")
-
-(defconst org-babel-safe-header-args
-  '(:cache :colnames :comments :exports :epilogue :hlines :noeval
-	   :noweb :noweb-ref :noweb-sep :padline :prologue :rownames
-	   :sep :session :tangle :wrap
-	   (:eval . ("never" "query"))
-	   (:results . (lambda (str) (not (string-match "file" str)))))
-  "A list of safe header arguments for babel source blocks.
-
-The list can have entries of the following forms:
-- :ARG                     -> :ARG is always a safe header arg
-- (:ARG . (VAL1 VAL2 ...)) -> :ARG is safe as a header arg if it is
-                              `equal' to one of the VALs.
-- (:ARG . FN)              -> :ARG is safe as a header arg if the function FN
-                              returns non-nil.  FN is passed one
-                              argument, the value of the header arg
-                              (as a string).")
-
-(defmacro org-babel-header-args-safe-fn (safe-list)
-  "Return a function that determines whether a list of header args are safe.
-
-Intended usage is:
-\(put \\='org-babel-default-header-args \\='safe-local-variable
- (org-babel-header-args-safe-p org-babel-safe-header-args)
-
-This allows org-babel languages to extend the list of safe values for
-their `org-babel-default-header-args:foo' variable.
-
-For the format of SAFE-LIST, see `org-babel-safe-header-args'."
-  `(lambda (value)
-     (and (listp value)
-	  (cl-every
-	   (lambda (pair)
-	     (and (consp pair)
-		  (org-babel-one-header-arg-safe-p pair ,safe-list)))
-	   value))))
-
-(defvar org-babel-default-header-args
-  '((:session . "none") (:results . "replace") (:exports . "code")
-    (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no"))
-  "Default arguments to use when evaluating a source block.")
-(put 'org-babel-default-header-args 'safe-local-variable
-     (org-babel-header-args-safe-fn org-babel-safe-header-args))
-
-(defvar org-babel-default-inline-header-args
-  '((:session . "none") (:results . "replace")
-    (:exports . "results") (:hlines . "yes"))
-  "Default arguments to use when evaluating an inline source block.")
-(put 'org-babel-default-inline-header-args 'safe-local-variable
-     (org-babel-header-args-safe-fn org-babel-safe-header-args))
-
-(defconst org-babel-name-regexp
-  (format "^[ \t]*#\\+%s:[ \t]*"
-	  ;; FIXME: TBLNAME is for backward compatibility.
-	  (regexp-opt '("NAME" "TBLNAME")))
-  "Regexp matching a NAME keyword.")
-
-(defconst org-babel-result-regexp
-  (format "^[ \t]*#\\+%s\\(?:\\[\\(?:%s \\)?\\([[:alnum:]]+\\)\\]\\)?:[ \t]*"
-	  org-babel-results-keyword
-	  ;; <%Y-%m-%d %H:%M:%S>
-	  "<\\(?:[0-9]\\{4\\}-[0-1][0-9]-[0-3][0-9] \
-[0-2][0-9]\\(?::[0-5][0-9]\\)\\{2\\}\\)>")
-  "Regular expression used to match result lines.
-If the results are associated with a hash key then the hash will
-be saved in match group 1.")
-
-(defconst org-babel-result-w-name-regexp
-  (concat org-babel-result-regexp "\\(?9:[^ \t\n\r\v\f]+\\)")
-  "Regexp matching a RESULTS keyword with a name.
-Name is saved in match group 9.")
-
-(defvar org-babel-min-lines-for-block-output 10
-  "The minimum number of lines for block output.
-If number of lines of output is equal to or exceeds this
-value, the output is placed in a #+begin_example...#+end_example
-block.  Otherwise the output is marked as literal by inserting
-colons at the starts of the lines.  This variable only takes
-effect if the :results output option is in effect.")
-
-(defvar org-babel-noweb-error-all-langs nil
-  "Raise errors when noweb references don't resolve.
-Also see `org-babel-noweb-error-langs' to control noweb errors on
-a language by language bases.")
-
-(defvar org-babel-noweb-error-langs nil
-  "Languages for which Babel will raise literate programming errors.
-List of languages for which errors should be raised when the
-source code block satisfying a noweb reference in this language
-can not be resolved.  Also see `org-babel-noweb-error-all-langs'
-to raise errors for all languages.")
-
-(defvar org-babel-hash-show 4
-  "Number of initial characters to show of a hidden results hash.")
-
-(defvar org-babel-after-execute-hook nil
-  "Hook for functions to be called after `org-babel-execute-src-block'")
-
-(defun org-babel-named-src-block-regexp-for-name (&optional name)
-  "This generates a regexp used to match a src block named NAME.
-If NAME is nil, match any name.  Matched name is then put in
-match group 9.  Other match groups are defined in
-`org-babel-src-block-regexp'."
-  (concat org-babel-src-name-regexp
-	  (concat (if name (regexp-quote name) "\\(?9:.*?\\)") "[ \t]*" )
-	  "\\(?:\n[ \t]*#\\+\\S-+:.*\\)*?"
-	  "\n"
-	  (substring org-babel-src-block-regexp 1)))
-
-(defun org-babel-named-data-regexp-for-name (name)
-  "This generates a regexp used to match data named NAME."
-  (concat org-babel-name-regexp (regexp-quote name) "[ \t]*$"))
-
-(defun org-babel--normalize-body (datum)
-  "Normalize body for element or object DATUM.
-DATUM is a source block element or an inline source block object.
-Remove final newline character and spurious indentation."
-  (let* ((value (org-element-property :value datum))
-	 (body (if (string-suffix-p "\n" value)
-		   (substring value 0 -1)
-		 value)))
-    (cond ((eq (org-element-type datum) 'inline-src-block)
-	   ;; Newline characters and indentation in an inline
-	   ;; src-block are not meaningful, since they could come from
-	   ;; some paragraph filling.  Treat them as a white space.
-	   (replace-regexp-in-string "\n[ \t]*" " " body))
-	  ((or org-src-preserve-indentation
-	       (org-element-property :preserve-indent datum))
-	   body)
-	  (t (org-remove-indentation body)))))
-
-;;; functions
-(defvar org-babel-current-src-block-location nil
-  "Marker pointing to the src block currently being executed.
-This may also point to a call line or an inline code block.  If
-multiple blocks are being executed (e.g., in chained execution
-through use of the :var header argument) this marker points to
-the outer-most code block.")
-
-(defvar *this*)
-
-(defun org-babel-get-src-block-info (&optional light datum)
-  "Extract information from a source block or inline source block.
-
-Optional argument LIGHT does not resolve remote variable
-references; a process which could likely result in the execution
-of other code blocks.
-
-By default, consider the block at point.  However, when optional
-argument DATUM is provided, extract information from that parsed
-object instead.
-
-Return nil if point is not on a source block.  Otherwise, return
-a list with the following pattern:
-
-  (language body arguments switches name start coderef)"
-  (let* ((datum (or datum (org-element-context)))
-	 (type (org-element-type datum))
-	 (inline (eq type 'inline-src-block)))
-    (when (memq type '(inline-src-block src-block))
-      (let* ((lang (org-element-property :language datum))
-	     (lang-headers (intern
-			    (concat "org-babel-default-header-args:" lang)))
-	     (name (org-element-property :name datum))
-	     (info
-	      (list
-	       lang
-	       (org-babel--normalize-body datum)
-	       (apply #'org-babel-merge-params
-		      (if inline org-babel-default-inline-header-args
-			org-babel-default-header-args)
-		      (and (boundp lang-headers) (eval lang-headers t))
-		      (append
-		       ;; If DATUM is provided, make sure we get node
-		       ;; properties applicable to its location within
-		       ;; the document.
-		       (org-with-point-at (org-element-property :begin datum)
-			 (org-babel-params-from-properties lang))
-		       (mapcar #'org-babel-parse-header-arguments
-			       (cons (org-element-property :parameters datum)
-				     (org-element-property :header datum)))))
-	       (or (org-element-property :switches datum) "")
-	       name
-	       (org-element-property (if inline :begin :post-affiliated)
-				     datum)
-	       (and (not inline) (org-src-coderef-format datum)))))
-	(unless light
-	  (setf (nth 2 info) (org-babel-process-params (nth 2 info))))
-	(setf (nth 2 info) (org-babel-generate-file-param name (nth 2 info)))
-	info))))
-
-;;;###autoload
-(defun org-babel-execute-src-block (&optional arg info params)
-  "Execute the current source code block.
-Insert the results of execution into the buffer.  Source code
-execution and the collection and formatting of results can be
-controlled through a variety of header arguments.
-
-With prefix argument ARG, force re-execution even if an existing
-result cached in the buffer would otherwise have been returned.
-
-Optionally supply a value for INFO in the form returned by
-`org-babel-get-src-block-info'.
-
-Optionally supply a value for PARAMS which will be merged with
-the header arguments specified at the front of the source code
-block."
-  (interactive)
-  (let* ((org-babel-current-src-block-location
-	  (or org-babel-current-src-block-location
-	      (nth 5 info)
-	      (org-babel-where-is-src-block-head)))
-	 (info (if info (copy-tree info) (org-babel-get-src-block-info))))
-    ;; Merge PARAMS with INFO before considering source block
-    ;; evaluation since both could disagree.
-    (cl-callf org-babel-merge-params (nth 2 info) params)
-    (when (org-babel-check-evaluate info)
-      (cl-callf org-babel-process-params (nth 2 info))
-      (let* ((params (nth 2 info))
-	     (cache (let ((c (cdr (assq :cache params))))
-		      (and (not arg) c (string= "yes" c))))
-	     (new-hash (and cache (org-babel-sha1-hash info)))
-	     (old-hash (and cache (org-babel-current-result-hash)))
-	     (current-cache (and new-hash (equal new-hash old-hash))))
-	(cond
-	 (current-cache
-	  (save-excursion		;Return cached result.
-	    (goto-char (org-babel-where-is-src-block-result nil info))
-	    (forward-line)
-	    (skip-chars-forward " \t")
-	    (let ((result (org-babel-read-result)))
-	      (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
-	      result)))
-	 ((org-babel-confirm-evaluate info)
-	  (let* ((lang (nth 0 info))
-		 (result-params (cdr (assq :result-params params)))
-		 ;; Expand noweb references in BODY and remove any
-		 ;; coderef.
-		 (body
-		  (let ((coderef (nth 6 info))
-			(expand
-			 (if (org-babel-noweb-p params :eval)
-			     (org-babel-expand-noweb-references info)
-			   (nth 1 info))))
-		    (if (not coderef) expand
-		      (replace-regexp-in-string
-		       (org-src-coderef-regexp coderef) "" expand nil nil 1))))
-		 (dir (cdr (assq :dir params)))
-		 (default-directory
-		   (or (and dir (file-name-as-directory (expand-file-name dir)))
-		       default-directory))
-		 (cmd (intern (concat "org-babel-execute:" lang)))
-		 result)
-	    (unless (fboundp cmd)
-	      (error "No org-babel-execute function for %s!" lang))
-	    (message "executing %s code block%s..."
-		     (capitalize lang)
-		     (let ((name (nth 4 info)))
-		       (if name (format " (%s)" name) "")))
-	    (if (member "none" result-params)
-		(progn (funcall cmd body params)
-		       (message "result silenced"))
-	      (setq result
-		    (let ((r (funcall cmd body params)))
-		      (if (and (eq (cdr (assq :result-type params)) 'value)
-			       (or (member "vector" result-params)
-				   (member "table" result-params))
-			       (not (listp r)))
-			  (list (list r))
-			r)))
-	      (let ((file (cdr (assq :file params))))
-		;; If non-empty result and :file then write to :file.
-		(when file
-		  (when result
-		    (with-temp-file file
-		      (insert (org-babel-format-result
-			       result (cdr (assq :sep params))))))
-		  (setq result file))
-		;; Possibly perform post process provided its
-		;; appropriate.  Dynamically bind "*this*" to the
-		;; actual results of the block.
-		(let ((post (cdr (assq :post params))))
-		  (when post
-		    (let ((*this* (if (not file) result
-				    (org-babel-result-to-file
-				     file
-				     (let ((desc (assq :file-desc params)))
-				       (and desc (or (cdr desc) result)))))))
-		      (setq result (org-babel-ref-resolve post))
-		      (when file
-			(setq result-params (remove "file" result-params))))))
-		(org-babel-insert-result
-		 result result-params info new-hash lang)))
-	    (run-hooks 'org-babel-after-execute-hook)
-	    result)))))))
-
-(defun org-babel-expand-body:generic (body params &optional var-lines)
-  "Expand BODY with PARAMS.
-Expand a block of code with org-babel according to its header
-arguments.  This generic implementation of body expansion is
-called for languages which have not defined their own specific
-org-babel-expand-body:lang function."
-  (let ((pro (cdr (assq :prologue params)))
-	(epi (cdr (assq :epilogue params))))
-    (mapconcat #'identity
-	       (append (when pro (list pro))
-		       var-lines
-		       (list body)
-		       (when epi (list epi)))
-	       "\n")))
-
-;;;###autoload
-(defun org-babel-expand-src-block (&optional _arg info params)
-  "Expand the current source code block.
-Expand according to the source code block's header
-arguments and pop open the results in a preview buffer."
-  (interactive)
-  (let* ((info (or info (org-babel-get-src-block-info)))
-         (lang (nth 0 info))
-	 (params (setf (nth 2 info)
-                       (sort (org-babel-merge-params (nth 2 info) params)
-                             (lambda (el1 el2) (string< (symbol-name (car el1))
-							(symbol-name (car el2)))))))
-         (body (setf (nth 1 info)
-		     (if (org-babel-noweb-p params :eval)
-			 (org-babel-expand-noweb-references info) (nth 1 info))))
-         (expand-cmd (intern (concat "org-babel-expand-body:" lang)))
-	 (assignments-cmd (intern (concat "org-babel-variable-assignments:"
-					  lang)))
-         (expanded
-	  (if (fboundp expand-cmd) (funcall expand-cmd body params)
-	    (org-babel-expand-body:generic
-	     body params (and (fboundp assignments-cmd)
-			      (funcall assignments-cmd params))))))
-    (if (called-interactively-p 'any)
-	(org-edit-src-code
-	 expanded (concat "*Org-Babel Preview " (buffer-name) "[ " lang " ]*"))
-      expanded)))
-
-(defun org-babel-edit-distance (s1 s2)
-  "Return the edit (levenshtein) distance between strings S1 S2."
-  (let* ((l1 (length s1))
-	 (l2 (length s2))
-	 (dist (vconcat (mapcar (lambda (_) (make-vector (1+ l2) nil))
-				(number-sequence 1 (1+ l1)))))
-	 (in (lambda (i j) (aref (aref dist i) j))))
-    (setf (aref (aref dist 0) 0) 0)
-    (dolist (j (number-sequence 1 l2))
-      (setf (aref (aref dist 0) j) j))
-    (dolist (i (number-sequence 1 l1))
-      (setf (aref (aref dist i) 0) i)
-      (dolist (j (number-sequence 1 l2))
-	(setf (aref (aref dist i) j)
-	      (min
-	       (1+ (funcall in (1- i) j))
-	       (1+ (funcall in i (1- j)))
-	       (+ (if (equal (aref s1 (1- i)) (aref s2 (1- j))) 0 1)
-		  (funcall in (1- i) (1- j)))))))
-    (funcall in l1 l2)))
-
-(defun org-babel-combine-header-arg-lists (original &rest others)
-  "Combine a number of lists of header argument names and arguments."
-  (let ((results (copy-sequence original)))
-    (dolist (new-list others)
-      (dolist (arg-pair new-list)
-	(let ((header (car arg-pair)))
-	  (setq results
-		(cons arg-pair (cl-remove-if
-				(lambda (pair) (equal header (car pair)))
-				results))))))
-    results))
-
-;;;###autoload
-(defun org-babel-check-src-block ()
-  "Check for misspelled header arguments in the current code block."
-  (interactive)
-  ;; TODO: report malformed code block
-  ;; TODO: report incompatible combinations of header arguments
-  ;; TODO: report uninitialized variables
-  (let ((too-close 2) ;; <- control closeness to report potential match
-	(names (mapcar #'symbol-name org-babel-header-arg-names)))
-    (dolist (header (mapcar (lambda (arg) (substring (symbol-name (car arg)) 1))
-			    (and (org-babel-where-is-src-block-head)
-				 (org-babel-parse-header-arguments
-				  (org-no-properties
-				   (match-string 4))))))
-      (dolist (name names)
-	(when (and (not (string= header name))
-		   (<= (org-babel-edit-distance header name) too-close)
-		   (not (member header names)))
-	  (error "Supplied header \"%S\" is suspiciously close to \"%S\""
-		 header name))))
-    (message "No suspicious header arguments found.")))
-
-;;;###autoload
-(defun org-babel-insert-header-arg (&optional header-arg value)
-  "Insert a header argument selecting from lists of common args and values."
-  (interactive)
-  (let* ((info (org-babel-get-src-block-info 'light))
-	 (lang (car info))
-	 (begin (nth 5 info))
-	 (lang-headers (intern (concat "org-babel-header-args:" lang)))
-	 (headers (org-babel-combine-header-arg-lists
-		   org-babel-common-header-args-w-values
-		   (when (boundp lang-headers) (eval lang-headers t))))
-	 (header-arg (or header-arg
-			 (completing-read
-			  "Header Arg: "
-			  (mapcar
-			   (lambda (header-spec) (symbol-name (car header-spec)))
-			   headers))))
-	 (vals (cdr (assoc (intern header-arg) headers)))
-	 (value (or value
-		    (cond
-		     ((eq vals :any)
-		      (read-from-minibuffer "value: "))
-		     ((listp vals)
-		      (mapconcat
-		       (lambda (group)
-			 (let ((arg (completing-read
-				     "Value: "
-				     (cons "default"
-					   (mapcar #'symbol-name group)))))
-			   (if (and arg (not (string= "default" arg)))
-			       (concat arg " ")
-			     "")))
-		       vals ""))))))
-    (save-excursion
-      (goto-char begin)
-      (goto-char (point-at-eol))
-      (unless (= (char-before (point)) ?\ ) (insert " "))
-      (insert ":" header-arg) (when value (insert " " value)))))
-
-;; Add support for completing-read insertion of header arguments after ":"
-(defun org-babel-header-arg-expand ()
-  "Call `org-babel-enter-header-arg-w-completion' in appropriate contexts."
-  (when (and (equal (char-before) ?\:) (org-babel-where-is-src-block-head))
-    (org-babel-enter-header-arg-w-completion (match-string 2))))
-
-(defun org-babel-enter-header-arg-w-completion (&optional lang)
-  "Insert header argument appropriate for LANG with completion."
-  (let* ((lang-headers-var (intern (concat "org-babel-header-args:" lang)))
-         (lang-headers (when (boundp lang-headers-var) (eval lang-headers-var t)))
-	 (headers-w-values (org-babel-combine-header-arg-lists
-			    org-babel-common-header-args-w-values lang-headers))
-         (headers (mapcar #'symbol-name (mapcar #'car headers-w-values)))
-         (header (org-completing-read "Header Arg: " headers))
-         (args (cdr (assoc (intern header) headers-w-values)))
-         (arg (when (and args (listp args))
-                (org-completing-read
-                 (format "%s: " header)
-                 (mapcar #'symbol-name (apply #'append args))))))
-    (insert (concat header " " (or arg "")))
-    (cons header arg)))
-
-(add-hook 'org-tab-first-hook 'org-babel-header-arg-expand)
-
-;;;###autoload
-(defun org-babel-load-in-session (&optional _arg info)
-  "Load the body of the current source-code block.
-Evaluate the header arguments for the source block before
-entering the session.  After loading the body this pops open the
-session."
-  (interactive)
-  (let* ((info (or info (org-babel-get-src-block-info)))
-         (lang (nth 0 info))
-         (params (nth 2 info))
-         (body (if (not info)
-		   (user-error "No src code block at point")
-		 (setf (nth 1 info)
-		       (if (org-babel-noweb-p params :eval)
-			   (org-babel-expand-noweb-references info)
-			 (nth 1 info)))))
-         (session (cdr (assq :session params)))
-	 (dir (cdr (assq :dir params)))
-	 (default-directory
-	   (or (and dir (file-name-as-directory dir)) default-directory))
-	 (cmd (intern (concat "org-babel-load-session:" lang))))
-    (unless (fboundp cmd)
-      (error "No org-babel-load-session function for %s!" lang))
-    (pop-to-buffer (funcall cmd session body params))
-    (end-of-line 1)))
-
-;;;###autoload
-(defun org-babel-initiate-session (&optional arg info)
-  "Initiate session for current code block.
-If called with a prefix argument then resolve any variable
-references in the header arguments and assign these variables in
-the session.  Copy the body of the code block to the kill ring."
-  (interactive "P")
-  (let* ((info (or info (org-babel-get-src-block-info (not arg))))
-         (lang (nth 0 info))
-         (body (nth 1 info))
-         (params (nth 2 info))
-         (session (cdr (assq :session params)))
-	 (dir (cdr (assq :dir params)))
-	 (default-directory
-	   (or (and dir (file-name-as-directory dir)) default-directory))
-	 (init-cmd (intern (format "org-babel-%s-initiate-session" lang)))
-	 (prep-cmd (intern (concat "org-babel-prep-session:" lang))))
-    (when (and (stringp session) (string= session "none"))
-      (error "This block is not using a session!"))
-    (unless (fboundp init-cmd)
-      (error "No org-babel-initiate-session function for %s!" lang))
-    (with-temp-buffer (insert (org-trim body))
-                      (copy-region-as-kill (point-min) (point-max)))
-    (when arg
-      (unless (fboundp prep-cmd)
-	(error "No org-babel-prep-session function for %s!" lang))
-      (funcall prep-cmd session params))
-    (funcall init-cmd session params)))
-
-;;;###autoload
-(defun org-babel-switch-to-session (&optional arg info)
-  "Switch to the session of the current code block.
-Uses `org-babel-initiate-session' to start the session.  If called
-with a prefix argument then this is passed on to
-`org-babel-initiate-session'."
-  (interactive "P")
-  (pop-to-buffer (org-babel-initiate-session arg info))
-  (end-of-line 1))
-
-(defalias 'org-babel-pop-to-session 'org-babel-switch-to-session)
-
-(defvar org-src-window-setup)
-
-;;;###autoload
-(defun org-babel-switch-to-session-with-code (&optional arg _info)
-  "Switch to code buffer and display session."
-  (interactive "P")
-  (let ((swap-windows
-	 (lambda ()
-	   (let ((other-window-buffer (window-buffer (next-window))))
-	     (set-window-buffer (next-window) (current-buffer))
-	     (set-window-buffer (selected-window) other-window-buffer))
-	   (other-window 1)))
-	(info (org-babel-get-src-block-info))
-	(org-src-window-setup 'reorganize-frame))
-    (save-excursion
-      (org-babel-switch-to-session arg info))
-    (org-edit-src-code)
-    (funcall swap-windows)))
-
-;;;###autoload
-(defmacro org-babel-do-in-edit-buffer (&rest body)
-  "Evaluate BODY in edit buffer if there is a code block at point.
-Return t if a code block was found at point, nil otherwise."
-  (declare (debug (body)))
-  `(let* ((element (org-element-at-point))
-	  ;; This function is not supposed to move point.  However,
-	  ;; `org-edit-src-code' always moves point back into the
-	  ;; source block.  It is problematic if the point was before
-	  ;; the code, e.g., on block's opening line.  In this case,
-	  ;; we want to restore this location after executing BODY.
-	  (outside-position
-	   (and (<= (line-beginning-position)
-		    (org-element-property :post-affiliated element))
-		(point-marker)))
-	  (org-src-window-setup 'switch-invisibly))
-     (when (and (org-babel-where-is-src-block-head element)
-		(org-edit-src-code))
-       (unwind-protect (progn ,@body)
-	 (org-edit-src-exit)
-	 (when outside-position (goto-char outside-position)))
-       t)))
-
-(defun org-babel-do-key-sequence-in-edit-buffer (key)
-  "Read key sequence and execute the command in edit buffer.
-Enter a key sequence to be executed in the language major-mode
-edit buffer.  For example, TAB will alter the contents of the
-Org code block according to the effect of TAB in the language
-major mode buffer.  For languages that support interactive
-sessions, this can be used to send code from the Org buffer
-to the session for evaluation using the native major mode
-evaluation mechanisms."
-  (interactive "kEnter key-sequence to execute in edit buffer: ")
-  (org-babel-do-in-edit-buffer
-   (call-interactively
-    (key-binding (or key (read-key-sequence nil))))))
-
-(defvar org-bracket-link-regexp)
-
-(defun org-babel-active-location-p ()
-  (memq (org-element-type (save-match-data (org-element-context)))
-	'(babel-call inline-babel-call inline-src-block src-block)))
-
-;;;###autoload
-(defun org-babel-open-src-block-result (&optional re-run)
-  "If `point' is on a src block then open the results of the
-source code block, otherwise return nil.  With optional prefix
-argument RE-RUN the source-code block is evaluated even if
-results already exist."
-  (interactive "P")
-  (let ((info (org-babel-get-src-block-info 'light)))
-    (when info
-      (save-excursion
-	;; go to the results, if there aren't any then run the block
-	(goto-char (or (and (not re-run) (org-babel-where-is-src-block-result))
-		       (progn (org-babel-execute-src-block)
-			      (org-babel-where-is-src-block-result))))
-	(end-of-line 1)
-	(while (looking-at "[\n\r\t\f ]") (forward-char 1))
-	;; open the results
-	(if (looking-at org-bracket-link-regexp)
-	    ;; file results
-	    (org-open-at-point)
-	  (let ((r (org-babel-format-result
-		    (org-babel-read-result) (cdr (assq :sep (nth 2 info))))))
-	    (pop-to-buffer (get-buffer-create "*Org-Babel Results*"))
-	    (delete-region (point-min) (point-max))
-	    (insert r)))
-	t))))
-
-;;;###autoload
-(defmacro org-babel-map-src-blocks (file &rest body)
-  "Evaluate BODY forms on each source-block in FILE.
-If FILE is nil evaluate BODY forms on source blocks in current
-buffer.  During evaluation of BODY the following local variables
-are set relative to the currently matched code block.
-
-full-block ------- string holding the entirety of the code block
-beg-block -------- point at the beginning of the code block
-end-block -------- point at the end of the matched code block
-lang ------------- string holding the language of the code block
-beg-lang --------- point at the beginning of the lang
-end-lang --------- point at the end of the lang
-switches --------- string holding the switches
-beg-switches ----- point at the beginning of the switches
-end-switches ----- point at the end of the switches
-header-args ------ string holding the header-args
-beg-header-args -- point at the beginning of the header-args
-end-header-args -- point at the end of the header-args
-body ------------- string holding the body of the code block
-beg-body --------- point at the beginning of the body
-end-body --------- point at the end of the body"
-  (declare (indent 1))
-  (let ((tempvar (make-symbol "file")))
-    `(let* ((case-fold-search t)
-	    (,tempvar ,file)
-	    (visited-p (or (null ,tempvar)
-			   (get-file-buffer (expand-file-name ,tempvar))))
-	    (point (point)) to-be-removed)
-       (save-window-excursion
-	 (when ,tempvar (find-file ,tempvar))
-	 (setq to-be-removed (current-buffer))
-	 (goto-char (point-min))
-	 (while (re-search-forward org-babel-src-block-regexp nil t)
-	   (when (org-babel-active-location-p)
-	     (goto-char (match-beginning 0))
-	     (let ((full-block (match-string 0))
-		   (beg-block (match-beginning 0))
-		   (end-block (match-end 0))
-		   (lang (match-string 2))
-		   (beg-lang (match-beginning 2))
-		   (end-lang (match-end 2))
-		   (switches (match-string 3))
-		   (beg-switches (match-beginning 3))
-		   (end-switches (match-end 3))
-		   (header-args (match-string 4))
-		   (beg-header-args (match-beginning 4))
-		   (end-header-args (match-end 4))
-		   (body (match-string 5))
-		   (beg-body (match-beginning 5))
-		   (end-body (match-end 5)))
-               ;; Silence byte-compiler in case `body' doesn't use all
-               ;; those variables.
-               (ignore full-block beg-block end-block lang
-                       beg-lang end-lang switches beg-switches
-                       end-switches header-args beg-header-args
-                       end-header-args body beg-body end-body)
-               ,@body
-	       (goto-char end-block)))))
-       (unless visited-p (kill-buffer to-be-removed))
-       (goto-char point))))
-(def-edebug-spec org-babel-map-src-blocks (form body))
-
-;;;###autoload
-(defmacro org-babel-map-inline-src-blocks (file &rest body)
-  "Evaluate BODY forms on each inline source block in FILE.
-If FILE is nil evaluate BODY forms on source blocks in current
-buffer."
-  (declare (indent 1) (debug (form body)))
-  (org-with-gensyms (datum end point tempvar to-be-removed visitedp)
-    `(let* ((case-fold-search t)
-	    (,tempvar ,file)
-	    (,visitedp (or (null ,tempvar)
-			   (get-file-buffer (expand-file-name ,tempvar))))
-	    (,point (point))
-	    ,to-be-removed)
-       (save-window-excursion
-	 (when ,tempvar (find-file ,tempvar))
-	 (setq ,to-be-removed (current-buffer))
-	 (goto-char (point-min))
-	 (while (re-search-forward "src_\\S-" nil t)
-	   (let ((,datum (save-match-data (org-element-context))))
-	     (when (eq (org-element-type ,datum) 'inline-src-block)
-	       (goto-char (match-beginning 0))
-	       (let ((,end (copy-marker (org-element-property :end ,datum))))
-		 ,@body
-		 (goto-char ,end)
-		 (set-marker ,end nil))))))
-       (unless ,visitedp (kill-buffer ,to-be-removed))
-       (goto-char ,point))))
-
-;;;###autoload
-(defmacro org-babel-map-call-lines (file &rest body)
-  "Evaluate BODY forms on each call line in FILE.
-If FILE is nil evaluate BODY forms on source blocks in current
-buffer."
-  (declare (indent 1) (debug (form body)))
-  (org-with-gensyms (datum end point tempvar to-be-removed visitedp)
-    `(let* ((case-fold-search t)
-	    (,tempvar ,file)
-	    (,visitedp (or (null ,tempvar)
-			   (get-file-buffer (expand-file-name ,tempvar))))
-	    (,point (point))
-	    ,to-be-removed)
-       (save-window-excursion
-	 (when ,tempvar (find-file ,tempvar))
-	 (setq ,to-be-removed (current-buffer))
-	 (goto-char (point-min))
-	 (while (re-search-forward "call_\\S-\\|^[ \t]*#\\+CALL:" nil t)
-	   (let ((,datum (save-match-data (org-element-context))))
-	     (when (memq (org-element-type ,datum)
-			 '(babel-call inline-babel-call))
-	       (goto-char (match-beginning 0))
-	       (let ((,end (copy-marker (org-element-property :end ,datum))))
-		 ,@body
-		 (goto-char ,end)
-		 (set-marker ,end nil))))))
-       (unless ,visitedp (kill-buffer ,to-be-removed))
-       (goto-char ,point))))
-
-;;;###autoload
-(defmacro org-babel-map-executables (file &rest body)
-  "Evaluate BODY forms on each active Babel code in FILE.
-If FILE is nil evaluate BODY forms on source blocks in current
-buffer."
-  (declare (indent 1) (debug (form body)))
-  (org-with-gensyms (datum end point tempvar to-be-removed visitedp)
-    `(let* ((case-fold-search t)
-	    (,tempvar ,file)
-	    (,visitedp (or (null ,tempvar)
-			   (get-file-buffer (expand-file-name ,tempvar))))
-	    (,point (point))
-	    ,to-be-removed)
-       (save-window-excursion
-	 (when ,tempvar (find-file ,tempvar))
-	 (setq ,to-be-removed (current-buffer))
-	 (goto-char (point-min))
-	 (while (re-search-forward
-		 "\\(call\\|src\\)_\\|^[ \t]*#\\+\\(BEGIN_SRC\\|CALL:\\)" nil t)
-	   (let ((,datum (save-match-data (org-element-context))))
-	     (when (memq (org-element-type ,datum)
-			 '(babel-call inline-babel-call inline-src-block
-				      src-block))
-	       (goto-char (match-beginning 0))
-	       (let ((,end (copy-marker (org-element-property :end ,datum))))
-		 ,@body
-		 (goto-char ,end)
-		 (set-marker ,end nil))))))
-       (unless ,visitedp (kill-buffer ,to-be-removed))
-       (goto-char ,point))))
-
-;;;###autoload
-(defun org-babel-execute-buffer (&optional arg)
-  "Execute source code blocks in a buffer.
-Call `org-babel-execute-src-block' on every source block in
-the current buffer."
-  (interactive "P")
-  (org-babel-eval-wipe-error-buffer)
-  (org-save-outline-visibility t
-    (org-babel-map-executables nil
-      (if (memq (org-element-type (org-element-context))
-		'(babel-call inline-babel-call))
-          (org-babel-lob-execute-maybe)
-        (org-babel-execute-src-block arg)))))
-
-;;;###autoload
-(defun org-babel-execute-subtree (&optional arg)
-  "Execute source code blocks in a subtree.
-Call `org-babel-execute-src-block' on every source block in
-the current subtree."
-  (interactive "P")
-  (save-restriction
-    (save-excursion
-      (org-narrow-to-subtree)
-      (org-babel-execute-buffer arg)
-      (widen))))
-
-;;;###autoload
-(defun org-babel-sha1-hash (&optional info)
-  "Generate an sha1 hash based on the value of info."
-  (interactive)
-  (let ((print-level nil)
-	(info (or info (org-babel-get-src-block-info))))
-    (setf (nth 2 info)
-	  (sort (copy-sequence (nth 2 info))
-		(lambda (a b) (string< (car a) (car b)))))
-    (let* ((rm (lambda (lst)
-		 (dolist (p '("replace" "silent" "none"
-			      "append" "prepend"))
-		   (setq lst (remove p lst)))
-		 lst))
-	   (norm (lambda (arg)
-		   (let ((v (if (and (listp (cdr arg)) (null (cddr arg)))
-				(copy-sequence (cdr arg))
-			      (cdr arg))))
-		     (when (and v (not (and (sequencep v)
-					    (not (consp v))
-					    (= (length v) 0))))
-		       (cond
-			((and (listp v) ; lists are sorted
-			      (member (car arg) '(:result-params)))
-			 (sort (funcall rm v) #'string<))
-			((and (stringp v) ; strings are sorted
-			      (member (car arg) '(:results :exports)))
-			 (mapconcat #'identity (sort (funcall rm (split-string v))
-						     #'string<) " "))
-			(t v))))))
-	   ;; expanded body
-	   (lang (nth 0 info))
-	   (params (nth 2 info))
-	   (body (if (org-babel-noweb-p params :eval)
-			   (org-babel-expand-noweb-references info) (nth 1 info)))
-	   (expand-cmd (intern (concat "org-babel-expand-body:" lang)))
-	   (assignments-cmd (intern (concat "org-babel-variable-assignments:"
-					    lang)))
-	   (expanded
-	    (if (fboundp expand-cmd) (funcall expand-cmd body params)
-	      (org-babel-expand-body:generic
-	       body params (and (fboundp assignments-cmd)
-				(funcall assignments-cmd params))))))
-      (let* ((it (format "%s-%s"
-                         (mapconcat
-                          #'identity
-                          (delq nil (mapcar (lambda (arg)
-                                              (let ((normalized (funcall norm arg)))
-                                                (when normalized
-                                                  (format "%S" normalized))))
-                                            (nth 2 info))) ":")
-                         expanded))
-             (hash (sha1 it)))
-        (when (called-interactively-p 'interactive) (message hash))
-        hash))))
-
-(defun org-babel-current-result-hash (&optional info)
-  "Return the current in-buffer hash."
-  (let ((result (org-babel-where-is-src-block-result nil info)))
-    (when result
-      (org-with-wide-buffer
-       (goto-char result)
-       (looking-at org-babel-result-regexp)
-       (match-string-no-properties 1)))))
-
-(defun org-babel-set-current-result-hash (hash info)
-  "Set the current in-buffer hash to HASH."
-  (org-with-wide-buffer
-   (goto-char (org-babel-where-is-src-block-result nil info))
-   (looking-at org-babel-result-regexp)
-   (goto-char (match-beginning 1))
-   (mapc #'delete-overlay (overlays-at (point)))
-   (forward-char org-babel-hash-show)
-   (mapc #'delete-overlay (overlays-at (point)))
-   (replace-match hash nil nil nil 1)
-   (beginning-of-line)
-   (org-babel-hide-hash)))
-
-(defun org-babel-hide-hash ()
-  "Hide the hash in the current results line.
-Only the initial `org-babel-hash-show' characters of the hash
-will remain visible."
-  (add-to-invisibility-spec '(org-babel-hide-hash . t))
-  (save-excursion
-    (when (and (re-search-forward org-babel-result-regexp nil t)
-               (match-string 1))
-      (let* ((start (match-beginning 1))
-             (hide-start (+ org-babel-hash-show start))
-             (end (match-end 1))
-             (hash (match-string 1))
-             ov1 ov2)
-        (setq ov1 (make-overlay start hide-start))
-        (setq ov2 (make-overlay hide-start end))
-        (overlay-put ov2 'invisible 'org-babel-hide-hash)
-        (overlay-put ov1 'babel-hash hash)))))
-
-(defun org-babel-hide-all-hashes ()
-  "Hide the hash in the current buffer.
-Only the initial `org-babel-hash-show' characters of each hash
-will remain visible.  This function should be called as part of
-the `org-mode-hook'."
-  (save-excursion
-    (while (and (not org-babel-hash-show-time)
-		(re-search-forward org-babel-result-regexp nil t))
-      (goto-char (match-beginning 0))
-      (org-babel-hide-hash)
-      (goto-char (match-end 0)))))
-(add-hook 'org-mode-hook 'org-babel-hide-all-hashes)
-
-(defun org-babel-hash-at-point (&optional point)
-  "Return the value of the hash at POINT.
-\\<org-mode-map>\
-The hash is also added as the last element of the kill ring.
-This can be called with `\\[org-ctrl-c-ctrl-c]'."
-  (interactive)
-  (let ((hash (car (delq nil (mapcar
-			      (lambda (ol) (overlay-get ol 'babel-hash))
-                              (overlays-at (or point (point))))))))
-    (when hash (kill-new hash) (message hash))))
-
-(defun org-babel-result-hide-spec ()
-  "Hide portions of results lines.
-Add `org-babel-hide-result' as an invisibility spec for hiding
-portions of results lines."
-  (add-to-invisibility-spec '(org-babel-hide-result . t)))
-(add-hook 'org-mode-hook 'org-babel-result-hide-spec)
-
-(defvar org-babel-hide-result-overlays nil
-  "Overlays hiding results.")
-
-(defun org-babel-result-hide-all ()
-  "Fold all results in the current buffer."
-  (interactive)
-  (org-babel-show-result-all)
-  (save-excursion
-    (while (re-search-forward org-babel-result-regexp nil t)
-      (save-excursion (goto-char (match-beginning 0))
-                      (org-babel-hide-result-toggle-maybe)))))
-
-(defun org-babel-show-result-all ()
-  "Unfold all results in the current buffer."
-  (mapc 'delete-overlay org-babel-hide-result-overlays)
-  (setq org-babel-hide-result-overlays nil))
-
-;;;###autoload
-(defun org-babel-hide-result-toggle-maybe ()
-  "Toggle visibility of result at point."
-  (interactive)
-  (let ((case-fold-search t))
-    (if (save-excursion
-          (beginning-of-line 1)
-          (looking-at org-babel-result-regexp))
-        (progn (org-babel-hide-result-toggle)
-               t) ;; to signal that we took action
-      nil))) ;; to signal that we did not
-
-(defun org-babel-hide-result-toggle (&optional force)
-  "Toggle the visibility of the current result."
-  (interactive)
-  (save-excursion
-    (beginning-of-line)
-    (if (re-search-forward org-babel-result-regexp nil t)
-        (let ((start (progn (beginning-of-line 2) (- (point) 1)))
-	      (end (progn
-		     (while (looking-at org-babel-multi-line-header-regexp)
-		       (forward-line 1))
-		     (goto-char (- (org-babel-result-end) 1)) (point)))
-	      ov)
-          (if (memq t (mapcar (lambda (overlay)
-                                (eq (overlay-get overlay 'invisible)
-				    'org-babel-hide-result))
-                              (overlays-at start)))
-              (when (or (not force) (eq force 'off))
-		(mapc (lambda (ov)
-			(when (member ov org-babel-hide-result-overlays)
-			  (setq org-babel-hide-result-overlays
-				(delq ov org-babel-hide-result-overlays)))
-			(when (eq (overlay-get ov 'invisible)
-				  'org-babel-hide-result)
-			  (delete-overlay ov)))
-		      (overlays-at start)))
-            (setq ov (make-overlay start end))
-            (overlay-put ov 'invisible 'org-babel-hide-result)
-            ;; make the block accessible to isearch
-            (overlay-put
-             ov 'isearch-open-invisible
-             (lambda (ov)
-               (when (member ov org-babel-hide-result-overlays)
-                 (setq org-babel-hide-result-overlays
-                       (delq ov org-babel-hide-result-overlays)))
-               (when (eq (overlay-get ov 'invisible)
-                         'org-babel-hide-result)
-                 (delete-overlay ov))))
-            (push ov org-babel-hide-result-overlays)))
-      (error "Not looking at a result line"))))
-
-;; org-tab-after-check-for-cycling-hook
-(add-hook 'org-tab-first-hook 'org-babel-hide-result-toggle-maybe)
-;; Remove overlays when changing major mode
-(add-hook 'org-mode-hook
-	  (lambda () (add-hook 'change-major-mode-hook
-			  'org-babel-show-result-all 'append 'local)))
-
-(defvar org-file-properties)
-(defun org-babel-params-from-properties (&optional lang)
-  "Retrieve parameters specified as properties.
-Return a list of association lists of source block params
-specified in the properties of the current outline entry."
-  (save-match-data
-    (list
-     ;; header arguments specified with the header-args property at
-     ;; point of call.
-     (org-babel-parse-header-arguments
-      (org-entry-get org-babel-current-src-block-location
-		     "header-args"
-		     'inherit))
-     (and lang	 ; language-specific header arguments at point of call
-	  (org-babel-parse-header-arguments
-	   (org-entry-get org-babel-current-src-block-location
-			  (concat "header-args:" lang)
-			  'inherit))))))
-
-(defun org-babel-balanced-split (string alts)
-  "Split STRING on instances of ALTS.
-ALTS is a character, or cons of two character options where each
-option may be either the numeric code of a single character or
-a list of character alternatives.  For example, to split on
-balanced instances of \"[ \t]:\", set ALTS to ((32 9) . 58)."
-  (with-temp-buffer
-    (insert string)
-    (goto-char (point-min))
-    (let ((splitp (lambda (past next)
-		    ;; Non-nil when there should be a split after NEXT
-		    ;; character. PAST is the character before NEXT.
-		    (pcase alts
-		      (`(,(and first (pred consp)) . ,(and second (pred consp)))
-		       (and (memq past first) (memq next second)))
-		      (`(,first . ,(and second (pred consp)))
-		       (and (eq past first) (memq next second)))
-		      (`(,(and first (pred consp)) . ,second)
-		       (and (memq past first) (eq next second)))
-		      (`(,first . ,second)
-		       (and (eq past first) (eq next second)))
-		      ((pred (eq next)) t)
-		      (_ nil))))
-	  (partial nil)
-	  (result nil))
-      (while (not (eobp))
-        (cond
-	 ((funcall splitp (char-before) (char-after))
-	  ;; There is a split after point.  If ALTS is two-folds,
-	  ;; remove last parsed character as it belongs to ALTS.
-	  (when (consp alts) (pop partial))
-	  ;; Include elements parsed so far in RESULTS and flush
-	  ;; partial parsing.
-	  (when partial
-	    (push (apply #'string (nreverse partial)) result)
-	    (setq partial nil))
-	  (forward-char))
-	 ((memq (char-after) '(?\( ?\[))
-	  ;; Include everything between balanced brackets.
-	  (let* ((origin (point))
-		 (after (char-after))
-		 (openings (list after)))
-	    (forward-char)
-	    (while (and openings (re-search-forward "[]()]" nil t))
-	      (pcase (char-before)
-		((and match (or ?\[ ?\()) (push match openings))
-		(?\] (when (eq ?\[ (car openings)) (pop openings)))
-		(_ (when (eq ?\( (car openings)) (pop openings)))))
-	    (if (null openings)
-		(setq partial
-		      (nconc (nreverse (string-to-list
-					(buffer-substring origin (point))))
-			     partial))
-	      ;; Un-balanced bracket.  Backtrack.
-	      (push after partial)
-	      (goto-char (1+ origin)))))
-	 ((and (eq ?\" (char-after)) (not (eq ?\\ (char-before))))
-	  ;; Include everything from current double quote to next
-	  ;; non-escaped double quote.
-	  (let ((origin (point)))
-	    (if (re-search-forward "[^\\]\"" nil t)
-		(setq partial
-		      (nconc (nreverse (string-to-list
-					(buffer-substring origin (point))))
-			     partial))
-	      ;; No closing double quote.  Backtrack.
-	      (push ?\" partial)
-	      (forward-char))))
-	 (t (push (char-after) partial)
-	    (forward-char))))
-      ;; Add pending parsing and return result.
-      (when partial (push (apply #'string (nreverse partial)) result))
-      (nreverse result))))
-
-(defun org-babel-join-splits-near-ch (ch list)
-  "Join splits where \"=\" is on either end of the split."
-  (let ((last= (lambda (str) (= ch (aref str (1- (length str))))))
-	(first= (lambda (str) (= ch (aref str 0)))))
-    (reverse
-     (cl-reduce (lambda (acc el)
-		   (let ((head (car acc)))
-		     (if (and head (or (funcall last= head) (funcall first= el)))
-			 (cons (concat head el) (cdr acc))
-		       (cons el acc))))
-		 list :initial-value nil))))
-
-(defun org-babel-parse-header-arguments (arg-string)
-  "Parse a string of header arguments returning an alist."
-  (when (> (length arg-string) 0)
-    (org-babel-parse-multiple-vars
-     (delq nil
-	   (mapcar
-	    (lambda (arg)
-	      (if (string-match
-		   "\\([^ \f\t\n\r\v]+\\)[ \f\t\n\r\v]+\\([^ \f\t\n\r\v]+.*\\)"
-		   arg)
-		  (cons (intern (match-string 1 arg))
-			(org-babel-read (org-babel-chomp (match-string 2 arg))))
-		(cons (intern (org-babel-chomp arg)) nil)))
-	    (let ((raw (org-babel-balanced-split arg-string '((32 9) . 58))))
-              (cons (car raw) (mapcar (lambda (r) (concat ":" r)) (cdr raw)))))))))
-
-(defun org-babel-parse-multiple-vars (header-arguments)
-  "Expand multiple variable assignments behind a single :var keyword.
-
-This allows expression of multiple variables with one :var as
-shown below.
-
-#+PROPERTY: var foo=1, bar=2"
-  (let (results)
-    (mapc (lambda (pair)
-	    (if (eq (car pair) :var)
-		(mapcar (lambda (v) (push (cons :var (org-trim v)) results))
-			(org-babel-join-splits-near-ch
-			 61 (org-babel-balanced-split (cdr pair) 32)))
-	      (push pair results)))
-	  header-arguments)
-    (nreverse results)))
-
-(defun org-babel-process-params (params)
-  "Expand variables in PARAMS and add summary parameters."
-  (let* ((processed-vars (mapcar (lambda (el)
-				   (if (consp el)
-				       el
-				     (org-babel-ref-parse el)))
-				 (org-babel--get-vars params)))
-	 (vars-and-names (if (and (assq :colname-names params)
-				  (assq :rowname-names params))
-			     (list processed-vars)
-			   (org-babel-disassemble-tables
-			    processed-vars
-			    (cdr (assq :hlines params))
-			    (cdr (assq :colnames params))
-			    (cdr (assq :rownames params)))))
-	 (raw-result (or (cdr (assq :results params)) ""))
-	 (result-params (delete-dups
-			 (append
-			  (split-string (if (stringp raw-result)
-					    raw-result
-					  (eval raw-result t)))
-			  (cdr (assq :result-params params))))))
-    (append
-     (mapcar (lambda (var) (cons :var var)) (car vars-and-names))
-     (list
-      (cons :colname-names (or (cdr (assq :colname-names params))
-			       (cadr  vars-and-names)))
-      (cons :rowname-names (or (cdr (assq :rowname-names params))
-			       (cl-caddr vars-and-names)))
-      (cons :result-params result-params)
-      (cons :result-type  (cond ((member "output" result-params) 'output)
-				((member "value" result-params) 'value)
-				(t 'value))))
-     (cl-remove-if
-      (lambda (x) (memq (car x) '(:colname-names :rowname-names :result-params
-					    :result-type :var)))
-      params))))
-
-;; row and column names
-(defun org-babel-del-hlines (table)
-  "Remove all `hline's from TABLE."
-  (remq 'hline table))
-
-(defun org-babel-get-colnames (table)
-  "Return the column names of TABLE.
-Return a cons cell, the `car' of which contains the TABLE less
-colnames, and the `cdr' of which contains a list of the column
-names."
-  (if (eq 'hline (nth 1 table))
-      (cons (cddr table) (car table))
-    (cons (cdr table) (car table))))
-
-(defun org-babel-get-rownames (table)
-  "Return the row names of TABLE.
-Return a cons cell, the `car' of which contains the TABLE less
-rownames, and the `cdr' of which contains a list of the rownames.
-Note: this function removes any hlines in TABLE."
-  (let* ((table (org-babel-del-hlines table))
-	 (rownames (funcall (lambda ()
-			      (let ((tp table))
-				(mapcar
-				 (lambda (_row)
-				   (prog1
-				       (pop (car tp))
-				     (setq tp (cdr tp))))
-				 table))))))
-    (cons table rownames)))
-
-(defun org-babel-put-colnames (table colnames)
-  "Add COLNAMES to TABLE if they exist."
-  (if colnames (apply 'list colnames 'hline table) table))
-
-(defun org-babel-put-rownames (table rownames)
-  "Add ROWNAMES to TABLE if they exist."
-  (if rownames
-      (mapcar (lambda (row)
-                (if (listp row)
-                    (cons (or (pop rownames) "") row)
-                  row)) table)
-    table))
-
-(defun org-babel-pick-name (names selector)
-  "Select one out of an alist of row or column names.
-SELECTOR can be either a list of names in which case those names
-will be returned directly, or an index into the list NAMES in
-which case the indexed names will be return."
-  (if (listp selector)
-      selector
-    (when names
-      (if (and selector (symbolp selector) (not (equal t selector)))
-	  (cdr (assoc selector names))
-	(if (integerp selector)
-	    (nth (- selector 1) names)
-	  (cdr (car (last names))))))))
-
-(defun org-babel-disassemble-tables (vars hlines colnames rownames)
-  "Parse tables for further processing.
-Process the variables in VARS according to the HLINES,
-ROWNAMES and COLNAMES header arguments.  Return a list consisting
-of the vars, cnames and rnames."
-  (let (cnames rnames)
-    (list
-     (mapcar
-      (lambda (var)
-        (when (listp (cdr var))
-          (when (and (not (equal colnames "no"))
-                     (or colnames (and (eq (nth 1 (cdr var)) 'hline)
-                                       (not (member 'hline (cddr (cdr var)))))))
-            (let ((both (org-babel-get-colnames (cdr var))))
-              (setq cnames (cons (cons (car var) (cdr both))
-                                 cnames))
-              (setq var (cons (car var) (car both)))))
-          (when (and rownames (not (equal rownames "no")))
-            (let ((both (org-babel-get-rownames (cdr var))))
-              (setq rnames (cons (cons (car var) (cdr both))
-                                 rnames))
-              (setq var (cons (car var) (car both)))))
-          (when (and hlines (not (equal hlines "yes")))
-            (setq var (cons (car var) (org-babel-del-hlines (cdr var))))))
-        var)
-      vars)
-     (reverse cnames) (reverse rnames))))
-
-(defun org-babel-reassemble-table (table colnames rownames)
-  "Add column and row names to a table.
-Given a TABLE and set of COLNAMES and ROWNAMES add the names
-to the table for reinsertion to org-mode."
-  (if (listp table)
-      (let ((table (if (and rownames (= (length table) (length rownames)))
-                       (org-babel-put-rownames table rownames) table)))
-        (if (and colnames (listp (car table)) (= (length (car table))
-                                                 (length colnames)))
-            (org-babel-put-colnames table colnames) table))
-    table))
-
-(defun org-babel-where-is-src-block-head (&optional src-block)
-  "Find where the current source block begins.
-
-If optional argument SRC-BLOCK is `src-block' type element, find
-its current beginning instead.
-
-Return the point at the beginning of the current source block.
-Specifically at the beginning of the #+BEGIN_SRC line.  Also set
-match-data relatively to `org-babel-src-block-regexp', which see.
-If the point is not on a source block then return nil."
-  (let ((element (or src-block (org-element-at-point))))
-    (when (eq (org-element-type element) 'src-block)
-      (let ((end (org-element-property :end element)))
-	(org-with-wide-buffer
-	 ;; Ensure point is not on a blank line after the block.
-	 (beginning-of-line)
-	 (skip-chars-forward " \r\t\n" end)
-	 (when (< (point) end)
-	   (prog1 (goto-char (org-element-property :post-affiliated element))
-	     (looking-at org-babel-src-block-regexp))))))))
-
-;;;###autoload
-(defun org-babel-goto-src-block-head ()
-  "Go to the beginning of the current code block."
-  (interactive)
-  (let ((head (org-babel-where-is-src-block-head)))
-     (if head (goto-char head) (error "Not currently in a code block"))))
-
-;;;###autoload
-(defun org-babel-goto-named-src-block (name)
-  "Go to a named source-code block."
-  (interactive
-   (let ((completion-ignore-case t)
-	 (case-fold-search t)
-	 (all-block-names (org-babel-src-block-names)))
-     (list (completing-read
-	    "source-block name: " all-block-names nil t
-	    (let* ((context (org-element-context))
-		   (type (org-element-type context))
-		   (noweb-ref
-		    (and (memq type '(inline-src-block src-block))
-			 (org-in-regexp (org-babel-noweb-wrap)))))
-	      (cond
-	       (noweb-ref
-		(buffer-substring
-		 (+ (car noweb-ref) (length org-babel-noweb-wrap-start))
-		 (- (cdr noweb-ref) (length org-babel-noweb-wrap-end))))
-	       ((memq type '(babel-call inline-babel-call)) ;#+CALL:
-		(org-element-property :call context))
-	       ((car (org-element-property :results context))) ;#+RESULTS:
-	       ((let ((symbol (thing-at-point 'symbol))) ;Symbol.
-		  (and symbol
-		       (member-ignore-case symbol all-block-names)
-		       symbol)))
-	       (t "")))))))
-  (let ((point (org-babel-find-named-block name)))
-    (if point
-        ;; Taken from `org-open-at-point'.
-        (progn (org-mark-ring-push) (goto-char point) (org-show-context))
-      (message "source-code block `%s' not found in this buffer" name))))
-
-(defun org-babel-find-named-block (name)
-  "Find a named source-code block.
-Return the location of the source block identified by source
-NAME, or nil if no such block exists.  Set match data according
-to `org-babel-named-src-block-regexp'."
-  (save-excursion
-    (goto-char (point-min))
-    (let ((regexp (org-babel-named-src-block-regexp-for-name name)))
-      (or (and (looking-at regexp)
-	       (progn (goto-char (match-beginning 1))
-		      (line-beginning-position)))
-	  (ignore-errors (org-next-block 1 nil regexp))))))
-
-(defun org-babel-src-block-names (&optional file)
-  "Returns the names of source blocks in FILE or the current buffer."
-  (with-current-buffer (if file (find-file-noselect file) (current-buffer))
-    (org-with-point-at 1
-      (let ((regexp "^[ \t]*#\\+begin_src ")
-	    (case-fold-search t)
-	    (names nil))
-	(while (re-search-forward regexp nil t)
-	  (let ((element (org-element-at-point)))
-	    (when (eq 'src-block (org-element-type element))
-	      (let ((name (org-element-property :name element)))
-		(when name (push name names))))))
-	names))))
-
-;;;###autoload
-(defun org-babel-goto-named-result (name)
-  "Go to a named result."
-  (interactive
-   (let ((completion-ignore-case t))
-     (list (completing-read "Source-block name: "
-			    (org-babel-result-names) nil t))))
-  (let ((point (org-babel-find-named-result name)))
-    (if point
-        ;; taken from `org-open-at-point'
-        (progn (goto-char point) (org-show-context))
-      (message "result `%s' not found in this buffer" name))))
-
-(defun org-babel-find-named-result (name)
-  "Find a named result.
-Return the location of the result named NAME in the current
-buffer or nil if no such result exists."
-  (save-excursion
-    (goto-char (point-min))
-    (let ((case-fold-search t)
-	  (re (format "^[ \t]*#\\+%s.*?:[ \t]*%s[ \t]*$"
-		      org-babel-results-keyword
-		      (regexp-quote name))))
-      (catch :found
-	(while (re-search-forward re nil t)
-	  (let ((element (org-element-at-point)))
-	    (when (or (eq (org-element-type element) 'keyword)
-		      (< (point)
-			 (org-element-property :post-affiliated element)))
-	      (throw :found (line-beginning-position)))))))))
-
-(defun org-babel-result-names (&optional file)
-  "Returns the names of results in FILE or the current buffer."
-  (save-excursion
-    (when file (find-file file)) (goto-char (point-min))
-    (let ((case-fold-search t) names)
-      (while (re-search-forward org-babel-result-w-name-regexp nil t)
-	(setq names (cons (match-string-no-properties 9) names)))
-      names)))
-
-;;;###autoload
-(defun org-babel-next-src-block (&optional arg)
-  "Jump to the next source block.
-With optional prefix argument ARG, jump forward ARG many source blocks."
-  (interactive "p")
-  (org-next-block arg nil org-babel-src-block-regexp))
-
-;;;###autoload
-(defun org-babel-previous-src-block (&optional arg)
-  "Jump to the previous source block.
-With optional prefix argument ARG, jump backward ARG many source blocks."
-  (interactive "p")
-  (org-previous-block arg org-babel-src-block-regexp))
-
-(defvar org-babel-load-languages)
-
-;;;###autoload
-(defun org-babel-mark-block ()
-  "Mark current src block."
-  (interactive)
-  (let ((head (org-babel-where-is-src-block-head)))
-    (when head
-      (save-excursion
-        (goto-char head)
-        (looking-at org-babel-src-block-regexp))
-      (push-mark (match-end 5) nil t)
-      (goto-char (match-beginning 5)))))
-
-(defun org-babel-demarcate-block (&optional arg)
-  "Wrap or split the code in the region or on the point.
-When called from inside of a code block the current block is
-split.  When called from outside of a code block a new code block
-is created.  In both cases if the region is demarcated and if the
-region is not active then the point is demarcated."
-  (interactive "P")
-  (let* ((info (org-babel-get-src-block-info 'light))
-	 (start (org-babel-where-is-src-block-head))
-	 (block (and start (match-string 0)))
-	 (headers (and start (match-string 4)))
-	 (stars (concat (make-string (or (org-current-level) 1) ?*) " "))
-	 (lower-case-p (and block
-			    (let (case-fold-search)
-			      (string-match-p "#\\+begin_src" block)))))
-    (if info
-        (mapc
-         (lambda (place)
-           (save-excursion
-             (goto-char place)
-             (let ((lang (nth 0 info))
-                   (indent (make-string (org-get-indentation) ?\s)))
-	       (when (string-match "^[[:space:]]*$"
-				   (buffer-substring (point-at-bol)
-						     (point-at-eol)))
-		 (delete-region (point-at-bol) (point-at-eol)))
-               (insert (concat
-			(if (looking-at "^") "" "\n")
-			indent (funcall (if lower-case-p 'downcase 'upcase) "#+end_src\n")
-			(if arg stars indent) "\n"
-			indent (funcall (if lower-case-p 'downcase 'upcase) "#+begin_src ")
-			lang
-			(if (> (length headers) 1)
-			    (concat " " headers) headers)
-			(if (looking-at "[\n\r]")
-			    ""
-			  (concat "\n" (make-string (current-column) ? )))))))
-	   (move-end-of-line 2))
-         (sort (if (org-region-active-p) (list (mark) (point)) (list (point))) #'>))
-      (let ((start (point))
-	    (lang (completing-read
-		   "Lang: "
-		   (mapcar #'symbol-name
-			   (delete-dups
-			    (append (mapcar #'car org-babel-load-languages)
-				    (mapcar (lambda (el) (intern (car el)))
-					    org-src-lang-modes))))))
-	    (body (delete-and-extract-region
-		   (if (org-region-active-p) (mark) (point)) (point))))
-	(insert (concat (if (looking-at "^") "" "\n")
-			(if arg (concat stars "\n") "")
-			(funcall (if lower-case-p 'downcase 'upcase) "#+begin_src ")
-			lang "\n"
-			body
-			(if (or (= (length body) 0)
-				(string-suffix-p "\r" body)
-				(string-suffix-p "\n" body)) "" "\n")
-			(funcall (if lower-case-p 'downcase 'upcase) "#+end_src\n")))
-	(goto-char start) (move-end-of-line 1)))))
-
-(defun org-babel--insert-results-keyword (name hash)
-  "Insert RESULTS keyword with NAME value at point.
-If NAME is nil, results are anonymous.  HASH is a string used as
-the results hash, or nil.  Leave point before the keyword."
-  (save-excursion (insert "\n"))	;open line to indent.
-  (org-indent-line)
-  (delete-char 1)
-  (insert (concat "#+" org-babel-results-keyword
-		  (cond ((not hash) nil)
-			(org-babel-hash-show-time
-			 (format "[%s %s]"
-				 (format-time-string "<%F %T>")
-				 hash))
-			(t (format "[%s]" hash)))
-		  ":"
-		  (when name (concat " " name))
-		  "\n"))
-  ;; Make sure results are going to be followed by at least one blank
-  ;; line so they do not get merged with the next element, e.g.,
-  ;;
-  ;;   #+results:
-  ;;   : 1
-  ;;
-  ;;   : fixed-width area, unrelated to the above.
-  (unless (looking-at "^[ \t]*$") (save-excursion (insert "\n")))
-  (beginning-of-line 0)
-  (when hash (org-babel-hide-hash)))
-
-(defun org-babel--clear-results-maybe (hash)
-  "Clear results when hash doesn't match HASH.
-
-When results hash does not match HASH, remove RESULTS keyword at
-point, along with related contents.  Do nothing if HASH is nil.
-
-Return a non-nil value if results were cleared.  In this case,
-leave point where new results should be inserted."
-  (when hash
-    (looking-at org-babel-result-regexp)
-    (unless (string= (match-string 1) hash)
-      (let* ((e (org-element-at-point))
-	     (post (copy-marker (org-element-property :post-affiliated e))))
-	;; Delete contents.
-	(delete-region post
-		       (save-excursion
-			 (goto-char (org-element-property :end e))
-			 (skip-chars-backward " \t\n")
-			 (line-beginning-position 2)))
-	;; Delete RESULT keyword.  However, if RESULTS keyword is
-	;; orphaned, ignore this part.  The deletion above already
-	;; took care of it.
-	(unless (= (point) post)
-	  (delete-region (line-beginning-position)
-			 (line-beginning-position 2)))
-	(goto-char post)
-	(set-marker post nil)
-	t))))
-
-(defun org-babel-where-is-src-block-result (&optional insert _info hash)
-  "Find where the current source block results begin.
-
-Return the point at the beginning of the result of the current
-source block, specifically at the beginning of the results line.
-
-If no result exists for this block return nil, unless optional
-argument INSERT is non-nil.  In this case, create a results line
-following the source block and return the position at its
-beginning.  In the case of inline code, remove the results part
-instead.
-
-If optional argument HASH is a string, remove contents related to
-RESULTS keyword if its hash is different.  Then update the latter
-to HASH."
-  (let ((context (org-element-context)))
-    (catch :found
-      (org-with-wide-buffer
-       (pcase (org-element-type context)
-	 ((or `inline-babel-call `inline-src-block)
-	  ;; Results for inline objects are located right after them.
-	  ;; There is no RESULTS line to insert either.
-	  (let ((limit (org-element-property
-			:contents-end (org-element-property :parent context))))
-	    (goto-char (org-element-property :end context))
-	    (skip-chars-forward " \t\n" limit)
-	    (throw :found
-		   (and
-		    (< (point) limit)
-		    (let ((result (org-element-context)))
-		      (and (eq (org-element-type result) 'macro)
-			   (string= (org-element-property :key result)
-				    "results")
-			   (if (not insert) (point)
-			     (delete-region
-			      (point)
-			      (progn
-				(goto-char (org-element-property :end result))
-				(skip-chars-backward " \t")
-				(point)))
-			     (point))))))))
-	 ((or `babel-call `src-block)
-	  (let* ((name (org-element-property :name context))
-		 (named-results (and name (org-babel-find-named-result name))))
-	    (goto-char (or named-results (org-element-property :end context)))
-	    (cond
-	     ;; Existing results named after the current source.
-	     (named-results
-	      (when (org-babel--clear-results-maybe hash)
-		(org-babel--insert-results-keyword name hash))
-	      (throw :found (point)))
-	     ;; Named results expect but none to be found.
-	     (name)
-	     ;; No possible anonymous results at the very end of
-	     ;; buffer or outside CONTEXT parent.
-	     ((eq (point)
-		  (or (org-element-property
-		       :contents-end (org-element-property :parent context))
-		      (point-max))))
-	     ;; Check if next element is an anonymous result below
-	     ;; the current block.
-	     ((let* ((next (org-element-at-point))
-		     (end (save-excursion
-			    (goto-char
-			     (org-element-property :post-affiliated next))
-			    (line-end-position)))
-		     (empty-result-re (concat org-babel-result-regexp "$"))
-		     (case-fold-search t))
-		(re-search-forward empty-result-re end t))
-	      (beginning-of-line)
-	      (when (org-babel--clear-results-maybe hash)
-		(org-babel--insert-results-keyword nil hash))
-	      (throw :found (point))))))
-	 ;; Ignore other elements.
-	 (_ (throw :found nil))))
-      ;; No result found.  Insert a RESULTS keyword below element, if
-      ;; appropriate.  In this case, ensure there is an empty line
-      ;; after the previous element.
-      (when insert
-	(save-excursion
-	  (goto-char (min (org-element-property :end context) (point-max)))
-	  (skip-chars-backward " \t\n")
-	  (forward-line)
-	  (unless (bolp) (insert "\n"))
-	  (insert "\n")
-	  (org-babel--insert-results-keyword
-	   (org-element-property :name context) hash)
-	  (point))))))
-
-(defun org-babel-read-element (element)
-  "Read ELEMENT into emacs-lisp.
-Return nil if ELEMENT cannot be read."
-  (org-with-wide-buffer
-   (goto-char (org-element-property :post-affiliated element))
-   (pcase (org-element-type element)
-     (`fixed-width
-      (let ((v (org-trim (org-element-property :value element))))
-	(or (org-babel--string-to-number v) v)))
-     (`table (org-babel-read-table))
-     (`plain-list (org-babel-read-list))
-     (`example-block
-      (let ((v (org-element-property :value element)))
-	(if (or org-src-preserve-indentation
-		(org-element-property :preserve-indent element))
-	    v
-	  (org-remove-indentation v))))
-     (`export-block
-      (org-remove-indentation (org-element-property :value element)))
-     (`paragraph
-      ;; Treat paragraphs containing a single link specially.
-      (skip-chars-forward " \t")
-      (if (and (looking-at org-bracket-link-regexp)
-	       (save-excursion
-		 (goto-char (match-end 0))
-		 (skip-chars-forward " \r\t\n")
-		 (<= (org-element-property :end element)
-		     (point))))
-	  (org-babel-read-link)
-	(buffer-substring-no-properties
-	 (org-element-property :contents-begin element)
-	 (org-element-property :contents-end element))))
-     ((or `center-block `quote-block `verse-block `special-block)
-      (org-remove-indentation
-       (buffer-substring-no-properties
-	(org-element-property :contents-begin element)
-	(org-element-property :contents-end element))))
-     (_ nil))))
-
-(defun org-babel-read-result ()
-  "Read the result at point into emacs-lisp."
-  (and (not (save-excursion
-	      (beginning-of-line)
-	      (looking-at-p "[ \t]*$")))
-       (org-babel-read-element (org-element-at-point))))
-
-(defun org-babel-read-table ()
-  "Read the table at point into emacs-lisp."
-  (mapcar (lambda (row)
-            (if (and (symbolp row) (equal row 'hline)) row
-              (mapcar (lambda (el) (org-babel-read el 'inhibit-lisp-eval)) row)))
-          (org-table-to-lisp)))
-
-(defun org-babel-read-list ()
-  "Read the list at point into emacs-lisp."
-  (mapcar (lambda (el) (org-babel-read el 'inhibit-lisp-eval))
-	  (cdr (org-list-to-lisp))))
-
-(defvar org-link-types-re)
-(defun org-babel-read-link ()
-  "Read the link at point into emacs-lisp.
-If the path of the link is a file path it is expanded using
-`expand-file-name'."
-  (let* ((case-fold-search t)
-         (raw (and (looking-at org-bracket-link-regexp)
-                   (org-no-properties (match-string 1))))
-         (type (and (string-match org-link-types-re raw)
-                    (match-string 1 raw))))
-    (cond
-     ((not type) (expand-file-name raw))
-     ((string= type "file")
-      (and (string-match "file\\(.*\\):\\(.+\\)" raw)
-           (expand-file-name (match-string 2 raw))))
-     (t raw))))
-
-(defun org-babel-format-result (result &optional sep)
-  "Format RESULT for writing to file."
-  (let ((echo-res (lambda (r) (if (stringp r) r (format "%S" r)))))
-    (if (listp result)
-	;; table result
-	(orgtbl-to-generic
-	 result (list :sep (or sep "\t") :fmt echo-res))
-      ;; scalar result
-      (funcall echo-res result))))
-
-(defun org-babel-insert-result (result &optional result-params info hash lang)
-  "Insert RESULT into the current buffer.
-
-By default RESULT is inserted after the end of the current source
-block.  The RESULT of an inline source block usually will be
-wrapped inside a `results' macro and placed on the same line as
-the inline source block.  The macro is stripped upon export.
-Multiline and non-scalar RESULTS from inline source blocks are
-not allowed.  With optional argument RESULT-PARAMS controls
-insertion of results in the Org mode file.  RESULT-PARAMS can
-take the following values:
-
-replace - (default option) insert results after the source block
-          or inline source block replacing any previously
-          inserted results.
-
-silent -- no results are inserted into the Org buffer but
-          the results are echoed to the minibuffer and are
-          ingested by Emacs (a potentially time consuming
-          process).
-
-file ---- the results are interpreted as a file path, and are
-          inserted into the buffer using the Org file syntax.
-
-list ---- the results are interpreted as an Org list.
-
-raw ----- results are added directly to the Org file.  This is
-          a good option if you code block will output Org
-          formatted text.
-
-drawer -- results are added directly to the Org file as with
-          \"raw\", but are wrapped in a RESULTS drawer or results
-          macro, allowing them to later be replaced or removed
-          automatically.
-
-org ----- results are added inside of a \"src_org{}\" or \"#+BEGIN_SRC
-          org\" block depending on whether the current source block is
-          inline or not.  They are not comma-escaped when inserted,
-          but Org syntax here will be discarded when exporting the
-          file.
-
-html ---- results are added inside of a #+BEGIN_EXPORT HTML block
-          or html export snippet depending on whether the current
-          source block is inline or not.  This is a good option
-          if your code block will output html formatted text.
-
-latex --- results are added inside of a #+BEGIN_EXPORT LATEX
-          block or latex export snippet depending on whether the
-          current source block is inline or not.  This is a good
-          option if your code block will output latex formatted
-          text.
-
-code ---- the results are extracted in the syntax of the source
-          code of the language being evaluated and are added
-          inside of a source block with the source-code language
-          set appropriately.  Also, source block inlining is
-          preserved in this case.  Note this relies on the
-          optional LANG argument.
-
-list ---- the results are rendered as a list.  This option not
-          allowed for inline src blocks.
-
-table --- the results are rendered as a table.  This option not
-          allowed for inline src blocks.
-
-INFO may provide the values of these header arguments (in the
-`header-arguments-alist' see the docstring for
-`org-babel-get-src-block-info'):
-
-:file --- the name of the file to which output should be written.
-
-:wrap --- the effect is similar to `latex' in RESULT-PARAMS but
-          using the argument supplied to specify the export block
-          or snippet type."
-  (cond ((stringp result)
-	 (setq result (org-no-properties result))
-	 (when (member "file" result-params)
-	   (setq result (org-babel-result-to-file
-			 result (when (assq :file-desc (nth 2 info))
-				  (or (cdr (assq :file-desc (nth 2 info)))
-				      result))))))
-	((listp result))
-	(t (setq result (format "%S" result))))
-  (if (and result-params (member "silent" result-params))
-      (progn (message (replace-regexp-in-string "%" "%%" (format "%S" result)))
-	     result)
-    (let ((inline (let ((context (org-element-context)))
-		    (and (memq (org-element-type context)
-			       '(inline-babel-call inline-src-block))
-			 context))))
-      (when inline
-	(let ((warning
-	       (or (and (member "table" result-params) "`:results table'")
-		   (and (listp result) "list result")
-		   (and (string-match-p "\n." result) "multiline result")
-		   (and (member "list" result-params) "`:results list'"))))
-	  (when warning
-	    (user-error "Inline error: %s cannot be used" warning))))
-      (save-excursion
-	(let* ((visible-beg (point-min-marker))
-	       (visible-end (copy-marker (point-max) t))
-	       (inline (let ((context (org-element-context)))
-			 (and (memq (org-element-type context)
-				    '(inline-babel-call inline-src-block))
-			      context)))
-	       (existing-result (org-babel-where-is-src-block-result t nil hash))
-	       (results-switches (cdr (assq :results_switches (nth 2 info))))
-	       ;; When results exist outside of the current visible
-	       ;; region of the buffer, be sure to widen buffer to
-	       ;; update them.
-	       (outside-scope (and existing-result
-				   (buffer-narrowed-p)
-				   (or (> visible-beg existing-result)
-				       (<= visible-end existing-result))))
-	       beg end indent)
-	  ;; Ensure non-inline results end in a newline.
-	  (when (and (org-string-nw-p result)
-		     (not inline)
-		     (not (string-equal (substring result -1) "\n")))
-	    (setq result (concat result "\n")))
-	  (unwind-protect
-	      (progn
-		(when outside-scope (widen))
-		(if existing-result (goto-char existing-result)
-		  (goto-char (org-element-property :end inline))
-		  (skip-chars-backward " \t"))
-		(unless inline
-		  (setq indent (org-get-indentation))
-		  (forward-line 1))
-		(setq beg (point))
-		(cond
-		 (inline
-		   ;; Make sure new results are separated from the
-		   ;; source code by one space.
-		   (unless existing-result
-		     (insert " ")
-		     (setq beg (point))))
-		 ((member "replace" result-params)
-		  (delete-region (point) (org-babel-result-end)))
-		 ((member "append" result-params)
-		  (goto-char (org-babel-result-end)) (setq beg (point-marker)))
-		 ((member "prepend" result-params))) ; already there
-		(setq results-switches
-		      (if results-switches (concat " " results-switches) ""))
-		(let ((wrap
-		       (lambda (start finish &optional no-escape no-newlines
-				 inline-start inline-finish)
-			 (when inline
-			   (setq start inline-start)
-			   (setq finish inline-finish)
-			   (setq no-newlines t))
-			 (let ((before-finish (marker-position end)))
-			   (goto-char end)
-			   (insert (concat finish (unless no-newlines "\n")))
-			   (goto-char beg)
-			   (insert (concat start (unless no-newlines "\n")))
-			   (unless no-escape
-			     (org-escape-code-in-region
-			      (min (point) before-finish) before-finish))
-			   (goto-char end))))
-		      (tabulablep
-		       (lambda (r)
-			 ;; Non-nil when result R can be turned into
-			 ;; a table.
-			 (and (listp r)
-			      (null (cdr (last r)))
-			      (cl-every
-			       (lambda (e) (or (atom e) (null (cdr (last e)))))
-			       result)))))
-		  ;; insert results based on type
-		  (cond
-		   ;; Do nothing for an empty result.
-		   ((null result))
-		   ;; Insert a list if preferred.
-		   ((member "list" result-params)
-		    (insert
-		     (org-trim
-		      (org-list-to-generic
-		       (cons 'unordered
-			     (mapcar
-			      (lambda (e)
-				(list (if (stringp e) e (format "%S" e))))
-			      (if (listp result) result
-				(split-string result "\n" t))))
-		       '(:splicep nil :istart "- " :iend "\n")))
-		     "\n"))
-		   ;; Try hard to print RESULT as a table.  Give up if
-		   ;; it contains an improper list.
-		   ((funcall tabulablep result)
-		    (goto-char beg)
-		    (insert (concat (orgtbl-to-orgtbl
-				     (if (cl-every
-					  (lambda (e)
-					    (or (eq e 'hline) (listp e)))
-					  result)
-					 result
-				       (list result))
-				     nil)
-				    "\n"))
-		    (goto-char beg)
-		    (when (org-at-table-p) (org-table-align))
-		    (goto-char (org-table-end)))
-		   ;; Print verbatim a list that cannot be turned into
-		   ;; a table.
-		   ((listp result) (insert (format "%s\n" result)))
-		   ((member "file" result-params)
-		    (when inline
-		      (setq result (org-macro-escape-arguments result)))
-		    (insert result))
-		   ((and inline (not (member "raw" result-params)))
-		    (insert (org-macro-escape-arguments
-			     (org-babel-chomp result "\n"))))
-		   (t (goto-char beg) (insert result)))
-		  (setq end (copy-marker (point) t))
-		  ;; possibly wrap result
-		  (cond
-		   ((assq :wrap (nth 2 info))
-		    (let ((name (or (cdr (assq :wrap (nth 2 info))) "RESULTS")))
-		      (funcall wrap (concat "#+BEGIN_" name)
-			       (concat "#+END_" (car (split-string name)))
-			       nil nil (concat "{{{results(@@" name ":") "@@)}}}")))
-		   ((member "html" result-params)
-		    (funcall wrap "#+BEGIN_EXPORT html" "#+END_EXPORT" nil nil
-			     "{{{results(@@html:" "@@)}}}"))
-		   ((member "latex" result-params)
-		    (funcall wrap "#+BEGIN_EXPORT latex" "#+END_EXPORT" nil nil
-			     "{{{results(@@latex:" "@@)}}}"))
-		   ((member "org" result-params)
-		    (goto-char beg) (when (org-at-table-p) (org-cycle))
-		    (funcall wrap "#+BEGIN_SRC org" "#+END_SRC" nil nil
-			     "{{{results(src_org{" "})}}}"))
-		   ((member "code" result-params)
-		    (let ((lang (or lang "none")))
-		      (funcall wrap (format "#+BEGIN_SRC %s%s" lang results-switches)
-			       "#+END_SRC" nil nil
-			       (format "{{{results(src_%s[%s]{" lang results-switches)
-			       "})}}}")))
-		   ((member "raw" result-params)
-		    (goto-char beg) (when (org-at-table-p) (org-cycle)))
-		   ((or (member "drawer" result-params)
-			;; Stay backward compatible with <7.9.2
-			(member "wrap" result-params))
-		    (goto-char beg) (when (org-at-table-p) (org-cycle))
-		    (funcall wrap ":RESULTS:" ":END:" 'no-escape nil
-			     "{{{results(" ")}}}"))
-		   ((and inline (member "file" result-params))
-		    (funcall wrap nil nil nil nil "{{{results(" ")}}}"))
-		   ((and (not (funcall tabulablep result))
-			 (not (member "file" result-params)))
-		    (let ((org-babel-inline-result-wrap
-			   ;; Hard code {{{results(...)}}} on top of
-			   ;; customization.
-			   (format "{{{results(%s)}}}"
-				   org-babel-inline-result-wrap)))
-		      (org-babel-examplify-region
-		       beg end results-switches inline)))))
-		;; Possibly indent results in par with #+results line.
-		(when (and (not inline) (numberp indent) (> indent 0)
-			   ;; In this case `table-align' does the work
-			   ;; for us.
-			   (not (and (listp result)
-				     (member "append" result-params))))
-		  (indent-rigidly beg end indent))
-		(if (null result)
-		    (if (member "value" result-params)
-			(message "Code block returned no value.")
-		      (message "Code block produced no output."))
-		  (message "Code block evaluation complete.")))
-	    (set-marker end nil)
-	    (when outside-scope (narrow-to-region visible-beg visible-end))
-	    (set-marker visible-beg nil)
-	    (set-marker visible-end nil)))))))
-
-(defun org-babel-remove-result (&optional info keep-keyword)
-  "Remove the result of the current source block."
-  (interactive)
-  (let ((location (org-babel-where-is-src-block-result nil info)))
-    (when location
-      (save-excursion
-        (goto-char location)
-	(when (looking-at (concat org-babel-result-regexp ".*$"))
-	  (delete-region
-	   (if keep-keyword (line-beginning-position 2)
-	     (save-excursion
-	       (skip-chars-backward " \r\t\n")
-	       (line-beginning-position 2)))
-	   (progn (forward-line) (org-babel-result-end))))))))
-
-(defun org-babel-remove-inline-result (&optional datum)
-  "Remove the result of the current inline-src-block or babel call.
-The result must be wrapped in a `results' macro to be removed.
-Leading white space is trimmed."
-  (interactive)
-  (let* ((el (or datum (org-element-context))))
-    (when (memq (org-element-type el) '(inline-src-block inline-babel-call))
-      (org-with-wide-buffer
-       (goto-char (org-element-property :end el))
-       (skip-chars-backward " \t")
-       (let ((result (save-excursion
-		       (skip-chars-forward
-			" \t\n"
-			(org-element-property
-			 :contents-end (org-element-property :parent el)))
-		       (org-element-context))))
-	 (when (and (eq (org-element-type result) 'macro)
-		    (string= (org-element-property :key result) "results"))
-	   (delete-region		; And leading whitespace.
-	    (point)
-	    (progn (goto-char (org-element-property :end result))
-		   (skip-chars-backward " \t\n")
-		   (point)))))))))
-
-(defun org-babel-remove-result-one-or-many (x)
-  "Remove the result of the current source block.
-If called with a prefix argument, remove all result blocks
-in the buffer."
-  (interactive "P")
-  (if x
-      (org-babel-map-src-blocks nil (org-babel-remove-result))
-    (org-babel-remove-result)))
-
-(defun org-babel-result-end ()
-  "Return the point at the end of the current set of results."
-  (cond ((looking-at-p "^[ \t]*$") (point)) ;no result
-	((looking-at-p (format "^[ \t]*%s[ \t]*$" org-bracket-link-regexp))
-	 (line-beginning-position 2))
-	(t
-	 (let ((element (org-element-at-point)))
-	   (if (memq (org-element-type element)
-		     ;; Possible results types.
-		     '(drawer example-block export-block fixed-width item
-			      plain-list src-block table))
-	       (save-excursion
-		 (goto-char (min (point-max) ;for narrowed buffers
-				 (org-element-property :end element)))
-		 (skip-chars-backward " \r\t\n")
-		 (line-beginning-position 2))
-	     (point))))))
-
-(defun org-babel-result-to-file (result &optional description)
-  "Convert RESULT into an Org link with optional DESCRIPTION.
-If the `default-directory' is different from the containing
-file's directory then expand relative links."
-  (when (stringp result)
-    (format "[[file:%s]%s]"
-	    (if (and default-directory
-		     buffer-file-name
-		     (not (string= (expand-file-name default-directory)
-				   (expand-file-name
-				    (file-name-directory buffer-file-name)))))
-		(expand-file-name result default-directory)
-	      result)
-	    (if description (concat "[" description "]") ""))))
-
-(defun org-babel-examplify-region (beg end &optional results-switches inline)
-  "Comment out region using the inline `==' or `: ' org example quote."
-  (interactive "*r")
-  (let ((maybe-cap
-	 (lambda (str)
-	   (if org-babel-uppercase-example-markers (upcase str) str))))
-    (if inline
-	(save-excursion
-	  (goto-char beg)
-	  (insert (format org-babel-inline-result-wrap
-			  (delete-and-extract-region beg end))))
-      (let ((size (count-lines beg end)))
-	(save-excursion
-	  (cond ((= size 0))	      ; do nothing for an empty result
-		((< size org-babel-min-lines-for-block-output)
-		 (goto-char beg)
-		 (dotimes (_ size)
-		   (beginning-of-line 1) (insert ": ") (forward-line 1)))
-		(t
-		 (goto-char beg)
-		 (insert (if results-switches
-			     (format "%s%s\n"
-				     (funcall maybe-cap "#+begin_example")
-				     results-switches)
-			   (funcall maybe-cap "#+begin_example\n")))
-		 (let ((p (point)))
-		   (if (markerp end) (goto-char end) (forward-char (- end beg)))
-		   (org-escape-code-in-region p (point)))
-		 (insert (funcall maybe-cap "#+end_example\n")))))))))
-
-(defun org-babel-update-block-body (new-body)
-  "Update the body of the current code block to NEW-BODY."
-  (let ((element (org-element-at-point)))
-    (unless (eq (org-element-type element) 'src-block)
-      (error "Not in a source block"))
-    (goto-char (org-babel-where-is-src-block-head element))
-    (let* ((ind (org-get-indentation))
-	   (body-start (line-beginning-position 2))
-	   (body (org-element-normalize-string
-		  (if (or org-src-preserve-indentation
-			  (org-element-property :preserve-indent element))
-		      new-body
-		    (with-temp-buffer
-		      (insert (org-remove-indentation new-body))
-		      (indent-rigidly
-		       (point-min)
-		       (point-max)
-		       (+ ind org-edit-src-content-indentation))
-		      (buffer-string))))))
-      (delete-region body-start
-		     (org-with-wide-buffer
-		      (goto-char (org-element-property :end element))
-		      (skip-chars-backward " \t\n")
-		      (line-beginning-position)))
-      (goto-char body-start)
-      (insert body))))
-
-(defun org-babel-merge-params (&rest plists)
-  "Combine all parameter association lists in PLISTS.
-Later elements of PLISTS override the values of previous elements.
-This takes into account some special considerations for certain
-parameters when merging lists."
-  (let* ((results-exclusive-groups
-	  (mapcar (lambda (group) (mapcar #'symbol-name group))
-		  (cdr (assq 'results org-babel-common-header-args-w-values))))
-	 (exports-exclusive-groups
-	  (mapcar (lambda (group) (mapcar #'symbol-name group))
-		  (cdr (assq 'exports org-babel-common-header-args-w-values))))
-	 (merge
-	  (lambda (exclusive-groups &rest result-params)
-	    ;; Maintain exclusivity of mutually exclusive parameters,
-	    ;; as defined in EXCLUSIVE-GROUPS while merging lists in
-	    ;; RESULT-PARAMS.
-	    (let (output)
-	      (dolist (new-params result-params (delete-dups output))
-		(dolist (new-param new-params)
-		  (dolist (exclusive-group exclusive-groups)
-		    (when (member new-param exclusive-group)
-		      (setq output (cl-remove-if
-				    (lambda (o) (member o exclusive-group))
-				    output))))
-		  (push new-param output))))))
-	 (variable-index 0)		;Handle positional arguments.
-	 clearnames
-	 params				;Final parameters list.
-	 ;; Some keywords accept multiple values.  We need to treat
-	 ;; them specially.
-	 vars results exports)
-    (dolist (plist plists)
-      (dolist (pair plist)
-	(pcase pair
-	  (`(:var . ,value)
-	   (let ((name (cond
-			((listp value) (car value))
-			((string-match "^\\([^= \f\t\n\r\v]+\\)[ \t]*=" value)
-			 (intern (match-string 1 value)))
-			(t nil))))
-	     (cond
-	      (name
-	       (setq vars
-		     (append (if (not (assoc name vars)) vars
-			       (push name clearnames)
-			       (cl-remove-if (lambda (p) (equal name (car p)))
-					     vars))
-			     (list (cons name pair)))))
-	      ((and vars (nth variable-index vars))
-	       ;; If no name is given and we already have named
-	       ;; variables then assign to named variables in order.
-	       (let ((name (car (nth variable-index vars))))
-		 ;; Clear out colnames and rownames for replace vars.
-		 (push name clearnames)
-		 (setf (cddr (nth variable-index vars))
-		       (concat (symbol-name name) "=" value))
-		 (cl-incf variable-index)))
-	      (t (error "Variable \"%s\" must be assigned a default value"
-			(cdr pair))))))
-	  (`(:results . ,value)
-	   (setq results (funcall merge
-				  results-exclusive-groups
-				  results
-				  (split-string
-				   (if (stringp value) value (eval value t))))))
-	  (`(,(or :file :file-ext) . ,value)
-	   ;; `:file' and `:file-ext' are regular keywords but they
-	   ;; imply a "file" `:results' and a "results" `:exports'.
-	   (when value
-	     (setq results
-		   (funcall merge results-exclusive-groups results '("file")))
-	     (unless (or (member "both" exports)
-			 (member "none" exports)
-			 (member "code" exports))
-	       (setq exports
-		     (funcall merge
-			      exports-exclusive-groups exports '("results"))))
-	     (push pair params)))
-	  (`(:exports . ,value)
-	   (setq exports (funcall merge
-				  exports-exclusive-groups
-				  exports
-				  (split-string (or value "")))))
-	  ;; Regular keywords: any value overwrites the previous one.
-	  (_ (setq params (cons pair (assq-delete-all (car pair) params)))))))
-    ;; Handle `:var' and clear out colnames and rownames for replaced
-    ;; variables.
-    (setq params (nconc (mapcar (lambda (v) (cons :var (cddr v))) vars)
-			params))
-    (dolist (name clearnames)
-      (dolist (param '(:colname-names :rowname-names))
-	(when (assq param params)
-	  (setf (cdr (assq param params))
-		(cl-remove-if (lambda (pair) (equal name (car pair)))
-			      (cdr (assq param params))))
-	  (setq params
-		(cl-remove-if (lambda (pair) (and (equal (car pair) param)
-					     (null (cdr pair))))
-			      params)))))
-    ;; Handle other special keywords, which accept multiple values.
-    (setq params (nconc (list (cons :results (mapconcat #'identity results " "))
-			      (cons :exports (mapconcat #'identity exports " ")))
-			params))
-    ;; Return merged params.
-    params))
-
-(defvar org-babel-use-quick-and-dirty-noweb-expansion nil
-  "Set to true to use regular expressions to expand noweb references.
-This results in much faster noweb reference expansion but does
-not properly allow code blocks to inherit the \":noweb-ref\"
-header argument from buffer or subtree wide properties.")
-
-(defun org-babel-noweb-p (params context)
-  "Check if PARAMS require expansion in CONTEXT.
-CONTEXT may be one of :tangle, :export or :eval."
-  (let ((allowed-values (cl-case context
-			  (:tangle '("yes" "tangle" "no-export" "strip-export"))
-			  (:eval   '("yes" "no-export" "strip-export" "eval"))
-			  (:export '("yes")))))
-    (cl-some (lambda (v) (member v allowed-values))
-	     (split-string (or (cdr (assq :noweb params)) "")))))
-
-(defun org-babel-expand-noweb-references (&optional info parent-buffer)
-  "Expand Noweb references in the body of the current source code block.
-
-For example the following reference would be replaced with the
-body of the source-code block named `example-block'.
-
-<<example-block>>
-
-Note that any text preceding the <<foo>> construct on a line will
-be interposed between the lines of the replacement text.  So for
-example if <<foo>> is placed behind a comment, then the entire
-replacement text will also be commented.
-
-This function must be called from inside of the buffer containing
-the source-code block which holds BODY.
-
-In addition the following syntax can be used to insert the
-results of evaluating the source-code block named `example-block'.
-
-<<example-block()>>
-
-Any optional arguments can be passed to example-block by placing
-the arguments inside the parenthesis following the convention
-defined by `org-babel-lob'.  For example
-
-<<example-block(a=9)>>
-
-would set the value of argument \"a\" equal to \"9\".  Note that
-these arguments are not evaluated in the current source-code
-block but are passed literally to the \"example-block\"."
-  (let* ((parent-buffer (or parent-buffer (current-buffer)))
-         (info (or info (org-babel-get-src-block-info 'light)))
-         (lang (nth 0 info))
-         (body (nth 1 info))
-	 (ob-nww-start org-babel-noweb-wrap-start)
-	 (ob-nww-end org-babel-noweb-wrap-end)
-	 (comment (string= "noweb" (cdr (assq :comments (nth 2 info)))))
-	 (rx-prefix (concat "\\(" org-babel-src-name-regexp "\\|"
-			    ":noweb-ref[ \t]+" "\\)"))
-         (new-body "")
-	 (nb-add (lambda (text) (setq new-body (concat new-body text))))
-	 (c-wrap (lambda (text)
-		   (with-temp-buffer
-		     (funcall (intern (concat lang "-mode")))
-		     (comment-region (point) (progn (insert text) (point)))
-		     (org-trim (buffer-string)))))
-	 index source-name evaluate prefix)
-    (with-temp-buffer
-      (setq-local org-babel-noweb-wrap-start ob-nww-start)
-      (setq-local org-babel-noweb-wrap-end ob-nww-end)
-      (insert body) (goto-char (point-min))
-      (setq index (point))
-      (while (and (re-search-forward (org-babel-noweb-wrap) nil t))
-	(save-match-data (setf source-name (match-string 1)))
-	(save-match-data (setq evaluate (string-match "(.*)" source-name)))
-	(save-match-data
-	  (setq prefix
-		(buffer-substring (match-beginning 0)
-				  (save-excursion
-				    (beginning-of-line 1) (point)))))
-	;; add interval to new-body (removing noweb reference)
-	(goto-char (match-beginning 0))
-	(funcall nb-add (buffer-substring index (point)))
-	(goto-char (match-end 0))
-	(setq index (point))
-	(funcall
-         nb-add
-         (with-current-buffer parent-buffer
-           (save-restriction
-             (widen)
-             (mapconcat ;; Interpose PREFIX between every line.
-              #'identity
-              (split-string
-               (if evaluate
-                   (let ((raw (org-babel-ref-resolve source-name)))
-                     (if (stringp raw) raw (format "%S" raw)))
-                 (or
-                  ;; Retrieve from the library of babel.
-                  (nth 2 (assoc (intern source-name)
-                                org-babel-library-of-babel))
-                  ;; Return the contents of headlines literally.
-                  (save-excursion
-                    (when (org-babel-ref-goto-headline-id source-name)
-			      (org-babel-ref-headline-body)))
-                  ;; Find the expansion of reference in this buffer.
-                  (let ((rx (concat rx-prefix source-name "[ \t\n]"))
-                        expansion)
-                    (save-excursion
-                      (goto-char (point-min))
-                      (if org-babel-use-quick-and-dirty-noweb-expansion
-                          (while (re-search-forward rx nil t)
-                            (let* ((i (org-babel-get-src-block-info 'light))
-                                   (body (if (org-babel-noweb-p (nth 2 i) :eval)
-					     (org-babel-expand-noweb-references i)
-					   (nth 1 i)))
-                                   (sep (or (cdr (assq :noweb-sep (nth 2 i)))
-                                            "\n"))
-                                   (full (if comment
-                                             (let ((cs (org-babel-tangle-comment-links i)))
-					       (concat (funcall c-wrap (car cs)) "\n"
-						       body "\n"
-						       (funcall c-wrap (cadr cs))))
-                                           body)))
-                              (setq expansion (cons sep (cons full expansion)))))
-                        (org-babel-map-src-blocks nil
-			  (let ((i (let ((org-babel-current-src-block-location (point)))
-				     (org-babel-get-src-block-info 'light))))
-                            (when (equal (or (cdr (assq :noweb-ref (nth 2 i)))
-                                             (nth 4 i))
-                                         source-name)
-                              (let* ((body (if (org-babel-noweb-p (nth 2 i) :eval)
-					       (org-babel-expand-noweb-references i)
-					     (nth 1 i)))
-                                     (sep (or (cdr (assq :noweb-sep (nth 2 i)))
-                                              "\n"))
-                                     (full (if comment
-                                               (let ((cs (org-babel-tangle-comment-links i)))
-                                                  (concat (funcall c-wrap (car cs)) "\n"
-                                                          body "\n"
-                                                          (funcall c-wrap (cadr cs))))
-                                             body)))
-                                (setq expansion
-                                      (cons sep (cons full expansion)))))))))
-                    (and expansion
-                         (mapconcat #'identity (nreverse (cdr expansion)) "")))
-                  ;; Possibly raise an error if named block doesn't exist.
-                  (if (or org-babel-noweb-error-all-langs
-			  (member lang org-babel-noweb-error-langs))
-                      (error "%s" (concat
-                                   (org-babel-noweb-wrap source-name)
-                                   "could not be resolved (see "
-                                   "`org-babel-noweb-error-langs')"))
-                    "")))
-               "[\n\r]") (concat "\n" prefix))))))
-      (funcall nb-add (buffer-substring index (point-max))))
-    new-body))
-
-(defun org-babel--script-escape-inner (str)
-  (let (in-single in-double backslash out)
-    (mapc
-     (lambda (ch)
-       (setq
-	out
-	(if backslash
-	    (progn
-	      (setq backslash nil)
-	      (cond
-	       ((and in-single (eq ch ?'))
-		;; Escaped single quote inside single quoted string:
-		;; emit just a single quote, since we've changed the
-		;; outer quotes to double.
-		(cons ch out))
-	       ((eq ch ?\")
-		;; Escaped double quote
-		(if in-single
-		    ;; This should be interpreted as backslash+quote,
-		    ;; not an escape.  Emit a three backslashes
-		    ;; followed by a quote (because one layer of
-		    ;; quoting will be stripped by `org-babel-read').
-		    (append (list ch ?\\ ?\\ ?\\) out)
-		  ;; Otherwise we are in a double-quoted string.  Emit
-		  ;; a single escaped quote
-		  (append (list ch ?\\) out)))
-	       ((eq ch ?\\)
-		;; Escaped backslash: emit a single escaped backslash
-		(append (list ?\\ ?\\) out))
-	       ;; Other: emit a quoted backslash followed by whatever
-	       ;; the character was (because one layer of quoting will
-	       ;; be stripped by `org-babel-read').
-	       (t (append (list ch ?\\ ?\\) out))))
-	  (cl-case ch
-	    (?\[ (if (or in-double in-single)
-		     (cons ?\[ out)
-		   (cons ?\( out)))
-	    (?\] (if (or in-double in-single)
-		     (cons ?\] out)
-		   (cons ?\) out)))
-	    (?\{ (if (or in-double in-single)
-		     (cons ?\{ out)
-		   (cons ?\( out)))
-	    (?\} (if (or in-double in-single)
-		     (cons ?\} out)
-		   (cons ?\) out)))
-	    (?, (if (or in-double in-single)
-		    (cons ?, out) (cons ?\s out)))
-	    (?\' (if in-double
-		     (cons ?\' out)
-		   (setq in-single (not in-single)) (cons ?\" out)))
-	    (?\" (if in-single
-		     (append (list ?\" ?\\) out)
-		   (setq in-double (not in-double)) (cons ?\" out)))
-	    (?\\ (unless (or in-single in-double)
-		   (error "Can't handle backslash outside string in `org-babel-script-escape'"))
-		 (setq backslash t)
-		 out)
-	    (t  (cons ch out))))))
-     (string-to-list str))
-    (when (or in-single in-double)
-      (error "Unterminated string in `org-babel-script-escape'"))
-    (apply #'string (reverse out))))
-
-(defun org-babel-script-escape (str &optional force)
-  "Safely convert tables into elisp lists."
-  (unless (stringp str)
-    (error "`org-babel-script-escape' expects a string"))
-  (let ((escaped
-	 (cond
-	  ((and (> (length str) 2)
-		(or (and (string-equal "[" (substring str 0 1))
-			 (string-equal "]" (substring str -1)))
-		    (and (string-equal "{" (substring str 0 1))
-			 (string-equal "}" (substring str -1)))
-		    (and (string-equal "(" (substring str 0 1))
-			 (string-equal ")" (substring str -1)))))
-
-	   (concat "'" (org-babel--script-escape-inner str)))
-	  ((or force
-	       (and (> (length str) 2)
-		    (or (and (string-equal "'" (substring str 0 1))
-			     (string-equal "'" (substring str -1)))
-			;; We need to pass double-quoted strings
-			;; through the backslash-twiddling bits, even
-			;; though we don't need to change their
-			;; delimiters.
-			(and (string-equal "\"" (substring str 0 1))
-			     (string-equal "\"" (substring str -1))))))
-	   (org-babel--script-escape-inner str))
-	  (t str))))
-    (condition-case nil (org-babel-read escaped) (error escaped))))
-
-(defun org-babel-read (cell &optional inhibit-lisp-eval)
-  "Convert the string value of CELL to a number if appropriate.
-Otherwise if CELL looks like lisp (meaning it starts with a
-\"(\", \"\\='\", \"\\=`\" or a \"[\") then read and evaluate it as
-lisp, otherwise return it unmodified as a string.  Optional
-argument INHIBIT-LISP-EVAL inhibits lisp evaluation for
-situations in which is it not appropriate."
-  (cond ((not (org-string-nw-p cell)) cell)
-	((org-babel--string-to-number cell))
-	((and (not inhibit-lisp-eval)
-	      (or (memq (string-to-char cell) '(?\( ?' ?` ?\[))
-		  (string= cell "*this*")))
-	 (eval (read cell) t))
-	((eq (string-to-char cell) ?\") (read cell))
-	(t (org-no-properties cell))))
-
-(defun org-babel--string-to-number (string)
-  "If STRING represents a number return its value.
-Otherwise return nil."
-  (and (string-match-p "\\`-?[0-9]*\\.?[0-9]*\\'" string)
-       (string-to-number string)))
-
-(defun org-babel-import-elisp-from-file (file-name &optional separator)
-  "Read the results located at FILE-NAME into an elisp table.
-If the table is trivial, then return it as a scalar."
-  (let (result)
-    (save-window-excursion
-      (with-temp-buffer
-	(condition-case err
-	    (progn
-	      (org-table-import file-name separator)
-	      (delete-file file-name)
-	      (setq result (mapcar (lambda (row)
-				     (mapcar #'org-babel-string-read row))
-				   (org-table-to-lisp))))
-	  (error (message "Error reading results: %s" err) nil)))
-      (if (null (cdr result)) ;; if result is trivial vector, then scalarize it
-	  (if (consp (car result))
-	      (if (null (cdr (car result)))
-		  (caar result)
-		result)
-	    (car result))
-	result))))
-
-(defun org-babel-string-read (cell)
-  "Strip nested \"s from around strings."
-  (org-babel-read (or (and (stringp cell)
-                           (string-match "\\\"\\(.+\\)\\\"" cell)
-                           (match-string 1 cell))
-                      cell) t))
-
-(defun org-babel-chomp (string &optional regexp)
-  "Strip a trailing space or carriage return from STRING.
-The default regexp used is \"[ \\f\\t\\n\\r\\v]\" but another one
-can be specified as the REGEXP argument."
-  (let ((regexp (or regexp "[ \f\t\n\r\v]")))
-    (while (and (> (length string) 0)
-                (string-match regexp (substring string -1)))
-      (setq string (substring string 0 -1)))
-    string))
-
-(defun org-babel-process-file-name (name &optional no-quote-p)
-  "Prepare NAME to be used in an external process.
-If NAME specifies a remote location, the remote portion of the
-name is removed, since in that case the process will be executing
-remotely.  The file name is then processed by `expand-file-name'.
-Unless second argument NO-QUOTE-P is non-nil, the file name is
-additionally processed by `shell-quote-argument'"
-  (let ((f (org-babel-local-file-name (expand-file-name name))))
-    (if no-quote-p f (shell-quote-argument f))))
-
-(defvar org-babel-temporary-directory)
-(unless (or noninteractive (boundp 'org-babel-temporary-directory))
-  (defvar org-babel-temporary-directory
-    (or (and (boundp 'org-babel-temporary-directory)
-	     (file-exists-p org-babel-temporary-directory)
-	     org-babel-temporary-directory)
-	(make-temp-file "babel-" t))
-    "Directory to hold temporary files created to execute code blocks.
-Used by `org-babel-temp-file'.  This directory will be removed on
-Emacs shutdown."))
-
-(defcustom org-babel-remote-temporary-directory "/tmp/"
-  "Directory to hold temporary files on remote hosts."
-  :group 'org-babel
-  :type 'string)
-
-(defmacro org-babel-result-cond (result-params scalar-form &rest table-forms)
-  "Call the code to parse raw string results according to RESULT-PARAMS."
-  (declare (indent 1)
-	   (debug (form form &rest form)))
-  (org-with-gensyms (params)
-    `(let ((,params ,result-params))
-       (unless (member "none" ,params)
-	 (if (or (member "scalar" ,params)
-		 (member "verbatim" ,params)
-		 (member "html" ,params)
-		 (member "code" ,params)
-		 (member "pp" ,params)
-		 (member "file" ,params)
-		 (and (or (member "output" ,params)
-			  (member "raw"    ,params)
-			  (member "org"    ,params)
-			  (member "drawer" ,params))
-		      (not (member "table" ,params))))
-	     ,scalar-form
-	   ,@table-forms)))))
-(def-edebug-spec org-babel-result-cond (form form body))
-
-(defun org-babel-temp-file (prefix &optional suffix)
-  "Create a temporary file in the `org-babel-temporary-directory'.
-Passes PREFIX and SUFFIX directly to `make-temp-file' with the
-value of `temporary-file-directory' temporarily set to the value
-of `org-babel-temporary-directory'."
-  (if (file-remote-p default-directory)
-      (let ((prefix
-             (concat (file-remote-p default-directory)
-                     (expand-file-name
-		      prefix org-babel-remote-temporary-directory))))
-        (make-temp-file prefix nil suffix))
-    (let ((temporary-file-directory
-	   (or (and (boundp 'org-babel-temporary-directory)
-		    (file-exists-p org-babel-temporary-directory)
-		    org-babel-temporary-directory)
-	       temporary-file-directory)))
-      (make-temp-file prefix nil suffix))))
-
-(defun org-babel-remove-temporary-directory ()
-  "Remove `org-babel-temporary-directory' on Emacs shutdown."
-  (when (and (boundp 'org-babel-temporary-directory)
-	     (file-exists-p org-babel-temporary-directory))
-    ;; taken from `delete-directory' in files.el
-    (condition-case nil
-	(progn
-	  (mapc (lambda (file)
-		  ;; This test is equivalent to
-		  ;; (and (file-directory-p fn) (not (file-symlink-p fn)))
-		  ;; but more efficient
-		  (if (eq t (car (file-attributes file)))
-		      (delete-directory file)
-		    (delete-file file)))
-		;; We do not want to delete "." and "..".
-		(directory-files org-babel-temporary-directory 'full
-				 "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"))
-	  (delete-directory org-babel-temporary-directory))
-      (error
-       (message "Failed to remove temporary Org-babel directory %s"
-		(if (boundp 'org-babel-temporary-directory)
-		    org-babel-temporary-directory
-		  "[directory not defined]"))))))
-
-(add-hook 'kill-emacs-hook 'org-babel-remove-temporary-directory)
-
-(defun org-babel-one-header-arg-safe-p (pair safe-list)
-  "Determine if the PAIR is a safe babel header arg according to SAFE-LIST.
-
-For the format of SAFE-LIST, see `org-babel-safe-header-args'."
-  (and (consp pair)
-       (keywordp (car pair))
-       (stringp (cdr pair))
-       (or
-	(memq (car pair) safe-list)
-	(let ((entry (assq (car pair) safe-list)))
-	  (and entry
-	       (consp entry)
-	       (cond ((functionp (cdr entry))
-		       (funcall (cdr entry) (cdr pair)))
-		     ((listp (cdr entry))
-		      (member (cdr pair) (cdr entry)))
-		     (t nil)))))))
-
-(defun org-babel-generate-file-param (src-name params)
-  "Calculate the filename for source block results.
-
-The directory is calculated from the :output-dir property of the
-source block; if not specified, use the current directory.
-
-If the source block has a #+NAME and the :file parameter does not
-contain any period characters, then the :file parameter is
-treated as an extension, and the output file name is the
-concatenation of the directory (as calculated above), the block
-name, a period, and the parameter value as a file extension.
-Otherwise, the :file parameter is treated as a full file name,
-and the output file name is the directory (as calculated above)
-plus the parameter value."
-  (let* ((file-cons (assq :file params))
-	   (file-ext-cons (assq :file-ext params))
-	   (file-ext (cdr-safe file-ext-cons))
-	   (dir (cdr-safe (assq :output-dir params)))
-	   fname)
-    ;; create the output-dir if it does not exist
-    (when dir
-      (make-directory dir t))
-    (if file-cons
-	;; :file given; add :output-dir if given
-	(when dir
-	  (setcdr file-cons (concat (file-name-as-directory dir) (cdr file-cons))))
-      ;; :file not given; compute from name and :file-ext if possible
-      (when (and src-name file-ext)
-	(if dir
-	    (setq fname (concat (file-name-as-directory (or dir ""))
-				src-name "." file-ext))
-	  (setq fname (concat src-name "." file-ext)))
-	(setq params (cons (cons :file fname) params))))
-    params))
-
-(defun org-babel-graphical-output-file (params)
-  "File where a babel block should send graphical output, per PARAMS.
-Return nil if no graphical output is expected.  Raise an error if
-the output file is ill-defined."
-  (let ((file (cdr (assq :file params))))
-    (cond (file (and (member "graphics" (cdr (assq :result-params params)))
-		     file))
-	  ((assq :file-ext params)
-	   (user-error ":file-ext given but no :file generated; did you forget \
-to name a block?"))
-	  (t (user-error "No :file header argument given; cannot create \
-graphical result")))))
-
-(defun org-babel-make-language-alias (new old)
-  "Make source blocks of type NEW aliases for those of type OLD.
-
-NEW and OLD should be strings.  This function should be called
-after the babel API for OLD-type source blocks is fully defined.
-
-Callers of this function will probably want to add an entry to
-`org-src-lang-modes' as well."
-  (dolist (fn '("execute" "expand-body" "prep-session"
-		"variable-assignments" "load-session"))
-    (let ((sym (intern-soft (concat "org-babel-" fn ":" old))))
-      (when (and sym (fboundp sym))
-	(defalias (intern (concat "org-babel-" fn ":" new)) sym))))
-  ;; Technically we don't need a `dolist' for just one variable, but
-  ;; we keep it for symmetry/ease of future expansion.
-  (dolist (var '("default-header-args"))
-    (let ((sym (intern-soft (concat "org-babel-" var ":" old))))
-      (when (and sym (boundp sym))
-	(defvaralias (intern (concat "org-babel-" var ":" new)) sym)))))
-
-(defun org-babel-strip-quotes (string)
-  "Strip \\\"s from around a string, if applicable."
-  (org-unbracket-string "\"" "\"" string))
-
-(provide 'ob-core)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ob-core.el ends here
diff --git a/elpa/org-9.1.14/ob-core.elc b/elpa/org-9.1.14/ob-core.elc
deleted file mode 100644
index 934d547..0000000
--- a/elpa/org-9.1.14/ob-core.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-css.el b/elpa/org-9.1.14/ob-css.el
deleted file mode 100644
index 8cabf2b..0000000
--- a/elpa/org-9.1.14/ob-css.el
+++ /dev/null
@@ -1,48 +0,0 @@
-;;; ob-css.el --- Babel Functions for CSS            -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Since CSS can't be executed, this file exists solely for tangling
-;; CSS from Org files.
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-default-header-args:css '())
-
-(defun org-babel-execute:css (body _params)
-  "Execute a block of CSS code.
-This function is called by `org-babel-execute-src-block'."
-  body)
-
-(defun org-babel-prep-session:css (_session _params)
-  "Return an error if the :session header argument is set.
-CSS does not support sessions."
-  (error "CSS sessions are nonsensical"))
-
-(provide 'ob-css)
-
-
-
-;;; ob-css.el ends here
diff --git a/elpa/org-9.1.14/ob-css.elc b/elpa/org-9.1.14/ob-css.elc
deleted file mode 100644
index c1ddf1d..0000000
--- a/elpa/org-9.1.14/ob-css.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-ditaa.el b/elpa/org-9.1.14/ob-ditaa.el
deleted file mode 100644
index 9507630..0000000
--- a/elpa/org-9.1.14/ob-ditaa.el
+++ /dev/null
@@ -1,124 +0,0 @@
-;;; ob-ditaa.el --- Babel Functions for ditaa        -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating ditaa source code.
-;;
-;; This differs from most standard languages in that
-;;
-;; 1) there is no such thing as a "session" in ditaa
-;;
-;; 2) we are generally only going to return results of type "file"
-;;
-;; 3) we are adding the "file" and "cmdline" header arguments
-;;
-;; 4) there are no variables (at least for now)
-
-;;; Code:
-(require 'ob)
-(require 'org-compat)
-
-(defvar org-babel-default-header-args:ditaa
-  '((:results . "file")
-    (:exports . "results")
-    (:java . "-Dfile.encoding=UTF-8"))
-  "Default arguments for evaluating a ditaa source block.")
-
-(defcustom org-ditaa-jar-path (expand-file-name
-			       "ditaa.jar"
-			       (file-name-as-directory
-				(expand-file-name
-				 "scripts"
-				 (file-name-as-directory
-				  (expand-file-name
-				   "../contrib"
-				   (file-name-directory (org-find-library-dir "org")))))))
-  "Path to the ditaa jar executable."
-  :group 'org-babel
-  :type 'string)
-
-(defcustom org-babel-ditaa-java-cmd "java"
-  "Java executable to use when evaluating ditaa blocks."
-  :group 'org-babel
-  :type 'string)
-
-(defcustom org-ditaa-eps-jar-path
-  (expand-file-name "DitaaEps.jar" (file-name-directory org-ditaa-jar-path))
-  "Path to the DitaaEps.jar executable."
-  :group 'org-babel
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-ditaa-jar-option "-jar"
-  "Option for the ditaa jar file.
-Do not leave leading or trailing spaces in this string."
-  :group 'org-babel
-  :version "24.1"
-  :type 'string)
-
-(defun org-babel-execute:ditaa (body params)
-  "Execute a block of Ditaa code with org-babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((out-file (or (cdr (assq :file params))
-		       (error
-			"ditaa code block requires :file header argument")))
-	 (cmdline (cdr (assq :cmdline params)))
-	 (java (cdr (assq :java params)))
-	 (in-file (org-babel-temp-file "ditaa-"))
-	 (eps (cdr (assq :eps params)))
-	 (eps-file (when eps
-		     (org-babel-process-file-name (concat in-file ".eps"))))
-	 (pdf-cmd (when (and (or (string= (file-name-extension out-file) "pdf")
-				 (cdr (assq :pdf params))))
-		    (concat
-		     "epstopdf"
-		     " " eps-file
-		     " -o=" (org-babel-process-file-name out-file))))
-	 (cmd (concat org-babel-ditaa-java-cmd
-		      " " java " " org-ditaa-jar-option " "
-		      (shell-quote-argument
-		       (expand-file-name
-			(if eps org-ditaa-eps-jar-path org-ditaa-jar-path)))
-		      " " cmdline
-		      " " (org-babel-process-file-name in-file)
-		      " " (if pdf-cmd
-			      eps-file
-			    (org-babel-process-file-name out-file)))))
-    (unless (file-exists-p org-ditaa-jar-path)
-      (error "Could not find ditaa.jar at %s" org-ditaa-jar-path))
-    (with-temp-file in-file (insert body))
-    (message cmd) (shell-command cmd)
-    (when pdf-cmd (message pdf-cmd) (shell-command pdf-cmd))
-    nil)) ;; signal that output has already been written to file
-
-(defun org-babel-prep-session:ditaa (_session _params)
-  "Return an error because ditaa does not support sessions."
-  (error "Ditaa does not support sessions"))
-
-(provide 'ob-ditaa)
-
-
-
-;;; ob-ditaa.el ends here
diff --git a/elpa/org-9.1.14/ob-ditaa.elc b/elpa/org-9.1.14/ob-ditaa.elc
deleted file mode 100644
index dfa9fbc..0000000
--- a/elpa/org-9.1.14/ob-ditaa.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-dot.el b/elpa/org-9.1.14/ob-dot.el
deleted file mode 100644
index 31e0a4f..0000000
--- a/elpa/org-9.1.14/ob-dot.el
+++ /dev/null
@@ -1,90 +0,0 @@
-;;; ob-dot.el --- Babel Functions for dot            -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating dot source code.
-;;
-;; For information on dot see http://www.graphviz.org/
-;;
-;; This differs from most standard languages in that
-;;
-;; 1) there is no such thing as a "session" in dot
-;;
-;; 2) we are generally only going to return results of type "file"
-;;
-;; 3) we are adding the "file" and "cmdline" header arguments
-;;
-;; 4) there are no variables (at least for now)
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-default-header-args:dot
-  '((:results . "file") (:exports . "results"))
-  "Default arguments to use when evaluating a dot source block.")
-
-(defun org-babel-expand-body:dot (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let ((vars (org-babel--get-vars params)))
-    (mapc
-     (lambda (pair)
-       (let ((name (symbol-name (car pair)))
-	     (value (cdr pair)))
-	 (setq body
-	       (replace-regexp-in-string
-		(concat "$" (regexp-quote name))
-		(if (stringp value) value (format "%S" value))
-		body
-		t
-		t))))
-     vars)
-    body))
-
-(defun org-babel-execute:dot (body params)
-  "Execute a block of Dot code with org-babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((out-file (cdr (or (assq :file params)
-			    (error "You need to specify a :file parameter"))))
-	 (cmdline (or (cdr (assq :cmdline params))
-		      (format "-T%s" (file-name-extension out-file))))
-	 (cmd (or (cdr (assq :cmd params)) "dot"))
-	 (in-file (org-babel-temp-file "dot-")))
-    (with-temp-file in-file
-      (insert (org-babel-expand-body:dot body params)))
-    (org-babel-eval
-     (concat cmd
-	     " " (org-babel-process-file-name in-file)
-	     " " cmdline
-	     " -o " (org-babel-process-file-name out-file)) "")
-    nil)) ;; signal that output has already been written to file
-
-(defun org-babel-prep-session:dot (_session _params)
-  "Return an error because Dot does not support sessions."
-  (error "Dot does not support sessions"))
-
-(provide 'ob-dot)
-
-
-
-;;; ob-dot.el ends here
diff --git a/elpa/org-9.1.14/ob-dot.elc b/elpa/org-9.1.14/ob-dot.elc
deleted file mode 100644
index e3918db..0000000
--- a/elpa/org-9.1.14/ob-dot.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-ebnf.el b/elpa/org-9.1.14/ob-ebnf.el
deleted file mode 100644
index 8c7c541..0000000
--- a/elpa/org-9.1.14/ob-ebnf.el
+++ /dev/null
@@ -1,81 +0,0 @@
-;;; ob-ebnf.el --- Babel Functions for EBNF          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2018 Free Software Foundation, Inc.
-
-;; Author: Michael Gauland
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-;; Version: 1.00
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;;; Org-Babel support for using ebnf2ps to generate encapsulated postscript
-;;; railroad diagrams. It recognizes these arguments:
-;;;
-;;;     :file is required; it must include the extension '.eps.' All the rules
-;;;           in the block will be drawn in the same file. This is done by
-;;;           inserting a '[<file>' comment at the start of the block (see the
-;;;           documentation for ebnf-eps-buffer for more information).
-;;;
-;;;     :style specifies a value in ebnf-style-database. This provides the
-;;;            ability to customize the output. The style can also specify the
-;;;            grammar syntax (by setting ebnf-syntax); note that only ebnf,
-;;;            iso-ebnf, and yacc are supported by this file.
-
-;;; Requirements:
-
-;;; Code:
-(require 'ob)
-(require 'ebnf2ps)
-
-;; optionally declare default header arguments for this language
-(defvar org-babel-default-header-args:ebnf '((:style . nil)))
-
-;; Use ebnf-eps-buffer to produce an encapsulated postscript file.
-;;
-(defun org-babel-execute:ebnf (body params)
-  "Execute a block of Ebnf code with org-babel.  This function is
-called by `org-babel-execute-src-block'"
-  (save-excursion
-    (let* ((dest-file (cdr (assq :file params)))
-	   (dest-dir (file-name-directory dest-file))
-	   (dest-root (file-name-sans-extension
-		       (file-name-nondirectory dest-file)))
-	   (style (cdr (assq :style params)))
-	   (result nil))
-      (with-temp-buffer
-	(when style (ebnf-push-style style))
-	(let ((comment-format
-	       (cond ((string= ebnf-syntax 'yacc) "/*%s*/")
-		     ((string= ebnf-syntax 'ebnf) ";%s")
-		     ((string= ebnf-syntax 'iso-ebnf) "(*%s*)")
-		     (t (setq result
-			      (format "EBNF error: format %s not supported."
-				      ebnf-syntax))))))
-	  (setq ebnf-eps-prefix dest-dir)
-	  (insert (format comment-format (format "[%s" dest-root)))
-	  (newline)
-	  (insert body)
-	  (newline)
-	  (insert (format comment-format (format "]%s" dest-root)))
-	  (ebnf-eps-buffer)
-	  (when style (ebnf-pop-style))))
-      result)))
-
-(provide 'ob-ebnf)
-;;; ob-ebnf.el ends here
diff --git a/elpa/org-9.1.14/ob-ebnf.elc b/elpa/org-9.1.14/ob-ebnf.elc
deleted file mode 100644
index da458d4..0000000
--- a/elpa/org-9.1.14/ob-ebnf.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-emacs-lisp.el b/elpa/org-9.1.14/ob-emacs-lisp.el
deleted file mode 100644
index 8ea2ec1..0000000
--- a/elpa/org-9.1.14/ob-emacs-lisp.el
+++ /dev/null
@@ -1,91 +0,0 @@
-;;; ob-emacs-lisp.el --- Babel Functions for Emacs-lisp Code -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating emacs-lisp code
-
-;;; Code:
-(require 'ob)
-
-(defconst org-babel-header-args:emacs-lisp '((lexical . :any))
-  "Emacs-lisp specific header arguments.")
-
-(defvar org-babel-default-header-args:emacs-lisp '((:lexical . "no"))
-  "Default arguments for evaluating an emacs-lisp source block.
-
-A value of \"yes\" or t causes src blocks to be eval'd using
-lexical scoping.  It can also be an alist mapping symbols to
-their value.  It is used as the optional LEXICAL argument to
-`eval', which see.")
-
-(defun org-babel-expand-body:emacs-lisp (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let ((vars (org-babel--get-vars params))
-	(print-level nil)
-	(print-length nil))
-    (if (null vars) (concat body "\n")
-      (format "(let (%s)\n%s\n)"
-	      (mapconcat
-	       (lambda (var)
-		 (format "%S" (print `(,(car var) ',(cdr var)))))
-	       vars "\n      ")
-	      body))))
-
-(defun org-babel-execute:emacs-lisp (body params)
-  "Execute a block of emacs-lisp code with Babel."
-  (save-window-excursion
-    (let* ((lexical (cdr (assq :lexical params)))
-	   (result-params (cdr (assq :result-params params)))
-	   (body (format (if (member "output" result-params)
-			     "(with-output-to-string %s\n)"
-			   "(progn %s\n)")
-			 (org-babel-expand-body:emacs-lisp body params)))
-	   (result (eval (read (if (or (member "code" result-params)
-				       (member "pp" result-params))
-				   (concat "(pp " body ")")
-				 body))
-			 (if (listp lexical)
-			     lexical
-			   (member lexical '("yes" "t"))))))
-      (org-babel-result-cond result-params
-	(let ((print-level nil)
-              (print-length nil))
-          (if (or (member "scalar" result-params)
-                  (member "verbatim" result-params))
-              (format "%S" result)
-            (format "%s" result)))
-	(org-babel-reassemble-table
-	 result
-         (org-babel-pick-name (cdr (assq :colname-names params))
-                              (cdr (assq :colnames params)))
-         (org-babel-pick-name (cdr (assq :rowname-names params))
-                              (cdr (assq :rownames params))))))))
-
-(org-babel-make-language-alias "elisp" "emacs-lisp")
-
-(provide 'ob-emacs-lisp)
-
-
-
-;;; ob-emacs-lisp.el ends here
diff --git a/elpa/org-9.1.14/ob-emacs-lisp.elc b/elpa/org-9.1.14/ob-emacs-lisp.elc
deleted file mode 100644
index 599626f..0000000
--- a/elpa/org-9.1.14/ob-emacs-lisp.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-eval.el b/elpa/org-9.1.14/ob-eval.el
deleted file mode 100644
index 2bfaa08..0000000
--- a/elpa/org-9.1.14/ob-eval.el
+++ /dev/null
@@ -1,149 +0,0 @@
-;;; ob-eval.el --- Babel Functions for External Code Evaluation -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research, comint
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; These functions build existing Emacs support for executing external
-;; shell commands.
-
-;;; Code:
-(require 'org-macs)
-
-(defvar org-babel-error-buffer-name "*Org-Babel Error Output*")
-(declare-function org-babel-temp-file "ob-core" (prefix &optional suffix))
-
-(defun org-babel-eval-error-notify (exit-code stderr)
-  "Open a buffer to display STDERR and a message with the value of EXIT-CODE."
-  (let ((buf (get-buffer-create org-babel-error-buffer-name)))
-    (with-current-buffer buf
-      (goto-char (point-max))
-      (save-excursion (insert stderr)))
-    (display-buffer buf))
-  (message "Babel evaluation exited with code %S" exit-code))
-
-(defun org-babel-eval (cmd body)
-  "Run CMD on BODY.
-If CMD succeeds then return its results, otherwise display
-STDERR with `org-babel-eval-error-notify'."
-  (let ((err-buff (get-buffer-create " *Org-Babel Error*")) exit-code)
-    (with-current-buffer err-buff (erase-buffer))
-    (with-temp-buffer
-      (insert body)
-      (setq exit-code
-	    (org-babel--shell-command-on-region
-	     (point-min) (point-max) cmd err-buff))
-      (if (or (not (numberp exit-code)) (> exit-code 0))
-	  (progn
-	    (with-current-buffer err-buff
-	      (org-babel-eval-error-notify exit-code (buffer-string)))
-	    (save-excursion
-	      (when (get-buffer org-babel-error-buffer-name)
-		(with-current-buffer org-babel-error-buffer-name
-		  (unless (derived-mode-p 'compilation-mode)
-		    (compilation-mode))
-		  ;; Compilation-mode enforces read-only, but Babel expects the buffer modifiable.
-		  (setq buffer-read-only nil))))
-	    nil)
-	(buffer-string)))))
-
-(defun org-babel-eval-read-file (file)
-  "Return the contents of FILE as a string."
-  (with-temp-buffer (insert-file-contents file)
-		    (buffer-string)))
-
-(defun org-babel--shell-command-on-region (start end command error-buffer)
-  "Execute COMMAND in an inferior shell with region as input.
-
-Stripped down version of shell-command-on-region for internal use
-in Babel only.  This lets us work around errors in the original
-function in various versions of Emacs.
-"
-  (let ((input-file (org-babel-temp-file "ob-input-"))
-	(error-file (if error-buffer (org-babel-temp-file "ob-error-") nil))
-	;; Unfortunately, `executable-find' does not support file name
-	;; handlers.  Therefore, we could use it in the local case
-	;; only.
-	(shell-file-name
-	 (cond ((and (not (file-remote-p default-directory))
-		     (executable-find shell-file-name))
-		shell-file-name)
-	       ((file-executable-p
-		 (concat (file-remote-p default-directory) shell-file-name))
-		shell-file-name)
-	       ("/bin/sh")))
-	exit-status)
-    ;; There is an error in `process-file' when `error-file' exists.
-    ;; This is fixed in Emacs trunk as of 2012-12-21; let's use this
-    ;; workaround for now.
-    (unless (file-remote-p default-directory)
-      (delete-file error-file))
-    ;; we always call this with 'replace, remove conditional
-    ;; Replace specified region with output from command.
-    (let ((swap (< start end)))
-      (goto-char start)
-      (push-mark (point) 'nomsg)
-      (write-region start end input-file)
-      (delete-region start end)
-      (setq exit-status
-	    (process-file shell-file-name input-file
-			  (if error-file
-			      (list t error-file)
-			    t)
-			  nil shell-command-switch command))
-      (when swap (exchange-point-and-mark)))
-
-    (when (and input-file (file-exists-p input-file)
-	       ;; bind org-babel--debug-input around the call to keep
-	       ;; the temporary input files available for inspection
-	       (not (when (boundp 'org-babel--debug-input)
-		      org-babel--debug-input)))
-      (delete-file input-file))
-
-    (when (and error-file (file-exists-p error-file))
-      (when (< 0 (nth 7 (file-attributes error-file)))
-	(with-current-buffer (get-buffer-create error-buffer)
-	  (let ((pos-from-end (- (point-max) (point))))
-	    (or (bobp)
-		(insert "\f\n"))
-	    ;; Do no formatting while reading error file,
-	    ;; because that can run a shell command, and we
-	    ;; don't want that to cause an infinite recursion.
-	    (format-insert-file error-file nil)
-	    ;; Put point after the inserted errors.
-	    (goto-char (- (point-max) pos-from-end)))
-	  (current-buffer)))
-      (delete-file error-file))
-    exit-status))
-
-(defun org-babel-eval-wipe-error-buffer ()
-  "Delete the contents of the Org code block error buffer.
-This buffer is named by `org-babel-error-buffer-name'."
-  (when (get-buffer org-babel-error-buffer-name)
-    (with-current-buffer org-babel-error-buffer-name
-      (delete-region (point-min) (point-max)))))
-
-(provide 'ob-eval)
-
-
-
-;;; ob-eval.el ends here
diff --git a/elpa/org-9.1.14/ob-eval.elc b/elpa/org-9.1.14/ob-eval.elc
deleted file mode 100644
index 3e49bc1..0000000
--- a/elpa/org-9.1.14/ob-eval.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-exp.el b/elpa/org-9.1.14/ob-exp.el
deleted file mode 100644
index 264dc0e..0000000
--- a/elpa/org-9.1.14/ob-exp.el
+++ /dev/null
@@ -1,413 +0,0 @@
-;;; ob-exp.el --- Exportation of Babel Source Blocks -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Authors: Eric Schulte
-;;	Dan Davison
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Code:
-(require 'ob-core)
-
-(declare-function org-babel-lob-get-info "ob-lob" (&optional datum))
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-context "org-element" (&optional element))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-escape-code-in-string "org-src" (s))
-(declare-function org-export-copy-buffer "ox" ())
-(declare-function org-fill-template "org" (template alist))
-(declare-function org-get-indentation "org" (&optional line))
-(declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
-
-(defvar org-src-preserve-indentation)
-
-(defcustom org-export-use-babel t
-  "Switch controlling code evaluation and header processing during export.
-When set to nil no code will be evaluated as part of the export
-process and no header arguments will be obeyed.  Users who wish
-to avoid evaluating code on export should use the header argument
-`:eval never-export'."
-  :group 'org-babel
-  :version "24.1"
-  :type '(choice (const :tag "Never" nil)
-		 (const :tag "Always" t))
-  :safe #'null)
-
-
-(defmacro org-babel-exp--at-source (&rest body)
-  "Evaluate BODY at the source of the Babel block at point.
-Source is located in `org-babel-exp-reference-buffer'.  The value
-returned is the value of the last form in BODY.  Assume that
-point is at the beginning of the Babel block."
-  (declare (indent 1) (debug body))
-  `(let ((source (get-text-property (point) 'org-reference)))
-     ;; Source blocks created during export process (e.g., by other
-     ;; source blocks) are not referenced.  In this case, do not move
-     ;; point at all.
-     (with-current-buffer (if source org-babel-exp-reference-buffer
-			    (current-buffer))
-       (org-with-wide-buffer
-	(when source (goto-char source))
-	,@body))))
-
-(defun org-babel-exp-src-block ()
-  "Process source block for export.
-Depending on the \":export\" header argument, replace the source
-code block like this:
-
-both ---- display the code and the results
-
-code ---- the default, display the code inside the block but do
-          not process
-
-results - just like none only the block is run on export ensuring
-          that its results are present in the Org mode buffer
-
-none ---- do not display either code or results upon export
-
-Assume point is at block opening line."
-  (interactive)
-  (save-excursion
-    (let* ((info (org-babel-get-src-block-info 'light))
-	   (lang (nth 0 info))
-	   (raw-params (nth 2 info))
-	   hash)
-      ;; bail if we couldn't get any info from the block
-      (unless noninteractive
-	(message "org-babel-exp process %s at position %d..."
-		 lang
-		 (line-beginning-position)))
-      (when info
-	;; if we're actually going to need the parameters
-	(when (member (cdr (assq :exports (nth 2 info))) '("both" "results"))
-	  (let ((lang-headers (intern (concat "org-babel-default-header-args:"
-					      lang))))
-	    (org-babel-exp--at-source
-		(setf (nth 2 info)
-		      (org-babel-process-params
-		       (apply #'org-babel-merge-params
-			      org-babel-default-header-args
-			      (and (boundp lang-headers)
-				   (symbol-value lang-headers))
-			      (append (org-babel-params-from-properties lang)
-				      (list raw-params)))))))
-	  (setf hash (org-babel-sha1-hash info)))
-	(org-babel-exp-do-export info 'block hash)))))
-
-(defcustom org-babel-exp-call-line-template
-  ""
-  "Template used to export call lines.
-This template may be customized to include the call line name
-with any export markup.  The template is filled out using
-`org-fill-template', and the following %keys may be used.
-
- line --- call line
-
-An example value would be \"\\n: call: %line\" to export the call line
-wrapped in a verbatim environment.
-
-Note: the results are inserted separately after the contents of
-this template."
-  :group 'org-babel
-  :type 'string)
-
-(defun org-babel-exp-process-buffer ()
-  "Execute all Babel blocks in current buffer."
-  (interactive)
-  (when org-export-use-babel
-    (save-window-excursion
-      (let ((case-fold-search t)
-	    (regexp "\\(call\\|src\\)_\\|^[ \t]*#\\+\\(BEGIN_SRC\\|CALL:\\)")
-	    ;; Get a pristine copy of current buffer so Babel
-	    ;; references are properly resolved and source block
-	    ;; context is preserved.
-	    (org-babel-exp-reference-buffer (org-export-copy-buffer)))
-	(unwind-protect
-	    (save-excursion
-	      ;; First attach to every source block their original
-	      ;; position, so that they can be retrieved within
-	      ;; `org-babel-exp-reference-buffer', even after heavy
-	      ;; modifications on current buffer.
-	      ;;
-	      ;; False positives are harmless, so we don't check if
-	      ;; we're really at some Babel object.  Moreover,
-	      ;; `line-end-position' ensures that we propertize
-	      ;; a noticeable part of the object, without affecting
-	      ;; multiple objects on the same line.
-	      (goto-char (point-min))
-	      (while (re-search-forward regexp nil t)
-		(let ((s (match-beginning 0)))
-		  (put-text-property s (line-end-position) 'org-reference s)))
-	      ;; Evaluate from top to bottom every Babel block
-	      ;; encountered.
-	      (goto-char (point-min))
-	      (while (re-search-forward regexp nil t)
-		(unless (save-match-data (org-in-commented-heading-p))
-		  (let* ((object? (match-end 1))
-			 (element (save-match-data
-				    (if object? (org-element-context)
-				      ;; No deep inspection if we're
-				      ;; just looking for an element.
-				      (org-element-at-point))))
-			 (type
-			  (pcase (org-element-type element)
-			    ;; Discard block elements if we're looking
-			    ;; for inline objects.  False results
-			    ;; happen when, e.g., "call_" syntax is
-			    ;; located within affiliated keywords:
-			    ;;
-			    ;; #+name: call_src
-			    ;; #+begin_src ...
-			    ((and (or `babel-call `src-block) (guard object?))
-			     nil)
-			    (type type)))
-			 (begin
-			  (copy-marker (org-element-property :begin element)))
-			 (end
-			  (copy-marker
-			   (save-excursion
-			     (goto-char (org-element-property :end element))
-			     (skip-chars-backward " \r\t\n")
-			     (point)))))
-		    (pcase type
-		      (`inline-src-block
-		       (let* ((info
-			       (org-babel-get-src-block-info nil element))
-			      (params (nth 2 info)))
-			 (setf (nth 1 info)
-			       (if (and (cdr (assq :noweb params))
-					(string= "yes"
-						 (cdr (assq :noweb params))))
-				   (org-babel-expand-noweb-references
-				    info org-babel-exp-reference-buffer)
-				 (nth 1 info)))
-			 (goto-char begin)
-			 (let ((replacement
-				(org-babel-exp-do-export info 'inline)))
-			   (if (equal replacement "")
-			       ;; Replacement code is empty: remove
-			       ;; inline source block, including extra
-			       ;; white space that might have been
-			       ;; created when inserting results.
-			       (delete-region begin
-					      (progn (goto-char end)
-						     (skip-chars-forward " \t")
-						     (point)))
-			     ;; Otherwise: remove inline src block but
-			     ;; preserve following white spaces.  Then
-			     ;; insert value.
-			     (delete-region begin end)
-			     (insert replacement)))))
-		      ((or `babel-call `inline-babel-call)
-		       (org-babel-exp-do-export (org-babel-lob-get-info element)
-						'lob)
-		       (let ((rep
-			      (org-fill-template
-			       org-babel-exp-call-line-template
-			       `(("line"  .
-				  ,(org-element-property :value element))))))
-			 ;; If replacement is empty, completely remove
-			 ;; the object/element, including any extra
-			 ;; white space that might have been created
-			 ;; when including results.
-			 (if (equal rep "")
-			     (delete-region
-			      begin
-			      (progn (goto-char end)
-				     (if (not (eq type 'babel-call))
-					 (progn (skip-chars-forward " \t")
-						(point))
-				       (skip-chars-forward " \r\t\n")
-				       (line-beginning-position))))
-			   ;; Otherwise, preserve trailing
-			   ;; spaces/newlines and then, insert
-			   ;; replacement string.
-			   (goto-char begin)
-			   (delete-region begin end)
-			   (insert rep))))
-		      (`src-block
-		       (let ((match-start (copy-marker (match-beginning 0)))
-			     (ind (org-get-indentation)))
-			 ;; Take care of matched block: compute
-			 ;; replacement string.  In particular, a nil
-			 ;; REPLACEMENT means the block is left as-is
-			 ;; while an empty string removes the block.
-			 (let ((replacement
-				(progn (goto-char match-start)
-				       (org-babel-exp-src-block))))
-			   (cond ((not replacement) (goto-char end))
-				 ((equal replacement "")
-				  (goto-char end)
-				  (skip-chars-forward " \r\t\n")
-				  (beginning-of-line)
-				  (delete-region begin (point)))
-				 (t
-				  (goto-char match-start)
-				  (delete-region (point)
-						 (save-excursion
-						   (goto-char end)
-						   (line-end-position)))
-				  (insert replacement)
-				  (if (or org-src-preserve-indentation
-					  (org-element-property
-					   :preserve-indent element))
-				      ;; Indent only code block
-				      ;; markers.
-				      (save-excursion
-					(skip-chars-backward " \r\t\n")
-					(indent-line-to ind)
-					(goto-char match-start)
-					(indent-line-to ind))
-				    ;; Indent everything.
-				    (indent-rigidly
-				     match-start (point) ind)))))
-			 (set-marker match-start nil))))
-		    (set-marker begin nil)
-		    (set-marker end nil)))))
-	  (kill-buffer org-babel-exp-reference-buffer)
-	  (remove-text-properties (point-min) (point-max) '(org-reference)))))))
-
-(defun org-babel-exp-do-export (info type &optional hash)
-  "Return a string with the exported content of a code block.
-The function respects the value of the :exports header argument."
-  (let ((silently (lambda () (let ((session (cdr (assq :session (nth 2 info)))))
-			  (unless (equal "none" session)
-			    (org-babel-exp-results info type 'silent)))))
-	(clean (lambda () (if (eq type 'inline)
-			 (org-babel-remove-inline-result)
-		       (org-babel-remove-result info)))))
-    (pcase (or (cdr (assq :exports (nth 2 info))) "code")
-      ("none" (funcall silently) (funcall clean) "")
-      ("code" (funcall silently) (funcall clean) (org-babel-exp-code info type))
-      ("results" (org-babel-exp-results info type nil hash) "")
-      ("both"
-       (org-babel-exp-results info type nil hash)
-       (org-babel-exp-code info type)))))
-
-(defcustom org-babel-exp-code-template
-  "#+BEGIN_SRC %lang%switches%flags\n%body\n#+END_SRC"
-  "Template used to export the body of code blocks.
-This template may be customized to include additional information
-such as the code block name, or the values of particular header
-arguments.  The template is filled out using `org-fill-template',
-and the following %keys may be used.
-
- lang ------ the language of the code block
- name ------ the name of the code block
- body ------ the body of the code block
- switches -- the switches associated to the code block
- flags ----- the flags passed to the code block
-
-In addition to the keys mentioned above, every header argument
-defined for the code block may be used as a key and will be
-replaced with its value."
-  :group 'org-babel
-  :type 'string)
-
-(defcustom org-babel-exp-inline-code-template
-  "src_%lang[%switches%flags]{%body}"
-  "Template used to export the body of inline code blocks.
-This template may be customized to include additional information
-such as the code block name, or the values of particular header
-arguments.  The template is filled out using `org-fill-template',
-and the following %keys may be used.
-
- lang ------ the language of the code block
- name ------ the name of the code block
- body ------ the body of the code block
- switches -- the switches associated to the code block
- flags ----- the flags passed to the code block
-
-In addition to the keys mentioned above, every header argument
-defined for the code block may be used as a key and will be
-replaced with its value."
-  :group 'org-babel
-  :type 'string
-  :version "26.1"
-  :package-version '(Org . "8.3"))
-
-(defun org-babel-exp-code (info type)
-  "Return the original code block formatted for export."
-  (setf (nth 1 info)
-	(if (string= "strip-export" (cdr (assq :noweb (nth 2 info))))
-	    (replace-regexp-in-string
-	     (org-babel-noweb-wrap) "" (nth 1 info))
-	  (if (org-babel-noweb-p (nth 2 info) :export)
-	      (org-babel-expand-noweb-references
-	       info org-babel-exp-reference-buffer)
-	    (nth 1 info))))
-  (org-fill-template
-   (if (eq type 'inline)
-       org-babel-exp-inline-code-template
-       org-babel-exp-code-template)
-   `(("lang"  . ,(nth 0 info))
-     ("body"  . ,(org-escape-code-in-string (nth 1 info)))
-     ("switches" . ,(let ((f (nth 3 info)))
-		      (and (org-string-nw-p f) (concat " " f))))
-     ("flags" . ,(let ((f (assq :flags (nth 2 info))))
-		   (and f (concat " " (cdr f)))))
-     ,@(mapcar (lambda (pair)
-		 (cons (substring (symbol-name (car pair)) 1)
-		       (format "%S" (cdr pair))))
-	       (nth 2 info))
-     ("name"  . ,(or (nth 4 info) "")))))
-
-(defun org-babel-exp-results (info type &optional silent hash)
-  "Evaluate and return the results of the current code block for export.
-Results are prepared in a manner suitable for export by Org mode.
-This function is called by `org-babel-exp-do-export'.  The code
-block will be evaluated.  Optional argument SILENT can be used to
-inhibit insertion of results into the buffer."
-  (unless (and hash (equal hash (org-babel-current-result-hash)))
-    (let ((lang (nth 0 info))
-	  (body (if (org-babel-noweb-p (nth 2 info) :eval)
-		    (org-babel-expand-noweb-references
-		     info org-babel-exp-reference-buffer)
-		  (nth 1 info)))
-	  (info (copy-sequence info))
-	  (org-babel-current-src-block-location (point-marker)))
-      ;; Skip code blocks which we can't evaluate.
-      (when (fboundp (intern (concat "org-babel-execute:" lang)))
-	(org-babel-eval-wipe-error-buffer)
-	(setf (nth 1 info) body)
-	(setf (nth 2 info)
-	      (org-babel-exp--at-source
-		(org-babel-process-params
-		 (org-babel-merge-params
-		  (nth 2 info)
-		  `((:results . ,(if silent "silent" "replace")))))))
-	(pcase type
-	  (`block (org-babel-execute-src-block nil info))
-	  (`inline
-	    ;; Position the point on the inline source block
-	    ;; allowing `org-babel-insert-result' to check that the
-	    ;; block is inline.
-	    (goto-char (nth 5 info))
-	    (org-babel-execute-src-block nil info))
-	  (`lob
-	   (save-excursion
-	     (goto-char (nth 5 info))
-	     (let (org-confirm-babel-evaluate)
-	       (org-babel-execute-src-block nil info)))))))))
-
-
-(provide 'ob-exp)
-
-;;; ob-exp.el ends here
diff --git a/elpa/org-9.1.14/ob-exp.elc b/elpa/org-9.1.14/ob-exp.elc
deleted file mode 100644
index e5d72ef..0000000
--- a/elpa/org-9.1.14/ob-exp.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-forth.el b/elpa/org-9.1.14/ob-forth.el
deleted file mode 100644
index efd5759..0000000
--- a/elpa/org-9.1.14/ob-forth.el
+++ /dev/null
@@ -1,87 +0,0 @@
-;;; ob-forth.el --- Babel Functions for Forth        -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2014-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research, forth
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Requires the gforth forth compiler and `forth-mode' (see below).
-;; https://www.gnu.org/software/gforth/
-
-;;; Requirements:
-
-;; Session evaluation requires the gforth forth compiler as well as
-;; `forth-mode' which is distributed with gforth (in gforth.el).
-
-;;; Code:
-(require 'ob)
-
-(declare-function forth-proc "ext:gforth" ())
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-default-header-args:forth '((:session . "yes"))
-  "Default header arguments for forth code blocks.")
-
-(defun org-babel-execute:forth (body params)
-  "Execute a block of Forth code with org-babel.
-This function is called by `org-babel-execute-src-block'"
-  (if (string= "none" (cdr (assq :session params)))
-      (error "Non-session evaluation not supported for Forth code blocks")
-    (let ((all-results (org-babel-forth-session-execute body params)))
-      (if (member "output" (cdr (assq :result-params params)))
-	  (mapconcat #'identity all-results "\n")
-	(car (last all-results))))))
-
-(defun org-babel-forth-session-execute (body params)
-  (require 'forth-mode)
-  (let ((proc (forth-proc))
-	(rx " \\(\n:\\|compiled\n\\\|ok\n\\)")
-	(result-start))
-    (with-current-buffer (process-buffer (forth-proc))
-      (mapcar (lambda (line)
-		(setq result-start (progn (goto-char (process-mark proc))
-					  (point)))
-		(comint-send-string proc (concat line "\n"))
-		;; wait for forth to say "ok"
-		(while (not (progn (goto-char result-start)
-				   (re-search-forward rx nil t)))
-		  (accept-process-output proc 0.01))
-		(let ((case (match-string 1)))
-		  (cond
-		   ((string= "ok\n" case)
-		    ;; Collect intermediate output.
-		    (buffer-substring (+ result-start 1 (length line))
-				      (match-beginning 0)))
-		   ((string= "compiled\n" case))
-		   ;; Ignore partial compilation.
-		   ((string= "\n:" case)
-		    ;; Report errors.
-		    (org-babel-eval-error-notify 1
-		     (buffer-substring
-		      (+ (match-beginning 0) 1) (point-max))) nil))))
-	      (split-string (org-trim
-			     (org-babel-expand-body:generic body params))
-			    "\n"
-			    'omit-nulls)))))
-
-(provide 'ob-forth)
-
-;;; ob-forth.el ends here
diff --git a/elpa/org-9.1.14/ob-forth.elc b/elpa/org-9.1.14/ob-forth.elc
deleted file mode 100644
index 2f4d588..0000000
--- a/elpa/org-9.1.14/ob-forth.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-fortran.el b/elpa/org-9.1.14/ob-fortran.el
deleted file mode 100644
index 49e960f..0000000
--- a/elpa/org-9.1.14/ob-fortran.el
+++ /dev/null
@@ -1,168 +0,0 @@
-;;; ob-fortran.el --- Babel Functions for Fortran    -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
-
-;; Authors: Sergey Litvinov
-;;       Eric Schulte
-;; Keywords: literate programming, reproducible research, fortran
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating fortran code.
-
-;;; Code:
-(require 'ob)
-(require 'cc-mode)
-(require 'cl-lib)
-
-(declare-function org-entry-get "org"
-		  (pom property &optional inherit literal-nil))
-(declare-function org-remove-indentation "org" (code &optional n))
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("fortran" . "F90"))
-
-(defvar org-babel-default-header-args:fortran '())
-
-(defvar org-babel-fortran-compiler "gfortran"
-  "fortran command used to compile a fortran source code file into an
-  executable.")
-
-(defun org-babel-execute:fortran (body params)
-  "This function should only be called by `org-babel-execute:fortran'"
-  (let* ((tmp-src-file (org-babel-temp-file "fortran-src-" ".F90"))
-         (tmp-bin-file (org-babel-temp-file "fortran-bin-" org-babel-exeext))
-         (cmdline (cdr (assq :cmdline params)))
-         (flags (cdr (assq :flags params)))
-         (full-body (org-babel-expand-body:fortran body params)))
-    (with-temp-file tmp-src-file (insert full-body))
-    (org-babel-eval
-     (format "%s -o %s %s %s"
-	     org-babel-fortran-compiler
-	     (org-babel-process-file-name tmp-bin-file)
-	     (mapconcat 'identity
-			(if (listp flags) flags (list flags)) " ")
-	     (org-babel-process-file-name tmp-src-file)) "")
-    (let ((results
-           (org-trim
-            (org-remove-indentation
-	     (org-babel-eval
-	      (concat tmp-bin-file (if cmdline (concat " " cmdline) "")) "")))))
-      (org-babel-reassemble-table
-       (org-babel-result-cond (cdr (assq :result-params params))
-	 (org-babel-read results)
-         (let ((tmp-file (org-babel-temp-file "f-")))
-           (with-temp-file tmp-file (insert results))
-           (org-babel-import-elisp-from-file tmp-file)))
-       (org-babel-pick-name
-        (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-       (org-babel-pick-name
-        (cdr (assq :rowname-names params)) (cdr (assq :rownames params)))))))
-
-(defun org-babel-expand-body:fortran (body params)
-  "Expand a block of fortran or fortran code with org-babel according to
-its header arguments."
-  (let ((vars (org-babel--get-vars params))
-        (main-p (not (string= (cdr (assq :main params)) "no")))
-        (includes (or (cdr (assq :includes params))
-                      (org-babel-read (org-entry-get nil "includes" t))))
-        (defines (org-babel-read
-                  (or (cdr (assq :defines params))
-                      (org-babel-read (org-entry-get nil "defines" t))))))
-    (mapconcat 'identity
-	       (list
-		;; includes
-		(mapconcat
-		 (lambda (inc) (format "#include %s" inc))
-		 (if (listp includes) includes (list includes)) "\n")
-		;; defines
-		(mapconcat
-		 (lambda (inc) (format "#define %s" inc))
-		 (if (listp defines) defines (list defines)) "\n")
-		;; body
-		(if main-p
-		    (org-babel-fortran-ensure-main-wrap
-		     (concat
-		      ;; variables
-		      (mapconcat 'org-babel-fortran-var-to-fortran vars "\n")
-		      body) params)
-		  body) "\n") "\n")))
-
-(defun org-babel-fortran-ensure-main-wrap (body params)
-  "Wrap body in a \"program ... end program\" block if none exists."
-  (if (string-match "^[ \t]*program[ \t]*.*" (capitalize body))
-      (let ((vars (org-babel--get-vars params)))
-	(if vars (error "Cannot use :vars if `program' statement is present"))
-	body)
-    (format "program main\n%s\nend program main\n" body)))
-
-(defun org-babel-prep-session:fortran (_session _params)
-  "This function does nothing as fortran is a compiled language with no
-support for sessions"
-  (error "Fortran is a compiled languages -- no support for sessions"))
-
-(defun org-babel-load-session:fortran (_session _body _params)
-  "This function does nothing as fortran is a compiled language with no
-support for sessions"
-  (error "Fortran is a compiled languages -- no support for sessions"))
-
-;; helper functions
-
-(defun org-babel-fortran-var-to-fortran (pair)
-  "Convert an elisp val into a string of fortran code specifying a var
-of the same value."
-  ;; TODO list support
-  (let ((var (car pair))
-        (val (cdr pair)))
-    (when (symbolp val)
-      (setq val (symbol-name val))
-      (when (= (length val) 1)
-        (setq val (string-to-char val))))
-    (cond
-     ((integerp val)
-      (format "integer, parameter  ::  %S = %S\n" var val))
-     ((floatp val)
-      (format "real, parameter ::  %S = %S\n" var val))
-     ((or (integerp val))
-      (format "character, parameter :: %S = '%S'\n" var val))
-     ((stringp val)
-      (format "character(len=%d), parameter ::  %S = '%s'\n"
-              (length val) var val))
-     ;; val is a matrix
-     ((and (listp val) (cl-every #'listp val))
-      (format "real, parameter :: %S(%d,%d) = transpose( reshape( %s , (/ %d, %d /) ) )\n"
-	      var (length val) (length (car val))
-	      (org-babel-fortran-transform-list val)
-	      (length (car val)) (length val)))
-     ((listp val)
-      (format "real, parameter :: %S(%d) = %s\n"
-	      var (length val) (org-babel-fortran-transform-list val)))
-     (t
-      (error "the type of parameter %s is not supported by ob-fortran" var)))))
-
-(defun org-babel-fortran-transform-list (val)
-  "Return a fortran representation of enclose syntactic lists."
-  (if (listp val)
-      (concat "(/" (mapconcat #'org-babel-fortran-transform-list val ", ") "/)")
-    (format "%S" val)))
-
-(provide 'ob-fortran)
-
-;;; ob-fortran.el ends here
diff --git a/elpa/org-9.1.14/ob-fortran.elc b/elpa/org-9.1.14/ob-fortran.elc
deleted file mode 100644
index 4a60e24..0000000
--- a/elpa/org-9.1.14/ob-fortran.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-gnuplot.el b/elpa/org-9.1.14/ob-gnuplot.el
deleted file mode 100644
index b2f4913..0000000
--- a/elpa/org-9.1.14/ob-gnuplot.el
+++ /dev/null
@@ -1,283 +0,0 @@
-;;; ob-gnuplot.el --- Babel Functions for Gnuplot    -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating gnuplot source code.
-;;
-;; This differs from most standard languages in that
-;;
-;; 1) we are generally only going to return results of type "file"
-;;
-;; 2) we are adding the "file" and "cmdline" header arguments
-
-;;; Requirements:
-
-;; - gnuplot :: http://www.gnuplot.info/
-;;
-;; - gnuplot-mode :: http://cars9.uchicago.edu/~ravel/software/gnuplot-mode.html
-
-;;; Code:
-(require 'ob)
-
-(declare-function org-time-string-to-time "org" (s))
-(declare-function org-combine-plists "org" (&rest plists))
-(declare-function orgtbl-to-generic "org-table" (table params))
-(declare-function gnuplot-mode "ext:gnuplot-mode" ())
-(declare-function gnuplot-send-string-to-gnuplot "ext:gnuplot-mode" (str txt))
-(declare-function gnuplot-send-buffer-to-gnuplot "ext:gnuplot-mode" ())
-
-(defvar org-babel-default-header-args:gnuplot
-  '((:results . "file") (:exports . "results") (:session . nil))
-  "Default arguments to use when evaluating a gnuplot source block.")
-
-(defvar org-babel-header-args:gnuplot
-  '((title	. :any)
-    (lines	. :any)
-    (sets	. :any)
-    (x-labels	. :any)
-    (y-labels	. :any)
-    (timefmt	. :any)
-    (time-ind	. :any)
-    (missing	. :any)
-    (term       . :any))
-  "Gnuplot specific header args.")
-
-(defvar org-babel-gnuplot-timestamp-fmt nil) ; Dynamically scoped.
-
-(defvar *org-babel-gnuplot-missing* nil)
-
-(defcustom *org-babel-gnuplot-terms*
-  '((eps . "postscript eps"))
-  "List of file extensions and the associated gnuplot terminal."
-  :group 'org-babel
-  :type '(repeat (cons (symbol :tag "File extension")
-		       (string :tag "Gnuplot terminal"))))
-
-(defun org-babel-gnuplot-process-vars (params)
-  "Extract variables from PARAMS and process the variables.
-Dumps all vectors into files and returns an association list
-of variable names and the related value to be used in the gnuplot
-code."
-  (let ((*org-babel-gnuplot-missing* (cdr (assq :missing params))))
-    (mapcar
-     (lambda (pair)
-       (cons
-	(car pair) ;; variable name
-	(let* ((val (cdr pair)) ;; variable value
-	       (lp  (listp val)))
-	  (if lp
-	      (org-babel-gnuplot-table-to-data
-	       (let* ((first  (car val))
-		      (tablep (or (listp first) (symbolp first))))
-		 (if tablep val (mapcar 'list val)))
-	       (org-babel-temp-file "gnuplot-") params)
-	  val))))
-     (org-babel--get-vars params))))
-
-(defun org-babel-expand-body:gnuplot (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (save-window-excursion
-    (let* ((vars (org-babel-gnuplot-process-vars params))
-           (out-file (cdr (assq :file params)))
-	   (prologue (cdr (assq :prologue params)))
-	   (epilogue (cdr (assq :epilogue params)))
-	   (term (or (cdr (assq :term params))
-                     (when out-file
-		       (let ((ext (file-name-extension out-file)))
-			 (or (cdr (assoc (intern (downcase ext))
-					 *org-babel-gnuplot-terms*))
-			     ext)))))
-           (title (cdr (assq :title params)))
-           (lines (cdr (assq :line params)))
-           (sets (cdr (assq :set params)))
-           (x-labels (cdr (assq :xlabels params)))
-           (y-labels (cdr (assq :ylabels params)))
-           (timefmt (cdr (assq :timefmt params)))
-           (time-ind (or (cdr (assq :timeind params))
-                         (when timefmt 1)))
-	   (directory (and (buffer-file-name)
-			   (file-name-directory (buffer-file-name))))
-	   (add-to-body (lambda (text) (setq body (concat text "\n" body)))))
-      ;; append header argument settings to body
-      (when title (funcall add-to-body (format "set title '%s'" title)))
-      (when lines (mapc (lambda (el) (funcall add-to-body el)) lines))
-      (when sets
-	(mapc (lambda (el) (funcall add-to-body (format "set %s" el))) sets))
-      (when x-labels
-	(funcall add-to-body
-		 (format "set xtics (%s)"
-			 (mapconcat (lambda (pair)
-				      (format "\"%s\" %d"
-					      (cdr pair) (car pair)))
-				    x-labels ", "))))
-      (when y-labels
-	(funcall add-to-body
-		 (format "set ytics (%s)"
-			 (mapconcat (lambda (pair)
-				      (format "\"%s\" %d"
-					      (cdr pair) (car pair)))
-				    y-labels ", "))))
-      (when time-ind
-	(funcall add-to-body "set xdata time")
-	(funcall add-to-body (concat "set timefmt \""
-				     (or timefmt
-					 "%Y-%m-%d-%H:%M:%S") "\"")))
-      (when out-file
-	;; set the terminal at the top of the block
-	(funcall add-to-body (format "set output \"%s\"" out-file))
-	;; and close the terminal at the bottom of the block
-	(setq body (concat body "\nset output\n")))
-      (when term (funcall add-to-body (format "set term %s" term)))
-      ;; insert variables into code body: this should happen last
-      ;; placing the variables at the *top* of the code in case their
-      ;; values are used later
-      (funcall add-to-body
-	       (mapconcat #'identity
-			  (org-babel-variable-assignments:gnuplot params)
-			  "\n"))
-      ;; replace any variable names preceded by '$' with the actual
-      ;; value of the variable
-      (mapc (lambda (pair)
-	      (setq body (replace-regexp-in-string
-			  (format "\\$%s" (car pair)) (cdr pair) body)))
-	    vars)
-      (when prologue (funcall add-to-body prologue))
-      (when epilogue (setq body (concat body "\n" epilogue)))
-      ;; Setting the directory needs to be done first so that
-      ;; subsequent 'output' directive goes to the right place.
-      (when directory (funcall add-to-body (format "cd '%s'" directory))))
-    body))
-
-(defun org-babel-execute:gnuplot (body params)
-  "Execute a block of Gnuplot code.
-This function is called by `org-babel-execute-src-block'."
-  (require 'gnuplot)
-  (let ((session (cdr (assq :session params)))
-        (result-type (cdr (assq :results params)))
-        (body (org-babel-expand-body:gnuplot body params))
-	output)
-    (save-window-excursion
-      ;; evaluate the code body with gnuplot
-      (if (string= session "none")
-          (let ((script-file (org-babel-temp-file "gnuplot-script-")))
-            (with-temp-file script-file
-              (insert (concat body "\n")))
-            (message "gnuplot \"%s\"" script-file)
-            (setq output
-                  (shell-command-to-string
-		   (format
-		    "gnuplot \"%s\""
-		    (org-babel-process-file-name
-		     script-file
-		     (if (member system-type '(cygwin windows-nt ms-dos))
-			 t nil)))))
-            (message "%s" output))
-        (with-temp-buffer
-          (insert (concat body "\n"))
-          (gnuplot-mode)
-          (gnuplot-send-buffer-to-gnuplot)))
-      (if (member "output" (split-string result-type))
-          output
-	nil)))) ;; signal that output has already been written to file
-
-(defun org-babel-prep-session:gnuplot (session params)
-  "Prepare SESSION according to the header arguments in PARAMS."
-  (let* ((session (org-babel-gnuplot-initiate-session session))
-         (var-lines (org-babel-variable-assignments:gnuplot params)))
-    (message "%S" session)
-    (org-babel-comint-in-buffer session
-      (dolist (var-line  var-lines)
-	(insert var-line)
-	(comint-send-input nil t)
-	(org-babel-comint-wait-for-output session)
-	(sit-for .1)
-	(goto-char (point-max))))
-    session))
-
-(defun org-babel-load-session:gnuplot (session body params)
-  "Load BODY into SESSION."
-  (save-window-excursion
-    (let ((buffer (org-babel-prep-session:gnuplot session params)))
-      (with-current-buffer buffer
-        (goto-char (process-mark (get-buffer-process (current-buffer))))
-        (insert (org-babel-chomp body)))
-      buffer)))
-
-(defun org-babel-variable-assignments:gnuplot (params)
-  "Return list of gnuplot statements assigning the block's variables."
-  (mapcar
-   (lambda (pair) (format "%s = \"%s\"" (car pair) (cdr pair)))
-   (org-babel-gnuplot-process-vars params)))
-
-(defvar gnuplot-buffer)
-(defun org-babel-gnuplot-initiate-session (&optional session _params)
-  "Initiate a gnuplot session.
-If there is not a current inferior-process-buffer in SESSION
-then create one.  Return the initialized session.  The current
-`gnuplot-mode' doesn't provide support for multiple sessions."
-  (require 'gnuplot)
-  (unless (string= session "none")
-    (save-window-excursion
-      (gnuplot-send-string-to-gnuplot "" "line")
-      gnuplot-buffer)))
-
-(defun org-babel-gnuplot-quote-timestamp-field (s)
-  "Convert S from timestamp to Unix time and export to gnuplot."
-  (format-time-string org-babel-gnuplot-timestamp-fmt
-		      (org-time-string-to-time s)))
-
-(defvar org-table-number-regexp)
-(defvar org-ts-regexp3)
-(defun org-babel-gnuplot-quote-tsv-field (s)
-  "Quote S for export to gnuplot."
-  (unless (stringp s)
-    (setq s (format "%s" s)))
-  (if (string-match org-table-number-regexp s) s
-    (if (string-match org-ts-regexp3 s)
-	(org-babel-gnuplot-quote-timestamp-field s)
-      (if (zerop (length s))
-	  (or *org-babel-gnuplot-missing* s)
-	(if (string-match "[ \"]" s)
-	    (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"")
-		    "\"")
-	  s)))))
-
-(defun org-babel-gnuplot-table-to-data (table data-file params)
-  "Export TABLE to DATA-FILE in a format readable by gnuplot.
-Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
-  (with-temp-file data-file
-    (insert (let ((org-babel-gnuplot-timestamp-fmt
-		   (or (plist-get params :timefmt) "%Y-%m-%d-%H:%M:%S")))
-	      (orgtbl-to-generic
-	       table
-	       (org-combine-plists
-		'(:sep "\t" :fmt org-babel-gnuplot-quote-tsv-field)
-		params)))))
-  data-file)
-
-(provide 'ob-gnuplot)
-
-
-
-;;; ob-gnuplot.el ends here
diff --git a/elpa/org-9.1.14/ob-gnuplot.elc b/elpa/org-9.1.14/ob-gnuplot.elc
deleted file mode 100644
index 3ab6461..0000000
--- a/elpa/org-9.1.14/ob-gnuplot.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-groovy.el b/elpa/org-9.1.14/ob-groovy.el
deleted file mode 100644
index 565b097..0000000
--- a/elpa/org-9.1.14/ob-groovy.el
+++ /dev/null
@@ -1,116 +0,0 @@
-;;; ob-groovy.el --- Babel Functions for Groovy      -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2018 Free Software Foundation, Inc.
-
-;; Author: Miro Bezjak
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;; Currently only supports the external execution.  No session support yet.
-
-;;; Requirements:
-;; - Groovy language :: http://groovy.codehaus.org
-;; - Groovy major mode :: Can be installed from MELPA or
-;;   https://github.com/russel/Emacs-Groovy-Mode
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-tangle-lang-exts) ;; Autoloaded
-(add-to-list 'org-babel-tangle-lang-exts '("groovy" . "groovy"))
-(defvar org-babel-default-header-args:groovy '())
-(defcustom org-babel-groovy-command "groovy"
-  "Name of the command to use for executing Groovy code.
-May be either a command in the path, like groovy
-or an absolute path name, like /usr/local/bin/groovy
-parameters may be used, like groovy -v"
-  :group 'org-babel
-  :version "24.3"
-  :type 'string)
-
-(defun org-babel-execute:groovy (body params)
-  "Execute a block of Groovy code with org-babel.  This function is
-called by `org-babel-execute-src-block'"
-  (message "executing Groovy source code block")
-  (let* ((processed-params (org-babel-process-params params))
-         (session (org-babel-groovy-initiate-session (nth 0 processed-params)))
-         (result-params (nth 2 processed-params))
-         (result-type (cdr (assq :result-type params)))
-         (full-body (org-babel-expand-body:generic
-                     body params))
-         (result (org-babel-groovy-evaluate
-                  session full-body result-type result-params)))
-
-    (org-babel-reassemble-table
-     result
-     (org-babel-pick-name
-      (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-     (org-babel-pick-name
-      (cdr (assq :rowname-names params)) (cdr (assq :rownames params))))))
-
-(defvar org-babel-groovy-wrapper-method
-
-  "class Runner extends Script {
-    def out = new PrintWriter(new ByteArrayOutputStream())
-    def run() { %s }
-}
-
-println(new Runner().run())
-")
-
-
-(defun org-babel-groovy-evaluate
-    (session body &optional result-type result-params)
-  "Evaluate BODY in external Groovy process.
-If RESULT-TYPE equals `output' then return standard output as a string.
-If RESULT-TYPE equals `value' then return the value of the last statement
-in BODY as elisp."
-  (when session (error "Sessions are not (yet) supported for Groovy"))
-  (pcase result-type
-    (`output
-     (let ((src-file (org-babel-temp-file "groovy_")))
-       (progn (with-temp-file src-file (insert body))
-              (org-babel-eval
-               (concat org-babel-groovy-command " " src-file) ""))))
-    (`value
-     (let* ((src-file (org-babel-temp-file "groovy_"))
-            (wrapper (format org-babel-groovy-wrapper-method body)))
-       (with-temp-file src-file (insert wrapper))
-       (let ((raw (org-babel-eval
-                   (concat org-babel-groovy-command " " src-file) "")))
-         (org-babel-result-cond result-params
-	   raw
-           (org-babel-script-escape raw)))))))
-
-
-(defun org-babel-prep-session:groovy (_session _params)
-  "Prepare SESSION according to the header arguments specified in PARAMS."
-  (error "Sessions are not (yet) supported for Groovy"))
-
-(defun org-babel-groovy-initiate-session (&optional _session)
-  "If there is not a current inferior-process-buffer in SESSION
-then create.  Return the initialized session.  Sessions are not
-supported in Groovy."
-  nil)
-
-(provide 'ob-groovy)
-
-
-
-;;; ob-groovy.el ends here
diff --git a/elpa/org-9.1.14/ob-groovy.elc b/elpa/org-9.1.14/ob-groovy.elc
deleted file mode 100644
index 562624e..0000000
--- a/elpa/org-9.1.14/ob-groovy.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-haskell.el b/elpa/org-9.1.14/ob-haskell.el
deleted file mode 100644
index e607ee0..0000000
--- a/elpa/org-9.1.14/ob-haskell.el
+++ /dev/null
@@ -1,222 +0,0 @@
-;;; ob-haskell.el --- Babel Functions for Haskell    -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating haskell source code.  This one will
-;; be sort of tricky because haskell programs must be compiled before
-;; they can be run, but haskell code can also be run through an
-;; interactive interpreter.
-;;
-;; For now lets only allow evaluation using the haskell interpreter.
-
-;;; Requirements:
-
-;; - haskell-mode :: http://www.iro.umontreal.ca/~monnier/elisp/#haskell-mode
-;;
-;; - inf-haskell :: http://www.iro.umontreal.ca/~monnier/elisp/#haskell-mode
-;;
-;; - (optionally) lhs2tex :: http://people.cs.uu.nl/andres/lhs2tex/
-
-;;; Code:
-(require 'ob)
-(require 'comint)
-
-(declare-function org-remove-indentation "org" (code &optional n))
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function haskell-mode "ext:haskell-mode" ())
-(declare-function run-haskell "ext:inf-haskell" (&optional arg))
-(declare-function inferior-haskell-load-file
-		  "ext:inf-haskell" (&optional reload))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("haskell" . "hs"))
-
-(defvar org-babel-default-header-args:haskell
-  '((:padlines . "no")))
-
-(defvar org-babel-haskell-lhs2tex-command "lhs2tex")
-
-(defvar org-babel-haskell-eoe "\"org-babel-haskell-eoe\"")
-
-(defvar haskell-prompt-regexp)
-
-(defun org-babel-execute:haskell (body params)
-  "Execute a block of Haskell code."
-  (require 'inf-haskell)
-  (add-hook 'inferior-haskell-hook
-            (lambda ()
-              (setq-local comint-prompt-regexp
-                          (concat haskell-prompt-regexp "\\|^λ?> "))))
-  (let* ((session (cdr (assq :session params)))
-         (result-type (cdr (assq :result-type params)))
-         (full-body (org-babel-expand-body:generic
-		     body params
-		     (org-babel-variable-assignments:haskell params)))
-         (session (org-babel-haskell-initiate-session session params))
-	 (comint-preoutput-filter-functions
-	       (cons 'ansi-color-filter-apply comint-preoutput-filter-functions))
-         (raw (org-babel-comint-with-output
-		  (session org-babel-haskell-eoe t full-body)
-                (insert (org-trim full-body))
-                (comint-send-input nil t)
-                (insert org-babel-haskell-eoe)
-                (comint-send-input nil t)))
-         (results (mapcar
-                   #'org-babel-strip-quotes
-                   (cdr (member org-babel-haskell-eoe
-                                (reverse (mapcar #'org-trim raw)))))))
-    (org-babel-reassemble-table
-     (let ((result
-            (pcase result-type
-              (`output (mapconcat #'identity (reverse (cdr results)) "\n"))
-              (`value (car results)))))
-       (org-babel-result-cond (cdr (assq :result-params params))
-	 result (org-babel-script-escape result)))
-     (org-babel-pick-name (cdr (assq :colname-names params))
-			  (cdr (assq :colname-names params)))
-     (org-babel-pick-name (cdr (assq :rowname-names params))
-			  (cdr (assq :rowname-names params))))))
-
-(defun org-babel-haskell-initiate-session (&optional _session _params)
-  "Initiate a haskell session.
-If there is not a current inferior-process-buffer in SESSION
-then create one.  Return the initialized session."
-  (require 'inf-haskell)
-  (or (get-buffer "*haskell*")
-      (save-window-excursion (run-haskell) (sleep-for 0.25) (current-buffer))))
-
-(defun org-babel-load-session:haskell (session body params)
-  "Load BODY into SESSION."
-  (save-window-excursion
-    (let* ((buffer (org-babel-prep-session:haskell session params))
-           (load-file (concat (org-babel-temp-file "haskell-load-") ".hs")))
-      (with-temp-buffer
-        (insert body) (write-file load-file)
-        (haskell-mode) (inferior-haskell-load-file))
-      buffer)))
-
-(defun org-babel-prep-session:haskell (session params)
-  "Prepare SESSION according to the header arguments in PARAMS."
-  (save-window-excursion
-    (let ((buffer (org-babel-haskell-initiate-session session)))
-      (org-babel-comint-in-buffer buffer
-      	(mapc (lambda (line)
-		(insert line)
-		(comint-send-input nil t))
-	      (org-babel-variable-assignments:haskell params)))
-      (current-buffer))))
-
-(defun org-babel-variable-assignments:haskell (params)
-  "Return list of haskell statements assigning the block's variables."
-  (mapcar (lambda (pair)
-	    (format "let %s = %s"
-		    (car pair)
-		    (org-babel-haskell-var-to-haskell (cdr pair))))
-	  (org-babel--get-vars params)))
-
-(defun org-babel-haskell-var-to-haskell (var)
-  "Convert an elisp value VAR into a haskell variable.
-The elisp VAR is converted to a string of haskell source code
-specifying a variable of the same value."
-  (if (listp var)
-      (concat "[" (mapconcat #'org-babel-haskell-var-to-haskell var ", ") "]")
-    (format "%S" var)))
-
-(defvar org-export-copy-to-kill-ring)
-(declare-function org-export-to-file "ox"
-		  (backend file
-			   &optional async subtreep visible-only body-only
-			   ext-plist post-process))
-(defun org-babel-haskell-export-to-lhs (&optional arg)
-  "Export to a .lhs file with all haskell code blocks escaped.
-When called with a prefix argument the resulting
-.lhs file will be exported to a .tex file.  This function will
-create two new files, base-name.lhs and base-name.tex where
-base-name is the name of the current Org file.
-
-Note that all standard Babel literate programming
-constructs (header arguments, no-web syntax etc...) are ignored."
-  (interactive "P")
-  (let* ((contents (buffer-string))
-         (haskell-regexp
-          (concat "^\\([ \t]*\\)#\\+begin_src[ \t]haskell*\\(.*\\)?[\r\n]"
-                  "\\([^\000]*?\\)[\r\n][ \t]*#\\+end_src.*"))
-         (base-name (file-name-sans-extension (buffer-file-name)))
-         (tmp-file (org-babel-temp-file "haskell-"))
-         (tmp-org-file (concat tmp-file ".org"))
-         (tmp-tex-file (concat tmp-file ".tex"))
-         (lhs-file (concat base-name ".lhs"))
-         (tex-file (concat base-name ".tex"))
-         (command (concat org-babel-haskell-lhs2tex-command
-			  " " (org-babel-process-file-name lhs-file)
-			  " > " (org-babel-process-file-name tex-file)))
-         (preserve-indentp org-src-preserve-indentation)
-         indentation)
-    ;; escape haskell source-code blocks
-    (with-temp-file tmp-org-file
-      (insert contents)
-      (goto-char (point-min))
-      (while (re-search-forward haskell-regexp nil t)
-        (save-match-data (setq indentation (length (match-string 1))))
-        (replace-match (save-match-data
-                         (concat
-                          "#+begin_export latex\n\\begin{code}\n"
-                          (if (or preserve-indentp
-                                  (string-match "-i" (match-string 2)))
-                              (match-string 3)
-                            (org-remove-indentation (match-string 3)))
-                          "\n\\end{code}\n#+end_export\n"))
-                       t t)
-        (indent-code-rigidly (match-beginning 0) (match-end 0) indentation)))
-    (save-excursion
-      ;; export to latex w/org and save as .lhs
-      (require 'ox-latex)
-      (find-file tmp-org-file)
-      ;; Ensure we do not clutter kill ring with incomplete results.
-      (let (org-export-copy-to-kill-ring)
-	(org-export-to-file 'latex tmp-tex-file))
-      (kill-buffer nil)
-      (delete-file tmp-org-file)
-      (find-file tmp-tex-file)
-      (goto-char (point-min)) (forward-line 2)
-      (insert "%include polycode.fmt\n")
-      ;; ensure all \begin/end{code} statements start at the first column
-      (while (re-search-forward "^[ \t]+\\\\begin{code}[^\000]+\\\\end{code}" nil t)
-        (replace-match (save-match-data (org-remove-indentation (match-string 0)))
-                       t t))
-      (setq contents (buffer-string))
-      (save-buffer) (kill-buffer nil))
-    (delete-file tmp-tex-file)
-    ;; save org exported latex to a .lhs file
-    (with-temp-file lhs-file (insert contents))
-    (if (not arg)
-        (find-file lhs-file)
-      ;; process .lhs file with lhs2tex
-      (message "running %s" command) (shell-command command) (find-file tex-file))))
-
-(provide 'ob-haskell)
-
-
-
-;;; ob-haskell.el ends here
diff --git a/elpa/org-9.1.14/ob-haskell.elc b/elpa/org-9.1.14/ob-haskell.elc
deleted file mode 100644
index d19153e..0000000
--- a/elpa/org-9.1.14/ob-haskell.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-hledger.el b/elpa/org-9.1.14/ob-hledger.el
deleted file mode 100644
index 727fb1f..0000000
--- a/elpa/org-9.1.14/ob-hledger.el
+++ /dev/null
@@ -1,70 +0,0 @@
-;;  ob-hledger.el --- Babel Functions for hledger      -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Simon Michael
-;; Keywords: literate programming, reproducible research, plain text accounting
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Babel support for evaluating hledger entries.
-;;
-;; Based on ob-ledger.el.
-;; If the source block is empty, hledger will use a default journal file,
-;; probably ~/.hledger.journal (it may not notice your $LEDGER_FILE env var).
-;; So make ~/.hledger.journal a symbolic link to the real file if necessary.
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-default-header-args:hledger
-  '((:results . "output") (:exports . "results") (:cmdline . "bal"))
-  "Default arguments to use when evaluating a hledger source block.")
-
-(defun org-babel-execute:hledger (body params)
-  "Execute a block of hledger entries with org-babel.
-This function is called by `org-babel-execute-src-block'."
-  (message "executing hledger source code block")
-  (letrec ( ;(result-params (split-string (or (cdr (assq :results params)) "")))
-	   (cmdline (cdr (assq :cmdline params)))
-	   (in-file (org-babel-temp-file "hledger-"))
-	   (out-file (org-babel-temp-file "hledger-output-"))
-	   (hledgercmd (concat "hledger"
-			       (if (> (length body) 0)
-				   (concat " -f " (org-babel-process-file-name in-file))
-				 "")
-			       " " cmdline)))
-    (with-temp-file in-file (insert body))
-;; TODO This is calling for some refactoring:
-;;  (concat "hledger" (if ...) " " cmdline)
-;; could be built only once and bound to a symbol.
-    (message "%s" hledgercmd)
-    (with-output-to-string
-      (shell-command (concat hledgercmd " > " (org-babel-process-file-name out-file))))
-    (with-temp-buffer (insert-file-contents out-file) (buffer-string))))
-
-(defun org-babel-prep-session:hledger (_session _params)
-  (error "hledger does not support sessions"))
-
-(provide 'ob-hledger)
-
-
-
-;;; ob-hledger.el ends here
-;; TODO Unit tests are more than welcome, too.
diff --git a/elpa/org-9.1.14/ob-hledger.elc b/elpa/org-9.1.14/ob-hledger.elc
deleted file mode 100644
index d61d2fa..0000000
--- a/elpa/org-9.1.14/ob-hledger.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-io.el b/elpa/org-9.1.14/ob-io.el
deleted file mode 100644
index 4f407cc..0000000
--- a/elpa/org-9.1.14/ob-io.el
+++ /dev/null
@@ -1,108 +0,0 @@
-;;; ob-io.el --- Babel Functions for Io              -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-;; Author: Andrzej Lichnerowicz
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;; Currently only supports the external execution.  No session support yet.
-;; :results output -- runs in scripting mode
-;; :results output repl -- runs in repl mode
-
-;;; Requirements:
-;; - Io language :: http://iolanguage.org/
-;; - Io major mode :: Can be installed from Io sources
-;;  https://github.com/stevedekorte/io/blob/master/extras/SyntaxHighlighters/Emacs/io-mode.el
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-tangle-lang-exts) ;; Autoloaded
-(add-to-list 'org-babel-tangle-lang-exts '("io" . "io"))
-(defvar org-babel-default-header-args:io '())
-(defvar org-babel-io-command "io"
-  "Name of the command to use for executing Io code.")
-
-(defun org-babel-execute:io (body params)
-  "Execute a block of Io code with org-babel.  This function is
-called by `org-babel-execute-src-block'"
-  (message "executing Io source code block")
-  (let* ((processed-params (org-babel-process-params params))
-         (session (org-babel-io-initiate-session (nth 0 processed-params)))
-         (result-params (nth 2 processed-params))
-         (result-type (cdr (assq :result-type params)))
-         (full-body (org-babel-expand-body:generic
-                     body params))
-         (result (org-babel-io-evaluate
-                  session full-body result-type result-params)))
-
-    (org-babel-reassemble-table
-     result
-     (org-babel-pick-name
-      (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-     (org-babel-pick-name
-      (cdr (assq :rowname-names params)) (cdr (assq :rownames params))))))
-
-(defvar org-babel-io-wrapper-method
-  "(
-%s
-) asString print
-")
-
-
-(defun org-babel-io-evaluate (session body &optional result-type result-params)
-  "Evaluate BODY in external Io process.
-If RESULT-TYPE equals `output' then return standard output as a string.
-If RESULT-TYPE equals `value' then return the value of the last statement
-in BODY as elisp."
-  (when session (error "Sessions are not (yet) supported for Io"))
-  (pcase result-type
-    (`output
-     (if (member "repl" result-params)
-         (org-babel-eval org-babel-io-command body)
-       (let ((src-file (org-babel-temp-file "io-")))
-         (progn (with-temp-file src-file (insert body))
-                (org-babel-eval
-                 (concat org-babel-io-command " " src-file) "")))))
-    (`value (let* ((src-file (org-babel-temp-file "io-"))
-		   (wrapper (format org-babel-io-wrapper-method body)))
-	      (with-temp-file src-file (insert wrapper))
-	      (let ((raw (org-babel-eval
-			  (concat org-babel-io-command " " src-file) "")))
-		(org-babel-result-cond result-params
-		  raw
-		  (org-babel-script-escape raw)))))))
-
-
-(defun org-babel-prep-session:io (_session _params)
-  "Prepare SESSION according to the header arguments specified in PARAMS."
-  (error "Sessions are not (yet) supported for Io"))
-
-(defun org-babel-io-initiate-session (&optional _session)
-  "If there is not a current inferior-process-buffer in SESSION
-then create.  Return the initialized session.  Sessions are not
-supported in Io."
-  nil)
-
-(provide 'ob-io)
-
-
-
-;;; ob-io.el ends here
diff --git a/elpa/org-9.1.14/ob-io.elc b/elpa/org-9.1.14/ob-io.elc
deleted file mode 100644
index 2ae3299..0000000
--- a/elpa/org-9.1.14/ob-io.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-java.el b/elpa/org-9.1.14/ob-java.el
deleted file mode 100644
index d6301bf..0000000
--- a/elpa/org-9.1.14/ob-java.el
+++ /dev/null
@@ -1,85 +0,0 @@
-;;; ob-java.el --- Babel Functions for Java          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Currently this only supports the external compilation and execution
-;; of java code blocks (i.e., no session support).
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("java" . "java"))
-
-(defcustom org-babel-java-command "java"
-  "Name of the java command.
-May be either a command in the path, like java
-or an absolute path name, like /usr/local/bin/java
-parameters may be used, like java -verbose"
-  :group 'org-babel
-  :version "24.3"
-  :type 'string)
-
-(defcustom org-babel-java-compiler "javac"
-  "Name of the java compiler.
-May be either a command in the path, like javac
-or an absolute path name, like /usr/local/bin/javac
-parameters may be used, like javac -verbose"
-  :group 'org-babel
-  :version "24.3"
-  :type 'string)
-
-(defun org-babel-execute:java (body params)
-  (let* ((classname (or (cdr (assq :classname params))
-			(error
-			 "Can't compile a java block without a classname")))
-	 (packagename (file-name-directory classname))
-	 (src-file (concat classname ".java"))
-	 (cmpflag (or (cdr (assq :cmpflag params)) ""))
-	 (cmdline (or (cdr (assq :cmdline params)) ""))
-	 (full-body (org-babel-expand-body:generic body params)))
-    (with-temp-file src-file (insert full-body))
-    (org-babel-eval
-     (concat org-babel-java-compiler " " cmpflag " " src-file) "")
-    ;; created package-name directories if missing
-    (unless (or (not packagename) (file-exists-p packagename))
-      (make-directory packagename 'parents))
-    (let ((results (org-babel-eval (concat org-babel-java-command
-                                           " " cmdline " " classname) "")))
-      (org-babel-reassemble-table
-       (org-babel-result-cond (cdr (assq :result-params params))
-	 (org-babel-read results)
-         (let ((tmp-file (org-babel-temp-file "c-")))
-           (with-temp-file tmp-file (insert results))
-           (org-babel-import-elisp-from-file tmp-file)))
-       (org-babel-pick-name
-        (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-       (org-babel-pick-name
-        (cdr (assq :rowname-names params)) (cdr (assq :rownames params)))))))
-
-(provide 'ob-java)
-
-
-
-;;; ob-java.el ends here
diff --git a/elpa/org-9.1.14/ob-java.elc b/elpa/org-9.1.14/ob-java.elc
deleted file mode 100644
index 67f9e10..0000000
--- a/elpa/org-9.1.14/ob-java.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-js.el b/elpa/org-9.1.14/ob-js.el
deleted file mode 100644
index 38c8c39..0000000
--- a/elpa/org-9.1.14/ob-js.el
+++ /dev/null
@@ -1,164 +0,0 @@
-;;; ob-js.el --- Babel Functions for Javascript      -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research, js
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Now working with SBCL for both session and external evaluation.
-;;
-;; This certainly isn't optimally robust, but it seems to be working
-;; for the basic use cases.
-
-;;; Requirements:
-
-;; - a non-browser javascript engine such as node.js http://nodejs.org/
-;;   or mozrepl http://wiki.github.com/bard/mozrepl/
-;;
-;; - for session based evaluation mozrepl and moz.el are required see
-;;   http://wiki.github.com/bard/mozrepl/emacs-integration for
-;;   configuration instructions
-
-;;; Code:
-(require 'ob)
-
-(declare-function run-mozilla "ext:moz" (arg))
-
-(defvar org-babel-default-header-args:js '()
-  "Default header arguments for js code blocks.")
-
-(defvar org-babel-js-eoe "org-babel-js-eoe"
-  "String to indicate that evaluation has completed.")
-
-(defcustom org-babel-js-cmd "node"
-  "Name of command used to evaluate js blocks."
-  :group 'org-babel
-  :version "24.1"
-  :type 'string)
-
-(defvar org-babel-js-function-wrapper
-  "require('sys').print(require('sys').inspect(function(){\n%s\n}()));"
-  "Javascript code to print value of body.")
-
-(defun org-babel-execute:js (body params)
-  "Execute a block of Javascript code with org-babel.
-This function is called by `org-babel-execute-src-block'"
-  (let* ((org-babel-js-cmd (or (cdr (assq :cmd params)) org-babel-js-cmd))
-         (result-type (cdr (assq :result-type params)))
-         (full-body (org-babel-expand-body:generic
-		     body params (org-babel-variable-assignments:js params)))
-	 (result (if (not (string= (cdr (assq :session params)) "none"))
-		     ;; session evaluation
-		     (let ((session (org-babel-prep-session:js
-				     (cdr (assq :session params)) params)))
-		       (nth 1
-			    (org-babel-comint-with-output
-				(session (format "%S" org-babel-js-eoe) t body)
-			      (mapc
-			       (lambda (line)
-				 (insert (org-babel-chomp line))
-				 (comint-send-input nil t))
-			       (list body (format "%S" org-babel-js-eoe))))))
-		   ;; external evaluation
-		   (let ((script-file (org-babel-temp-file "js-script-")))
-		     (with-temp-file script-file
-		       (insert
-			;; return the value or the output
-			(if (string= result-type "value")
-			    (format org-babel-js-function-wrapper full-body)
-			  full-body)))
-		     (org-babel-eval
-		      (format "%s %s" org-babel-js-cmd
-			      (org-babel-process-file-name script-file)) "")))))
-    (org-babel-result-cond (cdr (assq :result-params params))
-      result (org-babel-js-read result))))
-
-(defun org-babel-js-read (results)
-  "Convert RESULTS into an appropriate elisp value.
-If RESULTS look like a table, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
-  (org-babel-read
-   (if (and (stringp results)
-	    (string-prefix-p "[" results)
-	    (string-suffix-p "]" results))
-       (org-babel-read
-        (concat "'"
-                (replace-regexp-in-string
-                 "\\[" "(" (replace-regexp-in-string
-                            "\\]" ")" (replace-regexp-in-string
-                                       ",[[:space:]]" " "
-				       (replace-regexp-in-string
-					"'" "\"" results))))))
-     results)))
-
-(defun org-babel-js-var-to-js (var)
-  "Convert VAR into a js variable.
-Convert an elisp value into a string of js source code
-specifying a variable of the same value."
-  (if (listp var)
-      (concat "[" (mapconcat #'org-babel-js-var-to-js var ", ") "]")
-    (replace-regexp-in-string "\n" "\\\\n" (format "%S" var))))
-
-(defun org-babel-prep-session:js (session params)
-  "Prepare SESSION according to the header arguments specified in PARAMS."
-  (let* ((session (org-babel-js-initiate-session session))
-	 (var-lines (org-babel-variable-assignments:js params)))
-    (when session
-      (org-babel-comint-in-buffer session
-	(sit-for .5) (goto-char (point-max))
-	(mapc (lambda (var)
-		(insert var) (comint-send-input nil t)
-		(org-babel-comint-wait-for-output session)
-		(sit-for .1) (goto-char (point-max))) var-lines)))
-    session))
-
-(defun org-babel-variable-assignments:js (params)
-  "Return list of Javascript statements assigning the block's variables."
-  (mapcar
-   (lambda (pair) (format "var %s=%s;"
-			  (car pair) (org-babel-js-var-to-js (cdr pair))))
-   (org-babel--get-vars params)))
-
-(defun org-babel-js-initiate-session (&optional session)
-  "If there is not a current inferior-process-buffer in SESSION
-then create.  Return the initialized session."
-  (unless (string= session "none")
-    (cond
-     ((string= "mozrepl" org-babel-js-cmd)
-      (require 'moz)
-      (let ((session-buffer (save-window-excursion
-			      (run-mozilla nil)
-			      (rename-buffer session)
-			      (current-buffer))))
-	(if (org-babel-comint-buffer-livep session-buffer)
-	    (progn (sit-for .25) session-buffer)
-	  (sit-for .5)
-	  (org-babel-js-initiate-session session))))
-     ((string= "node" org-babel-js-cmd )
-      (error "Session evaluation with node.js is not supported"))
-     (t
-      (error "Sessions are only supported with mozrepl add \":cmd mozrepl\"")))))
-
-(provide 'ob-js)
-
-
-
-;;; ob-js.el ends here
diff --git a/elpa/org-9.1.14/ob-js.elc b/elpa/org-9.1.14/ob-js.elc
deleted file mode 100644
index 8c57acd..0000000
--- a/elpa/org-9.1.14/ob-js.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-keys.el b/elpa/org-9.1.14/ob-keys.el
deleted file mode 100644
index fc96df4..0000000
--- a/elpa/org-9.1.14/ob-keys.el
+++ /dev/null
@@ -1,106 +0,0 @@
-;;; ob-keys.el --- Key Bindings for Babel            -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Add Org Babel keybindings to the Org mode keymap for exposing
-;; Org Babel functions.  These will all share a common prefix.  See
-;; the value of `org-babel-key-bindings' for a list of interactive
-;; functions and their associated keys.
-
-;;; Code:
-(require 'ob-core)
-
-(defvar org-babel-key-prefix "\C-c\C-v"
-  "The key prefix for Babel interactive key-bindings.
-See `org-babel-key-bindings' for the list of interactive babel
-functions which are assigned key bindings, and see
-`org-babel-map' for the actual babel keymap.")
-
-(defvar org-babel-map (make-sparse-keymap)
-  "The keymap for interactive Babel functions.")
-
-;;;###autoload
-(defun org-babel-describe-bindings ()
-  "Describe all keybindings behind `org-babel-key-prefix'."
-  (interactive)
-  (describe-bindings org-babel-key-prefix))
-
-(defvar org-babel-key-bindings
-  '(("p" . org-babel-previous-src-block)
-    ("\C-p" . org-babel-previous-src-block)
-    ("n" . org-babel-next-src-block)
-    ("\C-n" . org-babel-next-src-block)
-    ("e" . org-babel-execute-maybe)
-    ("\C-e" . org-babel-execute-maybe)
-    ("o" . org-babel-open-src-block-result)
-    ("\C-o" . org-babel-open-src-block-result)
-    ("\C-v" . org-babel-expand-src-block)
-    ("v" . org-babel-expand-src-block)
-    ("u" . org-babel-goto-src-block-head)
-    ("\C-u" . org-babel-goto-src-block-head)
-    ("g" . org-babel-goto-named-src-block)
-    ("r" . org-babel-goto-named-result)
-    ("\C-r" . org-babel-goto-named-result)
-    ("\C-b" . org-babel-execute-buffer)
-    ("b" . org-babel-execute-buffer)
-    ("\C-s" . org-babel-execute-subtree)
-    ("s" . org-babel-execute-subtree)
-    ("\C-d" . org-babel-demarcate-block)
-    ("d" . org-babel-demarcate-block)
-    ("\C-t" . org-babel-tangle)
-    ("t" . org-babel-tangle)
-    ("\C-f" . org-babel-tangle-file)
-    ("f" . org-babel-tangle-file)
-    ("\C-c" . org-babel-check-src-block)
-    ("c" . org-babel-check-src-block)
-    ("\C-j" . org-babel-insert-header-arg)
-    ("j" . org-babel-insert-header-arg)
-    ("\C-l" . org-babel-load-in-session)
-    ("l" . org-babel-load-in-session)
-    ("\C-i" . org-babel-lob-ingest)
-    ("i" . org-babel-lob-ingest)
-    ("\C-I" . org-babel-view-src-block-info)
-    ("I" . org-babel-view-src-block-info)
-    ("\C-z" . org-babel-switch-to-session)
-    ("z" . org-babel-switch-to-session-with-code)
-    ("\C-a" . org-babel-sha1-hash)
-    ("a" . org-babel-sha1-hash)
-    ("h" . org-babel-describe-bindings)
-    ("\C-x" . org-babel-do-key-sequence-in-edit-buffer)
-    ("x" . org-babel-do-key-sequence-in-edit-buffer)
-    ("k" . org-babel-remove-result-one-or-many)
-    ("\C-\M-h" . org-babel-mark-block))
-  "Alist of key bindings and interactive Babel functions.
-This list associates interactive Babel functions
-with keys.  Each element of this list will add an entry to the
-`org-babel-map' using the letter key which is the `car' of the
-a-list placed behind the generic `org-babel-key-prefix'.")
-
-(provide 'ob-keys)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ob-keys.el ends here
diff --git a/elpa/org-9.1.14/ob-keys.elc b/elpa/org-9.1.14/ob-keys.elc
deleted file mode 100644
index 2d59447..0000000
--- a/elpa/org-9.1.14/ob-keys.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-latex.el b/elpa/org-9.1.14/ob-latex.el
deleted file mode 100644
index 6a963e5..0000000
--- a/elpa/org-9.1.14/ob-latex.el
+++ /dev/null
@@ -1,226 +0,0 @@
-;;; ob-latex.el --- Babel Functions for LaTeX        -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating LaTeX source code.
-;;
-;; Currently on evaluation this returns raw LaTeX code, unless a :file
-;; header argument is given in which case small png or pdf files will
-;; be created directly form the latex source code.
-
-;;; Code:
-(require 'ob)
-
-(declare-function org-create-formula-image "org" (string tofile options buffer &optional type))
-(declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
-(declare-function org-latex-guess-inputenc "ox-latex" (header))
-(declare-function org-splice-latex-header "org" (tpl def-pkg pkg snippets-p &optional extra))
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("latex" . "tex"))
-
-(defvar org-format-latex-header)	  ; From org.el
-(defvar org-format-latex-options)	  ; From org.el
-(defvar org-latex-default-packages-alist) ; From org.el
-(defvar org-latex-packages-alist)	  ; From org.el
-
-(defvar org-babel-default-header-args:latex
-  '((:results . "latex") (:exports . "results"))
-  "Default arguments to use when evaluating a LaTeX source block.")
-
-(defconst org-babel-header-args:latex
-  '((border	  . :any)
-    (fit          . :any)
-    (imagemagick  . ((nil t)))
-    (iminoptions  . :any)
-    (imoutoptions . :any)
-    (packages     . :any)
-    (pdfheight    . :any)
-    (pdfpng       . :any)
-    (pdfwidth     . :any)
-    (headers      . :any)
-    (packages     . :any)
-    (buffer       . ((yes no))))
-  "LaTeX-specific header arguments.")
-
-(defcustom org-babel-latex-htlatex "htlatex"
-  "The htlatex command to enable conversion of latex to SVG or HTML."
-  :group 'org-babel
-  :type 'string)
-
-(defcustom org-babel-latex-htlatex-packages
-  '("[usenames]{color}" "{tikz}" "{color}" "{listings}" "{amsmath}")
-  "Packages to use for htlatex export."
-  :group 'org-babel
-  :type '(repeat (string)))
-
-(defun org-babel-expand-body:latex (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (mapc (lambda (pair) ;; replace variables
-          (setq body
-                (replace-regexp-in-string
-                 (regexp-quote (format "%S" (car pair)))
-                 (if (stringp (cdr pair))
-                     (cdr pair) (format "%S" (cdr pair)))
-                 body))) (org-babel--get-vars params))
-  (org-trim body))
-
-(defun org-babel-execute:latex (body params)
-  "Execute a block of Latex code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (setq body (org-babel-expand-body:latex body params))
-  (if (cdr (assq :file params))
-      (let* ((out-file (cdr (assq :file params)))
-	     (extension (file-name-extension out-file))
-	     (tex-file (org-babel-temp-file "latex-" ".tex"))
-	     (border (cdr (assq :border params)))
-	     (imagemagick (cdr (assq :imagemagick params)))
-	     (im-in-options (cdr (assq :iminoptions params)))
-	     (im-out-options (cdr (assq :imoutoptions params)))
-	     (fit (or (cdr (assq :fit params)) border))
-	     (height (and fit (cdr (assq :pdfheight params))))
-	     (width (and fit (cdr (assq :pdfwidth params))))
-	     (headers (cdr (assq :headers params)))
-	     (in-buffer (not (string= "no" (cdr (assq :buffer params)))))
-	     (org-latex-packages-alist
-	      (append (cdr (assq :packages params)) org-latex-packages-alist)))
-        (cond
-         ((and (string-suffix-p ".png" out-file) (not imagemagick))
-          (org-create-formula-image
-           body out-file org-format-latex-options in-buffer))
-         ((string-suffix-p ".tikz" out-file)
-	  (when (file-exists-p out-file) (delete-file out-file))
-	  (with-temp-file out-file
-	    (insert body)))
-	 ((and (or (string= "svg" extension)
-		   (string= "html" extension))
-	       (executable-find org-babel-latex-htlatex))
-	  ;; TODO: this is a very different way of generating the
-	  ;; frame latex document than in the pdf case.  Ideally, both
-	  ;; would be unified.  This would prevent bugs creeping in
-	  ;; such as the one fixed on Aug 16 2014 whereby :headers was
-	  ;; not included in the SVG/HTML case.
-	  (with-temp-file tex-file
-	    (insert (concat
-		     "\\documentclass[preview]{standalone}
-\\def\\pgfsysdriver{pgfsys-tex4ht.def}
-"
-		     (mapconcat (lambda (pkg)
-				  (concat "\\usepackage" pkg))
-				org-babel-latex-htlatex-packages
-				"\n")
-		     (if headers
-			 (concat "\n"
-				 (if (listp headers)
-				     (mapconcat #'identity headers "\n")
-				   headers) "\n")
-		       "")
-		     "\\begin{document}"
-		     body
-		     "\\end{document}")))
-	  (when (file-exists-p out-file) (delete-file out-file))
-	  (let ((default-directory (file-name-directory tex-file)))
-	    (shell-command (format "%s %s" org-babel-latex-htlatex tex-file)))
-	  (cond
-	   ((file-exists-p (concat (file-name-sans-extension tex-file) "-1.svg"))
-	    (if (string-suffix-p ".svg" out-file)
-		(progn
-		  (shell-command "pwd")
-		  (shell-command (format "mv %s %s"
-					 (concat (file-name-sans-extension tex-file) "-1.svg")
-					 out-file)))
-	      (error "SVG file produced but HTML file requested")))
-	   ((file-exists-p (concat (file-name-sans-extension tex-file) ".html"))
-	    (if (string-suffix-p ".html" out-file)
-		(shell-command "mv %s %s"
-			       (concat (file-name-sans-extension tex-file)
-				       ".html")
-			       out-file)
-	      (error "HTML file produced but SVG file requested")))))
-	 ((or (string= "pdf" extension) imagemagick)
-	  (with-temp-file tex-file
-	    (require 'ox-latex)
-	    (insert
-	     (org-latex-guess-inputenc
-	      (org-splice-latex-header
-	       org-format-latex-header
-	       (delq
-		nil
-		(mapcar
-		 (lambda (el)
-		   (unless (and (listp el) (string= "hyperref" (cadr el)))
-		     el))
-		 org-latex-default-packages-alist))
-	       org-latex-packages-alist
-	       nil))
-	     (if fit "\n\\usepackage[active, tightpage]{preview}\n" "")
-	     (if border (format "\\setlength{\\PreviewBorder}{%s}" border) "")
-	     (if height (concat "\n" (format "\\pdfpageheight %s" height)) "")
-	     (if width  (concat "\n" (format "\\pdfpagewidth %s" width))   "")
-	     (if headers
-		 (concat "\n"
-			 (if (listp headers)
-			     (mapconcat #'identity headers "\n")
-			   headers) "\n")
-	       "")
-	     (if fit
-		 (concat "\n\\begin{document}\n\\begin{preview}\n" body
-			 "\n\\end{preview}\n\\end{document}\n")
-	       (concat "\n\\begin{document}\n" body "\n\\end{document}\n"))))
-          (when (file-exists-p out-file) (delete-file out-file))
-	  (let ((transient-pdf-file (org-babel-latex-tex-to-pdf tex-file)))
-	    (cond
-	     ((string= "pdf" extension)
-	      (rename-file transient-pdf-file out-file))
-	     (imagemagick
-	      (org-babel-latex-convert-pdf
-	       transient-pdf-file out-file im-in-options im-out-options)
-	      (when (file-exists-p transient-pdf-file)
-		(delete-file transient-pdf-file)))
-	     (t
-	      (error "Can not create %s files, please specify a .png or .pdf file or try the :imagemagick header argument"
-		     extension))))))
-        nil) ;; signal that output has already been written to file
-    body))
-
-(defun org-babel-latex-convert-pdf (pdffile out-file im-in-options im-out-options)
-  "Generate a file from a pdf file using imagemagick."
-  (let ((cmd (concat "convert " im-in-options " " pdffile " "
-		     im-out-options " " out-file)))
-    (message "Converting pdffile file %s..." cmd)
-    (shell-command cmd)))
-
-(defun org-babel-latex-tex-to-pdf (file)
-  "Generate a pdf file according to the contents FILE."
-  (require 'ox-latex)
-  (org-latex-compile file))
-
-(defun org-babel-prep-session:latex (_session _params)
-  "Return an error because LaTeX doesn't support sessions."
-  (error "LaTeX does not support sessions"))
-
-
-(provide 'ob-latex)
-;;; ob-latex.el ends here
diff --git a/elpa/org-9.1.14/ob-latex.elc b/elpa/org-9.1.14/ob-latex.elc
deleted file mode 100644
index 41a884c..0000000
--- a/elpa/org-9.1.14/ob-latex.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-ledger.el b/elpa/org-9.1.14/ob-ledger.el
deleted file mode 100644
index 2a13314..0000000
--- a/elpa/org-9.1.14/ob-ledger.el
+++ /dev/null
@@ -1,70 +0,0 @@
-;;; ob-ledger.el --- Babel Functions for Ledger      -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Eric S Fraga
-;; Keywords: literate programming, reproducible research, accounting
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating ledger entries.
-;;
-;; This differs from most standard languages in that
-;;
-;; 1) there is no such thing as a "session" in ledger
-;;
-;; 2) we are generally only going to return output from the ledger program
-;;
-;; 3) we are adding the "cmdline" header argument
-;;
-;; 4) there are no variables
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-default-header-args:ledger
-  '((:results . "output") (:cmdline . "bal"))
-  "Default arguments to use when evaluating a ledger source block.")
-
-(defun org-babel-execute:ledger (body params)
-  "Execute a block of Ledger entries with org-babel.  This function is
-called by `org-babel-execute-src-block'."
-  (message "executing Ledger source code block")
-  (let ((cmdline (cdr (assq :cmdline params)))
-        (in-file (org-babel-temp-file "ledger-"))
-	(out-file (org-babel-temp-file "ledger-output-")))
-    (with-temp-file in-file (insert body))
-    (message "%s" (concat "ledger"
-			  " -f " (org-babel-process-file-name in-file)
-			  " " cmdline))
-    (with-output-to-string
-      (shell-command (concat "ledger"
-			     " -f " (org-babel-process-file-name in-file)
-			     " " cmdline
-			     " > " (org-babel-process-file-name out-file))))
-    (with-temp-buffer (insert-file-contents out-file) (buffer-string))))
-
-(defun org-babel-prep-session:ledger (_session _params)
-  (error "Ledger does not support sessions"))
-
-(provide 'ob-ledger)
-
-
-
-;;; ob-ledger.el ends here
diff --git a/elpa/org-9.1.14/ob-ledger.elc b/elpa/org-9.1.14/ob-ledger.elc
deleted file mode 100644
index 47b0ae0..0000000
--- a/elpa/org-9.1.14/ob-ledger.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-lilypond.el b/elpa/org-9.1.14/ob-lilypond.el
deleted file mode 100644
index 3d3cc07..0000000
--- a/elpa/org-9.1.14/ob-lilypond.el
+++ /dev/null
@@ -1,412 +0,0 @@
-;;; ob-lilypond.el --- Babel Functions for Lilypond  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Martyn Jago
-;; Keywords: babel language, literate programming
-;; Homepage: https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-lilypond.html
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Installation, ob-lilypond documentation, and examples are available at
-;; https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-lilypond.html
-;;
-;; Lilypond documentation can be found at
-;; http://lilypond.org/manuals.html
-;;
-;; This depends on epstopdf --- See http://www.ctan.org/pkg/epstopdf.
-
-;;; Code:
-(require 'ob)
-(require 'outline)
-(defalias 'lilypond-mode 'LilyPond-mode)
-
-(add-to-list 'org-babel-tangle-lang-exts '("LilyPond" . "ly"))
-
-(defvar org-babel-default-header-args:lilypond '()
-  "Default header arguments for lilypond code blocks.
-NOTE: The arguments are determined at lilypond compile time.
-See (org-babel-lilypond-set-header-args)")
-
-(defvar org-babel-lilypond-compile-post-tangle t
-  "Following the org-babel-tangle (C-c C-v t) command,
-org-babel-lilypond-compile-post-tangle determines whether ob-lilypond should
-automatically attempt to compile the resultant tangled file.
-If the value is nil, no automated compilation takes place.
-Default value is t")
-
-(defvar org-babel-lilypond-display-pdf-post-tangle t
-  "Following a successful LilyPond compilation
-org-babel-lilypond-display-pdf-post-tangle determines whether to automate the
-drawing / redrawing of the resultant pdf.  If the value is nil,
-the pdf is not automatically redrawn.  Default value is t")
-
-(defvar org-babel-lilypond-play-midi-post-tangle t
-  "Following a successful LilyPond compilation
-org-babel-lilypond-play-midi-post-tangle determines whether to automate the
-playing of the resultant midi file.  If the value is nil,
-the midi file is not automatically played.  Default value is t")
-
-(defvar org-babel-lilypond-ly-command ""
-  "Command to execute lilypond on your system.
-Do not set it directly.  Customize `org-babel-lilypond-commands' instead.")
-(defvar org-babel-lilypond-pdf-command ""
-  "Command to show a PDF file on your system.
-Do not set it directly.  Customize `org-babel-lilypond-commands' instead.")
-(defvar org-babel-lilypond-midi-command ""
-  "Command to play a MIDI file on your system.
-Do not set it directly.  Customize `org-babel-lilypond-commands' instead.")
-(defcustom org-babel-lilypond-commands
-  (cond
-   ((eq system-type 'darwin)
-    '("/Applications/lilypond.app/Contents/Resources/bin/lilypond" "open" "open"))
-   ((eq system-type 'windows-nt)
-    '("lilypond" "" ""))
-   (t
-    '("lilypond" "xdg-open" "xdg-open")))
-  "Commands to run lilypond and view or play the results.
-These should be executables that take a filename as an argument.
-On some system it is possible to specify the filename directly
-and the viewer or player will be determined from the file type;
-you can leave the string empty on this case."
-  :group 'org-babel
-  :type '(list
-	  (string :tag "Lilypond   ")
-	  (string :tag "PDF Viewer ")
-	  (string :tag "MIDI Player"))
-  :version "24.4"
-  :package-version '(Org . "8.2.7")
-  :set
-  (lambda (_symbol value)
-    (setq
-     org-babel-lilypond-ly-command   (nth 0 value)
-     org-babel-lilypond-pdf-command  (nth 1 value)
-     org-babel-lilypond-midi-command (nth 2 value))))
-
-(defvar org-babel-lilypond-gen-png nil
-  "Non-nil means image generation (PNG) is turned on by default.")
-
-(defvar org-babel-lilypond-gen-svg nil
-  "Non-nil means image generation (SVG) is be turned on by default.")
-
-(defvar org-babel-lilypond-gen-html nil
-  "Non-nil means HTML generation is turned on by default.")
-
-(defvar org-babel-lilypond-gen-pdf nil
-  "Non-nil means PDF generation is be turned on by default.")
-
-(defvar org-babel-lilypond-use-eps nil
-  "Non-nil forces the compiler to use the EPS backend.")
-
-(defvar org-babel-lilypond-arrange-mode nil
-  "Non-nil turns Arrange mode on.
-In Arrange mode the following settings are altered from default:
-:tangle yes,    :noweb yes
-:results silent :comments yes.
-In addition lilypond block execution causes tangling of all lilypond
-blocks.")
-
-(defun org-babel-expand-body:lilypond (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let ((vars (org-babel--get-vars params)))
-    (mapc
-     (lambda (pair)
-       (let ((name (symbol-name (car pair)))
-	     (value (cdr pair)))
-	 (setq body
-	       (replace-regexp-in-string
-		(concat "$" (regexp-quote name))
-		(if (stringp value) value (format "%S" value))
-		body))))
-     vars)
-    body))
-
-(defun org-babel-execute:lilypond (body params)
-  "This function is called by `org-babel-execute-src-block'.
-Depending on whether we are in arrange mode either:
-1. Attempt to execute lilypond block according to header settings
-  (This is the default basic mode)
-2. Tangle all lilypond blocks and process the result (arrange mode)"
-  (org-babel-lilypond-set-header-args org-babel-lilypond-arrange-mode)
-  (if org-babel-lilypond-arrange-mode
-      (org-babel-lilypond-tangle)
-    (org-babel-lilypond-process-basic body params)))
-
-(defun org-babel-lilypond-tangle ()
-  "ob-lilypond specific tangle, attempts to invoke
-=ly-execute-tangled-ly= if tangle is successful.  Also passes
-specific arguments to =org-babel-tangle="
-  (interactive)
-  (if (org-babel-tangle nil "yes" "lilypond")
-      (org-babel-lilypond-execute-tangled-ly) nil))
-
-(defun org-babel-lilypond-process-basic (body params)
-  "Execute a lilypond block in basic mode."
-  (let* ((out-file (cdr (assq :file params)))
-	 (cmdline (or (cdr (assq :cmdline params))
-		      ""))
-	 (in-file (org-babel-temp-file "lilypond-")))
-
-    (with-temp-file in-file
-      (insert (org-babel-expand-body:generic body params)))
-    (org-babel-eval
-     (concat
-      org-babel-lilypond-ly-command
-      " -dbackend=eps "
-      "-dno-gs-load-fonts "
-      "-dinclude-eps-fonts "
-      (or (cdr (assoc (file-name-extension out-file)
-		      '(("pdf" . "--pdf ")
-			("ps" . "--ps ")
-			("png" . "--png "))))
-	  "--png ")
-      "--output="
-      (file-name-sans-extension out-file)
-      " "
-      cmdline
-      in-file) "")) nil)
-
-(defun org-babel-prep-session:lilypond (_session _params)
-  "Return an error because LilyPond exporter does not support sessions."
-  (error "Sorry, LilyPond does not currently support sessions!"))
-
-(defun org-babel-lilypond-execute-tangled-ly ()
-  "Compile result of block tangle with lilypond.
-If error in compilation, attempt to mark the error in lilypond org file"
-  (when org-babel-lilypond-compile-post-tangle
-    (let ((org-babel-lilypond-tangled-file (org-babel-lilypond-switch-extension
-                            (buffer-file-name) ".lilypond"))
-          (org-babel-lilypond-temp-file (org-babel-lilypond-switch-extension
-                         (buffer-file-name) ".ly")))
-      (if (not (file-exists-p org-babel-lilypond-tangled-file))
-	  (error "Error: Tangle Failed!")
-	(when (file-exists-p org-babel-lilypond-temp-file)
-	  (delete-file org-babel-lilypond-temp-file))
-	(rename-file org-babel-lilypond-tangled-file
-		     org-babel-lilypond-temp-file))
-      (switch-to-buffer-other-window "*lilypond*")
-      (erase-buffer)
-      (org-babel-lilypond-compile-lilyfile org-babel-lilypond-temp-file)
-      (goto-char (point-min))
-      (if (org-babel-lilypond-check-for-compile-error org-babel-lilypond-temp-file)
-	  (error "Error in Compilation!")
-	(other-window -1)
-	(org-babel-lilypond-attempt-to-open-pdf org-babel-lilypond-temp-file)
-	(org-babel-lilypond-attempt-to-play-midi org-babel-lilypond-temp-file)))))
-
-(defun org-babel-lilypond-compile-lilyfile (file-name &optional test)
-  "Compile lilypond file and check for compile errors
-FILE-NAME is full path to lilypond (.ly) file"
-  (message "Compiling LilyPond...")
-  (let ((arg-1 org-babel-lilypond-ly-command) ;program
-        (arg-2 nil)                    ;infile
-        (arg-3 "*lilypond*")           ;buffer
-	(arg-4 t)                      ;display
-	(arg-5 (if org-babel-lilypond-gen-png  "--png"  "")) ;&rest...
-	(arg-6 (if org-babel-lilypond-gen-html "--html" ""))
-        (arg-7 (if org-babel-lilypond-gen-pdf "--pdf" ""))
-        (arg-8 (if org-babel-lilypond-use-eps  "-dbackend=eps" ""))
-        (arg-9 (if org-babel-lilypond-gen-svg  "-dbackend=svg" ""))
-        (arg-10 (concat "--output=" (file-name-sans-extension file-name)))
-        (arg-11 file-name))
-    (if test
-        `(,arg-1 ,arg-2 ,arg-3 ,arg-4 ,arg-5 ,arg-6
-                 ,arg-7 ,arg-8 ,arg-9 ,arg-10 ,arg-11)
-      (call-process
-       arg-1 arg-2 arg-3 arg-4 arg-5 arg-6
-       arg-7 arg-8 arg-9 arg-10 arg-11))))
-
-(defun org-babel-lilypond-check-for-compile-error (file-name &optional test)
-  "Check for compile error.
-This is performed by parsing the *lilypond* buffer
-containing the output message from the compilation.
-FILE-NAME is full path to lilypond file.
-If TEST is t just return nil if no error found, and pass
-nil as file-name since it is unused in this context"
-  (let ((is-error (search-forward "error:" nil t)))
-    (if test
-	is-error
-      (when is-error
-	(org-babel-lilypond-process-compile-error file-name)))))
-
-(defun org-babel-lilypond-process-compile-error (file-name)
-  "Process the compilation error that has occurred.
-FILE-NAME is full path to lilypond file"
-  (let ((line-num (org-babel-lilypond-parse-line-num)))
-    (let ((error-lines (org-babel-lilypond-parse-error-line file-name line-num)))
-      (org-babel-lilypond-mark-error-line file-name error-lines)
-      (error "Error: Compilation Failed!"))))
-
-(defun org-babel-lilypond-mark-error-line (file-name line)
-  "Mark the erroneous lines in the lilypond org buffer.
-FILE-NAME is full path to lilypond file.
-LINE is the erroneous line"
-  (switch-to-buffer-other-window
-   (concat (file-name-nondirectory
-            (org-babel-lilypond-switch-extension file-name ".org"))))
-  (let ((temp (point)))
-    (goto-char (point-min))
-    (setq case-fold-search nil)
-    (if (search-forward line nil t)
-        (progn
-          (outline-show-all)
-          (set-mark (point))
-          (goto-char (- (point) (length line))))
-      (goto-char temp))))
-
-(defun org-babel-lilypond-parse-line-num (&optional buffer)
-  "Extract error line number."
-  (when buffer (set-buffer buffer))
-  (let ((start
-         (and (search-backward ":" nil t)
-              (search-backward ":" nil t)
-              (search-backward ":" nil t)
-              (search-backward ":" nil t))))
-    (when start
-      (forward-char)
-      (let ((num (string-to-number
-		  (buffer-substring
-		   (+ 1 start)
-		   (- (search-forward ":" nil t) 1)))))
-	(and (numberp num) num)))))
-
-(defun org-babel-lilypond-parse-error-line (file-name lineNo)
-  "Extract the erroneous line from the tangled .ly file
-FILE-NAME is full path to lilypond file.
-LINENO is the number of the erroneous line"
-  (with-temp-buffer
-    (insert-file-contents (org-babel-lilypond-switch-extension file-name ".ly")
-			  nil nil nil t)
-    (if (> lineNo 0)
-	(progn
-	  (goto-char (point-min))
-	  (forward-line (- lineNo 1))
-	  (buffer-substring (point) (point-at-eol)))
-      nil)))
-
-(defun org-babel-lilypond-attempt-to-open-pdf (file-name &optional test)
-  "Attempt to display the generated pdf file
-FILE-NAME is full path to lilypond file
-If TEST is non-nil, the shell command is returned and is not run"
-  (when org-babel-lilypond-display-pdf-post-tangle
-    (let ((pdf-file (org-babel-lilypond-switch-extension file-name ".pdf")))
-      (if (file-exists-p pdf-file)
-          (let ((cmd-string
-                 (concat org-babel-lilypond-pdf-command " " pdf-file)))
-            (if test
-                cmd-string
-	      (start-process
-	       "\"Audition pdf\""
-	       "*lilypond*"
-	       org-babel-lilypond-pdf-command
-	       pdf-file)))
-	(message  "No pdf file generated so can't display!")))))
-
-(defun org-babel-lilypond-attempt-to-play-midi (file-name &optional test)
-  "Attempt to play the generated MIDI file
-FILE-NAME is full path to lilypond file
-If TEST is non-nil, the shell command is returned and is not run"
-  (when org-babel-lilypond-play-midi-post-tangle
-    (let ((midi-file (org-babel-lilypond-switch-extension file-name ".midi")))
-      (if (file-exists-p midi-file)
-          (let ((cmd-string
-                 (concat org-babel-lilypond-midi-command " " midi-file)))
-            (if test
-                cmd-string
-              (start-process
-               "\"Audition midi\""
-               "*lilypond*"
-               org-babel-lilypond-midi-command
-               midi-file)))
-        (message "No midi file generated so can't play!")))))
-
-(defun org-babel-lilypond-toggle-midi-play ()
-  "Toggle whether midi will be played following a successful compilation."
-  (interactive)
-  (setq org-babel-lilypond-play-midi-post-tangle
-        (not org-babel-lilypond-play-midi-post-tangle))
-  (message (concat "Post-Tangle MIDI play has been "
-                   (if org-babel-lilypond-play-midi-post-tangle
-                       "ENABLED." "DISABLED."))))
-
-(defun org-babel-lilypond-toggle-pdf-display ()
-  "Toggle whether pdf will be displayed following a successful compilation."
-  (interactive)
-  (setq org-babel-lilypond-display-pdf-post-tangle
-        (not org-babel-lilypond-display-pdf-post-tangle))
-  (message (concat "Post-Tangle PDF display has been "
-                   (if org-babel-lilypond-display-pdf-post-tangle
-                       "ENABLED." "DISABLED."))))
-
-(defun org-babel-lilypond-toggle-png-generation ()
-  "Toggle whether png image will be generated by compilation."
-  (interactive)
-  (setq org-babel-lilypond-gen-png (not org-babel-lilypond-gen-png))
-  (message (concat "PNG image generation has been "
-                   (if org-babel-lilypond-gen-png "ENABLED." "DISABLED."))))
-
-(defun org-babel-lilypond-toggle-html-generation ()
-  "Toggle whether html will be generated by compilation."
-  (interactive)
-  (setq org-babel-lilypond-gen-html (not org-babel-lilypond-gen-html))
-  (message (concat "HTML generation has been "
-                   (if org-babel-lilypond-gen-html "ENABLED." "DISABLED."))))
-
-(defun org-babel-lilypond-toggle-pdf-generation ()
-  "Toggle whether pdf will be generated by compilation."
-  (interactive)
-  (setq org-babel-lilypond-gen-pdf (not org-babel-lilypond-gen-pdf))
-  (message (concat "PDF generation has been "
-                   (if org-babel-lilypond-gen-pdf "ENABLED." "DISABLED."))))
-
-(defun org-babel-lilypond-toggle-arrange-mode ()
-  "Toggle whether in Arrange mode or Basic mode."
-  (interactive)
-  (setq org-babel-lilypond-arrange-mode
-        (not org-babel-lilypond-arrange-mode))
-  (message (concat "Arrange mode has been "
-                   (if org-babel-lilypond-arrange-mode "ENABLED." "DISABLED."))))
-
-(defun org-babel-lilypond-switch-extension (file-name ext)
-  "Utility command to swap current FILE-NAME extension with EXT"
-  (concat (file-name-sans-extension
-           file-name) ext))
-
-(defun org-babel-lilypond-get-header-args (mode)
-  "Default arguments to use when evaluating a lilypond
-source block.  These depend upon whether we are in arrange
-mode i.e.  ARRANGE-MODE is t"
-  (cond (mode
-         '((:tangle . "yes")
-           (:noweb . "yes")
-           (:results . "silent")
-           (:cache . "yes")
-           (:comments . "yes")))
-        (t
-         '((:results . "file")
-           (:exports . "results")))))
-
-(defun org-babel-lilypond-set-header-args (mode)
-  "Set org-babel-default-header-args:lilypond
-dependent on ORG-BABEL-LILYPOND-ARRANGE-MODE"
-  (setq org-babel-default-header-args:lilypond
-        (org-babel-lilypond-get-header-args mode)))
-
-(provide 'ob-lilypond)
-
-;;; ob-lilypond.el ends here
diff --git a/elpa/org-9.1.14/ob-lilypond.elc b/elpa/org-9.1.14/ob-lilypond.elc
deleted file mode 100644
index 6788965..0000000
--- a/elpa/org-9.1.14/ob-lilypond.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-lisp.el b/elpa/org-9.1.14/ob-lisp.el
deleted file mode 100644
index b846138..0000000
--- a/elpa/org-9.1.14/ob-lisp.el
+++ /dev/null
@@ -1,127 +0,0 @@
-;;; ob-lisp.el --- Babel Functions for Common Lisp   -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Authors: Joel Boehland
-;;	 Eric Schulte
-;;	 David T. O'Toole <dto@gnu.org>
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;;; Support for evaluating Common Lisp code, relies on SLY or SLIME
-;;; for all eval.
-
-;;; Requirements:
-
-;; Requires SLY (Sylvester the Cat's Common Lisp IDE) or SLIME
-;; (Superior Lisp Interaction Mode for Emacs).  See:
-;; - https://github.com/capitaomorte/sly
-;; - http://common-lisp.net/project/slime/
-
-;;; Code:
-(require 'ob)
-
-(declare-function sly-eval "ext:sly" (sexp &optional package))
-(declare-function slime-eval "ext:slime" (sexp &optional package))
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("lisp" . "lisp"))
-
-(defvar org-babel-default-header-args:lisp '())
-(defvar org-babel-header-args:lisp '((package . :any)))
-
-(defcustom org-babel-lisp-eval-fn #'slime-eval
-  "The function to be called to evaluate code on the Lisp side.
-Valid values include `slime-eval' and `sly-eval'."
-  :group 'org-babel
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type 'symbol)
-
-(defcustom org-babel-lisp-dir-fmt
-  "(let ((*default-pathname-defaults* #P%S\n)) %%s\n)"
-  "Format string used to wrap code bodies to set the current directory.
-For example a value of \"(progn ;; %s\\n   %%s)\" would ignore the
-current directory string."
-  :group 'org-babel
-  :version "24.1"
-  :type 'string)
-
-(defun org-babel-expand-body:lisp (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let* ((vars (org-babel--get-vars params))
-	 (result-params (cdr (assq :result-params params)))
-	 (print-level nil) (print-length nil)
-	 (body (if (null vars) (org-trim body)
-		 (concat "(let ("
-			 (mapconcat
-			  (lambda (var)
-			    (format "(%S (quote %S))" (car var) (cdr var)))
-			  vars "\n      ")
-			 ")\n" body ")"))))
-    (if (or (member "code" result-params)
-	    (member "pp" result-params))
-	(format "(pprint %s)" body)
-      body)))
-
-(defun org-babel-execute:lisp (body params)
-  "Execute a block of Common Lisp code with Babel.
-BODY is the contents of the block, as a string.  PARAMS is
-a property list containing the parameters of the block."
-  (require (pcase org-babel-lisp-eval-fn
-	     (`slime-eval 'slime)
-	     (`sly-eval 'sly)))
-  (org-babel-reassemble-table
-   (let ((result
-          (funcall (if (member "output" (cdr (assq :result-params params)))
-                       #'car #'cadr)
-                   (with-temp-buffer
-                     (insert (org-babel-expand-body:lisp body params))
-                     (funcall org-babel-lisp-eval-fn
-                              `(swank:eval-and-grab-output
-                                ,(let ((dir (if (assq :dir params)
-                                                (cdr (assq :dir params))
-                                              default-directory)))
-                                   (format
-                                    (if dir (format org-babel-lisp-dir-fmt dir)
-                                      "(progn %s\n)")
-                                    (buffer-substring-no-properties
-                                     (point-min) (point-max)))))
-                              (cdr (assq :package params)))))))
-     (org-babel-result-cond (cdr (assq :result-params params))
-       result
-       (condition-case nil
-           (read (org-babel-lisp-vector-to-list result))
-         (error result))))
-   (org-babel-pick-name (cdr (assq :colname-names params))
-			(cdr (assq :colnames params)))
-   (org-babel-pick-name (cdr (assq :rowname-names params))
-			(cdr (assq :rownames params)))))
-
-(defun org-babel-lisp-vector-to-list (results)
-  ;; TODO: better would be to replace #(...) with [...]
-  (replace-regexp-in-string "#(" "(" results))
-
-(provide 'ob-lisp)
-
-
-
-;;; ob-lisp.el ends here
diff --git a/elpa/org-9.1.14/ob-lisp.elc b/elpa/org-9.1.14/ob-lisp.elc
deleted file mode 100644
index 61ee9e5..0000000
--- a/elpa/org-9.1.14/ob-lisp.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-lob.el b/elpa/org-9.1.14/ob-lob.el
deleted file mode 100644
index 6af6bf0..0000000
--- a/elpa/org-9.1.14/ob-lob.el
+++ /dev/null
@@ -1,165 +0,0 @@
-;;; ob-lob.el --- Functions Supporting the Library of Babel -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Authors: Eric Schulte
-;;	 Dan Davison
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Code:
-(require 'cl-lib)
-(require 'ob-core)
-(require 'ob-table)
-
-(declare-function org-babel-ref-split-args "ob-ref" (arg-string))
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-context "org-element" (&optional element))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-
-(defvar org-babel-library-of-babel nil
-  "Library of source-code blocks.
-This is an association list.  Populate the library by calling
-`org-babel-lob-ingest' on files containing source blocks.")
-
-(defvar org-babel-default-lob-header-args '((:exports . "results"))
-  "Default header arguments to use when exporting Babel calls.
-By default, a Babel call inherits its arguments from the source
-block being called.  Header arguments defined in this variable
-take precedence over these.  It is useful for properties that
-should not be inherited from a source block.")
-
-(defun org-babel-lob-ingest (&optional file)
-  "Add all named source blocks defined in FILE to `org-babel-library-of-babel'."
-  (interactive "fFile: ")
-  (let ((lob-ingest-count 0))
-    (org-babel-map-src-blocks file
-      (let* ((info (org-babel-get-src-block-info 'light))
-	     (source-name (nth 4 info)))
-	(when source-name
-	  (setf (nth 1 info)
-		(if (org-babel-noweb-p (nth 2 info) :eval)
-		    (org-babel-expand-noweb-references info)
-		  (nth 1 info)))
-	  (let ((source (intern source-name)))
-	    (setq org-babel-library-of-babel
-		  (cons (cons source info)
-			(assq-delete-all source org-babel-library-of-babel))))
-	  (cl-incf lob-ingest-count))))
-    (message "%d src block%s added to Library of Babel"
-	     lob-ingest-count (if (> lob-ingest-count 1) "s" ""))
-    lob-ingest-count))
-
-;; Functions for executing lob one-liners.
-
-;;;###autoload
-(defun org-babel-lob-execute-maybe ()
-  "Execute a Library of Babel source block, if appropriate.
-Detect if this is context for a Library Of Babel source block and
-if so then run the appropriate source block from the Library."
-  (interactive)
-  (let ((info (org-babel-lob-get-info)))
-    (when info
-      (org-babel-execute-src-block nil info)
-      t)))
-
-(defun org-babel-lob--src-info (ref)
-  "Return internal representation for Babel data referenced as REF.
-REF is a string.  This function looks into the current document
-for a Babel call or source block.  If none is found, it looks
-after REF in the Library of Babel."
-  (let ((name ref)
-	(file nil))
-    ;; Extract the remote file, if specified in the reference.
-    (when (string-match "\\`\\(.+\\):\\(.+\\)\\'" ref)
-      (setq file (match-string 1 ref))
-      (setq name (match-string 2 ref)))
-    ;; During export, look into the pristine copy of the document
-    ;; being exported instead of the current one, which could miss
-    ;; some data.
-    (with-current-buffer (cond (file (find-file-noselect file t))
-			       (org-babel-exp-reference-buffer)
-			       (t (current-buffer)))
-      (org-with-point-at 1
-	(catch :found
-	  (let ((case-fold-search t)
-		(regexp (org-babel-named-data-regexp-for-name name)))
-	    (while (re-search-forward regexp nil t)
-	      (let ((element (org-element-at-point)))
-		(when (equal name (org-element-property :name element))
-		  (throw :found
-			 (pcase (org-element-type element)
-			   (`src-block (org-babel-get-src-block-info t element))
-			   (`babel-call (org-babel-lob-get-info element))
-			   ;; Non-executable data found.  Since names
-			   ;; are supposed to be unique throughout
-			   ;; a document, bail out.
-			   (_ nil))))))
-	    (cdr (assoc-string ref org-babel-library-of-babel))))))))
-
-;;;###autoload
-(defun org-babel-lob-get-info (&optional datum)
-  "Return internal representation for Library of Babel function call.
-
-Consider DATUM, when provided, or element at point otherwise.
-
-Return nil when not on an appropriate location.  Otherwise return
-a list compatible with `org-babel-get-src-block-info', which
-see."
-  (let* ((context (or datum (org-element-context)))
-	 (type (org-element-type context))
-	 (reference (org-element-property :call context)))
-    (when (memq type '(babel-call inline-babel-call))
-      (pcase (org-babel-lob--src-info reference)
-	(`(,language ,body ,header ,_ ,_ ,_ ,coderef)
-	 (let ((begin (org-element-property (if (eq type 'inline-babel-call)
-						:begin
-					      :post-affiliated)
-					    context)))
-	   (list language
-		 body
-		 (apply #'org-babel-merge-params
-			header
-			org-babel-default-lob-header-args
-			(append
-			 (org-with-wide-buffer
-			  (goto-char begin)
-			  (org-babel-params-from-properties language))
-			 (list
-			  (org-babel-parse-header-arguments
-			   (org-element-property :inside-header context))
-			  (let ((args (org-element-property :arguments context)))
-			    (and args
-				 (mapcar (lambda (ref) (cons :var ref))
-					 (org-babel-ref-split-args args))))
-			  (org-babel-parse-header-arguments
-			   (org-element-property :end-header context)))))
-		 nil
-		 (org-element-property :name context)
-		 begin
-		 coderef)))
-	(_ nil)))))
-
-(provide 'ob-lob)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ob-lob.el ends here
diff --git a/elpa/org-9.1.14/ob-lob.elc b/elpa/org-9.1.14/ob-lob.elc
deleted file mode 100644
index f411a47..0000000
--- a/elpa/org-9.1.14/ob-lob.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-lua.el b/elpa/org-9.1.14/ob-lua.el
deleted file mode 100644
index 6ae72c7..0000000
--- a/elpa/org-9.1.14/ob-lua.el
+++ /dev/null
@@ -1,403 +0,0 @@
-;;; ob-lua.el --- Org Babel functions for Lua evaluation -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2014, 2016-2018 Free Software Foundation, Inc.
-
-;; Authors: Dieter Schoen
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;; Requirements:
-;; for session support, lua-mode is needed.
-;; lua-mode is not part of GNU Emacs/orgmode, but can be obtained
-;; from marmalade or melpa.
-;; The source repository is here:
-;; https://github.com/immerrr/lua-mode
-
-;; However, sessions are not yet working.
-
-;; Org-Babel support for evaluating lua source code.
-
-;;; Code:
-(require 'ob)
-(require 'cl-lib)
-
-(declare-function org-remove-indentation "org" (code &optional n))
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function lua-shell "ext:lua-mode" (&optional argprompt))
-(declare-function lua-toggle-shells "ext:lua-mode" (arg))
-(declare-function run-lua "ext:lua" (cmd &optional dedicated show))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("lua" . "lua"))
-
-(defvar org-babel-default-header-args:lua '())
-
-(defcustom org-babel-lua-command "lua"
-  "Name of the command for executing Lua code."
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :group 'org-babel
-  :type 'string)
-
-(defcustom org-babel-lua-mode 'lua-mode
-  "Preferred lua mode for use in running lua interactively.
-This will typically be 'lua-mode."
-  :group 'org-babel
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'symbol)
-
-(defcustom org-babel-lua-hline-to "None"
-  "Replace hlines in incoming tables with this when translating to lua."
-  :group 'org-babel
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'string)
-
-(defcustom org-babel-lua-None-to 'hline
-  "Replace 'None' in lua tables with this before returning."
-  :group 'org-babel
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'symbol)
-
-(defun org-babel-execute:lua (body params)
-  "Execute a block of Lua code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((session (org-babel-lua-initiate-session
-		   (cdr (assq :session params))))
-         (result-params (cdr (assq :result-params params)))
-         (result-type (cdr (assq :result-type params)))
-	 (return-val (when (and (eq result-type 'value) (not session))
-		       (cdr (assq :return params))))
-	 (preamble (cdr (assq :preamble params)))
-         (full-body
-	  (org-babel-expand-body:generic
-	   (concat body (if return-val (format "\nreturn %s" return-val) ""))
-	   params (org-babel-variable-assignments:lua params)))
-         (result (org-babel-lua-evaluate
-		  session full-body result-type result-params preamble)))
-    (org-babel-reassemble-table
-     result
-     (org-babel-pick-name (cdr (assq :colname-names params))
-			  (cdr (assq :colnames params)))
-     (org-babel-pick-name (cdr (assq :rowname-names params))
-			  (cdr (assq :rownames params))))))
-
-(defun org-babel-prep-session:lua (session params)
-  "Prepare SESSION according to the header arguments in PARAMS.
-VARS contains resolved variable references"
-  (let* ((session (org-babel-lua-initiate-session session))
-	 (var-lines
-	  (org-babel-variable-assignments:lua params)))
-    (org-babel-comint-in-buffer session
-      (mapc (lambda (var)
-              (end-of-line 1) (insert var) (comint-send-input)
-              (org-babel-comint-wait-for-output session)) var-lines))
-    session))
-
-(defun org-babel-load-session:lua (session body params)
-  "Load BODY into SESSION."
-  (save-window-excursion
-    (let ((buffer (org-babel-prep-session:lua session params)))
-      (with-current-buffer buffer
-        (goto-char (process-mark (get-buffer-process (current-buffer))))
-        (insert (org-babel-chomp body)))
-      buffer)))
-
-;; helper functions
-
-(defun org-babel-variable-assignments:lua (params)
-  "Return a list of Lua statements assigning the block's variables."
-  (mapcar
-   (lambda (pair)
-     (format "%s=%s"
-	     (car pair)
-	     (org-babel-lua-var-to-lua (cdr pair))))
-   (org-babel--get-vars params)))
-
-(defun org-babel-lua-var-to-lua (var)
-  "Convert an elisp value to a lua variable.
-Convert an elisp value, VAR, into a string of lua source code
-specifying a variable of the same value."
-  (if (listp var)
-      (if (and (= 1 (length var)) (not (listp (car var))))
-          (org-babel-lua-var-to-lua (car var))
-        (if (and
-             (= 2 (length var))
-             (not (listp (car var))))
-            (concat
-             (substring-no-properties (car var))
-             "="
-             (org-babel-lua-var-to-lua (cdr var)))
-          (concat "{" (mapconcat #'org-babel-lua-var-to-lua var ", ") "}")))
-    (if (eq var 'hline)
-        org-babel-lua-hline-to
-      (format
-       (if (and (stringp var) (string-match "[\n\r]" var)) "\"\"%S\"\"" "%S")
-       (if (stringp var) (substring-no-properties var) var)))))
-
-(defun org-babel-lua-table-or-string (results)
-  "Convert RESULTS into an appropriate elisp value.
-If the results look like a list or tuple, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
-  (let ((res (org-babel-script-escape results)))
-    (if (listp res)
-        (mapcar (lambda (el) (if (eq el 'None)
-				 org-babel-lua-None-to el))
-                res)
-      res)))
-
-(defvar org-babel-lua-buffers '((:default . "*Lua*")))
-
-(defun org-babel-lua-session-buffer (session)
-  "Return the buffer associated with SESSION."
-  (cdr (assoc session org-babel-lua-buffers)))
-
-(defun org-babel-lua-with-earmuffs (session)
-  (let ((name (if (stringp session) session (format "%s" session))))
-    (if (and (string= "*" (substring name 0 1))
-	     (string= "*" (substring name (- (length name) 1))))
-	name
-      (format "*%s*" name))))
-
-(defun org-babel-lua-without-earmuffs (session)
-  (let ((name (if (stringp session) session (format "%s" session))))
-    (if (and (string= "*" (substring name 0 1))
-	     (string= "*" (substring name (- (length name) 1))))
-	(substring name 1 (- (length name) 1))
-      name)))
-
-(defvar lua-default-interpreter)
-(defvar lua-which-bufname)
-(defvar lua-shell-buffer-name)
-(defun org-babel-lua-initiate-session-by-key (&optional session)
-  "Initiate a lua session.
-If there is not a current inferior-process-buffer in SESSION
-then create.  Return the initialized session."
-  ;; (require org-babel-lua-mode)
-  (save-window-excursion
-    (let* ((session (if session (intern session) :default))
-           (lua-buffer (org-babel-lua-session-buffer session))
-	   ;; (cmd (if (member system-type '(cygwin windows-nt ms-dos))
-	   ;; 	    (concat org-babel-lua-command " -i")
-	   ;; 	  org-babel-lua-command))
-	   )
-      (cond
-       ((and (eq 'lua-mode org-babel-lua-mode)
-             (fboundp 'lua-start-process)) ; lua-mode.el
-        ;; Make sure that lua-which-bufname is initialized, as otherwise
-        ;; it will be overwritten the first time a Lua buffer is
-        ;; created.
-        ;;(lua-toggle-shells lua-default-interpreter)
-        ;; `lua-shell' creates a buffer whose name is the value of
-        ;; `lua-which-bufname' with '*'s at the beginning and end
-        (let* ((bufname (if (and lua-buffer (buffer-live-p lua-buffer))
-                            (replace-regexp-in-string ;; zap surrounding *
-                             "^\\*\\([^*]+\\)\\*$" "\\1" (buffer-name lua-buffer))
-                          (concat "Lua-" (symbol-name session))))
-               (lua-which-bufname bufname))
-          (lua-start-process)
-          (setq lua-buffer (org-babel-lua-with-earmuffs bufname))))
-       (t
-	(error "No function available for running an inferior Lua")))
-      (setq org-babel-lua-buffers
-            (cons (cons session lua-buffer)
-                  (assq-delete-all session org-babel-lua-buffers)))
-      session)))
-
-(defun org-babel-lua-initiate-session (&optional session _params)
-  "Create a session named SESSION according to PARAMS."
-  (unless (string= session "none")
-    (error "Sessions currently not supported, work in progress")
-    (org-babel-lua-session-buffer
-     (org-babel-lua-initiate-session-by-key session))))
-
-(defvar org-babel-lua-eoe-indicator "--eoe"
-  "A string to indicate that evaluation has completed.")
-
-(defvar org-babel-lua-wrapper-method
-  "
-function main()
-%s
-end
-
-fd=io.open(\"%s\", \"w\")
-fd:write( main() )
-fd:close()")
-(defvar org-babel-lua-pp-wrapper-method
-  "
--- table to string
-function t2s(t, indent)
-   if indent == nil then
-      indent = \"\"
-   end
-   if type(t) == \"table\" then
-      ts = \"\"
-      for k,v in pairs(t) do
-         if type(v) == \"table\" then
-            ts = ts .. indent .. t2s(k,indent .. \"  \") .. \" = \\n\" ..
-               t2s(v, indent .. \"  \")
-         else
-            ts = ts .. indent .. t2s(k,indent .. \"  \") .. \" = \" ..
-               t2s(v, indent .. \"  \") .. \"\\n\"
-         end
-      end
-      return ts
-   else
-      return tostring(t)
-   end
-end
-
-
-function main()
-%s
-end
-
-fd=io.open(\"%s\", \"w\")
-fd:write(t2s(main()))
-fd:close()")
-
-(defun org-babel-lua-evaluate
-    (session body &optional result-type result-params preamble)
-  "Evaluate BODY as Lua code."
-  (if session
-      (org-babel-lua-evaluate-session
-       session body result-type result-params)
-    (org-babel-lua-evaluate-external-process
-     body result-type result-params preamble)))
-
-(defun org-babel-lua-evaluate-external-process
-    (body &optional result-type result-params preamble)
-  "Evaluate BODY in external lua process.
-If RESULT-TYPE equals 'output then return standard output as a
-string.  If RESULT-TYPE equals 'value then return the value of the
-last statement in BODY, as elisp."
-  (let ((raw
-         (pcase result-type
-           (`output (org-babel-eval org-babel-lua-command
-				    (concat (if preamble (concat preamble "\n"))
-					    body)))
-           (`value (let ((tmp-file (org-babel-temp-file "lua-")))
-		     (org-babel-eval
-		      org-babel-lua-command
-		      (concat
-		       (if preamble (concat preamble "\n") "")
-		       (format
-			(if (member "pp" result-params)
-			    org-babel-lua-pp-wrapper-method
-			  org-babel-lua-wrapper-method)
-			(mapconcat
-			 (lambda (line) (format "\t%s" line))
-			 (split-string
-			  (org-remove-indentation
-			   (org-trim body))
-			  "[\r\n]") "\n")
-			(org-babel-process-file-name tmp-file 'noquote))))
-		     (org-babel-eval-read-file tmp-file))))))
-    (org-babel-result-cond result-params
-      raw
-      (org-babel-lua-table-or-string (org-trim raw)))))
-
-(defun org-babel-lua-evaluate-session
-    (session body &optional result-type result-params)
-  "Pass BODY to the Lua process in SESSION.
-If RESULT-TYPE equals 'output then return standard output as a
-string.  If RESULT-TYPE equals 'value then return the value of the
-last statement in BODY, as elisp."
-  (let* ((send-wait (lambda () (comint-send-input nil t) (sleep-for 0 5)))
-	 (dump-last-value
-	  (lambda
-	    (tmp-file pp)
-	    (mapc
-	     (lambda (statement) (insert statement) (funcall send-wait))
-	     (if pp
-		 (list
-		  "-- table to string
-function t2s(t, indent)
-   if indent == nil then
-      indent = \"\"
-   end
-   if type(t) == \"table\" then
-      ts = \"\"
-      for k,v in pairs(t) do
-         if type(v) == \"table\" then
-            ts = ts .. indent .. t2s(k,indent .. \"  \") .. \" = \\n\" ..
-               t2s(v, indent .. \"  \")
-         else
-            ts = ts .. indent .. t2s(k,indent .. \"  \") .. \" = \" ..
-               t2s(v, indent .. \"  \") .. \"\\n\"
-         end
-      end
-      return ts
-   else
-      return tostring(t)
-   end
-end
-"
-		  (concat "fd:write(_))
-fd:close()"
-			  (org-babel-process-file-name tmp-file 'noquote)))
-	       (list (format "fd=io.open(\"%s\", \"w\")
-fd:write( _ )
-fd:close()"
-			     (org-babel-process-file-name tmp-file
-                                                          'noquote)))))))
-	 (input-body (lambda (body)
-		       (mapc (lambda (line) (insert line) (funcall send-wait))
-			     (split-string body "[\r\n]"))
-		       (funcall send-wait)))
-         (results
-          (pcase result-type
-            (`output
-             (mapconcat
-              #'org-trim
-              (butlast
-               (org-babel-comint-with-output
-                   (session org-babel-lua-eoe-indicator t body)
-                 (funcall input-body body)
-                 (funcall send-wait) (funcall send-wait)
-                 (insert org-babel-lua-eoe-indicator)
-                 (funcall send-wait))
-               2) "\n"))
-            (`value
-             (let ((tmp-file (org-babel-temp-file "lua-")))
-               (org-babel-comint-with-output
-                   (session org-babel-lua-eoe-indicator nil body)
-                 (let ((comint-process-echoes nil))
-                   (funcall input-body body)
-                   (funcall dump-last-value tmp-file
-                            (member "pp" result-params))
-                   (funcall send-wait) (funcall send-wait)
-                   (insert org-babel-lua-eoe-indicator)
-                   (funcall send-wait)))
-               (org-babel-eval-read-file tmp-file))))))
-    (unless (string= (substring org-babel-lua-eoe-indicator 1 -1) results)
-      (org-babel-result-cond result-params
-	results
-        (org-babel-lua-table-or-string results)))))
-
-(defun org-babel-lua-read-string (string)
-  "Strip 's from around Lua string."
-  (org-unbracket-string "'" "'" string))
-
-(provide 'ob-lua)
-
-
-
-;;; ob-lua.el ends here
diff --git a/elpa/org-9.1.14/ob-lua.elc b/elpa/org-9.1.14/ob-lua.elc
deleted file mode 100644
index f40f2d4..0000000
--- a/elpa/org-9.1.14/ob-lua.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-makefile.el b/elpa/org-9.1.14/ob-makefile.el
deleted file mode 100644
index 4687037..0000000
--- a/elpa/org-9.1.14/ob-makefile.el
+++ /dev/null
@@ -1,48 +0,0 @@
-;;; ob-makefile.el --- Babel Functions for Makefile  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; 	   Thomas S. Dye
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file exists solely for tangling a Makefile from Org files.
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-default-header-args:makefile '())
-
-(defun org-babel-execute:makefile (body _params)
-  "Execute a block of makefile code.
-This function is called by `org-babel-execute-src-block'."
-  body)
-
-(defun org-babel-prep-session:makefile (_session _params)
-  "Return an error if the :session header argument is set.  Make
-does not support sessions."
-  (error "Makefile sessions are nonsensical"))
-
-(provide 'ob-makefile)
-
-
-
-;;; ob-makefile.el ends here
diff --git a/elpa/org-9.1.14/ob-makefile.elc b/elpa/org-9.1.14/ob-makefile.elc
deleted file mode 100644
index 6782274..0000000
--- a/elpa/org-9.1.14/ob-makefile.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-matlab.el b/elpa/org-9.1.14/ob-matlab.el
deleted file mode 100644
index 5baac77..0000000
--- a/elpa/org-9.1.14/ob-matlab.el
+++ /dev/null
@@ -1,47 +0,0 @@
-;;; ob-matlab.el --- Babel support for Matlab        -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Dan Davison
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Functions that are common to org-babel support for matlab and
-;; octave are in org-babel-octave.el
-
-;;; Requirements:
-
-;; Matlab
-
-;; matlab.el required for interactive emacs sessions and matlab-mode
-;; major mode for source code editing buffer
-;; http://matlab-emacs.sourceforge.net/
-
-;;; Code:
-(require 'ob)
-(require 'ob-octave)
-
-;; see ob-octave for matlab implementation
-
-(provide 'ob-matlab)
-
-
-
-;;; ob-matlab.el ends here
diff --git a/elpa/org-9.1.14/ob-matlab.elc b/elpa/org-9.1.14/ob-matlab.elc
deleted file mode 100644
index 9c817d4..0000000
--- a/elpa/org-9.1.14/ob-matlab.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-maxima.el b/elpa/org-9.1.14/ob-maxima.el
deleted file mode 100644
index b42a4b8..0000000
--- a/elpa/org-9.1.14/ob-maxima.el
+++ /dev/null
@@ -1,133 +0,0 @@
-;;; ob-maxima.el --- Babel Functions for Maxima      -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric S Fraga
-;;	Eric Schulte
-;; Keywords: literate programming, reproducible research, maxima
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating maxima entries.
-;;
-;; This differs from most standard languages in that
-;;
-;; 1) there is no such thing as a "session" in maxima
-;;
-;; 2) we are adding the "cmdline" header argument
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("maxima" . "max"))
-
-(defvar org-babel-default-header-args:maxima '())
-
-(defcustom org-babel-maxima-command
-  (if (boundp 'maxima-command) maxima-command "maxima")
-  "Command used to call maxima on the shell."
-  :group 'org-babel
-  :type 'string)
-
-(defun org-babel-maxima-expand (body params)
-  "Expand a block of Maxima code according to its header arguments."
-  (let ((vars (org-babel--get-vars params))
-	(epilogue (cdr (assq :epilogue params)))
-	(prologue (cdr (assq :prologue params))))
-    (mapconcat 'identity
-	       (list
-		;; Any code from the specified prologue at the start.
-		prologue
-		;; graphic output
-		(let ((graphic-file (ignore-errors (org-babel-graphical-output-file params))))
-		  (if graphic-file
-		      (format
-		       "set_plot_option ([gnuplot_term, png]); set_plot_option ([gnuplot_out_file, %S]);"
-		       graphic-file)
-		    ""))
-		;; variables
-		(mapconcat 'org-babel-maxima-var-to-maxima vars "\n")
-		;; body
-		body
-		;; Any code from the specified epilogue at the end.
-		epilogue
-		"gnuplot_close ()$")
-	       "\n")))
-
-(defun org-babel-execute:maxima (body params)
-  "Execute a block of Maxima entries with org-babel.
-This function is called by `org-babel-execute-src-block'."
-  (message "executing Maxima source code block")
-  (let ((result-params (split-string (or (cdr (assq :results params)) "")))
-	(result
-	 (let* ((cmdline (or (cdr (assq :cmdline params)) ""))
-		(in-file (org-babel-temp-file "maxima-" ".max"))
-		(cmd (format "%s --very-quiet -r 'batchload(%S)$' %s"
-			     org-babel-maxima-command in-file cmdline)))
-	   (with-temp-file in-file (insert (org-babel-maxima-expand body params)))
-	   (message cmd)
-           ;; " | grep -v batch | grep -v 'replaced' | sed '/^$/d' "
-	   (let ((raw (org-babel-eval cmd "")))
-             (mapconcat
-              #'identity
-              (delq nil
-                    (mapcar (lambda (line)
-                              (unless (or (string-match "batch" line)
-                                          (string-match "^rat: replaced .*$" line)
-                                          (string-match "^;;; Loading #P" line)
-                                          (= 0 (length line)))
-                                line))
-                            (split-string raw "[\r\n]"))) "\n")))))
-    (if (ignore-errors (org-babel-graphical-output-file params))
-	nil
-      (org-babel-result-cond result-params
-	result
-	(let ((tmp-file (org-babel-temp-file "maxima-res-")))
-	  (with-temp-file tmp-file (insert result))
-	  (org-babel-import-elisp-from-file tmp-file))))))
-
-
-(defun org-babel-prep-session:maxima (_session _params)
-  (error "Maxima does not support sessions"))
-
-(defun org-babel-maxima-var-to-maxima (pair)
-  "Convert an elisp val into a string of maxima code specifying a var
-of the same value."
-  (let ((var (car pair))
-        (val (cdr pair)))
-    (when (symbolp val)
-      (setq val (symbol-name val))
-      (when (= (length val) 1)
-        (setq val (string-to-char val))))
-    (format "%S: %s$" var
-	    (org-babel-maxima-elisp-to-maxima val))))
-
-(defun org-babel-maxima-elisp-to-maxima (val)
-  "Return a string of maxima code which evaluates to VAL."
-  (if (listp val)
-      (concat "[" (mapconcat #'org-babel-maxima-elisp-to-maxima val ", ") "]")
-    (format "%s" val)))
-
-
-(provide 'ob-maxima)
-
-
-
-;;; ob-maxima.el ends here
diff --git a/elpa/org-9.1.14/ob-maxima.elc b/elpa/org-9.1.14/ob-maxima.elc
deleted file mode 100644
index fe85d78..0000000
--- a/elpa/org-9.1.14/ob-maxima.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-mscgen.el b/elpa/org-9.1.14/ob-mscgen.el
deleted file mode 100644
index b2c2443..0000000
--- a/elpa/org-9.1.14/ob-mscgen.el
+++ /dev/null
@@ -1,84 +0,0 @@
-;;; ob-msc.el --- Babel Functions for Mscgen         -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Juan Pechiar
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; This software provides EMACS org-babel export support for message
-;; sequence charts.  The mscgen utility is used for processing the
-;; sequence definition, and must therefore be installed in the system.
-;;
-;; Mscgen is available and documented at
-;; http://www.mcternan.me.uk/mscgen/index.html
-;;
-;; This code is directly inspired by Eric Schulte's ob-dot.el
-;;
-;; Example:
-;;
-;; #+begin_src mscgen :file example.png
-;; msc {
-;;  A,B;
-;;  A -> B [ label = "send message" ];
-;;  A <- B [ label = "get answer" ];
-;; }
-;; #+end_src
-;;
-;; Header for alternative file type:
-;;
-;; #+begin_src mscgen :file ex2.svg :filetype svg
-
-;; This differs from most standard languages in that
-;;
-;; 1) there is no such thing as a "session" in mscgen
-;; 2) we are generally only going to return results of type "file"
-;; 3) we are adding the "file" and "filetype" header arguments
-;; 4) there are no variables
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-default-header-args:mscgen
-  '((:results . "file") (:exports . "results"))
-  "Default arguments to use when evaluating a mscgen source block.")
-
-(defun org-babel-execute:mscgen (body params)
-  "Execute a block of Mscgen code with Babel.
-This function is called by `org-babel-execute-src-block'.
-Default filetype is png.  Modify by setting :filetype parameter to
-mscgen supported formats."
-  (let* ((out-file (or (cdr (assq :file params)) "output.png" ))
-         (filetype (or (cdr (assq :filetype params)) "png" )))
-    (unless (cdr (assq :file params))
-      (error "
-ERROR: no output file specified.  Add \":file name.png\" to the src header"))
-    (org-babel-eval (concat "mscgen -T " filetype " -o " out-file) body)
-    nil)) ;; signal that output has already been written to file
-
-(defun org-babel-prep-session:mscgen (_session _params)
-  "Raise an error because Mscgen doesn't support sessions."
-  (error "Mscgen does not support sessions"))
-
-(provide 'ob-mscgen)
-
-
-
-;;; ob-msc.el ends here
diff --git a/elpa/org-9.1.14/ob-mscgen.elc b/elpa/org-9.1.14/ob-mscgen.elc
deleted file mode 100644
index 91e1ce7..0000000
--- a/elpa/org-9.1.14/ob-mscgen.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-ocaml.el b/elpa/org-9.1.14/ob-ocaml.el
deleted file mode 100644
index 90926b5..0000000
--- a/elpa/org-9.1.14/ob-ocaml.el
+++ /dev/null
@@ -1,171 +0,0 @@
-;;; ob-ocaml.el --- Babel Functions for Ocaml        -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating ocaml source code.  This one will
-;; be sort of tricky because ocaml programs must be compiled before
-;; they can be run, but ocaml code can also be run through an
-;; interactive interpreter.
-;;
-;; For now lets only allow evaluation using the ocaml interpreter.
-
-;;; Requirements:
-
-;; - tuareg-mode :: http://www-rocq.inria.fr/~acohen/tuareg/
-
-;;; Code:
-(require 'ob)
-(require 'comint)
-
-(declare-function tuareg-run-caml "ext:tuareg" ())
-(declare-function tuareg-run-ocaml "ext:tuareg" ())
-(declare-function tuareg-interactive-send-input "ext:tuareg" ())
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("ocaml" . "ml"))
-
-(defvar org-babel-default-header-args:ocaml '())
-
-(defvar org-babel-ocaml-eoe-indicator "\"org-babel-ocaml-eoe\";;")
-(defvar org-babel-ocaml-eoe-output "org-babel-ocaml-eoe")
-
-(defcustom org-babel-ocaml-command "ocaml"
-  "Name of the command for executing Ocaml code."
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :group 'org-babel
-  :type 'string)
-
-(defun org-babel-execute:ocaml (body params)
-  "Execute a block of Ocaml code with Babel."
-  (let* ((full-body (org-babel-expand-body:generic
-		     body params
-		     (org-babel-variable-assignments:ocaml params)))
-         (session (org-babel-prep-session:ocaml
-		   (cdr (assq :session params)) params))
-         (raw (org-babel-comint-with-output
-		  (session org-babel-ocaml-eoe-output nil full-body)
-		(insert
-		 (concat
-		  (org-babel-chomp full-body) ";;\n"
-		  org-babel-ocaml-eoe-indicator))
-		(tuareg-interactive-send-input)))
-	 (clean
-	  (car (let ((re (regexp-quote org-babel-ocaml-eoe-output)) out)
-		 (delq nil (mapcar (lambda (line)
-				     (if out
-					 (progn (setq out nil) line)
-				       (when (string-match re line)
-					 (progn (setq out t) nil))))
-				   (mapcar #'org-trim (reverse raw)))))))
-	 (raw (org-trim clean))
-	 (result-params (cdr (assq :result-params params))))
-    (string-match
-     "\\(\\(.*\n\\)*\\)[^:\n]+ : \\([^=\n]+\\) =\\(\n\\| \\)\\(.+\\)$"
-     raw)
-    (let ((output (match-string 1 raw))
-	  (type (match-string 3 raw))
-	  (value (match-string 5 raw)))
-      (org-babel-reassemble-table
-       (org-babel-result-cond result-params
-	 (cond
-	  ((member "verbatim" result-params) raw)
-	  ((member "output" result-params) output)
-	  (t raw))
-	 (if (and value type)
-	     (org-babel-ocaml-parse-output value type)
-	   raw))
-       (org-babel-pick-name
-	(cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-       (org-babel-pick-name
-	(cdr (assq :rowname-names params)) (cdr (assq :rownames params)))))))
-
-(defvar tuareg-interactive-buffer-name)
-(defun org-babel-prep-session:ocaml (session _params)
-  "Prepare SESSION according to the header arguments in PARAMS."
-  (require 'tuareg)
-  (let ((tuareg-interactive-buffer-name (if (and (not (string= session "none"))
-                                                 (not (string= session "default"))
-                                                 (stringp session))
-                                            session
-                                          tuareg-interactive-buffer-name)))
-    (save-window-excursion (if (fboundp 'tuareg-run-process-if-needed)
-	 (tuareg-run-process-if-needed org-babel-ocaml-command)
-       (tuareg-run-caml)))
-    (get-buffer tuareg-interactive-buffer-name)))
-
-(defun org-babel-variable-assignments:ocaml (params)
-  "Return list of ocaml statements assigning the block's variables."
-  (mapcar
-   (lambda (pair) (format "let %s = %s;;" (car pair)
-			  (org-babel-ocaml-elisp-to-ocaml (cdr pair))))
-   (org-babel--get-vars params)))
-
-(defun org-babel-ocaml-elisp-to-ocaml (val)
-  "Return a string of ocaml code which evaluates to VAL."
-  (if (listp val)
-      (concat "[|" (mapconcat #'org-babel-ocaml-elisp-to-ocaml val "; ") "|]")
-    (format "%S" val)))
-
-(defun org-babel-ocaml-parse-output (value type)
-  "Parse VALUE of type TYPE.
-VALUE and TYPE are string output from an ocaml process."
-  (cond
-   ((string= "string" type)
-    (org-babel-read value))
-   ((or (string= "int" type)
-	(string= "float" type))
-    (string-to-number value))
-   ((string-match "list" type)
-    (org-babel-ocaml-read-list value))
-   ((string-match "array" type)
-    (org-babel-ocaml-read-array value))
-   (t (message "don't recognize type %s" type) value)))
-
-(defun org-babel-ocaml-read-list (results)
-  "Convert RESULTS into an elisp table or string.
-If the results look like a table, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
-  ;; XXX: This probably does not behave as expected when a semicolon
-  ;; is in a string in a list.  The same comment applies to
-  ;; `org-babel-ocaml-read-array' below (with even more failure
-  ;; modes).
-  (org-babel-script-escape (replace-regexp-in-string ";" "," results)))
-
-(defun org-babel-ocaml-read-array (results)
-  "Convert RESULTS into an elisp table or string.
-If the results look like a table, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
-  (org-babel-script-escape
-   (replace-regexp-in-string
-    "\\[|" "[" (replace-regexp-in-string
-		"|\\]" "]" (replace-regexp-in-string
-			    "; " "," results)))))
-
-(provide 'ob-ocaml)
-
-
-
-;;; ob-ocaml.el ends here
diff --git a/elpa/org-9.1.14/ob-ocaml.elc b/elpa/org-9.1.14/ob-ocaml.elc
deleted file mode 100644
index 4090dc0..0000000
--- a/elpa/org-9.1.14/ob-ocaml.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-octave.el b/elpa/org-9.1.14/ob-octave.el
deleted file mode 100644
index c7339cf..0000000
--- a/elpa/org-9.1.14/ob-octave.el
+++ /dev/null
@@ -1,266 +0,0 @@
-;;; ob-octave.el --- Babel Functions for Octave and Matlab -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Dan Davison
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;;; Requirements:
-
-;; octave
-;; octave-mode.el and octave-inf.el come with GNU emacs
-
-;;; Code:
-(require 'ob)
-
-(declare-function matlab-shell "ext:matlab-mode")
-(declare-function matlab-shell-run-region "ext:matlab-mode")
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-default-header-args:matlab '())
-(defvar org-babel-default-header-args:octave '())
-
-(defvar org-babel-matlab-shell-command "matlab -nosplash"
-  "Shell command to run matlab as an external process.")
-(defvar org-babel-octave-shell-command "octave -q"
-  "Shell command to run octave as an external process.")
-
-(defvar org-babel-matlab-with-emacs-link nil
-  "If non-nil use matlab-shell-run-region for session evaluation.
-  This will use EmacsLink if (matlab-with-emacs-link) evaluates
-  to a non-nil value.")
-
-(defvar org-babel-matlab-emacs-link-wrapper-method
-  "%s
-if ischar(ans), fid = fopen('%s', 'w'); fprintf(fid, '%%s\\n', ans); fclose(fid);
-else, save -ascii %s ans
-end
-delete('%s')
-")
-(defvar org-babel-octave-wrapper-method
-  "%s
-if ischar(ans), fid = fopen('%s', 'w'); fprintf(fid, '%%s\\n', ans); fclose(fid);
-else, dlmwrite('%s', ans, '\\t')
-end")
-
-(defvar org-babel-octave-eoe-indicator "'org_babel_eoe'")
-
-(defvar org-babel-octave-eoe-output "ans = org_babel_eoe")
-
-(defun org-babel-execute:matlab (body params)
-  "Execute a block of matlab code with Babel."
-  (org-babel-execute:octave body params 'matlab))
-
-(defun org-babel-execute:octave (body params &optional matlabp)
-  "Execute a block of octave code with Babel."
-  (let* ((session
-	  (funcall (intern (format "org-babel-%s-initiate-session"
-				   (if matlabp "matlab" "octave")))
-		   (cdr (assq :session params)) params))
-         (result-type (cdr (assq :result-type params)))
-	 (full-body
-	  (org-babel-expand-body:generic
-	   body params (org-babel-variable-assignments:octave params)))
-	 (gfx-file (ignore-errors (org-babel-graphical-output-file params)))
-	 (result (org-babel-octave-evaluate
-		  session
-		  (if gfx-file
-		      (mapconcat 'identity
-				 (list
-				  "set (0, \"defaultfigurevisible\", \"off\");"
-				  full-body
-				  (format "print -dpng %s" gfx-file))
-				 "\n")
-		    full-body)
-		  result-type matlabp)))
-    (if gfx-file
-	nil
-      (org-babel-reassemble-table
-       result
-       (org-babel-pick-name
-	(cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-       (org-babel-pick-name
-	(cdr (assq :rowname-names params)) (cdr (assq :rownames params)))))))
-
-(defun org-babel-prep-session:matlab (session params)
-  "Prepare SESSION according to PARAMS."
-  (org-babel-prep-session:octave session params 'matlab))
-
-(defun org-babel-variable-assignments:octave (params)
-  "Return list of octave statements assigning the block's variables."
-  (mapcar
-   (lambda (pair)
-     (format "%s=%s;"
-	     (car pair)
-	     (org-babel-octave-var-to-octave (cdr pair))))
-   (org-babel--get-vars params)))
-
-(defalias 'org-babel-variable-assignments:matlab
-  'org-babel-variable-assignments:octave)
-
-(defun org-babel-octave-var-to-octave (var)
-  "Convert an emacs-lisp value into an octave variable.
-Converts an emacs-lisp variable into a string of octave code
-specifying a variable of the same value."
-  (if (listp var)
-      (concat "[" (mapconcat #'org-babel-octave-var-to-octave var
-			     (if (listp (car var)) "; " ",")) "]")
-    (cond
-     ((stringp var)
-      (format "'%s'" var))
-     (t
-      (format "%s" var)))))
-
-(defun org-babel-prep-session:octave (session params &optional matlabp)
-  "Prepare SESSION according to the header arguments specified in PARAMS."
-  (let* ((session (org-babel-octave-initiate-session session params matlabp))
-	 (var-lines (org-babel-variable-assignments:octave params)))
-    (org-babel-comint-in-buffer session
-      (mapc (lambda (var)
-              (end-of-line 1) (insert var) (comint-send-input nil t)
-              (org-babel-comint-wait-for-output session)) var-lines))
-    session))
-
-(defun org-babel-matlab-initiate-session (&optional session params)
-  "Create a matlab inferior process buffer.
-If there is not a current inferior-process-buffer in SESSION then
-create.  Return the initialized session."
-  (org-babel-octave-initiate-session session params 'matlab))
-
-(defun org-babel-octave-initiate-session (&optional session _params matlabp)
-  "Create an octave inferior process buffer.
-If there is not a current inferior-process-buffer in SESSION then
-create.  Return the initialized session."
-  (if matlabp (require 'matlab) (or (require 'octave-inf nil 'noerror)
-				    (require 'octave)))
-  (unless (string= session "none")
-    (let ((session (or session
-		       (if matlabp "*Inferior Matlab*" "*Inferior Octave*"))))
-      (if (org-babel-comint-buffer-livep session) session
-	(save-window-excursion
-	  (if matlabp (unless org-babel-matlab-with-emacs-link (matlab-shell))
-	    (run-octave))
-	  (rename-buffer (if (bufferp session) (buffer-name session)
-			   (if (stringp session) session (buffer-name))))
-	  (current-buffer))))))
-
-(defun org-babel-octave-evaluate
-  (session body result-type &optional matlabp)
-  "Pass BODY to the octave process in SESSION.
-If RESULT-TYPE equals `output' then return the outputs of the
-statements in BODY, if RESULT-TYPE equals `value' then return the
-value of the last statement in BODY, as elisp."
-  (if session
-      (org-babel-octave-evaluate-session session body result-type matlabp)
-    (org-babel-octave-evaluate-external-process body result-type matlabp)))
-
-(defun org-babel-octave-evaluate-external-process (body result-type matlabp)
-  "Evaluate BODY in an external octave process."
-  (let ((cmd (if matlabp
-		 org-babel-matlab-shell-command
-	       org-babel-octave-shell-command)))
-    (pcase result-type
-      (`output (org-babel-eval cmd body))
-      (`value (let ((tmp-file (org-babel-temp-file "octave-")))
-	       (org-babel-eval
-		cmd
-		(format org-babel-octave-wrapper-method body
-			(org-babel-process-file-name tmp-file 'noquote)
-			(org-babel-process-file-name tmp-file 'noquote)))
-	       (org-babel-octave-import-elisp-from-file tmp-file))))))
-
-(defun org-babel-octave-evaluate-session
-    (session body result-type &optional matlabp)
-  "Evaluate BODY in SESSION."
-  (let* ((tmp-file (org-babel-temp-file (if matlabp "matlab-" "octave-")))
-	 (wait-file (org-babel-temp-file "matlab-emacs-link-wait-signal-"))
-	 (full-body
-	  (pcase result-type
-	    (`output
-	     (mapconcat
-	      #'org-babel-chomp
-	      (list body org-babel-octave-eoe-indicator) "\n"))
-	    (`value
-	     (if (and matlabp org-babel-matlab-with-emacs-link)
-		 (concat
-		  (format org-babel-matlab-emacs-link-wrapper-method
-			  body
-			  (org-babel-process-file-name tmp-file 'noquote)
-			  (org-babel-process-file-name tmp-file 'noquote) wait-file) "\n")
-	       (mapconcat
-		#'org-babel-chomp
-		(list (format org-babel-octave-wrapper-method
-			      body
-			      (org-babel-process-file-name tmp-file 'noquote)
-			      (org-babel-process-file-name tmp-file 'noquote))
-		      org-babel-octave-eoe-indicator) "\n")))))
-	 (raw (if (and matlabp org-babel-matlab-with-emacs-link)
-		  (save-window-excursion
-		    (with-temp-buffer
-		      (insert full-body)
-		      (write-region "" 'ignored wait-file nil nil nil 'excl)
-		      (matlab-shell-run-region (point-min) (point-max))
-		      (message "Waiting for Matlab Emacs Link")
-		      (while (file-exists-p wait-file) (sit-for 0.01))
-		      "")) ;; matlab-shell-run-region doesn't seem to
-		;; make *matlab* buffer contents easily
-		;; available, so :results output currently
-		;; won't work
-		(org-babel-comint-with-output
-		    (session
-		     (if matlabp
-			 org-babel-octave-eoe-indicator
-		       org-babel-octave-eoe-output)
-		     t full-body)
-		  (insert full-body) (comint-send-input nil t)))) results)
-    (pcase result-type
-      (`value
-       (org-babel-octave-import-elisp-from-file tmp-file))
-      (`output
-       (setq results
-	     (if matlabp
-		 (cdr (reverse (delq "" (mapcar
-					 #'org-babel-strip-quotes
-					 (mapcar #'org-trim raw)))))
-	       (cdr (member org-babel-octave-eoe-output
-			    (reverse (mapcar
-				      #'org-babel-strip-quotes
-				      (mapcar #'org-trim raw)))))))
-       (mapconcat #'identity (reverse results) "\n")))))
-
-(defun org-babel-octave-import-elisp-from-file (file-name)
-  "Import data from FILE-NAME.
-This removes initial blank and comment lines and then calls
-`org-babel-import-elisp-from-file'."
-  (let ((temp-file (org-babel-temp-file "octave-matlab-")) beg end)
-    (with-temp-file temp-file
-      (insert-file-contents file-name)
-      (re-search-forward "^[ \t]*[^# \t]" nil t)
-      (if (< (setq beg (point-min))
-	     (setq end (point-at-bol)))
-	  (delete-region beg end)))
-    (org-babel-import-elisp-from-file temp-file '(16))))
-
-(provide 'ob-octave)
-
-
-
-;;; ob-octave.el ends here
diff --git a/elpa/org-9.1.14/ob-octave.elc b/elpa/org-9.1.14/ob-octave.elc
deleted file mode 100644
index 08695ff..0000000
--- a/elpa/org-9.1.14/ob-octave.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-org.el b/elpa/org-9.1.14/ob-org.el
deleted file mode 100644
index 7a495fa..0000000
--- a/elpa/org-9.1.14/ob-org.el
+++ /dev/null
@@ -1,72 +0,0 @@
-;;; ob-org.el --- Babel Functions for Org Code Blocks -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This is the simplest of code blocks, where upon evaluation the
-;; contents of the code block are returned in a raw result.
-
-;;; Code:
-(require 'ob)
-
-(declare-function org-export-string-as "ox"
-		  (string backend &optional body-only ext-plist))
-
-(defvar org-babel-default-header-args:org
-  '((:results . "raw silent") (:exports . "code"))
-  "Default arguments for evaluating an org source block.")
-
-(defvar org-babel-org-default-header
-  "#+TITLE: default empty header\n"
-  "Default header inserted during export of org blocks.")
-
-(defun org-babel-expand-body:org (body params)
-  (dolist (var (org-babel--get-vars params))
-    (setq body (replace-regexp-in-string
-		(regexp-quote (format "$%s" (car var)))
-		(format "%s" (cdr var))
-		body nil 'literal)))
-  body)
-
-(defun org-babel-execute:org (body params)
-  "Execute a block of Org code with.
-This function is called by `org-babel-execute-src-block'."
-  (let ((result-params (split-string (or (cdr (assq :results params)) "")))
-	(body (org-babel-expand-body:org
-	       (replace-regexp-in-string "^," "" body) params)))
-    (cond
-     ((member "latex" result-params)
-      (org-export-string-as (concat "#+Title: \n" body) 'latex t))
-     ((member "html" result-params) (org-export-string-as  body 'html t))
-     ((member "ascii" result-params) (org-export-string-as body 'ascii t))
-     (t body))))
-
-(defun org-babel-prep-session:org (_session _params)
-  "Return an error because org does not support sessions."
-  (error "Org does not support sessions"))
-
-(provide 'ob-org)
-
-
-
-;;; ob-org.el ends here
diff --git a/elpa/org-9.1.14/ob-org.elc b/elpa/org-9.1.14/ob-org.elc
deleted file mode 100644
index 4668e20..0000000
--- a/elpa/org-9.1.14/ob-org.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-perl.el b/elpa/org-9.1.14/ob-perl.el
deleted file mode 100644
index 85806fd..0000000
--- a/elpa/org-9.1.14/ob-perl.el
+++ /dev/null
@@ -1,157 +0,0 @@
-;;; ob-perl.el --- Babel Functions for Perl          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Authors: Dan Davison
-;;	 Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating perl source code.
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("perl" . "pl"))
-
-(defvar org-babel-default-header-args:perl '())
-
-(defvar org-babel-perl-command "perl"
-  "Name of command to use for executing perl code.")
-
-(defun org-babel-execute:perl (body params)
-  "Execute a block of Perl code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((session (cdr (assq :session params)))
-         (result-params (cdr (assq :result-params params)))
-         (result-type (cdr (assq :result-type params)))
-         (full-body (org-babel-expand-body:generic
-		     body params (org-babel-variable-assignments:perl params)))
-	 (session (org-babel-perl-initiate-session session)))
-    (org-babel-reassemble-table
-     (org-babel-perl-evaluate session full-body result-type result-params)
-     (org-babel-pick-name
-      (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-     (org-babel-pick-name
-      (cdr (assq :rowname-names params)) (cdr (assq :rownames params))))))
-
-(defun org-babel-prep-session:perl (_session _params)
-  "Prepare SESSION according to the header arguments in PARAMS."
-  (error "Sessions are not supported for Perl"))
-
-(defun org-babel-variable-assignments:perl (params)
-  "Return list of perl statements assigning the block's variables."
-  (mapcar
-   (lambda (pair)
-     (org-babel-perl--var-to-perl (cdr pair) (car pair)))
-   (org-babel--get-vars params)))
-
-;; helper functions
-
-(defvar org-babel-perl-var-wrap "q(%s)"
-  "Wrapper for variables inserted into Perl code.")
-
-(defvar org-babel-perl--lvl)
-(defun org-babel-perl--var-to-perl (var &optional varn)
-  "Convert an elisp value to a perl variable.
-The elisp value, VAR, is converted to a string of perl source code
-specifying a var of the same value."
-  (if varn
-      (let ((org-babel-perl--lvl 0) (lvar (listp var)))
-	(concat "my $" (symbol-name varn) "=" (when lvar "\n")
-		(org-babel-perl--var-to-perl var)
-		";\n"))
-    (let ((prefix (make-string (* 2 org-babel-perl--lvl) ?\ )))
-      (concat prefix
-	      (if (listp var)
-		  (let ((org-babel-perl--lvl (1+ org-babel-perl--lvl)))
-		    (concat "[\n"
-			    (mapconcat #'org-babel-perl--var-to-perl var "")
-			    prefix "]"))
-		(format "q(%s)" var))
-	      (unless (zerop org-babel-perl--lvl) ",\n")))))
-
-(defvar org-babel-perl-buffers '(:default . nil))
-
-(defun org-babel-perl-initiate-session (&optional _session _params)
-  "Return nil because sessions are not supported by perl."
-  nil)
-
-(defvar org-babel-perl-wrapper-method "{
-    my $babel_sub = sub {
-        %s
-    };
-    open my $BOH, qq(>%s) or die qq(Perl: Could not open output file.$/);
-    my $rv = &$babel_sub();
-    my $rt = ref $rv;
-    select $BOH;
-    if (qq(ARRAY) eq $rt) {
-        local $\\=$/;
-        local $,=qq(\t);
-	foreach my $rv ( @$rv ) {
-	    my $rt = ref $rv;
-	    if (qq(ARRAY) eq $rt) {
-		print @$rv;
-	    } else {
-		print $rv;
-	    }
-	}
-    } else {
-	print $rv;
-    }
-}")
-
-(defvar org-babel-perl-preface nil)
-
-(defvar org-babel-perl-pp-wrapper-method
-  nil)
-
-(defun org-babel-perl-evaluate (session ibody &optional result-type result-params)
-  "Pass BODY to the Perl process in SESSION.
-If RESULT-TYPE equals `output' then return a list of the outputs
-of the statements in BODY, if RESULT-TYPE equals `value' then
-return the value of the last statement in BODY, as elisp."
-  (when session (error "Sessions are not supported for Perl"))
-  (let* ((body (concat org-babel-perl-preface ibody))
-	 (tmp-file (org-babel-temp-file "perl-"))
-	 (tmp-babel-file (org-babel-process-file-name
-			  tmp-file 'noquote)))
-    (let ((results
-           (pcase result-type
-             (`output
-              (with-temp-file tmp-file
-                (insert
-                 (org-babel-eval org-babel-perl-command body))
-                (buffer-string)))
-             (`value
-              (org-babel-eval org-babel-perl-command
-                              (format org-babel-perl-wrapper-method
-                                      body tmp-babel-file))))))
-      (when results
-        (org-babel-result-cond result-params
-	  (org-babel-eval-read-file tmp-file)
-          (org-babel-import-elisp-from-file tmp-file '(16)))))))
-
-(provide 'ob-perl)
-
-
-
-;;; ob-perl.el ends here
diff --git a/elpa/org-9.1.14/ob-perl.elc b/elpa/org-9.1.14/ob-perl.elc
deleted file mode 100644
index f492b5a..0000000
--- a/elpa/org-9.1.14/ob-perl.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-picolisp.el b/elpa/org-9.1.14/ob-picolisp.el
deleted file mode 100644
index cc2c8a8..0000000
--- a/elpa/org-9.1.14/ob-picolisp.el
+++ /dev/null
@@ -1,187 +0,0 @@
-;;; ob-picolisp.el --- Babel Functions for Picolisp  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Authors: Thorsten Jolitz
-;;	 Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This library enables the use of PicoLisp in the multi-language
-;; programming framework Org-Babel.  PicoLisp is a minimal yet
-;; fascinating lisp dialect and a highly productive application
-;; framework for web-based client-server applications on top of
-;; object-oriented databases.  A good way to learn PicoLisp is to first
-;; read Paul Grahams essay "The hundred year language"
-;; (http://www.paulgraham.com/hundred.html) and then study the various
-;; documents and essays published in the PicoLisp wiki
-;; (http://picolisp.com/5000/-2.html). PicoLisp is included in some
-;; GNU/Linux Distributions, and can be downloaded here:
-;; http://software-lab.de/down.html.  It ships with a picolisp-mode and
-;; an inferior-picolisp-mode for Emacs (to be found in the /lib/el/
-;; directory).
-
-;; Although it might seem more natural to use Emacs Lisp for most
-;; Lisp-based programming tasks inside Org, an Emacs library written
-;; in Emacs Lisp, PicoLisp has at least two outstanding features that
-;; make it a valuable addition to Org Babel:
-
-;; PicoLisp _is_ an object-oriented database with a Prolog-based query
-;; language implemented in PicoLisp (Pilog). Database objects are
-;; first-class members of the language.
-
-;; PicoLisp is an extremely productive framework for the development
-;; of interactive web-applications (on top of a database).
-
-;;; Requirements:
-
-;;; Code:
-(require 'ob)
-(require 'comint)
-
-(declare-function run-picolisp "ext:inferior-picolisp" (cmd))
-(defvar org-babel-tangle-lang-exts) ;; Autoloaded
-
-;; optionally define a file extension for this language
-(add-to-list 'org-babel-tangle-lang-exts '("picolisp" . "l"))
-
-;;; interferes with settings in org-babel buffer?
-;; optionally declare default header arguments for this language
-;; (defvar org-babel-default-header-args:picolisp
-;;   '((:colnames . "no"))
-;;   "Default arguments for evaluating a picolisp source block.")
-
-(defvar org-babel-picolisp-eoe "org-babel-picolisp-eoe"
-  "String to indicate that evaluation has completed.")
-
-(defcustom org-babel-picolisp-cmd "pil"
-  "Name of command used to evaluate picolisp blocks."
-  :group 'org-babel
-  :version "24.1"
-  :type 'string)
-
-(defun org-babel-expand-body:picolisp (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let ((vars (org-babel--get-vars params))
-        (print-level nil)
-	(print-length nil))
-    (if (> (length vars) 0)
-        (concat "(prog (let ("
-                (mapconcat
-                 (lambda (var)
-                   (format "%S '%S)"
-                           (print (car var))
-                           (print (cdr var))))
-                 vars "\n      ")
-                " \n" body ") )")
-      body)))
-
-(defun org-babel-execute:picolisp (body params)
-  "Execute a block of Picolisp code with org-babel.  This function is
- called by `org-babel-execute-src-block'"
-  (message "executing Picolisp source code block")
-  (let* (
-	 ;; Name of the session or "none".
-	 (session-name (cdr (assq :session params)))
-	 ;; Set the session if the session variable is non-nil.
-	 (session (org-babel-picolisp-initiate-session session-name))
-	 ;; Either OUTPUT or VALUE which should behave as described above.
-	 (result-params (cdr (assq :result-params params)))
-	 ;; Expand the body with `org-babel-expand-body:picolisp'.
-	 (full-body (org-babel-expand-body:picolisp body params))
-         ;; Wrap body appropriately for the type of evaluation and results.
-         (wrapped-body
-          (cond
-           ((or (member "code" result-params)
-                (member "pp" result-params))
-            (format "(pretty (out \"/dev/null\" %s))" full-body))
-           ((and (member "value" result-params) (not session))
-            (format "(print (out \"/dev/null\" %s))" full-body))
-           ((member "value" result-params)
-            (format "(out \"/dev/null\" %s)" full-body))
-           (t full-body)))
-         (result
-          (if (not (string= session-name "none"))
-              ;; Session based evaluation.
-              (mapconcat ;; <- joins the list back into a single string
-               #'identity
-               (butlast ;; <- remove the org-babel-picolisp-eoe line
-                (delq nil
-                      (mapcar
-                       (lambda (line)
-                         (org-babel-chomp      ;; Remove trailing newlines.
-                          (when (> (length line) 0) ;; Remove empty lines.
-                            (cond
-                             ;; Remove leading "-> " from return values.
-                             ((and (>= (length line) 3)
-                                   (string= "-> " (substring line 0 3)))
-                              (substring line 3))
-                             ;; Remove trailing "-> <<return-value>>" on the
-                             ;; last line of output.
-                             ((and (member "output" result-params)
-                                   (string-match-p "->" line))
-                              (substring line 0 (string-match "->" line)))
-                             (t line)
-                             )
-                            ;;(if (and (>= (length line) 3);Remove leading "<-"
-                            ;;         (string= "-> " (substring line 0 3)))
-                            ;;    (substring line 3)
-                            ;;  line)
-                            )))
-                       ;; Returns a list of the output of each evaluated exp.
-                       (org-babel-comint-with-output
-                           (session org-babel-picolisp-eoe)
-                         (insert wrapped-body) (comint-send-input)
-                         (insert "'" org-babel-picolisp-eoe)
-                         (comint-send-input)))))
-               "\n")
-            ;; external evaluation
-            (let ((script-file (org-babel-temp-file "picolisp-script-")))
-              (with-temp-file script-file
-                (insert (concat wrapped-body "(bye)")))
-              (org-babel-eval
-               (format "%s %s"
-                       org-babel-picolisp-cmd
-                       (org-babel-process-file-name script-file))
-               "")))))
-    (org-babel-result-cond result-params
-      result
-      (read result))))
-
-(defun org-babel-picolisp-initiate-session (&optional session-name)
-  "If there is not a current inferior-process-buffer in SESSION
-then create.  Return the initialized session."
-  (unless (string= session-name "none")
-    (require 'inferior-picolisp)
-    ;; provide a reasonable default session name
-    (let ((session (or session-name "*inferior-picolisp*")))
-      ;; check if we already have a live session by this name
-      (if (org-babel-comint-buffer-livep session)
-          (get-buffer session)
-        (save-window-excursion
-          (run-picolisp org-babel-picolisp-cmd)
-          (rename-buffer session-name)
-          (current-buffer))))))
-
-(provide 'ob-picolisp)
-
-
-
-;;; ob-picolisp.el ends here
diff --git a/elpa/org-9.1.14/ob-picolisp.elc b/elpa/org-9.1.14/ob-picolisp.elc
deleted file mode 100644
index 6030007..0000000
--- a/elpa/org-9.1.14/ob-picolisp.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-plantuml.el b/elpa/org-9.1.14/ob-plantuml.el
deleted file mode 100644
index 9a9313e..0000000
--- a/elpa/org-9.1.14/ob-plantuml.el
+++ /dev/null
@@ -1,126 +0,0 @@
-;;; ob-plantuml.el --- Babel Functions for Plantuml  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Zhang Weize
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating plantuml script.
-;;
-;; Inspired by Ian Yang's org-export-blocks-format-plantuml
-;; http://www.emacswiki.org/emacs/org-export-blocks-format-plantuml.el
-
-;;; Requirements:
-
-;; plantuml     | http://plantuml.sourceforge.net/
-;; plantuml.jar | `org-plantuml-jar-path' should point to the jar file
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-default-header-args:plantuml
-  '((:results . "file") (:exports . "results"))
-  "Default arguments for evaluating a plantuml source block.")
-
-(defcustom org-plantuml-jar-path ""
-  "Path to the plantuml.jar file."
-  :group 'org-babel
-  :version "24.1"
-  :type 'string)
-
-(defun org-babel-variable-assignments:plantuml (params)
-  "Return a list of PlantUML statements assigning the block's variables.
-PARAMS is a property list of source block parameters, which may
-contain multiple entries for the key `:var'.  `:var' entries in PARAMS
-are expected to be scalar variables."
-  (mapcar
-   (lambda (pair)
-       (format "!define %s %s"
-	       (car pair)
-	       (replace-regexp-in-string "\"" "" (cdr pair))))
-   (org-babel--get-vars params)))
-
-(defun org-babel-plantuml-make-body (body params)
-  "Return PlantUML input string.
-BODY is the content of the source block and PARAMS is a property list
-of source block parameters.  This function relies on the
-`org-babel-expand-body:generic' function to extract `:var' entries
-from PARAMS and on the `org-babel-variable-assignments:plantuml'
-function to convert variables to PlantUML assignments."
-  (concat
-   "@startuml\n"
-   (org-babel-expand-body:generic
-    body params (org-babel-variable-assignments:plantuml params))
-   "\n@enduml"))
-
-(defun org-babel-execute:plantuml (body params)
-  "Execute a block of plantuml code with org-babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((out-file (or (cdr (assq :file params))
-		       (error "PlantUML requires a \":file\" header argument")))
-	 (cmdline (cdr (assq :cmdline params)))
-	 (in-file (org-babel-temp-file "plantuml-"))
-	 (java (or (cdr (assq :java params)) ""))
-	 (full-body (org-babel-plantuml-make-body body params))
-	 (cmd (if (string= "" org-plantuml-jar-path)
-		  (error "`org-plantuml-jar-path' is not set")
-		(concat "java " java " -jar "
-			(shell-quote-argument
-			 (expand-file-name org-plantuml-jar-path))
-			(if (string= (file-name-extension out-file) "png")
-			    " -tpng" "")
-			(if (string= (file-name-extension out-file) "svg")
-			    " -tsvg" "")
-			(if (string= (file-name-extension out-file) "eps")
-			    " -teps" "")
-			(if (string= (file-name-extension out-file) "pdf")
-			    " -tpdf" "")
-			(if (string= (file-name-extension out-file) "vdx")
-			    " -tvdx" "")
-			(if (string= (file-name-extension out-file) "xmi")
-			    " -txmi" "")
-			(if (string= (file-name-extension out-file) "scxml")
-			    " -tscxml" "")
-			(if (string= (file-name-extension out-file) "html")
-			    " -thtml" "")
-			(if (string= (file-name-extension out-file) "txt")
-			    " -ttxt" "")
-			(if (string= (file-name-extension out-file) "utxt")
-			    " -utxt" "")
-			" -p " cmdline " < "
-			(org-babel-process-file-name in-file)
-			" > "
-			(org-babel-process-file-name out-file)))))
-    (unless (file-exists-p org-plantuml-jar-path)
-      (error "Could not find plantuml.jar at %s" org-plantuml-jar-path))
-    (with-temp-file in-file (insert full-body))
-    (message "%s" cmd) (org-babel-eval cmd "")
-    nil)) ;; signal that output has already been written to file
-
-(defun org-babel-prep-session:plantuml (_session _params)
-  "Return an error because plantuml does not support sessions."
-  (error "Plantuml does not support sessions"))
-
-(provide 'ob-plantuml)
-
-
-
-;;; ob-plantuml.el ends here
diff --git a/elpa/org-9.1.14/ob-plantuml.elc b/elpa/org-9.1.14/ob-plantuml.elc
deleted file mode 100644
index 8a67474..0000000
--- a/elpa/org-9.1.14/ob-plantuml.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-processing.el b/elpa/org-9.1.14/ob-processing.el
deleted file mode 100644
index 1a88930..0000000
--- a/elpa/org-9.1.14/ob-processing.el
+++ /dev/null
@@ -1,195 +0,0 @@
-;;; ob-processing.el --- Babel functions for processing -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015-2018 Free Software Foundation, Inc.
-
-;; Author: Jarmo Hurri (adapted from ob-asymptote.el written by Eric Schulte)
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Babel support for evaluating processing source code.
-;;
-;; This differs from most standard languages in that
-;;
-;; 1) there is no such thing as a "session" in processing
-;;
-;; 2) results can only be exported as html; in this case, the
-;;    processing code is embedded via a file into a javascript block
-;;    using the processing.js module; the script then draws the
-;;    resulting output when the web page is viewed in a browser; note
-;;    that the user is responsible for making sure that processing.js
-;;    is available on the website
-;;
-;; 3) it is possible to interactively view the sketch of the
-;;    Processing code block via Processing 2.0 Emacs mode, using
-;;    `org-babel-processing-view-sketch'.  You can bind this command
-;;    to, e.g., C-c C-v C-k with
-;;
-;;      (define-key org-babel-map (kbd "C-k") 'org-babel-processing-view-sketch)
-
-
-;;; Requirements:
-
-;; - processing2-emacs mode :: https://github.com/ptrv/processing2-emacs
-;; - Processing.js module :: http://processingjs.org/
-
-;;; Code:
-(require 'ob)
-(require 'sha1)
-
-(declare-function processing-sketch-run "ext:processing-mode" ())
-
-(defvar org-babel-temporary-directory)
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("processing" . "pde"))
-
-;; Default header tags depend on whether exporting html or not; if not
-;; exporting html, then no results are produced; otherwise results are
-;; HTML.
-(defvar org-babel-default-header-args:processing
-  '((:results . "html") (:exports . "results"))
-  "Default arguments when evaluating a Processing source block.")
-
-(defvar org-babel-processing-processing-js-filename "processing.js"
-  "Filename of the processing.js file.")
-
-(defun org-babel-processing-view-sketch ()
-  "Show the sketch of the Processing block under point in an external viewer."
-  (interactive)
-  (require 'processing-mode)
-  (let ((info (org-babel-get-src-block-info)))
-    (if (string= (nth 0 info) "processing")
-	(let* ((body (nth 1 info))
-	       (params (org-babel-process-params (nth 2 info)))
-	       (sketch-code
-		(org-babel-expand-body:generic
-		 body
-		 params
-		 (org-babel-variable-assignments:processing params))))
-	  ;; Note: sketch filename can not contain a hyphen, since it
-	  ;; has to be a valid java class name; for this reason
-	  ;; make-temp-file is repeated until no hyphen is in the
-	  ;; name; also sketch dir name must be the same as the
-	  ;; basename of the sketch file.
-	  (let* ((temporary-file-directory org-babel-temporary-directory)
-		 (sketch-dir
-		  (let (sketch-dir-candidate)
-		    (while
-			(progn
-			  (setq sketch-dir-candidate
-				(make-temp-file "processing" t))
-			  (when (string-match-p
-				 "-"
-				 (file-name-nondirectory sketch-dir-candidate))
-			    (delete-directory sketch-dir-candidate)
-			    t)))
-		    sketch-dir-candidate))
-		 (sketch-filename
-		  (concat sketch-dir
-			  "/"
-			  (file-name-nondirectory sketch-dir)
-			  ".pde")))
-	    (with-temp-file sketch-filename (insert sketch-code))
-	    (find-file sketch-filename)
-	    (processing-sketch-run)
-	    (kill-buffer)))
-      (message "Not inside a Processing source block."))))
-
-(defun org-babel-execute:processing (body params)
-  "Execute a block of Processing code.
-This function is called by `org-babel-execute-src-block'."
-  (let ((sketch-code
-	 (org-babel-expand-body:generic
-	  body
-	  params
-	  (org-babel-variable-assignments:processing params))))
-    ;; Results are HTML.
-    (let ((sketch-canvas-id (concat "ob-" (sha1 sketch-code))))
-      (concat "<script src=\""
-	      org-babel-processing-processing-js-filename
-	      "\"></script>\n <script type=\"text/processing\""
-	      " data-processing-target=\""
-	      sketch-canvas-id
-	      "\">\n"
-	      sketch-code
-	      "\n</script> <canvas id=\""
-	      sketch-canvas-id
-	      "\"></canvas>"))))
-
-(defun org-babel-prep-session:processing (_session _params)
-  "Return an error if the :session header argument is set.
-Processing does not support sessions"
-  (error "Processing does not support sessions"))
-
-(defun org-babel-variable-assignments:processing (params)
-  "Return list of processing statements assigning the block's variables."
-  (mapcar #'org-babel-processing-var-to-processing
-	  (org-babel--get-vars params)))
-
-(defun org-babel-processing-var-to-processing (pair)
-  "Convert an elisp value into a Processing variable.
-The elisp value PAIR is converted into Processing code specifying
-a variable of the same value."
-  (let ((var (car pair))
-        (val (let ((v (cdr pair)))
-	       (if (symbolp v) (symbol-name v) v))))
-    (cond
-     ((integerp val)
-      (format "int %S=%S;" var val))
-     ((floatp val)
-      (format "float %S=%S;" var val))
-     ((stringp val)
-      (format "String %S=\"%s\";" var val))
-     ((and (listp val) (not (listp (car val))))
-      (let* ((type (org-babel-processing-define-type val))
-	     (fmt (if (eq 'String type) "\"%s\"" "%s"))
-	     (vect (mapconcat (lambda (e) (format fmt e)) val ", ")))
-	(format "%s[] %S={%s};" type var vect)))
-     ((listp val)
-      (let* ((type (org-babel-processing-define-type val))
-	     (fmt (if (eq 'String type) "\"%s\"" "%s"))
-             (array (mapconcat (lambda (row)
-				 (concat "{"
-					 (mapconcat (lambda (e) (format fmt e))
-						    row ", ")
-					 "}"))
-			       val ",")))
-        (format "%S[][] %S={%s};" type var array))))))
-
-(defun org-babel-processing-define-type (data)
-  "Determine type of DATA.
-
-DATA is a list.  Return type as a symbol.
-
-The type is `String' if any element in DATA is a string.
-Otherwise, it is either `float', if some elements are floats, or
-`int'."
-  (letrec ((type 'int)
-	   (find-type
-	    (lambda (row)
-	      (dolist (e row type)
-		(cond ((listp e) (setq type (funcall find-type e)))
-		      ((stringp e) (throw 'exit 'String))
-		      ((floatp e) (setq type 'float)))))))
-    (catch 'exit (funcall find-type data))))
-
-(provide 'ob-processing)
-
-;;; ob-processing.el ends here
diff --git a/elpa/org-9.1.14/ob-processing.elc b/elpa/org-9.1.14/ob-processing.elc
deleted file mode 100644
index 6ee9f86..0000000
--- a/elpa/org-9.1.14/ob-processing.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-python.el b/elpa/org-9.1.14/ob-python.el
deleted file mode 100644
index a44e5a5..0000000
--- a/elpa/org-9.1.14/ob-python.el
+++ /dev/null
@@ -1,375 +0,0 @@
-;;; ob-python.el --- Babel Functions for Python      -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Authors: Eric Schulte
-;;	 Dan Davison
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating python source code.
-
-;;; Code:
-(require 'ob)
-
-(declare-function org-remove-indentation "org" )
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function py-shell "ext:python-mode" (&optional argprompt))
-(declare-function py-toggle-shells "ext:python-mode" (arg))
-(declare-function run-python "ext:python" (&optional cmd dedicated show))
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("python" . "py"))
-
-(defvar org-babel-default-header-args:python '())
-
-(defcustom org-babel-python-command "python"
-  "Name of the command for executing Python code."
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :group 'org-babel
-  :type 'string)
-
-(defcustom org-babel-python-mode
-  (if (featurep 'python-mode) 'python-mode 'python)
-  "Preferred python mode for use in running python interactively.
-This will typically be either `python' or `python-mode'."
-  :group 'org-babel
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'symbol)
-
-(defcustom org-babel-python-hline-to "None"
-  "Replace hlines in incoming tables with this when translating to python."
-  :group 'org-babel
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-babel-python-None-to 'hline
-  "Replace `None' in python tables with this before returning."
-  :group 'org-babel
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'symbol)
-
-(defun org-babel-execute:python (body params)
-  "Execute a block of Python code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((org-babel-python-command
-	  (or (cdr (assq :python params))
-	      org-babel-python-command))
-	 (session (org-babel-python-initiate-session
-		   (cdr (assq :session params))))
-         (result-params (cdr (assq :result-params params)))
-         (result-type (cdr (assq :result-type params)))
-	 (return-val (when (and (eq result-type 'value) (not session))
-		       (cdr (assq :return params))))
-	 (preamble (cdr (assq :preamble params)))
-         (full-body
-	  (org-babel-expand-body:generic
-	   (concat body (if return-val (format "\nreturn %s" return-val) ""))
-	   params (org-babel-variable-assignments:python params)))
-         (result (org-babel-python-evaluate
-		  session full-body result-type result-params preamble)))
-    (org-babel-reassemble-table
-     result
-     (org-babel-pick-name (cdr (assq :colname-names params))
-			  (cdr (assq :colnames params)))
-     (org-babel-pick-name (cdr (assq :rowname-names params))
-			  (cdr (assq :rownames params))))))
-
-(defun org-babel-prep-session:python (session params)
-  "Prepare SESSION according to the header arguments in PARAMS.
-VARS contains resolved variable references"
-  (let* ((session (org-babel-python-initiate-session session))
-	 (var-lines
-	  (org-babel-variable-assignments:python params)))
-    (org-babel-comint-in-buffer session
-      (mapc (lambda (var)
-              (end-of-line 1) (insert var) (comint-send-input)
-              (org-babel-comint-wait-for-output session)) var-lines))
-    session))
-
-(defun org-babel-load-session:python (session body params)
-  "Load BODY into SESSION."
-  (save-window-excursion
-    (let ((buffer (org-babel-prep-session:python session params)))
-      (with-current-buffer buffer
-        (goto-char (process-mark (get-buffer-process (current-buffer))))
-        (insert (org-babel-chomp body)))
-      buffer)))
-
-;; helper functions
-
-(defun org-babel-variable-assignments:python (params)
-  "Return a list of Python statements assigning the block's variables."
-  (mapcar
-   (lambda (pair)
-     (format "%s=%s"
-	     (car pair)
-	     (org-babel-python-var-to-python (cdr pair))))
-   (org-babel--get-vars params)))
-
-(defun org-babel-python-var-to-python (var)
-  "Convert an elisp value to a python variable.
-Convert an elisp value, VAR, into a string of python source code
-specifying a variable of the same value."
-  (if (listp var)
-      (concat "[" (mapconcat #'org-babel-python-var-to-python var ", ") "]")
-    (if (eq var 'hline)
-	org-babel-python-hline-to
-      (format
-       (if (and (stringp var) (string-match "[\n\r]" var)) "\"\"%S\"\"" "%S")
-       (if (stringp var) (substring-no-properties var) var)))))
-
-(defun org-babel-python-table-or-string (results)
-  "Convert RESULTS into an appropriate elisp value.
-If the results look like a list or tuple, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
-  (let ((res (org-babel-script-escape results)))
-    (if (listp res)
-        (mapcar (lambda (el) (if (eq el 'None)
-                            org-babel-python-None-to el))
-                res)
-      res)))
-
-(defvar org-babel-python-buffers '((:default . "*Python*")))
-
-(defun org-babel-python-session-buffer (session)
-  "Return the buffer associated with SESSION."
-  (cdr (assoc session org-babel-python-buffers)))
-
-(defun org-babel-python-with-earmuffs (session)
-  (let ((name (if (stringp session) session (format "%s" session))))
-    (if (and (string= "*" (substring name 0 1))
-	     (string= "*" (substring name (- (length name) 1))))
-	name
-      (format "*%s*" name))))
-
-(defun org-babel-python-without-earmuffs (session)
-  (let ((name (if (stringp session) session (format "%s" session))))
-    (if (and (string= "*" (substring name 0 1))
-	     (string= "*" (substring name (- (length name) 1))))
-	(substring name 1 (- (length name) 1))
-      name)))
-
-(defvar py-default-interpreter)
-(defvar py-which-bufname)
-(defvar python-shell-buffer-name)
-(defun org-babel-python-initiate-session-by-key (&optional session)
-  "Initiate a python session.
-If there is not a current inferior-process-buffer in SESSION
-then create.  Return the initialized session."
-  (require org-babel-python-mode)
-  (save-window-excursion
-    (let* ((session (if session (intern session) :default))
-           (python-buffer (org-babel-python-session-buffer session))
-	   (cmd (if (member system-type '(cygwin windows-nt ms-dos))
-		    (concat org-babel-python-command " -i")
-		  org-babel-python-command)))
-      (cond
-       ((and (eq 'python org-babel-python-mode)
-	     (fboundp 'run-python)) ; python.el
-	(if (not (version< "24.1" emacs-version))
-	    (run-python cmd)
-	  (unless python-buffer
-	    (setq python-buffer (org-babel-python-with-earmuffs session)))
-	  (let ((python-shell-buffer-name
-		 (org-babel-python-without-earmuffs python-buffer)))
-	    (run-python cmd))))
-       ((and (eq 'python-mode org-babel-python-mode)
-	     (fboundp 'py-shell)) ; python-mode.el
-	;; Make sure that py-which-bufname is initialized, as otherwise
-	;; it will be overwritten the first time a Python buffer is
-	;; created.
-	(py-toggle-shells py-default-interpreter)
-	;; `py-shell' creates a buffer whose name is the value of
-	;; `py-which-bufname' with '*'s at the beginning and end
-	(let* ((bufname (if (and python-buffer (buffer-live-p python-buffer))
-			    (replace-regexp-in-string ;; zap surrounding *
-			     "^\\*\\([^*]+\\)\\*$" "\\1" python-buffer)
-			  (concat "Python-" (symbol-name session))))
-	       (py-which-bufname bufname))
-	  (py-shell)
-	  (setq python-buffer (org-babel-python-with-earmuffs bufname))))
-       (t
-	(error "No function available for running an inferior Python")))
-      (setq org-babel-python-buffers
-	    (cons (cons session python-buffer)
-		  (assq-delete-all session org-babel-python-buffers)))
-      session)))
-
-(defun org-babel-python-initiate-session (&optional session _params)
-  "Create a session named SESSION according to PARAMS."
-  (unless (string= session "none")
-    (org-babel-python-session-buffer
-     (org-babel-python-initiate-session-by-key session))))
-
-(defvar org-babel-python-eoe-indicator "'org_babel_python_eoe'"
-  "A string to indicate that evaluation has completed.")
-(defconst org-babel-python-wrapper-method
-  "
-def main():
-%s
-
-open('%s', 'w').write( str(main()) )")
-(defconst org-babel-python-pp-wrapper-method
-  "
-import pprint
-def main():
-%s
-
-open('%s', 'w').write( pprint.pformat(main()) )")
-
-(defconst org-babel-python--exec-tmpfile
-  (concat
-   "__org_babel_python_fname = '%s'; "
-   "__org_babel_python_fh = open(__org_babel_python_fname); "
-   "exec(compile("
-   "__org_babel_python_fh.read(), __org_babel_python_fname, 'exec'"
-   ")); "
-   "__org_babel_python_fh.close()"))
-
-(defun org-babel-python-evaluate
-  (session body &optional result-type result-params preamble)
-  "Evaluate BODY as Python code."
-  (if session
-      (org-babel-python-evaluate-session
-       session body result-type result-params)
-    (org-babel-python-evaluate-external-process
-     body result-type result-params preamble)))
-
-(defun org-babel-python-evaluate-external-process
-    (body &optional result-type result-params preamble)
-  "Evaluate BODY in external python process.
-If RESULT-TYPE equals `output' then return standard output as a
-string.  If RESULT-TYPE equals `value' then return the value of the
-last statement in BODY, as elisp."
-  (let ((raw
-         (pcase result-type
-           (`output (org-babel-eval org-babel-python-command
-				    (concat (if preamble (concat preamble "\n"))
-					    body)))
-           (`value (let ((tmp-file (org-babel-temp-file "python-")))
-		     (org-babel-eval
-		      org-babel-python-command
-		      (concat
-		       (if preamble (concat preamble "\n") "")
-		       (format
-			(if (member "pp" result-params)
-			    org-babel-python-pp-wrapper-method
-			  org-babel-python-wrapper-method)
-			(mapconcat
-			 (lambda (line) (format "\t%s" line))
-			 (split-string (org-remove-indentation (org-trim body))
-				       "[\r\n]")
-			 "\n")
-			(org-babel-process-file-name tmp-file 'noquote))))
-		     (org-babel-eval-read-file tmp-file))))))
-    (org-babel-result-cond result-params
-      raw
-      (org-babel-python-table-or-string (org-trim raw)))))
-
-(defun org-babel-python-evaluate-session
-    (session body &optional result-type result-params)
-  "Pass BODY to the Python process in SESSION.
-If RESULT-TYPE equals `output' then return standard output as a
-string.  If RESULT-TYPE equals `value' then return the value of the
-last statement in BODY, as elisp."
-  (let* ((send-wait (lambda () (comint-send-input nil t) (sleep-for 0 5)))
-	 (dump-last-value
-	  (lambda
-	    (tmp-file pp)
-	    (mapc
-	     (lambda (statement) (insert statement) (funcall send-wait))
-	     (if pp
-		 (list
-		  "import pprint"
-		  (format "open('%s', 'w').write(pprint.pformat(_))"
-			  (org-babel-process-file-name tmp-file 'noquote)))
-	       (list (format "open('%s', 'w').write(str(_))"
-			     (org-babel-process-file-name tmp-file
-                                                          'noquote)))))))
-	 (last-indent 0)
-	 (input-body (lambda (body)
-		       (dolist (line (split-string body "[\r\n]"))
-			 ;; Insert a blank line to end an indent
-			 ;; block.
-			 (let ((curr-indent (string-match "\\S-" line)))
-			   (if curr-indent
-			       (progn
-				 (when (< curr-indent last-indent)
-				   (insert "")
-				   (funcall send-wait))
-				 (setq last-indent curr-indent))
-			     (setq last-indent 0)))
-			 (insert line)
-			 (funcall send-wait))
-		       (funcall send-wait)))
-         (results
-          (pcase result-type
-            (`output
-	     (let ((body (if (string-match-p ".\n+." body) ; Multiline
-			     (let ((tmp-src-file (org-babel-temp-file
-						  "python-")))
-			       (with-temp-file tmp-src-file (insert body))
-			       (format org-babel-python--exec-tmpfile
-				       tmp-src-file))
-			   body)))
-	       (mapconcat
-		#'org-trim
-		(butlast
-		 (org-babel-comint-with-output
-		     (session org-babel-python-eoe-indicator t body)
-		   (funcall input-body body)
-		   (funcall send-wait) (funcall send-wait)
-		   (insert org-babel-python-eoe-indicator)
-		   (funcall send-wait))
-		 2) "\n")))
-            (`value
-             (let ((tmp-file (org-babel-temp-file "python-")))
-               (org-babel-comint-with-output
-                   (session org-babel-python-eoe-indicator nil body)
-                 (let ((comint-process-echoes nil))
-                   (funcall input-body body)
-                   (funcall dump-last-value tmp-file
-                            (member "pp" result-params))
-                   (funcall send-wait) (funcall send-wait)
-                   (insert org-babel-python-eoe-indicator)
-                   (funcall send-wait)))
-               (org-babel-eval-read-file tmp-file))))))
-    (unless (string= (substring org-babel-python-eoe-indicator 1 -1) results)
-      (org-babel-result-cond result-params
-	results
-        (org-babel-python-table-or-string results)))))
-
-(defun org-babel-python-read-string (string)
-  "Strip \\='s from around Python string."
-  (if (and (string-prefix-p "'" string)
-	   (string-suffix-p "'" string))
-      (substring string 1 -1)
-    string))
-
-(provide 'ob-python)
-
-
-
-;;; ob-python.el ends here
diff --git a/elpa/org-9.1.14/ob-python.elc b/elpa/org-9.1.14/ob-python.elc
deleted file mode 100644
index 7a67ad6..0000000
--- a/elpa/org-9.1.14/ob-python.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-ref.el b/elpa/org-9.1.14/ob-ref.el
deleted file mode 100644
index 3efa17f..0000000
--- a/elpa/org-9.1.14/ob-ref.el
+++ /dev/null
@@ -1,246 +0,0 @@
-;;; ob-ref.el --- Babel Functions for Referencing External Data -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Authors: Eric Schulte
-;;	 Dan Davison
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Functions for referencing data from the header arguments of a
-;; org-babel block.  The syntax of such a reference should be
-
-;;   #+VAR: variable-name=file:resource-id
-
-;; - variable-name :: the name of the variable to which the value
-;;                    will be assigned
-
-;; - file :: path to the file containing the resource, or omitted if
-;;           resource is in the current file
-
-;; - resource-id :: the id or name of the resource
-
-;; So an example of a simple src block referencing table data in the
-;; same file would be
-
-;;  #+NAME: sandbox
-;;  | 1 |         2 | 3 |
-;;  | 4 | org-babel | 6 |
-;;
-;;  #+begin_src emacs-lisp :var table=sandbox
-;;    (message table)
-;;  #+end_src
-
-;;; Code:
-(require 'ob-core)
-(require 'cl-lib)
-
-(declare-function org-babel-lob-get-info "ob-lob" (&optional datum))
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-end-of-meta-data "org" (&optional full))
-(declare-function org-find-property "org" (property &optional value))
-(declare-function org-id-find-id-file "org-id" (id))
-(declare-function org-id-find-id-in-file "org-id" (id file &optional markerp))
-(declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
-(declare-function org-narrow-to-subtree "org" ())
-(declare-function org-show-context "org" (&optional key))
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-babel-update-intermediate nil
-  "Update the in-buffer results of code blocks executed to resolve references.")
-
-(defun org-babel-ref-parse (assignment)
-  "Parse a variable ASSIGNMENT in a header argument.
-
-If the right hand side of the assignment has a literal value
-return that value, otherwise interpret it as a reference to an
-external resource and find its value using `org-babel-ref-resolve'.
-
-Return a list with two elements: the name of the variable, and an
-Emacs Lisp representation of the value of the variable."
-  (when (string-match "\\(.+?\\)=" assignment)
-    (let ((var (org-trim (match-string 1 assignment)))
-	  (ref (org-trim (substring assignment (match-end 0)))))
-      (cons (intern var)
-	    (let ((out (save-excursion
-			 (when org-babel-current-src-block-location
-			   (goto-char (if (markerp org-babel-current-src-block-location)
-					  (marker-position org-babel-current-src-block-location)
-					org-babel-current-src-block-location)))
-			 (org-babel-read ref))))
-	      (if (equal out ref)
-		  (if (and (string-prefix-p "\"" ref)
-			   (string-suffix-p "\"" ref))
-		      (read ref)
-		    (org-babel-ref-resolve ref))
-		out))))))
-
-(defun org-babel-ref-goto-headline-id (id)
-  (or (let ((h (org-find-property "CUSTOM_ID" id)))
-	(when h (goto-char h)))
-      (let* ((file (org-id-find-id-file id))
-	     (m (when file (org-id-find-id-in-file id file 'marker))))
-	(when (and file m)
-	  (message "file:%S" file)
-	  (pop-to-buffer-same-window (marker-buffer m))
-	  (goto-char m)
-	  (move-marker m nil)
-	  (org-show-context)
-	  t))))
-
-(defun org-babel-ref-headline-body ()
-  (save-restriction
-    (org-narrow-to-subtree)
-    (buffer-substring
-     (save-excursion (goto-char (point-min))
-		     (org-end-of-meta-data)
-		     (point))
-     (point-max))))
-
-(defvar org-babel-library-of-babel)
-(defun org-babel-ref-resolve (ref)
-  "Resolve the reference REF and return its value."
-  (save-window-excursion
-    (with-current-buffer (or org-babel-exp-reference-buffer (current-buffer))
-      (save-excursion
-	(let ((case-fold-search t)
-	      args new-refere new-header-args new-referent split-file split-ref
-	      index)
-	  ;; if ref is indexed grab the indices -- beware nested indices
-	  (when (and (string-match "\\[\\([^\\[]+\\)\\]$" ref)
-		     (let ((str (substring ref 0 (match-beginning 0))))
-		       (= (cl-count ?\( str) (cl-count ?\) str))))
-	    (setq index (match-string 1 ref))
-	    (setq ref (substring ref 0 (match-beginning 0))))
-	  ;; assign any arguments to pass to source block
-	  (when (string-match
-		 "^\\(.+?\\)\\(\\[\\(.*\\)\\]\\|\\(\\)\\)(\\(.*\\))$" ref)
-	    (setq new-refere      (match-string 1 ref))
-	    (setq new-header-args (match-string 3 ref))
-	    (setq new-referent    (match-string 5 ref))
-	    (when (> (length new-refere) 0)
-	      (when (> (length new-referent) 0)
-		(setq args (mapcar (lambda (ref) (cons :var ref))
-				   (org-babel-ref-split-args new-referent))))
-	      (when (> (length new-header-args) 0)
-		(setq args (append (org-babel-parse-header-arguments
-				    new-header-args) args)))
-	      (setq ref new-refere)))
-	  (when (string-match "^\\(.+\\):\\(.+\\)$" ref)
-	    (setq split-file (match-string 1 ref))
-	    (setq split-ref (match-string 2 ref))
-	    (find-file split-file)
-	    (setq ref split-ref))
-	  (org-with-wide-buffer
-	   (goto-char (point-min))
-	   (let* ((params (append args '((:results . "silent"))))
-		  (regexp (org-babel-named-data-regexp-for-name ref))
-		  (result
-		   (catch :found
-		     ;; Check for code blocks or named data.
-		     (while (re-search-forward regexp nil t)
-		       ;; Ignore COMMENTed headings and orphaned
-		       ;; affiliated keywords.
-		       (unless (org-in-commented-heading-p)
-			 (let ((e (org-element-at-point)))
-			   (when (equal (org-element-property :name e) ref)
-			     (goto-char
-			      (org-element-property :post-affiliated e))
-			     (pcase (org-element-type e)
-			       (`babel-call
-				(throw :found
-				       (org-babel-execute-src-block
-					nil (org-babel-lob-get-info e) params)))
-			       (`src-block
-				(throw :found
-				       (org-babel-execute-src-block
-					nil nil
-					(and
-					 (not org-babel-update-intermediate)
-					 params))))
-			       ((and (let v (org-babel-read-element e))
-				     (guard v))
-				(throw :found v))
-			       (_ (error "Reference not found")))))))
-		     ;; Check for local or global headlines by ID.
-		     (when (org-babel-ref-goto-headline-id ref)
-		       (throw :found (org-babel-ref-headline-body)))
-		     ;; Check the Library of Babel.
-		     (let ((info (cdr (assq (intern ref)
-					    org-babel-library-of-babel))))
-		       (when info
-			 (throw :found
-				(org-babel-execute-src-block nil info params))))
-		     (error "Reference `%s' not found in this buffer" ref))))
-	     (cond
-	      ((symbolp result) (format "%S" result))
-	      ((and index (listp result))
-	       (org-babel-ref-index-list index result))
-	      (t result)))))))))
-
-(defun org-babel-ref-index-list (index lis)
-  "Return the subset of LIS indexed by INDEX.
-
-Indices are 0 based and negative indices count from the end of
-LIS, so 0 references the first element of LIS and -1 references
-the last.  If INDEX is separated by \",\"s then each \"portion\"
-is assumed to index into the next deepest nesting or dimension.
-
-A valid \"portion\" can consist of either an integer index, two
-integers separated by a \":\" in which case the entire range is
-returned, or an empty string or \"*\" both of which are
-interpreted to mean the entire range and as such are equivalent
-to \"0:-1\"."
-  (if (and (> (length index) 0) (string-match "^\\([^,]*\\),?" index))
-      (let* ((ind-re "\\(\\([-[:digit:]]+\\):\\([-[:digit:]]+\\)\\|\\*\\)")
-	     (lgth (length lis))
-	     (portion (match-string 1 index))
-	     (remainder (substring index (match-end 0)))
-	     (wrap (lambda (num) (if (< num 0) (+ lgth num) num)))
-	     (open (lambda (ls) (if (and (listp ls) (= (length ls) 1)) (car ls) ls))))
-	(funcall
-	 open
-	 (mapcar
-	  (lambda (sub-lis)
-	    (if (listp sub-lis)
-		(org-babel-ref-index-list remainder sub-lis)
-	      sub-lis))
-	  (if (or (= 0 (length portion)) (string-match ind-re portion))
-	      (mapcar
-	       (lambda (n) (nth n lis))
-	       (apply 'org-number-sequence
-		      (if (and (> (length portion) 0) (match-string 2 portion))
-			  (list
-			   (funcall wrap (string-to-number (match-string 2 portion)))
-			   (funcall wrap (string-to-number (match-string 3 portion))))
-			(list (funcall wrap 0) (funcall wrap -1)))))
-	    (list (nth (funcall wrap (string-to-number portion)) lis))))))
-    lis))
-
-(defun org-babel-ref-split-args (arg-string)
-  "Split ARG-STRING into top-level arguments of balanced parenthesis."
-  (mapcar #'org-trim (org-babel-balanced-split arg-string 44)))
-
-
-(provide 'ob-ref)
-
-;;; ob-ref.el ends here
diff --git a/elpa/org-9.1.14/ob-ref.elc b/elpa/org-9.1.14/ob-ref.elc
deleted file mode 100644
index 39de80e..0000000
--- a/elpa/org-9.1.14/ob-ref.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-ruby.el b/elpa/org-9.1.14/ob-ruby.el
deleted file mode 100644
index 7686ac4..0000000
--- a/elpa/org-9.1.14/ob-ruby.el
+++ /dev/null
@@ -1,268 +0,0 @@
-;;; ob-ruby.el --- Babel Functions for Ruby          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating ruby source code.
-
-;;; Requirements:
-
-;; - ruby and irb executables :: http://www.ruby-lang.org/
-;;
-;; - ruby-mode :: Can be installed through ELPA, or from
-;;   http://github.com/eschulte/rinari/raw/master/util/ruby-mode.el
-;;
-;; - inf-ruby mode :: Can be installed through ELPA, or from
-;;   http://github.com/eschulte/rinari/raw/master/util/inf-ruby.el
-
-;;; Code:
-(require 'ob)
-
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function run-ruby "ext:inf-ruby" (&optional command name))
-(declare-function xmp "ext:rcodetools" (&optional option))
-
-(defvar inf-ruby-default-implementation)
-(defvar inf-ruby-implementations)
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("ruby" . "rb"))
-
-(defvar org-babel-default-header-args:ruby '())
-
-(defvar org-babel-ruby-command "ruby"
-  "Name of command to use for executing ruby code.")
-
-(defcustom org-babel-ruby-hline-to "nil"
-  "Replace hlines in incoming tables with this when translating to ruby."
-  :group 'org-babel
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-babel-ruby-nil-to 'hline
-  "Replace nil in ruby tables with this before returning."
-  :group 'org-babel
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'symbol)
-
-(defun org-babel-execute:ruby (body params)
-  "Execute a block of Ruby code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((session (org-babel-ruby-initiate-session
-		   (cdr (assq :session params))))
-         (result-params (cdr (assq :result-params params)))
-         (result-type (cdr (assq :result-type params)))
-         (full-body (org-babel-expand-body:generic
-		     body params (org-babel-variable-assignments:ruby params)))
-         (result (if (member "xmp" result-params)
-		     (with-temp-buffer
-		       (require 'rcodetools)
-		       (insert full-body)
-		       (xmp (cdr (assq :xmp-option params)))
-		       (buffer-string))
-		   (org-babel-ruby-evaluate
-		    session full-body result-type result-params))))
-    (org-babel-reassemble-table
-     (org-babel-result-cond result-params
-       result
-       (org-babel-ruby-table-or-string result))
-     (org-babel-pick-name (cdr (assq :colname-names params))
-			  (cdr (assq :colnames params)))
-     (org-babel-pick-name (cdr (assq :rowname-names params))
-			  (cdr (assq :rownames params))))))
-
-(defun org-babel-prep-session:ruby (session params)
-  "Prepare SESSION according to the header arguments specified in PARAMS."
-  ;; (message "params=%S" params) ;; debugging
-  (let* ((session (org-babel-ruby-initiate-session session))
-         (var-lines (org-babel-variable-assignments:ruby params)))
-    (org-babel-comint-in-buffer session
-      (sit-for .5) (goto-char (point-max))
-      (mapc (lambda (var)
-              (insert var) (comint-send-input nil t)
-              (org-babel-comint-wait-for-output session)
-              (sit-for .1) (goto-char (point-max))) var-lines))
-    session))
-
-(defun org-babel-load-session:ruby (session body params)
-  "Load BODY into SESSION."
-  (save-window-excursion
-    (let ((buffer (org-babel-prep-session:ruby session params)))
-      (with-current-buffer buffer
-        (goto-char (process-mark (get-buffer-process (current-buffer))))
-        (insert (org-babel-chomp body)))
-      buffer)))
-
-;; helper functions
-
-(defun org-babel-variable-assignments:ruby (params)
-  "Return list of ruby statements assigning the block's variables."
-  (mapcar
-   (lambda (pair)
-     (format "%s=%s"
-	     (car pair)
-	     (org-babel-ruby-var-to-ruby (cdr pair))))
-   (org-babel--get-vars params)))
-
-(defun org-babel-ruby-var-to-ruby (var)
-  "Convert VAR into a ruby variable.
-Convert an elisp value into a string of ruby source code
-specifying a variable of the same value."
-  (if (listp var)
-      (concat "[" (mapconcat #'org-babel-ruby-var-to-ruby var ", ") "]")
-    (if (eq var 'hline)
-	org-babel-ruby-hline-to
-      (format "%S" var))))
-
-(defun org-babel-ruby-table-or-string (results)
-  "Convert RESULTS into an appropriate elisp value.
-If RESULTS look like a table, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
-  (let ((res (org-babel-script-escape results)))
-    (if (listp res)
-        (mapcar (lambda (el) (if (not el)
-				 org-babel-ruby-nil-to el))
-                res)
-      res)))
-
-(defun org-babel-ruby-initiate-session (&optional session _params)
-  "Initiate a ruby session.
-If there is not a current inferior-process-buffer in SESSION
-then create one.  Return the initialized session."
-  (unless (string= session "none")
-    (require 'inf-ruby)
-    (let* ((cmd (cdr (assoc inf-ruby-default-implementation
-			    inf-ruby-implementations)))
-	   (buffer (get-buffer (format "*%s*" session)))
-	   (session-buffer (or buffer (save-window-excursion
-					(run-ruby cmd session)
-					(current-buffer)))))
-      (if (org-babel-comint-buffer-livep session-buffer)
-	  (progn (sit-for .25) session-buffer)
-	(sit-for .5)
-	(org-babel-ruby-initiate-session session)))))
-
-(defvar org-babel-ruby-eoe-indicator ":org_babel_ruby_eoe"
-  "String to indicate that evaluation has completed.")
-(defvar org-babel-ruby-f-write
-  "File.open('%s','w'){|f| f.write((_.class == String) ? _ : _.inspect)}")
-(defvar org-babel-ruby-pp-f-write
-  "File.open('%s','w'){|f| $stdout = f; pp(results); $stdout = orig_out}")
-(defvar org-babel-ruby-wrapper-method
-  "
-def main()
-%s
-end
-results = main()
-File.open('%s', 'w'){ |f| f.write((results.class == String) ? results : results.inspect) }
-")
-(defvar org-babel-ruby-pp-wrapper-method
-  "
-require 'pp'
-def main()
-%s
-end
-results = main()
-File.open('%s', 'w') do |f|
-  $stdout = f
-  pp results
-end
-")
-
-(defun org-babel-ruby-evaluate
-    (buffer body &optional result-type result-params)
-  "Pass BODY to the Ruby process in BUFFER.
-If RESULT-TYPE equals `output' then return a list of the outputs
-of the statements in BODY, if RESULT-TYPE equals `value' then
-return the value of the last statement in BODY, as elisp."
-  (if (not buffer)
-      ;; external process evaluation
-      (pcase result-type
-	(`output (org-babel-eval org-babel-ruby-command body))
-	(`value (let ((tmp-file (org-babel-temp-file "ruby-")))
-		  (org-babel-eval
-		   org-babel-ruby-command
-		   (format (if (member "pp" result-params)
-			       org-babel-ruby-pp-wrapper-method
-			     org-babel-ruby-wrapper-method)
-			   body (org-babel-process-file-name tmp-file 'noquote)))
-		  (org-babel-eval-read-file tmp-file))))
-    ;; comint session evaluation
-    (pcase result-type
-      (`output
-       (let ((eoe-string (format "puts \"%s\"" org-babel-ruby-eoe-indicator)))
-	 ;; Force the session to be ready before the actual session
-	 ;; code is run.  There is some problem in comint that will
-	 ;; sometimes show the prompt after the the input has already
-	 ;; been inserted and that throws off the extraction of the
-	 ;; result for Babel.
-	 (org-babel-comint-with-output
-	     (buffer org-babel-ruby-eoe-indicator t eoe-string)
-	   (insert eoe-string) (comint-send-input nil t))
-	 ;; Now we can start the evaluation.
-	 (mapconcat
-	  #'identity
-	  (butlast
-	   (split-string
-	    (mapconcat
-	     #'org-trim
-	     (org-babel-comint-with-output
-		 (buffer org-babel-ruby-eoe-indicator t body)
-	       (mapc
-		(lambda (line)
-		  (insert (org-babel-chomp line)) (comint-send-input nil t))
-		(list "conf.echo=false;_org_prompt_mode=conf.prompt_mode;conf.prompt_mode=:NULL"
-		      body
-		      "conf.prompt_mode=_org_prompt_mode;conf.echo=true"
-		      eoe-string)))
-	     "\n") "[\r\n]") 4) "\n")))
-      (`value
-       (let* ((tmp-file (org-babel-temp-file "ruby-"))
-	      (ppp (or (member "code" result-params)
-		       (member "pp" result-params))))
-	 (org-babel-comint-with-output
-	     (buffer org-babel-ruby-eoe-indicator t body)
-	   (when ppp (insert "require 'pp';") (comint-send-input nil t))
-	   (mapc
-	    (lambda (line)
-	      (insert (org-babel-chomp line)) (comint-send-input nil t))
-	    (append
-	     (list body)
-	     (if (not ppp)
-		 (list (format org-babel-ruby-f-write
-			       (org-babel-process-file-name tmp-file 'noquote)))
-	       (list
-		"results=_" "require 'pp'" "orig_out = $stdout"
-		(format org-babel-ruby-pp-f-write
-			(org-babel-process-file-name tmp-file 'noquote))))
-	     (list org-babel-ruby-eoe-indicator)))
-	   (comint-send-input nil t))
-	 (org-babel-eval-read-file tmp-file))))))
-
-(provide 'ob-ruby)
-
-
-
-;;; ob-ruby.el ends here
diff --git a/elpa/org-9.1.14/ob-ruby.elc b/elpa/org-9.1.14/ob-ruby.elc
deleted file mode 100644
index 3b3c3bf..0000000
--- a/elpa/org-9.1.14/ob-ruby.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-sass.el b/elpa/org-9.1.14/ob-sass.el
deleted file mode 100644
index af55d76..0000000
--- a/elpa/org-9.1.14/ob-sass.el
+++ /dev/null
@@ -1,70 +0,0 @@
-;;; ob-sass.el --- Babel Functions for the Sass CSS generation language -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; For more information on sass see http://sass-lang.com/
-;;
-;; This accepts a 'file' header argument which is the target of the
-;; compiled sass.  The default output type for sass evaluation is
-;; either file (if a 'file' header argument was given) or scalar if no
-;; such header argument was supplied.
-;;
-;; A 'cmdline' header argument can be supplied to pass arguments to
-;; the sass command line.
-
-;;; Requirements:
-
-;; - sass-mode :: http://github.com/nex3/haml/blob/master/extra/sass-mode.el
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-default-header-args:sass '())
-
-(defun org-babel-execute:sass (body params)
-  "Execute a block of Sass code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((file (cdr (assq :file params)))
-         (out-file (or file (org-babel-temp-file "sass-out-")))
-         (cmdline (cdr (assq :cmdline params)))
-         (in-file (org-babel-temp-file "sass-in-"))
-         (cmd (concat "sass " (or cmdline "")
-		      " " (org-babel-process-file-name in-file)
-		      " " (org-babel-process-file-name out-file))))
-    (with-temp-file in-file
-      (insert (org-babel-expand-body:generic body params)))
-    (org-babel-eval cmd "")
-    (if file
-	nil ;; signal that output has already been written to file
-      (with-temp-buffer (insert-file-contents out-file) (buffer-string)))))
-
-(defun org-babel-prep-session:sass (_session _params)
-  "Raise an error because sass does not support sessions."
-  (error "Sass does not support sessions"))
-
-(provide 'ob-sass)
-
-
-
-;;; ob-sass.el ends here
diff --git a/elpa/org-9.1.14/ob-sass.elc b/elpa/org-9.1.14/ob-sass.elc
deleted file mode 100644
index c3638d1..0000000
--- a/elpa/org-9.1.14/ob-sass.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-scheme.el b/elpa/org-9.1.14/ob-scheme.el
deleted file mode 100644
index 0efe5f3..0000000
--- a/elpa/org-9.1.14/ob-scheme.el
+++ /dev/null
@@ -1,233 +0,0 @@
-;;; ob-scheme.el --- Babel Functions for Scheme      -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Authors: Eric Schulte
-;;	    Michael Gauland
-;; Keywords: literate programming, reproducible research, scheme
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Now working with SBCL for both session and external evaluation.
-;;
-;; This certainly isn't optimally robust, but it seems to be working
-;; for the basic use cases.
-
-;;; Requirements:
-
-;; - a working scheme implementation
-;;   (e.g. guile https://www.gnu.org/software/guile/guile.html)
-;;
-;; - for session based evaluation geiser is required, which is available from
-;;   ELPA.
-
-;;; Code:
-(require 'ob)
-(require 'geiser nil t)
-(require 'geiser-impl nil t)
-(defvar geiser-repl--repl)             ; Defined in geiser-repl.el
-(defvar geiser-impl--implementation)   ; Defined in geiser-impl.el
-(defvar geiser-default-implementation) ; Defined in geiser-impl.el
-(defvar geiser-active-implementations) ; Defined in geiser-impl.el
-(defvar geiser-debug-show-debug-p)     ; Defined in geiser-debug.el
-(defvar geiser-debug-jump-to-debug-p)  ; Defined in geiser-debug.el
-(defvar geiser-repl-use-other-window)  ; Defined in geiser-repl.el
-(defvar geiser-repl-window-allow-split)	; Defined in geiser-repl.el
-
-(declare-function run-geiser "ext:geiser-repl" (impl))
-(declare-function geiser-mode "ext:geiser-mode" ())
-(declare-function geiser-eval-region "ext:geiser-mode"
-                  (start end &optional and-go raw nomsg))
-(declare-function geiser-repl-exit "ext:geiser-repl" (&optional arg))
-(declare-function geiser-eval--retort-output "ext:geiser-eval" (ret))
-(declare-function geiser-eval--retort-result-str "ext:geiser-eval" (ret prefix))
-
-(defcustom org-babel-scheme-null-to 'hline
-  "Replace `null' and empty lists in scheme tables with this before returning."
-  :group 'org-babel
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type 'symbol)
-
-(defvar org-babel-default-header-args:scheme '()
-  "Default header arguments for scheme code blocks.")
-
-(defun org-babel-expand-body:scheme (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let ((vars (org-babel--get-vars params))
-	(prepends (cdr (assq :prologue params))))
-    (concat (and prepends (concat prepends "\n"))
-	    (if (null vars) body
-	      (format "(let (%s)\n%s\n)"
-		      (mapconcat
-		       (lambda (var)
-			 (format "%S" (print `(,(car var) ',(cdr var)))))
-		       vars
-		       "\n      ")
-		      body)))))
-
-
-(defvar org-babel-scheme-repl-map (make-hash-table :test #'equal)
-  "Map of scheme sessions to session names.")
-
-(defun org-babel-scheme-cleanse-repl-map ()
-  "Remove dead buffers from the REPL map."
-  (maphash
-   (lambda (x y) (unless (buffer-name y) (remhash x org-babel-scheme-repl-map)))
-   org-babel-scheme-repl-map))
-
-(defun org-babel-scheme-get-session-buffer (session-name)
-  "Look up the scheme buffer for a session; return nil if it doesn't exist."
-  (org-babel-scheme-cleanse-repl-map) ; Prune dead sessions
-  (gethash session-name org-babel-scheme-repl-map))
-
-(defun org-babel-scheme-set-session-buffer (session-name buffer)
-  "Record the scheme buffer used for a given session."
-  (puthash session-name buffer org-babel-scheme-repl-map))
-
-(defun org-babel-scheme-get-buffer-impl (buffer)
-  "Returns the scheme implementation geiser associates with the buffer."
-  (with-current-buffer (set-buffer buffer)
-    geiser-impl--implementation))
-
-(defun org-babel-scheme-get-repl (impl name)
-  "Switch to a scheme REPL, creating it if it doesn't exist:"
-  (let ((buffer (org-babel-scheme-get-session-buffer name)))
-    (or buffer
-	(progn
-	  (run-geiser impl)
-	  (if name
-	      (progn
-		(rename-buffer name t)
-		(org-babel-scheme-set-session-buffer name (current-buffer))))
-	  (current-buffer)))))
-
-(defun org-babel-scheme-make-session-name (buffer name impl)
-  "Generate a name for the session buffer.
-
-For a named session, the buffer name will be the session name.
-
-If the session is unnamed (nil), generate a name.
-
-If the session is `none', use nil for the session name, and
-org-babel-scheme-execute-with-geiser will use a temporary session."
-  (cond ((not name) (concat buffer " " (symbol-name impl) " REPL"))
-	((string= name "none") nil)
-	(name)))
-
-(defmacro org-babel-scheme-capture-current-message (&rest body)
-  "Capture current message in both interactive and noninteractive mode"
-  `(if noninteractive
-       (let ((original-message (symbol-function 'message))
-             (current-message nil))
-         (unwind-protect
-             (progn
-               (defun message (&rest args)
-                 (setq current-message (apply original-message args)))
-               ,@body
-               current-message)
-           (fset 'message original-message)))
-     (progn
-       ,@body
-       (current-message))))
-
-(defun org-babel-scheme-execute-with-geiser (code output impl repl)
-  "Execute code in specified REPL. If the REPL doesn't exist, create it
-using the given scheme implementation.
-
-Returns the output of executing the code if the output parameter
-is true; otherwise returns the last value."
-  (let ((result nil))
-    (with-temp-buffer
-      (insert (format ";; -*- geiser-scheme-implementation: %s -*-" impl))
-      (newline)
-      (insert code)
-      (geiser-mode)
-      (let ((geiser-repl-window-allow-split nil)
-	    (geiser-repl-use-other-window nil))
-	(let ((repl-buffer (save-current-buffer
-			     (org-babel-scheme-get-repl impl repl))))
-	  (when (not (eq impl (org-babel-scheme-get-buffer-impl
-			       (current-buffer))))
-	    (message "Implementation mismatch: %s (%s) %s (%s)" impl (symbolp impl)
-		     (org-babel-scheme-get-buffer-impl (current-buffer))
-		     (symbolp (org-babel-scheme-get-buffer-impl
-			       (current-buffer)))))
-	  (setq geiser-repl--repl repl-buffer)
-	  (setq geiser-impl--implementation nil)
-	  (let ((geiser-debug-jump-to-debug-p nil)
-		(geiser-debug-show-debug-p nil))
-	    (let ((ret (geiser-eval-region (point-min) (point-max))))
-	      (setq result (if output
-			       (geiser-eval--retort-output ret)
-			     (geiser-eval--retort-result-str ret "")))))
-	  (when (not repl)
-	    (save-current-buffer (set-buffer repl-buffer)
-				 (geiser-repl-exit))
-	    (set-process-query-on-exit-flag (get-buffer-process repl-buffer) nil)
-	    (kill-buffer repl-buffer)))))
-    result))
-
-(defun org-babel-scheme--table-or-string (results)
-  "Convert RESULTS into an appropriate elisp value.
-If the results look like a list or tuple, then convert them into an
-Emacs-lisp table, otherwise return the results as a string."
-  (let ((res (org-babel-script-escape results)))
-    (cond ((listp res)
-           (mapcar (lambda (el)
-		     (if (or (null el) (eq el 'null))
-			 org-babel-scheme-null-to
-		       el))
-                   res))
-	  (t res))))
-
-(defun org-babel-execute:scheme (body params)
-  "Execute a block of Scheme code with org-babel.
-This function is called by `org-babel-execute-src-block'"
-  (let* ((source-buffer (current-buffer))
-	 (source-buffer-name (replace-regexp-in-string ;; zap surrounding *
-			      "^ ?\\*\\([^*]+\\)\\*" "\\1"
-			      (buffer-name source-buffer))))
-    (save-excursion
-      (let* ((result-type (cdr (assq :result-type params)))
-	     (impl (or (when (cdr (assq :scheme params))
-			 (intern (cdr (assq :scheme params))))
-		       geiser-default-implementation
-		       (car geiser-active-implementations)))
-	     (session (org-babel-scheme-make-session-name
-		       source-buffer-name (cdr (assq :session params)) impl))
-	     (full-body (org-babel-expand-body:scheme body params))
-	     (result
-	      (org-babel-scheme-execute-with-geiser
-	       full-body		       ; code
-	       (string= result-type "output")  ; output?
-	       impl			       ; implementation
-	       (and (not (string= session "none")) session)))) ; session
-	(let ((table
-	       (org-babel-reassemble-table
-		result
-		(org-babel-pick-name (cdr (assq :colname-names params))
-				     (cdr (assq :colnames params)))
-		(org-babel-pick-name (cdr (assq :rowname-names params))
-				     (cdr (assq :rownames params))))))
-	  (org-babel-scheme--table-or-string table))))))
-
-(provide 'ob-scheme)
-
-;;; ob-scheme.el ends here
diff --git a/elpa/org-9.1.14/ob-scheme.elc b/elpa/org-9.1.14/ob-scheme.elc
deleted file mode 100644
index e9671eb..0000000
--- a/elpa/org-9.1.14/ob-scheme.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-screen.el b/elpa/org-9.1.14/ob-screen.el
deleted file mode 100644
index fb7c8e2..0000000
--- a/elpa/org-9.1.14/ob-screen.el
+++ /dev/null
@@ -1,143 +0,0 @@
-;;; ob-screen.el --- Babel Support for Interactive Terminal -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Benjamin Andresen
-;; Keywords: literate programming, interactive shell
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for interactive terminals.  Mostly shell scripts.
-;; Heavily inspired by 'eev' from Eduardo Ochs
-;;
-;; Adding :cmd and :terminal as header arguments
-;; :terminal must support the -T (title) and -e (command) parameter
-;;
-;; You can test the default setup. (xterm + sh) with
-;; M-x org-babel-screen-test RET
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-screen-location "screen"
-  "The command location for screen.
-In case you want to use a different screen than one selected by your $PATH")
-
-(defvar org-babel-default-header-args:screen
-  '((:results . "silent") (:session . "default") (:cmd . "sh") (:terminal . "xterm"))
-  "Default arguments to use when running screen source blocks.")
-
-(defun org-babel-execute:screen (body params)
-  "Send a block of code via screen to a terminal using Babel.
-\"default\" session is used when none is specified."
-  (message "Sending source code block to interactive terminal session...")
-  (save-window-excursion
-    (let* ((session (cdr (assq :session params)))
-           (socket (org-babel-screen-session-socketname session)))
-      (unless socket (org-babel-prep-session:screen session params))
-      (org-babel-screen-session-execute-string
-       session (org-babel-expand-body:generic body params)))))
-
-(defun org-babel-prep-session:screen (_session params)
-  "Prepare SESSION according to the header arguments specified in PARAMS."
-  (let* ((session (cdr (assq :session params)))
-         (cmd (cdr (assq :cmd params)))
-         (terminal (cdr (assq :terminal params)))
-         (process-name (concat "org-babel: terminal (" session ")")))
-    (apply 'start-process process-name "*Messages*"
-           terminal `("-T" ,(concat "org-babel: " session) "-e" ,org-babel-screen-location
-		      "-c" "/dev/null" "-mS" ,(concat "org-babel-session-" session)
-		      ,cmd))
-    ;; XXX: Is there a better way than the following?
-    (while (not (org-babel-screen-session-socketname session))
-      ;; wait until screen session is available before returning
-      )))
-
-;; helper functions
-
-(defun org-babel-screen-session-execute-string (session body)
-  "If SESSION exists, send BODY to it."
-  (let ((socket (org-babel-screen-session-socketname session)))
-    (when socket
-      (let ((tmpfile (org-babel-screen-session-write-temp-file session body)))
-        (apply 'start-process (concat "org-babel: screen (" session ")") "*Messages*"
-               org-babel-screen-location
-               `("-S" ,socket "-X" "eval" "msgwait 0"
-		 ,(concat "readreg z " tmpfile)
-		 "paste z"))))))
-
-(defun org-babel-screen-session-socketname (session)
-  "Check if SESSION exists by parsing output of \"screen -ls\"."
-  (let* ((screen-ls (shell-command-to-string "screen -ls"))
-         (sockets (delq
-		   nil
-                   (mapcar
-		    (lambda (x)
-		      (when (string-match (rx (or "(Attached)" "(Detached)")) x)
-			x))
-		    (split-string screen-ls "\n"))))
-         (match-socket (car
-			(delq
-			 nil
-			 (mapcar
-			  (lambda (x)
-			    (when (string-match
-				   (concat "org-babel-session-" session) x)
-			      x))
-			  sockets)))))
-    (when match-socket (car (split-string match-socket)))))
-
-(defun org-babel-screen-session-write-temp-file (_session body)
-  "Save BODY in a temp file that is named after SESSION."
-  (let ((tmpfile (org-babel-temp-file "screen-")))
-    (with-temp-file tmpfile
-      (insert body)
-
-      ;; org-babel has superfluous spaces
-      (goto-char (point-min))
-      (delete-matching-lines "^ +$"))
-    tmpfile))
-
-(defun org-babel-screen-test ()
-  "Test if the default setup works.
-The terminal should shortly flicker."
-  (interactive)
-  (let* ((random-string (format "%s" (random 99999)))
-         (tmpfile (org-babel-temp-file "ob-screen-test-"))
-         (body (concat "echo '" random-string "' > " tmpfile "\nexit\n"))
-         tmp-string)
-    (org-babel-execute:screen body org-babel-default-header-args:screen)
-    ;; XXX: need to find a better way to do the following
-    (while (not (file-readable-p tmpfile))
-      ;; do something, otherwise this will be optimized away
-      (format "org-babel-screen: File not readable yet."))
-    (setq tmp-string (with-temp-buffer
-                       (insert-file-contents-literally tmpfile)
-                       (buffer-substring (point-min) (point-max))))
-    (delete-file tmpfile)
-    (message (concat "org-babel-screen: Setup "
-                     (if (string-match random-string tmp-string)
-                         "WORKS."
-		       "DOESN'T work.")))))
-
-(provide 'ob-screen)
-
-
-
-;;; ob-screen.el ends here
diff --git a/elpa/org-9.1.14/ob-screen.elc b/elpa/org-9.1.14/ob-screen.elc
deleted file mode 100644
index e6a8793..0000000
--- a/elpa/org-9.1.14/ob-screen.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-sed.el b/elpa/org-9.1.14/ob-sed.el
deleted file mode 100644
index ca8b754..0000000
--- a/elpa/org-9.1.14/ob-sed.el
+++ /dev/null
@@ -1,105 +0,0 @@
-;;; ob-sed.el --- Babel Functions for Sed Scripts    -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015-2018 Free Software Foundation, Inc.
-
-;; Author: Bjarte Johansen
-;; Keywords: literate programming, reproducible research
-;; Version: 0.1.1
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Provides a way to evaluate sed scripts in Org mode.
-
-;;; Usage:
-
-;; Add to your Emacs config:
-
-;; (org-babel-do-load-languages
-;;  'org-babel-load-languages
-;;  '((sed . t)))
-
-;; In addition to the normal header arguments, ob-sed also provides
-;; :cmd-line and :in-file. :cmd-line allows one to pass other flags to
-;; the sed command like the "--in-place" flag which makes sed edit the
-;; file pass to it instead of outputting to standard out or to a
-;; different file. :in-file is a header arguments that allows one to
-;; tell Org Babel which file the sed script to act on.
-
-;;; Code:
-(require 'ob)
-
-(defvar org-babel-sed-command "sed"
-  "Name of the sed executable command.")
-
-(defvar org-babel-tangle-lang-exts)
-(add-to-list 'org-babel-tangle-lang-exts '("sed" . "sed"))
-
-(defconst org-babel-header-args:sed
-  '((:cmd-line . :any)
-    (:in-file  . :any))
-  "Sed specific header arguments.")
-
-(defvar org-babel-default-header-args:sed '()
-  "Default arguments for evaluating a sed source block.")
-
-(defun org-babel-execute:sed (body params)
-  "Execute a block of sed code with Org Babel.
-BODY is the source inside a sed source block and PARAMS is an
-association list over the source block configurations.  This
-function is called by `org-babel-execute-src-block'."
-  (message "executing sed source code block")
-  (let* ((result-params (cdr (assq :result-params params)))
-         (cmd-line (cdr (assq :cmd-line params)))
-         (in-file (cdr (assq :in-file params)))
-	 (code-file (let ((file (org-babel-temp-file "sed-")))
-                      (with-temp-file file
-			(insert body)) file))
-	 (stdin (let ((stdin (cdr (assq :stdin params))))
-		   (when stdin
-		     (let ((tmp (org-babel-temp-file "sed-stdin-"))
-			   (res (org-babel-ref-resolve stdin)))
-		       (with-temp-file tmp
-			 (insert res))
-		       tmp))))
-         (cmd (mapconcat #'identity
-			 (remq nil
-			       (list org-babel-sed-command
-				     (format "-f \"%s\"" code-file)
-				     cmd-line
-				     in-file))
-			 " ")))
-    (org-babel-reassemble-table
-     (let ((results
-            (cond
-             (stdin (with-temp-buffer
-                      (call-process-shell-command cmd stdin (current-buffer))
-                      (buffer-string)))
-             (t (org-babel-eval cmd "")))))
-       (when results
-         (org-babel-result-cond result-params
-	   results
-	   (let ((tmp (org-babel-temp-file "sed-results-")))
-	     (with-temp-file tmp (insert results))
-	     (org-babel-import-elisp-from-file tmp)))))
-     (org-babel-pick-name
-      (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-     (org-babel-pick-name
-      (cdr (assq :rowname-names params)) (cdr (assq :rownames params))))))
-
-(provide 'ob-sed)
-;;; ob-sed.el ends here
diff --git a/elpa/org-9.1.14/ob-sed.elc b/elpa/org-9.1.14/ob-sed.elc
deleted file mode 100644
index f2685c7..0000000
--- a/elpa/org-9.1.14/ob-sed.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-shell.el b/elpa/org-9.1.14/ob-shell.el
deleted file mode 100644
index 362dfd5..0000000
--- a/elpa/org-9.1.14/ob-shell.el
+++ /dev/null
@@ -1,283 +0,0 @@
-;;; ob-shell.el --- Babel Functions for Shell Evaluation -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating shell source code.
-
-;;; Code:
-(require 'ob)
-(require 'shell)
-(require 'cl-lib)
-
-(declare-function org-babel-comint-in-buffer "ob-comint" (buffer &rest body)
-		  t)
-(declare-function org-babel-comint-wait-for-output "ob-comint" (buffer))
-(declare-function org-babel-comint-buffer-livep "ob-comint" (buffer))
-(declare-function org-babel-comint-with-output "ob-comint" (meta &rest body)
-		  t)
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function orgtbl-to-generic "org-table" (table params))
-
-(defvar org-babel-default-header-args:shell '())
-(defvar org-babel-shell-names)
-
-(defun org-babel-shell-initialize ()
-  "Define execution functions associated to shell names.
-This function has to be called whenever `org-babel-shell-names'
-is modified outside the Customize interface."
-  (interactive)
-  (dolist (name org-babel-shell-names)
-    (eval `(defun ,(intern (concat "org-babel-execute:" name))
-	       (body params)
-	     ,(format "Execute a block of %s commands with Babel." name)
-	     (let ((shell-file-name ,name))
-	       (org-babel-execute:shell body params))))
-    (eval `(defalias ',(intern (concat "org-babel-variable-assignments:" name))
-	     'org-babel-variable-assignments:shell
-	     ,(format "Return list of %s statements assigning to the block's \
-variables."
-		      name)))))
-
-(defcustom org-babel-shell-names
-  '("sh" "bash" "csh" "ash" "dash" "ksh" "mksh" "posh")
-  "List of names of shell supported by babel shell code blocks.
-Call `org-babel-shell-initialize' when modifying this variable
-outside the Customize interface."
-  :group 'org-babel
-  :type '(repeat (string :tag "Shell name: "))
-  :set (lambda (symbol value)
-	 (set-default symbol value)
-	 (org-babel-shell-initialize)))
-
-(defun org-babel-execute:shell (body params)
-  "Execute a block of Shell commands with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((session (org-babel-sh-initiate-session
-		   (cdr (assq :session params))))
-	 (stdin (let ((stdin (cdr (assq :stdin params))))
-                  (when stdin (org-babel-sh-var-to-string
-                               (org-babel-ref-resolve stdin)))))
-	 (cmdline (cdr (assq :cmdline params)))
-         (full-body (org-babel-expand-body:generic
-		     body params (org-babel-variable-assignments:shell params))))
-    (org-babel-reassemble-table
-     (org-babel-sh-evaluate session full-body params stdin cmdline)
-     (org-babel-pick-name
-      (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-     (org-babel-pick-name
-      (cdr (assq :rowname-names params)) (cdr (assq :rownames params))))))
-
-(defun org-babel-prep-session:shell (session params)
-  "Prepare SESSION according to the header arguments specified in PARAMS."
-  (let* ((session (org-babel-sh-initiate-session session))
-	 (var-lines (org-babel-variable-assignments:shell params)))
-    (org-babel-comint-in-buffer session
-      (mapc (lambda (var)
-              (insert var) (comint-send-input nil t)
-              (org-babel-comint-wait-for-output session)) var-lines))
-    session))
-
-(defun org-babel-load-session:shell (session body params)
-  "Load BODY into SESSION."
-  (save-window-excursion
-    (let ((buffer (org-babel-prep-session:shell session params)))
-      (with-current-buffer buffer
-        (goto-char (process-mark (get-buffer-process (current-buffer))))
-        (insert (org-babel-chomp body)))
-      buffer)))
-
-
-;;; Helper functions
-(defun org-babel--variable-assignments:sh-generic
-    (varname values &optional sep hline)
-  "Returns a list of statements declaring the values as a generic variable."
-  (format "%s=%s" varname (org-babel-sh-var-to-sh values sep hline)))
-
-(defun org-babel--variable-assignments:bash_array
-    (varname values &optional sep hline)
-  "Returns a list of statements declaring the values as a bash array."
-  (format "unset %s\ndeclare -a %s=( %s )"
-	  varname varname
-	  (mapconcat
-	   (lambda (value) (org-babel-sh-var-to-sh value sep hline))
-	   values
-	   " ")))
-
-(defun org-babel--variable-assignments:bash_assoc
-    (varname values &optional sep hline)
-  "Returns a list of statements declaring the values as bash associative array."
-  (format "unset %s\ndeclare -A %s\n%s"
-    varname varname
-    (mapconcat
-     (lambda (items)
-       (format "%s[%s]=%s"
-	       varname
-	       (org-babel-sh-var-to-sh (car items) sep hline)
-	       (org-babel-sh-var-to-sh (cdr items) sep hline)))
-     values
-     "\n")))
-
-(defun org-babel--variable-assignments:bash (varname values &optional sep hline)
-  "Represents the parameters as useful Bash shell variables."
-  (pcase values
-    (`((,_ ,_ . ,_) . ,_)		;two-dimensional array
-     (org-babel--variable-assignments:bash_assoc varname values sep hline))
-    (`(,_ . ,_)				;simple list
-     (org-babel--variable-assignments:bash_array varname values sep hline))
-    (_					;scalar value
-     (org-babel--variable-assignments:sh-generic varname values sep hline))))
-
-(defun org-babel-variable-assignments:shell (params)
-  "Return list of shell statements assigning the block's variables."
-  (let ((sep (cdr (assq :separator params)))
-	(hline (when (string= "yes" (cdr (assq :hlines params)))
-		 (or (cdr (assq :hline-string params))
-		     "hline"))))
-    (mapcar
-     (lambda (pair)
-       (if (string-suffix-p "bash" shell-file-name)
-	   (org-babel--variable-assignments:bash
-            (car pair) (cdr pair) sep hline)
-         (org-babel--variable-assignments:sh-generic
-	  (car pair) (cdr pair) sep hline)))
-     (org-babel--get-vars params))))
-
-(defun org-babel-sh-var-to-sh (var &optional sep hline)
-  "Convert an elisp value to a shell variable.
-Convert an elisp var into a string of shell commands specifying a
-var of the same value."
-  (concat "'" (replace-regexp-in-string
-	       "'" "'\"'\"'"
-	       (org-babel-sh-var-to-string var sep hline))
-	  "'"))
-
-(defun org-babel-sh-var-to-string (var &optional sep hline)
-  "Convert an elisp value to a string."
-  (let ((echo-var (lambda (v) (if (stringp v) v (format "%S" v)))))
-    (cond
-     ((and (listp var) (or (listp (car var)) (eq (car var) 'hline)))
-      (orgtbl-to-generic var  (list :sep (or sep "\t") :fmt echo-var
-				    :hline hline)))
-     ((listp var)
-      (mapconcat echo-var var "\n"))
-     (t (funcall echo-var var)))))
-
-(defun org-babel-sh-initiate-session (&optional session _params)
-  "Initiate a session named SESSION according to PARAMS."
-  (when (and session (not (string= session "none")))
-    (save-window-excursion
-      (or (org-babel-comint-buffer-livep session)
-          (progn
-	    (shell session)
-	    ;; Needed for Emacs 23 since the marker is initially
-	    ;; undefined and the filter functions try to use it without
-	    ;; checking.
-	    (set-marker comint-last-output-start (point))
-	    (get-buffer (current-buffer)))))))
-
-(defvar org-babel-sh-eoe-indicator "echo 'org_babel_sh_eoe'"
-  "String to indicate that evaluation has completed.")
-(defvar org-babel-sh-eoe-output "org_babel_sh_eoe"
-  "String to indicate that evaluation has completed.")
-
-(defun org-babel-sh-evaluate (session body &optional params stdin cmdline)
-  "Pass BODY to the Shell process in BUFFER.
-If RESULT-TYPE equals `output' then return a list of the outputs
-of the statements in BODY, if RESULT-TYPE equals `value' then
-return the value of the last statement in BODY."
-  (let ((results
-         (cond
-          ((or stdin cmdline)	       ; external shell script w/STDIN
-           (let ((script-file (org-babel-temp-file "sh-script-"))
-                 (stdin-file (org-babel-temp-file "sh-stdin-"))
-                 (shebang (cdr (assq :shebang params)))
-                 (padline (not (string= "no" (cdr (assq :padline params))))))
-             (with-temp-file script-file
-               (when shebang (insert (concat shebang "\n")))
-               (when padline (insert "\n"))
-               (insert body))
-             (set-file-modes script-file #o755)
-             (with-temp-file stdin-file (insert (or stdin "")))
-             (with-temp-buffer
-               (call-process-shell-command
-                (concat (if shebang script-file
-			  (format "%s %s" shell-file-name script-file))
-			(and cmdline (concat " " cmdline)))
-                stdin-file
-		(current-buffer))
-               (buffer-string))))
-          (session                      ; session evaluation
-           (mapconcat
-            #'org-babel-sh-strip-weird-long-prompt
-            (mapcar
-             #'org-trim
-             (butlast
-              (org-babel-comint-with-output
-                  (session org-babel-sh-eoe-output t body)
-                (mapc
-                 (lambda (line)
-                   (insert line)
-                   (comint-send-input nil t)
-                   (while (save-excursion
-                            (goto-char comint-last-input-end)
-                            (not (re-search-forward
-                                  comint-prompt-regexp nil t)))
-                     (accept-process-output
-                      (get-buffer-process (current-buffer)))))
-                 (append
-                  (split-string (org-trim body) "\n")
-                  (list org-babel-sh-eoe-indicator))))
-              2)) "\n"))
-          ('otherwise                   ; external shell script
-           (if (and (cdr (assq :shebang params))
-                    (> (length (cdr (assq :shebang params))) 0))
-               (let ((script-file (org-babel-temp-file "sh-script-"))
-                     (shebang (cdr (assq :shebang params)))
-                     (padline (not (equal "no" (cdr (assq :padline params))))))
-                 (with-temp-file script-file
-                   (when shebang (insert (concat shebang "\n")))
-                   (when padline (insert "\n"))
-                   (insert body))
-                 (set-file-modes script-file #o755)
-                 (org-babel-eval script-file ""))
-             (org-babel-eval shell-file-name (org-trim body)))))))
-    (when results
-      (let ((result-params (cdr (assq :result-params params))))
-        (org-babel-result-cond result-params
-          results
-          (let ((tmp-file (org-babel-temp-file "sh-")))
-            (with-temp-file tmp-file (insert results))
-            (org-babel-import-elisp-from-file tmp-file)))))))
-
-(defun org-babel-sh-strip-weird-long-prompt (string)
-  "Remove prompt cruft from a string of shell output."
-  (while (string-match "^% +[\r\n$]+ *" string)
-    (setq string (substring string (match-end 0))))
-  string)
-
-(provide 'ob-shell)
-
-
-
-;;; ob-shell.el ends here
diff --git a/elpa/org-9.1.14/ob-shell.elc b/elpa/org-9.1.14/ob-shell.elc
deleted file mode 100644
index bb3b18b..0000000
--- a/elpa/org-9.1.14/ob-shell.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-shen.el b/elpa/org-9.1.14/ob-shen.el
deleted file mode 100644
index d81e7d6..0000000
--- a/elpa/org-9.1.14/ob-shen.el
+++ /dev/null
@@ -1,78 +0,0 @@
-;;; ob-shen.el --- Babel Functions for Shen          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research, shen
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Currently this only works using session evaluation as there is no
-;; defined method for executing shen code outside of a session.
-
-;;; Requirements:
-
-;; - shen-mode and inf-shen will soon be available through the GNU
-;;   elpa, however in the interim they are available at
-;;   https://github.com/eschulte/shen-mode
-
-;;; Code:
-(require 'ob)
-
-(declare-function shen-eval-defun "ext:inf-shen" (&optional and-go))
-(declare-function org-babel-ruby-var-to-ruby "ob-ruby" (var))
-
-(defvar org-babel-default-header-args:shen '()
-  "Default header arguments for shen code blocks.")
-
-(defun org-babel-expand-body:shen (body params)
-  "Expand BODY according to PARAMS, return the expanded body."
-  (let ((vars (org-babel--get-vars params)))
-    (if (> (length vars) 0)
-        (concat "(let "
-                (mapconcat (lambda (var)
-			     (format "%s %s" (car var)
-				     (org-babel-shen-var-to-shen (cdr var))))
-			   vars " ")
-		body ")")
-      body)))
-
-(defun org-babel-shen-var-to-shen (var)
-  "Convert VAR into a shen variable."
-  (if (listp var)
-      (concat "[" (mapconcat #'org-babel-ruby-var-to-ruby var " ") "]")
-    (format "%S" var)))
-
-(defun org-babel-execute:shen (body params)
-  "Execute a block of Shen code with org-babel.
-This function is called by `org-babel-execute-src-block'"
-  (require 'inf-shen)
-  (let* ((result-params (cdr (assq :result-params params)))
-         (full-body (org-babel-expand-body:shen body params)))
-    (let ((results
-           (with-temp-buffer
-             (insert full-body)
-             (call-interactively #'shen-eval-defun))))
-      (org-babel-result-cond result-params
-        results
-        (condition-case nil (org-babel-script-escape results)
-          (error results))))))
-
-(provide 'ob-shen)
-;;; ob-shen.el ends here
diff --git a/elpa/org-9.1.14/ob-shen.elc b/elpa/org-9.1.14/ob-shen.elc
deleted file mode 100644
index 6a38f39..0000000
--- a/elpa/org-9.1.14/ob-shen.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-sql.el b/elpa/org-9.1.14/ob-sql.el
deleted file mode 100644
index 959ede3..0000000
--- a/elpa/org-9.1.14/ob-sql.el
+++ /dev/null
@@ -1,332 +0,0 @@
-;;; ob-sql.el --- Babel Functions for SQL            -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating sql source code.
-;; (see also ob-sqlite.el)
-;;
-;; SQL is somewhat unique in that there are many different engines for
-;; the evaluation of sql (Mysql, PostgreSQL, etc...), so much of this
-;; file will have to be implemented engine by engine.
-;;
-;; Also SQL evaluation generally takes place inside of a database.
-;;
-;; Header args used:
-;; - engine
-;; - cmdline
-;; - dbhost
-;; - dbport
-;; - dbuser
-;; - dbpassword
-;; - database
-;; - colnames (default, nil, means "yes")
-;; - result-params
-;; - out-file
-;;
-;; The following are used but not really implemented for SQL:
-;; - colname-names
-;; - rownames
-;; - rowname-names
-;;
-;; Engines supported:
-;; - mysql
-;; - dbi
-;; - mssql
-;; - sqsh
-;; - postgresql
-;; - oracle
-;; - vertica
-;;
-;; TODO:
-;;
-;; - support for sessions
-;; - support for more engines
-;; - what's a reasonable way to drop table data into SQL?
-;;
-
-;;; Code:
-(require 'ob)
-
-(declare-function org-table-import "org-table" (file arg))
-(declare-function orgtbl-to-csv "org-table" (table params))
-(declare-function org-table-to-lisp "org-table" (&optional txt))
-(declare-function cygwin-convert-file-name-to-windows "cygw32.c" (file &optional absolute-p))
-
-(defvar org-babel-default-header-args:sql '())
-
-(defconst org-babel-header-args:sql
-  '((engine	       . :any)
-    (out-file	       . :any)
-    (dbhost	       . :any)
-    (dbport	       . :any)
-    (dbuser	       . :any)
-    (dbpassword	       . :any)
-    (database	       . :any))
-  "SQL-specific header arguments.")
-
-(defun org-babel-expand-body:sql (body params)
-  "Expand BODY according to the values of PARAMS."
-  (org-babel-sql-expand-vars
-   body (org-babel--get-vars params)))
-
-(defun org-babel-sql-dbstring-mysql (host port user password database)
-  "Make MySQL cmd line args for database connection.  Pass nil to omit that arg."
-  (combine-and-quote-strings
-   (delq nil
-	 (list (when host     (concat "-h" host))
-	       (when port     (format "-P%d" port))
-	       (when user     (concat "-u" user))
-	       (when password (concat "-p" password))
-	       (when database (concat "-D" database))))))
-
-(defun org-babel-sql-dbstring-postgresql (host port user database)
-  "Make PostgreSQL command line args for database connection.
-Pass nil to omit that arg."
-  (combine-and-quote-strings
-   (delq nil
-	 (list (when host (concat "-h" host))
-	       (when port (format "-p%d" port))
-	       (when user (concat "-U" user))
-	       (when database (concat "-d" database))))))
-
-(defun org-babel-sql-dbstring-oracle (host port user password database)
-  "Make Oracle command line args for database connection."
-  (format "%s/%s@%s:%s/%s" user password host port database))
-
-(defun org-babel-sql-dbstring-mssql (host user password database)
-  "Make sqlcmd command line args for database connection.
-`sqlcmd' is the preferred command line tool to access Microsoft
-SQL Server on Windows and Linux platform."
-  (mapconcat #'identity
-	     (delq nil
-		   (list (when host (format "-S \"%s\"" host))
-			 (when user (format "-U \"%s\"" user))
-			 (when password (format "-P \"%s\"" password))
-			 (when database (format "-d \"%s\"" database))))
-	     " "))
-
-(defun org-babel-sql-dbstring-sqsh (host user password database)
-  "Make sqsh command line args for database connection.
-\"sqsh\" is one method to access Sybase or MS SQL via Linux platform"
-  (mapconcat #'identity
-             (delq nil
-                   (list  (when host     (format "-S \"%s\"" host))
-                          (when user     (format "-U \"%s\"" user))
-                          (when password (format "-P \"%s\"" password))
-                          (when database (format "-D \"%s\"" database))))
-             " "))
-
-(defun org-babel-sql-dbstring-vertica (host port user password database)
-  "Make Vertica command line args for database connection. Pass nil to omit that arg."
-  (mapconcat #'identity
-	      (delq nil
-		    (list (when host     (format "-h %s" host))
-			  (when port     (format "-p %d" port))
-			  (when user     (format "-U %s" user))
-			  (when password (format "-w %s" (shell-quote-argument password) ))
-			  (when database (format "-d %s" database))))
-	      " "))
-
-(defun org-babel-sql-convert-standard-filename (file)
-  "Convert FILE to OS standard file name.
-If in Cygwin environment, uses Cygwin specific function to
-convert the file name.  In a Windows-NT environment, do nothing.
-Otherwise, use Emacs' standard conversion function."
-  (cond ((fboundp 'cygwin-convert-file-name-to-windows)
-	 (format "%S" (cygwin-convert-file-name-to-windows file)))
-	((string= "windows-nt" system-type) file)
-	(t (format "%S" (convert-standard-filename file)))))
-
-(defun org-babel-execute:sql (body params)
-  "Execute a block of Sql code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (let* ((result-params (cdr (assq :result-params params)))
-         (cmdline (cdr (assq :cmdline params)))
-         (dbhost (cdr (assq :dbhost params)))
-         (dbport (cdr (assq :dbport params)))
-         (dbuser (cdr (assq :dbuser params)))
-         (dbpassword (cdr (assq :dbpassword params)))
-         (database (cdr (assq :database params)))
-         (engine (cdr (assq :engine params)))
-         (colnames-p (not (equal "no" (cdr (assq :colnames params)))))
-         (in-file (org-babel-temp-file "sql-in-"))
-         (out-file (or (cdr (assq :out-file params))
-                       (org-babel-temp-file "sql-out-")))
-	 (header-delim "")
-         (command (pcase (intern engine)
-                    (`dbi (format "dbish --batch %s < %s | sed '%s' > %s"
-				  (or cmdline "")
-				  (org-babel-process-file-name in-file)
-				  "/^+/d;s/^|//;s/(NULL)/ /g;$d"
-				  (org-babel-process-file-name out-file)))
-                    (`monetdb (format "mclient -f tab %s < %s > %s"
-				      (or cmdline "")
-				      (org-babel-process-file-name in-file)
-				      (org-babel-process-file-name out-file)))
-		    (`mssql (format "sqlcmd %s -s \"\t\" %s -i %s -o %s"
-				    (or cmdline "")
-				    (org-babel-sql-dbstring-mssql
-				     dbhost dbuser dbpassword database)
-				    (org-babel-sql-convert-standard-filename
-				     (org-babel-process-file-name in-file))
-				    (org-babel-sql-convert-standard-filename
-				     (org-babel-process-file-name out-file))))
-                    (`mysql (format "mysql %s %s %s < %s > %s"
-				    (org-babel-sql-dbstring-mysql
-				     dbhost dbport dbuser dbpassword database)
-				    (if colnames-p "" "-N")
-				    (or cmdline "")
-				    (org-babel-process-file-name in-file)
-				    (org-babel-process-file-name out-file)))
-		    (`postgresql (format
-				  "%spsql --set=\"ON_ERROR_STOP=1\" %s -A -P \
-footer=off -F \"\t\"  %s -f %s -o %s %s"
-				  (if dbpassword
-				      (format "PGPASSWORD=%s " dbpassword)
-				    "")
-				  (if colnames-p "" "-t")
-				  (org-babel-sql-dbstring-postgresql
-				   dbhost dbport dbuser database)
-				  (org-babel-process-file-name in-file)
-				  (org-babel-process-file-name out-file)
-				  (or cmdline "")))
-		    (`sqsh (format "sqsh %s %s -i %s -o %s -m csv"
-				   (or cmdline "")
-				   (org-babel-sql-dbstring-sqsh
-				    dbhost dbuser dbpassword database)
-				   (org-babel-sql-convert-standard-filename
-				    (org-babel-process-file-name in-file))
-				   (org-babel-sql-convert-standard-filename
-				    (org-babel-process-file-name out-file))))
-		    (`vertica (format "vsql %s -f %s -o %s %s"
-				    (org-babel-sql-dbstring-vertica
-				     dbhost dbport dbuser dbpassword database)
-				    (org-babel-process-file-name in-file)
-				    (org-babel-process-file-name out-file)
-				    (or cmdline "")))
-                    (`oracle (format
-			      "sqlplus -s %s < %s > %s"
-			      (org-babel-sql-dbstring-oracle
-			       dbhost dbport dbuser dbpassword database)
-			      (org-babel-process-file-name in-file)
-			      (org-babel-process-file-name out-file)))
-                    (_ (error "No support for the %s SQL engine" engine)))))
-    (with-temp-file in-file
-      (insert
-       (pcase (intern engine)
-	 (`dbi "/format partbox\n")
-         (`oracle "SET PAGESIZE 50000
-SET NEWPAGE 0
-SET TAB OFF
-SET SPACE 0
-SET LINESIZE 9999
-SET ECHO OFF
-SET FEEDBACK OFF
-SET VERIFY OFF
-SET HEADING ON
-SET MARKUP HTML OFF SPOOL OFF
-SET COLSEP '|'
-
-")
-	 ((or `mssql `sqsh) "SET NOCOUNT ON
-
-")
-	 (`vertica "\\a\n")
-	 (_ ""))
-       (org-babel-expand-body:sql body params)
-       ;; "sqsh" requires "go" inserted at EOF.
-       (if (string= engine "sqsh") "\ngo" "")))
-    (org-babel-eval command "")
-    (org-babel-result-cond result-params
-      (with-temp-buffer
-	(progn (insert-file-contents-literally out-file) (buffer-string)))
-      (with-temp-buffer
-	(cond
-	 ((memq (intern engine) '(dbi mysql postgresql sqsh vertica))
-	  ;; Add header row delimiter after column-names header in first line
-	  (cond
-	   (colnames-p
-	    (with-temp-buffer
-	      (insert-file-contents out-file)
-	      (goto-char (point-min))
-	      (forward-line 1)
-	      (insert "-\n")
-	      (setq header-delim "-")
-	      (write-file out-file)))))
-	 (t
-	  ;; Need to figure out the delimiter for the header row
-	  (with-temp-buffer
-	    (insert-file-contents out-file)
-	    (goto-char (point-min))
-	    (when (re-search-forward "^\\(-+\\)[^-]" nil t)
-	      (setq header-delim (match-string-no-properties 1)))
-	    (goto-char (point-max))
-	    (forward-char -1)
-	    (while (looking-at "\n")
-	      (delete-char 1)
-	      (goto-char (point-max))
-	      (forward-char -1))
-	    (write-file out-file))))
-	(org-table-import out-file (if (string= engine "sqsh") '(4) '(16)))
-	(org-babel-reassemble-table
-	 (mapcar (lambda (x)
-		   (if (string= (car x) header-delim)
-		       'hline
-		     x))
-		 (org-table-to-lisp))
-	 (org-babel-pick-name (cdr (assq :colname-names params))
-			      (cdr (assq :colnames params)))
-	 (org-babel-pick-name (cdr (assq :rowname-names params))
-			      (cdr (assq :rownames params))))))))
-
-(defun org-babel-sql-expand-vars (body vars)
-  "Expand the variables held in VARS in BODY."
-  (mapc
-   (lambda (pair)
-     (setq body
-	   (replace-regexp-in-string
-	    (format "$%s" (car pair))
-	    (let ((val (cdr pair)))
-              (if (listp val)
-                  (let ((data-file (org-babel-temp-file "sql-data-")))
-                    (with-temp-file data-file
-                      (insert (orgtbl-to-csv
-                               val '(:fmt (lambda (el) (if (stringp el)
-                                                      el
-                                                    (format "%S" el)))))))
-                    data-file)
-                (if (stringp val) val (format "%S" val))))
-	    body)))
-   vars)
-  body)
-
-(defun org-babel-prep-session:sql (_session _params)
-  "Raise an error because Sql sessions aren't implemented."
-  (error "SQL sessions not yet implemented"))
-
-(provide 'ob-sql)
-
-
-
-;;; ob-sql.el ends here
diff --git a/elpa/org-9.1.14/ob-sql.elc b/elpa/org-9.1.14/ob-sql.elc
deleted file mode 100644
index 8f6a54b..0000000
--- a/elpa/org-9.1.14/ob-sql.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-sqlite.el b/elpa/org-9.1.14/ob-sqlite.el
deleted file mode 100644
index 42528a3..0000000
--- a/elpa/org-9.1.14/ob-sqlite.el
+++ /dev/null
@@ -1,158 +0,0 @@
-;;; ob-sqlite.el --- Babel Functions for SQLite Databases -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating sqlite source code.
-
-;;; Code:
-(require 'ob)
-
-(declare-function org-fill-template "org" (template alist))
-(declare-function org-table-convert-region "org-table"
-		  (beg0 end0 &optional separator))
-(declare-function orgtbl-to-csv "org-table" (table params))
-(declare-function org-table-to-lisp "org-table" (&optional txt))
-
-(defvar org-babel-default-header-args:sqlite '())
-
-(defvar org-babel-header-args:sqlite
-  '((db        . :any)
-    (header    . :any)
-    (echo      . :any)
-    (bail      . :any)
-    (csv       . :any)
-    (column    . :any)
-    (html      . :any)
-    (line      . :any)
-    (list      . :any)
-    (separator . :any)
-    (nullvalue . :any))
-  "Sqlite specific header args.")
-
-(defun org-babel-expand-body:sqlite (body params)
-  "Expand BODY according to the values of PARAMS."
-  (org-babel-sqlite-expand-vars
-   body (org-babel--get-vars params)))
-
-(defvar org-babel-sqlite3-command "sqlite3")
-
-(defun org-babel-execute:sqlite (body params)
-  "Execute a block of Sqlite code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (let ((result-params (split-string (or (cdr (assq :results params)) "")))
-	(db (cdr (assq :db params)))
-	(separator (cdr (assq :separator params)))
-	(nullvalue (cdr (assq :nullvalue params)))
-	(headers-p (equal "yes" (cdr (assq :colnames params))))
-	(others (delq nil (mapcar
-			   (lambda (arg) (car (assq arg params)))
-			   (list :header :echo :bail :column
-				 :csv :html :line :list)))))
-    (unless db (error "ob-sqlite: can't evaluate without a database"))
-    (with-temp-buffer
-      (insert
-       (org-babel-eval
-	(org-fill-template
-	 "%cmd %header %separator %nullvalue %others %csv %db "
-	 (list
-	  (cons "cmd" org-babel-sqlite3-command)
-	  (cons "header" (if headers-p "-header" "-noheader"))
-	  (cons "separator"
-		(if separator (format "-separator %s" separator) ""))
-	  (cons "nullvalue"
-		(if nullvalue (format "-nullvalue %s" nullvalue) ""))
-	  (cons "others"
-		(mapconcat
-		 (lambda (arg) (format "-%s" (substring (symbol-name arg) 1)))
-		 others " "))
-	  ;; for easy table parsing, default header type should be -csv
-	  (cons "csv" (if (or (member :csv others) (member :column others)
-			      (member :line others) (member :list others)
-			      (member :html others) separator)
-			  ""
-			"-csv"))
-	  (cons "db " db)))
-	;; body of the code block
-	(org-babel-expand-body:sqlite body params)))
-      (org-babel-result-cond result-params
-	(buffer-string)
-	(if (equal (point-min) (point-max))
-	    ""
-	  (org-table-convert-region (point-min) (point-max)
-				    (if (or (member :csv others)
-					    (member :column others)
-					    (member :line others)
-					    (member :list others)
-					    (member :html others) separator)
-					nil
-				      '(4)))
-	  (org-babel-sqlite-table-or-scalar
-	   (org-babel-sqlite-offset-colnames
-	    (org-table-to-lisp) headers-p)))))))
-
-(defun org-babel-sqlite-expand-vars (body vars)
-  "Expand the variables held in VARS in BODY."
-  ;; FIXME: Redundancy with org-babel-sql-expand-vars!
-  (mapc
-   (lambda (pair)
-     (setq body
-	   (replace-regexp-in-string
-	    (format "$%s" (car pair))
-	    (let ((val (cdr pair)))
-              (if (listp val)
-                  (let ((data-file (org-babel-temp-file "sqlite-data-")))
-                    (with-temp-file data-file
-                      (insert (orgtbl-to-csv val nil)))
-                    data-file)
-                (if (stringp val) val (format "%S" val))))
-	    body)))
-   vars)
-  body)
-
-(defun org-babel-sqlite-table-or-scalar (result)
-  "If RESULT looks like a trivial table, then unwrap it."
-  (if (and (equal 1 (length result))
-	   (equal 1 (length (car result))))
-      (org-babel-read (caar result))
-    (mapcar (lambda (row)
-	      (if (eq 'hline row)
-		  'hline
-		(mapcar #'org-babel-string-read row))) result)))
-
-(defun org-babel-sqlite-offset-colnames (table headers-p)
-  "If HEADERS-P is non-nil then offset the first row as column names."
-  (if headers-p
-      (cons (car table) (cons 'hline (cdr table)))
-    table))
-
-(defun org-babel-prep-session:sqlite (_session _params)
-  "Raise an error because support for SQLite sessions isn't implemented.
-Prepare SESSION according to the header arguments specified in PARAMS."
-  (error "SQLite sessions not yet implemented"))
-
-(provide 'ob-sqlite)
-
-
-
-;;; ob-sqlite.el ends here
diff --git a/elpa/org-9.1.14/ob-sqlite.elc b/elpa/org-9.1.14/ob-sqlite.elc
deleted file mode 100644
index 5744e15..0000000
--- a/elpa/org-9.1.14/ob-sqlite.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-stan.el b/elpa/org-9.1.14/ob-stan.el
deleted file mode 100644
index ffc2681..0000000
--- a/elpa/org-9.1.14/ob-stan.el
+++ /dev/null
@@ -1,85 +0,0 @@
-;;; ob-stan.el --- Babel Functions for Stan          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015-2018 Free Software Foundation, Inc.
-
-;; Author: Kyle Meyer
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Org-Babel support for evaluating Stan [1] source code.
-;;
-;; Evaluating a Stan block can produce two different results.
-;;
-;; 1) Dump the source code contents to a file.
-;;
-;;    This file can then be used as a variable in other blocks, which
-;;    allows interfaces like RStan to use the model.
-;;
-;; 2) Compile the contents to a model file.
-;;
-;;    This provides access to the CmdStan interface.  To use this, set
-;;    `org-babel-stan-cmdstan-directory' and provide a :file argument
-;;    that does not end in ".stan".
-;;
-;; For more information and usage examples, visit
-;; https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-stan.html
-;;
-;; [1] http://mc-stan.org/
-
-;;; Code:
-(require 'ob)
-(require 'org-compat)
-
-(defcustom org-babel-stan-cmdstan-directory nil
-  "CmdStan source directory.
-Call \"make\" from this directory to compile the Stan block.
-When nil, executing Stan blocks dumps the content to a file."
-  :group 'org-babel
-  :type '(choice
-	  (directory :tag "Compilation directory")
-	  (const :tag "Dump to a file" nil)))
-
-(defvar org-babel-default-header-args:stan
-  '((:results . "file")))
-
-(defun org-babel-execute:stan (body params)
-  "Generate Stan file from BODY according to PARAMS.
-A :file header argument must be given.  If
-`org-babel-stan-cmdstan-directory' is non-nil and the file name
-does not have a \".stan\" extension, save an intermediate
-\".stan\" file and compile the block to the named file.
-Otherwise, write the Stan code directly to the named file."
-  (let ((file (expand-file-name
-	       (or (cdr (assq :file params))
-		   (user-error "Set :file argument to execute Stan blocks")))))
-    (if (or (not org-babel-stan-cmdstan-directory)
-	    (string-match-p "\\.stan\\'" file))
-	(with-temp-file file (insert body))
-      (with-temp-file (concat file ".stan") (insert body))
-      (let ((default-directory org-babel-stan-cmdstan-directory))
-	(call-process-shell-command (concat "make " file))))
-    nil))		; Signal that output has been written to file.
-
-(defun org-babel-prep-session:stan (_session _params)
-  "Return an error because Stan does not support sessions."
-  (user-error "Stan does not support sessions"))
-
-(provide 'ob-stan)
-;;; ob-stan.el ends here
diff --git a/elpa/org-9.1.14/ob-stan.elc b/elpa/org-9.1.14/ob-stan.elc
deleted file mode 100644
index ae97e3f..0000000
--- a/elpa/org-9.1.14/ob-stan.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-table.el b/elpa/org-9.1.14/ob-table.el
deleted file mode 100644
index f6a5c88..0000000
--- a/elpa/org-9.1.14/ob-table.el
+++ /dev/null
@@ -1,153 +0,0 @@
-;;; ob-table.el --- Support for Calling Babel Functions from Tables -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Should allow calling functions from Org tables using the function
-;; `org-sbe' as so...
-
-;; #+begin_src emacs-lisp :results silent
-;;   (defun fibbd (n) (if (< n 2) 1 (+ (fibbd (- n 1)) (fibbd (- n 2)))))
-;; #+end_src
-
-;; #+name: fibbd
-;; #+begin_src emacs-lisp :var n=2 :results silent
-;; (fibbd n)
-;; #+end_src
-
-;; | original | fibbd  |
-;; |----------+--------|
-;; |        0 |        |
-;; |        1 |        |
-;; |        2 |        |
-;; |        3 |        |
-;; |        4 |        |
-;; |        5 |        |
-;; |        6 |        |
-;; |        7 |        |
-;; |        8 |        |
-;; |        9 |        |
-;; #+TBLFM: $2='(org-sbe "fibbd" (n $1))
-
-;; NOTE: The quotation marks around the function name, 'fibbd' here,
-;; are optional.
-
-;;; Code:
-(require 'ob-core)
-
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defun org-babel-table-truncate-at-newline (string)
-  "Replace newline character with ellipses.
-If STRING ends in a newline character, then remove the newline
-character and replace it with ellipses."
-  (if (and (stringp string) (string-match "[\n\r]\\(.\\)?" string))
-      (concat (substring string 0 (match-beginning 0))
-	      (when (match-string 1 string) "...")) string))
-
-(defmacro org-sbe (source-block &rest variables)
-  "Return the results of calling SOURCE-BLOCK with VARIABLES.
-
-Each element of VARIABLES should be a list of two elements: the
-first element is the name of the variable and second element is a
-string of its value.
-
-So this `org-sbe' construct
-
- (org-sbe \"source-block\" (n $2) (m 3))
-
-is the equivalent of the following source code block:
-
- #+begin_src emacs-lisp :var results=source-block(n=val_at_col_2, m=3) :results silent
- results
- #+end_src
-
-NOTE: The quotation marks around the function name,
-'source-block', are optional.
-
-NOTE: By default, string variable names are interpreted as
-references to source-code blocks, to force interpretation of a
-cell's value as a string, prefix the identifier a \"$\" (e.g.,
-\"$$2\" instead of \"$2\" or \"$@2$2\" instead of \"@2$2\").
-
-NOTE: It is also possible to pass header arguments to the code
-block.  In this case a table cell should hold the string value of
-the header argument which can then be passed before all variables
-as shown in the example below.
-
-| 1 | 2 | :file nothing.png | nothing.png |
-#+TBLFM: @1$4=\\='(org-sbe test-sbe $3 (x $1) (y $2))"
-  (declare (debug (form form)))
-  (let* ((header-args (if (stringp (car variables)) (car variables) ""))
-	 (variables (if (stringp (car variables)) (cdr variables) variables)))
-    (let* (quote
-	   (variables
-	    (mapcar
-	     (lambda (var)
-	       ;; ensure that all cells prefixed with $'s are strings
-	       (cons (car var)
-		     (delq nil (mapcar
-				(lambda (el)
-				  (if (eq '$ el)
-				      (prog1 nil (setq quote t))
-				    (prog1
-					(cond
-					 (quote (format "\"%s\"" el))
-					 ((stringp el) (org-no-properties el))
-					 (t el))
-				      (setq quote nil))))
-				(cdr var)))))
-	     variables)))
-      (unless (stringp source-block)
-	(setq source-block (symbol-name source-block)))
-      (let ((result
-             (if (and source-block (> (length source-block) 0))
-                 (let ((params
-                        ;; FIXME: Why `eval'?!?!?
-                        (eval `(org-babel-parse-header-arguments
-                                (concat
-                                 ":var results="
-                                 ,source-block
-                                 "[" ,header-args "]"
-                                 "("
-                                 (mapconcat
-                                  (lambda (var-spec)
-                                    (if (> (length (cdr var-spec)) 1)
-                                        (format "%S='%S"
-                                                (car var-spec)
-                                                (mapcar #'read (cdr var-spec)))
-                                      (format "%S=%s"
-                                              (car var-spec) (cadr var-spec))))
-                                  ',variables ", ")
-                                 ")")))))
-                   (org-babel-execute-src-block
-                    nil (list "emacs-lisp" "results" params)
-                    '((:results . "silent"))))
-               "")))
-        (org-trim (if (stringp result) result (format "%S" result)))))))
-
-(provide 'ob-table)
-
-
-
-;;; ob-table.el ends here
diff --git a/elpa/org-9.1.14/ob-table.elc b/elpa/org-9.1.14/ob-table.elc
deleted file mode 100644
index d9c940c..0000000
--- a/elpa/org-9.1.14/ob-table.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-tangle.el b/elpa/org-9.1.14/ob-tangle.el
deleted file mode 100644
index 48eddb7..0000000
--- a/elpa/org-9.1.14/ob-tangle.el
+++ /dev/null
@@ -1,601 +0,0 @@
-;;; ob-tangle.el --- Extract Source Code From Org Files -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Extract the code from source blocks out into raw source-code files.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org-src)
-(require 'org-macs)
-
-(declare-function make-directory "files" (dir &optional parents))
-(declare-function org-at-heading-p "org" (&optional ignored))
-(declare-function org-babel-update-block-body "ob-core" (new-body))
-(declare-function org-back-to-heading "org" (&optional invisible-ok))
-(declare-function org-before-first-heading-p "org" ())
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-type "org-element" (element))
-(declare-function org-fill-template "org" (template alist))
-(declare-function org-heading-components "org" ())
-(declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
-(declare-function org-link-escape "org" (text &optional table merge))
-(declare-function org-open-link-from-string "org" (s &optional arg reference-buffer))
-(declare-function org-remove-indentation "org" (code &optional n))
-(declare-function org-store-link "org" (arg))
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function outline-previous-heading "outline" ())
-(declare-function org-id-find "org-id" (id &optional markerp))
-
-(defvar org-link-types-re)
-
-(defcustom org-babel-tangle-lang-exts
-  '(("emacs-lisp" . "el")
-    ("elisp" . "el"))
-  "Alist mapping languages to their file extensions.
-The key is the language name, the value is the string that should
-be inserted as the extension commonly used to identify files
-written in this language.  If no entry is found in this list,
-then the name of the language is used."
-  :group 'org-babel-tangle
-  :version "24.1"
-  :type '(repeat
-	  (cons
-	   (string "Language name")
-	   (string "File Extension"))))
-
-(defcustom org-babel-tangle-use-relative-file-links t
-  "Use relative path names in links from tangled source back the Org file."
-  :group 'org-babel-tangle
-  :type 'boolean)
-
-(defcustom org-babel-post-tangle-hook nil
-  "Hook run in code files tangled by `org-babel-tangle'."
-  :group 'org-babel
-  :version "24.1"
-  :type 'hook)
-
-(defcustom org-babel-pre-tangle-hook '(save-buffer)
-  "Hook run at the beginning of `org-babel-tangle'."
-  :group 'org-babel
-  :version "24.1"
-  :type 'hook)
-
-(defcustom org-babel-tangle-body-hook nil
-  "Hook run over the contents of each code block body."
-  :group 'org-babel
-  :version "24.1"
-  :type 'hook)
-
-(defcustom org-babel-tangle-comment-format-beg "[[%link][%source-name]]"
-  "Format of inserted comments in tangled code files.
-The following format strings can be used to insert special
-information into the output using `org-fill-template'.
-%start-line --- the line number at the start of the code block
-%file --------- the file from which the code block was tangled
-%link --------- Org style link to the code block
-%source-name -- name of the code block
-
-Upon insertion the formatted comment will be commented out, and
-followed by a newline.  To inhibit this post-insertion processing
-set the `org-babel-tangle-uncomment-comments' variable to a
-non-nil value.
-
-Whether or not comments are inserted during tangling is
-controlled by the :comments header argument."
-  :group 'org-babel
-  :version "24.1"
-  :type 'string)
-
-(defcustom org-babel-tangle-comment-format-end "%source-name ends here"
-  "Format of inserted comments in tangled code files.
-The following format strings can be used to insert special
-information into the output using `org-fill-template'.
-%start-line --- the line number at the start of the code block
-%file --------- the file from which the code block was tangled
-%link --------- Org style link to the code block
-%source-name -- name of the code block
-
-Upon insertion the formatted comment will be commented out, and
-followed by a newline.  To inhibit this post-insertion processing
-set the `org-babel-tangle-uncomment-comments' variable to a
-non-nil value.
-
-Whether or not comments are inserted during tangling is
-controlled by the :comments header argument."
-  :group 'org-babel
-  :version "24.1"
-  :type 'string)
-
-(defcustom org-babel-tangle-uncomment-comments nil
-  "Inhibits automatic commenting and addition of trailing newline
-of tangle comments.  Use `org-babel-tangle-comment-format-beg'
-and `org-babel-tangle-comment-format-end' to customize the format
-of tangled comments."
-  :group 'org-babel
-  :type 'boolean)
-
-(defcustom org-babel-process-comment-text 'org-remove-indentation
-  "Function called to process raw Org text collected to be
-inserted as comments in tangled source-code files.  The function
-should take a single string argument and return a string
-result.  The default value is `org-remove-indentation'."
-  :group 'org-babel
-  :version "24.1"
-  :type 'function)
-
-(defun org-babel-find-file-noselect-refresh (file)
-  "Find file ensuring that the latest changes on disk are
-represented in the file."
-  (find-file-noselect file 'nowarn)
-  (with-current-buffer (get-file-buffer file)
-    (revert-buffer t t t)))
-
-(defmacro org-babel-with-temp-filebuffer (file &rest body)
-  "Open FILE into a temporary buffer execute BODY there like
-`progn', then kill the FILE buffer returning the result of
-evaluating BODY."
-  (declare (indent 1))
-  (let ((temp-path (make-symbol "temp-path"))
-	(temp-result (make-symbol "temp-result"))
-	(temp-file (make-symbol "temp-file"))
-	(visited-p (make-symbol "visited-p")))
-    `(let* ((,temp-path ,file)
-	    (,visited-p (get-file-buffer ,temp-path))
-	    ,temp-result ,temp-file)
-       (org-babel-find-file-noselect-refresh ,temp-path)
-       (setf ,temp-file (get-file-buffer ,temp-path))
-       (with-current-buffer ,temp-file
-	 (setf ,temp-result (progn ,@body)))
-       (unless ,visited-p (kill-buffer ,temp-file))
-       ,temp-result)))
-(def-edebug-spec org-babel-with-temp-filebuffer (form body))
-
-;;;###autoload
-(defun org-babel-tangle-file (file &optional target-file lang)
-  "Extract the bodies of source code blocks in FILE.
-Source code blocks are extracted with `org-babel-tangle'.
-Optional argument TARGET-FILE can be used to specify a default
-export file for all source blocks.  Optional argument LANG can be
-used to limit the exported source code blocks by language.
-Return a list whose CAR is the tangled file name."
-  (interactive "fFile to tangle: \nP")
-  (let ((visited-p (get-file-buffer (expand-file-name file)))
-	to-be-removed)
-    (prog1
-	(save-window-excursion
-	  (find-file file)
-	  (setq to-be-removed (current-buffer))
-	  (mapcar #'expand-file-name (org-babel-tangle nil target-file lang)))
-      (unless visited-p
-	(kill-buffer to-be-removed)))))
-
-(defun org-babel-tangle-publish (_ filename pub-dir)
-  "Tangle FILENAME and place the results in PUB-DIR."
-  (unless (file-exists-p pub-dir)
-    (make-directory pub-dir t))
-  (setq pub-dir (file-name-as-directory pub-dir))
-  (mapc (lambda (el) (copy-file el pub-dir t)) (org-babel-tangle-file filename)))
-
-;;;###autoload
-(defun org-babel-tangle (&optional arg target-file lang)
-  "Write code blocks to source-specific files.
-Extract the bodies of all source code blocks from the current
-file into their own source-specific files.
-With one universal prefix argument, only tangle the block at point.
-When two universal prefix arguments, only tangle blocks for the
-tangle file of the block at point.
-Optional argument TARGET-FILE can be used to specify a default
-export file for all source blocks.  Optional argument LANG can be
-used to limit the exported source code blocks by language."
-  (interactive "P")
-  (run-hooks 'org-babel-pre-tangle-hook)
-  ;; Possibly Restrict the buffer to the current code block
-  (save-restriction
-    (save-excursion
-      (when (equal arg '(4))
-	(let ((head (org-babel-where-is-src-block-head)))
-	  (if head
-	      (goto-char head)
-	    (user-error "Point is not in a source code block"))))
-      (let ((block-counter 0)
-	    (org-babel-default-header-args
-	     (if target-file
-		 (org-babel-merge-params org-babel-default-header-args
-					 (list (cons :tangle target-file)))
-	       org-babel-default-header-args))
-	    (tangle-file
-	     (when (equal arg '(16))
-	       (or (cdr (assq :tangle (nth 2 (org-babel-get-src-block-info 'light))))
-		   (user-error "Point is not in a source code block"))))
-	    path-collector)
-	(mapc ;; map over all languages
-	 (lambda (by-lang)
-	   (let* ((lang (car by-lang))
-		  (specs (cdr by-lang))
-		  (ext (or (cdr (assoc lang org-babel-tangle-lang-exts)) lang))
-		  (lang-f (intern
-			   (concat
-			    (or (and (cdr (assoc lang org-src-lang-modes))
-				     (symbol-name
-				      (cdr (assoc lang org-src-lang-modes))))
-				lang)
-			    "-mode")))
-		  she-banged)
-	     (mapc
-	      (lambda (spec)
-		(let ((get-spec (lambda (name) (cdr (assoc name (nth 4 spec))))))
-		  (let* ((tangle (funcall get-spec :tangle))
-			 (she-bang (let ((sheb (funcall get-spec :shebang)))
-                                     (when (> (length sheb) 0) sheb)))
-			 (tangle-mode (funcall get-spec :tangle-mode))
-			 (base-name (cond
-				     ((string= "yes" tangle)
-				      (file-name-sans-extension
-				       (nth 1 spec)))
-				     ((string= "no" tangle) nil)
-				     ((> (length tangle) 0) tangle)))
-			 (file-name (when base-name
-				      ;; decide if we want to add ext to base-name
-				      (if (and ext (string= "yes" tangle))
-					  (concat base-name "." ext) base-name))))
-		    (when file-name
-		      ;; Possibly create the parent directories for file.
-		      (let ((m (funcall get-spec :mkdirp))
-			    (fnd (file-name-directory file-name)))
-			(and m fnd (not (string= m "no"))
-			     (make-directory fnd 'parents)))
-		      ;; delete any old versions of file
-		      (and (file-exists-p file-name)
-			   (not (member file-name (mapcar #'car path-collector)))
-			   (delete-file file-name))
-		      ;; drop source-block to file
-		      (with-temp-buffer
-			(when (fboundp lang-f) (ignore-errors (funcall lang-f)))
-			(when (and she-bang (not (member file-name she-banged)))
-			  (insert (concat she-bang "\n"))
-			  (setq she-banged (cons file-name she-banged)))
-			(org-babel-spec-to-string spec)
-			;; We avoid append-to-file as it does not work with tramp.
-			(let ((content (buffer-string)))
-			  (with-temp-buffer
-			    (when (file-exists-p file-name)
-			      (insert-file-contents file-name))
-			    (goto-char (point-max))
-			    ;; Handle :padlines unless first line in file
-			    (unless (or (string= "no" (cdr (assq :padline (nth 4 spec))))
-					(= (point) (point-min)))
-			      (insert "\n"))
-			    (insert content)
-			    (write-region nil nil file-name))))
-		      ;; if files contain she-bangs, then make the executable
-		      (when she-bang
-			(unless tangle-mode (setq tangle-mode #o755)))
-		      ;; update counter
-		      (setq block-counter (+ 1 block-counter))
-		      (unless (assoc file-name path-collector)
-			(push (cons file-name tangle-mode) path-collector))))))
-	      specs)))
-	 (if (equal arg '(4))
-	     (org-babel-tangle-single-block 1 t)
-	   (org-babel-tangle-collect-blocks lang tangle-file)))
-	(message "Tangled %d code block%s from %s" block-counter
-		 (if (= block-counter 1) "" "s")
-		 (file-name-nondirectory
-		  (buffer-file-name
-		   (or (buffer-base-buffer) (current-buffer)))))
-	;; run `org-babel-post-tangle-hook' in all tangled files
-	(when org-babel-post-tangle-hook
-	  (mapc
-	   (lambda (file)
-	     (org-babel-with-temp-filebuffer file
-	       (run-hooks 'org-babel-post-tangle-hook)))
-	   (mapcar #'car path-collector)))
-	;; set permissions on tangled files
-	(mapc (lambda (pair)
-		(when (cdr pair) (set-file-modes (car pair) (cdr pair))))
-	      path-collector)
-	(mapcar #'car path-collector)))))
-
-(defun org-babel-tangle-clean ()
-  "Remove comments inserted by `org-babel-tangle'.
-Call this function inside of a source-code file generated by
-`org-babel-tangle' to remove all comments inserted automatically
-by `org-babel-tangle'.  Warning, this comment removes any lines
-containing constructs which resemble Org file links or noweb
-references."
-  (interactive)
-  (goto-char (point-min))
-  (while (or (re-search-forward "\\[\\[file:.*\\]\\[.*\\]\\]" nil t)
-             (re-search-forward (org-babel-noweb-wrap) nil t))
-    (delete-region (save-excursion (beginning-of-line 1) (point))
-                   (save-excursion (end-of-line 1) (forward-char 1) (point)))))
-
-(defvar org-stored-links)
-(defvar org-bracket-link-regexp)
-(defun org-babel-spec-to-string (spec)
-  "Insert SPEC into the current file.
-
-Insert the source-code specified by SPEC into the current source
-code file.  This function uses `comment-region' which assumes
-that the appropriate major-mode is set.  SPEC has the form:
-
-  (start-line file link source-name params body comment)"
-  (pcase-let*
-      ((`(,start ,file ,link ,source ,info ,body ,comment) spec)
-       (comments (cdr (assq :comments info)))
-       (link? (or (string= comments "both") (string= comments "link")
-		  (string= comments "yes") (string= comments "noweb")))
-       (link-data `(("start-line" . ,(number-to-string start))
-		    ("file" . ,file)
-		    ("link" . ,link)
-		    ("source-name" . ,source)))
-       (insert-comment (lambda (text)
-			 (when (and comments
-				    (not (string= comments "no"))
-				    (org-string-nw-p text))
-			   (if org-babel-tangle-uncomment-comments
-			       ;; Plain comments: no processing.
-			       (insert text)
-			     ;; Ensure comments are made to be
-			     ;; comments, and add a trailing newline.
-			     ;; Also ignore invisible characters when
-			     ;; commenting.
-			     (comment-region
-			      (point)
-			      (progn (insert (org-no-properties text))
-				     (point)))
-			     (end-of-line)
-			     (insert "\n"))))))
-    (when comment (funcall insert-comment comment))
-    (when link?
-      (funcall insert-comment
-	       (org-fill-template
-		org-babel-tangle-comment-format-beg link-data)))
-    (insert body "\n")
-    (when link?
-      (funcall insert-comment
-	       (org-fill-template
-		org-babel-tangle-comment-format-end link-data)))))
-
-(defun org-babel-tangle-collect-blocks (&optional language tangle-file)
-  "Collect source blocks in the current Org file.
-Return an association list of source-code block specifications of
-the form used by `org-babel-spec-to-string' grouped by language.
-Optional argument LANGUAGE can be used to limit the collected
-source code blocks by language.  Optional argument TANGLE-FILE
-can be used to limit the collected code blocks by target file."
-  (let ((counter 0) last-heading-pos blocks)
-    (org-babel-map-src-blocks (buffer-file-name)
-      (let ((current-heading-pos
-	     (org-with-wide-buffer
-	      (org-with-limited-levels (outline-previous-heading)))))
-	(if (eq last-heading-pos current-heading-pos) (cl-incf counter)
-	  (setq counter 1)
-	  (setq last-heading-pos current-heading-pos)))
-      (unless (org-in-commented-heading-p)
-	(let* ((info (org-babel-get-src-block-info 'light))
-	       (src-lang (nth 0 info))
-	       (src-tfile (cdr (assq :tangle (nth 2 info)))))
-	  (unless (or (string= src-tfile "no")
-		      (and tangle-file (not (equal tangle-file src-tfile)))
-		      (and language (not (string= language src-lang))))
-	    ;; Add the spec for this block to blocks under its
-	    ;; language.
-	    (let ((by-lang (assoc src-lang blocks))
-		  (block (org-babel-tangle-single-block counter)))
-	      (if by-lang (setcdr by-lang (cons block (cdr by-lang)))
-		(push (cons src-lang (list block)) blocks)))))))
-    ;; Ensure blocks are in the correct order.
-    (mapcar (lambda (b) (cons (car b) (nreverse (cdr b)))) blocks)))
-
-(defun org-babel-tangle-single-block (block-counter &optional only-this-block)
-  "Collect the tangled source for current block.
-Return the list of block attributes needed by
-`org-babel-tangle-collect-blocks'.  When ONLY-THIS-BLOCK is
-non-nil, return the full association list to be used by
-`org-babel-tangle' directly."
-  (let* ((info (org-babel-get-src-block-info))
-	 (start-line
-	  (save-restriction (widen)
-			    (+ 1 (line-number-at-pos (point)))))
-	 (file (buffer-file-name (buffer-base-buffer)))
-	 (src-lang (nth 0 info))
-	 (params (nth 2 info))
-	 (extra (nth 3 info))
-	 (cref-fmt (or (and (string-match "-l \"\\(.+\\)\"" extra)
-			    (match-string 1 extra))
-		       org-coderef-label-format))
-	 (link (let ((l (org-no-properties (org-store-link nil))))
-                 (and (string-match org-bracket-link-regexp l)
-                      (match-string 1 l))))
-	 (source-name
-	  (or (nth 4 info)
-	      (format "%s:%d"
-		      (or (ignore-errors (nth 4 (org-heading-components)))
-			  "No heading")
-		      block-counter)))
-	 (expand-cmd (intern (concat "org-babel-expand-body:" src-lang)))
-	 (assignments-cmd
-	  (intern (concat "org-babel-variable-assignments:" src-lang)))
-	 (body
-	  ;; Run the tangle-body-hook.
-          (let ((body (if (org-babel-noweb-p params :tangle)
-			  (org-babel-expand-noweb-references info)
-			(nth 1 info))))
-	    (with-temp-buffer
-	      (insert
-	       ;; Expand body in language specific manner.
-	       (cond ((assq :no-expand params) body)
-		     ((fboundp expand-cmd) (funcall expand-cmd body params))
-		     (t
-		      (org-babel-expand-body:generic
-		       body params (and (fboundp assignments-cmd)
-					(funcall assignments-cmd params))))))
-	      (when (string-match "-r" extra)
-		(goto-char (point-min))
-		(while (re-search-forward
-			(replace-regexp-in-string "%s" ".+" cref-fmt) nil t)
-		  (replace-match "")))
-	      (run-hooks 'org-babel-tangle-body-hook)
-	      (buffer-string))))
-	 (comment
-	  (when (or (string= "both" (cdr (assq :comments params)))
-		    (string= "org" (cdr (assq :comments params))))
-	    ;; From the previous heading or code-block end
-	    (funcall
-	     org-babel-process-comment-text
-	     (buffer-substring
-	      (max (condition-case nil
-		       (save-excursion
-			 (org-back-to-heading t) ; Sets match data
-			 (match-end 0))
-		     (error (point-min)))
-		   (save-excursion
-		     (if (re-search-backward
-			  org-babel-src-block-regexp nil t)
-			 (match-end 0)
-		       (point-min))))
-	      (point)))))
-	 (result
-	  (list start-line
-		(if org-babel-tangle-use-relative-file-links
-		    (file-relative-name file)
-		  file)
-		(if (and org-babel-tangle-use-relative-file-links
-			 (string-match org-link-types-re link)
-			 (string= (match-string 0 link) "file"))
-		    (concat "file:"
-			    (file-relative-name (match-string 1 link)
-						(file-name-directory
-						 (cdr (assq :tangle params)))))
-		  link)
-		source-name
-		params
-		(if org-src-preserve-indentation
-		    (org-trim body t)
-		  (org-trim (org-remove-indentation body)))
-		comment)))
-    (if only-this-block
-	(list (cons src-lang (list result)))
-      result)))
-
-(defun org-babel-tangle-comment-links (&optional info)
-  "Return a list of begin and end link comments for the code block at point."
-  (let ((link-data
-	 `(("start-line" . ,(number-to-string
-			     (org-babel-where-is-src-block-head)))
-	   ("file" . ,(buffer-file-name))
-	   ("link" . ,(org-link-escape
-		       (progn
-			 (call-interactively #'org-store-link)
-			 (org-no-properties (car (pop org-stored-links))))))
-	   ("source-name" .
-	    ,(nth 4 (or info (org-babel-get-src-block-info 'light)))))))
-    (list (org-fill-template org-babel-tangle-comment-format-beg link-data)
-	  (org-fill-template org-babel-tangle-comment-format-end link-data))))
-
-;; de-tangling functions
-(defvar org-bracket-link-analytic-regexp)
-(defun org-babel-detangle (&optional source-code-file)
-  "Propagate changes in source file back original to Org file.
-This requires that code blocks were tangled with link comments
-which enable the original code blocks to be found."
-  (interactive)
-  (save-excursion
-    (when source-code-file (find-file source-code-file))
-    (goto-char (point-min))
-    (let ((counter 0) new-body end)
-      (while (re-search-forward org-bracket-link-analytic-regexp nil t)
-        (when (re-search-forward
-	       (concat " " (regexp-quote (match-string 5)) " ends here"))
-          (setq end (match-end 0))
-          (forward-line -1)
-          (save-excursion
-	    (when (setq new-body (org-babel-tangle-jump-to-org))
-	      (org-babel-update-block-body new-body)))
-          (setq counter (+ 1 counter)))
-        (goto-char end))
-      (prog1 counter (message "Detangled %d code blocks" counter)))))
-
-(defun org-babel-tangle-jump-to-org ()
-  "Jump from a tangled code file to the related Org mode file."
-  (interactive)
-  (let ((mid (point))
-	start body-start end
-        target-buffer target-char link path block-name body)
-    (save-window-excursion
-      (save-excursion
-	(while (and (re-search-backward org-bracket-link-analytic-regexp nil t)
-		    (not ; ever wider searches until matching block comments
-		     (and (setq start (line-beginning-position))
-			  (setq body-start (line-beginning-position 2))
-			  (setq link (match-string 0))
-			  (setq path (match-string 3))
-			  (setq block-name (match-string 5))
-			  (save-excursion
-			    (save-match-data
-			      (re-search-forward
-			       (concat " " (regexp-quote block-name)
-				       " ends here") nil t)
-			      (setq end (line-beginning-position))))))))
-	(unless (and start (< start mid) (< mid end))
-	  (error "Not in tangled code"))
-        (setq body (buffer-substring body-start end)))
-      (when (string-match "::" path)
-        (setq path (substring path 0 (match-beginning 0))))
-      (find-file (or (car (org-id-find path)) path))
-      (setq target-buffer (current-buffer))
-      ;; Go to the beginning of the relative block in Org file.
-      (org-open-link-from-string link)
-      (if (string-match "[^ \t\n\r]:\\([[:digit:]]+\\)" block-name)
-          (let ((n (string-to-number (match-string 1 block-name))))
-	    (if (org-before-first-heading-p) (goto-char (point-min))
-	      (org-back-to-heading t))
-	    ;; Do not skip the first block if it begins at point min.
-	    (cond ((or (org-at-heading-p)
-		       (not (eq (org-element-type (org-element-at-point))
-				'src-block)))
-		   (org-babel-next-src-block n))
-		  ((= n 1))
-		  (t (org-babel-next-src-block (1- n)))))
-        (org-babel-goto-named-src-block block-name))
-      (goto-char (org-babel-where-is-src-block-head))
-      ;; Preserve location of point within the source code in tangled
-      ;; code file.
-      (forward-line 1)
-      (forward-char (- mid body-start))
-      (setq target-char (point)))
-    (org-src-switch-to-buffer target-buffer t)
-    (goto-char target-char)
-    body))
-
-(provide 'ob-tangle)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ob-tangle.el ends here
diff --git a/elpa/org-9.1.14/ob-tangle.elc b/elpa/org-9.1.14/ob-tangle.elc
deleted file mode 100644
index b0b35e5..0000000
--- a/elpa/org-9.1.14/ob-tangle.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob-vala.el b/elpa/org-9.1.14/ob-vala.el
deleted file mode 100644
index 96c37e3..0000000
--- a/elpa/org-9.1.14/ob-vala.el
+++ /dev/null
@@ -1,117 +0,0 @@
-;;; ob-vala.el --- Babel functions for Vala evaluation -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017-2018 Free Software Foundation, Inc.
-
-;; Author: Christian Garbs <mitch@cgarbs.de>
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;;; License:
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; ob-vala.el provides Babel support for the Vala language
-;; (see http://live.gnome.org/Vala for details)
-
-;;; Requirements:
-
-;; - Vala compiler binary (valac)
-;; - Vala development environment (Vala libraries etc.)
-;;
-;; vala-mode.el is nice to have for code formatting, but is not needed
-;; for ob-vala.el
-
-;;; Code:
-
-(require 'ob)
-
-(declare-function org-trim "org" (s &optional keep-lead))
-
-;; File extension.
-(add-to-list 'org-babel-tangle-lang-exts '("vala" . "vala"))
-
-;; Header arguments empty by default.
-(defvar org-babel-default-header-args:vala '())
-
-(defcustom org-babel-vala-compiler "valac"
-  "Command used to compile a C source code file into an executable.
-May be either a command in the path, like \"valac\"
-or an absolute path name, like \"/usr/local/bin/valac\".
-Parameters may be used like this: \"valac -v\""
-  :group 'org-babel
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type 'string)
-
-;; This is the main function which is called to evaluate a code
-;; block.
-;;
-;; - run Vala compiler and create a binary in a temporary file
-;;   - compiler/linker flags can be set via :flags header argument
-;; - if compilation succeeded, run the binary
-;;   - commandline parameters to the binary can be set via :cmdline
-;;     header argument
-;;   - stdout will be parsed as RESULT (control via :result-params
-;;     header argument)
-;;
-;; There is no session support because Vala is a compiled language.
-;;
-;; This function is heavily based on ob-C.el
-(defun org-babel-execute:vala (body params)
-  "Execute a block of Vala code with Babel.
-This function is called by `org-babel-execute-src-block'."
-  (message "executing Vala source code block")
-  (let* ((tmp-src-file (org-babel-temp-file
-			"vala-src-"
-			".vala"))
-         (tmp-bin-file (org-babel-temp-file "vala-bin-" org-babel-exeext))
-         (cmdline (cdr (assq :cmdline params)))
-         (flags (cdr (assq :flags params))))
-    (with-temp-file tmp-src-file (insert body))
-    (org-babel-eval
-     (format "%s %s -o %s %s"
-	     org-babel-vala-compiler
-	     (mapconcat #'identity
-			(if (listp flags) flags (list flags)) " ")
-	     (org-babel-process-file-name tmp-bin-file)
-	     (org-babel-process-file-name tmp-src-file)) "")
-    (when (file-executable-p tmp-bin-file)
-	(let ((results
-	       (org-trim
-		(org-babel-eval
-		 (concat tmp-bin-file (if cmdline (concat " " cmdline) "")) ""))))
-	  (org-babel-reassemble-table
-	   (org-babel-result-cond (cdr (assq :result-params params))
-	     (org-babel-read results)
-	     (let ((tmp-file (org-babel-temp-file "vala-")))
-	       (with-temp-file tmp-file (insert results))
-	       (org-babel-import-elisp-from-file tmp-file)))
-	   (org-babel-pick-name
-	    (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
-	   (org-babel-pick-name
-	    (cdr (assq :rowname-names params)) (cdr (assq :rownames params))))))))
-
-(defun org-babel-prep-session:vala (_session _params)
-  "Prepare a session.
-This function does nothing as Vala is a compiled language with no
-support for sessions."
-  (error "Vala is a compiled language -- no support for sessions"))
-
-(provide 'ob-vala)
-
-;;; ob-vala.el ends here
diff --git a/elpa/org-9.1.14/ob-vala.elc b/elpa/org-9.1.14/ob-vala.elc
deleted file mode 100644
index 8c37106..0000000
--- a/elpa/org-9.1.14/ob-vala.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ob.el b/elpa/org-9.1.14/ob.el
deleted file mode 100644
index 35f65ff..0000000
--- a/elpa/org-9.1.14/ob.el
+++ /dev/null
@@ -1,43 +0,0 @@
-;;; ob.el --- Working with Code Blocks in Org        -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Authors: Eric Schulte
-;; Keywords: literate programming, reproducible research
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Code:
-(require 'org-macs)
-(require 'org-compat)
-(require 'ob-eval)
-(require 'ob-core)
-(require 'ob-comint)
-(require 'ob-exp)
-(require 'ob-keys)
-(require 'ob-table)
-(require 'ob-lob)
-(require 'ob-ref)
-(require 'ob-tangle)
-
-(provide 'ob)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ob.el ends here
diff --git a/elpa/org-9.1.14/ob.elc b/elpa/org-9.1.14/ob.elc
deleted file mode 100644
index d26971c..0000000
--- a/elpa/org-9.1.14/ob.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org b/elpa/org-9.1.14/org
deleted file mode 100644
index 636827d..0000000
--- a/elpa/org-9.1.14/org
+++ /dev/null
@@ -1,21818 +0,0 @@
-This is org, produced by makeinfo version 6.3 from org.texi.
-
-This manual is for Org version 9.1.14 (release_9.1.14-1-g4931fc).
-
-   Copyright © 2004–2018 Free Software Foundation, Inc.
-
-     Permission is granted to copy, distribute and/or modify this
-     document under the terms of the GNU Free Documentation License,
-     Version 1.3 or any later version published by the Free Software
-     Foundation; with no Invariant Sections, with the Front-Cover Texts
-     being “A GNU Manual,” and with the Back-Cover Texts as in (a)
-     below.  A copy of the license is included in the section entitled
-     “GNU Free Documentation License.”
-
-     (a) The FSF’s Back-Cover Text is: “You have the freedom to copy and
-     modify this GNU manual.”
-INFO-DIR-SECTION Emacs editing modes
-START-INFO-DIR-ENTRY
-* Org Mode: (org).      Outline-based notes management and organizer
-END-INFO-DIR-ENTRY
-
-
-File: org,  Node: Top,  Next: Introduction,  Prev: (dir),  Up: (dir)
-
-Org Mode Manual
-***************
-
-This manual is for Org version 9.1.14 (release_9.1.14-1-g4931fc).
-
-   Copyright © 2004–2018 Free Software Foundation, Inc.
-
-     Permission is granted to copy, distribute and/or modify this
-     document under the terms of the GNU Free Documentation License,
-     Version 1.3 or any later version published by the Free Software
-     Foundation; with no Invariant Sections, with the Front-Cover Texts
-     being “A GNU Manual,” and with the Back-Cover Texts as in (a)
-     below.  A copy of the license is included in the section entitled
-     “GNU Free Documentation License.”
-
-     (a) The FSF’s Back-Cover Text is: “You have the freedom to copy and
-     modify this GNU manual.”
-
-* Menu:
-
-* Introduction::                Getting started
-* Document structure::          A tree works like your brain
-* Tables::                      Pure magic for quick formatting
-* Hyperlinks::                  Notes in context
-* TODO items::                  Every tree branch can be a TODO item
-* Tags::                        Tagging headlines and matching sets of tags
-* Properties and columns::      Storing information about an entry
-* Dates and times::             Making items useful for planning
-* Capture - Refile - Archive::  The ins and outs for projects
-* Agenda views::                Collecting information into views
-* Markup::                      Prepare text for rich export
-* Exporting::                   Sharing and publishing notes
-* Publishing::                  Create a web site of linked Org files
-* Working with source code::    Export, evaluate, and tangle code blocks
-* Miscellaneous::               All the rest which did not fit elsewhere
-* Hacking::                     How to hack your way around
-* MobileOrg::                   Viewing and capture on a mobile device
-* History and acknowledgments::  How Org came into being
-* GNU Free Documentation License::  The license for this documentation.
-* Main Index::                  An index of Org’s concepts and features
-* Key Index::                   Key bindings and where they are described
-* Command and Function Index::  Command names and some internal functions
-* Variable Index::              Variables mentioned in the manual
-
- — The Detailed Node Listing —
-
-Introduction
-
-* Summary::                     Brief summary of what Org does
-* Installation::                Installing Org
-* Activation::                  How to activate Org for certain buffers
-* Feedback::                    Bug reports, ideas, patches etc.
-* Conventions::                 Typesetting conventions in the manual
-
-Document structure
-
-* Outlines::                    Org is based on Outline mode
-* Headlines::                   How to typeset Org tree headlines
-* Visibility cycling::          Show and hide, much simplified
-* Motion::                      Jumping to other headlines
-* Structure editing::           Changing sequence and level of headlines
-* Sparse trees::                Matches embedded in context
-* Plain lists::                 Additional structure within an entry
-* Drawers::                     Tucking stuff away
-* Blocks::                      Folding blocks
-* Footnotes::                   How footnotes are defined in Org’s syntax
-* Orgstruct mode::              Structure editing outside Org
-* Org syntax::                  Formal description of Org’s syntax
-
-Visibility cycling
-
-* Global and local cycling::    Cycling through various visibility states
-* Initial visibility::          Setting the initial visibility state
-* Catching invisible edits::    Preventing mistakes when editing invisible parts
-
-Tables
-
-* Built-in table editor::       Simple tables
-* Column width and alignment::  Overrule the automatic settings
-* Column groups::               Grouping to trigger vertical lines
-* Orgtbl mode::                 The table editor as minor mode
-* The spreadsheet::             The table editor has spreadsheet capabilities
-* Org-Plot::                    Plotting from org tables
-
-The spreadsheet
-
-* References::                  How to refer to another field or range
-* Formula syntax for Calc::     Using Calc to compute stuff
-* Formula syntax for Lisp::     Writing formulas in Emacs Lisp
-* Durations and time values::   How to compute durations and time values
-* Field and range formulas::    Formula for specific (ranges of) fields
-* Column formulas::             Formulas valid for an entire column
-* Lookup functions::            Lookup functions for searching tables
-* Editing and debugging formulas::  Fixing formulas
-* Updating the table::          Recomputing all dependent fields
-* Advanced features::           Field and column names, parameters and automatic recalc
-
-Hyperlinks
-
-* Link format::                 How links in Org are formatted
-* Internal links::              Links to other places in the current file
-* External links::              URL-like links to the world
-* Handling links::              Creating, inserting and following
-* Using links outside Org::     Linking from my C source code?
-* Link abbreviations::          Shortcuts for writing complex links
-* Search options::              Linking to a specific location
-* Custom searches::             When the default search is not enough
-
-Internal links
-
-* Radio targets::               Make targets trigger links in plain text
-
-TODO items
-
-* TODO basics::                 Marking and displaying TODO entries
-* TODO extensions::             Workflow and assignments
-* Progress logging::            Dates and notes for progress
-* Priorities::                  Some things are more important than others
-* Breaking down tasks::         Splitting a task into manageable pieces
-* Checkboxes::                  Tick-off lists
-
-Extended use of TODO keywords
-
-* Workflow states::             From TODO to DONE in steps
-* TODO types::                  I do this, Fred does the rest
-* Multiple sets in one file::   Mixing it all, and still finding your way
-* Fast access to TODO states::  Single letter selection of a state
-* Per-file keywords::           Different files, different requirements
-* Faces for TODO keywords::     Highlighting states
-* TODO dependencies::           When one task needs to wait for others
-
-Progress logging
-
-* Closing items::               When was this entry marked DONE?
-* Tracking TODO state changes::  When did the status change?
-* Tracking your habits::        How consistent have you been?
-
-Tags
-
-* Tag inheritance::             Tags use the tree structure of the outline
-* Setting tags::                How to assign tags to a headline
-* Tag hierarchy::               Create a hierarchy of tags
-* Tag searches::                Searching for combinations of tags
-
-Properties and columns
-
-* Property syntax::             How properties are spelled out
-* Special properties::          Access to other Org mode features
-* Property searches::           Matching property values
-* Property inheritance::        Passing values down the tree
-* Column view::                 Tabular viewing and editing
-* Property API::                Properties for Lisp programmers
-
-Column view
-
-* Defining columns::            The COLUMNS format property
-* Using column view::           How to create and use column view
-* Capturing column view::       A dynamic block for column view
-
-Defining columns
-
-* Scope of column definitions::  Where defined, where valid?
-* Column attributes::           Appearance and content of a column
-
-Dates and times
-
-* Timestamps::                  Assigning a time to a tree entry
-* Creating timestamps::         Commands which insert timestamps
-* Deadlines and scheduling::    Planning your work
-* Clocking work time::          Tracking how long you spend on a task
-* Effort estimates::            Planning work effort in advance
-* Timers::                      Notes with a running timer
-
-Creating timestamps
-
-* The date/time prompt::        How Org mode helps you entering date and time
-* Custom time format::          Making dates look different
-
-Deadlines and scheduling
-
-* Inserting deadline/schedule::  Planning items
-* Repeated tasks::              Items that show up again and again
-
-Clocking work time
-
-* Clocking commands::           Starting and stopping a clock
-* The clock table::             Detailed reports
-* Resolving idle time::         Resolving time when you’ve been idle
-
-Capture - Refile - Archive
-
-* Capture::                     Capturing new stuff
-* Attachments::                 Add files to tasks
-* RSS feeds::                   Getting input from RSS feeds
-* Protocols::                   External (e.g., Browser) access to Emacs and Org
-* Refile and copy::             Moving/copying a tree from one place to another
-* Archiving::                   What to do with finished projects
-
-Capture
-
-* Setting up capture::          Where notes will be stored
-* Using capture::               Commands to invoke and terminate capture
-* Capture templates::           Define the outline of different note types
-
-Capture templates
-
-* Template elements::           What is needed for a complete template entry
-* Template expansion::          Filling in information about time and context
-* Templates in contexts::       Only show a template in a specific context
-
-Protocols for external access
-
-* store-link protocol::  Store a link, push URL to kill-ring.
-* capture protocol::     Fill a buffer with external information.
-* open-source protocol::  Edit published contents.
-
-Archiving
-
-* Moving subtrees::             Moving a tree to an archive file
-* Internal archiving::          Switch off a tree but keep it in the file
-
-Agenda views
-
-* Agenda files::                Files being searched for agenda information
-* Agenda dispatcher::           Keyboard access to agenda views
-* Built-in agenda views::       What is available out of the box?
-* Presentation and sorting::    How agenda items are prepared for display
-* Agenda commands::             Remote editing of Org trees
-* Custom agenda views::         Defining special searches and views
-* Exporting agenda views::      Writing a view to a file
-* Agenda column view::          Using column view for collected entries
-
-The built-in agenda views
-
-* Weekly/daily agenda::         The calendar page with current tasks
-* Global TODO list::            All unfinished action items
-* Matching tags and properties::  Structured information with fine-tuned search
-* Search view::                 Find entries by searching for text
-* Stuck projects::              Find projects you need to review
-
-Presentation and sorting
-
-* Categories::                  Not all tasks are equal
-* Time-of-day specifications::  How the agenda knows the time
-* Sorting agenda items::        The order of things
-* Filtering/limiting agenda items::  Dynamically narrow the agenda
-
-Custom agenda views
-
-* Storing searches::            Type once, use often
-* Block agenda::                All the stuff you need in a single buffer
-* Setting options::             Changing the rules
-
-Markup for rich export
-
-* Paragraphs::                  The basic unit of text
-* Emphasis and monospace::      Bold, italic, etc.
-* Horizontal rules::            Make a line
-* Images and tables::           Images, tables and caption mechanism
-* Literal examples::            Source code examples with special formatting
-* Special symbols::             Greek letters and other symbols
-* Subscripts and superscripts::  Simple syntax for raising/lowering text
-* Embedded LaTeX::           LaTeX can be freely used inside Org documents
-
-Embedded LaTeX
-
-* LaTeX fragments::          Complex formulas made easy
-* Previewing LaTeX fragments::  What will this snippet look like?
-* CDLaTeX mode::                Speed up entering of formulas
-
-Exporting
-
-* The export dispatcher::       The main interface
-* Export settings::             Common export settings
-* Table of contents::           The if and where of the table of contents
-* Include files::               Include additional files into a document
-* Macro replacement::           Use macros to create templates
-* Comment lines::               What will not be exported
-* ASCII/Latin-1/UTF-8 export::  Exporting to flat files with encoding
-* Beamer export::               Exporting as a Beamer presentation
-* HTML export::                 Exporting to HTML
-* LaTeX export::             Exporting to LaTeX, and processing to PDF
-* Markdown export::             Exporting to Markdown
-* OpenDocument Text export::    Exporting to OpenDocument Text
-* Org export::                  Exporting to Org
-* Texinfo export::              Exporting to Texinfo
-* iCalendar export::            Exporting to iCalendar
-* Other built-in back-ends::    Exporting to a man page
-* Advanced configuration::      Fine-tuning the export output
-* Export in foreign buffers::   Author tables and lists in Org syntax
-
-Beamer export
-
-* Beamer export commands::      For creating Beamer documents.
-* Beamer specific export settings::  For customizing Beamer export.
-* Sectioning Frames and Blocks in Beamer::  For composing Beamer slides.
-* Beamer specific syntax::      For using in Org documents.
-* Editing support::             For using helper functions.
-* A Beamer example::            A complete presentation.
-
-HTML export
-
-* HTML Export commands::        Invoking HTML export
-* HTML Specific export settings::  Settings for HTML export
-* HTML doctypes::               Exporting various (X)HTML flavors
-* HTML preamble and postamble::  Inserting preamble and postamble
-* Quoting HTML tags::           Using direct HTML in Org files
-* Links in HTML export::        Interpreting and formatting links
-* Tables in HTML export::       Formatting and modifying tables
-* Images in HTML export::       Inserting figures with HTML output
-* Math formatting in HTML export::  Handling math equations
-* Text areas in HTML export::   Showing an alternate approach, an example
-* CSS support::                 Styling HTML output
-* JavaScript support::          Folding scripting in the web browser
-
-LaTeX export
-
-* LaTeX export commands::    For producing LaTeX and PDF documents.
-* LaTeX specific export settings::  Unique to this LaTeX back-end.
-* LaTeX header and sectioning::  For file structure.
-* Quoting LaTeX code::       Directly in the Org document.
-* Tables in LaTeX export::   Attributes specific to tables.
-* Images in LaTeX export::   Attributes specific to images.
-* Plain lists in LaTeX export::  Attributes specific to lists.
-* Source blocks in LaTeX export::  Attributes specific to source code blocks.
-* Example blocks in LaTeX export::  Attributes specific to example blocks.
-* Special blocks in LaTeX export::  Attributes specific to special blocks.
-* Horizontal rules in LaTeX export::  Attributes specific to horizontal rules.
-
-OpenDocument Text export
-
-* Pre-requisites for ODT export::  Required packages.
-* ODT export commands::         Invoking export.
-* ODT specific export settings::  Configuration options.
-* Extending ODT export::        Producing ‘.doc’, ‘.pdf’ files.
-* Applying custom styles::      Styling the output.
-* Links in ODT export::         Handling and formatting links.
-* Tables in ODT export::        Org table conversions.
-* Images in ODT export::        Inserting images.
-* Math formatting in ODT export::  Formatting LaTeX fragments.
-* Labels and captions in ODT export::  Rendering objects.
-* Literal examples in ODT export::  For source code and example blocks.
-* Advanced topics in ODT export::  For power users.
-
-Math formatting in ODT export
-
-* Working with LaTeX math snippets::  Embedding in LaTeX format.
-* Working with MathML or OpenDocument formula files::  Embedding in native format.
-
-Advanced topics in ODT export
-
-* Configuring a document converter::  Registering a document converter.
-* Working with OpenDocument style files::  Exploring internals.
-* Creating one-off styles::     Customizing styles, highlighting.
-* Customizing tables in ODT export::  Defining table templates.
-* Validating OpenDocument XML::  Debugging corrupted OpenDocument files.
-
-Texinfo export
-
-* Texinfo export commands::     Invoking commands.
-* Texinfo specific export settings::  Setting the environment.
-* Texinfo file header::         Generating the header.
-* Texinfo title and copyright page::  Creating preamble pages.
-* Info directory file::     Installing a manual in Info file hierarchy.
-* Headings and sectioning structure::  Building document structure.
-* Indices::                     Creating indices.
-* Quoting Texinfo code::        Incorporating literal Texinfo code.
-* Plain lists in Texinfo export::  List attributes.
-* Tables in Texinfo export::    Table attributes.
-* Images in Texinfo export::    Image attributes.
-* Special blocks in Texinfo export::  Special block attributes.
-* A Texinfo example::           Processing Org to Texinfo.
-
-Publishing
-
-* Configuration::               Defining projects
-* Uploading files::             How to get files up on the server
-* Sample configuration::        Example projects
-* Triggering publication::      Publication commands
-
-Configuration
-
-* Project alist::               The central configuration variable
-* Sources and destinations::    From here to there
-* Selecting files::             What files are part of the project?
-* Publishing action::           Setting the function doing the publishing
-* Publishing options::          Tweaking HTML/LaTeX export
-* Publishing links::            Which links keep working after publishing?
-* Sitemap::                     Generating a list of all pages
-* Generating an index::         An index that reaches across pages
-
-Sample configuration
-
-* Simple example::              One-component publishing
-* Complex example::             A multi-component publishing example
-
-Working with source code
-
-* Structure of code blocks::    Code block syntax described
-* Editing source code::         Language major-mode editing
-* Exporting code blocks::       Export contents and/or results
-* Extracting source code::      Create pure source code files
-* Evaluating code blocks::      Place results of evaluation in the Org mode buffer
-* Library of Babel::            Use and contribute to a library of useful code blocks
-* Languages::                   List of supported code block languages
-* Header arguments::            Configure code block functionality
-* Results of evaluation::       How evaluation results are handled
-* Noweb reference syntax::      Literate programming in Org mode
-* Key bindings and useful functions::  Work quickly with code blocks
-* Batch execution::             Call functions from the command line
-
-Header arguments
-
-* Using header arguments::      Different ways to set header arguments
-* Specific header arguments::   List of header arguments
-
-Using header arguments
-
-* System-wide header arguments::  Set globally, language-specific
-* Language-specific header arguments::  Set in the Org file’s headers
-* Header arguments in Org mode properties::  Set in the Org file
-* Language-specific mode properties::
-* Code block specific header arguments::  The most commonly used method
-* Arguments in function calls::  The most specific level, takes highest priority
-
-Specific header arguments
-
-* var::                         Pass arguments to ‘src’ code blocks
-* results::                     Specify results type; how to collect
-* file::                        Specify a path for output file
-* file-desc::                   Specify a description for file results
-* file-ext::                    Specify an extension for file output
-* output-dir::                  Specify a directory for output file
-* dir::                         Specify the default directory for code block execution
-* exports::                     Specify exporting code, results, both, none
-* tangle::                      Toggle tangling; or specify file name
-* mkdirp::                      Toggle for parent directory creation for target files during tangling
-* comments::                    Toggle insertion of comments in tangled code files
-* padline::                     Control insertion of padding lines in tangled code files
-* no-expand::                   Turn off variable assignment and noweb expansion during tangling
-* session::                     Preserve the state of code evaluation
-* noweb::                       Toggle expansion of noweb references
-* noweb-ref::                   Specify block’s noweb reference resolution target
-* noweb-sep::                   String to separate noweb references
-* cache::                       Avoid re-evaluating unchanged code blocks
-* sep::                         Delimiter for writing tabular results outside Org
-* hlines::                      Handle horizontal lines in tables
-* colnames::                    Handle column names in tables
-* rownames::                    Handle row names in tables
-* shebang::                     Make tangled files executable
-* tangle-mode::                 Set permission of tangled files
-* eval::                        Limit evaluation of specific code blocks
-* wrap::                        Mark source block evaluation results
-* post::                        Post processing of results of code block evaluation
-* prologue::                    Text to prepend to body of code block
-* epilogue::                    Text to append to body of code block
-
-Miscellaneous
-
-* Completion::                  M-<TAB> guesses completions
-* Easy templates::              Quick insertion of structural elements
-* Speed keys::                  Electric commands at the beginning of a headline
-* Code evaluation security::    Org mode files evaluate inline code
-* Customization::               Adapting Org to changing tastes
-* In-buffer settings::          Overview of the #+KEYWORDS
-* The very busy C-c C-c key::   When in doubt, press C-c C-c
-* Clean view::                  Getting rid of leading stars in the outline
-* TTY keys::                    Using Org on a tty
-* Interaction::                 With other Emacs packages
-* org-crypt::                   Encrypting Org files
-
-Interaction with other packages
-
-* Cooperation::                 Packages Org cooperates with
-* Conflicts::                   Packages that lead to conflicts
-
-Hacking
-
-* Hooks::                       How to reach into Org’s internals
-* Add-on packages::             Available extensions
-* Adding hyperlink types::      New custom link types
-* Adding export back-ends::     How to write new export back-ends
-* Context-sensitive commands::  How to add functionality to such commands
-* Tables in arbitrary syntax::  Orgtbl for LaTeX and other programs
-* Dynamic blocks::              Automatically filled blocks
-* Special agenda views::        Customized views
-* Speeding up your agendas::    Tips on how to speed up your agendas
-* Extracting agenda information::  Post-processing of agenda information
-* Using the property API::      Writing programs that use entry properties
-* Using the mapping API::       Mapping over all or selected entries
-
-Tables and lists in arbitrary syntax
-
-* Radio tables::                Sending and receiving radio tables
-* A LaTeX example::          Step by step, almost a tutorial
-* Translator functions::        Copy and modify
-* Radio lists::                 Sending and receiving lists
-
-MobileOrg
-
-* Setting up the staging area::  For the mobile device
-* Pushing to MobileOrg::        Uploading Org files and agendas
-* Pulling from MobileOrg::      Integrating captured and flagged items
-
-
-
-File: org,  Node: Introduction,  Next: Document structure,  Up: Top
-
-1 Introduction
-**************
-
-* Menu:
-
-* Summary::                     Brief summary of what Org does
-* Installation::                Installing Org
-* Activation::                  How to activate Org for certain buffers
-* Feedback::                    Bug reports, ideas, patches etc.
-* Conventions::                 Typesetting conventions in the manual
-
-
-File: org,  Node: Summary,  Next: Installation,  Up: Introduction
-
-1.1 Summary
-===========
-
-Org is a mode for keeping notes, maintaining TODO lists, and project
-planning with a fast and effective plain-text system.  It also is an
-authoring system with unique support for literate programming and
-reproducible research.
-
-   Org is implemented on top of Outline mode, which makes it possible to
-keep the content of large files well structured.  Visibility cycling and
-structure editing help to work with the tree.  Tables are easily created
-with a built-in table editor.  Plain text URL-like links connect to
-websites, emails, Usenet messages, BBDB entries, and any files related
-to the projects.
-
-   Org develops organizational tasks around notes files that contain
-lists or information about projects as plain text.  Project planning and
-task management makes use of metadata which is part of an outline node.
-Based on this data, specific entries can be extracted in queries and
-create dynamic agenda views that also integrate the Emacs calendar and
-diary.  Org can be used to implement many different project planning
-schemes, such as David Allen’s GTD system.
-
-   Org files can serve as a single source authoring system with export
-to many different formats such as HTML, LaTeX, Open Document, and
-Markdown.  New export backends can be derived from existing ones, or
-defined from scratch.
-
-   Org files can include source code blocks, which makes Org uniquely
-suited for authoring technical documents with code examples.  Org source
-code blocks are fully functional; they can be evaluated in place and
-their results can be captured in the file.  This makes it possible to
-create a single file reproducible research compendium.
-
-   Org keeps simple things simple.  When first fired up, it should feel
-like a straightforward, easy to use outliner.  Complexity is not
-imposed, but a large amount of functionality is available when needed.
-Org is a toolbox.  Many users actually run only a (very personal)
-fraction of Org’s capabilities, and know that there is more whenever
-they need it.
-
-   All of this is achieved with strictly plain text files, the most
-portable and future-proof file format.  Org runs in Emacs.  Emacs is one
-of the most widely ported programs, so that Org mode is available on
-every major platform.
-
-   There is a website for Org which provides links to the newest version
-of Org, as well as additional information, frequently asked questions
-(FAQ), links to tutorials, etc.  This page is located at
-<https://orgmode.org>.
-
-   An earlier version (7.3) of this manual is available as a paperback
-book from Network Theory Ltd.
-(http://www.network-theory.co.uk/org/manual/)
-
-
-File: org,  Node: Installation,  Next: Activation,  Prev: Summary,  Up: Introduction
-
-1.2 Installation
-================
-
-Org is part of recent distributions of GNU Emacs, so you normally don’t
-need to install it.  If, for one reason or another, you want to install
-Org on top of this pre-packaged version, there are three ways to do it:
-
-   • By using Emacs package system.
-   • By downloading Org as an archive.
-   • By using Org’s git repository.
-
-   We strongly recommend to stick to a single installation method.
-
-Using Emacs packaging system
-............................
-
-Recent Emacs distributions include a packaging system which lets you
-install Elisp libraries.  You can install Org with ‘M-x package-install
-<RET> org’.
-
-Important: you need to do this in a session where no ‘.org’ file has
-been visited, i.e., where no Org built-in function have been loaded.
-Otherwise autoload Org functions will mess up the installation.
-
-   Then, to make sure your Org configuration is taken into account,
-initialize the package system with ‘(package-initialize)’ in your Emacs
-init file before setting any Org option.  If you want to use Org’s
-package repository, check out the Org ELPA page
-(https://orgmode.org/elpa.html).
-
-Downloading Org as an archive
-.............................
-
-You can download Org latest release from Org’s website
-(https://orgmode.org/).  In this case, make sure you set the load-path
-correctly in your Emacs init file:
-
-     (add-to-list 'load-path "~/path/to/orgdir/lisp")
-
-   The downloaded archive contains contributed libraries that are not
-included in Emacs.  If you want to use them, add the ‘contrib’ directory
-to your load-path:
-
-     (add-to-list 'load-path "~/path/to/orgdir/contrib/lisp" t)
-
-   Optionally, you can compile the files and/or install them in your
-system.  Run ‘make help’ to list compilation and installation options.
-
-Using Org’s git repository
-..........................
-
-You can clone Org’s repository and install Org like this:
-
-     $ cd ~/src/
-     $ git clone https://code.orgmode.org/bzg/org-mode.git
-     $ cd org-mode/
-     $ make autoloads
-
-   Note that in this case, ‘make autoloads’ is mandatory: it defines
-Org’s version in ‘org-version.el’ and Org’s autoloads in
-‘org-loaddefs.el’.
-
-   Remember to add the correct load-path as described in the method
-above.
-
-   You can also compile with ‘make’, generate the documentation with
-‘make doc’, create a local configuration with ‘make config’ and install
-Org with ‘make install’.  Please run ‘make help’ to get the list of
-compilation/installation options.
-
-   For more detailed explanations on Org’s build system, please check
-the Org Build System page on Worg
-(https://orgmode.org/worg/dev/org-build-system.html).
-
-
-File: org,  Node: Activation,  Next: Feedback,  Prev: Installation,  Up: Introduction
-
-1.3 Activation
-==============
-
-Org mode buffers need font-lock to be turned on: this is the default in
-Emacs(1).
-
-   There are compatibility issues between Org mode and some other Elisp
-packages, please take the time to check the list (*note Conflicts::).
-
-   The four Org commands ‘org-store-link’, ‘org-capture’, ‘org-agenda’,
-and ‘org-switchb’ should be accessible through global keys (i.e.,
-anywhere in Emacs, not just in Org buffers).  Here are suggested
-bindings for these keys, please modify the keys to your own liking.
-     (global-set-key "\C-cl" 'org-store-link)
-     (global-set-key "\C-ca" 'org-agenda)
-     (global-set-key "\C-cc" 'org-capture)
-     (global-set-key "\C-cb" 'org-switchb)
-
-   Files with the ‘.org’ extension use Org mode by default.  To turn on
-Org mode in a file that does not have the extension ‘.org’, make the
-first line of a file look like this:
-
-     MY PROJECTS    -*- mode: org; -*-
-
-which will select Org mode for this buffer no matter what the file’s
-name is.  See also the variable ‘org-insert-mode-line-in-empty-file’.
-
-   Many commands in Org work on the region if the region is active.  To
-make use of this, you need to have ‘transient-mark-mode’ turned on,
-which is the default.  If you do not like ‘transient-mark-mode’, you can
-create an active region by using the mouse to select a region, or
-pressing ‘C-<SPC>’ twice before moving the cursor.
-
-   ---------- Footnotes ----------
-
-   (1) If you don’t use font-lock globally, turn it on in Org buffer
-with ‘(add-hook 'org-mode-hook 'turn-on-font-lock)’
-
-
-File: org,  Node: Feedback,  Next: Conventions,  Prev: Activation,  Up: Introduction
-
-1.4 Feedback
-============
-
-If you find problems with Org, or if you have questions, remarks, or
-ideas about it, please mail to the Org mailing list
-<emacs-orgmode@gnu.org>.  You can subscribe to the list on this web page
-(https://lists.gnu.org/mailman/listinfo/emacs-orgmode).  If you are not
-a member of the mailing list, your mail will be passed to the list after
-a moderator has approved it(1).
-
-   For bug reports, please first try to reproduce the bug with the
-latest version of Org available—if you are running an outdated version,
-it is quite possible that the bug has been fixed already.  If the bug
-persists, prepare a report and provide as much information as possible,
-including the version information of Emacs (‘M-x emacs-version <RET>’)
-and Org (‘M-x org-version <RET>’), as well as the Org related setup in
-the Emacs init file.  The easiest way to do this is to use the command
-     M-x org-submit-bug-report <RET>
-which will put all this information into an Emacs mail buffer so that
-you only need to add your description.  If you are not sending the Email
-from within Emacs, please copy and paste the content into your Email
-program.
-
-   Sometimes you might face a problem due to an error in your Emacs or
-Org mode setup.  Before reporting a bug, it is very helpful to start
-Emacs with minimal customizations and reproduce the problem.  Doing so
-often helps you determine if the problem is with your customization or
-with Org mode itself.  You can start a typical minimal session with a
-command like the example below.
-
-     $ emacs -Q -l /path/to/minimal-org.el
-
-   However if you are using Org mode as distributed with Emacs, a
-minimal setup is not necessary.  In that case it is sufficient to start
-Emacs as ‘emacs -Q’.  The ‘minimal-org.el’ setup file can have contents
-as shown below.
-
-     ;;; Minimal setup to load latest 'org-mode'
-
-     ;; activate debugging
-     (setq debug-on-error t
-           debug-on-signal nil
-           debug-on-quit nil)
-
-     ;; add latest org-mode to load path
-     (add-to-list 'load-path "/path/to/org-mode/lisp")
-     (add-to-list 'load-path "/path/to/org-mode/contrib/lisp" t)
-
-   If an error occurs, a backtrace can be very useful (see below on how
-to create one).  Often a small example file helps, along with clear
-information about:
-
-  1. What exactly did you do?
-  2. What did you expect to happen?
-  3. What happened instead?
-Thank you for helping to improve this program.
-
-How to create a useful backtrace
-................................
-
-If working with Org produces an error with a message you don’t
-understand, you may have hit a bug.  The best way to report this is by
-providing, in addition to what was mentioned above, a _backtrace_.  This
-is information from the built-in debugger about where and how the error
-occurred.  Here is how to produce a useful backtrace:
-
-  1. Reload uncompiled versions of all Org mode Lisp files.  The
-     backtrace contains much more information if it is produced with
-     uncompiled code.  To do this, use
-          C-u M-x org-reload <RET>
-     or select ‘Org -> Refresh/Reload -> Reload Org uncompiled’ from the
-     menu.
-  2. Go to the ‘Options’ menu and select ‘Enter Debugger on Error’.
-  3. Do whatever you have to do to hit the error.  Don’t forget to
-     document the steps you take.
-  4. When you hit the error, a ‘*Backtrace*’ buffer will appear on the
-     screen.  Save this buffer to a file (for example using ‘C-x C-w’)
-     and attach it to your bug report.
-
-   ---------- Footnotes ----------
-
-   (1) Please consider subscribing to the mailing list, in order to
-minimize the work the mailing list moderators have to do.
-
-
-File: org,  Node: Conventions,  Prev: Feedback,  Up: Introduction
-
-1.5 Typesetting conventions used in this manual
-===============================================
-
-TODO keywords, tags, properties, etc.
-.....................................
-
-Org mainly uses three types of keywords: TODO keywords, tags and
-property names.  In this manual we use the following conventions:
-
-‘TODO’
-‘WAITING’
-     TODO keywords are written with all capitals, even if they are
-     user-defined.
-‘boss’
-‘ARCHIVE’
-     User-defined tags are written in lowercase; built-in tags with
-     special meaning are written with all capitals.
-‘Release’
-‘PRIORITY’
-     User-defined properties are capitalized; built-in properties with
-     special meaning are written with all capitals.
-
-   Moreover, Org uses option keywords (like ‘#+TITLE’ to set the title)
-and environment keywords (like ‘#+BEGIN_EXPORT html’ to start a ‘HTML’
-environment).  They are written in uppercase in the manual to enhance
-its readability, but you can use lowercase in your Org file.
-
-Key bindings and commands
-.........................
-
-The manual suggests a few global key bindings, in particular ‘C-c a’ for
-‘org-agenda’ and ‘C-c c’ for ‘org-capture’.  These are only suggestions,
-but the rest of the manual assumes that these key bindings are in place
-in order to list commands by key access.
-
-   Also, the manual lists both the keys and the corresponding commands
-for accessing a functionality.  Org mode often uses the same key for
-different functions, depending on context.  The command that is bound to
-such keys has a generic name, like ‘org-metaright’.  In the manual we
-will, wherever possible, give the function that is internally called by
-the generic command.  For example, in the chapter on document structure,
-‘M-<RIGHT>’ will be listed to call ‘org-do-demote’, while in the chapter
-on tables, it will be listed to call ‘org-table-move-column-right’.  If
-you prefer, you can compile the manual without the command names by
-unsetting the flag ‘cmdnames’ in ‘org.texi’.
-
-
-File: org,  Node: Document structure,  Next: Tables,  Prev: Introduction,  Up: Top
-
-2 Document structure
-********************
-
-Org is based on Outline mode and provides flexible commands to edit the
-structure of the document.
-
-* Menu:
-
-* Outlines::                    Org is based on Outline mode
-* Headlines::                   How to typeset Org tree headlines
-* Visibility cycling::          Show and hide, much simplified
-* Motion::                      Jumping to other headlines
-* Structure editing::           Changing sequence and level of headlines
-* Sparse trees::                Matches embedded in context
-* Plain lists::                 Additional structure within an entry
-* Drawers::                     Tucking stuff away
-* Blocks::                      Folding blocks
-* Footnotes::                   How footnotes are defined in Org’s syntax
-* Orgstruct mode::              Structure editing outside Org
-* Org syntax::                  Formal description of Org’s syntax
-
-
-File: org,  Node: Outlines,  Next: Headlines,  Up: Document structure
-
-2.1 Outlines
-============
-
-Org is implemented on top of Outline mode.  Outlines allow a document to
-be organized in a hierarchical structure, which (at least for me) is the
-best representation of notes and thoughts.  An overview of this
-structure is achieved by folding (hiding) large parts of the document to
-show only the general document structure and the parts currently being
-worked on.  Org greatly simplifies the use of outlines by compressing
-the entire show/hide functionality into a single command, ‘org-cycle’,
-which is bound to the <TAB> key.
-
-
-File: org,  Node: Headlines,  Next: Visibility cycling,  Prev: Outlines,  Up: Document structure
-
-2.2 Headlines
-=============
-
-Headlines define the structure of an outline tree.  The headlines in Org
-start with one or more stars, on the left margin(1) (2).  For example:
-
-     * Top level headline
-     ** Second level
-     *** 3rd level
-         some text
-     *** 3rd level
-         more text
-
-     * Another top level headline
-
-Note that a headline named after ‘org-footnote-section’, which defaults
-to ‘Footnotes’, is considered as special.  A subtree with this headline
-will be silently ignored by exporting functions.
-
-   Some people find the many stars too noisy and would prefer an outline
-that has whitespace followed by a single star as headline starters.
-*note Clean view::, describes a setup to realize this.
-
-   An empty line after the end of a subtree is considered part of it and
-will be hidden when the subtree is folded.  However, if you leave at
-least two empty lines, one empty line will remain visible after folding
-the subtree, in order to structure the collapsed view.  See the variable
-‘org-cycle-separator-lines’ to modify this behavior.
-
-   ---------- Footnotes ----------
-
-   (1) See the variables ‘org-special-ctrl-a/e’, ‘org-special-ctrl-k’,
-and ‘org-ctrl-k-protect-subtree’ to configure special behavior of ‘C-a’,
-‘C-e’, and ‘C-k’ in headlines.
-
-   (2) Clocking only works with headings indented less than 30 stars.
-
-
-File: org,  Node: Visibility cycling,  Next: Motion,  Prev: Headlines,  Up: Document structure
-
-2.3 Visibility cycling
-======================
-
-* Menu:
-
-* Global and local cycling::    Cycling through various visibility states
-* Initial visibility::          Setting the initial visibility state
-* Catching invisible edits::    Preventing mistakes when editing invisible parts
-
-
-File: org,  Node: Global and local cycling,  Next: Initial visibility,  Up: Visibility cycling
-
-2.3.1 Global and local cycling
-------------------------------
-
-Outlines make it possible to hide parts of the text in the buffer.  Org
-uses just two commands, bound to <TAB> and ‘S-<TAB>’ to change the
-visibility in the buffer.
-
-‘<TAB>’     (‘org-cycle’)
-     _Subtree cycling_: Rotate current subtree among the states
-
-          ,-> FOLDED -> CHILDREN -> SUBTREE --.
-          '-----------------------------------'
-
-     The cursor must be on a headline for this to work(1).
-
-‘S-<TAB>’     (‘org-global-cycle’)
-C-u <TAB>
-     _Global cycling_: Rotate the entire buffer among the states
-
-          ,-> OVERVIEW -> CONTENTS -> SHOW ALL --.
-          '--------------------------------------'
-
-     When ‘S-<TAB>’ is called with a numeric prefix argument N, the
-     CONTENTS view up to headlines of level N will be shown.  Note that
-     inside tables, ‘S-<TAB>’ jumps to the previous field.
-
-     You can run global cycling using <TAB> only if point is at the very
-     beginning of the buffer, but not on a headline, and
-     ‘org-cycle-global-at-bob’ is set to a non-‘nil’ value.
-
-‘C-u C-u <TAB>’     (‘org-set-startup-visibility’)
-     Switch back to the startup visibility of the buffer (*note Initial
-     visibility::).
-‘C-u C-u C-u <TAB>’     (‘outline-show-all’)
-     Show all, including drawers.
-‘C-c C-r’     (‘org-reveal’)
-     Reveal context around point, showing the current entry, the
-     following heading and the hierarchy above.  Useful for working near
-     a location that has been exposed by a sparse tree command (*note
-     Sparse trees::) or an agenda command (*note Agenda commands::).
-     With a prefix argument show, on each level, all sibling headings.
-     With a double prefix argument, also show the entire subtree of the
-     parent.
-‘C-c C-k’     (‘outline-show-branches’)
-     Expose all the headings of the subtree, CONTENTS view for just one
-     subtree.
-‘C-c <TAB>’     (‘outline-show-children’)
-     Expose all direct children of the subtree.  With a numeric prefix
-     argument N, expose all children down to level N.
-‘C-c C-x b’     (‘org-tree-to-indirect-buffer’)
-     Show the current subtree in an indirect buffer(2).  With a numeric
-     prefix argument N, go up to level N and then take that tree.  If N
-     is negative then go up that many levels.  With a ‘C-u’ prefix, do
-     not remove the previously used indirect buffer.
-‘C-c C-x v’     (‘org-copy-visible’)
-     Copy the visible text in the region into the kill ring.
-
-   ---------- Footnotes ----------
-
-   (1) see, however, the option ‘org-cycle-emulate-tab’.
-
-   (2) The indirect buffer (*note (emacs)Indirect Buffers::) will
-contain the entire buffer, but will be narrowed to the current tree.
-Editing the indirect buffer will also change the original buffer, but
-without affecting visibility in that buffer.
-
-
-File: org,  Node: Initial visibility,  Next: Catching invisible edits,  Prev: Global and local cycling,  Up: Visibility cycling
-
-2.3.2 Initial visibility
-------------------------
-
-When Emacs first visits an Org file, the global state is set to
-OVERVIEW, i.e., only the top level headlines are visible(1).  This can
-be configured through the variable ‘org-startup-folded’, or on a
-per-file basis by adding one of the following lines anywhere in the
-buffer:
-
-     #+STARTUP: overview
-     #+STARTUP: content
-     #+STARTUP: showall
-     #+STARTUP: showeverything
-
-Furthermore, any entries with a ‘VISIBILITY’ property (*note Properties
-and columns::) will get their visibility adapted accordingly.  Allowed
-values for this property are ‘folded’, ‘children’, ‘content’, and ‘all’.
-
-‘C-u C-u <TAB>’     (‘org-set-startup-visibility’)
-     Switch back to the startup visibility of the buffer, i.e., whatever
-     is requested by startup options and ‘VISIBILITY’ properties in
-     individual entries.
-
-   ---------- Footnotes ----------
-
-   (1) When ‘org-agenda-inhibit-startup’ is non-‘nil’, Org will not
-honor the default visibility state when first opening a file for the
-agenda (*note Speeding up your agendas::).
-
-
-File: org,  Node: Catching invisible edits,  Prev: Initial visibility,  Up: Visibility cycling
-
-2.3.3 Catching invisible edits
-------------------------------
-
-Sometimes you may inadvertently edit an invisible part of the buffer and
-be confused on what has been edited and how to undo the mistake.
-Setting ‘org-catch-invisible-edits’ to non-‘nil’ will help prevent this.
-See the docstring of this option on how Org should catch invisible edits
-and process them.
-
-
-File: org,  Node: Motion,  Next: Structure editing,  Prev: Visibility cycling,  Up: Document structure
-
-2.4 Motion
-==========
-
-The following commands jump to other headlines in the buffer.
-
-‘C-c C-n’     (‘org-next-visible-heading’)
-     Next heading.
-‘C-c C-p’     (‘org-previous-visible-heading’)
-     Previous heading.
-‘C-c C-f’     (‘org-forward-same-level’)
-     Next heading same level.
-‘C-c C-b’     (‘org-backward-same-level’)
-     Previous heading same level.
-‘C-c C-u’     (‘outline-up-heading’)
-     Backward to higher level heading.
-‘C-c C-j’     (‘org-goto’)
-     Jump to a different place without changing the current outline
-     visibility.  Shows the document structure in a temporary buffer,
-     where you can use the following keys to find your destination:
-          <TAB>         Cycle visibility.
-          <DOWN> / <UP>   Next/previous visible headline.
-          <RET>         Select this location.
-          /           Do a Sparse-tree search
-          The following keys work if you turn off ‘org-goto-auto-isearch’
-          n / p        Next/previous visible headline.
-          f / b        Next/previous headline same level.
-          u            One level up.
-          0-9          Digit argument.
-          q            Quit
-     See also the option ‘org-goto-interface’.
-
-
-File: org,  Node: Structure editing,  Next: Sparse trees,  Prev: Motion,  Up: Document structure
-
-2.5 Structure editing
-=====================
-
-‘M-<RET>’     (‘org-meta-return’)
-     Insert a new heading, item or row.
-
-     If the command is used at the _beginning_ of a line, and if there
-     is a heading or a plain list item (*note Plain lists::) at point,
-     the new heading/item is created _before_ the current line.  When
-     used at the beginning of a regular line of text, turn that line
-     into a heading.
-
-     When this command is used in the middle of a line, the line is
-     split and the rest of the line becomes the new item or headline.
-     If you do not want the line to be split, customize
-     ‘org-M-RET-may-split-line’.
-
-     Calling the command with a ‘C-u’ prefix unconditionally inserts a
-     new heading at the end of the current subtree, thus preserving its
-     contents.  With a double ‘C-u C-u’ prefix, the new heading is
-     created at the end of the parent subtree instead.
-‘C-<RET>’     (‘org-insert-heading-respect-content’)
-     Insert a new heading at the end of the current subtree.
-‘M-S-<RET>’     (‘org-insert-todo-heading’)
-     Insert new TODO entry with same level as current heading.  See also
-     the variable ‘org-treat-insert-todo-heading-as-state-change’.
-‘C-S-<RET>’     (‘org-insert-todo-heading-respect-content’)
-     Insert new TODO entry with same level as current heading.  Like
-     ‘C-<RET>’, the new headline will be inserted after the current
-     subtree.
-‘<TAB>’     (‘org-cycle’)
-     In a new entry with no text yet, the first <TAB> demotes the entry
-     to become a child of the previous one.  The next <TAB> makes it a
-     parent, and so on, all the way to top level.  Yet another <TAB>,
-     and you are back to the initial level.
-‘M-<LEFT>’     (‘org-do-promote’)
-     Promote current heading by one level.
-‘M-<RIGHT>’     (‘org-do-demote’)
-     Demote current heading by one level.
-‘M-S-<LEFT>’     (‘org-promote-subtree’)
-     Promote the current subtree by one level.
-‘M-S-<RIGHT>’     (‘org-demote-subtree’)
-     Demote the current subtree by one level.
-‘M-<UP>’     (‘org-move-subtree-up’)
-     Move subtree up (swap with previous subtree of same level).
-‘M-<DOWN>’     (‘org-move-subtree-down’)
-     Move subtree down (swap with next subtree of same level).
-‘M-h’     (‘org-mark-element’)
-     Mark the element at point.  Hitting repeatedly will mark subsequent
-     elements of the one just marked.  E.g., hitting ‘M-h’ on a
-     paragraph will mark it, hitting ‘M-h’ immediately again will mark
-     the next one.
-‘C-c @’     (‘org-mark-subtree’)
-     Mark the subtree at point.  Hitting repeatedly will mark subsequent
-     subtrees of the same level than the marked subtree.
-‘C-c C-x C-w’     (‘org-cut-subtree’)
-     Kill subtree, i.e., remove it from buffer but save in kill ring.
-     With a numeric prefix argument N, kill N sequential subtrees.
-‘C-c C-x M-w’     (‘org-copy-subtree’)
-     Copy subtree to kill ring.  With a numeric prefix argument N, copy
-     the N sequential subtrees.
-‘C-c C-x C-y’     (‘org-paste-subtree’)
-     Yank subtree from kill ring.  This does modify the level of the
-     subtree to make sure the tree fits in nicely at the yank position.
-     The yank level can also be specified with a numeric prefix
-     argument, or by yanking after a headline marker like ‘****’.
-‘C-y’     (‘org-yank’)
-     Depending on the options ‘org-yank-adjusted-subtrees’ and
-     ‘org-yank-folded-subtrees’, Org’s internal ‘yank’ command will
-     paste subtrees folded and in a clever way, using the same command
-     as ‘C-c C-x C-y’.  With the default settings, no level adjustment
-     will take place, but the yanked tree will be folded unless doing so
-     would swallow text previously visible.  Any prefix argument to this
-     command will force a normal ‘yank’ to be executed, with the prefix
-     passed along.  A good way to force a normal yank is ‘C-u C-y’.  If
-     you use ‘yank-pop’ after a yank, it will yank previous kill items
-     plainly, without adjustment and folding.
-‘C-c C-x c’     (‘org-clone-subtree-with-time-shift’)
-     Clone a subtree by making a number of sibling copies of it.  You
-     will be prompted for the number of copies to make, and you can also
-     specify if any timestamps in the entry should be shifted.  This can
-     be useful, for example, to create a number of tasks related to a
-     series of lectures to prepare.  For more details, see the docstring
-     of the command ‘org-clone-subtree-with-time-shift’.
-‘C-c C-w’     (‘org-refile’)
-     Refile entry or region to a different location.  *Note Refile and
-     copy::.
-‘C-c ^’     (‘org-sort’)
-     Sort same-level entries.  When there is an active region, all
-     entries in the region will be sorted.  Otherwise the children of
-     the current headline are sorted.  The command prompts for the
-     sorting method, which can be alphabetically, numerically, by time
-     (first timestamp with active preferred, creation time, scheduled
-     time, deadline time), by priority, by TODO keyword (in the sequence
-     the keywords have been defined in the setup) or by the value of a
-     property.  Reverse sorting is possible as well.  You can also
-     supply your own function to extract the sorting key.  With a ‘C-u’
-     prefix, sorting will be case-sensitive.
-‘C-x n s’     (‘org-narrow-to-subtree’)
-     Narrow buffer to current subtree.
-‘C-x n b’     (‘org-narrow-to-block’)
-     Narrow buffer to current block.
-‘C-x n w’     (‘widen’)
-     Widen buffer to remove narrowing.
-‘C-c *’     (‘org-toggle-heading’)
-     Turn a normal line or plain list item into a headline (so that it
-     becomes a subheading at its location).  Also turn a headline into a
-     normal line by removing the stars.  If there is an active region,
-     turn all lines in the region into headlines.  If the first line in
-     the region was an item, turn only the item lines into headlines.
-     Finally, if the first line is a headline, remove the stars from all
-     headlines in the region.
-
-   When there is an active region (Transient Mark mode), promotion and
-demotion work on all headlines in the region.  To select a region of
-headlines, it is best to place both point and mark at the beginning of a
-line, mark at the beginning of the first headline, and point at the line
-just after the last headline to change.  Note that when the cursor is
-inside a table (*note Tables::), the Meta-Cursor keys have different
-functionality.
-
-
-File: org,  Node: Sparse trees,  Next: Plain lists,  Prev: Structure editing,  Up: Document structure
-
-2.6 Sparse trees
-================
-
-An important feature of Org mode is the ability to construct _sparse
-trees_ for selected information in an outline tree, so that the entire
-document is folded as much as possible, but the selected information is
-made visible along with the headline structure above it(1).  Just try it
-out and you will see immediately how it works.
-
-   Org mode contains several commands for creating such trees, all these
-commands can be accessed through a dispatcher:
-
-‘C-c /’     (‘org-sparse-tree’)
-     This prompts for an extra key to select a sparse-tree creating
-     command.
-‘C-c / r’  or  ‘C-c / /’     (‘org-occur’)
-     Prompts for a regexp and shows a sparse tree with all matches.  If
-     the match is in a headline, the headline is made visible.  If the
-     match is in the body of an entry, headline and body are made
-     visible.  In order to provide minimal context, also the full
-     hierarchy of headlines above the match is shown, as well as the
-     headline following the match.  Each match is also highlighted; the
-     highlights disappear when the buffer is changed by an editing
-     command(2), or by pressing ‘C-c C-c’.  When called with a ‘C-u’
-     prefix argument, previous highlights are kept, so several calls to
-     this command can be stacked.
-‘M-g n’  or  ‘M-g M-n’     (‘next-error’)
-     Jump to the next sparse tree match in this buffer.
-‘M-g p’  or  ‘M-g M-p’     (‘previous-error’)
-     Jump to the previous sparse tree match in this buffer.
-
-For frequently used sparse trees of specific search strings, you can use
-the option ‘org-agenda-custom-commands’ to define fast keyboard access
-to specific sparse trees.  These commands will then be accessible
-through the agenda dispatcher (*note Agenda dispatcher::).  For example:
-
-     (setq org-agenda-custom-commands
-           '(("f" occur-tree "FIXME")))
-
-will define the key ‘C-c a f’ as a shortcut for creating a sparse tree
-matching the string ‘FIXME’.
-
-   The other sparse tree commands select headings based on TODO
-keywords, tags, or properties and will be discussed later in this
-manual.
-
-   To print a sparse tree, you can use the Emacs command
-‘ps-print-buffer-with-faces’ which does not print invisible parts of the
-document.  Or you can use ‘C-c C-e C-v’ to export only the visible part
-of the document and print the resulting file.
-
-   ---------- Footnotes ----------
-
-   (1) See also the variable ‘org-show-context-detail’ to decide how
-much context is shown around each match.
-
-   (2) This depends on the option ‘org-remove-highlights-with-change’
-
-
-File: org,  Node: Plain lists,  Next: Drawers,  Prev: Sparse trees,  Up: Document structure
-
-2.7 Plain lists
-===============
-
-Within an entry of the outline tree, hand-formatted lists can provide
-additional structure.  They also provide a way to create lists of
-checkboxes (*note Checkboxes::).  Org supports editing such lists, and
-every exporter (*note Exporting::) can parse and format them.
-
-   Org knows ordered lists, unordered lists, and description lists.
-   • _Unordered_ list items start with ‘-’, ‘+’, or ‘*’(1) as bullets.
-   • _Ordered_ list items start with a numeral followed by either a
-     period or a right parenthesis(2), such as ‘1.’ or ‘1)’(3).  If you
-     want a list to start with a different value (e.g., 20), start the
-     text of the item with ‘[@20]’(4).  Those constructs can be used in
-     any item of the list in order to enforce a particular numbering.
-   • _Description_ list items are unordered list items, and contain the
-     separator ‘ :: ’ to distinguish the description _term_ from the
-     description.
-
-   Items belonging to the same list must have the same indentation on
-the first line.  In particular, if an ordered list reaches number ‘10.’,
-then the 2–digit numbers must be written left-aligned with the other
-numbers in the list.  An item ends before the next line that is less or
-equally indented than its bullet/number.
-
-   A list ends whenever every item has ended, which means before any
-line less or equally indented than items at top level.  It also ends
-before two blank lines.  In that case, all items are closed.  Here is an
-example:
-
-     ** Lord of the Rings
-        My favorite scenes are (in this order)
-        1. The attack of the Rohirrim
-        2. Eowyn's fight with the witch king
-           + this was already my favorite scene in the book
-           + I really like Miranda Otto.
-        3. Peter Jackson being shot by Legolas
-           - on DVD only
-           He makes a really funny face when it happens.
-        But in the end, no individual scenes matter but the film as a whole.
-        Important actors in this film are:
-        - Elijah Wood :: He plays Frodo
-        - Sean Astin :: He plays Sam, Frodo's friend.  I still remember
-          him very well from his role as Mikey Walsh in The Goonies.
-
-   Org supports these lists by tuning filling and wrapping commands to
-deal with them correctly, and by exporting them properly (*note
-Exporting::).  Since indentation is what governs the structure of these
-lists, many structural constructs like ‘#+BEGIN_...’ blocks can be
-indented to signal that they belong to a particular item.
-
-   If you find that using a different bullet for a sub-list (than that
-used for the current list-level) improves readability, customize the
-variable ‘org-list-demote-modify-bullet’.  To get a greater difference
-of indentation between items and their sub-items, customize
-‘org-list-indent-offset’.
-
-   The following commands act on items when the cursor is in the first
-line of an item (the line with the bullet or number).  Some of them
-imply the application of automatic rules to keep list structure intact.
-If some of these actions get in your way, configure
-‘org-list-automatic-rules’ to disable them individually.
-
-‘<TAB>’     (‘org-cycle’)
-     Items can be folded just like headline levels.  Normally this works
-     only if the cursor is on a plain list item.  For more details, see
-     the variable ‘org-cycle-include-plain-lists’.  If this variable is
-     set to ‘integrate’, plain list items will be treated like low-level
-     headlines.  The level of an item is then given by the indentation
-     of the bullet/number.  Items are always subordinate to real
-     headlines, however; the hierarchies remain completely separated.
-     In a new item with no text yet, the first <TAB> demotes the item to
-     become a child of the previous one.  Subsequent <TAB>s move the
-     item to meaningful levels in the list and eventually get it back to
-     its initial position.
-‘M-<RET>’     (‘org-insert-heading’)
-     Insert new item at current level.  With a prefix argument, force a
-     new heading (*note Structure editing::).  If this command is used
-     in the middle of an item, that item is _split_ in two, and the
-     second part becomes the new item(5).  If this command is executed
-     _before item’s body_, the new item is created _before_ the current
-     one.
-
-‘M-S-<RET>’
-     Insert a new item with a checkbox (*note Checkboxes::).
-‘S-up’
-‘S-down’
-     Jump to the previous/next item in the current list(6), but only if
-     ‘org-support-shift-select’ is off.  If not, you can still use
-     paragraph jumping commands like ‘C-<UP>’ and ‘C-<DOWN>’ to quite
-     similar effect.
-‘M-up’
-‘M-down’
-     Move the item including subitems up/down(7) (swap with
-     previous/next item of same indentation).  If the list is ordered,
-     renumbering is automatic.
-‘M-left’
-‘M-right’
-     Decrease/increase the indentation of an item, leaving children
-     alone.
-‘M-S-<LEFT>’
-‘M-S-<RIGHT>’
-     Decrease/increase the indentation of the item, including subitems.
-     Initially, the item tree is selected based on current indentation.
-     When these commands are executed several times in direct
-     succession, the initially selected region is used, even if the new
-     indentation would imply a different hierarchy.  To use the new
-     hierarchy, break the command chain with a cursor motion or so.
-
-     As a special case, using this command on the very first item of a
-     list will move the whole list.  This behavior can be disabled by
-     configuring ‘org-list-automatic-rules’.  The global indentation of
-     a list has no influence on the text _after_ the list.
-‘C-c C-c’
-     If there is a checkbox (*note Checkboxes::) in the item line,
-     toggle the state of the checkbox.  In any case, verify bullets and
-     indentation consistency in the whole list.
-‘C-c -’
-     Cycle the entire list level through the different itemize/enumerate
-     bullets (‘-’, ‘+’, ‘*’, ‘1.’, ‘1)’) or a subset of them, depending
-     on ‘org-plain-list-ordered-item-terminator’, the type of list, and
-     its indentation.  With a numeric prefix argument N, select the Nth
-     bullet from this list.  If there is an active region when calling
-     this, all selected lines are converted to list items.  With a
-     prefix argument, selected text is changed into a single item.  If
-     the first line already was a list item, any item marker will be
-     removed from the list.  Finally, even without an active region, a
-     normal line will be converted into a list item.
-‘C-c *’
-     Turn a plain list item into a headline (so that it becomes a
-     subheading at its location).  *Note Structure editing::, for a
-     detailed explanation.
-‘C-c C-*’
-     Turn the whole plain list into a subtree of the current heading.
-     Checkboxes (*note Checkboxes::) will become TODO (resp.  DONE)
-     keywords when unchecked (resp.  checked).
-‘S-<LEFT>/<RIGHT>’
-     This command also cycles bullet styles when the cursor in on the
-     bullet or anywhere in an item line, details depending on
-     ‘org-support-shift-select’.
-‘C-c ^’
-     Sort the plain list.  You will be prompted for the sorting method:
-     numerically, alphabetically, by time, by checked status for check
-     lists, or by a custom function.
-
-   ---------- Footnotes ----------
-
-   (1) When using ‘*’ as a bullet, lines must be indented or they will
-be seen as top-level headlines.  Also, when you are hiding leading stars
-to get a clean outline view, plain list items starting with a star may
-be hard to distinguish from true headlines.  In short: even though ‘*’
-is supported, it may be better to not use it for plain list items.
-
-   (2) You can filter out any of them by configuring
-‘org-plain-list-ordered-item-terminator’.
-
-   (3) You can also get ‘a.’, ‘A.’, ‘a)’ and ‘A)’ by configuring
-‘org-list-allow-alphabetical’.  To minimize confusion with normal text,
-those are limited to one character only.  Beyond that limit, bullets
-will automatically fallback to numbers.
-
-   (4) If there’s a checkbox in the item, the cookie must be put
-_before_ the checkbox.  If you have activated alphabetical lists, you
-can also use counters like ‘[@b]’.
-
-   (5) If you do not want the item to be split, customize the variable
-‘org-M-RET-may-split-line’.
-
-   (6) If you want to cycle around items that way, you may customize
-‘org-list-use-circular-motion’.
-
-   (7) See ‘org-list-use-circular-motion’ for a cyclic behavior.
-
-
-File: org,  Node: Drawers,  Next: Blocks,  Prev: Plain lists,  Up: Document structure
-
-2.8 Drawers
-===========
-
-Sometimes you want to keep information associated with an entry, but you
-normally don’t want to see it.  For this, Org mode has _drawers_.  They
-can contain anything but a headline and another drawer.  Drawers look
-like this:
-
-     ** This is a headline
-        Still outside the drawer
-        :DRAWERNAME:
-        This is inside the drawer.
-        :END:
-        After the drawer.
-
-   You can interactively insert drawers at point by calling
-‘org-insert-drawer’, which is bound to ‘C-c C-x d’.  With an active
-region, this command will put the region inside the drawer.  With a
-prefix argument, this command calls ‘org-insert-property-drawer’ and add
-a property drawer right below the current headline.  Completion over
-drawer keywords is also possible using ‘M-<TAB>’(1).
-
-   Visibility cycling (*note Visibility cycling::) on the headline will
-hide and show the entry, but keep the drawer collapsed to a single line.
-In order to look inside the drawer, you need to move the cursor to the
-drawer line and press <TAB> there.  Org mode uses the ‘PROPERTIES’
-drawer for storing properties (*note Properties and columns::), and you
-can also arrange for state change notes (*note Tracking TODO state
-changes::) and clock times (*note Clocking work time::) to be stored in
-a drawer ‘LOGBOOK’.  If you want to store a quick note in the LOGBOOK
-drawer, in a similar way to state changes, use
-
-‘C-c C-z’
-     Add a time-stamped note to the LOGBOOK drawer.
-
-   You can select the name of the drawers which should be exported with
-‘org-export-with-drawers’.  In that case, drawer contents will appear in
-export output.  Property drawers are not affected by this variable:
-configure ‘org-export-with-properties’ instead.
-
-   ---------- Footnotes ----------
-
-   (1) Many desktops intercept ‘M-<TAB>’ to switch windows.  Use ‘C-M-i’
-or ‘<ESC> <TAB>’ instead for completion (*note Completion::).
-
-
-File: org,  Node: Blocks,  Next: Footnotes,  Prev: Drawers,  Up: Document structure
-
-2.9 Blocks
-==========
-
-Org mode uses begin...end blocks for various purposes from including
-source code examples (*note Literal examples::) to capturing time
-logging information (*note Clocking work time::).  These blocks can be
-folded and unfolded by pressing <TAB> in the begin line.  You can also
-get all blocks folded at startup by configuring the option
-‘org-hide-block-startup’ or on a per-file basis by using
-
-     #+STARTUP: hideblocks
-     #+STARTUP: nohideblocks
-
-
-File: org,  Node: Footnotes,  Next: Orgstruct mode,  Prev: Blocks,  Up: Document structure
-
-2.10 Footnotes
-==============
-
-Org mode supports the creation of footnotes.
-
-   A footnote is started by a footnote marker in square brackets in
-column 0, no indentation allowed.  It ends at the next footnote
-definition, headline, or after two consecutive empty lines.  The
-footnote reference is simply the marker in square brackets, inside text.
-Markers always start with ‘fn:’.  For example:
-
-     The Org homepage[fn:1] now looks a lot better than it used to.
-     ...
-     [fn:1] The link is: https://orgmode.org
-
-   Org mode extends the number-based syntax to _named_ footnotes and
-optional inline definition.  Here are the valid references:
-
-‘[fn:name]’
-     A named footnote reference, where ‘name’ is a unique label word,
-     or, for simplicity of automatic creation, a number.
-‘[fn::This is the inline definition of this footnote]’
-     A LaTeX-like anonymous footnote where the definition is given
-     directly at the reference point.
-‘[fn:name:a definition]’
-     An inline definition of a footnote, which also specifies a name for
-     the note.  Since Org allows multiple references to the same note,
-     you can then use ‘[fn:name]’ to create additional references.
-
-   Footnote labels can be created automatically, or you can create names
-yourself.  This is handled by the variable ‘org-footnote-auto-label’ and
-its corresponding ‘#+STARTUP’ keywords.  See the docstring of that
-variable for details.
-
-The following command handles footnotes:
-
-‘C-c C-x f’
-     The footnote action command.
-
-     When the cursor is on a footnote reference, jump to the definition.
-     When it is at a definition, jump to the (first) reference.
-
-     Otherwise, create a new footnote.  Depending on the option
-     ‘org-footnote-define-inline’(1), the definition will be placed
-     right into the text as part of the reference, or separately into
-     the location determined by the option ‘org-footnote-section’.
-
-     When this command is called with a prefix argument, a menu of
-     additional options is offered:
-          s   Sort the footnote definitions by reference sequence.  During editing,
-              Org makes no effort to sort footnote definitions into a particular
-              sequence.  If you want them sorted, use this command, which will
-              also move entries according to ‘org-footnote-section’.  Automatic
-              sorting after each insertion/deletion can be configured using the
-              option ‘org-footnote-auto-adjust’.
-          r   Renumber the simple ‘fn:N’ footnotes.  Automatic renumbering
-              after each insertion/deletion can be configured using the option
-              ‘org-footnote-auto-adjust’.
-          S   Short for first ‘r’, then ‘s’ action.
-          n   Normalize the footnotes by collecting all definitions (including
-              inline definitions) into a special section, and then numbering them
-              in sequence.  The references will then also be numbers.
-          d   Delete the footnote at point, and all definitions of and references
-              to it.
-     Depending on the variable ‘org-footnote-auto-adjust’(2),
-     renumbering and sorting footnotes can be automatic after each
-     insertion or deletion.
-
-‘C-c C-c’
-     If the cursor is on a footnote reference, jump to the definition.
-     If it is a the definition, jump back to the reference.  When called
-     at a footnote location with a prefix argument, offer the same menu
-     as ‘C-c C-x f’.
-‘C-c C-o or mouse-1/2’
-     Footnote labels are also links to the corresponding
-     definition/reference, and you can use the usual commands to follow
-     these links.
-
-‘C-c '’
-‘C-c '’
-     Edit the footnote definition corresponding to the reference at
-     point in a separate window.  The window can be closed by pressing
-     ‘C-c '’.
-
-   ---------- Footnotes ----------
-
-   (1) The corresponding in-buffer setting is: ‘#+STARTUP: fninline’ or
-‘#+STARTUP: nofninline’
-
-   (2) the corresponding in-buffer options are ‘fnadjust’ and
-‘nofnadjust’.
-
-
-File: org,  Node: Orgstruct mode,  Next: Org syntax,  Prev: Footnotes,  Up: Document structure
-
-2.11 The Orgstruct minor mode
-=============================
-
-If you like the intuitive way the Org mode structure editing and list
-formatting works, you might want to use these commands in other modes
-like Text mode or Mail mode as well.  The minor mode ‘orgstruct-mode’
-makes this possible.  Toggle the mode with ‘M-x orgstruct-mode <RET>’,
-or turn it on by default, for example in Message mode, with one of:
-
-     (add-hook 'message-mode-hook 'turn-on-orgstruct)
-     (add-hook 'message-mode-hook 'turn-on-orgstruct++)
-
-   When this mode is active and the cursor is on a line that looks to
-Org like a headline or the first line of a list item, most structure
-editing commands will work, even if the same keys normally have
-different functionality in the major mode you are using.  If the cursor
-is not in one of those special lines, Orgstruct mode lurks silently in
-the shadows.
-
-   When you use ‘orgstruct++-mode’, Org will also export indentation and
-autofill settings into that mode, and detect item context after the
-first line of an item.
-
-   You can also use Org structure editing to fold and unfold headlines
-in _any_ file, provided you defined ‘orgstruct-heading-prefix-regexp’:
-the regular expression must match the local prefix to use before Org’s
-headlines.  For example, if you set this variable to ‘";; "’ in Emacs
-Lisp files, you will be able to fold and unfold headlines in Emacs Lisp
-commented lines.  Some commands like ‘org-demote’ are disabled when the
-prefix is set, but folding/unfolding will work correctly.
-
-
-File: org,  Node: Org syntax,  Prev: Orgstruct mode,  Up: Document structure
-
-2.12 Org syntax
-===============
-
-A reference document providing a formal description of Org’s syntax is
-available as a draft on Worg
-(https://orgmode.org/worg/dev/org-syntax.html), written and maintained
-by Nicolas Goaziou.  It defines Org’s core internal concepts such as
-‘headlines’, ‘sections’, ‘affiliated keywords’, ‘(greater) elements’ and
-‘objects’.  Each part of an Org file falls into one of the categories
-above.
-
-   To explore the abstract structure of an Org buffer, run this in a
-buffer:
-
-     M-: (org-element-parse-buffer) <RET>
-
-   It will output a list containing the buffer’s content represented as
-an abstract structure.  The export engine relies on the information
-stored in this list.  Most interactive commands (e.g., for structure
-editing) also rely on the syntactic meaning of the surrounding context.
-
-   You can check syntax in your documents using ‘org-lint’ command.
-
-
-File: org,  Node: Tables,  Next: Hyperlinks,  Prev: Document structure,  Up: Top
-
-3 Tables
-********
-
-Org comes with a fast and intuitive table editor.  Spreadsheet-like
-calculations are supported using the Emacs ‘calc’ package (*note Calc:
-(calc)Top.).
-
-* Menu:
-
-* Built-in table editor::       Simple tables
-* Column width and alignment::  Overrule the automatic settings
-* Column groups::               Grouping to trigger vertical lines
-* Orgtbl mode::                 The table editor as minor mode
-* The spreadsheet::             The table editor has spreadsheet capabilities
-* Org-Plot::                    Plotting from org tables
-
-
-File: org,  Node: Built-in table editor,  Next: Column width and alignment,  Up: Tables
-
-3.1 The built-in table editor
-=============================
-
-Org makes it easy to format tables in plain ASCII.  Any line with ‘|’ as
-the first non-whitespace character is considered part of a table.  ‘|’
-is also the column separator(1).  A table might look like this:
-
-     | Name  | Phone | Age |
-     |-------+-------+-----|
-     | Peter |  1234 |  17 |
-     | Anna  |  4321 |  25 |
-
-   A table is re-aligned automatically each time you press <TAB> or
-<RET> or ‘C-c C-c’ inside the table.  <TAB> also moves to the next field
-(<RET> to the next row) and creates new table rows at the end of the
-table or before horizontal lines.  The indentation of the table is set
-by the first line.  Any line starting with ‘|-’ is considered as a
-horizontal separator line and will be expanded on the next re-align to
-span the whole table width.  So, to create the above table, you would
-only type
-
-     |Name|Phone|Age|
-     |-
-
-and then press <TAB> to align the table and start filling in fields.
-Even faster would be to type ‘|Name|Phone|Age’ followed by ‘C-c <RET>’.
-
-   When typing text into a field, Org treats <DEL>, <Backspace>, and all
-character keys in a special way, so that inserting and deleting avoids
-shifting other fields.  Also, when typing _immediately after the cursor
-was moved into a new field with ‘<TAB>’, ‘S-<TAB>’ or ‘<RET>’_, the
-field is automatically made blank.  If this behavior is too
-unpredictable for you, configure the option
-‘org-table-auto-blank-field’.
-
-     Creation and conversion
-     .......................
-
-‘C-c |     (org-table-create-or-convert-from-region)’
-     Convert the active region to a table.  If every line contains at
-     least one TAB character, the function assumes that the material is
-     tab separated.  If every line contains a comma, comma-separated
-     values (CSV) are assumed.  If not, lines are split at whitespace
-     into fields.  You can use a prefix argument to force a specific
-     separator: ‘C-u’ forces CSV, ‘C-u C-u’ forces TAB, ‘C-u C-u C-u’
-     will prompt for a regular expression to match the separator, and a
-     numeric argument N indicates that at least N consecutive spaces, or
-     alternatively a TAB will be the separator.
-     If there is no active region, this command creates an empty Org
-     table.  But it is easier just to start typing, like
-     ‘|Name|Phone|Age <RET> |- <TAB>’.
-
-     Re-aligning and field motion
-     ............................
-
-‘C-c C-c     (org-table-align)’
-     Re-align the table and don’t move to another field.
-‘C-c <SPC>     (org-table-blank-field)’
-     Blank the field at point.
-‘<TAB>     (org-table-next-field)’
-     Re-align the table, move to the next field.  Creates a new row if
-     necessary.
-‘S-<TAB>     (org-table-previous-field)’
-     Re-align, move to previous field.
-‘<RET>     (org-table-next-row)’
-     Re-align the table and move down to next row.  Creates a new row if
-     necessary.  At the beginning or end of a line, <RET> still does
-     NEWLINE, so it can be used to split a table.
-‘M-a     (org-table-beginning-of-field)’
-     Move to beginning of the current table field, or on to the previous
-     field.
-‘M-e     (org-table-end-of-field)’
-     Move to end of the current table field, or on to the next field.
-
-     Column and row editing
-     ......................
-
-‘M-<LEFT>     (org-table-move-column-left)’
-‘M-<RIGHT>     (org-table-move-column-right)’
-     Move the current column left/right.
-‘M-S-<LEFT>     (org-table-delete-column)’
-     Kill the current column.
-‘M-S-<RIGHT>     (org-table-insert-column)’
-     Insert a new column to the left of the cursor position.
-‘M-<UP>     (org-table-move-row-up)’
-‘M-<DOWN>     (org-table-move-row-down)’
-     Move the current row up/down.
-‘M-S-<UP>     (org-table-kill-row)’
-     Kill the current row or horizontal line.
-‘M-S-<DOWN>     (org-table-insert-row)’
-     Insert a new row above the current row.  With a prefix argument,
-     the line is created below the current one.
-‘C-c -     (org-table-insert-hline)’
-     Insert a horizontal line below current row.  With a prefix
-     argument, the line is created above the current line.
-‘C-c <RET>     (org-table-hline-and-move)’
-     Insert a horizontal line below current row, and move the cursor
-     into the row below that line.
-‘C-c ^     (org-table-sort-lines)’
-     Sort the table lines in the region.  The position of point
-     indicates the column to be used for sorting, and the range of lines
-     is the range between the nearest horizontal separator lines, or the
-     entire table.  If point is before the first column, you will be
-     prompted for the sorting column.  If there is an active region, the
-     mark specifies the first line and the sorting column, while point
-     should be in the last line to be included into the sorting.  The
-     command prompts for the sorting type (alphabetically, numerically,
-     or by time).  You can sort in normal or reverse order.  You can
-     also supply your own key extraction and comparison functions.  When
-     called with a prefix argument, alphabetic sorting will be
-     case-sensitive.
-
-     Regions
-     .......
-
-‘C-c C-x M-w     (org-table-copy-region)’
-     Copy a rectangular region from a table to a special clipboard.
-     Point and mark determine edge fields of the rectangle.  If there is
-     no active region, copy just the current field.  The process ignores
-     horizontal separator lines.
-‘C-c C-x C-w     (org-table-cut-region)’
-     Copy a rectangular region from a table to a special clipboard, and
-     blank all fields in the rectangle.  So this is the “cut” operation.
-‘C-c C-x C-y     (org-table-paste-rectangle)’
-     Paste a rectangular region into a table.  The upper left corner
-     ends up in the current field.  All involved fields will be
-     overwritten.  If the rectangle does not fit into the present table,
-     the table is enlarged as needed.  The process ignores horizontal
-     separator lines.
-‘M-<RET>     (org-table-wrap-region)’
-     Split the current field at the cursor position and move the rest to
-     the line below.  If there is an active region, and both point and
-     mark are in the same column, the text in the column is wrapped to
-     minimum width for the given number of lines.  A numeric prefix
-     argument may be used to change the number of desired lines.  If
-     there is no region, but you specify a prefix argument, the current
-     field is made blank, and the content is appended to the field
-     above.
-
-     Calculations
-     ............
-
-‘C-c +     (org-table-sum)’
-     Sum the numbers in the current column, or in the rectangle defined
-     by the active region.  The result is shown in the echo area and can
-     be inserted with ‘C-y’.
-‘S-<RET>     (org-table-copy-down)’
-     When current field is empty, copy from first non-empty field above.
-     When not empty, copy current field down to next row and move cursor
-     along with it.  Depending on the option ‘org-table-copy-increment’,
-     integer field values will be incremented during copy.  Integers
-     that are too large will not be incremented.  Also, a ‘0’ prefix
-     argument temporarily disables the increment.  This key is also used
-     by shift-selection and related modes (*note Conflicts::).
-
-     Miscellaneous
-     .............
-
-‘C-c `     (org-table-edit-field)’
-     Edit the current field in a separate window.  This is useful for
-     fields that are not fully visible (*note Column width and
-     alignment::).  When called with a ‘C-u’ prefix, just make the full
-     field visible, so that it can be edited in place.  When called with
-     two ‘C-u’ prefixes, make the editor window follow the cursor
-     through the table and always show the current field.  The follow
-     mode exits automatically when the cursor leaves the table, or when
-     you repeat this command with ‘C-u C-u C-c `’.
-‘M-x org-table-import <RET>’
-     Import a file as a table.  The table should be TAB or whitespace
-     separated.  Use, for example, to import a spreadsheet table or data
-     from a database, because these programs generally can write
-     TAB-separated text files.  This command works by inserting the file
-     into the buffer and then converting the region to a table.  Any
-     prefix argument is passed on to the converter, which uses it to
-     determine the separator.
-‘C-c |     (org-table-create-or-convert-from-region)’
-     Tables can also be imported by pasting tabular text into the Org
-     buffer, selecting the pasted text with ‘C-x C-x’ and then using the
-     ‘C-c |’ command (see above under Creation and conversion).
-‘M-x org-table-export <RET>’
-     Export the table, by default as a TAB-separated file.  Use for data
-     exchange with, for example, spreadsheet or database programs.  The
-     format used to export the file can be configured in the option
-     ‘org-table-export-default-format’.  You may also use properties
-     ‘TABLE_EXPORT_FILE’ and ‘TABLE_EXPORT_FORMAT’ to specify the file
-     name and the format for table export in a subtree.  Org supports
-     quite general formats for exported tables.  The exporter format is
-     the same as the format used by Orgtbl radio tables, see *note
-     Translator functions::, for a detailed description.
-
-   ---------- Footnotes ----------
-
-   (1) To insert a vertical bar into a table field, use ‘\vert’ or,
-inside a word ‘abc\vert{}def’.
-
-
-File: org,  Node: Column width and alignment,  Next: Column groups,  Prev: Built-in table editor,  Up: Tables
-
-3.2 Column width and alignment
-==============================
-
-The width of columns is automatically determined by the table editor.
-And also the alignment of a column is determined automatically from the
-fraction of number-like versus non-number fields in the column.
-
-   Sometimes a single field or a few fields need to carry more text,
-leading to inconveniently wide columns.  Or maybe you want to make a
-table with several columns having a fixed width, regardless of content.
-To set the width of a column, one field anywhere in the column may
-contain just the string ‘<N>’ where ‘N’ is an integer specifying the
-width of the column in characters.  The next re-align will then set the
-width of this column to this value.
-
-     |---+------------------------------|               |---+--------|
-     |   |                              |               |   | <6>    |
-     | 1 | one                          |               | 1 | one    |
-     | 2 | two                          |     ----\     | 2 | two    |
-     | 3 | This is a long chunk of text |     ----/     | 3 | This=> |
-     | 4 | four                         |               | 4 | four   |
-     |---+------------------------------|               |---+--------|
-
-Fields that are wider become clipped and end in the string ‘=>’.  Note
-that the full text is still in the buffer but is hidden.  To see the
-full text, hold the mouse over the field—a tool-tip window will show the
-full content.  To edit such a field, use the command ‘C-c `’ (that is
-‘C-c’ followed by the grave accent).  This will open a new window with
-the full field.  Edit it and finish with ‘C-c C-c’.
-
-   When visiting a file containing a table with narrowed columns, the
-necessary character hiding has not yet happened, and the table needs to
-be aligned before it looks nice.  Setting the option
-‘org-startup-align-all-tables’ will realign all tables in a file upon
-visiting, but also slow down startup.  You can also set this option on a
-per-file basis with:
-
-     #+STARTUP: align
-     #+STARTUP: noalign
-
-   If you would like to overrule the automatic alignment of number-rich
-columns to the right and of string-rich columns to the left, you can use
-‘<r>’, ‘<c>’(1) or ‘<l>’ in a similar fashion.  You may also combine
-alignment and field width like this: ‘<r10>’.
-
-   Lines which only contain these formatting cookies will be removed
-automatically when exporting the document.
-
-   ---------- Footnotes ----------
-
-   (1) Centering does not work inside Emacs, but it does have an effect
-when exporting to HTML.
-
-
-File: org,  Node: Column groups,  Next: Orgtbl mode,  Prev: Column width and alignment,  Up: Tables
-
-3.3 Column groups
-=================
-
-When Org exports tables, it does so by default without vertical lines
-because that is visually more satisfying in general.  Occasionally
-however, vertical lines can be useful to structure a table into groups
-of columns, much like horizontal lines can do for groups of rows.  In
-order to specify column groups, you can use a special row where the
-first field contains only ‘/’.  The further fields can either contain
-‘<’ to indicate that this column should start a group, ‘>’ to indicate
-the end of a group, or ‘<>’ (no space between ‘<’ and ‘>’) to make a
-column a group of its own.  Boundaries between column groups will upon
-export be marked with vertical lines.  Here is an example:
-
-     | N | N^2 | N^3 | N^4 | ~sqrt(n)~ | ~sqrt[4](N)~ |
-     |---+-----+-----+-----+-----------+--------------|
-     | / |   < |     |   > |         < |            > |
-     | 1 |   1 |   1 |   1 |         1 |            1 |
-     | 2 |   4 |   8 |  16 |    1.4142 |       1.1892 |
-     | 3 |   9 |  27 |  81 |    1.7321 |       1.3161 |
-     |---+-----+-----+-----+-----------+--------------|
-     #+TBLFM: $2=$1^2::$3=$1^3::$4=$1^4::$5=sqrt($1)::$6=sqrt(sqrt(($1)))
-
-   It is also sufficient to just insert the column group starters after
-every vertical line you would like to have:
-
-     |  N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N) |
-     |----+-----+-----+-----+---------+------------|
-     | /  | <   |     |     | <       |            |
-
-
-File: org,  Node: Orgtbl mode,  Next: The spreadsheet,  Prev: Column groups,  Up: Tables
-
-3.4 The Orgtbl minor mode
-=========================
-
-If you like the intuitive way the Org table editor works, you might also
-want to use it in other modes like Text mode or Mail mode.  The minor
-mode Orgtbl mode makes this possible.  You can always toggle the mode
-with ‘M-x orgtbl-mode <RET>’.  To turn it on by default, for example in
-Message mode, use
-
-     (add-hook 'message-mode-hook 'turn-on-orgtbl)
-
-   Furthermore, with some special setup, it is possible to maintain
-tables in arbitrary syntax with Orgtbl mode.  For example, it is
-possible to construct LaTeX tables with the underlying ease and power of
-Orgtbl mode, including spreadsheet capabilities.  For details, see *note
-Tables in arbitrary syntax::.
-
-
-File: org,  Node: The spreadsheet,  Next: Org-Plot,  Prev: Orgtbl mode,  Up: Tables
-
-3.5 The spreadsheet
-===================
-
-The table editor makes use of the Emacs ‘calc’ package to implement
-spreadsheet-like capabilities.  It can also evaluate Emacs Lisp forms to
-derive fields from other fields.  While fully featured, Org’s
-implementation is not identical to other spreadsheets.  For example, Org
-knows the concept of a _column formula_ that will be applied to all
-non-header fields in a column without having to copy the formula to each
-relevant field.  There is also a formula debugger, and a formula editor
-with features for highlighting fields in the table corresponding to the
-references at the point in the formula, moving these references by arrow
-keys
-
-* Menu:
-
-* References::                  How to refer to another field or range
-* Formula syntax for Calc::     Using Calc to compute stuff
-* Formula syntax for Lisp::     Writing formulas in Emacs Lisp
-* Durations and time values::   How to compute durations and time values
-* Field and range formulas::    Formula for specific (ranges of) fields
-* Column formulas::             Formulas valid for an entire column
-* Lookup functions::            Lookup functions for searching tables
-* Editing and debugging formulas::  Fixing formulas
-* Updating the table::          Recomputing all dependent fields
-* Advanced features::           Field and column names, parameters and automatic recalc
-
-
-File: org,  Node: References,  Next: Formula syntax for Calc,  Up: The spreadsheet
-
-3.5.1 References
-----------------
-
-To compute fields in the table from other fields, formulas must
-reference other fields or ranges.  In Org, fields can be referenced by
-name, by absolute coordinates, and by relative coordinates.  To find out
-what the coordinates of a field are, press ‘C-c ?’ in that field, or
-press ‘C-c }’ to toggle the display of a grid.
-
-Field references
-................
-
-Formulas can reference the value of another field in two ways.  Like in
-any other spreadsheet, you may reference fields with a letter/number
-combination like ‘B3’, meaning the 2nd field in the 3rd row.  However,
-Org prefers(1) to use another, more general representation that looks
-like this:
-     @ROW$COLUMN
-
-   Column specifications can be absolute like ‘$1’, ‘$2’,...‘$N’, or
-relative to the current column (i.e., the column of the field which is
-being computed) like ‘$+1’ or ‘$-2’.  ‘$<’ and ‘$>’ are immutable
-references to the first and last column, respectively, and you can use
-‘$>>>’ to indicate the third column from the right.
-
-   The row specification only counts data lines and ignores horizontal
-separator lines (hlines).  Like with columns, you can use absolute row
-numbers ‘@1’, ‘@2’,...‘@N’, and row numbers relative to the current row
-like ‘@+3’ or ‘@-1’.  ‘@<’ and ‘@>’ are immutable references the first
-and last(2) row in the table, respectively.  You may also specify the
-row relative to one of the hlines: ‘@I’ refers to the first hline, ‘@II’
-to the second, etc.  ‘@-I’ refers to the first such line above the
-current line, ‘@+I’ to the first such line below the current line.  You
-can also write ‘@III+2’ which is the second data line after the third
-hline in the table.
-
-   ‘@0’ and ‘$0’ refer to the current row and column, respectively,
-i.e., to the row/column for the field being computed.  Also, if you omit
-either the column or the row part of the reference, the current
-row/column is implied.
-
-   Org’s references with _unsigned_ numbers are fixed references in the
-sense that if you use the same reference in the formula for two
-different fields, the same field will be referenced each time.  Org’s
-references with _signed_ numbers are floating references because the
-same reference operator can reference different fields depending on the
-field being calculated by the formula.
-
-   Here are a few examples:
-
-     @2$3      2nd row, 3rd column (same as ‘C2’)
-     $5        column 5 in the current row (same as ‘E&’)
-     @2        current column, row 2
-     @-1$-3    the field one row up, three columns to the left
-     @-I$2     field just under hline above current row, column 2
-     @>$5      field in the last row, in column 5
-
-Range references
-................
-
-You may reference a rectangular range of fields by specifying two field
-references connected by two dots ‘..’.  If both fields are in the
-current row, you may simply use ‘$2..$7’, but if at least one field is
-in a different row, you need to use the general ‘@row$column’ format at
-least for the first field (i.e the reference must start with ‘@’ in
-order to be interpreted correctly).  Examples:
-
-     $1..$3        first three fields in the current row
-     $P..$Q        range, using column names (see under Advanced)
-     $<<<..$>>     start in third column, continue to the last but one
-     @2$1..@4$3    6 fields between these two fields (same as ‘A2..C4’)
-     @-1$-2..@-1   3 fields in the row above, starting from 2 columns on the left
-     @I..II        between first and second hline, short for ‘@I..@II’
-
-Range references return a vector of values that can be fed into Calc
-vector functions.  Empty fields in ranges are normally suppressed, so
-that the vector contains only the non-empty fields.  For other options
-with the mode switches ‘E’, ‘N’ and examples *note Formula syntax for
-Calc::.
-
-Field coordinates in formulas
-.............................
-
-One of the very first actions during evaluation of Calc formulas and
-Lisp formulas is to substitute ‘@#’ and ‘$#’ in the formula with the row
-or column number of the field where the current result will go to.  The
-traditional Lisp formula equivalents are ‘org-table-current-dline’ and
-‘org-table-current-column’.  Examples:
-
-‘if(@# % 2, $#, string(""))’
-     Insert column number on odd rows, set field to empty on even rows.
-‘$2 = '(identity remote(FOO, @@#$1))’
-     Copy text or values of each row of column 1 of the table named
-     ‘FOO’ into column 2 of the current table.
-‘@3 = 2 * remote(FOO, @1$$#)’
-     Insert the doubled value of each column of row 1 of the table named
-     ‘FOO’ into row 3 of the current table.
-
-For the second/third example, the table named ‘FOO’ must have at least
-as many rows/columns as the current table.  Note that this is
-inefficient(3) for large number of rows/columns.
-
-Named references
-................
-
-‘$name’ is interpreted as the name of a column, parameter or constant.
-Constants are defined globally through the option
-‘org-table-formula-constants’, and locally (for the file) through a line
-like
-
-     #+CONSTANTS: c=299792458. pi=3.14 eps=2.4e-6
-
-Also properties (*note Properties and columns::) can be used as
-constants in table formulas: for a property ‘:Xyz:’ use the name
-‘$PROP_Xyz’, and the property will be searched in the current outline
-entry and in the hierarchy above it.  If you have the ‘constants.el’
-package, it will also be used to resolve constants, including natural
-constants like ‘$h’ for Planck’s constant, and units like ‘$km’ for
-kilometers(4).  Column names and parameters can be specified in special
-table lines.  These are described below, see *note Advanced features::.
-All names must start with a letter, and further consist of letters and
-numbers.
-
-Remote references
-.................
-
-You may also reference constants, fields and ranges from a different
-table, either in the current file or even in a different file.  The
-syntax is
-
-     remote(NAME-OR-ID,REF)
-
-where NAME can be the name of a table in the current file as set by a
-‘#+NAME: Name’ line before the table.  It can also be the ID of an
-entry, even in a different file, and the reference then refers to the
-first table in that entry.  REF is an absolute field or range reference
-as described above for example ‘@3$3’ or ‘$somename’, valid in the
-referenced table.
-
-   Indirection of NAME-OR-ID: When NAME-OR-ID has the format
-‘@ROW$COLUMN’ it will be substituted with the name or ID found in this
-field of the current table.  For example ‘remote($1, @>$2)’ =>
-‘remote(year_2013, @>$1)’.  The format ‘B3’ is not supported because it
-can not be distinguished from a plain table name or ID.
-
-   ---------- Footnotes ----------
-
-   (1) Org will understand references typed by the user as ‘B4’, but it
-will not use this syntax when offering a formula for editing.  You can
-customize this behavior using the option
-‘org-table-use-standard-references’.
-
-   (2) For backward compatibility you can also use special names like
-‘$LR5’ and ‘$LR12’ to refer in a stable way to the 5th and 12th field in
-the last row of the table.  However, this syntax is deprecated, it
-should not be used for new documents.  Use ‘@>$’ instead.
-
-   (3) The computation time scales as O(N^2) because the table named
-‘FOO’ is parsed for each field to be read.
-
-   (4) ‘constants.el’ can supply the values of constants in two
-different unit systems, ‘SI’ and ‘cgs’.  Which one is used depends on
-the value of the variable ‘constants-unit-system’.  You can use the
-‘#+STARTUP’ options ‘constSI’ and ‘constcgs’ to set this value for the
-current buffer.
-
-
-File: org,  Node: Formula syntax for Calc,  Next: Formula syntax for Lisp,  Prev: References,  Up: The spreadsheet
-
-3.5.2 Formula syntax for Calc
------------------------------
-
-A formula can be any algebraic expression understood by the Emacs ‘Calc’
-package.  Note that ‘calc’ has the non-standard convention that ‘/’ has
-lower precedence than ‘*’, so that ‘a/b*c’ is interpreted as ‘a/(b*c)’.
-Before evaluation by ‘calc-eval’ (*note calc-eval: (calc)Calling Calc
-from Your Programs.), variable substitution takes place according to the
-rules described above.  The range vectors can be directly fed into the
-Calc vector functions like ‘vmean’ and ‘vsum’.
-
-   A formula can contain an optional mode string after a semicolon.
-This string consists of flags to influence Calc and other modes during
-execution.  By default, Org uses the standard Calc modes (precision 12,
-angular units degrees, fraction and symbolic modes off).  The display
-format, however, has been changed to ‘(float 8)’ to keep tables compact.
-The default settings can be configured using the option
-‘org-calc-default-modes’.
-
-List of modes:
-
-‘p20’
-     Set the internal Calc calculation precision to 20 digits.
-‘n3’, ‘s3’, ‘e2’, ‘f4’
-     Normal, scientific, engineering or fixed format of the result of
-     Calc passed back to Org.  Calc formatting is unlimited in precision
-     as long as the Calc calculation precision is greater.
-‘D’, ‘R’
-     Degree and radian angle modes of Calc.
-‘F’, ‘S’
-     Fraction and symbolic modes of Calc.
-‘T’, ‘t’, ‘U’
-     Duration computations in Calc or Lisp, *note Durations and time
-     values::.
-‘E’
-     If and how to consider empty fields.  Without ‘E’ empty fields in
-     range references are suppressed so that the Calc vector or Lisp
-     list contains only the non-empty fields.  With ‘E’ the empty fields
-     are kept.  For empty fields in ranges or empty field references the
-     value ‘nan’ (not a number) is used in Calc formulas and the empty
-     string is used for Lisp formulas.  Add ‘N’ to use 0 instead for
-     both formula types.  For the value of a field the mode ‘N’ has
-     higher precedence than ‘E’.
-‘N’
-     Interpret all fields as numbers, use 0 for non-numbers.  See the
-     next section to see how this is essential for computations with
-     Lisp formulas.  In Calc formulas it is used only occasionally
-     because there number strings are already interpreted as numbers
-     without ‘N’.
-‘L’
-     Literal, for Lisp formulas only.  See the next section.
-
-Unless you use large integer numbers or high-precision-calculation and
--display for floating point numbers you may alternatively provide a
-‘printf’ format specifier to reformat the Calc result after it has been
-passed back to Org instead of letting Calc already do the formatting(1).
-A few examples:
-
-     $1+$2                Sum of first and second field
-     $1+$2;%.2f           Same, format result to two decimals
-     exp($2)+exp($1)      Math functions can be used
-     $0;%.1f              Reformat current cell to 1 decimal
-     ($3-32)*5/9          Degrees F -> C conversion
-     $c/$1/$cm            Hz -> cm conversion, using ‘constants.el’
-     tan($1);Dp3s1        Compute in degrees, precision 3, display SCI 1
-     sin($1);Dp3%.1e      Same, but use printf specifier for display
-     taylor($3,x=7,2)     Taylor series of $3, at x=7, second degree
-
-   Calc also contains a complete set of logical operations, (*note
-Logical Operations: (calc)Logical Operations.).  For example
-
-‘if($1 < 20, teen, string(""))’
-     "teen" if age $1 is less than 20, else the Org table result field
-     is set to empty with the empty string.
-‘if("$1" == "nan" || "$2" == "nan", string(""), $1 + $2); E f-1’
-     Sum of the first two columns.  When at least one of the input
-     fields is empty the Org table result field is set to empty.  ‘E’ is
-     required to not convert empty fields to 0.  ‘f-1’ is an optional
-     Calc format string similar to ‘%.1f’ but leaves empty results
-     empty.
-‘if(typeof(vmean($1..$7)) == 12, string(""), vmean($1..$7); E’
-     Mean value of a range unless there is any empty field.  Every field
-     in the range that is empty is replaced by ‘nan’ which lets ‘vmean’
-     result in ‘nan’.  Then ‘typeof == 12’ detects the ‘nan’ from
-     ‘vmean’ and the Org table result field is set to empty.  Use this
-     when the sample set is expected to never have missing values.
-‘if("$1..$7" == "[]", string(""), vmean($1..$7))’
-     Mean value of a range with empty fields skipped.  Every field in
-     the range that is empty is skipped.  When all fields in the range
-     are empty the mean value is not defined and the Org table result
-     field is set to empty.  Use this when the sample set can have a
-     variable size.
-‘vmean($1..$7); EN’
-     To complete the example before: Mean value of a range with empty
-     fields counting as samples with value 0.  Use this only when
-     incomplete sample sets should be padded with 0 to the full size.
-
-   You can add your own Calc functions defined in Emacs Lisp with
-‘defmath’ and use them in formula syntax for Calc.
-
-   ---------- Footnotes ----------
-
-   (1) The ‘printf’ reformatting is limited in precision because the
-value passed to it is converted into an ‘integer’ or ‘double’.  The
-‘integer’ is limited in size by truncating the signed value to 32 bits.
-The ‘double’ is limited in precision to 64 bits overall which leaves
-approximately 16 significant decimal digits.
-
-
-File: org,  Node: Formula syntax for Lisp,  Next: Durations and time values,  Prev: Formula syntax for Calc,  Up: The spreadsheet
-
-3.5.3 Emacs Lisp forms as formulas
-----------------------------------
-
-It is also possible to write a formula in Emacs Lisp.  This can be
-useful for string manipulation and control structures, if Calc’s
-functionality is not enough.
-
-   If a formula starts with an apostrophe followed by an opening
-parenthesis, then it is evaluated as a Lisp form.  The evaluation should
-return either a string or a number.  Just as with ‘calc’ formulas, you
-can specify modes and a printf format after a semicolon.
-
-   With Emacs Lisp forms, you need to be conscious about the way field
-references are interpolated into the form.  By default, a reference will
-be interpolated as a Lisp string (in double-quotes) containing the
-field.  If you provide the ‘N’ mode switch, all referenced elements will
-be numbers (non-number fields will be zero) and interpolated as Lisp
-numbers, without quotes.  If you provide the ‘L’ flag, all fields will
-be interpolated literally, without quotes.  I.e., if you want a
-reference to be interpreted as a string by the Lisp form, enclose the
-reference operator itself in double-quotes, like ‘"$3"’.  Ranges are
-inserted as space-separated fields, so you can embed them in list or
-vector syntax.
-
-   Here are a few examples—note how the ‘N’ mode is used when we do
-computations in Lisp:
-
-‘'(concat (substring $1 1 2) (substring $1 0 1) (substring $1 2))’
-     Swap the first two characters of the content of column 1.
-‘'(+ $1 $2);N’
-     Add columns 1 and 2, equivalent to Calc’s ‘$1+$2’.
-‘'(apply '+ '($1..$4));N’
-     Compute the sum of columns 1 to 4, like Calc’s ‘vsum($1..$4)’.
-
-
-File: org,  Node: Durations and time values,  Next: Field and range formulas,  Prev: Formula syntax for Lisp,  Up: The spreadsheet
-
-3.5.4 Durations and time values
--------------------------------
-
-If you want to compute time values use the ‘T’, ‘t’, or ‘U’ flag, either
-in Calc formulas or Elisp formulas:
-
-       |  Task 1 |   Task 2 |    Total |
-       |---------+----------+----------|
-       |    2:12 |     1:47 | 03:59:00 |
-       |    2:12 |     1:47 |    03:59 |
-       | 3:02:20 | -2:07:00 |     0.92 |
-       #+TBLFM: @2$3=$1+$2;T::@3$3=$1+$2;U::@4$3=$1+$2;t
-
-   Input duration values must be of the form ‘HH:MM[:SS]’, where seconds
-are optional.  With the ‘T’ flag, computed durations will be displayed
-as ‘HH:MM:SS’ (see the first formula above).  With the ‘U’ flag, seconds
-will be omitted so that the result will be only ‘HH:MM’ (see second
-formula above).  Zero-padding of the hours field will depend upon the
-value of the variable ‘org-table-duration-hour-zero-padding’.
-
-   With the ‘t’ flag, computed durations will be displayed according to
-the value of the option ‘org-table-duration-custom-format’, which
-defaults to ‘'hours’ and will display the result as a fraction of hours
-(see the third formula in the example above).
-
-   Negative duration values can be manipulated as well, and integers
-will be considered as seconds in addition and subtraction.
-
-
-File: org,  Node: Field and range formulas,  Next: Column formulas,  Prev: Durations and time values,  Up: The spreadsheet
-
-3.5.5 Field and range formulas
-------------------------------
-
-To assign a formula to a particular field, type it directly into the
-field, preceded by ‘:=’, for example ‘:=vsum(@II..III)’.  When you press
-<TAB> or <RET> or ‘C-c C-c’ with the cursor still in the field, the
-formula will be stored as the formula for this field, evaluated, and the
-current field will be replaced with the result.
-
-   Formulas are stored in a special line starting with ‘#+TBLFM:’
-directly below the table.  If you type the equation in the 4th field of
-the 3rd data line in the table, the formula will look like ‘@3$4=$1+$2’.
-When inserting/deleting/swapping columns and rows with the appropriate
-commands, absolute references (but not relative ones) in stored formulas
-are modified in order to still reference the same field.  To avoid this,
-in particular in range references, anchor ranges at the table borders
-(using ‘@<’, ‘@>’, ‘$<’, ‘$>’), or at hlines using the ‘@I’ notation.
-Automatic adaptation of field references does of course not happen if
-you edit the table structure with normal editing commands—then you must
-fix the equations yourself.
-
-   Instead of typing an equation into the field, you may also use the
-following command
-
-‘C-u C-c =     (org-table-eval-formula)’
-     Install a new formula for the current field.  The command prompts
-     for a formula with default taken from the ‘#+TBLFM:’ line, applies
-     it to the current field, and stores it.
-
-   The left-hand side of a formula can also be a special expression in
-order to assign the formula to a number of different fields.  There is
-no keyboard shortcut to enter such range formulas.  To add them, use the
-formula editor (*note Editing and debugging formulas::) or edit the
-‘#+TBLFM:’ line directly.
-
-‘$2=’
-     Column formula, valid for the entire column.  This is so common
-     that Org treats these formulas in a special way, see *note Column
-     formulas::.
-‘@3=’
-     Row formula, applies to all fields in the specified row.  ‘@>=’
-     means the last row.
-‘@1$2..@4$3=’
-     Range formula, applies to all fields in the given rectangular
-     range.  This can also be used to assign a formula to some but not
-     all fields in a row.
-‘$name=’
-     Named field, see *note Advanced features::.
-
-
-File: org,  Node: Column formulas,  Next: Lookup functions,  Prev: Field and range formulas,  Up: The spreadsheet
-
-3.5.6 Column formulas
----------------------
-
-When you assign a formula to a simple column reference like ‘$3=’, the
-same formula will be used in all fields of that column, with the
-following very convenient exceptions: (i) If the table contains
-horizontal separator hlines with rows above and below, everything before
-the first such hline is considered part of the table _header_ and will
-not be modified by column formulas.  Therefore a header is mandatory
-when you use column formulas and want to add hlines to group rows, like
-for example to separate a total row at the bottom from the summand rows
-above.  (ii) Fields that already get a value from a field/range formula
-will be left alone by column formulas.  These conditions make column
-formulas very easy to use.
-
-   To assign a formula to a column, type it directly into any field in
-the column, preceded by an equal sign, like ‘=$1+$2’.  When you press
-<TAB> or <RET> or ‘C-c C-c’ with the cursor still in the field, the
-formula will be stored as the formula for the current column, evaluated
-and the current field replaced with the result.  If the field contains
-only ‘=’, the previously stored formula for this column is used.  For
-each column, Org will only remember the most recently used formula.  In
-the ‘#+TBLFM:’ line, column formulas will look like ‘$4=$1+$2’.  The
-left-hand side of a column formula cannot be the name of column, it must
-be the numeric column reference or ‘$>’.
-
-   Instead of typing an equation into the field, you may also use the
-following command:
-
-‘C-c =     (org-table-eval-formula)’
-     Install a new formula for the current column and replace current
-     field with the result of the formula.  The command prompts for a
-     formula, with default taken from the ‘#+TBLFM’ line, applies it to
-     the current field and stores it.  With a numeric prefix
-     argument(e.g., ‘C-5 C-c =’) the command will apply it to that many
-     consecutive fields in the current column.
-
-
-File: org,  Node: Lookup functions,  Next: Editing and debugging formulas,  Prev: Column formulas,  Up: The spreadsheet
-
-3.5.7 Lookup functions
-----------------------
-
-Org has three predefined Emacs Lisp functions for lookups in tables.
-‘(org-lookup-first VAL S-LIST R-LIST &optional PREDICATE)’
-     Searches for the first element ‘S’ in list ‘S-LIST’ for which
-          (PREDICATE VAL S)
-     is ‘t’; returns the value from the corresponding position in list
-     ‘R-LIST’.  The default ‘PREDICATE’ is ‘equal’.  Note that the
-     parameters ‘VAL’ and ‘S’ are passed to ‘PREDICATE’ in the same
-     order as the corresponding parameters are in the call to
-     ‘org-lookup-first’, where ‘VAL’ precedes ‘S-LIST’.  If ‘R-LIST’ is
-     ‘nil’, the matching element ‘S’ of ‘S-LIST’ is returned.
-‘(org-lookup-last VAL S-LIST R-LIST &optional PREDICATE)’
-     Similar to ‘org-lookup-first’ above, but searches for the last
-     element for which ‘PREDICATE’ is ‘t’.
-‘(org-lookup-all VAL S-LIST R-LIST &optional PREDICATE)’
-     Similar to ‘org-lookup-first’, but searches for all elements for
-     which ‘PREDICATE’ is ‘t’, and returns all corresponding values.
-     This function can not be used by itself in a formula, because it
-     returns a list of values.  However, powerful lookups can be built
-     when this function is combined with other Emacs Lisp functions.
-
-   If the ranges used in these functions contain empty fields, the ‘E’
-mode for the formula should usually be specified: otherwise empty fields
-will not be included in ‘S-LIST’ and/or ‘R-LIST’ which can, for example,
-result in an incorrect mapping from an element of ‘S-LIST’ to the
-corresponding element of ‘R-LIST’.
-
-   These three functions can be used to implement associative arrays,
-count matching cells, rank results, group data etc.  For practical
-examples see this tutorial on Worg
-(https://orgmode.org/worg/org-tutorials/org-lookups.html).
-
-
-File: org,  Node: Editing and debugging formulas,  Next: Updating the table,  Prev: Lookup functions,  Up: The spreadsheet
-
-3.5.8 Editing and debugging formulas
-------------------------------------
-
-You can edit individual formulas in the minibuffer or directly in the
-field.  Org can also prepare a special buffer with all active formulas
-of a table.  When offering a formula for editing, Org converts
-references to the standard format (like ‘B3’ or ‘D&’) if possible.  If
-you prefer to only work with the internal format (like ‘@3$2’ or ‘$4’),
-configure the option ‘org-table-use-standard-references’.
-
-‘C-c =  or  C-u C-c =     (org-table-eval-formula)’
-     Edit the formula associated with the current column/field in the
-     minibuffer.  See *note Column formulas::, and *note Field and range
-     formulas::.
-‘C-u C-u C-c =     (org-table-eval-formula)’
-     Re-insert the active formula (either a field formula, or a column
-     formula) into the current field, so that you can edit it directly
-     in the field.  The advantage over editing in the minibuffer is that
-     you can use the command ‘C-c ?’.
-‘C-c ?     (org-table-field-info)’
-     While editing a formula in a table field, highlight the field(s)
-     referenced by the reference at the cursor position in the formula.
-‘C-c }’
-     Toggle the display of row and column numbers for a table, using
-     overlays (‘org-table-toggle-coordinate-overlays’).  These are
-     updated each time the table is aligned; you can force it with ‘C-c
-     C-c’.
-‘C-c {’
-     Toggle the formula debugger on and off
-     (‘org-table-toggle-formula-debugger’).  See below.
-‘C-c '     (org-table-edit-formulas)’
-     Edit all formulas for the current table in a special buffer, where
-     the formulas will be displayed one per line.  If the current field
-     has an active formula, the cursor in the formula editor will mark
-     it.  While inside the special buffer, Org will automatically
-     highlight any field or range reference at the cursor position.  You
-     may edit, remove and add formulas, and use the following commands:
-
-     ‘C-c C-c  or  C-x C-s     (org-table-fedit-finish)’
-          Exit the formula editor and store the modified formulas.  With
-          ‘C-u’ prefix, also apply the new formulas to the entire table.
-     ‘C-c C-q     (org-table-fedit-abort)’
-          Exit the formula editor without installing changes.
-     ‘C-c C-r     (org-table-fedit-toggle-ref-type)’
-          Toggle all references in the formula editor between standard
-          (like ‘B3’) and internal (like ‘@3$2’).
-     ‘<TAB>     (org-table-fedit-lisp-indent)’
-          Pretty-print or indent Lisp formula at point.  When in a line
-          containing a Lisp formula, format the formula according to
-          Emacs Lisp rules.  Another <TAB> collapses the formula back
-          again.  In the open formula, <TAB> re-indents just like in
-          Emacs Lisp mode.
-     ‘M-<TAB>     (lisp-complete-symbol)’
-          Complete Lisp symbols, just like in Emacs Lisp mode.(1)
-     ‘S-<UP>/<DOWN>/<LEFT>/<RIGHT>’
-          Shift the reference at point.  For example, if the reference
-          is ‘B3’ and you press ‘S-<RIGHT>’, it will become ‘C3’.  This
-          also works for relative references and for hline references.
-     ‘M-S-<UP>     (org-table-fedit-line-up)’
-     ‘M-S-<DOWN>     (org-table-fedit-line-down)’
-          Move the test line for column formulas in the Org buffer up
-          and down.
-     ‘M-<UP>     (org-table-fedit-scroll-down)’
-     ‘M-<DOWN>     (org-table-fedit-scroll-up)’
-          Scroll the window displaying the table.
-     ‘C-c }’
-          Turn the coordinate grid in the table on and off.
-
-   Making a table field blank does not remove the formula associated
-with the field, because that is stored in a different line (the
-‘#+TBLFM’ line)—during the next recalculation the field will be filled
-again.  To remove a formula from a field, you have to give an empty
-reply when prompted for the formula, or to edit the ‘#+TBLFM’ line.
-
-   You may edit the ‘#+TBLFM’ directly and re-apply the changed
-equations with ‘C-c C-c’ in that line or with the normal recalculation
-commands in the table.
-
-Using multiple ‘#+TBLFM’ lines
-..............................
-
-You may apply the formula temporarily.  This is useful when you switch
-the formula.  Place multiple ‘#+TBLFM’ lines right after the table, and
-then press ‘C-c C-c’ on the formula to apply.  Here is an example:
-
-     | x | y |
-     |---+---|
-     | 1 |   |
-     | 2 |   |
-     #+TBLFM: $2=$1*1
-     #+TBLFM: $2=$1*2
-
-Pressing ‘C-c C-c’ in the line of ‘#+TBLFM: $2=$1*2’ yields:
-
-     | x | y |
-     |---+---|
-     | 1 | 2 |
-     | 2 | 4 |
-     #+TBLFM: $2=$1*1
-     #+TBLFM: $2=$1*2
-
-Note: If you recalculate this table (with ‘C-u C-c *’, for example), you
-will get the following result of applying only the first ‘#+TBLFM’ line.
-
-     | x | y |
-     |---+---|
-     | 1 | 1 |
-     | 2 | 2 |
-     #+TBLFM: $2=$1*1
-     #+TBLFM: $2=$1*2
-
-Debugging formulas
-..................
-
-When the evaluation of a formula leads to an error, the field content
-becomes the string ‘#ERROR’.  If you would like see what is going on
-during variable substitution and calculation in order to find a bug,
-turn on formula debugging in the ‘Tbl’ menu and repeat the calculation,
-for example by pressing ‘C-u C-u C-c = <RET>’ in a field.  Detailed
-information will be displayed.
-
-   ---------- Footnotes ----------
-
-   (1) Many desktops intercept ‘M-<TAB>’ to switch windows.  Use ‘C-M-i’
-or ‘<ESC> <TAB>’ instead for completion (*note Completion::).
-
-
-File: org,  Node: Updating the table,  Next: Advanced features,  Prev: Editing and debugging formulas,  Up: The spreadsheet
-
-3.5.9 Updating the table
-------------------------
-
-Recalculation of a table is normally not automatic, but needs to be
-triggered by a command.  See *note Advanced features::, for a way to
-make recalculation at least semi-automatic.
-
-   In order to recalculate a line of a table or the entire table, use
-the following commands:
-
-‘C-c *     (org-table-recalculate)’
-     Recalculate the current row by first applying the stored column
-     formulas from left to right, and all field/range formulas in the
-     current row.
-‘C-u C-c *’
-‘C-u C-c C-c’
-     Recompute the entire table, line by line.  Any lines before the
-     first hline are left alone, assuming that these are part of the
-     table header.
-‘C-u C-u C-c *  or  C-u C-u C-c C-c     (org-table-iterate)’
-     Iterate the table by recomputing it until no further changes occur.
-     This may be necessary if some computed fields use the value of
-     other fields that are computed later in the calculation sequence.
-‘M-x org-table-recalculate-buffer-tables <RET>’
-     Recompute all tables in the current buffer.
-‘M-x org-table-iterate-buffer-tables <RET>’
-     Iterate all tables in the current buffer, in order to converge
-     table-to-table dependencies.
-
-
-File: org,  Node: Advanced features,  Prev: Updating the table,  Up: The spreadsheet
-
-3.5.10 Advanced features
-------------------------
-
-If you want the recalculation of fields to happen automatically, or if
-you want to be able to assign names(1) to fields and columns, you need
-to reserve the first column of the table for special marking characters.
-
-‘C-#     (org-table-rotate-recalc-marks)’
-     Rotate the calculation mark in first column through the states ‘ ’,
-     ‘#’, ‘*’, ‘!’, ‘$’.  When there is an active region, change all
-     marks in the region.
-
-   Here is an example of a table that collects exam results of students
-and makes use of these features:
-
-     |---+---------+--------+--------+--------+-------+------|
-     |   | Student | Prob 1 | Prob 2 | Prob 3 | Total | Note |
-     |---+---------+--------+--------+--------+-------+------|
-     | ! |         |     P1 |     P2 |     P3 |   Tot |      |
-     | # | Maximum |     10 |     15 |     25 |    50 | 10.0 |
-     | ^ |         |     m1 |     m2 |     m3 |    mt |      |
-     |---+---------+--------+--------+--------+-------+------|
-     | # | Peter   |     10 |      8 |     23 |    41 |  8.2 |
-     | # | Sam     |      2 |      4 |      3 |     9 |  1.8 |
-     |---+---------+--------+--------+--------+-------+------|
-     |   | Average |        |        |        |  25.0 |      |
-     | ^ |         |        |        |        |    at |      |
-     | $ | max=50  |        |        |        |       |      |
-     |---+---------+--------+--------+--------+-------+------|
-     #+TBLFM: $6=vsum($P1..$P3)::$7=10*$Tot/$max;%.1f::$at=vmean(@-II..@-I);%.1f
-
-Important: please note that for these special tables, recalculating the
-table with ‘C-u C-c *’ will only affect rows that are marked ‘#’ or ‘*’,
-and fields that have a formula assigned to the field itself.  The column
-formulas are not applied in rows with empty first field.
-
-   The marking characters have the following meaning:
-
-‘!’
-     The fields in this line define names for the columns, so that you
-     may refer to a column as ‘$Tot’ instead of ‘$6’.
-‘^’
-     This row defines names for the fields _above_ the row.  With such a
-     definition, any formula in the table may use ‘$m1’ to refer to the
-     value ‘10’.  Also, if you assign a formula to a names field, it
-     will be stored as ‘$name=...’.
-‘_’
-     Similar to ‘^’, but defines names for the fields in the row
-     _below_.
-‘$’
-     Fields in this row can define _parameters_ for formulas.  For
-     example, if a field in a ‘$’ row contains ‘max=50’, then formulas
-     in this table can refer to the value 50 using ‘$max’.  Parameters
-     work exactly like constants, only that they can be defined on a
-     per-table basis.
-‘#’
-     Fields in this row are automatically recalculated when pressing
-     <TAB> or <RET> or ‘S-<TAB>’ in this row.  Also, this row is
-     selected for a global recalculation with ‘C-u C-c *’.  Unmarked
-     lines will be left alone by this command.
-‘*’
-     Selects this line for global recalculation with ‘C-u C-c *’, but
-     not for automatic recalculation.  Use this when automatic
-     recalculation slows down editing too much.
-‘ ’
-     Unmarked lines are exempt from recalculation with ‘C-u C-c *’.  All
-     lines that should be recalculated should be marked with ‘#’ or ‘*’.
-‘/’
-     Do not export this line.  Useful for lines that contain the
-     narrowing ‘<N>’ markers or column group markers.
-
-   Finally, just to whet your appetite for what can be done with the
-fantastic ‘calc.el’ package, here is a table that computes the Taylor
-series of degree ‘n’ at location ‘x’ for a couple of functions.
-
-     |---+-------------+---+-----+--------------------------------------|
-     |   | Func        | n | x   | Result                               |
-     |---+-------------+---+-----+--------------------------------------|
-     | # | exp(x)      | 1 | x   | 1 + x                                |
-     | # | exp(x)      | 2 | x   | 1 + x + x^2 / 2                      |
-     | # | exp(x)      | 3 | x   | 1 + x + x^2 / 2 + x^3 / 6            |
-     | # | x^2+sqrt(x) | 2 | x=0 | x*(0.5 / 0) + x^2 (2 - 0.25 / 0) / 2 |
-     | # | x^2+sqrt(x) | 2 | x=1 | 2 + 2.5 x - 2.5 + 0.875 (x - 1)^2    |
-     | * | tan(x)      | 3 | x   | 0.0175 x + 1.77e-6 x^3               |
-     |---+-------------+---+-----+--------------------------------------|
-     #+TBLFM: $5=taylor($2,$4,$3);n3
-
-   ---------- Footnotes ----------
-
-   (1) Such names must start by an alphabetic character and use only
-alphanumeric/underscore characters.
-
-
-File: org,  Node: Org-Plot,  Prev: The spreadsheet,  Up: Tables
-
-3.6 Org-Plot
-============
-
-Org-Plot can produce graphs of information stored in org tables, either
-graphically or in ASCII-art.
-
-Graphical plots using ‘Gnuplot’
--------------------------------
-
-Org-Plot produces 2D and 3D graphs using ‘Gnuplot’
-<http://www.gnuplot.info/> and ‘gnuplot-mode’
-<http://xafs.org/BruceRavel/GnuplotMode>.  To see this in action, ensure
-that you have both Gnuplot and Gnuplot mode installed on your system,
-then call ‘C-c " g’ or ‘M-x org-plot/gnuplot <RET>’ on the following
-table.
-
-     #+PLOT: title:"Citas" ind:1 deps:(3) type:2d with:histograms set:"yrange [0:]"
-     | Sede      | Max cites | H-index |
-     |-----------+-----------+---------|
-     | Chile     |    257.72 |   21.39 |
-     | Leeds     |    165.77 |   19.68 |
-     | Sao Paolo |     71.00 |   11.50 |
-     | Stockholm |    134.19 |   14.33 |
-     | Morelia   |    257.56 |   17.67 |
-
-   Notice that Org Plot is smart enough to apply the table’s headers as
-labels.  Further control over the labels, type, content, and appearance
-of plots can be exercised through the ‘#+PLOT:’ lines preceding a table.
-See below for a complete list of Org-plot options.  The ‘#+PLOT:’ lines
-are optional.  For more information and examples see the Org-plot
-tutorial at <https://orgmode.org/worg/org-tutorials/org-plot.html>.
-
-Plot Options
-............
-
-‘set’
-     Specify any ‘gnuplot’ option to be set when graphing.
-
-‘title’
-     Specify the title of the plot.
-
-‘ind’
-     Specify which column of the table to use as the ‘x’ axis.
-
-‘deps’
-     Specify the columns to graph as a Lisp style list, surrounded by
-     parentheses and separated by spaces for example ‘dep:(3 4)’ to
-     graph the third and fourth columns (defaults to graphing all other
-     columns aside from the ‘ind’ column).
-
-‘type’
-     Specify whether the plot will be ‘2d’, ‘3d’, or ‘grid’.
-
-‘with’
-     Specify a ‘with’ option to be inserted for every col being plotted
-     (e.g., ‘lines’, ‘points’, ‘boxes’, ‘impulses’, etc...).  Defaults
-     to ‘lines’.
-
-‘file’
-     If you want to plot to a file, specify
-     ‘"PATH/TO/DESIRED/OUTPUT-FILE"’.
-
-‘labels’
-     List of labels to be used for the ‘deps’ (defaults to the column
-     headers if they exist).
-
-‘line’
-     Specify an entire line to be inserted in the Gnuplot script.
-
-‘map’
-     When plotting ‘3d’ or ‘grid’ types, set this to ‘t’ to graph a flat
-     mapping rather than a ‘3d’ slope.
-
-‘timefmt’
-     Specify format of Org mode timestamps as they will be parsed by
-     Gnuplot.  Defaults to ‘%Y-%m-%d-%H:%M:%S’.
-
-‘script’
-     If you want total control, you can specify a script file (place the
-     file name between double-quotes) which will be used to plot.
-     Before plotting, every instance of ‘$datafile’ in the specified
-     script will be replaced with the path to the generated data file.
-     Note: even if you set this option, you may still want to specify
-     the plot type, as that can impact the content of the data file.
-
-ASCII bar plots
----------------
-
-While the cursor is on a column, typing ‘C-c " a’ or ‘M-x
-orgtbl-ascii-plot <RET>’ create a new column containing an ASCII-art
-bars plot.  The plot is implemented through a regular column formula.
-When the source column changes, the bar plot may be updated by
-refreshing the table, for example typing ‘C-u C-c *’.
-
-     | Sede          | Max cites |              |
-     |---------------+-----------+--------------|
-     | Chile         |    257.72 | WWWWWWWWWWWW |
-     | Leeds         |    165.77 | WWWWWWWh     |
-     | Sao Paolo     |     71.00 | WWW;         |
-     | Stockholm     |    134.19 | WWWWWW:      |
-     | Morelia       |    257.56 | WWWWWWWWWWWH |
-     | Rochefourchat |      0.00 |              |
-     #+TBLFM: $3='(orgtbl-ascii-draw $2 0.0 257.72 12)
-
-   The formula is an elisp call:
-     (orgtbl-ascii-draw COLUMN MIN MAX WIDTH)
-
-‘COLUMN’
-     is a reference to the source column.
-
-‘MIN MAX’
-     are the minimal and maximal values displayed.  Sources values
-     outside this range are displayed as ‘too small’ or ‘too large’.
-
-‘WIDTH’
-     is the width in characters of the bar-plot.  It defaults to ‘12’.
-
-
-File: org,  Node: Hyperlinks,  Next: TODO items,  Prev: Tables,  Up: Top
-
-4 Hyperlinks
-************
-
-Like HTML, Org provides links inside a file, external links to other
-files, Usenet articles, emails, and much more.
-
-* Menu:
-
-* Link format::                 How links in Org are formatted
-* Internal links::              Links to other places in the current file
-* External links::              URL-like links to the world
-* Handling links::              Creating, inserting and following
-* Using links outside Org::     Linking from my C source code?
-* Link abbreviations::          Shortcuts for writing complex links
-* Search options::              Linking to a specific location
-* Custom searches::             When the default search is not enough
-
-
-File: org,  Node: Link format,  Next: Internal links,  Up: Hyperlinks
-
-4.1 Link format
-===============
-
-Org will recognize plain URL-like links and activate them as clickable
-links.  The general link format, however, looks like this:
-
-     [[link][description]]       or alternatively           [[link]]
-
-Once a link in the buffer is complete (all brackets present), Org will
-change the display so that ‘description’ is displayed instead of
-‘[[link][description]]’ and ‘link’ is displayed instead of ‘[[link]]’.
-Links will be highlighted in the face ‘org-link’, which by default is an
-underlined face.  You can directly edit the visible part of a link.
-Note that this can be either the ‘link’ part (if there is no
-description) or the ‘description’ part.  To edit also the invisible
-‘link’ part, use ‘C-c C-l’ with the cursor on the link.
-
-   If you place the cursor at the beginning or just behind the end of
-the displayed text and press <BACKSPACE>, you will remove the
-(invisible) bracket at that location.  This makes the link incomplete
-and the internals are again displayed as plain text.  Inserting the
-missing bracket hides the link internals again.  To show the internal
-structure of all links, use the menu entry ‘Org->Hyperlinks->Literal
-links’.
-
-
-File: org,  Node: Internal links,  Next: External links,  Prev: Link format,  Up: Hyperlinks
-
-4.2 Internal links
-==================
-
-If the link does not look like a URL, it is considered to be internal in
-the current file.  The most important case is a link like
-‘[[#my-custom-id]]’ which will link to the entry with the ‘CUSTOM_ID’
-property ‘my-custom-id’.  You are responsible yourself to make sure
-these custom IDs are unique in a file.
-
-   Links such as ‘[[My Target]]’ or ‘[[My Target][Find my target]]’ lead
-to a text search in the current file.
-
-   The link can be followed with ‘C-c C-o’ when the cursor is on the
-link, or with a mouse click (*note Handling links::).  Links to custom
-IDs will point to the corresponding headline.  The preferred match for a
-text link is a dedicated target: the same string in double angular
-brackets, like ‘<<My Target>>’.
-
-   If no dedicated target exists, the link will then try to match the
-exact name of an element within the buffer.  Naming is done with the
-‘#+NAME’ keyword, which has to be put in the line before the element it
-refers to, as in the following example
-
-     #+NAME: My Target
-     | a  | table      |
-     |----+------------|
-     | of | four cells |
-
-   If none of the above succeeds, Org will search for a headline that is
-exactly the link text but may also include a TODO keyword and tags(1).
-
-   During export, internal links will be used to mark objects and assign
-them a number.  Marked objects will then be referenced by links pointing
-to them.  In particular, links without a description will appear as the
-number assigned to the marked object(2).  In the following excerpt from
-an Org buffer
-
-     - one item
-     - <<target>>another item
-     Here we refer to item [[target]].
-
-The last sentence will appear as ‘Here we refer to item 2’ when
-exported.
-
-   In non-Org files, the search will look for the words in the link
-text.  In the above example the search would be for ‘my target’.
-
-   Following a link pushes a mark onto Org’s own mark ring.  You can
-return to the previous position with ‘C-c &’.  Using this command
-several times in direct succession goes back to positions recorded
-earlier.
-
-* Menu:
-
-* Radio targets::               Make targets trigger links in plain text
-
-   ---------- Footnotes ----------
-
-   (1) To insert a link targeting a headline, in-buffer completion can
-be used.  Just type a star followed by a few optional letters into the
-buffer and press ‘M-<TAB>’.  All headlines in the current buffer will be
-offered as completions.
-
-   (2) When targeting a ‘#+NAME’ keyword, ‘#+CAPTION’ keyword is
-mandatory in order to get proper numbering (*note Images and tables::).
-
-
-File: org,  Node: Radio targets,  Up: Internal links
-
-4.2.1 Radio targets
--------------------
-
-Org can automatically turn any occurrences of certain target names in
-normal text into a link.  So without explicitly creating a link, the
-text connects to the target radioing its position.  Radio targets are
-enclosed by triple angular brackets.  For example, a target ‘<<<My
-Target>>>’ causes each occurrence of ‘my target’ in normal text to
-become activated as a link.  The Org file is scanned automatically for
-radio targets only when the file is first loaded into Emacs.  To update
-the target list during editing, press ‘C-c C-c’ with the cursor on or at
-a target.
-
-
-File: org,  Node: External links,  Next: Handling links,  Prev: Internal links,  Up: Hyperlinks
-
-4.3 External links
-==================
-
-Org supports links to files, websites, Usenet and email messages, BBDB
-database entries and links to both IRC conversations and their logs.
-External links are URL-like locators.  They start with a short
-identifying string followed by a colon.  There can be no space after the
-colon.  The following list shows examples for each link type.
-
-     http://www.astro.uva.nl/~dominik             on the web
-     doi:10.1000/182                              DOI for an electronic resource
-     file:/home/dominik/images/jupiter.jpg        file, absolute path
-     /home/dominik/images/jupiter.jpg             same as above
-     file:papers/last.pdf                         file, relative path
-     ./papers/last.pdf                            same as above
-     file:/ssh:myself@some.where:papers/last.pdf  file, path on remote machine
-     /ssh:myself@some.where:papers/last.pdf       same as above
-     file:sometextfile::NNN                       file, jump to line number
-     file:projects.org                            another Org file
-     file:projects.org::some words                text search in Org file(1)
-     file:projects.org::*task title               heading search in Org file(2)
-     docview:papers/last.pdf::NNN                 open in doc-view mode at page
-     id:B7423F4D-2E8A-471B-8810-C40F074717E9      Link to heading by ID
-     news:comp.emacs                              Usenet link
-     mailto:adent@galaxy.net                      Mail link
-     mhe:folder                                   MH-E folder link
-     mhe:folder#id                                MH-E message link
-     rmail:folder                                 RMAIL folder link
-     rmail:folder#id                              RMAIL message link
-     gnus:group                                   Gnus group link
-     gnus:group#id                                Gnus article link
-     bbdb:R.*Stallman                             BBDB link (with regexp)
-     irc:/irc.com/#emacs/bob                      IRC link
-     info:org#External links                      Info node or index link
-     shell:ls *.org                               A shell command
-     elisp:org-agenda                             Interactive Elisp command
-     elisp:(find-file-other-frame "Elisp.org")    Elisp form to evaluate
-
-   On top of these built-in link types, some are available through the
-‘contrib/’ directory (*note Installation::).  For example, these links
-to VM or Wanderlust messages are available when you load the
-corresponding libraries from the ‘contrib/’ directory:
-
-     vm:folder                                    VM folder link
-     vm:folder#id                                 VM message link
-     vm://myself@some.where.org/folder#id         VM on remote machine
-     vm-imap:account:folder                       VM IMAP folder link
-     vm-imap:account:folder#id                    VM IMAP message link
-     wl:folder                                    WANDERLUST folder link
-     wl:folder#id                                 WANDERLUST message link
-
-   For customizing Org to add new link types *note Adding hyperlink
-types::.
-
-   A link should be enclosed in double brackets and may contain a
-descriptive text to be displayed instead of the URL (*note Link
-format::), for example:
-
-     [[https://www.gnu.org/software/emacs/][GNU Emacs]]
-
-If the description is a file name or URL that points to an image, HTML
-export (*note HTML export::) will inline the image as a clickable
-button.  If there is no description at all and the link points to an
-image, that image will be inlined into the exported HTML file.
-
-   Org also finds external links in the normal text and activates them
-as links.  If spaces must be part of the link (for example in
-‘bbdb:Richard Stallman’), or if you need to remove ambiguities about the
-end of the link, enclose them in square brackets.
-
-   ---------- Footnotes ----------
-
-   (1) The actual behavior of the search will depend on the value of the
-option ‘org-link-search-must-match-exact-headline’.  If its value is
-‘nil’, then a fuzzy text search will be done.  If it is ‘t’, then only
-the exact headline will be matched, ignoring spaces and cookies.  If the
-value is ‘query-to-create’, then an exact headline will be searched; if
-it is not found, then the user will be queried to create it.
-
-   (2) Headline searches always match the exact headline, ignoring
-spaces and cookies.  If the headline is not found and the value of the
-option ‘org-link-search-must-match-exact-headline’ is ‘query-to-create’,
-then the user will be queried to create it.
-
-
-File: org,  Node: Handling links,  Next: Using links outside Org,  Prev: External links,  Up: Hyperlinks
-
-4.4 Handling links
-==================
-
-Org provides methods to create a link in the correct syntax, to insert
-it into an Org file, and to follow the link.
-
-‘C-c l     (org-store-link)’
-     Store a link to the current location.  This is a _global_ command
-     (you must create the key binding yourself) which can be used in any
-     buffer to create a link.  The link will be stored for later
-     insertion into an Org buffer (see below).  What kind of link will
-     be created depends on the current buffer:
-
-     Org mode buffers
-     For Org files, if there is a ‘<<target>>’ at the cursor, the link
-     points to the target.  Otherwise it points to the current headline,
-     which will also be the description(1).
-
-     If the headline has a ‘CUSTOM_ID’ property, a link to this custom
-     ID will be stored.  In addition or alternatively (depending on the
-     value of ‘org-id-link-to-org-use-id’), a globally unique ‘ID’
-     property will be created and/or used to construct a link(2).  So
-     using this command in Org buffers will potentially create two
-     links: a human-readable from the custom ID, and one that is
-     globally unique and works even if the entry is moved from file to
-     file.  Later, when inserting the link, you need to decide which one
-     to use.
-
-     Email/News clients: VM, Rmail, Wanderlust, MH-E, Gnus
-     Pretty much all Emacs mail clients are supported.  The link will
-     point to the current article, or, in some GNUS buffers, to the
-     group.  The description is constructed from the author and the
-     subject.
-
-     Web browsers: Eww, W3 and W3M
-     Here the link will be the current URL, with the page title as
-     description.
-
-     Contacts: BBDB
-     Links created in a BBDB buffer will point to the current entry.
-
-     Chat: IRC
-     For IRC links, if you set the option ‘org-irc-link-to-logs’ to ‘t’,
-     a ‘file:/’ style link to the relevant point in the logs for the
-     current conversation is created.  Otherwise an ‘irc:/’ style link
-     to the user/channel/server under the point will be stored.
-
-     Other files
-     For any other files, the link will point to the file, with a search
-     string (*note Search options::) pointing to the contents of the
-     current line.  If there is an active region, the selected words
-     will form the basis of the search string.  If the automatically
-     created link is not working correctly or accurately enough, you can
-     write custom functions to select the search string and to do the
-     search for particular file types—see *note Custom searches::.  The
-     key binding ‘C-c l’ is only a suggestion—see *note Installation::.
-
-     Agenda view
-     When the cursor is in an agenda view, the created link points to
-     the entry referenced by the current line.
-
-‘C-c C-l     (org-insert-link)’
-     Insert a link(3).  This prompts for a link to be inserted into the
-     buffer.  You can just type a link, using text for an internal link,
-     or one of the link type prefixes mentioned in the examples above.
-     The link will be inserted into the buffer(4), along with a
-     descriptive text.  If some text was selected when this command is
-     called, the selected text becomes the default description.
-
-     Inserting stored links
-     All links stored during the current session are part of the history
-     for this prompt, so you can access them with <UP> and <DOWN> (or
-     ‘M-p/n’).
-
-     Completion support
-     Completion with <TAB> will help you to insert valid link prefixes
-     like ‘https:’, including the prefixes defined through link
-     abbreviations (*note Link abbreviations::).  If you press <RET>
-     after inserting only the PREFIX, Org will offer specific completion
-     support for some link types(5) For example, if you type ‘file
-     <RET>’, file name completion (alternative access: ‘C-u C-c C-l’,
-     see below) will be offered, and after ‘bbdb <RET>’ you can complete
-     contact names.
-‘C-u C-c C-l’
-     When ‘C-c C-l’ is called with a ‘C-u’ prefix argument, a link to a
-     file will be inserted and you may use file name completion to
-     select the name of the file.  The path to the file is inserted
-     relative to the directory of the current Org file, if the linked
-     file is in the current directory or in a sub-directory of it, or if
-     the path is written relative to the current directory using ‘../’.
-     Otherwise an absolute path is used, if possible with ‘~/’ for your
-     home directory.  You can force an absolute path with two ‘C-u’
-     prefixes.
-‘C-c C-l  (with cursor on existing link)’
-     When the cursor is on an existing link, ‘C-c C-l’ allows you to
-     edit the link and description parts of the link.
-‘C-c C-o     (org-open-at-point)’
-     Open link at point.  This will launch a web browser for URLs (using
-     ‘browse-url-at-point’), run VM/MH-E/Wanderlust/Rmail/Gnus/BBDB for
-     the corresponding links, and execute the command in a shell link.
-     When the cursor is on an internal link, this command runs the
-     corresponding search.  When the cursor is on a TAG list in a
-     headline, it creates the corresponding TAGS view.  If the cursor is
-     on a timestamp, it compiles the agenda for that date.  Furthermore,
-     it will visit text and remote files in ‘file:’ links with Emacs and
-     select a suitable application for local non-text files.
-     Classification of files is based on file extension only.  See
-     option ‘org-file-apps’.  If you want to override the default
-     application and visit the file with Emacs, use a ‘C-u’ prefix.  If
-     you want to avoid opening in Emacs, use a ‘C-u C-u’ prefix.
-     If the cursor is on a headline, but not on a link, offer all links
-     in the headline and entry text.  If you want to setup the frame
-     configuration for following links, customize
-     ‘org-link-frame-setup’.
-
-‘<RET>’
-     When ‘org-return-follows-link’ is set, ‘<RET>’ will also follow the
-     link at point.
-‘mouse-2’
-‘mouse-1’
-     On links, ‘mouse-1’ and ‘mouse-2’ will open the link just as ‘C-c
-     C-o’ would.
-‘mouse-3’
-     Like ‘mouse-2’, but force file links to be opened with Emacs, and
-     internal links to be displayed in another window(6).
-‘C-c C-x C-v     (org-toggle-inline-images)’
-     Toggle the inline display of linked images.  Normally this will
-     only inline images that have no description part in the link, i.e.,
-     images that will also be inlined during export.  When called with a
-     prefix argument, also display images that do have a link
-     description.  You can ask for inline images to be displayed at
-     startup by configuring the variable
-     ‘org-startup-with-inline-images’(7).
-‘C-c %     (org-mark-ring-push)’
-     Push the current position onto the mark ring, to be able to return
-     easily.  Commands following an internal link do this automatically.
-‘C-c &     (org-mark-ring-goto)’
-     Jump back to a recorded position.  A position is recorded by the
-     commands following internal links, and by ‘C-c %’.  Using this
-     command several times in direct succession moves through a ring of
-     previously recorded positions.
-‘C-c C-x C-n     (org-next-link)’
-‘C-c C-x C-p     (org-previous-link)’
-     Move forward/backward to the next link in the buffer.  At the limit
-     of the buffer, the search fails once, and then wraps around.  The
-     key bindings for this are really too long; you might want to bind
-     this also to ‘C-n’ and ‘C-p’
-          (add-hook 'org-load-hook
-            (lambda ()
-              (define-key org-mode-map "\C-n" 'org-next-link)
-              (define-key org-mode-map "\C-p" 'org-previous-link)))
-
-   ---------- Footnotes ----------
-
-   (1) If the headline contains a timestamp, it will be removed from the
-link and result in a wrong link—you should avoid putting timestamp in
-the headline.
-
-   (2) The library ‘org-id.el’ must first be loaded, either through
-‘org-customize’ by enabling ‘org-id’ in ‘org-modules’, or by adding
-‘(require 'org-id)’ in your Emacs init file.
-
-   (3) Note that you don’t have to use this command to insert a link.
-Links in Org are plain text, and you can type or paste them straight
-into the buffer.  By using this command, the links are automatically
-enclosed in double brackets, and you will be asked for the optional
-descriptive text.
-
-   (4) After insertion of a stored link, the link will be removed from
-the list of stored links.  To keep it in the list later use, use a
-triple ‘C-u’ prefix argument to ‘C-c C-l’, or configure the option
-‘org-keep-stored-link-after-insertion’.
-
-   (5) This works if a completion function is defined in the ‘:complete’
-property of a link in ‘org-link-parameters’.
-
-   (6) See the option ‘org-display-internal-link-with-indirect-buffer’
-
-   (7) with corresponding ‘#+STARTUP’ keywords ‘inlineimages’ and
-‘noinlineimages’
-
-
-File: org,  Node: Using links outside Org,  Next: Link abbreviations,  Prev: Handling links,  Up: Hyperlinks
-
-4.5 Using links outside Org
-===========================
-
-You can insert and follow links that have Org syntax not only in Org,
-but in any Emacs buffer.  For this, you should create two global
-commands, like this (please select suitable global keys yourself):
-
-     (global-set-key "\C-c L" 'org-insert-link-global)
-     (global-set-key "\C-c o" 'org-open-at-point-global)
-
-
-File: org,  Node: Link abbreviations,  Next: Search options,  Prev: Using links outside Org,  Up: Hyperlinks
-
-4.6 Link abbreviations
-======================
-
-Long URLs can be cumbersome to type, and often many similar links are
-needed in a document.  For this you can use link abbreviations.  An
-abbreviated link looks like this
-
-     [[linkword:tag][description]]
-
-where the tag is optional.  The linkword must be a word, starting with a
-letter, followed by letters, numbers, ‘-’, and ‘_’.  Abbreviations are
-resolved according to the information in the variable
-‘org-link-abbrev-alist’ that relates the linkwords to replacement text.
-Here is an example:
-
-     (setq org-link-abbrev-alist
-       '(("bugzilla"  . "http://10.1.2.9/bugzilla/show_bug.cgi?id=")
-         ("url-to-ja" . "http://translate.google.fr/translate?sl=en&tl=ja&u=%h")
-         ("google"    . "http://www.google.com/search?q=")
-         ("gmap"      . "http://maps.google.com/maps?q=%s")
-         ("omap"      . "http://nominatim.openstreetmap.org/search?q=%s&polygon=1")
-         ("ads"       . "http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=%s&db_key=AST")))
-
-   If the replacement text contains the string ‘%s’, it will be replaced
-with the tag.  Using ‘%h’ instead of ‘%s’ will url-encode the tag (see
-the example above, where we need to encode the URL parameter.)  Using
-‘%(my-function)’ will pass the tag to a custom function, and replace it
-by the resulting string.
-
-   If the replacement text doesn’t contain any specifier, the tag will
-simply be appended in order to create the link.
-
-   Instead of a string, you may also specify a function that will be
-called with the tag as the only argument to create the link.
-
-   With the above setting, you could link to a specific bug with
-‘[[bugzilla:129]]’, search the web for ‘OrgMode’ with
-‘[[google:OrgMode]]’, show the map location of the Free Software
-Foundation ‘[[gmap:51 Franklin Street, Boston]]’ or of Carsten office
-‘[[omap:Science Park 904, Amsterdam, The Netherlands]]’ and find out
-what the Org author is doing besides Emacs hacking with
-‘[[ads:Dominik,C]]’.
-
-   If you need special abbreviations just for a single Org buffer, you
-can define them in the file with
-
-     #+LINK: bugzilla  http://10.1.2.9/bugzilla/show_bug.cgi?id=
-     #+LINK: google    http://www.google.com/search?q=%s
-
-In-buffer completion (*note Completion::) can be used after ‘[’ to
-complete link abbreviations.  You may also define a function that
-implements special (e.g., completion) support for inserting such a link
-with ‘C-c C-l’.  Such a function should not accept any arguments, and
-return the full link with prefix.  You can add a completion function to
-a link like this:
-
-     (org-link-set-parameters ``type'' :complete #'some-function)
-
-
-File: org,  Node: Search options,  Next: Custom searches,  Prev: Link abbreviations,  Up: Hyperlinks
-
-4.7 Search options in file links
-================================
-
-File links can contain additional information to make Emacs jump to a
-particular location in the file when following a link.  This can be a
-line number or a search option after a double(1) colon.  For example,
-when the command ‘C-c l’ creates a link (*note Handling links::) to a
-file, it encodes the words in the current line as a search string that
-can be used to find this line back later when following the link with
-‘C-c C-o’.
-
-   Here is the syntax of the different ways to attach a search to a file
-link, together with an explanation:
-
-     [[file:~/code/main.c::255]]
-     [[file:~/xx.org::My Target]]
-     [[file:~/xx.org::*My Target]]
-     [[file:~/xx.org::#my-custom-id]]
-     [[file:~/xx.org::/regexp/]]
-
-‘255’
-     Jump to line 255.
-‘My Target’
-     Search for a link target ‘<<My Target>>’, or do a text search for
-     ‘my target’, similar to the search in internal links, see *note
-     Internal links::.  In HTML export (*note HTML export::), such a
-     file link will become an HTML reference to the corresponding named
-     anchor in the linked file.
-‘*My Target’
-     In an Org file, restrict search to headlines.
-‘#my-custom-id’
-     Link to a heading with a ‘CUSTOM_ID’ property
-‘/regexp/’
-     Do a regular expression search for ‘regexp’.  This uses the Emacs
-     command ‘occur’ to list all matches in a separate window.  If the
-     target file is in Org mode, ‘org-occur’ is used to create a sparse
-     tree with the matches.
-
-   As a degenerate case, a file link with an empty file name can be used
-to search the current file.  For example, ‘[[file:::find me]]’ does a
-search for ‘find me’ in the current file, just as ‘[[find me]]’ would.
-
-   ---------- Footnotes ----------
-
-   (1) For backward compatibility, line numbers can also follow a single
-colon.
-
-
-File: org,  Node: Custom searches,  Prev: Search options,  Up: Hyperlinks
-
-4.8 Custom Searches
-===================
-
-The default mechanism for creating search strings and for doing the
-actual search related to a file link may not work correctly in all
-cases.  For example, BibTeX database files have many entries like
-‘year="1993"’ which would not result in good search strings, because the
-only unique identification for a BibTeX entry is the citation key.
-
-   If you come across such a problem, you can write custom functions to
-set the right search string for a particular file type, and to do the
-search for the string in the file.  Using ‘add-hook’, these functions
-need to be added to the hook variables
-‘org-create-file-search-functions’ and
-‘org-execute-file-search-functions’.  See the docstring for these
-variables for more information.  Org actually uses this mechanism for
-BibTeX database files, and you can use the corresponding code as an
-implementation example.  See the file ‘org-bibtex.el’.
-
-
-File: org,  Node: TODO items,  Next: Tags,  Prev: Hyperlinks,  Up: Top
-
-5 TODO items
-************
-
-Org mode does not maintain TODO lists as separate documents(1).
-Instead, TODO items are an integral part of the notes file, because TODO
-items usually come up while taking notes!  With Org mode, simply mark
-any entry in a tree as being a TODO item.  In this way, information is
-not duplicated, and the entire context from which the TODO item emerged
-is always present.
-
-   Of course, this technique for managing TODO items scatters them
-throughout your notes file.  Org mode compensates for this by providing
-methods to give you an overview of all the things that you have to do.
-
-* Menu:
-
-* TODO basics::                 Marking and displaying TODO entries
-* TODO extensions::             Workflow and assignments
-* Progress logging::            Dates and notes for progress
-* Priorities::                  Some things are more important than others
-* Breaking down tasks::         Splitting a task into manageable pieces
-* Checkboxes::                  Tick-off lists
-
-   ---------- Footnotes ----------
-
-   (1) Of course, you can make a document that contains only long lists
-of TODO items, but this is not required.
-
-
-File: org,  Node: TODO basics,  Next: TODO extensions,  Up: TODO items
-
-5.1 Basic TODO functionality
-============================
-
-Any headline becomes a TODO item when it starts with the word ‘TODO’,
-for example:
-
-     *** TODO Write letter to Sam Fortune
-
-The most important commands to work with TODO entries are:
-
-‘C-c C-t     (org-todo)’
-
-     Rotate the TODO state of the current item among
-
-          ,-> (unmarked) -> TODO -> DONE --.
-          '--------------------------------'
-
-     If TODO keywords have fast access keys (see *note Fast access to
-     TODO states::), you will be prompted for a TODO keyword through the
-     fast selection interface; this is the default behavior when
-     ‘org-use-fast-todo-selection’ is non-‘nil’.
-
-     The same rotation can also be done “remotely” from agenda buffers
-     with the ‘t’ command key (*note Agenda commands::).
-
-‘C-u C-c C-t’
-     When TODO keywords have no selection keys, select a specific
-     keyword using completion; otherwise force cycling through TODO
-     states with no prompt.  When ‘org-use-fast-todo-selection’ is set
-     to ‘prefix’, use the fast selection interface.
-
-‘S-<RIGHT>  /  S-<LEFT>’
-     Select the following/preceding TODO state, similar to cycling.
-     Useful mostly if more than two TODO states are possible (*note TODO
-     extensions::).  See also *note Conflicts::, for a discussion of the
-     interaction with ‘shift-selection-mode’.  See also the variable
-     ‘org-treat-S-cursor-todo-selection-as-state-change’.
-‘C-c / t     (org-show-todo-tree)’
-     View TODO items in a _sparse tree_ (*note Sparse trees::).  Folds
-     the entire buffer, but shows all TODO items (with not-DONE state)
-     and the headings hierarchy above them.  With a prefix argument (or
-     by using ‘C-c / T’), search for a specific TODO.  You will be
-     prompted for the keyword, and you can also give a list of keywords
-     like ‘KWD1|KWD2|...’ to list entries that match any one of these
-     keywords.  With a numeric prefix argument N, show the tree for the
-     Nth keyword in the option ‘org-todo-keywords’.  With two prefix
-     arguments, find all TODO states, both un-done and done.
-‘C-c a t     (org-todo-list)’
-     Show the global TODO list.  Collects the TODO items (with not-DONE
-     states) from all agenda files (*note Agenda views::) into a single
-     buffer.  The new buffer will be in ‘agenda-mode’, which provides
-     commands to examine and manipulate the TODO entries from the new
-     buffer (*note Agenda commands::).  *Note Global TODO list::, for
-     more information.
-‘S-M-<RET>     (org-insert-todo-heading)’
-     Insert a new TODO entry below the current one.
-
-Changing a TODO state can also trigger tag changes.  See the docstring
-of the option ‘org-todo-state-tags-triggers’ for details.
-
-
-File: org,  Node: TODO extensions,  Next: Progress logging,  Prev: TODO basics,  Up: TODO items
-
-5.2 Extended use of TODO keywords
-=================================
-
-By default, marked TODO entries have one of only two states: TODO and
-DONE.  Org mode allows you to classify TODO items in more complex ways
-with _TODO keywords_ (stored in ‘org-todo-keywords’).  With special
-setup, the TODO keyword system can work differently in different files.
-
-   Note that tags are another way to classify headlines in general and
-TODO items in particular (*note Tags::).
-
-* Menu:
-
-* Workflow states::             From TODO to DONE in steps
-* TODO types::                  I do this, Fred does the rest
-* Multiple sets in one file::   Mixing it all, and still finding your way
-* Fast access to TODO states::  Single letter selection of a state
-* Per-file keywords::           Different files, different requirements
-* Faces for TODO keywords::     Highlighting states
-* TODO dependencies::           When one task needs to wait for others
-
-
-File: org,  Node: Workflow states,  Next: TODO types,  Up: TODO extensions
-
-5.2.1 TODO keywords as workflow states
---------------------------------------
-
-You can use TODO keywords to indicate different _sequential_ states in
-the process of working on an item, for example(1):
-
-     (setq org-todo-keywords
-       '((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED")))
-
-   The vertical bar separates the TODO keywords (states that _need
-action_) from the DONE states (which need _no further action_).  If you
-don’t provide the separator bar, the last state is used as the DONE
-state.  With this setup, the command ‘C-c C-t’ will cycle an entry from
-TODO to FEEDBACK, then to VERIFY, and finally to DONE and DELEGATED.
-You may also use a numeric prefix argument to quickly select a specific
-state.  For example ‘C-3 C-c C-t’ will change the state immediately to
-VERIFY.  Or you can use ‘S-<LEFT>’ to go backward through the sequence.
-If you define many keywords, you can use in-buffer completion (*note
-Completion::) or even a special one-key selection scheme (*note Fast
-access to TODO states::) to insert these words into the buffer.
-Changing a TODO state can be logged with a timestamp, see *note Tracking
-TODO state changes::, for more information.
-
-   ---------- Footnotes ----------
-
-   (1) Changing this variable only becomes effective after restarting
-Org mode in a buffer.
-
-
-File: org,  Node: TODO types,  Next: Multiple sets in one file,  Prev: Workflow states,  Up: TODO extensions
-
-5.2.2 TODO keywords as types
-----------------------------
-
-The second possibility is to use TODO keywords to indicate different
-_types_ of action items.  For example, you might want to indicate that
-items are for “work” or “home”.  Or, when you work with several people
-on a single project, you might want to assign action items directly to
-persons, by using their names as TODO keywords.  This would be set up
-like this:
-
-     (setq org-todo-keywords '((type "Fred" "Sara" "Lucy" "|" "DONE")))
-
-   In this case, different keywords do not indicate a sequence, but
-rather different types.  So the normal work flow would be to assign a
-task to a person, and later to mark it DONE.  Org mode supports this
-style by adapting the workings of the command ‘C-c C-t’(1).  When used
-several times in succession, it will still cycle through all names, in
-order to first select the right type for a task.  But when you return to
-the item after some time and execute ‘C-c C-t’ again, it will switch
-from any name directly to DONE.  Use prefix arguments or completion to
-quickly select a specific name.  You can also review the items of a
-specific TODO type in a sparse tree by using a numeric prefix to ‘C-c /
-t’.  For example, to see all things Lucy has to do, you would use ‘C-3
-C-c / t’.  To collect Lucy’s items from all agenda files into a single
-buffer, you would use the numeric prefix argument as well when creating
-the global TODO list: ‘C-3 C-c a t’.
-
-   ---------- Footnotes ----------
-
-   (1) This is also true for the ‘t’ command in the agenda buffers.
-
-
-File: org,  Node: Multiple sets in one file,  Next: Fast access to TODO states,  Prev: TODO types,  Up: TODO extensions
-
-5.2.3 Multiple keyword sets in one file
----------------------------------------
-
-Sometimes you may want to use different sets of TODO keywords in
-parallel.  For example, you may want to have the basic ‘TODO’/‘DONE’,
-but also a workflow for bug fixing, and a separate state indicating that
-an item has been canceled (so it is not DONE, but also does not require
-action).  Your setup would then look like this:
-
-     (setq org-todo-keywords
-           '((sequence "TODO" "|" "DONE")
-             (sequence "REPORT" "BUG" "KNOWNCAUSE" "|" "FIXED")
-             (sequence "|" "CANCELED")))
-
-   The keywords should all be different, this helps Org mode to keep
-track of which subsequence should be used for a given entry.  In this
-setup, ‘C-c C-t’ only operates within a subsequence, so it switches from
-‘DONE’ to (nothing) to ‘TODO’, and from ‘FIXED’ to (nothing) to
-‘REPORT’.  Therefore you need a mechanism to initially select the
-correct sequence.  Besides the obvious ways like typing a keyword or
-using completion, you may also apply the following commands:
-
-‘C-u C-u C-c C-t’
-‘C-S-<RIGHT>’
-‘C-S-<LEFT>’
-     These keys jump from one TODO subset to the next.  In the above
-     example, ‘C-u C-u C-c C-t’ or ‘C-S-<RIGHT>’ would jump from ‘TODO’
-     or ‘DONE’ to ‘REPORT’, and any of the words in the second row to
-     ‘CANCELED’.  Note that the ‘C-S-’ key binding conflict with
-     ‘shift-selection-mode’ (*note Conflicts::).
-‘S-<RIGHT>’
-‘S-<LEFT>’
-     ‘S-<LEFT>’ and ‘S-<RIGHT>’ and walk through _all_ keywords from all
-     sets, so for example ‘S-<RIGHT>’ would switch from ‘DONE’ to
-     ‘REPORT’ in the example above.  See also *note Conflicts::, for a
-     discussion of the interaction with ‘shift-selection-mode’.
-
-
-File: org,  Node: Fast access to TODO states,  Next: Per-file keywords,  Prev: Multiple sets in one file,  Up: TODO extensions
-
-5.2.4 Fast access to TODO states
---------------------------------
-
-If you would like to quickly change an entry to an arbitrary TODO state
-instead of cycling through the states, you can set up keys for
-single-letter access to the states.  This is done by adding the
-selection character after each keyword, in parentheses(1).  For example:
-
-     (setq org-todo-keywords
-           '((sequence "TODO(t)" "|" "DONE(d)")
-             (sequence "REPORT(r)" "BUG(b)" "KNOWNCAUSE(k)" "|" "FIXED(f)")
-             (sequence "|" "CANCELED(c)")))
-
-   If you then press ‘C-c C-t’ followed by the selection key, the entry
-will be switched to this state.  ‘<SPC>’ can be used to remove any TODO
-keyword from an entry.(2)
-
-   ---------- Footnotes ----------
-
-   (1) All characters are allowed except ‘@^!’, which have a special
-meaning here.
-
-   (2) Check also the option ‘org-fast-tag-selection-include-todo’, it
-allows you to change the TODO state through the tags interface (*note
-Setting tags::), in case you like to mingle the two concepts.  Note that
-this means you need to come up with unique keys across both sets of
-keywords.
-
-
-File: org,  Node: Per-file keywords,  Next: Faces for TODO keywords,  Prev: Fast access to TODO states,  Up: TODO extensions
-
-5.2.5 Setting up keywords for individual files
-----------------------------------------------
-
-It can be very useful to use different aspects of the TODO mechanism in
-different files.  For file-local settings, you need to add special lines
-to the file which set the keywords and interpretation for that file
-only.  For example, to set one of the two examples discussed above, you
-need one of the following lines anywhere in the file:
-
-     #+TODO: TODO FEEDBACK VERIFY | DONE CANCELED
-(you may also write ‘#+SEQ_TODO’ to be explicit about the
-interpretation, but it means the same as ‘#+TODO’), or
-     #+TYP_TODO: Fred Sara Lucy Mike | DONE
-
-   A setup for using several sets in parallel would be:
-
-     #+TODO: TODO | DONE
-     #+TODO: REPORT BUG KNOWNCAUSE | FIXED
-     #+TODO: | CANCELED
-
-To make sure you are using the correct keyword, type ‘#+’ into the
-buffer and then use ‘M-<TAB>’ completion.
-
-   Remember that the keywords after the vertical bar (or the last
-keyword if no bar is there) must always mean that the item is DONE
-(although you may use a different word).  After changing one of these
-lines, use ‘C-c C-c’ with the cursor still in the line to make the
-changes known to Org mode(1).
-
-   ---------- Footnotes ----------
-
-   (1) Org mode parses these lines only when Org mode is activated after
-visiting a file.  ‘C-c C-c’ with the cursor in a line starting with ‘#+’
-is simply restarting Org mode for the current buffer.
-
-
-File: org,  Node: Faces for TODO keywords,  Next: TODO dependencies,  Prev: Per-file keywords,  Up: TODO extensions
-
-5.2.6 Faces for TODO keywords
------------------------------
-
-Org mode highlights TODO keywords with special faces: ‘org-todo’ for
-keywords indicating that an item still has to be acted upon, and
-‘org-done’ for keywords indicating that an item is finished.  If you are
-using more than 2 different states, you might want to use special faces
-for some of them.  This can be done using the option
-‘org-todo-keyword-faces’.  For example:
-
-     (setq org-todo-keyword-faces
-           '(("TODO" . org-warning) ("STARTED" . "yellow")
-             ("CANCELED" . (:foreground "blue" :weight bold))))
-
-   While using a list with face properties as shown for CANCELED
-_should_ work, this does not always seem to be the case.  If necessary,
-define a special face and use that.  A string is interpreted as a color.
-The option ‘org-faces-easy-properties’ determines if that color is
-interpreted as a foreground or a background color.
-
-
-File: org,  Node: TODO dependencies,  Prev: Faces for TODO keywords,  Up: TODO extensions
-
-5.2.7 TODO dependencies
------------------------
-
-The structure of Org files (hierarchy and lists) makes it easy to define
-TODO dependencies.  Usually, a parent TODO task should not be marked
-DONE until all subtasks (defined as children tasks) are marked as DONE.
-And sometimes there is a logical sequence to a number of (sub)tasks, so
-that one task cannot be acted upon before all siblings above it are
-done.  If you customize the option ‘org-enforce-todo-dependencies’, Org
-will block entries from changing state to DONE while they have children
-that are not DONE.  Furthermore, if an entry has a property ‘ORDERED’,
-each of its children will be blocked until all earlier siblings are
-marked DONE.  Here is an example:
-
-     * TODO Blocked until (two) is done
-     ** DONE one
-     ** TODO two
-
-     * Parent
-       :PROPERTIES:
-       :ORDERED: t
-       :END:
-     ** TODO a
-     ** TODO b, needs to wait for (a)
-     ** TODO c, needs to wait for (a) and (b)
-
-   You can ensure an entry is never blocked by using the ‘NOBLOCKING’
-property:
-
-     * This entry is never blocked
-       :PROPERTIES:
-       :NOBLOCKING: t
-       :END:
-
-‘C-c C-x o     (org-toggle-ordered-property)’
-     Toggle the ‘ORDERED’ property of the current entry.  A property is
-     used for this behavior because this should be local to the current
-     entry, not inherited like a tag.  However, if you would like to
-     track the value of this property with a tag for better visibility,
-     customize the option ‘org-track-ordered-property-with-tag’.
-‘C-u C-u C-u C-c C-t’
-     Change TODO state, circumventing any state blocking.
-
-   If you set the option ‘org-agenda-dim-blocked-tasks’, TODO entries
-that cannot be closed because of such dependencies will be shown in a
-dimmed font or even made invisible in agenda views (*note Agenda
-views::).
-
-   You can also block changes of TODO states by looking at checkboxes
-(*note Checkboxes::).  If you set the option
-‘org-enforce-todo-checkbox-dependencies’, an entry that has unchecked
-checkboxes will be blocked from switching to DONE.
-
-   If you need more complex dependency structures, for example
-dependencies between entries in different trees or files, check out the
-contributed module ‘org-depend.el’.
-
-
-File: org,  Node: Progress logging,  Next: Priorities,  Prev: TODO extensions,  Up: TODO items
-
-5.3 Progress logging
-====================
-
-Org mode can automatically record a timestamp and possibly a note when
-you mark a TODO item as DONE, or even each time you change the state of
-a TODO item.  This system is highly configurable; settings can be on a
-per-keyword basis and can be localized to a file or even a subtree.  For
-information on how to clock working time for a task, see *note Clocking
-work time::.
-
-* Menu:
-
-* Closing items::               When was this entry marked DONE?
-* Tracking TODO state changes::  When did the status change?
-* Tracking your habits::        How consistent have you been?
-
-
-File: org,  Node: Closing items,  Next: Tracking TODO state changes,  Up: Progress logging
-
-5.3.1 Closing items
--------------------
-
-The most basic logging is to keep track of _when_ a certain TODO item
-was finished.  This is achieved with(1)
-
-     (setq org-log-done 'time)
-
-Then each time you turn an entry from a TODO (not-done) state into any
-of the DONE states, a line ‘CLOSED: [timestamp]’ will be inserted just
-after the headline.  If you turn the entry back into a TODO item through
-further state cycling, that line will be removed again.  If you turn the
-entry back to a non-TODO state (by pressing ‘C-c C-t <SPC>’ for
-example), that line will also be removed, unless you set
-‘org-closed-keep-when-no-todo’ to non-‘nil’.  If you want to record a
-note along with the timestamp, use(2)
-
-     (setq org-log-done 'note)
-
-You will then be prompted for a note, and that note will be stored below
-the entry with a ‘Closing Note’ heading.
-
-   ---------- Footnotes ----------
-
-   (1) The corresponding in-buffer setting is: ‘#+STARTUP: logdone’
-
-   (2) The corresponding in-buffer setting is: ‘#+STARTUP: lognotedone’.
-
-
-File: org,  Node: Tracking TODO state changes,  Next: Tracking your habits,  Prev: Closing items,  Up: Progress logging
-
-5.3.2 Tracking TODO state changes
----------------------------------
-
-When TODO keywords are used as workflow states (*note Workflow
-states::), you might want to keep track of when a state change occurred
-and maybe take a note about this change.  You can either record just a
-timestamp, or a time-stamped note for a change.  These records will be
-inserted after the headline as an itemized list, newest first(1).  When
-taking a lot of notes, you might want to get the notes out of the way
-into a drawer (*note Drawers::).  Customize ‘org-log-into-drawer’ to get
-this behavior—the recommended drawer for this is called ‘LOGBOOK’(2).
-You can also overrule the setting of this variable for a subtree by
-setting a ‘LOG_INTO_DRAWER’ property.
-
-   Since it is normally too much to record a note for every state, Org
-mode expects configuration on a per-keyword basis for this.  This is
-achieved by adding special markers ‘!’ (for a timestamp) or ‘@’ (for a
-note with timestamp) in parentheses after each keyword.  For example,
-with the setting
-
-     (setq org-todo-keywords
-       '((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)" "CANCELED(c@)")))
-
-   To record a timestamp without a note for TODO keywords configured
-with ‘@’, just type ‘C-c C-c’ to enter a blank note when prompted.
-
-You not only define global TODO keywords and fast access keys, but also
-request that a time is recorded when the entry is set to DONE(3), and
-that a note is recorded when switching to WAIT or CANCELED.  The setting
-for WAIT is even more special: the ‘!’ after the slash means that in
-addition to the note taken when entering the state, a timestamp should
-be recorded when leaving the WAIT state, if and only if the target state
-does not configure logging for entering it.  So it has no effect when
-switching from WAIT to DONE, because DONE is configured to record a
-timestamp only.  But when switching from WAIT back to TODO, the ‘/!’ in
-the WAIT setting now triggers a timestamp even though TODO has no
-logging configured.
-
-   You can use the exact same syntax for setting logging preferences
-local to a buffer:
-     #+TODO: TODO(t) WAIT(w@/!) | DONE(d!) CANCELED(c@)
-
-   In order to define logging settings that are local to a subtree or a
-single item, define a ‘LOGGING’ property in this entry.  Any non-empty
-‘LOGGING’ property resets all logging settings to ‘nil’.  You may then
-turn on logging for this specific tree using ‘#+STARTUP’ keywords like
-‘lognotedone’ or ‘logrepeat’, as well as adding state specific settings
-like ‘TODO(!)’.  For example
-
-     * TODO Log each state with only a time
-       :PROPERTIES:
-       :LOGGING: TODO(!) WAIT(!) DONE(!) CANCELED(!)
-       :END:
-     * TODO Only log when switching to WAIT, and when repeating
-       :PROPERTIES:
-       :LOGGING: WAIT(@) logrepeat
-       :END:
-     * TODO No logging at all
-       :PROPERTIES:
-       :LOGGING: nil
-       :END:
-
-   ---------- Footnotes ----------
-
-   (1) See the option ‘org-log-states-order-reversed’
-
-   (2) Note that the ‘LOGBOOK’ drawer is unfolded when pressing ‘<SPC>’
-in the agenda to show an entry—use ‘C-u <SPC>’ to keep it folded here
-
-   (3) It is possible that Org mode will record two timestamps when you
-are using both ‘org-log-done’ and state change logging.  However, it
-will never prompt for two notes—if you have configured both, the state
-change recording note will take precedence and cancel the ‘Closing
-Note’.
-
-
-File: org,  Node: Tracking your habits,  Prev: Tracking TODO state changes,  Up: Progress logging
-
-5.3.3 Tracking your habits
---------------------------
-
-Org has the ability to track the consistency of a special category of
-TODOs, called “habits”.  A habit has the following properties:
-
-  1. You have enabled the ‘habits’ module by customizing ‘org-modules’.
-  2. The habit is a TODO item, with a TODO keyword representing an open
-     state.
-  3. The property ‘STYLE’ is set to the value ‘habit’.
-  4. The TODO has a scheduled date, usually with a ‘.+’ style repeat
-     interval.  A ‘++’ style may be appropriate for habits with time
-     constraints, e.g., must be done on weekends, or a ‘+’ style for an
-     unusual habit that can have a backlog, e.g., weekly reports.
-  5. The TODO may also have minimum and maximum ranges specified by
-     using the syntax ‘.+2d/3d’, which says that you want to do the task
-     at least every three days, but at most every two days.
-  6. You must also have state logging for the ‘DONE’ state enabled
-     (*note Tracking TODO state changes::), in order for historical data
-     to be represented in the consistency graph.  If it is not enabled
-     it is not an error, but the consistency graphs will be largely
-     meaningless.
-
-   To give you an idea of what the above rules look like in action,
-here’s an actual habit with some history:
-
-     ** TODO Shave
-        SCHEDULED: <2009-10-17 Sat .+2d/4d>
-        :PROPERTIES:
-        :STYLE:    habit
-        :LAST_REPEAT: [2009-10-19 Mon 00:36]
-        :END:
-        - State "DONE"       from "TODO"       [2009-10-15 Thu]
-        - State "DONE"       from "TODO"       [2009-10-12 Mon]
-        - State "DONE"       from "TODO"       [2009-10-10 Sat]
-        - State "DONE"       from "TODO"       [2009-10-04 Sun]
-        - State "DONE"       from "TODO"       [2009-10-02 Fri]
-        - State "DONE"       from "TODO"       [2009-09-29 Tue]
-        - State "DONE"       from "TODO"       [2009-09-25 Fri]
-        - State "DONE"       from "TODO"       [2009-09-19 Sat]
-        - State "DONE"       from "TODO"       [2009-09-16 Wed]
-        - State "DONE"       from "TODO"       [2009-09-12 Sat]
-
-   What this habit says is: I want to shave at most every 2 days (given
-by the ‘SCHEDULED’ date and repeat interval) and at least every 4 days.
-If today is the 15th, then the habit first appears in the agenda on Oct
-17, after the minimum of 2 days has elapsed, and will appear overdue on
-Oct 19, after four days have elapsed.
-
-   What’s really useful about habits is that they are displayed along
-with a consistency graph, to show how consistent you’ve been at getting
-that task done in the past.  This graph shows every day that the task
-was done over the past three weeks, with colors for each day.  The
-colors used are:
-
-‘Blue’
-     If the task wasn’t to be done yet on that day.
-‘Green’
-     If the task could have been done on that day.
-‘Yellow’
-     If the task was going to be overdue the next day.
-‘Red’
-     If the task was overdue on that day.
-
-   In addition to coloring each day, the day is also marked with an
-asterisk if the task was actually done that day, and an exclamation mark
-to show where the current day falls in the graph.
-
-   There are several configuration variables that can be used to change
-the way habits are displayed in the agenda.
-
-‘org-habit-graph-column’
-     The buffer column at which the consistency graph should be drawn.
-     This will overwrite any text in that column, so it is a good idea
-     to keep your habits’ titles brief and to the point.
-‘org-habit-preceding-days’
-     The amount of history, in days before today, to appear in
-     consistency graphs.
-‘org-habit-following-days’
-     The number of days after today that will appear in consistency
-     graphs.
-‘org-habit-show-habits-only-for-today’
-     If non-‘nil’, only show habits in today’s agenda view.  This is set
-     to true by default.
-
-   Lastly, pressing ‘K’ in the agenda buffer will cause habits to
-temporarily be disabled and they won’t appear at all.  Press ‘K’ again
-to bring them back.  They are also subject to tag filtering, if you have
-habits which should only be done in certain contexts, for example.
-
-
-File: org,  Node: Priorities,  Next: Breaking down tasks,  Prev: Progress logging,  Up: TODO items
-
-5.4 Priorities
-==============
-
-If you use Org mode extensively, you may end up with enough TODO items
-that it starts to make sense to prioritize them.  Prioritizing can be
-done by placing a _priority cookie_ into the headline of a TODO item,
-like this
-
-     *** TODO [#A] Write letter to Sam Fortune
-
-By default, Org mode supports three priorities: ‘A’, ‘B’, and ‘C’.  ‘A’
-is the highest priority.  An entry without a cookie is treated just like
-priority ‘B’.  Priorities make a difference only for sorting in the
-agenda (*note Weekly/daily agenda::); outside the agenda, they have no
-inherent meaning to Org mode.  The cookies can be highlighted with
-special faces by customizing ‘org-priority-faces’.
-
-   Priorities can be attached to any outline node; they do not need to
-be TODO items.
-
-‘C-c ,’
-     Set the priority of the current headline (‘org-priority’).  The
-     command prompts for a priority character ‘A’, ‘B’ or ‘C’.  When you
-     press <SPC> instead, the priority cookie is removed from the
-     headline.  The priorities can also be changed “remotely” from the
-     agenda buffer with the ‘,’ command (*note Agenda commands::).
-‘S-<UP>     (org-priority-up)’
-‘S-<DOWN>     (org-priority-down)’
-     Increase/decrease priority of current headline(1).  Note that these
-     keys are also used to modify timestamps (*note Creating
-     timestamps::).  See also *note Conflicts::, for a discussion of the
-     interaction with ‘shift-selection-mode’.
-
-   You can change the range of allowed priorities by setting the options
-‘org-highest-priority’, ‘org-lowest-priority’, and
-‘org-default-priority’.  For an individual buffer, you may set these
-values (highest, lowest, default) like this (please make sure that the
-highest priority is earlier in the alphabet than the lowest priority):
-
-     #+PRIORITIES: A C B
-
-   ---------- Footnotes ----------
-
-   (1) See also the option ‘org-priority-start-cycle-with-default’.
-
-
-File: org,  Node: Breaking down tasks,  Next: Checkboxes,  Prev: Priorities,  Up: TODO items
-
-5.5 Breaking tasks down into subtasks
-=====================================
-
-It is often advisable to break down large tasks into smaller, manageable
-subtasks.  You can do this by creating an outline tree below a TODO
-item, with detailed subtasks on the tree(1).  To keep the overview over
-the fraction of subtasks that are already completed, insert either ‘[/]’
-or ‘[%]’ anywhere in the headline.  These cookies will be updated each
-time the TODO status of a child changes, or when pressing ‘C-c C-c’ on
-the cookie.  For example:
-
-     * Organize Party [33%]
-     ** TODO Call people [1/2]
-     *** TODO Peter
-     *** DONE Sarah
-     ** TODO Buy food
-     ** DONE Talk to neighbor
-
-   If a heading has both checkboxes and TODO children below it, the
-meaning of the statistics cookie become ambiguous.  Set the property
-‘COOKIE_DATA’ to either ‘checkbox’ or ‘todo’ to resolve this issue.
-
-   If you would like to have the statistics cookie count any TODO
-entries in the subtree (not just direct children), configure
-‘org-hierarchical-todo-statistics’.  To do this for a single subtree,
-include the word ‘recursive’ into the value of the ‘COOKIE_DATA’
-property.
-
-     * Parent capturing statistics [2/20]
-       :PROPERTIES:
-       :COOKIE_DATA: todo recursive
-       :END:
-
-   If you would like a TODO entry to automatically change to DONE when
-all children are done, you can use the following setup:
-
-     (defun org-summary-todo (n-done n-not-done)
-       "Switch entry to DONE when all subentries are done, to TODO otherwise."
-       (let (org-log-done org-log-states)   ; turn off logging
-         (org-todo (if (= n-not-done 0) "DONE" "TODO"))))
-
-     (add-hook 'org-after-todo-statistics-hook 'org-summary-todo)
-
-   Another possibility is the use of checkboxes to identify (a hierarchy
-of) a large number of subtasks (*note Checkboxes::).
-
-   ---------- Footnotes ----------
-
-   (1) To keep subtasks out of the global TODO list, see the
-‘org-agenda-todo-list-sublevels’.
-
-
-File: org,  Node: Checkboxes,  Prev: Breaking down tasks,  Up: TODO items
-
-5.6 Checkboxes
-==============
-
-Every item in a plain list(1) (*note Plain lists::) can be made into a
-checkbox by starting it with the string ‘[ ]’.  This feature is similar
-to TODO items (*note TODO items::), but is more lightweight.  Checkboxes
-are not included in the global TODO list, so they are often great to
-split a task into a number of simple steps.  Or you can use them in a
-shopping list.  To toggle a checkbox, use ‘C-c C-c’, or use the mouse
-(thanks to Piotr Zielinski’s ‘org-mouse.el’).
-
-   Here is an example of a checkbox list.
-
-     * TODO Organize party [2/4]
-       - [-] call people [1/3]
-         - [ ] Peter
-         - [X] Sarah
-         - [ ] Sam
-       - [X] order food
-       - [ ] think about what music to play
-       - [X] talk to the neighbors
-
-   Checkboxes work hierarchically, so if a checkbox item has children
-that are checkboxes, toggling one of the children checkboxes will make
-the parent checkbox reflect if none, some, or all of the children are
-checked.
-
-   The ‘[2/4]’ and ‘[1/3]’ in the first and second line are cookies
-indicating how many checkboxes present in this entry have been checked
-off, and the total number of checkboxes present.  This can give you an
-idea on how many checkboxes remain, even without opening a folded entry.
-The cookies can be placed into a headline or into (the first line of) a
-plain list item.  Each cookie covers checkboxes of direct children
-structurally below the headline/item on which the cookie appears(2).
-You have to insert the cookie yourself by typing either ‘[/]’ or ‘[%]’.
-With ‘[/]’ you get an ‘n out of m’ result, as in the examples above.
-With ‘[%]’ you get information about the percentage of checkboxes
-checked (in the above example, this would be ‘[50%]’ and ‘[33%]’,
-respectively).  In a headline, a cookie can count either checkboxes
-below the heading or TODO states of children, and it will display
-whatever was changed last.  Set the property ‘COOKIE_DATA’ to either
-‘checkbox’ or ‘todo’ to resolve this issue.
-
-   If the current outline node has an ‘ORDERED’ property, checkboxes
-must be checked off in sequence, and an error will be thrown if you try
-to check off a box while there are unchecked boxes above it.
-
-The following commands work with checkboxes:
-
-‘C-c C-c     (org-toggle-checkbox)’
-     Toggle checkbox status or (with prefix arg) checkbox presence at
-     point.  With a single prefix argument, add an empty checkbox or
-     remove the current one(3).  With a double prefix argument, set it
-     to ‘[-]’, which is considered to be an intermediate state.
-‘C-c C-x C-b     (org-toggle-checkbox)’
-     Toggle checkbox status or (with prefix arg) checkbox presence at
-     point.  With double prefix argument, set it to ‘[-]’, which is
-     considered to be an intermediate state.
-        − If there is an active region, toggle the first checkbox in the
-          region and set all remaining boxes to the same status as the
-          first.  With a prefix arg, add or remove the checkbox for all
-          items in the region.
-        − If the cursor is in a headline, toggle the state of the first
-          checkbox in the region between this headline and the next—so
-          _not_ the entire subtree—and propagate this new state to all
-          other checkboxes in the same area.
-        − If there is no active region, just toggle the checkbox at
-          point.
-‘M-S-<RET>     (org-insert-todo-heading)’
-     Insert a new item with a checkbox.  This works only if the cursor
-     is already in a plain list item (*note Plain lists::).
-‘C-c C-x o     (org-toggle-ordered-property)’
-     Toggle the ‘ORDERED’ property of the entry, to toggle if checkboxes
-     must be checked off in sequence.  A property is used for this
-     behavior because this should be local to the current entry, not
-     inherited like a tag.  However, if you would like to track the
-     value of this property with a tag for better visibility, customize
-     ‘org-track-ordered-property-with-tag’.
-‘C-c #     (org-update-statistics-cookies)’
-     Update the statistics cookie in the current outline entry.  When
-     called with a ‘C-u’ prefix, update the entire file.  Checkbox
-     statistic cookies are updated automatically if you toggle
-     checkboxes with ‘C-c C-c’ and make new ones with ‘M-S-<RET>’.  TODO
-     statistics cookies update when changing TODO states.  If you delete
-     boxes/entries or add/change them by hand, use this command to get
-     things back into sync.
-
-   ---------- Footnotes ----------
-
-   (1) With the exception of description lists.  But you can allow it by
-modifying ‘org-list-automatic-rules’ accordingly.
-
-   (2) Set the option ‘org-checkbox-hierarchical-statistics’ if you want
-such cookies to count all checkboxes below the cookie, not just those
-belonging to direct children.
-
-   (3) ‘C-u C-c C-c’ before the _first_ bullet in a list with no
-checkbox will add checkboxes to the rest of the list.
-
-
-File: org,  Node: Tags,  Next: Properties and columns,  Prev: TODO items,  Up: Top
-
-6 Tags
-******
-
-An excellent way to implement labels and contexts for cross-correlating
-information is to assign tags to headlines.  Org mode has extensive
-support for tags.
-
-   Every headline can contain a list of tags; they occur at the end of
-the headline.  Tags are normal words containing letters, numbers, ‘_’,
-and ‘@’.  Tags must be preceded and followed by a single colon, e.g.,
-‘:work:’.  Several tags can be specified, as in ‘:work:urgent:’.  Tags
-will by default be in bold face with the same color as the headline.
-You may specify special faces for specific tags using the option
-‘org-tag-faces’, in much the same way as you can for TODO keywords
-(*note Faces for TODO keywords::).
-
-* Menu:
-
-* Tag inheritance::             Tags use the tree structure of the outline
-* Setting tags::                How to assign tags to a headline
-* Tag hierarchy::               Create a hierarchy of tags
-* Tag searches::                Searching for combinations of tags
-
-
-File: org,  Node: Tag inheritance,  Next: Setting tags,  Up: Tags
-
-6.1 Tag inheritance
-===================
-
-Tags make use of the hierarchical structure of outline trees.  If a
-heading has a certain tag, all subheadings will inherit the tag as well.
-For example, in the list
-
-     * Meeting with the French group      :work:
-     ** Summary by Frank                  :boss:notes:
-     *** TODO Prepare slides for him      :action:
-
-the final heading will have the tags ‘:work:’, ‘:boss:’, ‘:notes:’, and
-‘:action:’ even though the final heading is not explicitly marked with
-all those tags.  You can also set tags that all entries in a file should
-inherit just as if these tags were defined in a hypothetical level zero
-that surrounds the entire file.  Use a line like this(1):
-
-     #+FILETAGS: :Peter:Boss:Secret:
-
-To limit tag inheritance to specific tags, use
-‘org-tags-exclude-from-inheritance’.  To turn it off entirely, use
-‘org-use-tag-inheritance’.
-
-   When a headline matches during a tags search while tag inheritance is
-turned on, all the sublevels in the same tree will (for a simple match
-form) match as well(2).  The list of matches may then become very long.
-If you only want to see the first tags match in a subtree, configure
-‘org-tags-match-list-sublevels’ (not recommended).
-
-   Tag inheritance is relevant when the agenda search tries to match a
-tag, either in the ‘tags’ or ‘tags-todo’ agenda types.  In other agenda
-types, ‘org-use-tag-inheritance’ has no effect.  Still, you may want to
-have your tags correctly set in the agenda, so that tag filtering works
-fine, with inherited tags.  Set ‘org-agenda-use-tag-inheritance’ to
-control this: the default value includes all agenda types, but setting
-this to ‘nil’ can really speed up agenda generation.
-
-   ---------- Footnotes ----------
-
-   (1) As with all these in-buffer settings, pressing ‘C-c C-c’
-activates any changes in the line.
-
-   (2) This is only true if the search does not involve more complex
-tests including properties (*note Property searches::).
-
-
-File: org,  Node: Setting tags,  Next: Tag hierarchy,  Prev: Tag inheritance,  Up: Tags
-
-6.2 Setting tags
-================
-
-Tags can simply be typed into the buffer at the end of a headline.
-After a colon, ‘M-<TAB>’ offers completion on tags.  There is also a
-special command for inserting tags:
-
-‘C-c C-q     (org-set-tags-command)’
-     Enter new tags for the current headline.  Org mode will either
-     offer completion or a special single-key interface for setting
-     tags, see below.  After pressing <RET>, the tags will be inserted
-     and aligned to ‘org-tags-column’.  When called with a ‘C-u’ prefix,
-     all tags in the current buffer will be aligned to that column, just
-     to make things look nice.  TAGS are automatically realigned after
-     promotion, demotion, and TODO state changes (*note TODO basics::).
-
-‘C-c C-c     (org-set-tags-command)’
-     When the cursor is in a headline, this does the same as ‘C-c C-q’.
-
-   Org supports tag insertion based on a _list of tags_.  By default
-this list is constructed dynamically, containing all tags currently used
-in the buffer.  You may also globally specify a hard list of tags with
-the variable ‘org-tag-alist’.  Finally you can set the default tags for
-a given file with lines like
-
-     #+TAGS: @work @home @tennisclub
-     #+TAGS: laptop car pc sailboat
-
-   If you have globally defined your preferred set of tags using the
-variable ‘org-tag-alist’, but would like to use a dynamic tag list in a
-specific file, add an empty TAGS option line to that file:
-
-     #+TAGS:
-
-   If you have a preferred set of tags that you would like to use in
-every file, in addition to those defined on a per-file basis by TAGS
-option lines, then you may specify a list of tags with the variable
-‘org-tag-persistent-alist’.  You may turn this off on a per-file basis
-by adding a ‘#+STARTUP’ option line to that file:
-
-     #+STARTUP: noptag
-
-   By default Org mode uses the standard minibuffer completion
-facilities for entering tags.  However, it also implements another,
-quicker, tag selection method called _fast tag selection_.  This allows
-you to select and deselect tags with just a single key press.  For this
-to work well you should assign unique, case-sensitive, letters to most
-of your commonly used tags.  You can do this globally by configuring the
-variable ‘org-tag-alist’ in your Emacs init file.  For example, you may
-find the need to tag many items in different files with ‘:@home:’.  In
-this case you can set something like:
-
-     (setq org-tag-alist '(("@work" . ?w) ("@home" . ?h) ("laptop" . ?l)))
-
-If the tag is only relevant to the file you are working on, then you can
-instead set the TAGS option line as:
-
-     #+TAGS: @work(w)  @home(h)  @tennisclub(t)  laptop(l)  pc(p)
-
-The tags interface will show the available tags in a splash window.  If
-you want to start a new line after a specific tag, insert ‘\n’ into the
-tag list
-
-     #+TAGS: @work(w)  @home(h)  @tennisclub(t) \n laptop(l)  pc(p)
-
-or write them in two lines:
-
-     #+TAGS: @work(w)  @home(h)  @tennisclub(t)
-     #+TAGS: laptop(l)  pc(p)
-
-You can also group together tags that are mutually exclusive by using
-braces, as in:
-
-     #+TAGS: { @work(w)  @home(h)  @tennisclub(t) }  laptop(l)  pc(p)
-
-you indicate that at most one of ‘@work’, ‘@home’, and ‘@tennisclub’
-should be selected.  Multiple such groups are allowed.
-
-Don’t forget to press ‘C-c C-c’ with the cursor in one of these lines to
-activate any changes.
-
-To set these mutually exclusive groups in the variable ‘org-tag-alist’,
-you must use the dummy tags ‘:startgroup’ and ‘:endgroup’ instead of the
-braces.  Similarly, you can use ‘:newline’ to indicate a line break.
-The previous example would be set globally by the following
-configuration:
-
-     (setq org-tag-alist '((:startgroup . nil)
-                           ("@work" . ?w) ("@home" . ?h)
-                           ("@tennisclub" . ?t)
-                           (:endgroup . nil)
-                           ("laptop" . ?l) ("pc" . ?p)))
-
-   If at least one tag has a selection key then pressing ‘C-c C-c’ will
-automatically present you with a special interface, listing inherited
-tags, the tags of the current headline, and a list of all valid tags
-with corresponding keys(1).
-
-   Pressing keys assigned to tags will add or remove them from the list
-of tags in the current line.  Selecting a tag in a group of mutually
-exclusive tags will turn off any other tags from that group.
-
-   In this interface, you can also use the following special keys:
-
-‘<TAB>’
-     Enter a tag in the minibuffer, even if the tag is not in the
-     predefined list.  You will be able to complete on all tags present
-     in the buffer.  You can also add several tags: just separate them
-     with a comma.
-
-‘<SPC>’
-     Clear all tags for this line.
-
-‘<RET>’
-     Accept the modified set.
-
-‘C-g’
-     Abort without installing changes.
-
-‘q’
-     If ‘q’ is not assigned to a tag, it aborts like ‘C-g’.
-
-‘!’
-     Turn off groups of mutually exclusive tags.  Use this to (as an
-     exception) assign several tags from such a group.
-
-‘C-c’
-     Toggle auto-exit after the next change (see below).  If you are
-     using expert mode, the first ‘C-c’ will display the selection
-     window.
-
-This method lets you assign tags to a headline with very few keys.  With
-the above setup, you could clear the current tags and set ‘@home’,
-‘laptop’ and ‘pc’ tags with just the following keys: ‘C-c C-c <SPC> h l
-p <RET>’.  Switching from ‘@home’ to ‘@work’ would be done with ‘C-c C-c
-w <RET>’ or alternatively with ‘C-c C-c C-c w’.  Adding the
-non-predefined tag ‘Sarah’ could be done with ‘C-c C-c <TAB> S a r a h
-<RET> <RET>’.
-
-   If you find that most of the time you need only a single key press to
-modify your list of tags, set ‘org-fast-tag-selection-single-key’.  Then
-you no longer have to press <RET> to exit fast tag selection—it will
-immediately exit after the first change.  If you then occasionally need
-more keys, press ‘C-c’ to turn off auto-exit for the current tag
-selection process (in effect: start selection with ‘C-c C-c C-c’ instead
-of ‘C-c C-c’).  If you set the variable to the value ‘expert’, the
-special window is not even shown for single-key tag selection, it comes
-up only when you press an extra ‘C-c’.
-
-   ---------- Footnotes ----------
-
-   (1) Keys will automatically be assigned to tags which have no
-configured keys.
-
-
-File: org,  Node: Tag hierarchy,  Next: Tag searches,  Prev: Setting tags,  Up: Tags
-
-6.3 Tag hierarchy
-=================
-
-Tags can be defined in hierarchies.  A tag can be defined as a _group
-tag_ for a set of other tags.  The group tag can be seen as the “broader
-term” for its set of tags.  Defining multiple _group tags_ and nesting
-them creates a tag hierarchy.
-
-   One use-case is to create a taxonomy of terms (tags) that can be used
-to classify nodes in a document or set of documents.
-
-   When you search for a group tag, it will return matches for all
-members in the group and its subgroups.  In an agenda view, filtering by
-a group tag will display or hide headlines tagged with at least one of
-the members of the group or any of its subgroups.  This makes tag
-searches and filters even more flexible.
-
-   You can set group tags by using brackets and inserting a colon
-between the group tag and its related tags—beware that all whitespaces
-are mandatory so that Org can parse this line correctly:
-
-     #+TAGS: [ GTD : Control Persp ]
-
-   In this example, ‘GTD’ is the _group tag_ and it is related to two
-other tags: ‘Control’, ‘Persp’.  Defining ‘Control’ and ‘Persp’ as group
-tags creates a hierarchy of tags:
-
-     #+TAGS: [ Control : Context Task ]
-     #+TAGS: [ Persp : Vision Goal AOF Project ]
-
-   That can conceptually be seen as a hierarchy of tags:
-
-     - GTD
-       - Persp
-         - Vision
-         - Goal
-         - AOF
-         - Project
-       - Control
-         - Context
-         - Task
-
-   You can use the ‘:startgrouptag’, ‘:grouptags’ and ‘:endgrouptag’
-keyword directly when setting ‘org-tag-alist’ directly:
-
-     (setq org-tag-alist '((:startgrouptag)
-                           ("GTD")
-                           (:grouptags)
-                           ("Control")
-                           ("Persp")
-                           (:endgrouptag)
-                           (:startgrouptag)
-                           ("Control")
-                           (:grouptags)
-                           ("Context")
-                           ("Task")
-                           (:endgrouptag)))
-
-   The tags in a group can be mutually exclusive if using the same group
-syntax as is used for grouping mutually exclusive tags together; using
-curly brackets.
-
-     #+TAGS: { Context : @Home @Work @Call }
-
-   When setting ‘org-tag-alist’ you can use ‘:startgroup’ & ‘:endgroup’
-instead of ‘:startgrouptag’ & ‘:endgrouptag’ to make the tags mutually
-exclusive.
-
-   Furthermore, the members of a _group tag_ can also be regular
-expressions, creating the possibility of a more dynamic and rule-based
-tag structure.  The regular expressions in the group must be specified
-within { }.  Here is an expanded example:
-
-     #+TAGS: [ Vision : {V@.+} ]
-     #+TAGS: [ Goal : {G@.+} ]
-     #+TAGS: [ AOF : {AOF@.+} ]
-     #+TAGS: [ Project : {P@.+} ]
-
-   Searching for the tag ‘Project’ will now list all tags also including
-regular expression matches for ‘P@.+’, and similarly for tag searches on
-‘Vision’, ‘Goal’ and ‘AOF’.  For example, this would work well for a
-project tagged with a common project-identifier, e.g.  ‘P@2014_OrgTags’.
-
-   If you want to ignore group tags temporarily, toggle group tags
-support with ‘org-toggle-tags-groups’, bound to ‘C-c C-x q’.  If you
-want to disable tag groups completely, set ‘org-group-tags’ to ‘nil’.
-
-
-File: org,  Node: Tag searches,  Prev: Tag hierarchy,  Up: Tags
-
-6.4 Tag searches
-================
-
-Once a system of tags has been set up, it can be used to collect related
-information into special lists.
-
-‘C-c / m  or  C-c \     (org-match-sparse-tree)’
-     Create a sparse tree with all headlines matching a
-     tags/property/TODO search.  With a ‘C-u’ prefix argument, ignore
-     headlines that are not a TODO line.  *Note Matching tags and
-     properties::.
-‘C-c a m     (org-tags-view)’
-     Create a global list of tag matches from all agenda files.  *Note
-     Matching tags and properties::.
-‘C-c a M     (org-tags-view)’
-     Create a global list of tag matches from all agenda files, but
-     check only TODO items and force checking subitems (see the option
-     ‘org-tags-match-list-sublevels’).
-
-   These commands all prompt for a match string which allows basic
-Boolean logic like ‘+boss+urgent-project1’, to find entries with tags
-‘boss’ and ‘urgent’, but not ‘project1’, or ‘Kathy|Sally’ to find
-entries tagged as ‘Kathy’ or ‘Sally’.  The full syntax of the search
-string is rich and allows also matching against TODO keywords, entry
-levels and properties.  For a complete description with many examples,
-see *note Matching tags and properties::.
-
-
-File: org,  Node: Properties and columns,  Next: Dates and times,  Prev: Tags,  Up: Top
-
-7 Properties and columns
-************************
-
-A property is a key-value pair associated with an entry.  Properties can
-be set so they are associated with a single entry, with every entry in a
-tree, or with every entry in an Org mode file.
-
-   There are two main applications for properties in Org mode.  First,
-properties are like tags, but with a value.  Imagine maintaining a file
-where you document bugs and plan releases for a piece of software.
-Instead of using tags like ‘:release_1:’, ‘:release_2:’, you can use a
-property, say ‘:Release:’, that in different subtrees has different
-values, such as ‘1.0’ or ‘2.0’.  Second, you can use properties to
-implement (very basic) database capabilities in an Org buffer.  Imagine
-keeping track of your music CDs, where properties could be things such
-as the album, artist, date of release, number of tracks, and so on.
-
-   Properties can be conveniently edited and viewed in column view
-(*note Column view::).
-
-* Menu:
-
-* Property syntax::             How properties are spelled out
-* Special properties::          Access to other Org mode features
-* Property searches::           Matching property values
-* Property inheritance::        Passing values down the tree
-* Column view::                 Tabular viewing and editing
-* Property API::                Properties for Lisp programmers
-
-
-File: org,  Node: Property syntax,  Next: Special properties,  Up: Properties and columns
-
-7.1 Property syntax
-===================
-
-Properties are key-value pairs.  When they are associated with a single
-entry or with a tree they need to be inserted into a special drawer
-(*note Drawers::) with the name ‘PROPERTIES’, which has to be located
-right below a headline, and its planning line (*note Deadlines and
-scheduling::) when applicable.  Each property is specified on a single
-line, with the key (surrounded by colons) first, and the value after it.
-Keys are case-insensitive.  Here is an example:
-
-     * CD collection
-     ** Classic
-     *** Goldberg Variations
-         :PROPERTIES:
-         :Title:     Goldberg Variations
-         :Composer:  J.S. Bach
-         :Artist:    Glen Gould
-         :Publisher: Deutsche Grammophon
-         :NDisks:    1
-         :END:
-
-   Depending on the value of ‘org-use-property-inheritance’, a property
-set this way will either be associated with a single entry, or the
-subtree defined by the entry, see *note Property inheritance::.
-
-   You may define the allowed values for a particular property ‘:Xyz:’
-by setting a property ‘:Xyz_ALL:’.  This special property is
-_inherited_, so if you set it in a level 1 entry, it will apply to the
-entire tree.  When allowed values are defined, setting the corresponding
-property becomes easier and is less prone to typing errors.  For the
-example with the CD collection, we can predefine publishers and the
-number of disks in a box like this:
-
-     * CD collection
-       :PROPERTIES:
-       :NDisks_ALL:  1 2 3 4
-       :Publisher_ALL: "Deutsche Grammophon" Philips EMI
-       :END:
-
-   If you want to set properties that can be inherited by any entry in a
-file, use a line like
-     #+PROPERTY: NDisks_ALL 1 2 3 4
-
-   Contrary to properties set from a special drawer, you have to refresh
-the buffer with ‘C-c C-c’ to activate this change.
-
-   If you want to add to the value of an existing property, append a ‘+’
-to the property name.  The following results in the property ‘var’
-having the value “foo=1 bar=2”.
-     #+PROPERTY: var  foo=1
-     #+PROPERTY: var+ bar=2
-
-   It is also possible to add to the values of inherited properties.
-The following results in the ‘genres’ property having the value “Classic
-Baroque” under the ‘Goldberg Variations’ subtree.
-     * CD collection
-     ** Classic
-         :PROPERTIES:
-         :GENRES: Classic
-         :END:
-     *** Goldberg Variations
-         :PROPERTIES:
-         :Title:     Goldberg Variations
-         :Composer:  J.S. Bach
-         :Artist:    Glen Gould
-         :Publisher: Deutsche Grammophon
-         :NDisks:    1
-         :GENRES+:   Baroque
-         :END:
-   Note that a property can only have one entry per Drawer.
-
-   Property values set with the global variable ‘org-global-properties’
-can be inherited by all entries in all Org files.
-
-The following commands help to work with properties:
-
-‘M-<TAB>     (pcomplete)’
-     After an initial colon in a line, complete property keys.  All keys
-     used in the current file will be offered as possible completions.
-‘C-c C-x p     (org-set-property)’
-     Set a property.  This prompts for a property name and a value.  If
-     necessary, the property drawer is created as well.
-‘C-u M-x org-insert-drawer <RET>’
-     Insert a property drawer into the current entry.  The drawer will
-     be inserted early in the entry, but after the lines with planning
-     information like deadlines.
-‘C-c C-c     (org-property-action)’
-     With the cursor in a property drawer, this executes property
-     commands.
-‘C-c C-c s     (org-set-property)’
-     Set a property in the current entry.  Both the property and the
-     value can be inserted using completion.
-‘S-<RIGHT>     (org-property-next-allowed-value)’
-‘S-<LEFT>     (org-property-previous-allowed-value)’
-     Switch property at point to the next/previous allowed value.
-‘C-c C-c d     (org-delete-property)’
-     Remove a property from the current entry.
-‘C-c C-c D     (org-delete-property-globally)’
-     Globally remove a property, from all entries in the current file.
-‘C-c C-c c     (org-compute-property-at-point)’
-     Compute the property at point, using the operator and scope from
-     the nearest column format definition.
-
-
-File: org,  Node: Special properties,  Next: Property searches,  Prev: Property syntax,  Up: Properties and columns
-
-7.2 Special properties
-======================
-
-Special properties provide an alternative access method to Org mode
-features, like the TODO state or the priority of an entry, discussed in
-the previous chapters.  This interface exists so that you can include
-these states in a column view (*note Column view::), or to use them in
-queries.  The following property names are special and should not be
-used as keys in the properties drawer:
-
-     ALLTAGS      All tags, including inherited ones.
-     BLOCKED      "t" if task is currently blocked by children or siblings.
-     CLOCKSUM     The sum of CLOCK intervals in the subtree.  ‘org-clock-sum’
-                  must be run first to compute the values in the current buffer.
-     CLOCKSUM_T   The sum of CLOCK intervals in the subtree for today.
-                  ‘org-clock-sum-today’ must be run first to compute the
-                  values in the current buffer.
-     CLOSED       When was this entry closed?
-     DEADLINE     The deadline time string, without the angular brackets.
-     FILE         The filename the entry is located in.
-     ITEM         The headline of the entry.
-     PRIORITY     The priority of the entry, a string with a single letter.
-     SCHEDULED    The scheduling timestamp, without the angular brackets.
-     TAGS         The tags defined directly in the headline.
-     TIMESTAMP    The first keyword-less timestamp in the entry.
-     TIMESTAMP_IA The first inactive timestamp in the entry.
-     TODO         The TODO keyword of the entry.
-
-
-File: org,  Node: Property searches,  Next: Property inheritance,  Prev: Special properties,  Up: Properties and columns
-
-7.3 Property searches
-=====================
-
-To create sparse trees and special lists with selection based on
-properties, the same commands are used as for tag searches (*note Tag
-searches::).
-
-‘C-c / m  or  C-c \     (org-match-sparse-tree)’
-     Create a sparse tree with all matching entries.  With a ‘C-u’
-     prefix argument, ignore headlines that are not a TODO line.
-‘C-c a m     (org-tags-view)’
-     Create a global list of tag/property matches from all agenda files.
-     *Note Matching tags and properties::.
-‘C-c a M     (org-tags-view)’
-     Create a global list of tag matches from all agenda files, but
-     check only TODO items and force checking of subitems (see the
-     option ‘org-tags-match-list-sublevels’).
-
-   The syntax for the search string is described in *note Matching tags
-and properties::.
-
-   There is also a special command for creating sparse trees based on a
-single property:
-
-‘C-c / p’
-     Create a sparse tree based on the value of a property.  This first
-     prompts for the name of a property, and then for a value.  A sparse
-     tree is created with all entries that define this property with the
-     given value.  If you enclose the value in curly braces, it is
-     interpreted as a regular expression and matched against the
-     property values.
-
-
-File: org,  Node: Property inheritance,  Next: Column view,  Prev: Property searches,  Up: Properties and columns
-
-7.4 Property Inheritance
-========================
-
-The outline structure of Org mode documents lends itself to an
-inheritance model of properties: if the parent in a tree has a certain
-property, the children can inherit this property.  Org mode does not
-turn this on by default, because it can slow down property searches
-significantly and is often not needed.  However, if you find inheritance
-useful, you can turn it on by setting the variable
-‘org-use-property-inheritance’.  It may be set to ‘t’ to make all
-properties inherited from the parent, to a list of properties that
-should be inherited, or to a regular expression that matches inherited
-properties.  If a property has the value ‘nil’, this is interpreted as
-an explicit undefine of the property, so that inheritance search will
-stop at this value and return ‘nil’.
-
-   Org mode has a few properties for which inheritance is hard-coded, at
-least for the special applications for which they are used:
-
-‘COLUMNS’
-     The ‘:COLUMNS:’ property defines the format of column view (*note
-     Column view::).  It is inherited in the sense that the level where
-     a ‘:COLUMNS:’ property is defined is used as the starting point for
-     a column view table, independently of the location in the subtree
-     from where columns view is turned on.
-‘CATEGORY’
-     For agenda view, a category set through a ‘:CATEGORY:’ property
-     applies to the entire subtree.
-‘ARCHIVE’
-     For archiving, the ‘:ARCHIVE:’ property may define the archive
-     location for the entire subtree (*note Moving subtrees::).
-‘LOGGING’
-     The ‘LOGGING’ property may define logging settings for an entry or
-     a subtree (*note Tracking TODO state changes::).
-
-
-File: org,  Node: Column view,  Next: Property API,  Prev: Property inheritance,  Up: Properties and columns
-
-7.5 Column view
-===============
-
-A great way to view and edit properties in an outline tree is _column
-view_.  In column view, each outline node is turned into a table row.
-Columns in this table provide access to properties of the entries.  Org
-mode implements columns by overlaying a tabular structure over the
-headline of each item.  While the headlines have been turned into a
-table row, you can still change the visibility of the outline tree.  For
-example, you get a compact table by switching to CONTENTS view (‘S-<TAB>
-S-<TAB>’, or simply ‘c’ while column view is active), but you can still
-open, read, and edit the entry below each headline.  Or, you can switch
-to column view after executing a sparse tree command and in this way get
-a table only for the selected items.  Column view also works in agenda
-buffers (*note Agenda views::) where queries have collected selected
-items, possibly from a number of files.
-
-* Menu:
-
-* Defining columns::            The COLUMNS format property
-* Using column view::           How to create and use column view
-* Capturing column view::       A dynamic block for column view
-
-
-File: org,  Node: Defining columns,  Next: Using column view,  Up: Column view
-
-7.5.1 Defining columns
-----------------------
-
-Setting up a column view first requires defining the columns.  This is
-done by defining a column format line.
-
-* Menu:
-
-* Scope of column definitions::  Where defined, where valid?
-* Column attributes::           Appearance and content of a column
-
-
-File: org,  Node: Scope of column definitions,  Next: Column attributes,  Up: Defining columns
-
-7.5.1.1 Scope of column definitions
-...................................
-
-To define a column format for an entire file, use a line like
-
-     #+COLUMNS: %25ITEM %TAGS %PRIORITY %TODO
-
-   To specify a format that only applies to a specific tree, add a
-‘:COLUMNS:’ property to the top node of that tree, for example:
-
-     ** Top node for columns view
-        :PROPERTIES:
-        :COLUMNS: %25ITEM %TAGS %PRIORITY %TODO
-        :END:
-
-   If a ‘:COLUMNS:’ property is present in an entry, it defines columns
-for the entry itself, and for the entire subtree below it.  Since the
-column definition is part of the hierarchical structure of the document,
-you can define columns on level 1 that are general enough for all
-sublevels, and more specific columns further down, when you edit a
-deeper part of the tree.
-
-
-File: org,  Node: Column attributes,  Prev: Scope of column definitions,  Up: Defining columns
-
-7.5.1.2 Column attributes
-.........................
-
-A column definition sets the attributes of a column.  The general
-definition looks like this:
-
-      %[WIDTH]PROPERTY[(TITLE)][{SUMMARY-TYPE}]
-
-Except for the percent sign and the property name, all items are
-optional.  The individual parts have the following meaning:
-
-     WIDTH           An integer specifying the width of the column in characters.
-                     If omitted, the width will be determined automatically.
-     PROPERTY        The property that should be edited in this column.
-                     Special properties representing meta data are allowed here
-                     as well (*note Special properties::)
-     TITLE           The header text for the column.  If omitted, the property
-                     name is used.
-     {SUMMARY-TYPE}  The summary type.  If specified, the column values for
-                     parent nodes are computed from the children(1).
-                     Supported summary types are:
-                     {+}       Sum numbers in this column.
-                     {+;%.1f}  Like ‘+’, but format result with ‘%.1f’.
-                     {$}       Currency, short for ‘+;%.2f’.
-                     {min}     Smallest number in column.
-                     {max}     Largest number.
-                     {mean}    Arithmetic mean of numbers.
-                     {X}       Checkbox status, ‘[X]’ if all children are ‘[X]’.
-                     {X/}      Checkbox status, ‘[n/m]’.
-                     {X%}      Checkbox status, ‘[n%]’.
-                     {:}       Sum times, HH:MM, plain numbers are
-                     hours(2).
-                     {:min}    Smallest time value in column.
-                     {:max}    Largest time value.
-                     {:mean}   Arithmetic mean of time values.
-                     {@min}    Minimum age(3) (in
-                     days/hours/mins/seconds).
-                     {@max}    Maximum age (in days/hours/mins/seconds).
-                     {@mean}   Arithmetic mean of ages (in days/hours/mins/seconds).
-                     {est+}    Add ‘low-high’ estimates.
-
-   The ‘est+’ summary type requires further explanation.  It is used for
-combining estimates, expressed as ‘low-high’ ranges or plain numbers.
-For example, instead of estimating a particular task will take 5 days,
-you might estimate it as 5–6 days if you’re fairly confident you know
-how much work is required, or 1–10 days if you don’t really know what
-needs to be done.  Both ranges average at 5.5 days, but the first
-represents a more predictable delivery.
-
-   When combining a set of such estimates, simply adding the lows and
-highs produces an unrealistically wide result.  Instead, ‘est+’ adds the
-statistical mean and variance of the sub-tasks, generating a final
-estimate from the sum.  For example, suppose you had ten tasks, each of
-which was estimated at 0.5 to 2 days of work.  Straight addition
-produces an estimate of 5 to 20 days, representing what to expect if
-everything goes either extremely well or extremely poorly.  In contrast,
-‘est+’ estimates the full job more realistically, at 10–15 days.
-
-   Numbers are right-aligned when a format specifier with an explicit
-width like ‘%5d’ or ‘%5.1f’ is used.
-
-   You can also define custom summary types by setting
-‘org-columns-summary-types’, which see.
-
-   Here is an example for a complete columns definition, along with
-allowed values.
-
-     :COLUMNS:  %25ITEM %9Approved(Approved?){X} %Owner %11Status \(4)
-                        %10Time_Estimate{:} %CLOCKSUM %CLOCKSUM_T
-     :Owner_ALL:    Tammy Mark Karl Lisa Don
-     :Status_ALL:   "In progress" "Not started yet" "Finished" ""
-     :Approved_ALL: "[ ]" "[X]"
-
-The first column, ‘%25ITEM’, means the first 25 characters of the item
-itself, i.e., of the headline.  You probably always should start the
-column definition with the ‘ITEM’ specifier.  The other specifiers
-create columns ‘Owner’ with a list of names as allowed values, for
-‘Status’ with four different possible values, and for a checkbox field
-‘Approved’.  When no width is given after the ‘%’ character, the column
-will be exactly as wide as it needs to be in order to fully display all
-values.  The ‘Approved’ column does have a modified title (‘Approved?’,
-with a question mark).  Summaries will be created for the
-‘Time_Estimate’ column by adding time duration expressions like HH:MM,
-and for the ‘Approved’ column, by providing an ‘[X]’ status if all
-children have been checked.  The ‘CLOCKSUM’ and ‘CLOCKSUM_T’ columns are
-special, they lists the sums of CLOCK intervals in the subtree, either
-for all clocks or just for today.
-
-   ---------- Footnotes ----------
-
-   (1) If more than one summary type apply to the property, the parent
-values are computed according to the first of them.
-
-   (2) A time can also be a duration, using effort modifiers defined in
-‘org-effort-durations’, e.g., ‘3d 1h’.  If any value in the column is as
-such, the summary will also be an effort duration.
-
-   (3) An age is defined as a duration since a given time-stamp (*note
-Timestamps::).  It can also be expressed as days, hours, minutes and
-seconds, identified by ‘d’, ‘h’, ‘m’ and ‘s’ suffixes, all mandatory,
-e.g., ‘0d 13h 0m 10s’.
-
-   (4) Please note that the COLUMNS definition must be on a single
-line—it is wrapped here only because of formatting constraints.
-
-
-File: org,  Node: Using column view,  Next: Capturing column view,  Prev: Defining columns,  Up: Column view
-
-7.5.2 Using column view
------------------------
-
-     Turning column view on and off
-     ..............................
-
-‘C-c C-x C-c     (org-columns)’
-     Turn on column view.  If the cursor is before the first headline in
-     the file, or the function called with the universal prefix
-     argument, column view is turned on for the entire file, using the
-     ‘#+COLUMNS’ definition.  If the cursor is somewhere inside the
-     outline, this command searches the hierarchy, up from point, for a
-     ‘:COLUMNS:’ property that defines a format.  When one is found, the
-     column view table is established for the tree starting at the entry
-     that contains the ‘:COLUMNS:’ property.  If no such property is
-     found, the format is taken from the ‘#+COLUMNS’ line or from the
-     variable ‘org-columns-default-format’, and column view is
-     established for the current entry and its subtree.
-‘r     (org-columns-redo)’
-     Recreate the column view, to include recent changes made in the
-     buffer.
-‘g     (org-columns-redo)’
-     Same as ‘r’.
-‘q     (org-columns-quit)’
-     Exit column view.
-
-     Editing values
-     ..............
-
-‘<LEFT> <RIGHT> <UP> <DOWN>’
-     Move through the column view from field to field.
-‘S-<LEFT>/<RIGHT>’
-     Switch to the next/previous allowed value of the field.  For this,
-     you have to have specified allowed values for a property.
-‘1..9,0’
-     Directly select the Nth allowed value, ‘0’ selects the 10th value.
-‘n     (org-columns-next-allowed-value)’
-‘p     (org-columns-previous-allowed-value)’
-     Same as ‘S-<LEFT>/<RIGHT>’
-‘e     (org-columns-edit-value)’
-     Edit the property at point.  For the special properties, this will
-     invoke the same interface that you normally use to change that
-     property.  For example, when editing a TAGS property, the tag
-     completion or fast selection interface will pop up.
-‘C-c C-c     (org-columns-set-tags-or-toggle)’
-     When there is a checkbox at point, toggle it.
-‘v     (org-columns-show-value)’
-     View the full value of this property.  This is useful if the width
-     of the column is smaller than that of the value.
-‘a     (org-columns-edit-allowed)’
-     Edit the list of allowed values for this property.  If the list is
-     found in the hierarchy, the modified value is stored there.  If no
-     list is found, the new value is stored in the first entry that is
-     part of the current column view.
-
-     Modifying the table structure
-     .............................
-
-‘<     (org-columns-narrow)’
-‘>     (org-columns-widen)’
-     Make the column narrower/wider by one character.
-‘S-M-<RIGHT>     (org-columns-new)’
-     Insert a new column, to the left of the current column.
-‘S-M-<LEFT>     (org-columns-delete)’
-     Delete the current column.
-
-
-File: org,  Node: Capturing column view,  Prev: Using column view,  Up: Column view
-
-7.5.3 Capturing column view
----------------------------
-
-Since column view is just an overlay over a buffer, it cannot be
-exported or printed directly.  If you want to capture a column view, use
-a ‘columnview’ dynamic block (*note Dynamic blocks::).  The frame of
-this block looks like this:
-
-     * The column view
-     #+BEGIN: columnview :hlines 1 :id "label"
-
-     #+END:
-
-This dynamic block has the following parameters:
-
-‘:id’
-     This is the most important parameter.  Column view is a feature
-     that is often localized to a certain (sub)tree, and the capture
-     block might be at a different location in the file.  To identify
-     the tree whose view to capture, you can use 4 values:
-          local     use the tree in which the capture block is located
-          global    make a global view, including all headings in the file
-          "file:PATH-TO-FILE"
-                    run column view at the top of this file
-          "ID"      call column view in the tree that has an ‘:ID:’
-                    property with the value label.  You can use
-                    ‘M-x org-id-copy <RET>’ to create a globally unique ‘ID’ for
-                    the current entry and copy it to the kill-ring.
-‘:hlines’
-     When ‘t’, insert an hline after every line.  When a number N,
-     insert an hline before each headline with level ‘<= N’.
-‘:vlines’
-     When set to ‘t’, force column groups to get vertical lines.
-‘:maxlevel’
-     When set to a number, don’t capture entries below this level.
-‘:skip-empty-rows’
-     When set to ‘t’, skip rows where the only non-empty specifier of
-     the column view is ‘ITEM’.
-‘:indent’
-     When non-‘nil’, indent each ‘ITEM’ field according to its level.
-
-The following commands insert or update the dynamic block:
-
-‘C-c C-x i     (org-insert-columns-dblock)’
-     Insert a dynamic block capturing a column view.  You will be
-     prompted for the scope or ‘ID’ of the view.
-‘C-c C-c  or  C-c C-x C-u     (org-dblock-update)’
-     Update dynamic block at point.
-‘C-u C-c C-x C-u     (org-update-all-dblocks)’
-     Update all dynamic blocks (*note Dynamic blocks::).  This is useful
-     if you have several clock table blocks, column-capturing blocks or
-     other dynamic blocks in a buffer.
-
-   You can add formulas to the column view table and you may add
-plotting instructions in front of the table—these will survive an update
-of the block.  If there is a ‘#+TBLFM:’ after the table, the table will
-actually be recalculated automatically after an update.
-
-   An alternative way to capture and process property values into a
-table is provided by Eric Schulte’s ‘org-collector.el’ which is a
-contributed package(1).  It provides a general API to collect properties
-from entries in a certain scope, and arbitrary Lisp expressions to
-process these values before inserting them into a table or a dynamic
-block.
-
-   ---------- Footnotes ----------
-
-   (1) Contributed packages are not part of Emacs, but are distributed
-with the main distribution of Org (visit <https://orgmode.org>).
-
-
-File: org,  Node: Property API,  Prev: Column view,  Up: Properties and columns
-
-7.6 The Property API
-====================
-
-There is a full API for accessing and changing properties.  This API can
-be used by Emacs Lisp programs to work with properties and to implement
-features based on them.  For more information see *note Using the
-property API::.
-
-
-File: org,  Node: Dates and times,  Next: Capture - Refile - Archive,  Prev: Properties and columns,  Up: Top
-
-8 Dates and times
-*****************
-
-To assist project planning, TODO items can be labeled with a date and/or
-a time.  The specially formatted string carrying the date and time
-information is called a _timestamp_ in Org mode.  This may be a little
-confusing because timestamp is often used to indicate when something was
-created or last changed.  However, in Org mode this term is used in a
-much wider sense.
-
-* Menu:
-
-* Timestamps::                  Assigning a time to a tree entry
-* Creating timestamps::         Commands which insert timestamps
-* Deadlines and scheduling::    Planning your work
-* Clocking work time::          Tracking how long you spend on a task
-* Effort estimates::            Planning work effort in advance
-* Timers::                      Notes with a running timer
-
-
-File: org,  Node: Timestamps,  Next: Creating timestamps,  Up: Dates and times
-
-8.1 Timestamps, deadlines, and scheduling
-=========================================
-
-A timestamp is a specification of a date (possibly with a time or a
-range of times) in a special format, either ‘<2003-09-16 Tue>’(1) or
-‘<2003-09-16 Tue 09:39>’ or ‘<2003-09-16 Tue 12:00-12:30>’(2).  A
-timestamp can appear anywhere in the headline or body of an Org tree
-entry.  Its presence causes entries to be shown on specific dates in the
-agenda (*note Weekly/daily agenda::).  We distinguish:
-
-PLAIN TIMESTAMP; EVENT; APPOINTMENT
-     A simple timestamp just assigns a date/time to an item.  This is
-     just like writing down an appointment or event in a paper agenda.
-     In the agenda display, the headline of an entry associated with a
-     plain timestamp will be shown exactly on that date.
-
-          * Meet Peter at the movies
-            <2006-11-01 Wed 19:15>
-          * Discussion on climate change
-            <2006-11-02 Thu 20:00-22:00>
-
-TIMESTAMP WITH REPEATER INTERVAL
-     A timestamp may contain a _repeater interval_, indicating that it
-     applies not only on the given date, but again and again after a
-     certain interval of N days (d), weeks (w), months (m), or years
-     (y).  The following will show up in the agenda every Wednesday:
-
-          * Pick up Sam at school
-            <2007-05-16 Wed 12:30 +1w>
-
-DIARY-STYLE SEXP ENTRIES
-     For more complex date specifications, Org mode supports using the
-     special sexp diary entries implemented in the Emacs calendar/diary
-     package(3).  For example with optional time
-
-          * 22:00-23:00 The nerd meeting on every 2nd Thursday of the month
-            <%%(diary-float t 4 2)>
-
-TIME/DATE RANGE
-     Two timestamps connected by ‘--’ denote a range.  The headline will
-     be shown on the first and last day of the range, and on any dates
-     that are displayed and fall in the range.  Here is an example:
-
-          ** Meeting in Amsterdam
-             <2004-08-23 Mon>--<2004-08-26 Thu>
-
-INACTIVE TIMESTAMP
-     Just like a plain timestamp, but with square brackets instead of
-     angular ones.  These timestamps are inactive in the sense that they
-     do _not_ trigger an entry to show up in the agenda.
-
-          * Gillian comes late for the fifth time
-            [2006-11-01 Wed]
-
-   ---------- Footnotes ----------
-
-   (1) In this simplest form, the day name is optional when you type the
-date yourself.  However, any dates inserted or modified by Org will add
-that day name, for reading convenience.
-
-   (2) This is inspired by the standard ISO 8601 date/time format.  To
-use an alternative format, see *note Custom time format::.
-
-   (3) When working with the standard diary sexp functions, you need to
-be very careful with the order of the arguments.  That order depends
-evilly on the variable ‘calendar-date-style’ (or, for older Emacs
-versions, ‘european-calendar-style’).  For example, to specify a date
-December 1, 2005, the call might look like ‘(diary-date 12 1 2005)’ or
-‘(diary-date 1 12 2005)’ or ‘(diary-date 2005 12 1)’, depending on the
-settings.  This has been the source of much confusion.  Org mode users
-can resort to special versions of these functions like ‘org-date’ or
-‘org-anniversary’.  These work just like the corresponding ‘diary-’
-functions, but with stable ISO order of arguments (year, month, day)
-wherever applicable, independent of the value of ‘calendar-date-style’.
-
-
-File: org,  Node: Creating timestamps,  Next: Deadlines and scheduling,  Prev: Timestamps,  Up: Dates and times
-
-8.2 Creating timestamps
-=======================
-
-For Org mode to recognize timestamps, they need to be in the specific
-format.  All commands listed below produce timestamps in the correct
-format.
-
-‘C-c .     (org-time-stamp)’
-     Prompt for a date and insert a corresponding timestamp.  When the
-     cursor is at an existing timestamp in the buffer, the command is
-     used to modify this timestamp instead of inserting a new one.  When
-     this command is used twice in succession, a time range is inserted.
-‘C-c !     (org-time-stamp-inactive)’
-     Like ‘C-c .’, but insert an inactive timestamp that will not cause
-     an agenda entry.
-‘C-u C-c .’
-‘C-u C-c !’
-     Like ‘C-c .’ and ‘C-c !’, but use the alternative format which
-     contains date and time.  The default time can be rounded to
-     multiples of 5 minutes, see the option
-     ‘org-time-stamp-rounding-minutes’.
-‘C-c C-c’
-     Normalize timestamp, insert/fix day name if missing or wrong.
-‘C-c <     (org-date-from-calendar)’
-     Insert a timestamp corresponding to the cursor date in the
-     Calendar.
-‘C-c >     (org-goto-calendar)’
-     Access the Emacs calendar for the current date.  If there is a
-     timestamp in the current line, go to the corresponding date
-     instead.
-‘C-c C-o     (org-open-at-point)’
-     Access the agenda for the date given by the timestamp or -range at
-     point (*note Weekly/daily agenda::).
-‘S-<LEFT>     (org-timestamp-down-day)’
-‘S-<RIGHT>     (org-timestamp-up-day)’
-     Change date at cursor by one day.  These key bindings conflict with
-     shift-selection and related modes (*note Conflicts::).
-‘S-<UP>     (org-timestamp-up)’
-‘S-<DOWN>     (org-timestamp-down-down)’
-     Change the item under the cursor in a timestamp.  The cursor can be
-     on a year, month, day, hour or minute.  When the timestamp contains
-     a time range like ‘15:30-16:30’, modifying the first time will also
-     shift the second, shifting the time block with constant length.  To
-     change the length, modify the second time.  Note that if the cursor
-     is in a headline and not at a timestamp, these same keys modify the
-     priority of an item.  (*note Priorities::).  The key bindings also
-     conflict with shift-selection and related modes (*note
-     Conflicts::).
-‘C-c C-y     (org-evaluate-time-range)’
-     Evaluate a time range by computing the difference between start and
-     end.  With a prefix argument, insert result after the time range
-     (in a table: into the following column).
-
-* Menu:
-
-* The date/time prompt::        How Org mode helps you entering date and time
-* Custom time format::          Making dates look different
-
-
-File: org,  Node: The date/time prompt,  Next: Custom time format,  Up: Creating timestamps
-
-8.2.1 The date/time prompt
---------------------------
-
-When Org mode prompts for a date/time, the default is shown in default
-date/time format, and the prompt therefore seems to ask for a specific
-format.  But it will in fact accept date/time information in a variety
-of formats.  Generally, the information should start at the beginning of
-the string.  Org mode will find whatever information is in there and
-derive anything you have not specified from the _default date and time_.
-The default is usually the current date and time, but when modifying an
-existing timestamp, or when entering the second stamp of a range, it is
-taken from the stamp in the buffer.  When filling in information, Org
-mode assumes that most of the time you will want to enter a date in the
-future: if you omit the month/year and the given day/month is before
-today, it will assume that you mean a future date(1).  If the date has
-been automatically shifted into the future, the time prompt will show
-this with ‘(=>F).’
-
-   For example, let’s assume that today is June 13, 2006.  Here is how
-various inputs will be interpreted, the items filled in by Org mode are
-in bold.
-
-     3-2-5         ⇒ 2003-02-05
-     2/5/3         ⇒ 2003-02-05
-     14            ⇒ 2006-06-14
-     12            ⇒ 2006-07-12
-     2/5           ⇒ 2007-02-05
-     Fri           ⇒ nearest Friday after the default date
-     sep 15        ⇒ 2006-09-15
-     feb 15        ⇒ 2007-02-15
-     sep 12 9      ⇒ 2009-09-12
-     12:45         ⇒ 2006-06-13 12:45
-     22 sept 0:34  ⇒ 2006-09-22 00:34
-     w4            ⇒ ISO week four of the current year 2006
-     2012 w4 fri   ⇒ Friday of ISO week 4 in 2012
-     2012-w04-5    ⇒ Same as above
-
-   Furthermore you can specify a relative date by giving, as the _first_
-thing in the input: a plus/minus sign, a number and a letter ([hdwmy])
-to indicate change in hours, days, weeks, months, or years.  With a
-single plus or minus, the date is always relative to today.  With a
-double plus or minus, it is relative to the default date.  If instead of
-a single letter, you use the abbreviation of day name, the date will be
-the Nth such day, e.g.:
-
-     +0            ⇒ today
-     .             ⇒ today
-     +4d           ⇒ four days from today
-     +4            ⇒ same as above
-     +2w           ⇒ two weeks from today
-     ++5           ⇒ five days from default date
-     +2tue         ⇒ second Tuesday from now
-     -wed          ⇒ last Wednesday
-
-   The function understands English month and weekday abbreviations.  If
-you want to use unabbreviated names and/or other languages, configure
-the variables ‘parse-time-months’ and ‘parse-time-weekdays’.
-
-   Not all dates can be represented in a given Emacs implementation.  By
-default Org mode forces dates into the compatibility range 1970–2037
-which works on all Emacs implementations.  If you want to use dates
-outside of this range, read the docstring of the variable
-‘org-read-date-force-compatible-dates’.
-
-   You can specify a time range by giving start and end times or by
-giving a start time and a duration (in HH:MM format).  Use one or two
-dash(es) as the separator in the former case and use ’+’ as the
-separator in the latter case, e.g.:
-
-     11am-1:15pm    ⇒ 11:00-13:15
-     11am--1:15pm   ⇒ same as above
-     11am+2:15      ⇒ same as above
-
-   Parallel to the minibuffer prompt, a calendar is popped up(2).  When
-you exit the date prompt, either by clicking on a date in the calendar,
-or by pressing <RET>, the date selected in the calendar will be combined
-with the information entered at the prompt.  You can control the
-calendar fully from the minibuffer:
-
-     <RET>              Choose date at cursor in calendar.
-     mouse-1            Select date by clicking on it.
-     S-<RIGHT>/<LEFT>   One day forward/backward.
-     S-<DOWN>/<UP>      One week forward/backward.
-     M-S-<RIGHT>/<LEFT> One month forward/backward.
-     > / <              Scroll calendar forward/backward by one month.
-     M-v / C-v          Scroll calendar forward/backward by 3 months.
-     M-S-<DOWN>/<UP>    Scroll calendar forward/backward by one year.
-
-   The actions of the date/time prompt may seem complex, but I assure
-you they will grow on you, and you will start getting annoyed by pretty
-much any other way of entering a date/time out there.  To help you
-understand what is going on, the current interpretation of your input
-will be displayed live in the minibuffer(3).
-
-   ---------- Footnotes ----------
-
-   (1) See the variable ‘org-read-date-prefer-future’.  You may set that
-variable to the symbol ‘time’ to even make a time before now shift the
-date to tomorrow.
-
-   (2) If you don’t need/want the calendar, configure the variable
-‘org-popup-calendar-for-date-prompt’.
-
-   (3) If you find this distracting, turn the display off with
-‘org-read-date-display-live’.
-
-
-File: org,  Node: Custom time format,  Prev: The date/time prompt,  Up: Creating timestamps
-
-8.2.2 Custom time format
-------------------------
-
-Org mode uses the standard ISO notation for dates and times as it is
-defined in ISO 8601.  If you cannot get used to this and require another
-representation of date and time to keep you happy, you can get it by
-customizing the options ‘org-display-custom-times’ and
-‘org-time-stamp-custom-formats’.
-
-‘C-c C-x C-t     (org-toggle-time-stamp-overlays)’
-     Toggle the display of custom formats for dates and times.
-
-Org mode needs the default format for scanning, so the custom date/time
-format does not _replace_ the default format—instead it is put _over_
-the default format using text properties.  This has the following
-consequences:
-   • You cannot place the cursor onto a timestamp anymore, only before
-     or after.
-   • The ‘S-<UP>/<DOWN>’ keys can no longer be used to adjust each
-     component of a timestamp.  If the cursor is at the beginning of the
-     stamp, ‘S-<UP>/<DOWN>’ will change the stamp by one day, just like
-     ‘S-<LEFT>/<RIGHT>’.  At the end of the stamp, the time will be
-     changed by one minute.
-   • If the timestamp contains a range of clock times or a repeater,
-     these will not be overlaid, but remain in the buffer as they were.
-   • When you delete a timestamp character-by-character, it will only
-     disappear from the buffer after _all_ (invisible) characters
-     belonging to the ISO timestamp have been removed.
-   • If the custom timestamp format is longer than the default and you
-     are using dates in tables, table alignment will be messed up.  If
-     the custom format is shorter, things do work as expected.
-
-
-File: org,  Node: Deadlines and scheduling,  Next: Clocking work time,  Prev: Creating timestamps,  Up: Dates and times
-
-8.3 Deadlines and scheduling
-============================
-
-A timestamp may be preceded by special keywords to facilitate planning.
-Both the timestamp and the keyword have to be positioned immediately
-after the task they refer to.
-
-DEADLINE
-
-     Meaning: the task (most likely a TODO item, though not necessarily)
-     is supposed to be finished on that date.
-
-     On the deadline date, the task will be listed in the agenda.  In
-     addition, the agenda for _today_ will carry a warning about the
-     approaching or missed deadline, starting
-     ‘org-deadline-warning-days’ before the due date, and continuing
-     until the entry is marked DONE.  An example:
-
-          *** TODO write article about the Earth for the Guide
-              DEADLINE: <2004-02-29 Sun>
-              The editor in charge is [[bbdb:Ford Prefect]]
-
-     You can specify a different lead time for warnings for a specific
-     deadline using the following syntax.  Here is an example with a
-     warning period of 5 days ‘DEADLINE: <2004-02-29 Sun -5d>’.  This
-     warning is deactivated if the task gets scheduled and you set
-     ‘org-agenda-skip-deadline-prewarning-if-scheduled’ to ‘t’.
-
-SCHEDULED
-
-     Meaning: you are planning to start working on that task on the
-     given date.
-
-     The headline will be listed under the given date(1).  In addition,
-     a reminder that the scheduled date has passed will be present in
-     the compilation for _today_, until the entry is marked DONE, i.e.,
-     the task will automatically be forwarded until completed.
-
-          *** TODO Call Trillian for a date on New Years Eve.
-              SCHEDULED: <2004-12-25 Sat>
-
-     If you want to _delay_ the display of this task in the agenda, use
-     ‘SCHEDULED: <2004-12-25 Sat -2d>’: the task is still scheduled on
-     the 25th but will appear two days later.  In case the task contains
-     a repeater, the delay is considered to affect all occurrences; if
-     you want the delay to only affect the first scheduled occurrence of
-     the task, use ‘--2d’ instead.  See ‘org-scheduled-delay-days’ and
-     ‘org-agenda-skip-scheduled-delay-if-deadline’ for details on how to
-     control this globally or per agenda.
-
-     Important: Scheduling an item in Org mode should not be understood
-     in the same way that we understand scheduling a meeting.  Setting a
-     date for a meeting is just a simple appointment, you should mark
-     this entry with a simple plain timestamp, to get this item shown on
-     the date where it applies.  This is a frequent misunderstanding by
-     Org users.  In Org mode, scheduling means setting a date when you
-     want to start working on an action item.
-
-   You may use timestamps with repeaters in scheduling and deadline
-entries.  Org mode will issue early and late warnings based on the
-assumption that the timestamp represents the nearest instance of the
-repeater.  However, the use of diary sexp entries like ‘<%%(diary-float
-t 42)>’ in scheduling and deadline timestamps is limited.  Org mode does
-not know enough about the internals of each sexp function to issue early
-and late warnings.  However, it will show the item on each day where the
-sexp entry matches.
-
-* Menu:
-
-* Inserting deadline/schedule::  Planning items
-* Repeated tasks::              Items that show up again and again
-
-   ---------- Footnotes ----------
-
-   (1) It will still be listed on that date after it has been marked
-DONE.  If you don’t like this, set the variable
-‘org-agenda-skip-scheduled-if-done’.
-
-
-File: org,  Node: Inserting deadline/schedule,  Next: Repeated tasks,  Up: Deadlines and scheduling
-
-8.3.1 Inserting deadlines or schedules
---------------------------------------
-
-The following commands allow you to quickly insert a deadline or to
-schedule an item:
-
-‘C-c C-d     (org-deadline)’
-     Insert ‘DEADLINE’ keyword along with a stamp.  Any CLOSED timestamp
-     will be removed.  When called with a prefix arg, an existing
-     deadline will be removed from the entry.  Depending on the variable
-     ‘org-log-redeadline’(1), a note will be taken when changing an
-     existing deadline.
-
-‘C-c C-s     (org-schedule)’
-     Insert ‘SCHEDULED’ keyword along with a stamp.  Any CLOSED
-     timestamp will be removed.  When called with a prefix argument,
-     remove the scheduling date from the entry.  Depending on the
-     variable ‘org-log-reschedule’(2), a note will be taken when
-     changing an existing scheduling time.
-‘C-c / d     (org-check-deadlines)’
-     Create a sparse tree with all deadlines that are either past-due,
-     or which will become due within ‘org-deadline-warning-days’.  With
-     ‘C-u’ prefix, show all deadlines in the file.  With a numeric
-     prefix, check that many days.  For example, ‘C-1 C-c / d’ shows all
-     deadlines due tomorrow.
-‘C-c / b     (org-check-before-date)’
-     Sparse tree for deadlines and scheduled items before a given date.
-‘C-c / a     (org-check-after-date)’
-     Sparse tree for deadlines and scheduled items after a given date.
-
-   Note that ‘org-schedule’ and ‘org-deadline’ supports setting the date
-by indicating a relative time: e.g., +1d will set the date to the next
-day after today, and –1w will set the date to the previous week before
-any current timestamp.
-
-   ---------- Footnotes ----------
-
-   (1) with corresponding ‘#+STARTUP’ keywords ‘logredeadline’,
-‘lognoteredeadline’, and ‘nologredeadline’
-
-   (2) with corresponding ‘#+STARTUP’ keywords ‘logreschedule’,
-‘lognotereschedule’, and ‘nologreschedule’
-
-
-File: org,  Node: Repeated tasks,  Prev: Inserting deadline/schedule,  Up: Deadlines and scheduling
-
-8.3.2 Repeated tasks
---------------------
-
-Some tasks need to be repeated again and again.  Org mode helps to
-organize such tasks using a so-called repeater in a ‘DEADLINE’,
-‘SCHEDULED’, or plain timestamp.  In the following example
-     ** TODO Pay the rent
-        DEADLINE: <2005-10-01 Sat +1m>
-the ‘+1m’ is a repeater; the intended interpretation is that the task
-has a deadline on <2005-10-01> and repeats itself every (one) month
-starting from that time.  You can use yearly, monthly, weekly, daily and
-hourly repeat cookies by using the ‘y/w/m/d/h’ letters.  If you need
-both a repeater and a special warning period in a deadline entry, the
-repeater should come first and the warning period last: ‘DEADLINE:
-<2005-10-01 Sat +1m -3d>’.
-
-   Deadlines and scheduled items produce entries in the agenda when they
-are over-due, so it is important to be able to mark such an entry as
-completed once you have done so.  When you mark a ‘DEADLINE’ or a
-‘SCHEDULED’ with the TODO keyword DONE, it will no longer produce
-entries in the agenda.  The problem with this is, however, that then
-also the _next_ instance of the repeated entry will not be active.  Org
-mode deals with this in the following way: When you try to mark such an
-entry DONE (using ‘C-c C-t’), it will shift the base date of the
-repeating timestamp by the repeater interval, and immediately set the
-entry state back to TODO(1). In the example above, setting the state to
-DONE would actually switch the date like this:
-
-     ** TODO Pay the rent
-        DEADLINE: <2005-11-01 Tue +1m>
-
-   To mark a task with a repeater as ‘DONE’, use ‘C-- 1 C-c C-t’ (i.e.,
-‘org-todo’ with a numeric prefix argument of -1.)
-
-   A timestamp(2) will be added under the deadline, to keep a record
-that you actually acted on the previous instance of this deadline.
-
-   As a consequence of shifting the base date, this entry will no longer
-be visible in the agenda when checking past dates, but all future
-instances will be visible.
-
-   With the ‘+1m’ cookie, the date shift will always be exactly one
-month.  So if you have not paid the rent for three months, marking this
-entry DONE will still keep it as an overdue deadline.  Depending on the
-task, this may not be the best way to handle it.  For example, if you
-forgot to call your father for 3 weeks, it does not make sense to call
-him 3 times in a single day to make up for it.  Finally, there are tasks
-like changing batteries which should always repeat a certain time after
-the last time you did it.  For these tasks, Org mode has special
-repeaters ‘++’ and ‘.+’.  For example:
-
-     ** TODO Call Father
-        DEADLINE: <2008-02-10 Sun ++1w>
-        Marking this DONE will shift the date by at least one week,
-        but also by as many weeks as it takes to get this date into
-        the future.  However, it stays on a Sunday, even if you called
-        and marked it done on Saturday.
-     ** TODO Empty kitchen trash
-        DEADLINE: <2008-02-08 Fri 20:00 ++1d>
-        Marking this DONE will shift the date by at least one day, and
-        also by as many days as it takes to get the timestamp into the
-        future.  Since there is a time in the timestamp, the next
-        deadline in the future will be on today's date if you
-        complete the task before 20:00.
-     ** TODO Check the batteries in the smoke detectors
-        DEADLINE: <2005-11-01 Tue .+1m>
-        Marking this DONE will shift the date to one month after
-        today.
-
-   You may have both scheduling and deadline information for a specific
-task.  If the repeater is set for the scheduling information only, you
-probably want the repeater to be ignored after the deadline.  If so, set
-the variable ‘org-agenda-skip-scheduled-if-deadline-is-shown’ to
-‘repeated-after-deadline’.  However, any scheduling information without
-a repeater is no longer relevant once the task is done, and thus,
-removed upon repeating the task.  If you want both scheduling and
-deadline information to repeat after the same interval, set the same
-repeater for both timestamps.
-
-   An alternative to using a repeater is to create a number of copies of
-a task subtree, with dates shifted in each copy.  The command ‘C-c C-x
-c’ was created for this purpose, it is described in *note Structure
-editing::.
-
-   ---------- Footnotes ----------
-
-   (1) In fact, the target state is taken from, in this sequence, the
-‘REPEAT_TO_STATE’ property or the variable ‘org-todo-repeat-to-state’.
-If neither of these is specified, the target state defaults to the first
-state of the TODO state sequence.
-
-   (2) You can change this using the option ‘org-log-repeat’, or the
-‘#+STARTUP’ options ‘logrepeat’, ‘lognoterepeat’, and ‘nologrepeat’.
-With ‘lognoterepeat’, you will also be prompted for a note.
-
-
-File: org,  Node: Clocking work time,  Next: Effort estimates,  Prev: Deadlines and scheduling,  Up: Dates and times
-
-8.4 Clocking work time
-======================
-
-Org mode allows you to clock the time you spend on specific tasks in a
-project.  When you start working on an item, you can start the clock.
-When you stop working on that task, or when you mark the task done, the
-clock is stopped and the corresponding time interval is recorded.  It
-also computes the total time spent on each subtree(1) of a project.  And
-it remembers a history or tasks recently clocked, so that you can jump
-quickly between a number of tasks absorbing your time.
-
-   To save the clock history across Emacs sessions, use
-     (setq org-clock-persist 'history)
-     (org-clock-persistence-insinuate)
-   When you clock into a new task after resuming Emacs, the incomplete
-clock(2) will be found (*note Resolving idle time::) and you will be
-prompted about what to do with it.
-
-* Menu:
-
-* Clocking commands::           Starting and stopping a clock
-* The clock table::             Detailed reports
-* Resolving idle time::         Resolving time when you’ve been idle
-
-   ---------- Footnotes ----------
-
-   (1) Clocking only works if all headings are indented with less than
-30 stars.  This is a hardcoded limitation of ‘lmax’ in ‘org-clock-sum’.
-
-   (2) To resume the clock under the assumption that you have worked on
-this task while outside Emacs, use ‘(setq org-clock-persist t)’.
-
-
-File: org,  Node: Clocking commands,  Next: The clock table,  Up: Clocking work time
-
-8.4.1 Clocking commands
------------------------
-
-‘C-c C-x C-i     (org-clock-in)’
-     !Start the clock on the current item (clock-in).  This inserts the
-     ‘CLOCK’ keyword together with a timestamp.  If this is not the
-     first clocking of this item, the multiple ‘CLOCK’ lines will be
-     wrapped into a ‘:LOGBOOK:’ drawer (see also the variable
-     ‘org-clock-into-drawer’).  You can also overrule the setting of
-     this variable for a subtree by setting a ‘CLOCK_INTO_DRAWER’ or
-     ‘LOG_INTO_DRAWER’ property.  When called with a ‘C-u’ prefix
-     argument, select the task from a list of recently clocked tasks.
-     With two ‘C-u C-u’ prefixes, clock into the task at point and mark
-     it as the default task; the default task will then always be
-     available with letter ‘d’ when selecting a clocking task.  With
-     three ‘C-u C-u C-u’ prefixes, force continuous clocking by starting
-     the clock when the last clock stopped.
-     While the clock is running, the current clocking time is shown in
-     the mode line, along with the title of the task.  The clock time
-     shown will be all time ever clocked for this task and its children.
-     If the task has an effort estimate (*note Effort estimates::), the
-     mode line displays the current clocking time against it(1) If the
-     task is a repeating one (*note Repeated tasks::), only the time
-     since the last reset of the task (2) will be shown.  More control
-     over what time is shown can be exercised with the
-     ‘CLOCK_MODELINE_TOTAL’ property.  It may have the values ‘current’
-     to show only the current clocking instance, ‘today’ to show all
-     time clocked on this task today (see also the variable
-     ‘org-extend-today-until’), ‘all’ to include all time, or ‘auto’
-     which is the default(3).
-     Clicking with ‘mouse-1’ onto the mode line entry will pop up a menu
-     with clocking options.
-‘C-c C-x C-o     (org-clock-out)’
-     Stop the clock (clock-out).  This inserts another timestamp at the
-     same location where the clock was last started.  It also directly
-     computes the resulting time and inserts it after the time range as
-     ‘=> HH:MM’.  See the variable ‘org-log-note-clock-out’ for the
-     possibility to record an additional note together with the
-     clock-out timestamp(4).
-‘C-c C-x C-x     (org-clock-in-last)’
-     Reclock the last clocked task.  With one ‘C-u’ prefix argument,
-     select the task from the clock history.  With two ‘C-u’ prefixes,
-     force continuous clocking by starting the clock when the last clock
-     stopped.
-‘C-c C-x C-e     (org-clock-modify-effort-estimate)’
-     Update the effort estimate for the current clock task.
-‘C-c C-c  or  C-c C-y     (org-evaluate-time-range)’
-     Recompute the time interval after changing one of the timestamps.
-     This is only necessary if you edit the timestamps directly.  If you
-     change them with ‘S-<cursor>’ keys, the update is automatic.
-‘C-S-<up/down>     (org-clock-timestamps-up/down)’
-     On ‘CLOCK’ log lines, increase/decrease both timestamps so that the
-     clock duration keeps the same.
-‘S-M-<up/down>     (org-timestamp-up/down)’
-     On ‘CLOCK’ log lines, increase/decrease the timestamp at point and
-     the one of the previous (or the next clock) timestamp by the same
-     duration.  For example, if you hit ‘S-M-<UP>’ to increase a
-     clocked-out timestamp by five minutes, then the clocked-in
-     timestamp of the next clock will be increased by five minutes.
-‘C-c C-t     (org-todo)’
-     Changing the TODO state of an item to DONE automatically stops the
-     clock if it is running in this same item.
-‘C-c C-x C-q     (org-clock-cancel)’
-     Cancel the current clock.  This is useful if a clock was started by
-     mistake, or if you ended up working on something else.
-‘C-c C-x C-j     (org-clock-goto)’
-     Jump to the headline of the currently clocked in task.  With a
-     ‘C-u’ prefix arg, select the target task from a list of recently
-     clocked tasks.
-‘C-c C-x C-d     (org-clock-display)’
-     Display time summaries for each subtree in the current buffer.
-     This puts overlays at the end of each headline, showing the total
-     time recorded under that heading, including the time of any
-     subheadings.  You can use visibility cycling to study the tree, but
-     the overlays disappear when you change the buffer (see variable
-     ‘org-remove-highlights-with-change’) or press ‘C-c C-c’.
-
-   The ‘l’ key may be used the agenda (*note Weekly/daily agenda::) to
-show which tasks have been worked on or closed during a day.
-
-   *Important:* note that both ‘org-clock-out’ and ‘org-clock-in-last’
-can have a global key binding and will not modify the window
-disposition.
-
-   ---------- Footnotes ----------
-
-   (1) To add an effort estimate “on the fly”, hook a function doing
-this to ‘org-clock-in-prepare-hook’.
-
-   (2) as recorded by the ‘LAST_REPEAT’ property
-
-   (3) See also the variable ‘org-clock-modeline-total’.
-
-   (4) The corresponding in-buffer setting is: ‘#+STARTUP:
-lognoteclock-out’
-
-
-File: org,  Node: The clock table,  Next: Resolving idle time,  Prev: Clocking commands,  Up: Clocking work time
-
-8.4.2 The clock table
----------------------
-
-Org mode can produce quite complex reports based on the time clocking
-information.  Such a report is called a _clock table_, because it is
-formatted as one or several Org tables.
-
-‘C-c C-x C-r     (org-clock-report)’
-     Insert a dynamic block (*note Dynamic blocks::) containing a clock
-     report as an Org mode table into the current file.  When the cursor
-     is at an existing clock table, just update it.  When called with a
-     prefix argument, jump to the first clock report in the current
-     document and update it.  The clock table always includes also trees
-     with ‘:ARCHIVE:’ tag.
-‘C-c C-c  or  C-c C-x C-u     (org-dblock-update)’
-     Update dynamic block at point.
-‘C-u C-c C-x C-u’
-     Update all dynamic blocks (*note Dynamic blocks::).  This is useful
-     if you have several clock table blocks in a buffer.
-‘S-<LEFT>’
-‘S-<RIGHT>     (org-clocktable-try-shift)’
-     Shift the current ‘:block’ interval and update the table.  The
-     cursor needs to be in the ‘#+BEGIN: clocktable’ line for this
-     command.  If ‘:block’ is ‘today’, it will be shifted to ‘today-1’
-     etc.
-
-   Here is an example of the frame for a clock table as it is inserted
-into the buffer with the ‘C-c C-x C-r’ command:
-
-     #+BEGIN: clocktable :maxlevel 2 :emphasize nil :scope file
-     #+END: clocktable
-The ‘BEGIN’ line specifies a number of options to define the scope,
-structure, and formatting of the report.  Defaults for all these options
-can be configured in the variable ‘org-clocktable-defaults’.
-
-First there are options that determine which clock entries are to be
-selected:
-     :maxlevel    Maximum level depth to which times are listed in the table.
-                  Clocks at deeper levels will be summed into the upper level.
-     :scope       The scope to consider.  This can be any of the following:
-                  nil        the current buffer or narrowed region
-                  file       the full current buffer
-                  subtree    the subtree where the clocktable is located
-                  treeN      the surrounding level N tree, for example ‘tree3’
-                  tree       the surrounding level 1 tree
-                  agenda     all agenda files
-                  ("file"..) scan these files
-                  function   the list of files returned by a function of no argument
-                  file-with-archives    current file and its archives
-                  agenda-with-archives  all agenda files, including archives
-     :block       The time block to consider.  This block is specified either
-                  absolutely, or relative to the current time and may be any of
-                  these formats:
-                  2007-12-31    New year eve 2007
-                  2007-12       December 2007
-                  2007-W50      ISO-week 50 in 2007
-                  2007-Q2       2nd quarter in 2007
-                  2007          the year 2007
-                  today, yesterday, today-N          a relative day
-                  thisweek, lastweek, thisweek-N     a relative week
-                  thismonth, lastmonth, thismonth-N  a relative month
-                  thisyear, lastyear, thisyear-N     a relative year
-                  untilnow
-                  Use ‘S-<LEFT>/<RIGHT>’ keys to shift the time interval.
-     :tstart      A time string specifying when to start considering times.
-                  Relative times like ‘"<-2w>"’ can also be used.  See
-                  *note Matching tags and properties:: for relative time syntax.
-     :tend        A time string specifying when to stop considering times.
-                  Relative times like ‘"<now>"’ can also be used.  See
-                  *note Matching tags and properties:: for relative time syntax.
-     :wstart      The starting day of the week.  The default is 1 for monday.
-     :mstart      The starting day of the month.  The default 1 is for the first
-                  day of the month.
-     :step        ‘week’ or ‘day’, to split the table into chunks.
-                  To use this, ‘:block’ or ‘:tstart’, ‘:tend’ are needed.
-     :stepskip0   Do not show steps that have zero time.
-     :fileskip0   Do not show table sections from files which did not contribute.
-     :tags        A tags match to select entries that should contribute.  See
-                  *note Matching tags and properties:: for the match syntax.
-
-   Then there are options which determine the formatting of the table.
-These options are interpreted by the function
-‘org-clocktable-write-default’, but you can specify your own function
-using the ‘:formatter’ parameter.
-     :emphasize   When ‘t’, emphasize level one and level two items.
-     :lang        Language(1) to use for descriptive cells like "Task".
-     :link        Link the item headlines in the table to their origins.
-     :narrow      An integer to limit the width of the headline column in
-                  the org table.  If you write it like ‘50!’, then the
-                  headline will also be shortened in export.
-     :indent      Indent each headline field according to its level.
-     :tcolumns    Number of columns to be used for times.  If this is smaller
-                  than ‘:maxlevel’, lower levels will be lumped into one column.
-     :level       Should a level number column be included?
-     :sort        A cons cell like containing the column to sort and a sorting type.
-                  E.g., ‘:sort (1 . ?a)’ sorts the first column alphabetically.
-     :compact     Abbreviation for ‘:level nil :indent t :narrow 40! :tcolumns 1’
-                  All are overwritten except if there is an explicit ‘:narrow’
-     :timestamp   A timestamp for the entry, when available.  Look for ‘SCHEDULED’,
-                  ‘DEADLINE’, ‘TIMESTAMP’ and ‘TIMESTAMP_IA’, in this order.
-     :properties  List of properties that should be shown in the table.  Each
-                  property will get its own column.
-     :inherit-props When this flag is ‘t’, the values for ‘:properties’ will be inherited.
-     :formula     Content of a ‘#+TBLFM’ line to be added and evaluated.
-                  As a special case, ‘:formula %’ adds a column with % time.
-                  If you do not specify a formula here, any existing formula
-                  below the clock table will survive updates and be evaluated.
-     :formatter   A function to format clock data and insert it into the buffer.
-   To get a clock summary of the current level 1 tree, for the current
-day, you could write
-     #+BEGIN: clocktable :maxlevel 2 :block today :scope tree1 :link t
-     #+END: clocktable
-and to use a specific time range you could write(2)
-     #+BEGIN: clocktable :tstart "<2006-08-10 Thu 10:00>"
-                         :tend "<2006-08-10 Thu 12:00>"
-     #+END: clocktable
-   A range starting a week ago and ending right now could be written as
-     #+BEGIN: clocktable :tstart "<-1w>" :tend "<now>"
-     #+END: clocktable
-   A summary of the current subtree with % times would be
-     #+BEGIN: clocktable :scope subtree :link t :formula %
-     #+END: clocktable
-   A horizontally compact representation of everything clocked during
-last week would be
-     #+BEGIN: clocktable :scope agenda :block lastweek :compact t
-     #+END: clocktable
-
-   ---------- Footnotes ----------
-
-   (1) Language terms can be set through the variable
-‘org-clock-clocktable-language-setup’.
-
-   (2) Note that all parameters must be specified in a single line—the
-line is broken here only to fit it into the manual.
-
-
-File: org,  Node: Resolving idle time,  Prev: The clock table,  Up: Clocking work time
-
-8.4.3 Resolving idle time and continuous clocking
--------------------------------------------------
-
-Resolving idle time
-...................
-
-If you clock in on a work item, and then walk away from your
-computer—perhaps to take a phone call—you often need to “resolve” the
-time you were away by either subtracting it from the current clock, or
-applying it to another one.
-
-   By customizing the variable ‘org-clock-idle-time’ to some integer,
-such as 10 or 15, Emacs can alert you when you get back to your computer
-after being idle for that many minutes(1), and ask what you want to do
-with the idle time.  There will be a question waiting for you when you
-get back, indicating how much idle time has passed (constantly updated
-with the current amount), as well as a set of choices to correct the
-discrepancy:
-
-‘k’
-     To keep some or all of the minutes and stay clocked in, press ‘k’.
-     Org will ask how many of the minutes to keep.  Press <RET> to keep
-     them all, effectively changing nothing, or enter a number to keep
-     that many minutes.
-‘K’
-     If you use the shift key and press ‘K’, it will keep however many
-     minutes you request and then immediately clock out of that task.
-     If you keep all of the minutes, this is the same as just clocking
-     out of the current task.
-‘s’
-     To keep none of the minutes, use ‘s’ to subtract all the away time
-     from the clock, and then check back in from the moment you
-     returned.
-‘S’
-     To keep none of the minutes and just clock out at the start of the
-     away time, use the shift key and press ‘S’.  Remember that using
-     shift will always leave you clocked out, no matter which option you
-     choose.
-‘C’
-     To cancel the clock altogether, use ‘C’.  Note that if instead of
-     canceling you subtract the away time, and the resulting clock
-     amount is less than a minute, the clock will still be canceled
-     rather than clutter up the log with an empty entry.
-
-   What if you subtracted those away minutes from the current clock, and
-now want to apply them to a new clock?  Simply clock in to any task
-immediately after the subtraction.  Org will notice that you have
-subtracted time “on the books”, so to speak, and will ask if you want to
-apply those minutes to the next task you clock in on.
-
-   There is one other instance when this clock resolution magic occurs.
-Say you were clocked in and hacking away, and suddenly your cat chased a
-mouse who scared a hamster that crashed into your UPS’s power button!
-You suddenly lose all your buffers, but thanks to auto-save you still
-have your recent Org mode changes, including your last clock in.
-
-   If you restart Emacs and clock into any task, Org will notice that
-you have a dangling clock which was never clocked out from your last
-session.  Using that clock’s starting time as the beginning of the
-unaccounted-for period, Org will ask how you want to resolve that time.
-The logic and behavior is identical to dealing with away time due to
-idleness; it is just happening due to a recovery event rather than a set
-amount of idle time.
-
-   You can also check all the files visited by your Org agenda for
-dangling clocks at any time using ‘M-x org-resolve-clocks <RET>’ (or
-‘C-c C-x C-z’).
-
-Continuous clocking
-...................
-
-You may want to start clocking from the time when you clocked out the
-previous task.  To enable this systematically, set
-‘org-clock-continuously’ to ‘t’.  Each time you clock in, Org retrieves
-the clock-out time of the last clocked entry for this session, and start
-the new clock from there.
-
-   If you only want this from time to time, use three universal prefix
-arguments with ‘org-clock-in’ and two ‘C-u C-u’ with
-‘org-clock-in-last’.
-
-   ---------- Footnotes ----------
-
-   (1) On computers using macOS, idleness is based on actual user
-idleness, not just Emacs’ idle time.  For X11, you can install a utility
-program ‘x11idle.c’, available in the ‘contrib/scripts’ directory of the
-Org git distribution, or install the ‘xprintidle’ package and set it to
-the variable ‘org-clock-x11idle-program-name’ if you are running Debian,
-to get the same general treatment of idleness.  On other systems, idle
-time refers to Emacs idle time only.
-
-
-File: org,  Node: Effort estimates,  Next: Timers,  Prev: Clocking work time,  Up: Dates and times
-
-8.5 Effort estimates
-====================
-
-If you want to plan your work in a very detailed way, or if you need to
-produce offers with quotations of the estimated work effort, you may
-want to assign effort estimates to entries.  If you are also clocking
-your work, you may later want to compare the planned effort with the
-actual working time, a great way to improve planning estimates.  Effort
-estimates are stored in a special property ‘EFFORT’.  You can set the
-effort for an entry with the following commands:
-
-‘C-c C-x e     (org-set-effort)’
-     Set the effort estimate for the current entry.  With a numeric
-     prefix argument, set it to the Nth allowed value (see below).  This
-     command is also accessible from the agenda with the ‘e’ key.
-‘C-c C-x C-e     (org-clock-modify-effort-estimate)’
-     Modify the effort estimate of the item currently being clocked.
-
-   Clearly the best way to work with effort estimates is through column
-view (*note Column view::).  You should start by setting up discrete
-values for effort estimates, and a ‘COLUMNS’ format that displays these
-values together with clock sums (if you want to clock your time).  For a
-specific buffer you can use
-
-     #+PROPERTY: Effort_ALL 0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00
-     #+COLUMNS: %40ITEM(Task) %17Effort(Estimated Effort){:} %CLOCKSUM
-
-or, even better, you can set up these values globally by customizing the
-variables ‘org-global-properties’ and ‘org-columns-default-format’.  In
-particular if you want to use this setup also in the agenda, a global
-setup may be advised.
-
-   The way to assign estimates to individual items is then to switch to
-column mode, and to use ‘S-<RIGHT>’ and ‘S-<LEFT>’ to change the value.
-The values you enter will immediately be summed up in the hierarchy.  In
-the column next to it, any clocked time will be displayed.
-
-   If you switch to column view in the daily/weekly agenda, the effort
-column will summarize the estimated work effort for each day(1), and you
-can use this to find space in your schedule.  To get an overview of the
-entire part of the day that is committed, you can set the option
-‘org-agenda-columns-add-appointments-to-effort-sum’.  The appointments
-on a day that take place over a specified time interval will then also
-be added to the load estimate of the day.
-
-   Effort estimates can be used in secondary agenda filtering that is
-triggered with the ‘/’ key in the agenda (*note Agenda commands::).  If
-you have these estimates defined consistently, two or three key presses
-will narrow down the list to stuff that fits into an available time
-slot.
-
-   ---------- Footnotes ----------
-
-   (1) Please note the pitfalls of summing hierarchical data in a flat
-list (*note Agenda column view::).
-
-
-File: org,  Node: Timers,  Prev: Effort estimates,  Up: Dates and times
-
-8.6 Taking notes with a timer
-=============================
-
-Org provides two types of timers.  There is a relative timer that counts
-up, which can be useful when taking notes during, for example, a meeting
-or a video viewing.  There is also a countdown timer.
-
-   The relative and countdown are started with separate commands.
-
-‘C-c C-x 0     (org-timer-start)’
-     Start or reset the relative timer.  By default, the timer is set to
-     0.  When called with a ‘C-u’ prefix, prompt the user for a starting
-     offset.  If there is a timer string at point, this is taken as the
-     default, providing a convenient way to restart taking notes after a
-     break in the process.  When called with a double prefix argument
-     ‘C-u C-u’, change all timer strings in the active region by a
-     certain amount.  This can be used to fix timer strings if the timer
-     was not started at exactly the right moment.
-‘C-c C-x ;     (org-timer-set-timer)’
-     Start a countdown timer.  The user is prompted for a duration.
-     ‘org-timer-default-timer’ sets the default countdown value.  Giving
-     a numeric prefix argument overrides this default value.  This
-     command is available as ‘;’ in agenda buffers.
-
-   Once started, relative and countdown timers are controlled with the
-same commands.
-
-‘C-c C-x .     (org-timer)’
-     Insert the value of the current relative or countdown timer into
-     the buffer.  If no timer is running, the relative timer will be
-     started.  When called with a prefix argument, the relative timer is
-     restarted.
-‘C-c C-x -     (org-timer-item)’
-     Insert a description list item with the value of the current
-     relative or countdown timer.  With a prefix argument, first reset
-     the relative timer to 0.
-‘M-<RET>     (org-insert-heading)’
-     Once the timer list is started, you can also use ‘M-<RET>’ to
-     insert new timer items.
-‘C-c C-x ,     (org-timer-pause-or-continue)’
-     Pause the timer, or continue it if it is already paused.
-‘C-c C-x _     (org-timer-stop)’
-     Stop the timer.  After this, you can only start a new timer, not
-     continue the old one.  This command also removes the timer from the
-     mode line.
-
-
-File: org,  Node: Capture - Refile - Archive,  Next: Agenda views,  Prev: Dates and times,  Up: Top
-
-9 Capture - Refile - Archive
-****************************
-
-An important part of any organization system is the ability to quickly
-capture new ideas and tasks, and to associate reference material with
-them.  Org does this using a process called capture.  It also can store
-files related to a task (attachments) in a special directory.  Once in
-the system, tasks and projects need to be moved around.  Moving
-completed project trees to an archive file keeps the system compact and
-fast.
-
-* Menu:
-
-* Capture::                     Capturing new stuff
-* Attachments::                 Add files to tasks
-* RSS feeds::                   Getting input from RSS feeds
-* Protocols::                   External (e.g., Browser) access to Emacs and Org
-* Refile and copy::             Moving/copying a tree from one place to another
-* Archiving::                   What to do with finished projects
-
-
-File: org,  Node: Capture,  Next: Attachments,  Up: Capture - Refile - Archive
-
-9.1 Capture
-===========
-
-Capture lets you quickly store notes with little interruption of your
-work flow.  Org’s method for capturing new items is heavily inspired by
-John Wiegley excellent ‘remember.el’ package.  Up to version 6.36, Org
-used a special setup for ‘remember.el’, then replaced it with
-‘org-remember.el’.  As of version 8.0, ‘org-remember.el’ has been
-completely replaced by ‘org-capture.el’.
-
-   If your configuration depends on ‘org-remember.el’, you need to
-update it and use the setup described below.  To convert your
-‘org-remember-templates’, run the command
-     M-x org-capture-import-remember-templates <RET>
-and then customize the new variable with ‘M-x customize-variable
-org-capture-templates’, check the result, and save the customization.
-
-* Menu:
-
-* Setting up capture::          Where notes will be stored
-* Using capture::               Commands to invoke and terminate capture
-* Capture templates::           Define the outline of different note types
-
-
-File: org,  Node: Setting up capture,  Next: Using capture,  Up: Capture
-
-9.1.1 Setting up capture
-------------------------
-
-The following customization sets a default target file for notes, and
-defines a global key(1) for capturing new material.
-
-     (setq org-default-notes-file (concat org-directory "/notes.org"))
-     (define-key global-map "\C-cc" 'org-capture)
-
-   ---------- Footnotes ----------
-
-   (1) Please select your own key, ‘C-c c’ is only a suggestion.
-
-
-File: org,  Node: Using capture,  Next: Capture templates,  Prev: Setting up capture,  Up: Capture
-
-9.1.2 Using capture
--------------------
-
-‘C-c c     (org-capture)’
-     Call the command ‘org-capture’.  Note that this key binding is
-     global and not active by default: you need to install it.  If you
-     have templates defined *note Capture templates::, it will offer
-     these templates for selection or use a new Org outline node as the
-     default template.  It will insert the template into the target file
-     and switch to an indirect buffer narrowed to this new node.  You
-     may then insert the information you want.
-
-‘C-c C-c     (org-capture-finalize)’
-     Once you have finished entering information into the capture
-     buffer, ‘C-c C-c’ will return you to the window configuration
-     before the capture process, so that you can resume your work
-     without further distraction.  When called with a prefix arg,
-     finalize and then jump to the captured item.
-
-‘C-c C-w     (org-capture-refile)’
-     Finalize the capture process by refiling (*note Refile and copy::)
-     the note to a different place.  Please realize that this is a
-     normal refiling command that will be executed—so the cursor
-     position at the moment you run this command is important.  If you
-     have inserted a tree with a parent and children, first move the
-     cursor back to the parent.  Any prefix argument given to this
-     command will be passed on to the ‘org-refile’ command.
-
-‘C-c C-k     (org-capture-kill)’
-     Abort the capture process and return to the previous state.
-
-   You can also call ‘org-capture’ in a special way from the agenda,
-using the ‘k c’ key combination.  With this access, any timestamps
-inserted by the selected capture template will default to the cursor
-date in the agenda, rather than to the current date.
-
-   To find the locations of the last stored capture, use ‘org-capture’
-with prefix commands:
-
-‘C-u C-c c’
-     Visit the target location of a capture template.  You get to select
-     the template in the usual way.
-‘C-u C-u C-c c’
-     Visit the last stored capture item in its buffer.
-
-   You can also jump to the bookmark ‘org-capture-last-stored’, which
-will automatically be created unless you set ‘org-capture-bookmark’ to
-‘nil’.
-
-   To insert the capture at point in an Org buffer, call ‘org-capture’
-with a ‘C-0’ prefix argument.
-
-
-File: org,  Node: Capture templates,  Prev: Using capture,  Up: Capture
-
-9.1.3 Capture templates
------------------------
-
-You can use templates for different types of capture items, and for
-different target locations.  The easiest way to create such templates is
-through the customize interface.
-
-‘C-c c C’
-     Customize the variable ‘org-capture-templates’.
-
-   Before we give the formal description of template definitions, let’s
-look at an example.  Say you would like to use one template to create
-general TODO entries, and you want to put these entries under the
-heading ‘Tasks’ in your file ‘~/org/gtd.org’.  Also, a date tree in the
-file ‘journal.org’ should capture journal entries.  A possible
-configuration would look like:
-
-     (setq org-capture-templates
-      '(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks")
-             "* TODO %?\n  %i\n  %a")
-        ("j" "Journal" entry (file+olp+datetree "~/org/journal.org")
-             "* %?\nEntered on %U\n  %i\n  %a")))
-
-If you then press ‘C-c c t’, Org will prepare the template for you like
-this:
-     * TODO
-       [[file:LINK TO WHERE YOU INITIATED CAPTURE]]
-
-During expansion of the template, ‘%a’ has been replaced by a link to
-the location from where you called the capture command.  This can be
-extremely useful for deriving tasks from emails, for example.  You fill
-in the task definition, press ‘C-c C-c’ and Org returns you to the same
-place where you started the capture process.
-
-   To define special keys to capture to a particular template without
-going through the interactive template selection, you can create your
-key binding like this:
-
-     (define-key global-map "\C-cx"
-        (lambda () (interactive) (org-capture nil "x")))
-
-* Menu:
-
-* Template elements::           What is needed for a complete template entry
-* Template expansion::          Filling in information about time and context
-* Templates in contexts::       Only show a template in a specific context
-
-
-File: org,  Node: Template elements,  Next: Template expansion,  Up: Capture templates
-
-9.1.3.1 Template elements
-.........................
-
-Now lets look at the elements of a template definition.  Each entry in
-‘org-capture-templates’ is a list with the following items:
-
-KEYS
-     The keys that will select the template, as a string, characters
-     only, for example ‘"a"’ for a template to be selected with a single
-     key, or ‘"bt"’ for selection with two keys.  When using several
-     keys, keys using the same prefix key must be sequential in the list
-     and preceded by a 2-element entry explaining the prefix key, for
-     example
-                   ("b" "Templates for marking stuff to buy")
-     If you do not define a template for the ‘C’ key, this key will be
-     used to open the customize buffer for this complex variable.
-
-DESCRIPTION
-     A short string describing the template, which will be shown during
-     selection.
-
-TYPE
-     The type of entry, a symbol.  Valid values are:
-
-     ‘entry’
-          An Org mode node, with a headline.  Will be filed as the child
-          of the target entry or as a top-level entry.  The target file
-          should be an Org mode file.
-     ‘item’
-          A plain list item, placed in the first plain list at the
-          target location.  Again the target file should be an Org file.
-     ‘checkitem’
-          A checkbox item.  This only differs from the plain list item
-          by the default template.
-     ‘table-line’
-          a new line in the first table at the target location.  Where
-          exactly the line will be inserted depends on the properties
-          ‘:prepend’ and ‘:table-line-pos’ (see below).
-     ‘plain’
-          Text to be inserted as it is.
-
-TARGET
-     Specification of where the captured item should be placed.  In Org
-     mode files, targets usually define a node.  Entries will become
-     children of this node.  Other types will be added to the table or
-     list in the body of this node.  Most target specifications contain
-     a file name.  If that file name is the empty string, it defaults to
-     ‘org-default-notes-file’.  A file can also be given as a variable
-     or as a function called with no argument.  When an absolute path is
-     not specified for a target, it is taken as relative to
-     ‘org-directory’.
-
-     Valid values are:
-
-     ‘(file "path/to/file")’
-          Text will be placed at the beginning or end of that file.
-
-     ‘(id "id of existing org entry")’
-          Filing as child of this entry, or in the body of the entry.
-
-     ‘(file+headline "path/to/file" "node headline")’
-          Fast configuration if the target heading is unique in the
-          file.
-
-     ‘(file+olp "path/to/file" "Level 1 heading" "Level 2" ...)’
-          For non-unique headings, the full path is safer.
-
-     ‘(file+regexp "path/to/file" "regexp to find location")’
-          Use a regular expression to position the cursor.
-
-     ‘(file+olp+datetree "path/to/file" [ "Level 1 heading" ....])’
-          This target(1) will create a heading in a date tree(2) for
-          today’s date.  If the optional outline path is given, the tree
-          will be built under the node it is pointing to, instead of at
-          top level.  Check out the ‘:time-prompt’ and ‘:tree-type’
-          properties below for additional options.
-
-     ‘(file+function "path/to/file" function-finding-location)’
-          A function to find the right location in the file.
-
-     ‘(clock)’
-          File to the entry that is currently being clocked.
-
-     ‘(function function-finding-location)’
-          Most general way: write your own function which both visits
-          the file and moves point to the right location.
-
-TEMPLATE
-     The template for creating the capture item.  If you leave this
-     empty, an appropriate default template will be used.  Otherwise
-     this is a string with escape codes, which will be replaced
-     depending on time and context of the capture call.  The string with
-     escapes may be loaded from a template file, using the special
-     syntax ‘(file "path/to/template")’.  See below for more details.
-
-PROPERTIES
-     The rest of the entry is a property list of additional options.
-     Recognized properties are:
-
-     ‘:prepend’
-          Normally new captured information will be appended at the
-          target location (last child, last table line, last list
-          item...).  Setting this property will change that.
-
-     ‘:immediate-finish’
-          When set, do not offer to edit the information, just file it
-          away immediately.  This makes sense if the template only needs
-          information that can be added automatically.
-
-     ‘:empty-lines’
-          Set this to the number of lines to insert before and after the
-          new item.  Default 0, only common other value is 1.
-
-     ‘:clock-in’
-          Start the clock in this item.
-
-     ‘:clock-keep’
-          Keep the clock running when filing the captured entry.
-
-     ‘:clock-resume’
-          If starting the capture interrupted a clock, restart that
-          clock when finished with the capture.  Note that ‘:clock-keep’
-          has precedence over ‘:clock-resume’.  When setting both to
-          ‘t’, the current clock will run and the previous one will not
-          be resumed.
-
-     ‘:time-prompt’
-          Prompt for a date/time to be used for date/week trees and when
-          filling the template.  Without this property, capture uses the
-          current date and time.  Even if this property has not been
-          set, you can force the same behavior by calling ‘org-capture’
-          with a ‘C-1’ prefix argument.
-
-     ‘:tree-type’
-          When ‘week’, make a week tree instead of the month tree, i.e.
-          place the headings for each day under a heading with the
-          current iso week.
-
-     ‘:unnarrowed’
-          Do not narrow the target buffer, simply show the full buffer.
-          Default is to narrow it so that you only see the new material.
-
-     ‘:table-line-pos’
-          Specification of the location in the table where the new line
-          should be inserted.  It can be a string, a variable holding a
-          string or a function returning a string.  The string should
-          look like ‘"II-3"’ meaning that the new line should become the
-          third line before the second horizontal separator line.
-
-     ‘:kill-buffer’
-          If the target file was not yet visited when capture was
-          invoked, kill the buffer again after capture is completed.
-
-   ---------- Footnotes ----------
-
-   (1) Org used to offer four different targets for date/week tree
-capture.  Now, Org automatically translates these to use
-‘file+olp+datetree’, applying the ‘:time-prompt’ and ‘:tree-type’
-properties.  Please rewrite your date/week-tree targets using
-‘file+olp+datetree’ since the older targets are now deprecated.
-
-   (2) A date tree is an outline structure with years on the highest
-level, months or ISO-weeks as sublevels and then dates on the lowest
-level.  Tags are allowed in the tree structure.
-
-
-File: org,  Node: Template expansion,  Next: Templates in contexts,  Prev: Template elements,  Up: Capture templates
-
-9.1.3.2 Template expansion
-..........................
-
-In the template itself, special ‘%’-escapes(1) allow dynamic insertion
-of content.  The templates are expanded in the order given here:
-
-     %[FILE]     Insert the contents of the file given by FILE.
-     %(SEXP)     Evaluate Elisp SEXP and replace with the result.
-                       For convenience, %:keyword (see below) placeholders
-                       within the expression will be expanded prior to this.
-                       The sexp must return a string.
-     %<...>      The result of format-time-string on the ... format specification.
-     %t          Timestamp, date only.
-     %T          Timestamp, with date and time.
-     %u, %U      Like the above, but inactive timestamps.
-     %i          Initial content, the region when capture is called while the
-                 region is active.
-                 The entire text will be indented like ‘%i’ itself.
-     %a          Annotation, normally the link created with ‘org-store-link’.
-     %A          Like ‘%a’, but prompt for the description part.
-     %l          Like %a, but only insert the literal link.
-     %c          Current kill ring head.
-     %x          Content of the X clipboard.
-     %k          Title of the currently clocked task.
-     %K          Link to the currently clocked task.
-     %n          User name (taken from ‘user-full-name’).
-     %f          File visited by current buffer when org-capture was called.
-     %F          Full path of the file or directory visited by current buffer.
-     %:keyword   Specific information for certain link types, see below.
-     %^g         Prompt for tags, with completion on tags in target file.
-     %^G         Prompt for tags, with completion all tags in all agenda files.
-     %^t         Like ‘%t’, but prompt for date.  Similarly ‘%^T’, ‘%^u’, ‘%^U’.
-                 You may define a prompt like ‘%^{Birthday}t’.
-     %^C         Interactive selection of which kill or clip to use.
-     %^L         Like ‘%^C’, but insert as link.
-     %^{PROP}p   Prompt the user for a value for property PROP.
-     %^{PROMPT}  prompt the user for a string and replace this sequence with it.
-                 You may specify a default value and a completion table with
-                 %^{prompt|default|completion2|completion3...}.
-                 The arrow keys access a prompt-specific history.
-     %\1 ... %\N Insert the text entered at the Nth %^{PROMPT}, where ‘N’ is
-                 a number, starting from 1.(2)
-     %?          After completing the template, position cursor here.
-
-For specific link types, the following keywords will be defined(3):
-
-     Link type                        |  Available keywords
-     ---------------------------------+----------------------------------------------
-     bbdb                             |  %:name %:company
-     irc                              |  %:server %:port %:nick
-     vm, vm-imap, wl, mh, mew, rmail, |  %:type %:subject %:message-id
-     gnus, notmuch                    |  %:from %:fromname %:fromaddress
-                                      |  %:to   %:toname   %:toaddress
-                                      |  %:date (message date header field)
-                                      |  %:date-timestamp (date as active timestamp)
-                                      |  %:date-timestamp-inactive (date as inactive timestamp)
-                                      |  %:fromto (either "to NAME" or "from NAME")(4)
-     gnus                             |  %:group, for messages also all email fields
-     eww, w3, w3m                     |  %:url
-     info                             |  %:file %:node
-     calendar                         |  %:date
-     org-protocol                     |  %:link %:description %:annotation
-
-To place the cursor after template expansion use:
-
-     %?          After completing the template, position cursor here.
-
-   ---------- Footnotes ----------
-
-   (1) If you need one of these sequences literally, escape the ‘%’ with
-a backslash.
-
-   (2) As required in Emacs Lisp, it is necessary to escape any
-backslash character in a string with another backslash.  So, in order to
-use ‘%\1’ placeholder, you need to write ‘%\\1’ in the template.
-
-   (3) If you define your own link types (*note Adding hyperlink
-types::), any property you store with ‘org-store-link-props’ can be
-accessed in capture templates in a similar way.
-
-   (4) This will always be the other, not the user.  See the variable
-‘org-from-is-user-regexp’.
-
-
-File: org,  Node: Templates in contexts,  Prev: Template expansion,  Up: Capture templates
-
-9.1.3.3 Templates in contexts
-.............................
-
-To control whether a capture template should be accessible from a
-specific context, you can customize ‘org-capture-templates-contexts’.
-Let’s say for example that you have a capture template ‘"p"’ for storing
-Gnus emails containing patches.  Then you would configure this option
-like this:
-
-     (setq org-capture-templates-contexts
-           '(("p" (in-mode . "message-mode"))))
-
-   You can also tell that the command key ‘"p"’ should refer to another
-template.  In that case, add this command key like this:
-
-     (setq org-capture-templates-contexts
-           '(("p" "q" (in-mode . "message-mode"))))
-
-   See the docstring of the variable for more information.
-
-
-File: org,  Node: Attachments,  Next: RSS feeds,  Prev: Capture,  Up: Capture - Refile - Archive
-
-9.2 Attachments
-===============
-
-It is often useful to associate reference material with an outline
-node/task.  Small chunks of plain text can simply be stored in the
-subtree of a project.  Hyperlinks (*note Hyperlinks::) can establish
-associations with files that live elsewhere on your computer or in the
-cloud, like emails or source code files belonging to a project.  Another
-method is attachments, which are files located in a directory belonging
-to an outline node.  Org uses directories named by the unique ID of each
-entry.  These directories are located in the ‘data’ directory which
-lives in the same directory where your Org file lives(1).  If you
-initialize this directory with ‘git init’, Org will automatically commit
-changes when it sees them.  The attachment system has been contributed
-to Org by John Wiegley.
-
-   In cases where it seems better to do so, you can also attach a
-directory of your choice to an entry.  You can also make children
-inherit the attachment directory from a parent, so that an entire
-subtree uses the same attached directory.
-
-The following commands deal with attachments:
-
-‘C-c C-a     (org-attach)’
-     The dispatcher for commands related to the attachment system.
-     After these keys, a list of commands is displayed and you must
-     press an additional key to select a command:
-
-     ‘a     (org-attach-attach)’
-          Select a file and move it into the task’s attachment
-          directory.  The file will be copied, moved, or linked,
-          depending on ‘org-attach-method’.  Note that hard links are
-          not supported on all systems.
-
-     ‘c/m/l’
-          Attach a file using the copy/move/link method.  Note that hard
-          links are not supported on all systems.
-
-     ‘u     (org-attach-url)’
-          Attach a file from URL
-
-     ‘n     (org-attach-new)’
-          Create a new attachment as an Emacs buffer.
-
-     ‘z     (org-attach-sync)’
-          Synchronize the current task with its attachment directory, in
-          case you added attachments yourself.
-
-     ‘o     (org-attach-open)’
-          Open current task’s attachment.  If there is more than one,
-          prompt for a file name first.  Opening will follow the rules
-          set by ‘org-file-apps’.  For more details, see the information
-          on following hyperlinks (*note Handling links::).
-
-     ‘O     (org-attach-open-in-emacs)’
-          Also open the attachment, but force opening the file in Emacs.
-
-     ‘f     (org-attach-reveal)’
-          Open the current task’s attachment directory.
-
-     ‘F     (org-attach-reveal-in-emacs)’
-          Also open the directory, but force using ‘dired’ in Emacs.
-
-     ‘d     (org-attach-delete-one)’
-          Select and delete a single attachment.
-
-     ‘D     (org-attach-delete-all)’
-          Delete all of a task’s attachments.  A safer way is to open
-          the directory in ‘dired’ and delete from there.
-
-     ‘s     (org-attach-set-directory)’
-          Set a specific directory as the entry’s attachment directory.
-          This works by putting the directory path into the ‘ATTACH_DIR’
-          property.
-
-     ‘i     (org-attach-set-inherit)’
-          Set the ‘ATTACH_DIR_INHERIT’ property, so that children will
-          use the same directory for attachments as the parent does.
-
-   ---------- Footnotes ----------
-
-   (1) If you move entries or Org files from one directory to another,
-you may want to configure ‘org-attach-directory’ to contain an absolute
-path.
-
-
-File: org,  Node: RSS feeds,  Next: Protocols,  Prev: Attachments,  Up: Capture - Refile - Archive
-
-9.3 RSS feeds
-=============
-
-Org can add and change entries based on information found in RSS feeds
-and Atom feeds.  You could use this to make a task out of each new
-podcast in a podcast feed.  Or you could use a phone-based note-creating
-service on the web to import tasks into Org.  To access feeds, configure
-the variable ‘org-feed-alist’.  The docstring of this variable has
-detailed information.  Here is just an example:
-
-     (setq org-feed-alist
-          '(("Slashdot"
-              "http://rss.slashdot.org/Slashdot/slashdot"
-              "~/txt/org/feeds.org" "Slashdot Entries")))
-
-will configure that new items from the feed provided by
-‘rss.slashdot.org’ will result in new entries in the file
-‘~/org/feeds.org’ under the heading ‘Slashdot Entries’, whenever the
-following command is used:
-
-‘C-c C-x g     (org-feed-update-all)’
-‘C-c C-x g’
-     Collect items from the feeds configured in ‘org-feed-alist’ and act
-     upon them.
-‘C-c C-x G     (org-feed-goto-inbox)’
-     Prompt for a feed name and go to the inbox configured for this
-     feed.
-
-   Under the same headline, Org will create a drawer ‘FEEDSTATUS’ in
-which it will store information about the status of items in the feed,
-to avoid adding the same item several times.
-
-   For more information, including how to read atom feeds, see
-‘org-feed.el’ and the docstring of ‘org-feed-alist’.
-
-
-File: org,  Node: Protocols,  Next: Refile and copy,  Prev: RSS feeds,  Up: Capture - Refile - Archive
-
-9.4 Protocols for external access
-=================================
-
-Org protocol is a mean to trigger custom actions in Emacs from external
-applications.  Any application that supports calling external programs
-with an URL as argument may be used with this functionality.  For
-example, you can configure bookmarks in your web browser to send a link
-to the current page to Org and create a note from it using capture
-(*note Capture::).  You can also create a bookmark that tells Emacs to
-open the local source file of a remote website you are browsing.
-
-   In order to use Org protocol from an application, you need to
-register ‘org-protocol://’ as a valid scheme-handler.  External calls
-are passed to Emacs through the ‘emacsclient’ command, so you also need
-to ensure an Emacs server is running.  More precisely, when the
-application calls
-
-     emacsclient org-protocol://PROTOCOL?key1=val1&key2=val2
-
-Emacs calls the handler associated to ‘PROTOCOL’ with argument ‘(:key1
-val1 :key2 val2)’.
-
-   Org protocol comes with three predefined protocols, detailed in the
-following sections.  Configure ‘org-protocol-protocol-alist’ to define
-your own.
-
-* Menu:
-
-* store-link protocol::  Store a link, push URL to kill-ring.
-* capture protocol::     Fill a buffer with external information.
-* open-source protocol::  Edit published contents.
-
-
-File: org,  Node: store-link protocol,  Next: capture protocol,  Up: Protocols
-
-9.4.1 ‘store-link’ protocol
----------------------------
-
-Using ‘store-link’ handler, you can copy links, insertable through ‘M-x
-org-insert-link’ or yanking thereafter.  More precisely, the command
-
-     emacsclient org-protocol://store-link?url=URL&title=TITLE
-
-stores the following link:
-
-     [[URL][TITLE]]
-
-   In addition, ‘URL’ is pushed on the kill-ring for yanking.  You need
-to encode ‘URL’ and ‘TITLE’ if they contain slashes, and probably quote
-those for the shell.
-
-   To use this feature from a browser, add a bookmark with an arbitrary
-name, e.g., ‘Org: store-link’ and enter this as _Location_:
-
-     javascript:location.href='org-protocol://store-link?url='+
-           encodeURIComponent(location.href);
-
-
-File: org,  Node: capture protocol,  Next: open-source protocol,  Prev: store-link protocol,  Up: Protocols
-
-9.4.2 ‘capture’ protocol
-------------------------
-
-Activating ‘capture’ handler pops up a ‘Capture’ buffer and fills the
-capture template associated to the ‘X’ key with them.
-
-     emacsclient org-protocol://capture?template=X?url=URL?title=TITLE?body=BODY
-
-   To use this feature, add a bookmark with an arbitrary name, e.g.
-‘Org: capture’ and enter this as ‘Location’:
-
-     javascript:location.href='org-protocol://capture?template=x'+
-           '&url='+encodeURIComponent(window.location.href)+
-           '&title='+encodeURIComponent(document.title)+
-           '&body='+encodeURIComponent(window.getSelection());
-
-   The result depends on the capture template used, which is set in the
-bookmark itself, as in the example above, or in
-‘org-protocol-default-template-key’.
-
-   The following template placeholders are available:
-
-     %:link          The URL
-     %:description   The webpage title
-     %:annotation    Equivalent to [[%:link][%:description]]
-     %i              The selected text
-
-
-File: org,  Node: open-source protocol,  Prev: capture protocol,  Up: Protocols
-
-9.4.3 ‘open-source’ protocol
-----------------------------
-
-The ‘open-source’ handler is designed to help with editing local sources
-when reading a document.  To that effect, you can use a bookmark with
-the following location:
-
-     javascript:location.href='org-protocol://open-source?&url='+
-           encodeURIComponent(location.href)
-
-   The variable ‘org-protocol-project-alist’ maps URLs to local file
-names, by stripping URL parameters from the end and replacing the
-‘:base-url’ with ‘:working-directory’ and ‘:online-suffix’ with
-‘:working-suffix’.  For example, assuming you own a local copy of
-<https://orgmode.org/worg/> contents at ‘/home/user/worg’, you can set
-‘org-protocol-project-alist’ to the following
-
-     (setq org-protocol-project-alist
-           '(("Worg"
-     	 :base-url "https://orgmode.org/worg/"
-     	 :working-directory "/home/user/worg/"
-     	 :online-suffix ".html"
-     	 :working-suffix ".org")))
-
-If you are now browsing
-<https://orgmode.org/worg/org-contrib/org-protocol.html> and find a typo
-or have an idea about how to enhance the documentation, simply click the
-bookmark and start editing.
-
-   However, such mapping may not yield the desired results.  Suppose you
-maintain an online store located at <http://example.com/>.  The local
-sources reside in ‘/home/user/example/’.  It is common practice to serve
-all products in such a store through one file and rewrite URLs that do
-not match an existing file on the server.  That way, a request to
-<http://example.com/print/posters.html> might be rewritten on the server
-to something like
-<http://example.com/shop/products.php/posters.html.php>.  The
-‘open-source’ handler probably cannot find a file named
-‘/home/user/example/print/posters.html.php’ and fails.
-
-   Such an entry in ‘org-protocol-project-alist’ may hold an additional
-property ‘:rewrites’.  This property is a list of cons cells, each of
-which maps a regular expression to a path relative to the
-‘:working-directory’.
-
-   Now map the URL to the path ‘/home/user/example/products.php’ by
-adding ‘:rewrites’ rules like this:
-
-     (setq org-protocol-project-alist
-           '(("example.com"
-              :base-url "http://example.com/"
-              :working-directory "/home/user/example/"
-              :online-suffix ".php"
-              :working-suffix ".php"
-              :rewrites (("example.com/print/" . "products.php")
-                         ("example.com/$" . "index.php")))))
-
-Since ‘example.com/$’ is used as a regular expression, it maps
-<http://example.com/>, <https://example.com>, <http://www.example.com/>
-and similar to ‘/home/user/example/index.php’.
-
-   The ‘:rewrites’ rules are searched as a last resort if and only if no
-existing file name is matched.
-
-   Two functions can help you filling ‘org-protocol-project-alist’ with
-valid contents: ‘org-protocol-create’ and ‘org-protocol-create-for-org’.
-The latter is of use if you’re editing an Org file that is part of a
-publishing project.
-
-
-File: org,  Node: Refile and copy,  Next: Archiving,  Prev: Protocols,  Up: Capture - Refile - Archive
-
-9.5 Refile and copy
-===================
-
-When reviewing the captured data, you may want to refile or to copy some
-of the entries into a different list, for example into a project.
-Cutting, finding the right location, and then pasting the note is
-cumbersome.  To simplify this process, you can use the following special
-command:
-
-‘C-c M-w     (org-copy)’
-     Copying works like refiling, except that the original note is not
-     deleted.
-‘C-c C-w     (org-refile)’
-     Refile the entry or region at point.  This command offers possible
-     locations for refiling the entry and lets you select one with
-     completion.  The item (or all items in the region) is filed below
-     the target heading as a subitem.  Depending on
-     ‘org-reverse-note-order’, it will be either the first or last
-     subitem.
-     By default, all level 1 headlines in the current buffer are
-     considered to be targets, but you can have more complex definitions
-     across a number of files.  See the variable ‘org-refile-targets’
-     for details.  If you would like to select a location via a
-     file-path-like completion along the outline path, see the variables
-     ‘org-refile-use-outline-path’ and
-     ‘org-outline-path-complete-in-steps’.  If you would like to be able
-     to create new nodes as new parents for refiling on the fly, check
-     the variable ‘org-refile-allow-creating-parent-nodes’.  When the
-     variable ‘org-log-refile’(1) is set, a timestamp or a note will be
-     recorded when an entry has been refiled.
-‘C-u C-c C-w’
-     Use the refile interface to jump to a heading.
-‘C-u C-u C-c C-w     (org-refile-goto-last-stored)’
-     Jump to the location where ‘org-refile’ last moved a tree to.
-‘C-2 C-c C-w’
-     Refile as the child of the item currently being clocked.
-‘C-3 C-c C-w’
-     Refile and keep the entry in place.  Also see ‘org-refile-keep’ to
-     make this the default behavior, and beware that this may result in
-     duplicated ‘ID’ properties.
-‘C-0 C-c C-w  or  C-u C-u C-u C-c C-w     (org-refile-cache-clear)’
-     Clear the target cache.  Caching of refile targets can be turned on
-     by setting ‘org-refile-use-cache’.  To make the command see new
-     possible targets, you have to clear the cache with this command.
-
-   ---------- Footnotes ----------
-
-   (1) with corresponding ‘#+STARTUP’ keywords ‘logrefile’,
-‘lognoterefile’, and ‘nologrefile’
-
-
-File: org,  Node: Archiving,  Prev: Refile and copy,  Up: Capture - Refile - Archive
-
-9.6 Archiving
-=============
-
-When a project represented by a (sub)tree is finished, you may want to
-move the tree out of the way and to stop it from contributing to the
-agenda.  Archiving is important to keep your working files compact and
-global searches like the construction of agenda views fast.
-
-‘C-c C-x C-a     (org-archive-subtree-default)’
-     Archive the current entry using the command specified in the
-     variable ‘org-archive-default-command’.
-
-* Menu:
-
-* Moving subtrees::             Moving a tree to an archive file
-* Internal archiving::          Switch off a tree but keep it in the file
-
-
-File: org,  Node: Moving subtrees,  Next: Internal archiving,  Up: Archiving
-
-9.6.1 Moving a tree to the archive file
----------------------------------------
-
-The most common archiving action is to move a project tree to another
-file, the archive file.
-
-‘C-c C-x C-s  or short  C-c $     (org-archive-subtree)’
-     Archive the subtree starting at the cursor position to the location
-     given by ‘org-archive-location’.
-‘C-u C-c C-x C-s’
-     Check if any direct children of the current headline could be moved
-     to the archive.  To do this, each subtree is checked for open TODO
-     entries.  If none are found, the command offers to move it to the
-     archive location.  If the cursor is _not_ on a headline when this
-     command is invoked, the level 1 trees will be checked.
-‘C-u C-u C-c C-x C-s’
-     As above, but check subtree for timestamps instead of TODO entries.
-     The command will offer to archive the subtree if it _does_ contain
-     a timestamp, and that timestamp is in the past.
-
-   The default archive location is a file in the same directory as the
-current file, with the name derived by appending ‘_archive’ to the
-current file name.  You can also choose what heading to file archived
-items under, with the possibility to add them to a datetree in a file.
-For information and examples on how to specify the file and the heading,
-see the documentation string of the variable ‘org-archive-location’.
-
-   There is also an in-buffer option for setting this variable, for
-example:
-
-     #+ARCHIVE: %s_done::
-
-If you would like to have a special ARCHIVE location for a single entry
-or a (sub)tree, give the entry an ‘:ARCHIVE:’ property with the location
-as the value (*note Properties and columns::).
-
-   When a subtree is moved, it receives a number of special properties
-that record context information like the file from where the entry came,
-its outline path the archiving time etc.  Configure the variable
-‘org-archive-save-context-info’ to adjust the amount of information
-added.
-
-
-File: org,  Node: Internal archiving,  Prev: Moving subtrees,  Up: Archiving
-
-9.6.2 Internal archiving
-------------------------
-
-If you want to just switch off—for agenda views—certain subtrees without
-moving them to a different file, you can use the archive tag.
-
-   A headline that is marked with the ‘:ARCHIVE:’ tag (*note Tags::)
-stays at its location in the outline tree, but behaves in the following
-way:
-   − It does not open when you attempt to do so with a visibility
-     cycling command (*note Visibility cycling::).  You can force
-     cycling archived subtrees with ‘C-<TAB>’, or by setting the option
-     ‘org-cycle-open-archived-trees’.  Also normal outline commands like
-     ‘show-all’ will open archived subtrees.
-   − During sparse tree construction (*note Sparse trees::), matches in
-     archived subtrees are not exposed, unless you configure the option
-     ‘org-sparse-tree-open-archived-trees’.
-   − During agenda view construction (*note Agenda views::), the content
-     of archived trees is ignored unless you configure the option
-     ‘org-agenda-skip-archived-trees’, in which case these trees will
-     always be included.  In the agenda you can press ‘v a’ to get
-     archives temporarily included.
-   − Archived trees are not exported (*note Exporting::), only the
-     headline is.  Configure the details using the variable
-     ‘org-export-with-archived-trees’.
-   − Archived trees are excluded from column view unless the variable
-     ‘org-columns-skip-archived-trees’ is configured to ‘nil’.
-
-   The following commands help manage the ARCHIVE tag:
-
-‘C-c C-x a     (org-toggle-archive-tag)’
-     Toggle the ARCHIVE tag for the current headline.  When the tag is
-     set, the headline changes to a shadowed face, and the subtree below
-     it is hidden.
-‘C-u C-c C-x a’
-     Check if any direct children of the current headline should be
-     archived.  To do this, each subtree is checked for open TODO
-     entries.  If none are found, the command offers to set the ARCHIVE
-     tag for the child.  If the cursor is _not_ on a headline when this
-     command is invoked, the level 1 trees will be checked.
-‘C-<TAB>     (org-force-cycle-archived)’
-     Cycle a tree even if it is tagged with ARCHIVE.
-‘C-c C-x A     (org-archive-to-archive-sibling)’
-     Move the current entry to the _Archive Sibling_.  This is a sibling
-     of the entry with the heading ‘Archive’ and the tag ‘ARCHIVE’.  The
-     entry becomes a child of that sibling and in this way retains a lot
-     of its original context, including inherited tags and approximate
-     position in the outline.
-
-
-File: org,  Node: Agenda views,  Next: Markup,  Prev: Capture - Refile - Archive,  Up: Top
-
-10 Agenda views
-***************
-
-Due to the way Org works, TODO items, time-stamped items, and tagged
-headlines can be scattered throughout a file or even a number of files.
-To get an overview of open action items, or of events that are important
-for a particular date, this information must be collected, sorted and
-displayed in an organized way.
-
-   Org can select items based on various criteria and display them in a
-separate buffer.  Six different view types are provided:
-
-   • an _agenda_ that is like a calendar and shows information for
-     specific dates,
-   • a _TODO list_ that covers all unfinished action items,
-   • a _match view_, showings headlines based on the tags, properties,
-     and TODO state associated with them,
-   • a _text search view_ that shows all entries from multiple files
-     that contain specified keywords,
-   • a _stuck projects view_ showing projects that currently don’t move
-     along, and
-   • _custom views_ that are special searches and combinations of
-     different views.
-
-The extracted information is displayed in a special _agenda buffer_.
-This buffer is read-only, but provides commands to visit the
-corresponding locations in the original Org files, and even to edit
-these files remotely.
-
-   By default, the report ignores commented (*note Comment lines::) and
-archived (*note Internal archiving::) entries.  You can override this by
-setting ‘org-agenda-skip-comment-trees’ and
-‘org-agenda-skip-archived-trees’ to ‘nil’.
-
-   Two variables control how the agenda buffer is displayed and whether
-the window configuration is restored when the agenda exits:
-‘org-agenda-window-setup’ and ‘org-agenda-restore-windows-after-quit’.
-
-* Menu:
-
-* Agenda files::                Files being searched for agenda information
-* Agenda dispatcher::           Keyboard access to agenda views
-* Built-in agenda views::       What is available out of the box?
-* Presentation and sorting::    How agenda items are prepared for display
-* Agenda commands::             Remote editing of Org trees
-* Custom agenda views::         Defining special searches and views
-* Exporting agenda views::      Writing a view to a file
-* Agenda column view::          Using column view for collected entries
-
-
-File: org,  Node: Agenda files,  Next: Agenda dispatcher,  Up: Agenda views
-
-10.1 Agenda files
-=================
-
-The information to be shown is normally collected from all _agenda
-files_, the files listed in the variable ‘org-agenda-files’(1).  If a
-directory is part of this list, all files with the extension ‘.org’ in
-this directory will be part of the list.
-
-   Thus, even if you only work with a single Org file, that file should
-be put into the list(2).  You can customize ‘org-agenda-files’, but the
-easiest way to maintain it is through the following commands
-
-‘C-c [     (org-agenda-file-to-front)’
-     Add current file to the list of agenda files.  The file is added to
-     the front of the list.  If it was already in the list, it is moved
-     to the front.  With a prefix argument, file is added/moved to the
-     end.
-‘C-c ]     (org-remove-file)’
-     Remove current file from the list of agenda files.
-‘C-'     (org-cycle-agenda-files)’
-‘C-,’
-     Cycle through agenda file list, visiting one file after the other.
-‘M-x org-switchb <RET>’
-     Command to use an ‘iswitchb’-like interface to switch to and
-     between Org buffers.
-
-The Org menu contains the current list of files and can be used to visit
-any of them.
-
-   If you would like to focus the agenda temporarily on a file not in
-this list, or on just one file in the list, or even on only a subtree in
-a file, then this can be done in different ways.  For a single agenda
-command, you may press ‘<’ once or several times in the dispatcher
-(*note Agenda dispatcher::).  To restrict the agenda scope for an
-extended period, use the following commands:
-
-‘C-c C-x <     (org-agenda-set-restriction-lock)’
-     Permanently restrict the agenda to the current subtree.  When with
-     a prefix argument, or with the cursor before the first headline in
-     a file, the agenda scope is set to the entire file.  This
-     restriction remains in effect until removed with ‘C-c C-x >’, or by
-     typing either ‘<’ or ‘>’ in the agenda dispatcher.  If there is a
-     window displaying an agenda view, the new restriction takes effect
-     immediately.
-‘C-c C-x >     (org-agenda-remove-restriction-lock)’
-     Remove the permanent restriction created by ‘C-c C-x <’.
-
-When working with ‘speedbar.el’, you can use the following commands in
-the Speedbar frame:
-
-‘< in the speedbar frame     (org-speedbar-set-agenda-restriction)’
-     Permanently restrict the agenda to the item—either an Org file or a
-     subtree in such a file—at the cursor in the Speedbar frame.  If
-     there is a window displaying an agenda view, the new restriction
-     takes effect immediately.
-‘> in the speedbar frame     (org-agenda-remove-restriction-lock)’
-     Lift the restriction.
-
-   ---------- Footnotes ----------
-
-   (1) If the value of that variable is not a list, but a single file
-name, then the list of agenda files will be maintained in that external
-file.
-
-   (2) When using the dispatcher, pressing ‘<’ before selecting a
-command will actually limit the command to the current file, and ignore
-‘org-agenda-files’ until the next dispatcher command.
-
-
-File: org,  Node: Agenda dispatcher,  Next: Built-in agenda views,  Prev: Agenda files,  Up: Agenda views
-
-10.2 The agenda dispatcher
-==========================
-
-The views are created through a dispatcher, which should be bound to a
-global key—for example ‘C-c a’ (*note Activation::).  In the following
-we will assume that ‘C-c a’ is indeed how the dispatcher is accessed and
-list keyboard access to commands accordingly.  After pressing ‘C-c a’,
-an additional letter is required to execute a command.  The dispatcher
-offers the following default commands:
-
-‘a’
-     Create the calendar-like agenda (*note Weekly/daily agenda::).
-‘t / T’
-     Create a list of all TODO items (*note Global TODO list::).
-‘m / M’
-     Create a list of headlines matching a TAGS expression (*note
-     Matching tags and properties::).
-‘s’
-     Create a list of entries selected by a boolean expression of
-     keywords and/or regular expressions that must or must not occur in
-     the entry.
-‘/’
-     Search for a regular expression in all agenda files and
-     additionally in the files listed in
-     ‘org-agenda-text-search-extra-files’.  This uses the Emacs command
-     ‘multi-occur’.  A prefix argument can be used to specify the number
-     of context lines for each match, default is 1.
-‘# / !’
-     Create a list of stuck projects (*note Stuck projects::).
-‘<’
-     Restrict an agenda command to the current buffer(1).  After
-     pressing ‘<’, you still need to press the character selecting the
-     command.
-‘< <’
-     If there is an active region, restrict the following agenda command
-     to the region.  Otherwise, restrict it to the current subtree(2).
-     After pressing ‘< <’, you still need to press the character
-     selecting the command.
-
-‘*’
-     Toggle sticky agenda views.  By default, Org maintains only a
-     single agenda buffer and rebuilds it each time you change the view,
-     to make sure everything is always up to date.  If you often switch
-     between agenda views and the build time bothers you, you can turn
-     on sticky agenda buffers or make this the default by customizing
-     the variable ‘org-agenda-sticky’.  With sticky agendas, the agenda
-     dispatcher will not recreate agenda views from scratch, it will
-     only switch to the selected one, and you need to update the agenda
-     by hand with ‘r’ or ‘g’ when needed.  You can toggle sticky agenda
-     view any time with ‘org-toggle-sticky-agenda’.
-
-   You can also define custom commands that will be accessible through
-the dispatcher, just like the default commands.  This includes the
-possibility to create extended agenda buffers that contain several
-blocks together, for example the weekly agenda, the global TODO list and
-a number of special tags matches.  *Note Custom agenda views::.
-
-   ---------- Footnotes ----------
-
-   (1) For backward compatibility, you can also press ‘1’ to restrict to
-the current buffer.
-
-   (2) For backward compatibility, you can also press ‘0’ to restrict to
-the current region/subtree.
-
-
-File: org,  Node: Built-in agenda views,  Next: Presentation and sorting,  Prev: Agenda dispatcher,  Up: Agenda views
-
-10.3 The built-in agenda views
-==============================
-
-In this section we describe the built-in views.
-
-* Menu:
-
-* Weekly/daily agenda::         The calendar page with current tasks
-* Global TODO list::            All unfinished action items
-* Matching tags and properties::  Structured information with fine-tuned search
-* Search view::                 Find entries by searching for text
-* Stuck projects::              Find projects you need to review
-
-
-File: org,  Node: Weekly/daily agenda,  Next: Global TODO list,  Up: Built-in agenda views
-
-10.3.1 The weekly/daily agenda
-------------------------------
-
-The purpose of the weekly/daily _agenda_ is to act like a page of a
-paper agenda, showing all the tasks for the current week or day.
-
-‘C-c a a     (org-agenda-list)’
-     Compile an agenda for the current week from a list of Org files.
-     The agenda shows the entries for each day.  With a numeric
-     prefix(1) (like ‘C-u 2 1 C-c a a’) you may set the number of days
-     to be displayed.
-
-   The default number of days displayed in the agenda is set by the
-variable ‘org-agenda-span’ (or the obsolete ‘org-agenda-ndays’).  This
-variable can be set to any number of days you want to see by default in
-the agenda, or to a span name, such as ‘day’, ‘week’, ‘month’ or ‘year’.
-For weekly agendas, the default is to start on the previous monday (see
-‘org-agenda-start-on-weekday’).  You can also set the start date using a
-date shift: ‘(setq org-agenda-start-day "+10d")’ will start the agenda
-ten days from today in the future.
-
-   Remote editing from the agenda buffer means, for example, that you
-can change the dates of deadlines and appointments from the agenda
-buffer.  The commands available in the Agenda buffer are listed in *note
-Agenda commands::.
-
-Calendar/Diary integration
-..........................
-
-Emacs contains the calendar and diary by Edward M. Reingold.  The
-calendar displays a three-month calendar with holidays from different
-countries and cultures.  The diary allows you to keep track of
-anniversaries, lunar phases, sunrise/set, recurrent appointments
-(weekly, monthly) and more.  In this way, it is quite complementary to
-Org.  It can be very useful to combine output from Org with the diary.
-
-   In order to include entries from the Emacs diary into Org mode’s
-agenda, you only need to customize the variable
-
-     (setq org-agenda-include-diary t)
-
-After that, everything will happen automatically.  All diary entries
-including holidays, anniversaries, etc., will be included in the agenda
-buffer created by Org mode.  <SPC>, <TAB>, and <RET> can be used from
-the agenda buffer to jump to the diary file in order to edit existing
-diary entries.  The ‘i’ command to insert new entries for the current
-date works in the agenda buffer, as well as the commands ‘S’, ‘M’, and
-‘C’ to display Sunrise/Sunset times, show lunar phases and to convert to
-other calendars, respectively.  ‘c’ can be used to switch back and forth
-between calendar and agenda.
-
-   If you are using the diary only for sexp entries and holidays, it is
-faster to not use the above setting, but instead to copy or even move
-the entries into an Org file.  Org mode evaluates diary-style sexp
-entries, and does it faster because there is no overhead for first
-creating the diary display.  Note that the sexp entries must start at
-the left margin, no whitespace is allowed before them.  For example, the
-following segment of an Org file will be processed and entries will be
-made in the agenda:
-
-     * Holidays
-       :PROPERTIES:
-       :CATEGORY: Holiday
-       :END:
-     %%(org-calendar-holiday)   ; special function for holiday names
-
-     * Birthdays
-       :PROPERTIES:
-       :CATEGORY: Ann
-       :END:
-     %%(org-anniversary 1956  5 14)(2) Arthur Dent is %d years old
-     %%(org-anniversary 1869 10  2) Mahatma Gandhi would be %d years old
-
-Anniversaries from BBDB
-.......................
-
-If you are using the Big Brothers Database to store your contacts, you
-will very likely prefer to store anniversaries in BBDB rather than in a
-separate Org or diary file.  Org supports this and will show BBDB
-anniversaries as part of the agenda.  All you need to do is to add the
-following to one of your agenda files:
-
-     * Anniversaries
-       :PROPERTIES:
-       :CATEGORY: Anniv
-       :END:
-     %%(org-bbdb-anniversaries)
-
-   You can then go ahead and define anniversaries for a BBDB record.
-Basically, you need to press ‘C-o anniversary <RET>’ with the cursor in
-a BBDB record and then add the date in the format ‘YYYY-MM-DD’ or
-‘MM-DD’, followed by a space and the class of the anniversary
-(‘birthday’ or ‘wedding’, or a format string).  If you omit the class,
-it will default to ‘birthday’.  Here are a few examples, the header for
-the file ‘org-bbdb.el’ contains more detailed information.
-
-     1973-06-22
-     06-22
-     1955-08-02 wedding
-     2008-04-14 %s released version 6.01 of org mode, %d years ago
-
-   After a change to BBDB, or for the first agenda display during an
-Emacs session, the agenda display will suffer a short delay as Org
-updates its hash with anniversaries.  However, from then on things will
-be very fast—much faster in fact than a long list of
-‘%%(diary-anniversary)’ entries in an Org or Diary file.
-
-   If you would like to see upcoming anniversaries with a bit of
-forewarning, you can use the following instead:
-
-     * Anniversaries
-       :PROPERTIES:
-       :CATEGORY: Anniv
-       :END:
-     %%(org-bbdb-anniversaries-future 3)
-
-   That will give you three days’ warning: on the anniversary date
-itself and the two days prior.  The argument is optional: if omitted, it
-defaults to 7.
-
-Appointment reminders
-.....................
-
-Org can interact with Emacs appointments notification facility.  To add
-the appointments of your agenda files, use the command
-‘org-agenda-to-appt’.  This command lets you filter through the list of
-your appointments and add only those belonging to a specific category or
-matching a regular expression.  It also reads a ‘APPT_WARNTIME’ property
-which will then override the value of ‘appt-message-warning-time’ for
-this appointment.  See the docstring for details.
-
-   ---------- Footnotes ----------
-
-   (1) For backward compatibility, the universal prefix ‘C-u’ causes all
-TODO entries to be listed before the agenda.  This feature is
-deprecated, use the dedicated TODO list, or a block agenda instead
-(*note Block agenda::).
-
-   (2) ‘org-anniversary’ is just like ‘diary-anniversary’, but the
-argument order is always according to ISO and therefore independent of
-the value of ‘calendar-date-style’.
-
-
-File: org,  Node: Global TODO list,  Next: Matching tags and properties,  Prev: Weekly/daily agenda,  Up: Built-in agenda views
-
-10.3.2 The global TODO list
----------------------------
-
-The global TODO list contains all unfinished TODO items formatted and
-collected into a single place.
-
-‘C-c a t     (org-todo-list)’
-     Show the global TODO list.  This collects the TODO items from all
-     agenda files (*note Agenda views::) into a single buffer.  By
-     default, this lists items with a state the is not a DONE state.
-     The buffer is in ‘agenda-mode’, so there are commands to examine
-     and manipulate the TODO entries directly from that buffer (*note
-     Agenda commands::).
-‘C-c a T     (org-todo-list)’
-     Like the above, but allows selection of a specific TODO keyword.
-     You can also do this by specifying a prefix argument to ‘C-c a t’.
-     You are prompted for a keyword, and you may also specify several
-     keywords by separating them with ‘|’ as the boolean OR operator.
-     With a numeric prefix, the Nth keyword in ‘org-todo-keywords’ is
-     selected.  The ‘r’ key in the agenda buffer regenerates it, and you
-     can give a prefix argument to this command to change the selected
-     TODO keyword, for example ‘3 r’.  If you often need a search for a
-     specific keyword, define a custom command for it (*note Agenda
-     dispatcher::).
-     Matching specific TODO keywords can also be done as part of a tags
-     search (*note Tag searches::).
-
-   Remote editing of TODO items means that you can change the state of a
-TODO entry with a single key press.  The commands available in the TODO
-list are described in *note Agenda commands::.
-
-   Normally the global TODO list simply shows all headlines with TODO
-keywords.  This list can become very long.  There are two ways to keep
-it more compact:
-   − Some people view a TODO item that has been _scheduled_ for
-     execution or have a _deadline_ (*note Timestamps::) as no longer
-     _open_.  Configure the variables
-     ‘org-agenda-todo-ignore-scheduled’,
-     ‘org-agenda-todo-ignore-deadlines’,
-     ‘org-agenda-todo-ignore-timestamp’ and/or
-     ‘org-agenda-todo-ignore-with-date’ to exclude such items from the
-     global TODO list.
-   − TODO items may have sublevels to break up the task into subtasks.
-     In such cases it may be enough to list only the highest level TODO
-     headline and omit the sublevels from the global list.  Configure
-     the variable ‘org-agenda-todo-list-sublevels’ to get this behavior.
-
-
-File: org,  Node: Matching tags and properties,  Next: Search view,  Prev: Global TODO list,  Up: Built-in agenda views
-
-10.3.3 Matching tags and properties
------------------------------------
-
-If headlines in the agenda files are marked with _tags_ (*note Tags::),
-or have properties (*note Properties and columns::), you can select
-headlines based on this metadata and collect them into an agenda buffer.
-The match syntax described here also applies when creating sparse trees
-with ‘C-c / m’.
-
-‘C-c a m     (org-tags-view)’
-     Produce a list of all headlines that match a given set of tags.
-     The command prompts for a selection criterion, which is a boolean
-     logic expression with tags, like ‘+work+urgent-withboss’ or
-     ‘work|home’ (*note Tags::).  If you often need a specific search,
-     define a custom command for it (*note Agenda dispatcher::).
-‘C-c a M     (org-tags-view)’
-     Like ‘C-c a m’, but only select headlines that are also TODO items
-     in a not-DONE state and force checking subitems (see variable
-     ‘org-tags-match-list-sublevels’).  To exclude scheduled/deadline
-     items, see the variable
-     ‘org-agenda-tags-todo-honor-ignore-options’.  Matching specific
-     TODO keywords together with a tags match is also possible, see
-     *note Tag searches::.
-
-   The commands available in the tags list are described in *note Agenda
-commands::.
-
-Match syntax
-............
-
-A search string can use Boolean operators ‘&’ for ‘AND’ and ‘|’ for
-‘OR’.  ‘&’ binds more strongly than ‘|’.  Parentheses are not
-implemented.  Each element in the search is either a tag, a regular
-expression matching tags, or an expression like ‘PROPERTY OPERATOR
-VALUE’ with a comparison operator, accessing a property value.  Each
-element may be preceded by ‘-’, to select against it, and ‘+’ is
-syntactic sugar for positive selection.  The ‘AND’ operator ‘&’ is
-optional when ‘+’ or ‘-’ is present.  Here are some examples, using only
-tags.
-
-‘work’
-     Select headlines tagged ‘:work:’.
-‘work&boss’
-     Select headlines tagged ‘:work:’ and ‘:boss:’.
-‘+work-boss’
-     Select headlines tagged ‘:work:’, but discard those also tagged
-     ‘:boss:’.
-‘work|laptop’
-     Selects lines tagged ‘:work:’ or ‘:laptop:’.
-‘work|laptop+night’
-     Like before, but require the ‘:laptop:’ lines to be tagged also
-     ‘:night:’.
-
-   Instead of a tag, you may also specify a regular expression enclosed
-in curly braces.  For example, ‘work+{^boss.*}’ matches headlines that
-contain the tag ‘:work:’ and any tag starting with ‘boss’.
-
-   Group tags (*note Tag hierarchy::) are expanded as regular
-expressions.  E.g., if ‘:work:’ is a group tag for the group
-‘:work:lab:conf:’, then searching for ‘work’ will search for
-‘{\(?:work\|lab\|conf\)}’ and searching for ‘-work’ will search for all
-headlines but those with one of the tags in the group (i.e.,
-‘-{\(?:work\|lab\|conf\)}’).
-
-   You may also test for properties (*note Properties and columns::) at
-the same time as matching tags.  The properties may be real properties,
-or special properties that represent other metadata (*note Special
-properties::).  For example, the “property” ‘TODO’ represents the TODO
-keyword of the entry and the “property” ‘PRIORITY’ represents the
-PRIORITY keyword of the entry.
-
-   In addition to the properties mentioned above, ‘LEVEL’ represents the
-level of an entry.  So a search ‘+LEVEL=3+boss-TODO="DONE"’ lists all
-level three headlines that have the tag ‘boss’ and are _not_ marked with
-the TODO keyword DONE.  In buffers with ‘org-odd-levels-only’ set,
-‘LEVEL’ does not count the number of stars, but ‘LEVEL=2’ will
-correspond to 3 stars etc.
-
-   Here are more examples:
-
-‘work+TODO="WAITING"’
-     Select ‘:work:’-tagged TODO lines with the specific TODO keyword
-     ‘WAITING’.
-‘work+TODO="WAITING"|home+TODO="WAITING"’
-     Waiting tasks both at work and at home.
-
-   When matching properties, a number of different operators can be used
-to test the value of a property.  Here is a complex example:
-
-     +work-boss+PRIORITY="A"+Coffee="unlimited"+Effort<2         \
-              +With={Sarah\|Denny}+SCHEDULED>="<2008-10-11>"
-
-The type of comparison will depend on how the comparison value is
-written:
-   − If the comparison value is a plain number, a numerical comparison
-     is done, and the allowed operators are ‘<’, ‘=’, ‘>’, ‘<=’, ‘>=’,
-     and ‘<>’.
-   − If the comparison value is enclosed in double-quotes, a string
-     comparison is done, and the same operators are allowed.
-   − If the comparison value is enclosed in double-quotes _and_ angular
-     brackets (like ‘DEADLINE<="<2008-12-24 18:30>"’), both values are
-     assumed to be date/time specifications in the standard Org way, and
-     the comparison will be done accordingly.  Special values that will
-     be recognized are ‘"<now>"’ for now (including time), and
-     ‘"<today>"’, and ‘"<tomorrow>"’ for these days at 00:00 hours,
-     i.e., without a time specification.  Also strings like ‘"<+5d>"’ or
-     ‘"<-2m>"’ with units ‘d’, ‘w’, ‘m’, and ‘y’ for day, week, month,
-     and year, respectively, can be used.
-   − If the comparison value is enclosed in curly braces, a regexp match
-     is performed, with ‘=’ meaning that the regexp matches the property
-     value, and ‘<>’ meaning that it does not match.
-
-   So the search string in the example finds entries tagged ‘:work:’ but
-not ‘:boss:’, which also have a priority value ‘A’, a ‘:Coffee:’
-property with the value ‘unlimited’, an ‘Effort’ property that is
-numerically smaller than 2, a ‘:With:’ property that is matched by the
-regular expression ‘Sarah\|Denny’, and that are scheduled on or after
-October 11, 2008.
-
-   You can configure Org mode to use property inheritance during a
-search, but beware that this can slow down searches considerably.  See
-*note Property inheritance::, for details.
-
-   For backward compatibility, and also for typing speed, there is also
-a different way to test TODO states in a search.  For this, terminate
-the tags/property part of the search string (which may include several
-terms connected with ‘|’) with a ‘/’ and then specify a Boolean
-expression just for TODO keywords.  The syntax is then similar to that
-for tags, but should be applied with care: for example, a positive
-selection on several TODO keywords cannot meaningfully be combined with
-boolean AND.  However, _negative selection_ combined with AND can be
-meaningful.  To make sure that only lines are checked that actually have
-any TODO keyword (resulting in a speed-up), use ‘C-c a M’, or
-equivalently start the TODO part after the slash with ‘!’.  Using ‘C-c a
-M’ or ‘/!’ will not match TODO keywords in a DONE state.  Examples:
-
-‘work/WAITING’
-     Same as ‘work+TODO="WAITING"’
-‘work/!-WAITING-NEXT’
-     Select ‘:work:’-tagged TODO lines that are neither ‘WAITING’ nor
-     ‘NEXT’
-‘work/!+WAITING|+NEXT’
-     Select ‘:work:’-tagged TODO lines that are either ‘WAITING’ or
-     ‘NEXT’.
-
-
-File: org,  Node: Search view,  Next: Stuck projects,  Prev: Matching tags and properties,  Up: Built-in agenda views
-
-10.3.4 Search view
-------------------
-
-This agenda view is a general text search facility for Org mode entries.
-It is particularly useful to find notes.
-
-‘C-c a s     (org-search-view)’
-     This is a special search that lets you select entries by matching a
-     substring or specific words using a boolean logic.
-   For example, the search string ‘computer equipment’ will find entries
-that contain ‘computer equipment’ as a substring.  If the two words are
-separated by more space or a line break, the search will still match.
-Search view can also search for specific keywords in the entry, using
-Boolean logic.  The search string ‘+computer +wifi -ethernet
--{8\.11[bg]}’ will search for note entries that contain the keywords
-‘computer’ and ‘wifi’, but not the keyword ‘ethernet’, and which are
-also not matched by the regular expression ‘8\.11[bg]’, meaning to
-exclude both 8.11b and 8.11g.  The first ‘+’ is necessary to turn on
-word search, other ‘+’ characters are optional.  For more details, see
-the docstring of the command ‘org-search-view’.
-
-   Note that in addition to the agenda files, this command will also
-search the files listed in ‘org-agenda-text-search-extra-files’.
-
-
-File: org,  Node: Stuck projects,  Prev: Search view,  Up: Built-in agenda views
-
-10.3.5 Stuck projects
----------------------
-
-If you are following a system like David Allen’s GTD to organize your
-work, one of the “duties” you have is a regular review to make sure that
-all projects move along.  A _stuck_ project is a project that has no
-defined next actions, so it will never show up in the TODO lists Org
-mode produces.  During the review, you need to identify such projects
-and define next actions for them.
-
-‘C-c a #     (org-agenda-list-stuck-projects)’
-     List projects that are stuck.
-‘C-c a !’
-     Customize the variable ‘org-stuck-projects’ to define what a stuck
-     project is and how to find it.
-
-   You almost certainly will have to configure this view before it will
-work for you.  The built-in default assumes that all your projects are
-level-2 headlines, and that a project is not stuck if it has at least
-one entry marked with a TODO keyword TODO or NEXT or NEXTACTION.
-
-   Let’s assume that you, in your own way of using Org mode, identify
-projects with a tag PROJECT, and that you use a TODO keyword MAYBE to
-indicate a project that should not be considered yet.  Let’s further
-assume that the TODO keyword DONE marks finished projects, and that NEXT
-and TODO indicate next actions.  The tag @SHOP indicates shopping and is
-a next action even without the NEXT tag.  Finally, if the project
-contains the special word IGNORE anywhere, it should not be listed
-either.  In this case you would start by identifying eligible projects
-with a tags/todo match(1) ‘+PROJECT/-MAYBE-DONE’, and then check for
-TODO, NEXT, @SHOP, and IGNORE in the subtree to identify projects that
-are not stuck.  The correct customization for this is
-
-     (setq org-stuck-projects
-           '("+PROJECT/-MAYBE-DONE" ("NEXT" "TODO") ("@SHOP")
-                                    "\\<IGNORE\\>"))
-
-   Note that if a project is identified as non-stuck, the subtree of
-this entry will still be searched for stuck projects.
-
-   ---------- Footnotes ----------
-
-   (1) *Note Tag searches::.
-
-
-File: org,  Node: Presentation and sorting,  Next: Agenda commands,  Prev: Built-in agenda views,  Up: Agenda views
-
-10.4 Presentation and sorting
-=============================
-
-Before displaying items in an agenda view, Org mode visually prepares
-the items and sorts them.  Each item occupies a single line.  The line
-starts with a _prefix_ that contains the _category_ (*note Categories::)
-of the item and other important information.  You can customize in which
-column tags will be displayed through ‘org-agenda-tags-column’.  You can
-also customize the prefix using the option ‘org-agenda-prefix-format’.
-This prefix is followed by a cleaned-up version of the outline headline
-associated with the item.
-
-* Menu:
-
-* Categories::                  Not all tasks are equal
-* Time-of-day specifications::  How the agenda knows the time
-* Sorting agenda items::        The order of things
-* Filtering/limiting agenda items::  Dynamically narrow the agenda
-
-
-File: org,  Node: Categories,  Next: Time-of-day specifications,  Up: Presentation and sorting
-
-10.4.1 Categories
------------------
-
-The category is a broad label assigned to each agenda item.  By default,
-the category is simply derived from the file name, but you can also
-specify it with a special line in the buffer, like this:
-
-     #+CATEGORY: Thesis
-
-If you would like to have a special ‘CATEGORY’ for a single entry or a
-(sub)tree, give the entry a ‘:CATEGORY:’ property with the special
-category you want to apply as the value.
-
-The display in the agenda buffer looks best if the category is not
-longer than 10 characters.
-
-You can set up icons for category by customizing the
-‘org-agenda-category-icon-alist’ variable.
-
-
-File: org,  Node: Time-of-day specifications,  Next: Sorting agenda items,  Prev: Categories,  Up: Presentation and sorting
-
-10.4.2 Time-of-day specifications
----------------------------------
-
-Org mode checks each agenda item for a time-of-day specification.  The
-time can be part of the timestamp that triggered inclusion into the
-agenda, for example as in ‘<2005-05-10 Tue 19:00>’.  Time ranges can be
-specified with two timestamps, like
-‘<2005-05-10 Tue 20:30>--<2005-05-10 Tue 22:15>’.
-
-   In the headline of the entry itself, a time(range) may also appear as
-plain text (like ‘12:45’ or a ‘8:30-1pm’)(1).
-
-   If the agenda integrates the Emacs diary (*note Weekly/daily
-agenda::), time specifications in diary entries are recognized as well.
-
-   For agenda display, Org mode extracts the time and displays it in a
-standard 24 hour format as part of the prefix.  The example times in the
-previous paragraphs would end up in the agenda like this:
-
-         8:30-13:00 Arthur Dent lies in front of the bulldozer
-        12:45...... Ford Prefect arrives and takes Arthur to the pub
-        19:00...... The Vogon reads his poem
-        20:30-22:15 Marvin escorts the Hitchhikers to the bridge
-
-   If the agenda is in single-day mode, or for the display of today, the
-timed entries are embedded in a time grid, like
-
-         8:00...... ------------------
-         8:30-13:00 Arthur Dent lies in front of the bulldozer
-        10:00...... ------------------
-        12:00...... ------------------
-        12:45...... Ford Prefect arrives and takes Arthur to the pub
-        14:00...... ------------------
-        16:00...... ------------------
-        18:00...... ------------------
-        19:00...... The Vogon reads his poem
-        20:00...... ------------------
-        20:30-22:15 Marvin escorts the Hitchhikers to the bridge
-
-   The time grid can be turned on and off with the variable
-‘org-agenda-use-time-grid’, and can be configured with
-‘org-agenda-time-grid’.
-
-   ---------- Footnotes ----------
-
-   (1) You can, however, disable this by setting
-‘org-agenda-search-headline-for-time’ variable to a ‘nil’ value.
-
-
-File: org,  Node: Sorting agenda items,  Next: Filtering/limiting agenda items,  Prev: Time-of-day specifications,  Up: Presentation and sorting
-
-10.4.3 Sorting agenda items
----------------------------
-
-Before being inserted into a view, the items are sorted.  How this is
-done depends on the type of view.
-   • For the daily/weekly agenda, the items for each day are sorted.
-     The default order is to first collect all items containing an
-     explicit time-of-day specification.  These entries will be shown at
-     the beginning of the list, as a _schedule_ for the day.  After
-     that, items remain grouped in categories, in the sequence given by
-     ‘org-agenda-files’.  Within each category, items are sorted by
-     priority (*note Priorities::), which is composed of the base
-     priority (2000 for priority ‘A’, 1000 for ‘B’, and 0 for ‘C’), plus
-     additional increments for overdue scheduled or deadline items.
-   • For the TODO list, items remain in the order of categories, but
-     within each category, sorting takes place according to priority
-     (*note Priorities::).  The priority used for sorting derives from
-     the priority cookie, with additions depending on how close an item
-     is to its due or scheduled date.
-   • For tags matches, items are not sorted at all, but just appear in
-     the sequence in which they are found in the agenda files.
-
-   Sorting can be customized using the variable
-‘org-agenda-sorting-strategy’, and may also include criteria based on
-the estimated effort of an entry (*note Effort estimates::).
-
-
-File: org,  Node: Filtering/limiting agenda items,  Prev: Sorting agenda items,  Up: Presentation and sorting
-
-10.4.4 Filtering/limiting agenda items
---------------------------------------
-
-Agenda built-in or customized commands are statically defined.  Agenda
-filters and limits provide two ways of dynamically narrowing down the
-list of agenda entries: _filters_ and _limits_.  Filters only act on the
-display of the items, while limits take effect before the list of agenda
-entries is built.  Filters are more often used interactively, while
-limits are mostly useful when defined as local variables within custom
-agenda commands.
-
-Filtering in the agenda
-.......................
-
-‘/     (org-agenda-filter-by-tag)’
-     Filter the agenda view with respect to a tag and/or effort
-     estimates.  The difference between this and a custom agenda command
-     is that filtering is very fast, so that you can switch quickly
-     between different filters without having to recreate the agenda.(1)
-
-     You will be prompted for a tag selection letter; <SPC> will mean
-     any tag at all.  Pressing <TAB> at that prompt will offer use
-     completion to select a tag (including any tags that do not have a
-     selection character).  The command then hides all entries that do
-     not contain or inherit this tag.  When called with prefix arg,
-     remove the entries that _do_ have the tag.  A second ‘/’ at the
-     prompt will turn off the filter and unhide any hidden entries.
-     Pressing ‘+’ or ‘-’ switches between filtering and excluding the
-     next tag.
-
-     Org also supports automatic, context-aware tag filtering.  If the
-     variable ‘org-agenda-auto-exclude-function’ is set to a
-     user-defined function, that function can decide which tags should
-     be excluded from the agenda automatically.  Once this is set, the
-     ‘/’ command then accepts ‘<RET>’ as a sub-option key and runs the
-     auto exclusion logic.  For example, let’s say you use a ‘Net’ tag
-     to identify tasks which need network access, an ‘Errand’ tag for
-     errands in town, and a ‘Call’ tag for making phone calls.  You
-     could auto-exclude these tags based on the availability of the
-     Internet, and outside of business hours, with something like this:
-
-          (defun org-my-auto-exclude-function (tag)
-            (and (cond
-                  ((string= tag "Net")
-                   (/= 0 (call-process "/sbin/ping" nil nil nil
-                                       "-c1" "-q" "-t1" "mail.gnu.org")))
-                  ((or (string= tag "Errand") (string= tag "Call"))
-                   (let ((hour (nth 2 (decode-time))))
-                     (or (< hour 8) (> hour 21)))))
-                 (concat "-" tag)))
-
-          (setq org-agenda-auto-exclude-function 'org-my-auto-exclude-function)
-
-‘[ ] { }’
-     in search view
-          add new search words (‘[’ and ‘]’) or new regular expressions
-          (‘{’ and ‘}’) to the query string.  The opening bracket/brace
-          will add a positive search term prefixed by ‘+’, indicating
-          that this search term must occur/match in the entry.  The
-          closing bracket/brace will add a negative search term which
-          must not occur/match in the entry for it to be selected.
-
-‘<     (org-agenda-filter-by-category)’
-
-     Filter the current agenda view with respect to the category of the
-     item at point.  Pressing ‘<’ another time will remove this filter.
-     When called with a prefix argument exclude the category of the item
-     at point from the agenda.
-
-     You can add a filter preset in custom agenda commands through the
-     option ‘org-agenda-category-filter-preset’.  *Note Setting
-     options::.
-
-‘^     (org-agenda-filter-by-top-headline)’
-     Filter the current agenda view and only display the siblings and
-     the parent headline of the one at point.
-
-‘=     (org-agenda-filter-by-regexp)’
-
-     Filter the agenda view by a regular expression: only show agenda
-     entries matching the regular expression the user entered.  When
-     called with a prefix argument, it will filter _out_ entries
-     matching the regexp.  With two universal prefix arguments, it will
-     remove all the regexp filters, which can be accumulated.
-
-     You can add a filter preset in custom agenda commands through the
-     option ‘org-agenda-regexp-filter-preset’.  *Note Setting options::.
-
-‘_     (org-agenda-filter-by-effort)’
-     Filter the agenda view with respect to effort estimates.  You first
-     need to set up allowed efforts globally, for example
-          (setq org-global-properties
-              '(("Effort_ALL". "0 0:10 0:30 1:00 2:00 3:00 4:00")))
-     You can then filter for an effort by first typing an operator, one
-     of ‘<’, ‘>’, and ‘=’, and then the one-digit index of an effort
-     estimate in your array of allowed values, where ‘0’ means the 10th
-     value.  The filter will then restrict to entries with effort
-     smaller-or-equal, equal, or larger-or-equal than the selected
-     value.  For application of the operator, entries without a defined
-     effort will be treated according to the value of
-     ‘org-sort-agenda-noeffort-is-high’.
-
-     When called with a prefix argument, it will remove entries matching
-     the condition.  With two universal prefix arguments, it will clear
-     effort filters, which can be accumulated.
-
-     You can add a filter preset in custom agenda commands through the
-     option ‘org-agenda-effort-filter-preset’.  *Note Setting options::.
-
-‘|     (org-agenda-filter-remove-all)’
-     Remove all filters in the current agenda view.
-
-Setting limits for the agenda
-.............................
-
-Here is a list of options that you can set, either globally, or locally
-in your custom agenda views (*note Custom agenda views::).
-
-‘org-agenda-max-entries’
-     Limit the number of entries.
-‘org-agenda-max-effort’
-     Limit the duration of accumulated efforts (as minutes).
-‘org-agenda-max-todos’
-     Limit the number of entries with TODO keywords.
-‘org-agenda-max-tags’
-     Limit the number of tagged entries.
-
-   When set to a positive integer, each option will exclude entries from
-other categories: for example, ‘(setq org-agenda-max-effort 100)’ will
-limit the agenda to 100 minutes of effort and exclude any entry that has
-no effort property.  If you want to include entries with no effort
-property, use a negative value for ‘org-agenda-max-effort’.
-
-   One useful setup is to use ‘org-agenda-max-entries’ locally in a
-custom command.  For example, this custom command will display the next
-five entries with a ‘NEXT’ TODO keyword.
-
-     (setq org-agenda-custom-commands
-           '(("n" todo "NEXT"
-              ((org-agenda-max-entries 5)))))
-
-   Once you mark one of these five entry as ‘DONE’, rebuilding the
-agenda will again the next five entries again, including the first entry
-that was excluded so far.
-
-   You can also dynamically set temporary limits, which will be lost
-when rebuilding the agenda:
-
-‘~     (org-agenda-limit-interactively)’
-     This prompts for the type of limit to apply and its value.
-
-   ---------- Footnotes ----------
-
-   (1) Custom commands can preset a filter by binding the variable
-‘org-agenda-tag-filter-preset’ as an option.  This filter will then be
-applied to the view and persist as a basic filter through refreshes and
-more secondary filtering.  The filter is a global property of the entire
-agenda view—in a block agenda, you should only set this in the global
-options section, not in the section of an individual block.
-
-
-File: org,  Node: Agenda commands,  Next: Custom agenda views,  Prev: Presentation and sorting,  Up: Agenda views
-
-10.5 Commands in the agenda buffer
-==================================
-
-Entries in the agenda buffer are linked back to the Org file or diary
-file where they originate.  You are not allowed to edit the agenda
-buffer itself, but commands are provided to show and jump to the
-original entry location, and to edit the Org files “remotely” from the
-agenda buffer.  In this way, all information is stored only once,
-removing the risk that your agenda and note files may diverge.
-
-   Some commands can be executed with mouse clicks on agenda lines.  For
-the other commands, the cursor needs to be in the desired line.
-
-     Motion
-     ......
-
-‘n     (org-agenda-next-line)’
-     Next line (same as <DOWN> and ‘C-n’).
-‘p     (org-agenda-previous-line)’
-     Previous line (same as <UP> and ‘C-p’).
-‘N     (org-agenda-next-item)’
-     Next item: same as next line, but only consider items.
-‘P     (org-agenda-previous-item)’
-     Previous item: same as previous line, but only consider items.
-
-     View/Go to Org file
-     ...................
-
-‘<SPC>  or  mouse-3     (org-agenda-show-and-scroll-up)’
-     Display the original location of the item in another window.  With
-     prefix arg, make sure that drawers stay folded.
-‘L     (org-agenda-recenter)’
-     Display original location and recenter that window.
-‘<TAB>  or  mouse-2     (org-agenda-goto)’
-     Go to the original location of the item in another window.
-‘<RET>     (org-agenda-switch-to)’
-     Go to the original location of the item and delete other windows.
-‘F     (org-agenda-follow-mode)’
-     Toggle Follow mode.  In Follow mode, as you move the cursor through
-     the agenda buffer, the other window always shows the corresponding
-     location in the Org file.  The initial setting for this mode in new
-     agenda buffers can be set with the variable
-     ‘org-agenda-start-with-follow-mode’.
-‘C-c C-x b     (org-agenda-tree-to-indirect-buffer)’
-     Display the entire subtree of the current item in an indirect
-     buffer.  With a numeric prefix argument N, go up to level N and
-     then take that tree.  If N is negative, go up that many levels.
-     With a ‘C-u’ prefix, do not remove the previously used indirect
-     buffer.
-
-‘C-c C-o     (org-agenda-open-link)’
-     Follow a link in the entry.  This will offer a selection of any
-     links in the text belonging to the referenced Org node.  If there
-     is only one link, it will be followed without a selection prompt.
-
-     Change display
-     ..............
-
-‘A’
-     Interactively select another agenda view and append it to the
-     current view.
-‘o’
-     Delete other windows.
-‘v d  or short  d     (org-agenda-day-view)’
-‘v w  or short  w     (org-agenda-week-view)’
-‘v t     (org-agenda-fortnight-view)’
-‘v m     (org-agenda-month-view)’
-‘v y     (org-agenda-year-view)’
-‘v <SPC>     (org-agenda-reset-view)’
-     Switch to day/week/month/year view.  When switching to day or week
-     view, this setting becomes the default for subsequent agenda
-     refreshes.  Since month and year views are slow to create, they do
-     not become the default.  A numeric prefix argument may be used to
-     jump directly to a specific day of the year, ISO week, month, or
-     year, respectively.  For example, ‘32 d’ jumps to February 1st, ‘9
-     w’ to ISO week number 9.  When setting day, week, or month view, a
-     year may be encoded in the prefix argument as well.  For example,
-     ‘200712 w’ will jump to week 12 in 2007.  If such a year
-     specification has only one or two digits, it will be mapped to the
-     interval 1938–2037.  ‘v <SPC>’ will reset to what is set in
-     ‘org-agenda-span’.
-‘f     (org-agenda-later)’
-     Go forward in time to display the following
-     ‘org-agenda-current-span’ days.  For example, if the display covers
-     a week, switch to the following week.  With prefix arg, go forward
-     that many times ‘org-agenda-current-span’ days.
-‘b     (org-agenda-earlier)’
-     Go backward in time to display earlier dates.
-‘.     (org-agenda-goto-today)’
-     Go to today.
-‘j     (org-agenda-goto-date)’
-     Prompt for a date and go there.
-‘J     (org-agenda-clock-goto)’
-     Go to the currently clocked-in task in the agenda buffer.
-‘D     (org-agenda-toggle-diary)’
-     Toggle the inclusion of diary entries.  See *note Weekly/daily
-     agenda::.
-‘v l  or short  l     (org-agenda-log-mode)’
-     Toggle Logbook mode.  In Logbook mode, entries that were marked
-     DONE while logging was on (variable ‘org-log-done’) are shown in
-     the agenda, as are entries that have been clocked on that day.  You
-     can configure the entry types that should be included in log mode
-     using the variable ‘org-agenda-log-mode-items’.  When called with a
-     ‘C-u’ prefix, show all possible logbook entries, including state
-     changes.  When called with two prefix arguments ‘C-u C-u’, show
-     only logging information, nothing else.  ‘v L’ is equivalent to
-     ‘C-u v l’.
-‘v [  or short  [     (org-agenda-manipulate-query-add)’
-     Include inactive timestamps into the current view.  Only for
-     weekly/daily agenda.
-‘v a     (org-agenda-archives-mode)’
-‘v A     (org-agenda-archives-mode 'files)’
-     Toggle Archives mode.  In Archives mode, trees that are marked
-     ‘ARCHIVED’ are also scanned when producing the agenda.  When you
-     use the capital ‘A’, even all archive files are included.  To exit
-     archives mode, press ‘v a’ again.
-‘v R  or short  R     (org-agenda-clockreport-mode)’
-     Toggle Clockreport mode.  In Clockreport mode, the daily/weekly
-     agenda will always show a table with the clocked times for the time
-     span and file scope covered by the current agenda view.  The
-     initial setting for this mode in new agenda buffers can be set with
-     the variable ‘org-agenda-start-with-clockreport-mode’.  By using a
-     prefix argument when toggling this mode (i.e., ‘C-u R’), the clock
-     table will not show contributions from entries that are hidden by
-     agenda filtering(1).  See also the variable
-     ‘org-clock-report-include-clocking-task’.
-‘v c’
-     Show overlapping clock entries, clocking gaps, and other clocking
-     problems in the current agenda range.  You can then visit clocking
-     lines and fix them manually.  See the variable
-     ‘org-agenda-clock-consistency-checks’ for information on how to
-     customize the definition of what constituted a clocking problem.
-     To return to normal agenda display, press ‘l’ to exit Logbook mode.
-‘v E  or short  E     (org-agenda-entry-text-mode)’
-     Toggle entry text mode.  In entry text mode, a number of lines from
-     the Org outline node referenced by an agenda line will be displayed
-     below the line.  The maximum number of lines is given by the
-     variable ‘org-agenda-entry-text-maxlines’.  Calling this command
-     with a numeric prefix argument will temporarily modify that number
-     to the prefix value.
-‘G     (org-agenda-toggle-time-grid)’
-     Toggle the time grid on and off.  See also the variables
-     ‘org-agenda-use-time-grid’ and ‘org-agenda-time-grid’.
-‘r     (org-agenda-redo)’
-     Recreate the agenda buffer, for example to reflect the changes
-     after modification of the timestamps of items with ‘S-<LEFT>’ and
-     ‘S-<RIGHT>’.  When the buffer is the global TODO list, a prefix
-     argument is interpreted to create a selective list for a specific
-     TODO keyword.
-‘g     (org-agenda-redo)’
-     Same as ‘r’.
-‘C-x C-s  or short  s     (org-save-all-org-buffers)’
-     Save all Org buffers in the current Emacs session, and also the
-     locations of IDs.
-‘C-c C-x C-c     (org-agenda-columns)’
-     Invoke column view (*note Column view::) in the agenda buffer.  The
-     column view format is taken from the entry at point, or (if there
-     is no entry at point), from the first entry in the agenda view.  So
-     whatever the format for that entry would be in the original buffer
-     (taken from a property, from a ‘#+COLUMNS’ line, or from the
-     default variable ‘org-columns-default-format’), will be used in the
-     agenda.
-
-‘C-c C-x >     (org-agenda-remove-restriction-lock)’
-     Remove the restriction lock on the agenda, if it is currently
-     restricted to a file or subtree (*note Agenda files::).
-
-     Secondary filtering and query editing
-     .....................................
-
-     For a detailed description of these commands, *note
-     Filtering/limiting agenda items::.
-
-‘/     (org-agenda-filter-by-tag)’
-     Filter the agenda view with respect to a tag and/or effort
-     estimates.
-
-‘<     (org-agenda-filter-by-category)’
-     Filter the current agenda view with respect to the category of the
-     item at point.
-
-‘^     (org-agenda-filter-by-top-headline)’
-     Filter the current agenda view and only display the siblings and
-     the parent headline of the one at point.
-
-‘=     (org-agenda-filter-by-regexp)’
-     Filter the agenda view by a regular expression.
-
-‘_     (org-agenda-filter-by-effort)’
-     Filter the agenda view with respect to effort estimates.
-
-‘|     (org-agenda-filter-remove-all)’
-     Remove all filters in the current agenda view.
-
-     Remote editing
-     ..............
-
-‘0--9’
-     Digit argument.
-‘C-_     (org-agenda-undo)’
-     Undo a change due to a remote editing command.  The change is
-     undone both in the agenda buffer and in the remote buffer.
-‘t     (org-agenda-todo)’
-     Change the TODO state of the item, both in the agenda and in the
-     original org file.
-‘C-S-<RIGHT>     (org-agenda-todo-nextset)’
-‘C-S-<LEFT>     (org-agenda-todo-previousset)’
-     Switch to the next/previous set of TODO keywords.
-‘C-k     (org-agenda-kill)’
-     Delete the current agenda item along with the entire subtree
-     belonging to it in the original Org file.  If the text to be
-     deleted remotely is longer than one line, the kill needs to be
-     confirmed by the user.  See variable ‘org-agenda-confirm-kill’.
-‘C-c C-w     (org-agenda-refile)’
-     Refile the entry at point.
-‘C-c C-x C-a  or short  a     (org-agenda-archive-default-with-confirmation)’
-     Archive the subtree corresponding to the entry at point using the
-     default archiving command set in ‘org-archive-default-command’.
-     When using the ‘a’ key, confirmation will be required.
-‘C-c C-x a     (org-agenda-toggle-archive-tag)’
-     Toggle the ARCHIVE tag for the current headline.
-‘C-c C-x A     (org-agenda-archive-to-archive-sibling)’
-     Move the subtree corresponding to the current entry to its _archive
-     sibling_.
-‘C-c C-x C-s  or short  $     (org-agenda-archive)’
-     Archive the subtree corresponding to the current headline.  This
-     means the entry will be moved to the configured archive location,
-     most likely a different file.
-‘T     (org-agenda-show-tags)’
-     Show all tags associated with the current item.  This is useful if
-     you have turned off ‘org-agenda-show-inherited-tags’, but still
-     want to see all tags of a headline occasionally.
-‘:     (org-agenda-set-tags)’
-     Set tags for the current headline.  If there is an active region in
-     the agenda, change a tag for all headings in the region.
-‘,’
-     Set the priority for the current item (‘org-agenda-priority’).  Org
-     mode prompts for the priority character.  If you reply with <SPC>,
-     the priority cookie is removed from the entry.
-‘P     (org-agenda-show-priority)’
-     Display weighted priority of current item.
-‘+  or  S-<UP>     (org-agenda-priority-up)’
-     Increase the priority of the current item.  The priority is changed
-     in the original buffer, but the agenda is not resorted.  Use the
-     ‘r’ key for this.
-‘-  or  S-<DOWN>     (org-agenda-priority-down)’
-     Decrease the priority of the current item.
-‘z  or  C-c C-z     (org-agenda-add-note)’
-     Add a note to the entry.  This note will be recorded, and then
-     filed to the same location where state change notes are put.
-     Depending on ‘org-log-into-drawer’, this may be inside a drawer.
-‘C-c C-a     (org-attach)’
-     Dispatcher for all command related to attachments.
-‘C-c C-s     (org-agenda-schedule)’
-     Schedule this item.  With prefix arg remove the scheduling
-     timestamp
-‘C-c C-d     (org-agenda-deadline)’
-     Set a deadline for this item.  With prefix arg remove the deadline.
-‘S-<RIGHT>     (org-agenda-do-date-later)’
-     Change the timestamp associated with the current line by one day
-     into the future.  If the date is in the past, the first call to
-     this command will move it to today.
-     With a numeric prefix argument, change it by that many days.  For
-     example, ‘3 6 5 S-<RIGHT>’ will change it by a year.  With a ‘C-u’
-     prefix, change the time by one hour.  If you immediately repeat the
-     command, it will continue to change hours even without the prefix
-     arg.  With a double ‘C-u C-u’ prefix, do the same for changing
-     minutes.
-     The stamp is changed in the original Org file, but the change is
-     not directly reflected in the agenda buffer.  Use ‘r’ or ‘g’ to
-     update the buffer.
-‘S-<LEFT>     (org-agenda-do-date-earlier)’
-     Change the timestamp associated with the current line by one day
-     into the past.
-‘>     (org-agenda-date-prompt)’
-     Change the timestamp associated with the current line.  The key ‘>’
-     has been chosen, because it is the same as ‘S-.’ on my keyboard.
-‘I     (org-agenda-clock-in)’
-     Start the clock on the current item.  If a clock is running
-     already, it is stopped first.
-‘O     (org-agenda-clock-out)’
-     Stop the previously started clock.
-‘X     (org-agenda-clock-cancel)’
-     Cancel the currently running clock.
-‘J     (org-agenda-clock-goto)’
-     Jump to the running clock in another window.
-‘k     (org-agenda-capture)’
-     Like ‘org-capture’, but use the date at point as the default date
-     for the capture template.  See ‘org-capture-use-agenda-date’ to
-     make this the default behavior of ‘org-capture’.
-
-     Dragging agenda lines forward/backward
-     ......................................
-
-‘M-<up>     (org-agenda-drag-line-backward)’
-     Drag the line at point backward one line(2).  With a numeric prefix
-     argument, drag backward by that many lines.
-
-‘M-<down>     (org-agenda-drag-line-forward)’
-     Drag the line at point forward one line.  With a numeric prefix
-     argument, drag forward by that many lines.
-
-     Bulk remote editing selected entries
-     ....................................
-
-‘m     (org-agenda-bulk-mark)’
-     Mark the entry at point for bulk action.  With numeric prefix
-     argument, mark that many successive entries.
-‘*     (org-agenda-bulk-mark-all)’
-     Mark all visible agenda entries for bulk action.
-‘u     (org-agenda-bulk-unmark)’
-     Unmark entry at point for bulk action.
-‘U     (org-agenda-bulk-remove-all-marks)’
-     Unmark all marked entries for bulk action.
-‘M-m     (org-agenda-bulk-toggle)’
-     Toggle mark of the entry at point for bulk action.
-‘M-*     (org-agenda-bulk-toggle-all)’
-     Toggle marks of all visible entries for bulk action.
-‘%     (org-agenda-bulk-mark-regexp)’
-     Mark entries matching a regular expression for bulk action.
-‘B     (org-agenda-bulk-action)’
-     Bulk action: act on all marked entries in the agenda.  This will
-     prompt for another key to select the action to be applied.  The
-     prefix arg to ‘B’ will be passed through to the ‘s’ and ‘d’
-     commands, to bulk-remove these special timestamps.  By default,
-     marks are removed after the bulk.  If you want them to persist, set
-     ‘org-agenda-persistent-marks’ to ‘t’ or hit ‘p’ at the prompt.
-
-     ‘*’
-          Toggle persistent marks.
-     ‘$’
-          Archive all selected entries.
-     ‘A’
-          Archive entries by moving them to their respective archive
-          siblings.
-     ‘t’
-          Change TODO state.  This prompts for a single TODO keyword and
-          changes the state of all selected entries, bypassing blocking
-          and suppressing logging notes (but not timestamps).
-     ‘+’
-          Add a tag to all selected entries.
-     ‘-’
-          Remove a tag from all selected entries.
-     ‘s’
-          Schedule all items to a new date.  To shift existing schedule
-          dates by a fixed number of days, use something starting with
-          double plus at the prompt, for example ‘++8d’ or ‘++2w’.
-     ‘d’
-          Set deadline to a specific date.
-     ‘r’
-          Prompt for a single refile target and move all entries.  The
-          entries will no longer be in the agenda; refresh (‘g’) to
-          bring them back.
-     ‘S’
-          Reschedule randomly into the coming N days.  N will be
-          prompted for.  With prefix arg (‘C-u B S’), scatter only
-          across weekdays.
-     ‘f’
-          Apply a function(3) to marked entries.  For example, the
-          function below sets the CATEGORY property of the entries to
-          web.
-
-               (defun set-category ()
-                 (interactive "P")
-                 (let* ((marker (or (org-get-at-bol 'org-hd-marker)
-                                    (org-agenda-error)))
-                        (buffer (marker-buffer marker)))
-                   (with-current-buffer buffer
-                     (save-excursion
-                       (save-restriction
-                         (widen)
-                         (goto-char marker)
-                         (org-back-to-heading t)
-                         (org-set-property "CATEGORY" "web"))))))
-
-     Calendar commands
-     .................
-
-‘c     (org-agenda-goto-calendar)’
-     Open the Emacs calendar and move to the date at the agenda cursor.
-‘c     (org-calendar-goto-agenda)’
-     When in the calendar, compute and show the Org mode agenda for the
-     date at the cursor.
-‘i     (org-agenda-diary-entry)’
-     Insert a new entry into the diary, using the date at the cursor and
-     (for block entries) the date at the mark.  This will add to the
-     Emacs diary file(4), in a way similar to the ‘i’ command in the
-     calendar.  The diary file will pop up in another window, where you
-     can add the entry.
-
-     If you configure ‘org-agenda-diary-file’ to point to an Org mode
-     file, Org will create entries (in Org mode syntax) in that file
-     instead.  Most entries will be stored in a date-based outline tree
-     that will later make it easy to archive appointments from previous
-     months/years.  The tree will be built under an entry with a
-     ‘DATE_TREE’ property, or else with years as top-level entries.
-     Emacs will prompt you for the entry text—if you specify it, the
-     entry will be created in ‘org-agenda-diary-file’ without further
-     interaction.  If you directly press <RET> at the prompt without
-     typing text, the target file will be shown in another window for
-     you to finish the entry there.  See also the ‘k r’ command.
-‘M     (org-agenda-phases-of-moon)’
-     Show the phases of the moon for the three months around current
-     date.
-‘S     (org-agenda-sunrise-sunset)’
-     Show sunrise and sunset times.  The geographical location must be
-     set with calendar variables, see the documentation for the Emacs
-     calendar.
-‘C     (org-agenda-convert-date)’
-     Convert the date at cursor into many other cultural and historic
-     calendars.
-‘H     (org-agenda-holidays)’
-     Show holidays for three months around the cursor date.
-
-‘M-x org-icalendar-combine-agenda-files <RET>’
-     Export a single iCalendar file containing entries from all agenda
-     files.  This is a globally available command, and also available in
-     the agenda menu.
-
-     Exporting to a file
-     ...................
-
-‘C-x C-w     (org-agenda-write)’
-     Write the agenda view to a file.  Depending on the extension of the
-     selected file name, the view will be exported as HTML (‘.html’ or
-     ‘.htm’), Postscript (‘.ps’), PDF (‘.pdf’), Org (‘.org’) and plain
-     text (any other extension).  When exporting to Org, only the body
-     of original headlines are exported, not subtrees or inherited tags.
-     When called with a ‘C-u’ prefix argument, immediately open the
-     newly created file.  Use the variable
-     ‘org-agenda-exporter-settings’ to set options for ‘ps-print’ and
-     for ‘htmlize’ to be used during export.
-
-     Quit and Exit
-     .............
-
-‘q     (org-agenda-quit)’
-     Quit agenda, remove the agenda buffer.
-‘x     (org-agenda-exit)’
-     Exit agenda, remove the agenda buffer and all buffers loaded by
-     Emacs for the compilation of the agenda.  Buffers created by the
-     user to visit Org files will not be removed.
-
-   ---------- Footnotes ----------
-
-   (1) Only tags filtering will be respected here, effort filtering is
-ignored.
-
-   (2) Moving agenda lines does not persist after an agenda refresh and
-does not modify the contributing ‘.org’ files
-
-   (3) You can also create persistent custom functions through
-‘org-agenda-bulk-custom-functions’.
-
-   (4) This file is parsed for the agenda when
-‘org-agenda-include-diary’ is set.
-
-
-File: org,  Node: Custom agenda views,  Next: Exporting agenda views,  Prev: Agenda commands,  Up: Agenda views
-
-10.6 Custom agenda views
-========================
-
-Custom agenda commands serve two purposes: to store and quickly access
-frequently used TODO and tags searches, and to create special composite
-agenda buffers.  Custom agenda commands will be accessible through the
-dispatcher (*note Agenda dispatcher::), just like the default commands.
-
-* Menu:
-
-* Storing searches::            Type once, use often
-* Block agenda::                All the stuff you need in a single buffer
-* Setting options::             Changing the rules
-
-
-File: org,  Node: Storing searches,  Next: Block agenda,  Up: Custom agenda views
-
-10.6.1 Storing searches
------------------------
-
-The first application of custom searches is the definition of keyboard
-shortcuts for frequently used searches, either creating an agenda
-buffer, or a sparse tree (the latter covering of course only the current
-buffer).
-
-   Custom commands are configured in the variable
-‘org-agenda-custom-commands’.  You can customize this variable, for
-example by pressing ‘C-c a C’.  You can also directly set it with Emacs
-Lisp in the Emacs init file.  The following example contains all valid
-agenda views:
-
-     (setq org-agenda-custom-commands
-           '(("x" agenda)
-             ("y" agenda*)
-             ("w" todo "WAITING")
-             ("W" todo-tree "WAITING")
-             ("u" tags "+boss-urgent")
-             ("v" tags-todo "+boss-urgent")
-             ("U" tags-tree "+boss-urgent")
-             ("f" occur-tree "\\<FIXME\\>")
-             ("h" . "HOME+Name tags searches") ; description for "h" prefix
-             ("hl" tags "+home+Lisa")
-             ("hp" tags "+home+Peter")
-             ("hk" tags "+home+Kim")))
-
-The initial string in each entry defines the keys you have to press
-after the dispatcher command ‘C-c a’ in order to access the command.
-Usually this will be just a single character, but if you have many
-similar commands, you can also define two-letter combinations where the
-first character is the same in several combinations and serves as a
-prefix key(1).  The second parameter is the search type, followed by the
-string or regular expression to be used for the matching.  The example
-above will therefore define:
-
-‘C-c a x’
-     as a global search for agenda entries planned(2) this week/day.
-‘C-c a y’
-     as a global search for agenda entries planned this week/day, but
-     only those with an hour specification like ‘[h]h:mm’—think of them
-     as appointments.
-‘C-c a w’
-     as a global search for TODO entries with ‘WAITING’ as the TODO
-     keyword
-‘C-c a W’
-     as the same search, but only in the current buffer and displaying
-     the results as a sparse tree
-‘C-c a u’
-     as a global tags search for headlines marked ‘:boss:’ but not
-     ‘:urgent:’
-‘C-c a v’
-     as the same search as ‘C-c a u’, but limiting the search to
-     headlines that are also TODO items
-‘C-c a U’
-     as the same search as ‘C-c a u’, but only in the current buffer and
-     displaying the result as a sparse tree
-‘C-c a f’
-     to create a sparse tree (again: current buffer only) with all
-     entries containing the word ‘FIXME’
-‘C-c a h’
-     as a prefix command for a HOME tags search where you have to press
-     an additional key (‘l’, ‘p’ or ‘k’) to select a name (Lisa, Peter,
-     or Kim) as additional tag to match.
-
-   Note that the ‘*-tree’ agenda views need to be called from an Org
-buffer as they operate on the current buffer only.
-
-   ---------- Footnotes ----------
-
-   (1) You can provide a description for a prefix key by inserting a
-cons cell with the prefix and the description.
-
-   (2) _Planned_ means here that these entries have some planning
-information attached to them, like a time-stamp, a scheduled or a
-deadline string.  See ‘org-agenda-entry-types’ on how to set what
-planning information will be taken into account.
-
-
-File: org,  Node: Block agenda,  Next: Setting options,  Prev: Storing searches,  Up: Custom agenda views
-
-10.6.2 Block agenda
--------------------
-
-Another possibility is the construction of agenda views that comprise
-the results of _several_ commands, each of which creates a block in the
-agenda buffer.  The available commands include ‘agenda’ for the daily or
-weekly agenda (as created with ‘C-c a a’), ‘alltodo’ for the global TODO
-list (as constructed with ‘C-c a t’), and the matching commands
-discussed above: ‘todo’, ‘tags’, and ‘tags-todo’.  Here are two
-examples:
-
-     (setq org-agenda-custom-commands
-           '(("h" "Agenda and Home-related tasks"
-              ((agenda "")
-               (tags-todo "home")
-               (tags "garden")))
-             ("o" "Agenda and Office-related tasks"
-              ((agenda "")
-               (tags-todo "work")
-               (tags "office")))))
-
-This will define ‘C-c a h’ to create a multi-block view for stuff you
-need to attend to at home.  The resulting agenda buffer will contain
-your agenda for the current week, all TODO items that carry the tag
-‘home’, and also all lines tagged with ‘garden’.  Finally the command
-‘C-c a o’ provides a similar view for office tasks.
-
-
-File: org,  Node: Setting options,  Prev: Block agenda,  Up: Custom agenda views
-
-10.6.3 Setting options for custom commands
-------------------------------------------
-
-Org mode contains a number of variables regulating agenda construction
-and display.  The global variables define the behavior for all agenda
-commands, including the custom commands.  However, if you want to change
-some settings just for a single custom view, you can do so.  Setting
-options requires inserting a list of variable names and values at the
-right spot in ‘org-agenda-custom-commands’.  For example:
-
-     (setq org-agenda-custom-commands
-           '(("w" todo "WAITING"
-              ((org-agenda-sorting-strategy '(priority-down))
-               (org-agenda-prefix-format "  Mixed: ")))
-             ("U" tags-tree "+boss-urgent"
-              ((org-show-context-detail 'minimal)))
-             ("N" search ""
-              ((org-agenda-files '("~org/notes.org"))
-               (org-agenda-text-search-extra-files nil)))))
-
-Now the ‘C-c a w’ command will sort the collected entries only by
-priority, and the prefix format is modified to just say ‘ Mixed: ’
-instead of giving the category of the entry.  The sparse tags tree of
-‘C-c a U’ will now turn out ultra-compact, because neither the headline
-hierarchy above the match, nor the headline following the match will be
-shown.  The command ‘C-c a N’ will do a text search limited to only a
-single file.
-
-   For command sets creating a block agenda,
-‘org-agenda-custom-commands’ has two separate spots for setting options.
-You can add options that should be valid for just a single command in
-the set, and options that should be valid for all commands in the set.
-The former are just added to the command entry; the latter must come
-after the list of command entries.  Going back to the block agenda
-example (*note Block agenda::), let’s change the sorting strategy for
-the ‘C-c a h’ commands to ‘priority-down’, but let’s sort the results
-for GARDEN tags query in the opposite order, ‘priority-up’.  This would
-look like this:
-
-     (setq org-agenda-custom-commands
-           '(("h" "Agenda and Home-related tasks"
-              ((agenda)
-               (tags-todo "home")
-               (tags "garden"
-                     ((org-agenda-sorting-strategy '(priority-up)))))
-              ((org-agenda-sorting-strategy '(priority-down))))
-             ("o" "Agenda and Office-related tasks"
-              ((agenda)
-               (tags-todo "work")
-               (tags "office")))))
-
-   As you see, the values and parentheses setting is a little complex.
-When in doubt, use the customize interface to set this variable—it fully
-supports its structure.  Just one caveat: when setting options in this
-interface, the _values_ are just Lisp expressions.  So if the value is a
-string, you need to add the double-quotes around the value yourself.
-
-   To control whether an agenda command should be accessible from a
-specific context, you can customize
-‘org-agenda-custom-commands-contexts’.  Let’s say for example that you
-have an agenda command ‘"o"’ displaying a view that you only need when
-reading emails.  Then you would configure this option like this:
-
-     (setq org-agenda-custom-commands-contexts
-           '(("o" (in-mode . "message-mode"))))
-
-   You can also tell that the command key ‘"o"’ should refer to another
-command key ‘"r"’.  In that case, add this command key like this:
-
-     (setq org-agenda-custom-commands-contexts
-           '(("o" "r" (in-mode . "message-mode"))))
-
-   See the docstring of the variable for more information.
-
-
-File: org,  Node: Exporting agenda views,  Next: Agenda column view,  Prev: Custom agenda views,  Up: Agenda views
-
-10.7 Exporting agenda views
-===========================
-
-If you are away from your computer, it can be very useful to have a
-printed version of some agenda views to carry around.  Org mode can
-export custom agenda views as plain text, HTML(1), Postscript, PDF(2),
-and iCalendar files.  If you want to do this only occasionally, use the
-command
-
-‘C-x C-w     (org-agenda-write)’
-     Write the agenda view to a file.  Depending on the extension of the
-     selected file name, the view will be exported as HTML (extension
-     ‘.html’ or ‘.htm’), Postscript (extension ‘.ps’), iCalendar
-     (extension ‘.ics’), or plain text (any other extension).  Use the
-     variable ‘org-agenda-exporter-settings’ to set options for
-     ‘ps-print’ and for ‘htmlize’ to be used during export, for example
-
-          (setq org-agenda-exporter-settings
-                '((ps-number-of-columns 2)
-                  (ps-landscape-mode t)
-                  (org-agenda-add-entry-text-maxlines 5)
-                  (htmlize-output-type 'css)))
-
-   If you need to export certain agenda views frequently, you can
-associate any custom agenda command with a list of output file names
-(3).  Here is an example that first defines custom commands for the
-agenda and the global TODO list, together with a number of files to
-which to export them.  Then we define two block agenda commands and
-specify file names for them as well.  File names can be relative to the
-current working directory, or absolute.
-
-     (setq org-agenda-custom-commands
-           '(("X" agenda "" nil ("agenda.html" "agenda.ps"))
-             ("Y" alltodo "" nil ("todo.html" "todo.txt" "todo.ps"))
-             ("h" "Agenda and Home-related tasks"
-              ((agenda "")
-               (tags-todo "home")
-               (tags "garden"))
-              nil
-              ("~/views/home.html"))
-             ("o" "Agenda and Office-related tasks"
-              ((agenda)
-               (tags-todo "work")
-               (tags "office"))
-              nil
-              ("~/views/office.ps" "~/calendars/office.ics"))))
-
-   The extension of the file name determines the type of export.  If it
-is ‘.html’, Org mode will try to use the ‘htmlize.el’ package to convert
-the buffer to HTML and save it to this file name.  If the extension is
-‘.ps’, ‘ps-print-buffer-with-faces’ is used to produce Postscript
-output.  If the extension is ‘.ics’, iCalendar export is run export over
-all files that were used to construct the agenda, and limit the export
-to entries listed in the agenda.  Any other extension produces a plain
-ASCII file.
-
-   The export files are _not_ created when you use one of those commands
-interactively because this might use too much overhead.  Instead, there
-is a special command to produce _all_ specified files in one step:
-
-‘C-c a e     (org-store-agenda-views)’
-     Export all agenda views that have export file names associated with
-     them.
-
-   You can use the options section of the custom agenda commands to also
-set options for the export commands.  For example:
-
-     (setq org-agenda-custom-commands
-           '(("X" agenda ""
-              ((ps-number-of-columns 2)
-               (ps-landscape-mode t)
-               (org-agenda-prefix-format " [ ] ")
-               (org-agenda-with-colors nil)
-               (org-agenda-remove-tags t))
-              ("theagenda.ps"))))
-
-This command sets two options for the Postscript exporter, to make it
-print in two columns in landscape format—the resulting page can be cut
-in two and then used in a paper agenda.  The remaining settings modify
-the agenda prefix to omit category and scheduling information, and
-instead include a checkbox to check off items.  We also remove the tags
-to make the lines compact, and we don’t want to use colors for the
-black-and-white printer.  Settings specified in
-‘org-agenda-exporter-settings’ will also apply, but the settings in
-‘org-agenda-custom-commands’ take precedence.
-
-From the command line you may also use
-     emacs -eval (org-batch-store-agenda-views) -kill
-or, if you need to modify some parameters(4)
-     emacs -eval '(org-batch-store-agenda-views                      \
-                   org-agenda-span (quote month)                     \
-                   org-agenda-start-day "2007-11-01"                 \
-                   org-agenda-include-diary nil                      \
-                   org-agenda-files (quote ("~/org/project.org")))'  \
-           -kill
-which will create the agenda views restricted to the file
-‘~/org/project.org’, without diary entries and with a 30-day extent.
-
-   You can also extract agenda information in a way that allows further
-processing by other programs.  See *note Extracting agenda
-information::, for more information.
-
-   ---------- Footnotes ----------
-
-   (1) You need to install ‘htmlize.el’ from Hrvoje Niksic’s repository.
-(https://github.com/hniksic/emacs-htmlize)
-
-   (2) To create PDF output, the ghostscript ‘ps2pdf’ utility must be
-installed on the system.  Selecting a PDF file will also create the
-postscript file.
-
-   (3) If you want to store standard views like the weekly agenda or the
-global TODO list as well, you need to define custom commands for them in
-order to be able to specify file names.
-
-   (4) Quoting depends on the system you use, please check the FAQ for
-examples.
-
-
-File: org,  Node: Agenda column view,  Prev: Exporting agenda views,  Up: Agenda views
-
-10.8 Using column view in the agenda
-====================================
-
-Column view (*note Column view::) is normally used to view and edit
-properties embedded in the hierarchical structure of an Org file.  It
-can be quite useful to use column view also from the agenda, where
-entries are collected by certain criteria.
-
-‘C-c C-x C-c     (org-agenda-columns)’
-     Turn on column view in the agenda.
-
-   To understand how to use this properly, it is important to realize
-that the entries in the agenda are no longer in their proper outline
-environment.  This causes the following issues:
-
-  1. Org needs to make a decision which ‘COLUMNS’ format to use.  Since
-     the entries in the agenda are collected from different files, and
-     different files may have different ‘COLUMNS’ formats, this is a
-     non-trivial problem.  Org first checks if the variable
-     ‘org-agenda-overriding-columns-format’ is currently set, and if so,
-     takes the format from there.  Otherwise it takes the format
-     associated with the first item in the agenda, or, if that item does
-     not have a specific format—defined in a property, or in its file—it
-     uses ‘org-columns-default-format’.
-
-  2. If any of the columns has a summary type defined (*note Column
-     attributes::), turning on column view in the agenda will visit all
-     relevant agenda files and make sure that the computations of this
-     property are up to date.  This is also true for the special
-     ‘CLOCKSUM’ property.  Org will then sum the values displayed in the
-     agenda.  In the daily/weekly agenda, the sums will cover a single
-     day; in all other views they cover the entire block.  It is vital
-     to realize that the agenda may show the same entry _twice_—for
-     example as scheduled and as a deadline—and it may show two entries
-     from the same hierarchy—for example a _parent_ and its _child_.  In
-     these cases, the summation in the agenda will lead to incorrect
-     results because some values will count double.
-
-  3. When the column view in the agenda shows the ‘CLOCKSUM’, that is
-     always the entire clocked time for this item.  So even in the
-     daily/weekly agenda, the clocksum listed in column view may
-     originate from times outside the current view.  This has the
-     advantage that you can compare these values with a column listing
-     the planned total effort for a task—one of the major applications
-     for column view in the agenda.  If you want information about
-     clocked time in the displayed period use clock table mode (press
-     ‘R’ in the agenda).
-
-  4. When the column view in the agenda shows the ‘CLOCKSUM_T’, that is
-     always today’s clocked time for this item.  So even in the weekly
-     agenda, the clocksum listed in column view only originates from
-     today.  This lets you compare the time you spent on a task for
-     today, with the time already spent —via ‘CLOCKSUM’—and with the
-     planned total effort for it.
-
-
-File: org,  Node: Markup,  Next: Exporting,  Prev: Agenda views,  Up: Top
-
-11 Markup for rich export
-*************************
-
-When exporting Org mode documents, the exporter tries to reflect the
-structure of the document as accurately as possible in the back-end.
-Since export targets like HTML and LaTeX allow much richer formatting,
-Org mode has rules on how to prepare text for rich export.  This section
-summarizes the markup rules used in an Org mode buffer.
-
-* Menu:
-
-* Paragraphs::                  The basic unit of text
-* Emphasis and monospace::      Bold, italic, etc.
-* Horizontal rules::            Make a line
-* Images and tables::           Images, tables and caption mechanism
-* Literal examples::            Source code examples with special formatting
-* Special symbols::             Greek letters and other symbols
-* Subscripts and superscripts::  Simple syntax for raising/lowering text
-* Embedded LaTeX::           LaTeX can be freely used inside Org documents
-
-
-File: org,  Node: Paragraphs,  Next: Emphasis and monospace,  Up: Markup
-
-11.1 Paragraphs, line breaks, and quoting
-=========================================
-
-Paragraphs are separated by at least one empty line.  If you need to
-enforce a line break within a paragraph, use ‘\\’ at the end of a line.
-
-   To preserve the line breaks, indentation and blank lines in a region,
-but otherwise use normal formatting, you can use this construct, which
-can also be used to format poetry.
-
-     #+BEGIN_VERSE
-      Great clouds overhead
-      Tiny black birds rise and fall
-      Snow covers Emacs
-
-          -- AlexSchroeder
-     #+END_VERSE
-
-   When quoting a passage from another document, it is customary to
-format this as a paragraph that is indented on both the left and the
-right margin.  You can include quotations in Org mode documents like
-this:
-
-     #+BEGIN_QUOTE
-     Everything should be made as simple as possible,
-     but not any simpler -- Albert Einstein
-     #+END_QUOTE
-
-   If you would like to center some text, do it like this:
-     #+BEGIN_CENTER
-     Everything should be made as simple as possible, \\
-     but not any simpler
-     #+END_CENTER
-
-
-File: org,  Node: Emphasis and monospace,  Next: Horizontal rules,  Prev: Paragraphs,  Up: Markup
-
-11.2 Emphasis and monospace
-===========================
-
-You can make words *bold*, /italic/, _underlined_, ‘=verbatim=’ and
-‘~code~’, and, if you must, ‘+strike-through+’.  Text in the code and
-verbatim string is not processed for Org mode specific syntax, it is
-exported verbatim.
-
-   To turn off fontification for marked up text, you can set
-‘org-fontify-emphasized-text’ to ‘nil’.  To narrow down the list of
-available markup syntax, you can customize ‘org-emphasis-alist’.  To
-fine tune what characters are allowed before and after the markup
-characters, you can tweak ‘org-emphasis-regexp-components’.  Beware that
-changing one of the above variables will not take effect until you
-reload Org, for which you may need to restart Emacs.
-
-
-File: org,  Node: Horizontal rules,  Next: Images and tables,  Prev: Emphasis and monospace,  Up: Markup
-
-11.3 Horizontal rules
-=====================
-
-A line consisting of only dashes, and at least 5 of them, will be
-exported as a horizontal line.
-
-
-File: org,  Node: Images and tables,  Next: Literal examples,  Prev: Horizontal rules,  Up: Markup
-
-11.4 Images and Tables
-======================
-
-Both the native Org mode tables (*note Tables::) and tables formatted
-with the ‘table.el’ package will be exported properly.  For Org mode
-tables, the lines before the first horizontal separator line will become
-table header lines.  You can use the following lines somewhere before
-the table to assign a caption and a label for cross references, and in
-the text you can refer to the object with ‘[[tab:basic-data]]’ (*note
-Internal links::):
-
-     #+CAPTION: This is the caption for the next table (or link)
-     #+NAME:   tab:basic-data
-        | ... | ...|
-        |-----|----|
-
-   Optionally, the caption can take the form:
-     #+CAPTION[Caption for list of tables]: Caption for table.
-
-   Some back-ends allow you to directly include images into the exported
-document.  Org does this, if a link to an image files does not have a
-description part, for example ‘[[./img/a.jpg]]’.  If you wish to define
-a caption for the image and maybe a label for internal cross references,
-make sure that the link is on a line by itself and precede it with
-‘#+CAPTION’ and ‘#+NAME’ as follows:
-
-     #+CAPTION: This is the caption for the next figure link (or table)
-     #+NAME:   fig:SED-HR4049
-     [[./img/a.jpg]]
-
-Such images can be displayed within the buffer.  *Note the discussion of
-image links: Handling links.
-
-   Even though images and tables are prominent examples of captioned
-structures, the same caption mechanism can apply to many others (e.g.,
-LaTeX equations, source code blocks).  Depending on the export back-end,
-those may or may not be handled.
-
-
-File: org,  Node: Literal examples,  Next: Special symbols,  Prev: Images and tables,  Up: Markup
-
-11.5 Literal examples
-=====================
-
-You can include literal examples that should not be subjected to markup.
-Such examples will be typeset in monospace, so this is well suited for
-source code and similar examples.
-
-     #+BEGIN_EXAMPLE
-     Some example from a text file.
-     #+END_EXAMPLE
-
-   Note that such blocks may be indented in order to align nicely with
-indented text and in particular with plain list structure (*note Plain
-lists::).  For simplicity when using small examples, you can also start
-the example lines with a colon followed by a space.  There may also be
-additional whitespace before the colon:
-
-     Here is an example
-        : Some example from a text file.
-
-   If the example is source code from a programming language, or any
-other text that can be marked up by font-lock in Emacs, you can ask for
-the example to look like the fontified Emacs buffer(1).  This is done
-with the ‘src’ block, where you also need to specify the name of the
-major mode that should be used to fontify the example(2), see *note Easy
-templates:: for shortcuts to easily insert code blocks.
-
-     #+BEGIN_SRC emacs-lisp
-       (defun org-xor (a b)
-          "Exclusive or."
-          (if a (not b) b))
-     #+END_SRC
-
-   Both in ‘example’ and in ‘src’ snippets, you can add a ‘-n’ switch to
-the end of the ‘BEGIN’ line, to get the lines of the example numbered.
-The ‘-n’ takes an optional numeric argument specifying the starting line
-number of the block.  If you use a ‘+n’ switch, the numbering from the
-previous numbered snippet will be continued in the current one.  The
-‘+n’ can also take a numeric argument.  The value of the argument will
-be added to the last line of the previous block to determine the
-starting line number.
-
-     #+BEGIN_SRC emacs-lisp -n 20
-      ;; this will export with line number 20
-      (message "This is line 21")
-     #+END_SRC
-     #+BEGIN_SRC emacs-lisp +n 10
-      ;; This will be listed as line 31
-      (message "This is line 32")
-     #+END_SRC
-
-   In literal examples, Org will interpret strings like ‘(ref:name)’ as
-labels, and use them as targets for special hyperlinks like ‘[[(name)]]’
-(i.e., the reference name enclosed in single parenthesis).  In HTML,
-hovering the mouse over such a link will remote-highlight the
-corresponding code line, which is kind of cool.
-
-   You can also add a ‘-r’ switch which removes the labels from the
-source code(3).  With the ‘-n’ switch, links to these references will be
-labeled by the line numbers from the code listing, otherwise links will
-use the labels with no parentheses.  Here is an example:
-
-     #+BEGIN_SRC emacs-lisp -n -r
-     (save-excursion                  (ref:sc)
-        (goto-char (point-min)))      (ref:jump)
-     #+END_SRC
-     In line [[(sc)]] we remember the current position.  [[(jump)][Line (jump)]]
-     jumps to point-min.
-
-   Finally, you can use ‘-i’ to preserve the indentation of a specific
-code block (*note Editing source code::).
-
-   If the syntax for the label format conflicts with the language
-syntax, use a ‘-l’ switch to change the format, for example ‘#+BEGIN_SRC
-pascal -n -r -l "((%s))"’.  See also the variable
-‘org-coderef-label-format’.
-
-   HTML export also allows examples to be published as text areas (*note
-Text areas in HTML export::).
-
-   Because the ‘#+BEGIN_...’ and ‘#+END_...’ patterns need to be added
-so often, shortcuts are provided using the Easy templates facility
-(*note Easy templates::).
-
-‘C-c '’
-     Edit the source code example at point in its native mode.  This
-     works by switching to a temporary buffer with the source code.  You
-     need to exit by pressing ‘C-c '’ again(4).  The edited version will
-     then replace the old version in the Org buffer.  Fixed-width
-     regions (where each line starts with a colon followed by a space)
-     will be edited using ‘artist-mode’(5) to allow creating ASCII
-     drawings easily.  Using this command in an empty line will create a
-     new fixed-width region.
-‘C-c l’
-     Calling ‘org-store-link’ while editing a source code example in a
-     temporary buffer created with ‘C-c '’ will prompt for a label.
-     Make sure that it is unique in the current buffer, and insert it
-     with the proper formatting like ‘(ref:label)’ at the end of the
-     current line.  Then the label is stored as a link ‘(label)’, for
-     retrieval with ‘C-c C-l’.
-
-   ---------- Footnotes ----------
-
-   (1) This works automatically for the HTML back-end (it requires
-version 1.34 of the ‘htmlize.el’ package, which you need to install).
-Fontified code chunks in LaTeX can be achieved using either the
-<https://www.ctan.org/tex-archive/macros/latex/contrib/listings/?lang=en>
-or the <https://github.com/gpoore/minted> package.  If you use minted or
-listing, you must load the packages manually, for example by adding the
-desired package to ‘org-latex-packages-alist’.  Refer to
-‘org-latex-listings’ for details.
-
-   (2) Code in ‘src’ blocks may also be evaluated either interactively
-or on export.  *Note Working with source code::, for more information on
-evaluating code blocks.
-
-   (3) Adding ‘-k’ to ‘-n -r’ will keep the labels in the source code
-while using line numbers for the links, which might be useful to explain
-those in an Org mode example code.
-
-   (4) Upon exit, lines starting with ‘*’, ‘,*’, ‘#+’ and ‘,#+’ will get
-a comma prepended, to keep them from being interpreted by Org as outline
-nodes or special syntax.  These commas will be stripped for editing with
-‘C-c '’, and also for export.
-
-   (5) You may select a different-mode with the variable
-‘org-edit-fixed-width-region-mode’.
-
-
-File: org,  Node: Special symbols,  Next: Subscripts and superscripts,  Prev: Literal examples,  Up: Markup
-
-11.6 Special symbols
-====================
-
-You can use LaTeX-like syntax to insert special symbols—named
-entities—like ‘\alpha’ to indicate the Greek letter, or ‘\to’ to
-indicate an arrow.  Completion for these symbols is available, just type
-‘\’ and maybe a few letters, and press ‘M-<TAB>’ to see possible
-completions.  If you need such a symbol inside a word, terminate it with
-a pair of curly brackets.  For example
-
-     Pro tip: Given a circle \Gamma of diameter d, the length of its circumference
-     is \pi{}d.
-
-   A large number of entities is provided, with names taken from both
-HTML and LaTeX; you can comfortably browse the complete list from a
-dedicated buffer using the command ‘org-entities-help’.  It is also
-possible to provide your own special symbols in the variable
-‘org-entities-user’.
-
-   During export, these symbols are transformed into the native format
-of the exporter back-end.  Strings like ‘\alpha’ are exported as
-‘&alpha;’ in the HTML output, and as ‘\(\alpha\)’ in the LaTeX output.
-Similarly, ‘\nbsp’ becomes ‘&nbsp;’ in HTML and ‘~’ in LaTeX.
-
-   Entities may also be used as a may to escape markup in an Org
-document, e.g., ‘\under{}not underlined\under’ exports as ‘_not
-underlined_’.
-
-   If you would like to see entities displayed as UTF-8 characters, use
-the following command(1):
-
-‘C-c C-x \’
-     Toggle display of entities as UTF-8 characters.  This does not
-     change the buffer content which remains plain ASCII, but it
-     overlays the UTF-8 character for display purposes only.
-
-   In addition to regular entities defined above, Org exports in a
-special way(2) the following commonly used character combinations: ‘\-’
-is treated as a shy hyphen, ‘--’ and ‘---’ are converted into dashes,
-and ‘...’ becomes a compact set of dots.
-
-   ---------- Footnotes ----------
-
-   (1) You can turn this on by default by setting the variable
-‘org-pretty-entities’, or on a per-file base with the ‘#+STARTUP’ option
-‘entitiespretty’.
-
-   (2) This behavior can be disabled with ‘-’ export setting (*note
-Export settings::).
-
-
-File: org,  Node: Subscripts and superscripts,  Next: Embedded LaTeX,  Prev: Special symbols,  Up: Markup
-
-11.7 Subscripts and superscripts
-================================
-
-‘^’ and ‘_’ are used to indicate super- and subscripts.  To increase the
-readability of ASCII text, it is not necessary—but OK—to surround
-multi-character sub- and superscripts with curly braces.  Those are,
-however, mandatory, when more than one word is involved.  For example
-
-     The radius of the sun is R_sun = 6.96 x 10^8 m.  On the other hand, the
-     radius of Alpha Centauri is R_{Alpha Centauri} = 1.28 x R_{sun}.
-
-   If you write a text where the underscore is often used in a different
-context, Org’s convention to always interpret these as subscripts can
-get in your way.  Configure the variable ‘org-use-sub-superscripts’ to
-change this convention.  For example, when setting this variable to
-‘{}’, ‘a_b’ will not be interpreted as a subscript, but ‘a_{b}’ will.
-
-‘C-c C-x \’
-     In addition to showing entities as UTF-8 characters, this command
-     will also format sub- and superscripts in a WYSIWYM way.
-
-
-File: org,  Node: Embedded LaTeX,  Prev: Subscripts and superscripts,  Up: Markup
-
-11.8 Embedded LaTeX
-===================
-
-Plain ASCII is normally sufficient for almost all note taking.
-Exceptions include scientific notes, which often require mathematical
-symbols and the occasional formula.  LaTeX(1) is widely used to typeset
-scientific documents.  Org mode supports embedding LaTeX code into its
-files, because many academics are used to writing and reading LaTeX
-source code, and because it can be readily processed to produce pretty
-output for a number of export back-ends.
-
-* Menu:
-
-* LaTeX fragments::          Complex formulas made easy
-* Previewing LaTeX fragments::  What will this snippet look like?
-* CDLaTeX mode::                Speed up entering of formulas
-
-   ---------- Footnotes ----------
-
-   (1) LaTeX is a macro system based on Donald E. Knuth’s TeX system.
-Many of the features described here as “LaTeX” are really from TeX, but
-for simplicity I am blurring this distinction.
-
-
-File: org,  Node: LaTeX fragments,  Next: Previewing LaTeX fragments,  Up: Embedded LaTeX
-
-11.8.1 LaTeX fragments
-----------------------
-
-Org mode can contain LaTeX math fragments, and it supports ways to
-process these for several export back-ends.  When exporting to LaTeX,
-the code is left as it is.  When exporting to HTML, Org can use either
-MathJax (http://www.mathjax.org) (*note Math formatting in HTML
-export::) or transcode the math into images (see *note Previewing LaTeX
-fragments::).
-
-   LaTeX fragments don’t need any special marking at all.  The following
-snippets will be identified as LaTeX source code:
-   • Environments of any kind(1).  The only requirement is that the
-     ‘\begin’ statement appears on a new line, at the beginning of the
-     line or after whitespaces only.
-   • Text within the usual LaTeX math delimiters.  To avoid conflicts
-     with currency specifications, single ‘$’ characters are only
-     recognized as math delimiters if the enclosed text contains at most
-     two line breaks, is directly attached to the ‘$’ characters with no
-     whitespace in between, and if the closing ‘$’ is followed by
-     whitespace or punctuation (parentheses and quotes are considered to
-     be punctuation in this context).  For the other delimiters, there
-     is no such restriction, so when in doubt, use ‘\(...\)’ as inline
-     math delimiters.
-
-For example:
-
-     \begin{equation}
-     x=\sqrt{b}
-     \end{equation}
-
-     If $a^2=b$ and \( b=2 \), then the solution must be
-     either $$ a=+\sqrt{2} $$ or \[ a=-\sqrt{2} \].
-
-   LaTeX processing can be configured with the variable
-‘org-export-with-latex’.  The default setting is ‘t’ which means MathJax
-for HTML, and no processing for ASCII and LaTeX back-ends.  You can also
-set this variable on a per-file basis using one of these lines:
-
-     #+OPTIONS: tex:t          Do the right thing automatically (MathJax)
-     #+OPTIONS: tex:nil        Do not process LaTeX fragments at all
-     #+OPTIONS: tex:verbatim   Verbatim export, for jsMath or so
-
-   ---------- Footnotes ----------
-
-   (1) When MathJax is used, only the environments recognized by MathJax
-will be processed.  When ‘dvipng’ program, ‘dvisvgm’ program or
-‘imagemagick’ suite is used to create images, any LaTeX environment will
-be handled.
-
-
-File: org,  Node: Previewing LaTeX fragments,  Next: CDLaTeX mode,  Prev: LaTeX fragments,  Up: Embedded LaTeX
-
-11.8.2 Previewing LaTeX fragments
----------------------------------
-
-If you have a working LaTeX installation and ‘dvipng’, ‘dvisvgm’ or
-‘convert’ installed(1), LaTeX fragments can be processed to produce
-images of the typeset expressions to be used for inclusion while
-exporting to HTML (see *note LaTeX fragments::), or for inline
-previewing within Org mode.
-
-   You can customize the variables ‘org-format-latex-options’ and
-‘org-format-latex-header’ to influence some aspects of the preview.  In
-particular, the ‘:scale’ (and for HTML export, ‘:html-scale’) property
-of the former can be used to adjust the size of the preview images.
-
-‘C-c C-x C-l’
-     Produce a preview image of the LaTeX fragment at point and overlay
-     it over the source code.  If there is no fragment at point, process
-     all fragments in the current entry (between two headlines).  When
-     called with a prefix argument, process the entire subtree.  When
-     called with two prefix arguments, or when the cursor is before the
-     first headline, process the entire buffer.
-‘C-c C-c’
-     Remove the overlay preview images.
-
-   You can turn on the previewing of all LaTeX fragments in a file with
-
-     #+STARTUP: latexpreview
-
-   To disable it, simply use
-
-     #+STARTUP: nolatexpreview
-
-   ---------- Footnotes ----------
-
-   (1) These are respectively available at
-<http://sourceforge.net/projects/dvipng/>, <http://dvisvgm.bplaced.net/>
-and from the ‘imagemagick’ suite.  Choose the converter by setting the
-variable ‘org-preview-latex-default-process’ accordingly.
-
-
-File: org,  Node: CDLaTeX mode,  Prev: Previewing LaTeX fragments,  Up: Embedded LaTeX
-
-11.8.3 Using CDLaTeX to enter math
-----------------------------------
-
-CDLaTeX mode is a minor mode that is normally used in combination with a
-major LaTeX mode like AUCTeX in order to speed-up insertion of
-environments and math templates.  Inside Org mode, you can make use of
-some of the features of CDLaTeX mode.  You need to install ‘cdlatex.el’
-and ‘texmathp.el’ (the latter comes also with AUCTeX) from
-<https://staff.fnwi.uva.nl/c.dominik/Tools/cdlatex>.  Don’t use CDLaTeX
-mode itself under Org mode, but use the light version ‘org-cdlatex-mode’
-that comes as part of Org mode.  Turn it on for the current buffer with
-‘M-x org-cdlatex-mode <RET>’, or for all Org files with
-
-     (add-hook 'org-mode-hook 'turn-on-org-cdlatex)
-
-   When this mode is enabled, the following features are present (for
-more details see the documentation of CDLaTeX mode):
-   • Environment templates can be inserted with ‘C-c {’.
-   • The <TAB> key will do template expansion if the cursor is inside a
-     LaTeX fragment(1).  For example, <TAB> will expand ‘fr’ to
-     ‘\frac{}{}’ and position the cursor correctly inside the first
-     brace.  Another <TAB> will get you into the second brace.  Even
-     outside fragments, <TAB> will expand environment abbreviations at
-     the beginning of a line.  For example, if you write ‘equ’ at the
-     beginning of a line and press <TAB>, this abbreviation will be
-     expanded to an ‘equation’ environment.  To get a list of all
-     abbreviations, type ‘M-x cdlatex-command-help <RET>’.
-   • Pressing ‘_’ and ‘^’ inside a LaTeX fragment will insert these
-     characters together with a pair of braces.  If you use <TAB> to
-     move out of the braces, and if the braces surround only a single
-     character or macro, they are removed again (depending on the
-     variable ‘cdlatex-simplify-sub-super-scripts’).
-   • Pressing the grave accent ‘`’ followed by a character inserts math
-     macros, also outside LaTeX fragments.  If you wait more than 1.5
-     seconds after the grave accent, a help window will pop up.
-   • Pressing the apostrophe ‘'’ followed by another character modifies
-     the symbol before point with an accent or a font.  If you wait more
-     than 1.5 seconds after the apostrophe, a help window will pop up.
-     Character modification will work only inside LaTeX fragments;
-     outside the quote is normal.
-
-   ---------- Footnotes ----------
-
-   (1) Org mode has a method to test if the cursor is inside such a
-fragment, see the documentation of the function
-‘org-inside-LaTeX-fragment-p’.
-
-
-File: org,  Node: Exporting,  Next: Publishing,  Prev: Markup,  Up: Top
-
-12 Exporting
-************
-
-Sometimes, you may want to pretty print your notes, publish them on the
-web or even share them with people not using Org.  In these cases, the
-Org export facilities can be used to convert your documents to a variety
-of other formats, while retaining as much structure (*note Document
-structure::) and markup (*note Markup::) as possible.
-
-   Libraries responsible for such translation are called back-ends.  Org
-ships with the following ones
-
-   • ascii (ASCII format)
-   • beamer (LaTeX Beamer format)
-   • html (HTML format)
-   • icalendar (iCalendar format)
-   • latex (LaTeX format)
-   • md (Markdown format)
-   • odt (OpenDocument Text format)
-   • org (Org format)
-   • texinfo (Texinfo format)
-   • man (Man page format)
-
-Org also uses additional libraries located in ‘contrib/’ directory
-(*note Installation::).  Users can install additional export libraries
-for additional formats from the Emacs packaging system.  For easy
-discovery, these packages have a common naming scheme: ‘ox-NAME’, where
-NAME is one of the formats.  For example, ‘ox-koma-letter’ for
-‘koma-letter’ back-end.
-
-   Org loads back-ends for the following formats by default: ‘ascii’,
-‘html’, ‘icalendar’, ‘latex’ and ‘odt’.
-
-   Org can load additional back-ends either of two ways: through the
-‘org-export-backends’ variable configuration; or, by requiring the
-library in the Emacs init file like this:
-
-     (require 'ox-md)
-
-* Menu:
-
-* The export dispatcher::       The main interface
-* Export settings::             Common export settings
-* Table of contents::           The if and where of the table of contents
-* Include files::               Include additional files into a document
-* Macro replacement::           Use macros to create templates
-* Comment lines::               What will not be exported
-* ASCII/Latin-1/UTF-8 export::  Exporting to flat files with encoding
-* Beamer export::               Exporting as a Beamer presentation
-* HTML export::                 Exporting to HTML
-* LaTeX export::             Exporting to LaTeX, and processing to PDF
-* Markdown export::             Exporting to Markdown
-* OpenDocument Text export::    Exporting to OpenDocument Text
-* Org export::                  Exporting to Org
-* Texinfo export::              Exporting to Texinfo
-* iCalendar export::            Exporting to iCalendar
-* Other built-in back-ends::    Exporting to a man page
-* Advanced configuration::      Fine-tuning the export output
-* Export in foreign buffers::   Author tables and lists in Org syntax
-
-
-File: org,  Node: The export dispatcher,  Next: Export settings,  Up: Exporting
-
-12.1 The export dispatcher
-==========================
-
-The export dispatcher is the main interface for Org’s exports.  A
-hierarchical menu presents the currently configured export formats.
-Options are shown as easy toggle switches on the same screen.
-
-   Org also has a minimal prompt interface for the export dispatcher.
-When the variable ‘org-export-dispatch-use-expert-ui’ is set to a
-non-‘nil’ value, Org prompts in the minibuffer.  To switch back to the
-hierarchical menu, press <?>.
-
-‘C-c C-e’     (‘org-export-dispatch’)
-
-     Invokes the export dispatcher interface.  The options show default
-     settings.  The ‘C-u’ prefix argument preserves options from the
-     previous export, including any sub-tree selections.
-
-   Org exports the entire buffer by default.  If the Org buffer has an
-active region, then Org exports just that region.
-
-   These are the export options, the key combinations that toggle them
-(*note Export settings::):
-
-‘C-a’
-     Toggles asynchronous export.  Asynchronous export uses an external
-     Emacs process with a specially configured initialization file to
-     complete the exporting process in the background thereby releasing
-     the current interface.  This is particularly useful when exporting
-     long documents.
-
-     Output from an asynchronous export is saved on the “the export
-     stack”.  To view this stack, call the export dispatcher with a
-     double ‘C-u’ prefix argument.  If already in the export dispatcher
-     menu, ‘&’ displays the stack.
-
-     To make the background export process the default, customize the
-     variable, ‘org-export-in-background’.
-
-‘C-b’
-     Toggle body-only export.  Useful for excluding headers and footers
-     in the export.  Affects only those back-end formats that have such
-     sections—like ‘<head>...</head>’ in HTML.
-
-‘C-s’
-     Toggle sub-tree export.  When turned on, Org exports only the
-     sub-tree starting from the cursor position at the time the export
-     dispatcher was invoked.  Org uses the top heading of this sub-tree
-     as the document’s title.  If the cursor is not on a heading, Org
-     uses the nearest enclosing header.  If the cursor is in the
-     document preamble, Org signals an error and aborts export.
-
-     To make the sub-tree export the default, customize the variable,
-     ‘org-export-initial-scope’.
-
-‘C-v’
-     Toggle visible-only export.  Useful for exporting only visible
-     parts of an Org document by adjusting outline visibility settings.
-
-
-File: org,  Node: Export settings,  Next: Table of contents,  Prev: The export dispatcher,  Up: Exporting
-
-12.2 Export settings
-====================
-
-Export options can be set: globally with variables; for an individual
-file by making variables buffer-local with in-buffer settings (*note
-In-buffer settings::), by setting individual keywords, or by specifying
-them in a compact form with the ‘#+OPTIONS’ keyword; or for a tree by
-setting properties (*note Properties and columns::).  Options set at a
-specific level override options set at a more general level.
-
-   In-buffer settings may appear anywhere in the file, either directly
-or indirectly through a file included using ‘#+SETUPFILE: filename or
-URL’ syntax.  Option keyword sets tailored to a particular back-end can
-be inserted from the export dispatcher (*note The export dispatcher::)
-using the ‘Insert template’ command by pressing ‘#’.  To insert keywords
-individually, a good way to make sure the keyword is correct is to type
-‘#+’ and then to use ‘M-<TAB>’(1) for completion.
-
-   The export keywords available for every back-end, and their
-equivalent global variables, include:
-
-‘AUTHOR’
-     The document author (‘user-full-name’).
-
-‘CREATOR’
-     Entity responsible for output generation
-     (‘org-export-creator-string’).
-
-‘DATE’
-     A date or a time-stamp(2).
-
-‘EMAIL’
-     The email address (‘user-mail-address’).
-
-‘LANGUAGE’
-     Language to use for translating certain strings
-     (‘org-export-default-language’).  With ‘#+LANGUAGE: fr’, for
-     example, Org translates _Table of contents_ to the French _Table
-     des matières_.
-
-‘SELECT_TAGS’
-     The default value is ‘:export:’.  When a tree is tagged with
-     ‘:export:’ (‘org-export-select-tags’), Org selects that tree and
-     its sub-trees for export.  Org excludes trees with ‘:noexport:’
-     tags, see below.  When selectively exporting files with ‘:export:’
-     tags set, Org does not export any text that appears before the
-     first headline.
-
-‘EXCLUDE_TAGS’
-     The default value is ‘:noexport:’.  When a tree is tagged with
-     ‘:noexport:’ (‘org-export-exclude-tags’), Org excludes that tree
-     and its sub-trees from export.  Entries tagged with ‘:noexport:’
-     will be unconditionally excluded from the export, even if they have
-     an ‘:export:’ tag.  Even if a sub-tree is not exported, Org will
-     execute any code blocks contained in them.
-
-‘TITLE’
-     Org displays this title.  For long titles, use multiple ‘#+TITLE’
-     lines.
-
-‘EXPORT_FILE_NAME’
-     The name of the output file to be generated.  Otherwise, Org
-     generates the file name based on the buffer name and the extension
-     based on the back-end format.
-
-   The ‘#+OPTIONS’ keyword is a compact form.  To configure multiple
-options, use several ‘#+OPTIONS’ lines.  ‘#+OPTIONS’ recognizes the
-following arguments.
-
-‘':’
-     Toggle smart quotes (‘org-export-with-smart-quotes’).  Depending on
-     the language used, when activated, Org treats pairs of double
-     quotes as primary quotes, pairs of single quotes as secondary
-     quotes, and single quote marks as apostrophes.
-
-‘*:’
-     Toggle emphasized text (‘org-export-with-emphasize’).
-
-‘-:’
-     Toggle conversion of special strings
-     (‘org-export-with-special-strings’).
-
-‘::’
-     Toggle fixed-width sections (‘org-export-with-fixed-width’).
-
-‘<:’
-     Toggle inclusion of time/date active/inactive stamps
-     (‘org-export-with-timestamps’).
-
-‘\n:’
-     Toggles whether to preserve line breaks
-     (‘org-export-preserve-breaks’).
-
-‘^:’
-     Toggle TeX-like syntax for sub- and superscripts.  If you write
-     "^:{}", ‘a_{b}’ will be interpreted, but the simple ‘a_b’ will be
-     left as it is (‘org-export-with-sub-superscripts’).
-
-‘arch:’
-     Configure how archived trees are exported.  When set to ‘headline’,
-     the export process skips the contents and processes only the
-     headlines (‘org-export-with-archived-trees’).
-
-‘author:’
-     Toggle inclusion of author name into exported file
-     (‘org-export-with-author’).
-
-‘broken-links:’
-     Toggles if Org should continue exporting upon finding a broken
-     internal link.  When set to ‘mark’, Org clearly marks the problem
-     link in the output (‘org-export-with-broken-links’).
-
-‘c:’
-     Toggle inclusion of CLOCK keywords (‘org-export-with-clocks’).
-
-‘creator:’
-     Toggle inclusion of creator information in the exported file
-     (‘org-export-with-creator’).
-
-‘d:’
-     Toggles inclusion of drawers, or list of drawers to include, or
-     list of drawers to exclude (‘org-export-with-drawers’).
-
-‘date:’
-     Toggle inclusion of a date into exported file
-     (‘org-export-with-date’).
-
-‘e:’
-     Toggle inclusion of entities (‘org-export-with-entities’).
-
-‘email:’
-     Toggle inclusion of the author’s e-mail into exported file
-     (‘org-export-with-email’).
-
-‘f:’
-     Toggle the inclusion of footnotes (‘org-export-with-footnotes’).
-
-‘H:’
-     Set the number of headline levels for export
-     (‘org-export-headline-levels’).  Below that level, headlines are
-     treated differently.  In most back-ends, they become list items.
-
-‘inline:’
-     Toggle inclusion of inlinetasks (‘org-export-with-inlinetasks’).
-
-‘num:’
-     Toggle section-numbers (‘org-export-with-section-numbers’).  When
-     set to number ‘n’, Org numbers only those headlines at level ‘n’ or
-     above.  Setting ‘UNNUMBERED’ property to non-‘nil’ disables
-     numbering of a heading.  Since subheadings inherit from this
-     property, it affects their numbering, too.
-
-‘p:’
-     Toggle export of planning information (‘org-export-with-planning’).
-     “Planning information” comes from lines located right after the
-     headline and contain any combination of these cookies:
-     ‘SCHEDULED:’, ‘DEADLINE:’, or ‘CLOSED:’.
-
-‘pri:’
-     Toggle inclusion of priority cookies (‘org-export-with-priority’).
-
-‘prop:’
-     Toggle inclusion of property drawers, or list the properties to
-     include (‘org-export-with-properties’).
-
-‘stat:’
-     Toggle inclusion of statistics cookies
-     (‘org-export-with-statistics-cookies’).
-
-‘tags:’
-     Toggle inclusion of tags, may also be ‘not-in-toc’
-     (‘org-export-with-tags’).
-
-‘tasks:’
-     Toggle inclusion of tasks (TODO items); or ‘nil’ to remove all
-     tasks; or ‘todo’ to remove DONE tasks; or list the keywords to keep
-     (‘org-export-with-tasks’).
-
-‘tex:’
-     ‘nil’ does not export; ‘t’ exports; ‘verbatim’ keeps everything in
-     verbatim (‘org-export-with-latex’).
-
-‘timestamp:’
-     Toggle inclusion of the creation time in the exported file
-     (‘org-export-time-stamp-file’).
-
-‘title:’
-     Toggle inclusion of title (‘org-export-with-title’).
-
-‘toc:’
-     Toggle inclusion of the table of contents, or set the level limit
-     (‘org-export-with-toc’).
-
-‘todo:’
-     Toggle inclusion of TODO keywords into exported text
-     (‘org-export-with-todo-keywords’).
-
-‘|:’
-     Toggle inclusion of tables (‘org-export-with-tables’).
-
-   When exporting sub-trees, special node properties in them can
-override the above keywords.  They are special because they have an
-‘EXPORT_’ prefix.  For example, ‘DATE’ and ‘EXPORT_FILE_NAME’ keywords
-become, respectively, ‘EXPORT_DATE’ and ‘EXPORT_FILE_NAME’.  Except for
-‘SETUPFILE’, all other keywords listed above have an ‘EXPORT_’
-equivalent.
-
-   If ‘org-export-allow-bind-keywords’ is non-‘nil’, Emacs variables can
-become buffer-local during export by using the BIND keyword.  Its syntax
-is ‘#+BIND: variable value’.  This is particularly useful for in-buffer
-settings that cannot be changed using keywords.
-
-   ---------- Footnotes ----------
-
-   (1) Many desktops intercept ‘M-<TAB>’ to switch windows.  Use ‘C-M-i’
-or ‘<ESC> <TAB>’ instead.
-
-   (2) The variable ‘org-export-date-timestamp-format’ defines how this
-time-stamp will be exported.
-
-
-File: org,  Node: Table of contents,  Next: Include files,  Prev: Export settings,  Up: Exporting
-
-12.3 Table of contents
-======================
-
-Org normally inserts the table of contents directly before the first
-headline of the file.  Org sets the TOC depth the same as the headline
-levels in the file.  Use a lower number for lower TOC depth.  To turn
-off TOC entirely, use ‘nil’.  This is configured in the
-‘org-export-with-toc’ variable or as keywords in an Org file as:
-
-     #+OPTIONS: toc:2          only include two levels in TOC
-     #+OPTIONS: toc:nil        no default TOC at all
-
-   To move the table of contents to a different location, first turn off
-the default with ‘org-export-with-toc’ variable or with ‘#+OPTIONS:
-toc:nil’.  Then insert ‘#+TOC: headlines N’ at the desired location(s).
-
-     #+OPTIONS: toc:nil        no default TOC
-     ...
-     #+TOC: headlines 2        insert TOC here, with two headline levels
-
-   To adjust the TOC depth for a specific section of the Org document,
-append an additional ‘local’ parameter.  This parameter becomes a
-relative depth for the current level.
-
-   Note that for this feature to work properly in LaTeX export, the Org
-file requires the inclusion of the ‘titletoc’ package.  Because of
-compatibility issues, ‘titletoc’ has to be loaded _before_ ‘hyperref’.
-Customize the ‘org-latex-default-packages-alist’ variable.
-
-     * Section #+TOC: headlines 1 local insert local TOC, with direct children
-     only
-
-   Use the ‘TOC’ keyword to generate list of tables (resp. all listings)
-with captions.
-
-     #+TOC: listings           build a list of listings
-     #+TOC: tables             build a list of tables
-
-   Normally Org uses the headline for its entry in the table of
-contents.  But with ‘ALT_TITLE’ property, a different entry can be
-specified for the table of contents.
-
-
-File: org,  Node: Include files,  Next: Macro replacement,  Prev: Table of contents,  Up: Exporting
-
-12.4 Include files
-==================
-
-Include other files during export.  For example, to include your
-‘.emacs’ file, you could use:
-
-     #+INCLUDE: "~/.emacs" src emacs-lisp
-
-The first parameter is the file name to include.  The optional second
-parameter specifies the block type: ‘example’, ‘export’ or ‘src’.  The
-optional third parameter specifies the source code language to use for
-formatting the contents.  This is relevant to both ‘export’ and ‘src’
-block types.
-
-   If an include file is specified as having a markup language, Org
-neither checks for valid syntax nor changes the contents in any way.
-For ‘example’ and ‘src’ blocks, Org code-escapes the contents before
-inclusion.
-
-   If an include file is not specified as having any markup language,
-Org assumes it be in Org format and proceeds as usual with a few
-exceptions.  Org makes the footnote labels (*note Footnotes::) in the
-included file local to that file.  The contents of the included file
-will belong to the same structure—headline, item—containing the
-‘INCLUDE’ keyword.  In particular, headlines within the file will become
-children of the current section.  That behavior can be changed by
-providing an additional keyword parameter, ‘:minlevel’.  It shifts the
-headlines in the included file to become the lowest level.  For example,
-this syntax makes the included file a sibling of the current top-level
-headline:
-
-     #+INCLUDE: "~/my-book/chapter2.org" :minlevel 1
-
-   Inclusion of only portions of files are specified using ranges
-parameter with ‘:lines’ keyword.  The line at the upper end of the range
-will not be included.  The start and/or the end of the range may be
-omitted to use the obvious defaults.
-
-     #+INCLUDE: "~/.emacs" :lines "5-10"   Include lines 5 to 10, 10 excluded
-     #+INCLUDE: "~/.emacs" :lines "-10"    Include lines 1 to 10, 10 excluded
-     #+INCLUDE: "~/.emacs" :lines "10-"    Include lines from 10 to EOF
-
-   Inclusions may specify a file-link to extract an object matched by
-‘org-link-search’(1) (*note Search options::).
-
-   To extract only the contents of the matched object, set
-‘:only-contents’ property to non-‘nil’.  This will omit any planning
-lines or property drawers.  The ranges for ‘:lines’ keyword are relative
-to the requested element.  Some examples:
-
-     #+INCLUDE: "./paper.org::#theory" :only-contents t
-        Include the body of the heading with the custom id ‘theory’
-     #+INCLUDE: "./paper.org::mytable"  Include named element.
-     #+INCLUDE: "./paper.org::*conclusion" :lines 1-20
-        Include the first 20 lines of the headline named ‘conclusion’.
-
-‘C-c '’
-     Visit the include file at point.
-
-   ---------- Footnotes ----------
-
-   (1) Note that ‘org-link-search-must-match-exact-headline’ is locally
-bound to non-‘nil’.  Therefore, ‘org-link-search’ only matches headlines
-and named elements.
-
-
-File: org,  Node: Macro replacement,  Next: Comment lines,  Prev: Include files,  Up: Exporting
-
-12.5 Macro replacement
-======================
-
-Macros replace text snippets during export.  Macros are defined globally
-in ‘org-export-global-macros’, or document-wise with the following
-syntax:
-
-     #+MACRO: name   replacement text $1, $2 are arguments
-
-which can be referenced using ‘{{{name(arg1, arg2)}}}’(1).
-
-   Org recognizes macro references in following Org markup areas:
-paragraphs, headlines, verse blocks, tables cells and lists.  Org also
-recognizes macro references in keywords, such as ‘#+CAPTION’, ‘#+TITLE’,
-‘#+AUTHOR’, ‘#+DATE’, and for some back-end specific export options.
-
-   Org comes with following pre-defined macros:
-
-‘{{{title}}}’
-‘{{{author}}}’
-‘{{{email}}}’
-     Org replaces these macro references with available information at
-     the time of export.
-
-‘{{{date}}}’
-‘{{{date(FORMAT)}}}’
-     This macro refers to the ‘#+DATE’ keyword.  FORMAT is an optional
-     argument to the ‘{{{date}}}’ macro that will be used only if
-     ‘#+DATE’ is a single timestamp.  FORMAT should be a format string
-     understood by ‘format-time-string’.
-
-‘{{{time(FORMAT)}}}’
-‘{{{modification-time(FORMAT, VC)}}}’
-     These macros refer to the document’s date and time of export and
-     date and time of modification.  FORMAT is a string understood by
-     ‘format-time-string’.  If the second argument to the
-     ‘modification-time’ macro is non-‘nil’, Org uses ‘vc.el’ to
-     retrieve the document’s modification time from the version control
-     system.  Otherwise Org reads the file attributes.
-
-‘{{{input-file}}}’
-     This macro refers to the filename of the exported file.
-
-‘{{{property(PROPERTY-NAME)}}}’
-‘{{{property(PROPERTY-NAME,SEARCH-OPTION)}}}’
-     This macro returns the value of property PROPERTY-NAME in the
-     current entry.  If SEARCH-OPTION (*note Search options::) refers to
-     a remote entry, that will be used instead.
-
-‘{{{n}}}’
-‘{{{n(NAME)}}}’
-‘{{{n(NAME,ACTION)}}}’
-     This macro implements custom counters by returning the number of
-     times the macro has been expanded so far while exporting the
-     buffer.  You can create more than one counter using different NAME
-     values.  If ACTION is ‘-’, previous value of the counter is held,
-     i.e.  the specified counter is not incremented.  If the value is a
-     number, the specified counter is set to that value.  If it is any
-     other non-empty string, the specified counter is reset to 1.  You
-     may leave NAME empty to reset the default counter.
-
-   The surrounding brackets can be made invisible by setting
-‘org-hide-macro-markers’ non-‘nil’.
-
-   Org expands macros at the very beginning of the export process.
-
-   ---------- Footnotes ----------
-
-   (1) Since commas separate the arguments, commas within arguments have
-to be escaped with the backslash character.  So only those backslash
-characters before a comma need escaping with another backslash
-character.
-
-
-File: org,  Node: Comment lines,  Next: ASCII/Latin-1/UTF-8 export,  Prev: Macro replacement,  Up: Exporting
-
-12.6 Comment lines
-==================
-
-Lines starting with zero or more whitespace characters followed by one
-‘#’ and a whitespace are treated as comments and, as such, are not
-exported.
-
-   Likewise, regions surrounded by ‘#+BEGIN_COMMENT’ ...
-‘#+END_COMMENT’ are not exported.
-
-   Finally, a ‘COMMENT’ keyword at the beginning of an entry, but after
-any other keyword or priority cookie, comments out the entire subtree.
-In this case, the subtree is not exported and no code block within it is
-executed either(1).  The command below helps changing the comment status
-of a headline.
-
-‘C-c ;’
-     Toggle the ‘COMMENT’ keyword at the beginning of an entry.
-
-   ---------- Footnotes ----------
-
-   (1) For a less drastic behavior, consider using a select tag (*note
-Export settings::) instead.
-
-
-File: org,  Node: ASCII/Latin-1/UTF-8 export,  Next: Beamer export,  Prev: Comment lines,  Up: Exporting
-
-12.7 ASCII/Latin-1/UTF-8 export
-===============================
-
-ASCII export produces an output file containing only plain ASCII
-characters.  This is the most simplest and direct text output.  It does
-not contain any Org markup either.  Latin-1 and UTF-8 export use
-additional characters and symbols available in these encoding standards.
-All three of these export formats offer the most basic of text output
-for maximum portability.
-
-   On export, Org fills and justifies text according to the text width
-set in ‘org-ascii-text-width’.
-
-   Org exports links using a footnote-like style where the descriptive
-part is in the text and the link is in a note before the next heading.
-See the variable ‘org-ascii-links-to-notes’ for details.
-
-ASCII export commands
----------------------
-
-‘C-c C-e t a/l/u     (org-ascii-export-to-ascii)’
-     Export as an ASCII file with a ‘.txt’ extension.  For ‘myfile.org’,
-     Org exports to ‘myfile.txt’, overwriting without warning.  For
-     ‘myfile.txt’, Org exports to ‘myfile.txt.txt’ in order to prevent
-     data loss.
-‘C-c C-e t A/L/U     (org-ascii-export-as-ascii)’
-     Export to a temporary buffer.  Does not create a file.
-
-ASCII specific export settings
-------------------------------
-
-The ASCII export back-end has one extra keyword for customizing ASCII
-output.  Setting this keyword works similar to the general options
-(*note Export settings::).
-
-‘SUBTITLE’
-     The document subtitle.  For long subtitles, use multiple
-     ‘#+SUBTITLE’ lines in the Org file.  Org prints them on one
-     continuous line, wrapping into multiple lines if necessary.
-
-Header and sectioning structure
--------------------------------
-
-Org converts the first three outline levels into headlines for ASCII
-export.  The remaining levels are turned into lists.  To change this
-cut-off point where levels become lists, *note Export settings::.
-
-Quoting ASCII text
-------------------
-
-To insert text within the Org file by the ASCII back-end, use one the
-following constructs, inline, keyword, or export block:
-
-     Inline text @@ascii:and additional text@@ within a paragraph.
-
-     #+ASCII: Some text
-
-     #+BEGIN_EXPORT ascii
-     Org exports text in this block only when using ASCII back-end.
-     #+END_EXPORT
-
-ASCII specific attributes
--------------------------
-
-ASCII back-end recognizes only one attribute, ‘:width’, which specifies
-the width of a horizontal rule in number of characters.  The keyword and
-syntax for specifying widths is:
-
-     #+ATTR_ASCII: :width 10
-     -----
-
-ASCII special blocks
---------------------
-
-Besides ‘#+BEGIN_CENTER’ blocks (*note Paragraphs::), ASCII back-end has
-these two left and right justification blocks:
-
-     #+BEGIN_JUSTIFYLEFT
-     It's just a jump to the left...
-     #+END_JUSTIFYLEFT
-
-     #+BEGIN_JUSTIFYRIGHT
-     ...and then a step to the right.
-     #+END_JUSTIFYRIGHT
-
-
-File: org,  Node: Beamer export,  Next: HTML export,  Prev: ASCII/Latin-1/UTF-8 export,  Up: Exporting
-
-12.8 Beamer export
-==================
-
-Org uses _Beamer_ export to convert an Org file tree structure into a
-high-quality interactive slides for presentations.  _Beamer_ is a LaTeX
-document class for creating presentations in PDF, HTML, and other
-popular display formats.
-
-* Menu:
-
-* Beamer export commands::      For creating Beamer documents.
-* Beamer specific export settings::  For customizing Beamer export.
-* Sectioning Frames and Blocks in Beamer::  For composing Beamer slides.
-* Beamer specific syntax::      For using in Org documents.
-* Editing support::             For using helper functions.
-* A Beamer example::            A complete presentation.
-
-
-File: org,  Node: Beamer export commands,  Next: Beamer specific export settings,  Up: Beamer export
-
-12.8.1 Beamer export commands
------------------------------
-
-‘C-c C-e l b     (org-beamer-export-to-latex)’
-     Export as LaTeX file with a ‘.tex’ extension.  For ‘myfile.org’,
-     Org exports to ‘myfile.tex’, overwriting without warning.
-‘C-c C-e l B     (org-beamer-export-as-latex)’
-     Export to a temporary buffer.  Does not create a file.
-‘C-c C-e l P     (org-beamer-export-to-pdf)’
-     Export as LaTeX file and then convert it to PDF format.
-‘C-c C-e l O’
-     Export as LaTeX file, convert it to PDF format, and then open the
-     PDF file.
-
-
-File: org,  Node: Beamer specific export settings,  Next: Sectioning Frames and Blocks in Beamer,  Prev: Beamer export commands,  Up: Beamer export
-
-12.8.2 Beamer specific export settings
---------------------------------------
-
-Beamer export back-end has several additional keywords for customizing
-Beamer output.  These keywords work similar to the general options
-settings (*note Export settings::).
-
-‘BEAMER_THEME’
-     The Beamer layout theme (‘org-beamer-theme’).  Use square brackets
-     for options.  For example:
-          #+BEAMER_THEME: Rochester [height=20pt]
-
-‘BEAMER_FONT_THEME’
-     The Beamer font theme.
-
-‘BEAMER_INNER_THEME’
-     The Beamer inner theme.
-
-‘BEAMER_OUTER_THEME’
-     The Beamer outer theme.
-
-‘BEAMER_HEADER’
-     Arbitrary lines inserted in the preamble, just before the
-     ‘hyperref’ settings.
-
-‘DESCRIPTION’
-     The document description.  For long descriptions, use multiple
-     ‘#+DESCRIPTION’ keywords.  By default, ‘hyperref’ inserts
-     ‘#+DESCRIPTION’ as metadata.  Use ‘org-latex-hyperref-template’ to
-     configure document metadata.  Use ‘org-latex-title-command’ to
-     configure typesetting of description as part of front matter.
-
-‘KEYWORDS’
-     The keywords for defining the contents of the document.  Use
-     multiple ‘#+KEYWORDS’ lines if necessary.  By default, ‘hyperref’
-     inserts ‘#+KEYWORDS’ as metadata.  Use
-     ‘org-latex-hyperref-template’ to configure document metadata.  Use
-     ‘org-latex-title-command’ to configure typesetting of keywords as
-     part of front matter.
-
-‘SUBTITLE’
-     Document’s subtitle.  For typesetting, use
-     ‘org-beamer-subtitle-format’ string.  Use
-     ‘org-latex-hyperref-template’ to configure document metadata.  Use
-     ‘org-latex-title-command’ to configure typesetting of subtitle as
-     part of front matter.
-
-
-File: org,  Node: Sectioning Frames and Blocks in Beamer,  Next: Beamer specific syntax,  Prev: Beamer specific export settings,  Up: Beamer export
-
-12.8.3 Sectioning, Frames and Blocks in Beamer
-----------------------------------------------
-
-Org transforms heading levels into Beamer’s sectioning elements, frames
-and blocks.  Any Org tree with a not-too-deep-level nesting should in
-principle be exportable as a Beamer presentation.
-
-   − Org headlines become Beamer frames when the heading level in Org is
-     equal to ‘org-beamer-frame-level’ or ‘H’ value in an ‘OPTIONS’ line
-     (*note Export settings::).
-
-     Org overrides headlines to frames conversion for the current tree
-     of an Org file if it encounters the ‘BEAMER_ENV’ property set to
-     ‘frame’ or ‘fullframe’.  Org ignores whatever
-     ‘org-beamer-frame-level’ happens to be for that headline level in
-     the Org tree.  In Beamer terminology, a ‘fullframe’ is a frame
-     without its title.
-
-   − Org exports a Beamer frame’s objects as ‘block’ environments.  Org
-     can enforce wrapping in special block types when ‘BEAMER_ENV’
-     property is set(1).  For valid values see
-     ‘org-beamer-environments-default’.  To add more values, see
-     ‘org-beamer-environments-extra’.
-
-   − If ‘BEAMER_ENV’ is set to ‘appendix’, Org exports the entry as an
-     appendix.  When set to ‘note’, Org exports the entry as a note
-     within the frame or between frames, depending on the entry’s
-     heading level.  When set to ‘noteNH’, Org exports the entry as a
-     note without its title.  When set to ‘againframe’, Org exports the
-     entry with ‘\againframe’ command, which makes setting the
-     ‘BEAMER_REF’ property mandatory because ‘\againframe’ needs frame
-     to resume.
-
-     When ‘ignoreheading’ is set, Org export ignores the entry’s
-     headline but not its content.  This is useful for inserting content
-     between frames.  It is also useful for properly closing a ‘column’
-     environment.
-
-   When ‘BEAMER_ACT’ is set for a headline, Org export translates that
-headline as an overlay or action specification.  When enclosed in square
-brackets, Org export makes the overlay specification a default.  Use
-‘BEAMER_OPT’ to set any options applicable to the current Beamer frame
-or block.  The Beamer export back-end wraps with appropriate angular or
-square brackets.  It also adds the ‘fragile’ option for any code that
-may require a verbatim block.
-
-   To create a column on the Beamer slide, use the ‘BEAMER_COL’ property
-for its headline in the Org file.  Set the value of ‘BEAMER_COL’ to a
-decimal number representing the fraction of the total text width.
-Beamer export uses this value to set the column’s width and fills the
-column with the contents of the Org entry.  If the Org entry has no
-specific environment defined, Beamer export ignores the heading.  If the
-Org entry has a defined environment, Beamer export uses the heading as
-title.  Behind the scenes, Beamer export automatically handles LaTeX
-column separations for contiguous headlines.  To manually adjust them
-for any unique configurations needs, use the ‘BEAMER_ENV’ property.
-
-   ---------- Footnotes ----------
-
-   (1) If ‘BEAMER_ENV’ is set, Org export adds ‘:B_environment:’ tag to
-make it visible.  The tag serves as a visual aid and has no semantic
-relevance.
-
-
-File: org,  Node: Beamer specific syntax,  Next: Editing support,  Prev: Sectioning Frames and Blocks in Beamer,  Up: Beamer export
-
-12.8.4 Beamer specific syntax
------------------------------
-
-Since Org’s Beamer export back-end is an extension of the LaTeX
-back-end, it recognizes other LaTeX specific syntax—for example,
-‘#+LATEX:’ or ‘#+ATTR_LATEX:’.  *Note LaTeX export::, for details.
-
-   Beamer export wraps the table of contents generated with ‘toc:t’
-‘OPTION’ keyword in a ‘frame’ environment.  Beamer export does not wrap
-the table of contents generated with ‘TOC’ keyword (*note Table of
-contents::).  Use square brackets for specifying options.
-
-     #+TOC: headlines [currentsection]
-
-   Insert Beamer-specific code using the following constructs:
-
-     #+BEAMER: \pause
-
-     #+BEGIN_EXPORT beamer
-     Only Beamer export back-end will export this line.
-     #+END_BEAMER
-
-     Text @@beamer:some code@@ within a paragraph.
-
-   Inline constructs, such as the last one above, are useful for adding
-overlay specifications to objects with ‘bold’, ‘item’, ‘link’,
-‘radio-target’ and ‘target’ types.  Enclose the value in angular
-brackets and place the specification at the beginning the object as
-shown in this example:
-
-     A *@@beamer:<2->@@useful* feature
-
-   Beamer export recognizes the ‘ATTR_BEAMER’ keyword with the following
-attributes from Beamer configurations: ‘:environment’ for changing local
-Beamer environment, ‘:overlay’ for specifying Beamer overlays in angular
-or square brackets, and ‘:options’ for inserting optional arguments.
-
-     #+ATTR_BEAMER: :environment nonindentlist
-     - item 1, not indented
-     - item 2, not indented
-     - item 3, not indented
-
-     #+ATTR_BEAMER: :overlay <+->
-     - item 1
-     - item 2
-
-     #+ATTR_BEAMER: :options [Lagrange]
-     Let $G$ be a finite group, and let $H$ be
-     a subgroup of $G$.  Then the order of $H$ divides the order of $G$.
-
-
-File: org,  Node: Editing support,  Next: A Beamer example,  Prev: Beamer specific syntax,  Up: Beamer export
-
-12.8.5 Editing support
-----------------------
-
-The ‘org-beamer-mode’ is a special minor mode for faster editing of
-Beamer documents.
-
-     #+STARTUP: beamer
-
-‘C-c C-b     (org-beamer-select-environment)’
-     The ‘org-beamer-mode’ provides this key for quicker selections in
-     Beamer normal environments, and for selecting the ‘BEAMER_COL’
-     property.
-
-
-File: org,  Node: A Beamer example,  Prev: Editing support,  Up: Beamer export
-
-12.8.6 A Beamer example
------------------------
-
-Here is an example of an Org document ready for Beamer export.
-
-     #+TITLE: Example Presentation
-     #+AUTHOR: Carsten Dominik
-     #+OPTIONS: H:2 toc:t num:t
-     #+LATEX_CLASS: beamer
-     #+LATEX_CLASS_OPTIONS: [presentation]
-     #+BEAMER_THEME: Madrid
-     #+COLUMNS: %45ITEM %10BEAMER_ENV(Env) %10BEAMER_ACT(Act) %4BEAMER_COL(Col) %8BEAMER_OPT(Opt)
-
-     * This is the first structural section
-
-     ** Frame 1
-     *** Thanks to Eric Fraga                                           :B_block:
-         :PROPERTIES:
-         :BEAMER_COL: 0.48
-         :BEAMER_ENV: block
-         :END:
-         for the first viable Beamer setup in Org
-     *** Thanks to everyone else                                        :B_block:
-         :PROPERTIES:
-         :BEAMER_COL: 0.48
-         :BEAMER_ACT: <2->
-         :BEAMER_ENV: block
-         :END:
-         for contributing to the discussion
-     **** This will be formatted as a beamer note                       :B_note:
-          :PROPERTIES:
-          :BEAMER_env: note
-          :END:
-     ** Frame 2 (where we will not use columns)
-     *** Request
-         Please test this stuff!
-
-
-File: org,  Node: HTML export,  Next: LaTeX export,  Prev: Beamer export,  Up: Exporting
-
-12.9 HTML export
-================
-
-Org mode contains an HTML exporter with extensive HTML formatting
-compatible with XHTML 1.0 strict standard.
-
-* Menu:
-
-* HTML Export commands::        Invoking HTML export
-* HTML Specific export settings::  Settings for HTML export
-* HTML doctypes::               Exporting various (X)HTML flavors
-* HTML preamble and postamble::  Inserting preamble and postamble
-* Quoting HTML tags::           Using direct HTML in Org files
-* Links in HTML export::        Interpreting and formatting links
-* Tables in HTML export::       Formatting and modifying tables
-* Images in HTML export::       Inserting figures with HTML output
-* Math formatting in HTML export::  Handling math equations
-* Text areas in HTML export::   Showing an alternate approach, an example
-* CSS support::                 Styling HTML output
-* JavaScript support::          Folding scripting in the web browser
-
-
-File: org,  Node: HTML Export commands,  Next: HTML Specific export settings,  Up: HTML export
-
-12.9.1 HTML export commands
----------------------------
-
-‘C-c C-e h h     (org-html-export-to-html)’
-     Export as HTML file with a ‘.html’ extension.  For ‘myfile.org’,
-     Org exports to ‘myfile.html’, overwriting without warning.  ‘C-c
-     C-e h o’ Exports to HTML and opens it in a web browser.
-
-‘C-c C-e h H     (org-html-export-as-html)’
-     Exports to a temporary buffer.  Does not create a file.
-
-
-File: org,  Node: HTML Specific export settings,  Next: HTML doctypes,  Prev: HTML Export commands,  Up: HTML export
-
-12.9.2 HTML Specific export settings
-------------------------------------
-
-HTML export has a number of keywords, similar to the general options
-settings described in *note Export settings::.
-
-‘DESCRIPTION’
-     This is the document’s description, which the HTML exporter inserts
-     it as a HTML meta tag in the HTML file.  For long descriptions, use
-     multiple ‘#+DESCRIPTION’ lines.  The exporter takes care of
-     wrapping the lines properly.
-
-‘HTML_DOCTYPE’
-     Specify the document type, for example: HTML5 (‘org-html-doctype’).
-
-‘HTML_CONTAINER’
-     Specify the HTML container, such as ‘div’, for wrapping sections
-     and elements (‘org-html-container-element’).
-
-‘HTML_LINK_HOME’
-     The URL for home link (‘org-html-link-home’).
-
-‘HTML_LINK_UP’
-     The URL for the up link of exported HTML pages
-     (‘org-html-link-up’).
-
-‘HTML_MATHJAX’
-     Options for MathJax (‘org-html-mathjax-options’).  MathJax is used
-     to typeset LaTeX math in HTML documents.  *Note Math formatting in
-     HTML export::, for an example.
-
-‘HTML_HEAD’
-     Arbitrary lines for appending to the HTML document’s head
-     (‘org-html-head’).
-
-‘HTML_HEAD_EXTRA’
-     More arbitrary lines for appending to the HTML document’s head
-     (‘org-html-head-extra’).
-
-‘KEYWORDS’
-     Keywords to describe the document’s content.  HTML exporter inserts
-     these keywords as HTML meta tags.  For long keywords, use multiple
-     ‘#+KEYWORDS’ lines.
-
-‘LATEX_HEADER’
-     Arbitrary lines for appending to the preamble; HTML exporter
-     appends when transcoding LaTeX fragments to images (*note Math
-     formatting in HTML export::).
-
-‘SUBTITLE’
-     The document’s subtitle.  HTML exporter formats subtitle if
-     document type is ‘HTML5’ and the CSS has a ‘subtitle’ class.
-
-   Some of these keywords are explained in more detail in the following
-sections of the manual.
-
-
-File: org,  Node: HTML doctypes,  Next: HTML preamble and postamble,  Prev: HTML Specific export settings,  Up: HTML export
-
-12.9.3 HTML doctypes
---------------------
-
-Org can export to various (X)HTML flavors.
-
-   Set the ‘org-html-doctype’ variable for different (X)HTML variants.
-Depending on the variant, the HTML exporter adjusts the syntax of HTML
-conversion accordingly.  Org includes the following ready-made variants:
-
-   • “html4-strict”
-   • “html4-transitional”
-   • “html4-frameset”
-   • “xhtml-strict”
-   • “xhtml-transitional”
-   • “xhtml-frameset”
-   • “xhtml-11”
-   • “html5”
-   • “xhtml5”
-
-See the variable ‘org-html-doctype-alist’ for details.  The default is
-“xhtml-strict”.
-
-   Org’s HTML exporter does not by default enable new block elements
-introduced with the HTML5 standard.  To enable them, set
-‘org-html-html5-fancy’ to non-‘nil’.  Or use an ‘OPTIONS’ line in the
-file to set ‘html5-fancy’.  HTML5 documents can now have arbitrary
-‘#+BEGIN’ and ‘#+END’ blocks.  For example:
-
-     #+BEGIN_aside
-     Lorem ipsum
-     #+END_aside
-
-   Will export to:
-
-     <aside>
-       <p>Lorem ipsum</p>
-     </aside>
-
-   While this:
-
-     #+ATTR_HTML: :controls controls :width 350
-     #+BEGIN_video
-     #+HTML: <source src="movie.mp4" type="video/mp4">
-     #+HTML: <source src="movie.ogg" type="video/ogg">
-     Your browser does not support the video tag.
-     #+END_video
-
-   Exports to:
-
-     <video controls="controls" width="350">
-       <source src="movie.mp4" type="video/mp4">
-       <source src="movie.ogg" type="video/ogg">
-       <p>Your browser does not support the video tag.</p>
-     </video>
-
-   When special blocks do not have a corresponding HTML5 element, the
-HTML exporter reverts to standard translation (see
-‘org-html-html5-elements’).  For example, ‘#+BEGIN_lederhosen’ exports
-to ‘<div class="lederhosen">’.
-
-   Special blocks cannot have headlines.  For the HTML exporter to wrap
-the headline and its contents in ‘<section>’ or ‘<article>’ tags, set
-the ‘HTML_CONTAINER’ property for the headline.
-
-
-File: org,  Node: HTML preamble and postamble,  Next: Quoting HTML tags,  Prev: HTML doctypes,  Up: HTML export
-
-12.9.4 HTML preamble and postamble
-----------------------------------
-
-The HTML exporter has delineations for preamble and postamble.  The
-default value for ‘org-html-preamble’ is ‘t’, which makes the HTML
-exporter insert the preamble.  See the variable
-‘org-html-preamble-format’ for the format string.
-
-   Set ‘org-html-preamble’ to a string to override the default format
-string.  If the string is a function, the HTML exporter expects the
-function to return a string upon execution.  The HTML exporter inserts
-this string in the preamble.  The HTML exporter will not insert a
-preamble if ‘org-html-preamble’ is set ‘nil’.
-
-   The default value for ‘org-html-postamble’ is ‘auto’, which makes the
-HTML exporter build a postamble from looking up author’s name, email
-address, creator’s name, and date.  Set ‘org-html-postamble’ to ‘t’ to
-insert the postamble in the format specified in the
-‘org-html-postamble-format’ variable.  The HTML exporter will not insert
-a postamble if ‘org-html-postamble’ is set to ‘nil’.
-
-
-File: org,  Node: Quoting HTML tags,  Next: Links in HTML export,  Prev: HTML preamble and postamble,  Up: HTML export
-
-12.9.5 Quoting HTML tags
-------------------------
-
-The HTML export back-end transforms ‘<’ and ‘>’ to ‘&lt;’ and ‘&gt;’.
-To include raw HTML code in the Org file so the HTML export back-end can
-insert that HTML code in the output, use this inline syntax: ‘@@html:’.
-For example: ‘@@html:<b>@@bold text@@html:</b>@@’.  For larger raw HTML
-code blocks, use these HTML export code blocks:
-
-     #+HTML: Literal HTML code for export
-
-or
-
-     #+BEGIN_EXPORT html
-     All lines between these markers are exported literally
-     #+END_EXPORT
-
-
-File: org,  Node: Links in HTML export,  Next: Tables in HTML export,  Prev: Quoting HTML tags,  Up: HTML export
-
-12.9.6 Links in HTML export
----------------------------
-
-The HTML export back-end transforms Org’s internal links (*note Internal
-links::) to equivalent HTML links in the output.  The back-end similarly
-handles Org’s automatic links created by radio targets (*note Radio
-targets::) similarly.  For Org links to external files, the back-end
-transforms the links to _relative_ paths.
-
-   For Org links to other ‘.org’ files, the back-end automatically
-changes the file extension to ‘.html’ and makes file paths relative.  If
-the ‘.org’ files have an equivalent ‘.html’ version at the same
-location, then the converted links should work without any further
-manual intervention.  However, to disable this automatic path
-translation, set ‘org-html-link-org-files-as-html’ to ‘nil’.  When
-disabled, the HTML export back-end substitutes the ‘id:’-based links in
-the HTML output.  For more about linking files when publishing to a
-directory, *note Publishing links::.
-
-   Org files can also have special directives to the HTML export
-back-end.  For example, by using ‘#+ATTR_HTML’ lines to specify new
-format attributes to ‘<a>’ or ‘<img>’ tags.  This example shows changing
-the link’s ‘title’ and ‘style’:
-
-     #+ATTR_HTML: :title The Org mode homepage :style color:red;
-     [[https://orgmode.org]]
-
-
-File: org,  Node: Tables in HTML export,  Next: Images in HTML export,  Prev: Links in HTML export,  Up: HTML export
-
-12.9.7 Tables in HTML export
-----------------------------
-
-The HTML export back-end uses ‘org-html-table-default-attributes’ when
-exporting Org tables to HTML. By default, the exporter does not draw
-frames and cell borders.  To change for this for a table, use the
-following lines before the table in the Org file:
-
-     #+CAPTION: This is a table with lines around and between cells
-     #+ATTR_HTML: :border 2 :rules all :frame border
-
-   The HTML export back-end preserves column groupings in Org tables
-(*note Column groups::) when exporting to HTML.
-
-   Additional options for customizing tables for HTML export.
-
-‘org-html-table-align-individual-fields’
-     Non-‘nil’ attaches style attributes for alignment to each table
-     field.
-
-‘org-html-table-caption-above’
-     Non-‘nil’ places caption string at the beginning of the table.
-
-‘org-html-table-data-tags’
-     Opening and ending tags for table data fields.
-
-‘org-html-table-default-attributes’
-     Default attributes and values for table tags.
-
-‘org-html-table-header-tags’
-     Opening and ending tags for table’s header fields.
-
-‘org-html-table-row-tags’
-     Opening and ending tags for table rows.
-
-‘org-html-table-use-header-tags-for-first-column’
-     Non-‘nil’ formats column one in tables with header tags.
-
-
-File: org,  Node: Images in HTML export,  Next: Math formatting in HTML export,  Prev: Tables in HTML export,  Up: HTML export
-
-12.9.8 Images in HTML export
-----------------------------
-
-The HTML export back-end has features to convert Org image links to HTML
-inline images and HTML clickable image links.
-
-   When the link in the Org file has no description, the HTML export
-back-end by default in-lines that image.  For example:
-‘[[file:myimg.jpg]]’ is in-lined, while ‘[[file:myimg.jpg][the image]]’
-links to the text, ‘the image’.
-
-   For more details, see the variable ‘org-html-inline-images’.
-
-   On the other hand, if the description part of the Org link is itself
-another link, such as ‘file:’ or ‘http:’ URL pointing to an image, the
-HTML export back-end in-lines this image and links to the main image.
-This Org syntax enables the back-end to link low-resolution thumbnail to
-the high-resolution version of the image, as shown in this example:
-
-     [[file:highres.jpg][file:thumb.jpg]]
-
-   To change attributes of in-lined images, use ‘#+ATTR_HTML’ lines in
-the Org file.  This example shows realignment to right, and adds ‘alt’
-and ‘title’ attributes in support of text viewers and modern web
-accessibility standards.
-
-     #+CAPTION: A black cat stalking a spider
-     #+ATTR_HTML: :alt cat/spider image :title Action! :align right
-     [[./img/a.jpg]]
-
-The HTML export back-end copies the ‘http’ links from the Org file as
-is.
-
-
-File: org,  Node: Math formatting in HTML export,  Next: Text areas in HTML export,  Prev: Images in HTML export,  Up: HTML export
-
-12.9.9 Math formatting in HTML export
--------------------------------------
-
-LaTeX math snippets (*note LaTeX fragments::) can be displayed in two
-different ways on HTML pages.  The default is to use MathJax
-(http://www.mathjax.org) which should work out of the box with Org(1).
-Some MathJax display options can be configured via
-‘org-html-mathjax-options’, or in the buffer.  For example, with the
-following settings,
-     #+HTML_MATHJAX: align: left indent: 5em tagside: left font: Neo-Euler
-   equation labels will be displayed on the left margin and equations
-will be five ems from the left margin.
-
-See the docstring of ‘org-html-mathjax-options’ for all supported
-variables.  The MathJax template can be configure via
-‘org-html-mathjax-template’.
-
-   If you prefer, you can also request that LaTeX fragments are
-processed into small images that will be inserted into the browser page.
-Before the availability of MathJax, this was the default method for Org
-files.  This method requires that the ‘dvipng’ program, ‘dvisvgm’ or
-‘imagemagick’ suite is available on your system.  You can still get this
-processing with
-
-     #+OPTIONS: tex:dvipng
-
-     #+OPTIONS: tex:dvisvgm
-
-   or:
-
-     #+OPTIONS: tex:imagemagick
-
-   ---------- Footnotes ----------
-
-   (1) By default Org loads MathJax from cdnjs.com (https://cdnjs.com)
-as recommended by MathJax (http://www.mathjax.org).
-
-
-File: org,  Node: Text areas in HTML export,  Next: CSS support,  Prev: Math formatting in HTML export,  Up: HTML export
-
-12.9.10 Text areas in HTML export
----------------------------------
-
-Before Org mode’s Babel, one popular approach to publishing code in HTML
-was by using ‘:textarea’.  The advantage of this approach was that
-copying and pasting was built into browsers with simple JavaScript
-commands.  Even editing before pasting was made simple.
-
-   The HTML export back-end can create such text areas.  It requires an
-‘#+ATTR_HTML:’ line as shown in the example below with the ‘:textarea’
-option.  This must be followed by either an ‘example’ or a ‘src’ code
-block.  Other Org block types will not honor the ‘:textarea’ option.
-
-   By default, the HTML export back-end creates a text area 80
-characters wide and height just enough to fit the content.  Override
-these defaults with ‘:width’ and ‘:height’ options on the ‘#+ATTR_HTML:’
-line.
-
-     #+ATTR_HTML: :textarea t :width 40
-     #+BEGIN_EXAMPLE
-       (defun org-xor (a b)
-          "Exclusive or."
-          (if a (not b) b))
-     #+END_EXAMPLE
-
-
-File: org,  Node: CSS support,  Next: JavaScript support,  Prev: Text areas in HTML export,  Up: HTML export
-
-12.9.11 CSS support
--------------------
-
-You can modify the CSS style definitions for the exported file.  The
-HTML exporter assigns the following special CSS classes(1) to
-appropriate parts of the document—your style specifications may change
-these, in addition to any of the standard classes like for headlines,
-tables, etc.
-     p.author            author information, including email
-     p.date              publishing date
-     p.creator           creator info, about org mode version
-     .title              document title
-     .subtitle           document subtitle
-     .todo               TODO keywords, all not-done states
-     .done               the DONE keywords, all states that count as done
-     .WAITING            each TODO keyword also uses a class named after itself
-     .timestamp          timestamp
-     .timestamp-kwd      keyword associated with a timestamp, like ‘SCHEDULED’
-     .timestamp-wrapper  span around keyword plus timestamp
-     .tag                tag in a headline
-     ._HOME              each tag uses itself as a class, "@" replaced by "_"
-     .target             target for links
-     .linenr             the line number in a code example
-     .code-highlighted   for highlighting referenced code lines
-     div.outline-N       div for outline level N (headline plus text))
-     div.outline-text-N  extra div for text at outline level N
-     .section-number-N   section number in headlines, different for each level
-     .figure-number      label like "Figure 1:"
-     .table-number       label like "Table 1:"
-     .listing-number     label like "Listing 1:"
-     div.figure          how to format an in-lined image
-     pre.src             formatted source code
-     pre.example         normal example
-     p.verse             verse paragraph
-     div.footnotes       footnote section headline
-     p.footnote          footnote definition paragraph, containing a footnote
-     .footref            a footnote reference number (always a <sup>)
-     .footnum            footnote number in footnote definition (always <sup>)
-     .org-svg            default class for a linked ‘.svg’ image
-
-   The HTML export back-end includes a compact default style in each
-exported HTML file.  To override the default style with another style,
-use these keywords in the Org file.  They will replace the global
-defaults the HTML exporter uses.
-
-     #+HTML_HEAD: <link rel="stylesheet" type="text/css" href="style1.css" />
-     #+HTML_HEAD_EXTRA: <link rel="alternate stylesheet" type="text/css" href="style2.css" />
-
-   To just turn off the default style, customize
-‘org-html-head-include-default-style’ variable, or use this option line
-in the Org file.
-
-     #+OPTIONS: html-style:nil
-
-For longer style definitions, either use several ‘#+HTML_HEAD’ and
-‘#+HTML_HEAD_EXTRA’ lines, or use ‘<style>’ ‘</style>’ blocks around
-them.  Both of these approaches can avoid referring to an external file.
-
-   In order to add styles to a sub-tree, use the
-‘:HTML_CONTAINER_CLASS:’ property to assign a class to the tree.  In
-order to specify CSS styles for a particular headline, you can use the
-id specified in a ‘:CUSTOM_ID:’ property.
-
-   Never change the ‘org-html-style-default’ constant.  Instead use
-other simpler ways of customizing as described above.
-
-   ---------- Footnotes ----------
-
-   (1) If the classes on TODO keywords and tags lead to conflicts, use
-the variables ‘org-html-todo-kwd-class-prefix’ and
-‘org-html-tag-class-prefix’ to make them unique.
-
-
-File: org,  Node: JavaScript support,  Prev: CSS support,  Up: HTML export
-
-12.9.12 JavaScript supported display of web pages
--------------------------------------------------
-
-Sebastian Rose has written a JavaScript program especially designed to
-enhance the web viewing experience of HTML files created with Org.  This
-program enhances large files in two different ways of viewing.  One is
-an _Info_-like mode where each section is displayed separately and
-navigation can be done with the ‘n’ and ‘p’ keys (and some other keys as
-well, press ‘?’ for an overview of the available keys).  The second one
-has a _folding_ view, much like Org provides inside Emacs.  The script
-is available at <https://orgmode.org/org-info.js> and the documentation
-at <https://orgmode.org/worg/code/org-info-js/>.  The script is hosted
-on <https://orgmode.org>, but for reliability, prefer installing it on
-your own web server.
-
-   To use this program, just add this line to the Org file:
-
-     #+INFOJS_OPT: view:info toc:nil
-
-The HTML header now has the code needed to automatically invoke the
-script.  For setting options, use the syntax from the above line for
-options described below:
-
-     path:    The path to the script.  The default grabs the script from
-              <https://orgmode.org/org-info.js>, but you might want to have
-              a local copy and use a path like ‘../scripts/org-info.js’.
-     view:    Initial view when the website is first shown.  Possible values are:
-              info      Info-like interface with one section per page.
-              overview  Folding interface, initially showing only top-level.
-              content   Folding interface, starting with all headlines visible.
-              showall   Folding interface, all headlines and text visible.
-     sdepth:  Maximum headline level that will still become an independent
-              section for info and folding modes.  The default is taken from
-              ‘org-export-headline-levels’ (= the ‘H’ switch in ‘#+OPTIONS’).
-              If this is smaller than in ‘org-export-headline-levels’, each
-              info/folding section can still contain child headlines.
-     toc:     Should the table of contents _initially_ be visible?
-              Even when ‘nil’, you can always get to the "toc" with ‘i’.
-     tdepth:  The depth of the table of contents.  The defaults are taken from
-              the variables ‘org-export-headline-levels’ and ‘org-export-with-toc’.
-     ftoc:    Does the CSS of the page specify a fixed position for the "toc"?
-              If yes, the toc will never be displayed as a section.
-     ltoc:    Should there be short contents (children) in each section?
-              Make this ‘above’ if the section should be above initial text.
-     mouse:   Headings are highlighted when the mouse is over them.  Should be
-              ‘underline’ (default) or a background color like ‘#cccccc’.
-     buttons: Should view-toggle buttons be everywhere?  When ‘nil’ (the
-              default), only one such button will be present.
-You can choose default values for these options by customizing the
-variable ‘org-html-infojs-options’.  If you want the script to always
-apply to your pages, configure the variable ‘org-html-use-infojs’.
-
-
-File: org,  Node: LaTeX export,  Next: Markdown export,  Prev: HTML export,  Up: Exporting
-
-12.10 LaTeX export
-==================
-
-The LaTeX export back-end can handle complex documents, incorporate
-standard or custom LaTeX document classes, generate documents using
-alternate LaTeX engines, and produce fully linked PDF files with
-indexes, bibliographies, and tables of contents, destined for
-interactive online viewing or high-quality print publication.
-
-   While the details are covered in-depth in this section, here are some
-quick references to variables for the impatient: for engines, see
-‘org-latex-compiler’; for build sequences, see ‘org-latex-pdf-process’;
-for packages, see ‘org-latex-default-packages-alist’ and
-‘org-latex-packages-alist’.
-
-   An important note about the LaTeX export back-end: it is sensitive to
-blank lines in the Org document.  That’s because LaTeX itself depends on
-blank lines to tell apart syntactical elements, such as paragraphs.
-
-* Menu:
-
-* LaTeX export commands::    For producing LaTeX and PDF documents.
-* LaTeX specific export settings::  Unique to this LaTeX back-end.
-* LaTeX header and sectioning::  For file structure.
-* Quoting LaTeX code::       Directly in the Org document.
-* Tables in LaTeX export::   Attributes specific to tables.
-* Images in LaTeX export::   Attributes specific to images.
-* Plain lists in LaTeX export::  Attributes specific to lists.
-* Source blocks in LaTeX export::  Attributes specific to source code blocks.
-* Example blocks in LaTeX export::  Attributes specific to example blocks.
-* Special blocks in LaTeX export::  Attributes specific to special blocks.
-* Horizontal rules in LaTeX export::  Attributes specific to horizontal rules.
-
-
-File: org,  Node: LaTeX export commands,  Next: LaTeX specific export settings,  Up: LaTeX export
-
-12.10.1 LaTeX export commands
------------------------------
-
-‘C-c C-e l l     (org-latex-export-to-latex)’
-     Export as LaTeX file with a ‘.tex’ extension.  For ‘myfile.org’,
-     Org exports to ‘myfile.tex’, overwriting without warning.  ‘C-c C-e
-     l l’ Exports to LaTeX file.
-
-‘C-c C-e l L     (org-latex-export-as-latex)’
-     Export to a temporary buffer.  Do not create a file.
-‘C-c C-e l p     (org-latex-export-to-pdf)’
-     Export as LaTeX file and convert it to PDF file.
-‘C-c C-e l o’
-     Export as LaTeX file and convert it to PDF, then open the PDF using
-     the default viewer.
-
-   The LaTeX export back-end can use any of these LaTeX engines:
-‘pdflatex’, ‘xelatex’, and ‘lualatex’.  These engines compile LaTeX
-files with different compilers, packages, and output options.  The LaTeX
-export back-end finds the compiler version to use from
-‘org-latex-compiler’ variable or the ‘#+LATEX_COMPILER’ keyword in the
-Org file.  See the docstring for the ‘org-latex-default-packages-alist’
-for loading packages with certain compilers.  Also see
-‘org-latex-bibtex-compiler’ to set the bibliography compiler(1).
-
-   ---------- Footnotes ----------
-
-   (1) This does not allow setting different bibliography compilers for
-different files.  However, “smart” LaTeX compilation systems, such as
-‘latexmk’, can select the correct bibliography compiler.
-
-
-File: org,  Node: LaTeX specific export settings,  Next: LaTeX header and sectioning,  Prev: LaTeX export commands,  Up: LaTeX export
-
-12.10.2 LaTeX specific export settings
---------------------------------------
-
-The LaTeX export back-end has several additional keywords for
-customizing LaTeX output.  Setting these keywords works similar to the
-general options (*note Export settings::).
-
-‘DESCRIPTION’
-     The document’s description.  The description along with author
-     name, keywords, and related file metadata are inserted in the
-     output file by the ‘hyperref’ package.  See
-     ‘org-latex-hyperref-template’ for customizing metadata items.  See
-     ‘org-latex-title-command’ for typesetting description into the
-     document’s front matter.  Use multiple ‘#+DESCRIPTION’ lines for
-     long descriptions.
-
-‘LATEX_CLASS’
-     This is LaTeX document class, such as ‘article’, ‘report’, ‘book’,
-     and so on, which contain predefined preamble and headline level
-     mapping that the LaTeX export back-end needs.  The back-end reads
-     the default class name from the ‘org-latex-default-class’ variable.
-     Org has ‘article’ as the default class.  A valid default class must
-     be an element of ‘org-latex-classes’.
-
-‘LATEX_CLASS_OPTIONS’
-     Options the LaTeX export back-end uses when calling the LaTeX
-     document class.
-
-‘LATEX_COMPILER’
-     The compiler, such as ‘pdflatex’, ‘xelatex’, ‘lualatex’, for
-     producing the PDF (‘org-latex-compiler’).
-
-‘LATEX_HEADER’
-     Arbitrary lines to add to the document’s preamble, before the
-     ‘hyperref’ settings.  See ‘org-latex-classes’ for adjusting the
-     structure and order of the LaTeX headers.
-
-‘LATEX_HEADER_EXTRA’
-     Arbitrary lines to add to the document’s preamble, before the
-     ‘hyperref’ settings.  See ‘org-latex-classes’ for adjusting the
-     structure and order of the LaTeX headers.
-
-‘KEYWORDS’
-     The keywords for the document.  The description along with author
-     name, keywords, and related file metadata are inserted in the
-     output file by the ‘hyperref’ package.  See
-     ‘org-latex-hyperref-template’ for customizing metadata items.  See
-     ‘org-latex-title-command’ for typesetting description into the
-     document’s front matter.  Use multiple ‘#+KEYWORDS’ lines if
-     necessary.
-
-‘SUBTITLE’
-     The document’s subtitle.  It is typeset as per
-     ‘org-latex-subtitle-format’.  If ‘org-latex-subtitle-separate’ is
-     non-‘nil’, it is typed as part of the ‘\title’-macro.  See
-     ‘org-latex-hyperref-template’ for customizing metadata items.  See
-     ‘org-latex-title-command’ for typesetting description into the
-     document’s front matter.
-
-   The following sections have further details.
-
-
-File: org,  Node: LaTeX header and sectioning,  Next: Quoting LaTeX code,  Prev: LaTeX specific export settings,  Up: LaTeX export
-
-12.10.3 LaTeX header and sectioning structure
----------------------------------------------
-
-The LaTeX export back-end converts the first three of Org’s outline
-levels into LaTeX headlines.  The remaining Org levels are exported as
-‘itemize’ or ‘enumerate’ lists.  To change this globally for the cut-off
-point between levels and lists, (*note Export settings::).
-
-   By default, the LaTeX export back-end uses the ‘article’ class.
-
-   To change the default class globally, edit ‘org-latex-default-class’.
-To change the default class locally in an Org file, add option lines
-‘#+LATEX_CLASS: myclass’.  To change the default class for just a part
-of the Org file, set a sub-tree property, ‘EXPORT_LATEX_CLASS’.  The
-class name entered here must be valid member of ‘org-latex-classes’.
-This variable defines a header template for each class into which the
-exporter splices the values of ‘org-latex-default-packages-alist’ and
-‘org-latex-packages-alist’.  Use the same three variables to define
-custom sectioning or custom classes.
-
-   The LaTeX export back-end sends the ‘LATEX_CLASS_OPTIONS’ keyword and
-‘EXPORT_LATEX_CLASS_OPTIONS’ property as options to the LaTeX
-‘\documentclass’ macro.  The options and the syntax for specifying them,
-including enclosing them in square brackets, follow LaTeX conventions.
-
-     #+LATEX_CLASS_OPTIONS: [a4paper,11pt,twoside,twocolumn]
-
-   The LaTeX export back-end appends values from ‘LATEX_HEADER’ and
-‘LATEX_HEADER_EXTRA’ keywords to the LaTeX header.  The docstring for
-‘org-latex-classes’ explains in more detail.  Also note that LaTeX
-export back-end does not append ‘LATEX_HEADER_EXTRA’ to the header when
-previewing LaTeX snippets (*note Previewing LaTeX fragments::).
-
-   A sample Org file with the above headers:
-
-     #+LATEX_CLASS: article
-     #+LATEX_CLASS_OPTIONS: [a4paper]
-     #+LATEX_HEADER: \usepackage{xyz}
-
-     * Headline 1
-       some text
-     * Headline 2
-       some more text
-
-
-File: org,  Node: Quoting LaTeX code,  Next: Tables in LaTeX export,  Prev: LaTeX header and sectioning,  Up: LaTeX export
-
-12.10.4 Quoting LaTeX code
---------------------------
-
-The LaTeX export back-end can insert any arbitrary LaTeX code, *note
-Embedded LaTeX::.  There are three ways to embed such code in the Org
-file and they all use different quoting syntax.
-
-   Inserting in-line quoted with  symbols:
-     Code embedded in-line @@latex:any arbitrary LaTeX code@@ in a paragraph.
-
-   Inserting as one or more keyword lines in the Org file:
-     #+LATEX: any arbitrary LaTeX code
-
-   Inserting as an export block in the Org file, where the back-end
-exports any code between begin and end markers:
-     #+BEGIN_EXPORT latex
-     any arbitrary LaTeX code
-     #+END_EXPORT
-
-
-File: org,  Node: Tables in LaTeX export,  Next: Images in LaTeX export,  Prev: Quoting LaTeX code,  Up: LaTeX export
-
-12.10.5 Tables in LaTeX export
-------------------------------
-
-The LaTeX export back-end can pass several LaTeX attributes for table
-contents and layout.  Besides specifying label and caption (*note Images
-and tables::), the other valid LaTeX attributes include:
-
-‘:mode’
-     The LaTeX export back-end wraps the table differently depending on
-     the mode for accurate rendering of math symbols.  Mode is either
-     ‘table’, ‘math’, ‘inline-math’ or ‘verbatim’.  For ‘math’ or
-     ‘inline-math’ mode, LaTeX export back-end wraps the table in a math
-     environment, but every cell in it is exported as-is.  The LaTeX
-     export back-end determines the default mode from
-     ‘org-latex-default-table-mode’.  For , The LaTeX export back-end
-     merges contiguous tables in the same mode into a single
-     environment.
-‘:environment’
-     Set the default LaTeX table environment for the LaTeX export
-     back-end to use when exporting Org tables.  Common LaTeX table
-     environments are provided by these packages: ‘tabularx’,
-     ‘longtable’, ‘array’, ‘tabu’, and ‘bmatrix’.  For packages, such as
-     ‘tabularx’ and ‘tabu’, or any newer replacements, include them in
-     the ‘org-latex-packages-alist’ variable so the LaTeX export
-     back-end can insert the appropriate load package headers in the
-     converted LaTeX file.  Look in the docstring for the
-     ‘org-latex-packages-alist’ variable for configuring these packages
-     for LaTeX snippet previews, if any.
-‘:caption’
-     Use ‘#+CAPTION’ keyword to set a simple caption for a table (*note
-     Images and tables::).  For custom captions, use ‘:caption’
-     attribute, which accepts raw LaTeX code.  ‘:caption’ value
-     overrides ‘#+CAPTION’ value.
-‘:float’
-‘:placement’
-     The table environments by default are not floats in LaTeX.  To make
-     them floating objects use ‘:float’ with one of the following
-     options: ‘sideways’, ‘multicolumn’, ‘t’, and ‘nil’.  Note that
-     ‘sidewaystable’ has been deprecated since Org 8.3.  LaTeX floats
-     can also have additional layout ‘:placement’ attributes.  These are
-     the usual ‘[h t b p ! H]’ permissions specified in square brackets.
-     Note that for ‘:float sideways’ tables, the LaTeX export back-end
-     ignores ‘:placement’ attributes.
-‘:align’
-‘:font’
-‘:width’
-     The LaTeX export back-end uses these attributes for regular tables
-     to set their alignments, fonts, and widths.
-‘:spread’
-     When ‘:spread’ is non-‘nil’, the LaTeX export back-end spreads or
-     shrinks the table by the ‘:width’ for ‘tabu’ and ‘longtabu’
-     environments.  ‘:spread’ has no effect if ‘:width’ is not set.
-‘:booktabs’
-‘:center’
-‘:rmlines’
-     All three commands are toggles.  ‘:booktabs’ brings in modern
-     typesetting enhancements to regular tables.  The ‘booktabs’ package
-     has to be loaded through ‘org-latex-packages-alist’.  ‘:center’ is
-     for centering the table.  ‘:rmlines’ removes all but the very first
-     horizontal line made of ASCII characters from "table.el" tables
-     only.
-‘:math-prefix’
-‘:math-suffix’
-‘:math-arguments’
-     The LaTeX export back-end inserts ‘:math-prefix’ string value in a
-     math environment before the table.  The LaTeX export back-end
-     inserts ‘:math-suffix’ string value in a math environment after the
-     table.  The LaTeX export back-end inserts ‘:math-arguments’ string
-     value between the macro name and the table’s contents.
-     ‘:math-arguments’ comes in use for matrix macros that require more
-     than one argument, such as ‘qbordermatrix’.
-
-   LaTeX table attributes help formatting tables for a wide range of
-situations, such as matrix product or spanning multiple pages:
-
-     #+ATTR_LATEX: :environment longtable :align l|lp{3cm}r|l
-     | ..... | ..... |
-     | ..... | ..... |
-
-     #+ATTR_LATEX: :mode math :environment bmatrix :math-suffix \times
-     | a | b |
-     | c | d |
-     #+ATTR_LATEX: :mode math :environment bmatrix
-     | 1 | 2 |
-     | 3 | 4 |
-
-   Set the caption with the LaTeX command
-‘\bicaption{HeadingA}{HeadingB}’:
-
-     #+ATTR_LATEX: :caption \bicaption{HeadingA}{HeadingB}
-     | ..... | ..... |
-     | ..... | ..... |
-
-
-File: org,  Node: Images in LaTeX export,  Next: Plain lists in LaTeX export,  Prev: Tables in LaTeX export,  Up: LaTeX export
-
-12.10.6 Images in LaTeX export
-------------------------------
-
-The LaTeX export back-end processes image links in Org files that do not
-have descriptions, such as these links ‘[[file:img.jpg]]’ or
-‘[[./img.jpg]]’, as direct image insertions in the final PDF output.  In
-the PDF, they are no longer links but actual images embedded on the
-page.  The LaTeX export back-end uses ‘\includegraphics’ macro to insert
-the image.  But for TikZ(1) images, the back-end uses an ‘\input’ macro
-wrapped within a ‘tikzpicture’ environment.
-
-   For specifying image ‘:width’, ‘:height’, and other ‘:options’, use
-this syntax:
-
-     #+ATTR_LATEX: :width 5cm :options angle=90
-     [[./img/sed-hr4049.pdf]]
-
-   For custom commands for captions, use the ‘:caption’ attribute.  It
-will override the default ‘#+CAPTION’ value:
-
-     #+ATTR_LATEX: :caption \bicaption{HeadingA}{HeadingB}
-     [[./img/sed-hr4049.pdf]]
-
-   When captions follow the method as described in *note Images and
-tables::, the LaTeX export back-end wraps the picture in a floating
-‘figure’ environment.  To float an image without specifying a caption,
-set the ‘:float’ attribute to one of the following:
-   − ‘t’: for a standard ‘figure’ environment; used by default whenever
-     an image has a caption.
-   − ‘multicolumn’: to span the image across multiple columns of a page;
-     the back-end wraps the image in a ‘figure*’ environment.
-   − ‘wrap’: for text to flow around the image on the right; the figure
-     occupies the left half of the page.
-   − ‘sideways’: for a new page with the image sideways, rotated ninety
-     degrees, in a ‘sidewaysfigure’ environment; overrides ‘:placement’
-     setting.
-   − ‘nil’: to avoid a ‘:float’ even if using a caption.
-Use the ‘placement’ attribute to modify a floating environment’s
-placement.
-
-     #+ATTR_LATEX: :float wrap :width 0.38\textwidth :placement
-     {r}{0.4\textwidth} [[./img/hst.png]]
-
-   The LaTeX export back-end centers all images by default.  Setting
-‘:center’ attribute to ‘nil’ disables centering.  To disable centering
-globally, set ‘org-latex-images-centered’ to ‘t’.
-
-   Set the ‘:comment-include’ attribute to non-‘nil’ value for the LaTeX
-export back-end to comment out the ‘\includegraphics’ macro.
-
-   ---------- Footnotes ----------
-
-   (1) <http://sourceforge.net/projects/pgf/>
-
-
-File: org,  Node: Plain lists in LaTeX export,  Next: Source blocks in LaTeX export,  Prev: Images in LaTeX export,  Up: LaTeX export
-
-12.10.7 Plain lists in LaTeX export
------------------------------------
-
-The LaTeX export back-end accepts the ‘:environment’ and ‘:options’
-attributes for plain lists.  Both attributes work together for
-customizing lists, as shown in the examples:
-
-     #+LATEX_HEADER: \usepackage[inline]{enumitem}
-     Some ways to say "Hello":
-     #+ATTR_LATEX: :environment itemize*
-     #+ATTR_LATEX: :options [label={}, itemjoin={,}, itemjoin*={, and}]
-     - Hola
-     - Bonjour
-     - Guten Tag.
-
-   Since LaTeX supports only four levels of nesting for lists, use an
-external package, such as ‘enumitem’ in LaTeX, for levels deeper than
-four:
-
-     #+LATEX_HEADER: \usepackage{enumitem}
-     #+LATEX_HEADER: \renewlist{itemize}{itemize}{9}
-     #+LATEX_HEADER: \setlist[itemize]{label=$\circ$}
-     - One
-       - Two
-         - Three
-           - Four
-             - Five
-
-
-File: org,  Node: Source blocks in LaTeX export,  Next: Example blocks in LaTeX export,  Prev: Plain lists in LaTeX export,  Up: LaTeX export
-
-12.10.8 Source blocks in LaTeX export
--------------------------------------
-
-The LaTeX export back-end can make source code blocks into floating
-objects through the attributes ‘:float’ and ‘:options’.  For ‘:float’:
-
-   − ‘t’: makes a source block float; by default floats any source block
-     with a caption.
-   − ‘multicolumn’: spans the source block across multiple columns of a
-     page.
-   − ‘nil’: avoids a ‘:float’ even if using a caption; useful for source
-     code blocks that may not fit on a page.
-
-     #+ATTR_LATEX: :float nil
-     #+BEGIN_SRC emacs-lisp
-     Lisp code that may not fit in a single page.
-     #+END_SRC
-
-   The LaTeX export back-end passes string values in ‘:options’ to LaTeX
-packages for customization of that specific source block.  In the
-example below, the ‘:options’ are set for Minted.  Minted is a source
-code highlighting LaTeXpackage with many configurable options.
-
-     #+ATTR_LATEX: :options commentstyle=\bfseries
-     #+BEGIN_SRC emacs-lisp
-       (defun Fib (n)
-         (if (< n 2) n (+ (Fib (- n 1)) (Fib (- n 2)))))
-     #+END_SRC
-
-   To apply similar configuration options for all source blocks in a
-file, use the ‘org-latex-listings-options’ and
-‘org-latex-minted-options’ variables.
-
-
-File: org,  Node: Example blocks in LaTeX export,  Next: Special blocks in LaTeX export,  Prev: Source blocks in LaTeX export,  Up: LaTeX export
-
-12.10.9 Example blocks in LaTeX export
---------------------------------------
-
-The LaTeX export back-end wraps the contents of example blocks in a
-‘verbatim’ environment.  To change this behavior to use another
-environment globally, specify an appropriate export filter (*note
-Advanced configuration::).  To change this behavior to use another
-environment for each block, use the ‘:environment’ parameter to specify
-a custom environment.
-
-     #+ATTR_LATEX: :environment myverbatim
-     #+BEGIN_EXAMPLE
-     This sentence is false.
-     #+END_EXAMPLE
-
-
-File: org,  Node: Special blocks in LaTeX export,  Next: Horizontal rules in LaTeX export,  Prev: Example blocks in LaTeX export,  Up: LaTeX export
-
-12.10.10 Special blocks in LaTeX export
----------------------------------------
-
-For other special blocks in the Org file, the LaTeX export back-end
-makes a special environment of the same name.  The back-end also takes
-‘:options’, if any, and appends as-is to that environment’s opening
-string.  For example:
-
-     #+BEGIN_abstract
-     We demonstrate how to solve the Syracuse problem.
-     #+END_abstract
-
-     #+ATTR_LATEX: :options [Proof of important theorem]
-     #+BEGIN_proof
-     ...
-     Therefore, any even number greater than 2 is the sum of two primes.
-     #+END_proof
-
-exports to
-
-     \begin{abstract}
-     We demonstrate how to solve the Syracuse problem.
-     \end{abstract}
-
-     \begin{proof}[Proof of important theorem]
-     ...
-     Therefore, any even number greater than 2 is the sum of two primes.
-     \end{proof}
-
-   If you need to insert a specific caption command, use ‘:caption’
-attribute.  It will override standard ‘#+CAPTION’ value, if any.  For
-example:
-
-     #+ATTR_LATEX: :caption \MyCaption{HeadingA}
-     #+BEGIN_proof
-     ...
-     #+END_proof
-
-
-File: org,  Node: Horizontal rules in LaTeX export,  Prev: Special blocks in LaTeX export,  Up: LaTeX export
-
-12.10.11 Horizontal rules in LaTeX export
------------------------------------------
-
-The LaTeX export back-end converts horizontal rules by the specified
-‘:width’ and ‘:thickness’ attributes.  For example:
-
-     #+ATTR_LATEX: :width .6\textwidth :thickness 0.8pt
-     -----
-
-
-File: org,  Node: Markdown export,  Next: OpenDocument Text export,  Prev: LaTeX export,  Up: Exporting
-
-12.11 Markdown export
-=====================
-
-The Markdown export back-end, ‘md’, converts an Org file to Markdown
-format, as defined at <http://daringfireball.net/projects/markdown/>.
-
-   The ‘md’ back-end is built on top of the HTML back-end (*note HTML
-export::).  As a consequence, it converts every Org construct not
-supported by Markdown syntax, such as tables, to HTML.
-
-Markdown export commands
-------------------------
-
-‘C-c C-e m m     (org-md-export-to-markdown)’
-     Export to a text file with Markdown syntax.  For ‘myfile.org’, Org
-     exports to ‘myfile.md’, overwritten without warning.
-‘C-c C-e m M     (org-md-export-as-markdown)’
-     Export to a temporary buffer.  Does not create a file.
-‘C-c C-e m o’
-     Export as a text file with Markdown syntax, then open it.
-
-Header and sectioning structure
--------------------------------
-
-Based on ‘org-md-headline-style’, markdown export can generate headlines
-of both ‘atx’ and ‘setext’ types.  ‘atx’ limits headline levels to two.
-‘setext’ limits headline levels to six.  Beyond these limits, the export
-back-end converts headlines to lists.  To set a limit to a level before
-the absolute limit (*note Export settings::).
-
-
-File: org,  Node: OpenDocument Text export,  Next: Org export,  Prev: Markdown export,  Up: Exporting
-
-12.12 OpenDocument Text export
-==============================
-
-The ODT export back-end handles creating of OpenDocument Text (ODT)
-format files.  The format complies with ‘OpenDocument-v1.2
-specification’(1) and is compatible with LibreOffice 3.4.
-
-* Menu:
-
-* Pre-requisites for ODT export::  Required packages.
-* ODT export commands::         Invoking export.
-* ODT specific export settings::  Configuration options.
-* Extending ODT export::        Producing ‘.doc’, ‘.pdf’ files.
-* Applying custom styles::      Styling the output.
-* Links in ODT export::         Handling and formatting links.
-* Tables in ODT export::        Org table conversions.
-* Images in ODT export::        Inserting images.
-* Math formatting in ODT export::  Formatting LaTeX fragments.
-* Labels and captions in ODT export::  Rendering objects.
-* Literal examples in ODT export::  For source code and example blocks.
-* Advanced topics in ODT export::  For power users.
-
-   ---------- Footnotes ----------
-
-   (1) Open Document Format for Office Applications (OpenDocument)
-Version 1.2
-(http://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2.html)
-
-
-File: org,  Node: Pre-requisites for ODT export,  Next: ODT export commands,  Up: OpenDocument Text export
-
-12.12.1 Pre-requisites for ODT export
--------------------------------------
-
-The ODT export back-end relies on the ‘zip’ program to create the final
-compressed ODT output.  Check if ‘zip’ is locally available and
-executable.  Without ‘zip’, export cannot finish.
-
-
-File: org,  Node: ODT export commands,  Next: ODT specific export settings,  Prev: Pre-requisites for ODT export,  Up: OpenDocument Text export
-
-12.12.2 ODT export commands
----------------------------
-
-‘C-c C-e o o     (org-odt-export-to-odt)’
-
-     Export as OpenDocument Text file.
-
-     If ‘org-odt-preferred-output-format’ is specified, the ODT export
-     back-end automatically converts the exported file to that format.
-     *Note Automatically exporting to other formats:
-     x-export-to-other-formats.
-
-     For ‘myfile.org’, Org exports to ‘myfile.odt’, overwriting without
-     warning.  The ODT export back-end exports a region only if a region
-     was active.  Note for exporting active regions, the
-     ‘transient-mark-mode’ has to be turned on.
-
-     If the selected region is a single tree, the ODT export back-end
-     makes the tree head the document title.  Incidentally, ‘C-c @’
-     selects the current sub-tree.  If the tree head entry has, or
-     inherits, an ‘EXPORT_FILE_NAME’ property, the ODT export back-end
-     uses that for file name.
-
-     ‘C-c C-e o O’ Export to an OpenDocument Text file format and open
-     it.
-
-     When ‘org-odt-preferred-output-format’ is specified, open the
-     converted file instead.  *Note Automatically exporting to other
-     formats: x-export-to-other-formats.
-
-
-File: org,  Node: ODT specific export settings,  Next: Extending ODT export,  Prev: ODT export commands,  Up: OpenDocument Text export
-
-12.12.3 ODT specific export settings
-------------------------------------
-
-The ODT export back-end has several additional keywords for customizing
-ODT output.  Setting these keywords works similar to the general options
-(*note Export settings::).
-
-‘DESCRIPTION’
-     This is the document’s description, which the ODT export back-end
-     inserts as document metadata.  For long descriptions, use multiple
-     ‘#+DESCRIPTION’ lines.
-
-‘KEYWORDS’
-     The keywords for the document.  The ODT export back-end inserts the
-     description along with author name, keywords, and related file
-     metadata as metadata in the output file.  Use multiple ‘#+KEYWORDS’
-     lines if necessary.
-
-‘ODT_STYLES_FILE’
-     The ODT export back-end uses the ‘org-odt-styles-file’ by default.
-     See *note Applying custom styles:: for details.
-
-‘SUBTITLE’
-     The document subtitle.
-
-
-File: org,  Node: Extending ODT export,  Next: Applying custom styles,  Prev: ODT specific export settings,  Up: OpenDocument Text export
-
-12.12.4 Extending ODT export
-----------------------------
-
-The ODT export back-end can produce documents in other formats besides
-ODT using a specialized ODT converter process.  Its common interface
-works with popular converters to produce formats such as ‘doc’, or
-convert a document from one format, say ‘csv’, to another format, say
-‘xls’.
-
-   Customize ‘org-odt-convert-process’ variable to point to ‘unoconv’,
-which is the ODT’s preferred converter.  Working installations of
-LibreOffice would already have ‘unoconv’ installed.  Alternatively,
-other converters may be substituted here.  *Note Configuring a document
-converter::.
-
-Automatically exporting to other formats
-........................................
-
-If ODT format is just an intermediate step to get to other formats, such
-as ‘doc’, ‘docx’, ‘rtf’, or ‘pdf’, etc., then extend the ODT export
-back-end to directly produce that format.  Specify the final format in
-the ‘org-odt-preferred-output-format’ variable.  This is one way to
-extend (*note Exporting to ODT: x-export-to-odt.).
-
-Converting between document formats
-...................................
-
-The Org export back-end is made to be inter-operable with a wide range
-of text document format converters.  Newer generation converters, such
-as LibreOffice and Pandoc, can handle hundreds of formats at once.  Org
-provides a consistent interaction with whatever converter is installed.
-Here are some generic commands:
-
-‘M-x org-odt-convert <RET>’
-     Convert an existing document from one format to another.  With a
-     prefix argument, opens the newly produced file.
-
-
-File: org,  Node: Applying custom styles,  Next: Links in ODT export,  Prev: Extending ODT export,  Up: OpenDocument Text export
-
-12.12.5 Applying custom styles
-------------------------------
-
-The ODT export back-end comes with many OpenDocument styles (*note
-Working with OpenDocument style files::).  To expand or further
-customize these built-in style sheets, either edit the style sheets
-directly or generate them using an application such as LibreOffice.  The
-example here shows creating a style using LibreOffice.
-
-Applying custom styles: the easy way
-....................................
-
-  1. Create a sample ‘example.org’ file with settings as shown below,
-     and export it to ODT format.
-
-          #+OPTIONS: H:10 num:t
-
-  2. Open the above ‘example.odt’ using LibreOffice.  Use the ‘Stylist’
-     to locate the target styles, which typically have the ‘Org’ prefix.
-     Open one, modify, and save as either OpenDocument Text (‘.odt’) or
-     OpenDocument Template (‘.ott’) file.
-
-  3. Customize the variable ‘org-odt-styles-file’ and point it to the
-     newly created file.  For additional configuration options *note
-     Overriding factory styles: x-overriding-factory-styles.
-
-     To apply and ODT style to a particular file, use the
-     ‘#+ODT_STYLES_FILE’ option as shown in the example below:
-
-          #+ODT_STYLES_FILE: "/path/to/example.ott"
-
-     or
-
-          #+ODT_STYLES_FILE: ("/path/to/file.ott" ("styles.xml" "image/hdr.png"))
-
-Using third-party styles and templates
-......................................
-
-The ODT export back-end relies on many templates and style names.  Using
-third-party styles and templates can lead to mismatches.  Templates
-derived from built in ODT templates and styles seem to have fewer
-problems.
-
-
-File: org,  Node: Links in ODT export,  Next: Tables in ODT export,  Prev: Applying custom styles,  Up: OpenDocument Text export
-
-12.12.6 Links in ODT export
----------------------------
-
-ODT export back-end creates native cross-references for internal links
-and Internet-style links for all other link types.
-
-   A link with no description and pointing to a
-regular—un-itemized—outline heading is replaced with a cross-reference
-and section number of the heading.
-
-   A ‘\ref{label}’-style reference to an image, table etc. is replaced
-with a cross-reference and sequence number of the labeled entity.  *Note
-Labels and captions in ODT export::.
-
-
-File: org,  Node: Tables in ODT export,  Next: Images in ODT export,  Prev: Links in ODT export,  Up: OpenDocument Text export
-
-12.12.7 Tables in ODT export
-----------------------------
-
-The ODT export back-end handles native Org mode tables (*note Tables::)
-and simple ‘table.el’ tables.  Complex ‘table.el’ tables having column
-or row spans are not supported.  Such tables are stripped from the
-exported document.
-
-   By default, the ODT export back-end exports a table with top and
-bottom frames and with ruled lines separating row and column groups
-(*note Column groups::).  All tables are typeset to occupy the same
-width.  The ODT export back-end honors any table alignments and relative
-widths for columns (*note Column width and alignment::).
-
-   Note that the ODT export back-end interprets column widths as
-weighted ratios, the default weight being 1.
-
-   Specifying ‘:rel-width’ property on an ‘#+ATTR_ODT’ line controls the
-width of the table.  For example:
-
-     #+ATTR_ODT: :rel-width 50
-     | Area/Month    |   Jan |   Feb |   Mar |   Sum |
-     |---------------+-------+-------+-------+-------|
-     | /             |     < |       |       |     < |
-     | <l13>         |  <r5> |  <r5> |  <r5> |  <r6> |
-     | North America |     1 |    21 |   926 |   948 |
-     | Middle East   |     6 |    75 |   844 |   925 |
-     | Asia Pacific  |     9 |    27 |   790 |   826 |
-     |---------------+-------+-------+-------+-------|
-     | Sum           |    16 |   123 |  2560 |  2699 |
-
-   On export, the above table takes 50% of text width area.  The
-exporter sizes the columns in the ratio: 13:5:5:5:6.  The first column
-is left-aligned and rest of the columns, right-aligned.  Vertical rules
-separate the header and the last column.  Horizontal rules separate the
-header and the last row.
-
-   For even more customization, create custom table styles and associate
-them with a table using the ‘#+ATTR_ODT’ line.  *Note Customizing tables
-in ODT export::.
-
-
-File: org,  Node: Images in ODT export,  Next: Math formatting in ODT export,  Prev: Tables in ODT export,  Up: OpenDocument Text export
-
-12.12.8 Images in ODT export
-----------------------------
-
-Embedding images
-................
-
-The ODT export back-end processes image links in Org files that do not
-have descriptions, such as these links ‘[[file:img.jpg]]’ or
-‘[[./img.jpg]]’, as direct image insertions in the final output.  Either
-of these examples works:
-
-     [[file:img.png]]
-
-     [[./img.png]]
-
-Embedding clickable images
-..........................
-
-For clickable images, provide a link whose description is another link
-to an image file.  For example, to embed an image ‘org-mode-unicorn.png’
-which when clicked jumps to <https://orgmode.org> website, do the
-following
-
-     [[https://orgmode.org][./org-mode-unicorn.png]]
-
-Sizing and scaling of embedded images
-.....................................
-
-Control the size and scale of the embedded images with the ‘#+ATTR_ODT’
-attribute.
-
-   The ODT export back-end starts with establishing the size of the
-image in the final document.  The dimensions of this size is measured in
-centimeters.  The back-end then queries the image file for its
-dimensions measured in pixels.  For this measurement, the back-end
-relies on ImageMagick’s ‘identify’ program or Emacs ‘create-image’ and
-‘image-size’ API. ImageMagick is the preferred choice for large file
-sizes or frequent batch operations.  The back-end then converts the
-pixel dimensions using ‘org-odt-pixels-per-inch’ into the familiar 72
-dpi or 96 dpi.  The default value for this is in
-‘display-pixels-per-inch’, which can be tweaked for better results based
-on the capabilities of the output device.  Here are some common image
-scaling operations:
-
-Explicitly size the image
-     To embed ‘img.png’ as a 10 cm x 10 cm image, do the following:
-
-          #+ATTR_ODT: :width 10 :height 10
-          [[./img.png]]
-
-Scale the image
-     To embed ‘img.png’ at half its size, do the following:
-
-          #+ATTR_ODT: :scale 0.5
-          [[./img.png]]
-
-Scale the image to a specific width
-     To embed ‘img.png’ with a width of 10 cm while retaining the
-     original height:width ratio, do the following:
-
-          #+ATTR_ODT: :width 10
-          [[./img.png]]
-
-Scale the image to a specific height
-     To embed ‘img.png’ with a height of 10 cm while retaining the
-     original height:width ratio, do the following
-
-          #+ATTR_ODT: :height 10
-          [[./img.png]]
-
-Anchoring of images
-...................
-
-The ODT export back-end can anchor images to ‘"as-char"’, ‘"paragraph"’,
-or ‘"page"’.  Set the preferred anchor using the ‘:anchor’ property of
-the ‘#+ATTR_ODT’ line.
-
-   To create an image that is anchored to a page:
-     #+ATTR_ODT: :anchor "page"
-     [[./img.png]]
-
-
-File: org,  Node: Math formatting in ODT export,  Next: Labels and captions in ODT export,  Prev: Images in ODT export,  Up: OpenDocument Text export
-
-12.12.9 Math formatting in ODT export
--------------------------------------
-
-The ODT export back-end has special support built-in for handling math.
-
-* Menu:
-
-* Working with LaTeX math snippets::  Embedding in LaTeX format.
-* Working with MathML or OpenDocument formula files::  Embedding in native format.
-
-
-File: org,  Node: Working with LaTeX math snippets,  Next: Working with MathML or OpenDocument formula files,  Up: Math formatting in ODT export
-
-Working with LaTeX math snippets
-................................
-
-LaTeX math snippets (*note LaTeX fragments::) can be embedded in an ODT
-document in one of the following ways:
-
-  1. MathML
-
-     Add this line to the Org file.  This option is activated on a
-     per-file basis.
-
-          #+OPTIONS: LaTeX:t
-
-     With this option, LaTeX fragments are first converted into MathML
-     fragments using an external LaTeX-to-MathML converter program.  The
-     resulting MathML fragments are then embedded as an OpenDocument
-     Formula in the exported document.
-
-     To specify the LaTeX-to-MathML converter, customize the variables
-     ‘org-latex-to-mathml-convert-command’ and
-     ‘org-latex-to-mathml-jar-file’.
-
-     To use MathToWeb(1) as the preferred converter, configure the above
-     variables as
-
-          (setq org-latex-to-mathml-convert-command
-                "java -jar %j -unicode -force -df %o %I"
-                org-latex-to-mathml-jar-file
-                "/path/to/mathtoweb.jar")
-     To use LaTeXML(2) use
-          (setq org-latex-to-mathml-convert-command
-                "latexmlmath \"%i\" --presentationmathml=%o")
-
-     To quickly verify the reliability of the LaTeX-to-MathML converter,
-     use the following commands:
-
-     ‘M-x org-odt-export-as-odf <RET>’
-          Convert a LaTeX math snippet to an OpenDocument formula
-          (‘.odf’) file.
-
-     ‘M-x org-odt-export-as-odf-and-open <RET>’
-          Convert a LaTeX math snippet to an OpenDocument formula
-          (‘.odf’) file and open the formula file with the
-          system-registered application.
-
-  2. PNG images
-
-     Add this line to the Org file.  This option is activated on a
-     per-file basis.
-
-          #+OPTIONS: tex:dvipng
-
-          #+OPTIONS: tex:dvisvgm
-
-     or:
-
-          #+OPTIONS: tex:imagemagick
-
-     Under this option, LaTeX fragments are processed into PNG or SVG
-     images and the resulting images are embedded in the exported
-     document.  This method requires ‘dvipng’ program, ‘dvisvgm’ or
-     ‘imagemagick’ programs.
-
-   ---------- Footnotes ----------
-
-   (1) See MathToWeb
-(http://www.mathtoweb.com/cgi-bin/mathtoweb_home.pl).
-
-   (2) See <http://dlmf.nist.gov/LaTeXML/>.
-
-
-File: org,  Node: Working with MathML or OpenDocument formula files,  Prev: Working with LaTeX math snippets,  Up: Math formatting in ODT export
-
-Working with MathML or OpenDocument formula files
-.................................................
-
-When embedding LaTeX math snippets in ODT documents is not reliable,
-there is one more option to try.  Embed an equation by linking to its
-MathML (‘.mml’) source or its OpenDocument formula (‘.odf’) file as
-shown below:
-
-     [[./equation.mml]]
-
-   or
-
-     [[./equation.odf]]
-
-
-File: org,  Node: Labels and captions in ODT export,  Next: Literal examples in ODT export,  Prev: Math formatting in ODT export,  Up: OpenDocument Text export
-
-12.12.10 Labels and captions in ODT export
-------------------------------------------
-
-ODT format handles labeling and captioning of objects based on their
-types.  Inline images, tables, LaTeX fragments, and Math formulas are
-numbered and captioned separately.  Each object also gets a unique
-sequence number based on its order of first appearance in the Org file.
-Each category has its own sequence.  A caption is just a label applied
-to these objects.
-
-     #+CAPTION: Bell curve
-     #+LABEL:   fig:SED-HR4049
-     [[./img/a.png]]
-
-   When rendered, it may show as follows in the exported document:
-
-     Figure 2: Bell curve
-
-   To modify the category component of the caption, customize the option
-‘org-odt-category-map-alist’.  For example, to tag embedded images with
-the string ‘Illustration’ instead of the default string ‘Figure’, use
-the following setting:
-
-     (setq org-odt-category-map-alist
-           '(("__Figure__" "Illustration" "value" "Figure" org-odt--enumerable-image-p)))
-
-   With the above modification, the previous example changes to:
-
-     Illustration 2: Bell curve
-
-
-File: org,  Node: Literal examples in ODT export,  Next: Advanced topics in ODT export,  Prev: Labels and captions in ODT export,  Up: OpenDocument Text export
-
-12.12.11 Literal examples in ODT export
----------------------------------------
-
-The ODT export back-end supports literal examples (*note Literal
-examples::) with full fontification.  Internally, the ODT export
-back-end relies on ‘htmlfontify.el’ to generate the style definitions
-needed for fancy listings.  The auto-generated styles get ‘OrgSrc’
-prefix and inherit colors from the faces used by Emacs ‘font-lock’
-library for that source language.
-
-   For custom fontification styles, customize the
-‘org-odt-create-custom-styles-for-srcblocks’ option.
-
-   To turn off fontification of literal examples, customize the
-‘org-odt-fontify-srcblocks’ option.
-
-
-File: org,  Node: Advanced topics in ODT export,  Prev: Literal examples in ODT export,  Up: OpenDocument Text export
-
-12.12.12 Advanced topics in ODT export
---------------------------------------
-
-The ODT export back-end has extensive features useful for power users
-and frequent uses of ODT formats.
-
-* Menu:
-
-* Configuring a document converter::  Registering a document converter.
-* Working with OpenDocument style files::  Exploring internals.
-* Creating one-off styles::     Customizing styles, highlighting.
-* Customizing tables in ODT export::  Defining table templates.
-* Validating OpenDocument XML::  Debugging corrupted OpenDocument files.
-
-
-File: org,  Node: Configuring a document converter,  Next: Working with OpenDocument style files,  Up: Advanced topics in ODT export
-
-Configuring a document converter
-................................
-
-The ODT export back-end works with popular converters with little or no
-extra configuration.  *Note Extending ODT export::.  The following is
-for unsupported converters or tweaking existing defaults.
-
-  1. Register the converter
-
-     Add the name of the converter to the ‘org-odt-convert-processes’
-     variable.  Note that it also requires how the converter is invoked
-     on the command line.  See the variable’s docstring for details.
-
-  2. Configure its capabilities
-
-     Specify which formats the converter can handle by customizing the
-     variable ‘org-odt-convert-capabilities’.  Use the entry for the
-     default values in this variable for configuring the new converter.
-     Also see its docstring for details.
-
-  3. Choose the converter
-
-     Select the newly added converter as the preferred one by
-     customizing the option ‘org-odt-convert-process’.
-
-
-File: org,  Node: Working with OpenDocument style files,  Next: Creating one-off styles,  Prev: Configuring a document converter,  Up: Advanced topics in ODT export
-
-Working with OpenDocument style files
-.....................................
-
-This section explores the internals of the ODT exporter; the means by
-which it produces styled documents; the use of automatic and custom
-OpenDocument styles.
-
-a) Factory styles
-.................
-
-The ODT exporter relies on two files for generating its output.  These
-files are bundled with the distribution under the directory pointed to
-by the variable ‘org-odt-styles-dir’.  The two files are:
-
-   • ‘OrgOdtStyles.xml’
-
-     This file contributes to the ‘styles.xml’ file of the final ‘ODT’
-     document.  This file gets modified for the following purposes:
-
-       1. To control outline numbering based on user settings.
-
-       2. To add styles generated by ‘htmlfontify.el’ for fontification
-          of code blocks.
-
-   • ‘OrgOdtContentTemplate.xml’
-
-     This file contributes to the ‘content.xml’ file of the final ‘ODT’
-     document.  The contents of the Org outline are inserted between the
-     ‘<office:text>’...‘</office:text>’ elements of this file.
-
-     Apart from serving as a template file for the final ‘content.xml’,
-     the file serves the following purposes:
-
-       1. It contains automatic styles for formatting of tables which
-          are referenced by the exporter.
-
-       2. It contains ‘<text:sequence-decl>’...‘</text:sequence-decl>’
-          elements that control numbering of tables, images, equations,
-          and similar entities.
-
-b) Overriding factory styles
-............................
-
-The following two variables control the location from where the ODT
-exporter picks up the custom styles and content template files.
-Customize these variables to override the factory styles used by the
-exporter.
-
-   • ‘org-odt-styles-file’
-
-     The ODT export back-end uses the file pointed to by this variable,
-     such as ‘styles.xml’, for the final output.  It can take one of the
-     following values:
-
-       1. A ‘styles.xml’ file
-
-          Use this file instead of the default ‘styles.xml’
-
-       2. A ‘.odt’ or ‘.ott’ file
-
-          Use the ‘styles.xml’ contained in the specified OpenDocument
-          Text or Template file
-
-       3. A ‘.odt’ or ‘.ott’ file and a subset of files contained within
-          them
-
-          Use the ‘styles.xml’ contained in the specified OpenDocument
-          Text or Template file.  Additionally extract the specified
-          member files and embed those within the final ‘ODT’ document.
-
-          Use this option if the ‘styles.xml’ file references additional
-          files like header and footer images.
-
-       4. ‘nil’
-
-          Use the default ‘styles.xml’
-
-   • ‘org-odt-content-template-file’
-
-     Use this variable to specify the blank ‘content.xml’ that will be
-     used in the final output.
-
-
-File: org,  Node: Creating one-off styles,  Next: Customizing tables in ODT export,  Prev: Working with OpenDocument style files,  Up: Advanced topics in ODT export
-
-Creating one-off styles
-.......................
-
-The ODT export back-end can read embedded raw OpenDocument XML from the
-Org file.  Such direct formatting are useful for one-off instances.
-
-  1. Embedding ODT tags as part of regular text
-
-     Enclose OpenDocument syntax in ‘@@odt:...@@’ for inline markup.
-     For example, to highlight a region of text do the following:
-
-          @@odt:<text:span text:style-name="Highlight">This is highlighted
-          text</text:span>@@.  But this is regular text.
-
-     *Hint:* To see the above example in action, edit the ‘styles.xml’
-     (*note Factory styles: x-orgodtstyles-xml.) and add a custom
-     ‘Highlight’ style as shown below:
-
-          <style:style style:name="Highlight" style:family="text">
-            <style:text-properties fo:background-color="#ff0000"/>
-          </style:style>
-
-  2. Embedding a one-line OpenDocument XML
-
-     The ODT export back-end can read one-liner options with ‘#+ODT:’ in
-     the Org file.  For example, to force a page break:
-
-          #+ODT: <text:p text:style-name="PageBreak"/>
-
-     *Hint:* To see the above example in action, edit your ‘styles.xml’
-     (*note Factory styles: x-orgodtstyles-xml.) and add a custom
-     ‘PageBreak’ style as shown below.
-
-          <style:style style:name="PageBreak" style:family="paragraph"
-                       style:parent-style-name="Text_20_body">
-            <style:paragraph-properties fo:break-before="page"/>
-          </style:style>
-
-  3. Embedding a block of OpenDocument XML
-
-     The ODT export back-end can also read ODT export blocks for
-     OpenDocument XML. Such blocks use the ‘#+BEGIN_EXPORT
-     odt’...‘#+END_EXPORT’ constructs.
-
-     For example, to create a one-off paragraph that uses bold text, do
-     the following:
-
-          #+BEGIN_EXPORT odt
-          <text:p text:style-name="Text_20_body_20_bold">
-          This paragraph is specially formatted and uses bold text.
-          </text:p>
-          #+END_EXPORT
-
-
-File: org,  Node: Customizing tables in ODT export,  Next: Validating OpenDocument XML,  Prev: Creating one-off styles,  Up: Advanced topics in ODT export
-
-Customizing tables in ODT export
-................................
-
-Override the default table format by specifying a custom table style
-with the ‘#+ATTR_ODT’ line.  For a discussion on default formatting of
-tables *note Tables in ODT export::.
-
-   This feature closely mimics the way table templates are defined in
-the OpenDocument-v1.2 specification.(1)
-
-   For quick preview of this feature, install the settings below and
-export the table that follows:
-
-     (setq org-odt-table-styles
-           (append org-odt-table-styles
-                 '(("TableWithHeaderRowAndColumn" "Custom"
-                     ((use-first-row-styles . t)
-                      (use-first-column-styles . t)))
-                     ("TableWithFirstRowandLastRow" "Custom"
-                      ((use-first-row-styles . t)
-                      (use-last-row-styles . t))))))
-
-     #+ATTR_ODT: :style TableWithHeaderRowAndColumn
-     | Name  | Phone | Age |
-     | Peter |  1234 |  17 |
-     | Anna  |  4321 |  25 |
-
-   The example above used ‘Custom’ template and installed two table
-styles ‘TableWithHeaderRowAndColumn’ and ‘TableWithFirstRowandLastRow’.
-*Important:* The OpenDocument styles needed for producing the above
-template were pre-defined.  They are available in the section marked
-‘Custom Table Template’ in ‘OrgOdtContentTemplate.xml’ (*note Factory
-styles: x-orgodtcontenttemplate-xml.  For adding new templates, define
-new styles here.
-
-   To use this feature proceed as follows:
-
-  1. Create a table template(2)
-
-     A table template is set of ‘table-cell’ and ‘paragraph’ styles for
-     each of the following table cell categories:
-
-        − Body
-        − First column
-        − Last column
-        − First row
-        − Last row
-        − Even row
-        − Odd row
-        − Even column
-        − Odd Column
-
-     The names for the above styles must be chosen based on the name of
-     the table template using a well-defined convention.
-
-     The naming convention is better illustrated with an example.  For a
-     table template with the name ‘Custom’, the needed style names are
-     listed in the following table.
-
-     Table cell type   ‘table-cell’ style          ‘paragraph’ style
-     -------------------------------------------------------------------------------
-     Body              ‘CustomTableCell’           ‘CustomTableParagraph’
-     First column      ‘CustomFirstColumnTableCell’‘CustomFirstColumnTableParagraph’
-     Last column       ‘CustomLastColumnTableCell’ ‘CustomLastColumnTableParagraph’
-     First row         ‘CustomFirstRowTableCell’   ‘CustomFirstRowTableParagraph’
-     Last row          ‘CustomLastRowTableCell’    ‘CustomLastRowTableParagraph’
-     Even row          ‘CustomEvenRowTableCell’    ‘CustomEvenRowTableParagraph’
-     Odd row           ‘CustomOddRowTableCell’     ‘CustomOddRowTableParagraph’
-     Even column       ‘CustomEvenColumnTableCell’ ‘CustomEvenColumnTableParagraph’
-     Odd column        ‘CustomOddColumnTableCell’  ‘CustomOddColumnTableParagraph’
-
-     To create a table template with the name ‘Custom’, define the above
-     styles in the
-     ‘<office:automatic-styles>’...‘</office:automatic-styles>’ element
-     of the content template file (*note Factory styles:
-     x-orgodtcontenttemplate-xml.).
-
-  2. Define a table style(3)
-
-     To define a table style, create an entry for the style in the
-     variable ‘org-odt-table-styles’ and specify the following:
-
-        − the name of the table template created in step (1)
-        − the set of cell styles in that template that are to be
-          activated
-
-     For example, the entry below defines two different table styles
-     ‘TableWithHeaderRowAndColumn’ and ‘TableWithFirstRowandLastRow’
-     based on the same template ‘Custom’.  The styles achieve their
-     intended effect by selectively activating the individual cell
-     styles in that template.
-
-          (setq org-odt-table-styles
-                (append org-odt-table-styles
-                        '(("TableWithHeaderRowAndColumn" "Custom"
-                           ((use-first-row-styles . t)
-                            (use-first-column-styles . t)))
-                          ("TableWithFirstRowandLastRow" "Custom"
-                           ((use-first-row-styles . t)
-                            (use-last-row-styles . t))))))
-
-  3. Associate a table with the table style
-
-     To do this, specify the table style created in step (2) as part of
-     the ‘ATTR_ODT’ line as shown below.
-
-          #+ATTR_ODT: :style "TableWithHeaderRowAndColumn"
-          | Name  | Phone | Age |
-          | Peter |  1234 |  17 |
-          | Anna  |  4321 |  25 |
-
-   ---------- Footnotes ----------
-
-   (1) OpenDocument-v1.2 Specification
-(http://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2.html)
-
-   (2) See the ‘<table:table-template>’ element of the OpenDocument-v1.2
-specification
-
-   (3) See the attributes ‘table:template-name’,
-‘table:use-first-row-styles’, ‘table:use-last-row-styles’,
-‘table:use-first-column-styles’, ‘table:use-last-column-styles’,
-‘table:use-banding-rows-styles’, and ‘table:use-banding-column-styles’
-of the ‘<table:table>’ element in the OpenDocument-v1.2 specification
-
-
-File: org,  Node: Validating OpenDocument XML,  Prev: Customizing tables in ODT export,  Up: Advanced topics in ODT export
-
-Validating OpenDocument XML
-...........................
-
-Sometimes ODT format files may not open due to ‘.odt’ file corruption.
-To verify if the ‘.odt’ file is corrupt, validate it against the
-OpenDocument RELAX NG Compact Syntax—RNC—schema.  But first the ‘.odt’
-files have to be decompressed using ‘zip’.  Note that ‘.odt’ files are
-‘zip’ archives: *note (emacs)File Archives::.  The contents of ‘.odt’
-files are in ‘.xml’.  For general help with validation—and
-schema-sensitive editing—of XML files: *note (nxml-mode)Introduction::.
-
-   Customize ‘org-odt-schema-dir’ to point to a directory with
-OpenDocument ‘.rnc’ files and the needed schema-locating rules.  The ODT
-export back-end takes care of updating the ‘rng-schema-locating-files’.
-
-
-File: org,  Node: Org export,  Next: Texinfo export,  Prev: OpenDocument Text export,  Up: Exporting
-
-12.13 Org export
-================
-
-‘org’ export back-end creates a normalized version of the Org document
-in current buffer.  The exporter evaluates Babel code (*note Evaluating
-code blocks::) and removes content specific to other back-ends.
-
-Org export commands
--------------------
-
-‘C-c C-e O o     (org-org-export-to-org)’
-     Export as an Org file with a ‘.org’ extension.  For ‘myfile.org’,
-     Org exports to ‘myfile.org.org’, overwriting without warning.
-
-‘C-c C-e O O     (org-org-export-as-org)’
-     Export to a temporary buffer.  Does not create a file.
-‘C-c C-e O v’
-     Export to an Org file, then open it.
-
-
-File: org,  Node: Texinfo export,  Next: iCalendar export,  Prev: Org export,  Up: Exporting
-
-12.14 Texinfo export
-====================
-
-The ‘texinfo’ export back-end generates documents with Texinfo code that
-can compile to Info format.
-
-* Menu:
-
-* Texinfo export commands::     Invoking commands.
-* Texinfo specific export settings::  Setting the environment.
-* Texinfo file header::         Generating the header.
-* Texinfo title and copyright page::  Creating preamble pages.
-* Info directory file::     Installing a manual in Info file hierarchy.
-* Headings and sectioning structure::  Building document structure.
-* Indices::                     Creating indices.
-* Quoting Texinfo code::        Incorporating literal Texinfo code.
-* Plain lists in Texinfo export::  List attributes.
-* Tables in Texinfo export::    Table attributes.
-* Images in Texinfo export::    Image attributes.
-* Special blocks in Texinfo export::  Special block attributes.
-* A Texinfo example::           Processing Org to Texinfo.
-
-
-File: org,  Node: Texinfo export commands,  Next: Texinfo specific export settings,  Up: Texinfo export
-
-12.14.1 Texinfo export commands
--------------------------------
-
-‘C-c C-e i t     (org-texinfo-export-to-texinfo)’
-     Export as a Texinfo file with ‘.texi’ extension.  For ‘myfile.org’,
-     Org exports to ‘myfile.texi’, overwriting without warning.
-‘C-c C-e i i     (org-texinfo-export-to-info)’
-     Export to Texinfo format first and then process it to make an Info
-     file.  To generate other formats, such as DocBook, customize the
-     ‘org-texinfo-info-process’ variable.
-
-
-File: org,  Node: Texinfo specific export settings,  Next: Texinfo file header,  Prev: Texinfo export commands,  Up: Texinfo export
-
-12.14.2 Texinfo specific export settings
-----------------------------------------
-
-The Texinfo export back-end has several additional keywords for
-customizing Texinfo output.  Setting these keywords works similar to the
-general options (*note Export settings::).
-
-‘SUBTITLE’
-     The document subtitle.
-
-‘SUBAUTHOR’
-     The document subauthor.
-
-‘TEXINFO_FILENAME’
-     The Texinfo filename.
-
-‘TEXINFO_CLASS’
-     The default document class (‘org-texinfo-default-class’), which
-     must be a member of ‘org-texinfo-classes’.
-
-‘TEXINFO_HEADER’
-     Arbitrary lines inserted at the end of the header.
-
-‘TEXINFO_POST_HEADER’
-     Arbitrary lines inserted after the end of the header.
-
-‘TEXINFO_DIR_CATEGORY’
-     The directory category of the document.
-
-‘TEXINFO_DIR_TITLE’
-     The directory title of the document.
-
-‘TEXINFO_DIR_DESC’
-     The directory description of the document.
-
-‘TEXINFO_PRINTED_TITLE’
-     The printed title of the document.
-
-
-File: org,  Node: Texinfo file header,  Next: Texinfo title and copyright page,  Prev: Texinfo specific export settings,  Up: Texinfo export
-
-12.14.3 Texinfo file header
----------------------------
-
-After creating the header for a Texinfo file, the Texinfo back-end
-automatically generates a name and destination path for the Info file.
-To override this default with a more sensible path and name, specify the
-‘#+TEXINFO_FILENAME’ keyword.
-
-   Along with the output’s file name, the Texinfo header also contains
-language details (*note Export settings::) and encoding system as set in
-the ‘org-texinfo-coding-system’ variable.  Insert ‘#+TEXINFO_HEADER’
-keywords for each additional command in the header, for example:
-@code{@synindex}.
-
-   Instead of repeatedly installing the same set of commands, define a
-class in ‘org-texinfo-classes’ once, and then activate it in the
-document by setting the ‘#+TEXINFO_CLASS’ keyword to that class.
-
-
-File: org,  Node: Texinfo title and copyright page,  Next: Info directory file,  Prev: Texinfo file header,  Up: Texinfo export
-
-12.14.4 Texinfo title and copyright page
-----------------------------------------
-
-The default template for hard copy output has a title page with
-‘#+TITLE’ and ‘#+AUTHOR’ (*note Export settings::).  To replace the
-regular ‘#+TITLE’ with something different for the printed version, use
-the ‘#+TEXINFO_PRINTED_TITLE’ and ‘#+SUBTITLE’ keywords.  Both expect
-raw Texinfo code for setting their values.
-
-   If one ‘#+AUTHOR’ is not sufficient, add multiple ‘#+SUBAUTHOR’
-keywords.  They have to be set in raw Texinfo code.
-
-     #+AUTHOR: Jane Smith
-     #+SUBAUTHOR: John Doe
-     #+TEXINFO_PRINTED_TITLE: This Long Title@inlinefmt{tex,@*} Is Broken in @TeX{}
-
-   Copying material is defined in a dedicated headline with a non-‘nil’
-‘:COPYING:’ property.  The back-end inserts the contents within a
-‘@copying’ command at the beginning of the document.  The heading itself
-does not appear in the structure of the document.
-
-   Copyright information is printed on the back of the title page.
-
-     * Legalese
-       :PROPERTIES:
-       :COPYING: t
-       :END:
-
-       This is a short example of a complete Texinfo file, version 1.0.
-
-       Copyright \copy 2018 Free Software Foundation, Inc.
-
-
-File: org,  Node: Info directory file,  Next: Headings and sectioning structure,  Prev: Texinfo title and copyright page,  Up: Texinfo export
-
-12.14.5 Info directory file
----------------------------
-
-The end result of the Texinfo export process is the creation of an Info
-file.  This Info file’s metadata has variables for category, title, and
-description: ‘#+TEXINFO_DIR_CATEGORY’, ‘#+TEXINFO_DIR_TITLE’, and
-‘#+TEXINFO_DIR_DESC’ that establish where in the Info hierarchy the file
-fits.
-
-   Here is an example that writes to the Info directory file:
-
-     #+TEXINFO_DIR_CATEGORY: Emacs
-     #+TEXINFO_DIR_TITLE: Org Mode: (org)
-     #+TEXINFO_DIR_DESC: Outline-based notes management and organizer
-
-
-File: org,  Node: Headings and sectioning structure,  Next: Indices,  Prev: Info directory file,  Up: Texinfo export
-
-12.14.6 Headings and sectioning structure
------------------------------------------
-
-The Texinfo export back-end uses a pre-defined scheme to convert Org
-headlines to an equivalent Texinfo structuring commands.  A scheme like
-this maps top-level headlines to numbered chapters tagged as ‘@chapter’
-and lower-level headlines to unnumbered chapters tagged as
-‘@unnumbered’.  To override such mappings to introduce ‘@part’ or other
-Texinfo structuring commands, define a new class in
-‘org-texinfo-classes’.  Activate the new class with the
-‘#+TEXINFO_CLASS’ keyword.  When no new class is defined and activated,
-the Texinfo export back-end defaults to the ‘org-texinfo-default-class’.
-
-   If an Org headline’s level has no associated Texinfo structuring
-command, or is below a certain threshold (*note Export settings::), then
-the Texinfo export back-end makes it into a list item.
-
-   The Texinfo export back-end makes any headline with a non-‘nil’
-‘:APPENDIX:’ property into an appendix.  This happens independent of the
-Org headline level or the ‘#+TEXINFO_CLASS’.
-
-   The Texinfo export back-end creates a menu entry after the Org
-headline for each regular sectioning structure.  To override this with a
-shorter menu entry, use the ‘:ALT_TITLE:’ property (*note Table of
-contents::).  Texinfo menu entries also have an option for a longer
-‘:DESCRIPTION:’ property.  Here’s an example that uses both to override
-the default menu entry:
-
-     * Controlling Screen Display
-       :PROPERTIES:
-       :ALT_TITLE: Display
-       :DESCRIPTION: Controlling Screen Display
-       :END:
-
-   The text before the first headline belongs to the ‘Top’ node, i.e.,
-the node in which a reader enters an Info manual.  As such, it is
-expected not to appear in printed output generated from the ‘.texi’
-file.  *note (texinfo)The Top Node::, for more information.
-
-
-File: org,  Node: Indices,  Next: Quoting Texinfo code,  Prev: Headings and sectioning structure,  Up: Texinfo export
-
-12.14.7 Indices
----------------
-
-The Texinfo export back-end recognizes these indexing keywords if used
-in the Org file: ‘#+CINDEX’, ‘#+FINDEX’, ‘#+KINDEX’, ‘#+PINDEX’,
-‘#+TINDEX’, and ‘#+VINDEX’.  Write their value as verbatim Texinfo code;
-in particular, ‘{’, ‘}’ and ‘@’ characters need to be escaped with ‘@’
-if they not belong to a Texinfo command.
-
-     #+CINDEX: Defining indexing entries
-
-   For the back-end to generate an index entry for a headline, set the
-‘:INDEX:’ property to ‘cp’ or ‘vr’.  These abbreviations come from
-Texinfo that stand for concept index and variable index.  The Texinfo
-manual has abbreviations for all other kinds of indexes.  The back-end
-exports the headline as an unnumbered chapter or section command, and
-then inserts the index after its contents.
-
-     * Concept Index
-       :PROPERTIES:
-       :INDEX: cp
-       :END:
-
-
-File: org,  Node: Quoting Texinfo code,  Next: Plain lists in Texinfo export,  Prev: Indices,  Up: Texinfo export
-
-12.14.8 Quoting Texinfo code
-----------------------------
-
-Use any of the following three methods to insert or escape raw Texinfo
-code:
-
-     Richard @@texinfo:@sc{@@Stallman@@texinfo:}@@ commence' GNU.
-
-     #+TEXINFO: @need800
-     This paragraph is preceded by...
-
-     #+BEGIN_EXPORT texinfo
-     @auindex Johnson, Mark
-     @auindex Lakoff, George
-     #+END_EXPORT
-
-
-File: org,  Node: Plain lists in Texinfo export,  Next: Tables in Texinfo export,  Prev: Quoting Texinfo code,  Up: Texinfo export
-
-12.14.9 Plain lists in Texinfo export
--------------------------------------
-
-The Texinfo export back-end by default converts description lists in the
-Org file using the default command ‘@table’, which results in a table
-with two columns.  To change this behavior, specify ‘:table-type’ with
-‘ftable’ or ‘vtable’ attributes.  For more information, *note
-(texinfo)Two-column Tables::.
-
-   The Texinfo export back-end by default also applies a text highlight
-based on the defaults stored in ‘org-texinfo-table-default-markup’.  To
-override the default highlight command, specify another one with the
-‘:indic’ attribute.
-
-   Org syntax is limited to one entry per list item.  Nevertheless, the
-Texinfo export back-end can split that entry according to any text
-provided through the ‘:sep’ attribute.  Each part then becomes a new
-entry in the first column of the table.
-
-   The following example illustrates all the attributes above:
-
-     #+ATTR_TEXINFO: :table-type vtable :sep , :indic asis
-     - foo, bar :: This is the common text for variables foo and bar.
-
-becomes
-
-     @vtable @asis
-     @item foo
-     @itemx bar
-     This is the common text for variables foo and bar.
-     @end table
-
-
-File: org,  Node: Tables in Texinfo export,  Next: Images in Texinfo export,  Prev: Plain lists in Texinfo export,  Up: Texinfo export
-
-12.14.10 Tables in Texinfo export
----------------------------------
-
-When exporting tables, the Texinfo export back-end uses the widest cell
-width in each column.  To override this and instead specify as fractions
-of line length, use the ‘:columns’ attribute.  See example below.
-
-     #+ATTR_TEXINFO: :columns .5 .5
-     | a cell | another cell |
-
-
-File: org,  Node: Images in Texinfo export,  Next: Special blocks in Texinfo export,  Prev: Tables in Texinfo export,  Up: Texinfo export
-
-12.14.11 Images in Texinfo export
----------------------------------
-
-Insert a file link to the image in the Org file, and the Texinfo export
-back-end inserts the image.  These links must have the usual supported
-image extensions and no descriptions.  To scale the image, use ‘:width’
-and ‘:height’ attributes.  For alternate text, use ‘:alt’ and specify
-the text using Texinfo code, as shown in the example:
-
-     #+ATTR_TEXINFO: :width 1in :alt Alternate @i{text}
-     [[ridt.pdf]]
-
-
-File: org,  Node: Special blocks in Texinfo export,  Next: A Texinfo example,  Prev: Images in Texinfo export,  Up: Texinfo export
-
-12.14.12 Special blocks
------------------------
-
-The Texinfo export back-end converts special blocks to commands with the
-same name.  It also adds any ‘:options’ attributes to the end of the
-command, as shown in this example:
-
-     #+ATTR_TEXINFO: :options org-org-export-to-org ...
-     #+begin_defun
-     A somewhat obsessive function.
-     #+end_defun
-
-becomes
-
-     @defun org-org-export-to-org ...
-     A somewhat obsessive function.
-     @end defun
-
-
-File: org,  Node: A Texinfo example,  Prev: Special blocks in Texinfo export,  Up: Texinfo export
-
-12.14.13 A Texinfo example
---------------------------
-
-Here is a more detailed example Org file.  See *note (texinfo)GNU Sample
-Texts:: for an equivalent example using Texinfo code.
-
-     #+TITLE: GNU Sample {{{version}}}
-     #+SUBTITLE: for version {{{version}}}, {{{updated}}}
-     #+AUTHOR: A.U. Thor
-     #+EMAIL: bug-sample@gnu.org
-
-     #+OPTIONS: ':t toc:t author:t email:t
-     #+LANGUAGE: en
-
-     #+MACRO: version 2.0
-     #+MACRO: updated last updated 4 March 2014
-
-     #+TEXINFO_FILENAME: sample.info
-     #+TEXINFO_HEADER: @syncodeindex pg cp
-
-     #+TEXINFO_DIR_CATEGORY: Texinfo documentation system
-     #+TEXINFO_DIR_TITLE: sample: (sample)
-     #+TEXINFO_DIR_DESC: Invoking sample
-
-     #+TEXINFO_PRINTED_TITLE: GNU Sample
-
-     This manual is for GNU Sample (version {{{version}}},
-     {{{updated}}}).
-
-     * Copying
-       :PROPERTIES:
-       :COPYING:  t
-       :END:
-
-       This manual is for GNU Sample (version {{{version}}},
-       {{{updated}}}), which is an example in the Texinfo documentation.
-
-       Copyright \copy 2018 Free Software Foundation, Inc.
-
-       #+BEGIN_QUOTE
-       Permission is granted to copy, distribute and/or modify this
-       document under the terms of the GNU Free Documentation License,
-       Version 1.3 or any later version published by the Free Software
-       Foundation; with no Invariant Sections, with no Front-Cover Texts,
-       and with no Back-Cover Texts.  A copy of the license is included in
-       the section entitled "GNU Free Documentation License".
-       #+END_QUOTE
-
-     * Invoking sample
-
-       #+PINDEX: sample
-       #+CINDEX: invoking @command{sample}
-
-       This is a sample manual.  There is no sample program to invoke, but
-       if there were, you could see its basic usage and command line
-       options here.
-
-     * GNU Free Documentation License
-       :PROPERTIES:
-       :APPENDIX: t
-       :END:
-
-       #+TEXINFO: @include fdl.texi
-
-     * Index
-       :PROPERTIES:
-       :INDEX:    cp
-       :END:
-
-
-File: org,  Node: iCalendar export,  Next: Other built-in back-ends,  Prev: Texinfo export,  Up: Exporting
-
-12.15 iCalendar export
-======================
-
-A large part of Org mode’s inter-operability success is its ability to
-easily export to or import from external applications.  The iCalendar
-export back-end takes calendar data from Org files and exports to the
-standard iCalendar format.
-
-   The iCalendar export back-end can also incorporate TODO entries based
-on the configuration of the ‘org-icalendar-include-todo’ variable.  The
-back-end exports plain timestamps as VEVENT, TODO items as VTODO, and
-also create events from deadlines that are in non-TODO items.  The
-back-end uses the deadlines and scheduling dates in Org TODO items for
-setting the start and due dates for the iCalendar TODO entry.  Consult
-the ‘org-icalendar-use-deadline’ and ‘org-icalendar-use-scheduled’
-variables for more details.
-
-   For tags on the headline, the iCalendar export back-end makes them
-into iCalendar categories.  To tweak the inheritance of tags and TODO
-states, configure the variable ‘org-icalendar-categories’.  To assign
-clock alarms based on time, configure the ‘org-icalendar-alarm-time’
-variable.
-
-   The iCalendar format standard requires globally unique
-identifier—UID—for each entry.  The iCalendar export back-end creates
-UIDs during export.  To save a copy of the UID in the Org file set the
-variable ‘org-icalendar-store-UID’.  The back-end looks for the ‘:ID:’
-property of the entry for re-using the same UID for subsequent exports.
-
-   Since a single Org entry can result in multiple iCalendar entries—as
-timestamp, deadline, scheduled item, or TODO item—Org adds prefixes to
-the UID, depending on which part of the Org entry triggered the creation
-of the iCalendar entry.  Prefixing ensures UIDs remains unique, yet
-enable synchronization programs trace the connections.
-
-‘C-c C-e c f     (org-icalendar-export-to-ics)’
-     Create iCalendar entries from the current Org buffer and store them
-     in the same directory, using a file extension ‘.ics’.
-‘C-c C-e c a     (org-icalendar-export-agenda-files)’
-     Create iCalendar entries from Org files in ‘org-agenda-files’ and
-     store in a separate iCalendar file for each Org file.
-‘C-c C-e c c     (org-icalendar-combine-agenda-files)’
-     Create a combined iCalendar file from Org files in
-     ‘org-agenda-files’ and write it to
-     ‘org-icalendar-combined-agenda-file’ file name.
-
-   The iCalendar export back-end includes ‘SUMMARY’, ‘DESCRIPTION’,
-‘LOCATION’ and ‘TIMEZONE’ properties from the Org entries when
-exporting.  To force the back-end to inherit the ‘LOCATION’ and
-‘TIMEZONE’ properties, configure the ‘org-use-property-inheritance’
-variable.
-
-   When Org entries do not have ‘SUMMARY’, ‘DESCRIPTION’ and ‘LOCATION’
-properties, the iCalendar export back-end derives the summary from the
-headline, and derives the description from the body of the Org item.
-The ‘org-icalendar-include-body’ variable limits the maximum number of
-characters of the content are turned into its description.
-
-   The ‘TIMEZONE’ property can be used to specify a per-entry time zone,
-and will be applied to any entry with timestamp information.  Time zones
-should be specified as per the IANA time zone database format, e.g.
-“Asia/Almaty”.  Alternately, the property value can be “UTC”, to force
-UTC time for this entry only.
-
-   Exporting to iCalendar format depends in large part on the
-capabilities of the destination application.  Some are more lenient than
-others.  Consult the Org mode FAQ for advice on specific applications.
-
-
-File: org,  Node: Other built-in back-ends,  Next: Advanced configuration,  Prev: iCalendar export,  Up: Exporting
-
-12.16 Other built-in back-ends
-==============================
-
-Other export back-ends included with Org are:
-
-   • ‘ox-man.el’: export to a man page.
-
-   To activate such back-ends, either customize ‘org-export-backends’ or
-load directly with ‘(require 'ox-man)’.  On successful load, the
-back-end adds new keys in the export dispatcher (*note The export
-dispatcher::).
-
-   Follow the comment section of such files, for example, ‘ox-man.el’,
-for usage and configuration details.
-
-
-File: org,  Node: Advanced configuration,  Next: Export in foreign buffers,  Prev: Other built-in back-ends,  Up: Exporting
-
-12.17 Advanced configuration
-============================
-
-Hooks
------
-
-The export process executes two hooks before the actual exporting
-begins.  The first hook, ‘org-export-before-processing-hook’, runs
-before any expansions of macros, Babel code, and include keywords in the
-buffer.  The second hook, ‘org-export-before-parsing-hook’, runs before
-the buffer is parsed.  Both hooks are specified as functions, see
-example below.  Their main use is for heavy duty structural
-modifications of the Org content.  For example, removing every headline
-in the buffer during export:
-
-     (defun my-headline-removal (backend)
-       "Remove all headlines in the current buffer.
-     BACKEND is the export back-end being used, as a symbol."
-       (org-map-entries
-        (lambda () (delete-region (point) (progn (forward-line) (point))))))
-
-     (add-hook 'org-export-before-parsing-hook 'my-headline-removal)
-
-   Note that the hook function must have a mandatory argument that is a
-symbol for the back-end.
-
-Filters
--------
-
-The Org export process relies on filters to process specific parts of
-conversion process.  Filters are just lists of functions to be applied
-to certain parts for a given back-end.  The output from the first
-function in the filter is passed on to the next function in the filter.
-The final output is the output from the final function in the filter.
-
-   The Org export process has many filter sets applicable to different
-types of objects, plain text, parse trees, export options, and final
-output formats.  The filters are named after the element type or object
-type: ‘org-export-filter-TYPE-functions’, where ‘TYPE’ is the type
-targeted by the filter.  Valid types are:
-
-body                     bold                     babel-call
-center-block             clock                    code
-diary-sexp               drawer                   dynamic-block
-entity                   example-block            export-block
-export-snippet           final-output             fixed-width
-footnote-definition      footnote-reference       headline
-horizontal-rule          inline-babel-call        inline-src-block
-inlinetask               italic                   item
-keyword                  latex-environment        latex-fragment
-line-break               link                     node-property
-options                  paragraph                parse-tree
-plain-list               plain-text               planning
-property-drawer          quote-block              radio-target
-section                  special-block            src-block
-statistics-cookie        strike-through           subscript
-superscript              table                    table-cell
-table-row                target                   timestamp
-underline                verbatim                 verse-block
-
-   Here is an example filter that replaces non-breaking spaces ‘~’ in
-the Org buffer with ‘_’ for the LaTeX back-end.
-
-     (defun my-latex-filter-nobreaks (text backend info)
-       "Ensure \"_\" are properly handled in LaTeX export."
-       (when (org-export-derived-backend-p backend 'latex)
-             (replace-regexp-in-string "_" "~" text)))
-
-     (add-to-list 'org-export-filter-plain-text-functions
-                  'my-latex-filter-nobreaks)
-
-   A filter requires three arguments: the code to be transformed, the
-name of the back-end, and some optional information about the export
-process.  The third argument can be safely ignored.  Note the use of
-‘org-export-derived-backend-p’ predicate that tests for ‘latex’ back-end
-or any other back-end, such as ‘beamer’, derived from ‘latex’.
-
-Defining filters for individual files
--------------------------------------
-
-The Org export can filter not just for back-ends, but also for specific
-files through the ‘#+BIND’ keyword.  Here is an example with two
-filters; one removes brackets from time stamps, and the other removes
-strike-through text.  The filter functions are defined in a ‘src’ code
-block in the same Org file, which is a handy location for debugging.
-
-     #+BIND: org-export-filter-timestamp-functions (tmp-f-timestamp)
-     #+BIND: org-export-filter-strike-through-functions (tmp-f-strike-through)
-     #+begin_src emacs-lisp :exports results :results none
-       (defun tmp-f-timestamp (s backend info)
-         (replace-regexp-in-string "&[lg]t;\\|[][]" "" s))
-       (defun tmp-f-strike-through (s backend info) "")
-     #+end_src
-
-Extending an existing back-end
-------------------------------
-
-Some parts of the conversion process can be extended for certain
-elements so as to introduce a new or revised translation.  That is how
-the HTML export back-end was extended to handle Markdown format.  The
-extensions work seamlessly so any aspect of filtering not done by the
-extended back-end is handled by the original back-end.  Of all the
-export customization in Org, extending is very powerful as it operates
-at the parser level.
-
-   For this example, make the ‘ascii’ back-end display the language used
-in a source code block.  Also make it display only when some attribute
-is non-‘nil’, like the following:
-
-     #+ATTR_ASCII: :language t
-
-   Then extend ‘ascii’ back-end with a custom ‘my-ascii’ back-end.
-
-     (defun my-ascii-src-block (src-block contents info)
-       "Transcode a SRC-BLOCK element from Org to ASCII.
-     CONTENTS is nil.  INFO is a plist used as a communication
-     channel."
-       (if (not (org-export-read-attribute :attr_ascii src-block :language))
-         (org-export-with-backend 'ascii src-block contents info)
-       (concat
-        (format ",--[ %s ]--\n%s`----"
-                (org-element-property :language src-block)
-                (replace-regexp-in-string
-                 "^" "| "
-                 (org-element-normalize-string
-                  (org-export-format-code-default src-block info)))))))
-
-     (org-export-define-derived-backend 'my-ascii 'ascii
-       :translate-alist '((src-block . my-ascii-src-block)))
-
-   The ‘my-ascii-src-block’ function looks at the attribute above the
-current element.  If not true, hands over to ‘ascii’ back-end.  If true,
-which it is in this example, it creates a box around the code and leaves
-room for the inserting a string for language.  The last form creates the
-new back-end that springs to action only when translating ‘src-block’
-type elements.
-
-   To use the newly defined back-end, call the following from an Org
-buffer:
-
-     (org-export-to-buffer 'my-ascii "*Org MY-ASCII Export*")
-
-   Further steps to consider would be an interactive function,
-self-installing an item in the export dispatcher menu, and other
-user-friendly improvements.
-
-
-File: org,  Node: Export in foreign buffers,  Prev: Advanced configuration,  Up: Exporting
-
-12.18 Export in foreign buffers
-===============================
-
-The export back-ends in Org often include commands to convert selected
-regions.  A convenient feature of this in-place conversion is that the
-exported output replaces the original source.  Here are such functions:
-
-‘org-html-convert-region-to-html’
-     Convert the selected region into HTML.
-‘org-latex-convert-region-to-latex’
-     Convert the selected region into LaTeX.
-‘org-texinfo-convert-region-to-texinfo’
-     Convert the selected region into ‘Texinfo’.
-‘org-md-convert-region-to-md’
-     Convert the selected region into ‘MarkDown’.
-
-   In-place conversions are particularly handy for quick conversion of
-tables and lists in foreign buffers.  For example, turn on the minor
-mode ‘M-x orgstruct-mode’ in an HTML buffer, then use the convenient Org
-keyboard commands to create a list, select it, and covert it to HTML
-with ‘M-x org-html-convert-region-to-html <RET>’.
-
-
-File: org,  Node: Publishing,  Next: Working with source code,  Prev: Exporting,  Up: Top
-
-13 Publishing
-*************
-
-Org includes a publishing management system that allows you to configure
-automatic HTML conversion of _projects_ composed of interlinked org
-files.  You can also configure Org to automatically upload your exported
-HTML pages and related attachments, such as images and source code
-files, to a web server.
-
-   You can also use Org to convert files into PDF, or even combine HTML
-and PDF conversion so that files are available in both formats on the
-server.
-
-   Publishing has been contributed to Org by David O’Toole.
-
-* Menu:
-
-* Configuration::               Defining projects
-* Uploading files::             How to get files up on the server
-* Sample configuration::        Example projects
-* Triggering publication::      Publication commands
-
-
-File: org,  Node: Configuration,  Next: Uploading files,  Up: Publishing
-
-13.1 Configuration
-==================
-
-Publishing needs significant configuration to specify files, destination
-and many other properties of a project.
-
-* Menu:
-
-* Project alist::               The central configuration variable
-* Sources and destinations::    From here to there
-* Selecting files::             What files are part of the project?
-* Publishing action::           Setting the function doing the publishing
-* Publishing options::          Tweaking HTML/LaTeX export
-* Publishing links::            Which links keep working after publishing?
-* Sitemap::                     Generating a list of all pages
-* Generating an index::         An index that reaches across pages
-
-
-File: org,  Node: Project alist,  Next: Sources and destinations,  Up: Configuration
-
-13.1.1 The variable ‘org-publish-project-alist’
------------------------------------------------
-
-Publishing is configured almost entirely through setting the value of
-one variable, called ‘org-publish-project-alist’.  Each element of the
-list configures one project, and may be in one of the two following
-forms:
-
-        ("project-name" :property value :property value ...)
-          i.e., a well-formed property list with alternating keys and values
-     or
-        ("project-name" :components ("project-name" "project-name" ...))
-
-
-   In both cases, projects are configured by specifying property values.
-A project defines the set of files that will be published, as well as
-the publishing configuration to use when publishing those files.  When a
-project takes the second form listed above, the individual members of
-the ‘:components’ property are taken to be sub-projects, which group
-together files requiring different publishing options.  When you publish
-such a “meta-project”, all the components will also be published, in the
-sequence given.
-
-
-File: org,  Node: Sources and destinations,  Next: Selecting files,  Prev: Project alist,  Up: Configuration
-
-13.1.2 Sources and destinations for files
------------------------------------------
-
-Most properties are optional, but some should always be set.  In
-particular, Org needs to know where to look for source files, and where
-to put published files.
-
-‘:base-directory’      Directory containing publishing source files
-‘:publishing-directory’Directory where output files will be published.
-                       You can directly publish to a web server using a
-                       file name syntax appropriate for the Emacs
-                       ‘tramp’ package.  Or you can publish to a local
-                       directory and use external tools to upload your
-                       website (*note Uploading files::).
-‘:preparation-function’Function or list of functions to be called
-                       before starting the publishing process, for
-                       example, to run ‘make’ for updating files to be
-                       published.  Each preparation function is called
-                       with a single argument, the project property
-                       list.
-‘:completion-function’ Function or list of functions called after
-                       finishing the publishing process, for example,
-                       to change permissions of the resulting files.
-                       Each completion function is called with a single
-                       argument, the project property list.
-
-
-File: org,  Node: Selecting files,  Next: Publishing action,  Prev: Sources and destinations,  Up: Configuration
-
-13.1.3 Selecting files
-----------------------
-
-By default, all files with extension ‘.org’ in the base directory are
-considered part of the project.  This can be modified by setting the
-properties
-‘:base-extension’  Extension (without the dot!)  of source files.  This
-                   actually is a regular expression.  Set this to the
-                   symbol ‘any’ if you want to get all files in
-                   ‘:base-directory’, even without extension.
-                   
-‘:exclude’         Regular expression to match file names that should
-                   not be published, even though they have been
-                   selected on the basis of their extension.
-                   
-‘:include’         List of files to be included regardless of
-                   ‘:base-extension’ and ‘:exclude’.
-                   
-‘:recursive’       non-‘nil’ means, check base-directory recursively
-                   for files to publish.
-
-
-File: org,  Node: Publishing action,  Next: Publishing options,  Prev: Selecting files,  Up: Configuration
-
-13.1.4 Publishing action
-------------------------
-
-Publishing means that a file is copied to the destination directory and
-possibly transformed in the process.  The default transformation is to
-export Org files as HTML files, and this is done by the function
-‘org-html-publish-to-html’, which calls the HTML exporter (*note HTML
-export::).  But you also can publish your content as PDF files using
-‘org-latex-publish-to-pdf’ or as ‘ascii’, ‘Texinfo’, etc., using the
-corresponding functions.
-
-   If you want to publish the Org file as an ‘.org’ file but with the
-archived, commented and tag-excluded trees removed, use the function
-‘org-org-publish-to-org’.  This will produce ‘file.org’ and put it in
-the publishing directory.  If you want a htmlized version of this file,
-set the parameter ‘:htmlized-source’ to ‘t’, it will produce
-‘file.org.html’ in the publishing directory(1).
-
-   Other files like images only need to be copied to the publishing
-destination.  For this you can use ‘org-publish-attachment’.  For
-non-org files, you always need to specify the publishing function:
-
-‘:publishing-function’ Function executing the publication of a file.
-                       This may also be a list of functions, which will
-                       all be called in turn.
-‘:htmlized-source’     non-‘nil’ means, publish htmlized source.
-
-   The function must accept three arguments: a property list containing
-at least a ‘:publishing-directory’ property, the name of the file to be
-published and the path to the publishing directory of the output file.
-It should take the specified file, make the necessary transformation (if
-any) and place the result into the destination folder.
-
-   ---------- Footnotes ----------
-
-   (1) If the publishing directory is the same than the source
-directory, ‘file.org’ will be exported as ‘file.org.org’, so probably
-don’t want to do this.
-
-
-File: org,  Node: Publishing options,  Next: Publishing links,  Prev: Publishing action,  Up: Configuration
-
-13.1.5 Options for the exporters
---------------------------------
-
-The property list can be used to set export options during the
-publishing process.  In most cases, these properties correspond to user
-variables in Org.  While some properties are available for all export
-back-ends, most of them are back-end specific.  The following sections
-list properties along with the variable they belong to.  See the
-documentation string of these options for details.
-
-   When a property is given a value in ‘org-publish-project-alist’, its
-setting overrides the value of the corresponding user variable (if any)
-during publishing.  Options set within a file (*note Export settings::),
-however, override everything.
-
-Generic properties
-..................
-
-‘:archived-trees’         ‘org-export-with-archived-trees’
-‘:exclude-tags’           ‘org-export-exclude-tags’
-‘:headline-levels’        ‘org-export-headline-levels’
-‘:language’               ‘org-export-default-language’
-‘:preserve-breaks’        ‘org-export-preserve-breaks’
-‘:section-numbers’        ‘org-export-with-section-numbers’
-‘:select-tags’            ‘org-export-select-tags’
-‘:with-author’            ‘org-export-with-author’
-‘:with-broken-links’      ‘org-export-with-broken-links’
-‘:with-clocks’            ‘org-export-with-clocks’
-‘:with-creator’           ‘org-export-with-creator’
-‘:with-date’              ‘org-export-with-date’
-‘:with-drawers’           ‘org-export-with-drawers’
-‘:with-email’             ‘org-export-with-email’
-‘:with-emphasize’         ‘org-export-with-emphasize’
-‘:with-fixed-width’       ‘org-export-with-fixed-width’
-‘:with-footnotes’         ‘org-export-with-footnotes’
-‘:with-latex’             ‘org-export-with-latex’
-‘:with-planning’          ‘org-export-with-planning’
-‘:with-priority’          ‘org-export-with-priority’
-‘:with-properties’        ‘org-export-with-properties’
-‘:with-special-strings’   ‘org-export-with-special-strings’
-‘:with-sub-superscript’   ‘org-export-with-sub-superscripts’
-‘:with-tables’            ‘org-export-with-tables’
-‘:with-tags’              ‘org-export-with-tags’
-‘:with-tasks’             ‘org-export-with-tasks’
-‘:with-timestamps’        ‘org-export-with-timestamps’
-‘:with-title’             ‘org-export-with-title’
-‘:with-toc’               ‘org-export-with-toc’
-‘:with-todo-keywords’     ‘org-export-with-todo-keywords’
-
-ASCII specific properties
-.........................
-
-‘:ascii-bullets’                         ‘org-ascii-bullets’
-‘:ascii-caption-above’                   ‘org-ascii-caption-above’
-‘:ascii-charset’                         ‘org-ascii-charset’
-‘:ascii-global-margin’                   ‘org-ascii-global-margin’
-‘:ascii-format-drawer-function’          ‘org-ascii-format-drawer-function’
-‘:ascii-format-inlinetask-function’      ‘org-ascii-format-inlinetask-function’
-‘:ascii-headline-spacing’                ‘org-ascii-headline-spacing’
-‘:ascii-indented-line-width’             ‘org-ascii-indented-line-width’
-‘:ascii-inlinetask-width’                ‘org-ascii-inlinetask-width’
-‘:ascii-inner-margin’                    ‘org-ascii-inner-margin’
-‘:ascii-links-to-notes’                  ‘org-ascii-links-to-notes’
-‘:ascii-list-margin’                     ‘org-ascii-list-margin’
-‘:ascii-paragraph-spacing’               ‘org-ascii-paragraph-spacing’
-‘:ascii-quote-margin’                    ‘org-ascii-quote-margin’
-‘:ascii-table-keep-all-vertical-lines’   ‘org-ascii-table-keep-all-vertical-lines’
-‘:ascii-table-use-ascii-art’             ‘org-ascii-table-use-ascii-art’
-‘:ascii-table-widen-columns’             ‘org-ascii-table-widen-columns’
-‘:ascii-text-width’                      ‘org-ascii-text-width’
-‘:ascii-underline’                       ‘org-ascii-underline’
-‘:ascii-verbatim-format’                 ‘org-ascii-verbatim-format’
-
-Beamer specific properties
-..........................
-
-‘:beamer-theme’                   ‘org-beamer-theme’
-‘:beamer-column-view-format’      ‘org-beamer-column-view-format’
-‘:beamer-environments-extra’      ‘org-beamer-environments-extra’
-‘:beamer-frame-default-options’   ‘org-beamer-frame-default-options’
-‘:beamer-outline-frame-options’   ‘org-beamer-outline-frame-options’
-‘:beamer-outline-frame-title’     ‘org-beamer-outline-frame-title’
-‘:beamer-subtitle-format’         ‘org-beamer-subtitle-format’
-
-HTML specific properties
-........................
-
-‘:html-allow-name-attribute-in-anchors’          ‘org-html-allow-name-attribute-in-anchors’
-‘:html-checkbox-type’                            ‘org-html-checkbox-type’
-‘:html-container’                                ‘org-html-container-element’
-‘:html-divs’                                     ‘org-html-divs’
-‘:html-doctype’                                  ‘org-html-doctype’
-‘:html-extension’                                ‘org-html-extension’
-‘:html-footnote-format’                          ‘org-html-footnote-format’
-‘:html-footnote-separator’                       ‘org-html-footnote-separator’
-‘:html-footnotes-section’                        ‘org-html-footnotes-section’
-‘:html-format-drawer-function’                   ‘org-html-format-drawer-function’
-‘:html-format-headline-function’                 ‘org-html-format-headline-function’
-‘:html-format-inlinetask-function’               ‘org-html-format-inlinetask-function’
-‘:html-head-extra’                               ‘org-html-head-extra’
-‘:html-head-include-default-style’               ‘org-html-head-include-default-style’
-‘:html-head-include-scripts’                     ‘org-html-head-include-scripts’
-‘:html-head’                                     ‘org-html-head’
-‘:html-home/up-format’                           ‘org-html-home/up-format’
-‘:html-html5-fancy’                              ‘org-html-html5-fancy’
-‘:html-indent’                                   ‘org-html-indent’
-‘:html-infojs-options’                           ‘org-html-infojs-options’
-‘:html-infojs-template’                          ‘org-html-infojs-template’
-‘:html-inline-image-rules’                       ‘org-html-inline-image-rules’
-‘:html-inline-images’                            ‘org-html-inline-images’
-‘:html-link-home’                                ‘org-html-link-home’
-‘:html-link-org-files-as-html’                   ‘org-html-link-org-files-as-html’
-‘:html-link-up’                                  ‘org-html-link-up’
-‘:html-link-use-abs-url’                         ‘org-html-link-use-abs-url’
-‘:html-mathjax-options’                          ‘org-html-mathjax-options’
-‘:html-mathjax-template’                         ‘org-html-mathjax-template’
-‘:html-metadata-timestamp-format’                ‘org-html-metadata-timestamp-format’
-‘:html-postamble-format’                         ‘org-html-postamble-format’
-‘:html-postamble’                                ‘org-html-postamble’
-‘:html-preamble-format’                          ‘org-html-preamble-format’
-‘:html-preamble’                                 ‘org-html-preamble’
-‘:html-table-align-individual-fields’            ‘org-html-table-align-individual-fields’
-‘:html-table-attributes’                         ‘org-html-table-default-attributes’
-‘:html-table-caption-above’                      ‘org-html-table-caption-above’
-‘:html-table-data-tags’                          ‘org-html-table-data-tags’
-‘:html-table-header-tags’                        ‘org-html-table-header-tags’
-‘:html-table-row-tags’                           ‘org-html-table-row-tags’
-‘:html-table-use-header-tags-for-first-column’   ‘org-html-table-use-header-tags-for-first-column’
-‘:html-tag-class-prefix’                         ‘org-html-tag-class-prefix’
-‘:html-text-markup-alist’                        ‘org-html-text-markup-alist’
-‘:html-todo-kwd-class-prefix’                    ‘org-html-todo-kwd-class-prefix’
-‘:html-toplevel-hlevel’                          ‘org-html-toplevel-hlevel’
-‘:html-use-infojs’                               ‘org-html-use-infojs’
-‘:html-validation-link’                          ‘org-html-validation-link’
-‘:html-viewport’                                 ‘org-html-viewport’
-‘:html-xml-declaration’                          ‘org-html-xml-declaration’
-
-LaTeX specific properties
-.........................
-
-‘:latex-active-timestamp-format’         ‘org-latex-active-timestamp-format’
-‘:latex-caption-above’                   ‘org-latex-caption-above’
-‘:latex-classes’                         ‘org-latex-classes’
-‘:latex-class’                           ‘org-latex-default-class’
-‘:latex-compiler’                        ‘org-latex-compiler’
-‘:latex-default-figure-position’         ‘org-latex-default-figure-position’
-‘:latex-default-table-environment’       ‘org-latex-default-table-environment’
-‘:latex-default-table-mode’              ‘org-latex-default-table-mode’
-‘:latex-diary-timestamp-format’          ‘org-latex-diary-timestamp-format’
-‘:latex-footnote-defined-format’         ‘org-latex-footnote-defined-format’
-‘:latex-footnote-separator’              ‘org-latex-footnote-separator’
-‘:latex-format-drawer-function’          ‘org-latex-format-drawer-function’
-‘:latex-format-headline-function’        ‘org-latex-format-headline-function’
-‘:latex-format-inlinetask-function’      ‘org-latex-format-inlinetask-function’
-‘:latex-hyperref-template’               ‘org-latex-hyperref-template’
-‘:latex-image-default-height’            ‘org-latex-image-default-height’
-‘:latex-image-default-option’            ‘org-latex-image-default-option’
-‘:latex-image-default-width’             ‘org-latex-image-default-width’
-‘:latex-images-centered’                 ‘org-latex-images-centered’
-‘:latex-inactive-timestamp-format’       ‘org-latex-inactive-timestamp-format’
-‘:latex-inline-image-rules’              ‘org-latex-inline-image-rules’
-‘:latex-link-with-unknown-path-format’   ‘org-latex-link-with-unknown-path-format’
-‘:latex-listings-langs’                  ‘org-latex-listings-langs’
-‘:latex-listings-options’                ‘org-latex-listings-options’
-‘:latex-listings’                        ‘org-latex-listings’
-‘:latex-minted-langs’                    ‘org-latex-minted-langs’
-‘:latex-minted-options’                  ‘org-latex-minted-options’
-‘:latex-prefer-user-labels’              ‘org-latex-prefer-user-labels’
-‘:latex-subtitle-format’                 ‘org-latex-subtitle-format’
-‘:latex-subtitle-separate’               ‘org-latex-subtitle-separate’
-‘:latex-table-scientific-notation’       ‘org-latex-table-scientific-notation’
-‘:latex-tables-booktabs’                 ‘org-latex-tables-booktabs’
-‘:latex-tables-centered’                 ‘org-latex-tables-centered’
-‘:latex-text-markup-alist’               ‘org-latex-text-markup-alist’
-‘:latex-title-command’                   ‘org-latex-title-command’
-‘:latex-toc-command’                     ‘org-latex-toc-command’
-
-Markdown specific properties
-............................
-
-‘:md-footnote-format’     ‘org-md-footnote-format’
-‘:md-footnotes-section’   ‘org-md-footnotes-section’
-‘:md-headline-style’      ‘org-md-headline-style’
-
-ODT specific properties
-.......................
-
-‘:odt-content-template-file’        ‘org-odt-content-template-file’
-‘:odt-display-outline-level’        ‘org-odt-display-outline-level’
-‘:odt-fontify-srcblocks’            ‘org-odt-fontify-srcblocks’
-‘:odt-format-drawer-function’       ‘org-odt-format-drawer-function’
-‘:odt-format-headline-function’     ‘org-odt-format-headline-function’
-‘:odt-format-inlinetask-function’   ‘org-odt-format-inlinetask-function’
-‘:odt-inline-formula-rules’         ‘org-odt-inline-formula-rules’
-‘:odt-inline-image-rules’           ‘org-odt-inline-image-rules’
-‘:odt-pixels-per-inch’              ‘org-odt-pixels-per-inch’
-‘:odt-styles-file’                  ‘org-odt-styles-file’
-‘:odt-table-styles’                 ‘org-odt-table-styles’
-‘:odt-use-date-fields’              ‘org-odt-use-date-fields’
-
-Texinfo specific properties
-...........................
-
-‘:texinfo-active-timestamp-format’         ‘org-texinfo-active-timestamp-format’
-‘:texinfo-classes’                         ‘org-texinfo-classes’
-‘:texinfo-class’                           ‘org-texinfo-default-class’
-‘:texinfo-table-default-markup’            ‘org-texinfo-table-default-markup’
-‘:texinfo-diary-timestamp-format’          ‘org-texinfo-diary-timestamp-format’
-‘:texinfo-filename’                        ‘org-texinfo-filename’
-‘:texinfo-format-drawer-function’          ‘org-texinfo-format-drawer-function’
-‘:texinfo-format-headline-function’        ‘org-texinfo-format-headline-function’
-‘:texinfo-format-inlinetask-function’      ‘org-texinfo-format-inlinetask-function’
-‘:texinfo-inactive-timestamp-format’       ‘org-texinfo-inactive-timestamp-format’
-‘:texinfo-link-with-unknown-path-format’   ‘org-texinfo-link-with-unknown-path-format’
-‘:texinfo-node-description-column’         ‘org-texinfo-node-description-column’
-‘:texinfo-table-scientific-notation’       ‘org-texinfo-table-scientific-notation’
-‘:texinfo-tables-verbatim’                 ‘org-texinfo-tables-verbatim’
-‘:texinfo-text-markup-alist’               ‘org-texinfo-text-markup-alist’
-
-
-File: org,  Node: Publishing links,  Next: Sitemap,  Prev: Publishing options,  Up: Configuration
-
-13.1.6 Links between published files
-------------------------------------
-
-To create a link from one Org file to another, you would use something
-like ‘[[file:foo.org][The foo]]’ or simply ‘file:foo.org’ (*note
-External links::).  When published, this link becomes a link to
-‘foo.html’.  You can thus interlink the pages of your “org web” project
-and the links will work as expected when you publish them to HTML. If
-you also publish the Org source file and want to link to it, use an
-‘http:’ link instead of a ‘file:’ link, because ‘file:’ links are
-converted to link to the corresponding ‘html’ file.
-
-   You may also link to related files, such as images.  Provided you are
-careful with relative file names, and provided you have also configured
-Org to upload the related files, these links will work too.  See *note
-Complex example::, for an example of this usage.
-
-   Eventually, links between published documents can contain some search
-options (*note Search options::), which will be resolved to the
-appropriate location in the linked file.  For example, once published to
-HTML, the following links all point to a dedicated anchor in ‘foo.html’.
-
-     [[file:foo.org::*heading]]
-     [[file:foo.org::#custom-id]]
-     [[file:foo.org::target]]
-
-
-File: org,  Node: Sitemap,  Next: Generating an index,  Prev: Publishing links,  Up: Configuration
-
-13.1.7 Generating a sitemap
----------------------------
-
-The following properties may be used to control publishing of a map of
-files for a given project.
-
-‘:auto-sitemap’           When non-‘nil’, publish a sitemap during
-                          ‘org-publish-current-project’ or
-                          ‘org-publish-all’.
-                          
-‘:sitemap-filename’       Filename for output of sitemap.  Defaults to
-                          ‘sitemap.org’ (which becomes ‘sitemap.html’).
-                          
-‘:sitemap-title’          Title of sitemap page.  Defaults to name of
-                          file.
-                          
-‘:sitemap-format-entry’   With this option one can tell how a site-map
-                          entry is formatted in the site-map.  It is a
-                          function called with three arguments: the
-                          file or directory name relative to base
-                          directory of the project, the site-map style
-                          and the current project.  It is expected to
-                          return a string.  Default value turns file
-                          names into links and use document titles as
-                          descriptions.  For specific formatting needs,
-                          one can use ‘org-publish-find-date’,
-                          ‘org-publish-find-title’ and
-                          ‘org-publish-find-property’, to retrieve
-                          additional information about published
-                          documents.
-                          
-‘:sitemap-function’       Plug-in function to use for generation of the
-                          sitemap.  It is called with two arguments:
-                          the title of the site-map and a
-                          representation of the files and directories
-                          involved in the project as a radio list
-                          (*note Radio lists::).  The latter can
-                          further be transformed using
-                          ‘org-list-to-generic’, ‘org-list-to-subtree’
-                          and alike.  Default value generates a plain
-                          list of links to all files in the project.
-                          
-‘:sitemap-sort-folders’   Where folders should appear in the sitemap.
-                          Set this to ‘first’ (default) or ‘last’ to
-                          display folders first or last, respectively.
-                          When set to ‘ignore’, folders are ignored
-                          altogether.  Any other value will mix files
-                          and folders.  This variable has no effect
-                          when site-map style is ‘tree’.
-                          
-‘:sitemap-sort-files’     How the files are sorted in the site map.
-                          Set this to ‘alphabetically’ (default),
-                          ‘chronologically’ or ‘anti-chronologically’.
-                          ‘chronologically’ sorts the files with older
-                          date first while ‘anti-chronologically’ sorts
-                          the files with newer date first.
-                          ‘alphabetically’ sorts the files
-                          alphabetically.  The date of a file is
-                          retrieved with ‘org-publish-find-date’.
-                          
-‘:sitemap-ignore-case’    Should sorting be case-sensitive?  Default
-                          ‘nil’.
-                          
-‘:sitemap-date-format’    Format string for the ‘format-time-string’
-                          function that tells how a sitemap entry’s
-                          date is to be formatted.  This property
-                          bypasses ‘org-publish-sitemap-date-format’
-                          which defaults to ‘%Y-%m-%d’.
-                          
-
-
-File: org,  Node: Generating an index,  Prev: Sitemap,  Up: Configuration
-
-13.1.8 Generating an index
---------------------------
-
-Org mode can generate an index across the files of a publishing project.
-
-‘:makeindex’       When non-‘nil’, generate in index in the file
-                   ‘theindex.org’ and publish it as ‘theindex.html’.
-
-   The file will be created when first publishing a project with the
-‘:makeindex’ set.  The file only contains a statement ‘#+INCLUDE:
-"theindex.inc"’.  You can then build around this include statement by
-adding a title, style information, etc.
-
-   Index entries are specified with ‘#+INDEX’ keyword.  An entry that
-contains an exclamation mark will create a sub item.
-
-     * Curriculum Vitae
-     #+INDEX: CV
-     #+INDEX: Application!CV
-
-
-File: org,  Node: Uploading files,  Next: Sample configuration,  Prev: Configuration,  Up: Publishing
-
-13.2 Uploading files
-====================
-
-For those people already utilizing third party sync tools such as
-‘rsync’ or ‘unison’, it might be preferable not to use the built in
-remote publishing facilities of Org mode which rely heavily on Tramp.
-Tramp, while very useful and powerful, tends not to be so efficient for
-multiple file transfer and has been known to cause problems under heavy
-usage.
-
-   Specialized synchronization utilities offer several advantages.  In
-addition to timestamp comparison, they also do content and
-permissions/attribute checks.  For this reason you might prefer to
-publish your web to a local directory (possibly even in place with your
-Org files) and then use ‘unison’ or ‘rsync’ to do the synchronization
-with the remote host.
-
-   Since Unison (for example) can be configured as to which files to
-transfer to a certain remote destination, it can greatly simplify the
-project publishing definition.  Simply keep all files in the correct
-location, process your Org files with ‘org-publish’ and let the
-synchronization tool do the rest.  You do not need, in this scenario, to
-include attachments such as ‘jpg’, ‘css’ or ‘gif’ files in the project
-definition since the 3rd party tool syncs them.
-
-   Publishing to a local directory is also much faster than to a remote
-one, so that you can afford more easily to republish entire projects.
-If you set ‘org-publish-use-timestamps-flag’ to ‘nil’, you gain the main
-benefit of re-including any changed external files such as source
-example files you might include with ‘#+INCLUDE:’.  The timestamp
-mechanism in Org is not smart enough to detect if included files have
-been modified.
-
-
-File: org,  Node: Sample configuration,  Next: Triggering publication,  Prev: Uploading files,  Up: Publishing
-
-13.3 Sample configuration
-=========================
-
-Below we provide two example configurations.  The first one is a simple
-project publishing only a set of Org files.  The second example is more
-complex, with a multi-component project.
-
-* Menu:
-
-* Simple example::              One-component publishing
-* Complex example::             A multi-component publishing example
-
-
-File: org,  Node: Simple example,  Next: Complex example,  Up: Sample configuration
-
-13.3.1 Example: simple publishing configuration
------------------------------------------------
-
-This example publishes a set of Org files to the ‘public_html’ directory
-on the local machine.
-
-     (setq org-publish-project-alist
-           '(("org"
-              :base-directory "~/org/"
-              :publishing-directory "~/public_html"
-              :publishing-function org-html-publish-to-html
-              :section-numbers nil
-              :with-toc nil
-              :html-head "<link rel=\"stylesheet\"
-                         href=\"../other/mystyle.css\"
-                         type=\"text/css\"/>")))
-
-
-File: org,  Node: Complex example,  Prev: Simple example,  Up: Sample configuration
-
-13.3.2 Example: complex publishing configuration
-------------------------------------------------
-
-This more complicated example publishes an entire website, including Org
-files converted to HTML, image files, Emacs Lisp source code, and style
-sheets.  The publishing directory is remote and private files are
-excluded.
-
-   To ensure that links are preserved, care should be taken to replicate
-your directory structure on the web server, and to use relative file
-paths.  For example, if your Org files are kept in ‘~/org’ and your
-publishable images in ‘~/images’, you would link to an image with
-     file:../images/myimage.png
-   On the web server, the relative path to the image should be the same.
-You can accomplish this by setting up an "images" folder in the right
-place on the web server, and publishing images to it.
-
-     (setq org-publish-project-alist
-           '(("orgfiles"
-               :base-directory "~/org/"
-               :base-extension "org"
-               :publishing-directory "/ssh:user@host:~/html/notebook/"
-               :publishing-function org-html-publish-to-html
-               :exclude "PrivatePage.org"   ;; regexp
-               :headline-levels 3
-               :section-numbers nil
-               :with-toc nil
-               :html-head "<link rel=\"stylesheet\"
-                       href=\"../other/mystyle.css\" type=\"text/css\"/>"
-               :html-preamble t)
-
-              ("images"
-               :base-directory "~/images/"
-               :base-extension "jpg\\|gif\\|png"
-               :publishing-directory "/ssh:user@host:~/html/images/"
-               :publishing-function org-publish-attachment)
-
-              ("other"
-               :base-directory "~/other/"
-               :base-extension "css\\|el"
-               :publishing-directory "/ssh:user@host:~/html/other/"
-               :publishing-function org-publish-attachment)
-              ("website" :components ("orgfiles" "images" "other"))))
-
-
-File: org,  Node: Triggering publication,  Prev: Sample configuration,  Up: Publishing
-
-13.4 Triggering publication
-===========================
-
-Once properly configured, Org can publish with the following commands:
-
-‘C-c C-e P x     (org-publish)’
-     Prompt for a specific project and publish all files that belong to
-     it.
-‘C-c C-e P p     (org-publish-current-project)’
-     Publish the project containing the current file.
-‘C-c C-e P f     (org-publish-current-file)’
-     Publish only the current file.
-‘C-c C-e P a     (org-publish-all)’
-     Publish every project.
-
-   Org uses timestamps to track when a file has changed.  The above
-functions normally only publish changed files.  You can override this
-and force publishing of all files by giving a prefix argument to any of
-the commands above, or by customizing the variable
-‘org-publish-use-timestamps-flag’.  This may be necessary in particular
-if files include other files via ‘#+SETUPFILE:’ or ‘#+INCLUDE:’.
-
-
-File: org,  Node: Working with source code,  Next: Miscellaneous,  Prev: Publishing,  Up: Top
-
-14 Working with source code
-***************************
-
-Source code here refers to any code typed in Org mode documents.  Org
-can manage source code in any Org file once such code is tagged with
-begin and end markers.  Working with source code begins with tagging
-source code blocks.  Tagged ‘src’ code blocks are not restricted to the
-preamble or the end of an Org document; they can go anywhere—with a few
-exceptions, such as not inside comments and fixed width areas.  Here’s a
-sample ‘src’ code block in emacs-lisp:
-
-     #+BEGIN_SRC emacs-lisp
-       (defun org-xor (a b)
-          "Exclusive or."
-          (if a (not b) b))
-     #+END_SRC
-
-   Org can take the code in the block between the ‘#+BEGIN_SRC’ and
-‘#+END_SRC’ tags, and format, compile, execute, and show the results.
-Org can simplify many housekeeping tasks essential to modern code
-maintenance.  That’s why these blocks in Org mode literature are
-sometimes referred to as ‘live code’ blocks (as compared to the static
-text and documentation around it).  Users can control how ‘live’ they
-want each block by tweaking the headers for compiling, execution,
-extraction.
-
-   Org’s ‘src’ code block type is one of many block types, such as
-quote, export, verse, latex, example, and verbatim.  This section
-pertains to ‘src’ code blocks between ‘#+BEGIN_SRC’ and ‘#+END_SRC’
-
-   For editing ‘src’ code blocks, Org provides native Emacs major-modes.
-That leverages the latest Emacs features for that source code language
-mode.
-
-   For exporting, Org can then extract ‘src’ code blocks into compilable
-source files (in a conversion process known as “tangling” in literate
-programming terminology).
-
-   For publishing, Org’s back-ends can handle the ‘src’ code blocks and
-the text for output to a variety of formats with native syntax
-highlighting.
-
-   For executing the source code in the ‘src’ code blocks, Org provides
-facilities that glue the tasks of compiling, collecting the results of
-the execution, and inserting them back to the Org file.  Besides text
-output, results may include links to other data types that Emacs can
-handle: audio, video, and graphics.
-
-   An important feature of Org’s execution of the ‘src’ code blocks is
-passing variables, functions, and results between ‘src’ blocks.  Such
-interoperability uses a common syntax even if these ‘src’ blocks are in
-different source code languages.  The integration extends to linking the
-debugger’s error messages to the line in the ‘src’ code block in the Org
-file.  That should partly explain why this functionality by the original
-contributors, Eric Schulte and Dan Davison, was called ‘Org Babel’.
-
-   In literate programming, the main appeal is code and documentation
-co-existing in one file.  Org mode takes this several steps further.
-First by enabling execution, and then by inserting results of that
-execution back into the Org file.  Along the way, Org provides extensive
-formatting features, including handling tables.  Org handles multiple
-source code languages in one file, and provides a common syntax for
-passing variables, functions, and results between ‘src’ code blocks.
-
-   Org mode fulfills the promise of easy verification and maintenance of
-publishing reproducible research by keeping all these in the same file:
-text, data, code, configuration settings of the execution environment,
-the results of the execution, and associated narratives, claims,
-references, and internal and external links.
-
-   Details of Org’s facilities for working with source code are shown
-next.
-
-* Menu:
-
-* Structure of code blocks::    Code block syntax described
-* Editing source code::         Language major-mode editing
-* Exporting code blocks::       Export contents and/or results
-* Extracting source code::      Create pure source code files
-* Evaluating code blocks::      Place results of evaluation in the Org mode buffer
-* Library of Babel::            Use and contribute to a library of useful code blocks
-* Languages::                   List of supported code block languages
-* Header arguments::            Configure code block functionality
-* Results of evaluation::       How evaluation results are handled
-* Noweb reference syntax::      Literate programming in Org mode
-* Key bindings and useful functions::  Work quickly with code blocks
-* Batch execution::             Call functions from the command line
-
-
-File: org,  Node: Structure of code blocks,  Next: Editing source code,  Up: Working with source code
-
-14.1 Structure of code blocks
-=============================
-
-Org offers two ways to structure source code in Org documents: in a
-‘src’ block, and directly inline.  Both specifications are shown below.
-
-   A ‘src’ block conforms to this structure:
-
-     #+NAME: <name>
-     #+BEGIN_SRC <language> <switches> <header arguments>
-       <body>
-     #+END_SRC
-
-   Org mode’s templates system (*note Easy templates::) speeds up
-creating ‘src’ code blocks with just three keystrokes.  Do not be
-put-off by having to remember the source block syntax.  Org also works
-with other completion systems in Emacs, some of which predate Org and
-have custom domain-specific languages for defining templates.  Regular
-use of templates reduces errors, increases accuracy, and maintains
-consistency.
-
-   An inline code block conforms to this structure:
-
-     src_<language>{<body>}
-
-   or
-
-     src_<language>[<header arguments>]{<body>}
-
-‘#+NAME: <name>’
-     Optional.  Names the ‘src’ block so it can be called, like a
-     function, from other ‘src’ blocks or inline blocks to evaluate or
-     to capture the results.  Code from other blocks, other files, and
-     from table formulas (*note The spreadsheet::) can use the name to
-     reference a ‘src’ block.  This naming serves the same purpose as
-     naming Org tables.  Org mode requires unique names.  For duplicate
-     names, Org mode’s behavior is undefined.
-‘#+BEGIN_SRC’
-‘#+END_SRC’
-     Mandatory.  They mark the start and end of a block that Org
-     requires.  The ‘#+BEGIN_SRC’ line takes additional arguments, as
-     described next.
-‘<language>’
-     Mandatory for live code blocks.  It is the identifier of the source
-     code language in the block.  *Note Languages::, for identifiers of
-     supported languages.
-‘<switches>’
-     Optional.  Switches provide finer control of the code execution,
-     export, and format (see the discussion of switches in *note Literal
-     examples::)
-‘<header arguments>’
-     Optional.  Heading arguments control many aspects of evaluation,
-     export and tangling of code blocks (*note Header arguments::).
-     Using Org’s properties feature, header arguments can be selectively
-     applied to the entire buffer or specific sub-trees of the Org
-     document.
-‘source code, header arguments’
-‘<body>’
-     Source code in the dialect of the specified language identifier.
-
-
-File: org,  Node: Editing source code,  Next: Exporting code blocks,  Prev: Structure of code blocks,  Up: Working with source code
-
-14.2 Editing source code
-========================
-
-‘C-c '’ for editing the current code block.  It opens a new major-mode
-edit buffer containing the body of the ‘src’ code block, ready for any
-edits.  ‘C-c '’ again to close the buffer and return to the Org buffer.
-
-   ‘C-x C-s’ saves the buffer and updates the contents of the Org
-buffer.
-
-   Set ‘org-edit-src-auto-save-idle-delay’ to save the base buffer after
-a certain idle delay time.
-
-   Set ‘org-edit-src-turn-on-auto-save’ to auto-save this buffer into a
-separate file using ‘auto-save-mode’.
-
-   ‘C-c '’ to close the major-mode buffer and return back to the Org
-buffer.
-
-   While editing the source code in the major-mode, the ‘org-src-mode’
-minor mode remains active.  It provides these customization variables as
-described below.  For even more variables, look in the customization
-group ‘org-edit-structure’.
-
-‘org-src-lang-modes’
-     If an Emacs major-mode named ‘<lang>-mode’ exists, where ‘<lang>’
-     is the language identifier from code block’s header line, then the
-     edit buffer uses that major-mode.  Use this variable to arbitrarily
-     map language identifiers to major modes.
-‘org-src-window-setup’
-     For specifying Emacs window arrangement when the new edit buffer is
-     created.
-‘org-src-preserve-indentation’
-     Default is ‘nil’.  Source code is indented.  This indentation
-     applies during export or tangling, and depending on the context,
-     may alter leading spaces and tabs.  When non-‘nil’, source code is
-     aligned with the leftmost column.  No lines are modified during
-     export or tangling, which is very useful for white-space sensitive
-     languages, such as Python.
-‘org-src-ask-before-returning-to-edit-buffer’
-     When ‘nil’, Org returns to the edit buffer without further prompts.
-     The default prompts for a confirmation.
-
-   Set ‘org-src-fontify-natively’ to non-‘nil’ to turn on native code
-fontification in the _Org_ buffer.  Fontification of ‘src’ code blocks
-can give visual separation of text and code on the display page.  To
-further customize the appearance of ‘org-block’ for specific languages,
-customize ‘org-src-block-faces’.  The following example shades the
-background of regular blocks, and colors source blocks only for Python
-and Emacs-Lisp languages.
-     (require 'color)
-     (set-face-attribute 'org-block nil :background
-                         (color-darken-name
-                          (face-attribute 'default :background) 3))
-
-     (setq org-src-block-faces '(("emacs-lisp" (:background "#EEE2FF"))
-                                 ("python" (:background "#E5FFB8"))))
-
-
-File: org,  Node: Exporting code blocks,  Next: Extracting source code,  Prev: Editing source code,  Up: Working with source code
-
-14.3 Exporting code blocks
-==========================
-
-Org can flexibly export just the _code_ from the code blocks, just the
-_results_ of evaluation of the code block, _both_ the code and the
-results of the code block evaluation, or _none_.  Org defaults to
-exporting _code_ for most languages.  For some languages, such as
-‘ditaa’, Org defaults to _results_.  To export just the body of code
-blocks, *note Literal examples::.  To selectively export sub-trees of an
-Org document, *note Exporting::.
-
-   The ‘:exports’ header arguments control exporting code blocks only
-and not inline code:
-
-Header arguments:
-.................
-
-‘:exports code’
-     This is the default for most languages where the body of the code
-     block is exported.  See *note Literal examples:: for more.
-‘:exports results’
-     On export, Org includes only the results and not the code block.
-     After each evaluation, Org inserts the results after the end of
-     code block in the Org buffer.  By default, Org replaces any
-     previous results.  Org can also append results.
-‘:exports both’
-     Org exports both the code block and the results.
-‘:exports none’
-     Org does not export the code block nor the results.
-
-   To stop Org from evaluating code blocks to speed exports, use the
-header argument ‘:eval never-export’ (*note eval::).  To stop Org from
-evaluating code blocks for greater security, set the
-‘org-export-use-babel’ variable to ‘nil’, but understand that header
-arguments will have no effect.
-
-   Turning off evaluation comes in handy when batch processing.  For
-example, markup languages for wikis, which have a high risk of untrusted
-code.  Stopping code block evaluation also stops evaluation of all
-header arguments of the code block.  This may not be desirable in some
-circumstances.  So during export, to allow evaluation of just the header
-arguments but not any code evaluation in the source block, set ‘:eval
-never-export’ (*note eval::).
-
-   Org never evaluates code blocks in commented sub-trees when exporting
-(*note Comment lines::).  On the other hand, Org does evaluate code
-blocks in sub-trees excluded from export (*note Export settings::).
-
-
-File: org,  Node: Extracting source code,  Next: Evaluating code blocks,  Prev: Exporting code blocks,  Up: Working with source code
-
-14.4 Extracting source code
-===========================
-
-Extracting source code from code blocks is a basic task in literate
-programming.  Org has features to make this easy.  In literate
-programming parlance, documents on creation are _woven_ with code and
-documentation, and on export, the code is _tangled_ for execution by a
-computer.  Org facilitates weaving and tangling for producing,
-maintaining, sharing, and exporting literate programming documents.  Org
-provides extensive customization options for extracting source code.
-
-   When Org tangles ‘src’ code blocks, it expands, merges, and
-transforms them.  Then Org recomposes them into one or more separate
-files, as configured through the options.  During this _tangling_
-process, Org expands variables in the source code, and resolves any
-Noweb style references (*note Noweb reference syntax::).
-
-Header arguments
-................
-
-‘:tangle no’
-     By default, Org does not tangle the ‘src’ code block on export.
-‘:tangle yes’
-     Org extracts the contents of the code block for the tangled output.
-     By default, the output file name is the same as the Org file but
-     with a file extension derived from the language identifier of the
-     ‘src’ code block.
-‘:tangle filename’
-     Override the default file name with this one for the tangled
-     output.
-
-Functions
-.........
-
-‘org-babel-tangle’
-     Tangle the current file.  Bound to ‘C-c C-v t’.
-
-     With prefix argument only tangle the current ‘src’ code block.
-‘org-babel-tangle-file’
-     Choose a file to tangle.  Bound to ‘C-c C-v f’.
-
-Hooks
-.....
-
-‘org-babel-post-tangle-hook’
-     This hook runs from within code tangled by ‘org-babel-tangle’,
-     making it suitable for post-processing, compilation, and evaluation
-     of code in the tangled files.
-
-Jumping between code and Org
-............................
-
-Debuggers normally link errors and messages back to the source code.
-But for tangled files, we want to link back to the Org file, not to the
-tangled source file.  To make this extra jump, Org uses
-‘org-babel-tangle-jump-to-org’ function with two additional source code
-block header arguments: One, set ‘padline’ (*note padline::) to true
-(the default setting).  Two, set ‘comments’ (*note comments::) to
-‘link’, which makes Org insert links to the Org file.
-
-
-File: org,  Node: Evaluating code blocks,  Next: Library of Babel,  Prev: Extracting source code,  Up: Working with source code
-
-14.5 Evaluating code blocks
-===========================
-
-A note about security: With code evaluation comes the risk of harm.  Org
-safeguards by prompting for user’s permission before executing any code
-in the source block.  To customize this safeguard (or disable it) see
-*note Code evaluation security::.
-
-   Org captures the results of the ‘src’ code block evaluation and
-inserts them in the Org file, right after the ‘src’ code block.  The
-insertion point is after a newline and the ‘#+RESULTS’ label.  Org
-creates the ‘#+RESULTS’ label if one is not already there.
-
-   By default, Org enables only ‘emacs-lisp’ ‘src’ code blocks for
-execution.  See *note Languages:: for identifiers to enable other
-languages.
-
-   Org provides many ways to execute ‘src’ code blocks.  ‘C-c C-c’ or
-‘C-c C-v e’ with the point on a ‘src’ code block(1) calls the
-‘org-babel-execute-src-block’ function, which executes the code in the
-block, collects the results, and inserts them in the buffer.
-
-   By calling a named code block(2) from an Org mode buffer or a table.
-Org can call the named ‘src’ code blocks from the current Org mode
-buffer or from the “Library of Babel” (*note Library of Babel::).
-Whether inline syntax or the ‘#+CALL:’ syntax is used, the result is
-wrapped based on the variable ‘org-babel-inline-result-wrap’, which by
-default is set to ‘"=%s="’ to produce verbatim text suitable for markup.
-
-   The syntax for ‘#+CALL:’ is
-
-     #+CALL: <name>(<arguments>)
-     #+CALL: <name>[<inside header arguments>](<arguments>) <end header arguments>
-
-   The syntax for inline named code block is
-
-     ... call_<name>(<arguments>) ...
-     ... call_<name>[<inside header arguments>](<arguments>)[<end header arguments>] ...
-
-‘<name>’
-     This is the name of the code block to be evaluated (*note Structure
-     of code blocks::).
-‘<arguments>’
-     Org passes arguments to the code block using standard function call
-     syntax.  For example, a ‘#+CALL:’ line that passes ‘4’ to a code
-     block named ‘double’, which declares the header argument ‘:var
-     n=2’, would be written as ‘#+CALL: double(n=4)’.  Note how this
-     function call syntax is different from the header argument syntax.
-‘<inside header arguments>’
-     Org passes inside header arguments to the named ‘src’ code block
-     using the header argument syntax.  Inside header arguments apply to
-     code block evaluation.  For example, ‘[:results output]’ collects
-     results printed to ‘STDOUT’ during code execution of that block.
-     Note how this header argument syntax is different from the function
-     call syntax.
-‘<end header arguments>’
-     End header arguments affect the results returned by the code block.
-     For example, ‘:results html’ wraps the results in a ‘BEGIN_EXPORT
-     html’ block before inserting the results in the Org buffer.
-
-     For more examples of header arguments for ‘#+CALL:’ lines, *note
-     Arguments in function calls::.
-
-   ---------- Footnotes ----------
-
-   (1) The option ‘org-babel-no-eval-on-ctrl-c-ctrl-c’ can be used to
-remove code evaluation from the ‘C-c C-c’ key binding.
-
-   (2) Actually, the constructs call_<name>() and src_<lang>{} are not
-evaluated when they appear in a keyword line (i.e.  lines starting with
-‘#+KEYWORD:’, *note In-buffer settings::).
-
-
-File: org,  Node: Library of Babel,  Next: Languages,  Prev: Evaluating code blocks,  Up: Working with source code
-
-14.6 Library of Babel
-=====================
-
-The “Library of Babel” is a collection of code blocks.  Like a function
-library, these code blocks can be called from other Org files.  A
-collection of useful code blocks is available on Worg
-(https://orgmode.org/worg/library-of-babel.html).  For remote code block
-evaluation syntax, *note Evaluating code blocks::.
-
-   For any user to add code to the library, first save the code in
-regular ‘src’ code blocks of an Org file, and then load the Org file
-with ‘org-babel-lob-ingest’, which is bound to ‘C-c C-v i’.
-
-
-File: org,  Node: Languages,  Next: Header arguments,  Prev: Library of Babel,  Up: Working with source code
-
-14.7 Languages
-==============
-
-Org supports the following languages for the ‘src’ code blocks:
-
-Language           Identifier         Language           Identifier
-----------------------------------------------------------------------------
-Asymptote          asymptote          Awk                awk
-C                  C                  C++                C++
-Clojure            clojure            CSS                css
-D                  d                  ditaa              ditaa
-Graphviz           dot                Emacs Calc         calc
-Emacs Lisp         emacs-lisp         Fortran            fortran
-gnuplot            gnuplot            Haskell            haskell
-Java               java               Javascript         js
-LaTeX              latex              Ledger             ledger
-Lisp               lisp               Lilypond           lilypond
-Lua                lua                MATLAB             matlab
-Mscgen             mscgen             Objective Caml     ocaml
-Octave             octave             Org mode           org
-Oz                 oz                 Perl               perl
-Plantuml           plantuml           Processing.js      processing
-Python             python             R                  R
-Ruby               ruby               Sass               sass
-Scheme             scheme             GNU Screen         screen
-Sed                sed                shell              sh
-SQL                sql                SQLite             sqlite
-Vala               vala
-
-   Additional documentation for some languages are at
-<https://orgmode.org/worg/org-contrib/babel/languages.html>.
-
-   By default, only ‘emacs-lisp’ is enabled for evaluation.  To enable
-or disable other languages, customize the ‘org-babel-load-languages’
-variable either through the Emacs customization interface, or by adding
-code to the init file as shown next:
-
-   In this example, evaluation is disabled for ‘emacs-lisp’, and enabled
-for ‘R’.
-
-     (org-babel-do-load-languages
-      'org-babel-load-languages
-      '((emacs-lisp . nil)
-        (R . t)))
-
-   Note that this is not the only way to enable a language.  Org also
-enables languages when loaded with ‘require’ statement.  For example,
-the following enables execution of ‘clojure’ code blocks:
-
-     (require 'ob-clojure)
-
-
-File: org,  Node: Header arguments,  Next: Results of evaluation,  Prev: Languages,  Up: Working with source code
-
-14.8 Header arguments
-=====================
-
-Details of configuring header arguments are shown here.
-
-* Menu:
-
-* Using header arguments::      Different ways to set header arguments
-* Specific header arguments::   List of header arguments
-
-
-File: org,  Node: Using header arguments,  Next: Specific header arguments,  Up: Header arguments
-
-14.8.1 Using header arguments
------------------------------
-
-Since header arguments can be set in several ways, Org prioritizes them
-in case of overlaps or conflicts by giving local settings a higher
-priority.  Header values in function calls, for example, override header
-values from global defaults.
-* Menu:
-
-* System-wide header arguments::  Set globally, language-specific
-* Language-specific header arguments::  Set in the Org file’s headers
-* Header arguments in Org mode properties::  Set in the Org file
-* Language-specific mode properties::
-* Code block specific header arguments::  The most commonly used method
-* Arguments in function calls::  The most specific level, takes highest priority
-
-
-File: org,  Node: System-wide header arguments,  Next: Language-specific header arguments,  Up: Using header arguments
-
-System-wide header arguments
-............................
-
-System-wide values of header arguments can be specified by adapting the
-‘org-babel-default-header-args’ variable:
-
-     :session    => "none"
-     :results    => "replace"
-     :exports    => "code"
-     :cache      => "no"
-     :noweb      => "no"
-
-   This example sets ‘:noweb’ header arguments to ‘yes’, which makes Org
-expand ‘:noweb’ references by default.
-
-     (setq org-babel-default-header-args
-           (cons '(:noweb . "yes")
-                 (assq-delete-all :noweb org-babel-default-header-args)))
-
-
-File: org,  Node: Language-specific header arguments,  Next: Header arguments in Org mode properties,  Prev: System-wide header arguments,  Up: Using header arguments
-
-Language-specific header arguments
-..................................
-
-Each language can have separate default header arguments by customizing
-the variable ‘org-babel-default-header-args:<lang>’, where ‘<lang>’ is
-the name of the language.  For details, see the language-specific online
-documentation at <https://orgmode.org/worg/org-contrib/babel/>.
-
-
-File: org,  Node: Header arguments in Org mode properties,  Next: Language-specific mode properties,  Prev: Language-specific header arguments,  Up: Using header arguments
-
-Header arguments in Org mode properties
-.......................................
-
-For header arguments applicable to the buffer, use ‘#+PROPERTY:’ lines
-anywhere in the Org mode file (*note Property syntax::).
-
-   The following example sets only for ‘R’ code blocks to ‘session’,
-making all the ‘R’ code blocks execute in the same session.  Setting
-‘results’ to ‘silent’ ignores the results of executions for all blocks,
-not just ‘R’ code blocks; no results inserted for any block.
-
-     #+PROPERTY: header-args:R  :session *R*
-     #+PROPERTY: header-args    :results silent
-
-   Header arguments set through Org’s property drawers (*note Property
-syntax::) apply at the sub-tree level on down.  Since these property
-drawers can appear anywhere in the file hierarchy, Org uses outermost
-call or source block to resolve the values.  Org ignores
-‘org-use-property-inheritance’ setting.
-
-   In this example, ‘:cache’ defaults to ‘yes’ for all code blocks in
-the sub-tree starting with ‘sample header’.
-
-     * sample header
-       :PROPERTIES:
-       :header-args:    :cache yes
-       :END:
-
-   Properties defined through ‘org-set-property’ function, bound to ‘C-c
-C-x p’, apply to all active languages.  They override properties set in
-‘org-babel-default-header-args’.
-
-
-File: org,  Node: Language-specific mode properties,  Next: Code block specific header arguments,  Prev: Header arguments in Org mode properties,  Up: Using header arguments
-
-Language-specific mode properties
-.................................
-
-Language-specific header arguments are also read from properties
-‘header-args:<lang>’ where ‘<lang>’ is the language identifier.  For
-example,
-
-     * Heading
-       :PROPERTIES:
-       :header-args:clojure:    :session *clojure-1*
-       :header-args:R:          :session *R*
-       :END:
-     ** Subheading
-       :PROPERTIES:
-       :header-args:clojure:    :session *clojure-2*
-       :END:
-
-   would force separate sessions for clojure blocks in Heading and
-Subheading, but use the same session for all ‘R’ blocks.  Blocks in
-Subheading inherit settings from Heading.
-
-
-File: org,  Node: Code block specific header arguments,  Next: Arguments in function calls,  Prev: Language-specific mode properties,  Up: Using header arguments
-
-Code block specific header arguments
-....................................
-
-Header arguments are most commonly set at the ‘src’ code block level, on
-the ‘#+BEGIN_SRC’ line.  Arguments set at this level take precedence
-over those set in the ‘org-babel-default-header-args’ variable, and also
-those set as header properties.
-
-   In the following example, setting ‘results’ to ‘silent’ makes it
-ignore results of the code execution.  Setting ‘:exports’ to ‘code’
-exports only the body of the ‘src’ code block to HTML or LaTeX.:
-
-     #+NAME: factorial
-     #+BEGIN_SRC haskell :results silent :exports code :var n=0
-     fac 0 = 1
-     fac n = n * fac (n-1)
-     #+END_SRC
-
-   The same header arguments in an inline ‘src’ code block:
-
-     src_haskell[:exports both]{fac 5}
-
-   Code block header arguments can span multiple lines using ‘#+HEADER:’
-on each line.  Note that Org currently accepts the plural spelling of
-‘#+HEADER:’ only as a convenience for backward-compatibility.  It may be
-removed at some point.
-
-   Multi-line header arguments on an unnamed ‘src’ code block:
-
-     #+HEADER: :var data1=1
-     #+BEGIN_SRC emacs-lisp :var data2=2
-        (message "data1:%S, data2:%S" data1 data2)
-     #+END_SRC
-
-     #+RESULTS:
-     : data1:1, data2:2
-
-   Multi-line header arguments on a named ‘src’ code block:
-
-     #+NAME: named-block
-     #+HEADER: :var data=2
-     #+BEGIN_SRC emacs-lisp
-       (message "data:%S" data)
-     #+END_SRC
-
-     #+RESULTS: named-block
-       : data:2
-
-
-File: org,  Node: Arguments in function calls,  Prev: Code block specific header arguments,  Up: Using header arguments
-
-Arguments in function calls
-...........................
-
-Header arguments in function calls are the most specific and override
-all other settings in case of an overlap.  They get the highest
-priority.  Two ‘#+CALL:’ examples are shown below.  For the complete
-syntax of ‘#+CALL:’ lines, see *note Evaluating code blocks::.
-
-   In this example, ‘:exports results’ header argument is applied to the
-evaluation of the ‘#+CALL:’ line.
-
-     #+CALL: factorial(n=5) :exports results
-
-   In this example, ‘:session special’ header argument is applied to the
-evaluation of ‘factorial’ code block.
-
-     #+CALL: factorial[:session special](n=5)
-
-
-File: org,  Node: Specific header arguments,  Prev: Using header arguments,  Up: Header arguments
-
-14.8.2 Specific header arguments
---------------------------------
-
-Org comes with many header arguments common to all languages.  New
-header arguments are added for specific languages as they become
-available for use in ‘src’ code blocks.  A header argument is specified
-with an initial colon followed by the argument’s name in lowercase.
-Common header arguments are:
-
-* Menu:
-
-* var::                         Pass arguments to ‘src’ code blocks
-* results::                     Specify results type; how to collect
-* file::                        Specify a path for output file
-* file-desc::                   Specify a description for file results
-* file-ext::                    Specify an extension for file output
-* output-dir::                  Specify a directory for output file
-* dir::                         Specify the default directory for code block execution
-* exports::                     Specify exporting code, results, both, none
-* tangle::                      Toggle tangling; or specify file name
-* mkdirp::                      Toggle for parent directory creation for target files during tangling
-* comments::                    Toggle insertion of comments in tangled code files
-* padline::                     Control insertion of padding lines in tangled code files
-* no-expand::                   Turn off variable assignment and noweb expansion during tangling
-* session::                     Preserve the state of code evaluation
-* noweb::                       Toggle expansion of noweb references
-* noweb-ref::                   Specify block’s noweb reference resolution target
-* noweb-sep::                   String to separate noweb references
-* cache::                       Avoid re-evaluating unchanged code blocks
-* sep::                         Delimiter for writing tabular results outside Org
-* hlines::                      Handle horizontal lines in tables
-* colnames::                    Handle column names in tables
-* rownames::                    Handle row names in tables
-* shebang::                     Make tangled files executable
-* tangle-mode::                 Set permission of tangled files
-* eval::                        Limit evaluation of specific code blocks
-* wrap::                        Mark source block evaluation results
-* post::                        Post processing of results of code block evaluation
-* prologue::                    Text to prepend to body of code block
-* epilogue::                    Text to append to body of code block
-
-   For language-specific header arguments, see *note Languages::.
-
-
-File: org,  Node: var,  Next: results,  Up: Specific header arguments
-
-14.8.2.1 ‘:var’
-...............
-
-Use ‘:var’ for passing arguments to ‘src’ code blocks.  The specifics of
-variables in ‘src’ code blocks vary by the source language and are
-covered in the language-specific documentation.  The syntax for ‘:var’,
-however, is the same for all languages.  This includes declaring a
-variable, and assigning a default value.
-
-   Arguments can take values as literals, or as references, or even as
-Emacs Lisp code (*note Emacs Lisp evaluation of variables: var.).
-References are names from the Org file from the lines ‘#+NAME:’ or
-‘#+RESULTS:’.  References can also refer to tables, lists,
-‘#+BEGIN_EXAMPLE’ blocks, other types of ‘src’ code blocks, or the
-results of execution of ‘src’ code blocks.
-
-   For better performance, Org can cache results of evaluations.  But
-caching comes with severe limitations (*note cache::).
-
-   Argument values are indexed like arrays (*note Indexable variable
-values: var.).
-
-   The following syntax is used to pass arguments to ‘src’ code blocks
-using the ‘:var’ header argument.
-
-     :var name=assign
-
-   The ‘assign’ is a literal value, such as a string ‘"string"’, a
-number ‘9’, a reference to a table, a list, a literal example, another
-code block (with or without arguments), or the results from evaluating a
-code block.
-
-   Here are examples of passing values by reference:
-
-“table”
-     an Org mode table named with either a ‘#+NAME:’ line
-
-          #+NAME: example-table
-          | 1 |
-          | 2 |
-          | 3 |
-          | 4 |
-
-          #+NAME: table-length
-          #+BEGIN_SRC emacs-lisp :var table=example-table
-          (length table)
-          #+END_SRC
-
-          #+RESULTS: table-length
-          : 4
-
-“list”
-     a simple list named with a ‘#+NAME:’ line.  Note that only the top
-     level list items are passed along.  Nested list items are ignored.
-
-          #+NAME: example-list
-            - simple
-              - not
-              - nested
-            - list
-
-          #+BEGIN_SRC emacs-lisp :var x=example-list
-            (print x)
-          #+END_SRC
-
-          #+RESULTS:
-          | simple | list |
-
-“code block without arguments”
-     a code block name (from the example above), as assigned by
-     ‘#+NAME:’, optionally followed by parentheses
-
-          #+BEGIN_SRC emacs-lisp :var length=table-length()
-          (* 2 length)
-          #+END_SRC
-
-          #+RESULTS:
-          : 8
-
-“code block with arguments”
-     a ‘src’ code block name, as assigned by ‘#+NAME:’, followed by
-     parentheses and optional arguments passed within the parentheses
-     following the ‘src’ code block name using standard function call
-     syntax
-
-          #+NAME: double
-          #+BEGIN_SRC emacs-lisp :var input=8
-          (* 2 input)
-          #+END_SRC
-
-          #+RESULTS: double
-          : 16
-
-          #+NAME: squared
-          #+BEGIN_SRC emacs-lisp :var input=double(input=2)
-          (* input input)
-          #+END_SRC
-
-          #+RESULTS: squared
-          : 4
-
-“literal example”
-     a literal example block named with a ‘#+NAME:’ line
-
-          #+NAME: literal-example
-          #+BEGIN_EXAMPLE
-          A literal example
-          on two lines
-          #+END_EXAMPLE
-
-          #+NAME: read-literal-example
-          #+BEGIN_SRC emacs-lisp :var x=literal-example
-            (concatenate 'string x " for you.")
-          #+END_SRC
-
-          #+RESULTS: read-literal-example
-          : A literal example
-          : on two lines for you.
-
-
-Indexable variable values
-.........................
-
-Indexing variable values enables referencing portions of a variable.
-Indexes are 0 based with negative values counting backwards from the
-end.  If an index is separated by ‘,’s then each subsequent section will
-index as the next dimension.  Note that this indexing occurs _before_
-other table-related header arguments are applied, such as ‘:hlines’,
-‘:colnames’ and ‘:rownames’.  The following example assigns the last
-cell of the first row the table ‘example-table’ to the variable ‘data’:
-
-     #+NAME: example-table
-     | 1 | a |
-     | 2 | b |
-     | 3 | c |
-     | 4 | d |
-
-     #+BEGIN_SRC emacs-lisp :var data=example-table[0,-1]
-       data
-     #+END_SRC
-
-     #+RESULTS:
-     : a
-
-   Ranges of variable values can be referenced using two integers
-separated by a ‘:’, in which case the entire inclusive range is
-referenced.  For example the following assigns the middle three rows of
-‘example-table’ to ‘data’.
-
-     #+NAME: example-table
-     | 1 | a |
-     | 2 | b |
-     | 3 | c |
-     | 4 | d |
-     | 5 | 3 |
-
-     #+BEGIN_SRC emacs-lisp :var data=example-table[1:3]
-       data
-     #+END_SRC
-
-     #+RESULTS:
-     | 2 | b |
-     | 3 | c |
-     | 4 | d |
-
-   To pick the entire range, use an empty index, or the single character
-‘*’.  ‘0:-1’ does the same thing.  Example below shows how to reference
-the first column only.
-
-     #+NAME: example-table
-     | 1 | a |
-     | 2 | b |
-     | 3 | c |
-     | 4 | d |
-
-     #+BEGIN_SRC emacs-lisp :var data=example-table[,0]
-       data
-     #+END_SRC
-
-     #+RESULTS:
-     | 1 | 2 | 3 | 4 |
-
-   Index referencing can be used for tables and code blocks.  Index
-referencing can handle any number of dimensions.  Commas delimit
-multiple dimensions, as shown below.
-
-     #+NAME: 3D
-     #+BEGIN_SRC emacs-lisp
-       '(((1  2  3)  (4  5  6)  (7  8  9))
-         ((10 11 12) (13 14 15) (16 17 18))
-         ((19 20 21) (22 23 24) (25 26 27)))
-     #+END_SRC
-
-     #+BEGIN_SRC emacs-lisp :var data=3D[1,,1]
-       data
-     #+END_SRC
-
-     #+RESULTS:
-     | 11 | 14 | 17 |
-
-Emacs Lisp evaluation of variables
-..................................
-
-Emacs lisp code can set the values for variables.  To differentiate a
-value from lisp code, Org interprets any value starting with ‘(’, ‘[’,
-‘'’ or ‘`’ as Emacs Lisp code.  The result of evaluating that code is
-then assigned to the value of that variable.  The following example
-shows how to reliably query and pass file name of the Org mode buffer to
-a code block using headers.  We need reliability here because the file’s
-name could change once the code in the block starts executing.
-
-     #+BEGIN_SRC sh :var filename=(buffer-file-name) :exports both
-       wc -w $filename
-     #+END_SRC
-
-   Note that values read from tables and lists will not be mistakenly
-evaluated as Emacs Lisp code, as illustrated in the following example.
-
-     #+NAME: table
-     | (a b c) |
-
-     #+HEADER: :var data=table[0,0]
-     #+BEGIN_SRC perl
-       $data
-     #+END_SRC
-
-     #+RESULTS:
-     : (a b c)
-
-
-File: org,  Node: results,  Next: file,  Prev: var,  Up: Specific header arguments
-
-14.8.2.2 ‘:results’
-...................
-
-There are four classes of ‘:results’ header arguments.  Each ‘src’ code
-block can take only one option per class.
-
-   • collection for how the results should be collected from the ‘src’
-     code block
-   • type for which type of result the code block will return; affects
-     how Org processes and inserts results in the Org buffer
-   • format for the result; affects how Org processes and inserts
-     results in the Org buffer
-   • handling for processing results after evaluation of the ‘src’ code
-     block
-
-Collection
-..........
-
-Collection options specify the results.  Choose one of the options; they
-are mutually exclusive.
-
-   • ‘value’ Default.  Functional mode.  Result is the value returned by
-     the last statement in the ‘src’ code block.  Languages like Python
-     may require an explicit ‘return’ statement in the ‘src’ code block.
-     Usage example: ‘:results value’.
-   • ‘output’ Scripting mode.  Result is collected from STDOUT during
-     execution of the code in the ‘src’ code block.  Usage example:
-     ‘:results output’.
-
-Type
-....
-
-Type tells what result types to expect from the execution of the code
-block.  Choose one of the options; they are mutually exclusive.  The
-default behavior is to automatically determine the result type.
-
-   • ‘table’, ‘vector’ Interpret the results as an Org table.  If the
-     result is a single value, create a table with one row and one
-     column.  Usage example: ‘:results value table’.
-   • ‘list’ Interpret the results as an Org list.  If the result is a
-     single value, create a list of one element.
-   • ‘scalar’, ‘verbatim’ Interpret literally and insert as quoted text.
-     Do not create a table.  Usage example: ‘:results value verbatim’.
-   • ‘file’ Interpret as path to a file.  Inserts a link to the file.
-     Usage example: ‘:results value file’.
-
-Format
-......
-
-Format pertains to the type of the result returned by the ‘src’ code
-block.  Choose one of the options; they are mutually exclusive.  The
-default follows from the type specified above.
-
-   • ‘raw’ Interpreted as raw Org mode.  Inserted directly into the
-     buffer.  Aligned if it is a table.  Usage example: ‘:results value
-     raw’.
-   • ‘org’ Results enclosed in a ‘BEGIN_SRC org’ block.  For
-     comma-escape, either <TAB> in the block, or export the file.  Usage
-     example: ‘:results value org’.
-   • ‘html’ Results enclosed in a ‘BEGIN_EXPORT html’ block.  Usage
-     example: ‘:results value html’.
-   • ‘latex’ Results enclosed in a ‘BEGIN_EXPORT latex’ block.  Usage
-     example: ‘:results value latex’.
-   • ‘code’ Result enclosed in a ‘src’ code block.  Useful for parsing.
-     Usage example: ‘:results value code’.
-   • ‘pp’ Result converted to pretty-print source code.  Enclosed in a
-     ‘src’ code block.  Languages supported: Emacs Lisp, Python, and
-     Ruby.  Usage example: ‘:results value pp’.
-   • ‘drawer’ Result wrapped in a RESULTS drawer.  Useful for containing
-     ‘raw’ or ‘org’ results for later scripting and automated
-     processing.  Usage example: ‘:results value drawer’.
-
-Handling
-........
-
-Handling options after collecting the results.
-
-   • ‘silent’ Do not insert results in the Org mode buffer, but echo
-     them in the minibuffer.  Usage example: ‘:results output silent’.
-   • ‘replace’ Default.  Insert results in the Org buffer.  Remove
-     previous results.  Usage example: ‘:results output replace’.
-   • ‘append’ Append results to the Org buffer.  Latest results are at
-     the bottom.  Does not remove previous results.  Usage example:
-     ‘:results output append’.
-   • ‘prepend’ Prepend results to the Org buffer.  Latest results are at
-     the top.  Does not remove previous results.  Usage example:
-     ‘:results output prepend’.
-
-
-File: org,  Node: file,  Next: file-desc,  Prev: results,  Up: Specific header arguments
-
-14.8.2.3 ‘:file’
-................
-
-An external ‘:file’ that saves the results of execution of the code
-block.  The ‘:file’ is either a file name or two strings, where the
-first is the file name and the second is the description.  A link to the
-file is inserted.  It uses an Org mode style ‘[[file:]]’ link (*note
-Link format::).  Some languages, such as ‘R’, ‘dot’, ‘ditaa’, and
-‘gnuplot’, automatically wrap the source code in additional boilerplate
-code.  Such code wrapping helps recreate the output, especially graphics
-output, by executing just the ‘:file’ contents.
-
-
-File: org,  Node: file-desc,  Next: file-ext,  Prev: file,  Up: Specific header arguments
-
-14.8.2.4 ‘:file-desc’
-.....................
-
-A description of the results file.  Org uses this description for the
-link (see *note Link format::) it inserts in the Org file.  If the
-‘:file-desc’ has no value, Org will use file name for both the “link”
-and the “description” portion of the Org mode link.
-
-
-File: org,  Node: file-ext,  Next: output-dir,  Prev: file-desc,  Up: Specific header arguments
-
-14.8.2.5 ‘:file-ext’
-....................
-
-File name extension for the output file.  Org generates the file’s
-complete name, and extension by combining ‘:file-ext’, ‘#+NAME:’ of the
-source block, and the *note output-dir:: header argument.  To override
-this auto generated file name, use the ‘:file’ header argument.
-
-
-File: org,  Node: output-dir,  Next: dir,  Prev: file-ext,  Up: Specific header arguments
-
-14.8.2.6 ‘:output-dir’
-......................
-
-Specifies the ‘:output-dir’ for the results file.  Org accepts an
-absolute path (beginning with ‘/’) or a relative directory (without
-‘/’).  The value can be combined with ‘#+NAME:’ of the source block and
-*note file:: or *note file-ext:: header arguments.
-
-
-File: org,  Node: dir,  Next: exports,  Prev: output-dir,  Up: Specific header arguments
-
-14.8.2.7 ‘:dir’ and remote execution
-....................................
-
-While the ‘:file’ header argument can be used to specify the path to the
-output file, ‘:dir’ specifies the default directory during ‘src’ code
-block execution.  If it is absent, then the directory associated with
-the current buffer is used.  In other words, supplying ‘:dir path’
-temporarily has the same effect as changing the current directory with
-‘M-x cd path <RET>’, and then not supplying ‘:dir’.  Under the surface,
-‘:dir’ simply sets the value of the Emacs variable ‘default-directory’.
-
-   When using ‘:dir’, relative paths (for example, ‘:file myfile.jpg’ or
-‘:file results/myfile.jpg’) become relative to the default directory.
-
-   For example, to save the plot file in the ‘Work’ folder of the home
-directory (notice tilde is expanded):
-
-     #+BEGIN_SRC R :file myplot.png :dir ~/Work
-     matplot(matrix(rnorm(100), 10), type="l")
-     #+END_SRC
-
-Remote execution
-................
-
-To evaluate the ‘src’ code block on a remote machine, supply a remote s
-directory name using ‘Tramp’ syntax.  For example:
-
-     #+BEGIN_SRC R :file plot.png :dir /scp:dand@yakuba.princeton.edu:
-     plot(1:10, main=system("hostname", intern=TRUE))
-     #+END_SRC
-
-   Org first captures the text results as usual for insertion in the Org
-file.  Then Org also inserts a link to the remote file, thanks to Emacs
-‘Tramp’.  Org constructs the remote path to the file name from ‘:dir’
-and ‘default-directory’, as illustrated here:
-
-     [[file:/scp:dand@yakuba.princeton.edu:/home/dand/plot.png][plot.png]]
-
-Some more warnings
-..................
-
-   • When ‘:dir’ is used with ‘:session’, Org sets the starting
-     directory for a new session.  But Org will not alter the directory
-     of an already existing session.
-   • Do not use ‘:dir’ with ‘:exports results’ or with ‘:exports both’
-     to avoid Org inserting incorrect links to remote files.  That is
-     because Org does not expand ‘default directory’ to avoid some
-     underlying portability issues.
-
-
-File: org,  Node: exports,  Next: tangle,  Prev: dir,  Up: Specific header arguments
-
-14.8.2.8 ‘:exports’
-...................
-
-The ‘:exports’ header argument is to specify if that part of the Org
-file is exported to, say, HTML or LaTeX formats.  Note that ‘:exports’
-affects only ‘src’ code blocks and not inline code.
-
-   • ‘code’ The default.  The body of code is included into the exported
-     file.  Example: ‘:exports code’.
-   • ‘results’ The results of evaluation of the code is included in the
-     exported file.  Example: ‘:exports results’.
-   • ‘both’ Both the code and results of evaluation are included in the
-     exported file.  Example: ‘:exports both’.
-   • ‘none’ Neither the code nor the results of evaluation is included
-     in the exported file.  Whether the code is evaluated at all depends
-     on other options.  Example: ‘:exports none’.
-
-
-File: org,  Node: tangle,  Next: mkdirp,  Prev: exports,  Up: Specific header arguments
-
-14.8.2.9 ‘:tangle’
-..................
-
-The ‘:tangle’ header argument specifies if the ‘src’ code block is
-exported to source file(s).
-
-   • ‘tangle’ Export the ‘src’ code block to source file.  The file name
-     for the source file is derived from the name of the Org file, and
-     the file extension is derived from the source code language
-     identifier.  Example: ‘:tangle yes’.
-   • ‘no’ The default.  Do not extract the code a source code file.
-     Example: ‘:tangle no’.
-   • other Export the ‘src’ code block to source file whose file name is
-     derived from any string passed to the ‘:tangle’ header argument.
-     Org derives the file name as being relative to the directory of the
-     Org file’s location.  Example: ‘:tangle path’.
-
-
-File: org,  Node: mkdirp,  Next: comments,  Prev: tangle,  Up: Specific header arguments
-
-14.8.2.10 ‘:mkdirp’
-...................
-
-The ‘:mkdirp’ header argument creates parent directories for tangled
-files if the directory does not exist.  ‘yes’ enables directory creation
-and ‘no’ inhibits directory creation.
-
-
-File: org,  Node: comments,  Next: padline,  Prev: mkdirp,  Up: Specific header arguments
-
-14.8.2.11 ‘:comments’
-.....................
-
-Controls inserting comments into tangled files.  These are above and
-beyond whatever comments may already exist in the ‘src’ code block.
-
-   • ‘no’ The default.  Do not insert any extra comments during
-     tangling.
-   • ‘link’ Wrap the ‘src’ code block in comments.  Include links
-     pointing back to the place in the Org file from where the code was
-     tangled.
-   • ‘yes’ Kept for backward compatibility; same as “link”.
-   • ‘org’ Nearest headline text from Org file is inserted as comment.
-     The exact text that is inserted is picked from the leading context
-     of the source block.
-   • ‘both’ Includes both “link” and “org” comment options.
-   • ‘noweb’ Includes “link” comment option, expands noweb references,
-     and wraps them in link comments inside the body of the ‘src’ code
-     block.
-
-
-File: org,  Node: padline,  Next: no-expand,  Prev: comments,  Up: Specific header arguments
-
-14.8.2.12 ‘:padline’
-....................
-
-Control insertion of newlines to pad ‘src’ code blocks in the tangled
-file.
-   • ‘yes’ Default.  Insert a newline before and after each ‘src’ code
-     block in the tangled file.
-   • ‘no’ Do not insert newlines to pad the tangled ‘src’ code blocks.
-
-
-File: org,  Node: no-expand,  Next: session,  Prev: padline,  Up: Specific header arguments
-
-14.8.2.13 ‘:no-expand’
-......................
-
-By default Org expands ‘src’ code blocks during tangling.  The
-‘:no-expand’ header argument turns off such expansions.  Note that one
-side-effect of expansion by ‘org-babel-expand-src-block’ also assigns
-values to ‘:var’ (*note var::) variables.  Expansions also replace Noweb
-references with their targets (*note Noweb reference syntax::).  Some of
-these expansions may cause premature assignment, hence this option.
-This option makes a difference only for tangling.  It has no effect when
-exporting since ‘src’ code blocks for execution have to be expanded
-anyway.
-
-
-File: org,  Node: session,  Next: noweb,  Prev: no-expand,  Up: Specific header arguments
-
-14.8.2.14 ‘:session’
-....................
-
-The ‘:session’ header argument is for running multiple source code
-blocks under one session.  Org runs ‘src’ code blocks with the same
-session name in the same interpreter process.
-
-   • ‘none’ Default.  Each ‘src’ code block gets a new interpreter
-     process to execute.  The process terminates once the block is
-     evaluated.
-   • ‘other’ Any string besides ‘none’ turns that string into the name
-     of that session.  For example, ‘:session mysession’ names it
-     ‘mysession’.  If ‘:session’ has no argument, then the session name
-     is derived from the source language identifier.  Subsequent blocks
-     with the same source code language use the same session.  Depending
-     on the language, state variables, code from other blocks, and the
-     overall interpreted environment may be shared.  Some interpreted
-     languages support concurrent sessions when subsequent source code
-     language blocks change session names.
-
-
-File: org,  Node: noweb,  Next: noweb-ref,  Prev: session,  Up: Specific header arguments
-
-14.8.2.15 ‘:noweb’
-..................
-
-The ‘:noweb’ header argument controls expansion of Noweb syntax
-references (*note Noweb reference syntax::).  Expansions occur when
-source code blocks are evaluated, tangled, or exported.
-
-   • ‘no’ Default.  No expansion of Noweb syntax references in the body
-     of the code when evaluating, tangling, or exporting.
-   • ‘yes’ Expansion of Noweb syntax references in the body of the ‘src’
-     code block when evaluating, tangling, or exporting.
-   • ‘tangle’ Expansion of Noweb syntax references in the body of the
-     ‘src’ code block when tangling.  No expansion when evaluating or
-     exporting.
-   • ‘no-export’ Expansion of Noweb syntax references in the body of the
-     ‘src’ code block when evaluating or tangling.  No expansion when
-     exporting.
-   • ‘strip-export’ Expansion of Noweb syntax references in the body of
-     the ‘src’ code block when expanding prior to evaluating or
-     tangling.  Removes Noweb syntax references when exporting.
-   • ‘eval’ Expansion of Noweb syntax references in the body of the
-     ‘src’ code block only before evaluating.
-
-Noweb prefix lines
-..................
-
-Noweb insertions now honor prefix characters that appear before the
-Noweb syntax reference.
-
-   This behavior is illustrated in the following example.  Because the
-‘<<example>>’ noweb reference appears behind the SQL comment syntax,
-each line of the expanded noweb reference will be commented.
-
-   With:
-
-     #+NAME: example
-     #+BEGIN_SRC text
-     this is the
-     multi-line body of example
-     #+END_SRC
-
-   this ‘src’ code block:
-
-     #+BEGIN_SRC sql :noweb yes
-     -- <<example>>
-     #+END_SRC
-
-   expands to:
-
-     -- this is the
-     -- multi-line body of example
-
-   Since this change will not affect noweb replacement text without
-newlines in them, inline noweb references are acceptable.
-
-   This feature can also be used for management of indentation in
-exported code snippets.
-
-   With:
-
-     #+NAME: if-true
-     #+BEGIN_SRC python :exports none
-     print('Do things when True')
-     #+END_SRC
-
-     #+NAME: if-false
-     #+BEGIN_SRC python :exports none
-     print('Do things when False')
-     #+END_SRC
-
-   this ‘src’ code block:
-
-     #+BEGIN_SRC python :noweb yes :results output
-     if True:
-         <<if-true>>
-     else:
-         <<if-false>>
-     #+END_SRC
-
-   expands to:
-
-     if True:
-         print('Do things when True')
-     else:
-         print('Do things when False')
-
-   and evaluates to:
-
-     Do things when True
-
-
-File: org,  Node: noweb-ref,  Next: noweb-sep,  Prev: noweb,  Up: Specific header arguments
-
-14.8.2.16 ‘:noweb-ref’
-......................
-
-When expanding Noweb style references, Org concatenates ‘src’ code
-blocks by matching the reference name to either the code block name or
-the ‘:noweb-ref’ header argument.
-
-   For simple concatenation, set this ‘:noweb-ref’ header argument at
-the sub-tree or file level.  In the example Org file shown next, the
-body of the source code in each block is extracted for concatenation to
-a pure code file when tangled.
-
-      #+BEGIN_SRC sh :tangle yes :noweb yes :shebang #!/bin/sh
-        <<fullest-disk>>
-      #+END_SRC
-      * the mount point of the fullest disk
-        :PROPERTIES:
-        :header-args: :noweb-ref fullest-disk
-        :END:
-
-      ** query all mounted disks
-      #+BEGIN_SRC sh
-        df \
-      #+END_SRC
-
-      ** strip the header row
-      #+BEGIN_SRC sh
-        |sed '1d' \
-      #+END_SRC
-
-      ** output mount point of fullest disk
-      #+BEGIN_SRC sh
-        |awk '{if (u < +$5) {u = +$5; m = $6}} END {print m}'
-      #+END_SRC
-
-
-File: org,  Node: noweb-sep,  Next: cache,  Prev: noweb-ref,  Up: Specific header arguments
-
-14.8.2.17 ‘:noweb-sep’
-......................
-
-By default a newline separates each noweb reference concatenation.  To
-change this newline separator, edit the ‘:noweb-sep’ (*note noweb-sep::)
-header argument.
-
-
-File: org,  Node: cache,  Next: sep,  Prev: noweb-sep,  Up: Specific header arguments
-
-14.8.2.18 ‘:cache’
-..................
-
-The ‘:cache’ header argument is for caching results of evaluating code
-blocks.  Caching results can avoid re-evaluating ‘src’ code blocks that
-have not changed since the previous run.  To benefit from the cache and
-avoid redundant evaluations, the source block must have a result already
-present in the buffer, and neither the header arguments (including the
-value of ‘:var’ references) nor the text of the block itself has changed
-since the result was last computed.  This feature greatly helps avoid
-long-running calculations.  For some edge cases, however, the cached
-results may not be reliable.
-
-   The caching feature is best for when ‘src’ blocks are pure functions,
-that is functions that return the same value for the same input
-arguments (*note var::), and that do not have side effects, and do not
-rely on external variables other than the input arguments.  Functions
-that depend on a timer, file system objects, and random number
-generators are clearly unsuitable for caching.
-
-   A note of warning: when ‘:cache’ is used for a ‘:session’, caching
-may cause unexpected results.
-
-   When the caching mechanism tests for any source code changes, it will
-not expand Noweb style references (*note Noweb reference syntax::).  For
-reasons why, see <http://thread.gmane.org/gmane.emacs.orgmode/79046>.
-
-   The ‘:cache’ header argument can have one of two values: ‘yes’ or
-‘no’.
-
-   • ‘no’ Default.  No caching of results; ‘src’ code block evaluated
-     every time.
-   • ‘yes’ Whether to run the code or return the cached results is
-     determined by comparing the SHA1 hash value of the combined ‘src’
-     code block and arguments passed to it.  This hash value is packed
-     on the ‘#+RESULTS:’ line from previous evaluation.  When hash
-     values match, Org does not evaluate the ‘src’ code block.  When
-     hash values mismatch, Org evaluates the ‘src’ code block, inserts
-     the results, recalculates the hash value, and updates ‘#+RESULTS:’
-     line.
-
-   In this example, both functions are cached.  But ‘caller’ runs only
-if the result from ‘random’ has changed since the last run.
-
-      #+NAME: random
-      #+BEGIN_SRC R :cache yes
-      runif(1)
-      #+END_SRC
-
-      #+RESULTS[a2a72cd647ad44515fab62e144796432793d68e1]: random
-      0.4659510825295
-
-      #+NAME: caller
-      #+BEGIN_SRC emacs-lisp :var x=random :cache yes
-      x
-      #+END_SRC
-
-      #+RESULTS[bec9c8724e397d5df3b696502df3ed7892fc4f5f]: caller
-      0.254227238707244
-
-
-File: org,  Node: sep,  Next: hlines,  Prev: cache,  Up: Specific header arguments
-
-14.8.2.19 ‘:sep’
-................
-
-The ‘:sep’ header argument is the delimiter for saving results as tables
-to files (*note file::) external to Org mode.  Org defaults to tab
-delimited output.  The function, ‘org-open-at-point’, which is bound to
-‘C-c C-o’, also uses ‘:sep’ for opening tabular results.
-
-
-File: org,  Node: hlines,  Next: colnames,  Prev: sep,  Up: Specific header arguments
-
-14.8.2.20 ‘:hlines’
-...................
-
-In-between each table row or below the table headings, sometimes results
-have horizontal lines, which are also known as hlines.  The ‘:hlines’
-argument with the value ‘yes’ accepts such lines.  The default is ‘no’.
-
-   • ‘no’ Strips horizontal lines from the input table.  For most code,
-     this is desirable, or else those ‘hline’ symbols raise unbound
-     variable errors.
-
-     The default is ‘:hlines no’.  The example shows hlines removed from
-     the input table.
-
-          #+NAME: many-cols
-          | a | b | c |
-          |---+---+---|
-          | d | e | f |
-          |---+---+---|
-          | g | h | i |
-
-          #+NAME: echo-table
-          #+BEGIN_SRC python :var tab=many-cols
-            return tab
-          #+END_SRC
-
-          #+RESULTS: echo-table
-          | a | b | c |
-          | d | e | f |
-          | g | h | i |
-
-   • ‘yes’ For ‘:hlines yes’, the example shows hlines unchanged.
-
-          #+NAME: many-cols
-          | a | b | c |
-          |---+---+---|
-          | d | e | f |
-          |---+---+---|
-          | g | h | i |
-
-          #+NAME: echo-table
-          #+BEGIN_SRC python :var tab=many-cols :hlines yes
-            return tab
-          #+END_SRC
-
-          #+RESULTS: echo-table
-          | a | b | c |
-          |---+---+---|
-          | d | e | f |
-          |---+---+---|
-          | g | h | i |
-
-
-File: org,  Node: colnames,  Next: rownames,  Prev: hlines,  Up: Specific header arguments
-
-14.8.2.21 ‘:colnames’
-.....................
-
-The ‘:colnames’ header argument accepts ‘yes’, ‘no’, or ‘nil’ values.
-The default value is ‘nil’, which is unassigned.  But this header
-argument behaves differently depending on the source code language.
-
-   • ‘nil’ If an input table has column names (because the second row is
-     an hline), then Org removes the column names, processes the table,
-     puts back the column names, and then writes the table to the
-     results block.
-
-          #+NAME: less-cols
-          | a |
-          |---|
-          | b |
-          | c |
-
-          #+NAME: echo-table-again
-          #+BEGIN_SRC python :var tab=less-cols
-            return [[val + '*' for val in row] for row in tab]
-          #+END_SRC
-
-          #+RESULTS: echo-table-again
-          | a  |
-          |----|
-          | b* |
-          | c* |
-
-     Note that column names have to accounted for when using variable
-     indexing (*note Indexable variable values: var.) because column
-     names are not removed for indexing.
-
-   • ‘no’ Do not pre-process column names.
-
-   • ‘yes’ For an input table that has no hlines, process it like the
-     ‘nil’ value.  That is, Org removes the column names, processes the
-     table, puts back the column names, and then writes the table to the
-     results block.
-
-
-File: org,  Node: rownames,  Next: shebang,  Prev: colnames,  Up: Specific header arguments
-
-14.8.2.22 ‘:rownames’
-.....................
-
-The ‘:rownames’ header argument can take on values ‘yes’ or ‘no’ values.
-The default is ‘no’.  Note that ‘emacs-lisp’ code blocks ignore
-‘:rownames’ header argument because of the ease of table-handling in
-Emacs.
-
-   • ‘no’ Org will not pre-process row names.
-
-   • ‘yes’ If an input table has row names, then Org removes the row
-     names, processes the table, puts back the row names, and then
-     writes the table to the results block.
-
-          #+NAME: with-rownames
-          | one | 1 | 2 | 3 | 4 |  5 |
-          | two | 6 | 7 | 8 | 9 | 10 |
-
-          #+NAME: echo-table-once-again
-          #+BEGIN_SRC python :var tab=with-rownames :rownames yes
-            return [[val + 10 for val in row] for row in tab]
-          #+END_SRC
-
-          #+RESULTS: echo-table-once-again
-          | one | 11 | 12 | 13 | 14 | 15 |
-          | two | 16 | 17 | 18 | 19 | 20 |
-
-     Note that row names have to accounted for when using variable
-     indexing (*note Indexable variable values: var.) because row names
-     are not removed for indexing.
-
-
-File: org,  Node: shebang,  Next: tangle-mode,  Prev: rownames,  Up: Specific header arguments
-
-14.8.2.23 ‘:shebang’
-....................
-
-This header argument can turn results into executable script files.  By
-setting the ‘:shebang’ header argument to a string value (for example,
-‘:shebang "#!/bin/bash"’), Org inserts that string as the first line of
-the tangled file that the ‘src’ code block is extracted to.  Org then
-turns on the tangled file’s executable permission.
-
-
-File: org,  Node: tangle-mode,  Next: eval,  Prev: shebang,  Up: Specific header arguments
-
-14.8.2.24 ‘:tangle-mode’
-........................
-
-The ‘tangle-mode’ header argument specifies what permissions to set for
-tangled files by ‘set-file-modes’.  For example, to make read-only
-tangled file, use ‘:tangle-mode (identity #o444)’.  To make it
-executable, use ‘:tangle-mode (identity #o755)’.
-
-   On ‘src’ code blocks with ‘shebang’ (*note shebang::) header
-argument, Org will automatically set the tangled file to executable
-permissions.  But this can be overridden with custom permissions using
-‘tangle-mode’ header argument.
-
-   When multiple ‘src’ code blocks tangle to a single file with
-different and conflicting ‘tangle-mode’ header arguments, Org’s behavior
-is undefined.
-
-
-File: org,  Node: eval,  Next: wrap,  Prev: tangle-mode,  Up: Specific header arguments
-
-14.8.2.25 ‘:eval’
-.................
-
-The ‘:eval’ header argument can limit evaluation of specific code
-blocks.  It is useful for protection against evaluating untrusted ‘src’
-code blocks by prompting for a confirmation.  This protection is
-independent of the ‘org-confirm-babel-evaluate’ setting.
-
-‘never or no’
-     Org will never evaluate this ‘src’ code block.
-‘query’
-     Org prompts the user for permission to evaluate this ‘src’ code
-     block.
-‘never-export or no-export’
-     Org will not evaluate this ‘src’ code block when exporting, yet the
-     user can evaluate this source block interactively.
-‘query-export’
-     Org prompts the user for permission to export this ‘src’ code
-     block.
-
-   If ‘:eval’ header argument is not set for a source block, then Org
-determines whether to evaluate from the ‘org-confirm-babel-evaluate’
-variable (*note Code evaluation security::).
-
-
-File: org,  Node: wrap,  Next: post,  Prev: eval,  Up: Specific header arguments
-
-14.8.2.26 ‘:wrap’
-.................
-
-The ‘:wrap’ header argument marks the results block by appending strings
-to ‘#+BEGIN_’ and ‘#+END_’.  If no string is specified, Org wraps the
-results in a ‘#+BEGIN/END_RESULTS’ block.
-
-
-File: org,  Node: post,  Next: prologue,  Prev: wrap,  Up: Specific header arguments
-
-14.8.2.27 ‘:post’
-.................
-
-The ‘:post’ header argument is for post-processing results from ‘src’
-block evaluation.  When ‘:post’ has any value, Org binds the results to
-‘*this*’ variable for easy passing to *note var:: header argument
-specifications.  That makes results available to other ‘src’ code
-blocks, or for even direct Emacs Lisp code execution.
-
-   The following two examples illustrate ‘:post’ header argument in
-action.  The first one shows how to attach ‘#+ATTR_LATEX:’ line using
-‘:post’.
-
-     #+name: attr_wrap
-     #+begin_src sh :var data="" :var width="\\textwidth" :results output
-       echo "#+ATTR_LATEX: :width $width"
-       echo "$data"
-     #+end_src
-
-     #+header: :file /tmp/it.png
-     #+begin_src dot :post attr_wrap(width="5cm", data=*this*) :results drawer
-       digraph{
-               a -> b;
-               b -> c;
-               c -> a;
-       }
-     #+end_src
-
-     #+RESULTS:
-     :RESULTS:
-     #+ATTR_LATEX :width 5cm
-     [[file:/tmp/it.png]]
-     :END:
-
-   The second example shows use of ‘:colnames’ in ‘:post’ to pass data
-between ‘src’ code blocks.
-
-     #+name: round-tbl
-     #+begin_src emacs-lisp :var tbl="" fmt="%.3f"
-       (mapcar (lambda (row)
-                 (mapcar (lambda (cell)
-                           (if (numberp cell)
-                               (format fmt cell)
-                             cell))
-                         row))
-               tbl)
-     #+end_src
-
-     #+begin_src R :colnames yes :post round-tbl[:colnames yes](*this*)
-     set.seed(42)
-     data.frame(foo=rnorm(1))
-     #+end_src
-
-     #+RESULTS:
-     |   foo |
-     |-------|
-     | 1.371 |
-
-
-File: org,  Node: prologue,  Next: epilogue,  Prev: post,  Up: Specific header arguments
-
-14.8.2.28 ‘:prologue’
-.....................
-
-The ‘prologue’ header argument is for appending to the top of the code
-block for execution.  For example, a clear or reset code at the start of
-new execution of a ‘src’ code block.  A ‘reset’ for ‘gnuplot’:
-‘:prologue "reset"’.  See also *note epilogue::.
-
-     (add-to-list 'org-babel-default-header-args:gnuplot
-                  '((:prologue . "reset")))
-
-
-File: org,  Node: epilogue,  Prev: prologue,  Up: Specific header arguments
-
-14.8.2.29 ‘:epilogue’
-.....................
-
-The value of the ‘epilogue’ header argument is for appending to the end
-of the code block for execution.  See also *note prologue::.
-
-
-File: org,  Node: Results of evaluation,  Next: Noweb reference syntax,  Prev: Header arguments,  Up: Working with source code
-
-14.9 Results of evaluation
-==========================
-
-How Org handles results of a code block execution depends on many header
-arguments working together.  Here is only a summary of these.  For an
-enumeration of all the header arguments that affect results, see *note
-results::.
-
-   The primary determinant is the execution context.  Is it in a
-‘:session’ or not?  Orthogonal to that is if the expected result is a
-‘:results value’ or ‘:results output’, which is a concatenation of
-output from start to finish of the ‘src’ code block’s evaluation.
-
-                    Non-session              Session
-‘:results value’    value of last            value of last expression
-                    expression
-‘:results output’   contents of STDOUT       concatenation of interpreter
-                                             output
-
-   For ‘:session’ and non-session, the ‘:results value’ turns the
-results into an Org mode table format.  Single values are wrapped in a
-one dimensional vector.  Rows and columns of a table are wrapped in a
-two-dimensional vector.
-
-14.9.1 Non-session
-------------------
-
-14.9.1.1 ‘:results value’
-.........................
-
-Default.  Org gets the value by wrapping the code in a function
-definition in the language of the ‘src’ block.  That is why when using
-‘:results value’, code should execute like a function and return a
-value.  For languages like Python, an explicit ‘return’ statement is
-mandatory when using ‘:results value’.
-
-   This is one of four evaluation contexts where Org automatically wraps
-the code in a function definition.
-
-14.9.1.2 ‘:results output’
-..........................
-
-For ‘:results output’, the code is passed to an external process running
-the interpreter.  Org returns the contents of the standard output stream
-as as text results.
-
-14.9.2 Session
---------------
-
-14.9.2.1 ‘:results value’
-.........................
-
-For ‘:results value’ from a ‘:session’, Org passes the code to an
-interpreter running as an interactive Emacs inferior process.  So only
-languages that provide interactive evaluation can have session support.
-Not all languages provide this support, such as ‘C’ and ‘ditaa’.  Even
-those that do support, such as ‘Python’ and ‘Haskell’, they impose
-limitations on allowable language constructs that can run interactively.
-Org inherits those limitations for those ‘src’ code blocks running in a
-‘:session’.
-
-   Org gets the value from the source code interpreter’s last statement
-output.  Org has to use language-specific methods to obtain the value.
-For example, from the variable ‘_’ in ‘Python’ and ‘Ruby’, and the value
-of ‘.Last.value’ in ‘R’).
-
-14.9.2.2 ‘:results output’
-..........................
-
-For ‘:results output’, Org passes the code to the interpreter running as
-an interactive Emacs inferior process.  Org concatenates whatever text
-output emitted by the interpreter to return the collection as a result.
-Note that this collection is not the same as collected from ‘STDOUT’ of
-a non-interactive interpreter running as an external process.  Compare
-for example these two blocks:
-
-     #+BEGIN_SRC python :results output
-      print "hello"
-      2
-      print "bye"
-     #+END_SRC
-
-     #+RESULTS:
-     : hello
-     : bye
-
-   In the above non-session mode, the “2” is not printed; so does not
-appear in results.
-
-     #+BEGIN_SRC python :results output :session
-      print "hello"
-      2
-      print "bye"
-     #+END_SRC
-
-     #+RESULTS:
-     : hello
-     : 2
-     : bye
-
-   In the above ‘:session’ mode, the interactive interpreter receives
-and prints “2”.  Results show that.
-
-
-File: org,  Node: Noweb reference syntax,  Next: Key bindings and useful functions,  Prev: Results of evaluation,  Up: Working with source code
-
-14.10 Noweb reference syntax
-============================
-
-Org supports named blocks in Noweb style syntax.  For Noweb literate
-programming details, see <http://www.cs.tufts.edu/~nr/noweb/>).
-
-     <<code-block-name>>
-
-   For the header argument ‘:noweb yes’, Org expands Noweb style
-references in the ‘src’ code block before evaluation.
-
-   For the header argument ‘:noweb no’, Org does not expand Noweb style
-references in the ‘src’ code block before evaluation.
-
-   The default is ‘:noweb no’.  Org defaults to ‘:noweb no’ so as not to
-cause errors in languages where Noweb syntax is ambiguous.  Change Org’s
-default to ‘:noweb yes’ for languages where there is no risk of
-confusion.
-
-   Org offers a more flexible way to resolve Noweb style references
-(*note noweb-ref::).
-
-   Org can include the _results_ of a code block rather than its body.
-To that effect, append parentheses, possibly including arguments, to the
-code block name, as show below.
-
-     <<code-block-name(optional arguments)>>
-
-   Note that when using the above approach to a code block’s results,
-the code block name set by ‘#+NAME’ keyword is required; the reference
-set by ‘:noweb-ref’ will not work.
-
-   Here is an example that demonstrates how the exported content changes
-when Noweb style references are used with parentheses versus without.
-
-   With:
-
-     #+NAME: some-code
-     #+BEGIN_SRC python :var num=0 :results output :exports none
-     print(num*10)
-     #+END_SRC
-
-   this code block:
-
-     #+BEGIN_SRC text :noweb yes
-     <<some-code>>
-     #+END_SRC
-
-   expands to:
-
-     print(num*10)
-
-   Below, a similar Noweb style reference is used, but with parentheses,
-while setting a variable ‘num’ to 10:
-
-     #+BEGIN_SRC text :noweb yes
-     <<some-code(num=10)>>
-     #+END_SRC
-
-   Note that now the expansion contains the _results_ of the code block
-‘some-code’, not the code block itself:
-
-     100
-
-   For faster tangling of large Org mode files, set
-‘org-babel-use-quick-and-dirty-noweb-expansion’ variable to ‘t’.  The
-speedup comes at the expense of not correctly resolving inherited values
-of the ‘:noweb-ref’ header argument.
-
-
-File: org,  Node: Key bindings and useful functions,  Next: Batch execution,  Prev: Noweb reference syntax,  Up: Working with source code
-
-14.11 Key bindings and useful functions
-=======================================
-
-Many common Org mode key sequences are re-bound depending on the
-context.
-
-   Active key bindings in code blocks:
-
-‘C-c C-c’          ‘org-babel-execute-src-block’
-‘C-c C-o’          ‘org-babel-open-src-block-result’
-‘M-<UP>’           ‘org-babel-load-in-session’
-‘M-<DOWN>’         ‘org-babel-switch-to-session’
-
-   Active key bindings in Org mode buffer:
-
-‘C-c C-v p’   or   ‘C-c C-v C-p’     ‘org-babel-previous-src-block’
-‘C-c C-v n’   or   ‘C-c C-v C-n’     ‘org-babel-next-src-block’
-‘C-c C-v e’   or   ‘C-c C-v C-e’     ‘org-babel-execute-maybe’
-‘C-c C-v o’   or   ‘C-c C-v C-o’     ‘org-babel-open-src-block-result’
-‘C-c C-v v’   or   ‘C-c C-v C-v’     ‘org-babel-expand-src-block’
-‘C-c C-v u’   or   ‘C-c C-v C-u’     ‘org-babel-goto-src-block-head’
-‘C-c C-v g’   or   ‘C-c C-v C-g’     ‘org-babel-goto-named-src-block’
-‘C-c C-v r’   or   ‘C-c C-v C-r’     ‘org-babel-goto-named-result’
-‘C-c C-v b’   or   ‘C-c C-v C-b’     ‘org-babel-execute-buffer’
-‘C-c C-v s’   or   ‘C-c C-v C-s’     ‘org-babel-execute-subtree’
-‘C-c C-v d’   or   ‘C-c C-v C-d’     ‘org-babel-demarcate-block’
-‘C-c C-v t’   or   ‘C-c C-v C-t’     ‘org-babel-tangle’
-‘C-c C-v f’   or   ‘C-c C-v C-f’     ‘org-babel-tangle-file’
-‘C-c C-v c’   or   ‘C-c C-v C-c’     ‘org-babel-check-src-block’
-‘C-c C-v j’   or   ‘C-c C-v C-j’     ‘org-babel-insert-header-arg’
-‘C-c C-v l’   or   ‘C-c C-v C-l’     ‘org-babel-load-in-session’
-‘C-c C-v i’   or   ‘C-c C-v C-i’     ‘org-babel-lob-ingest’
-‘C-c C-v I’   or   ‘C-c C-v C-I’     ‘org-babel-view-src-block-info’
-‘C-c C-v z’   or   ‘C-c C-v C-z’     ‘org-babel-switch-to-session-with-code’
-‘C-c C-v a’   or   ‘C-c C-v C-a’     ‘org-babel-sha1-hash’
-‘C-c C-v h’   or   ‘C-c C-v C-h’     ‘org-babel-describe-bindings’
-‘C-c C-v x’   or   ‘C-c C-v C-x’     ‘org-babel-do-key-sequence-in-edit-buffer’
-
-
-File: org,  Node: Batch execution,  Prev: Key bindings and useful functions,  Up: Working with source code
-
-14.12 Batch execution
-=====================
-
-Org mode features, including working with source code facilities can be
-invoked from the command line.  This enables building shell scripts for
-batch processing, running automated system tasks, and expanding Org
-mode’s usefulness.
-
-   The sample script shows batch processing of multiple files using
-‘org-babel-tangle’.
-
-     #!/bin/sh
-     # tangle files with org-mode
-     #
-     emacs -Q --batch --eval "
-         (progn
-           (require 'ob-tangle)
-           (dolist (file command-line-args-left)
-             (with-current-buffer (find-file-noselect file)
-               (org-babel-tangle))))
-       " "$@"
-
-
-File: org,  Node: Miscellaneous,  Next: Hacking,  Prev: Working with source code,  Up: Top
-
-15 Miscellaneous
-****************
-
-* Menu:
-
-* Completion::                  M-<TAB> guesses completions
-* Easy templates::              Quick insertion of structural elements
-* Speed keys::                  Electric commands at the beginning of a headline
-* Code evaluation security::    Org mode files evaluate inline code
-* Customization::               Adapting Org to changing tastes
-* In-buffer settings::          Overview of the ‘#+KEYWORDS’
-* The very busy C-c C-c key::   When in doubt, press C-c C-c
-* Clean view::                  Getting rid of leading stars in the outline
-* TTY keys::                    Using Org on a tty
-* Interaction::                 With other Emacs packages
-* org-crypt::                   Encrypting Org files
-
-
-File: org,  Node: Completion,  Next: Easy templates,  Up: Miscellaneous
-
-15.1 Completion
-===============
-
-Org has in-buffer completions.  Unlike minibuffer completions, which are
-useful for quick command interactions, Org’s in-buffer completions are
-more suitable for content creation in Org documents.  Type one or more
-letters and invoke the hot key to complete the text in-place.  Depending
-on the context and the keys, Org will offer different types of
-completions.  No minibuffer is involved.  Such mode-specific hot keys
-have become an integral part of Emacs and Org provides several
-shortcuts.
-
-‘M-<TAB>’
-     Complete word at point
-        • At the beginning of a headline, complete TODO keywords.
-        • After ‘\’, complete TeX symbols supported by the exporter.
-        • After ‘*’, complete headlines in the current buffer so that
-          they can be used in search links like ‘[[*find this
-          headline]]’.
-        • After ‘:’ in a headline, complete tags.  The list of tags is
-          taken from the variable ‘org-tag-alist’ (possibly set through
-          the ‘#+TAGS’ in-buffer option, *note Setting tags::), or it is
-          created dynamically from all tags used in the current buffer.
-        • After ‘:’ and not in a headline, complete property keys.  The
-          list of keys is constructed dynamically from all keys used in
-          the current buffer.
-        • After ‘[’, complete link abbreviations (*note Link
-          abbreviations::).
-        • After ‘#+’, complete the special keywords like ‘TYP_TODO’ or
-          file-specific ‘OPTIONS’.  After option keyword is complete,
-          pressing ‘M-<TAB>’ again will insert example settings for that
-          option.
-        • After ‘#+STARTUP:’, complete startup keywords.
-        • When the point is anywhere else, complete dictionary words
-          using Ispell.
-     If your desktop intercepts the combo ‘M-<TAB>’ to switch windows,
-     use ‘C-M-i’ or ‘<ESC> <TAB>’ as an alternative or customize your
-     environment.
-
-
-File: org,  Node: Easy templates,  Next: Speed keys,  Prev: Completion,  Up: Miscellaneous
-
-15.2 Easy templates
-===================
-
-With just a few keystrokes, Org’s easy templates inserts empty pairs of
-structural elements, such as ‘#+BEGIN_SRC’ and ‘#+END_SRC’.  Easy
-templates use an expansion mechanism, which is native to Org, in a
-process similar to ‘yasnippet’ and other Emacs template expansion
-packages.
-
-   ‘<’ ‘s’ ‘<TAB>’ expands to a ‘src’ code block.
-
-   ‘<’ ‘l’ ‘<TAB>’ expands to:
-
-   #+BEGIN_EXPORT latex
-
-   #+END_EXPORT
-
-   Org comes with these pre-defined easy templates:
-
-‘s’     ‘#+BEGIN_SRC ... #+END_SRC’
-‘e’     ‘#+BEGIN_EXAMPLE ... #+END_EXAMPLE’
-‘q’     ‘#+BEGIN_QUOTE ... #+END_QUOTE’
-‘v’     ‘#+BEGIN_VERSE ... #+END_VERSE’
-‘c’     ‘#+BEGIN_CENTER ... #+END_CENTER’
-‘C’     ‘#+BEGIN_COMMENT ... #+END_COMMENT’
-‘l’     ‘#+BEGIN_EXPORT latex ... #+END_EXPORT’
-‘L’     ‘#+LATEX:’
-‘h’     ‘#+BEGIN_EXPORT html ... #+END_EXPORT’
-‘H’     ‘#+HTML:’
-‘a’     ‘#+BEGIN_EXPORT ascii ... #+END_EXPORT’
-‘A’     ‘#+ASCII:’
-‘i’     ‘#+INDEX:’ line
-‘I’     ‘#+INCLUDE:’ line
-
-   More templates can added by customizing the variable
-‘org-structure-template-alist’, whose docstring has additional details.
-
-
-File: org,  Node: Speed keys,  Next: Code evaluation security,  Prev: Easy templates,  Up: Miscellaneous
-
-15.3 Speed keys
-===============
-
-Single keystrokes can execute custom commands in an Org file when the
-cursor is on a headline.  Without the extra burden of a meta or modifier
-key, Speed Keys can speed navigation or execute custom commands.
-Besides faster navigation, Speed Keys may come in handy on small mobile
-devices that do not have full keyboards.  Speed Keys may also work on
-TTY devices known for their problems when entering Emacs keychords.
-
-   By default, Org has Speed Keys disabled.  To activate Speed Keys, set
-the variable ‘org-use-speed-commands’ to a non-‘nil’ value.  To trigger
-a Speed Key, the cursor must be at the beginning of an Org headline,
-before any of the stars.
-
-   Org comes with a pre-defined list of Speed Keys.  To add or modify
-Speed Keys, customize the variable, ‘org-speed-commands-user’.  For more
-details, see the variable’s docstring.  With Speed Keys activated, ‘M-x
-org-speed-command-help’, or ‘?’ when cursor is at the beginning of an
-Org headline, shows currently active Speed Keys, including the
-user-defined ones.
-
-
-File: org,  Node: Code evaluation security,  Next: Customization,  Prev: Speed keys,  Up: Miscellaneous
-
-15.4 Code evaluation and security issues
-========================================
-
-Unlike plain text, running code comes with risk.  Each ‘src’ code block,
-in terms of risk, is equivalent to an executable file.  Org therefore
-puts a few confirmation prompts by default.  This is to alert the casual
-user from accidentally running untrusted code.
-
-   For users who do not run code blocks or write code regularly, Org’s
-default settings should suffice.  However, some users may want to tweak
-the prompts for fewer interruptions.  To weigh the risks of automatic
-execution of code blocks, here are some details about code evaluation.
-
-   Org evaluates code in the following circumstances:
-
-Source code blocks
-     Org evaluates ‘src’ code blocks in an Org file during export.  Org
-     also evaluates a ‘src’ code block with the ‘C-c C-c’ key chord.
-     Users exporting or running code blocks must load files only from
-     trusted sources.  Be wary of customizing variables that remove or
-     alter default security measures.
-
-      -- User Option: org-confirm-babel-evaluate
-          When ‘t’, Org prompts the user for confirmation before
-          executing each code block.  When ‘nil’, Org executes code
-          blocks without prompting the user for confirmation.  When this
-          option is set to a custom function, Org invokes the function
-          with these two arguments: the source code language and the
-          body of the code block.  The custom function must return
-          either a ‘t’ or ‘nil’, which determines if the user is
-          prompted.  Each source code language can be handled separately
-          through this function argument.
-
-     For example, this function enables execution of ‘ditaa’ code
-     +blocks without prompting:
-
-          (defun my-org-confirm-babel-evaluate (lang body)
-            (not (string= lang "ditaa")))  ; don't ask for ditaa
-          (setq org-confirm-babel-evaluate 'my-org-confirm-babel-evaluate)
-
-Following ‘shell’ and ‘elisp’ links
-     Org has two link types that can also directly evaluate code (*note
-     External links::).  Because such code is not visible, these links
-     have a potential risk.  Org therefore prompts the user when it
-     encounters such links.  The customization variables are:
-
-      -- User Option: org-confirm-shell-link-function
-          Function that prompts the user before executing a shell link.
-      -- User Option: org-confirm-elisp-link-function
-          Function that prompts the user before executing an Emacs Lisp
-          link.
-
-Formulas in tables
-     Org executes formulas in tables (*note The spreadsheet::) either
-     through the _calc_ or the _Emacs Lisp_ interpreters.
-
-
-File: org,  Node: Customization,  Next: In-buffer settings,  Prev: Code evaluation security,  Up: Miscellaneous
-
-15.5 Customization
-==================
-
-Org has more than 500 variables for customization.  They can be accessed
-through the usual ‘M-x org-customize <RET>’ command.  Or through the Org
-menu, ‘Org->Customization->Browse Org Group’.  Org also has per-file
-settings for some variables (*note In-buffer settings::).
-
-
-File: org,  Node: In-buffer settings,  Next: The very busy C-c C-c key,  Prev: Customization,  Up: Miscellaneous
-
-15.6 Summary of in-buffer settings
-==================================
-
-In-buffer settings start with ‘#+’, followed by a keyword, a colon, and
-then a word for each setting.  Org accepts multiple settings on the same
-line.  Org also accepts multiple lines for a keyword.  This manual
-describes these settings throughout.  A summary follows here.
-
-   ‘C-c C-c’ activates any changes to the in-buffer settings.  Closing
-and reopening the Org file in Emacs also activates the changes.
-
-‘#+ARCHIVE: %s_done::’
-     Sets the archive location of the agenda file.  This location
-     applies to the lines until the next ‘#+ARCHIVE’ line, if any, in
-     the Org file.  The first archive location in the Org file also
-     applies to any entries before it.  The corresponding variable is
-     ‘org-archive-location’.
-‘#+CATEGORY:’
-     Sets the category of the agenda file, which applies to the entire
-     document.
-‘#+COLUMNS: %25ITEM ...’
-     Sets the default format for columns view.  Org uses this format for
-     column views where there is no ‘COLUMNS’ property.
-‘#+CONSTANTS: name1=value1 ...’
-     Set file-local values for constants that table formulas can use.
-     This line sets the local variable
-     ‘org-table-formula-constants-local’.  The global version of this
-     variable is ‘org-table-formula-constants’.
-‘#+FILETAGS: :tag1:tag2:tag3:’
-     Set tags that all entries in the file will inherit from here,
-     including the top-level entries.
-‘#+LINK: linkword replace’
-     Each line specifies one abbreviation for one link.  Use multiple
-     ‘#+LINK:’ lines for more, *note Link abbreviations::.  The
-     corresponding variable is ‘org-link-abbrev-alist’.
-‘#+PRIORITIES: highest lowest default’
-     This line sets the limits and the default for the priorities.  All
-     three must be either letters A–Z or numbers 0–9.  The highest
-     priority must have a lower ASCII number than the lowest priority.
-‘#+PROPERTY: Property_Name Value’
-     This line sets a default inheritance value for entries in the
-     current buffer, most useful for specifying the allowed values of a
-     property.
-‘#+SETUPFILE: file or URL’
-     The setup file or a URL pointing to such file is for additional
-     in-buffer settings.  Org loads this file and parses it for any
-     settings in it only when Org opens the main file.  If URL is
-     specified, the contents are downloaded and stored in a temporary
-     file cache.  ‘C-c C-c’ on the settings line will parse and load the
-     file, and also reset the temporary file cache.  Org also parses and
-     loads the document during normal exporting process.  Org parses the
-     contents of this document as if it was included in the buffer.  It
-     can be another Org file.  To visit the file (not a URL), ‘C-c '’
-     while the cursor is on the line with the file name.
-‘#+STARTUP:’
-     Startup options Org uses when first visiting a file.
-
-     The first set of options deals with the initial visibility of the
-     outline tree.  The corresponding variable for global default
-     settings is ‘org-startup-folded’ with a default value of ‘t’, which
-     is the same as ‘overview’.
-
-          overview         top-level headlines only
-          content          all headlines
-          showall          no folding of any entries
-          showeverything   show even drawer contents
-
-     Dynamic virtual indentation is controlled by the variable
-     ‘org-startup-indented’
-          indent     start with ‘org-indent-mode’ turned on
-          noindent   start with ‘org-indent-mode’ turned off
-
-     Aligns tables consistently upon visiting a file; useful for
-     restoring narrowed table columns.  The corresponding variable is
-     ‘org-startup-align-all-tables’ with ‘nil’ as default value.
-
-          align      align all tables
-          noalign    don’t align tables on startup
-
-     Whether Org should automatically display inline images.  The
-     corresponding variable is ‘org-startup-with-inline-images’, with a
-     default value ‘nil’ to avoid delays when visiting a file.
-          inlineimages   show inline images
-          noinlineimages don’t show inline images on startup
-
-     Whether Org should automatically convert LaTeX fragments to images.
-     The variable ‘org-startup-with-latex-preview’, which controls this
-     setting, is set to ‘nil’ by default to avoid startup delays.
-          latexpreview   preview LaTeX fragments
-          nolatexpreview don’t preview LaTeX fragments
-
-     Logging the closing and reopening of TODO items and clock intervals
-     can be configured using these options (see variables
-     ‘org-log-done’, ‘org-log-note-clock-out’ and ‘org-log-repeat’)
-          logdone             record a timestamp when an item is marked DONE
-          lognotedone         record timestamp and a note when DONE
-          nologdone           don’t record when items are marked DONE
-          logrepeat           record a time when reinstating a repeating item
-          lognoterepeat       record a note when reinstating a repeating item
-          nologrepeat         do not record when reinstating repeating item
-          lognoteclock-out    record a note when clocking out
-          nolognoteclock-out  don’t record a note when clocking out
-          logreschedule       record a timestamp when scheduling time changes
-          lognotereschedule   record a note when scheduling time changes
-          nologreschedule     do not record when a scheduling date changes
-          logredeadline       record a timestamp when deadline changes
-          lognoteredeadline   record a note when deadline changes
-          nologredeadline     do not record when a deadline date changes
-          logrefile           record a timestamp when refiling
-          lognoterefile       record a note when refiling
-          nologrefile         do not record when refiling
-          logdrawer           store log into drawer
-          nologdrawer         store log outside of drawer
-          logstatesreversed   reverse the order of states notes
-          nologstatesreversed do not reverse the order of states notes
-
-     These options hide leading stars in outline headings, and indent
-     outlines.  The corresponding variables are ‘org-hide-leading-stars’
-     and ‘org-odd-levels-only’, both with a default setting of ‘nil’
-     (meaning ‘showstars’ and ‘oddeven’).
-          hidestars  hide all stars on the headline except one.
-          showstars  show all stars on the headline
-          indent     virtual indents according to the outline level
-          noindent   no virtual indents
-          odd        show odd outline levels only (1,3,...)
-          oddeven    show all outline levels
-
-     To turn on custom format overlays over timestamps (variables
-     ‘org-put-time-stamp-overlays’ and
-     ‘org-time-stamp-overlay-formats’), use
-          customtime overlay custom time format
-
-     The following options influence the table spreadsheet (variable
-     ‘constants-unit-system’).
-          constcgs   ‘constants.el’ should use the c-g-s unit system
-          constSI    ‘constants.el’ should use the SI unit system
-
-     For footnote settings, use the following keywords.  The
-     corresponding variables are ‘org-footnote-define-inline’,
-     ‘org-footnote-auto-label’, and ‘org-footnote-auto-adjust’.
-          fninline    define footnotes inline
-          fnnoinline  define footnotes in separate section
-          fnlocal     define footnotes near first reference, but not inline
-          fnprompt    prompt for footnote labels
-          fnauto      create ‘[fn:1]’-like labels automatically (default)
-          fnconfirm   offer automatic label for editing or confirmation
-          fnplain     create ‘[1]’-like labels automatically
-          fnadjust    automatically renumber and sort footnotes
-          nofnadjust  do not renumber and sort automatically
-
-     To hide blocks on startup, use these keywords.  The corresponding
-     variable is ‘org-hide-block-startup’.
-          hideblocks   Hide all begin/end blocks on startup
-          nohideblocks Do not hide blocks on startup
-
-     The display of entities as UTF-8 characters is governed by the
-     variable ‘org-pretty-entities’ and the keywords
-          entitiespretty  Show entities as UTF-8 characters where possible
-          entitiesplain   Leave entities plain
-
-‘#+TAGS: TAG1(c1) TAG2(c2)’
-     These lines specify valid tags for this file.  Org accepts multiple
-     tags lines.  Tags could correspond to the _fast tag selection_
-     keys.  The corresponding variable is ‘org-tag-alist’.
-‘#+TBLFM:’
-     This line is for formulas for the table directly above.  A table
-     can have multiple ‘#+TBLFM:’ lines.  On table recalculation, Org
-     applies only the first ‘#+TBLFM:’ line.  For details see *note
-     Using multiple #+TBLFM lines:: in *note Editing and debugging
-     formulas::.
-‘#+TITLE:, #+AUTHOR:, #+EMAIL:, #+LANGUAGE:, #+DATE:,’
-‘#+OPTIONS:, #+BIND:,’
-‘#+SELECT_TAGS:, #+EXCLUDE_TAGS:’
-     These lines provide settings for exporting files.  For more details
-     see *note Export settings::.
-‘#+TODO: #+SEQ_TODO: #+TYP_TODO:’
-     These lines set the TODO keywords and their significance to the
-     current file.  The corresponding variable is ‘org-todo-keywords’.
-
-
-File: org,  Node: The very busy C-c C-c key,  Next: Clean view,  Prev: In-buffer settings,  Up: Miscellaneous
-
-15.7 The very busy C-c C-c key
-==============================
-
-The ‘C-c C-c’ key in Org serves many purposes depending on the context.
-It is probably the most over-worked, multi-purpose key combination in
-Org.  Its uses are well-documented through out this manual, but here is
-a consolidated list for easy reference.
-
-   − If any highlights shown in the buffer from the creation of a sparse
-     tree, or from clock display, remove such highlights.
-   − If the cursor is in one of the special ‘#+KEYWORD’ lines, scan the
-     buffer for these lines and update the information.  Also reset the
-     Org file cache used to temporary store the contents of URLs used as
-     values for keywords like ‘#+SETUPFILE’.
-   − If the cursor is inside a table, realign the table.  The table
-     realigns even if automatic table editor is turned off.
-   − If the cursor is on a ‘#+TBLFM’ line, re-apply the formulas to the
-     entire table.
-   − If the current buffer is a capture buffer, close the note and file
-     it.  With a prefix argument, also jump to the target location after
-     saving the note.
-   − If the cursor is on a ‘<<<target>>>’, update radio targets and
-     corresponding links in this buffer.
-   − If the cursor is on a property line or at the start or end of a
-     property drawer, offer property commands.
-   − If the cursor is at a footnote reference, go to the corresponding
-     definition, and _vice versa_.
-   − If the cursor is on a statistics cookie, update it.
-   − If the cursor is in a plain list item with a checkbox, toggle the
-     status of the checkbox.
-   − If the cursor is on a numbered item in a plain list, renumber the
-     ordered list.
-   − If the cursor is on the ‘#+BEGIN’ line of a dynamic block, the
-     block is updated.
-   − If the cursor is at a timestamp, fix the day name in the timestamp.
-
-
-File: org,  Node: Clean view,  Next: TTY keys,  Prev: The very busy C-c C-c key,  Up: Miscellaneous
-
-15.8 A cleaner outline view
-===========================
-
-Org’s default outline with stars and no indents can become too cluttered
-for short documents.  For _book-like_ long documents, the effect is not
-as noticeable.  Org provides an alternate stars and indentation scheme,
-as shown on the right in the following table.  It uses only one star and
-indents text to line with the heading:
-
-     * Top level headline             |    * Top level headline
-     ** Second level                  |      * Second level
-     *** 3rd level                    |        * 3rd level
-     some text                        |          some text
-     *** 3rd level                    |        * 3rd level
-     more text                        |          more text
-     * Another top level headline     |    * Another top level headline
-
-
-   To turn this mode on, use the minor mode, ‘org-indent-mode’.  Text
-lines that are not headlines are prefixed with spaces to vertically
-align with the headline text(1).
-
-   To make more horizontal space, the headlines are shifted by two
-stars.  This can be configured by the ‘org-indent-indentation-per-level’
-variable.  Only one star on each headline is visible, the rest are
-masked with the same font color as the background.  This font face can
-be configured with the ‘org-hide’ variable.
-
-   Note that turning on ‘org-indent-mode’ sets ‘org-hide-leading-stars’
-to ‘t’ and ‘org-adapt-indentation’ to ‘nil’; ‘2.’ below shows how this
-works.
-
-   To globally turn on ‘org-indent-mode’ for all files, customize the
-variable ‘org-startup-indented’.
-
-   To turn on indenting for individual files, use ‘#+STARTUP’ option as
-follows:
-
-     #+STARTUP: indent
-
-   Indent on startup makes Org use hard spaces to align text with
-headings as shown in examples below.
-
-  1. _Indentation of text below headlines_
-     Indent text to align with the headline.
-
-          *** 3rd level
-              more text, now indented
-
-     Org adapts indentations with paragraph filling, line wrapping, and
-     structure editing(2).
-
-  2. _Hiding leading stars_
-     Org can make leading stars invisible.  For global preference,
-     configure the variable ‘org-hide-leading-stars’.  For per-file
-     preference, use these file ‘#+STARTUP’ options:
-
-          #+STARTUP: hidestars
-          #+STARTUP: showstars
-
-     With stars hidden, the tree is shown as:
-
-          * Top level headline
-           * Second level
-            * 3rd level
-            ...
-
-     Because Org makes the font color same as the background color to
-     hide to stars, sometimes ‘org-hide’ face may need tweaking to get
-     the effect right.  For some black and white combinations, ‘grey90’
-     on a white background might mask the stars better.
-
-  3. Using stars for only odd levels, 1, 3, 5, ..., can also clean up
-     the clutter.  This removes two stars from each level(3).  For Org
-     to properly handle this cleaner structure during edits and exports,
-     configure the variable ‘org-odd-levels-only’.  To set this
-     per-file, use either one of the following lines:
-
-          #+STARTUP: odd
-          #+STARTUP: oddeven
-
-     To switch between single and double stars layouts, use ‘M-x
-     org-convert-to-odd-levels <RET>’ and ‘M-x
-     org-convert-to-oddeven-levels <RET>’.
-
-   ---------- Footnotes ----------
-
-   (1) The ‘org-indent-mode’ also sets the ‘wrap-prefix’ correctly for
-indenting and wrapping long lines of headlines or text.  This minor mode
-handles ‘visual-line-mode’ and directly applied settings through
-‘word-wrap’.
-
-   (2) Also see the variable ‘org-adapt-indentation’.
-
-   (3) Because ‘LEVEL=2’ has 3 stars, ‘LEVEL=3’ has 4 stars, and so on
-
-
-File: org,  Node: TTY keys,  Next: Interaction,  Prev: Clean view,  Up: Miscellaneous
-
-15.9 Using Org on a tty
-=======================
-
-Org provides alternative key bindings for TTY and modern mobile devices
-that cannot handle cursor keys and complex modifier key chords.  Some of
-these workarounds may be more cumbersome than necessary.  Users should
-look into customizing these further based on their usage needs.  For
-example, the normal ‘S-<cursor>’ for editing timestamp might be better
-with ‘C-c .’ chord.
-
-Default     Alternative    Speed   Alternative
-            1              key     2
-‘S-<TAB>’   ‘C-u <TAB>’    ‘C’
-‘M-<LEFT>’  ‘C-c C-x l’    ‘l’     ‘<Esc>
-                                   <LEFT>’
-‘M-S-<LEFT>’‘C-c C-x L’    ‘L’
-‘M-<RIGHT>’ ‘C-c C-x r’    ‘r’     ‘<Esc>
-                                   <RIGHT>’
-‘M-S-<RIGHT>’‘C-c C-x R’   ‘R’
-‘M-<UP>’    ‘C-c C-x u’    ‘ ’     ‘<Esc> <UP>’
-‘M-S-<UP>’  ‘C-c C-x U’    ‘U’
-‘M-<DOWN>’  ‘C-c C-x d’    ‘ ’     ‘<Esc>
-                                   <DOWN>’
-‘M-S-<DOWN>’‘C-c C-x D’    ‘D’
-‘S-<RET>’   ‘C-c C-x c’    ‘ ’
-‘M-<RET>’   ‘C-c C-x m’    ‘ ’     ‘<Esc>
-                                   <RET>’
-‘M-S-<RET>’ ‘C-c C-x M’    ‘ ’
-‘S-<LEFT>’  ‘C-c <LEFT>’   ‘ ’
-‘S-<RIGHT>’ ‘C-c           ‘ ’
-            <RIGHT>’
-‘S-<UP>’    ‘C-c <UP>’     ‘ ’
-‘S-<DOWN>’  ‘C-c <DOWN>’   ‘ ’
-‘C-S-<LEFT>’‘C-c C-x       ‘ ’
-            <LEFT>’
-‘C-S-<RIGHT>’‘C-c C-x      ‘ ’
-            <RIGHT>’
-
-
-File: org,  Node: Interaction,  Next: org-crypt,  Prev: TTY keys,  Up: Miscellaneous
-
-15.10 Interaction with other packages
-=====================================
-
-Org’s compatibility and the level of interaction with other Emacs
-packages are documented here.
-
-* Menu:
-
-* Cooperation::                 Packages Org cooperates with
-* Conflicts::                   Packages that lead to conflicts
-
-
-File: org,  Node: Cooperation,  Next: Conflicts,  Up: Interaction
-
-15.10.1 Packages that Org cooperates with
------------------------------------------
-
-‘calc.el’ by Dave Gillespie
-     Org uses the Calc package for tables to implement spreadsheet
-     functionality (*note The spreadsheet::).  Org also uses Calc for
-     embedded calculations.  *Note Embedded Mode: (calc)Embedded Mode.
-‘constants.el’ by Carsten Dominik
-     Org can use names for constants in formulas in tables.  Org can
-     also use calculation suffixes for units, such as ‘M’ for ‘Mega’.
-     For a standard collection of such constants, install the
-     ‘constants’ package.  Install version 2.0 of this package,
-     available at <https://staff.fnwi.uva.nl/c.dominik/Tools/>.  Org
-     checks if the function ‘constants-get’ has been autoloaded.
-     Installation instructions are in the file, ‘constants.el’.
-‘cdlatex.el’ by Carsten Dominik
-     Org mode can use CDLaTeX package to efficiently enter LaTeX
-     fragments into Org files (*note CDLaTeX mode::).
-‘imenu.el’ by Ake Stenhoff and Lars Lindberg
-     Imenu creates dynamic menus based on an index of items in a file.
-     Org mode supports Imenu menus.  Enable it with a mode hook as
-     follows:
-          (add-hook 'org-mode-hook
-                    (lambda () (imenu-add-to-menubar "Imenu")))
-     By default the Imenu index is two levels deep.  Change the index
-     depth using thes variable, ‘org-imenu-depth’.
-‘speedbar.el’ by Eric M. Ludlam
-     Speedbar package creates a special Emacs frame for displaying files
-     and index items in files.  Org mode supports Speedbar; users can
-     drill into Org files directly from the Speedbar.  The ‘<’ in the
-     Speedbar frame tweaks the agenda commands to that file or to a
-     subtree.
-‘table.el’ by Takaaki Ota
-
-     Complex ASCII tables with automatic line wrapping, column- and
-     row-spanning, and alignment can be created using the Emacs table
-     package by Takaaki Ota.  Org mode recognizes such tables and export
-     them properly.  ‘C-c '’ to edit these tables in a special buffer,
-     much like Org’s ‘src’ code blocks.  Because of interference with
-     other Org mode functionality, Takaaki Ota tables cannot be edited
-     directly in the Org buffer.
-     ‘C-c '     (org-edit-special)’
-          Edit a ‘table.el’ table.  Works when the cursor is in a
-          table.el table.
-     ‘C-c ~     (org-table-create-with-table.el)’
-          Insert a ‘table.el’ table.  If there is already a table at
-          point, this command converts it between the ‘table.el’ format
-          and the Org mode format.  See the documentation string of the
-          command ‘org-convert-table’ for details.
-
-
-File: org,  Node: Conflicts,  Prev: Cooperation,  Up: Interaction
-
-15.10.2 Packages that conflict with Org mode
---------------------------------------------
-
-     In Emacs, ‘shift-selection-mode’ combines cursor motions with shift
-     key to enlarge regions.  Emacs sets this mode by default.  This
-     conflicts with Org’s use of ‘S-<cursor>’ commands to change
-     timestamps, TODO keywords, priorities, and item bullet types, etc.
-     Since ‘S-<cursor>’ commands outside of specific contexts don’t do
-     anything, Org offers the variable ‘org-support-shift-select’ for
-     customization.  Org mode accommodates shift selection by (i) making
-     it available outside of the special contexts where special commands
-     apply, and (ii) extending an existing active region even if the
-     cursor moves across a special context.
-
-‘CUA.el’ by Kim. F. Storm
-     Org key bindings conflict with ‘S-<cursor>’ keys used by CUA mode.
-     For Org to relinquish these bindings to CUA mode, configure the
-     variable ‘org-replace-disputed-keys’.  When set, Org moves the
-     following key bindings in Org files, and in the agenda buffer (but
-     not during date selection).
-
-          S-<UP>      ⇒  M-p             S-<DOWN>     ⇒  M-n
-          S-<LEFT>    ⇒  M--             S-<RIGHT>    ⇒  M-+
-          C-S-<LEFT>  ⇒  M-S--           C-S-<RIGHT>  ⇒  M-S-+
-
-     Yes, these are unfortunately more difficult to remember.  To define
-     a different replacement keys, look at the variable
-     ‘org-disputed-keys’.
-
-‘ecomplete.el’ by Lars Magne Ingebrigtsen <larsi@gnus.org>
-
-     Ecomplete provides “electric” address completion in address header
-     lines in message buffers.  Sadly Orgtbl mode cuts ecompletes power
-     supply: No completion happens when Orgtbl mode is enabled in
-     message buffers while entering text in address header lines.  If
-     one wants to use ecomplete one should _not_ follow the advice to
-     automagically turn on Orgtbl mode in message buffers (see *note
-     Orgtbl mode::), but instead—after filling in the message
-     headers—turn on Orgtbl mode manually when needed in the messages
-     body.
-
-‘filladapt.el’ by Kyle Jones
-
-     Org mode tries to do the right thing when filling paragraphs, list
-     items and other elements.  Many users reported problems using both
-     ‘filladapt.el’ and Org mode, so a safe thing to do is to disable
-     filladapt like this:
-
-          (add-hook 'org-mode-hook 'turn-off-filladapt-mode)
-
-‘yasnippet.el’
-     The way Org mode binds the <TAB> key (binding to ‘[tab]’ instead of
-     ‘"\t"’) overrules YASnippet’s access to this key.  The following
-     code fixed this problem:
-
-          (add-hook 'org-mode-hook
-                    (lambda ()
-                      (setq-local yas/trigger-key [tab])
-                      (define-key yas/keymap [tab] 'yas/next-field-or-maybe-expand)))
-
-     The latest version of yasnippet doesn’t play well with Org mode.
-     If the above code does not fix the conflict, first define the
-     following function:
-
-          (defun yas/org-very-safe-expand ()
-            (let ((yas/fallback-behavior 'return-nil)) (yas/expand)))
-
-     Then tell Org mode to use that function:
-
-          (add-hook 'org-mode-hook
-                    (lambda ()
-                      (make-variable-buffer-local 'yas/trigger-key)
-                      (setq yas/trigger-key [tab])
-                      (add-to-list 'org-tab-first-hook 'yas/org-very-safe-expand)
-                      (define-key yas/keymap [tab] 'yas/next-field)))
-
-‘windmove.el’ by Hovav Shacham
-     This package also uses the ‘S-<cursor>’ keys, so everything written
-     in the paragraph above about CUA mode also applies here.  If you
-     want make the windmove function active in locations where Org mode
-     does not have special functionality on ‘S-<cursor>’, add this to
-     your configuration:
-
-          ;; Make windmove work in org-mode:
-          (add-hook 'org-shiftup-final-hook 'windmove-up)
-          (add-hook 'org-shiftleft-final-hook 'windmove-left)
-          (add-hook 'org-shiftdown-final-hook 'windmove-down)
-          (add-hook 'org-shiftright-final-hook 'windmove-right)
-
-‘viper.el’ by Michael Kifer
-     Viper uses ‘C-c /’ and therefore makes this key not access the
-     corresponding Org mode command ‘org-sparse-tree’.  You need to find
-     another key for this command, or override the key in
-     ‘viper-vi-global-user-map’ with
-
-          (define-key viper-vi-global-user-map "C-c /" 'org-sparse-tree)
-
-
-File: org,  Node: org-crypt,  Prev: Interaction,  Up: Miscellaneous
-
-15.11 org-crypt.el
-==================
-
-Org crypt encrypts the text of an Org entry, but not the headline, or
-properties.  Org crypt uses the Emacs EasyPG library to encrypt and
-decrypt.
-
-   Any text below a headline that has a ‘:crypt:’ tag will be
-automatically be encrypted when the file is saved.  To use a different
-tag, customize the ‘org-crypt-tag-matcher’ variable.
-
-   Suggested Org crypt settings in Emacs init file:
-
-     (require 'org-crypt)
-     (org-crypt-use-before-save-magic)
-     (setq org-tags-exclude-from-inheritance (quote ("crypt")))
-
-     (setq org-crypt-key nil)
-       ;; GPG key to use for encryption
-       ;; Either the Key ID or set to nil to use symmetric encryption.
-
-     (setq auto-save-default nil)
-       ;; Auto-saving does not cooperate with org-crypt.el: so you need
-       ;; to turn it off if you plan to use org-crypt.el quite often.
-       ;; Otherwise, you'll get an (annoying) message each time you
-       ;; start Org.
-
-       ;; To turn it off only locally, you can insert this:
-       ;;
-       ;; # -*- buffer-auto-save-file-name: nil; -*-
-
-   Excluding the crypt tag from inheritance prevents encrypting
-previously encrypted text.
-
-
-File: org,  Node: Hacking,  Next: MobileOrg,  Prev: Miscellaneous,  Up: Top
-
-Appendix A Hacking
-******************
-
-This appendix covers some areas where users can extend the functionality
-of Org.
-
-* Menu:
-
-* Hooks::                       How to reach into Org’s internals
-* Add-on packages::             Available extensions
-* Adding hyperlink types::      New custom link types
-* Adding export back-ends::     How to write new export back-ends
-* Context-sensitive commands::  How to add functionality to such commands
-* Tables in arbitrary syntax::  Orgtbl for LaTeX and other programs
-* Dynamic blocks::              Automatically filled blocks
-* Special agenda views::        Customized views
-* Speeding up your agendas::    Tips on how to speed up your agendas
-* Extracting agenda information::  Post-processing of agenda information
-* Using the property API::      Writing programs that use entry properties
-* Using the mapping API::       Mapping over all or selected entries
-
-
-File: org,  Node: Hooks,  Next: Add-on packages,  Up: Hacking
-
-A.1 Hooks
-=========
-
-Org has a large number of hook variables for adding functionality.  This
-appendix illustrates using a few.  A complete list of hooks with
-documentation is maintained by the Worg project at
-<https://orgmode.org/worg/doc.html#hooks>.
-
-
-File: org,  Node: Add-on packages,  Next: Adding hyperlink types,  Prev: Hooks,  Up: Hacking
-
-A.2 Add-on packages
-===================
-
-Various authors wrote a large number of add-on packages for Org.
-
-   These packages are not part of Emacs, but they are distributed as
-contributed packages with the separate release available at
-<https://orgmode.org>.  See the ‘contrib/README’ file in the source code
-directory for a list of contributed files.  Worg page with more
-information is at: <https://orgmode.org/worg/org-contrib/>.
-
-
-File: org,  Node: Adding hyperlink types,  Next: Adding export back-ends,  Prev: Add-on packages,  Up: Hacking
-
-A.3 Adding hyperlink types
-==========================
-
-Org has many built-in hyperlink types (*note Hyperlinks::), and an
-interface for adding new link types.  The example file, ‘org-man.el’,
-shows the process of adding Org links to Unix man pages, which look like
-this: ‘[[man:printf][The printf manpage]]’:
-
-     ;;; org-man.el - Support for links to manpages in Org
-
-     (require 'org)
-
-     (org-add-link-type "man" 'org-man-open)
-     (add-hook 'org-store-link-functions 'org-man-store-link)
-
-     (defcustom org-man-command 'man
-       "The Emacs command to be used to display a man page."
-       :group 'org-link
-       :type '(choice (const man) (const woman)))
-
-     (defun org-man-open (path)
-       "Visit the manpage on PATH.
-     PATH should be a topic that can be thrown at the man command."
-       (funcall org-man-command path))
-
-     (defun org-man-store-link ()
-       "Store a link to a manpage."
-       (when (memq major-mode '(Man-mode woman-mode))
-         ;; This is a man page, we do make this link
-         (let* ((page (org-man-get-page-name))
-                (link (concat "man:" page))
-                (description (format "Manpage for %s" page)))
-           (org-store-link-props
-            :type "man"
-            :link link
-            :description description))))
-
-     (defun org-man-get-page-name ()
-       "Extract the page name from the buffer name."
-       ;; This works for both `Man-mode' and `woman-mode'.
-       (if (string-match " \\(\\S-+\\)\\*" (buffer-name))
-           (match-string 1 (buffer-name))
-         (error "Cannot create link to this man page")))
-
-     (provide 'org-man)
-
-     ;;; org-man.el ends here
-
-To activate links to man pages in Org, enter this in the init file:
-
-     (require 'org-man)
-
-A review of ‘org-man.el’:
-  1. First, ‘(require 'org)’ ensures ‘org.el’ is loaded.
-  2. The ‘org-add-link-type’ defines a new link type with ‘man’ prefix.
-     The call contains the function to call that follows the link type.
-  3. The next line adds a function to ‘org-store-link-functions’ that
-     records a useful link with the command ‘C-c l’ in a buffer
-     displaying a man page.
-
-   The rest of the file defines necessary variables and functions.
-First is the customization variable ‘org-man-command’.  It has two
-options, ‘man’ and ‘woman’.  Next is a function whose argument is the
-link path, which for man pages is the topic of the man command.  To
-follow the link, the function calls the ‘org-man-command’ to display the
-man page.
-
-   ‘C-c l’ constructs and stores the link.
-
-   ‘C-c l’ calls the function ‘org-man-store-link’, which first checks
-if the ‘major-mode’ is appropriate.  If check fails, the function
-returns ‘nil’.  Otherwise the function makes a link string by combining
-the ‘man:’ prefix with the man topic.  The function then calls
-‘org-store-link-props’ with ‘:type’ and ‘:link’ properties.  A
-‘:description’ property is an optional string that is displayed when the
-function inserts the link in the Org buffer.
-
-   ‘C-c C-l’ inserts the stored link.
-
-   To define new link types, define a function that implements
-completion support with ‘C-c C-l’.  This function should not accept any
-arguments but return the appropriate prefix and complete link string.
-
-
-File: org,  Node: Adding export back-ends,  Next: Context-sensitive commands,  Prev: Adding hyperlink types,  Up: Hacking
-
-A.4 Adding export back-ends
-===========================
-
-Org’s export engine makes it easy for writing new back-ends.  The
-framework on which the engine was built makes it easy to derive new
-back-ends from existing ones.
-
-   The two main entry points to the export engine are:
-‘org-export-define-backend’ and ‘org-export-define-derived-backend’.  To
-grok these functions, see ‘ox-latex.el’ for an example of defining a new
-back-end from scratch, and ‘ox-beamer.el’ for an example of deriving
-from an existing engine.
-
-   For creating a new back-end from scratch, first set its name as a
-symbol in an alist consisting of elements and export functions.  To make
-the back-end visible to the export dispatcher, set ‘:menu-entry’
-keyword.  For export options specific to this back-end, set the
-‘:options-alist’.
-
-   For creating a new back-end from an existing one, set
-‘:translate-alist’ to an alist of export functions.  This alist replaces
-the parent back-end functions.
-
-   For complete documentation, see the Org Export Reference on Worg
-(https://orgmode.org/worg/dev/org-export-reference.html).
-
-
-File: org,  Node: Context-sensitive commands,  Next: Tables in arbitrary syntax,  Prev: Adding export back-ends,  Up: Hacking
-
-A.5 Context-sensitive commands
-==============================
-
-Org has facilities for building context sensitive commands.  Authors of
-Org add-ons can tap into this functionality.
-
-   Some Org commands change depending on the context.  The most
-important example of this behavior is the ‘C-c C-c’ (*note The very busy
-C-c C-c key::).  Other examples are ‘M-cursor’ and ‘M-S-cursor’.
-
-   These context sensitive commands work by providing a function that
-detects special context for that add-on and executes functionality
-appropriate for that context.
-
-
-File: org,  Node: Tables in arbitrary syntax,  Next: Dynamic blocks,  Prev: Context-sensitive commands,  Up: Hacking
-
-A.6 Tables and lists in arbitrary syntax
-========================================
-
-Because of Org’s success in handling tables with Orgtbl, a frequently
-asked feature is to Org’s usability functions to other table formats
-native to other modem’s, such as LaTeX.  This would be hard to do in a
-general way without complicated customization nightmares.  Moreover,
-that would take Org away from its simplicity roots that Orgtbl has
-proven.  There is, however, an alternate approach to accomplishing the
-same.
-
-   This approach involves implementing a custom _translate_ function
-that operates on a native Org _source table_ to produce a table in
-another format.  This strategy would keep the excellently working Orgtbl
-simple and isolate complications, if any, confined to the translate
-function.  To add more alien table formats, we just add more translate
-functions.  Also the burden of developing custom translate functions for
-new table formats will be in the hands of those who know those formats
-best.
-
-   For an example of how this strategy works, see Orgstruct mode.  In
-that mode, Bastien added the ability to use Org’s facilities to edit and
-re-structure lists.  He did by turning ‘orgstruct-mode’ on, and then
-exporting the list locally to another format, such as HTML, LaTeX or
-Texinfo.
-
-* Menu:
-
-* Radio tables::                Sending and receiving radio tables
-* A LaTeX example::          Step by step, almost a tutorial
-* Translator functions::        Copy and modify
-* Radio lists::                 Sending and receiving lists
-
-
-File: org,  Node: Radio tables,  Next: A LaTeX example,  Up: Tables in arbitrary syntax
-
-A.6.1 Radio tables
-------------------
-
-Radio tables are target locations for translated tables that are not
-near their source.  Org finds the target location and inserts the
-translated table.
-
-   The key to finding the target location are the magic words ‘BEGIN/END
-RECEIVE ORGTBL’.  They have to appear as comments in the current mode.
-If the mode is C, then:
-
-     /* BEGIN RECEIVE ORGTBL table_name */
-     /* END RECEIVE ORGTBL table_name */
-
-At the location of source, Org needs a special line to direct Orgtbl to
-translate and to find the target for inserting the translated table.
-For example:
-     #+ORGTBL: SEND table_name translation_function arguments...
-
-‘table_name’ is the table’s reference name, which is also used in the
-receiver lines, and the ‘translation_function’ is the Lisp function that
-translates.  This line, in addition, may also contain alternating key
-and value arguments at the end.  The translation function gets these
-values as a property list.  A few standard parameters are already
-recognized and acted upon before the translation function is called:
-
-‘:skip N’
-     Skip the first N lines of the table.  Hlines do count; include them
-     if they are to be skipped.
-
-‘:skipcols (n1 n2 ...)’
-     List of columns to be skipped.  First Org automatically discards
-     columns with calculation marks and then sends the table to the
-     translator function, which then skips columns as specified in
-     ‘skipcols’.
-
-To keep the source table intact in the buffer without being disturbed
-when the source file is compiled or otherwise being worked on, use one
-of these strategies:
-
-   • Place the table in a block comment.  For example, in C mode you
-     could wrap the table between ‘/*’ and ‘*/’ lines.
-   • Put the table after an ‘END’ statement.  For example ‘\bye’ in TeX
-     and ‘\end{document}’ in LaTeX.
-   • Comment and uncomment each line of the table during edits.  The
-     ‘M-x orgtbl-toggle-comment <RET>’ command makes toggling easy.
-
-
-File: org,  Node: A LaTeX example,  Next: Translator functions,  Prev: Radio tables,  Up: Tables in arbitrary syntax
-
-A.6.2 A LaTeX example of radio tables
--------------------------------------
-
-To wrap a source table in LaTeX, use the ‘comment’ environment provided
-by ‘comment.sty’.  To activate it, put ‘\usepackage{comment}’ in the
-document header.  Orgtbl mode inserts a radio table skeleton(1) with the
-command ‘M-x orgtbl-insert-radio-table <RET>’, which prompts for a table
-name.  For example, if ‘salesfigures’ is the name, the template inserts:
-
-     % BEGIN RECEIVE ORGTBL salesfigures
-     % END RECEIVE ORGTBL salesfigures
-     \begin{comment}
-     #+ORGTBL: SEND salesfigures orgtbl-to-latex
-     | | |
-     \end{comment}
-
-The line ‘#+ORGTBL: SEND’ tells Orgtbl mode to use the function
-‘orgtbl-to-latex’ to convert the table to LaTeX format, then insert the
-table at the target (receive) location named ‘salesfigures’.  Now the
-table is ready for data entry.  It can even use spreadsheet features(2):
-
-     % BEGIN RECEIVE ORGTBL salesfigures
-     % END RECEIVE ORGTBL salesfigures
-     \begin{comment}
-     #+ORGTBL: SEND salesfigures orgtbl-to-latex
-     | Month | Days | Nr sold | per day |
-     |-------+------+---------+---------|
-     | Jan   |   23 |      55 |     2.4 |
-     | Feb   |   21 |      16 |     0.8 |
-     | March |   22 |     278 |    12.6 |
-     #+TBLFM: $4=$3/$2;%.1f
-     % $ (optional extra dollar to keep font-lock happy, see footnote)
-     \end{comment}
-
-After editing, ‘C-c C-c’ inserts translated table at the target
-location, between the two marker lines.
-
-   For hand-made custom tables, note that the translator needs to skip
-the first two lines of the source table.  Also the command has to
-_splice_ out the target table without the header and footer.
-
-     \begin{tabular}{lrrr}
-     Month & \multicolumn{1}{c}{Days} & Nr.\ sold & per day\\
-     % BEGIN RECEIVE ORGTBL salesfigures
-     % END RECEIVE ORGTBL salesfigures
-     \end{tabular}
-     %
-     \begin{comment}
-     #+ORGTBL: SEND salesfigures orgtbl-to-latex :splice t :skip 2
-     | Month | Days | Nr sold | per day |
-     |-------+------+---------+---------|
-     | Jan   |   23 |      55 |     2.4 |
-     | Feb   |   21 |      16 |     0.8 |
-     | March |   22 |     278 |    12.6 |
-     #+TBLFM: $4=$3/$2;%.1f
-     \end{comment}
-
-   The LaTeX translator function ‘orgtbl-to-latex’ is already part of
-Orgtbl mode and uses ‘tabular’ environment by default to typeset the
-table and mark the horizontal lines with ‘\hline’.  For additional
-parameters to control output, *note Translator functions:::
-
-‘:splice nil/t’
-     When non-‘nil’, returns only table body lines; not wrapped in
-     tabular environment.  Default is ‘nil’.
-
-‘:fmt fmt’
-     Format to warp each field.  It should contain ‘%s’ for the original
-     field value.  For example, to wrap each field value in dollar
-     symbol, you could use ‘:fmt "$%s$"’.  Format can also wrap a
-     property list with column numbers and formats, for example ‘:fmt (2
-     "$%s$" 4 "%s\\%%")’.  In place of a string, a function of one
-     argument can be used; the function must return a formatted string.
-
-‘:efmt efmt’
-     Format numbers as exponentials.  The spec should have ‘%s’ twice
-     for inserting mantissa and exponent, for example
-     ‘"%s\\times10^{%s}"’.  This may also be a property list with column
-     numbers and formats, for example ‘:efmt (2 "$%s\\times10^{%s}$" 4
-     "$%s\\cdot10^{%s}$")’.  After ‘efmt’ has been applied to a value,
-     ‘fmt’ will also be applied.  Functions with two arguments can be
-     supplied instead of strings.  By default, no special formatting is
-     applied.
-
-   ---------- Footnotes ----------
-
-   (1) By default this works only for LaTeX, HTML, and Texinfo.
-Configure the variable ‘orgtbl-radio-table-templates’ to install
-templates for other export formats.
-
-   (2) If the ‘#+TBLFM’ line contains an odd number of dollar
-characters, this may cause problems with font-lock in LaTeX mode.  As
-shown in the example you can fix this by adding an extra line inside the
-‘comment’ environment that is used to balance the dollar expressions.
-If you are using AUCTeX with the font-latex library, a much better
-solution is to add the ‘comment’ environment to the variable
-‘LaTeX-verbatim-environments’.
-
-
-File: org,  Node: Translator functions,  Next: Radio lists,  Prev: A LaTeX example,  Up: Tables in arbitrary syntax
-
-A.6.3 Translator functions
---------------------------
-
-Orgtbl mode has built-in translator functions: ‘orgtbl-to-csv’
-(comma-separated values), ‘orgtbl-to-tsv’ (TAB-separated values),
-‘orgtbl-to-latex’, ‘orgtbl-to-html’, ‘orgtbl-to-texinfo’,
-‘orgtbl-to-unicode’ and ‘orgtbl-to-orgtbl’.  They use the generic
-translator, ‘orgtbl-to-generic’, which delegates translations to various
-export back-ends.
-
-   Properties passed to the function through the ‘ORGTBL SEND’ line take
-precedence over properties defined inside the function.  For example,
-this overrides the default LaTeX line endings, ‘\\’, with ‘\\[2mm]’:
-
-     #+ORGTBL: SEND test orgtbl-to-latex :lend " \\\\[2mm]"
-
-   For a new language translator, define a converter function.  It can
-be a generic function, such as shown in this example.  It marks a
-beginning and ending of a table with ‘!BTBL!’ and ‘!ETBL!’; a beginning
-and ending of lines with ‘!BL!’ and ‘!EL!’; and uses a TAB for a field
-separator:
-
-     (defun orgtbl-to-language (table params)
-       "Convert the orgtbl-mode TABLE to language."
-       (orgtbl-to-generic
-        table
-        (org-combine-plists
-         '(:tstart "!BTBL!" :tend "!ETBL!" :lstart "!BL!" :lend "!EL!" :sep "\t")
-         params)))
-
-The documentation for the ‘orgtbl-to-generic’ function shows a complete
-list of parameters, each of which can be passed through to
-‘orgtbl-to-latex’, ‘orgtbl-to-texinfo’, and any other function using
-that generic function.
-
-   For complicated translations the generic translator function could be
-replaced by a custom translator function.  Such a custom function must
-take two arguments and return a single string containing the formatted
-table.  The first argument is the table whose lines are a list of fields
-or the symbol ‘hline’.  The second argument is the property list
-consisting of parameters specified in the ‘#+ORGTBL: SEND’ line.  Please
-share your translator functions by posting them to the Org users mailing
-list, <emacs-orgmode@gnu.org>.
-
-
-File: org,  Node: Radio lists,  Prev: Translator functions,  Up: Tables in arbitrary syntax
-
-A.6.4 Radio lists
------------------
-
-Call the ‘org-list-insert-radio-list’ function to insert a radio list
-template in HTML, LaTeX, and Texinfo mode documents.  Sending and
-receiving radio lists works is the same as for radio tables (*note Radio
-tables::) except for these differences:
-
-   − Orgstruct mode must be active.
-   − Use ‘ORGLST’ keyword instead of ‘ORGTBL’.
-   − ‘C-c C-c’ works only on the first list item.
-
-   Built-in translators functions are: ‘org-list-to-latex’,
-‘org-list-to-html’ and ‘org-list-to-texinfo’.  They use the
-‘org-list-to-generic’ translator function.  See its documentation for
-parameters for accurate customizations of lists.  Here is a LaTeX
-example:
-
-     % BEGIN RECEIVE ORGLST to-buy
-     % END RECEIVE ORGLST to-buy
-     \begin{comment}
-     #+ORGLST: SEND to-buy org-list-to-latex
-     - a new house
-     - a new computer
-       + a new keyboard
-       + a new mouse
-     - a new life
-     \end{comment}
-
-   ‘C-c C-c’ on ‘a new house’ inserts the translated LaTeX list
-in-between the BEGIN and END marker lines.
-
-
-File: org,  Node: Dynamic blocks,  Next: Special agenda views,  Prev: Tables in arbitrary syntax,  Up: Hacking
-
-A.7 Dynamic blocks
-==================
-
-Org supports _dynamic blocks_ in Org documents.  They are inserted with
-begin and end markers like any other ‘src’ code block, but the contents
-are updated automatically by a user function.  For example, ‘C-c C-x
-C-r’ inserts a dynamic table that updates the work time (*note Clocking
-work time::).
-
-   Dynamic blocks can have names and function parameters.  The syntax is
-similar to ‘src’ code block specifications:
-
-     #+BEGIN: myblock :parameter1 value1 :parameter2 value2 ...
-
-     #+END:
-
-   These command update dynamic blocks:
-
-‘C-c C-x C-u     (org-dblock-update)’
-     Update dynamic block at point.
-‘C-u C-c C-x C-u’
-     Update all dynamic blocks in the current file.
-
-   Before updating a dynamic block, Org removes content between the
-BEGIN and END markers.  Org then reads the parameters on the BEGIN line
-for passing to the writer function.  If the function expects to access
-the removed content, then Org expects an extra parameter, ‘:content’, on
-the BEGIN line.
-
-   To syntax for calling a writer function with a named block, ‘myblock’
-is: ‘org-dblock-write:myblock’.  Parameters come from the BEGIN line.
-
-   The following is an example of a dynamic block and a block writer
-function that updates the time when the function was last run:
-
-     #+BEGIN: block-update-time :format "on %m/%d/%Y at %H:%M"
-
-     #+END:
-
-The dynamic block’s writer function:
-
-     (defun org-dblock-write:block-update-time (params)
-       (let ((fmt (or (plist-get params :format) "%d. %m. %Y")))
-         (insert "Last block update at: "
-                 (format-time-string fmt))))
-
-   To keep dynamic blocks up-to-date in an Org file, use the function,
-‘org-update-all-dblocks’ in hook, such as ‘before-save-hook’.  The
-‘org-update-all-dblocks’ function does not run if the file is not in Org
-mode.
-
-   Dynamic blocks, like any other block, can be narrowed with
-‘org-narrow-to-block’.
-
-
-File: org,  Node: Special agenda views,  Next: Speeding up your agendas,  Prev: Dynamic blocks,  Up: Hacking
-
-A.8 Special agenda views
-========================
-
-Org provides a special hook to further limit items in agenda views:
-‘agenda’, ‘agenda*’(1), ‘todo’, ‘alltodo’, ‘tags’, ‘tags-todo’,
-‘tags-tree’.  Specify a custom function that tests inclusion of every
-matched item in the view.  This function can also skip as much as is
-needed.
-
-   For a global condition applicable to agenda views, use the
-‘org-agenda-skip-function-global’ variable.  Org uses a global condition
-with ‘org-agenda-skip-function’ for custom searching.
-
-   This example defines a function for a custom view showing TODO items
-with WAITING status.  Manually this is a multi step search process, but
-with a custom view, this can be automated as follows:
-
-   The custom function searches the subtree for the WAITING tag and
-returns ‘nil’ on match.  Otherwise it gives the location from where the
-search continues.
-
-     (defun my-skip-unless-waiting ()
-       "Skip trees that are not waiting"
-       (let ((subtree-end (save-excursion (org-end-of-subtree t))))
-         (if (re-search-forward ":waiting:" subtree-end t)
-             nil          ; tag found, do not skip
-           subtree-end))) ; tag not found, continue after end of subtree
-
-   To use this custom function in a custom agenda command:
-
-     (org-add-agenda-custom-command
-      '("b" todo "PROJECT"
-        ((org-agenda-skip-function 'my-skip-unless-waiting)
-         (org-agenda-overriding-header "Projects waiting for something: "))))
-
-   Note that this also binds ‘org-agenda-overriding-header’ to a more
-meaningful string suitable for the agenda view.
-
-   Search for entries with a limit set on levels for the custom search.
-This is a general approach to creating custom searches in Org.  To
-include all levels, use ‘LEVEL>0’(2).  Then to selectively pick the
-matched entries, use ‘org-agenda-skip-function’, which also accepts Lisp
-forms, such as ‘org-agenda-skip-entry-if’ and
-‘org-agenda-skip-subtree-if’.  For example:
-
-‘(org-agenda-skip-entry-if 'scheduled)’
-     Skip current entry if it has been scheduled.
-‘(org-agenda-skip-entry-if 'notscheduled)’
-     Skip current entry if it has not been scheduled.
-‘(org-agenda-skip-entry-if 'deadline)’
-     Skip current entry if it has a deadline.
-‘(org-agenda-skip-entry-if 'scheduled 'deadline)’
-     Skip current entry if it has a deadline, or if it is scheduled.
-‘(org-agenda-skip-entry-if 'todo '("TODO" "WAITING"))’
-     Skip current entry if the TODO keyword is TODO or WAITING.
-‘(org-agenda-skip-entry-if 'todo 'done)’
-     Skip current entry if the TODO keyword marks a DONE state.
-‘(org-agenda-skip-entry-if 'timestamp)’
-     Skip current entry if it has any timestamp, may also be deadline or
-     scheduled.
-‘(org-agenda-skip-entry-if 'regexp "regular expression")’
-     Skip current entry if the regular expression matches in the entry.
-‘(org-agenda-skip-entry-if 'notregexp "regular expression")’
-     Skip current entry unless the regular expression matches.
-‘(org-agenda-skip-subtree-if 'regexp "regular expression")’
-     Same as above, but check and skip the entire subtree.
-
-   The following is an example of a search for ‘WAITING’ without the
-special function:
-
-     (org-add-agenda-custom-command
-      '("b" todo "PROJECT"
-        ((org-agenda-skip-function '(org-agenda-skip-subtree-if
-                                     'regexp ":waiting:"))
-         (org-agenda-overriding-header "Projects waiting for something: "))))
-
-   ---------- Footnotes ----------
-
-   (1) The ‘agenda*’ view is the same as ‘agenda’ except that it only
-considers _appointments_, i.e., scheduled and deadline items that have a
-time specification ‘[h]h:mm’ in their time-stamps.
-
-   (2) Note that, for ‘org-odd-levels-only’, a level number corresponds
-to order in the hierarchy, not to the number of stars.
-
-
-File: org,  Node: Speeding up your agendas,  Next: Extracting agenda information,  Prev: Special agenda views,  Up: Hacking
-
-A.9 Speeding up your agendas
-============================
-
-Some agenda commands slow down when the Org files grow in size or
-number.  Here are tips to speed up:
-
-  1. Reduce the number of Org agenda files to avoid slowdowns due to
-     hard drive accesses.
-  2. Reduce the number of ‘DONE’ and archived headlines so agenda
-     operations that skip over these can finish faster.
-  3. Do not dim blocked tasks:
-          (setq org-agenda-dim-blocked-tasks nil)
-  4. Stop preparing agenda buffers on startup:
-          (setq org-agenda-inhibit-startup nil)
-  5. Disable tag inheritance for agendas:
-          (setq org-agenda-use-tag-inheritance nil)
-
-   These options can be applied to selected agenda views.  For more
-details about generation of agenda views, see the docstrings for the
-relevant variables, and this dedicated Worg page
-(https://orgmode.org/worg/agenda-optimization.html) for agenda
-optimization.
-
-
-File: org,  Node: Extracting agenda information,  Next: Using the property API,  Prev: Speeding up your agendas,  Up: Hacking
-
-A.10 Extracting agenda information
-==================================
-
-Org provides commands to access agendas through Emacs batch mode.
-Through this command-line interface, agendas are automated for further
-processing or printing.
-
-   ‘org-batch-agenda’ creates an agenda view in ASCII and outputs to
-STDOUT. This command takes one string parameter.  When string length=1,
-Org uses it as a key to ‘org-agenda-custom-commands’.  These are the
-same ones available through ‘C-c a’.
-
-   This example command line directly prints the TODO list to the
-printer:
-
-     emacs -batch -l ~/.emacs -eval '(org-batch-agenda "t")' | lpr
-
-   When the string parameter length is two or more characters, Org
-matches it with tags/TODO strings.  For example, this example command
-line prints items tagged with ‘shop’, but excludes items tagged with
-‘NewYork’:
-
-     emacs -batch -l ~/.emacs                                      \
-           -eval '(org-batch-agenda "+shop-NewYork")' | lpr
-
-An example showing on-the-fly parameter modifications:
-
-     emacs -batch -l ~/.emacs                                      \
-        -eval '(org-batch-agenda "a"                               \
-                 org-agenda-span (quote month)                     \
-                 org-agenda-include-diary nil                      \
-                 org-agenda-files (quote ("~/org/project.org")))'  \
-        | lpr
-
-which will produce an agenda for the next 30 days from just the
-‘~/org/projects.org’ file.
-
-   For structured processing of agenda output, use
-‘org-batch-agenda-csv’ with the following fields:
-
-     category     The category of the item
-     head         The headline, without TODO keyword, TAGS and PRIORITY
-     type         The type of the agenda entry, can be
-                     todo               selected in TODO match
-                     tagsmatch          selected in tags match
-                     diary              imported from diary
-                     deadline           a deadline
-                     scheduled          scheduled
-                     timestamp          appointment, selected by timestamp
-                     closed             entry was closed on date
-                     upcoming-deadline  warning about nearing deadline
-                     past-scheduled     forwarded scheduled item
-                     block              entry has date block including date
-     todo         The TODO keyword, if any
-     tags         All tags including inherited ones, separated by colons
-     date         The relevant date, like 2007-2-14
-     time         The time, like 15:00-16:50
-     extra        String with extra planning info
-     priority-l   The priority letter if any was given
-     priority-n   The computed numerical priority
-
-If the selection of the agenda item was based on a timestamp, including
-those items with ‘DEADLINE’ and ‘SCHEDULED’ keywords, then Org includes
-date and time in the output.
-
-   If the selection of the agenda item was based on a timestamp (or
-deadline/scheduled), then Org includes date and time in the output.
-
-   Here is an example of a post-processing script in Perl.  It takes the
-CSV output from Emacs and prints with a checkbox:
-
-     #!/usr/bin/perl
-
-     # define the Emacs command to run
-     $cmd = "emacs -batch -l ~/.emacs -eval '(org-batch-agenda-csv \"t\")'";
-
-     # run it and capture the output
-     $agenda = qx{$cmd 2>/dev/null};
-
-     # loop over all lines
-     foreach $line (split(/\n/,$agenda)) {
-       # get the individual values
-       ($category,$head,$type,$todo,$tags,$date,$time,$extra,
-        $priority_l,$priority_n) = split(/,/,$line);
-       # process and print
-       print "[ ] $head\n";
-     }
-
-
-File: org,  Node: Using the property API,  Next: Using the mapping API,  Prev: Extracting agenda information,  Up: Hacking
-
-A.11 Using the property API
-===========================
-
-Functions for working with properties.
-
- -- Function: org-entry-properties &optional pom which
-     Get all properties of the entry at point-or-marker POM.
-     This includes the TODO keyword, the tags, time strings for
-     deadline, scheduled, and clocking, and any additional properties
-     defined in the entry.  The return value is an alist.  Keys may
-     occur multiple times if the property key was used several times.
-     POM may also be ‘nil’, in which case the current entry is used.  If
-     WHICH is ‘nil’ or ‘all’, get all properties.  If WHICH is ‘special’
-     or ‘standard’, only get that subclass.
-
- -- Function: org-entry-get pom property &optional inherit
-     Get value of ‘PROPERTY’ for entry at point-or-marker ‘POM’.  By
-     default, this only looks at properties defined locally in the
-     entry.  If ‘INHERIT’ is non-‘nil’ and the entry does not have the
-     property, then also check higher levels of the hierarchy.  If
-     ‘INHERIT’ is the symbol ‘selective’, use inheritance if and only if
-     the setting of ‘org-use-property-inheritance’ selects ‘PROPERTY’
-     for inheritance.
-
- -- Function: org-entry-delete pom property
-     Delete the property ‘PROPERTY’ from entry at point-or-marker POM.
-
- -- Function: org-entry-put pom property value
-     Set ‘PROPERTY’ to ‘VALUE’ for entry at point-or-marker POM.
-
- -- Function: org-buffer-property-keys &optional include-specials
-     Get all property keys in the current buffer.
-
- -- Function: org-insert-property-drawer
-     Insert a property drawer for the current entry.
-
- -- Function: org-entry-put-multivalued-property pom property &rest
-          values
-     Set ‘PROPERTY’ at point-or-marker ‘POM’ to ‘VALUES’.  ‘VALUES’
-     should be a list of strings.  They will be concatenated, with
-     spaces as separators.
-
- -- Function: org-entry-get-multivalued-property pom property
-     Treat the value of the property ‘PROPERTY’ as a
-     whitespace-separated list of values and return the values as a list
-     of strings.
-
- -- Function: org-entry-add-to-multivalued-property pom property value
-     Treat the value of the property ‘PROPERTY’ as a
-     whitespace-separated list of values and make sure that ‘VALUE’ is
-     in this list.
-
- -- Function: org-entry-remove-from-multivalued-property pom property
-          value
-     Treat the value of the property ‘PROPERTY’ as a
-     whitespace-separated list of values and make sure that ‘VALUE’ is
-     _not_ in this list.
-
- -- Function: org-entry-member-in-multivalued-property pom property
-          value
-     Treat the value of the property ‘PROPERTY’ as a
-     whitespace-separated list of values and check if ‘VALUE’ is in this
-     list.
-
- -- User Option: org-property-allowed-value-functions
-     Hook for functions supplying allowed values for a specific
-     property.  The functions must take a single argument, the name of
-     the property, and return a flat list of allowed values.  If ‘:ETC’
-     is one of the values, use the values as completion help, but allow
-     also other values to be entered.  The functions must return ‘nil’
-     if they are not responsible for this property.
-
-
-File: org,  Node: Using the mapping API,  Prev: Using the property API,  Up: Hacking
-
-A.12 Using the mapping API
-==========================
-
-Org has sophisticated mapping capabilities for finding entries.  Org
-uses this functionality internally for generating agenda views.  Org
-also exposes an API for executing arbitrary functions for each selected
-entry.  The API’s main entry point is:
-
- -- Function: org-map-entries func &optional match scope &rest skip
-     Call ‘FUNC’ at each headline selected by ‘MATCH’ in ‘SCOPE’.
-
-     ‘FUNC’ is a function or a Lisp form.  With the cursor positioned at
-     the beginning of the headline, call the function without arguments.
-     Org returns an alist of return values of calls to the function.
-
-     To avoid preserving point, Org wraps the call to ‘FUNC’ in
-     save-excursion form.  After evaluation, Org moves the cursor to the
-     end of the line that was just processed.  Search continues from
-     that point forward.  This may not always work as expected under
-     some conditions, such as if the current sub-tree was removed by a
-     previous archiving operation.  In such rare circumstances, Org
-     skips the next entry entirely when it should not.  To stop Org from
-     such skips, make ‘FUNC’ set the variable ‘org-map-continue-from’ to
-     a specific buffer position.
-
-     ‘MATCH’ is a tags/property/TODO match.  Org iterates only matched
-     headlines.  Org iterates over all headlines when ‘MATCH’ is ‘nil’
-     or ‘t’.
-
-     ‘SCOPE’ determines the scope of this command.  It can be any of:
-
-          nil     the current buffer, respecting the restriction if any
-          tree    the subtree started with the entry at point
-          region  The entries within the active region, if any
-          file    the current buffer, without restriction
-          file-with-archives
-                  the current buffer, and any archives associated with it
-          agenda  all agenda files
-          agenda-with-archives
-                  all agenda files with any archive files associated with them
-          (file1 file2 ...)
-                  if this is a list, all files in the list will be scanned
-     The remaining args are treated as settings for the scanner’s
-     skipping facilities.  Valid args are:
-
-          archive   skip trees with the archive tag
-          comment   skip trees with the COMMENT keyword
-          function or Lisp form
-                    will be used as value for ‘org-agenda-skip-function’,
-                    so whenever the function returns t, FUNC
-                    will not be called for that entry and search will
-                    continue from the point where the function leaves it
-
-   The mapping routine can call any arbitrary function, even functions
-that change meta data or query the property API (*note Using the
-property API::).  Here are some handy functions:
-
- -- Function: org-todo &optional arg
-     Change the TODO state of the entry.  See the docstring of the
-     functions for the many possible values for the argument ‘ARG’.
-
- -- Function: org-priority &optional action
-     Change the priority of the entry.  See the docstring of this
-     function for the possible values for ‘ACTION’.
-
- -- Function: org-toggle-tag tag &optional onoff
-     Toggle the tag ‘TAG’ in the current entry.  Setting ‘ONOFF’ to
-     either ‘on’ or ‘off’ will not toggle tag, but ensure that it is
-     either on or off.
-
- -- Function: org-promote
-     Promote the current entry.
-
- -- Function: org-demote
-     Demote the current entry.
-
-   This example turns all entries tagged with ‘TOMORROW’ into TODO
-entries with keyword ‘UPCOMING’.  Org ignores entries in comment trees
-and archive trees.
-
-     (org-map-entries
-      '(org-todo "UPCOMING")
-      "+TOMORROW" 'file 'archive 'comment)
-
-   The following example counts the number of entries with TODO keyword
-‘WAITING’, in all agenda files.
-
-     (length (org-map-entries t "/+WAITING" 'agenda))
-
-
-File: org,  Node: MobileOrg,  Next: History and acknowledgments,  Prev: Hacking,  Up: Top
-
-Appendix B MobileOrg
-********************
-
-MobileOrg is a companion mobile app that runs on iOS and Android
-devices.  MobileOrg enables offline-views and capture support for an Org
-mode system that is rooted on a “real” computer.  MobileOrg can record
-changes to existing entries.
-
-   The iOS implementation (https://github.com/MobileOrg/) for the
-_iPhone/iPod Touch/iPad_ series of devices, was started by Richard
-Moreland and is now in the hands Sean Escriva.  Android users should
-check out MobileOrg Android
-(http://wiki.github.com/matburt/mobileorg-android/) by Matt Jones.
-Though the two implementations are not identical, they offer similar
-features.
-
-   This appendix describes Org’s support for agenda view formats
-compatible with MobileOrg.  It also describes synchronizing changes,
-such as to notes, between MobileOrg and the computer.
-
-   To change tags and TODO states in MobileOrg, first customize the
-variables ‘org-todo-keywords’ and ‘org-tag-alist’.  These should cover
-all the important tags and TODO keywords, even if Org files use only
-some of them.  Though MobileOrg has in-buffer settings, it understands
-TODO states _sets_ (*note Per-file keywords::) and _mutually exclusive_
-tags (*note Setting tags::) only for those set in these variables.
-
-* Menu:
-
-* Setting up the staging area::  For the mobile device
-* Pushing to MobileOrg::        Uploading Org files and agendas
-* Pulling from MobileOrg::      Integrating captured and flagged items
-
-
-File: org,  Node: Setting up the staging area,  Next: Pushing to MobileOrg,  Up: MobileOrg
-
-B.1 Setting up the staging area
-===============================
-
-MobileOrg needs access to a file directory on a server to interact with
-Emacs.  With a public server, consider encrypting the files.  MobileOrg
-version 1.5 supports encryption for the iPhone.  Org also requires
-‘openssl’ installed on the local computer.  To turn on encryption, set
-the same password in MobileOrg and in Emacs.  Set the password in the
-variable ‘org-mobile-use-encryption’(1).  Note that even after MobileOrg
-encrypts the file contents, the file names will remain visible on the
-file systems of the local computer, the server, and the mobile device.
-
-   For a server to host files, consider options like Dropbox.com
-(http://dropbox.com) account(2).  On first connection, MobileOrg creates
-a directory ‘MobileOrg/’ on Dropbox.  Pass its location to Emacs through
-an init file variable as follows:
-
-     (setq org-mobile-directory "~/Dropbox/MobileOrg")
-
-   Org copies files to the above directory for MobileOrg.  Org also uses
-the same directory for sharing notes between Org and MobileOrg.
-
-   ---------- Footnotes ----------
-
-   (1) If Emacs is configured for safe storing of passwords, then
-configure the variable, ‘org-mobile-encryption-password’; please read
-the docstring of that variable.
-
-   (2) An alternative is to use webdav server.  MobileOrg documentation
-has details of webdav server configuration.  Additional help is at FAQ
-entry (https://orgmode.org/worg/org-faq.html#mobileorg_webdav).
-
-
-File: org,  Node: Pushing to MobileOrg,  Next: Pulling from MobileOrg,  Prev: Setting up the staging area,  Up: MobileOrg
-
-B.2 Pushing to MobileOrg
-========================
-
-Org pushes files listed in ‘org-mobile-files’ to ‘org-mobile-directory’.
-Files include agenda files (as listed in ‘org-agenda-files’).  Customize
-‘org-mobile-files’ to add other files.  File names will be staged with
-paths relative to ‘org-directory’, so all files should be inside this
-directory(1).
-
-   Push creates a special Org file ‘agendas.org’ with custom agenda
-views defined by the user(2).
-
-   Org writes the file ‘index.org’, containing links to other files.
-MobileOrg reads this file first from the server to determine what other
-files to download for agendas.  For faster downloads, MobileOrg will
-read only those files whose checksums(3) have changed.
-
-   ---------- Footnotes ----------
-
-   (1) Symbolic links in ‘org-directory’ should have the same name as
-their targets.
-
-   (2) While creating the agendas, Org mode will force ID properties on
-all referenced entries, so that these entries can be uniquely identified
-if MobileOrg flags them for further action.  To avoid setting properties
-configure the variable ‘org-mobile-force-id-on-agenda-items’ to ‘nil’.
-Org mode will then rely on outline paths, assuming they are unique.
-
-   (3) Checksums are stored automatically in the file ‘checksums.dat’.
-
-
-File: org,  Node: Pulling from MobileOrg,  Prev: Pushing to MobileOrg,  Up: MobileOrg
-
-B.3 Pulling from MobileOrg
-==========================
-
-When MobileOrg synchronizes with the server, it pulls the Org files for
-viewing.  It then appends to the file ‘mobileorg.org’ on the server the
-captured entries, pointers to flagged and changed entries.  Org
-integrates its data in an inbox file format.
-
-  1. Org moves all entries found in ‘mobileorg.org’(1) and appends them
-     to the file pointed to by the variable ‘org-mobile-inbox-for-pull’.
-     Each captured entry and each editing event is a top-level entry in
-     the inbox file.
-  2. After moving the entries, Org attempts changes to MobileOrg.  Some
-     changes are applied directly and without user interaction.
-     Examples include changes to tags, TODO state, headline and body
-     text.  Entries for further action are tagged as ‘:FLAGGED:’.  Org
-     marks entries with problems with an error message in the inbox.
-     They have to be resolved manually.
-  3. Org generates an agenda view for flagged entries for user
-     intervention to clean up.  For notes stored in flagged entries,
-     MobileOrg displays them in the echo area when the cursor is on the
-     corresponding agenda item.
-
-     ‘?’
-          Pressing ‘?’ displays the entire flagged note in another
-          window.  Org also pushes it to the kill ring.  To store
-          flagged note as a normal note, use ‘? z C-y C-c C-c’.
-          Pressing ‘?’ twice does these things: first it removes the
-          ‘:FLAGGED:’ tag; second, it removes the flagged note from the
-          property drawer; third, it signals that manual editing of the
-          flagged entry is now finished.
-
-   ‘C-c a ?’ returns to the agenda view to finish processing flagged
-entries.  Note that these entries may not be the most recent since
-MobileOrg searches files that were last pulled.  To get an updated
-agenda view with changes since the last pull, pull again.
-
-   ---------- Footnotes ----------
-
-   (1) ‘mobileorg.org’ will be empty after this operation.
-
-
-File: org,  Node: History and acknowledgments,  Next: GNU Free Documentation License,  Prev: MobileOrg,  Up: Top
-
-Appendix C History and acknowledgments
-**************************************
-
-C.1 From Carsten
-================
-
-Org was born in 2003, out of frustration over the user interface of the
-Emacs Outline mode.  I was trying to organize my notes and projects, and
-using Emacs seemed to be the natural way to go.  However, having to
-remember eleven different commands with two or three keys per command,
-only to hide and show parts of the outline tree, that seemed entirely
-unacceptable.  Also, when using outlines to take notes, I constantly
-wanted to restructure the tree, organizing it paralleling my thoughts
-and plans.  _Visibility cycling_ and _structure editing_ were originally
-implemented in the package ‘outline-magic.el’, but quickly moved to the
-more general ‘org.el’.  As this environment became comfortable for
-project planning, the next step was adding _TODO entries_, basic
-_timestamps_, and _table support_.  These areas highlighted the two main
-goals that Org still has today: to be a new, outline-based, plain text
-mode with innovative and intuitive editing features, and to incorporate
-project planning functionality directly into a notes file.
-
-   Since the first release, literally thousands of emails to me or to
-<emacs-orgmode@gnu.org> have provided a constant stream of bug reports,
-feedback, new ideas, and sometimes patches and add-on code.  Many thanks
-to everyone who has helped to improve this package.  I am trying to keep
-here a list of the people who had significant influence in shaping one
-or more aspects of Org.  The list may not be complete, if I have
-forgotten someone, please accept my apologies and let me know.
-
-   Before I get to this list, a few special mentions are in order:
-
-Bastien Guerry
-     Bastien has written a large number of extensions to Org (most of
-     them integrated into the core by now), including the LaTeX exporter
-     and the plain list parser.  His support during the early days was
-     central to the success of this project.  Bastien also invented
-     Worg, helped establishing the Web presence of Org, and sponsored
-     hosting costs for the orgmode.org website.  Bastien stepped in as
-     maintainer of Org between 2011 and 2013, at a time when I
-     desperately needed a break.
-Eric Schulte and Dan Davison
-     Eric and Dan are jointly responsible for the Org-babel system,
-     which turns Org into a multi-language environment for evaluating
-     code and doing literate programming and reproducible research.
-     This has become one of Org’s killer features that define what Org
-     is today.
-John Wiegley
-     John has contributed a number of great ideas and patches directly
-     to Org, including the attachment system (‘org-attach.el’),
-     integration with Apple Mail (‘org-mac-message.el’), hierarchical
-     dependencies of TODO items, habit tracking (‘org-habits.el’), and
-     encryption (‘org-crypt.el’).  Also, the capture system is really an
-     extended copy of his great ‘remember.el’.
-Sebastian Rose
-     Without Sebastian, the HTML/XHTML publishing of Org would be the
-     pitiful work of an ignorant amateur.  Sebastian has pushed this
-     part of Org onto a much higher level.  He also wrote ‘org-info.js’,
-     a Java script for displaying web pages derived from Org using an
-     Info-like or a folding interface with single-key navigation.
-
-See below for the full list of contributions!  Again, please let me know
-what I am missing here!
-
-C.2 From Bastien
-================
-
-I (Bastien) have been maintaining Org between 2011 and 2013.  This
-appendix would not be complete without adding a few more acknowledgments
-and thanks.
-
-   I am first grateful to Carsten for his trust while handing me over
-the maintainership of Org.  His unremitting support is what really
-helped me getting more confident over time, with both the community and
-the code.
-
-   When I took over maintainership, I knew I would have to make Org more
-collaborative than ever, as I would have to rely on people that are more
-knowledgeable than I am on many parts of the code.  Here is a list of
-the persons I could rely on, they should really be considered
-co-maintainers, either of the code or the community:
-
-Eric Schulte
-     Eric is maintaining the Babel parts of Org.  His reactivity here
-     kept me away from worrying about possible bugs here and let me
-     focus on other parts.
-
-Nicolas Goaziou
-     Nicolas is maintaining the consistency of the deepest parts of Org.
-     His work on ‘org-element.el’ and ‘ox.el’ has been outstanding, and
-     it opened the doors for many new ideas and features.  He rewrote
-     many of the old exporters to use the new export engine, and helped
-     with documenting this major change.  More importantly (if that’s
-     possible), he has been more than reliable during all the work done
-     for Org 8.0, and always very reactive on the mailing list.
-
-Achim Gratz
-     Achim rewrote the building process of Org, turning some _ad hoc_
-     tools into a flexible and conceptually clean process.  He patiently
-     coped with the many hiccups that such a change can create for
-     users.
-
-Nick Dokos
-     The Org mode mailing list would not be such a nice place without
-     Nick, who patiently helped users so many times.  It is impossible
-     to overestimate such a great help, and the list would not be so
-     active without him.
-
-   I received support from so many users that it is clearly impossible
-to be fair when shortlisting a few of them, but Org’s history would not
-be complete if the ones above were not mentioned in this manual.
-
-C.3 List of contributions
-=========================
-
-   • Russel Adams came up with the idea for drawers.
-   • Suvayu Ali has steadily helped on the mailing list, providing
-     useful feedback on many features and several patches.
-   • Luis Anaya wrote ‘ox-man.el’.
-   • Thomas Baumann wrote ‘org-bbdb.el’ and ‘org-mhe.el’.
-   • Michael Brand helped by reporting many bugs and testing many
-     features.  He also implemented the distinction between empty fields
-     and 0-value fields in Org’s spreadsheets.
-   • Christophe Bataillon created the great unicorn logo that we use on
-     the Org mode website.
-   • Alex Bochannek provided a patch for rounding timestamps.
-   • Jan Böcker wrote ‘org-docview.el’.
-   • Brad Bozarth showed how to pull RSS feed data into Org mode files.
-   • Tom Breton wrote ‘org-choose.el’.
-   • Charles Cave’s suggestion sparked the implementation of templates
-     for Remember, which are now templates for capture.
-   • Pavel Chalmoviansky influenced the agenda treatment of items with
-     specified time.
-   • Gregory Chernov patched support for Lisp forms into table
-     calculations and improved XEmacs compatibility, in particular by
-     porting ‘nouline.el’ to XEmacs.
-   • Sacha Chua suggested copying some linking code from Planner, and
-     helped make Org popular through her blog.
-   • Toby S. Cubitt contributed to the code for clock formats.
-   • Baoqiu Cui contributed the first DocBook exporter.  In Org 8.0, we
-     go a different route: you can now export to Texinfo and export the
-     ‘.texi’ file to DocBook using ‘makeinfo’.
-   • Eddward DeVilla proposed and tested checkbox statistics.  He also
-     came up with the idea of properties, and that there should be an
-     API for them.
-   • Nick Dokos tracked down several nasty bugs.
-   • Kees Dullemond used to edit projects lists directly in HTML and so
-     inspired some of the early development, including HTML export.  He
-     also asked for a way to narrow wide table columns.
-   • Jason Dunsmore has been maintaining the Org-Mode server at
-     Rackspace for several years now.  He also sponsored the hosting
-     costs until Rackspace started to host us for free.
-   • Thomas S. Dye contributed documentation on Worg and helped
-     integrating the Org-Babel documentation into the manual.
-   • Christian Egli converted the documentation into Texinfo format,
-     inspired the agenda, patched CSS formatting into the HTML exporter,
-     and wrote ‘org-taskjuggler.el’, which has been rewritten by Nicolas
-     Goaziou as ‘ox-taskjuggler.el’ for Org 8.0.
-   • David Emery provided a patch for custom CSS support in exported
-     HTML agendas.
-   • Sean Escriva took over MobileOrg development on the iPhone
-     platform.
-   • Nic Ferrier contributed mailcap and XOXO support.
-   • Miguel A. Figueroa-Villanueva implemented hierarchical checkboxes.
-   • John Foerch figured out how to make incremental search show context
-     around a match in a hidden outline tree.
-   • Raimar Finken wrote ‘org-git-line.el’.
-   • Mikael Fornius works as a mailing list moderator.
-   • Austin Frank works as a mailing list moderator.
-   • Eric Fraga drove the development of BEAMER export with ideas and
-     testing.
-   • Barry Gidden did proofreading the manual in preparation for the
-     book publication through Network Theory Ltd.
-   • Niels Giesen had the idea to automatically archive DONE trees.
-   • Nicolas Goaziou rewrote much of the plain list code.  He also wrote
-     ‘org-element.el’ and ‘org-export.el’, which was a huge step forward
-     in implementing a clean framework for Org exporters.
-   • Kai Grossjohann pointed out key-binding conflicts with other
-     packages.
-   • Brian Gough of Network Theory Ltd publishes the Org mode manual as
-     a book.
-   • Bernt Hansen has driven much of the support for auto-repeating
-     tasks, task state change logging, and the clocktable.  His clear
-     explanations have been critical when we started to adopt the Git
-     version control system.
-   • Manuel Hermenegildo has contributed various ideas, small fixes and
-     patches.
-   • Phil Jackson wrote ‘org-irc.el’.
-   • Scott Jaderholm proposed footnotes, control over whitespace between
-     folded entries, and column view for properties.
-   • Matt Jones wrote MobileOrg Android.
-   • Tokuya Kameshima wrote ‘org-wl.el’ and ‘org-mew.el’.
-   • Jonathan Leech-Pepin wrote ‘ox-texinfo.el’.
-   • Shidai Liu ("Leo") asked for embedded LaTeX and tested it.  He also
-     provided frequent feedback and some patches.
-   • Matt Lundin has proposed last-row references for table formulas and
-     named invisible anchors.  He has also worked a lot on the FAQ.
-   • David Maus wrote ‘org-atom.el’, maintains the issues file for Org,
-     and is a prolific contributor on the mailing list with competent
-     replies, small fixes and patches.
-   • Jason F. McBrayer suggested agenda export to CSV format.
-   • Max Mikhanosha came up with the idea of refiling and sticky
-     agendas.
-   • Dmitri Minaev sent a patch to set priority limits on a per-file
-     basis.
-   • Stefan Monnier provided a patch to keep the Emacs-Lisp compiler
-     happy.
-   • Richard Moreland wrote MobileOrg for the iPhone.
-   • Rick Moynihan proposed allowing multiple TODO sequences in a file
-     and being able to quickly restrict the agenda to a subtree.
-   • Todd Neal provided patches for links to Info files and Elisp forms.
-   • Greg Newman refreshed the unicorn logo into its current form.
-   • Tim O’Callaghan suggested in-file links, search options for general
-     file links, and TAGS.
-   • Osamu Okano wrote ‘orgcard2ref.pl’, a Perl program to create a text
-     version of the reference card.
-   • Takeshi Okano translated the manual and David O’Toole’s tutorial
-     into Japanese.
-   • Oliver Oppitz suggested multi-state TODO items.
-   • Scott Otterson sparked the introduction of descriptive text for
-     links, among other things.
-   • Pete Phillips helped during the development of the TAGS feature,
-     and provided frequent feedback.
-   • Francesco Pizzolante provided patches that helped speeding up the
-     agenda generation.
-   • Martin Pohlack provided the code snippet to bundle character
-     insertion into bundles of 20 for undo.
-   • Rackspace.com is hosting our website for free.  Thank you
-     Rackspace!
-   • T.V. Raman reported bugs and suggested improvements.
-   • Matthias Rempe (Oelde) provided ideas, Windows support, and quality
-     control.
-   • Paul Rivier provided the basic implementation of named footnotes.
-     He also acted as mailing list moderator for some time.
-   • Kevin Rogers contributed code to access VM files on remote hosts.
-   • Frank Ruell solved the mystery of the ‘keymapp nil’ bug, a conflict
-     with ‘allout.el’.
-   • Jason Riedy generalized the send-receive mechanism for Orgtbl
-     tables with extensive patches.
-   • Philip Rooke created the Org reference card, provided lots of
-     feedback, developed and applied standards to the Org documentation.
-   • Christian Schlauer proposed angular brackets around links, among
-     other things.
-   • Christopher Schmidt reworked ‘orgstruct-mode’ so that users can
-     enjoy folding in non-org buffers by using Org headlines in
-     comments.
-   • Paul Sexton wrote ‘org-ctags.el’.
-   • Linking to VM/BBDB/Gnus was first inspired by Tom Shannon’s
-     ‘organizer-mode.el’.
-   • Ilya Shlyakhter proposed the Archive Sibling, line numbering in
-     literal examples, and remote highlighting for referenced code
-     lines.
-   • Stathis Sideris wrote the ‘ditaa.jar’ ASCII to PNG converter that
-     is now packaged into Org’s ‘contrib’ directory.
-   • Daniel Sinder came up with the idea of internal archiving by
-     locking subtrees.
-   • Dale Smith proposed link abbreviations.
-   • James TD Smith has contributed a large number of patches for useful
-     tweaks and features.
-   • Adam Spiers asked for global linking commands, inspired the link
-     extension system, added support for mairix, and proposed the
-     mapping API.
-   • Ulf Stegemann created the table to translate special symbols to
-     HTML, LaTeX, UTF-8, Latin-1 and ASCII.
-   • Andy Stewart contributed code to ‘org-w3m.el’, to copy HTML content
-     with links transformation to Org syntax.
-   • David O’Toole wrote ‘org-publish.el’ and drafted the manual chapter
-     about publishing.
-   • Jambunathan K contributed the ODT exporter and rewrote the HTML
-     exporter.
-   • Sebastien Vauban reported many issues with LaTeX and BEAMER export
-     and enabled source code highlighting in Gnus.
-   • Stefan Vollmar organized a video-recorded talk at the
-     Max-Planck-Institute for Neurology.  He also inspired the creation
-     of a concept index for HTML export.
-   • Jürgen Vollmer contributed code generating the table of contents in
-     HTML output.
-   • Samuel Wales has provided important feedback and bug reports.
-   • Chris Wallace provided a patch implementing the ‘QUOTE’ keyword.
-   • David Wainberg suggested archiving, and improvements to the linking
-     system.
-   • Carsten Wimmer suggested some changes and helped fix a bug in
-     linking to Gnus.
-   • Roland Winkler requested additional key bindings to make Org work
-     on a tty.
-   • Piotr Zielinski wrote ‘org-mouse.el’, proposed agenda blocks and
-     contributed various ideas and code snippets.
-   • Marco Wahl wrote ‘org-eww.el’.
-
-
-File: org,  Node: GNU Free Documentation License,  Next: Main Index,  Prev: History and acknowledgments,  Up: Top
-
-Appendix D GNU Free Documentation License
-*****************************************
-
-                     Version 1.3, 3 November 2008
-
-     Copyright © 2000, 2001, 2002, 2007, 2008, 2013, 2014, 2018 Free Software Foundation, Inc.
-     <http://fsf.org/>
-
-     Everyone is permitted to copy and distribute verbatim copies
-     of this license document, but changing it is not allowed.
-
-  0. PREAMBLE
-
-     The purpose of this License is to make a manual, textbook, or other
-     functional and useful document “free” in the sense of freedom: to
-     assure everyone the effective freedom to copy and redistribute it,
-     with or without modifying it, either commercially or
-     noncommercially.  Secondarily, this License preserves for the
-     author and publisher a way to get credit for their work, while not
-     being considered responsible for modifications made by others.
-
-     This License is a kind of “copyleft”, which means that derivative
-     works of the document must themselves be free in the same sense.
-     It complements the GNU General Public License, which is a copyleft
-     license designed for free software.
-
-     We have designed this License in order to use it for manuals for
-     free software, because free software needs free documentation: a
-     free program should come with manuals providing the same freedoms
-     that the software does.  But this License is not limited to
-     software manuals; it can be used for any textual work, regardless
-     of subject matter or whether it is published as a printed book.  We
-     recommend this License principally for works whose purpose is
-     instruction or reference.
-
-  1. APPLICABILITY AND DEFINITIONS
-
-     This License applies to any manual or other work, in any medium,
-     that contains a notice placed by the copyright holder saying it can
-     be distributed under the terms of this License.  Such a notice
-     grants a world-wide, royalty-free license, unlimited in duration,
-     to use that work under the conditions stated herein.  The
-     “Document”, below, refers to any such manual or work.  Any member
-     of the public is a licensee, and is addressed as “you”.  You accept
-     the license if you copy, modify or distribute the work in a way
-     requiring permission under copyright law.
-
-     A “Modified Version” of the Document means any work containing the
-     Document or a portion of it, either copied verbatim, or with
-     modifications and/or translated into another language.
-
-     A “Secondary Section” is a named appendix or a front-matter section
-     of the Document that deals exclusively with the relationship of the
-     publishers or authors of the Document to the Document’s overall
-     subject (or to related matters) and contains nothing that could
-     fall directly within that overall subject.  (Thus, if the Document
-     is in part a textbook of mathematics, a Secondary Section may not
-     explain any mathematics.)  The relationship could be a matter of
-     historical connection with the subject or with related matters, or
-     of legal, commercial, philosophical, ethical or political position
-     regarding them.
-
-     The “Invariant Sections” are certain Secondary Sections whose
-     titles are designated, as being those of Invariant Sections, in the
-     notice that says that the Document is released under this License.
-     If a section does not fit the above definition of Secondary then it
-     is not allowed to be designated as Invariant.  The Document may
-     contain zero Invariant Sections.  If the Document does not identify
-     any Invariant Sections then there are none.
-
-     The “Cover Texts” are certain short passages of text that are
-     listed, as Front-Cover Texts or Back-Cover Texts, in the notice
-     that says that the Document is released under this License.  A
-     Front-Cover Text may be at most 5 words, and a Back-Cover Text may
-     be at most 25 words.
-
-     A “Transparent” copy of the Document means a machine-readable copy,
-     represented in a format whose specification is available to the
-     general public, that is suitable for revising the document
-     straightforwardly with generic text editors or (for images composed
-     of pixels) generic paint programs or (for drawings) some widely
-     available drawing editor, and that is suitable for input to text
-     formatters or for automatic translation to a variety of formats
-     suitable for input to text formatters.  A copy made in an otherwise
-     Transparent file format whose markup, or absence of markup, has
-     been arranged to thwart or discourage subsequent modification by
-     readers is not Transparent.  An image format is not Transparent if
-     used for any substantial amount of text.  A copy that is not
-     “Transparent” is called “Opaque”.
-
-     Examples of suitable formats for Transparent copies include plain
-     ASCII without markup, Texinfo input format, LaTeX input format,
-     SGML or XML using a publicly available DTD, and standard-conforming
-     simple HTML, PostScript or PDF designed for human modification.
-     Examples of transparent image formats include PNG, XCF and JPG.
-     Opaque formats include proprietary formats that can be read and
-     edited only by proprietary word processors, SGML or XML for which
-     the DTD and/or processing tools are not generally available, and
-     the machine-generated HTML, PostScript or PDF produced by some word
-     processors for output purposes only.
-
-     The “Title Page” means, for a printed book, the title page itself,
-     plus such following pages as are needed to hold, legibly, the
-     material this License requires to appear in the title page.  For
-     works in formats which do not have any title page as such, “Title
-     Page” means the text near the most prominent appearance of the
-     work’s title, preceding the beginning of the body of the text.
-
-     The “publisher” means any person or entity that distributes copies
-     of the Document to the public.
-
-     A section “Entitled XYZ” means a named subunit of the Document
-     whose title either is precisely XYZ or contains XYZ in parentheses
-     following text that translates XYZ in another language.  (Here XYZ
-     stands for a specific section name mentioned below, such as
-     “Acknowledgements”, “Dedications”, “Endorsements”, or “History”.)
-     To “Preserve the Title” of such a section when you modify the
-     Document means that it remains a section “Entitled XYZ” according
-     to this definition.
-
-     The Document may include Warranty Disclaimers next to the notice
-     which states that this License applies to the Document.  These
-     Warranty Disclaimers are considered to be included by reference in
-     this License, but only as regards disclaiming warranties: any other
-     implication that these Warranty Disclaimers may have is void and
-     has no effect on the meaning of this License.
-
-  2. VERBATIM COPYING
-
-     You may copy and distribute the Document in any medium, either
-     commercially or noncommercially, provided that this License, the
-     copyright notices, and the license notice saying this License
-     applies to the Document are reproduced in all copies, and that you
-     add no other conditions whatsoever to those of this License.  You
-     may not use technical measures to obstruct or control the reading
-     or further copying of the copies you make or distribute.  However,
-     you may accept compensation in exchange for copies.  If you
-     distribute a large enough number of copies you must also follow the
-     conditions in section 3.
-
-     You may also lend copies, under the same conditions stated above,
-     and you may publicly display copies.
-
-  3. COPYING IN QUANTITY
-
-     If you publish printed copies (or copies in media that commonly
-     have printed covers) of the Document, numbering more than 100, and
-     the Document’s license notice requires Cover Texts, you must
-     enclose the copies in covers that carry, clearly and legibly, all
-     these Cover Texts: Front-Cover Texts on the front cover, and
-     Back-Cover Texts on the back cover.  Both covers must also clearly
-     and legibly identify you as the publisher of these copies.  The
-     front cover must present the full title with all words of the title
-     equally prominent and visible.  You may add other material on the
-     covers in addition.  Copying with changes limited to the covers, as
-     long as they preserve the title of the Document and satisfy these
-     conditions, can be treated as verbatim copying in other respects.
-
-     If the required texts for either cover are too voluminous to fit
-     legibly, you should put the first ones listed (as many as fit
-     reasonably) on the actual cover, and continue the rest onto
-     adjacent pages.
-
-     If you publish or distribute Opaque copies of the Document
-     numbering more than 100, you must either include a machine-readable
-     Transparent copy along with each Opaque copy, or state in or with
-     each Opaque copy a computer-network location from which the general
-     network-using public has access to download using public-standard
-     network protocols a complete Transparent copy of the Document, free
-     of added material.  If you use the latter option, you must take
-     reasonably prudent steps, when you begin distribution of Opaque
-     copies in quantity, to ensure that this Transparent copy will
-     remain thus accessible at the stated location until at least one
-     year after the last time you distribute an Opaque copy (directly or
-     through your agents or retailers) of that edition to the public.
-
-     It is requested, but not required, that you contact the authors of
-     the Document well before redistributing any large number of copies,
-     to give them a chance to provide you with an updated version of the
-     Document.
-
-  4. MODIFICATIONS
-
-     You may copy and distribute a Modified Version of the Document
-     under the conditions of sections 2 and 3 above, provided that you
-     release the Modified Version under precisely this License, with the
-     Modified Version filling the role of the Document, thus licensing
-     distribution and modification of the Modified Version to whoever
-     possesses a copy of it.  In addition, you must do these things in
-     the Modified Version:
-
-       A. Use in the Title Page (and on the covers, if any) a title
-          distinct from that of the Document, and from those of previous
-          versions (which should, if there were any, be listed in the
-          History section of the Document).  You may use the same title
-          as a previous version if the original publisher of that
-          version gives permission.
-
-       B. List on the Title Page, as authors, one or more persons or
-          entities responsible for authorship of the modifications in
-          the Modified Version, together with at least five of the
-          principal authors of the Document (all of its principal
-          authors, if it has fewer than five), unless they release you
-          from this requirement.
-
-       C. State on the Title page the name of the publisher of the
-          Modified Version, as the publisher.
-
-       D. Preserve all the copyright notices of the Document.
-
-       E. Add an appropriate copyright notice for your modifications
-          adjacent to the other copyright notices.
-
-       F. Include, immediately after the copyright notices, a license
-          notice giving the public permission to use the Modified
-          Version under the terms of this License, in the form shown in
-          the Addendum below.
-
-       G. Preserve in that license notice the full lists of Invariant
-          Sections and required Cover Texts given in the Document’s
-          license notice.
-
-       H. Include an unaltered copy of this License.
-
-       I. Preserve the section Entitled “History”, Preserve its Title,
-          and add to it an item stating at least the title, year, new
-          authors, and publisher of the Modified Version as given on the
-          Title Page.  If there is no section Entitled “History” in the
-          Document, create one stating the title, year, authors, and
-          publisher of the Document as given on its Title Page, then add
-          an item describing the Modified Version as stated in the
-          previous sentence.
-
-       J. Preserve the network location, if any, given in the Document
-          for public access to a Transparent copy of the Document, and
-          likewise the network locations given in the Document for
-          previous versions it was based on.  These may be placed in the
-          “History” section.  You may omit a network location for a work
-          that was published at least four years before the Document
-          itself, or if the original publisher of the version it refers
-          to gives permission.
-
-       K. For any section Entitled “Acknowledgements” or “Dedications”,
-          Preserve the Title of the section, and preserve in the section
-          all the substance and tone of each of the contributor
-          acknowledgements and/or dedications given therein.
-
-       L. Preserve all the Invariant Sections of the Document, unaltered
-          in their text and in their titles.  Section numbers or the
-          equivalent are not considered part of the section titles.
-
-       M. Delete any section Entitled “Endorsements”.  Such a section
-          may not be included in the Modified Version.
-
-       N. Do not retitle any existing section to be Entitled
-          “Endorsements” or to conflict in title with any Invariant
-          Section.
-
-       O. Preserve any Warranty Disclaimers.
-
-     If the Modified Version includes new front-matter sections or
-     appendices that qualify as Secondary Sections and contain no
-     material copied from the Document, you may at your option designate
-     some or all of these sections as invariant.  To do this, add their
-     titles to the list of Invariant Sections in the Modified Version’s
-     license notice.  These titles must be distinct from any other
-     section titles.
-
-     You may add a section Entitled “Endorsements”, provided it contains
-     nothing but endorsements of your Modified Version by various
-     parties—for example, statements of peer review or that the text has
-     been approved by an organization as the authoritative definition of
-     a standard.
-
-     You may add a passage of up to five words as a Front-Cover Text,
-     and a passage of up to 25 words as a Back-Cover Text, to the end of
-     the list of Cover Texts in the Modified Version.  Only one passage
-     of Front-Cover Text and one of Back-Cover Text may be added by (or
-     through arrangements made by) any one entity.  If the Document
-     already includes a cover text for the same cover, previously added
-     by you or by arrangement made by the same entity you are acting on
-     behalf of, you may not add another; but you may replace the old
-     one, on explicit permission from the previous publisher that added
-     the old one.
-
-     The author(s) and publisher(s) of the Document do not by this
-     License give permission to use their names for publicity for or to
-     assert or imply endorsement of any Modified Version.
-
-  5. COMBINING DOCUMENTS
-
-     You may combine the Document with other documents released under
-     this License, under the terms defined in section 4 above for
-     modified versions, provided that you include in the combination all
-     of the Invariant Sections of all of the original documents,
-     unmodified, and list them all as Invariant Sections of your
-     combined work in its license notice, and that you preserve all
-     their Warranty Disclaimers.
-
-     The combined work need only contain one copy of this License, and
-     multiple identical Invariant Sections may be replaced with a single
-     copy.  If there are multiple Invariant Sections with the same name
-     but different contents, make the title of each such section unique
-     by adding at the end of it, in parentheses, the name of the
-     original author or publisher of that section if known, or else a
-     unique number.  Make the same adjustment to the section titles in
-     the list of Invariant Sections in the license notice of the
-     combined work.
-
-     In the combination, you must combine any sections Entitled
-     “History” in the various original documents, forming one section
-     Entitled “History”; likewise combine any sections Entitled
-     “Acknowledgements”, and any sections Entitled “Dedications”.  You
-     must delete all sections Entitled “Endorsements.”
-
-  6. COLLECTIONS OF DOCUMENTS
-
-     You may make a collection consisting of the Document and other
-     documents released under this License, and replace the individual
-     copies of this License in the various documents with a single copy
-     that is included in the collection, provided that you follow the
-     rules of this License for verbatim copying of each of the documents
-     in all other respects.
-
-     You may extract a single document from such a collection, and
-     distribute it individually under this License, provided you insert
-     a copy of this License into the extracted document, and follow this
-     License in all other respects regarding verbatim copying of that
-     document.
-
-  7. AGGREGATION WITH INDEPENDENT WORKS
-
-     A compilation of the Document or its derivatives with other
-     separate and independent documents or works, in or on a volume of a
-     storage or distribution medium, is called an “aggregate” if the
-     copyright resulting from the compilation is not used to limit the
-     legal rights of the compilation’s users beyond what the individual
-     works permit.  When the Document is included in an aggregate, this
-     License does not apply to the other works in the aggregate which
-     are not themselves derivative works of the Document.
-
-     If the Cover Text requirement of section 3 is applicable to these
-     copies of the Document, then if the Document is less than one half
-     of the entire aggregate, the Document’s Cover Texts may be placed
-     on covers that bracket the Document within the aggregate, or the
-     electronic equivalent of covers if the Document is in electronic
-     form.  Otherwise they must appear on printed covers that bracket
-     the whole aggregate.
-
-  8. TRANSLATION
-
-     Translation is considered a kind of modification, so you may
-     distribute translations of the Document under the terms of section
-     4.  Replacing Invariant Sections with translations requires special
-     permission from their copyright holders, but you may include
-     translations of some or all Invariant Sections in addition to the
-     original versions of these Invariant Sections.  You may include a
-     translation of this License, and all the license notices in the
-     Document, and any Warranty Disclaimers, provided that you also
-     include the original English version of this License and the
-     original versions of those notices and disclaimers.  In case of a
-     disagreement between the translation and the original version of
-     this License or a notice or disclaimer, the original version will
-     prevail.
-
-     If a section in the Document is Entitled “Acknowledgements”,
-     “Dedications”, or “History”, the requirement (section 4) to
-     Preserve its Title (section 1) will typically require changing the
-     actual title.
-
-  9. TERMINATION
-
-     You may not copy, modify, sublicense, or distribute the Document
-     except as expressly provided under this License.  Any attempt
-     otherwise to copy, modify, sublicense, or distribute it is void,
-     and will automatically terminate your rights under this License.
-
-     However, if you cease all violation of this License, then your
-     license from a particular copyright holder is reinstated (a)
-     provisionally, unless and until the copyright holder explicitly and
-     finally terminates your license, and (b) permanently, if the
-     copyright holder fails to notify you of the violation by some
-     reasonable means prior to 60 days after the cessation.
-
-     Moreover, your license from a particular copyright holder is
-     reinstated permanently if the copyright holder notifies you of the
-     violation by some reasonable means, this is the first time you have
-     received notice of violation of this License (for any work) from
-     that copyright holder, and you cure the violation prior to 30 days
-     after your receipt of the notice.
-
-     Termination of your rights under this section does not terminate
-     the licenses of parties who have received copies or rights from you
-     under this License.  If your rights have been terminated and not
-     permanently reinstated, receipt of a copy of some or all of the
-     same material does not give you any rights to use it.
-
-  10. FUTURE REVISIONS OF THIS LICENSE
-
-     The Free Software Foundation may publish new, revised versions of
-     the GNU Free Documentation License from time to time.  Such new
-     versions will be similar in spirit to the present version, but may
-     differ in detail to address new problems or concerns.  See
-     <http://www.gnu.org/copyleft/>.
-
-     Each version of the License is given a distinguishing version
-     number.  If the Document specifies that a particular numbered
-     version of this License “or any later version” applies to it, you
-     have the option of following the terms and conditions either of
-     that specified version or of any later version that has been
-     published (not as a draft) by the Free Software Foundation.  If the
-     Document does not specify a version number of this License, you may
-     choose any version ever published (not as a draft) by the Free
-     Software Foundation.  If the Document specifies that a proxy can
-     decide which future versions of this License can be used, that
-     proxy’s public statement of acceptance of a version permanently
-     authorizes you to choose that version for the Document.
-
-  11. RELICENSING
-
-     “Massive Multiauthor Collaboration Site” (or “MMC Site”) means any
-     World Wide Web server that publishes copyrightable works and also
-     provides prominent facilities for anybody to edit those works.  A
-     public wiki that anybody can edit is an example of such a server.
-     A “Massive Multiauthor Collaboration” (or “MMC”) contained in the
-     site means any set of copyrightable works thus published on the MMC
-     site.
-
-     “CC-BY-SA” means the Creative Commons Attribution-Share Alike 3.0
-     license published by Creative Commons Corporation, a not-for-profit
-     corporation with a principal place of business in San Francisco,
-     California, as well as future copyleft versions of that license
-     published by that same organization.
-
-     “Incorporate” means to publish or republish a Document, in whole or
-     in part, as part of another Document.
-
-     An MMC is “eligible for relicensing” if it is licensed under this
-     License, and if all works that were first published under this
-     License somewhere other than this MMC, and subsequently
-     incorporated in whole or in part into the MMC, (1) had no cover
-     texts or invariant sections, and (2) were thus incorporated prior
-     to November 1, 2008.
-
-     The operator of an MMC Site may republish an MMC contained in the
-     site under CC-BY-SA on the same site at any time before August 1,
-     2009, provided the MMC is eligible for relicensing.
-
-ADDENDUM: How to use this License for your documents
-====================================================
-
-To use this License in a document you have written, include a copy of
-the License in the document and put the following copyright and license
-notices just after the title page:
-
-       Copyright (C)  YEAR  YOUR NAME.
-       Permission is granted to copy, distribute and/or modify this document
-       under the terms of the GNU Free Documentation License, Version 1.3
-       or any later version published by the Free Software Foundation;
-       with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
-       Texts.  A copy of the license is included in the section entitled ``GNU
-       Free Documentation License''.
-
-   If you have Invariant Sections, Front-Cover Texts and Back-Cover
-Texts, replace the “with...Texts.” line with this:
-
-         with the Invariant Sections being LIST THEIR TITLES, with
-         the Front-Cover Texts being LIST, and with the Back-Cover Texts
-         being LIST.
-
-   If you have Invariant Sections without Cover Texts, or some other
-combination of the three, merge those two alternatives to suit the
-situation.
-
-   If your document contains nontrivial examples of program code, we
-recommend releasing these examples in parallel under your choice of free
-software license, such as the GNU General Public License, to permit
-their use in free software.
-
-
-File: org,  Node: Main Index,  Next: Key Index,  Prev: GNU Free Documentation License,  Up: Top
-
-Concept index
-*************
-
-�[index�]
-* Menu:
-
-* #+ARCHIVE:                             Moving subtrees.     (line  33)
-* #+ASCII:                               ASCII/Latin-1/UTF-8 export.
-                                                              (line  56)
-* #+ATTR_ASCII:                          ASCII/Latin-1/UTF-8 export.
-                                                              (line  67)
-* #+ATTR_BEAMER:                         Beamer specific syntax.
-                                                              (line  35)
-* #+ATTR_HTML:                           Links in HTML export.
-                                                              (line  27)
-* #+ATTR_HTML <1>:                       Tables in HTML export.
-                                                              (line  11)
-* #+ATTR_HTML <2>:                       Images in HTML export.
-                                                              (line  29)
-* #+ATTR_LATEX, in example blocks:       Example blocks in LaTeX export.
-                                                              (line   6)
-* #+ATTR_LATEX, in horizontal rules:     Horizontal rules in LaTeX export.
-                                                              (line   6)
-* #+ATTR_LATEX, in images:               Images in LaTeX export.
-                                                              (line   6)
-* #+ATTR_LATEX, in plain lists:          Plain lists in LaTeX export.
-                                                              (line   6)
-* #+ATTR_LATEX, in source blocks:        Source blocks in LaTeX export.
-                                                              (line   6)
-* #+ATTR_LATEX, in special blocks:       Special blocks in LaTeX export.
-                                                              (line   6)
-* #+ATTR_LATEX, in tables:               Tables in LaTeX export.
-                                                              (line   6)
-* #+ATTR_ODT:                            Tables in ODT export.
-                                                              (line  20)
-* #+ATTR_ODT <1>:                        Images in ODT export.
-                                                              (line  31)
-* #+ATTR_ODT <2>:                        Images in ODT export.
-                                                              (line  76)
-* #+ATTR_ODT <3>:                        Customizing tables in ODT export.
-                                                              (line   6)
-* #+ATTR_TEXINFO, in images:             Images in Texinfo export.
-                                                              (line   6)
-* #+ATTR_TEXINFO, in plain lists:        Plain lists in Texinfo export.
-                                                              (line   6)
-* #+ATTR_TEXINFO, in special blocks:     Special blocks in Texinfo export.
-                                                              (line   6)
-* #+ATTR_TEXINFO, in tables:             Tables in Texinfo export.
-                                                              (line   6)
-* #+AUTHOR:                              Export settings.     (line  25)
-* #+BEAMER:                              Beamer specific syntax.
-                                                              (line  19)
-* #+BEAMER_FONT_THEME:                   Beamer specific export settings.
-                                                              (line  16)
-* #+BEAMER_HEADER:                       Beamer specific export settings.
-                                                              (line  25)
-* #+BEAMER_INNER_THEME:                  Beamer specific export settings.
-                                                              (line  19)
-* #+BEAMER_OUTER_THEME:                  Beamer specific export settings.
-                                                              (line  22)
-* #+BEAMER_THEME:                        Beamer specific export settings.
-                                                              (line  11)
-* #+BEGIN, clocktable:                   The clock table.     (line  32)
-* #+BEGIN, columnview:                   Capturing column view.
-                                                              (line  11)
-* #+BEGIN, dynamic block:                Dynamic blocks.      (line  15)
-* #+BEGIN_CENTER:                        Paragraphs.          (line  31)
-* #+BEGIN_COMMENT:                       Comment lines.       (line  10)
-* #+BEGIN_EXAMPLE:                       Literal examples.    (line   8)
-* #+BEGIN_EXPORT ascii:                  ASCII/Latin-1/UTF-8 export.
-                                                              (line  56)
-* #+BEGIN_EXPORT beamer:                 Beamer specific syntax.
-                                                              (line  19)
-* #+BEGIN_EXPORT html:                   Quoting HTML tags.   (line  14)
-* #+BEGIN_EXPORT latex:                  Quoting LaTeX code.  (line  17)
-* #+BEGIN_EXPORT texinfo:                Quoting Texinfo code.
-                                                              (line   9)
-* #+BEGIN_JUSTIFYLEFT:                   ASCII/Latin-1/UTF-8 export.
-                                                              (line  77)
-* #+BEGIN_JUSTIFYRIGHT:                  ASCII/Latin-1/UTF-8 export.
-                                                              (line  77)
-* #+BEGIN_QUOTE:                         Paragraphs.          (line  26)
-* #+BEGIN_SRC:                           Literal examples.    (line  28)
-* #+BEGIN_SRC <1>:                       Structure of code blocks.
-                                                              (line   6)
-* #+BEGIN_VERSE:                         Paragraphs.          (line  13)
-* #+BIND:                                Export settings.     (line 210)
-* #+CALL:                                Evaluating code blocks.
-                                                              (line  25)
-* #+CAPTION:                             Images and tables.   (line   6)
-* #+CAPTION <1>:                         Tables in HTML export.
-                                                              (line  11)
-* #+CAPTION <2>:                         Images in HTML export.
-                                                              (line  29)
-* #+CATEGORY:                            Categories.          (line   6)
-* #+CINDEX:                              Indices.             (line   6)
-* #+COLUMNS:                             Scope of column definitions.
-                                                              (line   8)
-* #+CONSTANTS:                           References.          (line 108)
-* #+CREATOR:                             Export settings.     (line  28)
-* #+DATE:                                Export settings.     (line  32)
-* #+DESCRIPTION (Beamer):                Beamer specific export settings.
-                                                              (line  29)
-* #+DESCRIPTION (HTML):                  HTML Specific export settings.
-                                                              (line  10)
-* #+DESCRIPTION (LaTeX):                 LaTeX specific export settings.
-                                                              (line  11)
-* #+DESCRIPTION (ODT):                   ODT specific export settings.
-                                                              (line  11)
-* #+EMAIL:                               Export settings.     (line  35)
-* #+EXCLUDE_TAGS:                        Export settings.     (line  52)
-* #+EXPORT_FILE_NAME:                    Export settings.     (line  64)
-* #+FILETAGS:                            Tag inheritance.     (line  20)
-* #+FINDEX:                              Indices.             (line   6)
-* #+HEADER::                             Code block specific header arguments.
-                                                              (line  30)
-* #+HTML:                                Quoting HTML tags.   (line  12)
-* #+HTML_CONTAINER:                      HTML Specific export settings.
-                                                              (line  19)
-* #+HTML_DOCTYPE:                        HTML Specific export settings.
-                                                              (line  16)
-* #+HTML_HEAD:                           HTML Specific export settings.
-                                                              (line  35)
-* #+HTML_HEAD <1>:                       CSS support.         (line  48)
-* #+HTML_HEAD_EXTRA:                     HTML Specific export settings.
-                                                              (line  39)
-* #+HTML_HEAD_EXTRA <1>:                 CSS support.         (line  48)
-* #+HTML_INCLUDE_STYLE:                  CSS support.         (line  43)
-* #+HTML_LINK_HOME:                      HTML Specific export settings.
-                                                              (line  23)
-* #+HTML_LINK_UP:                        HTML Specific export settings.
-                                                              (line  26)
-* #+HTML_MATHJAX:                        HTML Specific export settings.
-                                                              (line  30)
-* #+INCLUDE:                             Include files.       (line   7)
-* #+INDEX:                               Generating an index. (line  16)
-* #+INFOJS_OPT:                          JavaScript support.  (line  20)
-* #+KEYWORDS (Beamer):                   Beamer specific export settings.
-                                                              (line  36)
-* #+KEYWORDS (HTML):                     HTML Specific export settings.
-                                                              (line  43)
-* #+KEYWORDS (LaTeX):                    LaTeX specific export settings.
-                                                              (line  46)
-* #+KEYWORDS (ODT):                      ODT specific export settings.
-                                                              (line  16)
-* #+KINDEX:                              Indices.             (line   6)
-* #+LANGUAGE:                            Export settings.     (line  38)
-* #+LATEX:                               Quoting LaTeX code.  (line  13)
-* #+LATEX_CLASS:                         LaTeX specific export settings.
-                                                              (line  20)
-* #+LATEX_CLASS <1>:                     LaTeX header and sectioning.
-                                                              (line  23)
-* #+LATEX_CLASS_OPTIONS:                 LaTeX specific export settings.
-                                                              (line  28)
-* #+LATEX_CLASS_OPTIONS <1>:             LaTeX header and sectioning.
-                                                              (line  23)
-* #+LATEX_COMPILER:                      LaTeX specific export settings.
-                                                              (line  32)
-* #+LATEX_HEADER:                        LaTeX specific export settings.
-                                                              (line  36)
-* #+LATEX_HEADER <1>:                    LaTeX header and sectioning.
-                                                              (line  30)
-* #+LATEX_HEADER (HTML):                 HTML Specific export settings.
-                                                              (line  48)
-* #+LATEX_HEADER_EXTRA:                  LaTeX specific export settings.
-                                                              (line  41)
-* #+LATEX_HEADER_EXTRA <1>:              LaTeX header and sectioning.
-                                                              (line  30)
-* #+LINK:                                Link abbreviations.  (line  49)
-* #+MACRO:                               Macro replacement.   (line   6)
-* #+NAME:                                Internal links.      (line  21)
-* #+NAME <1>:                            Images and tables.   (line   6)
-* #+NAME <2>:                            Structure of code blocks.
-                                                              (line   6)
-* #+NAME <3>:                            Structure of code blocks.
-                                                              (line  39)
-* #+NAME, for table:                     References.          (line 129)
-* #+ODT_STYLES_FILE:                     Applying custom styles.
-                                                              (line  25)
-* #+OPTIONS:                             Export settings.     (line   6)
-* #+ORGLST:                              Radio lists.         (line  11)
-* #+ORGTBL:                              Radio tables.        (line  19)
-* #+ORGTBL, SEND:                        A LaTeX example.     (line  12)
-* #+PINDEX:                              Indices.             (line   6)
-* #+PLOT:                                Org-Plot.            (line   6)
-* #+PRIORITIES:                          Priorities.          (line  42)
-* #+PROPERTY:                            Property syntax.     (line  44)
-* #+RESULTS:                             Evaluating code blocks.
-                                                              (line   6)
-* #+SELECT_TAGS:                         Export settings.     (line  44)
-* #+SEQ_TODO:                            Per-file keywords.   (line   6)
-* #+SETUPFILE:                           Export settings.     (line  13)
-* #+SETUPFILE <1>:                       In-buffer settings.  (line  45)
-* #+STARTUP:                             In-buffer settings.  (line  58)
-* #+SUBAUTHOR:                           Texinfo specific export settings.
-                                                              (line  14)
-* #+SUBAUTHOR <1>:                       Texinfo title and copyright page.
-                                                              (line  12)
-* #+SUBTITLE (ASCII):                    ASCII/Latin-1/UTF-8 export.
-                                                              (line  39)
-* #+SUBTITLE (Beamer):                   Beamer specific export settings.
-                                                              (line  44)
-* #+SUBTITLE (HTML):                     HTML Specific export settings.
-                                                              (line  53)
-* #+SUBTITLE (LaTeX):                    LaTeX specific export settings.
-                                                              (line  55)
-* #+SUBTITLE (Texinfo):                  Texinfo specific export settings.
-                                                              (line  11)
-* #+TAGS:                                Setting tags.        (line  28)
-* #+TBLFM:                               Field and range formulas.
-                                                              (line  12)
-* #+TBLFM <1>:                           Editing and debugging formulas.
-                                                              (line  84)
-* #+TBLFM <2>:                           In-buffer settings.  (line 166)
-* #+TBLFM line, multiple:                Editing and debugging formulas.
-                                                              (line  84)
-* #+TBLFM, switching:                    Editing and debugging formulas.
-                                                              (line  84)
-* #+TEXINFO:                             Quoting Texinfo code.
-                                                              (line   9)
-* #+TEXINFO_CLASS:                       Texinfo specific export settings.
-                                                              (line  20)
-* #+TEXINFO_CLASS <1>:                   Texinfo file header. (line  11)
-* #+TEXINFO_CLASS <2>:                   Headings and sectioning structure.
-                                                              (line   6)
-* #+TEXINFO_DIR_CATEGORY:                Texinfo specific export settings.
-                                                              (line  30)
-* #+TEXINFO_DIR_CATEGORY <1>:            Info directory file. (line   6)
-* #+TEXINFO_DIR_DESC:                    Texinfo specific export settings.
-                                                              (line  36)
-* #+TEXINFO_DIR_DESC <1>:                Info directory file. (line   6)
-* #+TEXINFO_DIR_TITLE:                   Texinfo specific export settings.
-                                                              (line  33)
-* #+TEXINFO_DIR_TITLE <1>:               Info directory file. (line   6)
-* #+TEXINFO_FILENAME:                    Texinfo specific export settings.
-                                                              (line  17)
-* #+TEXINFO_FILENAME <1>:                Texinfo file header. (line   6)
-* #+TEXINFO_HEADER:                      Texinfo specific export settings.
-                                                              (line  24)
-* #+TEXINFO_HEADER <1>:                  Texinfo file header. (line  11)
-* #+TEXINFO_POST_HEADER:                 Texinfo specific export settings.
-                                                              (line  27)
-* #+TEXINFO_PRINTED_TITLE:               Texinfo specific export settings.
-                                                              (line  39)
-* #+TEXINFO_PRINTED_TITLE <1>:           Texinfo title and copyright page.
-                                                              (line   6)
-* #+TINDEX:                              Indices.             (line   6)
-* #+TITLE:                               Export settings.     (line  60)
-* #+TOC:                                 Table of contents.   (line   6)
-* #+TODO:                                Per-file keywords.   (line   6)
-* #+TYP_TODO:                            Per-file keywords.   (line   6)
-* #+VINDEX:                              Indices.             (line   6)
-* %:annotation template expansion in capture: capture protocol.
-                                                              (line  23)
-* %:description template expansion in capture: capture protocol.
-                                                              (line  23)
-* %:link template expansion in capture:  capture protocol.    (line  23)
-* :base-url property in open-source protocol: open-source protocol.
-                                                              (line  13)
-* :cache, src header argument:           System-wide header arguments.
-                                                              (line   9)
-* :cache, src header argument <1>:       cache.               (line   6)
-* :colnames, src header argument:        colnames.            (line   6)
-* :comments, src header argument:        comments.            (line   6)
-* :dir, src header argument:             dir.                 (line   6)
-* :epilogue, src header argument:        epilogue.            (line   6)
-* :eval, src header argument:            eval.                (line   6)
-* :exports, src header argument:         Exporting code blocks.
-                                                              (line  20)
-* :exports, src header argument <1>:     System-wide header arguments.
-                                                              (line   9)
-* :exports, src header argument <2>:     exports.             (line   6)
-* :file, src header argument:            file.                (line   6)
-* :file-ext, src header argument:        file-ext.            (line   6)
-* :hlines, src header argument:          hlines.              (line   6)
-* :indic attribute, in Texinfo export:   Plain lists in Texinfo export.
-                                                              (line  12)
-* :mkdirp, src header argument:          mkdirp.              (line   6)
-* :no-expand, src header argument:       no-expand.           (line   6)
-* :noweb, src header argument:           System-wide header arguments.
-                                                              (line   9)
-* :noweb, src header argument <1>:       noweb.               (line   6)
-* :noweb-ref, src header argument:       noweb-ref.           (line   6)
-* :noweb-sep, src header argument:       noweb-sep.           (line   6)
-* :online-suffix property in open-source protocol: open-source protocol.
-                                                              (line  13)
-* :output-dir, src header argument:      output-dir.          (line   6)
-* :padline, src header argument:         padline.             (line   6)
-* :post, src header argument:            post.                (line   6)
-* :prologue, src header argument:        prologue.            (line   6)
-* :results, src header argument:         System-wide header arguments.
-                                                              (line   9)
-* :results, src header argument <1>:     results.             (line   6)
-* :results, src header argument <2>:     Results of evaluation.
-                                                              (line  33)
-* :results, src header argument <3>:     Results of evaluation.
-                                                              (line  45)
-* :results, src header argument <4>:     Results of evaluation.
-                                                              (line  55)
-* :results, src header argument <5>:     Results of evaluation.
-                                                              (line  72)
-* :rewrites property in open-source protocol: open-source protocol.
-                                                              (line  43)
-* :rownames, src header argument:        rownames.            (line   6)
-* :sep attribute, in Texinfo export:     Plain lists in Texinfo export.
-                                                              (line  17)
-* :sep, src header argument:             sep.                 (line   6)
-* :session, src header argument:         System-wide header arguments.
-                                                              (line   9)
-* :session, src header argument <1>:     session.             (line   6)
-* :shebang, src header argument:         shebang.             (line   6)
-* :table-type attribute, in Texinfo export: Plain lists in Texinfo export.
-                                                              (line   6)
-* :tangle, src header argument:          Extracting source code.
-                                                              (line  23)
-* :tangle, src header argument <1>:      tangle.              (line   6)
-* :tangle-mode, src header argument:     tangle-mode.         (line   6)
-* :var, src header argument:             var.                 (line   6)
-* :working-directory property in open-source protocol: open-source protocol.
-                                                              (line  13)
-* :working-suffix property in open-source protocol: open-source protocol.
-                                                              (line  13)
-* :wrap, src header argument:            wrap.                (line   6)
-* abbreviation, links:                   Link abbreviations.  (line   6)
-* abstract, in LaTeX export:             Special blocks in LaTeX export.
-                                                              (line   6)
-* acknowledgments:                       History and acknowledgments.
-                                                              (line   6)
-* action, for publishing:                Publishing action.   (line   6)
-* activation:                            Activation.          (line   6)
-* active region:                         Structure editing.   (line 116)
-* active region <1>:                     Built-in table editor.
-                                                              (line 145)
-* active region <2>:                     ODT export commands. (line   6)
-* add-on packages:                       Add-on packages.     (line   6)
-* add-ons, context-sensitive commands:   Context-sensitive commands.
-                                                              (line   6)
-* agenda:                                Weekly/daily agenda. (line   6)
-* agenda dispatcher:                     Agenda dispatcher.   (line   6)
-* agenda files:                          Agenda files.        (line   6)
-* agenda files, removing buffers:        Agenda commands.     (line 440)
-* agenda views:                          Agenda views.        (line   6)
-* agenda views, custom:                  Custom agenda views. (line   6)
-* agenda views, exporting:               Agenda commands.     (line 426)
-* agenda views, exporting <1>:           Exporting agenda views.
-                                                              (line   6)
-* agenda views, exporting <2>:           Exporting agenda views.
-                                                              (line  13)
-* agenda views, main example:            Storing searches.    (line   9)
-* agenda views, optimization:            Speeding up your agendas.
-                                                              (line   6)
-* agenda views, user-defined:            Special agenda views.
-                                                              (line   6)
-* agenda*, as an agenda views:           Storing searches.    (line   9)
-* agenda, as an agenda views:            Storing searches.    (line   9)
-* agenda, column view:                   Agenda column view.  (line   6)
-* agenda, pipe:                          Extracting agenda information.
-                                                              (line   6)
-* agenda, sticky:                        Agenda dispatcher.   (line  43)
-* agenda, with block views:              Block agenda.        (line   6)
-* align, STARTUP keyword:                In-buffer settings.  (line  79)
-* alignment in tables:                   Column width and alignment.
-                                                              (line   6)
-* anniversaries, from BBDB:              Weekly/daily agenda. (line  79)
-* API, for mapping:                      Using the mapping API.
-                                                              (line   6)
-* API, for properties:                   Property API.        (line   6)
-* API, for properties <1>:               Using the property API.
-                                                              (line   6)
-* appointment:                           Timestamps.          (line  14)
-* appointment <1>:                       Weekly/daily agenda. (line 126)
-* appointment reminders:                 Weekly/daily agenda. (line 126)
-* appt.el:                               Weekly/daily agenda. (line 126)
-* archive locations:                     Moving subtrees.     (line  23)
-* archive tag:                           Internal archiving.  (line   6)
-* archived entries, in agenda views:     Agenda views.        (line  32)
-* Archives mode:                         Agenda commands.     (line 115)
-* archiving:                             Archiving.           (line   6)
-* ASCII export:                          ASCII/Latin-1/UTF-8 export.
-                                                              (line   6)
-* Atom feeds:                            RSS feeds.           (line   6)
-* attachments:                           Attachments.         (line   6)
-* author:                                Feedback.            (line   6)
-* author, macro:                         Macro replacement.   (line  24)
-* autoload:                              Activation.          (line   6)
-* babel, languages:                      Languages.           (line   6)
-* babel, library of:                     Library of Babel.    (line   6)
-* backtrace of an error:                 Feedback.            (line  63)
-* BBDB links:                            External links.      (line   6)
-* BBDB, anniversaries:                   Weekly/daily agenda. (line  79)
-* Beamer export:                         Beamer export.       (line   6)
-* begin block, end block:                Structure of code blocks.
-                                                              (line  44)
-* block agenda:                          Block agenda.        (line   6)
-* blocking, of checkboxes:               Checkboxes.          (line  46)
-* blocks, folding:                       Blocks.              (line   6)
-* bold text, markup rules:               Emphasis and monospace.
-                                                              (line   6)
-* Boolean logic, for tag/property searches: Matching tags and properties.
-                                                              (line  33)
-* bug reports:                           Feedback.            (line   6)
-* C-c C-c, overview:                     The very busy C-c C-c key.
-                                                              (line   6)
-* calc package:                          The spreadsheet.     (line   6)
-* calc.el:                               Cooperation.         (line   6)
-* calculations, in tables:               Built-in table editor.
-                                                              (line 145)
-* calculations, in tables <1>:           The spreadsheet.     (line   6)
-* calendar commands, from agenda:        Agenda commands.     (line 381)
-* calendar integration:                  Weekly/daily agenda. (line  32)
-* calendar, for selecting date:          The date/time prompt.
-                                                              (line  76)
-* capture:                               Capture - Refile - Archive.
-                                                              (line   6)
-* capture <1>:                           Capture.             (line   6)
-* capture protocol:                      capture protocol.    (line   6)
-* capture, %:annotation placeholder:     capture protocol.    (line  23)
-* capture, %:description placeholder:    capture protocol.    (line  23)
-* capture, %:link placeholder:           capture protocol.    (line  23)
-* capturing, from agenda:                Agenda commands.     (line 292)
-* category:                              Categories.          (line   6)
-* category filtering, in agenda:         Filtering/limiting agenda items.
-                                                              (line  17)
-* category, require for tags/property match: Matching tags and properties.
-                                                              (line  67)
-* CDLaTeX:                               CDLaTeX mode.        (line   6)
-* cdlatex.el:                            Cooperation.         (line  19)
-* center blocks:                         Paragraphs.          (line  31)
-* center image (LaTeX export):           Images in LaTeX export.
-                                                              (line  46)
-* checkbox blocking:                     Checkboxes.          (line  46)
-* checkbox statistics:                   Checkboxes.          (line  30)
-* checkboxes:                            Checkboxes.          (line   6)
-* checkboxes and TODO dependencies:      TODO dependencies.   (line  51)
-* children, subtree visibility state:    Global and local cycling.
-                                                              (line  10)
-* clean outline view:                    Clean view.          (line   6)
-* clocking time:                         Clocking work time.  (line   6)
-* clocktable, dynamic block:             The clock table.     (line   6)
-* code block, batch execution:           Batch execution.     (line   6)
-* code block, editing:                   Editing source code. (line   6)
-* code block, evaluating:                Evaluating code blocks.
-                                                              (line   6)
-* code block, exporting:                 Exporting code blocks.
-                                                              (line   6)
-* code block, extracting source code:    Extracting source code.
-                                                              (line   6)
-* code block, header arguments:          Header arguments.    (line   6)
-* code block, key bindings:              Key bindings and useful functions.
-                                                              (line   6)
-* code block, languages:                 Languages.           (line   6)
-* code block, library:                   Library of Babel.    (line   6)
-* code block, noweb reference:           Noweb reference syntax.
-                                                              (line   6)
-* code block, results of evaluation:     Results of evaluation.
-                                                              (line   6)
-* code block, structure:                 Structure of code blocks.
-                                                              (line   6)
-* code line references, markup rules:    Literal examples.    (line   6)
-* code text, markup rules:               Emphasis and monospace.
-                                                              (line   6)
-* column formula:                        Column formulas.     (line   6)
-* column view, for properties:           Defining columns.    (line   6)
-* column view, in agenda:                Agenda column view.  (line   6)
-* column, of field coordinates:          References.          (line  86)
-* commands, in agenda buffer:            Agenda commands.     (line   6)
-* comment lines:                         Comment lines.       (line   6)
-* comment trees:                         Comment lines.       (line  13)
-* commented entries, in agenda views:    Agenda views.        (line  32)
-* completion, of dictionary words:       Completion.          (line   6)
-* completion, of file names:             Handling links.      (line  87)
-* completion, of link abbreviations:     Completion.          (line   6)
-* completion, of links:                  Handling links.      (line  65)
-* completion, of option keywords:        Per-file keywords.   (line  23)
-* completion, of option keywords <1>:    Completion.          (line   6)
-* completion, of property keys:          Completion.          (line   6)
-* completion, of tags:                   Setting tags.        (line  11)
-* completion, of tags <1>:               Completion.          (line   6)
-* completion, of TeX symbols:            Completion.          (line   6)
-* completion, of TODO keywords:          Workflow states.     (line  15)
-* completion, of TODO keywords <1>:      Completion.          (line   6)
-* concept index, in Texinfo export:      Indices.             (line   6)
-* constants, in calculations:            References.          (line 108)
-* constants, in calculations <1>:        References.          (line 129)
-* constants.el:                          Cooperation.         (line  11)
-* constcgs, STARTUP keyword:             In-buffer settings.  (line 136)
-* constSI, STARTUP keyword:              In-buffer settings.  (line 136)
-* content, STARTUP keyword:              Initial visibility.  (line   6)
-* content, STARTUP keyword <1>:          In-buffer settings.  (line  65)
-* contents, global visibility state:     Global and local cycling.
-                                                              (line  18)
-* context-sensitive commands, hooks:     Context-sensitive commands.
-                                                              (line   6)
-* continuous clocking:                   Resolving idle time. (line  74)
-* convert:                               Configuring a document converter.
-                                                              (line   6)
-* converter:                             Configuring a document converter.
-                                                              (line   6)
-* coordinates, of field:                 References.          (line  86)
-* copying notes:                         Refile and copy.     (line   6)
-* copying, of subtrees:                  Structure editing.   (line   6)
-* countdown timer:                       Timers.              (line   6)
-* counter, macro:                        Macro replacement.   (line  55)
-* creating timestamps:                   Creating timestamps. (line   6)
-* CSS, for HTML export:                  CSS support.         (line   6)
-* CUA.el:                                Conflicts.           (line  18)
-* custom agenda views:                   Custom agenda views. (line   6)
-* custom date/time format:               Custom time format.  (line   6)
-* custom search strings:                 Custom searches.     (line   6)
-* customization:                         Customization.       (line   6)
-* customtime, STARTUP keyword:           In-buffer settings.  (line 132)
-* cutting, of subtrees:                  Structure editing.   (line   6)
-* cycling, in plain lists:               Plain lists.         (line  67)
-* cycling, of agenda files:              Agenda files.        (line  21)
-* cycling, of TODO states:               TODO basics.         (line  14)
-* cycling, visibility:                   Visibility cycling.  (line   6)
-* daily agenda:                          Weekly/daily agenda. (line   6)
-* dash, special symbol:                  Special symbols.     (line  39)
-* data type index, in Texinfo export:    Indices.             (line   6)
-* date format, custom:                   Custom time format.  (line   6)
-* date range:                            Timestamps.          (line  42)
-* date stamp:                            Dates and times.     (line   6)
-* date stamps:                           Timestamps.          (line   6)
-* date tree:                             Using capture.       (line   9)
-* date, macro:                           Macro replacement.   (line  29)
-* date, reading in minibuffer:           The date/time prompt.
-                                                              (line   6)
-* dates:                                 Dates and times.     (line   6)
-* Davison, Dan:                          Working with source code.
-                                                              (line   6)
-* DEADLINE keyword:                      Deadlines and scheduling.
-                                                              (line  11)
-* deadlines:                             Timestamps.          (line   6)
-* debugging, of table formulas:          Editing and debugging formulas.
-                                                              (line 117)
-* defining new protocols:                Protocols.           (line  25)
-* demotion, of subtrees:                 Structure editing.   (line   6)
-* dependencies, of TODO states:          TODO dependencies.   (line   6)
-* diary entries, creating from agenda:   Agenda commands.     (line 385)
-* diary integration:                     Weekly/daily agenda. (line  32)
-* dictionary word completion:            Completion.          (line   6)
-* dir file, in Texinfo export:           Info directory file. (line   6)
-* directories, for publishing:           Sources and destinations.
-                                                              (line   6)
-* dispatching agenda commands:           Agenda dispatcher.   (line   6)
-* display changing, in agenda:           Agenda commands.     (line  61)
-* doc, docx, rtf:                        Configuring a document converter.
-                                                              (line   6)
-* document structure:                    Document structure.  (line   6)
-* document title:                        Export settings.     (line  60)
-* Dominik, Carsten:                      Cooperation.         (line  11)
-* Dominik, Carsten <1>:                  Cooperation.         (line  19)
-* DONE, final TODO keyword:              Per-file keywords.   (line  26)
-* dragging, agenda lines:                Agenda commands.     (line 297)
-* drawer, for properties:                Property syntax.     (line   6)
-* drawer, for state change recording:    Tracking TODO state changes.
-                                                              (line   6)
-* drawers:                               Drawers.             (line   6)
-* Duration, computing:                   Durations and time values.
-                                                              (line   6)
-* dvipng:                                Math formatting in HTML export.
-                                                              (line   6)
-* dvipng <1>:                            Working with LaTeX math snippets.
-                                                              (line  48)
-* dvisvgm:                               Math formatting in HTML export.
-                                                              (line   6)
-* dvisvgm <1>:                           Working with LaTeX math snippets.
-                                                              (line  48)
-* dynamic blocks:                        Dynamic blocks.      (line   6)
-* dynamic indentation:                   Clean view.          (line   6)
-* ecomplete.el:                          Conflicts.           (line  33)
-* editing tables:                        Tables.              (line   6)
-* editing, of table formulas:            Editing and debugging formulas.
-                                                              (line   6)
-* edits, catching invisible:             Catching invisible edits.
-                                                              (line   6)
-* effort estimates:                      Effort estimates.    (line   6)
-* effort filtering, in agenda:           Filtering/limiting agenda items.
-                                                              (line  17)
-* Elisp links:                           External links.      (line   6)
-* ellipsis, special symbol:              Special symbols.     (line  39)
-* ELPA:                                  Activation.          (line   6)
-* email, macro:                          Macro replacement.   (line  24)
-* embedding images in ODT:               Images in ODT export.
-                                                              (line   6)
-* entitiesplain, STARTUP keyword:        In-buffer settings.  (line 159)
-* entitiespretty, STARTUP keyword:       Special symbols.     (line  34)
-* entitiespretty, STARTUP keyword <1>:   In-buffer settings.  (line 159)
-* escaping characters:                   Special symbols.     (line  27)
-* evaluate time range:                   Creating timestamps. (line  52)
-* even, STARTUP keyword:                 In-buffer settings.  (line 122)
-* example blocks, in LaTeX export:       Example blocks in LaTeX export.
-                                                              (line   6)
-* export back-end:                       Exporting.           (line  12)
-* export back-ends, built-in:            Other built-in back-ends.
-                                                              (line   6)
-* Export, dispatcher:                    The export dispatcher.
-                                                              (line   6)
-* export, OpenDocument:                  OpenDocument Text export.
-                                                              (line   6)
-* Export, settings:                      Export settings.     (line   6)
-* Export, writing back-ends:             Adding export back-ends.
-                                                              (line   6)
-* exporting:                             Exporting.           (line   6)
-* exporting agenda views:                Agenda commands.     (line 426)
-* exporting agenda views <1>:            Exporting agenda views.
-                                                              (line  13)
-* exporting, not:                        Comment lines.       (line   6)
-* extended TODO keywords:                TODO extensions.     (line   6)
-* external archiving:                    Moving subtrees.     (line   6)
-* external links:                        External links.      (line   6)
-* external links, in HTML export:        Links in HTML export.
-                                                              (line   6)
-* faces, for TODO keywords:              Faces for TODO keywords.
-                                                              (line   6)
-* FAQ:                                   Summary.             (line  49)
-* feedback:                              Feedback.            (line   6)
-* field coordinates:                     References.          (line  86)
-* field formula:                         Field and range formulas.
-                                                              (line   6)
-* field references:                      References.          (line  15)
-* file links:                            External links.      (line   6)
-* file links, searching:                 Search options.      (line   6)
-* file name completion:                  Handling links.      (line  87)
-* files for agenda:                      Agenda files.        (line   6)
-* files, adding to agenda list:          Agenda files.        (line  15)
-* files, selecting for publishing:       Selecting files.     (line   6)
-* filladapt.el:                          Conflicts.           (line  45)
-* filtering, by tag, category, top headline and effort, in agenda: Filtering/limiting agenda items.
-                                                              (line  17)
-* Filters, exporting:                    Advanced configuration.
-                                                              (line  32)
-* fnadjust, STARTUP keyword:             In-buffer settings.  (line 142)
-* fnauto, STARTUP keyword:               In-buffer settings.  (line 142)
-* fnconfirm, STARTUP keyword:            In-buffer settings.  (line 142)
-* fninline, STARTUP keyword:             In-buffer settings.  (line 142)
-* fnlocal, STARTUP keyword:              In-buffer settings.  (line 142)
-* fnplain, STARTUP keyword:              In-buffer settings.  (line 142)
-* fnprompt, STARTUP keyword:             In-buffer settings.  (line 142)
-* folded, subtree visibility state:      Global and local cycling.
-                                                              (line  10)
-* folding, sparse trees:                 Sparse trees.        (line   6)
-* following links:                       Handling links.      (line  98)
-* footnotes:                             Footnotes.           (line   6)
-* format specifier:                      Formula syntax for Calc.
-                                                              (line  14)
-* format, of links:                      Link format.         (line   6)
-* formatting source code, markup rules:  Literal examples.    (line  23)
-* formula debugging:                     Editing and debugging formulas.
-                                                              (line 117)
-* formula editing:                       Editing and debugging formulas.
-                                                              (line   6)
-* formula syntax, Calc:                  Formula syntax for Calc.
-                                                              (line   6)
-* formula, for individual table field:   Field and range formulas.
-                                                              (line   6)
-* formula, for range of fields:          Field and range formulas.
-                                                              (line   6)
-* formula, for table column:             Column formulas.     (line   6)
-* formula, in tables:                    Built-in table editor.
-                                                              (line 145)
-* function index, in Texinfo export:     Indices.             (line   6)
-* Gillespie, Dave:                       Cooperation.         (line   6)
-* global cycling:                        Global and local cycling.
-                                                              (line  18)
-* global key bindings:                   Activation.          (line   6)
-* global TODO list:                      Global TODO list.    (line   6)
-* global visibility states:              Global and local cycling.
-                                                              (line  18)
-* Gnus links:                            External links.      (line   6)
-* graph, in tables:                      Org-Plot.            (line   6)
-* group tags:                            Tag hierarchy.       (line   6)
-* group tags, as regular expressions:    Matching tags and properties.
-                                                              (line  60)
-* grouping columns in tables:            Column groups.       (line   6)
-* habits:                                Tracking your habits.
-                                                              (line   6)
-* hacking:                               Hacking.             (line   6)
-* handle rewritten URL in open-source protocol: open-source protocol.
-                                                              (line  32)
-* header, for LaTeX files:               LaTeX header and sectioning.
-                                                              (line   6)
-* headline navigation:                   Motion.              (line   6)
-* headline tagging:                      Tags.                (line   6)
-* headline, promotion and demotion:      Structure editing.   (line   6)
-* headlines:                             Headlines.           (line   6)
-* hide text:                             Visibility cycling.  (line   6)
-* hideblocks, STARTUP keyword:           Blocks.              (line  13)
-* hideblocks, STARTUP keyword <1>:       In-buffer settings.  (line 154)
-* hidestars, STARTUP keyword:            In-buffer settings.  (line 122)
-* hiding leading stars:                  Clean view.          (line   6)
-* history:                               History and acknowledgments.
-                                                              (line   6)
-* hooks:                                 Hooks.               (line   6)
-* horizontal rules, in ASCII export:     ASCII/Latin-1/UTF-8 export.
-                                                              (line  67)
-* horizontal rules, in LaTeX export:     Horizontal rules in LaTeX export.
-                                                              (line   6)
-* horizontal rules, markup rules:        Horizontal rules.    (line   6)
-* HTML entities:                         Special symbols.     (line   6)
-* HTML export:                           HTML export.         (line   6)
-* HTML export, CSS:                      CSS support.         (line   6)
-* HTML, and Orgtbl mode:                 Translator functions.
-                                                              (line   6)
-* HTML5, export new elements:            HTML doctypes.       (line  25)
-* hyperlinks:                            Hyperlinks.          (line   6)
-* hyperlinks, adding new types:          Adding hyperlink types.
-                                                              (line   6)
-* iCalendar export:                      iCalendar export.    (line   6)
-* identify, ImageMagick:                 Images in ODT export.
-                                                              (line  34)
-* idle, resolve, dangling:               Resolving idle time. (line   9)
-* image, centering (LaTeX export):       Images in LaTeX export.
-                                                              (line  46)
-* imagemagick:                           Math formatting in HTML export.
-                                                              (line   6)
-* imagemagick <1>:                       Working with LaTeX math snippets.
-                                                              (line  48)
-* images, embedding in ODT:              Images in ODT export.
-                                                              (line   6)
-* images, inline in HTML:                Images in HTML export.
-                                                              (line   6)
-* images, inline in LaTeX:               Images in LaTeX export.
-                                                              (line   6)
-* images, inlining:                      Handling links.      (line 129)
-* imenu.el:                              Cooperation.         (line  22)
-* in-buffer settings:                    In-buffer settings.  (line   6)
-* inactive timestamp:                    Timestamps.          (line  50)
-* include files, during export:          Include files.       (line   6)
-* indent, STARTUP keyword:               In-buffer settings.  (line  70)
-* indentation, in source blocks:         Literal examples.    (line  72)
-* indentation, in source blocks <1>:     Editing source code. (line  36)
-* index, in a publishing project:        Generating an index. (line   6)
-* Info directory file, in Texinfo export: Info directory file.
-                                                              (line   6)
-* Info links:                            External links.      (line   6)
-* inheritance, of properties:            Property inheritance.
-                                                              (line   6)
-* inheritance, of tags:                  Tag inheritance.     (line   6)
-* inline, in LaTeX export:               Quoting LaTeX code.  (line  10)
-* inlined images, markup rules:          Images and tables.   (line  22)
-* inlineimages, STARTUP keyword:         Handling links.      (line 129)
-* inlineimages, STARTUP keyword <1>:     In-buffer settings.  (line  84)
-* inlining images:                       Handling links.      (line 129)
-* inlining images in HTML:               Images in HTML export.
-                                                              (line   6)
-* inlining images in LaTeX:              Images in LaTeX export.
-                                                              (line   6)
-* input file, macro:                     Macro replacement.   (line  44)
-* inserting links:                       Handling links.      (line  65)
-* insertion, of templates:               Easy templates.      (line   6)
-* install-info parameters, in Texinfo export: Info directory file.
-                                                              (line   6)
-* installation:                          Installation.        (line   6)
-* Installing Org protocol:               Protocols.           (line  14)
-* internal links:                        Internal links.      (line   6)
-* internal links, in HTML export:        Links in HTML export.
-                                                              (line   6)
-* introduction:                          Introduction.        (line   6)
-* iPhone:                                MobileOrg.           (line   6)
-* IRC links:                             External links.      (line   6)
-* italic text, markup rules:             Emphasis and monospace.
-                                                              (line   6)
-* jumping, to headlines:                 Motion.              (line   6)
-* key bindings, global:                  Activation.          (line   6)
-* keystroke index, in Texinfo export:    Indices.             (line   6)
-* keyword options:                       Per-file keywords.   (line   6)
-* LaTeX class:                           LaTeX header and sectioning.
-                                                              (line   6)
-* LaTeX entities:                        Special symbols.     (line   6)
-* LaTeX export:                          LaTeX export.        (line   6)
-* LaTeX fragments:                       LaTeX fragments.     (line   6)
-* LaTeX fragments, preview:              Previewing LaTeX fragments.
-                                                              (line   6)
-* LaTeX header:                          LaTeX header and sectioning.
-                                                              (line   6)
-* LaTeX interpretation:                  Embedded LaTeX.      (line   6)
-* LaTeX sectioning structure:            LaTeX header and sectioning.
-                                                              (line   6)
-* LaTeX, and Orgtbl mode:                A LaTeX example.     (line   6)
-* latexpreview, STARTUP keyword:         In-buffer settings.  (line  90)
-* Latin-1 export:                        ASCII/Latin-1/UTF-8 export.
-                                                              (line   6)
-* level, require for tags/property match: Matching tags and properties.
-                                                              (line  67)
-* LibreOffice:                           OpenDocument Text export.
-                                                              (line   6)
-* LibreOffice <1>:                       Extending ODT export.
-                                                              (line  12)
-* limits, in agenda:                     Filtering/limiting agenda items.
-                                                              (line 118)
-* link abbreviations:                    Link abbreviations.  (line   6)
-* link abbreviations, completion of:     Completion.          (line   6)
-* link completion:                       Handling links.      (line  65)
-* link format:                           Link format.         (line   6)
-* links, external:                       External links.      (line   6)
-* links, finding next/previous:          Handling links.      (line 146)
-* links, handling:                       Handling links.      (line   6)
-* links, in HTML export:                 Links in HTML export.
-                                                              (line   6)
-* links, in ODT export:                  Links in ODT export. (line   6)
-* links, internal:                       Internal links.      (line   6)
-* links, publishing:                     Publishing links.    (line   6)
-* links, radio targets:                  Radio targets.       (line   6)
-* links, returning to:                   Handling links.      (line 140)
-* linter:                                Org syntax.          (line  24)
-* Lisp forms, as table formulas:         Formula syntax for Lisp.
-                                                              (line   6)
-* list of listings:                      Table of contents.   (line   6)
-* list of tables:                        Table of contents.   (line   6)
-* lists, in other modes:                 Tables in arbitrary syntax.
-                                                              (line   6)
-* lists, ordered:                        Plain lists.         (line   6)
-* lists, plain:                          Plain lists.         (line   6)
-* literal examples, markup rules:        Literal examples.    (line   6)
-* logdone, STARTUP keyword:              In-buffer settings.  (line  96)
-* logdrawer, STARTUP keyword:            In-buffer settings.  (line  96)
-* logging, of progress:                  Progress logging.    (line   6)
-* lognoteclock-out, STARTUP keyword:     In-buffer settings.  (line  96)
-* lognotedone, STARTUP keyword:          In-buffer settings.  (line  96)
-* lognoteredeadline, STARTUP keyword:    In-buffer settings.  (line  96)
-* lognoterefile, STARTUP keyword:        In-buffer settings.  (line  96)
-* lognoterepeat, STARTUP keyword:        In-buffer settings.  (line  96)
-* lognotereschedule, STARTUP keyword:    In-buffer settings.  (line  96)
-* logredeadline, STARTUP keyword:        In-buffer settings.  (line  96)
-* logrefile, STARTUP keyword:            In-buffer settings.  (line  96)
-* logrepeat, STARTUP keyword:            In-buffer settings.  (line  96)
-* logreschedule, STARTUP keyword:        In-buffer settings.  (line  96)
-* logstatesreversed, STARTUP keyword:    In-buffer settings.  (line  96)
-* lookup functions in tables:            Lookup functions.    (line   6)
-* Ludlam, Eric M.:                       Cooperation.         (line  30)
-* macro replacement, during export:      Macro replacement.   (line   6)
-* maintainer:                            Feedback.            (line   6)
-* mapping entries, API:                  Using the mapping API.
-                                                              (line   6)
-* mark ring:                             Handling links.      (line 137)
-* Markdown export:                       Markdown export.     (line   6)
-* marking characters, tables:            Advanced features.   (line  39)
-* match view:                            Matching tags and properties.
-                                                              (line   6)
-* matching, of properties:               Matching tags and properties.
-                                                              (line   6)
-* matching, of tags:                     Matching tags and properties.
-                                                              (line   6)
-* matching, tags:                        Tags.                (line   6)
-* math symbols:                          Special symbols.     (line   6)
-* MathJax:                               Math formatting in HTML export.
-                                                              (line   6)
-* MathML:                                Working with LaTeX math snippets.
-                                                              (line   9)
-* MH-E links:                            External links.      (line   6)
-* minor mode for structure editing:      Orgstruct mode.      (line   6)
-* minor mode for tables:                 Orgtbl mode.         (line   6)
-* MobileOrg:                             MobileOrg.           (line   6)
-* mode, for calc:                        Formula syntax for Calc.
-                                                              (line  14)
-* modification time, macro:              Macro replacement.   (line  36)
-* motion commands in agenda:             Agenda commands.     (line  19)
-* motion, between headlines:             Motion.              (line   6)
-* Multiple entries in two-column tables, in Texinfo export: Plain lists in Texinfo export.
-                                                              (line  17)
-* n, macro:                              Macro replacement.   (line  55)
-* name, of column or field:              References.          (line 108)
-* name, of column or field <1>:          References.          (line 129)
-* named references:                      References.          (line 108)
-* names as TODO keywords:                TODO types.          (line   6)
-* narrow columns in tables:              Column width and alignment.
-                                                              (line   6)
-* noalign, STARTUP keyword:              In-buffer settings.  (line  79)
-* nofnadjust, STARTUP keyword:           In-buffer settings.  (line 142)
-* nofninline, STARTUP keyword:           In-buffer settings.  (line 142)
-* nohideblocks, STARTUP keyword:         Blocks.              (line  13)
-* nohideblocks, STARTUP keyword <1>:     In-buffer settings.  (line 154)
-* noindent, STARTUP keyword:             In-buffer settings.  (line  70)
-* noinlineimages, STARTUP keyword:       Handling links.      (line 129)
-* noinlineimages, STARTUP keyword <1>:   In-buffer settings.  (line  84)
-* nolatexpreview, STARTUP keyword:       In-buffer settings.  (line  90)
-* nologdone, STARTUP keyword:            In-buffer settings.  (line  96)
-* nologdrawer, STARTUP keyword:          In-buffer settings.  (line  96)
-* nolognoteclock-out, STARTUP keyword:   In-buffer settings.  (line  96)
-* nologredeadline, STARTUP keyword:      In-buffer settings.  (line  96)
-* nologrefile, STARTUP keyword:          In-buffer settings.  (line  96)
-* nologrepeat, STARTUP keyword:          In-buffer settings.  (line  96)
-* nologreschedule, STARTUP keyword:      In-buffer settings.  (line  96)
-* nologstatesreversed, STARTUP keyword:  In-buffer settings.  (line  96)
-* occur, command:                        Sparse trees.        (line   6)
-* occur-tree:                            Storing searches.    (line   9)
-* odd, STARTUP keyword:                  In-buffer settings.  (line 122)
-* odd-levels-only outlines:              Clean view.          (line   6)
-* ODT:                                   OpenDocument Text export.
-                                                              (line   6)
-* ODT_STYLES_FILE:                       ODT specific export settings.
-                                                              (line  22)
-* open-source protocol:                  open-source protocol.
-                                                              (line   6)
-* OpenDocument:                          OpenDocument Text export.
-                                                              (line   6)
-* option keyword completion:             Completion.          (line   6)
-* options, for custom agenda views:      Setting options.     (line   6)
-* options, for customization:            Customization.       (line   6)
-* options, for publishing:               Publishing options.  (line   6)
-* ordered lists:                         Plain lists.         (line   6)
-* Org entities:                          Special symbols.     (line   6)
-* Org export:                            Org export.          (line   6)
-* Org mode, turning on:                  Activation.          (line  21)
-* Org protocol, set-up:                  Protocols.           (line  14)
-* Org syntax:                            Org syntax.          (line   6)
-* org-agenda, command:                   Weekly/daily agenda. (line   9)
-* org-capture-last-stored:               Using capture.       (line  48)
-* org-crypt.el:                          org-crypt.           (line   6)
-* org-decrypt-entry:                     org-crypt.           (line   6)
-* org-hide-block-startup:                In-buffer settings.  (line 153)
-* org-insert-drawer:                     Drawers.             (line   6)
-* org-insert-drawer <1>:                 Property syntax.     (line  87)
-* org-list-insert-radio-list:            Radio lists.         (line   6)
-* org-pretty-entities:                   In-buffer settings.  (line 158)
-* org-publish-project-alist:             Project alist.       (line   6)
-* Orgstruct mode:                        Orgstruct mode.      (line   6)
-* Orgtbl mode:                           Orgtbl mode.         (line   6)
-* Orgtbl mode <1>:                       Tables in arbitrary syntax.
-                                                              (line   6)
-* Ota, Takaaki:                          Cooperation.         (line  36)
-* Outline mode:                          Outlines.            (line   6)
-* outline tree:                          Headlines.           (line   6)
-* outlines:                              Outlines.            (line   6)
-* overview, global visibility state:     Global and local cycling.
-                                                              (line  18)
-* overview, STARTUP keyword:             Initial visibility.  (line   6)
-* overview, STARTUP keyword <1>:         In-buffer settings.  (line  65)
-* packages, interaction with other:      Interaction.         (line   6)
-* paragraphs, markup rules:              Paragraphs.          (line   6)
-* pasting, of subtrees:                  Structure editing.   (line   6)
-* PDF export:                            LaTeX export.        (line   6)
-* per-file keywords:                     Per-file keywords.   (line   6)
-* plain lists:                           Plain lists.         (line   6)
-* plain lists, in LaTeX export:          Plain lists in LaTeX export.
-                                                              (line   6)
-* plain text external links:             External links.      (line  68)
-* plot tables using Gnuplot:             Org-Plot.            (line   6)
-* presentation, of agenda items:         Presentation and sorting.
-                                                              (line   6)
-* print edition:                         Summary.             (line  52)
-* printing sparse trees:                 Sparse trees.        (line  49)
-* priorities:                            Priorities.          (line   6)
-* priorities, of agenda items:           Sorting agenda items.
-                                                              (line   6)
-* program index, in Texinfo export:      Indices.             (line   6)
-* progress logging:                      Progress logging.    (line   6)
-* projects, for publishing:              Project alist.       (line   6)
-* promotion, of subtrees:                Structure editing.   (line   6)
-* proof, in LaTeX export:                Special blocks in LaTeX export.
-                                                              (line   6)
-* properties:                            Properties and columns.
-                                                              (line   6)
-* properties, API:                       Property API.        (line   6)
-* properties, API <1>:                   Using the property API.
-                                                              (line   6)
-* properties, column view:               Defining columns.    (line   6)
-* properties, inheritance:               Property inheritance.
-                                                              (line   6)
-* properties, searching:                 Property searches.   (line   6)
-* properties, special:                   Special properties.  (line   6)
-* property syntax:                       Property syntax.     (line   6)
-* property, +:                           Property syntax.     (line  52)
-* property, + <1>:                       Property syntax.     (line  58)
-* property, ALT_TITLE:                   Table of contents.   (line  41)
-* property, APPENDIX:                    Headings and sectioning structure.
-                                                              (line  20)
-* property, ARCHIVE:                     Property inheritance.
-                                                              (line  32)
-* property, ARCHIVE <1>:                 Moving subtrees.     (line  35)
-* property, ATTACH_DIR:                  Attachments.         (line  74)
-* property, ATTACH_DIR_INHERIT:          Attachments.         (line  79)
-* property, BEAMER_ACT:                  Sectioning Frames and Blocks in Beamer.
-                                                              (line  41)
-* property, BEAMER_COL:                  Sectioning Frames and Blocks in Beamer.
-                                                              (line  49)
-* property, BEAMER_ENV:                  Sectioning Frames and Blocks in Beamer.
-                                                              (line  14)
-* property, BEAMER_OPT:                  Sectioning Frames and Blocks in Beamer.
-                                                              (line  41)
-* property, BEAMER_REF:                  Sectioning Frames and Blocks in Beamer.
-                                                              (line  27)
-* property, CATEGORY:                    Property inheritance.
-                                                              (line  29)
-* property, CATEGORY <1>:                Categories.          (line  12)
-* property, CLOCK_MODELINE_TOTAL:        Clocking commands.   (line  20)
-* property, COLUMNS:                     Property inheritance.
-                                                              (line  22)
-* property, COLUMNS <1>:                 In-buffer settings.  (line  24)
-* property, COOKIE_DATA:                 Breaking down tasks. (line  21)
-* property, COOKIE_DATA <1>:             Checkboxes.          (line  30)
-* property, COPYING:                     Texinfo title and copyright page.
-                                                              (line  19)
-* property, CUSTOM_ID:                   Internal links.      (line   6)
-* property, CUSTOM_ID <1>:               Handling links.      (line  21)
-* property, DESCRIPTION:                 Headings and sectioning structure.
-                                                              (line  24)
-* property, DESCRIPTION <1>:             iCalendar export.    (line  49)
-* property, EFFORT:                      Effort estimates.    (line   6)
-* property, EXPORT_FILE_NAME:            ODT export commands. (line   7)
-* property, EXPORT_LATEX_CLASS:          LaTeX header and sectioning.
-                                                              (line  23)
-* property, EXPORT_LATEX_CLASS_OPTIONS:  LaTeX header and sectioning.
-                                                              (line  23)
-* property, ID:                          Handling links.      (line  21)
-* property, ID <1>:                      Capturing column view.
-                                                              (line  22)
-* property, ID <2>:                      iCalendar export.    (line  26)
-* property, INDEX:                       Indices.             (line  14)
-* property, LAST_REPEAT:                 Clocking commands.   (line  20)
-* property, LOCATION:                    iCalendar export.    (line  49)
-* property, LOGGING:                     Tracking TODO state changes.
-                                                              (line  45)
-* property, LOGGING <1>:                 Property inheritance.
-                                                              (line  35)
-* property, LOG_INTO_DRAWER:             Tracking TODO state changes.
-                                                              (line   6)
-* property, LOG_INTO_DRAWER <1>:         Clocking commands.   (line   7)
-* property, macro:                       Macro replacement.   (line  48)
-* property, ORDERED:                     TODO dependencies.   (line   6)
-* property, ORDERED <1>:                 TODO dependencies.   (line  38)
-* property, ORDERED <2>:                 Checkboxes.          (line  46)
-* property, ORDERED <3>:                 Checkboxes.          (line  75)
-* property, special, ALLTAGS:            Special properties.  (line  13)
-* property, special, BLOCKED:            Special properties.  (line  13)
-* property, special, CLOCKSUM:           Special properties.  (line  13)
-* property, special, CLOCKSUM <1>:       Agenda column view.  (line  28)
-* property, special, CLOCKSUM_T:         Special properties.  (line  13)
-* property, special, CLOCKSUM_T <1>:     Agenda column view.  (line  51)
-* property, special, CLOSED:             Special properties.  (line  13)
-* property, special, DEADLINE:           Special properties.  (line  13)
-* property, special, FILE:               Special properties.  (line  13)
-* property, special, ITEM:               Special properties.  (line  13)
-* property, special, PRIORITY:           Special properties.  (line  13)
-* property, special, SCHEDULED:          Special properties.  (line  13)
-* property, special, TAGS:               Special properties.  (line  13)
-* property, special, TIMESTAMP:          Special properties.  (line  13)
-* property, special, TIMESTAMP_IA:       Special properties.  (line  13)
-* property, special, TODO:               Special properties.  (line  13)
-* property, SUMMARY:                     iCalendar export.    (line  49)
-* property, TIMEZONE:                    iCalendar export.    (line  49)
-* property, UNNUMBERED:                  Export settings.     (line 149)
-* property, VISIBILITY:                  Initial visibility.  (line  17)
-* property, _ALL:                        Property syntax.     (line  44)
-* protocol, capture:                     capture protocol.    (line   6)
-* protocol, new protocol:                Protocols.           (line  25)
-* protocol, open-source:                 open-source protocol.
-                                                              (line   6)
-* protocol, open-source rewritten URL:   open-source protocol.
-                                                              (line  32)
-* protocol, open-source, :base-url property: open-source protocol.
-                                                              (line  13)
-* protocol, open-source, :online-suffix property: open-source protocol.
-                                                              (line  13)
-* protocol, open-source, :rewrites property: open-source protocol.
-                                                              (line  43)
-* protocol, open-source, :working-directory property: open-source protocol.
-                                                              (line  13)
-* protocol, open-source, :working-suffix property: open-source protocol.
-                                                              (line  13)
-* protocol, open-source, set-up mapping: open-source protocol.
-                                                              (line  67)
-* protocol, store-link:                  store-link protocol. (line   6)
-* protocols, for external access:        Protocols.           (line   6)
-* publishing:                            Publishing.          (line   6)
-* query editing, in agenda:              Filtering/limiting agenda items.
-                                                              (line  17)
-* quote blocks:                          Paragraphs.          (line  26)
-* radio lists:                           Radio lists.         (line   6)
-* radio tables:                          Radio tables.        (line   6)
-* radio targets:                         Radio targets.       (line   6)
-* range formula:                         Field and range formulas.
-                                                              (line   6)
-* range references:                      References.          (line  63)
-* ranges, time:                          Timestamps.          (line   6)
-* recomputing table fields:              Updating the table.  (line   6)
-* references:                            References.          (line   6)
-* references, named:                     References.          (line 108)
-* references, remote:                    References.          (line 129)
-* references, to a different table:      References.          (line 129)
-* references, to fields:                 References.          (line  15)
-* references, to ranges:                 References.          (line  63)
-* refiling notes:                        Refile and copy.     (line   6)
-* region, active:                        Structure editing.   (line 116)
-* region, active <1>:                    Built-in table editor.
-                                                              (line 145)
-* region, active <2>:                    ODT export commands. (line   6)
-* regular expressions, with tags search: Matching tags and properties.
-                                                              (line  56)
-* relative timer:                        Timers.              (line   6)
-* reminders:                             Weekly/daily agenda. (line 126)
-* remote editing, bulk, from agenda:     Agenda commands.     (line 308)
-* remote editing, from agenda:           Agenda commands.     (line 200)
-* remote editing, undo:                  Agenda commands.     (line 201)
-* remote references:                     References.          (line 129)
-* repeated tasks:                        Repeated tasks.      (line   6)
-* report, of clocked time:               The clock table.     (line   6)
-* resolve idle time:                     Resolving idle time. (line   9)
-* revealing context:                     Global and local cycling.
-                                                              (line  37)
-* RMAIL links:                           External links.      (line   6)
-* Rose, Sebastian:                       JavaScript support.  (line   6)
-* row, of field coordinates:             References.          (line  86)
-* RSS feeds:                             RSS feeds.           (line   6)
-* rsync:                                 Uploading files.     (line   6)
-* SCHEDULED keyword:                     Deadlines and scheduling.
-                                                              (line  32)
-* scheduling:                            Timestamps.          (line   6)
-* Schulte, Eric:                         Working with source code.
-                                                              (line   6)
-* Scripts, for agenda processing:        Extracting agenda information.
-                                                              (line   6)
-* search option in file links:           Search options.      (line   6)
-* search strings, custom:                Custom searches.     (line   6)
-* search view:                           Search view.         (line   6)
-* searching for tags:                    Tag searches.        (line   6)
-* searching, for text:                   Search view.         (line   6)
-* searching, of properties:              Property searches.   (line   6)
-* sectioning structure, for LaTeX export: LaTeX header and sectioning.
-                                                              (line   6)
-* set startup visibility, command:       Global and local cycling.
-                                                              (line  33)
-* set-up mappings in open-source protocol: open-source protocol.
-                                                              (line  67)
-* setting tags:                          Setting tags.        (line   6)
-* SHELL links:                           External links.      (line   6)
-* shift-selection-mode:                  Plain lists.         (line  90)
-* shift-selection-mode <1>:              Conflicts.           (line   6)
-* show all, command:                     Global and local cycling.
-                                                              (line  35)
-* show all, global visibility state:     Global and local cycling.
-                                                              (line  18)
-* show branches, command:                Global and local cycling.
-                                                              (line  45)
-* show children, command:                Global and local cycling.
-                                                              (line  48)
-* show hidden text:                      Visibility cycling.  (line   6)
-* showall, STARTUP keyword:              Initial visibility.  (line   6)
-* showall, STARTUP keyword <1>:          In-buffer settings.  (line  65)
-* showeverything, STARTUP keyword:       Initial visibility.  (line   6)
-* showeverything, STARTUP keyword <1>:   In-buffer settings.  (line  65)
-* showstars, STARTUP keyword:            In-buffer settings.  (line 122)
-* shy hyphen, special symbol:            Special symbols.     (line  39)
-* sitemap, of published pages:           Sitemap.             (line   6)
-* sorting, of agenda items:              Sorting agenda items.
-                                                              (line   6)
-* sorting, of plain list:                Plain lists.         (line 142)
-* sorting, of subtrees:                  Structure editing.   (line   6)
-* source blocks, in LaTeX export:        Source blocks in LaTeX export.
-                                                              (line   6)
-* source code, batch execution:          Batch execution.     (line   6)
-* source code, block header arguments:   Header arguments.    (line   6)
-* source code, block structure:          Structure of code blocks.
-                                                              (line   6)
-* source code, editing:                  Editing source code. (line   6)
-* source code, evaluating:               Evaluating code blocks.
-                                                              (line   6)
-* source code, exporting:                Exporting code blocks.
-                                                              (line   6)
-* source code, extracting:               Extracting source code.
-                                                              (line   6)
-* source code, inline:                   Structure of code blocks.
-                                                              (line  24)
-* source code, language:                 Structure of code blocks.
-                                                              (line  48)
-* source code, languages:                Languages.           (line   6)
-* source code, library:                  Library of Babel.    (line   6)
-* source code, noweb reference:          Noweb reference syntax.
-                                                              (line   6)
-* source code, results of evaluation:    Results of evaluation.
-                                                              (line   6)
-* source code, switches:                 Structure of code blocks.
-                                                              (line  52)
-* source code, working with:             Working with source code.
-                                                              (line   6)
-* sparse tree, for deadlines:            Inserting deadline/schedule.
-                                                              (line  23)
-* sparse tree, for TODO:                 TODO basics.         (line  41)
-* sparse tree, tag based:                Tags.                (line   6)
-* sparse trees:                          Sparse trees.        (line   6)
-* special blocks, in ASCII export:       ASCII/Latin-1/UTF-8 export.
-                                                              (line  77)
-* special blocks, in LaTeX export:       Special blocks in LaTeX export.
-                                                              (line   6)
-* special keywords:                      In-buffer settings.  (line   6)
-* special symbols:                       Special symbols.     (line   6)
-* special symbols, in-buffer display:    Special symbols.     (line  31)
-* speed keys:                            Speed keys.          (line   6)
-* speedbar.el:                           Cooperation.         (line  30)
-* spreadsheet capabilities:              The spreadsheet.     (line   6)
-* square brackets, around links:         External links.      (line  68)
-* statistics, for checkboxes:            Checkboxes.          (line  30)
-* statistics, for TODO items:            Breaking down tasks. (line   6)
-* store-link protocol:                   store-link protocol. (line   6)
-* storing links:                         Handling links.      (line  10)
-* Storm, Kim. F.:                        Conflicts.           (line  18)
-* strike-through text, markup rules:     Emphasis and monospace.
-                                                              (line   6)
-* structure editing:                     Structure editing.   (line   6)
-* structure of document:                 Document structure.  (line   6)
-* styles, custom:                        Applying custom styles.
-                                                              (line   6)
-* styles, custom <1>:                    Working with OpenDocument style files.
-                                                              (line   6)
-* sublevels, inclusion into tags match:  Tag inheritance.     (line   6)
-* sublevels, inclusion into TODO list:   Global TODO list.    (line  34)
-* subscript:                             Subscripts and superscripts.
-                                                              (line   6)
-* SUBTITLE (ODT):                        ODT specific export settings.
-                                                              (line  26)
-* subtree cycling:                       Global and local cycling.
-                                                              (line  10)
-* subtree visibility states:             Global and local cycling.
-                                                              (line  10)
-* subtree, cut and paste:                Structure editing.   (line   6)
-* subtree, subtree visibility state:     Global and local cycling.
-                                                              (line  10)
-* subtrees, cut and paste:               Structure editing.   (line   6)
-* summary:                               Summary.             (line   6)
-* superscript:                           Subscripts and superscripts.
-                                                              (line   6)
-* syntax checker:                        Org syntax.          (line  24)
-* syntax, noweb:                         Noweb reference syntax.
-                                                              (line   6)
-* syntax, of formulas:                   Formula syntax for Calc.
-                                                              (line   6)
-* table editor, built-in:                Built-in table editor.
-                                                              (line   6)
-* table editor, table.el:                Cooperation.         (line  36)
-* table lookup functions:                Lookup functions.    (line   6)
-* table of contents:                     Table of contents.   (line   6)
-* table.el:                              Cooperation.         (line  34)
-* table.el <1>:                          Cooperation.         (line  36)
-* tables:                                Tables.              (line   6)
-* tables, in HTML:                       Tables in HTML export.
-                                                              (line   6)
-* tables, in LaTeX export:               Tables in LaTeX export.
-                                                              (line   6)
-* tables, in ODT export:                 Tables in ODT export.
-                                                              (line   6)
-* tables, in ODT export <1>:             Customizing tables in ODT export.
-                                                              (line   6)
-* tables, in other modes:                Tables in arbitrary syntax.
-                                                              (line   6)
-* tables, markup rules:                  Images and tables.   (line   6)
-* tag completion:                        Completion.          (line   6)
-* tag filtering, in agenda:              Filtering/limiting agenda items.
-                                                              (line  17)
-* tag hierarchy:                         Tag hierarchy.       (line   6)
-* tag inheritance:                       Tag inheritance.     (line   6)
-* tag searches:                          Tag searches.        (line   6)
-* tags:                                  Tags.                (line   6)
-* tags view:                             Matching tags and properties.
-                                                              (line   6)
-* tags, as an agenda view:               Storing searches.    (line   9)
-* tags, groups:                          Tag hierarchy.       (line   6)
-* tags, setting:                         Setting tags.        (line   6)
-* tags-todo:                             Storing searches.    (line   9)
-* tags-tree:                             Storing searches.    (line   9)
-* tangling:                              Extracting source code.
-                                                              (line   6)
-* targets, for links:                    Internal links.      (line   6)
-* targets, radio:                        Radio targets.       (line   6)
-* tasks, breaking down:                  Breaking down tasks. (line   6)
-* tasks, repeated:                       Repeated tasks.      (line   6)
-* template insertion:                    Easy templates.      (line   6)
-* template, custom:                      Applying custom styles.
-                                                              (line   6)
-* template, custom <1>:                  Working with OpenDocument style files.
-                                                              (line   6)
-* templates, for Capture:                Capture templates.   (line   6)
-* TeX interpretation:                    Embedded LaTeX.      (line   6)
-* TeX symbol completion:                 Completion.          (line   6)
-* Texinfo export:                        Texinfo export.      (line   6)
-* Texinfo export, data type index:       Indices.             (line   6)
-* Texinfo export, dir file:              Info directory file. (line   6)
-* Texinfo export, index, concept:        Indices.             (line   6)
-* Texinfo export, index, function:       Indices.             (line   6)
-* Texinfo export, Info directory file:   Info directory file. (line   6)
-* Texinfo export, install-info parameters: Info directory file.
-                                                              (line   6)
-* Texinfo export, keystroke index:       Indices.             (line   6)
-* Texinfo export, program index:         Indices.             (line   6)
-* Texinfo export, Top node:              Headings and sectioning structure.
-                                                              (line  37)
-* Texinfo export, variable index:        Indices.             (line   6)
-* text areas, in HTML:                   Text areas in HTML export.
-                                                              (line   6)
-* text search:                           Search view.         (line   6)
-* thanks:                                History and acknowledgments.
-                                                              (line   5)
-* The Top node, in Texinfo export:       Headings and sectioning structure.
-                                                              (line  37)
-* time clocking:                         Clocking work time.  (line   6)
-* time format, custom:                   Custom time format.  (line   6)
-* time grid:                             Time-of-day specifications.
-                                                              (line  29)
-* Time, computing:                       Durations and time values.
-                                                              (line   6)
-* time, macro:                           Macro replacement.   (line  36)
-* time, reading in minibuffer:           The date/time prompt.
-                                                              (line   6)
-* time-of-day specification:             Time-of-day specifications.
-                                                              (line   6)
-* timerange:                             Timestamps.          (line  42)
-* times:                                 Dates and times.     (line   6)
-* timestamp:                             Dates and times.     (line   6)
-* timestamp <1>:                         Timestamps.          (line  14)
-* timestamp, inactive:                   Timestamps.          (line  50)
-* timestamp, with repeater interval:     Timestamps.          (line  25)
-* timestamps:                            Timestamps.          (line   6)
-* timestamps, creating:                  Creating timestamps. (line   6)
-* title, macro:                          Macro replacement.   (line  24)
-* TODO dependencies:                     TODO dependencies.   (line   6)
-* TODO dependencies, NOBLOCKING:         TODO dependencies.   (line   6)
-* TODO items:                            TODO items.          (line   6)
-* TODO keyword matching:                 Global TODO list.    (line  17)
-* TODO keyword matching, with tags search: Matching tags and properties.
-                                                              (line  67)
-* TODO keyword sets:                     Multiple sets in one file.
-                                                              (line   6)
-* TODO keywords completion:              Completion.          (line   6)
-* TODO list, global:                     Global TODO list.    (line   6)
-* TODO types:                            TODO types.          (line   6)
-* TODO workflow:                         Workflow states.     (line   6)
-* todo, as an agenda view:               Storing searches.    (line   9)
-* todo-tree:                             Storing searches.    (line   9)
-* top headline filtering, in agenda:     Filtering/limiting agenda items.
-                                                              (line  17)
-* transient mark mode:                   Structure editing.   (line 116)
-* transient mark mode <1>:               Built-in table editor.
-                                                              (line 145)
-* transient-mark-mode:                   ODT export commands. (line   6)
-* translator function:                   Translator functions.
-                                                              (line   6)
-* trees, sparse:                         Sparse trees.        (line   6)
-* trees, visibility:                     Visibility cycling.  (line   6)
-* tty key bindings:                      TTY keys.            (line   6)
-* Two-column tables, in Texinfo export:  Plain lists in Texinfo export.
-                                                              (line   6)
-* types as TODO keywords:                TODO types.          (line   6)
-* underlined text, markup rules:         Emphasis and monospace.
-                                                              (line   6)
-* undoing remote-editing events:         Agenda commands.     (line 201)
-* unison:                                Uploading files.     (line   6)
-* unoconv:                               Extending ODT export.
-                                                              (line  12)
-* updating, table:                       Updating the table.  (line   6)
-* URL links:                             External links.      (line   6)
-* USENET links:                          External links.      (line   6)
-* UTF-8 export:                          ASCII/Latin-1/UTF-8 export.
-                                                              (line   6)
-* variable index, in Texinfo export:     Indices.             (line   6)
-* variables, for customization:          Customization.       (line   6)
-* vectors, in table calculations:        Formula syntax for Calc.
-                                                              (line  11)
-* verbatim blocks, in LaTeX export:      Example blocks in LaTeX export.
-                                                              (line   6)
-* verbatim text, markup rules:           Emphasis and monospace.
-                                                              (line   6)
-* verse blocks:                          Paragraphs.          (line  13)
-* viper.el:                              Conflicts.           (line  93)
-* visibility cycling:                    Visibility cycling.  (line   6)
-* visibility cycling, drawers:           Drawers.             (line   6)
-* visibility, initialize:                Initial visibility.  (line   6)
-* visible text, printing:                Sparse trees.        (line  49)
-* VM links:                              External links.      (line  41)
-* WANDERLUST links:                      External links.      (line  41)
-* weekly agenda:                         Weekly/daily agenda. (line   6)
-* windmove.el:                           Conflicts.           (line  80)
-* workflow states as TODO keywords:      Workflow states.     (line   6)
-* yasnippet.el:                          Conflicts.           (line  54)
-* zip:                                   Pre-requisites for ODT export.
-                                                              (line   6)
-
-
-File: org,  Node: Key Index,  Next: Command and Function Index,  Prev: Main Index,  Up: Top
-
-Key index
-*********
-
-�[index�]
-* Menu:
-
-* $:                                     Agenda commands.     (line 226)
-* %:                                     Agenda commands.     (line 320)
-* ':                                     CDLaTeX mode.        (line  38)
-* *:                                     Agenda commands.     (line 310)
-* +:                                     Agenda commands.     (line 243)
-* ,:                                     Agenda commands.     (line 237)
-* -:                                     Agenda commands.     (line 247)
-* .:                                     Agenda commands.     (line  90)
-* /:                                     Filtering/limiting agenda items.
-                                                              (line  17)
-* / <1>:                                 Agenda commands.     (line 176)
-* ::                                     Agenda commands.     (line 234)
-* ;:                                     Timers.              (line   6)
-* <:                                     Using column view.   (line  61)
-* < <1>:                                 The date/time prompt.
-                                                              (line  82)
-* < <2>:                                 Agenda files.        (line  53)
-* < <3>:                                 Filtering/limiting agenda items.
-                                                              (line  65)
-* < <4>:                                 Agenda commands.     (line 180)
-* =:                                     Filtering/limiting agenda items.
-                                                              (line  80)
-* = <1>:                                 Agenda commands.     (line 188)
-* >:                                     Using column view.   (line  61)
-* > <1>:                                 The date/time prompt.
-                                                              (line  82)
-* > <2>:                                 Agenda files.        (line  57)
-* > <3>:                                 Agenda commands.     (line 276)
-* ?:                                     Pulling from MobileOrg.
-                                                              (line  26)
-* [:                                     Filtering/limiting agenda items.
-                                                              (line  56)
-* [ <1>:                                 Agenda commands.     (line 109)
-* ]:                                     Filtering/limiting agenda items.
-                                                              (line  56)
-* ^:                                     Filtering/limiting agenda items.
-                                                              (line  76)
-* ^ <1>:                                 Agenda commands.     (line 184)
-* ^ <2>:                                 CDLaTeX mode.        (line  30)
-* _:                                     Filtering/limiting agenda items.
-                                                              (line  91)
-* _ <1>:                                 Agenda commands.     (line 191)
-* _ <2>:                                 CDLaTeX mode.        (line  30)
-* `:                                     CDLaTeX mode.        (line  35)
-* {:                                     Filtering/limiting agenda items.
-                                                              (line  56)
-* |:                                     Filtering/limiting agenda items.
-                                                              (line 112)
-* | <1>:                                 Agenda commands.     (line 194)
-* }:                                     Filtering/limiting agenda items.
-                                                              (line  56)
-* ~:                                     Filtering/limiting agenda items.
-                                                              (line 151)
-* a:                                     Using column view.   (line  51)
-* A:                                     Agenda commands.     (line  61)
-* a <1>:                                 Agenda commands.     (line 217)
-* b:                                     Agenda commands.     (line  88)
-* B:                                     Agenda commands.     (line 322)
-* c:                                     Agenda commands.     (line 381)
-* c <1>:                                 Agenda commands.     (line 382)
-* C:                                     Agenda commands.     (line 410)
-* C-#:                                   Advanced features.   (line  10)
-* C-':                                   Agenda files.        (line  21)
-* C-,:                                   Agenda files.        (line  21)
-* C-0 C-c C-w:                           Refile and copy.     (line  42)
-* C-c !:                                 Creating timestamps. (line  15)
-* C-c #:                                 Checkboxes.          (line  80)
-* C-c $:                                 Moving subtrees.     (line   9)
-* C-c %:                                 Handling links.      (line 135)
-* C-c &:                                 Handling links.      (line 139)
-* C-c ':                                 Footnotes.           (line  81)
-* C-c ' <1>:                             Editing and debugging formulas.
-                                                              (line  32)
-* C-c ' <2>:                             Literal examples.    (line  87)
-* C-c ' <3>:                             Include files.       (line  59)
-* C-c ' <4>:                             Editing source code. (line   6)
-* C-c ' <5>:                             Cooperation.         (line  44)
-* C-c *:                                 Structure editing.   (line 106)
-* C-c * <1>:                             Plain lists.         (line 130)
-* C-c * <2>:                             Updating the table.  (line  13)
-* C-c +:                                 Built-in table editor.
-                                                              (line 145)
-* C-c ,:                                 Priorities.          (line  24)
-* C-c -:                                 Plain lists.         (line 119)
-* C-c - <1>:                             Built-in table editor.
-                                                              (line  94)
-* C-c .:                                 Creating timestamps. (line  10)
-* C-c /:                                 Sparse trees.        (line  15)
-* C-c / <1>:                             Conflicts.           (line  93)
-* C-c / /:                               Sparse trees.        (line  17)
-* C-c / a:                               Inserting deadline/schedule.
-                                                              (line  29)
-* C-c / b:                               Inserting deadline/schedule.
-                                                              (line  27)
-* C-c / d:                               Inserting deadline/schedule.
-                                                              (line  21)
-* C-c / m:                               Tag searches.        (line   9)
-* C-c / m <1>:                           Property searches.   (line  10)
-* C-c / p:                               Property searches.   (line  27)
-* C-c / r:                               Sparse trees.        (line  17)
-* C-c / t:                               TODO basics.         (line  39)
-* C-c ;:                                 Comment lines.       (line  19)
-* C-c <:                                 Creating timestamps. (line  25)
-* C-c =:                                 Column formulas.     (line  32)
-* C-c = <1>:                             Editing and debugging formulas.
-                                                              (line  13)
-* C-c >:                                 Creating timestamps. (line  28)
-* C-c ?:                                 Editing and debugging formulas.
-                                                              (line  21)
-* C-c @:                                 Structure editing.   (line  54)
-* C-c a:                                 Conventions.         (line  33)
-* C-c a !:                               Stuck projects.      (line  14)
-* C-c a #:                               Stuck projects.      (line  13)
-* C-c a ?:                               Pulling from MobileOrg.
-                                                              (line  35)
-* C-c a a:                               Weekly/daily agenda. (line   9)
-* C-c a C:                               Storing searches.    (line   9)
-* C-c a e:                               Exporting agenda views.
-                                                              (line  63)
-* C-c a m:                               Tag searches.        (line  13)
-* C-c a M:                               Tag searches.        (line  16)
-* C-c a m <1>:                           Property searches.   (line  12)
-* C-c a M <1>:                           Property searches.   (line  15)
-* C-c a m <2>:                           Matching tags and properties.
-                                                              (line  12)
-* C-c a M <2>:                           Matching tags and properties.
-                                                              (line  17)
-* C-c a s:                               Search view.         (line   9)
-* C-c a t:                               TODO basics.         (line  49)
-* C-c a t <1>:                           Global TODO list.    (line   9)
-* C-c a T:                               Global TODO list.    (line  15)
-* C-c c:                                 Conventions.         (line  33)
-* C-c c <1>:                             Using capture.       (line   6)
-* C-c c C:                               Capture templates.   (line  10)
-* C-c C-*:                               Plain lists.         (line 134)
-* C-c C-a:                               Attachments.         (line  26)
-* C-c C-a <1>:                           Agenda commands.     (line 253)
-* C-c C-a a:                             Attachments.         (line  31)
-* C-c C-a c:                             Attachments.         (line  37)
-* C-c C-a d:                             Attachments.         (line  66)
-* C-c C-a D:                             Attachments.         (line  69)
-* C-c C-a f:                             Attachments.         (line  60)
-* C-c C-a F:                             Attachments.         (line  63)
-* C-c C-a i:                             Attachments.         (line  78)
-* C-c C-a l:                             Attachments.         (line  37)
-* C-c C-a m:                             Attachments.         (line  37)
-* C-c C-a n:                             Attachments.         (line  44)
-* C-c C-a o:                             Attachments.         (line  51)
-* C-c C-a O:                             Attachments.         (line  57)
-* C-c C-a s:                             Attachments.         (line  73)
-* C-c C-a u:                             Attachments.         (line  41)
-* C-c C-a z:                             Attachments.         (line  47)
-* C-c C-b:                               Motion.              (line  13)
-* C-c C-b <1>:                           Editing support.     (line  11)
-* C-c C-c:                               Plain lists.         (line 115)
-* C-c C-c <1>:                           Footnotes.           (line  71)
-* C-c C-c <2>:                           Built-in table editor.
-                                                              (line  58)
-* C-c C-c <3>:                           Editing and debugging formulas.
-                                                              (line  41)
-* C-c C-c <4>:                           Editing and debugging formulas.
-                                                              (line  77)
-* C-c C-c <5>:                           Editing and debugging formulas.
-                                                              (line  84)
-* C-c C-c <6>:                           Checkboxes.          (line  52)
-* C-c C-c <7>:                           Setting tags.        (line  19)
-* C-c C-c <8>:                           Property syntax.     (line  89)
-* C-c C-c <9>:                           Using column view.   (line  46)
-* C-c C-c <10>:                          Capturing column view.
-                                                              (line  48)
-* C-c C-c <11>:                          Creating timestamps. (line  23)
-* C-c C-c <12>:                          Clocking commands.   (line  48)
-* C-c C-c <13>:                          Clocking commands.   (line  48)
-* C-c C-c <14>:                          The clock table.     (line  16)
-* C-c C-c <15>:                          Using capture.       (line  15)
-* C-c C-c <16>:                          Previewing LaTeX fragments.
-                                                              (line  23)
-* C-c C-c <17>:                          Evaluating code blocks.
-                                                              (line  20)
-* C-c C-c <18>:                          Key bindings and useful functions.
-                                                              (line  11)
-* C-c C-c <19>:                          The very busy C-c C-c key.
-                                                              (line   6)
-* C-c C-c <20>:                          Cooperation.         (line  36)
-* C-c C-c c:                             Property syntax.     (line 102)
-* C-c C-c d:                             Property syntax.     (line  98)
-* C-c C-c D:                             Property syntax.     (line 100)
-* C-c C-c s:                             Property syntax.     (line  92)
-* C-c C-d:                               Inserting deadline/schedule.
-                                                              (line   9)
-* C-c C-d <1>:                           Agenda commands.     (line 258)
-* C-c C-e:                               The export dispatcher.
-                                                              (line  15)
-* C-c C-e c a:                           iCalendar export.    (line  40)
-* C-c C-e c c:                           iCalendar export.    (line  43)
-* C-c C-e c f:                           iCalendar export.    (line  38)
-* C-c C-e C-v:                           Sparse trees.        (line  49)
-* C-c C-e h h:                           HTML Export commands.
-                                                              (line   6)
-* C-c C-e h H:                           HTML Export commands.
-                                                              (line  11)
-* C-c C-e i i:                           Texinfo export commands.
-                                                              (line   8)
-* C-c C-e i t:                           Texinfo export commands.
-                                                              (line   6)
-* C-c C-e l b:                           Beamer export commands.
-                                                              (line   6)
-* C-c C-e l B:                           Beamer export commands.
-                                                              (line   8)
-* C-c C-e l l:                           LaTeX export commands.
-                                                              (line   6)
-* C-c C-e l L:                           LaTeX export commands.
-                                                              (line  11)
-* C-c C-e l P:                           Beamer export commands.
-                                                              (line  10)
-* C-c C-e l p:                           LaTeX export commands.
-                                                              (line  12)
-* C-c C-e m m:                           Markdown export.     (line  16)
-* C-c C-e m M:                           Markdown export.     (line  18)
-* C-c C-e o o:                           ODT export commands. (line   6)
-* C-c C-e O o:                           Org export.          (line  13)
-* C-c C-e O O:                           Org export.          (line  17)
-* C-c C-e P a:                           Triggering publication.
-                                                              (line  14)
-* C-c C-e P f:                           Triggering publication.
-                                                              (line  12)
-* C-c C-e P p:                           Triggering publication.
-                                                              (line  10)
-* C-c C-e P x:                           Triggering publication.
-                                                              (line   8)
-* C-c C-e t a/l/u:                       ASCII/Latin-1/UTF-8 export.
-                                                              (line  23)
-* C-c C-e t A/L/U:                       ASCII/Latin-1/UTF-8 export.
-                                                              (line  27)
-* C-c C-f:                               Motion.              (line  11)
-* C-c C-j:                               Motion.              (line  17)
-* C-c C-k:                               Global and local cycling.
-                                                              (line  45)
-* C-c C-k <1>:                           Using capture.       (line  31)
-* C-c C-l:                               Handling links.      (line  64)
-* C-c C-n:                               Motion.              (line   8)
-* C-c C-o:                               Footnotes.           (line  75)
-* C-c C-o <1>:                           Handling links.      (line  98)
-* C-c C-o <2>:                           Creating timestamps. (line  32)
-* C-c C-o <3>:                           Agenda commands.     (line  53)
-* C-c C-o <4>:                           Key bindings and useful functions.
-                                                              (line  11)
-* C-c C-p:                               Motion.              (line   9)
-* C-c C-q:                               Editing and debugging formulas.
-                                                              (line  44)
-* C-c C-q <1>:                           Setting tags.        (line  10)
-* C-c C-r:                               Global and local cycling.
-                                                              (line  37)
-* C-c C-r <1>:                           Editing and debugging formulas.
-                                                              (line  45)
-* C-c C-s:                               Inserting deadline/schedule.
-                                                              (line  16)
-* C-c C-s <1>:                           Agenda commands.     (line 255)
-* C-c C-t:                               TODO basics.         (line  13)
-* C-c C-t <1>:                           Clocking commands.   (line  61)
-* C-c C-u:                               Motion.              (line  15)
-* C-c C-v a:                             Key bindings and useful functions.
-                                                              (line  37)
-* C-c C-v b:                             Key bindings and useful functions.
-                                                              (line  25)
-* C-c C-v c:                             Key bindings and useful functions.
-                                                              (line  30)
-* C-c C-v C-a:                           Key bindings and useful functions.
-                                                              (line  37)
-* C-c C-v C-b:                           Key bindings and useful functions.
-                                                              (line  25)
-* C-c C-v C-c:                           Key bindings and useful functions.
-                                                              (line  30)
-* C-c C-v C-d:                           Key bindings and useful functions.
-                                                              (line  27)
-* C-c C-v C-e:                           Key bindings and useful functions.
-                                                              (line  19)
-* C-c C-v C-f:                           Key bindings and useful functions.
-                                                              (line  29)
-* C-c C-v C-g:                           Key bindings and useful functions.
-                                                              (line  23)
-* C-c C-v C-h:                           Key bindings and useful functions.
-                                                              (line  37)
-* C-c C-v C-i:                           Key bindings and useful functions.
-                                                              (line  33)
-* C-c C-v C-I:                           Key bindings and useful functions.
-                                                              (line  34)
-* C-c C-v C-j:                           Key bindings and useful functions.
-                                                              (line  31)
-* C-c C-v C-l:                           Key bindings and useful functions.
-                                                              (line  32)
-* C-c C-v C-n:                           Key bindings and useful functions.
-                                                              (line  18)
-* C-c C-v C-o:                           Key bindings and useful functions.
-                                                              (line  20)
-* C-c C-v C-p:                           Key bindings and useful functions.
-                                                              (line  18)
-* C-c C-v C-r:                           Key bindings and useful functions.
-                                                              (line  24)
-* C-c C-v C-s:                           Key bindings and useful functions.
-                                                              (line  26)
-* C-c C-v C-t:                           Key bindings and useful functions.
-                                                              (line  28)
-* C-c C-v C-u:                           Key bindings and useful functions.
-                                                              (line  22)
-* C-c C-v C-v:                           Key bindings and useful functions.
-                                                              (line  21)
-* C-c C-v C-x:                           Key bindings and useful functions.
-                                                              (line  38)
-* C-c C-v C-z:                           Key bindings and useful functions.
-                                                              (line  35)
-* C-c C-v d:                             Key bindings and useful functions.
-                                                              (line  27)
-* C-c C-v e:                             Key bindings and useful functions.
-                                                              (line  19)
-* C-c C-v f:                             Key bindings and useful functions.
-                                                              (line  29)
-* C-c C-v g:                             Key bindings and useful functions.
-                                                              (line  23)
-* C-c C-v h:                             Key bindings and useful functions.
-                                                              (line  37)
-* C-c C-v i:                             Library of Babel.    (line  12)
-* C-c C-v i <1>:                         Key bindings and useful functions.
-                                                              (line  33)
-* C-c C-v I:                             Key bindings and useful functions.
-                                                              (line  34)
-* C-c C-v j:                             Key bindings and useful functions.
-                                                              (line  31)
-* C-c C-v l:                             Key bindings and useful functions.
-                                                              (line  32)
-* C-c C-v n:                             Key bindings and useful functions.
-                                                              (line  18)
-* C-c C-v o:                             Key bindings and useful functions.
-                                                              (line  20)
-* C-c C-v p:                             Key bindings and useful functions.
-                                                              (line  18)
-* C-c C-v r:                             Key bindings and useful functions.
-                                                              (line  24)
-* C-c C-v s:                             Key bindings and useful functions.
-                                                              (line  26)
-* C-c C-v t:                             Extracting source code.
-                                                              (line  34)
-* C-c C-v t <1>:                         Key bindings and useful functions.
-                                                              (line  28)
-* C-c C-v u:                             Key bindings and useful functions.
-                                                              (line  22)
-* C-c C-v v:                             Key bindings and useful functions.
-                                                              (line  21)
-* C-c C-v x:                             Key bindings and useful functions.
-                                                              (line  38)
-* C-c C-v z:                             Key bindings and useful functions.
-                                                              (line  35)
-* C-c C-w:                               Structure editing.   (line  86)
-* C-c C-w <1>:                           Using capture.       (line  22)
-* C-c C-w <2>:                           Refile and copy.     (line  14)
-* C-c C-w <3>:                           Agenda commands.     (line 215)
-* C-c C-x ,:                             Timers.              (line  41)
-* C-c C-x -:                             Timers.              (line  34)
-* C-c C-x .:                             Timers.              (line  30)
-* C-c C-x 0:                             Timers.              (line  12)
-* C-c C-x ;:                             Timers.              (line  20)
-* C-c C-x <:                             Agenda files.        (line  39)
-* C-c C-x >:                             Agenda files.        (line  46)
-* C-c C-x > <1>:                         Agenda commands.     (line 166)
-* C-c C-x a:                             Internal archiving.  (line  33)
-* C-c C-x A:                             Internal archiving.  (line  44)
-* C-c C-x a <1>:                         Agenda commands.     (line 221)
-* C-c C-x A <1>:                         Agenda commands.     (line 223)
-* C-c C-x b:                             Global and local cycling.
-                                                              (line  51)
-* C-c C-x b <1>:                         Agenda commands.     (line  45)
-* C-c C-x c:                             Structure editing.   (line  79)
-* C-c C-x C-a:                           Archiving.           (line  11)
-* C-c C-x C-a <1>:                       Agenda commands.     (line 217)
-* C-c C-x C-b:                           Checkboxes.          (line  56)
-* C-c C-x C-c:                           Using column view.   (line   9)
-* C-c C-x C-c <1>:                       Agenda commands.     (line 156)
-* C-c C-x C-c <2>:                       Agenda column view.  (line  11)
-* C-c C-x C-d:                           Clocking commands.   (line  71)
-* C-c C-x C-e:                           Clocking commands.   (line  46)
-* C-c C-x C-e <1>:                       Effort estimates.    (line  17)
-* C-c C-x C-i:                           Clocking commands.   (line   6)
-* C-c C-x C-j:                           Clocking commands.   (line  67)
-* C-c C-x C-l:                           Previewing LaTeX fragments.
-                                                              (line  17)
-* C-c C-x C-n:                           Handling links.      (line 143)
-* C-c C-x C-o:                           Clocking commands.   (line  34)
-* C-c C-x C-p:                           Handling links.      (line 143)
-* C-c C-x C-q:                           Clocking commands.   (line  64)
-* C-c C-x C-r:                           The clock table.     (line  10)
-* C-c C-x C-s:                           Moving subtrees.     (line   9)
-* C-c C-x C-s <1>:                       Agenda commands.     (line 226)
-* C-c C-x C-t:                           Custom time format.  (line  12)
-* C-c C-x C-u:                           Capturing column view.
-                                                              (line  48)
-* C-c C-x C-u <1>:                       The clock table.     (line  16)
-* C-c C-x C-u <2>:                       Dynamic blocks.      (line  21)
-* C-c C-x C-v:                           Handling links.      (line 127)
-* C-c C-x C-w:                           Structure editing.   (line  57)
-* C-c C-x C-w <1>:                       Built-in table editor.
-                                                              (line 122)
-* C-c C-x C-x:                           Clocking commands.   (line  41)
-* C-c C-x C-y:                           Structure editing.   (line  63)
-* C-c C-x C-y <1>:                       Built-in table editor.
-                                                              (line 126)
-* C-c C-x d:                             Drawers.             (line   6)
-* C-c C-x e:                             Effort estimates.    (line  14)
-* C-c C-x f:                             Footnotes.           (line  39)
-* C-c C-x g:                             RSS feeds.           (line  23)
-* C-c C-x G:                             RSS feeds.           (line  26)
-* C-c C-x i:                             Capturing column view.
-                                                              (line  46)
-* C-c C-x M-w:                           Structure editing.   (line  60)
-* C-c C-x M-w <1>:                       Built-in table editor.
-                                                              (line 118)
-* C-c C-x o:                             TODO dependencies.   (line  37)
-* C-c C-x o <1>:                         Checkboxes.          (line  73)
-* C-c C-x p:                             Property syntax.     (line  82)
-* C-c C-x p <1>:                         Header arguments in Org mode properties.
-                                                              (line  31)
-* C-c C-x q:                             Tag hierarchy.       (line  86)
-* C-c C-x v:                             Global and local cycling.
-                                                              (line  56)
-* C-c C-x \:                             Special symbols.     (line  34)
-* C-c C-x \ <1>:                         Subscripts and superscripts.
-                                                              (line  20)
-* C-c C-x _:                             Timers.              (line  43)
-* C-c C-y:                               Creating timestamps. (line  50)
-* C-c C-y <1>:                           Clocking commands.   (line  48)
-* C-c C-y <2>:                           Clocking commands.   (line  48)
-* C-c C-z:                               Drawers.             (line  35)
-* C-c C-z <1>:                           Agenda commands.     (line 249)
-* C-c l:                                 Handling links.      (line   9)
-* C-c l <1>:                             Literal examples.    (line  95)
-* C-c M-w:                               Refile and copy.     (line  12)
-* C-c <RET>:                             Built-in table editor.
-                                                              (line  97)
-* C-c <SPC>:                             Built-in table editor.
-                                                              (line  59)
-* C-c <TAB>:                             Global and local cycling.
-                                                              (line  48)
-* C-c [:                                 Agenda files.        (line  15)
-* C-c \:                                 Tag searches.        (line   9)
-* C-c \ <1>:                             Property searches.   (line  10)
-* C-c ]:                                 Agenda files.        (line  19)
-* C-c ^:                                 Structure editing.   (line  89)
-* C-c ^ <1>:                             Plain lists.         (line 142)
-* C-c ^ <2>:                             Built-in table editor.
-                                                              (line 100)
-* C-c `:                                 Built-in table editor.
-                                                              (line 161)
-* C-c {:                                 Editing and debugging formulas.
-                                                              (line  29)
-* C-c { <1>:                             CDLaTeX mode.        (line  20)
-* C-c |:                                 Built-in table editor.
-                                                              (line  41)
-* C-c | <1>:                             Built-in table editor.
-                                                              (line 177)
-* C-c }:                                 Editing and debugging formulas.
-                                                              (line  24)
-* C-c } <1>:                             Editing and debugging formulas.
-                                                              (line  67)
-* C-c ~:                                 Cooperation.         (line  46)
-* C-k:                                   Agenda commands.     (line 210)
-* C-M-i:                                 Completion.          (line  38)
-* C-<RET>:                               Structure editing.   (line  23)
-* C-S-LEFT:                              Multiple sets in one file.
-                                                              (line  25)
-* C-S-<LEFT>:                            Agenda commands.     (line 209)
-* C-S-<RET>:                             Structure editing.   (line  28)
-* C-S-RIGHT:                             Multiple sets in one file.
-                                                              (line  25)
-* C-S-<RIGHT>:                           Agenda commands.     (line 207)
-* C-S-<up/down>:                         Clocking commands.   (line  52)
-* C-<TAB>:                               Internal archiving.  (line  42)
-* C-u C-c !:                             Creating timestamps. (line  17)
-* C-u C-c *:                             Updating the table.  (line  16)
-* C-u C-c .:                             Creating timestamps. (line  17)
-* C-u C-c =:                             Field and range formulas.
-                                                              (line  27)
-* C-u C-c = <1>:                         Editing and debugging formulas.
-                                                              (line  13)
-* C-u C-c c:                             Using capture.       (line  42)
-* C-u C-c C-c:                           Updating the table.  (line  18)
-* C-u C-c C-l:                           Handling links.      (line  85)
-* C-u C-c C-t:                           TODO basics.         (line  28)
-* C-u C-c C-w:                           Refile and copy.     (line  32)
-* C-u C-c C-x a:                         Internal archiving.  (line  36)
-* C-u C-c C-x C-s:                       Moving subtrees.     (line  11)
-* C-u C-c C-x C-u:                       Capturing column view.
-                                                              (line  50)
-* C-u C-c C-x C-u <1>:                   The clock table.     (line  18)
-* C-u C-c C-x C-u <2>:                   Dynamic blocks.      (line  22)
-* C-u C-u C-c *:                         Updating the table.  (line  21)
-* C-u C-u C-c =:                         Editing and debugging formulas.
-                                                              (line  16)
-* C-u C-u C-c c:                         Using capture.       (line  44)
-* C-u C-u C-c C-c:                       Updating the table.  (line  21)
-* C-u C-u C-c C-t:                       Multiple sets in one file.
-                                                              (line  25)
-* C-u C-u C-c C-w:                       Refile and copy.     (line  34)
-* C-u C-u C-c C-x C-s:                   Moving subtrees.     (line  17)
-* C-u C-u C-u C-c C-t:                   TODO dependencies.   (line  42)
-* C-u C-u C-u <TAB>:                     Global and local cycling.
-                                                              (line  35)
-* C-u C-u <TAB>:                         Global and local cycling.
-                                                              (line  33)
-* C-u C-u <TAB> <1>:                     Initial visibility.  (line  21)
-* C-v:                                   The date/time prompt.
-                                                              (line  82)
-* C-x C-s:                               Editing and debugging formulas.
-                                                              (line  41)
-* C-x C-s <1>:                           Agenda commands.     (line 153)
-* C-x C-w:                               Agenda commands.     (line 425)
-* C-x C-w <1>:                           Exporting agenda views.
-                                                              (line  12)
-* C-x n b:                               Structure editing.   (line 102)
-* C-x n s:                               Structure editing.   (line 100)
-* C-x n w:                               Structure editing.   (line 104)
-* C-y:                                   Structure editing.   (line  68)
-* C-_:                                   Agenda commands.     (line 201)
-* d:                                     Agenda commands.     (line  65)
-* D:                                     Agenda commands.     (line  96)
-* e:                                     Using column view.   (line  41)
-* E:                                     Agenda commands.     (line 136)
-* F:                                     Agenda commands.     (line  39)
-* f:                                     Agenda commands.     (line  83)
-* g:                                     Using column view.   (line  23)
-* G:                                     Agenda commands.     (line 142)
-* g <1>:                                 Agenda commands.     (line 151)
-* H:                                     Agenda commands.     (line 413)
-* I:                                     Agenda commands.     (line 279)
-* i:                                     Agenda commands.     (line 385)
-* j:                                     Agenda commands.     (line  92)
-* J:                                     Agenda commands.     (line  94)
-* J <1>:                                 Agenda commands.     (line 286)
-* k:                                     Agenda commands.     (line 288)
-* L:                                     Agenda commands.     (line  33)
-* l:                                     Agenda commands.     (line  99)
-* m:                                     Agenda commands.     (line 308)
-* M:                                     Agenda commands.     (line 403)
-* M-*:                                   Agenda commands.     (line 318)
-* M-<down>:                              Agenda commands.     (line 301)
-* M-<up>:                                Agenda commands.     (line 297)
-* M-a:                                   Built-in table editor.
-                                                              (line  70)
-* M-<DOWN>:                              Structure editing.   (line  47)
-* M-DOWN:                                Plain lists.         (line  93)
-* M-<DOWN> <1>:                          Built-in table editor.
-                                                              (line  86)
-* M-<DOWN> <2>:                          Editing and debugging formulas.
-                                                              (line  64)
-* M-DOWN <1>:                            Key bindings and useful functions.
-                                                              (line  13)
-* M-e:                                   Built-in table editor.
-                                                              (line  73)
-* M-g M-n:                               Sparse trees.        (line  28)
-* M-g M-p:                               Sparse trees.        (line  30)
-* M-g n:                                 Sparse trees.        (line  28)
-* M-g p:                                 Sparse trees.        (line  30)
-* M-h:                                   Structure editing.   (line  49)
-* M-<LEFT>:                              Structure editing.   (line  37)
-* M-LEFT:                                Plain lists.         (line  98)
-* M-<LEFT> <1>:                          Built-in table editor.
-                                                              (line  80)
-* M-m:                                   Agenda commands.     (line 316)
-* M-<RET>:                               Structure editing.   (line   6)
-* M-<RET> <1>:                           Plain lists.         (line  77)
-* M-<RET> <2>:                           Built-in table editor.
-                                                              (line 131)
-* M-<RET> <3>:                           Timers.              (line  38)
-* M-<RIGHT>:                             Structure editing.   (line  39)
-* M-RIGHT:                               Plain lists.         (line  98)
-* M-<RIGHT> <1>:                         Built-in table editor.
-                                                              (line  80)
-* M-S-<DOWN>:                            Built-in table editor.
-                                                              (line  91)
-* M-S-<DOWN> <1>:                        Editing and debugging formulas.
-                                                              (line  60)
-* M-S-DOWN:                              The date/time prompt.
-                                                              (line  82)
-* M-S-<LEFT>:                            Structure editing.   (line  41)
-* M-S-LEFT:                              Plain lists.         (line 102)
-* M-S-<LEFT> <1>:                        Built-in table editor.
-                                                              (line  82)
-* M-S-LEFT <1>:                          The date/time prompt.
-                                                              (line  82)
-* M-S-<RET>:                             Structure editing.   (line  25)
-* M-S-RET:                               Plain lists.         (line  86)
-* M-S-<RET> <1>:                         Checkboxes.          (line  71)
-* M-S-<RIGHT>:                           Structure editing.   (line  43)
-* M-S-RIGHT:                             Plain lists.         (line 102)
-* M-S-<RIGHT> <1>:                       Built-in table editor.
-                                                              (line  84)
-* M-S-RIGHT <1>:                         The date/time prompt.
-                                                              (line  82)
-* M-S-<UP>:                              Built-in table editor.
-                                                              (line  89)
-* M-S-<UP> <1>:                          Editing and debugging formulas.
-                                                              (line  60)
-* M-S-UP:                                The date/time prompt.
-                                                              (line  82)
-* M-<TAB>:                               Editing and debugging formulas.
-                                                              (line  54)
-* M-TAB:                                 Per-file keywords.   (line  23)
-* M-TAB <1>:                             Setting tags.        (line   6)
-* M-<TAB> <1>:                           Property syntax.     (line  80)
-* M-TAB <2>:                             Completion.          (line  15)
-* M-<UP>:                                Structure editing.   (line  45)
-* M-UP:                                  Plain lists.         (line  93)
-* M-<UP> <1>:                            Built-in table editor.
-                                                              (line  86)
-* M-<UP> <2>:                            Editing and debugging formulas.
-                                                              (line  64)
-* M-UP <1>:                              Key bindings and useful functions.
-                                                              (line  12)
-* M-v:                                   The date/time prompt.
-                                                              (line  82)
-* mouse-1:                               Footnotes.           (line  75)
-* mouse-1 <1>:                           Handling links.      (line 120)
-* mouse-1 <2>:                           The date/time prompt.
-                                                              (line  82)
-* mouse-2:                               Footnotes.           (line  75)
-* mouse-2 <1>:                           Handling links.      (line 120)
-* mouse-2 <2>:                           Agenda commands.     (line  35)
-* mouse-3:                               Handling links.      (line 124)
-* mouse-3 <1>:                           Agenda commands.     (line  31)
-* n:                                     Using column view.   (line  38)
-* n <1>:                                 Agenda commands.     (line  19)
-* N:                                     Agenda commands.     (line  22)
-* o:                                     Agenda commands.     (line  63)
-* O:                                     Agenda commands.     (line 282)
-* p:                                     Using column view.   (line  38)
-* p <1>:                                 Agenda commands.     (line  20)
-* P:                                     Agenda commands.     (line  24)
-* P <1>:                                 Agenda commands.     (line 241)
-* q:                                     Using column view.   (line  25)
-* q <1>:                                 Agenda commands.     (line 439)
-* r:                                     Using column view.   (line  20)
-* r <1>:                                 Global TODO list.    (line  22)
-* R:                                     Agenda commands.     (line 118)
-* r <2>:                                 Agenda commands.     (line 145)
-* <RET>:                                 Built-in table editor.
-                                                              (line  66)
-* <RET> <1>:                             Handling links.      (line 118)
-* RET:                                   Setting tags.        (line 116)
-* RET <1>:                               The date/time prompt.
-                                                              (line  82)
-* <RET> <2>:                             Agenda commands.     (line  37)
-* s:                                     Agenda commands.     (line 153)
-* S:                                     Agenda commands.     (line 406)
-* S-DOWN:                                Plain lists.         (line  87)
-* S-DOWN <1>:                            Editing and debugging formulas.
-                                                              (line  56)
-* S-<DOWN>:                              Priorities.          (line  28)
-* S-<DOWN> <1>:                          Creating timestamps. (line  39)
-* S-DOWN <2>:                            The date/time prompt.
-                                                              (line  82)
-* S-<DOWN> <2>:                          Agenda commands.     (line 247)
-* S-LEFT:                                Plain lists.         (line 138)
-* S-LEFT <1>:                            Editing and debugging formulas.
-                                                              (line  56)
-* S-LEFT <2>:                            TODO basics.         (line  34)
-* S-LEFT <3>:                            Multiple sets in one file.
-                                                              (line  32)
-* S-<LEFT>:                              Property syntax.     (line  95)
-* S-LEFT <4>:                            Using column view.   (line  33)
-* S-<LEFT> <1>:                          Creating timestamps. (line  35)
-* S-LEFT <5>:                            The date/time prompt.
-                                                              (line  82)
-* S-<LEFT> <2>:                          The clock table.     (line  21)
-* S-<LEFT> <3>:                          Agenda commands.     (line 273)
-* S-M-<LEFT>:                            Using column view.   (line  65)
-* S-M-<RET>:                             TODO basics.         (line  56)
-* S-M-<RIGHT>:                           Using column view.   (line  63)
-* S-M-<up/down>:                         Clocking commands.   (line  55)
-* S-<RET>:                               Built-in table editor.
-                                                              (line 148)
-* S-RIGHT:                               Plain lists.         (line 138)
-* S-RIGHT <1>:                           Editing and debugging formulas.
-                                                              (line  56)
-* S-RIGHT <2>:                           TODO basics.         (line  34)
-* S-RIGHT <3>:                           Multiple sets in one file.
-                                                              (line  32)
-* S-<RIGHT>:                             Property syntax.     (line  95)
-* S-RIGHT <4>:                           Using column view.   (line  33)
-* S-<RIGHT> <1>:                         Creating timestamps. (line  35)
-* S-RIGHT <5>:                           The date/time prompt.
-                                                              (line  82)
-* S-<RIGHT> <2>:                         The clock table.     (line  21)
-* S-<RIGHT> <3>:                         Agenda commands.     (line 261)
-* S-<TAB>:                               Global and local cycling.
-                                                              (line  18)
-* S-<TAB> <1>:                           Built-in table editor.
-                                                              (line  64)
-* S-UP:                                  Editing and debugging formulas.
-                                                              (line  56)
-* S-<UP>:                                Priorities.          (line  28)
-* S-<UP> <1>:                            Creating timestamps. (line  39)
-* S-UP <1>:                              The date/time prompt.
-                                                              (line  82)
-* S-<UP> <2>:                            Agenda commands.     (line 243)
-* SPC:                                   Setting tags.        (line 113)
-* <SPC>:                                 Agenda commands.     (line  31)
-* t:                                     Agenda commands.     (line 204)
-* T:                                     Agenda commands.     (line 230)
-* <TAB>:                                 Global and local cycling.
-                                                              (line  10)
-* <TAB> <1>:                             Structure editing.   (line  32)
-* <TAB> <2>:                             Plain lists.         (line  66)
-* <TAB> <3>:                             Built-in table editor.
-                                                              (line  61)
-* <TAB> <4>:                             Editing and debugging formulas.
-                                                              (line  48)
-* TAB:                                   Setting tags.        (line 107)
-* <TAB> <5>:                             Agenda commands.     (line  35)
-* TAB <1>:                               CDLaTeX mode.        (line  21)
-* u:                                     Agenda commands.     (line 312)
-* U:                                     Agenda commands.     (line 314)
-* v:                                     Using column view.   (line  48)
-* v a:                                   Agenda commands.     (line 112)
-* v A:                                   Agenda commands.     (line 114)
-* v c:                                   Agenda commands.     (line 128)
-* v d:                                   Agenda commands.     (line  65)
-* v E:                                   Agenda commands.     (line 136)
-* v l:                                   Agenda commands.     (line  99)
-* v L:                                   Agenda commands.     (line 101)
-* v m:                                   Agenda commands.     (line  69)
-* v R:                                   Agenda commands.     (line 118)
-* v <SPC>:                               Agenda commands.     (line  71)
-* v t:                                   Agenda commands.     (line  68)
-* v w:                                   Agenda commands.     (line  67)
-* v y:                                   Agenda commands.     (line  70)
-* v [:                                   Agenda commands.     (line 109)
-* w:                                     Agenda commands.     (line  67)
-* X:                                     Agenda commands.     (line 284)
-* x:                                     Agenda commands.     (line 440)
-* z:                                     Agenda commands.     (line 249)
-
-
-File: org,  Node: Command and Function Index,  Next: Variable Index,  Prev: Key Index,  Up: Top
-
-Command and function index
-**************************
-
-�[index�]
-* Menu:
-
-* lisp-complete-symbol:                  Editing and debugging formulas.
-                                                              (line  54)
-* next-error:                            Sparse trees.        (line  28)
-* org-agenda:                            Activation.          (line   6)
-* org-agenda <1>:                        Conventions.         (line  33)
-* org-agenda-add-note:                   Agenda commands.     (line 249)
-* org-agenda-archive:                    Agenda commands.     (line 226)
-* org-agenda-archive-default-with-confirmation: Agenda commands.
-                                                              (line 217)
-* org-agenda-archive-to-archive-sibling: Agenda commands.     (line 223)
-* org-agenda-archives-mode:              Agenda commands.     (line 112)
-* org-agenda-archives-mode 'files:       Agenda commands.     (line 114)
-* org-agenda-bulk-action:                Agenda commands.     (line 322)
-* org-agenda-bulk-mark:                  Agenda commands.     (line 308)
-* org-agenda-bulk-mark-all:              Agenda commands.     (line 310)
-* org-agenda-bulk-mark-regexp:           Agenda commands.     (line 320)
-* org-agenda-bulk-remove-all-marks:      Agenda commands.     (line 314)
-* org-agenda-bulk-toggle:                Agenda commands.     (line 316)
-* org-agenda-bulk-toggle-all:            Agenda commands.     (line 318)
-* org-agenda-bulk-unmark:                Agenda commands.     (line 312)
-* org-agenda-capture:                    Agenda commands.     (line 288)
-* org-agenda-clock-cancel:               Agenda commands.     (line 284)
-* org-agenda-clock-goto:                 Agenda commands.     (line  94)
-* org-agenda-clock-goto <1>:             Agenda commands.     (line 286)
-* org-agenda-clock-in:                   Agenda commands.     (line 279)
-* org-agenda-clock-out:                  Agenda commands.     (line 282)
-* org-agenda-clockreport-mode:           Agenda commands.     (line 118)
-* org-agenda-columns:                    Agenda commands.     (line 156)
-* org-agenda-columns <1>:                Agenda column view.  (line  11)
-* org-agenda-convert-date:               Agenda commands.     (line 410)
-* org-agenda-date-prompt:                Agenda commands.     (line 276)
-* org-agenda-day-view:                   Agenda commands.     (line  65)
-* org-agenda-deadline:                   Agenda commands.     (line 258)
-* org-agenda-diary-entry:                Agenda commands.     (line 385)
-* org-agenda-do-date-earlier:            Agenda commands.     (line 273)
-* org-agenda-do-date-later:              Agenda commands.     (line 261)
-* org-agenda-drag-line-backward:         Agenda commands.     (line 297)
-* org-agenda-drag-line-forward:          Agenda commands.     (line 301)
-* org-agenda-earlier:                    Agenda commands.     (line  88)
-* org-agenda-entry-text-mode:            Agenda commands.     (line 136)
-* org-agenda-exit:                       Agenda commands.     (line 440)
-* org-agenda-file-to-front:              Agenda files.        (line  15)
-* org-agenda-filter-by-category:         Filtering/limiting agenda items.
-                                                              (line  65)
-* org-agenda-filter-by-category <1>:     Agenda commands.     (line 180)
-* org-agenda-filter-by-effort:           Filtering/limiting agenda items.
-                                                              (line  91)
-* org-agenda-filter-by-effort <1>:       Agenda commands.     (line 191)
-* org-agenda-filter-by-regexp:           Filtering/limiting agenda items.
-                                                              (line  80)
-* org-agenda-filter-by-regexp <1>:       Agenda commands.     (line 188)
-* org-agenda-filter-by-tag:              Filtering/limiting agenda items.
-                                                              (line  17)
-* org-agenda-filter-by-tag <1>:          Agenda commands.     (line 176)
-* org-agenda-filter-by-top-headline:     Filtering/limiting agenda items.
-                                                              (line  76)
-* org-agenda-filter-by-top-headline <1>: Agenda commands.     (line 184)
-* org-agenda-filter-remove-all:          Filtering/limiting agenda items.
-                                                              (line 112)
-* org-agenda-filter-remove-all <1>:      Agenda commands.     (line 194)
-* org-agenda-follow-mode:                Agenda commands.     (line  39)
-* org-agenda-fortnight-view:             Agenda commands.     (line  68)
-* org-agenda-goto:                       Agenda commands.     (line  35)
-* org-agenda-goto-calendar:              Agenda commands.     (line 381)
-* org-agenda-goto-date:                  Agenda commands.     (line  92)
-* org-agenda-goto-today:                 Agenda commands.     (line  90)
-* org-agenda-holidays:                   Agenda commands.     (line 413)
-* org-agenda-kill:                       Agenda commands.     (line 210)
-* org-agenda-later:                      Agenda commands.     (line  83)
-* org-agenda-limit-interactively:        Filtering/limiting agenda items.
-                                                              (line 151)
-* org-agenda-list:                       Weekly/daily agenda. (line   9)
-* org-agenda-list-stuck-projects:        Stuck projects.      (line  13)
-* org-agenda-log-mode:                   Agenda commands.     (line  99)
-* org-agenda-manipulate-query-add:       Agenda commands.     (line 109)
-* org-agenda-month-view:                 Agenda commands.     (line  69)
-* org-agenda-next-item:                  Agenda commands.     (line  22)
-* org-agenda-next-line:                  Agenda commands.     (line  19)
-* org-agenda-open-link:                  Agenda commands.     (line  53)
-* org-agenda-phases-of-moon:             Agenda commands.     (line 403)
-* org-agenda-previous-item:              Agenda commands.     (line  24)
-* org-agenda-previous-line:              Agenda commands.     (line  20)
-* org-agenda-priority-down:              Agenda commands.     (line 247)
-* org-agenda-priority-up:                Agenda commands.     (line 243)
-* org-agenda-quit:                       Agenda commands.     (line 439)
-* org-agenda-recenter:                   Agenda commands.     (line  33)
-* org-agenda-redo:                       Agenda commands.     (line 145)
-* org-agenda-redo <1>:                   Agenda commands.     (line 151)
-* org-agenda-refile:                     Agenda commands.     (line 215)
-* org-agenda-remove-restriction-lock:    Agenda files.        (line  46)
-* org-agenda-remove-restriction-lock <1>: Agenda files.       (line  57)
-* org-agenda-remove-restriction-lock <2>: Agenda commands.    (line 166)
-* org-agenda-reset-view:                 Agenda commands.     (line  71)
-* org-agenda-schedule:                   Agenda commands.     (line 255)
-* org-agenda-set-restriction-lock:       Agenda files.        (line  39)
-* org-agenda-set-tags:                   Agenda commands.     (line 234)
-* org-agenda-show-and-scroll-up:         Agenda commands.     (line  31)
-* org-agenda-show-priority:              Agenda commands.     (line 241)
-* org-agenda-show-tags:                  Agenda commands.     (line 230)
-* org-agenda-sunrise-sunset:             Agenda commands.     (line 406)
-* org-agenda-switch-to:                  Agenda commands.     (line  37)
-* org-agenda-todo:                       Agenda commands.     (line 204)
-* org-agenda-todo-nextset:               Agenda commands.     (line 207)
-* org-agenda-todo-previousset:           Agenda commands.     (line 209)
-* org-agenda-toggle-archive-tag:         Agenda commands.     (line 221)
-* org-agenda-toggle-diary:               Agenda commands.     (line  96)
-* org-agenda-toggle-time-grid:           Agenda commands.     (line 142)
-* org-agenda-tree-to-indirect-buffer:    Agenda commands.     (line  45)
-* org-agenda-undo:                       Agenda commands.     (line 201)
-* org-agenda-week-view:                  Agenda commands.     (line  67)
-* org-agenda-write:                      Agenda commands.     (line 425)
-* org-agenda-write <1>:                  Exporting agenda views.
-                                                              (line  12)
-* org-agenda-year-view:                  Agenda commands.     (line  70)
-* org-archive-subtree:                   Moving subtrees.     (line   9)
-* org-archive-subtree-default:           Archiving.           (line  11)
-* org-archive-to-archive-sibling:        Internal archiving.  (line  44)
-* org-ascii-export-as-ascii:             ASCII/Latin-1/UTF-8 export.
-                                                              (line  27)
-* org-ascii-export-to-ascii:             ASCII/Latin-1/UTF-8 export.
-                                                              (line  23)
-* org-attach:                            Attachments.         (line  26)
-* org-attach <1>:                        Agenda commands.     (line 253)
-* org-attach-attach:                     Attachments.         (line  31)
-* org-attach-delete-all:                 Attachments.         (line  69)
-* org-attach-delete-one:                 Attachments.         (line  66)
-* org-attach-new:                        Attachments.         (line  44)
-* org-attach-open:                       Attachments.         (line  51)
-* org-attach-open-in-emacs:              Attachments.         (line  57)
-* org-attach-reveal:                     Attachments.         (line  60)
-* org-attach-reveal-in-emacs:            Attachments.         (line  63)
-* org-attach-set-directory:              Attachments.         (line  73)
-* org-attach-set-inherit:                Attachments.         (line  78)
-* org-attach-sync:                       Attachments.         (line  47)
-* org-attach-url:                        Attachments.         (line  41)
-* org-backward-same-level:               Motion.              (line  13)
-* org-beamer-export-as-latex:            Beamer export commands.
-                                                              (line   8)
-* org-beamer-export-to-latex:            Beamer export commands.
-                                                              (line   6)
-* org-beamer-export-to-pdf:              Beamer export commands.
-                                                              (line  10)
-* org-beamer-select-environment:         Editing support.     (line  11)
-* org-buffer-property-keys:              Using the property API.
-                                                              (line  33)
-* org-calendar-goto-agenda:              Agenda commands.     (line 382)
-* org-capture:                           Activation.          (line   6)
-* org-capture <1>:                       Conventions.         (line  33)
-* org-capture <2>:                       Using capture.       (line   6)
-* org-capture-finalize:                  Using capture.       (line  15)
-* org-capture-kill:                      Using capture.       (line  31)
-* org-capture-refile:                    Using capture.       (line  22)
-* org-check-after-date:                  Inserting deadline/schedule.
-                                                              (line  29)
-* org-check-before-date:                 Inserting deadline/schedule.
-                                                              (line  27)
-* org-check-deadlines:                   Inserting deadline/schedule.
-                                                              (line  21)
-* org-clock-cancel:                      Clocking commands.   (line  64)
-* org-clock-display:                     Clocking commands.   (line  71)
-* org-clock-goto:                        Clocking commands.   (line  67)
-* org-clock-in:                          Clocking commands.   (line   6)
-* org-clock-in-last:                     Clocking commands.   (line  41)
-* org-clock-modify-effort-estimate:      Clocking commands.   (line  46)
-* org-clock-modify-effort-estimate <1>:  Effort estimates.    (line  17)
-* org-clock-out:                         Clocking commands.   (line  34)
-* org-clock-report:                      The clock table.     (line  10)
-* org-clock-timestamps-up/down:          Clocking commands.   (line  52)
-* org-clocktable-try-shift:              The clock table.     (line  21)
-* org-clone-subtree-with-time-shift:     Structure editing.   (line  79)
-* org-columns:                           Using column view.   (line   9)
-* org-columns-delete:                    Using column view.   (line  65)
-* org-columns-edit-allowed:              Using column view.   (line  51)
-* org-columns-edit-value:                Using column view.   (line  41)
-* org-columns-narrow:                    Using column view.   (line  61)
-* org-columns-new:                       Using column view.   (line  63)
-* org-columns-next-allowed-value:        Using column view.   (line  38)
-* org-columns-previous-allowed-value:    Using column view.   (line  38)
-* org-columns-quit:                      Using column view.   (line  25)
-* org-columns-redo:                      Using column view.   (line  20)
-* org-columns-redo <1>:                  Using column view.   (line  23)
-* org-columns-set-tags-or-toggle:        Using column view.   (line  46)
-* org-columns-show-value:                Using column view.   (line  48)
-* org-columns-widen:                     Using column view.   (line  61)
-* org-compute-property-at-point:         Property syntax.     (line 102)
-* org-copy:                              Refile and copy.     (line  12)
-* org-copy <1>:                          Refile and copy.     (line  13)
-* org-copy-subtree:                      Structure editing.   (line  60)
-* org-copy-visible:                      Global and local cycling.
-                                                              (line  56)
-* org-cut-subtree:                       Structure editing.   (line  57)
-* org-cycle:                             Global and local cycling.
-                                                              (line  10)
-* org-cycle <1>:                         Structure editing.   (line  32)
-* org-cycle <2>:                         Plain lists.         (line  66)
-* org-cycle-agenda-files:                Agenda files.        (line  21)
-* org-date-from-calendar:                Creating timestamps. (line  25)
-* org-dblock-update:                     Capturing column view.
-                                                              (line  48)
-* org-dblock-update <1>:                 The clock table.     (line  16)
-* org-dblock-update <2>:                 Dynamic blocks.      (line  21)
-* org-deadline:                          Inserting deadline/schedule.
-                                                              (line   9)
-* org-delete-property:                   Property syntax.     (line  98)
-* org-delete-property-globally:          Property syntax.     (line 100)
-* org-demote:                            Using the mapping API.
-                                                              (line  76)
-* org-demote-subtree:                    Structure editing.   (line  43)
-* org-do-demote:                         Structure editing.   (line  39)
-* org-do-promote:                        Structure editing.   (line  37)
-* org-edit-special:                      Cooperation.         (line  44)
-* org-entities-help:                     Special symbols.     (line  16)
-* org-entry-add-to-multivalued-property: Using the property API.
-                                                              (line  50)
-* org-entry-delete:                      Using the property API.
-                                                              (line  27)
-* org-entry-get:                         Using the property API.
-                                                              (line  18)
-* org-entry-get-multivalued-property:    Using the property API.
-                                                              (line  45)
-* org-entry-member-in-multivalued-property: Using the property API.
-                                                              (line  61)
-* org-entry-properties:                  Using the property API.
-                                                              (line   8)
-* org-entry-put:                         Using the property API.
-                                                              (line  30)
-* org-entry-put-multivalued-property:    Using the property API.
-                                                              (line  39)
-* org-entry-remove-from-multivalued-property: Using the property API.
-                                                              (line  55)
-* org-evaluate-time-range:               Creating timestamps. (line  50)
-* org-evaluate-time-range <1>:           Clocking commands.   (line  48)
-* org-export-dispatch:                   The export dispatcher.
-                                                              (line  15)
-* org-feed-goto-inbox:                   RSS feeds.           (line  26)
-* org-feed-update-all:                   RSS feeds.           (line  23)
-* org-force-cycle-archived:              Internal archiving.  (line  42)
-* org-forward-same-level:                Motion.              (line  11)
-* org-global-cycle:                      Global and local cycling.
-                                                              (line  18)
-* org-goto:                              Motion.              (line  17)
-* org-goto-calendar:                     Creating timestamps. (line  28)
-* org-html-export-as-html:               HTML Export commands.
-                                                              (line  11)
-* org-html-export-to-html:               HTML Export commands.
-                                                              (line   6)
-* org-icalendar-combine-agenda-files:    iCalendar export.    (line  43)
-* org-icalendar-export-agenda-files:     iCalendar export.    (line  40)
-* org-icalendar-export-to-ics:           iCalendar export.    (line  38)
-* org-insert-columns-dblock:             Capturing column view.
-                                                              (line  46)
-* org-insert-heading:                    Plain lists.         (line  77)
-* org-insert-heading <1>:                Timers.              (line  38)
-* org-insert-heading-respect-content:    Structure editing.   (line  23)
-* org-insert-link:                       Handling links.      (line  64)
-* org-insert-property-drawer:            Using the property API.
-                                                              (line  18)
-* org-insert-property-drawer <1>:        Using the property API.
-                                                              (line  36)
-* org-insert-todo-heading:               Structure editing.   (line  25)
-* org-insert-todo-heading <1>:           TODO basics.         (line  56)
-* org-insert-todo-heading <2>:           Checkboxes.          (line  71)
-* org-insert-todo-heading-respect-content: Structure editing. (line  28)
-* org-latex-export-as-latex:             LaTeX export commands.
-                                                              (line  11)
-* org-latex-export-to-latex:             LaTeX export commands.
-                                                              (line   6)
-* org-latex-export-to-pdf:               LaTeX export commands.
-                                                              (line  12)
-* org-lookup-all:                        Lookup functions.    (line  20)
-* org-lookup-first:                      Lookup functions.    (line   8)
-* org-lookup-last:                       Lookup functions.    (line  17)
-* org-map-entries:                       Using the mapping API.
-                                                              (line  11)
-* org-mark-element:                      Structure editing.   (line  49)
-* org-mark-ring-goto:                    Handling links.      (line 139)
-* org-mark-ring-push:                    Handling links.      (line 135)
-* org-mark-subtree:                      Structure editing.   (line  54)
-* org-match-sparse-tree:                 Tag searches.        (line   9)
-* org-match-sparse-tree <1>:             Property searches.   (line  10)
-* org-md-export-as-markdown:             Markdown export.     (line  18)
-* org-md-export-to-markdown:             Markdown export.     (line  16)
-* org-meta-return:                       Structure editing.   (line   6)
-* org-move-subtree-down:                 Structure editing.   (line  47)
-* org-move-subtree-up:                   Structure editing.   (line  45)
-* org-narrow-to-block:                   Structure editing.   (line 102)
-* org-narrow-to-subtree:                 Structure editing.   (line 100)
-* org-next-link:                         Handling links.      (line 143)
-* org-next-visible-heading:              Motion.              (line   8)
-* org-occur:                             Sparse trees.        (line  17)
-* org-odt-export-to-odt:                 ODT export commands. (line   6)
-* org-open-at-point:                     Handling links.      (line  98)
-* org-open-at-point <1>:                 Creating timestamps. (line  32)
-* org-org-export-as-org:                 Org export.          (line  17)
-* org-org-export-to-org:                 Org export.          (line  13)
-* org-paste-subtree:                     Structure editing.   (line  63)
-* org-previous-link:                     Handling links.      (line 143)
-* org-previous-visible-heading:          Motion.              (line   9)
-* org-priority:                          Priorities.          (line  24)
-* org-priority <1>:                      Using the mapping API.
-                                                              (line  64)
-* org-priority-down:                     Priorities.          (line  28)
-* org-priority-up:                       Priorities.          (line  28)
-* org-promote:                           Using the mapping API.
-                                                              (line  73)
-* org-promote-subtree:                   Structure editing.   (line  41)
-* org-property-action:                   Property syntax.     (line  89)
-* org-property-next-allowed-value:       Property syntax.     (line  95)
-* org-property-previous-allowed-value:   Property syntax.     (line  95)
-* org-protocol-create:                   open-source protocol.
-                                                              (line  67)
-* org-protocol-create-for-org:           open-source protocol.
-                                                              (line  67)
-* org-publish:                           Triggering publication.
-                                                              (line   8)
-* org-publish-all:                       Triggering publication.
-                                                              (line  14)
-* org-publish-current-file:              Triggering publication.
-                                                              (line  12)
-* org-publish-current-project:           Triggering publication.
-                                                              (line  10)
-* org-refile:                            Structure editing.   (line  86)
-* org-refile <1>:                        Refile and copy.     (line  14)
-* org-refile <2>:                        Refile and copy.     (line  16)
-* org-refile-cache-clear:                Refile and copy.     (line  42)
-* org-refile-goto-last-stored:           Refile and copy.     (line  34)
-* org-remove-file:                       Agenda files.        (line  19)
-* org-reveal:                            Global and local cycling.
-                                                              (line  37)
-* org-save-all-org-buffers:              Agenda commands.     (line 153)
-* org-schedule:                          Inserting deadline/schedule.
-                                                              (line  16)
-* org-search-view:                       Search view.         (line   9)
-* org-set-effort:                        Effort estimates.    (line  14)
-* org-set-property:                      Property syntax.     (line  82)
-* org-set-property <1>:                  Property syntax.     (line  92)
-* org-set-startup-visibility:            Global and local cycling.
-                                                              (line  33)
-* org-set-startup-visibility <1>:        Initial visibility.  (line  21)
-* org-set-tags-command:                  Setting tags.        (line  10)
-* org-set-tags-command <1>:              Setting tags.        (line  19)
-* org-show-todo-tree:                    TODO basics.         (line  39)
-* org-sort:                              Structure editing.   (line  89)
-* org-sparse-tree:                       Sparse trees.        (line  15)
-* org-speed-command-help:                Speed keys.          (line  18)
-* org-speedbar-set-agenda-restriction:   Agenda files.        (line  53)
-* org-store-agenda-views:                Exporting agenda views.
-                                                              (line  63)
-* org-store-link:                        Activation.          (line   6)
-* org-store-link <1>:                    Handling links.      (line   9)
-* org-switchb:                           Activation.          (line   6)
-* org-table-align:                       Built-in table editor.
-                                                              (line  58)
-* org-table-beginning-of-field:          Built-in table editor.
-                                                              (line  70)
-* org-table-blank-field:                 Built-in table editor.
-                                                              (line  59)
-* org-table-copy-down:                   Built-in table editor.
-                                                              (line 148)
-* org-table-copy-region:                 Built-in table editor.
-                                                              (line 118)
-* org-table-create-or-convert-from-region: Built-in table editor.
-                                                              (line  41)
-* org-table-create-or-convert-from-region <1>: Built-in table editor.
-                                                              (line 177)
-* org-table-create-with-table.el:        Cooperation.         (line  46)
-* org-table-cut-region:                  Built-in table editor.
-                                                              (line 122)
-* org-table-delete-column:               Built-in table editor.
-                                                              (line  82)
-* org-table-edit-field:                  Built-in table editor.
-                                                              (line 161)
-* org-table-edit-formulas:               Editing and debugging formulas.
-                                                              (line  32)
-* org-table-end-of-field:                Built-in table editor.
-                                                              (line  73)
-* org-table-eval-formula:                Field and range formulas.
-                                                              (line  27)
-* org-table-eval-formula <1>:            Column formulas.     (line  32)
-* org-table-eval-formula <2>:            Editing and debugging formulas.
-                                                              (line  13)
-* org-table-eval-formula <3>:            Editing and debugging formulas.
-                                                              (line  16)
-* org-table-export:                      Built-in table editor.
-                                                              (line 183)
-* org-table-fedit-abort:                 Editing and debugging formulas.
-                                                              (line  44)
-* org-table-fedit-finish:                Editing and debugging formulas.
-                                                              (line  41)
-* org-table-fedit-line-down:             Editing and debugging formulas.
-                                                              (line  60)
-* org-table-fedit-line-up:               Editing and debugging formulas.
-                                                              (line  60)
-* org-table-fedit-lisp-indent:           Editing and debugging formulas.
-                                                              (line  48)
-* org-table-fedit-ref-down:              Editing and debugging formulas.
-                                                              (line  56)
-* org-table-fedit-ref-left:              Editing and debugging formulas.
-                                                              (line  56)
-* org-table-fedit-ref-right:             Editing and debugging formulas.
-                                                              (line  56)
-* org-table-fedit-ref-up:                Editing and debugging formulas.
-                                                              (line  56)
-* org-table-fedit-scroll-down:           Editing and debugging formulas.
-                                                              (line  64)
-* org-table-fedit-scroll-up:             Editing and debugging formulas.
-                                                              (line  64)
-* org-table-fedit-toggle-ref-type:       Editing and debugging formulas.
-                                                              (line  45)
-* org-table-field-info:                  Editing and debugging formulas.
-                                                              (line  21)
-* org-table-hline-and-move:              Built-in table editor.
-                                                              (line  97)
-* org-table-insert-column:               Built-in table editor.
-                                                              (line  84)
-* org-table-insert-hline:                Built-in table editor.
-                                                              (line  94)
-* org-table-insert-row:                  Built-in table editor.
-                                                              (line  91)
-* org-table-iterate:                     Updating the table.  (line  21)
-* org-table-iterate-buffer-tables:       Updating the table.  (line  29)
-* org-table-kill-row:                    Built-in table editor.
-                                                              (line  89)
-* org-table-move-column-left:            Built-in table editor.
-                                                              (line  80)
-* org-table-move-column-right:           Built-in table editor.
-                                                              (line  80)
-* org-table-move-row-down:               Built-in table editor.
-                                                              (line  86)
-* org-table-move-row-up:                 Built-in table editor.
-                                                              (line  86)
-* org-table-next-field:                  Built-in table editor.
-                                                              (line  61)
-* org-table-next-row:                    Built-in table editor.
-                                                              (line  66)
-* org-table-paste-rectangle:             Built-in table editor.
-                                                              (line 126)
-* org-table-previous-field:              Built-in table editor.
-                                                              (line  64)
-* org-table-recalculate:                 Updating the table.  (line  13)
-* org-table-recalculate-buffer-tables:   Updating the table.  (line  27)
-* org-table-rotate-recalc-marks:         Advanced features.   (line  10)
-* org-table-sort-lines:                  Built-in table editor.
-                                                              (line 100)
-* org-table-sum:                         Built-in table editor.
-                                                              (line 145)
-* org-table-toggle-coordinate-overlays:  Editing and debugging formulas.
-                                                              (line  24)
-* org-table-toggle-coordinate-overlays <1>: Editing and debugging formulas.
-                                                              (line  67)
-* org-table-toggle-formula-debugger:     Editing and debugging formulas.
-                                                              (line  29)
-* org-table-wrap-region:                 Built-in table editor.
-                                                              (line 131)
-* org-tags-view:                         Tag searches.        (line  13)
-* org-tags-view <1>:                     Tag searches.        (line  16)
-* org-tags-view <2>:                     Property searches.   (line  12)
-* org-tags-view <3>:                     Property searches.   (line  15)
-* org-tags-view <4>:                     Matching tags and properties.
-                                                              (line  12)
-* org-tags-view <5>:                     Matching tags and properties.
-                                                              (line  17)
-* org-texinfo-export-to-info:            Texinfo export commands.
-                                                              (line   8)
-* org-texinfo-export-to-texinfo:         Texinfo export commands.
-                                                              (line   6)
-* org-time-stamp:                        Creating timestamps. (line  10)
-* org-time-stamp-inactive:               Creating timestamps. (line  15)
-* org-timer:                             Timers.              (line  30)
-* org-timer-item:                        Timers.              (line  34)
-* org-timer-pause-or-continue:           Timers.              (line  41)
-* org-timer-set-timer:                   Timers.              (line  20)
-* org-timer-start:                       Timers.              (line  12)
-* org-timer-stop:                        Timers.              (line  43)
-* org-timestamp-down-day:                Creating timestamps. (line  35)
-* org-timestamp-down-down:               Creating timestamps. (line  39)
-* org-timestamp-up:                      Creating timestamps. (line  39)
-* org-timestamp-up-day:                  Creating timestamps. (line  35)
-* org-timestamp-up/down:                 Clocking commands.   (line  55)
-* org-todo:                              TODO basics.         (line  13)
-* org-todo <1>:                          Clocking commands.   (line  61)
-* org-todo <2>:                          Using the mapping API.
-                                                              (line  60)
-* org-todo-list:                         TODO basics.         (line  49)
-* org-todo-list <1>:                     Global TODO list.    (line   9)
-* org-todo-list <2>:                     Global TODO list.    (line  15)
-* org-toggle-archive-tag:                Internal archiving.  (line  33)
-* org-toggle-checkbox:                   Checkboxes.          (line  52)
-* org-toggle-checkbox <1>:               Checkboxes.          (line  56)
-* org-toggle-heading:                    Structure editing.   (line 106)
-* org-toggle-inline-images:              Handling links.      (line 127)
-* org-toggle-ordered-property:           TODO dependencies.   (line  37)
-* org-toggle-ordered-property <1>:       Checkboxes.          (line  73)
-* org-toggle-tag:                        Using the mapping API.
-                                                              (line  68)
-* org-toggle-time-stamp-overlays:        Custom time format.  (line  12)
-* org-tree-to-indirect-buffer:           Global and local cycling.
-                                                              (line  51)
-* org-update-all-dblocks:                Capturing column view.
-                                                              (line  50)
-* org-update-statistics-cookies:         Checkboxes.          (line  80)
-* org-yank:                              Structure editing.   (line  68)
-* outline-show-all:                      Global and local cycling.
-                                                              (line  35)
-* outline-show-branches:                 Global and local cycling.
-                                                              (line  45)
-* outline-show-children:                 Global and local cycling.
-                                                              (line  48)
-* outline-up-heading:                    Motion.              (line  15)
-* pcomplete:                             Property syntax.     (line  80)
-* previous-error:                        Sparse trees.        (line  30)
-* widen:                                 Structure editing.   (line 104)
-
-
-File: org,  Node: Variable Index,  Prev: Command and Function Index,  Up: Top
-
-Variable index
-**************
-
-This is not a complete index of variables and faces, only the ones that
-are mentioned in the manual.  For a complete list, use ‘M-x
-org-customize <RET>’.
-
-�[index�]
-* Menu:
-
-* cdlatex-simplify-sub-super-scripts:    CDLaTeX mode.        (line  30)
-* constants-unit-system:                 References.          (line 115)
-* constants-unit-system <1>:             In-buffer settings.  (line 135)
-* htmlize-output-type:                   Exporting agenda views.
-                                                              (line  20)
-* LaTeX-verbatim-environments:           A LaTeX example.     (line  19)
-* org-adapt-indentation:                 Clean view.          (line  52)
-* org-agenda-add-entry-text-maxlines:    Exporting agenda views.
-                                                              (line  20)
-* org-agenda-bulk-custom-functions:      Agenda commands.     (line 308)
-* org-agenda-category-filter-preset:     Filtering/limiting agenda items.
-                                                              (line  66)
-* org-agenda-clock-consistency-checks:   Agenda commands.     (line 130)
-* org-agenda-columns-add-appointments-to-effort-sum: Effort estimates.
-                                                              (line  40)
-* org-agenda-confirm-kill:               Agenda commands.     (line 212)
-* org-agenda-custom-commands:            Sparse trees.        (line  34)
-* org-agenda-custom-commands <1>:        Storing searches.    (line   9)
-* org-agenda-custom-commands <2>:        Setting options.     (line   6)
-* org-agenda-custom-commands <3>:        Setting options.     (line  31)
-* org-agenda-custom-commands <4>:        Extracting agenda information.
-                                                              (line   6)
-* org-agenda-custom-commands-contexts:   Setting options.     (line  60)
-* org-agenda-diary-file:                 Agenda commands.     (line 387)
-* org-agenda-dim-blocked-tasks:          TODO dependencies.   (line  46)
-* org-agenda-dim-blocked-tasks <1>:      Speeding up your agendas.
-                                                              (line  13)
-* org-agenda-effort-filter-preset:       Filtering/limiting agenda items.
-                                                              (line  92)
-* org-agenda-entry-text-maxlines:        Agenda commands.     (line 137)
-* org-agenda-exporter-settings:          Agenda commands.     (line 426)
-* org-agenda-exporter-settings <1>:      Exporting agenda views.
-                                                              (line  13)
-* org-agenda-files:                      Agenda files.        (line   6)
-* org-agenda-files <1>:                  Sorting agenda items.
-                                                              (line   8)
-* org-agenda-files <2>:                  iCalendar export.    (line  42)
-* org-agenda-inhibit-startup:            Initial visibility.  (line   6)
-* org-agenda-inhibit-startup <1>:        Speeding up your agendas.
-                                                              (line  15)
-* org-agenda-log-mode-items:             Agenda commands.     (line 101)
-* org-agenda-max-effort:                 Filtering/limiting agenda items.
-                                                              (line 118)
-* org-agenda-max-entries:                Filtering/limiting agenda items.
-                                                              (line 118)
-* org-agenda-max-tags:                   Filtering/limiting agenda items.
-                                                              (line 118)
-* org-agenda-max-todos:                  Filtering/limiting agenda items.
-                                                              (line 118)
-* org-agenda-ndays:                      Weekly/daily agenda. (line  15)
-* org-agenda-overriding-header:          Special agenda views.
-                                                              (line  38)
-* org-agenda-prefix-format:              Presentation and sorting.
-                                                              (line   6)
-* org-agenda-regexp-filter-preset:       Filtering/limiting agenda items.
-                                                              (line  81)
-* org-agenda-restore-windows-after-quit: Agenda views.        (line  37)
-* org-agenda-search-headline-for-time:   Time-of-day specifications.
-                                                              (line  14)
-* org-agenda-show-inherited-tags:        Agenda commands.     (line 232)
-* org-agenda-show-inherited-tags <1>:    Speeding up your agendas.
-                                                              (line  17)
-* org-agenda-skip-archived-trees:        Internal archiving.  (line  20)
-* org-agenda-skip-archived-trees <1>:    Agenda views.        (line  32)
-* org-agenda-skip-comment-trees:         Agenda views.        (line  32)
-* org-agenda-skip-deadline-prewarning-if-scheduled: Deadlines and scheduling.
-                                                              (line  15)
-* org-agenda-skip-function:              Special agenda views.
-                                                              (line   6)
-* org-agenda-skip-function <1>:          Special agenda views.
-                                                              (line  41)
-* org-agenda-skip-function <2>:          Using the mapping API.
-                                                              (line  48)
-* org-agenda-skip-function-global:       Special agenda views.
-                                                              (line   6)
-* org-agenda-skip-scheduled-delay-if-deadline: Deadlines and scheduling.
-                                                              (line  44)
-* org-agenda-skip-scheduled-if-deadline-is-shown: Repeated tasks.
-                                                              (line  72)
-* org-agenda-skip-scheduled-if-done:     Deadlines and scheduling.
-                                                              (line  36)
-* org-agenda-sorting-strategy:           Sorting agenda items.
-                                                              (line  25)
-* org-agenda-span:                       Weekly/daily agenda. (line  15)
-* org-agenda-span <1>:                   Agenda commands.     (line  72)
-* org-agenda-start-day:                  Weekly/daily agenda. (line  15)
-* org-agenda-start-on-weekday:           Weekly/daily agenda. (line  15)
-* org-agenda-start-with-clockreport-mode: Agenda commands.    (line 120)
-* org-agenda-start-with-entry-text-mode: Agenda commands.     (line 137)
-* org-agenda-start-with-follow-mode:     Agenda commands.     (line  41)
-* org-agenda-sticky:                     Agenda dispatcher.   (line  43)
-* org-agenda-tag-filter-preset:          Filtering/limiting agenda items.
-                                                              (line  18)
-* org-agenda-tags-column:                Presentation and sorting.
-                                                              (line   6)
-* org-agenda-tags-todo-honor-ignore-options: Matching tags and properties.
-                                                              (line  19)
-* org-agenda-text-search-extra-files:    Agenda dispatcher.   (line  25)
-* org-agenda-text-search-extra-files <1>: Search view.        (line  24)
-* org-agenda-time-grid:                  Time-of-day specifications.
-                                                              (line  44)
-* org-agenda-time-grid <1>:              Agenda commands.     (line 144)
-* org-agenda-todo-ignore-deadlines:      Global TODO list.    (line  37)
-* org-agenda-todo-ignore-scheduled:      Global TODO list.    (line  37)
-* org-agenda-todo-ignore-timestamp:      Global TODO list.    (line  37)
-* org-agenda-todo-ignore-with-date:      Global TODO list.    (line  37)
-* org-agenda-todo-list-sublevels:        Breaking down tasks. (line   6)
-* org-agenda-todo-list-sublevels <1>:    Global TODO list.    (line  45)
-* org-agenda-use-tag-inheritance:        Tag inheritance.     (line  32)
-* org-agenda-use-tag-inheritance <1>:    Speeding up your agendas.
-                                                              (line  17)
-* org-agenda-use-time-grid:              Time-of-day specifications.
-                                                              (line  44)
-* org-agenda-use-time-grid <1>:          Agenda commands.     (line 144)
-* org-agenda-window-setup:               Agenda views.        (line  37)
-* org-archive-default-command:           Archiving.           (line  12)
-* org-archive-default-command <1>:       Agenda commands.     (line 219)
-* org-archive-location:                  Moving subtrees.     (line  10)
-* org-archive-location <1>:              In-buffer settings.  (line  14)
-* org-archive-save-context-info:         Moving subtrees.     (line  39)
-* org-ascii-links-to-notes:              ASCII/Latin-1/UTF-8 export.
-                                                              (line  16)
-* org-ascii-text-width:                  ASCII/Latin-1/UTF-8 export.
-                                                              (line  13)
-* org-attach-directory:                  Attachments.         (line   6)
-* org-attach-method:                     Attachments.         (line  32)
-* org-babel-default-header-args:         System-wide header arguments.
-                                                              (line   6)
-* org-babel-default-header-args <1>:     Header arguments in Org mode properties.
-                                                              (line  31)
-* org-babel-load-languages:              Languages.           (line  35)
-* org-beamer-environments-default:       Sectioning Frames and Blocks in Beamer.
-                                                              (line  21)
-* org-beamer-environments-extra:         Sectioning Frames and Blocks in Beamer.
-                                                              (line  21)
-* org-beamer-frame-level:                Sectioning Frames and Blocks in Beamer.
-                                                              (line  10)
-* org-beamer-subtitle-format:            Beamer specific export settings.
-                                                              (line  44)
-* org-beamer-theme:                      Beamer specific export settings.
-                                                              (line  11)
-* org-calc-default-modes:                Formula syntax for Calc.
-                                                              (line  14)
-* org-capture-bookmark:                  Using capture.       (line  48)
-* org-capture-templates:                 Capture templates.   (line  11)
-* org-capture-templates-contexts:        Templates in contexts.
-                                                              (line   6)
-* org-capture-use-agenda-date:           Agenda commands.     (line 292)
-* org-catch-invisible-edits:             Catching invisible edits.
-                                                              (line   6)
-* org-checkbox-hierarchical-statistics:  Checkboxes.          (line  30)
-* org-clock-continuously:                Clocking commands.   (line   7)
-* org-clock-continuously <1>:            Clocking commands.   (line  43)
-* org-clock-continuously <2>:            Resolving idle time. (line  74)
-* org-clock-idle-time:                   Resolving idle time. (line  14)
-* org-clock-into-drawer:                 Clocking commands.   (line   7)
-* org-clock-modeline-total:              Clocking commands.   (line  20)
-* org-clock-report-include-clocking-task: Agenda commands.    (line 120)
-* org-clock-x11idle-program-name:        Resolving idle time. (line   9)
-* org-clocktable-defaults:               The clock table.     (line  34)
-* org-closed-keep-when-no-todo:          Closing items.       (line  11)
-* org-coderef-label-format:              Literal examples.    (line  75)
-* org-columns-default-format:            Using column view.   (line  10)
-* org-columns-default-format <1>:        Effort estimates.    (line  30)
-* org-columns-default-format <2>:        Agenda commands.     (line 158)
-* org-columns-default-format <3>:        Agenda column view.  (line  18)
-* org-columns-skip-archived-trees:       Internal archiving.  (line  28)
-* org-columns-summary-types:             Column attributes.   (line  64)
-* org-confirm-babel-evaluate:            Code evaluation security.
-                                                              (line  25)
-* org-confirm-elisp-link-function:       Code evaluation security.
-                                                              (line  51)
-* org-confirm-shell-link-function:       Code evaluation security.
-                                                              (line  49)
-* org-create-file-search-functions:      Custom searches.     (line  12)
-* org-ctrl-c-ctrl-c-hook:                Context-sensitive commands.
-                                                              (line   6)
-* org-ctrl-k-protect-subtree:            Headlines.           (line   6)
-* org-cycle-emulate-tab:                 Global and local cycling.
-                                                              (line  16)
-* org-cycle-global-at-bob:               Global and local cycling.
-                                                              (line  29)
-* org-cycle-include-plain-lists:         Plain lists.         (line  67)
-* org-cycle-open-archived-trees:         Internal archiving.  (line  12)
-* org-cycle-separator-lines:             Headlines.           (line  26)
-* org-deadline-warning-days:             Deadlines and scheduling.
-                                                              (line  15)
-* org-deadline-warning-days <1>:         Inserting deadline/schedule.
-                                                              (line  23)
-* org-default-notes-file:                Setting up capture.  (line   9)
-* org-default-notes-file <1>:            Template elements.   (line  45)
-* org-default-priority:                  Priorities.          (line  36)
-* org-default-priority <1>:              In-buffer settings.  (line  39)
-* org-display-custom-times:              Custom time format.  (line   6)
-* org-display-internal-link-with-indirect-buffer: Handling links.
-                                                              (line 126)
-* org-disputed-keys:                     Conflicts.           (line  28)
-* org-done (face):                       Faces for TODO keywords.
-                                                              (line   6)
-* org-edit-footnote-reference:           Footnotes.           (line  81)
-* org-edit-src-auto-save-idle-delay:     Editing source code. (line   6)
-* org-edit-src-turn-on-auto-save:        Editing source code. (line   6)
-* org-emphasis-alist:                    Emphasis and monospace.
-                                                              (line   6)
-* org-emphasis-regexp-components:        Emphasis and monospace.
-                                                              (line   6)
-* org-enforce-todo-dependencies:         TODO dependencies.   (line   6)
-* org-enforce-todo-dependencies <1>:     TODO dependencies.   (line  51)
-* org-entities-user:                     Special symbols.     (line  16)
-* org-execute-file-search-functions:     Custom searches.     (line  12)
-* org-export-allow-bind-keywords:        Export settings.     (line 210)
-* org-export-async-init-file:            The export dispatcher.
-                                                              (line  28)
-* org-export-backends:                   Exporting.           (line  33)
-* org-export-backends <1>:               Other built-in back-ends.
-                                                              (line   6)
-* org-export-before-parsing-hook:        Advanced configuration.
-                                                              (line   9)
-* org-export-before-processing-hook:     Advanced configuration.
-                                                              (line   9)
-* org-export-creator-string:             Export settings.     (line  28)
-* org-export-creator-string <1>:         HTML preamble and postamble.
-                                                              (line   6)
-* org-export-date-timestamp-format:      Export settings.     (line  32)
-* org-export-default-language:           Export settings.     (line  38)
-* org-export-dispatch-use-expert-ui:     The export dispatcher.
-                                                              (line   6)
-* org-export-exclude-tags:               Export settings.     (line  52)
-* org-export-global-macros:              Macro replacement.   (line   6)
-* org-export-headline-levels:            Export settings.     (line 141)
-* org-export-in-background:              The export dispatcher.
-                                                              (line  39)
-* org-export-initial-scope:              The export dispatcher.
-                                                              (line  48)
-* org-export-preserve-breaks:            Export settings.     (line  93)
-* org-export-select-tags:                Export settings.     (line  44)
-* org-export-time-stamp-file:            Export settings.     (line 186)
-* org-export-time-stamp-file <1>:        HTML preamble and postamble.
-                                                              (line   6)
-* org-export-use-babel:                  Exporting code blocks.
-                                                              (line  33)
-* org-export-with-archived-trees:        Internal archiving.  (line  25)
-* org-export-with-archived-trees <1>:    Export settings.     (line 102)
-* org-export-with-author:                Export settings.     (line 107)
-* org-export-with-broken-links:          Export settings.     (line 111)
-* org-export-with-clocks:                Export settings.     (line 116)
-* org-export-with-creator:               Export settings.     (line 119)
-* org-export-with-date:                  Export settings.     (line 127)
-* org-export-with-drawers:               Drawers.             (line  38)
-* org-export-with-drawers <1>:           Export settings.     (line 123)
-* org-export-with-email:                 Export settings.     (line 134)
-* org-export-with-entities:              Export settings.     (line 131)
-* org-export-with-fixed-width:           Export settings.     (line  86)
-* org-export-with-footnotes:             Export settings.     (line 138)
-* org-export-with-inlinetasks:           Export settings.     (line 146)
-* org-export-with-latex:                 LaTeX fragments.     (line  37)
-* org-export-with-latex <1>:             Export settings.     (line 182)
-* org-export-with-planning:              Export settings.     (line 156)
-* org-export-with-priority:              Export settings.     (line 162)
-* org-export-with-properties:            Drawers.             (line  38)
-* org-export-with-properties <1>:        Export settings.     (line 165)
-* org-export-with-section-numbers:       Export settings.     (line 149)
-* org-export-with-smart-quotes:          Export settings.     (line  73)
-* org-export-with-special-strings:       Export settings.     (line  82)
-* org-export-with-statistics-cookies:    Export settings.     (line 169)
-* org-export-with-sub-superscripts:      Export settings.     (line  97)
-* org-export-with-tables:                Export settings.     (line 201)
-* org-export-with-tags:                  Export settings.     (line 173)
-* org-export-with-tasks:                 Export settings.     (line 177)
-* org-export-with-timestamps:            Export settings.     (line  89)
-* org-export-with-title:                 Export settings.     (line 190)
-* org-export-with-toc:                   Export settings.     (line 193)
-* org-export-with-toc <1>:               Table of contents.   (line   6)
-* org-export-with-todo-keywords:         Export settings.     (line 197)
-* org-fast-tag-selection-include-todo:   Fast access to TODO states.
-                                                              (line  16)
-* org-fast-tag-selection-single-key:     Setting tags.        (line 142)
-* org-file-apps:                         Handling links.      (line 100)
-* org-file-apps <1>:                     Attachments.         (line  52)
-* org-fontify-emphasized-text:           Emphasis and monospace.
-                                                              (line   6)
-* org-footnote-auto-adjust:              Footnotes.           (line  45)
-* org-footnote-auto-adjust <1>:          In-buffer settings.  (line 140)
-* org-footnote-auto-label:               Footnotes.           (line  32)
-* org-footnote-auto-label <1>:           In-buffer settings.  (line 140)
-* org-footnote-define-inline:            Footnotes.           (line  45)
-* org-footnote-define-inline <1>:        In-buffer settings.  (line 140)
-* org-footnote-section:                  Headlines.           (line  18)
-* org-footnote-section <1>:              Footnotes.           (line  45)
-* org-format-latex-header:               LaTeX fragments.     (line   6)
-* org-format-latex-header <1>:           Previewing LaTeX fragments.
-                                                              (line  12)
-* org-format-latex-options:              Previewing LaTeX fragments.
-                                                              (line  12)
-* org-from-is-user-regexp:               Template expansion.  (line  49)
-* org-global-properties:                 Property syntax.     (line  75)
-* org-global-properties <1>:             Effort estimates.    (line  30)
-* org-goto-auto-isearch:                 Motion.              (line  21)
-* org-goto-interface:                    Motion.              (line  32)
-* org-group-tags:                        Tag hierarchy.       (line  86)
-* org-hide (face):                       Clean view.          (line  70)
-* org-hide-block-startup:                Blocks.              (line   6)
-* org-hide-leading-stars:                In-buffer settings.  (line 119)
-* org-hide-leading-stars <1>:            Clean view.          (line  55)
-* org-hierarchical-todo-statistics:      Breaking down tasks. (line  25)
-* org-highest-priority:                  Priorities.          (line  36)
-* org-highest-priority <1>:              In-buffer settings.  (line  39)
-* org-html-container-element:            HTML Specific export settings.
-                                                              (line  19)
-* org-html-doctype:                      HTML Specific export settings.
-                                                              (line  16)
-* org-html-doctype <1>:                  HTML doctypes.       (line   8)
-* org-html-doctype-alist:                HTML doctypes.       (line   8)
-* org-html-head:                         HTML Specific export settings.
-                                                              (line  35)
-* org-html-head <1>:                     CSS support.         (line  43)
-* org-html-head-extra:                   HTML Specific export settings.
-                                                              (line  39)
-* org-html-head-extra <1>:               CSS support.         (line  43)
-* org-html-head-include-default-style:   CSS support.         (line  43)
-* org-html-html5-elements:               HTML doctypes.       (line  58)
-* org-html-html5-fancy:                  HTML doctypes.       (line  25)
-* org-html-infojs-options:               JavaScript support.  (line  51)
-* org-html-inline-images:                Images in HTML export.
-                                                              (line   6)
-* org-html-link-home:                    HTML Specific export settings.
-                                                              (line  23)
-* org-html-link-org-files-as-html:       Links in HTML export.
-                                                              (line   6)
-* org-html-link-up:                      HTML Specific export settings.
-                                                              (line  26)
-* org-html-mathjax-options:              HTML Specific export settings.
-                                                              (line  30)
-* org-html-postamble:                    HTML preamble and postamble.
-                                                              (line   6)
-* org-html-postamble-format:             HTML preamble and postamble.
-                                                              (line   6)
-* org-html-preamble:                     HTML preamble and postamble.
-                                                              (line   6)
-* org-html-preamble-format:              HTML preamble and postamble.
-                                                              (line   6)
-* org-html-style-default:                CSS support.         (line  43)
-* org-html-table-align-individual-fields: Tables in HTML export.
-                                                              (line  19)
-* org-html-table-caption-above:          Tables in HTML export.
-                                                              (line  23)
-* org-html-table-data-tags:              Tables in HTML export.
-                                                              (line  26)
-* org-html-table-default-attributes:     Tables in HTML export.
-                                                              (line   6)
-* org-html-table-default-attributes <1>: Tables in HTML export.
-                                                              (line  29)
-* org-html-table-header-tags:            Tables in HTML export.
-                                                              (line  32)
-* org-html-table-row-tags:               Tables in HTML export.
-                                                              (line  35)
-* org-html-table-use-header-tags-for-first-column: Tables in HTML export.
-                                                              (line  38)
-* org-html-tag-class-prefix:             CSS support.         (line   6)
-* org-html-todo-kwd-class-prefix:        CSS support.         (line   6)
-* org-html-use-infojs:                   JavaScript support.  (line  51)
-* org-html-validation-link:              HTML preamble and postamble.
-                                                              (line   6)
-* org-icalendar-alarm-time:              iCalendar export.    (line   6)
-* org-icalendar-categories:              iCalendar export.    (line   6)
-* org-icalendar-combined-agenda-file:    iCalendar export.    (line  45)
-* org-icalendar-include-body:            iCalendar export.    (line  49)
-* org-icalendar-include-todo:            iCalendar export.    (line   6)
-* org-icalendar-store-UID:               iCalendar export.    (line  26)
-* org-icalendar-use-deadline:            iCalendar export.    (line   6)
-* org-icalendar-use-scheduled:           iCalendar export.    (line   6)
-* org-id-link-to-org-use-id:             Handling links.      (line  21)
-* org-imenu-depth:                       Cooperation.         (line  27)
-* org-insert-mode-line-in-empty-file:    Activation.          (line  27)
-* org-irc-link-to-logs:                  Handling links.      (line  45)
-* org-keep-stored-link-after-insertion:  Handling links.      (line  65)
-* org-latex-bibtex-compiler:             LaTeX export commands.
-                                                              (line  19)
-* org-latex-classes:                     LaTeX specific export settings.
-                                                              (line  20)
-* org-latex-classes <1>:                 LaTeX specific export settings.
-                                                              (line  36)
-* org-latex-classes <2>:                 LaTeX specific export settings.
-                                                              (line  41)
-* org-latex-classes <3>:                 LaTeX header and sectioning.
-                                                              (line  13)
-* org-latex-compiler:                    LaTeX export commands.
-                                                              (line  19)
-* org-latex-compiler <1>:                LaTeX specific export settings.
-                                                              (line  32)
-* org-latex-default-class:               LaTeX specific export settings.
-                                                              (line  20)
-* org-latex-default-class <1>:           LaTeX header and sectioning.
-                                                              (line  13)
-* org-latex-default-packages-alist:      LaTeX export commands.
-                                                              (line  19)
-* org-latex-default-packages-alist <1>:  LaTeX header and sectioning.
-                                                              (line  13)
-* org-latex-default-table-environment:   Tables in LaTeX export.
-                                                              (line  21)
-* org-latex-default-table-mode:          Tables in LaTeX export.
-                                                              (line  11)
-* org-latex-images-centered:             Images in LaTeX export.
-                                                              (line  46)
-* org-latex-listings:                    Literal examples.    (line  23)
-* org-latex-listings-options:            Source blocks in LaTeX export.
-                                                              (line  21)
-* org-latex-minted-options:              Source blocks in LaTeX export.
-                                                              (line  21)
-* org-latex-packages-alist:              LaTeX header and sectioning.
-                                                              (line  13)
-* org-latex-subtitle-format:             LaTeX specific export settings.
-                                                              (line  55)
-* org-latex-subtitle-separate:           LaTeX specific export settings.
-                                                              (line  55)
-* org-latex-tables-booktabs:             Tables in LaTeX export.
-                                                              (line  58)
-* org-latex-tables-centered:             Tables in LaTeX export.
-                                                              (line  58)
-* org-latex-to-mathml-convert-command:   Working with LaTeX math snippets.
-                                                              (line  21)
-* org-latex-to-mathml-jar-file:          Working with LaTeX math snippets.
-                                                              (line  21)
-* org-link-abbrev-alist:                 Link abbreviations.  (line  12)
-* org-link-abbrev-alist <1>:             In-buffer settings.  (line  35)
-* org-link-frame-setup:                  Handling links.      (line 100)
-* org-link-parameters:                   Handling links.      (line  65)
-* org-list-allow-alphabetical:           Plain lists.         (line  13)
-* org-list-automatic-rules:              Plain lists.         (line  60)
-* org-list-automatic-rules <1>:          Plain lists.         (line  79)
-* org-list-automatic-rules <2>:          Checkboxes.          (line   6)
-* org-list-demote-modify-bullet:         Plain lists.         (line  54)
-* org-list-indent-offset:                Plain lists.         (line  54)
-* org-list-use-circular-motion:          Plain lists.         (line  90)
-* org-log-done:                          Tracking TODO state changes.
-                                                              (line  29)
-* org-log-done <1>:                      Agenda commands.     (line 101)
-* org-log-done <2>:                      In-buffer settings.  (line  94)
-* org-log-into-drawer:                   Tracking TODO state changes.
-                                                              (line   6)
-* org-log-into-drawer <1>:               Agenda commands.     (line 251)
-* org-log-note-clock-out:                Clocking commands.   (line  36)
-* org-log-note-clock-out <1>:            In-buffer settings.  (line  94)
-* org-log-refile:                        Refile and copy.     (line  16)
-* org-log-repeat:                        Repeated tasks.      (line  37)
-* org-log-repeat <1>:                    In-buffer settings.  (line  94)
-* org-log-states-order-reversed:         Tracking TODO state changes.
-                                                              (line   6)
-* org-lowest-priority:                   Priorities.          (line  36)
-* org-lowest-priority <1>:               In-buffer settings.  (line  39)
-* org-M-RET-may-split-line:              Structure editing.   (line   7)
-* org-M-RET-may-split-line <1>:          Plain lists.         (line  79)
-* org-md-headline-style:                 Markdown export.     (line  27)
-* org-odd-levels-only:                   Matching tags and properties.
-                                                              (line  67)
-* org-odd-levels-only <1>:               In-buffer settings.  (line 119)
-* org-odd-levels-only <2>:               Clean view.          (line  75)
-* org-odd-levels-only <3>:               Special agenda views.
-                                                              (line  41)
-* org-odt-category-map-alist:            Labels and captions in ODT export.
-                                                              (line  21)
-* org-odt-convert:                       Extending ODT export.
-                                                              (line  36)
-* org-odt-convert-capabilities:          Configuring a document converter.
-                                                              (line  18)
-* org-odt-convert-process:               Configuring a document converter.
-                                                              (line  25)
-* org-odt-convert-processes:             Configuring a document converter.
-                                                              (line  12)
-* org-odt-create-custom-styles-for-srcblocks: Literal examples in ODT export.
-                                                              (line  16)
-* org-odt-fontify-srcblocks:             Literal examples in ODT export.
-                                                              (line  13)
-* org-odt-pixels-per-inch:               Images in ODT export.
-                                                              (line  34)
-* org-odt-preferred-output-format:       ODT export commands. (line  10)
-* org-odt-preferred-output-format <1>:   ODT export commands. (line  29)
-* org-odt-preferred-output-format <2>:   Extending ODT export.
-                                                              (line  21)
-* org-odt-schema-dir:                    Validating OpenDocument XML.
-                                                              (line  14)
-* org-odt-styles-file:                   ODT specific export settings.
-                                                              (line  22)
-* org-odt-styles-file <1>:               Applying custom styles.
-                                                              (line  25)
-* org-odt-table-styles:                  Customizing tables in ODT export.
-                                                              (line  13)
-* org-odt-table-styles <1>:              Customizing tables in ODT export.
-                                                              (line  82)
-* org-outline-path-complete-in-steps:    Refile and copy.     (line  16)
-* org-overriding-columns-format:         Agenda column view.  (line  18)
-* org-plain-list-ordered-item-terminator: Plain lists.        (line  13)
-* org-plain-list-ordered-item-terminator <1>: Plain lists.    (line 119)
-* org-popup-calendar-for-date-prompt:    The date/time prompt.
-                                                              (line  76)
-* org-preview-latex-default-process:     Previewing LaTeX fragments.
-                                                              (line   6)
-* org-priority-faces:                    Priorities.          (line  13)
-* org-priority-start-cycle-with-default: Priorities.          (line  31)
-* org-property-allowed-value-functions:  Using the property API.
-                                                              (line  67)
-* org-protocol-default-template-key:     capture protocol.    (line  19)
-* org-protocol-project-alist:            open-source protocol.
-                                                              (line  13)
-* org-publish-project-alist:             Project alist.       (line   6)
-* org-publish-project-alist <1>:         Publishing options.  (line  13)
-* org-publish-use-timestamps-flag:       Triggering publication.
-                                                              (line  18)
-* org-put-time-stamp-overlays:           In-buffer settings.  (line 130)
-* org-read-date-display-live:            The date/time prompt.
-                                                              (line  91)
-* org-read-date-force-compatible-dates:  The date/time prompt.
-                                                              (line  61)
-* org-read-date-prefer-future:           The date/time prompt.
-                                                              (line   6)
-* org-refile-allow-creating-parent-nodes: Refile and copy.    (line  16)
-* org-refile-keep:                       Refile and copy.     (line  16)
-* org-refile-targets:                    Refile and copy.     (line  16)
-* org-refile-use-cache:                  Refile and copy.     (line  16)
-* org-refile-use-outline-path:           Refile and copy.     (line  16)
-* org-remove-highlights-with-change:     Sparse trees.        (line  19)
-* org-remove-highlights-with-change <1>: Clocking commands.   (line  73)
-* org-replace-disputed-keys:             Conflicts.           (line  18)
-* org-return-follows-link:               Handling links.      (line 119)
-* org-reverse-note-order:                Refile and copy.     (line  16)
-* org-scheduled-delay-days:              Deadlines and scheduling.
-                                                              (line  44)
-* org-show-context-detail:               Sparse trees.        (line   6)
-* org-sort-agenda-noeffort-is-high:      Filtering/limiting agenda items.
-                                                              (line  92)
-* org-sparse-tree-open-archived-trees:   Internal archiving.  (line  17)
-* org-special-ctrl-a/e:                  Headlines.           (line   6)
-* org-special-ctrl-k:                    Headlines.           (line   6)
-* org-speed-commands-user:               Speed keys.          (line  18)
-* org-startup-align-all-tables:          Column width and alignment.
-                                                              (line  33)
-* org-startup-align-all-tables <1>:      In-buffer settings.  (line  75)
-* org-startup-folded:                    Initial visibility.  (line   6)
-* org-startup-folded <1>:                In-buffer settings.  (line  65)
-* org-startup-folded <2>:                Speeding up your agendas.
-                                                              (line  15)
-* org-startup-indented:                  In-buffer settings.  (line  70)
-* org-startup-with-inline-images:        Handling links.      (line 129)
-* org-startup-with-inline-images <1>:    In-buffer settings.  (line  82)
-* org-startup-with-latex-preview:        Previewing LaTeX fragments.
-                                                              (line  27)
-* org-startup-with-latex-preview <1>:    In-buffer settings.  (line  88)
-* org-store-link-functions:              Adding hyperlink types.
-                                                              (line  59)
-* org-stuck-projects:                    Stuck projects.      (line  16)
-* org-support-shift-select:              Plain lists.         (line  90)
-* org-support-shift-select <1>:          Plain lists.         (line 140)
-* org-support-shift-select <2>:          Conflicts.           (line   6)
-* org-table-auto-blank-field:            Built-in table editor.
-                                                              (line  30)
-* org-table-copy-increment:              Built-in table editor.
-                                                              (line 150)
-* org-table-duration-custom-format:      Durations and time values.
-                                                              (line   6)
-* org-table-export-default-format:       Built-in table editor.
-                                                              (line 183)
-* org-table-formula:                     In-buffer settings.  (line  27)
-* org-table-formula-constants:           References.          (line 108)
-* org-table-formula-constants <1>:       In-buffer settings.  (line  27)
-* org-table-formula-constants <2>:       Cooperation.         (line  11)
-* org-table-use-standard-references:     References.          (line  17)
-* org-table-use-standard-references <1>: Editing and debugging formulas.
-                                                              (line   6)
-* org-tag-alist:                         Setting tags.        (line  22)
-* org-tag-alist <1>:                     In-buffer settings.  (line 164)
-* org-tag-faces:                         Tags.                (line  10)
-* org-tag-persistent-alist:              Setting tags.        (line  37)
-* org-tags-column:                       Setting tags.        (line  11)
-* org-tags-exclude-from-inheritance:     Tag inheritance.     (line  22)
-* org-tags-match-list-sublevels:         Tag inheritance.     (line  26)
-* org-tags-match-list-sublevels <1>:     Tag searches.        (line  18)
-* org-tags-match-list-sublevels <2>:     Property searches.   (line  17)
-* org-tags-match-list-sublevels <3>:     Matching tags and properties.
-                                                              (line  19)
-* org-texinfo-classes:                   Texinfo file header. (line  11)
-* org-texinfo-classes <1>:               Headings and sectioning structure.
-                                                              (line   6)
-* org-texinfo-coding-system:             Texinfo file header. (line  11)
-* org-texinfo-default-class:             Texinfo specific export settings.
-                                                              (line  20)
-* org-texinfo-default-class <1>:         Headings and sectioning structure.
-                                                              (line   6)
-* org-texinfo-info-process:              Texinfo export commands.
-                                                              (line   6)
-* org-texinfo-table-default-markup:      Plain lists in Texinfo export.
-                                                              (line  12)
-* org-time-stamp-custom-formats:         Custom time format.  (line   6)
-* org-time-stamp-overlay-formats:        In-buffer settings.  (line 130)
-* org-time-stamp-rounding-minutes:       Creating timestamps. (line  20)
-* org-todo (face):                       Faces for TODO keywords.
-                                                              (line   6)
-* org-todo-keyword-faces:                Faces for TODO keywords.
-                                                              (line   6)
-* org-todo-keywords:                     TODO basics.         (line  41)
-* org-todo-keywords <1>:                 TODO extensions.     (line   6)
-* org-todo-keywords <2>:                 Global TODO list.    (line  17)
-* org-todo-keywords <3>:                 In-buffer settings.  (line 179)
-* org-todo-repeat-to-state:              Repeated tasks.      (line  19)
-* org-todo-state-tags-triggers:          TODO basics.         (line  60)
-* org-track-ordered-property-with-tag:   TODO dependencies.   (line  38)
-* org-track-ordered-property-with-tag <1>: Checkboxes.        (line  75)
-* org-treat-insert-todo-heading-as-state-change: Structure editing.
-                                                              (line  27)
-* org-treat-S-cursor-todo-selection-as-state-change: TODO basics.
-                                                              (line  35)
-* org-use-fast-todo-selection:           TODO basics.         (line  14)
-* org-use-property-inheritance:          Property inheritance.
-                                                              (line   6)
-* org-use-property-inheritance <1>:      iCalendar export.    (line  49)
-* org-use-property-inheritance <2>:      Header arguments in Org mode properties.
-                                                              (line  17)
-* org-use-property-inheritance <3>:      Using the property API.
-                                                              (line  18)
-* org-use-speed-commands:                Speed keys.          (line  13)
-* org-use-sub-superscripts:              Subscripts and superscripts.
-                                                              (line  14)
-* org-use-tag-inheritance:               Tag inheritance.     (line  22)
-* org-yank-adjusted-subtrees:            Structure editing.   (line  70)
-* org-yank-folded-subtrees:              Structure editing.   (line  70)
-* orgstruct-heading-prefix-regexp:       Orgstruct mode.      (line  26)
-* parse-time-months:                     The date/time prompt.
-                                                              (line  57)
-* parse-time-weekdays:                   The date/time prompt.
-                                                              (line  57)
-* ps-landscape-mode:                     Exporting agenda views.
-                                                              (line  20)
-* ps-number-of-columns:                  Exporting agenda views.
-                                                              (line  20)
-* user-full-name:                        Export settings.     (line  25)
-* user-mail-address:                     Export settings.     (line  35)
-
-
-
-Tag Table:
-Node: Top907
-Node: Introduction24445
-Node: Summary24874
-Node: Installation27573
-Node: Activation30379
-Ref: Activation-Footnote-131939
-Node: Feedback32067
-Ref: Feedback-Footnote-135716
-Node: Conventions35843
-Node: Document structure37954
-Node: Outlines38949
-Node: Headlines39582
-Ref: Headlines-Footnote-140795
-Ref: Headlines-Footnote-240995
-Node: Visibility cycling41066
-Node: Global and local cycling41445
-Ref: Global and local cycling-Footnote-144149
-Ref: Global and local cycling-Footnote-244211
-Node: Initial visibility44462
-Ref: Initial visibility-Footnote-145533
-Node: Catching invisible edits45722
-Node: Motion46194
-Node: Structure editing47561
-Node: Sparse trees54353
-Ref: Sparse trees-Footnote-156927
-Ref: Sparse trees-Footnote-257042
-Node: Plain lists57117
-Ref: Plain lists-Footnote-164685
-Ref: Plain lists-Footnote-265047
-Ref: Plain lists-Footnote-365147
-Ref: Plain lists-Footnote-465414
-Ref: Plain lists-Footnote-565591
-Ref: Plain lists-Footnote-665695
-Ref: Plain lists-Footnote-765801
-Node: Drawers65871
-Ref: Drawers-Footnote-167772
-Node: Blocks67920
-Node: Footnotes68485
-Ref: Footnotes-Footnote-172512
-Ref: Footnotes-Footnote-272617
-Node: Orgstruct mode72702
-Node: Org syntax74359
-Node: Tables75365
-Node: Built-in table editor76010
-Ref: Built-in table editor-Footnote-185627
-Node: Column width and alignment85735
-Ref: Column width and alignment-Footnote-188341
-Node: Column groups88438
-Node: Orgtbl mode90033
-Node: The spreadsheet90848
-Node: References92314
-Ref: References-Footnote-199274
-Ref: References-Footnote-299504
-Ref: References-Footnote-399785
-Ref: References-Footnote-499902
-Node: Formula syntax for Calc100220
-Ref: Formula syntax for Calc-Footnote-1105559
-Node: Formula syntax for Lisp105903
-Node: Durations and time values107683
-Node: Field and range formulas109107
-Node: Column formulas111570
-Node: Lookup functions113696
-Node: Editing and debugging formulas115738
-Ref: Using multiple #+TBLFM lines120078
-Ref: Editing and debugging formulas-Footnote-1121371
-Node: Updating the table121519
-Node: Advanced features122891
-Ref: Advanced features-Footnote-1127503
-Node: Org-Plot127609
-Node: Hyperlinks131998
-Node: Link format132755
-Node: Internal links134054
-Ref: Internal links-Footnote-1136395
-Ref: Internal links-Footnote-2136639
-Node: Radio targets136785
-Node: External links137464
-Ref: External links-Footnote-1141512
-Ref: External links-Footnote-2141948
-Node: Handling links142212
-Ref: Handling links-Footnote-1150222
-Ref: Handling links-Footnote-2150382
-Ref: Handling links-Footnote-3150584
-Ref: Handling links-Footnote-4150881
-Ref: Handling links-Footnote-5151139
-Ref: Handling links-Footnote-6151266
-Ref: Handling links-Footnote-7151342
-Node: Using links outside Org151438
-Node: Link abbreviations151923
-Node: Search options154755
-Ref: Search options-Footnote-1156697
-Node: Custom searches156778
-Node: TODO items157808
-Ref: TODO items-Footnote-1158916
-Node: TODO basics159030
-Node: TODO extensions161918
-Node: Workflow states162952
-Ref: Workflow states-Footnote-1164267
-Node: TODO types164360
-Ref: TODO types-Footnote-1165988
-Node: Multiple sets in one file166061
-Node: Fast access to TODO states168016
-Ref: Fast access to TODO states-Footnote-1168899
-Ref: Fast access to TODO states-Footnote-2168987
-Node: Per-file keywords169284
-Ref: Per-file keywords-Footnote-1170672
-Node: Faces for TODO keywords170881
-Node: TODO dependencies171937
-Node: Progress logging174306
-Node: Closing items175018
-Ref: Closing items-Footnote-1176017
-Ref: Closing items-Footnote-2176090
-Node: Tracking TODO state changes176168
-Ref: Tracking TODO state changes-Footnote-1179276
-Ref: Tracking TODO state changes-Footnote-2179335
-Ref: Tracking TODO state changes-Footnote-3179492
-Node: Tracking your habits179789
-Node: Priorities184114
-Ref: Priorities-Footnote-1186155
-Node: Breaking down tasks186228
-Ref: Breaking down tasks-Footnote-1188243
-Node: Checkboxes188343
-Ref: Checkboxes-Footnote-1193063
-Ref: Checkboxes-Footnote-2193191
-Ref: Checkboxes-Footnote-3193369
-Node: Tags193493
-Node: Tag inheritance194569
-Ref: Tag inheritance-Footnote-1196430
-Ref: Tag inheritance-Footnote-2196534
-Node: Setting tags196660
-Ref: Setting tags-Footnote-1203162
-Node: Tag hierarchy203245
-Node: Tag searches206714
-Node: Properties and columns208032
-Node: Property syntax209488
-Node: Special properties213868
-Node: Property searches215521
-Node: Property inheritance216966
-Node: Column view218833
-Node: Defining columns220077
-Node: Scope of column definitions220455
-Node: Column attributes221368
-Ref: Column attributes-Footnote-1226284
-Ref: Column attributes-Footnote-2226408
-Ref: Column attributes-Footnote-3226613
-Ref: Column attributes-Footnote-4226867
-Node: Using column view227001
-Node: Capturing column view229995
-Ref: Capturing column view-Footnote-1233083
-Node: Property API233220
-Node: Dates and times233574
-Node: Timestamps234481
-Ref: Timestamps-Footnote-1236891
-Ref: Timestamps-Footnote-2237077
-Ref: Timestamps-Footnote-3237208
-Node: Creating timestamps238013
-Node: The date/time prompt240858
-Ref: The date/time prompt-Footnote-1245489
-Ref: The date/time prompt-Footnote-2245660
-Ref: The date/time prompt-Footnote-3245772
-Node: Custom time format245870
-Node: Deadlines and scheduling247621
-Ref: Deadlines and scheduling-Footnote-1251135
-Node: Inserting deadline/schedule251296
-Ref: Inserting deadline/schedule-Footnote-1253135
-Ref: Inserting deadline/schedule-Footnote-2253259
-Node: Repeated tasks253383
-Ref: Repeated tasks-Footnote-1257858
-Ref: Repeated tasks-Footnote-2258115
-Node: Clocking work time258338
-Ref: Clocking work time-Footnote-1259526
-Ref: Clocking work time-Footnote-2259678
-Node: Clocking commands259820
-Ref: Clocking commands-Footnote-1264844
-Ref: Clocking commands-Footnote-2264959
-Ref: Clocking commands-Footnote-3265013
-Ref: Clocking commands-Footnote-4265075
-Node: The clock table265157
-Ref: The clock table-Footnote-1272762
-Ref: The clock table-Footnote-2272860
-Node: Resolving idle time272986
-Ref: Resolving idle time-Footnote-1276917
-Node: Effort estimates277401
-Ref: Effort estimates-Footnote-1280193
-Node: Timers280300
-Node: Capture - Refile - Archive282611
-Node: Capture283601
-Node: Setting up capture284702
-Ref: Setting up capture-Footnote-1285110
-Node: Using capture285180
-Node: Capture templates287646
-Node: Template elements289645
-Ref: Template elements-Footnote-1296417
-Ref: Template elements-Footnote-2296750
-Node: Template expansion296937
-Ref: Template expansion-Footnote-1301053
-Ref: Template expansion-Footnote-2301144
-Ref: Template expansion-Footnote-3301355
-Ref: Template expansion-Footnote-4301541
-Node: Templates in contexts301643
-Node: Attachments302479
-Ref: Attachments-Footnote-1306012
-Node: RSS feeds306166
-Node: Protocols307679
-Node: store-link protocol309144
-Node: capture protocol309976
-Node: open-source protocol311118
-Node: Refile and copy314265
-Ref: Refile and copy-Footnote-1316733
-Node: Archiving316845
-Node: Moving subtrees317551
-Node: Internal archiving319598
-Node: Agenda views322289
-Node: Agenda files324646
-Ref: Agenda files-Footnote-1327499
-Ref: Agenda files-Footnote-2327648
-Node: Agenda dispatcher327849
-Ref: Agenda dispatcher-Footnote-1330753
-Ref: Agenda dispatcher-Footnote-2330851
-Node: Built-in agenda views330957
-Node: Weekly/daily agenda331541
-Ref: Weekly/daily agenda-Footnote-1337381
-Ref: Weekly/daily agenda-Footnote-2337612
-Node: Global TODO list337799
-Node: Matching tags and properties340375
-Node: Search view347717
-Node: Stuck projects349076
-Ref: Stuck projects-Footnote-1351157
-Node: Presentation and sorting351187
-Node: Categories352152
-Node: Time-of-day specifications352895
-Ref: Time-of-day specifications-Footnote-1354930
-Node: Sorting agenda items355053
-Node: Filtering/limiting agenda items356646
-Ref: Filtering/limiting agenda items-Footnote-1363938
-Node: Agenda commands364358
-Ref: Agenda commands-Footnote-1385792
-Ref: Agenda commands-Footnote-2385873
-Ref: Agenda commands-Footnote-3385996
-Ref: Agenda commands-Footnote-4386100
-Node: Custom agenda views386187
-Node: Storing searches386828
-Ref: Storing searches-Footnote-1389863
-Ref: Storing searches-Footnote-2389980
-Node: Block agenda390232
-Node: Setting options391514
-Node: Exporting agenda views395160
-Ref: Exporting agenda views-Footnote-1400131
-Ref: Exporting agenda views-Footnote-2400254
-Ref: Exporting agenda views-Footnote-3400414
-Ref: Exporting agenda views-Footnote-4400601
-Node: Agenda column view400683
-Node: Markup403803
-Node: Paragraphs404790
-Node: Emphasis and monospace405959
-Node: Horizontal rules406830
-Node: Images and tables407081
-Node: Literal examples408808
-Ref: Literal examples-Footnote-1413417
-Ref: Literal examples-Footnote-2413941
-Ref: Literal examples-Footnote-3414114
-Ref: Literal examples-Footnote-4414301
-Ref: Literal examples-Footnote-5414571
-Node: Special symbols414669
-Ref: Special symbols-Footnote-1416677
-Ref: Special symbols-Footnote-2416844
-Node: Subscripts and superscripts416937
-Node: Embedded LaTeX418073
-Ref: Embedded LaTeX-Footnote-1418886
-Node: LaTeX fragments419082
-Ref: LaTeX fragments-Footnote-1421195
-Node: Previewing LaTeX fragments421430
-Ref: Previewing LaTeX fragments-Footnote-1422892
-Node: CDLaTeX mode423146
-Ref: CDLaTeX mode-Footnote-1425717
-Node: Exporting425869
-Node: The export dispatcher428541
-Node: Export settings431176
-Ref: Export settings-Footnote-1439281
-Ref: Export settings-Footnote-2439393
-Node: Table of contents439499
-Node: Include files441391
-Ref: Include files-Footnote-1444252
-Node: Macro replacement444430
-Ref: Macro replacement-Footnote-1447321
-Node: Comment lines447538
-Ref: Comment lines-Footnote-1448368
-Node: ASCII/Latin-1/UTF-8 export448468
-Node: Beamer export451487
-Node: Beamer export commands452257
-Node: Beamer specific export settings452944
-Node: Sectioning Frames and Blocks in Beamer454863
-Ref: Sectioning Frames and Blocks in Beamer-Footnote-1458174
-Node: Beamer specific syntax458335
-Node: Editing support460316
-Node: A Beamer example460804
-Node: HTML export462071
-Node: HTML Export commands463078
-Node: HTML Specific export settings463609
-Node: HTML doctypes465694
-Node: HTML preamble and postamble467853
-Node: Quoting HTML tags469043
-Node: Links in HTML export469727
-Node: Tables in HTML export471192
-Node: Images in HTML export472639
-Node: Math formatting in HTML export474124
-Ref: Math formatting in HTML export-Footnote-1475538
-Node: Text areas in HTML export475662
-Node: CSS support476815
-Ref: CSS support-Footnote-1480287
-Node: JavaScript support480467
-Node: LaTeX export483790
-Node: LaTeX export commands485526
-Ref: LaTeX export commands-Footnote-1486847
-Node: LaTeX specific export settings487055
-Node: LaTeX header and sectioning489940
-Node: Quoting LaTeX code492081
-Node: Tables in LaTeX export492862
-Node: Images in LaTeX export497402
-Ref: Images in LaTeX export-Footnote-1499932
-Node: Plain lists in LaTeX export499979
-Node: Source blocks in LaTeX export500996
-Node: Example blocks in LaTeX export502430
-Node: Special blocks in LaTeX export503138
-Node: Horizontal rules in LaTeX export504388
-Node: Markdown export504783
-Node: OpenDocument Text export506128
-Ref: OpenDocument Text export-Footnote-1507229
-Node: Pre-requisites for ODT export507373
-Node: ODT export commands507759
-Ref: x-export-to-odt507963
-Node: ODT specific export settings509127
-Node: Extending ODT export510164
-Ref: x-export-to-other-formats511049
-Ref: x-convert-to-other-formats511474
-Node: Applying custom styles511949
-Node: Links in ODT export513742
-Node: Tables in ODT export514399
-Node: Images in ODT export516389
-Node: Math formatting in ODT export519259
-Node: Working with LaTeX math snippets519720
-Ref: Working with LaTeX math snippets-Footnote-1521998
-Ref: Working with LaTeX math snippets-Footnote-2522074
-Node: Working with MathML or OpenDocument formula files522119
-Node: Labels and captions in ODT export522654
-Node: Literal examples in ODT export523926
-Node: Advanced topics in ODT export524764
-Node: Configuring a document converter525418
-Ref: x-odt-converter-capabilities526102
-Node: Working with OpenDocument style files526509
-Ref: x-factory-styles526914
-Ref: x-orgodtstyles-xml527156
-Ref: x-orgodtcontenttemplate-xml527502
-Ref: x-overriding-factory-styles528186
-Ref: x-org-odt-styles-file528457
-Ref: x-org-odt-content-template-file529423
-Node: Creating one-off styles529574
-Node: Customizing tables in ODT export531752
-Ref: Customizing tables in ODT export-Footnote-1536764
-Ref: Customizing tables in ODT export-Footnote-2536868
-Ref: Customizing tables in ODT export-Footnote-3536960
-Node: Validating OpenDocument XML537307
-Node: Org export538231
-Node: Texinfo export538987
-Node: Texinfo export commands540007
-Node: Texinfo specific export settings540622
-Node: Texinfo file header541753
-Node: Texinfo title and copyright page542717
-Node: Info directory file544079
-Node: Headings and sectioning structure544796
-Node: Indices546818
-Node: Quoting Texinfo code547854
-Node: Plain lists in Texinfo export548343
-Node: Tables in Texinfo export549698
-Node: Images in Texinfo export550189
-Node: Special blocks in Texinfo export550826
-Node: A Texinfo example551420
-Node: iCalendar export553527
-Node: Other built-in back-ends557247
-Node: Advanced configuration557863
-Node: Export in foreign buffers564677
-Node: Publishing565745
-Node: Configuration566615
-Node: Project alist567378
-Node: Sources and destinations568535
-Node: Selecting files570105
-Node: Publishing action571207
-Ref: Publishing action-Footnote-1573096
-Node: Publishing options573263
-Node: Publishing links587797
-Node: Sitemap589185
-Node: Generating an index593321
-Node: Uploading files594131
-Node: Sample configuration595939
-Node: Simple example596428
-Node: Complex example597139
-Node: Triggering publication599197
-Node: Working with source code600204
-Node: Structure of code blocks604754
-Node: Editing source code607293
-Node: Exporting code blocks610146
-Node: Extracting source code612478
-Node: Evaluating code blocks614985
-Ref: Evaluating code blocks-Footnote-1618221
-Ref: Evaluating code blocks-Footnote-2618355
-Node: Library of Babel618546
-Node: Languages619239
-Node: Header arguments621688
-Node: Using header arguments622045
-Node: System-wide header arguments622852
-Node: Language-specific header arguments623563
-Node: Header arguments in Org mode properties624093
-Node: Language-specific mode properties625594
-Node: Code block specific header arguments626426
-Node: Arguments in function calls628129
-Node: Specific header arguments628913
-Node: var631607
-Node: results638359
-Node: file642486
-Node: file-desc643187
-Node: file-ext643601
-Node: output-dir644036
-Node: dir644454
-Node: exports646677
-Node: tangle647602
-Node: mkdirp648496
-Node: comments648826
-Node: padline649845
-Node: no-expand650263
-Node: session650997
-Node: noweb652119
-Node: noweb-ref654802
-Node: noweb-sep655922
-Node: cache656234
-Node: sep658913
-Node: hlines659324
-Node: colnames660846
-Node: rownames662296
-Node: shebang663523
-Node: tangle-mode664019
-Node: eval664845
-Node: wrap665882
-Node: post666209
-Node: prologue667992
-Node: epilogue668512
-Node: Results of evaluation668778
-Node: Noweb reference syntax672627
-Node: Key bindings and useful functions674958
-Node: Batch execution677293
-Node: Miscellaneous678071
-Node: Completion678918
-Node: Easy templates681031
-Node: Speed keys682409
-Node: Code evaluation security683599
-Node: Customization686448
-Node: In-buffer settings686884
-Node: The very busy C-c C-c key696540
-Node: Clean view698543
-Ref: Clean view-Footnote-1702032
-Ref: Clean view-Footnote-2702271
-Ref: Clean view-Footnote-3702330
-Node: TTY keys702410
-Node: Interaction704107
-Node: Cooperation704506
-Node: Conflicts707300
-Node: org-crypt711927
-Node: Hacking713187
-Node: Hooks714175
-Node: Add-on packages714494
-Node: Adding hyperlink types715028
-Node: Adding export back-ends718487
-Node: Context-sensitive commands719739
-Node: Tables in arbitrary syntax720432
-Node: Radio tables722107
-Node: A LaTeX example724235
-Ref: A LaTeX example-Footnote-1728049
-Ref: A LaTeX example-Footnote-2728219
-Node: Translator functions728670
-Node: Radio lists730858
-Node: Dynamic blocks732052
-Node: Special agenda views734143
-Ref: x-agenda-skip-entry-regexp737048
-Ref: Special agenda views-Footnote-1737828
-Ref: Special agenda views-Footnote-2738035
-Node: Speeding up your agendas738167
-Node: Extracting agenda information739212
-Node: Using the property API743070
-Node: Using the mapping API746512
-Node: MobileOrg750565
-Node: Setting up the staging area752139
-Ref: Setting up the staging area-Footnote-1753353
-Ref: Setting up the staging area-Footnote-2753526
-Node: Pushing to MobileOrg753734
-Ref: Pushing to MobileOrg-Footnote-1754641
-Ref: Pushing to MobileOrg-Footnote-2754731
-Ref: Pushing to MobileOrg-Footnote-3755097
-Node: Pulling from MobileOrg755173
-Ref: Pulling from MobileOrg-Footnote-1757230
-Node: History and acknowledgments757294
-Node: GNU Free Documentation License772747
-Node: Main Index798127
-Node: Key Index896893
-Node: Command and Function Index950348
-Node: Variable Index987240
-
-End Tag Table
-
-
-Local Variables:
-coding: utf-8
-End:
diff --git a/elpa/org-9.1.14/org-agenda.el b/elpa/org-9.1.14/org-agenda.el
deleted file mode 100644
index 322480c..0000000
--- a/elpa/org-9.1.14/org-agenda.el
+++ /dev/null
@@ -1,10224 +0,0 @@
-;;; org-agenda.el --- Dynamic task and appointment lists for Org
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the code for creating and using the Agenda for Org.
-;;
-;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
-;; `org-batch-store-agenda-views' are implemented as macros to provide
-;; a convenient way for extracting agenda information from the command
-;; line.  The Lisp does not evaluate parameters of a macro call; thus
-;; it is not necessary to quote the parameters passed to one of those
-;; functions.  E.g. you can write:
-;;
-;;   emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
-;;
-;; To export an agenda spanning 7 days.  If `org-batch-agenda' would
-;; have been implemented as a regular function you'd have to quote the
-;; symbol org-agenda-span.  Moreover: To use a symbol as parameter
-;; value you would have to double quote the symbol.
-;;
-;; This is a hack, but it works even when running Org byte-compiled.
-;;
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org)
-(require 'org-macs)
-
-(declare-function diary-add-to-list "diary-lib"
-                  (date string specifier &optional marker globcolor literal))
-(declare-function calendar-iso-to-absolute      "cal-iso"    (date))
-(declare-function calendar-astro-date-string    "cal-julian" (&optional date))
-(declare-function calendar-bahai-date-string    "cal-bahai"  (&optional date))
-(declare-function calendar-chinese-date-string  "cal-china"  (&optional date))
-(declare-function calendar-coptic-date-string   "cal-coptic" (&optional date))
-(declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
-(declare-function calendar-french-date-string   "cal-french" (&optional date))
-(declare-function calendar-goto-date            "cal-move"   (date))
-(declare-function calendar-hebrew-date-string   "cal-hebrew" (&optional date))
-(declare-function calendar-islamic-date-string  "cal-islam"  (&optional date))
-(declare-function calendar-iso-date-string      "cal-iso"    (&optional date))
-(declare-function calendar-iso-from-absolute    "cal-iso"    (date))
-(declare-function calendar-julian-date-string   "cal-julian" (&optional date))
-(declare-function calendar-mayan-date-string    "cal-mayan"  (&optional date))
-(declare-function calendar-persian-date-string  "cal-persia" (&optional date))
-(declare-function calendar-check-holidays       "holidays" (date))
-
-(declare-function org-columns-remove-overlays "org-colview" ())
-(declare-function org-datetree-find-date-create "org-datetree"
-		  (date &optional keep-restriction))
-(declare-function org-columns-quit              "org-colview" ())
-(declare-function diary-date-display-form       "diary-lib"  (&optional type))
-(declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
-(declare-function org-habit-insert-consistency-graphs
-		  "org-habit" (&optional line))
-(declare-function org-is-habit-p "org-habit" (&optional pom))
-(declare-function org-habit-parse-todo "org-habit" (&optional pom))
-(declare-function org-habit-get-priority "org-habit" (habit &optional moment))
-(declare-function org-agenda-columns "org-colview" ())
-(declare-function org-add-archive-files "org-archive" (files))
-(declare-function org-capture "org-capture" (&optional goto keys))
-
-(defvar calendar-mode-map)
-(defvar org-clock-current-task)
-(defvar org-current-tag-alist)
-(defvar org-mobile-force-id-on-agenda-items)
-(defvar org-habit-show-habits)
-(defvar org-habit-show-habits-only-for-today)
-(defvar org-habit-show-all-today)
-
-;; Defined somewhere in this file, but used before definition.
-(defvar org-agenda-buffer-name "*Org Agenda*")
-(defvar org-agenda-overriding-header nil)
-(defvar org-agenda-title-append nil)
-(with-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
-(with-no-warnings (defvar date))  ;; unprefixed, from calendar.el
-(defvar original-date) ; dynamically scoped, calendar.el does scope this
-
-(defvar org-agenda-undo-list nil
-  "List of undoable operations in the agenda since last refresh.")
-(defvar org-agenda-pending-undo-list nil
-  "In a series of undo commands, this is the list of remaining undo items.")
-
-(defcustom org-agenda-confirm-kill 1
-  "When set, remote killing from the agenda buffer needs confirmation.
-When t, a confirmation is always needed.  When a number N, confirmation is
-only needed when the text to be killed contains more than N non-white lines."
-  :group 'org-agenda
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "Always" t)
-	  (integer :tag "When more than N lines")))
-
-(defcustom org-agenda-compact-blocks nil
-  "Non-nil means make the block agenda more compact.
-This is done globally by leaving out lines like the agenda span
-name and week number or the separator lines."
-  :group 'org-agenda
-  :type 'boolean)
-
-(defcustom org-agenda-block-separator ?=
-  "The separator between blocks in the agenda.
-If this is a string, it will be used as the separator, with a newline added.
-If it is a character, it will be repeated to fill the window width.
-If nil the separator is disabled.  In `org-agenda-custom-commands' this
-addresses the separator between the current and the previous block."
-  :group 'org-agenda
-  :type '(choice
-	  (const :tag "Disabled" nil)
-	  (character)
-	  (string)))
-
-(defgroup org-agenda-export nil
-  "Options concerning exporting agenda views in Org mode."
-  :tag "Org Agenda Export"
-  :group 'org-agenda)
-
-(defcustom org-agenda-with-colors t
-  "Non-nil means use colors in agenda views."
-  :group 'org-agenda-export
-  :type 'boolean)
-
-(defcustom org-agenda-exporter-settings nil
-  "Alist of variable/value pairs that should be active during agenda export.
-This is a good place to set options for ps-print and for htmlize.
-Note that the way this is implemented, the values will be evaluated
-before assigned to the variables.  So make sure to quote values you do
-*not* want evaluated, for example
-
-   (setq org-agenda-exporter-settings
-         \\='((ps-print-color-p \\='black-white)))"
-  :group 'org-agenda-export
-  :type '(repeat
-	  (list
-	   (variable)
-	   (sexp :tag "Value"))))
-
-(defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
-  "Hook run in a temporary buffer before writing the agenda to an export file.
-A useful function for this hook is `org-agenda-add-entry-text'."
-  :group 'org-agenda-export
-  :type 'hook
-  :options '(org-agenda-add-entry-text))
-
-(defcustom org-agenda-add-entry-text-maxlines 0
-  "Maximum number of entry text lines to be added to agenda.
-This is only relevant when `org-agenda-add-entry-text' is part of
-`org-agenda-before-write-hook', which is the default.
-When this is 0, nothing will happen.  When it is greater than 0, it
-specifies the maximum number of lines that will be added for each entry
-that is listed in the agenda view.
-
-Note that this variable is not used during display, only when exporting
-the agenda.  For agenda display, see the variables `org-agenda-entry-text-mode'
-and `org-agenda-entry-text-maxlines'."
-  :group 'org-agenda
-  :type 'integer)
-
-(defcustom org-agenda-add-entry-text-descriptive-links t
-  "Non-nil means export org-links as descriptive links in agenda added text.
-This variable applies to the text added to the agenda when
-`org-agenda-add-entry-text-maxlines' is larger than 0.
-When this variable nil, the URL will (also) be shown."
-  :group 'org-agenda
-  :type 'boolean)
-
-(defcustom org-agenda-export-html-style nil
-  "The style specification for exported HTML Agenda files.
-If this variable contains a string, it will replace the default <style>
-section as produced by `htmlize'.
-Since there are different ways of setting style information, this variable
-needs to contain the full HTML structure to provide a style, including the
-surrounding HTML tags.  The style specifications should include definitions
-the fonts used by the agenda, here is an example:
-
-   <style type=\"text/css\">
-       p { font-weight: normal; color: gray; }
-       .org-agenda-structure {
-          font-size: 110%;
-          color: #003399;
-          font-weight: 600;
-       }
-       .org-todo {
-          color: #cc6666;
-          font-weight: bold;
-       }
-       .org-agenda-done {
-          color: #339933;
-       }
-       .org-done {
-          color: #339933;
-       }
-       .title { text-align: center; }
-       .todo, .deadline { color: red; }
-       .done { color: green; }
-    </style>
-
-or, if you want to keep the style in a file,
-
-   <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
-
-As the value of this option simply gets inserted into the HTML <head> header,
-you can \"misuse\" it to also add other text to the header."
-  :group 'org-agenda-export
-  :group 'org-export-html
-  :type '(choice
-	  (const nil)
-	  (string)))
-
-(defcustom org-agenda-persistent-filter nil
-  "When set, keep filters from one agenda view to the next."
-  :group 'org-agenda
-  :type 'boolean)
-
-(defgroup org-agenda-custom-commands nil
-  "Options concerning agenda views in Org mode."
-  :tag "Org Agenda Custom Commands"
-  :group 'org-agenda)
-
-(defconst org-sorting-choice
-  '(choice
-    (const time-up) (const time-down)
-    (const timestamp-up) (const timestamp-down)
-    (const scheduled-up) (const scheduled-down)
-    (const deadline-up)  (const deadline-down)
-    (const ts-up) (const ts-down)
-    (const tsia-up) (const tsia-down)
-    (const category-keep) (const category-up) (const category-down)
-    (const tag-down) (const tag-up)
-    (const priority-up) (const priority-down)
-    (const todo-state-up) (const todo-state-down)
-    (const effort-up) (const effort-down)
-    (const habit-up) (const habit-down)
-    (const alpha-up) (const alpha-down)
-    (const user-defined-up) (const user-defined-down))
-  "Sorting choices.")
-
-;; Keep custom values for `org-agenda-filter-preset' compatible with
-;; the new variable `org-agenda-tag-filter-preset'.
-(defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
-(defvaralias 'org-agenda-filter 'org-agenda-tag-filter)
-
-(defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
-  "List of types searched for when creating the daily/weekly agenda.
-This variable is a list of symbols that controls the types of
-items that appear in the daily/weekly agenda.  Allowed symbols in this
-list are are
-
-  :timestamp   List items containing a date stamp or date range matching
-               the selected date.  This includes sexp entries in angular
-               brackets.
-
-  :sexp        List entries resulting from plain diary-like sexps.
-
-  :deadline    List deadline due on that date.  When the date is today,
-               also list any deadlines past due, or due within
-	       `org-deadline-warning-days'.
-
-  :deadline*   Same as above, but only include the deadline if it has an
-               hour specification as [h]h:mm.
-
-  :scheduled   List all items which are scheduled for the given date.
-	       The diary for *today* also contains items which were
-	       scheduled earlier and are not yet marked DONE.
-
-  :scheduled*  Same as above, but only include the scheduled item if it
-               has an hour specification as [h]h:mm.
-
-By default, all four non-starred types are turned on.
-
-When :scheduled* or :deadline* are included, :schedule or :deadline
-will be ignored.
-
-Never set this variable globally using `setq', because then it
-will apply to all future agenda commands.  Instead, bind it with
-`let' to scope it dynamically into the agenda-constructing
-command.  A good way to set it is through options in
-`org-agenda-custom-commands'.  For a more flexible (though
-somewhat less efficient) way of determining what is included in
-the daily/weekly agenda, see `org-agenda-skip-function'.")
-
-(defconst org-agenda-custom-commands-local-options
-  `(repeat :tag "Local settings for this command.  Remember to quote values"
-	   (choice :tag "Setting"
-		   (list :tag "Heading for this block"
-			 (const org-agenda-overriding-header)
-			 (string :tag "Headline"))
-		   (list :tag "Files to be searched"
-			 (const org-agenda-files)
-			 (list
-			  (const :format "" quote)
-			  (repeat (file))))
-		   (list :tag "Sorting strategy"
-			 (const org-agenda-sorting-strategy)
-			 (list
-			  (const :format "" quote)
-			  (repeat
-			   ,org-sorting-choice)))
-		   (list :tag "Prefix format"
-			 (const org-agenda-prefix-format :value "  %-12:c%?-12t% s")
-			 (string))
-		   (list :tag "Number of days in agenda"
-			 (const org-agenda-span)
-			 (list
-			  (const :format "" quote)
-			  (choice (const :tag "Day" day)
-				  (const :tag "Week" week)
-				  (const :tag "Fortnight" fortnight)
-				  (const :tag "Month" month)
-				  (const :tag "Year" year)
-				  (integer :tag "Custom"))))
-		   (list :tag "Fixed starting date"
-			 (const org-agenda-start-day)
-			 (string :value "2007-11-01"))
-		   (list :tag "Start on day of week"
-			 (const org-agenda-start-on-weekday)
-			 (choice :value 1
-				 (const :tag "Today" nil)
-				 (integer :tag "Weekday No.")))
-		   (list :tag "Include data from diary"
-			 (const org-agenda-include-diary)
-			 (boolean))
-		   (list :tag "Deadline Warning days"
-			 (const org-deadline-warning-days)
-			 (integer :value 1))
-		   (list :tag "Category filter preset"
-			 (const org-agenda-category-filter-preset)
-			 (list
-			  (const :format "" quote)
-			  (repeat
-			   (string :tag "+category or -category"))))
-		   (list :tag "Tags filter preset"
-			 (const org-agenda-tag-filter-preset)
-			 (list
-			  (const :format "" quote)
-			  (repeat
-			   (string :tag "+tag or -tag"))))
-		   (list :tag "Effort filter preset"
-			 (const org-agenda-effort-filter-preset)
-			 (list
-			  (const :format "" quote)
-			  (repeat
-			   (string :tag "+=10 or -=10 or +<10 or ->10"))))
-		   (list :tag "Regexp filter preset"
-			 (const org-agenda-regexp-filter-preset)
-			 (list
-			  (const :format "" quote)
-			  (repeat
-			   (string :tag "+regexp or -regexp"))))
-		   (list :tag "Set daily/weekly entry types"
-			 (const org-agenda-entry-types)
-			 (list
-			  (const :format "" quote)
-			  (set :greedy t :value ,org-agenda-entry-types
-			       (const :deadline)
-			       (const :scheduled)
-			       (const :deadline*)
-			       (const :scheduled*)
-			       (const :timestamp)
-			       (const :sexp))))
-		   (list :tag "Standard skipping condition"
-			 :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
-			 (const org-agenda-skip-function)
-			 (list
-			  (const :format "" quote)
-			  (list
-			   (choice
-			    :tag "Skipping range"
-			    (const :tag "Skip entry" org-agenda-skip-entry-if)
-			    (const :tag "Skip subtree" org-agenda-skip-subtree-if))
-			   (repeat :inline t :tag "Conditions for skipping"
-				   (choice
-				    :tag "Condition type"
-				    (list :tag "Regexp matches" :inline t
-					  (const :format "" regexp)
-					  (regexp))
-				    (list :tag "Regexp does not match" :inline t
-					  (const :format "" notregexp)
-					  (regexp))
-				    (list :tag "TODO state is" :inline t
-					  (const todo)
-					  (choice
-					   (const :tag "Any not-done state" todo)
-					   (const :tag "Any done state" done)
-					   (const :tag "Any state" any)
-					   (list :tag "Keyword list"
-						 (const :format "" quote)
-						 (repeat (string :tag "Keyword")))))
-				    (list :tag "TODO state is not" :inline t
-					  (const nottodo)
-					  (choice
-					   (const :tag "Any not-done state" todo)
-					   (const :tag "Any done state" done)
-					   (const :tag "Any state" any)
-					   (list :tag "Keyword list"
-						 (const :format "" quote)
-						 (repeat (string :tag "Keyword")))))
-				    (const :tag "scheduled" scheduled)
-				    (const :tag "not scheduled" notscheduled)
-				    (const :tag "deadline" deadline)
-				    (const :tag "no deadline" notdeadline)
-				    (const :tag "timestamp" timestamp)
-				    (const :tag "no timestamp" nottimestamp))))))
-		   (list :tag "Non-standard skipping condition"
-			 :value (org-agenda-skip-function)
-			 (const org-agenda-skip-function)
-			 (sexp :tag "Function or form (quoted!)"))
-		   (list :tag "Any variable"
-			 (variable :tag "Variable")
-			 (sexp :tag "Value (sexp)"))))
-  "Selection of examples for agenda command settings.
-This will be spliced into the custom type of
-`org-agenda-custom-commands'.")
-
-
-(defcustom org-agenda-custom-commands
-  '(("n" "Agenda and all TODOs" ((agenda "") (alltodo ""))))
-  "Custom commands for the agenda.
-\\<org-mode-map>
-These commands will be offered on the splash screen displayed by the
-agenda dispatcher `\\[org-agenda]'.  Each entry is a list like this:
-
-   (key desc type match settings files)
-
-key      The key (one or more characters as a string) to be associated
-         with the command.
-desc     A description of the command, when omitted or nil, a default
-         description is built using MATCH.
-type     The command type, any of the following symbols:
-          agenda      The daily/weekly agenda.
-          todo        Entries with a specific TODO keyword, in all agenda files.
-          search      Entries containing search words entry or headline.
-          tags        Tags/Property/TODO match in all agenda files.
-          tags-todo   Tags/P/T match in all agenda files, TODO entries only.
-          todo-tree   Sparse tree of specific TODO keyword in *current* file.
-          tags-tree   Sparse tree with all tags matches in *current* file.
-          occur-tree  Occur sparse tree for *current* file.
-          ...         A user-defined function.
-match    What to search for:
-          - a single keyword for TODO keyword searches
-          - a tags match expression for tags searches
-          - a word search expression for text searches.
-          - a regular expression for occur searches
-          For all other commands, this should be the empty string.
-settings  A list of option settings, similar to that in a let form, so like
-          this: ((opt1 val1) (opt2 val2) ...).   The values will be
-          evaluated at the moment of execution, so quote them when needed.
-files     A list of files to write the produced agenda buffer to with
-          the command `org-store-agenda-views'.
-          If a file name ends in \".html\", an HTML version of the buffer
-          is written out.  If it ends in \".ps\", a postscript version is
-          produced.  Otherwise, only the plain text is written to the file.
-
-You can also define a set of commands, to create a composite agenda buffer.
-In this case, an entry looks like this:
-
-  (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
-
-where
-
-desc   A description string to be displayed in the dispatcher menu.
-cmd    An agenda command, similar to the above.  However, tree commands
-       are not allowed, but instead you can get agenda and global todo list.
-       So valid commands for a set are:
-       (agenda \"\" settings)
-       (alltodo \"\" settings)
-       (stuck \"\" settings)
-       (todo \"match\" settings files)
-       (search \"match\" settings files)
-       (tags \"match\" settings files)
-       (tags-todo \"match\" settings files)
-
-Each command can carry a list of options, and another set of options can be
-given for the whole set of commands.  Individual command options take
-precedence over the general options.
-
-When using several characters as key to a command, the first characters
-are prefix commands.  For the dispatcher to display useful information, you
-should provide a description for the prefix, like
-
- (setq org-agenda-custom-commands
-   \\='((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
-     (\"hl\" tags \"+HOME+Lisa\")
-     (\"hp\" tags \"+HOME+Peter\")
-     (\"hk\" tags \"+HOME+Kim\")))"
-  :group 'org-agenda-custom-commands
-  :type `(repeat
-	  (choice :value ("x" "Describe command here" tags "" nil)
-		  (list :tag "Single command"
-			(string :tag "Access Key(s) ")
-			(option (string :tag "Description"))
-			(choice
-			 (const :tag "Agenda" agenda)
-			 (const :tag "TODO list" alltodo)
-			 (const :tag "Search words" search)
-			 (const :tag "Stuck projects" stuck)
-			 (const :tag "Tags/Property match (all agenda files)" tags)
-			 (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
-			 (const :tag "TODO keyword search (all agenda files)" todo)
-			 (const :tag "Tags sparse tree (current buffer)" tags-tree)
-			 (const :tag "TODO keyword tree (current buffer)" todo-tree)
-			 (const :tag "Occur tree (current buffer)" occur-tree)
-			 (sexp :tag "Other, user-defined function"))
-			(string :tag "Match (only for some commands)")
-			,org-agenda-custom-commands-local-options
-			(option (repeat :tag "Export" (file :tag "Export to"))))
-		  (list :tag "Command series, all agenda files"
-			(string :tag "Access Key(s)")
-			(string :tag "Description  ")
-			(repeat :tag "Component"
-				(choice
-				 (list :tag "Agenda"
-				       (const :format "" agenda)
-				       (const :tag "" :format "" "")
-				       ,org-agenda-custom-commands-local-options)
-				 (list :tag "TODO list (all keywords)"
-				       (const :format "" alltodo)
-				       (const :tag "" :format "" "")
-				       ,org-agenda-custom-commands-local-options)
-				 (list :tag "Search words"
-				       (const :format "" search)
-				       (string :tag "Match")
-				       ,org-agenda-custom-commands-local-options)
-				 (list :tag "Stuck projects"
-				       (const :format "" stuck)
-				       (const :tag "" :format "" "")
-				       ,org-agenda-custom-commands-local-options)
-				 (list :tag "Tags search"
-				       (const :format "" tags)
-				       (string :tag "Match")
-				       ,org-agenda-custom-commands-local-options)
-				 (list :tag "Tags search, TODO entries only"
-				       (const :format "" tags-todo)
-				       (string :tag "Match")
-				       ,org-agenda-custom-commands-local-options)
-				 (list :tag "TODO keyword search"
-				       (const :format "" todo)
-				       (string :tag "Match")
-				       ,org-agenda-custom-commands-local-options)
-				 (list :tag "Other, user-defined function"
-				       (symbol :tag "function")
-				       (string :tag "Match")
-				       ,org-agenda-custom-commands-local-options)))
-
-			(repeat :tag "Settings for entire command set"
-				(list (variable :tag "Any variable")
-				      (sexp :tag "Value")))
-			(option (repeat :tag "Export" (file :tag "Export to"))))
-		  (cons :tag "Prefix key documentation"
-			(string :tag "Access Key(s)")
-			(string :tag "Description  ")))))
-
-(defcustom org-agenda-query-register ?o
-  "The register holding the current query string.
-The purpose of this is that if you construct a query string interactively,
-you can then use it to define a custom command."
-  :group 'org-agenda-custom-commands
-  :type 'character)
-
-(defcustom org-stuck-projects
-  '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
-  "How to identify stuck projects.
-This is a list of four items:
-1. A tags/todo/property matcher string that is used to identify a project.
-   See the manual for a description of tag and property searches.
-   The entire tree below a headline matched by this is considered one project.
-2. A list of TODO keywords identifying non-stuck projects.
-   If the project subtree contains any headline with one of these todo
-   keywords, the project is considered to be not stuck.  If you specify
-   \"*\" as a keyword, any TODO keyword will mark the project unstuck.
-3. A list of tags identifying non-stuck projects.
-   If the project subtree contains any headline with one of these tags,
-   the project is considered to be not stuck.  If you specify \"*\" as
-   a tag, any tag will mark the project unstuck.  Note that this is about
-   the explicit presence of a tag somewhere in the subtree, inherited
-   tags do not count here.  If inherited tags make a project not stuck,
-   use \"-TAG\" in the tags part of the matcher under (1.) above.
-4. An arbitrary regular expression matching non-stuck projects.
-
-If the project turns out to be not stuck, search continues also in the
-subtree to see if any of the subtasks have project status.
-
-See also the variable `org-tags-match-list-sublevels' which applies
-to projects matched by this search as well.
-
-After defining this variable, you may use `org-agenda-list-stuck-projects'
-\(bound to `\\[org-agenda] #') to produce the list."
-  :group 'org-agenda-custom-commands
-  :type '(list
-	  (string :tag "Tags/TODO match to identify a project")
-	  (repeat :tag "Projects are *not* stuck if they have an entry with \
-TODO keyword any of" (string))
-	  (repeat :tag "Projects are *not* stuck if they have an entry with \
-TAG being any of" (string))
-	  (regexp :tag "Projects are *not* stuck if this regexp matches inside \
-the subtree")))
-
-(defgroup org-agenda-skip nil
-  "Options concerning skipping parts of agenda files."
-  :tag "Org Agenda Skip"
-  :group 'org-agenda)
-
-(defcustom org-agenda-skip-function-global nil
-  "Function to be called at each match during agenda construction.
-If this function returns nil, the current match should not be skipped.
-If the function decided to skip an agenda match, is must return the
-buffer position from which the search should be continued.
-This may also be a Lisp form, which will be evaluated.
-
-This variable will be applied to every agenda match, including
-tags/property searches and TODO lists.  So try to make the test function
-do its checking as efficiently as possible.  To implement a skipping
-condition just for specific agenda commands, use the variable
-`org-agenda-skip-function' which can be set in the options section
-of custom agenda commands."
-  :group 'org-agenda-skip
-  :type 'sexp)
-
-(defgroup org-agenda-daily/weekly nil
-  "Options concerning the daily/weekly agenda."
-  :tag "Org Agenda Daily/Weekly"
-  :group 'org-agenda)
-(defgroup org-agenda-todo-list nil
-  "Options concerning the global todo list agenda view."
-  :tag "Org Agenda Todo List"
-  :group 'org-agenda)
-(defgroup org-agenda-match-view nil
-  "Options concerning the general tags/property/todo match agenda view."
-  :tag "Org Agenda Match View"
-  :group 'org-agenda)
-(defgroup org-agenda-search-view nil
-  "Options concerning the search agenda view."
-  :tag "Org Agenda Search View"
-  :group 'org-agenda)
-
-(defvar org-agenda-archives-mode nil
-  "Non-nil means the agenda will include archived items.
-If this is the symbol `trees', trees in the selected agenda scope
-that are marked with the ARCHIVE tag will be included anyway.  When this is
-t, also all archive files associated with the current selection of agenda
-files will be included.")
-
-(defcustom org-agenda-restriction-lock-highlight-subtree t
-  "Non-nil means highlight the whole subtree when restriction is active.
-Otherwise only highlight the headline.  Highlighting the whole subtree is
-useful to ensure no edits happen beyond the restricted region."
-  :group 'org-agenda
-  :type 'boolean)
-
-(defcustom org-agenda-skip-comment-trees t
-  "Non-nil means skip trees that start with the COMMENT keyword.
-When nil, these trees are also scanned by agenda commands."
-  :group 'org-agenda-skip
-  :type 'boolean)
-
-(defcustom org-agenda-todo-list-sublevels t
-  "Non-nil means check also the sublevels of a TODO entry for TODO entries.
-When nil, the sublevels of a TODO entry are not checked, resulting in
-potentially much shorter TODO lists."
-  :group 'org-agenda-skip
-  :group 'org-agenda-todo-list
-  :type 'boolean)
-
-(defcustom org-agenda-todo-ignore-with-date nil
-  "Non-nil means don't show entries with a date in the global todo list.
-You can use this if you prefer to mark mere appointments with a TODO keyword,
-but don't want them to show up in the TODO list.
-When this is set, it also covers deadlines and scheduled items, the settings
-of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
-will be ignored.
-See also the variable `org-agenda-tags-todo-honor-ignore-options'."
-  :group 'org-agenda-skip
-  :group 'org-agenda-todo-list
-  :type 'boolean)
-
-(defcustom org-agenda-todo-ignore-timestamp nil
-  "Non-nil means don't show entries with a timestamp.
-This applies when creating the global todo list.
-Valid values are:
-
-past     Don't show entries for today or in the past.
-
-future   Don't show entries with a timestamp in the future.
-         The idea behind this is that if it has a future
-         timestamp, you don't want to think about it until the
-         date.
-
-all      Don't show any entries with a timestamp in the global todo list.
-         The idea behind this is that by setting a timestamp, you
-         have already \"taken care\" of this item.
-
-This variable can also have an integer as a value.  If positive (N),
-todos with a timestamp N or more days in the future will be ignored.  If
-negative (-N), todos with a timestamp N or more days in the past will be
-ignored.  If 0, todos with a timestamp either today or in the future will
-be ignored.  For example, a value of -1 will exclude todos with a
-timestamp in the past (yesterday or earlier), while a value of 7 will
-exclude todos with a timestamp a week or more in the future.
-
-See also `org-agenda-todo-ignore-with-date'.
-See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
-to make his option also apply to the tags-todo list."
-  :group 'org-agenda-skip
-  :group 'org-agenda-todo-list
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Ignore future timestamp todos" future)
-	  (const :tag "Ignore past or present timestamp todos" past)
-	  (const :tag "Ignore all timestamp todos" all)
-	  (const :tag "Show timestamp todos" nil)
-	  (integer :tag "Ignore if N or more days in past(-) or future(+).")))
-
-(defcustom org-agenda-todo-ignore-scheduled nil
-  "Non-nil means, ignore some scheduled TODO items when making TODO list.
-This applies when creating the global todo list.
-Valid values are:
-
-past     Don't show entries scheduled today or in the past.
-
-future   Don't show entries scheduled in the future.
-         The idea behind this is that by scheduling it, you don't want to
-         think about it until the scheduled date.
-
-all      Don't show any scheduled entries in the global todo list.
-         The idea behind this is that by scheduling it, you have already
-         \"taken care\" of this item.
-
-t        Same as `all', for backward compatibility.
-
-This variable can also have an integer as a value.  See
-`org-agenda-todo-ignore-timestamp' for more details.
-
-See also `org-agenda-todo-ignore-with-date'.
-See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
-to make his option also apply to the tags-todo list."
-  :group 'org-agenda-skip
-  :group 'org-agenda-todo-list
-  :type '(choice
-	  (const :tag "Ignore future-scheduled todos" future)
-	  (const :tag "Ignore past- or present-scheduled todos" past)
-	  (const :tag "Ignore all scheduled todos" all)
-	  (const :tag "Ignore all scheduled todos (compatibility)" t)
-	  (const :tag "Show scheduled todos" nil)
-	  (integer :tag "Ignore if N or more days in past(-) or future(+).")))
-
-(defcustom org-agenda-todo-ignore-deadlines nil
-  "Non-nil means ignore some deadline TODO items when making TODO list.
-
-There are different motivations for using different values, please think
-carefully when configuring this variable.
-
-This applies when creating the global TODO list.
-
-Valid values are:
-
-near    Don't show near deadline entries.  A deadline is near when it is
-        closer than `org-deadline-warning-days' days.  The idea behind this
-        is that such items will appear in the agenda anyway.
-
-far     Don't show TODO entries where a deadline has been defined, but
-        is not going to happen anytime soon.  This is useful if you want to use
-        the TODO list to figure out what to do now.
-
-past    Don't show entries with a deadline timestamp for today or in the past.
-
-future  Don't show entries with a deadline timestamp in the future, not even
-        when they become `near' ones.  Use it with caution.
-
-all     Ignore all TODO entries that do have a deadline.
-
-t       Same as `near', for backward compatibility.
-
-This variable can also have an integer as a value.  See
-`org-agenda-todo-ignore-timestamp' for more details.
-
-See also `org-agenda-todo-ignore-with-date'.
-See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
-to make his option also apply to the tags-todo list."
-  :group 'org-agenda-skip
-  :group 'org-agenda-todo-list
-  :type '(choice
-	  (const :tag "Ignore near deadlines" near)
-	  (const :tag "Ignore near deadlines (compatibility)" t)
-	  (const :tag "Ignore far deadlines" far)
-	  (const :tag "Ignore all TODOs with a deadlines" all)
-	  (const :tag "Show all TODOs, even if they have a deadline" nil)
-	  (integer :tag "Ignore if N or more days in past(-) or future(+).")))
-
-(defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
-  "Time unit to use when possibly ignoring an agenda item.
-
-See the docstring of various `org-agenda-todo-ignore-*' options.
-The default is to compare time stamps using days.  An item is thus
-considered to be in the future if it is at least one day after today.
-Non-nil means to compare time stamps using seconds.  An item is then
-considered future if it has a time value later than current time."
-  :group 'org-agenda-skip
-  :group 'org-agenda-todo-list
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Compare time with days" nil)
-	  (const :tag "Compare time with seconds" t)))
-
-(defcustom org-agenda-tags-todo-honor-ignore-options nil
-  "Non-nil means honor todo-list ignores options also in tags-todo search.
-The variables
-   `org-agenda-todo-ignore-with-date',
-   `org-agenda-todo-ignore-timestamp',
-   `org-agenda-todo-ignore-scheduled',
-   `org-agenda-todo-ignore-deadlines'
-make the global TODO list skip entries that have time stamps of certain
-kinds.  If this option is set, the same options will also apply for the
-tags-todo search, which is the general tags/property matcher
-restricted to unfinished TODO entries only."
-  :group 'org-agenda-skip
-  :group 'org-agenda-todo-list
-  :group 'org-agenda-match-view
-  :type 'boolean)
-
-(defcustom org-agenda-skip-scheduled-if-done nil
-  "Non-nil means don't show scheduled items in agenda when they are done.
-This is relevant for the daily/weekly agenda, not for the TODO list.  It
-applies only to the actual date of the scheduling.  Warnings about an item
-with a past scheduling dates are always turned off when the item is DONE."
-  :group 'org-agenda-skip
-  :group 'org-agenda-daily/weekly
-  :type 'boolean)
-
-(defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
-  "Non-nil means skip scheduling line if same entry shows because of deadline.
-
-In the agenda of today, an entry can show up multiple times
-because it is both scheduled and has a nearby deadline, and maybe
-a plain time stamp as well.
-
-When this variable is nil, the entry will be shown several times.
-
-When set to t, then only the deadline is shown and the fact that
-the entry is scheduled today or was scheduled previously is not
-shown.
-
-When set to the symbol `not-today', skip scheduled previously,
-but not scheduled today.
-
-When set to the symbol `repeated-after-deadline', skip scheduled
-items if they are repeated beyond the current deadline."
-  :group 'org-agenda-skip
-  :group 'org-agenda-daily/weekly
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "Always" t)
-	  (const :tag "Not when scheduled today" not-today)
-	  (const :tag "When repeated past deadline" repeated-after-deadline)))
-
-(defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
-  "Non-nil means skip timestamp line if same entry shows because of deadline.
-In the agenda of today, an entry can show up multiple times
-because it has both a plain timestamp and has a nearby deadline.
-When this variable is t, then only the deadline is shown and the
-fact that the entry has a timestamp for or including today is not
-shown.  When this variable is nil, the entry will be shown
-several times."
-  :group 'org-agenda-skip
-  :group 'org-agenda-daily/weekly
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "Always" t)))
-
-(defcustom org-agenda-skip-deadline-if-done nil
-  "Non-nil means don't show deadlines when the corresponding item is done.
-When nil, the deadline is still shown and should give you a happy feeling.
-This is relevant for the daily/weekly agenda.  It applies only to the
-actual date of the deadline.  Warnings about approaching and past-due
-deadlines are always turned off when the item is DONE."
-  :group 'org-agenda-skip
-  :group 'org-agenda-daily/weekly
-  :type 'boolean)
-
-(defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
-  "Non-nil means skip deadline prewarning when entry is also scheduled.
-This will apply on all days where a prewarning for the deadline would
-be shown, but not at the day when the entry is actually due.  On that day,
-the deadline will be shown anyway.
-This variable may be set to nil, t, the symbol `pre-scheduled',
-or a number which will then give the number of days before the actual
-deadline when the prewarnings should resume.  The symbol `pre-scheduled'
-eliminates the deadline prewarning only prior to the scheduled date.
-This can be used in a workflow where the first showing of the deadline will
-trigger you to schedule it, and then you don't want to be reminded of it
-because you will take care of it on the day when scheduled."
-  :group 'org-agenda-skip
-  :group 'org-agenda-daily/weekly
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Always show prewarning" nil)
-	  (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
-	  (const :tag "Remove prewarning if entry is scheduled" t)
-	  (integer :tag "Restart prewarning N days before deadline")))
-
-(defcustom org-agenda-skip-scheduled-delay-if-deadline nil
-  "Non-nil means skip scheduled delay when entry also has a deadline.
-This variable may be set to nil, t, the symbol `post-deadline',
-or a number which will then give the number of days after the actual
-scheduled date when the delay should expire.  The symbol `post-deadline'
-eliminates the schedule delay when the date is posterior to the deadline."
-  :group 'org-agenda-skip
-  :group 'org-agenda-daily/weekly
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Always honor delay" nil)
-	  (const :tag "Ignore delay if posterior to the deadline" post-deadline)
-	  (const :tag "Ignore delay if entry has a deadline" t)
-	  (integer :tag "Honor delay up until N days after the scheduled date")))
-
-(defcustom org-agenda-skip-additional-timestamps-same-entry nil
-  "When nil, multiple same-day timestamps in entry make multiple agenda lines.
-When non-nil, after the search for timestamps has matched once in an
-entry, the rest of the entry will not be searched."
-  :group 'org-agenda-skip
-  :type 'boolean)
-
-(defcustom org-agenda-skip-timestamp-if-done nil
-  "Non-nil means don't select item by timestamp or -range if it is DONE."
-  :group 'org-agenda-skip
-  :group 'org-agenda-daily/weekly
-  :type 'boolean)
-
-(defcustom org-agenda-dim-blocked-tasks t
-  "Non-nil means dim blocked tasks in the agenda display.
-This causes some overhead during agenda construction, but if you
-have turned on `org-enforce-todo-dependencies',
-`org-enforce-todo-checkbox-dependencies', or any other blocking
-mechanism, this will create useful feedback in the agenda.
-
-Instead of t, this variable can also have the value `invisible'.
-Then blocked tasks will be invisible and only become visible when
-they become unblocked.  An exemption to this behavior is when a task is
-blocked because of unchecked checkboxes below it.  Since checkboxes do
-not show up in the agenda views, making this task invisible you remove any
-trace from agenda views that there is something to do.  Therefore, a task
-that is blocked because of checkboxes will never be made invisible, it
-will only be dimmed."
-  :group 'org-agenda-daily/weekly
-  :group 'org-agenda-todo-list
-  :version "24.3"
-  :type '(choice
-	  (const :tag "Do not dim" nil)
-	  (const :tag "Dim to a gray face" t)
-	  (const :tag "Make invisible" invisible)))
-
-(defgroup org-agenda-startup nil
-  "Options concerning initial settings in the Agenda in Org Mode."
-  :tag "Org Agenda Startup"
-  :group 'org-agenda)
-
-(defcustom org-agenda-menu-show-matcher t
-  "Non-nil means show the match string in the agenda dispatcher menu.
-When nil, the matcher string is not shown, but is put into the help-echo
-property so than moving the mouse over the command shows it.
-Setting it to nil is good if matcher strings are very long and/or if
-you want to use two-columns display (see `org-agenda-menu-two-columns')."
-  :group 'org-agenda
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-menu-two-columns nil
-  "Non-nil means, use two columns to show custom commands in the dispatcher.
-If you use this, you probably want to set `org-agenda-menu-show-matcher'
-to nil."
-  :group 'org-agenda
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-finalize-hook nil
-  "Hook run just before displaying an agenda buffer.
-The buffer is still writable when the hook is called.
-
-You can modify some of the buffer substrings but you should be
-extra careful not to modify the text properties of the agenda
-headlines as the agenda display heavily relies on them."
-  :group 'org-agenda-startup
-  :type 'hook)
-
-(defcustom org-agenda-mouse-1-follows-link nil
-  "Non-nil means mouse-1 on a link will follow the link in the agenda.
-A longer mouse click will still set point.  Needs to be set
-before org.el is loaded."
-  :group 'org-agenda-startup
-  :type 'boolean)
-
-(defcustom org-agenda-start-with-follow-mode nil
-  "The initial value of follow mode in a newly created agenda window."
-  :group 'org-agenda-startup
-  :type 'boolean)
-
-(defcustom org-agenda-follow-indirect nil
-  "Non-nil means `org-agenda-follow-mode' displays only the
-current item's tree, in an indirect buffer."
-  :group 'org-agenda
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-show-outline-path t
-  "Non-nil means show outline path in echo area after line motion."
-  :group 'org-agenda-startup
-  :type 'boolean)
-
-(defcustom org-agenda-start-with-entry-text-mode nil
-  "The initial value of entry-text-mode in a newly created agenda window."
-  :group 'org-agenda-startup
-  :type 'boolean)
-
-(defcustom org-agenda-entry-text-maxlines 5
-  "Number of text lines to be added when `E' is pressed in the agenda.
-
-Note that this variable only used during agenda display.  To add entry text
-when exporting the agenda, configure the variable
-`org-agenda-add-entry-text-maxlines'."
-  :group 'org-agenda
-  :type 'integer)
-
-(defcustom org-agenda-entry-text-exclude-regexps nil
-  "List of regular expressions to clean up entry text.
-The complete matches of all regular expressions in this list will be
-removed from entry text before it is shown in the agenda."
-  :group 'org-agenda
-  :type '(repeat (regexp)))
-
-(defcustom org-agenda-entry-text-leaders "    > "
-  "Text prepended to the entry text in agenda buffers."
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :group 'org-agenda
-  :type 'string)
-
-(defvar org-agenda-entry-text-cleanup-hook nil
-  "Hook that is run after basic cleanup of entry text to be shown in agenda.
-This cleanup is done in a temporary buffer, so the function may inspect and
-change the entire buffer.
-Some default stuff like drawers and scheduling/deadline dates will already
-have been removed when this is called, as will any matches for regular
-expressions listed in `org-agenda-entry-text-exclude-regexps'.")
-
-(defvar org-agenda-include-inactive-timestamps nil
-  "Non-nil means include inactive time stamps in agenda.
-Dynamically scoped.")
-
-(defgroup org-agenda-windows nil
-  "Options concerning the windows used by the Agenda in Org Mode."
-  :tag "Org Agenda Windows"
-  :group 'org-agenda)
-
-(defcustom org-agenda-window-setup 'reorganize-frame
-  "How the agenda buffer should be displayed.
-Possible values for this option are:
-
-current-window    Show agenda in the current window, keeping all other windows.
-other-window      Use `switch-to-buffer-other-window' to display agenda.
-only-window       Show agenda, deleting all other windows.
-reorganize-frame  Show only two windows on the current frame, the current
-                  window and the agenda.
-other-frame       Use `switch-to-buffer-other-frame' to display agenda.
-                  Also, when exiting the agenda, kill that frame.
-See also the variable `org-agenda-restore-windows-after-quit'."
-  :group 'org-agenda-windows
-  :type '(choice
-	  (const current-window)
-	  (const other-frame)
-	  (const other-window)
-	  (const only-window)
-	  (const reorganize-frame)))
-
-(defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
-  "The min and max height of the agenda window as a fraction of frame height.
-The value of the variable is a cons cell with two numbers between 0 and 1.
-It only matters if `org-agenda-window-setup' is `reorganize-frame'."
-  :group 'org-agenda-windows
-  :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
-
-(defcustom org-agenda-restore-windows-after-quit nil
-  "Non-nil means restore window configuration upon exiting agenda.
-Before the window configuration is changed for displaying the agenda,
-the current status is recorded.  When the agenda is exited with
-`q' or `x' and this option is set, the old state is restored.  If
-`org-agenda-window-setup' is `other-frame', the value of this
-option will be ignored."
-  :group 'org-agenda-windows
-  :type 'boolean)
-
-(defcustom org-agenda-span 'week
-  "Number of days to include in overview display.
-Can be day, week, month, year, or any number of days.
-Custom commands can set this variable in the options section."
-  :group 'org-agenda-daily/weekly
-  :type '(choice (const :tag "Day" day)
-		 (const :tag "Week" week)
-		 (const :tag "Fortnight" fortnight)
-		 (const :tag "Month" month)
-		 (const :tag "Year" year)
-		 (integer :tag "Custom")))
-
-(defcustom org-agenda-start-on-weekday 1
-  "Non-nil means start the overview always on the specified weekday.
-0 denotes Sunday, 1 denotes Monday, etc.
-When nil, always start on the current day.
-Custom commands can set this variable in the options section."
-  :group 'org-agenda-daily/weekly
-  :type '(choice (const :tag "Today" nil)
-		 (integer :tag "Weekday No.")))
-
-(defcustom org-agenda-show-all-dates t
-  "Non-nil means `org-agenda' shows every day in the selected range.
-When nil, only the days which actually have entries are shown."
-  :group 'org-agenda-daily/weekly
-  :type 'boolean)
-
-(defcustom org-agenda-format-date 'org-agenda-format-date-aligned
-  "Format string for displaying dates in the agenda.
-Used by the daily/weekly agenda.  This should be a format string
-understood by `format-time-string', or a function returning the
-formatted date as a string.  The function must take a single
-argument, a calendar-style date list like (month day year)."
-  :group 'org-agenda-daily/weekly
-  :type '(choice
-	  (string :tag "Format string")
-	  (function :tag "Function")))
-
-(defun org-agenda-format-date-aligned (date)
-  "Format a DATE string for display in the daily/weekly agenda.
-This function makes sure that dates are aligned for easy reading."
-  (require 'cal-iso)
-  (let* ((dayname (calendar-day-name date))
-	 (day (cadr date))
-	 (day-of-week (calendar-day-of-week date))
-	 (month (car date))
-	 (monthname (calendar-month-name month))
-	 (year (nth 2 date))
-	 (iso-week (org-days-to-iso-week
-		    (calendar-absolute-from-gregorian date)))
-	 (weekyear (cond ((and (= month 1) (>= iso-week 52))
-			  (1- year))
-			 ((and (= month 12) (<= iso-week 1))
-			  (1+ year))
-			 (t year)))
-	 (weekstring (if (= day-of-week 1)
-			 (format " W%02d" iso-week)
-		       "")))
-    (format "%-10s %2d %s %4d%s"
-	    dayname day monthname year weekstring)))
-
-(defcustom org-agenda-time-leading-zero nil
-  "Non-nil means use leading zero for military times in agenda.
-For example, 9:30am would become 09:30 rather than  9:30."
-  :group 'org-agenda-daily/weekly
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-timegrid-use-ampm nil
-  "When set, show AM/PM style timestamps on the timegrid."
-  :group 'org-agenda
-  :version "24.1"
-  :type 'boolean)
-
-(defun org-agenda-time-of-day-to-ampm (time)
-  "Convert TIME of a string like \"13:45\" to an AM/PM style time string."
-  (let* ((hour-number (string-to-number (substring time 0 -3)))
-         (minute (substring time -2))
-         (ampm "am"))
-    (cond
-     ((equal hour-number 12)
-      (setq ampm "pm"))
-     ((> hour-number 12)
-      (setq ampm "pm")
-      (setq hour-number (- hour-number 12))))
-    (concat
-     (if org-agenda-time-leading-zero
-	 (format "%02d" hour-number)
-       (format "%02s" (number-to-string hour-number)))
-     ":" minute ampm)))
-
-(defun org-agenda-time-of-day-to-ampm-maybe (time)
-  "Conditionally convert TIME to AM/PM format based on `org-agenda-timegrid-use-ampm'."
-  (if org-agenda-timegrid-use-ampm
-      (org-agenda-time-of-day-to-ampm time)
-    time))
-
-(defcustom org-agenda-weekend-days '(6 0)
-  "Which days are weekend?
-These days get the special face `org-agenda-date-weekend' in the agenda."
-  :group 'org-agenda-daily/weekly
-  :type '(set :greedy t
-	      (const :tag "Monday" 1)
-	      (const :tag "Tuesday" 2)
-	      (const :tag "Wednesday" 3)
-	      (const :tag "Thursday" 4)
-	      (const :tag "Friday" 5)
-	      (const :tag "Saturday" 6)
-	      (const :tag "Sunday" 0)))
-
-(defcustom org-agenda-move-date-from-past-immediately-to-today t
-  "Non-nil means jump to today when moving a past date forward in time.
-When using S-right in the agenda to move a a date forward, and the date
-stamp currently points to the past, the first key press will move it
-to today.  WHen nil, just move one day forward even if the date stays
-in the past."
-  :group 'org-agenda-daily/weekly
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-include-diary nil
-  "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
-Custom commands can set this variable in the options section."
-  :group 'org-agenda-daily/weekly
-  :type 'boolean)
-
-(defcustom org-agenda-include-deadlines t
-  "If non-nil, include entries within their deadline warning period.
-Custom commands can set this variable in the options section."
-  :group 'org-agenda-daily/weekly
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-show-future-repeats t
-  "Non-nil shows repeated entries in the future part of the agenda.
-When set to the symbol `next' only the first future repeat is shown."
-  :group 'org-agenda-daily/weekly
-  :type '(choice
-	  (const :tag "Show all repeated entries" t)
-	  (const :tag "Show next repeated entry" next)
-	  (const :tag "Do not show repeated entries" nil))
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :safe #'symbolp)
-
-(defcustom org-agenda-prefer-last-repeat nil
-  "Non-nil sets date for repeated entries to their last repeat.
-
-When nil, display SCHEDULED and DEADLINE dates at their base
-date, and in today's agenda, as a reminder.  Display plain
-time-stamps, on the other hand, at every repeat date in the past
-in addition to the base date.
-
-When non-nil, show a repeated entry at its latest repeat date,
-possibly being today even if it wasn't marked as done.  This
-setting is useful if you do not always mark repeated entries as
-done and, yet, consider that reaching repeat date starts the task
-anew.
-
-When set to a list of strings, prefer last repeats only for
-entries with these TODO keywords."
-  :group 'org-agenda-daily/weekly
-  :type '(choice
-	  (const :tag "Prefer last repeat" t)
-	  (const :tag "Prefer base date" nil)
-	  (repeat :tag "Prefer last repeat for entries with these TODO keywords"
-		  (string :tag "TODO keyword")))
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :safe (lambda (x) (or (booleanp x) (consp x))))
-
-(defcustom org-scheduled-past-days 10000
-  "Number of days to continue listing scheduled items not marked DONE.
-When an item is scheduled on a date, it shows up in the agenda on
-this day and will be listed until it is marked done or for the
-number of days given here."
-  :group 'org-agenda-daily/weekly
-  :type 'integer
-  :safe 'integerp)
-
-(defcustom org-deadline-past-days 10000
-  "Number of days to warn about missed deadlines.
-When an item has deadline on a date, it shows up in the agenda on
-this day and will appear as a reminder until it is marked DONE or
-for the number of days given here."
-  :group 'org-agenda-daily/weekly
-  :type 'integer
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :safe 'integerp)
-
-(defcustom org-agenda-log-mode-items '(closed clock)
-  "List of items that should be shown in agenda log mode.
-\\<org-agenda-mode-map>\
-This list may contain the following symbols:
-
-  closed    Show entries that have been closed on that day.
-  clock     Show entries that have received clocked time on that day.
-  state     Show all logged state changes.
-Note that instead of changing this variable, you can also press \
-`\\[universal-argument] \\[org-agenda-log-mode]' in
-the agenda to display all available LOG items temporarily."
-  :group 'org-agenda-daily/weekly
-  :type '(set :greedy t (const closed) (const clock) (const state)))
-
-(defcustom org-agenda-clock-consistency-checks
-  '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
-		  :gap-ok-around ("4:00")
-		  :default-face ((:background "DarkRed") (:foreground "white"))
-		  :overlap-face nil :gap-face nil :no-end-time-face nil
-		  :long-face nil :short-face nil)
-  "This is a property list, with the following keys:
-
-:max-duration    Mark clocking chunks that are longer than this time.
-                 This is a time string like \"HH:MM\", or the number
-                 of minutes as an integer.
-
-:min-duration    Mark clocking chunks that are shorter that this.
-                 This is a time string like \"HH:MM\", or the number
-                 of minutes as an integer.
-
-:max-gap         Mark gaps between clocking chunks that are longer than
-                 this duration.  A number of minutes, or a string
-                 like \"HH:MM\".
-
-:gap-ok-around   List of times during the day which are usually not working
-                 times.  When a gap is detected, but the gap contains any
-                 of these times, the gap is *not* reported.  For example,
-                 if this is (\"4:00\" \"13:00\") then gaps that contain
-                 4:00 in the morning (i.e. the night) and 13:00
-                 (i.e. a typical lunch time) do not cause a warning.
-                 You should have at least one time during the night in this
-                 list, or otherwise the first task each morning will trigger
-                 a warning because it follows a long gap.
-
-Furthermore, the following properties can be used to define faces for
-issue display.
-
-:default-face         the default face, if the specific face is undefined
-:overlap-face         face for overlapping clocks
-:gap-face             face for gaps between clocks
-:no-end-time-face     face for incomplete clocks
-:long-face            face for clock intervals that are too long
-:short-face           face for clock intervals that are too short"
-  :group 'org-agenda-daily/weekly
-  :group 'org-clock
-  :version "24.1"
-  :type 'plist)
-
-(defcustom org-agenda-log-mode-add-notes t
-  "Non-nil means add first line of notes to log entries in agenda views.
-If a log item like a state change or a clock entry is associated with
-notes, the first line of these notes will be added to the entry in the
-agenda display."
-  :group 'org-agenda-daily/weekly
-  :type 'boolean)
-
-(defcustom org-agenda-start-with-log-mode nil
-  "The initial value of log-mode in a newly created agenda window.
-See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
-explanations on the possible values."
-  :group 'org-agenda-startup
-  :group 'org-agenda-daily/weekly
-  :type '(choice (const :tag "Don't show log items" nil)
-		 (const :tag "Show only log items" only)
-		 (const :tag "Show all possible log items" clockcheck)
-		 (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
-			 (choice (const :tag "Show closed log items" closed)
-				 (const :tag "Show clocked log items" clock)
-				 (const :tag "Show all logged state changes" state)))))
-
-(defcustom org-agenda-start-with-clockreport-mode nil
-  "The initial value of clockreport-mode in a newly created agenda window."
-  :group 'org-agenda-startup
-  :group 'org-agenda-daily/weekly
-  :type 'boolean)
-
-(defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
-  "Property list with parameters for the clocktable in clockreport mode.
-This is the display mode that shows a clock table in the daily/weekly
-agenda, the properties for this dynamic block can be set here.
-The usual clocktable parameters are allowed here, but you cannot set
-the properties :name, :tstart, :tend, :block, and :scope - these will
-be overwritten to make sure the content accurately reflects the
-current display in the agenda."
-  :group 'org-agenda-daily/weekly
-  :type 'plist)
-
-(defcustom org-agenda-search-view-always-boolean nil
-  "Non-nil means the search string is interpreted as individual parts.
-
-The search string for search view can either be interpreted as a phrase,
-or as a list of snippets that define a boolean search for a number of
-strings.
-
-When this is non-nil, the string will be split on whitespace, and each
-snippet will be searched individually, and all must match in order to
-select an entry.  A snippet is then a single string of non-white
-characters, or a string in double quotes, or a regexp in {} braces.
-If a snippet is preceded by \"-\", the snippet must *not* match.
-\"+\" is syntactic sugar for positive selection.  Each snippet may
-be found as a full word or a partial word, but see the variable
-`org-agenda-search-view-force-full-words'.
-
-When this is nil, search will look for the entire search phrase as one,
-with each space character matching any amount of whitespace, including
-line breaks.
-
-Even when this is nil, you can still switch to Boolean search dynamically
-by preceding the first snippet with \"+\" or \"-\".  If the first snippet
-is a regexp marked with braces like \"{abc}\", this will also switch to
-boolean search."
-  :group 'org-agenda-search-view
-  :version "24.1"
-  :type 'boolean)
-
-(defvaralias 'org-agenda-search-view-search-words-only
-  'org-agenda-search-view-always-boolean)
-
-(defcustom org-agenda-search-view-force-full-words nil
-  "Non-nil means, search words must be matches as complete words.
-When nil, they may also match part of a word."
-  :group 'org-agenda-search-view
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-search-view-max-outline-level 0
-  "Maximum outline level to display in search view.
-E.g. when this is set to 1, the search view will only
-show headlines of level 1.  When set to 0, the default
-value, don't limit agenda view by outline level."
-  :group 'org-agenda-search-view
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'integer)
-
-(defgroup org-agenda-time-grid nil
-  "Options concerning the time grid in the Org Agenda."
-  :tag "Org Agenda Time Grid"
-  :group 'org-agenda)
-
-(defcustom org-agenda-search-headline-for-time t
-  "Non-nil means search headline for a time-of-day.
-If the headline contains a time-of-day in one format or another, it will
-be used to sort the entry into the time sequence of items for a day.
-Some people have time stamps in the headline that refer to the creation
-time or so, and then this produces an unwanted side effect.  If this is
-the case for your, use this variable to turn off searching the headline
-for a time."
-  :group 'org-agenda-time-grid
-  :type 'boolean)
-
-(defcustom org-agenda-use-time-grid t
-  "Non-nil means show a time grid in the agenda schedule.
-A time grid is a set of lines for specific times (like every two hours between
-8:00 and 20:00).  The items scheduled for a day at specific times are
-sorted in between these lines.
-For details about when the grid will be shown, and what it will look like, see
-the variable `org-agenda-time-grid'."
-  :group 'org-agenda-time-grid
-  :type 'boolean)
-
-(defcustom org-agenda-time-grid
-  '((daily today require-timed)
-    (800 1000 1200 1400 1600 1800 2000)
-    "......"
-    "----------------")
-
-  "The settings for time grid for agenda display.
-This is a list of four items.  The first item is again a list.  It contains
-symbols specifying conditions when the grid should be displayed:
-
- daily         if the agenda shows a single day
- weekly        if the agenda shows an entire week
- today         show grid on current date, independent of daily/weekly display
- require-timed show grid only if at least one item has a time specification
- remove-match  skip grid times already present in an entry
-
-The second item is a list of integers, indicating the times that
-should have a grid line.
-
-The third item is a string which will be placed right after the
-times that have a grid line.
-
-The fourth item is a string placed after the grid times.  This
-will align with agenda items"
-  :group 'org-agenda-time-grid
-  :type
-  '(list
-    (set :greedy t :tag "Grid Display Options"
-	 (const :tag "Show grid in single day agenda display" daily)
-	 (const :tag "Show grid in weekly agenda display" weekly)
-	 (const :tag "Always show grid for today" today)
-	 (const :tag "Show grid only if any timed entries are present"
-		require-timed)
-	 (const :tag "Skip grid times already present in an entry"
-		remove-match))
-    (repeat :tag "Grid Times" (integer :tag "Time"))
-    (string :tag "Grid String (after agenda times)")
-    (string :tag "Grid String (aligns with agenda items)")))
-
-(defcustom org-agenda-show-current-time-in-grid t
-  "Non-nil means show the current time in the time grid."
-  :group 'org-agenda-time-grid
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-current-time-string
-  "now - - - - - - - - - - - - - - - - - - - - - - - - -"
-  "The string for the current time marker in the agenda."
-  :group 'org-agenda-time-grid
-  :version "24.1"
-  :type 'string)
-
-(defgroup org-agenda-sorting nil
-  "Options concerning sorting in the Org Agenda."
-  :tag "Org Agenda Sorting"
-  :group 'org-agenda)
-
-(defcustom org-agenda-sorting-strategy
-  '((agenda habit-down time-up priority-down category-keep)
-    (todo   priority-down category-keep)
-    (tags   priority-down category-keep)
-    (search category-keep))
-  "Sorting structure for the agenda items of a single day.
-This is a list of symbols which will be used in sequence to determine
-if an entry should be listed before another entry.  The following
-symbols are recognized:
-
-time-up            Put entries with time-of-day indications first, early first
-time-down          Put entries with time-of-day indications first, late first
-timestamp-up       Sort by any timestamp, early first
-timestamp-down     Sort by any timestamp, late first
-scheduled-up       Sort by scheduled timestamp, early first
-scheduled-down     Sort by scheduled timestamp, late first
-deadline-up        Sort by deadline timestamp, early first
-deadline-down      Sort by deadline timestamp, late first
-ts-up              Sort by active timestamp, early first
-ts-down            Sort by active timestamp, late first
-tsia-up            Sort by inactive timestamp, early first
-tsia-down          Sort by inactive timestamp, late first
-category-keep      Keep the default order of categories, corresponding to the
-		   sequence in `org-agenda-files'.
-category-up        Sort alphabetically by category, A-Z.
-category-down      Sort alphabetically by category, Z-A.
-tag-up             Sort alphabetically by last tag, A-Z.
-tag-down           Sort alphabetically by last tag, Z-A.
-priority-up        Sort numerically by priority, high priority last.
-priority-down      Sort numerically by priority, high priority first.
-todo-state-up      Sort by todo state, tasks that are done last.
-todo-state-down    Sort by todo state, tasks that are done first.
-effort-up          Sort numerically by estimated effort, high effort last.
-effort-down        Sort numerically by estimated effort, high effort first.
-user-defined-up    Sort according to `org-agenda-cmp-user-defined', high last.
-user-defined-down  Sort according to `org-agenda-cmp-user-defined', high first.
-habit-up           Put entries that are habits first
-habit-down         Put entries that are habits last
-alpha-up           Sort headlines alphabetically
-alpha-down         Sort headlines alphabetically, reversed
-
-The different possibilities will be tried in sequence, and testing stops
-if one comparison returns a \"not-equal\".  For example, the default
-    '(time-up category-keep priority-down)
-means: Pull out all entries having a specified time of day and sort them,
-in order to make a time schedule for the current day the first thing in the
-agenda listing for the day.  Of the entries without a time indication, keep
-the grouped in categories, don't sort the categories, but keep them in
-the sequence given in `org-agenda-files'.  Within each category sort by
-priority.
-
-Leaving out `category-keep' would mean that items will be sorted across
-categories by priority.
-
-Instead of a single list, this can also be a set of list for specific
-contents, with a context symbol in the car of the list, any of
-`agenda', `todo', `tags', `search' for the corresponding agenda views.
-
-Custom commands can bind this variable in the options section."
-  :group 'org-agenda-sorting
-  :type `(choice
-	  (repeat :tag "General" ,org-sorting-choice)
-	  (list :tag "Individually"
-		(cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
-		      (repeat ,org-sorting-choice))
-		(cons (const :tag "Strategy for TODO lists" todo)
-		      (repeat ,org-sorting-choice))
-		(cons (const :tag "Strategy for Tags matches" tags)
-		      (repeat ,org-sorting-choice))
-		(cons (const :tag "Strategy for search matches" search)
-		      (repeat ,org-sorting-choice)))))
-
-(defcustom org-agenda-cmp-user-defined nil
-  "A function to define the comparison `user-defined'.
-This function must receive two arguments, agenda entry a and b.
-If a>b, return +1.  If a<b, return -1.  If they are equal as seen by
-the user comparison, return nil.
-When this is defined, you can make `user-defined-up' and `user-defined-down'
-part of an agenda sorting strategy."
-  :group 'org-agenda-sorting
-  :type 'symbol)
-
-(defcustom org-sort-agenda-notime-is-late t
-  "Non-nil means items without time are considered late.
-This is only relevant for sorting.  When t, items which have no explicit
-time like 15:30 will be considered as 99:01, i.e. later than any items which
-do have a time.  When nil, the default time is before 0:00.  You can use this
-option to decide if the schedule for today should come before or after timeless
-agenda entries."
-  :group 'org-agenda-sorting
-  :type 'boolean)
-
-(defcustom org-sort-agenda-noeffort-is-high t
-  "Non-nil means items without effort estimate are sorted as high effort.
-This also applies when filtering an agenda view with respect to the
-< or > effort operator.  Then, tasks with no effort defined will be treated
-as tasks with high effort.
-When nil, such items are sorted as 0 minutes effort."
-  :group 'org-agenda-sorting
-  :type 'boolean)
-
-(defgroup org-agenda-line-format nil
-  "Options concerning the entry prefix in the Org agenda display."
-  :tag "Org Agenda Line Format"
-  :group 'org-agenda)
-
-(defcustom org-agenda-prefix-format
-  '((agenda  . " %i %-12:c%?-12t% s")
-    (todo  . " %i %-12:c")
-    (tags  . " %i %-12:c")
-    (search . " %i %-12:c"))
-  "Format specifications for the prefix of items in the agenda views.
-
-An alist with one entry per agenda type.  The keys of the
-sublists are `agenda', `todo', `search' and `tags'.  The values
-are format strings.
-
-This format works similar to a printf format, with the following meaning:
-
-  %c   the category of the item, \"Diary\" for entries from the diary,
-       or as given by the CATEGORY keyword or derived from the file name
-  %e   the effort required by the item
-  %l   the level of the item (insert X space(s) if item is of level X)
-  %i   the icon category of the item, see `org-agenda-category-icon-alist'
-  %T   the last tag of the item (ignore inherited tags, which come first)
-  %t   the HH:MM time-of-day specification if one applies to the entry
-  %s   Scheduling/Deadline information, a short string
-  %b   show breadcrumbs, i.e., the names of the higher levels
-  %(expression) Eval EXPRESSION and replace the control string
-                by the result
-
-All specifiers work basically like the standard `%s' of printf, but may
-contain two additional characters: a question mark just after the `%'
-and a whitespace/punctuation character just before the final letter.
-
-If the first character after `%' is a question mark, the entire field
-will only be included if the corresponding value applies to the current
-entry.  This is useful for fields which should have fixed width when
-present, but zero width when absent.  For example, \"%?-12t\" will
-result in a 12 character time field if a time of the day is specified,
-but will completely disappear in entries which do not contain a time.
-
-If there is punctuation or whitespace character just before the
-final format letter, this character will be appended to the field
-value if the value is not empty.  For example, the format
-\"%-12:c\" leads to \"Diary: \" if the category is \"Diary\".  If
-the category is empty, no additional colon is inserted.
-
-The default value for the agenda sublist is \"  %-12:c%?-12t% s\",
-which means:
-
-- Indent the line with two space characters
-- Give the category a 12 chars wide field, padded with whitespace on
-  the right (because of `-').  Append a colon if there is a category
-  (because of `:').
-- If there is a time-of-day, put it into a 12 chars wide field.  If no
-  time, don't put in an empty field, just skip it (because of '?').
-- Finally, put the scheduling information.
-
-See also the variables `org-agenda-remove-times-when-in-prefix' and
-`org-agenda-remove-tags'.
-
-Custom commands can set this variable in the options section."
-  :type '(choice
-	  (string :tag "General format")
-	  (list :greedy t :tag "View dependent"
-		(cons  (const agenda) (string :tag "Format"))
-		(cons  (const todo) (string :tag "Format"))
-		(cons  (const tags) (string :tag "Format"))
-		(cons  (const search) (string :tag "Format"))))
-  :group 'org-agenda-line-format
-  :version "26.1"
-  :package-version '(Org . "9.1"))
-
-(defvar org-prefix-format-compiled nil
-  "The compiled prefix format and associated variables.
-This is a list where first element is a list of variable bindings, and second
-element is the compiled format expression.  See the variable
-`org-agenda-prefix-format'.")
-
-(defcustom org-agenda-todo-keyword-format "%-1s"
-  "Format for the TODO keyword in agenda lines.
-Set this to something like \"%-12s\" if you want all TODO keywords
-to occupy a fixed space in the agenda display."
-  :group 'org-agenda-line-format
-  :type 'string)
-
-(defcustom org-agenda-diary-sexp-prefix nil
-  "A regexp that matches part of a diary sexp entry
-which should be treated as scheduling/deadline information in
-`org-agenda'.
-
-For example, you can use this to extract the `diary-remind-message' from
-`diary-remind' entries."
-  :group 'org-agenda-line-format
-  :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
-
-(defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
-  "Text preceding timerange entries in the agenda view.
-This is a list with two strings.  The first applies when the range
-is entirely on one day.  The second applies if the range spans several days.
-The strings may have two \"%d\" format specifiers which will be filled
-with the sequence number of the days, and the total number of days in the
-range, respectively."
-  :group 'org-agenda-line-format
-  :type '(list
-	  (string :tag "Deadline today   ")
-	  (choice :tag "Deadline relative"
-		  (string :tag "Format string")
-		  (function))))
-
-(defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
-  "Text preceding scheduled items in the agenda view.
-This is a list with two strings.  The first applies when the item is
-scheduled on the current day.  The second applies when it has been scheduled
-previously, it may contain a %d indicating that this is the nth time that
-this item is scheduled, due to automatic rescheduling of unfinished items
-for the following day.  So this number is one larger than the number of days
-that passed since this item was scheduled first."
-  :group 'org-agenda-line-format
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(list
-	  (string :tag "Scheduled today     ")
-	  (string :tag "Scheduled previously")))
-
-(defcustom org-agenda-inactive-leader "["
-  "Text preceding item pulled into the agenda by inactive time stamps.
-These entries are added to the agenda when pressing \"[\"."
-  :group 'org-agenda-line-format
-  :version "24.1"
-  :type 'string)
-
-(defcustom org-agenda-deadline-leaders '("Deadline:  " "In %3d d.: " "%2d d. ago: ")
-  "Text preceding deadline items in the agenda view.
-This is a list with three strings.  The first applies when the item has its
-deadline on the current day.  The second applies when the deadline is in the
-future, the third one when it is in the past.  The strings may contain %d
-to capture the number of days."
-  :group 'org-agenda-line-format
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(list
-	  (string :tag "Deadline today          ")
-	  (string :tag "Deadline in the future  ")
-	  (string :tag "Deadline in the past    ")))
-
-(defcustom org-agenda-remove-times-when-in-prefix t
-  "Non-nil means remove duplicate time specifications in agenda items.
-When the format `org-agenda-prefix-format' contains a `%t' specifier, a
-time-of-day specification in a headline or diary entry is extracted and
-placed into the prefix.  If this option is non-nil, the original specification
-\(a timestamp or -range, or just a plain time(range) specification like
-11:30-4pm) will be removed for agenda display.  This makes the agenda less
-cluttered.
-The option can be t or nil.  It may also be the symbol `beg', indicating
-that the time should only be removed when it is located at the beginning of
-the headline/diary entry."
-  :group 'org-agenda-line-format
-  :type '(choice
-	  (const :tag "Always" t)
-	  (const :tag "Never" nil)
-	  (const :tag "When at beginning of entry" beg)))
-
-(defcustom org-agenda-remove-timeranges-from-blocks nil
-  "Non-nil means remove time ranges specifications in agenda
-items that span on several days."
-  :group 'org-agenda-line-format
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-default-appointment-duration nil
-  "Default duration for appointments that only have a starting time.
-When nil, no duration is specified in such cases.
-When non-nil, this must be the number of minutes, e.g. 60 for one hour."
-  :group 'org-agenda-line-format
-  :type '(choice
-	  (integer :tag "Minutes")
-	  (const :tag "No default duration")))
-
-(defcustom org-agenda-show-inherited-tags t
-  "Non-nil means show inherited tags in each agenda line.
-
-When this option is set to `always', it takes precedence over
-`org-agenda-use-tag-inheritance' and inherited tags are shown
-in every agenda.
-
-When this option is set to t (the default), inherited tags are
-shown when they are available, i.e. when the value of
-`org-agenda-use-tag-inheritance' enables tag inheritance for the
-given agenda type.
-
-This can be set to a list of agenda types in which the agenda
-must display the inherited tags.  Available types are `todo',
-`agenda' and `search'.
-
-When set to nil, never show inherited tags in agenda lines."
-  :group 'org-agenda-line-format
-  :group 'org-agenda
-  :version "24.3"
-  :type '(choice
-	  (const :tag "Show inherited tags when available" t)
-	  (const :tag "Always show inherited tags" always)
-	  (repeat :tag "Show inherited tags only in selected agenda types"
-		  (symbol :tag "Agenda type"))))
-
-(defcustom org-agenda-use-tag-inheritance '(todo search agenda)
-  "List of agenda view types where to use tag inheritance.
-
-In tags/tags-todo/tags-tree agenda views, tag inheritance is
-controlled by `org-use-tag-inheritance'.  In other agenda types,
-`org-use-tag-inheritance' is not used for the selection of the
-agenda entries.  Still, you may want the agenda to be aware of
-the inherited tags anyway, e.g. for later tag filtering.
-
-Allowed value are `todo', `search' and `agenda'.
-
-This variable has no effect if `org-agenda-show-inherited-tags'
-is set to `always'.  In that case, the agenda is aware of those
-tags.
-
-The default value sets tags in every agenda type.  Setting this
-option to nil will speed up non-tags agenda view a lot."
-  :group 'org-agenda
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type '(choice
-	  (const :tag "Use tag inheritance in all agenda types" t)
-	  (repeat :tag "Use tag inheritance in selected agenda types"
-		  (symbol :tag "Agenda type"))))
-
-(defcustom org-agenda-hide-tags-regexp nil
-  "Regular expression used to filter away specific tags in agenda views.
-This means that these tags will be present, but not be shown in the agenda
-line.  Secondary filtering will still work on the hidden tags.
-Nil means don't hide any tags."
-  :group 'org-agenda-line-format
-  :type '(choice
-	  (const  :tag "Hide none" nil)
-	  (string :tag "Regexp   ")))
-
-(defcustom org-agenda-remove-tags nil
-  "Non-nil means remove the tags from the headline copy in the agenda.
-When this is the symbol `prefix', only remove tags when
-`org-agenda-prefix-format' contains a `%T' specifier."
-  :group 'org-agenda-line-format
-  :type '(choice
-	  (const :tag "Always" t)
-	  (const :tag "Never" nil)
-	  (const :tag "When prefix format contains %T" prefix)))
-
-(defvaralias 'org-agenda-remove-tags-when-in-prefix
-  'org-agenda-remove-tags)
-
-(defcustom org-agenda-tags-column 'auto
-  "Shift tags in agenda items to this column.
-If set to `auto', tags will be automatically aligned to the right
-edge of the window.
-
-If set to a positive number, tags will be left-aligned to that
-column.  If set to a negative number, tags will be right-aligned
-to that column.  For example, -80 works well for a normal 80
-character screen."
-  :group 'org-agenda-line-format
-  :type '(choice
-	  (const :tag "Automatically align to right edge of window" auto)
-	  (integer :tag "Specific column" -80))
-  :package-version '(Org . "9.1")
-  :version "26.1")
-
-(defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column)
-
-(defcustom org-agenda-fontify-priorities 'cookies
-  "Non-nil means highlight low and high priorities in agenda.
-When t, the highest priority entries are bold, lowest priority italic.
-However, settings in `org-priority-faces' will overrule these faces.
-When this variable is the symbol `cookies', only fontify the
-cookies, not the entire task.
-This may also be an association list of priority faces, whose
-keys are the character values of `org-highest-priority',
-`org-default-priority', and `org-lowest-priority' (the default values
-are ?A, ?B, and ?C, respectively).  The face may be a named face, a
-color as a string, or a list like `(:background \"Red\")'.
-If it is a color, the variable `org-faces-easy-properties'
-determines if it is a foreground or a background color."
-  :group 'org-agenda-line-format
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "Defaults" t)
-	  (const :tag "Cookies only" cookies)
-	  (repeat :tag "Specify"
-		  (list (character :tag "Priority" :value ?A)
-			(choice    :tag "Face    "
-				   (string :tag "Color")
-				   (sexp :tag "Face"))))))
-
-(defcustom org-agenda-day-face-function nil
-  "Function called to determine what face should be used to display a day.
-The only argument passed to that function is the day.  It should
-returns a face, or nil if does not want to specify a face and let
-the normal rules apply."
-  :group 'org-agenda-line-format
-  :version "24.1"
-  :type '(choice (const nil) (function)))
-
-(defcustom org-agenda-category-icon-alist nil
-  "Alist of category icon to be displayed in agenda views.
-
-Each entry should have the following format:
-
-  (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
-
-Where CATEGORY-REGEXP is a regexp matching the categories where
-the icon should be displayed.
-FILE-OR-DATA either a file path or a string containing image data.
-
-The other fields can be omitted safely if not needed:
-TYPE indicates the image type.
-DATA-P is a boolean indicating whether the FILE-OR-DATA string is
-image data.
-PROPS are additional image attributes to assign to the image,
-like, e.g. `:ascent center'.
-
-   (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
-
-If you want to set the display properties yourself, just put a
-list as second element:
-
-  (CATEGORY-REGEXP (MY PROPERTY LIST))
-
-For example, to display a 16px horizontal space for Emacs
-category, you can use:
-
-  (\"Emacs\" \\='(space . (:width (16))))"
-  :group 'org-agenda-line-format
-  :version "24.1"
-  :type '(alist :key-type (string :tag "Regexp matching category")
-		:value-type (choice (list :tag "Icon"
-					  (string :tag "File or data")
-					  (symbol :tag "Type")
-					  (boolean :tag "Data?")
-					  (repeat :tag "Extra image properties" :inline t symbol))
-				    (list :tag "Display properties" sexp))))
-
-(defgroup org-agenda-column-view nil
-  "Options concerning column view in the agenda."
-  :tag "Org Agenda Column View"
-  :group 'org-agenda)
-
-(defcustom org-agenda-view-columns-initially nil
-  "When non-nil, switch to columns view right after creating the agenda."
-  :group 'org-agenda-column-view
-  :type 'boolean
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :safe #'booleanp)
-
-(defcustom org-agenda-columns-show-summaries t
-  "Non-nil means show summaries for columns displayed in the agenda view."
-  :group 'org-agenda-column-view
-  :type 'boolean)
-
-(defcustom org-agenda-columns-compute-summary-properties t
-  "Non-nil means recompute all summary properties before column view.
-When column view in the agenda is listing properties that have a summary
-operator, it can go to all relevant buffers and recompute the summaries
-there.  This can mean overhead for the agenda column view, but is necessary
-to have thing up to date.
-As a special case, a CLOCKSUM property also makes sure that the clock
-computations are current."
-  :group 'org-agenda-column-view
-  :type 'boolean)
-
-(defcustom org-agenda-columns-add-appointments-to-effort-sum nil
-  "Non-nil means the duration of an appointment will add to day effort.
-The property to which appointment durations will be added is the one given
-in the option `org-effort-property'.  If an appointment does not have
-an end time, `org-agenda-default-appointment-duration' will be used.  If that
-is not set, an appointment without end time will not contribute to the time
-estimate."
-  :group 'org-agenda-column-view
-  :type 'boolean)
-
-(defcustom org-agenda-auto-exclude-function nil
-  "A function called with a tag to decide if it is filtered on \
-\\<org-agenda-mode-map>`\\[org-agenda-filter-by-tag] RET'.
-The sole argument to the function, which is called once for each
-possible tag, is a string giving the name of the tag.  The
-function should return either nil if the tag should be included
-as normal, or \"-<TAG>\" to exclude the tag.
-Note that for the purpose of tag filtering, only the lower-case version of
-all tags will be considered, so that this function will only ever see
-the lower-case version of all tags."
-  :group 'org-agenda
-  :type '(choice (const nil) (function)))
-
-(defcustom org-agenda-bulk-custom-functions nil
-  "Alist of characters and custom functions for bulk actions.
-For example, this value makes those two functions available:
-
-  \\='((?R set-category)
-    (?C bulk-cut))
-
-With selected entries in an agenda buffer, `B R' will call
-the custom function `set-category' on the selected entries.
-Note that functions in this alist don't need to be quoted."
-  :type '(alist :key-type character :value-type (group function))
-  :version "24.1"
-  :group 'org-agenda)
-
-(defmacro org-agenda-with-point-at-orig-entry (string &rest body)
-  "Execute BODY with point at location given by `org-hd-marker' property.
-If STRING is non-nil, the text property will be fetched from position 0
-in that string.  If STRING is nil, it will be fetched from the beginning
-of the current line."
-  (org-with-gensyms (marker)
-    `(let ((,marker (get-text-property (if ,string 0 (point-at-bol))
-				       'org-hd-marker ,string)))
-       (with-current-buffer (marker-buffer ,marker)
-	 (save-excursion
-	   (goto-char ,marker)
-	   ,@body)))))
-(def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
-
-(defun org-add-agenda-custom-command (entry)
-  "Replace or add a command in `org-agenda-custom-commands'.
-This is mostly for hacking and trying a new command - once the command
-works you probably want to add it to `org-agenda-custom-commands' for good."
-  (let ((ass (assoc (car entry) org-agenda-custom-commands)))
-    (if ass
-	(setcdr ass (cdr entry))
-      (push entry org-agenda-custom-commands))))
-
-;;; Define the org-agenda-mode
-
-(defvar org-agenda-mode-map (make-sparse-keymap)
-  "Keymap for `org-agenda-mode'.")
-(defvaralias 'org-agenda-keymap 'org-agenda-mode-map)
-
-(defvar org-agenda-menu) ; defined later in this file.
-(defvar org-agenda-restrict nil) ; defined later in this file.
-(defvar org-agenda-follow-mode nil)
-(defvar org-agenda-entry-text-mode nil)
-(defvar org-agenda-clockreport-mode nil)
-(defvar org-agenda-show-log nil
-  "When non-nil, show the log in the agenda.
-Do not set this directly; instead use
-`org-agenda-start-with-log-mode', which see.")
-(defvar org-agenda-redo-command nil)
-(defvar org-agenda-query-string nil)
-(defvar org-agenda-mode-hook nil
-  "Hook run after `org-agenda-mode' is turned on.
-The buffer is still writable when this hook is called.")
-(defvar org-agenda-type nil)
-(defvar org-agenda-force-single-file nil)
-(defvar org-agenda-bulk-marked-entries nil
-  "List of markers that refer to marked entries in the agenda.")
-(defvar org-agenda-current-date nil
-  "Active date when building the agenda.")
-
-;;; Multiple agenda buffers support
-
-(defcustom org-agenda-sticky nil
-  "Non-nil means agenda q key will bury agenda buffers.
-Agenda commands will then show existing buffer instead of generating new ones.
-When nil, `q' will kill the single agenda buffer."
-  :group 'org-agenda
-  :version "24.3"
-  :type 'boolean)
-
-
-;;;###autoload
-(defun org-toggle-sticky-agenda (&optional arg)
-  "Toggle `org-agenda-sticky'."
-  (interactive "P")
-  (let ((new-value (if arg
-		       (> (prefix-numeric-value arg) 0)
-		     (not org-agenda-sticky))))
-    (if (equal new-value org-agenda-sticky)
-	(and (called-interactively-p 'interactive)
-	     (message "Sticky agenda was already %s"
-		      (if org-agenda-sticky "enabled" "disabled")))
-      (setq org-agenda-sticky new-value)
-      (org-agenda-kill-all-agenda-buffers)
-      (and (called-interactively-p 'interactive)
-	   (message "Sticky agenda %s"
-		    (if org-agenda-sticky "enabled" "disabled"))))))
-
-(defvar org-agenda-buffer nil
-  "Agenda buffer currently being generated.")
-
-(defvar org-agenda-last-prefix-arg nil)
-(defvar org-agenda-this-buffer-name nil)
-(defvar org-agenda-doing-sticky-redo nil)
-(defvar org-agenda-this-buffer-is-sticky nil)
-(defvar org-agenda-last-indirect-buffer nil
-  "Last buffer loaded by `org-agenda-tree-to-indirect-buffer'.")
-
-(defconst org-agenda-local-vars
-  '(org-agenda-this-buffer-name
-    org-agenda-undo-list
-    org-agenda-pending-undo-list
-    org-agenda-follow-mode
-    org-agenda-entry-text-mode
-    org-agenda-clockreport-mode
-    org-agenda-show-log
-    org-agenda-redo-command
-    org-agenda-query-string
-    org-agenda-type
-    org-agenda-bulk-marked-entries
-    org-agenda-undo-has-started-in
-    org-agenda-info
-    org-agenda-pre-window-conf
-    org-agenda-columns-active
-    org-agenda-tag-filter
-    org-agenda-category-filter
-    org-agenda-top-headline-filter
-    org-agenda-regexp-filter
-    org-agenda-effort-filter
-    org-agenda-markers
-    org-agenda-last-search-view-search-was-boolean
-    org-agenda-last-indirect-buffer
-    org-agenda-filtered-by-category
-    org-agenda-filter-form
-    org-agenda-cycle-counter
-    org-agenda-last-prefix-arg)
-  "Variables that must be local in agenda buffers to allow multiple buffers.")
-
-(defun org-agenda-mode ()
-  "Mode for time-sorted view on action items in Org files.
-
-The following commands are available:
-
-\\{org-agenda-mode-map}"
-  (interactive)
-  (cond (org-agenda-doing-sticky-redo
-	 ;; Refreshing sticky agenda-buffer
-	 ;;
-	 ;; Preserve the value of `org-agenda-local-vars' variables,
-	 ;; while letting `kill-all-local-variables' kill the rest
-	 (let ((save (buffer-local-variables)))
-	   (kill-all-local-variables)
-	   (mapc #'make-local-variable org-agenda-local-vars)
-	   (dolist (elem save)
-	     (pcase elem
-	       (`(,var . ,val)		;ignore unbound variables
-		(when (and val (memq var org-agenda-local-vars))
-		  (set var val))))))
-	 (setq-local org-agenda-this-buffer-is-sticky t))
-	(org-agenda-sticky
-	 ;; Creating a sticky Agenda buffer for the first time
-	 (kill-all-local-variables)
-	 (mapc 'make-local-variable org-agenda-local-vars)
-	 (setq-local org-agenda-this-buffer-is-sticky t))
-	(t
-	 ;; Creating a non-sticky agenda buffer
-	 (kill-all-local-variables)
-	 (setq-local org-agenda-this-buffer-is-sticky nil)))
-  (setq org-agenda-undo-list nil
-	org-agenda-pending-undo-list nil
-	org-agenda-bulk-marked-entries nil)
-  (setq major-mode 'org-agenda-mode)
-  ;; Keep global-font-lock-mode from turning on font-lock-mode
-  (setq-local font-lock-global-modes (list 'not major-mode))
-  (setq mode-name "Org-Agenda")
-  (setq indent-tabs-mode nil)
-  (use-local-map org-agenda-mode-map)
-  (easy-menu-add org-agenda-menu)
-  (if org-startup-truncated (setq truncate-lines t))
-  (setq-local line-move-visual nil)
-  (add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
-  (add-hook 'pre-command-hook 'org-unhighlight nil 'local)
-  ;; Make sure properties are removed when copying text
-  (add-hook 'filter-buffer-substring-functions
-	    (lambda (fun start end delete)
-	      (substring-no-properties (funcall fun start end delete)))
-	    nil t)
-  (unless org-agenda-keep-modes
-    (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
-	  org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
-	  org-agenda-show-log org-agenda-start-with-log-mode
-	  org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode))
-  (add-to-invisibility-spec '(org-filtered))
-  (add-to-invisibility-spec '(org-link))
-  (easy-menu-change
-   '("Agenda") "Agenda Files"
-   (append
-    (list
-     (vector
-      (if (get 'org-agenda-files 'org-restrict)
-	  "Restricted to single file"
-	"Edit File List")
-      '(org-edit-agenda-file-list)
-      (not (get 'org-agenda-files 'org-restrict)))
-     "--")
-    (mapcar 'org-file-menu-entry (org-agenda-files))))
-  (org-agenda-set-mode-name)
-  (apply
-   (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
-   (list 'org-agenda-mode-hook)))
-
-(substitute-key-definition 'undo 'org-agenda-undo
-			   org-agenda-mode-map global-map)
-(org-defkey org-agenda-mode-map "\C-i"     'org-agenda-goto)
-(org-defkey org-agenda-mode-map [(tab)]    'org-agenda-goto)
-(org-defkey org-agenda-mode-map "\C-m"     'org-agenda-switch-to)
-(org-defkey org-agenda-mode-map "\C-k"     'org-agenda-kill)
-(org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
-(org-defkey org-agenda-mode-map [(meta down)] 'org-agenda-drag-line-forward)
-(org-defkey org-agenda-mode-map [(meta up)] 'org-agenda-drag-line-backward)
-(org-defkey org-agenda-mode-map "m"        'org-agenda-bulk-mark)
-(org-defkey org-agenda-mode-map "\M-m"     'org-agenda-bulk-toggle)
-(org-defkey org-agenda-mode-map "*"        'org-agenda-bulk-mark-all)
-(org-defkey org-agenda-mode-map "\M-*"     'org-agenda-bulk-toggle-all)
-(org-defkey org-agenda-mode-map "#"        'org-agenda-dim-blocked-tasks)
-(org-defkey org-agenda-mode-map "%"        'org-agenda-bulk-mark-regexp)
-(org-defkey org-agenda-mode-map "u"        'org-agenda-bulk-unmark)
-(org-defkey org-agenda-mode-map "U"        'org-agenda-bulk-unmark-all)
-(org-defkey org-agenda-mode-map "B"        'org-agenda-bulk-action)
-(org-defkey org-agenda-mode-map "k"        'org-agenda-capture)
-(org-defkey org-agenda-mode-map "A"        'org-agenda-append-agenda)
-(org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
-(org-defkey org-agenda-mode-map "\C-c\C-xa"    'org-agenda-toggle-archive-tag)
-(org-defkey org-agenda-mode-map "\C-c\C-xA"    'org-agenda-archive-to-archive-sibling)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
-(org-defkey org-agenda-mode-map "\C-c$"        'org-agenda-archive)
-(org-defkey org-agenda-mode-map "$"        'org-agenda-archive)
-(org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
-(org-defkey org-agenda-mode-map " "        'org-agenda-show-and-scroll-up)
-(org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
-(org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
-(org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
-(org-defkey org-agenda-mode-map [(control shift left)]  'org-agenda-todo-previousset)
-(org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
-(org-defkey org-agenda-mode-map "o"        'delete-other-windows)
-(org-defkey org-agenda-mode-map "L"        'org-agenda-recenter)
-(org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
-(org-defkey org-agenda-mode-map "t"        'org-agenda-todo)
-(org-defkey org-agenda-mode-map "a"        'org-agenda-archive-default-with-confirmation)
-(org-defkey org-agenda-mode-map ":"        'org-agenda-set-tags)
-(org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
-(org-defkey org-agenda-mode-map "."        'org-agenda-goto-today)
-(org-defkey org-agenda-mode-map "j"        'org-agenda-goto-date)
-(org-defkey org-agenda-mode-map "d"        'org-agenda-day-view)
-(org-defkey org-agenda-mode-map "w"        'org-agenda-week-view)
-(org-defkey org-agenda-mode-map "y"        'org-agenda-year-view)
-(org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
-(org-defkey org-agenda-mode-map "z"        'org-agenda-add-note)
-(org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
-(org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
-(org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
-(org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
-
-(org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
-(org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
-(org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
-(let ((l '(1 2 3 4 5 6 7 8 9 0)))
-  (while l (org-defkey org-agenda-mode-map
-		       (int-to-string (pop l)) 'digit-argument)))
-
-(org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
-(org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
-(org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
-(org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
-(org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
-(org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
-(org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
-(org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
-(org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
-(org-defkey org-agenda-mode-map "g" 'org-agenda-redo-all)
-(org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
-(org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
-	    'org-clock-modify-effort-estimate)
-(org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
-(org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
-(org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
-(org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
-(org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
-(org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
-(org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
-(org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
-(org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
-(org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
-(org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
-(org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
-(substitute-key-definition 'next-line 'org-agenda-next-line
-			   org-agenda-mode-map global-map)
-(substitute-key-definition 'previous-line 'org-agenda-previous-line
-			   org-agenda-mode-map global-map)
-(org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
-(org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
-(org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
-(org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
-(org-defkey org-agenda-mode-map "," 'org-agenda-priority)
-(org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
-(org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
-(org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
-(org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
-(org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
-(org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
-(org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
-(org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
-(org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
-(org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
-(org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
-(org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
-(org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
-(org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
-(org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
-(org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
-(org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
-(org-defkey org-agenda-mode-map "f" 'org-agenda-later)
-(org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
-(org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
-(org-defkey org-agenda-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock-from-agenda)
-
-(org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
-(org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
-(org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
-(org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
-(org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
-(org-defkey org-agenda-mode-map "_" 'org-agenda-filter-by-effort)
-(org-defkey org-agenda-mode-map "=" 'org-agenda-filter-by-regexp)
-(org-defkey org-agenda-mode-map "|" 'org-agenda-filter-remove-all)
-(org-defkey org-agenda-mode-map "~" 'org-agenda-limit-interactively)
-(org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
-(org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-headline)
-(org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
-(org-defkey org-agenda-mode-map "\C-c\C-x_" 'org-timer-stop)
-(define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-mg"    'org-mobile-pull)
-(org-defkey org-agenda-mode-map "\C-c\C-x\C-mp"    'org-mobile-push)
-
-(org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
-(org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
-
-(define-key org-agenda-mode-map [remap forward-paragraph] 'org-agenda-forward-block)
-(define-key org-agenda-mode-map [remap backward-paragraph] 'org-agenda-backward-block)
-
-(when org-agenda-mouse-1-follows-link
-  (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
-(easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
-  '("Agenda"
-    ("Agenda Files")
-    "--"
-    ("Agenda Dates"
-     ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda)]
-     ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
-     ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
-     ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
-    "--"
-    ("View"
-     ["Day View" org-agenda-day-view
-      :active (org-agenda-check-type nil 'agenda)
-      :style radio :selected (eq org-agenda-current-span 'day)
-      :keys "v d  (or just d)"]
-     ["Week View" org-agenda-week-view
-      :active (org-agenda-check-type nil 'agenda)
-      :style radio :selected (eq org-agenda-current-span 'week)
-      :keys "v w"]
-     ["Fortnight View" org-agenda-fortnight-view
-      :active (org-agenda-check-type nil 'agenda)
-      :style radio :selected (eq org-agenda-current-span 'fortnight)
-      :keys "v t"]
-     ["Month View" org-agenda-month-view
-      :active (org-agenda-check-type nil 'agenda)
-      :style radio :selected (eq org-agenda-current-span 'month)
-      :keys "v m"]
-     ["Year View" org-agenda-year-view
-      :active (org-agenda-check-type nil 'agenda)
-      :style radio :selected (eq org-agenda-current-span 'year)
-      :keys "v y"]
-     "--"
-     ["Include Diary" org-agenda-toggle-diary
-      :style toggle :selected org-agenda-include-diary
-      :active (org-agenda-check-type nil 'agenda)]
-     ["Include Deadlines" org-agenda-toggle-deadlines
-      :style toggle :selected org-agenda-include-deadlines
-      :active (org-agenda-check-type nil 'agenda)]
-     ["Use Time Grid" org-agenda-toggle-time-grid
-      :style toggle :selected org-agenda-use-time-grid
-      :active (org-agenda-check-type nil 'agenda)]
-     "--"
-     ["Show clock report" org-agenda-clockreport-mode
-      :style toggle :selected org-agenda-clockreport-mode
-      :active (org-agenda-check-type nil 'agenda)]
-     ["Show some entry text" org-agenda-entry-text-mode
-      :style toggle :selected org-agenda-entry-text-mode
-      :active t]
-     "--"
-     ["Show Logbook entries" org-agenda-log-mode
-      :style toggle :selected org-agenda-show-log
-      :active (org-agenda-check-type nil 'agenda)
-      :keys "v l (or just l)"]
-     ["Include archived trees" org-agenda-archives-mode
-      :style toggle :selected org-agenda-archives-mode :active t
-      :keys "v a"]
-     ["Include archive files" (org-agenda-archives-mode t)
-      :style toggle :selected (eq org-agenda-archives-mode t) :active t
-      :keys "v A"]
-     "--"
-     ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
-    ["Write view to file" org-agenda-write t]
-    ["Rebuild buffer" org-agenda-redo t]
-    ["Save all Org buffers" org-save-all-org-buffers t]
-    "--"
-    ["Show original entry" org-agenda-show t]
-    ["Go To (other window)" org-agenda-goto t]
-    ["Go To (this window)" org-agenda-switch-to t]
-    ["Capture with cursor date" org-agenda-capture t]
-    ["Follow Mode" org-agenda-follow-mode
-     :style toggle :selected org-agenda-follow-mode :active t]
-    ;;    ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
-    "--"
-    ("TODO"
-     ["Cycle TODO" org-agenda-todo t]
-     ["Next TODO set" org-agenda-todo-nextset t]
-     ["Previous TODO set" org-agenda-todo-previousset t]
-     ["Add note" org-agenda-add-note t])
-    ("Archive/Refile/Delete"
-     ["Archive default" org-agenda-archive-default t]
-     ["Archive default" org-agenda-archive-default-with-confirmation t]
-     ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
-     ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
-     ["Archive subtree" org-agenda-archive t]
-     "--"
-     ["Refile" org-agenda-refile t]
-     "--"
-     ["Delete subtree" org-agenda-kill t])
-    ("Bulk action"
-     ["Mark entry" org-agenda-bulk-mark t]
-     ["Mark all" org-agenda-bulk-mark-all t]
-     ["Unmark entry" org-agenda-bulk-unmark t]
-     ["Unmark all" org-agenda-bulk-unmark-all :active t :keys "U"]
-     ["Toggle mark" org-agenda-bulk-toggle t]
-     ["Toggle all" org-agenda-bulk-toggle-all t]
-     ["Mark regexp" org-agenda-bulk-mark-regexp t])
-    ["Act on all marked" org-agenda-bulk-action t]
-    "--"
-    ("Tags and Properties"
-     ["Show all Tags" org-agenda-show-tags t]
-     ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
-     ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
-     "--"
-     ["Column View" org-columns t])
-    ("Deadline/Schedule"
-     ["Schedule" org-agenda-schedule t]
-     ["Set Deadline" org-agenda-deadline t]
-     "--"
-     ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda)]
-     ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda)]
-     ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u S-right"]
-     ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u S-left"]
-     ["Change Time +  min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-right"]
-     ["Change Time -  min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda) :keys "C-u C-u S-left"]
-     ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda)])
-    ("Clock and Effort"
-     ["Clock in" org-agenda-clock-in t]
-     ["Clock out" org-agenda-clock-out t]
-     ["Clock cancel" org-agenda-clock-cancel t]
-     ["Goto running clock" org-clock-goto t]
-     "--"
-     ["Set Effort" org-agenda-set-effort t]
-     ["Change clocked effort" org-clock-modify-effort-estimate
-      (org-clock-is-active)])
-    ("Priority"
-     ["Set Priority" org-agenda-priority t]
-     ["Increase Priority" org-agenda-priority-up t]
-     ["Decrease Priority" org-agenda-priority-down t]
-     ["Show Priority" org-show-priority t])
-    ("Calendar/Diary"
-     ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda)]
-     ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda)]
-     ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda)]
-     ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda)]
-     ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda)]
-     ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda)]
-     "--"
-     ["Create iCalendar File" org-icalendar-combine-agenda-files t])
-    "--"
-    ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
-    "--"
-    ("MobileOrg"
-     ["Push Files and Views" org-mobile-push t]
-     ["Get Captured and Flagged" org-mobile-pull t]
-     ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
-     ["Show note / unflag" org-agenda-show-the-flagging-note t]
-     "--"
-     ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
-    "--"
-    ["Quit" org-agenda-quit t]
-    ["Exit and Release Buffers" org-agenda-exit t]
-    ))
-
-;;; Agenda undo
-
-(defvar org-agenda-allow-remote-undo t
-  "Non-nil means allow remote undo from the agenda buffer.")
-(defvar org-agenda-undo-has-started-in nil
-  "Buffers that have already seen `undo-start' in the current undo sequence.")
-
-(defun org-agenda-undo ()
-  "Undo a remote editing step in the agenda.
-This undoes changes both in the agenda buffer and in the remote buffer
-that have been changed along."
-  (interactive)
-  (or org-agenda-allow-remote-undo
-      (user-error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
-  (if (not (eq this-command last-command))
-      (setq org-agenda-undo-has-started-in nil
-	    org-agenda-pending-undo-list org-agenda-undo-list))
-  (if (not org-agenda-pending-undo-list)
-      (user-error "No further undo information"))
-  (let* ((entry (pop org-agenda-pending-undo-list))
-	 buf line cmd rembuf)
-    (setq cmd (pop entry) line (pop entry))
-    (setq rembuf (nth 2 entry))
-    (org-with-remote-undo rembuf
-      (while (bufferp (setq buf (pop entry)))
-	(if (pop entry)
-	    (with-current-buffer buf
-	      (let ((last-undo-buffer buf)
-                    (inhibit-read-only t))
-		(unless (memq buf org-agenda-undo-has-started-in)
-		  (push buf org-agenda-undo-has-started-in)
-		  (make-local-variable 'pending-undo-list)
-		  (undo-start))
-		(while (and pending-undo-list
-			    (listp pending-undo-list)
-			    (not (car pending-undo-list)))
-		  (pop pending-undo-list))
-		(undo-more 1))))))
-    (org-goto-line line)
-    (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
-
-(defun org-verify-change-for-undo (l1 l2)
-  "Verify that a real change occurred between the undo lists L1 and L2."
-  (while (and l1 (listp l1) (null (car l1))) (pop l1))
-  (while (and l2 (listp l2) (null (car l2))) (pop l2))
-  (not (eq l1 l2)))
-
-;;; Agenda dispatch
-
-(defvar org-agenda-restrict-begin (make-marker))
-(defvar org-agenda-restrict-end (make-marker))
-(defvar org-agenda-last-dispatch-buffer nil)
-(defvar org-agenda-overriding-restriction nil)
-
-(defcustom org-agenda-custom-commands-contexts nil
-  "Alist of custom agenda keys and contextual rules.
-
-For example, if you have a custom agenda command \"p\" and you
-want this command to be accessible only from plain text files,
-use this:
-
-   \\='((\"p\" ((in-file . \"\\\\.txt\\\\'\"))))
-
-Here are the available contexts definitions:
-
-      in-file: command displayed only in matching files
-      in-mode: command displayed only in matching modes
-  not-in-file: command not displayed in matching files
-  not-in-mode: command not displayed in matching modes
-    in-buffer: command displayed only in matching buffers
-not-in-buffer: command not displayed in matching buffers
-   [function]: a custom function taking no argument
-
-If you define several checks, the agenda command will be
-accessible if there is at least one valid check.
-
-You can also bind a key to another agenda custom command
-depending on contextual rules.
-
-    \\='((\"p\" \"q\" ((in-file . \"\\\\.txt\\\\'\"))))
-
-Here it means: in .txt files, use \"p\" as the key for the
-agenda command otherwise associated with \"q\".  (The command
-originally associated with \"q\" is not displayed to avoid
-duplicates.)"
-  :version "24.3"
-  :group 'org-agenda-custom-commands
-  :type '(repeat (list :tag "Rule"
-		       (string :tag "        Agenda key")
-		       (string :tag "Replace by command")
-		       (repeat :tag "Available when"
-			       (choice
-				(cons :tag "Condition"
-				      (choice
-				       (const :tag "In file" in-file)
-				       (const :tag "Not in file" not-in-file)
-				       (const :tag "In buffer" in-buffer)
-				       (const :tag "Not in buffer" not-in-buffer)
-				       (const :tag "In mode" in-mode)
-				       (const :tag "Not in mode" not-in-mode))
-				      (regexp))
-				(function :tag "Custom function"))))))
-
-(defcustom org-agenda-max-entries nil
-  "Maximum number of entries to display in an agenda.
-This can be nil (no limit) or an integer or an alist of agenda
-types with an associated number of entries to display in this
-type."
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :group 'org-agenda-custom-commands
-  :type '(choice (symbol :tag "No limit" nil)
-		 (integer :tag "Max number of entries")
-		 (repeat
-		  (cons (choice :tag "Agenda type"
-				(const agenda)
-				(const todo)
-				(const tags)
-				(const search))
-			(integer :tag "Max number of entries")))))
-
-(defcustom org-agenda-max-todos nil
-  "Maximum number of TODOs to display in an agenda.
-This can be nil (no limit) or an integer or an alist of agenda
-types with an associated number of entries to display in this
-type."
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :group 'org-agenda-custom-commands
-  :type '(choice (symbol :tag "No limit" nil)
-		 (integer :tag "Max number of TODOs")
-		 (repeat
-		  (cons (choice :tag "Agenda type"
-				(const agenda)
-				(const todo)
-				(const tags)
-				(const search))
-			(integer :tag "Max number of TODOs")))))
-
-(defcustom org-agenda-max-tags nil
-  "Maximum number of tagged entries to display in an agenda.
-This can be nil (no limit) or an integer or an alist of agenda
-types with an associated number of entries to display in this
-type."
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :group 'org-agenda-custom-commands
-  :type '(choice (symbol :tag "No limit" nil)
-		 (integer :tag "Max number of tagged entries")
-		 (repeat
-		  (cons (choice :tag "Agenda type"
-				(const agenda)
-				(const todo)
-				(const tags)
-				(const search))
-			(integer :tag "Max number of tagged entries")))))
-
-(defcustom org-agenda-max-effort nil
-  "Maximum cumulated effort duration for the agenda.
-This can be nil (no limit) or a number of minutes (as an integer)
-or an alist of agenda types with an associated number of minutes
-to limit entries to in this type."
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :group 'org-agenda-custom-commands
-  :type '(choice (symbol :tag "No limit" nil)
-		 (integer :tag "Max number of minutes")
-		 (repeat
-		  (cons (choice :tag "Agenda type"
-				(const agenda)
-				(const todo)
-				(const tags)
-				(const search))
-			(integer :tag "Max number of minutes")))))
-
-(defvar org-agenda-keep-restricted-file-list nil)
-(defvar org-keys nil)
-(defvar org-match nil)
-;;;###autoload
-(defun org-agenda (&optional arg org-keys restriction)
-  "Dispatch agenda commands to collect entries to the agenda buffer.
-Prompts for a command to execute.  Any prefix arg will be passed
-on to the selected command.  The default selections are:
-
-a     Call `org-agenda-list' to display the agenda for current day or week.
-t     Call `org-todo-list' to display the global todo list.
-T     Call `org-todo-list' to display the global todo list, select only
-      entries with a specific TODO keyword (the user gets a prompt).
-m     Call `org-tags-view' to display headlines with tags matching
-      a condition  (the user is prompted for the condition).
-M     Like `m', but select only TODO entries, no ordinary headlines.
-e     Export views to associated files.
-s     Search entries for keywords.
-S     Search entries for keywords, only with TODO keywords.
-/     Multi occur across all agenda files and also files listed
-      in `org-agenda-text-search-extra-files'.
-<     Restrict agenda commands to buffer, subtree, or region.
-      Press several times to get the desired effect.
->     Remove a previous restriction.
-#     List \"stuck\" projects.
-!     Configure what \"stuck\" means.
-C     Configure custom agenda commands.
-
-More commands can be added by configuring the variable
-`org-agenda-custom-commands'.  In particular, specific tags and TODO keyword
-searches can be pre-defined in this way.
-
-If the current buffer is in Org mode and visiting a file, you can also
-first press `<' once to indicate that the agenda should be temporarily
-\(until the next use of `\\[org-agenda]') restricted to the current file.
-Pressing `<' twice means to restrict to the current subtree or region
-\(if active)."
-  (interactive "P")
-  (catch 'exit
-    (let* ((prefix-descriptions nil)
-	   (org-agenda-buffer-name org-agenda-buffer-name)
-	   (org-agenda-window-setup (if (equal (buffer-name)
-					       org-agenda-buffer-name)
-					'current-window
-				      org-agenda-window-setup))
-	   (org-agenda-custom-commands-orig org-agenda-custom-commands)
-	   (org-agenda-custom-commands
-	    ;; normalize different versions
-	    (delq nil
-		  (mapcar
-		   (lambda (x)
-		     (cond ((stringp (cdr x))
-			    (push x prefix-descriptions)
-			    nil)
-			   ((stringp (nth 1 x)) x)
-			   ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
-			   (t (cons (car x) (cons "" (cdr x))))))
-		   org-agenda-custom-commands)))
-	   (org-agenda-custom-commands
-	    (org-contextualize-keys
-	     org-agenda-custom-commands org-agenda-custom-commands-contexts))
-	   (buf (current-buffer))
-	   (bfn (buffer-file-name (buffer-base-buffer)))
-	   entry key type org-match lprops ans)
-      ;; Turn off restriction unless there is an overriding one,
-      (unless org-agenda-overriding-restriction
-	(unless org-agenda-keep-restricted-file-list
-	  ;; There is a request to keep the file list in place
-	  (put 'org-agenda-files 'org-restrict nil))
-	(setq org-agenda-restrict nil)
-	(move-marker org-agenda-restrict-begin nil)
-	(move-marker org-agenda-restrict-end nil))
-      ;; Delete old local properties
-      (put 'org-agenda-redo-command 'org-lprops nil)
-      ;; Delete previously set last-arguments
-      (put 'org-agenda-redo-command 'last-args nil)
-      ;; Remember where this call originated
-      (setq org-agenda-last-dispatch-buffer (current-buffer))
-      (unless org-keys
-	(setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
-	      org-keys (car ans)
-	      restriction (cdr ans)))
-      ;; If we have sticky agenda buffers, set a name for the buffer,
-      ;; depending on the invoking keys.  The user may still set this
-      ;; as a command option, which will overwrite what we do here.
-      (if org-agenda-sticky
-	  (setq org-agenda-buffer-name
-		(format "*Org Agenda(%s)*" org-keys)))
-      ;; Establish the restriction, if any
-      (when (and (not org-agenda-overriding-restriction) restriction)
-	(put 'org-agenda-files 'org-restrict (list bfn))
-	(cond
-	 ((eq restriction 'region)
-	  (setq org-agenda-restrict (current-buffer))
-	  (move-marker org-agenda-restrict-begin (region-beginning))
-	  (move-marker org-agenda-restrict-end (region-end)))
-	 ((eq restriction 'subtree)
-	  (save-excursion
-	    (setq org-agenda-restrict (current-buffer))
-	    (org-back-to-heading t)
-	    (move-marker org-agenda-restrict-begin (point))
-	    (move-marker org-agenda-restrict-end
-			 (progn (org-end-of-subtree t)))))))
-
-      ;; For example the todo list should not need it (but does...)
-      (cond
-       ((setq entry (assoc org-keys org-agenda-custom-commands))
-	(if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
-	    (progn
-	      (setq type (nth 2 entry) org-match (eval (nth 3 entry))
-		    lprops (nth 4 entry))
-	      (if org-agenda-sticky
-		  (setq org-agenda-buffer-name
-			(or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
-			    (format "*Org Agenda(%s)*" org-keys))))
-	      (put 'org-agenda-redo-command 'org-lprops lprops)
-	      (cond
-	       ((eq type 'agenda)
-		(org-let lprops '(org-agenda-list current-prefix-arg)))
-	       ((eq type 'agenda*)
-		(org-let lprops '(org-agenda-list current-prefix-arg nil nil t)))
-	       ((eq type 'alltodo)
-		(org-let lprops '(org-todo-list current-prefix-arg)))
-	       ((eq type 'search)
-		(org-let lprops '(org-search-view current-prefix-arg org-match nil)))
-	       ((eq type 'stuck)
-		(org-let lprops '(org-agenda-list-stuck-projects
-				  current-prefix-arg)))
-	       ((eq type 'tags)
-		(org-let lprops '(org-tags-view current-prefix-arg org-match)))
-	       ((eq type 'tags-todo)
-		(org-let lprops '(org-tags-view '(4) org-match)))
-	       ((eq type 'todo)
-		(org-let lprops '(org-todo-list org-match)))
-	       ((eq type 'tags-tree)
-		(org-check-for-org-mode)
-		(org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
-	       ((eq type 'todo-tree)
-		(org-check-for-org-mode)
-		(org-let lprops
-		  '(org-occur (concat "^" org-outline-regexp "[ \t]*"
-				      (regexp-quote org-match) "\\>"))))
-	       ((eq type 'occur-tree)
-		(org-check-for-org-mode)
-		(org-let lprops '(org-occur org-match)))
-	       ((functionp type)
-		(org-let lprops '(funcall type org-match)))
-	       ((fboundp type)
-		(org-let lprops '(funcall type org-match)))
-	       (t (user-error "Invalid custom agenda command type %s" type))))
-	  (org-agenda-run-series (nth 1 entry) (cddr entry))))
-       ((equal org-keys "C")
-	(setq org-agenda-custom-commands org-agenda-custom-commands-orig)
-	(customize-variable 'org-agenda-custom-commands))
-       ((equal org-keys "a") (call-interactively 'org-agenda-list))
-       ((equal org-keys "s") (call-interactively 'org-search-view))
-       ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
-       ((equal org-keys "t") (call-interactively 'org-todo-list))
-       ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
-       ((equal org-keys "m") (call-interactively 'org-tags-view))
-       ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
-       ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
-       ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
-	(add-hook
-	 'post-command-hook
-	 (lambda ()
-	   (unless (current-message)
-	     (let* ((m (org-agenda-get-any-marker))
-		    (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
-	       (when note
-		 (message (concat
-			   "FLAGGING-NOTE ([?] for more info): "
-			   (org-add-props
-			       (replace-regexp-in-string
-				"\\\\n" "//"
-				(copy-sequence note))
-			       nil 'face 'org-warning)))))))
-	 t t))
-       ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
-       ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
-       ((equal org-keys "!") (customize-variable 'org-stuck-projects))
-       (t (user-error "Invalid agenda key"))))))
-
-(defvar org-agenda-multi)
-
-(defun org-agenda-append-agenda ()
-  "Append another agenda view to the current one.
-This function allows interactive building of block agendas.
-Agenda views are separated by `org-agenda-block-separator'."
-  (interactive)
-  (unless (derived-mode-p 'org-agenda-mode)
-    (user-error "Can only append from within agenda buffer"))
-  (let ((org-agenda-multi t))
-    (org-agenda)
-    (widen)
-    (org-agenda-finalize)
-    (setq buffer-read-only t)
-    (org-agenda-fit-window-to-buffer)))
-
-(defun org-agenda-normalize-custom-commands (cmds)
-  "Normalize custom commands CMDS."
-  (delq nil
-	(mapcar
-	 (lambda (x)
-	   (cond ((stringp (cdr x)) nil)
-		 ((stringp (nth 1 x)) x)
-		 ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
-		 (t (cons (car x) (cons "" (cdr x))))))
-	 cmds)))
-
-(defun org-agenda-get-restriction-and-command (prefix-descriptions)
-  "The user interface for selecting an agenda command."
-  (catch 'exit
-    (let* ((bfn (buffer-file-name (buffer-base-buffer)))
-	   (restrict-ok (and bfn (derived-mode-p 'org-mode)))
-	   (region-p (org-region-active-p))
-	   (custom org-agenda-custom-commands)
-	   (selstring "")
-	   restriction second-time
-	   c entry key type match prefixes rmheader header-end custom1 desc
-	   line lines left right n n1)
-      (save-window-excursion
-	(delete-other-windows)
-	(org-switch-to-buffer-other-window " *Agenda Commands*")
-	(erase-buffer)
-	(insert (eval-when-compile
-		  (let ((header
-			 "Press key for an agenda command:
---------------------------------        <   Buffer, subtree/region restriction
-a   Agenda for current week or day      >   Remove restriction
-t   List of all TODO entries            e   Export agenda views
-m   Match a TAGS/PROP/TODO query        T   Entries with special TODO kwd
-s   Search for keywords                 M   Like m, but only TODO entries
-/   Multi-occur                         S   Like s, but only TODO entries
-?   Find :FLAGGED: entries              C   Configure custom agenda commands
-*   Toggle sticky agenda views          #   List stuck projects (!=configure)
-")
-			(start 0))
-		    (while (string-match
-			    "\\(^\\|   \\|(\\)\\(\\S-\\)\\( \\|=\\)"
-			    header start)
-		      (setq start (match-end 0))
-		      (add-text-properties (match-beginning 2) (match-end 2)
-					   '(face bold) header))
-		    header)))
-	(setq header-end (point-marker))
-	(while t
-	  (setq custom1 custom)
-	  (when (eq rmheader t)
-	    (org-goto-line 1)
-	    (re-search-forward ":" nil t)
-	    (delete-region (match-end 0) (point-at-eol))
-	    (forward-char 1)
-	    (looking-at "-+")
-	    (delete-region (match-end 0) (point-at-eol))
-	    (move-marker header-end (match-end 0)))
-	  (goto-char header-end)
-	  (delete-region (point) (point-max))
-
-	  ;; Produce all the lines that describe custom commands and prefixes
-	  (setq lines nil)
-	  (while (setq entry (pop custom1))
-	    (setq key (car entry) desc (nth 1 entry)
-		  type (nth 2 entry)
-		  match (nth 3 entry))
-	    (if (> (length key) 1)
-		(cl-pushnew (string-to-char key) prefixes :test #'equal)
-	      (setq line
-		    (format
-		     "%-4s%-14s"
-		     (org-add-props (copy-sequence key)
-			 '(face bold))
-		     (cond
-		      ((string-match "\\S-" desc) desc)
-		      ((eq type 'agenda) "Agenda for current week or day")
-		      ((eq type 'agenda*) "Appointments for current week or day")
-		      ((eq type 'alltodo) "List of all TODO entries")
-		      ((eq type 'search) "Word search")
-		      ((eq type 'stuck) "List of stuck projects")
-		      ((eq type 'todo) "TODO keyword")
-		      ((eq type 'tags) "Tags query")
-		      ((eq type 'tags-todo) "Tags (TODO)")
-		      ((eq type 'tags-tree) "Tags tree")
-		      ((eq type 'todo-tree) "TODO kwd tree")
-		      ((eq type 'occur-tree) "Occur tree")
-		      ((functionp type) (if (symbolp type)
-					    (symbol-name type)
-					  "Lambda expression"))
-		      (t "???"))))
-	      (if org-agenda-menu-show-matcher
-		  (setq line
-			(concat line ": "
-				(cond
-				 ((stringp match)
-				  (setq match (copy-sequence match))
-				  (org-add-props match nil 'face 'org-warning))
-				 ((listp type)
-				  (format "set of %d commands" (length type))))))
-		(if (org-string-nw-p match)
-		    (add-text-properties
-		     0 (length line) (list 'help-echo
-					   (concat "Matcher: " match)) line)))
-	      (push line lines)))
-	  (setq lines (nreverse lines))
-	  (when prefixes
-	    (mapc (lambda (x)
-		    (push
-		     (format "%s   %s"
-			     (org-add-props (char-to-string x)
-				 nil 'face 'bold)
-			     (or (cdr (assoc (concat selstring
-						     (char-to-string x))
-					     prefix-descriptions))
-				 "Prefix key"))
-		     lines))
-		  prefixes))
-
-	  ;; Check if we should display in two columns
-	  (if org-agenda-menu-two-columns
-	      (progn
-		(setq n (length lines)
-		      n1 (+ (/ n 2) (mod n 2))
-		      right (nthcdr n1 lines)
-		      left (copy-sequence lines))
-		(setcdr (nthcdr (1- n1) left) nil))
-	    (setq left lines right nil))
-	  (while left
-	    (insert "\n" (pop left))
-	    (when right
-	      (if (< (current-column) 40)
-		  (move-to-column 40 t)
-		(insert "   "))
-	      (insert (pop right))))
-
-	  ;; Make the window the right size
-	  (goto-char (point-min))
-	  (if second-time
-	      (if (not (pos-visible-in-window-p (point-max)))
-		  (org-fit-window-to-buffer))
-	    (setq second-time t)
-	    (org-fit-window-to-buffer))
-
-	  ;; Ask for selection
-	  (message "Press key for agenda command%s:"
-		   (if (or restrict-ok org-agenda-overriding-restriction)
-		       (if org-agenda-overriding-restriction
-			   " (restriction lock active)"
-			 (if restriction
-			     (format " (restricted to %s)" restriction)
-			   " (unrestricted)"))
-		     ""))
-	  (setq c (read-char-exclusive))
-	  (message "")
-	  (cond
-	   ((assoc (char-to-string c) custom)
-	    (setq selstring (concat selstring (char-to-string c)))
-	    (throw 'exit (cons selstring restriction)))
-	   ((memq c prefixes)
-	    (setq selstring (concat selstring (char-to-string c))
-		  prefixes nil
-		  rmheader (or rmheader t)
-		  custom (delq nil (mapcar
-				    (lambda (x)
-				      (if (or (= (length (car x)) 1)
-					      (/= (string-to-char (car x)) c))
-					  nil
-					(cons (substring (car x) 1) (cdr x))))
-				    custom))))
-	   ((eq c ?*)
-	    (call-interactively 'org-toggle-sticky-agenda)
-	    (sit-for 2))
-	   ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
-	    (message "Restriction is only possible in Org buffers")
-	    (ding) (sit-for 1))
-	   ((eq c ?1)
-	    (org-agenda-remove-restriction-lock 'noupdate)
-	    (setq restriction 'buffer))
-	   ((eq c ?0)
-	    (org-agenda-remove-restriction-lock 'noupdate)
-	    (setq restriction (if region-p 'region 'subtree)))
-	   ((eq c ?<)
-	    (org-agenda-remove-restriction-lock 'noupdate)
-	    (setq restriction
-		  (cond
-		   ((eq restriction 'buffer)
-		    (if region-p 'region 'subtree))
-		   ((memq restriction '(subtree region))
-		    nil)
-		   (t 'buffer))))
-	   ((eq c ?>)
-	    (org-agenda-remove-restriction-lock 'noupdate)
-	    (setq restriction nil))
-	   ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
-	    (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
-           ((and (> (length selstring) 0) (eq c ?\d))
-            (delete-window)
-            (org-agenda-get-restriction-and-command prefix-descriptions))
-
-	   ((equal c ?q) (error "Abort"))
-	   (t (user-error "Invalid key %c" c))))))))
-
-(defun org-agenda-fit-window-to-buffer ()
-  "Fit the window to the buffer size."
-  (and (memq org-agenda-window-setup '(reorganize-frame))
-       (fboundp 'fit-window-to-buffer)
-       (if (and (= (cdr org-agenda-window-frame-fractions) 1.0)
-		(= (car org-agenda-window-frame-fractions) 1.0))
-	   (delete-other-windows)
-	 (org-fit-window-to-buffer
-	  nil
-	  (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
-	  (floor (* (frame-height) (car org-agenda-window-frame-fractions)))))))
-
-(defvar org-cmd nil)
-(defvar org-agenda-overriding-cmd nil)
-(defvar org-agenda-overriding-arguments nil)
-(defvar org-agenda-overriding-cmd-arguments nil)
-(defun org-agenda-run-series (name series)
-  "Run agenda NAME as a SERIES of agenda commands."
-  (org-let (nth 1 series) '(org-agenda-prepare name))
-  ;; We need to reset agenda markers here, because when constructing a
-  ;; block agenda, the individual blocks do not do that.
-  (org-agenda-reset-markers)
-  (let* ((org-agenda-multi t)
-	 (redo (list 'org-agenda-run-series name (list 'quote series)))
-	 (cmds (car series))
-	 (gprops (nth 1 series))
-	 match ;; The byte compiler incorrectly complains about this.  Keep it!
-	 org-cmd type lprops)
-    (while (setq org-cmd (pop cmds))
-      (setq type (car org-cmd))
-      (setq match (eval (nth 1 org-cmd)))
-      (setq lprops (nth 2 org-cmd))
-      (let ((org-agenda-overriding-arguments
-	     (if (eq org-agenda-overriding-cmd org-cmd)
-		 (or org-agenda-overriding-arguments
-		     org-agenda-overriding-cmd-arguments))))
-	(cond
-	 ((eq type 'agenda)
-	  (org-let2 gprops lprops
-	    '(call-interactively 'org-agenda-list)))
-	 ((eq type 'agenda*)
-	  (org-let2 gprops lprops
-	    '(funcall 'org-agenda-list nil nil t)))
-	 ((eq type 'alltodo)
-	  (org-let2 gprops lprops
-	    '(call-interactively 'org-todo-list)))
-	 ((eq type 'search)
-	  (org-let2 gprops lprops
-	    '(org-search-view current-prefix-arg match nil)))
-	 ((eq type 'stuck)
-	  (org-let2 gprops lprops
-	    '(call-interactively 'org-agenda-list-stuck-projects)))
-	 ((eq type 'tags)
-	  (org-let2 gprops lprops
-	    '(org-tags-view current-prefix-arg match)))
-	 ((eq type 'tags-todo)
-	  (org-let2 gprops lprops
-	    '(org-tags-view '(4) match)))
-	 ((eq type 'todo)
-	  (org-let2 gprops lprops
-	    '(org-todo-list match)))
-	 ((fboundp type)
-	  (org-let2 gprops lprops
-	    '(funcall type match)))
-	 (t (error "Invalid type in command series")))))
-    (widen)
-    (let ((inhibit-read-only t))
-      (add-text-properties (point-min) (point-max)
-			   `(org-series t org-series-redo-cmd ,redo)))
-    (setq org-agenda-redo-command redo)
-    (goto-char (point-min)))
-  (org-agenda-fit-window-to-buffer)
-  (org-let (nth 1 series) '(org-agenda-finalize)))
-
-;;;###autoload
-(defmacro org-batch-agenda (cmd-key &rest parameters)
-  "Run an agenda command in batch mode and send the result to STDOUT.
-If CMD-KEY is a string of length 1, it is used as a key in
-`org-agenda-custom-commands' and triggers this command.  If it is a
-longer string it is used as a tags/todo match string.
-Parameters are alternating variable names and values that will be bound
-before running the agenda command."
-  (org-eval-in-environment (org-make-parameter-alist parameters)
-    (let (org-agenda-sticky)
-      (if (> (length cmd-key) 1)
-	  (org-tags-view nil cmd-key)
-	(org-agenda nil cmd-key))))
-  (set-buffer org-agenda-buffer-name)
-  (princ (buffer-string)))
-
-(defvar org-agenda-info nil)
-
-;;;###autoload
-(defmacro org-batch-agenda-csv (cmd-key &rest parameters)
-  "Run an agenda command in batch mode and send the result to STDOUT.
-If CMD-KEY is a string of length 1, it is used as a key in
-`org-agenda-custom-commands' and triggers this command.  If it is a
-longer string it is used as a tags/todo match string.
-Parameters are alternating variable names and values that will be bound
-before running the agenda command.
-
-The output gives a line for each selected agenda item.  Each
-item is a list of comma-separated values, like this:
-
-category,head,type,todo,tags,date,time,extra,priority-l,priority-n
-
-category     The category of the item
-head         The headline, without TODO kwd, TAGS and PRIORITY
-type         The type of the agenda entry, can be
-                todo               selected in TODO match
-                tagsmatch          selected in tags match
-                diary              imported from diary
-                deadline           a deadline on given date
-                scheduled          scheduled on given date
-                timestamp          entry has timestamp on given date
-                closed             entry was closed on given date
-                upcoming-deadline  warning about deadline
-                past-scheduled     forwarded scheduled item
-                block              entry has date block including g. date
-todo         The todo keyword, if any
-tags         All tags including inherited ones, separated by colons
-date         The relevant date, like 2007-2-14
-time         The time, like 15:00-16:50
-extra        Sting with extra planning info
-priority-l   The priority letter if any was given
-priority-n   The computed numerical priority
-agenda-day   The day in the agenda where this is listed"
-  (org-eval-in-environment (append '((org-agenda-remove-tags t))
-				   (org-make-parameter-alist parameters))
-    (if (> (length cmd-key) 2)
-	(org-tags-view nil cmd-key)
-      (org-agenda nil cmd-key)))
-  (set-buffer org-agenda-buffer-name)
-  (let* ((lines (org-split-string (buffer-string) "\n"))
-	 line)
-    (while (setq line (pop lines))
-      (catch 'next
-	(if (not (get-text-property 0 'org-category line)) (throw 'next nil))
-	(setq org-agenda-info
-	      (org-fix-agenda-info (text-properties-at 0 line)))
-	(princ
-	 (mapconcat 'org-agenda-export-csv-mapper
-		    '(org-category txt type todo tags date time extra
-				   priority-letter priority agenda-day)
-		    ","))
-	(princ "\n")))))
-
-(defun org-fix-agenda-info (props)
-  "Make sure all properties on an agenda item have a canonical form.
-This ensures the export commands can easily use it."
-  (let (tmp re)
-    (when (setq tmp (plist-get props 'tags))
-      (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
-    (when (setq tmp (plist-get props 'date))
-      (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
-      (let ((calendar-date-display-form '(year "-" month "-" day)))
-	'((format "%4d, %9s %2s, %4s" dayname monthname day year))
-
-	(setq tmp (calendar-date-string tmp)))
-      (setq props (plist-put props 'date tmp)))
-    (when (setq tmp (plist-get props 'day))
-      (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
-      (let ((calendar-date-display-form '(year "-" month "-" day)))
-	(setq tmp (calendar-date-string tmp)))
-      (setq props (plist-put props 'day tmp))
-      (setq props (plist-put props 'agenda-day tmp)))
-    (when (setq tmp (plist-get props 'txt))
-      (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
-	(plist-put props 'priority-letter (match-string 1 tmp))
-	(setq tmp (replace-match "" t t tmp)))
-      (when (and (setq re (plist-get props 'org-todo-regexp))
-		 (setq re (concat "\\`\\.*" re " ?"))
-		 (let ((case-fold-search nil)) (string-match re tmp)))
-	(plist-put props 'todo (match-string 1 tmp))
-	(setq tmp (replace-match "" t t tmp)))
-      (plist-put props 'txt tmp)))
-  props)
-
-(defun org-agenda-export-csv-mapper (prop)
-  (let ((res (plist-get org-agenda-info prop)))
-    (setq res
-	  (cond
-	   ((not res) "")
-	   ((stringp res) res)
-	   (t (prin1-to-string res))))
-    (org-trim (replace-regexp-in-string "," ";" res nil t))))
-
-;;;###autoload
-(defun org-store-agenda-views (&rest parameters)
-  "Store agenda views."
-  (interactive)
-  (eval (list 'org-batch-store-agenda-views)))
-
-;;;###autoload
-(defmacro org-batch-store-agenda-views (&rest parameters)
-  "Run all custom agenda commands that have a file argument."
-  (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
-	(pop-up-frames nil)
-	(dir default-directory)
-	(pars (org-make-parameter-alist parameters))
-	cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
-    (save-window-excursion
-      (while cmds
-	(setq cmd (pop cmds)
-	      thiscmdkey (car cmd)
-	      thiscmdcmd (cdr cmd)
-	      match (nth 2 thiscmdcmd)
-	      bufname (if org-agenda-sticky
-			  (or (and (stringp match)
-				   (format "*Org Agenda(%s:%s)*" thiscmdkey match))
-			      (format "*Org Agenda(%s)*" thiscmdkey))
-			org-agenda-buffer-name)
-	      cmd-or-set (nth 2 cmd)
-	      opts (nth (if (listp cmd-or-set) 3 4) cmd)
-	      files (nth (if (listp cmd-or-set) 4 5) cmd))
-	(if (stringp files) (setq files (list files)))
-	(when files
-	  (org-eval-in-environment (append org-agenda-exporter-settings
-					   opts pars)
-	    (org-agenda nil thiscmdkey))
-	  (set-buffer bufname)
-	  (while files
-	    (org-eval-in-environment (append org-agenda-exporter-settings
-					     opts pars)
-	      (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
-	  (and (get-buffer bufname)
-	       (kill-buffer bufname)))))))
-
-(defvar org-agenda-current-span nil
-  "The current span used in the agenda view.") ; local variable in the agenda buffer
-(defun org-agenda-mark-header-line (pos)
-  "Mark the line at POS as an agenda structure header."
-  (save-excursion
-    (goto-char pos)
-    (put-text-property (point-at-bol) (point-at-eol)
-		       'org-agenda-structural-header t)
-    (when org-agenda-title-append
-      (put-text-property (point-at-bol) (point-at-eol)
-			 'org-agenda-title-append org-agenda-title-append))))
-
-(defvar org-mobile-creating-agendas) ; defined in org-mobile.el
-(defvar org-agenda-write-buffer-name "Agenda View")
-(defun org-agenda-write (file &optional open nosettings agenda-bufname)
-  "Write the current buffer (an agenda view) as a file.
-
-Depending on the extension of the file name, plain text (.txt),
-HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
-If the extension is .ics, translate visible agenda into iCalendar
-format.  If the extension is .org, collect all subtrees
-corresponding to the agenda entries and add them in an .org file.
-
-With prefix argument OPEN, open the new file immediately.  If
-NOSETTINGS is given, do not scope the settings of
-`org-agenda-exporter-settings' into the export commands.  This is
-used when the settings have already been scoped and we do not
-wish to overrule other, higher priority settings.  If
-AGENDA-BUFFER-NAME is provided, use this as the buffer name for
-the agenda to write."
-  (interactive "FWrite agenda to file: \nP")
-  (if (or (not (file-writable-p file))
-	  (and (file-exists-p file)
-	       (if (called-interactively-p 'any)
-		   (not (y-or-n-p (format "Overwrite existing file %s? " file))))))
-      (user-error "Cannot write agenda to file %s" file))
-  (org-let (if nosettings nil org-agenda-exporter-settings)
-    '(save-excursion
-       (save-window-excursion
-	 (let ((bs (copy-sequence (buffer-string)))
-	       (extension (file-name-extension file))
-	       (default-directory (file-name-directory file))
-	       beg content)
-	   (with-temp-buffer
-	     (rename-buffer org-agenda-write-buffer-name t)
-	     (set-buffer-modified-p nil)
-	     (insert bs)
-	     (org-agenda-remove-marked-text 'invisible 'org-filtered)
-	     (run-hooks 'org-agenda-before-write-hook)
-	     (cond
-	      ((bound-and-true-p org-mobile-creating-agendas)
-	       (org-mobile-write-agenda-for-mobile file))
-	      ((string= "org" extension)
-	       (let (content p m message-log-max)
-		 (goto-char (point-min))
-		 (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
-		   (goto-char p)
-		   (setq m (get-text-property (point) 'org-hd-marker))
-		   (when m
-		     (push (save-excursion
-			     (set-buffer (marker-buffer m))
-			     (goto-char m)
-			     (org-copy-subtree 1 nil t t)
-			     org-subtree-clip)
-			   content)))
-		 (find-file file)
-		 (erase-buffer)
-		 (dolist (s content) (org-paste-subtree 1 s))
-		 (write-file file)
-		 (kill-buffer (current-buffer))
-		 (message "Org file written to %s" file)))
-	      ((member extension '("html" "htm"))
-	       (or (require 'htmlize nil t)
-		   (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
-	       (set-buffer (htmlize-buffer (current-buffer)))
-	       (when org-agenda-export-html-style
-		 ;; replace <style> section with org-agenda-export-html-style
-		 (goto-char (point-min))
-		 (kill-region (- (search-forward "<style") 6)
-			      (search-forward "</style>"))
-		 (insert org-agenda-export-html-style))
-	       (write-file file)
-	       (kill-buffer (current-buffer))
-	       (message "HTML written to %s" file))
-	      ((string= "ps" extension)
-	       (require 'ps-print)
-	       (ps-print-buffer-with-faces file)
-	       (message "Postscript written to %s" file))
-	      ((string= "pdf" extension)
-	       (require 'ps-print)
-	       (ps-print-buffer-with-faces
-		(concat (file-name-sans-extension file) ".ps"))
-	       (call-process "ps2pdf" nil nil nil
-			     (expand-file-name
-			      (concat (file-name-sans-extension file) ".ps"))
-			     (expand-file-name file))
-	       (delete-file (concat (file-name-sans-extension file) ".ps"))
-	       (message "PDF written to %s" file))
-	      ((string= "ics" extension)
-	       (require 'ox-icalendar)
-	       (org-icalendar-export-current-agenda (expand-file-name file)))
-	      (t
-	       (let ((bs (buffer-string)))
-		 (find-file file)
-		 (erase-buffer)
-		 (insert bs)
-		 (save-buffer 0)
-		 (kill-buffer (current-buffer))
-		 (message "Plain text written to %s" file))))))))
-    (set-buffer (or agenda-bufname
-		    (and (called-interactively-p 'any) (buffer-name))
-		    org-agenda-buffer-name)))
-  (when open (org-open-file file)))
-
-(defun org-agenda-remove-marked-text (property &optional value)
-  "Delete all text marked with VALUE of PROPERTY.
-VALUE defaults to t."
-  (let (beg)
-    (setq value (or value t))
-    (while (setq beg (text-property-any (point-min) (point-max)
-					property value))
-      (delete-region
-       beg (or (next-single-property-change beg property)
-	       (point-max))))))
-
-(defun org-agenda-add-entry-text ()
-  "Add entry text to agenda lines.
-This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
-entry text following headings shown in the agenda.
-Drawers will be excluded, also the line with scheduling/deadline info."
-  (when (and (> org-agenda-add-entry-text-maxlines 0)
-	     (not (bound-and-true-p org-mobile-creating-agendas)))
-    (let (m txt)
-      (goto-char (point-min))
-      (while (not (eobp))
-	(if (not (setq m (org-get-at-bol 'org-hd-marker)))
-	    (beginning-of-line 2)
-	  (setq txt (org-agenda-get-some-entry-text
-		     m org-agenda-add-entry-text-maxlines "    > "))
-	  (end-of-line 1)
-	  (if (string-match "\\S-" txt)
-	      (insert "\n" txt)
-	    (or (eobp) (forward-char 1))))))))
-
-(defun org-agenda-get-some-entry-text (marker n-lines &optional indent
-					      &rest keep)
-  "Extract entry text from MARKER, at most N-LINES lines.
-This will ignore drawers etc, just get the text.
-If INDENT is given, prefix every line with this string.  If KEEP is
-given, it is a list of symbols, defining stuff that should not be
-removed from the entry content.  Currently only `planning' is allowed here."
-  (let (txt drawer-re kwd-time-re ind)
-    (save-excursion
-      (with-current-buffer (marker-buffer marker)
-	(if (not (derived-mode-p 'org-mode))
-	    (setq txt "")
-	  (org-with-wide-buffer
-	   (goto-char marker)
-	   (end-of-line 1)
-	   (setq txt (buffer-substring
-		      (min (1+ (point)) (point-max))
-		      (progn (outline-next-heading) (point)))
-		 drawer-re org-drawer-regexp
-		 kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
-				     ".*\n?"))
-	   (with-temp-buffer
-	     (insert txt)
-	     (when org-agenda-add-entry-text-descriptive-links
-	       (goto-char (point-min))
-	       (while (org-activate-links (point-max))
-		 (add-text-properties (match-beginning 0) (match-end 0)
-				      '(face org-link))))
-	     (goto-char (point-min))
-	     (while (re-search-forward org-bracket-link-regexp (point-max) t)
-	       (set-text-properties (match-beginning 0) (match-end 0)
-				    nil))
-	     (goto-char (point-min))
-	     (while (re-search-forward drawer-re nil t)
-	       (delete-region
-		(match-beginning 0)
-		(progn (re-search-forward
-			"^[ \t]*:END:.*\n?" nil 'move)
-		       (point))))
-	     (unless (member 'planning keep)
-	       (goto-char (point-min))
-	       (while (re-search-forward kwd-time-re nil t)
-		 (replace-match "")))
-	     (goto-char (point-min))
-	     (when org-agenda-entry-text-exclude-regexps
-	       (let ((re-list org-agenda-entry-text-exclude-regexps)	re)
-		 (while (setq re (pop re-list))
-		   (goto-char (point-min))
-		   (while (re-search-forward re nil t)
-		     (replace-match "")))))
-	     (goto-char (point-max))
-	     (skip-chars-backward " \t\n")
-	     (if (looking-at "[ \t\n]+\\'") (replace-match ""))
-
-	     ;; find and remove min common indentation
-	     (goto-char (point-min))
-	     (untabify (point-min) (point-max))
-	     (setq ind (org-get-indentation))
-	     (while (not (eobp))
-	       (unless (looking-at "[ \t]*$")
-		 (setq ind (min ind (org-get-indentation))))
-	       (beginning-of-line 2))
-	     (goto-char (point-min))
-	     (while (not (eobp))
-	       (unless (looking-at "[ \t]*$")
-		 (move-to-column ind)
-		 (delete-region (point-at-bol) (point)))
-	       (beginning-of-line 2))
-
-	     (run-hooks 'org-agenda-entry-text-cleanup-hook)
-
-	     (goto-char (point-min))
-	     (when indent
-	       (while (and (not (eobp)) (re-search-forward "^" nil t))
-		 (replace-match indent t t)))
-	     (goto-char (point-min))
-	     (while (looking-at "[ \t]*\n") (replace-match ""))
-	     (goto-char (point-max))
-	     (when (> (org-current-line)
-		      n-lines)
-	       (org-goto-line (1+ n-lines))
-	       (backward-char 1))
-	     (setq txt (buffer-substring (point-min) (point))))))))
-    txt))
-
-(defun org-check-for-org-mode ()
-  "Make sure current buffer is in Org mode.  Error if not."
-  (or (derived-mode-p 'org-mode)
-      (error "Cannot execute Org agenda command on buffer in %s"
-	     major-mode)))
-
-;;; Agenda prepare and finalize
-
-(defvar org-agenda-multi nil)  ; dynamically scoped
-(defvar org-agenda-pre-window-conf nil)
-(defvar org-agenda-columns-active nil)
-(defvar org-agenda-name nil)
-(defvar org-agenda-tag-filter nil)
-(defvar org-agenda-category-filter nil)
-(defvar org-agenda-regexp-filter nil)
-(defvar org-agenda-effort-filter nil)
-(defvar org-agenda-top-headline-filter nil)
-(defvar org-agenda-tag-filter-preset nil
-  "A preset of the tags filter used for secondary agenda filtering.
-This must be a list of strings, each string must be a single tag preceded
-by \"+\" or \"-\".
-This variable should not be set directly, but agenda custom commands can
-bind it in the options section.  The preset filter is a global property of
-the entire agenda view.  In a block agenda, it will not work reliably to
-define a filter for one of the individual blocks.  You need to set it in
-the global options and expect it to be applied to the entire view.")
-
-(defvar org-agenda-category-filter-preset nil
-  "A preset of the category filter used for secondary agenda filtering.
-This must be a list of strings, each string must be a single category
-preceded by \"+\" or \"-\".
-This variable should not be set directly, but agenda custom commands can
-bind it in the options section.  The preset filter is a global property of
-the entire agenda view.  In a block agenda, it will not work reliably to
-define a filter for one of the individual blocks.  You need to set it in
-the global options and expect it to be applied to the entire view.")
-
-(defvar org-agenda-regexp-filter-preset nil
-  "A preset of the regexp filter used for secondary agenda filtering.
-This must be a list of strings, each string must be a single regexp
-preceded by \"+\" or \"-\".
-This variable should not be set directly, but agenda custom commands can
-bind it in the options section.  The preset filter is a global property of
-the entire agenda view.  In a block agenda, it will not work reliably to
-define a filter for one of the individual blocks.  You need to set it in
-the global options and expect it to be applied to the entire view.")
-
-(defvar org-agenda-effort-filter-preset nil
-  "A preset of the effort condition used for secondary agenda filtering.
-This must be a list of strings, each string must be a single regexp
-preceded by \"+\" or \"-\".
-This variable should not be set directly, but agenda custom commands can
-bind it in the options section.  The preset filter is a global property of
-the entire agenda view.  In a block agenda, it will not work reliably to
-define a filter for one of the individual blocks.  You need to set it in
-the global options and expect it to be applied to the entire view.")
-
-(defun org-agenda-use-sticky-p ()
-  "Return non-nil if an agenda buffer named
-`org-agenda-buffer-name' exists and should be shown instead of
-generating a new one."
-  (and
-   ;; turned off by user
-   org-agenda-sticky
-   ;; For multi-agenda buffer already exists
-   (not org-agenda-multi)
-   ;; buffer found
-   (get-buffer org-agenda-buffer-name)
-   ;; C-u parameter is same as last call
-   (with-current-buffer (get-buffer org-agenda-buffer-name)
-     (and
-      (equal current-prefix-arg
-	     org-agenda-last-prefix-arg)
-      ;; In case user turned stickiness on, while having existing
-      ;; Agenda buffer active, don't reuse that buffer, because it
-      ;; does not have org variables local
-      org-agenda-this-buffer-is-sticky))))
-
-(defun org-agenda-prepare-window (abuf filter-alist)
-  "Setup agenda buffer in the window.
-ABUF is the buffer for the agenda window.
-FILTER-ALIST is an alist of filters we need to apply when
-`org-agenda-persistent-filter' is non-nil."
-  (let* ((awin (get-buffer-window abuf)) wconf)
-    (cond
-     ((equal (current-buffer) abuf) nil)
-     (awin (select-window awin))
-     ((not (setq wconf (current-window-configuration))))
-     ((eq org-agenda-window-setup 'current-window)
-      (pop-to-buffer-same-window abuf))
-     ((eq org-agenda-window-setup 'other-window)
-      (org-switch-to-buffer-other-window abuf))
-     ((eq org-agenda-window-setup 'other-frame)
-      (switch-to-buffer-other-frame abuf))
-     ((eq org-agenda-window-setup 'only-window)
-      (delete-other-windows)
-      (pop-to-buffer-same-window abuf))
-     ((eq org-agenda-window-setup 'reorganize-frame)
-      (delete-other-windows)
-      (org-switch-to-buffer-other-window abuf)))
-    (setq org-agenda-tag-filter (cdr (assq 'tag filter-alist)))
-    (setq org-agenda-category-filter (cdr (assq 'cat filter-alist)))
-    (setq org-agenda-effort-filter (cdr (assq 'effort filter-alist)))
-    (setq org-agenda-regexp-filter (cdr (assq 're filter-alist)))
-    ;; Additional test in case agenda is invoked from within agenda
-    ;; buffer via elisp link.
-    (unless (equal (current-buffer) abuf)
-      (pop-to-buffer-same-window abuf))
-    (setq org-agenda-pre-window-conf
-	  (or wconf org-agenda-pre-window-conf))))
-
-(defun org-agenda-prepare (&optional name)
-  (let ((filter-alist (if org-agenda-persistent-filter
-			  (with-current-buffer
-			      (get-buffer-create org-agenda-buffer-name)
-			    (list `(tag . ,org-agenda-tag-filter)
-				  `(re . ,org-agenda-regexp-filter)
-				  `(effort . ,org-agenda-effort-filter)
-				  `(cat . ,org-agenda-category-filter))))))
-    (if (org-agenda-use-sticky-p)
-	(progn
-	  (put 'org-agenda-tag-filter :preset-filter nil)
-	  (put 'org-agenda-category-filter :preset-filter nil)
-	  (put 'org-agenda-regexp-filter :preset-filter nil)
-	  ;; Popup existing buffer
-	  (org-agenda-prepare-window (get-buffer org-agenda-buffer-name)
-				     filter-alist)
-	  (message "Sticky Agenda buffer, use `r' to refresh")
-	  (or org-agenda-multi (org-agenda-fit-window-to-buffer))
-	  (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
-      (setq org-todo-keywords-for-agenda nil)
-      (put 'org-agenda-tag-filter :preset-filter
-	   org-agenda-tag-filter-preset)
-      (put 'org-agenda-category-filter :preset-filter
-	   org-agenda-category-filter-preset)
-      (put 'org-agenda-regexp-filter :preset-filter
-	   org-agenda-regexp-filter-preset)
-      (put 'org-agenda-effort-filter :preset-filter
-	   org-agenda-effort-filter-preset)
-      (if org-agenda-multi
-	  (progn
-	    (setq buffer-read-only nil)
-	    (goto-char (point-max))
-	    (unless (or (bobp) org-agenda-compact-blocks
-			(not org-agenda-block-separator))
-	      (insert "\n"
-		      (if (stringp org-agenda-block-separator)
-			  org-agenda-block-separator
-			(make-string (window-width) org-agenda-block-separator))
-		      "\n"))
-	    (narrow-to-region (point) (point-max)))
-	(setq org-done-keywords-for-agenda nil)
-	;; Setting any org variables that are in org-agenda-local-vars
-	;; list need to be done after the prepare call
-	(org-agenda-prepare-window
-	 (get-buffer-create org-agenda-buffer-name) filter-alist)
-	(setq buffer-read-only nil)
-	(org-agenda-reset-markers)
-	(let ((inhibit-read-only t)) (erase-buffer))
-	(org-agenda-mode)
-	(setq org-agenda-buffer (current-buffer))
-	(setq org-agenda-contributing-files nil)
-	(setq org-agenda-columns-active nil)
-	(org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
-	(setq org-todo-keywords-for-agenda
-	      (org-uniquify org-todo-keywords-for-agenda))
-	(setq org-done-keywords-for-agenda
-	      (org-uniquify org-done-keywords-for-agenda))
-	(setq org-agenda-last-prefix-arg current-prefix-arg)
-	(setq org-agenda-this-buffer-name org-agenda-buffer-name)
-	(and name (not org-agenda-name)
-	     (setq-local org-agenda-name name)))
-      (setq buffer-read-only nil))))
-
-(defvar org-agenda-overriding-columns-format)  ; From org-colview.el
-(defun org-agenda-finalize ()
-  "Finishing touch for the agenda buffer, called just before displaying it."
-  (unless org-agenda-multi
-    (save-excursion
-      (let ((inhibit-read-only t))
-	(goto-char (point-min))
-	(save-excursion
-	  (while (org-activate-links (point-max))
-	    (add-text-properties (match-beginning 0) (match-end 0)
-				 '(face org-link))))
-	(unless (eq org-agenda-remove-tags t)
-	  (org-agenda-align-tags))
-	(unless org-agenda-with-colors
-	  (remove-text-properties (point-min) (point-max) '(face nil)))
-	(if (and (boundp 'org-agenda-overriding-columns-format)
-		 org-agenda-overriding-columns-format)
-	    (setq-local org-agenda-overriding-columns-format
-			org-agenda-overriding-columns-format))
-	(if (and (boundp 'org-agenda-view-columns-initially)
-		 org-agenda-view-columns-initially)
-	    (org-agenda-columns))
-	(when org-agenda-fontify-priorities
-	  (org-agenda-fontify-priorities))
-	(when (and org-agenda-dim-blocked-tasks org-blocker-hook)
-	  (org-agenda-dim-blocked-tasks))
-	(org-agenda-mark-clocking-task)
-	(when org-agenda-entry-text-mode
-	  (org-agenda-entry-text-hide)
-	  (org-agenda-entry-text-show))
-	(if (and (functionp 'org-habit-insert-consistency-graphs)
-		 (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
-	    (org-habit-insert-consistency-graphs))
-	(setq org-agenda-type (org-get-at-bol 'org-agenda-type))
-	(unless (or (eq org-agenda-show-inherited-tags 'always)
-		    (and (listp org-agenda-show-inherited-tags)
-			 (memq org-agenda-type org-agenda-show-inherited-tags))
-		    (and (eq org-agenda-show-inherited-tags t)
-			 (or (eq org-agenda-use-tag-inheritance t)
-			     (and (listp org-agenda-use-tag-inheritance)
-				  (not (memq org-agenda-type
-					     org-agenda-use-tag-inheritance))))))
-	  (let (mrk)
-	    (save-excursion
-	      (goto-char (point-min))
-	      (while (equal (forward-line) 0)
-		(when (setq mrk (get-text-property (point) 'org-hd-marker))
-		  (put-text-property (point-at-bol) (point-at-eol)
-				     'tags (org-with-point-at mrk
-					     (delete-dups
-					      (mapcar 'downcase (org-get-tags-at))))))))))
-	(run-hooks 'org-agenda-finalize-hook)
-	(when org-agenda-top-headline-filter
-	  (org-agenda-filter-top-headline-apply
-	   org-agenda-top-headline-filter))
-	(when org-agenda-tag-filter
-	  (org-agenda-filter-apply org-agenda-tag-filter 'tag t))
-	(when (get 'org-agenda-tag-filter :preset-filter)
-	  (org-agenda-filter-apply
-	   (get 'org-agenda-tag-filter :preset-filter) 'tag t))
-	(when org-agenda-category-filter
-	  (org-agenda-filter-apply org-agenda-category-filter 'category))
-	(when (get 'org-agenda-category-filter :preset-filter)
-	  (org-agenda-filter-apply
-	   (get 'org-agenda-category-filter :preset-filter) 'category))
-	(when org-agenda-regexp-filter
-	  (org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
-	(when (get 'org-agenda-regexp-filter :preset-filter)
-	  (org-agenda-filter-apply
-	   (get 'org-agenda-regexp-filter :preset-filter) 'regexp))
-	(when org-agenda-effort-filter
-	  (org-agenda-filter-apply org-agenda-effort-filter 'effort))
-	(when (get 'org-agenda-effort-filter :preset-filter)
-	  (org-agenda-filter-apply
-	   (get 'org-agenda-effort-filter :preset-filter) 'effort))
-	(add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
-
-(defun org-agenda-mark-clocking-task ()
-  "Mark the current clock entry in the agenda if it is present."
-  ;; We need to widen when `org-agenda-finalize' is called from
-  ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
-  (when (bound-and-true-p org-clock-current-task)
-    (save-restriction
-      (widen)
-      (org-agenda-unmark-clocking-task)
-      (when (marker-buffer org-clock-hd-marker)
-	(save-excursion
-	  (goto-char (point-min))
-	  (let (s ov)
-	    (while (setq s (next-single-property-change (point) 'org-hd-marker))
-	      (goto-char s)
-	      (when (equal (org-get-at-bol 'org-hd-marker)
-			   org-clock-hd-marker)
-		(setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
-		(overlay-put ov 'type 'org-agenda-clocking)
-		(overlay-put ov 'face 'org-agenda-clocking)
-		(overlay-put ov 'help-echo
-			     "The clock is running in this item")))))))))
-
-(defun org-agenda-unmark-clocking-task ()
-  "Unmark the current clocking task."
-  (mapc (lambda (o)
-	  (if (eq (overlay-get o 'type) 'org-agenda-clocking)
-	      (delete-overlay o)))
-	(overlays-in (point-min) (point-max))))
-
-(defun org-agenda-fontify-priorities ()
-  "Make highest priority lines bold, and lowest italic."
-  (interactive)
-  (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
-		   (delete-overlay o)))
-	(overlays-in (point-min) (point-max)))
-  (save-excursion
-    (let (b e p ov h l)
-      (goto-char (point-min))
-      (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
-	(setq h (or (get-char-property (point) 'org-highest-priority)
-		    org-highest-priority)
-	      l (or (get-char-property (point) 'org-lowest-priority)
-		    org-lowest-priority)
-	      p (string-to-char (match-string 1))
-	      b (match-beginning 0)
-	      e (if (eq org-agenda-fontify-priorities 'cookies)
-		    (match-end 0)
-		  (point-at-eol))
-	      ov (make-overlay b e))
-	(overlay-put
-	 ov 'face
-	 (let ((special-face
-		(cond ((org-face-from-face-or-color
-			'priority 'org-priority
-			(cdr (assoc p org-priority-faces))))
-		      ((and (listp org-agenda-fontify-priorities)
-			    (org-face-from-face-or-color
-			     'priority 'org-priority
-			     (cdr (assoc p org-agenda-fontify-priorities)))))
-		      ((equal p l) 'italic)
-		      ((equal p h) 'bold))))
-	   (if special-face (list special-face 'org-priority) 'org-priority)))
-	(overlay-put ov 'org-type 'org-priority)))))
-
-(defvar org-depend-tag-blocked)
-
-(defun org-agenda-dim-blocked-tasks (&optional invisible)
-  "Dim currently blocked TODOs in the agenda display.
-When INVISIBLE is non-nil, hide currently blocked TODO instead of
-dimming them."
-  (interactive "P")
-  (when (called-interactively-p 'interactive)
-    (message "Dim or hide blocked tasks..."))
-  (dolist (o (overlays-in (point-min) (point-max)))
-    (when (eq (overlay-get o 'org-type) 'org-blocked-todo)
-      (delete-overlay o)))
-  (save-excursion
-    (let ((inhibit-read-only t))
-      (goto-char (point-min))
-      (while (let ((pos (text-property-not-all
-			 (point) (point-max) 'org-todo-blocked nil)))
-	       (when pos (goto-char pos)))
-	(let* ((invisible (eq (org-get-at-bol 'org-todo-blocked) 'invisible))
-	       (ov (make-overlay (if invisible
-				     (line-end-position 0)
-				   (line-beginning-position))
-				 (line-end-position))))
-	  (if invisible
-	      (overlay-put ov 'invisible t)
-	    (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
-	  (overlay-put ov 'org-type 'org-blocked-todo))
-	(forward-line))))
-  (when (called-interactively-p 'interactive)
-    (message "Dim or hide blocked tasks...done")))
-
-(defun org-agenda--mark-blocked-entry (entry)
-  "For ENTRY a string with the text property `org-hd-marker', if
-the header at `org-hd-marker' is blocked according to
-`org-entry-blocked-p', then if `org-agenda-dim-blocked-tasks' is
-'invisible and the header is not blocked by checkboxes, set the
-text property `org-todo-blocked' to 'invisible, otherwise set it
-to t."
-  (when (get-text-property 0 'todo-state entry)
-    (let ((entry-marker (get-text-property 0 'org-hd-marker entry))
-          (org-blocked-by-checkboxes nil)
-	  ;; Necessary so that `org-entry-blocked-p' does not change
-	  ;; the buffer.
-          (org-depend-tag-blocked nil))
-      (when entry-marker
-	(let ((blocked
-	       (with-current-buffer (marker-buffer entry-marker)
-		 (save-excursion
-		   (goto-char entry-marker)
-		   (org-entry-blocked-p)))))
-	  (when blocked
-	    (let ((really-invisible
-		   (and (not org-blocked-by-checkboxes)
-			(eq org-agenda-dim-blocked-tasks 'invisible))))
-	      (put-text-property
-	       0 (length entry) 'org-todo-blocked
-	       (if really-invisible 'invisible t)
-	       entry)))))))
-  entry)
-
-(defvar org-agenda-skip-function nil
-  "Function to be called at each match during agenda construction.
-If this function returns nil, the current match should not be skipped.
-Otherwise, the function must return a position from where the search
-should be continued.
-This may also be a Lisp form, it will be evaluated.
-Never set this variable using `setq' or so, because then it will apply
-to all future agenda commands.  If you do want a global skipping condition,
-use the option `org-agenda-skip-function-global' instead.
-The correct usage for `org-agenda-skip-function' is to bind it with
-`let' to scope it dynamically into the agenda-constructing command.
-A good way to set it is through options in `org-agenda-custom-commands'.")
-
-(defun org-agenda-skip ()
-  "Throw to `:skip' in places that should be skipped.
-Also moves point to the end of the skipped region, so that search can
-continue from there."
-  (let ((p (point-at-bol)) to)
-    (when (or
-	   (save-excursion (goto-char p) (looking-at comment-start-skip))
-	   (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
-		(get-text-property p :org-archived)
-		(org-end-of-subtree t))
-	   (and org-agenda-skip-comment-trees
-		(get-text-property p :org-comment)
-		(org-end-of-subtree t))
-	   (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
-			     (org-agenda-skip-eval org-agenda-skip-function)))
-		(goto-char to))
-	   (org-in-src-block-p t))
-      (throw :skip t))))
-
-(defun org-agenda-skip-eval (form)
-  "If FORM is a function or a list, call (or eval) it and return the result.
-`save-excursion' and `save-match-data' are wrapped around the call, so point
-and match data are returned to the previous state no matter what these
-functions do."
-  (let (fp)
-    (and form
-	 (or (setq fp (functionp form))
-	     (consp form))
-	 (save-excursion
-	   (save-match-data
-	     (if fp
-		 (funcall form)
-	       (eval form)))))))
-
-(defvar org-agenda-markers nil
-  "List of all currently active markers created by `org-agenda'.")
-(defvar org-agenda-last-marker-time (float-time)
-  "Creation time of the last agenda marker.")
-
-(defun org-agenda-new-marker (&optional pos)
-  "Return a new agenda marker.
-Maker is at point, or at POS if non-nil.  Org mode keeps a list of
-these markers and resets them when they are no longer in use."
-  (let ((m (copy-marker (or pos (point)) t)))
-    (setq org-agenda-last-marker-time (float-time))
-    (if org-agenda-buffer
-	(with-current-buffer org-agenda-buffer
-	  (push m org-agenda-markers))
-      (push m org-agenda-markers))
-    m))
-
-(defun org-agenda-reset-markers ()
-  "Reset markers created by `org-agenda'."
-  (while org-agenda-markers
-    (move-marker (pop org-agenda-markers) nil)))
-
-(defun org-agenda-save-markers-for-cut-and-paste (beg end)
-  "Save relative positions of markers in region.
-This check for agenda markers in all agenda buffers currently active."
-  (dolist (buf (buffer-list))
-    (with-current-buffer buf
-      (when (eq major-mode 'org-agenda-mode)
-	(mapc (lambda (m) (org-check-and-save-marker m beg end))
-	      org-agenda-markers)))))
-
-;;; Entry text mode
-
-(defun org-agenda-entry-text-show-here ()
-  "Add some text from the entry as context to the current line."
-  (let (m txt o)
-    (setq m (org-get-at-bol 'org-hd-marker))
-    (unless (marker-buffer m)
-      (error "No marker points to an entry here"))
-    (setq txt (concat "\n" (org-no-properties
-			    (org-agenda-get-some-entry-text
-			     m org-agenda-entry-text-maxlines
-			     org-agenda-entry-text-leaders))))
-    (when (string-match "\\S-" txt)
-      (setq o (make-overlay (point-at-bol) (point-at-eol)))
-      (overlay-put o 'evaporate t)
-      (overlay-put o 'org-overlay-type 'agenda-entry-content)
-      (overlay-put o 'after-string txt))))
-
-(defun org-agenda-entry-text-show ()
-  "Add entry context for all agenda lines."
-  (interactive)
-  (save-excursion
-    (goto-char (point-max))
-    (beginning-of-line 1)
-    (while (not (bobp))
-      (when (org-get-at-bol 'org-hd-marker)
-	(org-agenda-entry-text-show-here))
-      (beginning-of-line 0))))
-
-(defun org-agenda-entry-text-hide ()
-  "Remove any shown entry context."
-  (delq nil
-	(mapcar (lambda (o)
-		  (if (eq (overlay-get o 'org-overlay-type)
-			  'agenda-entry-content)
-		      (progn (delete-overlay o) t)))
-		(overlays-in (point-min) (point-max)))))
-
-(defun org-agenda-get-day-face (date)
-  "Return the face DATE should be displayed with."
-  (cond ((and (functionp org-agenda-day-face-function)
-	      (funcall org-agenda-day-face-function date)))
-	((org-agenda-today-p date) 'org-agenda-date-today)
-	((memq (calendar-day-of-week date) org-agenda-weekend-days)
-	 'org-agenda-date-weekend)
-	(t 'org-agenda-date)))
-
-(defvar org-agenda-show-log-scoped)
-
-;;; Agenda Daily/Weekly
-
-(defvar org-agenda-start-day nil  ; dynamically scoped parameter
-  "Start day for the agenda view.
-Custom commands can set this variable in the options section.
-This is usually a string like \"2007-11-01\", \"+2d\" or any other
-input allowed when reading a date through the Org calendar.
-See the docstring of `org-read-date' for details.")
-(defvar org-starting-day nil) ; local variable in the agenda buffer
-(defvar org-arg-loc nil) ; local variable
-
-(defvar org-agenda-buffer-tmp-name nil)
-;;;###autoload
-(defun org-agenda-list (&optional arg start-day span with-hour)
-  "Produce a daily/weekly view from all files in variable `org-agenda-files'.
-The view will be for the current day or week, but from the overview buffer
-you will be able to go to other days/weeks.
-
-With a numeric prefix argument in an interactive call, the agenda will
-span ARG days.  Lisp programs should instead specify SPAN to change
-the number of days.  SPAN defaults to `org-agenda-span'.
-
-START-DAY defaults to TODAY, or to the most recent match for the weekday
-given in `org-agenda-start-on-weekday'.
-
-When WITH-HOUR is non-nil, only include scheduled and deadline
-items if they have an hour specification like [h]h:mm."
-  (interactive "P")
-  (if org-agenda-overriding-arguments
-      (setq arg (car org-agenda-overriding-arguments)
-	    start-day (nth 1 org-agenda-overriding-arguments)
-	    span (nth 2 org-agenda-overriding-arguments)))
-  (if (and (integerp arg) (> arg 0))
-      (setq span arg arg nil))
-  (catch 'exit
-    (setq org-agenda-buffer-name
-	  (or org-agenda-buffer-tmp-name
-	      (and org-agenda-doing-sticky-redo org-agenda-buffer-name)
-	      (if org-agenda-sticky
-		  (cond ((and org-keys (stringp org-match))
-			 (format "*Org Agenda(%s:%s)*" org-keys org-match))
-			(org-keys
-			 (format "*Org Agenda(%s)*" org-keys))
-			(t "*Org Agenda(a)*")))
-	      "*Org Agenda*"))
-    (org-agenda-prepare "Day/Week")
-    (setq start-day (or start-day org-agenda-start-day))
-    (if (stringp start-day)
-	;; Convert to an absolute day number
-	(setq start-day (time-to-days (org-read-date nil t start-day))))
-    (org-compile-prefix-format 'agenda)
-    (org-set-sorting-strategy 'agenda)
-    (let* ((span (org-agenda-ndays-to-span (or span org-agenda-span)))
-	   (today (org-today))
-	   (sd (or start-day today))
-	   (ndays (org-agenda-span-to-ndays span sd))
-	   (org-agenda-start-on-weekday
-	    (if (or (eq ndays 7) (eq ndays 14))
-		org-agenda-start-on-weekday))
-	   (thefiles (org-agenda-files nil 'ifmode))
-	   (files thefiles)
-	   (start (if (or (null org-agenda-start-on-weekday)
-			  (< ndays 7))
-		      sd
-		    (let* ((nt (calendar-day-of-week
-				(calendar-gregorian-from-absolute sd)))
-			   (n1 org-agenda-start-on-weekday)
-			   (d (- nt n1)))
-		      (- sd (+ (if (< d 0) 7 0) d)))))
-	   (day-numbers (list start))
-	   (day-cnt 0)
-	   (inhibit-redisplay (not debug-on-error))
-	   (org-agenda-show-log-scoped org-agenda-show-log)
-	   s e rtn rtnall file date d start-pos end-pos todayp
-	   clocktable-start clocktable-end filter)
-      (setq org-agenda-redo-command
-	    (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span) with-hour))
-      (dotimes (n (1- ndays))
-	(push (1+ (car day-numbers)) day-numbers))
-      (setq day-numbers (nreverse day-numbers))
-      (setq clocktable-start (car day-numbers)
-	    clocktable-end (1+ (or (org-last day-numbers) 0)))
-      (setq-local org-starting-day (car day-numbers))
-      (setq-local org-arg-loc arg)
-      (setq-local org-agenda-current-span (org-agenda-ndays-to-span span))
-      (unless org-agenda-compact-blocks
-	(let* ((d1 (car day-numbers))
-	       (d2 (org-last day-numbers))
-	       (w1 (org-days-to-iso-week d1))
-	       (w2 (org-days-to-iso-week d2)))
-	  (setq s (point))
-	  (if org-agenda-overriding-header
-	      (insert (org-add-props (copy-sequence org-agenda-overriding-header)
-			  nil 'face 'org-agenda-structure) "\n")
-	    (insert (org-agenda-span-name span)
-		    "-agenda"
-		    (if (< (- d2 d1) 350)
-			(if (= w1 w2)
-			    (format " (W%02d)" w1)
-			  (format " (W%02d-W%02d)" w1 w2))
-		      "")
-		    ":\n")))
-	(add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
-						  'org-date-line t))
-	(org-agenda-mark-header-line s))
-      (while (setq d (pop day-numbers))
-	(setq date (calendar-gregorian-from-absolute d)
-	      s (point))
-	(if (or (setq todayp (= d today))
-		(and (not start-pos) (= d sd)))
-	    (setq start-pos (point))
-	  (if (and start-pos (not end-pos))
-	      (setq end-pos (point))))
-	(setq files thefiles
-	      rtnall nil)
-	(while (setq file (pop files))
-	  (catch 'nextfile
-	    (org-check-agenda-file file)
-	    (let ((org-agenda-entry-types org-agenda-entry-types))
-	      ;; Starred types override non-starred equivalents
-	      (when (member :deadline* org-agenda-entry-types)
-		(setq org-agenda-entry-types
-		      (delq :deadline org-agenda-entry-types)))
-	      (when (member :scheduled* org-agenda-entry-types)
-		(setq org-agenda-entry-types
-		      (delq :scheduled org-agenda-entry-types)))
-	      ;; Honor with-hour
-	      (when with-hour
-		(when (member :deadline org-agenda-entry-types)
-		  (setq org-agenda-entry-types
-			(delq :deadline org-agenda-entry-types))
-		  (push :deadline* org-agenda-entry-types))
-		(when (member :scheduled org-agenda-entry-types)
-		  (setq org-agenda-entry-types
-			(delq :scheduled org-agenda-entry-types))
-		  (push :scheduled* org-agenda-entry-types)))
-	      (unless org-agenda-include-deadlines
-		(setq org-agenda-entry-types
-		      (delq :deadline* (delq :deadline org-agenda-entry-types))))
-	      (cond
-	       ((memq org-agenda-show-log-scoped '(only clockcheck))
-		(setq rtn (org-agenda-get-day-entries
-			   file date :closed)))
-	       (org-agenda-show-log-scoped
-		(setq rtn (apply 'org-agenda-get-day-entries
-				 file date
-				 (append '(:closed) org-agenda-entry-types))))
-	       (t
-		(setq rtn (apply 'org-agenda-get-day-entries
-				 file date
-				 org-agenda-entry-types)))))
-	    (setq rtnall (append rtnall rtn)))) ;; all entries
-	(if org-agenda-include-diary
-	    (let ((org-agenda-search-headline-for-time t))
-	      (require 'diary-lib)
-	      (setq rtn (org-get-entries-from-diary date))
-	      (setq rtnall (append rtnall rtn))))
-	(if (or rtnall org-agenda-show-all-dates)
-	    (progn
-	      (setq day-cnt (1+ day-cnt))
-	      (insert
-	       (if (stringp org-agenda-format-date)
-		   (format-time-string org-agenda-format-date
-				       (org-time-from-absolute date))
-		 (funcall org-agenda-format-date date))
-	       "\n")
-	      (put-text-property s (1- (point)) 'face
-				 (org-agenda-get-day-face date))
-	      (put-text-property s (1- (point)) 'org-date-line t)
-	      (put-text-property s (1- (point)) 'org-agenda-date-header t)
-	      (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
-	      (when todayp
-		(put-text-property s (1- (point)) 'org-today t))
-	      (setq rtnall
-		    (org-agenda-add-time-grid-maybe rtnall ndays todayp))
-	      (if rtnall (insert ;; all entries
-			  (org-agenda-finalize-entries rtnall 'agenda)
-			  "\n"))
-	      (put-text-property s (1- (point)) 'day d)
-	      (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
-      (when (and org-agenda-clockreport-mode clocktable-start)
-	(let ((org-agenda-files (org-agenda-files nil 'ifmode))
-	      ;; the above line is to ensure the restricted range!
-	      (p (copy-sequence org-agenda-clockreport-parameter-plist))
-	      tbl)
-	  (setq p (org-plist-delete p :block))
-	  (setq p (plist-put p :tstart clocktable-start))
-	  (setq p (plist-put p :tend clocktable-end))
-	  (setq p (plist-put p :scope 'agenda))
-	  (setq tbl (apply 'org-clock-get-clocktable p))
-	  (insert tbl)))
-      (goto-char (point-min))
-      (or org-agenda-multi (org-agenda-fit-window-to-buffer))
-      (unless (or (not (get-buffer-window))
-		  (and (pos-visible-in-window-p (point-min))
-		       (pos-visible-in-window-p (point-max))))
-	(goto-char (1- (point-max)))
-	(recenter -1)
-	(if (not (pos-visible-in-window-p (or start-pos 1)))
-	    (progn
-	      (goto-char (or start-pos 1))
-	      (recenter 1))))
-      (goto-char (or start-pos 1))
-      (add-text-properties (point-min) (point-max)
-			   `(org-agenda-type agenda
-					     org-last-args (,arg ,start-day ,span)
-					     org-redo-cmd ,org-agenda-redo-command
-					     org-series-cmd ,org-cmd))
-      (if (eq org-agenda-show-log-scoped 'clockcheck)
-	  (org-agenda-show-clocking-issues))
-      (org-agenda-finalize)
-      (setq buffer-read-only t)
-      (message ""))))
-
-(defun org-agenda-ndays-to-span (n)
-  "Return a span symbol for a span of N days, or N if none matches."
-  (cond ((symbolp n) n)
-	((= n 1) 'day)
-	((= n 7) 'week)
-	((= n 14) 'fortnight)
-	(t n)))
-
-(defun org-agenda-span-to-ndays (span &optional start-day)
-  "Return ndays from SPAN, possibly starting at START-DAY.
-START-DAY is an absolute time value."
-  (cond ((numberp span) span)
-	((eq span 'day) 1)
-	((eq span 'week) 7)
-	((eq span 'fortnight) 14)
-	((eq span 'month)
-	 (let ((date (calendar-gregorian-from-absolute start-day)))
-	   (calendar-last-day-of-month (car date) (cl-caddr date))))
-	((eq span 'year)
-	 (let ((date (calendar-gregorian-from-absolute start-day)))
-	   (if (calendar-leap-year-p (cl-caddr date)) 366 365)))))
-
-(defun org-agenda-span-name (span)
-  "Return a SPAN name."
-  (if (null span)
-      ""
-    (if (symbolp span)
-	(capitalize (symbol-name span))
-      (format "%d days" span))))
-
-;;; Agenda word search
-
-(defvar org-agenda-search-history nil)
-
-(defvar org-search-syntax-table nil
-  "Special syntax table for Org search.
-In this table, we have single quotes not as word constituents, to
-that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
-
-(defvar org-mode-syntax-table) ; From org.el
-(defun org-search-syntax-table ()
-  (unless org-search-syntax-table
-    (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
-    (modify-syntax-entry ?' "." org-search-syntax-table)
-    (modify-syntax-entry ?` "." org-search-syntax-table))
-  org-search-syntax-table)
-
-(defvar org-agenda-last-search-view-search-was-boolean nil)
-
-;;;###autoload
-(defun org-search-view (&optional todo-only string edit-at)
-  "Show all entries that contain a phrase or words or regular expressions.
-
-With optional prefix argument TODO-ONLY, only consider entries that are
-TODO entries.  The argument STRING can be used to pass a default search
-string into this function.  If EDIT-AT is non-nil, it means that the
-user should get a chance to edit this string, with cursor at position
-EDIT-AT.
-
-The search string can be viewed either as a phrase that should be found as
-is, or it can be broken into a number of snippets, each of which must match
-in a Boolean way to select an entry.  The default depends on the variable
-`org-agenda-search-view-always-boolean'.
-Even if this is turned off (the default) you can always switch to
-Boolean search dynamically by preceding the first word with  \"+\" or \"-\".
-
-The default is a direct search of the whole phrase, where each space in
-the search string can expand to an arbitrary amount of whitespace,
-including newlines.
-
-If using a Boolean search, the search string is split on whitespace and
-each snippet is searched separately, with logical AND to select an entry.
-Words prefixed with a minus must *not* occur in the entry.  Words without
-a prefix or prefixed with a plus must occur in the entry.  Matching is
-case-insensitive.  Words are enclosed by word delimiters (i.e. they must
-match whole words, not parts of a word) if
-`org-agenda-search-view-force-full-words' is set (default is nil).
-
-Boolean search snippets enclosed by curly braces are interpreted as
-regular expressions that must or (when preceded with \"-\") must not
-match in the entry.  Snippets enclosed into double quotes will be taken
-as a whole, to include whitespace.
-
-- If the search string starts with an asterisk, search only in headlines.
-- If (possibly after the leading star) the search string starts with an
-  exclamation mark, this also means to look at TODO entries only, an effect
-  that can also be achieved with a prefix argument.
-- If (possibly after star and exclamation mark) the search string starts
-  with a colon, this will mean that the (non-regexp) snippets of the
-  Boolean search must match as full words.
-
-This command searches the agenda files, and in addition the files
-listed in `org-agenda-text-search-extra-files' unless a restriction lock
-is active."
-  (interactive "P")
-  (if org-agenda-overriding-arguments
-      (setq todo-only (car org-agenda-overriding-arguments)
-	    string (nth 1 org-agenda-overriding-arguments)
-	    edit-at (nth 2 org-agenda-overriding-arguments)))
-  (let* ((props (list 'face nil
-		      'done-face 'org-agenda-done
-		      'org-not-done-regexp org-not-done-regexp
-		      'org-todo-regexp org-todo-regexp
-		      'org-complex-heading-regexp org-complex-heading-regexp
-		      'mouse-face 'highlight
-		      'help-echo (format "mouse-2 or RET jump to location")))
-	 (full-words org-agenda-search-view-force-full-words)
-	 (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
-	 regexp rtn rtnall files file pos inherited-tags
-	 marker category level tags c neg re boolean
-	 ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
-    (unless (and (not edit-at)
-		 (stringp string)
-		 (string-match "\\S-" string))
-      (setq string (read-string
-		    (if org-agenda-search-view-always-boolean
-			"[+-]Word/{Regexp} ...: "
-		      "Phrase or [+-]Word/{Regexp} ...: ")
-		    (cond
-		     ((integerp edit-at) (cons string edit-at))
-		     (edit-at string))
-		    'org-agenda-search-history)))
-    (catch 'exit
-      (if org-agenda-sticky
-	  (setq org-agenda-buffer-name
-		(if (stringp string)
-		    (format "*Org Agenda(%s:%s)*"
-			    (or org-keys (or (and todo-only "S") "s")) string)
-		  (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
-      (org-agenda-prepare "SEARCH")
-      (org-compile-prefix-format 'search)
-      (org-set-sorting-strategy 'search)
-      (setq org-agenda-redo-command
-	    (list 'org-search-view (if todo-only t nil)
-		  (list 'if 'current-prefix-arg nil string)))
-      (setq org-agenda-query-string string)
-      (if (equal (string-to-char string) ?*)
-	  (setq hdl-only t
-		words (substring string 1))
-	(setq words string))
-      (when (equal (string-to-char words) ?!)
-	(setq todo-only t
-	      words (substring words 1)))
-      (when (equal (string-to-char words) ?:)
-	(setq full-words t
-	      words (substring words 1)))
-      (if (or org-agenda-search-view-always-boolean
-	      (member (string-to-char words) '(?- ?+ ?\{)))
-	  (setq boolean t))
-      (setq words (split-string words))
-      (let (www w)
-	(while (setq w (pop words))
-	  (while (and (string-match "\\\\\\'" w) words)
-	    (setq w (concat (substring w 0 -1) " " (pop words))))
-	  (push w www))
-	(setq words (nreverse www) www nil)
-	(while (setq w (pop words))
-	  (when (and (string-match "\\`[-+]?{" w)
-		     (not (string-match "}\\'" w)))
-	    (while (and words (not (string-match "}\\'" (car words))))
-	      (setq w (concat w " " (pop words))))
-	    (setq w (concat w " " (pop words))))
-	  (push w www))
-	(setq words (nreverse www)))
-      (setq org-agenda-last-search-view-search-was-boolean boolean)
-      (when boolean
-	(let (wds w)
-	  (while (setq w (pop words))
-	    (if (or (equal (substring w 0 1) "\"")
-		    (and (> (length w) 1)
-			 (member (substring w 0 1) '("+" "-"))
-			 (equal (substring w 1 2) "\"")))
-		(while (and words (not (equal (substring w -1) "\"")))
-		  (setq w (concat w " " (pop words)))))
-	    (and (string-match "\\`\\([-+]?\\)\"" w)
-		 (setq w (replace-match "\\1" nil nil w)))
-	    (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
-	    (push w wds))
-	  (setq words (nreverse wds))))
-      (if boolean
-	  (mapc (lambda (w)
-		  (setq c (string-to-char w))
-		  (if (equal c ?-)
-		      (setq neg t w (substring w 1))
-		    (if (equal c ?+)
-			(setq neg nil w (substring w 1))
-		      (setq neg nil)))
-		  (if (string-match "\\`{.*}\\'" w)
-		      (setq re (substring w 1 -1))
-		    (if full-words
-			(setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
-		      (setq re (regexp-quote (downcase w)))))
-		  (if neg (push re regexps-) (push re regexps+)))
-		words)
-	(push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
-	      regexps+))
-      (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
-      (if (not regexps+)
-	  (setq regexp org-outline-regexp-bol)
-	(setq regexp (pop regexps+))
-	(if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
-					  regexp))))
-      (setq files (org-agenda-files nil 'ifmode))
-      ;; Add `org-agenda-text-search-extra-files' unless there is some
-      ;; restriction.
-      (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
-	(pop org-agenda-text-search-extra-files)
-	(unless (get 'org-agenda-files 'org-restrict)
-	  (setq files (org-add-archive-files files))))
-      ;; Uniquify files.  However, let `org-check-agenda-file' handle
-      ;; non-existent ones.
-      (setq files (cl-remove-duplicates
-		   (append files org-agenda-text-search-extra-files)
-		   :test (lambda (a b)
-			   (and (file-exists-p a)
-				(file-exists-p b)
-				(file-equal-p a b))))
-	    rtnall nil)
-      (while (setq file (pop files))
-	(setq ee nil)
-	(catch 'nextfile
-	  (org-check-agenda-file file)
-	  (setq buffer (if (file-exists-p file)
-			   (org-get-agenda-file-buffer file)
-			 (error "No such file %s" file)))
-	  (if (not buffer)
-	      ;; If file does not exist, make sure an error message is sent
-	      (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
-				      file))))
-	  (with-current-buffer buffer
-	    (with-syntax-table (org-search-syntax-table)
-	      (unless (derived-mode-p 'org-mode)
-		(error "Agenda file %s is not in Org mode" file))
-	      (let ((case-fold-search t))
-		(save-excursion
-		  (save-restriction
-		    (if (eq buffer org-agenda-restrict)
-			(narrow-to-region org-agenda-restrict-begin
-					  org-agenda-restrict-end)
-		      (widen))
-		    (goto-char (point-min))
-		    (unless (or (org-at-heading-p)
-				(outline-next-heading))
-		      (throw 'nextfile t))
-		    (goto-char (max (point-min) (1- (point))))
-		    (while (re-search-forward regexp nil t)
-		      (org-back-to-heading t)
-		      (while (and (not (zerop org-agenda-search-view-max-outline-level))
-				  (> (org-reduced-level (org-outline-level))
-				     org-agenda-search-view-max-outline-level)
-				  (forward-line -1)
-				  (org-back-to-heading t)))
-		      (skip-chars-forward "* ")
-		      (setq beg (point-at-bol)
-			    beg1 (point)
-			    end (progn
-				  (outline-next-heading)
-				  (while (and (not (zerop org-agenda-search-view-max-outline-level))
-					      (> (org-reduced-level (org-outline-level))
-						 org-agenda-search-view-max-outline-level)
-					      (forward-line 1)
-					      (outline-next-heading)))
-				  (point)))
-
-		      (catch :skip
-			(goto-char beg)
-			(org-agenda-skip)
-			(setq str (buffer-substring-no-properties
-				   (point-at-bol)
-				   (if hdl-only (point-at-eol) end)))
-			(mapc (lambda (wr) (when (string-match wr str)
-					(goto-char (1- end))
-					(throw :skip t)))
-			      regexps-)
-			(mapc (lambda (wr) (unless (string-match wr str)
-					(goto-char (1- end))
-					(throw :skip t)))
-			      (if todo-only
-				  (cons (concat "^\\*+[ \t]+"
-                                                org-not-done-regexp)
-					regexps+)
-				regexps+))
-			(goto-char beg)
-			(setq marker (org-agenda-new-marker (point))
-			      category (org-get-category)
-			      level (make-string (org-reduced-level (org-outline-level)) ? )
-			      inherited-tags
-			      (or (eq org-agenda-show-inherited-tags 'always)
-				  (and (listp org-agenda-show-inherited-tags)
-				       (memq 'todo org-agenda-show-inherited-tags))
-				  (and (eq org-agenda-show-inherited-tags t)
-				       (or (eq org-agenda-use-tag-inheritance t)
-					   (memq 'todo org-agenda-use-tag-inheritance))))
-			      tags (org-get-tags-at nil (not inherited-tags))
-			      txt (org-agenda-format-item
-				   ""
-				   (buffer-substring-no-properties
-				    beg1 (point-at-eol))
-				   level category tags t))
-			(org-add-props txt props
-			  'org-marker marker 'org-hd-marker marker
-			  'org-todo-regexp org-todo-regexp
-			  'level level
-			  'org-complex-heading-regexp org-complex-heading-regexp
-			  'priority 1000
-			  'type "search")
-			(push txt ee)
-			(goto-char (1- end))))))))))
-	(setq rtn (nreverse ee))
-	(setq rtnall (append rtnall rtn)))
-      (if org-agenda-overriding-header
-	  (insert (org-add-props (copy-sequence org-agenda-overriding-header)
-		      nil 'face 'org-agenda-structure) "\n")
-	(insert "Search words: ")
-	(add-text-properties (point-min) (1- (point))
-			     (list 'face 'org-agenda-structure))
-	(setq pos (point))
-	(insert string "\n")
-	(add-text-properties pos (1- (point)) (list 'face 'org-warning))
-	(setq pos (point))
-	(unless org-agenda-multi
-	  (insert (substitute-command-keys "\
-Press `\\[org-agenda-manipulate-query-add]', \
-`\\[org-agenda-manipulate-query-subtract]' to add/sub word, \
-`\\[org-agenda-manipulate-query-add-re]', \
-`\\[org-agenda-manipulate-query-subtract-re]' to add/sub regexp, \
-`\\[universal-argument] \\[org-agenda-redo]' to edit\n"))
-	  (add-text-properties pos (1- (point))
-			       (list 'face 'org-agenda-structure))))
-      (org-agenda-mark-header-line (point-min))
-      (when rtnall
-	(insert (org-agenda-finalize-entries rtnall 'search) "\n"))
-      (goto-char (point-min))
-      (or org-agenda-multi (org-agenda-fit-window-to-buffer))
-      (add-text-properties (point-min) (point-max)
-			   `(org-agenda-type search
-					     org-last-args (,todo-only ,string ,edit-at)
-					     org-redo-cmd ,org-agenda-redo-command
-					     org-series-cmd ,org-cmd))
-      (org-agenda-finalize)
-      (setq buffer-read-only t))))
-
-;;; Agenda TODO list
-
-(defun org-agenda-propertize-selected-todo-keywords (keywords)
-  "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
-  (concat
-   (if (or (equal keywords "ALL") (not keywords))
-       (propertize "ALL" 'face 'warning)
-     (mapconcat
-      (lambda (kw)
-        (propertize kw 'face (org-get-todo-face kw)))
-      (org-split-string keywords "|")
-      "|"))
-   "\n"))
-
-(defvar org-select-this-todo-keyword nil)
-(defvar org-last-arg nil)
-
-;;;###autoload
-(defun org-todo-list (&optional arg)
-  "Show all (not done) TODO entries from all agenda file in a single list.
-The prefix arg can be used to select a specific TODO keyword and limit
-the list to these.  When using `\\[universal-argument]', you will be prompted
-for a keyword.  A numeric prefix directly selects the Nth keyword in
-`org-todo-keywords-1'."
-  (interactive "P")
-  (if org-agenda-overriding-arguments
-      (setq arg org-agenda-overriding-arguments))
-  (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
-  (let* ((today (org-today))
-	 (date (calendar-gregorian-from-absolute today))
-	 (kwds org-todo-keywords-for-agenda)
-	 (completion-ignore-case t)
-	 (org-select-this-todo-keyword
-	  (if (stringp arg) arg
-	    (and arg (integerp arg) (> arg 0)
-                 (nth (1- arg) kwds))))
-	 rtn rtnall files file pos)
-    (when (equal arg '(4))
-      (setq org-select-this-todo-keyword
-	    (completing-read "Keyword (or KWD1|K2D2|...): "
-			     (mapcar #'list kwds) nil nil)))
-    (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
-    (catch 'exit
-      (if org-agenda-sticky
-	  (setq org-agenda-buffer-name
-		(if (stringp org-select-this-todo-keyword)
-		    (format "*Org Agenda(%s:%s)*" (or org-keys "t")
-			    org-select-this-todo-keyword)
-		  (format "*Org Agenda(%s)*" (or org-keys "t")))))
-      (org-agenda-prepare "TODO")
-      (org-compile-prefix-format 'todo)
-      (org-set-sorting-strategy 'todo)
-      (setq org-agenda-redo-command
-	    `(org-todo-list (or (and (numberp current-prefix-arg)
-				     current-prefix-arg)
-				,org-select-this-todo-keyword
-				current-prefix-arg ,arg)))
-      (setq files (org-agenda-files nil 'ifmode)
-	    rtnall nil)
-      (while (setq file (pop files))
-	(catch 'nextfile
-	  (org-check-agenda-file file)
-	  (setq rtn (org-agenda-get-day-entries file date :todo))
-	  (setq rtnall (append rtnall rtn))))
-      (if org-agenda-overriding-header
-	  (insert (org-add-props (copy-sequence org-agenda-overriding-header)
-		      nil 'face 'org-agenda-structure) "\n")
-	(insert "Global list of TODO items of type: ")
-	(add-text-properties (point-min) (1- (point))
-			     (list 'face 'org-agenda-structure
-				   'short-heading
-				   (concat "ToDo: "
-					   (or org-select-this-todo-keyword "ALL"))))
-	(org-agenda-mark-header-line (point-min))
-	(insert (org-agenda-propertize-selected-todo-keywords
-		 org-select-this-todo-keyword))
-	(setq pos (point))
-	(unless org-agenda-multi
-	  (insert (substitute-command-keys "Available with \
-`N \\[org-agenda-redo]': (0)[ALL]"))
-	  (let ((n 0) s)
-	    (mapc (lambda (x)
-		    (setq s (format "(%d)%s" (setq n (1+ n)) x))
-		    (if (> (+ (current-column) (string-width s) 1) (frame-width))
-			(insert "\n                     "))
-		    (insert " " s))
-		  kwds))
-	  (insert "\n"))
-	(add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
-      (org-agenda-mark-header-line (point-min))
-      (when rtnall
-	(insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
-      (goto-char (point-min))
-      (or org-agenda-multi (org-agenda-fit-window-to-buffer))
-      (add-text-properties (point-min) (point-max)
-			   `(org-agenda-type todo
-					     org-last-args ,arg
-					     org-redo-cmd ,org-agenda-redo-command
-					     org-series-cmd ,org-cmd))
-      (org-agenda-finalize)
-      (setq buffer-read-only t))))
-
-;;; Agenda tags match
-
-;;;###autoload
-(defun org-tags-view (&optional todo-only match)
-  "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
-The prefix arg TODO-ONLY limits the search to TODO entries."
-  (interactive "P")
-  (if org-agenda-overriding-arguments
-      (setq todo-only (car org-agenda-overriding-arguments)
-	    match (nth 1 org-agenda-overriding-arguments)))
-  (let* ((org-tags-match-list-sublevels
-	  org-tags-match-list-sublevels)
-	 (completion-ignore-case t)
-	 (org--matcher-tags-todo-only todo-only)
-	 rtn rtnall files file pos matcher
-	 buffer)
-    (when (and (stringp match) (not (string-match "\\S-" match)))
-      (setq match nil))
-    (catch 'exit
-      (if org-agenda-sticky
-	  (setq org-agenda-buffer-name
-		(if (stringp match)
-		    (format "*Org Agenda(%s:%s)*"
-			    (or org-keys (or (and todo-only "M") "m")) match)
-		  (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
-      (setq matcher (org-make-tags-matcher match))
-      ;; Prepare agendas (and `org-tag-alist-for-agenda') before
-      ;; expanding tags within `org-make-tags-matcher'
-      (org-agenda-prepare (concat "TAGS " match))
-      (setq match (car matcher)
-	    matcher (cdr matcher))
-      (org-compile-prefix-format 'tags)
-      (org-set-sorting-strategy 'tags)
-      (setq org-agenda-query-string match)
-      (setq org-agenda-redo-command
-	    (list 'org-tags-view
-		  `(quote ,org--matcher-tags-todo-only)
-		  `(if current-prefix-arg nil ,org-agenda-query-string)))
-      (setq files (org-agenda-files nil 'ifmode)
-	    rtnall nil)
-      (while (setq file (pop files))
-	(catch 'nextfile
-	  (org-check-agenda-file file)
-	  (setq buffer (if (file-exists-p file)
-			   (org-get-agenda-file-buffer file)
-			 (error "No such file %s" file)))
-	  (if (not buffer)
-	      ;; If file does not exist, error message to agenda
-	      (setq rtn (list
-			 (format "ORG-AGENDA-ERROR: No such org-file %s" file))
-		    rtnall (append rtnall rtn))
-	    (with-current-buffer buffer
-	      (unless (derived-mode-p 'org-mode)
-		(error "Agenda file %s is not in Org mode" file))
-	      (save-excursion
-		(save-restriction
-		  (if (eq buffer org-agenda-restrict)
-		      (narrow-to-region org-agenda-restrict-begin
-					org-agenda-restrict-end)
-		    (widen))
-		  (setq rtn (org-scan-tags 'agenda
-					   matcher
-					   org--matcher-tags-todo-only))
-		  (setq rtnall (append rtnall rtn))))))))
-      (if org-agenda-overriding-header
-	  (insert (org-add-props (copy-sequence org-agenda-overriding-header)
-		      nil 'face 'org-agenda-structure) "\n")
-	(insert "Headlines with TAGS match: ")
-	(add-text-properties (point-min) (1- (point))
-			     (list 'face 'org-agenda-structure
-				   'short-heading
-				   (concat "Match: " match)))
-	(setq pos (point))
-	(insert match "\n")
-	(add-text-properties pos (1- (point)) (list 'face 'org-warning))
-	(setq pos (point))
-	(unless org-agenda-multi
-	  (insert (substitute-command-keys
-		   "Press `\\[universal-argument] \\[org-agenda-redo]' \
-to search again with new search string\n")))
-	(add-text-properties pos (1- (point))
-			     (list 'face 'org-agenda-structure)))
-      (org-agenda-mark-header-line (point-min))
-      (when rtnall
-	(insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
-      (goto-char (point-min))
-      (or org-agenda-multi (org-agenda-fit-window-to-buffer))
-      (add-text-properties
-       (point-min) (point-max)
-       `(org-agenda-type tags
-			 org-last-args (,org--matcher-tags-todo-only ,match)
-			 org-redo-cmd ,org-agenda-redo-command
-			 org-series-cmd ,org-cmd))
-      (org-agenda-finalize)
-      (setq buffer-read-only t))))
-
-;;; Agenda Finding stuck projects
-
-(defvar org-agenda-skip-regexp nil
-  "Regular expression used in skipping subtrees for the agenda.
-This is basically a temporary global variable that can be set and then
-used by user-defined selections using `org-agenda-skip-function'.")
-
-(defvar org-agenda-overriding-header nil
-  "When set during agenda, todo and tags searches it replaces the header.
-This variable should not be set directly, but custom commands can bind it
-in the options section.")
-
-(defun org-agenda-skip-entry-if (&rest conditions)
-  "Skip entry if any of CONDITIONS is true.
-See `org-agenda-skip-if' for details."
-  (org-agenda-skip-if nil conditions))
-
-(defun org-agenda-skip-subtree-if (&rest conditions)
-  "Skip subtree if any of CONDITIONS is true.
-See `org-agenda-skip-if' for details."
-  (org-agenda-skip-if t conditions))
-
-(defun org-agenda-skip-if (subtree conditions)
-  "Checks current entity for CONDITIONS.
-If SUBTREE is non-nil, the entire subtree is checked.  Otherwise, only
-the entry (i.e. the text before the next heading) is checked.
-
-CONDITIONS is a list of symbols, boolean OR is used to combine the results
-from different tests.  Valid conditions are:
-
-scheduled     Check if there is a scheduled cookie
-notscheduled  Check if there is no scheduled cookie
-deadline      Check if there is a deadline
-notdeadline   Check if there is no deadline
-timestamp     Check if there is a timestamp (also deadline or scheduled)
-nottimestamp  Check if there is no timestamp (also deadline or scheduled)
-regexp        Check if regexp matches
-notregexp     Check if regexp does not match.
-todo          Check if TODO keyword matches
-nottodo       Check if TODO keyword does not match
-
-The regexp is taken from the conditions list, it must come right after
-the `regexp' or `notregexp' element.
-
-`todo' and `nottodo' accept as an argument a list of todo
-keywords, which may include \"*\" to match any todo keyword.
-
-    (org-agenda-skip-entry-if \\='todo \\='(\"TODO\" \"WAITING\"))
-
-would skip all entries with \"TODO\" or \"WAITING\" keywords.
-
-Instead of a list, a keyword class may be given.  For example:
-
-    (org-agenda-skip-entry-if \\='nottodo \\='done)
-
-would skip entries that haven't been marked with any of \"DONE\"
-keywords.  Possible classes are: `todo', `done', `any'.
-
-If any of these conditions is met, this function returns the end point of
-the entity, causing the search to continue from there.  This is a function
-that can be put into `org-agenda-skip-function' for the duration of a command."
-  (org-back-to-heading t)
-  (let* ((beg (point))
-	 (end (if subtree (save-excursion (org-end-of-subtree t) (point))
-		(org-entry-end-position)))
-	 (planning-end (if subtree end (line-end-position 2)))
-	 m)
-    (and
-     (or (and (memq 'scheduled conditions)
-	      (re-search-forward org-scheduled-time-regexp planning-end t))
-	 (and (memq 'notscheduled conditions)
-	      (not
-	       (save-excursion
-		 (re-search-forward org-scheduled-time-regexp planning-end t))))
-	 (and (memq 'deadline conditions)
-	      (re-search-forward org-deadline-time-regexp planning-end t))
-	 (and (memq 'notdeadline conditions)
-	      (not
-	       (save-excursion
-		 (re-search-forward org-deadline-time-regexp planning-end t))))
-	 (and (memq 'timestamp conditions)
-	      (re-search-forward org-ts-regexp end t))
-	 (and (memq 'nottimestamp conditions)
-	      (not (save-excursion (re-search-forward org-ts-regexp end t))))
-	 (and (setq m (memq 'regexp conditions))
-	      (stringp (nth 1 m))
-	      (re-search-forward (nth 1 m) end t))
-	 (and (setq m (memq 'notregexp conditions))
-	      (stringp (nth 1 m))
-	      (not (save-excursion (re-search-forward (nth 1 m) end t))))
-	 (and (or
-	       (setq m (memq 'nottodo conditions))
-	       (setq m (memq 'todo-unblocked conditions))
-	       (setq m (memq 'nottodo-unblocked conditions))
-	       (setq m (memq 'todo conditions)))
-	      (org-agenda-skip-if-todo m end)))
-     end)))
-
-(defun org-agenda-skip-if-todo (args end)
-  "Helper function for `org-agenda-skip-if', do not use it directly.
-ARGS is a list with first element either `todo', `nottodo',
-`todo-unblocked' or `nottodo-unblocked'.  The remainder is either
-a list of TODO keywords, or a state symbol `todo' or `done' or
-`any'."
-  (let ((todo-re
-	 (concat "^\\*+[ \t]+"
-		 (regexp-opt
-		  (pcase args
-		    (`(,_ todo)
-		     (org-delete-all org-done-keywords
-				     (copy-sequence org-todo-keywords-1)))
-		    (`(,_ done) org-done-keywords)
-		    (`(,_ any) org-todo-keywords-1)
-		    (`(,_ ,(pred atom))
-		     (error "Invalid TODO class or type: %S" args))
-		    (`(,_ ,(pred (member "*"))) org-todo-keywords-1)
-		    (`(,_ ,todo-list) todo-list))
-		  'words))))
-    (pcase args
-      (`(todo . ,_)
-       (let (case-fold-search) (re-search-forward todo-re end t)))
-      (`(nottodo . ,_)
-       (not (let (case-fold-search) (re-search-forward todo-re end t))))
-      (`(todo-unblocked . ,_)
-       (catch :unblocked
-	 (while (let (case-fold-search) (re-search-forward todo-re end t))
-	   (when (org-entry-blocked-p) (throw :unblocked t)))
-	 nil))
-      (`(nottodo-unblocked . ,_)
-       (catch :unblocked
-	 (while (let (case-fold-search) (re-search-forward todo-re end t))
-	   (when (org-entry-blocked-p) (throw :unblocked nil)))
-	 t))
-      (`(,type . ,_) (error "Unknown TODO skip type: %S" type)))))
-
-;;;###autoload
-(defun org-agenda-list-stuck-projects (&rest ignore)
-  "Create agenda view for projects that are stuck.
-Stuck projects are project that have no next actions.  For the definitions
-of what a project is and how to check if it stuck, customize the variable
-`org-stuck-projects'."
-  (interactive)
-  (let* ((org-agenda-overriding-header
-	  (or org-agenda-overriding-header "List of stuck projects: "))
-	 (matcher (nth 0 org-stuck-projects))
-	 (todo (nth 1 org-stuck-projects))
-	 (tags (nth 2 org-stuck-projects))
-	 (gen-re (org-string-nw-p (nth 3 org-stuck-projects)))
-	 (todo-wds
-	  (if (not (member "*" todo)) todo
-	    (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
-	    (org-delete-all org-done-keywords-for-agenda
-			    (copy-sequence org-todo-keywords-for-agenda))))
-	 (todo-re (and todo
-		       (format "^\\*+[ \t]+\\(%s\\)\\>"
-			       (mapconcat #'identity todo-wds "\\|"))))
-	 (tags-re (cond ((null tags) nil)
-			((member "*" tags)
-			 (eval-when-compile
-			   (concat org-outline-regexp-bol
-				   ".*:[[:alnum:]_@#%]+:[ \t]*$")))
-			(tags (concat org-outline-regexp-bol
-				      ".*:\\("
-				      (mapconcat #'identity tags "\\|")
-				      "\\):[[:alnum:]_@#%:]*[ \t]*$"))
-			(t nil)))
-	 (re-list (delq nil (list todo-re tags-re gen-re)))
-	 (skip-re
-	  (if (null re-list)
-	      (error "Missing information to identify unstuck projects")
-	    (mapconcat #'identity re-list "\\|")))
-	 (org-agenda-skip-function
-	  ;; Skip entry if `org-agenda-skip-regexp' matches anywhere
-	  ;; in the subtree.
-	  `(lambda ()
-	     (and (save-excursion
-		    (let ((case-fold-search nil))
-		      (re-search-forward
-		       ,skip-re (save-excursion (org-end-of-subtree t)) t)))
-		  (progn (outline-next-heading) (point))))))
-    (org-tags-view nil matcher)
-    (setq org-agenda-buffer-name (buffer-name))
-    (with-current-buffer org-agenda-buffer-name
-      (setq org-agenda-redo-command
-	    `(org-agenda-list-stuck-projects ,current-prefix-arg))
-      (let ((inhibit-read-only t))
-        (add-text-properties
-         (point-min) (point-max)
-         `(org-redo-cmd ,org-agenda-redo-command))))))
-
-;;; Diary integration
-
-(defvar org-disable-agenda-to-diary nil)          ;Dynamically-scoped param.
-(defvar diary-list-entries-hook)
-(defvar diary-time-regexp)
-(defun org-get-entries-from-diary (date)
-  "Get the (Emacs Calendar) diary entries for DATE."
-  (require 'diary-lib)
-  (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
-	 (diary-display-function 'diary-fancy-display)
-	 (pop-up-frames nil)
-	 (diary-list-entries-hook
-	  (cons 'org-diary-default-entry diary-list-entries-hook))
-	 (diary-file-name-prefix nil) ; turn this feature off
-	 (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
-	 entries
-	 (org-disable-agenda-to-diary t))
-    (save-excursion
-      (save-window-excursion
-	(funcall (if (fboundp 'diary-list-entries)
-		     'diary-list-entries 'list-diary-entries)
-		 date 1)))
-    (if (not (get-buffer diary-fancy-buffer))
-	(setq entries nil)
-      (with-current-buffer diary-fancy-buffer
-	(setq buffer-read-only nil)
-	(if (zerop (buffer-size))
-	    ;; No entries
-	    (setq entries nil)
-	  ;; Omit the date and other unnecessary stuff
-	  (org-agenda-cleanup-fancy-diary)
-	  ;; Add prefix to each line and extend the text properties
-	  (if (zerop (buffer-size))
-	      (setq entries nil)
-	    (setq entries (buffer-substring (point-min) (- (point-max) 1)))
-	    (setq entries
-		  (with-temp-buffer
-		    (insert entries) (goto-char (point-min))
-		    (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
-		      (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
-			(replace-match (concat "; " (match-string 1)))))
-		    (buffer-string)))))
-	(set-buffer-modified-p nil)
-	(kill-buffer diary-fancy-buffer)))
-    (when entries
-      (setq entries (org-split-string entries "\n"))
-      (setq entries
-	    (mapcar
-	     (lambda (x)
-	       (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
-	       ;; Extend the text properties to the beginning of the line
-	       (org-add-props x (text-properties-at (1- (length x)) x)
-		 'type "diary" 'date date 'face 'org-agenda-diary))
-	     entries)))))
-
-(defvar org-agenda-cleanup-fancy-diary-hook nil
-  "Hook run when the fancy diary buffer is cleaned up.")
-
-(defun org-agenda-cleanup-fancy-diary ()
-  "Remove unwanted stuff in buffer created by `fancy-diary-display'.
-This gets rid of the date, the underline under the date, and the
-dummy entry installed by Org mode to ensure non-empty diary for
-each date.  It also removes lines that contain only whitespace."
-  (goto-char (point-min))
-  (if (looking-at ".*?:[ \t]*")
-      (progn
-	(replace-match "")
-	(re-search-forward "\n=+$" nil t)
-	(replace-match "")
-	(while (re-search-backward "^ +\n?" nil t) (replace-match "")))
-    (re-search-forward "\n=+$" nil t)
-    (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
-  (goto-char (point-min))
-  (while (re-search-forward "^ +\n" nil t)
-    (replace-match ""))
-  (goto-char (point-min))
-  (if (re-search-forward "^Org mode dummy\n?" nil t)
-      (replace-match ""))
-  (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
-
-;; Make sure entries from the diary have the right text properties.
-(eval-after-load "diary-lib"
-  '(if (boundp 'diary-modify-entry-list-string-function)
-       ;; We can rely on the hook, nothing to do
-       nil
-     ;; Hook not available, must use advice to make this work
-     (defadvice add-to-diary-list (before org-mark-diary-entry activate)
-       "Make the position visible."
-       (if (and org-disable-agenda-to-diary  ;; called from org-agenda
-		(stringp string)
-		buffer-file-name)
-	   (setq string (org-modify-diary-entry-string string))))))
-
-(defun org-modify-diary-entry-string (string)
-  "Add text properties to string, allowing Org to act on it."
-  (org-add-props string nil
-    'mouse-face 'highlight
-    'help-echo (if buffer-file-name
-		   (format "mouse-2 or RET jump to diary file %s"
-			   (abbreviate-file-name buffer-file-name))
-		 "")
-    'org-agenda-diary-link t
-    'org-marker (org-agenda-new-marker (point-at-bol))))
-
-(defun org-diary-default-entry ()
-  "Add a dummy entry to the diary.
-Needed to avoid empty dates which mess up holiday display."
-  ;; Catch the error if dealing with the new add-to-diary-alist
-  (when org-disable-agenda-to-diary
-    (condition-case nil
-	(org-add-to-diary-list original-date "Org mode dummy" "")
-      (error
-       (org-add-to-diary-list original-date  "Org mode dummy" "" nil)))))
-
-(defun org-add-to-diary-list (&rest args)
-  (if (fboundp 'diary-add-to-list)
-      (apply 'diary-add-to-list args)
-    (apply 'add-to-diary-list args)))
-
-(defvar org-diary-last-run-time nil)
-
-;;;###autoload
-(defun org-diary (&rest args)
-  "Return diary information from org files.
-This function can be used in a \"sexp\" diary entry in the Emacs calendar.
-It accesses org files and extracts information from those files to be
-listed in the diary.  The function accepts arguments specifying what
-items should be listed.  For a list of arguments allowed here, see the
-variable `org-agenda-entry-types'.
-
-The call in the diary file should look like this:
-
-   &%%(org-diary) ~/path/to/some/orgfile.org
-
-Use a separate line for each org file to check.  Or, if you omit the file name,
-all files listed in `org-agenda-files' will be checked automatically:
-
-   &%%(org-diary)
-
-If you don't give any arguments (as in the example above), the default value
-of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
-So the example above may also be written as
-
-   &%%(org-diary :deadline :timestamp :sexp :scheduled)
-
-The function expects the lisp variables `entry' and `date' to be provided
-by the caller, because this is how the calendar works.  Don't use this
-function from a program - use `org-agenda-get-day-entries' instead."
-  (when (> (- (float-time)
-	      org-agenda-last-marker-time)
-	   5)
-    ;; I am not sure if this works with sticky agendas, because the marker
-    ;; list is then no longer a global variable.
-    (org-agenda-reset-markers))
-  (org-compile-prefix-format 'agenda)
-  (org-set-sorting-strategy 'agenda)
-  (setq args (or args org-agenda-entry-types))
-  (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
-		    (list entry)
-		  (org-agenda-files t)))
-	 (time (float-time))
-	 file rtn results)
-    (when (or (not org-diary-last-run-time)
-	      (> (- time
-		    org-diary-last-run-time)
-		 3))
-      (org-agenda-prepare-buffers files))
-    (setq org-diary-last-run-time time)
-    ;; If this is called during org-agenda, don't return any entries to
-    ;; the calendar.  Org Agenda will list these entries itself.
-    (if org-disable-agenda-to-diary (setq files nil))
-    (while (setq file (pop files))
-      (setq rtn (apply 'org-agenda-get-day-entries file date args))
-      (setq results (append results rtn)))
-    (when results
-      (setq results
-	    (mapcar (lambda (i) (replace-regexp-in-string
-				 org-bracket-link-regexp "\\3" i)) results))
-      (concat (org-agenda-finalize-entries results) "\n"))))
-
-;;; Agenda entry finders
-
-(defun org-agenda--timestamp-to-absolute (&rest args)
-  "Call `org-time-string-to-absolute' with ARGS.
-However, throw `:skip' whenever an error is raised."
-  (condition-case e
-      (apply #'org-time-string-to-absolute args)
-    (org-diary-sexp-no-match (throw :skip nil))
-    (error
-     (message "%s; Skipping entry" (error-message-string e))
-     (throw :skip nil))))
-
-(defun org-agenda-get-day-entries (file date &rest args)
-  "Does the work for `org-diary' and `org-agenda'.
-FILE is the path to a file to be checked for entries.  DATE is date like
-the one returned by `calendar-current-date'.  ARGS are symbols indicating
-which kind of entries should be extracted.  For details about these, see
-the documentation of `org-diary'."
-  (let* ((org-startup-folded nil)
-	 (org-startup-align-all-tables nil)
-	 (buffer (if (file-exists-p file) (org-get-agenda-file-buffer file)
-		   (error "No such file %s" file))))
-    (if (not buffer)
-	;; If file does not exist, signal it in diary nonetheless.
-	(list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
-      (with-current-buffer buffer
-	(unless (derived-mode-p 'org-mode)
-	  (error "Agenda file %s is not in Org mode" file))
-	(setq org-agenda-buffer (or org-agenda-buffer buffer))
-	(setf org-agenda-current-date date)
-	(save-excursion
-	  (save-restriction
-	    (if (eq buffer org-agenda-restrict)
-		(narrow-to-region org-agenda-restrict-begin
-				  org-agenda-restrict-end)
-	      (widen))
-	    ;; Rationalize ARGS.  Also make sure `:deadline' comes
-	    ;; first in order to populate DEADLINES before passing it.
-	    ;;
-	    ;; We use `delq' since `org-uniquify' duplicates ARGS,
-	    ;; guarding us from modifying `org-agenda-entry-types'.
-	    (setf args (org-uniquify (or args org-agenda-entry-types)))
-	    (when (and (memq :scheduled args) (memq :scheduled* args))
-	      (setf args (delq :scheduled* args)))
-	    (cond
-	     ((memq :deadline args)
-	      (setf args (cons :deadline
-			       (delq :deadline (delq :deadline* args)))))
-	     ((memq :deadline* args)
-	      (setf args (cons :deadline* (delq :deadline* args)))))
-	    ;; Collect list of headlines.  Return them flattened.
-	    (let ((case-fold-search nil) results deadlines)
-	      (dolist (arg args (apply #'nconc (nreverse results)))
-		(pcase arg
-		  ((and :todo (guard (org-agenda-today-p date)))
-		   (push (org-agenda-get-todos) results))
-		  (:timestamp
-		   (push (org-agenda-get-blocks) results)
-		   (push (org-agenda-get-timestamps deadlines) results))
-		  (:sexp
-		   (push (org-agenda-get-sexps) results))
-		  (:scheduled
-		   (push (org-agenda-get-scheduled deadlines) results))
-		  (:scheduled*
-		   (push (org-agenda-get-scheduled deadlines t) results))
-		  (:closed
-		   (push (org-agenda-get-progress) results))
-		  (:deadline
-		   (setf deadlines (org-agenda-get-deadlines))
-		   (push deadlines results))
-		  (:deadline*
-		   (setf deadlines (org-agenda-get-deadlines t))
-		   (push deadlines results)))))))))))
-
-(defsubst org-em (x y list)
-  "Is X or Y a member of LIST?"
-  (or (memq x list) (memq y list)))
-
-(defvar org-heading-keyword-regexp-format) ; defined in org.el
-(defvar org-agenda-sorting-strategy-selected nil)
-
-(defun org-agenda-entry-get-agenda-timestamp (pom)
-  "Retrieve timestamp information for sorting agenda views.
-Given a point or marker POM, returns a cons cell of the timestamp
-and the timestamp type relevant for the sorting strategy in
-`org-agenda-sorting-strategy-selected'."
-  (let (ts ts-date-type)
-    (save-match-data
-      (cond ((org-em 'scheduled-up 'scheduled-down
-		     org-agenda-sorting-strategy-selected)
-	     (setq ts (org-entry-get pom "SCHEDULED")
-		   ts-date-type " scheduled"))
-	    ((org-em 'deadline-up 'deadline-down
-		     org-agenda-sorting-strategy-selected)
-	     (setq ts (org-entry-get pom "DEADLINE")
-		   ts-date-type " deadline"))
-	    ((org-em 'ts-up 'ts-down
-		     org-agenda-sorting-strategy-selected)
-	     (setq ts (org-entry-get pom "TIMESTAMP")
-		   ts-date-type " timestamp"))
-	    ((org-em 'tsia-up 'tsia-down
-		     org-agenda-sorting-strategy-selected)
-	     (setq ts (org-entry-get pom "TIMESTAMP_IA")
-		   ts-date-type " timestamp_ia"))
-	    ((org-em 'timestamp-up 'timestamp-down
-		     org-agenda-sorting-strategy-selected)
-	     (setq ts (or (org-entry-get pom "SCHEDULED")
-			  (org-entry-get pom "DEADLINE")
-			  (org-entry-get pom "TIMESTAMP")
-			  (org-entry-get pom "TIMESTAMP_IA"))
-		   ts-date-type ""))
-	    (t (setq ts-date-type "")))
-      (cons (when ts (ignore-errors (org-time-string-to-absolute ts)))
-	    ts-date-type))))
-
-(defun org-agenda-get-todos ()
-  "Return the TODO information for agenda display."
-  (let* ((props (list 'face nil
-		      'done-face 'org-agenda-done
-		      'org-not-done-regexp org-not-done-regexp
-		      'org-todo-regexp org-todo-regexp
-		      'org-complex-heading-regexp org-complex-heading-regexp
-		      'mouse-face 'highlight
-		      'help-echo
-		      (format "mouse-2 or RET jump to org file %s"
-			      (abbreviate-file-name buffer-file-name))))
-	 (case-fold-search nil)
-	 (regexp (format org-heading-keyword-regexp-format
-			 (cond
-			  ((and org-select-this-todo-keyword
-				(equal org-select-this-todo-keyword "*"))
-			   org-todo-regexp)
-			  (org-select-this-todo-keyword
-			   (concat "\\("
-				   (mapconcat 'identity
-					      (org-split-string
-					       org-select-this-todo-keyword
-					       "|")
-					      "\\|") "\\)"))
-			  (t org-not-done-regexp))))
-	 marker priority category level tags todo-state
-	 ts-date ts-date-type ts-date-pair
-	 ee txt beg end inherited-tags todo-state-end-pos)
-    (goto-char (point-min))
-    (while (re-search-forward regexp nil t)
-      (catch :skip
-	(save-match-data
-	  (beginning-of-line)
-	  (org-agenda-skip)
-	  (setq beg (point) end (save-excursion (outline-next-heading) (point)))
-	  (unless (and (setq todo-state (org-get-todo-state))
-		       (setq todo-state-end-pos (match-end 2)))
-	    (goto-char end)
-	    (throw :skip nil))
-	  (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
-	    (goto-char (1+ beg))
-	    (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
-	    (throw :skip nil)))
-	(goto-char (match-beginning 2))
-	(setq marker (org-agenda-new-marker (match-beginning 0))
-	      category (org-get-category)
-	      ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
-	      ts-date (car ts-date-pair)
-	      ts-date-type (cdr ts-date-pair)
-	      txt (org-trim (buffer-substring (match-beginning 2) (match-end 0)))
-	      inherited-tags
-	      (or (eq org-agenda-show-inherited-tags 'always)
-		  (and (listp org-agenda-show-inherited-tags)
-		       (memq 'todo org-agenda-show-inherited-tags))
-		  (and (eq org-agenda-show-inherited-tags t)
-		       (or (eq org-agenda-use-tag-inheritance t)
-			   (memq 'todo org-agenda-use-tag-inheritance))))
-	      tags (org-get-tags-at nil (not inherited-tags))
-	      level (make-string (org-reduced-level (org-outline-level)) ? )
-	      txt (org-agenda-format-item "" txt level category tags t)
-	      priority (1+ (org-get-priority txt)))
-	(org-add-props txt props
-	  'org-marker marker 'org-hd-marker marker
-	  'priority priority
-	  'level level
-	  'ts-date ts-date
-	  'type (concat "todo" ts-date-type) 'todo-state todo-state)
-	(push txt ee)
-	(if org-agenda-todo-list-sublevels
-	    (goto-char todo-state-end-pos)
-	  (org-end-of-subtree 'invisible))))
-    (nreverse ee)))
-
-(defun org-agenda-todo-custom-ignore-p (time n)
-  "Check whether timestamp is farther away than n number of days.
-This function is invoked if `org-agenda-todo-ignore-deadlines',
-`org-agenda-todo-ignore-scheduled' or
-`org-agenda-todo-ignore-timestamp' is set to an integer."
-  (let ((days (org-time-stamp-to-now
-	       time org-agenda-todo-ignore-time-comparison-use-seconds)))
-    (if (>= n 0)
-	(>= days n)
-      (<= days n))))
-
-;;;###autoload
-(defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
-    (&optional end)
-  "Do we have a reason to ignore this TODO entry because it has a time stamp?"
-  (when (or org-agenda-todo-ignore-with-date
-	    org-agenda-todo-ignore-scheduled
-	    org-agenda-todo-ignore-deadlines
-	    org-agenda-todo-ignore-timestamp)
-    (setq end (or end (save-excursion (outline-next-heading) (point))))
-    (save-excursion
-      (or (and org-agenda-todo-ignore-with-date
-	       (re-search-forward org-ts-regexp end t))
-	  (and org-agenda-todo-ignore-scheduled
-	       (re-search-forward org-scheduled-time-regexp end t)
-	       (cond
-		((eq org-agenda-todo-ignore-scheduled 'future)
-		 (> (org-time-stamp-to-now
-		     (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
-		((eq org-agenda-todo-ignore-scheduled 'past)
-		 (<= (org-time-stamp-to-now
-		      (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
-		((numberp org-agenda-todo-ignore-scheduled)
-		 (org-agenda-todo-custom-ignore-p
-		  (match-string 1) org-agenda-todo-ignore-scheduled))
-		(t)))
-	  (and org-agenda-todo-ignore-deadlines
-	       (re-search-forward org-deadline-time-regexp end t)
-	       (cond
-		((memq org-agenda-todo-ignore-deadlines '(t all)) t)
-		((eq org-agenda-todo-ignore-deadlines 'far)
-		 (not (org-deadline-close-p (match-string 1))))
-		((eq org-agenda-todo-ignore-deadlines 'future)
-		 (> (org-time-stamp-to-now
-		     (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
-		((eq org-agenda-todo-ignore-deadlines 'past)
-		 (<= (org-time-stamp-to-now
-		      (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
-		((numberp org-agenda-todo-ignore-deadlines)
-		 (org-agenda-todo-custom-ignore-p
-		  (match-string 1) org-agenda-todo-ignore-deadlines))
-		(t (org-deadline-close-p (match-string 1)))))
-	  (and org-agenda-todo-ignore-timestamp
-	       (let ((buffer (current-buffer))
-		     (regexp
-		      (concat
-		       org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
-		     (start (point)))
-		 ;; Copy current buffer into a temporary one
-		 (with-temp-buffer
-		   (insert-buffer-substring buffer start end)
-		   (goto-char (point-min))
-		   ;; Delete SCHEDULED and DEADLINE items
-		   (while (re-search-forward regexp end t)
-		     (delete-region (match-beginning 0) (match-end 0)))
-		   (goto-char (point-min))
-		   ;; No search for timestamp left
-		   (when (re-search-forward org-ts-regexp nil t)
-		     (cond
-		      ((eq org-agenda-todo-ignore-timestamp 'future)
-		       (> (org-time-stamp-to-now
-			   (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
-		      ((eq org-agenda-todo-ignore-timestamp 'past)
-		       (<= (org-time-stamp-to-now
-			    (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
-		      ((numberp org-agenda-todo-ignore-timestamp)
-		       (org-agenda-todo-custom-ignore-p
-			(match-string 1) org-agenda-todo-ignore-timestamp))
-		      (t))))))))))
-
-(defun org-agenda-get-timestamps (&optional deadlines)
-  "Return the date stamp information for agenda display.
-Optional argument DEADLINES is a list of deadline items to be
-displayed in agenda view."
-  (let* ((props (list 'face 'org-agenda-calendar-event
-		      'org-not-done-regexp org-not-done-regexp
-		      'org-todo-regexp org-todo-regexp
-		      'org-complex-heading-regexp org-complex-heading-regexp
-		      'mouse-face 'highlight
-		      'help-echo
-		      (format "mouse-2 or RET jump to Org file %s"
-			      (abbreviate-file-name buffer-file-name))))
-	 (current (calendar-absolute-from-gregorian date))
-	 (today (org-today))
-	 (deadline-position-alist
-	  (mapcar (lambda (d)
-		    (let ((m (get-text-property 0 'org-hd-marker d)))
-		      (and m (marker-position m))))
-		  deadlines))
-	 ;; Match time-stamps set to current date, time-stamps with
-	 ;; a repeater, and S-exp time-stamps.
-	 (regexp
-	  (concat
-	   (if org-agenda-include-inactive-timestamps "[[<]" "<")
-	   (regexp-quote
-	    (substring
-	     (format-time-string
-	      (car org-time-stamp-formats)
-	      (apply #'encode-time	; DATE bound by calendar
-		     (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
-	     1 11))
-	   "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
-	   "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
-	 timestamp-items)
-    (goto-char (point-min))
-    (while (re-search-forward regexp nil t)
-      ;; Skip date ranges, scheduled and deadlines, which are handled
-      ;; specially.  Also skip time-stamps before first headline as
-      ;; there would be no entry to add to the agenda.  Eventually,
-      ;; ignore clock entries.
-      (catch :skip
-	(save-match-data
-	  (when (or (org-at-date-range-p)
-		    (org-at-planning-p)
-		    (org-before-first-heading-p)
-		    (and org-agenda-include-inactive-timestamps
-			 (org-at-clock-log-p)))
-	    (throw :skip nil))
-	  (org-agenda-skip))
-	(let* ((pos (match-beginning 0))
-	       (repeat (match-string 1))
-	       (sexp-entry (match-string 3))
-	       (time-stamp (if (or repeat sexp-entry) (match-string 0)
-			     (save-excursion
-			       (goto-char pos)
-			       (looking-at org-ts-regexp-both)
-			       (match-string 0))))
-	       (todo-state (org-get-todo-state))
-	       (warntime (get-text-property (point) 'org-appt-warntime))
-	       (done? (member todo-state org-done-keywords)))
-	  ;; Possibly skip done tasks.
-	  (when (and done? org-agenda-skip-timestamp-if-done)
-	    (throw :skip t))
-	  ;; S-exp entry doesn't match current day: skip it.
-	  (when (and sexp-entry (not (org-diary-sexp-entry sexp-entry "" date)))
-	    (throw :skip nil))
-	  (when repeat
-	    (let* ((past
-		    ;; A repeating time stamp is shown at its base
-		    ;; date and every repeated date up to TODAY.  If
-		    ;; `org-agenda-prefer-last-repeat' is non-nil,
-		    ;; however, only the last repeat before today
-		    ;; (inclusive) is shown.
-		    (org-agenda--timestamp-to-absolute
-		     repeat
-		     (if (or (> current today)
-			     (eq org-agenda-prefer-last-repeat t)
-			     (member todo-state org-agenda-prefer-last-repeat))
-			 today
-		       current)
-		     'past (current-buffer) pos))
-		   (future
-		    ;;  Display every repeated date past TODAY
-		    ;;  (exclusive) unless
-		    ;;  `org-agenda-show-future-repeats' is nil.  If
-		    ;;  this variable is set to `next', only display
-		    ;;  the first repeated date after TODAY
-		    ;;  (exclusive).
-		    (cond
-		     ((<= current today) past)
-		     ((not org-agenda-show-future-repeats) past)
-		     (t
-		      (let ((base (if (eq org-agenda-show-future-repeats 'next)
-				      (1+ today)
-				    current)))
-			(org-agenda--timestamp-to-absolute
-			 repeat base 'future (current-buffer) pos))))))
-	      (when (and (/= current past) (/= current future))
-		(throw :skip nil))))
-	  (save-excursion
-	    (re-search-backward org-outline-regexp-bol nil t)
-	    ;; Possibly skip time-stamp when a deadline is set.
-	    (when (and org-agenda-skip-timestamp-if-deadline-is-shown
-		       (assq (point) deadline-position-alist))
-	      (throw :skip nil))
-	    (let* ((category (org-get-category pos))
-		   (inherited-tags
-		    (or (eq org-agenda-show-inherited-tags 'always)
-			(and (consp org-agenda-show-inherited-tags)
-			     (memq 'agenda org-agenda-show-inherited-tags))
-			(and (eq org-agenda-show-inherited-tags t)
-			     (or (eq org-agenda-use-tag-inheritance t)
-				 (memq 'agenda
-				       org-agenda-use-tag-inheritance)))))
-		   (tags (org-get-tags-at nil (not inherited-tags)))
-		   (level (make-string (org-reduced-level (org-outline-level))
-				       ?\s))
-		   (head (and (looking-at "\\*+[ \t]+\\(.*\\)")
-			      (match-string 1)))
-		   (inactive? (= (char-after pos) ?\[))
-		   (habit? (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
-		   (item
-		    (org-agenda-format-item
-		     (and inactive? org-agenda-inactive-leader)
-		     head level category tags time-stamp org-ts-regexp habit?)))
-	      (org-add-props item props
-		'priority (if habit?
-			      (org-habit-get-priority (org-habit-parse-todo))
-			    (org-get-priority item))
-		'org-marker (org-agenda-new-marker pos)
-		'org-hd-marker (org-agenda-new-marker)
-		'date date
-		'level level
-		'ts-date (if repeat (org-agenda--timestamp-to-absolute repeat)
-			   current)
-		'todo-state todo-state
-		'warntime warntime
-		'type "timestamp")
-	      (push item timestamp-items))))
-	(when org-agenda-skip-additional-timestamps-same-entry
-	  (outline-next-heading))))
-    (nreverse timestamp-items)))
-
-(defun org-agenda-get-sexps ()
-  "Return the sexp information for agenda display."
-  (require 'diary-lib)
-  (let* ((props (list 'face 'org-agenda-calendar-sexp
-		      'mouse-face 'highlight
-		      'help-echo
-		      (format "mouse-2 or RET jump to org file %s"
-			      (abbreviate-file-name buffer-file-name))))
-	 (regexp "^&?%%(")
-	 marker category extra level ee txt tags entry
-	 result beg b sexp sexp-entry todo-state warntime inherited-tags)
-    (goto-char (point-min))
-    (while (re-search-forward regexp nil t)
-      (catch :skip
-	(org-agenda-skip)
-	(setq beg (match-beginning 0))
-	(goto-char (1- (match-end 0)))
-	(setq b (point))
-	(forward-sexp 1)
-	(setq sexp (buffer-substring b (point)))
-	(setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
-			     (org-trim (match-string 1))
-			   ""))
-	(setq result (org-diary-sexp-entry sexp sexp-entry date))
-	(when result
-	  (setq marker (org-agenda-new-marker beg)
-		level (make-string (org-reduced-level (org-outline-level)) ? )
-		category (org-get-category beg)
-		inherited-tags
-		(or (eq org-agenda-show-inherited-tags 'always)
-		    (and (listp org-agenda-show-inherited-tags)
-			 (memq 'agenda org-agenda-show-inherited-tags))
-		    (and (eq org-agenda-show-inherited-tags t)
-			 (or (eq org-agenda-use-tag-inheritance t)
-			     (memq 'agenda org-agenda-use-tag-inheritance))))
-		tags (org-get-tags-at nil (not inherited-tags))
-		todo-state (org-get-todo-state)
-		warntime (get-text-property (point) 'org-appt-warntime)
-		extra nil)
-
-	  (dolist (r (if (stringp result)
-			 (list result)
-		       result)) ;; we expect a list here
-	    (when (and org-agenda-diary-sexp-prefix
-		       (string-match org-agenda-diary-sexp-prefix r))
-	      (setq extra (match-string 0 r)
-		    r (replace-match "" nil nil r)))
-	    (if (string-match "\\S-" r)
-		(setq txt r)
-	      (setq txt "SEXP entry returned empty string"))
-	    (setq txt (org-agenda-format-item extra txt level category tags 'time))
-	    (org-add-props txt props 'org-marker marker
-			   'date date 'todo-state todo-state
-			   'level level 'type "sexp" 'warntime warntime)
-	    (push txt ee)))))
-    (nreverse ee)))
-
-;; Calendar sanity: define some functions that are independent of
-;; `calendar-date-style'.
-(defun org-anniversary (year month day &optional mark)
-  "Like `diary-anniversary', but with fixed (ISO) order of arguments."
-  (with-no-warnings
-    (let ((calendar-date-style 'iso))
-      (diary-anniversary year month day mark))))
-(defun org-cyclic (N year month day &optional mark)
-  "Like `diary-cyclic', but with fixed (ISO) order of arguments."
-  (with-no-warnings
-    (let ((calendar-date-style 'iso))
-      (diary-cyclic N year month day mark))))
-(defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
-  "Like `diary-block', but with fixed (ISO) order of arguments."
-  (with-no-warnings
-    (let ((calendar-date-style 'iso))
-      (diary-block Y1 M1 D1 Y2 M2 D2 mark))))
-(defun org-date (year month day &optional mark)
-  "Like `diary-date', but with fixed (ISO) order of arguments."
-  (with-no-warnings
-    (let ((calendar-date-style 'iso))
-      (diary-date year month day mark))))
-
-;; Define the `org-class' function
-(defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
-  "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
-DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
-SKIP-WEEKS is any number of ISO weeks in the block period for which the
-item should be skipped.  If any of the SKIP-WEEKS arguments is the symbol
-`holidays', then any date that is known by the Emacs calendar to be a
-holiday will also be skipped.  If SKIP-WEEKS arguments are holiday strings,
-then those holidays will be skipped."
-  (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
-	 (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
-	 (d (calendar-absolute-from-gregorian date))
-	 (h (when skip-weeks (calendar-check-holidays date))))
-    (and
-     (<= date1 d)
-     (<= d date2)
-     (= (calendar-day-of-week date) dayname)
-     (or (not skip-weeks)
-	 (progn
-	   (require 'cal-iso)
-	   (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
-     (not (or (and h (memq 'holidays skip-weeks))
-	      (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
-     entry)))
-
-(defalias 'org-get-closed 'org-agenda-get-progress)
-(defun org-agenda-get-progress ()
-  "Return the logged TODO entries for agenda display."
-  (let* ((props (list 'mouse-face 'highlight
-		      'org-not-done-regexp org-not-done-regexp
-		      'org-todo-regexp org-todo-regexp
-		      'org-complex-heading-regexp org-complex-heading-regexp
-		      'help-echo
-		      (format "mouse-2 or RET jump to org file %s"
-			      (abbreviate-file-name buffer-file-name))))
-	 (items (if (consp org-agenda-show-log-scoped)
-		    org-agenda-show-log-scoped
-		  (if (eq org-agenda-show-log-scoped 'clockcheck)
-		      '(clock)
-		    org-agenda-log-mode-items)))
-	 (parts
-	  (delq nil
-		(list
-		 (if (memq 'closed items) (concat "\\<" org-closed-string))
-		 (if (memq 'clock items) (concat "\\<" org-clock-string))
-		 (if (memq 'state items)
-		     (format "- State \"%s\".*?" org-todo-regexp)))))
-	 (parts-re (if parts (mapconcat 'identity parts "\\|")
-		     (error "`org-agenda-log-mode-items' is empty")))
-	 (regexp (concat
-		  "\\(" parts-re "\\)"
-		  " *\\["
-		  (regexp-quote
-		   (substring
-		    (format-time-string
-		     (car org-time-stamp-formats)
-		     (apply 'encode-time  ; DATE bound by calendar
-			    (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
-		    1 11))))
-	 (org-agenda-search-headline-for-time nil)
-	 marker hdmarker priority category level tags closedp
-	 statep clockp state ee txt extra timestr rest clocked inherited-tags)
-    (goto-char (point-min))
-    (while (re-search-forward regexp nil t)
-      (catch :skip
-	(org-agenda-skip)
-	(setq marker (org-agenda-new-marker (match-beginning 0))
-	      closedp (equal (match-string 1) org-closed-string)
-	      statep (equal (string-to-char (match-string 1)) ?-)
-	      clockp (not (or closedp statep))
-	      state (and statep (match-string 2))
-	      category (org-get-category (match-beginning 0))
-	      timestr (buffer-substring (match-beginning 0) (point-at-eol)))
-	(when (string-match "\\]" timestr)
-	  ;; substring should only run to end of time stamp
-	  (setq rest (substring timestr (match-end 0))
-		timestr (substring timestr 0 (match-end 0)))
-	  (if (and (not closedp) (not statep)
-		   (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
-				 rest))
-	      (progn (setq timestr (concat (substring timestr 0 -1)
-					   "-" (match-string 1 rest) "]"))
-		     (setq clocked (match-string 2 rest)))
-	    (setq clocked "-")))
-	(save-excursion
-	  (setq extra
-		(cond
-		 ((not org-agenda-log-mode-add-notes) nil)
-		 (statep
-		  (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
-		       (match-string 1)))
-		 (clockp
-		  (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
-		       (match-string 1)))))
-	  (if (not (re-search-backward org-outline-regexp-bol nil t))
-	      (throw :skip nil)
-	    (goto-char (match-beginning 0))
-	    (setq hdmarker (org-agenda-new-marker)
-		  inherited-tags
-		  (or (eq org-agenda-show-inherited-tags 'always)
-		      (and (listp org-agenda-show-inherited-tags)
-			   (memq 'todo org-agenda-show-inherited-tags))
-		      (and (eq org-agenda-show-inherited-tags t)
-			   (or (eq org-agenda-use-tag-inheritance t)
-			       (memq 'todo org-agenda-use-tag-inheritance))))
-		  tags (org-get-tags-at nil (not inherited-tags))
-		  level (make-string (org-reduced-level (org-outline-level)) ? ))
-	    (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
-	    (setq txt (match-string 1))
-	    (when extra
-	      (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
-		  (setq txt (concat (substring txt 0 (match-beginning 1))
-				    " - " extra " " (match-string 2 txt)))
-		(setq txt (concat txt " - " extra))))
-	    (setq txt (org-agenda-format-item
-		       (cond
-			(closedp "Closed:    ")
-			(statep (concat "State:     (" state ")"))
-			(t (concat "Clocked:   (" clocked  ")")))
-		       txt level category tags timestr)))
-	  (setq priority 100000)
-	  (org-add-props txt props
-	    'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
-	    'priority priority 'level level
-	    'type "closed" 'date date
-	    'undone-face 'org-warning 'done-face 'org-agenda-done)
-	  (push txt ee))
-	(goto-char (point-at-eol))))
-    (nreverse ee)))
-
-(defun org-agenda-show-clocking-issues ()
-  "Add overlays, showing issues with clocking.
-See also the user option `org-agenda-clock-consistency-checks'."
-  (interactive)
-  (let* ((pl org-agenda-clock-consistency-checks)
-	 (re (concat "^[ \t]*"
-		     org-clock-string
-		     "[ \t]+"
-		     "\\(\\[.*?\\]\\)"	; group 1 is first stamp
-		     "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
-	 (tlstart 0.)
-	 (tlend 0.)
-	 (maxtime (org-duration-to-minutes
-		   (or (plist-get pl :max-duration) "24:00")))
-	 (mintime (org-duration-to-minutes
-		   (or (plist-get pl :min-duration) 0)))
-	 (maxgap  (org-duration-to-minutes
-		   ;; default 30:00 means never complain
-		   (or (plist-get pl :max-gap) "30:00")))
-	 (gapok (mapcar #'org-duration-to-minutes
-			(plist-get pl :gap-ok-around)))
-	 (def-face (or (plist-get pl :default-face)
-		       '((:background "DarkRed") (:foreground "white"))))
-	 issue face m te ts dt ov)
-    (goto-char (point-min))
-    (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
-      (setq issue nil face def-face)
-      (catch 'next
-	(setq m (org-get-at-bol 'org-marker)
-	      te nil ts nil)
-	(unless (and m (markerp m))
-	  (setq issue "No valid clock line") (throw 'next t))
-	(org-with-point-at m
-	  (save-excursion
-	    (goto-char (point-at-bol))
-	    (unless (looking-at re)
-	      (error "No valid Clock line")
-	      (throw 'next t))
-	    (unless (match-end 3)
-	      (setq issue "No end time"
-		    face (or (plist-get pl :no-end-time-face) face))
-	      (throw 'next t))
-	    (setq ts (match-string 1)
-		  te (match-string 3)
-		  ts (float-time
-		      (apply #'encode-time (org-parse-time-string ts)))
-		  te (float-time
-		      (apply #'encode-time (org-parse-time-string te)))
-		  dt (- te ts))))
-	(cond
-	 ((> dt (* 60 maxtime))
-	  ;; a very long clocking chunk
-	  (setq issue (format "Clocking interval is very long: %s"
-			      (org-duration-from-minutes (floor (/ dt 60.))))
-		face (or (plist-get pl :long-face) face)))
-	 ((< dt (* 60 mintime))
-	  ;; a very short clocking chunk
-	  (setq issue (format "Clocking interval is very short: %s"
-			      (org-duration-from-minutes (floor (/ dt 60.))))
-		face (or (plist-get pl :short-face) face)))
-	 ((and (> tlend 0) (< ts tlend))
-	  ;; Two clock entries are overlapping
-	  (setq issue (format "Clocking overlap: %d minutes"
-			      (/ (- tlend ts) 60))
-		face (or (plist-get pl :overlap-face) face)))
-	 ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
-	  ;; There is a gap, lets see if we need to report it
-	  (unless (org-agenda-check-clock-gap tlend ts gapok)
-	    (setq issue (format "Clocking gap: %d minutes"
-				(/ (- ts tlend) 60))
-		  face (or (plist-get pl :gap-face) face))))
-	 (t nil)))
-      (setq tlend (or te tlend) tlstart (or ts tlstart))
-      (when issue
-	;; OK, there was some issue, add an overlay to show the issue
-	(setq ov (make-overlay (point-at-bol) (point-at-eol)))
-	(overlay-put ov 'before-string
-		     (concat
-		      (org-add-props
-			  (format "%-43s" (concat " " issue))
-			  nil
-			'face face)
-		      "\n"))
-	(overlay-put ov 'evaporate t)))))
-
-(defun org-agenda-check-clock-gap (t1 t2 ok-list)
-  "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
-  (catch 'exit
-    (unless ok-list
-      ;; there are no OK times for gaps...
-      (throw 'exit nil))
-    (if (> (- (/ t2 36000) (/ t1 36000)) 24)
-	;; This is more than 24 hours, so it is OK.
-	;; because we have at least one OK time, that must be in the
-	;; 24 hour interval.
-	(throw 'exit t))
-    ;; We have a shorter gap.
-    ;; Now we have to get the minute of the day when these times are
-    (let* ((t1dec (decode-time (seconds-to-time t1)))
-	   (t2dec (decode-time (seconds-to-time t2)))
-	   ;; compute the minute on the day
-	   (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
-	   (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
-      (when (< min2 min1)
-	;; if min2 is smaller than min1, this means it is on the next day.
-	;; Wrap it to after midnight.
-	(setq min2 (+ min2 1440)))
-      ;; Now check if any of the OK times is in the gap
-      (mapc (lambda (x)
-	      ;; Wrap the time to after midnight if necessary
-	      (if (< x min1) (setq x (+ x 1440)))
-	      ;; Check if in interval
-	      (and (<= min1 x) (>= min2 x) (throw 'exit t)))
-	    ok-list)
-      ;; Nope, this gap is not OK
-      nil)))
-
-(defun org-agenda-get-deadlines (&optional with-hour)
-  "Return the deadline information for agenda display.
-When WITH-HOUR is non-nil, only return deadlines with an hour
-specification like [h]h:mm."
-  (let* ((props (list 'mouse-face 'highlight
-		      'org-not-done-regexp org-not-done-regexp
-		      'org-todo-regexp org-todo-regexp
-		      'org-complex-heading-regexp org-complex-heading-regexp
-		      'help-echo
-		      (format "mouse-2 or RET jump to org file %s"
-			      (abbreviate-file-name buffer-file-name))))
-	 (regexp (if with-hour
-		     org-deadline-time-hour-regexp
-		   org-deadline-time-regexp))
-	 (today (org-today))
-	 (today? (org-agenda-today-p date)) ; DATE bound by calendar.
-	 (current (calendar-absolute-from-gregorian date))
-	 deadline-items)
-    (goto-char (point-min))
-    (while (re-search-forward regexp nil t)
-      (catch :skip
-	(unless (save-match-data (org-at-planning-p)) (throw :skip nil))
-	(org-agenda-skip)
-	(let* ((s (match-string 1))
-	       (pos (1- (match-beginning 1)))
-	       (todo-state (save-match-data (org-get-todo-state)))
-	       (done? (member todo-state org-done-keywords))
-               (sexp? (string-prefix-p "%%" s))
-	       ;; DEADLINE is the deadline date for the entry.  It is
-	       ;; either the base date or the last repeat, according
-	       ;; to `org-agenda-prefer-last-repeat'.
-	       (deadline
-		(cond
-		 (sexp? (org-agenda--timestamp-to-absolute s current))
-		 ((or (eq org-agenda-prefer-last-repeat t)
-		      (member todo-state org-agenda-prefer-last-repeat))
-		  (org-agenda--timestamp-to-absolute
-		   s today 'past (current-buffer) pos))
-		 (t (org-agenda--timestamp-to-absolute s))))
-	       ;; REPEAT is the future repeat closest from CURRENT,
-	       ;; according to `org-agenda-show-future-repeats'. If
-	       ;; the latter is nil, or if the time stamp has no
-	       ;; repeat part, default to DEADLINE.
-	       (repeat
-		(cond
-		 (sexp? deadline)
-		 ((<= current today) deadline)
-		 ((not org-agenda-show-future-repeats) deadline)
-		 (t
-		  (let ((base (if (eq org-agenda-show-future-repeats 'next)
-				  (1+ today)
-				current)))
-		    (org-agenda--timestamp-to-absolute
-		     s base 'future (current-buffer) pos)))))
-	       (diff (- deadline current))
-	       (suppress-prewarning
-		(let ((scheduled
-		       (and org-agenda-skip-deadline-prewarning-if-scheduled
-			    (org-entry-get nil "SCHEDULED"))))
-		  (cond
-		   ((not scheduled) nil)
-		   ;; The current item has a scheduled date, so
-		   ;; evaluate its prewarning lead time.
-		   ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
-		    ;; Use global prewarning-restart lead time.
-		    org-agenda-skip-deadline-prewarning-if-scheduled)
-		   ((eq org-agenda-skip-deadline-prewarning-if-scheduled
-			'pre-scheduled)
-		    ;; Set pre-warning to no earlier than SCHEDULED.
-		    (min (- deadline
-			    (org-agenda--timestamp-to-absolute scheduled))
-			 org-deadline-warning-days))
-		   ;; Set pre-warning to deadline.
-		   (t 0))))
-	       (wdays (or suppress-prewarning (org-get-wdays s))))
-	  (cond
-	   ;; Only display deadlines at their base date, at future
-	   ;; repeat occurrences or in today agenda.
-	   ((= current deadline) nil)
-	   ((= current repeat) nil)
-	   ((not today?) (throw :skip nil))
-	   ;; Upcoming deadline: display within warning period WDAYS.
-	   ((> deadline current) (when (> diff wdays) (throw :skip nil)))
-	   ;; Overdue deadline: warn about it for
-	   ;; `org-deadline-past-days' duration.
-	   (t (when (< org-deadline-past-days (- diff)) (throw :skip nil))))
-	  ;; Possibly skip done tasks.
-	  (when (and done?
-		     (or org-agenda-skip-deadline-if-done
-			 (/= deadline current)))
-	    (throw :skip nil))
-	  (save-excursion
-	    (re-search-backward "^\\*+[ \t]+" nil t)
-	    (goto-char (match-end 0))
-	    (let* ((category (org-get-category))
-		   (level (make-string (org-reduced-level (org-outline-level))
-				       ?\s))
-		   (head (buffer-substring (point) (line-end-position)))
-		   (inherited-tags
-		    (or (eq org-agenda-show-inherited-tags 'always)
-			(and (listp org-agenda-show-inherited-tags)
-			     (memq 'agenda org-agenda-show-inherited-tags))
-			(and (eq org-agenda-show-inherited-tags t)
-			     (or (eq org-agenda-use-tag-inheritance t)
-				 (memq 'agenda
-				       org-agenda-use-tag-inheritance)))))
-		   (tags (org-get-tags-at nil (not inherited-tags)))
-		   (time
-		    (cond
-		     ;; No time of day designation if it is only
-		     ;; a reminder.
-		     ((and (/= current deadline) (/= current repeat)) nil)
-		     ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
-		      (concat (substring s (match-beginning 1)) " "))
-		     (t 'time)))
-		   (item
-		    (org-agenda-format-item
-		     ;; Insert appropriate suffixes before deadlines.
-		     ;; Those only apply to today agenda.
-		     (pcase-let ((`(,now ,future ,past)
-				  org-agenda-deadline-leaders))
-		       (cond
-			((and today? (< deadline today)) (format past (- diff)))
-			((and today? (> deadline today)) (format future diff))
-			(t now)))
-		     head level category tags time))
-		   (face (org-agenda-deadline-face
-			  (- 1 (/ (float diff) (max wdays 1)))))
-		   (upcoming? (and today? (> deadline today)))
-		   (warntime (get-text-property (point) 'org-appt-warntime)))
-	      (org-add-props item props
-		'org-marker (org-agenda-new-marker pos)
-		'org-hd-marker (org-agenda-new-marker (line-beginning-position))
-		'warntime warntime
-		'level level
-		'ts-date deadline
-		'priority
-		;; Adjust priority to today reminders about deadlines.
-		;; Overdue deadlines get the highest priority
-		;; increase, then imminent deadlines and eventually
-		;; more distant deadlines.
-		(let ((adjust (if today? (- diff) 0)))
-		  (+ adjust (org-get-priority item)))
-		'todo-state todo-state
-		'type (if upcoming? "upcoming-deadline" "deadline")
-		'date (if upcoming? date deadline)
-		'face (if done? 'org-agenda-done face)
-		'undone-face face
-		'done-face 'org-agenda-done)
-	      (push item deadline-items))))))
-    (nreverse deadline-items)))
-
-(defun org-agenda-deadline-face (fraction)
-  "Return the face to displaying a deadline item.
-FRACTION is what fraction of the head-warning time has passed."
-  (assoc-default fraction org-agenda-deadline-faces #'<=))
-
-(defun org-agenda-get-scheduled (&optional deadlines with-hour)
-  "Return the scheduled information for agenda display.
-Optional argument DEADLINES is a list of deadline items to be
-displayed in agenda view.  When WITH-HOUR is non-nil, only return
-scheduled items with an hour specification like [h]h:mm."
-  (let* ((props (list 'org-not-done-regexp org-not-done-regexp
-		      'org-todo-regexp org-todo-regexp
-		      'org-complex-heading-regexp org-complex-heading-regexp
-		      'done-face 'org-agenda-done
-		      'mouse-face 'highlight
-		      'help-echo
-		      (format "mouse-2 or RET jump to Org file %s"
-			      (abbreviate-file-name buffer-file-name))))
-	 (regexp (if with-hour
-		     org-scheduled-time-hour-regexp
-		   org-scheduled-time-regexp))
-	 (today (org-today))
-	 (todayp (org-agenda-today-p date)) ; DATE bound by calendar.
-	 (current (calendar-absolute-from-gregorian date))
-	 (deadline-pos
-	  (mapcar (lambda (d)
-		    (let ((m (get-text-property 0 'org-hd-marker d)))
-		      (and m (marker-position m))))
-		  deadlines))
-	 scheduled-items)
-    (goto-char (point-min))
-    (while (re-search-forward regexp nil t)
-      (catch :skip
-	(unless (save-match-data (org-at-planning-p)) (throw :skip nil))
-	(org-agenda-skip)
-	(let* ((s (match-string 1))
-	       (pos (1- (match-beginning 1)))
-	       (todo-state (save-match-data (org-get-todo-state)))
-	       (donep (member todo-state org-done-keywords))
-	       (sexp? (string-prefix-p "%%" s))
-	       ;; SCHEDULE is the scheduled date for the entry.  It is
-	       ;; either the bare date or the last repeat, according
-	       ;; to `org-agenda-prefer-last-repeat'.
-	       (schedule
-		(cond
-		 (sexp? (org-agenda--timestamp-to-absolute s current))
-		 ((or (eq org-agenda-prefer-last-repeat t)
-		      (member todo-state org-agenda-prefer-last-repeat))
-		  (org-agenda--timestamp-to-absolute
-		   s today 'past (current-buffer) pos))
-		 (t (org-agenda--timestamp-to-absolute s))))
-	       ;; REPEAT is the future repeat closest from CURRENT,
-	       ;; according to `org-agenda-show-future-repeats'. If
-	       ;; the latter is nil, or if the time stamp has no
-	       ;; repeat part, default to SCHEDULE.
-	       (repeat
-		(cond
-		 (sexp? schedule)
-		 ((<= current today) schedule)
-		 ((not org-agenda-show-future-repeats) schedule)
-		 (t
-		  (let ((base (if (eq org-agenda-show-future-repeats 'next)
-				  (1+ today)
-				current)))
-		    (org-agenda--timestamp-to-absolute
-		     s base 'future (current-buffer) pos)))))
-	       (diff (- current schedule))
-	       (warntime (get-text-property (point) 'org-appt-warntime))
-	       (pastschedp (< schedule today))
-	       (habitp (and (fboundp 'org-is-habit-p) (org-is-habit-p)))
-	       (suppress-delay
-		(let ((deadline (and org-agenda-skip-scheduled-delay-if-deadline
-				     (org-entry-get nil "DEADLINE"))))
-		  (cond
-		   ((not deadline) nil)
-		   ;; The current item has a deadline date, so
-		   ;; evaluate its delay time.
-		   ((integerp org-agenda-skip-scheduled-delay-if-deadline)
-		    ;; Use global delay time.
-		    (- org-agenda-skip-scheduled-delay-if-deadline))
-		   ((eq org-agenda-skip-scheduled-delay-if-deadline
-			'post-deadline)
-		    ;; Set delay to no later than DEADLINE.
-		    (min (- schedule
-			    (org-agenda--timestamp-to-absolute deadline))
-			 org-scheduled-delay-days))
-		   (t 0))))
-	       (ddays
-		(cond
-		 ;; Nullify delay when a repeater triggered already
-		 ;; and the delay is of the form --Xd.
-		 ((and (string-match-p "--[0-9]+[hdwmy]" s)
-		       (> schedule (org-agenda--timestamp-to-absolute s)))
-		  0)
-		 (suppress-delay
-		  (let ((org-scheduled-delay-days suppress-delay))
-		    (org-get-wdays s t t)))
-		 (t (org-get-wdays s t)))))
-	  ;; Display scheduled items at base date (SCHEDULE), today if
-	  ;; scheduled before the current date, and at any repeat past
-	  ;; today.  However, skip delayed items and items that have
-	  ;; been displayed for more than `org-scheduled-past-days'.
-	  (unless (and todayp
-		       habitp
-		       (bound-and-true-p org-habit-show-all-today))
-	    (when (or (and (> ddays 0) (< diff ddays))
-		      (> diff org-scheduled-past-days)
-		      (> schedule current)
-		      (and (/= current schedule)
-			   (/= current today)
-			   (/= current repeat)))
-	      (throw :skip nil)))
-	  ;; Possibly skip done tasks.
-	  (when (and donep
-		     (or org-agenda-skip-scheduled-if-done
-			 (/= schedule current)))
-	    (throw :skip nil))
-	  ;; Skip entry if it already appears as a deadline, per
-	  ;; `org-agenda-skip-scheduled-if-deadline-is-shown'.  This
-	  ;; doesn't apply to habits.
-	  (when (pcase org-agenda-skip-scheduled-if-deadline-is-shown
-		  ((guard
-		    (or (not (memq (line-beginning-position 0) deadline-pos))
-			habitp))
-		   nil)
-		  (`repeated-after-deadline
-		   (let ((deadline (time-to-days
-				    (org-get-deadline-time (point)))))
-		     (and (<= schedule deadline) (> current deadline))))
-		  (`not-today pastschedp)
-		  (`t t)
-		  (_ nil))
-	    (throw :skip nil))
-	  ;; Skip habits if `org-habit-show-habits' is nil, or if we
-	  ;; only show them for today.  Also skip done habits.
-	  (when (and habitp
-		     (or donep
-			 (not (bound-and-true-p org-habit-show-habits))
-			 (and (not todayp)
-			      (bound-and-true-p
-			       org-habit-show-habits-only-for-today))))
-	    (throw :skip nil))
-	  (save-excursion
-	    (re-search-backward "^\\*+[ \t]+" nil t)
-	    (goto-char (match-end 0))
-	    (let* ((category (org-get-category))
-		   (inherited-tags
-		    (or (eq org-agenda-show-inherited-tags 'always)
-			(and (listp org-agenda-show-inherited-tags)
-			     (memq 'agenda org-agenda-show-inherited-tags))
-			(and (eq org-agenda-show-inherited-tags t)
-			     (or (eq org-agenda-use-tag-inheritance t)
-				 (memq 'agenda
-				       org-agenda-use-tag-inheritance)))))
-		   (tags (org-get-tags-at nil (not inherited-tags)))
-		   (level (make-string (org-reduced-level (org-outline-level))
-				       ?\s))
-		   (head (buffer-substring (point) (line-end-position)))
-		   (time
-		    (cond
-		     ;; No time of day designation if it is only
-		     ;; a reminder.
-		     ((and (/= current schedule) (/= current repeat)) nil)
-		     ((string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
-		      (concat (substring s (match-beginning 1)) " "))
-		     (t 'time)))
-		   (item
-		    (org-agenda-format-item
-		     (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
-		       ;; Show a reminder of a past scheduled today.
-		       (if (and todayp pastschedp)
-			   (format past diff)
-			 first))
-		     head level category tags time nil habitp))
-		   (face (cond ((and (not habitp) pastschedp)
-				'org-scheduled-previously)
-			       (todayp 'org-scheduled-today)
-			       (t 'org-scheduled)))
-		   (habitp (and habitp (org-habit-parse-todo))))
-	      (org-add-props item props
-		'undone-face face
-		'face (if donep 'org-agenda-done face)
-		'org-marker (org-agenda-new-marker pos)
-		'org-hd-marker (org-agenda-new-marker (line-beginning-position))
-		'type (if pastschedp "past-scheduled" "scheduled")
-		'date (if pastschedp schedule date)
-		'ts-date schedule
-		'warntime warntime
-		'level level
-		'priority (if habitp (org-habit-get-priority habitp)
-			    (+ 99 diff (org-get-priority item)))
-		'org-habit-p habitp
-		'todo-state todo-state)
-	      (push item scheduled-items))))))
-    (nreverse scheduled-items)))
-
-(defun org-agenda-get-blocks ()
-  "Return the date-range information for agenda display."
-  (let* ((props (list 'face nil
-		      'org-not-done-regexp org-not-done-regexp
-		      'org-todo-regexp org-todo-regexp
-		      'org-complex-heading-regexp org-complex-heading-regexp
-		      'mouse-face 'highlight
-		      'help-echo
-		      (format "mouse-2 or RET jump to org file %s"
-			      (abbreviate-file-name buffer-file-name))))
-	 (regexp org-tr-regexp)
-	 (d0 (calendar-absolute-from-gregorian date))
-	 marker hdmarker ee txt d1 d2 s1 s2 category
-	 level todo-state tags pos head donep inherited-tags)
-    (goto-char (point-min))
-    (while (re-search-forward regexp nil t)
-      (catch :skip
-	(org-agenda-skip)
-	(setq pos (point))
-	(let ((start-time (match-string 1))
-	      (end-time (match-string 2)))
-	  (setq s1 (match-string 1)
-		s2 (match-string 2)
-		d1 (time-to-days
-		    (condition-case err
-			(org-time-string-to-time s1)
-		      (error
-		       (error
-			"Bad timestamp %S at %d in buffer %S\nError was: %s"
-			s1
-			pos
-			(current-buffer)
-			(error-message-string err)))))
-		d2 (time-to-days
-		    (condition-case err
-			(org-time-string-to-time s2)
-		      (error
-		       (error
-			"Bad timestamp %S at %d in buffer %S\nError was: %s"
-			s2
-			pos
-			(current-buffer)
-			(error-message-string err))))))
-	  (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
-	      ;; Only allow days between the limits, because the normal
-	      ;; date stamps will catch the limits.
-	      (save-excursion
-		(setq todo-state (org-get-todo-state))
-		(setq donep (member todo-state org-done-keywords))
-		(if (and donep org-agenda-skip-timestamp-if-done)
-		    (throw :skip t))
-		(setq marker (org-agenda-new-marker (point))
-		      category (org-get-category))
-		(if (not (re-search-backward org-outline-regexp-bol nil t))
-		    (throw :skip nil)
-		  (goto-char (match-beginning 0))
-		  (setq hdmarker (org-agenda-new-marker (point))
-			inherited-tags
-			(or (eq org-agenda-show-inherited-tags 'always)
-			    (and (listp org-agenda-show-inherited-tags)
-				 (memq 'agenda org-agenda-show-inherited-tags))
-			    (and (eq org-agenda-show-inherited-tags t)
-				 (or (eq org-agenda-use-tag-inheritance t)
-				     (memq 'agenda org-agenda-use-tag-inheritance))))
-
-			tags (org-get-tags-at nil (not inherited-tags)))
-		  (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
-		  (looking-at "\\*+[ \t]+\\(.*\\)")
-		  (setq head (match-string 1))
-		  (let ((remove-re
-			 (if org-agenda-remove-timeranges-from-blocks
-			     (concat
-			      "<" (regexp-quote s1) ".*?>"
-			      "--"
-			      "<" (regexp-quote s2) ".*?>")
-			   nil)))
-		    (setq txt (org-agenda-format-item
-			       (format
-				(nth (if (= d1 d2) 0 1)
-				     org-agenda-timerange-leaders)
-				(1+ (- d0 d1)) (1+ (- d2 d1)))
-			       head level category tags
-			       (cond ((and (= d1 d0) (= d2 d0))
-				      (concat "<" start-time ">--<" end-time ">"))
-                                     ((= d1 d0)
-				      (concat "<" start-time ">"))
-				     ((= d2 d0)
-				      (concat "<" end-time ">")))
-			       remove-re))))
-		(org-add-props txt props
-		  'org-marker marker 'org-hd-marker hdmarker
-		  'type "block" 'date date
-		  'level level
-		  'todo-state todo-state
-		  'priority (org-get-priority txt))
-		(push txt ee))))
-	(goto-char pos)))
-    ;; Sort the entries by expiration date.
-    (nreverse ee)))
-
-;;; Agenda presentation and sorting
-
-(defvar org-prefix-has-time nil
-  "A flag, set by `org-compile-prefix-format'.
-The flag is set if the currently compiled format contains a `%t'.")
-(defvar org-prefix-has-tag nil
-  "A flag, set by `org-compile-prefix-format'.
-The flag is set if the currently compiled format contains a `%T'.")
-(defvar org-prefix-has-effort nil
-  "A flag, set by `org-compile-prefix-format'.
-The flag is set if the currently compiled format contains a `%e'.")
-(defvar org-prefix-has-breadcrumbs nil
-  "A flag, set by `org-compile-prefix-format'.
-The flag is set if the currently compiled format contains a `%b'.")
-(defvar org-prefix-category-length nil
-  "Used by `org-compile-prefix-format' to remember the category field width.")
-(defvar org-prefix-category-max-length nil
-  "Used by `org-compile-prefix-format' to remember the category field width.")
-
-(defun org-agenda-get-category-icon (category)
-  "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
-  (cl-dolist (entry org-agenda-category-icon-alist)
-    (when (string-match-p (car entry) category)
-      (if (listp (cadr entry))
-	  (cl-return (cadr entry))
-	(cl-return (apply #'create-image (cdr entry)))))))
-
-(defun org-agenda-format-item (extra txt &optional level category tags dotime
-				     remove-re habitp)
-  "Format TXT to be inserted into the agenda buffer.
-In particular, add the prefix and corresponding text properties.
-
-EXTRA must be a string to replace the `%s' specifier in the prefix format.
-LEVEL may be a string to replace the `%l' specifier.
-CATEGORY (a string, a symbol or nil) may be used to overrule the default
-category taken from local variable or file name.  It will replace the `%c'
-specifier in the format.
-DOTIME, when non-nil, indicates that a time-of-day should be extracted from
-TXT for sorting of this entry, and for the `%t' specifier in the format.
-When DOTIME is a string, this string is searched for a time before TXT is.
-TAGS can be the tags of the headline.
-Any match of REMOVE-RE will be removed from TXT."
-  ;; We keep the org-prefix-* variable values along with a compiled
-  ;; formatter, so that multiple agendas existing at the same time do
-  ;; not step on each other toes.
-  ;;
-  ;; It was inconvenient to make these variables buffer local in
-  ;; Agenda buffers, because this function expects to be called with
-  ;; the buffer where item comes from being current, and not agenda
-  ;; buffer
-  (let* ((bindings (car org-prefix-format-compiled))
-	 (formatter (cadr org-prefix-format-compiled)))
-    (cl-loop for (var value) in bindings
-	     do (set var value))
-    (save-match-data
-      ;; Diary entries sometimes have extra whitespace at the beginning
-      (setq txt (org-trim txt))
-
-      ;; Fix the tags part in txt
-      (setq txt (org-agenda-fix-displayed-tags
-		 txt tags
-		 org-agenda-show-inherited-tags
-		 org-agenda-hide-tags-regexp))
-
-      (let* ((category (or category
-			   (if buffer-file-name
-			       (file-name-sans-extension
-				(file-name-nondirectory buffer-file-name))
-			     "")))
-	     (category-icon (org-agenda-get-category-icon category))
-	     (category-icon (if category-icon
-				(propertize " " 'display category-icon)
-			      ""))
-	     (effort (and (not (string= txt ""))
-			  (get-text-property 1 'effort txt)))
-	     ;; time, tag, effort are needed for the eval of the prefix format
-	     (tag (if tags (nth (1- (length tags)) tags) ""))
-	     (time-grid-trailing-characters (nth 2 org-agenda-time-grid))
-	     time
-	     (ts (if dotime (concat
-			     (if (stringp dotime) dotime "")
-			     (and org-agenda-search-headline-for-time txt))))
-	     (time-of-day (and dotime (org-get-time-of-day ts)))
-	     stamp plain s0 s1 s2 rtn srp l
-	     duration breadcrumbs)
-	(and (derived-mode-p 'org-mode) buffer-file-name
-	     (add-to-list 'org-agenda-contributing-files buffer-file-name))
-	(when (and dotime time-of-day)
-	  ;; Extract starting and ending time and move them to prefix
-	  (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
-		    (setq plain (string-match org-plain-time-of-day-regexp ts)))
-	    (setq s0 (match-string 0 ts)
-		  srp (and stamp (match-end 3))
-		  s1 (match-string (if plain 1 2) ts)
-		  s2 (match-string (if plain 8 (if srp 4 6)) ts))
-
-	    ;; If the times are in TXT (not in DOTIMES), and the prefix will list
-	    ;; them, we might want to remove them there to avoid duplication.
-	    ;; The user can turn this off with a variable.
-	    (if (and org-prefix-has-time
-		     org-agenda-remove-times-when-in-prefix (or stamp plain)
-		     (string-match (concat (regexp-quote s0) " *") txt)
-		     (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
-		     (if (eq org-agenda-remove-times-when-in-prefix 'beg)
-			 (= (match-beginning 0) 0)
-		       t))
-		(setq txt (replace-match "" nil nil txt))))
-	  ;; Normalize the time(s) to 24 hour
-	  (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
-	  (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
-
-	  ;; Try to set s2 if s1 and
-	  ;; `org-agenda-default-appointment-duration' are set
-	  (when (and s1 (not s2) org-agenda-default-appointment-duration)
-	    (setq s2
-		  (org-duration-from-minutes
-		   (+ (org-duration-to-minutes s1 t)
-		      org-agenda-default-appointment-duration)
-		   nil t)))
-
-	  ;; Compute the duration
-	  (when s2
-	    (setq duration (- (org-duration-to-minutes s2)
-			      (org-duration-to-minutes s1)))))
-
-	(when (string-match "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" txt)
-	  ;; Tags are in the string
-	  (if (or (eq org-agenda-remove-tags t)
-		  (and org-agenda-remove-tags
-		       org-prefix-has-tag))
-	      (setq txt (replace-match "" t t txt))
-	    (setq txt (replace-match
-		       (concat (make-string (max (- 50 (length txt)) 1) ?\ )
-			       (match-string 2 txt))
-		       t t txt))))
-
-	(when remove-re
-	  (while (string-match remove-re txt)
-	    (setq txt (replace-match "" t t txt))))
-
-	;; Set org-heading property on `txt' to mark the start of the
-	;; heading.
-	(add-text-properties 0 (length txt) '(org-heading t) txt)
-
-	;; Prepare the variables needed in the eval of the compiled format
-	(if org-prefix-has-breadcrumbs
-	    (setq breadcrumbs (org-with-point-at (org-get-at-bol 'org-marker)
-				(let ((s (org-display-outline-path nil nil "->" t)))
-				  (if (eq "" s) "" (concat s "->"))))))
-	(setq time (cond (s2 (concat
-			      (org-agenda-time-of-day-to-ampm-maybe s1)
-			      "-" (org-agenda-time-of-day-to-ampm-maybe s2)
-			      (if org-agenda-timegrid-use-ampm " ")))
-			 (s1 (concat
-			      (org-agenda-time-of-day-to-ampm-maybe s1)
-			      (if org-agenda-timegrid-use-ampm
-                                  (concat time-grid-trailing-characters " ")
-                                time-grid-trailing-characters)))
-			 (t ""))
-	      extra (or (and (not habitp) extra) "")
-	      category (if (symbolp category) (symbol-name category) category)
-	      level (or level ""))
-	(if (string-match org-bracket-link-regexp category)
-	    (progn
-	      (setq l (if (match-end 3)
-			  (- (match-end 3) (match-beginning 3))
-			(- (match-end 1) (match-beginning 1))))
-	      (when (< l (or org-prefix-category-length 0))
-		(setq category (copy-sequence category))
-		(org-add-props category nil
-		  'extra-space (make-string
-				(- org-prefix-category-length l 1) ?\ ))))
-	  (if (and org-prefix-category-max-length
-		   (>= (length category) org-prefix-category-max-length))
-	      (setq category (substring category 0 (1- org-prefix-category-max-length)))))
-	;; Evaluate the compiled format
-	(setq rtn (concat (eval formatter) txt))
-
-	;; And finally add the text properties
-	(remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
-	(org-add-props rtn nil
-	  'org-category category
-	  'tags (mapcar 'org-downcase-keep-props tags)
-	  'org-highest-priority org-highest-priority
-	  'org-lowest-priority org-lowest-priority
-	  'time-of-day time-of-day
-	  'duration duration
-	  'breadcrumbs breadcrumbs
-	  'txt txt
-	  'level level
-	  'time time
-	  'extra extra
-	  'format org-prefix-format-compiled
-	  'dotime dotime)))))
-
-(defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
-  "Remove tags string from TXT, and add a modified list of tags.
-The modified list may contain inherited tags, and tags matched by
-`org-agenda-hide-tags-regexp' will be removed."
-  (when (or add-inherited hide-re)
-    (if (string-match "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" txt)
-	(setq txt (substring txt 0 (match-beginning 0))))
-    (setq tags
-	  (delq nil
-		(mapcar (lambda (tg)
-			  (if (or (and hide-re (string-match hide-re tg))
-				  (and (not add-inherited)
-				       (get-text-property 0 'inherited tg)))
-			      nil
-			    tg))
-			tags)))
-    (when tags
-      (let ((have-i (get-text-property 0 'inherited (car tags)))
-	    i)
-	(setq txt (concat txt " :"
-			  (mapconcat
-			   (lambda (x)
-			     (setq i (get-text-property 0 'inherited x))
-			     (if (and have-i (not i))
-				 (progn
-				   (setq have-i nil)
-				   (concat ":" x))
-			       x))
-			   tags ":")
-			  (if have-i "::" ":"))))))
-  txt)
-
-(defun org-downcase-keep-props (s)
-  (let ((props (text-properties-at 0 s)))
-    (setq s (downcase s))
-    (add-text-properties 0 (length s) props s)
-    s))
-
-(defvar org-agenda-sorting-strategy) ;; because the def is in a let form
-
-(defun org-agenda-add-time-grid-maybe (list ndays todayp)
-  "Add a time-grid for agenda items which need it.
-
-LIST is the list of agenda items formatted by `org-agenda-list'.
-NDAYS is the span of the current agenda view.
-TODAYP is t when the current agenda view is on today."
-  (catch 'exit
-    (cond ((not org-agenda-use-time-grid) (throw 'exit list))
-	  ((and todayp (member 'today (car org-agenda-time-grid))))
-	  ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
-	  ((member 'weekly (car org-agenda-time-grid)))
-	  (t (throw 'exit list)))
-    (let* ((have (delq nil (mapcar
-			    (lambda (x) (get-text-property 1 'time-of-day x))
-			    list)))
-	   (string (nth 3 org-agenda-time-grid))
-	   (gridtimes (nth 1 org-agenda-time-grid))
-	   (req (car org-agenda-time-grid))
-	   (remove (member 'remove-match req))
-	   new time)
-      (if (and (member 'require-timed req) (not have))
-	  ;; don't show empty grid
-	  (throw 'exit list))
-      (while (setq time (pop gridtimes))
-	(unless (and remove (member time have))
-	  (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
-	  (push (org-agenda-format-item
-		 nil string nil "" nil
-		 (concat (substring time 0 -2) ":" (substring time -2)))
-		new)
-	  (put-text-property
-	   2 (length (car new)) 'face 'org-time-grid (car new))))
-      (when (and todayp org-agenda-show-current-time-in-grid)
-	(push (org-agenda-format-item
-	       nil org-agenda-current-time-string nil "" nil
-	       (format-time-string "%H:%M "))
-	      new)
-	(put-text-property
-	 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
-
-      (if (member 'time-up org-agenda-sorting-strategy-selected)
-	  (append new list)
-	(append list new)))))
-
-(defun org-compile-prefix-format (key)
-  "Compile the prefix format into a Lisp form that can be evaluated.
-The resulting form and associated variable bindings is returned
-and stored in the variable `org-prefix-format-compiled'."
-  (setq org-prefix-has-time nil
-	org-prefix-has-tag nil
-	org-prefix-category-length nil
-	org-prefix-has-effort nil
-	org-prefix-has-breadcrumbs nil)
-  (let ((s (cond
-	    ((stringp org-agenda-prefix-format)
-	     org-agenda-prefix-format)
-	    ((assq key org-agenda-prefix-format)
-	     (cdr (assq key org-agenda-prefix-format)))
-	    (t "  %-12:c%?-12t% s")))
-	(start 0)
-	varform vars var e c f opt)
-    (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltseib]\\|(.+)\\)"
-			 s start)
-      (setq var (or (cdr (assoc (match-string 4 s)
-				'(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
-				  ("i" . category-icon) ("T" . tag) ("e" . effort) ("b" . breadcrumbs))))
-		    'eval)
-	    c (or (match-string 3 s) "")
-	    opt (match-beginning 1)
-	    start (1+ (match-beginning 0)))
-      (if (eq var 'time) (setq org-prefix-has-time t))
-      (if (eq var 'tag)  (setq org-prefix-has-tag  t))
-      (if (eq var 'effort) (setq org-prefix-has-effort t))
-      (if (eq var 'breadcrumbs) (setq org-prefix-has-breadcrumbs t))
-      (setq f (concat "%" (match-string 2 s) "s"))
-      (when (eq var 'category)
-	(setq org-prefix-category-length
-	      (floor (abs (string-to-number (match-string 2 s)))))
-	(setq org-prefix-category-max-length
-	      (let ((x (match-string 2 s)))
-		(save-match-data
-		  (if (string-match "\\.[0-9]+" x)
-		      (string-to-number (substring (match-string 0 x) 1)))))))
-      (if (eq var 'eval)
-	  (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
-	(if opt
-	    (setq varform
-		  `(if (or (equal "" ,var) (equal nil ,var))
-		       ""
-		     (format ,f (concat ,var ,c))))
-	  (setq varform
-		`(format ,f (if (or (equal ,var "")
-				    (equal ,var nil)) ""
-			      (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
-      (setq s (replace-match "%s" t nil s))
-      (push varform vars))
-    (setq vars (nreverse vars))
-    (with-current-buffer (or org-agenda-buffer (current-buffer))
-      (setq org-prefix-format-compiled
-	    (list
-	     `((org-prefix-has-time ,org-prefix-has-time)
-	       (org-prefix-has-tag ,org-prefix-has-tag)
-	       (org-prefix-category-length ,org-prefix-category-length)
-	       (org-prefix-has-effort ,org-prefix-has-effort)
-	       (org-prefix-has-breadcrumbs ,org-prefix-has-breadcrumbs))
-	     `(format ,s ,@vars))))))
-
-(defun org-set-sorting-strategy (key)
-  (if (symbolp (car org-agenda-sorting-strategy))
-      ;; the old format
-      (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
-    (setq org-agenda-sorting-strategy-selected
-	  (or (cdr (assq key org-agenda-sorting-strategy))
-	      (cdr (assq 'agenda org-agenda-sorting-strategy))
-	      '(time-up category-keep priority-down)))))
-
-(defun org-get-time-of-day (s &optional string mod24)
-  "Check string S for a time of day.
-If found, return it as a military time number between 0 and 2400.
-If not found, return nil.
-The optional STRING argument forces conversion into a 5 character wide string
-HH:MM."
-  (save-match-data
-    (when
-	(and
-	 (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
-	     (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
-	 (not (eq (get-text-property 1 'face s) 'org-link)))
-      (let* ((h (string-to-number (match-string 1 s)))
-	     (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
-	     (ampm (if (match-end 4) (downcase (match-string 4 s))))
-	     (am-p (equal ampm "am"))
-	     (h1   (cond ((not ampm) h)
-			 ((= h 12) (if am-p 0 12))
-			 (t (+ h (if am-p 0 12)))))
-	     (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
-		     (mod h1 24) h1))
-	     (t0 (+ (* 100 h2) m))
-	     (t1 (concat (if (>= h1 24) "+" " ")
-			 (if (and org-agenda-time-leading-zero
-				  (< t0 1000)) "0" "")
-			 (if (< t0 100) "0" "")
-			 (if (< t0 10)  "0" "")
-			 (int-to-string t0))))
-	(if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
-
-(defvar org-agenda-before-sorting-filter-function nil
-  "Function to be applied to agenda items prior to sorting.
-Prior to sorting also means just before they are inserted into the agenda.
-
-To aid sorting, you may revisit the original entries and add more text
-properties which will later be used by the sorting functions.
-
-The function should take a string argument, an agenda line.
-It has access to the text properties in that line, which contain among
-other things, the property `org-hd-marker' that points to the entry
-where the line comes from.  Note that not all lines going into the agenda
-have this property, only most.
-
-The function should return the modified string.  It is probably best
-to ONLY change text properties.
-
-You can also use this function as a filter, by returning nil for lines
-you don't want to have in the agenda at all.  For this application, you
-could bind the variable in the options section of a custom command.")
-
-(defun org-agenda-finalize-entries (list &optional type)
-  "Sort, limit and concatenate the LIST of agenda items.
-The optional argument TYPE tells the agenda type."
-  (let ((max-effort (cond ((listp org-agenda-max-effort)
-			   (cdr (assoc type org-agenda-max-effort)))
-			  (t org-agenda-max-effort)))
-	(max-todo (cond ((listp org-agenda-max-todos)
-			 (cdr (assoc type org-agenda-max-todos)))
-			(t org-agenda-max-todos)))
-	(max-tags (cond ((listp org-agenda-max-tags)
-			 (cdr (assoc type org-agenda-max-tags)))
-			(t org-agenda-max-tags)))
-	(max-entries (cond ((listp org-agenda-max-entries)
-			    (cdr (assoc type org-agenda-max-entries)))
-			   (t org-agenda-max-entries))))
-    (when org-agenda-before-sorting-filter-function
-      (setq list
-	    (delq nil
-		  (mapcar
-		   org-agenda-before-sorting-filter-function list))))
-    (setq list (mapcar 'org-agenda-highlight-todo list)
-	  list (mapcar 'identity (sort list 'org-entries-lessp)))
-    (when max-effort
-      (setq list (org-agenda-limit-entries
-		  list 'effort-minutes max-effort
-		  (lambda (e) (or e (if org-sort-agenda-noeffort-is-high
-					32767 -1))))))
-    (when max-todo
-      (setq list (org-agenda-limit-entries list 'todo-state max-todo)))
-    (when max-tags
-      (setq list (org-agenda-limit-entries list 'tags max-tags)))
-    (when max-entries
-      (setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
-    (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
-      (setq list (mapcar #'org-agenda--mark-blocked-entry list)))
-    (mapconcat 'identity list "\n")))
-
-(defun org-agenda-limit-entries (list prop limit &optional fn)
-  "Limit the number of agenda entries."
-  (let ((include (and limit (< limit 0))))
-    (if limit
-	(let ((fun (or fn (lambda (p) (if p 1))))
-	      (lim 0))
-	  (delq nil
-		(mapcar
-		 (lambda (e)
-		   (let ((pval (funcall
-				fun (get-text-property (1- (length e))
-						       prop e))))
-		     (if pval (setq lim (+ lim pval)))
-		     (cond ((and pval (<= lim (abs limit))) e)
-			   ((and include (not pval)) e))))
-		 list)))
-      list)))
-
-(defun org-agenda-limit-interactively (remove)
-  "In agenda, interactively limit entries to various maximums."
-  (interactive "P")
-  (if remove
-      (progn (setq org-agenda-max-entries nil
-		   org-agenda-max-todos nil
-		   org-agenda-max-tags nil
-		   org-agenda-max-effort nil)
-	     (org-agenda-redo))
-    (let* ((max (read-char "Number of [e]ntries [t]odos [T]ags [E]ffort? "))
-	   (msg (cond ((= max ?E) "How many minutes? ")
-		      ((= max ?e) "How many entries? ")
-		      ((= max ?t) "How many TODO entries? ")
-		      ((= max ?T) "How many tagged entries? ")
-		      (t (user-error "Wrong input"))))
-	   (num (string-to-number (read-from-minibuffer msg))))
-      (cond ((equal max ?e)
-	     (let ((org-agenda-max-entries num)) (org-agenda-redo)))
-	    ((equal max ?t)
-	     (let ((org-agenda-max-todos num)) (org-agenda-redo)))
-	    ((equal max ?T)
-	     (let ((org-agenda-max-tags num)) (org-agenda-redo)))
-	    ((equal max ?E)
-	     (let ((org-agenda-max-effort num)) (org-agenda-redo))))))
-  (org-agenda-fit-window-to-buffer))
-
-(defun org-agenda-highlight-todo (x)
-  (let ((org-done-keywords org-done-keywords-for-agenda)
-	(case-fold-search nil)
-	re)
-    (if (eq x 'line)
-	(save-excursion
-	  (beginning-of-line 1)
-	  (setq re (org-get-at-bol 'org-todo-regexp))
-	  (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
-	  (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
-	    (add-text-properties (match-beginning 0) (match-end 1)
-				 (list 'face (org-get-todo-face 1)))
-	    (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
-	      (delete-region (match-beginning 1) (1- (match-end 0)))
-	      (goto-char (match-beginning 1))
-	      (insert (format org-agenda-todo-keyword-format s)))))
-      (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
-	(setq re (get-text-property 0 'org-todo-regexp x))
-	(when (and re
-		   ;; Test `pl' because if there's no heading content,
-		   ;; there's no point matching to highlight.  Note
-		   ;; that if we didn't test `pl' first, and there
-		   ;; happened to be no keyword from `org-todo-regexp'
-		   ;; on this heading line, then the `equal' comparison
-		   ;; afterwards would spuriously succeed in the case
-		   ;; where `pl' is nil -- causing an args-out-of-range
-		   ;; error when we try to add text properties to text
-		   ;; that isn't there.
-		   pl
-		   (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
-					x pl) pl))
-	  (add-text-properties
-	   (or (match-end 1) (match-end 0)) (match-end 0)
-	   (list 'face (org-get-todo-face (match-string 2 x)))
-	   x)
-	  (when (match-end 1)
-	    (setq x
-		  (concat
-		   (substring x 0 (match-end 1))
-		   (format org-agenda-todo-keyword-format
-			   (match-string 2 x))
-		   ;; Remove `display' property as the icon could leak
-		   ;; on the white space.
-		   (org-add-props " " (org-plist-delete (text-properties-at 0 x)
-							'display))
-		   (substring x (match-end 3)))))))
-      x)))
-
-(defsubst org-cmp-values (a b property)
-  "Compare the numeric value of text PROPERTY for string A and B."
-  (let ((pa (or (get-text-property (1- (length a)) property a) 0))
-	(pb (or (get-text-property (1- (length b)) property b) 0)))
-    (cond ((> pa pb) +1)
-	  ((< pa pb) -1))))
-
-(defsubst org-cmp-effort (a b)
-  "Compare the effort values of string A and B."
-  (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
-	 ;; `effort-minutes' property is not directly accessible from
-	 ;; the strings, but is stored as a property in `txt'.
-	 (ea (or (get-text-property
-		  0 'effort-minutes (get-text-property 0 'txt a))
-		 def))
-	 (eb (or (get-text-property
-		  0 'effort-minutes (get-text-property 0 'txt b))
-		 def)))
-    (cond ((> ea eb) +1)
-	  ((< ea eb) -1))))
-
-(defsubst org-cmp-category (a b)
-  "Compare the string values of categories of strings A and B."
-  (let ((ca (or (get-text-property (1- (length a)) 'org-category a) ""))
-	(cb (or (get-text-property (1- (length b)) 'org-category b) "")))
-    (cond ((string-lessp ca cb) -1)
-	  ((string-lessp cb ca) +1))))
-
-(defsubst org-cmp-todo-state (a b)
-  "Compare the todo states of strings A and B."
-  (let* ((ma (or (get-text-property 1 'org-marker a)
-		 (get-text-property 1 'org-hd-marker a)))
-	 (mb (or (get-text-property 1 'org-marker b)
-		 (get-text-property 1 'org-hd-marker b)))
-	 (fa (and ma (marker-buffer ma)))
-	 (fb (and mb (marker-buffer mb)))
-	 (todo-kwds
-	  (or (and fa (with-current-buffer fa org-todo-keywords-1))
-	      (and fb (with-current-buffer fb org-todo-keywords-1))))
-	 (ta (or (get-text-property 1 'todo-state a) ""))
-	 (tb (or (get-text-property 1 'todo-state b) ""))
-	 (la (- (length (member ta todo-kwds))))
-	 (lb (- (length (member tb todo-kwds))))
-	 (donepa (member ta org-done-keywords-for-agenda))
-	 (donepb (member tb org-done-keywords-for-agenda)))
-    (cond ((and donepa (not donepb)) -1)
-	  ((and (not donepa) donepb) +1)
-	  ((< la lb) -1)
-	  ((< lb la) +1))))
-
-(defsubst org-cmp-alpha (a b)
-  "Compare the headlines, alphabetically."
-  (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
-	 (plb (text-property-any 0 (length b) 'org-heading t b))
-	 (ta (and pla (substring a pla)))
-	 (tb (and plb (substring b plb)))
-	 (case-fold-search nil))
-    (when pla
-      (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
-				"\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
-	  (setq ta (substring ta (match-end 0))))
-      (setq ta (downcase ta)))
-    (when plb
-      (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
-				"\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
-	  (setq tb (substring tb (match-end 0))))
-      (setq tb (downcase tb)))
-    (cond ((not ta) +1)
-	  ((not tb) -1)
-	  ((string-lessp ta tb) -1)
-	  ((string-lessp tb ta) +1))))
-
-(defsubst org-cmp-tag (a b)
-  "Compare the string values of the first tags of A and B."
-  (let ((ta (car (last (get-text-property 1 'tags a))))
-	(tb (car (last (get-text-property 1 'tags b)))))
-    (cond ((not ta) +1)
-	  ((not tb) -1)
-	  ((string-lessp ta tb) -1)
-	  ((string-lessp tb ta) +1))))
-
-(defsubst org-cmp-time (a b)
-  "Compare the time-of-day values of strings A and B."
-  (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
-	 (ta (or (get-text-property 1 'time-of-day a) def))
-	 (tb (or (get-text-property 1 'time-of-day b) def)))
-    (cond ((< ta tb) -1)
-	  ((< tb ta) +1))))
-
-(defsubst org-cmp-ts (a b type)
-  "Compare the timestamps values of entries A and B.
-When TYPE is \"scheduled\", \"deadline\", \"timestamp\" or
-\"timestamp_ia\", compare within each of these type.  When TYPE
-is the empty string, compare all timestamps without respect of
-their type."
-  (let* ((def (if org-sort-agenda-notime-is-late most-positive-fixnum -1))
-	 (ta (or (and (string-match type (or (get-text-property 1 'type a) ""))
-		      (get-text-property 1 'ts-date a))
-		 def))
-	 (tb (or (and (string-match type (or (get-text-property 1 'type b) ""))
-		      (get-text-property 1 'ts-date b))
-		 def)))
-    (cond ((< ta tb) -1)
-	  ((< tb ta) +1))))
-
-(defsubst org-cmp-habit-p (a b)
-  "Compare the todo states of strings A and B."
-  (let ((ha (get-text-property 1 'org-habit-p a))
-	(hb (get-text-property 1 'org-habit-p b)))
-    (cond ((and ha (not hb)) -1)
-	  ((and (not ha) hb) +1))))
-
-(defun org-entries-lessp (a b)
-  "Predicate for sorting agenda entries."
-  ;; The following variables will be used when the form is evaluated.
-  ;; So even though the compiler complains, keep them.
-  (let* ((ss org-agenda-sorting-strategy-selected)
-	 (timestamp-up    (and (org-em 'timestamp-up 'timestamp-down ss)
-			       (org-cmp-ts a b "")))
-	 (timestamp-down  (if timestamp-up (- timestamp-up) nil))
-	 (scheduled-up    (and (org-em 'scheduled-up 'scheduled-down ss)
-			       (org-cmp-ts a b "scheduled")))
-	 (scheduled-down  (if scheduled-up (- scheduled-up) nil))
-	 (deadline-up     (and (org-em 'deadline-up 'deadline-down ss)
-			       (org-cmp-ts a b "deadline")))
-	 (deadline-down   (if deadline-up (- deadline-up) nil))
-	 (tsia-up         (and (org-em 'tsia-up 'tsia-down ss)
-			       (org-cmp-ts a b "timestamp_ia")))
-	 (tsia-down       (if tsia-up (- tsia-up) nil))
-	 (ts-up           (and (org-em 'ts-up 'ts-down ss)
-			       (org-cmp-ts a b "timestamp")))
-	 (ts-down         (if ts-up (- ts-up) nil))
-	 (time-up         (and (org-em 'time-up 'time-down ss)
-			       (org-cmp-time a b)))
-	 (time-down       (if time-up (- time-up) nil))
-	 (stats-up        (and (org-em 'stats-up 'stats-down ss)
-			       (org-cmp-values a b 'org-stats)))
-	 (stats-down      (if stats-up (- stats-up) nil))
-	 (priority-up     (and (org-em 'priority-up 'priority-down ss)
-			       (org-cmp-values a b 'priority)))
-	 (priority-down   (if priority-up (- priority-up) nil))
-	 (effort-up       (and (org-em 'effort-up 'effort-down ss)
-			       (org-cmp-effort a b)))
-	 (effort-down     (if effort-up (- effort-up) nil))
-	 (category-up     (and (or (org-em 'category-up 'category-down ss)
-				   (memq 'category-keep ss))
-			       (org-cmp-category a b)))
-	 (category-down   (if category-up (- category-up) nil))
-	 (category-keep   (if category-up +1 nil))
-	 (tag-up          (and (org-em 'tag-up 'tag-down ss)
-			       (org-cmp-tag a b)))
-	 (tag-down        (if tag-up (- tag-up) nil))
-	 (todo-state-up   (and (org-em 'todo-state-up 'todo-state-down ss)
-			       (org-cmp-todo-state a b)))
-	 (todo-state-down (if todo-state-up (- todo-state-up) nil))
-	 (habit-up        (and (org-em 'habit-up 'habit-down ss)
-			       (org-cmp-habit-p a b)))
-	 (habit-down      (if habit-up (- habit-up) nil))
-	 (alpha-up        (and (org-em 'alpha-up 'alpha-down ss)
-			       (org-cmp-alpha a b)))
-	 (alpha-down      (if alpha-up (- alpha-up) nil))
-	 (need-user-cmp   (org-em 'user-defined-up 'user-defined-down ss))
-	 user-defined-up user-defined-down)
-    (if (and need-user-cmp org-agenda-cmp-user-defined
-	     (functionp org-agenda-cmp-user-defined))
-	(setq user-defined-up
-	      (funcall org-agenda-cmp-user-defined a b)
-	      user-defined-down (if user-defined-up (- user-defined-up) nil)))
-    (cdr (assoc
-	  (eval (cons 'or org-agenda-sorting-strategy-selected))
-	  '((-1 . t) (1 . nil) (nil . nil))))))
-
-;;; Agenda restriction lock
-
-(defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
-  "Overlay to mark the headline to which agenda commands are restricted.")
-(overlay-put org-agenda-restriction-lock-overlay
-	     'face 'org-agenda-restriction-lock)
-(overlay-put org-agenda-restriction-lock-overlay
-	     'help-echo "Agendas are currently limited to this subtree.")
-(delete-overlay org-agenda-restriction-lock-overlay)
-
-(defun org-agenda-set-restriction-lock-from-agenda (arg)
-  "Set the restriction lock to the agenda item at point from within the agenda.
-When called with a `\\[universal-argument]' prefix, restrict to
-the file which contains the item.
-Argument ARG is the prefix argument."
-  (interactive "P")
-  (unless  (derived-mode-p 'org-agenda-mode)
-    (user-error "Not in an Org agenda buffer"))
-  (let* ((marker (or (org-get-at-bol 'org-marker)
-                     (org-agenda-error)))
-         (buffer (marker-buffer marker))
-         (pos (marker-position marker)))
-    (with-current-buffer buffer
-      (goto-char pos)
-      (org-agenda-set-restriction-lock arg))))
-
-;;;###autoload
-(defun org-agenda-set-restriction-lock (&optional type)
-  "Set restriction lock for agenda, to current subtree or file.
-Restriction will be the file if TYPE is `file', or if type is the
-universal prefix \\='(4), or if the cursor is before the first headline
-in the file.  Otherwise, restriction will be to the current subtree."
-  (interactive "P")
-  (org-agenda-remove-restriction-lock 'noupdate)
-  (and (equal type '(4)) (setq type 'file))
-  (setq type (cond
-	      (type type)
-	      ((org-at-heading-p) 'subtree)
-	      ((condition-case nil (org-back-to-heading t) (error nil))
-	       'subtree)
-	      (t 'file)))
-  (if (eq type 'subtree)
-      (progn
-	(setq org-agenda-restrict (current-buffer))
-	(setq org-agenda-overriding-restriction 'subtree)
-	(put 'org-agenda-files 'org-restrict
-	     (list (buffer-file-name (buffer-base-buffer))))
-	(org-back-to-heading t)
-	(move-overlay org-agenda-restriction-lock-overlay
-		      (point)
-		      (if org-agenda-restriction-lock-highlight-subtree
-			  (save-excursion (org-end-of-subtree t t) (point))
-			(point-at-eol)))
-	(move-marker org-agenda-restrict-begin (point))
-	(move-marker org-agenda-restrict-end
-		     (save-excursion (org-end-of-subtree t t)))
-	(message "Locking agenda restriction to subtree"))
-    (put 'org-agenda-files 'org-restrict
-	 (list (buffer-file-name (buffer-base-buffer))))
-    (setq org-agenda-restrict nil)
-    (setq org-agenda-overriding-restriction 'file)
-    (move-marker org-agenda-restrict-begin nil)
-    (move-marker org-agenda-restrict-end nil)
-    (message "Locking agenda restriction to file"))
-  (setq current-prefix-arg nil)
-  (org-agenda-maybe-redo))
-
-(defun org-agenda-remove-restriction-lock (&optional noupdate)
-  "Remove the agenda restriction lock."
-  (interactive "P")
-  (delete-overlay org-agenda-restriction-lock-overlay)
-  (delete-overlay org-speedbar-restriction-lock-overlay)
-  (setq org-agenda-overriding-restriction nil)
-  (setq org-agenda-restrict nil)
-  (put 'org-agenda-files 'org-restrict nil)
-  (move-marker org-agenda-restrict-begin nil)
-  (move-marker org-agenda-restrict-end nil)
-  (setq current-prefix-arg nil)
-  (message "Agenda restriction lock removed")
-  (or noupdate (org-agenda-maybe-redo)))
-
-(defun org-agenda-maybe-redo ()
-  "If there is any window showing the agenda view, update it."
-  (let ((w (get-buffer-window (or org-agenda-this-buffer-name
-				  org-agenda-buffer-name)
-			      t))
-	(w0 (selected-window)))
-    (when w
-      (select-window w)
-      (org-agenda-redo)
-      (select-window w0)
-      (if org-agenda-overriding-restriction
-	  (message "Agenda view shifted to new %s restriction"
-		   org-agenda-overriding-restriction)
-	(message "Agenda restriction lock removed")))))
-
-;;; Agenda commands
-
-(defun org-agenda-check-type (error &rest types)
-  "Check if agenda buffer is of allowed type.
-If ERROR is non-nil, throw an error, otherwise just return nil.
-Allowed types are `agenda' `todo' `tags' `search'."
-  (cond ((not org-agenda-type)
-	 (error "No Org agenda currently displayed"))
-	((memq org-agenda-type types) t)
-	(error
-	 (error "Not allowed in %s-type agenda buffers" org-agenda-type))
-	(t nil)))
-
-(defun org-agenda-Quit ()
-  "Exit the agenda, killing the agenda buffer.
-Like `org-agenda-quit', but kill the buffer even when
-`org-agenda-sticky' is non-nil."
-  (interactive)
-  (org-agenda--quit))
-
-(defun org-agenda-quit ()
-  "Exit the agenda.
-
-When `org-agenda-sticky' is non-nil, bury the agenda buffer
-instead of killing it.
-
-When `org-agenda-restore-windows-after-quit' is non-nil, restore
-the pre-agenda window configuration.
-
-When column view is active, exit column view instead of the
-agenda."
-  (interactive)
-  (org-agenda--quit org-agenda-sticky))
-
-(defun org-agenda--quit (&optional bury)
-  (if org-agenda-columns-active
-      (org-columns-quit)
-    (let ((wconf org-agenda-pre-window-conf)
-	  (buf (current-buffer))
-	  (org-agenda-last-indirect-window
-	   (and (eq org-indirect-buffer-display 'other-window)
-		org-agenda-last-indirect-buffer
-		(get-buffer-window org-agenda-last-indirect-buffer))))
-      (cond
-       ((eq org-agenda-window-setup 'other-frame)
-	(delete-frame))
-       ((and org-agenda-restore-windows-after-quit
-	     wconf)
-	;; Maybe restore the pre-agenda window configuration.  Reset
-	;; `org-agenda-pre-window-conf' before running
-	;; `set-window-configuration', which loses the current buffer.
-	(setq org-agenda-pre-window-conf nil)
-	(set-window-configuration wconf))
-       (t
-	(when org-agenda-last-indirect-window
-	  (delete-window org-agenda-last-indirect-window))
-	(and (not (eq org-agenda-window-setup 'current-window))
-	     (not (one-window-p))
-	     (delete-window))))
-      (if bury
-	  ;; Set the agenda buffer as the current buffer instead of
-	  ;; passing it as an argument to `bury-buffer' so that
-	  ;; `bury-buffer' removes it from the window.
-	  (with-current-buffer buf
-	    (bury-buffer))
-	(kill-buffer buf)
-	(setq org-agenda-archives-mode nil
-	      org-agenda-buffer nil)))))
-
-(defun org-agenda-exit ()
-  "Exit the agenda, killing Org buffers loaded by the agenda.
-Like `org-agenda-Quit', but kill any buffers that were created by
-the agenda.  Org buffers visited directly by the user will not be
-touched.  Also, exit the agenda even if it is in column view."
-  (interactive)
-  (when org-agenda-columns-active
-    (org-columns-quit))
-  (org-release-buffers org-agenda-new-buffers)
-  (setq org-agenda-new-buffers nil)
-  (org-agenda-Quit))
-
-(defun org-agenda-kill-all-agenda-buffers ()
-  "Kill all buffers in `org-agenda-mode'.
-This is used when toggling sticky agendas."
-  (interactive)
-  (let (blist)
-    (dolist (buf (buffer-list))
-      (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
-	(push buf blist)))
-    (mapc 'kill-buffer blist)))
-
-(defun org-agenda-execute (arg)
-  "Execute another agenda command, keeping same window.
-So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
-in the agenda."
-  (interactive "P")
-  (let ((org-agenda-window-setup 'current-window))
-    (org-agenda arg)))
-
-(defun org-agenda-redo (&optional all)
-  "Rebuild possibly ALL agenda view(s) in the current buffer."
-  (interactive "P")
-  (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
-	 (cpa (unless (eq all t) current-prefix-arg))
-	 (org-agenda-doing-sticky-redo org-agenda-sticky)
-	 (org-agenda-sticky nil)
-	 (org-agenda-buffer-name (or org-agenda-this-buffer-name
-				     org-agenda-buffer-name))
-	 (org-agenda-keep-modes t)
-	 (tag-filter org-agenda-tag-filter)
-	 (tag-preset (get 'org-agenda-tag-filter :preset-filter))
-	 (top-hl-filter org-agenda-top-headline-filter)
-	 (cat-filter org-agenda-category-filter)
-	 (cat-preset (get 'org-agenda-category-filter :preset-filter))
-	 (re-filter org-agenda-regexp-filter)
-	 (re-preset (get 'org-agenda-regexp-filter :preset-filter))
-	 (effort-filter org-agenda-effort-filter)
-	 (effort-preset (get 'org-agenda-effort-filter :preset-filter))
-	 (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
-	 (cols org-agenda-columns-active)
-	 (line (org-current-line))
-	 (window-line (- line (org-current-line (window-start))))
-	 (lprops (get 'org-agenda-redo-command 'org-lprops))
-	 (redo-cmd (get-text-property p 'org-redo-cmd))
-	 (last-args (get-text-property p 'org-last-args))
-	 (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
-	 (org-agenda-overriding-cmd-arguments
-	  (unless (eq all t)
-	    (cond ((listp last-args)
-		   (cons (or cpa (car last-args)) (cdr last-args)))
-		  ((stringp last-args)
-		   last-args))))
-	 (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
-    (put 'org-agenda-tag-filter :preset-filter nil)
-    (put 'org-agenda-category-filter :preset-filter nil)
-    (put 'org-agenda-regexp-filter :preset-filter nil)
-    (put 'org-agenda-effort-filter :preset-filter nil)
-    (and cols (org-columns-quit))
-    (message "Rebuilding agenda buffer...")
-    (if series-redo-cmd
-	(eval series-redo-cmd)
-      (org-let lprops redo-cmd))
-    (setq org-agenda-undo-list nil
-	  org-agenda-pending-undo-list nil
-	  org-agenda-tag-filter tag-filter
-	  org-agenda-category-filter cat-filter
-	  org-agenda-regexp-filter re-filter
-	  org-agenda-effort-filter effort-filter
-	  org-agenda-top-headline-filter top-hl-filter)
-    (message "Rebuilding agenda buffer...done")
-    (put 'org-agenda-tag-filter :preset-filter tag-preset)
-    (put 'org-agenda-category-filter :preset-filter cat-preset)
-    (put 'org-agenda-regexp-filter :preset-filter re-preset)
-    (put 'org-agenda-effort-filter :preset-filter effort-preset)
-    (let ((tag (or tag-filter tag-preset))
-	  (cat (or cat-filter cat-preset))
-	  (effort (or effort-filter effort-preset))
-	  (re (or re-filter re-preset)))
-      (when tag (org-agenda-filter-apply tag 'tag t))
-      (when cat (org-agenda-filter-apply cat 'category))
-      (when effort (org-agenda-filter-apply effort 'effort))
-      (when re  (org-agenda-filter-apply re 'regexp)))
-    (and top-hl-filter (org-agenda-filter-top-headline-apply top-hl-filter))
-    (and cols (called-interactively-p 'any) (org-agenda-columns))
-    (org-goto-line line)
-    (recenter window-line)))
-
-(defun org-agenda-redo-all (&optional exhaustive)
-  "Rebuild all agenda views in the current buffer.
-With a prefix argument, do so in all agenda buffers."
-  (interactive "P")
-  (if exhaustive
-      (dolist (buffer (buffer-list))
-        (with-current-buffer buffer
-          (when (derived-mode-p 'org-agenda-mode)
-            (org-agenda-redo t))))
-    (org-agenda-redo t)))
-
-(defvar org-global-tags-completion-table nil)
-(defvar org-agenda-filter-form nil)
-(defvar org-agenda-filtered-by-category nil)
-
-(defun org-agenda-filter-by-category (strip)
-  "Filter lines in the agenda buffer that have a specific category.
-The category is that of the current line.
-Without prefix argument, keep only the lines of that category.
-With a prefix argument, exclude the lines of that category.
-"
-  (interactive "P")
-  (if (and org-agenda-filtered-by-category
-	   org-agenda-category-filter)
-      (org-agenda-filter-show-all-cat)
-    (let ((cat (org-no-properties (org-get-at-eol 'org-category 1))))
-      (cond
-       ((and cat strip)
-        (org-agenda-filter-apply
-         (push (concat "-" cat) org-agenda-category-filter) 'category))
-       (cat
-        (org-agenda-filter-apply
-         (setq org-agenda-category-filter
-	       (list (concat "+" cat))) 'category))
-       (t (error "No category at point"))))))
-
-(defun org-find-top-headline (&optional pos)
-  "Find the topmost parent headline and return it.
-POS when non-nil is the marker or buffer position to start the
-search from."
-  (save-excursion
-    (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
-      (when pos (goto-char pos))
-      ;; Skip up to the topmost parent.
-      (while (org-up-heading-safe))
-      (ignore-errors (nth 4 (org-heading-components))))))
-
-(defvar org-agenda-filtered-by-top-headline nil)
-(defun org-agenda-filter-by-top-headline (strip)
-  "Keep only those lines that are descendants from the same top headline.
-The top headline is that of the current line."
-  (interactive "P")
-  (if org-agenda-filtered-by-top-headline
-      (progn
-        (setq org-agenda-filtered-by-top-headline nil
-	      org-agenda-top-headline-filter nil)
-        (org-agenda-filter-show-all-top-filter))
-    (let ((toph (org-find-top-headline (org-get-at-bol 'org-hd-marker))))
-      (if toph (org-agenda-filter-top-headline-apply toph strip)
-        (error "No top-level headline at point")))))
-
-(defvar org-agenda-regexp-filter nil)
-(defun org-agenda-filter-by-regexp (strip)
-  "Filter agenda entries by a regular expression.
-Regexp filters are cumulative.
-With no prefix argument, keep entries matching the regexp.
-With one prefix argument, filter out entries matching the regexp.
-With two prefix arguments, remove the regexp filters."
-  (interactive "P")
-  (if (not (equal strip '(16)))
-      (let ((flt (concat (if (equal strip '(4)) "-" "+")
-			 (read-from-minibuffer
-			  (if (equal strip '(4))
-			      "Filter out entries matching regexp: "
-			    "Narrow to entries matching regexp: ")))))
-	(push flt org-agenda-regexp-filter)
-	(org-agenda-filter-apply org-agenda-regexp-filter 'regexp))
-    (org-agenda-filter-show-all-re)
-    (message "Regexp filter removed")))
-
-(defvar org-agenda-effort-filter nil)
-(defun org-agenda-filter-by-effort (strip)
-  "Filter agenda entries by effort.
-With no prefix argument, keep entries matching the effort condition.
-With one prefix argument, filter out entries matching the condition.
-With two prefix arguments, remove the effort filters."
-  (interactive "P")
-  (cond
-   ((member strip '(nil 4))
-    (let* ((efforts (split-string
-		     (or (cdr (assoc (concat org-effort-property "_ALL")
-				     org-global-properties))
-			 "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00")))
-	   ;; XXX: the following handles only up to 10 different
-	   ;; effort values.
-	   (allowed-keys (if (null efforts) nil
-			   (mapcar (lambda (n) (mod n 10)) ;turn 10 into 0
-				   (number-sequence 1 (length efforts)))))
-	   (op nil))
-      (while (not (memq op '(?< ?> ?=)))
-	(setq op (read-char-exclusive "Effort operator? (> = or <)")))
-      ;; Select appropriate duration.  Ignore non-digit characters.
-      (let ((prompt
-	     (apply #'format
-		    (concat "Effort %c "
-			    (mapconcat (lambda (s) (concat "[%d]" s))
-				       efforts
-				       " "))
-		    op allowed-keys))
-	    (eff -1))
-	(while (not (memq eff allowed-keys))
-	  (message prompt)
-	  (setq eff (- (read-char-exclusive) 48)))
-	(setq org-agenda-effort-filter
-	      (list (concat (if strip "-" "+")
-			    (char-to-string op)
-			    ;; Numbering is 1 2 3 ... 9 0, but we want
-			    ;; 0 1 2 ... 8 9.
-			    (nth (mod (1- eff) 10) efforts)))))
-      (org-agenda-filter-apply org-agenda-effort-filter 'effort)))
-   (t (org-agenda-filter-show-all-effort)
-      (message "Effort filter removed"))))
-
-(defun org-agenda-filter-remove-all ()
-  "Remove all filters from the current agenda buffer."
-  (interactive)
-  (when org-agenda-tag-filter
-    (org-agenda-filter-show-all-tag))
-  (when org-agenda-category-filter
-    (org-agenda-filter-show-all-cat))
-  (when org-agenda-regexp-filter
-    (org-agenda-filter-show-all-re))
-  (when org-agenda-top-headline-filter
-    (org-agenda-filter-show-all-top-filter))
-  (when org-agenda-effort-filter
-    (org-agenda-filter-show-all-effort))
-  (org-agenda-finalize))
-
-(defun org-agenda-filter-by-tag (arg &optional char exclude)
-  "Keep only those lines in the agenda buffer that have a specific tag.
-
-The tag is selected with its fast selection letter, as configured.
-
-With a `\\[universal-argument]' prefix, exclude the agenda search.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix, filter the literal tag, \
-i.e. don't
-filter on all its group members.
-
-A lisp caller can specify CHAR.  EXCLUDE means that the new tag
-should be used to exclude the search - the interactive user can
-also press `-' or `+' to switch between filtering and excluding."
-  (interactive "P")
-  (let* ((alist org-tag-alist-for-agenda)
-	 (tag-chars (mapconcat
-		     (lambda (x) (if (and (not (symbolp (car x)))
-					  (cdr x))
-				     (char-to-string (cdr x))
-				   ""))
-		     org-tag-alist-for-agenda ""))
-	 (valid-char-list (append '(?\t ?\r ?/ ?. ?\s ?q)
-				  (string-to-list tag-chars)))
-	 (exclude (or exclude (equal arg '(4))))
-	 (expand (not (equal arg '(16))))
-	 (inhibit-read-only t)
-	 (current org-agenda-tag-filter)
-	 a n tag)
-    (unless char
-      (while (not (memq char valid-char-list))
-	(message
-	 "%s by tag [%s ]:tag-char, [TAB]:tag, %s[/]:off, [+/-]:filter/exclude%s, [q]:quit"
-	 (if exclude "Exclude" "Filter")
-	 tag-chars
-	 (if org-agenda-auto-exclude-function "[RET], " "")
-	 (if expand "" ", no grouptag expand"))
-	(setq char (read-char-exclusive))
-	;; Excluding or filtering down
-	(cond ((eq char ?-) (setq exclude t))
-	      ((eq char ?+) (setq exclude nil)))))
-    (when (eq char ?\t)
-      (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
-	(setq-local org-global-tags-completion-table
-		    (org-global-tags-completion-table)))
-      (let ((completion-ignore-case t))
-	(setq tag (completing-read
-		   "Tag: " org-global-tags-completion-table nil t))))
-    (cond
-     ((eq char ?\r)
-      (org-agenda-filter-show-all-tag)
-      (when org-agenda-auto-exclude-function
-	(setq org-agenda-tag-filter nil)
-	(dolist (tag (org-agenda-get-represented-tags))
-	  (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
-	    (if modifier
-		(push modifier org-agenda-tag-filter))))
-	(if (not (null org-agenda-tag-filter))
-	    (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))))
-     ((eq char ?/)
-      (org-agenda-filter-show-all-tag)
-      (when (get 'org-agenda-tag-filter :preset-filter)
-	(org-agenda-filter-apply org-agenda-tag-filter 'tag expand)))
-     ((eq char ?.)
-      (setq org-agenda-tag-filter
-	    (mapcar (lambda(tag) (concat "+" tag))
-		    (org-get-at-bol 'tags)))
-      (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
-     ((eq char ?q)) ;If q, abort (even if there is a q-key for a tag...)
-     ((or (eq char ?\s)
-	  (setq a (rassoc char alist))
-	  (and tag (setq a (cons tag nil))))
-      (org-agenda-filter-show-all-tag)
-      (setq tag (car a))
-      (setq org-agenda-tag-filter
-	    (cons (concat (if exclude "-" "+") tag)
-		  current))
-      (org-agenda-filter-apply org-agenda-tag-filter 'tag expand))
-     (t (error "Invalid tag selection character %c" char)))))
-
-(defun org-agenda-get-represented-tags ()
-  "Get a list of all tags currently represented in the agenda."
-  (let (p tags)
-    (save-excursion
-      (goto-char (point-min))
-      (while (setq p (next-single-property-change (point) 'tags))
-	(goto-char p)
-	(mapc (lambda (x) (add-to-list 'tags x))
-	      (get-text-property (point) 'tags))))
-    tags))
-
-
-(defun org-agenda-filter-make-matcher (filter type &optional expand)
-  "Create the form that tests a line for agenda filter.  Optional
-argument EXPAND can be used for the TYPE tag and will expand the
-tags in the FILTER if any of the tags in FILTER are grouptags."
-  (let (f f1)
-    (cond
-     ;; Tag filter
-     ((eq type 'tag)
-      (setq filter
-	    (delete-dups
-	     (append (get 'org-agenda-tag-filter :preset-filter)
-		     filter)))
-      (dolist (x filter)
-	(let ((op (string-to-char x)))
-	  (if expand (setq x (org-agenda-filter-expand-tags (list x) t))
-	    (setq x (list x)))
-	  (setq f1 (org-agenda-filter-make-matcher-tag-exp x op))
-	  (push f1 f))))
-     ;; Category filter
-     ((eq type 'category)
-      (setq filter
-	    (delete-dups
-	     (append (get 'org-agenda-category-filter :preset-filter)
-		     filter)))
-      (dolist (x filter)
-	(if (equal "-" (substring x 0 1))
-	    (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
-	  (setq f1 (list 'equal (substring x 1) 'cat)))
-	(push f1 f)))
-     ;; Regexp filter
-     ((eq type 'regexp)
-      (setq filter
-	    (delete-dups
-	     (append (get 'org-agenda-regexp-filter :preset-filter)
-		     filter)))
-      (dolist (x filter)
-	(if (equal "-" (substring x 0 1))
-	    (setq f1 (list 'not (list 'string-match (substring x 1) 'txt)))
-	  (setq f1 (list 'string-match (substring x 1) 'txt)))
-	(push f1 f)))
-     ;; Effort filter
-     ((eq type 'effort)
-      (setq filter
-	    (delete-dups
-	     (append (get 'org-agenda-effort-filter :preset-filter)
-		     filter)))
-      (dolist (x filter)
-	(push (org-agenda-filter-effort-form x) f))))
-    (cons 'and (nreverse f))))
-
-(defun org-agenda-filter-make-matcher-tag-exp (tags op)
-  "Return a form associated to tag-expression TAGS.
-Build a form testing a line for agenda filter for
-tag-expressions.  OP is an operator of type CHAR that allows the
-function to set the right switches in the returned form."
-  (let (form)
-    ;; Any of the expressions can match if OP is +, all must match if
-    ;; the operator is -.
-    (dolist (x tags (cons (if (eq op ?-) 'and 'or) form))
-      (let* ((tag (substring x 1))
-	     (f (cond
-		 ((string= "" tag) '(not tags))
-		 ((and (string-match-p "\\`{" tag) (string-match-p "}\\'" tag))
-		  ;; TAG is a regexp.
-		  (list 'org-match-any-p (substring tag 1 -1) 'tags))
-		 (t (list 'member (downcase tag) 'tags)))))
-	(push (if (eq op ?-) (list 'not f) f) form)))))
-
-(defun org-agenda-filter-effort-form (e)
-  "Return the form to compare the effort of the current line with what E says.
-E looks like \"+<2:25\"."
-  (let (op)
-    (setq e (substring e 1))
-    (setq op (string-to-char e) e (substring e 1))
-    (setq op (cond ((equal op ?<) '<=)
-		   ((equal op ?>) '>=)
-		   ((equal op ??) op)
-		   (t '=)))
-    (list 'org-agenda-compare-effort (list 'quote op)
-	  (org-duration-to-minutes e))))
-
-(defun org-agenda-compare-effort (op value)
-  "Compare the effort of the current line with VALUE, using OP.
-If the line does not have an effort defined, return nil."
-  ;; `effort-minutes' property cannot be extracted directly from
-  ;; current line but is stored as a property in `txt'.
-  (let ((effort (get-text-property 0 'effort-minutes (org-get-at-bol 'txt))))
-    (funcall op
-	     (or effort (if org-sort-agenda-noeffort-is-high 32767 -1))
-	     value)))
-
-(defun org-agenda-filter-expand-tags (filter &optional no-operator)
-  "Expand group tags in FILTER for the agenda.
-When NO-OPERATOR is non-nil, do not add the + operator to returned tags."
-  (if org-group-tags
-      (let ((case-fold-search t) rtn)
-	(mapc
-	 (lambda (f)
-	   (let (f0 dir)
-	     (if (string-match "^\\([+-]\\)\\(.+\\)" f)
-		 (setq dir (match-string 1 f) f0 (match-string 2 f))
-	       (setq dir (if no-operator "" "+") f0 f))
-	     (setq rtn (append (mapcar (lambda(f1) (concat dir f1))
-				       (org-tags-expand f0 t t))
-			       rtn))))
-	 filter)
-	(reverse rtn))
-    filter))
-
-(defun org-agenda-filter-apply (filter type &optional expand)
-  "Set FILTER as the new agenda filter and apply it.  Optional
-argument EXPAND can be used for the TYPE tag and will expand the
-tags in the FILTER if any of the tags in FILTER are grouptags."
-  ;; Deactivate `org-agenda-entry-text-mode' when filtering
-  (if org-agenda-entry-text-mode (org-agenda-entry-text-mode))
-  (let (tags cat txt)
-    (setq org-agenda-filter-form (org-agenda-filter-make-matcher filter type expand))
-    ;; Only set `org-agenda-filtered-by-category' to t when a unique
-    ;; category is used as the filter:
-    (setq org-agenda-filtered-by-category
-	  (and (eq type 'category)
-	       (not (equal (substring (car filter) 0 1) "-"))))
-    (org-agenda-set-mode-name)
-    (save-excursion
-      (goto-char (point-min))
-      (while (not (eobp))
-	(if (org-get-at-bol 'org-marker)
-	    (progn
-	      (setq tags (org-get-at-bol 'tags)
-		    cat (org-get-at-eol 'org-category 1)
-		    txt (org-get-at-bol 'txt))
-	      (if (not (eval org-agenda-filter-form))
-		  (org-agenda-filter-hide-line type))
-	      (beginning-of-line 2))
-	  (beginning-of-line 2))))
-    (if (get-char-property (point) 'invisible)
-	(ignore-errors (org-agenda-previous-line)))))
-
-(defun org-agenda-filter-top-headline-apply (hl &optional negative)
-  "Filter by top headline HL."
-  (org-agenda-set-mode-name)
-  (save-excursion
-    (goto-char (point-min))
-    (while (not (eobp))
-      (let* ((pos (org-get-at-bol 'org-hd-marker))
-             (tophl (and pos (org-find-top-headline pos))))
-        (if (and tophl (funcall (if negative 'identity 'not)
-				(string= hl tophl)))
-            (org-agenda-filter-hide-line 'top-headline)))
-      (beginning-of-line 2)))
-  (if (get-char-property (point) 'invisible)
-      (org-agenda-previous-line))
-  (setq org-agenda-top-headline-filter hl
-	org-agenda-filtered-by-top-headline t))
-
-(defun org-agenda-filter-hide-line (type)
-  "Hide lines with TYPE in the agenda buffer."
-  (let* ((b (max (point-min) (1- (point-at-bol))))
-	 (e (point-at-eol)))
-    (let ((inhibit-read-only t))
-      (add-text-properties
-       b e `(invisible org-filtered org-filter-type ,type)))))
-
-(defun org-agenda-remove-filter (type)
-  (interactive)
-  "Remove filter of type TYPE from the agenda buffer."
-  (save-excursion
-    (goto-char (point-min))
-    (let ((inhibit-read-only t) pos)
-      (while (setq pos (text-property-any (point) (point-max) 'org-filter-type type))
-	(goto-char pos)
-	(remove-text-properties
-	 (point) (next-single-property-change (point) 'org-filter-type)
-	 `(invisible org-filtered org-filter-type ,type))))
-    (set (intern (format "org-agenda-%s-filter" (intern-soft type))) nil)
-    (setq org-agenda-filter-form nil)
-    (org-agenda-set-mode-name)
-    (org-agenda-finalize)))
-
-(defun org-agenda-filter-show-all-tag nil
-  (org-agenda-remove-filter 'tag))
-(defun org-agenda-filter-show-all-re nil
-  (org-agenda-remove-filter 'regexp))
-(defun org-agenda-filter-show-all-effort nil
-  (org-agenda-remove-filter 'effort))
-(defun org-agenda-filter-show-all-cat nil
-  (org-agenda-remove-filter 'category))
-(defun org-agenda-filter-show-all-top-filter nil
-  (org-agenda-remove-filter 'top-headline))
-
-(defun org-agenda-manipulate-query-add ()
-  "Manipulate the query by adding a search term with positive selection.
-Positive selection means the term must be matched for selection of an entry."
-  (interactive)
-  (org-agenda-manipulate-query ?\[))
-(defun org-agenda-manipulate-query-subtract ()
-  "Manipulate the query by adding a search term with negative selection.
-Negative selection means term must not be matched for selection of an entry."
-  (interactive)
-  (org-agenda-manipulate-query ?\]))
-(defun org-agenda-manipulate-query-add-re ()
-  "Manipulate the query by adding a search regexp with positive selection.
-Positive selection means the regexp must match for selection of an entry."
-  (interactive)
-  (org-agenda-manipulate-query ?\{))
-(defun org-agenda-manipulate-query-subtract-re ()
-  "Manipulate the query by adding a search regexp with negative selection.
-Negative selection means regexp must not match for selection of an entry."
-  (interactive)
-  (org-agenda-manipulate-query ?\}))
-(defun org-agenda-manipulate-query (char)
-  (cond
-   ((eq org-agenda-type 'agenda)
-    (let ((org-agenda-include-inactive-timestamps t))
-      (org-agenda-redo))
-    (message "Display now includes inactive timestamps as well"))
-   ((eq org-agenda-type 'search)
-    (org-add-to-string
-     'org-agenda-query-string
-     (if org-agenda-last-search-view-search-was-boolean
-	 (cdr (assoc char '((?\[ . " +") (?\] . " -")
-			    (?\{ . " +{}") (?\} . " -{}"))))
-       " "))
-    (setq org-agenda-redo-command
-	  (list 'org-search-view
-		(car (get-text-property (min (1- (point-max)) (point))
-					'org-last-args))
-		org-agenda-query-string
-		(+ (length org-agenda-query-string)
-		   (if (member char '(?\{ ?\})) 0 1))))
-    (set-register org-agenda-query-register org-agenda-query-string)
-    (let ((org-agenda-overriding-arguments
-	   (cdr org-agenda-redo-command)))
-      (org-agenda-redo)))
-   (t (error "Cannot manipulate query for %s-type agenda buffers"
-	     org-agenda-type))))
-
-(defun org-add-to-string (var string)
-  (set var (concat (symbol-value var) string)))
-
-(defun org-agenda-goto-date (span)
-  "Jump to DATE in agenda."
-  (interactive "P")
-  (let* ((org-read-date-prefer-future
-	  (eval org-agenda-jump-prefer-future))
-	 (date (org-read-date))
-	 (day (time-to-days (org-time-string-to-time date)))
-	 (org-agenda-sticky-orig org-agenda-sticky)
-	 (org-agenda-buffer-tmp-name (buffer-name))
-	 (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
-	 (0-arg (or current-prefix-arg (car args)))
-	 (2-arg (nth 2 args))
-	 (with-hour-p (nth 4 org-agenda-redo-command))
-	 (newcmd (list 'org-agenda-list 0-arg date
-		       (org-agenda-span-to-ndays
-			2-arg (org-time-string-to-absolute date))
-		       with-hour-p))
-	 (newargs (cdr newcmd))
-	 (inhibit-read-only t)
-	 org-agenda-sticky)
-    (if (not (org-agenda-check-type t 'agenda))
-	(error "Not available in non-agenda views")
-      (add-text-properties (point-min) (point-max)
-			   `(org-redo-cmd ,newcmd org-last-args ,newargs))
-      (org-agenda-redo)
-      (goto-char (point-min))
-      (while (not (or (= (or (get-text-property (point) 'day) 0) day)
-		      (save-excursion (move-beginning-of-line 2) (eobp))))
-	(move-beginning-of-line 2))
-      (setq org-agenda-sticky org-agenda-sticky-orig
-	    org-agenda-this-buffer-is-sticky org-agenda-sticky))))
-
-(defun org-agenda-goto-today ()
-  "Go to today."
-  (interactive)
-  (org-agenda-check-type t 'agenda)
-  (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
-	 (curspan (nth 2 args))
-	 (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
-    (cond
-     (tdpos (goto-char tdpos))
-     ((eq org-agenda-type 'agenda)
-      (let* ((sd (org-agenda-compute-starting-span
-		  (org-today) (or curspan org-agenda-span)))
-	     (org-agenda-overriding-arguments args))
-	(setf (nth 1 org-agenda-overriding-arguments) sd)
-	(org-agenda-redo)
-	(org-agenda-find-same-or-today-or-agenda)))
-     (t (error "Cannot find today")))))
-
-(defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
-  (goto-char
-   (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
-       (text-property-any (point-min) (point-max) 'org-today t)
-       (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
-       (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
-	    (org-agenda-backward-block))
-       (point-min))))
-
-(defun org-agenda-backward-block ()
-  "Move backward by one agenda block."
-  (interactive)
-  (org-agenda-forward-block 'backward))
-
-(defun org-agenda-forward-block (&optional backward)
-  "Move forward by one agenda block.
-When optional argument BACKWARD is set, go backward"
-  (interactive)
-  (cond ((not (derived-mode-p 'org-agenda-mode))
-	 (user-error
-	  "Cannot execute this command outside of org-agenda-mode buffers"))
-	((looking-at (if backward "\\`" "\\'"))
-	 (message "Already at the %s block" (if backward "first" "last")))
-	(t (let ((pos (prog1 (point)
-			(ignore-errors (if backward (backward-char 1)
-					 (move-end-of-line 1)))))
-		 (f (if backward
-			'previous-single-property-change
-		      'next-single-property-change))
-		 moved dest)
-	     (while (and (setq dest (funcall
-				     f (point) 'org-agenda-structural-header))
-			 (not (get-text-property
-			       (point) 'org-agenda-structural-header)))
-	       (setq moved t)
-	       (goto-char dest))
-	     (if moved (move-beginning-of-line 1)
-	       (goto-char (if backward (point-min) (point-max)))
-	       (move-beginning-of-line 1)
-	       (message "No %s block" (if backward "previous" "further")))))))
-
-(defun org-agenda-later (arg)
-  "Go forward in time by the current span.
-With prefix ARG, go forward that many times the current span."
-  (interactive "p")
-  (org-agenda-check-type t 'agenda)
-  (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
-	 (span (or (nth 2 args) org-agenda-current-span))
-	 (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
-	 (greg (calendar-gregorian-from-absolute sd))
-	 (cnt (org-get-at-bol 'org-day-cnt))
-	 greg2)
-    (cond
-     ((numberp span)
-      (setq sd (+ (* span arg) sd)))
-     ((eq span 'day)
-      (setq sd (+ arg sd)))
-     ((eq span 'week)
-      (setq sd (+ (* 7 arg) sd)))
-     ((eq span 'fortnight)
-      (setq sd (+ (* 14 arg) sd)))
-     ((eq span 'month)
-      (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
-	    sd (calendar-absolute-from-gregorian greg2))
-      (setcar greg2 (1+ (car greg2))))
-     ((eq span 'year)
-      (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
-	    sd (calendar-absolute-from-gregorian greg2))
-      (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
-     (t
-      (setq sd (+ (* span arg) sd))))
-    (let ((org-agenda-overriding-cmd
-	   ;; `cmd' may have been set by `org-agenda-run-series' which
-	   ;; uses `org-agenda-overriding-cmd' to decide whether
-	   ;; overriding is allowed for `cmd'
-	   (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
-	  (org-agenda-overriding-arguments
-	   (list (car args) sd span)))
-      (org-agenda-redo)
-      (org-agenda-find-same-or-today-or-agenda cnt))))
-
-(defun org-agenda-earlier (arg)
-  "Go backward in time by the current span.
-With prefix ARG, go backward that many times the current span."
-  (interactive "p")
-  (org-agenda-later (- arg)))
-
-(defun org-agenda-view-mode-dispatch ()
-  "Call one of the view mode commands."
-  (interactive)
-  (message "View: [d]ay  [w]eek  for[t]night  [m]onth  [y]ear  [SPC]reset  [q]uit/abort
-      time[G]rid   [[]inactive  [f]ollow      [l]og    [L]og-all   [c]lockcheck
-      [a]rch-trees [A]rch-files clock[R]eport include[D]iary       [E]ntryText")
-  (pcase (read-char-exclusive)
-    (?\ (call-interactively 'org-agenda-reset-view))
-    (?d (call-interactively 'org-agenda-day-view))
-    (?w (call-interactively 'org-agenda-week-view))
-    (?t (call-interactively 'org-agenda-fortnight-view))
-    (?m (call-interactively 'org-agenda-month-view))
-    (?y (call-interactively 'org-agenda-year-view))
-    (?l (call-interactively 'org-agenda-log-mode))
-    (?L (org-agenda-log-mode '(4)))
-    (?c (org-agenda-log-mode 'clockcheck))
-    ((or ?F ?f) (call-interactively 'org-agenda-follow-mode))
-    (?a (call-interactively 'org-agenda-archives-mode))
-    (?A (org-agenda-archives-mode 'files))
-    ((or ?R ?r) (call-interactively 'org-agenda-clockreport-mode))
-    ((or ?E ?e) (call-interactively 'org-agenda-entry-text-mode))
-    (?G (call-interactively 'org-agenda-toggle-time-grid))
-    (?D (call-interactively 'org-agenda-toggle-diary))
-    (?\! (call-interactively 'org-agenda-toggle-deadlines))
-    (?\[ (let ((org-agenda-include-inactive-timestamps t))
-	   (org-agenda-check-type t 'agenda)
-	   (org-agenda-redo))
-	 (message "Display now includes inactive timestamps as well"))
-    (?q (message "Abort"))
-    (key (user-error "Invalid key: %s" key))))
-
-(defun org-agenda-reset-view ()
-  "Switch to default view for agenda."
-  (interactive)
-  (org-agenda-change-time-span org-agenda-span))
-
-(defun org-agenda-day-view (&optional day-of-month)
-  "Switch to daily view for agenda.
-With argument DAY-OF-MONTH, switch to that day of the month."
-  (interactive "P")
-  (org-agenda-change-time-span 'day day-of-month))
-
-(defun org-agenda-week-view (&optional iso-week)
-  "Switch to weekly view for agenda.
-With argument ISO-WEEK, switch to the corresponding ISO week.
-If ISO-WEEK has more then 2 digits, only the last two encode
-the week.  Any digits before this encode a year.  So 200712
-means week 12 of year 2007.  Years ranging from 70 years ago
-to 30 years in the future can also be written as 2-digit years."
-  (interactive "P")
-  (org-agenda-change-time-span 'week iso-week))
-
-(defun org-agenda-fortnight-view (&optional iso-week)
-  "Switch to fortnightly view for agenda.
-With argument ISO-WEEK, switch to the corresponding ISO week.
-If ISO-WEEK has more then 2 digits, only the last two encode
-the week.  Any digits before this encode a year.  So 200712
-means week 12 of year 2007.  Years ranging from 70 years ago
-to 30 years in the future can also be written as 2-digit years."
-  (interactive "P")
-  (org-agenda-change-time-span 'fortnight iso-week))
-
-(defun org-agenda-month-view (&optional month)
-  "Switch to monthly view for agenda.
-With argument MONTH, switch to that month.  If MONTH has more
-then 2 digits, only the last two encode the month.  Any digits
-before this encode a year.  So 200712 means December year 2007.
-Years ranging from 70 years ago to 30 years in the future can
-also be written as 2-digit years."
-  (interactive "P")
-  (org-agenda-change-time-span 'month month))
-
-(defun org-agenda-year-view (&optional year)
-  "Switch to yearly view for agenda.
-With argument YEAR, switch to that year.  Years ranging from 70
-years ago to 30 years in the future can also be written as
-2-digit years."
-  (interactive "P")
-  (when year
-    (setq year (org-small-year-to-year year)))
-  (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
-      (org-agenda-change-time-span 'year year)
-    (error "Abort")))
-
-(defun org-agenda-change-time-span (span &optional n)
-  "Change the agenda view to SPAN.
-SPAN may be `day', `week', `fortnight', `month', `year'."
-  (org-agenda-check-type t 'agenda)
-  (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
-	 (curspan (nth 2 args)))
-    (if (and (not n) (equal curspan span))
-	(error "Viewing span is already \"%s\"" span))
-    (let* ((sd (or (org-get-at-bol 'day)
-		   (nth 1 args)
-		   org-starting-day))
-	   (sd (org-agenda-compute-starting-span sd span n))
-	   (org-agenda-overriding-cmd
-	    (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
-	   (org-agenda-overriding-arguments
-	    (list (car args) sd span)))
-      (org-agenda-redo)
-      (org-agenda-find-same-or-today-or-agenda))
-    (org-agenda-set-mode-name)
-    (message "Switched to %s view" span)))
-
-(defun org-agenda-compute-starting-span (sd span &optional n)
-  "Compute starting date for agenda.
-SPAN may be `day', `week', `fortnight', `month', `year'.  The return value
-is a cons cell with the starting date and the number of days,
-so that the date SD will be in that range."
-  (let* ((greg (calendar-gregorian-from-absolute sd))
-	 (dg (nth 1 greg))
-	 (mg (car greg))
-	 (yg (nth 2 greg)))
-    (cond
-     ((eq span 'day)
-      (when n
-	(setq sd (+ (calendar-absolute-from-gregorian
-		     (list mg 1 yg))
-		    n -1))))
-     ((or (eq span 'week) (eq span 'fortnight))
-      (let* ((nt (calendar-day-of-week
-		  (calendar-gregorian-from-absolute sd)))
-	     (d (if org-agenda-start-on-weekday
-		    (- nt org-agenda-start-on-weekday)
-		  0))
-	     y1)
-	(setq sd (- sd (+ (if (< d 0) 7 0) d)))
-	(when n
-	  (require 'cal-iso)
-	  (when (> n 99)
-	    (setq y1 (org-small-year-to-year (/ n 100))
-		  n (mod n 100)))
-	  (setq sd
-		(calendar-iso-to-absolute
-		 (list n 1
-		       (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
-     ((eq span 'month)
-      (let (y1)
-	(when (and n (> n 99))
-	  (setq y1 (org-small-year-to-year (/ n 100))
-		n (mod n 100)))
-	(setq sd (calendar-absolute-from-gregorian
-		  (list (or n mg) 1 (or y1 yg))))))
-     ((eq span 'year)
-      (setq sd (calendar-absolute-from-gregorian
-		(list 1 1 (or n yg))))))
-    sd))
-
-(defun org-agenda-next-date-line (&optional arg)
-  "Jump to the next line indicating a date in agenda buffer."
-  (interactive "p")
-  (org-agenda-check-type t 'agenda)
-  (beginning-of-line 1)
-  ;; This does not work if user makes date format that starts with a blank
-  (if (looking-at "^\\S-") (forward-char 1))
-  (if (not (re-search-forward "^\\S-" nil t arg))
-      (progn
-	(backward-char 1)
-	(error "No next date after this line in this buffer")))
-  (goto-char (match-beginning 0)))
-
-(defun org-agenda-previous-date-line (&optional arg)
-  "Jump to the previous line indicating a date in agenda buffer."
-  (interactive "p")
-  (org-agenda-check-type t 'agenda)
-  (beginning-of-line 1)
-  (if (not (re-search-backward "^\\S-" nil t arg))
-      (error "No previous date before this line in this buffer")))
-
-;; Initialize the highlight
-(defvar org-hl (make-overlay 1 1))
-(overlay-put org-hl 'face 'highlight)
-
-(defun org-highlight (begin end &optional buffer)
-  "Highlight a region with overlay."
-  (move-overlay org-hl begin end (or buffer (current-buffer))))
-
-(defun org-unhighlight ()
-  "Detach overlay INDEX."
-  (delete-overlay org-hl))
-
-(defun org-unhighlight-once ()
-  "Remove the highlight from its position, and this function from the hook."
-  (remove-hook 'pre-command-hook 'org-unhighlight-once)
-  (org-unhighlight))
-
-(defvar org-agenda-pre-follow-window-conf nil)
-(defun org-agenda-follow-mode ()
-  "Toggle follow mode in an agenda buffer."
-  (interactive)
-  (unless org-agenda-follow-mode
-    (setq org-agenda-pre-follow-window-conf
-	  (current-window-configuration)))
-  (setq org-agenda-follow-mode (not org-agenda-follow-mode))
-  (unless org-agenda-follow-mode
-    (set-window-configuration org-agenda-pre-follow-window-conf))
-  (org-agenda-set-mode-name)
-  (org-agenda-do-context-action)
-  (message "Follow mode is %s"
-	   (if org-agenda-follow-mode "on" "off")))
-
-(defun org-agenda-entry-text-mode (&optional arg)
-  "Toggle entry text mode in an agenda buffer."
-  (interactive "P")
-  (if (or org-agenda-tag-filter
-	  org-agenda-category-filter
-	  org-agenda-regexp-filter
-	  org-agenda-top-headline-filter)
-      (user-error "Can't show entry text in filtered views")
-    (setq org-agenda-entry-text-mode (or (integerp arg)
-					 (not org-agenda-entry-text-mode)))
-    (org-agenda-entry-text-hide)
-    (and org-agenda-entry-text-mode
-	 (let ((org-agenda-entry-text-maxlines
-		(if (integerp arg) arg org-agenda-entry-text-maxlines)))
-	   (org-agenda-entry-text-show)))
-    (org-agenda-set-mode-name)
-    (message "Entry text mode is %s%s"
-	     (if org-agenda-entry-text-mode "on" "off")
-	     (if (not org-agenda-entry-text-mode) ""
-	       (format " (maximum number of lines is %d)"
-		       (if (integerp arg) arg org-agenda-entry-text-maxlines))))))
-
-(defun org-agenda-clockreport-mode ()
-  "Toggle clocktable mode in an agenda buffer."
-  (interactive)
-  (org-agenda-check-type t 'agenda)
-  (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
-  (org-agenda-set-mode-name)
-  (org-agenda-redo)
-  (message "Clocktable mode is %s"
-	   (if org-agenda-clockreport-mode "on" "off")))
-
-(defun org-agenda-log-mode (&optional special)
-  "Toggle log mode in an agenda buffer.
-
-With argument SPECIAL, show all possible log items, not only the ones
-configured in `org-agenda-log-mode-items'.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix, show *only* \
-log items, nothing else."
-  (interactive "P")
-  (org-agenda-check-type t 'agenda)
-  (setq org-agenda-show-log
-	(cond
-	 ((equal special '(16)) 'only)
-	 ((eq special 'clockcheck)
-	  (if (eq org-agenda-show-log 'clockcheck)
-	      nil 'clockcheck))
-	 (special '(closed clock state))
-	 (t (not org-agenda-show-log))))
-  (org-agenda-set-mode-name)
-  (org-agenda-redo)
-  (message "Log mode is %s" (if org-agenda-show-log "on" "off")))
-
-(defun org-agenda-archives-mode (&optional with-files)
-  "Toggle inclusion of items in trees marked with :ARCHIVE:.
-When called with a prefix argument, include all archive files as well."
-  (interactive "P")
-  (setq org-agenda-archives-mode
-	(if with-files t (if org-agenda-archives-mode nil 'trees)))
-  (org-agenda-set-mode-name)
-  (org-agenda-redo)
-  (message
-   "%s"
-   (cond
-    ((eq org-agenda-archives-mode nil)
-     "No archives are included")
-    ((eq org-agenda-archives-mode 'trees)
-     (format "Trees with :%s: tag are included" org-archive-tag))
-    ((eq org-agenda-archives-mode t)
-     (format "Trees with :%s: tag and all active archive files are included"
-	     org-archive-tag)))))
-
-(defun org-agenda-toggle-diary ()
-  "Toggle diary inclusion in an agenda buffer."
-  (interactive)
-  (org-agenda-check-type t 'agenda)
-  (setq org-agenda-include-diary (not org-agenda-include-diary))
-  (org-agenda-redo)
-  (org-agenda-set-mode-name)
-  (message "Diary inclusion turned %s"
-	   (if org-agenda-include-diary "on" "off")))
-
-(defun org-agenda-toggle-deadlines ()
-  "Toggle inclusion of entries with a deadline in an agenda buffer."
-  (interactive)
-  (org-agenda-check-type t 'agenda)
-  (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
-  (org-agenda-redo)
-  (org-agenda-set-mode-name)
-  (message "Deadlines inclusion turned %s"
-	   (if org-agenda-include-deadlines "on" "off")))
-
-(defun org-agenda-toggle-time-grid ()
-  "Toggle time grid in an agenda buffer."
-  (interactive)
-  (org-agenda-check-type t 'agenda)
-  (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
-  (org-agenda-redo)
-  (org-agenda-set-mode-name)
-  (message "Time-grid turned %s"
-	   (if org-agenda-use-time-grid "on" "off")))
-
-(defun org-agenda-set-mode-name ()
-  "Set the mode name to indicate all the small mode settings."
-  (setq mode-name
-	(list "Org-Agenda"
-	      (if (get 'org-agenda-files 'org-restrict) " []" "")
-	      " "
-	      '(:eval (org-agenda-span-name org-agenda-current-span))
-	      (if org-agenda-follow-mode     " Follow" "")
-	      (if org-agenda-entry-text-mode " ETxt"   "")
-	      (if org-agenda-include-diary   " Diary"  "")
-	      (if org-agenda-include-deadlines " Ddl"  "")
-	      (if org-agenda-use-time-grid   " Grid"   "")
-	      (if (and (boundp 'org-habit-show-habits)
-		       org-habit-show-habits) " Habit"   "")
-	      (cond
-	       ((consp org-agenda-show-log) " LogAll")
-	       ((eq org-agenda-show-log 'clockcheck) " ClkCk")
-	       (org-agenda-show-log " Log")
-	       (t ""))
-	      (if (or org-agenda-category-filter
-		      (get 'org-agenda-category-filter :preset-filter))
-		  '(:eval (propertize
-	      		   (concat " <"
-	      			   (mapconcat
-	      			    'identity
-	      			    (append
-	      			     (get 'org-agenda-category-filter :preset-filter)
-	      			     org-agenda-category-filter)
-	      			    "")
-	      			   ">")
-	      		   'face 'org-agenda-filter-category
-	      		   'help-echo "Category used in filtering")) "")
-	      (if (or org-agenda-tag-filter
-		      (get 'org-agenda-tag-filter :preset-filter))
-		  '(:eval (propertize
-			   (concat " {"
-				   (mapconcat
-				    'identity
-				    (append
-				     (get 'org-agenda-tag-filter :preset-filter)
-				     org-agenda-tag-filter)
-				    "")
-				   "}")
-			   'face 'org-agenda-filter-tags
-			   'help-echo "Tags used in filtering")) "")
-	      (if (or org-agenda-effort-filter
-		      (get 'org-agenda-effort-filter :preset-filter))
-		  '(:eval (propertize
-			   (concat " {"
-				   (mapconcat
-				    'identity
-				    (append
-				     (get 'org-agenda-effort-filter :preset-filter)
-				     org-agenda-effort-filter)
-				    "")
-				   "}")
-			   'face 'org-agenda-filter-effort
-			   'help-echo "Effort conditions used in filtering")) "")
-	      (if (or org-agenda-regexp-filter
-		      (get 'org-agenda-regexp-filter :preset-filter))
-		  '(:eval (propertize
-			   (concat " ["
-				   (mapconcat
-				    'identity
-				    (append
-				     (get 'org-agenda-regexp-filter :preset-filter)
-				     org-agenda-regexp-filter)
-				    "")
-				   "]")
-			   'face 'org-agenda-filter-regexp
-			   'help-echo "Regexp used in filtering")) "")
-	      (if org-agenda-archives-mode
-		  (if (eq org-agenda-archives-mode t)
-		      " Archives"
-		    (format " :%s:" org-archive-tag))
-		"")
-	      (if org-agenda-clockreport-mode " Clock" "")))
-  (force-mode-line-update))
-
-(defun org-agenda-update-agenda-type ()
-  "Update the agenda type after each command."
-  (setq org-agenda-type
-	(or (get-text-property (point) 'org-agenda-type)
-	    (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
-
-(defun org-agenda-next-line ()
-  "Move cursor to the next line, and show if follow mode is active."
-  (interactive)
-  (call-interactively 'next-line)
-  (org-agenda-do-context-action))
-
-(defun org-agenda-previous-line ()
-  "Move cursor to the previous line, and show if follow-mode is active."
-  (interactive)
-  (call-interactively 'previous-line)
-  (org-agenda-do-context-action))
-
-(defun org-agenda-next-item (n)
-  "Move cursor to next agenda item."
-  (interactive "p")
-  (let ((col (current-column)))
-    (dotimes (c n)
-      (when (next-single-property-change (point-at-eol) 'org-marker)
-	(move-end-of-line 1)
-	(goto-char (next-single-property-change (point) 'org-marker))))
-    (org-move-to-column col))
-  (org-agenda-do-context-action))
-
-(defun org-agenda-previous-item (n)
-  "Move cursor to next agenda item."
-  (interactive "p")
-  (dotimes (c n)
-    (let ((col (current-column))
-	  (goto (save-excursion
-		  (move-end-of-line 0)
-		  (previous-single-property-change (point) 'org-marker))))
-      (if goto (goto-char goto))
-      (org-move-to-column col)))
-  (org-agenda-do-context-action))
-
-(defun org-agenda-do-context-action ()
-  "Show outline path and, maybe, follow mode window."
-  (let ((m (org-get-at-bol 'org-marker)))
-    (when (and (markerp m) (marker-buffer m))
-      (and org-agenda-follow-mode
-	   (if org-agenda-follow-indirect
-	       (org-agenda-tree-to-indirect-buffer nil)
-	     (org-agenda-show)))
-      (and org-agenda-show-outline-path
-	   (org-with-point-at m (org-display-outline-path t))))))
-
-(defun org-agenda-show-tags ()
-  "Show the tags applicable to the current item."
-  (interactive)
-  (let* ((tags (org-get-at-bol 'tags)))
-    (if tags
-	(message "Tags are :%s:"
-		 (org-no-properties (mapconcat 'identity tags ":")))
-      (message "No tags associated with this line"))))
-
-(defun org-agenda-goto (&optional highlight)
-  "Go to the entry at point in the corresponding Org file."
-  (interactive)
-  (let* ((marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker)))
-    (switch-to-buffer-other-window buffer)
-    (widen)
-    (push-mark)
-    (goto-char pos)
-    (when (derived-mode-p 'org-mode)
-      (org-show-context 'agenda)
-      (recenter (/ (window-height) 2))
-      (org-back-to-heading t)
-      (let ((case-fold-search nil))
-	(when (re-search-forward org-complex-heading-regexp nil t)
-	  (goto-char (match-beginning 4)))))
-    (run-hooks 'org-agenda-after-show-hook)
-    (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
-
-(defvar org-agenda-after-show-hook nil
-  "Normal hook run after an item has been shown from the agenda.
-Point is in the buffer where the item originated.")
-
-(defun org-agenda-kill ()
-  "Kill the entry or subtree belonging to the current agenda entry."
-  (interactive)
-  (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
-  (let* ((bufname-orig (buffer-name))
-	 (marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker))
-	 (type (org-get-at-bol 'type))
-	 dbeg dend (n 0) conf)
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(save-excursion
-	  (goto-char pos)
-	  (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
-	      (setq dbeg (progn (org-back-to-heading t) (point))
-		    dend (org-end-of-subtree t t))
-	    (setq dbeg (point-at-bol)
-		  dend (min (point-max) (1+ (point-at-eol)))))
-	  (goto-char dbeg)
-	  (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
-      (setq conf (or (eq t org-agenda-confirm-kill)
-		     (and (numberp org-agenda-confirm-kill)
-			  (> n org-agenda-confirm-kill))))
-      (and conf
-	   (not (y-or-n-p
-		 (format "Delete entry with %d lines in buffer \"%s\"? "
-			 n (buffer-name buffer))))
-	   (error "Abort"))
-      (let ((org-agenda-buffer-name bufname-orig))
-	(org-remove-subtree-entries-from-agenda buffer dbeg dend))
-      (with-current-buffer buffer (delete-region dbeg dend))
-      (message "Agenda item and source killed"))))
-
-(defvar org-archive-default-command) ; defined in org-archive.el
-(defun org-agenda-archive-default ()
-  "Archive the entry or subtree belonging to the current agenda entry."
-  (interactive)
-  (require 'org-archive)
-  (org-agenda-archive-with org-archive-default-command))
-
-(defun org-agenda-archive-default-with-confirmation ()
-  "Archive the entry or subtree belonging to the current agenda entry."
-  (interactive)
-  (require 'org-archive)
-  (org-agenda-archive-with org-archive-default-command 'confirm))
-
-(defun org-agenda-archive ()
-  "Archive the entry or subtree belonging to the current agenda entry."
-  (interactive)
-  (org-agenda-archive-with 'org-archive-subtree))
-
-(defun org-agenda-archive-to-archive-sibling ()
-  "Move the entry to the archive sibling."
-  (interactive)
-  (org-agenda-archive-with 'org-archive-to-archive-sibling))
-
-(defun org-agenda-archive-with (cmd &optional confirm)
-  "Move the entry to the archive sibling."
-  (interactive)
-  (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
-  (let* ((bufname-orig (buffer-name))
-	 (marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker)))
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(if (derived-mode-p 'org-mode)
-	    (if (and confirm
-		     (not (y-or-n-p "Archive this subtree or entry? ")))
-		(error "Abort")
-	      (save-window-excursion
-		(goto-char pos)
-		(let ((org-agenda-buffer-name bufname-orig))
-		  (org-remove-subtree-entries-from-agenda))
-		(org-back-to-heading t)
-		(funcall cmd)))
-	  (error "Archiving works only in Org files"))))))
-
-(defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
-  "Remove all lines in the agenda that correspond to a given subtree.
-The subtree is the one in buffer BUF, starting at BEG and ending at END.
-If this information is not given, the function uses the tree at point."
-  (let ((buf (or buf (current-buffer))) m p)
-    (save-excursion
-      (unless (and beg end)
-	(org-back-to-heading t)
-	(setq beg (point))
-	(org-end-of-subtree t)
-	(setq end (point)))
-      (set-buffer (get-buffer org-agenda-buffer-name))
-      (save-excursion
-	(goto-char (point-max))
-	(beginning-of-line 1)
-	(while (not (bobp))
-	  (when (and (setq m (org-get-at-bol 'org-marker))
-		     (equal buf (marker-buffer m))
-		     (setq p (marker-position m))
-		     (>= p beg)
-		     (< p end))
-	    (let ((inhibit-read-only t))
-	      (delete-region (point-at-bol) (1+ (point-at-eol)))))
-	  (beginning-of-line 0))))))
-
-(defun org-agenda-refile (&optional goto rfloc no-update)
-  "Refile the item at point.
-
-When called with `\\[universal-argument] \\[universal-argument]', \
-go to the location of the last
-refiled item.
-
-When called with `\\[universal-argument] \\[universal-argument] \
-\\[universal-argument]' prefix or when GOTO is 0, clear
-the refile cache.
-
-RFLOC can be a refile location obtained in a different way.
-
-When NO-UPDATE is non-nil, don't redo the agenda buffer."
-  (interactive "P")
-  (cond
-   ((member goto '(0 (64)))
-    (org-refile-cache-clear))
-   ((equal goto '(16))
-    (org-refile-goto-last-stored))
-   (t
-    (let* ((buffer-orig (buffer-name))
-	   (marker (or (org-get-at-bol 'org-hd-marker)
-		       (org-agenda-error)))
-	   (buffer (marker-buffer marker))
-	   (pos (marker-position marker))
-	   (rfloc (or rfloc
-		      (org-refile-get-location
-		       (if goto "Goto" "Refile to") buffer
-		       org-refile-allow-creating-parent-nodes))))
-      (with-current-buffer buffer
-	(org-with-wide-buffer
-	 (goto-char marker)
-	 (let ((org-agenda-buffer-name buffer-orig))
-	   (org-remove-subtree-entries-from-agenda))
-	 (org-refile goto buffer rfloc))))
-    (unless no-update (org-agenda-redo)))))
-
-(defun org-agenda-open-link (&optional arg)
-  "Open the link(s) in the current entry, if any.
-This looks for a link in the displayed line in the agenda.
-It also looks at the text of the entry itself."
-  (interactive "P")
-  (let* ((marker (or (org-get-at-bol 'org-hd-marker)
-		     (org-get-at-bol 'org-marker)))
-	 (buffer (and marker (marker-buffer marker)))
-	 (prefix (buffer-substring (point-at-bol) (point-at-eol)))
-	 (lkall (and buffer (org-offer-links-in-entry
-			     buffer marker arg prefix)))
-	 (lk0 (car lkall))
-	 (lk (if (stringp lk0) (list lk0) lk0))
-	 (lkend (cdr lkall))
-	 trg)
-    (cond
-     ((and buffer lk)
-      (mapcar (lambda(l)
-		(with-current-buffer buffer
-		  (setq trg (and (string-match org-bracket-link-regexp l)
-				 (match-string 1 l)))
-		  (if (or (not trg) (string-match org-any-link-re trg))
-		      (org-with-wide-buffer
-		       (goto-char marker)
-		       (when (search-forward l nil lkend)
-			 (goto-char (match-beginning 0))
-			 (org-open-at-point)))
-		    ;; This is an internal link, widen the buffer
-		    (switch-to-buffer-other-window buffer)
-		    (widen)
-		    (goto-char marker)
-		    (when (search-forward l nil lkend)
-		      (goto-char (match-beginning 0))
-		      (org-open-at-point)))))
-	      lk))
-     ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
-	  (save-excursion
-	    (beginning-of-line 1)
-	    (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
-      (org-open-link-from-string (match-string 1)))
-     (t (message "No link to open here")))))
-
-(defun org-agenda-copy-local-variable (var)
-  "Get a variable from a referenced buffer and install it here."
-  (let ((m (org-get-at-bol 'org-marker)))
-    (when (and m (buffer-live-p (marker-buffer m)))
-      (set (make-local-variable var)
-	   (with-current-buffer (marker-buffer m)
-	     (symbol-value var))))))
-
-(defun org-agenda-switch-to (&optional delete-other-windows)
-  "Go to the Org mode file which contains the item at point.
-When optional argument DELETE-OTHER-WINDOWS is non-nil, the
-displayed Org file fills the frame."
-  (interactive)
-  (if (and org-return-follows-link
-	   (not (org-get-at-bol 'org-marker))
-	   (org-in-regexp org-bracket-link-regexp))
-      (org-open-link-from-string (match-string 0))
-    (let* ((marker (or (org-get-at-bol 'org-marker)
-		       (org-agenda-error)))
-	   (buffer (marker-buffer marker))
-	   (pos (marker-position marker)))
-      (unless buffer (user-error "Trying to switch to non-existent buffer"))
-      (pop-to-buffer-same-window buffer)
-      (when delete-other-windows (delete-other-windows))
-      (widen)
-      (goto-char pos)
-      (when (derived-mode-p 'org-mode)
-	(org-show-context 'agenda)
-	(run-hooks 'org-agenda-after-show-hook)))))
-
-(defun org-agenda-goto-mouse (ev)
-  "Go to the Org file which contains the item at the mouse click."
-  (interactive "e")
-  (mouse-set-point ev)
-  (org-agenda-goto))
-
-(defun org-agenda-show (&optional full-entry)
-  "Display the Org file which contains the item at point.
-With prefix argument FULL-ENTRY, make the entire entry visible
-if it was hidden in the outline."
-  (interactive "P")
-  (let ((win (selected-window)))
-    (org-agenda-goto t)
-    (when full-entry (org-show-entry))
-    (select-window win)))
-
-(defvar org-agenda-show-window nil)
-(defun org-agenda-show-and-scroll-up (&optional arg)
-  "Display the Org file which contains the item at point.
-
-When called repeatedly, scroll the window that is displaying the buffer.
-
-With a `\\[universal-argument]' prefix, use `org-show-entry' instead of \
-`outline-show-subtree'
-to display the item, so that drawers and logbooks stay folded."
-  (interactive "P")
-  (let ((win (selected-window)))
-    (if (and (window-live-p org-agenda-show-window)
-	     (eq this-command last-command))
-	(progn
-	  (select-window org-agenda-show-window)
-	  (ignore-errors (scroll-up)))
-      (org-agenda-goto t)
-      (if arg (org-show-entry) (outline-show-subtree))
-      (setq org-agenda-show-window (selected-window)))
-    (select-window win)))
-
-(defun org-agenda-show-scroll-down ()
-  "Scroll down the window showing the agenda."
-  (interactive)
-  (let ((win (selected-window)))
-    (when (window-live-p org-agenda-show-window)
-      (select-window org-agenda-show-window)
-      (ignore-errors (scroll-down))
-      (select-window win))))
-
-(defun org-agenda-show-1 (&optional more)
-  "Display the Org file which contains the item at point.
-The prefix arg selects the amount of information to display:
-
-0   hide the subtree
-1   just show the entry according to defaults.
-2   show the children view
-3   show the subtree view
-4   show the entire subtree and any LOGBOOK drawers
-5   show the entire subtree and any drawers
-With prefix argument FULL-ENTRY, make the entire entry visible
-if it was hidden in the outline."
-  (interactive "p")
-  (let ((win (selected-window)))
-    (org-agenda-goto t)
-    (org-back-to-heading)
-    (set-window-start (selected-window) (point-at-bol))
-    (cond
-     ((= more 0)
-      (outline-hide-subtree)
-      (save-excursion
-	(org-back-to-heading)
-	(run-hook-with-args 'org-cycle-hook 'folded))
-      (message "Remote: FOLDED"))
-     ((and (called-interactively-p 'any) (= more 1))
-      (message "Remote: show with default settings"))
-     ((= more 2)
-      (outline-show-entry)
-      (org-show-children)
-      (save-excursion
-	(org-back-to-heading)
-	(run-hook-with-args 'org-cycle-hook 'children))
-      (message "Remote: CHILDREN"))
-     ((= more 3)
-      (outline-show-subtree)
-      (save-excursion
-	(org-back-to-heading)
-	(run-hook-with-args 'org-cycle-hook 'subtree))
-      (message "Remote: SUBTREE"))
-     ((= more 4)
-      (outline-show-subtree)
-      (save-excursion
-	(org-back-to-heading)
-	(org-cycle-hide-drawers 'subtree '("LOGBOOK")))
-      (message "Remote: SUBTREE AND LOGBOOK"))
-     ((> more 4)
-      (outline-show-subtree)
-      (message "Remote: SUBTREE AND ALL DRAWERS")))
-    (select-window win)))
-
-(defvar org-agenda-cycle-counter nil)
-(defun org-agenda-cycle-show (&optional n)
-  "Show the current entry in another window, with default settings.
-
-Default settings are taken from `org-show-context-detail'.  When
-use repeatedly in immediate succession, the remote entry will
-cycle through visibility
-
-  children -> subtree -> folded
-
-When called with a numeric prefix arg, that arg will be passed through to
-`org-agenda-show-1'.  For the interpretation of that argument, see the
-docstring of `org-agenda-show-1'."
-  (interactive "P")
-  (if (integerp n)
-      (setq org-agenda-cycle-counter n)
-    (if (not (eq last-command this-command))
-	(setq org-agenda-cycle-counter 1)
-      (if (equal org-agenda-cycle-counter 0)
-	  (setq org-agenda-cycle-counter 2)
-	(setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
-	(if (> org-agenda-cycle-counter 3)
-	    (setq org-agenda-cycle-counter 0)))))
-  (org-agenda-show-1 org-agenda-cycle-counter))
-
-(defun org-agenda-recenter (arg)
-  "Display the Org file which contains the item at point and recenter."
-  (interactive "P")
-  (let ((win (selected-window)))
-    (org-agenda-goto t)
-    (recenter arg)
-    (select-window win)))
-
-(defun org-agenda-show-mouse (ev)
-  "Display the Org file which contains the item at the mouse click."
-  (interactive "e")
-  (mouse-set-point ev)
-  (org-agenda-show))
-
-(defun org-agenda-check-no-diary ()
-  "Check if the entry is a diary link and abort if yes."
-  (if (org-get-at-bol 'org-agenda-diary-link)
-      (org-agenda-error)))
-
-(defun org-agenda-error ()
-  "Throw an error when a command is not allowed in the agenda."
-  (user-error "Command not allowed in this line"))
-
-(defun org-agenda-tree-to-indirect-buffer (arg)
-  "Show the subtree corresponding to the current entry in an indirect buffer.
-This calls the command `org-tree-to-indirect-buffer' from the original buffer.
-
-With a numerical prefix ARG, go up to this level and then take that tree.
-With a negative numeric ARG, go up by this number of levels.
-
-With a `\\[universal-argument]' prefix, make a separate frame for this tree, \
-i.e. don't use
-the dedicated frame."
-  (interactive "P")
-  (if current-prefix-arg
-      (org-agenda-do-tree-to-indirect-buffer arg)
-    (let ((agenda-buffer (buffer-name))
-	  (agenda-window (selected-window))
-          (indirect-window
-	   (and org-last-indirect-buffer
-		(get-buffer-window org-last-indirect-buffer))))
-      (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
-      (unless (or (eq org-indirect-buffer-display 'new-frame)
-		  (eq org-indirect-buffer-display 'dedicated-frame))
-	(unwind-protect
-	    (unless (and indirect-window (window-live-p indirect-window))
-	      (setq indirect-window (split-window agenda-window)))
-	  (and indirect-window (select-window indirect-window))
-	  (switch-to-buffer org-last-indirect-buffer :norecord)
-	  (fit-window-to-buffer indirect-window)))
-      (select-window (get-buffer-window agenda-buffer))
-      (setq org-agenda-last-indirect-buffer org-last-indirect-buffer))))
-
-(defun org-agenda-do-tree-to-indirect-buffer (arg)
-  "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
-  (org-agenda-check-no-diary)
-  (let* ((marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker)))
-    (with-current-buffer buffer
-      (save-excursion
-	(goto-char pos)
-	(funcall 'org-tree-to-indirect-buffer arg)))))
-
-(defvar org-last-heading-marker (make-marker)
-  "Marker pointing to the headline that last changed its TODO state
-by a remote command from the agenda.")
-
-(defun org-agenda-todo-nextset ()
-  "Switch TODO entry to next sequence."
-  (interactive)
-  (org-agenda-todo 'nextset))
-
-(defun org-agenda-todo-previousset ()
-  "Switch TODO entry to previous sequence."
-  (interactive)
-  (org-agenda-todo 'previousset))
-
-(defun org-agenda-todo (&optional arg)
-  "Cycle TODO state of line at point, also in Org file.
-This changes the line at point, all other lines in the agenda referring to
-the same tree node, and the headline of the tree node in the Org file."
-  (interactive "P")
-  (org-agenda-check-no-diary)
-  (let* ((col (current-column))
-	 (marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker))
-	 (hdmarker (org-get-at-bol 'org-hd-marker))
-	 (todayp (org-agenda-today-p (org-get-at-bol 'day)))
-	 (inhibit-read-only t)
-	 org-agenda-headline-snapshot-before-repeat newhead just-one)
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(widen)
-	(goto-char pos)
-	(org-show-context 'agenda)
-	(let ((current-prefix-arg arg))
-	  (call-interactively 'org-todo))
-	(and (bolp) (forward-char 1))
-	(setq newhead (org-get-heading))
-	(when (and (bound-and-true-p
-		    org-agenda-headline-snapshot-before-repeat)
-		   (not (equal org-agenda-headline-snapshot-before-repeat
-			       newhead))
-		   todayp)
-	  (setq newhead org-agenda-headline-snapshot-before-repeat
-		just-one t))
-	(save-excursion
-	  (org-back-to-heading)
-	  (move-marker org-last-heading-marker (point))))
-      (beginning-of-line 1)
-      (save-window-excursion
-	(org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
-      (when (bound-and-true-p org-clock-out-when-done)
-      	(string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
-		      newhead)
-	(org-agenda-unmark-clocking-task))
-      (org-move-to-column col)
-      (org-agenda-mark-clocking-task))))
-
-(defun org-agenda-add-note (&optional arg)
-  "Add a time-stamped note to the entry at point."
-  (interactive "P")
-  (org-agenda-check-no-diary)
-  (let* ((marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker))
-	 (hdmarker (org-get-at-bol 'org-hd-marker))
-	 (inhibit-read-only t))
-    (with-current-buffer buffer
-      (widen)
-      (goto-char pos)
-      (org-show-context 'agenda)
-      (org-add-note))))
-
-(defun org-agenda-change-all-lines (newhead hdmarker
-					    &optional fixface just-this)
-  "Change all lines in the agenda buffer which match HDMARKER.
-The new content of the line will be NEWHEAD (as modified by
-`org-agenda-format-item').  HDMARKER is checked with
-`equal' against all `org-hd-marker' text properties in the file.
-If FIXFACE is non-nil, the face of each item is modified according to
-the new TODO state.
-If JUST-THIS is non-nil, change just the current line, not all.
-If FORCE-TAGS is non nil, the car of it returns the new tags."
-  (let* ((inhibit-read-only t)
-	 (line (org-current-line))
-	 (org-agenda-buffer (current-buffer))
-	 (thetags (with-current-buffer (marker-buffer hdmarker)
-		    (org-with-wide-buffer
-		     (goto-char hdmarker)
-		     (org-get-tags-at))))
-	 props m pl undone-face done-face finish new dotime level cat tags)
-    (save-excursion
-      (goto-char (point-max))
-      (beginning-of-line 1)
-      (while (not finish)
-	(setq finish (bobp))
-	(when (and (setq m (org-get-at-bol 'org-hd-marker))
-		   (or (not just-this) (= (org-current-line) line))
-		   (equal m hdmarker))
-	  (setq props (text-properties-at (point))
-		dotime (org-get-at-bol 'dotime)
-		cat (org-get-at-eol 'org-category 1)
-		level (org-get-at-bol 'level)
-		tags thetags
-		new
-		(let ((org-prefix-format-compiled
-		       (or (get-text-property (min (1- (point-max)) (point)) 'format)
-			   org-prefix-format-compiled))
-		      (extra (org-get-at-bol 'extra)))
-		  (with-current-buffer (marker-buffer hdmarker)
-		    (org-with-wide-buffer
-		     (org-agenda-format-item extra newhead level cat tags dotime))))
-		pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
-		undone-face (org-get-at-bol 'undone-face)
-		done-face (org-get-at-bol 'done-face))
-	  (beginning-of-line 1)
-	  (cond
-	   ((equal new "") (delete-region (point) (line-beginning-position 2)))
-	   ((looking-at ".*")
-	    ;; When replacing the whole line, preserve bulk mark
-	    ;; overlay, if any.
-	    (let ((mark (catch :overlay
-			  (dolist (o (overlays-in (point) (+ 2 (point))))
-			    (when (eq (overlay-get o 'type)
-				      'org-marked-entry-overlay)
-			      (throw :overlay o))))))
-	      (replace-match new t t)
-	      (beginning-of-line)
-	      (when mark (move-overlay mark (point) (+ 2 (point)))))
-	    (add-text-properties (point-at-bol) (point-at-eol) props)
-	    (when fixface
-	      (add-text-properties
-	       (point-at-bol) (point-at-eol)
-	       (list 'face
-		     (if org-last-todo-state-is-todo
-			 undone-face done-face))))
-	    (org-agenda-highlight-todo 'line)
-	    (beginning-of-line 1))
-	   (t (error "Line update did not work")))
-	  (save-restriction
-	    (narrow-to-region (point-at-bol) (point-at-eol))
-	    (org-agenda-finalize)))
-	(beginning-of-line 0)))))
-
-(defun org-agenda-align-tags (&optional line)
-  "Align all tags in agenda items to `org-agenda-tags-column'."
-  (let ((inhibit-read-only t)
-	(org-agenda-tags-column (if (eq 'auto org-agenda-tags-column)
-				    (- (window-text-width))
-				  org-agenda-tags-column))
-	l c)
-    (save-excursion
-      (goto-char (if line (point-at-bol) (point-min)))
-      (while (re-search-forward "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"
-				(if line (point-at-eol) nil) t)
-	(add-text-properties
-	 (match-beginning 2) (match-end 2)
-	 (list 'face (delq nil (let ((prop (get-text-property
-					    (match-beginning 2) 'face)))
-				 (or (listp prop) (setq prop (list prop)))
-				 (if (memq 'org-tag prop)
-				     prop
-				   (cons 'org-tag prop))))))
-	(setq l (- (match-end 2) (match-beginning 2))
-	      c (if (< org-agenda-tags-column 0)
-		    (- (abs org-agenda-tags-column) l)
-		  org-agenda-tags-column))
-	(delete-region (match-beginning 1) (match-end 1))
-	(goto-char (match-beginning 1))
-	(insert (org-add-props
-		    (make-string (max 1 (- c (current-column))) ?\ )
-		    (plist-put (copy-sequence (text-properties-at (point)))
-			       'face nil))))
-      (goto-char (point-min))
-      (org-font-lock-add-tag-faces (point-max)))))
-
-(defun org-agenda-priority-up ()
-  "Increase the priority of line at point, also in Org file."
-  (interactive)
-  (org-agenda-priority 'up))
-
-(defun org-agenda-priority-down ()
-  "Decrease the priority of line at point, also in Org file."
-  (interactive)
-  (org-agenda-priority 'down))
-
-(defun org-agenda-priority (&optional force-direction)
-  "Set the priority of line at point, also in Org file.
-This changes the line at point, all other lines in the agenda referring to
-the same tree node, and the headline of the tree node in the Org file.
-Called with a universal prefix arg, show the priority instead of setting it."
-  (interactive "P")
-  (if (equal force-direction '(4))
-      (org-show-priority)
-    (unless org-enable-priority-commands
-      (error "Priority commands are disabled"))
-    (org-agenda-check-no-diary)
-    (let* ((col (current-column))
-	   (marker (or (org-get-at-bol 'org-marker)
-		       (org-agenda-error)))
-	   (hdmarker (org-get-at-bol 'org-hd-marker))
-	   (buffer (marker-buffer hdmarker))
-	   (pos (marker-position hdmarker))
-	   (inhibit-read-only t)
-	   newhead)
-      (org-with-remote-undo buffer
-	(with-current-buffer buffer
-	  (widen)
-	  (goto-char pos)
-	  (org-show-context 'agenda)
-	  (funcall 'org-priority force-direction)
-	  (end-of-line 1)
-	  (setq newhead (org-get-heading)))
-	(org-agenda-change-all-lines newhead hdmarker)
-	(org-move-to-column col)))))
-
-;; FIXME: should fix the tags property of the agenda line.
-(defun org-agenda-set-tags (&optional tag onoff)
-  "Set tags for the current headline."
-  (interactive)
-  (org-agenda-check-no-diary)
-  (if (and (org-region-active-p) (called-interactively-p 'any))
-      (call-interactively 'org-change-tag-in-region)
-    (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
-			 (org-agenda-error)))
-	   (buffer (marker-buffer hdmarker))
-	   (pos (marker-position hdmarker))
-	   (inhibit-read-only t)
-	   newhead)
-      (org-with-remote-undo buffer
-	(with-current-buffer buffer
-	  (widen)
-	  (goto-char pos)
-	  (org-show-context 'agenda)
-	  (if tag
-	      (org-toggle-tag tag onoff)
-	    (call-interactively 'org-set-tags))
-	  (end-of-line 1)
-	  (setq newhead (org-get-heading)))
-	(org-agenda-change-all-lines newhead hdmarker)
-	(beginning-of-line 1)))))
-
-(defun org-agenda-set-property ()
-  "Set a property for the current headline."
-  (interactive)
-  (org-agenda-check-no-diary)
-  (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
-		       (org-agenda-error)))
-	 (buffer (marker-buffer hdmarker))
-	 (pos (marker-position hdmarker))
-	 (inhibit-read-only t)
-	 newhead)
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(widen)
-	(goto-char pos)
-	(org-show-context 'agenda)
-	(call-interactively 'org-set-property)))))
-
-(defun org-agenda-set-effort ()
-  "Set the effort property for the current headline."
-  (interactive)
-  (org-agenda-check-no-diary)
-  (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
-		       (org-agenda-error)))
-	 (buffer (marker-buffer hdmarker))
-	 (pos (marker-position hdmarker))
-	 (inhibit-read-only t)
-	 newhead)
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(widen)
-	(goto-char pos)
-	(org-show-context 'agenda)
-	(call-interactively 'org-set-effort)
-	(end-of-line 1)
-	(setq newhead (org-get-heading)))
-      (org-agenda-change-all-lines newhead hdmarker))))
-
-(defun org-agenda-toggle-archive-tag ()
-  "Toggle the archive tag for the current entry."
-  (interactive)
-  (org-agenda-check-no-diary)
-  (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
-                       (org-agenda-error)))
-	 (buffer (marker-buffer hdmarker))
-	 (pos (marker-position hdmarker))
-	 (inhibit-read-only t)
-	 newhead)
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(widen)
-	(goto-char pos)
-	(org-show-context 'agenda)
-	(call-interactively 'org-toggle-archive-tag)
-	(end-of-line 1)
-	(setq newhead (org-get-heading)))
-      (org-agenda-change-all-lines newhead hdmarker)
-      (beginning-of-line 1))))
-
-(defun org-agenda-do-date-later (arg)
-  (interactive "P")
-  (cond
-   ((or (equal arg '(16))
-	(memq last-command
-	      '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
-    (setq this-command 'org-agenda-date-later-minutes)
-    (org-agenda-date-later-minutes 1))
-   ((or (equal arg '(4))
-	(memq last-command
-	      '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
-    (setq this-command 'org-agenda-date-later-hours)
-    (org-agenda-date-later-hours 1))
-   (t
-    (org-agenda-date-later (prefix-numeric-value arg)))))
-
-(defun org-agenda-do-date-earlier (arg)
-  (interactive "P")
-  (cond
-   ((or (equal arg '(16))
-	(memq last-command
-	      '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
-    (setq this-command 'org-agenda-date-earlier-minutes)
-    (org-agenda-date-earlier-minutes 1))
-   ((or (equal arg '(4))
-	(memq last-command
-	      '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
-    (setq this-command 'org-agenda-date-earlier-hours)
-    (org-agenda-date-earlier-hours 1))
-   (t
-    (org-agenda-date-earlier (prefix-numeric-value arg)))))
-
-(defun org-agenda-date-later (arg &optional what)
-  "Change the date of this item to ARG day(s) later."
-  (interactive "p")
-  (org-agenda-check-type t 'agenda)
-  (org-agenda-check-no-diary)
-  (let* ((marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker))
-	 cdate today)
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(widen)
-	(goto-char pos)
-	(unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
-	(when (and org-agenda-move-date-from-past-immediately-to-today
-		   (equal arg 1)
-		   (or (not what) (eq what 'day))
-		   (not (save-match-data (org-at-date-range-p))))
-	  (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
-		cdate (calendar-absolute-from-gregorian
-		       (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
-		today (org-today))
-	  (if (> today cdate)
-	      ;; immediately shift to today
-	      (setq arg (- today cdate))))
-	(org-timestamp-change arg (or what 'day))
-	(when (and (org-at-date-range-p)
-		   (re-search-backward org-tr-regexp-both (point-at-bol)))
-	  (let ((end org-last-changed-timestamp))
-	    (org-timestamp-change arg (or what 'day))
-	    (setq org-last-changed-timestamp
-		  (concat org-last-changed-timestamp "--" end)))))
-      (org-agenda-show-new-time marker org-last-changed-timestamp))
-    (message "Time stamp changed to %s" org-last-changed-timestamp)))
-
-(defun org-agenda-date-earlier (arg &optional what)
-  "Change the date of this item to ARG day(s) earlier."
-  (interactive "p")
-  (org-agenda-date-later (- arg) what))
-
-(defun org-agenda-date-later-minutes (arg)
-  "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
-  (interactive "p")
-  (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
-  (org-agenda-date-later arg 'minute))
-
-(defun org-agenda-date-earlier-minutes (arg)
-  "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
-  (interactive "p")
-  (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
-  (org-agenda-date-earlier arg 'minute))
-
-(defun org-agenda-date-later-hours (arg)
-  "Change the time of this item, in hour steps."
-  (interactive "p")
-  (org-agenda-date-later arg 'hour))
-
-(defun org-agenda-date-earlier-hours (arg)
-  "Change the time of this item, in hour steps."
-  (interactive "p")
-  (org-agenda-date-earlier arg 'hour))
-
-(defun org-agenda-show-new-time (marker stamp &optional prefix)
-  "Show new date stamp via text properties."
-  ;; We use text properties to make this undoable
-  (let ((inhibit-read-only t))
-    (setq stamp (concat prefix " => " stamp " "))
-    (save-excursion
-      (goto-char (point-max))
-      (while (not (bobp))
-	(when (equal marker (org-get-at-bol 'org-marker))
-	  (remove-text-properties (point-at-bol) (point-at-eol) '(display))
-	  (org-move-to-column (- (window-width) (length stamp)) t)
-          (add-text-properties
-	   (1- (point)) (point-at-eol)
-	   (list 'display (org-add-props stamp nil
-			    'face '(secondary-selection default))))
-	  (beginning-of-line 1))
-	(beginning-of-line 0)))))
-
-(defun org-agenda-date-prompt (arg)
-  "Change the date of this item.  Date is prompted for, with default today.
-The prefix ARG is passed to the `org-time-stamp' command and can therefore
-be used to request time specification in the time stamp."
-  (interactive "P")
-  (org-agenda-check-type t 'agenda)
-  (org-agenda-check-no-diary)
-  (let* ((marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker)))
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(widen)
-	(goto-char pos)
-	(unless (org-at-timestamp-p 'lax) (error "Cannot find time stamp"))
-	(org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
-      (org-agenda-show-new-time marker org-last-changed-timestamp))
-    (message "Time stamp changed to %s" org-last-changed-timestamp)))
-
-(defun org-agenda-schedule (arg &optional time)
-  "Schedule the item at point.
-ARG is passed through to `org-schedule'."
-  (interactive "P")
-  (org-agenda-check-type t 'agenda 'todo 'tags 'search)
-  (org-agenda-check-no-diary)
-  (let* ((marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (type (marker-insertion-type marker))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker))
-	 ts)
-    (set-marker-insertion-type marker t)
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(widen)
-	(goto-char pos)
-	(setq ts (org-schedule arg time)))
-      (org-agenda-show-new-time marker ts " S"))
-    (message "%s" ts)))
-
-(defun org-agenda-deadline (arg &optional time)
-  "Schedule the item at point.
-ARG is passed through to `org-deadline'."
-  (interactive "P")
-  (org-agenda-check-type t 'agenda 'todo 'tags 'search)
-  (org-agenda-check-no-diary)
-  (let* ((marker (or (org-get-at-bol 'org-marker)
-		     (org-agenda-error)))
-	 (buffer (marker-buffer marker))
-	 (pos (marker-position marker))
-	 ts)
-    (org-with-remote-undo buffer
-      (with-current-buffer buffer
-	(widen)
-	(goto-char pos)
-	(setq ts (org-deadline arg time)))
-      (org-agenda-show-new-time marker ts " D"))
-    (message "%s" ts)))
-
-(defun org-agenda-clock-in (&optional arg)
-  "Start the clock on the currently selected item."
-  (interactive "P")
-  (org-agenda-check-no-diary)
-  (if (equal arg '(4))
-      (org-clock-in arg)
-    (let* ((marker (or (org-get-at-bol 'org-marker)
-		       (org-agenda-error)))
-	   (hdmarker (or (org-get-at-bol 'org-hd-marker) marker))
-	   (pos (marker-position marker))
-	   (col (current-column))
-	   newhead)
-      (org-with-remote-undo (marker-buffer marker)
-        (with-current-buffer (marker-buffer marker)
-	  (widen)
-	  (goto-char pos)
-	  (org-show-context 'agenda)
-	  (org-cycle-hide-drawers 'children)
-	  (org-clock-in arg)
-	  (setq newhead (org-get-heading)))
-	(org-agenda-change-all-lines newhead hdmarker))
-      (org-move-to-column col))))
-
-(defun org-agenda-clock-out ()
-  "Stop the currently running clock."
-  (interactive)
-  (unless (marker-buffer org-clock-marker)
-    (error "No running clock"))
-  (let ((marker (make-marker)) (col (current-column)) newhead)
-    (org-with-remote-undo (marker-buffer org-clock-marker)
-      (with-current-buffer (marker-buffer org-clock-marker)
-	(org-with-wide-buffer
-	 (goto-char org-clock-marker)
-	 (org-back-to-heading t)
-	 (move-marker marker (point))
-	 (org-clock-out)
-	 (setq newhead (org-get-heading)))))
-    (org-agenda-change-all-lines newhead marker)
-    (move-marker marker nil)
-    (org-move-to-column col)
-    (org-agenda-unmark-clocking-task)))
-
-(defun org-agenda-clock-cancel (&optional arg)
-  "Cancel the currently running clock."
-  (interactive "P")
-  (unless (marker-buffer org-clock-marker)
-    (user-error "No running clock"))
-  (org-with-remote-undo (marker-buffer org-clock-marker)
-    (org-clock-cancel)))
-
-(defun org-agenda-clock-goto ()
-  "Jump to the currently clocked in task within the agenda.
-If the currently clocked in task is not listed in the agenda
-buffer, display it in another window."
-  (interactive)
-  (let (pos)
-    (mapc (lambda (o)
-	    (if (eq (overlay-get o 'type) 'org-agenda-clocking)
-		(setq pos (overlay-start o))))
-	  (overlays-in (point-min) (point-max)))
-    (cond (pos (goto-char pos))
-	  ;; If the currently clocked entry is not in the agenda
-	  ;; buffer, we visit it in another window:
-	  ((bound-and-true-p org-clock-current-task)
-	   (org-switch-to-buffer-other-window (org-clock-goto)))
-	  (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
-
-(defun org-agenda-diary-entry-in-org-file ()
-  "Make a diary entry in the file `org-agenda-diary-file'."
-  (let (d1 d2 char (text "") dp1 dp2)
-    (if (equal (buffer-name) "*Calendar*")
-	(setq d1 (calendar-cursor-to-date t)
-	      d2 (car calendar-mark-ring))
-      (setq dp1 (get-text-property (point-at-bol) 'day))
-      (unless dp1 (user-error "No date defined in current line"))
-      (setq d1 (calendar-gregorian-from-absolute dp1)
-	    d2 (and (ignore-errors (mark))
-		    (save-excursion
-		      (goto-char (mark))
-		      (setq dp2 (get-text-property (point-at-bol) 'day)))
-		    (calendar-gregorian-from-absolute dp2))))
-    (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
-    (setq char (read-char-exclusive))
-    (cond
-     ((equal char ?d)
-      (setq text (read-string "Day entry: "))
-      (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
-      (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
-     ((equal char ?a)
-      (setq d1 (list (car d1) (nth 1 d1)
-		     (read-number (format "Reference year [%d]: " (nth 2 d1))
-				  (nth 2 d1))))
-      (setq text (read-string "Anniversary (use %d to show years): "))
-      (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
-      (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
-     ((equal char ?b)
-      (setq text (read-string "Block entry: "))
-      (unless (and d1 d2 (not (equal d1 d2)))
-	(user-error "No block of days selected"))
-      (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
-      (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
-     ((equal char ?j)
-      (org-switch-to-buffer-other-window
-       (find-file-noselect org-agenda-diary-file))
-      (require 'org-datetree)
-      (org-datetree-find-date-create d1)
-      (org-reveal t))
-     (t (user-error "Invalid selection character `%c'" char)))))
-
-(defcustom org-agenda-insert-diary-strategy 'date-tree
-  "Where in `org-agenda-diary-file' should new entries be added?
-Valid values:
-
-date-tree         in the date tree, as first child of the date
-date-tree-last    in the date tree, as last child of the date
-top-level         as top-level entries at the end of the file."
-  :group 'org-agenda
-  :type '(choice
-	  (const :tag "first in a date tree" date-tree)
-	  (const :tag "last in a date tree" date-tree-last)
-	  (const :tag "as top level at end of file" top-level)))
-
-(defcustom org-agenda-insert-diary-extract-time nil
-  "Non-nil means extract any time specification from the diary entry."
-  :group 'org-agenda
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-agenda-bulk-mark-char ">"
-  "A single-character string to be used as the bulk mark."
-  :group 'org-agenda
-  :version "24.1"
-  :type 'string)
-
-(defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
-  "Add a diary entry with TYPE to `org-agenda-diary-file'.
-If TEXT is not empty, it will become the headline of the new entry, and
-the resulting entry will not be shown.  When TEXT is empty, switch to
-`org-agenda-diary-file' and let the user finish the entry there."
-  (let ((cw (current-window-configuration)))
-    (org-switch-to-buffer-other-window
-     (find-file-noselect org-agenda-diary-file))
-    (widen)
-    (goto-char (point-min))
-    (cond
-     ((eq type 'anniversary)
-      (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
-	  (progn
-	    (or (org-at-heading-p t)
-		(progn
-		  (outline-next-heading)
-		  (insert "* Anniversaries\n\n")
-		  (beginning-of-line -1)))))
-      (outline-next-heading)
-      (org-back-over-empty-lines)
-      (backward-char 1)
-      (insert "\n")
-      (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
-		      (nth 2 d1) (car d1) (nth 1 d1) text)))
-     ((eq type 'day)
-      (let ((org-prefix-has-time t)
-	    (org-agenda-time-leading-zero t)
-	    fmt time time2)
-	(if org-agenda-insert-diary-extract-time
-	    ;; Use org-agenda-format-item to parse text for a time-range and
-	    ;; remove it.  FIXME: This is a hack, we should refactor
-	    ;; that function to make time extraction available separately
-	    (setq fmt (org-agenda-format-item nil text nil nil nil t)
-		  time (get-text-property 0 'time fmt)
-		  time2 (if (> (length time) 0)
-			    ;; split-string removes trailing ...... if
-			    ;; no end time given.  First space
-			    ;; separates time from date.
-			    (concat " " (car (split-string time "\\.")))
-			  nil)
-		  text (get-text-property 0 'txt fmt)))
-	(if (eq org-agenda-insert-diary-strategy 'top-level)
-	    (org-agenda-insert-diary-as-top-level text)
-	  (require 'org-datetree)
-	  (org-datetree-find-date-create d1)
-	  (org-agenda-insert-diary-make-new-entry text))
-	(org-insert-time-stamp (org-time-from-absolute
-				(calendar-absolute-from-gregorian d1))
-			       nil nil nil nil time2))
-      (end-of-line 0))
-     ((eq type 'block)
-      (if (> (calendar-absolute-from-gregorian d1)
-	     (calendar-absolute-from-gregorian d2))
-	  (setq d1 (prog1 d2 (setq d2 d1))))
-      (if (eq org-agenda-insert-diary-strategy 'top-level)
-	  (org-agenda-insert-diary-as-top-level text)
-	(require 'org-datetree)
-	(org-datetree-find-date-create d1)
-	(org-agenda-insert-diary-make-new-entry text))
-      (org-insert-time-stamp (org-time-from-absolute
-			      (calendar-absolute-from-gregorian d1)))
-      (insert "--")
-      (org-insert-time-stamp (org-time-from-absolute
-			      (calendar-absolute-from-gregorian d2)))
-      (end-of-line 0)))
-    (if (string-match "\\S-" text)
-	(progn
-	  (set-window-configuration cw)
-	  (message "%s entry added to %s"
-		   (capitalize (symbol-name type))
-		   (abbreviate-file-name org-agenda-diary-file)))
-      (org-reveal t)
-      (message "Please finish entry here"))))
-
-(defun org-agenda-insert-diary-as-top-level (text)
-  "Make new entry as a top-level entry at the end of the file.
-Add TEXT as headline, and position the cursor in the second line so that
-a timestamp can be added there."
-  (widen)
-  (goto-char (point-max))
-  (unless (bolp) (insert "\n"))
-  (org-insert-heading nil t t)
-  (insert text)
-  (org-end-of-meta-data)
-  (unless (bolp) (insert "\n"))
-  (when org-adapt-indentation (indent-to-column 2)))
-
-(defun org-agenda-insert-diary-make-new-entry (text)
-  "Make a new entry with TEXT as a child of the current subtree.
-Position the point in the heading's first body line so that
-a timestamp can be added there."
-  (cond
-   ((eq org-agenda-insert-diary-strategy 'date-tree-last)
-    (end-of-line)
-    (org-insert-heading '(4) t)
-    (org-do-demote))
-   (t
-    (outline-next-heading)
-    (org-back-over-empty-lines)
-    (unless (looking-at "[ \t]*$") (save-excursion (insert "\n")))
-    (org-insert-heading nil t)
-    (org-do-demote)))
-  (let ((col (current-column)))
-    (insert text)
-    (org-end-of-meta-data)
-    ;; Ensure point is left on a blank line, at proper indentation.
-    (unless (bolp) (insert "\n"))
-    (unless (looking-at-p "^[ \t]*$") (save-excursion (insert "\n")))
-    (when org-adapt-indentation (indent-to-column col)))
-  (org-show-set-visibility 'lineage))
-
-(defun org-agenda-diary-entry ()
-  "Make a diary entry, like the `i' command from the calendar.
-All the standard commands work: block, weekly etc.
-When `org-agenda-diary-file' points to a file,
-`org-agenda-diary-entry-in-org-file' is called instead to create
-entries in that Org file."
-  (interactive)
-  (if (not (eq org-agenda-diary-file 'diary-file))
-      (org-agenda-diary-entry-in-org-file)
-    (require 'diary-lib)
-    (let* ((char (progn
-		   (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
-		   (read-char-exclusive)))
-	   (cmd (cdr (assoc char
-			    '((?d . diary-insert-entry)
-			      (?w . diary-insert-weekly-entry)
-			      (?m . diary-insert-monthly-entry)
-			      (?y . diary-insert-yearly-entry)
-			      (?a . diary-insert-anniversary-entry)
-			      (?b . diary-insert-block-entry)
-			      (?c . diary-insert-cyclic-entry)))))
-	   (oldf (symbol-function 'calendar-cursor-to-date))
-	   ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
-	   (point (point))
-	   (mark (or (mark t) (point))))
-      (unless cmd
-	(user-error "No command associated with <%c>" char))
-      (unless (and (get-text-property point 'day)
-		   (or (not (equal ?b char))
-		       (get-text-property mark 'day)))
-	(user-error "Don't know which date to use for diary entry"))
-      ;; We implement this by hacking the `calendar-cursor-to-date' function
-      ;; and the `calendar-mark-ring' variable.  Saves a lot of code.
-      (let ((calendar-mark-ring
-	     (list (calendar-gregorian-from-absolute
-		    (or (get-text-property mark 'day)
-			(get-text-property point 'day))))))
-	(unwind-protect
-	    (progn
-	      (fset 'calendar-cursor-to-date
-		    (lambda (&optional error dummy)
-		      (calendar-gregorian-from-absolute
-		       (get-text-property point 'day))))
-	      (call-interactively cmd))
-	  (fset 'calendar-cursor-to-date oldf))))))
-
-(defun org-agenda-execute-calendar-command (cmd)
-  "Execute a calendar command from the agenda with date from cursor."
-  (org-agenda-check-type t 'agenda)
-  (require 'diary-lib)
-  (unless (get-text-property (min (1- (point-max)) (point)) 'day)
-    (user-error "Don't know which date to use for the calendar command"))
-  (let* ((oldf (symbol-function 'calendar-cursor-to-date))
-	 (point (point))
-	 (date (calendar-gregorian-from-absolute
-		(get-text-property point 'day)))
-         ;; the following 2 vars are needed in the calendar
-	 (displayed-month (car date))
-	 (displayed-year (nth 2 date)))
-    (unwind-protect
-	(progn
-	  (fset 'calendar-cursor-to-date
-		(lambda (&optional error dummy)
-		  (calendar-gregorian-from-absolute
-		   (get-text-property point 'day))))
-	  (call-interactively cmd))
-      (fset 'calendar-cursor-to-date oldf))))
-
-(defun org-agenda-phases-of-moon ()
-  "Display the phases of the moon for the 3 months around the cursor date."
-  (interactive)
-  (org-agenda-execute-calendar-command 'calendar-lunar-phases))
-
-(defun org-agenda-holidays ()
-  "Display the holidays for the 3 months around the cursor date."
-  (interactive)
-  (org-agenda-execute-calendar-command 'calendar-list-holidays))
-
-(defvar calendar-longitude)      ; defined in calendar.el
-(defvar calendar-latitude)       ; defined in calendar.el
-(defvar calendar-location-name)  ; defined in calendar.el
-
-(defun org-agenda-sunrise-sunset (arg)
-  "Display sunrise and sunset for the cursor date.
-Latitude and longitude can be specified with the variables
-`calendar-latitude' and `calendar-longitude'.  When called with prefix
-argument, latitude and longitude will be prompted for."
-  (interactive "P")
-  (require 'solar)
-  (let ((calendar-longitude (if arg nil calendar-longitude))
-	(calendar-latitude  (if arg nil calendar-latitude))
-	(calendar-location-name
-	 (if arg "the given coordinates" calendar-location-name)))
-    (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
-
-(defun org-agenda-goto-calendar ()
-  "Open the Emacs calendar with the date at the cursor."
-  (interactive)
-  (org-agenda-check-type t 'agenda)
-  (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
-		  (user-error "Don't know which date to open in calendar")))
-	 (date (calendar-gregorian-from-absolute day))
-	 (calendar-move-hook nil)
-	 (calendar-view-holidays-initially-flag nil)
-	 (calendar-view-diary-initially-flag nil))
-    (calendar)
-    (calendar-goto-date date)))
-
-;;;###autoload
-(defun org-calendar-goto-agenda ()
-  "Compute the Org agenda for the calendar date displayed at the cursor.
-This is a command that has to be installed in `calendar-mode-map'."
-  (interactive)
-  ;; Temporarily disable sticky agenda since user clearly wants to
-  ;; refresh view anyway.
-  (let ((org-agenda-buffer-tmp-name "*Org Agenda(a)*")
-	(org-agenda-sticky nil))
-    (org-agenda-list nil (calendar-absolute-from-gregorian
-			  (calendar-cursor-to-date))
-		     nil)))
-
-(defun org-agenda-convert-date ()
-  (interactive)
-  (org-agenda-check-type t 'agenda)
-  (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
-	date s)
-    (unless day
-      (user-error "Don't know which date to convert"))
-    (setq date (calendar-gregorian-from-absolute day))
-    (setq s (concat
-	     "Gregorian:  " (calendar-date-string date) "\n"
-	     "ISO:        " (calendar-iso-date-string date) "\n"
-	     "Day of Yr:  " (calendar-day-of-year-string date) "\n"
-	     "Julian:     " (calendar-julian-date-string date) "\n"
-	     "Astron. JD: " (calendar-astro-date-string date)
-	     " (Julian date number at noon UTC)\n"
-	     "Hebrew:     " (calendar-hebrew-date-string date) " (until sunset)\n"
-	     "Islamic:    " (calendar-islamic-date-string date) " (until sunset)\n"
-	     "French:     " (calendar-french-date-string date) "\n"
-	     "Bahá’í:     " (calendar-bahai-date-string date) " (until sunset)\n"
-	     "Mayan:      " (calendar-mayan-date-string date) "\n"
-	     "Coptic:     " (calendar-coptic-date-string date) "\n"
-	     "Ethiopic:   " (calendar-ethiopic-date-string date) "\n"
-	     "Persian:    " (calendar-persian-date-string date) "\n"
-	     "Chinese:    " (calendar-chinese-date-string date) "\n"))
-    (with-output-to-temp-buffer "*Dates*"
-      (princ s))
-    (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
-
-;;; Bulk commands
-
-(defun org-agenda-bulk-marked-p ()
-  "Non-nil when current entry is marked for bulk action."
-  (eq (get-char-property (point-at-bol) 'type)
-      'org-marked-entry-overlay))
-
-(defun org-agenda-bulk-mark (&optional arg)
-  "Mark the entry at point for future bulk action."
-  (interactive "p")
-  (dotimes (i (or arg 1))
-    (unless (org-get-at-bol 'org-agenda-diary-link)
-      (let* ((m (org-get-at-bol 'org-hd-marker))
-	     ov)
-	(unless (org-agenda-bulk-marked-p)
-	  (unless m (user-error "Nothing to mark at point"))
-	  (push m org-agenda-bulk-marked-entries)
-	  (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
-	  (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
-			       (org-get-todo-face "TODO")
-			       'evaporate)
-	  (overlay-put ov 'type 'org-marked-entry-overlay))
-	(end-of-line 1)
-	(or (ignore-errors
-	      (goto-char (next-single-property-change (point) 'org-hd-marker)))
-	    (beginning-of-line 2))
-	(while (and (get-char-property (point) 'invisible) (not (eobp)))
-	  (beginning-of-line 2))
-	(message "%d entries marked for bulk action"
-		 (length org-agenda-bulk-marked-entries))))))
-
-(defun org-agenda-bulk-mark-all ()
-  "Mark all entries for future agenda bulk action."
-  (interactive)
-  (org-agenda-bulk-mark-regexp "."))
-
-(defun org-agenda-bulk-mark-regexp (regexp)
-  "Mark entries matching REGEXP for future agenda bulk action."
-  (interactive "sMark entries matching regexp: ")
-  (let ((entries-marked 0) txt-at-point)
-    (save-excursion
-      (goto-char (point-min))
-      (goto-char (next-single-property-change (point) 'org-hd-marker))
-      (while (and (re-search-forward regexp nil t)
-		  (setq txt-at-point (get-text-property (point) 'txt)))
-	(if (get-char-property (point) 'invisible)
-	    (beginning-of-line 2)
-	  (when (string-match regexp txt-at-point)
-	    (setq entries-marked (1+ entries-marked))
-	    (call-interactively 'org-agenda-bulk-mark)))))
-
-    (if (not entries-marked)
-	(message "No entry matching this regexp."))))
-
-(defun org-agenda-bulk-unmark (&optional arg)
-  "Unmark the entry at point for future bulk action."
-  (interactive "P")
-  (if arg
-      (org-agenda-bulk-unmark-all)
-    (cond ((org-agenda-bulk-marked-p)
-	   (org-agenda-bulk-remove-overlays
-	    (point-at-bol) (+ 2 (point-at-bol)))
-	   (setq org-agenda-bulk-marked-entries
-		 (delete (org-get-at-bol 'org-hd-marker)
-			 org-agenda-bulk-marked-entries))
-	   (end-of-line 1)
-	   (or (ignore-errors
-		 (goto-char (next-single-property-change (point) 'txt)))
-	       (beginning-of-line 2))
-	   (while (and (get-char-property (point) 'invisible) (not (eobp)))
-	     (beginning-of-line 2))
-	   (message "%d entries left marked for bulk action"
-		    (length org-agenda-bulk-marked-entries)))
-	  (t (message "No entry to unmark here")))))
-
-(defun org-agenda-bulk-toggle-all ()
-  "Toggle all marks for bulk action."
-  (interactive)
-  (save-excursion
-    (goto-char (point-min))
-    (while (ignore-errors
-	     (goto-char (next-single-property-change (point) 'org-hd-marker)))
-      (org-agenda-bulk-toggle))))
-
-(defun org-agenda-bulk-toggle ()
-  "Toggle the mark at point for bulk action."
-  (interactive)
-  (if (org-agenda-bulk-marked-p)
-      (org-agenda-bulk-unmark)
-    (org-agenda-bulk-mark)))
-
-(defun org-agenda-bulk-remove-overlays (&optional beg end)
-  "Remove the mark overlays between BEG and END in the agenda buffer.
-BEG and END default to the buffer limits.
-
-This only removes the overlays, it does not remove the markers
-from the list in `org-agenda-bulk-marked-entries'."
-  (interactive)
-  (mapc (lambda (ov)
-	  (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
-	       (delete-overlay ov)))
-	(overlays-in (or beg (point-min)) (or end (point-max)))))
-
-(defun org-agenda-bulk-unmark-all ()
-  "Remove all marks in the agenda buffer.
-This will remove the markers and the overlays."
-  (interactive)
-  (if (null org-agenda-bulk-marked-entries)
-      (message "No entry to unmark")
-    (setq org-agenda-bulk-marked-entries nil)
-    (org-agenda-bulk-remove-overlays (point-min) (point-max))))
-
-(defcustom org-agenda-persistent-marks nil
-  "Non-nil means marked items will stay marked after a bulk action.
-You can toggle this interactively by typing `p' when prompted for a
-bulk action."
-  :group 'org-agenda
-  :version "24.1"
-  :type 'boolean)
-
-(defun org-agenda-bulk-action (&optional arg)
-  "Execute an remote-editing action on all marked entries.
-The prefix arg is passed through to the command if possible."
-  (interactive "P")
-  ;; Make sure we have markers, and only valid ones.
-  (unless org-agenda-bulk-marked-entries (user-error "No entries are marked"))
-  (dolist (m org-agenda-bulk-marked-entries)
-    (unless (and (markerp m)
-		 (marker-buffer m)
-		 (buffer-live-p (marker-buffer m))
-		 (marker-position m))
-      (user-error "Marker %s for bulk command is invalid" m)))
-
-  ;; Prompt for the bulk command.
-  (message
-   (concat (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")
-	   "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
-	   "[S]catter [f]unction    "
-	   (and org-agenda-bulk-custom-functions
-		(format " Custom: [%s]"
-			(mapconcat (lambda (f) (char-to-string (car f)))
-				   org-agenda-bulk-custom-functions
-				   "")))))
-  (catch 'exit
-    (let* ((org-log-refile (if org-log-refile 'time nil))
-	   (entries (reverse org-agenda-bulk-marked-entries))
-	   (org-overriding-default-time
-	    (and (get-text-property (point) 'org-agenda-date-header)
-		 (org-get-cursor-date)))
-	   redo-at-end
-	   cmd)
-      (pcase (read-char-exclusive)
-	(?p
-	 (let ((org-agenda-persistent-marks
-		(not org-agenda-persistent-marks)))
-	   (org-agenda-bulk-action)
-	   (throw 'exit nil)))
-
-	(?$
-	 (setq cmd #'org-agenda-archive))
-
-	(?A
-	 (setq cmd #'org-agenda-archive-to-archive-sibling))
-
-	((or ?r ?w)
-	 (let ((refile-location
-		(org-refile-get-location
-		 "Refile to"
-		 (marker-buffer (car entries))
-		 org-refile-allow-creating-parent-nodes)))
-	   (when (nth 3 refile-location)
-	     (setcar (nthcdr 3 refile-location)
-		     (move-marker
-		      (make-marker)
-		      (nth 3 refile-location)
-		      (or (get-file-buffer (nth 1 refile-location))
-			  (find-buffer-visiting (nth 1 refile-location))
-			  (error "This should not happen")))))
-
-	   (setq cmd `(lambda () (org-agenda-refile nil ',refile-location t)))
-	   (setq redo-at-end t)))
-
-	(?t
-	 (let ((state (completing-read
-		       "Todo state: "
-		       (with-current-buffer (marker-buffer (car entries))
-			 (mapcar #'list org-todo-keywords-1)))))
-	   (setq cmd `(lambda ()
-			(let ((org-inhibit-blocking t)
-			      (org-inhibit-logging 'note))
-			  (org-agenda-todo ,state))))))
-
-	((and (or ?- ?+) action)
-	 (let ((tag (completing-read
-		     (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
-		     (with-current-buffer (marker-buffer (car entries))
-		       (delq nil
-			     (mapcar (lambda (x) (and (stringp (car x)) x))
-				     org-current-tag-alist))))))
-	   (setq cmd
-		 `(lambda ()
-		    (org-agenda-set-tags ,tag
-					 ,(if (eq action ?+) ''on ''off))))))
-
-	((and (or ?s ?d) c)
-	 (let* ((schedule? (eq c ?s))
-		(prompt (if schedule? "(Re)Schedule to" "(Re)Set Deadline to"))
-		(time
-		 (and (not arg)
-		      (let ((new (org-read-date
-				  nil nil nil prompt org-overriding-default-time)))
-			;; A "double plus" answer applies to every
-			;; scheduled time.  Do not turn it into
-			;; a fixed date yet.
-			(if (string-match-p "\\`[ \t]*\\+\\+"
-					    org-read-date-final-answer)
-			    org-read-date-final-answer
-			  new)))))
-	   ;; Make sure to not prompt for a note when bulk
-	   ;; rescheduling/resetting deadline as Org cannot cope with
-	   ;; simultaneous notes.  Besides, it could be annoying
-	   ;; depending on the number of marked items.
-	   (setq cmd
-		 (if schedule?
-		     `(lambda ()
-			(let ((org-log-reschedule
-			       (and org-log-reschedule 'time)))
-			  (org-agenda-schedule arg ,time)))
-		   `(lambda ()
-		      (let ((org-log-redeadline (and org-log-redeadline 'time)))
-			(org-agenda-deadline arg ,time)))))))
-
-	(?S
-	 (unless (org-agenda-check-type nil 'agenda 'todo)
-	   (user-error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type))
-	 (let ((days (read-number
-		      (format "Scatter tasks across how many %sdays: "
-			      (if arg "week" ""))
-		      7)))
-	   (setq cmd
-		 `(lambda ()
-		    (let ((distance (1+ (random ,days))))
-		      (when arg
-			(let ((dist distance)
-			      (day-of-week
-			       (calendar-day-of-week
-				(calendar-gregorian-from-absolute (org-today)))))
-			  (dotimes (i (1+ dist))
-			    (while (member day-of-week org-agenda-weekend-days)
-			      (cl-incf distance)
-			      (cl-incf day-of-week)
-			      (when (= day-of-week 7)
-				(setq day-of-week 0)))
-			    (cl-incf day-of-week)
-			    (when (= day-of-week 7)
-			      (setq day-of-week 0)))))
-		      ;; Silently fail when try to replan a sexp entry.
-		      (ignore-errors
-			(let* ((date (calendar-gregorian-from-absolute
-				      (+ (org-today) distance)))
-			       (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
-						  (nth 2 date))))
-			  (org-agenda-schedule nil time))))))))
-
-	(?f
-	 (setq cmd
-	       (intern
-		(completing-read "Function: " obarray #'fboundp t nil nil))))
-
-	(action
-	 (pcase (assoc action org-agenda-bulk-custom-functions)
-	   (`(,_ ,f) (setq cmd f) (setq redo-at-end t))
-	   (_ (user-error "Invalid bulk action: %c" action)))))
-
-      ;; Sort the markers, to make sure that parents are handled
-      ;; before children.
-      (setq entries (sort entries
-			  (lambda (a b)
-			    (cond
-			     ((eq (marker-buffer a) (marker-buffer b))
-			      (< (marker-position a) (marker-position b)))
-			     (t
-			      (string< (buffer-name (marker-buffer a))
-				       (buffer-name (marker-buffer b))))))))
-
-      ;; Now loop over all markers and apply CMD.
-      (let ((processed 0)
-	    (skipped 0))
-	(dolist (e entries)
-	  (let ((pos (text-property-any (point-min) (point-max) 'org-hd-marker e)))
-	    (if (not pos)
-		(progn (message "Skipping removed entry at %s" e)
-		       (cl-incf skipped))
-	      (goto-char pos)
-	      (let (org-loop-over-headlines-in-active-region) (funcall cmd))
-	      ;; `post-command-hook' is not run yet.  We make sure any
-	      ;; pending log note is processed.
-	      (when (or (memq 'org-add-log-note (default-value 'post-command-hook))
-			(memq 'org-add-log-note post-command-hook))
-		(org-add-log-note))
-	      (cl-incf processed))))
-	(when redo-at-end (org-agenda-redo))
-	(unless org-agenda-persistent-marks (org-agenda-bulk-unmark-all))
-	(message "Acted on %d entries%s%s"
-		 processed
-		 (if (= skipped 0)
-		     ""
-		   (format ", skipped %d (disappeared before their turn)"
-			   skipped))
-		 (if (not org-agenda-persistent-marks) "" " (kept marked)"))))))
-
-(defun org-agenda-capture (&optional with-time)
-  "Call `org-capture' with the date at point.
-With a `C-1' prefix, use the HH:MM value at point (if any) or the
-current HH:MM time."
-  (interactive "P")
-  (if (not (eq major-mode 'org-agenda-mode))
-      (user-error "You cannot do this outside of agenda buffers")
-    (let ((org-overriding-default-time
-	   (org-get-cursor-date (equal with-time 1))))
-      (call-interactively 'org-capture))))
-
-;;; Dragging agenda lines forward/backward
-
-(defun org-agenda-reapply-filters ()
-  "Re-apply all agenda filters."
-  (mapcar
-   (lambda(f) (when (car f) (org-agenda-filter-apply (car f) (cadr f) t)))
-   `((,org-agenda-tag-filter tag)
-     (,org-agenda-category-filter category)
-     (,org-agenda-regexp-filter regexp)
-     (,org-agenda-effort-filter effort)
-     (,(get 'org-agenda-tag-filter :preset-filter) tag)
-     (,(get 'org-agenda-category-filter :preset-filter) category)
-     (,(get 'org-agenda-effort-filter :preset-filter) effort)
-     (,(get 'org-agenda-regexp-filter :preset-filter) regexp))))
-
-(defun org-agenda-drag-line-forward (arg &optional backward)
-  "Drag an agenda line forward by ARG lines.
-When the optional argument `backward' is non-nil, move backward."
-  (interactive "p")
-  (let ((inhibit-read-only t) lst line)
-    (if (or (not (get-text-property (point) 'txt))
-	    (save-excursion
-	      (dotimes (n arg)
-		(move-beginning-of-line (if backward 0 2))
-		(push (not (get-text-property (point) 'txt)) lst))
-	      (delq nil lst)))
-	(message "Cannot move line forward")
-      (let ((end (save-excursion (move-beginning-of-line 2) (point))))
-	(move-beginning-of-line 1)
-	(setq line (buffer-substring (point) end))
-	(delete-region (point) end)
-	(move-beginning-of-line (funcall (if backward '1- '1+) arg))
-	(insert line)
-	(org-agenda-reapply-filters)
-	(org-agenda-mark-clocking-task)
-	(move-beginning-of-line 0)))))
-
-(defun org-agenda-drag-line-backward (arg)
-  "Drag an agenda line backward by ARG lines."
-  (interactive "p")
-  (org-agenda-drag-line-forward arg t))
-
-;;; Flagging notes
-
-(defun org-agenda-show-the-flagging-note ()
-  "Display the flagging note in the other window.
-When called a second time in direct sequence, offer to remove the FLAGGING
-tag and (if present) the flagging note."
-  (interactive)
-  (let ((hdmarker (org-get-at-bol 'org-hd-marker))
-	(win (selected-window))
-	note heading newhead)
-    (unless hdmarker
-      (user-error "No linked entry at point"))
-    (if (and (eq this-command last-command)
-	     (y-or-n-p "Unflag and remove any flagging note? "))
-	(progn
-	  (org-agenda-remove-flag hdmarker)
-	  (let ((win (get-buffer-window "*Flagging Note*")))
-	    (and win (delete-window win)))
-	  (message "Entry unflagged"))
-      (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
-      (unless note
-	(user-error "No flagging note"))
-      (org-kill-new note)
-      (org-switch-to-buffer-other-window "*Flagging Note*")
-      (erase-buffer)
-      (insert note)
-      (goto-char (point-min))
-      (while (re-search-forward "\\\\n" nil t)
-	(replace-match "\n" t t))
-      (goto-char (point-min))
-      (select-window win)
-      (message "%s" (substitute-command-keys "Flagging note pushed to \
-kill ring.  Press `\\[org-agenda-show-the-flagging-note]' again to remove \
-tag and note")))))
-
-(defun org-agenda-remove-flag (marker)
-  "Remove the FLAGGED tag and any flagging note in the entry."
-  (let (newhead)
-    (org-with-point-at marker
-      (org-toggle-tag "FLAGGED" 'off)
-      (org-entry-delete nil "THEFLAGGINGNOTE")
-      (setq newhead (org-get-heading)))
-    (org-agenda-change-all-lines newhead marker)
-    (message "Entry unflagged")))
-
-(defun org-agenda-get-any-marker (&optional pos)
-  (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
-      (get-text-property (or pos (point-at-bol)) 'org-marker)))
-
-;;; Appointment reminders
-
-(defvar appt-time-msg-list) ; defined in appt.el
-
-;;;###autoload
-(defun org-agenda-to-appt (&optional refresh filter &rest args)
-  "Activate appointments found in `org-agenda-files'.
-
-With a `\\[universal-argument]' prefix, refresh the list of \
-appointments.
-
-If FILTER is t, interactively prompt the user for a regular
-expression, and filter out entries that don't match it.
-
-If FILTER is a string, use this string as a regular expression
-for filtering entries out.
-
-If FILTER is a function, filter out entries against which
-calling the function returns nil.  This function takes one
-argument: an entry from `org-agenda-get-day-entries'.
-
-FILTER can also be an alist with the car of each cell being
-either `headline' or `category'.  For example:
-
-  \\='((headline \"IMPORTANT\")
-    (category \"Work\"))
-
-will only add headlines containing IMPORTANT or headlines
-belonging to the \"Work\" category.
-
-ARGS are symbols indicating what kind of entries to consider.
-By default `org-agenda-to-appt' will use :deadline*, :scheduled*
-\(i.e., deadlines and scheduled items with a hh:mm specification)
-and :timestamp entries.  See the docstring of `org-diary' for
-details and examples.
-
-If an entry has a APPT_WARNTIME property, its value will be used
-to override `appt-message-warning-time'."
-  (interactive "P")
-  (if refresh (setq appt-time-msg-list nil))
-  (if (eq filter t)
-      (setq filter (read-from-minibuffer "Regexp filter: ")))
-  (let* ((cnt 0)                        ; count added events
-         (scope (or args '(:deadline* :scheduled* :timestamp)))
-         (org-agenda-new-buffers nil)
-         (org-deadline-warning-days 0)
-         ;; Do not use `org-today' here because appt only takes
-         ;; time and without date as argument, so it may pass wrong
-         ;; information otherwise
-         (today (org-date-to-gregorian
-                 (time-to-days (current-time))))
-         (org-agenda-restrict nil)
-         (files (org-agenda-files 'unrestricted)) entries file
-         (org-agenda-buffer nil))
-    ;; Get all entries which may contain an appt
-    (org-agenda-prepare-buffers files)
-    (while (setq file (pop files))
-      (setq entries
-            (delq nil
-                  (append entries
-                          (apply 'org-agenda-get-day-entries
-                                 file today scope)))))
-    ;; Map thru entries and find if we should filter them out
-    (mapc
-     (lambda (x)
-       (let* ((evt (org-trim
-                    (replace-regexp-in-string
-                     org-bracket-link-regexp "\\3"
-                     (or (get-text-property 1 'txt x) ""))))
-              (cat (get-text-property (1- (length x)) 'org-category x))
-              (tod (get-text-property 1 'time-of-day x))
-              (ok (or (null filter)
-                      (and (stringp filter) (string-match filter evt))
-                      (and (functionp filter) (funcall filter x))
-                      (and (listp filter)
-                           (let ((cat-filter (cadr (assq 'category filter)))
-                                 (evt-filter (cadr (assq 'headline filter))))
-                             (or (and (stringp cat-filter)
-                                      (string-match cat-filter cat))
-                                 (and (stringp evt-filter)
-                                      (string-match evt-filter evt)))))))
-              (wrn (get-text-property 1 'warntime x)))
-         ;; FIXME: Shall we remove text-properties for the appt text?
-         ;; (setq evt (set-text-properties 0 (length evt) nil evt))
-         (when (and ok tod (not (string-match "\\`DONE\\|CANCELLED" evt)))
-           (setq tod (concat "00" (number-to-string tod)))
-           (setq tod (when (string-match
-                            "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
-                       (concat (match-string 1 tod) ":"
-                               (match-string 2 tod))))
-           (when (appt-add tod evt wrn)
-             (setq cnt (1+ cnt))))))
-     entries)
-    (org-release-buffers org-agenda-new-buffers)
-    (if (eq cnt 0)
-        (message "No event to add")
-      (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
-
-(defun org-agenda-today-p (date)
-  "Non nil when DATE means today.
-DATE is either a list of the form (month day year) or a number of
-days as returned by `calendar-absolute-from-gregorian' or
-`org-today'.  This function considers `org-extend-today-until'
-when defining today."
-  (eq (org-today)
-      (if (consp date) (calendar-absolute-from-gregorian date) date)))
-
-(defun org-agenda-todo-yesterday (&optional arg)
-  "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
-  (interactive "P")
-  (let* ((org-use-effective-time t)
-	 (hour (nth 2 (decode-time (org-current-time))))
-         (org-extend-today-until (1+ hour)))
-    (org-agenda-todo arg)))
-
-(provide 'org-agenda)
-
-;;; org-agenda.el ends here
diff --git a/elpa/org-9.1.14/org-agenda.elc b/elpa/org-9.1.14/org-agenda.elc
deleted file mode 100644
index 6dd871e..0000000
--- a/elpa/org-9.1.14/org-agenda.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-archive.el b/elpa/org-9.1.14/org-archive.el
deleted file mode 100644
index e020ec2..0000000
--- a/elpa/org-9.1.14/org-archive.el
+++ /dev/null
@@ -1,618 +0,0 @@
-;;; org-archive.el --- Archiving for Org             -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the face definitions for Org.
-
-;;; Code:
-
-(require 'org)
-
-(declare-function org-element-type "org-element" (element))
-(declare-function org-datetree-find-date-create "org-datetree" (date &optional keep-restriction))
-(declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
-
-(defcustom org-archive-default-command 'org-archive-subtree
-  "The default archiving command."
-  :group 'org-archive
-  :type '(choice
-	  (const org-archive-subtree)
-	  (const org-archive-to-archive-sibling)
-	  (const org-archive-set-tag)))
-
-(defcustom org-archive-reversed-order nil
-  "Non-nil means make the tree first child under the archive heading, not last."
-  :group 'org-archive
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-archive-sibling-heading "Archive"
-  "Name of the local archive sibling that is used to archive entries locally.
-Locally means: in the tree, under a sibling.
-See `org-archive-to-archive-sibling' for more information."
-  :group 'org-archive
-  :type 'string)
-
-(defcustom org-archive-mark-done nil
-  "Non-nil means mark entries as DONE when they are moved to the archive file.
-This can be a string to set the keyword to use.  When non-nil, Org will
-use the first keyword in its list that means done."
-  :group 'org-archive
-  :type '(choice
-	  (const :tag "No" nil)
-	  (const :tag "Yes" t)
-	  (string :tag "Use this keyword")))
-
-(defcustom org-archive-stamp-time t
-  "Non-nil means add a time stamp to entries moved to an archive file.
-This variable is obsolete and has no effect anymore, instead add or remove
-`time' from the variable `org-archive-save-context-info'."
-  :group 'org-archive
-  :type 'boolean)
-
-(defcustom org-archive-file-header-format "\nArchived entries from file %s\n\n"
-  "The header format string for newly created archive files.
-When nil, no header will be inserted.
-When a string, a %s formatter will be replaced by the file name."
-  :group 'org-archive
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-archive-subtree-add-inherited-tags 'infile
-  "Non-nil means append inherited tags when archiving a subtree."
-  :group 'org-archive
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "When archiving a subtree to the same file" infile)
-	  (const :tag "Always" t)))
-
-(defcustom org-archive-save-context-info '(time file olpath category todo itags)
-  "Parts of context info that should be stored as properties when archiving.
-When a subtree is moved to an archive file, it loses information given by
-context, like inherited tags, the category, and possibly also the TODO
-state (depending on the variable `org-archive-mark-done').
-This variable can be a list of any of the following symbols:
-
-time       The time of archiving.
-file       The file where the entry originates.
-ltags      The local tags, in the headline of the subtree.
-itags      The tags the subtree inherits from further up the hierarchy.
-todo       The pre-archive TODO state.
-category   The category, taken from file name or #+CATEGORY lines.
-olpath     The outline path to the item.  These are all headlines above
-           the current item, separated by /, like a file path.
-
-For each symbol present in the list, a property will be created in
-the archived entry, with a prefix \"ARCHIVE_\", to remember this
-information."
-  :group 'org-archive
-  :type '(set :greedy t
-	      (const :tag "Time" time)
-	      (const :tag "File" file)
-	      (const :tag "Category" category)
-	      (const :tag "TODO state" todo)
-	      (const :tag "Priority" priority)
-	      (const :tag "Inherited tags" itags)
-	      (const :tag "Outline path" olpath)
-	      (const :tag "Local tags" ltags)))
-
-(defvar org-archive-hook nil
-  "Hook run after successfully archiving a subtree.
-Hook functions are called with point on the subtree in the
-original file.  At this stage, the subtree has been added to the
-archive location, but not yet deleted from the original file.")
-
-(defun org-get-local-archive-location ()
-  "Get the archive location applicable at point."
-  (let ((re "^[ \t]*#\\+ARCHIVE:[ \t]+\\(\\S-.*\\S-\\)[ \t]*$")
-	prop)
-    (save-excursion
-      (save-restriction
-	(widen)
-	(setq prop (org-entry-get nil "ARCHIVE" 'inherit))
-	(cond
-	 ((and prop (string-match "\\S-" prop))
-	  prop)
-	 ((or (re-search-backward re nil t)
-	      (re-search-forward re nil t))
-	  (match-string 1))
-	 (t org-archive-location))))))
-
-;;;###autoload
-(defun org-add-archive-files (files)
-  "Splice the archive files into the list of files.
-This implies visiting all these files and finding out what the
-archive file is."
-  (org-uniquify
-   (apply
-    'append
-    (mapcar
-     (lambda (f)
-       (if (not (file-exists-p f))
-	   nil
-	 (with-current-buffer (org-get-agenda-file-buffer f)
-	   (cons f (org-all-archive-files)))))
-     files))))
-
-(defun org-all-archive-files ()
-  "Get a list of all archive files used in the current buffer."
-  (let ((case-fold-search t)
-	files)
-    (org-with-wide-buffer
-     (goto-char (point-min))
-     (while (re-search-forward
-	     "^[ \t]*\\(#\\+\\|:\\)ARCHIVE:[ \t]+\\(.*\\)"
-	     nil t)
-       (when (save-match-data
-	       (if (eq (match-string 1) ":") (org-at-property-p)
-		 (eq (org-element-type (org-element-at-point)) 'keyword)))
-	 (let ((file (org-extract-archive-file
-		      (match-string-no-properties 2))))
-	   (when (and (org-string-nw-p file) (file-exists-p file))
-	     (push file files))))))
-    (setq files (nreverse files))
-    (let ((file (org-extract-archive-file)))
-      (when (and (org-string-nw-p file) (file-exists-p file))
-	(push file files)))
-    files))
-
-(defun org-extract-archive-file (&optional location)
-  "Extract and expand the file name from archive LOCATION.
-if LOCATION is not given, the value of `org-archive-location' is used."
-  (setq location (or location org-archive-location))
-  (if (string-match "\\(.*\\)::\\(.*\\)" location)
-      (if (= (match-beginning 1) (match-end 1))
-	  (buffer-file-name (buffer-base-buffer))
-	(expand-file-name
-	 (format (match-string 1 location)
-		 (file-name-nondirectory
-		  (buffer-file-name (buffer-base-buffer))))))))
-
-(defun org-extract-archive-heading (&optional location)
-  "Extract the heading from archive LOCATION.
-if LOCATION is not given, the value of `org-archive-location' is used."
-  (setq location (or location org-archive-location))
-  (if (string-match "\\(.*\\)::\\(.*\\)" location)
-      (format (match-string 2 location)
-	      (file-name-nondirectory
-	       (buffer-file-name (buffer-base-buffer))))))
-
-;;;###autoload
-(defun org-archive-subtree (&optional find-done)
-  "Move the current subtree to the archive.
-The archive can be a certain top-level heading in the current
-file, or in a different file.  The tree will be moved to that
-location, the subtree heading be marked DONE, and the current
-time will be added.
-
-When called with a single prefix argument FIND-DONE, find whole
-trees without any open TODO items and archive them (after getting
-confirmation from the user).  When called with a double prefix
-argument, find whole trees with timestamps before today and
-archive them (after getting confirmation from the user).  If the
-cursor is not at a headline when these commands are called, try
-all level 1 trees.  If the cursor is on a headline, only try the
-direct children of this heading."
-  (interactive "P")
-  (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
-      (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
-		    'region-start-level 'region))
-	    org-loop-over-headlines-in-active-region)
-	(org-map-entries
-	 `(progn (setq org-map-continue-from (progn (org-back-to-heading) (point)))
-		 (org-archive-subtree ,find-done))
-	 org-loop-over-headlines-in-active-region
-	 cl (if (org-invisible-p) (org-end-of-subtree nil t))))
-    (cond
-     ((equal find-done '(4))  (org-archive-all-done))
-     ((equal find-done '(16)) (org-archive-all-old))
-     (t
-      ;; Save all relevant TODO keyword-relatex variables
-      (let* ((tr-org-todo-keywords-1 org-todo-keywords-1)
-	     (tr-org-todo-kwd-alist org-todo-kwd-alist)
-	     (tr-org-done-keywords org-done-keywords)
-	     (tr-org-todo-regexp org-todo-regexp)
-	     (tr-org-todo-line-regexp org-todo-line-regexp)
-	     (tr-org-odd-levels-only org-odd-levels-only)
-	     (this-buffer (current-buffer))
-	     (time (format-time-string
-		    (substring (cdr org-time-stamp-formats) 1 -1)))
-	     (file (abbreviate-file-name
-		    (or (buffer-file-name (buffer-base-buffer))
-			(error "No file associated to buffer"))))
-	     (location (org-get-local-archive-location))
-	     (afile (or (org-extract-archive-file location)
-			(error "Invalid `org-archive-location'")))
-	     (heading (org-extract-archive-heading location))
-	     (infile-p (equal file (abbreviate-file-name (or afile ""))))
-	     (newfile-p (and (org-string-nw-p afile)
-			     (not (file-exists-p afile))))
-	     (buffer (cond ((not (org-string-nw-p afile)) this-buffer)
-			   ((find-buffer-visiting afile))
-			   ((find-file-noselect afile))
-			   (t (error "Cannot access file \"%s\"" afile))))
-	     level datetree-date datetree-subheading-p)
-	(when (string-match "\\`datetree/" heading)
-	  ;; Replace with ***, to represent the 3 levels of headings the
-	  ;; datetree has.
-	  (setq heading (replace-regexp-in-string "\\`datetree/" "***" heading))
-	  (setq datetree-subheading-p (> (length heading) 3))
-	  (setq datetree-date (org-date-to-gregorian
-			       (or (org-entry-get nil "CLOSED" t) time))))
-	(if (and (> (length heading) 0)
-		 (string-match "^\\*+" heading))
-	    (setq level (match-end 0))
-	  (setq heading nil level 0))
-	(save-excursion
-	  (org-back-to-heading t)
-	  ;; Get context information that will be lost by moving the
-	  ;; tree.  See `org-archive-save-context-info'.
-	  (let* ((all-tags (org-get-tags-at))
-		 (local-tags (org-get-tags))
-		 (inherited-tags (org-delete-all local-tags all-tags))
-		 (context
-		  `((category . ,(org-get-category nil 'force-refresh))
-		    (file . ,file)
-		    (itags . ,(mapconcat #'identity inherited-tags " "))
-		    (ltags . ,(mapconcat #'identity local-tags " "))
-		    (olpath . ,(mapconcat #'identity
-					  (org-get-outline-path)
-					  "/"))
-		    (time . ,time)
-		    (todo . ,(org-entry-get (point) "TODO")))))
-	    ;; We first only copy, in case something goes wrong
-	    ;; we need to protect `this-command', to avoid kill-region sets it,
-	    ;; which would lead to duplication of subtrees
-	    (let (this-command) (org-copy-subtree 1 nil t))
-	    (set-buffer buffer)
-	    ;; Enforce Org mode for the archive buffer
-	    (if (not (derived-mode-p 'org-mode))
-		;; Force the mode for future visits.
-		(let ((org-insert-mode-line-in-empty-file t)
-		      (org-inhibit-startup t))
-		  (call-interactively 'org-mode)))
-	    (when (and newfile-p org-archive-file-header-format)
-	      (goto-char (point-max))
-	      (insert (format org-archive-file-header-format
-			      (buffer-file-name this-buffer))))
-	    (when datetree-date
-	      (require 'org-datetree)
-	      (org-datetree-find-date-create datetree-date)
-	      (org-narrow-to-subtree))
-	    ;; Force the TODO keywords of the original buffer
-	    (let ((org-todo-line-regexp tr-org-todo-line-regexp)
-		  (org-todo-keywords-1 tr-org-todo-keywords-1)
-		  (org-todo-kwd-alist tr-org-todo-kwd-alist)
-		  (org-done-keywords tr-org-done-keywords)
-		  (org-todo-regexp tr-org-todo-regexp)
-		  (org-todo-line-regexp tr-org-todo-line-regexp)
-		  (org-odd-levels-only
-		   (if (local-variable-p 'org-odd-levels-only (current-buffer))
-		       org-odd-levels-only
-		     tr-org-odd-levels-only)))
-	      (goto-char (point-min))
-	      (outline-show-all)
-	      (if (and heading (not (and datetree-date (not datetree-subheading-p))))
-		  (progn
-		    (if (re-search-forward
-			 (concat "^" (regexp-quote heading)
-				 "[ \t]*\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\($\\|\r\\)")
-			 nil t)
-			(goto-char (match-end 0))
-		      ;; Heading not found, just insert it at the end
-		      (goto-char (point-max))
-		      (or (bolp) (insert "\n"))
-		      ;; datetrees don't need too much spacing
-		      (insert (if datetree-date "" "\n") heading "\n")
-		      (end-of-line 0))
-		    ;; Make the subtree visible
-		    (outline-show-subtree)
-		    (if org-archive-reversed-order
-			(progn
-			  (org-back-to-heading t)
-			  (outline-next-heading))
-		      (org-end-of-subtree t))
-		    (skip-chars-backward " \t\r\n")
-		    (and (looking-at "[ \t\r\n]*")
-			 ;; datetree archives don't need so much spacing.
-			 (replace-match (if datetree-date "\n" "\n\n"))))
-		;; No specific heading, just go to end of file, or to the
-		;; beginning, depending on `org-archive-reversed-order'.
-		(if org-archive-reversed-order
-		    (progn
-		      (goto-char (point-min))
-		      (unless (org-at-heading-p) (outline-next-heading))
-		      (insert "\n") (backward-char 1))
-		  (goto-char (point-max))
-		  ;; Subtree narrowing can let the buffer end on
-		  ;; a headline.  `org-paste-subtree' then deletes it.
-		  ;; To prevent this, make sure visible part of buffer
-		  ;; always terminates on a new line, while limiting
-		  ;; number of blank lines in a date tree.
-		  (unless (and datetree-date (bolp)) (insert "\n"))))
-	      ;; Paste
-	      (org-paste-subtree (org-get-valid-level level (and heading 1)))
-	      ;; Shall we append inherited tags?
-	      (and inherited-tags
-		   (or (and (eq org-archive-subtree-add-inherited-tags 'infile)
-			    infile-p)
-		       (eq org-archive-subtree-add-inherited-tags t))
-		   (org-set-tags-to all-tags))
-	      ;; Mark the entry as done
-	      (when (and org-archive-mark-done
-			 (let ((case-fold-search nil))
-			   (looking-at org-todo-line-regexp))
-			 (or (not (match-end 2))
-			     (not (member (match-string 2) org-done-keywords))))
-		(let (org-log-done org-todo-log-states)
-		  (org-todo
-		   (car (or (member org-archive-mark-done org-done-keywords)
-			    org-done-keywords)))))
-
-	      ;; Add the context info.
-	      (dolist (item org-archive-save-context-info)
-		(let ((value (cdr (assq item context))))
-		  (when (org-string-nw-p value)
-		    (org-entry-put
-		     (point)
-		     (concat "ARCHIVE_" (upcase (symbol-name item)))
-		     value))))
-	      (widen))))
-	;; Here we are back in the original buffer.  Everything seems
-	;; to have worked.  So now run hooks, cut the tree and finish
-	;; up.
-	(run-hooks 'org-archive-hook)
-	(let (this-command) (org-cut-subtree))
-	(when (featurep 'org-inlinetask)
-	  (org-inlinetask-remove-END-maybe))
-	(setq org-markers-to-move nil)
-	(message "Subtree archived %s"
-		 (if (eq this-buffer buffer)
-		     (concat "under heading: " heading)
-		   (concat "in file: " (abbreviate-file-name afile)))))))
-    (org-reveal)
-    (if (looking-at "^[ \t]*$")
-	(outline-next-visible-heading 1))))
-
-;;;###autoload
-(defun org-archive-to-archive-sibling ()
-  "Archive the current heading by moving it under the archive sibling.
-
-The archive sibling is a sibling of the heading with the heading name
-`org-archive-sibling-heading' and an `org-archive-tag' tag.  If this
-sibling does not exist, it will be created at the end of the subtree.
-
-Archiving time is retained in the ARCHIVE_TIME node property."
-  (interactive)
-  (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
-      (let ((cl (when (eq org-loop-over-headlines-in-active-region 'start-level)
-		  'region-start-level 'region))
-	    org-loop-over-headlines-in-active-region)
-	(org-map-entries
-	 '(progn (setq org-map-continue-from
-		       (progn (org-back-to-heading)
-			      (if (looking-at (concat "^.*:" org-archive-tag ":.*$"))
-			      	  (org-end-of-subtree t)
-				(point))))
-		 (when (org-at-heading-p)
-		   (org-archive-to-archive-sibling)))
-	 org-loop-over-headlines-in-active-region
-	 cl (if (org-invisible-p) (org-end-of-subtree nil t))))
-    (save-restriction
-      (widen)
-      (let (b e pos leader level)
-	(org-back-to-heading t)
-	(looking-at org-outline-regexp)
-	(setq leader (match-string 0)
-	      level (funcall outline-level))
-	(setq pos (point-marker))
-	(condition-case nil
-	    (outline-up-heading 1 t)
-	  (error (setq e (point-max)) (goto-char (point-min))))
-	(setq b (point))
-	(unless e
-	  (condition-case nil
-	      (org-end-of-subtree t t)
-	    (error (goto-char (point-max))))
-	  (setq e (point)))
-	(goto-char b)
-	(unless (re-search-forward
-		 (concat "^" (regexp-quote leader)
-			 "[ \t]*"
-			 org-archive-sibling-heading
-			 "[ \t]*:"
-			 org-archive-tag ":") e t)
-	  (goto-char e)
-	  (or (bolp) (newline))
-	  (insert leader org-archive-sibling-heading "\n")
-	  (beginning-of-line 0)
-	  (org-toggle-tag org-archive-tag 'on))
-	(beginning-of-line 1)
-	(if org-archive-reversed-order
-	    (outline-next-heading)
-	  (org-end-of-subtree t t))
-	(save-excursion
-	  (goto-char pos)
-	  (let ((this-command this-command)) (org-cut-subtree)))
-	(org-paste-subtree (org-get-valid-level level 1))
-	(org-set-property
-	 "ARCHIVE_TIME"
-	 (format-time-string
-	  (substring (cdr org-time-stamp-formats) 1 -1)))
-	(outline-up-heading 1 t)
-	(outline-hide-subtree)
-	(org-cycle-show-empty-lines 'folded)
-	(goto-char pos)))
-    (org-reveal)
-    (if (looking-at "^[ \t]*$")
-	(outline-next-visible-heading 1))))
-
-(defun org-archive-all-done (&optional tag)
-  "Archive sublevels of the current tree without open TODO items.
-If the cursor is not on a headline, try all level 1 trees.  If
-it is on a headline, try all direct children.
-When TAG is non-nil, don't move trees, but mark them with the ARCHIVE tag."
-  (org-archive-all-matches
-   (lambda (_beg end)
-     (let ((case-fold-search nil))
-       (unless (re-search-forward org-not-done-heading-regexp end t)
-	 "no open TODO items")))
-   tag))
-
-(defun org-archive-all-old (&optional tag)
-  "Archive sublevels of the current tree with timestamps prior to today.
-If the cursor is not on a headline, try all level 1 trees.  If
-it is on a headline, try all direct children.
-When TAG is non-nil, don't move trees, but mark them with the ARCHIVE tag."
-  (org-archive-all-matches
-   (lambda (_beg end)
-     (let (ts)
-       (and (re-search-forward org-ts-regexp end t)
-	    (setq ts (match-string 0))
-	    (< (org-time-stamp-to-now ts) 0)
-	    (if (not (looking-at
-		      (concat "--\\(" org-ts-regexp "\\)")))
-		(concat "old timestamp " ts)
-	      (setq ts (concat "old timestamp " ts (match-string 0)))
-	      (and (< (org-time-stamp-to-now (match-string 1)) 0)
-		   ts)))))
-   tag))
-
-(defun org-archive-all-matches (predicate &optional tag)
-  "Archive sublevels of the current tree that match PREDICATE.
-
-PREDICATE is a function of two arguments, BEG and END, which
-specify the beginning and end of the headline being considered.
-It is called with point positioned at BEG.  The headline will be
-archived if PREDICATE returns non-nil.  If the return value of
-PREDICATE is a string, it should describe the reason for
-archiving the heading.
-
-If the cursor is not on a headline, try all level 1 trees.  If it
-is on a headline, try all direct children.  When TAG is non-nil,
-don't move trees, but mark them with the ARCHIVE tag."
-  (let ((rea (concat ".*:" org-archive-tag ":")) re1
-	(begm (make-marker))
-	(endm (make-marker))
-	(question (if tag "Set ARCHIVE tag? "
-		    "Move subtree to archive? "))
-	reason beg end (cntarch 0))
-    (if (org-at-heading-p)
-	(progn
-	  (setq re1 (concat "^" (regexp-quote
-				 (make-string
-				  (+ (- (match-end 0) (match-beginning 0) 1)
-				     (if org-odd-levels-only 2 1))
-				  ?*))
-			    " "))
-	  (move-marker begm (point))
-	  (move-marker endm (org-end-of-subtree t)))
-      (setq re1 "^* ")
-      (move-marker begm (point-min))
-      (move-marker endm (point-max)))
-    (save-excursion
-      (goto-char begm)
-      (while (re-search-forward re1 endm t)
-	(setq beg (match-beginning 0)
-	      end (save-excursion (org-end-of-subtree t) (point)))
-	(goto-char beg)
-	(if (not (setq reason (funcall predicate beg end)))
-	    (goto-char end)
-	  (goto-char beg)
-	  (if (and (or (not tag) (not (looking-at rea)))
-		   (y-or-n-p
-		    (if (stringp reason)
-			(concat question "(" reason ")")
-		      question)))
-	      (progn
-		(if tag
-		    (org-toggle-tag org-archive-tag 'on)
-		  (org-archive-subtree))
-		(setq cntarch (1+ cntarch)))
-	    (goto-char end)))))
-    (message "%d trees archived" cntarch)))
-
-;;;###autoload
-(defun org-toggle-archive-tag (&optional find-done)
-  "Toggle the archive tag for the current headline.
-With prefix ARG, check all children of current headline and offer tagging
-the children that do not contain any open TODO items."
-  (interactive "P")
-  (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
-      (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
-		    'region-start-level 'region))
-	    org-loop-over-headlines-in-active-region)
-	(org-map-entries
-	 `(org-toggle-archive-tag ,find-done)
-	 org-loop-over-headlines-in-active-region
-	 cl (if (org-invisible-p) (org-end-of-subtree nil t))))
-    (if find-done
-	(org-archive-all-done 'tag)
-      (let (set)
-	(save-excursion
-	  (org-back-to-heading t)
-	  (setq set (org-toggle-tag org-archive-tag))
-	  (when set (org-flag-subtree t)))
-	(and set (beginning-of-line 1))
-	(message "Subtree %s" (if set "archived" "unarchived"))))))
-
-(defun org-archive-set-tag ()
-  "Set the ARCHIVE tag."
-  (interactive)
-  (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
-      (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
-		    'region-start-level 'region))
-	    org-loop-over-headlines-in-active-region)
-	(org-map-entries
-	 'org-archive-set-tag
-	 org-loop-over-headlines-in-active-region
-	 cl (if (org-invisible-p) (org-end-of-subtree nil t))))
-    (org-toggle-tag org-archive-tag 'on)))
-
-;;;###autoload
-(defun org-archive-subtree-default ()
-  "Archive the current subtree with the default command.
-This command is set with the variable `org-archive-default-command'."
-  (interactive)
-  (call-interactively org-archive-default-command))
-
-;;;###autoload
-(defun org-archive-subtree-default-with-confirmation ()
-  "Archive the current subtree with the default command.
-This command is set with the variable `org-archive-default-command'."
-  (interactive)
-  (if (y-or-n-p "Archive this subtree or entry? ")
-      (call-interactively org-archive-default-command)
-    (error "Abort")))
-
-(provide 'org-archive)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-archive.el ends here
diff --git a/elpa/org-9.1.14/org-archive.elc b/elpa/org-9.1.14/org-archive.elc
deleted file mode 100644
index c227315..0000000
--- a/elpa/org-9.1.14/org-archive.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-attach.el b/elpa/org-9.1.14/org-attach.el
deleted file mode 100644
index 86516e2..0000000
--- a/elpa/org-9.1.14/org-attach.el
+++ /dev/null
@@ -1,589 +0,0 @@
-;;; org-attach.el --- Manage file attachments to Org tasks -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
-
-;; Author: John Wiegley <johnw@newartisans.com>
-;; Keywords: org data task
-
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; See the Org manual for information on how to use it.
-;;
-;; Attachments are managed in a special directory called "data", which
-;; lives in the same directory as the org file itself.  If this data
-;; directory is initialized as a Git repository, then org-attach will
-;; automatically commit changes when it sees them.
-;;
-;; Attachment directories are identified using a UUID generated for the
-;; task which has the attachments.  These are added as property to the
-;; task when necessary, and should not be deleted or changed by the
-;; user, ever.  UUIDs are generated by a mechanism defined in the variable
-;; `org-id-method'.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org)
-(require 'org-id)
-(require 'vc-git)
-
-(declare-function dired-dwim-target-directory "dired-aux")
-
-(defgroup org-attach nil
-  "Options concerning entry attachments in Org mode."
-  :tag "Org Attach"
-  :group 'org)
-
-(defcustom org-attach-directory "data/"
-  "The directory where attachments are stored.
-If this is a relative path, it will be interpreted relative to the directory
-where the Org file lives."
-  :group 'org-attach
-  :type 'directory)
-
-(defcustom org-attach-commit t
-  "If non-nil commit attachments with git.
-This is only done if the Org file is in a git repository."
-  :group 'org-attach
-  :type 'boolean
-  :version "26.1"
-  :package-version '(Org . "9.0"))
-
-(defcustom org-attach-git-annex-cutoff (* 32 1024)
-  "If non-nil, files larger than this will be annexed instead of stored."
-  :group 'org-attach
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "None" nil)
-	  (integer :tag "Bytes")))
-
-(defcustom org-attach-auto-tag "ATTACH"
-  "Tag that will be triggered automatically when an entry has an attachment."
-  :group 'org-attach
-  :type '(choice
-	  (const :tag "None" nil)
-	  (string :tag "Tag")))
-
-(defcustom org-attach-file-list-property "Attachments"
-  "The property used to keep a list of attachment belonging to this entry.
-This is not really needed, so you may set this to nil if you don't want it.
-Also, for entries where children inherit the directory, the list of
-attachments is not kept in this property."
-  :group 'org-attach
-  :type '(choice
-	  (const :tag "None" nil)
-	  (string :tag "Tag")))
-
-(defcustom org-attach-method 'cp
-  "The preferred method to attach a file.
-Allowed values are:
-
-mv    rename the file to move it into the attachment directory
-cp    copy the file
-ln    create a hard link.  Note that this is not supported
-      on all systems, and then the result is not defined.
-lns   create a symbol link.  Note that this is not supported
-      on all systems, and then the result is not defined."
-  :group 'org-attach
-  :type '(choice
-	  (const :tag "Copy" cp)
-	  (const :tag "Move/Rename" mv)
-	  (const :tag "Hard Link" ln)
-	  (const :tag "Symbol Link" lns)))
-
-(defcustom org-attach-expert nil
-  "Non-nil means do not show the splash buffer with the attach dispatcher."
-  :group 'org-attach
-  :type 'boolean)
-
-(defcustom org-attach-allow-inheritance t
-  "Non-nil means allow attachment directories be inherited."
-  :group 'org-attach
-  :type 'boolean)
-
-(defvar org-attach-inherited nil
-  "Indicates if the last access to the attachment directory was inherited.")
-
-(defcustom org-attach-store-link-p nil
-  "Non-nil means store a link to a file when attaching it."
-  :group 'org-attach
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Don't store link" nil)
-	  (const :tag "Link to origin location" t)
-	  (const :tag "Link to the attach-dir location" attached)))
-
-(defcustom org-attach-archive-delete nil
-  "Non-nil means attachments are deleted upon archiving a subtree.
-When set to `query', ask the user instead."
-  :group 'org-attach
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice
-	  (const :tag "Never delete attachments" nil)
-	  (const :tag "Always delete attachments" t)
-	  (const :tag "Query the user" query)))
-
-(defcustom org-attach-annex-auto-get 'ask
-  "Confirmation preference for automatically getting annex files.
-If \\='ask, prompt using `y-or-n-p'.  If t, always get.  If nil, never get."
-  :group 'org-attach
-  :package-version '(Org . "9.0")
-  :version "26.1"
-  :type '(choice
-	  (const :tag "confirm with `y-or-n-p'" ask)
-	  (const :tag "always get from annex if necessary" t)
-	  (const :tag "never get from annex" nil)))
-
-;;;###autoload
-(defun org-attach ()
-  "The dispatcher for attachment commands.
-Shows a list of commands and prompts for another key to execute a command."
-  (interactive)
-  (let (c marker)
-    (when (eq major-mode 'org-agenda-mode)
-      (setq marker (or (get-text-property (point) 'org-hd-marker)
-		       (get-text-property (point) 'org-marker)))
-      (unless marker
-	(error "No task in current line")))
-    (save-excursion
-      (when marker
-	(set-buffer (marker-buffer marker))
-	(goto-char marker))
-      (org-back-to-heading t)
-      (save-excursion
-	(save-window-excursion
-	  (unless org-attach-expert
-	    (with-output-to-temp-buffer "*Org Attach*"
-	      (princ "Select an Attachment Command:
-
-a       Select a file and attach it to the task, using `org-attach-method'.
-c/m/l/y Attach a file using copy/move/link/symbolic-link method.
-u       Attach a file from URL (downloading it).
-n       Create a new attachment, as an Emacs buffer.
-z       Synchronize the current task with its attachment
-        directory, in case you added attachments yourself.
-
-o       Open current task's attachments.
-O       Like \"o\", but force opening in Emacs.
-f       Open current task's attachment directory.
-F       Like \"f\", but force using dired in Emacs.
-
-d       Delete one attachment, you will be prompted for a file name.
-D       Delete all of a task's attachments.  A safer way is
-        to open the directory in dired and delete from there.
-
-s       Set a specific attachment directory for this entry or reset to default.
-i       Make children of the current entry inherit its attachment directory.")))
-	  (org-fit-window-to-buffer (get-buffer-window "*Org Attach*"))
-	  (message "Select command: [acmlzoOfFdD]")
-	  (setq c (read-char-exclusive))
-	  (and (get-buffer "*Org Attach*") (kill-buffer "*Org Attach*"))))
-      (cond
-       ((memq c '(?a ?\C-a)) (call-interactively 'org-attach-attach))
-       ((memq c '(?c ?\C-c))
-	(let ((org-attach-method 'cp)) (call-interactively 'org-attach-attach)))
-       ((memq c '(?m ?\C-m))
-	(let ((org-attach-method 'mv)) (call-interactively 'org-attach-attach)))
-       ((memq c '(?l ?\C-l))
-	(let ((org-attach-method 'ln)) (call-interactively 'org-attach-attach)))
-       ((memq c '(?y ?\C-y))
-	(let ((org-attach-method 'lns)) (call-interactively 'org-attach-attach)))
-       ((memq c '(?u ?\C-u))
-        (let ((org-attach-method 'url)) (call-interactively 'org-attach-url)))
-       ((memq c '(?n ?\C-n)) (call-interactively 'org-attach-new))
-       ((memq c '(?z ?\C-z)) (call-interactively 'org-attach-sync))
-       ((memq c '(?o ?\C-o)) (call-interactively 'org-attach-open))
-       ((eq c ?O)            (call-interactively 'org-attach-open-in-emacs))
-       ((memq c '(?f ?\C-f)) (call-interactively 'org-attach-reveal))
-       ((memq c '(?F))       (call-interactively 'org-attach-reveal-in-emacs))
-       ((memq c '(?d ?\C-d)) (call-interactively
-			      'org-attach-delete-one))
-       ((eq c ?D)            (call-interactively 'org-attach-delete-all))
-       ((eq c ?q)            (message "Abort"))
-       ((memq c '(?s ?\C-s)) (call-interactively
-			      'org-attach-set-directory))
-       ((memq c '(?i ?\C-i)) (call-interactively
-			      'org-attach-set-inherit))
-       (t (error "No such attachment command %c" c))))))
-
-(defun org-attach-dir (&optional create-if-not-exists-p)
-  "Return the directory associated with the current entry.
-This first checks for a local property ATTACH_DIR, and then for an inherited
-property ATTACH_DIR_INHERIT.  If neither exists, the default mechanism
-using the entry ID will be invoked to access the unique directory for the
-current entry.
-If the directory does not exist and CREATE-IF-NOT-EXISTS-P is non-nil,
-the directory and (if necessary) the corresponding ID will be created."
-  (let (attach-dir uuid)
-    (setq org-attach-inherited (org-entry-get nil "ATTACH_DIR_INHERIT"))
-    (cond
-     ((setq attach-dir (org-entry-get nil "ATTACH_DIR"))
-      (org-attach-check-absolute-path attach-dir))
-     ((and org-attach-allow-inheritance
-	   (org-entry-get nil "ATTACH_DIR_INHERIT" t))
-      (setq attach-dir
-	    (org-with-wide-buffer
-	     (if (marker-position org-entry-property-inherited-from)
-		 (goto-char org-entry-property-inherited-from)
-	       (org-back-to-heading t))
-	     (let (org-attach-allow-inheritance)
-	       (org-attach-dir create-if-not-exists-p))))
-      (org-attach-check-absolute-path attach-dir)
-      (setq org-attach-inherited t))
-     (t					; use the ID
-      (org-attach-check-absolute-path nil)
-      (setq uuid (org-id-get (point) create-if-not-exists-p))
-      (when (or uuid create-if-not-exists-p)
-	(unless uuid (error "ID retrieval/creation failed"))
-	(setq attach-dir (expand-file-name
-			  (format "%s/%s"
-				  (substring uuid 0 2)
-				  (substring uuid 2))
-			  (expand-file-name org-attach-directory))))))
-    (when attach-dir
-      (if (and create-if-not-exists-p
-	       (not (file-directory-p attach-dir)))
-	  (make-directory attach-dir t))
-      (and (file-exists-p attach-dir)
-	   attach-dir))))
-
-(defun org-attach-check-absolute-path (dir)
-  "Check if we have enough information to root the attachment directory.
-When DIR is given, check also if it is already absolute.  Otherwise,
-assume that it will be relative, and check if `org-attach-directory' is
-absolute, or if at least the current buffer has a file name.
-Throw an error if we cannot root the directory."
-  (or (and dir (file-name-absolute-p dir))
-      (file-name-absolute-p org-attach-directory)
-      (buffer-file-name (buffer-base-buffer))
-      (error "Need absolute `org-attach-directory' to attach in buffers without filename")))
-
-(defun org-attach-set-directory (&optional arg)
-  "Set the ATTACH_DIR node property and ask to move files there.
-The property defines the directory that is used for attachments
-of the entry.  When called with `\\[universal-argument]', reset \
-the directory to
-the default ID based one."
-  (interactive "P")
-  (let ((old (org-attach-dir))
-        (new
-         (progn
-           (if arg (org-entry-delete nil "ATTACH_DIR")
-             (let ((dir (read-directory-name
-                         "Attachment directory: "
-                         (org-entry-get nil
-                                        "ATTACH_DIR"
-                                        (and org-attach-allow-inheritance t)))))
-               (org-entry-put nil "ATTACH_DIR" dir)))
-           (org-attach-dir t))))
-    (unless (or (string= old new)
-                (not old))
-      (when (yes-or-no-p "Copy over attachments from old directory? ")
-        (copy-directory old new t nil t))
-      (when (yes-or-no-p (concat "Delete " old))
-        (delete-directory old t)))))
-
-(defun org-attach-set-inherit ()
-  "Set the ATTACH_DIR_INHERIT property of the current entry.
-The property defines the directory that is used for attachments
-of the entry and any children that do not explicitly define (by setting
-the ATTACH_DIR property) their own attachment directory."
-  (interactive)
-  (org-entry-put nil "ATTACH_DIR_INHERIT" "t")
-  (message "Children will inherit attachment directory"))
-
-(defun org-attach-use-annex ()
-  "Return non-nil if git annex can be used."
-  (let ((git-dir (vc-git-root (expand-file-name org-attach-directory))))
-    (and org-attach-git-annex-cutoff
-         (or (file-exists-p (expand-file-name "annex" git-dir))
-             (file-exists-p (expand-file-name ".git/annex" git-dir))))))
-
-(defun org-attach-annex-get-maybe (path)
-  "Call git annex get PATH (via shell) if using git annex.
-Signals an error if the file content is not available and it was not retrieved."
-  (let* ((default-directory (expand-file-name org-attach-directory))
-	 (path-relative (file-relative-name path)))
-    (when (and (org-attach-use-annex)
-	       (not
-		(string-equal
-		 "found"
-		 (shell-command-to-string
-		  (format "git annex find --format=found --in=here %s"
-			  (shell-quote-argument path-relative))))))
-      (let ((should-get
-	     (if (eq org-attach-annex-auto-get 'ask)
-		 (y-or-n-p (format "Run git annex get %s? " path-relative))
-	       org-attach-annex-auto-get)))
-	(if should-get
-	    (progn (message "Running git annex get \"%s\"." path-relative)
-		   (call-process "git" nil nil nil "annex" "get" path-relative))
-	  (error "File %s stored in git annex but it is not available, and was not retrieved"
-		 path))))))
-
-(defun org-attach-commit ()
-  "Commit changes to git if `org-attach-directory' is properly initialized.
-This checks for the existence of a \".git\" directory in that directory."
-  (let* ((dir (expand-file-name org-attach-directory))
-	 (git-dir (vc-git-root dir))
-	 (use-annex (org-attach-use-annex))
-	 (changes 0))
-    (when (and git-dir (executable-find "git"))
-      (with-temp-buffer
-	(cd dir)
-        (dolist (new-or-modified
-                 (split-string
-                  (shell-command-to-string
-                   "git ls-files -zmo --exclude-standard") "\0" t))
-          (if (and use-annex
-                   (>= (nth 7 (file-attributes new-or-modified))
-                       org-attach-git-annex-cutoff))
-              (call-process "git" nil nil nil "annex" "add" new-or-modified)
-            (call-process "git" nil nil nil "add" new-or-modified))
-	    (cl-incf changes))
-	(dolist (deleted
-		 (split-string
-		  (shell-command-to-string "git ls-files -z --deleted") "\0" t))
-	  (call-process "git" nil nil nil "rm" deleted)
-	  (cl-incf changes))
-	(when (> changes 0)
-	  (shell-command "git commit -m 'Synchronized attachments'"))))))
-
-(defun org-attach-tag (&optional off)
-  "Turn the autotag on or (if OFF is set) off."
-  (when org-attach-auto-tag
-    (save-excursion
-      (org-back-to-heading t)
-      (org-toggle-tag org-attach-auto-tag (if off 'off 'on)))))
-
-(defun org-attach-untag ()
-  "Turn the autotag off."
-  (org-attach-tag 'off))
-
-(defun org-attach-store-link (file)
-  "Add a link to `org-stored-link' when attaching a file.
-Only do this when `org-attach-store-link-p' is non-nil."
-  (setq org-stored-links
-	(cons (list (org-attach-expand-link file)
-		    (file-name-nondirectory file))
-	      org-stored-links)))
-
-(defun org-attach-url (url)
-  (interactive "MURL of the file to attach: \n")
-  (org-attach-attach url))
-
-(defun org-attach-attach (file &optional visit-dir method)
-  "Move/copy/link FILE into the attachment directory of the current task.
-If VISIT-DIR is non-nil, visit the directory with dired.
-METHOD may be `cp', `mv', `ln', `lns' or `url' default taken from
-`org-attach-method'."
-  (interactive
-   (list
-    (read-file-name "File to keep as an attachment:"
-                    (or (progn
-                          (require 'dired-aux)
-                          (dired-dwim-target-directory))
-                        default-directory))
-    current-prefix-arg
-    nil))
-  (setq method (or method org-attach-method))
-  (let ((basename (file-name-nondirectory file)))
-    (when (and org-attach-file-list-property (not org-attach-inherited))
-      (org-entry-add-to-multivalued-property
-       (point) org-attach-file-list-property basename))
-    (let* ((attach-dir (org-attach-dir t))
-           (fname (expand-file-name basename attach-dir)))
-      (cond
-       ((eq method 'mv) (rename-file file fname))
-       ((eq method 'cp) (copy-file file fname))
-       ((eq method 'ln) (add-name-to-file file fname))
-       ((eq method 'lns) (make-symbolic-link file fname))
-       ((eq method 'url) (url-copy-file file fname)))
-      (when org-attach-commit
-        (org-attach-commit))
-      (org-attach-tag)
-      (cond ((eq org-attach-store-link-p 'attached)
-             (org-attach-store-link fname))
-            ((eq org-attach-store-link-p t)
-             (org-attach-store-link file)))
-      (if visit-dir
-          (dired attach-dir)
-        (message "File %S is now a task attachment." basename)))))
-
-(defun org-attach-attach-cp ()
-  "Attach a file by copying it."
-  (interactive)
-  (let ((org-attach-method 'cp)) (call-interactively 'org-attach-attach)))
-(defun org-attach-attach-mv ()
-  "Attach a file by moving (renaming) it."
-  (interactive)
-  (let ((org-attach-method 'mv)) (call-interactively 'org-attach-attach)))
-(defun org-attach-attach-ln ()
-  "Attach a file by creating a hard link to it.
-Beware that this does not work on systems that do not support hard links.
-On some systems, this apparently does copy the file instead."
-  (interactive)
-  (let ((org-attach-method 'ln)) (call-interactively 'org-attach-attach)))
-(defun org-attach-attach-lns ()
-  "Attach a file by creating a symbolic link to it.
-
-Beware that this does not work on systems that do not support symbolic links.
-On some systems, this apparently does copy the file instead."
-  (interactive)
-  (let ((org-attach-method 'lns)) (call-interactively 'org-attach-attach)))
-
-(defun org-attach-new (file)
-  "Create a new attachment FILE for the current task.
-The attachment is created as an Emacs buffer."
-  (interactive "sCreate attachment named: ")
-  (when (and org-attach-file-list-property (not org-attach-inherited))
-    (org-entry-add-to-multivalued-property
-     (point) org-attach-file-list-property file))
-  (let ((attach-dir (org-attach-dir t)))
-    (org-attach-tag)
-    (find-file (expand-file-name file attach-dir))
-    (message "New attachment %s" file)))
-
-(defun org-attach-delete-one (&optional file)
-  "Delete a single attachment."
-  (interactive)
-  (let* ((attach-dir (org-attach-dir t))
-	 (files (org-attach-file-list attach-dir))
-	 (file (or file
-		   (completing-read
-		    "Delete attachment: "
-		    (mapcar (lambda (f)
-			      (list (file-name-nondirectory f)))
-			    files)))))
-    (setq file (expand-file-name file attach-dir))
-    (unless (file-exists-p file)
-      (error "No such attachment: %s" file))
-    (delete-file file)
-    (when org-attach-commit
-      (org-attach-commit))))
-
-(defun org-attach-delete-all (&optional force)
-  "Delete all attachments from the current task.
-This actually deletes the entire attachment directory.
-A safer way is to open the directory in dired and delete from there."
-  (interactive "P")
-  (when (and org-attach-file-list-property (not org-attach-inherited))
-    (org-entry-delete (point) org-attach-file-list-property))
-  (let ((attach-dir (org-attach-dir)))
-    (when
-	(and attach-dir
-	     (or force
-		 (y-or-n-p "Are you sure you want to remove all attachments of this entry? ")))
-      (shell-command (format "rm -fr %s" attach-dir))
-      (message "Attachment directory removed")
-      (when org-attach-commit
-        (org-attach-commit))
-      (org-attach-untag))))
-
-(defun org-attach-sync ()
-  "Synchronize the current tasks with its attachments.
-This can be used after files have been added externally."
-  (interactive)
-  (when org-attach-commit
-    (org-attach-commit))
-  (when (and org-attach-file-list-property (not org-attach-inherited))
-    (org-entry-delete (point) org-attach-file-list-property))
-  (let ((attach-dir (org-attach-dir)))
-    (when attach-dir
-      (let ((files (org-attach-file-list attach-dir)))
-	(org-attach-tag (not files))
-	(when org-attach-file-list-property
-	  (dolist (file files)
-	    (unless (string-match "^\\.\\.?\\'" file)
-	      (org-entry-add-to-multivalued-property
-	       (point) org-attach-file-list-property file))))))))
-
-(defun org-attach-file-list (dir)
-  "Return a list of files in the attachment directory.
-This ignores files ending in \"~\"."
-  (delq nil
-	(mapcar (lambda (x) (if (string-match "^\\.\\.?\\'" x) nil x))
-		(directory-files dir nil "[^~]\\'"))))
-
-(defun org-attach-reveal (&optional if-exists)
-  "Show the attachment directory of the current task.
-This will attempt to use an external program to show the directory."
-  (interactive "P")
-  (let ((attach-dir (org-attach-dir (not if-exists))))
-    (and attach-dir (org-open-file attach-dir))))
-
-(defun org-attach-reveal-in-emacs ()
-  "Show the attachment directory of the current task in dired."
-  (interactive)
-  (let ((attach-dir (org-attach-dir t)))
-    (dired attach-dir)))
-
-(defun org-attach-open (&optional in-emacs)
-  "Open an attachment of the current task.
-If there are more than one attachment, you will be prompted for the file name.
-This command will open the file using the settings in `org-file-apps'
-and in the system-specific variants of this variable.
-If IN-EMACS is non-nil, force opening in Emacs."
-  (interactive "P")
-  (let* ((attach-dir (org-attach-dir t))
-	 (files (org-attach-file-list attach-dir))
-	 (file (if (= (length files) 1)
-		   (car files)
-		 (completing-read "Open attachment: "
-				  (mapcar #'list files) nil t)))
-         (path (expand-file-name file attach-dir)))
-    (org-attach-annex-get-maybe path)
-    (org-open-file path in-emacs)))
-
-(defun org-attach-open-in-emacs ()
-  "Open attachment, force opening in Emacs.
-See `org-attach-open'."
-  (interactive)
-  (org-attach-open 'in-emacs))
-
-(defun org-attach-expand (file)
-  "Return the full path to the current entry's attachment file FILE.
-Basically, this adds the path to the attachment directory."
-  (expand-file-name file (org-attach-dir)))
-
-(defun org-attach-expand-link (file)
-  "Return a file link pointing to the current entry's attachment file FILE.
-Basically, this adds the path to the attachment directory, and a \"file:\"
-prefix."
-  (concat "file:" (org-attach-expand file)))
-
-(defun org-attach-archive-delete-maybe ()
-  "Maybe delete subtree attachments when archiving.
-This function is called by `org-archive-hook'.  The option
-`org-attach-archive-delete' controls its behavior."
-  (when (if (eq org-attach-archive-delete 'query)
-	    (yes-or-no-p "Delete all attachments? ")
-	  org-attach-archive-delete)
-    (org-attach-delete-all t)))
-
-(add-hook 'org-archive-hook 'org-attach-archive-delete-maybe)
-
-(provide 'org-attach)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-attach.el ends here
diff --git a/elpa/org-9.1.14/org-attach.elc b/elpa/org-9.1.14/org-attach.elc
deleted file mode 100644
index 55fd106..0000000
--- a/elpa/org-9.1.14/org-attach.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-autoloads.el b/elpa/org-9.1.14/org-autoloads.el
deleted file mode 100644
index 419dfff..0000000
--- a/elpa/org-9.1.14/org-autoloads.el
+++ /dev/null
@@ -1,1550 +0,0 @@
-;;; org-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "ob-C" "ob-C.el" (0 0 0 0))
-;;; Generated autoloads from ob-C.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-C" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-J" "ob-J.el" (0 0 0 0))
-;;; Generated autoloads from ob-J.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-J" '("obj-" "org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-R" "ob-R.el" (0 0 0 0))
-;;; Generated autoloads from ob-R.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-R" '("ob-R-" "org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-abc" "ob-abc.el" (0 0 0 0))
-;;; Generated autoloads from ob-abc.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-abc" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-asymptote" "ob-asymptote.el" (0 0 0 0))
-;;; Generated autoloads from ob-asymptote.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-asymptote" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-awk" "ob-awk.el" (0 0 0 0))
-;;; Generated autoloads from ob-awk.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-awk" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-calc" "ob-calc.el" (0 0 0 0))
-;;; Generated autoloads from ob-calc.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-calc" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-clojure" "ob-clojure.el" (0 0 0 0))
-;;; Generated autoloads from ob-clojure.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-clojure" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-comint" "ob-comint.el" (0 0 0 0))
-;;; Generated autoloads from ob-comint.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-comint" '("org-babel-comint-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-coq" "ob-coq.el" (0 0 0 0))
-;;; Generated autoloads from ob-coq.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-coq" '("org-babel-" "coq-program-name")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ob-core" "ob-core.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ob-core.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-core" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-css" "ob-css.el" (0 0 0 0))
-;;; Generated autoloads from ob-css.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-css" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-ditaa" "ob-ditaa.el" (0 0 0 0))
-;;; Generated autoloads from ob-ditaa.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ditaa" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-dot" "ob-dot.el" (0 0 0 0))
-;;; Generated autoloads from ob-dot.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-dot" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-ebnf" "ob-ebnf.el" (0 0 0 0))
-;;; Generated autoloads from ob-ebnf.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ebnf" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-emacs-lisp" "ob-emacs-lisp.el" (0 0 0 0))
-;;; Generated autoloads from ob-emacs-lisp.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-emacs-lisp" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-eval" "ob-eval.el" (0 0 0 0))
-;;; Generated autoloads from ob-eval.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-eval" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-exp" "ob-exp.el" (0 0 0 0))
-;;; Generated autoloads from ob-exp.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-exp" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-forth" "ob-forth.el" (0 0 0 0))
-;;; Generated autoloads from ob-forth.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-forth" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-fortran" "ob-fortran.el" (0 0 0 0))
-;;; Generated autoloads from ob-fortran.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-fortran" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-gnuplot" "ob-gnuplot.el" (0 0 0 0))
-;;; Generated autoloads from ob-gnuplot.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-gnuplot" '("org-babel-" "*org-babel-gnuplot-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-groovy" "ob-groovy.el" (0 0 0 0))
-;;; Generated autoloads from ob-groovy.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-groovy" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-haskell" "ob-haskell.el" (0 0 0 0))
-;;; Generated autoloads from ob-haskell.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-haskell" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-hledger" "ob-hledger.el" (0 0 0 0))
-;;; Generated autoloads from ob-hledger.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-hledger" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-io" "ob-io.el" (0 0 0 0))
-;;; Generated autoloads from ob-io.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-io" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-java" "ob-java.el" (0 0 0 0))
-;;; Generated autoloads from ob-java.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-java" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-js" "ob-js.el" (0 0 0 0))
-;;; Generated autoloads from ob-js.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-js" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ob-keys" "ob-keys.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ob-keys.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-keys" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-latex" "ob-latex.el" (0 0 0 0))
-;;; Generated autoloads from ob-latex.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-latex" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-ledger" "ob-ledger.el" (0 0 0 0))
-;;; Generated autoloads from ob-ledger.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ledger" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-lilypond" "ob-lilypond.el" (0 0 0 0))
-;;; Generated autoloads from ob-lilypond.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-lilypond" '("org-babel-" "lilypond-mode")))
-
-;;;***
-
-;;;### (autoloads nil "ob-lisp" "ob-lisp.el" (0 0 0 0))
-;;; Generated autoloads from ob-lisp.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-lisp" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ob-lob" "ob-lob.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ob-lob.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-lob" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-lua" "ob-lua.el" (0 0 0 0))
-;;; Generated autoloads from ob-lua.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-lua" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-makefile" "ob-makefile.el" (0 0 0 0))
-;;; Generated autoloads from ob-makefile.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-makefile" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-maxima" "ob-maxima.el" (0 0 0 0))
-;;; Generated autoloads from ob-maxima.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-maxima" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-mscgen" "ob-mscgen.el" (0 0 0 0))
-;;; Generated autoloads from ob-mscgen.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-mscgen" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-ocaml" "ob-ocaml.el" (0 0 0 0))
-;;; Generated autoloads from ob-ocaml.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ocaml" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-octave" "ob-octave.el" (0 0 0 0))
-;;; Generated autoloads from ob-octave.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-octave" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-org" "ob-org.el" (0 0 0 0))
-;;; Generated autoloads from ob-org.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-org" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-perl" "ob-perl.el" (0 0 0 0))
-;;; Generated autoloads from ob-perl.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-perl" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-picolisp" "ob-picolisp.el" (0 0 0 0))
-;;; Generated autoloads from ob-picolisp.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-picolisp" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-plantuml" "ob-plantuml.el" (0 0 0 0))
-;;; Generated autoloads from ob-plantuml.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-plantuml" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-processing" "ob-processing.el" (0 0 0 0))
-;;; Generated autoloads from ob-processing.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-processing" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-python" "ob-python.el" (0 0 0 0))
-;;; Generated autoloads from ob-python.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-python" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-ref" "ob-ref.el" (0 0 0 0))
-;;; Generated autoloads from ob-ref.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ref" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-ruby" "ob-ruby.el" (0 0 0 0))
-;;; Generated autoloads from ob-ruby.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-ruby" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-sass" "ob-sass.el" (0 0 0 0))
-;;; Generated autoloads from ob-sass.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sass" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-scheme" "ob-scheme.el" (0 0 0 0))
-;;; Generated autoloads from ob-scheme.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-scheme" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-screen" "ob-screen.el" (0 0 0 0))
-;;; Generated autoloads from ob-screen.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-screen" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-sed" "ob-sed.el" (0 0 0 0))
-;;; Generated autoloads from ob-sed.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sed" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-shell" "ob-shell.el" (0 0 0 0))
-;;; Generated autoloads from ob-shell.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-shell" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-shen" "ob-shen.el" (0 0 0 0))
-;;; Generated autoloads from ob-shen.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-shen" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-sql" "ob-sql.el" (0 0 0 0))
-;;; Generated autoloads from ob-sql.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sql" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-sqlite" "ob-sqlite.el" (0 0 0 0))
-;;; Generated autoloads from ob-sqlite.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-sqlite" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-stan" "ob-stan.el" (0 0 0 0))
-;;; Generated autoloads from ob-stan.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-stan" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-table" "ob-table.el" (0 0 0 0))
-;;; Generated autoloads from ob-table.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-table" '("org-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ob-tangle" "ob-tangle.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ob-tangle.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-tangle" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "ob-vala" "ob-vala.el" (0 0 0 0))
-;;; Generated autoloads from ob-vala.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ob-vala" '("org-babel-")))
-
-;;;***
-
-;;;### (autoloads nil "org" "org.el" (0 0 0 0))
-;;; Generated autoloads from org.el
-
-(autoload 'org-babel-do-load-languages "org" "\
-Load the languages defined in `org-babel-load-languages'.
-
-\(fn SYM VALUE)" nil nil)
-
-(autoload 'org-babel-load-file "org" "\
-Load Emacs Lisp source code blocks in the Org FILE.
-This function exports the source code using `org-babel-tangle'
-and then loads the resulting file using `load-file'.  With prefix
-arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
-file to byte-code before it is loaded.
-
-\(fn FILE &optional COMPILE)" t nil)
-
-(autoload 'org-version "org" "\
-Show the Org version.
-Interactively, or when MESSAGE is non-nil, show it in echo area.
-With prefix argument, or when HERE is non-nil, insert it at point.
-In non-interactive uses, a reduced version string is output unless
-FULL is given.
-
-\(fn &optional HERE FULL MESSAGE)" t nil)
-
-(autoload 'turn-on-orgtbl "org" "\
-Unconditionally turn on `orgtbl-mode'.
-
-\(fn)" nil nil)
-
-(autoload 'org-clock-persistence-insinuate "org" "\
-Set up hooks for clock persistence.
-
-\(fn)" nil nil)
-
-(autoload 'org-mode "org" "\
-Outline-based notes management and organizer, alias
-\"Carsten's outline-mode for keeping track of everything.\"
-
-Org mode develops organizational tasks around a NOTES file which
-contains information about projects as plain text.  Org mode is
-implemented on top of Outline mode, which is ideal to keep the content
-of large files well structured.  It supports ToDo items, deadlines and
-time stamps, which magically appear in the diary listing of the Emacs
-calendar.  Tables are easily created with a built-in table editor.
-Plain text URL-like links connect to websites, emails (VM), Usenet
-messages (Gnus), BBDB entries, and any files related to the project.
-For printing and sharing of notes, an Org file (or a part of it)
-can be exported as a structured ASCII or HTML file.
-
-The following commands are available:
-
-\\{org-mode-map}
-
-\(fn)" t nil)
-
-(autoload 'org-cycle "org" "\
-TAB-action and visibility cycling for Org mode.
-
-This is the command invoked in Org mode by the `TAB' key.  Its main
-purpose is outline visibility cycling, but it also invokes other actions
-in special contexts.
-
-When this function is called with a `\\[universal-argument]' prefix, rotate the entire
-buffer through 3 states (global cycling)
-  1. OVERVIEW: Show only top-level headlines.
-  2. CONTENTS: Show all headlines of all levels, but no body text.
-  3. SHOW ALL: Show everything.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix argument, switch to the startup visibility,
-determined by the variable `org-startup-folded', and by any VISIBILITY
-properties in the buffer.
-
-With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix argument, show the entire buffer, including
-any drawers.
-
-When inside a table, re-align the table and move to the next field.
-
-When point is at the beginning of a headline, rotate the subtree started
-by this line through 3 different states (local cycling)
-  1. FOLDED:   Only the main headline is shown.
-  2. CHILDREN: The main headline and the direct children are shown.
-               From this state, you can move to one of the children
-               and zoom in further.
-  3. SUBTREE:  Show the entire subtree, including body text.
-If there is no subtree, switch directly from CHILDREN to FOLDED.
-
-When point is at the beginning of an empty headline and the variable
-`org-cycle-level-after-item/entry-creation' is set, cycle the level
-of the headline by demoting and promoting it to likely levels.  This
-speeds up creation document structure by pressing `TAB' once or several
-times right after creating a new headline.
-
-When there is a numeric prefix, go up to a heading with level ARG, do
-a `show-subtree' and return to the previous cursor position.  If ARG
-is negative, go up that many levels.
-
-When point is not at the beginning of a headline, execute the global
-binding for `TAB', which is re-indenting the line.  See the option
-`org-cycle-emulate-tab' for details.
-
-As a special case, if point is at the beginning of the buffer and there is
-no headline in line 1, this function will act as if called with prefix arg
-\(`\\[universal-argument] TAB', same as `S-TAB') also when called without prefix arg, but only
-if the variable `org-cycle-global-at-bob' is t.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-global-cycle "org" "\
-Cycle the global visibility.  For details see `org-cycle'.
-With `\\[universal-argument]' prefix ARG, switch to startup visibility.
-With a numeric prefix, show all headlines up to that level.
-
-\(fn &optional ARG)" t nil)
-(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
-
-(autoload 'orgstruct-mode "org" "\
-Toggle the minor mode `orgstruct-mode'.
-This mode is for using Org mode structure commands in other
-modes.  The following keys behave as if Org mode were active, if
-the cursor is on a headline, or on a plain list item (both as
-defined by Org mode).
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'turn-on-orgstruct "org" "\
-Unconditionally turn on `orgstruct-mode'.
-
-\(fn)" nil nil)
-
-(autoload 'turn-on-orgstruct++ "org" "\
-Unconditionally turn on `orgstruct++-mode'.
-
-\(fn)" nil nil)
-
-(autoload 'org-run-like-in-org-mode "org" "\
-Run a command, pretending that the current buffer is in Org mode.
-This will temporarily bind local variables that are typically bound in
-Org mode to the values they have in Org mode, and then interactively
-call CMD.
-
-\(fn CMD)" nil nil)
-
-(autoload 'org-store-link "org" "\
-Store an org-link to the current location.
-\\<org-mode-map>
-This link is added to `org-stored-links' and can later be inserted
-into an Org buffer with `org-insert-link' (`\\[org-insert-link]').
-
-For some link types, a `\\[universal-argument]' prefix ARG is interpreted.  A single
-`\\[universal-argument]' negates `org-context-in-file-links' for file links or
-`org-gnus-prefer-web-links' for links to Usenet articles.
-
-A `\\[universal-argument] \\[universal-argument]' prefix ARG forces skipping storing functions that are not
-part of Org core.
-
-A `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix ARG forces storing a link for each line in the
-active region.
-
-\(fn ARG)" t nil)
-
-(autoload 'org-insert-link-global "org" "\
-Insert a link like Org mode does.
-This command can be called in any mode to insert a link in Org syntax.
-
-\(fn)" t nil)
-
-(autoload 'org-open-at-point-global "org" "\
-Follow a link or time-stamp like Org mode does.
-This command can be called in any mode to follow an external link
-or a time-stamp that has Org mode syntax.  Its behavior is
-undefined when called on internal links (e.g., fuzzy links).
-Raise an error when there is nothing to follow.  
-
-\(fn)" t nil)
-
-(autoload 'org-open-link-from-string "org" "\
-Open a link in the string S, as if it was in Org mode.
-
-\(fn S &optional ARG REFERENCE-BUFFER)" t nil)
-
-(autoload 'org-switchb "org" "\
-Switch between Org buffers.
-
-With `\\[universal-argument]' prefix, restrict available buffers to files.
-
-With `\\[universal-argument] \\[universal-argument]' prefix, restrict available buffers to agenda files.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-cycle-agenda-files "org" "\
-Cycle through the files in `org-agenda-files'.
-If the current buffer visits an agenda file, find the next one in the list.
-If the current buffer does not, find the first agenda file.
-
-\(fn)" t nil)
-
-(autoload 'org-submit-bug-report "org" "\
-Submit a bug report on Org via mail.
-
-Don't hesitate to report any problems or inaccurate documentation.
-
-If you don't have setup sending mail from (X)Emacs, please copy the
-output buffer into your mail program, as it gives us important
-information about your Org version and configuration.
-
-\(fn)" t nil)
-
-(autoload 'org-reload "org" "\
-Reload all Org Lisp files.
-With prefix arg UNCOMPILED, load the uncompiled versions.
-
-\(fn &optional UNCOMPILED)" t nil)
-
-(autoload 'org-customize "org" "\
-Call the customize function with org as argument.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org" '("org" "turn-on-org-cdlatex")))
-
-;;;***
-
-;;;### (autoloads nil "org-agenda" "org-agenda.el" (0 0 0 0))
-;;; Generated autoloads from org-agenda.el
-
-(autoload 'org-toggle-sticky-agenda "org-agenda" "\
-Toggle `org-agenda-sticky'.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-agenda "org-agenda" "\
-Dispatch agenda commands to collect entries to the agenda buffer.
-Prompts for a command to execute.  Any prefix arg will be passed
-on to the selected command.  The default selections are:
-
-a     Call `org-agenda-list' to display the agenda for current day or week.
-t     Call `org-todo-list' to display the global todo list.
-T     Call `org-todo-list' to display the global todo list, select only
-      entries with a specific TODO keyword (the user gets a prompt).
-m     Call `org-tags-view' to display headlines with tags matching
-      a condition  (the user is prompted for the condition).
-M     Like `m', but select only TODO entries, no ordinary headlines.
-e     Export views to associated files.
-s     Search entries for keywords.
-S     Search entries for keywords, only with TODO keywords.
-/     Multi occur across all agenda files and also files listed
-      in `org-agenda-text-search-extra-files'.
-<     Restrict agenda commands to buffer, subtree, or region.
-      Press several times to get the desired effect.
->     Remove a previous restriction.
-#     List \"stuck\" projects.
-!     Configure what \"stuck\" means.
-C     Configure custom agenda commands.
-
-More commands can be added by configuring the variable
-`org-agenda-custom-commands'.  In particular, specific tags and TODO keyword
-searches can be pre-defined in this way.
-
-If the current buffer is in Org mode and visiting a file, you can also
-first press `<' once to indicate that the agenda should be temporarily
-\(until the next use of `\\[org-agenda]') restricted to the current file.
-Pressing `<' twice means to restrict to the current subtree or region
-\(if active).
-
-\(fn &optional ARG ORG-KEYS RESTRICTION)" t nil)
-
-(autoload 'org-batch-agenda "org-agenda" "\
-Run an agenda command in batch mode and send the result to STDOUT.
-If CMD-KEY is a string of length 1, it is used as a key in
-`org-agenda-custom-commands' and triggers this command.  If it is a
-longer string it is used as a tags/todo match string.
-Parameters are alternating variable names and values that will be bound
-before running the agenda command.
-
-\(fn CMD-KEY &rest PARAMETERS)" nil t)
-
-(autoload 'org-batch-agenda-csv "org-agenda" "\
-Run an agenda command in batch mode and send the result to STDOUT.
-If CMD-KEY is a string of length 1, it is used as a key in
-`org-agenda-custom-commands' and triggers this command.  If it is a
-longer string it is used as a tags/todo match string.
-Parameters are alternating variable names and values that will be bound
-before running the agenda command.
-
-The output gives a line for each selected agenda item.  Each
-item is a list of comma-separated values, like this:
-
-category,head,type,todo,tags,date,time,extra,priority-l,priority-n
-
-category     The category of the item
-head         The headline, without TODO kwd, TAGS and PRIORITY
-type         The type of the agenda entry, can be
-                todo               selected in TODO match
-                tagsmatch          selected in tags match
-                diary              imported from diary
-                deadline           a deadline on given date
-                scheduled          scheduled on given date
-                timestamp          entry has timestamp on given date
-                closed             entry was closed on given date
-                upcoming-deadline  warning about deadline
-                past-scheduled     forwarded scheduled item
-                block              entry has date block including g. date
-todo         The todo keyword, if any
-tags         All tags including inherited ones, separated by colons
-date         The relevant date, like 2007-2-14
-time         The time, like 15:00-16:50
-extra        Sting with extra planning info
-priority-l   The priority letter if any was given
-priority-n   The computed numerical priority
-agenda-day   The day in the agenda where this is listed
-
-\(fn CMD-KEY &rest PARAMETERS)" nil t)
-
-(autoload 'org-store-agenda-views "org-agenda" "\
-Store agenda views.
-
-\(fn &rest PARAMETERS)" t nil)
-
-(autoload 'org-batch-store-agenda-views "org-agenda" "\
-Run all custom agenda commands that have a file argument.
-
-\(fn &rest PARAMETERS)" nil t)
-
-(autoload 'org-agenda-list "org-agenda" "\
-Produce a daily/weekly view from all files in variable `org-agenda-files'.
-The view will be for the current day or week, but from the overview buffer
-you will be able to go to other days/weeks.
-
-With a numeric prefix argument in an interactive call, the agenda will
-span ARG days.  Lisp programs should instead specify SPAN to change
-the number of days.  SPAN defaults to `org-agenda-span'.
-
-START-DAY defaults to TODAY, or to the most recent match for the weekday
-given in `org-agenda-start-on-weekday'.
-
-When WITH-HOUR is non-nil, only include scheduled and deadline
-items if they have an hour specification like [h]h:mm.
-
-\(fn &optional ARG START-DAY SPAN WITH-HOUR)" t nil)
-
-(autoload 'org-search-view "org-agenda" "\
-Show all entries that contain a phrase or words or regular expressions.
-
-With optional prefix argument TODO-ONLY, only consider entries that are
-TODO entries.  The argument STRING can be used to pass a default search
-string into this function.  If EDIT-AT is non-nil, it means that the
-user should get a chance to edit this string, with cursor at position
-EDIT-AT.
-
-The search string can be viewed either as a phrase that should be found as
-is, or it can be broken into a number of snippets, each of which must match
-in a Boolean way to select an entry.  The default depends on the variable
-`org-agenda-search-view-always-boolean'.
-Even if this is turned off (the default) you can always switch to
-Boolean search dynamically by preceding the first word with  \"+\" or \"-\".
-
-The default is a direct search of the whole phrase, where each space in
-the search string can expand to an arbitrary amount of whitespace,
-including newlines.
-
-If using a Boolean search, the search string is split on whitespace and
-each snippet is searched separately, with logical AND to select an entry.
-Words prefixed with a minus must *not* occur in the entry.  Words without
-a prefix or prefixed with a plus must occur in the entry.  Matching is
-case-insensitive.  Words are enclosed by word delimiters (i.e. they must
-match whole words, not parts of a word) if
-`org-agenda-search-view-force-full-words' is set (default is nil).
-
-Boolean search snippets enclosed by curly braces are interpreted as
-regular expressions that must or (when preceded with \"-\") must not
-match in the entry.  Snippets enclosed into double quotes will be taken
-as a whole, to include whitespace.
-
-- If the search string starts with an asterisk, search only in headlines.
-- If (possibly after the leading star) the search string starts with an
-  exclamation mark, this also means to look at TODO entries only, an effect
-  that can also be achieved with a prefix argument.
-- If (possibly after star and exclamation mark) the search string starts
-  with a colon, this will mean that the (non-regexp) snippets of the
-  Boolean search must match as full words.
-
-This command searches the agenda files, and in addition the files
-listed in `org-agenda-text-search-extra-files' unless a restriction lock
-is active.
-
-\(fn &optional TODO-ONLY STRING EDIT-AT)" t nil)
-
-(autoload 'org-todo-list "org-agenda" "\
-Show all (not done) TODO entries from all agenda file in a single list.
-The prefix arg can be used to select a specific TODO keyword and limit
-the list to these.  When using `\\[universal-argument]', you will be prompted
-for a keyword.  A numeric prefix directly selects the Nth keyword in
-`org-todo-keywords-1'.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-tags-view "org-agenda" "\
-Show all headlines for all `org-agenda-files' matching a TAGS criterion.
-The prefix arg TODO-ONLY limits the search to TODO entries.
-
-\(fn &optional TODO-ONLY MATCH)" t nil)
-
-(autoload 'org-agenda-list-stuck-projects "org-agenda" "\
-Create agenda view for projects that are stuck.
-Stuck projects are project that have no next actions.  For the definitions
-of what a project is and how to check if it stuck, customize the variable
-`org-stuck-projects'.
-
-\(fn &rest IGNORE)" t nil)
-
-(autoload 'org-diary "org-agenda" "\
-Return diary information from org files.
-This function can be used in a \"sexp\" diary entry in the Emacs calendar.
-It accesses org files and extracts information from those files to be
-listed in the diary.  The function accepts arguments specifying what
-items should be listed.  For a list of arguments allowed here, see the
-variable `org-agenda-entry-types'.
-
-The call in the diary file should look like this:
-
-   &%%(org-diary) ~/path/to/some/orgfile.org
-
-Use a separate line for each org file to check.  Or, if you omit the file name,
-all files listed in `org-agenda-files' will be checked automatically:
-
-   &%%(org-diary)
-
-If you don't give any arguments (as in the example above), the default value
-of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
-So the example above may also be written as
-
-   &%%(org-diary :deadline :timestamp :sexp :scheduled)
-
-The function expects the lisp variables `entry' and `date' to be provided
-by the caller, because this is how the calendar works.  Don't use this
-function from a program - use `org-agenda-get-day-entries' instead.
-
-\(fn &rest ARGS)" nil nil)
-
-(autoload 'org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item "org-agenda" "\
-Do we have a reason to ignore this TODO entry because it has a time stamp?
-
-\(fn &optional END)" nil nil)
-
-(autoload 'org-agenda-set-restriction-lock "org-agenda" "\
-Set restriction lock for agenda, to current subtree or file.
-Restriction will be the file if TYPE is `file', or if type is the
-universal prefix \\='(4), or if the cursor is before the first headline
-in the file.  Otherwise, restriction will be to the current subtree.
-
-\(fn &optional TYPE)" t nil)
-
-(autoload 'org-calendar-goto-agenda "org-agenda" "\
-Compute the Org agenda for the calendar date displayed at the cursor.
-This is a command that has to be installed in `calendar-mode-map'.
-
-\(fn)" t nil)
-
-(autoload 'org-agenda-to-appt "org-agenda" "\
-Activate appointments found in `org-agenda-files'.
-
-With a `\\[universal-argument]' prefix, refresh the list of appointments.
-
-If FILTER is t, interactively prompt the user for a regular
-expression, and filter out entries that don't match it.
-
-If FILTER is a string, use this string as a regular expression
-for filtering entries out.
-
-If FILTER is a function, filter out entries against which
-calling the function returns nil.  This function takes one
-argument: an entry from `org-agenda-get-day-entries'.
-
-FILTER can also be an alist with the car of each cell being
-either `headline' or `category'.  For example:
-
-  \\='((headline \"IMPORTANT\")
-    (category \"Work\"))
-
-will only add headlines containing IMPORTANT or headlines
-belonging to the \"Work\" category.
-
-ARGS are symbols indicating what kind of entries to consider.
-By default `org-agenda-to-appt' will use :deadline*, :scheduled*
-\(i.e., deadlines and scheduled items with a hh:mm specification)
-and :timestamp entries.  See the docstring of `org-diary' for
-details and examples.
-
-If an entry has a APPT_WARNTIME property, its value will be used
-to override `appt-message-warning-time'.
-
-\(fn &optional REFRESH FILTER &rest ARGS)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-agenda" '("org-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-archive"
-;;;;;;  "org-archive.el" (0 0 0 0))
-;;; Generated autoloads from org-archive.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-archive" '("org-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-attach" "org-attach.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-attach.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-attach" '("org-attach-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-bbdb" "org-bbdb.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-bbdb.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-bbdb" '("org-bbdb-")))
-
-;;;***
-
-;;;### (autoloads nil "org-bibtex" "org-bibtex.el" (0 0 0 0))
-;;; Generated autoloads from org-bibtex.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-bibtex" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "org-capture" "org-capture.el" (0 0 0 0))
-;;; Generated autoloads from org-capture.el
-
-(autoload 'org-capture-string "org-capture" "\
-Capture STRING with the template selected by KEYS.
-
-\(fn STRING &optional KEYS)" t nil)
-
-(autoload 'org-capture "org-capture" "\
-Capture something.
-\\<org-capture-mode-map>
-This will let you select a template from `org-capture-templates', and
-then file the newly captured information.  The text is immediately
-inserted at the target location, and an indirect buffer is shown where
-you can edit it.  Pressing `\\[org-capture-finalize]' brings you back to the previous
-state of Emacs, so that you can continue your work.
-
-When called interactively with a `\\[universal-argument]' prefix argument GOTO, don't
-capture anything, just go to the file/headline where the selected
-template stores its notes.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix argument, go to the last note stored.
-
-When called with a `C-0' (zero) prefix, insert a template at point.
-
-When called with a `C-1' (one) prefix, force prompting for a date when
-a datetree entry is made.
-
-ELisp programs can set KEYS to a string associated with a template
-in `org-capture-templates'.  In this case, interactive selection
-will be bypassed.
-
-If `org-capture-use-agenda-date' is non-nil, capturing from the
-agenda will use the date at point as the default date.  Then, a
-`C-1' prefix will tell the capture process to use the HH:MM time
-of the day at point (if any) or the current HH:MM time.
-
-\(fn &optional GOTO KEYS)" t nil)
-
-(autoload 'org-capture-import-remember-templates "org-capture" "\
-Set `org-capture-templates' to be similar to `org-remember-templates'.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-capture" '("org-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-clock" "org-clock.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-clock.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-clock" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "org-colview" "org-colview.el" (0 0 0 0))
-;;; Generated autoloads from org-colview.el
-
-(autoload 'org-columns-remove-overlays "org-colview" "\
-Remove all currently active column overlays.
-
-\(fn)" t nil)
-
-(autoload 'org-columns-get-format-and-top-level "org-colview" "\
-
-
-\(fn)" nil nil)
-
-(autoload 'org-columns "org-colview" "\
-Turn on column view on an Org mode file.
-
-Column view applies to the whole buffer if point is before the
-first headline.  Otherwise, it applies to the first ancestor
-setting \"COLUMNS\" property.  If there is none, it defaults to
-the current headline.  With a `\\[universal-argument]' prefix argument, turn on column
-view for the whole buffer unconditionally.
-
-When COLUMNS-FMT-STRING is non-nil, use it as the column format.
-
-\(fn &optional GLOBAL COLUMNS-FMT-STRING)" t nil)
-
-(autoload 'org-columns-compute "org-colview" "\
-Summarize the values of PROPERTY hierarchically.
-Also update existing values for PROPERTY according to the first
-column specification.
-
-\(fn PROPERTY)" t nil)
-
-(autoload 'org-dblock-write:columnview "org-colview" "\
-Write the column view table.
-PARAMS is a property list of parameters:
-
-:id       the :ID: property of the entry where the columns view
-	  should be built.  When the symbol `local', call locally.
-	  When `global' call column view with the cursor at the beginning
-	  of the buffer (usually this means that the whole buffer switches
-	  to column view).  When \"file:path/to/file.org\", invoke column
-	  view at the start of that file.  Otherwise, the ID is located
-	  using `org-id-find'.
-:hlines   When t, insert a hline before each item.  When a number, insert
-	  a hline before each level <= that number.
-:indent   When non-nil, indent each ITEM field according to its level.
-:vlines   When t, make each column a colgroup to enforce vertical lines.
-:maxlevel When set to a number, don't capture headlines below this level.
-:skip-empty-rows
-	  When t, skip rows where all specifiers other than ITEM are empty.
-:width    apply widths specified in columns format using <N> specifiers.
-:format   When non-nil, specify the column view format to use.
-
-\(fn PARAMS)" nil nil)
-
-(autoload 'org-columns-insert-dblock "org-colview" "\
-Create a dynamic block capturing a column view table.
-
-\(fn)" t nil)
-
-(autoload 'org-agenda-columns "org-colview" "\
-Turn on or update column view in the agenda.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-colview" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "org-compat" "org-compat.el" (0 0 0 0))
-;;; Generated autoloads from org-compat.el
-
-(autoload 'org-check-version "org-compat" "\
-Try very hard to provide sensible version strings.
-
-\(fn)" nil t)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-compat" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "org-crypt" "org-crypt.el" (0 0 0 0))
-;;; Generated autoloads from org-crypt.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-crypt" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "org-ctags" "org-ctags.el" (0 0 0 0))
-;;; Generated autoloads from org-ctags.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-ctags" '("org-ctags-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-datetree"
-;;;;;;  "org-datetree.el" (0 0 0 0))
-;;; Generated autoloads from org-datetree.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-datetree" '("org-datetree-")))
-
-;;;***
-
-;;;### (autoloads nil "org-docview" "org-docview.el" (0 0 0 0))
-;;; Generated autoloads from org-docview.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-docview" '("org-docview-")))
-
-;;;***
-
-;;;### (autoloads nil "org-duration" "org-duration.el" (0 0 0 0))
-;;; Generated autoloads from org-duration.el
-
-(autoload 'org-duration-set-regexps "org-duration" "\
-Set duration related regexps.
-
-\(fn)" t nil)
-
-(autoload 'org-duration-p "org-duration" "\
-Non-nil when string S is a time duration.
-
-\(fn S)" nil nil)
-
-(autoload 'org-duration-to-minutes "org-duration" "\
-Return number of minutes of DURATION string.
-
-When optional argument CANONICAL is non-nil, ignore
-`org-duration-units' and use standard time units value.
-
-A bare number is translated into minutes.  The empty string is
-translated into 0.0.
-
-Return value as a float.  Raise an error if duration format is
-not recognized.
-
-\(fn DURATION &optional CANONICAL)" nil nil)
-
-(autoload 'org-duration-from-minutes "org-duration" "\
-Return duration string for a given number of MINUTES.
-
-Format duration according to `org-duration-format' or FMT, when
-non-nil.
-
-When optional argument CANONICAL is non-nil, ignore
-`org-duration-units' and use standard time units value.
-
-Raise an error if expected format is unknown.
-
-\(fn MINUTES &optional FMT CANONICAL)" nil nil)
-
-(autoload 'org-duration-h:mm-only-p "org-duration" "\
-Non-nil when every duration in TIMES has \"H:MM\" or \"H:MM:SS\" format.
-
-TIMES is a list of duration strings.
-
-Return nil if any duration is expressed with units, as defined in
-`org-duration-units'.  Otherwise, if any duration is expressed
-with \"H:MM:SS\" format, return `h:mm:ss'.  Otherwise, return
-`h:mm'.
-
-\(fn TIMES)" nil nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-duration" '("org-duration-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-element"
-;;;;;;  "org-element.el" (0 0 0 0))
-;;; Generated autoloads from org-element.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-element" '("org-element-")))
-
-;;;***
-
-;;;### (autoloads nil "org-entities" "org-entities.el" (0 0 0 0))
-;;; Generated autoloads from org-entities.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-entities" '("org-entit")))
-
-;;;***
-
-;;;### (autoloads nil "org-eshell" "org-eshell.el" (0 0 0 0))
-;;; Generated autoloads from org-eshell.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-eshell" '("org-eshell-")))
-
-;;;***
-
-;;;### (autoloads nil "org-eww" "org-eww.el" (0 0 0 0))
-;;; Generated autoloads from org-eww.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-eww" '("org-eww-")))
-
-;;;***
-
-;;;### (autoloads nil "org-faces" "org-faces.el" (0 0 0 0))
-;;; Generated autoloads from org-faces.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-faces" '("org-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-feed" "org-feed.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-feed.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-feed" '("org-feed-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-footnote"
-;;;;;;  "org-footnote.el" (0 0 0 0))
-;;; Generated autoloads from org-footnote.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-footnote" '("org-footnote-")))
-
-;;;***
-
-;;;### (autoloads nil "org-gnus" "org-gnus.el" (0 0 0 0))
-;;; Generated autoloads from org-gnus.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-gnus" '("org-gnus-")))
-
-;;;***
-
-;;;### (autoloads nil "org-habit" "org-habit.el" (0 0 0 0))
-;;; Generated autoloads from org-habit.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-habit" '("org-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-id" "org-id.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-id.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-id" '("org-id-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-indent" "org-indent.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-indent.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-indent" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "org-info" "org-info.el" (0 0 0 0))
-;;; Generated autoloads from org-info.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-info" '("org-info-")))
-
-;;;***
-
-;;;### (autoloads nil "org-inlinetask" "org-inlinetask.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from org-inlinetask.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-inlinetask" '("org-inlinetask-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-irc" "org-irc.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-irc.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-irc" '("org-irc-")))
-
-;;;***
-
-;;;### (autoloads nil "org-lint" "org-lint.el" (0 0 0 0))
-;;; Generated autoloads from org-lint.el
-
-(autoload 'org-lint "org-lint" "\
-Check current Org buffer for syntax mistakes.
-
-By default, run all checkers.  With a `\\[universal-argument]' prefix ARG, select one
-category of checkers only.  With a `\\[universal-argument] \\[universal-argument]' prefix, run one precise
-checker by its name.
-
-ARG can also be a list of checker names, as symbols, to run.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-lint" '("org-lint-")))
-
-;;;***
-
-;;;### (autoloads nil "org-list" "org-list.el" (0 0 0 0))
-;;; Generated autoloads from org-list.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-list" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "org-loaddefs" "org-loaddefs.el" (0 0 0 0))
-;;; Generated autoloads from org-loaddefs.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-loaddefs" '(#("org" 0 3 (fontified nil)))))
-
-;;;***
-
-;;;### (autoloads nil "org-macro" "org-macro.el" (0 0 0 0))
-;;; Generated autoloads from org-macro.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-macro" '("org-macro-")))
-
-;;;***
-
-;;;### (autoloads nil "org-macs" "org-macs.el" (0 0 0 0))
-;;; Generated autoloads from org-macs.el
-
-(autoload 'org-load-noerror-mustsuffix "org-macs" "\
-Load FILE with optional arguments NOERROR and MUSTSUFFIX.
-
-\(fn FILE)" nil t)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-macs" '("org-")))
-
-;;;***
-
-;;;### (autoloads nil "org-mhe" "org-mhe.el" (0 0 0 0))
-;;; Generated autoloads from org-mhe.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-mhe" '("org-mhe-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-mobile" "org-mobile.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-mobile.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-mobile" '("org-mobile-")))
-
-;;;***
-
-;;;### (autoloads nil "org-mouse" "org-mouse.el" (0 0 0 0))
-;;; Generated autoloads from org-mouse.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-mouse" '("org-mouse-")))
-
-;;;***
-
-;;;### (autoloads nil "org-pcomplete" "org-pcomplete.el" (0 0 0 0))
-;;; Generated autoloads from org-pcomplete.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-pcomplete" '("org-" "pcomplete/org-mode/")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-plot" "org-plot.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-plot.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-plot" '("org-plot")))
-
-;;;***
-
-;;;### (autoloads nil "org-protocol" "org-protocol.el" (0 0 0 0))
-;;; Generated autoloads from org-protocol.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-protocol" '("org-protocol-")))
-
-;;;***
-
-;;;### (autoloads nil "org-rmail" "org-rmail.el" (0 0 0 0))
-;;; Generated autoloads from org-rmail.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-rmail" '("org-rmail-")))
-
-;;;***
-
-;;;### (autoloads nil "org-src" "org-src.el" (0 0 0 0))
-;;; Generated autoloads from org-src.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-src" '("org-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-table" "org-table.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-table.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-table" '("org")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "org-timer" "org-timer.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from org-timer.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-timer" '("org-timer-")))
-
-;;;***
-
-;;;### (autoloads nil "org-version" "org-version.el" (0 0 0 0))
-;;; Generated autoloads from org-version.el
-
-(autoload 'org-release "org-version" "\
-The release version of Org.
-Inserted by installing Org mode or when a release is made.
-
-\(fn)" nil nil)
-
-(autoload 'org-git-version "org-version" "\
-The Git version of Org mode.
-Inserted by installing Org or when a release is made.
-
-\(fn)" nil nil)
-
-(defvar org-odt-data-dir "/usr/share/emacs/etc/org" "\
-The location of ODT styles.")
-
-;;;***
-
-;;;### (autoloads nil "org-w3m" "org-w3m.el" (0 0 0 0))
-;;; Generated autoloads from org-w3m.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-w3m" '("org-w3m-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox" "ox.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from ox.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox" '("org-export-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-ascii" "ox-ascii.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-ascii.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-ascii" '("org-ascii-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-beamer" "ox-beamer.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-beamer.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-beamer" '("org-beamer-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-html" "ox-html.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-html.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-html" '("org-html-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-icalendar"
-;;;;;;  "ox-icalendar.el" (0 0 0 0))
-;;; Generated autoloads from ox-icalendar.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-icalendar" '("org-icalendar-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-latex" "ox-latex.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-latex.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-latex" '("org-latex-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-man" "ox-man.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-man.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-man" '("org-man-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-md" "ox-md.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-md.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-md" '("org-md-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-odt" "ox-odt.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-odt.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-odt" '("org-odt-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-org" "ox-org.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-org.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-org" '("org-org-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-publish" "ox-publish.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-publish.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-publish" '("org-publish-")))
-
-;;;***
-
-;;;### (autoloads "actual autoloads are elsewhere" "ox-texinfo" "ox-texinfo.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from ox-texinfo.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ox-texinfo" '("org-texinfo-")))
-
-;;;***
-
-;;;### (autoloads nil nil ("ob-core.el" "ob-keys.el" "ob-lob.el"
-;;;;;;  "ob-matlab.el" "ob-tangle.el" "ob.el" "org-archive.el" "org-attach.el"
-;;;;;;  "org-bbdb.el" "org-clock.el" "org-datetree.el" "org-element.el"
-;;;;;;  "org-feed.el" "org-footnote.el" "org-id.el" "org-indent.el"
-;;;;;;  "org-install.el" "org-irc.el" "org-mobile.el" "org-pkg.el"
-;;;;;;  "org-plot.el" "org-table.el" "org-timer.el" "ox-ascii.el"
-;;;;;;  "ox-beamer.el" "ox-html.el" "ox-icalendar.el" "ox-latex.el"
-;;;;;;  "ox-man.el" "ox-md.el" "ox-odt.el" "ox-org.el" "ox-publish.el"
-;;;;;;  "ox-texinfo.el" "ox.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; org-autoloads.el ends here
diff --git a/elpa/org-9.1.14/org-bbdb.el b/elpa/org-9.1.14/org-bbdb.el
deleted file mode 100644
index 5d36379..0000000
--- a/elpa/org-9.1.14/org-bbdb.el
+++ /dev/null
@@ -1,541 +0,0 @@
-;;; org-bbdb.el --- Support for links to BBDB entries -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Authors: Carsten Dominik <carsten at orgmode dot org>
-;;       Thomas Baumann <thomas dot baumann at ch dot tum dot de>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements links to BBDB database entries from within Org.
-;; Org mode loads this module by default - if this is not what you want,
-;; configure the variable `org-modules'.
-
-;; It also implements an interface (based on Ivar Rummelhoff's
-;; bbdb-anniv.el) for those Org users, who do not use the diary
-;; but who do want to include the anniversaries stored in the BBDB
-;; into the org-agenda.  If you already include the `diary' into the
-;; agenda, you might want to prefer to include the anniversaries in
-;; the diary using bbdb-anniv.el.
-;;
-;; Put the following in /somewhere/at/home/diary.org and make sure
-;; that this file is in `org-agenda-files'.
-;;
-;; %%(org-bbdb-anniversaries)
-;;
-;; For example my diary.org looks like:
-;; * Anniversaries
-;; #+CATEGORY: Anniv
-;; %%(org-bbdb-anniversaries)
-;;
-;;
-;; To add an anniversary to a BBDB record, press `C-o' in the record.
-;; You will be prompted for the field name, in this case it must be
-;; "anniversary".  If this is the first time you are using this field,
-;; you need to confirm that it should be created.
-;;
-;; The format of an anniversary field stored in BBDB is the following
-;; (items in {} are optional):
-;;
-;;     YYYY-MM-DD{ CLASS-OR-FORMAT-STRING}
-;;     {\nYYYY-MM-DD CLASS-OR-FORMAT-STRING}...
-;;
-;; CLASS-OR-FORMAT-STRING is one of two things:
-;;
-;;  - an identifier for a class of anniversaries (eg. birthday or
-;;    wedding) from `org-bbdb-anniversary-format-alist' which then
-;;    defines the format string for this class
-;;  - the (format) string displayed in the diary.
-;;
-;; You can enter multiple anniversaries for a single BBDB record by
-;; separating them with a newline character.  At the BBDB prompt for
-;; the field value, type `C-q C-j' to enter a newline between two
-;; anniversaries.
-;;
-;; If you omit the CLASS-OR-FORMAT-STRING entirely, it defaults to the
-;; value of `org-bbdb-default-anniversary-format' ("birthday" by
-;; default).
-;;
-;; The substitutions in the format string are (in order):
-;;  - the name of the record containing this anniversary
-;;  - the number of years
-;;  - an ordinal suffix (st, nd, rd, th) for the year
-;;
-;; See the documentation of `org-bbdb-anniversary-format-alist' for
-;; further options.
-;;
-;; Example
-;;
-;;       1973-06-22
-;;       20??-??-?? wedding
-;;       1998-03-12 %s created bbdb-anniv.el %d years ago
-;;
-;; From Org's agenda, you can use `C-c C-o' to jump to the BBDB
-;; link from which the entry at point originates.
-;;
-;;; Code:
-
-(require 'org)
-(require 'cl-lib)
-
-;; Declare external functions and variables
-
-(declare-function bbdb "ext:bbdb-com" (string elidep))
-(declare-function bbdb-company "ext:bbdb-com" (string elidep))
-(declare-function bbdb-current-record "ext:bbdb-com"
-		  (&optional planning-on-modifying))
-(declare-function bbdb-name "ext:bbdb-com" (string elidep))
-(declare-function bbdb-completing-read-record "ext:bbdb-com"
-		  (prompt &optional omit-records))
-(declare-function bbdb-record-field "ext:bbdb" (record field))
-(declare-function bbdb-record-getprop "ext:bbdb" (record property))
-(declare-function bbdb-record-name "ext:bbdb" (record))
-(declare-function bbdb-records "ext:bbdb"
-		  (&optional dont-check-disk already-in-db-buffer))
-(declare-function bbdb-split "ext:bbdb" (string separators))
-(declare-function bbdb-string-trim "ext:bbdb" (string))
-(declare-function bbdb-record-get-field "ext:bbdb" (record field))
-(declare-function bbdb-search-name "ext:bbdb-com" (regexp &optional layout))
-(declare-function bbdb-search-organization "ext:bbdb-com" (regexp &optional layout))
-
-;; `bbdb-record-note' was part of BBDB v3.x
-(declare-function bbdb-record-note "ext:bbdb" (record label))
-;; `bbdb-record-xfield' replaces it in recent BBDB v3.x+
-(declare-function bbdb-record-xfield "ext:bbdb" (record label))
-
-(declare-function calendar-leap-year-p "calendar" (year))
-(declare-function diary-ordinal-suffix "diary-lib" (n))
-
-(with-no-warnings (defvar date)) ;; unprefixed, from calendar.el
-
-;; Customization
-
-(defgroup org-bbdb-anniversaries nil
-  "Customizations for including anniversaries from BBDB into Agenda."
-  :group 'org-bbdb)
-
-(defcustom org-bbdb-default-anniversary-format "birthday"
-  "Default anniversary class."
-  :type  'string
-  :group 'org-bbdb-anniversaries
-  :require 'bbdb)
-
-(defcustom org-bbdb-general-anniversary-description-after 7
-  "When to switch anniversary descriptions to a more general format.
-
-Anniversary descriptions include the point in time, when the
-anniversary appears.  This is, in its most general form, just the
-date of the anniversary.  Or more specific terms, like \"today\",
-\"tomorrow\" or \"in n days\" are used to describe the time span.
-
-If the anniversary happens in less than that number of days, the
-specific description is used.  Otherwise, the general one is
-used."
-  :group 'org-bbdb-anniversaries
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type  'integer
-  :require 'bbdb
-  :safe #'integerp)
-
-(defcustom org-bbdb-anniversary-format-alist
-  '(("birthday" .
-     (lambda (name years suffix)
-       (concat "Birthday: [[bbdb:" name "][" name " ("
-    	       (format "%s" years)        ; handles numbers as well as strings
-    	       suffix ")]]")))
-    ("wedding" .
-     (lambda (name years suffix)
-       (concat "[[bbdb:" name "][" name "'s "
-    	       (format "%s" years)
-    	       suffix " wedding anniversary]]"))))
-  "How different types of anniversaries should be formatted.
-An alist of elements (STRING . FORMAT) where STRING is the name of an
-anniversary class and format is either:
-1) A format string with the following substitutions (in order):
-    - the name of the record containing this anniversary
-    - the number of years
-    - an ordinal suffix (st, nd, rd, th) for the year
-
-2) A function to be called with three arguments: NAME YEARS SUFFIX
-   (string int string) returning a string for the diary or nil.
-
-3) An Emacs Lisp form that should evaluate to a string (or nil) in the
-   scope of variables NAME, YEARS and SUFFIX (among others)."
-  :type '(alist :key-type   (string   :tag "Class")
-		:value-type (function :tag "Function"))
-  :group 'org-bbdb-anniversaries
-  :require 'bbdb)
-
-(defcustom org-bbdb-anniversary-field 'anniversary
-  "The BBDB field which contains anniversaries.
-The anniversaries are stored in the following format
-
-YYYY-MM-DD Class-or-Format-String
-
-where class is one of the customized classes for anniversaries;
-birthday and wedding are predefined.  Format-String can take three
-substitutions 1) the name of the record containing this
-anniversary, 2) the number of years, and 3) an ordinal suffix for
-the year.
-
-Multiple anniversaries can be separated by \\n."
-  :type    'symbol
-  :group   'org-bbdb-anniversaries
-  :require 'bbdb)
-
-(defcustom org-bbdb-extract-date-fun 'org-bbdb-anniv-extract-date
-  "How to retrieve `month date year' from the anniversary field.
-
-Customize if you have already filled your BBDB with dates
-different from YYYY-MM-DD.  The function must return a list (month
-date year)."
-  :type 'function
-  :group 'org-bbdb-anniversaries
-  :require 'bbdb)
-
-;; Install the link type
-(org-link-set-parameters "bbdb"
-			 :follow #'org-bbdb-open
-			 :export #'org-bbdb-export
-			 :complete #'org-bbdb-complete-link
-			 :store #'org-bbdb-store-link)
-
-;; Implementation
-(defun org-bbdb-store-link ()
-  "Store a link to a BBDB database entry."
-  (when (eq major-mode 'bbdb-mode)
-    ;; This is BBDB, we make this link!
-    (let* ((rec (bbdb-current-record))
-           (name (bbdb-record-name rec))
-	   (company (if (fboundp 'bbdb-record-getprop)
-                        (bbdb-record-getprop rec 'company)
-                      (car (bbdb-record-field rec 'organization))))
-	   (link (concat "bbdb:" name)))
-      (org-store-link-props :type "bbdb" :name name :company company
-			    :link link :description name)
-      link)))
-
-(defun org-bbdb-export (path desc format)
-  "Create the export version of a BBDB link specified by PATH or DESC.
-If exporting to either HTML or LaTeX FORMAT the link will be
-italicized, in all other cases it is left unchanged."
-  (when (string= desc (format "bbdb:%s" path))
-    (setq desc path))
-  (cond
-   ((eq format 'html) (format "<i>%s</i>" desc))
-   ((eq format 'latex) (format "\\textit{%s}" desc))
-   ((eq format 'odt)
-    (format "<text:span text:style-name=\"Emphasis\">%s</text:span>" desc))
-   (t desc)))
-
-(defun org-bbdb-open (name)
-  "Follow a BBDB link to NAME."
-  (require 'bbdb-com)
-  (let ((inhibit-redisplay (not debug-on-error)))
-    (if (fboundp 'bbdb-name)
-	(org-bbdb-open-old name)
-      (org-bbdb-open-new name))))
-
-(defun org-bbdb-open-old (name)
-  (catch 'exit
-    ;; Exact match on name
-    (bbdb-name (concat "\\`" name "\\'") nil)
-    (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
-    ;; Exact match on name
-    (bbdb-company (concat "\\`" name "\\'") nil)
-    (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
-    ;; Partial match on name
-    (bbdb-name name nil)
-    (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
-    ;; Partial match on company
-    (bbdb-company name nil)
-    (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
-    ;; General match including network address and notes
-    (bbdb name nil)
-    (when (= 0 (buffer-size (get-buffer "*BBDB*")))
-      (delete-window (get-buffer-window "*BBDB*"))
-      (error "No matching BBDB record"))))
-
-(defun org-bbdb-open-new (name)
-  (catch 'exit
-    ;; Exact match on name
-    (bbdb-search-name (concat "\\`" name "\\'") nil)
-    (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
-    ;; Exact match on name
-    (bbdb-search-organization (concat "\\`" name "\\'") nil)
-    (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
-    ;; Partial match on name
-    (bbdb-search-name name nil)
-    (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
-    ;; Partial match on company
-    (bbdb-search-organization name nil)
-    (if (< 0 (buffer-size (get-buffer "*BBDB*"))) (throw 'exit nil))
-    ;; General match including network address and notes
-    (bbdb name nil)
-    (when (= 0 (buffer-size (get-buffer "*BBDB*")))
-      (delete-window (get-buffer-window "*BBDB*"))
-      (error "No matching BBDB record"))))
-
-(defun org-bbdb-anniv-extract-date (time-str)
-  "Convert YYYY-MM-DD to (month date year).
-Argument TIME-STR is the value retrieved from BBDB.  If YYYY- is omitted
-it will be considered unknown."
-  (pcase (org-split-string time-str "-")
-    (`(,a ,b nil) (list (string-to-number a) (string-to-number b) nil))
-    (`(,a ,b ,c) (list (string-to-number b)
-		       (string-to-number c)
-		       (string-to-number a)))))
-
-(defun org-bbdb-anniv-split (str)
-  "Split multiple entries in the BBDB anniversary field.
-Argument STR is the anniversary field in BBDB."
-  (let ((pos (string-match "[ \t]" str)))
-    (if pos (list (substring str 0 pos)
-		  (bbdb-string-trim (substring str pos)))
-      (list str nil))))
-
-(defvar org-bbdb-anniv-hash nil
-  "A hash holding anniversaries extracted from BBDB.
-The hash table is created on first use.")
-
-(defvar org-bbdb-updated-p t
-  "This is non-nil if BBDB has been updated since we last built the hash.")
-
-(defun org-bbdb-make-anniv-hash ()
-  "Create a hash with anniversaries extracted from BBDB, for fast access.
-The anniversaries are assumed to be stored `org-bbdb-anniversary-field'."
-  (let ((old-bbdb (fboundp 'bbdb-record-getprop))
-	(record-func (if (fboundp 'bbdb-record-xfield)
-			 'bbdb-record-xfield
-		       'bbdb-record-note))
-	split tmp annivs)
-    (clrhash org-bbdb-anniv-hash)
-    (dolist (rec (bbdb-records))
-      (when (setq annivs (if old-bbdb
-			     (bbdb-record-getprop
-			      rec org-bbdb-anniversary-field)
-			   (funcall record-func
-				    rec org-bbdb-anniversary-field)))
-        (setq annivs (if old-bbdb
-			 (bbdb-split annivs "\n")
-		       ;; parameter order is reversed in new bbdb
-		       (bbdb-split "\n" annivs)))
-        (while annivs
-          (setq split (org-bbdb-anniv-split (pop annivs)))
-	  (pcase-let ((`(,m ,d ,y) (funcall org-bbdb-extract-date-fun
-					    (car split))))
-	    (setq tmp (gethash (list m d) org-bbdb-anniv-hash))
-            (puthash (list m d) (cons (list y
-                                            (bbdb-record-name rec)
-                                            (cadr split))
-                                      tmp)
-                     org-bbdb-anniv-hash))))))
-  (setq org-bbdb-updated-p nil))
-
-(defun org-bbdb-updated (_rec)
-  "Record the fact that BBDB has been updated.
-This is used by Org to re-create the anniversary hash table."
-  (setq org-bbdb-updated-p t))
-
-(add-hook 'bbdb-after-change-hook 'org-bbdb-updated)
-
-;;;###autoload
-(defun org-bbdb-anniversaries ()
-  "Extract anniversaries from BBDB for display in the agenda."
-  (require 'bbdb)
-  (require 'diary-lib)
-  (unless (hash-table-p org-bbdb-anniv-hash)
-    (setq org-bbdb-anniv-hash
-	  (make-hash-table :test 'equal :size 366)))
-
-  (when (or org-bbdb-updated-p
-            (= 0 (hash-table-count org-bbdb-anniv-hash)))
-    (org-bbdb-make-anniv-hash))
-
-  (let* ((m (car date))    ; month
-         (d (nth 1 date))  ; day
-         (y (nth 2 date))  ; year
-         (annivs (gethash (list m d) org-bbdb-anniv-hash))
-         (text ())
-         rec recs)
-
-    ;; we don't want to miss people born on Feb. 29th
-    (when (and (= m 3) (= d 1)
-               (not (null (gethash (list 2 29) org-bbdb-anniv-hash)))
-               (not (calendar-leap-year-p y)))
-      (setq recs (gethash (list 2 29) org-bbdb-anniv-hash))
-      (while (setq rec (pop recs))
-        (push rec annivs)))
-
-    (when annivs
-      (while (setq rec (pop annivs))
-        (when rec
-          (let* ((class (or (nth 2 rec)
-                            org-bbdb-default-anniversary-format))
-                 (form (or (cdr (assoc-string
-				 class org-bbdb-anniversary-format-alist t))
-                           class))	; (as format string)
-                 (name (nth 1 rec))
-                 (years (if (eq (car rec) nil)
-                            "unknown"
-                          (- y (car rec))))
-                 (suffix (if (eq (car rec) nil)
-                             ""
-                           (diary-ordinal-suffix years)))
-                 (tmp (cond
-                       ((functionp form)
-                        (funcall form name years suffix))
-                       ((listp form) (eval form))
-                       (t (format form name years suffix)))))
-	    (org-add-props tmp nil 'org-bbdb-name name)
-            (if text
-                (setq text (append text (list tmp)))
-              (setq text (list tmp)))))
-        ))
-    text))
-
-;;; Return list of anniversaries for today and the next n-1 (default: n=7) days.
-;;; This is meant to be used in an org file instead of org-bbdb-anniversaries:
-;;;
-;;; %%(org-bbdb-anniversaries-future)
-;;;
-;;; or
-;;;
-;;; %%(org-bbdb-anniversaries-future 3)
-;;;
-;;; to override the 7-day default.
-
-(defun org-bbdb-date-list (d n)
-  "Return a list of dates in (m d y) format from the given date D to n-1 days hence."
-  (let ((abs (calendar-absolute-from-gregorian d)))
-    (mapcar (lambda (i) (calendar-gregorian-from-absolute (+ abs i)))
-	    (number-sequence 0 (1- n)))))
-
-(defun org-bbdb-anniversary-description (agenda-date anniv-date)
-  "Return a string used to incorporate into an agenda anniversary entry.
-The calculation of the anniversary description string is based on
-the difference between the anniversary date, given as ANNIV-DATE,
-and the date on which the entry appears in the agenda, given as
-AGENDA-DATE.  This makes it possible to have different entries
-for the same event depending on if it occurs in the next few days
-or far away in the future."
-  (let ((delta (- (calendar-absolute-from-gregorian anniv-date)
-                  (calendar-absolute-from-gregorian agenda-date))))
-
-    (cond
-     ((= delta 0) " -- today\\&")
-     ((= delta 1) " -- tomorrow\\&")
-     ((< delta org-bbdb-general-anniversary-description-after) (format " -- in %d days\\&" delta))
-     ((pcase-let ((`(,month ,day ,year) anniv-date))
-	(format " -- %d-%02d-%02d\\&" year month day))))))
-
-
-(defun org-bbdb-anniversaries-future (&optional n)
-  "Return list of anniversaries for today and the next n-1 days (default n=7)."
-  (let ((n (or n 7)))
-    (when (<= n 0)
-      (error "The (optional) argument of `org-bbdb-anniversaries-future' \
-must be positive"))
-    (let (
-	  ;; List of relevant dates.
-	  (dates (org-bbdb-date-list date n))
-	  ;; Function to annotate text of each element of l with the
-	  ;; anniversary date d.
-	  (annotate-descriptions
-	   (lambda (agenda-date d l)
-	     (mapcar (lambda (x)
-		       ;; The assumption here is that x is a bbdb link
-		       ;; of the form [[bbdb:name][description]].
-		       ;; This function rather arbitrarily modifies
-		       ;; the description by adding the date to it in
-		       ;; a fixed format.
-		       (let ((desc (org-bbdb-anniversary-description
-				    agenda-date d)))
-			 (string-match "]]" x)
-			 (replace-match desc nil nil x)))
-		     l))))
-      ;; Map a function that generates anniversaries for each date
-      ;; over the dates and nconc the results into a single list. When
-      ;; it is no longer necessary to support older versions of Emacs,
-      ;; this can be done with a cl-mapcan; for now, we use the (apply
-      ;; #'nconc ...) method for compatibility.
-      (apply #'nconc
-	     (mapcar
-	      (lambda (d)
-		(let ((agenda-date date)
-		      (date d))
-		  ;; Rebind 'date' so that org-bbdb-anniversaries will
-		  ;; be fooled into giving us the list for the given
-		  ;; date and then annotate the descriptions for that
-		  ;; date.
-		  (funcall annotate-descriptions agenda-date d (org-bbdb-anniversaries))))
-	      dates)))))
-
-(defun org-bbdb-complete-link ()
-  "Read a bbdb link with name completion."
-  (require 'bbdb-com)
-  (let ((rec (bbdb-completing-read-record "Name: ")))
-    (concat "bbdb:"
-	    (bbdb-record-name (if (listp rec)
-				  (car rec)
-				rec)))))
-
-(defun org-bbdb-anniv-export-ical ()
-  "Extract anniversaries from BBDB and convert them to icalendar format."
-  (require 'bbdb)
-  (require 'diary-lib)
-  (unless (hash-table-p org-bbdb-anniv-hash)
-    (setq org-bbdb-anniv-hash
-	  (make-hash-table :test 'equal :size 366)))
-  (when (or org-bbdb-updated-p
-	    (= 0 (hash-table-count org-bbdb-anniv-hash)))
-    (org-bbdb-make-anniv-hash))
-  (maphash 'org-bbdb-format-vevent org-bbdb-anniv-hash))
-
-(defun org-bbdb-format-vevent (key recs)
-  (let (rec categ)
-    (while (setq rec (pop recs))
-      (setq categ (or (nth 2 rec) org-bbdb-default-anniversary-format))
-      (princ (format "BEGIN:VEVENT
-UID: ANNIV-%4i%02i%02i-%s
-DTSTART:%4i%02i%02i
-SUMMARY:%s
-DESCRIPTION:%s
-CATEGORIES:%s
-RRULE:FREQ=YEARLY
-END:VEVENT\n"
-		     (nth 0 rec) (nth 0 key) (nth 1 key)
-		     (mapconcat 'identity
-				(org-split-string (nth 1 rec) "[^a-zA-Z0-90]+")
-				"-")
-		     (nth 0 rec) (nth 0 key) (nth 1 key)
-		     (nth 1 rec)
-		     (concat (capitalize categ) " " (nth 1 rec))
-		     categ)))))
-
-(provide 'org-bbdb)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-bbdb.el ends here
diff --git a/elpa/org-9.1.14/org-bbdb.elc b/elpa/org-9.1.14/org-bbdb.elc
deleted file mode 100644
index cef6263..0000000
--- a/elpa/org-9.1.14/org-bbdb.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-bibtex.el b/elpa/org-9.1.14/org-bibtex.el
deleted file mode 100644
index 9dab0b4..0000000
--- a/elpa/org-9.1.14/org-bibtex.el
+++ /dev/null
@@ -1,748 +0,0 @@
-;;; org-bibtex.el --- Org links to BibTeX entries    -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2007-2018 Free Software Foundation, Inc.
-;;
-;; Authors: Bastien Guerry <bzg@gnu.org>
-;;       Carsten Dominik <carsten dot dominik at gmail dot com>
-;;       Eric Schulte <schulte dot eric at gmail dot com>
-;; Keywords: org, wp, capture
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;
-;;; Commentary:
-;;
-;; This file implements links to database entries in BibTeX files.
-;; Instead of defining a special link prefix, it uses the normal file
-;; links combined with a custom search mechanism to find entries
-;; by reference key.  And it constructs a nice description tag for
-;; the link that contains the author name, the year and a short title.
-;;
-;; It also stores detailed information about the entry so that
-;; capture templates can access and enter this information easily.
-;;
-;; The available properties for each entry are listed here:
-;;
-;; :author        :publisher      :volume      :pages
-;; :editor        :url            :number      :journal
-;; :title         :year           :series      :address
-;; :booktitle     :month          :annote      :abstract
-;; :key           :btype
-;;
-;; Here is an example of a capture template that use some of this
-;; information (:author :year :title :journal :pages):
-;;
-;; (setq org-capture-templates
-;;   '((?b "* READ %?\n\n%a\n\n%:author (%:year): %:title\n   \
-;;          In %:journal, %:pages.")))
-;;
-;; Let's say you want to capture this BibTeX entry:
-;;
-;; @Article{dolev83,
-;;   author = 	 {Danny Dolev and Andrew C. Yao},
-;;   title = 	 {On the security of public-key protocols},
-;;   journal = 	 {IEEE Transaction on Information Theory},
-;;   year = 	 1983,
-;;   volume =	 2,
-;;   number =	 29,
-;;   pages =	 {198--208},
-;;   month =	 {Mars}
-;; }
-;;
-;; M-x `org-capture' on this entry will produce this buffer:
-;;
-;; =====================================================================
-;; * READ <== [point here]
-;;
-;; [[file:file.bib::dolev83][Dolev & Yao 1983: security of public key protocols]]
-;;
-;; Danny Dolev and Andrew C. Yao (1983): On the security of public-key protocols
-;; In IEEE Transaction on Information Theory, 198--208.
-;; =====================================================================
-;;
-;; Additionally, the following functions are now available for storing
-;; bibtex entries within Org documents.
-;;
-;; - Run `org-bibtex' to export the current file to a .bib.
-;;
-;; - Run `org-bibtex-check' or `org-bibtex-check-all' to check and
-;;   fill in missing field of either the current, or all headlines
-;;
-;; - Run `org-bibtex-create' to add a bibtex entry
-;;
-;; - Use `org-bibtex-read' to read a bibtex entry after `point' or in
-;;   the active region, then call `org-bibtex-write' in a .org file to
-;;   insert a heading for the read bibtex entry
-;;
-;; - All Bibtex information is taken from the document compiled by
-;;   Andrew Roberts from the Bibtex manual, available at
-;;   http://www.andy-roberts.net/res/writing/latex/bibentries.pdf
-;;
-;;; History:
-;;
-;; The link creation part has been part of Org for a long time.
-;;
-;; Creating better capture template information was inspired by a request
-;; of Austin Frank: http://article.gmane.org/gmane.emacs.orgmode/4112
-;; and then implemented by Bastien Guerry.
-;;
-;; Eric Schulte eventually added the functions for translating between
-;; Org headlines and Bibtex entries, and for fleshing out the Bibtex
-;; fields of existing Org headlines.
-;;
-;; Org mode loads this module by default - if this is not what you want,
-;; configure the variable `org-modules'.
-
-;;; Code:
-
-(require 'org)
-(require 'bibtex)
-(require 'cl-lib)
-(require 'org-compat)
-
-(defvar org-agenda-overriding-header)
-(defvar org-agenda-search-view-always-boolean)
-(defvar org-bibtex-description nil) ; dynamically scoped from org.el
-(defvar org-id-locations)
-
-(declare-function bibtex-beginning-of-entry "bibtex" ())
-(declare-function bibtex-generate-autokey "bibtex" ())
-(declare-function bibtex-parse-entry "bibtex" (&optional content))
-(declare-function bibtex-url "bibtex" (&optional pos no-browse))
-
-
-;;; Bibtex data
-(defvar org-bibtex-types
-  '((:article
-     (:description . "An article from a journal or magazine")
-     (:required :author :title :journal :year)
-     (:optional :volume :number :pages :month :note))
-    (:book
-     (:description . "A book with an explicit publisher")
-     (:required (:editor :author) :title :publisher :year)
-     (:optional (:volume :number) :series :address :edition :month :note))
-    (:booklet
-     (:description . "A work that is printed and bound, but without a named publisher or sponsoring institution.")
-     (:required :title)
-     (:optional :author :howpublished :address :month :year :note))
-    (:conference
-     (:description . "")
-     (:required :author :title :booktitle :year)
-     (:optional :editor :pages :organization :publisher :address :month :note))
-    (:inbook
-     (:description . "A part of a book, which may be a chapter (or section or whatever) and/or a range of pages.")
-     (:required (:author :editor) :title (:chapter :pages) :publisher :year)
-     (:optional :crossref (:volume :number) :series :type :address :edition :month :note))
-    (:incollection
-     (:description . "A part of a book having its own title.")
-     (:required :author :title :booktitle :publisher :year)
-     (:optional :crossref :editor (:volume :number) :series :type :chapter :pages :address :edition :month :note))
-    (:inproceedings
-     (:description . "An article in a conference proceedings")
-     (:required :author :title :booktitle :year)
-     (:optional :crossref :editor (:volume :number) :series :pages :address :month :organization :publisher :note))
-    (:manual
-     (:description . "Technical documentation.")
-     (:required :title)
-     (:optional :author :organization :address :edition :month :year :note))
-    (:mastersthesis
-     (:description . "A Master’s thesis.")
-     (:required :author :title :school :year)
-     (:optional :type :address :month :note))
-    (:misc
-     (:description . "Use this type when nothing else fits.")
-     (:required)
-     (:optional :author :title :howpublished :month :year :note))
-    (:phdthesis
-     (:description . "A PhD thesis.")
-     (:required :author :title :school :year)
-     (:optional :type :address :month :note))
-    (:proceedings
-     (:description . "The proceedings of a conference.")
-     (:required :title :year)
-     (:optional :editor (:volume :number) :series :address :month :organization :publisher :note))
-    (:techreport
-     (:description . "A report published by a school or other institution.")
-     (:required :author :title :institution :year)
-     (:optional :type :address :month :note))
-    (:unpublished
-     (:description . "A document having an author and title, but not formally published.")
-     (:required :author :title :note)
-     (:optional :month :year)))
-  "Bibtex entry types with required and optional parameters.")
-
-(defvar org-bibtex-fields
-  '((:address      . "Usually the address of the publisher or other type of institution.  For major publishing houses, van Leunen recommends omitting the information entirely.  For small publishers, on the other hand, you can help the reader by giving the complete address.")
-    (:annote       . "An annotation.  It is not used by the standard bibliography styles, but may be used by others that produce an annotated bibliography.")
-    (:author       . "The name(s) of the author(s), in the format described in the LaTeX book.  Remember, all names are separated with the and keyword, and not commas.")
-    (:booktitle    . "Title of a book, part of which is being cited.  See the LaTeX book for how to type titles.  For book entries, use the title field instead.")
-    (:chapter      . "A chapter (or section or whatever) number.")
-    (:crossref     . "The database key of the entry being cross referenced.")
-    (:edition      . "The edition of a book for example, 'Second'.  This should be an ordinal, and should have the first letter capitalized, as shown here; the standard styles convert to lower case when necessary.")
-    (:editor       . "Name(s) of editor(s), typed as indicated in the LaTeX book.  If there is also an author field, then the editor field gives the editor of the book or collection in which the reference appears.")
-    (:howpublished . "How something strange has been published.  The first word should be capitalized.")
-    (:institution  . "The sponsoring institution of a technical report.")
-    (:journal      . "A journal name.")
-    (:key          . "Used for alphabetizing, cross-referencing, and creating a label when the author information is missing.  This field should not be confused with the key that appears in the \\cite command and at the beginning of the database entry.")
-    (:month        . "The month in which the work was published or, for an unpublished work, in which it was written.  You should use the standard three-letter abbreviation,")
-    (:note         . "Any additional information that can help the reader.  The first word should be capitalized.")
-    (:number       . "Any additional information that can help the reader.  The first word should be capitalized.")
-    (:organization . "The organization that sponsors a conference or that publishes a manual.")
-    (:pages        . "One or more page numbers or range of numbers, such as 42-111 or 7,41,73-97 or 43+ (the ‘+’ in this last example indicates pages following that don’t form simple range). BibTEX requires double dashes for page ranges (--).")
-    (:publisher    . "The publisher’s name.")
-    (:school       . "The name of the school where a thesis was written.")
-    (:series       . "The name of a series or set of books.  When citing an entire book, the title field gives its title and an optional series field gives the name of a series or multi-volume set in which the book is published.")
-    (:title        . "The work’s title, typed as explained in the LaTeX book.")
-    (:type         . "The type of a technical report for example, 'Research Note'.")
-    (:volume       . "The volume of a journal or multi-volume book.")
-    (:year         . "The year of publication or, for an unpublished work, the year it was written.  Generally it should consist of four numerals, such as 1984, although the standard styles can handle any year whose last four nonpunctuation characters are numerals, such as '(about 1984)'"))
-  "Bibtex fields with descriptions.")
-
-(defvar org-bibtex-entries nil
-  "List to hold parsed bibtex entries.")
-
-(defcustom org-bibtex-autogen-keys nil
-  "Set to a truth value to use `bibtex-generate-autokey' to generate keys."
-  :group 'org-bibtex
-  :version "24.1"
-  :type  'boolean)
-
-(defcustom org-bibtex-prefix nil
-  "Optional prefix for all bibtex property names.
-For example setting to `BIB_' would allow interoperability with fireforg."
-  :group 'org-bibtex
-  :version "24.1"
-  :type  '(choice
-	   (const nil)
-	   (string)))
-
-(defcustom org-bibtex-treat-headline-as-title t
-  "Treat headline text as title if title property is absent.
-If an entry is missing a title property, use the headline text as
-the property.  If this value is t, `org-bibtex-check' will ignore
-a missing title field."
-  :group 'org-bibtex
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-bibtex-headline-format-function
-  (lambda (entry) (cdr (assq :title entry)))
-  "Function returning the headline text for `org-bibtex-write'.
-It should take a single argument, the bibtex entry (an alist as
-returned by `org-bibtex-read').  The default value simply returns
-the entry title."
-  :group 'org-bibtex
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type 'function)
-
-(defcustom org-bibtex-export-arbitrary-fields nil
-  "When converting to bibtex allow fields not defined in `org-bibtex-fields'.
-This only has effect if `org-bibtex-prefix' is defined, so as to
-ensure that other org-properties, such as CATEGORY or LOGGING are
-not placed in the exported bibtex entry."
-  :group 'org-bibtex
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-bibtex-key-property "CUSTOM_ID"
-  "Property that holds the bibtex key.
-By default, this is CUSTOM_ID, which enables easy linking to
-bibtex headlines from within an org file.  This can be set to ID
-to enable global links, but only with great caution, as global
-IDs must be unique."
-  :group 'org-bibtex
-  :version "24.1"
-  :type 'string)
-
-(defcustom org-bibtex-tags nil
-  "List of tag(s) that should be added to new bib entries."
-  :group 'org-bibtex
-  :version "24.1"
-  :type '(repeat  :tag "Tag" (string)))
-
-(defcustom org-bibtex-tags-are-keywords nil
-  "Convert the value of the keywords field to tags and vice versa.
-
-When non-nil, comma-separated entries in a bibtex entry's keywords
-field will be converted to Org tags.  Note: spaces will be escaped
-with underscores, and characters that are not permitted in Org
-tags will be removed.
-
-When non-nil, local tags in an Org entry will be exported as
-a comma-separated string of keywords when exported to bibtex.
-If `org-bibtex-inherit-tags' is non-nil, inherited tags will also
-be exported as keywords.  Tags defined in `org-bibtex-tags' or
-`org-bibtex-no-export-tags' will not be exported."
-  :group 'org-bibtex
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-bibtex-no-export-tags nil
-  "List of tag(s) that should not be converted to keywords.
-This variable is relevant only if `org-bibtex-tags-are-keywords'
-is non-nil."
-  :group 'org-bibtex
-  :version "24.1"
-  :type '(repeat :tag "Tag" (string)))
-
-(defcustom org-bibtex-inherit-tags nil
-  "Controls whether inherited tags are converted to bibtex keywords.
-It is relevant only if `org-bibtex-tags-are-keywords' is non-nil.
-Tag inheritance itself is controlled by `org-use-tag-inheritance'
-and `org-exclude-tags-from-inheritance'."
-  :group 'org-bibtex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'boolean)
-
-(defcustom org-bibtex-type-property-name "btype"
-  "Property in which to store bibtex entry type (e.g., article)."
-  :group 'org-bibtex
-  :version "24.1"
-  :type 'string)
-
-
-;;; Utility functions
-(defun org-bibtex-get (property)
-  (let ((it (let ((org-special-properties
-                   (delete "FILE" (copy-sequence org-special-properties))))
-              (or
-               (org-entry-get (point) (upcase property))
-               (org-entry-get (point) (concat org-bibtex-prefix
-                                              (upcase property)))))))
-    (when it (org-trim it))))
-
-(defun org-bibtex-put (property value)
-  (let ((prop (upcase (if (keywordp property)
-                          (substring (symbol-name property) 1)
-                        property))))
-    (org-set-property
-     (concat (unless (string= org-bibtex-key-property prop) org-bibtex-prefix)
-	     prop)
-     value)))
-
-(defun org-bibtex-headline ()
-  "Return a bibtex entry of the given headline as a string."
-  (letrec ((val (lambda (key lst) (cdr (assoc key lst))))
-	   (to (lambda (string) (intern (concat ":" string))))
-	   (from (lambda (key) (substring (symbol-name key) 1)))
-	   (flatten (lambda (&rest lsts)
-		      (apply #'append (mapcar
-				       (lambda (e)
-					 (if (listp e) (apply flatten e) (list e)))
-				       lsts))))
-	   (id (org-bibtex-get org-bibtex-key-property))
-	   (type (org-bibtex-get org-bibtex-type-property-name))
-	   (tags (when org-bibtex-tags-are-keywords
-		   (delq nil
-			 (mapcar
-			  (lambda (tag)
-			    (unless (member tag
-					    (append org-bibtex-tags
-						    org-bibtex-no-export-tags))
-			      tag))
-			  (if org-bibtex-inherit-tags
-			      (org-get-tags-at)
-			    (org-get-local-tags-at)))))))
-    (when type
-      (let ((entry (format
-		    "@%s{%s,\n%s\n}\n" type id
-		    (mapconcat
-		     (lambda (pair)
-		       (format "  %s={%s}" (car pair) (cdr pair)))
-		     (remove nil
-			     (if (and org-bibtex-export-arbitrary-fields
-				      org-bibtex-prefix)
-				 (mapcar
-				  (lambda (kv)
-				    (let ((key (car kv)) (val0 (cdr kv)))
-				      (when (and
-					     (string-match org-bibtex-prefix key)
-					     (not (string=
-						   (downcase (concat org-bibtex-prefix
-								     org-bibtex-type-property-name))
-						   (downcase key))))
-					(cons (downcase (replace-regexp-in-string
-							 org-bibtex-prefix "" key))
-					      val0))))
-				  (org-entry-properties nil 'standard))
-			       (mapcar
-				(lambda (field)
-				  (let ((value (or (org-bibtex-get (funcall from field))
-						   (and (eq :title field)
-							(nth 4 (org-heading-components))))))
-				    (when value (cons (funcall from field) value))))
-				(funcall flatten
-					 (funcall val :required (funcall val (funcall to type) org-bibtex-types))
-					 (funcall val :optional (funcall val (funcall to type) org-bibtex-types))))))
-		     ",\n"))))
-	(with-temp-buffer
-	  (insert entry)
-	  (when tags
-	    (bibtex-beginning-of-entry)
-	    (if (re-search-forward "keywords.*=.*{\\(.*\\)}" nil t)
-		(progn (goto-char (match-end 1)) (insert ", "))
-	      (search-forward ",\n" nil t)
-	      (insert "  keywords={},\n")
-	      (search-backward "}," nil t))
-	    (insert (mapconcat #'identity tags ", ")))
-	  (buffer-string))))))
-
-(defun org-bibtex-ask (field)
-  (unless (assoc field org-bibtex-fields)
-    (error "Field:%s is not known" field))
-  (save-window-excursion
-    (let* ((name (substring (symbol-name field) 1))
-	   (buf-name (format "*Bibtex Help %s*" name)))
-      (with-output-to-temp-buffer buf-name
-	(princ (cdr (assoc field org-bibtex-fields))))
-      (with-current-buffer buf-name (visual-line-mode 1))
-      (org-fit-window-to-buffer (get-buffer-window buf-name))
-      (let ((result (read-from-minibuffer (format "%s: " name))))
-        (when (> (length result) 0) result)))))
-
-(defun org-bibtex-autokey ()
-  "Generate an autokey for the current headline."
-  (org-bibtex-put org-bibtex-key-property
-                  (if org-bibtex-autogen-keys
-                      (let* ((entry (org-bibtex-headline))
-			     (key
-			      (with-temp-buffer
-				(insert entry)
-				(bibtex-generate-autokey))))
-			;; test for duplicate IDs if using global ID
-			(when (and
-			       (equal org-bibtex-key-property "ID")
-			       (featurep 'org-id)
-			       (hash-table-p org-id-locations)
-			       (gethash key org-id-locations))
-			  (warn "Another entry has the same ID"))
-			key)
-                    (read-from-minibuffer "id: "))))
-
-(defun org-bibtex-fleshout (type &optional optional)
-  "Fleshout current heading, ensuring all required fields are present.
-With optional argument OPTIONAL, also prompt for optional fields."
-  (let ((val (lambda (key lst) (cdr (assoc key lst))))
-	(keyword (lambda (name) (intern (concat ":" (downcase name)))))
-	(name (lambda (keyword) (substring (symbol-name keyword) 1))))
-    (dolist (field (append
-		    (if org-bibtex-treat-headline-as-title
-			(remove :title (funcall val :required (funcall val type org-bibtex-types)))
-		      (funcall val :required (funcall val type org-bibtex-types)))
-		    (when optional (funcall val :optional (funcall val type org-bibtex-types)))))
-      (when (consp field) ; or'd pair of fields e.g., (:editor :author)
-        (let ((present (nth 0 (remove
-			       nil
-			       (mapcar
-				(lambda (f)
-				  (when (org-bibtex-get (funcall name f)) f))
-				field)))))
-          (setf field (or present (funcall keyword
-					   (completing-read
-					    "Field: " (mapcar name field)))))))
-      (let ((name (funcall name field)))
-        (unless (org-bibtex-get name)
-          (let ((prop (org-bibtex-ask field)))
-            (when prop (org-bibtex-put name prop)))))))
-  (when (and type (assoc type org-bibtex-types)
-             (not (org-bibtex-get org-bibtex-key-property)))
-    (org-bibtex-autokey)))
-
-
-;;; Bibtex link functions
-(org-link-set-parameters "bibtex"
-			 :follow #'org-bibtex-open
-			 :store #'org-bibtex-store-link)
-
-(defun org-bibtex-open (path)
-  "Visit the bibliography entry on PATH."
-  (let* ((search (when (string-match "::\\(.+\\)\\'" path)
-		   (match-string 1 path)))
-	 (path (substring path 0 (match-beginning 0))))
-    (org-open-file path t nil search)))
-
-(defun org-bibtex-store-link ()
-  "Store a link to a BibTeX entry."
-  (when (eq major-mode 'bibtex-mode)
-    (let* ((search (org-create-file-search-in-bibtex))
-	   (link (concat "file:" (abbreviate-file-name buffer-file-name)
-			 "::" search))
-	   (entry (mapcar ; repair strings enclosed in "..." or {...}
-		   (lambda(c)
-		     (if (string-match
-			  "^\\(?:{\\|\"\\)\\(.*\\)\\(?:}\\|\"\\)$" (cdr c))
-			 (cons (car c) (match-string 1 (cdr c))) c))
-		   (save-excursion
-		     (bibtex-beginning-of-entry)
-		     (bibtex-parse-entry)))))
-      (org-store-link-props
-       :key (cdr (assoc "=key=" entry))
-       :author (or (cdr (assoc "author" entry)) "[no author]")
-       :editor (or (cdr (assoc "editor" entry)) "[no editor]")
-       :title (or (cdr (assoc "title" entry)) "[no title]")
-       :booktitle (or (cdr (assoc "booktitle" entry)) "[no booktitle]")
-       :journal (or (cdr (assoc "journal" entry)) "[no journal]")
-       :publisher (or (cdr (assoc "publisher" entry)) "[no publisher]")
-       :pages (or (cdr (assoc "pages" entry)) "[no pages]")
-       :url (or (cdr (assoc "url" entry)) "[no url]")
-       :year (or (cdr (assoc "year" entry)) "[no year]")
-       :month (or (cdr (assoc "month" entry)) "[no month]")
-       :address (or (cdr (assoc "address" entry)) "[no address]")
-       :volume (or (cdr (assoc "volume" entry)) "[no volume]")
-       :number (or (cdr (assoc "number" entry)) "[no number]")
-       :annote (or (cdr (assoc "annote" entry)) "[no annotation]")
-       :series (or (cdr (assoc "series" entry)) "[no series]")
-       :abstract (or (cdr (assoc "abstract" entry)) "[no abstract]")
-       :btype (or (cdr (assoc "=type=" entry)) "[no type]")
-       :type "bibtex"
-       :link link
-       :description org-bibtex-description))))
-
-(defun org-create-file-search-in-bibtex ()
-  "Create the search string and description for a BibTeX database entry."
-  ;; Make a good description for this entry, using names, year and the title
-  ;; Put it into the `description' variable which is dynamically scoped.
-  (let ((bibtex-autokey-names 1)
-	(bibtex-autokey-names-stretch 1)
-	(bibtex-autokey-name-case-convert-function 'identity)
-	(bibtex-autokey-name-separator " & ")
-	(bibtex-autokey-additional-names " et al.")
-	(bibtex-autokey-year-length 4)
-	(bibtex-autokey-name-year-separator " ")
-	(bibtex-autokey-titlewords 3)
-	(bibtex-autokey-titleword-separator " ")
-	(bibtex-autokey-titleword-case-convert-function 'identity)
-	(bibtex-autokey-titleword-length 'infty)
-	(bibtex-autokey-year-title-separator ": "))
-    (setq org-bibtex-description (bibtex-generate-autokey)))
-  ;; Now parse the entry, get the key and return it.
-  (save-excursion
-    (bibtex-beginning-of-entry)
-    (cdr (assoc "=key=" (bibtex-parse-entry)))))
-
-(defun org-execute-file-search-in-bibtex (s)
-  "Find the link search string S as a key for a database entry."
-  (when (eq major-mode 'bibtex-mode)
-    ;; Yes, we want to do the search in this file.
-    ;; We construct a regexp that searches for "@entrytype{" followed by the key
-    (goto-char (point-min))
-    (and (re-search-forward (concat "@[a-zA-Z]+[ \t\n]*{[ \t\n]*"
-				    (regexp-quote s) "[ \t\n]*,") nil t)
-	 (goto-char (match-beginning 0)))
-    (if (and (match-beginning 0) (equal current-prefix-arg '(16)))
-	;; Use double prefix to indicate that any web link should be browsed
-	(let ((b (current-buffer)) (p (point)))
-	  ;; Restore the window configuration because we just use the web link
-	  (set-window-configuration org-window-config-before-follow-link)
-	  (with-current-buffer b
-	    (goto-char p)
-	    (bibtex-url)))
-      (recenter 0))  ; Move entry start to beginning of window
-    ;; return t to indicate that the search is done.
-    t))
-
-;; Finally add the link search function to the right hook.
-(add-hook 'org-execute-file-search-functions 'org-execute-file-search-in-bibtex)
-
-
-;;; Bibtex <-> Org headline translation functions
-(defun org-bibtex (filename)
-  "Export each headline in the current file to a bibtex entry.
-Headlines are exported using `org-bibtex-headline'."
-  (interactive
-   (list (read-file-name
-	  "Bibtex file: " nil nil nil
-	  (let ((file (buffer-file-name (buffer-base-buffer))))
-	    (and file
-		 (file-name-nondirectory
-		  (concat (file-name-sans-extension file) ".bib")))))))
-  (let ((error-point
-         (catch 'bib
-           (let ((bibtex-entries
-                  (remove nil (org-map-entries
-                               (lambda ()
-                                 (condition-case nil
-                                     (org-bibtex-headline)
-                                   (error (throw 'bib (point)))))))))
-             (with-temp-file filename
-               (insert (mapconcat #'identity bibtex-entries "\n")))
-             (message "Successfully exported %d BibTeX entries to %s"
-                      (length bibtex-entries) filename) nil))))
-    (when error-point
-      (goto-char error-point)
-      (message "Bibtex error at %S" (nth 4 (org-heading-components))))))
-
-(defun org-bibtex-check (&optional optional)
-  "Check the current headline for required fields.
-With prefix argument OPTIONAL also prompt for optional fields."
-  (interactive "P")
-  (save-restriction
-    (org-narrow-to-subtree)
-    (let ((type (let ((name (org-bibtex-get org-bibtex-type-property-name)))
-                  (when name (intern (concat ":" name))))))
-      (when type (org-bibtex-fleshout type optional)))))
-
-(defun org-bibtex-check-all (&optional optional)
-  "Check all headlines in the current file.
-With prefix argument OPTIONAL also prompt for optional fields."
-  (interactive) (org-map-entries (lambda () (org-bibtex-check optional))))
-
-(defun org-bibtex-create (&optional arg nonew)
-  "Create a new entry at the given level.
-With a prefix arg, query for optional fields as well.
-If nonew is t, add data to the headline of the entry at point."
-  (interactive "P")
-  (let* ((type (completing-read
-		"Type: " (mapcar (lambda (type)
-				   (substring (symbol-name (car type)) 1))
-				 org-bibtex-types)
-		nil nil (when nonew
-			  (org-bibtex-get org-bibtex-type-property-name))))
-	 (type (if (keywordp type) type (intern (concat ":" type))))
-	 (org-bibtex-treat-headline-as-title (if nonew nil t)))
-    (unless (assoc type org-bibtex-types)
-      (error "Type:%s is not known" type))
-    (if nonew
-	(org-back-to-heading)
-      (org-insert-heading)
-      (let ((title (org-bibtex-ask :title)))
-	(insert title)
-	(org-bibtex-put "TITLE" title)))
-    (org-bibtex-put org-bibtex-type-property-name
-		    (substring (symbol-name type) 1))
-    (org-bibtex-fleshout type arg)
-    (dolist (tag org-bibtex-tags) (org-toggle-tag tag 'on))))
-
-(defun org-bibtex-create-in-current-entry (&optional arg)
-  "Add bibliographical data to the current entry.
-With a prefix arg, query for optional fields."
-  (interactive "P")
-  (org-bibtex-create arg t))
-
-(defun org-bibtex-read ()
-  "Read a bibtex entry and save to `org-bibtex-entries'.
-This uses `bibtex-parse-entry'."
-  (interactive)
-  (let ((keyword (lambda (str) (intern (concat ":" (downcase str)))))
-	(clean-space (lambda (str) (replace-regexp-in-string
-			       "[[:space:]\n\r]+" " " str)))
-	(strip-delim
-	 (lambda (str)		     ; strip enclosing "..." and {...}
-	   (dolist (pair '((34 . 34) (123 . 125)))
-	     (when (and (> (length str) 1)
-			(= (aref str 0) (car pair))
-			(= (aref str (1- (length str))) (cdr pair)))
-	       (setf str (substring str 1 (1- (length str)))))) str)))
-    (push (mapcar
-           (lambda (pair)
-             (cons (let ((field (funcall keyword (car pair))))
-                     (pcase field
-                       (:=type= :type)
-                       (:=key= :key)
-                       (_ field)))
-                   (funcall clean-space (funcall strip-delim (cdr pair)))))
-           (save-excursion (bibtex-beginning-of-entry) (bibtex-parse-entry)))
-          org-bibtex-entries)))
-
-(defun org-bibtex-read-buffer (buffer)
-  "Read all bibtex entries in BUFFER and save to `org-bibtex-entries'.
-Return the number of saved entries."
-  (interactive "bBuffer: ")
-  (let ((start-length (length org-bibtex-entries)))
-    (with-current-buffer buffer
-      (save-excursion
-	(goto-char (point-max))
-	(while (not (= (point) (point-min)))
-	  (backward-char 1)
-	  (org-bibtex-read)
-	  (bibtex-beginning-of-entry))))
-    (let ((added (- (length org-bibtex-entries) start-length)))
-      (message "Parsed %d entries" added)
-      added)))
-
-(defun org-bibtex-read-file (file)
-  "Read FILE with `org-bibtex-read-buffer'."
-  (interactive "fFile: ")
-  (org-bibtex-read-buffer (find-file-noselect file 'nowarn 'rawfile)))
-
-(defun org-bibtex-write ()
-  "Insert a heading built from the first element of `org-bibtex-entries'."
-  (interactive)
-  (when (= (length org-bibtex-entries) 0)
-    (error "No entries in `org-bibtex-entries'"))
-  (let* ((entry (pop org-bibtex-entries))
-	 (org-special-properties nil) ; avoids errors with `org-entry-put'
-	 (val (lambda (field) (cdr (assoc field entry))))
-	 (togtag (lambda (tag) (org-toggle-tag tag 'on))))
-    (org-insert-heading)
-    (insert (funcall org-bibtex-headline-format-function entry))
-    (org-bibtex-put "TITLE" (funcall val :title))
-    (org-bibtex-put org-bibtex-type-property-name
-		    (downcase (funcall val :type)))
-    (dolist (pair entry)
-      (pcase (car pair)
-	(:title    nil)
-	(:type     nil)
-	(:key      (org-bibtex-put org-bibtex-key-property (cdr pair)))
-	(:keywords (if org-bibtex-tags-are-keywords
-		       (dolist (kw (split-string (cdr pair) ", *"))
-			 (funcall
-			  togtag
-			  (replace-regexp-in-string
-			   "[^[:alnum:]_@#%]" ""
-			   (replace-regexp-in-string "[ \t]+" "_" kw))))
-		     (org-bibtex-put (car pair) (cdr pair))))
-	(_ (org-bibtex-put (car pair) (cdr pair)))))
-    (mapc togtag org-bibtex-tags)))
-
-(defun org-bibtex-yank ()
-  "If kill ring holds a bibtex entry yank it as an Org headline."
-  (interactive)
-  (let (entry)
-    (with-temp-buffer (yank 1) (setf entry (org-bibtex-read)))
-    (if entry
-	(org-bibtex-write)
-      (error "Yanked text does not appear to contain a BibTeX entry"))))
-
-(defun org-bibtex-import-from-file (file)
-  "Read bibtex entries from FILE and insert as Org headlines after point."
-  (interactive "fFile: ")
-  (dotimes (_ (org-bibtex-read-file file))
-    (save-excursion (org-bibtex-write))
-    (re-search-forward org-property-end-re)
-    (open-line 1) (forward-char 1)))
-
-(defun org-bibtex-export-to-kill-ring ()
-  "Export current headline to kill ring as bibtex entry."
-  (interactive)
-  (let ((result (org-bibtex-headline)))
-    (kill-new result) result))
-
-(defun org-bibtex-search (string)
-  "Search for bibliographical entries in agenda files.
-This function relies `org-search-view' to locate results."
-  (interactive "sSearch string: ")
-  (let ((org-agenda-overriding-header "Bib search results:")
-        (org-agenda-search-view-always-boolean t))
-    (org-search-view nil
-		     (format "%s +{:%s%s:}"
-			     string (or org-bibtex-prefix "")
-			     org-bibtex-type-property-name))))
-
-(provide 'org-bibtex)
-
-;;; org-bibtex.el ends here
diff --git a/elpa/org-9.1.14/org-bibtex.elc b/elpa/org-9.1.14/org-bibtex.elc
deleted file mode 100644
index ae5c186..0000000
--- a/elpa/org-9.1.14/org-bibtex.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-capture.el b/elpa/org-9.1.14/org-capture.el
deleted file mode 100644
index cd54491..0000000
--- a/elpa/org-9.1.14/org-capture.el
+++ /dev/null
@@ -1,1960 +0,0 @@
-;;; org-capture.el --- Fast note taking in Org       -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains an alternative implementation of the functionality
-;; that used to be provided by org-remember.el.  The implementation is more
-;; streamlined, can produce more target types (e.g. plain list items or
-;; table lines).  Also, it does not use a temporary buffer for editing
-;; the captured entry - instead it uses an indirect buffer that visits
-;; the new entry already in the target buffer (this was an idea by Samuel
-;; Wales).  John Wiegley's excellent `remember.el' is not needed anymore
-;; for this implementation, even though we borrow heavily from its ideas.
-
-;; This implementation heavily draws on ideas by James TD Smith and
-;; Samuel Wales, and, of cause, uses John Wiegley's remember.el as inspiration.
-
-;;; TODO
-
-;; - find a clever way to not always insert an annotation maybe a
-;;   predicate function that can check for conditions for %a to be
-;;   used.  This could be one of the properties.
-
-;; - Should there be plist members that arrange for properties to be
-;;   asked for, like James proposed in his RFC?
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org)
-
-(declare-function org-at-encrypted-entry-p "org-crypt" ())
-(declare-function org-clock-update-mode-line "org-clock" (&optional refresh))
-(declare-function org-datetree-find-date-create "org-datetree" (date &optional keep-restriction))
-(declare-function org-decrypt-entry "org-crypt" ())
-(declare-function org-encrypt-entry "org-crypt" ())
-(declare-function org-table-analyze "org-table" ())
-(declare-function org-table-current-dline "org-table" ())
-(declare-function org-table-goto-line "org-table" (N))
-
-(defvar org-end-time-was-given)
-(defvar org-remember-default-headline)
-(defvar org-remember-templates)
-(defvar org-table-hlines)
-(defvar org-table-current-begin-pos)
-(defvar dired-buffers)
-
-(defvar org-capture-clock-was-started nil
-  "Internal flag, noting if the clock was started.")
-
-(defvar org-capture-last-stored-marker (make-marker)
-  "Marker pointing to the entry most recently stored with `org-capture'.")
-
-;; The following variable is scoped dynamically by org-protocol
-;; to indicate that the link properties have already been stored
-(defvar org-capture-link-is-already-stored nil)
-
-(defvar org-capture-is-refiling nil
-  "Non-nil when capture process is refiling an entry.")
-
-(defvar org-capture--prompt-history-table (make-hash-table :test #'equal)
-  "Hash table for all history lists per prompt.")
-
-(defvar org-capture--prompt-history nil
-  "History list for prompt placeholders.")
-
-(defgroup org-capture nil
-  "Options concerning capturing new entries."
-  :tag "Org Capture"
-  :group 'org)
-
-(defun org-capture-upgrade-templates (templates)
-  "Update the template list to the new format.
-TEMPLATES is a template list, as in `org-capture-templates'. The
-new format unifies all the date/week tree targets into one that
-also allows for an optional outline path to specify a target."
-  (let ((modified-templates
-	 (mapcar
-	  (lambda (entry)
-	    (pcase entry
-	      ;; Match templates with an obsolete "tree" target type. Replace
-	      ;; it with common `file+olp-datetree'.  Add new properties
-	      ;; (i.e., `:time-prompt' and `:tree-type') if needed.
-	      (`(,key ,desc ,type (file+datetree . ,path) ,tpl . ,props)
-	       `(,key ,desc ,type (file+olp+datetree ,@path) ,tpl ,@props))
-	      (`(,key ,desc ,type (file+datetree+prompt . ,path) ,tpl . ,props)
-	       `(,key ,desc ,type (file+olp+datetree ,@path) ,tpl
-		      :time-prompt t ,@props))
-	      (`(,key ,desc ,type (file+weektree . ,path) ,tpl . ,props)
-	       `(,key ,desc ,type (file+olp+datetree ,@path) ,tpl
-		      :tree-type week ,@props))
-	      (`(,key ,desc ,type (file+weektree+prompt . ,path) ,tpl . ,props)
-	       `(,key ,desc ,type (file+olp+datetree ,@path) ,tpl
-		      :tree-type week :time-prompt t ,@props))
-	      ;; Other templates are left unchanged.
-	      (_ entry)))
-	  templates)))
-    (unless (equal modified-templates templates)
-      (message "Deprecated date/weektree capture templates changed to `file+olp+datetree'."))
-    modified-templates))
-
-(defcustom org-capture-templates nil
-  "Templates for the creation of new entries.
-
-Each entry is a list with the following items:
-
-keys         The keys that will select the template, as a string, characters
-             only, for example \"a\" for a template to be selected with a
-             single key, or \"bt\" for selection with two keys.  When using
-             several keys, keys using the same prefix key must be together
-             in the list and preceded by a 2-element entry explaining the
-             prefix key, for example
-
-                     (\"b\" \"Templates for marking stuff to buy\")
-
-             The \"C\" key is used by default for quick access to the
-             customization of the template variable.  But if you want to use
-             that key for a template, you can.
-
-description  A short string describing the template, will be shown during
-             selection.
-
-type         The type of entry.  Valid types are:
-               entry       an Org node, with a headline.  Will be filed
-                           as the child of the target entry or as a
-                           top-level entry.
-               item        a plain list item, will be placed in the
-                           first plain list at the target
-                           location.
-               checkitem   a checkbox item.  This differs from the
-                           plain list item only is so far as it uses a
-                           different default template.
-               table-line  a new line in the first table at target location.
-               plain       text to be inserted as it is.
-
-target       Specification of where the captured item should be placed.
-             In Org files, targets usually define a node.  Entries will
-             become children of this node, other types will be added to the
-             table or list in the body of this node.
-
-             Most target specifications contain a file name.  If that file
-             name is the empty string, it defaults to `org-default-notes-file'.
-             A file can also be given as a variable or as a function called
-             with no argument.  When an absolute path is not specified for a
-             target, it is taken as relative to `org-directory'.
-
-             Valid values are:
-
-             (file \"path/to/file\")
-                 Text will be placed at the beginning or end of that file
-
-             (id \"id of existing Org entry\")
-                 File as child of this entry, or in the body of the entry
-
-             (file+headline \"path/to/file\" \"node headline\")
-                 Fast configuration if the target heading is unique in the file
-
-             (file+olp \"path/to/file\" \"Level 1 heading\" \"Level 2\" ...)
-                 For non-unique headings, the full outline path is safer
-
-             (file+regexp  \"path/to/file\" \"regexp to find location\")
-                 File to the entry matching regexp
-
-             (file+olp+datetree \"path/to/file\" \"Level 1 heading\" ...)
-                 Will create a heading in a date tree for today's date.
-                 If no heading is given, the tree will be on top level.
-                 To prompt for date instead of using TODAY, use the
-                 :time-prompt property.  To create a week-tree, use the
-                 :tree-type property.
-
-             (file+function \"path/to/file\" function-finding-location)
-                 A function to find the right location in the file
-
-             (clock)
-                File to the entry that is currently being clocked
-
-             (function function-finding-location)
-                Most general way: write your own function which both visits
-                the file and moves point to the right location
-
-template     The template for creating the capture item.  If you leave this
-             empty, an appropriate default template will be used.  See below
-             for more details.  Instead of a string, this may also be one of
-
-                 (file \"/path/to/template-file\")
-                 (function function-returning-the-template)
-
-             in order to get a template from a file, or dynamically
-             from a function.
-
-The rest of the entry is a property list of additional options.  Recognized
-properties are:
-
- :prepend            Normally newly captured information will be appended at
-                     the target location (last child, last table line,
-                     last list item...).  Setting this property will
-                     change that.
-
- :immediate-finish   When set, do not offer to edit the information, just
-                     file it away immediately.  This makes sense if the
-                     template only needs information that can be added
-                     automatically.
-
- :jump-to-captured   When set, jump to the captured entry when finished.
-
- :empty-lines        Set this to the number of lines the should be inserted
-                     before and after the new item.  Default 0, only common
-                     other value is 1.
-
- :empty-lines-before Set this to the number of lines the should be inserted
-                     before the new item.  Overrides :empty-lines for the
-                     number lines inserted before.
-
- :empty-lines-after  Set this to the number of lines the should be inserted
-                     after the new item.  Overrides :empty-lines for the
-                     number of lines inserted after.
-
- :clock-in           Start the clock in this item.
-
- :clock-keep         Keep the clock running when filing the captured entry.
-
- :clock-resume       Start the interrupted clock when finishing the capture.
-                     Note that :clock-keep has precedence over :clock-resume.
-                     When setting both to t, the current clock will run and
-                     the previous one will not be resumed.
-
- :time-prompt        Prompt for a date/time to be used for date/week trees
-                     and when filling the template.
-
- :tree-type          When `week', make a week tree instead of the month tree.
-
- :unnarrowed         Do not narrow the target buffer, simply show the
-                     full buffer.  Default is to narrow it so that you
-                     only see the new stuff.
-
- :table-line-pos     Specification of the location in the table where the
-                     new line should be inserted.  It should be a string like
-                     \"II-3\", meaning that the new line should become the
-                     third line before the second horizontal separator line.
-
- :kill-buffer        If the target file was not yet visited by a buffer when
-                     capture was invoked, kill the buffer again after capture
-                     is finalized.
-
-The template defines the text to be inserted.  Often this is an
-Org mode entry (so the first line should start with a star) that
-will be filed as a child of the target headline.  It can also be
-freely formatted text.  Furthermore, the following %-escapes will
-be replaced with content and expanded:
-
-  %[pathname] Insert the contents of the file given by
-              `pathname'.  These placeholders are expanded at the very
-              beginning of the process so they can be used to extend the
-              current template.
-  %(sexp)     Evaluate elisp `(sexp)' and replace it with the results.
-              Only placeholders pre-existing within the template, or
-              introduced with %[pathname] are expanded this way.  Since this
-              happens after expanding non-interactive %-escapes, those can
-              be used to fill the expression.
-  %<...>      The result of format-time-string on the ... format specification.
-  %t          Time stamp, date only.  The time stamp is the current time,
-              except when called from agendas with `\\[org-agenda-capture]' or
-              with `org-capture-use-agenda-date' set.
-  %T          Time stamp as above, with date and time.
-  %u, %U      Like the above, but inactive time stamps.
-  %i          Initial content, copied from the active region.  If %i is
-              indented, the entire inserted text will be indented as well.
-  %a          Annotation, normally the link created with `org-store-link'.
-  %A          Like %a, but prompt for the description part.
-  %l          Like %a, but only insert the literal link.
-  %c          Current kill ring head.
-  %x          Content of the X clipboard.
-  %k          Title of currently clocked task.
-  %K          Link to currently clocked task.
-  %n          User name (taken from the variable `user-full-name').
-  %f          File visited by current buffer when org-capture was called.
-  %F          Full path of the file or directory visited by current buffer.
-  %:keyword   Specific information for certain link types, see below.
-  %^g         Prompt for tags, with completion on tags in target file.
-  %^G         Prompt for tags, with completion on all tags in all agenda files.
-  %^t         Like %t, but prompt for date.  Similarly %^T, %^u, %^U.
-              You may define a prompt like: %^{Please specify birthday}t.
-              The default date is that of %t, see above.
-  %^C         Interactive selection of which kill or clip to use.
-  %^L         Like %^C, but insert as link.
-  %^{prop}p   Prompt the user for a value for property `prop'.
-  %^{prompt}  Prompt the user for a string and replace this sequence with it.
-              A default value and a completion table ca be specified like this:
-              %^{prompt|default|completion2|completion3|...}.
-  %?          After completing the template, position cursor here.
-  %\\1 ... %\\N Insert the text entered at the nth %^{prompt}, where N
-              is a number, starting from 1.
-
-Apart from these general escapes, you can access information specific to
-the link type that is created.  For example, calling `org-capture' in emails
-or in Gnus will record the author and the subject of the message, which you
-can access with \"%:from\" and \"%:subject\", respectively.  Here is a
-complete list of what is recorded for each link type.
-
-Link type               |  Available information
-------------------------+------------------------------------------------------
-bbdb                    |  %:type %:name %:company
-vm, wl, mh, mew, rmail, |  %:type %:subject %:message-id
-gnus                    |  %:from %:fromname %:fromaddress
-                        |  %:to   %:toname   %:toaddress
-                        |  %:fromto (either \"to NAME\" or \"from NAME\")
-                        |  %:date %:date-timestamp (as active timestamp)
-                        |  %:date-timestamp-inactive (as inactive timestamp)
-gnus                    |  %:group, for messages also all email fields
-eww, w3, w3m            |  %:type %:url
-info                    |  %:type %:file %:node
-calendar                |  %:type %:date
-
-When you need to insert a literal percent sign in the template,
-you can escape ambiguous cases with a backward slash, e.g., \\%i."
-  :group 'org-capture
-  :version "24.1"
-  :set (lambda (s v) (set s (org-capture-upgrade-templates v)))
-  :type
-  (let ((file-variants '(choice :tag "Filename       "
-				(file :tag "Literal")
-				(function :tag "Function")
-				(variable :tag "Variable")
-				(sexp :tag "Form"))))
-  `(repeat
-    (choice :value ("" "" entry (file "~/org/notes.org") "")
-	    (list :tag "Multikey description"
-		  (string :tag "Keys       ")
-		  (string :tag "Description"))
-	    (list :tag "Template entry"
-		  (string :tag "Keys           ")
-		  (string :tag "Description    ")
-		  (choice :tag "Capture Type   " :value entry
-			  (const :tag "Org entry" entry)
-			  (const :tag "Plain list item" item)
-			  (const :tag "Checkbox item" checkitem)
-			  (const :tag "Plain text" plain)
-			  (const :tag "Table line" table-line))
-		  (choice :tag "Target location"
-			  (list :tag "File"
-				(const :format "" file)
-				,file-variants)
-			  (list :tag "ID"
-				(const :format "" id)
-				(string :tag "  ID"))
-			  (list :tag "File & Headline"
-				(const :format "" file+headline)
-				,file-variants
-				(string :tag "  Headline"))
-			  (list :tag "File & Outline path"
-				(const :format "" file+olp)
-				,file-variants
-				(repeat :tag "Outline path" :inline t
-					(string :tag "Headline")))
-			  (list :tag "File & Regexp"
-				(const :format "" file+regexp)
-				,file-variants
-				(regexp :tag "  Regexp"))
-			  (list :tag "File [ & Outline path ] & Date tree"
-				(const :format "" file+olp+datetree)
-				,file-variants
-				(option (repeat :tag "Outline path" :inline t
-						(string :tag "Headline"))))
-			  (list :tag "File & function"
-				(const :format "" file+function)
-				,file-variants
-				(sexp :tag "  Function"))
-			  (list :tag "Current clocking task"
-				(const :format "" clock))
-			  (list :tag "Function"
-				(const :format "" function)
-				(sexp :tag "  Function")))
-		  (choice :tag "Template       "
-			  (string)
-			  (list :tag "File"
-				(const :format "" file)
-				(file :tag "Template file"))
-			  (list :tag "Function"
-				(const :format "" function)
-				(function :tag "Template function")))
-		  (plist :inline t
-			 ;; Give the most common options as checkboxes
-			 :options (((const :format "%v " :prepend) (const t))
-				   ((const :format "%v " :immediate-finish) (const t))
-				   ((const :format "%v " :jump-to-captured) (const t))
-				   ((const :format "%v " :empty-lines) (const 1))
-				   ((const :format "%v " :empty-lines-before) (const 1))
-				   ((const :format "%v " :empty-lines-after) (const 1))
-				   ((const :format "%v " :clock-in) (const t))
-				   ((const :format "%v " :clock-keep) (const t))
-				   ((const :format "%v " :clock-resume) (const t))
-				   ((const :format "%v " :time-prompt) (const t))
-				   ((const :format "%v " :tree-type) (const week))
-				   ((const :format "%v " :unnarrowed) (const t))
-				   ((const :format "%v " :table-line-pos) (string))
-				   ((const :format "%v " :kill-buffer) (const t)))))))))
-
-(defcustom org-capture-before-finalize-hook nil
-  "Hook that is run right before a capture process is finalized.
-The capture buffer is still current when this hook runs and it is
-widened to the entire buffer."
-  :group 'org-capture
-  :version "24.1"
-  :type 'hook)
-
-(defcustom org-capture-after-finalize-hook nil
-  "Hook that is run right after a capture process is finalized.
-Suitable for window cleanup."
-  :group 'org-capture
-  :version "24.1"
-  :type 'hook)
-
-(defcustom org-capture-prepare-finalize-hook nil
-  "Hook that is run before the finalization starts.
-The capture buffer is current and still narrowed."
-  :group 'org-capture
-  :version "24.1"
-  :type 'hook)
-
-(defcustom org-capture-bookmark t
-  "When non-nil, add a bookmark pointing at the last stored
-position when capturing."
-  :group 'org-capture
-  :version "24.3"
-  :type 'boolean)
-
-;;; The property list for keeping information about the capture process
-
-(defvar org-capture-plist nil
-  "Plist for the current capture process, global, to avoid having to pass it.")
-
-(defvar org-capture-current-plist nil
-  "Local variable holding the plist in a capture buffer.
-This is used to store the plist for use when finishing a capture process
-because another such process might have changed the global variable by then.
-
-Each time a new capture buffer has been set up, the global `org-capture-plist'
-is copied to this variable, which is local in the indirect buffer.")
-
-(defvar org-capture-clock-keep nil
-  "Local variable to store the value of the :clock-keep parameter.
-This is needed in case org-capture-finalize is called interactively.")
-
-(defun org-capture-put (&rest stuff)
-  "Add properties to the capture property list `org-capture-plist'."
-  (while stuff
-    (setq org-capture-plist (plist-put org-capture-plist
-				       (pop stuff) (pop stuff)))))
-(defun org-capture-get (prop &optional local)
-  "Get properties from the capture property list `org-capture-plist'.
-When LOCAL is set, use the local variable `org-capture-current-plist',
-this is necessary after initialization of the capture process,
-to avoid conflicts with other active capture processes."
-  (plist-get (if local org-capture-current-plist org-capture-plist) prop))
-
-(defun org-capture-member (prop &optional local)
-  "Is PROP a property in `org-capture-plist'.
-When LOCAL is set, use the local variable `org-capture-current-plist',
-this is necessary after initialization of the capture process,
-to avoid conflicts with other active capture processes."
-  (plist-get (if local org-capture-current-plist org-capture-plist) prop))
-
-;;; The minor mode
-
-(defvar org-capture-mode-map (make-sparse-keymap)
-  "Keymap for `org-capture-mode', a minor mode.
-Use this map to set additional keybindings for when Org mode is used
-for a capture buffer.")
-
-(defvar org-capture-mode-hook nil
-  "Hook for the minor `org-capture-mode'.")
-
-(define-minor-mode org-capture-mode
-  "Minor mode for special key bindings in a capture buffer.
-
-Turning on this mode runs the normal hook `org-capture-mode-hook'."
-  nil " Rem" org-capture-mode-map
-  (setq-local
-   header-line-format
-   (substitute-command-keys
-    "\\<org-capture-mode-map>Capture buffer.  Finish \
-`\\[org-capture-finalize]', refile `\\[org-capture-refile]', \
-abort `\\[org-capture-kill]'.")))
-(define-key org-capture-mode-map "\C-c\C-c" 'org-capture-finalize)
-(define-key org-capture-mode-map "\C-c\C-k" 'org-capture-kill)
-(define-key org-capture-mode-map "\C-c\C-w" 'org-capture-refile)
-
-;;; The main commands
-
-(defvar org-capture-initial nil)
-(defvar org-capture-entry nil)
-
-;;;###autoload
-(defun org-capture-string (string &optional keys)
-  "Capture STRING with the template selected by KEYS."
-  (interactive "sInitial text: \n")
-  (let ((org-capture-initial string)
-	(org-capture-entry (org-capture-select-template keys)))
-    (org-capture)))
-
-(defcustom org-capture-templates-contexts nil
-  "Alist of capture templates and valid contexts.
-
-For example, if you have a capture template \"c\" and you want
-this template to be accessible only from `message-mode' buffers,
-use this:
-
-   \\='((\"c\" ((in-mode . \"message-mode\"))))
-
-Here are the available contexts definitions:
-
-      in-file: command displayed only in matching files
-      in-mode: command displayed only in matching modes
-  not-in-file: command not displayed in matching files
-  not-in-mode: command not displayed in matching modes
-    in-buffer: command displayed only in matching buffers
-not-in-buffer: command not displayed in matching buffers
-   [function]: a custom function taking no argument
-
-If you define several checks, the agenda command will be
-accessible if there is at least one valid check.
-
-You can also bind a key to another capture template depending on
-contextual rules.
-
-    \\='((\"c\" \"d\" ((in-mode . \"message-mode\"))))
-
-Here it means: in `message-mode buffers', use \"c\" as the
-key for the capture template otherwise associated with \"d\".
-\(The template originally associated with \"d\" is not displayed
-to avoid duplicates.)"
-  :version "24.3"
-  :group 'org-capture
-  :type '(repeat (list :tag "Rule"
-		       (string :tag "        Capture key")
-		       (string :tag "Replace by template")
-		       (repeat :tag "Available when"
-			      (choice
-			       (cons :tag "Condition"
-				     (choice
-				      (const :tag "In file" in-file)
-				      (const :tag "Not in file" not-in-file)
-				      (const :tag "In buffer" in-buffer)
-				      (const :tag "Not in buffer" not-in-buffer)
-				      (const :tag "In mode" in-mode)
-				      (const :tag "Not in mode" not-in-mode))
-				     (regexp))
-			       (function :tag "Custom function"))))))
-
-(defcustom org-capture-use-agenda-date nil
-  "Non-nil means use the date at point when capturing from agendas.
-When nil, you can still capture using the date at point with
-`\\[org-agenda-capture]'."
-  :group 'org-capture
-  :version "24.3"
-  :type 'boolean)
-
-;;;###autoload
-(defun org-capture (&optional goto keys)
-  "Capture something.
-\\<org-capture-mode-map>
-This will let you select a template from `org-capture-templates', and
-then file the newly captured information.  The text is immediately
-inserted at the target location, and an indirect buffer is shown where
-you can edit it.  Pressing `\\[org-capture-finalize]' brings you back to the \
-previous
-state of Emacs, so that you can continue your work.
-
-When called interactively with a `\\[universal-argument]' prefix argument \
-GOTO, don't
-capture anything, just go to the file/headline where the selected
-template stores its notes.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix argument, go to \
-the last note stored.
-
-When called with a `C-0' (zero) prefix, insert a template at point.
-
-When called with a `C-1' (one) prefix, force prompting for a date when
-a datetree entry is made.
-
-ELisp programs can set KEYS to a string associated with a template
-in `org-capture-templates'.  In this case, interactive selection
-will be bypassed.
-
-If `org-capture-use-agenda-date' is non-nil, capturing from the
-agenda will use the date at point as the default date.  Then, a
-`C-1' prefix will tell the capture process to use the HH:MM time
-of the day at point (if any) or the current HH:MM time."
-  (interactive "P")
-  (when (and org-capture-use-agenda-date
-	     (eq major-mode 'org-agenda-mode))
-    (setq org-overriding-default-time
-	  (org-get-cursor-date (equal goto 1))))
-  (cond
-   ((equal goto '(4)) (org-capture-goto-target))
-   ((equal goto '(16)) (org-capture-goto-last-stored))
-   (t
-    (let* ((orig-buf (current-buffer))
-	   (annotation (if (and (boundp 'org-capture-link-is-already-stored)
-				org-capture-link-is-already-stored)
-			   (plist-get org-store-link-plist :annotation)
-			 (ignore-errors (org-store-link nil))))
-	   (entry (or org-capture-entry (org-capture-select-template keys)))
-	   initial)
-      (setq initial (or org-capture-initial
-			(and (org-region-active-p)
-			     (buffer-substring (point) (mark)))))
-      (when (stringp initial)
-	(remove-text-properties 0 (length initial) '(read-only t) initial))
-      (when (stringp annotation)
-	(remove-text-properties 0 (length annotation)
-				'(read-only t) annotation))
-      (cond
-       ((equal entry "C")
-	(customize-variable 'org-capture-templates))
-       ((equal entry "q")
-	(user-error "Abort"))
-       (t
-	(org-capture-set-plist entry)
-	(org-capture-get-template)
-	(org-capture-put :original-buffer orig-buf
-			 :original-file (or (buffer-file-name orig-buf)
-					    (and (featurep 'dired)
-						 (car (rassq orig-buf
-							     dired-buffers))))
-			 :original-file-nondirectory
-			 (and (buffer-file-name orig-buf)
-			      (file-name-nondirectory
-			       (buffer-file-name orig-buf)))
-			 :annotation annotation
-			 :initial initial
-			 :return-to-wconf (current-window-configuration)
-			 :default-time
-			 (or org-overriding-default-time
-			     (org-current-time)))
-	(org-capture-set-target-location)
-	(condition-case error
-	    (org-capture-put :template (org-capture-fill-template))
-	  ((error quit)
-	   (if (get-buffer "*Capture*") (kill-buffer "*Capture*"))
-	   (error "Capture abort: %s" error)))
-
-	(setq org-capture-clock-keep (org-capture-get :clock-keep))
-	(if (equal goto 0)
-	    ;;insert at point
-	    (org-capture-insert-template-here)
-	  (condition-case error
-	      (org-capture-place-template
-	       (eq (car (org-capture-get :target)) 'function))
-	    ((error quit)
-	     (if (and (buffer-base-buffer (current-buffer))
-		      (string-prefix-p "CAPTURE-" (buffer-name)))
-		 (kill-buffer (current-buffer)))
-	     (set-window-configuration (org-capture-get :return-to-wconf))
-	     (error "Capture template `%s': %s"
-		    (org-capture-get :key)
-		    (nth 1 error))))
-	  (if (and (derived-mode-p 'org-mode)
-		   (org-capture-get :clock-in))
-	      (condition-case nil
-		  (progn
-		    (if (org-clock-is-active)
-			(org-capture-put :interrupted-clock
-					 (copy-marker org-clock-marker)))
-		    (org-clock-in)
-		    (setq-local org-capture-clock-was-started t))
-		(error
-		 "Could not start the clock in this capture buffer")))
-	  (if (org-capture-get :immediate-finish)
-	      (org-capture-finalize)))))))))
-
-(defun org-capture-get-template ()
-  "Get the template from a file or a function if necessary."
-  (let ((txt (org-capture-get :template)) file)
-    (cond
-     ((and (listp txt) (eq (car txt) 'file))
-      (if (file-exists-p
-	   (setq file (expand-file-name (nth 1 txt) org-directory)))
-	  (setq txt (org-file-contents file))
-	(setq txt (format "* Template file %s not found" (nth 1 txt)))))
-     ((and (listp txt) (eq (car txt) 'function))
-      (if (fboundp (nth 1 txt))
-	  (setq txt (funcall (nth 1 txt)))
-	(setq txt (format "* Template function %s not found" (nth 1 txt)))))
-     ((not txt) (setq txt ""))
-     ((stringp txt))
-     (t (setq txt "* Invalid capture template")))
-    (org-capture-put :template txt)))
-
-(defun org-capture-finalize (&optional stay-with-capture)
-  "Finalize the capture process.
-With prefix argument STAY-WITH-CAPTURE, jump to the location of the
-captured item after finalizing."
-  (interactive "P")
-  (when (org-capture-get :jump-to-captured)
-    (setq stay-with-capture t))
-  (unless (and org-capture-mode
-	       (buffer-base-buffer (current-buffer)))
-    (error "This does not seem to be a capture buffer for Org mode"))
-
-  (run-hooks 'org-capture-prepare-finalize-hook)
-
-  ;; Did we start the clock in this capture buffer?
-  (when (and org-capture-clock-was-started
-	     org-clock-marker
-	     (eq (marker-buffer org-clock-marker) (buffer-base-buffer))
-	     (>= org-clock-marker (point-min))
-	     (< org-clock-marker (point-max)))
-    ;; Looks like the clock we started is still running.
-    (if org-capture-clock-keep
-	;; User may have completed clocked heading from the template.
-	;; Refresh clock mode line.
-	(org-clock-update-mode-line t)
-      ;; Clock out.  Possibly resume interrupted clock.
-      (let (org-log-note-clock-out) (org-clock-out))
-      (when (and (org-capture-get :clock-resume 'local)
-		 (markerp (org-capture-get :interrupted-clock 'local))
-		 (buffer-live-p (marker-buffer
-				 (org-capture-get :interrupted-clock 'local))))
-	(let ((clock-in-task (org-capture-get :interrupted-clock 'local)))
-	  (org-with-point-at clock-in-task (org-clock-in)))
-	(message "Interrupted clock has been resumed"))))
-
-  (let ((abort-note nil))
-    ;; Store the size of the capture buffer
-    (org-capture-put :captured-entry-size (- (point-max) (point-min)))
-    (widen)
-    ;; Store the insertion point in the target buffer
-    (org-capture-put :insertion-point (point))
-
-    (if org-note-abort
-	(let ((beg (org-capture-get :begin-marker 'local))
-	      (end (org-capture-get :end-marker 'local)))
-	  (if (not (and beg end)) (setq abort-note 'dirty)
-	    (setq abort-note t)
-	    (org-with-wide-buffer (kill-region beg end))))
-
-      ;; Postprocessing:  Update Statistics cookies, do the sorting
-      (when (derived-mode-p 'org-mode)
-	(save-excursion
-	  (when (ignore-errors (org-back-to-heading))
-	    (org-update-parent-todo-statistics)
-	    (org-update-checkbox-count)))
-	;; FIXME Here we should do the sorting
-	;; If we have added a table line, maybe recompute?
-	(when (and (eq (org-capture-get :type 'local) 'table-line)
-		   (org-at-table-p))
-	  (if (org-table-get-stored-formulas)
-	      (org-table-recalculate 'all) ;; FIXME: Should we iterate???
-	    (org-table-align))))
-      ;; Store this place as the last one where we stored something
-      ;; Do the marking in the base buffer, so that it makes sense after
-      ;; the indirect buffer has been killed.
-      (org-capture-store-last-position)
-
-      ;; Run the hook
-      (run-hooks 'org-capture-before-finalize-hook))
-
-    (when (org-capture-get :decrypted)
-      (save-excursion
-	(goto-char (org-capture-get :decrypted))
-	(org-encrypt-entry)))
-
-    ;; Kill the indirect buffer
-    (save-buffer)
-    (let ((return-wconf (org-capture-get :return-to-wconf 'local))
-	  (new-buffer (org-capture-get :new-buffer 'local))
-	  (kill-buffer (org-capture-get :kill-buffer 'local))
-	  (base-buffer (buffer-base-buffer (current-buffer))))
-
-      ;; Kill the indirect buffer
-      (kill-buffer (current-buffer))
-
-      ;; Narrow back the target buffer to its previous state
-      (with-current-buffer (org-capture-get :buffer)
-        (let ((reg (org-capture-get :initial-target-region))
-	      (pos (org-capture-get :initial-target-position))
-	      (ipt (org-capture-get :insertion-point))
-	      (size (org-capture-get :captured-entry-size)))
-	  (if (not reg)
-	      (widen)
-	    (cond ((< ipt (car reg))
-		   ;; insertion point is before the narrowed region
-		   (narrow-to-region (+ size (car reg)) (+ size (cdr reg))))
-		  ((> ipt (cdr reg))
-		   ;; insertion point is after the narrowed region
-		   (narrow-to-region (car reg) (cdr reg)))
-		  (t
-		   ;; insertion point is within the narrowed region
-		   (narrow-to-region (car reg) (+ size (cdr reg)))))
-	    ;; now place back the point at its original position
-	    (if (< ipt (car reg))
-		(goto-char (+ size pos))
-	      (goto-char (if (< ipt pos) (+ size pos) pos))))))
-
-      ;; Kill the target buffer if that is desired
-      (when (and base-buffer new-buffer kill-buffer)
-	(with-current-buffer base-buffer (save-buffer))
-	(kill-buffer base-buffer))
-
-      ;; Restore the window configuration before capture
-      (set-window-configuration return-wconf))
-
-    (run-hooks 'org-capture-after-finalize-hook)
-    ;; Special cases
-    (cond
-     (abort-note
-      (cl-case abort-note
-	(clean
-	 (message "Capture process aborted and target buffer cleaned up"))
-	(dirty
-	 (error "Capture process aborted, but target buffer could not be \
-cleaned up correctly"))))
-     (stay-with-capture
-      (org-capture-goto-last-stored)))
-    ;; Return if we did store something
-    (not abort-note)))
-
-(defun org-capture-refile ()
-  "Finalize the current capture and then refile the entry.
-Refiling is done from the base buffer, because the indirect buffer is then
-already gone.  Any prefix argument will be passed to the refile command."
-  (interactive)
-  (unless (eq (org-capture-get :type 'local) 'entry)
-    (user-error "Refiling from a capture buffer makes only sense \
-for `entry'-type templates"))
-  (let* ((base (or (buffer-base-buffer) (current-buffer)))
-	 (pos (make-marker))
-	 (org-capture-is-refiling t)
-	 (kill-buffer (org-capture-get :kill-buffer 'local))
-	 (jump-to-captured (org-capture-get :jump-to-captured 'local)))
-    ;; Since `org-capture-finalize' may alter buffer contents (e.g.,
-    ;; empty lines) around entry, use a marker to refer to the
-    ;; headline to be refiled.  Place the marker in the base buffer,
-    ;; as the current indirect one is going to be killed.
-    (set-marker pos (save-excursion (org-back-to-heading t) (point)) base)
-    ;; `org-capture-finalize' calls `org-capture-goto-last-stored' too
-    ;; early.  We want to wait for the refiling to be over, so we
-    ;; control when the latter function is called.
-    (org-capture-put :kill-buffer nil :jump-to-captured nil)
-    (unwind-protect
-	(progn
-	  (org-capture-finalize)
-	  (save-window-excursion
-	    (with-current-buffer base
-	      (org-with-wide-buffer
-	       (goto-char pos)
-	       (call-interactively 'org-refile))))
-	  (when kill-buffer (kill-buffer base))
-	  (when jump-to-captured (org-capture-goto-last-stored)))
-      (set-marker pos nil))))
-
-(defun org-capture-kill ()
-  "Abort the current capture process."
-  (interactive)
-  ;; FIXME: This does not do the right thing, we need to remove the
-  ;; new stuff by hand it is easy: undo, then kill the buffer
-  (let ((org-note-abort t)
-	(org-capture-before-finalize-hook nil))
-    (org-capture-finalize)))
-
-(defun org-capture-goto-last-stored ()
-  "Go to the location where the last capture note was stored."
-  (interactive)
-  (org-goto-marker-or-bmk org-capture-last-stored-marker
-			  (plist-get org-bookmark-names-plist
-				 :last-capture))
-  (message "This is the last note stored by a capture process"))
-
-;;; Supporting functions for handling the process
-
-(defun org-capture-put-target-region-and-position ()
-  "Store the initial region with `org-capture-put'."
-  (org-capture-put
-   :initial-target-region
-   ;; Check if the buffer is currently narrowed
-   (when (org-buffer-narrowed-p)
-     (cons (point-min) (point-max))))
-  ;; store the current point
-  (org-capture-put :initial-target-position (point)))
-
-(defvar org-time-was-given) ; dynamically scoped parameter
-(defun org-capture-set-target-location (&optional target)
-  "Find TARGET buffer and position.
-Store them in the capture property list."
-  (let ((target-entry-p t))
-    (save-excursion
-      (pcase (or target (org-capture-get :target))
-	(`(file ,path)
-	 (set-buffer (org-capture-target-buffer path))
-	 (org-capture-put-target-region-and-position)
-	 (widen)
-	 (setq target-entry-p nil))
-	(`(id ,id)
-	 (pcase (org-id-find id)
-	   (`(,path . ,position)
-	    (set-buffer (org-capture-target-buffer path))
-	    (widen)
-	    (org-capture-put-target-region-and-position)
-	    (goto-char position))
-	   (_ (error "Cannot find target ID \"%s\"" id))))
-	(`(file+headline ,path ,headline)
-	 (set-buffer (org-capture-target-buffer path))
-	 ;; Org expects the target file to be in Org mode, otherwise
-	 ;; it throws an error.  However, the default notes files
-	 ;; should work out of the box.  In this case, we switch it to
-	 ;; Org mode.
-	 (unless (derived-mode-p 'org-mode)
-	   (org-display-warning
-	    (format "Capture requirement: switching buffer %S to Org mode"
-		    (current-buffer)))
-	   (org-mode))
-	 (org-capture-put-target-region-and-position)
-	 (widen)
-	 (goto-char (point-min))
-	 (if (re-search-forward (format org-complex-heading-regexp-format
-					(regexp-quote headline))
-				nil t)
-	     (beginning-of-line)
-	   (goto-char (point-max))
-	   (unless (bolp) (insert "\n"))
-	   (insert "* " headline "\n")
-	   (beginning-of-line 0)))
-	(`(file+olp ,path . ,outline-path)
-	 (let ((m (org-find-olp (cons (org-capture-expand-file path)
-				      outline-path))))
-	   (set-buffer (marker-buffer m))
-	   (org-capture-put-target-region-and-position)
-	   (widen)
-	   (goto-char m)
-	   (set-marker m nil)))
-	(`(file+regexp ,path ,regexp)
-	 (set-buffer (org-capture-target-buffer path))
-	 (org-capture-put-target-region-and-position)
-	 (widen)
-	 (goto-char (point-min))
-	 (if (not (re-search-forward regexp nil t))
-	     (error "No match for target regexp in file %s" path)
-	   (goto-char (if (org-capture-get :prepend)
-			  (match-beginning 0)
-			(match-end 0)))
-	   (org-capture-put :exact-position (point))
-	   (setq target-entry-p
-		 (and (derived-mode-p 'org-mode) (org-at-heading-p)))))
-	(`(file+olp+datetree ,path . ,outline-path)
-	 (let ((m (if outline-path
-		      (org-find-olp (cons (org-capture-expand-file path)
-					  outline-path))
-		    (set-buffer (org-capture-target-buffer path))
-		    (point-marker))))
-	   (set-buffer (marker-buffer m))
-	   (org-capture-put-target-region-and-position)
-	   (widen)
-	   (goto-char m)
-	   (set-marker m nil)
-	   (require 'org-datetree)
-	   (org-capture-put-target-region-and-position)
-	   (widen)
-	   ;; Make a date/week tree entry, with the current date (or
-	   ;; yesterday, if we are extending dates for a couple of hours)
-	   (funcall
-	    (if (eq (org-capture-get :tree-type) 'week)
-		#'org-datetree-find-iso-week-create
-	      #'org-datetree-find-date-create)
-	    (calendar-gregorian-from-absolute
-	     (cond
-	      (org-overriding-default-time
-	       ;; Use the overriding default time.
-	       (time-to-days org-overriding-default-time))
-	      ((or (org-capture-get :time-prompt)
-		   (equal current-prefix-arg 1))
-	       ;; Prompt for date.
-	       (let ((prompt-time (org-read-date
-				   nil t nil "Date for tree entry:"
-				   (current-time))))
-		 (org-capture-put
-		  :default-time
-		  (cond ((and (or (not (boundp 'org-time-was-given))
-				  (not org-time-was-given))
-			      (not (= (time-to-days prompt-time) (org-today))))
-			 ;; Use 00:00 when no time is given for another
-			 ;; date than today?
-			 (apply #'encode-time
-				(append `(0 0 ,org-extend-today-until)
-					(cl-cdddr (decode-time prompt-time)))))
-			((string-match "\\([^ ]+\\)--?[^ ]+[ ]+\\(.*\\)"
-				       org-read-date-final-answer)
-			 ;; Replace any time range by its start.
-			 (apply #'encode-time
-				(org-read-date-analyze
-				 (replace-match "\\1 \\2" nil nil
-						org-read-date-final-answer)
-				 prompt-time (decode-time prompt-time))))
-			(t prompt-time)))
-		 (time-to-days prompt-time)))
-	      (t
-	       ;; Current date, possibly corrected for late night
-	       ;; workers.
-	       (org-today))))
-	    ;; the following is the keep-restriction argument for
-	    ;; org-datetree-find-date-create
-	    (if outline-path 'subtree-at-point))))
-	(`(file+function ,path ,function)
-	 (set-buffer (org-capture-target-buffer path))
-	 (org-capture-put-target-region-and-position)
-	 (widen)
-	 (funcall function)
-	 (org-capture-put :exact-position (point))
-	 (setq target-entry-p
-	       (and (derived-mode-p 'org-mode) (org-at-heading-p))))
-	(`(function ,fun)
-	 (funcall fun)
-	 (org-capture-put :exact-position (point))
-	 (setq target-entry-p
-	       (and (derived-mode-p 'org-mode) (org-at-heading-p))))
-	(`(clock)
-	 (if (and (markerp org-clock-hd-marker)
-		  (marker-buffer org-clock-hd-marker))
-	     (progn (set-buffer (marker-buffer org-clock-hd-marker))
-		    (org-capture-put-target-region-and-position)
-		    (widen)
-		    (goto-char org-clock-hd-marker))
-	   (error "No running clock that could be used as capture target")))
-	(target (error "Invalid capture target specification: %S" target)))
-
-      (org-capture-put :buffer (current-buffer)
-		       :pos (point)
-		       :target-entry-p target-entry-p
-		       :decrypted
-		       (and (featurep 'org-crypt)
-			    (org-at-encrypted-entry-p)
-			    (save-excursion
-			      (org-decrypt-entry)
-			      (and (org-back-to-heading t) (point))))))))
-
-(defun org-capture-expand-file (file)
-  "Expand functions, symbols and file names for FILE.
-When FILE is a function, call it.  When it is a form, evaluate
-it.  When it is a variable, return its value.  When it is
-a string, treat it as a file name, possibly expanding it
-according to `org-directory', and return it.  If it is the empty
-string, however, return `org-default-notes-file'.  In any other
-case, raise an error."
-  (let ((location (cond ((equal file "") org-default-notes-file)
-			((stringp file) (expand-file-name file org-directory))
-			((functionp file) (funcall file))
-			((and (symbolp file) (boundp file)) (symbol-value file))
-			(t nil))))
-    (or (org-string-nw-p location)
-	(error "Invalid file location: %S" location))))
-
-(defun org-capture-target-buffer (file)
-  "Get a buffer for FILE.
-FILE is a generalized file location, as handled by
-`org-capture-expand-file'."
-  (let ((file (org-capture-expand-file file)))
-    (or (org-find-base-buffer-visiting file)
-	(progn (org-capture-put :new-buffer t)
-	       (find-file-noselect file)))))
-
-(defun org-capture-place-template (&optional inhibit-wconf-store)
-  "Insert the template at the target location, and display the buffer.
-When `inhibit-wconf-store', don't store the window configuration, as it
-may have been stored before."
-  (unless inhibit-wconf-store
-    (org-capture-put :return-to-wconf (current-window-configuration)))
-  (delete-other-windows)
-  (org-switch-to-buffer-other-window
-   (org-capture-get-indirect-buffer (org-capture-get :buffer) "CAPTURE"))
-  (widen)
-  (outline-show-all)
-  (goto-char (org-capture-get :pos))
-  (setq-local outline-level 'org-outline-level)
-  (pcase (org-capture-get :type)
-    ((or `nil `entry) (org-capture-place-entry))
-    (`table-line (org-capture-place-table-line))
-    (`plain (org-capture-place-plain-text))
-    (`item (org-capture-place-item))
-    (`checkitem (org-capture-place-item)))
-  (org-capture-mode 1)
-  (setq-local org-capture-current-plist org-capture-plist))
-
-(defun org-capture-place-entry ()
-  "Place the template as a new Org entry."
-  (let ((reversed? (org-capture-get :prepend))
-	(level 1))
-    (when (org-capture-get :exact-position)
-      (goto-char (org-capture-get :exact-position)))
-    (cond
-     ;; Insert as a child of the current entry.
-     ((org-capture-get :target-entry-p)
-      (setq level (org-get-valid-level
-		   (if (org-at-heading-p) (org-outline-level) 1)
-		   1))
-      (if reversed? (outline-next-heading) (org-end-of-subtree t t)))
-     ;; Insert as a top-level entry at the beginning of the file.
-     (reversed?
-      (goto-char (point-min))
-      (unless (org-at-heading-p) (outline-next-heading)))
-     ;; Otherwise, insert as a top-level entry at the end of the file.
-     (t (goto-char (point-max))))
-    (unless (bolp) (insert "\n"))
-    (org-capture-empty-lines-before)
-    (let ((beg (point))
-	  (template (org-capture-get :template)))
-      (org-capture-verify-tree template)
-      (org-paste-subtree level template 'for-yank)
-      (org-capture-empty-lines-after)
-      (org-capture-position-for-last-stored beg)
-      (unless (org-at-heading-p) (outline-next-heading))
-      (let ((end (point)))
-	(org-capture-mark-kill-region beg end)
-	(org-capture-narrow beg end)
-	(when (or (re-search-backward "%\\?" beg t)
-		  (re-search-forward "%\\?" end t))
-	  (replace-match ""))))))
-
-(defun org-capture-place-item ()
-  "Place the template as a new plain list item."
-  (let* ((txt (org-capture-get :template))
-	 (target-entry-p (org-capture-get :target-entry-p))
-	 (ind 0)
-	 beg end)
-    (if (org-capture-get :exact-position)
-	(goto-char (org-capture-get :exact-position))
-      (cond
-       ((not target-entry-p)
-	;; Insert as top-level entry, either at beginning or at end of file
-	(setq beg (point-min) end (point-max)))
-       (t
-	(setq beg (1+ (point-at-eol))
-	      end (save-excursion (outline-next-heading) (point)))))
-      (setq ind nil)
-      (if (org-capture-get :prepend)
-	  (progn
-	    (goto-char beg)
-	    (when (org-list-search-forward (org-item-beginning-re) end t)
-	      (goto-char (match-beginning 0))
-	      (setq ind (org-get-indentation))))
-	(goto-char end)
-	(when (org-list-search-backward (org-item-beginning-re) beg t)
-	  (setq ind (org-get-indentation))
-	  (org-end-of-item)))
-      (unless ind (goto-char end)))
-    ;; Remove common indentation
-    (setq txt (org-remove-indentation txt))
-    ;; Make sure this is indeed an item
-    (unless (string-match (concat "\\`" (org-item-re)) txt)
-      (setq txt (concat "- "
-			(mapconcat 'identity (split-string txt "\n")
-				   "\n  "))))
-    ;; Prepare surrounding empty lines.
-    (unless (bolp) (insert "\n"))
-    (org-capture-empty-lines-before)
-    (setq beg (point))
-    (unless (eolp) (save-excursion (insert "\n")))
-    (unless ind
-      (org-indent-line)
-      (setq ind (org-get-indentation))
-      (delete-region beg (point)))
-    ;; Set the correct indentation, depending on context
-    (setq ind (make-string ind ?\ ))
-    (setq txt (concat ind
-		      (mapconcat 'identity (split-string txt "\n")
-				 (concat "\n" ind))
-		      "\n"))
-    ;; Insert item.
-    (insert txt)
-    (org-capture-empty-lines-after)
-    (org-capture-position-for-last-stored beg)
-    (setq end (point))
-    (org-capture-mark-kill-region beg end)
-    (org-capture-narrow beg end)
-    (if (or (re-search-backward "%\\?" beg t)
-	    (re-search-forward "%\\?" end t))
-	(replace-match ""))))
-
-(defun org-capture-place-table-line ()
-  "Place the template as a table line."
-  (require 'org-table)
-  (let* ((txt (org-capture-get :template))
-	 (target-entry-p (org-capture-get :target-entry-p))
-	 (table-line-pos (org-capture-get :table-line-pos))
-	 beg end)
-    (cond
-     ((org-capture-get :exact-position)
-      (goto-char (org-capture-get :exact-position)))
-     ((not target-entry-p)
-      ;; Table is not necessarily under a heading
-      (setq beg (point-min) end (point-max)))
-     (t
-      ;; WE are at a heading, limit search to the body
-      (setq beg (1+ (point-at-eol))
-	    end (save-excursion (outline-next-heading) (point)))))
-    (if (re-search-forward org-table-dataline-regexp end t)
-	(let ((b (org-table-begin)) (e (org-table-end)) (case-fold-search t))
-	  (goto-char e)
-	  (if (looking-at "[ \t]*#\\+tblfm:")
-	      (forward-line 1))
-	  (narrow-to-region b (point)))
-      (goto-char end)
-      (insert "\n|   |\n|----|\n|    |\n")
-      (narrow-to-region (1+ end) (point)))
-    ;; We are narrowed to the table, or to an empty line if there was no table
-
-    ;; Check if the template is good
-    (if (not (string-match org-table-dataline-regexp txt))
-	(setq txt "| %?Bad template |\n"))
-    (if (functionp table-line-pos)
-	(setq table-line-pos (funcall table-line-pos))
-      (setq table-line-pos (eval table-line-pos)))
-    (cond
-     ((and table-line-pos
-	   (string-match "\\(I+\\)\\([-+][0-9]\\)" table-line-pos))
-      (goto-char (point-min))
-      ;; we have a complex line specification
-      (let ((ll (ignore-errors
-		  (save-match-data (org-table-analyze))
-		  (aref org-table-hlines
-			(- (match-end 1) (match-beginning 1)))))
-	    (delta (string-to-number (match-string 2 table-line-pos))))
-	;; The user wants a special position in the table
-	(unless ll
-	  (error "Invalid table line specification \"%s\"" table-line-pos))
-	(goto-char org-table-current-begin-pos)
-	(forward-line (+ ll delta (if (< delta 0) 0 -1)))
-	(org-table-insert-row 'below)
-	(beginning-of-line 1)
-	(delete-region (point) (1+ (point-at-eol)))
-	(setq beg (point))
-	(insert txt)
-	(setq end (point))))
-     ((org-capture-get :prepend)
-      (goto-char (point-min))
-      (re-search-forward org-table-hline-regexp nil t)
-      (beginning-of-line 1)
-      (re-search-forward org-table-dataline-regexp nil t)
-      (beginning-of-line 1)
-      (setq beg (point))
-      (org-table-insert-row)
-      (beginning-of-line 1)
-      (delete-region (point) (1+ (point-at-eol)))
-      (insert txt)
-      (setq end (point)))
-     (t
-      (goto-char (point-max))
-      (re-search-backward org-table-dataline-regexp nil t)
-      (beginning-of-line 1)
-      (org-table-insert-row 'below)
-      (beginning-of-line 1)
-      (delete-region (point) (1+ (point-at-eol)))
-      (setq beg (point))
-      (insert txt)
-      (setq end (point))))
-    (goto-char beg)
-    (org-capture-position-for-last-stored 'table-line)
-    (if (or (re-search-backward "%\\?" beg t)
-	    (re-search-forward "%\\?" end t))
-	(replace-match ""))
-    (org-table-align)))
-
-(defun org-capture-place-plain-text ()
-  "Place the template plainly.
-If the target locator points at an Org node, place the template into
-the text of the entry, before the first child.  If not, place the
-template at the beginning or end of the file.
-Of course, if exact position has been required, just put it there."
-  (let* ((txt (org-capture-get :template))
-	 beg end)
-    (cond
-     ((org-capture-get :exact-position)
-      (goto-char (org-capture-get :exact-position)))
-     ((and (org-capture-get :target-entry-p)
-	   (bolp)
-	   (looking-at org-outline-regexp))
-      ;; we should place the text into this entry
-      (if (org-capture-get :prepend)
-	  ;; Skip meta data and drawers
-	  (org-end-of-meta-data t)
-	;; go to ent of the entry text, before the next headline
-	(outline-next-heading)))
-     (t
-      ;; beginning or end of file
-      (goto-char (if (org-capture-get :prepend) (point-min) (point-max)))))
-    (or (bolp) (newline))
-    (org-capture-empty-lines-before)
-    (setq beg (point))
-    (insert txt)
-    (org-capture-empty-lines-after)
-    (org-capture-position-for-last-stored beg)
-    (setq end (point))
-    (org-capture-mark-kill-region beg (1- end))
-    (org-capture-narrow beg (1- end))
-    (if (or (re-search-backward "%\\?" beg t)
-	    (re-search-forward "%\\?" end t))
-	(replace-match ""))))
-
-(defun org-capture-mark-kill-region (beg end)
-  "Mark the region that will have to be killed when aborting capture."
-  (let ((m1 (copy-marker beg))
-	(m2 (copy-marker end t)))
-    (org-capture-put :begin-marker m1)
-    (org-capture-put :end-marker m2)))
-
-(defun org-capture-position-for-last-stored (where)
-  "Memorize the position that should later become the position of last capture."
-  (cond
-   ((integerp where)
-    (org-capture-put :position-for-last-stored
-		     (move-marker (make-marker) where
-				  (or (buffer-base-buffer (current-buffer))
-				      (current-buffer)))))
-   ((eq where 'table-line)
-    (org-capture-put :position-for-last-stored
-		     (list 'table-line
-			   (org-table-current-dline))))
-   (t (error "This should not happen"))))
-
-(defun org-capture-store-last-position ()
-  "Store the last-captured position."
-  (let* ((where (org-capture-get :position-for-last-stored 'local))
-	 (pos (cond
-	       ((markerp where)
-		(prog1 (marker-position where)
-		  (move-marker where nil)))
-	       ((and (listp where) (eq (car where) 'table-line))
-		(if (org-at-table-p)
-		    (save-excursion
-		      (org-table-goto-line (nth 1 where))
-		      (point-at-bol))
-		  (point))))))
-    (with-current-buffer (buffer-base-buffer (current-buffer))
-      (org-with-point-at pos
-	(when org-capture-bookmark
-	  (let ((bookmark (plist-get org-bookmark-names-plist :last-capture)))
-	    (when bookmark (with-demoted-errors (bookmark-set bookmark)))))
-	(move-marker org-capture-last-stored-marker (point))))))
-
-(defun org-capture-narrow (beg end)
-  "Narrow, unless configuration says not to narrow."
-  (unless (org-capture-get :unnarrowed)
-    (narrow-to-region beg end)
-    (goto-char beg)))
-
-(defun org-capture-empty-lines-before (&optional n)
-  "Set the correct number of empty lines before the insertion point.
-Point will be after the empty lines, so insertion can directly be done."
-  (setq n (or n (org-capture-get :empty-lines-before)
-	      (org-capture-get :empty-lines) 0))
-  (let ((pos (point)))
-    (org-back-over-empty-lines)
-    (delete-region (point) pos)
-    (if (> n 0) (newline n))))
-
-(defun org-capture-empty-lines-after (&optional n)
-  "Set the correct number of empty lines after the inserted string.
-Point will remain at the first line after the inserted text."
-  (setq n (or n (org-capture-get :empty-lines-after)
-	      (org-capture-get :empty-lines) 0))
-  (org-back-over-empty-lines)
-  (while (looking-at "[ \t]*\n") (replace-match ""))
-  (let ((pos (point)))
-    (if (> n 0) (newline n))
-    (goto-char pos)))
-
-(defvar org-clock-marker) ; Defined in org.el
-
-(defun org-capture-insert-template-here ()
-  "Insert the capture template at point."
-  (let* ((template (org-capture-get :template))
-	 (type  (org-capture-get :type))
-	 beg end pp)
-    (unless (bolp) (insert "\n"))
-    (setq beg (point))
-    (cond
-     ((and (eq type 'entry) (derived-mode-p 'org-mode))
-      (org-capture-verify-tree (org-capture-get :template))
-      (org-paste-subtree nil template t))
-     ((and (memq type '(item checkitem))
-	   (derived-mode-p 'org-mode)
-	   (save-excursion (skip-chars-backward " \t\n")
-			   (setq pp (point))
-			   (org-in-item-p)))
-      (goto-char pp)
-      (org-insert-item)
-      (skip-chars-backward " ")
-      (skip-chars-backward "-+*0123456789).")
-      (delete-region (point) (point-at-eol))
-      (setq beg (point))
-      (org-remove-indentation template)
-      (insert template)
-      (org-capture-empty-lines-after)
-      (goto-char beg)
-      (org-list-repair)
-      (org-end-of-item))
-     (t
-      (insert template)
-      (org-capture-empty-lines-after)
-      (skip-chars-forward " \t\n")
-      (unless (eobp) (beginning-of-line))))
-    (setq end (point))
-    (goto-char beg)
-    (when (re-search-forward "%\\?" end t)
-      (replace-match ""))))
-
-(defun org-capture-set-plist (entry)
-  "Initialize the property list from the template definition."
-  (setq org-capture-plist (copy-sequence (nthcdr 5 entry)))
-  (org-capture-put :key (car entry) :description (nth 1 entry)
-		   :target (nth 3 entry))
-  (let ((txt (nth 4 entry)) (type (or (nth 2 entry) 'entry)))
-    (when (or (not txt) (and (stringp txt) (not (string-match "\\S-" txt))))
-      ;; The template may be empty or omitted for special types.
-      ;; Here we insert the default templates for such cases.
-      (cond
-       ((eq type 'item) (setq txt "- %?"))
-       ((eq type 'checkitem) (setq txt "- [ ] %?"))
-       ((eq type 'table-line) (setq txt "| %? |"))
-       ((member type '(nil entry)) (setq txt "* %?\n  %a"))))
-    (org-capture-put :template txt :type type)))
-
-(defun org-capture-goto-target (&optional template-key)
-  "Go to the target location of a capture template.
-The user is queried for the template."
-  (interactive)
-  (let ((entry (org-capture-select-template template-key)))
-    (unless entry (error "No capture template selected"))
-    (org-capture-set-plist entry)
-    (org-capture-set-target-location)
-    (pop-to-buffer-same-window (org-capture-get :buffer))
-    (goto-char (org-capture-get :pos))))
-
-(defun org-capture-get-indirect-buffer (&optional buffer prefix)
-  "Make an indirect buffer for a capture process.
-Use PREFIX as a prefix for the name of the indirect buffer."
-  (setq buffer (or buffer (current-buffer)))
-  (let ((n 1) (base (buffer-name buffer)) bname)
-    (setq bname (concat prefix "-" base))
-    (while (buffer-live-p (get-buffer bname))
-      (setq bname (concat prefix "-" (number-to-string (cl-incf n)) "-" base)))
-    (condition-case nil
-        (make-indirect-buffer buffer bname 'clone)
-      (error
-       (let ((buf (make-indirect-buffer buffer bname)))
-	 (with-current-buffer buf (org-mode))
-	 buf)))))
-
-(defun org-capture-verify-tree (tree)
-  "Throw error if TREE is not a valid tree."
-  (unless (org-kill-is-subtree-p tree)
-    (error "Template is not a valid Org entry or tree")))
-
-(defun org-mks (table title &optional prompt specials)
-  "Select a member of an alist with multiple keys.
-
-TABLE is the alist which should contain entries where the car is a string.
-There should be two types of entries.
-
-1. prefix descriptions like (\"a\" \"Description\")
-   This indicates that `a' is a prefix key for multi-letter selection, and
-   that there are entries following with keys like \"ab\", \"ax\"...
-
-2. Select-able members must have more than two elements, with the first
-   being the string of keys that lead to selecting it, and the second a
-   short description string of the item.
-
-The command will then make a temporary buffer listing all entries
-that can be selected with a single key, and all the single key
-prefixes.  When you press the key for a single-letter entry, it is selected.
-When you press a prefix key, the commands (and maybe further prefixes)
-under this key will be shown and offered for selection.
-
-TITLE will be placed over the selection in the temporary buffer,
-PROMPT will be used when prompting for a key.  SPECIAL is an
-alist with (\"key\" \"description\") entries.  When one of these
-is selected, only the bare key is returned."
-  (save-window-excursion
-    (let ((inhibit-quit t)
-	  (buffer (org-switch-to-buffer-other-window "*Org Select*"))
-	  (prompt (or prompt "Select: "))
-	  current)
-      (unwind-protect
-	  (catch 'exit
-	    (while t
-	      (erase-buffer)
-	      (insert title "\n\n")
-	      (let ((des-keys nil)
-		    (allowed-keys '("\C-g"))
-		    (cursor-type nil))
-		;; Populate allowed keys and descriptions keys
-		;; available with CURRENT selector.
-		(let ((re (format "\\`%s\\(.\\)\\'"
-				  (if current (regexp-quote current) "")))
-		      (prefix (if current (concat current " ") "")))
-		  (dolist (entry table)
-		    (pcase entry
-		      ;; Description.
-		      (`(,(and key (pred (string-match re))) ,desc)
-		       (let ((k (match-string 1 key)))
-			 (push k des-keys)
-			 (push k allowed-keys)
-			 (insert prefix "[" k "]" "..." "  " desc "..." "\n")))
-		      ;; Usable entry.
-		      (`(,(and key (pred (string-match re))) ,desc . ,_)
-		       (let ((k (match-string 1 key)))
-			 (insert prefix "[" k "]" "     " desc "\n")
-			 (push k allowed-keys)))
-		      (_ nil))))
-		;; Insert special entries, if any.
-		(when specials
-		  (insert "----------------------------------------------------\
----------------------------\n")
-		  (pcase-dolist (`(,key ,description) specials)
-		    (insert (format "[%s]     %s\n" key description))
-		    (push key allowed-keys)))
-		;; Display UI and let user select an entry or
-		;; a sub-level prefix.
-		(goto-char (point-min))
-		(unless (pos-visible-in-window-p (point-max))
-		  (org-fit-window-to-buffer))
-		(message prompt)
-		(let ((pressed (char-to-string (read-char-exclusive))))
-		  (while (not (member pressed allowed-keys))
-		    (message "Invalid key `%s'" pressed) (sit-for 1)
-		    (message prompt)
-		    (setq pressed (char-to-string (read-char-exclusive))))
-		  (setq current (concat current pressed))
-		  (cond
-		   ((equal pressed "\C-g") (user-error "Abort"))
-		   ;; Selection is a prefix: open a new menu.
-		   ((member pressed des-keys))
-		   ;; Selection matches an association: return it.
-		   ((let ((entry (assoc current table)))
-		      (and entry (throw 'exit entry))))
-		   ;; Selection matches a special entry: return the
-		   ;; selection prefix.
-		   ((assoc current specials) (throw 'exit current))
-		   (t (error "No entry available")))))))
-	(when buffer (kill-buffer buffer))))))
-
-;;; The template code
-(defun org-capture-select-template (&optional keys)
-  "Select a capture template.
-Lisp programs can force the template by setting KEYS to a string."
-  (let ((org-capture-templates
-	 (or (org-contextualize-keys
-	      (org-capture-upgrade-templates org-capture-templates)
-	      org-capture-templates-contexts)
-	     '(("t" "Task" entry (file+headline "" "Tasks")
-		"* TODO %?\n  %u\n  %a")))))
-    (if keys
-	(or (assoc keys org-capture-templates)
-	    (error "No capture template referred to by \"%s\" keys" keys))
-      (org-mks org-capture-templates
-	       "Select a capture template\n========================="
-	       "Template key: "
-	       '(("C" "Customize org-capture-templates")
-		 ("q" "Abort"))))))
-
-(defvar org-capture--clipboards nil
-  "List various clipboards values.")
-
-(defun org-capture-fill-template (&optional template initial annotation)
-  "Fill a template and return the filled template as a string.
-The template may still contain \"%?\" for cursor positioning."
-  (let* ((template (or template (org-capture-get :template)))
-	 (buffer (org-capture-get :buffer))
-	 (file (buffer-file-name (or (buffer-base-buffer buffer) buffer)))
-	 (time (let* ((c (or (org-capture-get :default-time) (current-time)))
-		      (d (decode-time c)))
-		 (if (< (nth 2 d) org-extend-today-until)
-		     (encode-time 0 59 23 (1- (nth 3 d)) (nth 4 d) (nth 5 d))
-		   c)))
-	 (v-t (format-time-string (org-time-stamp-format nil) time))
-	 (v-T (format-time-string (org-time-stamp-format t) time))
-	 (v-u (format-time-string (org-time-stamp-format nil t) time))
-	 (v-U (format-time-string (org-time-stamp-format t t) time))
-	 (v-c (and kill-ring (current-kill 0)))
-	 (v-x (or (org-get-x-clipboard 'PRIMARY)
-		  (org-get-x-clipboard 'CLIPBOARD)
-		  (org-get-x-clipboard 'SECONDARY)
-		  ""))			;ensure it is a string
-	 ;; `initial' and `annotation' might have been passed.  But if
-	 ;; the property list has them, we prefer those values.
-	 (v-i (or (plist-get org-store-link-plist :initial)
-		  (and (stringp initial) (org-no-properties initial))
-		  (org-capture-get :initial)
-		  ""))
-	 (v-a
-	  (let ((a (or (plist-get org-store-link-plist :annotation)
-		       annotation
-		       (org-capture-get :annotation)
-		       "")))
-	    ;; Is the link empty?  Then we do not want it...
-	    (if (equal a "[[]]") "" a)))
-	 (l-re "\\[\\[\\(.*?\\)\\]\\(\\[.*?\\]\\)?\\]")
-	 (v-A (if (and v-a (string-match l-re v-a))
-		  (replace-match "[[\\1][%^{Link description}]]" nil nil v-a)
-		v-a))
-	 (v-l (if (and v-a (string-match l-re v-a))
-		  (replace-match "\\1" nil nil v-a)
-		v-a))
-	 (v-n user-full-name)
-	 (v-k (if (marker-buffer org-clock-marker)
-		  (org-no-properties org-clock-heading)
-		""))
-	 (v-K (if (marker-buffer org-clock-marker)
-		  (org-make-link-string
-		   (format "%s::*%s"
-			   (buffer-file-name (marker-buffer org-clock-marker))
-			   v-k)
-		   v-k)
-		""))
-	 (v-f (or (org-capture-get :original-file-nondirectory) ""))
-	 (v-F (or (org-capture-get :original-file) ""))
-	 (org-capture--clipboards
-	  (delq nil
-		(list v-i
-		      (org-get-x-clipboard 'PRIMARY)
-		      (org-get-x-clipboard 'CLIPBOARD)
-		      (org-get-x-clipboard 'SECONDARY)
-		      v-c))))
-
-    (setq org-store-link-plist (plist-put org-store-link-plist :annotation v-a))
-    (setq org-store-link-plist (plist-put org-store-link-plist :initial v-i))
-
-    (unless template
-      (setq template "")
-      (message "no template") (ding)
-      (sit-for 1))
-    (save-window-excursion
-      (org-switch-to-buffer-other-window (get-buffer-create "*Capture*"))
-      (erase-buffer)
-      (setq buffer-file-name nil)
-      (setq mark-active nil)
-      (insert template)
-      (goto-char (point-min))
-
-      ;; %[] insert contents of a file.
-      (save-excursion
-	(while (re-search-forward "%\\[\\(.+\\)\\]" nil t)
-	  (let ((filename (expand-file-name (match-string 1)))
-		(beg (copy-marker (match-beginning 0)))
-		(end (copy-marker (match-end 0))))
-	    (unless (org-capture-escaped-%)
-	      (delete-region beg end)
-	      (set-marker beg nil)
-	      (set-marker end nil)
-	      (condition-case error
-		  (insert-file-contents filename)
-		(error
-		 (insert (format "%%![couldn not insert %s: %s]"
-				 filename
-				 error))))))))
-
-      ;; Mark %() embedded elisp for later evaluation.
-      (org-capture-expand-embedded-elisp 'mark)
-
-      ;; Expand non-interactive templates.
-      (let ((regexp "%\\(:[-a-za-z]+\\|<\\([^>\n]+\\)>\\|[aAcfFikKlntTuUx]\\)"))
-	(save-excursion
-	  (while (re-search-forward regexp nil t)
-	    ;; `org-capture-escaped-%' may modify buffer and cripple
-	    ;; match-data.  Use markers instead.  Ditto for other
-	    ;; templates.
-	    (let ((pos (copy-marker (match-beginning 0)))
-		  (end (copy-marker (match-end 0)))
-		  (value (match-string 1))
-		  (time-string (match-string 2)))
-	      (unless (org-capture-escaped-%)
-		(delete-region pos end)
-		(set-marker pos nil)
-		(set-marker end nil)
-		(let* ((inside-sexp? (org-capture-inside-embedded-elisp-p))
-		       (replacement
-			(pcase (string-to-char value)
-			  (?< (format-time-string time-string time))
-			  (?:
-			   (or (plist-get org-store-link-plist (intern value))
-			       ""))
-			  (?i
-			   (if inside-sexp? v-i
-			     ;; Outside embedded Lisp, repeat leading
-			     ;; characters before initial place holder
-			     ;; every line.
-			     (let ((lead (buffer-substring-no-properties
-					  (line-beginning-position) (point))))
-			       (replace-regexp-in-string "\n\\(.\\)"
-							 (concat lead "\\1")
-							 v-i nil nil 1))))
-			  (?a v-a)
-			  (?A v-A)
-			  (?c v-c)
-			  (?f v-f)
-			  (?F v-F)
-			  (?k v-k)
-			  (?K v-K)
-			  (?l v-l)
-			  (?n v-n)
-			  (?t v-t)
-			  (?T v-T)
-			  (?u v-u)
-			  (?U v-U)
-			  (?x v-x))))
-		  (insert
-		   (if inside-sexp?
-		       ;; Escape sensitive characters.
-		       (replace-regexp-in-string "[\\\"]" "\\\\\\&" replacement)
-		     replacement))))))))
-
-      ;; Expand %() embedded Elisp.  Limit to Sexp originally marked.
-      (org-capture-expand-embedded-elisp)
-
-      ;; Expand interactive templates.  This is the last step so that
-      ;; template is mostly expanded when prompting happens.  Turn on
-      ;; Org mode and set local variables.  This is to support
-      ;; completion in interactive prompts.
-      (let ((org-inhibit-startup t)) (org-mode))
-      (org-clone-local-variables buffer "\\`org-")
-      (let (strings)			; Stores interactive answers.
-	(save-excursion
-	  (let ((regexp "%\\^\\(?:{\\([^}]*\\)}\\)?\\([CgGLptTuU]\\)?"))
-	    (while (re-search-forward regexp nil t)
-	      (let* ((items (and (match-end 1)
-				 (save-match-data
-				   (split-string (match-string-no-properties 1)
-						 "|"))))
-		     (key (match-string 2))
-		     (beg (copy-marker (match-beginning 0)))
-		     (end (copy-marker (match-end 0)))
-		     (prompt (nth 0 items))
-		     (default (nth 1 items))
-		     (completions (nthcdr 2 items)))
-		(unless (org-capture-escaped-%)
-		  (delete-region beg end)
-		  (set-marker beg nil)
-		  (set-marker end nil)
-		  (pcase key
-		    ((or "G" "g")
-		     (let* ((org-last-tags-completion-table
-			     (org-global-tags-completion-table
-			      (cond ((equal key "G") (org-agenda-files))
-				    (file (list file))
-				    (t nil))))
-			    (org-add-colon-after-tag-completion t)
-			    (ins (mapconcat
-				  #'identity
-				  (org-split-string
-				   (completing-read
-				    (if prompt (concat prompt ": ") "Tags: ")
-				    'org-tags-completion-function nil nil nil
-				    'org-tags-history)
-				   "[^[:alnum:]_@#%]+")
-				  ":")))
-		       (when (org-string-nw-p ins)
-			 (unless (eq (char-before) ?:) (insert ":"))
-			 (insert ins)
-			 (unless (eq (char-after) ?:) (insert ":"))
-			 (and (org-at-heading-p)
-			      (let ((org-ignore-region t))
-				(org-set-tags nil 'align))))))
-		    ((or "C" "L")
-		     (let ((insert-fun (if (equal key "C") #'insert
-					 (lambda (s) (org-insert-link 0 s)))))
-		       (pcase org-capture--clipboards
-			 (`nil nil)
-			 (`(,value) (funcall insert-fun value))
-			 (`(,first-value . ,_)
-			  (funcall insert-fun
-				   (read-string "Clipboard/kill value: "
-						first-value
-						'org-capture--clipboards
-						first-value)))
-			 (_ (error "Invalid `org-capture--clipboards' value: %S"
-				   org-capture--clipboards)))))
-		    ("p" (org-set-property prompt nil))
-		    ((or "t" "T" "u" "U")
-		     ;; These are the date/time related ones.
-		     (let* ((upcase? (equal (upcase key) key))
-			    (org-end-time-was-given nil)
-			    (time (org-read-date upcase? t nil prompt)))
-		       (org-insert-time-stamp
-			time (or org-time-was-given upcase?)
-			(member key '("u" "U"))
-			nil nil (list org-end-time-was-given))))
-		    (`nil
-		     ;; Load history list for current prompt.
-		     (setq org-capture--prompt-history
-			   (gethash prompt org-capture--prompt-history-table))
-		     (push (org-completing-read
-			    (concat (or prompt "Enter string")
-				    (and default (format " [%s]" default))
-				    ": ")
-			    completions
-			    nil nil nil 'org-capture--prompt-history default)
-			   strings)
-		     (insert (car strings))
-		     ;; Save updated history list for current prompt.
-		     (puthash prompt org-capture--prompt-history
-			      org-capture--prompt-history-table))
-		    (_
-		     (error "Unknown template placeholder: \"%%^%s\""
-			    key))))))))
-
-	;; Replace %n escapes with nth %^{...} string.
-	(setq strings (nreverse strings))
-	(save-excursion
-	  (while (re-search-forward "%\\\\\\([1-9][0-9]*\\)" nil t)
-	    (unless (org-capture-escaped-%)
-	      (replace-match
-	       (nth (1- (string-to-number (match-string 1))) strings)
-	       nil t)))))
-
-      ;; Make sure there are no empty lines before the text, and that
-      ;; it ends with a newline character.
-      (skip-chars-forward " \t\n")
-      (delete-region (point-min) (line-beginning-position))
-      (goto-char (point-max))
-      (skip-chars-backward " \t\n")
-      (delete-region (point) (point-max))
-      (insert "\n")
-
-      ;; Return the expanded template and kill the capture buffer.
-      (untabify (point-min) (point-max))
-      (set-buffer-modified-p nil)
-      (prog1 (buffer-substring-no-properties (point-min) (point-max))
-	(kill-buffer (current-buffer))))))
-
-(defun org-capture-escaped-% ()
-  "Non-nil if % was escaped.
-If yes, unescape it now.  Assume match-data contains the
-placeholder to check."
-  (save-excursion
-    (goto-char (match-beginning 0))
-    (let ((n (abs (skip-chars-backward "\\\\"))))
-      (delete-char (/ (1+ n) 2))
-      (= (% n 2) 1))))
-
-(defun org-capture-expand-embedded-elisp (&optional mark)
-  "Evaluate embedded elisp %(sexp) and replace with the result.
-When optional MARK argument is non-nil, mark Sexp with a text
-property (`org-embedded-elisp') for later evaluation.  Only
-marked Sexp are evaluated when this argument is nil."
-  (save-excursion
-    (goto-char (point-min))
-    (while (re-search-forward "%(" nil t)
-      (cond
-       ((get-text-property (match-beginning 0) 'org-embedded-elisp)
-	(goto-char (match-beginning 0))
-	(let ((template-start (point)))
-	  (forward-char 1)
-	  (let* ((sexp (read (current-buffer)))
-		 (result (org-eval
-			  (org-capture--expand-keyword-in-embedded-elisp
-			   sexp))))
-	    (delete-region template-start (point))
-	    (cond
-	     ((not result) nil)
-	     ((stringp result) (insert result))
-	     (t (error
-		 "Capture template sexp `%s' must evaluate to string or nil"
-		 sexp))))))
-       ((not mark) nil)
-       ;; Only mark valid and non-escaped sexp.
-       ((org-capture-escaped-%) nil)
-       (t
-	(let ((end (with-syntax-table emacs-lisp-mode-syntax-table
-		     (ignore-errors (scan-sexps (1- (point)) 1)))))
-	  (when end
-	    (put-text-property (- (point) 2) end 'org-embedded-elisp t))))))))
-
-(defun org-capture--expand-keyword-in-embedded-elisp (attr)
-  "Recursively replace capture link keywords in ATTR sexp.
-Such keywords are prefixed with \"%:\".  See
-`org-capture-template' for more information."
-  (cond ((consp attr)
-	 (mapcar 'org-capture--expand-keyword-in-embedded-elisp attr))
-	((symbolp attr)
-	 (let* ((attr-symbol (symbol-name attr))
-		(key (and (string-match "%\\(:.*\\)" attr-symbol)
-			  (intern (match-string 1 attr-symbol)))))
-	   (or (plist-get org-store-link-plist key)
-	       attr)))
-	(t attr)))
-
-(defun org-capture-inside-embedded-elisp-p ()
-  "Non-nil if point is inside of embedded elisp %(sexp).
-Assume sexps have been marked with
-`org-capture-expand-embedded-elisp' beforehand."
-  (get-text-property (point) 'org-embedded-elisp))
-
-;;;###autoload
-(defun org-capture-import-remember-templates ()
-  "Set `org-capture-templates' to be similar to `org-remember-templates'."
-  (interactive)
-  (when (and (yes-or-no-p
-	      "Import old remember templates into org-capture-templates? ")
-	     (yes-or-no-p
-	      "Note that this will remove any templates currently defined in `org-capture-templates'.  Do you still want to go ahead? "))
-    (require 'org-remember)
-    (setq org-capture-templates
-	  (mapcar
-	   (lambda (entry)
-	     (let ((desc (car entry))
-		   (key (char-to-string (nth 1 entry)))
-		   (template (nth 2 entry))
-		   (file (or (nth 3 entry) org-default-notes-file))
-		   (position (or (nth 4 entry) org-remember-default-headline))
-		   (type 'entry)
-		   (prepend org-reverse-note-order)
-		   immediate target jump-to-captured)
-	       (cond
-		((member position '(top bottom))
-		 (setq target (list 'file file)
-		       prepend (eq position 'top)))
-		((eq position 'date-tree)
-		 (setq target (list 'file+datetree file)
-		       prepend nil))
-		(t (setq target (list 'file+headline file position))))
-
-	       (when (string-match "%!" template)
-		 (setq template (replace-match "" t t template)
-		       immediate t))
-
-	       (when (string-match "%&" template)
-		 (setq jump-to-captured t))
-
-	       (append (list key desc type target template)
-		       (if prepend '(:prepend t))
-		       (if immediate '(:immediate-finish t))
-		       (if jump-to-captured '(:jump-to-captured t)))))
-
-	   org-remember-templates))))
-
-
-(provide 'org-capture)
-
-;;; org-capture.el ends here
diff --git a/elpa/org-9.1.14/org-capture.elc b/elpa/org-9.1.14/org-capture.elc
deleted file mode 100644
index e04608a..0000000
--- a/elpa/org-9.1.14/org-capture.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-clock.el b/elpa/org-9.1.14/org-clock.el
deleted file mode 100644
index ff32e28..0000000
--- a/elpa/org-9.1.14/org-clock.el
+++ /dev/null
@@ -1,2976 +0,0 @@
-;;; org-clock.el --- The time clocking code for Org mode -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the time clocking code for Org mode
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org)
-
-(declare-function calendar-iso-to-absolute "cal-iso" (date))
-(declare-function notifications-notify "notifications" (&rest params))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-table-goto-line "org-table" (n))
-
-(defvar org-frame-title-format-backup frame-title-format)
-(defvar org-time-stamp-formats)
-
-
-(defgroup org-clock nil
-  "Options concerning clocking working time in Org mode."
-  :tag "Org Clock"
-  :group 'org-progress)
-
-(defcustom org-clock-into-drawer t
-  "Non-nil when clocking info should be wrapped into a drawer.
-
-When non-nil, clocking info will be inserted into the same drawer
-as log notes (see variable `org-log-into-drawer'), if it exists,
-or \"LOGBOOK\" otherwise.  If necessary, the drawer will be
-created.
-
-When an integer, the drawer is created only when the number of
-clocking entries in an item reaches or exceeds this value.
-
-When a string, it becomes the name of the drawer, ignoring the
-log notes drawer altogether.
-
-Do not check directly this variable in a Lisp program.  Call
-function `org-clock-into-drawer' instead."
-  :group 'org-todo
-  :group 'org-clock
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice
-	  (const :tag "Always" t)
-	  (const :tag "Only when drawer exists" nil)
-	  (integer :tag "When at least N clock entries")
-	  (const :tag "Into LOGBOOK drawer" "LOGBOOK")
-	  (string :tag "Into Drawer named...")))
-
-(defun org-clock-into-drawer ()
-  "Value of `org-clock-into-drawer'. but let properties overrule.
-
-If the current entry has or inherits a CLOCK_INTO_DRAWER
-property, it will be used instead of the default value.
-
-Return value is either a string, an integer, or nil."
-  (let ((p (org-entry-get nil "CLOCK_INTO_DRAWER" 'inherit t)))
-    (cond ((equal p "nil") nil)
-	  ((equal p "t") (or (org-log-into-drawer) "LOGBOOK"))
-          ((org-string-nw-p p)
-	   (if (string-match-p "\\`[0-9]+\\'" p) (string-to-number p) p))
-	  ((org-string-nw-p org-clock-into-drawer))
-	  ((integerp org-clock-into-drawer) org-clock-into-drawer)
-	  ((not org-clock-into-drawer) nil)
-	  ((org-log-into-drawer))
-	  (t "LOGBOOK"))))
-
-(defcustom org-clock-out-when-done t
-  "When non-nil, clock will be stopped when the clocked entry is marked DONE.
-\\<org-mode-map>\
-DONE here means any DONE-like state.
-A nil value means clock will keep running until stopped explicitly with
-`\\[org-clock-out]', or until the clock is started in a different item.
-Instead of t, this can also be a list of TODO states that should trigger
-clocking out."
-  :group 'org-clock
-  :type '(choice
-	  (const :tag "No" nil)
-	  (const :tag "Yes, when done" t)
-	  (repeat :tag "State list"
-		  (string :tag "TODO keyword"))))
-
-(defcustom org-clock-rounding-minutes 0
-  "Rounding minutes when clocking in or out.
-The default value is 0 so that no rounding is done.
-When set to a non-integer value, use the car of
-`org-time-stamp-rounding-minutes', like for setting a time-stamp.
-
-E.g. if `org-clock-rounding-minutes' is set to 5, time is 14:47
-and you clock in: then the clock starts at 14:45.  If you clock
-out within the next 5 minutes, the clock line will be removed;
-if you clock out 8 minutes after your clocked in, the clock
-out time will be 14:50."
-  :group 'org-clock
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (integer :tag "Minutes (0 for no rounding)")
-	  (symbol  :tag "Use `org-time-stamp-rounding-minutes'" 'same-as-time-stamp)))
-
-(defcustom org-clock-out-remove-zero-time-clocks nil
-  "Non-nil means remove the clock line when the resulting time is zero."
-  :group 'org-clock
-  :type 'boolean)
-
-(defcustom org-clock-in-switch-to-state nil
-  "Set task to a special todo state while clocking it.
-The value should be the state to which the entry should be
-switched.  If the value is a function, it must take one
-parameter (the current TODO state of the item) and return the
-state to switch it to."
-  :group 'org-clock
-  :group 'org-todo
-  :type '(choice
-	  (const :tag "Don't force a state" nil)
-	  (string :tag "State")
-	  (symbol :tag "Function")))
-
-(defcustom org-clock-out-switch-to-state nil
-  "Set task to a special todo state after clocking out.
-The value should be the state to which the entry should be
-switched.  If the value is a function, it must take one
-parameter (the current TODO state of the item) and return the
-state to switch it to."
-  :group 'org-clock
-  :group 'org-todo
-  :type '(choice
-	  (const :tag "Don't force a state" nil)
-	  (string :tag "State")
-	  (symbol :tag "Function")))
-
-(defcustom org-clock-history-length 5
-  "Number of clock tasks to remember in history."
-  :group 'org-clock
-  :type 'integer)
-
-(defcustom org-clock-goto-may-find-recent-task t
-  "Non-nil means `org-clock-goto' can go to recent task if no active clock."
-  :group 'org-clock
-  :type 'boolean)
-
-(defcustom org-clock-heading-function nil
-  "When non-nil, should be a function to create `org-clock-heading'.
-This is the string shown in the mode line when a clock is running.
-The function is called with point at the beginning of the headline."
-  :group 'org-clock
-  :type '(choice (const nil) (function)))
-
-(defcustom org-clock-string-limit 0
-  "Maximum length of clock strings in the mode line.  0 means no limit."
-  :group 'org-clock
-  :type 'integer)
-
-(defcustom org-clock-in-resume nil
-  "If non-nil, resume clock when clocking into task with open clock.
-When clocking into a task with a clock entry which has not been closed,
-the clock can be resumed from that point."
-  :group 'org-clock
-  :type 'boolean)
-
-(defcustom org-clock-persist nil
-  "When non-nil, save the running clock when Emacs is closed.
-The clock is resumed when Emacs restarts.
-When this is t, both the running clock, and the entire clock
-history are saved.  When this is the symbol `clock', only the
-running clock is saved.  When this is the symbol `history', only
-the clock history is saved.
-
-When Emacs restarts with saved clock information, the file containing
-the running clock as well as all files mentioned in the clock history
-will be visited.
-
-All this depends on running `org-clock-persistence-insinuate' in your
-Emacs initialization file."
-  :group 'org-clock
-  :type '(choice
-	  (const :tag "Just the running clock" clock)
-	  (const :tag "Just the history" history)
-	  (const :tag "Clock and history" t)
-	  (const :tag "No persistence" nil)))
-
-(defcustom org-clock-persist-file (convert-standard-filename
-				   (concat user-emacs-directory "org-clock-save.el"))
-  "File to save clock data to."
-  :group 'org-clock
-  :type 'string)
-
-(defcustom org-clock-persist-query-save nil
-  "When non-nil, ask before saving the current clock on exit."
-  :group 'org-clock
-  :type 'boolean)
-
-(defcustom org-clock-persist-query-resume t
-  "When non-nil, ask before resuming any stored clock during load."
-  :group 'org-clock
-  :type 'boolean)
-
-(defcustom org-clock-sound nil
-  "Sound to use for notifications.
-Possible values are:
-
-nil        No sound played
-t          Standard Emacs beep
-file name  Play this sound file, fall back to beep"
-  :group 'org-clock
-  :type '(choice
-	  (const :tag "No sound" nil)
-	  (const :tag "Standard beep" t)
-	  (file  :tag "Play sound file")))
-
-(defcustom org-clock-mode-line-total 'auto
-  "Default setting for the time included for the mode line clock.
-This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
-Allowed values are:
-
-current  Only the time in the current instance of the clock
-today    All time clocked into this task today
-repeat   All time clocked into this task since last repeat
-all      All time ever recorded for this task
-auto     Automatically, either `all', or `repeat' for repeating tasks"
-  :group 'org-clock
-  :type '(choice
-	  (const :tag "Current clock" current)
-	  (const :tag "Today's task time" today)
-	  (const :tag "Since last repeat" repeat)
-	  (const :tag "All task time" all)
-	  (const :tag "Automatically, `all' or since `repeat'" auto)))
-
-(defvaralias 'org-task-overrun-text 'org-clock-task-overrun-text)
-(defcustom org-clock-task-overrun-text nil
-  "Extra mode line text to indicate that the clock is overrun.
-The can be nil to indicate that instead of adding text, the clock time
-should get a different face (`org-mode-line-clock-overrun').
-When this is a string, it is prepended to the clock string as an indication,
-also using the face `org-mode-line-clock-overrun'."
-  :group 'org-clock
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Just mark the time string" nil)
-	  (string :tag "Text to prepend")))
-
-(defcustom org-show-notification-handler nil
-  "Function or program to send notification with.
-The function or program will be called with the notification
-string as argument."
-  :group 'org-clock
-  :type '(choice
-	  (const nil)
-	  (string :tag "Program")
-	  (function :tag "Function")))
-
-(defgroup org-clocktable nil
-  "Options concerning the clock table in Org mode."
-  :tag "Org Clock Table"
-  :group 'org-clock)
-
-(defcustom org-clocktable-defaults
-  (list
-   :maxlevel 2
-   :lang (or (bound-and-true-p org-export-default-language) "en")
-   :scope 'file
-   :block nil
-   :wstart 1
-   :mstart 1
-   :tstart nil
-   :tend nil
-   :step nil
-   :stepskip0 nil
-   :fileskip0 nil
-   :tags nil
-   :emphasize nil
-   :link nil
-   :narrow '40!
-   :indent t
-   :formula nil
-   :timestamp nil
-   :level nil
-   :tcolumns nil
-   :formatter nil)
-  "Default properties for clock tables."
-  :group 'org-clock
-  :version "24.1"
-  :type 'plist)
-
-(defcustom org-clock-clocktable-formatter 'org-clocktable-write-default
-  "Function to turn clocking data into a table.
-For more information, see `org-clocktable-write-default'."
-  :group 'org-clocktable
-  :version "24.1"
-  :type 'function)
-
-;; FIXME: translate es and nl last string "Clock summary at"
-(defcustom org-clock-clocktable-language-setup
-  '(("en" "File"     "L"  "Timestamp"  "Headline" "Time"  "ALL"   "Total time"   "File time" "Clock summary at")
-    ("es" "Archivo"  "N"  "Fecha y hora" "Tarea" "Tiempo" "TODO" "Tiempo total" "Tiempo archivo" "Clock summary at")
-    ("fr" "Fichier"  "N"  "Horodatage" "En-tête"  "Durée" "TOUT"  "Durée totale" "Durée fichier" "Horodatage sommaire à")
-    ("nl" "Bestand"  "N"  "Tijdstip"   "Hoofding" "Duur"  "ALLES" "Totale duur"  "Bestandstijd" "Clock summary at")
-    ("de" "Datei"    "E"  "Zeitstempel" "Kopfzeile" "Dauer" "GESAMT"
-     "Gesamtdauer"  "Dateizeit" "Erstellt am"))
-  "Terms used in clocktable, translated to different languages."
-  :group 'org-clocktable
-  :version "24.1"
-  :type 'alist)
-
-(defcustom org-clock-clocktable-default-properties '(:maxlevel 2 :scope file)
-  "Default properties for new clocktables.
-These will be inserted into the BEGIN line, to make it easy for users to
-play with them."
-  :group 'org-clocktable
-  :type 'plist)
-
-(defcustom org-clock-idle-time nil
-  "When non-nil, resolve open clocks if the user is idle more than X minutes."
-  :group 'org-clock
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (integer :tag "After N minutes")))
-
-(defcustom org-clock-auto-clock-resolution 'when-no-clock-is-running
-  "When to automatically resolve open clocks found in Org buffers."
-  :group 'org-clock
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "Always" t)
-	  (const :tag "When no clock is running" when-no-clock-is-running)))
-
-(defcustom org-clock-report-include-clocking-task nil
-  "When non-nil, include the current clocking task time in clock reports."
-  :group 'org-clock
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-clock-resolve-expert nil
-  "Non-nil means do not show the splash buffer with the clock resolver."
-  :group 'org-clock
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-clock-continuously nil
-  "Non-nil means to start clocking from the last clock-out time, if any."
-  :type 'boolean
-  :version "24.1"
-  :group 'org-clock)
-
-(defcustom org-clock-total-time-cell-format "*%s*"
-  "Format string for the total time cells."
-  :group 'org-clock
-  :version "24.1"
-  :type 'string)
-
-(defcustom org-clock-file-time-cell-format "*%s*"
-  "Format string for the file time cells."
-  :group 'org-clock
-  :version "24.1"
-  :type 'string)
-
-(defcustom org-clock-clocked-in-display 'mode-line
-  "When clocked in for a task, Org can display the current
-task and accumulated time in the mode line and/or frame title.
-Allowed values are:
-
-both         displays in both mode line and frame title
-mode-line    displays only in mode line (default)
-frame-title  displays only in frame title
-nil          current clock is not displayed"
-  :group 'org-clock
-  :type '(choice
-	  (const :tag "Mode line" mode-line)
-	  (const :tag "Frame title" frame-title)
-	  (const :tag "Both" both)
-	  (const :tag "None" nil)))
-
-(defcustom org-clock-frame-title-format '(t org-mode-line-string)
-  "The value for `frame-title-format' when clocking in.
-
-When `org-clock-clocked-in-display' is set to `frame-title'
-or `both', clocking in will replace `frame-title-format' with
-this value.  Clocking out will restore `frame-title-format'.
-
-`org-frame-title-string' is a format string using the same
-specifications than `frame-title-format', which see."
-  :version "24.1"
-  :group 'org-clock
-  :type 'sexp)
-
-(defcustom org-clock-x11idle-program-name "x11idle"
-  "Name of the program which prints X11 idle time in milliseconds.
-
-You can find x11idle.c in the contrib/scripts directory of the
-Org git distribution. Or, you can do:
-
-    sudo apt-get install xprintidle
-
-if you are using Debian."
-  :group 'org-clock
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-clock-goto-before-context 2
-  "Number of lines of context to display before currently clocked-in entry.
-This applies when using `org-clock-goto'."
-  :group 'org-clock
-  :type 'integer)
-
-(defcustom org-clock-display-default-range 'thisyear
-  "Default range when displaying clocks with `org-clock-display'.
-Valid values are: `today', `yesterday', `thisweek', `lastweek',
-`thismonth', `lastmonth', `thisyear', `lastyear' and `untilnow'."
-  :group 'org-clock
-  :type '(choice (const today)
-		 (const yesterday)
-		 (const thisweek)
-		 (const lastweek)
-		 (const thismonth)
-		 (const lastmonth)
-		 (const thisyear)
-		 (const lastyear)
-		 (const untilnow)
-		 (const :tag "Select range interactively" interactive))
-  :safe #'symbolp)
-
-(defvar org-clock-in-prepare-hook nil
-  "Hook run when preparing the clock.
-This hook is run before anything happens to the task that
-you want to clock in.  For example, you can use this hook
-to add an effort property.")
-(defvar org-clock-in-hook nil
-  "Hook run when starting the clock.")
-(defvar org-clock-out-hook nil
-  "Hook run when stopping the current clock.")
-
-(defvar org-clock-cancel-hook nil
-  "Hook run when canceling the current clock.")
-(defvar org-clock-goto-hook nil
-  "Hook run when selecting the currently clocked-in entry.")
-(defvar org-clock-has-been-used nil
-  "Has the clock been used during the current Emacs session?")
-
-(defvar org-clock-stored-history nil
-  "Clock history, populated by `org-clock-load'")
-(defvar org-clock-stored-resume-clock nil
-  "Clock to resume, saved by `org-clock-load'")
-
-;;; The clock for measuring work time.
-
-(defvar org-mode-line-string "")
-(put 'org-mode-line-string 'risky-local-variable t)
-
-(defvar org-clock-mode-line-timer nil)
-(defvar org-clock-idle-timer nil)
-(defvar org-clock-heading) ; defined in org.el
-(defvar org-clock-start-time "")
-
-(defvar org-clock-leftover-time nil
-  "If non-nil, user canceled a clock; this is when leftover time started.")
-
-(defvar org-clock-effort ""
-  "Effort estimate of the currently clocking task.")
-
-(defvar org-clock-total-time nil
-  "Holds total time, spent previously on currently clocked item.
-This does not include the time in the currently running clock.")
-
-(defvar org-clock-history nil
-  "List of marker pointing to recent clocked tasks.")
-
-(defvar org-clock-default-task (make-marker)
-  "Marker pointing to the default task that should clock time.
-The clock can be made to switch to this task after clocking out
-of a different task.")
-
-(defvar org-clock-interrupted-task (make-marker)
-  "Marker pointing to the task that has been interrupted by the current clock.")
-
-(defvar org-clock-mode-line-map (make-sparse-keymap))
-(define-key org-clock-mode-line-map [mode-line mouse-2] 'org-clock-goto)
-(define-key org-clock-mode-line-map [mode-line mouse-1] 'org-clock-menu)
-
-(defun org-clock--translate (s language)
-  "Translate string S into using string LANGUAGE.
-Assume S in the English term to translate.  Return S as-is if it
-cannot be translated."
-  (or (nth (pcase s
-	     ("File" 1) ("L" 2) ("Timestamp" 3) ("Headline" 4) ("Time" 5)
-	     ("ALL" 6) ("Total time" 7) ("File time" 8) ("Clock summary at" 9))
-	   (assoc-string language org-clock-clocktable-language-setup t))
-      s))
-
-(defun org-clock--mode-line-heading ()
-  "Return currently clocked heading, formatted for mode line."
-  (cond ((functionp org-clock-heading-function)
-	 (funcall org-clock-heading-function))
-	((org-before-first-heading-p) "???")
-	(t (replace-regexp-in-string
-	    org-bracket-link-analytic-regexp "\\5"
-	    (org-no-properties (org-get-heading t t t t))))))
-
-(defun org-clock-menu ()
-  (interactive)
-  (popup-menu
-   '("Clock"
-     ["Clock out" org-clock-out t]
-     ["Change effort estimate" org-clock-modify-effort-estimate t]
-     ["Go to clock entry" org-clock-goto t]
-     ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"])))
-
-(defun org-clock-history-push (&optional pos buffer)
-  "Push a marker to the clock history."
-  (setq org-clock-history-length (max 1 (min 35 org-clock-history-length)))
-  (let ((m (move-marker (make-marker)
-			(or pos (point)) (org-base-buffer
-					  (or buffer (current-buffer)))))
-	n l)
-    (while (setq n (member m org-clock-history))
-      (move-marker (car n) nil))
-    (setq org-clock-history
-	  (delq nil
-		(mapcar (lambda (x) (if (marker-buffer x) x nil))
-			org-clock-history)))
-    (when (>= (setq l (length org-clock-history)) org-clock-history-length)
-      (setq org-clock-history
-	    (nreverse
-	     (nthcdr (- l org-clock-history-length -1)
-		     (nreverse org-clock-history)))))
-    (push m org-clock-history)))
-
-(defun org-clock-save-markers-for-cut-and-paste (beg end)
-  "Save relative positions of markers in region."
-  (org-check-and-save-marker org-clock-marker beg end)
-  (org-check-and-save-marker org-clock-hd-marker beg end)
-  (org-check-and-save-marker org-clock-default-task beg end)
-  (org-check-and-save-marker org-clock-interrupted-task beg end)
-  (dolist (m org-clock-history)
-    (org-check-and-save-marker m beg end)))
-
-(defun org-clock-drawer-name ()
-  "Return clock drawer's name for current entry, or nil."
-  (let ((drawer (org-clock-into-drawer)))
-    (cond ((integerp drawer)
-	   (let ((log-drawer (org-log-into-drawer)))
-	     (if (stringp log-drawer) log-drawer "LOGBOOK")))
-	  ((stringp drawer) drawer)
-	  (t nil))))
-
-(defun org-clocking-buffer ()
-  "Return the clocking buffer if we are currently clocking a task or nil."
-  (marker-buffer org-clock-marker))
-
-(defun org-clocking-p ()
-  "Return t when clocking a task."
-  (not (equal (org-clocking-buffer) nil)))
-
-(defvar org-clock-before-select-task-hook nil
-  "Hook called in task selection just before prompting the user.")
-
-(defun org-clock-select-task (&optional prompt)
-  "Select a task that was recently associated with clocking.
-Return marker position of the selected task.  Raise an error if
-there is no recent clock to choose from."
-  (let (och chl sel-list rpl (i 0) s)
-    ;; Remove successive dups from the clock history to consider
-    (dolist (c org-clock-history)
-      (unless (equal c (car och)) (push c och)))
-    (setq och (reverse och) chl (length och))
-    (if (zerop chl)
-	(user-error "No recent clock")
-      (save-window-excursion
-	(org-switch-to-buffer-other-window
-	 (get-buffer-create "*Clock Task Select*"))
-	(erase-buffer)
-	(when (marker-buffer org-clock-default-task)
-	  (insert (org-add-props "Default Task\n" nil 'face 'bold))
-	  (setq s (org-clock-insert-selection-line ?d org-clock-default-task))
-	  (push s sel-list))
-	(when (marker-buffer org-clock-interrupted-task)
-	  (insert (org-add-props "The task interrupted by starting the last one\n" nil 'face 'bold))
-	  (setq s (org-clock-insert-selection-line ?i org-clock-interrupted-task))
-	  (push s sel-list))
-	(when (org-clocking-p)
-	  (insert (org-add-props "Current Clocking Task\n" nil 'face 'bold))
-	  (setq s (org-clock-insert-selection-line ?c org-clock-marker))
-	  (push s sel-list))
-	(insert (org-add-props "Recent Tasks\n" nil 'face 'bold))
-	(dolist (m och)
-	  (when (marker-buffer m)
-	    (setq i (1+ i)
-		  s (org-clock-insert-selection-line
-		     (if (< i 10)
-			 (+ i ?0)
-		       (+ i (- ?A 10))) m))
-	    (if (fboundp 'int-to-char) (setf (car s) (int-to-char (car s))))
-	    (push s sel-list)))
-	(run-hooks 'org-clock-before-select-task-hook)
-	(goto-char (point-min))
-	;; Set min-height relatively to circumvent a possible but in
-	;; `fit-window-to-buffer'
-	(fit-window-to-buffer nil nil (if (< chl 10) chl (+ 5 chl)))
-	(message (or prompt "Select task for clocking:"))
-	(setq cursor-type nil rpl (read-char-exclusive))
-	(kill-buffer)
-	(cond
-	 ((eq rpl ?q) nil)
-	 ((eq rpl ?x) nil)
-	 ((assoc rpl sel-list) (cdr (assoc rpl sel-list)))
-	 (t (user-error "Invalid task choice %c" rpl)))))))
-
-(defun org-clock-insert-selection-line (i marker)
-  "Insert a line for the clock selection menu.
-And return a cons cell with the selection character integer and the marker
-pointing to it."
-  (when (marker-buffer marker)
-    (let (cat task heading prefix)
-      (with-current-buffer (org-base-buffer (marker-buffer marker))
-	(org-with-wide-buffer
-	  (ignore-errors
-	    (goto-char marker)
-	    (setq cat (org-get-category)
-		  heading (org-get-heading 'notags)
-		  prefix (save-excursion
-			   (org-back-to-heading t)
-			   (looking-at org-outline-regexp)
-			   (match-string 0))
-		  task (substring
-			(org-fontify-like-in-org-mode
-			 (concat prefix heading)
-			 org-odd-levels-only)
-			(length prefix))))))
-      (when (and cat task)
-	(insert (format "[%c] %-12s  %s\n" i cat task))
-	(cons i marker)))))
-
-(defvar org-clock-task-overrun nil
-  "Internal flag indicating if the clock has overrun the planned time.")
-(defvar org-clock-update-period 60
-  "Number of seconds between mode line clock string updates.")
-
-(defun org-clock-get-clock-string ()
-  "Form a clock-string, that will be shown in the mode line.
-If an effort estimate was defined for the current item, use
-01:30/01:50 format (clocked/estimated).
-If not, show simply the clocked time like 01:50."
-  (let ((clocked-time (org-clock-get-clocked-time)))
-    (if org-clock-effort
-	(let* ((effort-in-minutes (org-duration-to-minutes org-clock-effort))
-	       (work-done-str
-		(propertize (org-duration-from-minutes clocked-time)
-			    'face
-			    (if (and org-clock-task-overrun
-				     (not org-clock-task-overrun-text))
-				'org-mode-line-clock-overrun
-			      'org-mode-line-clock)))
-	       (effort-str (org-duration-from-minutes effort-in-minutes)))
-	  (format (propertize " [%s/%s] (%s)" 'face 'org-mode-line-clock)
-		  work-done-str effort-str org-clock-heading))
-      (format (propertize " [%s] (%s)" 'face 'org-mode-line-clock)
-	      (org-duration-from-minutes clocked-time)
-	      org-clock-heading))))
-
-(defun org-clock-get-last-clock-out-time ()
-  "Get the last clock-out time for the current subtree."
-  (save-excursion
-    (let ((end (save-excursion (org-end-of-subtree))))
-      (when (re-search-forward (concat org-clock-string
-				       ".*\\]--\\(\\[[^]]+\\]\\)") end t)
-	(org-time-string-to-time (match-string 1))))))
-
-(defun org-clock-update-mode-line (&optional refresh)
-  "Update mode line with clock information.
-When optional argument is non-nil, refresh cached heading."
-  (if org-clock-effort
-      (org-clock-notify-once-if-expired)
-    (setq org-clock-task-overrun nil))
-  (when refresh (setq org-clock-heading (org-clock--mode-line-heading)))
-  (setq org-mode-line-string
-	(propertize
-	 (let ((clock-string (org-clock-get-clock-string))
-	       (help-text "Org mode clock is running.\nmouse-1 shows a \
-menu\nmouse-2 will jump to task"))
-	   (if (and (> org-clock-string-limit 0)
-		    (> (length clock-string) org-clock-string-limit))
-	       (propertize
-		(substring clock-string 0 org-clock-string-limit)
-		'help-echo (concat help-text ": " org-clock-heading))
-	     (propertize clock-string 'help-echo help-text)))
-	 'local-map org-clock-mode-line-map
-	 'mouse-face 'mode-line-highlight))
-  (if (and org-clock-task-overrun org-clock-task-overrun-text)
-      (setq org-mode-line-string
-	    (concat (propertize
-		     org-clock-task-overrun-text
-		     'face 'org-mode-line-clock-overrun) org-mode-line-string)))
-  (force-mode-line-update))
-
-(defun org-clock-get-clocked-time ()
-  "Get the clocked time for the current item in minutes.
-The time returned includes the time spent on this task in
-previous clocking intervals."
-  (let ((currently-clocked-time
-	 (floor (- (float-time)
-		   (float-time org-clock-start-time)) 60)))
-    (+ currently-clocked-time (or org-clock-total-time 0))))
-
-(defun org-clock-modify-effort-estimate (&optional value)
-  "Add to or set the effort estimate of the item currently being clocked.
-VALUE can be a number of minutes, or a string with format hh:mm or mm.
-When the string starts with a + or a - sign, the current value of the effort
-property will be changed by that amount.  If the effort value is expressed
-as an `org-effort-durations' (e.g. \"3h\"), the modified value will be
-converted to a hh:mm duration.
-
-This command will update the \"Effort\" property of the currently
-clocked item, and the value displayed in the mode line."
-  (interactive)
-  (if (org-clock-is-active)
-      (let ((current org-clock-effort) sign)
-	(unless value
-	  ;; Prompt user for a value or a change
-	  (setq value
-		(read-string
-		 (format "Set effort (hh:mm or mm%s): "
-			 (if current
-			     (format ", prefix + to add to %s" org-clock-effort)
-			   "")))))
-	(when (stringp value)
-	  ;; A string.  See if it is a delta
-	  (setq sign (string-to-char value))
-	  (if (member sign '(?- ?+))
-	      (setq current (org-duration-to-minutes current)
-		    value (substring value 1))
-	    (setq current 0))
-	  (setq value (org-duration-to-minutes value))
-	  (if (equal ?- sign)
-	      (setq value (- current value))
-	    (if (equal ?+ sign) (setq value (+ current value)))))
-	(setq value (max 0 value)
-	      org-clock-effort (org-duration-from-minutes value))
-	(org-entry-put org-clock-marker "Effort" org-clock-effort)
-	(org-clock-update-mode-line)
-	(message "Effort is now %s" org-clock-effort))
-    (message "Clock is not currently active")))
-
-(defvar org-clock-notification-was-shown nil
-  "Shows if we have shown notification already.")
-
-(defun org-clock-notify-once-if-expired ()
-  "Show notification if we spent more time than we estimated before.
-Notification is shown only once."
-  (when (org-clocking-p)
-    (let ((effort-in-minutes (org-duration-to-minutes org-clock-effort))
-	  (clocked-time (org-clock-get-clocked-time)))
-      (if (setq org-clock-task-overrun
-		(if (or (null effort-in-minutes) (zerop effort-in-minutes))
-		    nil
-		  (>= clocked-time effort-in-minutes)))
-	  (unless org-clock-notification-was-shown
-	    (setq org-clock-notification-was-shown t)
-	    (org-notify
-	     (format-message "Task `%s' should be finished by now. (%s)"
-                             org-clock-heading org-clock-effort)
-             org-clock-sound))
-	(setq org-clock-notification-was-shown nil)))))
-
-(defun org-notify (notification &optional play-sound)
-  "Send a NOTIFICATION and maybe PLAY-SOUND.
-If PLAY-SOUND is non-nil, it overrides `org-clock-sound'."
-  (org-show-notification notification)
-  (if play-sound (org-clock-play-sound play-sound)))
-
-(defun org-show-notification (notification)
-  "Show notification.
-Use `org-show-notification-handler' if defined,
-use libnotify if available, or fall back on a message."
-  (cond ((functionp org-show-notification-handler)
-	 (funcall org-show-notification-handler notification))
-	((stringp org-show-notification-handler)
-	 (start-process "emacs-timer-notification" nil
-			org-show-notification-handler notification))
-	((fboundp 'notifications-notify)
-	 (notifications-notify
-	  :title "Org mode message"
-	  :body notification
-	  ;; FIXME how to link to the Org icon?
-	  ;; :app-icon "~/.emacs.d/icons/mail.png"
-	  :urgency 'low))
-	((executable-find "notify-send")
-	 (start-process "emacs-timer-notification" nil
-			"notify-send" notification))
-	;; Maybe the handler will send a message, so only use message as
-	;; a fall back option
-	(t (message "%s" notification))))
-
-(defun org-clock-play-sound (&optional clock-sound)
-  "Play sound as configured by `org-clock-sound'.
-Use alsa's aplay tool if available.
-If CLOCK-SOUND is non-nil, it overrides `org-clock-sound'."
-  (let ((org-clock-sound (or clock-sound org-clock-sound)))
-    (cond
-     ((not org-clock-sound))
-     ((eq org-clock-sound t) (beep t) (beep t))
-     ((stringp org-clock-sound)
-      (let ((file (expand-file-name org-clock-sound)))
-	(if (file-exists-p file)
-	    (if (executable-find "aplay")
-		(start-process "org-clock-play-notification" nil
-			       "aplay" file)
-	      (condition-case nil
-		  (play-sound-file file)
-		(error (beep t) (beep t))))))))))
-
-(defvar org-clock-mode-line-entry nil
-  "Information for the mode line about the running clock.")
-
-(defun org-find-open-clocks (file)
-  "Search through the given file and find all open clocks."
-  (let ((buf (or (get-file-buffer file)
-		 (find-file-noselect file)))
-	(org-clock-re (concat org-clock-string " \\(\\[.*?\\]\\)$"))
-	clocks)
-    (with-current-buffer buf
-      (save-excursion
-	(goto-char (point-min))
-	(while (re-search-forward org-clock-re nil t)
-	  (push (cons (copy-marker (match-end 1) t)
-		      (org-time-string-to-time (match-string 1))) clocks))))
-    clocks))
-
-(defsubst org-is-active-clock (clock)
-  "Return t if CLOCK is the currently active clock."
-  (and (org-clock-is-active)
-       (= org-clock-marker (car clock))))
-
-(defmacro org-with-clock-position (clock &rest forms)
-  "Evaluate FORMS with CLOCK as the current active clock."
-  `(with-current-buffer (marker-buffer (car ,clock))
-     (org-with-wide-buffer
-      (goto-char (car ,clock))
-      (beginning-of-line)
-      ,@forms)))
-(def-edebug-spec org-with-clock-position (form body))
-(put 'org-with-clock-position 'lisp-indent-function 1)
-
-(defmacro org-with-clock (clock &rest forms)
-  "Evaluate FORMS with CLOCK as the current active clock.
-This macro also protects the current active clock from being altered."
-  `(org-with-clock-position ,clock
-     (let ((org-clock-start-time (cdr ,clock))
-	   (org-clock-total-time)
-	   (org-clock-history)
-	   (org-clock-effort)
-	   (org-clock-marker (car ,clock))
-	   (org-clock-hd-marker (save-excursion
-				  (org-back-to-heading t)
-				  (point-marker))))
-       ,@forms)))
-(def-edebug-spec org-with-clock (form body))
-(put 'org-with-clock 'lisp-indent-function 1)
-
-(defsubst org-clock-clock-in (clock &optional resume start-time)
-  "Clock in to the clock located by CLOCK.
-If necessary, clock-out of the currently active clock."
-  (org-with-clock-position clock
-    (let ((org-clock-in-resume (or resume org-clock-in-resume)))
-      (org-clock-in nil start-time))))
-
-(defsubst org-clock-clock-out (clock &optional fail-quietly at-time)
-  "Clock out of the clock located by CLOCK."
-  (let ((temp (copy-marker (car clock)
-			   (marker-insertion-type (car clock)))))
-    (if (org-is-active-clock clock)
-	(org-clock-out nil fail-quietly at-time)
-      (org-with-clock clock
-	(org-clock-out nil fail-quietly at-time)))
-    (setcar clock temp)))
-
-(defsubst org-clock-clock-cancel (clock)
-  "Cancel the clock located by CLOCK."
-  (let ((temp (copy-marker (car clock)
-			   (marker-insertion-type (car clock)))))
-    (if (org-is-active-clock clock)
-	(org-clock-cancel)
-      (org-with-clock clock
-	(org-clock-cancel)))
-    (setcar clock temp)))
-
-(defvar org-clock-clocking-in nil)
-(defvar org-clock-resolving-clocks nil)
-(defvar org-clock-resolving-clocks-due-to-idleness nil)
-
-(defun org-clock-resolve-clock (clock resolve-to clock-out-time
-				      &optional close-p restart-p fail-quietly)
-  "Resolve `CLOCK' given the time `RESOLVE-TO', and the present.
-`CLOCK' is a cons cell of the form (MARKER START-TIME)."
-  (let ((org-clock-resolving-clocks t))
-    (cond
-     ((null resolve-to)
-      (org-clock-clock-cancel clock)
-      (if (and restart-p (not org-clock-clocking-in))
-	  (org-clock-clock-in clock)))
-
-     ((eq resolve-to 'now)
-      (if restart-p
-	  (error "RESTART-P is not valid here"))
-      (if (or close-p org-clock-clocking-in)
-	  (org-clock-clock-out clock fail-quietly)
-	(unless (org-is-active-clock clock)
-	  (org-clock-clock-in clock t))))
-
-     ((not (time-less-p resolve-to (current-time)))
-      (error "RESOLVE-TO must refer to a time in the past"))
-
-     (t
-      (if restart-p
-	  (error "RESTART-P is not valid here"))
-      (org-clock-clock-out clock fail-quietly (or clock-out-time
-						  resolve-to))
-      (unless org-clock-clocking-in
-	(if close-p
-	    (setq org-clock-leftover-time (and (null clock-out-time)
-					       resolve-to))
-	  (org-clock-clock-in clock nil (and clock-out-time
-					     resolve-to))))))))
-
-(defun org-clock-jump-to-current-clock (&optional effective-clock)
-  (interactive)
-  (let ((drawer (org-clock-into-drawer))
-	(clock (or effective-clock (cons org-clock-marker
-					 org-clock-start-time))))
-    (unless (marker-buffer (car clock))
-      (error "No clock is currently running"))
-    (org-with-clock clock (org-clock-goto))
-    (with-current-buffer (marker-buffer (car clock))
-      (goto-char (car clock))
-      (when drawer
-	(org-with-wide-buffer
-	 (let ((drawer-re (format "^[ \t]*:%s:[ \t]*$"
-				  (regexp-quote (if (stringp drawer) drawer "LOGBOOK"))))
-	       (beg (save-excursion (org-back-to-heading t) (point))))
-	   (catch 'exit
-	     (while (re-search-backward drawer-re beg t)
-	       (let ((element (org-element-at-point)))
-		 (when (eq (org-element-type element) 'drawer)
-		   (when (> (org-element-property :end element) (car clock))
-		     (org-flag-drawer nil element))
-		   (throw 'exit nil)))))))))))
-
-(defun org-clock-resolve (clock &optional prompt-fn last-valid fail-quietly)
-  "Resolve an open Org clock.
-An open clock was found, with `dangling' possibly being non-nil.
-If this function was invoked with a prefix argument, non-dangling
-open clocks are ignored.  The given clock requires some sort of
-user intervention to resolve it, either because a clock was left
-dangling or due to an idle timeout.  The clock resolution can
-either be:
-
-  (a) deleted, the user doesn't care about the clock
-  (b) restarted from the current time (if no other clock is open)
-  (c) closed, giving the clock X minutes
-  (d) closed and then restarted
-  (e) resumed, as if the user had never left
-
-The format of clock is (CONS MARKER START-TIME), where MARKER
-identifies the buffer and position the clock is open at (and
-thus, the heading it's under), and START-TIME is when the clock
-was started."
-  (cl-assert clock)
-  (let* ((ch
-	  (save-window-excursion
-	    (save-excursion
-	      (unless org-clock-resolving-clocks-due-to-idleness
-		(org-clock-jump-to-current-clock clock))
-	      (unless org-clock-resolve-expert
-		(with-output-to-temp-buffer "*Org Clock*"
-		  (princ (format-message "Select a Clock Resolution Command:
-
-i/q      Ignore this question; the same as keeping all the idle time.
-
-k/K      Keep X minutes of the idle time (default is all).  If this
-         amount is less than the default, you will be clocked out
-         that many minutes after the time that idling began, and then
-         clocked back in at the present time.
-
-g/G      Indicate that you \"got back\" X minutes ago.  This is quite
-         different from `k': it clocks you out from the beginning of
-         the idle period and clock you back in X minutes ago.
-
-s/S      Subtract the idle time from the current clock.  This is the
-         same as keeping 0 minutes.
-
-C        Cancel the open timer altogether.  It will be as though you
-         never clocked in.
-
-j/J      Jump to the current clock, to make manual adjustments.
-
-For all these options, using uppercase makes your final state
-to be CLOCKED OUT."))))
-	      (org-fit-window-to-buffer (get-buffer-window "*Org Clock*"))
-	      (let (char-pressed)
-		(while (or (null char-pressed)
-			   (and (not (memq char-pressed
-					   '(?k ?K ?g ?G ?s ?S ?C
-						?j ?J ?i ?q)))
-				(or (ding) t)))
-		  (setq char-pressed
-			(read-char (concat (funcall prompt-fn clock)
-					   " [jkKgGSscCiq]? ")
-				   nil 45)))
-		(and (not (memq char-pressed '(?i ?q))) char-pressed)))))
-	 (default
-	   (floor (/ (float-time
-		      (time-subtract (current-time) last-valid)) 60)))
-	 (keep
-	  (and (memq ch '(?k ?K))
-	       (read-number "Keep how many minutes? " default)))
-	 (gotback
-	  (and (memq ch '(?g ?G))
-	       (read-number "Got back how many minutes ago? " default)))
-	 (subtractp (memq ch '(?s ?S)))
-	 (barely-started-p (< (- (float-time last-valid)
-				 (float-time (cdr clock))) 45))
-	 (start-over (and subtractp barely-started-p)))
-    (cond
-     ((memq ch '(?j ?J))
-      (if (eq ch ?J)
-	  (org-clock-resolve-clock clock 'now nil t nil fail-quietly))
-      (org-clock-jump-to-current-clock clock))
-     ((or (null ch)
-	  (not (memq ch '(?k ?K ?g ?G ?s ?S ?C))))
-      (message ""))
-     (t
-      (org-clock-resolve-clock
-       clock (cond
-	      ((or (eq ch ?C)
-		   ;; If the time on the clock was less than a minute before
-		   ;; the user went away, and they've ask to subtract all the
-		   ;; time...
-		   start-over)
-	       nil)
-	      ((or subtractp
-		   (and gotback (= gotback 0)))
-	       last-valid)
-	      ((or (and keep (= keep default))
-		   (and gotback (= gotback default)))
-	       'now)
-	      (keep
-	       (time-add last-valid (seconds-to-time (* 60 keep))))
-	      (gotback
-	       (time-subtract (current-time)
-			      (seconds-to-time (* 60 gotback))))
-	      (t
-	       (error "Unexpected, please report this as a bug")))
-       (and gotback last-valid)
-       (memq ch '(?K ?G ?S))
-       (and start-over
-	    (not (memq ch '(?K ?G ?S ?C))))
-       fail-quietly)))))
-
-;;;###autoload
-(defun org-resolve-clocks (&optional only-dangling-p prompt-fn last-valid)
-  "Resolve all currently open Org clocks.
-If `only-dangling-p' is non-nil, only ask to resolve dangling
-\(i.e., not currently open and valid) clocks."
-  (interactive "P")
-  (unless org-clock-resolving-clocks
-    (let ((org-clock-resolving-clocks t))
-      (dolist (file (org-files-list))
-	(let ((clocks (org-find-open-clocks file)))
-	  (dolist (clock clocks)
-	    (let ((dangling (or (not (org-clock-is-active))
-				(/= (car clock) org-clock-marker))))
-	      (if (or (not only-dangling-p) dangling)
-		  (org-clock-resolve
-		   clock
-		   (or prompt-fn
-		       (function
-			(lambda (clock)
-			  (format
-			   "Dangling clock started %d mins ago"
-			   (floor (- (float-time)
-				     (float-time (cdr clock)))
-				  60)))))
-		   (or last-valid
-		       (cdr clock)))))))))))
-
-(defun org-emacs-idle-seconds ()
-  "Return the current Emacs idle time in seconds, or nil if not idle."
-  (let ((idle-time (current-idle-time)))
-    (if idle-time
-	(float-time idle-time)
-      0)))
-
-(defun org-mac-idle-seconds ()
-  "Return the current Mac idle time in seconds."
-  (string-to-number (shell-command-to-string "ioreg -c IOHIDSystem | perl -ane 'if (/Idle/) {$idle=(pop @F)/1000000000; print $idle; last}'")))
-
-(defvar org-x11idle-exists-p
-  ;; Check that x11idle exists
-  (and (eq window-system 'x)
-       (eq 0 (call-process-shell-command
-              (format "command -v %s" org-clock-x11idle-program-name)))
-       ;; Check that x11idle can retrieve the idle time
-       ;; FIXME: Why "..-shell-command" rather than just `call-process'?
-       (eq 0 (call-process-shell-command org-clock-x11idle-program-name))))
-
-(defun org-x11-idle-seconds ()
-  "Return the current X11 idle time in seconds."
-  (/ (string-to-number (shell-command-to-string org-clock-x11idle-program-name)) 1000))
-
-(defun org-user-idle-seconds ()
-  "Return the number of seconds the user has been idle for.
-This routine returns a floating point number."
-  (cond
-   ((eq system-type 'darwin)
-    (org-mac-idle-seconds))
-   ((and (eq window-system 'x) org-x11idle-exists-p)
-    (org-x11-idle-seconds))
-   (t
-    (org-emacs-idle-seconds))))
-
-(defvar org-clock-user-idle-seconds)
-
-(defun org-resolve-clocks-if-idle ()
-  "Resolve all currently open Org clocks.
-This is performed after `org-clock-idle-time' minutes, to check
-if the user really wants to stay clocked in after being idle for
-so long."
-  (when (and org-clock-idle-time (not org-clock-resolving-clocks)
-	     org-clock-marker (marker-buffer org-clock-marker))
-    (let* ((org-clock-user-idle-seconds (org-user-idle-seconds))
-	   (org-clock-user-idle-start
-	    (time-subtract (current-time)
-			   (seconds-to-time org-clock-user-idle-seconds)))
-	   (org-clock-resolving-clocks-due-to-idleness t))
-      (if (> org-clock-user-idle-seconds (* 60 org-clock-idle-time))
-	  (org-clock-resolve
-	   (cons org-clock-marker
-		 org-clock-start-time)
-	   (lambda (_)
-	     (format "Clocked in & idle for %.1f mins"
-		     (/ (float-time
-			 (time-subtract (current-time)
-					org-clock-user-idle-start))
-			60.0)))
-	   org-clock-user-idle-start)))))
-
-(defvar org-clock-current-task nil "Task currently clocked in.")
-(defvar org-clock-out-time nil) ; store the time of the last clock-out
-(defvar org--msg-extra)
-
-;;;###autoload
-(defun org-clock-in (&optional select start-time)
-  "Start the clock on the current item.
-
-If necessary, clock-out of the currently active clock.
-
-With a `\\[universal-argument]' prefix argument SELECT, offer a list of \
-recently clocked
-tasks to clock into.
-
-When SELECT is `\\[universal-argument] \ \\[universal-argument]', \
-clock into the current task and mark it as
-the default task, a special task that will always be offered in the
-clocking selection, associated with the letter `d'.
-
-When SELECT is `\\[universal-argument] \\[universal-argument] \
-\\[universal-argument]', clock in by using the last clock-out
-time as the start time.  See `org-clock-continuously' to make this
-the default behavior."
-  (interactive "P")
-  (setq org-clock-notification-was-shown nil)
-  (org-refresh-effort-properties)
-  (catch 'abort
-    (let ((interrupting (and (not org-clock-resolving-clocks-due-to-idleness)
-			     (org-clocking-p)))
-	  ts selected-task target-pos (org--msg-extra "")
-	  (leftover (and (not org-clock-resolving-clocks)
-			 org-clock-leftover-time)))
-
-      (when (and org-clock-auto-clock-resolution
-		 (or (not interrupting)
-		     (eq t org-clock-auto-clock-resolution))
-		 (not org-clock-clocking-in)
-		 (not org-clock-resolving-clocks))
-	(setq org-clock-leftover-time nil)
-	(let ((org-clock-clocking-in t))
-	  (org-resolve-clocks)))    ; check if any clocks are dangling
-
-      (when (equal select '(64))
-	;; Set start-time to `org-clock-out-time'
-	(let ((org-clock-continuously t))
-	  (org-clock-in nil org-clock-out-time)
-	  (throw 'abort nil)))
-
-      (when (equal select '(4))
-	(setq selected-task (org-clock-select-task "Clock-in on task: "))
-	(if selected-task
-	    (setq selected-task (copy-marker selected-task))
-	  (error "Abort")))
-
-      (when (equal select '(16))
-	;; Mark as default clocking task
-	(org-clock-mark-default-task))
-
-      (when interrupting
-	;; We are interrupting the clocking of a different task.
-	;; Save a marker to this task, so that we can go back.
-	;; First check if we are trying to clock into the same task!
-	(when (save-excursion
-		(unless selected-task
-		  (org-back-to-heading t))
-		(and (equal (marker-buffer org-clock-hd-marker)
-			    (if selected-task
-				(marker-buffer selected-task)
-			      (current-buffer)))
-		     (= (marker-position org-clock-hd-marker)
-			(if selected-task
-			    (marker-position selected-task)
-			  (point)))
-		     (equal org-clock-current-task (nth 4 (org-heading-components)))))
-	  (message "Clock continues in \"%s\"" org-clock-heading)
-	  (throw 'abort nil))
-	(move-marker org-clock-interrupted-task
-		     (marker-position org-clock-marker)
-		     (marker-buffer org-clock-marker))
-	(let ((org-clock-clocking-in t))
-	  (org-clock-out nil t)))
-
-      ;; Clock in at which position?
-      (setq target-pos
-	    (if (and (eobp) (not (org-at-heading-p)))
-		(point-at-bol 0)
-	      (point)))
-      (save-excursion
-	(when (and selected-task (marker-buffer selected-task))
-	  ;; There is a selected task, move to the correct buffer
-	  ;; and set the new target position.
-	  (set-buffer (org-base-buffer (marker-buffer selected-task)))
-	  (setq target-pos (marker-position selected-task))
-	  (move-marker selected-task nil))
-	(org-with-wide-buffer
-	 (goto-char target-pos)
-	 (org-back-to-heading t)
-	 (or interrupting (move-marker org-clock-interrupted-task nil))
-	 (run-hooks 'org-clock-in-prepare-hook)
-	 (org-clock-history-push)
-	 (setq org-clock-current-task (nth 4 (org-heading-components)))
-	 (cond ((functionp org-clock-in-switch-to-state)
-		(let ((case-fold-search nil))
-		  (looking-at org-complex-heading-regexp))
-		(let ((newstate (funcall org-clock-in-switch-to-state
-					 (match-string 2))))
-		  (when newstate (org-todo newstate))))
-	       ((and org-clock-in-switch-to-state
-		     (not (looking-at (concat org-outline-regexp "[ \t]*"
-					      org-clock-in-switch-to-state
-					      "\\>"))))
-		(org-todo org-clock-in-switch-to-state)))
-	 (setq org-clock-heading (org-clock--mode-line-heading))
-	 (org-clock-find-position org-clock-in-resume)
-	 (cond
-	  ((and org-clock-in-resume
-		(looking-at
-		 (concat "^[ \t]*" org-clock-string
-			 " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
-			 " *\\sw+.? +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
-	   (message "Matched %s" (match-string 1))
-	   (setq ts (concat "[" (match-string 1) "]"))
-	   (goto-char (match-end 1))
-	   (setq org-clock-start-time
-		 (apply 'encode-time
-			(org-parse-time-string (match-string 1))))
-	   (setq org-clock-effort (org-entry-get (point) org-effort-property))
-	   (setq org-clock-total-time (org-clock-sum-current-item
-				       (org-clock-get-sum-start))))
-	  ((eq org-clock-in-resume 'auto-restart)
-	   ;; called from org-clock-load during startup,
-	   ;; do not interrupt, but warn!
-	   (message "Cannot restart clock because task does not contain unfinished clock")
-	   (ding)
-	   (sit-for 2)
-	   (throw 'abort nil))
-	  (t
-	   (insert-before-markers "\n")
-	   (backward-char 1)
-	   (org-indent-line)
-	   (when (and (save-excursion
-			(end-of-line 0)
-			(org-in-item-p)))
-	     (beginning-of-line 1)
-	     (indent-line-to (- (org-get-indentation) 2)))
-	   (insert org-clock-string " ")
-	   (setq org-clock-effort (org-entry-get (point) org-effort-property))
-	   (setq org-clock-total-time (org-clock-sum-current-item
-				       (org-clock-get-sum-start)))
-	   (setq org-clock-start-time
-		 (or (and org-clock-continuously org-clock-out-time)
-		     (and leftover
-			  (y-or-n-p
-			   (format
-			    "You stopped another clock %d mins ago; start this one from then? "
-			    (/ (- (float-time
-				   (org-current-time org-clock-rounding-minutes t))
-				  (float-time leftover))
-			       60)))
-			  leftover)
-		     start-time
-		     (org-current-time org-clock-rounding-minutes t)))
-	   (setq ts (org-insert-time-stamp org-clock-start-time
-					   'with-hm 'inactive))))
-	 (move-marker org-clock-marker (point) (buffer-base-buffer))
-	 (move-marker org-clock-hd-marker
-		      (save-excursion (org-back-to-heading t) (point))
-		      (buffer-base-buffer))
-	 (setq org-clock-has-been-used t)
-	 ;; add to mode line
-	 (when (or (eq org-clock-clocked-in-display 'mode-line)
-		   (eq org-clock-clocked-in-display 'both))
-	   (or global-mode-string (setq global-mode-string '("")))
-	   (or (memq 'org-mode-line-string global-mode-string)
-	       (setq global-mode-string
-		     (append global-mode-string '(org-mode-line-string)))))
-	 ;; add to frame title
-	 (when (or (eq org-clock-clocked-in-display 'frame-title)
-		   (eq org-clock-clocked-in-display 'both))
-	   (setq frame-title-format org-clock-frame-title-format))
-	 (org-clock-update-mode-line)
-	 (when org-clock-mode-line-timer
-	   (cancel-timer org-clock-mode-line-timer)
-	   (setq org-clock-mode-line-timer nil))
-	 (when org-clock-clocked-in-display
-	   (setq org-clock-mode-line-timer
-		 (run-with-timer org-clock-update-period
-				 org-clock-update-period
-				 'org-clock-update-mode-line)))
-	 (when org-clock-idle-timer
-	   (cancel-timer org-clock-idle-timer)
-	   (setq org-clock-idle-timer nil))
-	 (setq org-clock-idle-timer
-	       (run-with-timer 60 60 'org-resolve-clocks-if-idle))
-	 (message "Clock starts at %s - %s" ts org--msg-extra)
-	 (run-hooks 'org-clock-in-hook))))))
-
-;;;###autoload
-(defun org-clock-in-last (&optional arg)
-  "Clock in the last closed clocked item.
-When already clocking in, send a warning.
-With a universal prefix argument, select the task you want to
-clock in from the last clocked in tasks.
-With two universal prefix arguments, start clocking using the
-last clock-out time, if any.
-With three universal prefix arguments, interactively prompt
-for a todo state to switch to, overriding the existing value
-`org-clock-in-switch-to-state'."
-  (interactive "P")
-  (if (equal arg '(4)) (org-clock-in arg)
-    (let ((start-time (if (or org-clock-continuously (equal arg '(16)))
-			  (or org-clock-out-time
-			      (org-current-time org-clock-rounding-minutes t))
-			(org-current-time org-clock-rounding-minutes t))))
-      (if (null org-clock-history)
-	  (message "No last clock")
-	(let ((org-clock-in-switch-to-state
-	       (if (and (not org-clock-current-task) (equal arg '(64)))
-		   (completing-read "Switch to state: "
-				    (and org-clock-history
-					 (with-current-buffer
-					     (marker-buffer (car org-clock-history))
-					   org-todo-keywords-1)))
-		 org-clock-in-switch-to-state))
-	      (already-clocking org-clock-current-task))
-	  (org-clock-clock-in (list (car org-clock-history)) nil start-time)
-	  (or already-clocking
-	      ;; Don't display a message if we are already clocking in
-	      (message "Clocking back: %s (in %s)"
-		       org-clock-current-task
-		       (buffer-name (marker-buffer org-clock-marker)))))))))
-
-(defun org-clock-mark-default-task ()
-  "Mark current task as default task."
-  (interactive)
-  (save-excursion
-    (org-back-to-heading t)
-    (move-marker org-clock-default-task (point))))
-
-(defun org-clock-get-sum-start ()
-  "Return the time from which clock times should be counted.
-
-This is for the currently running clock as it is displayed in the
-mode line.  This function looks at the properties LAST_REPEAT and
-in particular CLOCK_MODELINE_TOTAL and the corresponding variable
-`org-clock-mode-line-total' and then decides which time to use.
-
-The time is always returned as UTC."
-  (let ((cmt (or (org-entry-get nil "CLOCK_MODELINE_TOTAL" 'selective)
-		 (symbol-name org-clock-mode-line-total)))
-	(lr (org-entry-get nil "LAST_REPEAT")))
-    (cond
-     ((equal cmt "current")
-      (setq org--msg-extra "showing time in current clock instance")
-      (current-time))
-     ((equal cmt "today")
-      (setq org--msg-extra "showing today's task time.")
-      (let* ((dt (decode-time))
-	     (hour (nth 2 dt))
-	     (day (nth 3 dt)))
-	(if (< hour org-extend-today-until) (setf (nth 3 dt) (1- day)))
-	(setf (nth 2 dt) org-extend-today-until)
-	(apply #'encode-time (append (list 0 0) (nthcdr 2 dt)))))
-     ((or (equal cmt "all")
-	  (and (or (not cmt) (equal cmt "auto"))
-	       (not lr)))
-      (setq org--msg-extra "showing entire task time.")
-      nil)
-     ((or (equal cmt "repeat")
-	  (and (or (not cmt) (equal cmt "auto"))
-	       lr))
-      (setq org--msg-extra "showing task time since last repeat.")
-      (and lr (org-time-string-to-time lr)))
-     (t nil))))
-
-(defun org-clock-find-position (find-unclosed)
-  "Find the location where the next clock line should be inserted.
-When FIND-UNCLOSED is non-nil, first check if there is an unclosed clock
-line and position cursor in that line."
-  (org-back-to-heading t)
-  (catch 'exit
-    (let* ((beg (line-beginning-position))
-	   (end (save-excursion (outline-next-heading) (point)))
-	   (org-clock-into-drawer (org-clock-into-drawer))
-	   (drawer (org-clock-drawer-name)))
-      ;; Look for a running clock if FIND-UNCLOSED in non-nil.
-      (when find-unclosed
-	(let ((open-clock-re
-	       (concat "^[ \t]*"
-		       org-clock-string
-		       " \\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"
-		       " *\\sw+ +[012][0-9]:[0-5][0-9]\\)\\][ \t]*$")))
-	  (while (re-search-forward open-clock-re end t)
-	    (let ((element (org-element-at-point)))
-	      (when (and (eq (org-element-type element) 'clock)
-			 (eq (org-element-property :status element) 'running))
-		(beginning-of-line)
-		(throw 'exit t))))))
-      ;; Look for an existing clock drawer.
-      (when drawer
-	(goto-char beg)
-	(let ((drawer-re (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$")))
-	  (while (re-search-forward drawer-re end t)
-	    (let ((element (org-element-at-point)))
-	      (when (eq (org-element-type element) 'drawer)
-		(let ((cend (org-element-property :contents-end element)))
-		  (if (and (not org-log-states-order-reversed) cend)
-		      (goto-char cend)
-		    (forward-line))
-		  (throw 'exit t)))))))
-      (goto-char beg)
-      (let ((clock-re (concat "^[ \t]*" org-clock-string))
-	    (count 0)
-	    positions)
-	;; Count the CLOCK lines and store their positions.
-	(save-excursion
-	  (while (re-search-forward clock-re end t)
-	    (let ((element (org-element-at-point)))
-	      (when (eq (org-element-type element) 'clock)
-		(setq positions (cons (line-beginning-position) positions)
-		      count (1+ count))))))
-	(cond
-	 ((null positions)
-	  ;; Skip planning line and property drawer, if any.
-	  (org-end-of-meta-data)
-	  (unless (bolp) (insert "\n"))
-	  ;; Create a new drawer if necessary.
-	  (when (and org-clock-into-drawer
-		     (or (not (wholenump org-clock-into-drawer))
-			 (< org-clock-into-drawer 2)))
-	    (let ((beg (point)))
-	      (insert ":" drawer ":\n:END:\n")
-	      (org-indent-region beg (point))
-	      (goto-char beg)
-	      (org-flag-drawer t)
-	      (forward-line))))
-	 ;; When a clock drawer needs to be created because of the
-	 ;; number of clock items or simply if it is missing, collect
-	 ;; all clocks in the section and wrap them within the drawer.
-	 ((if (wholenump org-clock-into-drawer)
-	      (>= (1+ count) org-clock-into-drawer)
-	    drawer)
-	  ;; Skip planning line and property drawer, if any.
-	  (org-end-of-meta-data)
-	  (let ((beg (point)))
-	    (insert
-	     (mapconcat
-	      (lambda (p)
-		(save-excursion
-		  (goto-char p)
-		  (org-trim (delete-and-extract-region
-			     (save-excursion (skip-chars-backward " \r\t\n")
-					     (line-beginning-position 2))
-			     (line-beginning-position 2)))))
-	      positions "\n")
-	     "\n:END:\n")
-	    (let ((end (point-marker)))
-	      (goto-char beg)
-	      (save-excursion (insert ":" drawer ":\n"))
-	      (org-flag-drawer t)
-	      (org-indent-region (point) end)
-	      (forward-line)
-	      (unless org-log-states-order-reversed
-		(goto-char end)
-		(beginning-of-line -1))
-	      (set-marker end nil))))
-	 (org-log-states-order-reversed (goto-char (car (last positions))))
-	 (t (goto-char (car positions))))))))
-
-;;;###autoload
-(defun org-clock-out (&optional switch-to-state fail-quietly at-time)
-  "Stop the currently running clock.
-Throw an error if there is no running clock and FAIL-QUIETLY is nil.
-With a universal prefix, prompt for a state to switch the clocked out task
-to, overriding the existing value of `org-clock-out-switch-to-state'."
-  (interactive "P")
-  (catch 'exit
-    (when (not (org-clocking-p))
-      (setq global-mode-string
-	    (delq 'org-mode-line-string global-mode-string))
-      (setq frame-title-format org-frame-title-format-backup)
-      (force-mode-line-update)
-      (if fail-quietly (throw 'exit t) (user-error "No active clock")))
-    (let ((org-clock-out-switch-to-state
-	   (if switch-to-state
-	       (completing-read "Switch to state: "
-				(with-current-buffer
-				    (marker-buffer org-clock-marker)
-				  org-todo-keywords-1)
-				nil t "DONE")
-	     org-clock-out-switch-to-state))
-	  (now (org-current-time org-clock-rounding-minutes))
-	  ts te s h m remove)
-      (setq org-clock-out-time now)
-      (save-excursion ; Do not replace this with `with-current-buffer'.
-	(with-no-warnings (set-buffer (org-clocking-buffer)))
-	(save-restriction
-	  (widen)
-	  (goto-char org-clock-marker)
-	  (beginning-of-line 1)
-	  (if (and (looking-at (concat "[ \t]*" org-keyword-time-regexp))
-		   (equal (match-string 1) org-clock-string))
-	      (setq ts (match-string 2))
-	    (if fail-quietly (throw 'exit nil) (error "Clock start time is gone")))
-	  (goto-char (match-end 0))
-	  (delete-region (point) (point-at-eol))
-	  (insert "--")
-	  (setq te (org-insert-time-stamp (or at-time now) 'with-hm 'inactive))
-	  (setq s (- (float-time
-		      (apply #'encode-time (org-parse-time-string te)))
-		     (float-time
-		      (apply #'encode-time (org-parse-time-string ts))))
-		h (floor (/ s 3600))
-		s (- s (* 3600 h))
-		m (floor (/ s 60))
-		s (- s (* 60 s)))
-	  (insert " => " (format "%2d:%02d" h m))
-	  (move-marker org-clock-marker nil)
-	  (move-marker org-clock-hd-marker nil)
-	  ;; Possibly remove zero time clocks.  However, do not add
-	  ;; a note associated to the CLOCK line in this case.
-	  (cond ((and org-clock-out-remove-zero-time-clocks
-		      (= (+ h m) 0))
-		 (setq remove t)
-		 (delete-region (line-beginning-position)
-				(line-beginning-position 2)))
-		(org-log-note-clock-out
-		 (org-add-log-setup
-		  'clock-out nil nil nil
-		  (concat "# Task: " (org-get-heading t) "\n\n"))))
-	  (when org-clock-mode-line-timer
-	    (cancel-timer org-clock-mode-line-timer)
-	    (setq org-clock-mode-line-timer nil))
-	  (when org-clock-idle-timer
-	    (cancel-timer org-clock-idle-timer)
-	    (setq org-clock-idle-timer nil))
-	  (setq global-mode-string
-		(delq 'org-mode-line-string global-mode-string))
-	  (setq frame-title-format org-frame-title-format-backup)
-	  (when org-clock-out-switch-to-state
-	    (save-excursion
-	      (org-back-to-heading t)
-	      (let ((org-clock-out-when-done nil))
-		(cond
-		 ((functionp org-clock-out-switch-to-state)
-		  (let ((case-fold-search nil))
-		    (looking-at org-complex-heading-regexp))
-		  (let ((newstate (funcall org-clock-out-switch-to-state
-					   (match-string 2))))
-		    (when newstate (org-todo newstate))))
-		 ((and org-clock-out-switch-to-state
-		       (not (looking-at (concat org-outline-regexp "[ \t]*"
-						org-clock-out-switch-to-state
-						"\\>"))))
-		  (org-todo org-clock-out-switch-to-state))))))
-	  (force-mode-line-update)
-	  (message (concat "Clock stopped at %s after "
-			   (org-duration-from-minutes (+ (* 60 h) m)) "%s")
-		   te (if remove " => LINE REMOVED" ""))
-	  (run-hooks 'org-clock-out-hook)
-	  (unless (org-clocking-p)
-	    (setq org-clock-current-task nil)))))))
-
-(add-hook 'org-clock-out-hook 'org-clock-remove-empty-clock-drawer)
-
-(defun org-clock-remove-empty-clock-drawer ()
-  "Remove empty clock drawers in current subtree."
-  (save-excursion
-    (org-back-to-heading t)
-    (org-map-tree
-     (lambda ()
-       (let ((drawer (org-clock-drawer-name))
-	     (case-fold-search t))
-	 (when drawer
-	   (let ((re (format "^[ \t]*:%s:[ \t]*$" (regexp-quote drawer)))
-		 (end (save-excursion (outline-next-heading))))
-	     (while (re-search-forward re end t)
-	       (org-remove-empty-drawer-at (point))))))))))
-
-(defun org-clock-timestamps-up (&optional n)
-  "Increase CLOCK timestamps at cursor.
-Optional argument N tells to change by that many units."
-  (interactive "P")
-  (org-clock-timestamps-change 'up n))
-
-(defun org-clock-timestamps-down (&optional n)
-  "Increase CLOCK timestamps at cursor.
-Optional argument N tells to change by that many units."
-  (interactive "P")
-  (org-clock-timestamps-change 'down n))
-
-(defun org-clock-timestamps-change (updown &optional n)
-  "Change CLOCK timestamps synchronously at cursor.
-UPDOWN tells whether to change `up' or `down'.
-Optional argument N tells to change by that many units."
-  (let ((tschange (if (eq updown 'up) 'org-timestamp-up
-		    'org-timestamp-down))
-	(timestamp? (org-at-timestamp-p 'lax))
-	ts1 begts1 ts2 begts2 updatets1 tdiff)
-    (when timestamp?
-      (save-excursion
-	(move-beginning-of-line 1)
-	(re-search-forward org-ts-regexp3 nil t)
-	(setq ts1 (match-string 0) begts1 (match-beginning 0))
-	(when (re-search-forward org-ts-regexp3 nil t)
-	  (setq ts2 (match-string 0) begts2 (match-beginning 0))))
-      ;; Are we on the second timestamp?
-      (if (<= begts2 (point)) (setq updatets1 t))
-      (if (not ts2)
-	  ;; fall back on org-timestamp-up if there is only one
-	  (funcall tschange n)
-	(funcall tschange n)
-	(let ((ts (if updatets1 ts2 ts1))
-	      (begts (if updatets1 begts1 begts2)))
-	  (setq tdiff
-		(time-subtract
-		 (org-time-string-to-time org-last-changed-timestamp)
-		 (org-time-string-to-time ts)))
-	  (save-excursion
-	    (goto-char begts)
-	    (org-timestamp-change
-	     (round (/ (float-time tdiff)
-		       (pcase timestamp?
-			 (`minute 60)
-			 (`hour 3600)
-			 (`day (* 24 3600))
-			 (`month (* 24 3600 31))
-			 (`year (* 24 3600 365.2)))))
-	     timestamp? 'updown)))))))
-
-;;;###autoload
-(defun org-clock-cancel ()
-  "Cancel the running clock by removing the start timestamp."
-  (interactive)
-  (when (not (org-clocking-p))
-    (setq global-mode-string
-	  (delq 'org-mode-line-string global-mode-string))
-    (setq frame-title-format org-frame-title-format-backup)
-    (force-mode-line-update)
-    (error "No active clock"))
-  (save-excursion    ; Do not replace this with `with-current-buffer'.
-    (with-no-warnings (set-buffer (org-clocking-buffer)))
-    (goto-char org-clock-marker)
-    (if (looking-back (concat "^[ \t]*" org-clock-string ".*")
-		      (line-beginning-position))
-	(progn (delete-region (1- (point-at-bol)) (point-at-eol))
-	       (org-remove-empty-drawer-at (point)))
-      (message "Clock gone, cancel the timer anyway")
-      (sit-for 2)))
-  (move-marker org-clock-marker nil)
-  (move-marker org-clock-hd-marker nil)
-  (setq global-mode-string
-	(delq 'org-mode-line-string global-mode-string))
-  (setq frame-title-format org-frame-title-format-backup)
-  (force-mode-line-update)
-  (message "Clock canceled")
-  (run-hooks 'org-clock-cancel-hook))
-
-;;;###autoload
-(defun org-clock-goto (&optional select)
-  "Go to the currently clocked-in entry, or to the most recently clocked one.
-With prefix arg SELECT, offer recently clocked tasks for selection."
-  (interactive "@P")
-  (let* ((recent nil)
-	 (m (cond
-	     (select
-	      (or (org-clock-select-task "Select task to go to: ")
-		  (error "No task selected")))
-	     ((org-clocking-p) org-clock-marker)
-	     ((and org-clock-goto-may-find-recent-task
-		   (car org-clock-history)
-		   (marker-buffer (car org-clock-history)))
-	      (setq recent t)
-	      (car org-clock-history))
-	     (t (error "No active or recent clock task")))))
-    (pop-to-buffer-same-window (marker-buffer m))
-    (if (or (< m (point-min)) (> m (point-max))) (widen))
-    (goto-char m)
-    (org-show-entry)
-    (org-back-to-heading t)
-    (org-cycle-hide-drawers 'children)
-    (recenter org-clock-goto-before-context)
-    (org-reveal)
-    (if recent
-	(message "No running clock, this is the most recently clocked task"))
-    (run-hooks 'org-clock-goto-hook)))
-
-(defvar-local org-clock-file-total-minutes nil
-  "Holds the file total time in minutes, after a call to `org-clock-sum'.")
-
-;;;###autoload
-(defun org-clock-sum-today (&optional headline-filter)
-  "Sum the times for each subtree for today."
-  (let ((range (org-clock-special-range 'today)))
-    (org-clock-sum (car range) (cadr range)
-		   headline-filter :org-clock-minutes-today)))
-
-(defun org-clock-sum-custom (&optional headline-filter range propname)
-  "Sum the times for each subtree for today."
-  (let ((r (or (and (symbolp range) (org-clock-special-range range))
-	       (org-clock-special-range
-		(intern (completing-read
-			 "Range: "
-			 '("today" "yesterday" "thisweek" "lastweek"
-			   "thismonth" "lastmonth" "thisyear" "lastyear"
-			   "interactive")
-			 nil t))))))
-    (org-clock-sum (car r) (cadr r)
-		   headline-filter (or propname :org-clock-minutes-custom))))
-
-;;;###autoload
-(defun org-clock-sum (&optional tstart tend headline-filter propname)
-  "Sum the times for each subtree.
-Puts the resulting times in minutes as a text property on each headline.
-TSTART and TEND can mark a time range to be considered.
-HEADLINE-FILTER is a zero-arg function that, if specified, is called for
-each headline in the time range with point at the headline.  Headlines for
-which HEADLINE-FILTER returns nil are excluded from the clock summation.
-PROPNAME lets you set a custom text property instead of :org-clock-minutes."
-  (org-with-silent-modifications
-   (let* ((re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
-		      org-clock-string
-		      "[ \t]*\\(?:\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)\\|=>[ \t]+\\([0-9]+\\):\\([0-9]+\\)\\)"))
-	  (lmax 30)
-	  (ltimes (make-vector lmax 0))
-	  (level 0)
-	  (tstart (cond ((stringp tstart) (org-time-string-to-seconds tstart))
-			((consp tstart) (float-time tstart))
-			(t tstart)))
-	  (tend (cond ((stringp tend) (org-time-string-to-seconds tend))
-		      ((consp tend) (float-time tend))
-		      (t tend)))
-	  (t1 0)
-	  time)
-     (remove-text-properties (point-min) (point-max)
-			     `(,(or propname :org-clock-minutes) t
-			       :org-clock-force-headline-inclusion t))
-     (save-excursion
-       (goto-char (point-max))
-       (while (re-search-backward re nil t)
-	 (cond
-	  ((match-end 2)
-	   ;; Two time stamps.
-	   (let* ((ts (float-time
-		       (apply #'encode-time
-			      (save-match-data
-				(org-parse-time-string (match-string 2))))))
-		  (te (float-time
-		       (apply #'encode-time
-			      (org-parse-time-string (match-string 3)))))
-		  (dt (- (if tend (min te tend) te)
-			 (if tstart (max ts tstart) ts))))
-	     (when (> dt 0) (cl-incf t1 (floor (/ dt 60))))))
-	  ((match-end 4)
-	   ;; A naked time.
-	   (setq t1 (+ t1 (string-to-number (match-string 5))
-		       (* 60 (string-to-number (match-string 4))))))
-	  (t	 ;A headline
-	   ;; Add the currently clocking item time to the total.
-	   (when (and org-clock-report-include-clocking-task
-		      (eq (org-clocking-buffer) (current-buffer))
-		      (eq (marker-position org-clock-hd-marker) (point))
-		      tstart
-		      tend
-		      (>= (float-time org-clock-start-time) tstart)
-		      (<= (float-time org-clock-start-time) tend))
-	     (let ((time (floor (- (float-time)
-				   (float-time org-clock-start-time))
-				60)))
-	       (setq t1 (+ t1 time))))
-	   (let* ((headline-forced
-		   (get-text-property (point)
-				      :org-clock-force-headline-inclusion))
-		  (headline-included
-		   (or (null headline-filter)
-		       (save-excursion
-			 (save-match-data (funcall headline-filter))))))
-	     (setq level (- (match-end 1) (match-beginning 1)))
-	     (when (>= level lmax)
-	       (setq ltimes (vconcat ltimes (make-vector lmax 0)) lmax (* 2 lmax)))
-	     (when (or (> t1 0) (> (aref ltimes level) 0))
-	       (when (or headline-included headline-forced)
-		 (if headline-included
-		     (cl-loop for l from 0 to level do
-			      (aset ltimes l (+ (aref ltimes l) t1))))
-		 (setq time (aref ltimes level))
-		 (goto-char (match-beginning 0))
-		 (put-text-property (point) (point-at-eol)
-				    (or propname :org-clock-minutes) time)
-		 (when headline-filter
-		   (save-excursion
-		     (save-match-data
-		       (while (org-up-heading-safe)
-			 (put-text-property
-			  (point) (line-end-position)
-			  :org-clock-force-headline-inclusion t))))))
-	       (setq t1 0)
-	       (cl-loop for l from level to (1- lmax) do
-			(aset ltimes l 0)))))))
-       (setq org-clock-file-total-minutes (aref ltimes 0))))))
-
-(defun org-clock-sum-current-item (&optional tstart)
-  "Return time, clocked on current item in total."
-  (save-excursion
-    (save-restriction
-      (org-narrow-to-subtree)
-      (org-clock-sum tstart)
-      org-clock-file-total-minutes)))
-
-;;;###autoload
-(defun org-clock-display (&optional arg)
-  "Show subtree times in the entire buffer.
-
-By default, show the total time for the range defined in
-`org-clock-display-default-range'.  With `\\[universal-argument]' \
-prefix, show
-the total time for today instead.
-
-With `\\[universal-argument] \\[universal-argument]' prefix, \
-use a custom range, entered at prompt.
-
-With `\\[universal-argument] \ \\[universal-argument] \
-\\[universal-argument]' prefix, display the total time in the
-echo area.
-
-Use `\\[org-clock-remove-overlays]' to remove the subtree times."
-  (interactive "P")
-  (org-clock-remove-overlays)
-  (let* ((todayp (equal arg '(4)))
-	 (customp (member arg '((16) today yesterday
-				thisweek lastweek thismonth
-				lastmonth thisyear lastyear
-				untilnow interactive)))
-	 (prop (cond ((not arg) :org-clock-minutes-default)
-		     (todayp :org-clock-minutes-today)
-		     (customp :org-clock-minutes-custom)
-		     (t :org-clock-minutes))))
-    (cond ((not arg) (org-clock-sum-custom
-		      nil org-clock-display-default-range prop))
-	  (todayp (org-clock-sum-today))
-	  (customp (org-clock-sum-custom nil arg))
-	  (t (org-clock-sum)))
-    (unless (equal arg '(64))
-      (save-excursion
-	(goto-char (point-min))
-	(let ((p nil))
-	  (while (or (and (equal (setq p (point)) (point-min))
-			  (get-text-property p prop))
-		     (setq p (next-single-property-change (point) prop)))
-	    (goto-char p)
-	    (let ((time (get-text-property p prop)))
-	      (when time (org-clock-put-overlay time)))))
-	;; Arrange to remove the overlays upon next change.
-	(when org-remove-highlights-with-change
-	  (add-hook 'before-change-functions 'org-clock-remove-overlays
-		    nil 'local))))
-    (let* ((h (/ org-clock-file-total-minutes 60))
-	   (m (- org-clock-file-total-minutes (* 60 h))))
-      (message (concat (format "Total file time%s: "
-			       (cond (todayp " for today")
-				     (customp " (custom)")
-				     (t "")))
-		       (org-duration-from-minutes
-			org-clock-file-total-minutes)
-		       " (%d hours and %d minutes)")
-	       h m))))
-
-(defvar-local org-clock-overlays nil)
-
-(defun org-clock-put-overlay (time)
-  "Put an overlays on the current line, displaying TIME.
-This creates a new overlay and stores it in `org-clock-overlays', so that it
-will be easy to remove."
-  (let (ov tx)
-    (beginning-of-line)
-    (let ((case-fold-search nil))
-      (when (looking-at org-complex-heading-regexp)
-	(goto-char (match-beginning 4))))
-    (setq ov (make-overlay (point) (point-at-eol))
-	  tx (concat (buffer-substring-no-properties (point) (match-end 4))
-		     (org-add-props
-			 (make-string
-			  (max 0 (- (- 60 (current-column))
-				    (- (match-end 4) (match-beginning 4))
-				    (length (org-get-at-bol 'line-prefix))))
-			  ?\·)
-			 '(face shadow))
-		     (org-add-props
-			 (format " %9s " (org-duration-from-minutes time))
-			 '(face org-clock-overlay))
-		     ""))
-    (overlay-put ov 'display tx)
-    (push ov org-clock-overlays)))
-
-;;;###autoload
-(defun org-clock-remove-overlays (&optional _beg _end noremove)
-  "Remove the occur highlights from the buffer.
-If NOREMOVE is nil, remove this function from the
-`before-change-functions' in the current buffer."
-  (interactive)
-  (unless org-inhibit-highlight-removal
-    (mapc #'delete-overlay org-clock-overlays)
-    (setq org-clock-overlays nil)
-    (unless noremove
-      (remove-hook 'before-change-functions
-		   'org-clock-remove-overlays 'local))))
-
-(defvar org-state) ;; dynamically scoped into this function
-(defun org-clock-out-if-current ()
-  "Clock out if the current entry contains the running clock.
-This is used to stop the clock after a TODO entry is marked DONE,
-and is only done if the variable `org-clock-out-when-done' is not nil."
-  (when (and (org-clocking-p)
-	     org-clock-out-when-done
-	     (marker-buffer org-clock-marker)
-	     (or (and (eq t org-clock-out-when-done)
-		      (member org-state org-done-keywords))
-		 (and (listp org-clock-out-when-done)
-		      (member org-state org-clock-out-when-done)))
-	     (equal (or (buffer-base-buffer (org-clocking-buffer))
-			(org-clocking-buffer))
-		    (or (buffer-base-buffer (current-buffer))
-			(current-buffer)))
-	     (< (point) org-clock-marker)
-	     (> (save-excursion (outline-next-heading) (point))
-		org-clock-marker))
-    ;; Clock out, but don't accept a logging message for this.
-    (let ((org-log-note-clock-out nil)
-	  (org-clock-out-switch-to-state nil))
-      (org-clock-out))))
-
-(add-hook 'org-after-todo-state-change-hook
-	  'org-clock-out-if-current)
-
-;;;###autoload
-(defun org-clock-get-clocktable (&rest props)
-  "Get a formatted clocktable with parameters according to PROPS.
-The table is created in a temporary buffer, fully formatted and
-fontified, and then returned."
-  ;; Set the defaults
-  (setq props (plist-put props :name "clocktable"))
-  (unless (plist-member props :maxlevel)
-    (setq props (plist-put props :maxlevel 2)))
-  (unless (plist-member props :scope)
-    (setq props (plist-put props :scope 'agenda)))
-  (with-temp-buffer
-    (org-mode)
-    (org-create-dblock props)
-    (org-update-dblock)
-    (org-font-lock-ensure)
-    (forward-line 2)
-    (buffer-substring (point) (progn
-				(re-search-forward "^[ \t]*#\\+END" nil t)
-				(point-at-bol)))))
-
-;;;###autoload
-(defun org-clock-report (&optional arg)
-  "Update or create a table containing a report about clocked time.
-
-If point is inside an existing clocktable block, update it.
-Otherwise, insert a new one.
-
-The new table inherits its properties from the variable
-`org-clock-clocktable-default-properties'.  The scope of the
-clocktable, when not specified in the previous variable, is
-`subtree' when the function is called from within a subtree, and
-`file' elsewhere.
-
-When called with a prefix argument, move to the first clock table
-in the buffer and update it."
-  (interactive "P")
-  (org-clock-remove-overlays)
-  (when arg
-    (org-find-dblock "clocktable")
-    (org-show-entry))
-  (pcase (org-in-clocktable-p)
-    (`nil
-     (org-create-dblock
-      (org-combine-plists
-       (list :scope (if (org-before-first-heading-p) 'file 'subtree))
-       org-clock-clocktable-default-properties
-       '(:name "clocktable"))))
-    (start (goto-char start)))
-  (org-update-dblock))
-
-(defun org-day-of-week (day month year)
-  "Returns the day of the week as an integer."
-  (nth 6
-       (decode-time
-	(date-to-time
-	 (format "%d-%02d-%02dT00:00:00" year month day)))))
-
-(defun org-quarter-to-date (quarter year)
-  "Get the date (week day year) of the first day of a given quarter."
-  (let (startday)
-    (cond
-     ((= quarter 1)
-      (setq startday (org-day-of-week 1 1 year))
-      (cond
-       ((= startday 0)
-	(list 52 7 (- year 1)))
-       ((= startday 6)
-	(list 52 6 (- year 1)))
-       ((<= startday 4)
-	(list 1 startday year))
-       ((> startday 4)
-	(list 53 startday (- year 1)))
-       )
-      )
-     ((= quarter 2)
-      (setq startday (org-day-of-week 1 4 year))
-      (cond
-       ((= startday 0)
-	(list 13 startday year))
-       ((< startday 4)
-	(list 14 startday year))
-       ((>= startday 4)
-	(list 13 startday year))
-       )
-      )
-     ((= quarter 3)
-      (setq startday (org-day-of-week 1 7 year))
-      (cond
-       ((= startday 0)
-	(list 26 startday year))
-       ((< startday 4)
-	(list 27 startday year))
-       ((>= startday 4)
-	(list 26 startday year))
-       )
-      )
-     ((= quarter 4)
-      (setq startday (org-day-of-week 1 10 year))
-      (cond
-       ((= startday 0)
-	(list 39 startday year))
-       ((<= startday 4)
-	(list 40 startday year))
-       ((> startday 4)
-	(list 39 startday year)))))))
-
-(defun org-clock-special-range (key &optional time as-strings wstart mstart)
-  "Return two times bordering a special time range.
-
-KEY is a symbol specifying the range and can be one of `today',
-`yesterday', `thisweek', `lastweek', `thismonth', `lastmonth',
-`thisyear', `lastyear' or `untilnow'.  If set to `interactive',
-user is prompted for range boundaries.  It can be a string or an
-integer.
-
-By default, a week starts Monday 0:00 and ends Sunday 24:00.  The
-range is determined relative to TIME, which defaults to current
-time.
-
-The return value is a list containing two internal times, one for
-the beginning of the range and one for its end, like the ones
-returned by `current time' or `encode-time' and a string used to
-display information.  If AS-STRINGS is non-nil, the returned
-times will be formatted strings.
-
-If WSTART is non-nil, use this number to specify the starting day
-of a week (monday is 1).  If MSTART is non-nil, use this number
-to specify the starting day of a month (1 is the first day of the
-month).  If you can combine both, the month starting day will
-have priority."
-  (let* ((tm (decode-time time))
-	 (m (nth 1 tm))
-	 (h (nth 2 tm))
-	 (d (nth 3 tm))
-	 (month (nth 4 tm))
-	 (y (nth 5 tm))
-	 (dow (nth 6 tm))
-	 (skey (format "%s" key))
-	 (shift 0)
-	 (q (cond ((>= month 10) 4)
-		  ((>= month 7) 3)
-		  ((>= month 4) 2)
-		  (t 1)))
-	 m1 h1 d1 month1 y1 shiftedy shiftedm shiftedq)
-    (cond
-     ((string-match "\\`[0-9]+\\'" skey)
-      (setq y (string-to-number skey) month 1 d 1 key 'year))
-     ((string-match "\\`\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)\\'" skey)
-      (setq y (string-to-number (match-string 1 skey))
-	    month (string-to-number (match-string 2 skey))
-	    d 1
-	    key 'month))
-     ((string-match "\\`\\([0-9]+\\)-[wW]\\([0-9]\\{1,2\\}\\)\\'" skey)
-      (require 'cal-iso)
-      (let ((date (calendar-gregorian-from-absolute
-		   (calendar-iso-to-absolute
-		    (list (string-to-number (match-string 2 skey))
-			  1
-			  (string-to-number (match-string 1 skey)))))))
-	(setq d (nth 1 date)
-	      month (car date)
-	      y (nth 2 date)
-	      dow 1
-	      key 'week)))
-     ((string-match "\\`\\([0-9]+\\)-[qQ]\\([1-4]\\)\\'" skey)
-      (require 'cal-iso)
-      (setq q (string-to-number (match-string 2 skey)))
-      (let ((date (calendar-gregorian-from-absolute
-		   (calendar-iso-to-absolute
-		    (org-quarter-to-date
-		     q (string-to-number (match-string 1 skey)))))))
-	(setq d (nth 1 date)
-	      month (car date)
-	      y (nth 2 date)
-	      dow 1
-	      key 'quarter)))
-     ((string-match
-       "\\`\\([0-9]+\\)-\\([0-9]\\{1,2\\}\\)-\\([0-9]\\{1,2\\}\\)\\'"
-       skey)
-      (setq y (string-to-number (match-string 1 skey))
-	    month (string-to-number (match-string 2 skey))
-	    d (string-to-number (match-string 3 skey))
-	    key 'day))
-     ((string-match "\\([-+][0-9]+\\)\\'" skey)
-      (setq shift (string-to-number (match-string 1 skey))
-	    key (intern (substring skey 0 (match-beginning 1))))
-      (when (and (memq key '(quarter thisq)) (> shift 0))
-	(error "Looking forward with quarters isn't implemented"))))
-    (when (= shift 0)
-      (pcase key
-	(`yesterday (setq key 'today   shift -1))
-	(`lastweek  (setq key 'week    shift -1))
-	(`lastmonth (setq key 'month   shift -1))
-	(`lastyear  (setq key 'year    shift -1))
-	(`lastq     (setq key 'quarter shift -1))))
-    ;; Prepare start and end times depending on KEY's type.
-    (pcase key
-      ((or `day `today) (setq m 0 h 0 h1 24 d (+ d shift)))
-      ((or `week `thisweek)
-       (let* ((ws (or wstart 1))
-	      (diff (+ (* -7 shift) (if (= dow 0) (- 7 ws) (- dow ws)))))
-	 (setq m 0 h 0 d (- d diff) d1 (+ 7 d))))
-      ((or `month `thismonth)
-       (setq h 0 m 0 d (or mstart 1) month (+ month shift) month1 (1+ month)))
-      ((or `quarter `thisq)
-       ;; Compute if this shift remains in this year.  If not, compute
-       ;; how many years and quarters we have to shift (via floor*) and
-       ;; compute the shifted years, months and quarters.
-       (cond
-	((< (+ (- q 1) shift) 0)	; Shift not in this year.
-	 (let* ((interval (* -1 (+ (- q 1) shift)))
-		;; Set tmp to ((years to shift) (quarters to shift)).
-		(tmp (cl-floor interval 4)))
-	   ;; Due to the use of floor, 0 quarters actually means 4.
-	   (if (= 0 (nth 1 tmp))
-	       (setq shiftedy (- y (nth 0 tmp))
-		     shiftedm 1
-		     shiftedq 1)
-	     (setq shiftedy (- y (+ 1 (nth 0 tmp)))
-		   shiftedm (- 13 (* 3 (nth 1 tmp)))
-		   shiftedq (- 5 (nth 1 tmp)))))
-	 (setq m 0 h 0 d 1 month shiftedm month1 (+ 3 shiftedm) y shiftedy))
-	((> (+ q shift) 0)		; Shift is within this year.
-	 (setq shiftedq (+ q shift))
-	 (setq shiftedy y)
-	 (let ((qshift (* 3 (1- (+ q shift)))))
-	   (setq m 0 h 0 d 1 month (+ 1 qshift) month1 (+ 4 qshift))))))
-      ((or `year `thisyear)
-       (setq m 0 h 0 d 1 month 1 y (+ y shift) y1 (1+ y)))
-      ((or `interactive `untilnow))	; Special cases, ignore them.
-      (_ (user-error "No such time block %s" key)))
-    ;; Format start and end times according to AS-STRINGS.
-    (let* ((start (pcase key
-		    (`interactive (org-read-date nil t nil "Range start? "))
-                    ;; In theory, all clocks started after the dawn of
-                    ;; humanity.
-		    (`untilnow (encode-time 0 0 0 0 0 -50000))
-		    (_ (encode-time 0 m h d month y))))
-	   (end (pcase key
-		  (`interactive (org-read-date nil t nil "Range end? "))
-		  (`untilnow (current-time))
-		  (_ (encode-time 0
-				  (or m1 m)
-				  (or h1 h)
-				  (or d1 d)
-				  (or month1 month)
-				  (or y1 y)))))
-	   (text
-	    (pcase key
-	      ((or `day `today) (format-time-string "%A, %B %d, %Y" start))
-	      ((or `week `thisweek) (format-time-string "week %G-W%V" start))
-	      ((or `month `thismonth) (format-time-string "%B %Y" start))
-	      ((or `year `thisyear) (format-time-string "the year %Y" start))
-	      ((or `quarter `thisq)
-	       (concat (org-count-quarter shiftedq)
-		       " quarter of " (number-to-string shiftedy)))
-	      (`interactive "(Range interactively set)")
-	      (`untilnow "now"))))
-      (if (not as-strings) (list start end text)
-	(let ((f (cdr org-time-stamp-formats)))
-	  (list (format-time-string f start)
-		(format-time-string f end)
-		text))))))
-
-(defun org-count-quarter (n)
-  (cond
-   ((= n 1) "1st")
-   ((= n 2) "2nd")
-   ((= n 3) "3rd")
-   ((= n 4) "4th")))
-
-;;;###autoload
-(defun org-clocktable-shift (dir n)
-  "Try to shift the :block date of the clocktable at point.
-Point must be in the #+BEGIN: line of a clocktable, or this function
-will throw an error.
-DIR is a direction, a symbol `left', `right', `up', or `down'.
-Both `left' and `down' shift the block toward the past, `up' and `right'
-push it toward the future.
-N is the number of shift steps to take.  The size of the step depends on
-the currently selected interval size."
-  (setq n (prefix-numeric-value n))
-  (and (memq dir '(left down)) (setq n (- n)))
-  (save-excursion
-    (goto-char (point-at-bol))
-    (if (not (looking-at "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>.*?:block[ \t]+\\(\\S-+\\)"))
-	(error "Line needs a :block definition before this command works")
-      (let* ((b (match-beginning 1)) (e (match-end 1))
-	     (s (match-string 1))
-	     block shift ins y mw d date wp m)
-	(cond
-	 ((equal s "yesterday") (setq s "today-1"))
-	 ((equal s "lastweek") (setq s "thisweek-1"))
-	 ((equal s "lastmonth") (setq s "thismonth-1"))
-	 ((equal s "lastyear") (setq s "thisyear-1"))
-	 ((equal s "lastq") (setq s "thisq-1")))
-
-	(cond
-	 ((string-match "^\\(today\\|thisweek\\|thismonth\\|thisyear\\|thisq\\)\\([-+][0-9]+\\)?$" s)
-	  (setq block (match-string 1 s)
-		shift (if (match-end 2)
-			  (string-to-number (match-string 2 s))
-			0))
-	  (setq shift (+ shift n))
-	  (setq ins (if (= shift 0) block (format "%s%+d" block shift))))
-	 ((string-match "\\([0-9]+\\)\\(-\\([wWqQ]?\\)\\([0-9]\\{1,2\\}\\)\\(-\\([0-9]\\{1,2\\}\\)\\)?\\)?" s)
-	  ;;               1        1  2   3       3  4                  4  5   6                6  5   2
-	  (setq y (string-to-number (match-string 1 s))
-		wp (and (match-end 3) (match-string 3 s))
-		mw (and (match-end 4) (string-to-number (match-string 4 s)))
-		d (and (match-end 6) (string-to-number (match-string 6 s))))
-	  (cond
-	   (d (setq ins (format-time-string
-			 "%Y-%m-%d"
-			 (encode-time 0 0 0 (+ d n) m y))))
-	   ((and wp (string-match "w\\|W" wp) mw (> (length wp) 0))
-	    (require 'cal-iso)
-	    (setq date (calendar-gregorian-from-absolute
-			(calendar-iso-to-absolute (list (+ mw n) 1 y))))
-	    (setq ins (format-time-string
-		       "%G-W%V"
-		       (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
-	   ((and wp (string-match "q\\|Q" wp) mw (> (length wp) 0))
-	    (require 'cal-iso)
-					; if the 4th + 1 quarter is requested we flip to the 1st quarter of the next year
-	    (if (> (+ mw n) 4)
-		(setq mw 0
-		      y (+ 1 y))
-	      ())
-					; if the 1st - 1 quarter is requested we flip to the 4th quarter of the previous year
-	    (if (= (+ mw n) 0)
-		(setq mw 5
-		      y (- y 1))
-	      ())
-	    (setq date (calendar-gregorian-from-absolute
-			(calendar-iso-to-absolute (org-quarter-to-date (+ mw n) y))))
-	    (setq ins (format-time-string
-		       (concat (number-to-string y) "-Q" (number-to-string (+ mw n)))
-		       (encode-time 0 0 0 (nth 1 date) (car date) (nth 2 date)))))
-	   (mw
-	    (setq ins (format-time-string
-		       "%Y-%m"
-		       (encode-time 0 0 0 1 (+ mw n) y))))
-	   (y
-	    (setq ins (number-to-string (+ y n))))))
-	 (t (error "Cannot shift clocktable block")))
-	(when ins
-	  (goto-char b)
-	  (insert ins)
-	  (delete-region (point) (+ (point) (- e b)))
-	  (beginning-of-line 1)
-	  (org-update-dblock)
-	  t)))))
-
-;;;###autoload
-(defun org-dblock-write:clocktable (params)
-  "Write the standard clocktable."
-  (setq params (org-combine-plists org-clocktable-defaults params))
-  (catch 'exit
-    (let* ((scope (plist-get params :scope))
-	   (files (pcase scope
-		    (`agenda
-		     (org-agenda-files t))
-		    (`agenda-with-archives
-		     (org-add-archive-files (org-agenda-files t)))
-		    (`file-with-archives
-		     (and buffer-file-name
-			  (org-add-archive-files (list buffer-file-name))))
-		    ((pred functionp) (funcall scope))
-		    ((pred consp) scope)
-		    (_ (or (buffer-file-name) (current-buffer)))))
-	   (block (plist-get params :block))
-	   (ts (plist-get params :tstart))
-	   (te (plist-get params :tend))
-	   (ws (plist-get params :wstart))
-	   (ms (plist-get params :mstart))
-	   (step (plist-get params :step))
-	   (formatter (or (plist-get params :formatter)
-			  org-clock-clocktable-formatter
-			  'org-clocktable-write-default))
-	   cc)
-      ;; Check if we need to do steps
-      (when block
-	;; Get the range text for the header
-	(setq cc (org-clock-special-range block nil t ws ms)
-	      ts (car cc)
-	      te (nth 1 cc)))
-      (when step
-	;; Write many tables, in steps
-	(unless (or block (and ts te))
-	  (error "Clocktable `:step' can only be used with `:block' or `:tstart,:end'"))
-	(org-clocktable-steps params)
-	(throw 'exit nil))
-
-      (org-agenda-prepare-buffers (if (consp files) files (list files)))
-
-      (let ((origin (point))
-	    (tables
-	     (if (consp files)
-		 (mapcar (lambda (file)
-			   (with-current-buffer (find-buffer-visiting file)
-			     (save-excursion
-			       (save-restriction
-				 (org-clock-get-table-data file params)))))
-			 files)
-	       ;; Get the right restriction for the scope.
-	       (save-restriction
-		 (cond
-		  ((not scope))	     ;use the restriction as it is now
-		  ((eq scope 'file) (widen))
-		  ((eq scope 'subtree) (org-narrow-to-subtree))
-		  ((eq scope 'tree)
-		   (while (org-up-heading-safe))
-		   (org-narrow-to-subtree))
-		  ((and (symbolp scope)
-			(string-match "\\`tree\\([0-9]+\\)\\'"
-				      (symbol-name scope)))
-		   (let ((level (string-to-number
-				 (match-string 1 (symbol-name scope)))))
-		     (catch 'exit
-		       (while (org-up-heading-safe)
-			 (looking-at org-outline-regexp)
-			 (when (<= (org-reduced-level (funcall outline-level))
-				   level)
-			   (throw 'exit nil))))
-		     (org-narrow-to-subtree))))
-		 (list (org-clock-get-table-data nil params)))))
-	    (multifile
-	     ;; Even though `file-with-archives' can consist of
-	     ;; multiple files, we consider this is one extended file
-	     ;; instead.
-	     (and (consp files) (not (eq scope 'file-with-archives)))))
-
-	(funcall formatter
-		 origin
-		 tables
-		 (org-combine-plists params `(:multifile ,multifile)))))))
-
-(defun org-clocktable-write-default (ipos tables params)
-  "Write out a clock table at position IPOS in the current buffer.
-TABLES is a list of tables with clocking data as produced by
-`org-clock-get-table-data'.  PARAMS is the parameter property list obtained
-from the dynamic block definition."
-  ;; This function looks quite complicated, mainly because there are a
-  ;; lot of options which can add or remove columns.  I have massively
-  ;; commented this function, the I hope it is understandable.  If
-  ;; someone wants to write their own special formatter, this maybe
-  ;; much easier because there can be a fixed format with a
-  ;; well-defined number of columns...
-  (let* ((lang (or (plist-get params :lang) "en"))
-	 (multifile (plist-get params :multifile))
-	 (block (plist-get params :block))
-	 (sort (plist-get params :sort))
-	 (header (plist-get params :header))
-	 (link (plist-get params :link))
-	 (maxlevel (or (plist-get params :maxlevel) 3))
-	 (emph (plist-get params :emphasize))
-	 (compact? (plist-get params :compact))
-	 (narrow (or (plist-get params :narrow) (and compact? '40!)))
-	 (level? (and (not compact?) (plist-get params :level)))
-	 (timestamp (plist-get params :timestamp))
-	 (properties (plist-get params :properties))
-	 (time-columns
-	  (if (or compact? (< maxlevel 2)) 1
-	    ;; Deepest headline level is a hard limit for the number
-	    ;; of time columns.
-	    (let ((levels
-		   (cl-mapcan
-		    (lambda (table)
-		      (pcase table
-			(`(,_ ,(and (pred wholenump) (pred (/= 0))) ,entries)
-			 (mapcar #'car entries))))
-		    tables)))
-	      (min maxlevel
-		   (or (plist-get params :tcolumns) 100)
-		   (if (null levels) 1 (apply #'max levels))))))
-	 (indent (or compact? (plist-get params :indent)))
-	 (formula (plist-get params :formula))
-	 (case-fold-search t)
-	 (total-time (apply #'+ (mapcar #'cadr tables)))
-	 recalc narrow-cut-p)
-
-    (when (and narrow (integerp narrow) link)
-      ;; We cannot have both integer narrow and link.
-      (message "Using hard narrowing in clocktable to allow for links")
-      (setq narrow (intern (format "%d!" narrow))))
-
-    (pcase narrow
-      ((or `nil (pred integerp)) nil)	;nothing to do
-      ((and (pred symbolp)
-	    (guard (string-match-p "\\`[0-9]+!\\'" (symbol-name narrow))))
-       (setq narrow-cut-p t)
-       (setq narrow (string-to-number (symbol-name narrow))))
-      (_ (error "Invalid value %s of :narrow property in clock table" narrow)))
-
-    ;; Now we need to output this table stuff.
-    (goto-char ipos)
-
-    ;; Insert the text *before* the actual table.
-    (insert-before-markers
-     (or header
-	 ;; Format the standard header.
-	 (format "#+CAPTION: %s %s%s\n"
-		 (org-clock--translate "Clock summary at" lang)
-		 (format-time-string (org-time-stamp-format t t))
-		 (if block
-		     (let ((range-text
-			    (nth 2 (org-clock-special-range
-				    block nil t
-				    (plist-get params :wstart)
-				    (plist-get params :mstart)))))
-		       (format ", for %s." range-text))
-		   ""))))
-
-    ;; Insert the narrowing line
-    (when (and narrow (integerp narrow) (not narrow-cut-p))
-      (insert-before-markers
-       "|"				;table line starter
-       (if multifile "|" "")		;file column, maybe
-       (if level? "|" "")		;level column, maybe
-       (if timestamp "|" "")		;timestamp column, maybe
-       (if properties			;properties columns, maybe
-	   (make-string (length properties) ?|)
-	 "")
-       (format "<%d>| |\n" narrow)))	;headline and time columns
-
-    ;; Insert the table header line
-    (insert-before-markers
-     "|"				;table line starter
-     (if multifile			;file column, maybe
-	 (concat (org-clock--translate "File" lang) "|")
-       "")
-     (if level?				;level column, maybe
-	 (concat (org-clock--translate "L" lang) "|")
-       "")
-     (if timestamp			;timestamp column, maybe
-	 (concat (org-clock--translate "Timestamp" lang) "|")
-       "")
-     (if properties			;properties columns, maybe
-	 (concat (mapconcat #'identity properties "|") "|")
-       "")
-     (concat (org-clock--translate "Headline" lang)"|")
-     (concat (org-clock--translate "Time" lang) "|")
-     (make-string (max 0 (1- time-columns)) ?|) ;other time columns
-     (if (eq formula '%) "%|\n" "\n"))
-
-    ;; Insert the total time in the table
-    (insert-before-markers
-     "|-\n"				;a hline
-     "|"				;table line starter
-     (if multifile (format "| %s " (org-clock--translate "ALL" lang)) "")
-					;file column, maybe
-     (if level? "|" "")			;level column, maybe
-     (if timestamp "|" "")		;timestamp column, maybe
-     (make-string (length properties) ?|) ;properties columns, maybe
-     (concat (format org-clock-total-time-cell-format
-		     (org-clock--translate "Total time" lang))
-	     "| ")
-     (format org-clock-total-time-cell-format
-	     (org-duration-from-minutes (or total-time 0))) ;time
-     "|"
-     (make-string (max 0 (1- time-columns)) ?|)
-     (cond ((not (eq formula '%)) "")
-	   ((or (not total-time) (= total-time 0)) "0.0|")
-	   (t  "100.0|"))
-     "\n")
-
-    ;; Now iterate over the tables and insert the data but only if any
-    ;; time has been collected.
-    (when (and total-time (> total-time 0))
-      (pcase-dolist (`(,file-name ,file-time ,entries) tables)
-	(when (or (and file-time (> file-time 0))
-		  (not (plist-get params :fileskip0)))
-	  (insert-before-markers "|-\n") ;hline at new file
-	  ;; First the file time, if we have multiple files.
-	  (when multifile
-	    ;; Summarize the time collected from this file.
-	    (insert-before-markers
-	     (format (concat "| %s %s | %s%s"
-			     (format org-clock-file-time-cell-format
-				     (org-clock--translate "File time" lang))
-			     " | *%s*|\n")
-		     (file-name-nondirectory file-name)
-		     (if level?   "| " "")  ;level column, maybe
-		     (if timestamp "| " "") ;timestamp column, maybe
-		     (if properties	    ;properties columns, maybe
-			 (make-string (length properties) ?|)
-		       "")
-		     (org-duration-from-minutes file-time)))) ;time
-
-	  ;; Get the list of node entries and iterate over it
-	  (when (> maxlevel 0)
-	    (pcase-dolist (`(,level ,headline ,ts ,time ,props) entries)
-	      (when narrow-cut-p
-		(setq headline
-		      (if (and (string-match
-				(format "\\`%s\\'" org-bracket-link-regexp)
-				headline)
-			       (match-end 3))
-			  (format "[[%s][%s]]"
-				  (match-string 1 headline)
-				  (org-shorten-string (match-string 3 headline)
-						      narrow))
-			(org-shorten-string headline narrow))))
-	      (cl-flet ((format-field (f) (format (cond ((not emph) "%s |")
-							((= level 1) "*%s* |")
-							((= level 2) "/%s/ |")
-							(t "%s |"))
-						  f)))
-		(insert-before-markers
-		 "|"		       ;start the table line
-		 (if multifile "|" "") ;free space for file name column?
-		 (if level? (format "%d|" level) "") ;level, maybe
-		 (if timestamp (concat ts "|") "")   ;timestamp, maybe
-		 (if properties		;properties columns, maybe
-		     (concat (mapconcat (lambda (p) (or (cdr (assoc p props)) ""))
-					properties
-					"|")
-			     "|")
-		   "")
-		 (if indent		;indentation
-		     (org-clocktable-indent-string level)
-		   "")
-		 (format-field headline)
-		 ;; Empty fields for higher levels.
-		 (make-string (max 0 (1- (min time-columns level))) ?|)
-		 (format-field (org-duration-from-minutes time))
-		 (make-string (max 0 (- time-columns level)) ?|)
-		 (if (eq formula '%)
-		     (format "%.1f |" (* 100 (/ time (float total-time))))
-		   "")
-		 "\n")))))))
-    (delete-char -1)
-    (cond
-     ;; Possibly rescue old formula?
-     ((or (not formula) (eq formula '%))
-      (let ((contents (org-string-nw-p (plist-get params :content))))
-	(when (and contents (string-match "^\\([ \t]*#\\+tblfm:.*\\)" contents))
-	  (setq recalc t)
-	  (insert "\n" (match-string 1 contents))
-	  (beginning-of-line 0))))
-     ;; Insert specified formula line.
-     ((stringp formula)
-      (insert "\n#+TBLFM: " formula)
-      (setq recalc t))
-     (t
-      (user-error "Invalid :formula parameter in clocktable")))
-    ;; Back to beginning, align the table, recalculate if necessary.
-    (goto-char ipos)
-    (skip-chars-forward "^|")
-    (org-table-align)
-    (when org-hide-emphasis-markers
-      ;; We need to align a second time.
-      (org-table-align))
-    (when sort
-      (save-excursion
-	(org-table-goto-line 3)
-	(org-table-goto-column (car sort))
-	(org-table-sort-lines nil (cdr sort))))
-    (when recalc (org-table-recalculate 'all))
-    total-time))
-
-(defun org-clocktable-indent-string (level)
-  "Return indentation string according to LEVEL.
-LEVEL is an integer.  Indent by two spaces per level above 1."
-  (if (= level 1) ""
-    (concat "\\_" (make-string (* 2 (1- level)) ?\s))))
-
-(defun org-clocktable-steps (params)
-  "Step through the range to make a number of clock tables."
-  (let* ((ts (plist-get params :tstart))
-	 (te (plist-get params :tend))
-	 (ws (plist-get params :wstart))
-	 (ms (plist-get params :mstart))
-	 (step0 (plist-get params :step))
-	 (step (cdr (assq step0 '((day . 86400) (week . 604800)))))
-	 (stepskip0 (plist-get params :stepskip0))
-	 (block (plist-get params :block))
-	 cc tsb)
-    (when block
-      (setq cc (org-clock-special-range block nil t ws ms)
-	    ts (car cc)
-	    te (nth 1 cc)))
-    (cond
-     ((numberp ts)
-      ;; If ts is a number, it's an absolute day number from
-      ;; org-agenda.
-      (pcase-let ((`(,month ,day ,year) (calendar-gregorian-from-absolute ts)))
-	(setq ts (float-time (encode-time 0 0 0 day month year)))))
-     (ts
-      (setq ts (float-time (apply #'encode-time (org-parse-time-string ts))))))
-    (cond
-     ((numberp te)
-      ;; Likewise for te.
-      (pcase-let ((`(,month ,day ,year) (calendar-gregorian-from-absolute te)))
-	(setq te (float-time (encode-time 0 0 0 day month year)))))
-     (te
-      (setq te (float-time (apply #'encode-time (org-parse-time-string te))))))
-    (setq tsb
-	  (if (eq step0 'week)
-	      (let ((dow (nth 6 (decode-time (seconds-to-time ts)))))
-		(if (<= dow ws) ts
-		  (- ts (* 86400 (- dow ws)))))
-	    ts))
-    (while (< tsb te)
-      (unless (bolp) (insert "\n"))
-      (let ((start-time (seconds-to-time (max tsb ts))))
-	(cl-incf tsb (let ((dow (nth 6 (decode-time (seconds-to-time tsb)))))
-		       (if (or (eq step0 'day)
-			       (= dow ws))
-			   step
-			 (* 86400 (- ws dow)))))
-	(insert "\n"
-		(if (eq step0 'day) "Daily report: "
-		  "Weekly report starting on: ")
-		(format-time-string (org-time-stamp-format nil t) start-time)
-		"\n")
-	(let ((table-begin (line-beginning-position 0))
-	      (step-time
-	       (org-dblock-write:clocktable
-		(org-combine-plists
-		 params
-		 (list
-		  :header "" :step nil :block nil
-		  :tstart (format-time-string (org-time-stamp-format t t)
-					      start-time)
-		  :tend (format-time-string (org-time-stamp-format t t)
-					    (seconds-to-time (min te tsb))))))))
-	  (re-search-forward "^[ \t]*#\\+END:")
-	  (when (and stepskip0 (equal step-time 0))
-	    ;; Remove the empty table
-	    (delete-region (line-beginning-position) table-begin))))
-      (end-of-line 0))))
-
-(defun org-clock-get-table-data (file params)
-  "Get the clocktable data for file FILE, with parameters PARAMS.
-FILE is only for identification - this function assumes that
-the correct buffer is current, and that the wanted restriction is
-in place.
-The return value will be a list with the file name and the total
-file time (in minutes) as 1st and 2nd elements.  The third element
-of this list will be a list of headline entries.  Each entry has the
-following structure:
-
-  (LEVEL HEADLINE TIMESTAMP TIME PROPERTIES)
-
-LEVEL:      The level of the headline, as an integer.  This will be
-            the reduced level, so 1,2,3,... even if only odd levels
-            are being used.
-HEADLINE:   The text of the headline.  Depending on PARAMS, this may
-            already be formatted like a link.
-TIMESTAMP:  If PARAMS require it, this will be a time stamp found in the
-            entry, any of SCHEDULED, DEADLINE, NORMAL, or first inactive,
-            in this sequence.
-TIME:       The sum of all time spend in this tree, in minutes.  This time
-            will of cause be restricted to the time block and tags match
-            specified in PARAMS.
-PROPERTIES: The list properties specified in the `:properties' parameter
-            along with their value, as an alist following the pattern
-            (NAME . VALUE)."
-  (let* ((maxlevel (or (plist-get params :maxlevel) 3))
-	 (timestamp (plist-get params :timestamp))
-	 (ts (plist-get params :tstart))
-	 (te (plist-get params :tend))
-	 (ws (plist-get params :wstart))
-	 (ms (plist-get params :mstart))
-	 (block (plist-get params :block))
-	 (link (plist-get params :link))
-	 (tags (plist-get params :tags))
-	 (properties (plist-get params :properties))
-	 (inherit-property-p (plist-get params :inherit-props))
-	 (matcher (and tags (cdr (org-make-tags-matcher tags))))
-	 cc st p tbl)
-
-    (setq org-clock-file-total-minutes nil)
-    (when block
-      (setq cc (org-clock-special-range block nil t ws ms)
-	    ts (car cc)
-	    te (nth 1 cc)))
-    (when (integerp ts) (setq ts (calendar-gregorian-from-absolute ts)))
-    (when (integerp te) (setq te (calendar-gregorian-from-absolute te)))
-    (when (and ts (listp ts))
-      (setq ts (format "%4d-%02d-%02d" (nth 2 ts) (car ts) (nth 1 ts))))
-    (when (and te (listp te))
-      (setq te (format "%4d-%02d-%02d" (nth 2 te) (car te) (nth 1 te))))
-    ;; Now the times are strings we can parse.
-    (if ts (setq ts (org-matcher-time ts)))
-    (if te (setq te (org-matcher-time te)))
-    (save-excursion
-      (org-clock-sum ts te
-		     (when matcher
-		       `(lambda ()
-			  (let* ((tags-list (org-get-tags-at))
-				 (org-scanner-tags tags-list)
-				 (org-trust-scanner-tags t))
-			    (funcall ,matcher nil tags-list nil)))))
-      (goto-char (point-min))
-      (setq st t)
-      (while (or (and (bobp) (prog1 st (setq st nil))
-		      (get-text-property (point) :org-clock-minutes)
-		      (setq p (point-min)))
-		 (setq p (next-single-property-change
-			  (point) :org-clock-minutes)))
-	(goto-char p)
-	(let ((time (get-text-property p :org-clock-minutes)))
-	  (when (and time (> time 0) (org-at-heading-p))
-	    (let ((level (org-reduced-level (org-current-level))))
-	      (when (<= level maxlevel)
-		(let* ((headline (org-get-heading t t t t))
-		       (hdl
-			(if (not link) headline
-			  (let ((search
-				 (org-make-org-heading-search-string headline)))
-			    (org-make-link-string
-			     (if (not (buffer-file-name)) search
-			       (format "file:%s::%s" (buffer-file-name) search))
-			     ;; Prune statistics cookies.  Replace
-			     ;; links with their description, or
-			     ;; a plain link if there is none.
-			     (org-trim
-			      (org-link-display-format
-			       (replace-regexp-in-string
-				"\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
-				headline)))))))
-		       (tsp
-			(and timestamp
-			     (cl-some (lambda (p) (org-entry-get (point) p))
-				      '("SCHEDULED" "DEADLINE" "TIMESTAMP"
-					"TIMESTAMP_IA"))))
-		       (props
-			(and properties
-			     (delq nil
-				   (mapcar
-				    (lambda (p)
-				      (let ((v (org-entry-get
-						(point) p inherit-property-p)))
-					(and v (cons p v))))
-				    properties)))))
-		  (push (list level hdl tsp time props) tbl)))))))
-      (list file org-clock-file-total-minutes (nreverse tbl)))))
-
-;; Saving and loading the clock
-
-(defvar org-clock-loaded nil
-  "Was the clock file loaded?")
-
-;;;###autoload
-(defun org-clock-update-time-maybe ()
-  "If this is a CLOCK line, update it and return t.
-Otherwise, return nil."
-  (interactive)
-  (save-excursion
-    (beginning-of-line 1)
-    (skip-chars-forward " \t")
-    (when (looking-at org-clock-string)
-      (let ((re (concat "[ \t]*" org-clock-string
-			" *[[<]\\([^]>]+\\)[]>]\\(-+[[<]\\([^]>]+\\)[]>]"
-			"\\([ \t]*=>.*\\)?\\)?"))
-	    ts te h m s neg)
-	(cond
-	 ((not (looking-at re))
-	  nil)
-	 ((not (match-end 2))
-	  (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
-		     (> org-clock-marker (point))
-		     (<= org-clock-marker (point-at-eol)))
-	    ;; The clock is running here
-	    (setq org-clock-start-time
-		  (apply 'encode-time
-			 (org-parse-time-string (match-string 1))))
-	    (org-clock-update-mode-line)))
-	 (t
-	  (and (match-end 4) (delete-region (match-beginning 4) (match-end 4)))
-	  (end-of-line 1)
-	  (setq ts (match-string 1)
-		te (match-string 3))
-	  (setq s (- (float-time
-		      (apply #'encode-time (org-parse-time-string te)))
-		     (float-time
-		      (apply #'encode-time (org-parse-time-string ts))))
-		neg (< s 0)
-		s (abs s)
-		h (floor (/ s 3600))
-		s (- s (* 3600 h))
-		m (floor (/ s 60))
-		s (- s (* 60 s)))
-	  (insert " => " (format (if neg "-%d:%02d" "%2d:%02d") h m))
-	  t))))))
-
-(defun org-clock-save ()
-  "Persist various clock-related data to disk.
-The details of what will be saved are regulated by the variable
-`org-clock-persist'."
-  (when (and org-clock-persist
-             (or org-clock-loaded
-		 org-clock-has-been-used
-		 (not (file-exists-p org-clock-persist-file))))
-    (with-temp-file org-clock-persist-file
-      (insert (format ";; %s - %s at %s\n"
-		      (file-name-nondirectory org-clock-persist-file)
-		      (system-name)
-		      (format-time-string (org-time-stamp-format t))))
-      ;; Store clock to be resumed.
-      (when (and (memq org-clock-persist '(t clock))
-		 (let ((b (org-base-buffer (org-clocking-buffer))))
-		   (and (buffer-live-p b)
-			(buffer-file-name b)
-			(or (not org-clock-persist-query-save)
-			    (y-or-n-p (format "Save current clock (%s) "
-					      org-clock-heading))))))
-	(insert
-	 (format "(setq org-clock-stored-resume-clock '(%S . %d))\n"
-		 (buffer-file-name (org-base-buffer (org-clocking-buffer)))
-		 (marker-position org-clock-marker))))
-      ;; Store clocked task history.  Tasks are stored reversed to
-      ;; make reading simpler.
-      (when (and (memq org-clock-persist '(t history))
-		 org-clock-history)
-	(insert
-	 (format "(setq org-clock-stored-history '(%s))\n"
-		 (mapconcat
-		  (lambda (m)
-		    (let ((b (org-base-buffer (marker-buffer m))))
-		      (when (and (buffer-live-p b)
-				 (buffer-file-name b))
-			(format "(%S . %d)"
-				(buffer-file-name b)
-				(marker-position m)))))
-		  (reverse org-clock-history)
-		  " ")))))))
-
-(defun org-clock-load ()
-  "Load clock-related data from disk, maybe resuming a stored clock."
-  (when (and org-clock-persist (not org-clock-loaded))
-    (if (not (file-readable-p org-clock-persist-file))
-	(message "Not restoring clock data; %S not found" org-clock-persist-file)
-      (message "Restoring clock data")
-      ;; Load history.
-      (load-file org-clock-persist-file)
-      (setq org-clock-loaded t)
-      (pcase-dolist (`(,(and file (pred file-exists-p)) . ,position)
-		     org-clock-stored-history)
-	(org-clock-history-push position (find-file-noselect file)))
-      ;; Resume clock.
-      (pcase org-clock-stored-resume-clock
-	(`(,(and file (pred file-exists-p)) . ,position)
-	 (with-current-buffer (find-file-noselect file)
-	   (when (or (not org-clock-persist-query-resume)
-		     (y-or-n-p (format "Resume clock (%s) "
-				       (save-excursion
-					 (goto-char position)
-					 (org-get-heading t t)))))
-	     (goto-char position)
-	     (let ((org-clock-in-resume 'auto-restart)
-		   (org-clock-auto-clock-resolution nil))
-	       (org-clock-in)
-	       (when (org-invisible-p) (org-show-context))))))
-	(_ nil)))))
-
-;; Suggested bindings
-(org-defkey org-mode-map "\C-c\C-x\C-e" 'org-clock-modify-effort-estimate)
-
-(provide 'org-clock)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; coding: utf-8
-;; End:
-
-;;; org-clock.el ends here
diff --git a/elpa/org-9.1.14/org-clock.elc b/elpa/org-9.1.14/org-clock.elc
deleted file mode 100644
index 328198a..0000000
--- a/elpa/org-9.1.14/org-clock.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-colview.el b/elpa/org-9.1.14/org-colview.el
deleted file mode 100644
index cb5c091..0000000
--- a/elpa/org-9.1.14/org-colview.el
+++ /dev/null
@@ -1,1636 +0,0 @@
-;;; org-colview.el --- Column View in Org            -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the column view for Org.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org)
-
-(declare-function org-agenda-redo "org-agenda" (&optional all))
-(declare-function org-agenda-do-context-action "org-agenda" ())
-(declare-function org-clock-sum-today "org-clock" (&optional headline-filter))
-(declare-function org-element-extract-element "org-element" (element))
-(declare-function org-element-interpret-data "org-element" (data))
-(declare-function org-element-map "org-element" (data types fun &optional info first-match no-recursion with-affiliated))
-(declare-function org-element-parse-secondary-string "org-element" (string restriction &optional parent))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-restriction "org-element" (element))
-(declare-function org-element-type "org-element" (element))
-
-(defvar org-agenda-columns-add-appointments-to-effort-sum)
-(defvar org-agenda-columns-compute-summary-properties)
-(defvar org-agenda-columns-show-summaries)
-(defvar org-agenda-view-columns-initially)
-(defvar org-inlinetask-min-level)
-
-
-;;; Configuration
-
-(defcustom org-columns-modify-value-for-display-function nil
-  "Function that modifies values for display in column view.
-For example, it can be used to cut out a certain part from a time stamp.
-The function must take 2 arguments:
-
-column-title    The title of the column (*not* the property name)
-value           The value that should be modified.
-
-The function should return the value that should be displayed,
-or nil if the normal value should be used."
-  :group 'org-properties
-  :type '(choice (const nil) (function)))
-
-(defcustom org-columns-summary-types nil
-  "Alist between operators and summarize functions.
-
-Each association follows the pattern (LABEL . SUMMARIZE) where
-
-  LABEL is a string used in #+COLUMNS definition describing the
-  summary type.  It can contain any character but \"}\".  It is
-  case-sensitive.
-
-  SUMMARIZE is a function called with two arguments.  The first
-  argument is a non-empty list of values, as non-empty strings.
-  The second one is a format string or nil.  It has to return
-  a string summarizing the list of values.
-
-Note that the return value can become one value for an higher
-order summary, so the function is expected to handle its own
-output.
-
-Types defined in this variable take precedence over those defined
-in `org-columns-summary-types-default', which see."
-  :group 'org-properties
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type '(alist :key-type (string :tag "       Label")
-		:value-type (function :tag "Summarize")))
-
-
-
-;;; Column View
-
-(defvar-local org-columns-overlays nil
-  "Holds the list of current column overlays.")
-
-(defvar-local org-columns-current-fmt nil
-  "Local variable, holds the currently active column format.")
-
-(defvar-local org-columns-current-fmt-compiled nil
-  "Local variable, holds the currently active column format.
-This is the compiled version of the format.")
-
-(defvar-local org-columns-current-maxwidths nil
-  "Currently active maximum column widths, as a vector.")
-
-(defvar-local org-columns-begin-marker nil
-  "Points to the position where last a column creation command was called.")
-
-(defvar-local org-columns-top-level-marker nil
-  "Points to the position where current columns region starts.")
-
-(defvar org-columns--time 0.0
-  "Number of seconds since the epoch, as a floating point number.")
-
-(defvar org-columns-map (make-sparse-keymap)
-  "The keymap valid in column display.")
-
-(defconst org-columns-summary-types-default
-  '(("+"     . org-columns--summary-sum)
-    ("$"     . org-columns--summary-currencies)
-    ("X"     . org-columns--summary-checkbox)
-    ("X/"    . org-columns--summary-checkbox-count)
-    ("X%"    . org-columns--summary-checkbox-percent)
-    ("max"   . org-columns--summary-max)
-    ("mean"  . org-columns--summary-mean)
-    ("min"   . org-columns--summary-min)
-    (":"     . org-columns--summary-sum-times)
-    (":max"  . org-columns--summary-max-time)
-    (":mean" . org-columns--summary-mean-time)
-    (":min"  . org-columns--summary-min-time)
-    ("@max"  . org-columns--summary-max-age)
-    ("@mean" . org-columns--summary-mean-age)
-    ("@min"  . org-columns--summary-min-age)
-    ("est+"  . org-columns--summary-estimate))
-  "Map operators to summarize functions.
-See `org-columns-summary-types' for details.")
-
-(defun org-columns-content ()
-  "Switch to contents view while in columns view."
-  (interactive)
-  (org-overview)
-  (org-content))
-
-(org-defkey org-columns-map "c" 'org-columns-content)
-(org-defkey org-columns-map "o" 'org-overview)
-(org-defkey org-columns-map "e" 'org-columns-edit-value)
-(org-defkey org-columns-map "\C-c\C-t" 'org-columns-todo)
-(org-defkey org-columns-map "\C-c\C-c" 'org-columns-set-tags-or-toggle)
-(org-defkey org-columns-map "\C-c\C-o" 'org-columns-open-link)
-(org-defkey org-columns-map "v" 'org-columns-show-value)
-(org-defkey org-columns-map "q" 'org-columns-quit)
-(org-defkey org-columns-map "r" 'org-columns-redo)
-(org-defkey org-columns-map "g" 'org-columns-redo)
-(org-defkey org-columns-map [left] 'backward-char)
-(org-defkey org-columns-map "\M-b" 'backward-char)
-(org-defkey org-columns-map "a" 'org-columns-edit-allowed)
-(org-defkey org-columns-map "s" 'org-columns-edit-attributes)
-(org-defkey org-columns-map "\M-f"
-	    (lambda () (interactive) (goto-char (1+ (point)))))
-(org-defkey org-columns-map [right]
-	    (lambda () (interactive) (goto-char (1+ (point)))))
-(org-defkey org-columns-map [down]
-	    (lambda () (interactive)
-	      (let ((col (current-column)))
-		(beginning-of-line 2)
-		(while (and (org-invisible-p2) (not (eobp)))
-		  (beginning-of-line 2))
-		(move-to-column col)
-		(if (eq major-mode 'org-agenda-mode)
-		    (org-agenda-do-context-action)))))
-(org-defkey org-columns-map [up]
-	    (lambda () (interactive)
-	      (let ((col (current-column)))
-		(beginning-of-line 0)
-		(while (and (org-invisible-p2) (not (bobp)))
-		  (beginning-of-line 0))
-		(move-to-column col)
-		(if (eq major-mode 'org-agenda-mode)
-		    (org-agenda-do-context-action)))))
-(org-defkey org-columns-map [(shift right)] 'org-columns-next-allowed-value)
-(org-defkey org-columns-map "n" 'org-columns-next-allowed-value)
-(org-defkey org-columns-map [(shift left)] 'org-columns-previous-allowed-value)
-(org-defkey org-columns-map "p" 'org-columns-previous-allowed-value)
-(org-defkey org-columns-map "<" 'org-columns-narrow)
-(org-defkey org-columns-map ">" 'org-columns-widen)
-(org-defkey org-columns-map [(meta right)] 'org-columns-move-right)
-(org-defkey org-columns-map [(meta left)] 'org-columns-move-left)
-(org-defkey org-columns-map [(shift meta right)] 'org-columns-new)
-(org-defkey org-columns-map [(shift meta left)] 'org-columns-delete)
-(dotimes (i 10)
-  (org-defkey org-columns-map (number-to-string i)
-	      `(lambda () (interactive)
-		 (org-columns-next-allowed-value nil ,i))))
-
-(easy-menu-define org-columns-menu org-columns-map "Org Column Menu"
-  '("Column"
-    ["Edit property" org-columns-edit-value t]
-    ["Next allowed value" org-columns-next-allowed-value t]
-    ["Previous allowed value" org-columns-previous-allowed-value t]
-    ["Show full value" org-columns-show-value t]
-    ["Edit allowed values" org-columns-edit-allowed t]
-    "--"
-    ["Edit column attributes" org-columns-edit-attributes t]
-    ["Increase column width" org-columns-widen t]
-    ["Decrease column width" org-columns-narrow t]
-    "--"
-    ["Move column right" org-columns-move-right t]
-    ["Move column left" org-columns-move-left t]
-    ["Add column" org-columns-new t]
-    ["Delete column" org-columns-delete t]
-    "--"
-    ["CONTENTS" org-columns-content t]
-    ["OVERVIEW" org-overview t]
-    ["Refresh columns display" org-columns-redo t]
-    "--"
-    ["Open link" org-columns-open-link t]
-    "--"
-    ["Quit" org-columns-quit t]))
-
-(defun org-columns--displayed-value (spec value)
-  "Return displayed value for specification SPEC in current entry.
-SPEC is a column format specification as stored in
-`org-columns-current-fmt-compiled'.  VALUE is the real value to
-display, as a string."
-  (or (and (functionp org-columns-modify-value-for-display-function)
-	   (funcall org-columns-modify-value-for-display-function
-		    (nth 1 spec)	;column name
-		    value))
-      (pcase spec
-	(`("ITEM" . ,_)
-	 (concat (make-string (1- (org-current-level))
-			      (if org-hide-leading-stars ?\s ?*))
-		 "* "
-		 (org-columns-compact-links value)))
-	(`(,_ ,_ ,_ ,_ nil) value)
-	;; If PRINTF is set, assume we are displaying a number and
-	;; obey to the format string.
-	(`(,_ ,_ ,_ ,_ ,printf) (format printf (string-to-number value)))
-	(_ (error "Invalid column specification format: %S" spec)))))
-
-(defun org-columns--collect-values (&optional compiled-fmt)
-  "Collect values for columns on the current line.
-
-Return a list of triplets (SPEC VALUE DISPLAYED) suitable for
-`org-columns--display-here'.
-
-This function assumes `org-columns-current-fmt-compiled' is
-initialized is set in the current buffer.  However, it is
-possible to override it with optional argument COMPILED-FMT."
-  (let ((summaries (get-text-property (point) 'org-summaries)))
-    (mapcar
-     (lambda (spec)
-       (pcase spec
-	 (`(,p . ,_)
-	  (let* ((v (or (cdr (assoc spec summaries))
-			(org-entry-get (point) p 'selective t)
-			(and compiled-fmt ;assume `org-agenda-columns'
-			     ;; Effort property is not defined.  Try
-			     ;; to use appointment duration.
-			     org-agenda-columns-add-appointments-to-effort-sum
-			     (string= p (upcase org-effort-property))
-			     (get-text-property (point) 'duration)
-			     (propertize (org-duration-from-minutes
-					  (get-text-property (point) 'duration))
-					 'face 'org-warning))
-			"")))
-	    (list spec v (org-columns--displayed-value spec v))))))
-     (or compiled-fmt org-columns-current-fmt-compiled))))
-
-(defun org-columns--set-widths (cache)
-  "Compute the maximum column widths from the format and CACHE.
-This function sets `org-columns-current-maxwidths' as a vector of
-integers greater than 0."
-  (setq org-columns-current-maxwidths
-	(apply #'vector
-	       (mapcar
-		(lambda (spec)
-		  (pcase spec
-		    (`(,_ ,_ ,(and width (pred wholenump)) . ,_) width)
-		    (`(,_ ,name . ,_)
-		     ;; No width is specified in the columns format.
-		     ;; Compute it by checking all possible values for
-		     ;; PROPERTY.
-		     (let ((width (length name)))
-		       (dolist (entry cache width)
-			 (let ((value (nth 2 (assoc spec (cdr entry)))))
-			   (setq width (max (length value) width))))))))
-		org-columns-current-fmt-compiled))))
-
-(defun org-columns--new-overlay (beg end &optional string face)
-  "Create a new column overlay and add it to the list."
-  (let ((ov (make-overlay beg end)))
-    (overlay-put ov 'face (or face 'secondary-selection))
-    (org-overlay-display ov string face)
-    (push ov org-columns-overlays)
-    ov))
-
-(defun org-columns--summarize (operator)
-  "Return summary function associated to string OPERATOR."
-  (if (not operator) nil
-    (cdr (or (assoc operator org-columns-summary-types)
-	     (assoc operator org-columns-summary-types-default)
-	     (error "Unknown %S operator" operator)))))
-
-(defun org-columns--overlay-text (value fmt width property original)
-  "Return text "
-  (format fmt
-          (let ((v (org-columns-add-ellipses value width)))
-            (pcase property
-              ("PRIORITY"
-               (propertize v 'face (org-get-priority-face original)))
-              ("TAGS"
-               (if (not org-tags-special-faces-re)
-                   (propertize v 'face 'org-tag)
-                 (replace-regexp-in-string
-                  org-tags-special-faces-re
-                  (lambda (m) (propertize m 'face (org-get-tag-face m)))
-                  v nil nil 1)))
-              ("TODO" (propertize v 'face (org-get-todo-face original)))
-              (_ v)))))
-
-(defun org-columns--display-here (columns &optional dateline)
-  "Overlay the current line with column display.
-COLUMNS is an alist (SPEC VALUE DISPLAYED).  Optional argument
-DATELINE is non-nil when the face used should be
-`org-agenda-column-dateline'."
-  (save-excursion
-    (beginning-of-line)
-    (let* ((level-face (and (looking-at "\\(\\**\\)\\(\\* \\)")
-			    (org-get-level-face 2)))
-	   (ref-face (or level-face
-			 (and (eq major-mode 'org-agenda-mode)
-			      (org-get-at-bol 'face))
-			 'default))
-	   (color (list :foreground (face-attribute ref-face :foreground)))
-	   (font (list :height (face-attribute 'default :height)
-		       :family (face-attribute 'default :family)))
-	   (face (list color font 'org-column ref-face))
-	   (face1 (list color font 'org-agenda-column-dateline ref-face)))
-      ;; Each column is an overlay on top of a character.  So there has
-      ;; to be at least as many characters available on the line as
-      ;; columns to display.
-      (let ((columns (length org-columns-current-fmt-compiled))
-	    (chars (- (line-end-position) (line-beginning-position))))
-	(when (> columns chars)
-	  (save-excursion
-	    (end-of-line)
-	    (let ((inhibit-read-only t))
-	      (insert (make-string (- columns chars) ?\s))))))
-      ;; Display columns.  Create and install the overlay for the
-      ;; current column on the next character.
-      (let ((i 0)
-	    (last (1- (length columns))))
-	(dolist (column columns)
-	  (pcase column
-	    (`(,spec ,original ,value)
-	     (let* ((property (car spec))
-		    (width (aref org-columns-current-maxwidths i))
-		    (fmt (format (if (= i last) "%%-%d.%ds |"
-				   "%%-%d.%ds | ")
-				 width width))
-		    (ov (org-columns--new-overlay
-			 (point) (1+ (point))
-			 (org-columns--overlay-text
-			  value fmt width property original)
-			 (if dateline face1 face))))
-	       (overlay-put ov 'keymap org-columns-map)
-	       (overlay-put ov 'org-columns-key property)
-	       (overlay-put ov 'org-columns-value original)
-	       (overlay-put ov 'org-columns-value-modified value)
-	       (overlay-put ov 'org-columns-format fmt)
-	       (overlay-put ov 'line-prefix "")
-	       (overlay-put ov 'wrap-prefix "")
-	       (forward-char))))
-	  (cl-incf i)))
-      ;; Make the rest of the line disappear.
-      (let ((ov (org-columns--new-overlay (point) (line-end-position))))
-	(overlay-put ov 'invisible t)
-	(overlay-put ov 'keymap org-columns-map)
-	(overlay-put ov 'line-prefix "")
-	(overlay-put ov 'wrap-prefix ""))
-      (let ((ov (make-overlay (1- (line-end-position))
-			      (line-beginning-position 2))))
-	(overlay-put ov 'keymap org-columns-map)
-	(push ov org-columns-overlays))
-      (org-with-silent-modifications
-       (let ((inhibit-read-only t))
-	 (put-text-property
-	  (line-end-position 0)
-	  (line-beginning-position 2)
-	  'read-only
-	  (substitute-command-keys
-	   "Type \\<org-columns-map>`\\[org-columns-edit-value]' \
-to edit property")))))))
-
-(defun org-columns-add-ellipses (string width)
-  "Truncate STRING with WIDTH characters, with ellipses."
-  (cond
-   ((<= (length string) width) string)
-   ((<= width (length org-columns-ellipses))
-    (substring org-columns-ellipses 0 width))
-   (t (concat (substring string 0 (- width (length org-columns-ellipses)))
-	      org-columns-ellipses))))
-
-(defvar org-columns-full-header-line-format nil
-  "The full header line format, will be shifted by horizontal scrolling." )
-(defvar org-previous-header-line-format nil
-  "The header line format before column view was turned on.")
-(defvar org-columns-inhibit-recalculation nil
-  "Inhibit recomputing of columns on column view startup.")
-(defvar org-columns-flyspell-was-active nil
-  "Remember the state of `flyspell-mode' before column view.
-Flyspell-mode can cause problems in columns view, so it is turned off
-for the duration of the command.")
-
-(defvar header-line-format)
-(defvar org-columns-previous-hscroll 0)
-
-(defun org-columns--display-here-title ()
-  "Overlay the newline before the current line with the table title."
-  (interactive)
-  (let ((title "")
-	(i 0))
-    (dolist (column org-columns-current-fmt-compiled)
-      (pcase column
-	(`(,property ,name . ,_)
-	 (let* ((width (aref org-columns-current-maxwidths i))
-		(fmt (format "%%-%d.%ds | " width width)))
-	   (setq title (concat title (format fmt (or name property)))))))
-      (cl-incf i))
-    (setq-local org-previous-header-line-format header-line-format)
-    (setq org-columns-full-header-line-format
-	  (concat
-	   (org-add-props " " nil 'display '(space :align-to 0))
-	   (org-add-props (substring title 0 -1) nil 'face 'org-column-title)))
-    (setq org-columns-previous-hscroll -1)
-    (add-hook 'post-command-hook 'org-columns-hscroll-title nil 'local)))
-
-(defun org-columns-hscroll-title ()
-  "Set the `header-line-format' so that it scrolls along with the table."
-  (sit-for .0001) ; need to force a redisplay to update window-hscroll
-  (when (not (= (window-hscroll) org-columns-previous-hscroll))
-    (setq header-line-format
-	  (concat (substring org-columns-full-header-line-format 0 1)
-		  (substring org-columns-full-header-line-format
-			     (1+ (window-hscroll))))
-	  org-columns-previous-hscroll (window-hscroll))
-    (force-mode-line-update)))
-
-(defvar org-colview-initial-truncate-line-value nil
-  "Remember the value of `truncate-lines' across colview.")
-
-;;;###autoload
-(defun org-columns-remove-overlays ()
-  "Remove all currently active column overlays."
-  (interactive)
-  (when org-columns-overlays
-    (when (local-variable-p 'org-previous-header-line-format)
-      (setq header-line-format org-previous-header-line-format)
-      (kill-local-variable 'org-previous-header-line-format)
-      (remove-hook 'post-command-hook 'org-columns-hscroll-title 'local))
-    (set-marker org-columns-begin-marker nil)
-    (when (markerp org-columns-top-level-marker)
-      (set-marker org-columns-top-level-marker nil))
-    (org-with-silent-modifications
-     (mapc #'delete-overlay org-columns-overlays)
-     (setq org-columns-overlays nil)
-     (let ((inhibit-read-only t))
-       (remove-text-properties (point-min) (point-max) '(read-only t))))
-    (when org-columns-flyspell-was-active
-      (flyspell-mode 1))
-    (when (local-variable-p 'org-colview-initial-truncate-line-value)
-      (setq truncate-lines org-colview-initial-truncate-line-value))))
-
-(defun org-columns-compact-links (s)
-  "Replace [[link][desc]] with [desc] or [link]."
-  (while (string-match org-bracket-link-regexp s)
-    (setq s (replace-match
-	     (concat "[" (match-string (if (match-end 3) 3 1) s) "]")
-	     t t s)))
-  s)
-
-(defun org-columns-show-value ()
-  "Show the full value of the property."
-  (interactive)
-  (let ((value (get-char-property (point) 'org-columns-value)))
-    (message "Value is: %s" (or value ""))))
-
-(defvar org-agenda-columns-active) ;; defined in org-agenda.el
-
-(defun org-columns-quit ()
-  "Remove the column overlays and in this way exit column editing."
-  (interactive)
-  (org-with-silent-modifications
-   (org-columns-remove-overlays)
-   (let ((inhibit-read-only t))
-     (remove-text-properties (point-min) (point-max) '(read-only t))))
-  (if (not (eq major-mode 'org-agenda-mode))
-      (setq org-columns-current-fmt nil)
-    (setq org-agenda-columns-active nil)
-    (message
-     "Modification not yet reflected in Agenda buffer, use `r' to refresh")))
-
-(defun org-columns-check-computed ()
-  "Throw an error if current column value is computed."
-  (let ((spec (nth (current-column) org-columns-current-fmt-compiled)))
-    (and
-     (nth 3 spec)
-     (assoc spec (get-text-property (line-beginning-position) 'org-summaries))
-     (error "This value is computed from the entry's children"))))
-
-(defun org-columns-todo (&optional _arg)
-  "Change the TODO state during column view."
-  (interactive "P")
-  (org-columns-edit-value "TODO"))
-
-(defun org-columns-set-tags-or-toggle (&optional _arg)
-  "Toggle checkbox at point, or set tags for current headline."
-  (interactive "P")
-  (if (string-match "\\`\\[[ xX-]\\]\\'"
-		    (get-char-property (point) 'org-columns-value))
-      (org-columns-next-allowed-value)
-    (org-columns-edit-value "TAGS")))
-
-(defvar org-agenda-overriding-columns-format nil
-  "When set, overrides any other format definition for the agenda.
-Don't set this, this is meant for dynamic scoping.")
-
-(defun org-columns-edit-value (&optional key)
-  "Edit the value of the property at point in column view.
-Where possible, use the standard interface for changing this line."
-  (interactive)
-  (org-columns-check-computed)
-  (let* ((col (current-column))
-	 (bol (line-beginning-position))
-	 (eol (line-end-position))
-	 (pom (or (get-text-property bol 'org-hd-marker) (point)))
-	 (key (or key (get-char-property (point) 'org-columns-key)))
-	 (org-columns--time (float-time (current-time)))
-	 (action
-	  (pcase key
-	    ("CLOCKSUM"
-	     (error "This special column cannot be edited"))
-	    ("ITEM"
-	     (lambda () (org-with-point-at pom (org-edit-headline))))
-	    ("TODO"
-	     (lambda ()
-	       (org-with-point-at pom (call-interactively #'org-todo))))
-	    ("PRIORITY"
-	     (lambda ()
-	       (org-with-point-at pom
-		 (call-interactively #'org-priority))))
-	    ("TAGS"
-	     (lambda ()
-	       (org-with-point-at pom
-		 (let ((org-fast-tag-selection-single-key
-			(if (eq org-fast-tag-selection-single-key 'expert)
-			    t
-			  org-fast-tag-selection-single-key)))
-		   (call-interactively #'org-set-tags)))))
-	    ("DEADLINE"
-	     (lambda ()
-	       (org-with-point-at pom (call-interactively #'org-deadline))))
-	    ("SCHEDULED"
-	     (lambda ()
-	       (org-with-point-at pom (call-interactively #'org-schedule))))
-	    ("BEAMER_ENV"
-	     (lambda ()
-	       (org-with-point-at pom
-		 (call-interactively #'org-beamer-select-environment))))
-	    (_
-	     (let* ((allowed (org-property-get-allowed-values pom key 'table))
-		    (value (get-char-property (point) 'org-columns-value))
-		    (nval (org-trim
-			   (if (null allowed) (read-string "Edit: " value)
-			     (completing-read
-			      "Value: " allowed nil
-			      (not (get-text-property
-				    0 'org-unrestricted (caar allowed))))))))
-	       (and (not (equal nval value))
-		    (lambda () (org-entry-put pom key nval))))))))
-    (cond
-     ((null action))
-     ((eq major-mode 'org-agenda-mode)
-      (org-columns--call action)
-      ;; The following let preserves the current format, and makes
-      ;; sure that in only a single file things need to be updated.
-      (let* ((org-agenda-overriding-columns-format org-columns-current-fmt)
-	     (buffer (marker-buffer pom))
-	     (org-agenda-contributing-files
-	      (list (with-current-buffer buffer
-		      (buffer-file-name (buffer-base-buffer))))))
-	(org-agenda-columns)))
-     (t
-      (let ((inhibit-read-only t))
-	(org-with-silent-modifications
-	 (remove-text-properties (max (point-min) (1- bol)) eol '(read-only t)))
-	(org-columns--call action))
-      ;; Some properties can modify headline (e.g., "TODO"), and
-      ;; possible shuffle overlays.  Make sure they are still all at
-      ;; the right place on the current line.
-      (let ((org-columns-inhibit-recalculation)) (org-columns-redo))
-      (org-columns-update key)
-      (org-move-to-column col)))))
-
-(defun org-columns-edit-allowed ()
-  "Edit the list of allowed values for the current property."
-  (interactive)
-  (let* ((pom (or (org-get-at-bol 'org-marker)
-		  (org-get-at-bol 'org-hd-marker)
-		  (point)))
-	 (key (concat (or (get-char-property (point) 'org-columns-key)
-			  (user-error "No column to edit at point"))
-		      "_ALL"))
-	 (allowed (org-entry-get pom key t))
-	 (new-value (read-string "Allowed: " allowed)))
-    ;; FIXME: Cover editing TODO, TAGS etc in-buffer settings.????
-    ;; FIXME: Write back to #+PROPERTY setting if that is needed.
-    (org-entry-put
-     (cond ((marker-position org-entry-property-inherited-from)
-	    org-entry-property-inherited-from)
-	   ((marker-position org-columns-top-level-marker)
-	    org-columns-top-level-marker)
-	   (t pom))
-     key new-value)))
-
-(defun org-columns--call (fun)
-  "Call function FUN while preserving heading visibility.
-FUN is a function called with no argument."
-  (let ((hide-body (and (/= (line-end-position) (point-max))
-			(save-excursion
-			  (move-beginning-of-line 2)
-			  (org-at-heading-p t)))))
-    (unwind-protect (funcall fun)
-      (when hide-body (outline-hide-entry)))))
-
-(defun org-columns-previous-allowed-value ()
-  "Switch to the previous allowed value for this column."
-  (interactive)
-  (org-columns-next-allowed-value t))
-
-(defun org-columns-next-allowed-value (&optional previous nth)
-  "Switch to the next allowed value for this column.
-When PREVIOUS is set, go to the previous value.  When NTH is
-an integer, select that value."
-  (interactive)
-  (org-columns-check-computed)
-  (let* ((column (current-column))
-	 (key (get-char-property (point) 'org-columns-key))
-	 (value (get-char-property (point) 'org-columns-value))
-	 (pom (or (get-text-property (line-beginning-position) 'org-hd-marker)
-		  (point)))
-	 (allowed
-	  (let ((all
-		 (or (org-property-get-allowed-values pom key)
-		     (pcase (nth column org-columns-current-fmt-compiled)
-		       (`(,_ ,_ ,_ ,(or "X" "X/" "X%") ,_) '("[ ]" "[X]")))
-		     (org-colview-construct-allowed-dates value))))
-	    (if previous (reverse all) all))))
-    (when (equal key "ITEM") (error "Cannot edit item headline from here"))
-    (unless (or allowed (member key '("SCHEDULED" "DEADLINE" "CLOCKSUM")))
-      (error "Allowed values for this property have not been defined"))
-    (let* ((l (length allowed))
-	   (new
-	    (cond
-	     ((member key '("SCHEDULED" "DEADLINE" "CLOCKSUM"))
-	      (if previous 'earlier 'later))
-	     ((integerp nth)
-	      (when (> (abs nth) l)
-		(user-error "Only %d allowed values for property `%s'" l key))
-	      (nth (mod (1- nth) l) allowed))
-	     ((member value allowed)
-	      (when (= l 1) (error "Only one allowed value for this property"))
-	      (or (nth 1 (member value allowed)) (car allowed)))
-	     (t (car allowed))))
-	   (action (lambda () (org-entry-put pom key new))))
-      (cond
-       ((eq major-mode 'org-agenda-mode)
-	(org-columns--call action)
-	;; The following let preserves the current format, and makes
-	;; sure that in only a single file things need to be updated.
-	(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)
-	       (buffer (marker-buffer pom))
-	       (org-agenda-contributing-files
-		(list (with-current-buffer buffer
-			(buffer-file-name (buffer-base-buffer))))))
-	  (org-agenda-columns)))
-       (t
-	(let ((inhibit-read-only t))
-	  (remove-text-properties (line-end-position 0) (line-end-position)
-				  '(read-only t))
-	  (org-columns--call action))
-	;; Some properties can modify headline (e.g., "TODO"), and
-	;; possible shuffle overlays.  Make sure they are still all at
-	;; the right place on the current line.
-	(let ((org-columns-inhibit-recalculation)) (org-columns-redo))
-	(org-columns-update key)
-	(org-move-to-column column))))))
-
-(defun org-colview-construct-allowed-dates (s)
-  "Construct a list of three dates around the date in S.
-This respects the format of the time stamp in S, active or non-active,
-and also including time or not.  S must be just a time stamp, no text
-around it."
-  (when (and s (string-match (concat "^" org-ts-regexp3 "$") s))
-    (let* ((time (org-parse-time-string s 'nodefaults))
-	   (active (equal (string-to-char s) ?<))
-	   (fmt (funcall (if (nth 1 time) 'cdr 'car) org-time-stamp-formats))
-	   time-before time-after)
-      (unless active (setq fmt (concat "[" (substring fmt 1 -1) "]")))
-      (setf (car time) (or (car time) 0))
-      (setf (nth 1 time) (or (nth 1 time) 0))
-      (setf (nth 2 time) (or (nth 2 time) 0))
-      (setq time-before (copy-sequence time))
-      (setq time-after (copy-sequence time))
-      (setf (nth 3 time-before) (1- (nth 3 time)))
-      (setf (nth 3 time-after) (1+ (nth 3 time)))
-      (mapcar (lambda (x) (format-time-string fmt (apply 'encode-time x)))
-	      (list time-before time time-after)))))
-
-(defun org-columns-open-link (&optional arg)
-  (interactive "P")
-  (let ((value (get-char-property (point) 'org-columns-value)))
-    (org-open-link-from-string value arg)))
-
-;;;###autoload
-(defun org-columns-get-format-and-top-level ()
-  (let ((fmt (org-columns-get-format)))
-    (org-columns-goto-top-level)
-    fmt))
-
-(defun org-columns-get-format (&optional fmt-string)
-  "Return columns format specifications.
-When optional argument FMT-STRING is non-nil, use it as the
-current specifications.  This function also sets
-`org-columns-current-fmt-compiled' and
-`org-columns-current-fmt'."
-  (interactive)
-  (let ((format
-	 (or fmt-string
-	     (org-entry-get nil "COLUMNS" t)
-	     (org-with-wide-buffer
-	      (goto-char (point-min))
-	      (catch :found
-		(let ((case-fold-search t))
-		  (while (re-search-forward "^[ \t]*#\\+COLUMNS: .+$" nil t)
-		    (let ((element (org-element-at-point)))
-		      (when (eq (org-element-type element) 'keyword)
-			(throw :found (org-element-property :value element)))))
-		  nil)))
-	     org-columns-default-format)))
-    (setq org-columns-current-fmt format)
-    (org-columns-compile-format format)
-    format))
-
-(defun org-columns-goto-top-level ()
-  "Move to the beginning of the column view area.
-Also sets `org-columns-top-level-marker' to the new position."
-  (unless (markerp org-columns-top-level-marker)
-    (setq org-columns-top-level-marker (make-marker)))
-  (goto-char
-   (move-marker
-    org-columns-top-level-marker
-    (cond ((org-before-first-heading-p) (point-min))
-	  ((org-entry-get nil "COLUMNS" t) org-entry-property-inherited-from)
-	  (t (org-back-to-heading) (point))))))
-
-;;;###autoload
-(defun org-columns (&optional global columns-fmt-string)
-  "Turn on column view on an Org mode file.
-
-Column view applies to the whole buffer if point is before the
-first headline.  Otherwise, it applies to the first ancestor
-setting \"COLUMNS\" property.  If there is none, it defaults to
-the current headline.  With a `\\[universal-argument]' prefix \
-argument, turn on column
-view for the whole buffer unconditionally.
-
-When COLUMNS-FMT-STRING is non-nil, use it as the column format."
-  (interactive "P")
-  (org-columns-remove-overlays)
-  (when global (goto-char (point-min)))
-  (if (markerp org-columns-begin-marker)
-      (move-marker org-columns-begin-marker (point))
-    (setq org-columns-begin-marker (point-marker)))
-  (org-columns-goto-top-level)
-  ;; Initialize `org-columns-current-fmt' and
-  ;; `org-columns-current-fmt-compiled'.
-  (let ((org-columns--time (float-time (current-time))))
-    (org-columns-get-format columns-fmt-string)
-    (unless org-columns-inhibit-recalculation (org-columns-compute-all))
-    (save-excursion
-      (save-restriction
-	(when (and (not global) (org-at-heading-p))
-	  (narrow-to-region (point) (org-end-of-subtree t t)))
-	(when (assoc "CLOCKSUM" org-columns-current-fmt-compiled)
-	  (org-clock-sum))
-	(when (assoc "CLOCKSUM_T" org-columns-current-fmt-compiled)
-	  (org-clock-sum-today))
-	(let ((cache
-	       ;; Collect contents of columns ahead of time so as to
-	       ;; compute their maximum width.
-	       (org-map-entries
-		(lambda () (cons (point) (org-columns--collect-values)))
-		nil nil (and org-columns-skip-archived-trees 'archive))))
-	  (when cache
-	    (org-columns--set-widths cache)
-	    (org-columns--display-here-title)
-	    (when (setq-local org-columns-flyspell-was-active
-			      (bound-and-true-p flyspell-mode))
-	      (flyspell-mode 0))
-	    (unless (local-variable-p 'org-colview-initial-truncate-line-value)
-	      (setq-local org-colview-initial-truncate-line-value
-			  truncate-lines))
-	    (setq truncate-lines t)
-	    (dolist (entry cache)
-	      (goto-char (car entry))
-	      (org-columns--display-here (cdr entry)))))))))
-
-(defun org-columns-new (&optional spec &rest attributes)
-  "Insert a new column, to the left of the current column.
-Interactively fill attributes for new column.  When column format
-specification SPEC is provided, edit it instead.
-
-When optional argument attributes can be a list of columns
-specifications attributes to create the new column
-non-interactively.  See `org-columns-compile-format' for
-details."
-  (interactive)
-  (let ((new (or attributes
-		 (let ((prop
-			(completing-read
-			 "Property: "
-			 (mapcar #'list (org-buffer-property-keys t nil t))
-			 nil nil (nth 0 spec))))
-		   (list prop
-			 (read-string (format "Column title [%s]: " prop)
-				      (nth 1 spec))
-			 ;; Use `read-string' instead of `read-number'
-			 ;; to allow empty width.
-			 (let ((w (read-string
-				   "Column width: "
-				   (and (nth 2 spec)
-					(number-to-string (nth 2 spec))))))
-			   (and (org-string-nw-p w) (string-to-number w)))
-			 (org-string-nw-p
-			  (completing-read
-			   "Summary: "
-			   (delete-dups
-			    (cons '("")	;Allow empty operator.
-				  (mapcar (lambda (x) (list (car x)))
-					  (append
-					   org-columns-summary-types
-					   org-columns-summary-types-default))))
-			   nil t (nth 3 spec)))
-			 (org-string-nw-p
-			  (read-string "Format: " (nth 4 spec))))))))
-    (if spec
-	(progn (setcar spec (car new))
-	       (setcdr spec (cdr new)))
-      (push new (nthcdr (current-column) org-columns-current-fmt-compiled)))
-    (org-columns-store-format)
-    (org-columns-redo)))
-
-(defun org-columns-delete ()
-  "Delete the column at point from columns view."
-  (interactive)
-  (let ((spec (nth (current-column) org-columns-current-fmt-compiled)))
-    (when (y-or-n-p (format "Are you sure you want to remove column %S? "
-			    (nth 1 spec)))
-      (setq org-columns-current-fmt-compiled
-	    (delq spec org-columns-current-fmt-compiled))
-      (org-columns-store-format)
-      ;; This may leave a now wrong value in a node property.  However
-      ;; updating it may prove counter-intuitive.  See comments in
-      ;; `org-columns-move-right' for details.
-      (let ((org-columns-inhibit-recalculation t)) (org-columns-redo))
-      (when (>= (current-column) (length org-columns-current-fmt-compiled))
-	(backward-char)))))
-
-(defun org-columns-edit-attributes ()
-  "Edit the attributes of the current column."
-  (interactive)
-  (org-columns-new (nth (current-column) org-columns-current-fmt-compiled)))
-
-(defun org-columns-widen (arg)
-  "Make the column wider by ARG characters."
-  (interactive "p")
-  (let* ((n (current-column))
-	 (entry (nth n org-columns-current-fmt-compiled))
-	 (width (aref org-columns-current-maxwidths n)))
-    (setq width (max 1 (+ width arg)))
-    (setcar (nthcdr 2 entry) width)
-    (org-columns-store-format)
-    (let ((org-columns-inhibit-recalculation t)) (org-columns-redo))))
-
-(defun org-columns-narrow (arg)
-  "Make the column narrower by ARG characters."
-  (interactive "p")
-  (org-columns-widen (- arg)))
-
-(defun org-columns-move-right ()
-  "Swap this column with the one to the right."
-  (interactive)
-  (let* ((n (current-column))
-	 (cell (nthcdr n org-columns-current-fmt-compiled))
-	 e)
-    (when (>= n (1- (length org-columns-current-fmt-compiled)))
-      (error "Cannot shift this column further to the right"))
-    (setq e (car cell))
-    (setcar cell (car (cdr cell)))
-    (setcdr cell (cons e (cdr (cdr cell))))
-    (org-columns-store-format)
-    ;; Do not compute again properties, since we're just moving
-    ;; columns around.  It can put a property value a bit off when
-    ;; switching between an non-computed and a computed value for the
-    ;; same property, e.g. from "%A %A{+}" to "%A{+} %A".
-    ;;
-    ;; In this case, the value needs to be updated since the first
-    ;; column related to a property determines how its value is
-    ;; computed.  However, (correctly) updating the value could be
-    ;; surprising, so we leave it as-is nonetheless.
-    (let ((org-columns-inhibit-recalculation t)) (org-columns-redo))
-    (forward-char 1)))
-
-(defun org-columns-move-left ()
-  "Swap this column with the one to the left."
-  (interactive)
-  (let* ((n (current-column)))
-    (when (= n 0)
-      (error "Cannot shift this column further to the left"))
-    (backward-char 1)
-    (org-columns-move-right)
-    (backward-char 1)))
-
-(defun org-columns-store-format ()
-  "Store the text version of the current columns format.
-The format is stored either in the COLUMNS property of the node
-starting the current column display, or in a #+COLUMNS line of
-the current buffer."
-  (let ((fmt (org-columns-uncompile-format org-columns-current-fmt-compiled)))
-    (setq-local org-columns-current-fmt fmt)
-    (when org-columns-overlays
-      (org-with-point-at org-columns-top-level-marker
-	(if (and (org-at-heading-p) (org-entry-get nil "COLUMNS"))
-	    (org-entry-put nil "COLUMNS" fmt)
-	  (goto-char (point-min))
-	  (let ((case-fold-search t))
-	    ;; Try to replace the first COLUMNS keyword available.
-	    (catch :found
-	      (while (re-search-forward "^[ \t]*#\\+COLUMNS:\\(.*\\)" nil t)
-		(let ((element (save-match-data (org-element-at-point))))
-		  (when (and (eq (org-element-type element) 'keyword)
-			     (equal (org-element-property :key element)
-				    "COLUMNS"))
-		    (replace-match (concat " " fmt) t t nil 1)
-		    (throw :found nil))))
-	      ;; No COLUMNS keyword in the buffer.  Insert one at the
-	      ;; beginning, right before the first heading, if any.
-	      (goto-char (point-min))
-	      (unless (org-at-heading-p t) (outline-next-heading))
-	      (let ((inhibit-read-only t))
-		(insert-before-markers "#+COLUMNS: " fmt "\n"))))
-	  (setq-local org-columns-default-format fmt))))))
-
-(defun org-columns-update (property)
-  "Recompute PROPERTY, and update the columns display for it."
-  (org-columns-compute property)
-  (org-with-wide-buffer
-   (let ((p (upcase property)))
-     (dolist (ov org-columns-overlays)
-       (let ((key (overlay-get ov 'org-columns-key)))
-	 (when (and key (equal key p) (overlay-start ov))
-	   (goto-char (overlay-start ov))
-	   (let* ((spec (nth (current-column) org-columns-current-fmt-compiled))
-		  (value
-		   (or (cdr (assoc spec
-				   (get-text-property (line-beginning-position)
-						      'org-summaries)))
-		       (org-entry-get (point) key))))
-	     (when value
-	       (let ((displayed (org-columns--displayed-value spec value))
-		     (format (overlay-get ov 'org-columns-format))
-		     (width
-		      (aref org-columns-current-maxwidths (current-column))))
-		 (overlay-put ov 'org-columns-value value)
-		 (overlay-put ov 'org-columns-value-modified displayed)
-		 (overlay-put ov
-			      'display
-			      (org-columns--overlay-text
-			       displayed format width property value)))))))))))
-
-(defun org-columns-redo ()
-  "Construct the column display again."
-  (interactive)
-  (when org-columns-overlays
-    (message "Recomputing columns...")
-    (org-with-point-at org-columns-begin-marker
-      (org-columns-remove-overlays)
-      (if (derived-mode-p 'org-mode)
-	  ;; Since we already know the columns format, provide it
-	  ;; instead of computing again.
-	  (call-interactively #'org-columns org-columns-current-fmt)
-	(org-agenda-redo)
-	(call-interactively #'org-agenda-columns)))
-    (message "Recomputing columns...done")))
-
-(defun org-columns-uncompile-format (compiled)
-  "Turn the compiled columns format back into a string representation.
-COMPILED is an alist, as returned by
-`org-columns-compile-format', which see."
-  (mapconcat
-   (lambda (spec)
-     (pcase spec
-       (`(,prop ,title ,width ,op ,printf)
-	(concat "%"
-		(and width (number-to-string width))
-		prop
-		(and title (not (equal prop title)) (format "(%s)" title))
-		(cond ((not op) nil)
-		      (printf (format "{%s;%s}" op printf))
-		      (t (format "{%s}" op)))))))
-   compiled " "))
-
-(defun org-columns-compile-format (fmt)
-  "Turn a column format string FMT into an alist of specifications.
-
-The alist has one entry for each column in the format.  The elements of
-that list are:
-property    the property name, as an upper-case string
-title       the title field for the columns, as a string
-width       the column width in characters, can be nil for automatic width
-operator    the summary operator, as a string, or nil
-printf      a printf format for computed values, as a string, or nil
-
-This function updates `org-columns-current-fmt-compiled'."
-  (setq org-columns-current-fmt-compiled nil)
-  (let ((start 0))
-    (while (string-match
-	    "%\\([0-9]+\\)?\\([[:alnum:]_-]+\\)\\(?:(\\([^)]+\\))\\)?\
-\\(?:{\\([^}]+\\)}\\)?\\s-*"
-	    fmt start)
-      (setq start (match-end 0))
-      (let* ((width (and (match-end 1) (string-to-number (match-string 1 fmt))))
-	     (prop (match-string-no-properties 2 fmt))
-	     (title (or (match-string-no-properties 3 fmt) prop))
-	     (operator (match-string-no-properties 4 fmt)))
-	(push (if (not operator) (list (upcase prop) title width nil nil)
-		(let (printf)
-		  (when (string-match ";" operator)
-		    (setq printf (substring operator (match-end 0)))
-		    (setq operator (substring operator 0 (match-beginning 0))))
-		  (list (upcase prop) title width operator printf)))
-	      org-columns-current-fmt-compiled)))
-    (setq org-columns-current-fmt-compiled
-	  (nreverse org-columns-current-fmt-compiled))))
-
-
-;;;; Column View Summary
-
-(defun org-columns--age-to-minutes (s)
-  "Turn age string S into a number of minutes.
-An age is either computed from a given time-stamp, or indicated
-as a canonical duration, i.e., using units defined in
-`org-duration-canonical-units'."
-  (cond
-   ((string-match-p org-ts-regexp s)
-    (/ (- org-columns--time
-	  (float-time (apply #'encode-time (org-parse-time-string s))))
-       60))
-   ((org-duration-p s) (org-duration-to-minutes s t)) ;skip user units
-   (t (user-error "Invalid age: %S" s))))
-
-(defun org-columns--format-age (minutes)
-  "Format MINUTES float as an age string."
-  (org-duration-from-minutes minutes
-			     '(("d" . nil) ("h" . nil) ("min" . nil))
-			     t))	;ignore user's custom units
-
-(defun org-columns--summary-apply-times (fun times)
-  "Apply FUN to time values TIMES.
-Return the result as a duration."
-  (org-duration-from-minutes
-   (apply fun
-	  (mapcar (lambda (time)
-		    ;; Unlike to `org-duration-to-minutes' standard
-		    ;; behavior, we want to consider plain numbers as
-		    ;; hours.  As a consequence, we treat them
-		    ;; differently.
-		    (if (string-match-p "\\`[0-9]+\\(?:\\.[0-9]*\\)?\\'" time)
-			(* 60 (string-to-number time))
-		      (org-duration-to-minutes time)))
-		  times))
-   (org-duration-h:mm-only-p times)))
-
-(defun org-columns--compute-spec (spec &optional update)
-  "Update tree according to SPEC.
-SPEC is a column format specification.  When optional argument
-UPDATE is non-nil, summarized values can replace existing ones in
-properties drawers."
-  (let* ((lmax (if (bound-and-true-p org-inlinetask-min-level)
-		   org-inlinetask-min-level
-		 29))			;Hard-code deepest level.
-	 (lvals (make-vector (1+ lmax) nil))
-	 (level 0)
-	 (inminlevel lmax)
-	 (last-level lmax)
-	 (property (car spec))
-	 (printf (nth 4 spec))
-	 (summarize (org-columns--summarize (nth 3 spec))))
-    (org-with-wide-buffer
-     ;; Find the region to compute.
-     (goto-char org-columns-top-level-marker)
-     (goto-char (condition-case nil (org-end-of-subtree t) (error (point-max))))
-     ;; Walk the tree from the back and do the computations.
-     (while (re-search-backward
-	     org-outline-regexp-bol org-columns-top-level-marker t)
-       (unless (or (= level 0) (eq level inminlevel))
-	 (setq last-level level))
-       (setq level (org-reduced-level (org-outline-level)))
-       (let* ((pos (match-beginning 0))
-	      (value (org-entry-get nil property))
-	      (value-set (org-string-nw-p value)))
-	 (cond
-	  ((< level last-level)
-	   ;; Collect values from lower levels and inline tasks here
-	   ;; and summarize them using SUMMARIZE.  Store them in text
-	   ;; property `org-summaries', in alist whose key is SPEC.
-	   (let* ((summary
-		   (and summarize
-			(let ((values (append (and (/= last-level inminlevel)
-						   (aref lvals last-level))
-					      (aref lvals inminlevel))))
-			  (and values (funcall summarize values printf))))))
-	     ;; Leaf values are not summaries: do not mark them.
-	     (when summary
-	       (let* ((summaries-alist (get-text-property pos 'org-summaries))
-		      (old (assoc spec summaries-alist)))
-		 (if old (setcdr old summary)
-		   (push (cons spec summary) summaries-alist)
-		   (org-with-silent-modifications
-		    (add-text-properties
-		     pos (1+ pos) (list 'org-summaries summaries-alist)))))
-	       ;; When PROPERTY exists in current node, even if empty,
-	       ;; but its value doesn't match the one computed, use
-	       ;; the latter instead.
-	       ;;
-	       ;; Ignore leading or trailing white spaces that might
-	       ;; have been introduced in summary, since those are not
-	       ;; significant in properties value.
-	       (let ((new-value (org-trim summary)))
-		 (when (and update value (not (equal value new-value)))
-		   (org-entry-put (point) property new-value))))
-	     ;; Add current to current level accumulator.
-	     (when (or summary value-set)
-	       (push (or summary value) (aref lvals level)))
-	     ;; Clear accumulators for deeper levels.
-	     (cl-loop for l from (1+ level) to lmax do (aset lvals l nil))))
-	  (value-set (push value (aref lvals level)))
-	  (t nil)))))))
-
-;;;###autoload
-(defun org-columns-compute (property)
-  "Summarize the values of PROPERTY hierarchically.
-Also update existing values for PROPERTY according to the first
-column specification."
-  (interactive)
-  (let ((main-flag t)
-	(upcase-prop (upcase property)))
-    (dolist (spec org-columns-current-fmt-compiled)
-      (pcase spec
-	(`(,(pred (equal upcase-prop)) . ,_)
-	 (org-columns--compute-spec spec main-flag)
-	 ;; Only the first summary can update the property value.
-	 (when main-flag (setq main-flag nil)))))))
-
-(defun org-columns-compute-all ()
-  "Compute all columns that have operators defined."
-  (org-with-silent-modifications
-   (remove-text-properties (point-min) (point-max) '(org-summaries t)))
-  (let ((org-columns--time (float-time (current-time)))
-	seen)
-    (dolist (spec org-columns-current-fmt-compiled)
-      (let ((property (car spec)))
-	;; Property value is updated only the first time a given
-	;; property is encountered.
-	(org-columns--compute-spec spec (not (member property seen)))
-	(push property seen)))))
-
-(defun org-columns--summary-sum (values printf)
-  "Compute the sum of VALUES.
-When PRINTF is non-nil, use it to format the result."
-  (format (or printf "%s") (apply #'+ (mapcar #'string-to-number values))))
-
-(defun org-columns--summary-currencies (values _)
-  "Compute the sum of VALUES, with two decimals."
-  (format "%.2f" (apply #'+ (mapcar #'string-to-number values))))
-
-(defun org-columns--summary-checkbox (check-boxes _)
-  "Summarize CHECK-BOXES with a check-box."
-  (let ((done (cl-count "[X]" check-boxes :test #'equal))
-	(all (length check-boxes)))
-    (cond ((= done all) "[X]")
-	  ((> done 0) "[-]")
-	  (t "[ ]"))))
-
-(defun org-columns--summary-checkbox-count (check-boxes _)
-  "Summarize CHECK-BOXES with a check-box cookie."
-  (format "[%d/%d]"
-	  (cl-count-if (lambda (b) (or (equal b "[X]")
-				  (string-match-p "\\[\\([1-9]\\)/\\1\\]" b)))
-		       check-boxes)
-	  (length check-boxes)))
-
-(defun org-columns--summary-checkbox-percent (check-boxes _)
-  "Summarize CHECK-BOXES with a check-box percent."
-  (format "[%d%%]"
-	  (round (* 100.0 (cl-count-if (lambda (b) (member b '("[X]" "[100%]")))
-				       check-boxes))
-		 (length check-boxes))))
-
-(defun org-columns--summary-min (values printf)
-  "Compute the minimum of VALUES.
-When PRINTF is non-nil, use it to format the result."
-  (format (or printf "%s")
-	  (apply #'min (mapcar #'string-to-number values))))
-
-(defun org-columns--summary-max (values printf)
-  "Compute the maximum of VALUES.
-When PRINTF is non-nil, use it to format the result."
-  (format (or printf "%s")
-	  (apply #'max (mapcar #'string-to-number values))))
-
-(defun org-columns--summary-mean (values printf)
-  "Compute the mean of VALUES.
-When PRINTF is non-nil, use it to format the result."
-  (format (or printf "%s")
-	  (/ (apply #'+ (mapcar #'string-to-number values))
-	     (float (length values)))))
-
-(defun org-columns--summary-sum-times (times _)
-  "Sum TIMES."
-  (org-columns--summary-apply-times #'+ times))
-
-(defun org-columns--summary-min-time (times _)
-  "Compute the minimum time among TIMES."
-  (org-columns--summary-apply-times #'min times))
-
-(defun org-columns--summary-max-time (times _)
-  "Compute the maximum time among TIMES."
-  (org-columns--summary-apply-times #'max times))
-
-(defun org-columns--summary-mean-time (times _)
-  "Compute the mean time among TIMES."
-  (org-columns--summary-apply-times
-   (lambda (&rest values) (/ (apply #'+ values) (float (length values))))
-   times))
-
-(defun org-columns--summary-min-age (ages _)
-  "Compute the minimum time among AGES."
-  (org-columns--format-age
-   (apply #'min (mapcar #'org-columns--age-to-minutes ages))))
-
-(defun org-columns--summary-max-age (ages _)
-  "Compute the maximum time among AGES."
-  (org-columns--format-age
-   (apply #'max (mapcar #'org-columns--age-to-minutes ages))))
-
-(defun org-columns--summary-mean-age (ages _)
-  "Compute the minimum time among AGES."
-  (org-columns--format-age
-   (/ (apply #'+ (mapcar #'org-columns--age-to-minutes ages))
-      (float (length ages)))))
-
-(defun org-columns--summary-estimate (estimates _)
-  "Combine a list of estimates, using mean and variance.
-The mean and variance of the result will be the sum of the means
-and variances (respectively) of the individual estimates."
-  (let ((mean 0)
-        (var 0))
-    (dolist (e estimates)
-      (pcase (mapcar #'string-to-number (split-string e "-"))
-	(`(,low ,high)
-	 (let ((m (/ (+ low high) 2.0)))
-	   (cl-incf mean m)
-	   (cl-incf var (- (/ (+ (* low low) (* high high)) 2.0) (* m m)))))
-	(`(,value) (cl-incf mean value))))
-    (let ((sd (sqrt var)))
-      (format "%s-%s"
-	      (format "%.0f" (- mean sd))
-	      (format "%.0f" (+ mean sd))))))
-
-
-
-;;; Dynamic block for Column view
-
-(defun org-columns--capture-view (maxlevel skip-empty format local)
-  "Get the column view of the current buffer.
-
-MAXLEVEL sets the level limit.  SKIP-EMPTY tells whether to skip
-empty rows, an empty row being one where all the column view
-specifiers but ITEM are empty.  FORMAT is a format string for
-columns, or nil.  When LOCAL is non-nil, only capture headings in
-current subtree.
-
-This function returns a list containing the title row and all
-other rows.  Each row is a list of fields, as strings, or
-`hline'."
-  (org-columns (not local) format)
-  (goto-char org-columns-top-level-marker)
-  (let ((columns (length org-columns-current-fmt-compiled))
-	(has-item (assoc "ITEM" org-columns-current-fmt-compiled))
-	table)
-    (org-map-entries
-     (lambda ()
-       (when (get-char-property (point) 'org-columns-key)
-	 (let (row)
-	   (dotimes (i columns)
-	     (let* ((col (+ (line-beginning-position) i))
-		    (p (get-char-property col 'org-columns-key)))
-	       (push (org-quote-vert
-		      (get-char-property col
-					 (if (string= p "ITEM")
-					     'org-columns-value
-					   'org-columns-value-modified)))
-		     row)))
-	   (unless (and skip-empty
-			(let ((r (delete-dups (remove "" row))))
-			  (or (null r) (and has-item (= (length r) 1)))))
-	     (push (cons (org-reduced-level (org-current-level)) (nreverse row))
-		   table)))))
-     (and maxlevel (format "LEVEL<=%d" maxlevel))
-     (and local 'tree)
-     'archive 'comment)
-    (org-columns-quit)
-    ;; Add column titles and a horizontal rule in front of the table.
-    (cons (mapcar #'cadr org-columns-current-fmt-compiled)
-	  (cons 'hline (nreverse table)))))
-
-(defun org-columns--clean-item (item)
-  "Remove sensitive contents from string ITEM.
-This includes objects that may not be duplicated within
-a document, e.g., a target, or those forbidden in tables, e.g.,
-an inline src-block."
-  (let ((data (org-element-parse-secondary-string
-	       item (org-element-restriction 'headline))))
-    (org-element-map data
-	'(footnote-reference inline-babel-call inline-src-block target
-			     radio-target statistics-cookie)
-      #'org-element-extract-element)
-    (org-no-properties (org-element-interpret-data data))))
-
-;;;###autoload
-(defun org-dblock-write:columnview (params)
-  "Write the column view table.
-PARAMS is a property list of parameters:
-
-:id       the :ID: property of the entry where the columns view
-	  should be built.  When the symbol `local', call locally.
-	  When `global' call column view with the cursor at the beginning
-	  of the buffer (usually this means that the whole buffer switches
-	  to column view).  When \"file:path/to/file.org\", invoke column
-	  view at the start of that file.  Otherwise, the ID is located
-	  using `org-id-find'.
-:hlines   When t, insert a hline before each item.  When a number, insert
-	  a hline before each level <= that number.
-:indent   When non-nil, indent each ITEM field according to its level.
-:vlines   When t, make each column a colgroup to enforce vertical lines.
-:maxlevel When set to a number, don't capture headlines below this level.
-:skip-empty-rows
-	  When t, skip rows where all specifiers other than ITEM are empty.
-:width    apply widths specified in columns format using <N> specifiers.
-:format   When non-nil, specify the column view format to use."
-  (let ((table
-	 (let ((id (plist-get params :id))
-	       view-file view-pos)
-	   (pcase id
-	     (`global nil)
-	     ((or `local `nil) (setq view-pos (point)))
-	     ((and (let id-string (format "%s" id))
-		   (guard (string-match "^file:\\(.*\\)" id-string)))
-	      (setq view-file (match-string-no-properties 1 id-string))
-	      (unless (file-exists-p view-file)
-		(user-error "No such file: %S" id-string)))
-	     ((and (let idpos (org-find-entry-with-id id)) (guard idpos))
-	      (setq view-pos idpos))
-	     ((let `(,filename . ,position) (org-id-find id))
-	      (setq view-file filename)
-	      (setq view-pos position))
-	     (_ (user-error "Cannot find entry with :ID: %s" id)))
-	   (with-current-buffer (if view-file (get-file-buffer view-file)
-				  (current-buffer))
-	     (org-with-wide-buffer
-	      (when view-pos (goto-char view-pos))
-	      (org-columns--capture-view (plist-get params :maxlevel)
-					 (plist-get params :skip-empty-rows)
-					 (plist-get params :format)
-					 view-pos))))))
-    (when table
-      ;; Prune level information from the table.  Also normalize
-      ;; headings: remove stars, add indentation entities, if
-      ;; required, and possibly precede some of them with a horizontal
-      ;; rule.
-      (let ((item-index
-	     (let ((p (assoc "ITEM" org-columns-current-fmt-compiled)))
-	       (and p (cl-position p
-				   org-columns-current-fmt-compiled
-				   :test #'equal))))
-	    (hlines (plist-get params :hlines))
-	    (indent (plist-get params :indent))
-	    new-table)
-	;; Copy header and first rule.
-	(push (pop table) new-table)
-	(push (pop table) new-table)
-	(dolist (row table (setq table (nreverse new-table)))
-	  (let ((level (car row)))
-	    (when (and (not (eq (car new-table) 'hline))
-		       (or (eq hlines t)
-			   (and (numberp hlines) (<= level hlines))))
-	      (push 'hline new-table))
-	    (when item-index
-	      (let ((item (org-columns--clean-item (nth item-index (cdr row)))))
-		(setf (nth item-index (cdr row))
-		      (if (and indent (> level 1))
-			  (concat "\\_" (make-string (* 2 (1- level)) ?\s) item)
-			item))))
-	    (push (cdr row) new-table))))
-      (when (plist-get params :width)
-	(setq table
-	      (append table
-		      (list
-		       (mapcar (lambda (spec)
-				 (let ((w (nth 2 spec)))
-				   (if w (format "<%d>" (max 3 w)) "")))
-			       org-columns-current-fmt-compiled)))))
-      (when (plist-get params :vlines)
-	(setq table
-	      (let ((size (length org-columns-current-fmt-compiled)))
-		(append (mapcar (lambda (x) (if (eq 'hline x) x (cons "" x)))
-				table)
-			(list (cons "/" (make-list size "<>")))))))
-      (let ((content-lines (org-split-string (plist-get params :content) "\n"))
-	    recalc)
-	;; Insert affiliated keywords before the table.
-	(when content-lines
-	  (while (string-match-p "\\`[ \t]*#\\+" (car content-lines))
-	    (insert (pop content-lines) "\n")))
-	(save-excursion
-	  ;; Insert table at point.
-	  (insert
-	   (mapconcat (lambda (row)
-			(if (eq row 'hline) "|-|"
-			  (format "|%s|" (mapconcat #'identity row "|"))))
-		      table
-		      "\n"))
-	  ;; Insert TBLFM lines following table.
-	  (let ((case-fold-search t))
-	    (dolist (line content-lines)
-	      (when (string-match-p "\\`[ \t]*#\\+TBLFM:" line)
-		(insert "\n" line)
-		(unless recalc (setq recalc t))))))
-	(when recalc (org-table-recalculate 'all t))
-	(org-table-align)))))
-
-;;;###autoload
-(defun org-columns-insert-dblock ()
-  "Create a dynamic block capturing a column view table."
-  (interactive)
-  (let ((id (completing-read
-	     "Capture columns (local, global, entry with :ID: property) [local]: "
-	     (append '(("global") ("local"))
-		     (mapcar #'list (org-property-values "ID"))))))
-    (org-create-dblock
-     (list :name "columnview"
-	   :hlines 1
-	   :id (cond ((string= id "global") 'global)
-		     ((member id '("" "local")) 'local)
-		     (id)))))
-  (org-update-dblock))
-
-
-
-;;; Column view in the agenda
-
-;;;###autoload
-(defun org-agenda-columns ()
-  "Turn on or update column view in the agenda."
-  (interactive)
-  (org-columns-remove-overlays)
-  (if (markerp org-columns-begin-marker)
-      (move-marker org-columns-begin-marker (point))
-    (setq org-columns-begin-marker (point-marker)))
-  (let* ((org-columns--time (float-time (current-time)))
-	 (fmt
-	  (cond
-	   ((bound-and-true-p org-agenda-overriding-columns-format))
-	   ((let ((m (org-get-at-bol 'org-hd-marker)))
-	      (and m
-		   (or (org-entry-get m "COLUMNS" t)
-		       (with-current-buffer (marker-buffer m)
-			 org-columns-default-format)))))
-	   ((and (local-variable-p 'org-columns-current-fmt)
-		 org-columns-current-fmt))
-	   ((let ((m (next-single-property-change (point-min) 'org-hd-marker)))
-	      (and m
-		   (let ((m (get-text-property m 'org-hd-marker)))
-		     (or (org-entry-get m "COLUMNS" t)
-			 (with-current-buffer (marker-buffer m)
-			   org-columns-default-format))))))
-	   (t org-columns-default-format)))
-	 (compiled-fmt (org-columns-compile-format fmt)))
-    (setq org-columns-current-fmt fmt)
-    (when org-agenda-columns-compute-summary-properties
-      (org-agenda-colview-compute org-columns-current-fmt-compiled))
-    (save-excursion
-      ;; Collect properties for each headline in current view.
-      (goto-char (point-min))
-      (let (cache)
-	(while (not (eobp))
-	  (let ((m (org-get-at-bol 'org-hd-marker)))
-	    (when m
-	      (push (cons (line-beginning-position)
-			  ;; `org-columns-current-fmt-compiled' is
-			  ;; initialized but only set locally to the
-			  ;; agenda buffer.  Since current buffer is
-			  ;; changing, we need to force the original
-			  ;; compiled-fmt there.
-			  (org-with-point-at m
-			    (org-columns--collect-values compiled-fmt)))
-		    cache)))
-	  (forward-line))
-	(when cache
-	  (org-columns--set-widths cache)
-	  (org-columns--display-here-title)
-	  (when (setq-local org-columns-flyspell-was-active
-			    (bound-and-true-p flyspell-mode))
-	    (flyspell-mode 0))
-	  (dolist (entry cache)
-	    (goto-char (car entry))
-	    (org-columns--display-here (cdr entry)))
-	  (when org-agenda-columns-show-summaries
-	    (org-agenda-colview-summarize cache)))))))
-
-(defun org-agenda-colview-summarize (cache)
-  "Summarize the summarizable columns in column view in the agenda.
-This will add overlays to the date lines, to show the summary for each day."
-  (let ((fmt (mapcar
-	      (lambda (spec)
-		(pcase spec
-		  (`(,property ,title ,width . ,_)
-		   (if (member property '("CLOCKSUM" "CLOCKSUM_T"))
-		       (list property title width ":" nil)
-		     spec))))
-	      org-columns-current-fmt-compiled)))
-    ;; Ensure there's at least one summation column.
-    (when (cl-some (lambda (spec) (nth 3 spec)) fmt)
-      (goto-char (point-max))
-      (catch :complete
-	(while t
-	  (when (or (get-text-property (point) 'org-date-line)
-		    (eq (get-text-property (point) 'face)
-			'org-agenda-structure))
-	    ;; OK, this is a date line that should be used.
-	    (let (entries)
-	      (let (rest)
-		(dolist (c cache)
-		  (if (> (car c) (point))
-		      (push c entries)
-		    (push c rest)))
-		(setq cache rest))
-	      ;; ENTRIES contains entries below the current one.
-	      ;; CACHE is the rest.  Compute the summaries for the
-	      ;; properties we want, set nil properties for the rest.
-	      (when (setq entries (mapcar #'cdr entries))
-		(org-columns--display-here
-		 (mapcar
-		  (lambda (spec)
-		    (pcase spec
-		      (`("ITEM" . ,_)
-		       ;; Replace ITEM with current date.  Preserve
-		       ;; properties for fontification.
-		       (let ((date (buffer-substring
-				    (line-beginning-position)
-				    (line-end-position))))
-			 (list spec date date)))
-		      (`(,_ ,_ ,_ nil ,_) (list spec "" ""))
-		      (`(,_ ,_ ,_ ,operator ,printf)
-		       (let* ((summarize (org-columns--summarize operator))
-			      (values
-			       ;; Use real values for summary, not
-			       ;; those prepared for display.
-			       (delq nil
-				     (mapcar
-				      (lambda (e) (org-string-nw-p
-					      (nth 1 (assoc spec e))))
-				      entries)))
-			      (final (if values
-					 (funcall summarize values printf)
-				       "")))
-			 (unless (equal final "")
-			   (put-text-property 0 (length final)
-					      'face 'bold final))
-			 (list spec final final)))))
-		  fmt)
-		 'dateline)
-		(setq-local org-agenda-columns-active t))))
-	  (if (bobp) (throw :complete t) (forward-line -1)))))))
-
-(defun org-agenda-colview-compute (fmt)
-  "Compute the relevant columns in the contributing source buffers."
-  (dolist (file org-agenda-contributing-files)
-    (let ((b (find-buffer-visiting file)))
-      (with-current-buffer (or (buffer-base-buffer b) b)
-	(org-with-wide-buffer
-	 (org-with-silent-modifications
-	  (remove-text-properties (point-min) (point-max) '(org-summaries t)))
-	 (goto-char (point-min))
-	 (org-columns-get-format-and-top-level)
-	 (dolist (spec fmt)
-	   (let ((prop (car spec)))
-	     (cond
-	      ((equal prop "CLOCKSUM") (org-clock-sum))
-	      ((equal prop "CLOCKSUM_T") (org-clock-sum-today))
-	      ((and (nth 3 spec)
-		    (let ((a (assoc prop org-columns-current-fmt-compiled)))
-		      (equal (nth 3 a) (nth 3 spec))))
-	       (org-columns-compute prop))))))))))
-
-
-(provide 'org-colview)
-
-;;; org-colview.el ends here
diff --git a/elpa/org-9.1.14/org-colview.elc b/elpa/org-9.1.14/org-colview.elc
deleted file mode 100644
index c8f7ed7..0000000
--- a/elpa/org-9.1.14/org-colview.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-compat.el b/elpa/org-9.1.14/org-compat.el
deleted file mode 100644
index 1fd408d..0000000
--- a/elpa/org-9.1.14/org-compat.el
+++ /dev/null
@@ -1,563 +0,0 @@
-;;; org-compat.el --- Compatibility Code for Older Emacsen -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains code needed for compatibility with older
-;; versions of GNU Emacs.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org-macs)
-
-(declare-function org-at-table.el-p "org" ())
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-type "org-element" (element))
-(declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading))
-(declare-function org-link-set-parameters "org" (type &rest rest))
-(declare-function org-table-end "org-table" (&optional table-type))
-(declare-function outline-next-heading "outline" ())
-(declare-function table--at-cell-p "table" (position &optional object at-column))
-
-(defvar org-table-any-border-regexp)
-(defvar org-table-dataline-regexp)
-(defvar org-table-tab-recognizes-table.el)
-(defvar org-table1-hline-regexp)
-
-;;; Emacs < 25.1 compatibility
-
-(when (< emacs-major-version 25)
-  (defalias 'outline-hide-entry 'hide-entry)
-  (defalias 'outline-hide-sublevels 'hide-sublevels)
-  (defalias 'outline-hide-subtree 'hide-subtree)
-  (defalias 'outline-show-all 'show-all)
-  (defalias 'outline-show-branches 'show-branches)
-  (defalias 'outline-show-children 'show-children)
-  (defalias 'outline-show-entry 'show-entry)
-  (defalias 'outline-show-subtree 'show-subtree)
-  (defalias 'xref-find-definitions 'find-tag)
-  (defalias 'format-message 'format)
-  (defalias 'gui-get-selection 'x-get-selection))
-
-(unless (fboundp 'directory-name-p)
-  (defun directory-name-p (name)
-    "Return non-nil if NAME ends with a directory separator character."
-    (let ((len (length name))
-	  (lastc ?.))
-      (if (> len 0)
-	  (setq lastc (aref name (1- len))))
-      (or (= lastc ?/)
-	  (and (memq system-type '(windows-nt ms-dos))
-	       (= lastc ?\\))))))
-
-
-;;; Obsolete aliases (remove them after the next major release).
-
-;;;; XEmacs compatibility, now removed.
-(define-obsolete-function-alias 'org-activate-mark 'activate-mark)
-(define-obsolete-function-alias 'org-add-hook 'add-hook "Org 9.0")
-(define-obsolete-function-alias 'org-bound-and-true-p 'bound-and-true-p "Org 9.0")
-(define-obsolete-function-alias 'org-decompose-region 'decompose-region "Org 9.0")
-(define-obsolete-function-alias 'org-defvaralias 'defvaralias "Org 9.0")
-(define-obsolete-function-alias 'org-detach-overlay 'delete-overlay "Org 9.0")
-(define-obsolete-function-alias 'org-file-equal-p 'file-equal-p "Org 9.0")
-(define-obsolete-function-alias 'org-float-time 'float-time "Org 9.0")
-(define-obsolete-function-alias 'org-indent-line-to 'indent-line-to "Org 9.0")
-(define-obsolete-function-alias 'org-indent-to-column 'indent-to-column "Org 9.0")
-(define-obsolete-function-alias 'org-looking-at-p 'looking-at-p "Org 9.0")
-(define-obsolete-function-alias 'org-looking-back 'looking-back "Org 9.0")
-(define-obsolete-function-alias 'org-match-string-no-properties 'match-string-no-properties "Org 9.0")
-(define-obsolete-function-alias 'org-propertize 'propertize "Org 9.0")
-(define-obsolete-function-alias 'org-select-frame-set-input-focus 'select-frame-set-input-focus "Org 9.0")
-
-(defmacro org-re (s)
-  "Replace posix classes in regular expression S."
-  (declare (debug (form))
-           (obsolete "you can safely remove it." "Org 9.0"))
-  s)
-
-;;;; Functions from cl-lib that Org used to have its own implementation of.
-(define-obsolete-function-alias 'org-count 'cl-count "Org 9.0")
-(define-obsolete-function-alias 'org-every 'cl-every "Org 9.0")
-(define-obsolete-function-alias 'org-find-if 'cl-find-if "Org 9.0")
-(define-obsolete-function-alias 'org-reduce 'cl-reduce "Org 9.0")
-(define-obsolete-function-alias 'org-remove-if 'cl-remove-if "Org 9.0")
-(define-obsolete-function-alias 'org-remove-if-not 'cl-remove-if-not "Org 9.0")
-(define-obsolete-function-alias 'org-some 'cl-some "Org 9.0")
-(define-obsolete-function-alias 'org-floor* 'cl-floor "Org 9.0")
-
-(defun org-sublist (list start end)
-  "Return a section of LIST, from START to END.
-Counting starts at 1."
-  (cl-subseq list (1- start) end))
-(make-obsolete 'org-sublist
-               "use cl-subseq (note the 0-based counting)."
-               "Org 9.0")
-
-
-;;;; Functions available since Emacs 24.3
-(define-obsolete-function-alias 'org-buffer-narrowed-p 'buffer-narrowed-p "Org 9.0")
-(define-obsolete-function-alias 'org-called-interactively-p 'called-interactively-p "Org 9.0")
-(define-obsolete-function-alias 'org-char-to-string 'char-to-string "Org 9.0")
-(define-obsolete-function-alias 'org-delete-directory 'delete-directory "Org 9.0")
-(define-obsolete-function-alias 'org-format-seconds 'format-seconds "Org 9.0")
-(define-obsolete-function-alias 'org-link-escape-browser 'url-encode-url "Org 9.0")
-(define-obsolete-function-alias 'org-no-warnings 'with-no-warnings "Org 9.0")
-(define-obsolete-function-alias 'org-number-sequence 'number-sequence "Org 9.0")
-(define-obsolete-function-alias 'org-pop-to-buffer-same-window 'pop-to-buffer-same-window "Org 9.0")
-(define-obsolete-function-alias 'org-string-match-p 'string-match-p "Org 9.0")
-
-;;;; Functions and variables from previous releases now obsolete.
-(define-obsolete-function-alias 'org-element-remove-indentation
-  'org-remove-indentation "Org 9.0")
-(define-obsolete-variable-alias 'org-latex-create-formula-image-program
-  'org-preview-latex-default-process "Org 9.0")
-(define-obsolete-variable-alias 'org-latex-preview-ltxpng-directory
-  'org-preview-latex-image-directory "Org 9.0")
-(define-obsolete-function-alias 'org-table-p 'org-at-table-p "Org 9.0")
-(define-obsolete-function-alias 'org-on-heading-p 'org-at-heading-p "Org 9.0")
-(define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp "Org 8.3")
-(define-obsolete-function-alias 'org-image-file-name-regexp
-  'image-file-name-regexp "Org 9.0")
-(define-obsolete-function-alias 'org-completing-read-no-i
-  'completing-read "Org 9.0")
-(define-obsolete-function-alias 'org-icompleting-read
-  'completing-read "Org 9.0")
-(define-obsolete-function-alias 'org-iread-file-name 'read-file-name "Org 9.0")
-(define-obsolete-function-alias 'org-days-to-time
-  'org-time-stamp-to-now "Org 8.2")
-(define-obsolete-variable-alias 'org-agenda-ignore-drawer-properties
-  'org-agenda-ignore-properties "Org 9.0")
-(define-obsolete-function-alias 'org-preview-latex-fragment
-  'org-toggle-latex-fragment "Org 8.3")
-(define-obsolete-function-alias 'org-export-get-genealogy
-  'org-element-lineage "Org 9.0")
-(define-obsolete-variable-alias 'org-latex-with-hyperref
-  'org-latex-hyperref-template "Org 9.0")
-(define-obsolete-variable-alias 'hfy-optimisations 'hfy-optimizations "Org 9.0")
-(define-obsolete-variable-alias 'org-export-htmlized-org-css-url
-  'org-org-htmlized-css-url "Org 8.2")
-(define-obsolete-function-alias 'org-list-parse-list 'org-list-to-lisp "Org 9.0")
-(define-obsolete-function-alias 'org-agenda-todayp
-  'org-agenda-today-p "Org 9.0")
-(define-obsolete-function-alias 'org-babel-examplize-region
-  'org-babel-examplify-region "Org 9.0")
-(define-obsolete-variable-alias 'org-babel-capitalize-example-region-markers
-  'org-babel-uppercase-example-markers "Org 9.1")
-
-(define-obsolete-function-alias 'org-babel-trim 'org-trim "Org 9.0")
-(define-obsolete-variable-alias 'org-html-style 'org-html-head "24.4")
-(define-obsolete-function-alias 'org-insert-columns-dblock
-  'org-columns-insert-dblock "Org 9.0")
-(define-obsolete-variable-alias 'org-export-babel-evaluate
-  'org-export-use-babel "Org 9.1")
-(define-obsolete-function-alias 'org-activate-bracket-links
-  'org-activate-links "Org 9.0")
-(define-obsolete-function-alias 'org-activate-plain-links 'ignore "Org 9.0")
-(define-obsolete-function-alias 'org-activate-angle-links 'ignore "Org 9.0")
-
-(defun org-in-fixed-width-region-p ()
-  "Non-nil if point in a fixed-width region."
-  (save-match-data
-    (eq 'fixed-width (org-element-type (org-element-at-point)))))
-(make-obsolete 'org-in-fixed-width-region-p
-               "use `org-element' library"
-               "Org 9.0")
-
-(defun org-compatible-face (inherits specs)
-  "Make a compatible face specification.
-If INHERITS is an existing face and if the Emacs version supports
-it, just inherit the face.  If INHERITS is not given and SPECS
-is, use SPECS to define the face."
-  (declare (indent 1))
-  (if (facep inherits)
-      (list (list t :inherit inherits))
-    specs))
-(make-obsolete 'org-compatible-face "you can remove it." "Org 9.0")
-
-(defun org-add-link-type (type &optional follow export)
-  "Add a new TYPE link.
-FOLLOW and EXPORT are two functions.
-
-FOLLOW should take the link path as the single argument and do whatever
-is necessary to follow the link, for example find a file or display
-a mail message.
-
-EXPORT should format the link path for export to one of the export formats.
-It should be a function accepting three arguments:
-
-  path    the path of the link, the text after the prefix (like \"http:\")
-  desc    the description of the link, if any
-  format  the export format, a symbol like `html' or `latex' or `ascii'.
-
-The function may use the FORMAT information to return different values
-depending on the format.  The return value will be put literally into
-the exported file.  If the return value is nil, this means Org should
-do what it normally does with links which do not have EXPORT defined.
-
-Org mode has a built-in default for exporting links.  If you are happy with
-this default, there is no need to define an export function for the link
-type.  For a simple example of an export function, see `org-bbdb.el'.
-
-If TYPE already exists, update it with the arguments.
-See `org-link-parameters' for documentation on the other parameters."
-  (org-link-set-parameters type :follow follow :export export)
-  (message "Created %s link." type))
-
-(make-obsolete 'org-add-link-type "use `org-link-set-parameters' instead." "Org 9.0")
-
-(defun org-table-recognize-table.el ()
-  "If there is a table.el table nearby, recognize it and move into it."
-  (when (and org-table-tab-recognizes-table.el (org-at-table.el-p))
-    (beginning-of-line)
-    (unless (or (looking-at org-table-dataline-regexp)
-                (not (looking-at org-table1-hline-regexp)))
-      (forward-line)
-      (when (looking-at org-table-any-border-regexp)
-        (forward-line -2)))
-    (if (re-search-forward "|" (org-table-end t) t)
-        (progn
-          (require 'table)
-          (if (table--at-cell-p (point)) t
-            (message "recognizing table.el table...")
-            (table-recognize-table)
-            (message "recognizing table.el table...done")))
-      (error "This should not happen"))))
-
-;; Not used by Org core since commit 6d1e3082, Feb 2010.
-(make-obsolete 'org-table-recognize-table.el
-               "please notify the org mailing list if you use this function."
-               "Org 9.0")
-
-(defun org-remove-angle-brackets (s)
-  (org-unbracket-string "<" ">" s))
-(make-obsolete 'org-remove-angle-brackets 'org-unbracket-string "Org 9.0")
-
-(defun org-remove-double-quotes (s)
-  (org-unbracket-string "\"" "\"" s))
-(make-obsolete 'org-remove-double-quotes 'org-unbracket-string "Org 9.0")
-
-(defcustom org-publish-sitemap-file-entry-format "%t"
-  "Format string for site-map file entry.
-You could use brackets to delimit on what part the link will be.
-
-%t is the title.
-%a is the author.
-%d is the date formatted using `org-publish-sitemap-date-format'."
-  :group 'org-export-publish
-  :type 'string)
-(make-obsolete-variable
- 'org-publish-sitemap-file-entry-format
- "set `:sitemap-format-entry' in `org-publish-project-alist' instead."
- "Org 9.1")
-
-(defvar org-agenda-skip-regexp)
-(defun org-agenda-skip-entry-when-regexp-matches ()
-  "Check if the current entry contains match for `org-agenda-skip-regexp'.
-If yes, it returns the end position of this entry, causing agenda commands
-to skip the entry but continuing the search in the subtree.  This is a
-function that can be put into `org-agenda-skip-function' for the duration
-of a command."
-  (declare (obsolete "use `org-agenda-skip-if' instead." "Org 9.1"))
-  (let ((end (save-excursion (org-end-of-subtree t)))
-	skip)
-    (save-excursion
-      (setq skip (re-search-forward org-agenda-skip-regexp end t)))
-    (and skip end)))
-
-(defun org-agenda-skip-subtree-when-regexp-matches ()
-  "Check if the current subtree contains match for `org-agenda-skip-regexp'.
-If yes, it returns the end position of this tree, causing agenda commands
-to skip this subtree.  This is a function that can be put into
-`org-agenda-skip-function' for the duration of a command."
-  (declare (obsolete "use `org-agenda-skip-if' instead." "Org 9.1"))
-  (let ((end (save-excursion (org-end-of-subtree t)))
-	skip)
-    (save-excursion
-      (setq skip (re-search-forward org-agenda-skip-regexp end t)))
-    (and skip end)))
-
-(defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
-  "Check if the current subtree contains match for `org-agenda-skip-regexp'.
-If yes, it returns the end position of the current entry (NOT the tree),
-causing agenda commands to skip the entry but continuing the search in
-the subtree.  This is a function that can be put into
-`org-agenda-skip-function' for the duration of a command.  An important
-use of this function is for the stuck project list."
-  (declare (obsolete "use `org-agenda-skip-if' instead." "Org 9.1"))
-  (let ((end (save-excursion (org-end-of-subtree t)))
-	(entry-end (save-excursion (outline-next-heading) (1- (point))))
-	skip)
-    (save-excursion
-      (setq skip (re-search-forward org-agenda-skip-regexp end t)))
-    (and skip entry-end)))
-
-(define-obsolete-function-alias 'org-minutes-to-clocksum-string
-  'org-duration-from-minutes "Org 9.1")
-
-(define-obsolete-function-alias 'org-hh:mm-string-to-minutes
-  'org-duration-to-minutes "Org 9.1")
-
-(define-obsolete-function-alias 'org-duration-string-to-minutes
-  'org-duration-to-minutes "Org 9.1")
-
-(make-obsolete-variable 'org-time-clocksum-format
-  "set `org-duration-format' instead." "Org 9.1")
-
-(make-obsolete-variable 'org-time-clocksum-use-fractional
-  "set `org-duration-format' instead." "Org 9.1")
-
-(make-obsolete-variable 'org-time-clocksum-fractional-format
-  "set `org-duration-format' instead." "Org 9.1")
-
-(make-obsolete-variable 'org-time-clocksum-use-effort-durations
-  "set `org-duration-units' instead." "Org 9.1")
-
-(define-obsolete-function-alias 'org-babel-number-p
-  'org-babel--string-to-number "Org 9.0")
-
-(define-obsolete-variable-alias 'org-usenet-links-prefer-google
-  'org-gnus-prefer-web-links "Org 9.1")
-
-(define-obsolete-variable-alias 'org-texinfo-def-table-markup
-  'org-texinfo-table-default-markup "Org 9.1")
-
-;;; The function was made obsolete by commit 65399674d5 of 2013-02-22.
-;;; This make-obsolete call was added 2016-09-01.
-(make-obsolete 'org-capture-import-remember-templates
-	       "use the `org-capture-templates' variable instead."
-	       "Org 9.0")
-
-
-;;;; Obsolete link types
-
-(eval-after-load 'org
-  '(progn
-     (org-link-set-parameters "file+emacs") ;since Org 9.0
-     (org-link-set-parameters "file+sys"))) ;since Org 9.0
-
-
-
-;;; Miscellaneous functions
-
-(defun org-version-check (version feature level)
-  (let* ((v1 (mapcar 'string-to-number (split-string version "[.]")))
-         (v2 (mapcar 'string-to-number (split-string emacs-version "[.]")))
-         (rmaj (or (nth 0 v1) 99))
-         (rmin (or (nth 1 v1) 99))
-         (rbld (or (nth 2 v1) 99))
-         (maj (or (nth 0 v2) 0))
-         (min (or (nth 1 v2) 0))
-         (bld (or (nth 2 v2) 0)))
-    (if (or (< maj rmaj)
-            (and (= maj rmaj)
-                 (< min rmin))
-            (and (= maj rmaj)
-                 (= min rmin)
-                 (< bld rbld)))
-        (if (eq level :predicate)
-            ;; just return if we have the version
-            nil
-          (let ((msg (format "Emacs %s or greater is recommended for %s"
-                             version feature)))
-            (display-warning 'org msg level)
-            t))
-      t)))
-
-(defun org-get-x-clipboard (value)
-  "Get the value of the X or Windows clipboard."
-  (cond ((and (eq window-system 'x)
-              (fboundp 'gui-get-selection)) ;Silence byte-compiler.
-         (org-no-properties
-          (ignore-errors
-            (or (gui-get-selection value 'UTF8_STRING)
-                (gui-get-selection value 'COMPOUND_TEXT)
-                (gui-get-selection value 'STRING)
-                (gui-get-selection value 'TEXT)))))
-        ((and (eq window-system 'w32) (fboundp 'w32-get-clipboard-data))
-         (w32-get-clipboard-data))))
-
-(defun org-add-props (string plist &rest props)
-  "Add text properties to entire string, from beginning to end.
-PLIST may be a list of properties, PROPS are individual properties and values
-that will be added to PLIST.  Returns the string that was modified."
-  (add-text-properties
-   0 (length string) (if props (append plist props) plist) string)
-  string)
-(put 'org-add-props 'lisp-indent-function 2)
-
-(defun org-fit-window-to-buffer (&optional window max-height min-height
-                                           shrink-only)
-  "Fit WINDOW to the buffer, but only if it is not a side-by-side window.
-WINDOW defaults to the selected window.  MAX-HEIGHT and MIN-HEIGHT are
-passed through to `fit-window-to-buffer'.  If SHRINK-ONLY is set, call
-`shrink-window-if-larger-than-buffer' instead, the height limit is
-ignored in this case."
-  (cond ((if (fboundp 'window-full-width-p)
-             (not (window-full-width-p window))
-           ;; do nothing if another window would suffer
-           (> (frame-width) (window-width window))))
-        ((and (fboundp 'fit-window-to-buffer) (not shrink-only))
-         (fit-window-to-buffer window max-height min-height))
-        ((fboundp 'shrink-window-if-larger-than-buffer)
-         (shrink-window-if-larger-than-buffer window)))
-  (or window (selected-window)))
-
-;; `set-transient-map' is only in Emacs >= 24.4
-(defalias 'org-set-transient-map
-  (if (fboundp 'set-transient-map)
-      'set-transient-map
-    'set-temporary-overlay-map))
-
-;;; Region compatibility
-
-(defvar org-ignore-region nil
-  "Non-nil means temporarily disable the active region.")
-
-(defun org-region-active-p ()
-  "Non-nil when the region active.
-Unlike to `use-region-p', this function also checks
-`org-ignore-region'."
-  (and (not org-ignore-region) (use-region-p)))
-
-(defun org-cursor-to-region-beginning ()
-  (when (and (org-region-active-p)
-             (> (point) (region-beginning)))
-    (exchange-point-and-mark)))
-
-;;; Invisibility compatibility
-
-(defun org-remove-from-invisibility-spec (arg)
-  "Remove elements from `buffer-invisibility-spec'."
-  (if (fboundp 'remove-from-invisibility-spec)
-      (remove-from-invisibility-spec arg)
-    (if (consp buffer-invisibility-spec)
-        (setq buffer-invisibility-spec
-              (delete arg buffer-invisibility-spec)))))
-
-(defun org-in-invisibility-spec-p (arg)
-  "Is ARG a member of `buffer-invisibility-spec'?"
-  (if (consp buffer-invisibility-spec)
-      (member arg buffer-invisibility-spec)))
-
-(defun org-move-to-column (column &optional force _buffer)
-  "Move to column COLUMN.
-Pass COLUMN and FORCE to `move-to-column'."
-  (let ((buffer-invisibility-spec
-         (if (listp buffer-invisibility-spec)
-             (remove '(org-filtered) buffer-invisibility-spec)
-           buffer-invisibility-spec)))
-    (move-to-column column force)))
-
-(defmacro org-find-library-dir (library)
-  `(file-name-directory (or (locate-library ,library) "")))
-
-(defun org-count-lines (s)
-  "How many lines in string S?"
-  (let ((start 0) (n 1))
-    (while (string-match "\n" s start)
-      (setq start (match-end 0) n (1+ n)))
-    (if (and (> (length s) 0) (= (aref s (1- (length s))) ?\n))
-        (setq n (1- n)))
-    n))
-
-(defun org-kill-new (string &rest args)
-  (remove-text-properties 0 (length string) '(line-prefix t wrap-prefix t)
-                          string)
-  (apply 'kill-new string args))
-
-;; `font-lock-ensure' is only available from 24.4.50 on
-(defalias 'org-font-lock-ensure
-  (if (fboundp 'font-lock-ensure)
-      #'font-lock-ensure
-    (lambda (&optional _beg _end)
-      (with-no-warnings (font-lock-fontify-buffer)))))
-
-;; `file-local-name' was added in Emacs 26.1.
-(defalias 'org-babel-local-file-name
-  (if (fboundp 'file-local-name)
-      'file-local-name
-    (lambda (file)
-      "Return the local name component of FILE."
-      (or (file-remote-p file 'localname) file))))
-
-(defmacro org-no-popups (&rest body)
-  "Suppress popup windows.
-Let-bind some variables to nil around BODY to achieve the desired
-effect, which variables to use depends on the Emacs version."
-  (if (org-version-check "24.2.50" "" :predicate)
-      `(let (pop-up-frames display-buffer-alist)
-         ,@body)
-    `(let (pop-up-frames special-display-buffer-names special-display-regexps special-display-function)
-       ,@body)))
-
-;;;###autoload
-(defmacro org-check-version ()
-  "Try very hard to provide sensible version strings."
-  (let* ((org-dir        (org-find-library-dir "org"))
-         (org-version.el (concat org-dir "org-version.el"))
-         (org-fixup.el   (concat org-dir "../mk/org-fixup.el")))
-    (if (require 'org-version org-version.el 'noerror)
-        '(progn
-           (autoload 'org-release     "org-version.el")
-           (autoload 'org-git-version "org-version.el"))
-      (if (require 'org-fixup org-fixup.el 'noerror)
-          '(org-fixup)
-        ;; provide fallback definitions and complain
-        (warn "Could not define org version correctly.  Check installation!")
-        '(progn
-           (defun org-release () "N/A")
-           (defun org-git-version () "N/A !!check installation!!"))))))
-
-(defmacro org-with-silent-modifications (&rest body)
-  (if (fboundp 'with-silent-modifications)
-      `(with-silent-modifications ,@body)
-    `(org-unmodified ,@body)))
-(def-edebug-spec org-with-silent-modifications (body))
-
-;; Functions for Emacs < 24.4 compatibility
-(defun org-define-error (name message)
-  "Define NAME as a new error signal.
-MESSAGE is a string that will be output to the echo area if such
-an error is signaled without being caught by a `condition-case'.
-Implements `define-error' for older emacsen."
-  (if (fboundp 'define-error) (define-error name message)
-    (put name 'error-conditions
-         (copy-sequence (cons name (get 'error 'error-conditions))))))
-
-(unless (fboundp 'string-suffix-p)
-  ;; From Emacs subr.el.
-  (defun string-suffix-p (suffix string  &optional ignore-case)
-    "Return non-nil if SUFFIX is a suffix of STRING.
-If IGNORE-CASE is non-nil, the comparison is done without paying
-attention to case differences."
-    (let ((start-pos (- (length string) (length suffix))))
-      (and (>= start-pos 0)
-           (eq t (compare-strings suffix nil nil
-                                  string start-pos nil ignore-case))))))
-
-(provide 'org-compat)
-
-;;; org-compat.el ends here
diff --git a/elpa/org-9.1.14/org-compat.elc b/elpa/org-9.1.14/org-compat.elc
deleted file mode 100644
index 54b67bd..0000000
--- a/elpa/org-9.1.14/org-compat.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-crypt.el b/elpa/org-9.1.14/org-crypt.el
deleted file mode 100644
index 31850a4..0000000
--- a/elpa/org-9.1.14/org-crypt.el
+++ /dev/null
@@ -1,275 +0,0 @@
-;;; org-crypt.el --- Public Key Encryption for Org Entries -*- lexical-binding: t; -*-
-;; Copyright (C) 2007-2018 Free Software Foundation, Inc.
-
-;; Emacs Lisp Archive Entry
-;; Filename: org-crypt.el
-;; Keywords: org-mode
-;; Author: John Wiegley <johnw@gnu.org>
-;; Maintainer: Peter Jones <pjones@pmade.com>
-;; Description: Adds public key encryption to Org buffers
-;; URL: http://www.newartisans.com/software/emacs.html
-;; Compatibility: Emacs22
-
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Right now this is just a set of functions to play with.  It depends
-;; on the epg library.  Here's how you would use it:
-;;
-;; 1. To mark an entry for encryption, tag the heading with "crypt".
-;;    You can change the tag to any complex tag matching string by
-;;    setting the `org-crypt-tag-matcher' variable.
-;;
-;; 2. Set the encryption key to use in the `org-crypt-key' variable,
-;;    or use `M-x org-set-property' to set the property CRYPTKEY to
-;;    any address in your public keyring.  The text of the entry (but
-;;    not its properties or headline) will be encrypted for this user.
-;;    For them to read it, the corresponding secret key must be
-;;    located in the secret key ring of the account where you try to
-;;    decrypt it.  This makes it possible to leave secure notes that
-;;    only the intended recipient can read in a shared-org-mode-files
-;;    scenario.
-;;    If the key is not set, org-crypt will default to symmetric encryption.
-;;
-;; 3. To later decrypt an entry, use `org-decrypt-entries' or
-;;    `org-decrypt-entry'.  It might be useful to bind this to a key,
-;;    like C-c C-/.  I hope that in the future, C-c C-r can be might
-;;    overloaded to also decrypt an entry if it's encrypted, since
-;;    that fits nicely with the meaning of "reveal".
-;;
-;; 4. To automatically encrypt all necessary entries when saving a
-;;    file, call `org-crypt-use-before-save-magic' after loading
-;;    org-crypt.el.
-
-;;; Thanks:
-
-;; - Carsten Dominik
-;; - Vitaly Ostanin
-
-(require 'org)
-
-;;; Code:
-
-(declare-function epg-decrypt-string "epg" (context cipher))
-(declare-function epg-list-keys "epg" (context &optional name mode))
-(declare-function epg-make-context "epg"
-		  (&optional protocol armor textmode include-certs
-			     cipher-algorithm digest-algorithm
-			     compress-algorithm))
-(declare-function epg-encrypt-string "epg"
-		  (context plain recipients &optional sign always-trust))
-(defvar epg-context)
-
-
-(defgroup org-crypt nil
-  "Org Crypt."
-  :tag "Org Crypt"
-  :group 'org)
-
-(defcustom org-crypt-tag-matcher "crypt"
-  "The tag matcher used to find headings whose contents should be encrypted.
-
-See the \"Match syntax\" section of the org manual for more details."
-  :type 'string
-  :group 'org-crypt)
-
-(defcustom org-crypt-key ""
-  "The default key to use when encrypting the contents of a heading.
-
-This setting can also be overridden in the CRYPTKEY property."
-  :type 'string
-  :group 'org-crypt)
-
-(defcustom org-crypt-disable-auto-save 'ask
-  "What org-decrypt should do if `auto-save-mode' is enabled.
-
-t        : Disable auto-save-mode for the current buffer
-           prior to decrypting an entry.
-
-nil      : Leave auto-save-mode enabled.
-           This may cause data to be written to disk unencrypted!
-
-`ask'    : Ask user whether or not to disable auto-save-mode
-           for the current buffer.
-
-`encrypt': Leave auto-save-mode enabled for the current buffer,
-           but automatically re-encrypt all decrypted entries
-           *before* auto-saving.
-           NOTE: This only works for entries which have a tag
-           that matches `org-crypt-tag-matcher'."
-  :group 'org-crypt
-  :version "24.1"
-  :type '(choice (const :tag "Always"  t)
-                 (const :tag "Never"   nil)
-                 (const :tag "Ask"     ask)
-                 (const :tag "Encrypt" encrypt)))
-
-(defun org-crypt-check-auto-save ()
-  "Check whether auto-save-mode is enabled for the current buffer.
-
-`auto-save-mode' may cause leakage when decrypting entries, so
-check whether it's enabled, and decide what to do about it.
-
-See `org-crypt-disable-auto-save'."
-  (when buffer-auto-save-file-name
-    (cond
-     ((or
-       (eq org-crypt-disable-auto-save t)
-       (and
-	(eq org-crypt-disable-auto-save 'ask)
-	(y-or-n-p "org-decrypt: auto-save-mode may cause leakage.  Disable it for current buffer? ")))
-      (message "org-decrypt: Disabling auto-save-mode for %s"
-               (or (buffer-file-name) (current-buffer)))
-      ;; The argument to auto-save-mode has to be "-1", since
-      ;; giving a "nil" argument toggles instead of disabling.
-      (auto-save-mode -1))
-     ((eq org-crypt-disable-auto-save nil)
-      (message "org-decrypt: Decrypting entry with auto-save-mode enabled.  This may cause leakage."))
-     ((eq org-crypt-disable-auto-save 'encrypt)
-      (message "org-decrypt: Enabling re-encryption on auto-save.")
-      (add-hook 'auto-save-hook
-		    (lambda ()
-		      (message "org-crypt: Re-encrypting all decrypted entries due to auto-save.")
-		      (org-encrypt-entries))
-		    nil t))
-     (t nil))))
-
-(defun org-crypt-key-for-heading ()
-  "Return the encryption key for the current heading."
-  (save-excursion
-    (org-back-to-heading t)
-    (or (org-entry-get nil "CRYPTKEY" 'selective)
-        org-crypt-key
-        (and (boundp 'epa-file-encrypt-to) epa-file-encrypt-to)
-        (message "No crypt key set, using symmetric encryption."))))
-
-(defun org-encrypt-string (str crypt-key)
-  "Return STR encrypted with CRYPT-KEY."
-  ;; Text and key have to be identical, otherwise we re-crypt.
-  (if (and (string= crypt-key (get-text-property 0 'org-crypt-key str))
-	   (string= (sha1 str) (get-text-property 0 'org-crypt-checksum str)))
-      (get-text-property 0 'org-crypt-text str)
-    (setq-local epg-context (epg-make-context nil t t))
-    (epg-encrypt-string epg-context str (epg-list-keys epg-context crypt-key))))
-
-(defun org-encrypt-entry ()
-  "Encrypt the content of the current headline."
-  (interactive)
-  (require 'epg)
-  (org-with-wide-buffer
-   (org-back-to-heading t)
-   (setq-local epg-context (epg-make-context nil t t))
-   (let ((start-heading (point)))
-     (org-end-of-meta-data)
-     (unless (looking-at-p "-----BEGIN PGP MESSAGE-----")
-       (let ((folded (org-invisible-p))
-	     (crypt-key (org-crypt-key-for-heading))
-	     (beg (point)))
-	 (goto-char start-heading)
-	 (org-end-of-subtree t t)
-	 (org-back-over-empty-lines)
-	 (let ((contents (delete-and-extract-region beg (point))))
-	   (condition-case err
-	       (insert (org-encrypt-string contents crypt-key))
-	     ;; If encryption failed, make sure to insert back entry
-	     ;; contents in the buffer.
-	     (error (insert contents) (error (nth 1 err)))))
-	 (when folded
-	   (goto-char start-heading)
-	   (outline-hide-subtree))
-	 nil)))))
-
-(defun org-decrypt-entry ()
-  "Decrypt the content of the current headline."
-  (interactive)
-  (require 'epg)
-  (unless (org-before-first-heading-p)
-    (org-with-wide-buffer
-     (org-back-to-heading t)
-     (let ((heading-point (point))
-	   (heading-was-invisible-p
-	    (save-excursion
-	      (outline-end-of-heading)
-	      (org-invisible-p))))
-       (org-end-of-meta-data)
-       (when (looking-at "-----BEGIN PGP MESSAGE-----")
-	 (org-crypt-check-auto-save)
-	 (setq-local epg-context (epg-make-context nil t t))
-	 (let* ((end (save-excursion
-		       (search-forward "-----END PGP MESSAGE-----")
-		       (forward-line)
-		       (point)))
-		(encrypted-text (buffer-substring-no-properties (point) end))
-		(decrypted-text
-		 (decode-coding-string
-		  (epg-decrypt-string
-		   epg-context
-		   encrypted-text)
-		  'utf-8)))
-	   ;; Delete region starting just before point, because the
-	   ;; outline property starts at the \n of the heading.
-	   (delete-region (1- (point)) end)
-	   ;; Store a checksum of the decrypted and the encrypted
-	   ;; text value.  This allows reusing the same encrypted text
-	   ;; if the text does not change, and therefore avoid a
-	   ;; re-encryption process.
-	   (insert "\n" (propertize decrypted-text
-				    'org-crypt-checksum (sha1 decrypted-text)
-				    'org-crypt-key (org-crypt-key-for-heading)
-				    'org-crypt-text encrypted-text))
-	   (when heading-was-invisible-p
-	     (goto-char heading-point)
-	     (org-flag-subtree t))
-	   nil))))))
-
-(defun org-encrypt-entries ()
-  "Encrypt all top-level entries in the current buffer."
-  (interactive)
-  (let ((org--matcher-tags-todo-only nil))
-    (org-scan-tags
-     'org-encrypt-entry
-     (cdr (org-make-tags-matcher org-crypt-tag-matcher))
-     org--matcher-tags-todo-only)))
-
-(defun org-decrypt-entries ()
-  "Decrypt all entries in the current buffer."
-  (interactive)
-  (let ((org--matcher-tags-todo-only nil))
-    (org-scan-tags
-     'org-decrypt-entry
-     (cdr (org-make-tags-matcher org-crypt-tag-matcher))
-     org--matcher-tags-todo-only)))
-
-(defun org-at-encrypted-entry-p ()
-  "Is the current entry encrypted?"
-  (unless (org-before-first-heading-p)
-    (save-excursion
-      (org-back-to-heading t)
-      (search-forward "-----BEGIN PGP MESSAGE-----"
-		      (save-excursion (outline-next-heading)) t))))
-
-(defun org-crypt-use-before-save-magic ()
-  "Add a hook to automatically encrypt entries before a file is saved to disk."
-  (add-hook
-   'org-mode-hook
-   (lambda () (add-hook 'before-save-hook 'org-encrypt-entries nil t))))
-
-(add-hook 'org-reveal-start-hook 'org-decrypt-entry)
-
-(provide 'org-crypt)
-
-;;; org-crypt.el ends here
diff --git a/elpa/org-9.1.14/org-crypt.elc b/elpa/org-9.1.14/org-crypt.elc
deleted file mode 100644
index 3805726..0000000
--- a/elpa/org-9.1.14/org-crypt.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-ctags.el b/elpa/org-9.1.14/org-ctags.el
deleted file mode 100644
index 72ea76f..0000000
--- a/elpa/org-9.1.14/org-ctags.el
+++ /dev/null
@@ -1,533 +0,0 @@
-;;; org-ctags.el - Integrate Emacs "tags" Facility with Org -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2007-2018 Free Software Foundation, Inc.
-
-;; Author: Paul Sexton <eeeickythump@gmail.com>
-
-
-;; Keywords: org, wp
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;
-;; Synopsis
-;; ========
-;;
-;; Allows Org mode to make use of the Emacs `etags' system.  Defines
-;; tag destinations in Org files as any text between <<double angled
-;; brackets>>. This allows the tags-generation program `exuberant
-;; ctags' to parse these files and create tag tables that record where
-;; these destinations are found.  Plain [[links]] in org mode files
-;; which do not have <<matching destinations>> within the same file
-;; will then be interpreted as links to these 'tagged' destinations,
-;; allowing seamless navigation between multiple Org files.  Topics
-;; can be created in any org mode file and will always be found by
-;; plain links from other files.  Other file types recognized by ctags
-;; (source code files, latex files, etc) will also be available as
-;; destinations for plain links, and similarly, Org links will be
-;; available as tags from source files.  Finally, the function
-;; `org-ctags-find-tag-interactive' lets you choose any known tag,
-;; using autocompletion, and quickly jump to it.
-;;
-;; Installation
-;; ============
-;;
-;; Install org mode
-;; Ensure org-ctags.el is somewhere in your emacs load path.
-;; Download and install Exuberant ctags -- "http://ctags.sourceforge.net/"
-;; Edit your .emacs file (see next section) and load emacs.
-
-;; To put in your init file (.emacs):
-;; ==================================
-;;
-;; Assuming you already have org mode installed and set up:
-;;
-;;    (setq org-ctags-path-to-ctags "/path/to/ctags/executable")
-;;    (add-hook 'org-mode-hook
-;;      (lambda ()
-;;        (define-key org-mode-map "\C-co" 'org-ctags-find-tag-interactive)))
-;;
-;; By default, with org-ctags loaded, org will first try and visit the tag
-;; with the same name as the link; then, if unsuccessful, ask the user if
-;; he/she wants to rebuild the 'TAGS' database and try again; then ask if
-;; the user wishes to append 'tag' as a new toplevel heading at the end of
-;; the buffer; and finally, defer to org's default behavior which is to
-;; search the entire text of the current buffer for 'tag'.
-;;
-;; This behavior can be modified by changing the value of
-;; ORG-CTAGS-OPEN-LINK-FUNCTIONS. For example I have the following in my
-;; .emacs, which describes the same behavior as the above paragraph with
-;; one difference:
-;;
-;; (setq org-ctags-open-link-functions
-;;       '(org-ctags-find-tag
-;;         org-ctags-ask-rebuild-tags-file-then-find-tag
-;;         org-ctags-ask-append-topic
-;;         org-ctags-fail-silently))  ; <-- prevents org default behavior
-;;
-;;
-;; Usage
-;; =====
-;;
-;; When you click on a link "[[foo]]" and org cannot find a matching "<<foo>>"
-;; in the current buffer, the tags facility will take over.  The file TAGS in
-;; the active directory is examined to see if the tags facility knows about
-;; "<<foo>>" in any other files.  If it does, the matching file will be opened
-;; and the cursor will jump to the position of "<<foo>>" in that file.
-;;
-;; User-visible functions:
-;; - `org-ctags-find-tag-interactive': type a tag (plain link) name and visit
-;;   it.  With autocompletion.  Bound to ctrl-O in the above setup.
-;; - All the etags functions should work.  These include:
-;;
-;;      M-.    `find-tag' -- finds the tag at point
-;;
-;;      C-M-.  find-tag based on regular expression
-;;
-;;      M-x tags-search RET -- like C-M-. but searches through ENTIRE TEXT
-;;             of ALL the files referenced in the TAGS file.  A quick way to
-;;             search through an entire 'project'.
-;;
-;;      M-*    "go back" from a tag jump.  Like `org-mark-ring-goto'.
-;;             You may need to bind this key yourself with (eg)
-;;             (global-set-key (kbd "<M-kp-multiply>") 'pop-tag-mark)
-;;
-;;      (see etags chapter in Emacs manual for more)
-;;
-;;
-;; Keeping the TAGS file up to date
-;; ================================
-;;
-;; Tags mode has no way of knowing that you have created new tags by
-;; typing in your Org buffer.  New tags make it into the TAGS file in
-;; 3 ways:
-;;
-;; 1. You re-run (org-ctags-create-tags "directory") to rebuild the file.
-;; 2. You put the function `org-ctags-ask-rebuild-tags-file-then-find-tag' in
-;;    your `org-open-link-functions' list, as is done in the setup
-;;    above.  This will cause the TAGS file to be rebuilt whenever a link
-;;    cannot be found.  This may be slow with large file collections however.
-;; 3. You run the following from the command line (all 1 line):
-;;
-;;      ctags --langdef=orgmode --langmap=orgmode:.org
-;;        --regex-orgmode="/<<([^>]+)>>/\1/d,definition/"
-;;          -f /your/path/TAGS -e -R /your/path/*.org
-;;
-;; If you are paranoid, you might want to run (org-ctags-create-tags
-;; "/path/to/org/files") at startup, by including the following toplevel form
-;; in .emacs.  However this can cause a pause of several seconds if ctags has
-;; to scan lots of files.
-;;
-;;     (progn
-;;       (message "-- rebuilding tags tables...")
-;;       (mapc 'org-ctags-create-tags tags-table-list))
-
-;;; Code:
-
-(require 'org)
-
-(defgroup org-ctags nil
-  "Options concerning use of ctags within org mode."
-  :tag "Org-Ctags"
-  :group 'org-link)
-
-(defvar org-ctags-enabled-p t
-  "Activate ctags support in org mode?")
-
-(defvar org-ctags-tag-regexp "/<<([^>]+)>>/\\1/d,definition/"
-  "Regexp expression used by ctags external program.
-The regexp matches tag destinations in Org files.
-Format is: /REGEXP/TAGNAME/FLAGS,TAGTYPE/
-See the ctags documentation for more information.")
-
-(defcustom org-ctags-path-to-ctags
-  (if (executable-find "ctags-exuberant") "ctags-exuberant" "ctags")
-  "Name of the ctags executable file."
-  :group 'org-ctags
-  :version "24.1"
-  :type 'file)
-
-(defcustom org-ctags-open-link-functions
-  '(org-ctags-find-tag
-    org-ctags-ask-rebuild-tags-file-then-find-tag
-    org-ctags-ask-append-topic)
-  "List of functions to be prepended to ORG-OPEN-LINK-FUNCTIONS when ORG-CTAGS is active."
-  :group 'org-ctags
-  :version "24.1"
-  :type 'hook
-  :options '(org-ctags-find-tag
-             org-ctags-ask-rebuild-tags-file-then-find-tag
-             org-ctags-rebuild-tags-file-then-find-tag
-             org-ctags-ask-append-topic
-             org-ctags-append-topic
-             org-ctags-ask-visit-buffer-or-file
-             org-ctags-visit-buffer-or-file
-             org-ctags-fail-silently))
-
-
-(defvar org-ctags-tag-list nil
-  "List of all tags in the active TAGS file.
-Created as a local variable in each buffer.")
-
-(defcustom org-ctags-new-topic-template
-  "* <<%t>>\n\n\n\n\n\n"
-  "Text to insert when creating a new org file via opening a hyperlink.
-The following patterns are replaced in the string:
-    `%t' - replaced with the capitalized title of the hyperlink"
-  :group 'org-ctags
-  :version "24.1"
-  :type 'string)
-
-
-(add-hook 'org-mode-hook
-          (lambda ()
-            (when (and org-ctags-enabled-p
-                       (buffer-file-name))
-              ;; Make sure this file's directory is added to default
-              ;; directories in which to search for tags.
-              (let ((tags-filename
-                     (expand-file-name
-                      (concat (file-name-directory (buffer-file-name))
-                              "/TAGS"))))
-                (when (file-exists-p tags-filename)
-                  (visit-tags-table tags-filename))))))
-
-
-(defadvice visit-tags-table (after org-ctags-load-tag-list activate compile)
-  (when (and org-ctags-enabled-p tags-file-name)
-    (setq-local org-ctags-tag-list
-		(org-ctags-all-tags-in-current-tags-table))))
-
-
-(defun org-ctags-enable ()
-  (put 'org-mode 'find-tag-default-function 'org-ctags-find-tag-at-point)
-  (setq org-ctags-enabled-p t)
-  (dolist (fn org-ctags-open-link-functions)
-    (add-hook 'org-open-link-functions fn t)))
-
-
-;;; General utility functions.  ===============================================
-;; These work outside org-ctags mode.
-
-(defun org-ctags-get-filename-for-tag (tag)
-  "TAG is a string.  Search the active TAGS file for a matching tag.
-If the tag is found, return a list containing the filename, line number, and
-buffer position where the tag is found."
-  (interactive "sTag: ")
-  (unless tags-file-name
-    (call-interactively (visit-tags-table)))
-  (save-excursion
-    (visit-tags-table-buffer 'same)
-    (when tags-file-name
-      (with-current-buffer (get-file-buffer tags-file-name)
-        (goto-char (point-min))
-        (cond
-         ((re-search-forward (format "^.*%s\\([0-9]+\\),\\([0-9]+\\)$"
-                                     (regexp-quote tag)) nil t)
-          (let ((line (string-to-number (match-string 1)))
-                (pos (string-to-number (match-string 2))))
-            (cond
-             ((re-search-backward "\n\\(.*\\),[0-9]+\n")
-              (list (match-string 1) line pos))
-             (t              ; can't find a file name preceding the matched
-					; tag??
-              (error "Malformed TAGS file: %s" (buffer-name))))))
-         (t                               ; tag not found
-          nil))))))
-
-
-(defun org-ctags-all-tags-in-current-tags-table ()
-  "Read all tags defined in the active TAGS file, into a list of strings.
-Return the list."
-  (interactive)
-  (let ((taglist nil))
-    (unless tags-file-name
-      (call-interactively (visit-tags-table)))
-    (save-excursion
-      (visit-tags-table-buffer 'same)
-      (with-current-buffer (get-file-buffer tags-file-name)
-        (goto-char (point-min))
-        (while (re-search-forward "^.*\\(.*\\)\\([0-9]+\\),\\([0-9]+\\)$"
-                                  nil t)
-          (push (substring-no-properties (match-string 1)) taglist)))
-      taglist)))
-
-
-(defun org-ctags-string-search-and-replace (search replace string)
-  "Replace all instances of SEARCH with REPLACE in STRING."
-  (replace-regexp-in-string (regexp-quote search) replace string t t))
-
-
-;;; Internal functions =======================================================
-
-
-(defun org-ctags-open-file (name &optional title)
-  "Visit or create a file called `NAME.org', and insert a new topic.
-The new topic will be titled NAME (or TITLE if supplied)."
-  (interactive "sFile name: ")
-  (condition-case v
-      (progn
-	(org-open-file name t)
-	(message "Opened file OK")
-	(goto-char (point-max))
-	(insert (org-ctags-string-search-and-replace
-		 "%t" (capitalize (or title name))
-		 org-ctags-new-topic-template))
-	(message "Inserted new file text OK")
-	(org-mode-restart))
-    (error (error "Error %S in org-ctags-open-file" v))))
-
-
-;;;; Misc interoperability with etags system =================================
-
-
-(defadvice xref-find-definitions
-    (before org-ctags-set-org-mark-before-finding-tag activate compile)
-  "Before trying to find a tag, save our current position on org mark ring."
-  (save-excursion
-    (when (and (derived-mode-p 'org-mode) org-ctags-enabled-p)
-      (org-mark-ring-push))))
-
-
-
-(defun org-ctags-find-tag-at-point ()
-  "Determine default tag to search for, based on text at point.
-If there is no plausible default, return nil."
-  (let (from to bound)
-    (when (or (ignore-errors
-		;; Look for hyperlink around `point'.
-		(save-excursion
-		  (search-backward "[[") (setq from (+ 2 (point))))
-		(save-excursion
-                  (goto-char from)
-		  (search-forward "]") (setq to (- (point) 1)))
-		(and (> to from) (>= (point) from) (<= (point) to)))
-              (progn
-		;; Look at text around `point'.
-		(save-excursion
-		  (skip-syntax-backward "w_") (setq from (point)))
-		(save-excursion
-		  (skip-syntax-forward "w_") (setq to (point)))
-		(> to from))
-	      ;; Look between `line-beginning-position' and `point'.
-	      (save-excursion
-		(and (setq bound (line-beginning-position))
-		     (skip-syntax-backward "^w_" bound)
-		     (> (setq to (point)) bound)
-		     (skip-syntax-backward "w_")
-		     (setq from (point))))
-	      ;; Look between `point' and `line-end-position'.
-	      (save-excursion
-		(and (setq bound (line-end-position))
-		     (skip-syntax-forward "^w_" bound)
-		     (< (setq from (point)) bound)
-		     (skip-syntax-forward "w_")
-		     (setq to (point)))))
-      (buffer-substring-no-properties from to))))
-
-
-;;; Functions for use with 'org-open-link-functions' hook =================
-
-
-(defun org-ctags-find-tag (name)
-  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
-Look for a tag called `NAME' in the current TAGS table.  If it is found,
-visit the file and location where the tag is found."
-  (interactive "sTag: ")
-  (let ((old-buf (current-buffer))
-        (old-pnt (point-marker))
-        (old-mark (copy-marker (mark-marker))))
-    (condition-case nil
-        (progn (xref-find-definitions name)
-               t)
-      (error
-       ;; only restore old location if find-tag raises error
-       (set-buffer old-buf)
-       (goto-char old-pnt)
-       (set-marker (mark-marker) old-mark)
-       nil))))
-
-
-(defun org-ctags-visit-buffer-or-file (name &optional create)
-  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
-Visit buffer named `NAME.org'.  If there is no such buffer, visit the file
-with the same name if it exists.  If the file does not exist, then behavior
-depends on the value of CREATE.
-
-If CREATE is nil (default), then return nil.  Do not create a new file.
-If CREATE is t, create the new file and visit it.
-If CREATE is the symbol `ask', then ask the user if they wish to create
-the new file."
-  (interactive)
-  (let ((filename (concat (substitute-in-file-name
-                           (expand-file-name name))
-                          ".org")))
-    (cond
-     ((get-buffer (concat name ".org"))
-      ;; Buffer is already open
-      (pop-to-buffer-same-window (get-buffer (concat name ".org"))))
-     ((file-exists-p filename)
-      ;; File exists but is not open --> open it
-      (message "Opening existing org file `%S'..."
-               filename)
-      (org-open-file filename t))
-     ((or (eql create t)
-          (and (eql create 'ask)
-               (y-or-n-p (format-message
-			  "File `%s.org' not found; create?" name))))
-      (org-ctags-open-file filename name))
-     (t ;; File does not exist, and we don't want to create it.
-      nil))))
-
-
-(defun org-ctags-ask-visit-buffer-or-file (name)
-  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
-Wrapper for org-ctags-visit-buffer-or-file, which ensures the user is
-asked before creating a new file."
-  (org-ctags-visit-buffer-or-file name 'ask))
-
-
-(defun org-ctags-append-topic (name &optional narrowp)
-  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
-Append a new toplevel heading to the end of the current buffer.  The
-heading contains NAME surrounded by <<angular brackets>>, thus making
-the heading a destination for the tag `NAME'."
-  (interactive "sTopic: ")
-  (widen)
-  (goto-char (point-max))
-  (newline 2)
-  (message "Adding topic in buffer %s" (buffer-name))
-  (insert (org-ctags-string-search-and-replace
-           "%t" (capitalize name) org-ctags-new-topic-template))
-  (backward-char 4)
-  (end-of-line)
-  (forward-line 2)
-  (when narrowp
-    ;;(org-tree-to-indirect-buffer 1)  ;; opens new frame
-    (org-narrow-to-subtree))
-  t)
-
-
-(defun org-ctags-ask-append-topic (name &optional narrowp)
-  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
-Wrapper for org-ctags-append-topic, which first asks the user if they want
-to append a new topic."
-  (if (y-or-n-p (format-message
-		 "Topic `%s' not found; append to end of buffer?" name))
-      (org-ctags-append-topic name narrowp)
-    nil))
-
-
-(defun org-ctags-rebuild-tags-file-then-find-tag (name)
-  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
-Like ORG-CTAGS-FIND-TAG, but calls the external ctags program first,
-to rebuild (update) the TAGS file."
-  (unless tags-file-name
-    (call-interactively (visit-tags-table)))
-  (when (buffer-file-name)
-    (org-ctags-create-tags))
-  (org-ctags-find-tag name))
-
-
-(defun org-ctags-ask-rebuild-tags-file-then-find-tag (name)
-  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
-Wrapper for org-ctags-rebuild-tags-file-then-find-tag."
-  (if (and (buffer-file-name)
-	   (y-or-n-p
-	    (format-message
-	     "Tag `%s' not found.  Rebuild table `%s/TAGS' and look again?"
-	     name
-	     (file-name-directory (buffer-file-name)))))
-      (org-ctags-rebuild-tags-file-then-find-tag name)
-    nil))
-
-
-(defun org-ctags-fail-silently (_name)
-  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
-Put as the last function in the list if you want to prevent Org's
-default behavior of free text search."
-  t)
-
-
-;;; User-visible functions ===================================================
-
-
-(defun org-ctags-create-tags (&optional directory-name)
-  "(Re)create tags file in the directory of the active buffer.
-The file will contain tag definitions for all the files in the
-directory and its subdirectories which are recognized by ctags.
-This will include files ending in `.org' as well as most other
-source files (.C, .H, .EL, .LISP, etc).  All the resulting tags
-end up in one file, called TAGS, located in the directory.  This
-function may take several seconds to finish if the directory or
-its subdirectories contain large numbers of taggable files."
-  (interactive)
-  (cl-assert (buffer-file-name))
-  (let ((dir-name (or directory-name
-                      (file-name-directory (buffer-file-name))))
-        (exitcode nil))
-    (save-excursion
-      (setq exitcode
-            (shell-command
-             (format (concat "%s --langdef=orgmode --langmap=orgmode:.org "
-                             "--regex-orgmode=\"%s\" -f \"%s\" -e -R \"%s\"")
-                     org-ctags-path-to-ctags
-                     org-ctags-tag-regexp
-                     (expand-file-name (concat dir-name "/TAGS"))
-                     (expand-file-name (concat dir-name "/*")))))
-      (cond
-       ((eql 0 exitcode)
-        (setq-local org-ctags-tag-list
-		    (org-ctags-all-tags-in-current-tags-table)))
-       (t
-        ;; This seems to behave differently on Linux, so just ignore
-        ;; error codes for now
-        ;;(error "Calling ctags executable resulted in error code: %s"
-        ;;       exitcode)
-        nil)))))
-
-
-(defvar org-ctags-find-tag-history nil
-  "History of tags visited by org-ctags-find-tag-interactive.")
-
-(defun org-ctags-find-tag-interactive ()
-  "Prompt for the name of a tag, with autocompletion, then visit the named tag.
-Uses `ido-mode' if available.
-If the user enters a string that does not match an existing tag, create
-a new topic."
-  (interactive)
-  (let* ((completing-read-fn (if (fboundp 'ido-completing-read)
-                                 'ido-completing-read
-                               'completing-read))
-         (tag (funcall completing-read-fn "Topic: " org-ctags-tag-list
-                       nil 'confirm nil 'org-ctags-find-tag-history)))
-    (when tag
-      (cond
-       ((member tag org-ctags-tag-list)
-        ;; Existing tag
-        (push tag org-ctags-find-tag-history)
-        (xref-find-definitions tag))
-       (t
-        ;; New tag
-        (run-hook-with-args-until-success
-	 'org-open-link-functions tag))))))
-
-
-(org-ctags-enable)
-
-(provide 'org-ctags)
-
-;;; org-ctags.el ends here
diff --git a/elpa/org-9.1.14/org-ctags.elc b/elpa/org-9.1.14/org-ctags.elc
deleted file mode 100644
index a0d3460..0000000
--- a/elpa/org-9.1.14/org-ctags.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-datetree.el b/elpa/org-9.1.14/org-datetree.el
deleted file mode 100644
index d00bad2..0000000
--- a/elpa/org-9.1.14/org-datetree.el
+++ /dev/null
@@ -1,248 +0,0 @@
-;;; org-datetree.el --- Create date entries in a tree -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains code to create entries in a tree where the top-level
-;; nodes represent years, the level 2 nodes represent the months, and the
-;; level 1 entries days.
-
-;;; Code:
-
-(require 'org)
-
-(defvar org-datetree-base-level 1
-  "The level at which years should be placed in the date tree.
-This is normally one, but if the buffer has an entry with a
-DATE_TREE (or WEEK_TREE for ISO week entries) property (any
-value), the date tree will become a subtree under that entry, so
-the base level will be properly adjusted.")
-
-(defcustom org-datetree-add-timestamp nil
-  "When non-nil, add a time stamp matching date of entry.
-Added time stamp is active unless value is `inactive'."
-  :group 'org-capture
-  :version "24.3"
-  :type '(choice
-	  (const :tag "Do not add a time stamp" nil)
-	  (const :tag "Add an inactive time stamp" inactive)
-	  (const :tag "Add an active time stamp" active)))
-
-;;;###autoload
-(defun org-datetree-find-date-create (d &optional keep-restriction)
-  "Find or create an entry for date D.
-If KEEP-RESTRICTION is non-nil, do not widen the buffer.
-When it is nil, the buffer will be widened to make sure an existing date
-tree can be found.  If it is the symbol `subtree-at-point', then the tree
-will be built under the headline at point."
-  (setq-local org-datetree-base-level 1)
-  (save-restriction
-    (if (eq keep-restriction 'subtree-at-point)
-	(progn
-	  (unless (org-at-heading-p) (error "Not at heading"))
-	  (widen)
-	  (org-narrow-to-subtree)
-	  (setq-local org-datetree-base-level
-		      (org-get-valid-level (org-current-level) 1)))
-      (unless keep-restriction (widen))
-      ;; Support the old way of tree placement, using a property
-      (let ((prop (org-find-property "DATE_TREE")))
-	(when prop
-	  (goto-char prop)
-	  (setq-local org-datetree-base-level
-		      (org-get-valid-level (org-current-level) 1))
-	  (org-narrow-to-subtree))))
-    (goto-char (point-min))
-    (let ((year (calendar-extract-year d))
-	  (month (calendar-extract-month d))
-	  (day (calendar-extract-day d)))
-      (org-datetree--find-create
-       "^\\*+[ \t]+\\([12][0-9]\\{3\\}\\)\\(\\s-*?\
-\\([ \t]:[[:alnum:]:_@#%%]+:\\)?\\s-*$\\)"
-       year)
-      (org-datetree--find-create
-       "^\\*+[ \t]+%d-\\([01][0-9]\\) \\w+$"
-       year month)
-      (org-datetree--find-create
-       "^\\*+[ \t]+%d-%02d-\\([0123][0-9]\\) \\w+$"
-       year month day))))
-
-;;;###autoload
-(defun org-datetree-find-iso-week-create (d &optional keep-restriction)
-  "Find or create an ISO week entry for date D.
-Compared to `org-datetree-find-date-create' this function creates
-entries ordered by week instead of months.
-When it is nil, the buffer will be widened to make sure an existing date
-tree can be found.  If it is the symbol `subtree-at-point', then the tree
-will be built under the headline at point."
-  (setq-local org-datetree-base-level 1)
-  (save-restriction
-    (if (eq keep-restriction 'subtree-at-point)
-	(progn
-	  (unless (org-at-heading-p) (error "Not at heading"))
-	  (widen)
-	  (org-narrow-to-subtree)
-	  (setq-local org-datetree-base-level
-		      (org-get-valid-level (org-current-level) 1)))
-      (unless keep-restriction (widen))
-      ;; Support the old way of tree placement, using a property
-      (let ((prop (org-find-property "WEEK_TREE")))
-	(when prop
-	  (goto-char prop)
-	  (setq-local org-datetree-base-level
-		      (org-get-valid-level (org-current-level) 1))
-	  (org-narrow-to-subtree))))
-    (goto-char (point-min))
-    (require 'cal-iso)
-    (let* ((year (calendar-extract-year d))
-	   (month (calendar-extract-month d))
-	   (day (calendar-extract-day d))
-	   (time (encode-time 0 0 0 day month year))
-	   (iso-date (calendar-iso-from-absolute
-		      (calendar-absolute-from-gregorian d)))
-	   (weekyear (nth 2 iso-date))
-	   (week (nth 0 iso-date)))
-      ;; ISO 8601 week format is %G-W%V(-%u)
-      (org-datetree--find-create
-       "^\\*+[ \t]+\\([12][0-9]\\{3\\}\\)\\(\\s-*?\
-\\([ \t]:[[:alnum:]:_@#%%]+:\\)?\\s-*$\\)"
-       weekyear nil nil
-       (format-time-string "%G" time))
-      (org-datetree--find-create
-       "^\\*+[ \t]+%d-W\\([0-5][0-9]\\)$"
-       weekyear week nil
-       (format-time-string "%G-W%V" time))
-      ;; For the actual day we use the regular date instead of ISO week.
-      (org-datetree--find-create
-       "^\\*+[ \t]+%d-%02d-\\([0123][0-9]\\) \\w+$"
-       year month day))))
-
-(defun org-datetree--find-create (regex year &optional month day insert)
-  "Find the datetree matched by REGEX for YEAR, MONTH, or DAY.
-REGEX is passed to `format' with YEAR, MONTH, and DAY as
-arguments.  Match group 1 is compared against the specified date
-component.  If INSERT is non-nil and there is no match then it is
-inserted into the buffer."
-  (when (or month day)
-    (org-narrow-to-subtree))
-  (let ((re (format regex year month day))
-	match)
-    (goto-char (point-min))
-    (while (and (setq match (re-search-forward re nil t))
-		(goto-char (match-beginning 1))
-		(< (string-to-number (match-string 1)) (or day month year))))
-    (cond
-     ((not match)
-      (goto-char (point-max))
-      (unless (bolp) (insert "\n"))
-      (org-datetree-insert-line year month day insert))
-     ((= (string-to-number (match-string 1)) (or day month year))
-      (beginning-of-line))
-     (t
-      (beginning-of-line)
-      (org-datetree-insert-line year month day insert)))))
-
-(defun org-datetree-insert-line (year &optional month day text)
-  (delete-region (save-excursion (skip-chars-backward " \t\n") (point)) (point))
-  (insert "\n" (make-string org-datetree-base-level ?*) " \n")
-  (backward-char)
-  (when month (org-do-demote))
-  (when day (org-do-demote))
-  (if text
-      (insert text)
-    (insert (format "%d" year))
-    (when month
-      (insert
-       (if day
-	   (format-time-string "-%m-%d %A" (encode-time 0 0 0 day month year))
-	 (format-time-string "-%m %B" (encode-time 0 0 0 1 month year))))))
-  (when (and day org-datetree-add-timestamp)
-    (save-excursion
-      (insert "\n")
-      (org-indent-line)
-      (org-insert-time-stamp
-       (encode-time 0 0 0 day month year)
-       nil
-       (eq org-datetree-add-timestamp 'inactive))))
-  (beginning-of-line))
-
-(defun org-datetree-file-entry-under (txt d)
-  "Insert a node TXT into the date tree under date D."
-  (org-datetree-find-date-create d)
-  (let ((level (org-get-valid-level (funcall outline-level) 1)))
-    (org-end-of-subtree t t)
-    (org-back-over-empty-lines)
-    (org-paste-subtree level txt)))
-
-(defun org-datetree-cleanup ()
-  "Make sure all entries in the current tree are under the correct date.
-It may be useful to restrict the buffer to the applicable portion
-before running this command, even though the command tries to be smart."
-  (interactive)
-  (goto-char (point-min))
-  (let ((dre (concat "\\<" org-deadline-string "\\>[ \t]*\\'"))
-	(sre (concat "\\<" org-scheduled-string "\\>[ \t]*\\'")))
-    (while (re-search-forward org-ts-regexp nil t)
-      (catch 'next
-	(let ((tmp (buffer-substring
-		    (max (line-beginning-position)
-			 (- (match-beginning 0) org-ds-keyword-length))
-		    (match-beginning 0))))
-	  (when (or (string-suffix-p "-" tmp)
-		    (string-match dre tmp)
-		    (string-match sre tmp))
-	    (throw 'next nil))
-	  (let* ((dct (decode-time (org-time-string-to-time (match-string 0))))
-		 (date (list (nth 4 dct) (nth 3 dct) (nth 5 dct)))
-		 (year (nth 2 date))
-		 (month (car date))
-		 (day (nth 1 date))
-		 (pos (point))
-		 (hdl-pos (progn (org-back-to-heading t) (point))))
-	    (unless (org-up-heading-safe)
-	      ;; No parent, we are not in a date tree.
-	      (goto-char pos)
-	      (throw 'next nil))
-	    (unless (looking-at "\\*+[ \t]+[0-9]+-[0-1][0-9]-[0-3][0-9]")
-	      ;; Parent looks wrong, we are not in a date tree.
-	      (goto-char pos)
-	      (throw 'next nil))
-	    (when (looking-at (format "\\*+[ \t]+%d-%02d-%02d" year month day))
-	      ;; At correct date already, do nothing.
-	      (goto-char pos)
-	      (throw 'next nil))
-	    ;; OK, we need to refile this entry.
-	    (goto-char hdl-pos)
-	    (org-cut-subtree)
-	    (save-excursion
-	      (save-restriction
-		(org-datetree-file-entry-under (current-kill 0) date)))))))))
-
-(provide 'org-datetree)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-datetree.el ends here
diff --git a/elpa/org-9.1.14/org-datetree.elc b/elpa/org-9.1.14/org-datetree.elc
deleted file mode 100644
index 417a2e1..0000000
--- a/elpa/org-9.1.14/org-datetree.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-docview.el b/elpa/org-9.1.14/org-docview.el
deleted file mode 100644
index a467212..0000000
--- a/elpa/org-9.1.14/org-docview.el
+++ /dev/null
@@ -1,103 +0,0 @@
-;;; org-docview.el --- Support for links to doc-view-mode buffers -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: Jan Böcker <jan.boecker at jboecker dot de>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements links to open files in doc-view-mode.
-;; Org mode loads this module by default - if this is not what you want,
-;; configure the variable `org-modules'.
-
-;; The links take the form
-;;
-;;    docview:<file path>::<page number>
-;;
-;; for example: [[docview:~/.elisp/org/doc/org.pdf::1][Org-Mode Manual]]
-;;
-;; Autocompletion for inserting links is supported; you will be
-;; prompted for a file and a page number.
-;;
-;; If you use org-store-link in a doc-view mode buffer, the stored
-;; link will point to the current page.
-
-;;; Code:
-
-
-(require 'org)
-(require 'doc-view)
-
-(declare-function doc-view-goto-page "doc-view" (page))
-(declare-function image-mode-window-get "image-mode" (prop &optional winprops))
-
-(org-link-set-parameters "docview"
-			 :follow #'org-docview-open
-			 :export #'org-docview-export
-			 :store #'org-docview-store-link)
-
-(defun org-docview-export (link description format)
-  "Export a docview link from Org files."
-  (let* ((path (if (string-match "\\(.+\\)::.+" link) (match-string 1 link)
-		 link))
-         (desc (or description link)))
-    (when (stringp path)
-      (setq path (org-link-escape (expand-file-name path)))
-      (cond
-       ((eq format 'html) (format "<a href=\"%s\">%s</a>" path desc))
-       ((eq format 'latex) (format "\\href{%s}{%s}" path desc))
-       ((eq format 'ascii) (format "%s (%s)" desc path))
-       (t path)))))
-
-(defun org-docview-open (link)
-  (string-match "\\(.*?\\)\\(?:::\\([0-9]+\\)\\)?$" link)
-  (let ((path (match-string 1 link))
-	(page (and (match-beginning 2)
-		   (string-to-number (match-string 2 link)))))
-    ;; Let Org mode open the file (in-emacs = 1) to ensure
-    ;; org-link-frame-setup is respected.
-    (org-open-file path 1)
-    (when page (doc-view-goto-page page))))
-
-(defun org-docview-store-link ()
-  "Store a link to a docview buffer."
-  (when (eq major-mode 'doc-view-mode)
-    ;; This buffer is in doc-view-mode
-    (let* ((path buffer-file-name)
-	   (page (image-mode-window-get 'page))
-	   (link (concat "docview:" path "::" (number-to-string page))))
-      (org-store-link-props
-       :type "docview"
-       :link link
-       :description path))))
-
-(defun org-docview-complete-link ()
-  "Use the existing file name completion for file.
-Links to get the file name, then ask the user for the page number
-and append it."
-  (concat (replace-regexp-in-string "^file:" "docview:" (org-file-complete-link))
-	  "::"
-	  (read-from-minibuffer "Page:" "1")))
-
-
-(provide 'org-docview)
-
-;;; org-docview.el ends here
diff --git a/elpa/org-9.1.14/org-docview.elc b/elpa/org-9.1.14/org-docview.elc
deleted file mode 100644
index 17e2db0..0000000
--- a/elpa/org-9.1.14/org-docview.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-duration.el b/elpa/org-9.1.14/org-duration.el
deleted file mode 100644
index 1c962ba..0000000
--- a/elpa/org-9.1.14/org-duration.el
+++ /dev/null
@@ -1,448 +0,0 @@
-;;; org-duration.el --- Library handling durations   -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This library provides tools to manipulate durations.  A duration
-;; can have multiple formats:
-;;
-;;   - 3:12
-;;   - 1:23:45
-;;   - 1y 3d 3h 4min
-;;   - 3d 13:35
-;;   - 2.35h
-;;
-;; More accurately, it consists of numbers and units, as defined in
-;; variable `org-duration-units', separated with white spaces, and
-;; a "H:MM" or "H:MM:SS" part.  White spaces are tolerated between the
-;; number and its relative unit.  Variable `org-duration-format'
-;; controls durations default representation.
-;;
-;; The library provides functions allowing to convert a duration to,
-;; and from, a number of minutes: `org-duration-to-minutes' and
-;; `org-duration-from-minutes'.  It also provides two lesser tools:
-;; `org-duration-p', and `org-duration-h:mm-only-p'.
-;;
-;; Users can set the number of minutes per unit, or define new units,
-;; in `org-duration-units'.  The library also supports canonical
-;; duration, i.e., a duration that doesn't depend on user's settings,
-;; through optional arguments.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org-macs)
-(declare-function org-trim "org" (s &optional keep-lead))
-
-
-;;; Public variables
-
-(defconst org-duration-canonical-units
-  `(("min" . 1)
-    ("h" . 60)
-    ("d" . ,(* 60 24)))
-  "Canonical time duration units.
-See `org-duration-units' for details.")
-
-(defcustom org-duration-units
-  `(("min" . 1)
-    ("h" . 60)
-    ("d" . ,(* 60 24))
-    ("w" . ,(* 60 24 7))
-    ("m" . ,(* 60 24 30))
-    ("y" . ,(* 60 24 365.25)))
-  "Conversion factor to minutes for a duration.
-
-Each entry has the form (UNIT . MODIFIER).
-
-In a duration string, a number followed by UNIT is multiplied by
-the specified number of MODIFIER to obtain a duration in minutes.
-
-For example, the following value
-
-  \\=`((\"min\" . 1)
-    (\"h\" . 60)
-    (\"d\" . ,(* 60 8))
-    (\"w\" . ,(* 60 8 5))
-    (\"m\" . ,(* 60 8 5 4))
-    (\"y\" . ,(* 60 8 5 4 10)))
-
-is meaningful if you work an average of 8 hours per day, 5 days
-a week, 4 weeks a month and 10 months a year.
-
-When setting this variable outside the Customize interface, make
-sure to call the following command:
-
-  \\[org-duration-set-regexps]"
-  :group 'org-agenda
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :set (lambda (var val) (set-default var val) (org-duration-set-regexps))
-  :initialize 'custom-initialize-changed
-  :type '(choice
-	  (const :tag "H:MM" h:mm)
-	  (const :tag "H:MM:SS" h:mm:ss)
-	  (alist :key-type (string :tag "Unit")
-		 :value-type (number :tag "Modifier"))))
-
-(defcustom org-duration-format '(("d" . nil) (special . h:mm))
-  "Format definition for a duration.
-
-The value can be set to, respectively, the symbols `h:mm:ss' or
-`h:mm', which means a duration is expressed as, respectively,
-a \"H:MM:SS\" or \"H:MM\" string.
-
-Alternatively, the value can be a list of entries following the
-pattern:
-
-  (UNIT . REQUIRED?)
-
-UNIT is a unit string, as defined in `org-duration-units'.  The
-time duration is formatted using only the time components that
-are specified here.
-
-Units with a zero value are skipped, unless REQUIRED? is non-nil.
-In that case, the unit is always used.
-
-Eventually, the list can contain one of the following special
-entries:
-
-  (special . h:mm)
-  (special . h:mm:ss)
-
-    Units shorter than an hour are ignored.  The hours and
-    minutes part of the duration is expressed unconditionally
-    with H:MM, or H:MM:SS, pattern.
-
-  (special . PRECISION)
-
-    A duration is expressed with a single unit, PRECISION being
-    the number of decimal places to show.  The unit chosen is the
-    first one required or with a non-zero integer part.  If there
-    is no such unit, the smallest one is used.
-
-For example,
-
-   ((\"d\" . nil) (\"h\" . t) (\"min\" . t))
-
-means a duration longer than a day is expressed in days, hours
-and minutes, whereas a duration shorter than a day is always
-expressed in hours and minutes, even when shorter than an hour.
-
-On the other hand, the value
-
-  ((\"d\" . nil) (\"min\" . nil))
-
-means a duration longer than a day is expressed in days and
-minutes, whereas a duration shorter than a day is expressed
-entirely in minutes, even when longer than an hour.
-
-The following format
-
-  ((\"d\" . nil) (special . h:mm))
-
-means that any duration longer than a day is expressed with both
-a \"d\" unit and a \"H:MM\" part, whereas a duration shorter than
-a day is expressed only as a \"H:MM\" string.
-
-Eventually,
-
-  ((\"d\" . nil) (\"h\" . nil) (special . 2))
-
-expresses a duration longer than a day as a decimal number, with
-a 2-digits fractional part, of \"d\" unit.  A duration shorter
-than a day uses \"h\" unit instead."
-  :group 'org-time
-  :group 'org-clock
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type '(choice
-	  (const :tag "Use H:MM" h:mm)
-	  (const :tag "Use H:MM:SS" h:mm:ss)
-	  (repeat :tag "Use units"
-		  (choice
-		   (cons :tag "Use units"
-			 (string :tag "Unit")
-			 (choice (const :tag "Skip when zero" nil)
-				 (const :tag "Always used" t)))
-		   (cons :tag "Use a single decimal unit"
-			 (const special)
-			 (integer :tag "Number of decimals"))
-		   (cons :tag "Use both units and H:MM"
-			 (const special)
-			 (const h:mm))
-		   (cons :tag "Use both units and H:MM:SS"
-			 (const special)
-			 (const h:mm:ss))))))
-
-
-;;; Internal variables and functions
-
-(defconst org-duration--h:mm-re
-  "\\`[ \t]*[0-9]+\\(?::[0-9]\\{2\\}\\)\\{1,2\\}[ \t]*\\'"
-  "Regexp matching a duration expressed with H:MM or H:MM:SS format.
-See `org-duration--h:mm:ss-re' to only match the latter.  Hours
-can use any number of digits.")
-
-(defconst org-duration--h:mm:ss-re
-  "\\`[ \t]*[0-9]+\\(?::[0-9]\\{2\\}\\)\\{2\\}[ \t]*\\'"
-  "Regexp matching a duration expressed H:MM:SS format.
-See `org-duration--h:mm-re' to also support H:MM format.  Hours
-can use any number of digits.")
-
-(defvar org-duration--unit-re nil
-  "Regexp matching a duration with an unit.
-Allowed units are defined in `org-duration-units'.  Match group
-1 contains the bare number.  Match group 2 contains the unit.")
-
-(defvar org-duration--full-re nil
-  "Regexp matching a duration expressed with units.
-Allowed units are defined in `org-duration-units'.")
-
-(defvar org-duration--mixed-re nil
-  "Regexp matching a duration expressed with units and H:MM or H:MM:SS format.
-Allowed units are defined in `org-duration-units'.  Match group
-1 contains units part.  Match group 2 contains H:MM or H:MM:SS
-part.")
-
-(defun org-duration--modifier (unit &optional canonical)
-  "Return modifier associated to string UNIT.
-When optional argument CANONICAL is non-nil, refer to
-`org-duration-canonical-units' instead of `org-duration-units'."
-  (or (cdr (assoc unit (if canonical
-			   org-duration-canonical-units
-			 org-duration-units)))
-      (error "Unknown unit: %S" unit)))
-
-
-;;; Public functions
-
-;;;###autoload
-(defun org-duration-set-regexps ()
-  "Set duration related regexps."
-  (interactive)
-  (setq org-duration--unit-re
-	(concat "\\([0-9]+\\(?:\\.[0-9]*\\)?\\)[ \t]*"
-		;; Since user-defined units in `org-duration-units'
-		;; can differ from canonical units in
-		;; `org-duration-canonical-units', include both in
-		;; regexp.
-		(regexp-opt (mapcar #'car (append org-duration-canonical-units
-						  org-duration-units))
-			    t)))
-  (setq org-duration--full-re
-	(format "\\`[ \t]*%s\\(?:[ \t]+%s\\)*[ \t]*\\'"
-		org-duration--unit-re
-		org-duration--unit-re))
-  (setq org-duration--mixed-re
-	(format "\\`[ \t]*\\(?1:%s\\(?:[ \t]+%s\\)*\\)[ \t]+\
-\\(?2:[0-9]+\\(?::[0-9][0-9]\\)\\{1,2\\}\\)[ \t]*\\'"
-		org-duration--unit-re
-		org-duration--unit-re)))
-
-;;;###autoload
-(defun org-duration-p (s)
-  "Non-nil when string S is a time duration."
-  (and (stringp s)
-       (or (string-match-p org-duration--full-re s)
-	   (string-match-p org-duration--mixed-re s)
-	   (string-match-p org-duration--h:mm-re s))))
-
-;;;###autoload
-(defun org-duration-to-minutes (duration &optional canonical)
-  "Return number of minutes of DURATION string.
-
-When optional argument CANONICAL is non-nil, ignore
-`org-duration-units' and use standard time units value.
-
-A bare number is translated into minutes.  The empty string is
-translated into 0.0.
-
-Return value as a float.  Raise an error if duration format is
-not recognized."
-  (cond
-   ((equal duration "") 0.0)
-   ((numberp duration) (float duration))
-   ((string-match-p org-duration--h:mm-re duration)
-    (pcase-let ((`(,hours ,minutes ,seconds)
-		 (mapcar #'string-to-number (split-string duration ":"))))
-      (+ (/ (or seconds 0) 60.0) minutes (* 60 hours))))
-   ((string-match-p org-duration--full-re duration)
-    (let ((minutes 0)
-	  (s 0))
-      (while (string-match org-duration--unit-re duration s)
-	(setq s (match-end 0))
-	(let ((value (string-to-number (match-string 1 duration)))
-	      (unit (match-string 2 duration)))
-	  (cl-incf minutes (* value (org-duration--modifier unit canonical)))))
-      (float minutes)))
-   ((string-match org-duration--mixed-re duration)
-    (let ((units-part (match-string 1 duration))
-	  (hms-part (match-string 2 duration)))
-      (+ (org-duration-to-minutes units-part)
-	 (org-duration-to-minutes hms-part))))
-   ((string-match-p "\\`[0-9]+\\(\\.[0-9]*\\)?\\'" duration)
-    (float (string-to-number duration)))
-   (t (error "Invalid duration format: %S" duration))))
-
-;;;###autoload
-(defun org-duration-from-minutes (minutes &optional fmt canonical)
-  "Return duration string for a given number of MINUTES.
-
-Format duration according to `org-duration-format' or FMT, when
-non-nil.
-
-When optional argument CANONICAL is non-nil, ignore
-`org-duration-units' and use standard time units value.
-
-Raise an error if expected format is unknown."
-  (pcase (or fmt org-duration-format)
-    (`h:mm
-     (let ((minutes (floor minutes)))
-       (format "%d:%02d" (/ minutes 60) (mod minutes 60))))
-    (`h:mm:ss
-     (let* ((whole-minutes (floor minutes))
-	    (seconds (floor (* 60 (- minutes whole-minutes)))))
-       (format "%s:%02d"
-	       (org-duration-from-minutes whole-minutes 'h:mm)
-	       seconds)))
-    ((pred atom) (error "Invalid duration format specification: %S" fmt))
-    ;; Mixed format.  Call recursively the function on both parts.
-    ((and duration-format
-	  (let `(special . ,(and mode (or `h:mm:ss `h:mm)))
-	    (assq 'special duration-format)))
-     (let* ((truncated-format
-	     ;; Remove "special" mode from duration format in order to
-	     ;; recurse properly.  Also remove units smaller or equal
-	     ;; to an hour since H:MM part takes care of it.
-	     (cl-remove-if-not
-	      (lambda (pair)
-		(pcase pair
-		  (`(,(and unit (pred stringp)) . ,_)
-		   (> (org-duration--modifier unit canonical) 60))
-		  (_ nil)))
-	      duration-format))
-	    (min-modifier		;smallest modifier above hour
-	     (and truncated-format
-		  (apply #'min
-			 (mapcar (lambda (p)
-				   (org-duration--modifier (car p) canonical))
-				 truncated-format)))))
-       (if (or (null min-modifier) (< minutes min-modifier))
-	   ;; There is not unit above the hour or the smallest unit
-	   ;; above the hour is too large for the number of minutes we
-	   ;; need to represent.  Use H:MM or H:MM:SS syntax.
-	   (org-duration-from-minutes minutes mode canonical)
-	 ;; Represent minutes above hour using provided units and H:MM
-	 ;; or H:MM:SS below.
-	 (let* ((units-part (* min-modifier (/ (floor minutes) min-modifier)))
-		(minutes-part (- minutes units-part)))
-	   (concat
-	    (org-duration-from-minutes units-part truncated-format canonical)
-	    " "
-	    (org-duration-from-minutes minutes-part mode))))))
-    ;; Units format.
-    (duration-format
-     (let* ((fractional
-	     (let ((digits (cdr (assq 'special duration-format))))
-	       (and digits
-		    (or (wholenump digits)
-			(error "Unknown formatting directive: %S" digits))
-		    (format "%%.%df" digits))))
-	    (selected-units
-	     (sort (cl-remove-if
-		    ;; Ignore special format cells.
-		    (lambda (pair) (pcase pair (`(special . ,_) t) (_ nil)))
-		    duration-format)
-		   (lambda (a b)
-		     (> (org-duration--modifier (car a) canonical)
-			(org-duration--modifier (car b) canonical))))))
-       (cond
-	;; Fractional duration: use first unit that is either required
-	;; or smaller than MINUTES.
-	(fractional
-	 (let* ((unit (car
-		       (or (cl-find-if
-			    (lambda (pair)
-			      (pcase pair
-				(`(,u . ,req?)
-				 (or req?
-				     (<= (org-duration--modifier u canonical)
-					 minutes)))))
-			    selected-units)
-			   ;; Fall back to smallest unit.
-			   (org-last selected-units))))
-		(modifier (org-duration--modifier unit canonical)))
-	   (concat (format fractional (/ (float minutes) modifier)) unit)))
-	;; Otherwise build duration string according to available
-	;; units.
-	((org-string-nw-p
-	  (org-trim
-	   (mapconcat
-	    (lambda (units)
-	      (pcase-let* ((`(,unit . ,required?) units)
-			   (modifier (org-duration--modifier unit canonical)))
-		(cond ((<= modifier minutes)
-		       (let ((value (if (integerp modifier)
-					(/ (floor minutes) modifier)
-				      (floor (/ minutes modifier)))))
-			 (cl-decf minutes (* value modifier))
-			 (format " %d%s" value unit)))
-		      (required? (concat " 0" unit))
-		      (t ""))))
-	    selected-units
-	    ""))))
-	;; No unit can properly represent MINUTES.  Use the smallest
-	;; one anyway.
-	(t
-	 (pcase-let ((`((,unit . ,_)) (last selected-units)))
-	   (concat "0" unit))))))))
-
-;;;###autoload
-(defun org-duration-h:mm-only-p (times)
-  "Non-nil when every duration in TIMES has \"H:MM\" or \"H:MM:SS\" format.
-
-TIMES is a list of duration strings.
-
-Return nil if any duration is expressed with units, as defined in
-`org-duration-units'.  Otherwise, if any duration is expressed
-with \"H:MM:SS\" format, return `h:mm:ss'.  Otherwise, return
-`h:mm'."
-  (let (hms-flag)
-    (catch :exit
-      (dolist (time times)
-	(cond ((string-match-p org-duration--full-re time)
-	       (throw :exit nil))
-	      ((string-match-p org-duration--mixed-re time)
-	       (throw :exit nil))
-	      (hms-flag nil)
-	      ((string-match-p org-duration--h:mm:ss-re time)
-	       (setq hms-flag 'h:mm:ss))))
-      (or hms-flag 'h:mm))))
-
-
-;;; Initialization
-
-(org-duration-set-regexps)
-
-(provide 'org-duration)
-;;; org-duration.el ends here
diff --git a/elpa/org-9.1.14/org-duration.elc b/elpa/org-9.1.14/org-duration.elc
deleted file mode 100644
index 5f93028..0000000
--- a/elpa/org-9.1.14/org-duration.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-element.el b/elpa/org-9.1.14/org-element.el
deleted file mode 100644
index f4452ea..0000000
--- a/elpa/org-9.1.14/org-element.el
+++ /dev/null
@@ -1,5980 +0,0 @@
-;;; org-element.el --- Parser for Org Syntax         -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; See <https://orgmode.org/worg/dev/org-syntax.html> for details about
-;; Org syntax.
-;;
-;; Lisp-wise, a syntax object can be represented as a list.
-;; It follows the pattern (TYPE PROPERTIES CONTENTS), where:
-;;   TYPE is a symbol describing the object.
-;;   PROPERTIES is the property list attached to it.  See docstring of
-;;              appropriate parsing function to get an exhaustive list.
-;;   CONTENTS is a list of syntax objects or raw strings contained
-;;            in the current object, when applicable.
-;;
-;; For the whole document, TYPE is `org-data' and PROPERTIES is nil.
-;;
-;; The first part of this file defines constants for the Org syntax,
-;; while the second one provide accessors and setters functions.
-;;
-;; The next part implements a parser and an interpreter for each
-;; element and object type in Org syntax.
-;;
-;; The following part creates a fully recursive buffer parser.  It
-;; also provides a tool to map a function to elements or objects
-;; matching some criteria in the parse tree.  Functions of interest
-;; are `org-element-parse-buffer', `org-element-map' and, to a lesser
-;; extent, `org-element-parse-secondary-string'.
-;;
-;; The penultimate part is the cradle of an interpreter for the
-;; obtained parse tree: `org-element-interpret-data'.
-;;
-;; The library ends by furnishing `org-element-at-point' function, and
-;; a way to give information about document structure around point
-;; with `org-element-context'.  A cache mechanism is also provided for
-;; these functions.
-
-
-;;; Code:
-
-(require 'org)
-(require 'avl-tree)
-(require 'cl-lib)
-
-
-
-;;; Definitions And Rules
-;;
-;; Define elements, greater elements and specify recursive objects,
-;; along with the affiliated keywords recognized.  Also set up
-;; restrictions on recursive objects combinations.
-;;
-;; `org-element-update-syntax' builds proper syntax regexps according
-;; to current setup.
-
-(defvar org-element-paragraph-separate nil
-  "Regexp to separate paragraphs in an Org buffer.
-In the case of lines starting with \"#\" and \":\", this regexp
-is not sufficient to know if point is at a paragraph ending.  See
-`org-element-paragraph-parser' for more information.")
-
-(defvar org-element--object-regexp nil
-  "Regexp possibly matching the beginning of an object.
-This regexp allows false positives.  Dedicated parser (e.g.,
-`org-export-bold-parser') will take care of further filtering.
-Radio links are not matched by this regexp, as they are treated
-specially in `org-element--object-lex'.")
-
-(defun org-element--set-regexps ()
-  "Build variable syntax regexps."
-  (setq org-element-paragraph-separate
-	(concat "^\\(?:"
-		;; Headlines, inlinetasks.
-		org-outline-regexp "\\|"
-		;; Footnote definitions.
-		"\\[fn:[-_[:word:]]+\\]" "\\|"
-		;; Diary sexps.
-		"%%(" "\\|"
-		"[ \t]*\\(?:"
-		;; Empty lines.
-		"$" "\\|"
-		;; Tables (any type).
-		"|" "\\|"
-		"\\+\\(?:-+\\+\\)+[ \t]*$" "\\|"
-		;; Comments, keyword-like or block-like constructs.
-		;; Blocks and keywords with dual values need to be
-		;; double-checked.
-		"#\\(?: \\|$\\|\\+\\(?:"
-		"BEGIN_\\S-+" "\\|"
-		"\\S-+\\(?:\\[.*\\]\\)?:[ \t]*\\)\\)"
-		"\\|"
-		;; Drawers (any type) and fixed-width areas.  Drawers
-		;; need to be double-checked.
-		":\\(?: \\|$\\|[-_[:word:]]+:[ \t]*$\\)" "\\|"
-		;; Horizontal rules.
-		"-\\{5,\\}[ \t]*$" "\\|"
-		;; LaTeX environments.
-		"\\\\begin{\\([A-Za-z0-9*]+\\)}" "\\|"
-		;; Clock lines.
-		(regexp-quote org-clock-string) "\\|"
-		;; Lists.
-		(let ((term (pcase org-plain-list-ordered-item-terminator
-			      (?\) ")") (?. "\\.") (_ "[.)]")))
-		      (alpha (and org-list-allow-alphabetical "\\|[A-Za-z]")))
-		  (concat "\\(?:[-+*]\\|\\(?:[0-9]+" alpha "\\)" term "\\)"
-			  "\\(?:[ \t]\\|$\\)"))
-		"\\)\\)")
-	org-element--object-regexp
-	(mapconcat #'identity
-		   (let ((link-types (regexp-opt (org-link-types))))
-		     (list
-		      ;; Sub/superscript.
-		      "\\(?:[_^][-{(*+.,[:alnum:]]\\)"
-		      ;; Bold, code, italic, strike-through, underline
-		      ;; and verbatim.
-		      (concat "[*~=+_/]"
-			      (format "[^%s]"
-				      (nth 2 org-emphasis-regexp-components)))
-		      ;; Plain links.
-		      (concat "\\<" link-types ":")
-		      ;; Objects starting with "[": regular link,
-		      ;; footnote reference, statistics cookie,
-		      ;; timestamp (inactive).
-		      (concat "\\[\\(?:"
-			      "fn:" "\\|"
-			      "\\[" "\\|"
-			      "[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}" "\\|"
-			      "[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
-			      "\\)")
-		      ;; Objects starting with "@": export snippets.
-		      "@@"
-		      ;; Objects starting with "{": macro.
-		      "{{{"
-		      ;; Objects starting with "<" : timestamp
-		      ;; (active, diary), target, radio target and
-		      ;; angular links.
-		      (concat "<\\(?:%%\\|<\\|[0-9]\\|" link-types "\\)")
-		      ;; Objects starting with "$": latex fragment.
-		      "\\$"
-		      ;; Objects starting with "\": line break,
-		      ;; entity, latex fragment.
-		      "\\\\\\(?:[a-zA-Z[(]\\|\\\\[ \t]*$\\|_ +\\)"
-		      ;; Objects starting with raw text: inline Babel
-		      ;; source block, inline Babel call.
-		      "\\(?:call\\|src\\)_"))
-		   "\\|")))
-
-(org-element--set-regexps)
-
-;;;###autoload
-(defun org-element-update-syntax ()
-  "Update parser internals."
-  (interactive)
-  (org-element--set-regexps)
-  (org-element-cache-reset 'all))
-
-(defconst org-element-all-elements
-  '(babel-call center-block clock comment comment-block diary-sexp drawer
-	       dynamic-block example-block export-block fixed-width
-	       footnote-definition headline horizontal-rule inlinetask item
-	       keyword latex-environment node-property paragraph plain-list
-	       planning property-drawer quote-block section
-	       special-block src-block table table-row verse-block)
-  "Complete list of element types.")
-
-(defconst org-element-greater-elements
-  '(center-block drawer dynamic-block footnote-definition headline inlinetask
-		 item plain-list property-drawer quote-block section
-		 special-block table)
-  "List of recursive element types aka Greater Elements.")
-
-(defconst org-element-all-objects
-  '(bold code entity export-snippet footnote-reference inline-babel-call
-	 inline-src-block italic line-break latex-fragment link macro
-	 radio-target statistics-cookie strike-through subscript superscript
-	 table-cell target timestamp underline verbatim)
-  "Complete list of object types.")
-
-(defconst org-element-recursive-objects
-  '(bold footnote-reference italic link subscript radio-target strike-through
-	 superscript table-cell underline)
-  "List of recursive object types.")
-
-(defconst org-element-object-containers
-  (append org-element-recursive-objects '(paragraph table-row verse-block))
-  "List of object or element types that can directly contain objects.")
-
-(defconst org-element-affiliated-keywords
-  '("CAPTION" "DATA" "HEADER" "HEADERS" "LABEL" "NAME" "PLOT" "RESNAME" "RESULT"
-    "RESULTS" "SOURCE" "SRCNAME" "TBLNAME")
-  "List of affiliated keywords as strings.
-By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
-are affiliated keywords and need not to be in this list.")
-
-(defconst org-element-keyword-translation-alist
-  '(("DATA" . "NAME")  ("LABEL" . "NAME") ("RESNAME" . "NAME")
-    ("SOURCE" . "NAME") ("SRCNAME" . "NAME") ("TBLNAME" . "NAME")
-    ("RESULT" . "RESULTS") ("HEADERS" . "HEADER"))
-  "Alist of usual translations for keywords.
-The key is the old name and the value the new one.  The property
-holding their value will be named after the translated name.")
-
-(defconst org-element-multiple-keywords '("CAPTION" "HEADER")
-  "List of affiliated keywords that can occur more than once in an element.
-
-Their value will be consed into a list of strings, which will be
-returned as the value of the property.
-
-This list is checked after translations have been applied.  See
-`org-element-keyword-translation-alist'.
-
-By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
-allow multiple occurrences and need not to be in this list.")
-
-(defconst org-element-parsed-keywords '("CAPTION")
-  "List of affiliated keywords whose value can be parsed.
-
-Their value will be stored as a secondary string: a list of
-strings and objects.
-
-This list is checked after translations have been applied.  See
-`org-element-keyword-translation-alist'.")
-
-(defconst org-element--parsed-properties-alist
-  (mapcar (lambda (k) (cons k (intern (concat ":" (downcase k)))))
-	  org-element-parsed-keywords)
-  "Alist of parsed keywords and associated properties.
-This is generated from `org-element-parsed-keywords', which
-see.")
-
-(defconst org-element-dual-keywords '("CAPTION" "RESULTS")
-  "List of affiliated keywords which can have a secondary value.
-
-In Org syntax, they can be written with optional square brackets
-before the colons.  For example, RESULTS keyword can be
-associated to a hash value with the following:
-
-  #+RESULTS[hash-string]: some-source
-
-This list is checked after translations have been applied.  See
-`org-element-keyword-translation-alist'.")
-
-(defconst org-element--affiliated-re
-  (format "[ \t]*#\\+\\(?:%s\\):[ \t]*"
-	  (concat
-	   ;; Dual affiliated keywords.
-	   (format "\\(?1:%s\\)\\(?:\\[\\(.*\\)\\]\\)?"
-		   (regexp-opt org-element-dual-keywords))
-	   "\\|"
-	   ;; Regular affiliated keywords.
-	   (format "\\(?1:%s\\)"
-		   (regexp-opt
-		    (cl-remove-if
-		     (lambda (k) (member k org-element-dual-keywords))
-		     org-element-affiliated-keywords)))
-	   "\\|"
-	   ;; Export attributes.
-	   "\\(?1:ATTR_[-_A-Za-z0-9]+\\)"))
-  "Regexp matching any affiliated keyword.
-
-Keyword name is put in match group 1.  Moreover, if keyword
-belongs to `org-element-dual-keywords', put the dual value in
-match group 2.
-
-Don't modify it, set `org-element-affiliated-keywords' instead.")
-
-(defconst org-element-object-restrictions
-  (let* ((standard-set (remq 'table-cell org-element-all-objects))
-	 (standard-set-no-line-break (remq 'line-break standard-set)))
-    `((bold ,@standard-set)
-      (footnote-reference ,@standard-set)
-      (headline ,@standard-set-no-line-break)
-      (inlinetask ,@standard-set-no-line-break)
-      (italic ,@standard-set)
-      (item ,@standard-set-no-line-break)
-      (keyword ,@(remq 'footnote-reference standard-set))
-      ;; Ignore all links in a link description.  Also ignore
-      ;; radio-targets and line breaks.
-      (link bold code entity export-snippet inline-babel-call inline-src-block
-	    italic latex-fragment macro statistics-cookie strike-through
-	    subscript superscript underline verbatim)
-      (paragraph ,@standard-set)
-      ;; Remove any variable object from radio target as it would
-      ;; prevent it from being properly recognized.
-      (radio-target bold code entity italic latex-fragment strike-through
-		    subscript superscript underline superscript)
-      (strike-through ,@standard-set)
-      (subscript ,@standard-set)
-      (superscript ,@standard-set)
-      ;; Ignore inline babel call and inline src block as formulas are
-      ;; possible.  Also ignore line breaks and statistics cookies.
-      (table-cell bold code entity export-snippet footnote-reference italic
-		  latex-fragment link macro radio-target strike-through
-		  subscript superscript target timestamp underline verbatim)
-      (table-row table-cell)
-      (underline ,@standard-set)
-      (verse-block ,@standard-set)))
-  "Alist of objects restrictions.
-
-key is an element or object type containing objects and value is
-a list of types that can be contained within an element or object
-of such type.
-
-For example, in a `radio-target' object, one can only find
-entities, latex-fragments, subscript, superscript and text
-markup.
-
-This alist also applies to secondary string.  For example, an
-`headline' type element doesn't directly contain objects, but
-still has an entry since one of its properties (`:title') does.")
-
-(defconst org-element-secondary-value-alist
-  '((headline :title)
-    (inlinetask :title)
-    (item :tag))
-  "Alist between element types and locations of secondary values.")
-
-(defconst org-element--pair-round-table
-  (let ((table (make-syntax-table)))
-    (modify-syntax-entry ?\( "()" table)
-    (modify-syntax-entry ?\) ")(" table)
-    (dolist (char '(?\{ ?\} ?\[ ?\] ?\< ?\>) table)
-      (modify-syntax-entry char " " table)))
-  "Table used internally to pair only round brackets.
-Other brackets are treated as spaces.")
-
-(defconst org-element--pair-square-table
-  (let ((table (make-syntax-table)))
-    (modify-syntax-entry ?\[ "(]" table)
-    (modify-syntax-entry ?\] ")[" table)
-    (dolist (char '(?\{ ?\} ?\( ?\) ?\< ?\>) table)
-      (modify-syntax-entry char " " table)))
-  "Table used internally to pair only square brackets.
-Other brackets are treated as spaces.")
-
-(defconst org-element--pair-curly-table
-  (let ((table (make-syntax-table)))
-    (modify-syntax-entry ?\{ "(}" table)
-    (modify-syntax-entry ?\} "){" table)
-    (dolist (char '(?\[ ?\] ?\( ?\) ?\< ?\>) table)
-      (modify-syntax-entry char " " table)))
-  "Table used internally to pair only curly brackets.
-Other brackets are treated as spaces.")
-
-(defun org-element--parse-paired-brackets (char)
-  "Parse paired brackets at point.
-CHAR is the opening bracket to consider, as a character.  Return
-contents between brackets, as a string, or nil.  Also move point
-past the brackets."
-  (when (eq char (char-after))
-    (let ((syntax-table (pcase char
-			  (?\{ org-element--pair-curly-table)
-			  (?\[ org-element--pair-square-table)
-			  (?\( org-element--pair-round-table)
-			  (_ nil)))
-	  (pos (point)))
-      (when syntax-table
-	(with-syntax-table syntax-table
-	  (let ((end (ignore-errors (scan-lists pos 1 0))))
-	    (when end
-	      (goto-char end)
-	      (buffer-substring-no-properties (1+ pos) (1- end)))))))))
-
-
-;;; Accessors and Setters
-;;
-;; Provide four accessors: `org-element-type', `org-element-property'
-;; `org-element-contents' and `org-element-restriction'.
-;;
-;; Setter functions allow modification of elements by side effect.
-;; There is `org-element-put-property', `org-element-set-contents'.
-;; These low-level functions are useful to build a parse tree.
-;;
-;; `org-element-adopt-elements', `org-element-set-element',
-;; `org-element-extract-element' and `org-element-insert-before' are
-;; high-level functions useful to modify a parse tree.
-;;
-;; `org-element-secondary-p' is a predicate used to know if a given
-;; object belongs to a secondary string.  `org-element-class' tells if
-;; some parsed data is an element or an object, handling pseudo
-;; elements and objects.  `org-element-copy' returns an element or
-;; object, stripping its parent property in the process.
-
-(defsubst org-element-type (element)
-  "Return type of ELEMENT.
-
-The function returns the type of the element or object provided.
-It can also return the following special value:
-  `plain-text'       for a string
-  `org-data'         for a complete document
-  nil                in any other case."
-  (cond
-   ((not (consp element)) (and (stringp element) 'plain-text))
-   ((symbolp (car element)) (car element))))
-
-(defsubst org-element-property (property element)
-  "Extract the value from the PROPERTY of an ELEMENT."
-  (if (stringp element) (get-text-property 0 property element)
-    (plist-get (nth 1 element) property)))
-
-(defsubst org-element-contents (element)
-  "Extract contents from an ELEMENT."
-  (cond ((not (consp element)) nil)
-	((symbolp (car element)) (nthcdr 2 element))
-	(t element)))
-
-(defsubst org-element-restriction (element)
-  "Return restriction associated to ELEMENT.
-ELEMENT can be an element, an object or a symbol representing an
-element or object type."
-  (cdr (assq (if (symbolp element) element (org-element-type element))
-	     org-element-object-restrictions)))
-
-(defsubst org-element-put-property (element property value)
-  "In ELEMENT set PROPERTY to VALUE.
-Return modified element."
-  (if (stringp element) (org-add-props element nil property value)
-    (setcar (cdr element) (plist-put (nth 1 element) property value))
-    element))
-
-(defsubst org-element-set-contents (element &rest contents)
-  "Set ELEMENT's contents to CONTENTS.
-Return ELEMENT."
-  (cond ((null element) contents)
-	((not (symbolp (car element))) contents)
-	((cdr element) (setcdr (cdr element) contents) element)
-	(t (nconc element contents))))
-
-(defun org-element-secondary-p (object)
-  "Non-nil when OBJECT directly belongs to a secondary string.
-Return value is the property name, as a keyword, or nil."
-  (let* ((parent (org-element-property :parent object))
-	 (properties (cdr (assq (org-element-type parent)
-				org-element-secondary-value-alist))))
-    (catch 'exit
-      (dolist (p properties)
-	(and (memq object (org-element-property p parent))
-	     (throw 'exit p))))))
-
-(defsubst org-element-class (datum &optional parent)
-  "Return class for ELEMENT, as a symbol.
-Class is either `element' or `object'.  Optional argument PARENT
-is the element or object containing DATUM.  It defaults to the
-value of DATUM `:parent' property."
-  (let ((type (org-element-type datum))
-	(parent (or parent (org-element-property :parent datum))))
-    (cond
-     ;; Trivial cases.
-     ((memq type org-element-all-objects) 'object)
-     ((memq type org-element-all-elements) 'element)
-     ;; Special cases.
-     ((eq type 'org-data) 'element)
-     ((eq type 'plain-text) 'object)
-     ((not type) 'object)
-     ;; Pseudo object or elements.  Make a guess about its class.
-     ;; Basically a pseudo object is contained within another object,
-     ;; a secondary string or a container element.
-     ((not parent) 'element)
-     (t
-      (let ((parent-type (org-element-type parent)))
-	(cond ((not parent-type) 'object)
-	      ((memq parent-type org-element-object-containers) 'object)
-	      ((org-element-secondary-p datum) 'object)
-	      (t 'element)))))))
-
-(defsubst org-element-adopt-elements (parent &rest children)
-  "Append elements to the contents of another element.
-
-PARENT is an element or object.  CHILDREN can be elements,
-objects, or a strings.
-
-The function takes care of setting `:parent' property for CHILD.
-Return parent element."
-  (if (not children) parent
-    ;; Link every child to PARENT. If PARENT is nil, it is a secondary
-    ;; string: parent is the list itself.
-    (dolist (child children)
-      (org-element-put-property child :parent (or parent children)))
-    ;; Add CHILDREN at the end of PARENT contents.
-    (when parent
-      (apply #'org-element-set-contents
-	     parent
-	     (nconc (org-element-contents parent) children)))
-    ;; Return modified PARENT element.
-    (or parent children)))
-
-(defun org-element-extract-element (element)
-  "Extract ELEMENT from parse tree.
-Remove element from the parse tree by side-effect, and return it
-with its `:parent' property stripped out."
-  (let ((parent (org-element-property :parent element))
-	(secondary (org-element-secondary-p element)))
-    (if secondary
-        (org-element-put-property
-	 parent secondary
-	 (delq element (org-element-property secondary parent)))
-      (apply #'org-element-set-contents
-	     parent
-	     (delq element (org-element-contents parent))))
-    ;; Return ELEMENT with its :parent removed.
-    (org-element-put-property element :parent nil)))
-
-(defun org-element-insert-before (element location)
-  "Insert ELEMENT before LOCATION in parse tree.
-LOCATION is an element, object or string within the parse tree.
-Parse tree is modified by side effect."
-  (let* ((parent (org-element-property :parent location))
-	 (property (org-element-secondary-p location))
-	 (siblings (if property (org-element-property property parent)
-		     (org-element-contents parent)))
-	 ;; Special case: LOCATION is the first element of an
-	 ;; independent secondary string (e.g. :title property).  Add
-	 ;; ELEMENT in-place.
-	 (specialp (and (not property)
-			(eq siblings parent)
-			(eq (car parent) location))))
-    ;; Install ELEMENT at the appropriate LOCATION within SIBLINGS.
-    (cond (specialp)
-	  ((or (null siblings) (eq (car siblings) location))
-	   (push element siblings))
-	  ((null location) (nconc siblings (list element)))
-	  (t
-	   (let ((index (cl-position location siblings)))
-	     (unless index (error "No location found to insert element"))
-	     (push element (cdr (nthcdr (1- index) siblings))))))
-    ;; Store SIBLINGS at appropriate place in parse tree.
-    (cond
-     (specialp (setcdr parent (copy-sequence parent)) (setcar parent element))
-     (property (org-element-put-property parent property siblings))
-     (t (apply #'org-element-set-contents parent siblings)))
-    ;; Set appropriate :parent property.
-    (org-element-put-property element :parent parent)))
-
-(defun org-element-set-element (old new)
-  "Replace element or object OLD with element or object NEW.
-The function takes care of setting `:parent' property for NEW."
-  ;; Ensure OLD and NEW have the same parent.
-  (org-element-put-property new :parent (org-element-property :parent old))
-  (if (or (memq (org-element-type old) '(plain-text nil))
-	  (memq (org-element-type new) '(plain-text nil)))
-      ;; We cannot replace OLD with NEW since one of them is not an
-      ;; object or element.  We take the long path.
-      (progn (org-element-insert-before new old)
-	     (org-element-extract-element old))
-    ;; Since OLD is going to be changed into NEW by side-effect, first
-    ;; make sure that every element or object within NEW has OLD as
-    ;; parent.
-    (dolist (blob (org-element-contents new))
-      (org-element-put-property blob :parent old))
-    ;; Transfer contents.
-    (apply #'org-element-set-contents old (org-element-contents new))
-    ;; Overwrite OLD's properties with NEW's.
-    (setcar (cdr old) (nth 1 new))
-    ;; Transfer type.
-    (setcar old (car new))))
-
-(defun org-element-create (type &optional props &rest children)
-  "Create a new element of type TYPE.
-Optional argument PROPS, when non-nil, is a plist defining the
-properties of the element.  CHILDREN can be elements, objects or
-strings."
-  (apply #'org-element-adopt-elements (list type props) children))
-
-(defun org-element-copy (datum)
-  "Return a copy of DATUM.
-DATUM is an element, object, string or nil.  `:parent' property
-is cleared and contents are removed in the process."
-  (when datum
-    (let ((type (org-element-type datum)))
-      (pcase type
-	(`org-data (list 'org-data nil))
-	(`plain-text (substring-no-properties datum))
-	(`nil (copy-sequence datum))
-	(_
-	 (list type (plist-put (copy-sequence (nth 1 datum)) :parent nil)))))))
-
-
-
-;;; Greater elements
-;;
-;; For each greater element type, we define a parser and an
-;; interpreter.
-;;
-;; A parser returns the element or object as the list described above.
-;; Most of them accepts no argument.  Though, exceptions exist.  Hence
-;; every element containing a secondary string (see
-;; `org-element-secondary-value-alist') will accept an optional
-;; argument to toggle parsing of these secondary strings.  Moreover,
-;; `item' parser requires current list's structure as its first
-;; element.
-;;
-;; An interpreter accepts two arguments: the list representation of
-;; the element or object, and its contents.  The latter may be nil,
-;; depending on the element or object considered.  It returns the
-;; appropriate Org syntax, as a string.
-;;
-;; Parsing functions must follow the naming convention:
-;; org-element-TYPE-parser, where TYPE is greater element's type, as
-;; defined in `org-element-greater-elements'.
-;;
-;; Similarly, interpreting functions must follow the naming
-;; convention: org-element-TYPE-interpreter.
-;;
-;; With the exception of `headline' and `item' types, greater elements
-;; cannot contain other greater elements of their own type.
-;;
-;; Beside implementing a parser and an interpreter, adding a new
-;; greater element requires tweaking `org-element--current-element'.
-;; Moreover, the newly defined type must be added to both
-;; `org-element-all-elements' and `org-element-greater-elements'.
-
-
-;;;; Center Block
-
-(defun org-element-center-block-parser (limit affiliated)
-  "Parse a center block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `center-block' and CDR is a plist
-containing `:begin', `:end', `:contents-begin', `:contents-end',
-`:post-blank' and `:post-affiliated' keywords.
-
-Assume point is at the beginning of the block."
-  (let ((case-fold-search t))
-    (if (not (save-excursion
-	       (re-search-forward "^[ \t]*#\\+END_CENTER[ \t]*$" limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (let ((block-end-line (match-beginning 0)))
-	(let* ((begin (car affiliated))
-	       (post-affiliated (point))
-	       ;; Empty blocks have no contents.
-	       (contents-begin (progn (forward-line)
-				      (and (< (point) block-end-line)
-					   (point))))
-	       (contents-end (and contents-begin block-end-line))
-	       (pos-before-blank (progn (goto-char block-end-line)
-					(forward-line)
-					(point)))
-	       (end (save-excursion
-		      (skip-chars-forward " \r\t\n" limit)
-		      (if (eobp) (point) (line-beginning-position)))))
-	  (list 'center-block
-		(nconc
-		 (list :begin begin
-		       :end end
-		       :contents-begin contents-begin
-		       :contents-end contents-end
-		       :post-blank (count-lines pos-before-blank end)
-		       :post-affiliated post-affiliated)
-		 (cdr affiliated))))))))
-
-(defun org-element-center-block-interpreter (_ contents)
-  "Interpret a center-block element as Org syntax.
-CONTENTS is the contents of the element."
-  (format "#+BEGIN_CENTER\n%s#+END_CENTER" contents))
-
-
-;;;; Drawer
-
-(defun org-element-drawer-parser (limit affiliated)
-  "Parse a drawer.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `drawer' and CDR is a plist containing
-`:drawer-name', `:begin', `:end', `:contents-begin',
-`:contents-end', `:post-blank' and `:post-affiliated' keywords.
-
-Assume point is at beginning of drawer."
-  (let ((case-fold-search t))
-    (if (not (save-excursion (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)))
-	;; Incomplete drawer: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (save-excursion
-	(let* ((drawer-end-line (match-beginning 0))
-	       (name (progn (looking-at org-drawer-regexp)
-			    (match-string-no-properties 1)))
-	       (begin (car affiliated))
-	       (post-affiliated (point))
-	       ;; Empty drawers have no contents.
-	       (contents-begin (progn (forward-line)
-				      (and (< (point) drawer-end-line)
-					   (point))))
-	       (contents-end (and contents-begin drawer-end-line))
-	       (pos-before-blank (progn (goto-char drawer-end-line)
-					(forward-line)
-					(point)))
-	       (end (progn (skip-chars-forward " \r\t\n" limit)
-			   (if (eobp) (point) (line-beginning-position)))))
-	  (list 'drawer
-		(nconc
-		 (list :begin begin
-		       :end end
-		       :drawer-name name
-		       :contents-begin contents-begin
-		       :contents-end contents-end
-		       :post-blank (count-lines pos-before-blank end)
-		       :post-affiliated post-affiliated)
-		 (cdr affiliated))))))))
-
-(defun org-element-drawer-interpreter (drawer contents)
-  "Interpret DRAWER element as Org syntax.
-CONTENTS is the contents of the element."
-  (format ":%s:\n%s:END:"
-	  (org-element-property :drawer-name drawer)
-	  contents))
-
-
-;;;; Dynamic Block
-
-(defun org-element-dynamic-block-parser (limit affiliated)
-  "Parse a dynamic block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `dynamic-block' and CDR is a plist
-containing `:block-name', `:begin', `:end', `:contents-begin',
-`:contents-end', `:arguments', `:post-blank' and
-`:post-affiliated' keywords.
-
-Assume point is at beginning of dynamic block."
-  (let ((case-fold-search t))
-    (if (not (save-excursion
-	       (re-search-forward "^[ \t]*#\\+END:?[ \t]*$" limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (let ((block-end-line (match-beginning 0)))
-	(save-excursion
-	  (let* ((name (progn (looking-at org-dblock-start-re)
-			      (match-string-no-properties 1)))
-		 (arguments (match-string-no-properties 3))
-		 (begin (car affiliated))
-		 (post-affiliated (point))
-		 ;; Empty blocks have no contents.
-		 (contents-begin (progn (forward-line)
-					(and (< (point) block-end-line)
-					     (point))))
-		 (contents-end (and contents-begin block-end-line))
-		 (pos-before-blank (progn (goto-char block-end-line)
-					  (forward-line)
-					  (point)))
-		 (end (progn (skip-chars-forward " \r\t\n" limit)
-			     (if (eobp) (point) (line-beginning-position)))))
-	    (list 'dynamic-block
-		  (nconc
-		   (list :begin begin
-			 :end end
-			 :block-name name
-			 :arguments arguments
-			 :contents-begin contents-begin
-			 :contents-end contents-end
-			 :post-blank (count-lines pos-before-blank end)
-			 :post-affiliated post-affiliated)
-		   (cdr affiliated)))))))))
-
-(defun org-element-dynamic-block-interpreter (dynamic-block contents)
-  "Interpret DYNAMIC-BLOCK element as Org syntax.
-CONTENTS is the contents of the element."
-  (format "#+BEGIN: %s%s\n%s#+END:"
-	  (org-element-property :block-name dynamic-block)
-	  (let ((args (org-element-property :arguments dynamic-block)))
-	    (if args (concat " " args) ""))
-	  contents))
-
-
-;;;; Footnote Definition
-
-(defconst org-element--footnote-separator
-  (concat org-outline-regexp-bol "\\|"
-	  org-footnote-definition-re "\\|"
-	  "^\\([ \t]*\n\\)\\{2,\\}")
-  "Regexp used as a footnote definition separator.")
-
-(defun org-element-footnote-definition-parser (limit affiliated)
-  "Parse a footnote definition.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `footnote-definition' and CDR is
-a plist containing `:label', `:begin' `:end', `:contents-begin',
-`:contents-end', `:post-blank' and `:post-affiliated' keywords.
-
-Assume point is at the beginning of the footnote definition."
-  (save-excursion
-    (let* ((label (progn (looking-at org-footnote-definition-re)
-			 (match-string-no-properties 1)))
-	   (begin (car affiliated))
-	   (post-affiliated (point))
-	   (end
-	    (save-excursion
-	      (end-of-line)
-	      (cond
-	       ((not
-		 (re-search-forward org-element--footnote-separator limit t))
-		limit)
-	       ((eq ?\[ (char-after (match-beginning 0)))
-		;; At a new footnote definition, make sure we end
-		;; before any affiliated keyword above.
-		(forward-line -1)
-		(while (and (> (point) post-affiliated)
-			    (looking-at-p org-element--affiliated-re))
-		  (forward-line -1))
-		(line-beginning-position 2))
-	       ((eq ?* (char-after (match-beginning 0))) (match-beginning 0))
-	       (t (skip-chars-forward " \r\t\n" limit)
-		  (if (= limit (point)) limit (line-beginning-position))))))
-	   (contents-begin
-	    (progn (search-forward "]")
-		   (skip-chars-forward " \r\t\n" end)
-		   (cond ((= (point) end) nil)
-			 ((= (line-beginning-position) post-affiliated) (point))
-			 (t (line-beginning-position)))))
-	   (contents-end
-	    (progn (goto-char end)
-		   (skip-chars-backward " \r\t\n")
-		   (line-beginning-position 2))))
-      (list 'footnote-definition
-	    (nconc
-	     (list :label label
-		   :begin begin
-		   :end end
-		   :contents-begin contents-begin
-		   :contents-end (and contents-begin contents-end)
-		   :post-blank (count-lines contents-end end)
-		   :post-affiliated post-affiliated)
-	     (cdr affiliated))))))
-
-(defun org-element-footnote-definition-interpreter (footnote-definition contents)
-  "Interpret FOOTNOTE-DEFINITION element as Org syntax.
-CONTENTS is the contents of the footnote-definition."
-  (concat (format "[fn:%s]" (org-element-property :label footnote-definition))
-	  " "
-	  contents))
-
-
-;;;; Headline
-
-(defun org-element--get-node-properties ()
-  "Return node properties associated to headline at point.
-Upcase property names.  It avoids confusion between properties
-obtained through property drawer and default properties from the
-parser (e.g. `:end' and :END:).  Return value is a plist."
-  (save-excursion
-    (forward-line)
-    (when (looking-at-p org-planning-line-re) (forward-line))
-    (when (looking-at org-property-drawer-re)
-      (forward-line)
-      (let ((end (match-end 0)) properties)
-	(while (< (line-end-position) end)
-	  (looking-at org-property-re)
-	  (push (match-string-no-properties 3) properties)
-	  (push (intern (concat ":" (upcase (match-string 2)))) properties)
-	  (forward-line))
-	properties))))
-
-(defun org-element--get-time-properties ()
-  "Return time properties associated to headline at point.
-Return value is a plist."
-  (save-excursion
-    (when (progn (forward-line) (looking-at org-planning-line-re))
-      (let ((end (line-end-position)) plist)
-	(while (re-search-forward org-keyword-time-not-clock-regexp end t)
-	  (goto-char (match-end 1))
-	  (skip-chars-forward " \t")
-	  (let ((keyword (match-string 1))
-		(time (org-element-timestamp-parser)))
-	    (cond ((equal keyword org-scheduled-string)
-		   (setq plist (plist-put plist :scheduled time)))
-		  ((equal keyword org-deadline-string)
-		   (setq plist (plist-put plist :deadline time)))
-		  (t (setq plist (plist-put plist :closed time))))))
-	plist))))
-
-(defun org-element-headline-parser (limit &optional raw-secondary-p)
-  "Parse a headline.
-
-Return a list whose CAR is `headline' and CDR is a plist
-containing `:raw-value', `:title', `:begin', `:end',
-`:pre-blank', `:contents-begin' and `:contents-end', `:level',
-`:priority', `:tags', `:todo-keyword',`:todo-type', `:scheduled',
-`:deadline', `:closed', `:archivedp', `:commentedp'
-`:footnote-section-p', `:post-blank' and `:post-affiliated'
-keywords.
-
-The plist also contains any property set in the property drawer,
-with its name in upper cases and colons added at the
-beginning (e.g., `:CUSTOM_ID').
-
-LIMIT is a buffer position bounding the search.
-
-When RAW-SECONDARY-P is non-nil, headline's title will not be
-parsed as a secondary string, but as a plain string instead.
-
-Assume point is at beginning of the headline."
-  (save-excursion
-    (let* ((begin (point))
-	   (level (prog1 (org-reduced-level (skip-chars-forward "*"))
-		    (skip-chars-forward " \t")))
-	   (todo (and org-todo-regexp
-		      (let (case-fold-search) (looking-at (concat org-todo-regexp " ")))
-		      (progn (goto-char (match-end 0))
-			     (skip-chars-forward " \t")
-			     (match-string 1))))
-	   (todo-type
-	    (and todo (if (member todo org-done-keywords) 'done 'todo)))
-	   (priority (and (looking-at "\\[#.\\][ \t]*")
-			  (progn (goto-char (match-end 0))
-				 (aref (match-string 0) 2))))
-	   (commentedp
-	    (and (let (case-fold-search) (looking-at org-comment-string))
-		 (goto-char (match-end 0))))
-	   (title-start (point))
-	   (tags (when (re-search-forward
-			"[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"
-			(line-end-position)
-			'move)
-		   (goto-char (match-beginning 0))
-		   (org-split-string (match-string 1) ":")))
-	   (title-end (point))
-	   (raw-value (org-trim
-		       (buffer-substring-no-properties title-start title-end)))
-	   (archivedp (member org-archive-tag tags))
-	   (footnote-section-p (and org-footnote-section
-				    (string= org-footnote-section raw-value)))
-	   (standard-props (org-element--get-node-properties))
-	   (time-props (org-element--get-time-properties))
-	   (end (min (save-excursion (org-end-of-subtree t t)) limit))
-	   (contents-begin (save-excursion
-			     (forward-line)
-			     (skip-chars-forward " \r\t\n" end)
-			     (and (/= (point) end) (line-beginning-position))))
-	   (contents-end (and contents-begin
-			      (progn (goto-char end)
-				     (skip-chars-backward " \r\t\n")
-				     (line-beginning-position 2)))))
-      (let ((headline
-	     (list 'headline
-		   (nconc
-		    (list :raw-value raw-value
-			  :begin begin
-			  :end end
-			  :pre-blank
-			  (if (not contents-begin) 0
-			    (1- (count-lines begin contents-begin)))
-			  :contents-begin contents-begin
-			  :contents-end contents-end
-			  :level level
-			  :priority priority
-			  :tags tags
-			  :todo-keyword todo
-			  :todo-type todo-type
-			  :post-blank
-			  (if contents-end
-			      (count-lines contents-end end)
-			    (1- (count-lines begin end)))
-			  :footnote-section-p footnote-section-p
-			  :archivedp archivedp
-			  :commentedp commentedp
-			  :post-affiliated begin)
-		    time-props
-		    standard-props))))
-	(org-element-put-property
-	 headline :title
-	 (if raw-secondary-p raw-value
-	   (org-element--parse-objects
-	    (progn (goto-char title-start)
-		   (skip-chars-forward " \t")
-		   (point))
-	    (progn (goto-char title-end)
-		   (skip-chars-backward " \t")
-		   (point))
-	    nil
-	    (org-element-restriction 'headline)
-	    headline)))))))
-
-(defun org-element-headline-interpreter (headline contents)
-  "Interpret HEADLINE element as Org syntax.
-CONTENTS is the contents of the element."
-  (let* ((level (org-element-property :level headline))
-	 (todo (org-element-property :todo-keyword headline))
-	 (priority (org-element-property :priority headline))
-	 (title (org-element-interpret-data
-		 (org-element-property :title headline)))
-	 (tags (let ((tag-list (org-element-property :tags headline)))
-		 (and tag-list
-		      (format ":%s:" (mapconcat #'identity tag-list ":")))))
-	 (commentedp (org-element-property :commentedp headline))
-	 (pre-blank (or (org-element-property :pre-blank headline) 0))
-	 (heading
-	  (concat (make-string (if org-odd-levels-only (1- (* level 2)) level)
-			       ?*)
-		  (and todo (concat " " todo))
-		  (and commentedp (concat " " org-comment-string))
-		  (and priority (format " [#%c]" priority))
-		  " "
-		  (if (and org-footnote-section
-			   (org-element-property :footnote-section-p headline))
-		      org-footnote-section
-		    title))))
-    (concat
-     heading
-     ;; Align tags.
-     (when tags
-       (cond
-	((zerop org-tags-column) (format " %s" tags))
-	((< org-tags-column 0)
-	 (concat
-	  (make-string
-	   (max (- (+ org-tags-column (length heading) (length tags))) 1)
-	   ?\s)
-	  tags))
-	(t
-	 (concat
-	  (make-string (max (- org-tags-column (length heading)) 1) ?\s)
-	  tags))))
-     (make-string (1+ pre-blank) ?\n)
-     contents)))
-
-
-;;;; Inlinetask
-
-(defun org-element-inlinetask-parser (limit &optional raw-secondary-p)
-  "Parse an inline task.
-
-Return a list whose CAR is `inlinetask' and CDR is a plist
-containing `:title', `:begin', `:end', `:pre-blank',
-`:contents-begin' and `:contents-end', `:level', `:priority',
-`:raw-value', `:tags', `:todo-keyword', `:todo-type',
-`:scheduled', `:deadline', `:closed', `:post-blank' and
-`:post-affiliated' keywords.
-
-The plist also contains any property set in the property drawer,
-with its name in upper cases and colons added at the
-beginning (e.g., `:CUSTOM_ID').
-
-When optional argument RAW-SECONDARY-P is non-nil, inline-task's
-title will not be parsed as a secondary string, but as a plain
-string instead.
-
-Assume point is at beginning of the inline task."
-  (save-excursion
-    (let* ((begin (point))
-	   (level (prog1 (org-reduced-level (skip-chars-forward "*"))
-		    (skip-chars-forward " \t")))
-	   (todo (and org-todo-regexp
-		      (let (case-fold-search) (looking-at org-todo-regexp))
-		      (progn (goto-char (match-end 0))
-			     (skip-chars-forward " \t")
-			     (match-string 0))))
-	   (todo-type (and todo
-			   (if (member todo org-done-keywords) 'done 'todo)))
-	   (priority (and (looking-at "\\[#.\\][ \t]*")
-			  (progn (goto-char (match-end 0))
-				 (aref (match-string 0) 2))))
-	   (title-start (point))
-	   (tags (when (re-search-forward
-			"[ \t]+\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"
-			(line-end-position)
-			'move)
-		   (goto-char (match-beginning 0))
-		   (org-split-string (match-string 1) ":")))
-	   (title-end (point))
-	   (raw-value (org-trim
-		       (buffer-substring-no-properties title-start title-end)))
-	   (task-end (save-excursion
-		       (end-of-line)
-		       (and (re-search-forward org-outline-regexp-bol limit t)
-			    (looking-at-p "[ \t]*END[ \t]*$")
-			    (line-beginning-position))))
-	   (standard-props (and task-end (org-element--get-node-properties)))
-	   (time-props (and task-end (org-element--get-time-properties)))
-	   (contents-begin (and task-end
-				(< (point) task-end)
-				(progn
-				  (forward-line)
-				  (skip-chars-forward " \t\n")
-				  (line-beginning-position))))
-	   (contents-end (and contents-begin task-end))
-	   (end (progn (when task-end (goto-char task-end))
-		       (forward-line)
-		       (skip-chars-forward " \r\t\n" limit)
-		       (if (eobp) (point) (line-beginning-position))))
-	   (inlinetask
-	    (list 'inlinetask
-		  (nconc
-		   (list :raw-value raw-value
-			 :begin begin
-			 :end end
-			 :pre-blank
-			 (if (not contents-begin) 0
-			   (1- (count-lines begin contents-begin)))
-			 :contents-begin contents-begin
-			 :contents-end contents-end
-			 :level level
-			 :priority priority
-			 :tags tags
-			 :todo-keyword todo
-			 :todo-type todo-type
-			 :post-blank (1- (count-lines (or task-end begin) end))
-			 :post-affiliated begin)
-		   time-props
-		   standard-props))))
-      (org-element-put-property
-       inlinetask :title
-       (if raw-secondary-p raw-value
-	 (org-element--parse-objects
-	  (progn (goto-char title-start)
-		 (skip-chars-forward " \t")
-		 (point))
-	  (progn (goto-char title-end)
-		 (skip-chars-backward " \t")
-		 (point))
-	  nil
-	  (org-element-restriction 'inlinetask)
-	  inlinetask))))))
-
-(defun org-element-inlinetask-interpreter (inlinetask contents)
-  "Interpret INLINETASK element as Org syntax.
-CONTENTS is the contents of inlinetask."
-  (let* ((level (org-element-property :level inlinetask))
-	 (todo (org-element-property :todo-keyword inlinetask))
-	 (priority (org-element-property :priority inlinetask))
-	 (title (org-element-interpret-data
-		 (org-element-property :title inlinetask)))
-	 (tags (let ((tag-list (org-element-property :tags inlinetask)))
-		 (and tag-list
-		      (format ":%s:" (mapconcat 'identity tag-list ":")))))
-	 (task (concat (make-string level ?*)
-		       (and todo (concat " " todo))
-		       (and priority (format " [#%c]" priority))
-		       (and title (concat " " title)))))
-    (concat task
-	    ;; Align tags.
-	    (when tags
-	      (cond
-	       ((zerop org-tags-column) (format " %s" tags))
-	       ((< org-tags-column 0)
-		(concat
-		 (make-string
-		  (max (- (+ org-tags-column (length task) (length tags))) 1)
-		  ? )
-		 tags))
-	       (t
-		(concat
-		 (make-string (max (- org-tags-column (length task)) 1) ? )
-		 tags))))
-	    ;; Prefer degenerate inlinetasks when there are no
-	    ;; contents.
-	    (when contents
-	      (concat "\n"
-		      contents
-		      (make-string level ?*) " END")))))
-
-
-;;;; Item
-
-(defun org-element-item-parser (_ struct &optional raw-secondary-p)
-  "Parse an item.
-
-STRUCT is the structure of the plain list.
-
-Return a list whose CAR is `item' and CDR is a plist containing
-`:bullet', `:begin', `:end', `:contents-begin', `:contents-end',
-`:checkbox', `:counter', `:tag', `:structure', `:post-blank' and
-`:post-affiliated' keywords.
-
-When optional argument RAW-SECONDARY-P is non-nil, item's tag, if
-any, will not be parsed as a secondary string, but as a plain
-string instead.
-
-Assume point is at the beginning of the item."
-  (save-excursion
-    (beginning-of-line)
-    (looking-at org-list-full-item-re)
-    (let* ((begin (point))
-	   (bullet (match-string-no-properties 1))
-	   (checkbox (let ((box (match-string 3)))
-		       (cond ((equal "[ ]" box) 'off)
-			     ((equal "[X]" box) 'on)
-			     ((equal "[-]" box) 'trans))))
-	   (counter (let ((c (match-string 2)))
-		      (save-match-data
-			(cond
-			 ((not c) nil)
-			 ((string-match "[A-Za-z]" c)
-			  (- (string-to-char (upcase (match-string 0 c)))
-			     64))
-			 ((string-match "[0-9]+" c)
-			  (string-to-number (match-string 0 c)))))))
-	   (end (progn (goto-char (nth 6 (assq (point) struct)))
-		       (if (bolp) (point) (line-beginning-position 2))))
-	   (contents-begin
-	    (progn (goto-char
-		    ;; Ignore tags in un-ordered lists: they are just
-		    ;; a part of item's body.
-		    (if (and (match-beginning 4)
-			     (save-match-data (string-match "[.)]" bullet)))
-			(match-beginning 4)
-		      (match-end 0)))
-		   (skip-chars-forward " \r\t\n" end)
-		   (cond ((= (point) end) nil)
-			 ;; If first line isn't empty, contents really
-			 ;; start at the text after item's meta-data.
-			 ((= (line-beginning-position) begin) (point))
-			 (t (line-beginning-position)))))
-	   (contents-end (and contents-begin
-			      (progn (goto-char end)
-				     (skip-chars-backward " \r\t\n")
-				     (line-beginning-position 2))))
-	   (item
-	    (list 'item
-		  (list :bullet bullet
-			:begin begin
-			:end end
-			:contents-begin contents-begin
-			:contents-end contents-end
-			:checkbox checkbox
-			:counter counter
-			:structure struct
-			:post-blank (count-lines (or contents-end begin) end)
-			:post-affiliated begin))))
-      (org-element-put-property
-       item :tag
-       (let ((raw (org-list-get-tag begin struct)))
-	 (when raw
-	   (if raw-secondary-p raw
-	     (org-element--parse-objects
-	      (match-beginning 4) (match-end 4) nil
-	      (org-element-restriction 'item)
-	      item))))))))
-
-(defun org-element-item-interpreter (item contents)
-  "Interpret ITEM element as Org syntax.
-CONTENTS is the contents of the element."
-  (let* ((bullet (let ((bullet (org-element-property :bullet item)))
-		   (org-list-bullet-string
-		    (cond ((not (string-match "[0-9a-zA-Z]" bullet)) "- ")
-			  ((eq org-plain-list-ordered-item-terminator ?\)) "1)")
-			  (t "1.")))))
-	 (checkbox (org-element-property :checkbox item))
-	 (counter (org-element-property :counter item))
-	 (tag (let ((tag (org-element-property :tag item)))
-		(and tag (org-element-interpret-data tag))))
-	 ;; Compute indentation.
-	 (ind (make-string (length bullet) 32))
-	 (item-starts-with-par-p
-	  (eq (org-element-type (car (org-element-contents item)))
-	      'paragraph)))
-    ;; Indent contents.
-    (concat
-     bullet
-     (and counter (format "[@%d] " counter))
-     (pcase checkbox
-       (`on "[X] ")
-       (`off "[ ] ")
-       (`trans "[-] ")
-       (_ nil))
-     (and tag (format "%s :: " tag))
-     (when contents
-       (let ((contents (replace-regexp-in-string
-			"\\(^\\)[ \t]*\\S-" ind contents nil nil 1)))
-	 (if item-starts-with-par-p (org-trim contents)
-	   (concat "\n" contents)))))))
-
-
-;;;; Plain List
-
-(defun org-element--list-struct (limit)
-  ;; Return structure of list at point.  Internal function.  See
-  ;; `org-list-struct' for details.
-  (let ((case-fold-search t)
-	(top-ind limit)
-	(item-re (org-item-re))
-	(inlinetask-re (and (featurep 'org-inlinetask) "^\\*+ "))
-	items struct)
-    (save-excursion
-      (catch :exit
-	(while t
-	  (cond
-	   ;; At limit: end all items.
-	   ((>= (point) limit)
-	    (let ((end (progn (skip-chars-backward " \r\t\n")
-			      (line-beginning-position 2))))
-	      (dolist (item items) (setcar (nthcdr 6 item) end)))
-	    (throw :exit (sort (nconc items struct) #'car-less-than-car)))
-	   ;; At list end: end all items.
-	   ((looking-at org-list-end-re)
-	    (dolist (item items) (setcar (nthcdr 6 item) (point)))
-	    (throw :exit (sort (nconc items struct) #'car-less-than-car)))
-	   ;; At a new item: end previous sibling.
-	   ((looking-at item-re)
-	    (let ((ind (save-excursion (skip-chars-forward " \t")
-				       (current-column))))
-	      (setq top-ind (min top-ind ind))
-	      (while (and items (<= ind (nth 1 (car items))))
-		(let ((item (pop items)))
-		  (setcar (nthcdr 6 item) (point))
-		  (push item struct)))
-	      (push (progn (looking-at org-list-full-item-re)
-			   (let ((bullet (match-string-no-properties 1)))
-			     (list (point)
-				   ind
-				   bullet
-				   (match-string-no-properties 2) ; counter
-				   (match-string-no-properties 3) ; checkbox
-				   ;; Description tag.
-				   (and (save-match-data
-					  (string-match "[-+*]" bullet))
-					(match-string-no-properties 4))
-				   ;; Ending position, unknown so far.
-				   nil)))
-		    items))
-	    (forward-line))
-	   ;; Skip empty lines.
-	   ((looking-at "^[ \t]*$") (forward-line))
-	   ;; Skip inline tasks and blank lines along the way.
-	   ((and inlinetask-re (looking-at inlinetask-re))
-	    (forward-line)
-	    (let ((origin (point)))
-	      (when (re-search-forward inlinetask-re limit t)
-		(if (looking-at-p "END[ \t]*$") (forward-line)
-		  (goto-char origin)))))
-	   ;; At some text line.  Check if it ends any previous item.
-	   (t
-	    (let ((ind (save-excursion
-			 (skip-chars-forward " \t")
-			 (current-column)))
-		  (end (save-excursion
-			 (skip-chars-backward " \r\t\n")
-			 (line-beginning-position 2))))
-	      (while (<= ind (nth 1 (car items)))
-		(let ((item (pop items)))
-		  (setcar (nthcdr 6 item) end)
-		  (push item struct)
-		  (unless items
-		    (throw :exit (sort struct #'car-less-than-car))))))
-	    ;; Skip blocks (any type) and drawers contents.
-	    (cond
-	     ((and (looking-at "[ \t]*#\\+BEGIN\\(:\\|_\\S-+\\)")
-		   (re-search-forward
-		    (format "^[ \t]*#\\+END%s[ \t]*$" (match-string 1))
-		    limit t)))
-	     ((and (looking-at org-drawer-regexp)
-		   (re-search-forward "^[ \t]*:END:[ \t]*$" limit t))))
-	    (forward-line))))))))
-
-(defun org-element-plain-list-parser (limit affiliated structure)
-  "Parse a plain list.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.  STRUCTURE is the structure of the plain list being
-parsed.
-
-Return a list whose CAR is `plain-list' and CDR is a plist
-containing `:type', `:begin', `:end', `:contents-begin' and
-`:contents-end', `:structure', `:post-blank' and
-`:post-affiliated' keywords.
-
-Assume point is at the beginning of the list."
-  (save-excursion
-    (let* ((struct (or structure (org-element--list-struct limit)))
-	   (type (cond ((looking-at-p "[ \t]*[A-Za-z0-9]") 'ordered)
-		       ((nth 5 (assq (point) struct)) 'descriptive)
-		       (t 'unordered)))
-	   (contents-begin (point))
-	   (begin (car affiliated))
-	   (contents-end (let* ((item (assq contents-begin struct))
-				(ind (nth 1 item))
-				(pos (nth 6 item)))
-			   (while (and (setq item (assq pos struct))
-				       (= (nth 1 item) ind))
-			     (setq pos (nth 6 item)))
-			   pos))
-	   (end (progn (goto-char contents-end)
-		       (skip-chars-forward " \r\t\n" limit)
-		       (if (= (point) limit) limit (line-beginning-position)))))
-      ;; Return value.
-      (list 'plain-list
-	    (nconc
-	     (list :type type
-		   :begin begin
-		   :end end
-		   :contents-begin contents-begin
-		   :contents-end contents-end
-		   :structure struct
-		   :post-blank (count-lines contents-end end)
-		   :post-affiliated contents-begin)
-	     (cdr affiliated))))))
-
-(defun org-element-plain-list-interpreter (_ contents)
-  "Interpret plain-list element as Org syntax.
-CONTENTS is the contents of the element."
-  (with-temp-buffer
-    (insert contents)
-    (goto-char (point-min))
-    (org-list-repair)
-    (buffer-string)))
-
-
-;;;; Property Drawer
-
-(defun org-element-property-drawer-parser (limit)
-  "Parse a property drawer.
-
-LIMIT bounds the search.
-
-Return a list whose car is `property-drawer' and cdr is a plist
-containing `:begin', `:end', `:contents-begin', `:contents-end',
-`:post-blank' and `:post-affiliated' keywords.
-
-Assume point is at the beginning of the property drawer."
-  (save-excursion
-    (let ((case-fold-search t)
-	  (begin (point))
-	  (contents-begin (line-beginning-position 2)))
-      (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)
-      (let ((contents-end (and (> (match-beginning 0) contents-begin)
-			       (match-beginning 0)))
-	    (before-blank (progn (forward-line) (point)))
-	    (end (progn (skip-chars-forward " \r\t\n" limit)
-			(if (eobp) (point) (line-beginning-position)))))
-	(list 'property-drawer
-	      (list :begin begin
-		    :end end
-		    :contents-begin (and contents-end contents-begin)
-		    :contents-end contents-end
-		    :post-blank (count-lines before-blank end)
-		    :post-affiliated begin))))))
-
-(defun org-element-property-drawer-interpreter (_ contents)
-  "Interpret property-drawer element as Org syntax.
-CONTENTS is the properties within the drawer."
-  (format ":PROPERTIES:\n%s:END:" contents))
-
-
-;;;; Quote Block
-
-(defun org-element-quote-block-parser (limit affiliated)
-  "Parse a quote block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `quote-block' and CDR is a plist
-containing `:begin', `:end', `:contents-begin', `:contents-end',
-`:post-blank' and `:post-affiliated' keywords.
-
-Assume point is at the beginning of the block."
-  (let ((case-fold-search t))
-    (if (not (save-excursion
-	       (re-search-forward "^[ \t]*#\\+END_QUOTE[ \t]*$" limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (let ((block-end-line (match-beginning 0)))
-	(save-excursion
-	  (let* ((begin (car affiliated))
-		 (post-affiliated (point))
-		 ;; Empty blocks have no contents.
-		 (contents-begin (progn (forward-line)
-					(and (< (point) block-end-line)
-					     (point))))
-		 (contents-end (and contents-begin block-end-line))
-		 (pos-before-blank (progn (goto-char block-end-line)
-					  (forward-line)
-					  (point)))
-		 (end (progn (skip-chars-forward " \r\t\n" limit)
-			     (if (eobp) (point) (line-beginning-position)))))
-	    (list 'quote-block
-		  (nconc
-		   (list :begin begin
-			 :end end
-			 :contents-begin contents-begin
-			 :contents-end contents-end
-			 :post-blank (count-lines pos-before-blank end)
-			 :post-affiliated post-affiliated)
-		   (cdr affiliated)))))))))
-
-(defun org-element-quote-block-interpreter (_ contents)
-  "Interpret quote-block element as Org syntax.
-CONTENTS is the contents of the element."
-  (format "#+BEGIN_QUOTE\n%s#+END_QUOTE" contents))
-
-
-;;;; Section
-
-(defun org-element-section-parser (_)
-  "Parse a section.
-
-Return a list whose CAR is `section' and CDR is a plist
-containing `:begin', `:end', `:contents-begin', `contents-end',
-`:post-blank' and `:post-affiliated' keywords."
-  (save-excursion
-    ;; Beginning of section is the beginning of the first non-blank
-    ;; line after previous headline.
-    (let ((begin (point))
-	  (end (progn (org-with-limited-levels (outline-next-heading))
-		      (point)))
-	  (pos-before-blank (progn (skip-chars-backward " \r\t\n")
-				   (line-beginning-position 2))))
-      (list 'section
-	    (list :begin begin
-		  :end end
-		  :contents-begin begin
-		  :contents-end pos-before-blank
-		  :post-blank (count-lines pos-before-blank end)
-		  :post-affiliated begin)))))
-
-(defun org-element-section-interpreter (_ contents)
-  "Interpret section element as Org syntax.
-CONTENTS is the contents of the element."
-  contents)
-
-
-;;;; Special Block
-
-(defun org-element-special-block-parser (limit affiliated)
-  "Parse a special block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `special-block' and CDR is a plist
-containing `:type', `:begin', `:end', `:contents-begin',
-`:contents-end', `:post-blank' and `:post-affiliated' keywords.
-
-Assume point is at the beginning of the block."
-  (let* ((case-fold-search t)
-	 (type (progn (looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
-		      (match-string-no-properties 1))))
-    (if (not (save-excursion
-	       (re-search-forward
-		(format "^[ \t]*#\\+END_%s[ \t]*$" (regexp-quote type))
-		limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (let ((block-end-line (match-beginning 0)))
-	(save-excursion
-	  (let* ((begin (car affiliated))
-		 (post-affiliated (point))
-		 ;; Empty blocks have no contents.
-		 (contents-begin (progn (forward-line)
-					(and (< (point) block-end-line)
-					     (point))))
-		 (contents-end (and contents-begin block-end-line))
-		 (pos-before-blank (progn (goto-char block-end-line)
-					  (forward-line)
-					  (point)))
-		 (end (progn (skip-chars-forward " \r\t\n" limit)
-			     (if (eobp) (point) (line-beginning-position)))))
-	    (list 'special-block
-		  (nconc
-		   (list :type type
-			 :begin begin
-			 :end end
-			 :contents-begin contents-begin
-			 :contents-end contents-end
-			 :post-blank (count-lines pos-before-blank end)
-			 :post-affiliated post-affiliated)
-		   (cdr affiliated)))))))))
-
-(defun org-element-special-block-interpreter (special-block contents)
-  "Interpret SPECIAL-BLOCK element as Org syntax.
-CONTENTS is the contents of the element."
-  (let ((block-type (org-element-property :type special-block)))
-    (format "#+BEGIN_%s\n%s#+END_%s" block-type contents block-type)))
-
-
-
-;;; Elements
-;;
-;; For each element, a parser and an interpreter are also defined.
-;; Both follow the same naming convention used for greater elements.
-;;
-;; Also, as for greater elements, adding a new element type is done
-;; through the following steps: implement a parser and an interpreter,
-;; tweak `org-element--current-element' so that it recognizes the new
-;; type and add that new type to `org-element-all-elements'.
-
-
-;;;; Babel Call
-
-(defun org-element-babel-call-parser (limit affiliated)
-  "Parse a babel call.
-
-LIMIT bounds the search.  AFFILIATED is a list of which car is
-the buffer position at the beginning of the first affiliated
-keyword and cdr is a plist of affiliated keywords along with
-their value.
-
-Return a list whose car is `babel-call' and cdr is a plist
-containing `:call', `:inside-header', `:arguments',
-`:end-header', `:begin', `:end', `:value', `:post-blank' and
-`:post-affiliated' as keywords."
-  (save-excursion
-    (let* ((begin (car affiliated))
-	   (post-affiliated (point))
-	   (before-blank (line-beginning-position 2))
-	   (value (progn (search-forward ":" before-blank t)
-			 (skip-chars-forward " \t")
-			 (org-trim
-			  (buffer-substring-no-properties
-			   (point) (line-end-position)))))
-	   (call
-	    (or (org-string-nw-p
-		 (buffer-substring-no-properties
-		  (point) (progn (skip-chars-forward "^[]()" before-blank)
-				 (point))))))
-	   (inside-header (org-element--parse-paired-brackets ?\[))
-	   (arguments (org-string-nw-p
-		       (org-element--parse-paired-brackets ?\()))
-	   (end-header
-	    (org-string-nw-p
-	     (org-trim
-	      (buffer-substring-no-properties (point) (line-end-position)))))
-	   (end (progn (forward-line)
-		       (skip-chars-forward " \r\t\n" limit)
-		       (if (eobp) (point) (line-beginning-position)))))
-      (list 'babel-call
-	    (nconc
-	     (list :call call
-		   :inside-header inside-header
-		   :arguments arguments
-		   :end-header end-header
-		   :begin begin
-		   :end end
-		   :value value
-		   :post-blank (count-lines before-blank end)
-		   :post-affiliated post-affiliated)
-	     (cdr affiliated))))))
-
-(defun org-element-babel-call-interpreter (babel-call _)
-  "Interpret BABEL-CALL element as Org syntax."
-  (concat "#+CALL: "
-	  (org-element-property :call babel-call)
-	  (let ((h (org-element-property :inside-header babel-call)))
-	    (and h (format "[%s]" h)))
-	  (concat "(" (org-element-property :arguments babel-call) ")")
-	  (let ((h (org-element-property :end-header babel-call)))
-	    (and h (concat " " h)))))
-
-
-;;;; Clock
-
-(defun org-element-clock-parser (limit)
-  "Parse a clock.
-
-LIMIT bounds the search.
-
-Return a list whose CAR is `clock' and CDR is a plist containing
-`:status', `:value', `:time', `:begin', `:end', `:post-blank' and
-`:post-affiliated' as keywords."
-  (save-excursion
-    (let* ((case-fold-search nil)
-	   (begin (point))
-	   (value (progn (search-forward org-clock-string (line-end-position) t)
-			 (skip-chars-forward " \t")
-			 (org-element-timestamp-parser)))
-	   (duration (and (search-forward " => " (line-end-position) t)
-			  (progn (skip-chars-forward " \t")
-				 (looking-at "\\(\\S-+\\)[ \t]*$"))
-			  (match-string-no-properties 1)))
-	   (status (if duration 'closed 'running))
-	   (post-blank (let ((before-blank (progn (forward-line) (point))))
-			 (skip-chars-forward " \r\t\n" limit)
-			 (skip-chars-backward " \t")
-			 (unless (bolp) (end-of-line))
-			 (count-lines before-blank (point))))
-	   (end (point)))
-      (list 'clock
-	    (list :status status
-		  :value value
-		  :duration duration
-		  :begin begin
-		  :end end
-		  :post-blank post-blank
-		  :post-affiliated begin)))))
-
-(defun org-element-clock-interpreter (clock _)
-  "Interpret CLOCK element as Org syntax."
-  (concat org-clock-string " "
-	  (org-element-timestamp-interpreter
-	   (org-element-property :value clock) nil)
-	  (let ((duration (org-element-property :duration clock)))
-	    (and duration
-		 (concat " => "
-			 (apply 'format
-				"%2s:%02s"
-				(org-split-string duration ":")))))))
-
-
-;;;; Comment
-
-(defun org-element-comment-parser (limit affiliated)
-  "Parse a comment.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `comment' and CDR is a plist
-containing `:begin', `:end', `:value', `:post-blank',
-`:post-affiliated' keywords.
-
-Assume point is at comment beginning."
-  (save-excursion
-    (let* ((begin (car affiliated))
-	   (post-affiliated (point))
-	   (value (prog2 (looking-at "[ \t]*# ?")
-		      (buffer-substring-no-properties
-		       (match-end 0) (line-end-position))
-		    (forward-line)))
-	   (com-end
-	    ;; Get comments ending.
-	    (progn
-	      (while (and (< (point) limit) (looking-at "[ \t]*#\\( \\|$\\)"))
-		;; Accumulate lines without leading hash and first
-		;; whitespace.
-		(setq value
-		      (concat value
-			      "\n"
-			      (buffer-substring-no-properties
-			       (match-end 0) (line-end-position))))
-		(forward-line))
-	      (point)))
-	   (end (progn (goto-char com-end)
-		       (skip-chars-forward " \r\t\n" limit)
-		       (if (eobp) (point) (line-beginning-position)))))
-      (list 'comment
-	    (nconc
-	     (list :begin begin
-		   :end end
-		   :value value
-		   :post-blank (count-lines com-end end)
-		   :post-affiliated post-affiliated)
-	     (cdr affiliated))))))
-
-(defun org-element-comment-interpreter (comment _)
-  "Interpret COMMENT element as Org syntax.
-CONTENTS is nil."
-  (replace-regexp-in-string "^" "# " (org-element-property :value comment)))
-
-
-;;;; Comment Block
-
-(defun org-element-comment-block-parser (limit affiliated)
-  "Parse an export block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `comment-block' and CDR is a plist
-containing `:begin', `:end', `:value', `:post-blank' and
-`:post-affiliated' keywords.
-
-Assume point is at comment block beginning."
-  (let ((case-fold-search t))
-    (if (not (save-excursion
-	       (re-search-forward "^[ \t]*#\\+END_COMMENT[ \t]*$" limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (let ((contents-end (match-beginning 0)))
-	(save-excursion
-	  (let* ((begin (car affiliated))
-		 (post-affiliated (point))
-		 (contents-begin (progn (forward-line) (point)))
-		 (pos-before-blank (progn (goto-char contents-end)
-					  (forward-line)
-					  (point)))
-		 (end (progn (skip-chars-forward " \r\t\n" limit)
-			     (if (eobp) (point) (line-beginning-position))))
-		 (value (buffer-substring-no-properties
-			 contents-begin contents-end)))
-	    (list 'comment-block
-		  (nconc
-		   (list :begin begin
-			 :end end
-			 :value value
-			 :post-blank (count-lines pos-before-blank end)
-			 :post-affiliated post-affiliated)
-		   (cdr affiliated)))))))))
-
-(defun org-element-comment-block-interpreter (comment-block _)
-  "Interpret COMMENT-BLOCK element as Org syntax."
-  (format "#+BEGIN_COMMENT\n%s#+END_COMMENT"
-	  (org-element-normalize-string
-	   (org-remove-indentation
-	    (org-element-property :value comment-block)))))
-
-
-;;;; Diary Sexp
-
-(defun org-element-diary-sexp-parser (limit affiliated)
-  "Parse a diary sexp.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `diary-sexp' and CDR is a plist
-containing `:begin', `:end', `:value', `:post-blank' and
-`:post-affiliated' keywords."
-  (save-excursion
-    (let ((begin (car affiliated))
-	  (post-affiliated (point))
-	  (value (progn (looking-at "\\(%%(.*\\)[ \t]*$")
-			(match-string-no-properties 1)))
-	  (pos-before-blank (progn (forward-line) (point)))
-	  (end (progn (skip-chars-forward " \r\t\n" limit)
-		      (if (eobp) (point) (line-beginning-position)))))
-      (list 'diary-sexp
-	    (nconc
-	     (list :value value
-		   :begin begin
-		   :end end
-		   :post-blank (count-lines pos-before-blank end)
-		   :post-affiliated post-affiliated)
-	     (cdr affiliated))))))
-
-(defun org-element-diary-sexp-interpreter (diary-sexp _)
-  "Interpret DIARY-SEXP as Org syntax."
-  (org-element-property :value diary-sexp))
-
-
-;;;; Example Block
-
-(defun org-element-example-block-parser (limit affiliated)
-  "Parse an example block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `example-block' and CDR is a plist
-containing `:begin', `:end', `:number-lines', `:preserve-indent',
-`:retain-labels', `:use-labels', `:label-fmt', `:switches',
-`:value', `:post-blank' and `:post-affiliated' keywords."
-  (let ((case-fold-search t))
-    (if (not (save-excursion
-	       (re-search-forward "^[ \t]*#\\+END_EXAMPLE[ \t]*$" limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (let ((contents-end (match-beginning 0)))
-	(save-excursion
-	  (let* ((switches
-		  (progn
-		    (looking-at "^[ \t]*#\\+BEGIN_EXAMPLE\\(?: +\\(.*\\)\\)?")
-		    (match-string-no-properties 1)))
-		 ;; Switches analysis.
-		 (number-lines
-		  (and switches
-		       (string-match "\\([-+]\\)n\\(?: *\\([0-9]+\\)\\)?\\>"
-				     switches)
-		       (cons
-			(if (equal (match-string 1 switches) "-")
-			    'new
-			  'continued)
-			(if (not (match-end 2)) 0
-			  ;; Subtract 1 to give number of lines before
-			  ;; first line.
-			  (1- (string-to-number (match-string 2 switches)))))))
-		 (preserve-indent
-		  (and switches (string-match "-i\\>" switches)))
-		 ;; Should labels be retained in (or stripped from) example
-		 ;; blocks?
-		 (retain-labels
-		  (or (not switches)
-		      (not (string-match "-r\\>" switches))
-		      (and number-lines (string-match "-k\\>" switches))))
-		 ;; What should code-references use - labels or
-		 ;; line-numbers?
-		 (use-labels
-		  (or (not switches)
-		      (and retain-labels
-			   (not (string-match "-k\\>" switches)))))
-		 (label-fmt
-		  (and switches
-		       (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
-		       (match-string 1 switches)))
-		 ;; Standard block parsing.
-		 (begin (car affiliated))
-		 (post-affiliated (point))
-		 (contents-begin (line-beginning-position 2))
-		 (value (org-unescape-code-in-string
-			 (buffer-substring-no-properties
-			  contents-begin contents-end)))
-		 (pos-before-blank (progn (goto-char contents-end)
-					  (forward-line)
-					  (point)))
-		 (end (progn (skip-chars-forward " \r\t\n" limit)
-			     (if (eobp) (point) (line-beginning-position)))))
-	    (list 'example-block
-		  (nconc
-		   (list :begin begin
-			 :end end
-			 :value value
-			 :switches switches
-			 :number-lines number-lines
-			 :preserve-indent preserve-indent
-			 :retain-labels retain-labels
-			 :use-labels use-labels
-			 :label-fmt label-fmt
-			 :post-blank (count-lines pos-before-blank end)
-			 :post-affiliated post-affiliated)
-		   (cdr affiliated)))))))))
-
-(defun org-element-example-block-interpreter (example-block _)
-  "Interpret EXAMPLE-BLOCK element as Org syntax."
-  (let ((switches (org-element-property :switches example-block))
-	(value (org-element-property :value example-block)))
-    (concat "#+BEGIN_EXAMPLE" (and switches (concat " " switches)) "\n"
-	    (org-element-normalize-string
-	     (org-escape-code-in-string
-	      (if (or org-src-preserve-indentation
-		      (org-element-property :preserve-indent example-block))
-		  value
-		(org-remove-indentation value))))
-	    "#+END_EXAMPLE")))
-
-
-;;;; Export Block
-
-(defun org-element-export-block-parser (limit affiliated)
-  "Parse an export block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `export-block' and CDR is a plist
-containing `:begin', `:end', `:type', `:value', `:post-blank' and
-`:post-affiliated' keywords.
-
-Assume point is at export-block beginning."
-  (let* ((case-fold-search t))
-    (if (not (save-excursion
-	       (re-search-forward "^[ \t]*#\\+END_EXPORT[ \t]*$" limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (save-excursion
-	(let* ((contents-end (match-beginning 0))
-	       (backend
-		(progn
-		  (looking-at
-		   "[ \t]*#\\+BEGIN_EXPORT\\(?:[ \t]+\\(\\S-+\\)\\)?[ \t]*$")
-		  (match-string-no-properties 1)))
-	       (begin (car affiliated))
-	       (post-affiliated (point))
-	       (contents-begin (progn (forward-line) (point)))
-	       (pos-before-blank (progn (goto-char contents-end)
-					(forward-line)
-					(point)))
-	       (end (progn (skip-chars-forward " \r\t\n" limit)
-			   (if (eobp) (point) (line-beginning-position))))
-	       (value (org-unescape-code-in-string
-		       (buffer-substring-no-properties contents-begin
-						       contents-end))))
-	  (list 'export-block
-		(nconc
-		 (list :type (and backend (upcase backend))
-		       :begin begin
-		       :end end
-		       :value value
-		       :post-blank (count-lines pos-before-blank end)
-		       :post-affiliated post-affiliated)
-		 (cdr affiliated))))))))
-
-(defun org-element-export-block-interpreter (export-block _)
-  "Interpret EXPORT-BLOCK element as Org syntax."
-  (format "#+BEGIN_EXPORT %s\n%s#+END_EXPORT"
-	  (org-element-property :type export-block)
-	  (org-element-property :value export-block)))
-
-
-;;;; Fixed-width
-
-(defun org-element-fixed-width-parser (limit affiliated)
-  "Parse a fixed-width section.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `fixed-width' and CDR is a plist
-containing `:begin', `:end', `:value', `:post-blank' and
-`:post-affiliated' keywords.
-
-Assume point is at the beginning of the fixed-width area."
-  (save-excursion
-    (let* ((begin (car affiliated))
-	   (post-affiliated (point))
-	   value
-	   (end-area
-	    (progn
-	      (while (and (< (point) limit)
-			  (looking-at "[ \t]*:\\( \\|$\\)"))
-		;; Accumulate text without starting colons.
-		(setq value
-		      (concat value
-			      (buffer-substring-no-properties
-			       (match-end 0) (point-at-eol))
-			      "\n"))
-		(forward-line))
-	      (point)))
-	   (end (progn (skip-chars-forward " \r\t\n" limit)
-		       (if (eobp) (point) (line-beginning-position)))))
-      (list 'fixed-width
-	    (nconc
-	     (list :begin begin
-		   :end end
-		   :value value
-		   :post-blank (count-lines end-area end)
-		   :post-affiliated post-affiliated)
-	     (cdr affiliated))))))
-
-(defun org-element-fixed-width-interpreter (fixed-width _)
-  "Interpret FIXED-WIDTH element as Org syntax."
-  (let ((value (org-element-property :value fixed-width)))
-    (and value
-	 (replace-regexp-in-string
-	  "^" ": "
-	  (if (string-match "\n\\'" value) (substring value 0 -1) value)))))
-
-
-;;;; Horizontal Rule
-
-(defun org-element-horizontal-rule-parser (limit affiliated)
-  "Parse an horizontal rule.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `horizontal-rule' and CDR is a plist
-containing `:begin', `:end', `:post-blank' and `:post-affiliated'
-keywords."
-  (save-excursion
-    (let ((begin (car affiliated))
-	  (post-affiliated (point))
-	  (post-hr (progn (forward-line) (point)))
-	  (end (progn (skip-chars-forward " \r\t\n" limit)
-		      (if (eobp) (point) (line-beginning-position)))))
-      (list 'horizontal-rule
-	    (nconc
-	     (list :begin begin
-		   :end end
-		   :post-blank (count-lines post-hr end)
-		   :post-affiliated post-affiliated)
-	     (cdr affiliated))))))
-
-(defun org-element-horizontal-rule-interpreter (&rest _)
-  "Interpret HORIZONTAL-RULE element as Org syntax."
-  "-----")
-
-
-;;;; Keyword
-
-(defun org-element-keyword-parser (limit affiliated)
-  "Parse a keyword at point.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `keyword' and CDR is a plist
-containing `:key', `:value', `:begin', `:end', `:post-blank' and
-`:post-affiliated' keywords."
-  (save-excursion
-    ;; An orphaned affiliated keyword is considered as a regular
-    ;; keyword.  In this case AFFILIATED is nil, so we take care of
-    ;; this corner case.
-    (let ((begin (or (car affiliated) (point)))
-	  (post-affiliated (point))
-	  (key (progn (looking-at "[ \t]*#\\+\\(\\S-+*\\):")
-		      (upcase (match-string-no-properties 1))))
-	  (value (org-trim (buffer-substring-no-properties
-			    (match-end 0) (point-at-eol))))
-	  (pos-before-blank (progn (forward-line) (point)))
-	  (end (progn (skip-chars-forward " \r\t\n" limit)
-		      (if (eobp) (point) (line-beginning-position)))))
-      (list 'keyword
-	    (nconc
-	     (list :key key
-		   :value value
-		   :begin begin
-		   :end end
-		   :post-blank (count-lines pos-before-blank end)
-		   :post-affiliated post-affiliated)
-	     (cdr affiliated))))))
-
-(defun org-element-keyword-interpreter (keyword _)
-  "Interpret KEYWORD element as Org syntax."
-  (format "#+%s: %s"
-	  (org-element-property :key keyword)
-	  (org-element-property :value keyword)))
-
-
-;;;; Latex Environment
-
-(defconst org-element--latex-begin-environment
-  "^[ \t]*\\\\begin{\\([A-Za-z0-9*]+\\)}"
-  "Regexp matching the beginning of a LaTeX environment.
-The environment is captured by the first group.
-
-See also `org-element--latex-end-environment'.")
-
-(defconst org-element--latex-end-environment
-  "\\\\end{%s}[ \t]*$"
-  "Format string matching the ending of a LaTeX environment.
-See also `org-element--latex-begin-environment'.")
-
-(defun org-element-latex-environment-parser (limit affiliated)
-  "Parse a LaTeX environment.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `latex-environment' and CDR is a plist
-containing `:begin', `:end', `:value', `:post-blank' and
-`:post-affiliated' keywords.
-
-Assume point is at the beginning of the latex environment."
-  (save-excursion
-    (let ((case-fold-search t)
-	  (code-begin (point)))
-      (looking-at org-element--latex-begin-environment)
-      (if (not (re-search-forward (format org-element--latex-end-environment
-					  (regexp-quote (match-string 1)))
-				  limit t))
-	  ;; Incomplete latex environment: parse it as a paragraph.
-	  (org-element-paragraph-parser limit affiliated)
-	(let* ((code-end (progn (forward-line) (point)))
-	       (begin (car affiliated))
-	       (value (buffer-substring-no-properties code-begin code-end))
-	       (end (progn (skip-chars-forward " \r\t\n" limit)
-			   (if (eobp) (point) (line-beginning-position)))))
-	  (list 'latex-environment
-		(nconc
-		 (list :begin begin
-		       :end end
-		       :value value
-		       :post-blank (count-lines code-end end)
-		       :post-affiliated code-begin)
-		 (cdr affiliated))))))))
-
-(defun org-element-latex-environment-interpreter (latex-environment _)
-  "Interpret LATEX-ENVIRONMENT element as Org syntax."
-  (org-element-property :value latex-environment))
-
-
-;;;; Node Property
-
-(defun org-element-node-property-parser (limit)
-  "Parse a node-property at point.
-
-LIMIT bounds the search.
-
-Return a list whose CAR is `node-property' and CDR is a plist
-containing `:key', `:value', `:begin', `:end', `:post-blank' and
-`:post-affiliated' keywords."
-  (looking-at org-property-re)
-  (let ((case-fold-search t)
-	(begin (point))
-	(key   (match-string-no-properties 2))
-	(value (match-string-no-properties 3))
-	(end (save-excursion
-	       (end-of-line)
-	       (if (re-search-forward org-property-re limit t)
-		   (line-beginning-position)
-		 limit))))
-    (list 'node-property
-	  (list :key key
-		:value value
-		:begin begin
-		:end end
-		:post-blank 0
-		:post-affiliated begin))))
-
-(defun org-element-node-property-interpreter (node-property _)
-  "Interpret NODE-PROPERTY element as Org syntax."
-  (format org-property-format
-	  (format ":%s:" (org-element-property :key node-property))
-	  (or (org-element-property :value node-property) "")))
-
-
-;;;; Paragraph
-
-(defun org-element-paragraph-parser (limit affiliated)
-  "Parse a paragraph.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `paragraph' and CDR is a plist
-containing `:begin', `:end', `:contents-begin' and
-`:contents-end', `:post-blank' and `:post-affiliated' keywords.
-
-Assume point is at the beginning of the paragraph."
-  (save-excursion
-    (let* ((begin (car affiliated))
-	   (contents-begin (point))
-	   (before-blank
-	    (let ((case-fold-search t))
-	      (end-of-line)
-	      ;; A matching `org-element-paragraph-separate' is not
-	      ;; necessarily the end of the paragraph.  In particular,
-	      ;; drawers, blocks or LaTeX environments opening lines
-	      ;; must be closed.  Moreover keywords with a secondary
-	      ;; value must belong to "dual keywords".
-	      (while (not
-		      (cond
-		       ((not (and (re-search-forward
-				   org-element-paragraph-separate limit 'move)
-				  (progn (beginning-of-line) t))))
-		       ((looking-at org-drawer-regexp)
-			(save-excursion
-			  (re-search-forward "^[ \t]*:END:[ \t]*$" limit t)))
-		       ((looking-at "[ \t]*#\\+BEGIN_\\(\\S-+\\)")
-			(save-excursion
-			  (re-search-forward
-			   (format "^[ \t]*#\\+END_%s[ \t]*$"
-				   (regexp-quote (match-string 1)))
-			   limit t)))
-		       ((looking-at org-element--latex-begin-environment)
-			(save-excursion
-			  (re-search-forward
-			   (format org-element--latex-end-environment
-				   (regexp-quote (match-string 1)))
-			   limit t)))
-		       ((looking-at "[ \t]*#\\+\\(\\S-+\\)\\[.*\\]:")
-			(member-ignore-case (match-string 1)
-					    org-element-dual-keywords))
-		       ;; Everything else is unambiguous.
-		       (t)))
-		(end-of-line))
-	      (if (= (point) limit) limit
-		(goto-char (line-beginning-position)))))
-	   (contents-end (save-excursion
-			   (skip-chars-backward " \r\t\n" contents-begin)
-			   (line-beginning-position 2)))
-	   (end (progn (skip-chars-forward " \r\t\n" limit)
-		       (if (eobp) (point) (line-beginning-position)))))
-      (list 'paragraph
-	    (nconc
-	     (list :begin begin
-		   :end end
-		   :contents-begin contents-begin
-		   :contents-end contents-end
-		   :post-blank (count-lines before-blank end)
-		   :post-affiliated contents-begin)
-	     (cdr affiliated))))))
-
-(defun org-element-paragraph-interpreter (_ contents)
-  "Interpret paragraph element as Org syntax.
-CONTENTS is the contents of the element."
-  contents)
-
-
-;;;; Planning
-
-(defun org-element-planning-parser (limit)
-  "Parse a planning.
-
-LIMIT bounds the search.
-
-Return a list whose CAR is `planning' and CDR is a plist
-containing `:closed', `:deadline', `:scheduled', `:begin',
-`:end', `:post-blank' and `:post-affiliated' keywords."
-  (save-excursion
-    (let* ((case-fold-search nil)
-	   (begin (point))
-	   (post-blank (let ((before-blank (progn (forward-line) (point))))
-			 (skip-chars-forward " \r\t\n" limit)
-			 (skip-chars-backward " \t")
-			 (unless (bolp) (end-of-line))
-			 (count-lines before-blank (point))))
-	   (end (point))
-	   closed deadline scheduled)
-      (goto-char begin)
-      (while (re-search-forward org-keyword-time-not-clock-regexp end t)
-	(goto-char (match-end 1))
-	(skip-chars-forward " \t" end)
-	(let ((keyword (match-string 1))
-	      (time (org-element-timestamp-parser)))
-	  (cond ((equal keyword org-closed-string) (setq closed time))
-		((equal keyword org-deadline-string) (setq deadline time))
-		(t (setq scheduled time)))))
-      (list 'planning
-	    (list :closed closed
-		  :deadline deadline
-		  :scheduled scheduled
-		  :begin begin
-		  :end end
-		  :post-blank post-blank
-		  :post-affiliated begin)))))
-
-(defun org-element-planning-interpreter (planning _)
-  "Interpret PLANNING element as Org syntax."
-  (mapconcat
-   #'identity
-   (delq nil
-	 (list (let ((deadline (org-element-property :deadline planning)))
-		 (when deadline
-		   (concat org-deadline-string " "
-			   (org-element-timestamp-interpreter deadline nil))))
-	       (let ((scheduled (org-element-property :scheduled planning)))
-		 (when scheduled
-		   (concat org-scheduled-string " "
-			   (org-element-timestamp-interpreter scheduled nil))))
-	       (let ((closed (org-element-property :closed planning)))
-		 (when closed
-		   (concat org-closed-string " "
-			   (org-element-timestamp-interpreter closed nil))))))
-   " "))
-
-
-;;;; Src Block
-
-(defun org-element-src-block-parser (limit affiliated)
-  "Parse a src block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `src-block' and CDR is a plist
-containing `:language', `:switches', `:parameters', `:begin',
-`:end', `:number-lines', `:retain-labels', `:use-labels',
-`:label-fmt', `:preserve-indent', `:value', `:post-blank' and
-`:post-affiliated' keywords.
-
-Assume point is at the beginning of the block."
-  (let ((case-fold-search t))
-    (if (not (save-excursion (re-search-forward "^[ \t]*#\\+END_SRC[ \t]*$"
-						limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (let ((contents-end (match-beginning 0)))
-	(save-excursion
-	  (let* ((begin (car affiliated))
-		 (post-affiliated (point))
-		 ;; Get language as a string.
-		 (language
-		  (progn
-		    (looking-at
-		     "^[ \t]*#\\+BEGIN_SRC\
-\\(?: +\\(\\S-+\\)\\)?\
-\\(\\(?: +\\(?:-\\(?:l \".+\"\\|[ikr]\\)\\|[-+]n\\(?: *[0-9]+\\)?\\)\\)+\\)?\
-\\(.*\\)[ \t]*$")
-		    (match-string-no-properties 1)))
-		 ;; Get switches.
-		 (switches (match-string-no-properties 2))
-		 ;; Get parameters.
-		 (parameters (match-string-no-properties 3))
-		 ;; Switches analysis.
-		 (number-lines
-		  (and switches
-		       (string-match "\\([-+]\\)n\\(?: *\\([0-9]+\\)\\)?\\>"
-				     switches)
-		       (cons
-			(if (equal (match-string 1 switches) "-")
-			    'new
-			  'continued)
-			(if (not (match-end 2)) 0
-			  ;; Subtract 1 to give number of lines before
-			  ;; first line.
-			  (1- (string-to-number (match-string 2 switches)))))))
-		 (preserve-indent (and switches
-				       (string-match "-i\\>" switches)))
-		 (label-fmt
-		  (and switches
-		       (string-match "-l +\"\\([^\"\n]+\\)\"" switches)
-		       (match-string 1 switches)))
-		 ;; Should labels be retained in (or stripped from)
-		 ;; src blocks?
-		 (retain-labels
-		  (or (not switches)
-		      (not (string-match "-r\\>" switches))
-		      (and number-lines (string-match "-k\\>" switches))))
-		 ;; What should code-references use - labels or
-		 ;; line-numbers?
-		 (use-labels
-		  (or (not switches)
-		      (and retain-labels
-			   (not (string-match "-k\\>" switches)))))
-		 ;; Retrieve code.
-		 (value (org-unescape-code-in-string
-			 (buffer-substring-no-properties
-			  (line-beginning-position 2) contents-end)))
-		 (pos-before-blank (progn (goto-char contents-end)
-					  (forward-line)
-					  (point)))
-		 ;; Get position after ending blank lines.
-		 (end (progn (skip-chars-forward " \r\t\n" limit)
-			     (if (eobp) (point) (line-beginning-position)))))
-	    (list 'src-block
-		  (nconc
-		   (list :language language
-			 :switches (and (org-string-nw-p switches)
-					(org-trim switches))
-			 :parameters (and (org-string-nw-p parameters)
-					  (org-trim parameters))
-			 :begin begin
-			 :end end
-			 :number-lines number-lines
-			 :preserve-indent preserve-indent
-			 :retain-labels retain-labels
-			 :use-labels use-labels
-			 :label-fmt label-fmt
-			 :value value
-			 :post-blank (count-lines pos-before-blank end)
-			 :post-affiliated post-affiliated)
-		   (cdr affiliated)))))))))
-
-(defun org-element-src-block-interpreter (src-block _)
-  "Interpret SRC-BLOCK element as Org syntax."
-  (let ((lang (org-element-property :language src-block))
-	(switches (org-element-property :switches src-block))
-	(params (org-element-property :parameters src-block))
-	(value
-	 (let ((val (org-element-property :value src-block)))
-	   (cond
-	    ((or org-src-preserve-indentation
-		 (org-element-property :preserve-indent src-block))
-	     val)
-	    ((zerop org-edit-src-content-indentation)
-	     (org-remove-indentation val))
-	    (t
-	     (let ((ind (make-string org-edit-src-content-indentation ?\s)))
-	       (replace-regexp-in-string
-		"^" ind (org-remove-indentation val))))))))
-    (concat (format "#+BEGIN_SRC%s\n"
-		    (concat (and lang (concat " " lang))
-			    (and switches (concat " " switches))
-			    (and params (concat " " params))))
-	    (org-element-normalize-string (org-escape-code-in-string value))
-	    "#+END_SRC")))
-
-
-;;;; Table
-
-(defun org-element-table-parser (limit affiliated)
-  "Parse a table at point.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `table' and CDR is a plist containing
-`:begin', `:end', `:tblfm', `:type', `:contents-begin',
-`:contents-end', `:value', `:post-blank' and `:post-affiliated'
-keywords.
-
-Assume point is at the beginning of the table."
-  (save-excursion
-    (let* ((case-fold-search t)
-	   (table-begin (point))
-	   (type (if (looking-at "[ \t]*|") 'org 'table.el))
-           (end-re (format "^[ \t]*\\($\\|[^| \t%s]\\)"
-			   (if (eq type 'org) "" "+")))
-	   (begin (car affiliated))
-	   (table-end
-	    (if (re-search-forward end-re limit 'move)
-		(goto-char (match-beginning 0))
-	      (point)))
-	   (tblfm (let (acc)
-		    (while (looking-at "[ \t]*#\\+TBLFM: +\\(.*\\)[ \t]*$")
-		      (push (match-string-no-properties 1) acc)
-		      (forward-line))
-		    acc))
-	   (pos-before-blank (point))
-	   (end (progn (skip-chars-forward " \r\t\n" limit)
-		       (if (eobp) (point) (line-beginning-position)))))
-      (list 'table
-	    (nconc
-	     (list :begin begin
-		   :end end
-		   :type type
-		   :tblfm tblfm
-		   ;; Only `org' tables have contents.  `table.el' tables
-		   ;; use a `:value' property to store raw table as
-		   ;; a string.
-		   :contents-begin (and (eq type 'org) table-begin)
-		   :contents-end (and (eq type 'org) table-end)
-		   :value (and (eq type 'table.el)
-			       (buffer-substring-no-properties
-				table-begin table-end))
-		   :post-blank (count-lines pos-before-blank end)
-		   :post-affiliated table-begin)
-	     (cdr affiliated))))))
-
-(defun org-element-table-interpreter (table contents)
-  "Interpret TABLE element as Org syntax.
-CONTENTS is a string, if table's type is `org', or nil."
-  (if (eq (org-element-property :type table) 'table.el)
-      (org-remove-indentation (org-element-property :value table))
-    (concat (with-temp-buffer (insert contents)
-			      (org-table-align)
-			      (buffer-string))
-	    (mapconcat (lambda (fm) (concat "#+TBLFM: " fm))
-		       (reverse (org-element-property :tblfm table))
-		       "\n"))))
-
-
-;;;; Table Row
-
-(defun org-element-table-row-parser (_)
-  "Parse table row at point.
-
-Return a list whose CAR is `table-row' and CDR is a plist
-containing `:begin', `:end', `:contents-begin', `:contents-end',
-`:type', `:post-blank' and `:post-affiliated' keywords."
-  (save-excursion
-    (let* ((type (if (looking-at "^[ \t]*|-") 'rule 'standard))
-	   (begin (point))
-	   ;; A table rule has no contents.  In that case, ensure
-	   ;; CONTENTS-BEGIN matches CONTENTS-END.
-	   (contents-begin (and (eq type 'standard) (search-forward "|")))
-	   (contents-end (and (eq type 'standard)
-			      (progn
-				(end-of-line)
-				(skip-chars-backward " \t")
-				(point))))
-	   (end (line-beginning-position 2)))
-      (list 'table-row
-	    (list :type type
-		  :begin begin
-		  :end end
-		  :contents-begin contents-begin
-		  :contents-end contents-end
-		  :post-blank 0
-		  :post-affiliated begin)))))
-
-(defun org-element-table-row-interpreter (table-row contents)
-  "Interpret TABLE-ROW element as Org syntax.
-CONTENTS is the contents of the table row."
-  (if (eq (org-element-property :type table-row) 'rule) "|-"
-    (concat "|" contents)))
-
-
-;;;; Verse Block
-
-(defun org-element-verse-block-parser (limit affiliated)
-  "Parse a verse block.
-
-LIMIT bounds the search.  AFFILIATED is a list of which CAR is
-the buffer position at the beginning of the first affiliated
-keyword and CDR is a plist of affiliated keywords along with
-their value.
-
-Return a list whose CAR is `verse-block' and CDR is a plist
-containing `:begin', `:end', `:contents-begin', `:contents-end',
-`:post-blank' and `:post-affiliated' keywords.
-
-Assume point is at beginning of the block."
-  (let ((case-fold-search t))
-    (if (not (save-excursion
-	       (re-search-forward "^[ \t]*#\\+END_VERSE[ \t]*$" limit t)))
-	;; Incomplete block: parse it as a paragraph.
-	(org-element-paragraph-parser limit affiliated)
-      (let ((contents-end (match-beginning 0)))
-	(save-excursion
-	  (let* ((begin (car affiliated))
-		 (post-affiliated (point))
-		 (contents-begin (progn (forward-line) (point)))
-		 (pos-before-blank (progn (goto-char contents-end)
-					  (forward-line)
-					  (point)))
-		 (end (progn (skip-chars-forward " \r\t\n" limit)
-			     (if (eobp) (point) (line-beginning-position)))))
-	    (list 'verse-block
-		  (nconc
-		   (list :begin begin
-			 :end end
-			 :contents-begin contents-begin
-			 :contents-end contents-end
-			 :post-blank (count-lines pos-before-blank end)
-			 :post-affiliated post-affiliated)
-		   (cdr affiliated)))))))))
-
-(defun org-element-verse-block-interpreter (_ contents)
-  "Interpret verse-block element as Org syntax.
-CONTENTS is verse block contents."
-  (format "#+BEGIN_VERSE\n%s#+END_VERSE" contents))
-
-
-
-;;; Objects
-;;
-;; Unlike to elements, raw text can be found between objects.  Hence,
-;; `org-element--object-lex' is provided to find the next object in
-;; buffer.
-;;
-;; Some object types (e.g., `italic') are recursive.  Restrictions on
-;; object types they can contain will be specified in
-;; `org-element-object-restrictions'.
-;;
-;; Creating a new type of object requires to alter
-;; `org-element--object-regexp' and `org-element--object-lex', add the
-;; new type in `org-element-all-objects', and possibly add
-;; restrictions in `org-element-object-restrictions'.
-
-;;;; Bold
-
-(defun org-element-bold-parser ()
-  "Parse bold object at point, if any.
-
-When at a bold object, return a list whose car is `bold' and cdr
-is a plist with `:begin', `:end', `:contents-begin' and
-`:contents-end' and `:post-blank' keywords.  Otherwise, return
-nil.
-
-Assume point is at the first star marker."
-  (save-excursion
-    (unless (bolp) (backward-char 1))
-    (when (looking-at org-emph-re)
-      (let ((begin (match-beginning 2))
-	    (contents-begin (match-beginning 4))
-	    (contents-end (match-end 4))
-	    (post-blank (progn (goto-char (match-end 2))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'bold
-	      (list :begin begin
-		    :end end
-		    :contents-begin contents-begin
-		    :contents-end contents-end
-		    :post-blank post-blank))))))
-
-(defun org-element-bold-interpreter (_ contents)
-  "Interpret bold object as Org syntax.
-CONTENTS is the contents of the object."
-  (format "*%s*" contents))
-
-
-;;;; Code
-
-(defun org-element-code-parser ()
-  "Parse code object at point, if any.
-
-When at a code object, return a list whose car is `code' and cdr
-is a plist with `:value', `:begin', `:end' and `:post-blank'
-keywords.  Otherwise, return nil.
-
-Assume point is at the first tilde marker."
-  (save-excursion
-    (unless (bolp) (backward-char 1))
-    (when (looking-at org-verbatim-re)
-      (let ((begin (match-beginning 2))
-	    (value (match-string-no-properties 4))
-	    (post-blank (progn (goto-char (match-end 2))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'code
-	      (list :value value
-		    :begin begin
-		    :end end
-		    :post-blank post-blank))))))
-
-(defun org-element-code-interpreter (code _)
-  "Interpret CODE object as Org syntax."
-  (format "~%s~" (org-element-property :value code)))
-
-
-;;;; Entity
-
-(defun org-element-entity-parser ()
-  "Parse entity at point, if any.
-
-When at an entity, return a list whose car is `entity' and cdr
-a plist with `:begin', `:end', `:latex', `:latex-math-p',
-`:html', `:latin1', `:utf-8', `:ascii', `:use-brackets-p' and
-`:post-blank' as keywords.  Otherwise, return nil.
-
-Assume point is at the beginning of the entity."
-  (catch 'no-object
-    (when (looking-at "\\\\\\(?:\\(?1:_ +\\)\\|\\(?1:there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\(?2:$\\|{}\\|[^[:alpha:]]\\)\\)")
-      (save-excursion
-	(let* ((value (or (org-entity-get (match-string 1))
-			  (throw 'no-object nil)))
-	       (begin (match-beginning 0))
-	       (bracketsp (string= (match-string 2) "{}"))
-	       (post-blank (progn (goto-char (match-end 1))
-				  (when bracketsp (forward-char 2))
-				  (skip-chars-forward " \t")))
-	       (end (point)))
-	  (list 'entity
-		(list :name (car value)
-		      :latex (nth 1 value)
-		      :latex-math-p (nth 2 value)
-		      :html (nth 3 value)
-		      :ascii (nth 4 value)
-		      :latin1 (nth 5 value)
-		      :utf-8 (nth 6 value)
-		      :begin begin
-		      :end end
-		      :use-brackets-p bracketsp
-		      :post-blank post-blank)))))))
-
-(defun org-element-entity-interpreter (entity _)
-  "Interpret ENTITY object as Org syntax."
-  (concat "\\"
-	  (org-element-property :name entity)
-	  (when (org-element-property :use-brackets-p entity) "{}")))
-
-
-;;;; Export Snippet
-
-(defun org-element-export-snippet-parser ()
-  "Parse export snippet at point.
-
-When at an export snippet, return a list whose car is
-`export-snippet' and cdr a plist with `:begin', `:end',
-`:back-end', `:value' and `:post-blank' as keywords.  Otherwise,
-return nil.
-
-Assume point is at the beginning of the snippet."
-  (save-excursion
-    (let (contents-end)
-      (when (and (looking-at "@@\\([-A-Za-z0-9]+\\):")
-		 (setq contents-end
-		       (save-match-data (goto-char (match-end 0))
-					(re-search-forward "@@" nil t)
-					(match-beginning 0))))
-	(let* ((begin (match-beginning 0))
-	       (back-end (match-string-no-properties 1))
-	       (value (buffer-substring-no-properties
-		       (match-end 0) contents-end))
-	       (post-blank (skip-chars-forward " \t"))
-	       (end (point)))
-	  (list 'export-snippet
-		(list :back-end back-end
-		      :value value
-		      :begin begin
-		      :end end
-		      :post-blank post-blank)))))))
-
-(defun org-element-export-snippet-interpreter (export-snippet _)
-  "Interpret EXPORT-SNIPPET object as Org syntax."
-  (format "@@%s:%s@@"
-	  (org-element-property :back-end export-snippet)
-	  (org-element-property :value export-snippet)))
-
-
-;;;; Footnote Reference
-
-(defun org-element-footnote-reference-parser ()
-  "Parse footnote reference at point, if any.
-
-When at a footnote reference, return a list whose car is
-`footnote-reference' and cdr a plist with `:label', `:type',
-`:begin', `:end', `:content-begin', `:contents-end' and
-`:post-blank' as keywords.  Otherwise, return nil."
-  (when (looking-at org-footnote-re)
-    (let ((closing (with-syntax-table org-element--pair-square-table
-		     (ignore-errors (scan-lists (point) 1 0)))))
-      (when closing
-	(save-excursion
-	  (let* ((begin (point))
-		 (label (match-string-no-properties 1))
-		 (inner-begin (match-end 0))
-		 (inner-end (1- closing))
-		 (type (if (match-end 2) 'inline 'standard))
-		 (post-blank (progn (goto-char closing)
-				    (skip-chars-forward " \t")))
-		 (end (point)))
-	    (list 'footnote-reference
-		  (list :label label
-			:type type
-			:begin begin
-			:end end
-			:contents-begin (and (eq type 'inline) inner-begin)
-			:contents-end (and (eq type 'inline) inner-end)
-			:post-blank post-blank))))))))
-
-(defun org-element-footnote-reference-interpreter (footnote-reference contents)
-  "Interpret FOOTNOTE-REFERENCE object as Org syntax.
-CONTENTS is its definition, when inline, or nil."
-  (format "[fn:%s%s]"
-	  (or (org-element-property :label footnote-reference) "")
-	  (if contents (concat ":" contents) "")))
-
-
-;;;; Inline Babel Call
-
-(defun org-element-inline-babel-call-parser ()
-  "Parse inline babel call at point, if any.
-
-When at an inline babel call, return a list whose car is
-`inline-babel-call' and cdr a plist with `:call',
-`:inside-header', `:arguments', `:end-header', `:begin', `:end',
-`:value' and `:post-blank' as keywords.  Otherwise, return nil.
-
-Assume point is at the beginning of the babel call."
-  (save-excursion
-    (catch :no-object
-      (when (let ((case-fold-search nil))
-	      (looking-at "\\<call_\\([^ \t\n[(]+\\)[([]"))
-	(goto-char (match-end 1))
-	(let* ((begin (match-beginning 0))
-	       (call (match-string-no-properties 1))
-	       (inside-header
-		(let ((p (org-element--parse-paired-brackets ?\[)))
-		  (and (org-string-nw-p p)
-		       (replace-regexp-in-string "\n[ \t]*" " " (org-trim p)))))
-	       (arguments (org-string-nw-p
-			   (or (org-element--parse-paired-brackets ?\()
-			       ;; Parenthesis are mandatory.
-			       (throw :no-object nil))))
-	       (end-header
-		(let ((p (org-element--parse-paired-brackets ?\[)))
-		  (and (org-string-nw-p p)
-		       (replace-regexp-in-string "\n[ \t]*" " " (org-trim p)))))
-	       (value (buffer-substring-no-properties begin (point)))
-	       (post-blank (skip-chars-forward " \t"))
-	       (end (point)))
-	  (list 'inline-babel-call
-		(list :call call
-		      :inside-header inside-header
-		      :arguments arguments
-		      :end-header end-header
-		      :begin begin
-		      :end end
-		      :value value
-		      :post-blank post-blank)))))))
-
-(defun org-element-inline-babel-call-interpreter (inline-babel-call _)
-  "Interpret INLINE-BABEL-CALL object as Org syntax."
-  (concat "call_"
-	  (org-element-property :call inline-babel-call)
-	  (let ((h (org-element-property :inside-header inline-babel-call)))
-	    (and h (format "[%s]" h)))
-	  "(" (org-element-property :arguments inline-babel-call) ")"
-	  (let ((h (org-element-property :end-header inline-babel-call)))
-	    (and h (format "[%s]" h)))))
-
-
-;;;; Inline Src Block
-
-(defun org-element-inline-src-block-parser ()
-  "Parse inline source block at point, if any.
-
-When at an inline source block, return a list whose car is
-`inline-src-block' and cdr a plist with `:begin', `:end',
-`:language', `:value', `:parameters' and `:post-blank' as
-keywords.  Otherwise, return nil.
-
-Assume point is at the beginning of the inline src block."
-  (save-excursion
-    (catch :no-object
-      (when (let ((case-fold-search nil))
-	      (looking-at "\\<src_\\([^ \t\n[{]+\\)[{[]"))
-	(goto-char (match-end 1))
-	(let ((begin (match-beginning 0))
-	      (language (match-string-no-properties 1))
-	      (parameters
-	       (let ((p (org-element--parse-paired-brackets ?\[)))
-		 (and (org-string-nw-p p)
-		      (replace-regexp-in-string "\n[ \t]*" " " (org-trim p)))))
-	      (value (or (org-element--parse-paired-brackets ?\{)
-			 (throw :no-object nil)))
-	      (post-blank (skip-chars-forward " \t")))
-	  (list 'inline-src-block
-		(list :language language
-		      :value value
-		      :parameters parameters
-		      :begin begin
-		      :end (point)
-		      :post-blank post-blank)))))))
-
-(defun org-element-inline-src-block-interpreter (inline-src-block _)
-  "Interpret INLINE-SRC-BLOCK object as Org syntax."
-  (let ((language (org-element-property :language inline-src-block))
-	(arguments (org-element-property :parameters inline-src-block))
-	(body (org-element-property :value inline-src-block)))
-    (format "src_%s%s{%s}"
-	    language
-	    (if arguments (format "[%s]" arguments) "")
-	    body)))
-
-;;;; Italic
-
-(defun org-element-italic-parser ()
-  "Parse italic object at point, if any.
-
-When at an italic object, return a list whose car is `italic' and
-cdr is a plist with `:begin', `:end', `:contents-begin' and
-`:contents-end' and `:post-blank' keywords.  Otherwise, return
-nil.
-
-Assume point is at the first slash marker."
-  (save-excursion
-    (unless (bolp) (backward-char 1))
-    (when (looking-at org-emph-re)
-      (let ((begin (match-beginning 2))
-	    (contents-begin (match-beginning 4))
-	    (contents-end (match-end 4))
-	    (post-blank (progn (goto-char (match-end 2))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'italic
-	      (list :begin begin
-		    :end end
-		    :contents-begin contents-begin
-		    :contents-end contents-end
-		    :post-blank post-blank))))))
-
-(defun org-element-italic-interpreter (_ contents)
-  "Interpret italic object as Org syntax.
-CONTENTS is the contents of the object."
-  (format "/%s/" contents))
-
-
-;;;; Latex Fragment
-
-(defun org-element-latex-fragment-parser ()
-  "Parse LaTeX fragment at point, if any.
-
-When at a LaTeX fragment, return a list whose car is
-`latex-fragment' and cdr a plist with `:value', `:begin', `:end',
-and `:post-blank' as keywords.  Otherwise, return nil.
-
-Assume point is at the beginning of the LaTeX fragment."
-  (catch 'no-object
-    (save-excursion
-      (let* ((begin (point))
-	     (after-fragment
-	      (cond
-	       ((not (eq ?$ (char-after)))
-		(pcase (char-after (1+ (point)))
-		  (?\( (search-forward "\\)" nil t))
-		  (?\[ (search-forward "\\]" nil t))
-		  (_
-		   ;; Macro.
-		   (and (looking-at "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\
-\\|\\({[^{}\n]*}\\)\\)*")
-			(match-end 0)))))
-	       ((eq ?$ (char-after (1+ (point))))
-		(search-forward "$$" nil t 2))
-	       (t
-		(and (not (eq ?$ (char-before)))
-		     (not (memq (char-after (1+ (point)))
-				'(?\s ?\t ?\n ?, ?. ?\;)))
-		     (search-forward "$" nil t 2)
-		     (not (memq (char-before (match-beginning 0))
-				'(?\s ?\t ?\n ?, ?.)))
-		     (looking-at-p
-		      "\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|'\\|$\\)")
-		     (point)))))
-	     (post-blank
-	      (if (not after-fragment) (throw 'no-object nil)
-		(goto-char after-fragment)
-		(skip-chars-forward " \t")))
-	     (end (point)))
-	(list 'latex-fragment
-	      (list :value (buffer-substring-no-properties begin after-fragment)
-		    :begin begin
-		    :end end
-		    :post-blank post-blank))))))
-
-(defun org-element-latex-fragment-interpreter (latex-fragment _)
-  "Interpret LATEX-FRAGMENT object as Org syntax."
-  (org-element-property :value latex-fragment))
-
-;;;; Line Break
-
-(defun org-element-line-break-parser ()
-  "Parse line break at point, if any.
-
-When at a line break, return a list whose car is `line-break',
-and cdr a plist with `:begin', `:end' and `:post-blank' keywords.
-Otherwise, return nil.
-
-Assume point is at the beginning of the line break."
-  (when (and (looking-at-p "\\\\\\\\[ \t]*$")
-	     (not (eq (char-before) ?\\)))
-    (list 'line-break
-	  (list :begin (point)
-		:end (line-beginning-position 2)
-		:post-blank 0))))
-
-(defun org-element-line-break-interpreter (&rest _)
-  "Interpret LINE-BREAK object as Org syntax."
-  "\\\\\n")
-
-
-;;;; Link
-
-(defun org-element-link-parser ()
-  "Parse link at point, if any.
-
-When at a link, return a list whose car is `link' and cdr a plist
-with `:type', `:path', `:format', `:raw-link', `:application',
-`:search-option', `:begin', `:end', `:contents-begin',
-`:contents-end' and `:post-blank' as keywords.  Otherwise, return
-nil.
-
-Assume point is at the beginning of the link."
-  (catch 'no-object
-    (let ((begin (point))
-	  end contents-begin contents-end link-end post-blank path type format
-	  raw-link search-option application)
-      (cond
-       ;; Type 1: Text targeted from a radio target.
-       ((and org-target-link-regexp
-	     (save-excursion (or (bolp) (backward-char))
-			     (looking-at org-target-link-regexp)))
-	(setq type "radio")
-	(setq format 'plain)
-	(setq link-end (match-end 1))
-	(setq path (match-string-no-properties 1))
-	(setq contents-begin (match-beginning 1))
-	(setq contents-end (match-end 1)))
-       ;; Type 2: Standard link, i.e. [[https://orgmode.org][homepage]]
-       ((looking-at org-bracket-link-regexp)
-	(setq format 'bracket)
-	(setq contents-begin (match-beginning 3))
-	(setq contents-end (match-end 3))
-	(setq link-end (match-end 0))
-	;; RAW-LINK is the original link.  Expand any
-	;; abbreviation in it.
-	;;
-	;; Also treat any newline character and associated
-	;; indentation as a single space character.  This is not
-	;; compatible with RFC 3986, which requires to ignore
-	;; them altogether.  However, doing so would require
-	;; users to encode spaces on the fly when writing links
-	;; (e.g., insert [[shell:ls%20*.org]] instead of
-	;; [[shell:ls *.org]], which defeats Org's focus on
-	;; simplicity.
-	(setq raw-link (org-link-expand-abbrev
-			(replace-regexp-in-string
-			 "[ \t]*\n[ \t]*" " "
-			 (match-string-no-properties 1))))
-	;; Determine TYPE of link and set PATH accordingly.  According
-	;; to RFC 3986, remove whitespaces from URI in external links.
-	;; In internal ones, treat indentation as a single space.
-	(cond
-	 ;; File type.
-	 ((or (file-name-absolute-p raw-link)
-	      (string-match "\\`\\.\\.?/" raw-link))
-	  (setq type "file")
-	  (setq path raw-link))
-	 ;; Explicit type (http, irc, bbdb...).
-	 ((string-match org-link-types-re raw-link)
-	  (setq type (match-string 1 raw-link))
-	  (setq path (substring raw-link (match-end 0))))
-	 ;; Code-ref type: PATH is the name of the reference.
-	 ((and (string-match-p "\\`(" raw-link)
-	       (string-match-p ")\\'" raw-link))
-	  (setq type "coderef")
-	  (setq path (substring raw-link 1 -1)))
-	 ;; Custom-id type: PATH is the name of the custom id.
-	 ((= (string-to-char raw-link) ?#)
-	  (setq type "custom-id")
-	  (setq path (substring raw-link 1)))
-	 ;; Fuzzy type: Internal link either matches a target, an
-	 ;; headline name or nothing.  PATH is the target or
-	 ;; headline's name.
-	 (t
-	  (setq type "fuzzy")
-	  (setq path raw-link))))
-       ;; Type 3: Plain link, e.g., https://orgmode.org
-       ((looking-at org-plain-link-re)
-	(setq format 'plain)
-	(setq raw-link (match-string-no-properties 0))
-	(setq type (match-string-no-properties 1))
-	(setq link-end (match-end 0))
-	(setq path (match-string-no-properties 2)))
-       ;; Type 4: Angular link, e.g., <https://orgmode.org>.  Unlike to
-       ;; bracket links, follow RFC 3986 and remove any extra
-       ;; whitespace in URI.
-       ((looking-at org-angle-link-re)
-	(setq format 'angle)
-	(setq type (match-string-no-properties 1))
-	(setq link-end (match-end 0))
-	(setq raw-link
-	      (buffer-substring-no-properties
-	       (match-beginning 1) (match-end 2)))
-	(setq path (replace-regexp-in-string
-		    "[ \t]*\n[ \t]*" "" (match-string-no-properties 2))))
-       (t (throw 'no-object nil)))
-      ;; In any case, deduce end point after trailing white space from
-      ;; LINK-END variable.
-      (save-excursion
-	(setq post-blank
-	      (progn (goto-char link-end) (skip-chars-forward " \t")))
-	(setq end (point)))
-      ;; Special "file" type link processing.  Extract opening
-      ;; application and search option, if any.  Also normalize URI.
-      (when (string-match "\\`file\\(?:\\+\\(.+\\)\\)?\\'" type)
-	(setq application (match-string 1 type) type "file")
-	(when (string-match "::\\(.*\\)\\'" path)
-	  (setq search-option (match-string 1 path))
-	  (setq path (replace-match "" nil nil path)))
-	(setq path (replace-regexp-in-string "\\`///*\\(.:\\)?/" "\\1/" path)))
-      ;; Translate link, if `org-link-translation-function' is set.
-      (let ((trans (and (functionp org-link-translation-function)
-			(funcall org-link-translation-function type path))))
-	(when trans
-	  (setq type (car trans))
-	  (setq path (cdr trans))))
-      (list 'link
-	    (list :type type
-		  :path path
-		  :format format
-		  :raw-link (or raw-link path)
-		  :application application
-		  :search-option search-option
-		  :begin begin
-		  :end end
-		  :contents-begin contents-begin
-		  :contents-end contents-end
-		  :post-blank post-blank)))))
-
-(defun org-element-link-interpreter (link contents)
-  "Interpret LINK object as Org syntax.
-CONTENTS is the contents of the object, or nil."
-  (let ((type (org-element-property :type link))
-	(path (org-element-property :path link)))
-    (if (string= type "radio") path
-      (let ((fmt (pcase (org-element-property :format link)
-		   ;; Links with contents and internal links have to
-		   ;; use bracket syntax.  Ignore `:format' in these
-		   ;; cases.  This is also the default syntax when the
-		   ;; property is not defined, e.g., when the object
-		   ;; was crafted by the user.
-		   ((guard contents)
-		    (format "[[%%s][%s]]"
-			    ;; Since this is going to be used as
-			    ;; a format string, escape percent signs
-			    ;; in description.
-			    (replace-regexp-in-string "%" "%%" contents)))
-		   ((or `bracket
-			`nil
-			(guard (member type '("coderef" "custom-id" "fuzzy"))))
-		    "[[%s]]")
-		   ;; Otherwise, just obey to `:format'.
-		   (`angle "<%s>")
-		   (`plain "%s")
-		   (f (error "Wrong `:format' value: %s" f)))))
-	(format fmt
-		(pcase type
-		  ("coderef" (format "(%s)" path))
-		  ("custom-id" (concat "#" path))
-		  ("file"
-		   (let ((app (org-element-property :application link))
-			 (opt (org-element-property :search-option link)))
-		     (concat type (and app (concat "+" app)) ":"
-			     path
-			     (and opt (concat "::" opt)))))
-		  ("fuzzy" path)
-		  (_ (concat type ":" path))))))))
-
-
-;;;; Macro
-
-(defun org-element-macro-parser ()
-  "Parse macro at point, if any.
-
-When at a macro, return a list whose car is `macro' and cdr
-a plist with `:key', `:args', `:begin', `:end', `:value' and
-`:post-blank' as keywords.  Otherwise, return nil.
-
-Assume point is at the macro."
-  (save-excursion
-    (when (looking-at "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}")
-      (let ((begin (point))
-	    (key (downcase (match-string-no-properties 1)))
-	    (value (match-string-no-properties 0))
-	    (post-blank (progn (goto-char (match-end 0))
-			       (skip-chars-forward " \t")))
-	    (end (point))
-	    (args (let ((args (match-string-no-properties 3)))
-		    (and args (org-macro-extract-arguments args)))))
-	(list 'macro
-	      (list :key key
-		    :value value
-		    :args args
-		    :begin begin
-		    :end end
-		    :post-blank post-blank))))))
-
-(defun org-element-macro-interpreter (macro _)
-  "Interpret MACRO object as Org syntax."
-  (org-element-property :value macro))
-
-
-;;;; Radio-target
-
-(defun org-element-radio-target-parser ()
-  "Parse radio target at point, if any.
-
-When at a radio target, return a list whose car is `radio-target'
-and cdr a plist with `:begin', `:end', `:contents-begin',
-`:contents-end', `:value' and `:post-blank' as keywords.
-Otherwise, return nil.
-
-Assume point is at the radio target."
-  (save-excursion
-    (when (looking-at org-radio-target-regexp)
-      (let ((begin (point))
-	    (contents-begin (match-beginning 1))
-	    (contents-end (match-end 1))
-	    (value (match-string-no-properties 1))
-	    (post-blank (progn (goto-char (match-end 0))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'radio-target
-	      (list :begin begin
-		    :end end
-		    :contents-begin contents-begin
-		    :contents-end contents-end
-		    :post-blank post-blank
-		    :value value))))))
-
-(defun org-element-radio-target-interpreter (_ contents)
-  "Interpret target object as Org syntax.
-CONTENTS is the contents of the object."
-  (concat "<<<" contents ">>>"))
-
-
-;;;; Statistics Cookie
-
-(defun org-element-statistics-cookie-parser ()
-  "Parse statistics cookie at point, if any.
-
-When at a statistics cookie, return a list whose car is
-`statistics-cookie', and cdr a plist with `:begin', `:end',
-`:value' and `:post-blank' keywords.  Otherwise, return nil.
-
-Assume point is at the beginning of the statistics-cookie."
-  (save-excursion
-    (when (looking-at "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]")
-      (let* ((begin (point))
-	     (value (buffer-substring-no-properties
-		     (match-beginning 0) (match-end 0)))
-	     (post-blank (progn (goto-char (match-end 0))
-				(skip-chars-forward " \t")))
-	     (end (point)))
-	(list 'statistics-cookie
-	      (list :begin begin
-		    :end end
-		    :value value
-		    :post-blank post-blank))))))
-
-(defun org-element-statistics-cookie-interpreter (statistics-cookie _)
-  "Interpret STATISTICS-COOKIE object as Org syntax."
-  (org-element-property :value statistics-cookie))
-
-
-;;;; Strike-Through
-
-(defun org-element-strike-through-parser ()
-  "Parse strike-through object at point, if any.
-
-When at a strike-through object, return a list whose car is
-`strike-through' and cdr is a plist with `:begin', `:end',
-`:contents-begin' and `:contents-end' and `:post-blank' keywords.
-Otherwise, return nil.
-
-Assume point is at the first plus sign marker."
-  (save-excursion
-    (unless (bolp) (backward-char 1))
-    (when (looking-at org-emph-re)
-      (let ((begin (match-beginning 2))
-	    (contents-begin (match-beginning 4))
-	    (contents-end (match-end 4))
-	    (post-blank (progn (goto-char (match-end 2))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'strike-through
-	      (list :begin begin
-		    :end end
-		    :contents-begin contents-begin
-		    :contents-end contents-end
-		    :post-blank post-blank))))))
-
-(defun org-element-strike-through-interpreter (_ contents)
-  "Interpret strike-through object as Org syntax.
-CONTENTS is the contents of the object."
-  (format "+%s+" contents))
-
-
-;;;; Subscript
-
-(defun org-element-subscript-parser ()
-  "Parse subscript at point, if any.
-
-When at a subscript object, return a list whose car is
-`subscript' and cdr a plist with `:begin', `:end',
-`:contents-begin', `:contents-end', `:use-brackets-p' and
-`:post-blank' as keywords.  Otherwise, return nil.
-
-Assume point is at the underscore."
-  (save-excursion
-    (unless (bolp) (backward-char))
-    (when (looking-at org-match-substring-regexp)
-      (let ((bracketsp (match-beginning 4))
-	    (begin (match-beginning 2))
-	    (contents-begin (or (match-beginning 4)
-				(match-beginning 3)))
-	    (contents-end (or (match-end 4) (match-end 3)))
-	    (post-blank (progn (goto-char (match-end 0))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'subscript
-	      (list :begin begin
-		    :end end
-		    :use-brackets-p bracketsp
-		    :contents-begin contents-begin
-		    :contents-end contents-end
-		    :post-blank post-blank))))))
-
-(defun org-element-subscript-interpreter (subscript contents)
-  "Interpret SUBSCRIPT object as Org syntax.
-CONTENTS is the contents of the object."
-  (format
-   (if (org-element-property :use-brackets-p subscript) "_{%s}" "_%s")
-   contents))
-
-
-;;;; Superscript
-
-(defun org-element-superscript-parser ()
-  "Parse superscript at point, if any.
-
-When at a superscript object, return a list whose car is
-`superscript' and cdr a plist with `:begin', `:end',
-`:contents-begin', `:contents-end', `:use-brackets-p' and
-`:post-blank' as keywords.  Otherwise, return nil.
-
-Assume point is at the caret."
-  (save-excursion
-    (unless (bolp) (backward-char))
-    (when (looking-at org-match-substring-regexp)
-      (let ((bracketsp (match-beginning 4))
-	    (begin (match-beginning 2))
-	    (contents-begin (or (match-beginning 4)
-				(match-beginning 3)))
-	    (contents-end (or (match-end 4) (match-end 3)))
-	    (post-blank (progn (goto-char (match-end 0))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'superscript
-	      (list :begin begin
-		    :end end
-		    :use-brackets-p bracketsp
-		    :contents-begin contents-begin
-		    :contents-end contents-end
-		    :post-blank post-blank))))))
-
-(defun org-element-superscript-interpreter (superscript contents)
-  "Interpret SUPERSCRIPT object as Org syntax.
-CONTENTS is the contents of the object."
-  (format
-   (if (org-element-property :use-brackets-p superscript) "^{%s}" "^%s")
-   contents))
-
-
-;;;; Table Cell
-
-(defun org-element-table-cell-parser ()
-  "Parse table cell at point.
-Return a list whose car is `table-cell' and cdr is a plist
-containing `:begin', `:end', `:contents-begin', `:contents-end'
-and `:post-blank' keywords."
-  (looking-at "[ \t]*\\(.*?\\)[ \t]*\\(?:|\\|$\\)")
-  (let* ((begin (match-beginning 0))
-	 (end (match-end 0))
-	 (contents-begin (match-beginning 1))
-	 (contents-end (match-end 1)))
-    (list 'table-cell
-	  (list :begin begin
-		:end end
-		:contents-begin contents-begin
-		:contents-end contents-end
-		:post-blank 0))))
-
-(defun org-element-table-cell-interpreter (_ contents)
-  "Interpret table-cell element as Org syntax.
-CONTENTS is the contents of the cell, or nil."
-  (concat  " " contents " |"))
-
-
-;;;; Target
-
-(defun org-element-target-parser ()
-  "Parse target at point, if any.
-
-When at a target, return a list whose car is `target' and cdr
-a plist with `:begin', `:end', `:value' and `:post-blank' as
-keywords.  Otherwise, return nil.
-
-Assume point is at the target."
-  (save-excursion
-    (when (looking-at org-target-regexp)
-      (let ((begin (point))
-	    (value (match-string-no-properties 1))
-	    (post-blank (progn (goto-char (match-end 0))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'target
-	      (list :begin begin
-		    :end end
-		    :value value
-		    :post-blank post-blank))))))
-
-(defun org-element-target-interpreter (target _)
-  "Interpret TARGET object as Org syntax."
-  (format "<<%s>>" (org-element-property :value target)))
-
-
-;;;; Timestamp
-
-(defconst org-element--timestamp-regexp
-  (concat org-ts-regexp-both
-	  "\\|"
-	  "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
-	  "\\|"
-	  "\\(?:<%%\\(?:([^>\n]+)\\)>\\)")
-  "Regexp matching any timestamp type object.")
-
-(defun org-element-timestamp-parser ()
-  "Parse time stamp at point, if any.
-
-When at a time stamp, return a list whose car is `timestamp', and
-cdr a plist with `:type', `:raw-value', `:year-start',
-`:month-start', `:day-start', `:hour-start', `:minute-start',
-`:year-end', `:month-end', `:day-end', `:hour-end',
-`:minute-end', `:repeater-type', `:repeater-value',
-`:repeater-unit', `:warning-type', `:warning-value',
-`:warning-unit', `:begin', `:end' and `:post-blank' keywords.
-Otherwise, return nil.
-
-Assume point is at the beginning of the timestamp."
-  (when (looking-at-p org-element--timestamp-regexp)
-    (save-excursion
-      (let* ((begin (point))
-	     (activep (eq (char-after) ?<))
-	     (raw-value
-	      (progn
-		(looking-at "\\([<[]\\(%%\\)?.*?\\)[]>]\\(?:--\\([<[].*?[]>]\\)\\)?")
-		(match-string-no-properties 0)))
-	     (date-start (match-string-no-properties 1))
-	     (date-end (match-string 3))
-	     (diaryp (match-beginning 2))
-	     (post-blank (progn (goto-char (match-end 0))
-				(skip-chars-forward " \t")))
-	     (end (point))
-	     (time-range
-	      (and (not diaryp)
-		   (string-match
-		    "[012]?[0-9]:[0-5][0-9]\\(-\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)"
-		    date-start)
-		   (cons (string-to-number (match-string 2 date-start))
-			 (string-to-number (match-string 3 date-start)))))
-	     (type (cond (diaryp 'diary)
-			 ((and activep (or date-end time-range)) 'active-range)
-			 (activep 'active)
-			 ((or date-end time-range) 'inactive-range)
-			 (t 'inactive)))
-	     (repeater-props
-	      (and (not diaryp)
-		   (string-match "\\([.+]?\\+\\)\\([0-9]+\\)\\([hdwmy]\\)"
-				 raw-value)
-		   (list
-		    :repeater-type
-		    (let ((type (match-string 1 raw-value)))
-		      (cond ((equal "++" type) 'catch-up)
-			    ((equal ".+" type) 'restart)
-			    (t 'cumulate)))
-		    :repeater-value (string-to-number (match-string 2 raw-value))
-		    :repeater-unit
-		    (pcase (string-to-char (match-string 3 raw-value))
-		      (?h 'hour) (?d 'day) (?w 'week) (?m 'month) (_ 'year)))))
-	     (warning-props
-	      (and (not diaryp)
-		   (string-match "\\(-\\)?-\\([0-9]+\\)\\([hdwmy]\\)" raw-value)
-		   (list
-		    :warning-type (if (match-string 1 raw-value) 'first 'all)
-		    :warning-value (string-to-number (match-string 2 raw-value))
-		    :warning-unit
-		    (pcase (string-to-char (match-string 3 raw-value))
-		      (?h 'hour) (?d 'day) (?w 'week) (?m 'month) (_ 'year)))))
-	     year-start month-start day-start hour-start minute-start year-end
-	     month-end day-end hour-end minute-end)
-	;; Parse date-start.
-	(unless diaryp
-	  (let ((date (org-parse-time-string date-start t)))
-	    (setq year-start (nth 5 date)
-		  month-start (nth 4 date)
-		  day-start (nth 3 date)
-		  hour-start (nth 2 date)
-		  minute-start (nth 1 date))))
-	;; Compute date-end.  It can be provided directly in time-stamp,
-	;; or extracted from time range.  Otherwise, it defaults to the
-	;; same values as date-start.
-	(unless diaryp
-	  (let ((date (and date-end (org-parse-time-string date-end t))))
-	    (setq year-end (or (nth 5 date) year-start)
-		  month-end (or (nth 4 date) month-start)
-		  day-end (or (nth 3 date) day-start)
-		  hour-end (or (nth 2 date) (car time-range) hour-start)
-		  minute-end (or (nth 1 date) (cdr time-range) minute-start))))
-	(list 'timestamp
-	      (nconc (list :type type
-			   :raw-value raw-value
-			   :year-start year-start
-			   :month-start month-start
-			   :day-start day-start
-			   :hour-start hour-start
-			   :minute-start minute-start
-			   :year-end year-end
-			   :month-end month-end
-			   :day-end day-end
-			   :hour-end hour-end
-			   :minute-end minute-end
-			   :begin begin
-			   :end end
-			   :post-blank post-blank)
-		     repeater-props
-		     warning-props))))))
-
-(defun org-element-timestamp-interpreter (timestamp _)
-  "Interpret TIMESTAMP object as Org syntax."
-  (let* ((repeat-string
-	  (concat
-	   (pcase (org-element-property :repeater-type timestamp)
-	     (`cumulate "+") (`catch-up "++") (`restart ".+"))
-	   (let ((val (org-element-property :repeater-value timestamp)))
-	     (and val (number-to-string val)))
-	   (pcase (org-element-property :repeater-unit timestamp)
-	     (`hour "h") (`day "d") (`week "w") (`month "m") (`year "y"))))
-	 (warning-string
-	  (concat
-	   (pcase (org-element-property :warning-type timestamp)
-	     (`first "--") (`all "-"))
-	   (let ((val (org-element-property :warning-value timestamp)))
-	     (and val (number-to-string val)))
-	   (pcase (org-element-property :warning-unit timestamp)
-	     (`hour "h") (`day "d") (`week "w") (`month "m") (`year "y"))))
-	 (build-ts-string
-	  ;; Build an Org timestamp string from TIME.  ACTIVEP is
-	  ;; non-nil when time stamp is active.  If WITH-TIME-P is
-	  ;; non-nil, add a time part.  HOUR-END and MINUTE-END
-	  ;; specify a time range in the timestamp.  REPEAT-STRING is
-	  ;; the repeater string, if any.
-	  (lambda (time activep &optional with-time-p hour-end minute-end)
-	    (let ((ts (format-time-string
-		       (funcall (if with-time-p #'cdr #'car)
-				org-time-stamp-formats)
-		       time)))
-	      (when (and hour-end minute-end)
-		(string-match "[012]?[0-9]:[0-5][0-9]" ts)
-		(setq ts
-		      (replace-match
-		       (format "\\&-%02d:%02d" hour-end minute-end)
-		       nil nil ts)))
-	      (unless activep (setq ts (format "[%s]" (substring ts 1 -1))))
-	      (dolist (s (list repeat-string warning-string))
-		(when (org-string-nw-p s)
-		  (setq ts (concat (substring ts 0 -1)
-				   " "
-				   s
-				   (substring ts -1)))))
-	      ;; Return value.
-	      ts)))
-	 (type (org-element-property :type timestamp)))
-    (pcase type
-      ((or `active `inactive)
-       (let* ((minute-start (org-element-property :minute-start timestamp))
-	      (minute-end (org-element-property :minute-end timestamp))
-	      (hour-start (org-element-property :hour-start timestamp))
-	      (hour-end (org-element-property :hour-end timestamp))
-	      (time-range-p (and hour-start hour-end minute-start minute-end
-				 (or (/= hour-start hour-end)
-				     (/= minute-start minute-end)))))
-	 (funcall
-	  build-ts-string
-	  (encode-time 0
-		       (or minute-start 0)
-		       (or hour-start 0)
-		       (org-element-property :day-start timestamp)
-		       (org-element-property :month-start timestamp)
-		       (org-element-property :year-start timestamp))
-	  (eq type 'active)
-	  (and hour-start minute-start)
-	  (and time-range-p hour-end)
-	  (and time-range-p minute-end))))
-      ((or `active-range `inactive-range)
-       (let ((minute-start (org-element-property :minute-start timestamp))
-	     (minute-end (org-element-property :minute-end timestamp))
-	     (hour-start (org-element-property :hour-start timestamp))
-	     (hour-end (org-element-property :hour-end timestamp)))
-	 (concat
-	  (funcall
-	   build-ts-string (encode-time
-			    0
-			    (or minute-start 0)
-			    (or hour-start 0)
-			    (org-element-property :day-start timestamp)
-			    (org-element-property :month-start timestamp)
-			    (org-element-property :year-start timestamp))
-	   (eq type 'active-range)
-	   (and hour-start minute-start))
-	  "--"
-	  (funcall build-ts-string
-		   (encode-time 0
-				(or minute-end 0)
-				(or hour-end 0)
-				(org-element-property :day-end timestamp)
-				(org-element-property :month-end timestamp)
-				(org-element-property :year-end timestamp))
-		   (eq type 'active-range)
-		   (and hour-end minute-end)))))
-      (_ (org-element-property :raw-value timestamp)))))
-
-
-;;;; Underline
-
-(defun org-element-underline-parser ()
-  "Parse underline object at point, if any.
-
-When at an underline object, return a list whose car is
-`underline' and cdr is a plist with `:begin', `:end',
-`:contents-begin' and `:contents-end' and `:post-blank' keywords.
-Otherwise, return nil.
-
-Assume point is at the first underscore marker."
-  (save-excursion
-    (unless (bolp) (backward-char 1))
-    (when (looking-at org-emph-re)
-      (let ((begin (match-beginning 2))
-	    (contents-begin (match-beginning 4))
-	    (contents-end (match-end 4))
-	    (post-blank (progn (goto-char (match-end 2))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'underline
-	      (list :begin begin
-		    :end end
-		    :contents-begin contents-begin
-		    :contents-end contents-end
-		    :post-blank post-blank))))))
-
-(defun org-element-underline-interpreter (_ contents)
-  "Interpret underline object as Org syntax.
-CONTENTS is the contents of the object."
-  (format "_%s_" contents))
-
-
-;;;; Verbatim
-
-(defun org-element-verbatim-parser ()
-  "Parse verbatim object at point, if any.
-
-When at a verbatim object, return a list whose car is `verbatim'
-and cdr is a plist with `:value', `:begin', `:end' and
-`:post-blank' keywords.  Otherwise, return nil.
-
-Assume point is at the first equal sign marker."
-  (save-excursion
-    (unless (bolp) (backward-char 1))
-    (when (looking-at org-verbatim-re)
-      (let ((begin (match-beginning 2))
-	    (value (match-string-no-properties 4))
-	    (post-blank (progn (goto-char (match-end 2))
-			       (skip-chars-forward " \t")))
-	    (end (point)))
-	(list 'verbatim
-	      (list :value value
-		    :begin begin
-		    :end end
-		    :post-blank post-blank))))))
-
-(defun org-element-verbatim-interpreter (verbatim _)
-  "Interpret VERBATIM object as Org syntax."
-  (format "=%s=" (org-element-property :value verbatim)))
-
-
-
-;;; Parsing Element Starting At Point
-;;
-;; `org-element--current-element' is the core function of this section.
-;; It returns the Lisp representation of the element starting at
-;; point.
-;;
-;; `org-element--current-element' makes use of special modes.  They
-;; are activated for fixed element chaining (e.g., `plain-list' >
-;; `item') or fixed conditional element chaining (e.g., `headline' >
-;; `section').  Special modes are: `first-section', `item',
-;; `node-property', `section' and `table-row'.
-
-(defun org-element--current-element (limit &optional granularity mode structure)
-  "Parse the element starting at point.
-
-Return value is a list like (TYPE PROPS) where TYPE is the type
-of the element and PROPS a plist of properties associated to the
-element.
-
-Possible types are defined in `org-element-all-elements'.
-
-LIMIT bounds the search.
-
-Optional argument GRANULARITY determines the depth of the
-recursion.  Allowed values are `headline', `greater-element',
-`element', `object' or nil.  When it is broader than `object' (or
-nil), secondary values will not be parsed, since they only
-contain objects.
-
-Optional argument MODE, when non-nil, can be either
-`first-section', `section', `planning', `item', `node-property'
-and `table-row'.
-
-If STRUCTURE isn't provided but MODE is set to `item', it will be
-computed.
-
-This function assumes point is always at the beginning of the
-element it has to parse."
-  (save-excursion
-    (let ((case-fold-search t)
-	  ;; Determine if parsing depth allows for secondary strings
-	  ;; parsing.  It only applies to elements referenced in
-	  ;; `org-element-secondary-value-alist'.
-	  (raw-secondary-p (and granularity (not (eq granularity 'object)))))
-      (cond
-       ;; Item.
-       ((eq mode 'item)
-	(org-element-item-parser limit structure raw-secondary-p))
-       ;; Table Row.
-       ((eq mode 'table-row) (org-element-table-row-parser limit))
-       ;; Node Property.
-       ((eq mode 'node-property) (org-element-node-property-parser limit))
-       ;; Headline.
-       ((org-with-limited-levels (org-at-heading-p))
-        (org-element-headline-parser limit raw-secondary-p))
-       ;; Sections (must be checked after headline).
-       ((eq mode 'section) (org-element-section-parser limit))
-       ((eq mode 'first-section)
-	(org-element-section-parser
-	 (or (save-excursion (org-with-limited-levels (outline-next-heading)))
-	     limit)))
-       ;; Planning.
-       ((and (eq mode 'planning)
-	     (eq ?* (char-after (line-beginning-position 0)))
-	     (looking-at org-planning-line-re))
-	(org-element-planning-parser limit))
-       ;; Property drawer.
-       ((and (memq mode '(planning property-drawer))
-	     (eq ?* (char-after (line-beginning-position
-				 (if (eq mode 'planning) 0 -1))))
-	     (looking-at org-property-drawer-re))
-	(org-element-property-drawer-parser limit))
-       ;; When not at bol, point is at the beginning of an item or
-       ;; a footnote definition: next item is always a paragraph.
-       ((not (bolp)) (org-element-paragraph-parser limit (list (point))))
-       ;; Clock.
-       ((looking-at org-clock-line-re) (org-element-clock-parser limit))
-       ;; Inlinetask.
-       ((org-at-heading-p)
-	(org-element-inlinetask-parser limit raw-secondary-p))
-       ;; From there, elements can have affiliated keywords.
-       (t (let ((affiliated (org-element--collect-affiliated-keywords limit)))
-	    (cond
-	     ;; Jumping over affiliated keywords put point off-limits.
-	     ;; Parse them as regular keywords.
-	     ((and (cdr affiliated) (>= (point) limit))
-	      (goto-char (car affiliated))
-	      (org-element-keyword-parser limit nil))
-	     ;; LaTeX Environment.
-	     ((looking-at org-element--latex-begin-environment)
-	      (org-element-latex-environment-parser limit affiliated))
-	     ;; Drawer and Property Drawer.
-	     ((looking-at org-drawer-regexp)
-	      (org-element-drawer-parser limit affiliated))
-	     ;; Fixed Width
-	     ((looking-at "[ \t]*:\\( \\|$\\)")
-	      (org-element-fixed-width-parser limit affiliated))
-	     ;; Inline Comments, Blocks, Babel Calls, Dynamic Blocks and
-	     ;; Keywords.
-	     ((looking-at "[ \t]*#")
-	      (goto-char (match-end 0))
-	      (cond
-	       ((looking-at "\\(?: \\|$\\)")
-		(beginning-of-line)
-		(org-element-comment-parser limit affiliated))
-	       ((looking-at "\\+BEGIN_\\(\\S-+\\)")
-		(beginning-of-line)
-		(funcall (pcase (upcase (match-string 1))
-			   ("CENTER"  #'org-element-center-block-parser)
-			   ("COMMENT" #'org-element-comment-block-parser)
-			   ("EXAMPLE" #'org-element-example-block-parser)
-			   ("EXPORT"  #'org-element-export-block-parser)
-			   ("QUOTE"   #'org-element-quote-block-parser)
-			   ("SRC"     #'org-element-src-block-parser)
-			   ("VERSE"   #'org-element-verse-block-parser)
-			   (_         #'org-element-special-block-parser))
-			 limit
-			 affiliated))
-	       ((looking-at "\\+CALL:")
-		(beginning-of-line)
-		(org-element-babel-call-parser limit affiliated))
-	       ((looking-at "\\+BEGIN:? ")
-		(beginning-of-line)
-		(org-element-dynamic-block-parser limit affiliated))
-	       ((looking-at "\\+\\S-+:")
-		(beginning-of-line)
-		(org-element-keyword-parser limit affiliated))
-	       (t
-		(beginning-of-line)
-		(org-element-paragraph-parser limit affiliated))))
-	     ;; Footnote Definition.
-	     ((looking-at org-footnote-definition-re)
-	      (org-element-footnote-definition-parser limit affiliated))
-	     ;; Horizontal Rule.
-	     ((looking-at "[ \t]*-\\{5,\\}[ \t]*$")
-	      (org-element-horizontal-rule-parser limit affiliated))
-	     ;; Diary Sexp.
-	     ((looking-at "%%(")
-	      (org-element-diary-sexp-parser limit affiliated))
-	     ;; Table.
-	     ((looking-at "[ \t]*\\(|\\|\\+\\(-+\\+\\)+[ \t]*$\\)")
-	      (org-element-table-parser limit affiliated))
-	     ;; List.
-	     ((looking-at (org-item-re))
-	      (org-element-plain-list-parser
-	       limit affiliated
-	       (or structure (org-element--list-struct limit))))
-	     ;; Default element: Paragraph.
-	     (t (org-element-paragraph-parser limit affiliated)))))))))
-
-
-;; Most elements can have affiliated keywords.  When looking for an
-;; element beginning, we want to move before them, as they belong to
-;; that element, and, in the meantime, collect information they give
-;; into appropriate properties.  Hence the following function.
-
-(defun org-element--collect-affiliated-keywords (limit)
-  "Collect affiliated keywords from point down to LIMIT.
-
-Return a list whose CAR is the position at the first of them and
-CDR a plist of keywords and values and move point to the
-beginning of the first line after them.
-
-As a special case, if element doesn't start at the beginning of
-the line (e.g., a paragraph starting an item), CAR is current
-position of point and CDR is nil."
-  (if (not (bolp)) (list (point))
-    (let ((case-fold-search t)
-	  (origin (point))
-	  ;; RESTRICT is the list of objects allowed in parsed
-	  ;; keywords value.
-	  (restrict (org-element-restriction 'keyword))
-	  output)
-      (while (and (< (point) limit) (looking-at org-element--affiliated-re))
-	(let* ((raw-kwd (upcase (match-string 1)))
-	       ;; Apply translation to RAW-KWD.  From there, KWD is
-	       ;; the official keyword.
-	       (kwd (or (cdr (assoc raw-kwd
-				    org-element-keyword-translation-alist))
-			raw-kwd))
-	       ;; Find main value for any keyword.
-	       (value
-		(save-match-data
-		  (org-trim
-		   (buffer-substring-no-properties
-		    (match-end 0) (line-end-position)))))
-	       ;; PARSEDP is non-nil when keyword should have its
-	       ;; value parsed.
-	       (parsedp (member kwd org-element-parsed-keywords))
-	       ;; If KWD is a dual keyword, find its secondary
-	       ;; value.  Maybe parse it.
-	       (dualp (member kwd org-element-dual-keywords))
-	       (dual-value
-		(and dualp
-		     (let ((sec (match-string-no-properties 2)))
-		       (if (or (not sec) (not parsedp)) sec
-			 (save-match-data
-			   (org-element--parse-objects
-			    (match-beginning 2) (match-end 2) nil restrict))))))
-	       ;; Attribute a property name to KWD.
-	       (kwd-sym (and kwd (intern (concat ":" (downcase kwd))))))
-	  ;; Now set final shape for VALUE.
-	  (when parsedp
-	    (setq value
-		  (org-element--parse-objects
-		   (match-end 0)
-		   (progn (end-of-line) (skip-chars-backward " \t") (point))
-		   nil restrict)))
-	  (when dualp
-	    (setq value (and (or value dual-value) (cons value dual-value))))
-	  (when (or (member kwd org-element-multiple-keywords)
-		    ;; Attributes can always appear on multiple lines.
-		    (string-match "^ATTR_" kwd))
-	    (setq value (cons value (plist-get output kwd-sym))))
-	  ;; Eventually store the new value in OUTPUT.
-	  (setq output (plist-put output kwd-sym value))
-	  ;; Move to next keyword.
-	  (forward-line)))
-      ;; If affiliated keywords are orphaned: move back to first one.
-      ;; They will be parsed as a paragraph.
-      (when (looking-at "[ \t]*$") (goto-char origin) (setq output nil))
-      ;; Return value.
-      (cons origin output))))
-
-
-
-;;; The Org Parser
-;;
-;; The two major functions here are `org-element-parse-buffer', which
-;; parses Org syntax inside the current buffer, taking into account
-;; region, narrowing, or even visibility if specified, and
-;; `org-element-parse-secondary-string', which parses objects within
-;; a given string.
-;;
-;; The (almost) almighty `org-element-map' allows applying a function
-;; on elements or objects matching some type, and accumulating the
-;; resulting values.  In an export situation, it also skips unneeded
-;; parts of the parse tree.
-
-(defun org-element-parse-buffer (&optional granularity visible-only)
-  "Recursively parse the buffer and return structure.
-If narrowing is in effect, only parse the visible part of the
-buffer.
-
-Optional argument GRANULARITY determines the depth of the
-recursion.  It can be set to the following symbols:
-
-`headline'          Only parse headlines.
-`greater-element'   Don't recurse into greater elements except
-		    headlines and sections.  Thus, elements
-		    parsed are the top-level ones.
-`element'           Parse everything but objects and plain text.
-`object'            Parse the complete buffer (default).
-
-When VISIBLE-ONLY is non-nil, don't parse contents of hidden
-elements.
-
-An element or object is represented as a list with the
-pattern (TYPE PROPERTIES CONTENTS), where :
-
-  TYPE is a symbol describing the element or object.  See
-  `org-element-all-elements' and `org-element-all-objects' for an
-  exhaustive list of such symbols.  One can retrieve it with
-  `org-element-type' function.
-
-  PROPERTIES is the list of attributes attached to the element or
-  object, as a plist.  Although most of them are specific to the
-  element or object type, all types share `:begin', `:end',
-  `:post-blank' and `:parent' properties, which respectively
-  refer to buffer position where the element or object starts,
-  ends, the number of white spaces or blank lines after it, and
-  the element or object containing it.  Properties values can be
-  obtained by using `org-element-property' function.
-
-  CONTENTS is a list of elements, objects or raw strings
-  contained in the current element or object, when applicable.
-  One can access them with `org-element-contents' function.
-
-The Org buffer has `org-data' as type and nil as properties.
-`org-element-map' function can be used to find specific elements
-or objects within the parse tree.
-
-This function assumes that current major mode is `org-mode'."
-  (save-excursion
-    (goto-char (point-min))
-    (org-skip-whitespace)
-    (org-element--parse-elements
-     (point-at-bol) (point-max)
-     ;; Start in `first-section' mode so text before the first
-     ;; headline belongs to a section.
-     'first-section nil granularity visible-only (list 'org-data nil))))
-
-(defun org-element-parse-secondary-string (string restriction &optional parent)
-  "Recursively parse objects in STRING and return structure.
-
-RESTRICTION is a symbol limiting the object types that will be
-looked after.
-
-Optional argument PARENT, when non-nil, is the element or object
-containing the secondary string.  It is used to set correctly
-`:parent' property within the string.
-
-If STRING is the empty string or nil, return nil."
-  (cond
-   ((not string) nil)
-   ((equal string "") nil)
-   (t (let ((local-variables (buffer-local-variables)))
-	(with-temp-buffer
-	  (dolist (v local-variables)
-	    (ignore-errors
-	      (if (symbolp v) (makunbound v)
-		(set (make-local-variable (car v)) (cdr v)))))
-	  (insert string)
-	  (restore-buffer-modified-p nil)
-	  (org-element--parse-objects
-	   (point-min) (point-max) nil restriction parent))))))
-
-(defun org-element-map
-    (data types fun &optional info first-match no-recursion with-affiliated)
-  "Map a function on selected elements or objects.
-
-DATA is a parse tree, an element, an object, a string, or a list
-of such constructs.  TYPES is a symbol or list of symbols of
-elements or objects types (see `org-element-all-elements' and
-`org-element-all-objects' for a complete list of types).  FUN is
-the function called on the matching element or object.  It has to
-accept one argument: the element or object itself.
-
-When optional argument INFO is non-nil, it should be a plist
-holding export options.  In that case, parts of the parse tree
-not exportable according to that property list will be skipped.
-
-When optional argument FIRST-MATCH is non-nil, stop at the first
-match for which FUN doesn't return nil, and return that value.
-
-Optional argument NO-RECURSION is a symbol or a list of symbols
-representing elements or objects types.  `org-element-map' won't
-enter any recursive element or object whose type belongs to that
-list.  Though, FUN can still be applied on them.
-
-When optional argument WITH-AFFILIATED is non-nil, FUN will also
-apply to matching objects within parsed affiliated keywords (see
-`org-element-parsed-keywords').
-
-Nil values returned from FUN do not appear in the results.
-
-
-Examples:
----------
-
-Assuming TREE is a variable containing an Org buffer parse tree,
-the following example will return a flat list of all `src-block'
-and `example-block' elements in it:
-
-  (org-element-map tree \\='(example-block src-block) #\\='identity)
-
-The following snippet will find the first headline with a level
-of 1 and a \"phone\" tag, and will return its beginning position:
-
-  (org-element-map tree \\='headline
-   (lambda (hl)
-     (and (= (org-element-property :level hl) 1)
-          (member \"phone\" (org-element-property :tags hl))
-          (org-element-property :begin hl)))
-   nil t)
-
-The next example will return a flat list of all `plain-list' type
-elements in TREE that are not a sub-list themselves:
-
-  (org-element-map tree \\='plain-list #\\='identity nil nil \\='plain-list)
-
-Eventually, this example will return a flat list of all `bold'
-type objects containing a `latex-snippet' type object, even
-looking into captions:
-
-  (org-element-map tree \\='bold
-   (lambda (b)
-     (and (org-element-map b \\='latex-snippet #\\='identity nil t) b))
-   nil nil nil t)"
-  ;; Ensure TYPES and NO-RECURSION are a list, even of one element.
-  (let* ((types (if (listp types) types (list types)))
-	 (no-recursion (if (listp no-recursion) no-recursion
-			 (list no-recursion)))
-	 ;; Recursion depth is determined by --CATEGORY.
-	 (--category
-	  (catch :--found
-	    (let ((category 'greater-elements)
-		  (all-objects (cons 'plain-text org-element-all-objects)))
-	      (dolist (type types category)
-		(cond ((memq type all-objects)
-		       ;; If one object is found, the function has
-		       ;; to recurse into every object.
-		       (throw :--found 'objects))
-		      ((not (memq type org-element-greater-elements))
-		       ;; If one regular element is found, the
-		       ;; function has to recurse, at least, into
-		       ;; every element it encounters.
-		       (and (not (eq category 'elements))
-			    (setq category 'elements))))))))
-	 --acc)
-    (letrec ((--walk-tree
-	      (lambda (--data)
-		;; Recursively walk DATA.  INFO, if non-nil, is a plist
-		;; holding contextual information.
-		(let ((--type (org-element-type --data)))
-		  (cond
-		   ((not --data))
-		   ;; Ignored element in an export context.
-		   ((and info (memq --data (plist-get info :ignore-list))))
-		   ;; List of elements or objects.
-		   ((not --type) (mapc --walk-tree --data))
-		   ;; Unconditionally enter parse trees.
-		   ((eq --type 'org-data)
-		    (mapc --walk-tree (org-element-contents --data)))
-		   (t
-		    ;; Check if TYPE is matching among TYPES.  If so,
-		    ;; apply FUN to --DATA and accumulate return value
-		    ;; into --ACC (or exit if FIRST-MATCH is non-nil).
-		    (when (memq --type types)
-		      (let ((result (funcall fun --data)))
-			(cond ((not result))
-			      (first-match (throw :--map-first-match result))
-			      (t (push result --acc)))))
-		    ;; If --DATA has a secondary string that can contain
-		    ;; objects with their type among TYPES, look inside.
-		    (when (and (eq --category 'objects) (not (stringp --data)))
-		      (dolist (p (cdr (assq --type
-					    org-element-secondary-value-alist)))
-			(funcall --walk-tree (org-element-property p --data))))
-		    ;; If --DATA has any parsed affiliated keywords and
-		    ;; WITH-AFFILIATED is non-nil, look for objects in
-		    ;; them.
-		    (when (and with-affiliated
-			       (eq --category 'objects)
-			       (eq (org-element-class --data) 'element))
-		      (dolist (kwd-pair org-element--parsed-properties-alist)
-			(let ((kwd (car kwd-pair))
-			      (value (org-element-property (cdr kwd-pair) --data)))
-			  ;; Pay attention to the type of parsed
-			  ;; keyword.  In particular, preserve order for
-			  ;; multiple keywords.
-			  (cond
-			   ((not value))
-			   ((member kwd org-element-dual-keywords)
-			    (if (member kwd org-element-multiple-keywords)
-				(dolist (line (reverse value))
-				  (funcall --walk-tree (cdr line))
-				  (funcall --walk-tree (car line)))
-			      (funcall --walk-tree (cdr value))
-			      (funcall --walk-tree (car value))))
-			   ((member kwd org-element-multiple-keywords)
-			    (mapc --walk-tree (reverse value)))
-			   (t (funcall --walk-tree value))))))
-		    ;; Determine if a recursion into --DATA is possible.
-		    (cond
-		     ;; --TYPE is explicitly removed from recursion.
-		     ((memq --type no-recursion))
-		     ;; --DATA has no contents.
-		     ((not (org-element-contents --data)))
-		     ;; Looking for greater elements but --DATA is
-		     ;; simply an element or an object.
-		     ((and (eq --category 'greater-elements)
-			   (not (memq --type org-element-greater-elements))))
-		     ;; Looking for elements but --DATA is an object.
-		     ((and (eq --category 'elements)
-			   (eq (org-element-class --data) 'object)))
-		     ;; In any other case, map contents.
-		     (t (mapc --walk-tree (org-element-contents --data))))))))))
-      (catch :--map-first-match
-	(funcall --walk-tree data)
-	;; Return value in a proper order.
-	(nreverse --acc)))))
-(put 'org-element-map 'lisp-indent-function 2)
-
-;; The following functions are internal parts of the parser.
-;;
-;; The first one, `org-element--parse-elements' acts at the element's
-;; level.
-;;
-;; The second one, `org-element--parse-objects' applies on all objects
-;; of a paragraph or a secondary string.  It calls
-;; `org-element--object-lex' to find the next object in the current
-;; container.
-
-(defsubst org-element--next-mode (type parentp)
-  "Return next special mode according to TYPE, or nil.
-TYPE is a symbol representing the type of an element or object
-containing next element if PARENTP is non-nil, or before it
-otherwise.  Modes can be either `first-section', `item',
-`node-property', `planning', `property-drawer', `section',
-`table-row' or nil."
-  (if parentp
-      (pcase type
-	(`headline 'section)
-	(`inlinetask 'planning)
-	(`plain-list 'item)
-	(`property-drawer 'node-property)
-	(`section 'planning)
-	(`table 'table-row))
-    (pcase type
-      (`item 'item)
-      (`node-property 'node-property)
-      (`planning 'property-drawer)
-      (`table-row 'table-row))))
-
-(defun org-element--parse-elements
-    (beg end mode structure granularity visible-only acc)
-  "Parse elements between BEG and END positions.
-
-MODE prioritizes some elements over the others.  It can be set to
-`first-section', `section', `planning', `item', `node-property'
-or `table-row'.
-
-When value is `item', STRUCTURE will be used as the current list
-structure.
-
-GRANULARITY determines the depth of the recursion.  See
-`org-element-parse-buffer' for more information.
-
-When VISIBLE-ONLY is non-nil, don't parse contents of hidden
-elements.
-
-Elements are accumulated into ACC."
-  (save-excursion
-    (goto-char beg)
-    ;; Visible only: skip invisible parts at the beginning of the
-    ;; element.
-    (when (and visible-only (org-invisible-p2))
-      (goto-char (min (1+ (org-find-visible)) end)))
-    ;; When parsing only headlines, skip any text before first one.
-    (when (and (eq granularity 'headline) (not (org-at-heading-p)))
-      (org-with-limited-levels (outline-next-heading)))
-    (let (elements)
-      (while (< (point) end)
-	;; Find current element's type and parse it accordingly to
-	;; its category.
-	(let* ((element (org-element--current-element
-			 end granularity mode structure))
-	       (type (org-element-type element))
-	       (cbeg (org-element-property :contents-begin element)))
-	  (goto-char (org-element-property :end element))
-	  ;; Visible only: skip invisible parts between siblings.
-	  (when (and visible-only (org-invisible-p2))
-	    (goto-char (min (1+ (org-find-visible)) end)))
-	  ;; Fill ELEMENT contents by side-effect.
-	  (cond
-	   ;; If element has no contents, don't modify it.
-	   ((not cbeg))
-	   ;; Greater element: parse it between `contents-begin' and
-	   ;; `contents-end'.  Make sure GRANULARITY allows the
-	   ;; recursion, or ELEMENT is a headline, in which case going
-	   ;; inside is mandatory, in order to get sub-level headings.
-	   ((and (memq type org-element-greater-elements)
-		 (or (memq granularity '(element object nil))
-		     (and (eq granularity 'greater-element)
-			  (eq type 'section))
-		     (eq type 'headline)))
-	    (org-element--parse-elements
-	     cbeg (org-element-property :contents-end element)
-	     ;; Possibly switch to a special mode.
-	     (org-element--next-mode type t)
-	     (and (memq type '(item plain-list))
-		  (org-element-property :structure element))
-	     granularity visible-only element))
-	   ;; ELEMENT has contents.  Parse objects inside, if
-	   ;; GRANULARITY allows it.
-	   ((memq granularity '(object nil))
-	    (org-element--parse-objects
-	     cbeg (org-element-property :contents-end element) element
-	     (org-element-restriction type))))
-	  (push (org-element-put-property element :parent acc) elements)
-	  ;; Update mode.
-	  (setq mode (org-element--next-mode type nil))))
-      ;; Return result.
-      (apply #'org-element-set-contents acc (nreverse elements)))))
-
-(defun org-element--object-lex (restriction)
-  "Return next object in current buffer or nil.
-RESTRICTION is a list of object types, as symbols, that should be
-looked after.  This function assumes that the buffer is narrowed
-to an appropriate container (e.g., a paragraph)."
-  (if (memq 'table-cell restriction) (org-element-table-cell-parser)
-    (let* ((start (point))
-	   (limit
-	    ;; Object regexp sometimes needs to have a peek at
-	    ;; a character ahead.  Therefore, when there is a hard
-	    ;; limit, make it one more than the true beginning of the
-	    ;; radio target.
-	    (save-excursion
-	      (cond ((not org-target-link-regexp) nil)
-		    ((not (memq 'link restriction)) nil)
-		    ((progn
-		       (unless (bolp) (forward-char -1))
-		       (not (re-search-forward org-target-link-regexp nil t)))
-		     nil)
-		    ;; Since we moved backward, we do not want to
-		    ;; match again an hypothetical 1-character long
-		    ;; radio link before us.  Realizing that this can
-		    ;; only happen if such a radio link starts at
-		    ;; beginning of line, we prevent this here.
-		    ((and (= start (1+ (line-beginning-position)))
-			  (= start (match-end 1)))
-		     (and (re-search-forward org-target-link-regexp nil t)
-			  (1+ (match-beginning 1))))
-		    (t (1+ (match-beginning 1))))))
-	   found)
-      (save-excursion
-	(while (and (not found)
-		    (re-search-forward org-element--object-regexp limit 'move))
-	  (goto-char (match-beginning 0))
-	  (let ((result (match-string 0)))
-	    (setq found
-		  (cond
-		   ((string-prefix-p "call_" result t)
-		    (and (memq 'inline-babel-call restriction)
-			 (org-element-inline-babel-call-parser)))
-		   ((string-prefix-p "src_" result t)
-		    (and (memq 'inline-src-block restriction)
-			 (org-element-inline-src-block-parser)))
-		   (t
-		    (pcase (char-after)
-		      (?^ (and (memq 'superscript restriction)
-			       (org-element-superscript-parser)))
-		      (?_ (or (and (memq 'subscript restriction)
-				   (org-element-subscript-parser))
-			      (and (memq 'underline restriction)
-				   (org-element-underline-parser))))
-		      (?* (and (memq 'bold restriction)
-			       (org-element-bold-parser)))
-		      (?/ (and (memq 'italic restriction)
-			       (org-element-italic-parser)))
-		      (?~ (and (memq 'code restriction)
-			       (org-element-code-parser)))
-		      (?= (and (memq 'verbatim restriction)
-			       (org-element-verbatim-parser)))
-		      (?+ (and (memq 'strike-through restriction)
-			       (org-element-strike-through-parser)))
-		      (?@ (and (memq 'export-snippet restriction)
-			       (org-element-export-snippet-parser)))
-		      (?{ (and (memq 'macro restriction)
-			       (org-element-macro-parser)))
-		      (?$ (and (memq 'latex-fragment restriction)
-			       (org-element-latex-fragment-parser)))
-		      (?<
-		       (if (eq (aref result 1) ?<)
-			   (or (and (memq 'radio-target restriction)
-				    (org-element-radio-target-parser))
-			       (and (memq 'target restriction)
-				    (org-element-target-parser)))
-			 (or (and (memq 'timestamp restriction)
-				  (org-element-timestamp-parser))
-			     (and (memq 'link restriction)
-				  (org-element-link-parser)))))
-		      (?\\
-		       (if (eq (aref result 1) ?\\)
-			   (and (memq 'line-break restriction)
-				(org-element-line-break-parser))
-			 (or (and (memq 'entity restriction)
-				  (org-element-entity-parser))
-			     (and (memq 'latex-fragment restriction)
-				  (org-element-latex-fragment-parser)))))
-		      (?\[
-		       (if (eq (aref result 1) ?\[)
-			   (and (memq 'link restriction)
-				(org-element-link-parser))
-			 (or (and (memq 'footnote-reference restriction)
-				  (org-element-footnote-reference-parser))
-			     (and (memq 'timestamp restriction)
-				  (org-element-timestamp-parser))
-			     (and (memq 'statistics-cookie restriction)
-				  (org-element-statistics-cookie-parser)))))
-		      ;; This is probably a plain link.
-		      (_ (and (memq 'link restriction)
-			      (org-element-link-parser)))))))
-	    (or (eobp) (forward-char))))
-	(cond (found)
-	      (limit (forward-char -1)
-		     (org-element-link-parser)) ;radio link
-	      (t nil))))))
-
-(defun org-element--parse-objects (beg end acc restriction &optional parent)
-  "Parse objects between BEG and END and return recursive structure.
-
-Objects are accumulated in ACC.  RESTRICTION is a list of object
-successors which are allowed in the current object.
-
-ACC becomes the parent for all parsed objects.  However, if ACC
-is nil (i.e., a secondary string is being parsed) and optional
-argument PARENT is non-nil, use it as the parent for all objects.
-Eventually, if both ACC and PARENT are nil, the common parent is
-the list of objects itself."
-  (save-excursion
-    (save-restriction
-      (narrow-to-region beg end)
-      (goto-char (point-min))
-      (let (next-object contents)
-	(while (and (not (eobp))
-		    (setq next-object (org-element--object-lex restriction)))
-	  ;; Text before any object.
-	  (let ((obj-beg (org-element-property :begin next-object)))
-	    (unless (= (point) obj-beg)
-	      (let ((text (buffer-substring-no-properties (point) obj-beg)))
-		(push (if acc (org-element-put-property text :parent acc) text)
-		      contents))))
-	  ;; Object...
-	  (let ((obj-end (org-element-property :end next-object))
-		(cont-beg (org-element-property :contents-begin next-object)))
-	    (when acc (org-element-put-property next-object :parent acc))
-	    (push (if cont-beg
-		      ;; Fill contents of NEXT-OBJECT if possible.
-		      (org-element--parse-objects
-		       cont-beg
-		       (org-element-property :contents-end next-object)
-		       next-object
-		       (org-element-restriction next-object))
-		    next-object)
-		  contents)
-	    (goto-char obj-end)))
-	;; Text after last object.
-	(unless (eobp)
-	  (let ((text (buffer-substring-no-properties (point) end)))
-	    (push (if acc (org-element-put-property text :parent acc) text)
-		  contents)))
-	;; Result.  Set appropriate parent.
-	(if acc (apply #'org-element-set-contents acc (nreverse contents))
-	  (let* ((contents (nreverse contents))
-		 (parent (or parent contents)))
-	    (dolist (datum contents contents)
-	      (org-element-put-property datum :parent parent))))))))
-
-
-
-;;; Towards A Bijective Process
-;;
-;; The parse tree obtained with `org-element-parse-buffer' is really
-;; a snapshot of the corresponding Org buffer.  Therefore, it can be
-;; interpreted and expanded into a string with canonical Org syntax.
-;; Hence `org-element-interpret-data'.
-;;
-;; The function relies internally on
-;; `org-element--interpret-affiliated-keywords'.
-
-;;;###autoload
-(defun org-element-interpret-data (data)
-  "Interpret DATA as Org syntax.
-DATA is a parse tree, an element, an object or a secondary string
-to interpret.  Return Org syntax as a string."
-  (letrec ((fun
-	    (lambda (data parent)
-	      (let* ((type (org-element-type data))
-		     ;; Find interpreter for current object or
-		     ;; element.  If it doesn't exist (e.g. this is
-		     ;; a pseudo object or element), return contents,
-		     ;; if any.
-		     (interpret
-		      (let ((fun (intern
-				  (format "org-element-%s-interpreter" type))))
-			(if (fboundp fun) fun (lambda (_ contents) contents))))
-		     (results
-		      (cond
-		       ;; Secondary string.
-		       ((not type)
-			(mapconcat (lambda (obj) (funcall fun obj parent))
-				   data
-				   ""))
-		       ;; Full Org document.
-		       ((eq type 'org-data)
-			(mapconcat (lambda (obj) (funcall fun obj parent))
-				   (org-element-contents data)
-				   ""))
-		       ;; Plain text: return it.
-		       ((stringp data) data)
-		       ;; Element or object without contents.
-		       ((not (org-element-contents data))
-			(funcall interpret data nil))
-		       ;; Element or object with contents.
-		       (t
-			(funcall
-			 interpret
-			 data
-			 ;; Recursively interpret contents.
-			 (mapconcat
-			  (lambda (datum) (funcall fun datum data))
-			  (org-element-contents
-			   (if (not (memq type '(paragraph verse-block)))
-			       data
-			     ;; Fix indentation of elements containing
-			     ;; objects.  We ignore `table-row'
-			     ;; elements as they are one line long
-			     ;; anyway.
-			     (org-element-normalize-contents
-			      data
-			      ;; When normalizing first paragraph of
-			      ;; an item or a footnote-definition,
-			      ;; ignore first line's indentation.
-			      (and (eq type 'paragraph)
-				   (memq (org-element-type parent)
-					 '(footnote-definition item))
-				   (eq data
-				       (car (org-element-contents parent)))))))
-			  ""))))))
-		(if (memq type '(org-data plain-text nil)) results
-		  ;; Build white spaces.  If no `:post-blank' property
-		  ;; is specified, assume its value is 0.
-		  (let ((blank (or (org-element-property :post-blank data) 0)))
-		    (if (eq (org-element-class data parent) 'object)
-			(concat results (make-string blank ?\s))
-		      (concat (org-element--interpret-affiliated-keywords data)
-			      (org-element-normalize-string results)
-			      (make-string blank ?\n)))))))))
-    (funcall fun data nil)))
-
-(defun org-element--interpret-affiliated-keywords (element)
-  "Return ELEMENT's affiliated keywords as Org syntax.
-If there is no affiliated keyword, return the empty string."
-  (let ((keyword-to-org
-	 (function
-	  (lambda (key value)
-	    (let (dual)
-	      (when (member key org-element-dual-keywords)
-		(setq dual (cdr value) value (car value)))
-	      (concat "#+" key
-		      (and dual
-			   (format "[%s]" (org-element-interpret-data dual)))
-		      ": "
-		      (if (member key org-element-parsed-keywords)
-			  (org-element-interpret-data value)
-			value)
-		      "\n"))))))
-    (mapconcat
-     (lambda (prop)
-       (let ((value (org-element-property prop element))
-	     (keyword (upcase (substring (symbol-name prop) 1))))
-	 (when value
-	   (if (or (member keyword org-element-multiple-keywords)
-		   ;; All attribute keywords can have multiple lines.
-		   (string-match "^ATTR_" keyword))
-	       (mapconcat (lambda (line) (funcall keyword-to-org keyword line))
-			  (reverse value)
-			  "")
-	     (funcall keyword-to-org keyword value)))))
-     ;; List all ELEMENT's properties matching an attribute line or an
-     ;; affiliated keyword, but ignore translated keywords since they
-     ;; cannot belong to the property list.
-     (cl-loop for prop in (nth 1 element) by 'cddr
-	      when (let ((keyword (upcase (substring (symbol-name prop) 1))))
-		     (or (string-match "^ATTR_" keyword)
-			 (and
-			  (member keyword org-element-affiliated-keywords)
-			  (not (assoc keyword
-				      org-element-keyword-translation-alist)))))
-	      collect prop)
-     "")))
-
-;; Because interpretation of the parse tree must return the same
-;; number of blank lines between elements and the same number of white
-;; space after objects, some special care must be given to white
-;; spaces.
-;;
-;; The first function, `org-element-normalize-string', ensures any
-;; string different from the empty string will end with a single
-;; newline character.
-;;
-;; The second function, `org-element-normalize-contents', removes
-;; global indentation from the contents of the current element.
-
-(defun org-element-normalize-string (s)
-  "Ensure string S ends with a single newline character.
-
-If S isn't a string return it unchanged.  If S is the empty
-string, return it.  Otherwise, return a new string with a single
-newline character at its end."
-  (cond
-   ((not (stringp s)) s)
-   ((string= "" s) "")
-   (t (and (string-match "\\(\n[ \t]*\\)*\\'" s)
-	   (replace-match "\n" nil nil s)))))
-
-(defun org-element-normalize-contents (element &optional ignore-first)
-  "Normalize plain text in ELEMENT's contents.
-
-ELEMENT must only contain plain text and objects.
-
-If optional argument IGNORE-FIRST is non-nil, ignore first line's
-indentation to compute maximal common indentation.
-
-Return the normalized element that is element with global
-indentation removed from its contents."
-  (letrec ((find-min-ind
-	    ;; Return minimal common indentation within BLOB.  This is
-	    ;; done by walking recursively BLOB and updating MIN-IND
-	    ;; along the way.  FIRST-FLAG is non-nil when the next
-	    ;; object is expected to be a string that doesn't start
-	    ;; with a newline character.  It happens for strings at
-	    ;; the beginnings of the contents or right after a line
-	    ;; break.
-	    (lambda (blob first-flag min-ind)
-	      (dolist (datum (org-element-contents blob) min-ind)
-		(when first-flag
-		  (setq first-flag nil)
-		  (cond
-		   ;; Objects cannot start with spaces: in this
-		   ;; case, indentation is 0.
-		   ((not (stringp datum)) (throw :zero 0))
-		   ((not (string-match
-			  "\\`\\([ \t]+\\)\\([^ \t\n]\\|\n\\|\\'\\)" datum))
-		    (throw :zero 0))
-		   ((equal (match-string 2 datum) "\n")
-		    (put-text-property
-		     (match-beginning 1) (match-end 1) 'org-ind 'empty datum))
-		   (t
-		    (let ((i (string-width (match-string 1 datum))))
-		      (put-text-property
-		       (match-beginning 1) (match-end 1) 'org-ind i datum)
-		      (setq min-ind (min i min-ind))))))
-		(cond
-		 ((stringp datum)
-		  (let ((s 0))
-		    (while (string-match
-			    "\n\\([ \t]*\\)\\([^ \t\n]\\|\n\\|\\'\\)" datum s)
-		      (setq s (match-end 1))
-		      (cond
-		       ((equal (match-string 1 datum) "")
-			(unless (member (match-string 2 datum) '("" "\n"))
-			  (throw :zero 0)))
-		       ((equal (match-string 2 datum) "\n")
-			(put-text-property (match-beginning 1) (match-end 1)
-					   'org-ind 'empty datum))
-		       (t
-			(let ((i (string-width (match-string 1 datum))))
-			  (put-text-property (match-beginning 1) (match-end 1)
-					     'org-ind i datum)
-			  (setq min-ind (min i min-ind))))))))
-		 ((eq (org-element-type datum) 'line-break)
-		  (setq first-flag t))
-		 ((memq (org-element-type datum) org-element-recursive-objects)
-		  (setq min-ind
-			(funcall find-min-ind datum first-flag min-ind)))))))
-	   (min-ind
-	    (catch :zero
-	      (funcall find-min-ind
-		       element (not ignore-first) most-positive-fixnum))))
-    (if (or (zerop min-ind) (= min-ind most-positive-fixnum)) element
-      ;; Build ELEMENT back, replacing each string with the same
-      ;; string minus common indentation.
-      (letrec ((build
-		(lambda (datum)
-		  ;; Return DATUM with all its strings indentation
-		  ;; shortened from MIN-IND white spaces.
-		  (setcdr
-		   (cdr datum)
-		   (mapcar
-		    (lambda (object)
-		      (cond
-		       ((stringp object)
-			(with-temp-buffer
-			  (insert object)
-			  (let ((s (point-min)))
-			    (while (setq s (text-property-not-all
-					    s (point-max) 'org-ind nil))
-			      (goto-char s)
-			      (let ((i (get-text-property s 'org-ind)))
-				(delete-region s (progn
-						   (skip-chars-forward " \t")
-						   (point)))
-				(when (integerp i) (indent-to (- i min-ind))))))
-			  (buffer-string)))
-		       ((memq (org-element-type object)
-			      org-element-recursive-objects)
-			(funcall build object))
-		       (t object)))
-		    (org-element-contents datum)))
-		  datum)))
-	(funcall build element)))))
-
-
-
-;;; Cache
-;;
-;; Implement a caching mechanism for `org-element-at-point' and
-;; `org-element-context', which see.
-;;
-;; A single public function is provided: `org-element-cache-reset'.
-;;
-;; Cache is enabled by default, but can be disabled globally with
-;; `org-element-use-cache'.  `org-element-cache-sync-idle-time',
-;; org-element-cache-sync-duration' and `org-element-cache-sync-break'
-;; can be tweaked to control caching behavior.
-;;
-;; Internally, parsed elements are stored in an AVL tree,
-;; `org-element--cache'.  This tree is updated lazily: whenever
-;; a change happens to the buffer, a synchronization request is
-;; registered in `org-element--cache-sync-requests' (see
-;; `org-element--cache-submit-request').  During idle time, requests
-;; are processed by `org-element--cache-sync'.  Synchronization also
-;; happens when an element is required from the cache.  In this case,
-;; the process stops as soon as the needed element is up-to-date.
-;;
-;; A synchronization request can only apply on a synchronized part of
-;; the cache.  Therefore, the cache is updated at least to the
-;; location where the new request applies.  Thus, requests are ordered
-;; from left to right and all elements starting before the first
-;; request are correct.  This property is used by functions like
-;; `org-element--cache-find' to retrieve elements in the part of the
-;; cache that can be trusted.
-;;
-;; A request applies to every element, starting from its original
-;; location (or key, see below).  When a request is processed, it
-;; moves forward and may collide the next one.  In this case, both
-;; requests are merged into a new one that starts from that element.
-;; As a consequence, the whole synchronization complexity does not
-;; depend on the number of pending requests, but on the number of
-;; elements the very first request will be applied on.
-;;
-;; Elements cannot be accessed through their beginning position, which
-;; may or may not be up-to-date.  Instead, each element in the tree is
-;; associated to a key, obtained with `org-element--cache-key'.  This
-;; mechanism is robust enough to preserve total order among elements
-;; even when the tree is only partially synchronized.
-
-
-(defvar org-element-use-cache nil
-  "Non-nil when Org parser should cache its results.
-
-WARNING: for the time being, using cache sometimes triggers
-freezes.  Therefore, it is disabled by default.  Activate it if
-you want to help debugging the issue.")
-
-(defvar org-element-cache-sync-idle-time 0.6
-  "Length, in seconds, of idle time before syncing cache.")
-
-(defvar org-element-cache-sync-duration (seconds-to-time 0.04)
-  "Maximum duration, as a time value, for a cache synchronization.
-If the synchronization is not over after this delay, the process
-pauses and resumes after `org-element-cache-sync-break'
-seconds.")
-
-(defvar org-element-cache-sync-break (seconds-to-time 0.3)
-  "Duration, as a time value, of the pause between synchronizations.
-See `org-element-cache-sync-duration' for more information.")
-
-
-;;;; Data Structure
-
-(defvar org-element--cache nil
-  "AVL tree used to cache elements.
-Each node of the tree contains an element.  Comparison is done
-with `org-element--cache-compare'.  This cache is used in
-`org-element-at-point'.")
-
-(defvar org-element--cache-sync-requests nil
-  "List of pending synchronization requests.
-
-A request is a vector with the following pattern:
-
- \[NEXT BEG END OFFSET PARENT PHASE]
-
-Processing a synchronization request consists of three phases:
-
-  0. Delete modified elements,
-  1. Fill missing area in cache,
-  2. Shift positions and re-parent elements after the changes.
-
-During phase 0, NEXT is the key of the first element to be
-removed, BEG and END is buffer position delimiting the
-modifications.  Elements starting between them (inclusive) are
-removed.  So are elements whose parent is removed.  PARENT, when
-non-nil, is the parent of the first element to be removed.
-
-During phase 1, NEXT is the key of the next known element in
-cache and BEG its beginning position.  Parse buffer between that
-element and the one before it in order to determine the parent of
-the next element.  Set PARENT to the element containing NEXT.
-
-During phase 2, NEXT is the key of the next element to shift in
-the parse tree.  All elements starting from this one have their
-properties relatives to buffer positions shifted by integer
-OFFSET and, if they belong to element PARENT, are adopted by it.
-
-PHASE specifies the phase number, as an integer.")
-
-(defvar org-element--cache-sync-timer nil
-  "Timer used for cache synchronization.")
-
-(defvar org-element--cache-sync-keys nil
-  "Hash table used to store keys during synchronization.
-See `org-element--cache-key' for more information.")
-
-(defsubst org-element--cache-key (element)
-  "Return a unique key for ELEMENT in cache tree.
-
-Keys are used to keep a total order among elements in the cache.
-Comparison is done with `org-element--cache-key-less-p'.
-
-When no synchronization is taking place, a key is simply the
-beginning position of the element, or that position plus one in
-the case of an first item (respectively row) in
-a list (respectively a table).
-
-During a synchronization, the key is the one the element had when
-the cache was synchronized for the last time.  Elements added to
-cache during the synchronization get a new key generated with
-`org-element--cache-generate-key'.
-
-Such keys are stored in `org-element--cache-sync-keys'.  The hash
-table is cleared once the synchronization is complete."
-  (or (gethash element org-element--cache-sync-keys)
-      (let* ((begin (org-element-property :begin element))
-	     ;; Increase beginning position of items (respectively
-	     ;; table rows) by one, so the first item can get
-	     ;; a different key from its parent list (respectively
-	     ;; table).
-	     (key (if (memq (org-element-type element) '(item table-row))
-		      (1+ begin)
-		    begin)))
-	(if org-element--cache-sync-requests
-	    (puthash element key org-element--cache-sync-keys)
-	  key))))
-
-(defun org-element--cache-generate-key (lower upper)
-  "Generate a key between LOWER and UPPER.
-
-LOWER and UPPER are integers or lists, possibly empty.
-
-If LOWER and UPPER are equals, return LOWER.  Otherwise, return
-a unique key, as an integer or a list of integers, according to
-the following rules:
-
-  - LOWER and UPPER are compared level-wise until values differ.
-
-  - If, at a given level, LOWER and UPPER differ from more than
-    2, the new key shares all the levels above with LOWER and
-    gets a new level.  Its value is the mean between LOWER and
-    UPPER:
-
-      (1 2) + (1 4) --> (1 3)
-
-  - If LOWER has no value to compare with, it is assumed that its
-    value is `most-negative-fixnum'.  E.g.,
-
-      (1 1) + (1 1 2)
-
-    is equivalent to
-
-      (1 1 m) + (1 1 2)
-
-    where m is `most-negative-fixnum'.  Likewise, if UPPER is
-    short of levels, the current value is `most-positive-fixnum'.
-
-  - If they differ from only one, the new key inherits from
-    current LOWER level and fork it at the next level.  E.g.,
-
-      (2 1) + (3 3)
-
-    is equivalent to
-
-      (2 1) + (2 M)
-
-    where M is `most-positive-fixnum'.
-
-  - If the key is only one level long, it is returned as an
-    integer:
-
-      (1 2) + (3 2) --> 2
-
-When they are not equals, the function assumes that LOWER is
-lesser than UPPER, per `org-element--cache-key-less-p'."
-  (if (equal lower upper) lower
-    (let ((lower (if (integerp lower) (list lower) lower))
-	  (upper (if (integerp upper) (list upper) upper))
-          skip-upper key)
-      (catch 'exit
-	(while t
-	  (let ((min (or (car lower) most-negative-fixnum))
-		(max (cond (skip-upper most-positive-fixnum)
-                           ((car upper))
-                           (t most-positive-fixnum))))
-            (if (< (1+ min) max)
-		(let ((mean (+ (ash min -1) (ash max -1) (logand min max 1))))
-		  (throw 'exit (if key (nreverse (cons mean key)) mean)))
-	      (when (and (< min max) (not skip-upper))
-		;; When at a given level, LOWER and UPPER differ from
-		;; 1, ignore UPPER altogether.  Instead create a key
-		;; between LOWER and the greatest key with the same
-		;; prefix as LOWER so far.
-		(setq skip-upper t))
-	      (push min key)
-	      (setq lower (cdr lower) upper (cdr upper)))))))))
-
-(defsubst org-element--cache-key-less-p (a b)
-  "Non-nil if key A is less than key B.
-A and B are either integers or lists of integers, as returned by
-`org-element--cache-key'."
-  (if (integerp a) (if (integerp b) (< a b) (<= a (car b)))
-    (if (integerp b) (< (car a) b)
-      (catch 'exit
-	(while (and a b)
-	  (cond ((car-less-than-car a b) (throw 'exit t))
-		((car-less-than-car b a) (throw 'exit nil))
-		(t (setq a (cdr a) b (cdr b)))))
-	;; If A is empty, either keys are equal (B is also empty) and
-	;; we return nil, or A is lesser than B (B is longer) and we
-	;; return a non-nil value.
-	;;
-	;; If A is not empty, B is necessarily empty and A is greater
-	;; than B (A is longer).  Therefore, return nil.
-	(and (null a) b)))))
-
-(defun org-element--cache-compare (a b)
-  "Non-nil when element A is located before element B."
-  (org-element--cache-key-less-p (org-element--cache-key a)
-				 (org-element--cache-key b)))
-
-(defsubst org-element--cache-root ()
-  "Return root value in cache.
-This function assumes `org-element--cache' is a valid AVL tree."
-  (avl-tree--node-left (avl-tree--dummyroot org-element--cache)))
-
-
-;;;; Tools
-
-(defsubst org-element--cache-active-p ()
-  "Non-nil when cache is active in current buffer."
-  (and org-element-use-cache
-       org-element--cache
-       (derived-mode-p 'org-mode)))
-
-(defun org-element--cache-find (pos &optional side)
-  "Find element in cache starting at POS or before.
-
-POS refers to a buffer position.
-
-When optional argument SIDE is non-nil, the function checks for
-elements starting at or past POS instead.  If SIDE is `both', the
-function returns a cons cell where car is the first element
-starting at or before POS and cdr the first element starting
-after POS.
-
-The function can only find elements in the synchronized part of
-the cache."
-  (let ((limit (and org-element--cache-sync-requests
-		    (aref (car org-element--cache-sync-requests) 0)))
-	(node (org-element--cache-root))
-	lower upper)
-    (while node
-      (let* ((element (avl-tree--node-data node))
-	     (begin (org-element-property :begin element)))
-	(cond
-	 ((and limit
-	       (not (org-element--cache-key-less-p
-		     (org-element--cache-key element) limit)))
-	  (setq node (avl-tree--node-left node)))
-	 ((> begin pos)
-	  (setq upper element
-		node (avl-tree--node-left node)))
-	 ((< begin pos)
-	  (setq lower element
-		node (avl-tree--node-right node)))
-	 ;; We found an element in cache starting at POS.  If `side'
-	 ;; is `both' we also want the next one in order to generate
-	 ;; a key in-between.
-	 ;;
-	 ;; If the element is the first row or item in a table or
-	 ;; a plain list, we always return the table or the plain
-	 ;; list.
-	 ;;
-	 ;; In any other case, we return the element found.
-	 ((eq side 'both)
-	  (setq lower element)
-	  (setq node (avl-tree--node-right node)))
-	 ((and (memq (org-element-type element) '(item table-row))
-	       (let ((parent (org-element-property :parent element)))
-		 (and (= (org-element-property :begin element)
-			 (org-element-property :contents-begin parent))
-		      (setq node nil
-			    lower parent
-			    upper parent)))))
-	 (t
-	  (setq node nil
-		lower element
-		upper element)))))
-    (pcase side
-      (`both (cons lower upper))
-      (`nil lower)
-      (_ upper))))
-
-(defun org-element--cache-put (element)
-  "Store ELEMENT in current buffer's cache, if allowed."
-  (when (org-element--cache-active-p)
-    (when org-element--cache-sync-requests
-      ;; During synchronization, first build an appropriate key for
-      ;; the new element so `avl-tree-enter' can insert it at the
-      ;; right spot in the cache.
-      (let ((keys (org-element--cache-find
-		   (org-element-property :begin element) 'both)))
-	(puthash element
-		 (org-element--cache-generate-key
-		  (and (car keys) (org-element--cache-key (car keys)))
-		  (cond ((cdr keys) (org-element--cache-key (cdr keys)))
-			(org-element--cache-sync-requests
-			 (aref (car org-element--cache-sync-requests) 0))))
-		 org-element--cache-sync-keys)))
-    (avl-tree-enter org-element--cache element)))
-
-(defsubst org-element--cache-remove (element)
-  "Remove ELEMENT from cache.
-Assume ELEMENT belongs to cache and that a cache is active."
-  (avl-tree-delete org-element--cache element))
-
-
-;;;; Synchronization
-
-(defsubst org-element--cache-set-timer (buffer)
-  "Set idle timer for cache synchronization in BUFFER."
-  (when org-element--cache-sync-timer
-    (cancel-timer org-element--cache-sync-timer))
-  (setq org-element--cache-sync-timer
-	(run-with-idle-timer
-	 (let ((idle (current-idle-time)))
-	   (if idle (time-add idle org-element-cache-sync-break)
-	     org-element-cache-sync-idle-time))
-	 nil
-	 #'org-element--cache-sync
-	 buffer)))
-
-(defsubst org-element--cache-interrupt-p (time-limit)
-  "Non-nil when synchronization process should be interrupted.
-TIME-LIMIT is a time value or nil."
-  (and time-limit
-       (or (input-pending-p)
-	   (time-less-p time-limit (current-time)))))
-
-(defsubst org-element--cache-shift-positions (element offset &optional props)
-  "Shift ELEMENT properties relative to buffer positions by OFFSET.
-
-Properties containing buffer positions are `:begin', `:end',
-`:contents-begin', `:contents-end' and `:structure'.  When
-optional argument PROPS is a list of keywords, only shift
-properties provided in that list.
-
-Properties are modified by side-effect."
-  (let ((properties (nth 1 element)))
-    ;; Shift `:structure' property for the first plain list only: it
-    ;; is the only one that really matters and it prevents from
-    ;; shifting it more than once.
-    (when (and (or (not props) (memq :structure props))
-	       (eq (org-element-type element) 'plain-list)
-	       (not (eq (org-element-type (plist-get properties :parent))
-			'item)))
-      (dolist (item (plist-get properties :structure))
-	(cl-incf (car item) offset)
-	(cl-incf (nth 6 item) offset)))
-    (dolist (key '(:begin :contents-begin :contents-end :end :post-affiliated))
-      (let ((value (and (or (not props) (memq key props))
-			(plist-get properties key))))
-	(and value (plist-put properties key (+ offset value)))))))
-
-(defun org-element--cache-sync (buffer &optional threshold future-change)
-  "Synchronize cache with recent modification in BUFFER.
-
-When optional argument THRESHOLD is non-nil, do the
-synchronization for all elements starting before or at threshold,
-then exit.  Otherwise, synchronize cache for as long as
-`org-element-cache-sync-duration' or until Emacs leaves idle
-state.
-
-FUTURE-CHANGE, when non-nil, is a buffer position where changes
-not registered yet in the cache are going to happen.  It is used
-in `org-element--cache-submit-request', where cache is partially
-updated before current modification are actually submitted."
-  (when (buffer-live-p buffer)
-    (with-current-buffer buffer
-      (let ((inhibit-quit t) request next)
-	(when org-element--cache-sync-timer
-	  (cancel-timer org-element--cache-sync-timer))
-	(catch 'interrupt
-	  (while org-element--cache-sync-requests
-	    (setq request (car org-element--cache-sync-requests)
-		  next (nth 1 org-element--cache-sync-requests))
-	    (org-element--cache-process-request
-	     request
-	     (and next (aref next 0))
-	     threshold
-	     (and (not threshold)
-		  (time-add (current-time)
-			    org-element-cache-sync-duration))
-	     future-change)
-	    ;; Request processed.  Merge current and next offsets and
-	    ;; transfer ending position.
-	    (when next
-	      (cl-incf (aref next 3) (aref request 3))
-	      (aset next 2 (aref request 2)))
-	    (setq org-element--cache-sync-requests
-		  (cdr org-element--cache-sync-requests))))
-	;; If more requests are awaiting, set idle timer accordingly.
-	;; Otherwise, reset keys.
-	(if org-element--cache-sync-requests
-	    (org-element--cache-set-timer buffer)
-	  (clrhash org-element--cache-sync-keys))))))
-
-(defun org-element--cache-process-request
-    (request next threshold time-limit future-change)
-  "Process synchronization REQUEST for all entries before NEXT.
-
-REQUEST is a vector, built by `org-element--cache-submit-request'.
-
-NEXT is a cache key, as returned by `org-element--cache-key'.
-
-When non-nil, THRESHOLD is a buffer position.  Synchronization
-stops as soon as a shifted element begins after it.
-
-When non-nil, TIME-LIMIT is a time value.  Synchronization stops
-after this time or when Emacs exits idle state.
-
-When non-nil, FUTURE-CHANGE is a buffer position where changes
-not registered yet in the cache are going to happen.  See
-`org-element--cache-submit-request' for more information.
-
-Throw `interrupt' if the process stops before completing the
-request."
-  (catch 'quit
-    (when (= (aref request 5) 0)
-      ;; Phase 0.
-      ;;
-      ;; Delete all elements starting after BEG, but not after buffer
-      ;; position END or past element with key NEXT.  Also delete
-      ;; elements contained within a previously removed element
-      ;; (stored in `last-container').
-      ;;
-      ;; At each iteration, we start again at tree root since
-      ;; a deletion modifies structure of the balanced tree.
-      (catch 'end-phase
-        (while t
-	  (when (org-element--cache-interrupt-p time-limit)
-	    (throw 'interrupt nil))
-	  ;; Find first element in cache with key BEG or after it.
-	  (let ((beg (aref request 0))
-		(end (aref request 2))
-		(node (org-element--cache-root))
-		data data-key last-container)
-	    (while node
-	      (let* ((element (avl-tree--node-data node))
-		     (key (org-element--cache-key element)))
-		(cond
-		 ((org-element--cache-key-less-p key beg)
-		  (setq node (avl-tree--node-right node)))
-		 ((org-element--cache-key-less-p beg key)
-		  (setq data element
-			data-key key
-			node (avl-tree--node-left node)))
-		 (t (setq data element
-			  data-key key
-			  node nil)))))
-	    (if data
-		(let ((pos (org-element-property :begin data)))
-		  (if (if (or (not next)
-			      (org-element--cache-key-less-p data-key next))
-			  (<= pos end)
-			(and last-container
-			     (let ((up data))
-			       (while (and up (not (eq up last-container)))
-				 (setq up (org-element-property :parent up)))
-			       up)))
-		      (progn (when (and (not last-container)
-					(> (org-element-property :end data)
-					   end))
-			       (setq last-container data))
-			     (org-element--cache-remove data))
-		    (aset request 0 data-key)
-		    (aset request 1 pos)
-		    (aset request 5 1)
-		    (throw 'end-phase nil)))
-	      ;; No element starting after modifications left in
-	      ;; cache: further processing is futile.
-	      (throw 'quit t))))))
-    (when (= (aref request 5) 1)
-      ;; Phase 1.
-      ;;
-      ;; Phase 0 left a hole in the cache.  Some elements after it
-      ;; could have parents within.  For example, in the following
-      ;; buffer:
-      ;;
-      ;;   - item
-      ;;
-      ;;
-      ;;     Paragraph1
-      ;;
-      ;;     Paragraph2
-      ;;
-      ;; if we remove a blank line between "item" and "Paragraph1",
-      ;; everything down to "Paragraph2" is removed from cache.  But
-      ;; the paragraph now belongs to the list, and its `:parent'
-      ;; property no longer is accurate.
-      ;;
-      ;; Therefore we need to parse again elements in the hole, or at
-      ;; least in its last section, so that we can re-parent
-      ;; subsequent elements, during phase 2.
-      ;;
-      ;; Note that we only need to get the parent from the first
-      ;; element in cache after the hole.
-      ;;
-      ;; When next key is lesser or equal to the current one, delegate
-      ;; phase 1 processing to next request in order to preserve key
-      ;; order among requests.
-      (let ((key (aref request 0)))
-	(when (and next (not (org-element--cache-key-less-p key next)))
-	  (let ((next-request (nth 1 org-element--cache-sync-requests)))
-	    (aset next-request 0 key)
-	    (aset next-request 1 (aref request 1))
-	    (aset next-request 5 1))
-	  (throw 'quit t)))
-      ;; Next element will start at its beginning position plus
-      ;; offset, since it hasn't been shifted yet.  Therefore, LIMIT
-      ;; contains the real beginning position of the first element to
-      ;; shift and re-parent.
-      (let ((limit (+ (aref request 1) (aref request 3))))
-	(cond ((and threshold (> limit threshold)) (throw 'interrupt nil))
-	      ((and future-change (>= limit future-change))
-	       ;; Changes are going to happen around this element and
-	       ;; they will trigger another phase 1 request.  Skip the
-	       ;; current one.
-	       (aset request 5 2))
-	      (t
-	       (let ((parent (org-element--parse-to limit t time-limit)))
-		 (aset request 4 parent)
-		 (aset request 5 2))))))
-    ;; Phase 2.
-    ;;
-    ;; Shift all elements starting from key START, but before NEXT, by
-    ;; OFFSET, and re-parent them when appropriate.
-    ;;
-    ;; Elements are modified by side-effect so the tree structure
-    ;; remains intact.
-    ;;
-    ;; Once THRESHOLD, if any, is reached, or once there is an input
-    ;; pending, exit.  Before leaving, the current synchronization
-    ;; request is updated.
-    (let ((start (aref request 0))
-	  (offset (aref request 3))
-	  (parent (aref request 4))
-	  (node (org-element--cache-root))
-	  (stack (list nil))
-	  (leftp t)
-	  exit-flag)
-      ;; No re-parenting nor shifting planned: request is over.
-      (when (and (not parent) (zerop offset)) (throw 'quit t))
-      (while node
-	(let* ((data (avl-tree--node-data node))
-	       (key (org-element--cache-key data)))
-	  (if (and leftp (avl-tree--node-left node)
-		   (not (org-element--cache-key-less-p key start)))
-	      (progn (push node stack)
-		     (setq node (avl-tree--node-left node)))
-	    (unless (org-element--cache-key-less-p key start)
-	      ;; We reached NEXT.  Request is complete.
-	      (when (equal key next) (throw 'quit t))
-	      ;; Handle interruption request.  Update current request.
-	      (when (or exit-flag (org-element--cache-interrupt-p time-limit))
-		(aset request 0 key)
-		(aset request 4 parent)
-		(throw 'interrupt nil))
-	      ;; Shift element.
-	      (unless (zerop offset)
-		(org-element--cache-shift-positions data offset))
-	      (let ((begin (org-element-property :begin data)))
-		;; Update PARENT and re-parent DATA, only when
-		;; necessary.  Propagate new structures for lists.
-		(while (and parent
-			    (<= (org-element-property :end parent) begin))
-		  (setq parent (org-element-property :parent parent)))
-		(cond ((and (not parent) (zerop offset)) (throw 'quit nil))
-		      ((and parent
-			    (let ((p (org-element-property :parent data)))
-			      (or (not p)
-				  (< (org-element-property :begin p)
-				     (org-element-property :begin parent)))))
-		       (org-element-put-property data :parent parent)
-		       (let ((s (org-element-property :structure parent)))
-			 (when (and s (org-element-property :structure data))
-			   (org-element-put-property data :structure s)))))
-		;; Cache is up-to-date past THRESHOLD.  Request
-		;; interruption.
-		(when (and threshold (> begin threshold)) (setq exit-flag t))))
-	    (setq node (if (setq leftp (avl-tree--node-right node))
-			   (avl-tree--node-right node)
-			 (pop stack))))))
-      ;; We reached end of tree: synchronization complete.
-      t)))
-
-(defun org-element--parse-to (pos &optional syncp time-limit)
-  "Parse elements in current section, down to POS.
-
-Start parsing from the closest between the last known element in
-cache or headline above.  Return the smallest element containing
-POS.
-
-When optional argument SYNCP is non-nil, return the parent of the
-element containing POS instead.  In that case, it is also
-possible to provide TIME-LIMIT, which is a time value specifying
-when the parsing should stop.  The function throws `interrupt' if
-the process stopped before finding the expected result."
-  (catch 'exit
-    (org-with-wide-buffer
-     (goto-char pos)
-     (let* ((cached (and (org-element--cache-active-p)
-			 (org-element--cache-find pos nil)))
-            (begin (org-element-property :begin cached))
-            element next mode)
-       (cond
-        ;; Nothing in cache before point: start parsing from first
-        ;; element following headline above, or first element in
-        ;; buffer.
-        ((not cached)
-         (when (org-with-limited-levels (outline-previous-heading))
-           (setq mode 'planning)
-	   (forward-line))
-         (skip-chars-forward " \r\t\n")
-         (beginning-of-line))
-        ;; Cache returned exact match: return it.
-        ((= pos begin)
-	 (throw 'exit (if syncp (org-element-property :parent cached) cached)))
-        ;; There's a headline between cached value and POS: cached
-        ;; value is invalid.  Start parsing from first element
-        ;; following the headline.
-        ((re-search-backward
-          (org-with-limited-levels org-outline-regexp-bol) begin t)
-         (forward-line)
-         (skip-chars-forward " \r\t\n")
-         (beginning-of-line)
-	 (setq mode 'planning))
-        ;; Check if CACHED or any of its ancestors contain point.
-        ;;
-        ;; If there is such an element, we inspect it in order to know
-        ;; if we return it or if we need to parse its contents.
-        ;; Otherwise, we just start parsing from current location,
-        ;; which is right after the top-most element containing
-        ;; CACHED.
-        ;;
-        ;; As a special case, if POS is at the end of the buffer, we
-        ;; want to return the innermost element ending there.
-        ;;
-        ;; Also, if we find an ancestor and discover that we need to
-        ;; parse its contents, make sure we don't start from
-        ;; `:contents-begin', as we would otherwise go past CACHED
-        ;; again.  Instead, in that situation, we will resume parsing
-        ;; from NEXT, which is located after CACHED or its higher
-        ;; ancestor not containing point.
-        (t
-         (let ((up cached)
-               (pos (if (= (point-max) pos) (1- pos) pos)))
-           (goto-char (or (org-element-property :contents-begin cached) begin))
-           (while (let ((end (org-element-property :end up)))
-                    (and (<= end pos)
-                         (goto-char end)
-                         (setq up (org-element-property :parent up)))))
-           (cond ((not up))
-                 ((eobp) (setq element up))
-                 (t (setq element up next (point)))))))
-       ;; Parse successively each element until we reach POS.
-       (let ((end (or (org-element-property :end element)
-		      (save-excursion
-			(org-with-limited-levels (outline-next-heading))
-			(point))))
-	     (parent element))
-	 (while t
-	   (when syncp
-	     (cond ((= (point) pos) (throw 'exit parent))
-		   ((org-element--cache-interrupt-p time-limit)
-		    (throw 'interrupt nil))))
-	   (unless element
-	     (setq element (org-element--current-element
-			    end 'element mode
-			    (org-element-property :structure parent)))
-	     (org-element-put-property element :parent parent)
-	     (org-element--cache-put element))
-	   (let ((elem-end (org-element-property :end element))
-		 (type (org-element-type element)))
-	     (cond
-	      ;; Skip any element ending before point.  Also skip
-	      ;; element ending at point (unless it is also the end of
-	      ;; buffer) since we're sure that another element begins
-	      ;; after it.
-	      ((and (<= elem-end pos) (/= (point-max) elem-end))
-	       (goto-char elem-end)
-	       (setq mode (org-element--next-mode type nil)))
-	      ;; A non-greater element contains point: return it.
-	      ((not (memq type org-element-greater-elements))
-	       (throw 'exit element))
-	      ;; Otherwise, we have to decide if ELEMENT really
-	      ;; contains POS.  In that case we start parsing from
-	      ;; contents' beginning.
-	      ;;
-	      ;; If POS is at contents' beginning but it is also at
-	      ;; the beginning of the first item in a list or a table.
-	      ;; In that case, we need to create an anchor for that
-	      ;; list or table, so return it.
-	      ;;
-	      ;; Also, if POS is at the end of the buffer, no element
-	      ;; can start after it, but more than one may end there.
-	      ;; Arbitrarily, we choose to return the innermost of
-	      ;; such elements.
-	      ((let ((cbeg (org-element-property :contents-begin element))
-		     (cend (org-element-property :contents-end element)))
-		 (when (or syncp
-			   (and cbeg cend
-				(or (< cbeg pos)
-				    (and (= cbeg pos)
-					 (not (memq type '(plain-list table)))))
-				(or (> cend pos)
-				    (and (= cend pos) (= (point-max) pos)))))
-		   (goto-char (or next cbeg))
-		   (setq next nil
-			 mode (org-element--next-mode type t)
-			 parent element
-			 end cend))))
-	      ;; Otherwise, return ELEMENT as it is the smallest
-	      ;; element containing POS.
-	      (t (throw 'exit element))))
-	   (setq element nil)))))))
-
-
-;;;; Staging Buffer Changes
-
-(defconst org-element--cache-sensitive-re
-  (concat
-   org-outline-regexp-bol "\\|"
-   "\\\\end{[A-Za-z0-9*]+}[ \t]*$" "\\|"
-   "^[ \t]*\\(?:"
-   "#\\+\\(?:BEGIN[:_]\\|END\\(?:_\\|:?[ \t]*$\\)\\)" "\\|"
-   "\\\\begin{[A-Za-z0-9*]+}" "\\|"
-   ":\\(?:\\w\\|[-_]\\)+:[ \t]*$"
-   "\\)")
-  "Regexp matching a sensitive line, structure wise.
-A sensitive line is a headline, inlinetask, block, drawer, or
-latex-environment boundary.  When such a line is modified,
-structure changes in the document may propagate in the whole
-section, possibly making cache invalid.")
-
-(defvar org-element--cache-change-warning nil
-  "Non-nil when a sensitive line is about to be changed.
-It is a symbol among nil, t and `headline'.")
-
-(defun org-element--cache-before-change (beg end)
-  "Request extension of area going to be modified if needed.
-BEG and END are the beginning and end of the range of changed
-text.  See `before-change-functions' for more information."
-  (when (org-element--cache-active-p)
-    (org-with-wide-buffer
-     (goto-char beg)
-     (beginning-of-line)
-     (let ((bottom (save-excursion (goto-char end) (line-end-position))))
-       (setq org-element--cache-change-warning
-	     (save-match-data
-	       (if (and (org-with-limited-levels (org-at-heading-p))
-			(= (line-end-position) bottom))
-		   'headline
-		 (let ((case-fold-search t))
-		   (re-search-forward
-		    org-element--cache-sensitive-re bottom t)))))))))
-
-(defun org-element--cache-after-change (beg end pre)
-  "Update buffer modifications for current buffer.
-BEG and END are the beginning and end of the range of changed
-text, and the length in bytes of the pre-change text replaced by
-that range.  See `after-change-functions' for more information."
-  (when (org-element--cache-active-p)
-    (org-with-wide-buffer
-     (goto-char beg)
-     (beginning-of-line)
-     (save-match-data
-       (let ((top (point))
-	     (bottom (save-excursion (goto-char end) (line-end-position))))
-	 ;; Determine if modified area needs to be extended, according
-	 ;; to both previous and current state.  We make a special
-	 ;; case for headline editing: if a headline is modified but
-	 ;; not removed, do not extend.
-	 (when (pcase org-element--cache-change-warning
-		 (`t t)
-		 (`headline
-		  (not (and (org-with-limited-levels (org-at-heading-p))
-			    (= (line-end-position) bottom))))
-		 (_
-		  (let ((case-fold-search t))
-		    (re-search-forward
-		     org-element--cache-sensitive-re bottom t))))
-	   ;; Effectively extend modified area.
-	   (org-with-limited-levels
-	    (setq top (progn (goto-char top)
-			     (when (outline-previous-heading) (forward-line))
-			     (point)))
-	    (setq bottom (progn (goto-char bottom)
-				(if (outline-next-heading) (1- (point))
-				  (point))))))
-	 ;; Store synchronization request.
-	 (let ((offset (- end beg pre)))
-	   (org-element--cache-submit-request top (- bottom offset) offset)))))
-    ;; Activate a timer to process the request during idle time.
-    (org-element--cache-set-timer (current-buffer))))
-
-(defun org-element--cache-for-removal (beg end offset)
-  "Return first element to remove from cache.
-
-BEG and END are buffer positions delimiting buffer modifications.
-OFFSET is the size of the changes.
-
-Returned element is usually the first element in cache containing
-any position between BEG and END.  As an exception, greater
-elements around the changes that are robust to contents
-modifications are preserved and updated according to the
-changes."
-  (let* ((elements (org-element--cache-find (1- beg) 'both))
-	 (before (car elements))
-	 (after (cdr elements)))
-    (if (not before) after
-      (let ((up before)
-	    (robust-flag t))
-	(while up
-	  (if (let ((type (org-element-type up)))
-		(and (or (memq type '(center-block dynamic-block quote-block
-						   special-block))
-			 ;; Drawers named "PROPERTIES" are probably
-			 ;; a properties drawer being edited.  Force
-			 ;; parsing to check if editing is over.
-			 (and (eq type 'drawer)
-			      (not (string=
-				    (org-element-property :drawer-name up)
-				    "PROPERTIES"))))
-		     (let ((cbeg (org-element-property :contents-begin up)))
-		       (and cbeg
-			    (<= cbeg beg)
-			    (> (org-element-property :contents-end up) end)))))
-	      ;; UP is a robust greater element containing changes.
-	      ;; We only need to extend its ending boundaries.
-	      (org-element--cache-shift-positions
-	       up offset '(:contents-end :end))
-	    (setq before up)
-	    (when robust-flag (setq robust-flag nil)))
-	  (setq up (org-element-property :parent up)))
-	;; We're at top level element containing ELEMENT: if it's
-	;; altered by buffer modifications, it is first element in
-	;; cache to be removed.  Otherwise, that first element is the
-	;; following one.
-	;;
-	;; As a special case, do not remove BEFORE if it is a robust
-	;; container for current changes.
-	(if (or (< (org-element-property :end before) beg) robust-flag) after
-	  before)))))
-
-(defun org-element--cache-submit-request (beg end offset)
-  "Submit a new cache synchronization request for current buffer.
-BEG and END are buffer positions delimiting the minimal area
-where cache data should be removed.  OFFSET is the size of the
-change, as an integer."
-  (let ((next (car org-element--cache-sync-requests))
-	delete-to delete-from)
-    (if (and next
-	     (zerop (aref next 5))
-	     (> (setq delete-to (+ (aref next 2) (aref next 3))) end)
-	     (<= (setq delete-from (aref next 1)) end))
-	;; Current changes can be merged with first sync request: we
-	;; can save a partial cache synchronization.
-	(progn
-	  (cl-incf (aref next 3) offset)
-	  ;; If last change happened within area to be removed, extend
-	  ;; boundaries of robust parents, if any.  Otherwise, find
-	  ;; first element to remove and update request accordingly.
-	  (if (> beg delete-from)
-	      (let ((up (aref next 4)))
-		(while up
-		  (org-element--cache-shift-positions
-		   up offset '(:contents-end :end))
-		  (setq up (org-element-property :parent up))))
-	    (let ((first (org-element--cache-for-removal beg delete-to offset)))
-	      (when first
-		(aset next 0 (org-element--cache-key first))
-		(aset next 1 (org-element-property :begin first))
-		(aset next 4 (org-element-property :parent first))))))
-      ;; Ensure cache is correct up to END.  Also make sure that NEXT,
-      ;; if any, is no longer a 0-phase request, thus ensuring that
-      ;; phases are properly ordered.  We need to provide OFFSET as
-      ;; optional parameter since current modifications are not known
-      ;; yet to the otherwise correct part of the cache (i.e, before
-      ;; the first request).
-      (when next (org-element--cache-sync (current-buffer) end beg))
-      (let ((first (org-element--cache-for-removal beg end offset)))
-	(if first
-	    (push (let ((beg (org-element-property :begin first))
-			(key (org-element--cache-key first)))
-		    (cond
-		     ;; When changes happen before the first known
-		     ;; element, re-parent and shift the rest of the
-		     ;; cache.
-		     ((> beg end) (vector key beg nil offset nil 1))
-		     ;; Otherwise, we find the first non robust
-		     ;; element containing END.  All elements between
-		     ;; FIRST and this one are to be removed.
-		     ((let ((first-end (org-element-property :end first)))
-			(and (> first-end end)
-			     (vector key beg first-end offset first 0))))
-		     (t
-		      (let* ((element (org-element--cache-find end))
-			     (end (org-element-property :end element))
-			     (up element))
-			(while (and (setq up (org-element-property :parent up))
-				    (>= (org-element-property :begin up) beg))
-			  (setq end (org-element-property :end up)
-				element up))
-			(vector key beg end offset element 0)))))
-		  org-element--cache-sync-requests)
-	  ;; No element to remove.  No need to re-parent either.
-	  ;; Simply shift additional elements, if any, by OFFSET.
-	  (when org-element--cache-sync-requests
-	    (cl-incf (aref (car org-element--cache-sync-requests) 3)
-		     offset)))))))
-
-
-;;;; Public Functions
-
-;;;###autoload
-(defun org-element-cache-reset (&optional all)
-  "Reset cache in current buffer.
-When optional argument ALL is non-nil, reset cache in all Org
-buffers."
-  (interactive "P")
-  (dolist (buffer (if all (buffer-list) (list (current-buffer))))
-    (with-current-buffer buffer
-      (when (and org-element-use-cache (derived-mode-p 'org-mode))
-	(setq-local org-element--cache
-		    (avl-tree-create #'org-element--cache-compare))
-	(setq-local org-element--cache-sync-keys
-		    (make-hash-table :weakness 'key :test #'eq))
-	(setq-local org-element--cache-change-warning nil)
-	(setq-local org-element--cache-sync-requests nil)
-	(setq-local org-element--cache-sync-timer nil)
-	(add-hook 'before-change-functions
-		  #'org-element--cache-before-change nil t)
-	(add-hook 'after-change-functions
-		  #'org-element--cache-after-change nil t)))))
-
-;;;###autoload
-(defun org-element-cache-refresh (pos)
-  "Refresh cache at position POS."
-  (when (org-element--cache-active-p)
-    (org-element--cache-sync (current-buffer) pos)
-    (org-element--cache-submit-request pos pos 0)
-    (org-element--cache-set-timer (current-buffer))))
-
-
-
-;;; The Toolbox
-;;
-;; The first move is to implement a way to obtain the smallest element
-;; containing point.  This is the job of `org-element-at-point'.  It
-;; basically jumps back to the beginning of section containing point
-;; and proceed, one element after the other, with
-;; `org-element--current-element' until the container is found.  Note:
-;; When using `org-element-at-point', secondary values are never
-;; parsed since the function focuses on elements, not on objects.
-;;
-;; At a deeper level, `org-element-context' lists all elements and
-;; objects containing point.
-;;
-;; `org-element-nested-p' and `org-element-swap-A-B' may be used
-;; internally by navigation and manipulation tools.
-
-
-;;;###autoload
-(defun org-element-at-point ()
-  "Determine closest element around point.
-
-Return value is a list like (TYPE PROPS) where TYPE is the type
-of the element and PROPS a plist of properties associated to the
-element.
-
-Possible types are defined in `org-element-all-elements'.
-Properties depend on element or object type, but always include
-`:begin', `:end', `:parent' and `:post-blank' properties.
-
-As a special case, if point is at the very beginning of the first
-item in a list or sub-list, returned element will be that list
-instead of the item.  Likewise, if point is at the beginning of
-the first row of a table, returned element will be the table
-instead of the first row.
-
-When point is at the end of the buffer, return the innermost
-element ending there."
-  (org-with-wide-buffer
-   (let ((origin (point)))
-     (end-of-line)
-     (skip-chars-backward " \r\t\n")
-     (cond
-      ;; Within blank lines at the beginning of buffer, return nil.
-      ((bobp) nil)
-      ;; Within blank lines right after a headline, return that
-      ;; headline.
-      ((org-with-limited-levels (org-at-heading-p))
-       (beginning-of-line)
-       (org-element-headline-parser (point-max) t))
-      ;; Otherwise parse until we find element containing ORIGIN.
-      (t
-       (when (org-element--cache-active-p)
-	 (if (not org-element--cache) (org-element-cache-reset)
-	   (org-element--cache-sync (current-buffer) origin)))
-       (org-element--parse-to origin))))))
-
-;;;###autoload
-(defun org-element-context (&optional element)
-  "Return smallest element or object around point.
-
-Return value is a list like (TYPE PROPS) where TYPE is the type
-of the element or object and PROPS a plist of properties
-associated to it.
-
-Possible types are defined in `org-element-all-elements' and
-`org-element-all-objects'.  Properties depend on element or
-object type, but always include `:begin', `:end', `:parent' and
-`:post-blank'.
-
-As a special case, if point is right after an object and not at
-the beginning of any other object, return that object.
-
-Optional argument ELEMENT, when non-nil, is the closest element
-containing point, as returned by `org-element-at-point'.
-Providing it allows for quicker computation."
-  (catch 'objects-forbidden
-    (org-with-wide-buffer
-     (let* ((pos (point))
-	    (element (or element (org-element-at-point)))
-	    (type (org-element-type element))
-	    (post (org-element-property :post-affiliated element)))
-       ;; If point is inside an element containing objects or
-       ;; a secondary string, narrow buffer to the container and
-       ;; proceed with parsing.  Otherwise, return ELEMENT.
-       (cond
-	;; At a parsed affiliated keyword, check if we're inside main
-	;; or dual value.
-	((and post (< pos post))
-	 (beginning-of-line)
-	 (let ((case-fold-search t)) (looking-at org-element--affiliated-re))
-	 (cond
-	  ((not (member-ignore-case (match-string 1)
-				    org-element-parsed-keywords))
-	   (throw 'objects-forbidden element))
-	  ((< (match-end 0) pos)
-	   (narrow-to-region (match-end 0) (line-end-position)))
-	  ((and (match-beginning 2)
-		(>= pos (match-beginning 2))
-		(< pos (match-end 2)))
-	   (narrow-to-region (match-beginning 2) (match-end 2)))
-	  (t (throw 'objects-forbidden element)))
-	 ;; Also change type to retrieve correct restrictions.
-	 (setq type 'keyword))
-	;; At an item, objects can only be located within tag, if any.
-	((eq type 'item)
-	 (let ((tag (org-element-property :tag element)))
-	   (if (or (not tag) (/= (line-beginning-position) post))
-	       (throw 'objects-forbidden element)
-	     (beginning-of-line)
-	     (search-forward tag (line-end-position))
-	     (goto-char (match-beginning 0))
-	     (if (and (>= pos (point)) (< pos (match-end 0)))
-		 (narrow-to-region (point) (match-end 0))
-	       (throw 'objects-forbidden element)))))
-	;; At an headline or inlinetask, objects are in title.
-	((memq type '(headline inlinetask))
-	 (let ((case-fold-search nil))
-	   (goto-char (org-element-property :begin element))
-	   (looking-at org-complex-heading-regexp)
-	   (let ((end (match-end 4)))
-	     (if (not end) (throw 'objects-forbidden element)
-	       (goto-char (match-beginning 4))
-	       (when (looking-at org-comment-string)
-		 (goto-char (match-end 0)))
-	       (if (>= (point) end) (throw 'objects-forbidden element)
-		 (narrow-to-region (point) end))))))
-	;; At a paragraph, a table-row or a verse block, objects are
-	;; located within their contents.
-	((memq type '(paragraph table-row verse-block))
-	 (let ((cbeg (org-element-property :contents-begin element))
-	       (cend (org-element-property :contents-end element)))
-	   ;; CBEG is nil for table rules.
-	   (if (and cbeg cend (>= pos cbeg)
-		    (or (< pos cend) (and (= pos cend) (eobp))))
-	       (narrow-to-region cbeg cend)
-	     (throw 'objects-forbidden element))))
-	(t (throw 'objects-forbidden element)))
-       (goto-char (point-min))
-       (let ((restriction (org-element-restriction type))
-	     (parent element)
-	     last)
-	 (catch 'exit
-	   (while t
-	     (let ((next (org-element--object-lex restriction)))
-	       (when next (org-element-put-property next :parent parent))
-	       ;; Process NEXT, if any, in order to know if we need to
-	       ;; skip it, return it or move into it.
-	       (if (or (not next) (> (org-element-property :begin next) pos))
-		   (throw 'exit (or last parent))
-		 (let ((end (org-element-property :end next))
-		       (cbeg (org-element-property :contents-begin next))
-		       (cend (org-element-property :contents-end next)))
-		   (cond
-		    ;; Skip objects ending before point.  Also skip
-		    ;; objects ending at point unless it is also the
-		    ;; end of buffer, since we want to return the
-		    ;; innermost object.
-		    ((and (<= end pos) (/= (point-max) end))
-		     (goto-char end)
-		     ;; For convenience, when object ends at POS,
-		     ;; without any space, store it in LAST, as we
-		     ;; will return it if no object starts here.
-		     (when (and (= end pos)
-				(not (memq (char-before) '(?\s ?\t))))
-		       (setq last next)))
-		    ;; If POS is within a container object, move into
-		    ;; that object.
-		    ((and cbeg cend
-			  (>= pos cbeg)
-			  (or (< pos cend)
-			      ;; At contents' end, if there is no
-			      ;; space before point, also move into
-			      ;; object, for consistency with
-			      ;; convenience feature above.
-			      (and (= pos cend)
-				   (or (= (point-max) pos)
-				       (not (memq (char-before pos)
-						  '(?\s ?\t)))))))
-		     (goto-char cbeg)
-		     (narrow-to-region (point) cend)
-		     (setq parent next)
-		     (setq restriction (org-element-restriction next)))
-		    ;; Otherwise, return NEXT.
-		    (t (throw 'exit next)))))))))))))
-
-(defun org-element-lineage (blob &optional types with-self)
-  "List all ancestors of a given element or object.
-
-BLOB is an object or element.
-
-When optional argument TYPES is a list of symbols, return the
-first element or object in the lineage whose type belongs to that
-list.
-
-When optional argument WITH-SELF is non-nil, lineage includes
-BLOB itself as the first element, and TYPES, if provided, also
-apply to it.
-
-When BLOB is obtained through `org-element-context' or
-`org-element-at-point', only ancestors from its section can be
-found.  There is no such limitation when BLOB belongs to a full
-parse tree."
-  (let ((up (if with-self blob (org-element-property :parent blob)))
-	ancestors)
-    (while (and up (not (memq (org-element-type up) types)))
-      (unless types (push up ancestors))
-      (setq up (org-element-property :parent up)))
-    (if types up (nreverse ancestors))))
-
-(defun org-element-nested-p (elem-A elem-B)
-  "Non-nil when elements ELEM-A and ELEM-B are nested."
-  (let ((beg-A (org-element-property :begin elem-A))
-	(beg-B (org-element-property :begin elem-B))
-	(end-A (org-element-property :end elem-A))
-	(end-B (org-element-property :end elem-B)))
-    (or (and (>= beg-A beg-B) (<= end-A end-B))
-	(and (>= beg-B beg-A) (<= end-B end-A)))))
-
-(defun org-element-swap-A-B (elem-A elem-B)
-  "Swap elements ELEM-A and ELEM-B.
-Assume ELEM-B is after ELEM-A in the buffer.  Leave point at the
-end of ELEM-A."
-  (goto-char (org-element-property :begin elem-A))
-  ;; There are two special cases when an element doesn't start at bol:
-  ;; the first paragraph in an item or in a footnote definition.
-  (let ((specialp (not (bolp))))
-    ;; Only a paragraph without any affiliated keyword can be moved at
-    ;; ELEM-A position in such a situation.  Note that the case of
-    ;; a footnote definition is impossible: it cannot contain two
-    ;; paragraphs in a row because it cannot contain a blank line.
-    (if (and specialp
-	     (or (not (eq (org-element-type elem-B) 'paragraph))
-		 (/= (org-element-property :begin elem-B)
-		     (org-element-property :contents-begin elem-B))))
-	(error "Cannot swap elements"))
-    ;; In a special situation, ELEM-A will have no indentation.  We'll
-    ;; give it ELEM-B's (which will in, in turn, have no indentation).
-    (let* ((ind-B (when specialp
-		    (goto-char (org-element-property :begin elem-B))
-		    (org-get-indentation)))
-	   (beg-A (org-element-property :begin elem-A))
-	   (end-A (save-excursion
-		    (goto-char (org-element-property :end elem-A))
-		    (skip-chars-backward " \r\t\n")
-		    (point-at-eol)))
-	   (beg-B (org-element-property :begin elem-B))
-	   (end-B (save-excursion
-		    (goto-char (org-element-property :end elem-B))
-		    (skip-chars-backward " \r\t\n")
-		    (point-at-eol)))
-	   ;; Store inner overlays responsible for visibility status.
-	   ;; We also need to store their boundaries as they will be
-	   ;; removed from buffer.
-	   (overlays
-	    (cons
-	     (delq nil
-		   (mapcar (lambda (o)
-			     (and (>= (overlay-start o) beg-A)
-				  (<= (overlay-end o) end-A)
-				  (list o (overlay-start o) (overlay-end o))))
-			   (overlays-in beg-A end-A)))
-	     (delq nil
-		   (mapcar (lambda (o)
-			     (and (>= (overlay-start o) beg-B)
-				  (<= (overlay-end o) end-B)
-				  (list o (overlay-start o) (overlay-end o))))
-			   (overlays-in beg-B end-B)))))
-	   ;; Get contents.
-	   (body-A (buffer-substring beg-A end-A))
-	   (body-B (delete-and-extract-region beg-B end-B)))
-      (goto-char beg-B)
-      (when specialp
-	(setq body-B (replace-regexp-in-string "\\`[ \t]*" "" body-B))
-	(indent-to-column ind-B))
-      (insert body-A)
-      ;; Restore ex ELEM-A overlays.
-      (let ((offset (- beg-B beg-A)))
-	(dolist (o (car overlays))
-	  (move-overlay (car o) (+ (nth 1 o) offset) (+ (nth 2 o) offset)))
-	(goto-char beg-A)
-	(delete-region beg-A end-A)
-	(insert body-B)
-	;; Restore ex ELEM-B overlays.
-	(dolist (o (cdr overlays))
-	  (move-overlay (car o) (- (nth 1 o) offset) (- (nth 2 o) offset))))
-      (goto-char (org-element-property :end elem-B)))))
-
-
-(provide 'org-element)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-element.el ends here
diff --git a/elpa/org-9.1.14/org-element.elc b/elpa/org-9.1.14/org-element.elc
deleted file mode 100644
index 0953726..0000000
--- a/elpa/org-9.1.14/org-element.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-entities.el b/elpa/org-9.1.14/org-entities.el
deleted file mode 100644
index e291b52..0000000
--- a/elpa/org-9.1.14/org-entities.el
+++ /dev/null
@@ -1,599 +0,0 @@
-;;; org-entities.el --- Support for Special Entities -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>,
-;;         Ulf Stegemann <ulf at zeitform dot de>
-;; Keywords: outlines, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;;; Code:
-
-(declare-function org-toggle-pretty-entities "org"       ())
-(declare-function org-table-align            "org-table" ())
-
-(defgroup org-entities nil
-  "Options concerning entities in Org mode."
-  :tag "Org Entities"
-  :group 'org)
-
-(defun org-entities--user-safe-p (v)
-  "Non-nil if V is a safe value for `org-entities-user'."
-  (pcase v
-    (`nil t)
-    (`(,(and (pred stringp)
-	     (pred (string-match-p "\\`[a-zA-Z][a-zA-Z0-9]*\\'")))
-       ,(pred stringp) ,(pred booleanp) ,(pred stringp)
-       ,(pred stringp) ,(pred stringp) ,(pred stringp))
-     t)
-    (_ nil)))
-
-(defcustom org-entities-user nil
-  "User-defined entities used in Org to produce special characters.
-Each entry in this list is a list of strings.  It associates the name
-of the entity that can be inserted into an Org file as \\name with the
-appropriate replacements for the different export backends.  The order
-of the fields is the following
-
-name                 As a string, without the leading backslash.
-LaTeX replacement    In ready LaTeX, no further processing will take place.
-LaTeX mathp          Either t or nil.  When t this entity needs to be in
-                     math mode.
-HTML replacement     In ready HTML, no further processing will take place.
-                     Usually this will be an &...; entity.
-ASCII replacement    Plain ASCII, no extensions.
-Latin1 replacement   Use the special characters available in latin1.
-utf-8 replacement    Use the special characters available in utf-8.
-
-If you define new entities here that require specific LaTeX
-packages to be loaded, add these packages to `org-latex-packages-alist'."
-  :group 'org-entities
-  :version "24.1"
-  :type '(repeat
-	  (list
-	   (string :tag "name  ")
-	   (string :tag "LaTeX ")
-	   (boolean :tag "Require LaTeX math?")
-	   (string :tag "HTML  ")
-	   (string :tag "ASCII ")
-	   (string :tag "Latin1")
-	   (string :tag "utf-8 ")))
-  :safe #'org-entities--user-safe-p)
-
-(defconst org-entities
-  (append
-   '("* Letters"
-     "** Latin"
-     ("Agrave" "\\`{A}" nil "&Agrave;" "A" "À" "À")
-     ("agrave" "\\`{a}" nil "&agrave;" "a" "à" "à")
-     ("Aacute" "\\'{A}" nil "&Aacute;" "A" "Á" "Á")
-     ("aacute" "\\'{a}" nil "&aacute;" "a" "á" "á")
-     ("Acirc" "\\^{A}" nil "&Acirc;" "A" "Â" "Â")
-     ("acirc" "\\^{a}" nil "&acirc;" "a" "â" "â")
-     ("Amacr" "\\bar{A}" nil "&Amacr;" "A" "Ã" "Ã")
-     ("amacr" "\\bar{a}" nil "&amacr;" "a" "ã" "ã")
-     ("Atilde" "\\~{A}" nil "&Atilde;" "A" "Ã" "Ã")
-     ("atilde" "\\~{a}" nil "&atilde;" "a" "ã" "ã")
-     ("Auml" "\\\"{A}" nil "&Auml;" "Ae" "Ä" "Ä")
-     ("auml" "\\\"{a}" nil "&auml;" "ae" "ä" "ä")
-     ("Aring" "\\AA{}" nil "&Aring;" "A" "Å" "Å")
-     ("AA" "\\AA{}" nil "&Aring;" "A" "Å" "Å")
-     ("aring" "\\aa{}" nil "&aring;" "a" "å" "å")
-     ("AElig" "\\AE{}" nil "&AElig;" "AE" "Æ" "Æ")
-     ("aelig" "\\ae{}" nil "&aelig;" "ae" "æ" "æ")
-     ("Ccedil" "\\c{C}" nil "&Ccedil;" "C" "Ç" "Ç")
-     ("ccedil" "\\c{c}" nil "&ccedil;" "c" "ç" "ç")
-     ("Egrave" "\\`{E}" nil "&Egrave;" "E" "È" "È")
-     ("egrave" "\\`{e}" nil "&egrave;" "e" "è" "è")
-     ("Eacute" "\\'{E}" nil "&Eacute;" "E" "É" "É")
-     ("eacute" "\\'{e}" nil "&eacute;" "e" "é" "é")
-     ("Ecirc" "\\^{E}" nil "&Ecirc;" "E" "Ê" "Ê")
-     ("ecirc" "\\^{e}" nil "&ecirc;" "e" "ê" "ê")
-     ("Euml" "\\\"{E}" nil "&Euml;" "E" "Ë" "Ë")
-     ("euml" "\\\"{e}" nil "&euml;" "e" "ë" "ë")
-     ("Igrave" "\\`{I}" nil "&Igrave;" "I" "Ì" "Ì")
-     ("igrave" "\\`{i}" nil "&igrave;" "i" "ì" "ì")
-     ("Iacute" "\\'{I}" nil "&Iacute;" "I" "Í" "Í")
-     ("iacute" "\\'{i}" nil "&iacute;" "i" "í" "í")
-     ("Icirc" "\\^{I}" nil "&Icirc;" "I" "Î" "Î")
-     ("icirc" "\\^{i}" nil "&icirc;" "i" "î" "î")
-     ("Iuml" "\\\"{I}" nil "&Iuml;" "I" "Ï" "Ï")
-     ("iuml" "\\\"{i}" nil "&iuml;" "i" "ï" "ï")
-     ("Ntilde" "\\~{N}" nil "&Ntilde;" "N" "Ñ" "Ñ")
-     ("ntilde" "\\~{n}" nil "&ntilde;" "n" "ñ" "ñ")
-     ("Ograve" "\\`{O}" nil "&Ograve;" "O" "Ò" "Ò")
-     ("ograve" "\\`{o}" nil "&ograve;" "o" "ò" "ò")
-     ("Oacute" "\\'{O}" nil "&Oacute;" "O" "Ó" "Ó")
-     ("oacute" "\\'{o}" nil "&oacute;" "o" "ó" "ó")
-     ("Ocirc" "\\^{O}" nil "&Ocirc;" "O" "Ô" "Ô")
-     ("ocirc" "\\^{o}" nil "&ocirc;" "o" "ô" "ô")
-     ("Otilde" "\\~{O}" nil "&Otilde;" "O" "Õ" "Õ")
-     ("otilde" "\\~{o}" nil "&otilde;" "o" "õ" "õ")
-     ("Ouml" "\\\"{O}" nil "&Ouml;" "Oe" "Ö" "Ö")
-     ("ouml" "\\\"{o}" nil "&ouml;" "oe" "ö" "ö")
-     ("Oslash" "\\O" nil "&Oslash;" "O" "Ø" "Ø")
-     ("oslash" "\\o{}" nil "&oslash;" "o" "ø" "ø")
-     ("OElig" "\\OE{}" nil "&OElig;" "OE" "OE" "Œ")
-     ("oelig" "\\oe{}" nil "&oelig;" "oe" "oe" "œ")
-     ("Scaron" "\\v{S}" nil "&Scaron;" "S" "S" "Š")
-     ("scaron" "\\v{s}" nil "&scaron;" "s" "s" "š")
-     ("szlig" "\\ss{}" nil "&szlig;" "ss" "ß" "ß")
-     ("Ugrave" "\\`{U}" nil "&Ugrave;" "U" "Ù" "Ù")
-     ("ugrave" "\\`{u}" nil "&ugrave;" "u" "ù" "ù")
-     ("Uacute" "\\'{U}" nil "&Uacute;" "U" "Ú" "Ú")
-     ("uacute" "\\'{u}" nil "&uacute;" "u" "ú" "ú")
-     ("Ucirc" "\\^{U}" nil "&Ucirc;" "U" "Û" "Û")
-     ("ucirc" "\\^{u}" nil "&ucirc;" "u" "û" "û")
-     ("Uuml" "\\\"{U}" nil "&Uuml;" "Ue" "Ü" "Ü")
-     ("uuml" "\\\"{u}" nil "&uuml;" "ue" "ü" "ü")
-     ("Yacute" "\\'{Y}" nil "&Yacute;" "Y" "Ý" "Ý")
-     ("yacute" "\\'{y}" nil "&yacute;" "y" "ý" "ý")
-     ("Yuml" "\\\"{Y}" nil "&Yuml;" "Y" "Y" "Ÿ")
-     ("yuml" "\\\"{y}" nil "&yuml;" "y" "ÿ" "ÿ")
-
-     "** Latin (special face)"
-     ("fnof" "\\textit{f}" nil "&fnof;" "f" "f" "ƒ")
-     ("real" "\\Re" t "&real;" "R" "R" "ℜ")
-     ("image" "\\Im" t "&image;" "I" "I" "ℑ")
-     ("weierp" "\\wp" t "&weierp;" "P" "P" "℘")
-     ("ell" "\\ell" t "&ell;" "ell" "ell" "ℓ")
-     ("imath" "\\imath" t "&imath;" "[dotless i]" "dotless i" "ı")
-     ("jmath" "\\jmath" t "&jmath;" "[dotless j]" "dotless j" "ȷ")
-
-     "** Greek"
-     ("Alpha" "A" nil "&Alpha;" "Alpha" "Alpha" "Α")
-     ("alpha" "\\alpha" t "&alpha;" "alpha" "alpha" "α")
-     ("Beta" "B" nil "&Beta;" "Beta" "Beta" "Β")
-     ("beta" "\\beta" t "&beta;" "beta" "beta" "β")
-     ("Gamma" "\\Gamma" t "&Gamma;" "Gamma" "Gamma" "Γ")
-     ("gamma" "\\gamma" t "&gamma;" "gamma" "gamma" "γ")
-     ("Delta" "\\Delta" t "&Delta;" "Delta" "Delta" "Δ")
-     ("delta" "\\delta" t "&delta;" "delta" "delta" "δ")
-     ("Epsilon" "E" nil "&Epsilon;" "Epsilon" "Epsilon" "Ε")
-     ("epsilon" "\\epsilon" t "&epsilon;" "epsilon" "epsilon" "ε")
-     ("varepsilon" "\\varepsilon" t "&epsilon;" "varepsilon" "varepsilon" "ε")
-     ("Zeta" "Z" nil "&Zeta;" "Zeta" "Zeta" "Ζ")
-     ("zeta" "\\zeta" t "&zeta;" "zeta" "zeta" "ζ")
-     ("Eta" "H" nil "&Eta;" "Eta" "Eta" "Η")
-     ("eta" "\\eta" t "&eta;" "eta" "eta" "η")
-     ("Theta" "\\Theta" t "&Theta;" "Theta" "Theta" "Θ")
-     ("theta" "\\theta" t "&theta;" "theta" "theta" "θ")
-     ("thetasym" "\\vartheta" t "&thetasym;" "theta" "theta" "ϑ")
-     ("vartheta" "\\vartheta" t "&thetasym;" "theta" "theta" "ϑ")
-     ("Iota" "I" nil "&Iota;" "Iota" "Iota" "Ι")
-     ("iota" "\\iota" t "&iota;" "iota" "iota" "ι")
-     ("Kappa" "K" nil "&Kappa;" "Kappa" "Kappa" "Κ")
-     ("kappa" "\\kappa" t "&kappa;" "kappa" "kappa" "κ")
-     ("Lambda" "\\Lambda" t "&Lambda;" "Lambda" "Lambda" "Λ")
-     ("lambda" "\\lambda" t "&lambda;" "lambda" "lambda" "λ")
-     ("Mu" "M" nil "&Mu;" "Mu" "Mu" "Μ")
-     ("mu" "\\mu" t "&mu;" "mu" "mu" "μ")
-     ("nu" "\\nu" t "&nu;" "nu" "nu" "ν")
-     ("Nu" "N" nil "&Nu;" "Nu" "Nu" "Ν")
-     ("Xi" "\\Xi" t "&Xi;" "Xi" "Xi" "Ξ")
-     ("xi" "\\xi" t "&xi;" "xi" "xi" "ξ")
-     ("Omicron" "O" nil "&Omicron;" "Omicron" "Omicron" "Ο")
-     ("omicron" "\\textit{o}" nil "&omicron;" "omicron" "omicron" "ο")
-     ("Pi" "\\Pi" t "&Pi;" "Pi" "Pi" "Π")
-     ("pi" "\\pi" t "&pi;" "pi" "pi" "π")
-     ("Rho" "P" nil "&Rho;" "Rho" "Rho" "Ρ")
-     ("rho" "\\rho" t "&rho;" "rho" "rho" "ρ")
-     ("Sigma" "\\Sigma" t "&Sigma;" "Sigma" "Sigma" "Σ")
-     ("sigma" "\\sigma" t "&sigma;" "sigma" "sigma" "σ")
-     ("sigmaf" "\\varsigma" t "&sigmaf;" "sigmaf" "sigmaf" "ς")
-     ("varsigma" "\\varsigma" t "&sigmaf;" "varsigma" "varsigma" "ς")
-     ("Tau" "T" nil "&Tau;" "Tau" "Tau" "Τ")
-     ("Upsilon" "\\Upsilon" t "&Upsilon;" "Upsilon" "Upsilon" "Υ")
-     ("upsih" "\\Upsilon" t "&upsih;" "upsilon" "upsilon" "ϒ")
-     ("upsilon" "\\upsilon" t "&upsilon;" "upsilon" "upsilon" "υ")
-     ("Phi" "\\Phi" t "&Phi;" "Phi" "Phi" "Φ")
-     ("phi" "\\phi" t "&phi;" "phi" "phi" "ɸ")
-     ("varphi" "\\varphi" t "&varphi;" "varphi" "varphi" "φ")
-     ("Chi" "X" nil "&Chi;" "Chi" "Chi" "Χ")
-     ("chi" "\\chi" t "&chi;" "chi" "chi" "χ")
-     ("acutex" "\\acute x" t "&acute;x" "'x" "'x" "𝑥́")
-     ("Psi" "\\Psi" t "&Psi;" "Psi" "Psi" "Ψ")
-     ("psi" "\\psi" t "&psi;" "psi" "psi" "ψ")
-     ("tau" "\\tau" t "&tau;" "tau" "tau" "τ")
-     ("Omega" "\\Omega" t "&Omega;" "Omega" "Omega" "Ω")
-     ("omega" "\\omega" t "&omega;" "omega" "omega" "ω")
-     ("piv" "\\varpi" t "&piv;" "omega-pi" "omega-pi" "ϖ")
-     ("varpi" "\\varpi" t "&piv;" "omega-pi" "omega-pi" "ϖ")
-     ("partial" "\\partial" t "&part;" "[partial differential]" "[partial differential]" "∂")
-
-     "** Hebrew"
-     ("alefsym" "\\aleph" t "&alefsym;" "aleph" "aleph" "ℵ")
-     ("aleph" "\\aleph" t "&aleph;" "aleph" "aleph" "ℵ")
-     ("gimel" "\\gimel" t "&gimel;" "gimel" "gimel" "ℷ")
-     ("beth" "\\beth" t "&beth;" "beth" "beth" "ב")
-     ("dalet" "\\daleth" t "&daleth;" "dalet" "dalet" "ד")
-
-     "** Dead languages"
-     ("ETH" "\\DH{}" nil "&ETH;" "D" "Ð" "Ð")
-     ("eth" "\\dh{}" nil "&eth;" "dh" "ð" "ð")
-     ("THORN" "\\TH{}" nil "&THORN;" "TH" "Þ" "Þ")
-     ("thorn" "\\th{}" nil "&thorn;" "th" "þ" "þ")
-
-     "* Punctuation"
-     "** Dots and Marks"
-     ("dots" "\\dots{}" nil "&hellip;" "..." "..." "…")
-     ("cdots" "\\cdots{}" t "&ctdot;" "..." "..." "⋯")
-     ("hellip" "\\dots{}" nil "&hellip;" "..." "..." "…")
-     ("middot" "\\textperiodcentered{}" nil "&middot;" "." "·" "·")
-     ("iexcl" "!`" nil "&iexcl;" "!" "¡" "¡")
-     ("iquest" "?`" nil "&iquest;" "?" "¿" "¿")
-
-     "** Dash-like"
-     ("shy" "\\-" nil "&shy;" "" "" "")
-     ("ndash" "--" nil "&ndash;" "-" "-" "–")
-     ("mdash" "---" nil "&mdash;" "--" "--" "—")
-
-     "** Quotations"
-     ("quot" "\\textquotedbl{}" nil "&quot;" "\"" "\"" "\"")
-     ("acute" "\\textasciiacute{}" nil "&acute;" "'" "´" "´")
-     ("ldquo" "\\textquotedblleft{}" nil "&ldquo;" "\"" "\"" "“")
-     ("rdquo" "\\textquotedblright{}" nil "&rdquo;" "\"" "\"" "”")
-     ("bdquo" "\\quotedblbase{}" nil "&bdquo;" "\"" "\"" "„")
-     ("lsquo" "\\textquoteleft{}" nil "&lsquo;" "`" "`" "‘")
-     ("rsquo" "\\textquoteright{}" nil "&rsquo;" "'" "'" "’")
-     ("sbquo" "\\quotesinglbase{}" nil "&sbquo;" "," "," "‚")
-     ("laquo" "\\guillemotleft{}" nil "&laquo;" "<<" "«" "«")
-     ("raquo" "\\guillemotright{}" nil "&raquo;" ">>" "»" "»")
-     ("lsaquo" "\\guilsinglleft{}" nil "&lsaquo;" "<" "<" "‹")
-     ("rsaquo" "\\guilsinglright{}" nil "&rsaquo;" ">" ">" "›")
-
-     "* Other"
-     "** Misc. (often used)"
-     ("circ" "\\^{}" nil "&circ;" "^" "^" "∘")
-     ("vert" "\\vert{}" t "&vert;" "|" "|" "|")
-     ("vbar" "|" nil "|" "|" "|" "|")
-     ("brvbar" "\\textbrokenbar{}" nil "&brvbar;" "|" "¦" "¦")
-     ("S" "\\S" nil "&sect;" "paragraph" "§" "§")
-     ("sect" "\\S" nil "&sect;" "paragraph" "§" "§")
-     ("amp" "\\&" nil "&amp;" "&" "&" "&")
-     ("lt" "\\textless{}" nil "&lt;" "<" "<" "<")
-     ("gt" "\\textgreater{}" nil "&gt;" ">" ">" ">")
-     ("tilde" "\\textasciitilde{}" nil "~" "~" "~" "~")
-     ("slash" "/" nil "/" "/" "/" "/")
-     ("plus" "+" nil "+" "+" "+" "+")
-     ("under" "\\_" nil "_" "_" "_" "_")
-     ("equal" "=" nil "=" "=" "=" "=")
-     ("asciicirc" "\\textasciicircum{}" nil "^" "^" "^" "^")
-     ("dagger" "\\textdagger{}" nil "&dagger;" "[dagger]" "[dagger]" "†")
-     ("dag" "\\dag{}" nil "&dagger;" "[dagger]" "[dagger]" "†")
-     ("Dagger" "\\textdaggerdbl{}" nil "&Dagger;" "[doubledagger]" "[doubledagger]" "‡")
-     ("ddag" "\\ddag{}" nil "&Dagger;" "[doubledagger]" "[doubledagger]" "‡")
-
-     "** Whitespace"
-     ("nbsp" "~" nil "&nbsp;" " " "\x00A0" "\x00A0")
-     ("ensp" "\\hspace*{.5em}" nil "&ensp;" " " " " " ")
-     ("emsp" "\\hspace*{1em}" nil "&emsp;" " " " " " ")
-     ("thinsp" "\\hspace*{.2em}" nil "&thinsp;" " " " " " ")
-
-     "** Currency"
-     ("curren" "\\textcurrency{}" nil "&curren;" "curr." "¤" "¤")
-     ("cent" "\\textcent{}" nil "&cent;" "cent" "¢" "¢")
-     ("pound" "\\pounds{}" nil "&pound;" "pound" "£" "£")
-     ("yen" "\\textyen{}" nil "&yen;" "yen" "¥" "¥")
-     ("euro" "\\texteuro{}" nil "&euro;" "EUR" "EUR" "€")
-     ("EUR" "\\texteuro{}" nil "&euro;" "EUR" "EUR" "€")
-     ("dollar" "\\$" nil "$" "$" "$" "$")
-     ("USD" "\\$" nil "$" "$" "$" "$")
-
-     "** Property Marks"
-     ("copy" "\\textcopyright{}" nil "&copy;" "(c)" "©" "©")
-     ("reg" "\\textregistered{}" nil "&reg;" "(r)" "®" "®")
-     ("trade" "\\texttrademark{}" nil "&trade;" "TM" "TM" "™")
-
-     "** Science et al."
-     ("minus" "\\minus" t "&minus;" "-" "-" "−")
-     ("pm" "\\textpm{}" nil "&plusmn;" "+-" "±" "±")
-     ("plusmn" "\\textpm{}" nil "&plusmn;" "+-" "±" "±")
-     ("times" "\\texttimes{}" nil "&times;" "*" "×" "×")
-     ("frasl" "/" nil "&frasl;" "/" "/" "⁄")
-     ("colon" "\\colon" t ":" ":" ":" ":")
-     ("div" "\\textdiv{}" nil "&divide;" "/" "÷" "÷")
-     ("frac12" "\\textonehalf{}" nil "&frac12;" "1/2" "½" "½")
-     ("frac14" "\\textonequarter{}" nil "&frac14;" "1/4" "¼" "¼")
-     ("frac34" "\\textthreequarters{}" nil "&frac34;" "3/4" "¾" "¾")
-     ("permil" "\\textperthousand{}" nil "&permil;" "per thousand" "per thousand" "‰")
-     ("sup1" "\\textonesuperior{}" nil "&sup1;" "^1" "¹" "¹")
-     ("sup2" "\\texttwosuperior{}" nil "&sup2;" "^2" "²" "²")
-     ("sup3" "\\textthreesuperior{}" nil "&sup3;" "^3" "³" "³")
-     ("radic" "\\sqrt{\\,}" t "&radic;" "[square root]" "[square root]" "√")
-     ("sum" "\\sum" t "&sum;" "[sum]" "[sum]" "∑")
-     ("prod" "\\prod" t "&prod;" "[product]" "[n-ary product]" "∏")
-     ("micro" "\\textmu{}" nil "&micro;" "micro" "µ" "µ")
-     ("macr" "\\textasciimacron{}" nil "&macr;" "[macron]" "¯" "¯")
-     ("deg" "\\textdegree{}" nil "&deg;" "degree" "°" "°")
-     ("prime" "\\prime" t "&prime;" "'" "'" "′")
-     ("Prime" "\\prime{}\\prime" t "&Prime;" "''" "''" "″")
-     ("infin" "\\infty" t "&infin;" "[infinity]" "[infinity]" "∞")
-     ("infty" "\\infty" t "&infin;" "[infinity]" "[infinity]" "∞")
-     ("prop" "\\propto" t "&prop;" "[proportional to]" "[proportional to]" "∝")
-     ("propto" "\\propto" t "&prop;" "[proportional to]" "[proportional to]" "∝")
-     ("not" "\\textlnot{}" nil "&not;" "[angled dash]" "¬" "¬")
-     ("neg" "\\neg{}" t "&not;" "[angled dash]" "¬" "¬")
-     ("land" "\\land" t "&and;" "[logical and]" "[logical and]" "∧")
-     ("wedge" "\\wedge" t "&and;" "[logical and]" "[logical and]" "∧")
-     ("lor" "\\lor" t "&or;" "[logical or]" "[logical or]" "∨")
-     ("vee" "\\vee" t "&or;" "[logical or]" "[logical or]" "∨")
-     ("cap" "\\cap" t "&cap;" "[intersection]" "[intersection]" "∩")
-     ("cup" "\\cup" t "&cup;" "[union]" "[union]" "∪")
-     ("smile" "\\smile" t "&smile;" "[cup product]" "[cup product]" "⌣")
-     ("frown" "\\frown" t "&frown;" "[Cap product]" "[cap product]" "⌢")
-     ("int" "\\int" t "&int;" "[integral]" "[integral]" "∫")
-     ("therefore" "\\therefore" t "&there4;" "[therefore]" "[therefore]" "∴")
-     ("there4" "\\therefore" t "&there4;" "[therefore]" "[therefore]" "∴")
-     ("because" "\\because" t "&because;" "[because]" "[because]" "∵")
-     ("sim" "\\sim" t "&sim;" "~" "~" "∼")
-     ("cong" "\\cong" t "&cong;" "[approx. equal to]" "[approx. equal to]" "≅")
-     ("simeq" "\\simeq" t "&cong;"  "[approx. equal to]" "[approx. equal to]" "≅")
-     ("asymp" "\\asymp" t "&asymp;" "[almost equal to]" "[almost equal to]" "≈")
-     ("approx" "\\approx" t "&asymp;" "[almost equal to]" "[almost equal to]" "≈")
-     ("ne" "\\ne" t "&ne;" "[not equal to]" "[not equal to]" "≠")
-     ("neq" "\\neq" t "&ne;" "[not equal to]" "[not equal to]" "≠")
-     ("equiv" "\\equiv" t "&equiv;" "[identical to]" "[identical to]" "≡")
-
-     ("triangleq" "\\triangleq" t "&triangleq;" "[defined to]" "[defined to]" "≜")
-     ("le" "\\le" t "&le;" "<=" "<=" "≤")
-     ("leq" "\\le" t "&le;" "<=" "<=" "≤")
-     ("ge" "\\ge" t "&ge;" ">=" ">=" "≥")
-     ("geq" "\\ge" t "&ge;" ">=" ">=" "≥")
-     ("lessgtr" "\\lessgtr" t "&lessgtr;" "[less than or greater than]" "[less than or greater than]" "≶")
-     ("lesseqgtr" "\\lesseqgtr" t "&lesseqgtr;" "[less than or equal or greater than or equal]" "[less than or equal or greater than or equal]" "⋚")
-     ("ll" "\\ll" t  "&Lt;" "<<" "<<" "≪")
-     ("Ll" "\\lll" t "&Ll;" "<<<" "<<<" "⋘")
-     ("lll" "\\lll" t "&Ll;" "<<<" "<<<" "⋘")
-     ("gg" "\\gg" t  "&Gt;" ">>" ">>" "≫")
-     ("Gg" "\\ggg" t "&Gg;" ">>>" ">>>" "⋙")
-     ("ggg" "\\ggg" t "&Gg;" ">>>" ">>>" "⋙")
-     ("prec" "\\prec" t "&pr;" "[precedes]" "[precedes]" "≺")
-     ("preceq" "\\preceq" t "&prcue;" "[precedes or equal]" "[precedes or equal]" "≼")
-     ("preccurlyeq" "\\preccurlyeq" t "&prcue;" "[precedes or equal]" "[precedes or equal]" "≼")
-     ("succ" "\\succ" t "&sc;" "[succeeds]" "[succeeds]" "≻")
-     ("succeq" "\\succeq" t "&sccue;" "[succeeds or equal]" "[succeeds or equal]" "≽")
-     ("succcurlyeq" "\\succcurlyeq" t "&sccue;" "[succeeds or equal]" "[succeeds or equal]" "≽")
-     ("sub" "\\subset" t "&sub;" "[subset of]" "[subset of]" "⊂")
-     ("subset" "\\subset" t "&sub;" "[subset of]" "[subset of]" "⊂")
-     ("sup" "\\supset" t "&sup;" "[superset of]" "[superset of]" "⊃")
-     ("supset" "\\supset" t "&sup;" "[superset of]" "[superset of]" "⊃")
-     ("nsub" "\\not\\subset" t "&nsub;" "[not a subset of]" "[not a subset of" "⊄")
-     ("sube" "\\subseteq" t "&sube;" "[subset of or equal to]" "[subset of or equal to]" "⊆")
-     ("nsup" "\\not\\supset" t "&nsup;" "[not a superset of]" "[not a superset of]" "⊅")
-     ("supe" "\\supseteq" t "&supe;" "[superset of or equal to]" "[superset of or equal to]" "⊇")
-     ("setminus" "\\setminus" t "&setminus;" "\" "\" "⧵")
-     ("forall" "\\forall" t "&forall;" "[for all]" "[for all]" "∀")
-     ("exist" "\\exists" t "&exist;" "[there exists]" "[there exists]" "∃")
-     ("exists" "\\exists" t "&exist;" "[there exists]" "[there exists]" "∃")
-     ("nexist" "\\nexists" t "&exist;" "[there does not exists]" "[there does not  exists]" "∄")
-     ("nexists" "\\nexists" t "&exist;" "[there does not exists]" "[there does not  exists]" "∄")
-     ("empty" "\\empty" t "&empty;" "[empty set]" "[empty set]" "∅")
-     ("emptyset" "\\emptyset" t "&empty;" "[empty set]" "[empty set]" "∅")
-     ("isin" "\\in" t "&isin;" "[element of]" "[element of]" "∈")
-     ("in" "\\in" t "&isin;" "[element of]" "[element of]" "∈")
-     ("notin" "\\notin" t "&notin;" "[not an element of]" "[not an element of]" "∉")
-     ("ni" "\\ni" t "&ni;" "[contains as member]" "[contains as member]" "∋")
-     ("nabla" "\\nabla" t "&nabla;" "[nabla]" "[nabla]" "∇")
-     ("ang" "\\angle" t "&ang;" "[angle]" "[angle]" "∠")
-     ("angle" "\\angle" t "&ang;" "[angle]" "[angle]" "∠")
-     ("perp" "\\perp" t "&perp;" "[up tack]" "[up tack]" "⊥")
-     ("parallel" "\\parallel" t "&parallel;" "||" "||" "∥")
-     ("sdot" "\\cdot" t "&sdot;" "[dot]" "[dot]" "⋅")
-     ("cdot" "\\cdot" t "&sdot;" "[dot]" "[dot]" "⋅")
-     ("lceil" "\\lceil" t "&lceil;" "[left ceiling]" "[left ceiling]" "⌈")
-     ("rceil" "\\rceil" t "&rceil;" "[right ceiling]" "[right ceiling]" "⌉")
-     ("lfloor" "\\lfloor" t "&lfloor;" "[left floor]" "[left floor]" "⌊")
-     ("rfloor" "\\rfloor" t "&rfloor;" "[right floor]" "[right floor]" "⌋")
-     ("lang" "\\langle" t "&lang;" "<" "<" "⟨")
-     ("rang" "\\rangle" t "&rang;" ">" ">" "⟩")
-     ("langle" "\\langle" t "&lang;" "<" "<" "⟨")
-     ("rangle" "\\rangle" t "&rang;" ">" ">" "⟩")
-     ("hbar" "\\hbar" t "&hbar;" "hbar" "hbar" "ℏ")
-     ("mho" "\\mho" t "&mho;" "mho" "mho" "℧")
-
-     "** Arrows"
-     ("larr" "\\leftarrow" t "&larr;" "<-" "<-" "←")
-     ("leftarrow" "\\leftarrow" t "&larr;"  "<-" "<-" "←")
-     ("gets" "\\gets" t "&larr;"  "<-" "<-" "←")
-     ("lArr" "\\Leftarrow" t "&lArr;" "<=" "<=" "⇐")
-     ("Leftarrow" "\\Leftarrow" t "&lArr;" "<=" "<=" "⇐")
-     ("uarr" "\\uparrow" t "&uarr;" "[uparrow]" "[uparrow]" "↑")
-     ("uparrow" "\\uparrow" t "&uarr;" "[uparrow]" "[uparrow]" "↑")
-     ("uArr" "\\Uparrow" t "&uArr;" "[dbluparrow]" "[dbluparrow]" "⇑")
-     ("Uparrow" "\\Uparrow" t "&uArr;" "[dbluparrow]" "[dbluparrow]" "⇑")
-     ("rarr" "\\rightarrow" t "&rarr;" "->" "->" "→")
-     ("to" "\\to" t "&rarr;" "->" "->" "→")
-     ("rightarrow" "\\rightarrow" t "&rarr;"  "->" "->" "→")
-     ("rArr" "\\Rightarrow" t "&rArr;" "=>" "=>" "⇒")
-     ("Rightarrow" "\\Rightarrow" t "&rArr;" "=>" "=>" "⇒")
-     ("darr" "\\downarrow" t "&darr;" "[downarrow]" "[downarrow]" "↓")
-     ("downarrow" "\\downarrow" t "&darr;" "[downarrow]" "[downarrow]" "↓")
-     ("dArr" "\\Downarrow" t "&dArr;" "[dbldownarrow]" "[dbldownarrow]" "⇓")
-     ("Downarrow" "\\Downarrow" t "&dArr;" "[dbldownarrow]" "[dbldownarrow]" "⇓")
-     ("harr" "\\leftrightarrow" t "&harr;" "<->" "<->" "↔")
-     ("leftrightarrow" "\\leftrightarrow" t "&harr;"  "<->" "<->" "↔")
-     ("hArr" "\\Leftrightarrow" t "&hArr;" "<=>" "<=>" "⇔")
-     ("Leftrightarrow" "\\Leftrightarrow" t "&hArr;" "<=>" "<=>" "⇔")
-     ("crarr" "\\hookleftarrow" t "&crarr;" "<-'" "<-'" "↵")
-     ("hookleftarrow" "\\hookleftarrow" t "&crarr;"  "<-'" "<-'" "↵")
-
-     "** Function names"
-     ("arccos" "\\arccos" t "arccos" "arccos" "arccos" "arccos")
-     ("arcsin" "\\arcsin" t "arcsin" "arcsin" "arcsin" "arcsin")
-     ("arctan" "\\arctan" t "arctan" "arctan" "arctan" "arctan")
-     ("arg" "\\arg" t "arg" "arg" "arg" "arg")
-     ("cos" "\\cos" t "cos" "cos" "cos" "cos")
-     ("cosh" "\\cosh" t "cosh" "cosh" "cosh" "cosh")
-     ("cot" "\\cot" t "cot" "cot" "cot" "cot")
-     ("coth" "\\coth" t "coth" "coth" "coth" "coth")
-     ("csc" "\\csc" t "csc" "csc" "csc" "csc")
-     ("deg" "\\deg" t "&deg;" "deg" "deg" "deg")
-     ("det" "\\det" t "det" "det" "det" "det")
-     ("dim" "\\dim" t "dim" "dim" "dim" "dim")
-     ("exp" "\\exp" t "exp" "exp" "exp" "exp")
-     ("gcd" "\\gcd" t "gcd" "gcd" "gcd" "gcd")
-     ("hom" "\\hom" t "hom" "hom" "hom" "hom")
-     ("inf" "\\inf" t "inf" "inf" "inf" "inf")
-     ("ker" "\\ker" t "ker" "ker" "ker" "ker")
-     ("lg" "\\lg" t "lg" "lg" "lg" "lg")
-     ("lim" "\\lim" t "lim" "lim" "lim" "lim")
-     ("liminf" "\\liminf" t "liminf" "liminf" "liminf" "liminf")
-     ("limsup" "\\limsup" t "limsup" "limsup" "limsup" "limsup")
-     ("ln" "\\ln" t "ln" "ln" "ln" "ln")
-     ("log" "\\log" t "log" "log" "log" "log")
-     ("max" "\\max" t "max" "max" "max" "max")
-     ("min" "\\min" t "min" "min" "min" "min")
-     ("Pr" "\\Pr" t "Pr" "Pr" "Pr" "Pr")
-     ("sec" "\\sec" t "sec" "sec" "sec" "sec")
-     ("sin" "\\sin" t "sin" "sin" "sin" "sin")
-     ("sinh" "\\sinh" t "sinh" "sinh" "sinh" "sinh")
-     ("sup" "\\sup" t "&sup;" "sup" "sup" "sup")
-     ("tan" "\\tan" t "tan" "tan" "tan" "tan")
-     ("tanh" "\\tanh" t "tanh" "tanh" "tanh" "tanh")
-
-     "** Signs & Symbols"
-     ("bull" "\\textbullet{}" nil "&bull;" "*" "*" "•")
-     ("bullet" "\\textbullet{}" nil "&bull;" "*" "*" "•")
-     ("star" "\\star" t "*" "*" "*" "⋆")
-     ("lowast" "\\ast" t "&lowast;" "*" "*" "∗")
-     ("ast" "\\ast" t "&lowast;" "*" "*" "*")
-     ("odot" "\\odot" t "o" "[circled dot]" "[circled dot]" "ʘ")
-     ("oplus" "\\oplus" t "&oplus;" "[circled plus]" "[circled plus]" "⊕")
-     ("otimes" "\\otimes" t "&otimes;" "[circled times]" "[circled times]" "⊗")
-     ("check" "\\checkmark" t "&checkmark;" "[checkmark]" "[checkmark]" "✓")
-     ("checkmark" "\\checkmark" t "&check;" "[checkmark]" "[checkmark]" "✓")
-
-     "** Miscellaneous (seldom used)"
-     ("para" "\\P{}" nil "&para;" "[pilcrow]" "¶" "¶")
-     ("ordf" "\\textordfeminine{}" nil "&ordf;" "_a_" "ª" "ª")
-     ("ordm" "\\textordmasculine{}" nil "&ordm;" "_o_" "º" "º")
-     ("cedil" "\\c{}" nil "&cedil;" "[cedilla]" "¸" "¸")
-     ("oline" "\\overline{~}" t "&oline;" "[overline]" "¯" "‾")
-     ("uml" "\\textasciidieresis{}" nil "&uml;" "[diaeresis]" "¨" "¨")
-     ("zwnj" "\\/{}" nil "&zwnj;" "" "" "‌")
-     ("zwj" "" nil "&zwj;" "" "" "‍")
-     ("lrm" "" nil "&lrm;" "" "" "‎")
-     ("rlm" "" nil "&rlm;" "" "" "‏")
-
-     "** Smilies"
-     ("smiley" "\\ddot\\smile" t "&#9786;" ":-)" ":-)" "☺")
-     ("blacksmile" "\\ddot\\smile" t "&#9787;" ":-)" ":-)" "☻")
-     ("sad" "\\ddot\\frown" t "&#9785;" ":-(" ":-(" "☹")
-     ("frowny" "\\ddot\\frown" t "&#9785;" ":-(" ":-(" "☹")
-
-     "** Suits"
-     ("clubs" "\\clubsuit" t "&clubs;" "[clubs]" "[clubs]" "♣")
-     ("clubsuit" "\\clubsuit" t "&clubs;" "[clubs]" "[clubs]" "♣")
-     ("spades" "\\spadesuit" t "&spades;" "[spades]" "[spades]" "♠")
-     ("spadesuit" "\\spadesuit" t "&spades;" "[spades]" "[spades]" "♠")
-     ("hearts" "\\heartsuit" t "&hearts;" "[hearts]" "[hearts]" "♥")
-     ("heartsuit" "\\heartsuit" t "&heartsuit;" "[hearts]" "[hearts]" "♥")
-     ("diams" "\\diamondsuit" t "&diams;" "[diamonds]" "[diamonds]" "◆")
-     ("diamondsuit" "\\diamondsuit" t "&diams;" "[diamonds]" "[diamonds]" "◆")
-     ("diamond" "\\diamondsuit" t "&diamond;" "[diamond]" "[diamond]" "◆")
-     ("Diamond" "\\diamondsuit" t "&diamond;" "[diamond]" "[diamond]" "◆")
-     ("loz" "\\lozenge" t "&loz;" "[lozenge]" "[lozenge]" "⧫"))
-   ;; Add "\_ "-entity family for spaces.
-   (let (space-entities html-spaces (entity "_"))
-     (dolist (n (number-sequence 1 20) (nreverse space-entities))
-       (let ((spaces (make-string n ?\s)))
-	 (push (list (setq entity (concat entity " "))
-		     (format "\\hspace*{%sem}" (* n .5))
-		     nil
-		     (setq html-spaces (concat "&ensp;" html-spaces))
-		     spaces
-		     spaces
-		     (make-string n ?\x2002))
-	       space-entities)))))
-  "Default entities used in Org mode to produce special characters.
-For details see `org-entities-user'.")
-
-(defsubst org-entity-get (name)
-  "Get the proper association for NAME from the entity lists.
-This first checks the user list, then the built-in list."
-  (or (assoc name org-entities-user)
-      (assoc name org-entities)))
-
-;; Helpfunctions to create a table for orgmode.org/worg/org-symbols.org
-
-(defun org-entities-create-table ()
-  "Create an Org mode table with all entities."
-  (interactive)
-  (let ((pos (point)))
-    (insert "|Name|LaTeX code|LaTeX|HTML code |HTML|ASCII|Latin1|UTF-8\n|-\n")
-    (dolist (e org-entities)
-      (pcase e
-	(`(,name ,latex ,mathp ,html ,ascii ,latin ,utf8)
-	 (if (equal ascii "|") (setq ascii "\\vert"))
-	 (if (equal latin "|") (setq latin "\\vert"))
-	 (if (equal utf8  "|") (setq utf8  "\\vert"))
-	 (if (equal ascii "=>") (setq ascii "= >"))
-	 (if (equal latin "=>") (setq latin "= >"))
-	 (insert "|" name
-		 "|" (format "=%s=" latex)
-		 "|" (format (if mathp "$%s$" "$\\mbox{%s}$") latex)
-		 "|" (format "=%s=" html) "|" html
-		 "|" ascii "|" latin "|" utf8
-		 "|\n"))))
-    (goto-char pos)
-    (org-table-align)))
-
-(defvar org-pretty-entities) ;; declare defcustom from org
-(defun org-entities-help ()
-  "Create a Help buffer with all available entities."
-  (interactive)
-  (with-output-to-temp-buffer "*Org Entity Help*"
-    (princ "Org mode entities\n=================\n\n")
-    (let ((ll (append '("* User-defined additions (variable org-entities-user)")
-		      org-entities-user
-		      org-entities))
-	  (lastwasstring t)
-	  (head (concat
-		 "\n"
-		 "   Symbol   Org entity        LaTeX code             HTML code\n"
-		 "   -----------------------------------------------------------\n")))
-      (dolist (e ll)
-	(pcase e
-	  (`(,name ,latex ,_ ,html ,_ ,_ ,utf8)
-	   (when lastwasstring
-	     (princ head)
-	     (setq lastwasstring nil))
-	   (princ (format "   %-8s \\%-16s %-22s %-13s\n"
-			  utf8 name latex html)))
-	  ((pred stringp)
-	   (princ e)
-	   (princ "\n")
-	   (setq lastwasstring t))))))
-  (with-current-buffer "*Org Entity Help*"
-    (org-mode)
-    (when org-pretty-entities
-      (org-toggle-pretty-entities)))
-  (select-window (get-buffer-window "*Org Entity Help*")))
-
-
-(provide 'org-entities)
-
-;; Local variables:
-;; coding: utf-8
-;; End:
-
-;;; org-entities.el ends here
diff --git a/elpa/org-9.1.14/org-entities.elc b/elpa/org-9.1.14/org-entities.elc
deleted file mode 100644
index 4ebc0ac..0000000
--- a/elpa/org-9.1.14/org-entities.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-eshell.el b/elpa/org-9.1.14/org-eshell.el
deleted file mode 100644
index 8a2e8af..0000000
--- a/elpa/org-9.1.14/org-eshell.el
+++ /dev/null
@@ -1,66 +0,0 @@
-;;; org-eshell.el - Support for Links to Working Directories in Eshell -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
-
-;; Author: Konrad Hinsen <konrad.hinsen AT fastmail.net>
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;;; Code:
-
-(require 'org)
-(require 'eshell)
-(require 'esh-mode)
-
-(org-link-set-parameters "eshell"
-			 :follow #'org-eshell-open
-			 :store #'org-eshell-store-link)
-
-(defun org-eshell-open (link)
-  "Switch to am eshell buffer and execute a command line.
-   The link can be just a command line (executed in the default
-   eshell buffer) or a command line prefixed by a buffer name
-   followed by a colon."
-  (let* ((buffer-and-command
-          (if (string-match "\\([A-Za-z0-9-+*]+\\):\\(.*\\)" link)
-	      (list (match-string 1 link)
-		    (match-string 2 link))
-            (list eshell-buffer-name link)))
-         (eshell-buffer-name (car buffer-and-command))
-         (command (cadr buffer-and-command)))
-    (if (get-buffer eshell-buffer-name)
-	(pop-to-buffer-same-window eshell-buffer-name)
-      (eshell))
-    (goto-char (point-max))
-    (eshell-kill-input)
-    (insert command)
-    (eshell-send-input)))
-
-(defun org-eshell-store-link ()
-  "Store a link that, when opened, switches back to the current eshell buffer
-   and the current working directory."
-  (when (eq major-mode 'eshell-mode)
-    (let* ((command (concat "cd " dired-directory))
-           (link  (concat (buffer-name) ":" command)))
-      (org-store-link-props
-       :link (concat "eshell:" link)
-       :description command))))
-
-(provide 'org-eshell)
-
-;;; org-eshell.el ends here
diff --git a/elpa/org-9.1.14/org-eshell.elc b/elpa/org-9.1.14/org-eshell.elc
deleted file mode 100644
index 2ac2c3e..0000000
--- a/elpa/org-9.1.14/org-eshell.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-eww.el b/elpa/org-9.1.14/org-eww.el
deleted file mode 100644
index 34c4fca..0000000
--- a/elpa/org-9.1.14/org-eww.el
+++ /dev/null
@@ -1,176 +0,0 @@
-;;; org-eww.el --- Store url and kill from Eww mode for Org  -*- lexical-binding: t -*-
-
-;; Copyright (C) 2014-2018 Free Software Foundation, Inc.
-
-;; Author: Marco Wahl <marcowahlsoft>a<gmailcom>
-;; Keywords: link, eww
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-
-;; When this module is active `org-store-link' (often on key C-c l) in
-;; an EWW buffer stores a link to the current url of the eww buffer.
-
-;; In an EWW buffer function `org-eww-copy-for-org-mode' kills either
-;; a region or the whole buffer if no region is set and transforms the
-;; text on the fly so that it can be pasted into an Org buffer with
-;; hot links.
-
-;; C-c C-x C-w (and also C-c C-x M-w) trigger
-;; `org-eww-copy-for-org-mode'.
-
-;; Hint: A lot of code of this module comes from module org-w3m which
-;; has been written by Andy Steward based on the idea of Richard
-;; Riley.  Thanks!
-
-;; Potential: Since the code for w3m and eww is so similar one could
-;; try to refactor.
-
-
-;;; Code:
-(require 'org)
-(require 'cl-lib)
-
-(defvar eww-current-title)
-(defvar eww-current-url)
-(defvar eww-data)
-(defvar eww-mode-map)
-
-(declare-function eww-current-url "eww")
-
-
-;; Store Org-link in eww-mode buffer
-(org-link-set-parameters "eww" :follow #'eww :store #'org-eww-store-link)
-(defun org-eww-store-link ()
-  "Store a link to the url of an EWW buffer."
-  (when (eq major-mode 'eww-mode)
-    (org-store-link-props
-     :type "eww"
-     :link (if (< emacs-major-version 25)
-	       eww-current-url
-	     (eww-current-url))
-     :url (url-view-url t)
-     :description (if (< emacs-major-version 25)
-		      (or eww-current-title eww-current-url)
-		    (or (plist-get eww-data :title)
-			(eww-current-url))))))
-
-
-;; Some auxiliary functions concerning links in eww buffers
-(defun org-eww-goto-next-url-property-change ()
-  "Move to the start of next link if exists.
-Otherwise point is not moved.  Return point."
-  (goto-char
-   (or (next-single-property-change (point) 'shr-url)
-       (point))))
-
-(defun org-eww-has-further-url-property-change-p ()
-  "Non-nil if there is a next url property change."
-  (save-excursion
-    (not (eq (point) (org-eww-goto-next-url-property-change)))))
-
-(defun org-eww-url-below-point ()
-  "Return the url below point if there is an url; otherwise, return nil."
-  (get-text-property (point) 'shr-url))
-
-
-(defun org-eww-copy-for-org-mode ()
-  "Copy current buffer content or active region with `org-mode' style links.
-This will encode `link-title' and `link-location' with
-`org-make-link-string' and insert the transformed text into the
-kill ring, so that it can be yanked into an Org mode buffer with
-links working correctly.
-
-Further lines starting with a star get quoted with a comma to
-keep the structure of the Org file."
-  (interactive)
-  (let* ((regionp (org-region-active-p))
-         (transform-start (point-min))
-         (transform-end (point-max))
-         return-content
-         link-location link-title
-         temp-position out-bound)
-    (when regionp
-      (setq transform-start (region-beginning))
-      (setq transform-end (region-end))
-      ;; Deactivate mark if current mark is activate.
-      (when (fboundp 'deactivate-mark) (deactivate-mark)))
-    (message "Transforming links...")
-    (save-excursion
-      (goto-char transform-start)
-      (while (and (not out-bound)	; still inside region to copy
-                  (org-eww-has-further-url-property-change-p)) ; there is a next link
-        ;; Store current point before jump next anchor.
-        (setq temp-position (point))
-        ;; Move to next anchor when current point is not at anchor.
-        (or (org-eww-url-below-point)
-	    (org-eww-goto-next-url-property-change))
-	(cl-assert
-	 (org-eww-url-below-point) t
-	 "program logic error: point must have an url below but it hasn't")
-	(if (<= (point) transform-end) ; if point is inside transform bound
-	    (progn
-	      ;; Get content between two links.
-	      (when (< temp-position (point))
-		(setq return-content (concat return-content
-					     (buffer-substring
-					      temp-position (point)))))
-	      ;; Get link location at current point.
-	      (setq link-location (org-eww-url-below-point))
-	      ;; Get link title at current point.
-	      (setq link-title
-		    (buffer-substring
-		     (point)
-		     (org-eww-goto-next-url-property-change)))
-              ;; concat `org-mode' style url to `return-content'.
-	      (setq return-content
-		    (concat return-content
-			    (if (org-string-nw-p link-location)
-				;; Hint: link-location is different
-				;; for form-elements.
-				(org-make-link-string link-location link-title)
-			      link-title))))
-	  (goto-char temp-position) ; reset point before jump next anchor
-	  (setq out-bound t)))	    ; for break out `while' loop
-      ;; Add the rest until end of the region to be copied.
-      (when (< (point) transform-end)
-	(setq return-content
-	      (concat return-content
-		      (buffer-substring (point) transform-end))))
-      ;; Quote lines starting with *.
-      (org-kill-new (replace-regexp-in-string "^\\*" ",*" return-content))
-      (message "Transforming links...done, use C-y to insert text into Org mode file"))))
-
-
-;; Additional keys for eww-mode
-
-(defun org-eww-extend-eww-keymap ()
-  (define-key eww-mode-map "\C-c\C-x\M-w" 'org-eww-copy-for-org-mode)
-  (define-key eww-mode-map "\C-c\C-x\C-w" 'org-eww-copy-for-org-mode))
-
-(when (and (boundp 'eww-mode-map)
-           (keymapp eww-mode-map)) ; eww is already up.
-  (org-eww-extend-eww-keymap))
-
-(add-hook 'eww-mode-hook #'org-eww-extend-eww-keymap)
-
-
-(provide 'org-eww)
-
-;;; org-eww.el ends here
diff --git a/elpa/org-9.1.14/org-eww.elc b/elpa/org-9.1.14/org-eww.elc
deleted file mode 100644
index 83bf1ed..0000000
--- a/elpa/org-9.1.14/org-eww.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-faces.el b/elpa/org-9.1.14/org-faces.el
deleted file mode 100644
index 750ada1..0000000
--- a/elpa/org-9.1.14/org-faces.el
+++ /dev/null
@@ -1,653 +0,0 @@
-;;; org-faces.el --- Face definitions -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the face definitions for Org.
-
-;;; Code:
-
-(defgroup org-faces nil
-  "Faces in Org mode."
-  :tag "Org Faces"
-  :group 'org-appearance)
-
-(defface org-default '((t :inherit default))
-  "Face used for default text."
-  :group 'org-faces)
-
-(defface org-hide
-  '((((background light)) (:foreground "white"))
-    (((background dark)) (:foreground "black")))
-  "Face used to hide leading stars in headlines.
-The foreground color of this face should be equal to the background
-color of the frame."
-  :group 'org-faces)
-
-(defface org-level-1 '((t :inherit outline-1))
-  "Face used for level 1 headlines."
-  :group 'org-faces)
-
-(defface org-level-2 '((t :inherit outline-2))
-  "Face used for level 2 headlines."
-  :group 'org-faces)
-
-(defface org-level-3 '((t :inherit outline-3))
-  "Face used for level 3 headlines."
-  :group 'org-faces)
-
-(defface org-level-4 '((t :inherit outline-4))
-  "Face used for level 4 headlines."
-  :group 'org-faces)
-
-(defface org-level-5 '((t :inherit outline-5))
-  "Face used for level 5 headlines."
-  :group 'org-faces)
-
-(defface org-level-6 '((t :inherit outline-6))
-  "Face used for level 6 headlines."
-  :group 'org-faces)
-
-(defface org-level-7 '((t :inherit outline-7))
-  "Face used for level 7 headlines."
-  :group 'org-faces)
-
-(defface org-level-8 '((t :inherit outline-8))
-  "Face used for level 8 headlines."
-  :group 'org-faces)
-
-(defface org-special-keyword '((t :inherit font-lock-keyword-face))
-  "Face used for special keywords."
-  :group 'org-faces)
-
-(defface org-drawer	   ;Copied from `font-lock-function-name-face'
-  '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
-    (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
-    (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
-    (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
-    (((class color) (min-colors 8)) (:foreground "blue" :bold t))
-    (t (:bold t)))
-  "Face used for drawers."
-  :group 'org-faces)
-
-(defface org-property-value nil
-  "Face used for the value of a property."
-  :group 'org-faces)
-
-(defface org-column
-  '((((class color) (min-colors 16) (background light))
-     (:background "grey90" :weight normal :slant normal :strike-through nil
-		  :underline nil))
-    (((class color) (min-colors 16) (background dark))
-     (:background "grey30" :weight normal :slant normal :strike-through nil
-		  :underline nil))
-    (((class color) (min-colors 8))
-     (:background "cyan" :foreground "black"
-		  :weight normal :slant normal :strike-through nil
-		  :underline nil))
-    (t (:inverse-video t)))
-  "Face for column display of entry properties.
-This is actually only part of the face definition for the text in column view.
-The following faces apply, with this priority.
-
-1. The color of the reference face.  This is normally the level fact that
-   is used in the outline.  In agenda-mode, it will be the face of the
-   first character in the line.  The color is explicitly retained to
-   make sure that the column line still looks a bit like the structure
-   line it is masking.
-
-2. The `org-column' face.
-
-3. The remaining properties of the reference face.
-
-Since column view works by putting overlays with a display property
-over individual characters in the buffer, the face of the underlining
-character (this might for example be the a TODO keyword) might still
-shine through in some properties.  So when your column view looks
-funny, with \"random\" colors, weight, strike-through, try to explicitly
-set the properties in the `org-column' face.  For example, set
-:underline to nil, or the :slant to `normal'."
-  :group 'org-faces)
-
-(defface org-column-title
-  '((((class color) (min-colors 16) (background light))
-     (:background "grey90" :underline t :weight bold))
-    (((class color) (min-colors 16) (background dark))
-     (:background "grey30" :underline t :weight bold))
-    (((class color) (min-colors 8))
-     (:background "cyan" :foreground "black" :underline t :weight bold))
-    (t (:inverse-video t)))
-  "Face for column display of entry properties."
-  :group 'org-faces)
-
-(defface org-agenda-column-dateline '((t :inherit org-column))
-  "Face used in agenda column view for datelines with summaries."
-  :group 'org-faces)
-
-(defface org-warning '((t :inherit font-lock-warning-face))
-  "Face for deadlines and TODO keywords."
-  :group 'org-faces)
-
-(defface org-archived '((t :inherit shadow))
-  "Face for headline with the ARCHIVE tag."
-  :group 'org-faces)
-
-(defface org-link '((t :inherit link))
-  "Face for links."
-  :group 'org-faces)
-
-(defface org-footnote
-  '((((class color) (background light)) (:foreground "Purple" :underline t))
-    (((class color) (background dark)) (:foreground "Cyan" :underline t))
-    (t (:underline t)))
-  "Face for footnotes."
-  :group 'org-faces)
-
-(defface org-ellipsis
-  '((((class color) (background light)) (:foreground "DarkGoldenrod" :underline t))
-    (((class color) (background dark)) (:foreground "LightGoldenrod" :underline t))
-    (t (:strike-through t)))
-  "Face for the ellipsis in folded text."
-  :group 'org-faces)
-
-(defface org-target
-  '((((class color) (background light)) (:underline t))
-    (((class color) (background dark)) (:underline t))
-    (t (:underline t)))
-  "Face for link targets."
-  :group 'org-faces)
-
-(defface org-date
-  '((((class color) (background light)) (:foreground "Purple" :underline t))
-    (((class color) (background dark)) (:foreground "Cyan" :underline t))
-    (t (:underline t)))
-  "Face for date/time stamps."
-  :group 'org-faces)
-
-(defface org-date-selected
-  '((((class color) (min-colors 16) (background light)) (:foreground "Red1" :inverse-video t))
-    (((class color) (min-colors 16) (background dark))  (:foreground "Pink" :inverse-video t))
-    (((class color) (min-colors 8)  (background light)) (:foreground "red"  :inverse-video t))
-    (((class color) (min-colors 8)  (background dark))  (:foreground "red"  :inverse-video t))
-    (t (:inverse-video t)))
-  "Face for highlighting the calendar day when using `org-read-date'.
-Using a bold face here might cause discrepancies while displaying the
-calendar."
-  :group 'org-faces)
-
-(defface org-sexp-date
-  '((((class color) (background light)) (:foreground "Purple"))
-    (((class color) (background dark)) (:foreground "Cyan"))
-    (t (:underline t)))
-  "Face for diary-like sexp date specifications."
-  :group 'org-faces)
-
-(defface org-tag '((t (:bold t)))
-  "Default face for tags.
-Note that the variable `org-tag-faces' can be used to overrule this face for
-specific tags."
-  :group 'org-faces)
-
-(defface org-list-dt '((t (:bold t)))
-  "Default face for definition terms in lists."
-  :group 'org-faces)
-
-(defface org-todo		 ;Copied from `font-lock-warning-face'
-  '((((class color) (min-colors 16) (background light)) (:foreground "Red1" :bold t))
-    (((class color) (min-colors 16) (background dark))  (:foreground "Pink" :bold t))
-    (((class color) (min-colors 8)  (background light)) (:foreground "red"  :bold t))
-    (((class color) (min-colors 8)  (background dark))  (:foreground "red"  :bold t))
-    (t (:inverse-video t :bold t)))
-  "Face for TODO keywords."
-  :group 'org-faces)
-
-(defface org-done		    ;Copied from `font-lock-type-face'
-  '((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen" :bold t))
-    (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen" :bold t))
-    (((class color) (min-colors 8)) (:foreground "green"))
-    (t (:bold t)))
-  "Face used for todo keywords that indicate DONE items."
-  :group 'org-faces)
-
-(defface org-agenda-done	    ;Copied from `font-lock-type-face'
-  '((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen"))
-    (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen"))
-    (((class color) (min-colors 8)) (:foreground "green"))
-    (t (:bold nil)))
-  "Face used in agenda, to indicate lines switched to DONE.
-This face is used to de-emphasize items that where brightly colored in the
-agenda because they were things to do, or overdue.  The DONE state itself
-is of course immediately visible, but for example a passed deadline is
-\(by default) very bright read.  This face could be simply the default face
-of the frame, for example."
-  :group 'org-faces)
-
-(defface org-headline-done	  ;Copied from `font-lock-string-face'
-  '((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown"))
-    (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon"))
-    (((class color) (min-colors 8)  (background light)) (:bold nil)))
-  "Face used to indicate that a headline is DONE.
-This face is only used if `org-fontify-done-headline' is set.  If applies
-to the part of the headline after the DONE keyword."
-  :group 'org-faces)
-
-(defcustom org-faces-easy-properties
-  '((todo . :foreground) (tag . :foreground) (priority . :foreground))
-  "The property changes by easy faces.
-This is an alist, the keys show the area of application, the values
-can be `:foreground' or `:background'.  A color string for special
-keywords will then be interpreted as either foreground or background
-color."
-  :group 'org-faces
-  :group 'org-todo
-  :version "24.1"
-  :type '(repeat
-	  (cons (choice (const todo) (const tag) (const priority))
-		(choice (const :foreground) (const :background)))))
-
-(defcustom org-todo-keyword-faces nil
-  "Faces for specific TODO keywords.
-This is a list of cons cells, with TODO keywords in the car
-and faces in the cdr.  The face can be a symbol, a color
-as a string (in which case the rest is inherited from the `org-todo' face),
-or a property list of attributes, like
-   (:foreground \"blue\" :weight bold :underline t).
-If it is a color string, the variable `org-faces-easy-properties'
-determines if it is a foreground or a background color."
-  :group 'org-faces
-  :group 'org-todo
-  :type '(repeat
-	  (cons
-	   (string :tag "Keyword")
-	   (choice :tag "Face   "
-		   (string :tag "Color")
-		   (sexp :tag "Face")))))
-
-(defface org-priority '((t :inherit font-lock-keyword-face))
-  "Face used for priority cookies."
-  :group 'org-faces)
-
-(defcustom org-priority-faces nil
-  "Faces for specific Priorities.
-This is a list of cons cells, with priority character in the car
-and faces in the cdr.  The face can be a symbol, a color
-as a string, or a property list of attributes, like
-    (:foreground \"blue\" :weight bold :underline t).
-If it is a color string, the variable `org-faces-easy-properties'
-determines if it is a foreground or a background color."
-  :group 'org-faces
-  :group 'org-todo
-  :type '(repeat
-	  (cons
-	   (character :tag "Priority")
-	   (choice    :tag "Face    "
-		      (string :tag "Color")
-		      (sexp :tag "Face")))))
-
-(defvar org-tags-special-faces-re nil)
-(defun org-set-tag-faces (var value)
-  (set var value)
-  (if (not value)
-      (setq org-tags-special-faces-re nil)
-    (setq org-tags-special-faces-re
-	  (concat ":\\(" (mapconcat 'car value "\\|") "\\):"))))
-
-(defface org-checkbox '((t :inherit bold))
-  "Face for checkboxes."
-  :group 'org-faces)
-
-(defface org-checkbox-statistics-todo '((t (:inherit org-todo)))
-  "Face used for unfinished checkbox statistics."
-  :group 'org-faces)
-
-(defface org-checkbox-statistics-done '((t (:inherit org-done)))
-  "Face used for finished checkbox statistics."
-  :group 'org-faces)
-
-(defcustom org-tag-faces nil
-  "Faces for specific tags.
-This is a list of cons cells, with tags in the car and faces in the cdr.
-The face can be a symbol, a foreground color (in which case the rest is
-inherited from the `org-tag' face) or a property list of attributes,
-like (:foreground \"blue\" :weight bold :underline t).
-If you set this variable through customize, it will immediately be effective
-in new buffers and in modified lines.
-If you set it with Lisp, a restart of Emacs is required to activate the
-changes."
-  :group 'org-faces
-  :group 'org-tags
-  :set 'org-set-tag-faces
-  :type '(repeat
-	  (cons
-	   (string :tag "Tag ")
-	   (choice :tag "Face"
-		   (string :tag "Foreground color")
-		   (sexp :tag "Face")))))
-
-(defface org-table	   ;Copied from `font-lock-function-name-face'
-  '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
-    (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
-    (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
-    (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
-    (((class color) (min-colors 8)  (background light)) (:foreground "blue"))
-    (((class color) (min-colors 8)  (background dark))))
-  "Face used for tables."
-  :group 'org-faces)
-
-(defface org-formula
-  '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
-    (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
-    (((class color) (min-colors 8)  (background light)) (:foreground "red"))
-    (((class color) (min-colors 8)  (background dark)) (:foreground "red"))
-    (t (:bold t :italic t)))
-  "Face for formulas."
-  :group 'org-faces)
-
-(defface org-code '((t :inherit shadow))
-  "Face for fixed-width text like code snippets."
-  :group 'org-faces
-  :version "22.1")
-
-(defface org-meta-line '((t :inherit font-lock-comment-face))
-  "Face for meta lines starting with \"#+\"."
-  :group 'org-faces
-  :version "22.1")
-
-(defface org-document-title
-  '((((class color) (background light)) (:foreground "midnight blue" :weight bold))
-    (((class color) (background dark)) (:foreground "pale turquoise" :weight bold))
-    (t (:weight bold)))
-  "Face for document title, i.e. that which follows the #+TITLE: keyword."
-  :group 'org-faces)
-
-(defface org-document-info
-  '((((class color) (background light)) (:foreground "midnight blue"))
-    (((class color) (background dark)) (:foreground "pale turquoise"))
-    (t nil))
-  "Face for document date, author and email; i.e. that which
-follows a #+DATE:, #+AUTHOR: or #+EMAIL: keyword."
-  :group 'org-faces)
-
-(defface org-document-info-keyword '((t :inherit shadow))
-  "Face for #+TITLE:, #+AUTHOR:, #+EMAIL: and #+DATE: keywords."
-  :group 'org-faces)
-
-(defface org-block '((t :inherit shadow))
-  "Face text in #+begin ... #+end blocks.
-For source-blocks `org-src-block-faces' takes precedence.
-See also `org-fontify-quote-and-verse-blocks'."
-  :group 'org-faces
-  :version "26.1")
-
-(defface org-block-begin-line '((t (:inherit org-meta-line)))
-  "Face used for the line delimiting the begin of source blocks."
-  :group 'org-faces)
-
-(defface org-block-end-line '((t (:inherit org-block-begin-line)))
-  "Face used for the line delimiting the end of source blocks."
-  :group 'org-faces)
-
-(defface org-verbatim '((t (:inherit shadow)))
-  "Face for fixed-with text like code snippets"
-  :group 'org-faces
-  :version "22.1")
-
-(defface org-quote '((t (:inherit org-block)))
-  "Face for #+BEGIN_QUOTE ... #+END_QUOTE blocks."
-  :group 'org-faces)
-
-(defface org-verse '((t (:inherit org-block)))
-  "Face for #+BEGIN_VERSE ... #+END_VERSE blocks."
-  :group 'org-faces)
-
-(defcustom org-fontify-quote-and-verse-blocks nil
-  "Non-nil means, add a special face to #+begin_quote and #+begin_verse block.
-When nil, format these as normal Org.  This is the default, because the
-content of these blocks will still be treated as Org syntax."
-  :group 'org-faces
-  :version "24.1"
-  :type 'boolean)
-
-(defface org-clock-overlay	    ;Copied from `secondary-selection'
-  '((((class color) (min-colors 88) (background light))
-     (:background "LightGray" :foreground "black"))
-    (((class color) (min-colors 88) (background dark))
-     (:background "SkyBlue4" :foreground "white"))
-    (((class color) (min-colors 16) (background light))
-     (:background "gray" :foreground "black"))
-    (((class color) (min-colors 16) (background dark))
-     (:background "SkyBlue4" :foreground "white"))
-    (((class color) (min-colors 8))
-     (:background "cyan" :foreground "black"))
-    (t (:inverse-video t)))
-  "Basic face for displaying the secondary selection."
-  :group 'org-faces)
-
-(defface org-agenda-structure ;Copied from `font-lock-function-name-face'
-  '((((class color) (min-colors 88) (background light)) (:foreground "Blue1"))
-    (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue"))
-    (((class color) (min-colors 16) (background light)) (:foreground "Blue"))
-    (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue"))
-    (((class color) (min-colors 8)) (:foreground "blue" :bold t))
-    (t (:bold t)))
-  "Face used in agenda for captions and dates."
-  :group 'org-faces)
-
-(defface org-agenda-date '((t (:inherit org-agenda-structure)))
-  "Face used in agenda for normal days."
-  :group 'org-faces)
-
-(defface org-agenda-date-today
-  '((t (:inherit org-agenda-date :weight bold :italic t)))
-  "Face used in agenda for today."
-  :group 'org-faces)
-
-(defface org-agenda-clocking '((t (:inherit secondary-selection)))
-  "Face marking the current clock item in the agenda."
-  :group 'org-faces)
-
-(defface org-agenda-date-weekend '((t (:inherit org-agenda-date :weight bold)))
-  "Face used in agenda for weekend days.
-
-See the variable `org-agenda-weekend-days' for a definition of
-which days belong to the weekend."
-  :group 'org-faces)
-
-(defface org-scheduled
-  '((((class color) (min-colors 88) (background light)) (:foreground "DarkGreen"))
-    (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen"))
-    (((class color) (min-colors 8)) (:foreground "green"))
-    (t (:bold t :italic t)))
-  "Face for items scheduled for a certain day."
-  :group 'org-faces)
-
-(defface org-scheduled-today
-  '((((class color) (min-colors 88) (background light)) (:foreground "DarkGreen"))
-    (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen"))
-    (((class color) (min-colors 8)) (:foreground "green"))
-    (t (:bold t :italic t)))
-  "Face for items scheduled for a certain day."
-  :group 'org-faces)
-
-(defface org-agenda-dimmed-todo-face
-  '((((background light)) (:foreground "grey50"))
-    (((background dark)) (:foreground "grey50")))
-  "Face used to dim blocked tasks in the agenda."
-  :group 'org-faces)
-
-(defface org-scheduled-previously
-  '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
-    (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
-    (((class color) (min-colors 8)  (background light)) (:foreground "red"))
-    (((class color) (min-colors 8)  (background dark)) (:foreground "red" :bold t))
-    (t (:bold t)))
-  "Face for items scheduled previously, and not yet done."
-  :group 'org-faces)
-
-(defface org-upcoming-deadline
-  '((((class color) (min-colors 88) (background light)) (:foreground "Firebrick"))
-    (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1"))
-    (((class color) (min-colors 8)  (background light)) (:foreground "red"))
-    (((class color) (min-colors 8)  (background dark)) (:foreground "red" :bold t))
-    (t (:bold t)))
-  "Face for items scheduled previously, and not yet done."
-  :group 'org-faces)
-
-(defcustom org-agenda-deadline-faces
-  '((1.0 . org-warning)
-    (0.5 . org-upcoming-deadline)
-    (0.0 . default))
-  "Faces for showing deadlines in the agenda.
-This is a list of cons cells.  The cdr of each cell is a face to be used,
-and it can also just be like \\='(:foreground \"yellow\").
-Each car is a fraction of the head-warning time that must have passed for
-this the face in the cdr to be used for display.  The numbers must be
-given in descending order.  The head-warning time is normally taken
-from `org-deadline-warning-days', but can also be specified in the deadline
-timestamp itself, like this:
-
-   DEADLINE: <2007-08-13 Mon -8d>
-
-You may use d for days, w for weeks, m for months and y for years.  Months
-and years will only be treated in an approximate fashion (30.4 days for a
-month and 365.24 days for a year)."
-  :group 'org-faces
-  :group 'org-agenda-daily/weekly
-  :type '(repeat
-	  (cons
-	   (number :tag "Fraction of head-warning time passed")
-	   (sexp :tag "Face"))))
-
-(defface org-agenda-restriction-lock
-  '((((class color) (min-colors 88) (background light)) (:background "#eeeeee"))
-    (((class color) (min-colors 88) (background dark))  (:background "#1C1C1C"))
-    (((class color) (min-colors 16) (background light)) (:background "#eeeeee"))
-    (((class color) (min-colors 16) (background dark))  (:background "#1C1C1C"))
-    (((class color) (min-colors 8)) (:background "cyan" :foreground "black"))
-    (t (:inverse-video t)))
-  "Face for showing the agenda restriction lock."
-  :group 'org-faces)
-
-(defface org-agenda-filter-tags '((t :inherit mode-line))
-  "Face for tag(s) in the mode-line when filtering the agenda."
-  :group 'org-faces)
-
-(defface org-agenda-filter-regexp '((t :inherit mode-line))
-  "Face for regexp(s) in the mode-line when filtering the agenda."
-  :group 'org-faces)
-
-(defface org-agenda-filter-category '((t :inherit mode-line))
-  "Face for categories in the mode-line when filtering the agenda."
-  :group 'org-faces)
-
-(defface org-agenda-filter-effort '((t :inherit mode-line))
-  "Face for effort in the mode-line when filtering the agenda."
-  :group 'org-faces)
-
-(defface org-time-grid	   ;Copied from `font-lock-variable-name-face'
-  '((((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod"))
-    (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod"))
-    (((class color) (min-colors 8)) (:foreground "yellow" :weight light)))
-  "Face used for time grids."
-  :group 'org-faces)
-
-(defface org-agenda-current-time '((t (:inherit org-time-grid)))
-  "Face used to show the current time in the time grid."
-  :group 'org-faces)
-
-(defface org-agenda-diary '((t :inherit default))
-  "Face used for agenda entries that come from the Emacs diary."
-  :group 'org-faces)
-
-(defface org-agenda-calendar-event '((t :inherit default))
-  "Face used to show events and appointments in the agenda."
-  :group 'org-faces)
-
-(defface org-agenda-calendar-sexp '((t :inherit default))
-  "Face used to show events computed from a S-expression."
-  :group 'org-faces)
-
-(defconst org-level-faces
-  '(org-level-1 org-level-2 org-level-3 org-level-4
-		org-level-5 org-level-6 org-level-7 org-level-8))
-
-(defcustom org-n-level-faces (length org-level-faces)
-  "The number of different faces to be used for headlines.
-Org mode defines 8 different headline faces, so this can be at most 8.
-If it is less than 8, the level-1 face gets re-used for level N+1 etc."
-  :type 'integer
-  :group 'org-faces)
-
-(defcustom org-cycle-level-faces t
-  "Non-nil means level styles cycle after level `org-n-level-faces'.
-Then so level org-n-level-faces+1 is styled like level 1.
-If nil, then all levels >=org-n-level-faces are styled like
-level org-n-level-faces"
-  :group 'org-appearance
-  :group 'org-faces
-  :version "24.1"
-  :type 'boolean)
-
-(defface org-latex-and-related
-  (let ((font (cond ((assq :inherit custom-face-attributes)
-		     '(:inherit underline))
-		    (t '(:underline t)))))
-    `((((class grayscale) (background light))
-       (:foreground "DimGray" ,@font))
-      (((class grayscale) (background dark))
-       (:foreground "LightGray" ,@font))
-      (((class color) (background light))
-       (:foreground "SaddleBrown"))
-      (((class color) (background dark))
-       (:foreground "burlywood"))
-      (t (,@font))))
-  "Face used to highlight LaTeX data, entities and sub/superscript."
-  :group 'org-faces
-  :version "24.4"
-  :package-version '(Org . "8.0"))
-
-(defface org-macro '((t :inherit org-latex-and-related))
-  "Face for macros."
-  :group 'org-faces
-  :version "24.4"
-  :package-version '(Org . "8.0"))
-
-(defface org-tag-group '((t :inherit org-tag))
-  "Face for group tags."
-  :group 'org-faces
-  :version "24.4"
-  :package-version '(Org . "8.0"))
-
-(defface org-mode-line-clock '((t (:inherit mode-line)))
-  "Face used for clock display in mode line."
-  :group 'org-faces)
-
-(defface org-mode-line-clock-overrun
-  '((t (:inherit mode-line :background "red")))
-  "Face used for clock display for overrun tasks in mode line."
-  :group 'org-faces)
-
-(provide 'org-faces)
-
-;;; org-faces.el ends here
diff --git a/elpa/org-9.1.14/org-faces.elc b/elpa/org-9.1.14/org-faces.elc
deleted file mode 100644
index bd927ad..0000000
--- a/elpa/org-9.1.14/org-faces.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-feed.el b/elpa/org-9.1.14/org-feed.el
deleted file mode 100644
index fde19e6..0000000
--- a/elpa/org-9.1.14/org-feed.el
+++ /dev/null
@@ -1,720 +0,0 @@
-;;; org-feed.el --- Add RSS feed items to Org files  -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-;;
-;;  This module allows entries to be created and changed in an Org mode
-;;  file triggered by items in an RSS feed.  The basic functionality
-;;  is geared toward simply adding new items found in a feed as
-;;  outline nodes to an Org file.  Using hooks, arbitrary actions can
-;;  be triggered for new or changed items.
-;;
-;;  Selecting feeds and target locations
-;;  ------------------------------------
-;;
-;;  This module is configured through a single variable, `org-feed-alist'.
-;;  Here is an example, using a notes/tasks feed from reQall.com.
-;;
-;;    (setq org-feed-alist
-;;          '(("ReQall"
-;;             "http://www.reqall.com/user/feeds/rss/a1b2c3....."
-;;             "~/org/feeds.org" "ReQall Entries")
-;;
-;;  With this setup, the command `M-x org-feed-update-all' will
-;;  collect new entries in the feed at the given URL and create
-;;  entries as subheadings under the "ReQall Entries" heading in the
-;;  file "~/org/feeds.org".  Each feed should normally have its own
-;;  heading - however see the `:drawer' parameter.
-;;
-;;  Besides these standard elements that need to be specified for each
-;;  feed, keyword-value pairs can set additional options.  For example,
-;;  to de-select transitional entries with a title containing
-;;
-;;                   "reQall is typing what you said",
-;;
-;;  you could use the `:filter' argument:
-;;
-;;    (setq org-feed-alist
-;;          '(("ReQall"
-;;             "http://www.reqall.com/user/feeds/rss/a1b2c3....."
-;;             "~/org/feeds.org" "ReQall Entries"
-;;             :filter my-reqall-filter)))
-;;
-;;    (defun my-reqall-filter (e)
-;;       (if (string-match "reQall is typing what you said"
-;;                         (plist-get e :title))
-;;           nil
-;;         e))
-;;
-;;  See the docstring for `org-feed-alist' for more details.
-;;
-;;
-;;  Keeping track of previously added entries
-;;  -----------------------------------------
-;;
-;;  Since Org allows you to delete, archive, or move outline nodes,
-;;  org-feed.el needs to keep track of which feed items have been handled
-;;  before, so that they will not be handled again.  For this, org-feed.el
-;;  stores information in a special drawer, FEEDSTATUS, under the heading
-;;  that received the input of the feed.
-;;
-;;
-;;  Acknowledgments
-;;  ---------------
-;;
-;;  org-feed.el is based on ideas by Brad Bozarth who implemented a
-;;  similar mechanism using shell and awk scripts.
-
-;;; Code:
-
-(require 'org)
-(require 'sha1)
-
-(declare-function url-retrieve-synchronously "url"
-                  (url &optional silent inhibit-cookies timeout))
-(declare-function xml-node-children "xml" (node))
-(declare-function xml-get-children "xml" (node child-name))
-(declare-function xml-get-attribute "xml" (node attribute))
-(declare-function xml-get-attribute-or-nil "xml" (node attribute))
-(declare-function xml-substitute-special "xml" (string))
-
-(declare-function org-capture-escaped-% "org-capture" ())
-(declare-function org-capture-expand-embedded-elisp "org-capture" (&optional mark))
-(declare-function org-capture-inside-embedded-elisp-p "org-capture" ())
-
-(defgroup org-feed  nil
-  "Options concerning RSS feeds as inputs for Org files."
-  :tag "Org Feed"
-  :group 'org)
-
-(defcustom org-feed-alist nil
-  "Alist specifying RSS feeds that should create inputs for Org.
-Each entry in this list specified an RSS feed tat should be queried
-to create inbox items in Org.  Each entry is a list with the following items:
-
-name         a custom name for this feed
-URL          the Feed URL
-file         the target Org file where entries should be listed, when
-             nil the target becomes the current buffer (may be an
-             indirect buffer) each time the feed update is invoked
-headline     the headline under which entries should be listed
-
-Additional arguments can be given using keyword-value pairs.  Many of these
-specify functions that receive one or a list of \"entries\" as their single
-argument.  An entry is a property list that describes a feed item.  The
-property list has properties for each field in the item, for example `:title'
-for the `<title>' field and `:pubDate' for the publication date.  In addition,
-it contains the following properties:
-
-`:item-full-text'   the full text in the <item> tag
-`:guid-permalink'   t when the guid property is a permalink
-
-Here are the keyword-value pair allows in `org-feed-alist'.
-
-:drawer drawer-name
-     The name of the drawer for storing feed information.  The default is
-     \"FEEDSTATUS\".  Using different drawers for different feeds allows
-     several feeds to target the same inbox heading.
-
-:filter filter-function
-     A function to select interesting entries in the feed.  It gets a single
-     entry as parameter.  It should return the entry if it is relevant, or
-     nil if it is not.
-
-:template template-string
-     The default action on new items in the feed is to add them as children
-     under the headline for the feed.  The template describes how the entry
-     should be formatted.  If not given, it defaults to
-     `org-feed-default-template'.
-
-:formatter formatter-function
-     Instead of relying on a template, you may specify a function to format
-     the outline node to be inserted as a child.  This function gets passed
-     a property list describing a single feed item, and it should return a
-     string that is a properly formatted Org outline node of level 1.
-
-:new-handler function
-     If adding new items as children to the outline is not what you want
-     to do with new items, define a handler function that is called with
-     a list of all new items in the feed, each one represented as a property
-     list.  The handler should do what needs to be done, and org-feed will
-     mark all items given to this handler as \"handled\", i.e. they will not
-     be passed to this handler again in future readings of the feed.
-     When the handler is called, point will be at the feed headline.
-
-:changed-handler function
-     This function gets passed a list of all entries that have been
-     handled before, but are now still in the feed and have *changed*
-     since last handled (as evidenced by a different sha1 hash).
-     When the handler is called, point will be at the feed headline.
-
-:parse-feed function
-     This function gets passed a buffer, and should return a list
-     of entries, each being a property list containing the
-     `:guid' and `:item-full-text' keys.  The default is
-     `org-feed-parse-rss-feed'; `org-feed-parse-atom-feed' is an
-     alternative.
-
-:parse-entry function
-     This function gets passed an entry as returned by the parse-feed
-     function, and should return the entry with interesting properties added.
-     The default is `org-feed-parse-rss-entry'; `org-feed-parse-atom-entry'
-     is an alternative."
-  :group 'org-feed
-  :type '(repeat
-	  (list :value ("" "http://" "" "")
-		(string :tag "Name")
-		(string :tag "Feed URL")
-		(file :tag "File for inbox")
-		(string :tag "Headline for inbox")
-		(repeat :inline t
-			(choice
-			 (list :inline t :tag "Filter"
-			       (const :filter)
-			       (symbol :tag "Filter Function"))
-			 (list :inline t :tag "Template"
-			       (const :template)
-			       (string :tag "Template"))
-			 (list :inline t :tag "Formatter"
-			       (const :formatter)
-			       (symbol :tag "Formatter Function"))
-			 (list :inline t :tag "New items handler"
-			       (const :new-handler)
-			       (symbol :tag "Handler Function"))
-			 (list :inline t :tag "Changed items"
-			       (const :changed-handler)
-			       (symbol :tag "Handler Function"))
-			 (list :inline t :tag "Parse Feed"
-			       (const :parse-feed)
-			       (symbol :tag "Parse Feed Function"))
-			 (list :inline t :tag "Parse Entry"
-			       (const :parse-entry)
-			       (symbol :tag "Parse Entry Function"))
-			 )))))
-
-(defcustom org-feed-drawer "FEEDSTATUS"
-  "The name of the drawer for feed status information.
-Each feed may also specify its own drawer name using the `:drawer'
-parameter in `org-feed-alist'."
-  :group 'org-feed
-  :type '(string :tag "Drawer Name"))
-
-(defcustom org-feed-default-template "\n* %h\n  %U\n  %description\n  %a\n"
-  "Template for the Org node created from RSS feed items.
-This is just the default, each feed can specify its own.
-Any fields from the feed item can be interpolated into the template with
-%name, for example %title, %description, %pubDate etc.  In addition, the
-following special escapes are valid as well:
-
-%h      The title, or the first line of the description
-%t      The date as a stamp, either from <pubDate> (if present), or
-        the current date
-%T      Date and time
-%u,%U   Like %t,%T, but inactive time stamps
-%a      A link, from <guid> if that is a permalink, else from <link>
-%(sexp) Evaluate elisp `(sexp)' and replace with the result, the simple
-        %-escapes above can be used as arguments, e.g. %(capitalize \\\"%h\\\")"
-  :group 'org-feed
-  :type '(string :tag "Template"))
-
-(defcustom org-feed-save-after-adding t
-  "Non-nil means save buffer after adding new feed items."
-  :group 'org-feed
-  :type 'boolean)
-
-(defcustom org-feed-retrieve-method 'url-retrieve-synchronously
-  "The method to be used to retrieve a feed URL.
-This can be `curl' or `wget' to call these external programs, or it can be
-an Emacs Lisp function that will return a buffer containing the content
-of the file pointed to by the URL."
-  :group 'org-feed
-  :type '(choice
-	  (const :tag "Internally with url.el" url-retrieve-synchronously)
-	  (const :tag "Externally with curl" curl)
-	  (const :tag "Externally with wget" wget)
-	  (function :tag "Function")))
-
-(defcustom org-feed-before-adding-hook nil
-  "Hook that is run before adding new feed items to a file.
-You might want to commit the file in its current state to version control,
-for example."
-  :group 'org-feed
-  :type 'hook)
-
-(defcustom org-feed-after-adding-hook nil
-  "Hook that is run after new items have been added to a file.
-Depending on `org-feed-save-after-adding', the buffer will already
-have been saved."
-  :group 'org-feed
-  :type 'hook)
-
-(defvar org-feed-buffer "*Org feed*"
-  "The buffer used to retrieve a feed.")
-
-;;;###autoload
-(defun org-feed-update-all ()
-  "Get inbox items from all feeds in `org-feed-alist'."
-  (interactive)
-  (let ((entries 0)
-	(errors 0)
-	(total-feeds (length org-feed-alist)))
-    (dolist (feed org-feed-alist)
-      (let ((items (ignore-errors (org-feed-update feed))))
-	(if items (cl-incf entries items)
-	  (cl-incf errors))))
-    (message "%s from %d %s%s"
-	     (pcase entries
-	       (0 "No new entries")
-	       (1 "1 new entry")
-	       (_ (format "%d new entries" entries)))
-	     total-feeds
-	     (if (= total-feeds 1) "feed" "feeds")
-	     (if (= 0 errors) "" (format " (unavailable feeds: %d)" errors)))))
-
-;;;###autoload
-(defun org-feed-update (feed &optional retrieve-only)
-  "Get inbox items from FEED.
-FEED can be a string with an association in `org-feed-alist', or
-it can be a list structured like an entry in `org-feed-alist'."
-  (interactive (list (org-completing-read "Feed name: " org-feed-alist)))
-  (if (stringp feed) (setq feed (assoc feed org-feed-alist)))
-  (unless feed
-    (error "No such feed in `org-feed-alist"))
-  (catch 'exit
-    (let ((name (car feed))
-	  (url (nth 1 feed))
-	  (file (or (nth 2 feed) (buffer-file-name (or (buffer-base-buffer)
-						       (current-buffer)))))
-	  (headline (nth 3 feed))
-	  (filter (nth 1 (memq :filter feed)))
-	  (formatter (nth 1 (memq :formatter feed)))
-	  (new-handler (nth 1 (memq :new-handler feed)))
-	  (changed-handler (nth 1 (memq :changed-handler feed)))
-	  (template (or (nth 1 (memq :template feed))
-			org-feed-default-template))
-	  (drawer (or (nth 1 (memq :drawer feed))
-		      org-feed-drawer))
-	  (parse-feed (or (nth 1 (memq :parse-feed feed))
-			  'org-feed-parse-rss-feed))
-	  (parse-entry (or (nth 1 (memq :parse-entry feed))
-			   'org-feed-parse-rss-entry))
-	  feed-buffer inbox-pos new-formatted
-	  entries old-status status new changed guid-alist guid olds)
-      (setq feed-buffer (org-feed-get-feed url))
-      (unless (and feed-buffer (bufferp (get-buffer feed-buffer)))
-	(error "Cannot get feed %s" name))
-      (when retrieve-only
-	(throw 'exit feed-buffer))
-      (setq entries (funcall parse-feed feed-buffer))
-      (ignore-errors (kill-buffer feed-buffer))
-      (save-excursion
-	(save-window-excursion
-	  (setq inbox-pos (org-feed-goto-inbox-internal file headline))
-	  (setq old-status (org-feed-read-previous-status inbox-pos drawer))
-	  ;; Add the "handled" status to the appropriate entries
-	  (setq entries (mapcar (lambda (e)
-				  (setq e
-					(plist-put e :handled
-						   (nth 1 (assoc
-							   (plist-get e :guid)
-							   old-status)))))
-				entries))
-	  ;; Find out which entries are new and which are changed
-	  (dolist (e entries)
-	    (if (not (plist-get e :handled))
-		(push e new)
-	      (setq olds (nth 2 (assoc (plist-get e :guid) old-status)))
-	      (if (and olds
-		       (not (string= (sha1
-				      (plist-get e :item-full-text))
-				     olds)))
-		  (push e changed))))
-
-	  ;; Parse the relevant entries fully
-	  (setq new     (mapcar parse-entry new)
-		changed (mapcar parse-entry changed))
-
-	  ;; Run the filter
-	  (when filter
-	    (setq new     (delq nil (mapcar filter new))
-		  changed (delq nil (mapcar filter new))))
-
-	  (when (not (or new changed))
-	    (message "No new items in feed %s" name)
-	    (throw 'exit 0))
-
-	  ;; Get alist based on guid, to look up entries
-	  (setq guid-alist
-		(append
-		 (mapcar (lambda (e) (list (plist-get e :guid) e)) new)
-		 (mapcar (lambda (e) (list (plist-get e :guid) e)) changed)))
-
-	  ;; Construct the new status
-	  (setq status
-		(mapcar
-		 (lambda (e)
-		   (setq guid (plist-get e :guid))
-		   (list guid
-			 ;; things count as handled if we handle them now,
-			 ;; or if they were handled previously
-			 (if (assoc guid guid-alist) t (plist-get e :handled))
-			 ;; A hash, to detect changes
-			 (sha1 (plist-get e :item-full-text))))
-		 entries))
-
-	  ;; Handle new items in the feed
-	  (when new
-	    (if new-handler
-		(progn
-		  (goto-char inbox-pos)
-		  (funcall new-handler new))
-	      ;; No custom handler, do the default adding
-	      ;; Format the new entries into an alist with GUIDs in the car
-	      (setq new-formatted
-		    (mapcar
-		     (lambda (e) (org-feed-format-entry e template formatter))
-		     new)))
-
-	    ;; Insert the new items
-	    (org-feed-add-items inbox-pos new-formatted))
-
-	  ;; Handle changed items in the feed
-	  (when (and changed-handler changed)
-	    (goto-char inbox-pos)
-	    (funcall changed-handler changed))
-
-	  ;; Write the new status
-	  ;; We do this only now, in case something goes wrong above, so
-	  ;; that would would end up with a status that does not reflect
-	  ;; which items truely have been handled
-	  (org-feed-write-status inbox-pos drawer status)
-
-	  ;; Normalize the visibility of the inbox tree
-	  (goto-char inbox-pos)
-	  (outline-hide-subtree)
-	  (org-show-children)
-	  (org-cycle-hide-drawers 'children)
-
-	  ;; Hooks and messages
-	  (when org-feed-save-after-adding (save-buffer))
-	  (message "Added %d new item%s from feed %s to file %s, heading %s"
-		   (length new) (if (> (length new) 1) "s" "")
-		   name
-		   (file-name-nondirectory file) headline)
-	  (run-hooks 'org-feed-after-adding-hook)
-	  (length new))))))
-
-;;;###autoload
-(defun org-feed-goto-inbox (feed)
-  "Go to the inbox that captures the feed named FEED."
-  (interactive
-   (list (if (= (length org-feed-alist) 1)
-	     (car org-feed-alist)
-	   (org-completing-read "Feed name: " org-feed-alist))))
-  (if (stringp feed) (setq feed (assoc feed org-feed-alist)))
-  (unless feed
-    (error "No such feed in `org-feed-alist"))
-  (org-feed-goto-inbox-internal (nth 2 feed) (nth 3 feed)))
-
-;;;###autoload
-(defun org-feed-show-raw-feed (feed)
-  "Show the raw feed buffer of a feed."
-  (interactive
-   (list (if (= (length org-feed-alist) 1)
-	     (car org-feed-alist)
-	   (org-completing-read "Feed name: " org-feed-alist))))
-  (if (stringp feed) (setq feed (assoc feed org-feed-alist)))
-  (unless feed
-    (error "No such feed in `org-feed-alist"))
-  (pop-to-buffer-same-window
-   (org-feed-update feed 'retrieve-only))
-  (goto-char (point-min)))
-
-(defun org-feed-goto-inbox-internal (file heading)
-  "Find or create HEADING in FILE.
-Switch to that buffer, and return the position of that headline."
-  (find-file file)
-  (widen)
-  (goto-char (point-min))
-  (if (re-search-forward
-       (concat "^\\*+[ \t]+" heading "[ \t]*\\(:.*?:[ \t]*\\)?$")
-       nil t)
-      (goto-char (match-beginning 0))
-    (goto-char (point-max))
-    (insert "\n\n* " heading "\n\n")
-    (org-back-to-heading t))
-  (point))
-
-(defun org-feed-read-previous-status (pos drawer)
-  "Get the alist of old GUIDs from the entry at POS.
-This will find DRAWER and extract the alist."
-  (save-excursion
-    (goto-char pos)
-    (let ((end (save-excursion (org-end-of-subtree t t))))
-      (if (re-search-forward
-	   (concat "^[ \t]*:" drawer ":[ \t]*\n\\([^\000]*?\\)\n[ \t]*:END:")
-	   end t)
-	  (read (match-string 1))
-	nil))))
-
-(defun org-feed-write-status (pos drawer status)
-  "Write the feed STATUS to DRAWER in entry at POS."
-  (save-excursion
-    (goto-char pos)
-    (let ((end (save-excursion (org-end-of-subtree t t))))
-      (if (re-search-forward (concat "^[ \t]*:" drawer ":[ \t]*\n")
-			     end t)
-	  (progn
-	    (goto-char (match-end 0))
-	    (delete-region (point)
-			   (save-excursion
-			     (and (re-search-forward "^[ \t]*:END:" nil t)
-				  (match-beginning 0)))))
-	(outline-next-heading)
-	(insert "  :" drawer ":\n  :END:\n")
-	(beginning-of-line 0))
-      (insert (pp-to-string status)))))
-
-(defun org-feed-add-items (pos entries)
-  "Add the formatted items to the headline as POS."
-  (let (entry level)
-    (save-excursion
-      (goto-char pos)
-      (unless (looking-at org-complex-heading-regexp)
-	(error "Wrong position"))
-      (setq level (org-get-valid-level (length (match-string 1)) 1))
-      (org-end-of-subtree t t)
-      (skip-chars-backward " \t\n")
-      (beginning-of-line 2)
-      (setq pos (point))
-      (while (setq entry (pop entries))
-	(org-paste-subtree level entry 'yank))
-      (org-mark-ring-push pos))))
-
-(defun org-feed-format-entry (entry template formatter)
-  "Format ENTRY so that it can be inserted into an Org file.
-ENTRY is a property list.  This function adds a `:formatted-for-org' property
-and returns the full property list.
-If that property is already present, nothing changes."
-  (require 'org-capture)
-  (if formatter (funcall formatter entry)
-    (let* ((dlines
-            (org-split-string (or (plist-get entry :description) "???")
-                              "\n"))
-           (time (or (if (plist-get entry :pubDate)
-                         (org-read-date t t (plist-get entry :pubDate)))
-                     (current-time)))
-           (v-h (or (plist-get entry :title) (car dlines) "???"))
-           (v-t (format-time-string (org-time-stamp-format nil nil) time))
-           (v-T (format-time-string (org-time-stamp-format t   nil) time))
-           (v-u (format-time-string (org-time-stamp-format nil t)   time))
-           (v-U (format-time-string (org-time-stamp-format t   t)   time))
-           (v-a (let ((tmp (or (and (plist-get entry :guid-permalink)
-				    (plist-get entry :guid))
-			       (plist-get entry :link))))
-		  (if tmp (format "[[%s]]\n" tmp ) ""))))
-      (with-temp-buffer
-        (insert template)
-        (goto-char (point-min))
-
-        ;; Mark %() embedded elisp for later evaluation.
-        (org-capture-expand-embedded-elisp 'mark)
-
-        ;; Simple %-escapes.  `org-capture-escaped-%' may modify
-	;; buffer and cripple match-data.  Use markers instead.
-        (while (re-search-forward "%\\([a-zA-Z]+\\)" nil t)
-          (let ((key (match-string 1))
-		(beg (copy-marker (match-beginning 0)))
-		(end (copy-marker (match-end 0))))
-	    (unless (org-capture-escaped-%)
-	      (delete-region beg end)
-	      (set-marker beg nil)
-	      (set-marker end nil)
-	      (let ((replacement
-		     (pcase key
-		       ("h" v-h)
-		       ("t" v-t)
-		       ("T" v-T)
-		       ("u" v-u)
-		       ("U" v-U)
-		       ("a" v-a)
-		       (name
-			(let ((v (plist-get entry (intern (concat ":" name)))))
-			  (save-excursion
-			    (save-match-data
-			      (beginning-of-line)
-			      (if (looking-at
-				   (concat "^\\([ \t]*\\)%" name "[ \t]*$"))
-				  (org-feed-make-indented-block
-				   v (org-get-indentation))
-				v))))))))
-		(when replacement
-		  (insert
-		   ;; Escape string delimiters within embedded lisp.
-		   (if (org-capture-inside-embedded-elisp-p)
-		       (replace-regexp-in-string "\"" "\\\\\"" replacement)
-		     replacement)))))))
-
-        ;; %() embedded elisp
-        (org-capture-expand-embedded-elisp)
-
-        (decode-coding-string
-         (buffer-string) (detect-coding-region (point-min) (point-max) t))))))
-
-(defun org-feed-make-indented-block (s n)
-  "Add indentation of N spaces to a multiline string S."
-  (if (not (string-match "\n" s))
-      s
-    (mapconcat 'identity
-               (org-split-string s "\n")
-               (concat "\n" (make-string n ?\ )))))
-
-(defun org-feed-skip-http-headers (buffer)
-  "Remove HTTP headers from BUFFER, and return it.
-Assumes headers are indeed present!"
-  (with-current-buffer buffer
-    (widen)
-    (goto-char (point-min))
-    (search-forward "\n\n")
-    (delete-region (point-min) (point))
-    buffer))
-
-(defun org-feed-get-feed (url)
-  "Get the RSS feed file at URL and return the buffer."
-  (cond
-   ((eq org-feed-retrieve-method 'url-retrieve-synchronously)
-    (org-feed-skip-http-headers (url-retrieve-synchronously url)))
-   ((eq org-feed-retrieve-method 'curl)
-    (ignore-errors (kill-buffer org-feed-buffer))
-    (call-process "curl" nil org-feed-buffer nil "--silent" url)
-    org-feed-buffer)
-   ((eq org-feed-retrieve-method 'wget)
-    (ignore-errors (kill-buffer org-feed-buffer))
-    (call-process "wget" nil org-feed-buffer nil "-q" "-O" "-" url)
-    org-feed-buffer)
-   ((functionp org-feed-retrieve-method)
-    (funcall org-feed-retrieve-method url))))
-
-(defun org-feed-parse-rss-feed (buffer)
-  "Parse BUFFER for RSS feed entries.
-Returns a list of entries, with each entry a property list,
-containing the properties `:guid' and `:item-full-text'."
-  (require 'xml)
-  (let ((case-fold-search t)
-	entries beg end item guid entry)
-    (with-current-buffer buffer
-      (widen)
-      (goto-char (point-min))
-      (while (re-search-forward "<item\\>.*?>" nil t)
-	(setq beg (point)
-	      end (and (re-search-forward "</item>" nil t)
-		       (match-beginning 0)))
-	(setq item (buffer-substring beg end)
-	      guid (if (string-match "<guid\\>.*?>\\([^\000]*?\\)</guid>" item)
-		       (xml-substitute-special (match-string-no-properties 1 item))))
-	(setq entry (list :guid guid :item-full-text item))
-	(push entry entries)
-	(widen)
-	(goto-char end))
-      (nreverse entries))))
-
-(defun org-feed-parse-rss-entry (entry)
-  "Parse the `:item-full-text' field for xml tags and create new properties."
-  (require 'xml)
-  (with-temp-buffer
-    (insert (plist-get entry :item-full-text))
-    (goto-char (point-min))
-    (while (re-search-forward "<\\([a-zA-Z]+\\>\\).*?>\\([^\000]*?\\)</\\1>"
-			      nil t)
-      (setq entry (plist-put entry
-			     (intern (concat ":" (match-string 1)))
-			     (xml-substitute-special (match-string 2)))))
-    (goto-char (point-min))
-    (unless (re-search-forward "isPermaLink[ \t]*=[ \t]*\"false\"" nil t)
-      (setq entry (plist-put entry :guid-permalink t))))
-  entry)
-
-(defun org-feed-parse-atom-feed (buffer)
-  "Parse BUFFER for Atom feed entries.
-Returns a list of entries, with each entry a property list,
-containing the properties `:guid' and `:item-full-text'.
-
-The `:item-full-text' property actually contains the sexp
-formatted as a string, not the original XML data."
-  (require 'xml)
-  (with-current-buffer buffer
-    (widen)
-    (let ((feed (car (xml-parse-region (point-min) (point-max)))))
-      (mapcar
-       (lambda (entry)
-	 (list
-	  :guid (car (xml-node-children (car (xml-get-children entry 'id))))
-	  :item-full-text (prin1-to-string entry)))
-       (xml-get-children feed 'entry)))))
-
-(defun org-feed-parse-atom-entry (entry)
-  "Parse the `:item-full-text' as a sexp and create new properties."
-  (let ((xml (car (read-from-string (plist-get entry :item-full-text)))))
-    ;; Get first <link href='foo'/>.
-    (setq entry (plist-put entry :link
-			   (xml-get-attribute
-			    (car (xml-get-children xml 'link))
-			    'href)))
-    ;; Add <title/> as :title.
-    (setq entry (plist-put entry :title
-			   (xml-substitute-special
-			    (car (xml-node-children
-				  (car (xml-get-children xml 'title)))))))
-    (let* ((content (car (xml-get-children xml 'content)))
-	   (type (xml-get-attribute-or-nil content 'type)))
-      (when content
-	(cond
-	 ((string= type "text")
-	  ;; We like plain text.
-	  (setq entry (plist-put entry :description
-				 (xml-substitute-special
-				  (car (xml-node-children content))))))
-	 ((string= type "html")
-	  ;; TODO: convert HTML to Org markup.
-	  (setq entry (plist-put entry :description
-				 (xml-substitute-special
-				  (car (xml-node-children content))))))
-	 ((string= type "xhtml")
-	  ;; TODO: convert XHTML to Org markup.
-	  (setq entry (plist-put entry :description
-				 (prin1-to-string
-				  (xml-node-children content)))))
-	 (t
-	  (setq entry (plist-put entry :description
-				 (format-message
-                                  "Unknown `%s' content." type)))))))
-    entry))
-
-(provide 'org-feed)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-feed.el ends here
diff --git a/elpa/org-9.1.14/org-feed.elc b/elpa/org-9.1.14/org-feed.elc
deleted file mode 100644
index 1a2bdbf..0000000
--- a/elpa/org-9.1.14/org-feed.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-footnote.el b/elpa/org-9.1.14/org-footnote.el
deleted file mode 100644
index c6376ca..0000000
--- a/elpa/org-9.1.14/org-footnote.el
+++ /dev/null
@@ -1,1005 +0,0 @@
-;;; org-footnote.el --- Footnote support in Org      -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the code dealing with footnotes in Org mode.
-
-;;; Code:
-
-;;;; Declarations
-
-(require 'cl-lib)
-(require 'org-macs)
-(require 'org-compat)
-
-(declare-function org-at-comment-p "org" ())
-(declare-function org-at-heading-p "org" (&optional ignored))
-(declare-function org-back-over-empty-lines "org" ())
-(declare-function org-edit-footnote-reference "org-src" ())
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-class "org-element" (datum &optional parent))
-(declare-function org-element-context "org-element" (&optional element))
-(declare-function org-element-lineage "org-element" (blob &optional types with-self))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-end-of-subtree "org"  (&optional invisible-ok to-heading))
-(declare-function org-fill-paragraph "org" (&optional justify region))
-(declare-function org-in-block-p "org" (names))
-(declare-function org-in-regexp "org" (re &optional nlines visually))
-(declare-function org-in-verbatim-emphasis "org" ())
-(declare-function org-inside-LaTeX-fragment-p "org" ())
-(declare-function org-inside-latex-macro-p "org" ())
-(declare-function org-mark-ring-push "org" (&optional pos buffer))
-(declare-function org-show-context "org" (&optional key))
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function outline-next-heading "outline")
-
-(defvar electric-indent-mode)
-(defvar org-blank-before-new-entry)	; defined in org.el
-(defvar org-bracket-link-regexp)	; defined in org.el
-(defvar org-complex-heading-regexp)	; defined in org.el
-(defvar org-odd-levels-only)		; defined in org.el
-(defvar org-outline-regexp)		; defined in org.el
-(defvar org-outline-regexp-bol)		; defined in org.el
-
-
-;;;; Constants
-
-(defconst org-footnote-re
-  "\\[fn:\\(?:\\(?1:[-_[:word:]]+\\)?\\(:\\)\\|\\(?1:[-_[:word:]]+\\)\\]\\)"
-  "Regular expression for matching footnotes.
-Match group 1 contains footnote's label.  It is nil for anonymous
-footnotes.  Match group 2 is non-nil only when footnote is
-inline, i.e., it contains its own definition.")
-
-(defconst org-footnote-definition-re "^\\[fn:\\([-_[:word:]]+\\)\\]"
-  "Regular expression matching the definition of a footnote.
-Match group 1 contains definition's label.")
-
-(defconst org-footnote-forbidden-blocks '("comment" "example" "export" "src")
-  "Names of blocks where footnotes are not allowed.")
-
-
-;;;; Customization
-
-(defgroup org-footnote nil
-  "Footnotes in Org mode."
-  :tag "Org Footnote"
-  :group 'org)
-
-(defcustom org-footnote-section "Footnotes"
-  "Outline heading containing footnote definitions.
-
-This can be nil, to place footnotes locally at the end of the
-current outline node.  If can also be the name of a special
-outline heading under which footnotes should be put.
-
-This variable defines the place where Org puts the definition
-automatically, i.e. when creating the footnote, and when sorting
-the notes.  However, by hand you may place definitions
-*anywhere*.
-
-If this is a string, during export, all subtrees starting with
-this heading will be ignored.
-
-If you don't use the customize interface to change this variable,
-you will need to run the following command after the change:
-
-  `\\[universal-argument] \\[org-element-cache-reset]'"
-  :group 'org-footnote
-  :initialize 'custom-initialize-default
-  :set (lambda (var val)
-	 (set var val)
-	 (when (fboundp 'org-element-cache-reset)
-	   (org-element-cache-reset 'all)))
-  :type '(choice
-	  (string :tag "Collect footnotes under heading")
-	  (const :tag "Define footnotes locally" nil)))
-
-(defcustom org-footnote-define-inline nil
-  "Non-nil means define footnotes inline, at reference location.
-When nil, footnotes will be defined in a special section near
-the end of the document.  When t, the [fn:label:definition] notation
-will be used to define the footnote at the reference position."
-  :group 'org-footnote
-  :type 'boolean)
-
-(defcustom org-footnote-auto-label t
-  "Non-nil means define automatically new labels for footnotes.
-Possible values are:
-
-nil        Prompt the user for each label.
-t          Create unique labels of the form [fn:1], [fn:2], etc.
-confirm    Like t, but let the user edit the created value.
-           The label can be removed from the minibuffer to create
-           an anonymous footnote.
-random	   Automatically generate a unique, random label."
-  :group 'org-footnote
-  :type '(choice
-	  (const :tag "Prompt for label" nil)
-	  (const :tag "Create automatic [fn:N]" t)
-	  (const :tag "Offer automatic [fn:N] for editing" confirm)
-	  (const :tag "Create a random label" random)))
-
-(defcustom org-footnote-auto-adjust nil
-  "Non-nil means automatically adjust footnotes after insert/delete.
-When this is t, after each insertion or deletion of a footnote,
-simple fn:N footnotes will be renumbered, and all footnotes will be sorted.
-If you want to have just sorting or just renumbering, set this variable
-to `sort' or `renumber'.
-
-The main values of this variable can be set with in-buffer options:
-
-#+STARTUP: fnadjust
-#+STARTUP: nofnadjust"
-  :group 'org-footnote
-  :type '(choice
-	  (const :tag "No adjustment" nil)
-	  (const :tag "Renumber" renumber)
-	  (const :tag "Sort" sort)
-	  (const :tag "Renumber and Sort" t)))
-
-(defcustom org-footnote-fill-after-inline-note-extraction nil
-  "Non-nil means fill paragraphs after extracting footnotes.
-When extracting inline footnotes, the lengths of lines can change a lot.
-When this option is set, paragraphs from which an inline footnote has been
-extracted will be filled again."
-  :group 'org-footnote
-  :type 'boolean)
-
-
-;;;; Predicates
-
-(defun org-footnote-in-valid-context-p ()
-  "Is point in a context where footnotes are allowed?"
-  (save-match-data
-    (not (or (org-at-comment-p)
-	     (org-inside-LaTeX-fragment-p)
-	     ;; Avoid literal example.
-	     (org-in-verbatim-emphasis)
-	     (save-excursion
-	       (beginning-of-line)
-	       (looking-at "[ \t]*:[ \t]+"))
-	     ;; Avoid forbidden blocks.
-	     (org-in-block-p org-footnote-forbidden-blocks)))))
-
-(defun org-footnote-at-reference-p ()
-  "Is the cursor at a footnote reference?
-
-If so, return a list containing its label, beginning and ending
-positions, and the definition, when inlined."
-  (when (and (org-footnote-in-valid-context-p)
-	     (or (looking-at org-footnote-re)
-		 (org-in-regexp org-footnote-re)
-		 (save-excursion (re-search-backward org-footnote-re nil t)))
-	     (/= (match-beginning 0) (line-beginning-position)))
-    (let* ((beg (match-beginning 0))
-	   (label (match-string-no-properties 1))
-	   ;; Inline footnotes don't end at (match-end 0) as
-	   ;; `org-footnote-re' stops just after the second colon.
-	   ;; Find the real ending with `scan-sexps', so Org doesn't
-	   ;; get fooled by unrelated closing square brackets.
-	   (end (ignore-errors (scan-sexps beg 1))))
-      ;; Point is really at a reference if it's located before true
-      ;; ending of the footnote.
-      (when (and end
-		 (< (point) end)
-		 ;; Verify match isn't a part of a link.
-		 (not (save-excursion
-			(goto-char beg)
-			(let ((linkp
-			       (save-match-data
-				 (org-in-regexp org-bracket-link-regexp))))
-			  (and linkp (< (point) (cdr linkp))))))
-		 ;; Verify point doesn't belong to a LaTeX macro.
-		 (not (org-inside-latex-macro-p)))
-	(list label beg end
-	      ;; Definition: ensure this is an inline footnote first.
-	      (and (match-end 2)
-		   (org-trim
-		    (buffer-substring-no-properties
-		     (match-end 0) (1- end)))))))))
-
-(defun org-footnote-at-definition-p ()
-  "Is point within a footnote definition?
-
-This matches only pure definitions like [1] or [fn:name] at the
-beginning of a line.  It does not match references like
-\[fn:name:definition], where the footnote text is included and
-defined locally.
-
-The return value will be nil if not at a footnote definition, and
-a list with label, start, end and definition of the footnote
-otherwise."
-  (when (save-excursion (beginning-of-line) (org-footnote-in-valid-context-p))
-    (save-excursion
-      (end-of-line)
-      ;; Footnotes definitions are separated by new headlines, another
-      ;; footnote definition or 2 blank lines.
-      (let ((lim (save-excursion
-		   (re-search-backward
-		    (concat org-outline-regexp-bol
-			    "\\|^\\([ \t]*\n\\)\\{2,\\}") nil t))))
-	(when (re-search-backward org-footnote-definition-re lim t)
-	  (let ((label (match-string-no-properties 1))
-		(beg (match-beginning 0))
-		(beg-def (match-end 0))
-		(end (if (progn
-			   (end-of-line)
-			   (re-search-forward
-			    (concat org-outline-regexp-bol "\\|"
-				    org-footnote-definition-re "\\|"
-				    "^\\([ \t]*\n\\)\\{2,\\}") nil 'move))
-			 (match-beginning 0)
-		       (point))))
-	    (list label beg end
-		  (org-trim (buffer-substring-no-properties beg-def end)))))))))
-
-
-;;;; Internal functions
-
-(defun org-footnote--allow-reference-p ()
-  "Non-nil when a footnote reference can be inserted at point."
-  ;; XXX: This is similar to `org-footnote-in-valid-context-p' but
-  ;; more accurate and usually faster, except in some corner cases.
-  ;; It may replace it after doing proper benchmarks as it would be
-  ;; used in fontification.
-  (unless (bolp)
-    (let* ((context (org-element-context))
-	   (type (org-element-type context)))
-      (cond
-       ;; No footnote reference in attributes.
-       ((let ((post (org-element-property :post-affiliated context)))
-	  (and post (< (point) post)))
-	nil)
-       ;; Paragraphs and blank lines at top of document are fine.
-       ((memq type '(nil paragraph)))
-       ;; So are contents of verse blocks.
-       ((eq type 'verse-block)
-	(and (>= (point) (org-element-property :contents-begin context))
-	     (< (point) (org-element-property :contents-end context))))
-       ;; In an headline or inlinetask, point must be either on the
-       ;; heading itself or on the blank lines below.
-       ((memq type '(headline inlinetask))
-	(or (not (org-at-heading-p))
-	    (and (save-excursion
-		   (beginning-of-line)
-		   (and (let ((case-fold-search t))
-			  (not (looking-at-p "\\*+ END[ \t]*$")))
-			(let ((case-fold-search nil))
-			  (looking-at org-complex-heading-regexp))))
-		 (match-beginning 4)
-		 (>= (point) (match-beginning 4))
-		 (or (not (match-beginning 5))
-		     (< (point) (match-beginning 5))))))
-       ;; White spaces after an object or blank lines after an element
-       ;; are OK.
-       ((>= (point)
-	    (save-excursion (goto-char (org-element-property :end context))
-			    (skip-chars-backward " \r\t\n")
-			    (if (eq (org-element-class context) 'object) (point)
-			      (1+ (line-beginning-position 2))))))
-       ;; Other elements are invalid.
-       ((eq (org-element-class context) 'element) nil)
-       ;; Just before object is fine.
-       ((= (point) (org-element-property :begin context)))
-       ;; Within recursive object too, but not in a link.
-       ((eq type 'link) nil)
-       ((let ((cbeg (org-element-property :contents-begin context))
-	      (cend (org-element-property :contents-end context)))
-	  (and cbeg (>= (point) cbeg) (<= (point) cend))))))))
-
-(defun org-footnote--clear-footnote-section ()
-  "Remove all footnote sections in buffer and create a new one.
-New section is created at the end of the buffer, before any file
-local variable definition.  Leave point within the new section."
-  (when org-footnote-section
-    (goto-char (point-min))
-    (let ((regexp
-	   (format "^\\*+ +%s[ \t]*$"
-		   (regexp-quote org-footnote-section))))
-      (while (re-search-forward regexp nil t)
-	(delete-region
-	 (match-beginning 0)
-	 (progn (org-end-of-subtree t t)
-		(if (not (eobp)) (point)
-		  (org-footnote--goto-local-insertion-point)
-		  (skip-chars-forward " \t\n")
-		  (if (eobp) (point) (line-beginning-position)))))))
-    (goto-char (point-max))
-    (org-footnote--goto-local-insertion-point)
-    (when (and (cdr (assq 'heading org-blank-before-new-entry))
-	       (zerop (save-excursion (org-back-over-empty-lines))))
-      (insert "\n"))
-    (insert "* " org-footnote-section "\n")))
-
-(defun org-footnote--set-label (label)
-  "Set label of footnote at point to string LABEL.
-Assume point is at the beginning of the reference or definition
-to rename."
-  (forward-char 4)
-  (cond ((eq (char-after) ?:) (insert label))
-	((looking-at "\\([-_[:word:]]+\\)") (replace-match label nil nil nil 1))
-	(t nil)))
-
-(defun org-footnote--collect-references (&optional anonymous)
-  "Collect all labeled footnote references in current buffer.
-
-Return an alist where associations follow the pattern
-
-  (LABEL MARKER TOP-LEVEL SIZE)
-
-with
-
-  LABEL     the label of the of the definition,
-  MARKER    a marker pointing to its beginning,
-  TOP-LEVEL a boolean, nil when the footnote is contained within
-            another one,
-  SIZE      the length of the inline definition, in characters,
-            or nil for non-inline references.
-
-When optional ANONYMOUS is non-nil, also collect anonymous
-references.  In such cases, LABEL is nil.
-
-References are sorted according to a deep-reading order."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let ((regexp (if anonymous org-footnote-re "\\[fn:[-_[:word:]]+[]:]"))
-	 references nested)
-     (save-excursion
-       (while (re-search-forward regexp nil t)
-	 ;; Ignore definitions.
-	 (unless (and (eq (char-before) ?\])
-		      (= (line-beginning-position) (match-beginning 0)))
-	   ;; Ensure point is within the reference before parsing it.
-	   (backward-char)
-	   (let ((object (org-element-context)))
-	     (when (eq (org-element-type object) 'footnote-reference)
-	       (let* ((label (org-element-property :label object))
-		      (begin (org-element-property :begin object))
-		      (size
-		       (and (eq (org-element-property :type object) 'inline)
-			    (- (org-element-property :contents-end object)
-			       (org-element-property :contents-begin object)))))
-		 (let ((d (org-element-lineage object '(footnote-definition))))
-		   (push (list label (copy-marker begin) (not d) size)
-			 references)
-		   (when d
-		     ;; Nested references are stored in alist NESTED.
-		     ;; Associations there follow the pattern
-		     ;;
-		     ;;   (DEFINITION-LABEL . REFERENCES)
-		     (let* ((def-label (org-element-property :label d))
-			    (labels (assoc def-label nested)))
-		       (if labels (push label (cdr labels))
-			 (push (list def-label label) nested)))))))))))
-     ;; Sort the list of references.  Nested footnotes have priority
-     ;; over top-level ones.
-     (letrec ((ordered nil)
-	      (add-reference
-	       (lambda (ref allow-nested)
-		 (when (or allow-nested (nth 2 ref))
-		   (push ref ordered)
-		   (dolist (r (mapcar (lambda (l) (assoc l references))
-				      (reverse
-				       (cdr (assoc (nth 0 ref) nested)))))
-		     (funcall add-reference r t))))))
-       (dolist (r (reverse references) (nreverse ordered))
-	 (funcall add-reference r nil))))))
-
-(defun org-footnote--collect-definitions (&optional delete)
-  "Collect all footnote definitions in current buffer.
-
-Return an alist where associations follow the pattern
-
-  (LABEL . DEFINITION)
-
-with LABEL and DEFINITION being, respectively, the label and the
-definition of the footnote, as strings.
-
-When optional argument DELETE is non-nil, delete the definition
-while collecting them."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let (definitions seen)
-     (while (re-search-forward org-footnote-definition-re nil t)
-       (backward-char)
-       (let ((element (org-element-at-point)))
-	 (let ((label (org-element-property :label element)))
-	   (when (and (eq (org-element-type element) 'footnote-definition)
-		      (not (member label seen)))
-	     (push label seen)
-	     (let* ((beg (progn
-			   (goto-char (org-element-property :begin element))
-			   (skip-chars-backward " \r\t\n")
-			   (if (bobp) (point) (line-beginning-position 2))))
-		    (end (progn
-			   (goto-char (org-element-property :end element))
-			   (skip-chars-backward " \r\t\n")
-			   (line-beginning-position 2)))
-		    (def (org-trim (buffer-substring-no-properties beg end))))
-	       (push (cons label def) definitions)
-	       (when delete (delete-region beg end)))))))
-     definitions)))
-
-(defun org-footnote--goto-local-insertion-point ()
-  "Find insertion point for footnote, just before next outline heading.
-Assume insertion point is within currently accessible part of the buffer."
-  (org-with-limited-levels (outline-next-heading))
-  ;; Skip file local variables.  See `modify-file-local-variable'.
-  (when (eobp)
-    (let ((case-fold-search t))
-      (re-search-backward "^[ \t]*# +Local Variables:"
-			  (max (- (point-max) 3000) (point-min))
-			  t)))
-  (skip-chars-backward " \t\n")
-  (forward-line)
-  (unless (bolp) (insert "\n")))
-
-
-;;;; Navigation
-
-(defun org-footnote-get-next-reference (&optional label backward limit)
-  "Return complete reference of the next footnote.
-
-If LABEL is provided, get the next reference of that footnote.  If
-BACKWARD is non-nil, find previous reference instead.  LIMIT is
-the buffer position bounding the search.
-
-Return value is a list like those provided by `org-footnote-at-reference-p'.
-If no footnote is found, return nil."
-  (save-excursion
-    (let* ((label-fmt (if label (format "\\[fn:%s[]:]" label) org-footnote-re)))
-      (catch 'exit
-	(while t
-	  (unless (funcall (if backward #'re-search-backward #'re-search-forward)
-			   label-fmt limit t)
-	    (throw 'exit nil))
-	  (unless backward (backward-char))
-	  (let ((ref (org-footnote-at-reference-p)))
-	    (when ref (throw 'exit ref))))))))
-
-(defun org-footnote-next-reference-or-definition (limit)
-  "Move point to next footnote reference or definition.
-
-LIMIT is the buffer position bounding the search.
-
-Return value is a list like those provided by
-`org-footnote-at-reference-p' or `org-footnote-at-definition-p'.
-If no footnote is found, return nil."
-  (let* (ref (origin (point)))
-    (catch 'exit
-      (while t
-	(unless (re-search-forward org-footnote-re limit t)
-	  (goto-char origin)
-	  (throw 'exit nil))
-	;; Beware: with non-inline footnotes point will be just after
-	;; the closing square bracket.
-	(backward-char)
-	(cond
-	 ((setq ref (org-footnote-at-reference-p))
-	  (throw 'exit ref))
-	 ;; Definition: also grab the last square bracket, matched in
-	 ;; `org-footnote-re' for non-inline footnotes.
-	 ((save-match-data (org-footnote-at-definition-p))
-	  (let ((end (match-end 0)))
-	    (throw 'exit
-		   (list nil (match-beginning 0)
-			 (if (eq (char-before end) ?\]) end (1+ end)))))))))))
-
-(defun org-footnote-goto-definition (label &optional location)
-  "Move point to the definition of the footnote LABEL.
-
-LOCATION, when non-nil specifies the buffer position of the
-definition.
-
-Throw an error if there is no definition or if it cannot be
-reached from current narrowed part of buffer.  Return a non-nil
-value if point was successfully moved."
-  (interactive "sLabel: ")
-  (let* ((label (org-footnote-normalize-label label))
-	 (def-start (or location (nth 1 (org-footnote-get-definition label)))))
-    (cond
-     ((not def-start)
-      (user-error "Cannot find definition of footnote %s" label))
-     ((or (> def-start (point-max)) (< def-start (point-min)))
-      (user-error "Definition is outside narrowed part of buffer")))
-    (org-mark-ring-push)
-    (goto-char def-start)
-    (looking-at (format "\\[fn:%s[]:] ?" (regexp-quote label)))
-    (goto-char (match-end 0))
-    (org-show-context 'link-search)
-    (when (derived-mode-p 'org-mode)
-      (message "%s" (substitute-command-keys
-		     "Edit definition and go back with \
-`\\[org-mark-ring-goto]' or, if unique, with `\\[org-ctrl-c-ctrl-c]'.")))
-    t))
-
-(defun org-footnote-goto-previous-reference (label)
-  "Find the first closest (to point) reference of footnote with label LABEL."
-  (interactive "sLabel: ")
-  (org-mark-ring-push)
-  (let ((label (org-footnote-normalize-label label))
-	ref)
-    (save-excursion
-      (setq ref (or (org-footnote-get-next-reference label t)
-		    (org-footnote-get-next-reference label)
-		    (save-restriction
-		      (widen)
-		      (or
-		       (org-footnote-get-next-reference label t)
-		       (org-footnote-get-next-reference label))))))
-    (if (not ref)
-	(error "Cannot find reference of footnote %s" label)
-      (goto-char (nth 1 ref))
-      (org-show-context 'link-search))))
-
-
-;;;; Getters
-
-(defun org-footnote-normalize-label (label)
-  "Return LABEL without \"fn:\" prefix.
-If LABEL is the empty string or constituted of white spaces only,
-return nil instead."
-  (pcase (org-trim label)
-    ("" nil)
-    ((pred (string-prefix-p "fn:")) (substring label 3))
-    (_ label)))
-
-(defun org-footnote-get-definition (label)
-  "Return label, boundaries and definition of the footnote LABEL."
-  (let* ((label (regexp-quote (org-footnote-normalize-label label)))
-	 (re (format "^\\[fn:%s\\]\\|.\\[fn:%s:" label label)))
-    (org-with-wide-buffer
-     (goto-char (point-min))
-     (catch 'found
-       (while (re-search-forward re nil t)
-	 (let* ((datum (progn (backward-char) (org-element-context)))
-		(type (org-element-type datum)))
-	   (when (memq type '(footnote-definition footnote-reference))
-	     (throw 'found
-		    (list
-		     label
-		     (org-element-property :begin datum)
-		     (org-element-property :end datum)
-		     (let ((cbeg (org-element-property :contents-begin datum)))
-		       (if (not cbeg) ""
-			 (replace-regexp-in-string
-			  "[ \t\n]*\\'"
-			  ""
-			  (buffer-substring-no-properties
-			   cbeg
-			   (org-element-property :contents-end datum))))))))))
-       nil))))
-
-(defun org-footnote-all-labels ()
-  "List all defined footnote labels used throughout the buffer.
-This function ignores narrowing, if any."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let (all)
-     (while (re-search-forward org-footnote-re nil t)
-       (backward-char)
-       (let ((context (org-element-context)))
-	 (when (memq (org-element-type context)
-		     '(footnote-definition footnote-reference))
-	   (let ((label (org-element-property :label context)))
-	     (when label (cl-pushnew label all :test #'equal))))))
-     all)))
-
-(defun org-footnote-unique-label (&optional current)
-  "Return a new unique footnote label.
-
-The function returns the first numeric label currently unused.
-
-Optional argument CURRENT is the list of labels active in the
-buffer."
-  (let ((current (or current (org-footnote-all-labels))))
-    (let ((count 1))
-      (while (member (number-to-string count) current)
-	(cl-incf count))
-      (number-to-string count))))
-
-
-;;;; Adding, Deleting Footnotes
-
-(defun org-footnote-new ()
-  "Insert a new footnote.
-This command prompts for a label.  If this is a label referencing an
-existing label, only insert the label.  If the footnote label is empty
-or new, let the user edit the definition of the footnote."
-  (interactive)
-  (unless (org-footnote--allow-reference-p)
-    (user-error "Cannot insert a footnote here"))
-  (let* ((all (org-footnote-all-labels))
-	 (label
-	  (if (eq org-footnote-auto-label 'random)
-	      (format "%x" (random most-positive-fixnum))
-	    (org-footnote-normalize-label
-	     (let ((propose (org-footnote-unique-label all)))
-	       (if (eq org-footnote-auto-label t) propose
-		 (completing-read
-		  "Label (leave empty for anonymous): "
-		  (mapcar #'list all) nil nil
-		  (and (eq org-footnote-auto-label 'confirm) propose))))))))
-    (cond ((not label)
-	   (insert "[fn::]")
-	   (backward-char 1))
-	  ((member label all)
-	   (insert "[fn:" label "]")
-	   (message "New reference to existing note"))
-	  (org-footnote-define-inline
-	   (insert "[fn:" label ":]")
-	   (backward-char 1)
-	   (org-footnote-auto-adjust-maybe))
-	  (t
-	   (insert "[fn:" label "]")
-	   (let ((p (org-footnote-create-definition label)))
-	     ;; `org-footnote-goto-definition' needs to be called
-	     ;; after `org-footnote-auto-adjust-maybe'.  Otherwise
-	     ;; both label and location of the definition are lost.
-	     ;; On the contrary, it needs to be called before
-	     ;; `org-edit-footnote-reference' so that the remote
-	     ;; editing buffer can display the correct label.
-	     (if (ignore-errors (org-footnote-goto-definition label p))
-		 (org-footnote-auto-adjust-maybe)
-	       ;; Definition was created outside current scope: edit
-	       ;; it remotely.
-	       (org-footnote-auto-adjust-maybe)
-	       (org-edit-footnote-reference)))))))
-
-(defun org-footnote-create-definition (label)
-  "Start the definition of a footnote with label LABEL.
-Return buffer position at the beginning of the definition.  This
-function doesn't move point."
-  (let ((label (org-footnote-normalize-label label))
-	electric-indent-mode)		; Prevent wrong indentation.
-    (org-with-wide-buffer
-     (cond
-      ((not org-footnote-section) (org-footnote--goto-local-insertion-point))
-      ((save-excursion
-	 (goto-char (point-min))
-	 (re-search-forward
-	  (concat "^\\*+[ \t]+" (regexp-quote org-footnote-section) "[ \t]*$")
-	  nil t))
-       (goto-char (match-end 0))
-       (forward-line)
-       (unless (bolp) (insert "\n")))
-      (t (org-footnote--clear-footnote-section)))
-     (when (zerop (org-back-over-empty-lines)) (insert "\n"))
-     (insert "[fn:" label "] \n")
-     (line-beginning-position 0))))
-
-(defun org-footnote-delete-references (label)
-  "Delete every reference to footnote LABEL.
-Return the number of footnotes removed."
-  (save-excursion
-    (goto-char (point-min))
-    (let (ref (nref 0))
-      (while (setq ref (org-footnote-get-next-reference label))
-	(goto-char (nth 1 ref))
-	(delete-region (nth 1 ref) (nth 2 ref))
-	(cl-incf nref))
-      nref)))
-
-(defun org-footnote-delete-definitions (label)
-  "Delete every definition of the footnote LABEL.
-Return the number of footnotes removed."
-  (save-excursion
-    (goto-char (point-min))
-    (let ((def-re (format "^\\[fn:%s\\]" (regexp-quote label)))
-	  (ndef 0))
-      (while (re-search-forward def-re nil t)
-	(pcase (org-footnote-at-definition-p)
-	  (`(,_ ,start ,end ,_)
-	   ;; Remove the footnote, and all blank lines before it.
-	   (delete-region (progn
-			    (goto-char start)
-			    (skip-chars-backward " \r\t\n")
-			    (if (bobp) (point) (line-beginning-position 2)))
-			  (progn
-			    (goto-char end)
-			    (skip-chars-backward " \r\t\n")
-			    (if (bobp) (point) (line-beginning-position 2))))
-	   (cl-incf ndef))))
-      ndef)))
-
-(defun org-footnote-delete (&optional label)
-  "Delete the footnote at point.
-This will remove the definition (even multiple definitions if they exist)
-and all references of a footnote label.
-
-If LABEL is non-nil, delete that footnote instead."
-  (catch 'done
-    (let* ((nref 0) (ndef 0) x
-	   ;; 1. Determine LABEL of footnote at point.
-	   (label (cond
-		   ;; LABEL is provided as argument.
-		   (label)
-		   ;; Footnote reference at point.  If the footnote is
-		   ;; anonymous, delete it and exit instead.
-		   ((setq x (org-footnote-at-reference-p))
-		    (or (car x)
-			(progn
-			  (delete-region (nth 1 x) (nth 2 x))
-			  (message "Anonymous footnote removed")
-			  (throw 'done t))))
-		   ;; Footnote definition at point.
-		   ((setq x (org-footnote-at-definition-p))
-		    (car x))
-		   (t (error "Don't know which footnote to remove")))))
-      ;; 2. Now that LABEL is non-nil, find every reference and every
-      ;; definition, and delete them.
-      (setq nref (org-footnote-delete-references label)
-	    ndef (org-footnote-delete-definitions label))
-      ;; 3. Verify consistency of footnotes and notify user.
-      (org-footnote-auto-adjust-maybe)
-      (message "%d definition(s) of and %d reference(s) of footnote %s removed"
-	       ndef nref label))))
-
-
-;;;; Sorting, Renumbering, Normalizing
-
-(defun org-footnote-renumber-fn:N ()
-  "Order numbered footnotes into a sequence in the document."
-  (interactive)
-  (let ((references (org-footnote--collect-references)))
-    (unwind-protect
-	(let* ((c 0)
-	       (references (cl-remove-if-not
-			    (lambda (r) (string-match-p "\\`[0-9]+\\'" (car r)))
-			    references))
-	       (alist (mapcar (lambda (l) (cons l (number-to-string (cl-incf c))))
-			      (delete-dups (mapcar #'car references)))))
-	  (org-with-wide-buffer
-	   ;; Re-number references.
-	   (dolist (ref references)
-	     (goto-char (nth 1 ref))
-	     (org-footnote--set-label (cdr (assoc (nth 0 ref) alist))))
-	   ;; Re-number definitions.
-	   (goto-char (point-min))
-	   (while (re-search-forward "^\\[fn:\\([0-9]+\\)\\]" nil t)
-	     (replace-match (or (cdr (assoc (match-string 1) alist))
-				;; Un-referenced definitions get
-				;; higher numbers.
-				(number-to-string (cl-incf c)))
-			    nil nil nil 1))))
-      (dolist (r references) (set-marker (nth 1 r) nil)))))
-
-(defun org-footnote-sort ()
-  "Rearrange footnote definitions in the current buffer.
-Sort footnote definitions so they match order of footnote
-references.  Also relocate definitions at the end of their
-relative section or within a single footnote section, according
-to `org-footnote-section'.  Inline definitions are ignored."
-  (let ((references (org-footnote--collect-references)))
-    (unwind-protect
-	(let ((definitions (org-footnote--collect-definitions 'delete)))
-	  (org-with-wide-buffer
-	   (org-footnote--clear-footnote-section)
-	   ;; Insert footnote definitions at the appropriate location,
-	   ;; separated by a blank line.  Each definition is inserted
-	   ;; only once throughout the buffer.
-	   (let (inserted)
-	     (dolist (cell references)
-	       (let ((label (car cell))
-		     (nested (not (nth 2 cell)))
-		     (inline (nth 3 cell)))
-		 (unless (or (member label inserted) inline)
-		   (push label inserted)
-		   (unless (or org-footnote-section nested)
-		     ;; If `org-footnote-section' is non-nil, or
-		     ;; reference is nested, point is already at the
-		     ;; correct position.  Otherwise, move at the
-		     ;; appropriate location within the section
-		     ;; containing the reference.
-		     (goto-char (nth 1 cell))
-		     (org-footnote--goto-local-insertion-point))
-		   (insert "\n"
-			   (or (cdr (assoc label definitions))
-			       (format "[fn:%s] DEFINITION NOT FOUND." label))
-			   "\n"))))
-	     ;; Insert un-referenced footnote definitions at the end.
-	     (let ((unreferenced
-		    (cl-remove-if (lambda (d) (member (car d) inserted))
-				  definitions)))
-	       (dolist (d unreferenced) (insert "\n" (cdr d) "\n"))))))
-      ;; Clear dangling markers in the buffer.
-      (dolist (r references) (set-marker (nth 1 r) nil)))))
-
-(defun org-footnote-normalize ()
-  "Turn every footnote in buffer into a numbered one."
-  (interactive)
-  (let ((references (org-footnote--collect-references 'anonymous)))
-    (unwind-protect
-	(let ((n 0)
-	      (translations nil)
-	      (definitions nil))
-	  (org-with-wide-buffer
-	   ;; Update label for reference.  We need to do this before
-	   ;; clearing definitions in order to rename nested footnotes
-	   ;; before they are deleted.
-	   (dolist (cell references)
-	     (let* ((label (car cell))
-		    (anonymous (not label))
-		    (new
-		     (cond
-		      ;; In order to differentiate anonymous
-		      ;; references from regular ones, set their
-		      ;; labels to integers, not strings.
-		      (anonymous (setcar cell (cl-incf n)))
-		      ((cdr (assoc label translations)))
-		      (t (let ((l (number-to-string (cl-incf n))))
-			   (push (cons label l) translations)
-			   l)))))
-	       (goto-char (nth 1 cell))	; Move to reference's start.
-	       (org-footnote--set-label
-		(if anonymous (number-to-string new) new))
-	       (let ((size (nth 3 cell)))
-		 ;; Transform inline footnotes into regular references
-		 ;; and retain their definition for later insertion as
-		 ;; a regular footnote definition.
-		 (when size
-		   (let ((def (concat
-			       (format "[fn:%s] " new)
-			       (org-trim
-				(substring
-				 (delete-and-extract-region
-				  (point) (+ (point) size 1))
-				 1)))))
-		     (push (cons (if anonymous new label) def) definitions)
-		     (when org-footnote-fill-after-inline-note-extraction
-		       (org-fill-paragraph)))))))
-	   ;; Collect definitions.  Update labels according to ALIST.
-	   (let ((definitions
-		   (nconc definitions
-			  (org-footnote--collect-definitions 'delete)))
-		 (inserted))
-	     (org-footnote--clear-footnote-section)
-	     (dolist (cell references)
-	       (let* ((label (car cell))
-		      (anonymous (integerp label))
-		      (pos (nth 1 cell)))
-		 ;; Move to appropriate location, if required.  When
-		 ;; there is a footnote section or reference is
-		 ;; nested, point is already at the expected location.
-		 (unless (or org-footnote-section (not (nth 2 cell)))
-		   (goto-char pos)
-		   (org-footnote--goto-local-insertion-point))
-		 ;; Insert new definition once label is updated.
-		 (unless (member label inserted)
-		   (push label inserted)
-		   (let ((stored (cdr (assoc label definitions)))
-			 ;; Anonymous footnotes' label is already
-			 ;; up-to-date.
-			 (new (if anonymous label
-				(cdr (assoc label translations)))))
-		     (insert "\n"
-			     (cond
-			      ((not stored)
-			       (format "[fn:%s] DEFINITION NOT FOUND." new))
-			      (anonymous stored)
-			      (t
-			       (replace-regexp-in-string
-				"\\`\\[fn:\\(.*?\\)\\]" new stored nil nil 1)))
-			     "\n")))))
-	     ;; Insert un-referenced footnote definitions at the end.
-	     (let ((unreferenced
-		    (cl-remove-if (lambda (d) (member (car d) inserted))
-				  definitions)))
-	       (dolist (d unreferenced)
-		 (insert "\n"
-			 (replace-regexp-in-string
-			  org-footnote-definition-re
-			  (format "[fn:%d]" (cl-incf n))
-			  (cdr d))
-			 "\n"))))))
-      ;; Clear dangling markers.
-      (dolist (r references) (set-marker (nth 1 r) nil)))))
-
-(defun org-footnote-auto-adjust-maybe ()
-  "Renumber and/or sort footnotes according to user settings."
-  (when (memq org-footnote-auto-adjust '(t renumber))
-    (org-footnote-renumber-fn:N))
-  (when (memq org-footnote-auto-adjust '(t sort))
-    (let ((label (car (org-footnote-at-definition-p))))
-      (org-footnote-sort)
-      (when label
-	(goto-char (point-min))
-	(and (re-search-forward (format "^\\[fn:%s\\]" (regexp-quote label))
-				nil t)
-	     (progn (insert " ")
-		    (just-one-space)))))))
-
-
-;;;; End-user interface
-
-;;;###autoload
-(defun org-footnote-action (&optional special)
-  "Do the right thing for footnotes.
-
-When at a footnote reference, jump to the definition.
-
-When at a definition, jump to the references if they exist, offer
-to create them otherwise.
-
-When neither at definition or reference, create a new footnote,
-interactively if possible.
-
-With prefix arg SPECIAL, or when no footnote can be created,
-offer additional commands in a menu."
-  (interactive "P")
-  (let* ((context (and (not special) (org-element-context)))
-	 (type (org-element-type context)))
-    (cond
-     ;; On white space after element, insert a new footnote.
-     ((and context
-	   (> (point)
-	      (save-excursion
-		(goto-char (org-element-property :end context))
-		(skip-chars-backward " \t")
-		(point))))
-      (org-footnote-new))
-     ((eq type 'footnote-reference)
-      (let ((label (org-element-property :label context)))
-	(cond
-	 ;; Anonymous footnote: move point at the beginning of its
-	 ;; definition.
-	 ((not label)
-	  (goto-char (org-element-property :contents-begin context)))
-	 ;; Check if a definition exists: then move to it.
-	 ((let ((p (nth 1 (org-footnote-get-definition label))))
-	    (when p (org-footnote-goto-definition label p))))
-	 ;; No definition exists: offer to create it.
-	 ((yes-or-no-p (format "No definition for %s.  Create one? " label))
-	  (let ((p (org-footnote-create-definition label)))
-	    (or (ignore-errors (org-footnote-goto-definition label p))
-		;; Since definition was created outside current scope,
-		;; edit it remotely.
-		(org-edit-footnote-reference)))))))
-     ((eq type 'footnote-definition)
-      (org-footnote-goto-previous-reference
-       (org-element-property :label context)))
-     ((or special (not (org-footnote--allow-reference-p)))
-      (message "Footnotes: [s]ort | [r]enumber fn:N | [S]=r+s | [n]ormalize | \
-\[d]elete")
-      (pcase (read-char-exclusive)
-	(?s (org-footnote-sort))
-	(?r (org-footnote-renumber-fn:N))
-	(?S (org-footnote-renumber-fn:N)
-	    (org-footnote-sort))
-	(?n (org-footnote-normalize))
-	(?d (org-footnote-delete))
-	(char (error "No such footnote command %c" char))))
-     (t (org-footnote-new)))))
-
-
-(provide 'org-footnote)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-footnote.el ends here
diff --git a/elpa/org-9.1.14/org-footnote.elc b/elpa/org-9.1.14/org-footnote.elc
deleted file mode 100644
index b7fce74..0000000
--- a/elpa/org-9.1.14/org-footnote.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-gnus.el b/elpa/org-9.1.14/org-gnus.el
deleted file mode 100644
index a53b343..0000000
--- a/elpa/org-9.1.14/org-gnus.el
+++ /dev/null
@@ -1,268 +0,0 @@
-;;; org-gnus.el --- Support for Links to Gnus Groups and Messages -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;;         Tassilo Horn <tassilo at member dot fsf dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements links to Gnus groups and messages from within Org.
-;; Org mode loads this module by default - if this is not what you want,
-;; configure the variable `org-modules'.
-
-;;; Code:
-
-(require 'gnus-sum)
-(require 'gnus-util)
-(require 'nnheader)
-(require 'nnir)
-(require 'org)
-
-
-;;; Declare external functions and variables
-
-(declare-function gnus-activate-group "gnus-start" (group &optional scan dont-check method dont-sub-check))
-(declare-function gnus-find-method-for-group "gnus" (group &optional info))
-(declare-function gnus-article-show-summary "gnus-art" ())
-(declare-function gnus-group-group-name "gnus-group")
-(declare-function gnus-group-jump-to-group "gnus-group" (group &optional prompt))
-(declare-function gnus-group-read-group "gnus-group" (&optional all no-article group select-articles))
-(declare-function message-fetch-field "message" (header &optional not-all))
-(declare-function message-generate-headers "message" (headers))
-(declare-function message-narrow-to-headers "message")
-(declare-function message-tokenize-header "message" (header &optional separator))
-(declare-function message-unquote-tokens "message" (elems))
-(declare-function nnvirtual-map-article "nnvirtual" (article))
-
-(defvar gnus-newsgroup-name)
-(defvar gnus-summary-buffer)
-(defvar gnus-other-frame-object)
-
-
-;;; Customization variables
-
-(defcustom org-gnus-prefer-web-links nil
-  "If non-nil, `org-store-link' creates web links to Google groups or Gmane.
-\\<org-mode-map>When nil, Gnus will be used for such links.
-Using a prefix argument to the command `\\[org-store-link]' (`org-store-link')
-negates this setting for the duration of the command."
-  :group 'org-link-store
-  :type 'boolean)
-
-(defcustom org-gnus-no-server nil
-  "Should Gnus be started using `gnus-no-server'?"
-  :group 'org-gnus
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-
-;;; Install the link type
-
-(org-link-set-parameters "gnus"
-			 :follow #'org-gnus-open
-			 :store #'org-gnus-store-link)
-
-;;; Implementation
-
-(defun org-gnus-group-link (group)
-  "Create a link to the Gnus group GROUP.
-If GROUP is a newsgroup and `org-gnus-prefer-web-links' is
-non-nil, create a link to groups.google.com or gmane.org.
-Otherwise create a link to the group inside Gnus.
-
-If `org-store-link' was called with a prefix arg the meaning of
-`org-gnus-prefer-web-links' is reversed."
-  (let ((unprefixed-group (replace-regexp-in-string "^[^:]+:" "" group)))
-    (if (and (string-prefix-p "nntp" group) ;; Only for nntp groups
-	     (org-xor current-prefix-arg
-		      org-gnus-prefer-web-links))
-	(concat (if (string-match "gmane" unprefixed-group)
-		    "http://news.gmane.org/"
-		  "http://groups.google.com/group/")
-		unprefixed-group)
-      (concat "gnus:" group))))
-
-(defun org-gnus-article-link (group newsgroups message-id x-no-archive)
-  "Create a link to a Gnus article.
-The article is specified by its MESSAGE-ID.  Additional
-parameters are the Gnus GROUP, the NEWSGROUPS the article was
-posted to and the X-NO-ARCHIVE header value of that article.
-
-If GROUP is a newsgroup and `org-gnus-prefer-web-links' is
-non-nil, create a link to groups.google.com or gmane.org.
-Otherwise create a link to the article inside Gnus.
-
-If `org-store-link' was called with a prefix arg the meaning of
-`org-gnus-prefer-web-links' is reversed."
-  (if (and (org-xor current-prefix-arg org-gnus-prefer-web-links)
-	   newsgroups	  ;; Make web links only for nntp groups
-	   (not x-no-archive)) ;; and if X-No-Archive isn't set.
-      (format (if (string-match "gmane\\." newsgroups)
-		  "http://mid.gmane.org/%s"
-		"http://groups.google.com/groups/search?as_umsgid=%s")
-	      (org-fixup-message-id-for-http message-id))
-    (concat "gnus:" group "#" message-id)))
-
-(defun org-gnus-store-link ()
-  "Store a link to a Gnus folder or message."
-  (pcase major-mode
-    (`gnus-group-mode
-     (let ((group (gnus-group-group-name)))
-       (when group
-	 (org-store-link-props :type "gnus" :group group)
-	 (let ((description (org-gnus-group-link group)))
-	   (org-add-link-props :link description :description description)
-	   description))))
-    ((or `gnus-summary-mode `gnus-article-mode)
-     (let* ((group
-	     (pcase (gnus-find-method-for-group gnus-newsgroup-name)
-	       (`(nnvirtual . ,_)
-		(save-excursion
-		  (car (nnvirtual-map-article (gnus-summary-article-number)))))
-	       (`(nnir . ,_)
-		(save-excursion
-		  (nnir-article-group (gnus-summary-article-number))))
-	       (_ gnus-newsgroup-name)))
-	    (header (if (eq major-mode 'gnus-article-mode)
-			;; When in an article, first move to summary
-			;; buffer, with point on the summary of the
-			;; current article before extracting headers.
-			(save-window-excursion
-			  (save-excursion
-			    (gnus-article-show-summary)
-			    (gnus-summary-article-header)))
-		      (gnus-summary-article-header)))
-	    (from (mail-header-from header))
-	    (message-id (org-unbracket-string "<" ">" (mail-header-id header)))
-	    (date (org-trim (mail-header-date header)))
-	    ;; Remove text properties of subject string to avoid Emacs
-	    ;; bug #3506.
-	    (subject (org-no-properties
-		      (copy-sequence (mail-header-subject header))))
-	    (to (cdr (assq 'To (mail-header-extra header))))
-	    newsgroups x-no-archive)
-       ;; Fetching an article is an expensive operation; newsgroup and
-       ;; x-no-archive are only needed for web links.
-       (when (org-xor current-prefix-arg org-gnus-prefer-web-links)
-	 ;; Make sure the original article buffer is up-to-date.
-	 (save-window-excursion (gnus-summary-select-article))
-	 (setq to (or to (gnus-fetch-original-field "To")))
-	 (setq newsgroups (gnus-fetch-original-field "Newsgroups"))
-	 (setq x-no-archive (gnus-fetch-original-field "x-no-archive")))
-       (org-store-link-props :type "gnus" :from from :date date :subject subject
-			     :message-id message-id :group group :to to)
-       (let ((link (org-gnus-article-link
-		    group newsgroups message-id x-no-archive))
-	     (description (org-email-link-description)))
-	 (org-add-link-props :link link :description description)
-	 link)))
-    (`message-mode
-     (setq org-store-link-plist nil)	;reset
-     (save-excursion
-       (save-restriction
-	 (message-narrow-to-headers)
-	 (unless (message-fetch-field "Message-ID")
-	   (message-generate-headers '(Message-ID)))
-	 (goto-char (point-min))
-	 (re-search-forward "^Message-ID:" nil t)
-	 (put-text-property (line-beginning-position) (line-end-position)
-			    'message-deletable nil)
-	 (let ((gcc (org-last (message-unquote-tokens
-			       (message-tokenize-header
-				(mail-fetch-field "gcc" nil t) " ,"))))
-	       (id (org-unbracket-string "<" ">"
-					 (mail-fetch-field "Message-ID")))
-	       (to (mail-fetch-field "To"))
-	       (from (mail-fetch-field "From"))
-	       (subject (mail-fetch-field "Subject"))
-	       newsgroup xarchive)	;those are always nil for gcc
-	   (unless gcc (error "Can not create link: No Gcc header found"))
-	   (org-store-link-props :type "gnus" :from from :subject subject
-				 :message-id id :group gcc :to to)
-	   (let ((link (org-gnus-article-link gcc newsgroup id xarchive))
-		 (description (org-email-link-description)))
-	     (org-add-link-props :link link :description description)
-	     link)))))))
-
-(defun org-gnus-open-nntp (path)
-  "Follow the nntp: link specified by PATH."
-  (let* ((spec (split-string path "/"))
-	 (server (split-string (nth 2 spec) "@"))
-	 (group (nth 3 spec))
-	 (article (nth 4 spec)))
-    (org-gnus-follow-link
-     (format "nntp+%s:%s" (or (cdr server) (car server)) group)
-     article)))
-
-(defun org-gnus-open (path)
-  "Follow the Gnus message or folder link specified by PATH."
-  (unless (string-match "\\`\\([^#]+\\)\\(#\\(.*\\)\\)?" path)
-    (error "Error in Gnus link %S" path))
-  (let ((group (match-string-no-properties 1 path))
-	(article (match-string-no-properties 3 path)))
-    (org-gnus-follow-link group article)))
-
-(defun org-gnus-follow-link (&optional group article)
-  "Follow a Gnus link to GROUP and ARTICLE."
-  (require 'gnus)
-  (funcall (cdr (assq 'gnus org-link-frame-setup)))
-  (when gnus-other-frame-object (select-frame gnus-other-frame-object))
-  (let ((group (org-no-properties group))
-	(article (org-no-properties article)))
-    (cond
-     ((and group article)
-      (gnus-activate-group group)
-      (condition-case nil
-	  (let ((msg "Couldn't follow Gnus link.  Summary couldn't be opened."))
-	    (pcase (gnus-find-method-for-group group)
-	      (`(nndoc . ,_)
-	       (if (gnus-group-read-group t nil group)
-		   (gnus-summary-goto-article article nil t)
-		 (message msg)))
-	      (_
-	       (let ((articles 1)
-		     group-opened)
-		 (while (and (not group-opened)
-			     ;; Stop on integer overflows.
-			     (> articles 0))
-		   (setq group-opened (gnus-group-read-group articles t group))
-		   (setq articles (if (< articles 16)
-				      (1+ articles)
-				    (* articles 2))))
-		 (if group-opened
-		     (gnus-summary-goto-article article nil t)
-		   (message msg))))))
-	(quit
-	 (message "Couldn't follow Gnus link.  The linked group is empty."))))
-     (group (gnus-group-jump-to-group group)))))
-
-(defun org-gnus-no-new-news ()
-  "Like `\\[gnus]' but doesn't check for new news."
-  (cond ((gnus-alive-p) nil)
-	(org-gnus-no-server (gnus-no-server))
-	(t (gnus))))
-
-(provide 'org-gnus)
-
-
-;;; org-gnus.el ends here
diff --git a/elpa/org-9.1.14/org-gnus.elc b/elpa/org-9.1.14/org-gnus.elc
deleted file mode 100644
index 490ddbe..0000000
--- a/elpa/org-9.1.14/org-gnus.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-habit.el b/elpa/org-9.1.14/org-habit.el
deleted file mode 100644
index 375714e..0000000
--- a/elpa/org-9.1.14/org-habit.el
+++ /dev/null
@@ -1,442 +0,0 @@
-;;; org-habit.el --- The habit tracking code for Org -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-
-;; Author: John Wiegley <johnw at gnu dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the habit tracking code for Org mode
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org)
-(require 'org-agenda)
-
-(defgroup org-habit nil
-  "Options concerning habit tracking in Org mode."
-  :tag "Org Habit"
-  :group 'org-progress)
-
-(defcustom org-habit-graph-column 40
-  "The absolute column at which to insert habit consistency graphs.
-Note that consistency graphs will overwrite anything else in the buffer."
-  :group 'org-habit
-  :type 'integer)
-
-(defcustom org-habit-preceding-days 21
-  "Number of days before today to appear in consistency graphs."
-  :group 'org-habit
-  :type 'integer)
-
-(defcustom org-habit-following-days 7
-  "Number of days after today to appear in consistency graphs."
-  :group 'org-habit
-  :type 'integer)
-
-(defcustom org-habit-show-habits t
-  "If non-nil, show habits in agenda buffers."
-  :group 'org-habit
-  :type 'boolean)
-
-(defcustom org-habit-show-habits-only-for-today t
-  "If non-nil, only show habits on today's agenda, and not for future days.
-Note that even when shown for future days, the graph is always
-relative to the current effective date."
-  :group 'org-habit
-  :type 'boolean)
-
-(defcustom org-habit-show-all-today nil
-  "If non-nil, will show the consistency graph of all habits on
-today's agenda, even if they are not scheduled."
-  :group 'org-habit
-  :type 'boolean)
-
-(defcustom org-habit-today-glyph ?!
-  "Glyph character used to identify today."
-  :group 'org-habit
-  :version "24.1"
-  :type 'character)
-
-(defcustom org-habit-completed-glyph ?*
-  "Glyph character used to show completed days on which a task was done."
-  :group 'org-habit
-  :version "24.1"
-  :type 'character)
-
-(defcustom org-habit-show-done-always-green nil
-  "Non-nil means DONE days will always be green in the consistency graph.
-It will be green even if it was done after the deadline."
-  :group 'org-habit
-  :type 'boolean)
-
-(defface org-habit-clear-face
-  '((((background light)) (:background "#8270f9"))
-    (((background dark)) (:background "blue")))
-  "Face for days on which a task shouldn't be done yet."
-  :group 'org-habit
-  :group 'org-faces)
-(defface org-habit-clear-future-face
-  '((((background light)) (:background "#d6e4fc"))
-    (((background dark)) (:background "midnightblue")))
-  "Face for future days on which a task shouldn't be done yet."
-  :group 'org-habit
-  :group 'org-faces)
-
-(defface org-habit-ready-face
-  '((((background light)) (:background "#4df946"))
-    (((background dark)) (:background "forestgreen")))
-  "Face for days on which a task should start to be done."
-  :group 'org-habit
-  :group 'org-faces)
-(defface org-habit-ready-future-face
-  '((((background light)) (:background "#acfca9"))
-    (((background dark)) (:background "darkgreen")))
-  "Face for days on which a task should start to be done."
-  :group 'org-habit
-  :group 'org-faces)
-
-(defface org-habit-alert-face
-  '((((background light)) (:background "#f5f946"))
-    (((background dark)) (:background "gold")))
-  "Face for days on which a task is due."
-  :group 'org-habit
-  :group 'org-faces)
-(defface org-habit-alert-future-face
-  '((((background light)) (:background "#fafca9"))
-    (((background dark)) (:background "darkgoldenrod")))
-  "Face for days on which a task is due."
-  :group 'org-habit
-  :group 'org-faces)
-
-(defface org-habit-overdue-face
-  '((((background light)) (:background "#f9372d"))
-    (((background dark)) (:background "firebrick")))
-  "Face for days on which a task is overdue."
-  :group 'org-habit
-  :group 'org-faces)
-(defface org-habit-overdue-future-face
-  '((((background light)) (:background "#fc9590"))
-    (((background dark)) (:background "darkred")))
-  "Face for days on which a task is overdue."
-  :group 'org-habit
-  :group 'org-faces)
-
-(defun org-habit-duration-to-days (ts)
-  (if (string-match "\\([0-9]+\\)\\([dwmy]\\)" ts)
-      ;; lead time is specified.
-      (floor (* (string-to-number (match-string 1 ts))
-		(cdr (assoc (match-string 2 ts)
-			    '(("d" . 1)    ("w" . 7)
-			      ("m" . 30.4) ("y" . 365.25))))))
-    (error "Invalid duration string: %s" ts)))
-
-(defun org-is-habit-p (&optional pom)
-  "Is the task at POM or point a habit?"
-  (string= "habit" (org-entry-get (or pom (point)) "STYLE")))
-
-(defun org-habit-parse-todo (&optional pom)
-  "Parse the TODO surrounding point for its habit-related data.
-Returns a list with the following elements:
-
-  0: Scheduled date for the habit (may be in the past)
-  1: \".+\"-style repeater for the schedule, in days
-  2: Optional deadline (nil if not present)
-  3: If deadline, the repeater for the deadline, otherwise nil
-  4: A list of all the past dates this todo was mark closed
-  5: Repeater type as a string
-
-This list represents a \"habit\" for the rest of this module."
-  (save-excursion
-    (if pom (goto-char pom))
-    (cl-assert (org-is-habit-p (point)))
-    (let* ((scheduled (org-get-scheduled-time (point)))
-	   (scheduled-repeat (org-get-repeat (org-entry-get (point) "SCHEDULED")))
-	   (end (org-entry-end-position))
-	   (habit-entry (org-no-properties (nth 4 (org-heading-components))))
-	   closed-dates deadline dr-days sr-days sr-type)
-      (if scheduled
-	  (setq scheduled (time-to-days scheduled))
-	(error "Habit %s has no scheduled date" habit-entry))
-      (unless scheduled-repeat
-	(error
-	 "Habit `%s' has no scheduled repeat period or has an incorrect one"
-	 habit-entry))
-      (setq sr-days (org-habit-duration-to-days scheduled-repeat)
-	    sr-type (progn (string-match "[\\.+]?\\+" scheduled-repeat)
-			   (match-string-no-properties 0 scheduled-repeat)))
-      (unless (> sr-days 0)
-	(error "Habit %s scheduled repeat period is less than 1d" habit-entry))
-      (when (string-match "/\\([0-9]+[dwmy]\\)" scheduled-repeat)
-	(setq dr-days (org-habit-duration-to-days
-		       (match-string-no-properties 1 scheduled-repeat)))
-	(if (<= dr-days sr-days)
-	    (error "Habit %s deadline repeat period is less than or equal to scheduled (%s)"
-		   habit-entry scheduled-repeat))
-	(setq deadline (+ scheduled (- dr-days sr-days))))
-      (org-back-to-heading t)
-      (let* ((maxdays (+ org-habit-preceding-days org-habit-following-days))
-	     (reversed org-log-states-order-reversed)
-	     (search (if reversed 're-search-forward 're-search-backward))
-	     (limit (if reversed end (point)))
-	     (count 0)
-	     (re (format
-		  "^[ \t]*-[ \t]+\\(?:State \"%s\".*%s%s\\)"
-		  (regexp-opt org-done-keywords)
-		  org-ts-regexp-inactive
-		  (let ((value (cdr (assq 'done org-log-note-headings))))
-		    (if (not value) ""
-		      (concat "\\|"
-			      (org-replace-escapes
-			       (regexp-quote value)
-			       `(("%d" . ,org-ts-regexp-inactive)
-				 ("%D" . ,org-ts-regexp)
-				 ("%s" . "\"\\S-+\"")
-				 ("%S" . "\"\\S-+\"")
-				 ("%t" . ,org-ts-regexp-inactive)
-				 ("%T" . ,org-ts-regexp)
-				 ("%u" . ".*?")
-				 ("%U" . ".*?")))))))))
-	(unless reversed (goto-char end))
-	(while (and (< count maxdays) (funcall search re limit t))
-	  (push (time-to-days
-		 (org-time-string-to-time
-		  (or (match-string-no-properties 1)
-		      (match-string-no-properties 2))))
-		closed-dates)
-	  (setq count (1+ count))))
-      (list scheduled sr-days deadline dr-days closed-dates sr-type))))
-
-(defsubst org-habit-scheduled (habit)
-  (nth 0 habit))
-(defsubst org-habit-scheduled-repeat (habit)
-  (nth 1 habit))
-(defsubst org-habit-deadline (habit)
-  (let ((deadline (nth 2 habit)))
-    (or deadline
-	(if (nth 3 habit)
-	    (+ (org-habit-scheduled habit)
-	       (1- (org-habit-scheduled-repeat habit)))
-	  (org-habit-scheduled habit)))))
-(defsubst org-habit-deadline-repeat (habit)
-  (or (nth 3 habit)
-      (org-habit-scheduled-repeat habit)))
-(defsubst org-habit-done-dates (habit)
-  (nth 4 habit))
-(defsubst org-habit-repeat-type (habit)
-  (nth 5 habit))
-
-(defsubst org-habit-get-priority (habit &optional moment)
-  "Determine the relative priority of a habit.
-This must take into account not just urgency, but consistency as well."
-  (let ((pri 1000)
-	(now (if moment (time-to-days moment) (org-today)))
-	(scheduled (org-habit-scheduled habit))
-	(deadline (org-habit-deadline habit)))
-    ;; add 10 for every day past the scheduled date, and subtract for every
-    ;; day before it
-    (setq pri (+ pri (* (- now scheduled) 10)))
-    ;; add 50 if the deadline is today
-    (if (and (/= scheduled deadline)
-	     (= now deadline))
-	(setq pri (+ pri 50)))
-    ;; add 100 for every day beyond the deadline date, and subtract 10 for
-    ;; every day before it
-    (let ((slip (- now (1- deadline))))
-      (if (> slip 0)
-	  (setq pri (+ pri (* slip 100)))
-	(setq pri (+ pri (* slip 10)))))
-    pri))
-
-(defun org-habit-get-faces (habit &optional now-days scheduled-days donep)
-  "Return faces for HABIT relative to NOW-DAYS and SCHEDULED-DAYS.
-NOW-DAYS defaults to the current time's days-past-the-epoch if nil.
-SCHEDULED-DAYS defaults to the habit's actual scheduled days if nil.
-
-Habits are assigned colors on the following basis:
-  Blue      Task is before the scheduled date.
-  Green     Task is on or after scheduled date, but before the
-	    end of the schedule's repeat period.
-  Yellow    If the task has a deadline, then it is after schedule's
-	    repeat period, but before the deadline.
-  Orange    The task has reached the deadline day, or if there is
-	    no deadline, the end of the schedule's repeat period.
-  Red       The task has gone beyond the deadline day or the
-	    schedule's repeat period."
-  (let* ((scheduled (or scheduled-days (org-habit-scheduled habit)))
-	 (s-repeat (org-habit-scheduled-repeat habit))
-	 (d-repeat (org-habit-deadline-repeat habit))
-	 (deadline (if scheduled-days
-		       (+ scheduled-days (- d-repeat s-repeat))
-		     (org-habit-deadline habit)))
-	 (m-days (or now-days (time-to-days (current-time)))))
-    (cond
-     ((< m-days scheduled)
-      '(org-habit-clear-face . org-habit-clear-future-face))
-     ((< m-days deadline)
-      '(org-habit-ready-face . org-habit-ready-future-face))
-     ((= m-days deadline)
-      (if donep
-	  '(org-habit-ready-face . org-habit-ready-future-face)
-	'(org-habit-alert-face . org-habit-alert-future-face)))
-     ((and org-habit-show-done-always-green donep)
-      '(org-habit-ready-face . org-habit-ready-future-face))
-     (t '(org-habit-overdue-face . org-habit-overdue-future-face)))))
-
-(defun org-habit-build-graph (habit starting current ending)
-  "Build a graph for the given HABIT, from STARTING to ENDING.
-CURRENT gives the current time between STARTING and ENDING, for
-the purpose of drawing the graph.  It need not be the actual
-current time."
-  (let* ((all-done-dates (sort (org-habit-done-dates habit) #'<))
-	 (done-dates all-done-dates)
-	 (scheduled (org-habit-scheduled habit))
-	 (s-repeat (org-habit-scheduled-repeat habit))
-	 (start (time-to-days starting))
-	 (now (time-to-days current))
-	 (end (time-to-days ending))
-	 (graph (make-string (1+ (- end start)) ?\s))
-	 (index 0)
-	 last-done-date)
-    (while (and done-dates (< (car done-dates) start))
-      (setq last-done-date (car done-dates)
-	    done-dates (cdr done-dates)))
-    (while (< start end)
-      (let* ((in-the-past-p (< start now))
-	     (todayp (= start now))
-	     (donep (and done-dates (= start (car done-dates))))
-	     (faces
-	      (if (and in-the-past-p
-		       (not last-done-date)
-		       (not (< scheduled now)))
-		  '(org-habit-clear-face . org-habit-clear-future-face)
-		(org-habit-get-faces
-		 habit start
-		 (and in-the-past-p
-		      last-done-date
-		      ;; Compute scheduled time for habit at the time
-		      ;; START was current.
-		      (let ((type (org-habit-repeat-type habit)))
-			(cond
-			 ;; At the last done date, use current
-			 ;; scheduling in all cases.
-			 ((null done-dates) scheduled)
-			 ((equal type ".+") (+ last-done-date s-repeat))
-			 ((equal type "+")
-			  ;; Since LAST-DONE-DATE, each done mark
-			  ;; shifted scheduled date by S-REPEAT.
-			  (- scheduled (* (length done-dates) s-repeat)))
-			 (t
-			  ;; Compute the scheduled time after the
-			  ;; first repeat.  This is the closest time
-			  ;; past FIRST-DONE which can reach SCHEDULED
-			  ;; by a number of S-REPEAT hops.
-			  ;;
-			  ;; Then, play TODO state change history from
-			  ;; the beginning in order to find current
-			  ;; scheduled time.
-			  (let* ((first-done (car all-done-dates))
-				 (s (let ((shift (mod (- scheduled first-done)
-						      s-repeat)))
-				      (+ (if (= shift 0) s-repeat shift)
-					 first-done))))
-			    (if (= first-done last-done-date) s
-			      (catch :exit
-				(dolist (done (cdr all-done-dates) s)
-				  ;; Each repeat shifts S by any
-				  ;; number of S-REPEAT hops it takes
-				  ;; to get past DONE, with a minimum
-				  ;; of one hop.
-				  (cl-incf s (* (1+ (/ (max (- done s) 0)
-						       s-repeat))
-						s-repeat))
-				  (when (= done last-done-date)
-				    (throw :exit s))))))))))
-		 donep)))
-	     markedp face)
-	(if donep
-	    (let ((done-time (time-add
-			      starting
-			      (days-to-time
-			       (- start (time-to-days starting))))))
-
-	      (aset graph index org-habit-completed-glyph)
-	      (setq markedp t)
-	      (put-text-property
-	       index (1+ index) 'help-echo
-	       (format-time-string (org-time-stamp-format) done-time) graph)
-	      (while (and done-dates
-			  (= start (car done-dates)))
-		(setq last-done-date (car done-dates)
-		      done-dates (cdr done-dates))))
-	  (if todayp
-	      (aset graph index org-habit-today-glyph)))
-	(setq face (if (or in-the-past-p todayp)
-		       (car faces)
-		     (cdr faces)))
-	(if (and in-the-past-p
-		 (not (eq face 'org-habit-overdue-face))
-		 (not markedp))
-	    (setq face (cdr faces)))
-	(put-text-property index (1+ index) 'face face graph))
-      (setq start (1+ start)
-	    index (1+ index)))
-    graph))
-
-(defun org-habit-insert-consistency-graphs (&optional line)
-  "Insert consistency graph for any habitual tasks."
-  (let ((inhibit-read-only t)
-	(buffer-invisibility-spec '(org-link))
-	(moment (time-subtract (current-time)
-			       (list 0 (* 3600 org-extend-today-until) 0))))
-    (save-excursion
-      (goto-char (if line (point-at-bol) (point-min)))
-      (while (not (eobp))
-	(let ((habit (get-text-property (point) 'org-habit-p)))
-	  (when habit
-	    (move-to-column org-habit-graph-column t)
-	    (delete-char (min (+ 1 org-habit-preceding-days
-				 org-habit-following-days)
-			      (- (line-end-position) (point))))
-	    (insert-before-markers
-	     (org-habit-build-graph
-	      habit
-	      (time-subtract moment (days-to-time org-habit-preceding-days))
-	      moment
-	      (time-add moment (days-to-time org-habit-following-days))))))
-	(forward-line)))))
-
-(defun org-habit-toggle-habits ()
-  "Toggle display of habits in an agenda buffer."
-  (interactive)
-  (org-agenda-check-type t 'agenda)
-  (setq org-habit-show-habits (not org-habit-show-habits))
-  (org-agenda-redo)
-  (org-agenda-set-mode-name)
-  (message "Habits turned %s"
-	   (if org-habit-show-habits "on" "off")))
-
-(org-defkey org-agenda-mode-map "K" 'org-habit-toggle-habits)
-
-(provide 'org-habit)
-
-;;; org-habit.el ends here
diff --git a/elpa/org-9.1.14/org-habit.elc b/elpa/org-9.1.14/org-habit.elc
deleted file mode 100644
index 66c4c95..0000000
--- a/elpa/org-9.1.14/org-habit.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-id.el b/elpa/org-9.1.14/org-id.el
deleted file mode 100644
index 26b203f..0000000
--- a/elpa/org-9.1.14/org-id.el
+++ /dev/null
@@ -1,684 +0,0 @@
-;;; org-id.el --- Global identifiers for Org entries -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements globally unique identifiers for Org entries.
-;; Identifiers are stored in the entry as an :ID: property.  Functions
-;; are provided that create and retrieve such identifiers, and that find
-;; entries based on the identifier.
-
-;; Identifiers consist of a prefix (default "Org" given by the variable
-;; `org-id-prefix') and a unique part that can be created by a number
-;; of different methods, see the variable `org-id-method'.
-;; Org has a builtin method that uses a compact encoding of the creation
-;; time of the ID, with microsecond accuracy.  This virtually
-;; guarantees globally unique identifiers, even if several people are
-;; creating IDs at the same time in files that will eventually be used
-;; together.
-;;
-;; By default Org uses UUIDs as global unique identifiers.
-;;
-;; This file defines the following API:
-;;
-;; org-id-get-create
-;;        Create an ID for the entry at point if it does not yet have one.
-;;        Returns the ID (old or new).  This function can be used
-;;        interactively, with prefix argument the creation of a new ID is
-;;        forced, even if there was an old one.
-;;
-;; org-id-get
-;;        Get the ID property of an entry.  Using appropriate arguments
-;;        to the function, it can also create the ID for this entry.
-;;
-;; org-id-goto
-;;        Command to go to a specific ID, this command can be used
-;;        interactively.
-;;
-;; org-id-get-with-outline-path-completion
-;;        Retrieve the ID of an entry, using outline path completion.
-;;        This function can work for multiple files.
-;;
-;; org-id-get-with-outline-drilling
-;;        Retrieve the ID of an entry, using outline path completion.
-;;        This function only works for the current file.
-;;
-;; org-id-find
-;;        Find the location of an entry with specific id.
-;;
-
-;;; Code:
-
-(require 'org)
-
-(declare-function message-make-fqdn "message" ())
-
-;;; Customization
-
-(defgroup org-id nil
-  "Options concerning global entry identifiers in Org mode."
-  :tag "Org ID"
-  :group 'org)
-
-(defcustom org-id-link-to-org-use-id nil
-  "Non-nil means storing a link to an Org file will use entry IDs.
-\\<org-mode-map>\
-
-The variable can have the following values:
-
-t     Create an ID if needed to make a link to the current entry.
-
-create-if-interactive
-      If `org-store-link' is called directly (interactively, as a user
-      command), do create an ID to support the link.  But when doing the
-      job for capture, only use the ID if it already exists.  The
-      purpose of this setting is to avoid proliferation of unwanted
-      IDs, just because you happen to be in an Org file when you
-      call `org-capture' that automatically and preemptively creates a
-      link.  If you do want to get an ID link in a capture template to
-      an entry not having an ID, create it first by explicitly creating
-      a link to it, using `\\[org-store-link]' first.
-
-create-if-interactive-and-no-custom-id
-      Like create-if-interactive, but do not create an ID if there is
-      a CUSTOM_ID property defined in the entry.
-
-use-existing
-      Use existing ID, do not create one.
-
-nil   Never use an ID to make a link, instead link using a text search for
-      the headline text."
-  :group 'org-link-store
-  :group 'org-id
-  :version "24.3"
-  :type '(choice
-	  (const :tag "Create ID to make link" t)
-	  (const :tag "Create if storing link interactively"
-		 create-if-interactive)
-	  (const :tag "Create if storing link interactively and no CUSTOM_ID is present"
-		 create-if-interactive-and-no-custom-id)
-	  (const :tag "Only use existing" use-existing)
-	  (const :tag "Do not use ID to create link" nil)))
-
-(defcustom org-id-uuid-program "uuidgen"
-  "The uuidgen program."
-  :group 'org-id
-  :type 'string)
-
-(defcustom org-id-method 'uuid
-  "The method that should be used to create new IDs.
-
-An ID will consist of the optional prefix specified in `org-id-prefix',
-and a unique part created by the method this variable specifies.
-
-Allowed values are:
-
-org        Org's own internal method, using an encoding of the current time to
-           microsecond accuracy, and optionally the current domain of the
-           computer.  See the variable `org-id-include-domain'.
-
-uuid       Create random (version 4) UUIDs.  If the program defined in
-           `org-id-uuid-program' is available it is used to create the ID.
-           Otherwise an internal functions is used."
-  :group 'org-id
-  :type '(choice
-	  (const :tag "Org's internal method" org)
-	  (const :tag "external: uuidgen" uuid)))
-
-(defcustom org-id-prefix nil
-  "The prefix for IDs.
-
-This may be a string, or it can be nil to indicate that no prefix is required.
-When a string, the string should have no space characters as IDs are expected
-to have no space characters in them."
-  :group 'org-id
-  :type '(choice
-	  (const :tag "No prefix")
-	  (string :tag "Prefix")))
-
-(defcustom org-id-include-domain nil
-  "Non-nil means add the domain name to new IDs.
-This ensures global uniqueness of IDs, and is also suggested by
-RFC 2445 in combination with RFC 822.  This is only relevant if
-`org-id-method' is `org'.  When uuidgen is used, the domain will never
-be added.
-The default is to not use this because we have no really good way to get
-the true domain, and Org entries will normally not be shared with enough
-people to make this necessary."
-  :group 'org-id
-  :type 'boolean)
-
-(defcustom org-id-track-globally t
-  "Non-nil means track IDs through files, so that links work globally.
-This work by maintaining a hash table for IDs and writing this table
-to disk when exiting Emacs.  Because of this, it works best if you use
-a single Emacs process, not many.
-
-When nil, IDs are not tracked.  Links to IDs will still work within
-a buffer, but not if the entry is located in another file.
-IDs can still be used if the entry with the id is in the same file as
-the link."
-  :group 'org-id
-  :type 'boolean)
-
-(defcustom org-id-locations-file (convert-standard-filename
-				  (concat user-emacs-directory ".org-id-locations"))
-  "The file for remembering in which file an ID was defined.
-This variable is only relevant when `org-id-track-globally' is set."
-  :group 'org-id
-  :type 'file)
-
-(defvar org-id-locations nil
-  "List of files with IDs in those files.")
-
-(defvar org-id-files nil
-  "List of files that contain IDs.")
-
-(defcustom org-id-extra-files 'org-agenda-text-search-extra-files
-  "Files to be searched for IDs, besides the agenda files.
-When Org reparses files to remake the list of files and IDs it is tracking,
-it will normally scan the agenda files, the archives related to agenda files,
-any files that are listed as ID containing in the current register, and
-any Org file currently visited by Emacs.
-You can list additional files here.
-This variable is only relevant when `org-id-track-globally' is set."
-  :group 'org-id
-  :type
-  '(choice
-    (symbol :tag "Variable")
-    (repeat :tag "List of files"
-	    (file))))
-
-(defcustom org-id-search-archives t
-  "Non-nil means search also the archive files of agenda files for entries.
-This is a possibility to reduce overhead, but it means that entries moved
-to the archives can no longer be found by ID.
-This variable is only relevant when `org-id-track-globally' is set."
-  :group 'org-id
-  :type 'boolean)
-
-;;; The API functions
-
-;;;###autoload
-(defun org-id-get-create (&optional force)
-  "Create an ID for the current entry and return it.
-If the entry already has an ID, just return it.
-With optional argument FORCE, force the creation of a new ID."
-  (interactive "P")
-  (when force
-    (org-entry-put (point) "ID" nil))
-  (org-id-get (point) 'create))
-
-;;;###autoload
-(defun org-id-copy ()
-  "Copy the ID of the entry at point to the kill ring.
-Create an ID if necessary."
-  (interactive)
-  (org-kill-new (org-id-get nil 'create)))
-
-;;;###autoload
-(defun org-id-get (&optional pom create prefix)
-  "Get the ID property of the entry at point-or-marker POM.
-If POM is nil, refer to the entry at point.
-If the entry does not have an ID, the function returns nil.
-However, when CREATE is non nil, create an ID if none is present already.
-PREFIX will be passed through to `org-id-new'.
-In any case, the ID of the entry is returned."
-  (org-with-point-at pom
-    (let ((id (org-entry-get nil "ID")))
-      (cond
-       ((and id (stringp id) (string-match "\\S-" id))
-	id)
-       (create
-	(setq id (org-id-new prefix))
-	(org-entry-put pom "ID" id)
-	(org-id-add-location id (buffer-file-name (buffer-base-buffer)))
-	id)))))
-
-;;;###autoload
-(defun org-id-get-with-outline-path-completion (&optional targets)
-  "Use `outline-path-completion' to retrieve the ID of an entry.
-TARGETS may be a setting for `org-refile-targets' to define
-eligible headlines.  When omitted, all headlines in the current
-file are eligible.  This function returns the ID of the entry.
-If necessary, the ID is created."
-  (let* ((org-refile-targets (or targets '((nil . (:maxlevel . 10)))))
-	 (org-refile-use-outline-path
-	  (if (caar org-refile-targets) 'file t))
-	 (org-refile-target-verify-function nil)
-	 (spos (org-refile-get-location "Entry"))
-	 (pom (and spos (move-marker (make-marker) (nth 3 spos)
-				     (get-file-buffer (nth 1 spos))))))
-    (prog1 (org-id-get pom 'create)
-      (move-marker pom nil))))
-
-;;;###autoload
-(defun org-id-get-with-outline-drilling ()
-  "Use an outline-cycling interface to retrieve the ID of an entry.
-This only finds entries in the current buffer, using `org-get-location'.
-It returns the ID of the entry.  If necessary, the ID is created."
-  (let* ((spos (org-get-location (current-buffer) org-goto-help))
-	 (pom (and spos (move-marker (make-marker) (car spos)))))
-    (prog1 (org-id-get pom 'create)
-      (move-marker pom nil))))
-
-;;;###autoload
-(defun org-id-goto (id)
-  "Switch to the buffer containing the entry with id ID.
-Move the cursor to that entry in that buffer."
-  (interactive "sID: ")
-  (let ((m (org-id-find id 'marker)))
-    (unless m
-      (error "Cannot find entry with ID \"%s\"" id))
-    (pop-to-buffer-same-window (marker-buffer m))
-    (goto-char m)
-    (move-marker m nil)
-    (org-show-context)))
-
-;;;###autoload
-(defun org-id-find (id &optional markerp)
-  "Return the location of the entry with the id ID.
-The return value is a cons cell (file-name . position), or nil
-if there is no entry with that ID.
-With optional argument MARKERP, return the position as a new marker."
-  (cond
-   ((symbolp id) (setq id (symbol-name id)))
-   ((numberp id) (setq id (number-to-string id))))
-  (let ((file (org-id-find-id-file id))
-	org-agenda-new-buffers where)
-    (when file
-      (setq where (org-id-find-id-in-file id file markerp)))
-    (unless where
-      (org-id-update-id-locations nil t)
-      (setq file (org-id-find-id-file id))
-      (when file
-	(setq where (org-id-find-id-in-file id file markerp))))
-    where))
-
-;;; Internal functions
-
-;; Creating new IDs
-
-;;;###autoload
-(defun org-id-new (&optional prefix)
-  "Create a new globally unique ID.
-
-An ID consists of two parts separated by a colon:
-- a prefix
-- a unique part that will be created according to `org-id-method'.
-
-PREFIX can specify the prefix, the default is given by the variable
-`org-id-prefix'.  However, if PREFIX is the symbol `none', don't use any
-prefix even if `org-id-prefix' specifies one.
-
-So a typical ID could look like \"Org:4nd91V40HI\"."
-  (let* ((prefix (if (eq prefix 'none)
-		     ""
-		   (concat (or prefix org-id-prefix) ":")))
-	 unique)
-    (if (equal prefix ":") (setq prefix ""))
-    (cond
-     ((memq org-id-method '(uuidgen uuid))
-      (setq unique (org-trim (shell-command-to-string org-id-uuid-program)))
-      (unless (org-uuidgen-p unique)
-	(setq unique (org-id-uuid))))
-     ((eq org-id-method 'org)
-      (let* ((etime (org-reverse-string (org-id-time-to-b36)))
-	     (postfix (if org-id-include-domain
-			  (progn
-			    (require 'message)
-			    (concat "@" (message-make-fqdn))))))
-	(setq unique (concat etime postfix))))
-     (t (error "Invalid `org-id-method'")))
-    (concat prefix unique)))
-
-(defun org-id-uuid ()
-  "Return string with random (version 4) UUID."
-  (let ((rnd (md5 (format "%s%s%s%s%s%s%s"
-			  (random)
-			  (current-time)
-			  (user-uid)
-			  (emacs-pid)
-			  (user-full-name)
-			  user-mail-address
-			  (recent-keys)))))
-    (format "%s-%s-4%s-%s%s-%s"
-	    (substring rnd 0 8)
-	    (substring rnd 8 12)
-	    (substring rnd 13 16)
-	    (format "%x"
-		    (logior
-		     #b10000000
-		     (logand
-		      #b10111111
-		      (string-to-number
-		       (substring rnd 16 18) 16))))
-	    (substring rnd 18 20)
-	    (substring rnd 20 32))))
-
-(defun org-id-int-to-b36-one-digit (i)
-  "Turn an integer between 0 and 61 into a single character 0..9, A..Z, a..z."
-  (cond
-   ((< i 10) (+ ?0 i))
-   ((< i 36) (+ ?a i -10))
-   (t (error "Larger that 35"))))
-
-(defun org-id-b36-to-int-one-digit (i)
-  "Turn a character 0..9, A..Z, a..z into a number 0..61.
-The input I may be a character, or a single-letter string."
-  (and (stringp i) (setq i (string-to-char i)))
-  (cond
-   ((and (>= i ?0) (<= i ?9)) (- i ?0))
-   ((and (>= i ?a) (<= i ?z)) (+ (- i ?a) 10))
-   (t (error "Invalid b36 letter"))))
-
-(defun org-id-int-to-b36 (i &optional length)
-  "Convert an integer to a base-36 number represented as a string."
-  (let ((s ""))
-    (while (> i 0)
-      (setq s (concat (char-to-string
-		       (org-id-int-to-b36-one-digit (mod i 36))) s)
-	    i (/ i 36)))
-    (setq length (max 1 (or length 1)))
-    (if (< (length s) length)
-	(setq s (concat (make-string (- length (length s)) ?0) s)))
-    s))
-
-(defun org-id-b36-to-int (s)
-  "Convert a base-36 string into the corresponding integer."
-  (let ((r 0))
-    (mapc (lambda (i) (setq r (+ (* r 36) (org-id-b36-to-int-one-digit i))))
-	  s)
-    r))
-
-(defun org-id-time-to-b36 (&optional time)
-  "Encode TIME as a 10-digit string.
-This string holds the time to micro-second accuracy, and can be decoded
-using `org-id-decode'."
-  (setq time (or time (current-time)))
-  (concat (org-id-int-to-b36 (nth 0 time) 4)
-	  (org-id-int-to-b36 (nth 1 time) 4)
-	  (org-id-int-to-b36 (or (nth 2 time) 0) 4)))
-
-(defun org-id-decode (id)
-  "Split ID into the prefix and the time value that was used to create it.
-The return value is (prefix . time) where PREFIX is nil or a string,
-and time is the usual three-integer representation of time."
-  (let (prefix time parts)
-    (setq parts (org-split-string id ":"))
-    (if (= 2 (length parts))
-	(setq prefix (car parts) time (nth 1 parts))
-      (setq prefix nil time (nth 0 parts)))
-    (setq time (org-reverse-string time))
-    (setq time (list (org-id-b36-to-int (substring time 0 4))
-		     (org-id-b36-to-int (substring time 4 8))
-		     (org-id-b36-to-int (substring time 8 12))))
-    (cons prefix time)))
-
-;; Storing ID locations (files)
-
-;;;###autoload
-(defun org-id-update-id-locations (&optional files silent)
-  "Scan relevant files for IDs.
-Store the relation between files and corresponding IDs.
-This will scan all agenda files, all associated archives, and all
-files currently mentioned in `org-id-locations'.
-When FILES is given, scan these files instead."
-  (interactive)
-  (if (not org-id-track-globally)
-      (error "Please turn on `org-id-track-globally' if you want to track IDs")
-    (let* ((org-id-search-archives
-	    (or org-id-search-archives
-		(and (symbolp org-id-extra-files)
-		     (symbol-value org-id-extra-files)
-		     (member 'agenda-archives org-id-extra-files))))
-	   (files
-	    (or files
-		(append
-		 ;; Agenda files and all associated archives
-		 (org-agenda-files t org-id-search-archives)
-		 ;; Explicit extra files
-		 (if (symbolp org-id-extra-files)
-		     (symbol-value org-id-extra-files)
-		   org-id-extra-files)
-		 ;; Files associated with live Org buffers
-		 (delq nil
-		       (mapcar (lambda (b)
-				 (with-current-buffer b
-				   (and (derived-mode-p 'org-mode) (buffer-file-name))))
-			       (buffer-list)))
-		 ;; All files known to have IDs
-		 org-id-files)))
-	   org-agenda-new-buffers
-	   file nfiles tfile ids reg found id seen (ndup 0))
-      (when (member 'agenda-archives files)
-	(setq files (delq 'agenda-archives (copy-sequence files))))
-      (setq nfiles (length files))
-      (while (setq file (pop files))
-	(unless silent
-	  (message "Finding ID locations (%d/%d files): %s"
-		   (- nfiles (length files)) nfiles file))
-	(setq tfile (file-truename file))
-	(when (and (file-exists-p file) (not (member tfile seen)))
-	  (push tfile seen)
-	  (setq ids nil)
-	  (with-current-buffer (org-get-agenda-file-buffer file)
-	    (save-excursion
-	      (save-restriction
-		(widen)
-		(goto-char (point-min))
-		(while (re-search-forward "^[ \t]*:ID:[ \t]+\\(\\S-+\\)[ \t]*$"
-					  nil t)
-		  (setq id (match-string-no-properties 1))
-		  (if (member id found)
-		      (progn
-			(message "Duplicate ID \"%s\", also in file %s"
-				 id (or (car (delq
-					      nil
-					      (mapcar
-					       (lambda (x)
-						 (if (member id (cdr x))
-						     (car x)))
-					       reg)))
-					(buffer-file-name)))
-			(when (= ndup 0)
-			  (ding)
-			  (sit-for 2))
-			(setq ndup (1+ ndup)))
-		    (push id found)
-		    (push id ids)))
-		(push (cons (abbreviate-file-name file) ids) reg))))))
-      (org-release-buffers org-agenda-new-buffers)
-      (setq org-agenda-new-buffers nil)
-      (setq org-id-locations reg)
-      (setq org-id-files (mapcar 'car org-id-locations))
-      (org-id-locations-save) ;; this function can also handle the alist form
-      ;; now convert to a hash
-      (setq org-id-locations (org-id-alist-to-hash org-id-locations))
-      (if (> ndup 0)
-	  (message "WARNING: %d duplicate IDs found, check *Messages* buffer" ndup)
-	(message "%d unique files scanned for IDs" (length org-id-files)))
-      org-id-locations)))
-
-(defun org-id-locations-save ()
-  "Save `org-id-locations' in `org-id-locations-file'."
-  (when (and org-id-track-globally org-id-locations)
-    (let ((out (if (hash-table-p org-id-locations)
-		   (org-id-hash-to-alist org-id-locations)
-		 org-id-locations)))
-      (with-temp-file org-id-locations-file
-	(let ((print-level nil)
-	      (print-length nil))
-	  (print out (current-buffer)))))))
-
-(defun org-id-locations-load ()
-  "Read the data from `org-id-locations-file'."
-  (setq org-id-locations nil)
-  (when org-id-track-globally
-    (with-temp-buffer
-      (condition-case nil
-	  (progn
-	    (insert-file-contents org-id-locations-file)
-	    (setq org-id-locations (read (current-buffer))))
-	(error
-	 (message "Could not read org-id-values from %s.  Setting it to nil."
-		  org-id-locations-file))))
-    (setq org-id-files (mapcar 'car org-id-locations))
-    (setq org-id-locations (org-id-alist-to-hash org-id-locations))))
-
-(defun org-id-add-location (id file)
-  "Add the ID with location FILE to the database of ID locations."
-  ;; Only if global tracking is on, and when the buffer has a file
-  (when (and org-id-track-globally id file)
-    (unless org-id-locations (org-id-locations-load))
-    (puthash id (abbreviate-file-name file) org-id-locations)
-    (add-to-list 'org-id-files (abbreviate-file-name file))))
-
-(unless noninteractive
-  (add-hook 'kill-emacs-hook 'org-id-locations-save))
-
-(defun org-id-hash-to-alist (hash)
-  "Turn an org-id hash into an alist, so that it can be written to a file."
-  (let (res x)
-    (maphash
-     (lambda (k v)
-       (if (setq x (member v res))
-	   (setcdr x (cons k (cdr x)))
-	 (push (list v k) res)))
-     hash)
-    res))
-
-(defun org-id-alist-to-hash (list)
-  "Turn an org-id location list into a hash table."
-  (let ((res (make-hash-table
-	      :test 'equal
-	      :size (apply '+ (mapcar 'length list))))
-	f)
-    (mapc
-     (lambda (x)
-       (setq f (car x))
-       (mapc (lambda (i) (puthash i f res)) (cdr x)))
-     list)
-    res))
-
-(defun org-id-paste-tracker (txt &optional buffer-or-file)
-  "Update any IDs in TXT and assign BUFFER-OR-FILE to them."
-  (when org-id-track-globally
-    (save-match-data
-      (setq buffer-or-file (or buffer-or-file (current-buffer)))
-      (when (bufferp buffer-or-file)
-	(setq buffer-or-file (or (buffer-base-buffer buffer-or-file)
-				 buffer-or-file))
-	(setq buffer-or-file (buffer-file-name buffer-or-file)))
-      (when buffer-or-file
-	(let ((fname (abbreviate-file-name buffer-or-file))
-	      (s 0))
-	  (while (string-match "^[ \t]*:ID:[ \t]+\\([^ \t\n\r]+\\)" txt s)
-	    (setq s (match-end 0))
-	    (org-id-add-location (match-string 1 txt) fname)))))))
-
-;; Finding entries with specified id
-
-;;;###autoload
-(defun org-id-find-id-file (id)
-  "Query the id database for the file in which this ID is located."
-  (unless org-id-locations (org-id-locations-load))
-  (or (and org-id-locations
-	   (hash-table-p org-id-locations)
-	   (gethash id org-id-locations))
-      ;; ball back on current buffer
-      (buffer-file-name (or (buffer-base-buffer (current-buffer))
-			    (current-buffer)))))
-
-(defun org-id-find-id-in-file (id file &optional markerp)
-  "Return the position of the entry ID in FILE.
-If that files does not exist, or if it does not contain this ID,
-return nil.
-The position is returned as a cons cell (file-name . position).  With
-optional argument MARKERP, return the position as a new marker."
-  (let (org-agenda-new-buffers buf pos)
-    (cond
-     ((not file) nil)
-     ((not (file-exists-p file)) nil)
-     (t (with-current-buffer (setq buf (org-get-agenda-file-buffer file))
-	  (setq pos (org-find-entry-with-id id))
-	  (when pos
-	    (if markerp
-		(move-marker (make-marker) pos buf)
-	      (cons file pos))))))))
-
-;; id link type
-
-;; Calling the following function is hard-coded into `org-store-link',
-;; so we do have to add it to `org-store-link-functions'.
-
-;;;###autoload
-(defun org-id-store-link ()
-  "Store a link to the current entry, using its ID."
-  (interactive)
-  (when (and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
-    (let* ((link (concat "id:" (org-id-get-create)))
-	   (case-fold-search nil)
-	   (desc (save-excursion
-		   (org-back-to-heading t)
-		   (or (and (looking-at org-complex-heading-regexp)
-			    (if (match-end 4)
-				(match-string 4)
-			      (match-string 0)))
-		       link))))
-      (org-store-link-props :link link :description desc :type "id")
-      link)))
-
-(defun org-id-open (id)
-  "Go to the entry with id ID."
-  (org-mark-ring-push)
-  (let ((m (org-id-find id 'marker))
-	cmd)
-    (unless m
-      (error "Cannot find entry with ID \"%s\"" id))
-    ;; Use a buffer-switching command in analogy to finding files
-    (setq cmd
-	  (or
-	   (cdr
-	    (assq
-	     (cdr (assq 'file org-link-frame-setup))
-	     '((find-file . switch-to-buffer)
-	       (find-file-other-window . switch-to-buffer-other-window)
-	       (find-file-other-frame . switch-to-buffer-other-frame))))
-	   'switch-to-buffer-other-window))
-    (if (not (equal (current-buffer) (marker-buffer m)))
-	(funcall cmd (marker-buffer m)))
-    (goto-char m)
-    (move-marker m nil)
-    (org-show-context)))
-
-(org-link-set-parameters "id" :follow #'org-id-open)
-
-(provide 'org-id)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-id.el ends here
diff --git a/elpa/org-9.1.14/org-id.elc b/elpa/org-9.1.14/org-id.elc
deleted file mode 100644
index 9f331dc..0000000
--- a/elpa/org-9.1.14/org-id.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-indent.el b/elpa/org-9.1.14/org-indent.el
deleted file mode 100644
index 84bac2a..0000000
--- a/elpa/org-9.1.14/org-indent.el
+++ /dev/null
@@ -1,412 +0,0 @@
-;;; org-indent.el --- Dynamic indentation for Org    -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-;;
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This is an implementation of dynamic virtual indentation.  It works
-;; by adding text properties to a buffer to make sure lines are
-;; indented according to outline structure.
-;;
-;; The process is synchronous, toggled at every buffer modification.
-;; Though, the initialization (indentation of text already in the
-;; buffer), which can take a few seconds in large buffers, happens on
-;; idle time.
-;;
-;;; Code:
-
-(require 'org-macs)
-(require 'org-compat)
-(require 'org)
-
-(require 'cl-lib)
-
-(declare-function org-inlinetask-get-task-level "org-inlinetask" ())
-(declare-function org-inlinetask-in-task-p "org-inlinetask" ())
-(declare-function org-list-item-body-column "org-list" (item))
-(defvar org-inlinetask-show-first-star)
-
-(defgroup org-indent nil
-  "Options concerning dynamic virtual outline indentation."
-  :tag "Org Indent"
-  :group 'org)
-
-(defvar org-indent-inlinetask-first-star (org-add-props "*" '(face org-warning))
-  "First star of inline tasks, with correct face.")
-(defvar org-indent-agent-timer nil
-  "Timer running the initialize agent.")
-(defvar org-indent-agentized-buffers nil
-  "List of buffers watched by the initialize agent.")
-(defvar org-indent-agent-resume-timer nil
-  "Timer to reschedule agent after switching to other idle processes.")
-(defvar org-indent-agent-active-delay '(0 2 0)
-  "Time to run agent before switching to other idle processes.
-Delay used when the buffer to initialize is current.")
-(defvar org-indent-agent-passive-delay '(0 0 400000)
-  "Time to run agent before switching to other idle processes.
-Delay used when the buffer to initialize isn't current.")
-(defvar org-indent-agent-resume-delay '(0 0 100000)
-  "Minimal time for other idle processes before switching back to agent.")
-(defvar org-indent--initial-marker nil
-  "Position of initialization before interrupt.
-This is used locally in each buffer being initialized.")
-(defvar org-hide-leading-stars-before-indent-mode nil
-  "Used locally.")
-(defvar org-indent-modified-headline-flag nil
-  "Non-nil means the last deletion operated on a headline.
-It is modified by `org-indent-notify-modified-headline'.")
-
-
-(defcustom org-indent-boundary-char ?\s
-  "The end of the virtual indentation strings, a single-character string.
-The default is just a space, but if you wish, you can use \"|\" or so.
-This can be useful on a terminal window - under a windowing system,
-it may be prettier to customize the `org-indent' face."
-  :group 'org-indent
-  :type 'character)
-
-(defcustom org-indent-mode-turns-off-org-adapt-indentation t
-  "Non-nil means setting the variable `org-indent-mode' will \
-turn off indentation adaptation.
-For details see the variable `org-adapt-indentation'."
-  :group 'org-indent
-  :type 'boolean)
-
-(defcustom org-indent-mode-turns-on-hiding-stars t
-  "Non-nil means setting the variable `org-indent-mode' will \
-turn on `org-hide-leading-stars'."
-  :group 'org-indent
-  :type 'boolean)
-
-(defcustom org-indent-indentation-per-level 2
-  "Indentation per level in number of characters."
-  :group 'org-indent
-  :type 'integer)
-
-(defface org-indent '((t (:inherit org-hide)))
-  "Face for outline indentation.
-The default is to make it look like whitespace.  But you may find it
-useful to make it ever so slightly different."
-  :group 'org-faces)
-
-(defvar org-indent--text-line-prefixes nil
-  "Vector containing line prefixes strings for regular text.")
-
-(defvar org-indent--heading-line-prefixes nil
-  "Vector containing line prefix strings for headlines.")
-
-(defvar org-indent--inlinetask-line-prefixes nil
-  "Vector containing line prefix strings for inline tasks.")
-
-(defconst org-indent--deepest-level 50
-  "Maximum theoretical headline depth.")
-
-(defun org-indent--compute-prefixes ()
-  "Compute prefix strings for regular text and headlines."
-  (setq org-indent--heading-line-prefixes
-	(make-vector org-indent--deepest-level nil))
-  (setq org-indent--inlinetask-line-prefixes
-	(make-vector org-indent--deepest-level nil))
-  (setq org-indent--text-line-prefixes
-	(make-vector org-indent--deepest-level nil))
-  (dotimes (n org-indent--deepest-level)
-    (let ((indentation (if (<= n 1) 0
-			 (* (1- org-indent-indentation-per-level)
-			    (1- n)))))
-      ;; Headlines line prefixes.
-      (let ((heading-prefix (make-string indentation ?*)))
-	(aset org-indent--heading-line-prefixes
-	      n
-	      (org-add-props heading-prefix nil 'face 'org-indent))
-	;; Inline tasks line prefixes
-	(aset org-indent--inlinetask-line-prefixes
-	      n
-	      (cond ((<= n 1) "")
-		    ((bound-and-true-p org-inlinetask-show-first-star)
-		     (concat org-indent-inlinetask-first-star
-			     (substring heading-prefix 1)))
-		    (t (org-add-props heading-prefix nil 'face 'org-indent)))))
-      ;; Text line prefixes.
-      (aset org-indent--text-line-prefixes
-	    n
-	    (concat (org-add-props (make-string (+ n indentation) ?\s)
-			nil 'face 'org-indent)
-		    (and (> n 0)
-			 (char-to-string org-indent-boundary-char)))))))
-
-(defsubst org-indent-remove-properties (beg end)
-  "Remove indentations between BEG and END."
-  (org-with-silent-modifications
-   (remove-text-properties beg end '(line-prefix nil wrap-prefix nil))))
-
-;;;###autoload
-(define-minor-mode org-indent-mode
-  "When active, indent text according to outline structure.
-
-Internally this works by adding `line-prefix' and `wrap-prefix'
-properties, after each buffer modification, on the modified zone.
-
-The process is synchronous.  Though, initial indentation of
-buffer, which can take a few seconds on large buffers, is done
-during idle time."
-  nil " Ind" nil
-  (cond
-   (org-indent-mode
-    ;; mode was turned on.
-    (setq-local indent-tabs-mode nil)
-    (setq-local org-indent--initial-marker (copy-marker 1))
-    (when org-indent-mode-turns-off-org-adapt-indentation
-      (setq-local org-adapt-indentation nil))
-    (when org-indent-mode-turns-on-hiding-stars
-      (setq-local org-hide-leading-stars-before-indent-mode
-		  org-hide-leading-stars)
-      (setq-local org-hide-leading-stars t))
-    (org-indent--compute-prefixes)
-    (add-hook 'filter-buffer-substring-functions
-	      (lambda (fun start end delete)
-		(org-indent-remove-properties-from-string
-		 (funcall fun start end delete)))
-	      nil t)
-    (add-hook 'after-change-functions 'org-indent-refresh-maybe nil 'local)
-    (add-hook 'before-change-functions
-	      'org-indent-notify-modified-headline nil 'local)
-    (and font-lock-mode (org-restart-font-lock))
-    (org-indent-remove-properties (point-min) (point-max))
-    ;; Submit current buffer to initialize agent.  If it's the first
-    ;; buffer submitted, also start the agent.  Current buffer is
-    ;; pushed in both cases to avoid a race condition.
-    (if org-indent-agentized-buffers
-	(push (current-buffer) org-indent-agentized-buffers)
-      (push (current-buffer) org-indent-agentized-buffers)
-      (setq org-indent-agent-timer
-	    (run-with-idle-timer 0.2 t #'org-indent-initialize-agent))))
-   (t
-    ;; mode was turned off (or we refused to turn it on)
-    (kill-local-variable 'org-adapt-indentation)
-    (setq org-indent-agentized-buffers
-	  (delq (current-buffer) org-indent-agentized-buffers))
-    (when (markerp org-indent--initial-marker)
-      (set-marker org-indent--initial-marker nil))
-    (when (boundp 'org-hide-leading-stars-before-indent-mode)
-      (setq-local org-hide-leading-stars
-		  org-hide-leading-stars-before-indent-mode))
-    (remove-hook 'filter-buffer-substring-functions
-		 (lambda (fun start end delete)
-		   (org-indent-remove-properties-from-string
-		    (funcall fun start end delete))))
-    (remove-hook 'after-change-functions 'org-indent-refresh-maybe 'local)
-    (remove-hook 'before-change-functions
-		 'org-indent-notify-modified-headline 'local)
-    (org-with-wide-buffer
-     (org-indent-remove-properties (point-min) (point-max)))
-    (and font-lock-mode (org-restart-font-lock))
-    (redraw-display))))
-
-(defun org-indent-indent-buffer ()
-  "Add indentation properties to the accessible part of the buffer."
-  (interactive)
-  (if (not (derived-mode-p 'org-mode))
-      (error "Not in Org mode")
-    (message "Setting buffer indentation.  It may take a few seconds...")
-    (org-indent-remove-properties (point-min) (point-max))
-    (org-indent-add-properties (point-min) (point-max))
-    (message "Indentation of buffer set.")))
-
-(defun org-indent-remove-properties-from-string (string)
-  "Remove indentation properties from STRING."
-  (remove-text-properties 0 (length string)
-			  '(line-prefix nil wrap-prefix nil) string)
-  string)
-
-(defun org-indent-initialize-agent ()
-  "Start or resume current buffer initialization.
-Only buffers in `org-indent-agentized-buffers' trigger an action.
-When no more buffer is being watched, the agent suppress itself."
-  (when org-indent-agent-resume-timer
-    (cancel-timer org-indent-agent-resume-timer))
-  (setq org-indent-agentized-buffers
-	(cl-remove-if-not #'buffer-live-p org-indent-agentized-buffers))
-  (cond
-   ;; Job done:  kill agent.
-   ((not org-indent-agentized-buffers) (cancel-timer org-indent-agent-timer))
-   ;; Current buffer is agentized: start/resume initialization
-   ;; somewhat aggressively.
-   ((memq (current-buffer) org-indent-agentized-buffers)
-    (org-indent-initialize-buffer (current-buffer)
-				  org-indent-agent-active-delay))
-   ;; Else, start/resume initialization of the last agentized buffer,
-   ;; softly.
-   (t (org-indent-initialize-buffer (car org-indent-agentized-buffers)
-				    org-indent-agent-passive-delay))))
-
-(defun org-indent-initialize-buffer (buffer delay)
-  "Set virtual indentation for the buffer BUFFER, asynchronously.
-Give hand to other idle processes if it takes longer than DELAY,
-a time value."
-  (with-current-buffer buffer
-    (when org-indent-mode
-      (org-with-wide-buffer
-       (let ((interruptp
-	      ;; Always nil unless interrupted.
-	      (catch 'interrupt
-		(and org-indent--initial-marker
-		     (marker-position org-indent--initial-marker)
-		     (equal (marker-buffer org-indent--initial-marker)
-			    buffer)
-		     (org-indent-add-properties org-indent--initial-marker
-						(point-max)
-						delay)
-		     nil))))
-	 (move-marker org-indent--initial-marker interruptp)
-	 ;; Job is complete: un-agentize buffer.
-	 (unless interruptp
-	   (setq org-indent-agentized-buffers
-		 (delq buffer org-indent-agentized-buffers))))))))
-
-(defun org-indent-set-line-properties (level indentation &optional heading)
-  "Set prefix properties on current line an move to next one.
-
-LEVEL is the current level of heading.  INDENTATION is the
-expected indentation when wrapping line.
-
-When optional argument HEADING is non-nil, assume line is at
-a heading.  Moreover, if is is `inlinetask', the first star will
-have `org-warning' face."
-  (let* ((line (aref (pcase heading
-		       (`nil org-indent--text-line-prefixes)
-		       (`inlinetask org-indent--inlinetask-line-prefixes)
-		       (_ org-indent--heading-line-prefixes))
-		     level))
-	 (wrap
-	  (org-add-props
-	      (concat line
-		      (if heading (concat (make-string level ?*) " ")
-			(make-string indentation ?\s)))
-	      nil 'face 'org-indent)))
-    ;; Add properties down to the next line to indent empty lines.
-    (add-text-properties (line-beginning-position) (line-beginning-position 2)
-			 `(line-prefix ,line wrap-prefix ,wrap)))
-  (forward-line))
-
-(defun org-indent-add-properties (beg end &optional delay)
-  "Add indentation properties between BEG and END.
-
-When DELAY is non-nil, it must be a time value.  In that case,
-the process is asynchronous and can be interrupted, either by
-user request, or after DELAY.  This is done by throwing the
-`interrupt' tag along with the buffer position where the process
-stopped."
-  (save-match-data
-    (org-with-wide-buffer
-     (goto-char beg)
-     (beginning-of-line)
-     ;; Initialize prefix at BEG, according to current entry's level.
-     (let* ((case-fold-search t)
-	    (limited-re (org-get-limited-outline-regexp))
-	    (level (or (org-current-level) 0))
-	    (time-limit (and delay (time-add (current-time) delay))))
-       ;; For each line, set `line-prefix' and `wrap-prefix'
-       ;; properties depending on the type of line (headline, inline
-       ;; task, item or other).
-       (org-with-silent-modifications
-	(while (and (<= (point) end) (not (eobp)))
-	  (cond
-	   ;; When in asynchronous mode, check if interrupt is
-	   ;; required.
-	   ((and delay (input-pending-p)) (throw 'interrupt (point)))
-	   ;; In asynchronous mode, take a break of
-	   ;; `org-indent-agent-resume-delay' every DELAY to avoid
-	   ;; blocking any other idle timer or process output.
-	   ((and delay (time-less-p time-limit (current-time)))
-	    (setq org-indent-agent-resume-timer
-		  (run-with-idle-timer
-		   (time-add (current-idle-time) org-indent-agent-resume-delay)
-		   nil #'org-indent-initialize-agent))
-	    (throw 'interrupt (point)))
-	   ;; Headline or inline task.
-	   ((looking-at org-outline-regexp)
-	    (let* ((nstars (- (match-end 0) (match-beginning 0) 1))
-		   (type (or (looking-at-p limited-re) 'inlinetask)))
-	      (org-indent-set-line-properties nstars 0 type)
-	      ;; At an headline, define new value for LEVEL.
-	      (unless (eq type 'inlinetask) (setq level nstars))))
-	   ;; List item: `wrap-prefix' is set where body starts.
-	   ((org-at-item-p)
-	    (org-indent-set-line-properties
-	     level (org-list-item-body-column (point))))
-	   ;; Regular line.
-	   (t
-	    (org-indent-set-line-properties level (org-get-indentation))))))))))
-
-(defun org-indent-notify-modified-headline (beg end)
-  "Set `org-indent-modified-headline-flag' depending on context.
-
-BEG and END are the positions of the beginning and end of the
-range of deleted text.
-
-This function is meant to be called by `before-change-functions'.
-Flag will be non-nil if command is going to modify or delete an
-headline."
-  (when org-indent-mode
-    (setq org-indent-modified-headline-flag
-	  (org-with-wide-buffer
-	   (goto-char beg)
-	   (save-match-data
-	     (or (and (org-at-heading-p) (< beg (match-end 0)))
-		 (re-search-forward
-		  (org-with-limited-levels org-outline-regexp-bol) end t)))))))
-
-(defun org-indent-refresh-maybe (beg end _)
-  "Refresh indentation properties in an adequate portion of buffer.
-BEG and END are the positions of the beginning and end of the
-range of inserted text.  DUMMY is an unused argument.
-
-This function is meant to be called by `after-change-functions'."
-  (when org-indent-mode
-    (save-match-data
-      ;; If a headline was modified or inserted, set properties until
-      ;; next headline.
-      (org-with-wide-buffer
-       (if (or org-indent-modified-headline-flag
-	       (save-excursion
-		 (goto-char beg)
-		 (beginning-of-line)
-		 (re-search-forward
-		  (org-with-limited-levels org-outline-regexp-bol) end t)))
-	   (let ((end (save-excursion
-			(goto-char end)
-			(org-with-limited-levels (outline-next-heading))
-			(point))))
-	     (setq org-indent-modified-headline-flag nil)
-	     (org-indent-add-properties beg end))
-	 ;; Otherwise, only set properties on modified area.
-	 (org-indent-add-properties beg end))))))
-
-(provide 'org-indent)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-indent.el ends here
diff --git a/elpa/org-9.1.14/org-indent.elc b/elpa/org-9.1.14/org-indent.elc
deleted file mode 100644
index 90107c4..0000000
--- a/elpa/org-9.1.14/org-indent.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-info.el b/elpa/org-9.1.14/org-info.el
deleted file mode 100644
index 6dde36c..0000000
--- a/elpa/org-9.1.14/org-info.el
+++ /dev/null
@@ -1,148 +0,0 @@
-;;; org-info.el --- Support for Links to Info Nodes -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements links to Info nodes from within Org mode.
-;; Org mode loads this module by default - if this is not what you want,
-;; configure the variable `org-modules'.
-
-;;; Code:
-
-(require 'org)
-
-;; Declare external functions and variables
-
-(declare-function Info-find-node "info"
-                  (filename nodename &optional no-going-back strict-case))
-(defvar Info-current-file)
-(defvar Info-current-node)
-
-;; Install the link type
-(org-link-set-parameters "info"
-			 :follow #'org-info-open
-			 :export #'org-info-export
-			 :store #'org-info-store-link)
-
-;; Implementation
-(defun org-info-store-link ()
-  "Store a link to an Info file and node."
-  (when (eq major-mode 'Info-mode)
-    (let ((link (concat "info:"
-			(file-name-nondirectory Info-current-file)
-			"#" Info-current-node))
-	  (desc (concat (file-name-nondirectory Info-current-file)
-			"#" Info-current-node)))
-      (org-store-link-props :type "info" :file Info-current-file
-			    :node Info-current-node
-			    :link link :desc desc)
-      link)))
-
-(defun org-info-open (path)
-  "Follow an Info file and node link specified by PATH."
-  (org-info-follow-link path))
-
-
-(defun org-info-follow-link (name)
-  "Follow an Info file and node link specified by NAME."
-  (if (or (string-match "\\(.*\\)[#:]:?\\(.*\\)" name)
-          (string-match "\\(.*\\)" name))
-      (let ((filename (match-string 1 name))
-	    (nodename-or-index (or (match-string 2 name) "Top")))
-	(require 'info)
-	;; If nodename-or-index is invalid node name, then look it up
-	;; in the index.
-	(condition-case nil
-	    (Info-find-node filename nodename-or-index)
-	  (user-error (Info-find-node filename "Top")
-		      (condition-case nil
-			  (Info-index nodename-or-index)
-			(user-error "Could not find '%s' node or index entry"
-				    nodename-or-index)))))
-    (user-error "Could not open: %s" name)))
-
-(defconst org-info-emacs-documents
-  '("ada-mode" "auth" "autotype" "bovine" "calc" "ccmode" "cl" "dbus" "dired-x"
-    "ebrowse" "ede" "ediff" "edt" "efaq-w32" "efaq" "eieio" "eintr" "elisp"
-    "emacs-gnutls" "emacs-mime" "emacs" "epa" "erc" "ert" "eshell" "eudc" "eww"
-    "flymake" "forms" "gnus" "htmlfontify" "idlwave" "ido" "info" "mairix-el"
-    "message" "mh-e" "newsticker" "nxml-mode" "octave-mode" "org" "pcl-cvs"
-    "pgg" "rcirc" "reftex" "remember" "sasl" "sc" "semantic" "ses" "sieve"
-    "smtpmail" "speedbar" "srecode" "todo-mode" "tramp" "url" "vip" "viper"
-    "widget" "wisent" "woman")
-  "List of emacs documents available.
-Taken from <https://www.gnu.org/software/emacs/manual/html_mono/.>")
-
-(defconst org-info-other-documents
-  '(("libc" . "https://www.gnu.org/software/libc/manual/html_mono/libc.html")
-    ("make" . "https://www.gnu.org/software/make/manual/make.html"))
-  "Alist of documents generated from Texinfo source.
-When converting info links to HTML, links to any one of these manuals are
-converted to use these URL.")
-
-(defun org-info-map-html-url (filename)
-  "Return URL or HTML file associated to Info FILENAME.
-If FILENAME refers to an official GNU document, return a URL pointing to
-the official page for that document, e.g., use \"gnu.org\" for all Emacs
-related documents.  Otherwise, append \".html\" extension to FILENAME.
-See `org-info-emacs-documents' and `org-info-other-documents' for details."
-  (cond ((member filename org-info-emacs-documents)
-	 (format "https://www.gnu.org/software/emacs/manual/html_mono/%s.html"
-		 filename))
-	((cdr (assoc filename org-info-other-documents)))
-	(t (concat filename ".html"))))
-
-(defun org-info--expand-node-name (node)
-  "Expand Info NODE to HTML cross reference."
-  ;; See (info "(texinfo) HTML Xref Node Name Expansion") for the
-  ;; expansion rule.
-  (let ((node (replace-regexp-in-string
-	       "\\([ \t\n\r]+\\)\\|\\([^a-zA-Z0-9]\\)"
-	       (lambda (m)
-		 (if (match-end 1) "-" (format "_%04x" (string-to-char m))))
-	       (org-trim node))))
-    (cond ((string= node "") "")
-	  ((string-match-p "\\`[0-9]" node) (concat "g_t" node))
-	  (t node))))
-
-(defun org-info-export (path desc format)
-  "Export an info link.
-See `org-link-parameters' for details about PATH, DESC and FORMAT."
-  (let* ((parts (split-string path "[#:]:?"))
-	 (manual (car parts))
-	 (node (or (nth 1 parts) "Top")))
-    (pcase format
-      (`html
-       (format "<a href=\"%s#%s\">%s</a>"
-	       (org-info-map-html-url manual)
-	       (org-info--expand-node-name node)
-	       (or desc path)))
-      (`texinfo
-       (let ((title (or desc "")))
-	 (format "@ref{%s,%s,,%s,}" node title manual)))
-      (_ nil))))
-
-(provide 'org-info)
-
-;;; org-info.el ends here
diff --git a/elpa/org-9.1.14/org-info.elc b/elpa/org-9.1.14/org-info.elc
deleted file mode 100644
index d15ccd3..0000000
--- a/elpa/org-9.1.14/org-info.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-inlinetask.el b/elpa/org-9.1.14/org-inlinetask.el
deleted file mode 100644
index d95db32..0000000
--- a/elpa/org-9.1.14/org-inlinetask.el
+++ /dev/null
@@ -1,353 +0,0 @@
-;;; org-inlinetask.el --- Tasks Independent of Outline Hierarchy -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-;;
-;; This module implements inline tasks in Org mode.  Inline tasks are
-;; tasks that have all the properties of normal outline nodes,
-;; including the ability to store meta data like scheduling dates,
-;; TODO state, tags and properties.  However, these nodes are treated
-;; specially by the visibility cycling.
-;;
-;; Visibility cycling exempts these nodes from cycling.  So whenever
-;; their parent is opened, so are these tasks.  This will only work
-;; with `org-cycle', so if you are also using other commands to
-;; show/hide entries, you will occasionally find these tasks to behave
-;; like all other outline nodes, seemingly splitting the text of the
-;; parent into children.
-;;
-;; Special fontification of inline tasks, so that they can be
-;; immediately recognized.  From the stars of the headline, only the
-;; first and the last two will be visible, the others will be hidden
-;; using the `org-hide' face.
-;;
-;; An inline task is identified solely by a minimum outline level,
-;; given by the variable `org-inlinetask-min-level', default 15.
-;;
-;; If you need to have a time planning line (DEADLINE etc), drawers,
-;; for example LOGBOOK of PROPERTIES, or even normal text as part of
-;; the inline task, you must add an "END" headline with the same
-;; number of stars.
-;;
-;; As an example, here are two valid inline tasks:
-;;
-;;    **************** TODO a small task
-;;
-;; and
-;;
-;;    **************** TODO another small task
-;;                     DEADLINE: <2009-03-30 Mon>
-;;                     :PROPERTIES:
-;;                       :SOMETHING: or other
-;;                     :END:
-;;                     And here is some extra text
-;;    **************** END
-;;
-;; Also, if you want to use refiling and archiving for inline tasks,
-;; The END line must be present to make things work properly.
-;;
-;; Note that you should not try to use inline tasks within plain list,
-;; visibility cycling is known to be problematic when doing so.
-;;
-;; This package installs one new command:
-;;
-;; C-c C-x t      Insert a new inline task with END line
-
-;;; Code:
-
-(require 'org)
-
-(defgroup org-inlinetask nil
-  "Options concerning inline tasks in Org mode."
-  :tag "Org Inline Tasks"
-  :group 'org-structure)
-
-(defcustom org-inlinetask-min-level 15
-  "Minimum level a headline must have before it is treated as an inline task.
-Don't set it to something higher than `29' or clocking will break since this
-is the hardcoded maximum number of stars `org-clock-sum' will work with.
-
-It is strongly recommended that you set `org-cycle-max-level' not at all,
-or to a number smaller than this one.  In fact, when `org-cycle-max-level' is
-not set, it will be assumed to be one less than the value of smaller than
-the value of this variable."
-  :group 'org-inlinetask
-  :type '(choice
-	  (const :tag "Off" nil)
-	  (integer)))
-
-(defcustom org-inlinetask-show-first-star nil
-  "Non-nil means display the first star of an inline task as additional marker.
-When nil, the first star is not shown."
-  :tag "Org Inline Tasks"
-  :group 'org-structure
-  :type 'boolean)
-
-(defvar org-odd-levels-only)
-(defvar org-keyword-time-regexp)
-(defvar org-complex-heading-regexp)
-(defvar org-property-end-re)
-
-(defcustom org-inlinetask-default-state nil
-  "Non-nil means make inline tasks have a TODO keyword initially.
-This should be the state `org-inlinetask-insert-task' should use by
-default, or nil if no state should be assigned."
-  :group 'org-inlinetask
-  :version "24.1"
-  :type '(choice
-	  (const :tag "No state" nil)
-	  (string :tag "Specific state")))
-
-(defun org-inlinetask-insert-task (&optional no-state)
-  "Insert an inline task.
-If prefix arg NO-STATE is set, ignore `org-inlinetask-default-state'."
-  (interactive "P")
-  ;; Error when inside an inline task, except if point was at its very
-  ;; beginning, in which case the new inline task will be inserted
-  ;; before this one.
-  (when (and (org-inlinetask-in-task-p)
-	     (not (and (org-inlinetask-at-task-p) (bolp))))
-    (error "Cannot nest inline tasks"))
-  (or (bolp) (newline))
-  (let* ((indent (if org-odd-levels-only
-		     (1- (* 2 org-inlinetask-min-level))
-		   org-inlinetask-min-level))
-	 (indent-string (concat (make-string indent ?*) " ")))
-    (insert indent-string
-	    (if (or no-state (not org-inlinetask-default-state))
-		"\n"
-	      (concat org-inlinetask-default-state " \n"))
-	    indent-string "END\n"))
-  (end-of-line -1))
-(define-key org-mode-map "\C-c\C-xt" 'org-inlinetask-insert-task)
-
-(defun org-inlinetask-outline-regexp ()
-  "Return string matching an inline task heading.
-The number of levels is controlled by `org-inlinetask-min-level'."
-  (let ((nstars (if org-odd-levels-only
-		    (1- (* org-inlinetask-min-level 2))
-		  org-inlinetask-min-level)))
-    (format "^\\(\\*\\{%d,\\}\\)[ \t]+" nstars)))
-
-(defun org-inlinetask-end-p ()
-  "Return a non-nil value if point is on inline task's END part."
-  (let ((case-fold-search t))
-    (org-match-line (concat (org-inlinetask-outline-regexp) "END[ \t]*$"))))
-
-(defun org-inlinetask-at-task-p ()
-  "Return non-nil if point is at beginning of an inline task."
-  (and (org-match-line (concat (org-inlinetask-outline-regexp)  "\\(.*\\)"))
-       (not (org-inlinetask-end-p))))
-
-(defun org-inlinetask-in-task-p ()
-  "Return true if point is inside an inline task."
-  (save-excursion
-    (beginning-of-line)
-    (let ((case-fold-search t))
-      (or (looking-at-p (concat (org-inlinetask-outline-regexp) "\\(?:.*\\)"))
-	  (and (re-search-forward "^\\*+[ \t]+" nil t)
-	       (org-inlinetask-end-p))))))
-
-(defun org-inlinetask-goto-beginning ()
-  "Go to the beginning of the inline task at point."
-  (end-of-line)
-  (let ((case-fold-search t)
-	(inlinetask-re (org-inlinetask-outline-regexp)))
-    (re-search-backward inlinetask-re nil t)
-    (when (org-inlinetask-end-p)
-      (re-search-backward inlinetask-re nil t))))
-
-(defun org-inlinetask-goto-end ()
-  "Go to the end of the inline task at point.
-    Return point."
-  (save-match-data
-    (beginning-of-line)
-    (let ((case-fold-search t)
-	  (inlinetask-re (org-inlinetask-outline-regexp)))
-      (cond
-       ((org-inlinetask-end-p)
-        (forward-line))
-       ((looking-at-p inlinetask-re)
-        (forward-line)
-        (cond
-         ((org-inlinetask-end-p) (forward-line))
-         ((looking-at-p inlinetask-re))
-         ((org-inlinetask-in-task-p)
-          (re-search-forward inlinetask-re nil t)
-          (forward-line))
-         (t nil)))
-       (t
-        (re-search-forward inlinetask-re nil t)
-        (forward-line)))))
-  (point))
-
-(defun org-inlinetask-get-task-level ()
-  "Get the level of the inline task around.
-This assumes the point is inside an inline task."
-  (save-excursion
-    (end-of-line)
-    (re-search-backward (org-inlinetask-outline-regexp) nil t)
-    (- (match-end 1) (match-beginning 1))))
-
-(defun org-inlinetask-promote ()
-  "Promote the inline task at point.
-If the task has an end part, promote it.  Also, prevents level from
-going below `org-inlinetask-min-level'."
-  (interactive)
-  (if (not (org-inlinetask-in-task-p))
-      (error "Not in an inline task")
-    (save-excursion
-      (let* ((lvl (org-inlinetask-get-task-level))
-	     (next-lvl (org-get-valid-level lvl -1))
-	     (diff (- next-lvl lvl))
-	     (down-task (concat (make-string next-lvl ?*)))
-	     beg)
-	(if (< next-lvl org-inlinetask-min-level)
-	    (error "Cannot promote an inline task at minimum level")
-	  (org-inlinetask-goto-beginning)
-	  (setq beg (point))
-	  (replace-match down-task nil t nil 1)
-	  (org-inlinetask-goto-end)
-	  (if (eobp) (beginning-of-line) (forward-line -1))
-	  (unless (= (point) beg)
-	    (replace-match down-task nil t nil 1)
-	    (when org-adapt-indentation
-	      (goto-char beg)
-	      (org-fixup-indentation diff))))))))
-
-(defun org-inlinetask-demote ()
-  "Demote the inline task at point.
-If the task has an end part, also demote it."
-  (interactive)
-  (if (not (org-inlinetask-in-task-p))
-      (error "Not in an inline task")
-    (save-excursion
-      (let* ((lvl (org-inlinetask-get-task-level))
-	     (next-lvl (org-get-valid-level lvl 1))
-	     (diff (- next-lvl lvl))
-	     (down-task (concat (make-string next-lvl ?*)))
-	     beg)
-	(org-inlinetask-goto-beginning)
-	(setq beg (point))
-	(replace-match down-task nil t nil 1)
-	(org-inlinetask-goto-end)
-	(if (eobp) (beginning-of-line) (forward-line -1))
-	(unless (= (point) beg)
-	  (replace-match down-task nil t nil 1)
-	  (when org-adapt-indentation
-	    (goto-char beg)
-	    (org-fixup-indentation diff)))))))
-
-(defun org-inlinetask-get-current-indentation ()
-  "Get the indentation of the last non-while line above this one."
-  (save-excursion
-    (beginning-of-line 1)
-    (skip-chars-backward " \t\n")
-    (beginning-of-line 1)
-    (or (org-at-item-p)
-	(looking-at "[ \t]*"))
-    (goto-char (match-end 0))
-    (current-column)))
-
-(defvar org-indent-indentation-per-level) ; defined in org-indent.el
-
-(defface org-inlinetask '((t :inherit shadow))
-  "Face for inlinetask headlines."
-  :group 'org-faces)
-
-(defun org-inlinetask-fontify (limit)
-  "Fontify the inline tasks down to LIMIT."
-  (let* ((nstars (if org-odd-levels-only
-		     (1- (* 2 (or org-inlinetask-min-level 200)))
-		   (or org-inlinetask-min-level 200)))
-	 (re (concat "^\\(\\*\\)\\(\\*\\{"
-		     (format "%d" (- nstars 3))
-		     ",\\}\\)\\(\\*\\* .*\\)"))
-	 ;; Virtual indentation will add the warning face on the first
-	 ;; star.  Thus, in that case, only hide it.
-	 (start-face (if (and (bound-and-true-p org-indent-mode)
-			      (> org-indent-indentation-per-level 1))
-			 'org-hide
-		       'org-warning)))
-    (while (re-search-forward re limit t)
-      (if org-inlinetask-show-first-star
-	  (add-text-properties (match-beginning 1) (match-end 1)
-			       `(face ,start-face font-lock-fontified t)))
-      (add-text-properties (match-beginning
-			    (if org-inlinetask-show-first-star 2 1))
-			   (match-end 2)
-			   '(face org-hide font-lock-fontified t))
-      (add-text-properties (match-beginning 3) (match-end 3)
-			   '(face org-inlinetask font-lock-fontified t)))))
-
-(defun org-inlinetask-toggle-visibility ()
-  "Toggle visibility of inline task at point."
-  (let ((end (save-excursion
-	       (org-inlinetask-goto-end)
-	       (if (bolp) (1- (point)) (point))))
-	(start (save-excursion
-		 (org-inlinetask-goto-beginning)
-		 (point-at-eol))))
-    (cond
-     ;; Nothing to show/hide.
-     ((= end start))
-     ;; Inlinetask was folded: expand it.
-     ((eq (get-char-property (1+ start) 'invisible) 'outline)
-      (outline-flag-region start end nil)
-      (org-cycle-hide-drawers 'children))
-     (t (outline-flag-region start end t)))))
-
-(defun org-inlinetask-hide-tasks (state)
-  "Hide inline tasks in buffer when STATE is `contents' or `children'.
-This function is meant to be used in `org-cycle-hook'."
-  (pcase state
-    (`contents
-     (let ((regexp (org-inlinetask-outline-regexp)))
-       (save-excursion
-	 (goto-char (point-min))
-	 (while (re-search-forward regexp nil t)
-	   (org-inlinetask-toggle-visibility)
-	   (org-inlinetask-goto-end)))))
-    (`children
-     (save-excursion
-       (while
-	   (or (org-inlinetask-at-task-p)
-	       (and (outline-next-heading) (org-inlinetask-at-task-p)))
-	 (org-inlinetask-toggle-visibility)
-	 (org-inlinetask-goto-end))))))
-
-(defun org-inlinetask-remove-END-maybe ()
-  "Remove an END line when present."
-  (when (looking-at (format "\\([ \t]*\n\\)*\\*\\{%d,\\}[ \t]+END[ \t]*$"
-			    org-inlinetask-min-level))
-    (replace-match "")))
-
-(add-hook 'org-font-lock-hook 'org-inlinetask-fontify)
-(add-hook 'org-cycle-hook 'org-inlinetask-hide-tasks)
-
-(provide 'org-inlinetask)
-
-;;; org-inlinetask.el ends here
diff --git a/elpa/org-9.1.14/org-inlinetask.elc b/elpa/org-9.1.14/org-inlinetask.elc
deleted file mode 100644
index 5de4198..0000000
--- a/elpa/org-9.1.14/org-inlinetask.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-install.el b/elpa/org-9.1.14/org-install.el
deleted file mode 100644
index 5835959..0000000
--- a/elpa/org-9.1.14/org-install.el
+++ /dev/null
@@ -1,17 +0,0 @@
-;;; org-install.el --- backward compatibility file for obsolete configuration
-;;
-;;; Code:
-;;
-;; The file org-install is obsolete.
-;;
-;; It is provided here so that (require 'org-install) does not
-;; trigger an error for users with obsolete Emacs configuration.
-;; You can safely remove (require 'org-install) from your config."
-
-(provide 'org-install)
-
-;; Local Variables:
-;; no-byte-compile: t
-;; coding: utf-8
-;; End:
-;;; org-install.el ends here
diff --git a/elpa/org-9.1.14/org-irc.el b/elpa/org-9.1.14/org-irc.el
deleted file mode 100644
index 8901956..0000000
--- a/elpa/org-9.1.14/org-irc.el
+++ /dev/null
@@ -1,256 +0,0 @@
-;;; org-irc.el --- Store Links to IRC Sessions -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
-;;
-;; Author: Philip Jackson <emacs@shellarchive.co.uk>
-;; Keywords: erc, irc, link, org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file implements links to an IRC session from within Org mode.
-;; Org mode loads this module by default - if this is not what you want,
-;; configure the variable `org-modules'.
-;;
-;; Please customize the variable `org-modules' to select
-;; extensions you would like to use, and to deselect those which you don't
-;; want.
-;;
-;; Please note that at the moment only ERC is supported.  Other clients
-;; shouldn't be difficult to add though.
-;;
-;; Then set `org-irc-link-to-logs' to non-nil if you would like a
-;; file:/ type link to be created to the current line in the logs or
-;; to t if you would like to create an irc:/ style link.
-;;
-;; Links within an org buffer might look like this:
-;;
-;; [[irc:/irc.freenode.net/#emacs/bob][chat with bob in #emacs on freenode]]
-;; [[irc:/irc.freenode.net/#emacs][#emacs on freenode]]
-;; [[irc:/irc.freenode.net/]]
-;;
-;; If, when the resulting link is visited, there is no connection to a
-;; requested server then one will be created.
-
-;;; Code:
-
-(require 'org)
-
-(declare-function erc-buffer-filter "erc" (predicate &optional proc))
-(declare-function erc-channel-p "erc" (channel))
-(declare-function erc-cmd-JOIN "erc" (channel &optional key))
-(declare-function erc-current-logfile "erc-log" (&optional buffer))
-(declare-function erc-default-target "erc" ())
-(declare-function erc-get-server-nickname-list "erc" ())
-(declare-function erc-logging-enabled "erc-log" (&optional buffer))
-(declare-function erc-prompt "erc" ())
-(declare-function erc-save-buffer-in-logs "erc-log" (&optional buffer))
-(declare-function erc-server-buffer "erc" ())
-
-(defvar org-irc-client 'erc
-  "The IRC client to act on.")
-
-(defvar org-irc-link-to-logs nil
-  "Non-nil will store a link to the logs, nil will store an irc: style link.")
-
-(defvar erc-default-port)   ; dynamically scoped from erc.el
-(defvar erc-session-port)   ; dynamically scoped form erc-backend.el
-(defvar erc-session-server) ; dynamically scoped form erc-backend.el
-
-;; Generic functions/config (extend these for other clients)
-
-(org-link-set-parameters "irc" :follow #'org-irc-visit :store #'org-irc-store-link)
-
-(defun org-irc-visit (link)
-  "Parse LINK and dispatch to the correct function based on the client found."
-  (let ((link (org-irc-parse-link link)))
-    (cond
-     ((eq org-irc-client 'erc)
-      (org-irc-visit-erc link))
-     (t
-      (error "ERC only known client")))))
-
-(defun org-irc-parse-link (link)
-  "Parse an IRC LINK and return the attributes found.
-Parse a LINK that looks like server:port/chan/user (port, chan
-and user being optional) and return any of the port, channel or user
-attributes that are found."
-  (let* ((parts (split-string link "/" t))
-	 (len (length parts)))
-    (when (or (< len 1) (> len 3))
-      (error "Failed to parse link needed 1-3 parts, got %d" len))
-    (setcar parts (split-string (car parts) ":" t))
-    parts))
-
-;;;###autoload
-(defun org-irc-store-link ()
-  "Dispatch to the appropriate function to store a link to an IRC session."
-  (cond
-   ((eq major-mode 'erc-mode)
-    (org-irc-erc-store-link))))
-
-(defun org-irc-ellipsify-description (string &optional after)
-  "Remove unnecessary white space from STRING and add ellipses if necessary.
-Strip starting and ending white space from STRING and replace any
-chars that the value AFTER with `...'"
-  (let* ((after (number-to-string (or after 30)))
-	 (replace-map (list (cons "^[ \t]*" "")
-			    (cons "[ \t]*$" "")
-			    (cons (concat "^\\(.\\{" after
-					  "\\}\\).*") "\\1..."))))
-    (dolist (x replace-map string)
-      (when (string-match (car x) string)
-	(setq string (replace-match (cdr x) nil nil string))))))
-
-;; ERC specific functions
-
-(defun org-irc-erc-get-line-from-log (erc-line)
-  "Find the best line to link to from the ERC logs given ERC-LINE as a start.
-If the user is on the ERC-prompt then search backward for the
-first non-blank line, otherwise return the current line.  The
-result is a cons of the filename and search string."
-  (erc-save-buffer-in-logs)
-  (require 'erc-log)
-  (with-current-buffer (find-file-noselect (erc-current-logfile))
-    (goto-char (point-max))
-    (list
-     (abbreviate-file-name buffer-file-name)
-     ;; can we get a '::' part?
-     (if (string= erc-line (erc-prompt))
-	 (progn
-	   (goto-char (point-at-bol))
-	   (when (search-backward-regexp "^[^	]" nil t)
-	     (buffer-substring-no-properties (point-at-bol)
-					     (point-at-eol))))
-       (when (search-backward erc-line nil t)
-	 (buffer-substring-no-properties (point-at-bol)
-					 (point-at-eol)))))))
-
-(defun org-irc-erc-store-link ()
-  "Store a link to the IRC log file or the session itself.
-Depending on the variable `org-irc-link-to-logs' store either a
-link to the log file for the current session or an irc: link to
-the session itself."
-  (require 'erc-log)
-  (if org-irc-link-to-logs
-      (let* ((erc-line (buffer-substring-no-properties
-			(point-at-bol) (point-at-eol)))
-	     (parsed-line (org-irc-erc-get-line-from-log erc-line)))
-	(if (erc-logging-enabled nil)
-	    (progn
-	      (org-store-link-props
-	       :type "file"
-	       :description (concat "'" (org-irc-ellipsify-description
-					 (cadr parsed-line) 20)
-				    "' from an IRC conversation")
-	       :link (concat "file:" (car parsed-line) "::"
-			     (cadr parsed-line)))
-	      t)
-	  (error "This ERC session is not being logged")))
-    (let* ((link-text (org-irc-get-erc-link))
-	   (link (org-irc-parse-link link-text)))
-      (if link-text
-	  (progn
-	    (org-store-link-props
-	     :type "irc"
-	     :link (concat "irc:/" link-text)
-	     :description (concat "irc session `" link-text "'")
-	     :server (car (car link))
-	     :port (or (string-to-number (cadr (pop link))) erc-default-port)
-	     :nick (pop link))
-	    t)
-	(error "Failed to create ('irc:/' style) ERC link")))))
-
-(defun org-irc-get-erc-link ()
-  "Return an org compatible irc:/ link from an ERC buffer."
-  (let* ((session-port (if (numberp erc-session-port)
-			   (number-to-string erc-session-port)
-			 erc-session-port))
-	 (link (concat erc-session-server ":" session-port)))
-    (concat link "/"
-	    (if (and (erc-default-target)
-		     (erc-channel-p (erc-default-target))
-		     (car (get-text-property (point) 'erc-data)))
-		;; we can get a nick
-		(let ((nick (car (get-text-property (point) 'erc-data))))
-		  (concat (erc-default-target) "/" nick))
-	      (erc-default-target)))))
-
-(defun org-irc-get-current-erc-port ()
-  "Return the current port as a number.
-Return the current port number or, if none is set, return the ERC
-default."
-  (cond
-   ((stringp erc-session-port)
-    (string-to-number erc-session-port))
-   ((numberp erc-session-port)
-    erc-session-port)
-   (t
-    erc-default-port)))
-
-(defun org-irc-visit-erc (link)
-  "Visit an ERC buffer based on criteria found in LINK."
-  (require 'erc)
-  (require 'erc-log)
-  (let* ((server (car (car link)))
-	 (port (let ((p (cadr (pop link))))
-		 (if p (string-to-number p) erc-default-port)))
-	 (server-buffer)
-	 (buffer-list
-	  (erc-buffer-filter
-	   (lambda nil
-	     (let ((tmp-server-buf (erc-server-buffer)))
-	       (and tmp-server-buf
-		    (with-current-buffer tmp-server-buf
-		      (and
-		       (eq (org-irc-get-current-erc-port) port)
-		       (string= erc-session-server server)
-		       (setq server-buffer tmp-server-buf)))))))))
-    (if buffer-list
-	(let ((chan-name (pop link)))
-	  ;; if we got a channel name then switch to it or join it
-	  (if chan-name
-	      (let ((chan-buf (catch 'found
-				(dolist (x buffer-list)
-				  (if (string= (buffer-name x) chan-name)
-				      (throw 'found x))))))
-		(if chan-buf
-		    (progn
-		      (pop-to-buffer-same-window chan-buf)
-		      ;; if we got a nick, and they're in the chan,
-		      ;; then start a chat with them
-		      (let ((nick (pop link)))
-			(when nick
-			  (if (member nick (erc-get-server-nickname-list))
-			      (progn
-				(goto-char (point-max))
-				(insert (concat nick ": ")))
-			    (error "%s not found in %s" nick chan-name)))))
-		  (progn
-		    (pop-to-buffer-same-window server-buffer)
-		    (erc-cmd-JOIN chan-name))))
-	    (pop-to-buffer-same-window server-buffer)))
-      ;; no server match, make new connection
-      (erc-select :server server :port port))))
-
-(provide 'org-irc)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-irc.el ends here
diff --git a/elpa/org-9.1.14/org-irc.elc b/elpa/org-9.1.14/org-irc.elc
deleted file mode 100644
index 2fa4ba1..0000000
--- a/elpa/org-9.1.14/org-irc.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-lint.el b/elpa/org-9.1.14/org-lint.el
deleted file mode 100644
index 9fcb17a..0000000
--- a/elpa/org-9.1.14/org-lint.el
+++ /dev/null
@@ -1,1242 +0,0 @@
-;;; org-lint.el --- Linting for Org documents        -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This library implements linting for Org syntax.  The sole public
-;; function is `org-lint', which see.
-
-;; Internally, the library defines a new structure:
-;; `org-lint-checker', with the following slots:
-
-;;   - NAME: Unique check identifier, as a non-nil symbol that doesn't
-;;     start with an hyphen.
-;;
-;;     The check is done calling the function `org-lint-NAME' with one
-;;     mandatory argument, the parse tree describing the current Org
-;;     buffer.  Such function calls are wrapped within
-;;     a `save-excursion' and point is always at `point-min'.  Its
-;;     return value has to be an alist (POSITION MESSAGE) when
-;;     POSITION refer to the buffer position of the error, as an
-;;     integer, and MESSAGE is a string describing the error.
-
-;;   - DESCRIPTION: Summary about the check, as a string.
-
-;;   - CATEGORIES: Categories relative to the check, as a list of
-;;     symbol.  They are used for filtering when calling `org-lint'.
-;;     Checkers not explicitly associated to a category are collected
-;;     in the `default' one.
-
-;;   - TRUST: The trust level one can have in the check.  It is either
-;;     `low' or `high', depending on the heuristics implemented and
-;;     the nature of the check.  This has an indicative value only and
-;;     is displayed along reports.
-
-;; All checks have to be listed in `org-lint--checkers'.
-
-;; Results are displayed in a special "*Org Lint*" buffer with
-;; a dedicated major mode, derived from `tabulated-list-mode'.
-;;
-;; In addition to the usual key-bindings inherited from it, "C-j" and
-;; "TAB" display problematic line reported under point whereas "RET"
-;; jumps to it.  Also, "h" hides all reports similar to the current
-;; one.  Additionally, "i" removes them from subsequent reports.
-
-;; Checks currently implemented are:
-
-;;   - duplicate CUSTOM_ID properties
-;;   - duplicate NAME values
-;;   - duplicate targets
-;;   - duplicate footnote definitions
-;;   - orphaned affiliated keywords
-;;   - obsolete affiliated keywords
-;;   - missing language in src blocks
-;;   - missing back-end in export blocks
-;;   - invalid Babel call blocks
-;;   - NAME values with a colon
-;;   - deprecated export block syntax
-;;   - deprecated Babel header properties
-;;   - wrong header arguments in src blocks
-;;   - misuse of CATEGORY keyword
-;;   - "coderef" links with unknown destination
-;;   - "custom-id" links with unknown destination
-;;   - "fuzzy" links with unknown destination
-;;   - "id" links with unknown destination
-;;   - links to non-existent local files
-;;   - SETUPFILE keywords with non-existent file parameter
-;;   - INCLUDE keywords with wrong link parameter
-;;   - obsolete markup in INCLUDE keyword
-;;   - unknown items in OPTIONS keyword
-;;   - spurious macro arguments or invalid macro templates
-;;   - special properties in properties drawer
-;;   - obsolete syntax for PROPERTIES drawers
-;;   - Invalid EFFORT property value
-;;   - missing definition for footnote references
-;;   - missing reference for footnote definitions
-;;   - non-footnote definitions in footnote section
-;;   - probable invalid keywords
-;;   - invalid blocks
-;;   - misplaced planning info line
-;;   - incomplete drawers
-;;   - indented diary-sexps
-;;   - obsolete QUOTE section
-;;   - obsolete "file+application" link
-;;   - blank headlines with tags
-
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org-element)
-(require 'org-macro)
-(require 'ox)
-(require 'ob)
-
-
-;;; Checkers
-
-(cl-defstruct (org-lint-checker (:copier nil))
-  (name 'missing-checker-name)
-  (description "")
-  (categories '(default))
-  (trust 'high))			; `low' or `high'
-
-(defun org-lint-missing-checker-name (_)
-  (error
-   "`A checker has no `:name' property.  Please verify `org-lint--checkers'"))
-
-(defconst org-lint--checkers
-  (list
-   (make-org-lint-checker
-    :name 'duplicate-custom-id
-    :description "Report duplicates CUSTOM_ID properties"
-    :categories '(link))
-   (make-org-lint-checker
-    :name 'duplicate-name
-    :description "Report duplicate NAME values"
-    :categories '(babel link))
-   (make-org-lint-checker
-    :name 'duplicate-target
-    :description "Report duplicate targets"
-    :categories '(link))
-   (make-org-lint-checker
-    :name 'duplicate-footnote-definition
-    :description "Report duplicate footnote definitions"
-    :categories '(footnote))
-   (make-org-lint-checker
-    :name 'orphaned-affiliated-keywords
-    :description "Report orphaned affiliated keywords"
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'obsolete-affiliated-keywords
-    :description "Report obsolete affiliated keywords"
-    :categories '(obsolete))
-   (make-org-lint-checker
-    :name 'deprecated-export-blocks
-    :description "Report deprecated export block syntax"
-    :categories '(obsolete export)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'deprecated-header-syntax
-    :description "Report deprecated Babel header syntax"
-    :categories '(obsolete babel)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'missing-language-in-src-block
-    :description "Report missing language in src blocks"
-    :categories '(babel))
-   (make-org-lint-checker
-    :name 'missing-backend-in-export-block
-    :description "Report missing back-end in export blocks"
-    :categories '(export))
-   (make-org-lint-checker
-    :name 'invalid-babel-call-block
-    :description "Report invalid Babel call blocks"
-    :categories '(babel))
-   (make-org-lint-checker
-    :name 'colon-in-name
-    :description "Report NAME values with a colon"
-    :categories '(babel))
-   (make-org-lint-checker
-    :name 'wrong-header-argument
-    :description "Report wrong babel headers"
-    :categories '(babel))
-   (make-org-lint-checker
-    :name 'wrong-header-value
-    :description "Report invalid value in babel headers"
-    :categories '(babel)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'deprecated-category-setup
-    :description "Report misuse of CATEGORY keyword"
-    :categories '(obsolete))
-   (make-org-lint-checker
-    :name 'invalid-coderef-link
-    :description "Report \"coderef\" links with unknown destination"
-    :categories '(link))
-   (make-org-lint-checker
-    :name 'invalid-custom-id-link
-    :description "Report \"custom-id\" links with unknown destination"
-    :categories '(link))
-   (make-org-lint-checker
-    :name 'invalid-fuzzy-link
-    :description "Report \"fuzzy\" links with unknown destination"
-    :categories '(link))
-   (make-org-lint-checker
-    :name 'invalid-id-link
-    :description "Report \"id\" links with unknown destination"
-    :categories '(link))
-   (make-org-lint-checker
-    :name 'link-to-local-file
-    :description "Report links to non-existent local files"
-    :categories '(link)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'non-existent-setupfile-parameter
-    :description "Report SETUPFILE keywords with non-existent file parameter"
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'wrong-include-link-parameter
-    :description "Report INCLUDE keywords with misleading link parameter"
-    :categories '(export)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'obsolete-include-markup
-    :description "Report obsolete markup in INCLUDE keyword"
-    :categories '(obsolete export)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'unknown-options-item
-    :description "Report unknown items in OPTIONS keyword"
-    :categories '(export)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'invalid-macro-argument-and-template
-    :description "Report spurious macro arguments or invalid macro templates"
-    :categories '(export)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'special-property-in-properties-drawer
-    :description "Report special properties in properties drawers"
-    :categories '(properties))
-   (make-org-lint-checker
-    :name 'obsolete-properties-drawer
-    :description "Report obsolete syntax for properties drawers"
-    :categories '(obsolete properties))
-   (make-org-lint-checker
-    :name 'invalid-effort-property
-    :description "Report invalid duration in EFFORT property"
-    :categories '(properties))
-   (make-org-lint-checker
-    :name 'undefined-footnote-reference
-    :description "Report missing definition for footnote references"
-    :categories '(footnote))
-   (make-org-lint-checker
-    :name 'unreferenced-footnote-definition
-    :description "Report missing reference for footnote definitions"
-    :categories '(footnote))
-   (make-org-lint-checker
-    :name 'extraneous-element-in-footnote-section
-    :description "Report non-footnote definitions in footnote section"
-    :categories '(footnote))
-   (make-org-lint-checker
-    :name 'invalid-keyword-syntax
-    :description "Report probable invalid keywords"
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'invalid-block
-    :description "Report invalid blocks"
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'misplaced-planning-info
-    :description "Report misplaced planning info line"
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'incomplete-drawer
-    :description "Report probable incomplete drawers"
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'indented-diary-sexp
-    :description "Report probable indented diary-sexps"
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'quote-section
-    :description "Report obsolete QUOTE section"
-    :categories '(obsolete)
-    :trust 'low)
-   (make-org-lint-checker
-    :name 'file-application
-    :description "Report obsolete \"file+application\" link"
-    :categories '(link obsolete))
-   (make-org-lint-checker
-    :name 'empty-headline-with-tags
-    :description "Report ambiguous empty headlines with tags"
-    :categories '(headline)
-    :trust 'low))
-  "List of all available checkers.")
-
-(defun org-lint--collect-duplicates
-    (ast type extract-key extract-position build-message)
-  "Helper function to collect duplicates in parse tree AST.
-
-EXTRACT-KEY is a function extracting key.  It is called with
-a single argument: the element or object.  Comparison is done
-with `equal'.
-
-EXTRACT-POSITION is a function returning position for the report.
-It is called with two arguments, the object or element, and the
-key.
-
-BUILD-MESSAGE is a function creating the report message.  It is
-called with one argument, the key used for comparison."
-  (let* (keys
-	 originals
-	 reports
-	 (make-report
-	  (lambda (position value)
-	    (push (list position (funcall build-message value)) reports))))
-    (org-element-map ast type
-      (lambda (datum)
-	(let ((key (funcall extract-key datum)))
-	  (cond
-	   ((not key))
-	   ((assoc key keys) (cl-pushnew (assoc key keys) originals)
-	    (funcall make-report (funcall extract-position datum key) key))
-	   (t (push (cons key (funcall extract-position datum key)) keys))))))
-    (dolist (e originals reports) (funcall make-report (cdr e) (car e)))))
-
-(defun org-lint-duplicate-custom-id (ast)
-  (org-lint--collect-duplicates
-   ast
-   'node-property
-   (lambda (property)
-     (and (eq (compare-strings "CUSTOM_ID" nil nil
-			       (org-element-property :key property) nil nil
-			       t)
-	      t)
-	  (org-element-property :value property)))
-   (lambda (property _) (org-element-property :begin property))
-   (lambda (key) (format "Duplicate CUSTOM_ID property \"%s\"" key))))
-
-(defun org-lint-duplicate-name (ast)
-  (org-lint--collect-duplicates
-   ast
-   org-element-all-elements
-   (lambda (datum) (org-element-property :name datum))
-   (lambda (datum name)
-     (goto-char (org-element-property :begin datum))
-     (re-search-forward
-      (format "^[ \t]*#\\+[A-Za-z]+: +%s *$" (regexp-quote name)))
-     (match-beginning 0))
-   (lambda (key) (format "Duplicate NAME \"%s\"" key))))
-
-(defun org-lint-duplicate-target (ast)
-  (org-lint--collect-duplicates
-   ast
-   'target
-   (lambda (target) (split-string (org-element-property :value target)))
-   (lambda (target _) (org-element-property :begin target))
-   (lambda (key)
-     (format "Duplicate target <<%s>>" (mapconcat #'identity key " ")))))
-
-(defun org-lint-duplicate-footnote-definition (ast)
-  (org-lint--collect-duplicates
-   ast
-   'footnote-definition
-   (lambda (definition)  (org-element-property :label definition))
-   (lambda (definition _) (org-element-property :post-affiliated definition))
-   (lambda (key) (format "Duplicate footnote definition \"%s\"" key))))
-
-(defun org-lint-orphaned-affiliated-keywords (ast)
-  ;; Ignore orphan RESULTS keywords, which could be generated from
-  ;; a source block returning no value.
-  (let ((keywords (cl-set-difference org-element-affiliated-keywords
-				     '("RESULT" "RESULTS")
-				     :test #'equal)))
-    (org-element-map ast 'keyword
-      (lambda (k)
-	(let ((key (org-element-property :key k)))
-	  (and (or (let ((case-fold-search t))
-		     (string-match-p "\\`ATTR_[-_A-Za-z0-9]+\\'" key))
-		   (member key keywords))
-	       (list (org-element-property :post-affiliated k)
-		     (format "Orphaned affiliated keyword: \"%s\"" key))))))))
-
-(defun org-lint-obsolete-affiliated-keywords (_)
-  (let ((regexp (format "^[ \t]*#\\+%s:"
-			(regexp-opt '("DATA" "LABEL" "RESNAME" "SOURCE"
-				      "SRCNAME" "TBLNAME" "RESULT" "HEADERS")
-				    t)))
-	reports)
-    (while (re-search-forward regexp nil t)
-      (let ((key (upcase (match-string-no-properties 1))))
-	(when (< (point)
-		 (org-element-property :post-affiliated (org-element-at-point)))
-	  (push
-	   (list (line-beginning-position)
-		 (format
-		  "Obsolete affiliated keyword: \"%s\".  Use \"%s\" instead"
-		  key
-		  (pcase key
-		    ("HEADERS" "HEADER")
-		    ("RESULT" "RESULTS")
-		    (_ "NAME"))))
-	   reports))))
-    reports))
-
-(defun org-lint-deprecated-export-blocks (ast)
-  (let ((deprecated '("ASCII" "BEAMER" "HTML" "LATEX" "MAN" "MARKDOWN" "MD"
-		      "ODT" "ORG" "TEXINFO")))
-    (org-element-map ast 'special-block
-      (lambda (b)
-	(let ((type (org-element-property :type b)))
-	  (when (member-ignore-case type deprecated)
-	    (list
-	     (org-element-property :post-affiliated b)
-	     (format
-	      "Deprecated syntax for export block.  Use \"BEGIN_EXPORT %s\" \
-instead"
-	      type))))))))
-
-(defun org-lint-deprecated-header-syntax (ast)
-  (let* ((deprecated-babel-properties
-	  (mapcar (lambda (arg) (symbol-name (car arg)))
-		  org-babel-common-header-args-w-values))
-	 (deprecated-re
-	  (format "\\`%s[ \t]" (regexp-opt deprecated-babel-properties t))))
-    (org-element-map ast '(keyword node-property)
-      (lambda (datum)
-	(let ((key (org-element-property :key datum)))
-	  (pcase (org-element-type datum)
-	    (`keyword
-	     (let ((value (org-element-property :value datum)))
-	       (and (string= key "PROPERTY")
-		    (string-match deprecated-re value)
-		    (list (org-element-property :begin datum)
-			  (format "Deprecated syntax for \"%s\".  \
-Use header-args instead"
-				  (match-string-no-properties 1 value))))))
-	    (`node-property
-	     (and (member-ignore-case key deprecated-babel-properties)
-		  (list
-		   (org-element-property :begin datum)
-		   (format "Deprecated syntax for \"%s\".  \
-Use :header-args: instead"
-			   key))))))))))
-
-(defun org-lint-missing-language-in-src-block (ast)
-  (org-element-map ast 'src-block
-    (lambda (b)
-      (unless (org-element-property :language b)
-	(list (org-element-property :post-affiliated b)
-	      "Missing language in source block")))))
-
-(defun org-lint-missing-backend-in-export-block (ast)
-  (org-element-map ast 'export-block
-    (lambda (b)
-      (unless (org-element-property :type b)
-	(list (org-element-property :post-affiliated b)
-	      "Missing back-end in export block")))))
-
-(defun org-lint-invalid-babel-call-block (ast)
-  (org-element-map ast 'babel-call
-    (lambda (b)
-      (cond
-       ((not (org-element-property :call b))
-	(list (org-element-property :post-affiliated b)
-	      "Invalid syntax in babel call block"))
-       ((let ((h (org-element-property :end-header b)))
-	  (and h (string-match-p "\\`\\[.*\\]\\'" h)))
-	(list
-	 (org-element-property :post-affiliated b)
-	 "Babel call's end header must not be wrapped within brackets"))))))
-
-(defun org-lint-deprecated-category-setup (ast)
-  (org-element-map ast 'keyword
-    (let (category-flag)
-      (lambda (k)
-	(cond
-	 ((not (string= (org-element-property :key k) "CATEGORY")) nil)
-	 (category-flag
-	  (list (org-element-property :post-affiliated k)
-		"Spurious CATEGORY keyword.  Set :CATEGORY: property instead"))
-	 (t (setf category-flag t) nil))))))
-
-(defun org-lint-invalid-coderef-link (ast)
-  (let ((info (list :parse-tree ast)))
-    (org-element-map ast 'link
-      (lambda (link)
-	(let ((ref (org-element-property :path link)))
-	  (and (equal (org-element-property :type link) "coderef")
-	       (not (ignore-errors (org-export-resolve-coderef ref info)))
-	       (list (org-element-property :begin link)
-		     (format "Unknown coderef \"%s\"" ref))))))))
-
-(defun org-lint-invalid-custom-id-link (ast)
-  (let ((info (list :parse-tree ast)))
-    (org-element-map ast 'link
-      (lambda (link)
-	(and (equal (org-element-property :type link) "custom-id")
-	     (not (ignore-errors (org-export-resolve-id-link link info)))
-	     (list (org-element-property :begin link)
-		   (format "Unknown custom ID \"%s\""
-			   (org-element-property :path link))))))))
-
-(defun org-lint-invalid-fuzzy-link (ast)
-  (let ((info (list :parse-tree ast)))
-    (org-element-map ast 'link
-      (lambda (link)
-	(and (equal (org-element-property :type link) "fuzzy")
-	     (not (ignore-errors (org-export-resolve-fuzzy-link link info)))
-	     (list (org-element-property :begin link)
-		   (format "Unknown fuzzy location \"%s\""
-			   (let ((path (org-element-property :path link)))
-			     (if (string-prefix-p "*" path)
-				 (substring path 1)
-			       path)))))))))
-
-(defun org-lint-invalid-id-link (ast)
-  (org-element-map ast 'link
-    (lambda (link)
-      (let ((id (org-element-property :path link)))
-	(and (equal (org-element-property :type link) "id")
-	     (not (org-id-find id))
-	     (list (org-element-property :begin link)
-		   (format "Unknown ID \"%s\"" id)))))))
-
-(defun org-lint-special-property-in-properties-drawer (ast)
-  (org-element-map ast 'node-property
-    (lambda (p)
-      (let ((key (org-element-property :key p)))
-	(and (member-ignore-case key org-special-properties)
-	     (list (org-element-property :begin p)
-		   (format
-		    "Special property \"%s\" found in a properties drawer"
-		    key)))))))
-
-(defun org-lint-obsolete-properties-drawer (ast)
-  (org-element-map ast 'drawer
-    (lambda (d)
-      (when (equal (org-element-property :drawer-name d) "PROPERTIES")
-	(let ((section (org-element-lineage d '(section))))
-	  (unless (org-element-map section 'property-drawer #'identity nil t)
-	    (list (org-element-property :post-affiliated d)
-		  (if (save-excursion
-			(goto-char (org-element-property :post-affiliated d))
-			(forward-line -1)
-			(or (org-at-heading-p) (org-at-planning-p)))
-		      "Incorrect contents for PROPERTIES drawer"
-		    "Incorrect location for PROPERTIES drawer"))))))))
-
-(defun org-lint-invalid-effort-property (ast)
-  (org-element-map ast 'node-property
-    (lambda (p)
-      (when (equal "EFFORT" (org-element-property :key p))
-	(let ((value (org-element-property :value p)))
-	  (and (org-string-nw-p value)
-	       (not (org-duration-p value))
-	       (list (org-element-property :begin p)
-		     (format "Invalid effort duration format: %S" value))))))))
-
-(defun org-lint-link-to-local-file (ast)
-  (org-element-map ast 'link
-    (lambda (l)
-      (when (equal (org-element-property :type l) "file")
-	(let ((file (org-link-unescape (org-element-property :path l))))
-	  (and (not (file-remote-p file))
-	       (not (file-exists-p file))
-	       (list (org-element-property :begin l)
-		     (format (if (org-element-lineage l '(link))
-				 "Link to non-existent image file \"%s\"\
- in link description"
-			       "Link to non-existent local file \"%s\"")
-			     file))))))))
-
-(defun org-lint-non-existent-setupfile-parameter (ast)
-  (org-element-map ast 'keyword
-    (lambda (k)
-      (when (equal (org-element-property :key k) "SETUPFILE")
-	(let ((file (org-unbracket-string
-		     "\"" "\""
-		     (org-element-property :value k))))
-	  (and (not (file-remote-p file))
-	       (not (file-exists-p file))
-	       (list (org-element-property :begin k)
-		     (format "Non-existent setup file \"%s\"" file))))))))
-
-(defun org-lint-wrong-include-link-parameter (ast)
-  (org-element-map ast 'keyword
-    (lambda (k)
-      (when (equal (org-element-property :key k) "INCLUDE")
-	(let* ((value (org-element-property :value k))
-	       (path
-		(and (string-match "^\\(\".+\"\\|\\S-+\\)[ \t]*" value)
-		     (save-match-data
-		       (org-unbracket-string "\"" "\"" (match-string 1 value))))))
-	  (if (not path)
-	      (list (org-element-property :post-affiliated k)
-		    "Missing location argument in INCLUDE keyword")
-	    (let* ((file (org-string-nw-p
-			  (if (string-match "::\\(.*\\)\\'" path)
-			      (substring path 0 (match-beginning 0))
-			    path)))
-		   (search (and (not (equal file path))
-				(org-string-nw-p (match-string 1 path)))))
-	      (if (and file
-		       (not (file-remote-p file))
-		       (not (file-exists-p file)))
-		  (list (org-element-property :post-affiliated k)
-			"Non-existent file argument in INCLUDE keyword")
-		(let* ((visiting (if file (find-buffer-visiting file)
-				   (current-buffer)))
-		       (buffer (or visiting (find-file-noselect file))))
-		  (unwind-protect
-		      (with-current-buffer buffer
-			(when (and search
-				   (not
-				    (ignore-errors
-				      (let ((org-link-search-inhibit-query t))
-					(org-link-search search nil t)))))
-			  (list (org-element-property :post-affiliated k)
-				(format
-				 "Invalid search part \"%s\" in INCLUDE keyword"
-				 search))))
-		    (unless visiting (kill-buffer buffer))))))))))))
-
-(defun org-lint-obsolete-include-markup (ast)
-  (let ((regexp (format "\\`\\(?:\".+\"\\|\\S-+\\)[ \t]+%s"
-			(regexp-opt
-			 '("ASCII" "BEAMER" "HTML" "LATEX" "MAN" "MARKDOWN" "MD"
-			   "ODT" "ORG" "TEXINFO")
-			 t))))
-    (org-element-map ast 'keyword
-      (lambda (k)
-	(when (equal (org-element-property :key k) "INCLUDE")
-	  (let ((case-fold-search t)
-		(value (org-element-property :value k)))
-	    (when (string-match regexp value)
-	      (let ((markup (match-string-no-properties 1 value)))
-		(list (org-element-property :post-affiliated k)
-		      (format "Obsolete markup \"%s\" in INCLUDE keyword.  \
-Use \"export %s\" instead"
-			      markup
-			      markup))))))))))
-
-(defun org-lint-unknown-options-item (ast)
-  (let ((allowed (delq nil
-		       (append
-			(mapcar (lambda (o) (nth 2 o)) org-export-options-alist)
-			(cl-mapcan
-			 (lambda (b)
-			   (mapcar (lambda (o) (nth 2 o))
-				   (org-export-backend-options b)))
-			 org-export-registered-backends))))
-	reports)
-    (org-element-map ast 'keyword
-      (lambda (k)
-	(when (string= (org-element-property :key k) "OPTIONS")
-	  (let ((value (org-element-property :value k))
-		(start 0))
-	    (while (string-match "\\(.+?\\):\\((.*?)\\|\\S-*\\)[ \t]*"
-				 value
-				 start)
-	      (setf start (match-end 0))
-	      (let ((item (match-string 1 value)))
-		(unless (member item allowed)
-		  (push (list (org-element-property :post-affiliated k)
-			      (format "Unknown OPTIONS item \"%s\"" item))
-			reports))))))))
-    reports))
-
-(defun org-lint-invalid-macro-argument-and-template (ast)
-  (let ((extract-placeholders
-	 (lambda (template)
-	   (let ((start 0)
-		 args)
-	     (while (string-match "\\$\\([1-9][0-9]*\\)" template start)
-	       (setf start (match-end 0))
-	       (push (string-to-number (match-string 1 template)) args))
-	     (sort (org-uniquify args) #'<))))
-	reports)
-    ;; Check arguments for macro templates.
-    (org-element-map ast 'keyword
-      (lambda (k)
-	(when (string= (org-element-property :key k) "MACRO")
-	  (let* ((value (org-element-property :value k))
-		 (name (and (string-match "^\\S-+" value)
-			    (match-string 0 value)))
-		 (template (and name
-				(org-trim (substring value (match-end 0))))))
-	    (cond
-	     ((not name)
-	      (push (list (org-element-property :post-affiliated k)
-			  "Missing name in MACRO keyword")
-		    reports))
-	     ((not (org-string-nw-p template))
-	      (push (list (org-element-property :post-affiliated k)
-			  "Missing template in macro \"%s\"" name)
-		    reports))
-	     (t
-	      (unless (let ((args (funcall extract-placeholders template)))
-			(equal (number-sequence 1 (or (org-last args) 0)) args))
-		(push (list (org-element-property :post-affiliated k)
-			    (format "Unused placeholders in macro \"%s\""
-				    name))
-		      reports))))))))
-    ;; Check arguments for macros.
-    (org-macro-initialize-templates)
-    (let ((templates (append
-		      (mapcar (lambda (m) (cons m "$1"))
-			      '("author" "date" "email" "title" "results"))
-		      org-macro-templates)))
-      (org-element-map ast 'macro
-	(lambda (macro)
-	  (let* ((name (org-element-property :key macro))
-		 (template (cdr (assoc-string name templates t))))
-	    (if (not template)
-		(push (list (org-element-property :begin macro)
-			    (format "Undefined macro \"%s\"" name))
-		      reports)
-	      (let ((arg-numbers (funcall extract-placeholders template)))
-		(when arg-numbers
-		  (let ((spurious-args
-			 (nthcdr (apply #'max arg-numbers)
-				 (org-element-property :args macro))))
-		    (when spurious-args
-		      (push
-		       (list (org-element-property :begin macro)
-			     (format "Unused argument%s in macro \"%s\": %s"
-				     (if (> (length spurious-args) 1) "s" "")
-				     name
-				     (mapconcat (lambda (a) (format "\"%s\"" a))
-						spurious-args
-						", ")))
-		       reports))))))))))
-    reports))
-
-(defun org-lint-undefined-footnote-reference (ast)
-  (let ((definitions (org-element-map ast 'footnote-definition
-		       (lambda (f) (org-element-property :label f)))))
-    (org-element-map ast 'footnote-reference
-      (lambda (f)
-	(let ((label (org-element-property :label f)))
-	  (and (eq 'standard (org-element-property :type f))
-	       (not (member label definitions))
-	       (list (org-element-property :begin f)
-		     (format "Missing definition for footnote [%s]"
-			     label))))))))
-
-(defun org-lint-unreferenced-footnote-definition (ast)
-  (let ((references (org-element-map ast 'footnote-reference
-		      (lambda (f) (org-element-property :label f)))))
-    (org-element-map ast 'footnote-definition
-      (lambda (f)
-	(let ((label (org-element-property :label f)))
-	  (and label
-	       (not (member label references))
-	       (list (org-element-property :post-affiliated f)
-		     (format "No reference for footnote definition [%s]"
-			     label))))))))
-
-(defun org-lint-colon-in-name (ast)
-  (org-element-map ast org-element-all-elements
-    (lambda (e)
-      (let ((name (org-element-property :name e)))
-	(and name
-	     (string-match-p ":" name)
-	     (list (progn
-		     (goto-char (org-element-property :begin e))
-		     (re-search-forward
-		      (format "^[ \t]*#\\+\\w+: +%s *$" (regexp-quote name)))
-		     (match-beginning 0))
-		   (format
-		    "Name \"%s\" contains a colon; Babel cannot use it as input"
-		    name)))))))
-
-(defun org-lint-misplaced-planning-info (_)
-  (let ((case-fold-search t)
-	reports)
-    (while (re-search-forward org-planning-line-re nil t)
-      (unless (memq (org-element-type (org-element-at-point))
-		    '(comment-block example-block export-block planning
-				    src-block verse-block))
-	(push (list (line-beginning-position) "Misplaced planning info line")
-	      reports)))
-    reports))
-
-(defun org-lint-incomplete-drawer (_)
-  (let (reports)
-    (while (re-search-forward org-drawer-regexp nil t)
-      (let ((name (org-trim (match-string-no-properties 0)))
-	    (element (org-element-at-point)))
-	(pcase (org-element-type element)
-	  ((or `drawer `property-drawer)
-	   (goto-char (org-element-property :end element))
-	   nil)
-	  ((or `comment-block `example-block `export-block `src-block
-	       `verse-block)
-	   nil)
-	  (_
-	   (push (list (line-beginning-position)
-		       (format "Possible incomplete drawer \"%s\"" name))
-		 reports)))))
-    reports))
-
-(defun org-lint-indented-diary-sexp (_)
-  (let (reports)
-    (while (re-search-forward "^[ \t]+%%(" nil t)
-      (unless (memq (org-element-type (org-element-at-point))
-		    '(comment-block diary-sexp example-block export-block
-				    src-block verse-block))
-	(push (list (line-beginning-position) "Possible indented diary-sexp")
-	      reports)))
-    reports))
-
-(defun org-lint-invalid-block (_)
-  (let ((case-fold-search t)
-	(regexp "^[ \t]*#\\+\\(BEGIN\\|END\\)\\(?::\\|_[^[:space:]]*\\)?[ \t]*")
-	reports)
-    (while (re-search-forward regexp nil t)
-      (let ((name (org-trim (buffer-substring-no-properties
-			     (line-beginning-position) (line-end-position)))))
-	(cond
-	 ((and (string-prefix-p "END" (match-string 1) t)
-	       (not (eolp)))
-	  (push (list (line-beginning-position)
-		      (format "Invalid block closing line \"%s\"" name))
-		reports))
-	 ((not (memq (org-element-type (org-element-at-point))
-		     '(center-block comment-block dynamic-block example-block
-				    export-block quote-block special-block
-				    src-block verse-block)))
-	  (push (list (line-beginning-position)
-		      (format "Possible incomplete block \"%s\""
-			      name))
-		reports)))))
-    reports))
-
-(defun org-lint-invalid-keyword-syntax (_)
-  (let ((regexp "^[ \t]*#\\+\\([^[:space:]:]*\\)\\(?: \\|$\\)")
-	(exception-re
-	 (format "[ \t]*#\\+%s\\(\\[.*\\]\\)?:\\(?: \\|$\\)"
-		 (regexp-opt org-element-dual-keywords)))
-	reports)
-    (while (re-search-forward regexp nil t)
-      (let ((name (match-string-no-properties 1)))
-	(unless (or (string-prefix-p "BEGIN" name t)
-		    (string-prefix-p "END" name t)
-		    (save-excursion
-		      (beginning-of-line)
-		      (let ((case-fold-search t)) (looking-at exception-re))))
-	  (push (list (match-beginning 0)
-		      (format "Possible missing colon in keyword \"%s\"" name))
-		reports))))
-    reports))
-
-(defun org-lint-extraneous-element-in-footnote-section (ast)
-  (org-element-map ast 'headline
-    (lambda (h)
-      (and (org-element-property :footnote-section-p h)
-	   (org-element-map (org-element-contents h)
-	       (cl-remove-if
-		(lambda (e)
-		  (memq e '(comment comment-block footnote-definition
-				    property-drawer section)))
-		org-element-all-elements)
-	     (lambda (e)
-	       (not (and (eq (org-element-type e) 'headline)
-			 (org-element-property :commentedp e))))
-	     nil t '(footnote-definition property-drawer))
-	   (list (org-element-property :begin h)
-		 "Extraneous elements in footnote section are not exported")))))
-
-(defun org-lint-quote-section (ast)
-  (org-element-map ast '(headline inlinetask)
-    (lambda (h)
-      (let ((title (org-element-property :raw-value h)))
-	(and (or (string-prefix-p "QUOTE " title)
-		 (string-prefix-p (concat org-comment-string " QUOTE ") title))
-	     (list (org-element-property :begin h)
-		   "Deprecated QUOTE section"))))))
-
-(defun org-lint-file-application (ast)
-  (org-element-map ast 'link
-    (lambda (l)
-      (let ((app (org-element-property :application l)))
-	(and app
-	     (list (org-element-property :begin l)
-		   (format "Deprecated \"file+%s\" link type" app)))))))
-
-(defun org-lint-wrong-header-argument (ast)
-  (let* ((reports)
-	 (verify
-	  (lambda (datum language headers)
-	    (let ((allowed
-		   ;; If LANGUAGE is specified, restrict allowed
-		   ;; headers to both LANGUAGE-specific and default
-		   ;; ones.  Otherwise, accept headers from any loaded
-		   ;; language.
-		   (append
-		    org-babel-header-arg-names
-		    (cl-mapcan
-		     (lambda (l)
-		       (let ((v (intern (format "org-babel-header-args:%s" l))))
-			 (and (boundp v) (mapcar #'car (symbol-value v)))))
-		     (if language (list language)
-		       (mapcar #'car org-babel-load-languages))))))
-	      (dolist (header headers)
-		(let ((h (symbol-name (car header)))
-		      (p (or (org-element-property :post-affiliated datum)
-			     (org-element-property :begin datum))))
-		  (cond
-		   ((not (string-prefix-p ":" h))
-		    (push
-		     (list p
-			   (format "Missing colon in header argument \"%s\"" h))
-		     reports))
-		   ((assoc-string (substring h 1) allowed))
-		   (t (push (list p (format "Unknown header argument \"%s\"" h))
-			    reports)))))))))
-    (org-element-map ast '(babel-call inline-babel-call inline-src-block keyword
-				      node-property src-block)
-      (lambda (datum)
-	(pcase (org-element-type datum)
-	  ((or `babel-call `inline-babel-call)
-	   (funcall verify
-		    datum
-		    nil
-		    (cl-mapcan #'org-babel-parse-header-arguments
-			       (list
-				(org-element-property :inside-header datum)
-				(org-element-property :end-header datum)))))
-	  (`inline-src-block
-	   (funcall verify
-		    datum
-		    (org-element-property :language datum)
-		    (org-babel-parse-header-arguments
-		     (org-element-property :parameters datum))))
-	  (`keyword
-	   (when (string= (org-element-property :key datum) "PROPERTY")
-	     (let ((value (org-element-property :value datum)))
-	       (when (string-match "\\`header-args\\(?::\\(\\S-+\\)\\)?\\+? *"
-				   value)
-		 (funcall verify
-			  datum
-			  (match-string 1 value)
-			  (org-babel-parse-header-arguments
-			   (substring value (match-end 0))))))))
-	  (`node-property
-	   (let ((key (org-element-property :key datum)))
-	     (when (let ((case-fold-search t))
-		     (string-match "\\`HEADER-ARGS\\(?::\\(\\S-+\\)\\)?\\+?"
-				   key))
-	       (funcall verify
-			datum
-			(match-string 1 key)
-			(org-babel-parse-header-arguments
-			 (org-element-property :value datum))))))
-	  (`src-block
-	   (funcall verify
-		    datum
-		    (org-element-property :language datum)
-		    (cl-mapcan #'org-babel-parse-header-arguments
-			       (cons (org-element-property :parameters datum)
-				     (org-element-property :header datum))))))))
-    reports))
-
-(defun org-lint-wrong-header-value (ast)
-  (let (reports)
-    (org-element-map ast
-	'(babel-call inline-babel-call inline-src-block src-block)
-      (lambda (datum)
-	(let* ((type (org-element-type datum))
-	       (language (org-element-property :language datum))
-	       (allowed-header-values
-		(append (and language
-			     (let ((v (intern (concat "org-babel-header-args:"
-						      language))))
-			       (and (boundp v) (symbol-value v))))
-			org-babel-common-header-args-w-values))
-	       (datum-header-values
-		(org-babel-parse-header-arguments
-		 (org-trim
-		  (pcase type
-		    (`src-block
-		     (mapconcat
-		      #'identity
-		      (cons (org-element-property :parameters datum)
-			    (org-element-property :header datum))
-		      " "))
-		    (`inline-src-block
-		     (or (org-element-property :parameters datum) ""))
-		    (_
-		     (concat
-		      (org-element-property :inside-header datum)
-		      " "
-		      (org-element-property :end-header datum))))))))
-	  (dolist (header datum-header-values)
-	    (let ((allowed-values
-		   (cdr (assoc-string (substring (symbol-name (car header)) 1)
-				      allowed-header-values))))
-	      (unless (memq allowed-values '(:any nil))
-		(let ((values (cdr header))
-		      groups-alist)
-		  (dolist (v (if (stringp values) (split-string values)
-			       (list values)))
-		    (let ((valid-value nil))
-		      (catch 'exit
-			(dolist (group allowed-values)
-			  (cond
-			   ((not (funcall
-				  (if (stringp v) #'assoc-string #'assoc)
-				  v group))
-			    (when (memq :any group)
-			      (setf valid-value t)
-			      (push (cons group v) groups-alist)))
-			   ((assq group groups-alist)
-			    (push
-			     (list
-			      (or (org-element-property :post-affiliated datum)
-				  (org-element-property :begin datum))
-			      (format
-			       "Forbidden combination in header \"%s\": %s, %s"
-			       (car header)
-			       (cdr (assq group groups-alist))
-			       v))
-			     reports)
-			    (throw 'exit nil))
-			   (t (push (cons group v) groups-alist)
-			      (setf valid-value t))))
-			(unless valid-value
-			  (push
-			   (list
-			    (or (org-element-property :post-affiliated datum)
-				(org-element-property :begin datum))
-			    (format "Unknown value \"%s\" for header \"%s\""
-				    v
-				    (car header)))
-			   reports))))))))))))
-    reports))
-
-(defun org-lint-empty-headline-with-tags (ast)
-  (org-element-map ast '(headline inlinetask)
-    (lambda (h)
-      (let ((title (org-element-property :raw-value h)))
-	(and (string-match-p "\\`:[[:alnum:]_@#%:]+:\\'" title)
-	     (list (org-element-property :begin h)
-		   (format "Headline containing only tags is ambiguous: %S"
-			   title)))))))
-
-
-;;; Reports UI
-
-(defvar org-lint--report-mode-map
-  (let ((map (make-sparse-keymap)))
-    (set-keymap-parent map tabulated-list-mode-map)
-    (define-key map (kbd "RET") 'org-lint--jump-to-source)
-    (define-key map (kbd "TAB") 'org-lint--show-source)
-    (define-key map (kbd "C-j") 'org-lint--show-source)
-    (define-key map (kbd "h") 'org-lint--hide-checker)
-    (define-key map (kbd "i") 'org-lint--ignore-checker)
-    map)
-  "Local keymap for `org-lint--report-mode' buffers.")
-
-(define-derived-mode org-lint--report-mode tabulated-list-mode "OrgLint"
-  "Major mode used to display reports emitted during linting.
-\\{org-lint--report-mode-map}"
-  (setf tabulated-list-format
-	`[("Line" 6
-	   (lambda (a b)
-	     (< (string-to-number (aref (cadr a) 0))
-		(string-to-number (aref (cadr b) 0))))
-	   :right-align t)
-	  ("Trust" 5 t)
-	  ("Warning" 0 t)])
-  (tabulated-list-init-header))
-
-(defun org-lint--generate-reports (buffer checkers)
-  "Generate linting report for BUFFER.
-
-CHECKERS is the list of checkers used.
-
-Return an alist (ID [LINE TRUST DESCRIPTION CHECKER]), suitable
-for `tabulated-list-printer'."
-  (with-current-buffer buffer
-    (save-excursion
-      (goto-char (point-min))
-      (let ((ast (org-element-parse-buffer))
-	    (id 0)
-	    (last-line 1)
-	    (last-pos 1))
-	;; Insert unique ID for each report.  Replace buffer positions
-	;; with line numbers.
-	(mapcar
-	 (lambda (report)
-	   (list
-	    (cl-incf id)
-	    (apply #'vector
-		   (cons
-		    (progn
-		      (goto-char (car report))
-		      (beginning-of-line)
-		      (prog1 (number-to-string
-			      (cl-incf last-line
-				       (count-lines last-pos (point))))
-			(setf last-pos (point))))
-		    (cdr report)))))
-	 ;; Insert trust level in generated reports.  Also sort them
-	 ;; by buffer position in order to optimize lines computation.
-	 (sort (cl-mapcan
-		(lambda (c)
-		  (let ((trust (symbol-name (org-lint-checker-trust c))))
-		    (mapcar
-		     (lambda (report)
-		       (list (car report) trust (nth 1 report) c))
-		     (save-excursion
-		       (funcall
-			(intern (format "org-lint-%s"
-					(org-lint-checker-name c)))
-			ast)))))
-		checkers)
-	       #'car-less-than-car))))))
-
-(defvar-local org-lint--source-buffer nil
-  "Source buffer associated to current report buffer.")
-
-(defvar-local org-lint--local-checkers nil
-  "List of checkers used to build current report.")
-
-(defun org-lint--refresh-reports ()
-  (setq tabulated-list-entries
-	(org-lint--generate-reports org-lint--source-buffer
-				    org-lint--local-checkers))
-  (tabulated-list-print))
-
-(defun org-lint--current-line ()
-  "Return current report line, as a number."
-  (string-to-number (aref (tabulated-list-get-entry) 0)))
-
-(defun org-lint--current-checker (&optional entry)
-  "Return current report checker.
-When optional argument ENTRY is non-nil, use this entry instead
-of current one."
-  (aref (if entry (nth 1 entry) (tabulated-list-get-entry)) 3))
-
-(defun org-lint--display-reports (source checkers)
-  "Display linting reports for buffer SOURCE.
-CHECKERS is the list of checkers used."
-  (let ((buffer (get-buffer-create "*Org Lint*")))
-    (with-current-buffer buffer
-      (org-lint--report-mode)
-      (setf org-lint--source-buffer source)
-      (setf org-lint--local-checkers checkers)
-      (org-lint--refresh-reports)
-      (tabulated-list-print)
-      (add-hook 'tabulated-list-revert-hook #'org-lint--refresh-reports nil t))
-    (pop-to-buffer buffer)))
-
-(defun org-lint--jump-to-source ()
-  "Move to source line that generated the report at point."
-  (interactive)
-  (let ((l (org-lint--current-line)))
-    (switch-to-buffer-other-window org-lint--source-buffer)
-    (org-goto-line l)
-    (org-show-set-visibility 'local)
-    (recenter)))
-
-(defun org-lint--show-source ()
-  "Show source line that generated the report at point."
-  (interactive)
-  (let ((buffer (current-buffer)))
-    (org-lint--jump-to-source)
-    (switch-to-buffer-other-window buffer)))
-
-(defun org-lint--hide-checker ()
-  "Hide all reports from checker that generated the report at point."
-  (interactive)
-  (let ((c (org-lint--current-checker)))
-    (setf tabulated-list-entries
-	  (cl-remove-if (lambda (e) (equal c (org-lint--current-checker e)))
-			 tabulated-list-entries))
-    (tabulated-list-print)))
-
-(defun org-lint--ignore-checker ()
-  "Ignore all reports from checker that generated the report at point.
-Checker will also be ignored in all subsequent reports."
-  (interactive)
-  (setf org-lint--local-checkers
-	(remove (org-lint--current-checker) org-lint--local-checkers))
-  (org-lint--hide-checker))
-
-
-;;; Public function
-
-;;;###autoload
-(defun org-lint (&optional arg)
-  "Check current Org buffer for syntax mistakes.
-
-By default, run all checkers.  With a `\\[universal-argument]' prefix ARG, \
-select one
-category of checkers only.  With a `\\[universal-argument] \
-\\[universal-argument]' prefix, run one precise
-checker by its name.
-
-ARG can also be a list of checker names, as symbols, to run."
-  (interactive "P")
-  (unless (derived-mode-p 'org-mode) (user-error "Not in an Org buffer"))
-  (when (called-interactively-p 'any)
-    (message "Org linting process starting..."))
-  (let ((checkers
-	 (pcase arg
-	   (`nil org-lint--checkers)
-	   (`(4)
-	    (let ((category
-		   (completing-read
-		    "Checker category: "
-		    (mapcar #'org-lint-checker-categories org-lint--checkers)
-		    nil t)))
-	      (cl-remove-if-not
-	       (lambda (c)
-		 (assoc-string (org-lint-checker-categories c) category))
-	       org-lint--checkers)))
-	   (`(16)
-	    (list
-	     (let ((name (completing-read
-			  "Checker name: "
-			  (mapcar #'org-lint-checker-name org-lint--checkers)
-			  nil t)))
-	       (catch 'exit
-		 (dolist (c org-lint--checkers)
-		   (when (string= (org-lint-checker-name c) name)
-		     (throw 'exit c)))))))
-	   ((pred consp)
-	    (cl-remove-if-not (lambda (c) (memq (org-lint-checker-name c) arg))
-			       org-lint--checkers))
-	   (_ (user-error "Invalid argument `%S' for `org-lint'" arg)))))
-    (if (not (called-interactively-p 'any))
-	(org-lint--generate-reports (current-buffer) checkers)
-      (org-lint--display-reports (current-buffer) checkers)
-      (message "Org linting process completed"))))
-
-
-(provide 'org-lint)
-;;; org-lint.el ends here
diff --git a/elpa/org-9.1.14/org-lint.elc b/elpa/org-9.1.14/org-lint.elc
deleted file mode 100644
index f83629e..0000000
--- a/elpa/org-9.1.14/org-lint.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-list.el b/elpa/org-9.1.14/org-list.el
deleted file mode 100644
index 5e5e7c4..0000000
--- a/elpa/org-9.1.14/org-list.el
+++ /dev/null
@@ -1,3613 +0,0 @@
-;;; org-list.el --- Plain lists for Org              -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;;	   Bastien Guerry <bzg@gnu.org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the code dealing with plain lists in Org mode.
-
-;; The core concept behind lists is their structure.  A structure is
-;; a snapshot of the list, in the shape of a data tree (see
-;; `org-list-struct').
-
-;; Once the list structure is stored, it is possible to make changes
-;; on it that will be mirrored to the real list or to get information
-;; about the list, using accessors and methods provided in the
-;; library.  Most of them require the use of one or two helper
-;; functions, namely `org-list-parents-alist' and
-;; `org-list-prevs-alist'.
-
-;; Structure is eventually applied to the buffer with
-;; `org-list-write-struct'.  This function repairs (bullets,
-;; indentation, checkboxes) the list in the process.  It should be
-;; called near the end of any function working on structures.
-
-;; Thus, a function applying to lists should usually follow this
-;; template:
-
-;; 1. Verify point is in a list and grab item beginning (with the same
-;;    function `org-in-item-p').  If the function requires the cursor
-;;    to be at item's bullet, `org-at-item-p' is more selective.  It
-;;    is also possible to move point to the closest item with
-;;    `org-list-search-backward', or `org-list-search-forward',
-;;    applied to the function `org-item-beginning-re'.
-
-;; 2. Get list structure with `org-list-struct'.
-
-;; 3. Compute one, or both, helper functions,
-;;    (`org-list-parents-alist', `org-list-prevs-alist') depending on
-;;    needed accessors.
-
-;; 4. Proceed with the modifications, using methods and accessors.
-
-;; 5. Verify and apply structure to buffer, using
-;;    `org-list-write-struct'.
-
-;; 6. If changes made to the list might have modified check-boxes,
-;;    call `org-update-checkbox-count-maybe'.
-
-;; Computing a structure can be a costly operation on huge lists (a
-;; few thousand lines long).  Thus, code should follow the rule:
-;; "collect once, use many".  As a corollary, it is usually a bad idea
-;; to use directly an interactive function inside the code, as those,
-;; being independent entities, read the whole list structure another
-;; time.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org-macs)
-(require 'org-compat)
-
-(defvar org-M-RET-may-split-line)
-(defvar org-auto-align-tags)
-(defvar org-blank-before-new-entry)
-(defvar org-clock-string)
-(defvar org-closed-string)
-(defvar org-deadline-string)
-(defvar org-description-max-indent)
-(defvar org-done-keywords)
-(defvar org-drawer-regexp)
-(defvar org-element-all-objects)
-(defvar org-inhibit-startup)
-(defvar org-odd-levels-only)
-(defvar org-outline-regexp-bol)
-(defvar org-scheduled-string)
-(defvar org-todo-line-regexp)
-(defvar org-ts-regexp)
-(defvar org-ts-regexp-both)
-
-(declare-function org-at-heading-p "org" (&optional invisible-ok))
-(declare-function org-back-to-heading "org" (&optional invisible-ok))
-(declare-function org-before-first-heading-p "org" ())
-(declare-function org-combine-plists "org" (&rest plists))
-(declare-function org-current-level "org" ())
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-context "org-element" (&optional element))
-(declare-function org-element-interpret-data "org-element" (data))
-(declare-function
- org-element-lineage "org-element" (blob &optional types with-self))
-(declare-function org-element-macro-interpreter "org-element" (macro ##))
-(declare-function
- org-element-map "org-element"
- (data types fun &optional info first-match no-recursion with-affiliated))
-(declare-function org-element-normalize-string "org-element" (s))
-(declare-function org-element-parse-buffer "org-element"
-		  (&optional granularity visible-only))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-put-property "org-element"
-		  (element property value))
-(declare-function org-element-set-element "org-element" (old new))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-element-update-syntax "org-element" ())
-(declare-function org-end-of-meta-data "org" (&optional full))
-(declare-function org-entry-get "org"
-		  (pom property &optional inherit literal-nil))
-(declare-function org-export-create-backend "ox" (&rest rest) t)
-(declare-function org-export-data-with-backend "ox" (data backend info))
-(declare-function org-export-get-backend "ox" (name))
-(declare-function org-export-get-environment "ox"
-		  (&optional backend subtreep ext-plist))
-(declare-function org-export-get-next-element "ox"
-		  (blob info &optional n))
-(declare-function org-export-with-backend "ox"
-		  (backend data &optional contents info))
-(declare-function org-fix-tags-on-the-fly "org" ())
-(declare-function org-get-indentation "org" (&optional line))
-(declare-function org-get-todo-state "org" ())
-(declare-function org-in-block-p "org" (names))
-(declare-function org-in-regexp "org" (re &optional nlines visually))
-(declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
-(declare-function org-inlinetask-goto-end "org-inlinetask" ())
-(declare-function org-inlinetask-in-task-p "org-inlinetask" ())
-(declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
-(declare-function org-level-increment "org" ())
-(declare-function org-narrow-to-subtree "org" ())
-(declare-function org-outline-level "org" ())
-(declare-function org-previous-line-empty-p "org" ())
-(declare-function org-reduced-level "org" (L))
-(declare-function org-remove-indentation "org" (code &optional n))
-(declare-function org-show-subtree "org" ())
-(declare-function org-sort-remove-invisible "org" (S))
-(declare-function org-time-string-to-seconds "org" (s))
-(declare-function org-timer-hms-to-secs "org-timer" (hms))
-(declare-function org-timer-item "org-timer" (&optional arg))
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function org-uniquify "org" (list))
-(declare-function org-invisible-p "org" (&optional pos))
-(declare-function outline-flag-region "outline" (from to flag))
-(declare-function outline-next-heading "outline" ())
-(declare-function outline-previous-heading "outline" ())
-
-
-
-;;; Configuration variables
-
-(defgroup org-plain-lists nil
-  "Options concerning plain lists in Org mode."
-  :tag "Org Plain lists"
-  :group 'org-structure)
-
-(defcustom org-cycle-include-plain-lists t
-  "When t, make TAB cycle visibility on plain list items.
-Cycling plain lists works only when the cursor is on a plain list
-item.  When the cursor is on an outline heading, plain lists are
-treated as text.  This is the most stable way of handling this,
-which is why it is the default.
-
-When this is the symbol `integrate', then integrate plain list
-items when cycling, as if they were children of outline headings.
-
-This setting can lead to strange effects when switching visibility
-to `children', because the first \"child\" in a subtree decides
-what children should be listed.  If that first \"child\" is a
-plain list item with an implied large level number, all true
-children and grand children of the outline heading will be
-exposed in a children' view."
-  :group 'org-plain-lists
-  :group 'org-cycle
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "With cursor in plain list (recommended)" t)
-	  (const :tag "As children of outline headings" integrate)))
-
-(defcustom org-list-demote-modify-bullet nil
-  "Default bullet type installed when demoting an item.
-This is an association list, for each bullet type, this alist will point
-to the bullet that should be used when this item is demoted.
-For example,
-
- (setq org-list-demote-modify-bullet
-       \\='((\"+\" . \"-\") (\"-\" . \"+\") (\"*\" . \"+\")))
-
-will make
-
-  + Movies
-    + Silence of the Lambs
-    + My Cousin Vinny
-  + Books
-    + The Hunt for Red October
-    + The Road to Omaha
-
-into
-
-  + Movies
-    - Silence of the Lambs
-    - My Cousin Vinny
-  + Books
-    - The Hunt for Red October
-    - The Road to Omaha"
-  :group 'org-plain-lists
-  :type '(repeat
-	  (cons
-	   (choice :tag "If the current bullet is  "
-		   (const "-")
-		   (const "+")
-		   (const "*")
-		   (const "1.")
-		   (const "1)"))
-	   (choice :tag "demotion will change it to"
-		   (const "-")
-		   (const "+")
-		   (const "*")
-		   (const "1.")
-		   (const "1)")))))
-
-(defcustom org-plain-list-ordered-item-terminator t
-  "The character that makes a line with leading number an ordered list item.
-Valid values are ?. and ?\).  To get both terminators, use t.
-
-This variable needs to be set before org.el is loaded.  If you
-need to make a change while Emacs is running, use the customize
-interface or run the following code after updating it:
-
-  `\\[org-element-update-syntax]'"
-  :group 'org-plain-lists
-  :type '(choice (const :tag "dot like in \"2.\"" ?.)
-		 (const :tag "paren like in \"2)\"" ?\))
-		 (const :tag "both" t))
-  :set (lambda (var val) (set var val)
-	 (when (featurep 'org-element) (org-element-update-syntax))))
-
-(defcustom org-list-allow-alphabetical nil
-  "Non-nil means single character alphabetical bullets are allowed.
-
-Both uppercase and lowercase are handled.  Lists with more than
-26 items will fallback to standard numbering.  Alphabetical
-counters like \"[@c]\" will be recognized.
-
-This variable needs to be set before org.el is loaded.  If you
-need to make a change while Emacs is running, use the customize
-interface or run the following code after updating it:
-
-  `\\[org-element-update-syntax]'"
-  :group 'org-plain-lists
-  :version "24.1"
-  :type 'boolean
-  :set (lambda (var val) (set var val)
-	 (when (featurep 'org-element) (org-element-update-syntax))))
-
-(defcustom org-list-two-spaces-after-bullet-regexp nil
-  "A regular expression matching bullets that should have 2 spaces after them.
-When nil, no bullet will have two spaces after them.  When
-a string, it will be used as a regular expression.  When the
-bullet type of a list is changed, the new bullet type will be
-matched against this regexp.  If it matches, there will be two
-spaces instead of one after the bullet in each item of the list."
-  :group 'org-plain-lists
-  :type '(choice
-	  (const :tag "never" nil)
-	  (regexp)))
-
-(defcustom org-list-automatic-rules '((checkbox . t)
-				      (indent . t))
-  "Non-nil means apply set of rules when acting on lists.
-\\<org-mode-map>
-By default, automatic actions are taken when using
-  `\\[org-meta-return]',
-  `\\[org-metaright]',
-  `\\[org-metaleft]',
-  `\\[org-shiftmetaright]',
-  `\\[org-shiftmetaleft]',
-  `\\[org-ctrl-c-minus]',
-  `\\[org-toggle-checkbox]',
-  `\\[org-insert-todo-heading]'.
-
-You can disable individually these rules by setting them to nil.
-Valid rules are:
-
-checkbox  when non-nil, checkbox statistics is updated each time
-          you either insert a new checkbox or toggle a checkbox.
-indent    when non-nil, indenting or outdenting list top-item
-          with its subtree will move the whole list and
-          outdenting a list whose bullet is * to column 0 will
-          change that bullet to \"-\"."
-  :group 'org-plain-lists
-  :version "24.1"
-  :type '(alist :tag "Sets of rules"
-		:key-type
-		(choice
-		 (const :tag "Checkbox" checkbox)
-		 (const :tag "Indent" indent))
-		:value-type
-		(boolean :tag "Activate" :value t)))
-
-(defcustom org-list-use-circular-motion nil
-  "Non-nil means commands implying motion in lists should be cyclic.
-\\<org-mode-map>
-In that case, the item following the last item is the first one,
-and the item preceding the first item is the last one.
-
-This affects the behavior of
-  `\\[org-move-item-up]',
-  `\\[org-move-item-down]',
-  `\\[org-next-item]',
-  `\\[org-previous-item]'."
-  :group 'org-plain-lists
-  :version "24.1"
-  :type 'boolean)
-
-(defvar org-checkbox-statistics-hook nil
-  "Hook that is run whenever Org thinks checkbox statistics should be updated.
-This hook runs even if checkbox rule in
-`org-list-automatic-rules' does not apply, so it can be used to
-implement alternative ways of collecting statistics
-information.")
-
-(defcustom org-checkbox-hierarchical-statistics t
-  "Non-nil means checkbox statistics counts only the state of direct children.
-When nil, all boxes below the cookie are counted.
-This can be set to nil on a per-node basis using a COOKIE_DATA property
-with the word \"recursive\" in the value."
-  :group 'org-plain-lists
-  :type 'boolean)
-
-(defcustom org-list-description-max-indent 20
-  "Maximum indentation for the second line of a description list.
-When the indentation would be larger than this, it will become
-5 characters instead."
-  :group 'org-plain-lists
-  :type 'integer)
-
-(defcustom org-list-indent-offset 0
-  "Additional indentation for sub-items in a list.
-By setting this to a small number, usually 1 or 2, one can more
-clearly distinguish sub-items in a list."
-  :group 'org-plain-lists
-  :version "24.1"
-  :type 'integer)
-
-(defcustom org-list-radio-list-templates
-  '((latex-mode "% BEGIN RECEIVE ORGLST %n
-% END RECEIVE ORGLST %n
-\\begin{comment}
-#+ORGLST: SEND %n org-list-to-latex
--
-\\end{comment}\n")
-    (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
-@c END RECEIVE ORGLST %n
-@ignore
-#+ORGLST: SEND %n org-list-to-texinfo
--
-@end ignore\n")
-    (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
-<!-- END RECEIVE ORGLST %n -->
-<!--
-#+ORGLST: SEND %n org-list-to-html
--
--->\n"))
-  "Templates for radio lists in different major modes.
-All occurrences of %n in a template will be replaced with the name of the
-list, obtained by prompting the user."
-  :group 'org-plain-lists
-  :type '(repeat
-	  (list (symbol :tag "Major mode")
-		(string :tag "Format"))))
-
-(defvar org-list-forbidden-blocks '("example" "verse" "src" "export")
-  "Names of blocks where lists are not allowed.
-Names must be in lower case.")
-
-(defvar org-list-export-context '(block inlinetask)
-  "Context types where lists will be interpreted during export.
-
-Valid types are `drawer', `inlinetask' and `block'.  More
-specifically, type `block' is determined by the variable
-`org-list-forbidden-blocks'.")
-
-
-
-;;; Predicates and regexps
-
-(defconst org-list-end-re "^[ \t]*\n[ \t]*\n"
-  "Regex matching the end of a plain list.")
-
-(defconst org-list-full-item-re
-  (concat "^[ \t]*\\(\\(?:[-+*]\\|\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\)\\(?:[ \t]+\\|$\\)\\)"
-	  "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
-	  "\\(?:\\(\\[[ X-]\\]\\)\\(?:[ \t]+\\|$\\)\\)?"
-	  "\\(?:\\(.*\\)[ \t]+::\\(?:[ \t]+\\|$\\)\\)?")
-  "Matches a list item and puts everything into groups:
-group 1: bullet
-group 2: counter
-group 3: checkbox
-group 4: description tag")
-
-(defun org-item-re ()
-  "Return the correct regular expression for plain lists."
-  (let ((term (cond
-	       ((eq org-plain-list-ordered-item-terminator t) "[.)]")
-	       ((= org-plain-list-ordered-item-terminator ?\)) ")")
-	       ((= org-plain-list-ordered-item-terminator ?.) "\\.")
-	       (t "[.)]")))
-	(alpha (if org-list-allow-alphabetical "\\|[A-Za-z]" "")))
-    (concat "\\([ \t]*\\([-+]\\|\\(\\([0-9]+" alpha "\\)" term
-	    "\\)\\)\\|[ \t]+\\*\\)\\([ \t]+\\|$\\)")))
-
-(defsubst org-item-beginning-re ()
-  "Regexp matching the beginning of a plain list item."
-  (concat "^" (org-item-re)))
-
-(defun org-list-at-regexp-after-bullet-p (regexp)
-  "Is point at a list item with REGEXP after bullet?"
-  (and (org-at-item-p)
-       (save-excursion
-	 (goto-char (match-end 0))
-	 (let ((counter-re (concat "\\(?:\\[@\\(?:start:\\)?"
-				   (if org-list-allow-alphabetical
-				       "\\([0-9]+\\|[A-Za-z]\\)"
-				     "[0-9]+")
-				   "\\][ \t]*\\)")))
-	   ;; Ignore counter if any
-	   (when (looking-at counter-re) (goto-char (match-end 0))))
-	 (looking-at regexp))))
-
-(defun org-list-in-valid-context-p ()
-  "Is point in a context where lists are allowed?"
-  (not (org-in-block-p org-list-forbidden-blocks)))
-
-(defun org-in-item-p ()
-  "Return item beginning position when in a plain list, nil otherwise."
-  (save-excursion
-    (beginning-of-line)
-    (let* ((case-fold-search t)
-	   (context (org-list-context))
-	   (lim-up (car context))
-	   (inlinetask-re (and (featurep 'org-inlinetask)
-			       (org-inlinetask-outline-regexp)))
-	   (item-re (org-item-re))
-	   ;; Indentation isn't meaningful when point starts at an empty
-	   ;; line or an inline task.
-	   (ind-ref (if (or (looking-at "^[ \t]*$")
-			    (and inlinetask-re (looking-at inlinetask-re)))
-			10000
-		      (org-get-indentation))))
-      (cond
-       ((eq (nth 2 context) 'invalid) nil)
-       ((looking-at item-re) (point))
-       (t
-	;; Detect if cursor in amidst `org-list-end-re'.  First, count
-	;; number HL of hard lines it takes, then call `org-in-regexp'
-	;; to compute its boundaries END-BOUNDS.  When point is
-	;; in-between, move cursor before regexp beginning.
-	(let ((hl 0) (i -1) end-bounds)
-	  (when (and (progn
-		       (while (setq i (string-match
-				       "[\r\n]" org-list-end-re (1+ i)))
-			 (setq hl (1+ hl)))
-		       (setq end-bounds (org-in-regexp org-list-end-re hl)))
-		     (>= (point) (car end-bounds))
-		     (< (point) (cdr end-bounds)))
-	    (goto-char (car end-bounds))
-	    (forward-line -1)))
-	;; Look for an item, less indented that reference line.
-	(catch 'exit
-	  (while t
-	    (let ((ind (org-get-indentation)))
-	      (cond
-	       ;; This is exactly what we want.
-	       ((and (looking-at item-re) (< ind ind-ref))
-		(throw 'exit (point)))
-	       ;; At upper bound of search or looking at the end of a
-	       ;; previous list: search is over.
-	       ((<= (point) lim-up) (throw 'exit nil))
-	       ((looking-at org-list-end-re) (throw 'exit nil))
-	       ;; Skip blocks, drawers, inline-tasks, blank lines
-	       ((and (looking-at "^[ \t]*#\\+end_")
-		     (re-search-backward "^[ \t]*#\\+begin_" lim-up t)))
-	       ((and (looking-at "^[ \t]*:END:")
-		     (re-search-backward org-drawer-regexp lim-up t))
-		(beginning-of-line))
-	       ((and inlinetask-re (looking-at inlinetask-re))
-		(org-inlinetask-goto-beginning)
-		(forward-line -1))
-	       ((looking-at "^[ \t]*$") (forward-line -1))
-	       ;; Text at column 0 cannot belong to a list: stop.
-	       ((zerop ind) (throw 'exit nil))
-	       ;; Normal text less indented than reference line, take
-	       ;; it as new reference.
-	       ((< ind ind-ref)
-		(setq ind-ref ind)
-		(forward-line -1))
-	       (t (forward-line -1)))))))))))
-
-(defun org-at-item-p ()
-  "Is point in a line starting a hand-formatted item?"
-  (save-excursion
-    (beginning-of-line)
-    (and (looking-at (org-item-re)) (org-list-in-valid-context-p))))
-
-(defun org-at-item-bullet-p ()
-  "Is point at the bullet of a plain list item?"
-  (and (org-at-item-p)
-       (not (member (char-after) '(?\  ?\t)))
-       (< (point) (match-end 0))))
-
-(defun org-at-item-timer-p ()
-  "Is point at a line starting a plain list item with a timer?"
-  (org-list-at-regexp-after-bullet-p
-   "\\([0-9]+:[0-9]+:[0-9]+\\)[ \t]+::[ \t]+"))
-
-(defun org-at-item-description-p ()
-  "Is point at a description list item?"
-  (org-list-at-regexp-after-bullet-p "\\(\\S-.+\\)[ \t]+::\\([ \t]+\\|$\\)"))
-
-(defun org-at-item-checkbox-p ()
-  "Is point at a line starting a plain-list item with a checklet?"
-  (org-list-at-regexp-after-bullet-p "\\(\\[[- X]\\]\\)[ \t]+"))
-
-(defun org-at-item-counter-p ()
-  "Is point at a line starting a plain-list item with a counter?"
-  (and (org-at-item-p)
-       (looking-at org-list-full-item-re)
-       (match-string 2)))
-
-
-
-;;; Structures and helper functions
-
-(defun org-list-context ()
-  "Determine context, and its boundaries, around point.
-
-Context will be a cell like (MIN MAX CONTEXT) where MIN and MAX
-are boundaries and CONTEXT is a symbol among `drawer', `block',
-`invalid', `inlinetask' and nil.
-
-Contexts `block' and `invalid' refer to `org-list-forbidden-blocks'."
-  (save-match-data
-    (save-excursion
-      (org-with-limited-levels
-       (beginning-of-line)
-       (let ((case-fold-search t) (pos (point)) beg end context-type
-	     ;; Get positions of surrounding headings.  This is the
-	     ;; default context.
-	     (lim-up (or (save-excursion (and (ignore-errors (org-back-to-heading t))
-					      (point)))
-			 (point-min)))
-	     (lim-down (or (save-excursion (outline-next-heading)) (point-max))))
-	 ;; Is point inside a drawer?
-	 (let ((end-re "^[ \t]*:END:")
-	       (beg-re org-drawer-regexp))
-	   (when (save-excursion
-		   (and (not (looking-at beg-re))
-			(not (looking-at end-re))
-			(setq beg (and (re-search-backward beg-re lim-up t)
-				       (1+ (point-at-eol))))
-			(setq end (or (and (re-search-forward end-re lim-down t)
-					   (1- (match-beginning 0)))
-				      lim-down))
-			(>= end pos)))
-	     (setq lim-up beg lim-down end context-type 'drawer)))
-	 ;; Is point strictly in a block, and of which type?
-	 (let ((block-re "^[ \t]*#\\+\\(begin\\|end\\)_") type)
-	   (when (save-excursion
-		   (and (not (looking-at block-re))
-			(setq beg (and (re-search-backward block-re lim-up t)
-				       (1+ (point-at-eol))))
-			(looking-at "^[ \t]*#\\+begin_\\(\\S-+\\)")
-			(setq type (downcase (match-string 1)))
-			(goto-char beg)
-			(setq end (or (and (re-search-forward block-re lim-down t)
-					   (1- (point-at-bol)))
-				      lim-down))
-			(>= end pos)
-			(equal (downcase (match-string 1)) "end")))
-	     (setq lim-up beg lim-down end
-		   context-type (if (member type org-list-forbidden-blocks)
-				    'invalid 'block))))
-	 ;; Is point in an inlinetask?
-	 (when (and (featurep 'org-inlinetask)
-		    (save-excursion
-		      (let* ((beg-re (org-inlinetask-outline-regexp))
-			     (end-re (concat beg-re "END[ \t]*$")))
-			(and (not (looking-at "^\\*+"))
-			     (setq beg (and (re-search-backward beg-re lim-up t)
-					    (1+ (point-at-eol))))
-			     (not (looking-at end-re))
-			     (setq end (and (re-search-forward end-re lim-down t)
-					    (1- (match-beginning 0))))
-			     (> (point) pos)))))
-	   (setq lim-up beg lim-down end context-type 'inlinetask))
-	 ;; Return context boundaries and type.
-	 (list lim-up lim-down context-type))))))
-
-(defun org-list-struct ()
-  "Return structure of list at point.
-
-A list structure is an alist where key is point at item, and
-values are:
-1. indentation,
-2. bullet with trailing whitespace,
-3. bullet counter, if any,
-4. checkbox, if any,
-5. description tag, if any,
-6. position at item end.
-
-Thus the following list, where numbers in parens are
-point-at-bol:
-
-- [X] first item                             (1)
-  1. sub-item 1                              (18)
-  5. [@5] sub-item 2                         (34)
-  some other text belonging to first item    (55)
-- last item                                  (97)
-  + tag :: description                       (109)
-                                             (131)
-
-will get the following structure:
-
- ((1 0 \"- \"  nil \"[X]\" nil 97)
-  (18 2 \"1. \"  nil nil nil 34)
-  (34 2 \"5. \" \"5\" nil nil 55)
-  (97 0 \"- \"  nil nil nil 131)
-  (109 2 \"+ \" nil nil \"tag\" 131))
-
-Assume point is at an item."
-  (save-excursion
-    (beginning-of-line)
-    (let* ((case-fold-search t)
-	   (context (org-list-context))
-	   (lim-up (car context))
-	   (lim-down (nth 1 context))
-	   (text-min-ind 10000)
-	   (item-re (org-item-re))
-	   (inlinetask-re (and (featurep 'org-inlinetask)
-			       (org-inlinetask-outline-regexp)))
-	   (beg-cell (cons (point) (org-get-indentation)))
-           itm-lst itm-lst-2 end-lst end-lst-2 struct
-	   (assoc-at-point
-	    (function
-	     ;; Return association at point.
-	     (lambda (ind)
-	       (looking-at org-list-full-item-re)
-	       (let ((bullet (match-string-no-properties 1)))
-		 (list (point)
-		       ind
-		       bullet
-		       (match-string-no-properties 2) ; counter
-		       (match-string-no-properties 3) ; checkbox
-		       ;; Description tag.
-		       (and (string-match-p "[-+*]" bullet)
-			    (match-string-no-properties 4)))))))
-	   (end-before-blank
-	    (function
-	     ;; Ensure list ends at the first blank line.
-	     (lambda ()
-	       (skip-chars-backward " \r\t\n")
-	       (min (1+ (point-at-eol)) lim-down)))))
-      ;; 1. Read list from starting item to its beginning, and save
-      ;;    top item position and indentation in BEG-CELL.  Also store
-      ;;    ending position of items in END-LST.
-      (save-excursion
-	(catch 'exit
-	  (while t
-	    (let ((ind (org-get-indentation)))
-	      (cond
-	       ((<= (point) lim-up)
-		;; At upward limit: if we ended at an item, store it,
-		;; else dismiss useless data recorded above BEG-CELL.
-		;; Jump to part 2.
-		(throw 'exit
-		       (setq itm-lst
-			     (if (not (looking-at item-re))
-				 (memq (assq (car beg-cell) itm-lst) itm-lst)
-			       (setq beg-cell (cons (point) ind))
-			       (cons (funcall assoc-at-point ind) itm-lst)))))
-	       ;; Looking at a list ending regexp.  Dismiss useless
-	       ;; data recorded above BEG-CELL.  Jump to part 2.
-	       ((looking-at org-list-end-re)
-		(throw 'exit
-		       (setq itm-lst
-			     (memq (assq (car beg-cell) itm-lst) itm-lst))))
-	       ;; Point is at an item.  Add data to ITM-LST. It may
-	       ;; also end a previous item: save it in END-LST.  If
-	       ;; ind is less or equal than BEG-CELL and there is no
-	       ;; end at this ind or lesser, this item becomes the new
-	       ;; BEG-CELL.
-	       ((looking-at item-re)
-		(push (funcall assoc-at-point ind) itm-lst)
-		(push (cons ind (point)) end-lst)
-		(when (< ind text-min-ind) (setq beg-cell (cons (point) ind)))
-		(forward-line -1))
-	       ;; Skip blocks, drawers, inline tasks, blank lines.
-	       ((and (looking-at "^[ \t]*#\\+end_")
-		     (re-search-backward "^[ \t]*#\\+begin_" lim-up t)))
-	       ((and (looking-at "^[ \t]*:END:")
-		     (re-search-backward org-drawer-regexp lim-up t))
-		(beginning-of-line))
-	       ((and inlinetask-re (looking-at inlinetask-re))
-		(org-inlinetask-goto-beginning)
-		(forward-line -1))
-	       ((looking-at "^[ \t]*$")
-		(forward-line -1))
-	       ;; From there, point is not at an item.  Interpret
-	       ;; line's indentation:
-	       ;; - text at column 0 is necessarily out of any list.
-	       ;;   Dismiss data recorded above BEG-CELL.  Jump to
-	       ;;   part 2.
-	       ;; - any other case may be an ending position for an
-	       ;;   hypothetical item above.  Store it and proceed.
-	       ((zerop ind)
-		(throw 'exit
-		       (setq itm-lst
-			     (memq (assq (car beg-cell) itm-lst) itm-lst))))
-	       (t
-		(when (< ind text-min-ind) (setq text-min-ind ind))
-		(push (cons ind (point)) end-lst)
-		(forward-line -1)))))))
-      ;; 2. Read list from starting point to its end, that is until we
-      ;;    get out of context, or that a non-item line is less or
-      ;;    equally indented than BEG-CELL's cdr.  Also, store ending
-      ;;    position of items in END-LST-2.
-      (catch 'exit
-	(while t
-	  (let ((ind (org-get-indentation)))
-	    (cond
-	     ((>= (point) lim-down)
-	      ;; At downward limit: this is de facto the end of the
-	      ;; list.  Save point as an ending position, and jump to
-	      ;; part 3.
-	      (throw 'exit
-		     (push (cons 0 (funcall end-before-blank)) end-lst-2)))
-	     ;; Looking at a list ending regexp.  Save point as an
-	     ;; ending position and jump to part 3.
-	     ((looking-at org-list-end-re)
-	      (throw 'exit (push (cons 0 (point)) end-lst-2)))
-	     ((looking-at item-re)
-	      ;; Point is at an item.  Add data to ITM-LST-2. It may
-	      ;; also end a previous item, so save it in END-LST-2.
-	      (push (funcall assoc-at-point ind) itm-lst-2)
-	      (push (cons ind (point)) end-lst-2)
-	      (forward-line 1))
-	     ;; Skip inline tasks and blank lines along the way
-	     ((and inlinetask-re (looking-at inlinetask-re))
-	      (org-inlinetask-goto-end))
-	     ((looking-at "^[ \t]*$")
-	      (forward-line 1))
-	     ;; Ind is lesser or equal than BEG-CELL's.  The list is
-	     ;; over: store point as an ending position and jump to
-	     ;; part 3.
-	     ((<= ind (cdr beg-cell))
-	      (throw 'exit
-		     (push (cons 0 (funcall end-before-blank)) end-lst-2)))
-	     ;; Else, if ind is lesser or equal than previous item's,
-	     ;; this is an ending position: store it.  In any case,
-	     ;; skip block or drawer at point, and move to next line.
-	     (t
-	      (when (<= ind (nth 1 (car itm-lst-2)))
-		(push (cons ind (point)) end-lst-2))
-	      (cond
-	       ((and (looking-at "^[ \t]*#\\+begin_")
-		     (re-search-forward "^[ \t]*#\\+end_" lim-down t)))
-	       ((and (looking-at org-drawer-regexp)
-		     (re-search-forward "^[ \t]*:END:" lim-down t))))
-	      (forward-line 1))))))
-      (setq struct (append itm-lst (cdr (nreverse itm-lst-2)))
-	    end-lst (append end-lst (cdr (nreverse end-lst-2))))
-      ;; 3. Associate each item to its end position.
-      (org-list-struct-assoc-end struct end-lst)
-      ;; 4. Return STRUCT
-      struct)))
-
-(defun org-list-struct-assoc-end (struct end-list)
-  "Associate proper ending point to items in STRUCT.
-
-END-LIST is a pseudo-alist where car is indentation and cdr is
-ending position.
-
-This function modifies STRUCT."
-  (let ((endings end-list))
-    (mapc
-     (lambda (elt)
-       (let ((pos (car elt))
-	     (ind (nth 1 elt)))
-	 ;; Remove end candidates behind current item.
-	 (while (or (<= (cdar endings) pos))
-	   (pop endings))
-	 ;; Add end position to item assoc.
-	 (let ((old-end (nthcdr 6 elt))
-	       (new-end (assoc-default ind endings '<=)))
-	   (if old-end
-	       (setcar old-end new-end)
-	     (setcdr elt (append (cdr elt) (list new-end)))))))
-     struct)))
-
-(defun org-list-prevs-alist (struct)
-  "Return alist between item and previous item in STRUCT."
-  (let ((item-end-alist (mapcar (lambda (e) (cons (car e) (nth 6 e)))
-				struct)))
-    (mapcar (lambda (e)
-	      (let ((prev (car (rassq (car e) item-end-alist))))
-		(cons (car e) prev)))
-	    struct)))
-
-(defun org-list-parents-alist (struct)
-  "Return alist between item and parent in STRUCT."
-  (let* ((ind-to-ori (list (list (nth 1 (car struct)))))
-	 (top-item (org-list-get-top-point struct))
-	 (prev-pos (list top-item)))
-    (cons prev-pos
-	  (mapcar (lambda (item)
-		    (let ((pos (car item))
-			  (ind (nth 1 item))
-			  (prev-ind (caar ind-to-ori)))
-		      (push pos prev-pos)
-		      (cond
-		       ((> prev-ind ind)
-			;; A sub-list is over.  Find the associated
-			;; origin in IND-TO-ORI.  If it cannot be
-			;; found (ill-formed list), set its parent as
-			;; the first item less indented.  If there is
-			;; none, make it a top-level item.
-			(setq ind-to-ori
-			      (or (member (assq ind ind-to-ori) ind-to-ori)
-                                  (catch 'exit
-                                    (mapc
-                                     (lambda (e)
-                                       (when (< (car e) ind)
-                                         (throw 'exit (member e ind-to-ori))))
-                                     ind-to-ori)
-                                    (list (list ind)))))
-			(cons pos (cdar ind-to-ori)))
-                       ;; A sub-list starts.  Every item at IND will
-                       ;; have previous item as its parent.
-		       ((< prev-ind ind)
-			(let ((origin (nth 1 prev-pos)))
-			  (push (cons ind origin) ind-to-ori)
-			  (cons pos origin)))
-                       ;; Another item in the same sub-list: it shares
-                       ;; the same parent as the previous item.
-		       (t (cons pos (cdar ind-to-ori))))))
-		  (cdr struct)))))
-
-
-
-;;; Accessors
-
-(defsubst org-list-get-nth (n key struct)
-  "Return the Nth value of KEY in STRUCT."
-  (nth n (assq key struct)))
-
-(defun org-list-set-nth (n key struct new)
-  "Set the Nth value of KEY in STRUCT to NEW.
-\nThis function modifies STRUCT."
-  (setcar (nthcdr n (assq key struct)) new))
-
-(defsubst org-list-get-ind (item struct)
-  "Return indentation of ITEM in STRUCT."
-  (org-list-get-nth 1 item struct))
-
-(defun org-list-set-ind (item struct ind)
-  "Set indentation of ITEM in STRUCT to IND.
-\nThis function modifies STRUCT."
-  (org-list-set-nth 1 item struct ind))
-
-(defsubst org-list-get-bullet (item struct)
-  "Return bullet of ITEM in STRUCT."
-  (org-list-get-nth 2 item struct))
-
-(defun org-list-set-bullet (item struct bullet)
-  "Set bullet of ITEM in STRUCT to BULLET.
-\nThis function modifies STRUCT."
-  (org-list-set-nth 2 item struct bullet))
-
-(defsubst org-list-get-counter (item struct)
-  "Return counter of ITEM in STRUCT."
-  (org-list-get-nth 3 item struct))
-
-(defsubst org-list-get-checkbox (item struct)
-  "Return checkbox of ITEM in STRUCT or nil."
-  (org-list-get-nth 4 item struct))
-
-(defun org-list-set-checkbox (item struct checkbox)
-  "Set checkbox of ITEM in STRUCT to CHECKBOX.
-\nThis function modifies STRUCT."
-  (org-list-set-nth 4 item struct checkbox))
-
-(defsubst org-list-get-tag (item struct)
-  "Return end position of ITEM in STRUCT."
-  (org-list-get-nth 5 item struct))
-
-(defun org-list-get-item-end (item struct)
-  "Return end position of ITEM in STRUCT."
-  (org-list-get-nth 6 item struct))
-
-(defun org-list-get-item-end-before-blank (item struct)
-  "Return point at end of ITEM in STRUCT, before any blank line.
-Point returned is at end of line."
-  (save-excursion
-    (goto-char (org-list-get-item-end item struct))
-    (skip-chars-backward " \r\t\n")
-    (point-at-eol)))
-
-(defun org-list-get-parent (item struct parents)
-  "Return parent of ITEM or nil.
-STRUCT is the list structure.  PARENTS is the alist of parents,
-as returned by `org-list-parents-alist'."
-  (let ((parents (or parents (org-list-parents-alist struct))))
-    (cdr (assq item parents))))
-
-(defun org-list-has-child-p (item struct)
-  "Non-nil if ITEM has a child.
-
-STRUCT is the list structure.
-
-Value returned is the position of the first child of ITEM."
-  (let ((ind (org-list-get-ind item struct))
-	(child-maybe (car (nth 1 (member (assq item struct) struct)))))
-    (when (and child-maybe
-	       (< ind (org-list-get-ind child-maybe struct)))
-      child-maybe)))
-
-(defun org-list-get-next-item (item _struct prevs)
-  "Return next item in same sub-list as ITEM, or nil.
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'."
-  (car (rassq item prevs)))
-
-(defun org-list-get-prev-item (item _struct prevs)
-  "Return previous item in same sub-list as ITEM, or nil.
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'."
-  (cdr (assq item prevs)))
-
-(defun org-list-get-subtree (item struct)
-  "List all items having ITEM as a common ancestor, or nil.
-STRUCT is the list structure."
-  (let* ((item-end (org-list-get-item-end item struct))
-	 (sub-struct (cdr (member (assq item struct) struct)))
-	 subtree)
-    (catch 'exit
-      (mapc (lambda (e)
-	      (let ((pos (car e)))
-		(if (< pos item-end) (push pos subtree) (throw 'exit nil))))
-	    sub-struct))
-    (nreverse subtree)))
-
-(defun org-list-get-all-items (item struct prevs)
-  "List all items in the same sub-list as ITEM.
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'."
-  (let ((prev-item item)
-	(next-item item)
-	before-item after-item)
-    (while (setq prev-item (org-list-get-prev-item prev-item struct prevs))
-      (push prev-item before-item))
-    (while (setq next-item (org-list-get-next-item next-item struct prevs))
-      (push next-item after-item))
-    (append before-item (list item) (nreverse after-item))))
-
-(defun org-list-get-children (item _struct parents)
-  "List all children of ITEM, or nil.
-STRUCT is the list structure.  PARENTS is the alist of parents,
-as returned by `org-list-parents-alist'."
-  (let (all child)
-    (while (setq child (car (rassq item parents)))
-      (setq parents (cdr (member (assq child parents) parents)))
-      (push child all))
-    (nreverse all)))
-
-(defun org-list-get-top-point (struct)
-  "Return point at beginning of list.
-STRUCT is the list structure."
-  (caar struct))
-
-(defun org-list-get-bottom-point (struct)
-  "Return point at bottom of list.
-STRUCT is the list structure."
-  (apply #'max
-	 (mapcar (lambda (e) (org-list-get-item-end (car e) struct)) struct)))
-
-(defun org-list-get-list-begin (item struct prevs)
-  "Return point at beginning of sub-list ITEM belongs.
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'."
-  (let ((first-item item) prev-item)
-    (while (setq prev-item (org-list-get-prev-item first-item struct prevs))
-      (setq first-item prev-item))
-    first-item))
-
-(defalias 'org-list-get-first-item 'org-list-get-list-begin)
-
-(defun org-list-get-last-item (item struct prevs)
-  "Return point at last item of sub-list ITEM belongs.
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'."
-  (let ((last-item item) next-item)
-    (while (setq next-item (org-list-get-next-item last-item struct prevs))
-      (setq last-item next-item))
-    last-item))
-
-(defun org-list-get-list-end (item struct prevs)
-  "Return point at end of sub-list ITEM belongs.
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'."
-  (org-list-get-item-end (org-list-get-last-item item struct prevs) struct))
-
-(defun org-list-get-list-type (item struct prevs)
-  "Return the type of the list containing ITEM, as a symbol.
-
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'.
-
-Possible types are `descriptive', `ordered' and `unordered'.  The
-type is determined by the first item of the list."
-  (let ((first (org-list-get-list-begin item struct prevs)))
-    (cond
-     ((string-match-p "[[:alnum:]]" (org-list-get-bullet first struct)) 'ordered)
-     ((org-list-get-tag first struct) 'descriptive)
-     (t 'unordered))))
-
-(defun org-list-get-item-number (item struct prevs parents)
-  "Return ITEM's sequence number.
-
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'.  PARENTS is the
-alist of ancestors, as returned by `org-list-parents-alist'.
-
-Return value is a list of integers.  Counters have an impact on
-that value."
-  (let ((get-relative-number
-	 (function
-	  (lambda (item struct prevs)
-	    ;; Return relative sequence number of ITEM in the sub-list
-	    ;; it belongs.  STRUCT is the list structure.  PREVS is
-	    ;; the alist of previous items.
-	    (let ((seq 0) (pos item) counter)
-	      (while (and (not (setq counter (org-list-get-counter pos struct)))
-			  (setq pos (org-list-get-prev-item pos struct prevs)))
-		(cl-incf seq))
-	      (if (not counter) (1+ seq)
-		(cond
-		 ((string-match "[A-Za-z]" counter)
-		  (+ (- (string-to-char (upcase (match-string 0 counter))) 64)
-		     seq))
-		 ((string-match "[0-9]+" counter)
-		  (+ (string-to-number (match-string 0 counter)) seq))
-		 (t (1+ seq)))))))))
-    ;; Cons each parent relative number into return value (OUT).
-    (let ((out (list (funcall get-relative-number item struct prevs)))
-	  (parent item))
-      (while (setq parent (org-list-get-parent parent struct parents))
-	(push (funcall get-relative-number parent struct prevs) out))
-      ;; Return value.
-      out)))
-
-
-
-;;; Searching
-
-(defun org-list-search-generic (search re bound noerr)
-  "Search a string in valid contexts for lists.
-Arguments SEARCH, RE, BOUND and NOERR are similar to those used
-in `re-search-forward'."
-  (catch 'exit
-    (let ((origin (point)))
-      (while t
-	;; 1. No match: return to origin or bound, depending on NOERR.
-	(unless (funcall search re bound noerr)
-	  (throw 'exit (and (goto-char (if (memq noerr '(t nil)) origin bound))
-			    nil)))
-	;; 2. Match in valid context: return point.  Else, continue
-	;;    searching.
-	(when (org-list-in-valid-context-p) (throw 'exit (point)))))))
-
-(defun org-list-search-backward (regexp &optional bound noerror)
-  "Like `re-search-backward' but stop only where lists are recognized.
-Arguments REGEXP, BOUND and NOERROR are similar to those used in
-`re-search-backward'."
-  (org-list-search-generic #'re-search-backward
-			   regexp (or bound (point-min)) noerror))
-
-(defun org-list-search-forward (regexp &optional bound noerror)
-  "Like `re-search-forward' but stop only where lists are recognized.
-Arguments REGEXP, BOUND and NOERROR are similar to those used in
-`re-search-forward'."
-  (org-list-search-generic #'re-search-forward
-			   regexp (or bound (point-max)) noerror))
-
-
-
-;;; Methods on structures
-
-(defsubst org-list-bullet-string (bullet)
-  "Return BULLET with the correct number of whitespaces.
-It determines the number of whitespaces to append by looking at
-`org-list-two-spaces-after-bullet-regexp'."
-  (save-match-data
-    (let ((spaces (if (and org-list-two-spaces-after-bullet-regexp
-			   (string-match
-			    org-list-two-spaces-after-bullet-regexp bullet))
-		      "  "
-		    " ")))
-      (if (string-match "\\S-+\\([ \t]*\\)" bullet)
-	  (replace-match spaces nil nil bullet 1)
-	bullet))))
-
-(defun org-list-swap-items (beg-A beg-B struct)
-  "Swap item starting at BEG-A with item starting at BEG-B in STRUCT.
-
-Blank lines at the end of items are left in place.  Item
-visibility is preserved.  Return the new structure after the
-changes.
-
-Assume BEG-A is lesser than BEG-B and that BEG-A and BEG-B belong
-to the same sub-list.
-
-This function modifies STRUCT."
-  (save-excursion
-    (let* ((end-A-no-blank (org-list-get-item-end-before-blank beg-A struct))
-	   (end-B-no-blank (org-list-get-item-end-before-blank beg-B struct))
-	   (end-A (org-list-get-item-end beg-A struct))
-	   (end-B (org-list-get-item-end beg-B struct))
-	   (size-A (- end-A-no-blank beg-A))
-	   (size-B (- end-B-no-blank beg-B))
-	   (body-A (buffer-substring beg-A end-A-no-blank))
-	   (body-B (buffer-substring beg-B end-B-no-blank))
-	   (between-A-no-blank-and-B (buffer-substring end-A-no-blank beg-B))
-	   (sub-A (cons beg-A (org-list-get-subtree beg-A struct)))
-	   (sub-B (cons beg-B (org-list-get-subtree beg-B struct)))
-	   ;; Store overlays responsible for visibility status.  We
-	   ;; also need to store their boundaries as they will be
-	   ;; removed from buffer.
-	   (overlays
-	    (cons
-	     (delq nil
-		   (mapcar (lambda (o)
-			     (and (>= (overlay-start o) beg-A)
-				  (<= (overlay-end o) end-A)
-				  (list o (overlay-start o) (overlay-end o))))
-			   (overlays-in beg-A end-A)))
-	     (delq nil
-		   (mapcar (lambda (o)
-			     (and (>= (overlay-start o) beg-B)
-				  (<= (overlay-end o) end-B)
-				  (list o (overlay-start o) (overlay-end o))))
-			   (overlays-in beg-B end-B))))))
-      ;; 1. Move effectively items in buffer.
-      (goto-char beg-A)
-      (delete-region beg-A end-B-no-blank)
-      (insert (concat body-B between-A-no-blank-and-B body-A))
-      ;; 2. Now modify struct.  No need to re-read the list, the
-      ;;    transformation is just a shift of positions.  Some special
-      ;;    attention is required for items ending at END-A and END-B
-      ;;    as empty spaces are not moved there.  In others words,
-      ;;    item BEG-A will end with whitespaces that were at the end
-      ;;    of BEG-B and the same applies to BEG-B.
-      (dolist (e struct)
-	(let ((pos (car e)))
-	  (cond
-	   ((< pos beg-A))
-	   ((memq pos sub-A)
-	    (let ((end-e (nth 6 e)))
-	      (setcar e (+ pos (- end-B-no-blank end-A-no-blank)))
-	      (setcar (nthcdr 6 e)
-		      (+ end-e (- end-B-no-blank end-A-no-blank)))
-	      (when (= end-e end-A) (setcar (nthcdr 6 e) end-B))))
-	   ((memq pos sub-B)
-	    (let ((end-e (nth 6 e)))
-	      (setcar e (- (+ pos beg-A) beg-B))
-	      (setcar (nthcdr 6 e) (+ end-e (- beg-A beg-B)))
-	      (when (= end-e end-B)
-		(setcar (nthcdr 6 e)
-			(+ beg-A size-B (- end-A end-A-no-blank))))))
-	   ((< pos beg-B)
-	    (let ((end-e (nth 6 e)))
-	      (setcar e (+ pos (- size-B size-A)))
-	      (setcar (nthcdr 6 e) (+ end-e (- size-B size-A))))))))
-      (setq struct (sort struct #'car-less-than-car))
-      ;; Restore visibility status, by moving overlays to their new
-      ;; position.
-      (dolist (ov (car overlays))
-	(move-overlay
-	 (car ov)
-	 (+ (nth 1 ov) (- (+ beg-B (- size-B size-A)) beg-A))
-	 (+ (nth 2 ov) (- (+ beg-B (- size-B size-A)) beg-A))))
-      (dolist (ov (cdr overlays))
-	(move-overlay (car ov)
-		      (+ (nth 1 ov) (- beg-A beg-B))
-		      (+ (nth 2 ov) (- beg-A beg-B))))
-      ;; Return structure.
-      struct)))
-
-(defun org-list-separating-blank-lines-number (pos struct prevs)
-  "Return number of blank lines that should separate items in list.
-
-POS is the position of point where `org-list-insert-item' was called.
-
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'.
-
-Assume point is at item's beginning.  If the item is alone, apply
-some heuristics to guess the result."
-  (save-excursion
-    (let ((item (point))
-	  (insert-blank-p
-	   (cdr (assq 'plain-list-item org-blank-before-new-entry)))
-	  usr-blank
-	  (count-blanks
-	   (function
-	    (lambda ()
-	      ;; Count blank lines above beginning of line.
-	      (save-excursion
-		(count-lines (goto-char (point-at-bol))
-			     (progn (skip-chars-backward " \r\t\n")
-				    (forward-line)
-				    (point))))))))
-      (cond
-       ;; Trivial cases where there should be none.
-       ((not insert-blank-p) 0)
-       ;; When `org-blank-before-new-entry' says so, it is 1.
-       ((eq insert-blank-p t) 1)
-       ;; `plain-list-item' is 'auto.  Count blank lines separating
-       ;; neighbors' items in list.
-       (t (let ((next-p (org-list-get-next-item item struct prevs)))
-	    (cond
-	     ;; Is there a next item?
-	     (next-p (goto-char next-p)
-		     (funcall count-blanks))
-	     ;; Is there a previous item?
-	     ((org-list-get-prev-item item struct prevs)
-	      (funcall count-blanks))
-	     ;; User inserted blank lines, trust him.
-	     ((and (> pos (org-list-get-item-end-before-blank item struct))
-		   (> (save-excursion (goto-char pos)
-				      (setq usr-blank (funcall count-blanks)))
-		      0))
-	      usr-blank)
-	     ;; Are there blank lines inside the list so far?
-	     ((save-excursion
-		(goto-char (org-list-get-top-point struct))
-		;; Do not use `org-list-search-forward' so blank lines
-		;; in blocks can be counted in.
-		(re-search-forward
-		 "^[ \t]*$" (org-list-get-item-end-before-blank item struct) t))
-	      1)
-	     ;; Default choice: no blank line.
-	     (t 0))))))))
-
-(defun org-list-insert-item (pos struct prevs &optional checkbox after-bullet)
-  "Insert a new list item at POS and return the new structure.
-If POS is before first character after bullet of the item, the
-new item will be created before the current one.
-
-STRUCT is the list structure.  PREVS is the alist of previous
-items, as returned by `org-list-prevs-alist'.
-
-Insert a checkbox if CHECKBOX is non-nil, and string AFTER-BULLET
-after the bullet.  Cursor will be after this text once the
-function ends.
-
-This function modifies STRUCT."
-  (let ((case-fold-search t))
-    ;; 1. Get information about list: position of point with regards
-    ;;    to item start (BEFOREP), blank lines number separating items
-    ;;    (BLANK-NB), if we're allowed to (SPLIT-LINE-P).
-    (let* ((item (progn (goto-char pos) (goto-char (org-list-get-item-begin))))
-	   (item-end (org-list-get-item-end item struct))
-	   (item-end-no-blank (org-list-get-item-end-before-blank item struct))
-	   (beforep
-	    (progn
-	      (looking-at org-list-full-item-re)
-	      (<= pos
-		  (cond
-		   ((not (match-beginning 4)) (match-end 0))
-		   ;; Ignore tag in a non-descriptive list.
-		   ((save-match-data (string-match "[.)]" (match-string 1)))
-		    (match-beginning 4))
-		   (t (save-excursion
-			(goto-char (match-end 4))
-			(skip-chars-forward " \t")
-			(point)))))))
-	   (split-line-p (org-get-alist-option org-M-RET-may-split-line 'item))
-	   (blank-nb (org-list-separating-blank-lines-number
-		      pos struct prevs))
-	   ;; 2. Build the new item to be created.  Concatenate same
-	   ;;    bullet as item, checkbox, text AFTER-BULLET if
-	   ;;    provided, and text cut from point to end of item
-	   ;;    (TEXT-CUT) to form item's BODY.  TEXT-CUT depends on
-	   ;;    BEFOREP and SPLIT-LINE-P.  The difference of size
-	   ;;    between what was cut and what was inserted in buffer
-	   ;;    is stored in SIZE-OFFSET.
-	   (ind (org-list-get-ind item struct))
-	   (ind-size (if indent-tabs-mode
-			 (+ (/ ind tab-width) (mod ind tab-width))
-		       ind))
-	   (bullet (org-list-bullet-string (org-list-get-bullet item struct)))
-	   (box (when checkbox "[ ]"))
-	   (text-cut
-	    (and (not beforep) split-line-p
-		 (progn
-		   (goto-char pos)
-		   ;; If POS is greater than ITEM-END, then point is
-		   ;; in some white lines after the end of the list.
-		   ;; Those must be removed, or they will be left,
-		   ;; stacking up after the list.
-		   (when (< item-end pos)
-		     (delete-region (1- item-end) (point-at-eol)))
-		   (skip-chars-backward " \r\t\n")
-		   (setq pos (point))
-		   (delete-and-extract-region pos item-end-no-blank))))
-	   (body (concat bullet (when box (concat box " ")) after-bullet
-			 (and text-cut
-			      (if (string-match "\\`[ \t]+" text-cut)
-				  (replace-match "" t t text-cut)
-				text-cut))))
-	   (item-sep (make-string  (1+ blank-nb) ?\n))
-	   (item-size (+ ind-size (length body) (length item-sep)))
-	   (size-offset (- item-size (length text-cut))))
-      ;; 4. Insert effectively item into buffer.
-      (goto-char item)
-      (indent-to-column ind)
-      (insert body item-sep)
-      ;; 5. Add new item to STRUCT.
-      (mapc (lambda (e)
-              (let ((p (car e)) (end (nth 6 e)))
-                (cond
-		 ;; Before inserted item, positions don't change but
-		 ;; an item ending after insertion has its end shifted
-		 ;; by SIZE-OFFSET.
-		 ((< p item)
-		  (when (> end item) (setcar (nthcdr 6 e) (+ end size-offset))))
-		 ;; Trivial cases where current item isn't split in
-		 ;; two.  Just shift every item after new one by
-		 ;; ITEM-SIZE.
-		 ((or beforep (not split-line-p))
-		  (setcar e (+ p item-size))
-		  (setcar (nthcdr 6 e) (+ end item-size)))
-		 ;; Item is split in two: elements before POS are just
-		 ;; shifted by ITEM-SIZE.  In the case item would end
-		 ;; after split POS, ending is only shifted by
-		 ;; SIZE-OFFSET.
-		 ((< p pos)
-		  (setcar e (+ p item-size))
-		  (if (< end pos)
-		      (setcar (nthcdr 6 e) (+ end item-size))
-		    (setcar (nthcdr 6 e) (+ end size-offset))))
-		 ;; Elements after POS are moved into new item.
-		 ;; Length of ITEM-SEP has to be removed as ITEM-SEP
-		 ;; doesn't appear in buffer yet.
-		 ((< p item-end)
-		  (setcar e (+ p size-offset (- item pos (length item-sep))))
-		  (if (= end item-end)
-		      (setcar (nthcdr 6 e) (+ item item-size))
-		    (setcar (nthcdr 6 e)
-			    (+ end size-offset
-			       (- item pos (length item-sep))))))
-		 ;; Elements at ITEM-END or after are only shifted by
-		 ;; SIZE-OFFSET.
-		 (t (setcar e (+ p size-offset))
-		    (setcar (nthcdr 6 e) (+ end size-offset))))))
-	    struct)
-      (push (list item ind bullet nil box nil (+ item item-size)) struct)
-      (setq struct (sort struct (lambda (e1 e2) (< (car e1) (car e2)))))
-      ;; 6. If not BEFOREP, new item must appear after ITEM, so
-      ;; exchange ITEM with the next item in list.  Position cursor
-      ;; after bullet, counter, checkbox, and label.
-      (if beforep
-	  (goto-char item)
-	(setq struct (org-list-swap-items item (+ item item-size) struct))
-	(goto-char (org-list-get-next-item
-		    item struct (org-list-prevs-alist struct))))
-      struct)))
-
-(defun org-list-delete-item (item struct)
-  "Remove ITEM from the list and return the new structure.
-
-STRUCT is the list structure."
-  (let* ((end (org-list-get-item-end item struct))
-	 (beg (if (= (org-list-get-bottom-point struct) end)
-		  ;; If ITEM ends with the list, delete blank lines
-		  ;; before it.
-		  (save-excursion
-		    (goto-char item)
-		    (skip-chars-backward " \r\t\n")
-		    (min (1+ (point-at-eol)) (point-max)))
-		item)))
-    ;; Remove item from buffer.
-    (delete-region beg end)
-    ;; Remove item from structure and shift others items accordingly.
-    ;; Don't forget to shift also ending position when appropriate.
-    (let ((size (- end beg)))
-      (delq nil (mapcar (lambda (e)
-			  (let ((pos (car e)))
-			    (cond
-			     ((< pos item)
-			      (let ((end-e (nth 6 e)))
-				(cond
-				 ((< end-e item) e)
-				 ((= end-e item)
-				  (append (butlast e) (list beg)))
-				 (t
-				  (append (butlast e) (list (- end-e size)))))))
-			     ((< pos end) nil)
-			     (t
-			      (cons (- pos size)
-				    (append (butlast (cdr e))
-					    (list (- (nth 6 e) size))))))))
-			struct)))))
-
-(defun org-list-send-item (item dest struct)
-  "Send ITEM to destination DEST.
-
-STRUCT is the list structure.
-
-DEST can have various values.
-
-If DEST is a buffer position, the function will assume it points
-to another item in the same list as ITEM, and will move the
-latter just before the former.
-
-If DEST is `begin' (respectively `end'), ITEM will be moved at
-the beginning (respectively end) of the list it belongs to.
-
-If DEST is a string like \"N\", where N is an integer, ITEM will
-be moved at the Nth position in the list.
-
-If DEST is `kill', ITEM will be deleted and its body will be
-added to the kill-ring.
-
-If DEST is `delete', ITEM will be deleted.
-
-Visibility of item is preserved.
-
-This function returns, destructively, the new list structure."
-  (let* ((prevs (org-list-prevs-alist struct))
-	 (item-end (org-list-get-item-end item struct))
-	 ;; Grab full item body minus its bullet.
-	 (body (org-trim
-		(buffer-substring
-		 (save-excursion
-		   (goto-char item)
-		   (looking-at
-		    (concat "[ \t]*"
-			    (regexp-quote (org-list-get-bullet item struct))))
-		   (match-end 0))
-		 item-end)))
-	 ;; Change DEST into a buffer position.  A trick is needed
-	 ;; when ITEM is meant to be sent at the end of the list.
-	 ;; Indeed, by setting locally `org-M-RET-may-split-line' to
-	 ;; nil and insertion point (INS-POINT) to the first line's
-	 ;; end of the last item, we ensure the new item will be
-	 ;; inserted after the last item, and not after any of its
-	 ;; hypothetical sub-items.
-	 (ins-point (cond
-		     ((or (eq dest 'kill) (eq dest 'delete)))
-		     ((eq dest 'begin)
-		      (setq dest (org-list-get-list-begin item struct prevs)))
-		     ((eq dest 'end)
-		      (setq dest (org-list-get-list-end item struct prevs))
-		      (save-excursion
-			(goto-char (org-list-get-last-item item struct prevs))
-			(point-at-eol)))
-		     ((string-match-p "\\`[0-9]+\\'" dest)
-		      (let* ((all (org-list-get-all-items item struct prevs))
-			     (len (length all))
-			     (index (mod (string-to-number dest) len)))
-			(if (not (zerop index))
-			    (setq dest (nth (1- index) all))
-			  ;; Send ITEM at the end of the list.
-			  (setq dest (org-list-get-list-end item struct prevs))
-			  (save-excursion
-			    (goto-char
-			     (org-list-get-last-item item struct prevs))
-			    (point-at-eol)))))
-		     (t dest)))
-	 (org-M-RET-may-split-line nil)
-	 ;; Store inner overlays (to preserve visibility).
-	 (overlays (cl-remove-if (lambda (o) (or (< (overlay-start o) item)
-					     (> (overlay-end o) item)))
-				  (overlays-in item item-end))))
-    (cond
-     ((eq dest 'delete) (org-list-delete-item item struct))
-     ((eq dest 'kill)
-      (kill-new body)
-      (org-list-delete-item item struct))
-     ((and (integerp dest) (/= item ins-point))
-      (setq item (copy-marker item))
-      (setq struct (org-list-insert-item ins-point struct prevs nil body))
-      ;; 1. Structure returned by `org-list-insert-item' may not be
-      ;;    accurate, as it cannot see sub-items included in BODY.
-      ;;    Thus, first compute the real structure so far.
-      (let ((moved-items
-	     (cons (marker-position item)
-		   (org-list-get-subtree (marker-position item) struct)))
-	    (new-end (org-list-get-item-end (point) struct))
-	    (old-end (org-list-get-item-end (marker-position item) struct))
-	    (new-item (point))
-	    (shift (- (point) item)))
-	;; 1.1. Remove the item just created in structure.
-	(setq struct (delete (assq new-item struct) struct))
-	;; 1.2. Copy ITEM and any of its sub-items at NEW-ITEM.
-	(setq struct (sort
-		      (append
-		       struct
-		       (mapcar (lambda (e)
-				 (let* ((cell (assq e struct))
-					(pos (car cell))
-					(end (nth 6 cell)))
-				   (cons (+ pos shift)
-					 (append (butlast (cdr cell))
-						 (list (if (= end old-end)
-							   new-end
-							 (+ end shift)))))))
-			       moved-items))
-		      #'car-less-than-car)))
-      ;; 2. Restore inner overlays.
-      (dolist (o overlays)
-	(move-overlay o
-		      (+ (overlay-start o) (- (point) item))
-		      (+ (overlay-end o) (- (point) item))))
-      ;; 3. Eventually delete extra copy of the item and clean marker.
-      (prog1 (org-list-delete-item (marker-position item) struct)
-	(move-marker item nil)))
-     (t struct))))
-
-(defun org-list-struct-outdent (start end struct parents)
-  "Outdent items between positions START and END.
-
-STRUCT is the list structure.  PARENTS is the alist of items'
-parents, as returned by `org-list-parents-alist'.
-
-START is included, END excluded."
-  (let* (acc
-	 (out (lambda (cell)
-		(let* ((item (car cell))
-		       (parent (cdr cell)))
-		  (cond
-		   ;; Item not yet in zone: keep association.
-		   ((< item start) cell)
-		   ;; Item out of zone: follow associations in ACC.
-		   ((>= item end)
-		    (let ((convert (and parent (assq parent acc))))
-		      (if convert (cons item (cdr convert)) cell)))
-		   ;; Item has no parent: error
-		   ((not parent)
-		    (error "Cannot outdent top-level items"))
-		   ;; Parent is outdented: keep association.
-		   ((>= parent start)
-		    (push (cons parent item) acc) cell)
-		   (t
-		    ;; Parent isn't outdented: reparent to grand-parent.
-		    (let ((grand-parent (org-list-get-parent
-					 parent struct parents)))
-		      (push (cons parent item) acc)
-		      (cons item grand-parent))))))))
-    (mapcar out parents)))
-
-(defun org-list-struct-indent (start end struct parents prevs)
-  "Indent items between positions START and END.
-
-STRUCT is the list structure.  PARENTS is the alist of parents
-and PREVS is the alist of previous items, returned by,
-respectively, `org-list-parents-alist' and
-`org-list-prevs-alist'.
-
-START is included and END excluded.
-
-STRUCT may be modified if `org-list-demote-modify-bullet' matches
-bullets between START and END."
-  (let* (acc
-	 (set-assoc (lambda (cell) (push cell acc) cell))
-	 (change-bullet-maybe
-	  (function
-	   (lambda (item)
-	     (let ((new-bul-p
-		    (cdr (assoc
-			  ;; Normalize ordered bullets.
-			  (let ((bul (org-trim
-				      (org-list-get-bullet item struct))))
-			    (cond ((string-match "[A-Z]\\." bul) "A.")
-				  ((string-match "[A-Z])" bul) "A)")
-				  ((string-match "[a-z]\\." bul) "a.")
-				  ((string-match "[a-z])" bul) "a)")
-				  ((string-match "[0-9]\\." bul) "1.")
-				  ((string-match "[0-9])" bul) "1)")
-				  (t bul)))
-			  org-list-demote-modify-bullet))))
-	       (when new-bul-p (org-list-set-bullet item struct new-bul-p))))))
-	 (ind
-	  (lambda (cell)
-	    (let* ((item (car cell))
-		   (parent (cdr cell)))
-	      (cond
-	       ;; Item not yet in zone: keep association.
-	       ((< item start) cell)
-	       ((>= item end)
-		;; Item out of zone: follow associations in ACC.
-		(let ((convert (assq parent acc)))
-		  (if convert (cons item (cdr convert)) cell)))
-	       (t
-		;; Item is in zone...
-		(let ((prev (org-list-get-prev-item item struct prevs)))
-		  ;; Check if bullet needs to be changed.
-		  (funcall change-bullet-maybe item)
-		  (cond
-		   ;; First item indented but not parent: error
-		   ((and (not prev) (or (not parent) (< parent start)))
-		    (user-error "Cannot indent the first item of a list"))
-		   ;; First item and parent indented: keep same
-		   ;; parent.
-		   ((not prev) (funcall set-assoc cell))
-		   ;; Previous item not indented: reparent to it.
-		   ((< prev start) (funcall set-assoc (cons item prev)))
-		   ;; Previous item indented: reparent like it.
-		   (t
-		    (funcall set-assoc
-			     (cons item (cdr (assq prev acc)))))))))))))
-    (mapcar ind parents)))
-
-
-
-;;; Repairing structures
-
-(defun org-list-use-alpha-bul-p (first struct prevs)
-  "Non-nil if list starting at FIRST can have alphabetical bullets.
-
-STRUCT is list structure.  PREVS is the alist of previous items,
-as returned by `org-list-prevs-alist'."
-  (and org-list-allow-alphabetical
-       (catch 'exit
-	 (let ((item first) (ascii 64) (case-fold-search nil))
-	   ;; Pretend that bullets are uppercase and check if alphabet
-	   ;; is sufficient, taking counters into account.
-	   (while item
-	     (let ((count (org-list-get-counter item struct)))
-	       ;; Virtually determine current bullet
-	       (if (and count (string-match-p "[a-zA-Z]" count))
-		   ;; Counters are not case-sensitive.
-		   (setq ascii (string-to-char (upcase count)))
-		 (setq ascii (1+ ascii)))
-	       ;; Test if bullet would be over z or Z.
-	       (if (> ascii 90)
-		   (throw 'exit nil)
-		 (setq item (org-list-get-next-item item struct prevs)))))
-	   ;; All items checked.  All good.
-	   t))))
-
-(defun org-list-inc-bullet-maybe (bullet)
-  "Increment BULLET if applicable."
-  (let ((case-fold-search nil))
-    (cond
-     ;; Num bullet: increment it.
-     ((string-match "[0-9]+" bullet)
-      (replace-match
-       (number-to-string (1+ (string-to-number (match-string 0 bullet))))
-       nil nil bullet))
-     ;; Alpha bullet: increment it.
-     ((string-match "[A-Za-z]" bullet)
-      (replace-match
-       (char-to-string (1+ (string-to-char (match-string 0 bullet))))
-       nil nil bullet))
-     ;; Unordered bullet: leave it.
-     (t bullet))))
-
-(defun org-list-struct-fix-bul (struct prevs)
-  "Verify and correct bullets in STRUCT.
-PREVS is the alist of previous items, as returned by
-`org-list-prevs-alist'.
-
-This function modifies STRUCT."
-  (let ((case-fold-search nil)
-	(fix-bul
-	 (function
-	  ;; Set bullet of ITEM in STRUCT, depending on the type of
-	  ;; first item of the list, the previous bullet and counter
-	  ;; if any.
-	  (lambda (item)
-	    (let* ((prev (org-list-get-prev-item item struct prevs))
-		   (prev-bul (and prev (org-list-get-bullet prev struct)))
-		   (counter (org-list-get-counter item struct))
-		   (bullet (org-list-get-bullet item struct))
-		   (alphap (and (not prev)
-				(org-list-use-alpha-bul-p item struct prevs))))
-	      (org-list-set-bullet
-	       item struct
-	       (org-list-bullet-string
-		(cond
-		 ;; Alpha counter in alpha list: use counter.
-		 ((and prev counter
-		       (string-match "[a-zA-Z]" counter)
-		       (string-match "[a-zA-Z]" prev-bul))
-		  ;; Use cond to be sure `string-match' is used in
-		  ;; both cases.
-		  (let ((real-count
-			 (cond
-			  ((string-match "[a-z]" prev-bul) (downcase counter))
-			  ((string-match "[A-Z]" prev-bul) (upcase counter)))))
-		    (replace-match real-count nil nil prev-bul)))
-		 ;; Num counter in a num list: use counter.
-		 ((and prev counter
-		       (string-match "[0-9]+" counter)
-		       (string-match "[0-9]+" prev-bul))
-		  (replace-match counter nil nil prev-bul))
-		 ;; No counter: increase, if needed, previous bullet.
-		 (prev
-		  (org-list-inc-bullet-maybe (org-list-get-bullet prev struct)))
-		 ;; Alpha counter at first item: use counter.
-		 ((and counter (org-list-use-alpha-bul-p item struct prevs)
-		       (string-match "[A-Za-z]" counter)
-		       (string-match "[A-Za-z]" bullet))
-		  (let ((real-count
-			 (cond
-			  ((string-match "[a-z]" bullet) (downcase counter))
-			  ((string-match "[A-Z]" bullet) (upcase counter)))))
-		    (replace-match real-count nil nil bullet)))
-		 ;; Num counter at first item: use counter.
-		 ((and counter
-		       (string-match "[0-9]+" counter)
-		       (string-match "[0-9]+" bullet))
-		  (replace-match counter nil nil bullet))
-		 ;; First bullet is alpha uppercase: use "A".
-		 ((and alphap (string-match "[A-Z]" bullet))
-		  (replace-match "A" nil nil bullet))
-		 ;; First bullet is alpha lowercase: use "a".
-		 ((and alphap (string-match "[a-z]" bullet))
-		  (replace-match "a" nil nil bullet))
-		 ;; First bullet is num: use "1".
-		 ((string-match "\\([0-9]+\\|[A-Za-z]\\)" bullet)
-		  (replace-match "1" nil nil bullet))
-		 ;; Not an ordered list: keep bullet.
-		 (t bullet)))))))))
-    (mapc fix-bul (mapcar #'car struct))))
-
-(defun org-list-struct-fix-ind (struct parents &optional bullet-size)
-  "Verify and correct indentation in STRUCT.
-
-PARENTS is the alist of parents, as returned by
-`org-list-parents-alist'.
-
-If numeric optional argument BULLET-SIZE is set, assume all
-bullets in list have this length to determine new indentation.
-
-This function modifies STRUCT."
-  (let* ((ancestor (org-list-get-top-point struct))
-         (top-ind (org-list-get-ind ancestor struct))
-         (new-ind
-          (lambda (item)
-            (let ((parent (org-list-get-parent item struct parents)))
-              (if parent
-                  ;; Indent like parent + length of parent's bullet +
-		  ;; sub-list offset.
-                  (org-list-set-ind
-		   item struct (+ (or bullet-size
-				      (length
-				       (org-list-get-bullet parent struct)))
-				  (org-list-get-ind parent struct)
-				  org-list-indent-offset))
-                ;; If no parent, indent like top-point.
-		(org-list-set-ind item struct top-ind))))))
-    (mapc new-ind (mapcar #'car (cdr struct)))))
-
-(defun org-list-struct-fix-box (struct parents prevs &optional ordered)
-  "Verify and correct checkboxes in STRUCT.
-
-PARENTS is the alist of parents and PREVS is the alist of
-previous items, as returned by, respectively,
-`org-list-parents-alist' and `org-list-prevs-alist'.
-
-If ORDERED is non-nil, a checkbox can only be checked when every
-checkbox before it is checked too.  If there was an attempt to
-break this rule, the function will return the blocking item.  In
-all others cases, the return value will be nil.
-
-This function modifies STRUCT."
-  (let ((all-items (mapcar #'car struct))
-	(set-parent-box
-	 (function
-	  (lambda (item)
-	    (let* ((box-list
-		    (mapcar (lambda (child)
-			      (org-list-get-checkbox child struct))
-			    (org-list-get-children item struct parents))))
-	      (org-list-set-checkbox
-	       item struct
-	       (cond
-		((and (member "[ ]" box-list) (member "[X]" box-list)) "[-]")
-		((member "[-]" box-list) "[-]")
-		((member "[X]" box-list) "[X]")
-		((member "[ ]" box-list) "[ ]")
-		;; Parent has no boxed child: leave box as-is.
-		(t (org-list-get-checkbox item struct))))))))
-	parent-list)
-    ;; 1. List all parents with a checkbox.
-    (mapc
-     (lambda (e)
-       (let* ((parent (org-list-get-parent e struct parents))
-	      (parent-box-p (org-list-get-checkbox parent struct)))
-	 (when (and parent-box-p (not (memq parent parent-list)))
-	   (push parent parent-list))))
-     all-items)
-    ;; 2. Sort those parents by decreasing indentation.
-    (setq parent-list (sort parent-list
-			    (lambda (e1 e2)
-			      (> (org-list-get-ind e1 struct)
-				 (org-list-get-ind e2 struct)))))
-    ;; 3. For each parent, get all children's checkboxes to determine
-    ;;    and set its checkbox accordingly.
-    (mapc set-parent-box parent-list)
-    ;; 4. If ORDERED is set, see if we need to uncheck some boxes.
-    (when ordered
-      (let* ((box-list
-	      (mapcar (lambda (e) (org-list-get-checkbox e struct)) all-items))
-	     (after-unchecked (member "[ ]" box-list)))
-	;; There are boxes checked after an unchecked one: fix that.
-	(when (member "[X]" after-unchecked)
-	  (let ((index (- (length struct) (length after-unchecked))))
-	    (mapc (lambda (e)
-		    (when (org-list-get-checkbox e struct)
-		      (org-list-set-checkbox e struct "[ ]")))
-		  (nthcdr index all-items))
-	    ;; Verify once again the structure, without ORDERED.
-	    (org-list-struct-fix-box struct parents prevs nil)
-	    ;; Return blocking item.
-	    (nth index all-items)))))))
-
-(defun org-list-struct-fix-item-end (struct)
-  "Verify and correct each item end position in STRUCT.
-
-This function modifies STRUCT."
-  (let (end-list acc-end)
-    (mapc (lambda (e)
-	    (let* ((pos (car e))
-		   (ind-pos (org-list-get-ind pos struct))
-		   (end-pos (org-list-get-item-end pos struct)))
-	      (unless (assq end-pos struct)
-		;; To determine real ind of an ending position that is
-		;; not at an item, we have to find the item it belongs
-		;; to: it is the last item (ITEM-UP), whose ending is
-		;; further than the position we're interested in.
-		(let ((item-up (assoc-default end-pos acc-end '>)))
-		  (push (cons
-			 ;; Else part is for the bottom point.
-			 (if item-up (+ (org-list-get-ind item-up struct) 2) 0)
-			 end-pos)
-			end-list)))
-	      (push (cons ind-pos pos) end-list)
-	      (push (cons end-pos pos) acc-end)))
-	  struct)
-    (setq end-list (sort end-list (lambda (e1 e2) (< (cdr e1) (cdr e2)))))
-    (org-list-struct-assoc-end struct end-list)))
-
-(defun org-list-struct-apply-struct (struct old-struct)
-  "Apply set difference between STRUCT and OLD-STRUCT to the buffer.
-
-OLD-STRUCT is the structure before any modifications, and STRUCT
-the structure to be applied.  The function will only modify parts
-of the list which have changed.
-
-Initial position of cursor is restored after the changes."
-  (let* ((origin (point-marker))
-	 (inlinetask-re (and (featurep 'org-inlinetask)
-			     (org-inlinetask-outline-regexp)))
-	 (item-re (org-item-re))
-	 (shift-body-ind
-	  (function
-	   ;; Shift the indentation between END and BEG by DELTA.
-	   ;; Start from the line before END.
-	   (lambda (end beg delta)
-	     (goto-char end)
-	     (skip-chars-backward " \r\t\n")
-	     (beginning-of-line)
-	     (while (or (> (point) beg)
-			(and (= (point) beg)
-			     (not (looking-at item-re))))
-	       (cond
-		;; Skip inline tasks.
-		((and inlinetask-re (looking-at inlinetask-re))
-		 (org-inlinetask-goto-beginning))
-		;; Shift only non-empty lines.
-		((looking-at-p "^[ \t]*\\S-")
-		 (indent-line-to (+ (org-get-indentation) delta))))
-	       (forward-line -1)))))
-         (modify-item
-          (function
-	   ;; Replace ITEM first line elements with new elements from
-	   ;; STRUCT, if appropriate.
-	   (lambda (item)
-	     (goto-char item)
-	     (let* ((new-ind (org-list-get-ind item struct))
-		    (old-ind (org-get-indentation))
-		    (new-bul (org-list-bullet-string
-			      (org-list-get-bullet item struct)))
-		    (old-bul (org-list-get-bullet item old-struct))
-		    (new-box (org-list-get-checkbox item struct)))
-	       (looking-at org-list-full-item-re)
-	       ;; a.  Replace bullet
-	       (unless (equal old-bul new-bul)
-		 (replace-match new-bul nil nil nil 1))
-	       ;; b.  Replace checkbox.
-	       (cond
-		((equal (match-string 3) new-box))
-		((and (match-string 3) new-box)
-		 (replace-match new-box nil nil nil 3))
-		((match-string 3)
-		 (looking-at ".*?\\([ \t]*\\[[ X-]\\]\\)")
-		 (replace-match "" nil nil nil 1))
-		(t (let ((counterp (match-end 2)))
-		     (goto-char (if counterp (1+ counterp) (match-end 1)))
-		     (insert (concat new-box (unless counterp " "))))))
-	       ;; c.  Indent item to appropriate column.
-	       (unless (= new-ind old-ind)
-		 (delete-region (goto-char (point-at-bol))
-				(progn (skip-chars-forward " \t") (point)))
-		 (indent-to new-ind)))))))
-    ;; 1. First get list of items and position endings.  We maintain
-    ;;    two alists: ITM-SHIFT, determining indentation shift needed
-    ;;    at item, and END-LIST, a pseudo-alist where key is ending
-    ;;    position and value point.
-    (let (end-list acc-end itm-shift all-ends sliced-struct)
-      (dolist (e old-struct)
-	(let* ((pos (car e))
-	       (ind-pos (org-list-get-ind pos struct))
-	       (ind-old (org-list-get-ind pos old-struct))
-	       (bul-pos (org-list-get-bullet pos struct))
-	       (bul-old (org-list-get-bullet pos old-struct))
-	       (ind-shift (- (+ ind-pos (length bul-pos))
-			     (+ ind-old (length bul-old))))
-	       (end-pos (org-list-get-item-end pos old-struct)))
-	  (push (cons pos ind-shift) itm-shift)
-	  (unless (assq end-pos old-struct)
-	    ;; To determine real ind of an ending position that
-	    ;; is not at an item, we have to find the item it
-	    ;; belongs to: it is the last item (ITEM-UP), whose
-	    ;; ending is further than the position we're
-	    ;; interested in.
-	    (let ((item-up (assoc-default end-pos acc-end #'>)))
-	      (push (cons end-pos item-up) end-list)))
-	  (push (cons end-pos pos) acc-end)))
-      ;; 2. Slice the items into parts that should be shifted by the
-      ;;    same amount of indentation.  Each slice follow the pattern
-      ;;    (END BEG DELTA).  Slices are returned in reverse order.
-      (setq all-ends (sort (append (mapcar #'car itm-shift)
-				   (org-uniquify (mapcar #'car end-list)))
-			   #'<)
-	    acc-end (nreverse acc-end))
-      (while (cdr all-ends)
-	(let* ((up (pop all-ends))
-	       (down (car all-ends))
-	       (itemp (assq up struct))
-	       (delta
-		(if itemp (cdr (assq up itm-shift))
-		  ;; If we're not at an item, there's a child of the
-		  ;; item point belongs to above.  Make sure the less
-		  ;; indented line in this slice has the same column
-		  ;; as that child.
-		  (let* ((child (cdr (assq up acc-end)))
-			 (ind (org-list-get-ind child struct))
-			 (min-ind most-positive-fixnum))
-		    (save-excursion
-		      (goto-char up)
-		      (while (< (point) down)
-			;; Ignore empty lines.  Also ignore blocks and
-			;; drawers contents.
-			(unless (looking-at-p "[ \t]*$")
-			  (setq min-ind (min (org-get-indentation) min-ind))
-			  (cond
-			   ((and (looking-at "#\\+BEGIN\\(:\\|_\\S-+\\)")
-				 (re-search-forward
-				  (format "^[ \t]*#\\+END%s[ \t]*$"
-					  (match-string 1))
-				  down t)))
-			   ((and (looking-at org-drawer-regexp)
-				 (re-search-forward "^[ \t]*:END:[ \t]*$"
-						    down t)))))
-			(forward-line)))
-		    (- ind min-ind)))))
-	  (push (list down up delta) sliced-struct)))
-      ;; 3. Shift each slice in buffer, provided delta isn't 0, from
-      ;;    end to beginning.  Take a special action when beginning is
-      ;;    at item bullet.
-      (dolist (e sliced-struct)
-	(unless (zerop (nth 2 e)) (apply shift-body-ind e))
-	(let* ((beg (nth 1 e))
-	       (cell (assq beg struct)))
-	  (unless (or (not cell) (equal cell (assq beg old-struct)))
-	    (funcall modify-item beg)))))
-    ;; 4. Go back to initial position and clean marker.
-    (goto-char origin)
-    (move-marker origin nil)))
-
-(defun org-list-write-struct (struct parents &optional old-struct)
-  "Correct bullets, checkboxes and indentation in list at point.
-
-STRUCT is the list structure.  PARENTS is the alist of parents,
-as returned by `org-list-parents-alist'.
-
-When non-nil, optional argument OLD-STRUCT is the reference
-structure of the list.  It should be provided whenever STRUCT
-doesn't correspond anymore to the real list in buffer."
-  ;; Order of functions matters here: checkboxes and endings need
-  ;; correct indentation to be set, and indentation needs correct
-  ;; bullets.
-  ;;
-  ;; 0. Save a copy of structure before modifications
-  (let ((old-struct (or old-struct (copy-tree struct))))
-    ;; 1. Set a temporary, but coherent with PARENTS, indentation in
-    ;;    order to get items endings and bullets properly
-    (org-list-struct-fix-ind struct parents 2)
-    ;; 2. Fix each item end to get correct prevs alist.
-    (org-list-struct-fix-item-end struct)
-    ;; 3. Get bullets right.
-    (let ((prevs (org-list-prevs-alist struct)))
-      (org-list-struct-fix-bul struct prevs)
-      ;; 4. Now get real indentation.
-      (org-list-struct-fix-ind struct parents)
-      ;; 5. Eventually fix checkboxes.
-      (org-list-struct-fix-box struct parents prevs))
-    ;; 6. Apply structure modifications to buffer.
-    (org-list-struct-apply-struct struct old-struct)))
-
-
-
-;;; Misc Tools
-
-(defun org-apply-on-list (function init-value &rest args)
-  "Call FUNCTION on each item of the list at point.
-FUNCTION must be called with at least one argument: INIT-VALUE,
-that will contain the value returned by the function at the
-previous item, plus ARGS extra arguments.
-
-FUNCTION is applied on items in reverse order.
-
-As an example, \(org-apply-on-list \(lambda \(result) \(1+ result)) 0)
-will return the number of items in the current list.
-
-Sublists of the list are skipped.  Cursor is always at the
-beginning of the item."
-  (let* ((struct (org-list-struct))
-	 (prevs (org-list-prevs-alist struct))
-	 (item (copy-marker (point-at-bol)))
-	 (all (org-list-get-all-items (marker-position item) struct prevs))
-	 (value init-value))
-    (mapc (lambda (e)
-	    (goto-char e)
-	    (setq value (apply function value args)))
-	  (nreverse all))
-    (goto-char item)
-    (move-marker item nil)
-    value))
-
-(defun org-list-set-item-visibility (item struct view)
-  "Set visibility of ITEM in STRUCT to VIEW.
-
-Possible values are: `folded', `children' or `subtree'.  See
-`org-cycle' for more information."
-  (cond
-   ((eq view 'folded)
-    (let ((item-end (org-list-get-item-end-before-blank item struct)))
-      ;; Hide from eol
-      (outline-flag-region (save-excursion (goto-char item) (point-at-eol))
-			   item-end t)))
-   ((eq view 'children)
-    ;; First show everything.
-    (org-list-set-item-visibility item struct 'subtree)
-    ;; Then fold every child.
-    (let* ((parents (org-list-parents-alist struct))
-	   (children (org-list-get-children item struct parents)))
-      (mapc (lambda (e)
-	      (org-list-set-item-visibility e struct 'folded))
-	    children)))
-   ((eq view 'subtree)
-    ;; Show everything
-    (let ((item-end (org-list-get-item-end item struct)))
-      (outline-flag-region item item-end nil)))))
-
-(defun org-list-item-body-column (item)
-  "Return column at which body of ITEM should start."
-  (save-excursion
-    (goto-char item)
-    (if (save-excursion
-	  (end-of-line)
-	  (re-search-backward
-	   "[ \t]::\\([ \t]\\|$\\)" (line-beginning-position) t))
-	;; Descriptive list item.  Body starts after item's tag, if
-	;; possible.
-	(let ((start (1+ (- (match-beginning 1) (line-beginning-position))))
-	      (ind (org-get-indentation)))
-	  (if (> start (+ ind org-list-description-max-indent))
-	      (+ ind 5)
-	    start))
-      ;; Regular item.  Body starts after bullet.
-      (looking-at "[ \t]*\\(\\S-+\\)")
-      (+ (progn (goto-char (match-end 1)) (current-column))
-	 (if (and org-list-two-spaces-after-bullet-regexp
-		  (string-match-p org-list-two-spaces-after-bullet-regexp
-				  (match-string 1)))
-	     2
-	   1)))))
-
-
-
-;;; Interactive functions
-
-(defalias 'org-list-get-item-begin 'org-in-item-p)
-
-(defun org-beginning-of-item ()
-  "Go to the beginning of the current item.
-Throw an error when not in a list."
-  (interactive)
-  (let ((begin (org-in-item-p)))
-    (if begin (goto-char begin) (error "Not in an item"))))
-
-(defun org-beginning-of-item-list ()
-  "Go to the beginning item of the current list or sublist.
-Throw an error when not in a list."
-  (interactive)
-  (let ((begin (org-in-item-p)))
-    (if (not begin)
-	(error "Not in an item")
-      (goto-char begin)
-      (let* ((struct (org-list-struct))
-	     (prevs (org-list-prevs-alist struct)))
-	(goto-char (org-list-get-list-begin begin struct prevs))))))
-
-(defun org-end-of-item-list ()
-  "Go to the end of the current list or sublist.
-Throw an error when not in a list."
-  (interactive)
-  (let ((begin (org-in-item-p)))
-    (if (not begin)
-	(error "Not in an item")
-      (goto-char begin)
-      (let* ((struct (org-list-struct))
-	     (prevs (org-list-prevs-alist struct)))
-	(goto-char (org-list-get-list-end begin struct prevs))))))
-
-(defun org-end-of-item ()
-  "Go to the end of the current item.
-Throw an error when not in a list."
-  (interactive)
-  (let ((begin (org-in-item-p)))
-    (if (not begin)
-	(error "Not in an item")
-      (goto-char begin)
-      (let ((struct (org-list-struct)))
-	(goto-char (org-list-get-item-end begin struct))))))
-
-(defun org-previous-item ()
-  "Move to the beginning of the previous item.
-Throw an error when not in a list.  Also throw an error when at
-first item, unless `org-list-use-circular-motion' is non-nil."
-  (interactive)
-  (let ((item (org-in-item-p)))
-    (if (not item)
-	(error "Not in an item")
-      (goto-char item)
-      (let* ((struct (org-list-struct))
-	     (prevs (org-list-prevs-alist struct))
-	     (prevp (org-list-get-prev-item item struct prevs)))
-	(cond
-	 (prevp (goto-char prevp))
-	 (org-list-use-circular-motion
-	  (goto-char (org-list-get-last-item item struct prevs)))
-	 (t (error "On first item")))))))
-
-(defun org-next-item ()
-  "Move to the beginning of the next item.
-Throw an error when not in a list.  Also throw an error when at
-last item, unless `org-list-use-circular-motion' is non-nil."
-  (interactive)
-  (let ((item (org-in-item-p)))
-    (if (not item)
-	(error "Not in an item")
-      (goto-char item)
-      (let* ((struct (org-list-struct))
-	     (prevs (org-list-prevs-alist struct))
-	     (prevp (org-list-get-next-item item struct prevs)))
-	(cond
-	 (prevp (goto-char prevp))
-	 (org-list-use-circular-motion
-	  (goto-char (org-list-get-first-item item struct prevs)))
-	 (t (error "On last item")))))))
-
-(defun org-move-item-down ()
-  "Move the item at point down, i.e. swap with following item.
-Sub-items (items with larger indentation) are considered part of
-the item, so this really moves item trees."
-  (interactive)
-  (unless (org-at-item-p) (error "Not at an item"))
-  (let* ((col (current-column))
-	 (item (point-at-bol))
-	 (struct (org-list-struct))
-	 (prevs (org-list-prevs-alist struct))
-	 (next-item (org-list-get-next-item (point-at-bol) struct prevs)))
-    (unless (or next-item org-list-use-circular-motion)
-      (user-error "Cannot move this item further down"))
-    (if (not next-item)
-	(setq struct (org-list-send-item item 'begin struct))
-      (setq struct (org-list-swap-items item next-item struct))
-      (goto-char
-       (org-list-get-next-item item struct (org-list-prevs-alist struct))))
-    (org-list-write-struct struct (org-list-parents-alist struct))
-    (org-move-to-column col)))
-
-(defun org-move-item-up ()
-  "Move the item at point up, i.e. swap with previous item.
-Sub-items (items with larger indentation) are considered part of
-the item, so this really moves item trees."
-  (interactive)
-  (unless (org-at-item-p) (error "Not at an item"))
-  (let* ((col (current-column))
-	 (item (point-at-bol))
-	 (struct (org-list-struct))
-	 (prevs (org-list-prevs-alist struct))
-	 (prev-item (org-list-get-prev-item (point-at-bol) struct prevs)))
-    (unless (or prev-item org-list-use-circular-motion)
-      (user-error "Cannot move this item further up"))
-    (if (not prev-item)
-	(setq struct (org-list-send-item item 'end struct))
-      (setq struct (org-list-swap-items prev-item item struct)))
-    (org-list-write-struct struct (org-list-parents-alist struct))
-    (org-move-to-column col)))
-
-(defun org-insert-item (&optional checkbox)
-  "Insert a new item at the current level.
-If cursor is before first character after bullet of the item, the
-new item will be created before the current one.
-
-If CHECKBOX is non-nil, add a checkbox next to the bullet.
-
-Return t when things worked, nil when we are not in an item, or
-item is invisible."
-  (interactive "P")
-  (let ((itemp (org-in-item-p))
-	(pos (point)))
-    ;; If cursor isn't is a list or if list is invisible, return nil.
-    (unless (or (not itemp)
-		(save-excursion
-		  (goto-char itemp)
-		  (org-invisible-p)))
-      (if (save-excursion
-	    (goto-char itemp)
-	    (org-at-item-timer-p))
-	  ;; Timer list: delegate to `org-timer-item'.
-	  (progn (org-timer-item) t)
-	(let* ((struct (save-excursion (goto-char itemp)
-				       (org-list-struct)))
-	       (prevs (org-list-prevs-alist struct))
-	       ;; If we're in a description list, ask for the new term.
-	       (desc (when (eq (org-list-get-list-type itemp struct prevs)
-			       'descriptive)
-		       " :: ")))
-	  (setq struct (org-list-insert-item pos struct prevs checkbox desc))
-	  (org-list-write-struct struct (org-list-parents-alist struct))
-	  (when checkbox (org-update-checkbox-count-maybe))
-	  (looking-at org-list-full-item-re)
-	  (goto-char (if (and (match-beginning 4)
-			      (save-match-data
-				(string-match "[.)]" (match-string 1))))
-			 (match-beginning 4)
-		       (match-end 0)))
-	  (if desc (backward-char 1))
-	  t)))))
-
-(defun org-list-repair ()
-  "Fix indentation, bullets and checkboxes in the list at point."
-  (interactive)
-  (unless (org-at-item-p) (error "This is not a list"))
-  (let* ((struct (org-list-struct))
-	 (parents (org-list-parents-alist struct)))
-    (org-list-write-struct struct parents)))
-
-(defun org-cycle-list-bullet (&optional which)
-  "Cycle through the different itemize/enumerate bullets.
-This cycle the entire list level through the sequence:
-
-   `-'  ->  `+'  ->  `*'  ->  `1.'  ->  `1)'
-
-If WHICH is a valid string, use that as the new bullet.  If WHICH
-is an integer, 0 means `-', 1 means `+' etc.  If WHICH is
-`previous', cycle backwards."
-  (interactive "P")
-  (unless (org-at-item-p) (error "Not at an item"))
-  (save-excursion
-    (beginning-of-line)
-    (let* ((struct (org-list-struct))
-           (parents (org-list-parents-alist struct))
-           (prevs (org-list-prevs-alist struct))
-           (list-beg (org-list-get-first-item (point) struct prevs))
-           (bullet (org-list-get-bullet list-beg struct))
-	   (alpha-p (org-list-use-alpha-bul-p list-beg struct prevs))
-	   (case-fold-search nil)
-	   (current (cond
-		     ((string-match "[a-z]\\." bullet) "a.")
-		     ((string-match "[a-z])" bullet) "a)")
-		     ((string-match "[A-Z]\\." bullet) "A.")
-		     ((string-match "[A-Z])" bullet) "A)")
-		     ((string-match "\\." bullet) "1.")
-		     ((string-match ")" bullet) "1)")
-		     (t (org-trim bullet))))
-           ;; Compute list of possible bullets, depending on context.
-	   (bullet-list
-	    (append '("-" "+" )
-		    ;; *-bullets are not allowed at column 0.
-		    (unless (looking-at "\\S-") '("*"))
-		    ;; Description items cannot be numbered.
-		    (unless (or (eq org-plain-list-ordered-item-terminator ?\))
-				(org-at-item-description-p))
-		      '("1."))
-		    (unless (or (eq org-plain-list-ordered-item-terminator ?.)
-				(org-at-item-description-p))
-		      '("1)"))
-		    (unless (or (not alpha-p)
-				(eq org-plain-list-ordered-item-terminator ?\))
-				(org-at-item-description-p))
-		      '("a." "A."))
-		    (unless (or (not alpha-p)
-				(eq org-plain-list-ordered-item-terminator ?.)
-				(org-at-item-description-p))
-		      '("a)" "A)"))))
-	   (len (length bullet-list))
-	   (item-index (- len (length (member current bullet-list))))
-	   (get-value (lambda (index) (nth (mod index len) bullet-list)))
-	   (new (cond
-		 ((member which bullet-list) which)
-		 ((numberp which) (funcall get-value which))
-		 ((eq 'previous which) (funcall get-value (1- item-index)))
-		 (t (funcall get-value (1+ item-index))))))
-      ;; Use a short variation of `org-list-write-struct' as there's
-      ;; no need to go through all the steps.
-      (let ((old-struct (copy-tree struct)))
-        (org-list-set-bullet list-beg struct (org-list-bullet-string new))
-        (org-list-struct-fix-bul struct prevs)
-        (org-list-struct-fix-ind struct parents)
-        (org-list-struct-apply-struct struct old-struct)))))
-
-(defun org-toggle-checkbox (&optional toggle-presence)
-  "Toggle the checkbox in the current line.
-
-With prefix argument TOGGLE-PRESENCE, add or remove checkboxes.
-With a double prefix argument, set the checkbox to \"[-]\".
-
-When there is an active region, toggle status or presence of the
-first checkbox there, and make every item inside have the same
-status or presence, respectively.
-
-If point is on a headline, apply this to all checkbox items in
-the text below the heading, taking as reference the first item in
-subtree, ignoring planning line and any drawer following it."
-  (interactive "P")
-  (save-excursion
-    (let* (singlep
-	   block-item
-	   lim-up
-	   lim-down
-	   (orderedp (org-entry-get nil "ORDERED"))
-	   (_bounds
-	    ;; In a region, start at first item in region.
-	    (cond
-	     ((org-region-active-p)
-	      (let ((limit (region-end)))
-		(goto-char (region-beginning))
-		(if (org-list-search-forward (org-item-beginning-re) limit t)
-		    (setq lim-up (point-at-bol))
-		  (error "No item in region"))
-		(setq lim-down (copy-marker limit))))
-	     ((org-at-heading-p)
-	      ;; On a heading, start at first item after drawers and
-	      ;; time-stamps (scheduled, etc.).
-	      (let ((limit (save-excursion (outline-next-heading) (point))))
-		(org-end-of-meta-data t)
-		(if (org-list-search-forward (org-item-beginning-re) limit t)
-		    (setq lim-up (point-at-bol))
-		  (error "No item in subtree"))
-		(setq lim-down (copy-marker limit))))
-	     ;; Just one item: set SINGLEP flag.
-	     ((org-at-item-p)
-	      (setq singlep t)
-	      (setq lim-up (point-at-bol)
-		    lim-down (copy-marker (point-at-eol))))
-	     (t (error "Not at an item or heading, and no active region"))))
-	   ;; Determine the checkbox going to be applied to all items
-	   ;; within bounds.
-	   (ref-checkbox
-	    (progn
-	      (goto-char lim-up)
-	      (let ((cbox (and (org-at-item-checkbox-p) (match-string 1))))
-		(cond
-		 ((equal toggle-presence '(16)) "[-]")
-		 ((equal toggle-presence '(4))
-		  (unless cbox "[ ]"))
-		 ((equal "[X]" cbox) "[ ]")
-		 (t "[X]"))))))
-      ;; When an item is found within bounds, grab the full list at
-      ;; point structure, then: (1) set check-box of all its items
-      ;; within bounds to REF-CHECKBOX, (2) fix check-boxes of the
-      ;; whole list, (3) move point after the list.
-      (goto-char lim-up)
-      (while (and (< (point) lim-down)
-		  (org-list-search-forward (org-item-beginning-re)
-					   lim-down 'move))
-	(let* ((struct (org-list-struct))
-	       (struct-copy (copy-tree struct))
-	       (parents (org-list-parents-alist struct))
-	       (prevs (org-list-prevs-alist struct))
-	       (bottom (copy-marker (org-list-get-bottom-point struct)))
-	       (items-to-toggle (cl-remove-if
-				 (lambda (e) (or (< e lim-up) (> e lim-down)))
-				 (mapcar #'car struct))))
-	  (mapc (lambda (e) (org-list-set-checkbox
-			     e struct
-			     ;; If there is no box at item, leave as-is
-			     ;; unless function was called with C-u prefix.
-			     (let ((cur-box (org-list-get-checkbox e struct)))
-			       (if (or cur-box (equal toggle-presence '(4)))
-				   ref-checkbox
-				 cur-box))))
-		items-to-toggle)
-	  (setq block-item (org-list-struct-fix-box
-			    struct parents prevs orderedp))
-	  ;; Report some problems due to ORDERED status of subtree.
-	  ;; If only one box was being checked, throw an error, else,
-	  ;; only signal problems.
-	  (cond
-	   ((and singlep block-item (> lim-up block-item))
-	    (error
-	     "Checkbox blocked because of unchecked box at line %d"
-	     (org-current-line block-item)))
-	   (block-item
-	    (message
-	     "Checkboxes were removed due to unchecked box at line %d"
-	     (org-current-line block-item))))
-	  (goto-char bottom)
-	  (move-marker bottom nil)
-	  (org-list-struct-apply-struct struct struct-copy)))
-      (move-marker lim-down nil)))
-  (org-update-checkbox-count-maybe))
-
-(defun org-reset-checkbox-state-subtree ()
-  "Reset all checkboxes in an entry subtree."
-  (interactive "*")
-  (if (org-before-first-heading-p)
-      (error "Not inside a tree")
-    (save-restriction
-      (save-excursion
-	(org-narrow-to-subtree)
-	(org-show-subtree)
-	(goto-char (point-min))
-	(let ((end (point-max)))
-	  (while (< (point) end)
-	    (when (org-at-item-checkbox-p)
-	      (replace-match "[ ]" t t nil 1))
-	    (beginning-of-line 2)))
-	(org-update-checkbox-count-maybe 'all)))))
-
-(defun org-update-checkbox-count (&optional all)
-  "Update the checkbox statistics in the current section.
-
-This will find all statistic cookies like [57%] and [6/12] and
-update them with the current numbers.
-
-With optional prefix argument ALL, do this for the whole buffer."
-  (interactive "P")
-  (org-with-wide-buffer
-   (let* ((cookie-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
-	  (box-re "^[ \t]*\\([-+*]\\|\\([0-9]+\\|[A-Za-z]\\)[.)]\\)[ \t]+\
-\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?\\(\\[[- X]\\]\\)")
-	  (recursivep
-	   (or (not org-checkbox-hierarchical-statistics)
-	       (string-match "\\<recursive\\>"
-			     (or (org-entry-get nil "COOKIE_DATA") ""))))
-	  (within-inlinetask (and (not all)
-				  (featurep 'org-inlinetask)
-				  (org-inlinetask-in-task-p)))
-	  (end (cond (all (point-max))
-		     (within-inlinetask
-		      (save-excursion (outline-next-heading) (point)))
-		     (t (save-excursion
-			  (org-with-limited-levels (outline-next-heading))
-			  (point)))))
-	  (count-boxes
-	   (lambda (item structs recursivep)
-	     ;; Return number of checked boxes and boxes of all types
-	     ;; in all structures in STRUCTS.  If RECURSIVEP is
-	     ;; non-nil, also count boxes in sub-lists.  If ITEM is
-	     ;; nil, count across the whole structure, else count only
-	     ;; across subtree whose ancestor is ITEM.
-	     (let ((c-on 0) (c-all 0))
-	       (dolist (s structs (list c-on c-all))
-		 (let* ((pre (org-list-prevs-alist s))
-			(par (org-list-parents-alist s))
-			(items
-			 (cond
-			  ((and recursivep item) (org-list-get-subtree item s))
-			  (recursivep (mapcar #'car s))
-			  (item (org-list-get-children item s par))
-			  (t (org-list-get-all-items
-			      (org-list-get-top-point s) s pre))))
-			(cookies (delq nil (mapcar
-					    (lambda (e)
-					      (org-list-get-checkbox e s))
-					    items))))
-		   (cl-incf c-all (length cookies))
-		   (cl-incf c-on (cl-count "[X]" cookies :test #'equal)))))))
-	  cookies-list cache)
-     ;; Move to start.
-     (cond (all (goto-char (point-min)))
-	   (within-inlinetask (org-back-to-heading t))
-	   (t (org-with-limited-levels (outline-previous-heading))))
-     ;; Build an alist for each cookie found.  The key is the position
-     ;; at beginning of cookie and values ending position, format of
-     ;; cookie, number of checked boxes to report and total number of
-     ;; boxes.
-     (while (re-search-forward cookie-re end t)
-       (let ((context (save-excursion (backward-char)
-				      (save-match-data (org-element-context)))))
-	 (when (eq (org-element-type context) 'statistics-cookie)
-	   (push
-	    (append
-	     (list (match-beginning 1) (match-end 1) (match-end 2))
-	     (let* ((container
-		     (org-element-lineage
-		      context
-		      '(drawer center-block dynamic-block inlinetask item
-			       quote-block special-block verse-block)))
-		    (beg (if container
-			     (org-element-property :contents-begin container)
-			   (save-excursion
-			     (org-with-limited-levels
-			      (outline-previous-heading))
-			     (point)))))
-	       (or (cdr (assq beg cache))
-		   (save-excursion
-		     (goto-char beg)
-		     (let ((end
-			    (if container
-				(org-element-property :contents-end container)
-			      (save-excursion
-				(org-with-limited-levels (outline-next-heading))
-				(point))))
-			   structs)
-		       (while (re-search-forward box-re end t)
-			 (let ((element (org-element-at-point)))
-			   (when (eq (org-element-type element) 'item)
-			     (push (org-element-property :structure element)
-				   structs)
-			     ;; Skip whole list since we have its
-			     ;; structure anyway.
-			     (while (setq element (org-element-lineage
-						   element '(plain-list)))
-			       (goto-char
-				(min (org-element-property :end element)
-				     end))))))
-		       ;; Cache count for cookies applying to the same
-		       ;; area.  Then return it.
-		       (let ((count
-			      (funcall count-boxes
-				       (and (eq (org-element-type container)
-						'item)
-					    (org-element-property
-					     :begin container))
-				       structs
-				       recursivep)))
-			 (push (cons beg count) cache)
-			 count))))))
-	    cookies-list))))
-     ;; Apply alist to buffer.
-     (dolist (cookie cookies-list)
-       (let* ((beg (car cookie))
-	      (end (nth 1 cookie))
-	      (percent (nth 2 cookie))
-	      (checked (nth 3 cookie))
-	      (total (nth 4 cookie)))
-	 (goto-char beg)
-	 (insert
-	  (if percent (format "[%d%%]" (floor (* 100.0 checked)
-					      (max 1 total)))
-	    (format "[%d/%d]" checked total)))
-	 (delete-region (point) (+ (point) (- end beg)))
-	 (when org-auto-align-tags (org-fix-tags-on-the-fly)))))))
-
-(defun org-get-checkbox-statistics-face ()
-  "Select the face for checkbox statistics.
-The face will be `org-done' when all relevant boxes are checked.
-Otherwise it will be `org-todo'."
-  (if (match-end 1)
-      (if (equal (match-string 1) "100%")
-	  'org-checkbox-statistics-done
-	'org-checkbox-statistics-todo)
-    (if (and (> (match-end 2) (match-beginning 2))
-	     (equal (match-string 2) (match-string 3)))
-	'org-checkbox-statistics-done
-      'org-checkbox-statistics-todo)))
-
-(defun org-update-checkbox-count-maybe (&optional all)
-  "Update checkbox statistics unless turned off by user.
-With an optional argument ALL, update them in the whole buffer."
-  (when (cdr (assq 'checkbox org-list-automatic-rules))
-    (org-update-checkbox-count all))
-  (run-hooks 'org-checkbox-statistics-hook))
-
-(defvar org-last-indent-begin-marker (make-marker))
-(defvar org-last-indent-end-marker (make-marker))
-(defun org-list-indent-item-generic (arg no-subtree struct)
-  "Indent a local list item including its children.
-When number ARG is a negative, item will be outdented, otherwise
-it will be indented.
-
-If a region is active, all items inside will be moved.
-
-If NO-SUBTREE is non-nil, only indent the item itself, not its
-children.
-
-STRUCT is the list structure.
-
-Return t if successful."
-  (save-excursion
-    (let* ((regionp (org-region-active-p))
-	   (rbeg (and regionp (region-beginning)))
-	   (rend (and regionp (region-end)))
-	   (top (org-list-get-top-point struct))
-	   (parents (org-list-parents-alist struct))
-	   (prevs (org-list-prevs-alist struct))
-	   ;; Are we going to move the whole list?
-	   (specialp
-	    (and (not regionp)
-		 (= top (point-at-bol))
-		 (cdr (assq 'indent org-list-automatic-rules))
-		 (if no-subtree
-		     (user-error
-		      "At first item: use S-M-<left/right> to move the whole list")
-		   t))))
-      ;; Determine begin and end points of zone to indent.  If moving
-      ;; more than one item, save them for subsequent moves.
-      (unless (and (memq last-command '(org-shiftmetaright org-shiftmetaleft))
-		   (memq this-command '(org-shiftmetaright org-shiftmetaleft)))
-	(if regionp
-	    (progn
-	      (set-marker org-last-indent-begin-marker rbeg)
-	      (set-marker org-last-indent-end-marker rend))
-	  (set-marker org-last-indent-begin-marker (point-at-bol))
-	  (set-marker org-last-indent-end-marker
-		      (cond
-		       (specialp (org-list-get-bottom-point struct))
-		       (no-subtree (1+ (point-at-bol)))
-		       (t (org-list-get-item-end (point-at-bol) struct))))))
-      (let* ((beg (marker-position org-last-indent-begin-marker))
-	     (end (marker-position org-last-indent-end-marker)))
-	(cond
-	 ;; Special case: moving top-item with indent rule.
-	 (specialp
-	  (let* ((level-skip (org-level-increment))
-		 (offset (if (< arg 0) (- level-skip) level-skip))
-		 (top-ind (org-list-get-ind beg struct))
-		 (old-struct (copy-tree struct)))
-	    (if (< (+ top-ind offset) 0)
-		(error "Cannot outdent beyond margin")
-	      ;; Change bullet if necessary.
-	      (when (and (= (+ top-ind offset) 0)
-			 (string-match "*"
-				       (org-list-get-bullet beg struct)))
-		(org-list-set-bullet beg struct
-				     (org-list-bullet-string "-")))
-	      ;; Shift every item by OFFSET and fix bullets.  Then
-	      ;; apply changes to buffer.
-	      (mapc (lambda (e)
-		      (let ((ind (org-list-get-ind (car e) struct)))
-			(org-list-set-ind (car e) struct (+ ind offset))))
-		    struct)
-	      (org-list-struct-fix-bul struct prevs)
-	      (org-list-struct-apply-struct struct old-struct))))
-	 ;; Forbidden move:
-	 ((and (< arg 0)
-	       ;; If only one item is moved, it mustn't have a child.
-	       (or (and no-subtree
-			(not regionp)
-			(org-list-has-child-p beg struct))
-		   ;; If a subtree or region is moved, the last item
-		   ;; of the subtree mustn't have a child.
-		   (let ((last-item (caar
-				     (reverse
-				      (cl-remove-if
-				       (lambda (e) (>= (car e) end))
-				       struct)))))
-		     (org-list-has-child-p last-item struct))))
-	  (error "Cannot outdent an item without its children"))
-	 ;; Normal shifting
-	 (t
-	  (let* ((new-parents
-		  (if (< arg 0)
-		      (org-list-struct-outdent beg end struct parents)
-		    (org-list-struct-indent beg end struct parents prevs))))
-	    (org-list-write-struct struct new-parents))
-	  (org-update-checkbox-count-maybe))))))
-  t)
-
-(defun org-outdent-item ()
-  "Outdent a local list item, but not its children.
-If a region is active, all items inside will be moved."
-  (interactive)
-  (let ((regionp (org-region-active-p)))
-    (cond
-     ((or (org-at-item-p)
-	  (and regionp
-	       (save-excursion (goto-char (region-beginning))
-			       (org-at-item-p))))
-      (let ((struct (if (not regionp) (org-list-struct)
-		      (save-excursion (goto-char (region-beginning))
-				      (org-list-struct)))))
-	(org-list-indent-item-generic -1 t struct)))
-     (regionp (error "Region not starting at an item"))
-     (t (error "Not at an item")))))
-
-(defun org-indent-item ()
-  "Indent a local list item, but not its children.
-If a region is active, all items inside will be moved."
-  (interactive)
-  (let ((regionp (org-region-active-p)))
-    (cond
-     ((or (org-at-item-p)
-	  (and regionp
-	       (save-excursion (goto-char (region-beginning))
-			       (org-at-item-p))))
-      (let ((struct (if (not regionp) (org-list-struct)
-		      (save-excursion (goto-char (region-beginning))
-				      (org-list-struct)))))
-	(org-list-indent-item-generic 1 t struct)))
-     (regionp (error "Region not starting at an item"))
-     (t (error "Not at an item")))))
-
-(defun org-outdent-item-tree ()
-  "Outdent a local list item including its children.
-If a region is active, all items inside will be moved."
-  (interactive)
-  (let ((regionp (org-region-active-p)))
-    (cond
-     ((or (org-at-item-p)
-	  (and regionp
-	       (save-excursion (goto-char (region-beginning))
-			       (org-at-item-p))))
-      (let ((struct (if (not regionp) (org-list-struct)
-		      (save-excursion (goto-char (region-beginning))
-				      (org-list-struct)))))
-	(org-list-indent-item-generic -1 nil struct)))
-     (regionp (error "Region not starting at an item"))
-     (t (error "Not at an item")))))
-
-(defun org-indent-item-tree ()
-  "Indent a local list item including its children.
-If a region is active, all items inside will be moved."
-  (interactive)
-  (let ((regionp (org-region-active-p)))
-    (cond
-     ((or (org-at-item-p)
-	  (and regionp
-	       (save-excursion (goto-char (region-beginning))
-			       (org-at-item-p))))
-      (let ((struct (if (not regionp) (org-list-struct)
-		      (save-excursion (goto-char (region-beginning))
-				      (org-list-struct)))))
-	(org-list-indent-item-generic 1 nil struct)))
-     (regionp (error "Region not starting at an item"))
-     (t (error "Not at an item")))))
-
-(defvar org-tab-ind-state)
-(defvar org-adapt-indentation)
-(defun org-cycle-item-indentation ()
-  "Cycle levels of indentation of an empty item.
-The first run indents the item, if applicable.  Subsequent runs
-outdent it at meaningful levels in the list.  When done, item is
-put back at its original position with its original bullet.
-
-Return t at each successful move."
-  (when (org-at-item-p)
-    (let* ((org-adapt-indentation nil)
-	   (struct (org-list-struct))
-	   (ind (org-list-get-ind (point-at-bol) struct))
-	   (bullet (org-trim (buffer-substring (point-at-bol) (point-at-eol)))))
-      ;; Accept empty items or if cycle has already started.
-      (when (or (eq last-command 'org-cycle-item-indentation)
-		(and (save-excursion
-		       (beginning-of-line)
-		       (looking-at org-list-full-item-re))
-		     (>= (match-end 0) (save-excursion
-					 (goto-char (org-list-get-item-end
-						     (point-at-bol) struct))
-					 (skip-chars-backward " \r\t\n")
-					 (point)))))
-	(setq this-command 'org-cycle-item-indentation)
-	;; When in the middle of the cycle, try to outdent first.  If
-	;; it fails, and point is still at initial position, indent.
-	;; Else, re-create it at its original position.
-	(if (eq last-command 'org-cycle-item-indentation)
-	    (cond
-	     ((ignore-errors (org-list-indent-item-generic -1 t struct)))
-	     ((and (= ind (car org-tab-ind-state))
-		   (ignore-errors (org-list-indent-item-generic 1 t struct))))
-	     (t (delete-region (point-at-bol) (point-at-eol))
-		(indent-to-column (car org-tab-ind-state))
-		(insert (cdr org-tab-ind-state) " ")
-		;; Break cycle
-		(setq this-command 'identity)))
-	  ;; If a cycle is starting, remember indentation and bullet,
-	  ;; then try to indent.  If it fails, try to outdent.
-	  (setq org-tab-ind-state (cons ind bullet))
-	  (cond
-	   ((ignore-errors (org-list-indent-item-generic 1 t struct)))
-	   ((ignore-errors (org-list-indent-item-generic -1 t struct)))
-	   (t (user-error "Cannot move item"))))
-	t))))
-
-(defun org-sort-list
-    (&optional with-case sorting-type getkey-func compare-func interactive?)
-  "Sort list items.
-The cursor may be at any item of the list that should be sorted.
-Sublists are not sorted.  Checkboxes, if any, are ignored.
-
-Sorting can be alphabetically, numerically, by date/time as given
-by a time stamp, by a property or by priority.
-
-Comparing entries ignores case by default.  However, with an
-optional argument WITH-CASE, the sorting considers case as well.
-
-The command prompts for the sorting type unless it has been given
-to the function through the SORTING-TYPE argument, which needs to
-be a character, \(?n ?N ?a ?A ?t ?T ?f ?F ?x ?X).  Here is the
-detailed meaning of each character:
-
-n   Numerically, by converting the beginning of the item to a number.
-a   Alphabetically.  Only the first line of item is checked.
-t   By date/time, either the first active time stamp in the entry, if
-    any, or by the first inactive one.  In a timer list, sort the timers.
-x   By \"checked\" status of a check list.
-
-Capital letters will reverse the sort order.
-
-If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
-a function to be called with point at the beginning of the
-record.  It must return a value that is compatible with COMPARE-FUNC,
-the function used to compare entries.
-
-Sorting is done against the visible part of the headlines, it
-ignores hidden links.
-
-A non-nil value for INTERACTIVE? is used to signal that this
-function is being called interactively."
-  (interactive (list current-prefix-arg nil nil nil t))
-  (let* ((case-func (if with-case 'identity 'downcase))
-         (struct (org-list-struct))
-         (prevs (org-list-prevs-alist struct))
-	 (start (org-list-get-list-begin (point-at-bol) struct prevs))
-	 (end (org-list-get-list-end (point-at-bol) struct prevs))
-	 (sorting-type
-	  (or sorting-type
-	      (progn
-		(message
-		 "Sort plain list: [a]lpha  [n]umeric  [t]ime  [f]unc  [x]checked  A/N/T/F/X means reversed:")
-		(read-char-exclusive))))
-	 (dcst (downcase sorting-type))
-	 (getkey-func
-	  (and (= dcst ?f)
-	       (or getkey-func
-		   (and interactive?
-			(org-read-function "Function for extracting keys: "))
-		   (error "Missing key extractor"))))
-	 (sort-func
-	  (cond
-	   ((= dcst ?a) #'string<)
-	   ((= dcst ?f)
-	    (or compare-func
-		(and interactive?
-		     (org-read-function
-		      (concat "Function for comparing keys "
-			      "(empty for default `sort-subr' predicate): ")
-		      'allow-empty))))
-	   ((= dcst ?t) #'<)
-	   ((= dcst ?x) #'string<))))
-    (message "Sorting items...")
-    (save-restriction
-      (narrow-to-region start end)
-      (goto-char (point-min))
-      (let* ((case-fold-search nil)
-	     (now (current-time))
-	     (next-record (lambda ()
-			    (skip-chars-forward " \r\t\n")
-			    (or (eobp) (beginning-of-line))))
-	     (end-record (lambda ()
-			   (goto-char (org-list-get-item-end-before-blank
-				       (point) struct))))
-	     (value-to-sort
-	      (lambda ()
-		(when (looking-at "[ \t]*[-+*0-9.)]+\\([ \t]+\\[[- X]\\]\\)?[ \t]+")
-		  (cond
-		   ((= dcst ?n)
-		    (string-to-number
-		     (org-sort-remove-invisible
-		      (buffer-substring (match-end 0) (point-at-eol)))))
-		   ((= dcst ?a)
-		    (funcall case-func
-			     (org-sort-remove-invisible
-			      (buffer-substring
-			       (match-end 0) (point-at-eol)))))
-		   ((= dcst ?t)
-		    (cond
-		     ;; If it is a timer list, convert timer to seconds
-		     ((org-at-item-timer-p)
-		      (org-timer-hms-to-secs (match-string 1)))
-		     ((or (save-excursion
-			    (re-search-forward org-ts-regexp (point-at-eol) t))
-			  (save-excursion (re-search-forward org-ts-regexp-both
-							     (point-at-eol) t)))
-		      (org-time-string-to-seconds (match-string 0)))
-		     (t (float-time now))))
-		   ((= dcst ?x) (or (and (stringp (match-string 1))
-					 (match-string 1))
-				    ""))
-		   ((= dcst ?f)
-		    (if getkey-func
-			(let ((value (funcall getkey-func)))
-			  (if (stringp value)
-			      (funcall case-func value)
-			    value))
-		      (error "Invalid key function `%s'" getkey-func)))
-		   (t (error "Invalid sorting type `%c'" sorting-type)))))))
-	(sort-subr (/= dcst sorting-type)
-		   next-record
-		   end-record
-		   value-to-sort
-		   nil
-		   sort-func)
-	;; Read and fix list again, as `sort-subr' probably destroyed
-	;; its structure.
-	(org-list-repair)
-	(run-hooks 'org-after-sorting-entries-or-items-hook)
-	(message "Sorting items...done")))))
-
-(defun org-toggle-item (arg)
-  "Convert headings or normal lines to items, items to normal lines.
-If there is no active region, only the current line is considered.
-
-If the first non blank line in the region is a headline, convert
-all headlines to items, shifting text accordingly.
-
-If it is an item, convert all items to normal lines.
-
-If it is normal text, change region into a list of items.
-With a prefix argument ARG, change the region in a single item."
-  (interactive "P")
-  (let ((shift-text
-	 (lambda (ind end)
-	   ;; Shift text in current section to IND, from point to END.
-	   ;; The function leaves point to END line.
-	   (let ((min-i 1000) (end (copy-marker end)))
-	     ;; First determine the minimum indentation (MIN-I) of
-	     ;; the text.
-	     (save-excursion
-	       (catch 'exit
-		 (while (< (point) end)
-		   (let ((i (org-get-indentation)))
-		     (cond
-		      ;; Skip blank lines and inline tasks.
-		      ((looking-at "^[ \t]*$"))
-		      ((looking-at org-outline-regexp-bol))
-		      ;; We can't find less than 0 indentation.
-		      ((zerop i) (throw 'exit (setq min-i 0)))
-		      ((< i min-i) (setq min-i i))))
-		   (forward-line))))
-	     ;; Then indent each line so that a line indented to
-	     ;; MIN-I becomes indented to IND.  Ignore blank lines
-	     ;; and inline tasks in the process.
-	     (let ((delta (- ind min-i)))
-	       (while (< (point) end)
-		 (unless (or (looking-at "^[ \t]*$")
-			     (looking-at org-outline-regexp-bol))
-		   (indent-line-to (+ (org-get-indentation) delta)))
-		 (forward-line))))))
-	(skip-blanks
-	 (lambda (pos)
-	   ;; Return beginning of first non-blank line, starting from
-	   ;; line at POS.
-	   (save-excursion
-	     (goto-char pos)
-	     (skip-chars-forward " \r\t\n")
-	     (point-at-bol))))
-	beg end)
-    ;; Determine boundaries of changes.
-    (if (org-region-active-p)
-	(setq beg (funcall skip-blanks (region-beginning))
-	      end (copy-marker (region-end)))
-      (setq beg (funcall skip-blanks (point-at-bol))
-	    end (copy-marker (point-at-eol))))
-    ;; Depending on the starting line, choose an action on the text
-    ;; between BEG and END.
-    (org-with-limited-levels
-     (save-excursion
-       (goto-char beg)
-       (cond
-	;; Case 1. Start at an item: de-itemize.  Note that it only
-	;;         happens when a region is active: `org-ctrl-c-minus'
-	;;         would call `org-cycle-list-bullet' otherwise.
-	((org-at-item-p)
-	 (while (< (point) end)
-	   (when (org-at-item-p)
-	     (skip-chars-forward " \t")
-	     (delete-region (point) (match-end 0)))
-	   (forward-line)))
-	;; Case 2. Start at an heading: convert to items.
-	((org-at-heading-p)
-	 (let* ((bul (org-list-bullet-string "-"))
-		(bul-len (length bul))
-		;; Indentation of the first heading.  It should be
-		;; relative to the indentation of its parent, if any.
-		(start-ind (save-excursion
-			     (cond
-			      ((not org-adapt-indentation) 0)
-			      ((not (outline-previous-heading)) 0)
-			      (t (length (match-string 0))))))
-		;; Level of first heading.  Further headings will be
-		;; compared to it to determine hierarchy in the list.
-		(ref-level (org-reduced-level (org-outline-level))))
-	   (while (< (point) end)
-	     (let* ((level (org-reduced-level (org-outline-level)))
-		    (delta (max 0 (- level ref-level)))
-		    (todo-state (org-get-todo-state)))
-	       ;; If current headline is less indented than the first
-	       ;; one, set it as reference, in order to preserve
-	       ;; subtrees.
-	       (when (< level ref-level) (setq ref-level level))
-	       ;; Remove stars and TODO keyword.
-	       (let ((case-fold-search nil)) (looking-at org-todo-line-regexp))
-	       (delete-region (point) (or (match-beginning 3)
-					  (line-end-position)))
-	       (insert bul)
-	       (indent-line-to (+ start-ind (* delta bul-len)))
-	       ;; Turn TODO keyword into a check box.
-	       (when todo-state
-		 (let* ((struct (org-list-struct))
-			(old (copy-tree struct)))
-		   (org-list-set-checkbox
-		    (line-beginning-position)
-		    struct
-		    (if (member todo-state org-done-keywords)
-			"[X]"
-		      "[ ]"))
-		   (org-list-write-struct struct
-					  (org-list-parents-alist struct)
-					  old)))
-	       ;; Ensure all text down to END (or SECTION-END) belongs
-	       ;; to the newly created item.
-	       (let ((section-end (save-excursion
-				    (or (outline-next-heading) (point)))))
-		 (forward-line)
-		 (funcall shift-text
-			  (+ start-ind (* (1+ delta) bul-len))
-			  (min end section-end)))))))
-	;; Case 3. Normal line with ARG: make the first line of region
-	;;         an item, and shift indentation of others lines to
-	;;         set them as item's body.
-	(arg (let* ((bul (org-list-bullet-string "-"))
-		    (bul-len (length bul))
-		    (ref-ind (org-get-indentation)))
-	       (skip-chars-forward " \t")
-	       (insert bul)
-	       (forward-line)
-	       (while (< (point) end)
-		 ;; Ensure that lines less indented than first one
-		 ;; still get included in item body.
-		 (funcall shift-text
-			  (+ ref-ind bul-len)
-			  (min end (save-excursion (or (outline-next-heading)
-						       (point)))))
-		 (forward-line))))
-	;; Case 4. Normal line without ARG: turn each non-item line
-	;;         into an item.
-	(t
-	 (while (< (point) end)
-	   (unless (or (org-at-heading-p) (org-at-item-p))
-	     (when (looking-at "\\([ \t]*\\)\\(\\S-\\)")
-	       (replace-match
-		(concat "\\1" (org-list-bullet-string "-") "\\2"))))
-	   (forward-line))))))))
-
-
-;;; Send and receive lists
-
-(defun org-list-to-lisp (&optional delete)
-  "Parse the list at point and maybe DELETE it.
-
-Return a list whose car is a symbol of list type, among
-`ordered', `unordered' and `descriptive'.  Then, each item is
-a list of strings and other sub-lists.
-
-For example, the following list:
-
-  1. first item
-     + sub-item one
-     + [X] sub-item two
-     more text in first item
-  2. [@3] last item
-
-is parsed as
-
- (ordered
-  (\"first item\"
-   (unordered
-    (\"sub-item one\")
-    (\"[X] sub-item two\"))
-   \"more text in first item\")
-  (\"[@3] last item\"))
-
-Point is left at list's end."
-  (letrec ((struct (org-list-struct))
-	   (prevs (org-list-prevs-alist struct))
-	   (parents (org-list-parents-alist struct))
-	   (top (org-list-get-top-point struct))
-	   (bottom (org-list-get-bottom-point struct))
-	   (trim
-	    (lambda (text)
-	      ;; Remove indentation and final newline from TEXT.
-	      (org-remove-indentation
-	       (if (string-match-p "\n\\'" text)
-		   (substring text 0 -1)
-		 text))))
-	   (parse-sublist
-	    (lambda (e)
-	      ;; Return a list whose car is list type and cdr a list
-	      ;; of items' body.
-	      (cons (org-list-get-list-type (car e) struct prevs)
-		    (mapcar parse-item e))))
-	   (parse-item
-	    (lambda (e)
-	      ;; Return a list containing counter of item, if any,
-	      ;; text and any sublist inside it.
-	      (let* ((end (org-list-get-item-end e struct))
-		     (children (org-list-get-children e struct parents))
-		     (body
-		      (save-excursion
-			(goto-char e)
-			(looking-at "[ \t]*\\S-+[ \t]*")
-			(list
-			 (funcall
-			  trim
-			  (concat
-			   (make-string (string-width (match-string 0)) ?\s)
-			   (buffer-substring-no-properties
-			    (match-end 0) (or (car children) end))))))))
-		(while children
-		  (let* ((child (car children))
-			 (sub (org-list-get-all-items child struct prevs))
-			 (last-in-sub (car (last sub))))
-		    (push (funcall parse-sublist sub) body)
-		    ;; Remove whole sub-list from children.
-		    (setq children (cdr (memq last-in-sub children)))
-		    ;; There is a chunk of text belonging to the item
-		    ;; if last child doesn't end where next child
-		    ;; starts or where item ends.
-		    (let ((sub-end (org-list-get-item-end last-in-sub struct))
-			  (next (or (car children) end)))
-		      (when (/= sub-end next)
-			(push (funcall
-			       trim
-			       (buffer-substring-no-properties sub-end next))
-			      body)))))
-		(nreverse body)))))
-    ;; Store output, take care of cursor position and deletion of
-    ;; list, then return output.
-    (prog1 (funcall parse-sublist (org-list-get-all-items top struct prevs))
-      (goto-char top)
-      (when delete
-	(delete-region top bottom)
-	(when (and (not (looking-at "[ \t]*$")) (looking-at org-list-end-re))
-	  (replace-match ""))))))
-
-(defun org-list-make-subtree ()
-  "Convert the plain list at point into a subtree."
-  (interactive)
-  (if (not (ignore-errors (goto-char (org-in-item-p))))
-      (error "Not in a list")
-    (let ((list (save-excursion (org-list-to-lisp t))))
-      (insert (org-list-to-subtree list)))))
-
-(defun org-list-insert-radio-list ()
-  "Insert a radio list template appropriate for this major mode."
-  (interactive)
-  (let* ((e (cl-assoc-if #'derived-mode-p org-list-radio-list-templates))
-	 (txt (nth 1 e))
-	 name pos)
-    (unless e (error "No radio list setup defined for %s" major-mode))
-    (setq name (read-string "List name: "))
-    (while (string-match "%n" txt)
-      (setq txt (replace-match name t t txt)))
-    (or (bolp) (insert "\n"))
-    (setq pos (point))
-    (insert txt)
-    (goto-char pos)))
-
-(defun org-list-send-list (&optional maybe)
-  "Send a transformed version of this list to the receiver position.
-With argument MAYBE, fail quietly if no transformation is defined
-for this list."
-  (interactive)
-  (catch 'exit
-    (unless (org-at-item-p) (error "Not at a list item"))
-    (save-excursion
-      (let ((case-fold-search t))
-	(re-search-backward "^[ \t]*#\\+ORGLST:" nil t)
-	(unless (looking-at
-		 "[ \t]*#\\+ORGLST:[ \t]+SEND[ \t]+\\(\\S-+\\)[ \t]+\\([^ \t\n]+\\)")
-	  (if maybe (throw 'exit nil)
-	    (error "Don't know how to transform this list")))))
-    (let* ((name (regexp-quote (match-string 1)))
-	   (transform (intern (match-string 2)))
-	   (bottom-point
-	    (save-excursion
-	      (re-search-forward
-	       "\\(\\\\end{comment}\\|@end ignore\\|-->\\)" nil t)
-	      (match-beginning 0)))
-	   (top-point
-	    (progn
-	      (re-search-backward "#\\+ORGLST" nil t)
-	      (re-search-forward (org-item-beginning-re) bottom-point t)
-	      (match-beginning 0)))
-	   (plain-list (save-excursion
-			 (goto-char top-point)
-			 (org-list-to-lisp))))
-      (unless (fboundp transform)
-	(error "No such transformation function %s" transform))
-      (let ((txt (funcall transform plain-list)))
-	;; Find the insertion(s) place(s).
-	(save-excursion
-	  (goto-char (point-min))
-	  (let ((receiver-count 0)
-		(begin-re (format "BEGIN +RECEIVE +ORGLST +%s\\([ \t]\\|$\\)"
-				  name))
-		(end-re (format "END +RECEIVE +ORGLST +%s\\([ \t]\\|$\\)"
-				name)))
-	    (while (re-search-forward begin-re nil t)
-	      (cl-incf receiver-count)
-	      (let ((beg (line-beginning-position 2)))
-		(unless (re-search-forward end-re nil t)
-		  (user-error "Cannot find end of receiver location at %d" beg))
-		(beginning-of-line)
-		(delete-region beg (point))
-		(insert txt "\n")))
-	    (cond
-	     ((> receiver-count 1)
-	      (message "List converted and installed at receiver locations"))
-	     ((= receiver-count 1)
-	      (message "List converted and installed at receiver location"))
-	     (t (user-error "No valid receiver location found")))))))))
-
-(defun org-list-to-generic (list params)
-  "Convert a LIST parsed through `org-list-to-lisp' to a custom format.
-
-LIST is a list as returned by `org-list-to-lisp', which see.
-PARAMS is a property list of parameters used to tweak the output
-format.
-
-Valid parameters are:
-
-:backend, :raw
-
-  Export back-end used as a basis to transcode elements of the
-  list, when no specific parameter applies to it.  It is also
-  used to translate its contents.  You can prevent this by
-  setting :raw property to a non-nil value.
-
-:splice
-
-  When non-nil, only export the contents of the top most plain
-  list, effectively ignoring its opening and closing lines.
-
-:ustart, :uend
-
-  Strings to start and end an unordered list.  They can also be
-  set to a function returning a string or nil, which will be
-  called with the depth of the list, counting from 1.
-
-:ostart, :oend
-
-  Strings to start and end an ordered list.  They can also be set
-  to a function returning a string or nil, which will be called
-  with the depth of the list, counting from 1.
-
-:dstart, :dend
-
-  Strings to start and end a descriptive list.  They can also be
-  set to a function returning a string or nil, which will be
-  called with the depth of the list, counting from 1.
-
-:dtstart, :dtend, :ddstart, :ddend
-
-  Strings to start and end a descriptive term.
-
-:istart, :iend
-
-  Strings to start or end a list item, and to start a list item
-  with a counter.  They can also be set to a function returning
-  a string or nil, which will be called with two arguments: the
-  type of list and the depth of the item, counting from 1.
-
-:icount
-
-  Strings to start a list item with a counter.  It can also be
-  set to a function returning a string or nil, which will be
-  called with three arguments: the type of list, the depth of the
-  item, counting from 1, and the counter.  Its value, when
-  non-nil, has precedence over `:istart'.
-
-:isep
-
-  String used to separate items.  It can also be set to
-  a function returning a string or nil, which will be called with
-  two arguments: the type of list and the depth of the item,
-  counting from 1.  It always start on a new line.
-
-:ifmt
-
-  Function to be applied to the contents of every item.  It is
-  called with two arguments: the type of list and the contents.
-
-:cbon, :cboff, :cbtrans
-
-  String to insert, respectively, an un-checked check-box,
-  a checked check-box and a check-box in transitional state."
-  (require 'ox)
-  (let* ((backend (plist-get params :backend))
-	 (custom-backend
-	  (org-export-create-backend
-	   :parent (or backend 'org)
-	   :transcoders
-	   `((plain-list . ,(org-list--to-generic-plain-list params))
-	     (item . ,(org-list--to-generic-item params))
-	     (macro . (lambda (m c i) (org-element-macro-interpreter m nil))))))
-	 data info)
-    ;; Write LIST back into Org syntax and parse it.
-    (with-temp-buffer
-      (let ((org-inhibit-startup t)) (org-mode))
-      (letrec ((insert-list
-		(lambda (l)
-		  (dolist (i (cdr l))
-		    (funcall insert-item i (car l)))))
-	       (insert-item
-		(lambda (i type)
-		  (let ((start (point)))
-		    (insert (if (eq type 'ordered) "1. " "- "))
-		    (dolist (e i)
-		      (if (consp e) (funcall insert-list e)
-			(insert e)
-			(insert "\n")))
-		    (beginning-of-line)
-		    (save-excursion
-		      (let ((ind (if (eq type 'ordered) 3 2)))
-			(while (> (point) start)
-			  (unless (looking-at-p "[ \t]*$")
-			    (indent-to ind))
-			  (forward-line -1))))))))
-	(funcall insert-list list))
-      (setf data
-	    (org-element-map (org-element-parse-buffer) 'plain-list
-	      #'identity nil t))
-      (setf info (org-export-get-environment backend nil params)))
-    (when (and backend (symbolp backend) (not (org-export-get-backend backend)))
-      (user-error "Unknown :backend value"))
-    (unless backend (require 'ox-org))
-    ;; When`:raw' property has a non-nil value, turn all objects back
-    ;; into Org syntax.
-    (when (and backend (plist-get params :raw))
-      (org-element-map data org-element-all-objects
-	(lambda (object)
-	  (org-element-set-element
-	   object (org-element-interpret-data object)))))
-    ;; We use a low-level mechanism to export DATA so as to skip all
-    ;; usual pre-processing and post-processing, i.e., hooks, filters,
-    ;; Babel code evaluation, include keywords and macro expansion,
-    ;; and filters.
-    (let ((output (org-export-data-with-backend data custom-backend info)))
-      ;; Remove final newline.
-      (if (org-string-nw-p output) (substring-no-properties output 0 -1) ""))))
-
-(defun org-list--depth (element)
-  "Return the level of ELEMENT within current plain list.
-ELEMENT is either an item or a plain list."
-  (cl-count-if (lambda (ancestor) (eq (org-element-type ancestor) 'plain-list))
-	       (org-element-lineage element nil t)))
-
-(defun org-list--trailing-newlines (string)
-  "Return the number of trailing newlines in STRING."
-  (with-temp-buffer
-    (insert string)
-    (skip-chars-backward " \t\n")
-    (count-lines (line-beginning-position 2) (point-max))))
-
-(defun org-list--generic-eval (value &rest args)
-  "Evaluate VALUE according to its type.
-VALUE is either nil, a string or a function.  In the latter case,
-it is called with arguments ARGS."
-  (cond ((null value) nil)
-	((stringp value) value)
-	((functionp value) (apply value args))
-	(t (error "Wrong value: %s" value))))
-
-(defun org-list--to-generic-plain-list (params)
-  "Return a transcoder for `plain-list' elements.
-PARAMS is a plist used to tweak the behavior of the transcoder."
-  (let ((ustart (plist-get params :ustart))
-	(uend (plist-get params :uend))
-	(ostart (plist-get params :ostart))
-	(oend (plist-get params :oend))
-	(dstart (plist-get params :dstart))
-	(dend (plist-get params :dend))
-	(splice (plist-get params :splice))
-	(backend (plist-get params :backend)))
-    (lambda (plain-list contents info)
-      (let* ((type (org-element-property :type plain-list))
-	     (depth (org-list--depth plain-list))
-	     (start (and (not splice)
-			 (org-list--generic-eval
-			  (pcase type
-			    (`ordered ostart)
-			    (`unordered ustart)
-			    (_ dstart))
-			  depth)))
-	     (end (and (not splice)
-		       (org-list--generic-eval
-			(pcase type
-			  (`ordered oend)
-			  (`unordered uend)
-			  (_ dend))
-			depth))))
-	;; Make sure trailing newlines in END appear in the output by
-	;; setting `:post-blank' property to their number.
-	(when end
-	  (org-element-put-property
-	   plain-list :post-blank (org-list--trailing-newlines end)))
-	;; Build output.
-	(concat (and start (concat start "\n"))
-		(if (or start end splice (not backend))
-		    contents
-		  (org-export-with-backend backend plain-list contents info))
-		end)))))
-
-(defun org-list--to-generic-item (params)
-  "Return a transcoder for `item' elements.
-PARAMS is a plist used to tweak the behavior of the transcoder."
-  (let ((backend (plist-get params :backend))
-	(istart (plist-get params :istart))
-	(iend (plist-get params :iend))
-	(isep (plist-get params :isep))
-	(icount (plist-get params :icount))
-	(ifmt (plist-get params :ifmt))
-	(cboff (plist-get params :cboff))
-	(cbon  (plist-get params :cbon))
-	(cbtrans (plist-get params :cbtrans))
-	(dtstart (plist-get params :dtstart))
-	(dtend (plist-get params :dtend))
-	(ddstart (plist-get params :ddstart))
-	(ddend (plist-get params :ddend)))
-    (lambda (item contents info)
-      (let* ((type
-	      (org-element-property :type (org-element-property :parent item)))
-	     (tag (org-element-property :tag item))
-	     (depth (org-list--depth item))
-	     (separator (and (org-export-get-next-element item info)
-			     (org-list--generic-eval isep type depth)))
-	     (closing (pcase (org-list--generic-eval iend type depth)
-			((or `nil "") "\n")
-			((and (guard separator) s)
-			 (if (equal (substring s -1) "\n") s (concat s "\n")))
-			(s s))))
-	;; When a closing line or a separator is provided, make sure
-	;; its trailing newlines are taken into account when building
-	;; output.  This is done by setting `:post-blank' property to
-	;; the number of such lines in the last line to be added.
-	(let ((last-string (or separator closing)))
-	  (when last-string
-	    (org-element-put-property
-	     item
-	     :post-blank
-	     (max (1- (org-list--trailing-newlines last-string)) 0))))
-	;; Build output.
-	(concat
-	 (let ((c (org-element-property :counter item)))
-	   (if (and c icount) (org-list--generic-eval icount type depth c)
-	     (org-list--generic-eval istart type depth)))
-	 (let ((body
-		(if (or istart iend icount ifmt cbon cboff cbtrans (not backend)
-			(and (eq type 'descriptive)
-			     (or dtstart dtend ddstart ddend)))
-		    (concat
-		     (pcase (org-element-property :checkbox item)
-		       (`on cbon)
-		       (`off cboff)
-		       (`trans cbtrans))
-		     (and tag
-			  (concat dtstart
-				  (if backend
-				      (org-export-data-with-backend
-				       tag backend info)
-				    (org-element-interpret-data tag))
-				  dtend))
-		     (and tag ddstart)
-		     (let ((contents
-			    (if (= (length contents) 0) ""
-			      (substring contents 0 -1))))
-		       (if ifmt (org-list--generic-eval ifmt type contents)
-			 contents))
-		     (and tag ddend))
-		  (org-export-with-backend backend item contents info))))
-	   ;; Remove final newline.
-	   (if (equal body "") ""
-	     (substring (org-element-normalize-string body) 0 -1)))
-	 closing
-	 separator)))))
-
-(defun org-list-to-latex (list &optional params)
-  "Convert LIST into a LaTeX list.
-LIST is a parsed plain list, as returned by `org-list-to-lisp'.
-PARAMS is a property list with overruling parameters for
-`org-list-to-generic'.  Return converted list as a string."
-  (require 'ox-latex)
-  (org-list-to-generic list (org-combine-plists '(:backend latex) params)))
-
-(defun org-list-to-html (list &optional params)
-  "Convert LIST into a HTML list.
-LIST is a parsed plain list, as returned by `org-list-to-lisp'.
-PARAMS is a property list with overruling parameters for
-`org-list-to-generic'.  Return converted list as a string."
-  (require 'ox-html)
-  (org-list-to-generic list (org-combine-plists '(:backend html) params)))
-
-(defun org-list-to-texinfo (list &optional params)
-  "Convert LIST into a Texinfo list.
-LIST is a parsed plain list, as returned by `org-list-to-lisp'.
-PARAMS is a property list with overruling parameters for
-`org-list-to-generic'.  Return converted list as a string."
-  (require 'ox-texinfo)
-  (org-list-to-generic list (org-combine-plists '(:backend texinfo) params)))
-
-(defun org-list-to-org (list &optional params)
-  "Convert LIST into an Org plain list.
-LIST is as returned by `org-list-parse-list'.  PARAMS is a property list
-with overruling parameters for `org-list-to-generic'."
-  (let* ((make-item
-	  (lambda (type _depth &optional c)
-	    (concat (if (eq type 'ordered) "1. " "- ")
-		    (and c (format "[@%d] " c)))))
-	 (defaults
-	   (list :istart make-item
-		 :icount make-item
-		 :ifmt (lambda (_type contents)
-			 (replace-regexp-in-string "\n" "\n  " contents))
-		 :dtend " :: "
-		 :cbon "[X] "
-		 :cboff "[ ] "
-		 :cbtrans "[-] ")))
-    (org-list-to-generic list (org-combine-plists defaults params))))
-
-(defun org-list-to-subtree (list &optional params)
-  "Convert LIST into an Org subtree.
-LIST is as returned by `org-list-to-lisp'.  PARAMS is a property
-list with overruling parameters for `org-list-to-generic'."
-  (let* ((blank (pcase (cdr (assq 'heading org-blank-before-new-entry))
-		  (`t t)
-		  (`auto (save-excursion
-			   (org-with-limited-levels (outline-previous-heading))
-			   (org-previous-line-empty-p)))))
-	 (level (org-reduced-level (or (org-current-level) 0)))
-	 (make-stars
-	  (lambda (_type depth &optional _count)
-	    ;; Return the string for the heading, depending on DEPTH
-	    ;; of current sub-list.
-	    (let ((oddeven-level (+ level depth)))
-	      (concat (make-string (if org-odd-levels-only
-				       (1- (* 2 oddeven-level))
-				     oddeven-level)
-				   ?*)
-		      " ")))))
-    (org-list-to-generic
-     list
-     (org-combine-plists
-      (list :splice t
-	    :istart make-stars
-	    :icount make-stars
-	    :dtstart " " :dtend " "
-	    :isep (if blank "\n\n" "\n")
-	    :cbon "DONE " :cboff "TODO " :cbtrans "TODO ")
-      params))))
-
-(provide 'org-list)
-
-;;; org-list.el ends here
diff --git a/elpa/org-9.1.14/org-list.elc b/elpa/org-9.1.14/org-list.elc
deleted file mode 100644
index 71af988..0000000
--- a/elpa/org-9.1.14/org-list.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-loaddefs.el b/elpa/org-9.1.14/org-loaddefs.el
deleted file mode 100644
index ec6e5de..0000000
--- a/elpa/org-9.1.14/org-loaddefs.el
+++ /dev/null
@@ -1,3565 +0,0 @@
-;;; org-loaddefs.el --- autogenerated file, do not edit
-;;
-;;; Code:
-
-;;;### (autoloads nil "ob-core" "ob-core.el" "2360a439d4b3b494bbdc436ee6d6976d")
-;;; Generated autoloads from ob-core.el
-
-(autoload 'org-babel-execute-safely-maybe "ob-core" "\
-
-
-\(fn)" nil nil)
-
-(autoload 'org-babel-execute-maybe "ob-core" "\
-
-
-\(fn)" t nil)
-
-(autoload 'org-babel-view-src-block-info "ob-core" "\
-Display information on the current source block.
-This includes header arguments, language and name, and is largely
-a window into the `org-babel-get-src-block-info' function.
-
-\(fn)" t nil)
-
-(autoload 'org-babel-expand-src-block-maybe "ob-core" "\
-Conditionally expand a source block.
-Detect if this is context for an org-babel src-block and if so
-then run `org-babel-expand-src-block'.
-
-\(fn)" t nil)
-
-(autoload 'org-babel-load-in-session-maybe "ob-core" "\
-Conditionally load a source block in a session.
-Detect if this is context for an org-babel src-block and if so
-then run `org-babel-load-in-session'.
-
-\(fn)" t nil)
-
-(autoload 'org-babel-pop-to-session-maybe "ob-core" "\
-Conditionally pop to a session.
-Detect if this is context for an org-babel src-block and if so
-then run `org-babel-switch-to-session'.
-
-\(fn)" t nil)
-
-(autoload 'org-babel-execute-src-block "ob-core" "\
-Execute the current source code block.
-Insert the results of execution into the buffer.  Source code
-execution and the collection and formatting of results can be
-controlled through a variety of header arguments.
-
-With prefix argument ARG, force re-execution even if an existing
-result cached in the buffer would otherwise have been returned.
-
-Optionally supply a value for INFO in the form returned by
-`org-babel-get-src-block-info'.
-
-Optionally supply a value for PARAMS which will be merged with
-the header arguments specified at the front of the source code
-block.
-
-\(fn &optional ARG INFO PARAMS)" t nil)
-
-(autoload 'org-babel-expand-src-block "ob-core" "\
-Expand the current source code block.
-Expand according to the source code block's header
-arguments and pop open the results in a preview buffer.
-
-\(fn &optional ARG INFO PARAMS)" t nil)
-
-(autoload 'org-babel-check-src-block "ob-core" "\
-Check for misspelled header arguments in the current code block.
-
-\(fn)" t nil)
-
-(autoload 'org-babel-insert-header-arg "ob-core" "\
-Insert a header argument selecting from lists of common args and values.
-
-\(fn &optional HEADER-ARG VALUE)" t nil)
-
-(autoload 'org-babel-load-in-session "ob-core" "\
-Load the body of the current source-code block.
-Evaluate the header arguments for the source block before
-entering the session.  After loading the body this pops open the
-session.
-
-\(fn &optional ARG INFO)" t nil)
-
-(autoload 'org-babel-initiate-session "ob-core" "\
-Initiate session for current code block.
-If called with a prefix argument then resolve any variable
-references in the header arguments and assign these variables in
-the session.  Copy the body of the code block to the kill ring.
-
-\(fn &optional ARG INFO)" t nil)
-
-(autoload 'org-babel-switch-to-session "ob-core" "\
-Switch to the session of the current code block.
-Uses `org-babel-initiate-session' to start the session.  If called
-with a prefix argument then this is passed on to
-`org-babel-initiate-session'.
-
-\(fn &optional ARG INFO)" t nil)
-
-(autoload 'org-babel-switch-to-session-with-code "ob-core" "\
-Switch to code buffer and display session.
-
-\(fn &optional ARG INFO)" t nil)
-
-(autoload 'org-babel-do-in-edit-buffer "ob-core" "\
-Evaluate BODY in edit buffer if there is a code block at point.
-Return t if a code block was found at point, nil otherwise.
-
-\(fn &rest BODY)" nil t)
-
-(autoload 'org-babel-open-src-block-result "ob-core" "\
-If `point' is on a src block then open the results of the
-source code block, otherwise return nil.  With optional prefix
-argument RE-RUN the source-code block is evaluated even if
-results already exist.
-
-\(fn &optional RE-RUN)" t nil)
-
-(autoload 'org-babel-map-src-blocks "ob-core" "\
-Evaluate BODY forms on each source-block in FILE.
-If FILE is nil evaluate BODY forms on source blocks in current
-buffer.  During evaluation of BODY the following local variables
-are set relative to the currently matched code block.
-
-full-block ------- string holding the entirety of the code block
-beg-block -------- point at the beginning of the code block
-end-block -------- point at the end of the matched code block
-lang ------------- string holding the language of the code block
-beg-lang --------- point at the beginning of the lang
-end-lang --------- point at the end of the lang
-switches --------- string holding the switches
-beg-switches ----- point at the beginning of the switches
-end-switches ----- point at the end of the switches
-header-args ------ string holding the header-args
-beg-header-args -- point at the beginning of the header-args
-end-header-args -- point at the end of the header-args
-body ------------- string holding the body of the code block
-beg-body --------- point at the beginning of the body
-end-body --------- point at the end of the body
-
-\(fn FILE &rest BODY)" nil t)
-
-(function-put 'org-babel-map-src-blocks 'lisp-indent-function '1)
-
-(autoload 'org-babel-map-inline-src-blocks "ob-core" "\
-Evaluate BODY forms on each inline source block in FILE.
-If FILE is nil evaluate BODY forms on source blocks in current
-buffer.
-
-\(fn FILE &rest BODY)" nil t)
-
-(function-put 'org-babel-map-inline-src-blocks 'lisp-indent-function '1)
-
-(autoload 'org-babel-map-call-lines "ob-core" "\
-Evaluate BODY forms on each call line in FILE.
-If FILE is nil evaluate BODY forms on source blocks in current
-buffer.
-
-\(fn FILE &rest BODY)" nil t)
-
-(function-put 'org-babel-map-call-lines 'lisp-indent-function '1)
-
-(autoload 'org-babel-map-executables "ob-core" "\
-Evaluate BODY forms on each active Babel code in FILE.
-If FILE is nil evaluate BODY forms on source blocks in current
-buffer.
-
-\(fn FILE &rest BODY)" nil t)
-
-(function-put 'org-babel-map-executables 'lisp-indent-function '1)
-
-(autoload 'org-babel-execute-buffer "ob-core" "\
-Execute source code blocks in a buffer.
-Call `org-babel-execute-src-block' on every source block in
-the current buffer.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-babel-execute-subtree "ob-core" "\
-Execute source code blocks in a subtree.
-Call `org-babel-execute-src-block' on every source block in
-the current subtree.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-babel-sha1-hash "ob-core" "\
-Generate an sha1 hash based on the value of info.
-
-\(fn &optional INFO)" t nil)
-
-(autoload 'org-babel-hide-result-toggle-maybe "ob-core" "\
-Toggle visibility of result at point.
-
-\(fn)" t nil)
-
-(autoload 'org-babel-goto-src-block-head "ob-core" "\
-Go to the beginning of the current code block.
-
-\(fn)" t nil)
-
-(autoload 'org-babel-goto-named-src-block "ob-core" "\
-Go to a named source-code block.
-
-\(fn NAME)" t nil)
-
-(autoload 'org-babel-goto-named-result "ob-core" "\
-Go to a named result.
-
-\(fn NAME)" t nil)
-
-(autoload 'org-babel-next-src-block "ob-core" "\
-Jump to the next source block.
-With optional prefix argument ARG, jump forward ARG many source blocks.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-babel-previous-src-block "ob-core" "\
-Jump to the previous source block.
-With optional prefix argument ARG, jump backward ARG many source blocks.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-babel-mark-block "ob-core" "\
-Mark current src block.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "ob-keys" "ob-keys.el" "22ff8882b2f215251464dafb29893479")
-;;; Generated autoloads from ob-keys.el
-
-(autoload 'org-babel-describe-bindings "ob-keys" "\
-Describe all keybindings behind `org-babel-key-prefix'.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "ob-lob" "ob-lob.el" "c7b7a7fd9c121e0d73709dd5a4821194")
-;;; Generated autoloads from ob-lob.el
-
-(autoload 'org-babel-lob-execute-maybe "ob-lob" "\
-Execute a Library of Babel source block, if appropriate.
-Detect if this is context for a Library Of Babel source block and
-if so then run the appropriate source block from the Library.
-
-\(fn)" t nil)
-
-(autoload 'org-babel-lob-get-info "ob-lob" "\
-Return internal representation for Library of Babel function call.
-
-Consider DATUM, when provided, or element at point otherwise.
-
-Return nil when not on an appropriate location.  Otherwise return
-a list compatible with `org-babel-get-src-block-info', which
-see.
-
-\(fn &optional DATUM)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "ob-tangle" "ob-tangle.el" "6f42a8d7a0ef762480d9e747e6ab033a")
-;;; Generated autoloads from ob-tangle.el
-
-(autoload 'org-babel-tangle-file "ob-tangle" "\
-Extract the bodies of source code blocks in FILE.
-Source code blocks are extracted with `org-babel-tangle'.
-Optional argument TARGET-FILE can be used to specify a default
-export file for all source blocks.  Optional argument LANG can be
-used to limit the exported source code blocks by language.
-Return a list whose CAR is the tangled file name.
-
-\(fn FILE &optional TARGET-FILE LANG)" t nil)
-
-(autoload 'org-babel-tangle "ob-tangle" "\
-Write code blocks to source-specific files.
-Extract the bodies of all source code blocks from the current
-file into their own source-specific files.
-With one universal prefix argument, only tangle the block at point.
-When two universal prefix arguments, only tangle blocks for the
-tangle file of the block at point.
-Optional argument TARGET-FILE can be used to specify a default
-export file for all source blocks.  Optional argument LANG can be
-used to limit the exported source code blocks by language.
-
-\(fn &optional ARG TARGET-FILE LANG)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-agenda" "org-agenda.el" (23266 31379 196273
-;;;;;;  327000))
-;;; Generated autoloads from org-agenda.el
-
-(autoload 'org-toggle-sticky-agenda "org-agenda" "\
-Toggle `org-agenda-sticky'.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-agenda "org-agenda" "\
-Dispatch agenda commands to collect entries to the agenda buffer.
-Prompts for a command to execute.  Any prefix arg will be passed
-on to the selected command.  The default selections are:
-
-a     Call `org-agenda-list' to display the agenda for current day or week.
-t     Call `org-todo-list' to display the global todo list.
-T     Call `org-todo-list' to display the global todo list, select only
-      entries with a specific TODO keyword (the user gets a prompt).
-m     Call `org-tags-view' to display headlines with tags matching
-      a condition  (the user is prompted for the condition).
-M     Like `m', but select only TODO entries, no ordinary headlines.
-e     Export views to associated files.
-s     Search entries for keywords.
-S     Search entries for keywords, only with TODO keywords.
-/     Multi occur across all agenda files and also files listed
-      in `org-agenda-text-search-extra-files'.
-<     Restrict agenda commands to buffer, subtree, or region.
-      Press several times to get the desired effect.
->     Remove a previous restriction.
-#     List \"stuck\" projects.
-!     Configure what \"stuck\" means.
-C     Configure custom agenda commands.
-
-More commands can be added by configuring the variable
-`org-agenda-custom-commands'.  In particular, specific tags and TODO keyword
-searches can be pre-defined in this way.
-
-If the current buffer is in Org mode and visiting a file, you can also
-first press `<' once to indicate that the agenda should be temporarily
-\(until the next use of `\\[org-agenda]') restricted to the current file.
-Pressing `<' twice means to restrict to the current subtree or region
-\(if active).
-
-\(fn &optional ARG ORG-KEYS RESTRICTION)" t nil)
-
-(autoload 'org-batch-agenda "org-agenda" "\
-Run an agenda command in batch mode and send the result to STDOUT.
-If CMD-KEY is a string of length 1, it is used as a key in
-`org-agenda-custom-commands' and triggers this command.  If it is a
-longer string it is used as a tags/todo match string.
-Parameters are alternating variable names and values that will be bound
-before running the agenda command.
-
-\(fn CMD-KEY &rest PARAMETERS)" nil t)
-
-(autoload 'org-batch-agenda-csv "org-agenda" "\
-Run an agenda command in batch mode and send the result to STDOUT.
-If CMD-KEY is a string of length 1, it is used as a key in
-`org-agenda-custom-commands' and triggers this command.  If it is a
-longer string it is used as a tags/todo match string.
-Parameters are alternating variable names and values that will be bound
-before running the agenda command.
-
-The output gives a line for each selected agenda item.  Each
-item is a list of comma-separated values, like this:
-
-category,head,type,todo,tags,date,time,extra,priority-l,priority-n
-
-category     The category of the item
-head         The headline, without TODO kwd, TAGS and PRIORITY
-type         The type of the agenda entry, can be
-                todo               selected in TODO match
-                tagsmatch          selected in tags match
-                diary              imported from diary
-                deadline           a deadline on given date
-                scheduled          scheduled on given date
-                timestamp          entry has timestamp on given date
-                closed             entry was closed on given date
-                upcoming-deadline  warning about deadline
-                past-scheduled     forwarded scheduled item
-                block              entry has date block including g. date
-todo         The todo keyword, if any
-tags         All tags including inherited ones, separated by colons
-date         The relevant date, like 2007-2-14
-time         The time, like 15:00-16:50
-extra        Sting with extra planning info
-priority-l   The priority letter if any was given
-priority-n   The computed numerical priority
-agenda-day   The day in the agenda where this is listed
-
-\(fn CMD-KEY &rest PARAMETERS)" nil t)
-
-(autoload 'org-store-agenda-views "org-agenda" "\
-Store agenda views.
-
-\(fn &rest PARAMETERS)" t nil)
-
-(autoload 'org-batch-store-agenda-views "org-agenda" "\
-Run all custom agenda commands that have a file argument.
-
-\(fn &rest PARAMETERS)" nil t)
-
-(autoload 'org-agenda-list "org-agenda" "\
-Produce a daily/weekly view from all files in variable `org-agenda-files'.
-The view will be for the current day or week, but from the overview buffer
-you will be able to go to other days/weeks.
-
-With a numeric prefix argument in an interactive call, the agenda will
-span ARG days.  Lisp programs should instead specify SPAN to change
-the number of days.  SPAN defaults to `org-agenda-span'.
-
-START-DAY defaults to TODAY, or to the most recent match for the weekday
-given in `org-agenda-start-on-weekday'.
-
-When WITH-HOUR is non-nil, only include scheduled and deadline
-items if they have an hour specification like [h]h:mm.
-
-\(fn &optional ARG START-DAY SPAN WITH-HOUR)" t nil)
-
-(autoload 'org-search-view "org-agenda" "\
-Show all entries that contain a phrase or words or regular expressions.
-
-With optional prefix argument TODO-ONLY, only consider entries that are
-TODO entries.  The argument STRING can be used to pass a default search
-string into this function.  If EDIT-AT is non-nil, it means that the
-user should get a chance to edit this string, with cursor at position
-EDIT-AT.
-
-The search string can be viewed either as a phrase that should be found as
-is, or it can be broken into a number of snippets, each of which must match
-in a Boolean way to select an entry.  The default depends on the variable
-`org-agenda-search-view-always-boolean'.
-Even if this is turned off (the default) you can always switch to
-Boolean search dynamically by preceding the first word with  \"+\" or \"-\".
-
-The default is a direct search of the whole phrase, where each space in
-the search string can expand to an arbitrary amount of whitespace,
-including newlines.
-
-If using a Boolean search, the search string is split on whitespace and
-each snippet is searched separately, with logical AND to select an entry.
-Words prefixed with a minus must *not* occur in the entry.  Words without
-a prefix or prefixed with a plus must occur in the entry.  Matching is
-case-insensitive.  Words are enclosed by word delimiters (i.e. they must
-match whole words, not parts of a word) if
-`org-agenda-search-view-force-full-words' is set (default is nil).
-
-Boolean search snippets enclosed by curly braces are interpreted as
-regular expressions that must or (when preceded with \"-\") must not
-match in the entry.  Snippets enclosed into double quotes will be taken
-as a whole, to include whitespace.
-
-- If the search string starts with an asterisk, search only in headlines.
-- If (possibly after the leading star) the search string starts with an
-  exclamation mark, this also means to look at TODO entries only, an effect
-  that can also be achieved with a prefix argument.
-- If (possibly after star and exclamation mark) the search string starts
-  with a colon, this will mean that the (non-regexp) snippets of the
-  Boolean search must match as full words.
-
-This command searches the agenda files, and in addition the files
-listed in `org-agenda-text-search-extra-files' unless a restriction lock
-is active.
-
-\(fn &optional TODO-ONLY STRING EDIT-AT)" t nil)
-
-(autoload 'org-todo-list "org-agenda" "\
-Show all (not done) TODO entries from all agenda file in a single list.
-The prefix arg can be used to select a specific TODO keyword and limit
-the list to these.  When using `\\[universal-argument]', you will be prompted
-for a keyword.  A numeric prefix directly selects the Nth keyword in
-`org-todo-keywords-1'.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-tags-view "org-agenda" "\
-Show all headlines for all `org-agenda-files' matching a TAGS criterion.
-The prefix arg TODO-ONLY limits the search to TODO entries.
-
-\(fn &optional TODO-ONLY MATCH)" t nil)
-
-(autoload 'org-agenda-list-stuck-projects "org-agenda" "\
-Create agenda view for projects that are stuck.
-Stuck projects are project that have no next actions.  For the definitions
-of what a project is and how to check if it stuck, customize the variable
-`org-stuck-projects'.
-
-\(fn &rest IGNORE)" t nil)
-
-(autoload 'org-diary "org-agenda" "\
-Return diary information from org files.
-This function can be used in a \"sexp\" diary entry in the Emacs calendar.
-It accesses org files and extracts information from those files to be
-listed in the diary.  The function accepts arguments specifying what
-items should be listed.  For a list of arguments allowed here, see the
-variable `org-agenda-entry-types'.
-
-The call in the diary file should look like this:
-
-   &%%(org-diary) ~/path/to/some/orgfile.org
-
-Use a separate line for each org file to check.  Or, if you omit the file name,
-all files listed in `org-agenda-files' will be checked automatically:
-
-   &%%(org-diary)
-
-If you don't give any arguments (as in the example above), the default value
-of `org-agenda-entry-types' is used: (:deadline :scheduled :timestamp :sexp).
-So the example above may also be written as
-
-   &%%(org-diary :deadline :timestamp :sexp :scheduled)
-
-The function expects the lisp variables `entry' and `date' to be provided
-by the caller, because this is how the calendar works.  Don't use this
-function from a program - use `org-agenda-get-day-entries' instead.
-
-\(fn &rest ARGS)" nil nil)
-
-(autoload 'org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item "org-agenda" "\
-Do we have a reason to ignore this TODO entry because it has a time stamp?
-
-\(fn &optional END)" nil nil)
-
-(autoload 'org-agenda-set-restriction-lock "org-agenda" "\
-Set restriction lock for agenda, to current subtree or file.
-Restriction will be the file if TYPE is `file', or if type is the
-universal prefix \\='(4), or if the cursor is before the first headline
-in the file.  Otherwise, restriction will be to the current subtree.
-
-\(fn &optional TYPE)" t nil)
-
-(autoload 'org-calendar-goto-agenda "org-agenda" "\
-Compute the Org agenda for the calendar date displayed at the cursor.
-This is a command that has to be installed in `calendar-mode-map'.
-
-\(fn)" t nil)
-
-(autoload 'org-agenda-to-appt "org-agenda" "\
-Activate appointments found in `org-agenda-files'.
-
-With a `\\[universal-argument]' prefix, refresh the list of appointments.
-
-If FILTER is t, interactively prompt the user for a regular
-expression, and filter out entries that don't match it.
-
-If FILTER is a string, use this string as a regular expression
-for filtering entries out.
-
-If FILTER is a function, filter out entries against which
-calling the function returns nil.  This function takes one
-argument: an entry from `org-agenda-get-day-entries'.
-
-FILTER can also be an alist with the car of each cell being
-either `headline' or `category'.  For example:
-
-  \\='((headline \"IMPORTANT\")
-    (category \"Work\"))
-
-will only add headlines containing IMPORTANT or headlines
-belonging to the \"Work\" category.
-
-ARGS are symbols indicating what kind of entries to consider.
-By default `org-agenda-to-appt' will use :deadline*, :scheduled*
-\(i.e., deadlines and scheduled items with a hh:mm specification)
-and :timestamp entries.  See the docstring of `org-diary' for
-details and examples.
-
-If an entry has a APPT_WARNTIME property, its value will be used
-to override `appt-message-warning-time'.
-
-\(fn &optional REFRESH FILTER &rest ARGS)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-archive" "org-archive.el" "b46ec348f237e44615caaa99e48ff324")
-;;; Generated autoloads from org-archive.el
-
-(autoload 'org-add-archive-files "org-archive" "\
-Splice the archive files into the list of files.
-This implies visiting all these files and finding out what the
-archive file is.
-
-\(fn FILES)" nil nil)
-
-(autoload 'org-archive-subtree "org-archive" "\
-Move the current subtree to the archive.
-The archive can be a certain top-level heading in the current
-file, or in a different file.  The tree will be moved to that
-location, the subtree heading be marked DONE, and the current
-time will be added.
-
-When called with a single prefix argument FIND-DONE, find whole
-trees without any open TODO items and archive them (after getting
-confirmation from the user).  When called with a double prefix
-argument, find whole trees with timestamps before today and
-archive them (after getting confirmation from the user).  If the
-cursor is not at a headline when these commands are called, try
-all level 1 trees.  If the cursor is on a headline, only try the
-direct children of this heading.
-
-\(fn &optional FIND-DONE)" t nil)
-
-(autoload 'org-archive-to-archive-sibling "org-archive" "\
-Archive the current heading by moving it under the archive sibling.
-
-The archive sibling is a sibling of the heading with the heading name
-`org-archive-sibling-heading' and an `org-archive-tag' tag.  If this
-sibling does not exist, it will be created at the end of the subtree.
-
-Archiving time is retained in the ARCHIVE_TIME node property.
-
-\(fn)" t nil)
-
-(autoload 'org-toggle-archive-tag "org-archive" "\
-Toggle the archive tag for the current headline.
-With prefix ARG, check all children of current headline and offer tagging
-the children that do not contain any open TODO items.
-
-\(fn &optional FIND-DONE)" t nil)
-
-(autoload 'org-archive-subtree-default "org-archive" "\
-Archive the current subtree with the default command.
-This command is set with the variable `org-archive-default-command'.
-
-\(fn)" t nil)
-
-(autoload 'org-archive-subtree-default-with-confirmation "org-archive" "\
-Archive the current subtree with the default command.
-This command is set with the variable `org-archive-default-command'.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-attach" "org-attach.el" "649a2308d04a53d6af3d987342905a97")
-;;; Generated autoloads from org-attach.el
-
-(autoload 'org-attach "org-attach" "\
-The dispatcher for attachment commands.
-Shows a list of commands and prompts for another key to execute a command.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-bbdb" "org-bbdb.el" "fa404717dfcbde54e13812132d9d4850")
-;;; Generated autoloads from org-bbdb.el
-
-(autoload 'org-bbdb-anniversaries "org-bbdb" "\
-Extract anniversaries from BBDB for display in the agenda.
-
-\(fn)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "org-capture" "org-capture.el" (23260 10064
-;;;;;;  718296 919000))
-;;; Generated autoloads from org-capture.el
-
-(autoload 'org-capture-string "org-capture" "\
-Capture STRING with the template selected by KEYS.
-
-\(fn STRING &optional KEYS)" t nil)
-
-(autoload 'org-capture "org-capture" "\
-Capture something.
-\\<org-capture-mode-map>
-This will let you select a template from `org-capture-templates', and
-then file the newly captured information.  The text is immediately
-inserted at the target location, and an indirect buffer is shown where
-you can edit it.  Pressing `\\[org-capture-finalize]' brings you back to the previous
-state of Emacs, so that you can continue your work.
-
-When called interactively with a `\\[universal-argument]' prefix argument GOTO, don't
-capture anything, just go to the file/headline where the selected
-template stores its notes.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix argument, go to the last note stored.
-
-When called with a `C-0' (zero) prefix, insert a template at point.
-
-When called with a `C-1' (one) prefix, force prompting for a date when
-a datetree entry is made.
-
-ELisp programs can set KEYS to a string associated with a template
-in `org-capture-templates'.  In this case, interactive selection
-will be bypassed.
-
-If `org-capture-use-agenda-date' is non-nil, capturing from the
-agenda will use the date at point as the default date.  Then, a
-`C-1' prefix will tell the capture process to use the HH:MM time
-of the day at point (if any) or the current HH:MM time.
-
-\(fn &optional GOTO KEYS)" t nil)
-
-(autoload 'org-capture-import-remember-templates "org-capture" "\
-Set `org-capture-templates' to be similar to `org-remember-templates'.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-clock" "org-clock.el" "731d09f8ca5acf7266b16282a1e05671")
-;;; Generated autoloads from org-clock.el
-
-(autoload 'org-resolve-clocks "org-clock" "\
-Resolve all currently open Org clocks.
-If `only-dangling-p' is non-nil, only ask to resolve dangling
-\(i.e., not currently open and valid) clocks.
-
-\(fn &optional ONLY-DANGLING-P PROMPT-FN LAST-VALID)" t nil)
-
-(autoload 'org-clock-in "org-clock" "\
-Start the clock on the current item.
-
-If necessary, clock-out of the currently active clock.
-
-With a `\\[universal-argument]' prefix argument SELECT, offer a list of recently clocked
-tasks to clock into.
-
-When SELECT is `\\[universal-argument] \\[universal-argument]', clock into the current task and mark it as
-the default task, a special task that will always be offered in the
-clocking selection, associated with the letter `d'.
-
-When SELECT is `\\[universal-argument] \\[universal-argument] \\[universal-argument]', clock in by using the last clock-out
-time as the start time.  See `org-clock-continuously' to make this
-the default behavior.
-
-\(fn &optional SELECT START-TIME)" t nil)
-
-(autoload 'org-clock-in-last "org-clock" "\
-Clock in the last closed clocked item.
-When already clocking in, send a warning.
-With a universal prefix argument, select the task you want to
-clock in from the last clocked in tasks.
-With two universal prefix arguments, start clocking using the
-last clock-out time, if any.
-With three universal prefix arguments, interactively prompt
-for a todo state to switch to, overriding the existing value
-`org-clock-in-switch-to-state'.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-clock-out "org-clock" "\
-Stop the currently running clock.
-Throw an error if there is no running clock and FAIL-QUIETLY is nil.
-With a universal prefix, prompt for a state to switch the clocked out task
-to, overriding the existing value of `org-clock-out-switch-to-state'.
-
-\(fn &optional SWITCH-TO-STATE FAIL-QUIETLY AT-TIME)" t nil)
-
-(autoload 'org-clock-cancel "org-clock" "\
-Cancel the running clock by removing the start timestamp.
-
-\(fn)" t nil)
-
-(autoload 'org-clock-goto "org-clock" "\
-Go to the currently clocked-in entry, or to the most recently clocked one.
-With prefix arg SELECT, offer recently clocked tasks for selection.
-
-\(fn &optional SELECT)" t nil)
-
-(autoload 'org-clock-sum-today "org-clock" "\
-Sum the times for each subtree for today.
-
-\(fn &optional HEADLINE-FILTER)" nil nil)
-
-(autoload 'org-clock-sum "org-clock" "\
-Sum the times for each subtree.
-Puts the resulting times in minutes as a text property on each headline.
-TSTART and TEND can mark a time range to be considered.
-HEADLINE-FILTER is a zero-arg function that, if specified, is called for
-each headline in the time range with point at the headline.  Headlines for
-which HEADLINE-FILTER returns nil are excluded from the clock summation.
-PROPNAME lets you set a custom text property instead of :org-clock-minutes.
-
-\(fn &optional TSTART TEND HEADLINE-FILTER PROPNAME)" nil nil)
-
-(autoload 'org-clock-display "org-clock" "\
-Show subtree times in the entire buffer.
-
-By default, show the total time for the range defined in
-`org-clock-display-default-range'.  With `\\[universal-argument]' prefix, show
-the total time for today instead.
-
-With `\\[universal-argument] \\[universal-argument]' prefix, use a custom range, entered at prompt.
-
-With `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix, display the total time in the
-echo area.
-
-Use `\\[org-clock-remove-overlays]' to remove the subtree times.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-clock-remove-overlays "org-clock" "\
-Remove the occur highlights from the buffer.
-If NOREMOVE is nil, remove this function from the
-`before-change-functions' in the current buffer.
-
-\(fn &optional BEG END NOREMOVE)" t nil)
-
-(autoload 'org-clock-get-clocktable "org-clock" "\
-Get a formatted clocktable with parameters according to PROPS.
-The table is created in a temporary buffer, fully formatted and
-fontified, and then returned.
-
-\(fn &rest PROPS)" nil nil)
-
-(autoload 'org-clock-report "org-clock" "\
-Update or create a table containing a report about clocked time.
-
-If point is inside an existing clocktable block, update it.
-Otherwise, insert a new one.
-
-The new table inherits its properties from the variable
-`org-clock-clocktable-default-properties'.  The scope of the
-clocktable, when not specified in the previous variable, is
-`subtree' when the function is called from within a subtree, and
-`file' elsewhere.
-
-When called with a prefix argument, move to the first clock table
-in the buffer and update it.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-clocktable-shift "org-clock" "\
-Try to shift the :block date of the clocktable at point.
-Point must be in the #+BEGIN: line of a clocktable, or this function
-will throw an error.
-DIR is a direction, a symbol `left', `right', `up', or `down'.
-Both `left' and `down' shift the block toward the past, `up' and `right'
-push it toward the future.
-N is the number of shift steps to take.  The size of the step depends on
-the currently selected interval size.
-
-\(fn DIR N)" nil nil)
-
-(autoload 'org-dblock-write:clocktable "org-clock" "\
-Write the standard clocktable.
-
-\(fn PARAMS)" nil nil)
-
-(autoload 'org-clock-update-time-maybe "org-clock" "\
-If this is a CLOCK line, update it and return t.
-Otherwise, return nil.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-colview" "org-colview.el" (23195 45027
-;;;;;;  389190 102000))
-;;; Generated autoloads from org-colview.el
-
-(autoload 'org-columns-remove-overlays "org-colview" "\
-Remove all currently active column overlays.
-
-\(fn)" t nil)
-
-(autoload 'org-columns-get-format-and-top-level "org-colview" "\
-
-
-\(fn)" nil nil)
-
-(autoload 'org-columns "org-colview" "\
-Turn on column view on an Org mode file.
-
-Column view applies to the whole buffer if point is before the
-first headline.  Otherwise, it applies to the first ancestor
-setting \"COLUMNS\" property.  If there is none, it defaults to
-the current headline.  With a `\\[universal-argument]' prefix argument, turn on column
-view for the whole buffer unconditionally.
-
-When COLUMNS-FMT-STRING is non-nil, use it as the column format.
-
-\(fn &optional GLOBAL COLUMNS-FMT-STRING)" t nil)
-
-(autoload 'org-columns-compute "org-colview" "\
-Summarize the values of PROPERTY hierarchically.
-Also update existing values for PROPERTY according to the first
-column specification.
-
-\(fn PROPERTY)" t nil)
-
-(autoload 'org-dblock-write:columnview "org-colview" "\
-Write the column view table.
-PARAMS is a property list of parameters:
-
-:id       the :ID: property of the entry where the columns view
-	  should be built.  When the symbol `local', call locally.
-	  When `global' call column view with the cursor at the beginning
-	  of the buffer (usually this means that the whole buffer switches
-	  to column view).  When \"file:path/to/file.org\", invoke column
-	  view at the start of that file.  Otherwise, the ID is located
-	  using `org-id-find'.
-:hlines   When t, insert a hline before each item.  When a number, insert
-	  a hline before each level <= that number.
-:indent   When non-nil, indent each ITEM field according to its level.
-:vlines   When t, make each column a colgroup to enforce vertical lines.
-:maxlevel When set to a number, don't capture headlines below this level.
-:skip-empty-rows
-	  When t, skip rows where all specifiers other than ITEM are empty.
-:width    apply widths specified in columns format using <N> specifiers.
-:format   When non-nil, specify the column view format to use.
-
-\(fn PARAMS)" nil nil)
-
-(autoload 'org-columns-insert-dblock "org-colview" "\
-Create a dynamic block capturing a column view table.
-
-\(fn)" t nil)
-
-(autoload 'org-agenda-columns "org-colview" "\
-Turn on or update column view in the agenda.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-compat" "org-compat.el" (23195 45027 389190
-;;;;;;  102000))
-;;; Generated autoloads from org-compat.el
-
-(autoload 'org-check-version "org-compat" "\
-Try very hard to provide sensible version strings.
-
-\(fn)" nil t)
-
-;;;***
-
-;;;### (autoloads nil "org-datetree" "org-datetree.el" "ba966f278edd387a7bef6fe54c90b123")
-;;; Generated autoloads from org-datetree.el
-
-(autoload 'org-datetree-find-date-create "org-datetree" "\
-Find or create an entry for date D.
-If KEEP-RESTRICTION is non-nil, do not widen the buffer.
-When it is nil, the buffer will be widened to make sure an existing date
-tree can be found.  If it is the symbol `subtree-at-point', then the tree
-will be built under the headline at point.
-
-\(fn D &optional KEEP-RESTRICTION)" nil nil)
-
-(autoload 'org-datetree-find-iso-week-create "org-datetree" "\
-Find or create an ISO week entry for date D.
-Compared to `org-datetree-find-date-create' this function creates
-entries ordered by week instead of months.
-When it is nil, the buffer will be widened to make sure an existing date
-tree can be found.  If it is the symbol `subtree-at-point', then the tree
-will be built under the headline at point.
-
-\(fn D &optional KEEP-RESTRICTION)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "org-duration" "org-duration.el" (23122 46211
-;;;;;;  557086 433000))
-;;; Generated autoloads from org-duration.el
-
-(autoload 'org-duration-set-regexps "org-duration" "\
-Set duration related regexps.
-
-\(fn)" t nil)
-
-(autoload 'org-duration-p "org-duration" "\
-Non-nil when string S is a time duration.
-
-\(fn S)" nil nil)
-
-(autoload 'org-duration-to-minutes "org-duration" "\
-Return number of minutes of DURATION string.
-
-When optional argument CANONICAL is non-nil, ignore
-`org-duration-units' and use standard time units value.
-
-A bare number is translated into minutes.  The empty string is
-translated into 0.0.
-
-Return value as a float.  Raise an error if duration format is
-not recognized.
-
-\(fn DURATION &optional CANONICAL)" nil nil)
-
-(autoload 'org-duration-from-minutes "org-duration" "\
-Return duration string for a given number of MINUTES.
-
-Format duration according to `org-duration-format' or FMT, when
-non-nil.
-
-When optional argument CANONICAL is non-nil, ignore
-`org-duration-units' and use standard time units value.
-
-Raise an error if expected format is unknown.
-
-\(fn MINUTES &optional FMT CANONICAL)" nil nil)
-
-(autoload 'org-duration-h:mm-only-p "org-duration" "\
-Non-nil when every duration in TIMES has \"H:MM\" or \"H:MM:SS\" format.
-
-TIMES is a list of duration strings.
-
-Return nil if any duration is expressed with units, as defined in
-`org-duration-units'.  Otherwise, if any duration is expressed
-with \"H:MM:SS\" format, return `h:mm:ss'.  Otherwise, return
-`h:mm'.
-
-\(fn TIMES)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "org-element" "org-element.el" "9884bb79ba81b08be137ab07c79303a1")
-;;; Generated autoloads from org-element.el
-
-(autoload 'org-element-update-syntax "org-element" "\
-Update parser internals.
-
-\(fn)" t nil)
-
-(autoload 'org-element-interpret-data "org-element" "\
-Interpret DATA as Org syntax.
-DATA is a parse tree, an element, an object or a secondary string
-to interpret.  Return Org syntax as a string.
-
-\(fn DATA)" nil nil)
-
-(autoload 'org-element-cache-reset "org-element" "\
-Reset cache in current buffer.
-When optional argument ALL is non-nil, reset cache in all Org
-buffers.
-
-\(fn &optional ALL)" t nil)
-
-(autoload 'org-element-cache-refresh "org-element" "\
-Refresh cache at position POS.
-
-\(fn POS)" nil nil)
-
-(autoload 'org-element-at-point "org-element" "\
-Determine closest element around point.
-
-Return value is a list like (TYPE PROPS) where TYPE is the type
-of the element and PROPS a plist of properties associated to the
-element.
-
-Possible types are defined in `org-element-all-elements'.
-Properties depend on element or object type, but always include
-`:begin', `:end', `:parent' and `:post-blank' properties.
-
-As a special case, if point is at the very beginning of the first
-item in a list or sub-list, returned element will be that list
-instead of the item.  Likewise, if point is at the beginning of
-the first row of a table, returned element will be the table
-instead of the first row.
-
-When point is at the end of the buffer, return the innermost
-element ending there.
-
-\(fn)" nil nil)
-
-(autoload 'org-element-context "org-element" "\
-Return smallest element or object around point.
-
-Return value is a list like (TYPE PROPS) where TYPE is the type
-of the element or object and PROPS a plist of properties
-associated to it.
-
-Possible types are defined in `org-element-all-elements' and
-`org-element-all-objects'.  Properties depend on element or
-object type, but always include `:begin', `:end', `:parent' and
-`:post-blank'.
-
-As a special case, if point is right after an object and not at
-the beginning of any other object, return that object.
-
-Optional argument ELEMENT, when non-nil, is the closest element
-containing point, as returned by `org-element-at-point'.
-Providing it allows for quicker computation.
-
-\(fn &optional ELEMENT)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "org-feed" "org-feed.el" "cc9d7655449e79a01a0a7b58bd1d9ca1")
-;;; Generated autoloads from org-feed.el
-
-(autoload 'org-feed-update-all "org-feed" "\
-Get inbox items from all feeds in `org-feed-alist'.
-
-\(fn)" t nil)
-
-(autoload 'org-feed-update "org-feed" "\
-Get inbox items from FEED.
-FEED can be a string with an association in `org-feed-alist', or
-it can be a list structured like an entry in `org-feed-alist'.
-
-\(fn FEED &optional RETRIEVE-ONLY)" t nil)
-
-(autoload 'org-feed-goto-inbox "org-feed" "\
-Go to the inbox that captures the feed named FEED.
-
-\(fn FEED)" t nil)
-
-(autoload 'org-feed-show-raw-feed "org-feed" "\
-Show the raw feed buffer of a feed.
-
-\(fn FEED)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-footnote" "org-footnote.el" "e9ce16dcb970cce6c642f3b7f07bbbc8")
-;;; Generated autoloads from org-footnote.el
-
-(autoload 'org-footnote-action "org-footnote" "\
-Do the right thing for footnotes.
-
-When at a footnote reference, jump to the definition.
-
-When at a definition, jump to the references if they exist, offer
-to create them otherwise.
-
-When neither at definition or reference, create a new footnote,
-interactively if possible.
-
-With prefix arg SPECIAL, or when no footnote can be created,
-offer additional commands in a menu.
-
-\(fn &optional SPECIAL)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-id" "org-id.el" "3a6cfd2d05c88ba07781cd0a2d1078f3")
-;;; Generated autoloads from org-id.el
-
-(autoload 'org-id-get-create "org-id" "\
-Create an ID for the current entry and return it.
-If the entry already has an ID, just return it.
-With optional argument FORCE, force the creation of a new ID.
-
-\(fn &optional FORCE)" t nil)
-
-(autoload 'org-id-copy "org-id" "\
-Copy the ID of the entry at point to the kill ring.
-Create an ID if necessary.
-
-\(fn)" t nil)
-
-(autoload 'org-id-get "org-id" "\
-Get the ID property of the entry at point-or-marker POM.
-If POM is nil, refer to the entry at point.
-If the entry does not have an ID, the function returns nil.
-However, when CREATE is non nil, create an ID if none is present already.
-PREFIX will be passed through to `org-id-new'.
-In any case, the ID of the entry is returned.
-
-\(fn &optional POM CREATE PREFIX)" nil nil)
-
-(autoload 'org-id-get-with-outline-path-completion "org-id" "\
-Use `outline-path-completion' to retrieve the ID of an entry.
-TARGETS may be a setting for `org-refile-targets' to define
-eligible headlines.  When omitted, all headlines in the current
-file are eligible.  This function returns the ID of the entry.
-If necessary, the ID is created.
-
-\(fn &optional TARGETS)" nil nil)
-
-(autoload 'org-id-get-with-outline-drilling "org-id" "\
-Use an outline-cycling interface to retrieve the ID of an entry.
-This only finds entries in the current buffer, using `org-get-location'.
-It returns the ID of the entry.  If necessary, the ID is created.
-
-\(fn)" nil nil)
-
-(autoload 'org-id-goto "org-id" "\
-Switch to the buffer containing the entry with id ID.
-Move the cursor to that entry in that buffer.
-
-\(fn ID)" t nil)
-
-(autoload 'org-id-find "org-id" "\
-Return the location of the entry with the id ID.
-The return value is a cons cell (file-name . position), or nil
-if there is no entry with that ID.
-With optional argument MARKERP, return the position as a new marker.
-
-\(fn ID &optional MARKERP)" nil nil)
-
-(autoload 'org-id-new "org-id" "\
-Create a new globally unique ID.
-
-An ID consists of two parts separated by a colon:
-- a prefix
-- a unique part that will be created according to `org-id-method'.
-
-PREFIX can specify the prefix, the default is given by the variable
-`org-id-prefix'.  However, if PREFIX is the symbol `none', don't use any
-prefix even if `org-id-prefix' specifies one.
-
-So a typical ID could look like \"Org:4nd91V40HI\".
-
-\(fn &optional PREFIX)" nil nil)
-
-(autoload 'org-id-update-id-locations "org-id" "\
-Scan relevant files for IDs.
-Store the relation between files and corresponding IDs.
-This will scan all agenda files, all associated archives, and all
-files currently mentioned in `org-id-locations'.
-When FILES is given, scan these files instead.
-
-\(fn &optional FILES SILENT)" t nil)
-
-(autoload 'org-id-find-id-file "org-id" "\
-Query the id database for the file in which this ID is located.
-
-\(fn ID)" nil nil)
-
-(autoload 'org-id-store-link "org-id" "\
-Store a link to the current entry, using its ID.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-indent" "org-indent.el" "a1b3a5cb538d830f8686ef38fac39a3f")
-;;; Generated autoloads from org-indent.el
-
-(autoload 'org-indent-mode "org-indent" "\
-When active, indent text according to outline structure.
-
-Internally this works by adding `line-prefix' and `wrap-prefix'
-properties, after each buffer modification, on the modified zone.
-
-The process is synchronous.  Though, initial indentation of
-buffer, which can take a few seconds on large buffers, is done
-during idle time.
-
-\(fn &optional ARG)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-irc" "org-irc.el" "4c557982f1eec29419c881a776b4c7bf")
-;;; Generated autoloads from org-irc.el
-
-(autoload 'org-irc-store-link "org-irc" "\
-Dispatch to the appropriate function to store a link to an IRC session.
-
-\(fn)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "org-lint" "org-lint.el" (23122 46211 569086
-;;;;;;  279000))
-;;; Generated autoloads from org-lint.el
-
-(autoload 'org-lint "org-lint" "\
-Check current Org buffer for syntax mistakes.
-
-By default, run all checkers.  With a `\\[universal-argument]' prefix ARG, select one
-category of checkers only.  With a `\\[universal-argument] \\[universal-argument]' prefix, run one precise
-checker by its name.
-
-ARG can also be a list of checker names, as symbols, to run.
-
-\(fn &optional ARG)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-macs" "org-macs.el" (23195 45027 401189
-;;;;;;  958000))
-;;; Generated autoloads from org-macs.el
-
-(autoload 'org-load-noerror-mustsuffix "org-macs" "\
-Load FILE with optional arguments NOERROR and MUSTSUFFIX.
-
-\(fn FILE)" nil t)
-
-;;;***
-
-;;;### (autoloads nil "org-mobile" "org-mobile.el" "e005b7accde48f9f5da5855f7bb547ec")
-;;; Generated autoloads from org-mobile.el
-
-(autoload 'org-mobile-push "org-mobile" "\
-Push the current state of Org affairs to the target directory.
-This will create the index file, copy all agenda files there, and also
-create all custom agenda views, for upload to the mobile phone.
-
-\(fn)" t nil)
-
-(autoload 'org-mobile-pull "org-mobile" "\
-Pull the contents of `org-mobile-capture-file' and integrate them.
-Apply all flagged actions, flag entries to be flagged and then call an
-agenda view showing the flagged items.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-plot" "org-plot.el" "85b14ab93a67abe34c254eb6c55bd79c")
-;;; Generated autoloads from org-plot.el
-
-(autoload 'org-plot/gnuplot "org-plot" "\
-Plot table using gnuplot.  Gnuplot options can be specified with PARAMS.
-If not given options will be taken from the +PLOT
-line directly before or after the table.
-
-\(fn &optional PARAMS)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-table" "org-table.el" "655b68fb9b54da75d23bcfc26f39e1d3")
-;;; Generated autoloads from org-table.el
-
-(autoload 'org-table-create-with-table\.el "org-table" "\
-Use the table.el package to insert a new table.
-If there is already a table at point, convert between Org tables
-and table.el tables.
-
-\(fn)" t nil)
-
-(autoload 'org-table-create-or-convert-from-region "org-table" "\
-Convert region to table, or create an empty table.
-If there is an active region, convert it to a table, using the function
-`org-table-convert-region'.  See the documentation of that function
-to learn how the prefix argument is interpreted to determine the field
-separator.
-If there is no such region, create an empty table with `org-table-create'.
-
-\(fn ARG)" t nil)
-
-(autoload 'org-table-create "org-table" "\
-Query for a size and insert a table skeleton.
-SIZE is a string Columns x Rows like for example \"3x2\".
-
-\(fn &optional SIZE)" t nil)
-
-(autoload 'org-table-convert-region "org-table" "\
-Convert region to a table.
-
-The region goes from BEG0 to END0, but these borders will be moved
-slightly, to make sure a beginning of line in the first line is included.
-
-SEPARATOR specifies the field separator in the lines.  It can have the
-following values:
-
-\(4)     Use the comma as a field separator
-\(16)    Use a TAB as field separator
-\(64)    Prompt for a regular expression as field separator
-integer  When a number, use that many spaces, or a TAB, as field separator
-regexp   When a regular expression, use it to match the separator
-nil      When nil, the command tries to be smart and figure out the
-         separator in the following way:
-         - when each line contains a TAB, assume TAB-separated material
-         - when each line contains a comma, assume CSV material
-         - else, assume one or more SPACE characters as separator.
-
-\(fn BEG0 END0 &optional SEPARATOR)" t nil)
-
-(autoload 'org-table-import "org-table" "\
-Import FILE as a table.
-
-The command tries to be smart and figure out the separator in the
-following way:
-
-  - when each line contains a TAB, assume TAB-separated material
-  - when each line contains a comma, assume CSV material
-  - else, assume one or more SPACE characters as separator.
-
-When non-nil, SEPARATOR specifies the field separator in the
-lines.  It can have the following values:
-
-\(4)     Use the comma as a field separator
-\(16)    Use a TAB as field separator
-\(64)    Prompt for a regular expression as field separator
-integer When a number, use that many spaces, or a TAB, as field separator
-regexp  When a regular expression, use it to match the separator.
-
-\(fn FILE SEPARATOR)" t nil)
-
-(autoload 'org-table-export "org-table" "\
-Export table to a file, with configurable format.
-Such a file can be imported into usual spreadsheet programs.
-
-FILE can be the output file name.  If not given, it will be taken
-from a TABLE_EXPORT_FILE property in the current entry or higher
-up in the hierarchy, or the user will be prompted for a file
-name.  FORMAT can be an export format, of the same kind as it
-used when `orgtbl-mode' sends a table in a different format.
-
-The command suggests a format depending on TABLE_EXPORT_FORMAT,
-whether it is set locally or up in the hierarchy, then on the
-extension of the given file name, and finally on the variable
-`org-table-export-default-format'.
-
-\(fn &optional FILE FORMAT)" t nil)
-
-(autoload 'org-table-align "org-table" "\
-Align the table at point by aligning all vertical bars.
-
-\(fn)" t nil)
-
-(autoload 'org-table-begin "org-table" "\
-Find the beginning of the table and return its position.
-With a non-nil optional argument TABLE-TYPE, return the beginning
-of a table.el-type table.  This function assumes point is on
-a table.
-
-\(fn &optional TABLE-TYPE)" nil nil)
-
-(autoload 'org-table-end "org-table" "\
-Find the end of the table and return its position.
-With a non-nil optional argument TABLE-TYPE, return the end of
-a table.el-type table.  This function assumes point is on
-a table.
-
-\(fn &optional TABLE-TYPE)" nil nil)
-
-(autoload 'org-table-justify-field-maybe "org-table" "\
-Justify the current field, text to left, number to right.
-Optional argument NEW may specify text to replace the current field content.
-
-\(fn &optional NEW)" nil nil)
-
-(autoload 'org-table-next-field "org-table" "\
-Go to the next field in the current table, creating new lines as needed.
-Before doing so, re-align the table if necessary.
-
-\(fn)" t nil)
-
-(autoload 'org-table-previous-field "org-table" "\
-Go to the previous field in the table.
-Before doing so, re-align the table if necessary.
-
-\(fn)" t nil)
-
-(autoload 'org-table-next-row "org-table" "\
-Go to the next row (same column) in the current table.
-Before doing so, re-align the table if necessary.
-
-\(fn)" t nil)
-
-(autoload 'org-table-copy-down "org-table" "\
-Copy the value of the current field one row below.
-
-If the field at the cursor is empty, copy the content of the
-nearest non-empty field above.  With argument N, use the Nth
-non-empty field.
-
-If the current field is not empty, it is copied down to the next
-row, and the cursor is moved with it.  Therefore, repeating this
-command causes the column to be filled row-by-row.
-
-If the variable `org-table-copy-increment' is non-nil and the
-field is an integer or a timestamp, it will be incremented while
-copying.  By default, increment by the difference between the
-value in the current field and the one in the field above.  To
-increment using a fixed integer, set `org-table-copy-increment'
-to a number.  In the case of a timestamp, increment by days.
-
-\(fn N)" t nil)
-
-(autoload 'org-table-blank-field "org-table" "\
-Blank the current table field or active region.
-
-\(fn)" t nil)
-
-(autoload 'org-table-field-info "org-table" "\
-Show info about the current field, and highlight any reference at point.
-
-\(fn ARG)" t nil)
-
-(autoload 'org-table-goto-column "org-table" "\
-Move the cursor to the Nth column in the current table line.
-With optional argument ON-DELIM, stop with point before the left delimiter
-of the field.
-If there are less than N fields, just go to after the last delimiter.
-However, when FORCE is non-nil, create new columns if necessary.
-
-\(fn N &optional ON-DELIM FORCE)" t nil)
-
-(autoload 'org-table-insert-column "org-table" "\
-Insert a new column into the table.
-
-\(fn)" t nil)
-
-(autoload 'org-table-delete-column "org-table" "\
-Delete a column from the table.
-
-\(fn)" t nil)
-
-(autoload 'org-table-move-column-right "org-table" "\
-Move column to the right.
-
-\(fn)" t nil)
-
-(autoload 'org-table-move-column-left "org-table" "\
-Move column to the left.
-
-\(fn)" t nil)
-
-(autoload 'org-table-move-column "org-table" "\
-Move the current column to the right.  With arg LEFT, move to the left.
-
-\(fn &optional LEFT)" t nil)
-
-(autoload 'org-table-move-row-down "org-table" "\
-Move table row down.
-
-\(fn)" t nil)
-
-(autoload 'org-table-move-row-up "org-table" "\
-Move table row up.
-
-\(fn)" t nil)
-
-(autoload 'org-table-move-row "org-table" "\
-Move the current table line down.  With arg UP, move it up.
-
-\(fn &optional UP)" t nil)
-
-(autoload 'org-table-insert-row "org-table" "\
-Insert a new row above the current line into the table.
-With prefix ARG, insert below the current line.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-table-insert-hline "org-table" "\
-Insert a horizontal-line below the current line into the table.
-With prefix ABOVE, insert above the current line.
-
-\(fn &optional ABOVE)" t nil)
-
-(autoload 'org-table-hline-and-move "org-table" "\
-Insert a hline and move to the row below that line.
-
-\(fn &optional SAME-COLUMN)" t nil)
-
-(autoload 'org-table-kill-row "org-table" "\
-Delete the current row or horizontal line from the table.
-
-\(fn)" t nil)
-
-(autoload 'org-table-sort-lines "org-table" "\
-Sort table lines according to the column at point.
-
-The position of point indicates the column to be used for
-sorting, and the range of lines is the range between the nearest
-horizontal separator lines, or the entire table of no such lines
-exist.  If point is before the first column, you will be prompted
-for the sorting column.  If there is an active region, the mark
-specifies the first line and the sorting column, while point
-should be in the last line to be included into the sorting.
-
-The command then prompts for the sorting type which can be
-alphabetically, numerically, or by time (as given in a time stamp
-in the field, or as a HH:MM value).  Sorting in reverse order is
-also possible.
-
-With prefix argument WITH-CASE, alphabetic sorting will be case-sensitive.
-
-If SORTING-TYPE is specified when this function is called from a Lisp
-program, no prompting will take place.  SORTING-TYPE must be a character,
-any of (?a ?A ?n ?N ?t ?T ?f ?F) where the capital letters indicate that
-sorting should be done in reverse order.
-
-If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
-a function to be called to extract the key.  It must return a value
-that is compatible with COMPARE-FUNC, the function used to compare
-entries.
-
-A non-nil value for INTERACTIVE? is used to signal that this
-function is being called interactively.
-
-\(fn &optional WITH-CASE SORTING-TYPE GETKEY-FUNC COMPARE-FUNC INTERACTIVE\\=\\?)" t nil)
-
-(autoload 'org-table-cut-region "org-table" "\
-Copy region in table to the clipboard and blank all relevant fields.
-If there is no active region, use just the field at point.
-
-\(fn BEG END)" t nil)
-
-(autoload 'org-table-copy-region "org-table" "\
-Copy rectangular region in table to clipboard.
-A special clipboard is used which can only be accessed
-with `org-table-paste-rectangle'.
-
-\(fn BEG END &optional CUT)" t nil)
-
-(autoload 'org-table-paste-rectangle "org-table" "\
-Paste a rectangular region into a table.
-The upper right corner ends up in the current field.  All involved fields
-will be overwritten.  If the rectangle does not fit into the present table,
-the table is enlarged as needed.  The process ignores horizontal separator
-lines.
-
-\(fn)" t nil)
-
-(autoload 'org-table-convert "org-table" "\
-Convert from `org-mode' table to table.el and back.
-Obviously, this only works within limits.  When an Org table is converted
-to table.el, all horizontal separator lines get lost, because table.el uses
-these as cell boundaries and has no notion of horizontal lines.  A table.el
-table can be converted to an Org table only if it does not do row or column
-spanning.  Multiline cells will become multiple cells.  Beware, Org mode
-does not test if the table can be successfully converted - it blindly
-applies a recipe that works for simple tables.
-
-\(fn)" t nil)
-
-(autoload 'org-table-wrap-region "org-table" "\
-Wrap several fields in a column like a paragraph.
-This is useful if you'd like to spread the contents of a field over several
-lines, in order to keep the table compact.
-
-If there is an active region, and both point and mark are in the same column,
-the text in the column is wrapped to minimum width for the given number of
-lines.  Generally, this makes the table more compact.  A prefix ARG may be
-used to change the number of desired lines.  For example, `C-2 \\[org-table-wrap-region]'
-formats the selected text to two lines.  If the region was longer than two
-lines, the remaining lines remain empty.  A negative prefix argument reduces
-the current number of lines by that amount.  The wrapped text is pasted back
-into the table.  If you formatted it to more lines than it was before, fields
-further down in the table get overwritten - so you might need to make space in
-the table first.
-
-If there is no region, the current field is split at the cursor position and
-the text fragment to the right of the cursor is prepended to the field one
-line down.
-
-If there is no region, but you specify a prefix ARG, the current field gets
-blank, and the content is appended to the field above.
-
-\(fn ARG)" t nil)
-
-(autoload 'org-table-edit-field "org-table" "\
-Edit table field in a different window.
-This is mainly useful for fields that contain hidden parts.
-
-When called with a `\\[universal-argument]' prefix, just make the full field
-visible so that it can be edited in place.
-
-When called with a `\\[universal-argument] \\[universal-argument]' prefix, toggle `org-table-follow-field-mode'.
-
-\(fn ARG)" t nil)
-
-(autoload 'org-table-sum "org-table" "\
-Sum numbers in region of current table column.
-The result will be displayed in the echo area, and will be available
-as kill to be inserted with \\[yank].
-
-If there is an active region, it is interpreted as a rectangle and all
-numbers in that rectangle will be summed.  If there is no active
-region and point is located in a table column, sum all numbers in that
-column.
-
-If at least one number looks like a time HH:MM or HH:MM:SS, all other
-numbers are assumed to be times as well (in decimal hours) and the
-numbers are added as such.
-
-If NLAST is a number, only the NLAST fields will actually be summed.
-
-\(fn &optional BEG END NLAST)" t nil)
-
-(autoload 'org-table-get-stored-formulas "org-table" "\
-Return an alist with the stored formulas directly after current table.
-By default, only return active formulas, i.e., formulas located
-on the first line after the table.  However, if optional argument
-LOCATION is a buffer position, consider the formulas there.
-
-\(fn &optional NOERROR LOCATION)" nil nil)
-
-(autoload 'org-table-maybe-eval-formula "org-table" "\
-Check if the current field starts with \"=\" or \":=\".
-If yes, store the formula and apply it.
-
-\(fn)" nil nil)
-
-(autoload 'org-table-rotate-recalc-marks "org-table" "\
-Rotate the recalculation mark in the first column.
-If in any row, the first field is not consistent with a mark,
-insert a new column for the markers.
-When there is an active region, change all the lines in the region,
-after prompting for the marking character.
-After each change, a message will be displayed indicating the meaning
-of the new mark.
-
-\(fn &optional NEWCHAR)" t nil)
-
-(autoload 'org-table-analyze "org-table" "\
-Analyze table at point and store results.
-
-This function sets up the following dynamically scoped variables:
-
- `org-table-column-name-regexp',
- `org-table-column-names',
- `org-table-current-begin-pos',
- `org-table-current-line-types',
- `org-table-current-ncol',
- `org-table-dlines',
- `org-table-hlines',
- `org-table-local-parameters',
- `org-table-named-field-locations'.
-
-\(fn)" nil nil)
-
-(autoload 'org-table-maybe-recalculate-line "org-table" "\
-Recompute the current line if marked for it, and if we haven't just done it.
-
-\(fn)" t nil)
-
-(autoload 'org-table-eval-formula "org-table" "\
-Replace the table field value at the cursor by the result of a calculation.
-
-In a table, this command replaces the value in the current field with the
-result of a formula.  It also installs the formula as the \"current\" column
-formula, by storing it in a special line below the table.  When called
-with a `\\[universal-argument]' prefix the formula is installed as a field formula.
-
-When called with a `\\[universal-argument] \\[universal-argument]' prefix, insert the active equation for the field
-back into the current field, so that it can be edited there.  This is useful
-in order to use \\<org-table-fedit-map>`\\[org-table-show-reference]' to check the referenced fields.
-
-When called, the command first prompts for a formula, which is read in
-the minibuffer.  Previously entered formulas are available through the
-history list, and the last used formula is offered as a default.
-These stored formulas are adapted correctly when moving, inserting, or
-deleting columns with the corresponding commands.
-
-The formula can be any algebraic expression understood by the Calc package.
-For details, see the Org mode manual.
-
-This function can also be called from Lisp programs and offers
-additional arguments: EQUATION can be the formula to apply.  If this
-argument is given, the user will not be prompted.
-
-SUPPRESS-ALIGN is used to speed-up recursive calls by by-passing
-unnecessary aligns.
-
-SUPPRESS-CONST suppresses the interpretation of constants in the
-formula, assuming that this has been done already outside the
-function.
-
-SUPPRESS-STORE means the formula should not be stored, either
-because it is already stored, or because it is a modified
-equation that should not overwrite the stored one.
-
-SUPPRESS-ANALYSIS prevents analyzing the table and checking
-location of point.
-
-\(fn &optional ARG EQUATION SUPPRESS-ALIGN SUPPRESS-CONST SUPPRESS-STORE SUPPRESS-ANALYSIS)" t nil)
-
-(autoload 'org-table-recalculate "org-table" "\
-Recalculate the current table line by applying all stored formulas.
-
-With prefix arg ALL, do this for all lines in the table.
-
-When called with a `\\[universal-argument] \\[universal-argument]' prefix, or if ALL is the symbol `iterate',
-recompute the table until it no longer changes.
-
-If NOALIGN is not nil, do not re-align the table after the computations
-are done.  This is typically used internally to save time, if it is
-known that the table will be realigned a little later anyway.
-
-\(fn &optional ALL NOALIGN)" t nil)
-
-(autoload 'org-table-iterate "org-table" "\
-Recalculate the table until it does not change anymore.
-The maximum number of iterations is 10, but you can choose a different value
-with the prefix ARG.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-table-recalculate-buffer-tables "org-table" "\
-Recalculate all tables in the current buffer.
-
-\(fn)" t nil)
-
-(autoload 'org-table-iterate-buffer-tables "org-table" "\
-Iterate all tables in the buffer, to converge inter-table dependencies.
-
-\(fn)" t nil)
-
-(autoload 'org-table-edit-formulas "org-table" "\
-Edit the formulas of the current table in a separate buffer.
-
-\(fn)" t nil)
-
-(autoload 'org-table-toggle-coordinate-overlays "org-table" "\
-Toggle the display of Row/Column numbers in tables.
-
-\(fn)" t nil)
-
-(autoload 'org-table-toggle-formula-debugger "org-table" "\
-Toggle the formula debugger in tables.
-
-\(fn)" t nil)
-
-(autoload 'orgtbl-mode "org-table" "\
-The Org mode table editor as a minor mode for use in other modes.
-
-\(fn &optional ARG)" t nil)
-
-(defvar orgtbl-exp-regexp "^\\([-+]?[0-9][0-9.]*\\)[eE]\\([-+]?[0-9]+\\)$" "\
-Regular expression matching exponentials as produced by calc.")
-
-(autoload 'org-table-to-lisp "org-table" "\
-Convert the table at point to a Lisp structure.
-The structure will be a list.  Each item is either the symbol `hline'
-for a horizontal separator line, or a list of field values as strings.
-The table is taken from the parameter TXT, or from the buffer at point.
-
-\(fn &optional TXT)" nil nil)
-
-(autoload 'orgtbl-to-generic "org-table" "\
-Convert the orgtbl-mode TABLE to some other format.
-
-This generic routine can be used for many standard cases.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that
-line.  PARAMS is a property list of parameters that can
-influence the conversion.
-
-Valid parameters are:
-
-:backend, :raw
-
-  Export back-end used as a basis to transcode elements of the
-  table, when no specific parameter applies to it.  It is also
-  used to translate cells contents.  You can prevent this by
-  setting :raw property to a non-nil value.
-
-:splice
-
-  When non-nil, only convert rows, not the table itself.  This is
-  equivalent to setting to the empty string both :tstart
-  and :tend, which see.
-
-:skip
-
-  When set to an integer N, skip the first N lines of the table.
-  Horizontal separation lines do count for this parameter!
-
-:skipcols
-
-  List of columns that should be skipped.  If the table has
-  a column with calculation marks, that column is automatically
-  discarded beforehand.
-
-:hline
-
-  String to be inserted on horizontal separation lines.  May be
-  nil to ignore these lines altogether.
-
-:sep
-
-  Separator between two fields, as a string.
-
-Each in the following group may be either a string or a function
-of no arguments returning a string:
-
-:tstart, :tend
-
-  Strings to start and end the table.  Ignored when :splice is t.
-
-:lstart, :lend
-
-  Strings to start and end a new table line.
-
-:llstart, :llend
-
-  Strings to start and end the last table line.  Default,
-  respectively, to :lstart and :lend.
-
-Each in the following group may be a string or a function of one
-argument (either the cells in the current row, as a list of
-strings, or the current cell) returning a string:
-
-:lfmt
-
-  Format string for an entire row, with enough %s to capture all
-  fields.  When non-nil, :lstart, :lend, and :sep are ignored.
-
-:llfmt
-
-  Format for the entire last line, defaults to :lfmt.
-
-:fmt
-
-  A format to be used to wrap the field, should contain %s for
-  the original field value.  For example, to wrap everything in
-  dollars, you could use :fmt \"$%s$\".  This may also be
-  a property list with column numbers and format strings, or
-  functions, e.g.,
-
-    (:fmt (2 \"$%s$\" 4 (lambda (c) (format \"$%s$\" c))))
-
-:hlstart :hllstart :hlend :hllend :hsep :hlfmt :hllfmt :hfmt
-
- Same as above, specific for the header lines in the table.
- All lines before the first hline are treated as header.  If
- any of these is not present, the data line value is used.
-
-This may be either a string or a function of two arguments:
-
-:efmt
-
-  Use this format to print numbers with exponential.  The format
-  should have %s twice for inserting mantissa and exponent, for
-  example \"%s\\\\times10^{%s}\".  This may also be a property
-  list with column numbers and format strings or functions.
-  :fmt will still be applied after :efmt.
-
-\(fn TABLE PARAMS)" nil nil)
-
-(autoload 'orgtbl-to-tsv "org-table" "\
-Convert the orgtbl-mode table to TAB separated material.
-
-\(fn TABLE PARAMS)" nil nil)
-
-(autoload 'orgtbl-to-csv "org-table" "\
-Convert the orgtbl-mode table to CSV material.
-This does take care of the proper quoting of fields with comma or quotes.
-
-\(fn TABLE PARAMS)" nil nil)
-
-(autoload 'orgtbl-to-latex "org-table" "\
-Convert the orgtbl-mode TABLE to LaTeX.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.  It is also possible to use the following ones:
-
-:booktabs
-
-  When non-nil, use formal \"booktabs\" style.
-
-:environment
-
-  Specify environment to use, as a string.  If you use
-  \"longtable\", you may also want to specify :language property,
-  as a string, to get proper continuation strings.
-
-\(fn TABLE PARAMS)" nil nil)
-
-(autoload 'orgtbl-to-html "org-table" "\
-Convert the orgtbl-mode TABLE to HTML.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.  It is also possible to use the following one:
-
-:attributes
-
-  Attributes and values, as a plist, which will be used in
-  <table> tag.
-
-\(fn TABLE PARAMS)" nil nil)
-
-(autoload 'orgtbl-to-texinfo "org-table" "\
-Convert the orgtbl-mode TABLE to Texinfo.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.  It is also possible to use the following one:
-
-:columns
-
-  Column widths, as a string.  When providing column fractions,
-  \"@columnfractions\" command can be omitted.
-
-\(fn TABLE PARAMS)" nil nil)
-
-(autoload 'orgtbl-to-orgtbl "org-table" "\
-Convert the orgtbl-mode TABLE into another orgtbl-mode table.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.
-
-Useful when slicing one table into many.  The :hline, :sep,
-:lstart, and :lend provide orgtbl framing.  :tstart and :tend can
-be set to provide ORGTBL directives for the generated table.
-
-\(fn TABLE PARAMS)" nil nil)
-
-(autoload 'orgtbl-ascii-plot "org-table" "\
-Draw an ASCII bar plot in a column.
-
-With cursor in a column containing numerical values, this function
-will draw a plot in a new column.
-
-ASK, if given, is a numeric prefix to override the default 12
-characters width of the plot.  ASK may also be the `\\[universal-argument]' prefix,
-which will prompt for the width.
-
-\(fn &optional ASK)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-timer" "org-timer.el" "df503e638f325920ee58c88d4d825ad2")
-;;; Generated autoloads from org-timer.el
-
-(autoload 'org-timer-start "org-timer" "\
-Set the starting time for the relative timer to now.
-When called with prefix argument OFFSET, prompt the user for an offset time,
-with the default taken from a timer stamp at point, if any.
-If OFFSET is a string or an integer, it is directly taken to be the offset
-without user interaction.
-When called with a double prefix arg, all timer strings in the active
-region will be shifted by a specific amount.  You will be prompted for
-the amount, with the default to make the first timer string in
-the region 0:00:00.
-
-\(fn &optional OFFSET)" t nil)
-
-(autoload 'org-timer "org-timer" "\
-Insert a H:MM:SS string from the timer into the buffer.
-The first time this command is used, the timer is started.
-
-When used with a `\\[universal-argument]' prefix, force restarting the timer.
-
-When used with a `\\[universal-argument] \\[universal-argument]' prefix, change all the timer strings
-in the region by a fixed amount.  This can be used to re-calibrate
-a timer that was not started at the correct moment.
-
-If NO-INSERT is non-nil, return the string instead of inserting
-it in the buffer.
-
-\(fn &optional RESTART NO-INSERT)" t nil)
-
-(autoload 'org-timer-change-times-in-region "org-timer" "\
-Change all h:mm:ss time in region by a DELTA.
-
-\(fn BEG END DELTA)" t nil)
-
-(autoload 'org-timer-item "org-timer" "\
-Insert a description-type item with the current timer value.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-timer-set-timer "org-timer" "\
-Prompt for a duration in minutes or hh:mm:ss and set a timer.
-
-If `org-timer-default-timer' is not \"0\", suggest this value as
-the default duration for the timer.  If a timer is already set,
-prompt the user if she wants to replace it.
-
-Called with a numeric prefix argument, use this numeric value as
-the duration of the timer in minutes.
-
-Called with a `C-u' prefix arguments, use `org-timer-default-timer'
-without prompting the user for a duration.
-
-With two `C-u' prefix arguments, use `org-timer-default-timer'
-without prompting the user for a duration and automatically
-replace any running timer.
-
-By default, the timer duration will be set to the number of
-minutes in the Effort property, if any.  You can ignore this by
-using three `C-u' prefix arguments.
-
-\(fn &optional OPT)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "org-version" "org-version.el" (23427 16140
-;;;;;;  563457 533000))
-;;; Generated autoloads from org-version.el
-
-(autoload 'org-release "org-version" "\
-The release version of Org.
-Inserted by installing Org mode or when a release is made.
-
-\(fn)" nil nil)
-
-(autoload 'org-git-version "org-version" "\
-The Git version of Org mode.
-Inserted by installing Org or when a release is made.
-
-\(fn)" nil nil)
-
-(defvar org-odt-data-dir "/usr/share/emacs/etc/org" "\
-The location of ODT styles.")
-
-;;;***
-
-;;;### (autoloads nil "org" "org.el" (23427 16131 247531 494000))
-;;; Generated autoloads from org.el
-
-(autoload 'org-babel-do-load-languages "org" "\
-Load the languages defined in `org-babel-load-languages'.
-
-\(fn SYM VALUE)" nil nil)
-
-(autoload 'org-babel-load-file "org" "\
-Load Emacs Lisp source code blocks in the Org FILE.
-This function exports the source code using `org-babel-tangle'
-and then loads the resulting file using `load-file'.  With prefix
-arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
-file to byte-code before it is loaded.
-
-\(fn FILE &optional COMPILE)" t nil)
-
-(autoload 'org-version "org" "\
-Show the Org version.
-Interactively, or when MESSAGE is non-nil, show it in echo area.
-With prefix argument, or when HERE is non-nil, insert it at point.
-In non-interactive uses, a reduced version string is output unless
-FULL is given.
-
-\(fn &optional HERE FULL MESSAGE)" t nil)
-
-(autoload 'turn-on-orgtbl "org" "\
-Unconditionally turn on `orgtbl-mode'.
-
-\(fn)" nil nil)
-
-(autoload 'org-clock-persistence-insinuate "org" "\
-Set up hooks for clock persistence.
-
-\(fn)" nil nil)
-
-(autoload 'org-mode "org" "\
-Outline-based notes management and organizer, alias
-\"Carsten's outline-mode for keeping track of everything.\"
-
-Org mode develops organizational tasks around a NOTES file which
-contains information about projects as plain text.  Org mode is
-implemented on top of Outline mode, which is ideal to keep the content
-of large files well structured.  It supports ToDo items, deadlines and
-time stamps, which magically appear in the diary listing of the Emacs
-calendar.  Tables are easily created with a built-in table editor.
-Plain text URL-like links connect to websites, emails (VM), Usenet
-messages (Gnus), BBDB entries, and any files related to the project.
-For printing and sharing of notes, an Org file (or a part of it)
-can be exported as a structured ASCII or HTML file.
-
-The following commands are available:
-
-\\{org-mode-map}
-
-\(fn)" t nil)
-
-(autoload 'org-cycle "org" "\
-TAB-action and visibility cycling for Org mode.
-
-This is the command invoked in Org mode by the `TAB' key.  Its main
-purpose is outline visibility cycling, but it also invokes other actions
-in special contexts.
-
-When this function is called with a `\\[universal-argument]' prefix, rotate the entire
-buffer through 3 states (global cycling)
-  1. OVERVIEW: Show only top-level headlines.
-  2. CONTENTS: Show all headlines of all levels, but no body text.
-  3. SHOW ALL: Show everything.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix argument, switch to the startup visibility,
-determined by the variable `org-startup-folded', and by any VISIBILITY
-properties in the buffer.
-
-With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix argument, show the entire buffer, including
-any drawers.
-
-When inside a table, re-align the table and move to the next field.
-
-When point is at the beginning of a headline, rotate the subtree started
-by this line through 3 different states (local cycling)
-  1. FOLDED:   Only the main headline is shown.
-  2. CHILDREN: The main headline and the direct children are shown.
-               From this state, you can move to one of the children
-               and zoom in further.
-  3. SUBTREE:  Show the entire subtree, including body text.
-If there is no subtree, switch directly from CHILDREN to FOLDED.
-
-When point is at the beginning of an empty headline and the variable
-`org-cycle-level-after-item/entry-creation' is set, cycle the level
-of the headline by demoting and promoting it to likely levels.  This
-speeds up creation document structure by pressing `TAB' once or several
-times right after creating a new headline.
-
-When there is a numeric prefix, go up to a heading with level ARG, do
-a `show-subtree' and return to the previous cursor position.  If ARG
-is negative, go up that many levels.
-
-When point is not at the beginning of a headline, execute the global
-binding for `TAB', which is re-indenting the line.  See the option
-`org-cycle-emulate-tab' for details.
-
-As a special case, if point is at the beginning of the buffer and there is
-no headline in line 1, this function will act as if called with prefix arg
-\(`\\[universal-argument] TAB', same as `S-TAB') also when called without prefix arg, but only
-if the variable `org-cycle-global-at-bob' is t.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-global-cycle "org" "\
-Cycle the global visibility.  For details see `org-cycle'.
-With `\\[universal-argument]' prefix ARG, switch to startup visibility.
-With a numeric prefix, show all headlines up to that level.
-
-\(fn &optional ARG)" t nil)
-(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
-
-(autoload 'orgstruct-mode "org" "\
-Toggle the minor mode `orgstruct-mode'.
-This mode is for using Org mode structure commands in other
-modes.  The following keys behave as if Org mode were active, if
-the cursor is on a headline, or on a plain list item (both as
-defined by Org mode).
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'turn-on-orgstruct "org" "\
-Unconditionally turn on `orgstruct-mode'.
-
-\(fn)" nil nil)
-
-(autoload 'turn-on-orgstruct++ "org" "\
-Unconditionally turn on `orgstruct++-mode'.
-
-\(fn)" nil nil)
-
-(autoload 'org-run-like-in-org-mode "org" "\
-Run a command, pretending that the current buffer is in Org mode.
-This will temporarily bind local variables that are typically bound in
-Org mode to the values they have in Org mode, and then interactively
-call CMD.
-
-\(fn CMD)" nil nil)
-
-(autoload 'org-store-link "org" "\
-Store an org-link to the current location.
-\\<org-mode-map>
-This link is added to `org-stored-links' and can later be inserted
-into an Org buffer with `org-insert-link' (`\\[org-insert-link]').
-
-For some link types, a `\\[universal-argument]' prefix ARG is interpreted.  A single
-`\\[universal-argument]' negates `org-context-in-file-links' for file links or
-`org-gnus-prefer-web-links' for links to Usenet articles.
-
-A `\\[universal-argument] \\[universal-argument]' prefix ARG forces skipping storing functions that are not
-part of Org core.
-
-A `\\[universal-argument] \\[universal-argument] \\[universal-argument]' prefix ARG forces storing a link for each line in the
-active region.
-
-\(fn ARG)" t nil)
-
-(autoload 'org-insert-link-global "org" "\
-Insert a link like Org mode does.
-This command can be called in any mode to insert a link in Org syntax.
-
-\(fn)" t nil)
-
-(autoload 'org-open-at-point-global "org" "\
-Follow a link or time-stamp like Org mode does.
-This command can be called in any mode to follow an external link
-or a time-stamp that has Org mode syntax.  Its behavior is
-undefined when called on internal links (e.g., fuzzy links).
-Raise an error when there is nothing to follow.  
-
-\(fn)" t nil)
-
-(autoload 'org-open-link-from-string "org" "\
-Open a link in the string S, as if it was in Org mode.
-
-\(fn S &optional ARG REFERENCE-BUFFER)" t nil)
-
-(autoload 'org-switchb "org" "\
-Switch between Org buffers.
-
-With `\\[universal-argument]' prefix, restrict available buffers to files.
-
-With `\\[universal-argument] \\[universal-argument]' prefix, restrict available buffers to agenda files.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-cycle-agenda-files "org" "\
-Cycle through the files in `org-agenda-files'.
-If the current buffer visits an agenda file, find the next one in the list.
-If the current buffer does not, find the first agenda file.
-
-\(fn)" t nil)
-
-(autoload 'org-submit-bug-report "org" "\
-Submit a bug report on Org via mail.
-
-Don't hesitate to report any problems or inaccurate documentation.
-
-If you don't have setup sending mail from (X)Emacs, please copy the
-output buffer into your mail program, as it gives us important
-information about your Org version and configuration.
-
-\(fn)" t nil)
-
-(autoload 'org-reload "org" "\
-Reload all Org Lisp files.
-With prefix arg UNCOMPILED, load the uncompiled versions.
-
-\(fn &optional UNCOMPILED)" t nil)
-
-(autoload 'org-customize "org" "\
-Call the customize function with org as argument.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "ox" "ox.el" "72daa607ccab31f421d02552b327a7c8")
-;;; Generated autoloads from ox.el
-
-(autoload 'org-export-get-backend "ox" "\
-Return export back-end named after NAME.
-NAME is a symbol.  Return nil if no such back-end is found.
-
-\(fn NAME)" nil nil)
-
-(autoload 'org-export-get-environment "ox" "\
-Collect export options from the current buffer.
-
-Optional argument BACKEND is an export back-end, as returned by
-`org-export-create-backend'.
-
-When optional argument SUBTREEP is non-nil, assume the export is
-done against the current sub-tree.
-
-Third optional argument EXT-PLIST is a property list with
-external parameters overriding Org default settings, but still
-inferior to file-local settings.
-
-\(fn &optional BACKEND SUBTREEP EXT-PLIST)" nil nil)
-
-(autoload 'org-export-as "ox" "\
-Transcode current Org buffer into BACKEND code.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-If narrowing is active in the current buffer, only transcode its
-narrowed part.
-
-If a region is active, transcode that region.
-
-When optional argument SUBTREEP is non-nil, transcode the
-sub-tree at point, extracting information from the headline
-properties first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only return body
-code, without surrounding template.
-
-Optional argument EXT-PLIST, when provided, is a property list
-with external parameters overriding Org default settings, but
-still inferior to file-local settings.
-
-Return code as a string.
-
-\(fn BACKEND &optional SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" nil nil)
-
-(autoload 'org-export-string-as "ox" "\
-Transcode STRING into BACKEND code.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-When optional argument BODY-ONLY is non-nil, only return body
-code, without preamble nor postamble.
-
-Optional argument EXT-PLIST, when provided, is a property list
-with external parameters overriding Org default settings, but
-still inferior to file-local settings.
-
-Return code as a string.
-
-\(fn STRING BACKEND &optional BODY-ONLY EXT-PLIST)" nil nil)
-
-(autoload 'org-export-replace-region-by "ox" "\
-Replace the active region by its export to BACKEND.
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-\(fn BACKEND)" nil nil)
-
-(autoload 'org-export-insert-default-template "ox" "\
-Insert all export keywords with default values at beginning of line.
-
-BACKEND is a symbol referring to the name of a registered export
-back-end, for which specific export options should be added to
-the template, or `default' for default template.  When it is nil,
-the user will be prompted for a category.
-
-If SUBTREEP is non-nil, export configuration will be set up
-locally for the subtree through node properties.
-
-\(fn &optional BACKEND SUBTREEP)" t nil)
-
-(autoload 'org-export-to-buffer "ox" "\
-Call `org-export-as' with output to a specified buffer.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-BUFFER is the name of the output buffer.  If it already exists,
-it will be erased first, otherwise, it will be created.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should then be accessible
-through the `org-export-stack' interface.  When ASYNC is nil, the
-buffer is displayed if `org-export-show-temporary-export-buffer'
-is non-nil.
-
-Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
-EXT-PLIST are similar to those used in `org-export-as', which
-see.
-
-Optional argument POST-PROCESS is a function which should accept
-no argument.  It is always called within the current process,
-from BUFFER, with point at its beginning.  Export back-ends can
-use it to set a major mode there, e.g,
-
-  (defun org-latex-export-as-latex
-    (&optional async subtreep visible-only body-only ext-plist)
-    (interactive)
-    (org-export-to-buffer \\='latex \"*Org LATEX Export*\"
-      async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
-
-This function returns BUFFER.
-
-\(fn BACKEND BUFFER &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)" nil nil)
-
-(function-put 'org-export-to-buffer 'lisp-indent-function '2)
-
-(autoload 'org-export-to-file "ox" "\
-Call `org-export-as' with output to a specified file.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.  FILE is the name of the output file, as
-a string.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer will then be accessible
-through the `org-export-stack' interface.
-
-Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
-EXT-PLIST are similar to those used in `org-export-as', which
-see.
-
-Optional argument POST-PROCESS is called with FILE as its
-argument and happens asynchronously when ASYNC is non-nil.  It
-has to return a file name, or nil.  Export back-ends can use this
-to send the output file through additional processing, e.g,
-
-  (defun org-latex-export-to-latex
-    (&optional async subtreep visible-only body-only ext-plist)
-    (interactive)
-    (let ((outfile (org-export-output-file-name \".tex\" subtreep)))
-      (org-export-to-file \\='latex outfile
-        async subtreep visible-only body-only ext-plist
-        (lambda (file) (org-latex-compile file)))
-
-The function returns either a file name returned by POST-PROCESS,
-or FILE.
-
-\(fn BACKEND FILE &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)" nil nil)
-
-(function-put 'org-export-to-file 'lisp-indent-function '2)
-
-(autoload 'org-export-dispatch "ox" "\
-Export dispatcher for Org mode.
-
-It provides an access to common export related tasks in a buffer.
-Its interface comes in two flavors: standard and expert.
-
-While both share the same set of bindings, only the former
-displays the valid keys associations in a dedicated buffer.
-Scrolling (resp. line-wise motion) in this buffer is done with
-SPC and DEL (resp. C-n and C-p) keys.
-
-Set variable `org-export-dispatch-use-expert-ui' to switch to one
-flavor or the other.
-
-When ARG is `\\[universal-argument]', repeat the last export action, with the same
-set of options used back then, on the current buffer.
-
-When ARG is `\\[universal-argument] \\[universal-argument]', display the asynchronous export stack.
-
-\(fn &optional ARG)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-ascii" "ox-ascii.el" "4a772695edb7dedf932be8995d9c407a")
-;;; Generated autoloads from ox-ascii.el
-
-(autoload 'org-ascii-export-as-ascii "ox-ascii" "\
-Export current buffer to a text buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, strip title and
-table of contents from output.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org ASCII Export*\", which
-will be displayed when `org-export-show-temporary-export-buffer'
-is non-nil.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-ascii-export-to-ascii "ox-ascii" "\
-Export current buffer to a text file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, strip title and
-table of contents from output.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-ascii-publish-to-ascii "ox-ascii" "\
-Publish an Org file to ASCII.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-(autoload 'org-ascii-publish-to-latin1 "ox-ascii" "\
-Publish an Org file to Latin-1.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-(autoload 'org-ascii-publish-to-utf8 "ox-ascii" "\
-Publish an org file to UTF-8.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-beamer" "ox-beamer.el" "d99129f12ce947bce4b46176eeaf2a40")
-;;; Generated autoloads from ox-beamer.el
-
-(autoload 'org-beamer-mode "ox-beamer" "\
-Support for editing Beamer oriented Org mode files.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'org-beamer-export-as-latex "ox-beamer" "\
-Export current buffer as a Beamer buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org BEAMER Export*\", which
-will be displayed when `org-export-show-temporary-export-buffer'
-is non-nil.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-beamer-export-to-latex "ox-beamer" "\
-Export current buffer as a Beamer presentation (tex).
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-beamer-export-to-pdf "ox-beamer" "\
-Export current buffer as a Beamer presentation (PDF).
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return PDF file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-beamer-select-environment "ox-beamer" "\
-Select the environment to be used by beamer for this entry.
-While this uses (for convenience) a tag selection interface, the
-result of this command will be that the BEAMER_env *property* of
-the entry is set.
-
-In addition to this, the command will also set a tag as a visual
-aid, but the tag does not have any semantic meaning.
-
-\(fn)" t nil)
-
-(autoload 'org-beamer-publish-to-latex "ox-beamer" "\
-Publish an Org file to a Beamer presentation (LaTeX).
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-(autoload 'org-beamer-publish-to-pdf "ox-beamer" "\
-Publish an Org file to a Beamer presentation (PDF, via LaTeX).
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-html" "ox-html.el" "b2b303489000b91b8507671209cc2924")
-;;; Generated autoloads from ox-html.el
-
-(put 'org-html-head-include-default-style 'safe-local-variable 'booleanp)
-
-(put 'org-html-head 'safe-local-variable 'stringp)
-
-(put 'org-html-head-extra 'safe-local-variable 'stringp)
-
-(autoload 'org-html-htmlize-generate-css "ox-html" "\
-Create the CSS for all font definitions in the current Emacs session.
-Use this to create face definitions in your CSS style file that can then
-be used by code snippets transformed by htmlize.
-This command just produces a buffer that contains class definitions for all
-faces used in the current Emacs session.  You can copy and paste the ones you
-need into your CSS file.
-
-If you then set `org-html-htmlize-output-type' to `css', calls
-to the function `org-html-htmlize-region-for-paste' will
-produce code that uses these same face definitions.
-
-\(fn)" t nil)
-
-(autoload 'org-html-export-as-html "ox-html" "\
-Export current buffer to an HTML buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"<body>\" and \"</body>\" tags.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org HTML Export*\", which
-will be displayed when `org-export-show-temporary-export-buffer'
-is non-nil.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-html-convert-region-to-html "ox-html" "\
-Assume the current region has Org syntax, and convert it to HTML.
-This can be used in any buffer.  For example, you can write an
-itemized list in Org syntax in an HTML buffer and use this command
-to convert it.
-
-\(fn)" t nil)
-
-(autoload 'org-html-export-to-html "ox-html" "\
-Export current buffer to a HTML file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"<body>\" and \"</body>\" tags.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-html-publish-to-html "ox-html" "\
-Publish an org file to HTML.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-icalendar" "ox-icalendar.el" "9d179af5b2a082e77567ef226b3b132b")
-;;; Generated autoloads from ox-icalendar.el
-
-(autoload 'org-icalendar-export-to-ics "ox-icalendar" "\
-Export current buffer to an iCalendar file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"BEGIN:VCALENDAR\" and \"END:VCALENDAR\".
-
-Return ICS file name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY)" t nil)
-
-(autoload 'org-icalendar-export-agenda-files "ox-icalendar" "\
-Export all agenda files to iCalendar files.
-When optional argument ASYNC is non-nil, export happens in an
-external process.
-
-\(fn &optional ASYNC)" t nil)
-
-(autoload 'org-icalendar-combine-agenda-files "ox-icalendar" "\
-Combine all agenda files into a single iCalendar file.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-The file is stored under the name chosen in
-`org-icalendar-combined-agenda-file'.
-
-\(fn &optional ASYNC)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-latex" "ox-latex.el" "62b465cef63a59a8fa6b5db9fc12558c")
-;;; Generated autoloads from ox-latex.el
-
-(autoload 'org-latex-make-preamble "ox-latex" "\
-Return a formatted LaTeX preamble.
-INFO is a plist used as a communication channel.  Optional
-argument TEMPLATE, when non-nil, is the header template string,
-as expected by `org-splice-latex-header'.  When SNIPPET? is
-non-nil, only includes packages relevant to image generation, as
-specified in `org-latex-default-packages-alist' or
-`org-latex-packages-alist'.
-
-\(fn INFO &optional TEMPLATE SNIPPET\\=\\?)" nil nil)
-
-(autoload 'org-latex-export-as-latex "ox-latex" "\
-Export current buffer as a LaTeX buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org LATEX Export*\", which
-will be displayed when `org-export-show-temporary-export-buffer'
-is non-nil.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-latex-convert-region-to-latex "ox-latex" "\
-Assume the current region has Org syntax, and convert it to LaTeX.
-This can be used in any buffer.  For example, you can write an
-itemized list in Org syntax in an LaTeX buffer and use this
-command to convert it.
-
-\(fn)" t nil)
-
-(autoload 'org-latex-export-to-latex "ox-latex" "\
-Export current buffer to a LaTeX file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-latex-export-to-pdf "ox-latex" "\
-Export current buffer to LaTeX then process through to PDF.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return PDF file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-latex-publish-to-latex "ox-latex" "\
-Publish an Org file to LaTeX.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-(autoload 'org-latex-publish-to-pdf "ox-latex" "\
-Publish an Org file to PDF (via LaTeX).
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-md" "ox-md.el" "68551e4d17f879632900749c3d173d5d")
-;;; Generated autoloads from ox-md.el
-
-(autoload 'org-md-export-as-markdown "ox-md" "\
-Export current buffer to a Markdown buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-Export is done in a buffer named \"*Org MD Export*\", which will
-be displayed when `org-export-show-temporary-export-buffer' is
-non-nil.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY)" t nil)
-
-(autoload 'org-md-convert-region-to-md "ox-md" "\
-Assume the current region has Org syntax, and convert it to Markdown.
-This can be used in any buffer.  For example, you can write an
-itemized list in Org syntax in a Markdown buffer and use
-this command to convert it.
-
-\(fn)" t nil)
-
-(autoload 'org-md-export-to-markdown "ox-md" "\
-Export current buffer to a Markdown file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-Return output file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY)" t nil)
-
-(autoload 'org-md-publish-to-md "ox-md" "\
-Publish an org file to Markdown.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-odt" "ox-odt.el" "07f96439ecf6e83d08d1acc3b3a85023")
-;;; Generated autoloads from ox-odt.el
-
-(put 'org-odt-preferred-output-format 'safe-local-variable 'stringp)
-
-(autoload 'org-odt-export-as-odf "ox-odt" "\
-Export LATEX-FRAG as OpenDocument formula file ODF-FILE.
-Use `org-create-math-formula' to convert LATEX-FRAG first to
-MathML.  When invoked as an interactive command, use
-`org-latex-regexps' to infer LATEX-FRAG from currently active
-region.  If no LaTeX fragments are found, prompt for it.  Push
-MathML source to kill ring depending on the value of
-`org-export-copy-to-kill-ring'.
-
-\(fn LATEX-FRAG &optional ODF-FILE)" t nil)
-
-(autoload 'org-odt-export-as-odf-and-open "ox-odt" "\
-Export LaTeX fragment as OpenDocument formula and immediately open it.
-Use `org-odt-export-as-odf' to read LaTeX fragment and OpenDocument
-formula file.
-
-\(fn)" t nil)
-
-(autoload 'org-odt-export-to-odt "ox-odt" "\
-Export current buffer to a ODT file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-odt-convert "ox-odt" "\
-Convert IN-FILE to format OUT-FMT using a command line converter.
-IN-FILE is the file to be converted.  If unspecified, it defaults
-to variable `buffer-file-name'.  OUT-FMT is the desired output
-format.  Use `org-odt-convert-process' as the converter.  If OPEN
-is non-nil then the newly converted file is opened using
-`org-open-file'.
-
-\(fn &optional IN-FILE OUT-FMT OPEN)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-org" "ox-org.el" "49bbdfb54542fbea3d9e2c956bb0d56b")
-;;; Generated autoloads from ox-org.el
-
-(autoload 'org-org-export-as-org "ox-org" "\
-Export current buffer to an Org buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, strip document
-keywords from output.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org ORG Export*\", which will
-be displayed when `org-export-show-temporary-export-buffer' is
-non-nil.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-org-export-to-org "ox-org" "\
-Export current buffer to an org file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, strip document
-keywords from output.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-org-publish-to-org "ox-org" "\
-Publish an org file to org.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-publish" "ox-publish.el" "5920e1273f48b9bead560af7f30c3537")
-;;; Generated autoloads from ox-publish.el
-
-(defalias 'org-publish-project 'org-publish)
-
-(autoload 'org-publish "ox-publish" "\
-Publish PROJECT.
-
-PROJECT is either a project name, as a string, or a project
-alist (see `org-publish-project-alist' variable).
-
-When optional argument FORCE is non-nil, force publishing all
-files in PROJECT.  With a non-nil optional argument ASYNC,
-publishing will be done asynchronously, in another process.
-
-\(fn PROJECT &optional FORCE ASYNC)" t nil)
-
-(autoload 'org-publish-all "ox-publish" "\
-Publish all projects.
-With prefix argument FORCE, remove all files in the timestamp
-directory and force publishing all projects.  With a non-nil
-optional argument ASYNC, publishing will be done asynchronously,
-in another process.
-
-\(fn &optional FORCE ASYNC)" t nil)
-
-(autoload 'org-publish-current-file "ox-publish" "\
-Publish the current file.
-With prefix argument FORCE, force publish the file.  When
-optional argument ASYNC is non-nil, publishing will be done
-asynchronously, in another process.
-
-\(fn &optional FORCE ASYNC)" t nil)
-
-(autoload 'org-publish-current-project "ox-publish" "\
-Publish the project associated with the current file.
-With a prefix argument, force publishing of all files in
-the project.
-
-\(fn &optional FORCE ASYNC)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "ox-texinfo" "ox-texinfo.el" "fa6ddaec0cc36a7edd90b629e42b6fdd")
-;;; Generated autoloads from ox-texinfo.el
-
-(autoload 'org-texinfo-export-to-texinfo "ox-texinfo" "\
-Export current buffer to a Texinfo file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-texinfo-export-to-info "ox-texinfo" "\
-Export current buffer to Texinfo then process through to INFO.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
-Return INFO file's name.
-
-\(fn &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" t nil)
-
-(autoload 'org-texinfo-publish-to-texinfo "ox-texinfo" "\
-Publish an org file to Texinfo.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name.
-
-\(fn PLIST FILENAME PUB-DIR)" nil nil)
-
-(autoload 'org-texinfo-convert-region-to-texinfo "ox-texinfo" "\
-Assume the current region has Org syntax, and convert it to Texinfo.
-This can be used in any buffer.  For example, you can write an
-itemized list in Org syntax in an Texinfo buffer and use this
-command to convert it.
-
-\(fn)" t nil)
-
-;;;***
-
-;;;### (autoloads nil "ox" "ox.el" (23195 45027 425189 671000))
-;;; Generated autoloads from ox.el
-
-(autoload 'org-export-get-backend "ox" "\
-Return export back-end named after NAME.
-NAME is a symbol.  Return nil if no such back-end is found.
-
-\(fn NAME)" nil nil)
-
-(autoload 'org-export-get-environment "ox" "\
-Collect export options from the current buffer.
-
-Optional argument BACKEND is an export back-end, as returned by
-`org-export-create-backend'.
-
-When optional argument SUBTREEP is non-nil, assume the export is
-done against the current sub-tree.
-
-Third optional argument EXT-PLIST is a property list with
-external parameters overriding Org default settings, but still
-inferior to file-local settings.
-
-\(fn &optional BACKEND SUBTREEP EXT-PLIST)" nil nil)
-
-(autoload 'org-export-as "ox" "\
-Transcode current Org buffer into BACKEND code.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-If narrowing is active in the current buffer, only transcode its
-narrowed part.
-
-If a region is active, transcode that region.
-
-When optional argument SUBTREEP is non-nil, transcode the
-sub-tree at point, extracting information from the headline
-properties first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only return body
-code, without surrounding template.
-
-Optional argument EXT-PLIST, when provided, is a property list
-with external parameters overriding Org default settings, but
-still inferior to file-local settings.
-
-Return code as a string.
-
-\(fn BACKEND &optional SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)" nil nil)
-
-(autoload 'org-export-string-as "ox" "\
-Transcode STRING into BACKEND code.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-When optional argument BODY-ONLY is non-nil, only return body
-code, without preamble nor postamble.
-
-Optional argument EXT-PLIST, when provided, is a property list
-with external parameters overriding Org default settings, but
-still inferior to file-local settings.
-
-Return code as a string.
-
-\(fn STRING BACKEND &optional BODY-ONLY EXT-PLIST)" nil nil)
-
-(autoload 'org-export-replace-region-by "ox" "\
-Replace the active region by its export to BACKEND.
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-\(fn BACKEND)" nil nil)
-
-(autoload 'org-export-insert-default-template "ox" "\
-Insert all export keywords with default values at beginning of line.
-
-BACKEND is a symbol referring to the name of a registered export
-back-end, for which specific export options should be added to
-the template, or `default' for default template.  When it is nil,
-the user will be prompted for a category.
-
-If SUBTREEP is non-nil, export configuration will be set up
-locally for the subtree through node properties.
-
-\(fn &optional BACKEND SUBTREEP)" t nil)
-
-(autoload 'org-export-to-buffer "ox" "\
-Call `org-export-as' with output to a specified buffer.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-BUFFER is the name of the output buffer.  If it already exists,
-it will be erased first, otherwise, it will be created.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should then be accessible
-through the `org-export-stack' interface.  When ASYNC is nil, the
-buffer is displayed if `org-export-show-temporary-export-buffer'
-is non-nil.
-
-Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
-EXT-PLIST are similar to those used in `org-export-as', which
-see.
-
-Optional argument POST-PROCESS is a function which should accept
-no argument.  It is always called within the current process,
-from BUFFER, with point at its beginning.  Export back-ends can
-use it to set a major mode there, e.g,
-
-  (defun org-latex-export-as-latex
-    (&optional async subtreep visible-only body-only ext-plist)
-    (interactive)
-    (org-export-to-buffer \\='latex \"*Org LATEX Export*\"
-      async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
-
-This function returns BUFFER.
-
-\(fn BACKEND BUFFER &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)" nil nil)
-
-(function-put 'org-export-to-buffer 'lisp-indent-function '2)
-
-(autoload 'org-export-to-file "ox" "\
-Call `org-export-as' with output to a specified file.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.  FILE is the name of the output file, as
-a string.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer will then be accessible
-through the `org-export-stack' interface.
-
-Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
-EXT-PLIST are similar to those used in `org-export-as', which
-see.
-
-Optional argument POST-PROCESS is called with FILE as its
-argument and happens asynchronously when ASYNC is non-nil.  It
-has to return a file name, or nil.  Export back-ends can use this
-to send the output file through additional processing, e.g,
-
-  (defun org-latex-export-to-latex
-    (&optional async subtreep visible-only body-only ext-plist)
-    (interactive)
-    (let ((outfile (org-export-output-file-name \".tex\" subtreep)))
-      (org-export-to-file \\='latex outfile
-        async subtreep visible-only body-only ext-plist
-        (lambda (file) (org-latex-compile file)))
-
-The function returns either a file name returned by POST-PROCESS,
-or FILE.
-
-\(fn BACKEND FILE &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)" nil nil)
-
-(function-put 'org-export-to-file 'lisp-indent-function '2)
-
-(autoload 'org-export-dispatch "ox" "\
-Export dispatcher for Org mode.
-
-It provides an access to common export related tasks in a buffer.
-Its interface comes in two flavors: standard and expert.
-
-While both share the same set of bindings, only the former
-displays the valid keys associations in a dedicated buffer.
-Scrolling (resp. line-wise motion) in this buffer is done with
-SPC and DEL (resp. C-n and C-p) keys.
-
-Set variable `org-export-dispatch-use-expert-ui' to switch to one
-flavor or the other.
-
-When ARG is `\\[universal-argument]', repeat the last export action, with the same
-set of options used back then, on the current buffer.
-
-When ARG is `\\[universal-argument] \\[universal-argument]', display the asynchronous export stack.
-
-\(fn &optional ARG)" t nil)
-
-;;;***
-
-(provide 'org-loaddefs)
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; org-loaddefs.el ends here
diff --git a/elpa/org-9.1.14/org-macro.el b/elpa/org-9.1.14/org-macro.el
deleted file mode 100644
index 1033db2..0000000
--- a/elpa/org-9.1.14/org-macro.el
+++ /dev/null
@@ -1,355 +0,0 @@
-;;; org-macro.el --- Macro Replacement Code for Org  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Macros are expanded with `org-macro-replace-all', which relies
-;; internally on `org-macro-expand'.
-
-;; Default templates for expansion are stored in the buffer-local
-;; variable `org-macro-templates'.  This variable is updated by
-;; `org-macro-initialize-templates', which recursively calls
-;; `org-macro--collect-macros' in order to read setup files.
-
-;; Argument in macros are separated with commas. Proper escaping rules
-;; are implemented in `org-macro-escape-arguments' and arguments can
-;; be extracted from a string with `org-macro-extract-arguments'.
-
-;; Along with macros defined through #+MACRO: keyword, default
-;; templates include the following hard-coded macros:
-;;   {{{time(format-string)}}},
-;;   {{{property(node-property)}}},
-;;   {{{input-file}}},
-;;   {{{modification-time(format-string)}}},
-;;   {{{n(counter,action}}}.
-
-;; Upon exporting, "ox.el" will also provide {{{author}}}, {{{date}}},
-;; {{{email}}} and {{{title}}} macros.
-
-;;; Code:
-(require 'cl-lib)
-(require 'org-macs)
-(require 'org-compat)
-
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-context "org-element" (&optional element))
-(declare-function org-element-macro-parser "org-element" ())
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-file-contents "org" (file &optional noerror nocache))
-(declare-function org-file-url-p "org" (file))
-(declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
-(declare-function org-mode "org" ())
-(declare-function org-trim "org" (s &optional keep-lead))
-(declare-function vc-backend "vc-hooks" (f))
-(declare-function vc-call "vc-hooks" (fun file &rest args) t)
-(declare-function vc-exec-after "vc-dispatcher" (code))
-
-;;; Variables
-
-(defvar-local org-macro-templates nil
-  "Alist containing all macro templates in current buffer.
-Associations are in the shape of (NAME . TEMPLATE) where NAME
-stands for macro's name and template for its replacement value,
-both as strings.  This is an internal variable.  Do not set it
-directly, use instead:
-
-  #+MACRO: name template")
-
-;;; Functions
-
-(defun org-macro--collect-macros ()
-  "Collect macro definitions in current buffer and setup files.
-Return an alist containing all macro templates found."
-  (letrec ((collect-macros
-	    (lambda (files templates)
-	      ;; Return an alist of macro templates.  FILES is a list
-	      ;; of setup files names read so far, used to avoid
-	      ;; circular dependencies.  TEMPLATES is the alist
-	      ;; collected so far.
-	      (let ((case-fold-search t))
-		(org-with-wide-buffer
-		 (goto-char (point-min))
-		 (while (re-search-forward
-			 "^[ \t]*#\\+\\(MACRO\\|SETUPFILE\\):" nil t)
-		   (let ((element (org-element-at-point)))
-		     (when (eq (org-element-type element) 'keyword)
-		       (let ((val (org-element-property :value element)))
-			 (if (equal (org-element-property :key element) "MACRO")
-			     ;; Install macro in TEMPLATES.
-			     (when (string-match
-				    "^\\(.*?\\)\\(?:\\s-+\\(.*\\)\\)?\\s-*$" val)
-			       (let* ((name (match-string 1 val))
-				      (template (or (match-string 2 val) ""))
-				      (old-cell (assoc name templates)))
-				 (if old-cell (setcdr old-cell template)
-				   (push (cons name template) templates))))
-			   ;; Enter setup file.
-			   (let* ((uri (org-unbracket-string "\"" "\"" (org-trim val)))
-				  (uri-is-url (org-file-url-p uri))
-				  (uri (if uri-is-url
-					   uri
-					 (expand-file-name uri))))
-			     ;; Avoid circular dependencies.
-			     (unless (member uri files)
-			       (with-temp-buffer
-				 (unless uri-is-url
-				   (setq default-directory
-					 (file-name-directory uri)))
-				 (org-mode)
-				 (insert (org-file-contents uri 'noerror))
-				 (setq templates
-				       (funcall collect-macros (cons uri files)
-						templates)))))))))))
-		templates))))
-    (funcall collect-macros nil nil)))
-
-(defun org-macro-initialize-templates ()
-  "Collect macro templates defined in current buffer.
-Templates are stored in buffer-local variable
-`org-macro-templates'.  In addition to buffer-defined macros, the
-function installs the following ones: \"property\",
-\"time\". and, if the buffer is associated to a file,
-\"input-file\" and \"modification-time\"."
-  (let* ((templates nil)
-	 (update-templates
-	  (lambda (cell)
-	    (let ((old-template (assoc (car cell) templates)))
-	      (if old-template (setcdr old-template (cdr cell))
-		(push cell templates))))))
-    ;; Install "property", "time" macros.
-    (mapc update-templates
-	  (list (cons "property"
-		      "(eval (save-excursion
-        (let ((l \"$2\"))
-          (when (org-string-nw-p l)
-            (condition-case _
-                (let ((org-link-search-must-match-exact-headline t))
-                  (org-link-search l nil t))
-              (error
-               (error \"Macro property failed: cannot find location %s\"
-                      l)))))
-        (org-entry-get nil \"$1\" 'selective)))")
-		(cons "time" "(eval (format-time-string \"$1\"))")))
-    ;; Install "input-file", "modification-time" macros.
-    (let ((visited-file (buffer-file-name (buffer-base-buffer))))
-      (when (and visited-file (file-exists-p visited-file))
-	(mapc update-templates
-	      (list (cons "input-file" (file-name-nondirectory visited-file))
-		    (cons "modification-time"
-			  (format "(eval (format-time-string \"$1\" (or (and (org-string-nw-p \"$2\") (org-macro--vc-modified-time %s)) '%s)))"
-				  (prin1-to-string visited-file)
-				  (prin1-to-string
-				   (nth 5 (file-attributes visited-file)))))))))
-    ;; Initialize and install "n" macro.
-    (org-macro--counter-initialize)
-    (funcall update-templates
-	     (cons "n" "(eval (org-macro--counter-increment \"$1\" \"$2\"))"))
-    (setq org-macro-templates (nconc (org-macro--collect-macros) templates))))
-
-(defun org-macro-expand (macro templates)
-  "Return expanded MACRO, as a string.
-MACRO is an object, obtained, for example, with
-`org-element-context'.  TEMPLATES is an alist of templates used
-for expansion.  See `org-macro-templates' for a buffer-local
-default value.  Return nil if no template was found."
-  (let ((template
-	 ;; Macro names are case-insensitive.
-	 (cdr (assoc-string (org-element-property :key macro) templates t))))
-    (when template
-      (let ((value (replace-regexp-in-string
-                    "\\$[0-9]+"
-                    (lambda (arg)
-                      (or (nth (1- (string-to-number (substring arg 1)))
-                               (org-element-property :args macro))
-                          ;; No argument: remove place-holder.
-                          ""))
-                    template nil 'literal)))
-        ;; VALUE starts with "(eval": it is a s-exp, `eval' it.
-        (when (string-match "\\`(eval\\>" value)
-          (setq value (eval (read value))))
-        ;; Return string.
-        (format "%s" (or value ""))))))
-
-(defun org-macro-replace-all (templates &optional finalize keywords)
-  "Replace all macros in current buffer by their expansion.
-
-TEMPLATES is an alist of templates used for expansion.  See
-`org-macro-templates' for a buffer-local default value.
-
-If optional arg FINALIZE is non-nil, raise an error if a macro is
-found in the buffer with no definition in TEMPLATES.
-
-Optional argument KEYWORDS, when non-nil is a list of keywords,
-as strings, where macro expansion is allowed."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let ((properties-regexp (format "\\`EXPORT_%s\\+?\\'"
-				    (regexp-opt keywords)))
-	 record)
-     (while (re-search-forward "{{{[-A-Za-z0-9_]" nil t)
-       (unless (save-match-data (org-in-commented-heading-p))
-	 (let* ((datum (save-match-data (org-element-context)))
-		(type (org-element-type datum))
-		(macro
-		 (cond
-		  ((eq type 'macro) datum)
-		  ;; In parsed keywords and associated node
-		  ;; properties, force macro recognition.
-		  ((or (and (eq type 'keyword)
-			    (member (org-element-property :key datum) keywords))
-		       (and (eq type 'node-property)
-			    (string-match-p properties-regexp
-					    (org-element-property :key datum))))
-		   (save-excursion
-		     (goto-char (match-beginning 0))
-		     (org-element-macro-parser))))))
-	   (when macro
-	     (let* ((value (org-macro-expand macro templates))
-		    (begin (org-element-property :begin macro))
-		    (signature (list begin
-				     macro
-				     (org-element-property :args macro))))
-	       ;; Avoid circular dependencies by checking if the same
-	       ;; macro with the same arguments is expanded at the
-	       ;; same position twice.
-	       (cond ((member signature record)
-		      (error "Circular macro expansion: %s"
-			     (org-element-property :key macro)))
-		     (value
-		      (push signature record)
-		      (delete-region
-		       begin
-		       ;; Preserve white spaces after the macro.
-		       (progn (goto-char (org-element-property :end macro))
-			      (skip-chars-backward " \t")
-			      (point)))
-		      ;; Leave point before replacement in case of
-		      ;; recursive expansions.
-		      (save-excursion (insert value)))
-		     (finalize
-		      (error "Undefined Org macro: %s; aborting"
-			     (org-element-property :key macro))))))))))))
-
-(defun org-macro-escape-arguments (&rest args)
-  "Build macro's arguments string from ARGS.
-ARGS are strings.  Return value is a string with arguments
-properly escaped and separated with commas.  This is the opposite
-of `org-macro-extract-arguments'."
-  (let ((s ""))
-    (dolist (arg (reverse args) (substring s 1))
-      (setq s
-	    (concat
-	     ","
-	     (replace-regexp-in-string
-	      "\\(\\\\*\\),"
-	      (lambda (m)
-		(concat (make-string (1+ (* 2 (length (match-string 1 m)))) ?\\)
-			","))
-	      ;; If a non-terminal argument ends on backslashes, make
-	      ;; sure to also escape them as they will be followed by
-	      ;; a comma.
-	      (concat arg (and (not (equal s ""))
-			       (string-match "\\\\+\\'" arg)
-			       (match-string 0 arg)))
-	      nil t)
-	     s)))))
-
-(defun org-macro-extract-arguments (s)
-  "Extract macro arguments from string S.
-S is a string containing comma separated values properly escaped.
-Return a list of arguments, as strings.  This is the opposite of
-`org-macro-escape-arguments'."
-  ;; Do not use `org-split-string' since empty strings are
-  ;; meaningful here.
-  (split-string
-   (replace-regexp-in-string
-    "\\(\\\\*\\),"
-    (lambda (str)
-      (let ((len (length (match-string 1 str))))
-	(concat (make-string (/ len 2) ?\\)
-		(if (zerop (mod len 2)) "\000" ","))))
-    s nil t)
-   "\000"))
-
-
-;;; Helper functions and variables for internal macros
-
-(defun org-macro--vc-modified-time (file)
-  (save-window-excursion
-    (when (vc-backend file)
-      (let ((buf (get-buffer-create " *org-vc*"))
-	    (case-fold-search t)
-	    date)
-	(unwind-protect
-	    (progn
-	      (vc-call print-log file buf nil nil 1)
-	      (with-current-buffer buf
-		(vc-exec-after
-		 (lambda ()
-		   (goto-char (point-min))
-		   (when (re-search-forward "Date:?[ \t]*" nil t)
-		     (let ((time (parse-time-string
-				  (buffer-substring
-				   (point) (line-end-position)))))
-		       (when (cl-some #'identity time)
-			 (setq date (apply #'encode-time time))))))))
-	      (let ((proc (get-buffer-process buf)))
-		(while (and proc (accept-process-output proc .5 nil t)))))
-	  (kill-buffer buf))
-	date))))
-
-(defvar org-macro--counter-table nil
-  "Hash table containing counter value per name.")
-
-(defun org-macro--counter-initialize ()
-  "Initialize `org-macro--counter-table'."
-  (setq org-macro--counter-table (make-hash-table :test #'equal)))
-
-(defun org-macro--counter-increment (name &optional action)
-  "Increment counter NAME.
-NAME is a string identifying the counter.
-
-When non-nil, optional argument ACTION is a string.
-
-If the string is \"-\", keep the NAME counter at its current
-value, i.e. do not increment.
-
-If the string represents an integer, set the counter to this number.
-
-Any other non-empty string resets the counter to 1."
-  (let ((name-trimmed (org-trim name))
-        (action-trimmed (when (org-string-nw-p action)
-                          (org-trim action))))
-    (puthash name-trimmed
-             (cond ((not (org-string-nw-p action-trimmed))
-                    (1+ (gethash name-trimmed org-macro--counter-table 0)))
-                   ((string= "-" action-trimmed)
-                    (gethash name-trimmed org-macro--counter-table 1))
-                   ((string-match-p "\\`[0-9]+\\'" action-trimmed)
-                    (string-to-number action-trimmed))
-                   (t 1))
-             org-macro--counter-table)))
-
-
-(provide 'org-macro)
-;;; org-macro.el ends here
diff --git a/elpa/org-9.1.14/org-macro.elc b/elpa/org-9.1.14/org-macro.elc
deleted file mode 100644
index 2491103..0000000
--- a/elpa/org-9.1.14/org-macro.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-macs.el b/elpa/org-9.1.14/org-macs.el
deleted file mode 100644
index 510ece1..0000000
--- a/elpa/org-9.1.14/org-macs.el
+++ /dev/null
@@ -1,429 +0,0 @@
-;;; org-macs.el --- Top-level Definitions for Org -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains macro definitions, defsubst definitions, other
-;; stuff needed for compilation and top-level forms in Org mode, as
-;; well lots of small functions that are not Org mode specific but
-;; simply generally useful stuff.
-
-;;; Code:
-
-(defmacro org-with-gensyms (symbols &rest body)
-  (declare (debug (sexp body)) (indent 1))
-  `(let ,(mapcar (lambda (s)
-		   `(,s (make-symbol (concat "--" (symbol-name ',s)))))
-                 symbols)
-     ,@body))
-
-(defun org-string-nw-p (s)
-  "Return S if S is a string containing a non-blank character.
-Otherwise, return nil."
-  (and (stringp s)
-       (string-match-p "[^ \r\t\n]" s)
-       s))
-
-(defun org-split-string (string &optional separators)
-  "Splits STRING into substrings at SEPARATORS.
-
-SEPARATORS is a regular expression.  When nil, it defaults to
-\"[ \f\t\n\r\v]+\".
-
-Unlike `split-string', matching SEPARATORS at the beginning and
-end of string are ignored."
-  (let ((separators (or separators "[ \f\t\n\r\v]+")))
-    (when (string-match (concat "\\`" separators) string)
-      (setq string (replace-match "" nil nil string)))
-    (when (string-match (concat separators "\\'") string)
-      (setq string (replace-match "" nil nil string)))
-    (split-string string separators)))
-
-(defun org-string-display (string)
-  "Return STRING as it is displayed in the current buffer.
-This function takes into consideration `invisible' and `display'
-text properties."
-  (let* ((build-from-parts
-	  (lambda (s property filter)
-	    ;; Build a new string out of string S.  On every group of
-	    ;; contiguous characters with the same PROPERTY value,
-	    ;; call FILTER on the properties list at the beginning of
-	    ;; the group.  If it returns a string, replace the
-	    ;; characters in the group with it.  Otherwise, preserve
-	    ;; those characters.
-	    (let ((len (length s))
-		  (new "")
-		  (i 0)
-		  (cursor 0))
-	      (while (setq i (text-property-not-all i len property nil s))
-		(let ((end (next-single-property-change i property s len))
-		      (value (funcall filter (text-properties-at i s))))
-		  (when value
-		    (setq new (concat new (substring s cursor i) value))
-		    (setq cursor end))
-		  (setq i end)))
-	      (concat new (substring s cursor)))))
-	 (prune-invisible
-	  (lambda (s)
-	    (funcall build-from-parts s 'invisible
-		     (lambda (props)
-		       ;; If `invisible' property in PROPS means text
-		       ;; is to be invisible, return the empty string.
-		       ;; Otherwise return nil so that the part is
-		       ;; skipped.
-		       (and (or (eq t buffer-invisibility-spec)
-				(assoc-string (plist-get props 'invisible)
-					      buffer-invisibility-spec))
-			    "")))))
-	 (replace-display
-	  (lambda (s)
-	    (funcall build-from-parts s 'display
-		     (lambda (props)
-		       ;; If there is any string specification in
-		       ;; `display' property return it.  Also attach
-		       ;; other text properties on the part to that
-		       ;; string (face...).
-		       (let* ((display (plist-get props 'display))
-			      (value (if (stringp display) display
-				       (cl-some #'stringp display))))
-			 (when value
-			   (apply #'propertize
-				  ;; Displayed string could contain
-				  ;; invisible parts, but no nested
-				  ;; display.
-				  (funcall prune-invisible value)
-				  'display
-				  (and (not (stringp display))
-				       (cl-remove-if #'stringp display))
-				  props))))))))
-    ;; `display' property overrides `invisible' one.  So we first
-    ;; replace characters with `display' property.  Then we remove
-    ;; invisible characters.
-    (funcall prune-invisible (funcall replace-display string))))
-
-(defun org-string-width (string)
-  "Return width of STRING when displayed in the current buffer.
-Unlike `string-width', this function takes into consideration
-`invisible' and `display' text properties."
-  (string-width (org-string-display string)))
-
-(defun org-not-nil (v)
-  "If V not nil, and also not the string \"nil\", then return V.
-Otherwise return nil."
-  (and v (not (equal v "nil")) v))
-
-(defmacro org-preserve-lc (&rest body)
-  (declare (debug (body)))
-  (org-with-gensyms (line col)
-    `(let ((,line (org-current-line))
-	   (,col (current-column)))
-       (unwind-protect
-	   (progn ,@body)
-	 (org-goto-line ,line)
-	 (org-move-to-column ,col)))))
-
-;; Use `org-with-silent-modifications' to ignore cosmetic changes and
-;; `org-unmodified' to ignore real text modifications
-(defmacro org-unmodified (&rest body)
-  "Run BODY while preserving the buffer's `buffer-modified-p' state."
-  (declare (debug (body)))
-  (org-with-gensyms (was-modified)
-    `(let ((,was-modified (buffer-modified-p)))
-       (unwind-protect
-           (let ((buffer-undo-list t)
-		 (inhibit-modification-hooks t))
-	     ,@body)
-	 (set-buffer-modified-p ,was-modified)))))
-
-(defmacro org-without-partial-completion (&rest body)
-  (declare (debug (body)))
-  `(if (and (boundp 'partial-completion-mode)
-	    partial-completion-mode
-	    (fboundp 'partial-completion-mode))
-       (unwind-protect
-	   (progn
-	     (partial-completion-mode -1)
-	     ,@body)
-	 (partial-completion-mode 1))
-     ,@body))
-
-(defmacro org-with-point-at (pom &rest body)
-  "Move to buffer and point of point-or-marker POM for the duration of BODY."
-  (declare (debug (form body)) (indent 1))
-  (org-with-gensyms (mpom)
-    `(let ((,mpom ,pom))
-       (save-excursion
-	 (if (markerp ,mpom) (set-buffer (marker-buffer ,mpom)))
-	 (org-with-wide-buffer
-	  (goto-char (or ,mpom (point)))
-	  ,@body)))))
-
-(defmacro org-with-remote-undo (buffer &rest body)
-  "Execute BODY while recording undo information in two buffers."
-  (declare (debug (form body)) (indent 1))
-  (org-with-gensyms (cline cmd buf1 buf2 undo1 undo2 c1 c2)
-    `(let ((,cline (org-current-line))
-	   (,cmd this-command)
-	   (,buf1 (current-buffer))
-	   (,buf2 ,buffer)
-	   (,undo1 buffer-undo-list)
-	   (,undo2 (with-current-buffer ,buffer buffer-undo-list))
-	   ,c1 ,c2)
-       ,@body
-       (when org-agenda-allow-remote-undo
-	 (setq ,c1 (org-verify-change-for-undo
-		    ,undo1 (with-current-buffer ,buf1 buffer-undo-list))
-	       ,c2 (org-verify-change-for-undo
-		    ,undo2 (with-current-buffer ,buf2 buffer-undo-list)))
-	 (when (or ,c1 ,c2)
-	   ;; make sure there are undo boundaries
-	   (and ,c1 (with-current-buffer ,buf1 (undo-boundary)))
-	   (and ,c2 (with-current-buffer ,buf2 (undo-boundary)))
-	   ;; remember which buffer to undo
-	   (push (list ,cmd ,cline ,buf1 ,c1 ,buf2 ,c2)
-		 org-agenda-undo-list))))))
-
-(defmacro org-no-read-only (&rest body)
-  "Inhibit read-only for BODY."
-  (declare (debug (body)))
-  `(let ((inhibit-read-only t)) ,@body))
-
-(defconst org-rm-props '(invisible t face t keymap t intangible t mouse-face t
-				   rear-nonsticky t mouse-map t fontified t
-				   org-emphasis t)
-  "Properties to remove when a string without properties is wanted.")
-
-(defsubst org-no-properties (s &optional restricted)
-  "Remove all text properties from string S.
-When RESTRICTED is non-nil, only remove the properties listed
-in `org-rm-props'."
-  (if restricted (remove-text-properties 0 (length s) org-rm-props s)
-    (set-text-properties 0 (length s) nil s))
-  s)
-
-(defsubst org-get-alist-option (option key)
-  (cond ((eq key t) t)
-	((eq option t) t)
-	((assoc key option) (cdr (assoc key option)))
-	(t (let ((r (cdr (assq 'default option))))
-	     (if (listp r) (delq nil r) r)))))
-
-(defsubst org-check-external-command (cmd &optional use no-error)
-  "Check if external program CMD for USE exists, error if not.
-When the program does exist, return its path.
-When it does not exist and NO-ERROR is set, return nil.
-Otherwise, throw an error.  The optional argument USE can describe what this
-program is needed for, so that the error message can be more informative."
-  (or (executable-find cmd)
-      (if no-error
-	  nil
-	(error "Can't find `%s'%s" cmd
-	       (if use (format " (%s)" use) "")))))
-
-(defsubst org-last (list)
-  "Return the last element of LIST."
-  (car (last list)))
-
-(defun org-let (list &rest body)
-  (eval (cons 'let (cons list body))))
-(put 'org-let 'lisp-indent-function 1)
-
-(defun org-let2 (list1 list2 &rest body)
-  (eval (cons 'let (cons list1 (list (cons 'let (cons list2 body)))))))
-(put 'org-let2 'lisp-indent-function 2)
-
-(defsubst org-call-with-arg (command arg)
-  "Call COMMAND interactively, but pretend prefix arg was ARG."
-  (let ((current-prefix-arg arg)) (call-interactively command)))
-
-(defsubst org-current-line (&optional pos)
-  (save-excursion
-    (and pos (goto-char pos))
-    ;; works also in narrowed buffer, because we start at 1, not point-min
-    (+ (if (bolp) 1 0) (count-lines 1 (point)))))
-
-(defsubst org-goto-line (N)
-  (save-restriction
-    (widen)
-    (goto-char (point-min))
-    (forward-line (1- N))))
-
-(defsubst org-current-line-string (&optional to-here)
-  (buffer-substring (point-at-bol) (if to-here (point) (point-at-eol))))
-
-(defsubst org-pos-in-match-range (pos n)
-  (and (match-beginning n)
-       (<= (match-beginning n) pos)
-       (>= (match-end n) pos)))
-
-(defun org-match-line (regexp)
-  "Match REGEXP at the beginning of the current line."
-  (save-excursion
-    (beginning-of-line)
-    (looking-at regexp)))
-
-(defun org-plist-delete (plist property)
-  "Delete PROPERTY from PLIST.
-This is in contrast to merely setting it to 0."
-  (let (p)
-    (while plist
-      (if (not (eq property (car plist)))
-	  (setq p (plist-put p (car plist) (nth 1 plist))))
-      (setq plist (cddr plist)))
-    p))
-
-(defmacro org-save-outline-visibility (use-markers &rest body)
-  "Save and restore outline visibility around BODY.
-If USE-MARKERS is non-nil, use markers for the positions.
-This means that the buffer may change while running BODY,
-but it also means that the buffer should stay alive
-during the operation, because otherwise all these markers will
-point nowhere."
-  (declare (debug (form body)) (indent 1))
-  (org-with-gensyms (data)
-    `(let ((,data (org-outline-overlay-data ,use-markers)))
-       (unwind-protect
-	   (prog1 (progn ,@body)
-	     (org-set-outline-overlay-data ,data))
-	 (when ,use-markers
-	   (dolist (c ,data)
-	     (when (markerp (car c)) (move-marker (car c) nil))
-	     (when (markerp (cdr c)) (move-marker (cdr c) nil))))))))
-
-(defmacro org-with-wide-buffer (&rest body)
-  "Execute body while temporarily widening the buffer."
-  (declare (debug (body)))
-  `(save-excursion
-     (save-restriction
-       (widen)
-       ,@body)))
-
-(defmacro org-with-limited-levels (&rest body)
-  "Execute BODY with limited number of outline levels."
-  (declare (debug (body)))
-  `(progn
-     (defvar org-called-with-limited-levels)
-     (defvar org-outline-regexp)
-     (defvar outline-regexp)
-     (defvar org-outline-regexp-bol)
-     (let* ((org-called-with-limited-levels t)
-            (org-outline-regexp (org-get-limited-outline-regexp))
-            (outline-regexp org-outline-regexp)
-            (org-outline-regexp-bol (concat "^" org-outline-regexp)))
-       ,@body)))
-
-(defvar org-outline-regexp) ; defined in org.el
-(defvar org-odd-levels-only) ; defined in org.el
-(defvar org-inlinetask-min-level) ; defined in org-inlinetask.el
-(defun org-get-limited-outline-regexp ()
-  "Return outline-regexp with limited number of levels.
-The number of levels is controlled by `org-inlinetask-min-level'"
-  (cond ((not (derived-mode-p 'org-mode))
-	 outline-regexp)
-	((not (featurep 'org-inlinetask))
-	 org-outline-regexp)
-	(t
-	 (let* ((limit-level (1- org-inlinetask-min-level))
-		(nstars (if org-odd-levels-only
-			    (1- (* limit-level 2))
-			  limit-level)))
-	   (format "\\*\\{1,%d\\} " nstars)))))
-
-(defmacro org-eval-in-environment (environment form)
-  (declare (debug (form form)) (indent 1))
-  `(eval (list 'let ,environment ',form)))
-
-(defun org-make-parameter-alist (flat)
-  "Return alist based on FLAT.
-FLAT is a list with alternating symbol names and values.  The
-returned alist is a list of lists with the symbol name in car and
-the value in cdr."
-  (when flat
-    (cons (list (car flat) (cadr flat))
-	  (org-make-parameter-alist (cddr flat)))))
-
-;;;###autoload
-(defmacro org-load-noerror-mustsuffix (file)
-  "Load FILE with optional arguments NOERROR and MUSTSUFFIX."
-  `(load ,file 'noerror nil nil 'mustsuffix))
-
-(defun org-unbracket-string (pre post string)
-  "Remove PRE/POST from the beginning/end of STRING.
-Both PRE and POST must be pre-/suffixes of STRING, or neither is
-removed."
-  (if (and (string-prefix-p pre string)
-	   (string-suffix-p post string))
-      (substring string (length pre) (- (length post)))
-    string))
-
-(defun org-read-function (prompt &optional allow-empty?)
-  "Prompt for a function.
-If ALLOW-EMPTY? is non-nil, return nil rather than raising an
-error when the user input is empty."
-  (let ((func (completing-read prompt obarray #'fboundp t)))
-    (cond ((not (string= func ""))
-	   (intern func))
-	  (allow-empty? nil)
-	  (t (user-error "Empty input is not valid")))))
-
-(defconst org-unique-local-variables
-  '(org-element--cache
-    org-element--cache-objects
-    org-element--cache-sync-keys
-    org-element--cache-sync-requests
-    org-element--cache-sync-timer)
-  "List of local variables that cannot be transferred to another buffer.")
-
-(defun org-get-local-variables ()
-  "Return a list of all local variables in an Org mode buffer."
-  (delq nil
-	(mapcar
-	 (lambda (x)
-	   (let* ((binding (if (symbolp x) (list x) (list (car x) (cdr x))))
-		  (name (car binding)))
-	     (and (not (get name 'org-state))
-		  (not (memq name org-unique-local-variables))
-		  (string-match-p
-		   "\\`\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|\
-auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
-		   (symbol-name name))
-		  binding)))
-	 (with-temp-buffer
-	   (org-mode)
-	   (buffer-local-variables)))))
-
-(defun org-clone-local-variables (from-buffer &optional regexp)
-  "Clone local variables from FROM-BUFFER.
-Optional argument REGEXP selects variables to clone."
-  (dolist (pair (buffer-local-variables from-buffer))
-    (pcase pair
-      (`(,name . ,value)		;ignore unbound variables
-       (when (and (not (memq name org-unique-local-variables))
-		  (or (null regexp) (string-match-p regexp (symbol-name name))))
-	 (ignore-errors (set (make-local-variable name) value)))))))
-
-
-(provide 'org-macs)
-
-;;; org-macs.el ends here
diff --git a/elpa/org-9.1.14/org-macs.elc b/elpa/org-9.1.14/org-macs.elc
deleted file mode 100644
index f2d0621..0000000
--- a/elpa/org-9.1.14/org-macs.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-mhe.el b/elpa/org-9.1.14/org-mhe.el
deleted file mode 100644
index e74a9ee..0000000
--- a/elpa/org-9.1.14/org-mhe.el
+++ /dev/null
@@ -1,219 +0,0 @@
-;;; org-mhe.el --- Support for Links to MH-E Messages -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Thomas Baumann <thomas dot baumann at ch dot tum dot de>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements links to MH-E messages from within Org.
-;; Org mode loads this module by default - if this is not what you want,
-;; configure the variable `org-modules'.
-
-;;; Code:
-
-(require 'org-macs)
-(require 'org)
-
-;; Customization variables
-
-(defcustom org-mhe-search-all-folders nil
-  "Non-nil means the search for the mh-message may extend to all folders.
-When non-nil, the search for a message will extend to all other
-folders if it cannot be found in the folder given in the link.
-Searching all folders may be slow with the default pick based
-search but is very efficient with one of the other search engines
-supported by MH-E."
-  :group 'org-link-follow
-  :type 'boolean)
-
-;; Declare external functions and variables
-(declare-function mh-display-msg "mh-show" (msg-num folder-name))
-(declare-function mh-find-path "mh-utils" ())
-(declare-function mh-get-header-field "mh-utils" (field))
-(declare-function mh-get-msg-num "mh-utils" (error-if-no-message))
-(declare-function mh-header-display "mh-show" ())
-(declare-function mh-index-previous-folder "mh-search" ())
-(declare-function mh-normalize-folder-name "mh-utils"
-		  (folder &optional empty-string-okay dont-remove-trailing-slash
-			  return-nil-if-folder-empty))
-(declare-function mh-search "mh-search"
-		  (folder search-regexp &optional redo-search-flag
-			  window-config))
-(declare-function mh-search-choose "mh-search" (&optional searcher))
-(declare-function mh-show "mh-show" (&optional message redisplay-flag))
-(declare-function mh-show-buffer-message-number "mh-comp" (&optional buffer))
-(declare-function mh-show-header-display "mh-show" t t)
-(declare-function mh-show-msg "mh-show" (msg))
-(declare-function mh-show-show "mh-show" t t)
-(declare-function mh-visit-folder "mh-folder" (folder &optional
-						      range index-data))
-(defvar mh-progs)
-(defvar mh-current-folder)
-(defvar mh-show-folder-buffer)
-(defvar mh-index-folder)
-(defvar mh-searcher)
-(defvar mh-search-regexp-builder)
-
-;; Install the link type
-(org-link-set-parameters "mhe" :follow #'org-mhe-open :store #'org-mhe-store-link)
-
-;; Implementation
-(defun org-mhe-store-link ()
-  "Store a link to an MH-E folder or message."
-  (when (or (eq major-mode 'mh-folder-mode)
-	    (eq major-mode 'mh-show-mode))
-    (save-window-excursion
-      (let* ((from (org-mhe-get-header "From:"))
-	     (to (org-mhe-get-header "To:"))
-	     (message-id (org-mhe-get-header "Message-Id:"))
-	     (subject (org-mhe-get-header "Subject:"))
-	     (date (org-mhe-get-header "Date:"))
-	     link desc)
-	(org-store-link-props :type "mh" :from from :to to :date date
-			      :subject subject :message-id message-id)
-	(setq desc (org-email-link-description))
-	(setq link (concat "mhe:" (org-mhe-get-message-real-folder) "#"
-			   (org-unbracket-string "<" ">" message-id)))
-	(org-add-link-props :link link :description desc)
-	link))))
-
-(defun org-mhe-open (path)
-  "Follow an MH-E message link specified by PATH."
-  (let (folder article)
-    (if (not (string-match "\\`\\([^#]+\\)\\(#\\(.*\\)\\)?" path))
-	(error "Error in MH-E link"))
-    (setq folder (match-string 1 path)
-	  article (match-string 3 path))
-    (org-mhe-follow-link folder article)))
-
-;;; mh-e integration based on planner-mode
-(defun org-mhe-get-message-real-folder ()
-  "Return the name of the real folder for the current message.
-So if you use sequences, it will now work."
-  (save-excursion
-    (let* ((folder
-	    (if (eq major-mode 'mh-folder-mode)
-		mh-current-folder
-	      ;; Refer to the show buffer
-	      mh-show-folder-buffer))
-	   (end-index
-	    (if (boundp 'mh-index-folder)
-		(min (length mh-index-folder) (length folder))))
-	   )
-      ;; a simple test on mh-index-data does not work, because
-      ;; mh-index-data is always nil in a show buffer.
-      (if (and (boundp 'mh-index-folder)
-	       (string= mh-index-folder (substring folder 0 end-index)))
-	  (if (eq major-mode 'mh-show-mode)
-	      (save-window-excursion
-		(let (pop-up-frames)
-		  (when (buffer-live-p (get-buffer folder))
-		    (progn
-		      (pop-to-buffer folder)
-		      (org-mhe-get-message-folder-from-index)
-		      )
-		    )))
-	    (org-mhe-get-message-folder-from-index)
-	    )
-	folder
-	)
-      )))
-
-(defun org-mhe-get-message-folder-from-index ()
-  "Return the name of the message folder in an index folder buffer."
-  (save-excursion
-    (mh-index-previous-folder)
-    (if (re-search-forward "^\\(+.*\\)$" nil t)
-	(message "%s" (match-string 1)))))
-
-(defun org-mhe-get-message-folder ()
-  "Return the name of the current message folder.
-Be careful if you use sequences."
-  (save-excursion
-    (if (eq major-mode 'mh-folder-mode)
-	mh-current-folder
-      ;; Refer to the show buffer
-      mh-show-folder-buffer)))
-
-(defun org-mhe-get-message-num ()
-  "Return the number of the current message.
-Be careful if you use sequences."
-  (save-excursion
-    (if (eq major-mode 'mh-folder-mode)
-	(mh-get-msg-num nil)
-      ;; Refer to the show buffer
-      (mh-show-buffer-message-number))))
-
-(defun org-mhe-get-header (header)
-  "Return the field for HEADER of the message in folder mode.
-This will create a show buffer for the corresponding message.  If
-you have a better idea of how to do this then please let us know."
-  (let* ((folder (org-mhe-get-message-folder))
-	 (num (org-mhe-get-message-num))
-	 (buffer (get-buffer-create (concat "show-" folder)))
-	 (header-field))
-    (with-current-buffer buffer
-      (mh-display-msg num folder)
-      (if (eq major-mode 'mh-folder-mode)
-	  (mh-header-display)
-	(mh-show-header-display))
-      (set-buffer buffer)
-      (setq header-field (mh-get-header-field header))
-      (if (eq major-mode 'mh-folder-mode)
-	  (mh-show)
-	(mh-show-show))
-      (org-trim header-field))))
-
-(defun org-mhe-follow-link (folder article)
-  "Follow an MH-E link to FOLDER and ARTICLE.
-If ARTICLE is nil FOLDER is shown.  If the configuration variable
-`org-mhe-search-all-folders' is t and `mh-searcher' is pick,
-ARTICLE is searched in all folders.  Indexed searches (swish++,
-namazu, and others supported by MH-E) will always search in all
-folders."
-  (require 'mh-e)
-  (require 'mh-search)
-  (require 'mh-utils)
-  (mh-find-path)
-  (if (not article)
-      (mh-visit-folder (mh-normalize-folder-name folder))
-    (mh-search-choose)
-    (if (eq mh-searcher 'pick)
-	(progn
-	  (setq article (org-add-angle-brackets article))
-	  (mh-search folder (list "--message-id" article))
-	  (when (and org-mhe-search-all-folders
-		     (not (org-mhe-get-message-real-folder)))
-	    (kill-buffer)
-	    (mh-search "+" (list "--message-id" article))))
-      (if mh-search-regexp-builder
-	  (mh-search "+" (funcall mh-search-regexp-builder
-				  (list (cons 'message-id article))))
-	(mh-search "+" article)))
-    (if (org-mhe-get-message-real-folder)
-	(mh-show-msg 1)
-      (kill-buffer)
-      (error "Message not found"))))
-
-(provide 'org-mhe)
-
-;;; org-mhe.el ends here
diff --git a/elpa/org-9.1.14/org-mhe.elc b/elpa/org-9.1.14/org-mhe.elc
deleted file mode 100644
index c76dc89..0000000
--- a/elpa/org-9.1.14/org-mhe.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-mobile.el b/elpa/org-9.1.14/org-mobile.el
deleted file mode 100644
index cbf169f..0000000
--- a/elpa/org-9.1.14/org-mobile.el
+++ /dev/null
@@ -1,1115 +0,0 @@
-;;; org-mobile.el --- Code for Asymmetric Sync With a Mobile Device -*- lexical-binding: t; -*-
-;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-;;
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-;;
-;; This file contains the code to interact with Richard Moreland's
-;; iPhone application MobileOrg, as well as with the Android version
-;; by Matthew Jones.  This code is documented in Appendix B of the Org
-;; manual.  The code is not specific for the iPhone and Android - any
-;; external viewer/flagging/editing application that uses the same
-;; conventions could be used.
-
-(require 'org)
-(require 'org-agenda)
-(require 'cl-lib)
-
-(defvar org-agenda-keep-restricted-file-list)
-
-;;; Code:
-
-(defgroup org-mobile nil
-  "Options concerning support for a viewer/editor on a mobile device."
-  :tag "Org Mobile"
-  :group 'org)
-
-(defcustom org-mobile-files '(org-agenda-files)
-  "Files to be staged for MobileOrg.
-This is basically a list of files and directories.  Files will be staged
-directly.  Directories will be search for files with the extension `.org'.
-In addition to this, the list may also contain the following symbols:
-
-org-agenda-files
-     This means include the complete, unrestricted list of files given in
-     the variable `org-agenda-files'.
-org-agenda-text-search-extra-files
-     Include the files given in the variable
-     `org-agenda-text-search-extra-files'"
-  :group 'org-mobile
-  :type '(list :greedy t
-	       (option (const :tag "org-agenda-files" org-agenda-files))
-	       (option (const :tag "org-agenda-text-search-extra-files"
-			      org-agenda-text-search-extra-files))
-	       (repeat :inline t :tag "Additional files"
-		       (file))))
-
-(defcustom org-mobile-files-exclude-regexp ""
-  "A regexp to exclude files from `org-mobile-files'."
-  :group 'org-mobile
-  :version "24.1"
-  :type 'regexp)
-
-(defcustom org-mobile-directory ""
-  "The WebDAV directory where the interaction with the mobile takes place."
-  :group 'org-mobile
-  :type 'directory)
-
-(defcustom org-mobile-allpriorities "A B C"
-  "Default set of priority cookies for the index file."
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string
-  :group 'org-mobile)
-
-(defcustom org-mobile-use-encryption nil
-  "Non-nil means keep only encrypted files on the WebDAV server.
-Encryption uses AES-256, with a password given in
-`org-mobile-encryption-password'.
-When nil, plain files are kept on the server.
-Turning on encryption requires setting the same password in the MobileOrg
-application.  Before turning this on, check of MobileOrg does already
-support it - at the time of this writing it did not yet."
-  :group 'org-mobile
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-mobile-encryption-tempfile "~/orgtmpcrypt"
-  "File that is being used as a temporary file for encryption.
-This must be local file on your local machine (not on the WebDAV server).
-You might want to put this file into a directory where only you have access."
-  :group 'org-mobile
-  :version "24.1"
-  :type 'directory)
-
-(defcustom org-mobile-encryption-password ""
-  "Password for encrypting files uploaded to the server.
-This is a single password which is used for AES-256 encryption.  The same
-password must also be set in the MobileOrg application.  All Org files,
-including mobileorg.org will be encrypted using this password.
-
-SECURITY CONSIDERATIONS:
-
-Note that, when Org runs the encryption commands, the password could
-be visible briefly on your system with the `ps' command.  So this method is
-only intended to keep the files secure on the server, not on your own machine.
-
-Also, if you set this variable in an init file (.emacs or .emacs.d/init.el
-or custom.el...) and if that file is stored in a way so that other can read
-it, this also limits the security of this approach.  You can also leave
-this variable empty - Org will then ask for the password once per Emacs
-session."
-  :group 'org-mobile
-  :version "24.1"
-  :type '(string :tag "Password"))
-
-(defvar org-mobile-encryption-password-session nil)
-
-(defun org-mobile-encryption-password ()
-  (or (org-string-nw-p org-mobile-encryption-password)
-      (org-string-nw-p org-mobile-encryption-password-session)
-      (setq org-mobile-encryption-password-session
-	    (read-passwd "Password for MobileOrg: " t))))
-
-(defcustom org-mobile-inbox-for-pull "~/org/from-mobile.org"
-  "The file where captured notes and flags will be appended to.
-During the execution of `org-mobile-pull', the file
-`org-mobile-capture-file' will be emptied it's contents have
-been appended to the file given here.  This file should be in
-`org-directory', and not in the staging area or on the web server."
-  :group 'org-mobile
-  :type 'file)
-
-(defconst org-mobile-capture-file "mobileorg.org"
-  "The capture file where the mobile stores captured notes and flags.
-This should not be changed, because MobileOrg assumes this name.")
-
-(defcustom org-mobile-index-file "index.org"
-  "The index file with links to all Org files that should be loaded by MobileOrg.
-Relative to `org-mobile-directory'.  The Address field in the MobileOrg setup
-should point to this file."
-  :group 'org-mobile
-  :type 'file)
-
-(defcustom org-mobile-agendas 'all
-  "The agendas that should be pushed to MobileOrg.
-Allowed values:
-
-default  the weekly agenda and the global TODO list
-custom   all custom agendas defined by the user
-all      the custom agendas and the default ones
-list     a list of selection key(s) as string."
-  :group 'org-mobile
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Default Agendas" default)
-	  (const :tag "Custom Agendas" custom)
-	  (const :tag "Default and Custom Agendas" all)
-	  (repeat :tag "Selected"
-		  (string :tag "Selection Keys"))))
-
-(defcustom org-mobile-force-id-on-agenda-items t
-  "Non-nil means make all agenda items carry an ID."
-  :group 'org-mobile
-  :type 'boolean)
-
-(defcustom org-mobile-force-mobile-change nil
-  "Non-nil means force the change made on the mobile device.
-So even if there have been changes to the computer version of the entry,
-force the new value set on the mobile.
-When nil, mark the entry from the mobile with an error message.
-Instead of nil or t, this variable can also be a list of symbols, indicating
-the editing types for which the mobile version should always dominate."
-  :group 'org-mobile
-  :type '(choice
-	  (const :tag "Always" t)
-	  (const :tag "Never" nil)
-	  (set :greedy t :tag "Specify"
-	       (const todo)
-	       (const tags)
-	       (const priority)
-	       (const heading)
-	       (const body))))
-
-(defcustom org-mobile-checksum-binary (or (executable-find "shasum")
-					  (executable-find "sha1sum")
-					  (executable-find "md5sum")
-					  (executable-find "md5"))
-  "Executable used for computing checksums of agenda files."
-  :group 'org-mobile
-  :type 'string)
-
-(defvar org-mobile-pre-push-hook nil
-  "Hook run before running `org-mobile-push'.
-This could be used to clean up `org-mobile-directory', for example to
-remove files that used to be included in the agenda but no longer are.
-The presence of such files would not really be a problem, but after time
-they may accumulate.")
-
-(defvar org-mobile-post-push-hook nil
-  "Hook run after running `org-mobile-push'.
-If Emacs does not have direct write access to the WebDAV directory used
-by the mobile device, this hook should be used to copy all files from the
-local staging directory `org-mobile-directory' to the WebDAV directory,
-for example using `rsync' or `scp'.")
-
-(defvar org-mobile-pre-pull-hook nil
-  "Hook run before executing `org-mobile-pull'.
-If Emacs does not have direct write access to the WebDAV directory used
-by the mobile device, this hook should be used to copy the capture file
-`mobileorg.org' from the WebDAV location to the local staging
-directory `org-mobile-directory'.")
-
-(defvar org-mobile-post-pull-hook nil
-  "Hook run after running `org-mobile-pull', only if new items were found.
-If Emacs does not have direct write access to the WebDAV directory used
-by the mobile device, this hook should be used to copy the emptied
-capture file `mobileorg.org' back to the WebDAV directory, for example
-using `rsync' or `scp'.")
-
-(defconst org-mobile-action-alist '(("edit" . org-mobile-edit))
-  "Alist with flags and actions for mobile sync.
-When flagging an entry, MobileOrg will create entries that look like
-
-  * F(action:data)  [[id:entry-id][entry title]]
-
-This alist defines that the ACTION in the parentheses of F()
-should mean, i.e. what action should be taken.  The :data part in
-the parenthesis is optional.  If present, the string after the
-colon will be passed to the action function as the first argument
-variable.
-
-The car of each elements of the alist is an actions string.  The
-cdr is a function that is called with the cursor on the headline
-of that entry.  It should accept three arguments, the :data part,
-the old and new values for the entry.")
-
-(defvar org-mobile-last-flagged-files nil
-  "List of files containing entries flagged in the latest pull.")
-
-(defvar org-mobile-files-alist nil)
-(defvar org-mobile-checksum-files nil)
-
-(defun org-mobile-prepare-file-lists ()
-  (setq org-mobile-files-alist (org-mobile-files-alist))
-  (setq org-mobile-checksum-files nil))
-
-(defun org-mobile-files-alist ()
-  "Expand the list in `org-mobile-files' to a list of existing files.
-Also exclude files matching `org-mobile-files-exclude-regexp'."
-  (let* ((include-archives
-	  (and (member 'org-agenda-text-search-extra-files org-mobile-files)
-	       (member 'agenda-archives	org-agenda-text-search-extra-files)
-	       t))
-	 (files
-	  (apply 'append
-		 (mapcar
-		  (lambda (f)
-		    (cond
-		     ((eq f 'org-agenda-files)
-		      (org-agenda-files	t include-archives))
-		     ((eq f 'org-agenda-text-search-extra-files)
-		      (delq 'agenda-archives
-			    (copy-sequence
-			     org-agenda-text-search-extra-files)))
-		     ((and (stringp f) (file-directory-p f))
-		      (directory-files f 'full "\\.org\\'"))
-		     ((and (stringp f) (file-exists-p f))
-		      (list f))
-		     (t nil)))
-		  org-mobile-files)))
-	 (files (delq
-		 nil
-		 (mapcar (lambda (f)
-			   (unless (and (not (string= org-mobile-files-exclude-regexp ""))
-					(string-match org-mobile-files-exclude-regexp f))
-			     (identity f)))
-			 files)))
-	 (orgdir-uname (file-name-as-directory (file-truename org-directory)))
-	 (orgdir-re (concat "\\`" (regexp-quote orgdir-uname)))
-	 uname seen rtn file link-name)
-    ;; Make the files unique, and determine the name under which they will
-    ;; be listed.
-    (while (setq file (pop files))
-      (if (not (file-name-absolute-p file))
-	  (setq file (expand-file-name file org-directory)))
-      (setq uname (file-truename file))
-      (unless (member uname seen)
-	(push uname seen)
-	(if (string-match orgdir-re uname)
-	    (setq link-name (substring uname (match-end 0)))
-	  (setq link-name (file-name-nondirectory uname)))
-	(push (cons file link-name) rtn)))
-    (nreverse rtn)))
-
-;;;###autoload
-(defun org-mobile-push ()
-  "Push the current state of Org affairs to the target directory.
-This will create the index file, copy all agenda files there, and also
-create all custom agenda views, for upload to the mobile phone."
-  (interactive)
-  (let ((org-agenda-buffer-name "*SUMO*")
-	(org-agenda-tag-filter org-agenda-tag-filter)
-	(org-agenda-redo-command org-agenda-redo-command))
-    (save-excursion
-      (save-restriction
-	(save-window-excursion
-	  (run-hooks 'org-mobile-pre-push-hook)
-	  (org-mobile-check-setup)
-	  (org-mobile-prepare-file-lists)
-	  (message "Creating agendas...")
-	  (let ((inhibit-redisplay t)
-		(org-agenda-files (mapcar 'car org-mobile-files-alist)))
-	    (org-mobile-create-sumo-agenda))
-	  (message "Creating agendas...done")
-	  (org-save-all-org-buffers) ; to save any IDs created by this process
-	  (message "Copying files...")
-	  (org-mobile-copy-agenda-files)
-	  (message "Writing index file...")
-	  (org-mobile-create-index-file)
-	  (message "Writing checksums...")
-	  (org-mobile-write-checksums)
-	  (run-hooks 'org-mobile-post-push-hook)))))
-  (org-agenda-maybe-redo)
-  (message "Files for mobile viewer staged"))
-
-(defvar org-mobile-before-process-capture-hook nil
-  "Hook that is run after content was moved to `org-mobile-inbox-for-pull'.
-The inbox file is visited by the current buffer, and the buffer is
-narrowed to the newly captured data.")
-
-;;;###autoload
-(defun org-mobile-pull ()
-  "Pull the contents of `org-mobile-capture-file' and integrate them.
-Apply all flagged actions, flag entries to be flagged and then call an
-agenda view showing the flagged items."
-  (interactive)
-  (org-mobile-check-setup)
-  (run-hooks 'org-mobile-pre-pull-hook)
-  (let ((insertion-marker (org-mobile-move-capture)))
-    (if (not (markerp insertion-marker))
-	(message "No new items")
-      (org-with-point-at insertion-marker
-	(save-restriction
-	  (narrow-to-region (point) (point-max))
-	  (run-hooks 'org-mobile-before-process-capture-hook)))
-      (org-with-point-at insertion-marker
-	(org-mobile-apply (point) (point-max)))
-      (move-marker insertion-marker nil)
-      (run-hooks 'org-mobile-post-pull-hook)
-      (when org-mobile-last-flagged-files
-	;; Make an agenda view of flagged entries, but only in the files
-	;; where stuff has been added.
-	(put 'org-agenda-files 'org-restrict org-mobile-last-flagged-files)
-	(let ((org-agenda-keep-restricted-file-list t))
-	  (org-agenda nil "?"))))))
-
-(defun org-mobile-check-setup ()
-  "Check if org-mobile-directory has been set up."
-  (org-mobile-cleanup-encryption-tempfile)
-  (unless (and org-directory
-	       (stringp org-directory)
-	       (string-match "\\S-" org-directory)
-	       (file-exists-p org-directory)
-	       (file-directory-p org-directory))
-    (error
-     "Please set `org-directory' to the directory where your org files live"))
-  (unless (and org-mobile-directory
-	       (stringp org-mobile-directory)
-	       (string-match "\\S-" org-mobile-directory)
-	       (file-exists-p org-mobile-directory)
-	       (file-directory-p org-mobile-directory))
-    (error
-     "Variable `org-mobile-directory' must point to an existing directory"))
-  (unless (and org-mobile-inbox-for-pull
-	       (stringp org-mobile-inbox-for-pull)
-	       (string-match "\\S-" org-mobile-inbox-for-pull)
-	       (file-exists-p
-		(file-name-directory org-mobile-inbox-for-pull)))
-    (error
-     "Variable `org-mobile-inbox-for-pull' must point to a file in an existing directory"))
-  (unless (and org-mobile-checksum-binary
-	       (string-match "\\S-" org-mobile-checksum-binary))
-    (error "No executable found to compute checksums"))
-  (when org-mobile-use-encryption
-    (unless (string-match "\\S-" (org-mobile-encryption-password))
-      (error
-       "To use encryption, you must set `org-mobile-encryption-password'"))
-    (unless (file-writable-p org-mobile-encryption-tempfile)
-      (error "Cannot write to encryption tempfile %s"
-	     org-mobile-encryption-tempfile))
-    (unless (executable-find "openssl")
-      (error "OpenSSL is needed to encrypt files"))))
-
-(defun org-mobile-create-index-file ()
-  "Write the index file in the WebDAV directory."
-  (let ((files-alist (sort (copy-sequence org-mobile-files-alist)
-			   (lambda (a b) (string< (cdr a) (cdr b)))))
-	(def-todo (default-value 'org-todo-keywords))
-	(def-tags org-tag-alist)
-	(target-file (expand-file-name org-mobile-index-file
-				       org-mobile-directory))
-	todo-kwds done-kwds tags)
-    (when (stringp (car def-todo))
-      (setq def-todo (list (cons 'sequence def-todo))))
-    (org-agenda-prepare-buffers (mapcar 'car files-alist))
-    (setq done-kwds (org-uniquify org-done-keywords-for-agenda))
-    (setq todo-kwds (org-delete-all
-		     done-kwds
-		     (org-uniquify org-todo-keywords-for-agenda)))
-    (setq tags (mapcar 'car (org-global-tags-completion-table
-			     (mapcar 'car files-alist))))
-    (with-temp-file (if org-mobile-use-encryption org-mobile-encryption-tempfile
-		      target-file)
-      (insert "#+READONLY\n")
-      (dolist (entry def-todo)
-	(let ((kwds (mapcar (lambda (x)
-			      (if (string-match "(" x)
-				  (substring x 0 (match-beginning 0))
-				x))
-			    (cdr entry))))
-	  (insert "#+TODO: " (mapconcat #'identity kwds " ") "\n")
-	  (let* ((dwds (or (member "|" kwds) (last kwds)))
-		 (twds (org-delete-all dwds kwds)))
-	    (setq todo-kwds (org-delete-all twds todo-kwds))
-	    (setq done-kwds (org-delete-all dwds done-kwds)))))
-      (when (or todo-kwds done-kwds)
-	(insert "#+TODO: " (mapconcat 'identity todo-kwds " ") " | "
-		(mapconcat 'identity done-kwds " ") "\n"))
-      (setq def-tags (split-string (org-tag-alist-to-string def-tags t)))
-      (setq tags (org-delete-all def-tags tags))
-      (setq tags (sort tags (lambda (a b) (string< (downcase a) (downcase b)))))
-      (setq tags (append def-tags tags nil))
-      (insert "#+TAGS: " (mapconcat 'identity tags " ") "\n")
-      (insert "#+ALLPRIORITIES: " org-mobile-allpriorities "\n")
-      (when (file-exists-p (expand-file-name
-			    org-mobile-directory "agendas.org"))
-	(insert "* [[file:agendas.org][Agenda Views]]\n"))
-      (pcase-dolist (`(,_ . ,link-name) files-alist)
-	(insert (format "* [[file:%s][%s]]\n" link-name link-name)))
-      (push (cons org-mobile-index-file (md5 (buffer-string)))
-	    org-mobile-checksum-files))
-    (when org-mobile-use-encryption
-      (org-mobile-encrypt-and-move org-mobile-encryption-tempfile
-				   target-file)
-      (org-mobile-cleanup-encryption-tempfile))))
-
-(defun org-mobile-copy-agenda-files ()
-  "Copy all agenda files to the stage or WebDAV directory."
-  (let ((files-alist org-mobile-files-alist)
-	file buf entry link-name target-path target-dir check)
-    (while (setq entry (pop files-alist))
-      (setq file (car entry) link-name (cdr entry))
-      (when (file-exists-p file)
-	(setq target-path (expand-file-name link-name org-mobile-directory)
-	      target-dir (file-name-directory target-path))
-	(unless (file-directory-p target-dir)
-	  (make-directory target-dir 'parents))
-	(if org-mobile-use-encryption
-	    (org-mobile-encrypt-and-move file target-path)
-	  (copy-file file target-path 'ok-if-already-exists))
-	(setq check (shell-command-to-string
-		     (concat (shell-quote-argument org-mobile-checksum-binary)
-			     " "
-			     (shell-quote-argument (expand-file-name file)))))
-	(when (string-match "[a-fA-F0-9]\\{30,40\\}" check)
-	  (push (cons link-name (match-string 0 check))
-		org-mobile-checksum-files))))
-
-    (setq file (expand-file-name org-mobile-capture-file
-				 org-mobile-directory))
-    (save-excursion
-      (setq buf (find-file file))
-      (when (and (= (point-min) (point-max)))
-	(insert "\n")
-	(save-buffer)
-	(when org-mobile-use-encryption
-	  (write-file org-mobile-encryption-tempfile)
-	  (org-mobile-encrypt-and-move org-mobile-encryption-tempfile file)))
-      (push (cons org-mobile-capture-file (md5 (buffer-string)))
-	    org-mobile-checksum-files))
-    (org-mobile-cleanup-encryption-tempfile)
-    (kill-buffer buf)))
-
-(defun org-mobile-write-checksums ()
-  "Create checksums for all files in `org-mobile-directory'.
-The table of checksums is written to the file mobile-checksums."
-  (let ((sumfile (expand-file-name "checksums.dat" org-mobile-directory))
-	(files org-mobile-checksum-files)
-	entry file sum)
-    (with-temp-file sumfile
-      (set-buffer-file-coding-system 'undecided-unix nil)
-      (while (setq entry (pop files))
-	(setq file (car entry) sum (cdr entry))
-	(insert (format "%s  %s\n" sum file))))))
-
-(defun org-mobile-sumo-agenda-command ()
-  "Return an agenda custom command that comprises all custom commands."
-  (let ((custom-list
-	 ;; normalize different versions
-	 (delq nil
-	       (mapcar
-		(lambda (x)
-		  (cond ((stringp (cdr x)) nil)
-			((stringp (nth 1 x)) x)
-			((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
-			(t (cons (car x) (cons "" (cdr x))))))
-		org-agenda-custom-commands)))
-	(default-list '(("a" "Agenda" agenda) ("t" "All TODO" alltodo)))
-	thelist	atitle new e key desc type match settings cmds gkey gdesc gsettings cnt)
-    (cond
-     ((eq org-mobile-agendas 'custom)
-      (setq thelist custom-list))
-     ((eq org-mobile-agendas 'default)
-      (setq thelist default-list))
-     ((eq org-mobile-agendas 'all)
-      (setq thelist custom-list)
-      (unless (assoc "t" thelist) (push '("t" "ALL TODO" alltodo) thelist))
-      (unless (assoc "a" thelist) (push '("a" "Agenda" agenda) thelist)))
-     ((listp org-mobile-agendas)
-      (setq thelist (append custom-list default-list))
-      (setq thelist (delq nil (mapcar (lambda (k) (assoc k thelist))
-				      org-mobile-agendas)))))
-    (while (setq e (pop thelist))
-      (cond
-       ((stringp (cdr e))
-	;; this is a description entry - skip it
-	)
-       ((eq (nth 2 e) 'search)
-	;; Search view is interactive, skip
-	)
-       ((memq (nth 2 e) '(todo-tree tags-tree occur-tree))
-	;; These are trees, not really agenda commands
-	)
-       ((and (memq (nth 2 e) '(todo tags tags-todo))
-	     (or (null (nth 3 e))
-		 (not (string-match "\\S-" (nth 3 e)))))
-	;; These would be interactive because the match string is empty
-	)
-       ((memq (nth 2 e) '(agenda alltodo todo tags tags-todo))
-	;; a normal command
-	(setq key (car e) desc (nth 1 e) type (nth 2 e) match (nth 3 e)
-	      settings (nth 4 e))
-	(setq settings
-	      (cons (list 'org-agenda-title-append
-			  (concat "<after>KEYS=" key " TITLE: "
-				  (if (and (stringp desc) (> (length desc) 0))
-				      desc (symbol-name type))
-				  "</after>"))
-		    settings))
-	(push (list type match settings) new))
-       ((or (functionp (nth 2 e)) (symbolp (nth 2 e)))
-	;; A user-defined function, which can do anything, so simply
-	;; ignore it.
-	)
-       (t
-	;; a block agenda
-	(setq gkey (car e) gdesc (nth 1 e) gsettings (nth 3 e) cmds (nth 2 e))
-	(setq cnt 0)
-	(while (setq e (pop cmds))
-	  (setq type (car e) match (nth 1 e) settings (nth 2 e))
-	  (setq atitle (if (string= "" gdesc) match gdesc))
-	  (setq settings (append gsettings settings))
-	  (setq settings
-		(cons (list 'org-agenda-title-append
-			    (concat "<after>KEYS=" gkey "#" (number-to-string
-							     (setq cnt (1+ cnt)))
-				    " TITLE: " atitle "</after>"))
-		      settings))
-	  (push (list type match settings) new)))))
-    (and new (list "X" "SUMO" (reverse new)
-		   '((org-agenda-compact-blocks nil))))))
-
-(defvar org-mobile-creating-agendas nil)
-(defun org-mobile-write-agenda-for-mobile (file)
-  (let ((all (buffer-string)) in-date id pl prefix line app short m sexp)
-    (with-temp-file file
-      (org-mode)
-      (insert "#+READONLY\n")
-      (insert all)
-      (goto-char (point-min))
-      (while (not (eobp))
-	(cond
-	 ((looking-at "[ \t]*$")) ; keep empty lines
-	 ((looking-at "=+$")
-	  ;; remove underlining
-	  (delete-region (point) (point-at-eol)))
-	 ((get-text-property (point) 'org-agenda-structural-header)
-	  (setq in-date nil)
-	  (setq app (get-text-property (point) 'org-agenda-title-append))
-	  (setq short (get-text-property (point) 'short-heading))
-	  (when (and short (looking-at ".+"))
-	    (replace-match short nil t)
-	    (beginning-of-line 1))
-	  (when app
-	    (end-of-line 1)
-	    (insert app)
-	    (beginning-of-line 1))
-	  (insert "* "))
-	 ((get-text-property (point) 'org-agenda-date-header)
-	  (setq in-date t)
-	  (insert "** "))
-	 ((setq m (or (get-text-property (point) 'org-hd-marker)
-		      (get-text-property (point) 'org-marker)))
-	  (setq sexp (member (get-text-property (point) 'type)
-			     '("diary" "sexp")))
-	  (if (setq pl (text-property-any (point) (point-at-eol) 'org-heading t))
-	      (progn
-		(setq prefix (org-trim (buffer-substring
-					(point) pl))
-		      line (org-trim (buffer-substring
-				      pl
-				      (point-at-eol))))
-		(delete-region (point-at-bol) (point-at-eol))
-		(insert line "<before>" prefix "</before>")
-		(beginning-of-line 1))
-	    (and (looking-at "[ \t]+") (replace-match "")))
-	  (insert (if in-date "***  " "**  "))
-	  (end-of-line 1)
-	  (insert "\n")
-	  (unless sexp
-	    (insert (org-agenda-get-some-entry-text
-		     m 10 "   " 'planning)
-		    "\n")
-	    (when (setq id
-			(if (bound-and-true-p
-			     org-mobile-force-id-on-agenda-items)
-			    (org-id-get m 'create)
-			  (or (org-entry-get m "ID")
-			      (org-mobile-get-outline-path-link m))))
-	      (insert "   :PROPERTIES:\n   :ORIGINAL_ID: " id
-		      "\n   :END:\n")))))
-	(beginning-of-line 2))
-      (push (cons "agendas.org" (md5 (buffer-string)))
-	    org-mobile-checksum-files))
-    (message "Agenda written to Org file %s" file)))
-
-(defun org-mobile-get-outline-path-link (pom)
-  (org-with-point-at pom
-    (concat "olp:"
-	    (org-mobile-escape-olp (file-name-nondirectory buffer-file-name))
-	    ":"
-	    (mapconcat 'org-mobile-escape-olp
-		       (org-get-outline-path)
-		       "/")
-	    "/"
-	    (org-mobile-escape-olp (nth 4 (org-heading-components))))))
-
-(defun org-mobile-escape-olp (s)
-  (let  ((table '(?: ?/)))
-    (org-link-escape s table)))
-
-(defun org-mobile-create-sumo-agenda ()
-  "Create a file that contains all custom agenda views."
-  (interactive)
-  (let* ((file (expand-file-name "agendas.org"
-				 org-mobile-directory))
-	 (file1 (if org-mobile-use-encryption
-		    org-mobile-encryption-tempfile
-		  file))
-	 (sumo (org-mobile-sumo-agenda-command))
-	 (org-agenda-custom-commands
-	  (list (append sumo (list (list file1)))))
-	 (org-mobile-creating-agendas t))
-    (unless (file-writable-p file1)
-      (error "Cannot write to file %s" file1))
-    (when sumo
-      (org-store-agenda-views))
-    (when org-mobile-use-encryption
-      (org-mobile-encrypt-and-move file1 file)
-      (delete-file file1)
-      (org-mobile-cleanup-encryption-tempfile))))
-
-(defun org-mobile-encrypt-and-move (infile outfile)
-  "Encrypt INFILE locally to INFILE_enc, then move it to OUTFILE.
-We do this in two steps so that remote paths will work, even if the
-encryption program does not understand them."
-  (let ((encfile (concat infile "_enc")))
-    (org-mobile-encrypt-file infile encfile)
-    (when outfile
-      (copy-file encfile outfile 'ok-if-already-exists)
-      (delete-file encfile))))
-
-(defun org-mobile-encrypt-file (infile outfile)
-  "Encrypt INFILE to OUTFILE, using `org-mobile-encryption-password'."
-  (shell-command
-   (format "openssl enc -md md5 -aes-256-cbc -salt -pass %s -in %s -out %s"
-	   (shell-quote-argument (concat "pass:"
-					 (org-mobile-encryption-password)))
-	   (shell-quote-argument (expand-file-name infile))
-	   (shell-quote-argument (expand-file-name outfile)))))
-
-(defun org-mobile-decrypt-file (infile outfile)
-  "Decrypt INFILE to OUTFILE, using `org-mobile-encryption-password'."
-  (shell-command
-   (format "openssl enc -md md5 -d -aes-256-cbc -salt -pass %s -in %s -out %s"
-	   (shell-quote-argument (concat "pass:"
-					 (org-mobile-encryption-password)))
-	   (shell-quote-argument (expand-file-name infile))
-	   (shell-quote-argument (expand-file-name outfile)))))
-
-(defun org-mobile-cleanup-encryption-tempfile ()
-  "Remove the encryption tempfile if it exists."
-  (and (stringp org-mobile-encryption-tempfile)
-       (file-exists-p org-mobile-encryption-tempfile)
-       (delete-file org-mobile-encryption-tempfile)))
-
-(defun org-mobile-move-capture ()
-  "Move the contents of the capture file to the inbox file.
-Return a marker to the location where the new content has been added.
-If nothing new has been added, return nil."
-  (interactive)
-  (let* ((encfile nil)
-	 (capture-file (expand-file-name org-mobile-capture-file
-					 org-mobile-directory))
-	 (inbox-buffer (find-file-noselect org-mobile-inbox-for-pull))
-	 (capture-buffer
-	  (if (not org-mobile-use-encryption)
-	      (find-file-noselect capture-file)
-	    (org-mobile-cleanup-encryption-tempfile)
-	    (setq encfile (concat org-mobile-encryption-tempfile "_enc"))
-	    (copy-file capture-file encfile)
-	    (org-mobile-decrypt-file encfile org-mobile-encryption-tempfile)
-	    (find-file-noselect org-mobile-encryption-tempfile)))
-	 (insertion-point (make-marker))
-	 not-empty content)
-    (with-current-buffer capture-buffer
-      (setq content (buffer-string))
-      (setq not-empty (string-match "\\S-" content))
-      (when not-empty
-	(set-buffer inbox-buffer)
-	(widen)
-	(goto-char (point-max))
-	(or (bolp) (newline))
-	(move-marker insertion-point
-		     (prog1 (point) (insert content)))
-	(save-buffer)
-	(set-buffer capture-buffer)
-	(erase-buffer)
-	(save-buffer)
-	(org-mobile-update-checksum-for-capture-file (buffer-string))))
-    (kill-buffer capture-buffer)
-    (when org-mobile-use-encryption
-      (org-mobile-encrypt-and-move org-mobile-encryption-tempfile
-				   capture-file)
-      (org-mobile-cleanup-encryption-tempfile))
-    (if not-empty insertion-point)))
-
-(defun org-mobile-update-checksum-for-capture-file (buffer-string)
-  "Find the checksum line and modify it to match BUFFER-STRING."
-  (let* ((file (expand-file-name "checksums.dat" org-mobile-directory))
-	 (buffer (find-file-noselect file)))
-    (when buffer
-      (with-current-buffer buffer
-	(when (re-search-forward (concat "\\([0-9a-fA-F]\\{30,\\}\\).*?"
-					 (regexp-quote org-mobile-capture-file)
-					 "[ \t]*$") nil t)
-	  (goto-char (match-beginning 1))
-	  (delete-region (match-beginning 1) (match-end 1))
-	  (insert (md5 buffer-string))
-	  (save-buffer)))
-      (kill-buffer buffer))))
-
-(defun org-mobile-apply (&optional beg end)
-  "Apply all change requests in the current buffer.
-If BEG and END are given, only do this in that region."
-  (interactive)
-  (require 'org-archive)
-  (setq org-mobile-last-flagged-files nil)
-  (setq beg (or beg (point-min)) end (or end (point-max)))
-
-  ;; Remove all Note IDs
-  (goto-char beg)
-  (while (re-search-forward "^\\*\\* Note ID: [-0-9A-F]+[ \t]*\n" end t)
-    (replace-match ""))
-
-  ;; Find all the referenced entries, without making any changes yet
-  (let ((marker (make-marker))
-	(bos-marker (make-marker))
-	(end (move-marker (make-marker) end))
-	(cnt-new 0)
-	(cnt-edit 0)
-	(cnt-flag 0)
-	(cnt-error 0)
-	buf-list
-	org-mobile-error)
-
-    ;; Count the new captures
-    (goto-char beg)
-    (while (re-search-forward "^\\* \\(.*\\)" end t)
-      (and (>= (- (match-end 1) (match-beginning 1)) 2)
-	   (not (equal (downcase (substring (match-string 1) 0 2)) "f("))
-	   (cl-incf cnt-new)))
-
-    ;; Find and apply the edits
-    (goto-char beg)
-    (while (re-search-forward
-	    "^\\*+[ \t]+F(\\([^():\n]*\\)\\(:\\([^()\n]*\\)\\)?)[ \t]+\\[\\[\\(\\(id\\|olp\\):\\([^]\n]+\\)\\)" end t)
-      (catch 'next
-	(let* ((action (match-string 1))
-	       (data (and (match-end 3) (match-string 3)))
-	       (id-pos (condition-case msg
-			   (org-mobile-locate-entry (match-string 4))
-			 (error (nth 1 msg))))
-	       (bos (line-beginning-position))
-	       (eos (save-excursion (org-end-of-subtree t t)))
-	       (cmd (if (equal action "")
-			(let ((note (buffer-substring-no-properties
-				     (line-beginning-position 2) eos)))
-			  (lambda (_data _old _new)
-			    (cl-incf cnt-flag)
-			    (org-toggle-tag "FLAGGED" 'on)
-			    (org-entry-put
-			     nil "THEFLAGGINGNOTE"
-			     (replace-regexp-in-string "\n" "\\\\n" note))))
-		      (cl-incf cnt-edit)
-		      (cdr (assoc action org-mobile-action-alist))))
-	       ;; Do not take notes interactively.
-	       (org-inhibit-logging 'note)
-	       old new)
-
-	  (goto-char bos)
-	  (when (and (markerp id-pos)
-		     (not (member (marker-buffer id-pos) buf-list)))
-	    (org-mobile-timestamp-buffer (marker-buffer id-pos))
-	    (push (marker-buffer id-pos) buf-list))
-	  (unless (markerp id-pos)
-	    (goto-char (+ 2 (point-at-bol)))
-	    (if (stringp id-pos)
-		(insert id-pos " ")
-	      (insert "BAD REFERENCE "))
-	    (cl-incf cnt-error)
-	    (throw 'next t))
-	  (unless cmd
-	    (insert "BAD FLAG ")
-	    (cl-incf cnt-error)
-	    (throw 'next t))
-	  (move-marker bos-marker (point))
-	  (if (re-search-forward "^** Old value[ \t]*$" eos t)
-	      (setq old (buffer-substring
-			 (1+ (match-end 0))
-			 (progn (outline-next-heading) (point)))))
-	  (if (re-search-forward "^** New value[ \t]*$" eos t)
-	      (setq new (buffer-substring
-			 (1+ (match-end 0))
-			 (progn (outline-next-heading)
-				(if (eobp) (org-back-over-empty-lines))
-				(point)))))
-	  (setq old (org-string-nw-p old))
-	  (setq new (org-string-nw-p new))
-	  (unless (equal data "body")
-	    (setq new (and new (org-trim new)))
-	    (setq old (and old (org-trim old))))
-	  (goto-char (+ 2 bos-marker))
-	  ;; Remember this place so that we can return
-	  (move-marker marker (point))
-	  (setq org-mobile-error nil)
-	  (condition-case msg
-	      (org-with-point-at id-pos
-		(funcall cmd data old new)
-		(unless (member data '("delete" "archive" "archive-sibling"
-				       "addheading"))
-		  (when (member "FLAGGED" (org-get-tags))
-		    (add-to-list 'org-mobile-last-flagged-files
-				 (buffer-file-name)))))
-	    (error (setq org-mobile-error msg)))
-	  (when org-mobile-error
-	    (pop-to-buffer-same-window (marker-buffer marker))
-	    (goto-char marker)
-	    (cl-incf cnt-error)
-	    (insert (if (stringp (nth 1 org-mobile-error))
-			(nth 1 org-mobile-error)
-		      "EXECUTION FAILED")
-		    " ")
-	    (throw 'next t))
-	  ;; If we get here, the action has been applied successfully
-	  ;; So remove the entry
-	  (goto-char bos-marker)
-	  (delete-region (point) (org-end-of-subtree t t)))))
-    (save-buffer)
-    (move-marker marker nil)
-    (move-marker end nil)
-    (message "%d new, %d edits, %d flags, %d errors"
-	     cnt-new cnt-edit cnt-flag cnt-error)
-    (sit-for 1)))
-
-(defun org-mobile-timestamp-buffer (buf)
-  "Time stamp buffer BUF, just to make sure its checksum will change."
-  (with-current-buffer buf
-    (save-excursion
-      (save-restriction
-	(widen)
-	(goto-char (point-min))
-	(if (re-search-forward
-	     "^\\([ \t]*\\)#\\+LAST_MOBILE_CHANGE:.*\n?" nil t)
-	    (progn
-              (goto-char (match-end 1))
-	      (delete-region (point) (match-end 0)))
-          (if (looking-at ".*?-\\*-.*-\\*-")
-              (forward-line 1)))
-	(insert "#+LAST_MOBILE_CHANGE: "
-		(format-time-string "%Y-%m-%d %T") "\n")))))
-
-(defun org-mobile-smart-read ()
-  "Parse the entry at point for shortcuts and expand them.
-These shortcuts are meant for fast and easy typing on the limited
-keyboards of a mobile device.  Below we show a list of the shortcuts
-currently implemented.
-
-The entry is expected to contain an inactive time stamp indicating when
-the entry was created.  When setting dates and
-times (for example for deadlines), the time strings are interpreted
-relative to that creation date.
-Abbreviations are expected to take up entire lines, just because it is so
-easy to type RET on a mobile device.  Abbreviations start with one or two
-letters, followed immediately by a dot and then additional information.
-Generally the entire shortcut line is removed after action have been taken.
-Time stamps will be constructed using `org-read-date'.  So for example a
-line \"dd. 2tue\" will set a deadline on the second Tuesday after the
-creation date.
-
-Here are the shortcuts currently implemented:
-
-dd. string             set deadline
-ss. string             set scheduling
-tt. string             set time tamp, here.
-ti. string             set inactive time
-
-tg. tag1 tag2 tag3     set all these tags, change case where necessary
-td. kwd                set this todo keyword, change case where necessary
-
-FIXME: Hmmm, not sure if we can make his work against the
-auto-correction feature.  Needs a bit more thinking.  So this function
-is currently a noop.")
-
-(defun org-mobile-locate-entry (link)
-  (if (string-match "\\`id:\\(.*\\)$" link)
-      (org-id-find (match-string 1 link) 'marker)
-    (if (not (string-match "\\`olp:\\(.*?\\):\\(.*\\)$" link))
-					; not found with path, but maybe it is to be inserted
-					; in top level of the file?
-	(if (not (string-match "\\`olp:\\(.*?\\)$" link))
-	    nil
-	  (let ((file (match-string 1 link)))
-	    (setq file (org-link-unescape file))
-	    (setq file (expand-file-name file org-directory))
-	    (save-excursion
-	      (find-file file)
-	      (goto-char (point-max))
-	      (newline)
-	      (goto-char (point-max))
-	      (point-marker))))
-      (let ((file (match-string 1 link))
-	    (path (match-string 2 link)))
-	(setq file (org-link-unescape file))
-	(setq file (expand-file-name file org-directory))
-	(setq path (mapcar 'org-link-unescape
-			   (org-split-string path "/")))
-	(org-find-olp (cons file path))))))
-
-(defun org-mobile-edit (what old new)
-  "Edit item WHAT in the current entry by replacing OLD with NEW.
-WHAT can be \"heading\", \"todo\", \"tags\", \"priority\", or \"body\".
-The edit only takes place if the current value is equal (except for
-white space) the OLD.  If this is so, OLD will be replace by NEW
-and the command will return t.  If something goes wrong, a string will
-be returned that indicates what went wrong."
-  (let (current old1 new1 level)
-    (if (stringp what) (setq what (intern what)))
-
-    (cond
-
-     ((memq what '(todo todostate))
-      (setq current (org-get-todo-state))
-      (cond
-       ((equal new "DONEARCHIVE")
-	(org-todo 'done)
-	(org-archive-subtree-default))
-       ((equal new current) t)		; nothing needs to be done
-       ((or (equal current old)
-	    (eq org-mobile-force-mobile-change t)
-	    (memq 'todo org-mobile-force-mobile-change))
-	(org-todo (or new 'none)) t)
-       (t (error "State before change was expected as \"%s\", but is \"%s\""
-		 old current))))
-
-     ((eq what 'tags)
-      (setq current (org-get-tags)
-	    new1 (and new (org-split-string new ":+"))
-	    old1 (and old (org-split-string old ":+")))
-      (cond
-       ((org-mobile-tags-same-p current new1) t) ; no change needed
-       ((or (org-mobile-tags-same-p current old1)
-	    (eq org-mobile-force-mobile-change t)
-	    (memq 'tags org-mobile-force-mobile-change))
-	(org-set-tags-to new1) t)
-       (t (error "Tags before change were expected as \"%s\", but are \"%s\""
-		 (or old "") (or current "")))))
-
-     ((eq what 'priority)
-      (let ((case-fold-search nil))
-	(when (looking-at org-complex-heading-regexp)
-	  (let ((current (and (match-end 3) (substring (match-string 3) 2 3))))
-	    (cond
-	     ((equal current new) t)	;no action required
-	     ((or (equal current old)
-		  (eq org-mobile-force-mobile-change t)
-		  (memq 'tags org-mobile-force-mobile-change))
-	      (org-priority (and new (string-to-char new))))
-	     (t (error "Priority was expected to be %s, but is %s"
-		       old current)))))))
-
-     ((eq what 'heading)
-      (let ((case-fold-search nil))
-	(when (looking-at org-complex-heading-regexp)
-	  (let ((current (match-string 4)))
-	    (cond
-	     ((equal current new) t)	;no action required
-	     ((or (equal current old)
-		  (eq org-mobile-force-mobile-change t)
-		  (memq 'heading org-mobile-force-mobile-change))
-	      (goto-char (match-beginning 4))
-	      (insert new)
-	      (delete-region (point) (+ (point) (length current)))
-	      (org-set-tags nil 'align))
-	     (t (error "Heading changed in MobileOrg and on the computer")))))))
-
-     ((eq what 'addheading)
-      (if (org-at-heading-p)	; if false we are in top-level of file
-	  (progn
-	    ;; Workaround a `org-insert-heading-respect-content' bug
-	    ;; which prevents correct insertion when point is invisible
-	    (org-show-subtree)
-	    (end-of-line 1)
-	    (org-insert-heading-respect-content t)
-	    (org-demote))
-	(beginning-of-line)
-	(insert "* "))
-      (insert new))
-
-     ((eq what 'refile)
-      (org-copy-subtree)
-      (org-with-point-at (org-mobile-locate-entry new)
-	(if (org-at-heading-p)	; if false we are in top-level of file
-	    (progn
-	      (setq level (org-get-valid-level (funcall outline-level) 1))
-	      (org-end-of-subtree t t)
-	      (org-paste-subtree level))
-	  (org-paste-subtree 1)))
-      (org-cut-subtree))
-
-     ((eq what 'delete)
-      (org-cut-subtree))
-
-     ((eq what 'archive)
-      (org-archive-subtree))
-
-     ((eq what 'archive-sibling)
-      (org-archive-to-archive-sibling))
-
-     ((eq what 'body)
-      (setq current (buffer-substring (min (1+ (point-at-eol)) (point-max))
-				      (save-excursion (outline-next-heading)
-						      (point))))
-      (if (not (string-match "\\S-" current)) (setq current nil))
-      (cond
-       ((org-mobile-bodies-same-p current new) t) ; no action necessary
-       ((or (org-mobile-bodies-same-p current old)
-	    (eq org-mobile-force-mobile-change t)
-	    (memq 'body org-mobile-force-mobile-change))
-	(save-excursion
-	  (end-of-line 1)
-	  (insert "\n" new)
-	  (or (bolp) (insert "\n"))
-	  (delete-region (point) (progn (org-back-to-heading t)
-					(outline-next-heading)
-					(point))))
-	t)
-       (t (error "Body was changed in MobileOrg and on the computer")))))))
-
-(defun org-mobile-tags-same-p (list1 list2)
-  "Are the two tag lists the same?"
-  (not (or (org-delete-all list1 list2)
-	   (org-delete-all list2 list1))))
-
-(defun org-mobile-bodies-same-p (a b)
-  "Compare if A and B are visually equal strings.
-We first remove leading and trailing white space from the entire strings.
-Then we split the strings into lines and remove leading/trailing whitespace
-from each line.  Then we compare.
-A and B must be strings or nil."
-  (cond
-   ((and (not a) (not b)) t)
-   ((or (not a) (not b)) nil)
-   (t (setq a (org-trim a) b (org-trim b))
-      (setq a (mapconcat 'identity (org-split-string a "[ \t]*\n[ \t]*") "\n"))
-      (setq b (mapconcat 'identity (org-split-string b "[ \t]*\n[ \t]*") "\n"))
-      (equal a b))))
-
-(provide 'org-mobile)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-mobile.el ends here
diff --git a/elpa/org-9.1.14/org-mobile.elc b/elpa/org-9.1.14/org-mobile.elc
deleted file mode 100644
index 242572b..0000000
--- a/elpa/org-9.1.14/org-mobile.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-mouse.el b/elpa/org-9.1.14/org-mouse.el
deleted file mode 100644
index 5a10b59..0000000
--- a/elpa/org-9.1.14/org-mouse.el
+++ /dev/null
@@ -1,1110 +0,0 @@
-;;; org-mouse.el --- Better mouse support for Org -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2006-2018 Free Software Foundation, Inc.
-
-;; Author: Piotr Zielinski <piotr dot zielinski at gmail dot com>
-;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; Org-mouse provides mouse support for org-mode.
-;;
-;; https://orgmode.org
-;;
-;; Org mouse implements the following features:
-;; * following links with the left mouse button
-;; * subtree expansion/collapse (org-cycle) with the left mouse button
-;; * several context menus on the right mouse button:
-;;    + general text
-;;    + headlines
-;;    + timestamps
-;;    + priorities
-;;    + links
-;;    + tags
-;; * promoting/demoting/moving subtrees with mouse-3
-;;    + if the drag starts and ends in the same line then promote/demote
-;;    + otherwise move the subtree
-;;
-;; Use
-;; ---
-;;
-;; To use this package, put the following line in your .emacs:
-;;
-;;    (require 'org-mouse)
-;;
-
-;; FIXME:
-;; + deal with folding / unfolding issues
-
-;; TODO (This list is only theoretical, if you'd like to have some
-;; feature implemented or a bug fix please send me an email, even if
-;; something similar appears in the list below.  This will help me get
-;; the priorities right.):
-;;
-;; + org-store-link, insert link
-;; + org tables
-;; + occur with the current word/tag (same menu item)
-;; + ctrl-c ctrl-c, for example, renumber the current list
-;; + internal links
-
-;; Please email the maintainer with new feature suggestions / bugs
-
-;; History:
-;;
-;; Since version 5.10: Changes are listed in the general Org docs.
-;;
-;; Version 5.09;; + Version number synchronization with Org mode.
-;;
-;; Version 0.25
-;; + made compatible with Org 4.70 (thanks to Carsten for the patch)
-;;
-;; Version 0.24
-;; + minor changes to the table menu
-;;
-;; Version 0.23
-;; + preliminary support for tables and calculation marks
-;; + context menu support for org-agenda-undo & org-sort-entries
-;;
-;; Version 0.22
-;; + handles undo support for the agenda buffer (requires Org >=4.58)
-;;
-;; Version 0.21
-;; + selected text activates its context menu
-;; + shift-middleclick or right-drag inserts the text from the clipboard in the form of a link
-;;
-;; Version 0.20
-;; + the new "TODO Status" submenu replaces the "Cycle TODO" menu item
-;; + the TODO menu can now list occurrences of a specific TODO keyword
-;; + #+STARTUP line is now recognized
-;;
-;; Version 0.19
-;; + added support for dragging URLs to the org-buffer
-;;
-;; Version 0.18
-;; + added support for agenda blocks
-;;
-;; Version 0.17
-;; + toggle checkboxes with a single click
-;;
-;; Version 0.16
-;; + added support for checkboxes
-;;
-;; Version 0.15
-;; + Org now works with the Agenda buffer as well
-;;
-;; Version 0.14
-;; + added a menu option that converts plain list items to outline items
-;;
-;; Version 0.13
-;; + "Insert Heading" now inserts a sibling heading if the point is
-;;   on "***" and a child heading otherwise
-;;
-;; Version 0.12
-;; + compatible with Emacs 21
-;; + custom agenda commands added to the main menu
-;; + moving trees should now work between windows in the same frame
-;;
-;; Version 0.11
-;; + fixed org-mouse-at-link (thanks to Carsten)
-;; + removed [follow-link] bindings
-;;
-;; Version 0.10
-;; + added a menu option to remove highlights
-;; + compatible with Org 4.21 now
-;;
-;; Version 0.08:
-;; + trees can be moved/promoted/demoted by dragging with the right
-;;   mouse button (mouse-3)
-;; + small changes in the above function
-;;
-;; Versions 0.01 -- 0.07: (I don't remember)
-
-;;; Code:
-
-(require 'org)
-(require 'cl-lib)
-
-(defvar org-agenda-allow-remote-undo)
-(defvar org-agenda-undo-list)
-(defvar org-agenda-custom-commands)
-(declare-function org-agenda-change-all-lines "org-agenda"
-		  (newhead hdmarker &optional fixface just-this))
-(declare-function org-verify-change-for-undo "org-agenda" (l1 l2))
-(declare-function org-apply-on-list "org-list" (function init-value &rest args))
-(declare-function org-agenda-earlier "org-agenda" (arg))
-(declare-function org-agenda-later "org-agenda" (arg))
-
-(defvar org-mouse-main-buffer nil
-  "Active buffer for mouse operations.")
-(defvar org-mouse-plain-list-regexp "\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) "
-  "Regular expression that matches a plain list.")
-(defvar org-mouse-direct t
-  "Internal variable indicating whether the current action is direct.
-
-If t, then the current action has been invoked directly through the buffer
-it is intended to operate on.  If nil, then the action has been invoked
-indirectly, for example, through the agenda buffer.")
-
-(defgroup org-mouse nil
-  "Mouse support for org-mode."
-  :tag "Org Mouse"
-  :group 'org)
-
-(defcustom org-mouse-punctuation ":"
-  "Punctuation used when inserting text by drag and drop."
-  :group 'org-mouse
-  :type 'string)
-
-(defcustom org-mouse-features
-  '(context-menu yank-link activate-stars activate-bullets activate-checkboxes)
-  "The features of org-mouse that should be activated.
-Changing this variable requires a restart of Emacs to get activated."
-  :group 'org-mouse
-  :type '(set :greedy t
-	      (const :tag "Mouse-3 shows context menu" context-menu)
-	      (const :tag "C-mouse-1 and mouse-3 move trees" move-tree)
-	      (const :tag "S-mouse-2 and drag-mouse-3 yank link" yank-link)
-	      (const :tag "Activate headline stars" activate-stars)
-	      (const :tag "Activate item bullets" activate-bullets)
-	      (const :tag "Activate checkboxes" activate-checkboxes)))
-
-(defun org-mouse-re-search-line (regexp)
-  "Search the current line for a given regular expression."
-  (beginning-of-line)
-  (re-search-forward regexp (point-at-eol) t))
-
-(defun org-mouse-end-headline ()
-  "Go to the end of current headline (ignoring tags)."
-  (interactive)
-  (end-of-line)
-  (skip-chars-backward "\t ")
-  (when (looking-back ":[A-Za-z]+:" (line-beginning-position))
-    (skip-chars-backward ":A-Za-z")
-    (skip-chars-backward "\t ")))
-
-(defvar-local org-mouse-context-menu-function nil
-  "Function to create the context menu.
-The value of this variable is the function invoked by
-`org-mouse-context-menu' as the context menu.")
-
-(defun org-mouse-show-context-menu (event prefix)
-  "Invoke the context menu.
-
-If the value of `org-mouse-context-menu-function' is a function, then
-this function is called.  Otherwise, the current major mode menu is used."
-  (interactive "@e \nP")
-  (if (and (= (event-click-count event) 1)
-	   (or (not mark-active)
-	       (sit-for (/ double-click-time 1000.0))))
-      (progn
-	(select-window (posn-window (event-start event)))
-	(when (not (org-mouse-mark-active))
-	  (goto-char (posn-point (event-start event)))
-	  (when (not (eolp)) (save-excursion (run-hooks 'post-command-hook)))
-	  (sit-for 0))
-	(if (functionp org-mouse-context-menu-function)
-	    (funcall org-mouse-context-menu-function event)
-	  (if (fboundp 'mouse-menu-major-mode-map)
-	      (popup-menu (mouse-menu-major-mode-map) event prefix)
-	    (with-no-warnings ; don't warn about fallback, obsolete since 23.1
-	     (mouse-major-mode-menu event prefix)))))
-    (setq this-command 'mouse-save-then-kill)
-    (mouse-save-then-kill event)))
-
-(defun org-mouse-line-position ()
-  "Return `:beginning' or `:middle' or `:end', depending on the point position.
-
-If the point is at the end of the line, return `:end'.
-If the point is separated from the beginning of the line only by white
-space and *'s (`org-mouse-bolp'), return `:beginning'.  Otherwise,
-return `:middle'."
-  (cond
-   ((eolp) :end)
-   ((org-mouse-bolp) :beginning)
-   (t :middle)))
-
-(defun org-mouse-empty-line ()
-  "Return non-nil iff the line contains only white space."
-  (save-excursion (beginning-of-line) (looking-at "[ \t]*$")))
-
-(defun org-mouse-next-heading ()
-  "Go to the next heading.
-If there is none, ensure that the point is at the beginning of an empty line."
-  (unless (outline-next-heading)
-    (beginning-of-line)
-    (unless (org-mouse-empty-line)
-      (end-of-line)
-      (newline))))
-
-(defun org-mouse-insert-heading ()
-  "Insert a new heading, as `org-insert-heading'.
-
-If the point is at the :beginning (`org-mouse-line-position') of the line,
-insert the new heading before the current line.  Otherwise, insert it
-after the current heading."
-  (interactive)
-  (cl-case (org-mouse-line-position)
-    (:beginning (beginning-of-line)
-		(org-insert-heading))
-    (t (org-mouse-next-heading)
-       (org-insert-heading))))
-
-(defun org-mouse-timestamp-today (&optional shift units)
-  "Change the timestamp into SHIFT UNITS in the future.
-
-For the acceptable UNITS, see `org-timestamp-change'."
-  (interactive)
-  (org-time-stamp nil)
-  (when shift (org-timestamp-change shift units)))
-
-(defun org-mouse-keyword-menu (keywords function &optional selected itemformat)
-  "A helper function.
-
-Returns a menu fragment consisting of KEYWORDS.  When a keyword
-is selected by the user, FUNCTION is called with the selected
-keyword as the only argument.
-
-If SELECTED is nil, then all items are normal menu items.  If
-SELECTED is a function, then each item is a checkbox, which is
-enabled for a given keyword iff (funcall SELECTED keyword) return
-non-nil.  If SELECTED is neither nil nor a function, then the
-items are radio buttons.  A radio button is enabled for the
-keyword `equal' to SELECTED.
-
-ITEMFORMAT governs formatting of the elements of KEYWORDS.  If it
-is a function, it is invoked with the keyword as the only
-argument.  If it is a string, it is interpreted as the format
-string to (format ITEMFORMAT keyword).  If it is neither a string
-nor a function, elements of KEYWORDS are used directly."
-  (mapcar
-   `(lambda (keyword)
-      (vector (cond
-	       ((functionp ,itemformat) (funcall ,itemformat keyword))
-	       ((stringp ,itemformat) (format ,itemformat keyword))
-	       (t keyword))
-	      (list 'funcall ,function keyword)
-	      :style (cond
-		      ((null ,selected) t)
-		      ((functionp ,selected) 'toggle)
-		      (t 'radio))
-	      :selected (if (functionp ,selected)
-			    (and (funcall ,selected keyword) t)
-			  (equal ,selected keyword))))
-   keywords))
-
-(defun org-mouse-remove-match-and-spaces ()
-  "Remove the match, make just one space around the point."
-  (interactive)
-  (replace-match "")
-  (just-one-space))
-
-(defvar org-mouse-rest)
-(defun org-mouse-replace-match-and-surround
-    (_newtext &optional _fixedcase _literal _string subexp)
-  "The same as `replace-match', but surrounds the replacement with spaces."
-  (apply #'replace-match org-mouse-rest)
-  (save-excursion
-    (goto-char (match-beginning (or subexp 0)))
-    (just-one-space)
-    (goto-char (match-end (or subexp 0)))
-    (just-one-space)))
-
-(defun org-mouse-keyword-replace-menu (keywords &optional group itemformat
-						nosurround)
-  "A helper function.
-
-Returns a menu fragment consisting of KEYWORDS.  When a keyword
-is selected, group GROUP of the current match is replaced by the
-keyword.  The method ensures that both ends of the replacement
-are separated from the rest of the text in the buffer by
-individual spaces (unless NOSURROUND is non-nil).
-
-The final entry of the menu is always \"None\", which removes the
-match.
-
-ITEMFORMAT governs formatting of the elements of KEYWORDS.  If it
-is a function, it is invoked with the keyword as the only
-argument.  If it is a string, it is interpreted as the format
-string to (format ITEMFORMAT keyword).  If it is neither a string
-nor a function, elements of KEYWORDS are used directly."
-  (setq group (or group 0))
-  (let ((replace (org-mouse-match-closure
-		  (if nosurround 'replace-match
-		    'org-mouse-replace-match-and-surround))))
-    (append
-     (org-mouse-keyword-menu
-      keywords
-      `(lambda (keyword) (funcall ,replace keyword t t nil ,group))
-      (match-string group)
-      itemformat)
-     `(["None" org-mouse-remove-match-and-spaces
-	:style radio
-	:selected ,(not (member (match-string group) keywords))]))))
-
-(defun org-mouse-show-headlines ()
-  "Change the visibility of the current org buffer to only show headlines."
-  (interactive)
-  (let ((this-command 'org-cycle)
-	(last-command 'org-cycle)
-	(org-cycle-global-status nil))
-    (org-cycle '(4))
-    (org-cycle '(4))))
-
-(defun org-mouse-show-overview ()
-  "Change visibility of current org buffer to first-level headlines only."
-  (interactive)
-  (let ((org-cycle-global-status nil))
-    (org-cycle '(4))))
-
-(defun org-mouse-set-priority (priority)
-  "Set the priority of the current headline to PRIORITY."
-  (org-priority priority))
-
-(defvar org-mouse-priority-regexp "\\[#\\([A-Z]\\)\\]"
-  "Regular expression matching the priority indicator.
-Differs from `org-priority-regexp' in that it doesn't contain the
-leading `.*?'.")
-
-(defun org-mouse-get-priority (&optional default)
-  "Return the priority of the current headline.
-DEFAULT is returned if no priority is given in the headline."
-  (save-excursion
-    (if (org-mouse-re-search-line org-mouse-priority-regexp)
-	(match-string 1)
-      (when default (char-to-string org-default-priority)))))
-
-(defun org-mouse-delete-timestamp ()
-  "Deletes the current timestamp as well as the preceding keyword.
-SCHEDULED: or DEADLINE: or ANYTHINGLIKETHIS:"
-  (when (or (org-at-date-range-p) (org-at-timestamp-p 'lax))
-    (replace-match "")			;delete the timestamp
-    (skip-chars-backward " :A-Z")
-    (when (looking-at " *[A-Z][A-Z]+:")
-      (replace-match ""))))
-
-(defun org-mouse-looking-at (regexp skipchars &optional movechars)
-  (save-excursion
-    (let ((point (point)))
-      (if (looking-at regexp) t
-	(skip-chars-backward skipchars)
-	(forward-char (or movechars 0))
-	(when (looking-at regexp)
-	  (> (match-end 0) point))))))
-
-(defun org-mouse-priority-list ()
-  (cl-loop for priority from ?A to org-lowest-priority
-	   collect (char-to-string priority)))
-
-(defun org-mouse-todo-menu (state)
-  "Create the menu with TODO keywords."
-  (append
-   (let ((kwds org-todo-keywords-1))
-     (org-mouse-keyword-menu
-      kwds
-      `(lambda (kwd) (org-todo kwd))
-      (lambda (kwd) (equal state kwd))))))
-
-(defun org-mouse-tag-menu ()		;todo
-  "Create the tags menu."
-  (append
-   (let ((tags (org-get-tags)))
-     (org-mouse-keyword-menu
-      (sort (mapcar 'car (org-get-buffer-tags)) 'string-lessp)
-      `(lambda (tag)
-	 (org-mouse-set-tags
-	  (sort (if (member tag (quote ,tags))
-		    (delete tag (quote ,tags))
-		  (cons tag (quote ,tags)))
-		'string-lessp)))
-      `(lambda (tag) (member tag (quote ,tags)))
-      ))
-   '("--"
-     ["Align Tags Here" (org-set-tags nil t) t]
-     ["Align Tags in Buffer" (org-set-tags t t) t]
-     ["Set Tags ..." (org-set-tags) t])))
-
-(defun org-mouse-set-tags (tags)
-  (save-excursion
-    ;; remove existing tags first
-    (beginning-of-line)
-    (when (org-mouse-re-search-line ":\\(\\([A-Za-z_]+:\\)+\\)")
-      (replace-match ""))
-
-    ;; set new tags if any
-    (when tags
-      (end-of-line)
-      (insert " :" (mapconcat 'identity tags ":") ":")
-      (org-set-tags nil t))))
-
-(defun org-mouse-insert-checkbox ()
-  (interactive)
-  (and (org-at-item-p)
-       (goto-char (match-end 0))
-       (unless (org-at-item-checkbox-p)
-	 (delete-horizontal-space)
-	 (insert " [ ] "))))
-
-(defun org-mouse-agenda-type (type)
-  (pcase type
-    (`tags "Tags: ")
-    (`todo "TODO: ")
-    (`tags-tree "Tags tree: ")
-    (`todo-tree "TODO tree: ")
-    (`occur-tree "Occur tree: ")
-    (_ "Agenda command ???")))
-
-(defun org-mouse-list-options-menu (alloptions &optional function)
-  (let ((options (save-match-data
-		   (split-string (match-string-no-properties 1)))))
-    (print options)
-    (cl-loop for name in alloptions
-	     collect
-	     (vector name
-		     `(progn
-			(replace-match
-			 (mapconcat 'identity
-				    (sort (if (member ',name ',options)
-					      (delete ',name ',options)
-					    (cons ',name ',options))
-					  'string-lessp)
-				    " ")
-			 nil nil nil 1)
-			(when (functionp ',function) (funcall ',function)))
-		     :style 'toggle
-		     :selected (and (member name options) t)))))
-
-(defun org-mouse-clip-text (text maxlength)
-  (if (> (length text) maxlength)
-      (concat (substring text 0 (- maxlength 3)) "...")
-    text))
-
-(defun org-mouse-popup-global-menu ()
-  (popup-menu
-   `("Main Menu"
-     ["Show Overview" org-mouse-show-overview t]
-     ["Show Headlines" org-mouse-show-headlines t]
-     ["Show All" outline-show-all t]
-     ["Remove Highlights" org-remove-occur-highlights
-      :visible org-occur-highlights]
-     "--"
-     ["Check Deadlines"
-      (if (functionp 'org-check-deadlines-and-todos)
-	  (org-check-deadlines-and-todos org-deadline-warning-days)
-	(org-check-deadlines org-deadline-warning-days)) t]
-     ["Check TODOs" org-show-todo-tree t]
-     ("Check Tags"
-      ,@(org-mouse-keyword-menu
-	 (sort (mapcar 'car (org-get-buffer-tags)) 'string-lessp)
-	 #'(lambda (tag) (org-tags-sparse-tree nil tag)))
-      "--"
-      ["Custom Tag ..." org-tags-sparse-tree t])
-     ["Check Phrase ..." org-occur]
-     "--"
-     ["Display Agenda" org-agenda-list t]
-     ["Display TODO List" org-todo-list t]
-     ("Display Tags"
-      ,@(org-mouse-keyword-menu
-	 (sort (mapcar 'car (org-get-buffer-tags)) 'string-lessp)
-	 #'(lambda (tag) (org-tags-view nil tag)))
-      "--"
-      ["Custom Tag ..." org-tags-view t])
-     ["Display Calendar" org-goto-calendar t]
-     "--"
-     ,@(org-mouse-keyword-menu
-	(mapcar 'car org-agenda-custom-commands)
-	#'(lambda (key)
-	    (eval `(org-agenda nil (string-to-char ,key))))
-	nil
-	#'(lambda (key)
-	    (let ((entry (assoc key org-agenda-custom-commands)))
-	      (org-mouse-clip-text
-	       (cond
-		((stringp (nth 1 entry)) (nth 1 entry))
-		((stringp (nth 2 entry))
-		 (concat (org-mouse-agenda-type (nth 1 entry))
-			 (nth 2 entry)))
-		(t "Agenda Command `%s'"))
-	       30))))
-     "--"
-     ["Delete Blank Lines" delete-blank-lines
-      :visible (org-mouse-empty-line)]
-     ["Insert Checkbox" org-mouse-insert-checkbox
-      :visible (and (org-at-item-p) (not (org-at-item-checkbox-p)))]
-     ["Insert Checkboxes"
-      (org-mouse-for-each-item 'org-mouse-insert-checkbox)
-      :visible (and (org-at-item-p) (not (org-at-item-checkbox-p)))]
-     ["Plain List to Outline" org-mouse-transform-to-outline
-      :visible (org-at-item-p)])))
-
-(defun org-mouse-get-context (contextlist context)
-  (let ((contextdata (assq context contextlist)))
-    (when contextdata
-      (save-excursion
-	(goto-char (nth 1 contextdata))
-	(re-search-forward ".*" (nth 2 contextdata))))))
-
-(defun org-mouse-for-each-item (funct)
-  ;; Functions called by `org-apply-on-list' need an argument.
-  (let ((wrap-fun (lambda (_) (funcall funct))))
-    (when (ignore-errors (goto-char (org-in-item-p)))
-      (save-excursion (org-apply-on-list wrap-fun nil)))))
-
-(defun org-mouse-bolp ()
-  "Return true if there only spaces, tabs, and `*' before point.
-This means, between the beginning of line and the point."
-  (save-excursion
-    (skip-chars-backward " \t*") (bolp)))
-
-(defun org-mouse-insert-item (text)
-  (cl-case (org-mouse-line-position)
-    (:beginning				; insert before
-     (beginning-of-line)
-     (looking-at "[ \t]*")
-     (open-line 1)
-     (indent-to-column (- (match-end 0) (match-beginning 0)))
-     (insert "+ "))
-    (:middle				; insert after
-     (end-of-line)
-     (newline t)
-     (indent-relative)
-     (insert "+ "))
-    (:end				; insert text here
-     (skip-chars-backward " \t")
-     (kill-region (point) (point-at-eol))
-     (unless (looking-back org-mouse-punctuation (line-beginning-position))
-       (insert (concat org-mouse-punctuation " ")))))
-  (insert text)
-  (beginning-of-line))
-
-(defadvice dnd-insert-text (around org-mouse-dnd-insert-text activate)
-  (if (derived-mode-p 'org-mode)
-      (org-mouse-insert-item text)
-    ad-do-it))
-
-(defadvice dnd-open-file (around org-mouse-dnd-open-file activate)
-  (if (derived-mode-p 'org-mode)
-      (org-mouse-insert-item uri)
-    ad-do-it))
-
-(defun org-mouse-match-closure (function)
-  (let ((match (match-data t)))
-    `(lambda (&rest rest)
-       (save-match-data
-	 (set-match-data ',match)
-	 (apply ',function rest)))))
-
-(defun org-mouse-yank-link (click)
-  (interactive "e")
-  ;; Give temporary modes such as isearch a chance to turn off.
-  (run-hooks 'mouse-leave-buffer-hook)
-  (mouse-set-point click)
-  (setq mouse-selection-click-count 0)
-  (delete-horizontal-space)
-  (insert-for-yank (concat " [[" (current-kill 0) "]] ")))
-
-(defun org-mouse-context-menu (&optional event)
-  (let* ((stamp-prefixes (list org-deadline-string org-scheduled-string))
-	 (contextlist (org-context))
-	 (get-context (lambda (context) (org-mouse-get-context contextlist context))))
-    (cond
-     ((org-mouse-mark-active)
-      (let ((region-string (buffer-substring (region-beginning) (region-end))))
-	(popup-menu
-	 `(nil
-	   ["Sparse Tree" (org-occur ',region-string)]
-	   ["Find in Buffer" (occur ',region-string)]
-	   ["Grep in Current Dir"
-	    (grep (format "grep -rnH -e '%s' *" ',region-string))]
-	   ["Grep in Parent Dir"
-	    (grep (format "grep -rnH -e '%s' ../*" ',region-string))]
-	   "--"
-	   ["Convert to Link"
-	    (progn (save-excursion (goto-char (region-beginning)) (insert "[["))
-		   (save-excursion (goto-char (region-end)) (insert "]]")))]
-	   ["Insert Link Here" (org-mouse-yank-link ',event)]))))
-     ((save-excursion (beginning-of-line) (looking-at "[ \t]*#\\+STARTUP: \\(.*\\)"))
-      (popup-menu
-       `(nil
-	 ,@(org-mouse-list-options-menu (mapcar 'car org-startup-options)
-					'org-mode-restart))))
-     ((or (eolp)
-	  (and (looking-at "\\(  \\|\t\\)\\(+:[0-9a-zA-Z_:]+\\)?\\(  \\|\t\\)+$")
-	       (looking-back "  \\|\t" (- (point) 2)
-			     (line-beginning-position))))
-      (org-mouse-popup-global-menu))
-     ((funcall get-context :checkbox)
-      (popup-menu
-       '(nil
-	 ["Toggle" org-toggle-checkbox t]
-	 ["Remove" org-mouse-remove-match-and-spaces t]
-	 ""
-	 ["All Clear" (org-mouse-for-each-item
-		       (lambda ()
-			 (when (save-excursion (org-at-item-checkbox-p))
-			   (replace-match "[ ] "))))]
-	 ["All Set" (org-mouse-for-each-item
-		     (lambda ()
-		       (when (save-excursion (org-at-item-checkbox-p))
-			 (replace-match "[X] "))))]
-	 ["All Toggle" (org-mouse-for-each-item 'org-toggle-checkbox) t]
-	 ["All Remove" (org-mouse-for-each-item
-			(lambda ()
-			  (when (save-excursion (org-at-item-checkbox-p))
-			    (org-mouse-remove-match-and-spaces))))]
-	 )))
-     ((and (org-mouse-looking-at "\\b\\w+" "a-zA-Z0-9_")
-	   (member (match-string 0) org-todo-keywords-1))
-      (popup-menu
-       `(nil
-	 ,@(org-mouse-todo-menu (match-string 0))
-	 "--"
-	 ["Check TODOs" org-show-todo-tree t]
-	 ["List all TODO keywords" org-todo-list t]
-	 [,(format "List only %s" (match-string 0))
-	  (org-todo-list (match-string 0)) t]
-	 )))
-     ((and (org-mouse-looking-at "\\b[A-Z]+:" "A-Z")
-	   (member (match-string 0) stamp-prefixes))
-      (popup-menu
-       `(nil
-	 ,@(org-mouse-keyword-replace-menu stamp-prefixes)
-	 "--"
-	 ["Check Deadlines" org-check-deadlines t]
-	 )))
-     ((org-mouse-looking-at org-mouse-priority-regexp "[]A-Z#") ; priority
-      (popup-menu `(nil ,@(org-mouse-keyword-replace-menu
-			   (org-mouse-priority-list) 1 "Priority %s" t))))
-     ((funcall get-context :link)
-      (popup-menu
-       '(nil
-	 ["Open" org-open-at-point t]
-	 ["Open in Emacs" (org-open-at-point t) t]
-	 "--"
-	 ["Copy link" (org-kill-new (match-string 0))]
-	 ["Cut link"
-	  (progn
-	    (kill-region (match-beginning 0) (match-end 0))
-	    (just-one-space))]
-	 "--"
-	 ["Grep for TODOs"
-	  (grep (format "grep -nH -i 'todo\\|fixme' %s*" (match-string 2)))]
-					;       ["Paste file link" ((insert "file:") (yank))]
-	 )))
-     ((org-mouse-looking-at ":\\([A-Za-z0-9_]+\\):" "A-Za-z0-9_" -1) ;tags
-      (popup-menu
-       `(nil
-	 [,(format-message "Display `%s'" (match-string 1))
-	  (org-tags-view nil ,(match-string 1))]
-	 [,(format-message "Sparse Tree `%s'" (match-string 1))
-	  (org-tags-sparse-tree nil ,(match-string 1))]
-	 "--"
-	 ,@(org-mouse-tag-menu))))
-     ((org-at-timestamp-p 'lax)
-      (popup-menu
-       '(nil
-	 ["Show Day" org-open-at-point t]
-	 ["Change Timestamp" org-time-stamp t]
-	 ["Delete Timestamp" (org-mouse-delete-timestamp) t]
-	 ["Compute Time Range" org-evaluate-time-range (org-at-date-range-p)]
-	 "--"
-	 ["Set for Today" org-mouse-timestamp-today]
-	 ["Set for Tomorrow" (org-mouse-timestamp-today 1 'day)]
-	 ["Set in 1 Week" (org-mouse-timestamp-today 7 'day)]
-	 ["Set in 2 Weeks" (org-mouse-timestamp-today 14 'day)]
-	 ["Set in a Month" (org-mouse-timestamp-today 1 'month)]
-	 "--"
-	 ["+ 1 Day" (org-timestamp-change 1 'day)]
-	 ["+ 1 Week" (org-timestamp-change 7 'day)]
-	 ["+ 1 Month" (org-timestamp-change 1 'month)]
-	 "--"
-	 ["- 1 Day" (org-timestamp-change -1 'day)]
-	 ["- 1 Week" (org-timestamp-change -7 'day)]
-	 ["- 1 Month" (org-timestamp-change -1 'month)])))
-     ((funcall get-context :table-special)
-      (let ((mdata (match-data)))
-	(cl-incf (car mdata) 2)
-	(store-match-data mdata))
-      (message "match: %S" (match-string 0))
-      (popup-menu `(nil ,@(org-mouse-keyword-replace-menu
-			   '(" " "!" "^" "_" "$" "#" "*" "'") 0
-			   (lambda (mark)
-			     (cl-case (string-to-char mark)
-			       (?  "( ) Nothing Special")
-			       (?! "(!) Column Names")
-			       (?^ "(^) Field Names Above")
-			       (?_ "(^) Field Names Below")
-			       (?$ "($) Formula Parameters")
-			       (?# "(#) Recalculation: Auto")
-			       (?* "(*) Recalculation: Manual")
-			       (?' "(') Recalculation: None"))) t))))
-     ((assq :table contextlist)
-      (popup-menu
-       '(nil
-	 ["Align Table" org-ctrl-c-ctrl-c]
-	 ["Blank Field" org-table-blank-field]
-	 ["Edit Field" org-table-edit-field]
-	 "--"
-	 ("Column"
-	  ["Move Column Left" org-metaleft]
-	  ["Move Column Right" org-metaright]
-	  ["Delete Column" org-shiftmetaleft]
-	  ["Insert Column" org-shiftmetaright]
-	  "--"
-	  ["Enable Narrowing" (setq org-table-limit-column-width (not org-table-limit-column-width)) :selected org-table-limit-column-width :style toggle])
-	 ("Row"
-	  ["Move Row Up" org-metaup]
-	  ["Move Row Down" org-metadown]
-	  ["Delete Row" org-shiftmetaup]
-	  ["Insert Row" org-shiftmetadown]
-	  ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
-	  "--"
-	  ["Insert Hline" org-table-insert-hline])
-	 ("Rectangle"
-	  ["Copy Rectangle" org-copy-special]
-	  ["Cut Rectangle" org-cut-special]
-	  ["Paste Rectangle" org-paste-special]
-	  ["Fill Rectangle" org-table-wrap-region])
-	 "--"
-	 ["Set Column Formula" org-table-eval-formula]
-	 ["Set Field Formula" (org-table-eval-formula '(4))]
-	 ["Edit Formulas" org-table-edit-formulas]
-	 "--"
-	 ["Recalculate Line" org-table-recalculate]
-	 ["Recalculate All" (org-table-recalculate '(4))]
-	 ["Iterate All" (org-table-recalculate '(16))]
-	 "--"
-	 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks]
-	 ["Sum Column/Rectangle" org-table-sum
-	  :active (or (org-at-table-p) (org-region-active-p))]
-	 ["Field Info" org-table-field-info]
-	 ["Debug Formulas"
-	  (setq org-table-formula-debug (not org-table-formula-debug))
-	  :style toggle :selected org-table-formula-debug]
-	 )))
-     ((and (assq :headline contextlist) (not (eolp)))
-      (let ((priority (org-mouse-get-priority t)))
-	(popup-menu
-	 `("Headline Menu"
-	   ("Tags and Priorities"
-	    ,@(org-mouse-keyword-menu
-	       (org-mouse-priority-list)
-	       #'(lambda (keyword)
-		   (org-mouse-set-priority (string-to-char keyword)))
-	       priority "Priority %s")
-	    "--"
-	    ,@(org-mouse-tag-menu))
-	   ("TODO Status"
-	    ,@(org-mouse-todo-menu (org-get-todo-state)))
-	   ["Show Tags"
-	    (with-current-buffer org-mouse-main-buffer (org-agenda-show-tags))
-	    :visible (not org-mouse-direct)]
-	   ["Show Priority"
-	    (with-current-buffer org-mouse-main-buffer (org-agenda-show-priority))
-	    :visible (not org-mouse-direct)]
-	   ,@(if org-mouse-direct '("--") nil)
-	   ["New Heading" org-mouse-insert-heading :visible org-mouse-direct]
-	   ["Set Deadline"
-	    (progn (org-mouse-end-headline) (insert " ") (org-deadline))
-	    :active (not (save-excursion
-			   (org-mouse-re-search-line org-deadline-regexp)))]
-	   ["Schedule Task"
-	    (progn (org-mouse-end-headline) (insert " ") (org-schedule))
-	    :active (not (save-excursion
-			   (org-mouse-re-search-line org-scheduled-regexp)))]
-	   ["Insert Timestamp"
-	    (progn (org-mouse-end-headline) (insert " ") (org-time-stamp nil)) t]
-					;	 ["Timestamp (inactive)" org-time-stamp-inactive t]
-	   "--"
-	   ["Archive Subtree" org-archive-subtree]
-	   ["Cut Subtree"  org-cut-special]
-	   ["Copy Subtree"  org-copy-special]
-	   ["Paste Subtree"  org-paste-special :visible org-mouse-direct]
-	   ("Sort Children"
-	    ["Alphabetically" (org-sort-entries nil ?a)]
-	    ["Numerically" (org-sort-entries nil ?n)]
-	    ["By Time/Date" (org-sort-entries nil ?t)]
-	    "--"
-	    ["Reverse Alphabetically" (org-sort-entries nil ?A)]
-	    ["Reverse Numerically" (org-sort-entries nil ?N)]
-	    ["Reverse By Time/Date" (org-sort-entries nil ?T)])
-	   "--"
-	   ["Move Trees" org-mouse-move-tree :active nil]
-	   ))))
-     (t
-      (org-mouse-popup-global-menu)))))
-
-(defun org-mouse-mark-active ()
-  (and mark-active transient-mark-mode))
-
-(defun org-mouse-in-region-p (pos)
-  (and (org-mouse-mark-active)
-       (>= pos (region-beginning))
-       (<  pos (region-end))))
-
-(defun org-mouse-down-mouse (event)
-  (interactive "e")
-  (setq this-command last-command)
-  (unless (and (= 1 (event-click-count event))
-	       (org-mouse-in-region-p (posn-point (event-start event))))
-    (mouse-drag-region event)))
-
-(add-hook 'org-mode-hook
-	  #'(lambda ()
-	      (setq org-mouse-context-menu-function 'org-mouse-context-menu)
-
-	      (when (memq 'context-menu org-mouse-features)
-		(org-defkey org-mouse-map [mouse-3] nil)
-		(org-defkey org-mode-map [mouse-3] 'org-mouse-show-context-menu))
-	      (org-defkey org-mode-map [down-mouse-1] 'org-mouse-down-mouse)
-	      (when (memq 'context-menu org-mouse-features)
-		(org-defkey org-mouse-map [C-drag-mouse-1] 'org-mouse-move-tree)
-		(org-defkey org-mouse-map [C-down-mouse-1] 'org-mouse-move-tree-start))
-	      (when (memq 'yank-link org-mouse-features)
-		(org-defkey org-mode-map [S-mouse-2] 'org-mouse-yank-link)
-		(org-defkey org-mode-map [drag-mouse-3] 'org-mouse-yank-link))
-	      (when (memq 'move-tree org-mouse-features)
-		(org-defkey org-mouse-map [drag-mouse-3] 'org-mouse-move-tree)
-		(org-defkey org-mouse-map [down-mouse-3] 'org-mouse-move-tree-start))
-
-	      (when (memq 'activate-stars org-mouse-features)
-		(font-lock-add-keywords
-		 nil
-		 `((,org-outline-regexp
-		    0 `(face org-link mouse-face highlight keymap ,org-mouse-map)
-		    'prepend))
-		 t))
-
-	      (when (memq 'activate-bullets org-mouse-features)
-		(font-lock-add-keywords
-		 nil
-		 `(("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +"
-		    (1 `(face org-link keymap ,org-mouse-map mouse-face highlight)
-		       'prepend)))
-		 t))
-
-	      (when (memq 'activate-checkboxes org-mouse-features)
-		(font-lock-add-keywords
-		 nil
-		 `(("^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[ X]\\]\\)"
-		    (2 `(face bold keymap ,org-mouse-map mouse-face highlight) t)))
-		 t))
-
-	      (defadvice org-open-at-point (around org-mouse-open-at-point activate)
-		(let ((context (org-context)))
-		  (cond
-		   ((assq :headline-stars context) (org-cycle))
-		   ((assq :checkbox context) (org-toggle-checkbox))
-		   ((assq :item-bullet context)
-		    (let ((org-cycle-include-plain-lists t)) (org-cycle)))
-		   ((org-footnote-at-reference-p) nil)
-		   (t ad-do-it))))))
-
-(defun org-mouse-move-tree-start (_event)
-  (interactive "e")
-  (message "Same line: promote/demote, (***):move before, (text): make a child"))
-
-
-(defun org-mouse-make-marker (position)
-  (with-current-buffer (window-buffer (posn-window position))
-    (copy-marker (posn-point position))))
-
-(defun org-mouse-move-tree (event)
-  ;; todo: handle movements between different buffers
-  (interactive "e")
-  (save-excursion
-    (let* ((start (org-mouse-make-marker (event-start event)))
-	   (end (org-mouse-make-marker (event-end event)))
-	   (sbuf (marker-buffer start))
-	   (ebuf (marker-buffer end)))
-
-      (when (and sbuf ebuf)
-	(set-buffer sbuf)
-	(goto-char start)
-	(org-back-to-heading)
-	(if (and (eq sbuf ebuf)
-		 (equal
-		  (point)
-		  (save-excursion (goto-char end) (org-back-to-heading) (point))))
-	    ;; if the same line then promote/demote
-	    (if (>= end start) (org-demote-subtree) (org-promote-subtree))
-	  ;; if different lines then move
-	  (org-cut-subtree)
-
-	  (set-buffer ebuf)
-	  (goto-char end)
-	  (org-back-to-heading)
-	  (when  (and (eq sbuf ebuf)
-		      (equal
-		       (point)
-		       (save-excursion (goto-char start)
-				       (org-back-to-heading) (point))))
-	    (progn (org-end-of-subtree nil t)
-		   (unless (eobp) (backward-char)))
-	    (end-of-line)
-	    (if (eobp) (newline) (forward-char)))
-
-	  (when (looking-at org-outline-regexp)
-	    (let ((level (- (match-end 0) (match-beginning 0))))
-	      (when (> end (match-end 0))
-		(progn (org-end-of-subtree nil t)
-		       (unless (eobp) (backward-char)))
-		(end-of-line)
-		(if (eobp) (newline) (forward-char))
-		(setq level (1+ level)))
-	      (org-paste-subtree level)
-	      (save-excursion
-		(progn (org-end-of-subtree nil t)
-		       (unless (eobp) (backward-char)))
-		(when (bolp) (delete-char -1))))))))))
-
-
-(defun org-mouse-transform-to-outline ()
-  (interactive)
-  (org-back-to-heading)
-  (let ((minlevel 1000)
-	(replace-text (concat (match-string 0) "* ")))
-    (beginning-of-line 2)
-    (save-excursion
-      (while (not (or (eobp) (looking-at org-outline-regexp)))
-	(when (looking-at org-mouse-plain-list-regexp)
-	  (setq minlevel (min minlevel (- (match-end 1) (match-beginning 1)))))
-	(forward-line)))
-    (while (not (or (eobp) (looking-at org-outline-regexp)))
-      (when (and (looking-at org-mouse-plain-list-regexp)
-		 (eq minlevel (- (match-end 1) (match-beginning 1))))
-	(replace-match replace-text))
-      (forward-line))))
-
-(defvar org-mouse-cmd) ;dynamically scoped from `org-with-remote-undo'.
-
-(defun org-mouse-do-remotely (command)
-  ;;  (org-agenda-check-no-diary)
-  (when (get-text-property (point) 'org-marker)
-    (let* ((anticol (- (point-at-eol) (point)))
-	   (marker (get-text-property (point) 'org-marker))
-	   (buffer (marker-buffer marker))
-	   (pos (marker-position marker))
-	   (hdmarker (get-text-property (point) 'org-hd-marker))
-	   (buffer-read-only nil)
-	   (newhead "--- removed ---")
-	   (org-mouse-direct nil)
-	   (org-mouse-main-buffer (current-buffer)))
-      (when (eq (with-current-buffer buffer major-mode) 'org-mode)
-	(let ((endmarker (with-current-buffer buffer
-			   (org-end-of-subtree nil t)
-			   (unless (eobp) (forward-char 1))
-			   (point-marker))))
-	  (org-with-remote-undo buffer
-	    (with-current-buffer buffer
-	      (widen)
-	      (goto-char pos)
-	      (org-show-hidden-entry)
-	      (save-excursion
-		(and (outline-next-heading)
-		     (org-flag-heading nil)))   ; show the next heading
-	      (org-back-to-heading)
-	      (setq marker (point-marker))
-	      (goto-char (max (point-at-bol) (- (point-at-eol) anticol)))
-	      (funcall command)
-	      (message "_cmd: %S" org-mouse-cmd)
-	      (message "this-command: %S" this-command)
-	      (unless (eq (marker-position marker) (marker-position endmarker))
-		(setq newhead (org-get-heading))))
-
-	    (beginning-of-line 1)
-	    (save-excursion
-	      (org-agenda-change-all-lines newhead hdmarker 'fixface))))
-	t))))
-
-(defun org-mouse-agenda-context-menu (&optional _event)
-  (or (org-mouse-do-remotely 'org-mouse-context-menu)
-      (popup-menu
-       '("Agenda"
-	 ("Agenda Files")
-	 "--"
-	 ["Undo" (progn (message "last command: %S" last-command) (setq this-command 'org-agenda-undo) (org-agenda-undo))
-	  :visible (if (eq last-command 'org-agenda-undo)
-		       org-agenda-pending-undo-list
-		     org-agenda-undo-list)]
-	 ["Rebuild Buffer" org-agenda-redo t]
-	 ["New Diary Entry"
-	  org-agenda-diary-entry (org-agenda-check-type nil 'agenda) t]
-	 "--"
-	 ["Goto Today" org-agenda-goto-today
-	  (org-agenda-check-type nil 'agenda) t]
-	 ["Display Calendar" org-agenda-goto-calendar
-	  (org-agenda-check-type nil 'agenda) t]
-	 ("Calendar Commands"
-	  ["Phases of the Moon" org-agenda-phases-of-moon
-	   (org-agenda-check-type nil 'agenda)]
-	  ["Sunrise/Sunset" org-agenda-sunrise-sunset
-	   (org-agenda-check-type nil 'agenda)]
-	  ["Holidays" org-agenda-holidays
-	   (org-agenda-check-type nil 'agenda)]
-	  ["Convert" org-agenda-convert-date
-	   (org-agenda-check-type nil 'agenda)]
-	  "--"
-	  ["Create iCalendar file" org-icalendar-combine-agenda-files t])
-	 "--"
-	 ["Day View" org-agenda-day-view
-	  :active (org-agenda-check-type nil 'agenda)
-	  :style radio :selected (eq org-agenda-current-span 'day)]
-	 ["Week View" org-agenda-week-view
-	  :active (org-agenda-check-type nil 'agenda)
-	  :style radio :selected (eq org-agenda-current-span 'week)]
-	 "--"
-	 ["Show Logbook entries" org-agenda-log-mode
-	  :style toggle :selected org-agenda-show-log
-	  :active (org-agenda-check-type nil 'agenda)]
-	 ["Include Diary" org-agenda-toggle-diary
-	  :style toggle :selected org-agenda-include-diary
-	  :active (org-agenda-check-type nil 'agenda)]
-	 ["Use Time Grid" org-agenda-toggle-time-grid
-	  :style toggle :selected org-agenda-use-time-grid
-	  :active (org-agenda-check-type nil 'agenda)]
-	 ["Follow Mode" org-agenda-follow-mode
-	  :style toggle :selected org-agenda-follow-mode]
-	 "--"
-	 ["Quit" org-agenda-quit t]
-	 ["Exit and Release Buffers" org-agenda-exit t]
-	 ))))
-
-(defun org-mouse-get-gesture (event)
-  (let ((startxy (posn-x-y (event-start event)))
-	(endxy (posn-x-y (event-end event))))
-    (if (< (car startxy) (car endxy)) :right :left)))
-
-
-					; (setq org-agenda-mode-hook nil)
-(defvar org-agenda-mode-map)
-(add-hook 'org-agenda-mode-hook
-	  (lambda ()
-	    (setq org-mouse-context-menu-function 'org-mouse-agenda-context-menu)
-	    (org-defkey org-agenda-mode-map [mouse-3] 'org-mouse-show-context-menu)
-	    (org-defkey org-agenda-mode-map [down-mouse-3] 'org-mouse-move-tree-start)
-	    (org-defkey org-agenda-mode-map [C-mouse-4] 'org-agenda-earlier)
-	    (org-defkey org-agenda-mode-map [C-mouse-5] 'org-agenda-later)
-	    (org-defkey org-agenda-mode-map [drag-mouse-3]
-			(lambda (event) (interactive "e")
-			  (cl-case (org-mouse-get-gesture event)
-			    (:left (org-agenda-earlier 1))
-			    (:right (org-agenda-later 1)))))))
-
-(provide 'org-mouse)
-
-;;; org-mouse.el ends here
diff --git a/elpa/org-9.1.14/org-mouse.elc b/elpa/org-9.1.14/org-mouse.elc
deleted file mode 100644
index c09b7f3..0000000
--- a/elpa/org-9.1.14/org-mouse.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-pcomplete.el b/elpa/org-9.1.14/org-pcomplete.el
deleted file mode 100644
index 88a2e10..0000000
--- a/elpa/org-9.1.14/org-pcomplete.el
+++ /dev/null
@@ -1,386 +0,0 @@
-;;; org-pcomplete.el --- In-buffer Completion Code -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;;         John Wiegley <johnw at gnu dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Code:
-
-;;;; Require other packages
-
-(require 'org-macs)
-(require 'org-compat)
-(require 'pcomplete)
-
-(declare-function org-make-org-heading-search-string "org" (&optional string))
-(declare-function org-get-buffer-tags "org" ())
-(declare-function org-get-tags "org" ())
-(declare-function org-buffer-property-keys "org"
-		  (&optional specials defaults columns ignore-malformed))
-(declare-function org-entry-properties "org" (&optional pom which))
-(declare-function org-tag-alist-to-string "org" (alist &optional skip-key))
-
-;;;; Customization variables
-
-(defvar org-drawer-regexp)
-(defvar org-property-re)
-(defvar org-current-tag-alist)
-
-(defun org-thing-at-point ()
-  "Examine the thing at point and let the caller know what it is.
-The return value is a string naming the thing at point."
-  (let ((beg1 (save-excursion
-		(skip-chars-backward "[:alnum:]-_@")
-		(point)))
-	(beg (save-excursion
-	       (skip-chars-backward "a-zA-Z0-9-_:$")
-	       (point)))
-	(line-to-here (buffer-substring (point-at-bol) (point))))
-    (cond
-     ((string-match "\\`[ \t]*#\\+begin: clocktable[ \t]+" line-to-here)
-      (cons "block-option" "clocktable"))
-     ((string-match "\\`[ \t]*#\\+begin_src[ \t]+" line-to-here)
-      (cons "block-option" "src"))
-     ((save-excursion
-	(re-search-backward "^[ \t]*#\\+\\([A-Z_]+\\):.*"
-			    (line-beginning-position) t))
-      (cons "file-option" (match-string-no-properties 1)))
-     ((string-match "\\`[ \t]*#\\+[a-zA-Z_]*\\'" line-to-here)
-      (cons "file-option" nil))
-     ((equal (char-before beg) ?\[)
-      (cons "link" nil))
-     ((equal (char-before beg) ?\\)
-      (cons "tex" nil))
-     ((string-match "\\`\\*+[ \t]+\\'"
-		    (buffer-substring (point-at-bol) beg))
-      (cons "todo" nil))
-     ((equal (char-before beg) ?*)
-      (cons "searchhead" nil))
-     ((and (equal (char-before beg1) ?:)
-	   (equal (char-after (point-at-bol)) ?*))
-      (cons "tag" nil))
-     ((and (equal (char-before beg1) ?:)
-	   (not (equal (char-after (point-at-bol)) ?*))
-	   (save-excursion
-	     (move-beginning-of-line 1)
-	     (skip-chars-backward "[ \t\n]")
-	     ;; org-drawer-regexp matches a whole line but while
-	     ;; looking-back, we just ignore trailing whitespaces
-	     (or (looking-back (substring org-drawer-regexp 0 -1)
-			       (line-beginning-position))
-		 (looking-back org-property-re
-			       (line-beginning-position)))))
-      (cons "prop" nil))
-     ((and (equal (char-before beg1) ?:)
-	   (not (equal (char-after (point-at-bol)) ?*)))
-      (cons "drawer" nil))
-     (t nil))))
-
-(defun org-command-at-point ()
-  "Return the qualified name of the Org completion entity at point.
-When completing for #+STARTUP, for example, this function returns
-\"file-option/startup\"."
-  (let ((thing (org-thing-at-point)))
-    (cond
-     ((string= "file-option" (car thing))
-      (concat (car thing)
-	      (and (cdr thing) (concat "/" (downcase (cdr thing))))))
-     ((string= "block-option" (car thing))
-      (concat (car thing) "/" (downcase (cdr thing))))
-     (t (car thing)))))
-
-(defun org-parse-arguments ()
-  "Parse whitespace separated arguments in the current region."
-  (let ((begin (line-beginning-position))
-	(end (line-end-position))
-	begins args)
-    (save-restriction
-      (narrow-to-region begin end)
-      (save-excursion
-	(goto-char (point-min))
-	(while (not (eobp))
-	  (skip-chars-forward " \t\n[")
-	  (setq begins (cons (point) begins))
-	  (skip-chars-forward "^ \t\n[")
-	  (setq args (cons (buffer-substring-no-properties
-			    (car begins) (point))
-			   args)))
-	(cons (reverse args) (reverse begins))))))
-
-(defun org-pcomplete-initial ()
-  "Calls the right completion function for first argument completions."
-  (ignore
-   (funcall (or (pcomplete-find-completion-function
-		 (car (org-thing-at-point)))
-		pcomplete-default-completion-function))))
-
-(defvar org-options-keywords)		 ; From org.el
-(defvar org-element-affiliated-keywords) ; From org-element.el
-(declare-function org-get-export-keywords "org" ())
-(defun pcomplete/org-mode/file-option ()
-  "Complete against all valid file options."
-  (require 'org-element)
-  (pcomplete-here
-   (org-pcomplete-case-double
-    (append (mapcar (lambda (keyword) (concat keyword " "))
-		    org-options-keywords)
-	    (mapcar (lambda (keyword) (concat keyword ": "))
-		    org-element-affiliated-keywords)
-	    (let (block-names)
-	      (dolist (name
-		       '("CENTER" "COMMENT" "EXAMPLE" "EXPORT" "QUOTE" "SRC"
-			 "VERSE")
-		       block-names)
-		(push (format "END_%s" name) block-names)
-		(push (concat "BEGIN_"
-			      name
-			      ;; Since language is compulsory in
-			      ;; export blocks source blocks, add
-			      ;; a space.
-			      (and (member name '("EXPORT" "SRC")) " "))
-		      block-names)
-		(push (format "ATTR_%s: " name) block-names)))
-	    (mapcar (lambda (keyword) (concat keyword ": "))
-		    (org-get-export-keywords))))
-   (substring pcomplete-stub 2)))
-
-(defun pcomplete/org-mode/file-option/author ()
-  "Complete arguments for the #+AUTHOR file option."
-  (pcomplete-here (list user-full-name)))
-
-(defvar org-time-stamp-formats)
-(defun pcomplete/org-mode/file-option/date ()
-  "Complete arguments for the #+DATE file option."
-  (pcomplete-here (list (format-time-string (car org-time-stamp-formats)))))
-
-(defun pcomplete/org-mode/file-option/email ()
-  "Complete arguments for the #+EMAIL file option."
-  (pcomplete-here (list user-mail-address)))
-
-(defvar org-export-exclude-tags)
-(defun pcomplete/org-mode/file-option/exclude_tags ()
-  "Complete arguments for the #+EXCLUDE_TAGS file option."
-  (require 'ox)
-  (pcomplete-here
-   (and org-export-exclude-tags
-	(list (mapconcat 'identity org-export-exclude-tags " ")))))
-
-(defvar org-file-tags)
-(defun pcomplete/org-mode/file-option/filetags ()
-  "Complete arguments for the #+FILETAGS file option."
-  (pcomplete-here (and org-file-tags (mapconcat 'identity org-file-tags " "))))
-
-(defvar org-export-default-language)
-(defun pcomplete/org-mode/file-option/language ()
-  "Complete arguments for the #+LANGUAGE file option."
-  (require 'ox)
-  (pcomplete-here
-   (pcomplete-uniqify-list
-    (list org-export-default-language "en"))))
-
-(defvar org-default-priority)
-(defvar org-highest-priority)
-(defvar org-lowest-priority)
-(defun pcomplete/org-mode/file-option/priorities ()
-  "Complete arguments for the #+PRIORITIES file option."
-  (pcomplete-here (list (format "%c %c %c"
-				org-highest-priority
-				org-lowest-priority
-				org-default-priority))))
-
-(defvar org-export-select-tags)
-(defun pcomplete/org-mode/file-option/select_tags ()
-  "Complete arguments for the #+SELECT_TAGS file option."
-  (require 'ox)
-  (pcomplete-here
-   (and org-export-select-tags
-	(list (mapconcat 'identity org-export-select-tags " ")))))
-
-(defvar org-startup-options)
-(defun pcomplete/org-mode/file-option/startup ()
-  "Complete arguments for the #+STARTUP file option."
-  (while (pcomplete-here
-	  (let ((opts (pcomplete-uniqify-list
-		       (mapcar 'car org-startup-options))))
-	    ;; Some options are mutually exclusive, and shouldn't be completed
-	    ;; against if certain other options have already been seen.
-	    (dolist (arg pcomplete-args)
-	      (cond
-	       ((string= arg "hidestars")
-		(setq opts (delete "showstars" opts)))))
-	    opts))))
-
-(defun pcomplete/org-mode/file-option/tags ()
-  "Complete arguments for the #+TAGS file option."
-  (pcomplete-here
-   (list (org-tag-alist-to-string org-current-tag-alist))))
-
-(defun pcomplete/org-mode/file-option/title ()
-  "Complete arguments for the #+TITLE file option."
-  (pcomplete-here
-   (let ((visited-file (buffer-file-name (buffer-base-buffer))))
-     (list (or (and visited-file
-		    (file-name-sans-extension
-		     (file-name-nondirectory visited-file)))
-	       (buffer-name (buffer-base-buffer)))))))
-
-
-(declare-function org-export-backend-options "ox" (cl-x) t)
-(defun pcomplete/org-mode/file-option/options ()
-  "Complete arguments for the #+OPTIONS file option."
-  (while (pcomplete-here
-	  (pcomplete-uniqify-list
-	   (append
-	    ;; Hard-coded OPTION items always available.
-	    '("H:" "\\n:" "num:" "timestamp:" "arch:" "author:" "c:"
-	      "creator:" "date:" "d:" "email:" "*:" "e:" "::" "f:"
-	      "inline:" "tex:" "p:" "pri:" "':" "-:" "stat:" "^:" "toc:"
-	      "|:" "tags:" "tasks:" "<:" "todo:")
-	    ;; OPTION items from registered back-ends.
-	    (let (items)
-	      (dolist (backend (bound-and-true-p
-				org-export-registered-backends))
-		(dolist (option (org-export-backend-options backend))
-		  (let ((item (nth 2 option)))
-		    (when item (push (concat item ":") items)))))
-	      items))))))
-
-(defun pcomplete/org-mode/file-option/infojs_opt ()
-  "Complete arguments for the #+INFOJS_OPT file option."
-  (while (pcomplete-here
-	  (pcomplete-uniqify-list
-	   (mapcar (lambda (item) (format "%s:" (car item)))
-		   (bound-and-true-p org-html-infojs-opts-table))))))
-
-(defun pcomplete/org-mode/file-option/bind ()
-  "Complete arguments for the #+BIND file option, which are variable names."
-  (let (vars)
-    (mapatoms
-     (lambda (a) (if (boundp a) (setq vars (cons (symbol-name a) vars)))))
-    (pcomplete-here vars)))
-
-(defvar org-link-abbrev-alist-local)
-(defvar org-link-abbrev-alist)
-(defun pcomplete/org-mode/link ()
-  "Complete against defined #+LINK patterns."
-  (pcomplete-here
-   (pcomplete-uniqify-list
-    (copy-sequence
-     (append (mapcar 'car org-link-abbrev-alist-local)
-	     (mapcar 'car org-link-abbrev-alist))))))
-
-(defvar org-entities)
-(defun pcomplete/org-mode/tex ()
-  "Complete against TeX-style HTML entity names."
-  (require 'org-entities)
-  (while (pcomplete-here
-	  (pcomplete-uniqify-list (remove nil (mapcar 'car-safe org-entities)))
-	  (substring pcomplete-stub 1))))
-
-(defvar org-todo-keywords-1)
-(defun pcomplete/org-mode/todo ()
-  "Complete against known TODO keywords."
-  (pcomplete-here (pcomplete-uniqify-list (copy-sequence org-todo-keywords-1))))
-
-(defvar org-todo-line-regexp)
-(defun pcomplete/org-mode/searchhead ()
-  "Complete against all headings.
-This needs more work, to handle headings with lots of spaces in them."
-  (while
-      (pcomplete-here
-       (save-excursion
-	 (goto-char (point-min))
-	 (let (tbl)
-	   (let ((case-fold-search nil))
-	     (while (re-search-forward org-todo-line-regexp nil t)
-	       (push (org-make-org-heading-search-string
-		      (match-string-no-properties 3))
-		     tbl)))
-	   (pcomplete-uniqify-list tbl)))
-       (substring pcomplete-stub 1))))
-
-(defun pcomplete/org-mode/tag ()
-  "Complete a tag name.  Omit tags already set."
-  (while (pcomplete-here
-	  (mapcar (lambda (x) (concat x ":"))
-		  (let ((lst (pcomplete-uniqify-list
-			      (or (remq
-				   nil
-				   (mapcar (lambda (x) (org-string-nw-p (car x)))
-					   org-current-tag-alist))
-				  (mapcar #'car (org-get-buffer-tags))))))
-		    (dolist (tag (org-get-tags))
-		      (setq lst (delete tag lst)))
-		    lst))
-	  (and (string-match ".*:" pcomplete-stub)
-	       (substring pcomplete-stub (match-end 0))))))
-
-(defun pcomplete/org-mode/prop ()
-  "Complete a property name.  Omit properties already set."
-  (pcomplete-here
-   (mapcar (lambda (x)
-	     (concat x ": "))
-	   (let ((lst (pcomplete-uniqify-list
-		       (copy-sequence
-			(org-buffer-property-keys nil t t t)))))
-	     (dolist (prop (org-entry-properties))
-	       (setq lst (delete (car prop) lst)))
-	     lst))
-   (substring pcomplete-stub 1)))
-
-(defun pcomplete/org-mode/block-option/src ()
-  "Complete the arguments of a begin_src block.
-Complete a language in the first field, the header arguments and switches."
-  (pcomplete-here
-   (mapcar
-    (lambda(x) (symbol-name (nth 3 x)))
-    (cdr (car (cdr (memq :key-type (plist-get
-				    (symbol-plist
-				     'org-babel-load-languages)
-				    'custom-type)))))))
-  (while (pcomplete-here
-	  '("-n" "-r" "-l"
-	    ":cache" ":colnames" ":comments" ":dir" ":eval" ":exports"
-	    ":file" ":hlines" ":no-expand" ":noweb" ":results" ":rownames"
-	    ":session" ":shebang" ":tangle" ":tangle-mode" ":var"))))
-
-(defun pcomplete/org-mode/block-option/clocktable ()
-  "Complete keywords in a clocktable line."
-  (while (pcomplete-here '(":maxlevel" ":scope" ":lang"
-			   ":tstart" ":tend" ":block" ":step"
-			   ":stepskip0" ":fileskip0"
-			   ":emphasize" ":link" ":narrow" ":indent"
-			   ":tcolumns" ":level" ":compact" ":timestamp"
-			   ":formula" ":formatter" ":wstart" ":mstart"))))
-
-(defun org-pcomplete-case-double (list)
-  "Return list with both upcase and downcase version of all strings in LIST."
-  (let (e res)
-    (while (setq e (pop list))
-      (setq res (cons (downcase e) (cons (upcase e) res))))
-    (nreverse res)))
-
-;;;; Finish up
-
-(provide 'org-pcomplete)
-
-;;; org-pcomplete.el ends here
diff --git a/elpa/org-9.1.14/org-pcomplete.elc b/elpa/org-9.1.14/org-pcomplete.elc
deleted file mode 100644
index 5040157..0000000
--- a/elpa/org-9.1.14/org-pcomplete.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-pkg.el b/elpa/org-9.1.14/org-pkg.el
deleted file mode 100644
index dc48174..0000000
--- a/elpa/org-9.1.14/org-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;; Generated package description from org.el
-(define-package "org" "9.1.14" "Outline-based notes management and organizer" 'nil :url "http://elpa.gnu.org/packages/org.html" :keywords '("outlines" "hypermedia" "calendar" "wp"))
diff --git a/elpa/org-9.1.14/org-pkg.elc b/elpa/org-9.1.14/org-pkg.elc
deleted file mode 100644
index bae25e0..0000000
--- a/elpa/org-9.1.14/org-pkg.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-plot.el b/elpa/org-9.1.14/org-plot.el
deleted file mode 100644
index ebd7af4..0000000
--- a/elpa/org-9.1.14/org-plot.el
+++ /dev/null
@@ -1,354 +0,0 @@
-;;; org-plot.el --- Support for Plotting from Org -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
-;;
-;; Author: Eric Schulte <schulte dot eric at gmail dot com>
-;; Keywords: tables, plotting
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Borrows ideas and a couple of lines of code from org-exp.el.
-
-;; Thanks to the Org mailing list for testing and implementation and
-;; feature suggestions
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org)
-(require 'org-table)
-
-(declare-function gnuplot-delchar-or-maybe-eof "ext:gnuplot" (arg))
-(declare-function gnuplot-mode "ext:gnuplot" ())
-(declare-function gnuplot-send-buffer-to-gnuplot "ext:gnuplot" ())
-
-(defvar org-plot/gnuplot-default-options
-  '((:plot-type . 2d)
-    (:with . lines)
-    (:ind . 0))
-  "Default options to gnuplot used by `org-plot/gnuplot'.")
-
-(defvar org-plot-timestamp-fmt nil)
-
-(defun org-plot/add-options-to-plist (p options)
-  "Parse an OPTIONS line and set values in the property list P.
-Returns the resulting property list."
-  (when options
-    (let ((op '(("type"    . :plot-type)
-		("script"  . :script)
-		("line"    . :line)
-		("set"     . :set)
-		("title"   . :title)
-		("ind"     . :ind)
-		("deps"    . :deps)
-		("with"    . :with)
-		("file"    . :file)
-		("labels"  . :labels)
-		("map"     . :map)
-		("timeind" . :timeind)
-		("timefmt" . :timefmt)))
-	  (multiples '("set" "line"))
-	  (regexp ":\\([\"][^\"]+?[\"]\\|[(][^)]+?[)]\\|[^ \t\n\r;,.]*\\)")
-	  (start 0))
-      (dolist (o op)
-	(if (member (car o) multiples) ;; keys with multiple values
-	    (while (string-match
-		    (concat (regexp-quote (car o)) regexp)
-		    options start)
-	      (setq start (match-end 0))
-	      (setq p (plist-put p (cdr o)
-				 (cons (car (read-from-string
-					     (match-string 1 options)))
-				       (plist-get p (cdr o)))))
-	      p)
-	  (if (string-match (concat (regexp-quote (car o)) regexp)
-			    options)
-	      (setq p (plist-put p (cdr o)
-				 (car (read-from-string
-				       (match-string 1 options))))))))))
-  p)
-
-(defun org-plot/goto-nearest-table ()
-  "Move the point forward to the beginning of nearest table.
-Return value is the point at the beginning of the table."
-  (interactive) (move-beginning-of-line 1)
-  (while (not (or (org-at-table-p) (< 0 (forward-line 1)))))
-  (goto-char (org-table-begin)))
-
-(defun org-plot/collect-options (&optional params)
-  "Collect options from an org-plot `#+Plot:' line.
-Accepts an optional property list PARAMS, to which the options
-will be added.  Returns the resulting property list."
-  (interactive)
-  (let ((line (thing-at-point 'line)))
-    (if (string-match "#\\+PLOT: +\\(.*\\)$" line)
-	(org-plot/add-options-to-plist params (match-string 1 line))
-      params)))
-
-(defun org-plot-quote-timestamp-field (s)
-  "Convert field S from timestamp to Unix time and export to gnuplot."
-  (format-time-string org-plot-timestamp-fmt (org-time-string-to-time s)))
-
-(defun org-plot-quote-tsv-field (s)
-  "Quote field S for export to gnuplot."
-  (if (string-match org-table-number-regexp s) s
-    (if (string-match org-ts-regexp3 s)
-	(org-plot-quote-timestamp-field s)
-      (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\""))))
-
-(defun org-plot/gnuplot-to-data (table data-file params)
-  "Export TABLE to DATA-FILE in a format readable by gnuplot.
-Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
-  (with-temp-file
-      data-file
-    (setq-local org-plot-timestamp-fmt (or
-					(plist-get params :timefmt)
-					"%Y-%m-%d-%H:%M:%S"))
-    (insert (orgtbl-to-generic
-	     table
-	     (org-combine-plists
-	      '(:sep "\t" :fmt org-plot-quote-tsv-field)
-	      params))))
-  nil)
-
-(defun org-plot/gnuplot-to-grid-data (table data-file params)
-  "Export the data in TABLE to DATA-FILE for gnuplot.
-This means in a format appropriate for grid plotting by gnuplot.
-PARAMS specifies which columns of TABLE should be plotted as independent
-and dependant variables."
-  (interactive)
-  (let* ((ind (- (plist-get params :ind) 1))
-	 (deps (if (plist-member params :deps)
-		   (mapcar (lambda (val) (- val 1)) (plist-get params :deps))
-		 (let (collector)
-		   (dotimes (col (length (nth 0 table)))
-		     (setf collector (cons col collector)))
-		   collector)))
-	 (counter 0)
-	 row-vals)
-    (when (>= ind 0) ;; collect values of ind col
-      (setf row-vals (mapcar (lambda (row) (setf counter (+ 1 counter))
-			       (cons counter (nth ind row))) table)))
-    (when (or deps (>= ind 0)) ;; remove non-plotting columns
-      (setf deps (delq ind deps))
-      (setf table (mapcar (lambda (row)
-			    (dotimes (col (length row))
-			      (unless (memq col deps)
-				(setf (nth col row) nil)))
-			    (delq nil row))
-			  table)))
-    ;; write table to gnuplot grid datafile format
-    (with-temp-file data-file
-      (let ((num-rows (length table)) (num-cols (length (nth 0 table)))
-	    (gnuplot-row (lambda (col row value)
-			   (setf col (+ 1 col)) (setf row (+ 1 row))
-			   (format "%f  %f  %f\n%f  %f  %f\n"
-				   col (- row 0.5) value ;; lower edge
-				   col (+ row 0.5) value))) ;; upper edge
-	    front-edge back-edge)
-	(dotimes (col num-cols)
-	  (dotimes (row num-rows)
-	    (setf back-edge
-		  (concat back-edge
-			  (funcall gnuplot-row (- col 1) row
-				   (string-to-number (nth col (nth row table))))))
-	    (setf front-edge
-		  (concat front-edge
-			  (funcall gnuplot-row col row
-				   (string-to-number (nth col (nth row table)))))))
-	  ;; only insert once per row
-	  (insert back-edge) (insert "\n") ;; back edge
-	  (insert front-edge) (insert "\n") ;; front edge
-	  (setf back-edge "") (setf front-edge ""))))
-    row-vals))
-
-(defun org-plot/gnuplot-script (data-file num-cols params &optional preface)
-  "Write a gnuplot script to DATA-FILE respecting the options set in PARAMS.
-NUM-COLS controls the number of columns plotted in a 2-d plot.
-Optional argument PREFACE returns only option parameters in a
-manner suitable for prepending to a user-specified script."
-  (let* ((type (plist-get params :plot-type))
-	 (with (if (eq type 'grid) 'pm3d (plist-get params :with)))
-	 (sets (plist-get params :set))
-	 (lines (plist-get params :line))
-	 (map (plist-get params :map))
-	 (title (plist-get params :title))
-	 (file (plist-get params :file))
-	 (ind (plist-get params :ind))
-	 (time-ind (plist-get params :timeind))
-	 (timefmt (plist-get params :timefmt))
-	 (text-ind (plist-get params :textind))
-	 (deps (if (plist-member params :deps) (plist-get params :deps)))
-	 (col-labels (plist-get params :labels))
-	 (x-labels (plist-get params :xlabels))
-	 (y-labels (plist-get params :ylabels))
-	 (plot-str "'%s' using %s%d%s with %s title '%s'")
-	 (plot-cmd (pcase type
-		     (`2d "plot")
-		     (`3d "splot")
-		     (`grid "splot")))
-	 (script "reset")
-	 ;; ats = add-to-script
-	 (ats (lambda (line) (setf script (concat script "\n" line))))
-	 plot-lines)
-    (when file				; output file
-      (funcall ats (format "set term %s" (file-name-extension file)))
-      (funcall ats (format "set output '%s'" file)))
-    (pcase type				; type
-      (`2d ())
-      (`3d (when map (funcall ats "set map")))
-      (`grid (funcall ats (if map "set pm3d map" "set pm3d"))))
-    (when title (funcall ats (format "set title '%s'" title))) ; title
-    (mapc ats lines)					       ; line
-    (dolist (el sets) (funcall ats (format "set %s" el)))      ; set
-    ;; Unless specified otherwise, values are TAB separated.
-    (unless (string-match-p "^set datafile separator" script)
-      (funcall ats "set datafile separator \"\\t\""))
-    (when x-labels			; x labels (xtics)
-      (funcall ats
-	       (format "set xtics (%s)"
-		       (mapconcat (lambda (pair)
-				    (format "\"%s\" %d" (cdr pair) (car pair)))
-				  x-labels ", "))))
-    (when y-labels			; y labels (ytics)
-      (funcall ats
-	       (format "set ytics (%s)"
-		       (mapconcat (lambda (pair)
-				    (format "\"%s\" %d" (cdr pair) (car pair)))
-				  y-labels ", "))))
-    (when time-ind			; timestamp index
-      (funcall ats "set xdata time")
-      (funcall ats (concat "set timefmt \""
-			   (or timefmt	; timefmt passed to gnuplot
-			       "%Y-%m-%d-%H:%M:%S") "\"")))
-    (unless preface
-      (pcase type			; plot command
-	(`2d (dotimes (col num-cols)
-	       (unless (and (eq type '2d)
-			    (or (and ind (equal (1+ col) ind))
-				(and deps (not (member (1+ col) deps)))))
-		 (setf plot-lines
-		       (cons
-			(format plot-str data-file
-				(or (and ind (> ind 0)
-					 (not text-ind)
-					 (format "%d:" ind)) "")
-				(1+ col)
-				(if text-ind (format ":xticlabel(%d)" ind) "")
-				with
-				(or (nth col col-labels)
-				    (format "%d" (1+ col))))
-			plot-lines)))))
-	(`3d
-	 (setq plot-lines (list (format "'%s' matrix with %s title ''"
-					data-file with))))
-	(`grid
-	 (setq plot-lines (list (format "'%s' with %s title ''"
-					data-file with)))))
-      (funcall ats
-	       (concat plot-cmd " " (mapconcat #'identity
-					       (reverse plot-lines)
-					       ",\\\n    "))))
-    script))
-
-;;-----------------------------------------------------------------------------
-;; facade functions
-;;;###autoload
-(defun org-plot/gnuplot (&optional params)
-  "Plot table using gnuplot.  Gnuplot options can be specified with PARAMS.
-If not given options will be taken from the +PLOT
-line directly before or after the table."
-  (interactive)
-  (require 'gnuplot)
-  (save-window-excursion
-    (delete-other-windows)
-    (when (get-buffer "*gnuplot*") ; reset *gnuplot* if it already running
-      (with-current-buffer "*gnuplot*"
-	(goto-char (point-max))))
-    (org-plot/goto-nearest-table)
-    ;; Set default options.
-    (dolist (pair org-plot/gnuplot-default-options)
-      (unless (plist-member params (car pair))
-	(setf params (plist-put params (car pair) (cdr pair)))))
-    ;; collect table and table information
-    (let* ((data-file (make-temp-file "org-plot"))
-	   (table (org-table-to-lisp))
-	   (num-cols (length (if (eq (nth 0 table) 'hline) (nth 1 table)
-			       (nth 0 table)))))
-      (run-with-idle-timer 0.1 nil #'delete-file data-file)
-      (while (eq 'hline (car table)) (setf table (cdr table)))
-      (when (eq (cadr table) 'hline)
-	(setf params
-	      (plist-put params :labels (nth 0 table))) ; headers to labels
-	(setf table (delq 'hline (cdr table)))) ; clean non-data from table
-      ;; Collect options.
-      (save-excursion (while (and (equal 0 (forward-line -1))
-				  (looking-at "[[:space:]]*#\\+"))
-			(setf params (org-plot/collect-options params))))
-      ;; Dump table to datafile (very different for grid).
-      (pcase (plist-get params :plot-type)
-	(`2d   (org-plot/gnuplot-to-data table data-file params))
-	(`3d   (org-plot/gnuplot-to-data table data-file params))
-	(`grid (let ((y-labels (org-plot/gnuplot-to-grid-data
-				table data-file params)))
-		 (when y-labels (plist-put params :ylabels y-labels)))))
-      ;; Check for timestamp ind column.
-      (let ((ind (1- (plist-get params :ind))))
-	(when (and (>= ind 0) (eq '2d (plist-get params :plot-type)))
-	  (if (= (length
-		  (delq 0 (mapcar
-			   (lambda (el)
-			     (if (string-match org-ts-regexp3 el) 0 1))
-			   (mapcar (lambda (row) (nth ind row)) table))))
-		 0)
-	      (plist-put params :timeind t)
-	    ;; Check for text ind column.
-	    (if (or (string= (plist-get params :with) "hist")
-		    (> (length
-			(delq 0 (mapcar
-				 (lambda (el)
-				   (if (string-match org-table-number-regexp el)
-				       0 1))
-				 (mapcar (lambda (row) (nth ind row)) table))))
-		       0))
-		(plist-put params :textind t)))))
-      ;; Write script.
-      (with-temp-buffer
-	(if (plist-get params :script)	; user script
-	    (progn (insert
-                    (org-plot/gnuplot-script data-file num-cols params t))
-                   (insert "\n")
-                   (insert-file-contents (plist-get params :script))
-                   (goto-char (point-min))
-                   (while (re-search-forward "$datafile" nil t)
-                     (replace-match data-file nil nil)))
-	  (insert (org-plot/gnuplot-script data-file num-cols params)))
-	;; Graph table.
-	(gnuplot-mode)
-	(gnuplot-send-buffer-to-gnuplot))
-      ;; Cleanup.
-      (bury-buffer (get-buffer "*gnuplot*")))))
-
-(provide 'org-plot)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-plot.el ends here
diff --git a/elpa/org-9.1.14/org-plot.elc b/elpa/org-9.1.14/org-plot.elc
deleted file mode 100644
index 3b1c91a..0000000
--- a/elpa/org-9.1.14/org-plot.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-protocol.el b/elpa/org-9.1.14/org-protocol.el
deleted file mode 100644
index 33957ee..0000000
--- a/elpa/org-9.1.14/org-protocol.el
+++ /dev/null
@@ -1,730 +0,0 @@
-;;; org-protocol.el --- Intercept Calls from Emacsclient to Trigger Custom Actions -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
-;;
-;; Authors: Bastien Guerry <bzg@gnu.org>
-;;       Daniel M German <dmg AT uvic DOT org>
-;;       Sebastian Rose <sebastian_rose AT gmx DOT de>
-;;       Ross Patterson <me AT rpatterson DOT net>
-;; Maintainer: Sebastian Rose <sebastian_rose AT gmx DOT de>
-;; Keywords: org, emacsclient, wp
-
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;; Commentary:
-;;
-;; Intercept calls from emacsclient to trigger custom actions.
-;;
-;; This is done by advising `server-visit-files' to scan the list of filenames
-;; for `org-protocol-the-protocol' and sub-protocols defined in
-;; `org-protocol-protocol-alist' and `org-protocol-protocol-alist-default'.
-;;
-;; Any application that supports calling external programs with an URL
-;; as argument may be used with this functionality.
-;;
-;;
-;; Usage:
-;; ------
-;;
-;;   1.) Add this to your init file (.emacs probably):
-;;
-;;       (add-to-list 'load-path "/path/to/org-protocol/")
-;;       (require 'org-protocol)
-;;
-;;   3.) Ensure emacs-server is up and running.
-;;   4.) Try this from the command line (adjust the URL as needed):
-;;
-;;       $ emacsclient \
-;;         org-protocol://store-link?url=http:%2F%2Flocalhost%2Findex.html&title=The%20title
-;;
-;;   5.) Optionally add custom sub-protocols and handlers:
-;;
-;;       (setq org-protocol-protocol-alist
-;;             '(("my-protocol"
-;;                :protocol "my-protocol"
-;;                :function my-protocol-handler-function)))
-;;
-;;       A "sub-protocol" will be found in URLs like this:
-;;
-;;           org-protocol://sub-protocol?key=val&key2=val2
-;;
-;; If it works, you can now setup other applications for using this feature.
-;;
-;;
-;; As of March 2009 Firefox users follow the steps documented on
-;; http://kb.mozillazine.org/Register_protocol, Opera setup is described here:
-;; http://www.opera.com/support/kb/view/535/
-;;
-;;
-;; Documentation
-;; -------------
-;;
-;; org-protocol.el comes with and installs handlers to open sources of published
-;; online content, store and insert the browser's URLs and cite online content
-;; by clicking on a bookmark in Firefox, Opera and probably other browsers and
-;; applications:
-;;
-;;   * `org-protocol-open-source' uses the sub-protocol \"open-source\" and maps
-;;     URLs to local filenames defined in `org-protocol-project-alist'.
-;;
-;;   * `org-protocol-store-link' stores an Org link (if Org is present) and
-;;     pushes the browsers URL to the `kill-ring' for yanking.  This handler is
-;;     triggered through the sub-protocol \"store-link\".
-;;
-;;   * Call `org-protocol-capture' by using the sub-protocol \"capture\".  If
-;;     Org is loaded, Emacs will pop-up a capture buffer and fill the
-;;     template with the data provided.  I.e. the browser's URL is inserted as an
-;;     Org-link of which the page title will be the description part.  If text
-;;     was select in the browser, that text will be the body of the entry.
-;;
-;; You may use the same bookmark URL for all those standard handlers and just
-;; adjust the sub-protocol used:
-;;
-;;     location.href='org-protocol://sub-protocol?url='+
-;;           encodeURIComponent(location.href)+'&title='+
-;;           encodeURIComponent(document.title)+'&body='+
-;;           encodeURIComponent(window.getSelection())
-;;
-;; The handler for the sub-protocol \"capture\" detects an optional template
-;; char that, if present, triggers the use of a special template.
-;; Example:
-;;
-;;     location.href='org-protocol://capture?template=x'+ ...
-;;
-;;  uses template ?x.
-;;
-;; Note that using double slashes is optional from org-protocol.el's point of
-;; view because emacsclient squashes the slashes to one.
-;;
-;;
-;; provides: 'org-protocol
-;;
-;;; Code:
-
-(require 'org)
-
-(declare-function org-publish-get-project-from-filename "ox-publish"
-		  (filename &optional up))
-(declare-function server-edit "server" (&optional arg))
-
-(defvar org-capture-link-is-already-stored)
-
-(defgroup org-protocol nil
-  "Intercept calls from emacsclient to trigger custom actions.
-
-This is done by advising `server-visit-files' to scan the list of filenames
-for `org-protocol-the-protocol' and sub-protocols defined in
-`org-protocol-protocol-alist' and `org-protocol-protocol-alist-default'."
-  :version "22.1"
-  :group 'convenience
-  :group 'org)
-
-
-;;; Variables:
-
-(defconst org-protocol-protocol-alist-default
-  '(("org-capture"     :protocol "capture"     :function org-protocol-capture  :kill-client t)
-    ("org-store-link"  :protocol "store-link"  :function org-protocol-store-link)
-    ("org-open-source" :protocol "open-source" :function org-protocol-open-source))
-  "Default protocols to use.
-See `org-protocol-protocol-alist' for a description of this variable.")
-
-(defconst org-protocol-the-protocol "org-protocol"
-  "This is the protocol to detect if org-protocol.el is loaded.
-`org-protocol-protocol-alist-default' and `org-protocol-protocol-alist' hold
-the sub-protocols that trigger the required action.  You will have to define
-just one protocol handler OS-wide (MS-Windows) or per application (Linux).
-That protocol handler should call emacsclient.")
-
-;;; User variables:
-
-(defcustom org-protocol-reverse-list-of-files t
-  "Non-nil means re-reverse the list of filenames passed on the command line.
-The filenames passed on the command line are passed to the emacs-server in
-reverse order.  Set to t (default) to re-reverse the list, i.e. use the
-sequence on the command line.  If nil, the sequence of the filenames is
-unchanged."
-  :group 'org-protocol
-  :type 'boolean)
-
-(defcustom org-protocol-project-alist nil
-  "Map URLs to local filenames for `org-protocol-open-source' (open-source).
-
-Each element of this list must be of the form:
-
-  (module-name :property value property: value ...)
-
-where module-name is an arbitrary name.  All the values are strings.
-
-Possible properties are:
-
-  :online-suffix     - the suffix to strip from the published URLs
-  :working-suffix    - the replacement for online-suffix
-  :base-url          - the base URL, e.g. http://www.example.com/project/
-                       Last slash required.
-  :working-directory - the local working directory.  This is, what base-url will
-                       be replaced with.
-  :redirects         - A list of cons cells, each of which maps a regular
-                       expression to match to a path relative to :working-directory.
-
-Example:
-
-   (setq org-protocol-project-alist
-       \\='((\"https://orgmode.org/worg/\"
-          :online-suffix \".php\"
-          :working-suffix \".org\"
-          :base-url \"https://orgmode.org/worg/\"
-          :working-directory \"/home/user/org/Worg/\")
-         (\"http://localhost/org-notes/\"
-          :online-suffix \".html\"
-          :working-suffix \".org\"
-          :base-url \"http://localhost/org/\"
-          :working-directory \"/home/user/org/\"
-          :rewrites ((\"org/?$\" . \"index.php\")))
-         (\"Hugo based blog\"
-          :base-url \"https://www.site.com/\"
-          :working-directory \"~/site/content/post/\"
-          :online-suffix \".html\"
-          :working-suffix \".md\"
-          :rewrites ((\"\\(https://site.com/[0-9]+/[0-9]+/[0-9]+/\\)\" . \".md\")))))
-
-
-   The last line tells `org-protocol-open-source' to open
-   /home/user/org/index.php, if the URL cannot be mapped to an existing
-   file, and ends with either \"org\" or \"org/\".
-
-Consider using the interactive functions `org-protocol-create' and
-`org-protocol-create-for-org' to help you filling this variable with valid contents."
-  :group 'org-protocol
-  :type 'alist)
-
-(defcustom org-protocol-protocol-alist nil
-  "Register custom handlers for org-protocol.
-
-Each element of this list must be of the form:
-
-  (module-name :protocol protocol :function func :kill-client nil)
-
-protocol - protocol to detect in a filename without trailing
-           colon and slashes.  See rfc1738 section 2.1 for more
-           on this.  If you define a protocol \"my-protocol\",
-           `org-protocol-check-filename-for-protocol' will search
-           filenames for \"org-protocol:/my-protocol\" and
-           trigger your action for every match.  `org-protocol'
-           is defined in `org-protocol-the-protocol'.  Double and
-           triple slashes are compressed to one by emacsclient.
-
-function - function that handles requests with protocol and takes
-           one argument.  If a new-style link (key=val&key2=val2)
-           is given, the argument will be a property list with
-           the values from the link.  If an old-style link is
-           given (val1/val2), the argument will be the filename
-           with all protocols stripped.
-
-           If the function returns nil, emacsclient and -server
-           do nothing.  Any non-nil return value is considered a
-           valid filename and thus passed to the server.
-
-           `org-protocol.el' provides some support for handling
-           old-style filenames, if you follow the conventions
-           used for the standard handlers in
-           `org-protocol-protocol-alist-default'.  See
-           `org-protocol-parse-parameters'.
-
-kill-client - If t, kill the client immediately, once the sub-protocol is
-           detected.  This is necessary for actions that can be interrupted by
-           `C-g' to avoid dangling emacsclients.  Note that all other command
-           line arguments but the this one will be discarded.  Greedy handlers
-           still receive the whole list of arguments though.
-
-Here is an example:
-
-  (setq org-protocol-protocol-alist
-      \\='((\"my-protocol\"
-         :protocol \"my-protocol\"
-         :function my-protocol-handler-function)
-        (\"your-protocol\"
-         :protocol \"your-protocol\"
-         :function your-protocol-handler-function)))"
-  :group 'org-protocol
-  :type '(alist))
-
-(defcustom org-protocol-default-template-key nil
-  "The default template key to use.
-This is usually a single character string but can also be a
-string with two characters."
-  :group 'org-protocol
-  :type '(choice (const nil) (string)))
-
-(defcustom org-protocol-data-separator "/+\\|\\?"
-  "The default data separator to use.
-This should be a single regexp string."
-  :group 'org-protocol
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-;;; Helper functions:
-
-(defun org-protocol-sanitize-uri (uri)
-  "Sanitize slashes to double-slashes in URI.
-Emacsclient compresses double and triple slashes."
-  (when (string-match "^\\([a-z]+\\):/" uri)
-    (let* ((splitparts (split-string uri "/+")))
-      (setq uri (concat (car splitparts) "//" (mapconcat 'identity (cdr splitparts) "/")))))
-  uri)
-
-(defun org-protocol-split-data (data &optional unhexify separator)
-  "Split the DATA argument for an org-protocol handler function.
-If UNHEXIFY is non-nil, hex-decode each split part.  If UNHEXIFY
-is a function, use that function to decode each split part.  The
-string is split at each occurrence of SEPARATOR (regexp).  If no
-SEPARATOR is specified or SEPARATOR is nil, assume \"/+\".  The
-results of that splitting are returned as a list."
-  (let* ((sep (or separator "/+\\|\\?"))
-         (split-parts (split-string data sep)))
-    (if unhexify
-	(if (fboundp unhexify)
-	    (mapcar unhexify split-parts)
-	  (mapcar 'org-link-unescape split-parts))
-      split-parts)))
-
-(defun org-protocol-flatten-greedy (param-list &optional strip-path replacement)
-  "Transform PARAM-LIST into a flat list for greedy handlers.
-
-Greedy handlers might receive a list like this from emacsclient:
-\((\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\"))
-where \"/dir/\" is the absolute path to emacsclient's working directory.  This
-function transforms it into a flat list using `org-protocol-flatten' and
-transforms the elements of that list as follows:
-
-If STRIP-PATH is non-nil, remove the \"/dir/\" prefix from all members of
-param-list.
-
-If REPLACEMENT is string, replace the \"/dir/\" prefix with it.
-
-The first parameter, the one that contains the protocols, is always changed.
-Everything up to the end of the protocols is stripped.
-
-Note, that this function will always behave as if
-`org-protocol-reverse-list-of-files' was set to t and the returned list will
-reflect that.  emacsclient's first parameter will be the first one in the
-returned list."
-  (let* ((l (org-protocol-flatten (if org-protocol-reverse-list-of-files
-				      param-list
-				    (reverse param-list))))
-	 (trigger (car l))
-	 (len 0)
-	 dir
-	 ret)
-    (when (string-match "^\\(.*\\)\\(org-protocol:/+[a-zA-z0-9][-_a-zA-z0-9]*:/+\\)\\(.*\\)" trigger)
-      (setq dir (match-string 1 trigger))
-      (setq len (length dir))
-      (setcar l (concat dir (match-string 3 trigger))))
-    (if strip-path
-	(progn
-	  (dolist (e l ret)
-	    (setq ret
-		  (append ret
-			  (list
-			   (if (stringp e)
-			       (if (stringp replacement)
-				   (setq e (concat replacement (substring e len)))
-				 (setq e (substring e len)))
-			     e)))))
-	  ret)
-      l)))
-
-(defun org-protocol-flatten (list)
-  "Transform LIST into a flat list.
-
-Greedy handlers might receive a list like this from emacsclient:
-\((\"/dir/org-protocol:/greedy:/~/path1\" (23 . 12)) (\"/dir/param\"))
-where \"/dir/\" is the absolute path to emacsclients working directory.
-This function transforms it into a flat list."
-  (if (null list) ()
-    (if (listp list)
-	(append (org-protocol-flatten (car list)) (org-protocol-flatten (cdr list)))
-      (list list))))
-
-(defun org-protocol-parse-parameters (info &optional new-style default-order)
-  "Return a property list of parameters from INFO.
-If NEW-STYLE is non-nil, treat INFO as a query string (ex:
-url=URL&title=TITLE).  If old-style links are used (ex:
-org-protocol://store-link/url/title), assign them to attributes
-following DEFAULT-ORDER.
-
-If no DEFAULT-ORDER is specified, return the list of values.
-
-If INFO is already a property list, return it unchanged."
-  (if (listp info)
-      info
-    (if new-style
-	(let ((data (org-protocol-convert-query-to-plist info))
-	      result)
-	  (while data
-	    (setq result
-		  (append
-		   result
-		   (list
-		    (pop data)
-		    (org-link-unescape (pop data))))))
-	  result)
-      (let ((data (org-protocol-split-data info t org-protocol-data-separator)))
-	(if default-order
-	    (org-protocol-assign-parameters data default-order)
-	  data)))))
-
-(defun org-protocol-assign-parameters (data default-order)
-  "Return a property list of parameters from DATA.
-Key names are taken from DEFAULT-ORDER, which should be a list of
-symbols.  If DEFAULT-ORDER is shorter than the number of values
-specified, the rest of the values are treated as :key value pairs."
-  (let (result)
-    (while default-order
-      (setq result
-	    (append result
-		    (list (pop default-order)
-			  (pop data)))))
-    (while data
-      (setq result
-	    (append result
-		    (list (intern (concat ":" (pop data)))
-			  (pop data)))))
-    result))
-
-;;; Standard protocol handlers:
-
-(defun org-protocol-store-link (fname)
-  "Process an org-protocol://store-link style url.
-Additionally store a browser URL as an org link.  Also pushes the
-link's URL to the `kill-ring'.
-
-Parameters: url, title (optional), body (optional)
-
-Old-style links such as org-protocol://store-link://URL/TITLE are
-also recognized.
-
-The location for a browser's bookmark has to look like this:
-
-  javascript:location.href = \\
-      \\='org-protocol://store-link?url=\\=' + \\
-      encodeURIComponent(location.href) + \\='&title=\\=' + \\
-      encodeURIComponent(document.title);
-
-Don't use `escape()'!  Use `encodeURIComponent()' instead.  The
-title of the page could contain slashes and the location
-definitely will.
-
-The sub-protocol used to reach this function is set in
-`org-protocol-protocol-alist'.
-
-FNAME should be a property list.  If not, an old-style link of the
-form URL/TITLE can also be used."
-  (let* ((splitparts (org-protocol-parse-parameters fname nil '(:url :title)))
-         (uri (org-protocol-sanitize-uri (plist-get splitparts :url)))
-         (title (plist-get splitparts :title)))
-    (when (boundp 'org-stored-links)
-      (push (list uri title) org-stored-links))
-    (kill-new uri)
-    (message "`%s' to insert new org-link, `%s' to insert `%s'"
-             (substitute-command-keys "`\\[org-insert-link]'")
-             (substitute-command-keys "`\\[yank]'")
-             uri))
-  nil)
-
-(defun org-protocol-capture (info)
-  "Process an org-protocol://capture style url with INFO.
-
-The sub-protocol used to reach this function is set in
-`org-protocol-protocol-alist'.
-
-This function detects an URL, title and optional text, separated
-by `/'.  The location for a browser's bookmark looks like this:
-
-  javascript:location.href = \\='org-protocol://capture?url=\\='+ \\
-        encodeURIComponent(location.href) + \\='&title=\\=' \\
-        encodeURIComponent(document.title) + \\='&body=\\=' + \\
-        encodeURIComponent(window.getSelection())
-
-By default, it uses the character `org-protocol-default-template-key',
-which should be associated with a template in `org-capture-templates'.
-You may specify the template with a template= query parameter, like this:
-
-  javascript:location.href = \\='org-protocol://capture?template=b\\='+ ...
-
-Now template ?b will be used."
-  (if (and (boundp 'org-stored-links)
-	   (org-protocol-do-capture info))
-      (message "Item captured."))
-  nil)
-
-(defun org-protocol-convert-query-to-plist (query)
-  "Convert QUERY key=value pairs in the URL to a property list."
-  (if query
-      (apply 'append (mapcar (lambda (x)
-			       (let ((c (split-string x "=")))
-				 (list (intern (concat ":" (car c))) (cadr c))))
-			     (split-string query "&")))))
-
-(defun org-protocol-do-capture (info)
-  "Perform the actual capture based on INFO."
-  (let* ((temp-parts (org-protocol-parse-parameters info))
-	 (parts
-	  (cond
-	   ((and (listp info) (symbolp (car info))) info)
-	   ((= (length (car temp-parts)) 1) ;; First parameter is exactly one character long
-	    (org-protocol-assign-parameters temp-parts '(:template :url :title :body)))
-	   (t
-	    (org-protocol-assign-parameters temp-parts '(:url :title :body)))))
-	 (template (or (plist-get parts :template)
-		       org-protocol-default-template-key))
-	 (url (and (plist-get parts :url) (org-protocol-sanitize-uri (plist-get parts :url))))
-	 (type (and url (if (string-match "^\\([a-z]+\\):" url)
-			    (match-string 1 url))))
-	 (title (or (plist-get parts :title) ""))
-	 (region (or (plist-get parts :body) ""))
-	 (orglink (if url
-		      (org-make-link-string
-		       url (if (string-match "[^[:space:]]" title) title url))
-		    title))
-	 (org-capture-link-is-already-stored t)) ;; avoid call to org-store-link
-    (setq org-stored-links
-	  (cons (list url title) org-stored-links))
-    (org-store-link-props :type type
-			  :link url
-			  :description title
-			  :annotation orglink
-			  :initial region
-			  :query parts)
-    (raise-frame)
-    (funcall 'org-capture nil template)))
-
-(defun org-protocol-open-source (fname)
-  "Process an org-protocol://open-source?url= style URL with FNAME.
-
-Change a filename by mapping URLs to local filenames as set
-in `org-protocol-project-alist'.
-
-The location for a browser's bookmark should look like this:
-
-  javascript:location.href = \\='org-protocol://open-source?url=\\=' + \\
-        encodeURIComponent(location.href)"
-  ;; As we enter this function for a match on our protocol, the return value
-  ;; defaults to nil.
-  (let ((result nil)
-	(f (org-protocol-sanitize-uri
-	    (plist-get (org-protocol-parse-parameters fname nil '(:url))
-		       :url))))
-    (catch 'result
-      (dolist (prolist org-protocol-project-alist)
-        (let* ((base-url (plist-get (cdr prolist) :base-url))
-               (wsearch (regexp-quote base-url)))
-
-          (when (string-match wsearch f)
-            (let* ((wdir (plist-get (cdr prolist) :working-directory))
-                   (strip-suffix (plist-get (cdr prolist) :online-suffix))
-                   (add-suffix (plist-get (cdr prolist) :working-suffix))
-		   ;; Strip "[?#].*$" if `f' is a redirect with another
-		   ;; ending than strip-suffix here:
-		   (f1 (substring f 0 (string-match "\\([\\?#].*\\)?$" f)))
-                   (start-pos (+ (string-match wsearch f1) (length base-url)))
-                   (end-pos (string-match
-			     (regexp-quote strip-suffix) f1))
-		   ;; We have to compare redirects without suffix below:
-		   (f2 (concat wdir (substring f1 start-pos end-pos)))
-                   (the-file (concat f2 add-suffix)))
-
-	      ;; Note: the-file may still contain `%C3' et al here because browsers
-	      ;; tend to encode `&auml;' in URLs to `%25C3' - `%25' being `%'.
-	      ;; So the results may vary.
-
-	      ;; -- start redirects --
-	      (unless (file-exists-p the-file)
-		(message "File %s does not exist.\nTesting for rewritten URLs." the-file)
-		(let ((rewrites (plist-get (cdr prolist) :rewrites)))
-		  (when rewrites
-		    (message "Rewrites found: %S" rewrites)
-		    (dolist (rewrite rewrites)
-		      ;; Try to match a rewritten URL and map it to
-		      ;; a real file.  Compare redirects without
-		      ;; suffix.
-		      (when (string-match (car rewrite) f1)
-			(let ((replacement
-			       (concat (directory-file-name
-					(replace-match "" nil nil f1 1))
-				       (cdr rewrite))))
-			  (throw 'result (concat wdir replacement))))))))
-	      ;; -- end of redirects --
-
-              (if (file-readable-p the-file)
-                  (throw 'result the-file))
-              (if (file-exists-p the-file)
-                  (message "%s: permission denied!" the-file)
-                (message "%s: no such file or directory." the-file))))))
-      result)))
-
-
-;;; Core functions:
-
-(defun org-protocol-check-filename-for-protocol (fname restoffiles _client)
-  "Check if `org-protocol-the-protocol' and a valid protocol are used in FNAME.
-Sub-protocols are registered in `org-protocol-protocol-alist' and
-`org-protocol-protocol-alist-default'.  This is how the matching is done:
-
-  (string-match \"protocol:/+sub-protocol\\\\(://\\\\|\\\\?\\\\)\" ...)
-
-protocol and sub-protocol are regexp-quoted.
-
-Old-style links such as \"protocol://sub-protocol://param1/param2\" are
-also recognized.
-
-If a matching protocol is found, the protocol is stripped from
-fname and the result is passed to the protocol function as the
-first parameter.  The second parameter will be non-nil if FNAME
-uses key=val&key2=val2-type arguments, or nil if FNAME uses
-val/val2-type arguments.  If the function returns nil, the
-filename is removed from the list of filenames passed from
-emacsclient to the server.  If the function returns a non-nil
-value, that value is passed to the server as filename.
-
-If the handler function is greedy, RESTOFFILES will also be passed to it.
-
-CLIENT is ignored."
-  (let ((sub-protocols (append org-protocol-protocol-alist
-			       org-protocol-protocol-alist-default)))
-    (catch 'fname
-      (let ((the-protocol (concat (regexp-quote org-protocol-the-protocol)
-				  ":/+")))
-        (when (string-match the-protocol fname)
-          (dolist (prolist sub-protocols)
-            (let ((proto
-		   (concat the-protocol
-			   (regexp-quote (plist-get (cdr prolist) :protocol))
-			   "\\(:/+\\|\\?\\)")))
-              (when (string-match proto fname)
-                (let* ((func (plist-get (cdr prolist) :function))
-                       (greedy (plist-get (cdr prolist) :greedy))
-                       (split (split-string fname proto))
-                       (result (if greedy restoffiles (cadr split)))
-		       (new-style (string= (match-string 1 fname) "?")))
-                  (when (plist-get (cdr prolist) :kill-client)
-		    (message "Greedy org-protocol handler.  Killing client.")
-		    (server-edit))
-                  (when (fboundp func)
-                    (unless greedy
-                      (throw 'fname
-			     (if new-style
-				 (funcall func (org-protocol-parse-parameters
-						result new-style))
-			       (warn "Please update your Org Protocol handler \
-to deal with new-style links.")
-			       (funcall func result))))
-		    ;; Greedy protocol handlers are responsible for
-		    ;; parsing their own filenames.
-		    (funcall func result)
-                    (throw 'fname t))))))))
-      fname)))
-
-(defadvice server-visit-files (before org-protocol-detect-protocol-server activate)
-  "Advice server-visit-flist to call `org-protocol-modify-filename-for-protocol'."
-  (let ((flist (if org-protocol-reverse-list-of-files
-                   (reverse  (ad-get-arg 0))
-                 (ad-get-arg 0)))
-        (client (ad-get-arg 1)))
-    (catch 'greedy
-      (dolist (var flist)
-	;; `\' to `/' on windows.  FIXME: could this be done any better?
-        (let ((fname  (expand-file-name (car var))))
-          (setq fname (org-protocol-check-filename-for-protocol
-		       fname (member var flist)  client))
-          (if (eq fname t) ;; greedy? We need the t return value.
-              (progn
-                (ad-set-arg 0 nil)
-                (throw 'greedy t))
-            (if (stringp fname) ;; probably filename
-                (setcar var fname)
-              (ad-set-arg 0 (delq var (ad-get-arg 0))))))))))
-
-;;; Org specific functions:
-
-(defun org-protocol-create-for-org ()
-  "Create an Org protocol project for the current file's project.
-The visited file needs to be part of a publishing project in
-`org-publish-project-alist' for this to work.  The function
-delegates most of the work to `org-protocol-create'."
-  (interactive)
-  (require 'ox-publish)
-  (let ((all (or (org-publish-get-project-from-filename buffer-file-name))))
-    (if all (org-protocol-create (cdr all))
-      (message "%s"
-	       (substitute-command-keys
-		"Not in an Org project.  \
-Did you mean `\\[org-protocol-create]'?")))))
-
-(defun org-protocol-create (&optional project-plist)
-  "Create a new org-protocol project interactively.
-An org-protocol project is an entry in
-`org-protocol-project-alist' which is used by
-`org-protocol-open-source'.  Optionally use PROJECT-PLIST to
-initialize the defaults for this project.  If PROJECT-PLIST is
-the cdr of an element in `org-publish-project-alist', reuse
-:base-directory, :html-extension and :base-extension."
-  (interactive)
-  (let ((working-dir (expand-file-name
-		      (or (plist-get project-plist :base-directory)
-			  default-directory)))
-        (base-url "https://orgmode.org/worg/")
-        (strip-suffix (or (plist-get project-plist :html-extension) ".html"))
-        (working-suffix (if (plist-get project-plist :base-extension)
-                            (concat "." (plist-get project-plist :base-extension))
-                          ".org"))
-        (insert-default-directory t)
-        (minibuffer-allow-text-properties nil))
-
-    (setq base-url (read-string "Base URL of published content: " base-url nil base-url t))
-    (or (string-suffix-p "/" base-url)
-	(setq base-url (concat base-url "/")))
-
-    (setq working-dir
-          (expand-file-name
-           (read-directory-name "Local working directory: " working-dir working-dir t)))
-    (or (string-suffix-p "/" working-dir)
-	(setq working-dir (concat working-dir "/")))
-
-    (setq strip-suffix
-          (read-string
-           (concat "Extension to strip from published URLs (" strip-suffix "): ")
-	   strip-suffix nil strip-suffix t))
-
-    (setq working-suffix
-          (read-string
-           (concat "Extension of editable files (" working-suffix "): ")
-	   working-suffix nil working-suffix t))
-
-    (when (yes-or-no-p "Save the new org-protocol-project to your init file? ")
-      (setq org-protocol-project-alist
-            (cons `(,base-url . (:base-url ,base-url
-					   :working-directory ,working-dir
-					   :online-suffix ,strip-suffix
-					   :working-suffix ,working-suffix))
-                  org-protocol-project-alist))
-      (customize-save-variable 'org-protocol-project-alist org-protocol-project-alist))))
-
-(provide 'org-protocol)
-
-;;; org-protocol.el ends here
diff --git a/elpa/org-9.1.14/org-protocol.elc b/elpa/org-9.1.14/org-protocol.elc
deleted file mode 100644
index 93ac340..0000000
--- a/elpa/org-9.1.14/org-protocol.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-rmail.el b/elpa/org-9.1.14/org-rmail.el
deleted file mode 100644
index d50fd64..0000000
--- a/elpa/org-9.1.14/org-rmail.el
+++ /dev/null
@@ -1,115 +0,0 @@
-;;; org-rmail.el --- Support for Links to Rmail Messages -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements links to Rmail messages from within Org mode.
-;; Org mode loads this module by default - if this is not what you
-;; want, configure the variable `org-modules'.
-
-;;; Code:
-
-(require 'org)
-
-;; Declare external functions and variables
-(declare-function rmail-show-message  "rmail" (&optional n no-summary))
-(declare-function rmail-what-message  "rmail" (&optional pos))
-(declare-function rmail-toggle-header "rmail" (&optional arg))
-(declare-function rmail               "rmail" (&optional file-name-arg))
-(declare-function rmail-widen         "rmail" ())
-(defvar rmail-current-message)  ; From rmail.el
-(defvar rmail-header-style)     ; From rmail.el
-(defvar rmail-file-name)        ; From rmail.el
-
-;; Install the link type
-(org-link-set-parameters "rmail" :follow #'org-rmail-open :store #'org-rmail-store-link)
-
-;; Implementation
-(defun org-rmail-store-link ()
-  "Store a link to an Rmail folder or message."
-  (when (or (eq major-mode 'rmail-mode)
-	    (eq major-mode 'rmail-summary-mode))
-    (save-window-excursion
-      (save-restriction
-	(when (eq major-mode 'rmail-summary-mode)
-	  (rmail-show-message rmail-current-message))
-	(when (fboundp 'rmail-narrow-to-non-pruned-header)
-	  (rmail-narrow-to-non-pruned-header))
-	(when (eq rmail-header-style 'normal)
-	  (rmail-toggle-header -1))
-	(let* ((folder buffer-file-name)
-	       (message-id (mail-fetch-field "message-id"))
-	       (from (mail-fetch-field "from"))
-	       (to (mail-fetch-field "to"))
-	       (subject (mail-fetch-field "subject"))
-	       (date (mail-fetch-field "date"))
-	       desc link)
-	  (org-store-link-props
-	   :type "rmail" :from from :to to :date date
-	   :subject subject :message-id message-id)
-	  (setq message-id (org-unbracket-string "<" ">" message-id))
-	  (setq desc (org-email-link-description))
-	  (setq link (concat "rmail:" folder "#" message-id))
-	  (org-add-link-props :link link :description desc)
-	  (rmail-show-message rmail-current-message)
-	  link)))))
-
-(defun org-rmail-open (path)
-  "Follow an Rmail message link to the specified PATH."
-  (let (folder article)
-    (if (not (string-match "\\`\\([^#]+\\)\\(#\\(.*\\)\\)?" path))
-	(error "Error in Rmail link"))
-    (setq folder (match-string 1 path)
-	  article (match-string 3 path))
-    (org-rmail-follow-link folder article)))
-
-(defun org-rmail-follow-link (folder article)
-  "Follow an Rmail link to FOLDER and ARTICLE."
-  (require 'rmail)
-  (cond ((null article) (setq article ""))
-	((stringp article)
-	 (setq article (org-add-angle-brackets article)))
-	(t (user-error "Wrong RMAIL link format")))
-  (let (message-number)
-    (save-excursion
-      (save-window-excursion
-	(rmail (if (string= folder "RMAIL") rmail-file-name folder))
-	(setq message-number
-	      (save-restriction
-		(rmail-widen)
-		(goto-char (point-max))
-		(if (re-search-backward
-		     (concat "^Message-ID:\\s-+" (regexp-quote article))
-		     nil t)
-		    (rmail-what-message))))))
-    (if message-number
-	(progn
-	  (rmail (if (string= folder "RMAIL") rmail-file-name folder))
-	  (rmail-show-message message-number)
-	  message-number)
-      (error "Message not found"))))
-
-(provide 'org-rmail)
-
-;;; org-rmail.el ends here
diff --git a/elpa/org-9.1.14/org-rmail.elc b/elpa/org-9.1.14/org-rmail.elc
deleted file mode 100644
index 8377803..0000000
--- a/elpa/org-9.1.14/org-rmail.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-src.el b/elpa/org-9.1.14/org-src.el
deleted file mode 100644
index 4d65a71..0000000
--- a/elpa/org-9.1.14/org-src.el
+++ /dev/null
@@ -1,1158 +0,0 @@
-;;; org-src.el --- Source code examples in Org       -*- lexical-binding: t; -*-
-;;
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;;	   Bastien Guerry <bzg@gnu.org>
-;;         Dan Davison <davison at stats dot ox dot ac dot uk>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the code dealing with source code examples in
-;; Org mode.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org-macs)
-(require 'org-compat)
-(require 'ob-keys)
-(require 'ob-comint)
-
-(declare-function org-base-buffer "org" (buffer))
-(declare-function org-do-remove-indentation "org" (&optional n))
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-class "org-element" (datum &optional parent))
-(declare-function org-element-context "org-element" (&optional element))
-(declare-function org-element-lineage "org-element"
-		  (blob &optional types with-self))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-footnote-goto-definition "org-footnote"
-		  (label &optional location))
-(declare-function org-get-indentation "org" (&optional line))
-(declare-function org-switch-to-buffer-other-window "org" (&rest args))
-(declare-function org-trim "org" (s &optional keep-lead))
-
-(defvar org-inhibit-startup)
-
-(defcustom org-edit-src-turn-on-auto-save nil
-  "Non-nil means turn `auto-save-mode' on when editing a source block.
-This will save the content of the source code editing buffer into
-a newly created file, not the base buffer for this source block.
-
-If you want to regularly save the base buffer instead of the source
-code editing buffer, see `org-edit-src-auto-save-idle-delay' instead."
-  :group 'org-edit-structure
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-edit-src-auto-save-idle-delay 0
-  "Delay before saving a source code buffer back into its base buffer.
-When a positive integer N, save after N seconds of idle time.
-When 0 (the default), don't auto-save.
-
-If you want to save the source code buffer itself, don't use this.
-Check `org-edit-src-turn-on-auto-save' instead."
-  :group 'org-edit-structure
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'integer)
-
-(defcustom org-coderef-label-format "(ref:%s)"
-  "The default coderef format.
-This format string will be used to search for coderef labels in literal
-examples (EXAMPLE and SRC blocks).  The format can be overwritten in
-an individual literal example with the -l option, like
-
-#+BEGIN_SRC pascal +n -r -l \"((%s))\"
-...
-#+END_SRC
-
-If you want to use this for HTML export, make sure that the format does
-not introduce special font-locking, and avoid the HTML special
-characters `<', `>', and `&'.  The reason for this restriction is that
-the labels are searched for only after htmlize has done its job."
-  :group 'org-edit-structure ; FIXME this is not in the right group
-  :type 'string)
-
-(defcustom org-edit-fixed-width-region-mode 'artist-mode
-  "The mode that should be used to edit fixed-width regions.
-These are the regions where each line starts with a colon."
-  :group 'org-edit-structure
-  :type '(choice
-	  (const artist-mode)
-	  (const picture-mode)
-	  (const fundamental-mode)
-	  (function :tag "Other (specify)")))
-
-(defcustom org-src-preserve-indentation nil
-  "If non-nil preserve leading whitespace characters on export.
-\\<org-mode-map>
-If non-nil leading whitespace characters in source code blocks
-are preserved on export, and when switching between the org
-buffer and the language mode edit buffer.
-
-When this variable is nil, after editing with `\\[org-edit-src-code]',
-the minimum (across-lines) number of leading whitespace characters
-are removed from all lines, and the code block is uniformly indented
-according to the value of `org-edit-src-content-indentation'."
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defcustom org-edit-src-content-indentation 2
-  "Indentation for the content of a source code block.
-
-This should be the number of spaces added to the indentation of the #+begin
-line in order to compute the indentation of the block content after
-editing it with `\\[org-edit-src-code]'.
-
-It has no effect if `org-src-preserve-indentation' is non-nil."
-  :group 'org-edit-structure
-  :type 'integer)
-
-(defcustom org-edit-src-persistent-message t
-  "Non-nil means show persistent exit help message while editing src examples.
-The message is shown in the header-line, which will be created in the
-first line of the window showing the editing buffer."
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defcustom org-src-ask-before-returning-to-edit-buffer t
-  "Non-nil means ask before switching to an existing edit buffer.
-If nil, when `org-edit-src-code' is used on a block that already
-has an active edit buffer, it will switch to that edit buffer
-immediately; otherwise it will ask whether you want to return to
-the existing edit buffer."
-  :group 'org-edit-structure
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-src-window-setup 'reorganize-frame
-  "How the source code edit buffer should be displayed.
-Possible values for this option are:
-
-current-window    Show edit buffer in the current window, keeping all other
-                  windows.
-other-window      Use `switch-to-buffer-other-window' to display edit buffer.
-reorganize-frame  Show only two windows on the current frame, the current
-                  window and the edit buffer.  When exiting the edit buffer,
-                  return to one window.
-other-frame       Use `switch-to-buffer-other-frame' to display edit buffer.
-                  Also, when exiting the edit buffer, kill that frame."
-  :group 'org-edit-structure
-  :type '(choice
-	  (const current-window)
-	  (const other-frame)
-	  (const other-window)
-	  (const reorganize-frame)))
-
-(defvar org-src-mode-hook nil
-  "Hook run after Org switched a source code snippet to its Emacs mode.
-\\<org-mode-map>
-This hook will run:
-- when editing a source code snippet with `\\[org-edit-special]'
-- when formatting a source code snippet for export with htmlize.
-
-You may want to use this hook for example to turn off `outline-minor-mode'
-or similar things which you want to have when editing a source code file,
-but which mess up the display of a snippet in Org exported files.")
-
-(defcustom org-src-lang-modes
-  '(("ocaml" . tuareg) ("elisp" . emacs-lisp) ("ditaa" . artist)
-    ("asymptote" . asy) ("dot" . fundamental) ("sqlite" . sql)
-    ("calc" . fundamental) ("C" . c) ("cpp" . c++) ("C++" . c++)
-    ("screen" . shell-script) ("shell" . sh) ("bash" . sh))
-  "Alist mapping languages to their major mode.
-The key is the language name, the value is the string that should
-be inserted as the name of the major mode.  For many languages this is
-simple, but for language where this is not the case, this variable
-provides a way to simplify things on the user side.
-For example, there is no ocaml-mode in Emacs, but the mode to use is
-`tuareg-mode'."
-  :group 'org-edit-structure
-  :type '(repeat
-	  (cons
-	   (string "Language name")
-	   (symbol "Major mode"))))
-
-(defcustom org-src-block-faces nil
-  "Alist of faces to be used for source-block.
-Each element is a cell of the format
-
-     (\"language\" FACE)
-
-Where FACE is either a defined face or an anonymous face.
-
-For instance, the following value would color the background of
-emacs-lisp source blocks and python source blocks in purple and
-green, respectability.
-
-    \\='((\"emacs-lisp\" (:background \"#EEE2FF\"))
-      (\"python\" (:background \"#e5ffb8\")))"
-  :group 'org-edit-structure
-  :type '(repeat (list (string :tag "language")
-                       (choice
-                        (face :tag "Face")
-                        (sexp :tag "Anonymous face"))))
-  :version "26.1"
-  :package-version '(Org . "9.0"))
-
-(defcustom org-src-tab-acts-natively nil
-  "If non-nil, the effect of TAB in a code block is as if it were
-issued in the language major mode buffer."
-  :type 'boolean
-  :version "24.1"
-  :group 'org-babel)
-
-
-
-;;; Internal functions and variables
-
-(defvar-local org-src--allow-write-back t)
-(put 'org-src--allow-write-back 'permanent-local t)
-
-(defvar-local org-src--auto-save-timer nil)
-(put 'org-src--auto-save-timer 'permanent-local t)
-
-(defvar-local org-src--babel-info nil)
-(put 'org-src--babel-info 'permanent-local t)
-
-(defvar-local org-src--beg-marker nil)
-(put 'org-src--beg-marker 'permanent-local t)
-
-(defvar-local org-src--block-indentation nil)
-(put 'org-src--block-indentation 'permanent-local t)
-
-(defvar-local org-src--end-marker nil)
-(put 'org-src--end-marker 'permanent-local t)
-
-(defvar-local org-src--from-org-mode nil)
-(put 'org-src--from-org-mode 'permanent-local t)
-
-(defvar-local org-src--overlay nil)
-(put 'org-src--overlay 'permanent-local t)
-
-(defvar-local org-src--preserve-indentation nil)
-(put 'org-src--preserve-indentation 'permanent-local t)
-
-(defvar-local org-src--remote nil)
-(put 'org-src--remote 'permanent-local t)
-
-(defvar-local org-src--saved-temp-window-config nil)
-(put 'org-src--saved-temp-window-config 'permanent-local t)
-
-(defvar-local org-src--source-type nil
-  "Type of element being edited, as a symbol.")
-(put 'org-src--source-type 'permanent-local t)
-
-(defvar-local org-src--tab-width nil
-  "Contains `tab-width' value from Org source buffer.
-However, if `indent-tabs-mode' is nil in that buffer, its value
-is 0.")
-(put 'org-src--tab-width 'permanent-local t)
-
-(defun org-src--construct-edit-buffer-name (org-buffer-name lang)
-  "Construct the buffer name for a source editing buffer."
-  (concat "*Org Src " org-buffer-name "[ " lang " ]*"))
-
-(defun org-src--edit-buffer (beg end)
-  "Return buffer editing area between BEG and END.
-Return nil if there is no such buffer."
-  (catch 'exit
-    (dolist (b (buffer-list))
-      (with-current-buffer b
-	(and (org-src-edit-buffer-p)
-	     (= beg org-src--beg-marker)
-	     (eq (marker-buffer beg) (marker-buffer org-src--beg-marker))
-	     (= end org-src--end-marker)
-	     (eq (marker-buffer end) (marker-buffer org-src--end-marker))
-	     (throw 'exit b))))))
-
-(defun org-src--source-buffer ()
-  "Return source buffer edited by current buffer."
-  (unless (org-src-edit-buffer-p) (error "Not in a source buffer"))
-  (or (marker-buffer org-src--beg-marker)
-      (error "No source buffer available for current editing session")))
-
-(defun org-src--get-lang-mode (lang)
-  "Return major mode that should be used for LANG.
-LANG is a string, and the returned major mode is a symbol."
-  (intern
-   (concat
-    (let ((l (or (cdr (assoc lang org-src-lang-modes)) lang)))
-      (if (symbolp l) (symbol-name l) l))
-    "-mode")))
-
-(defun org-src--coordinates (pos beg end)
-  "Return coordinates of POS relatively to BEG and END.
-POS, BEG and END are buffer positions.  Return value is either
-a cons cell (LINE . COLUMN) or symbol `end'.  See also
-`org-src--goto-coordinates'."
-  (if (>= pos end) 'end
-    (org-with-wide-buffer
-     (goto-char (max beg pos))
-     (cons (count-lines beg (line-beginning-position))
-	   ;; Column is relative to the end of line to avoid problems of
-	   ;; comma escaping or colons appended in front of the line.
-	   (- (current-column)
-	      (progn (end-of-line) (current-column)))))))
-
-(defun org-src--goto-coordinates (coord beg end)
-  "Move to coordinates COORD relatively to BEG and END.
-COORD are coordinates, as returned by `org-src--coordinates',
-which see.  BEG and END are buffer positions."
-  (goto-char
-   (if (eq coord 'end) (max (1- end) beg)
-     ;; If BEG happens to be located outside of the narrowed part of
-     ;; the buffer, widen it first.
-     (org-with-wide-buffer
-      (goto-char beg)
-      (forward-line (car coord))
-      (end-of-line)
-      (org-move-to-column (max (+ (current-column) (cdr coord)) 0))
-      (point)))))
-
-(defun org-src--contents-area (datum)
-  "Return contents boundaries of DATUM.
-DATUM is an element or object.  Return a list (BEG END CONTENTS)
-where BEG and END are buffer positions and CONTENTS is a string."
-  (let ((type (org-element-type datum)))
-    (org-with-wide-buffer
-     (cond
-      ((eq type 'footnote-definition)
-       (let* ((beg (progn
-		     (goto-char (org-element-property :post-affiliated datum))
-		     (search-forward "]")))
-	      (end (or (org-element-property :contents-end datum) beg)))
-	 (list beg end (buffer-substring-no-properties beg end))))
-      ((eq type 'inline-src-block)
-       (let ((beg (progn (goto-char (org-element-property :begin datum))
-			 (search-forward "{" (line-end-position) t)))
-	     (end (progn (goto-char (org-element-property :end datum))
-			 (search-backward "}" (line-beginning-position) t))))
-	 (list beg end (buffer-substring-no-properties beg end))))
-      ((org-element-property :contents-begin datum)
-       (let ((beg (org-element-property :contents-begin datum))
-	     (end (org-element-property :contents-end datum)))
-	 (list beg end (buffer-substring-no-properties beg end))))
-      ((memq type '(example-block export-block src-block))
-       (list (progn (goto-char (org-element-property :post-affiliated datum))
-		    (line-beginning-position 2))
-	     (progn (goto-char (org-element-property :end datum))
-		    (skip-chars-backward " \r\t\n")
-		    (line-beginning-position 1))
-	     (org-element-property :value datum)))
-      ((memq type '(fixed-width latex-environment table))
-       (let ((beg (org-element-property :post-affiliated datum))
-	     (end (progn (goto-char (org-element-property :end datum))
-			 (skip-chars-backward " \r\t\n")
-			 (line-beginning-position 2))))
-	 (list beg
-	       end
-	       (if (eq type 'fixed-width) (org-element-property :value datum)
-		 (buffer-substring-no-properties beg end)))))
-      (t (error "Unsupported element or object: %s" type))))))
-
-(defun org-src--make-source-overlay (beg end edit-buffer)
-  "Create overlay between BEG and END positions and return it.
-EDIT-BUFFER is the buffer currently editing area between BEG and
-END."
-  (let ((overlay (make-overlay beg end)))
-    (overlay-put overlay 'face 'secondary-selection)
-    (overlay-put overlay 'edit-buffer edit-buffer)
-    (overlay-put overlay 'help-echo
-		 "Click with mouse-1 to switch to buffer editing this segment")
-    (overlay-put overlay 'face 'secondary-selection)
-    (overlay-put overlay 'keymap
-		 (let ((map (make-sparse-keymap)))
-		   (define-key map [mouse-1] 'org-edit-src-continue)
-		   map))
-    (let ((read-only
-	   (list
-	    (lambda (&rest _)
-	      (user-error
-	       "Cannot modify an area being edited in a dedicated buffer")))))
-      (overlay-put overlay 'modification-hooks read-only)
-      (overlay-put overlay 'insert-in-front-hooks read-only)
-      (overlay-put overlay 'insert-behind-hooks read-only))
-    overlay))
-
-(defun org-src--remove-overlay ()
-  "Remove overlay from current source buffer."
-  (when (overlayp org-src--overlay) (delete-overlay org-src--overlay)))
-
-(defun org-src--on-datum-p (datum)
-  "Non-nil when point is on DATUM.
-DATUM is an element or an object.  Consider blank lines or white
-spaces after it as being outside."
-  (and (>= (point) (org-element-property :begin datum))
-       (<= (point)
-	   (org-with-wide-buffer
-	    (goto-char (org-element-property :end datum))
-	    (skip-chars-backward " \r\t\n")
-	    (if (eq (org-element-class datum) 'element)
-		(line-end-position)
-	      (point))))))
-
-(defun org-src--contents-for-write-back ()
-  "Return buffer contents in a format appropriate for write back.
-Assume point is in the corresponding edit buffer."
-  (let ((indentation-offset
-	 (if org-src--preserve-indentation 0
-	   (+ (or org-src--block-indentation 0)
-	      (if (memq org-src--source-type '(example-block src-block))
-		  org-edit-src-content-indentation
-		0))))
-	(use-tabs? (and (> org-src--tab-width 0) t))
-	(source-tab-width org-src--tab-width)
-	(contents (org-with-wide-buffer (buffer-string)))
-	(write-back org-src--allow-write-back))
-    (with-temp-buffer
-      ;; Reproduce indentation parameters from source buffer.
-      (setq-local indent-tabs-mode use-tabs?)
-      (when (> source-tab-width 0) (setq-local tab-width source-tab-width))
-      ;; Apply WRITE-BACK function on edit buffer contents.
-      (insert (org-no-properties contents))
-      (goto-char (point-min))
-      (when (functionp write-back) (save-excursion (funcall write-back)))
-      ;; Add INDENTATION-OFFSET to every non-empty line in buffer,
-      ;; unless indentation is meant to be preserved.
-      (when (> indentation-offset 0)
-	(while (not (eobp))
-	  (skip-chars-forward " \t")
-	  (unless (eolp)		;ignore blank lines
-	    (let ((i (current-column)))
-	      (delete-region (line-beginning-position) (point))
-	      (indent-to (+ i indentation-offset))))
-	  (forward-line)))
-      (buffer-string))))
-
-(defun org-src--edit-element
-    (datum name &optional initialize write-back contents remote)
-  "Edit DATUM contents in a dedicated buffer NAME.
-
-INITIALIZE is a function to call upon creating the buffer.
-
-When WRITE-BACK is non-nil, assume contents will replace original
-region.  Moreover, if it is a function, apply it in the edit
-buffer, from point min, before returning the contents.
-
-When CONTENTS is non-nil, display them in the edit buffer.
-Otherwise, show DATUM contents as specified by
-`org-src--contents-area'.
-
-When REMOTE is non-nil, do not try to preserve point or mark when
-moving from the edit area to the source.
-
-Leave point in edit buffer."
-  (setq org-src--saved-temp-window-config (current-window-configuration))
-  (let* ((area (org-src--contents-area datum))
-	 (beg (copy-marker (nth 0 area)))
-	 (end (copy-marker (nth 1 area) t))
-	 (old-edit-buffer (org-src--edit-buffer beg end))
-	 (contents (or contents (nth 2 area))))
-    (if (and old-edit-buffer
-	     (or (not org-src-ask-before-returning-to-edit-buffer)
-		 (y-or-n-p "Return to existing edit buffer ([n] will revert changes)? ")))
-	;; Move to existing buffer.
-	(org-src-switch-to-buffer old-edit-buffer 'return)
-      ;; Discard old edit buffer.
-      (when old-edit-buffer
-	(with-current-buffer old-edit-buffer (org-src--remove-overlay))
-	(kill-buffer old-edit-buffer))
-      (let* ((org-mode-p (derived-mode-p 'org-mode))
-	     (source-tab-width (if indent-tabs-mode tab-width 0))
-	     (type (org-element-type datum))
-	     (ind (org-with-wide-buffer
-		   (goto-char (org-element-property :begin datum))
-		   (org-get-indentation)))
-	     (preserve-ind
-	      (and (memq type '(example-block src-block))
-		   (or (org-element-property :preserve-indent datum)
-		       org-src-preserve-indentation)))
-	     ;; Store relative positions of mark (if any) and point
-	     ;; within the edited area.
-	     (point-coordinates (and (not remote)
-				     (org-src--coordinates (point) beg end)))
-	     (mark-coordinates (and (not remote)
-				    (org-region-active-p)
-				    (let ((m (mark)))
-				      (and (>= m beg) (>= end m)
-					   (org-src--coordinates m beg end)))))
-	     ;; Generate a new edit buffer.
-	     (buffer (generate-new-buffer name))
-	     ;; Add an overlay on top of source.
-	     (overlay (org-src--make-source-overlay beg end buffer)))
-	;; Switch to edit buffer.
-	(org-src-switch-to-buffer buffer 'edit)
-	;; Insert contents.
-	(insert contents)
-	(remove-text-properties (point-min) (point-max)
-				'(display nil invisible nil intangible nil))
-	(unless preserve-ind (org-do-remove-indentation))
-	(set-buffer-modified-p nil)
-	(setq buffer-file-name nil)
-	;; Initialize buffer.
-	(when (functionp initialize)
-	  (let ((org-inhibit-startup t))
-	    (condition-case e
-		(funcall initialize)
-	      (error (message "Initialization fails with: %S"
-			      (error-message-string e))))))
-	;; Transmit buffer-local variables for exit function.  It must
-	;; be done after initializing major mode, as this operation
-	;; may reset them otherwise.
-	(setq org-src--tab-width source-tab-width)
-	(setq org-src--from-org-mode org-mode-p)
-	(setq org-src--beg-marker beg)
-	(setq org-src--end-marker end)
-	(setq org-src--remote remote)
-	(setq org-src--source-type type)
-	(setq org-src--block-indentation ind)
-	(setq org-src--preserve-indentation preserve-ind)
-	(setq org-src--overlay overlay)
-	(setq org-src--allow-write-back write-back)
-	;; Start minor mode.
-	(org-src-mode)
-	;; Move mark and point in edit buffer to the corresponding
-	;; location.
-	(if remote
-	    (progn
-	      ;; Put point at first non read-only character after
-	      ;; leading blank.
-	      (goto-char
-	       (or (text-property-any (point-min) (point-max) 'read-only nil)
-		   (point-max)))
-	      (skip-chars-forward " \r\t\n"))
-	  ;; Set mark and point.
-	  (when mark-coordinates
-	    (org-src--goto-coordinates mark-coordinates (point-min) (point-max))
-	    (push-mark (point) 'no-message t)
-	    (setq deactivate-mark nil))
-	  (org-src--goto-coordinates
-	   point-coordinates (point-min) (point-max)))))))
-
-
-
-;;; Fontification of source blocks
-
-(defun org-src-font-lock-fontify-block (lang start end)
-  "Fontify code block.
-This function is called by emacs automatic fontification, as long
-as `org-src-fontify-natively' is non-nil."
-  (let ((lang-mode (org-src--get-lang-mode lang)))
-    (when (fboundp lang-mode)
-      (let ((string (buffer-substring-no-properties start end))
-	    (modified (buffer-modified-p))
-	    (org-buffer (current-buffer)))
-	(remove-text-properties start end '(face nil))
-	(with-current-buffer
-	    (get-buffer-create
-	     (format " *org-src-fontification:%s*" lang-mode))
-	  (let ((inhibit-modification-hooks nil))
-	    (erase-buffer)
-	    ;; Add string and a final space to ensure property change.
-	    (insert string " "))
-	  (unless (eq major-mode lang-mode) (funcall lang-mode))
-	  (org-font-lock-ensure)
-	  (let ((pos (point-min)) next)
-	    (while (setq next (next-property-change pos))
-	      ;; Handle additional properties from font-lock, so as to
-	      ;; preserve, e.g., composition.
-	      (dolist (prop (cons 'face font-lock-extra-managed-props))
-		(let ((new-prop (get-text-property pos prop)))
-		  (put-text-property
-		   (+ start (1- pos)) (1- (+ start next)) prop new-prop
-		   org-buffer)))
-	      (setq pos next))))
-	;; Add Org faces.
-	(let ((src-face (nth 1 (assoc-string lang org-src-block-faces t))))
-          (when (or (facep src-face) (listp src-face))
-            (font-lock-append-text-property start end 'face src-face))
-	  (font-lock-append-text-property start end 'face 'org-block))
-	(add-text-properties
-	 start end
-	 '(font-lock-fontified t fontified t font-lock-multiline t))
-	(set-buffer-modified-p modified)))))
-
-
-;;; Escape contents
-
-(defun org-escape-code-in-region (beg end)
-  "Escape lines between BEG and END.
-Escaping happens when a line starts with \"*\", \"#+\", \",*\" or
-\",#+\" by appending a comma to it."
-  (interactive "r")
-  (save-excursion
-    (goto-char end)
-    (while (re-search-backward "^[ \t]*\\(,*\\(?:\\*\\|#\\+\\)\\)" beg t)
-      (save-excursion (replace-match ",\\1" nil nil nil 1)))))
-
-(defun org-escape-code-in-string (s)
-  "Escape lines in string S.
-Escaping happens when a line starts with \"*\", \"#+\", \",*\" or
-\",#+\" by appending a comma to it."
-  (replace-regexp-in-string "^[ \t]*\\(,*\\(?:\\*\\|#\\+\\)\\)" ",\\1"
-			    s nil nil 1))
-
-(defun org-unescape-code-in-region (beg end)
-  "Un-escape lines between BEG and END.
-Un-escaping happens by removing the first comma on lines starting
-with \",*\", \",#+\", \",,*\" and \",,#+\"."
-  (interactive "r")
-  (save-excursion
-    (goto-char end)
-    (while (re-search-backward "^[ \t]*,*\\(,\\)\\(?:\\*\\|#\\+\\)" beg t)
-      (save-excursion (replace-match "" nil nil nil 1)))))
-
-(defun org-unescape-code-in-string (s)
-  "Un-escape lines in string S.
-Un-escaping happens by removing the first comma on lines starting
-with \",*\", \",#+\", \",,*\" and \",,#+\"."
-  (replace-regexp-in-string
-   "^[ \t]*,*\\(,\\)\\(?:\\*\\|#\\+\\)" "" s nil nil 1))
-
-
-
-;;; Org src minor mode
-
-(defvar org-src-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map "\C-c'" 'org-edit-src-exit)
-    (define-key map "\C-c\C-k" 'org-edit-src-abort)
-    (define-key map "\C-x\C-s" 'org-edit-src-save)
-    map))
-
-(define-minor-mode org-src-mode
-  "Minor mode for language major mode buffers generated by Org.
-\\<org-mode-map>
-This minor mode is turned on in two situations:
-  - when editing a source code snippet with `\\[org-edit-special]'
-  - when formatting a source code snippet for export with htmlize.
-
-\\{org-src-mode-map}
-
-See also `org-src-mode-hook'."
-  nil " OrgSrc" nil
-  (when org-edit-src-persistent-message
-    (setq-local
-     header-line-format
-     (substitute-command-keys
-      (if org-src--allow-write-back
-	  "Edit, then exit with `\\[org-edit-src-exit]' or abort with \
-`\\[org-edit-src-abort]'"
-	"Exit with `\\[org-edit-src-exit]' or abort with \
-`\\[org-edit-src-abort]'"))))
-  ;; Possibly activate various auto-save features (for the edit buffer
-  ;; or the source buffer).
-  (when org-edit-src-turn-on-auto-save
-    (setq buffer-auto-save-file-name
-	  (concat (make-temp-name "org-src-")
-		  (format-time-string "-%Y-%d-%m")
-		  ".txt")))
-  (unless (or org-src--auto-save-timer (zerop org-edit-src-auto-save-idle-delay))
-    (setq org-src--auto-save-timer
-	  (run-with-idle-timer
-	   org-edit-src-auto-save-idle-delay t
-	   (lambda ()
-	     (save-excursion
-	       (let (edit-flag)
-		 (dolist (b (buffer-list))
-		   (with-current-buffer b
-		     (when (org-src-edit-buffer-p)
-		       (unless edit-flag (setq edit-flag t))
-		       (when (buffer-modified-p) (org-edit-src-save)))))
-		 (unless edit-flag
-		   (cancel-timer org-src--auto-save-timer)
-		   (setq org-src--auto-save-timer nil)))))))))
-
-(defun org-src-mode-configure-edit-buffer ()
-  (when (bound-and-true-p org-src--from-org-mode)
-    (add-hook 'kill-buffer-hook #'org-src--remove-overlay nil 'local)
-    (if (bound-and-true-p org-src--allow-write-back)
-	(progn
-	  (setq buffer-offer-save t)
-	  (setq buffer-file-name
-		(concat (buffer-file-name (marker-buffer org-src--beg-marker))
-			"[" (buffer-name) "]"))
-	  (setq-local write-contents-functions '(org-edit-src-save)))
-      (setq buffer-read-only t))))
-
-(add-hook 'org-src-mode-hook #'org-src-mode-configure-edit-buffer)
-
-
-
-;;; Babel related functions
-
-(defun org-src-associate-babel-session (info)
-  "Associate edit buffer with comint session."
-  (interactive)
-  (let ((session (cdr (assq :session (nth 2 info)))))
-    (and session (not (string= session "none"))
-	 (org-babel-comint-buffer-livep session)
-	 (let ((f (intern (format "org-babel-%s-associate-session"
-                                  (nth 0 info)))))
-           (and (fboundp f) (funcall f session))))))
-
-(defun org-src-babel-configure-edit-buffer ()
-  (when org-src--babel-info
-    (org-src-associate-babel-session org-src--babel-info)))
-
-(add-hook 'org-src-mode-hook #'org-src-babel-configure-edit-buffer)
-
-
-;;; Public API
-
-(defmacro org-src-do-at-code-block (&rest body)
-  "Execute BODY from an edit buffer in the Org mode buffer."
-  (declare (debug (body)))
-  `(let ((beg-marker org-src--beg-marker))
-     (when beg-marker
-       (with-current-buffer (marker-buffer beg-marker)
-	 (goto-char beg-marker)
-	 ,@body))))
-
-(defun org-src-do-key-sequence-at-code-block (&optional key)
-  "Execute key sequence at code block in the source Org buffer.
-The command bound to KEY in the Org-babel key map is executed
-remotely with point temporarily at the start of the code block in
-the Org buffer.
-
-This command is not bound to a key by default, to avoid conflicts
-with language major mode bindings.  To bind it to C-c @ in all
-language major modes, you could use
-
-  (add-hook \\='org-src-mode-hook
-            (lambda () (define-key org-src-mode-map \"\\C-c@\"
-                    \\='org-src-do-key-sequence-at-code-block)))
-
-In that case, for example, C-c @ t issued in code edit buffers
-would tangle the current Org code block, C-c @ e would execute
-the block and C-c @ h would display the other available
-Org-babel commands."
-  (interactive "kOrg-babel key: ")
-  (if (equal key (kbd "C-g")) (keyboard-quit)
-    (org-edit-src-save)
-    (org-src-do-at-code-block
-     (call-interactively (lookup-key org-babel-map key)))))
-
-(defun org-src-edit-buffer-p (&optional buffer)
-  "Non-nil when current buffer is a source editing buffer.
-If BUFFER is non-nil, test it instead."
-  (let ((buffer (org-base-buffer (or buffer (current-buffer)))))
-    (and (buffer-live-p buffer)
-	 (local-variable-p 'org-src--beg-marker buffer)
-	 (local-variable-p 'org-src--end-marker buffer))))
-
-(defun org-src-switch-to-buffer (buffer context)
-  (pcase org-src-window-setup
-    (`current-window (pop-to-buffer-same-window buffer))
-    (`other-window
-     (switch-to-buffer-other-window buffer))
-    (`other-frame
-     (pcase context
-       (`exit
-	(let ((frame (selected-frame)))
-	  (switch-to-buffer-other-frame buffer)
-	  (delete-frame frame)))
-       (`save
-	(kill-buffer (current-buffer))
-	(pop-to-buffer-same-window buffer))
-       (_ (switch-to-buffer-other-frame buffer))))
-    (`reorganize-frame
-     (when (eq context 'edit) (delete-other-windows))
-     (org-switch-to-buffer-other-window buffer)
-     (when (eq context 'exit) (delete-other-windows)))
-    (`switch-invisibly (set-buffer buffer))
-    (_
-     (message "Invalid value %s for `org-src-window-setup'"
-	      org-src-window-setup)
-     (pop-to-buffer-same-window buffer))))
-
-(defun org-src-coderef-format (&optional element)
-  "Return format string for block at point.
-
-When optional argument ELEMENT is provided, use that block.
-Otherwise, assume point is either at a source block, at an
-example block.
-
-If point is in an edit buffer, retrieve format string associated
-to the remote source block."
-  (cond
-   ((and element (org-element-property :label-fmt element)))
-   ((org-src-edit-buffer-p) (org-src-do-at-code-block (org-src-coderef-format)))
-   ((org-element-property :label-fmt (org-element-at-point)))
-   (t org-coderef-label-format)))
-
-(defun org-src-coderef-regexp (fmt &optional label)
-  "Return regexp matching a coderef format string FMT.
-
-When optional argument LABEL is non-nil, match coderef for that
-label only.
-
-Match group 1 contains the full coderef string with surrounding
-white spaces.  Match group 2 contains the same string without any
-surrounding space.  Match group 3 contains the label.
-
-A coderef format regexp can only match at the end of a line."
-  (format "\\([ \t]*\\(%s\\)[ \t]*\\)$"
-	  (replace-regexp-in-string
-	   "%s"
-	   (if label (regexp-quote label) "\\([-a-zA-Z0-9_][-a-zA-Z0-9_ ]*\\)")
-	   (regexp-quote fmt)
-	   nil t)))
-
-(defun org-edit-footnote-reference ()
-  "Edit definition of footnote reference at point."
-  (interactive)
-  (let* ((context (org-element-context))
-	 (label (org-element-property :label context)))
-    (unless (and (eq (org-element-type context) 'footnote-reference)
-		 (org-src--on-datum-p context))
-      (user-error "Not on a footnote reference"))
-    (unless label (user-error "Cannot edit remotely anonymous footnotes"))
-    (let* ((definition (org-with-wide-buffer
-			(org-footnote-goto-definition label)
-			(backward-char)
-			(org-element-context)))
-	   (inline? (eq 'footnote-reference (org-element-type definition)))
-	   (contents
-	    (org-with-wide-buffer
-	     (buffer-substring-no-properties
-	      (or (org-element-property :post-affiliated definition)
-		  (org-element-property :begin definition))
-	      (cond
-	       (inline? (1+ (org-element-property :contents-end definition)))
-	       ((org-element-property :contents-end definition))
-	       (t (goto-char (org-element-property :post-affiliated definition))
-		  (line-end-position)))))))
-      (add-text-properties
-       0
-       (progn (string-match (if inline? "\\`\\[fn:.*?:" "\\`.*?\\]") contents)
-	      (match-end 0))
-       '(read-only "Cannot edit footnote label" front-sticky t rear-nonsticky t)
-       contents)
-      (when inline?
-	(let ((l (length contents)))
-	  (add-text-properties
-	   (1- l) l
-	   '(read-only "Cannot edit past footnote reference"
-		       front-sticky nil rear-nonsticky nil)
-	   contents)))
-      (org-src--edit-element
-       definition
-       (format "*Edit footnote [%s]*" label)
-       (let ((source (current-buffer)))
-	 (lambda ()
-	   (org-mode)
-	   (org-clone-local-variables source)))
-       (lambda ()
-	 (if (not inline?) (delete-region (point) (search-forward "]"))
-	   (delete-region (point) (search-forward ":" nil t 2))
-	   (delete-region (1- (point-max)) (point-max))
-	   (when (re-search-forward "\n[ \t]*\n" nil t)
-	     (user-error "Inline definitions cannot contain blank lines"))
-	   ;; If footnote reference belongs to a table, make sure to
-	   ;; remove any newline characters in order to preserve
-	   ;; table's structure.
-	   (when (org-element-lineage definition '(table-cell))
-	     (while (search-forward "\n" nil t) (replace-match "")))))
-       contents
-       'remote))
-    ;; Report success.
-    t))
-
-(defun org-edit-table.el ()
-  "Edit \"table.el\" table at point.
-\\<org-src-mode-map>
-A new buffer is created and the table is copied into it.  Then
-the table is recognized with `table-recognize'.  When done
-editing, exit with `\\[org-edit-src-exit]'.  The edited text will \
-then replace
-the area in the Org mode buffer.
-
-Throw an error when not at such a table."
-  (interactive)
-  (let ((element (org-element-at-point)))
-    (unless (and (eq (org-element-type element) 'table)
-		 (eq (org-element-property :type element) 'table.el)
-		 (org-src--on-datum-p element))
-      (user-error "Not in a table.el table"))
-    (org-src--edit-element
-     element
-     (org-src--construct-edit-buffer-name (buffer-name) "Table")
-     #'text-mode t)
-    (when (bound-and-true-p flyspell-mode) (flyspell-mode -1))
-    (table-recognize)
-    t))
-
-(defun org-edit-latex-environment ()
-  "Edit LaTeX environment at point.
-\\<org-src-mode-map>
-The LaTeX environment is copied into a new buffer.  Major mode is
-set to the one associated to \"latex\" in `org-src-lang-modes',
-or to `latex-mode' if there is none.
-
-When done, exit with `\\[org-edit-src-exit]'.  The edited text \
-will then replace
-the LaTeX environment in the Org mode buffer."
-  (interactive)
-  (let ((element (org-element-at-point)))
-    (unless (and (eq (org-element-type element) 'latex-environment)
-		 (org-src--on-datum-p element))
-      (user-error "Not in a LaTeX environment"))
-    (org-src--edit-element
-     element
-     (org-src--construct-edit-buffer-name (buffer-name) "LaTeX environment")
-     (org-src--get-lang-mode "latex")
-     t)
-    t))
-
-(defun org-edit-export-block ()
-  "Edit export block at point.
-\\<org-src-mode-map>
-A new buffer is created and the block is copied into it, and the
-buffer is switched into an appropriate major mode.  See also
-`org-src-lang-modes'.
-
-When done, exit with `\\[org-edit-src-exit]'.  The edited text \
-will then replace
-the area in the Org mode buffer.
-
-Throw an error when not at an export block."
-  (interactive)
-  (let ((element (org-element-at-point)))
-    (unless (and (eq (org-element-type element) 'export-block)
-		 (org-src--on-datum-p element))
-      (user-error "Not in an export block"))
-    (let* ((type (downcase (or (org-element-property :type element)
-			       ;; Missing export-block type.  Fallback
-			       ;; to default mode.
-			       "fundamental")))
-	   (mode (org-src--get-lang-mode type)))
-      (unless (functionp mode) (error "No such language mode: %s" mode))
-      (org-src--edit-element
-       element
-       (org-src--construct-edit-buffer-name (buffer-name) type)
-       mode
-       (lambda () (org-escape-code-in-region (point-min) (point-max)))))
-    t))
-
-(defun org-edit-src-code (&optional code edit-buffer-name)
-  "Edit the source or example block at point.
-\\<org-src-mode-map>
-The code is copied to a separate buffer and the appropriate mode
-is turned on.  When done, exit with `\\[org-edit-src-exit]'.  This \
-will remove the
-original code in the Org buffer, and replace it with the edited
-version.  See `org-src-window-setup' to configure the display of
-windows containing the Org buffer and the code buffer.
-
-When optional argument CODE is a string, edit it in a dedicated
-buffer instead.
-
-When optional argument EDIT-BUFFER-NAME is non-nil, use it as the
-name of the sub-editing buffer."
-  (interactive)
-  (let* ((element (org-element-at-point))
-	 (type (org-element-type element)))
-    (unless (and (memq type '(example-block src-block))
-		 (org-src--on-datum-p element))
-      (user-error "Not in a source or example block"))
-    (let* ((lang
-	    (if (eq type 'src-block) (org-element-property :language element)
-	      "example"))
-	   (lang-f (and (eq type 'src-block) (org-src--get-lang-mode lang)))
-	   (babel-info (and (eq type 'src-block)
-			    (org-babel-get-src-block-info 'light)))
-	   deactivate-mark)
-      (when (and (eq type 'src-block) (not (functionp lang-f)))
-	(error "No such language mode: %s" lang-f))
-      (org-src--edit-element
-       element
-       (or edit-buffer-name
-	   (org-src--construct-edit-buffer-name (buffer-name) lang))
-       lang-f
-       (and (null code)
-	    (lambda () (org-escape-code-in-region (point-min) (point-max))))
-       (and code (org-unescape-code-in-string code)))
-      ;; Finalize buffer.
-      (setq-local org-coderef-label-format
-		  (or (org-element-property :label-fmt element)
-		      org-coderef-label-format))
-      (when (eq type 'src-block)
-	(setq org-src--babel-info babel-info)
-	(let ((edit-prep-func (intern (concat "org-babel-edit-prep:" lang))))
-	  (when (fboundp edit-prep-func)
-	    (funcall edit-prep-func babel-info))))
-      t)))
-
-(defun org-edit-inline-src-code ()
-  "Edit inline source code at point."
-  (interactive)
-  (let ((context (org-element-context)))
-    (unless (and (eq (org-element-type context) 'inline-src-block)
-		 (org-src--on-datum-p context))
-      (user-error "Not on inline source code"))
-    (let* ((lang (org-element-property :language context))
-	   (lang-f (org-src--get-lang-mode lang))
-	   (babel-info (org-babel-get-src-block-info 'light))
-	   deactivate-mark)
-      (unless (functionp lang-f) (error "No such language mode: %s" lang-f))
-      (org-src--edit-element
-       context
-       (org-src--construct-edit-buffer-name (buffer-name) lang)
-       lang-f
-       (lambda ()
-	 ;; Inline src blocks are limited to one line.
-	 (while (re-search-forward "\n[ \t]*" nil t) (replace-match " "))
-	 ;; Trim contents.
-	 (goto-char (point-min))
-	 (skip-chars-forward " \t")
-	 (delete-region (point-min) (point))
-	 (goto-char (point-max))
-	 (skip-chars-backward " \t")
-	 (delete-region (point) (point-max))))
-      ;; Finalize buffer.
-      (setq org-src--babel-info babel-info)
-      (setq org-src--preserve-indentation t)
-      (let ((edit-prep-func (intern (concat "org-babel-edit-prep:" lang))))
-	(when (fboundp edit-prep-func) (funcall edit-prep-func babel-info)))
-      ;; Return success.
-      t)))
-
-(defun org-edit-fixed-width-region ()
-  "Edit the fixed-width ASCII drawing at point.
-\\<org-src-mode-map>
-This must be a region where each line starts with a colon
-followed by a space or a newline character.
-
-A new buffer is created and the fixed-width region is copied into
-it, and the buffer is switched into the major mode defined in
-`org-edit-fixed-width-region-mode', which see.
-
-When done, exit with `\\[org-edit-src-exit]'.  The edited text \
-will then replace
-the area in the Org mode buffer."
-  (interactive)
-  (let ((element (org-element-at-point)))
-    (unless (and (eq (org-element-type element) 'fixed-width)
-		 (org-src--on-datum-p element))
-      (user-error "Not in a fixed-width area"))
-    (org-src--edit-element
-     element
-     (org-src--construct-edit-buffer-name (buffer-name) "Fixed Width")
-     org-edit-fixed-width-region-mode
-     (lambda () (while (not (eobp)) (insert ": ") (forward-line))))
-    ;; Return success.
-    t))
-
-(defun org-edit-src-abort ()
-  "Abort editing of the src code and return to the Org buffer."
-  (interactive)
-  (let (org-src--allow-write-back) (org-edit-src-exit)))
-
-(defun org-edit-src-continue (e)
-  "Unconditionally return to buffer editing area under point.
-Throw an error if there is no such buffer."
-  (interactive "e")
-  (mouse-set-point e)
-  (let ((buf (get-char-property (point) 'edit-buffer)))
-    (if buf (org-src-switch-to-buffer buf 'continue)
-      (user-error "No sub-editing buffer for area at point"))))
-
-(defun org-edit-src-save ()
-  "Save parent buffer with current state source-code buffer."
-  (interactive)
-  (unless (org-src-edit-buffer-p) (user-error "Not in a sub-editing buffer"))
-  (set-buffer-modified-p nil)
-  (let ((edited-code (org-src--contents-for-write-back))
-	(beg org-src--beg-marker)
-	(end org-src--end-marker)
-	(overlay org-src--overlay))
-    (with-current-buffer (org-src--source-buffer)
-      (undo-boundary)
-      (goto-char beg)
-      ;; Temporarily disable read-only features of OVERLAY in order to
-      ;; insert new contents.
-      (delete-overlay overlay)
-      (delete-region beg end)
-      (let ((expecting-bol (bolp)))
-	(insert edited-code)
-	(when (and expecting-bol (not (bolp))) (insert "\n")))
-      (save-buffer)
-      (move-overlay overlay beg (point))))
-  ;; `write-contents-functions' requires the function to return
-  ;; a non-nil value so that other functions are not called.
-  t)
-
-(defun org-edit-src-exit ()
-  "Kill current sub-editing buffer and return to source buffer."
-  (interactive)
-  (unless (org-src-edit-buffer-p) (error "Not in a sub-editing buffer"))
-  (let* ((beg org-src--beg-marker)
-	 (end org-src--end-marker)
-	 (write-back org-src--allow-write-back)
-	 (remote org-src--remote)
-	 (coordinates (and (not remote)
-			   (org-src--coordinates (point) 1 (point-max))))
-	 (code (and write-back (org-src--contents-for-write-back))))
-    (set-buffer-modified-p nil)
-    ;; Switch to source buffer.  Kill sub-editing buffer.
-    (let ((edit-buffer (current-buffer))
-	  (source-buffer (marker-buffer beg)))
-      (unless source-buffer (error "Source buffer disappeared.  Aborting"))
-      (org-src-switch-to-buffer source-buffer 'exit)
-      (kill-buffer edit-buffer))
-    ;; Insert modified code.  Ensure it ends with a newline character.
-    (org-with-wide-buffer
-     (when (and write-back (not (equal (buffer-substring beg end) code)))
-       (undo-boundary)
-       (goto-char beg)
-       (delete-region beg end)
-       (let ((expecting-bol (bolp)))
-	 (insert code)
-	 (when (and expecting-bol (not (bolp))) (insert "\n")))))
-    ;; If we are to return to source buffer, put point at an
-    ;; appropriate location.  In particular, if block is hidden, move
-    ;; to the beginning of the block opening line.
-    (unless remote
-      (goto-char beg)
-      (cond
-       ;; Block is hidden; move at start of block.
-       ((cl-some (lambda (o) (eq (overlay-get o 'invisible) 'org-hide-block))
-		 (overlays-at (point)))
-	(beginning-of-line 0))
-       (write-back (org-src--goto-coordinates coordinates beg end))))
-    ;; Clean up left-over markers and restore window configuration.
-    (set-marker beg nil)
-    (set-marker end nil)
-    (when org-src--saved-temp-window-config
-      (set-window-configuration org-src--saved-temp-window-config)
-      (setq org-src--saved-temp-window-config nil))))
-
-
-(provide 'org-src)
-
-;;; org-src.el ends here
diff --git a/elpa/org-9.1.14/org-src.elc b/elpa/org-9.1.14/org-src.elc
deleted file mode 100644
index 5a9d807..0000000
--- a/elpa/org-9.1.14/org-src.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-table.el b/elpa/org-9.1.14/org-table.el
deleted file mode 100644
index e451350..0000000
--- a/elpa/org-9.1.14/org-table.el
+++ /dev/null
@@ -1,5570 +0,0 @@
-;;; org-table.el --- The Table Editor for Org        -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file contains the table editor and spreadsheet for Org mode.
-
-;; Watch out:  Here we are talking about two different kind of tables.
-;; Most of the code is for the tables created with the Org mode table editor.
-;; Sometimes, we talk about tables created and edited with the table.el
-;; Emacs package.  We call the former org-type tables, and the latter
-;; table.el-type tables.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org)
-
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-contents "org-element" (element))
-(declare-function org-element-extract-element "org-element" (element))
-(declare-function org-element-interpret-data "org-element" (data))
-(declare-function org-element-lineage "org-element"
-		  (blob &optional types with-self))
-(declare-function org-element-map "org-element"
-		  (data types fun
-			&optional info first-match no-recursion with-affiliated))
-(declare-function org-element-parse-buffer "org-element"
-		  (&optional granularity visible-only))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-type "org-element" (element))
-
-(declare-function org-export-create-backend "ox" (&rest rest) t)
-(declare-function org-export-data-with-backend "ox" (data backend info))
-(declare-function org-export-filter-apply-functions "ox"
-		  (filters value info))
-(declare-function org-export-first-sibling-p "ox" (blob info))
-(declare-function org-export-get-backend "ox" (name))
-(declare-function org-export-get-environment "ox"
-		  (&optional backend subtreep ext-plist))
-(declare-function org-export-install-filters "ox" (info))
-(declare-function org-export-table-has-special-column-p "ox" (table))
-(declare-function org-export-table-row-is-special-p "ox" (table-row info))
-
-(declare-function calc-eval "calc" (str &optional separator &rest args))
-
-(defvar constants-unit-system)
-(defvar org-element-use-cache)
-(defvar org-export-filters-alist)
-(defvar org-table-follow-field-mode)
-(defvar orgtbl-mode) ; defined below
-(defvar orgtbl-mode-menu) ; defined when orgtbl mode get initialized
-(defvar sort-fold-case)
-
-(defvar orgtbl-after-send-table-hook nil
-  "Hook for functions attaching to `C-c C-c', if the table is sent.
-This can be used to add additional functionality after the table is sent
-to the receiver position, otherwise, if table is not sent, the functions
-are not run.")
-
-(defvar org-table-TBLFM-begin-regexp "^[ \t]*|.*\n[ \t]*#\\+TBLFM: ")
-
-(defcustom orgtbl-optimized t
-  "Non-nil means use the optimized table editor version for `orgtbl-mode'.
-
-In the optimized version, the table editor takes over all simple keys that
-normally just insert a character.  In tables, the characters are inserted
-in a way to minimize disturbing the table structure (i.e. in overwrite mode
-for empty fields).  Outside tables, the correct binding of the keys is
-restored.
-
-Changing this variable requires a restart of Emacs to become
-effective."
-  :group 'org-table
-  :type 'boolean)
-
-(defcustom orgtbl-radio-table-templates
-  '((latex-mode "% BEGIN RECEIVE ORGTBL %n
-% END RECEIVE ORGTBL %n
-\\begin{comment}
-#+ORGTBL: SEND %n orgtbl-to-latex :splice nil :skip 0
-| | |
-\\end{comment}\n")
-    (texinfo-mode "@c BEGIN RECEIVE ORGTBL %n
-@c END RECEIVE ORGTBL %n
-@ignore
-#+ORGTBL: SEND %n orgtbl-to-html :splice nil :skip 0
-| | |
-@end ignore\n")
-    (html-mode "<!-- BEGIN RECEIVE ORGTBL %n -->
-<!-- END RECEIVE ORGTBL %n -->
-<!--
-#+ORGTBL: SEND %n orgtbl-to-html :splice nil :skip 0
-| | |
--->\n")
-    (org-mode "#+ BEGIN RECEIVE ORGTBL %n
-#+ END RECEIVE ORGTBL %n
-
-#+ORGTBL: SEND %n orgtbl-to-orgtbl :splice nil :skip 0
-| | |
-"))
-  "Templates for radio tables in different major modes.
-Each template must define lines that will be treated as a comment and that
-must contain the \"BEGIN RECEIVE ORGTBL %n\" and \"END RECEIVE ORGTBL\"
-lines where \"%n\" will be replaced with the name of the table during
-insertion of the template.  The transformed table will later be inserted
-between these lines.
-
-The template should also contain a minimal table in a multiline comment.
-If multiline comments are not possible in the buffer language,
-you can pack it into a string that will not be used when the code
-is compiled or executed.  Above the table will you need a line with
-the fixed string \"#+ORGTBL: SEND\", followed by instruction on how to
-convert the table into a data structure useful in the
-language of the buffer.  Check the manual for the section on
-\"Translator functions\", and more generally check out
-the Info node `(org)Tables in arbitrary syntax'.
-
-All occurrences of %n in a template will be replaced with the name of the
-table, obtained by prompting the user."
-  :group 'org-table
-  :type '(repeat
-	  (list (symbol :tag "Major mode")
-		(string :tag "Format"))))
-
-(defgroup org-table-settings nil
-  "Settings for tables in Org mode."
-  :tag "Org Table Settings"
-  :group 'org-table)
-
-(defcustom org-table-default-size "5x2"
-  "The default size for newly created tables, Columns x Rows."
-  :group 'org-table-settings
-  :type 'string)
-
-(defcustom org-table-number-regexp
-  "^\\([<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%:]*\\|[<>]?[-+]?0[xX][0-9a-fA-F.]+\\|[<>]?[-+]?[0-9]+#[0-9a-zA-Z.]+\\|nan\\|[-+u]?inf\\)$"
-  "Regular expression for recognizing numbers in table columns.
-If a table column contains mostly numbers, it will be aligned to the
-right.  If not, it will be aligned to the left.
-
-The default value of this option is a regular expression which allows
-anything which looks remotely like a number as used in scientific
-context.  For example, all of the following will be considered a
-number:
-    12    12.2    2.4e-08    2x10^12    4.034+-0.02    2.7(10)  >3.5
-
-Other options offered by the customize interface are more restrictive."
-  :group 'org-table-settings
-  :type '(choice
-	  (const :tag "Positive Integers"
-		 "^[0-9]+$")
-	  (const :tag "Integers"
-		 "^[-+]?[0-9]+$")
-	  (const :tag "Floating Point Numbers"
-		 "^[-+]?\\([0-9]*\\.[0-9]+\\|[0-9]+\\.[0-9]*\\)$")
-	  (const :tag "Floating Point Number or Integer"
-		 "^[-+]?\\([0-9]*\\.[0-9]+\\|[0-9]+\\.?[0-9]*\\)$")
-	  (const :tag "Exponential, Floating point, Integer"
-		 "^[-+]?[0-9.]+\\([eEdD][-+0-9]+\\)?$")
-	  (const :tag "Very General Number-Like, including hex and Calc radix"
-		 "^\\([<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%]*\\|[<>]?[-+]?0[xX][0-9a-fA-F.]+\\|[<>]?[-+]?[0-9]+#[0-9a-zA-Z.]+\\|nan\\|[-+u]?inf\\)$")
-	  (const :tag "Very General Number-Like, including hex and Calc radix, allows comma as decimal mark"
-		 "^\\([<>]?[-+^.,0-9]*[0-9][-+^.0-9eEdDx()%]*\\|[<>]?[-+]?0[xX][0-9a-fA-F.]+\\|[<>]?[-+]?[0-9]+#[0-9a-zA-Z.]+\\|nan\\|[-+u]?inf\\)$")
-	  (string :tag "Regexp:")))
-
-(defcustom org-table-number-fraction 0.5
-  "Fraction of numbers in a column required to make the column align right.
-In a column all non-white fields are considered.  If at least
-this fraction of fields is matched by `org-table-number-regexp',
-alignment to the right border applies."
-  :group 'org-table-settings
-  :type 'number)
-
-(defgroup org-table-editing nil
-  "Behavior of tables during editing in Org mode."
-  :tag "Org Table Editing"
-  :group 'org-table)
-
-(defcustom org-table-automatic-realign t
-  "Non-nil means automatically re-align table when pressing TAB or RETURN.
-When nil, aligning is only done with `\\[org-table-align]', or after column
-removal/insertion."
-  :group 'org-table-editing
-  :type 'boolean)
-
-(defcustom org-table-auto-blank-field t
-  "Non-nil means automatically blank table field when starting to type into it.
-This only happens when typing immediately after a field motion
-command (TAB, S-TAB or RET)."
-  :group 'org-table-editing
-  :type 'boolean)
-
-(defcustom org-table-exit-follow-field-mode-when-leaving-table t
-  "Non-nil means automatically exit the follow mode.
-When nil, the follow mode will stay on and be active in any table
-the cursor enters.  Since the table follow filed mode messes with the
-window configuration, it is not recommended to set this variable to nil,
-except maybe locally in a special file that has mostly tables with long
-fields."
-  :group 'org-table
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-table-fix-formulas-confirm nil
-  "Whether the user should confirm when Org fixes formulas."
-  :group 'org-table-editing
-  :version "24.1"
-  :type '(choice
-	  (const :tag "with yes-or-no" yes-or-no-p)
-	  (const :tag "with y-or-n" y-or-n-p)
-	  (const :tag "no confirmation" nil)))
-(put 'org-table-fix-formulas-confirm
-     'safe-local-variable
-     #'(lambda (x) (member x '(yes-or-no-p y-or-n-p))))
-
-(defcustom org-table-tab-jumps-over-hlines t
-  "Non-nil means tab in the last column of a table with jump over a hline.
-If a horizontal separator line is following the current line,
-`org-table-next-field' can either create a new row before that line, or jump
-over the line.  When this option is nil, a new line will be created before
-this line."
-  :group 'org-table-editing
-  :type 'boolean)
-
-(defgroup org-table-calculation nil
-  "Options concerning tables in Org mode."
-  :tag "Org Table Calculation"
-  :group 'org-table)
-
-(defcustom org-table-use-standard-references 'from
-  "Non-nil means using table references like B3 instead of @3$2.
-Possible values are:
-nil     never use them
-from    accept as input, do not present for editing
-t       accept as input and present for editing"
-  :group 'org-table-calculation
-  :type '(choice
-	  (const :tag "Never, don't even check user input for them" nil)
-	  (const :tag "Always, both as user input, and when editing" t)
-	  (const :tag "Convert user input, don't offer during editing" from)))
-
-(defcustom org-table-copy-increment t
-  "Non-nil means increment when copying current field with \
-`\\[org-table-copy-down]'."
-  :group 'org-table-calculation
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice
-	  (const :tag "Use the difference between the current and the above fields" t)
-	  (integer :tag "Use a number" 1)
-	  (const :tag "Don't increment the value when copying a field" nil)))
-
-(defcustom org-calc-default-modes
-  '(calc-internal-prec 12
-		       calc-float-format  (float 8)
-		       calc-angle-mode    deg
-		       calc-prefer-frac   nil
-		       calc-symbolic-mode nil
-		       calc-date-format (YYYY "-" MM "-" DD " " Www (" " hh ":" mm))
-		       calc-display-working-message t
-		       )
-  "List with Calc mode settings for use in `calc-eval' for table formulas.
-The list must contain alternating symbols (Calc modes variables and values).
-Don't remove any of the default settings, just change the values.  Org mode
-relies on the variables to be present in the list."
-  :group 'org-table-calculation
-  :type 'plist)
-
-(defcustom org-table-duration-custom-format 'hours
-  "Format for the output of calc computations like $1+$2;t.
-The default value is `hours', and will output the results as a
-number of hours.  Other allowed values are `seconds', `minutes' and
-`days', and the output will be a fraction of seconds, minutes or
-days. `hh:mm' selects to use hours and minutes, ignoring seconds.
-The `U' flag in a table formula will select this specific format for
-a single formula."
-  :group 'org-table-calculation
-  :version "24.1"
-  :type '(choice (symbol :tag "Seconds" 'seconds)
-		 (symbol :tag "Minutes" 'minutes)
-		 (symbol :tag "Hours  " 'hours)
-		 (symbol :tag "Days   " 'days)
-		 (symbol :tag "HH:MM  " 'hh:mm)))
-
-(defcustom org-table-duration-hour-zero-padding t
-  "Non-nil means hours in table duration computations should be zero-padded.
-So this is about 08:32:34 versus 8:33:34."
-  :group 'org-table-calculation
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-table-formula-field-format "%s"
-  "Format for fields which contain the result of a formula.
-For example, using \"~%s~\" will display the result within tilde
-characters.  Beware that modifying the display can prevent the
-field from being used in another formula."
-  :group 'org-table-settings
-  :version "24.1"
-  :type 'string)
-
-(defcustom org-table-formula-evaluate-inline t
-  "Non-nil means TAB and RET evaluate a formula in current table field.
-If the current field starts with an equal sign, it is assumed to be a formula
-which should be evaluated as described in the manual and in the documentation
-string of the command `org-table-eval-formula'.  This feature requires the
-Emacs calc package.
-When this variable is nil, formula calculation is only available through
-the command `\\[org-table-eval-formula]'."
-  :group 'org-table-calculation
-  :type 'boolean)
-
-(defcustom org-table-formula-use-constants t
-  "Non-nil means interpret constants in formulas in tables.
-A constant looks like `$c' or `$Grav' and will be replaced before evaluation
-by the value given in `org-table-formula-constants', or by a value obtained
-from the `constants.el' package."
-  :group 'org-table-calculation
-  :type 'boolean)
-
-(defcustom org-table-formula-constants nil
-  "Alist with constant names and values, for use in table formulas.
-The car of each element is a name of a constant, without the `$' before it.
-The cdr is the value as a string.  For example, if you'd like to use the
-speed of light in a formula, you would configure
-
-  (setq org-table-formula-constants \\='((\"c\" . \"299792458.\")))
-
-and then use it in an equation like `$1*$c'.
-
-Constants can also be defined on a per-file basis using a line like
-
-#+CONSTANTS: c=299792458. pi=3.14 eps=2.4e-6"
-  :group 'org-table-calculation
-  :type '(repeat
-	  (cons (string :tag "name")
-		(string :tag "value"))))
-
-(defcustom org-table-allow-automatic-line-recalculation t
-  "Non-nil means lines marked with |#| or |*| will be recomputed automatically.
-\\<org-mode-map>\
-Automatically means when `TAB' or `RET' or `\\[org-ctrl-c-ctrl-c]' \
-are pressed in the line."
-  :group 'org-table-calculation
-  :type 'boolean)
-
-(defcustom org-table-relative-ref-may-cross-hline t
-  "Non-nil means relative formula references may cross hlines.
-Here are the allowed values:
-
-nil    Relative references may not cross hlines.  They will reference the
-       field next to the hline instead.  Coming from below, the reference
-       will be to the field below the hline.  Coming from above, it will be
-       to the field above.
-t      Relative references may cross hlines.
-error  An attempt to cross a hline will throw an error.
-
-It is probably good to never set this variable to nil, for the sake of
-portability of tables."
-  :group 'org-table-calculation
-  :type '(choice
-	  (const :tag "Allow to cross" t)
-	  (const :tag "Stick to hline" nil)
-	  (const :tag "Error on attempt to cross" error)))
-
-(defcustom org-table-formula-create-columns nil
-  "Non-nil means evaluation of formula can add new columns.
-When non-nil, evaluating an out-of-bounds field can insert as
-many columns as needed.  When set to `warn', issue a warning when
-doing so.  When set to `prompt', ask user before creating a new
-column.  Otherwise, throw an error."
-  :group 'org-table-calculation
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice
-	  (const :tag "Out-of-bounds field generates an error (default)" nil)
-	  (const :tag "Out-of-bounds field silently adds columns as needed" t)
-	  (const :tag "Out-of-bounds field adds columns, but issues a warning" warn)
-	  (const :tag "Prompt user when setting an out-of-bounds field" prompt)))
-
-(defgroup org-table-import-export nil
-  "Options concerning table import and export in Org mode."
-  :tag "Org Table Import Export"
-  :group 'org-table)
-
-(defcustom org-table-export-default-format "orgtbl-to-tsv"
-  "Default export parameters for `org-table-export'.
-These can be overridden for a specific table by setting the
-TABLE_EXPORT_FORMAT property.  See the manual section on orgtbl
-radio tables for the different export transformations and
-available parameters."
-  :group 'org-table-import-export
-  :type 'string)
-
-(defcustom org-table-convert-region-max-lines 999
-  "Max lines that `org-table-convert-region' will attempt to process.
-
-The function can be slow on larger regions; this safety feature
-prevents it from hanging emacs."
-  :group 'org-table-import-export
-  :type 'integer
-  :version "26.1"
-  :package-version '(Org . "8.3"))
-
-(defconst org-table-auto-recalculate-regexp "^[ \t]*| *# *\\(|\\|$\\)"
-  "Regexp matching a line marked for automatic recalculation.")
-
-(defconst org-table-recalculate-regexp "^[ \t]*| *[#*] *\\(|\\|$\\)"
-  "Regexp matching a line marked for recalculation.")
-
-(defconst org-table-calculate-mark-regexp "^[ \t]*| *[!$^_#*] *\\(|\\|$\\)"
-  "Regexp matching a line marked for calculation.")
-
-(defconst org-table-border-regexp "^[ \t]*[^| \t]"
-  "Regexp matching any line outside an Org table.")
-
-(defvar org-table-last-highlighted-reference nil)
-
-(defvar org-table-formula-history nil)
-
-(defvar org-table-column-names nil
-  "Alist with column names, derived from the `!' line.
-This variable is initialized with `org-table-analyze'.")
-
-(defvar org-table-column-name-regexp nil
-  "Regular expression matching the current column names.
-This variable is initialized with `org-table-analyze'.")
-
-(defvar org-table-local-parameters nil
-  "Alist with parameter names, derived from the `$' line.
-This variable is initialized with `org-table-analyze'.")
-
-(defvar org-table-named-field-locations nil
-  "Alist with locations of named fields.
-Associations follow the pattern (NAME LINE COLUMN) where
-  NAME is the name of the field as a string,
-  LINE is the number of lines from the beginning of the table,
-  COLUMN is the column of the field, as an integer.
-This variable is initialized with `org-table-analyze'.")
-
-(defvar org-table-current-line-types nil
-  "Table row types in current table.
-This variable is initialized with `org-table-analyze'.")
-
-(defvar org-table-current-begin-pos nil
-  "Current table begin position, as a marker.
-This variable is initialized with `org-table-analyze'.")
-
-(defvar org-table-current-ncol nil
-  "Number of columns in current table.
-This variable is initialized with `org-table-analyze'.")
-
-(defvar org-table-dlines nil
-  "Vector of data line line numbers in the current table.
-Line numbers are counted from the beginning of the table.  This
-variable is initialized with `org-table-analyze'.")
-
-(defvar org-table-hlines nil
-  "Vector of hline line numbers in the current table.
-Line numbers are counted from the beginning of the table.  This
-variable is initialized with `org-table-analyze'.")
-
-(defconst org-table-range-regexp
-  "@\\([-+]?I*[-+]?[0-9]*\\)?\\(\\$[-+]?[0-9]+\\)?\\(\\.\\.@?\\([-+]?I*[-+]?[0-9]*\\)?\\(\\$[-+]?[0-9]+\\)?\\)?"
-  ;;   1                        2                    3          4                        5
-  "Regular expression for matching ranges in formulas.")
-
-(defconst org-table-range-regexp2
-  (concat
-   "\\(" "@[-0-9I$&]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\|" "\\$[a-zA-Z0-9]+" "\\)"
-   "\\.\\."
-   "\\(" "@?[-0-9I$&]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\|" "\\$[a-zA-Z0-9]+" "\\)")
-  "Match a range for reference display.")
-
-(defconst org-table-translate-regexp
-  (concat "\\(" "@[-0-9I$]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\)")
-  "Match a reference that needs translation, for reference display.")
-
-(defmacro org-table-save-field (&rest body)
-  "Save current field; execute BODY; restore field.
-Field is restored even in case of abnormal exit."
-  (declare (debug (body)))
-  (org-with-gensyms (line column)
-    `(let ((,line (copy-marker (line-beginning-position)))
-	   (,column (org-table-current-column)))
-       (unwind-protect
-	   (progn ,@body)
-	 (goto-char ,line)
-	 (org-table-goto-column ,column)
-	 (set-marker ,line nil)))))
-
-;;;###autoload
-(defun org-table-create-with-table.el ()
-  "Use the table.el package to insert a new table.
-If there is already a table at point, convert between Org tables
-and table.el tables."
-  (interactive)
-  (require 'table)
-  (cond
-   ((org-at-table.el-p)
-    (if (y-or-n-p "Convert table to Org table? ")
-	(org-table-convert)))
-   ((org-at-table-p)
-    (when (y-or-n-p "Convert table to table.el table? ")
-      (org-table-align)
-      (org-table-convert)))
-   (t (call-interactively 'table-insert))))
-
-;;;###autoload
-(defun org-table-create-or-convert-from-region (arg)
-  "Convert region to table, or create an empty table.
-If there is an active region, convert it to a table, using the function
-`org-table-convert-region'.  See the documentation of that function
-to learn how the prefix argument is interpreted to determine the field
-separator.
-If there is no such region, create an empty table with `org-table-create'."
-  (interactive "P")
-  (if (org-region-active-p)
-      (org-table-convert-region (region-beginning) (region-end) arg)
-    (org-table-create arg)))
-
-;;;###autoload
-(defun org-table-create (&optional size)
-  "Query for a size and insert a table skeleton.
-SIZE is a string Columns x Rows like for example \"3x2\"."
-  (interactive "P")
-  (unless size
-    (setq size (read-string
-		(concat "Table size Columns x Rows [e.g. "
-			org-table-default-size "]: ")
-		"" nil org-table-default-size)))
-
-  (let* ((pos (point))
-	 (indent (make-string (current-column) ?\ ))
-	 (split (org-split-string size " *x *"))
-	 (rows (string-to-number (nth 1 split)))
-	 (columns (string-to-number (car split)))
-	 (line (concat (apply 'concat indent "|" (make-list columns "  |"))
-		       "\n")))
-    (if (string-match "^[ \t]*$" (buffer-substring-no-properties
-				  (point-at-bol) (point)))
-	(beginning-of-line 1)
-      (newline))
-    ;; (mapcar (lambda (x) (insert line)) (make-list rows t))
-    (dotimes (_ rows) (insert line))
-    (goto-char pos)
-    (if (> rows 1)
-	;; Insert a hline after the first row.
-	(progn
-	  (end-of-line 1)
-	  (insert "\n|-")
-	  (goto-char pos)))
-    (org-table-align)))
-
-;;;###autoload
-(defun org-table-convert-region (beg0 end0 &optional separator)
-  "Convert region to a table.
-
-The region goes from BEG0 to END0, but these borders will be moved
-slightly, to make sure a beginning of line in the first line is included.
-
-SEPARATOR specifies the field separator in the lines.  It can have the
-following values:
-
-(4)     Use the comma as a field separator
-(16)    Use a TAB as field separator
-(64)    Prompt for a regular expression as field separator
-integer  When a number, use that many spaces, or a TAB, as field separator
-regexp   When a regular expression, use it to match the separator
-nil      When nil, the command tries to be smart and figure out the
-         separator in the following way:
-         - when each line contains a TAB, assume TAB-separated material
-         - when each line contains a comma, assume CSV material
-         - else, assume one or more SPACE characters as separator."
-  (interactive "r\nP")
-  (let* ((beg (min beg0 end0))
-	 (end (max beg0 end0))
-	 re)
-    (if (> (count-lines beg end) org-table-convert-region-max-lines)
-	(user-error "Region is longer than `org-table-convert-region-max-lines' (%s) lines; not converting"
-		    org-table-convert-region-max-lines)
-      (if (equal separator '(64))
-	  (setq separator (read-regexp "Regexp for field separator")))
-      (goto-char beg)
-      (beginning-of-line 1)
-      (setq beg (point-marker))
-      (goto-char end)
-      (if (bolp) (backward-char 1) (end-of-line 1))
-      (setq end (point-marker))
-      ;; Get the right field separator
-      (unless separator
-	(goto-char beg)
-	(setq separator
-	      (cond
-	       ((not (re-search-forward "^[^\n\t]+$" end t)) '(16))
-	       ((not (re-search-forward "^[^\n,]+$" end t)) '(4))
-	       (t 1))))
-      (goto-char beg)
-      (if (equal separator '(4))
-	  (while (< (point) end)
-	    ;; parse the csv stuff
-	    (cond
-	     ((looking-at "^") (insert "| "))
-	     ((looking-at "[ \t]*$") (replace-match " |") (beginning-of-line 2))
-	     ((looking-at "[ \t]*\"\\([^\"\n]*\\)\"")
-	      (replace-match "\\1")
-	      (if (looking-at "\"") (insert "\"")))
-	     ((looking-at "[^,\n]+") (goto-char (match-end 0)))
-	     ((looking-at "[ \t]*,") (replace-match " | "))
-	     (t (beginning-of-line 2))))
-	(setq re (cond
-		  ((equal separator '(4)) "^\\|\"?[ \t]*,[ \t]*\"?")
-		  ((equal separator '(16)) "^\\|\t")
-		  ((integerp separator)
-		   (if (< separator 1)
-		       (user-error "Number of spaces in separator must be >= 1")
-		     (format "^ *\\| *\t *\\| \\{%d,\\}" separator)))
-		  ((stringp separator)
-		   (format "^ *\\|%s" separator))
-		  (t (error "This should not happen"))))
-	(while (re-search-forward re end t)
-	  (replace-match "| " t t)))
-      (goto-char beg)
-      (org-table-align))))
-
-;;;###autoload
-(defun org-table-import (file separator)
-  "Import FILE as a table.
-
-The command tries to be smart and figure out the separator in the
-following way:
-
-  - when each line contains a TAB, assume TAB-separated material
-  - when each line contains a comma, assume CSV material
-  - else, assume one or more SPACE characters as separator.
-
-When non-nil, SEPARATOR specifies the field separator in the
-lines.  It can have the following values:
-
-(4)     Use the comma as a field separator
-(16)    Use a TAB as field separator
-(64)    Prompt for a regular expression as field separator
-integer When a number, use that many spaces, or a TAB, as field separator
-regexp  When a regular expression, use it to match the separator."
-  (interactive "f\nP")
-  (unless (bolp) (insert "\n"))
-  (let ((beg (point))
-	(pm (point-max)))
-    (insert-file-contents file)
-    (org-table-convert-region beg (+ (point) (- (point-max) pm)) separator)))
-
-
-;;;###autoload
-(defun org-table-export (&optional file format)
-  "Export table to a file, with configurable format.
-Such a file can be imported into usual spreadsheet programs.
-
-FILE can be the output file name.  If not given, it will be taken
-from a TABLE_EXPORT_FILE property in the current entry or higher
-up in the hierarchy, or the user will be prompted for a file
-name.  FORMAT can be an export format, of the same kind as it
-used when `orgtbl-mode' sends a table in a different format.
-
-The command suggests a format depending on TABLE_EXPORT_FORMAT,
-whether it is set locally or up in the hierarchy, then on the
-extension of the given file name, and finally on the variable
-`org-table-export-default-format'."
-  (interactive)
-  (unless (org-at-table-p) (user-error "No table at point"))
-  (org-table-align)	       ; Make sure we have everything we need.
-  (let ((file (or file (org-entry-get (point) "TABLE_EXPORT_FILE" t))))
-    (unless file
-      (setq file (read-file-name "Export table to: "))
-      (unless (or (not (file-exists-p file))
-		  (y-or-n-p (format "Overwrite file %s? " file)))
-	(user-error "File not written")))
-    (when (file-directory-p file)
-      (user-error "This is a directory path, not a file"))
-    (when (and (buffer-file-name (buffer-base-buffer))
-	       (file-equal-p
-		(file-truename file)
-		(file-truename (buffer-file-name (buffer-base-buffer)))))
-      (user-error "Please specify a file name that is different from current"))
-    (let ((fileext (concat (file-name-extension file) "$"))
-	  (format (or format (org-entry-get (point) "TABLE_EXPORT_FORMAT" t))))
-      (unless format
-	(let* ((formats '("orgtbl-to-tsv" "orgtbl-to-csv" "orgtbl-to-latex"
-			  "orgtbl-to-html" "orgtbl-to-generic"
-			  "orgtbl-to-texinfo" "orgtbl-to-orgtbl"
-			  "orgtbl-to-unicode"))
-	       (deffmt-readable
-		 (replace-regexp-in-string
-		  "\t" "\\t"
-		  (replace-regexp-in-string
-		   "\n" "\\n"
-		   (or (car (delq nil
-				  (mapcar
-				   (lambda (f)
-				     (and (string-match-p fileext f) f))
-				   formats)))
-		       org-table-export-default-format)
-		   t t) t t)))
-	  (setq format
-		(org-completing-read
-		 "Format: " formats nil nil deffmt-readable))))
-      (if (string-match "\\([^ \t\r\n]+\\)\\( +.*\\)?" format)
-	  (let ((transform (intern (match-string 1 format)))
-		(params (and (match-end 2)
-			     (read (concat "(" (match-string 2 format) ")"))))
-		(table (org-table-to-lisp
-			(buffer-substring-no-properties
-			 (org-table-begin) (org-table-end)))))
-	    (unless (fboundp transform)
-	      (user-error "No such transformation function %s" transform))
-	    (let (buf)
-	      (with-current-buffer (find-file-noselect file)
-		(setq buf (current-buffer))
-		(erase-buffer)
-		(fundamental-mode)
-		(insert (funcall transform table params) "\n")
-		(save-buffer))
-	      (kill-buffer buf))
-	    (message "Export done."))
-	(user-error "TABLE_EXPORT_FORMAT invalid")))))
-
-(defvar org-table-aligned-begin-marker (make-marker)
-  "Marker at the beginning of the table last aligned.
-Used to check if cursor still is in that table, to minimize realignment.")
-(defvar org-table-aligned-end-marker (make-marker)
-  "Marker at the end of the table last aligned.
-Used to check if cursor still is in that table, to minimize realignment.")
-(defvar org-table-last-alignment nil
-  "List of flags for flushright alignment, from the last re-alignment.
-This is being used to correctly align a single field after TAB or RET.")
-(defvar org-table-last-column-widths nil
-  "List of max width of fields in each column.
-This is being used to correctly align a single field after TAB or RET.")
-(defvar-local org-table-formula-debug nil
-  "Non-nil means debug table formulas.
-When nil, simply write \"#ERROR\" in corrupted fields.")
-(defvar-local org-table-overlay-coordinates nil
-  "Overlay coordinates after each align of a table.")
-
-(defvar org-last-recalc-line nil)
-(defvar org-table-do-narrow t)   ; for dynamic scoping
-(defconst org-narrow-column-arrow "=>"
-  "Used as display property in narrowed table columns.")
-
-;;;###autoload
-(defun org-table-align ()
-  "Align the table at point by aligning all vertical bars."
-  (interactive)
-  (let* ((beg (org-table-begin))
-         (end (copy-marker (org-table-end))))
-    (org-table-save-field
-     ;; Make sure invisible characters in the table are at the right
-     ;; place since column widths take them into account.
-     (font-lock-fontify-region beg end)
-     (move-marker org-table-aligned-begin-marker beg)
-     (move-marker org-table-aligned-end-marker end)
-     (goto-char beg)
-     (let* ((indent (progn (looking-at "[ \t]*") (match-string 0)))
-            ;; Table's rows.  Separators are replaced by nil.  Trailing
-            ;; spaces are also removed.
-            (lines (mapcar (lambda (l)
-                             (and (not (string-match-p "\\`[ \t]*|-" l))
-                                  (let ((l (org-trim l)))
-                                    (remove-text-properties
-                                     0 (length l) '(display t org-cwidth t) l)
-                                    l)))
-                           (org-split-string (buffer-substring beg end) "\n")))
-            ;; Get the data fields by splitting the lines.
-            (fields (mapcar (lambda (l) (org-split-string l " *| *"))
-                            (remq nil lines)))
-            ;; Compute number of fields in the longest line.  If the
-            ;; table contains no field, create a default table.
-            (maxfields (if fields (apply #'max (mapcar #'length fields))
-                         (kill-region beg end)
-                         (org-table-create org-table-default-size)
-                         (user-error "Empty table - created default table")))
-            ;; A list of empty strings to fill any short rows on output.
-            (emptycells (make-list maxfields ""))
-            lengths typenums)
-       ;; Check for special formatting.
-       (dotimes (i maxfields)
-         (let ((column (mapcar (lambda (x) (or (nth i x) "")) fields))
-               fmax falign)
-           ;; Look for an explicit width or alignment.
-           (when (save-excursion
-                   (or (re-search-forward "| *<[lrc][0-9]*> *\\(|\\|$\\)" end t)
-                       (and org-table-do-narrow
-                            (re-search-forward
-                             "| *<[lrc]?[0-9]+> *\\(|\\|$\\)" end t))))
-             (catch :exit
-               (dolist (cell column)
-                 (when (string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'" cell)
-                   (when (match-end 1) (setq falign (match-string 1 cell)))
-                   (when (and org-table-do-narrow (match-end 2))
-                     (setq fmax (string-to-number (match-string 2 cell))))
-                   (when (or falign fmax) (throw :exit nil)))))
-             ;; Find fields that are wider than FMAX, and shorten them.
-             (when fmax
-               (dolist (x column)
-                 (when (> (org-string-width x) fmax)
-                   (org-add-props x nil
-                     'help-echo
-                     (concat
-		      "Clipped table field, use `\\[org-table-edit-field]' to \
-edit.  Full value is:\n"
-                      (substring-no-properties x)))
-                   (let ((l (length x))
-                         (f1 (min fmax
-                                  (or (string-match org-bracket-link-regexp x)
-                                      fmax)))
-                         (f2 1))
-                     (unless (> f1 1)
-                       (user-error
-                        "Cannot narrow field starting with wide link \"%s\""
-                        (match-string 0 x)))
-                     (if (= (org-string-width x) l) (setq f2 f1)
-                       (setq f2 1)
-                       (while (< (org-string-width (substring x 0 f2)) f1)
-                         (cl-incf f2)))
-                     (add-text-properties f2 l (list 'org-cwidth t) x)
-                     (add-text-properties
-                      (if (>= (string-width (substring x (1- f2) f2)) 2) (1- f2)
-                        (- f2 2))
-                      f2
-                      (list 'display org-narrow-column-arrow)
-                      x))))))
-           ;; Get the maximum width for each column
-           (push (or fmax (apply #'max 1 (mapcar #'org-string-width column)))
-                 lengths)
-           ;; Get the fraction of numbers among non-empty cells to
-           ;; decide about alignment of the column.
-           (if falign (push (equal (downcase falign) "r") typenums)
-             (let ((cnt 0)
-                   (frac 0.0))
-               (dolist (x column)
-                 (unless (equal x "")
-                   (setq frac
-                         (/ (+ (* frac cnt)
-                               (if (string-match-p org-table-number-regexp x)
-                                   1
-                                 0))
-                            (cl-incf cnt)))))
-               (push (>= frac org-table-number-fraction) typenums)))))
-       (setq lengths (nreverse lengths))
-       (setq typenums (nreverse typenums))
-       ;; Store alignment of this table, for later editing of single
-       ;; fields.
-       (setq org-table-last-alignment typenums)
-       (setq org-table-last-column-widths lengths)
-       ;; With invisible characters, `format' does not get the field
-       ;; width right So we need to make these fields wide by hand.
-       ;; Invisible characters may be introduced by fontified links,
-       ;; emphasis, macros or sub/superscripts.
-       (when (or (text-property-any beg end 'invisible 'org-link)
-                 (text-property-any beg end 'invisible t))
-         (dotimes (i maxfields)
-           (let ((len (nth i lengths)))
-             (dotimes (j (length fields))
-               (let* ((c (nthcdr i (nth j fields)))
-                      (cell (car c)))
-                 (when (and
-                        (stringp cell)
-                        (let ((l (length cell)))
-                          (or (text-property-any 0 l 'invisible 'org-link cell)
-                              (text-property-any beg end 'invisible t)))
-                        (< (org-string-width cell) len))
-                   (let ((s (make-string (- len (org-string-width cell)) ?\s)))
-                     (setcar c (if (nth i typenums) (concat s cell)
-                                 (concat cell s))))))))))
-
-       ;; Compute the formats needed for output of the table.
-       (let ((hfmt (concat indent "|"))
-             (rfmt (concat indent "|"))
-             (rfmt1 " %%%s%ds |")
-             (hfmt1 "-%s-+"))
-         (dolist (l lengths (setq hfmt (concat (substring hfmt 0 -1) "|")))
-           (let ((ty (if (pop typenums) "" "-"))) ; Flush numbers right.
-             (setq rfmt (concat rfmt (format rfmt1 ty l)))
-             (setq hfmt (concat hfmt (format hfmt1 (make-string l ?-))))))
-         ;; Replace modified lines only.  Check not only contents, but
-         ;; also columns' width.
-         (dolist (l lines)
-           (let ((line
-                  (if l (apply #'format rfmt (append (pop fields) emptycells))
-                    hfmt))
-                 (previous (buffer-substring (point) (line-end-position))))
-             (if (and (equal previous line)
-                      (let ((a 0)
-                            (b 0))
-                        (while (and (progn
-                                      (setq a (next-single-property-change
-                                               a 'org-cwidth previous))
-                                      (setq b (next-single-property-change
-                                               b 'org-cwidth line)))
-                                    (eq a b)))
-                        (eq a b)))
-                 (forward-line)
-               (insert line "\n")
-               (delete-region (point) (line-beginning-position 2))))))
-       (when (and orgtbl-mode (not (derived-mode-p 'org-mode)))
-         (goto-char org-table-aligned-begin-marker)
-         (while (org-hide-wide-columns org-table-aligned-end-marker)))
-       (set-marker end nil)
-       (when org-table-overlay-coordinates (org-table-overlay-coordinates))
-       (setq org-table-may-need-update nil)))))
-
-;;;###autoload
-(defun org-table-begin (&optional table-type)
-  "Find the beginning of the table and return its position.
-With a non-nil optional argument TABLE-TYPE, return the beginning
-of a table.el-type table.  This function assumes point is on
-a table."
-  (cond (table-type
-	 (org-element-property :post-affiliated (org-element-at-point)))
-	((save-excursion
-	   (and (re-search-backward org-table-border-regexp nil t)
-		(line-beginning-position 2))))
-	(t (point-min))))
-
-;;;###autoload
-(defun org-table-end (&optional table-type)
-  "Find the end of the table and return its position.
-With a non-nil optional argument TABLE-TYPE, return the end of
-a table.el-type table.  This function assumes point is on
-a table."
-  (save-excursion
-    (cond (table-type
-	   (goto-char (org-element-property :end (org-element-at-point)))
-	   (skip-chars-backward " \t\n")
-	   (line-beginning-position 2))
-	  ((re-search-forward org-table-border-regexp nil t)
-	   (match-beginning 0))
-	  ;; When the line right after the table is the last line in
-	  ;; the buffer with trailing spaces but no final newline
-	  ;; character, be sure to catch the correct ending at its
-	  ;; beginning.  In any other case, ending is expected to be
-	  ;; at point max.
-	  (t (goto-char (point-max))
-	     (skip-chars-backward " \t")
-	     (if (bolp) (point) (line-end-position))))))
-
-;;;###autoload
-(defun org-table-justify-field-maybe (&optional new)
-  "Justify the current field, text to left, number to right.
-Optional argument NEW may specify text to replace the current field content."
-  (cond
-   ((and (not new) org-table-may-need-update)) ; Realignment will happen anyway
-   ((org-at-table-hline-p))
-   ((and (not new)
-	 (or (not (eq (marker-buffer org-table-aligned-begin-marker)
-		      (current-buffer)))
-	     (< (point) org-table-aligned-begin-marker)
-	     (>= (point) org-table-aligned-end-marker)))
-    ;; This is not the same table, force a full re-align.
-    (setq org-table-may-need-update t))
-   (t
-    ;; Realign the current field, based on previous full realign.
-    (let ((pos (point))
-	  (col (org-table-current-column)))
-      (when (> col 0)
-	(skip-chars-backward "^|")
-	(if (not (looking-at " *\\([^|\n]*?\\) *\\(|\\|$\\)"))
-	    (setq org-table-may-need-update t)
-	  (let* ((numbers? (nth (1- col) org-table-last-alignment))
-		 (cell (match-string 0))
-		 (field (match-string 1))
-		 (len (max 1 (- (org-string-width cell) 3)))
-		 (properly-closed? (/= (match-beginning 2) (match-end 2)))
-		 (fmt (format (if numbers? " %%%ds %s" " %%-%ds %s")
-			      len
-			      (if properly-closed? "|"
-				(setq org-table-may-need-update t)
-				"")))
-		 (new-cell
-		  (cond ((not new) (format fmt field))
-			((<= (org-string-width new) len) (format fmt new))
-			(t
-			 (setq org-table-may-need-update t)
-			 (format " %s |" new)))))
-	    (unless (equal new-cell cell)
-	      (let (org-table-may-need-update)
-		(replace-match new-cell t t)))
-	    (goto-char pos))))))))
-
-;;;###autoload
-(defun org-table-next-field ()
-  "Go to the next field in the current table, creating new lines as needed.
-Before doing so, re-align the table if necessary."
-  (interactive)
-  (org-table-maybe-eval-formula)
-  (org-table-maybe-recalculate-line)
-  (if (and org-table-automatic-realign
-	   org-table-may-need-update)
-      (org-table-align))
-  (let ((end (org-table-end)))
-    (if (org-at-table-hline-p)
-	(end-of-line 1))
-    (condition-case nil
-	(progn
-	  (re-search-forward "|" end)
-	  (if (looking-at "[ \t]*$")
-	      (re-search-forward "|" end))
-	  (if (and (looking-at "-")
-		   org-table-tab-jumps-over-hlines
-		   (re-search-forward "^[ \t]*|\\([^-]\\)" end t))
-	      (goto-char (match-beginning 1)))
-	  (if (looking-at "-")
-	      (progn
-		(beginning-of-line 0)
-		(org-table-insert-row 'below))
-	    (if (looking-at " ") (forward-char 1))))
-      (error
-       (org-table-insert-row 'below)))))
-
-;;;###autoload
-(defun org-table-previous-field ()
-  "Go to the previous field in the table.
-Before doing so, re-align the table if necessary."
-  (interactive)
-  (org-table-justify-field-maybe)
-  (org-table-maybe-recalculate-line)
-  (when (and org-table-automatic-realign
-	     org-table-may-need-update)
-    (org-table-align))
-  (when (org-at-table-hline-p)
-    (end-of-line))
-  (let ((start (org-table-begin))
-	(origin (point)))
-    (condition-case nil
-	(progn
-	  (search-backward "|" start nil 2)
-	  (while (looking-at-p "|\\(?:-\\|[ \t]*$\\)")
-	    (search-backward "|" start)))
-      (error
-       (goto-char origin)
-       (user-error "Cannot move to previous table field"))))
-  (when (looking-at "| ?")
-    (goto-char (match-end 0))))
-
-(defun org-table-beginning-of-field (&optional n)
-  "Move to the beginning of the current table field.
-If already at or before the beginning, move to the beginning of the
-previous field.
-With numeric argument N, move N-1 fields backward first."
-  (interactive "p")
-  (let ((pos (point)))
-    (while (> n 1)
-      (setq n (1- n))
-      (org-table-previous-field))
-    (if (not (re-search-backward "|" (point-at-bol 0) t))
-	(user-error "No more table fields before the current")
-      (goto-char (match-end 0))
-      (and (looking-at " ") (forward-char 1)))
-    (if (>= (point) pos) (org-table-beginning-of-field 2))))
-
-(defun org-table-end-of-field (&optional n)
-  "Move to the end of the current table field.
-If already at or after the end, move to the end of the next table field.
-With numeric argument N, move N-1 fields forward first."
-  (interactive "p")
-  (let ((pos (point)))
-    (while (> n 1)
-      (setq n (1- n))
-      (org-table-next-field))
-    (when (re-search-forward "|" (point-at-eol 1) t)
-      (backward-char 1)
-      (skip-chars-backward " ")
-      (if (and (equal (char-before (point)) ?|) (looking-at " "))
-	  (forward-char 1)))
-    (if (<= (point) pos) (org-table-end-of-field 2))))
-
-;;;###autoload
-(defun org-table-next-row ()
-  "Go to the next row (same column) in the current table.
-Before doing so, re-align the table if necessary."
-  (interactive)
-  (org-table-maybe-eval-formula)
-  (org-table-maybe-recalculate-line)
-  (if (and org-table-automatic-realign
-	   org-table-may-need-update)
-      (org-table-align))
-  (let ((col (org-table-current-column)))
-    (beginning-of-line 2)
-    (when (or (not (org-at-table-p))
-	      (org-at-table-hline-p))
-      (beginning-of-line 0)
-      (org-table-insert-row 'below))
-    (org-table-goto-column col)
-    (skip-chars-backward "^|\n\r")
-    (when (looking-at " ") (forward-char))))
-
-;;;###autoload
-(defun org-table-copy-down (n)
-  "Copy the value of the current field one row below.
-
-If the field at the cursor is empty, copy the content of the
-nearest non-empty field above.  With argument N, use the Nth
-non-empty field.
-
-If the current field is not empty, it is copied down to the next
-row, and the cursor is moved with it.  Therefore, repeating this
-command causes the column to be filled row-by-row.
-
-If the variable `org-table-copy-increment' is non-nil and the
-field is an integer or a timestamp, it will be incremented while
-copying.  By default, increment by the difference between the
-value in the current field and the one in the field above.  To
-increment using a fixed integer, set `org-table-copy-increment'
-to a number.  In the case of a timestamp, increment by days."
-  (interactive "p")
-  (let* ((colpos (org-table-current-column))
-	 (col (current-column))
-	 (field (save-excursion (org-table-get-field)))
-	 (field-up (or (save-excursion
-			 (org-table-get (1- (org-table-current-line))
-					(org-table-current-column))) ""))
-	 (non-empty (string-match "[^ \t]" field))
-	 (non-empty-up (string-match "[^ \t]" field-up))
-	 (beg (org-table-begin))
-	 (orig-n n)
-	 txt txt-up inc)
-    (org-table-check-inside-data-field)
-    (if (not non-empty)
-	(save-excursion
-	  (setq txt
-		(catch 'exit
-		  (while (progn (beginning-of-line 1)
-				(re-search-backward org-table-dataline-regexp
-						    beg t))
-		    (org-table-goto-column colpos t)
-		    (if (and (looking-at
-			      "|[ \t]*\\([^| \t][^|]*?\\)[ \t]*|")
-			     (<= (setq n (1- n)) 0))
-			(throw 'exit (match-string 1))))))
-	  (setq field-up
-		(catch 'exit
-		  (while (progn (beginning-of-line 1)
-				(re-search-backward org-table-dataline-regexp
-						    beg t))
-		    (org-table-goto-column colpos t)
-		    (if (and (looking-at
-			      "|[ \t]*\\([^| \t][^|]*?\\)[ \t]*|")
-			     (<= (setq n (1- n)) 0))
-			(throw 'exit (match-string 1))))))
-	  (setq non-empty-up (and field-up (string-match "[^ \t]" field-up))))
-      ;; Above field was not empty, go down to the next row
-      (setq txt (org-trim field))
-      (org-table-next-row)
-      (org-table-blank-field))
-    (if non-empty-up (setq txt-up (org-trim field-up)))
-    (setq inc (cond
-	       ((numberp org-table-copy-increment) org-table-copy-increment)
-	       (txt-up (cond ((and (string-match org-ts-regexp3 txt-up)
-				   (string-match org-ts-regexp3 txt))
-			      (- (org-time-string-to-absolute txt)
-				 (org-time-string-to-absolute txt-up)))
-			     ((string-match org-ts-regexp3 txt) 1)
-			     ((string-match "\\([-+]\\)?\\(?:[0-9]+\\)?\\(?:\.[0-9]+\\)?" txt-up)
-			      (- (string-to-number txt)
-				 (string-to-number (match-string 0 txt-up))))
-			     (t 1)))
-	       (t 1)))
-    (if (not txt)
-	(user-error "No non-empty field found")
-      (if (and org-table-copy-increment
-	       (not (equal orig-n 0))
-	       (string-match-p "^[-+^/*0-9eE.]+$" txt)
-	       (< (string-to-number txt) 100000000))
-	  (setq txt (calc-eval (concat txt "+" (number-to-string inc)))))
-      (insert txt)
-      (org-move-to-column col)
-      (if (and org-table-copy-increment (org-at-timestamp-p 'lax))
-	  (org-timestamp-up-day inc)
-	(org-table-maybe-recalculate-line))
-      (org-table-align)
-      (org-move-to-column col))))
-
-(defun org-table-check-inside-data-field (&optional noerror)
-  "Is point inside a table data field?
-I.e. not on a hline or before the first or after the last column?
-This actually throws an error, so it aborts the current command."
-  (cond ((and (org-at-table-p)
-	      (not (save-excursion (skip-chars-backward " \t") (bolp)))
-	      (not (org-at-table-hline-p))
-	      (not (looking-at "[ \t]*$"))))
-	(noerror nil)
-	(t (user-error "Not in table data field"))))
-
-(defvar org-table-clip nil
-  "Clipboard for table regions.")
-
-(defun org-table-get (line column)
-  "Get the field in table line LINE, column COLUMN.
-If LINE is larger than the number of data lines in the table, the function
-returns nil.  However, if COLUMN is too large, we will simply return an
-empty string.
-If LINE is nil, use the current line.
-If COLUMN is nil, use the current column."
-  (setq column (or column (org-table-current-column)))
-  (save-excursion
-    (and (or (not line) (org-table-goto-line line))
-	 (org-trim (org-table-get-field column)))))
-
-(defun org-table-put (line column value &optional align)
-  "Put VALUE into line LINE, column COLUMN.
-When ALIGN is set, also realign the table."
-  (setq column (or column (org-table-current-column)))
-  (prog1 (save-excursion
-	   (and (or (not line) (org-table-goto-line line))
-		(progn (org-table-goto-column column nil 'force) t)
-		(org-table-get-field column value)))
-    (and align (org-table-align))))
-
-(defun org-table-current-line ()
-  "Return the index of the current data line."
-  (let ((pos (point)) (end (org-table-end)) (cnt 0))
-    (save-excursion
-      (goto-char (org-table-begin))
-      (while (and (re-search-forward org-table-dataline-regexp end t)
-		  (setq cnt (1+ cnt))
-		  (< (point-at-eol) pos))))
-    cnt))
-
-(defun org-table-goto-line (N)
-  "Go to the Nth data line in the current table.
-Return t when the line exists, nil if it does not exist."
-  (goto-char (org-table-begin))
-  (let ((end (org-table-end)) (cnt 0))
-    (while (and (re-search-forward org-table-dataline-regexp end t)
-		(< (setq cnt (1+ cnt)) N)))
-    (= cnt N)))
-
-;;;###autoload
-(defun org-table-blank-field ()
-  "Blank the current table field or active region."
-  (interactive)
-  (org-table-check-inside-data-field)
-  (if (and (called-interactively-p 'any) (org-region-active-p))
-      (let (org-table-clip)
-	(org-table-cut-region (region-beginning) (region-end)))
-    (skip-chars-backward "^|")
-    (backward-char 1)
-    (if (looking-at "|[^|\n]+")
-	(let* ((pos (match-beginning 0))
-	       (match (match-string 0))
-	       (len (org-string-width match)))
-	  (replace-match (concat "|" (make-string (1- len) ?\ )))
-	  (goto-char (+ 2 pos))
-	  (substring match 1)))))
-
-(defun org-table-get-field (&optional n replace)
-  "Return the value of the field in column N of current row.
-N defaults to current column.  If REPLACE is a string, replace
-field with this value.  The return value is always the old
-value."
-  (when n (org-table-goto-column n))
-  (skip-chars-backward "^|\n")
-  (if (or (bolp) (looking-at-p "[ \t]*$"))
-      ;; Before first column or after last one.
-      ""
-    (looking-at "[^|\r\n]*")
-    (let* ((pos (match-beginning 0))
-	   (val (buffer-substring pos (match-end 0))))
-      (when replace
-	(replace-match (if (equal replace "") " " replace) t t))
-      (goto-char (min (line-end-position) (1+ pos)))
-      val)))
-
-;;;###autoload
-(defun org-table-field-info (_arg)
-  "Show info about the current field, and highlight any reference at point."
-  (interactive "P")
-  (unless (org-at-table-p) (user-error "Not at a table"))
-  (org-table-analyze)
-  (save-excursion
-    (let* ((pos (point))
-	   (col (org-table-current-column))
-	   (cname (car (rassoc (int-to-string col) org-table-column-names)))
-	   (name (car (rassoc (list (count-lines org-table-current-begin-pos
-						 (line-beginning-position))
-				    col)
-			      org-table-named-field-locations)))
-	   (eql (org-table-expand-lhs-ranges
-		 (mapcar
-		  (lambda (e)
-		    (cons (org-table-formula-handle-first/last-rc (car e))
-			  (cdr e)))
-		  (org-table-get-stored-formulas))))
-	   (dline (org-table-current-dline))
-	   (ref (format "@%d$%d" dline col))
-	   (ref1 (org-table-convert-refs-to-an ref))
-	   ;; Prioritize field formulas over column formulas.
-	   (fequation (or (assoc name eql) (assoc ref eql)))
-	   (cequation (assoc (format "$%d" col) eql))
-	   (eqn (or fequation cequation)))
-      (let ((p (and eqn (get-text-property 0 :orig-eqn (car eqn)))))
-	(when p (setq eqn p)))
-      (goto-char pos)
-      (ignore-errors (org-table-show-reference 'local))
-      (message "line @%d, col $%s%s, ref @%d$%d or %s%s%s"
-	       dline col
-	       (if cname (concat " or $" cname) "")
-	       dline col ref1
-	       (if name (concat " or $" name) "")
-	       ;; FIXME: formula info not correct if special table line
-	       (if eqn
-		   (concat ", formula: "
-			   (org-table-formula-to-user
-			    (concat
-			     (if (or (string-prefix-p "$" (car eqn))
-				     (string-prefix-p "@" (car eqn)))
-				 ""
-			       "$")
-			     (car eqn) "=" (cdr eqn))))
-		 "")))))
-
-(defun org-table-current-column ()
-  "Find out which column we are in."
-  (interactive)
-  (save-excursion
-    (let ((column 0) (pos (point)))
-      (beginning-of-line)
-      (while (search-forward "|" pos t) (cl-incf column))
-      column)))
-
-(defun org-table-current-dline ()
-  "Find out what table data line we are in.
-Only data lines count for this."
-  (save-excursion
-    (let ((c 0)
-	  (pos (line-beginning-position)))
-      (goto-char (org-table-begin))
-      (while (<= (point) pos)
-	(when (looking-at org-table-dataline-regexp) (cl-incf c))
-	(forward-line))
-      c)))
-
-;;;###autoload
-(defun org-table-goto-column (n &optional on-delim force)
-  "Move the cursor to the Nth column in the current table line.
-With optional argument ON-DELIM, stop with point before the left delimiter
-of the field.
-If there are less than N fields, just go to after the last delimiter.
-However, when FORCE is non-nil, create new columns if necessary."
-  (interactive "p")
-  (beginning-of-line 1)
-  (when (> n 0)
-    (while (and (> (setq n (1- n)) -1)
-		(or (search-forward "|" (point-at-eol) t)
-		    (and force
-			 (progn (end-of-line 1)
-				(skip-chars-backward "^|")
-				(insert " | ")
-				t)))))
-    (when (and force (not (looking-at ".*|")))
-      (save-excursion (end-of-line 1) (insert " | ")))
-    (if on-delim
-	(backward-char 1)
-      (if (looking-at " ") (forward-char 1)))))
-
-;;;###autoload
-(defun org-table-insert-column ()
-  "Insert a new column into the table."
-  (interactive)
-  (unless (org-at-table-p) (user-error "Not at a table"))
-  (org-table-find-dataline)
-  (let* ((col (max 1 (org-table-current-column)))
-	 (beg (org-table-begin))
-	 (end (copy-marker (org-table-end))))
-    (org-table-save-field
-     (goto-char beg)
-     (while (< (point) end)
-       (unless (org-at-table-hline-p)
-	 (org-table-goto-column col t)
-	 (insert "|   "))
-       (forward-line)))
-    (set-marker end nil)
-    (org-table-align)
-    (when (or (not org-table-fix-formulas-confirm)
-	      (funcall org-table-fix-formulas-confirm "Fix formulas? "))
-      (org-table-fix-formulas "$" nil (1- col) 1)
-      (org-table-fix-formulas "$LR" nil (1- col) 1))))
-
-(defun org-table-find-dataline ()
-  "Find a data line in the current table, which is needed for column commands."
-  (if (and (org-at-table-p)
-	   (not (org-at-table-hline-p)))
-      t
-    (let ((col (current-column))
-	  (end (org-table-end)))
-      (org-move-to-column col)
-      (while (and (< (point) end)
-		  (or (not (= (current-column) col))
-		      (org-at-table-hline-p)))
-	(beginning-of-line 2)
-	(org-move-to-column col))
-      (if (and (org-at-table-p)
-	       (not (org-at-table-hline-p)))
-	  t
-	(user-error
-	 "Please position cursor in a data line for column operations")))))
-
-(defun org-table-line-to-dline (line &optional above)
-  "Turn a buffer line number into a data line number.
-
-If there is no data line in this line, return nil.
-
-If there is no matching dline (most likely the reference was
-a hline), the first dline below it is used.  When ABOVE is
-non-nil, the one above is used."
-  (let ((min 1)
-	(max (1- (length org-table-dlines))))
-    (cond ((or (> (aref org-table-dlines min) line)
-	       (< (aref org-table-dlines max) line))
-	   nil)
-	  ((= (aref org-table-dlines max) line) max)
-	  (t (catch 'exit
-	       (while (> (- max min) 1)
-		 (let* ((mean (/ (+ max min) 2))
-			(v (aref org-table-dlines mean)))
-		   (cond ((= v line) (throw 'exit mean))
-			 ((> v line) (setq max mean))
-			 (t (setq min mean)))))
-	       (if above min max))))))
-
-;;;###autoload
-(defun org-table-delete-column ()
-  "Delete a column from the table."
-  (interactive)
-  (unless (org-at-table-p) (user-error "Not at a table"))
-  (org-table-find-dataline)
-  (org-table-check-inside-data-field)
-  (let ((col (org-table-current-column))
-	(beg (org-table-begin))
-	(end (copy-marker (org-table-end))))
-    (org-table-save-field
-     (goto-char beg)
-     (while (< (point) end)
-       (if (org-at-table-hline-p)
-	   nil
-	 (org-table-goto-column col t)
-	 (and (looking-at "|[^|\n]+|")
-	      (replace-match "|")))
-       (forward-line)))
-    (set-marker end nil)
-    (org-table-goto-column (max 1 (1- col)))
-    (org-table-align)
-    (when (or (not org-table-fix-formulas-confirm)
-	      (funcall org-table-fix-formulas-confirm "Fix formulas? "))
-      (org-table-fix-formulas
-       "$" (list (cons (number-to-string col) "INVALID")) col -1 col)
-      (org-table-fix-formulas
-       "$LR" (list (cons (number-to-string col) "INVALID")) col -1 col))))
-
-;;;###autoload
-(defun org-table-move-column-right ()
-  "Move column to the right."
-  (interactive)
-  (org-table-move-column nil))
-;;;###autoload
-(defun org-table-move-column-left ()
-  "Move column to the left."
-  (interactive)
-  (org-table-move-column 'left))
-
-;;;###autoload
-(defun org-table-move-column (&optional left)
-  "Move the current column to the right.  With arg LEFT, move to the left."
-  (interactive "P")
-  (unless (org-at-table-p) (user-error "Not at a table"))
-  (org-table-find-dataline)
-  (org-table-check-inside-data-field)
-  (let* ((col (org-table-current-column))
-	 (col1 (if left (1- col) col))
-	 (colpos (if left (1- col) (1+ col)))
-	 (beg (org-table-begin))
-	 (end (copy-marker (org-table-end))))
-    (when (and left (= col 1))
-      (user-error "Cannot move column further left"))
-    (when (and (not left) (looking-at "[^|\n]*|[^|\n]*$"))
-      (user-error "Cannot move column further right"))
-    (org-table-save-field
-     (goto-char beg)
-     (while (< (point) end)
-       (unless (org-at-table-hline-p)
-	 (org-table-goto-column col1 t)
-	 (when (looking-at "|\\([^|\n]+\\)|\\([^|\n]+\\)|")
-           (transpose-regions
-            (match-beginning 1) (match-end 1)
-            (match-beginning 2) (match-end 2))))
-       (forward-line)))
-    (set-marker end nil)
-    (org-table-goto-column colpos)
-    (org-table-align)
-    (when (or (not org-table-fix-formulas-confirm)
-	      (funcall org-table-fix-formulas-confirm "Fix formulas? "))
-      (org-table-fix-formulas
-       "$" (list (cons (number-to-string col) (number-to-string colpos))
-		 (cons (number-to-string colpos) (number-to-string col))))
-      (org-table-fix-formulas
-       "$LR" (list (cons (number-to-string col) (number-to-string colpos))
-		   (cons (number-to-string colpos) (number-to-string col)))))))
-
-;;;###autoload
-(defun org-table-move-row-down ()
-  "Move table row down."
-  (interactive)
-  (org-table-move-row nil))
-;;;###autoload
-(defun org-table-move-row-up ()
-  "Move table row up."
-  (interactive)
-  (org-table-move-row 'up))
-
-;;;###autoload
-(defun org-table-move-row (&optional up)
-  "Move the current table line down.  With arg UP, move it up."
-  (interactive "P")
-  (let* ((col (current-column))
-	 (pos (point))
-	 (hline1p (save-excursion (beginning-of-line 1)
-				  (looking-at org-table-hline-regexp)))
-	 (dline1 (org-table-current-dline))
-	 (dline2 (+ dline1 (if up -1 1)))
-	 (tonew (if up 0 2))
-	 hline2p)
-    (when (and up (= (point-min) (line-beginning-position)))
-      (user-error "Cannot move row further"))
-    (beginning-of-line tonew)
-    (when (or (and (not up) (eobp)) (not (org-at-table-p)))
-      (goto-char pos)
-      (user-error "Cannot move row further"))
-    (setq hline2p (looking-at org-table-hline-regexp))
-    (goto-char pos)
-    (let ((row (delete-and-extract-region (line-beginning-position)
-					  (line-beginning-position 2))))
-      (beginning-of-line tonew)
-      (unless (bolp) (insert "\n"))	;at eob without a newline
-      (insert row)
-      (unless (bolp) (insert "\n"))	;missing final newline in ROW
-      (beginning-of-line 0)
-      (org-move-to-column col)
-      (unless (or hline1p hline2p
-		  (not (or (not org-table-fix-formulas-confirm)
-			   (funcall org-table-fix-formulas-confirm
-				    "Fix formulas? "))))
-	(org-table-fix-formulas
-	 "@" (list
-	      (cons (number-to-string dline1) (number-to-string dline2))
-	      (cons (number-to-string dline2) (number-to-string dline1))))))))
-
-;;;###autoload
-(defun org-table-insert-row (&optional arg)
-  "Insert a new row above the current line into the table.
-With prefix ARG, insert below the current line."
-  (interactive "P")
-  (unless (org-at-table-p) (user-error "Not at a table"))
-  (let* ((line (buffer-substring (line-beginning-position) (line-end-position)))
-	 (new (org-table-clean-line line)))
-    ;; Fix the first field if necessary
-    (if (string-match "^[ \t]*| *[#$] *|" line)
-	(setq new (replace-match (match-string 0 line) t t new)))
-    (beginning-of-line (if arg 2 1))
-    ;; Buffer may not end of a newline character, so ensure
-    ;; (beginning-of-line 2) moves point to a new line.
-    (unless (bolp) (insert "\n"))
-    (let (org-table-may-need-update) (insert-before-markers new "\n"))
-    (beginning-of-line 0)
-    (re-search-forward "| ?" (line-end-position) t)
-    (when (or org-table-may-need-update org-table-overlay-coordinates)
-      (org-table-align))
-    (when (or (not org-table-fix-formulas-confirm)
-	      (funcall org-table-fix-formulas-confirm "Fix formulas? "))
-      (org-table-fix-formulas "@" nil (1- (org-table-current-dline)) 1))))
-
-;;;###autoload
-(defun org-table-insert-hline (&optional above)
-  "Insert a horizontal-line below the current line into the table.
-With prefix ABOVE, insert above the current line."
-  (interactive "P")
-  (if (not (org-at-table-p))
-      (user-error "Not at a table"))
-  (when (eobp) (insert "\n") (backward-char 1))
-  (if (not (string-match-p "|[ \t]*$" (org-current-line-string)))
-      (org-table-align))
-  (let ((line (org-table-clean-line
-	       (buffer-substring (point-at-bol) (point-at-eol))))
-	(col (current-column)))
-    (while (string-match "|\\( +\\)|" line)
-      (setq line (replace-match
-		  (concat "+" (make-string (- (match-end 1) (match-beginning 1))
-					   ?-) "|") t t line)))
-    (and (string-match "\\+" line) (setq line (replace-match "|" t t line)))
-    (beginning-of-line (if above 1 2))
-    (insert line "\n")
-    (beginning-of-line (if above 1 -1))
-    (org-move-to-column col)
-    (and org-table-overlay-coordinates (org-table-align))))
-
-;;;###autoload
-(defun org-table-hline-and-move (&optional same-column)
-  "Insert a hline and move to the row below that line."
-  (interactive "P")
-  (let ((col (org-table-current-column)))
-    (org-table-maybe-eval-formula)
-    (org-table-maybe-recalculate-line)
-    (org-table-insert-hline)
-    (end-of-line 2)
-    (if (looking-at "\n[ \t]*|-")
-	(progn (insert "\n|") (org-table-align))
-      (org-table-next-field))
-    (if same-column (org-table-goto-column col))))
-
-(defun org-table-clean-line (s)
-  "Convert a table line S into a string with only \"|\" and space.
-In particular, this does handle wide and invisible characters."
-  (if (string-match "^[ \t]*|-" s)
-      ;; It's a hline, just map the characters
-      (setq s (mapconcat (lambda (x) (if (member x '(?| ?+)) "|" " ")) s ""))
-    (while (string-match "|\\([ \t]*?[^ \t\r\n|][^\r\n|]*\\)|" s)
-      (setq s (replace-match
-	       (concat "|" (make-string (org-string-width (match-string 1 s))
-					?\ ) "|")
-	       t t s)))
-    s))
-
-;;;###autoload
-(defun org-table-kill-row ()
-  "Delete the current row or horizontal line from the table."
-  (interactive)
-  (if (not (org-at-table-p))
-      (user-error "Not at a table"))
-  (let ((col (current-column))
-	(dline (and (not (org-match-line org-table-hline-regexp))
-		    (org-table-current-dline))))
-    (kill-region (point-at-bol) (min (1+ (point-at-eol)) (point-max)))
-    (if (not (org-at-table-p)) (beginning-of-line 0))
-    (org-move-to-column col)
-    (when (and dline
-	       (or (not org-table-fix-formulas-confirm)
-		   (funcall org-table-fix-formulas-confirm "Fix formulas? ")))
-      (org-table-fix-formulas "@" (list (cons (number-to-string dline) "INVALID"))
-			      dline -1 dline))))
-
-;;;###autoload
-(defun org-table-sort-lines
-    (&optional with-case sorting-type getkey-func compare-func interactive?)
-  "Sort table lines according to the column at point.
-
-The position of point indicates the column to be used for
-sorting, and the range of lines is the range between the nearest
-horizontal separator lines, or the entire table of no such lines
-exist.  If point is before the first column, you will be prompted
-for the sorting column.  If there is an active region, the mark
-specifies the first line and the sorting column, while point
-should be in the last line to be included into the sorting.
-
-The command then prompts for the sorting type which can be
-alphabetically, numerically, or by time (as given in a time stamp
-in the field, or as a HH:MM value).  Sorting in reverse order is
-also possible.
-
-With prefix argument WITH-CASE, alphabetic sorting will be case-sensitive.
-
-If SORTING-TYPE is specified when this function is called from a Lisp
-program, no prompting will take place.  SORTING-TYPE must be a character,
-any of (?a ?A ?n ?N ?t ?T ?f ?F) where the capital letters indicate that
-sorting should be done in reverse order.
-
-If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
-a function to be called to extract the key.  It must return a value
-that is compatible with COMPARE-FUNC, the function used to compare
-entries.
-
-A non-nil value for INTERACTIVE? is used to signal that this
-function is being called interactively."
-  (interactive (list current-prefix-arg nil nil nil t))
-  (when (org-region-active-p) (goto-char (region-beginning)))
-  ;; Point must be either within a field or before a data line.
-  (save-excursion
-    (skip-chars-backward " \t")
-    (when (bolp) (search-forward "|" (line-end-position) t))
-    (org-table-check-inside-data-field))
-  ;; Set appropriate case sensitivity and column used for sorting.
-  (let ((column (let ((c (org-table-current-column)))
-		  (cond ((> c 0) c)
-			(interactive?
-			 (read-number "Use column N for sorting: "))
-			(t 1))))
-	(sorting-type
-	 (or sorting-type
-	     (read-char-exclusive "Sort Table: [a]lphabetic, [n]umeric, \
-\[t]ime, [f]unc.  A/N/T/F means reversed: "))))
-    (save-restriction
-      ;; Narrow buffer to appropriate sorting area.
-      (if (org-region-active-p)
-	  (progn (goto-char (region-beginning))
-		 (narrow-to-region
-		  (point)
-		  (save-excursion (goto-char (region-end))
-				  (line-beginning-position 2))))
-	(let ((start (org-table-begin))
-	      (end (org-table-end)))
-	  (narrow-to-region
-	   (save-excursion
-	     (if (re-search-backward org-table-hline-regexp start t)
-		 (line-beginning-position 2)
-	       start))
-	   (if (save-excursion (re-search-forward org-table-hline-regexp end t))
-	       (match-beginning 0)
-	     end))))
-      ;; Determine arguments for `sort-subr'.  Also record original
-      ;; position.  `org-table-save-field' cannot help here since
-      ;; sorting is too much destructive.
-      (let* ((sort-fold-case (not with-case))
-	     (coordinates
-	      (cons (count-lines (point-min) (line-beginning-position))
-		    (current-column)))
-	     (extract-key-from-field
-	      ;; Function to be called on the contents of the field
-	      ;; used for sorting in the current row.
-	      (cl-case sorting-type
-		((?n ?N) #'string-to-number)
-		((?a ?A) #'org-sort-remove-invisible)
-		((?t ?T)
-		 (lambda (f)
-		   (cond ((string-match org-ts-regexp-both f)
-			  (float-time
-			   (org-time-string-to-time (match-string 0 f))))
-			 ((org-duration-p f) (org-duration-to-minutes f))
-			 ((string-match "\\<[0-9]+:[0-9]\\{2\\}\\>" f)
-			  (org-duration-to-minutes (match-string 0 f)))
-			 (t 0))))
-		((?f ?F)
-		 (or getkey-func
-		     (and interactive?
-			  (org-read-function "Function for extracting keys: "))
-		     (error "Missing key extractor to sort rows")))
-		(t (user-error "Invalid sorting type `%c'" sorting-type))))
-	     (predicate
-	      (cl-case sorting-type
-		((?n ?N ?t ?T) #'<)
-		((?a ?A) #'string<)
-		((?f ?F)
-		 (or compare-func
-		     (and interactive?
-			  (org-read-function
-			   (concat "Function for comparing keys "
-				   "(empty for default `sort-subr' predicate): ")
-			   'allow-empty)))))))
-	(goto-char (point-min))
-	(sort-subr (memq sorting-type '(?A ?N ?T ?F))
-		   (lambda ()
-		     (forward-line)
-		     (while (and (not (eobp))
-				 (not (looking-at org-table-dataline-regexp)))
-		       (forward-line)))
-		   #'end-of-line
-		   (lambda ()
-		     (funcall extract-key-from-field
-			      (org-trim (org-table-get-field column))))
-		   nil
-		   predicate)
-	;; Move back to initial field.
-	(forward-line (car coordinates))
-	(move-to-column (cdr coordinates))))))
-
-;;;###autoload
-(defun org-table-cut-region (beg end)
-  "Copy region in table to the clipboard and blank all relevant fields.
-If there is no active region, use just the field at point."
-  (interactive (list
-		(if (org-region-active-p) (region-beginning) (point))
-		(if (org-region-active-p) (region-end) (point))))
-  (org-table-copy-region beg end 'cut))
-
-;;;###autoload
-(defun org-table-copy-region (beg end &optional cut)
-  "Copy rectangular region in table to clipboard.
-A special clipboard is used which can only be accessed
-with `org-table-paste-rectangle'."
-  (interactive (list
-		(if (org-region-active-p) (region-beginning) (point))
-		(if (org-region-active-p) (region-end) (point))
-		current-prefix-arg))
-  (goto-char (min beg end))
-  (org-table-check-inside-data-field)
-  (let ((beg (line-beginning-position))
-	(c01 (org-table-current-column))
-	region)
-    (goto-char (max beg end))
-    (org-table-check-inside-data-field)
-    (let* ((end (copy-marker (line-end-position)))
-	   (c02 (org-table-current-column))
-	   (column-start (min c01 c02))
-	   (column-end (max c01 c02))
-	   (column-number (1+ (- column-end column-start)))
-	   (rpl (and cut "  ")))
-      (goto-char beg)
-      (while (< (point) end)
-	(unless (org-at-table-hline-p)
-	  ;; Collect every cell between COLUMN-START and COLUMN-END.
-	  (let (cols)
-	    (dotimes (c column-number)
-	      (push (org-table-get-field (+ c column-start) rpl) cols))
-	    (push (nreverse cols) region)))
-	(forward-line))
-      (set-marker end nil))
-    (when cut (org-table-align))
-    (setq org-table-clip (nreverse region))))
-
-;;;###autoload
-(defun org-table-paste-rectangle ()
-  "Paste a rectangular region into a table.
-The upper right corner ends up in the current field.  All involved fields
-will be overwritten.  If the rectangle does not fit into the present table,
-the table is enlarged as needed.  The process ignores horizontal separator
-lines."
-  (interactive)
-  (unless (consp org-table-clip)
-    (user-error "First cut/copy a region to paste!"))
-  (org-table-check-inside-data-field)
-  (let* ((column (org-table-current-column))
-	 (org-table-automatic-realign nil))
-    (org-table-save-field
-     (dolist (row org-table-clip)
-       (while (org-at-table-hline-p) (forward-line))
-       ;; If we left the table, create a new row.
-       (when (and (bolp) (not (looking-at "[ \t]*|")))
-	 (end-of-line 0)
-	 (org-table-next-field))
-       (let ((c column))
-	 (dolist (field row)
-	   (org-table-goto-column c nil 'force)
-	   (org-table-get-field nil field)
-	   (cl-incf c)))
-       (forward-line)))
-    (org-table-align)))
-
-;;;###autoload
-(defun org-table-convert ()
-  "Convert from `org-mode' table to table.el and back.
-Obviously, this only works within limits.  When an Org table is converted
-to table.el, all horizontal separator lines get lost, because table.el uses
-these as cell boundaries and has no notion of horizontal lines.  A table.el
-table can be converted to an Org table only if it does not do row or column
-spanning.  Multiline cells will become multiple cells.  Beware, Org mode
-does not test if the table can be successfully converted - it blindly
-applies a recipe that works for simple tables."
-  (interactive)
-  (require 'table)
-  (if (org-at-table.el-p)
-      ;; convert to Org table
-      (let ((beg (copy-marker (org-table-begin t)))
-	    (end (copy-marker (org-table-end t))))
-	(table-unrecognize-region beg end)
-	(goto-char beg)
-	(while (re-search-forward "^\\([ \t]*\\)\\+-.*\n" end t)
-	  (replace-match ""))
-	(goto-char beg))
-    (if (org-at-table-p)
-	;; convert to table.el table
-	(let ((beg (copy-marker (org-table-begin)))
-	      (end (copy-marker (org-table-end))))
-	  ;; first, get rid of all horizontal lines
-	  (goto-char beg)
-	  (while (re-search-forward "^\\([ \t]*\\)|-.*\n" end t)
-	    (replace-match ""))
-	  ;; insert a hline before first
-	  (goto-char beg)
-	  (org-table-insert-hline 'above)
-	  (beginning-of-line -1)
-	  ;; insert a hline after each line
-	  (while (progn (beginning-of-line 3) (< (point) end))
-	    (org-table-insert-hline))
-	  (goto-char beg)
-	  (setq end (move-marker end (org-table-end)))
-	  ;; replace "+" at beginning and ending of hlines
-	  (while (re-search-forward "^\\([ \t]*\\)|-" end t)
-	    (replace-match "\\1+-"))
-	  (goto-char beg)
-	  (while (re-search-forward "-|[ \t]*$" end t)
-	    (replace-match "-+"))
-	  (goto-char beg)))))
-
-(defun org-table-transpose-table-at-point ()
-  "Transpose Org table at point and eliminate hlines.
-So a table like
-
-| 1 | 2 | 4 | 5 |
-|---+---+---+---|
-| a | b | c | d |
-| e | f | g | h |
-
-will be transposed as
-
-| 1 | a | e |
-| 2 | b | f |
-| 4 | c | g |
-| 5 | d | h |
-
-Note that horizontal lines disappear."
-  (interactive)
-  (let* ((table (delete 'hline (org-table-to-lisp)))
-	 (dline_old (org-table-current-line))
-	 (col_old (org-table-current-column))
-	 (contents (mapcar (lambda (_)
-			     (let ((tp table))
-			       (mapcar
-				(lambda (_)
-				  (prog1
-				      (pop (car tp))
-				    (setq tp (cdr tp))))
-				table)))
-			   (car table))))
-    (goto-char (org-table-begin))
-    (re-search-forward "|")
-    (backward-char)
-    (delete-region (point) (org-table-end))
-    (insert (mapconcat
-	     (lambda(x)
-	       (concat "| " (mapconcat 'identity x " | " ) "  |\n" ))
-	     contents ""))
-    (org-table-goto-line col_old)
-    (org-table-goto-column dline_old))
-  (org-table-align))
-
-;;;###autoload
-(defun org-table-wrap-region (arg)
-  "Wrap several fields in a column like a paragraph.
-This is useful if you'd like to spread the contents of a field over several
-lines, in order to keep the table compact.
-
-If there is an active region, and both point and mark are in the same column,
-the text in the column is wrapped to minimum width for the given number of
-lines.  Generally, this makes the table more compact.  A prefix ARG may be
-used to change the number of desired lines.  For example, \
-`C-2 \\[org-table-wrap-region]'
-formats the selected text to two lines.  If the region was longer than two
-lines, the remaining lines remain empty.  A negative prefix argument reduces
-the current number of lines by that amount.  The wrapped text is pasted back
-into the table.  If you formatted it to more lines than it was before, fields
-further down in the table get overwritten - so you might need to make space in
-the table first.
-
-If there is no region, the current field is split at the cursor position and
-the text fragment to the right of the cursor is prepended to the field one
-line down.
-
-If there is no region, but you specify a prefix ARG, the current field gets
-blank, and the content is appended to the field above."
-  (interactive "P")
-  (org-table-check-inside-data-field)
-  (if (org-region-active-p)
-      ;; There is a region: fill as a paragraph.
-      (let ((start (region-beginning)))
-	(org-table-cut-region (region-beginning) (region-end))
-	(when (> (length (car org-table-clip)) 1)
-	  (user-error "Region must be limited to single column"))
-	(let ((nlines (cond ((not arg) (length org-table-clip))
-			    ((< arg 1) (+ (length org-table-clip) arg))
-			    (t arg))))
-	  (setq org-table-clip
-		(mapcar #'list
-			(org-wrap (mapconcat #'car org-table-clip " ")
-				  nil
-				  nlines))))
-	(goto-char start)
-	(org-table-paste-rectangle))
-    ;; No region, split the current field at point.
-    (unless (org-get-alist-option org-M-RET-may-split-line 'table)
-      (skip-chars-forward "^\r\n|"))
-    (cond
-     (arg				; Combine with field above.
-      (let ((s (org-table-blank-field))
-	    (col (org-table-current-column)))
-	(forward-line -1)
-	(while (org-at-table-hline-p) (forward-line -1))
-	(org-table-goto-column col)
-	(skip-chars-forward "^|")
-	(skip-chars-backward " ")
-	(insert " " (org-trim s))
-	(org-table-align)))
-     ((looking-at "\\([^|]+\\)+|")	; Split field.
-      (let ((s (match-string 1)))
-	(replace-match " |")
-	(goto-char (match-beginning 0))
-	(org-table-next-row)
-	(insert (org-trim s) " ")
-	(org-table-align)))
-     (t (org-table-next-row)))))
-
-(defvar org-field-marker nil)
-
-;;;###autoload
-(defun org-table-edit-field (arg)
-  "Edit table field in a different window.
-This is mainly useful for fields that contain hidden parts.
-
-When called with a `\\[universal-argument]' prefix, just make the full field
-visible so that it can be edited in place.
-
-When called with a `\\[universal-argument] \\[universal-argument]' prefix, \
-toggle `org-table-follow-field-mode'."
-  (interactive "P")
-  (unless (org-at-table-p) (user-error "Not at a table"))
-  (cond
-   ((equal arg '(16))
-    (org-table-follow-field-mode (if org-table-follow-field-mode -1 1)))
-   (arg
-    (let ((b (save-excursion (skip-chars-backward "^|") (point)))
-	  (e (save-excursion (skip-chars-forward "^|\r\n") (point))))
-      (remove-text-properties b e '(org-cwidth t invisible t
-					       display t intangible t))
-      (if (and (boundp 'font-lock-mode) font-lock-mode)
-	  (font-lock-fontify-block))))
-   (t
-    (let ((pos (point-marker))
-	  (coord
-	   (if (eq org-table-use-standard-references t)
-	       (concat (org-number-to-letters (org-table-current-column))
-		       (int-to-string (org-table-current-dline)))
-	     (concat "@" (int-to-string (org-table-current-dline))
-		     "$" (int-to-string (org-table-current-column)))))
-	  (field (org-table-get-field))
-	  (cw (current-window-configuration))
-	  p)
-      (goto-char pos)
-      (org-switch-to-buffer-other-window "*Org Table Edit Field*")
-      (when (and (local-variable-p 'org-field-marker)
-		 (markerp org-field-marker))
-	(move-marker org-field-marker nil))
-      (erase-buffer)
-      (insert "#\n# Edit field " coord " and finish with C-c C-c\n#\n")
-      (let ((org-inhibit-startup t)) (org-mode))
-      (auto-fill-mode -1)
-      (setq truncate-lines nil)
-      (setq word-wrap t)
-      (goto-char (setq p (point-max)))
-      (insert (org-trim field))
-      (remove-text-properties p (point-max)
-			      '(invisible t org-cwidth t display t
-					  intangible t))
-      (goto-char p)
-      (setq-local org-finish-function 'org-table-finish-edit-field)
-      (setq-local org-window-configuration cw)
-      (setq-local org-field-marker pos)
-      (message "Edit and finish with C-c C-c")))))
-
-(defun org-table-finish-edit-field ()
-  "Finish editing a table data field.
-Remove all newline characters, insert the result into the table, realign
-the table and kill the editing buffer."
-  (let ((pos org-field-marker)
-	(cw org-window-configuration)
-	(cb (current-buffer))
-	text)
-    (goto-char (point-min))
-    (while (re-search-forward "^#.*\n?" nil t) (replace-match ""))
-    (while (re-search-forward "\\([ \t]*\n[ \t]*\\)+" nil t)
-      (replace-match " "))
-    (setq text (org-trim (buffer-string)))
-    (set-window-configuration cw)
-    (kill-buffer cb)
-    (select-window (get-buffer-window (marker-buffer pos)))
-    (goto-char pos)
-    (move-marker pos nil)
-    (org-table-check-inside-data-field)
-    (org-table-get-field nil text)
-    (org-table-align)
-    (message "New field value inserted")))
-
-(define-minor-mode org-table-follow-field-mode
-  "Minor mode to make the table field editor window follow the cursor.
-When this mode is active, the field editor window will always show the
-current field.  The mode exits automatically when the cursor leaves the
-table (but see `org-table-exit-follow-field-mode-when-leaving-table')."
-  nil " TblFollow" nil
-  (if org-table-follow-field-mode
-      (add-hook 'post-command-hook 'org-table-follow-fields-with-editor
-		'append 'local)
-    (remove-hook 'post-command-hook 'org-table-follow-fields-with-editor 'local)
-    (let* ((buf (get-buffer "*Org Table Edit Field*"))
-	   (win (and buf (get-buffer-window buf))))
-      (when win (delete-window win))
-      (when buf
-	(with-current-buffer buf
-	  (move-marker org-field-marker nil))
-	(kill-buffer buf)))))
-
-(defun org-table-follow-fields-with-editor ()
-  (if (and org-table-exit-follow-field-mode-when-leaving-table
-	   (not (org-at-table-p)))
-      ;; We have left the table, exit the follow mode
-      (org-table-follow-field-mode -1)
-    (when (org-table-check-inside-data-field 'noerror)
-      (let ((win (selected-window)))
-	(org-table-edit-field nil)
-	(org-fit-window-to-buffer)
-	(select-window win)))))
-
-(defvar org-timecnt) ; dynamically scoped parameter
-
-;;;###autoload
-(defun org-table-sum (&optional beg end nlast)
-  "Sum numbers in region of current table column.
-The result will be displayed in the echo area, and will be available
-as kill to be inserted with \\[yank].
-
-If there is an active region, it is interpreted as a rectangle and all
-numbers in that rectangle will be summed.  If there is no active
-region and point is located in a table column, sum all numbers in that
-column.
-
-If at least one number looks like a time HH:MM or HH:MM:SS, all other
-numbers are assumed to be times as well (in decimal hours) and the
-numbers are added as such.
-
-If NLAST is a number, only the NLAST fields will actually be summed."
-  (interactive)
-  (save-excursion
-    (let (col (org-timecnt 0) diff h m s org-table-clip)
-      (cond
-       ((and beg end))   ; beg and end given explicitly
-       ((org-region-active-p)
-	(setq beg (region-beginning) end (region-end)))
-       (t
-	(setq col (org-table-current-column))
-	(goto-char (org-table-begin))
-	(unless (re-search-forward "^[ \t]*|[^-]" nil t)
-	  (user-error "No table data"))
-	(org-table-goto-column col)
-	(setq beg (point))
-	(goto-char (org-table-end))
-	(unless (re-search-backward "^[ \t]*|[^-]" nil t)
-	  (user-error "No table data"))
-	(org-table-goto-column col)
-	(setq end (point))))
-      (let* ((items (apply 'append (org-table-copy-region beg end)))
-	     (items1 (cond ((not nlast) items)
-			   ((>= nlast (length items)) items)
-			   (t (setq items (reverse items))
-			      (setcdr (nthcdr (1- nlast) items) nil)
-			      (nreverse items))))
-	     (numbers (delq nil (mapcar 'org-table-get-number-for-summing
-					items1)))
-	     (res (apply '+ numbers))
-	     (sres (if (= org-timecnt 0)
-		       (number-to-string res)
-		     (setq diff (* 3600 res)
-			   h (floor (/ diff 3600)) diff (mod diff 3600)
-			   m (floor (/ diff 60)) diff (mod diff 60)
-			   s diff)
-		     (format "%.0f:%02.0f:%02.0f" h m s))))
-	(kill-new sres)
-	(when (called-interactively-p 'interactive)
-	    (message "%s" (substitute-command-keys
-			   (format "Sum of %d items: %-20s     \
-\(\\[yank] will insert result into buffer)" (length numbers) sres))))
-	sres))))
-
-(defun org-table-get-number-for-summing (s)
-  (let (n)
-    (if (string-match "^ *|? *" s)
-	(setq s (replace-match "" nil nil s)))
-    (if (string-match " *|? *$" s)
-	(setq s (replace-match "" nil nil s)))
-    (setq n (string-to-number s))
-    (cond
-     ((and (string-match "0" s)
-	   (string-match "\\`[-+ \t0.edED]+\\'" s)) 0)
-     ((string-match "\\`[ \t]+\\'" s) nil)
-     ((string-match "\\`\\([0-9]+\\):\\([0-9]+\\)\\(:\\([0-9]+\\)\\)?\\'" s)
-      (let ((h (string-to-number (or (match-string 1 s) "0")))
-	    (m (string-to-number (or (match-string 2 s) "0")))
-	    (s (string-to-number (or (match-string 4 s) "0"))))
-	(if (boundp 'org-timecnt) (setq org-timecnt (1+ org-timecnt)))
-	(* 1.0 (+ h (/ m 60.0) (/ s 3600.0)))))
-     ((equal n 0) nil)
-     (t n))))
-
-(defun org-table-current-field-formula (&optional key noerror)
-  "Return the formula active for the current field.
-
-Assumes that table is already analyzed.  If KEY is given, return
-the key to this formula.  Otherwise return the formula preceded
-with \"=\" or \":=\"."
-  (let* ((line (count-lines org-table-current-begin-pos
-			    (line-beginning-position)))
-	 (row (org-table-line-to-dline line)))
-    (cond
-     (row
-      (let* ((col (org-table-current-column))
-	     (name (car (rassoc (list line col)
-				org-table-named-field-locations)))
-	     (scol (format "$%d" col))
-	     (ref (format "@%d$%d" (org-table-current-dline) col))
-	     (stored-list (org-table-get-stored-formulas noerror))
-	     (ass (or (assoc name stored-list)
-		      (assoc ref stored-list)
-		      (assoc scol stored-list))))
-	(cond (key (car ass))
-	      (ass (concat (if (string-match-p "^[0-9]+$" (car ass)) "=" ":=")
-			   (cdr ass))))))
-     (noerror nil)
-     (t (error "No formula active for the current field")))))
-
-(defun org-table-get-formula (&optional equation named)
-  "Read a formula from the minibuffer, offer stored formula as default.
-When NAMED is non-nil, look for a named equation."
-  (let* ((stored-list (org-table-get-stored-formulas))
-	 (name (car (rassoc (list (count-lines org-table-current-begin-pos
-					       (line-beginning-position))
-				  (org-table-current-column))
-			    org-table-named-field-locations)))
-	 (ref (format "@%d$%d"
-		      (org-table-current-dline)
-		      (org-table-current-column)))
-	 (scol (cond
-		((not named) (format "$%d" (org-table-current-column)))
-		((and name (not (string-match "\\`LR[0-9]+\\'" name))) name)
-		(t ref)))
-	 (name (or name ref))
-	 (org-table-may-need-update nil)
-	 (stored (cdr (assoc scol stored-list)))
-	 (eq (cond
-	      ((and stored equation (string-match-p "^ *=? *$" equation))
-	       stored)
-	      ((stringp equation)
-	       equation)
-	      (t (org-table-formula-from-user
-		  (read-string
-		   (org-table-formula-to-user
-		    (format "%s formula %s="
-			    (if named "Field" "Column")
-			    scol))
-		   (if stored (org-table-formula-to-user stored) "")
-		   'org-table-formula-history
-		   )))))
-	 mustsave)
-    (when (not (string-match "\\S-" eq))
-      ;; remove formula
-      (setq stored-list (delq (assoc scol stored-list) stored-list))
-      (org-table-store-formulas stored-list)
-      (user-error "Formula removed"))
-    (if (string-match "^ *=?" eq) (setq eq (replace-match "" t t eq)))
-    (if (string-match " *$" eq) (setq eq (replace-match "" t t eq)))
-    (if (and name (not named))
-	;; We set the column equation, delete the named one.
-	(setq stored-list (delq (assoc name stored-list) stored-list)
-	      mustsave t))
-    (if stored
-	(setcdr (assoc scol stored-list) eq)
-      (setq stored-list (cons (cons scol eq) stored-list)))
-    (if (or mustsave (not (equal stored eq)))
-	(org-table-store-formulas stored-list))
-    eq))
-
-(defun org-table-store-formulas (alist &optional location)
-  "Store the list of formulas below the current table.
-If optional argument LOCATION is a buffer position, insert it at
-LOCATION instead."
-  (save-excursion
-    (if location
-	(progn (goto-char location) (beginning-of-line))
-      (goto-char (org-table-end)))
-    (let ((case-fold-search t))
-      (if (looking-at "\\([ \t]*\n\\)*[ \t]*\\(#\\+TBLFM:\\)\\(.*\n?\\)")
-	  (progn
-	    ;; Don't overwrite TBLFM, we might use text properties to
-	    ;; store stuff.
-	    (goto-char (match-beginning 3))
-	    (delete-region (match-beginning 3) (match-end 0)))
-	(org-indent-line)
-	(insert (or (match-string 2) "#+TBLFM:")))
-      (insert " "
-	      (mapconcat (lambda (x) (concat (car x) "=" (cdr x)))
-			 (sort alist #'org-table-formula-less-p)
-			 "::")
-	      "\n"))))
-
-(defsubst org-table-formula-make-cmp-string (a)
-  (when (string-match "\\`$[<>]" a)
-    (let ((arrow (string-to-char (substring a 1))))
-      ;; Fake a high number to make sure this is sorted at the end.
-      (setq a (org-table-formula-handle-first/last-rc a))
-      (setq a (format "$%d" (+ 10000
-			       (if (= arrow ?<) -1000 0)
-			       (string-to-number (substring a 1)))))))
-  (when (string-match
-	 "^\\(@\\([0-9]+\\)\\)?\\(\\$?\\([0-9]+\\)\\)?\\(\\$?[a-zA-Z0-9]+\\)?"
-	 a)
-    (concat
-     (if (match-end 2)
-	 (format "@%05d" (string-to-number (match-string 2 a))) "")
-     (if (match-end 4)
-	 (format "$%05d" (string-to-number (match-string 4 a))) "")
-     (if (match-end 5)
-	 (concat "@@" (match-string 5 a))))))
-
-(defun org-table-formula-less-p (a b)
-  "Compare two formulas for sorting."
-  (let ((as (org-table-formula-make-cmp-string (car a)))
-	(bs (org-table-formula-make-cmp-string (car b))))
-    (and as bs (string< as bs))))
-
-;;;###autoload
-(defun org-table-get-stored-formulas (&optional noerror location)
-  "Return an alist with the stored formulas directly after current table.
-By default, only return active formulas, i.e., formulas located
-on the first line after the table.  However, if optional argument
-LOCATION is a buffer position, consider the formulas there."
-  (save-excursion
-    (if location
-	(progn (goto-char location) (beginning-of-line))
-      (goto-char (org-table-end)))
-    (let ((case-fold-search t))
-      (when (looking-at "\\([ \t]*\n\\)*[ \t]*#\\+TBLFM: *\\(.*\\)")
-	(let ((strings (org-split-string (match-string-no-properties 2)
-					 " *:: *"))
-	      eq-alist seen)
-	  (dolist (string strings (nreverse eq-alist))
-	    (when (string-match "\\`\\(@[-+I<>0-9.$@]+\\|\\$\\([_a-zA-Z0-9]+\\|\
-[<>]+\\)\\) *= *\\(.*[^ \t]\\)"
-				string)
-	      (let ((lhs
-		     (let ((m (match-string 1 string)))
-		       (cond
-			((not (match-end 2)) m)
-			;; Is it a column reference?
-			((string-match-p "\\`$\\([0-9]+\\|[<>]+\\)\\'" m) m)
-			;; Since named columns are not possible in
-			;; LHS, assume this is a named field.
-			(t (match-string 2 string)))))
-		    (rhs (match-string 3 string)))
-		(push (cons lhs rhs) eq-alist)
-		(cond
-		 ((not (member lhs seen)) (push lhs seen))
-		 (noerror
-		  (message
-		   "Double definition `%s=' in TBLFM line, please fix by hand"
-		   lhs)
-		  (ding)
-		  (sit-for 2))
-		 (t
-		  (user-error
-		   "Double definition `%s=' in TBLFM line, please fix by hand"
-		   lhs)))))))))))
-
-(defun org-table-fix-formulas (key replace &optional limit delta remove)
-  "Modify the equations after the table structure has been edited.
-KEY is \"@\" or \"$\".  REPLACE is an alist of numbers to replace.
-For all numbers larger than LIMIT, shift them by DELTA."
-  (save-excursion
-    (goto-char (org-table-end))
-    (while (let ((case-fold-search t)) (looking-at "[ \t]*#\\+tblfm:"))
-      (let ((msg "The formulas in #+TBLFM have been updated")
-	    (re (concat key "\\([0-9]+\\)"))
-	    (re2
-	     (when remove
-	       (if (or (equal key "$") (equal key "$LR"))
-		   (format "\\(@[0-9]+\\)?%s%d=.*?\\(::\\|$\\)"
-			   (regexp-quote key) remove)
-		 (format "@%d\\$[0-9]+=.*?\\(::\\|$\\)" remove))))
-	    s n a)
-	(when remove
-	  (while (re-search-forward re2 (point-at-eol) t)
-	    (unless (save-match-data (org-in-regexp "remote([^)]+?)"))
-	      (if (equal (char-before (match-beginning 0)) ?.)
-		  (user-error
-		   "Change makes TBLFM term %s invalid, use undo to recover"
-		   (match-string 0))
-		(replace-match "")))))
-	(while (re-search-forward re (point-at-eol) t)
-	  (unless (save-match-data (org-in-regexp "remote([^)]+?)"))
-	    (setq s (match-string 1) n (string-to-number s))
-	    (cond
-	     ((setq a (assoc s replace))
-	      (replace-match (concat key (cdr a)) t t)
-	      (message msg))
-	     ((and limit (> n limit))
-	      (replace-match (concat key (int-to-string (+ n delta))) t t)
-	      (message msg))))))
-      (forward-line))))
-
-;;;###autoload
-(defun org-table-maybe-eval-formula ()
-  "Check if the current field starts with \"=\" or \":=\".
-If yes, store the formula and apply it."
-  ;; We already know we are in a table.  Get field will only return a formula
-  ;; when appropriate.  It might return a separator line, but no problem.
-  (when org-table-formula-evaluate-inline
-    (let* ((field (org-trim (or (org-table-get-field) "")))
-	   named eq)
-      (when (string-match "^:?=\\(.*[^=]\\)$" field)
-	(setq named (equal (string-to-char field) ?:)
-	      eq (match-string 1 field))
-	(org-table-eval-formula (and named '(4))
-				(org-table-formula-from-user eq))))))
-
-(defvar org-recalc-commands nil
-  "List of commands triggering the recalculation of a line.
-Will be filled automatically during use.")
-
-(defvar org-recalc-marks
-  '((" " . "Unmarked: no special line, no automatic recalculation")
-    ("#" . "Automatically recalculate this line upon TAB, RET, and C-c C-c in the line")
-    ("*" . "Recalculate only when entire table is recalculated with `C-u C-c *'")
-    ("!" . "Column name definition line.  Reference in formula as $name.")
-    ("$" . "Parameter definition line name=value.  Reference in formula as $name.")
-    ("_" . "Names for values in row below this one.")
-    ("^" . "Names for values in row above this one.")))
-
-;;;###autoload
-(defun org-table-rotate-recalc-marks (&optional newchar)
-  "Rotate the recalculation mark in the first column.
-If in any row, the first field is not consistent with a mark,
-insert a new column for the markers.
-When there is an active region, change all the lines in the region,
-after prompting for the marking character.
-After each change, a message will be displayed indicating the meaning
-of the new mark."
-  (interactive)
-  (unless (org-at-table-p) (user-error "Not at a table"))
-  (let* ((region (org-region-active-p))
-	 (l1 (and region
-		  (save-excursion (goto-char (region-beginning))
-				  (copy-marker (line-beginning-position)))))
-	 (l2 (and region
-		  (save-excursion (goto-char (region-end))
-				  (copy-marker (line-beginning-position)))))
-	 (l (copy-marker (line-beginning-position)))
-	 (col (org-table-current-column))
-	 (newchar (if region
-		      (char-to-string
-		       (read-char-exclusive
-			"Change region to what mark?  Type # * ! $ or SPC: "))
-		    newchar))
-	 (no-special-column
-	  (save-excursion
-	    (goto-char (org-table-begin))
-	    (re-search-forward
-	     "^[ \t]*|[^-|][^|]*[^#!$*_^| \t][^|]*|" (org-table-end) t))))
-    (when (and newchar (not (assoc newchar org-recalc-marks)))
-      (user-error "Invalid character `%s' in `org-table-rotate-recalc-marks'"
-		  newchar))
-    (when l1 (goto-char l1))
-    (save-excursion
-      (beginning-of-line)
-      (unless (looking-at org-table-dataline-regexp)
-	(user-error "Not at a table data line")))
-    (when no-special-column
-      (org-table-goto-column 1)
-      (org-table-insert-column))
-    (let ((previous-line-end (line-end-position))
-	  (newchar
-	   (save-excursion
-	     (beginning-of-line)
-	     (cond ((not (looking-at "^[ \t]*| *\\([#!$*^_ ]\\) *|")) "#")
-		   (newchar)
-		   (t (cadr (member (match-string 1)
-				    (append (mapcar #'car org-recalc-marks)
-					    '(" ")))))))))
-      ;; Rotate mark in first row.
-      (org-table-get-field 1 (format " %s " newchar))
-      ;; Rotate marks in additional rows if a region is active.
-      (when region
-	(save-excursion
-	  (forward-line)
-	  (while (<= (point) l2)
-	    (when (looking-at org-table-dataline-regexp)
-	      (org-table-get-field 1 (format " %s " newchar)))
-	    (forward-line))))
-      ;; Only align if rotation actually changed lines' length.
-      (when (/= previous-line-end (line-end-position)) (org-table-align)))
-    (goto-char l)
-    (org-table-goto-column (if no-special-column (1+ col) col))
-    (when l1 (set-marker l1 nil))
-    (when l2 (set-marker l2 nil))
-    (set-marker l nil)
-    (when (called-interactively-p 'interactive)
-      (message "%s" (cdr (assoc newchar org-recalc-marks))))))
-
-;;;###autoload
-(defun org-table-analyze ()
-  "Analyze table at point and store results.
-
-This function sets up the following dynamically scoped variables:
-
- `org-table-column-name-regexp',
- `org-table-column-names',
- `org-table-current-begin-pos',
- `org-table-current-line-types',
- `org-table-current-ncol',
- `org-table-dlines',
- `org-table-hlines',
- `org-table-local-parameters',
- `org-table-named-field-locations'."
-  (let ((beg (org-table-begin))
-	(end (org-table-end)))
-    (save-excursion
-      (goto-char beg)
-      ;; Extract column names.
-      (setq org-table-column-names nil)
-      (when (save-excursion
-	      (re-search-forward "^[ \t]*| *! *\\(|.*\\)" end t))
-	(let ((c 1))
-	  (dolist (name (org-split-string (match-string 1) " *| *"))
-	    (cl-incf c)
-	    (when (string-match "\\`[a-zA-Z][_a-zA-Z0-9]*\\'" name)
-	      (push (cons name (int-to-string c)) org-table-column-names)))))
-      (setq org-table-column-names (nreverse org-table-column-names))
-      (setq org-table-column-name-regexp
-	    (format "\\$\\(%s\\)\\>"
-		    (regexp-opt (mapcar #'car org-table-column-names) t)))
-      ;; Extract local parameters.
-      (setq org-table-local-parameters nil)
-      (save-excursion
-	(while (re-search-forward "^[ \t]*| *\\$ *\\(|.*\\)" end t)
-	  (dolist (field (org-split-string (match-string 1) " *| *"))
-	    (when (string-match
-		   "\\`\\([a-zA-Z][_a-zA-Z0-9]*\\|%\\) *= *\\(.*\\)" field)
-	      (push (cons (match-string 1 field) (match-string 2 field))
-		    org-table-local-parameters)))))
-      ;; Update named fields locations.  We minimize `count-lines'
-      ;; processing by storing last known number of lines in LAST.
-      (setq org-table-named-field-locations nil)
-      (save-excursion
-	(let ((last (cons (point) 0)))
-	  (while (re-search-forward "^[ \t]*| *\\([_^]\\) *\\(|.*\\)" end t)
-	    (let ((c (match-string 1))
-		  (fields (org-split-string (match-string 2) " *| *")))
-	      (save-excursion
-		(forward-line (if (equal c "_") 1 -1))
-		(let ((fields1
-		       (and (looking-at "^[ \t]*|[^|]*\\(|.*\\)")
-			    (org-split-string (match-string 1) " *| *")))
-		      (line (cl-incf (cdr last) (count-lines (car last) (point))))
-		      (col 1))
-		  (setcar last (point))	; Update last known position.
-		  (while (and fields fields1)
-		    (let ((field (pop fields))
-			  (v (pop fields1)))
-		      (cl-incf col)
-		      (when (and (stringp field)
-				 (stringp v)
-				 (string-match "\\`[a-zA-Z][_a-zA-Z0-9]*\\'"
-					       field))
-			(push (cons field v) org-table-local-parameters)
-			(push (list field line col)
-			      org-table-named-field-locations))))))))))
-      ;; Re-use existing markers when possible.
-      (if (markerp org-table-current-begin-pos)
-	  (move-marker org-table-current-begin-pos (point))
-	(setq org-table-current-begin-pos (point-marker)))
-      ;; Analyze the line types.
-      (let ((l 0) hlines dlines types)
-	(while (looking-at "[ \t]*|\\(-\\)?")
-	  (push (if (match-end 1) 'hline 'dline) types)
-	  (if (match-end 1) (push l hlines) (push l dlines))
-	  (forward-line)
-	  (cl-incf l))
-	(push 'hline types) ; Add an imaginary extra hline to the end.
-	(setq org-table-current-line-types (apply #'vector (nreverse types)))
-	(setq org-table-dlines (apply #'vector (cons nil (nreverse dlines))))
-	(setq org-table-hlines (apply #'vector (cons nil (nreverse hlines)))))
-      ;; Get the number of columns from the first data line in table.
-      (goto-char beg)
-      (forward-line (aref org-table-dlines 1))
-      (let* ((fields
-	      (org-split-string
-	       (buffer-substring (line-beginning-position) (line-end-position))
-	       "[ \t]*|[ \t]*"))
-	     (nfields (length fields))
-	     al al2)
-	(setq org-table-current-ncol nfields)
-	(let ((last-dline
-	       (aref org-table-dlines (1- (length org-table-dlines)))))
-	  (dotimes (i nfields)
-	    (let ((column (1+ i)))
-	      (push (list (format "LR%d" column) last-dline column) al)
-	      (push (cons (format "LR%d" column) (nth i fields)) al2))))
-	(setq org-table-named-field-locations
-	      (append org-table-named-field-locations al))
-	(setq org-table-local-parameters
-	      (append org-table-local-parameters al2))))))
-
-(defun org-table-goto-field (ref &optional create-column-p)
-  "Move point to a specific field in the current table.
-
-REF is either the name of a field its absolute reference, as
-a string.  No column is created unless CREATE-COLUMN-P is
-non-nil.  If it is a function, it is called with the column
-number as its argument as is used as a predicate to know if the
-column can be created.
-
-This function assumes the table is already analyzed (i.e., using
-`org-table-analyze')."
-  (let* ((coordinates
-	  (cond
-	   ((cdr (assoc ref org-table-named-field-locations)))
-	   ((string-match "\\`@\\([1-9][0-9]*\\)\\$\\([1-9][0-9]*\\)\\'" ref)
-	    (list (condition-case nil
-		      (aref org-table-dlines
-			    (string-to-number (match-string 1 ref)))
-		    (error (user-error "Invalid row number in %s" ref)))
-		  (string-to-number (match-string 2 ref))))
-	   (t (user-error "Unknown field: %s" ref))))
-	 (line (car coordinates))
-	 (column (nth 1 coordinates))
-	 (create-new-column (if (functionp create-column-p)
-				(funcall create-column-p column)
-			      create-column-p)))
-    (when coordinates
-      (goto-char org-table-current-begin-pos)
-      (forward-line line)
-      (org-table-goto-column column nil create-new-column))))
-
-;;;###autoload
-(defun org-table-maybe-recalculate-line ()
-  "Recompute the current line if marked for it, and if we haven't just done it."
-  (interactive)
-  (and org-table-allow-automatic-line-recalculation
-       (not (and (memq last-command org-recalc-commands)
-		 (eq org-last-recalc-line (line-beginning-position))))
-       (save-excursion (beginning-of-line 1)
-		       (looking-at org-table-auto-recalculate-regexp))
-       (org-table-recalculate) t))
-
-(defvar org-tbl-calc-modes) ;; Dynamically bound in `org-table-eval-formula'
-(defsubst org-set-calc-mode (var &optional value)
-  (if (stringp var)
-      (setq var (assoc var '(("D" calc-angle-mode deg)
-			     ("R" calc-angle-mode rad)
-			     ("F" calc-prefer-frac t)
-			     ("S" calc-symbolic-mode t)))
-	    value (nth 2 var) var (nth 1 var)))
-  (if (memq var org-tbl-calc-modes)
-      (setcar (cdr (memq var org-tbl-calc-modes)) value)
-    (cons var (cons value org-tbl-calc-modes)))
-  org-tbl-calc-modes)
-
-;;;###autoload
-(defun org-table-eval-formula (&optional arg equation
-					 suppress-align suppress-const
-					 suppress-store suppress-analysis)
-  "Replace the table field value at the cursor by the result of a calculation.
-
-In a table, this command replaces the value in the current field with the
-result of a formula.  It also installs the formula as the \"current\" column
-formula, by storing it in a special line below the table.  When called
-with a `\\[universal-argument]' prefix the formula is installed as a \
-field formula.
-
-When called with a `\\[universal-argument] \\[universal-argument]' prefix, \
-insert the active equation for the field
-back into the current field, so that it can be edited there.  This is \
-useful
-in order to use \\<org-table-fedit-map>`\\[org-table-show-reference]' to \
-check the referenced fields.
-
-When called, the command first prompts for a formula, which is read in
-the minibuffer.  Previously entered formulas are available through the
-history list, and the last used formula is offered as a default.
-These stored formulas are adapted correctly when moving, inserting, or
-deleting columns with the corresponding commands.
-
-The formula can be any algebraic expression understood by the Calc package.
-For details, see the Org mode manual.
-
-This function can also be called from Lisp programs and offers
-additional arguments: EQUATION can be the formula to apply.  If this
-argument is given, the user will not be prompted.
-
-SUPPRESS-ALIGN is used to speed-up recursive calls by by-passing
-unnecessary aligns.
-
-SUPPRESS-CONST suppresses the interpretation of constants in the
-formula, assuming that this has been done already outside the
-function.
-
-SUPPRESS-STORE means the formula should not be stored, either
-because it is already stored, or because it is a modified
-equation that should not overwrite the stored one.
-
-SUPPRESS-ANALYSIS prevents analyzing the table and checking
-location of point."
-  (interactive "P")
-  (unless suppress-analysis
-    (org-table-check-inside-data-field)
-    (org-table-analyze))
-  (if (equal arg '(16))
-      (let ((eq (org-table-current-field-formula)))
-	(org-table-get-field nil eq)
-	(org-table-align)
-	(setq org-table-may-need-update t))
-    (let* (fields
-	   (ndown (if (integerp arg) arg 1))
-	   (org-table-automatic-realign nil)
-	   (case-fold-search nil)
-	   (down (> ndown 1))
-	   (formula (if (and equation suppress-store)
-			equation
-		      (org-table-get-formula equation (equal arg '(4)))))
-	   (n0 (org-table-current-column))
-	   (org-tbl-calc-modes (copy-sequence org-calc-default-modes))
-	   (numbers nil)	   ; was a variable, now fixed default
-	   (keep-empty nil)
-	   n form form0 formrpl formrg bw fmt x ev orig c lispp literal
-	   duration duration-output-format)
-      ;; Parse the format string.  Since we have a lot of modes, this is
-      ;; a lot of work.  However, I think calc still uses most of the time.
-      (if (string-match ";" formula)
-	  (let ((tmp (org-split-string formula ";")))
-	    (setq formula (car tmp)
-		  fmt (concat (cdr (assoc "%" org-table-local-parameters))
-			      (nth 1 tmp)))
-	    (while (string-match "\\([pnfse]\\)\\(-?[0-9]+\\)" fmt)
-	      (setq c (string-to-char (match-string 1 fmt))
-		    n (string-to-number (match-string 2 fmt)))
-	      (if (= c ?p)
-		  (setq org-tbl-calc-modes (org-set-calc-mode 'calc-internal-prec n))
-		(setq org-tbl-calc-modes
-		      (org-set-calc-mode
-		       'calc-float-format
-		       (list (cdr (assoc c '((?n . float) (?f . fix)
-					     (?s . sci) (?e . eng))))
-			     n))))
-	      (setq fmt (replace-match "" t t fmt)))
-	    (if (string-match "[tTU]" fmt)
-		(let ((ff (match-string 0 fmt)))
-		  (setq duration t numbers t
-			duration-output-format
-			(cond ((equal ff "T") nil)
-			      ((equal ff "t") org-table-duration-custom-format)
-			      ((equal ff "U") 'hh:mm))
-			fmt (replace-match "" t t fmt))))
-	    (if (string-match "N" fmt)
-		(setq numbers t
-		      fmt (replace-match "" t t fmt)))
-	    (if (string-match "L" fmt)
-		(setq literal t
-		      fmt (replace-match "" t t fmt)))
-	    (if (string-match "E" fmt)
-		(setq keep-empty t
-		      fmt (replace-match "" t t fmt)))
-	    (while (string-match "[DRFS]" fmt)
-	      (setq org-tbl-calc-modes (org-set-calc-mode (match-string 0 fmt)))
-	      (setq fmt (replace-match "" t t fmt)))
-	    (unless (string-match "\\S-" fmt)
-	      (setq fmt nil))))
-      (when (and (not suppress-const) org-table-formula-use-constants)
-	(setq formula (org-table-formula-substitute-names formula)))
-      (setq orig (or (get-text-property 1 :orig-formula formula) "?"))
-      (setq formula (org-table-formula-handle-first/last-rc formula))
-      (while (> ndown 0)
-	(setq fields (org-split-string
-		      (org-trim
-		       (buffer-substring-no-properties
-			(line-beginning-position) (line-end-position)))
-		      " *| *"))
-	;; replace fields with duration values if relevant
-	(if duration
-	    (setq fields
-		  (mapcar (lambda (x) (org-table-time-string-to-seconds x))
-			  fields)))
-	(if (eq numbers t)
-	    (setq fields (mapcar
-			  (lambda (x)
-			    (if (string-match "\\S-" x)
-				(number-to-string (string-to-number x))
-			      x))
-			  fields)))
-	(setq ndown (1- ndown))
-	(setq form (copy-sequence formula)
-	      lispp (and (> (length form) 2) (equal (substring form 0 2) "'(")))
-	(if (and lispp literal) (setq lispp 'literal))
-
-	;; Insert row and column number of formula result field
-	(while (string-match "[@$]#" form)
-	  (setq form
-		(replace-match
-		 (format "%d"
-			 (save-match-data
-			   (if (equal (substring form (match-beginning 0)
-						 (1+ (match-beginning 0)))
-				      "@")
-			       (org-table-current-dline)
-			     (org-table-current-column))))
-		 t t form)))
-
-	;; Check for old vertical references
-	(org-table--error-on-old-row-references form)
-	;; Insert remote references
-	(setq form (org-table-remote-reference-indirection form))
-	(while (string-match "\\<remote([ \t]*\\([^,)]+\\)[ \t]*,[ \t]*\\([^\n)]+\\))" form)
-	  (setq form
-		(replace-match
-		 (save-match-data
-		   (org-table-make-reference
-		    (let ((rmtrng (org-table-get-remote-range
-				   (match-string 1 form) (match-string 2 form))))
-		      (if duration
-			  (if (listp rmtrng)
-			      (mapcar (lambda(x) (org-table-time-string-to-seconds x)) rmtrng)
-			    (org-table-time-string-to-seconds rmtrng))
-			rmtrng))
-		    keep-empty numbers lispp))
-		 t t form)))
-	;; Insert complex ranges
-	(while (and (string-match org-table-range-regexp form)
-		    (> (length (match-string 0 form)) 1))
-	  (setq formrg
-		(save-match-data
-		  (org-table-get-range
-		   (match-string 0 form) org-table-current-begin-pos n0)))
-	  (setq formrpl
-		(save-match-data
-		  (org-table-make-reference
-		   ;; possibly handle durations
-		   (if duration
-		       (if (listp formrg)
-			   (mapcar (lambda(x) (org-table-time-string-to-seconds x)) formrg)
-			 (org-table-time-string-to-seconds formrg))
-		     formrg)
-		   keep-empty numbers lispp)))
-	  (if (not (save-match-data
-		     (string-match (regexp-quote form) formrpl)))
-	      (setq form (replace-match formrpl t t form))
-	    (user-error "Spreadsheet error: invalid reference \"%s\"" form)))
-	;; Insert simple ranges, i.e. included in the current row.
-	(while (string-match
-		"\\$\\(\\([-+]\\)?[0-9]+\\)\\.\\.\\$\\(\\([-+]\\)?[0-9]+\\)"
-		form)
-	  (setq form
-		(replace-match
-		 (save-match-data
-		   (org-table-make-reference
-		    (cl-subseq fields
-			       (+ (if (match-end 2) n0 0)
-				  (string-to-number (match-string 1 form))
-				  -1)
-			       (+ (if (match-end 4) n0 0)
-				  (string-to-number (match-string 3 form))))
-		    keep-empty numbers lispp))
-		 t t form)))
-	(setq form0 form)
-	;; Insert the references to fields in same row
-	(while (string-match "\\$\\(\\([-+]\\)?[0-9]+\\)" form)
-	  (setq n (+ (string-to-number (match-string 1 form))
-		     (if (match-end 2) n0 0))
-		x (nth (1- (if (= n 0) n0 (max n 1))) fields)
-		formrpl (save-match-data
-			  (org-table-make-reference
-			   x keep-empty numbers lispp)))
-	  (when (or (not x)
-		    (save-match-data
-		      (string-match (regexp-quote formula) formrpl)))
-	    (user-error "Invalid field specifier \"%s\""
-			(match-string 0 form)))
-	  (setq form (replace-match formrpl t t form)))
-
-	(if lispp
-	    (setq ev (condition-case nil
-			 (eval (eval (read form)))
-		       (error "#ERROR"))
-		  ev (if (numberp ev) (number-to-string ev) ev)
-		  ev (if duration (org-table-time-seconds-to-string
-				   (string-to-number ev)
-				   duration-output-format) ev))
-
-	  ;; Use <...> time-stamps so that Calc can handle them.
-	  (setq form
-		(replace-regexp-in-string org-ts-regexp-inactive "<\\1>" form))
-	  ;; Internationalize local time-stamps by setting locale to
-	  ;; "C".
-	  (setq form
-		(replace-regexp-in-string
-		 org-ts-regexp
-		 (lambda (ts)
-		   (let ((system-time-locale "C"))
-		     (format-time-string
-		      (org-time-stamp-format
-		       (string-match-p "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts))
-		      (apply #'encode-time
-			     (save-match-data (org-parse-time-string ts))))))
-		 form t t))
-
-	  (setq ev (if (and duration (string-match "^[0-9]+:[0-9]+\\(?::[0-9]+\\)?$" form))
-		       form
-		     (calc-eval (cons form org-tbl-calc-modes)
-				(when (and (not keep-empty) numbers) 'num)))
-		ev (if duration (org-table-time-seconds-to-string
-				 (if (string-match "^[0-9]+:[0-9]+\\(?::[0-9]+\\)?$" ev)
-				     (string-to-number (org-table-time-string-to-seconds ev))
-				   (string-to-number ev))
-				 duration-output-format)
-		     ev)))
-
-	(when org-table-formula-debug
-	  (with-output-to-temp-buffer "*Substitution History*"
-	    (princ (format "Substitution history of formula
-Orig:   %s
-$xyz->  %s
-@r$c->  %s
-$1->    %s\n" orig formula form0 form))
-	    (if (consp ev)
-		(princ (format "        %s^\nError:  %s"
-			       (make-string (car ev) ?\-) (nth 1 ev)))
-	      (princ (format "Result: %s\nFormat: %s\nFinal:  %s"
-			     ev (or fmt "NONE")
-			     (if fmt (format fmt (string-to-number ev)) ev)))))
-	  (setq bw (get-buffer-window "*Substitution History*"))
-	  (org-fit-window-to-buffer bw)
-	  (unless (and (called-interactively-p 'any) (not ndown))
-	    (unless (let (inhibit-redisplay)
-		      (y-or-n-p "Debugging Formula.  Continue to next? "))
-	      (org-table-align)
-	      (user-error "Abort"))
-	    (delete-window bw)
-	    (message "")))
-	(when (consp ev) (setq fmt nil ev "#ERROR"))
-	(org-table-justify-field-maybe
-	 (format org-table-formula-field-format
-		 (cond
-		  ((not (stringp ev)) ev)
-		  (fmt (format fmt (string-to-number ev)))
-		  ;; Replace any active time stamp in the result with
-		  ;; an inactive one.  Dates in tables are likely
-		  ;; piece of regular data, not meant to appear in the
-		  ;; agenda.
-		  (t (replace-regexp-in-string org-ts-regexp "[\\1]" ev)))))
-	(if (and down (> ndown 0) (looking-at ".*\n[ \t]*|[^-]"))
-	    (call-interactively 'org-return)
-	  (setq ndown 0)))
-      (and down (org-table-maybe-recalculate-line))
-      (or suppress-align (and org-table-may-need-update
-			      (org-table-align))))))
-
-(defun org-table-put-field-property (prop value)
-  (save-excursion
-    (put-text-property (progn (skip-chars-backward "^|") (point))
-		       (progn (skip-chars-forward "^|") (point))
-		       prop value)))
-
-(defun org-table-get-range (desc &optional tbeg col highlight corners-only)
-  "Get a calc vector from a column, according to descriptor DESC.
-
-Optional arguments TBEG and COL can give the beginning of the table and
-the current column, to avoid unnecessary parsing.
-
-HIGHLIGHT means just highlight the range.
-
-When CORNERS-ONLY is set, only return the corners of the range as
-a list (line1 column1 line2 column2) where line1 and line2 are
-line numbers relative to beginning of table, or TBEG, and column1
-and column2 are table column numbers."
-  (let* ((desc (if (string-match-p "\\`\\$[0-9]+\\.\\.\\$[0-9]+\\'" desc)
-		   (replace-regexp-in-string "\\$" "@0$" desc)
-		 desc))
-	 (col (or col (org-table-current-column)))
-	 (tbeg (or tbeg (org-table-begin)))
-	 (thisline (count-lines tbeg (line-beginning-position))))
-    (unless (string-match org-table-range-regexp desc)
-      (user-error "Invalid table range specifier `%s'" desc))
-    (let ((rangep (match-end 3))
-	  (r1 (let ((r (and (match-end 1) (match-string 1 desc))))
-		(or (save-match-data
-		      (and (org-string-nw-p r)
-			   (org-table--descriptor-line r thisline)))
-		    thisline)))
-	  (r2 (let ((r (and (match-end 4) (match-string 4 desc))))
-		(or (save-match-data
-		      (and (org-string-nw-p r)
-			   (org-table--descriptor-line r thisline)))
-		    thisline)))
-	  (c1 (let ((c (and (match-end 2) (substring (match-string 2 desc) 1))))
-		(if (or (not c) (= (string-to-number c) 0)) col
-		  (+ (string-to-number c)
-		     (if (memq (string-to-char c) '(?- ?+)) col 0)))))
-	  (c2 (let ((c (and (match-end 5) (substring (match-string 5 desc) 1))))
-		(if (or (not c) (= (string-to-number c) 0)) col
-		  (+ (string-to-number c)
-		     (if (memq (string-to-char c) '(?- ?+)) col 0))))))
-      (save-excursion
-	(if (and (not corners-only)
-		 (or (not rangep) (and (= r1 r2) (= c1 c2))))
-	    ;; Just one field.
-	    (progn
-	      (forward-line (- r1 thisline))
-	      (while (not (looking-at org-table-dataline-regexp))
-		(forward-line))
-	      (prog1 (org-trim (org-table-get-field c1))
-		(when highlight (org-table-highlight-rectangle))))
-	  ;; A range, return a vector.  First sort the numbers to get
-	  ;; a regular rectangle.
-	  (let ((first-row (min r1 r2))
-		(last-row (max r1 r2))
-		(first-column (min c1 c2))
-		(last-column (max c1 c2)))
-	    (if corners-only (list first-row first-column last-row last-column)
-	      ;; Copy the range values into a list.
-	      (forward-line (- first-row thisline))
-	      (while (not (looking-at org-table-dataline-regexp))
-		(forward-line)
-		(cl-incf first-row))
-	      (org-table-goto-column first-column)
-	      (let ((beg (point)))
-		(forward-line (- last-row first-row))
-		(while (not (looking-at org-table-dataline-regexp))
-		  (forward-line -1))
-		(org-table-goto-column last-column)
-		(let ((end (point)))
-		  (when highlight
-		    (org-table-highlight-rectangle
-		     beg (progn (skip-chars-forward "^|\n") (point))))
-		  ;; Return string representation of calc vector.
-		  (mapcar #'org-trim
-			  (apply #'append
-				 (org-table-copy-region beg end))))))))))))
-
-(defun org-table--descriptor-line (desc cline)
-  "Return relative line number corresponding to descriptor DESC.
-The cursor is currently in relative line number CLINE."
-  (if (string-match "\\`[0-9]+\\'" desc)
-      (aref org-table-dlines (string-to-number desc))
-    (when (or (not (string-match
-		    "^\\(\\([-+]\\)?\\(I+\\)\\)?\\(\\([-+]\\)?\\([0-9]+\\)\\)?"
-		    ;;  1  2          3           4  5          6
-		    desc))
-	      (and (not (match-end 3)) (not (match-end 6)))
-	      (and (match-end 3) (match-end 6) (not (match-end 5))))
-      (user-error "Invalid row descriptor `%s'" desc))
-    (let* ((hn (and (match-end 3) (- (match-end 3) (match-beginning 3))))
-	   (hdir (match-string 2 desc))
-	   (odir (match-string 5 desc))
-	   (on (and (match-end 6) (string-to-number (match-string 6 desc))))
-	   (rel (and (match-end 6)
-		     (or (and (match-end 1) (not (match-end 3)))
-			 (match-end 5)))))
-      (when (and hn (not hdir))
-	(setq cline 0)
-	(setq hdir "+")
-	(when (eq (aref org-table-current-line-types 0) 'hline) (cl-decf hn)))
-      (when (and (not hn) on (not odir)) (user-error "Should never happen"))
-      (when hn
-	(setq cline
-	      (org-table--row-type 'hline hn cline (equal hdir "-") nil desc)))
-      (when on
-	(setq cline
-	      (org-table--row-type 'dline on cline (equal odir "-") rel desc)))
-      cline)))
-
-(defun org-table--row-type (type n i backwards relative desc)
-  "Return relative line of Nth row with type TYPE.
-Search starts from relative line I.  When BACKWARDS in non-nil,
-look before I.  When RELATIVE is non-nil, the reference is
-relative.  DESC is the original descriptor that started the
-search, as a string."
-  (let ((l (length org-table-current-line-types)))
-    (catch :exit
-      (dotimes (_ n)
-	(while (and (cl-incf i (if backwards -1 1))
-		    (>= i 0)
-		    (< i l)
-		    (not (eq (aref org-table-current-line-types i) type))
-		    ;; We are going to cross a hline.  Check if this is
-		    ;; an authorized move.
-		    (cond
-		     ((not relative))
-		     ((not (eq (aref org-table-current-line-types i) 'hline)))
-		     ((eq org-table-relative-ref-may-cross-hline t))
-		     ((eq org-table-relative-ref-may-cross-hline 'error)
-		      (user-error "Row descriptor %s crosses hline" desc))
-		     (t (cl-decf i (if backwards -1 1)) ; Step back.
-			(throw :exit nil)))))))
-    (cond ((or (< i 0) (>= i l))
-	   (user-error "Row descriptor %s leads outside table" desc))
-	  ;; The last hline doesn't exist.  Instead, point to last row
-	  ;; in table.
-	  ((= i (1- l)) (1- i))
-	  (t i))))
-
-(defun org-table--error-on-old-row-references (s)
-  (when (string-match "&[-+0-9I]" s)
-    (user-error "Formula contains old &row reference, please rewrite using @-syntax")))
-
-(defun org-table-make-reference (elements keep-empty numbers lispp)
-  "Convert list ELEMENTS to something appropriate to insert into formula.
-KEEP-EMPTY indicated to keep empty fields, default is to skip them.
-NUMBERS indicates that everything should be converted to numbers.
-LISPP non-nil means to return something appropriate for a Lisp
-list, `literal' is for the format specifier L."
-  ;; Calc nan (not a number) is used for the conversion of the empty
-  ;; field to a reference for several reasons: (i) It is accepted in a
-  ;; Calc formula (e. g. "" or "()" would result in a Calc error).
-  ;; (ii) In a single field (not in range) it can be distinguished
-  ;; from "(nan)" which is the reference made from a single field
-  ;; containing "nan".
-  (if (stringp elements)
-      ;; field reference
-      (if lispp
-	  (if (eq lispp 'literal)
-	      elements
-	    (if (and (eq elements "") (not keep-empty))
-		""
-	      (prin1-to-string
-	       (if numbers (string-to-number elements) elements))))
-	(if (string-match "\\S-" elements)
-	    (progn
-	      (when numbers (setq elements (number-to-string
-					    (string-to-number elements))))
-	      (concat "(" elements ")"))
-	  (if (or (not keep-empty) numbers) "(0)" "nan")))
-    ;; range reference
-    (unless keep-empty
-      (setq elements
-	    (delq nil
-		  (mapcar (lambda (x) (if (string-match "\\S-" x) x nil))
-			  elements))))
-    (setq elements (or elements '()))  ; if delq returns nil then we need '()
-    (if lispp
-	(mapconcat
-	 (lambda (x)
-	   (if (eq lispp 'literal)
-	       x
-	     (prin1-to-string (if numbers (string-to-number x) x))))
-	 elements " ")
-      (concat "[" (mapconcat
-		   (lambda (x)
-		     (if (string-match "\\S-" x)
-			 (if numbers
-			     (number-to-string (string-to-number x))
-			   x)
-		       (if (or (not keep-empty) numbers) "0" "nan")))
-		   elements
-		   ",") "]"))))
-
-(defun org-table-message-once-per-second (t1 &rest args)
-  "If there has been more than one second since T1, display message.
-ARGS are passed as arguments to the `message' function.  Returns
-current time if a message is printed, otherwise returns T1.  If
-T1 is nil, always messages."
-  (let ((curtime (current-time)))
-    (if (or (not t1) (< 0 (nth 1 (time-subtract curtime t1))))
-	(progn (apply 'message args)
-	       curtime)
-      t1)))
-
-;;;###autoload
-(defun org-table-recalculate (&optional all noalign)
-  "Recalculate the current table line by applying all stored formulas.
-
-With prefix arg ALL, do this for all lines in the table.
-
-When called with a `\\[universal-argument] \\[universal-argument]' prefix, or \
-if ALL is the symbol `iterate',
-recompute the table until it no longer changes.
-
-If NOALIGN is not nil, do not re-align the table after the computations
-are done.  This is typically used internally to save time, if it is
-known that the table will be realigned a little later anyway."
-  (interactive "P")
-  (unless (memq this-command org-recalc-commands)
-    (push this-command org-recalc-commands))
-  (unless (org-at-table-p) (user-error "Not at a table"))
-  (if (or (eq all 'iterate) (equal all '(16)))
-      (org-table-iterate)
-    (org-table-analyze)
-    (let* ((eqlist (sort (org-table-get-stored-formulas)
-			 (lambda (a b) (string< (car a) (car b)))))
-	   (inhibit-redisplay (not debug-on-error))
-	   (line-re org-table-dataline-regexp)
-	   (log-first-time (current-time))
-	   (log-last-time log-first-time)
-	   (cnt 0)
-	   beg end eqlcol eqlfield)
-      ;; Insert constants in all formulas.
-      (when eqlist
-	(org-table-save-field
-	 ;; Expand equations, then split the equation list between
-	 ;; column formulas and field formulas.
-	 (dolist (eq eqlist)
-	   (let* ((rhs (org-table-formula-substitute-names
-			(org-table-formula-handle-first/last-rc (cdr eq))))
-		  (old-lhs (car eq))
-		  (lhs
-		   (org-table-formula-handle-first/last-rc
-		    (cond
-		     ((string-match "\\`@-?I+" old-lhs)
-		      (user-error "Can't assign to hline relative reference"))
-		     ((string-match "\\`$[<>]" old-lhs)
-		      (let ((new (org-table-formula-handle-first/last-rc
-				  old-lhs)))
-			(when (assoc new eqlist)
-			  (user-error "\"%s=\" formula tries to overwrite \
-existing formula for column %s"
-				      old-lhs
-				      new))
-			new))
-		     (t old-lhs)))))
-	     (if (string-match-p "\\`\\$[0-9]+\\'" lhs)
-		 (push (cons lhs rhs) eqlcol)
-	       (push (cons lhs rhs) eqlfield))))
-	 (setq eqlcol (nreverse eqlcol))
-	 ;; Expand ranges in lhs of formulas
-	 (setq eqlfield (org-table-expand-lhs-ranges (nreverse eqlfield)))
-	 ;; Get the correct line range to process.
-	 (if all
-	     (progn
-	       (setq end (copy-marker (org-table-end)))
-	       (goto-char (setq beg org-table-current-begin-pos))
-	       (cond
-		((re-search-forward org-table-calculate-mark-regexp end t)
-		 ;; This is a table with marked lines, compute selected
-		 ;; lines.
-		 (setq line-re org-table-recalculate-regexp))
-		;; Move forward to the first non-header line.
-		((and (re-search-forward org-table-dataline-regexp end t)
-		      (re-search-forward org-table-hline-regexp end t)
-		      (re-search-forward org-table-dataline-regexp end t))
-		 (setq beg (match-beginning 0)))
-		;; Just leave BEG at the start of the table.
-		(t nil)))
-	   (setq beg (line-beginning-position)
-		 end (copy-marker (line-beginning-position 2))))
-	 (goto-char beg)
-	 ;; Mark named fields untouchable.  Also check if several
-	 ;; field/range formulas try to set the same field.
-	 (remove-text-properties beg end '(:org-untouchable t))
-	 (let ((current-line (count-lines org-table-current-begin-pos
-					  (line-beginning-position)))
-	       seen-fields)
-	   (dolist (eq eqlfield)
-	     (let* ((name (car eq))
-		    (location (assoc name org-table-named-field-locations))
-		    (eq-line (or (nth 1 location)
-				 (and (string-match "\\`@\\([0-9]+\\)" name)
-				      (aref org-table-dlines
-					    (string-to-number
-					     (match-string 1 name))))))
-		    (reference
-		     (if location
-			 ;; Turn field coordinates associated to NAME
-			 ;; into an absolute reference.
-			 (format "@%d$%d"
-				 (org-table-line-to-dline eq-line)
-				 (nth 2 location))
-		       name)))
-	       (when (member reference seen-fields)
-		 (user-error "Several field/range formulas try to set %s"
-			     reference))
-	       (push reference seen-fields)
-	       (when (or all (eq eq-line current-line))
-		 (org-table-goto-field name)
-		 (org-table-put-field-property :org-untouchable t)))))
-	 ;; Evaluate the column formulas, but skip fields covered by
-	 ;; field formulas.
-	 (goto-char beg)
-	 (while (re-search-forward line-re end t)
-	   (unless (string-match "\\` *[_^!$/] *\\'" (org-table-get-field 1))
-	     ;; Unprotected line, recalculate.
-	     (cl-incf cnt)
-	     (when all
-	       (setq log-last-time
-		     (org-table-message-once-per-second
-		      log-last-time
-		      "Re-applying formulas to full table...(line %d)" cnt)))
-	     (if (markerp org-last-recalc-line)
-		 (move-marker org-last-recalc-line (line-beginning-position))
-	       (setq org-last-recalc-line
-		     (copy-marker (line-beginning-position))))
-	     (dolist (entry eqlcol)
-	       (goto-char org-last-recalc-line)
-	       (org-table-goto-column
-		(string-to-number (substring (car entry) 1)) nil 'force)
-	       (unless (get-text-property (point) :org-untouchable)
-		 (org-table-eval-formula
-		  nil (cdr entry) 'noalign 'nocst 'nostore 'noanalysis)))))
-	 ;; Evaluate the field formulas.
-	 (dolist (eq eqlfield)
-	   (let ((reference (car eq))
-		 (formula (cdr eq)))
-	     (setq log-last-time
-		   (org-table-message-once-per-second
-		    (and all log-last-time)
-		    "Re-applying formula to field: %s" (car eq)))
-	     (org-table-goto-field
-	      reference
-	      ;; Possibly create a new column, as long as
-	      ;; `org-table-formula-create-columns' allows it.
-	      (let ((column-count (progn (end-of-line)
-					 (1- (org-table-current-column)))))
-		(lambda (column)
-		  (when (> column 1000)
-		    (user-error "Formula column target too large"))
-		  (and (> column column-count)
-		       (or (eq org-table-formula-create-columns t)
-			   (and (eq org-table-formula-create-columns 'warn)
-				(progn
-				  (org-display-warning
-				   "Out-of-bounds formula added columns")
-				  t))
-			   (and (eq org-table-formula-create-columns 'prompt)
-				(yes-or-no-p
-				 "Out-of-bounds formula.  Add columns? "))
-			   (user-error
-			    "Missing columns in the table.  Aborting"))))))
-	     (org-table-eval-formula nil formula t t t t))))
-	;; Clean up markers and internal text property.
-	(remove-text-properties (point-min) (point-max) '(org-untouchable t))
-	(set-marker end nil)
-	(unless noalign
-	  (when org-table-may-need-update (org-table-align))
-	  (when all
-	    (org-table-message-once-per-second
-	     log-first-time "Re-applying formulas to %d lines... done" cnt)))
-	(org-table-message-once-per-second
-	 (and all log-first-time) "Re-applying formulas... done")))))
-
-;;;###autoload
-(defun org-table-iterate (&optional arg)
-  "Recalculate the table until it does not change anymore.
-The maximum number of iterations is 10, but you can choose a different value
-with the prefix ARG."
-  (interactive "P")
-  (let ((imax (if arg (prefix-numeric-value arg) 10))
-	(i 0)
-	(lasttbl (buffer-substring (org-table-begin) (org-table-end)))
-	thistbl)
-    (catch 'exit
-      (while (< i imax)
-	(setq i (1+ i))
-	(org-table-recalculate 'all)
-	(setq thistbl (buffer-substring (org-table-begin) (org-table-end)))
-	(if (not (string= lasttbl thistbl))
-	    (setq lasttbl thistbl)
-	  (if (> i 1)
-	      (message "Convergence after %d iterations" i)
-	    (message "Table was already stable"))
-	  (throw 'exit t)))
-      (user-error "No convergence after %d iterations" i))))
-
-;;;###autoload
-(defun org-table-recalculate-buffer-tables ()
-  "Recalculate all tables in the current buffer."
-  (interactive)
-  (org-with-wide-buffer
-   (org-table-map-tables
-    (lambda ()
-      ;; Reason for separate `org-table-align': When repeating
-      ;; (org-table-recalculate t) `org-table-may-need-update' gets in
-      ;; the way.
-      (org-table-recalculate t t)
-      (org-table-align))
-    t)))
-
-;;;###autoload
-(defun org-table-iterate-buffer-tables ()
-  "Iterate all tables in the buffer, to converge inter-table dependencies."
-  (interactive)
-  (let* ((imax 10)
-	 (i imax)
-	 (checksum (md5 (buffer-string)))
-	 c1)
-    (org-with-wide-buffer
-     (catch 'exit
-       (while (> i 0)
-	 (setq i (1- i))
-	 (org-table-map-tables (lambda () (org-table-recalculate t t)) t)
-	 (if (equal checksum (setq c1 (md5 (buffer-string))))
-	     (progn
-	       (org-table-map-tables #'org-table-align t)
-	       (message "Convergence after %d iterations" (- imax i))
-	       (throw 'exit t))
-	   (setq checksum c1)))
-       (org-table-map-tables #'org-table-align t)
-       (user-error "No convergence after %d iterations" imax)))))
-
-(defun org-table-calc-current-TBLFM (&optional arg)
-  "Apply the #+TBLFM in the line at point to the table."
-  (interactive "P")
-  (unless (org-at-TBLFM-p) (user-error "Not at a #+TBLFM line"))
-  (let ((formula (buffer-substring
-		  (line-beginning-position)
-		  (line-end-position))))
-    (save-excursion
-      ;; Insert a temporary formula at right after the table
-      (goto-char (org-table-TBLFM-begin))
-      (let ((s (point-marker)))
-	(insert formula "\n")
-	(let ((e (point-marker)))
-	  ;; Recalculate the table.
-	  (beginning-of-line 0)		; move to the inserted line
-	  (skip-chars-backward " \r\n\t")
-	  (unwind-protect
-	      (org-call-with-arg #'org-table-recalculate (or arg t))
-	    ;; Delete the formula inserted temporarily.
-	    (delete-region s e)
-	    (set-marker s nil)
-	    (set-marker e nil)))))))
-
-(defun org-table-TBLFM-begin ()
-  "Find the beginning of the TBLFM lines and return its position.
-Return nil when the beginning of TBLFM line was not found."
-  (save-excursion
-    (when (progn (forward-line 1)
-		 (re-search-backward org-table-TBLFM-begin-regexp nil t))
-      (line-beginning-position 2))))
-
-(defun org-table-expand-lhs-ranges (equations)
-  "Expand list of formulas.
-If some of the RHS in the formulas are ranges or a row reference,
-expand them to individual field equations for each field.  This
-function assumes the table is already analyzed (i.e., using
-`org-table-analyze')."
-  (let (res)
-    (dolist (e equations (nreverse res))
-      (let ((lhs (car e))
-	    (rhs (cdr e)))
-	(cond
-	 ((string-match-p "\\`@-?[-+0-9]+\\$-?[0-9]+\\'" lhs)
-	  ;; This just refers to one fixed field.
-	  (push e res))
-	 ((string-match-p "\\`[a-zA-Z][_a-zA-Z0-9]*\\'" lhs)
-	  ;; This just refers to one fixed named field.
-	  (push e res))
-	 ((string-match-p "\\`\\$[0-9]+\\'" lhs)
-	  ;; Column formulas are treated specially and are not
-	  ;; expanded.
-	  (push e res))
-	 ((string-match "\\`@[0-9]+\\'" lhs)
-	  (dotimes (ic org-table-current-ncol)
-	    (push (cons (propertize (format "%s$%d" lhs (1+ ic)) :orig-eqn e)
-			rhs)
-		  res)))
-	 (t
-	  (let* ((range (org-table-get-range
-			 lhs org-table-current-begin-pos 1 nil 'corners))
-		 (r1 (org-table-line-to-dline (nth 0 range)))
-		 (c1 (nth 1 range))
-		 (r2 (org-table-line-to-dline (nth 2 range) 'above))
-		 (c2 (nth 3 range)))
-	    (cl-loop for ir from r1 to r2 do
-		     (cl-loop for ic from c1 to c2 do
-			      (push (cons (propertize
-					   (format "@%d$%d" ir ic) :orig-eqn e)
-					  rhs)
-				    res))))))))))
-
-(defun org-table-formula-handle-first/last-rc (s)
-  "Replace @<, @>, $<, $> with first/last row/column of the table.
-So @< and $< will always be replaced with @1 and $1, respectively.
-The advantage of these special markers are that structure editing of
-the table will not change them, while @1 and $1 will be modified
-when a line/row is swapped out of that privileged position.  So for
-formulas that use a range of rows or columns, it may often be better
-to anchor the formula with \"I\" row markers, or to offset from the
-borders of the table using the @< @> $< $> makers."
-  (let (n nmax len char (start 0))
-    (while (string-match "\\([@$]\\)\\(<+\\|>+\\)\\|\\(remote([^)]+)\\)"
-			 s start)
-      (if (match-end 3)
-	  (setq start (match-end 3))
-	(setq nmax (if (equal (match-string 1 s) "@")
-		       (1- (length org-table-dlines))
-		     org-table-current-ncol)
-	      len (- (match-end 2) (match-beginning 2))
-	      char (string-to-char (match-string 2 s))
-	      n (if (= char ?<)
-		    len
-		  (- nmax len -1)))
-	(if (or (< n 1) (> n nmax))
-	    (user-error "Reference \"%s\" in expression \"%s\" points outside table"
-			(match-string 0 s) s))
-	(setq start (match-beginning 0))
-	(setq s (replace-match (format "%s%d" (match-string 1 s) n) t t s)))))
-  s)
-
-(defun org-table-formula-substitute-names (f)
-  "Replace $const with values in string F."
-  (let ((start 0)
-	(pp (/= (string-to-char f) ?'))
-	(duration (string-match-p ";.*[Tt].*\\'" f))
-	(new (replace-regexp-in-string	; Check for column names.
-	      org-table-column-name-regexp
-	      (lambda (m)
-		(concat "$" (cdr (assoc (match-string 1 m)
-					org-table-column-names))))
-	      f t t)))
-    ;; Parameters and constants.
-    (while (setq start
-		 (string-match
-		  "\\$\\([a-zA-Z][_a-zA-Z0-9]*\\)\\|\\(\\<remote([^)]*)\\)"
-		  new start))
-      (if (match-end 2) (setq start (match-end 2))
-	(cl-incf start)
-	;; When a duration is expected, convert value on the fly.
-	(let ((value
-	       (save-match-data
-		 (let ((v (org-table-get-constant (match-string 1 new))))
-		   (if (and (org-string-nw-p v) duration)
-		       (org-table-time-string-to-seconds v)
-		     v)))))
-	  (when value
-	    (setq new (replace-match
-		       (concat (and pp "(") value (and pp ")")) t t new))))))
-    (if org-table-formula-debug (propertize new :orig-formula f) new)))
-
-(defun org-table-get-constant (const)
-  "Find the value for a parameter or constant in a formula.
-Parameters get priority."
-  (or (cdr (assoc const org-table-local-parameters))
-      (cdr (assoc const org-table-formula-constants-local))
-      (cdr (assoc const org-table-formula-constants))
-      (and (fboundp 'constants-get) (constants-get const))
-      (and (string= (substring const 0 (min 5 (length const))) "PROP_")
-	   (org-entry-get nil (substring const 5) 'inherit))
-      "#UNDEFINED_NAME"))
-
-(defvar org-table-fedit-map
-  (let ((map (make-sparse-keymap)))
-    (org-defkey map "\C-x\C-s"      'org-table-fedit-finish)
-    (org-defkey map "\C-c\C-s"      'org-table-fedit-finish)
-    (org-defkey map "\C-c\C-c"      'org-table-fedit-finish)
-    (org-defkey map "\C-c'"         'org-table-fedit-finish)
-    (org-defkey map "\C-c\C-q"      'org-table-fedit-abort)
-    (org-defkey map "\C-c?"	    'org-table-show-reference)
-    (org-defkey map [(meta shift up)]    'org-table-fedit-line-up)
-    (org-defkey map [(meta shift down)]  'org-table-fedit-line-down)
-    (org-defkey map [(shift up)]    'org-table-fedit-ref-up)
-    (org-defkey map [(shift down)]  'org-table-fedit-ref-down)
-    (org-defkey map [(shift left)]  'org-table-fedit-ref-left)
-    (org-defkey map [(shift right)] 'org-table-fedit-ref-right)
-    (org-defkey map [(meta up)]     'org-table-fedit-scroll-down)
-    (org-defkey map [(meta down)]   'org-table-fedit-scroll)
-    (org-defkey map [(meta tab)]    'lisp-complete-symbol)
-    (org-defkey map "\M-\C-i"       'lisp-complete-symbol)
-    (org-defkey map [(tab)]	    'org-table-fedit-lisp-indent)
-    (org-defkey map "\C-i"	    'org-table-fedit-lisp-indent)
-    (org-defkey map "\C-c\C-r" 'org-table-fedit-toggle-ref-type)
-    (org-defkey map "\C-c}"    'org-table-fedit-toggle-coordinates)
-    map))
-
-(easy-menu-define org-table-fedit-menu org-table-fedit-map "Org Edit Formulas Menu"
-  '("Edit-Formulas"
-    ["Finish and Install" org-table-fedit-finish t]
-    ["Finish, Install, and Apply" (org-table-fedit-finish t) :keys "C-u C-c C-c"]
-    ["Abort" org-table-fedit-abort t]
-    "--"
-    ["Pretty-Print Lisp Formula" org-table-fedit-lisp-indent t]
-    ["Complete Lisp Symbol" lisp-complete-symbol t]
-    "--"
-    "Shift Reference at Point"
-    ["Up" org-table-fedit-ref-up t]
-    ["Down" org-table-fedit-ref-down t]
-    ["Left" org-table-fedit-ref-left t]
-    ["Right" org-table-fedit-ref-right t]
-    "-"
-    "Change Test Row for Column Formulas"
-    ["Up" org-table-fedit-line-up t]
-    ["Down" org-table-fedit-line-down t]
-    "--"
-    ["Scroll Table Window" org-table-fedit-scroll t]
-    ["Scroll Table Window down" org-table-fedit-scroll-down t]
-    ["Show Table Grid" org-table-fedit-toggle-coordinates
-     :style toggle :selected (with-current-buffer (marker-buffer org-pos)
-			       org-table-overlay-coordinates)]
-    "--"
-    ["Standard Refs (B3 instead of @3$2)" org-table-fedit-toggle-ref-type
-     :style toggle :selected org-table-buffer-is-an]))
-
-(defvar org-pos)
-(defvar org-table--fedit-source nil
-  "Position of the TBLFM line being edited.")
-
-;;;###autoload
-(defun org-table-edit-formulas ()
-  "Edit the formulas of the current table in a separate buffer."
-  (interactive)
-  (let ((at-tblfm (org-at-TBLFM-p)))
-    (unless (or at-tblfm (org-at-table-p))
-      (user-error "Not at a table"))
-    (save-excursion
-      ;; Move point within the table before analyzing it.
-      (when at-tblfm (re-search-backward "^[ \t]*|"))
-      (org-table-analyze))
-    (let ((key (org-table-current-field-formula 'key 'noerror))
-	  (eql (sort (org-table-get-stored-formulas t (and at-tblfm (point)))
-		     #'org-table-formula-less-p))
-	  (pos (point-marker))
-	  (source (copy-marker (line-beginning-position)))
-	  (startline 1)
-	  (wc (current-window-configuration))
-	  (sel-win (selected-window))
-	  (titles '((column . "# Column Formulas\n")
-		    (field . "# Field and Range Formulas\n")
-		    (named . "# Named Field Formulas\n"))))
-      (org-switch-to-buffer-other-window "*Edit Formulas*")
-      (erase-buffer)
-      ;; Keep global-font-lock-mode from turning on font-lock-mode
-      (let ((font-lock-global-modes '(not fundamental-mode)))
-	(fundamental-mode))
-      (setq-local font-lock-global-modes (list 'not major-mode))
-      (setq-local org-pos pos)
-      (setq-local org-table--fedit-source source)
-      (setq-local org-window-configuration wc)
-      (setq-local org-selected-window sel-win)
-      (use-local-map org-table-fedit-map)
-      (add-hook 'post-command-hook #'org-table-fedit-post-command t t)
-      (easy-menu-add org-table-fedit-menu)
-      (setq startline (org-current-line))
-      (dolist (entry eql)
-	(let* ((type (cond
-		      ((string-match "\\`$\\([0-9]+\\|[<>]+\\)\\'" (car entry))
-		       'column)
-		      ((equal (string-to-char (car entry)) ?@) 'field)
-		      (t 'named)))
-	       (title (assq type titles)))
-	  (when title
-	    (unless (bobp) (insert "\n"))
-	    (insert
-	     (org-add-props (cdr title) nil 'face font-lock-comment-face))
-	    (setq titles (remove title titles)))
-	  (when (equal key (car entry)) (setq startline (org-current-line)))
-	  (let ((s (concat
-		    (if (memq (string-to-char (car entry)) '(?@ ?$)) "" "$")
-		    (car entry) " = " (cdr entry) "\n")))
-	    (remove-text-properties 0 (length s) '(face nil) s)
-	    (insert s))))
-      (when (eq org-table-use-standard-references t)
-	(org-table-fedit-toggle-ref-type))
-      (org-goto-line startline)
-      (message "%s" (substitute-command-keys "\\<org-mode-map>\
-Edit formulas, finish with `\\[org-ctrl-c-ctrl-c]' or `\\[org-edit-special]'.  \
-See menu for more commands.")))))
-
-(defun org-table-fedit-post-command ()
-  (when (not (memq this-command '(lisp-complete-symbol)))
-    (let ((win (selected-window)))
-      (save-excursion
-	(ignore-errors (org-table-show-reference))
-	(select-window win)))))
-
-(defun org-table-formula-to-user (s)
-  "Convert a formula from internal to user representation."
-  (if (eq org-table-use-standard-references t)
-      (org-table-convert-refs-to-an s)
-    s))
-
-(defun org-table-formula-from-user (s)
-  "Convert a formula from user to internal representation."
-  (if org-table-use-standard-references
-      (org-table-convert-refs-to-rc s)
-    s))
-
-(defun org-table-convert-refs-to-rc (s)
-  "Convert spreadsheet references from A7 to @7$28.
-Works for single references, but also for entire formulas and even the
-full TBLFM line."
-  (let ((start 0))
-    (while (string-match "\\<\\([a-zA-Z]+\\)\\([0-9]+\\>\\|&\\)\\|\\(;[^\r\n:]+\\|\\<remote([^,)]*)\\)" s start)
-      (cond
-       ((match-end 3)
-	;; format match, just advance
-	(setq start (match-end 0)))
-       ((and (> (match-beginning 0) 0)
-	     (equal ?. (aref s (max (1- (match-beginning 0)) 0)))
-	     (not (equal ?. (aref s (max (- (match-beginning 0) 2) 0)))))
-	;; 3.e5 or something like this.
-	(setq start (match-end 0)))
-       ((or (> (- (match-end 1) (match-beginning 1)) 2)
-	    ;; (member (match-string 1 s)
-	    ;;	    '("arctan" "exp" "expm" "lnp" "log" "stir"))
-	    )
-	;; function name, just advance
-	(setq start (match-end 0)))
-       (t
-	(setq start (match-beginning 0)
-	      s (replace-match
-		 (if (equal (match-string 2 s) "&")
-		     (format "$%d" (org-letters-to-number (match-string 1 s)))
-		   (format "@%d$%d"
-			   (string-to-number (match-string 2 s))
-			   (org-letters-to-number (match-string 1 s))))
-		 t t s)))))
-    s))
-
-(defun org-table-convert-refs-to-an (s)
-  "Convert spreadsheet references from to @7$28 to AB7.
-Works for single references, but also for entire formulas and even the
-full TBLFM line."
-  (while (string-match "@\\([0-9]+\\)\\$\\([0-9]+\\)" s)
-    (setq s (replace-match
-	     (format "%s%d"
-		     (org-number-to-letters
-		      (string-to-number (match-string 2 s)))
-		     (string-to-number (match-string 1 s)))
-	     t t s)))
-  (while (string-match "\\(^\\|[^0-9a-zA-Z]\\)\\$\\([0-9]+\\)" s)
-    (setq s (replace-match (concat "\\1"
-				   (org-number-to-letters
-				    (string-to-number (match-string 2 s))) "&")
-			   t nil s)))
-  s)
-
-(defun org-letters-to-number (s)
-  "Convert a base 26 number represented by letters into an integer.
-For example:  AB -> 28."
-  (let ((n 0))
-    (setq s (upcase s))
-    (while (> (length s) 0)
-      (setq n (+ (* n 26) (string-to-char s) (- ?A) 1)
-	    s (substring s 1)))
-    n))
-
-(defun org-number-to-letters (n)
-  "Convert an integer into a base 26 number represented by letters.
-For example:  28 -> AB."
-  (let ((s ""))
-    (while (> n 0)
-      (setq s (concat (char-to-string (+ (mod (1- n) 26) ?A)) s)
-	    n (/ (1- n) 26)))
-    s))
-
-(defun org-table-time-string-to-seconds (s)
-  "Convert a time string into numerical duration in seconds.
-S can be a string matching either -?HH:MM:SS or -?HH:MM.
-If S is a string representing a number, keep this number."
-  (if (equal s "")
-      s
-    (let (hour minus min sec res)
-      (cond
-       ((and (string-match "\\(-?\\)\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\)" s))
-	(setq minus (< 0 (length (match-string 1 s)))
-	      hour (string-to-number (match-string 2 s))
-	      min (string-to-number (match-string 3 s))
-	      sec (string-to-number (match-string 4 s)))
-	(if minus
-	    (setq res (- (+ (* hour 3600) (* min 60) sec)))
-	  (setq res (+ (* hour 3600) (* min 60) sec))))
-       ((and (not (string-match org-ts-regexp-both s))
-	     (string-match "\\(-?\\)\\([0-9]+\\):\\([0-9]+\\)" s))
-	(setq minus (< 0 (length (match-string 1 s)))
-	      hour (string-to-number (match-string 2 s))
-	      min (string-to-number (match-string 3 s)))
-	(if minus
-	    (setq res (- (+ (* hour 3600) (* min 60))))
-	  (setq res (+ (* hour 3600) (* min 60)))))
-       (t (setq res (string-to-number s))))
-      (number-to-string res))))
-
-(defun org-table-time-seconds-to-string (secs &optional output-format)
-  "Convert a number of seconds to a time string.
-If OUTPUT-FORMAT is non-nil, return a number of days, hours,
-minutes or seconds."
-  (let* ((secs0 (abs secs))
-	 (res
-	  (cond ((eq output-format 'days)
-		 (format "%.3f" (/ (float secs0) 86400)))
-		((eq output-format 'hours)
-		 (format "%.2f" (/ (float secs0) 3600)))
-		((eq output-format 'minutes)
-		 (format "%.1f" (/ (float secs0) 60)))
-		((eq output-format 'seconds)
-		 (format "%d" secs0))
-		((eq output-format 'hh:mm)
-		 ;; Ignore seconds
-		 (substring (format-seconds
-			     (if org-table-duration-hour-zero-padding
-				 "%.2h:%.2m:%.2s" "%h:%.2m:%.2s")
-			     secs0)
-			    0 -3))
-		(t (format-seconds
-		    (if org-table-duration-hour-zero-padding
-			"%.2h:%.2m:%.2s" "%h:%.2m:%.2s")
-		    secs0)))))
-    (if (< secs 0) (concat "-" res) res)))
-
-(defun org-table-fedit-convert-buffer (function)
-  "Convert all references in this buffer, using FUNCTION."
-  (let ((origin (copy-marker (line-beginning-position))))
-    (goto-char (point-min))
-    (while (not (eobp))
-      (insert (funcall function (buffer-substring (point) (line-end-position))))
-      (delete-region (point) (line-end-position))
-      (forward-line))
-    (goto-char origin)
-    (set-marker origin nil)))
-
-(defun org-table-fedit-toggle-ref-type ()
-  "Convert all references in the buffer from B3 to @3$2 and back."
-  (interactive)
-  (setq-local org-table-buffer-is-an (not org-table-buffer-is-an))
-  (org-table-fedit-convert-buffer
-   (if org-table-buffer-is-an
-       'org-table-convert-refs-to-an 'org-table-convert-refs-to-rc))
-  (message "Reference type switched to %s"
-	   (if org-table-buffer-is-an "A1 etc" "@row$column")))
-
-(defun org-table-fedit-ref-up ()
-  "Shift the reference at point one row/hline up."
-  (interactive)
-  (org-table-fedit-shift-reference 'up))
-(defun org-table-fedit-ref-down ()
-  "Shift the reference at point one row/hline down."
-  (interactive)
-  (org-table-fedit-shift-reference 'down))
-(defun org-table-fedit-ref-left ()
-  "Shift the reference at point one field to the left."
-  (interactive)
-  (org-table-fedit-shift-reference 'left))
-(defun org-table-fedit-ref-right ()
-  "Shift the reference at point one field to the right."
-  (interactive)
-  (org-table-fedit-shift-reference 'right))
-
-(defun org-table-fedit-shift-reference (dir)
-  (cond
-   ((org-in-regexp "\\(\\<[a-zA-Z]\\)&")
-    (if (memq dir '(left right))
-	(org-rematch-and-replace 1 (eq dir 'left))
-      (user-error "Cannot shift reference in this direction")))
-   ((org-in-regexp "\\(\\<[a-zA-Z]\\{1,2\\}\\)\\([0-9]+\\)")
-    ;; A B3-like reference
-    (if (memq dir '(up down))
-	(org-rematch-and-replace 2 (eq dir 'up))
-      (org-rematch-and-replace 1 (eq dir 'left))))
-   ((org-in-regexp
-     "\\(@\\|\\.\\.\\)\\([-+]?\\(I+\\>\\|[0-9]+\\)\\)\\(\\$\\([-+]?[0-9]+\\)\\)?")
-    ;; An internal reference
-    (if (memq dir '(up down))
-	(org-rematch-and-replace 2 (eq dir 'up) (match-end 3))
-      (org-rematch-and-replace 5 (eq dir 'left))))))
-
-(defun org-rematch-and-replace (n &optional decr hline)
-  "Re-match the group N, and replace it with the shifted reference."
-  (or (match-end n) (user-error "Cannot shift reference in this direction"))
-  (goto-char (match-beginning n))
-  (and (looking-at (regexp-quote (match-string n)))
-       (replace-match (org-table-shift-refpart (match-string 0) decr hline)
-		      t t)))
-
-(defun org-table-shift-refpart (ref &optional decr hline)
-  "Shift a reference part REF.
-If DECR is set, decrease the references row/column, else increase.
-If HLINE is set, this may be a hline reference, it certainly is not
-a translation reference."
-  (save-match-data
-    (let* ((sign (string-match "^[-+]" ref)) n)
-
-      (if sign (setq sign (substring ref 0 1) ref (substring ref 1)))
-      (cond
-       ((and hline (string-match "^I+" ref))
-	(setq n (string-to-number (concat sign (number-to-string (length ref)))))
-	(setq n (+ n (if decr -1 1)))
-	(if (= n 0) (setq n (+ n (if decr -1 1))))
-	(if sign
-	    (setq sign (if (< n 0) "-" "+") n (abs n))
-	  (setq n (max 1 n)))
-	(concat sign (make-string n ?I)))
-
-       ((string-match "^[0-9]+" ref)
-	(setq n (string-to-number (concat sign ref)))
-	(setq n (+ n (if decr -1 1)))
-	(if sign
-	    (concat (if (< n 0) "-" "+") (number-to-string (abs n)))
-	  (number-to-string (max 1 n))))
-
-       ((string-match "^[a-zA-Z]+" ref)
-	(org-number-to-letters
-	 (max 1 (+ (org-letters-to-number ref) (if decr -1 1)))))
-
-       (t (user-error "Cannot shift reference"))))))
-
-(defun org-table-fedit-toggle-coordinates ()
-  "Toggle the display of coordinates in the referenced table."
-  (interactive)
-  (let ((pos (marker-position org-pos)))
-    (with-current-buffer (marker-buffer org-pos)
-      (save-excursion
-	(goto-char pos)
-	(org-table-toggle-coordinate-overlays)))))
-
-(defun org-table-fedit-finish (&optional arg)
-  "Parse the buffer for formula definitions and install them.
-With prefix ARG, apply the new formulas to the table."
-  (interactive "P")
-  (org-table-remove-rectangle-highlight)
-  (when org-table-use-standard-references
-    (org-table-fedit-convert-buffer 'org-table-convert-refs-to-rc)
-    (setq org-table-buffer-is-an nil))
-  (let ((pos org-pos)
-	(sel-win org-selected-window)
-	(source org-table--fedit-source)
-	eql)
-    (goto-char (point-min))
-    (while (re-search-forward
-	    "^\\(@[-+I<>0-9.$@]+\\|@?[0-9]+\\|\\$\\([a-zA-Z0-9]+\\|[<>]+\\)\\) *= *\\(.*\\(\n[ \t]+.*$\\)*\\)"
-	    nil t)
-      (let ((var (match-string 1))
-	    (form (org-trim (match-string 3))))
-	(unless (equal form "")
-	  (while (string-match "[ \t]*\n[ \t]*" form)
-	    (setq form (replace-match " " t t form)))
-	  (when (assoc var eql)
-	    (user-error "Double formulas for %s" var))
-	  (push (cons var form) eql))))
-    (set-window-configuration org-window-configuration)
-    (select-window sel-win)
-    (goto-char source)
-    (org-table-store-formulas eql)
-    (set-marker pos nil)
-    (set-marker source nil)
-    (kill-buffer "*Edit Formulas*")
-    (if arg
-	(org-table-recalculate 'all)
-      (message "New formulas installed - press C-u C-c C-c to apply."))))
-
-(defun org-table-fedit-abort ()
-  "Abort editing formulas, without installing the changes."
-  (interactive)
-  (org-table-remove-rectangle-highlight)
-  (let ((pos org-pos) (sel-win org-selected-window))
-    (set-window-configuration org-window-configuration)
-    (select-window sel-win)
-    (goto-char pos)
-    (move-marker pos nil)
-    (message "Formula editing aborted without installing changes")))
-
-(defun org-table-fedit-lisp-indent ()
-  "Pretty-print and re-indent Lisp expressions in the Formula Editor."
-  (interactive)
-  (let ((pos (point)) beg end ind)
-    (beginning-of-line 1)
-    (cond
-     ((looking-at "[ \t]")
-      (goto-char pos)
-      (call-interactively 'lisp-indent-line))
-     ((looking-at "[$&@0-9a-zA-Z]+ *= *[^ \t\n']") (goto-char pos))
-     ((not (fboundp 'pp-buffer))
-      (user-error "Cannot pretty-print.  Command `pp-buffer' is not available"))
-     ((looking-at "[$&@0-9a-zA-Z]+ *= *'(")
-      (goto-char (- (match-end 0) 2))
-      (setq beg (point))
-      (setq ind (make-string (current-column) ?\ ))
-      (condition-case nil (forward-sexp 1)
-	(error
-	 (user-error "Cannot pretty-print Lisp expression: Unbalanced parenthesis")))
-      (setq end (point))
-      (save-restriction
-	(narrow-to-region beg end)
-	(if (eq last-command this-command)
-	    (progn
-	      (goto-char (point-min))
-	      (setq this-command nil)
-	      (while (re-search-forward "[ \t]*\n[ \t]*" nil t)
-		(replace-match " ")))
-	  (pp-buffer)
-	  (untabify (point-min) (point-max))
-	  (goto-char (1+ (point-min)))
-	  (while (re-search-forward "^." nil t)
-	    (beginning-of-line 1)
-	    (insert ind))
-	  (goto-char (point-max))
-	  (org-delete-backward-char 1)))
-      (goto-char beg))
-     (t nil))))
-
-(defvar org-show-positions nil)
-
-(defun org-table-show-reference (&optional local)
-  "Show the location/value of the $ expression at point.
-When LOCAL is non-nil, show references for the table at point."
-  (interactive)
-  (org-table-remove-rectangle-highlight)
-  (when local (org-table-analyze))
-  (catch 'exit
-    (let ((pos (if local (point) org-pos))
-	  (face2 'highlight)
-	  (org-inhibit-highlight-removal t)
-	  (win (selected-window))
-	  (org-show-positions nil)
-	  var name e what match dest)
-      (setq what (cond
-		  ((org-in-regexp "^@[0-9]+[ \t=]")
-		   (setq match (concat (substring (match-string 0) 0 -1)
-				       "$1.."
-				       (substring (match-string 0) 0 -1)
-				       "$100"))
-		   'range)
-		  ((or (org-in-regexp org-table-range-regexp2)
-		       (org-in-regexp org-table-translate-regexp)
-		       (org-in-regexp org-table-range-regexp))
-		   (setq match
-			 (save-match-data
-			   (org-table-convert-refs-to-rc (match-string 0))))
-		   'range)
-		  ((org-in-regexp "\\$[a-zA-Z][a-zA-Z0-9]*") 'name)
-		  ((org-in-regexp "\\$[0-9]+") 'column)
-		  ((not local) nil)
-		  (t (user-error "No reference at point")))
-	    match (and what (or match (match-string 0))))
-      (when (and  match (not (equal (match-beginning 0) (point-at-bol))))
-	(org-table-add-rectangle-overlay (match-beginning 0) (match-end 0)
-					 'secondary-selection))
-      (add-hook 'before-change-functions
-		#'org-table-remove-rectangle-highlight)
-      (when (eq what 'name) (setq var (substring match 1)))
-      (when (eq what 'range)
-	(unless (eq (string-to-char match) ?@) (setq match (concat "@" match)))
-	(setq match (org-table-formula-substitute-names match)))
-      (unless local
-	(save-excursion
-	  (end-of-line)
-	  (re-search-backward "^\\S-" nil t)
-	  (beginning-of-line)
-	  (when (looking-at "\\(\\$[0-9a-zA-Z]+\\|@[0-9]+\\$[0-9]+\\|[a-zA-Z]+\
-\\([0-9]+\\|&\\)\\) *=")
-	    (setq dest
-		  (save-match-data
-		    (org-table-convert-refs-to-rc (match-string 1))))
-	    (org-table-add-rectangle-overlay
-	     (match-beginning 1) (match-end 1) face2))))
-      (if (and (markerp pos) (marker-buffer pos))
-	  (if (get-buffer-window (marker-buffer pos))
-	      (select-window (get-buffer-window (marker-buffer pos)))
-	    (org-switch-to-buffer-other-window (get-buffer-window
-						(marker-buffer pos)))))
-      (goto-char pos)
-      (org-table-force-dataline)
-      (let ((table-start
-	     (if local org-table-current-begin-pos (org-table-begin))))
-	(when dest
-	  (setq name (substring dest 1))
-	  (cond
-	   ((string-match-p "\\`\\$[a-zA-Z][a-zA-Z0-9]*" dest)
-	    (org-table-goto-field dest))
-	   ((string-match-p "\\`@\\([1-9][0-9]*\\)\\$\\([1-9][0-9]*\\)\\'"
-			    dest)
-	    (org-table-goto-field dest))
-	   (t (org-table-goto-column (string-to-number name))))
-	  (move-marker pos (point))
-	  (org-table-highlight-rectangle nil nil face2))
-	(cond
-	 ((equal dest match))
-	 ((not match))
-	 ((eq what 'range)
-	  (ignore-errors (org-table-get-range match table-start nil 'highlight)))
-	 ((setq e (assoc var org-table-named-field-locations))
-	  (org-table-goto-field var)
-	  (org-table-highlight-rectangle)
-	  (message "Named field, column %d of line %d" (nth 2 e) (nth 1 e)))
-	 ((setq e (assoc var org-table-column-names))
-	  (org-table-goto-column (string-to-number (cdr e)))
-	  (org-table-highlight-rectangle)
-	  (goto-char table-start)
-	  (if (re-search-forward (concat "^[ \t]*| *! *.*?| *\\(" var "\\) *|")
-				 (org-table-end) t)
-	      (progn
-		(goto-char (match-beginning 1))
-		(org-table-highlight-rectangle)
-		(message "Named column (column %s)" (cdr e)))
-	    (user-error "Column name not found")))
-	 ((eq what 'column)
-	  ;; Column number.
-	  (org-table-goto-column (string-to-number (substring match 1)))
-	  (org-table-highlight-rectangle)
-	  (message "Column %s" (substring match 1)))
-	 ((setq e (assoc var org-table-local-parameters))
-	  (goto-char table-start)
-	  (if (re-search-forward (concat "^[ \t]*| *\\$ *.*?| *\\(" var "=\\)") nil t)
-	      (progn
-		(goto-char (match-beginning 1))
-		(org-table-highlight-rectangle)
-		(message "Local parameter."))
-	    (user-error "Parameter not found")))
-	 ((not var) (user-error "No reference at point"))
-	 ((setq e (assoc var org-table-formula-constants-local))
-	  (message "Local Constant: $%s=%s in #+CONSTANTS line."
-		   var (cdr e)))
-	 ((setq e (assoc var org-table-formula-constants))
-	  (message "Constant: $%s=%s in `org-table-formula-constants'."
-		   var (cdr e)))
-	 ((setq e (and (fboundp 'constants-get) (constants-get var)))
-	  (message "Constant: $%s=%s, from `constants.el'%s."
-		   var e (format " (%s units)" constants-unit-system)))
-	 (t (user-error "Undefined name $%s" var)))
-	(goto-char pos)
-	(when (and org-show-positions
-		   (not (memq this-command '(org-table-fedit-scroll
-					     org-table-fedit-scroll-down))))
-	  (push pos org-show-positions)
-	  (push table-start org-show-positions)
-	  (let ((min (apply 'min org-show-positions))
-		(max (apply 'max org-show-positions)))
-	    (set-window-start (selected-window) min)
-	    (goto-char max)
-	    (or (pos-visible-in-window-p max)
-		(set-window-start (selected-window) max)))))
-      (select-window win))))
-
-(defun org-table-force-dataline ()
-  "Make sure the cursor is in a dataline in a table."
-  (unless (save-excursion
-	    (beginning-of-line 1)
-	    (looking-at org-table-dataline-regexp))
-    (let* ((re org-table-dataline-regexp)
-	   (p1 (save-excursion (re-search-forward re nil 'move)))
-	   (p2 (save-excursion (re-search-backward re nil 'move))))
-      (cond ((and p1 p2)
-	     (goto-char (if (< (abs (- p1 (point))) (abs (- p2 (point))))
-			    p1 p2)))
-	    ((or p1 p2) (goto-char (or p1 p2)))
-	    (t (user-error "No table dataline around here"))))))
-
-(defun org-table-fedit-line-up ()
-  "Move cursor one line up in the window showing the table."
-  (interactive)
-  (org-table-fedit-move 'previous-line))
-
-(defun org-table-fedit-line-down ()
-  "Move cursor one line down in the window showing the table."
-  (interactive)
-  (org-table-fedit-move 'next-line))
-
-(defun org-table-fedit-move (command)
-  "Move the cursor in the window showing the table.
-Use COMMAND to do the motion, repeat if necessary to end up in a data line."
-  (let ((org-table-allow-automatic-line-recalculation nil)
-	(pos org-pos) (win (selected-window)) p)
-    (select-window (get-buffer-window (marker-buffer org-pos)))
-    (setq p (point))
-    (call-interactively command)
-    (while (and (org-at-table-p)
-		(org-at-table-hline-p))
-      (call-interactively command))
-    (or (org-at-table-p) (goto-char p))
-    (move-marker pos (point))
-    (select-window win)))
-
-(defun org-table-fedit-scroll (N)
-  (interactive "p")
-  (let ((other-window-scroll-buffer (marker-buffer org-pos)))
-    (scroll-other-window N)))
-
-(defun org-table-fedit-scroll-down (N)
-  (interactive "p")
-  (org-table-fedit-scroll (- N)))
-
-(defvar org-table-rectangle-overlays nil)
-
-(defun org-table-add-rectangle-overlay (beg end &optional face)
-  "Add a new overlay."
-  (let ((ov (make-overlay beg end)))
-    (overlay-put ov 'face (or face 'secondary-selection))
-    (push ov org-table-rectangle-overlays)))
-
-(defun org-table-highlight-rectangle (&optional beg end face)
-  "Highlight rectangular region in a table.
-When buffer positions BEG and END are provided, use them to
-delimit the region to highlight.  Otherwise, refer to point.  Use
-FACE, when non-nil, for the highlight."
-  (let* ((beg (or beg (point)))
-	 (end (or end (point)))
-	 (b (min beg end))
-	 (e (max beg end))
-	 (start-coordinates
-	  (save-excursion
-	    (goto-char b)
-	    (cons (line-beginning-position) (org-table-current-column))))
-	 (end-coordinates
-	  (save-excursion
-	    (goto-char e)
-	    (cons (line-beginning-position) (org-table-current-column)))))
-    (when (boundp 'org-show-positions)
-      (setq org-show-positions (cons b (cons e org-show-positions))))
-    (goto-char (car start-coordinates))
-    (let ((column-start (min (cdr start-coordinates) (cdr end-coordinates)))
-	  (column-end (max (cdr start-coordinates) (cdr end-coordinates)))
-	  (last-row (car end-coordinates)))
-      (while (<= (point) last-row)
-	(when (looking-at org-table-dataline-regexp)
-	  (org-table-goto-column column-start)
-	  (skip-chars-backward "^|\n")
-	  (let ((p (point)))
-	    (org-table-goto-column column-end)
-	    (skip-chars-forward "^|\n")
-	    (org-table-add-rectangle-overlay p (point) face)))
-	(forward-line)))
-    (goto-char (car start-coordinates)))
-  (add-hook 'before-change-functions #'org-table-remove-rectangle-highlight))
-
-(defun org-table-remove-rectangle-highlight (&rest _ignore)
-  "Remove the rectangle overlays."
-  (unless org-inhibit-highlight-removal
-    (remove-hook 'before-change-functions 'org-table-remove-rectangle-highlight)
-    (mapc 'delete-overlay org-table-rectangle-overlays)
-    (setq org-table-rectangle-overlays nil)))
-
-(defvar-local org-table-coordinate-overlays nil
-  "Collects the coordinate grid overlays, so that they can be removed.")
-
-(defun org-table-overlay-coordinates ()
-  "Add overlays to the table at point, to show row/column coordinates."
-  (interactive)
-  (mapc 'delete-overlay org-table-coordinate-overlays)
-  (setq org-table-coordinate-overlays nil)
-  (save-excursion
-    (let ((id 0) (ih 0) hline eol s1 s2 str ic ov beg)
-      (goto-char (org-table-begin))
-      (while (org-at-table-p)
-	(setq eol (point-at-eol))
-	(setq ov (make-overlay (point-at-bol) (1+ (point-at-bol))))
-	(push ov org-table-coordinate-overlays)
-	(setq hline (looking-at org-table-hline-regexp))
-	(setq str (if hline (format "I*%-2d" (setq ih (1+ ih)))
-		    (format "%4d" (setq id (1+ id)))))
-	(org-overlay-before-string ov str 'org-special-keyword 'evaporate)
-	(when hline
-	  (setq ic 0)
-	  (while (re-search-forward "[+|]\\(-+\\)" eol t)
-	    (setq beg (1+ (match-beginning 0))
-		  ic (1+ ic)
-		  s1 (concat "$" (int-to-string ic))
-		  s2 (org-number-to-letters ic)
-		  str (if (eq org-table-use-standard-references t) s2 s1))
-	    (setq ov (make-overlay beg (+ beg (length str))))
-	    (push ov org-table-coordinate-overlays)
-	    (org-overlay-display ov str 'org-special-keyword 'evaporate)))
-	(beginning-of-line 2)))))
-
-;;;###autoload
-(defun org-table-toggle-coordinate-overlays ()
-  "Toggle the display of Row/Column numbers in tables."
-  (interactive)
-  (setq org-table-overlay-coordinates (not org-table-overlay-coordinates))
-  (message "Tables Row/Column numbers display turned %s"
-	   (if org-table-overlay-coordinates "on" "off"))
-  (if (and (org-at-table-p) org-table-overlay-coordinates)
-      (org-table-align))
-  (unless org-table-overlay-coordinates
-    (mapc 'delete-overlay org-table-coordinate-overlays)
-    (setq org-table-coordinate-overlays nil)))
-
-;;;###autoload
-(defun org-table-toggle-formula-debugger ()
-  "Toggle the formula debugger in tables."
-  (interactive)
-  (setq org-table-formula-debug (not org-table-formula-debug))
-  (message "Formula debugging has been turned %s"
-	   (if org-table-formula-debug "on" "off")))
-
-;;; The orgtbl minor mode
-
-;; Define a minor mode which can be used in other modes in order to
-;; integrate the Org table editor.
-
-;; This is really a hack, because the Org table editor uses several
-;; keys which normally belong to the major mode, for example the TAB
-;; and RET keys.  Here is how it works: The minor mode defines all the
-;; keys necessary to operate the table editor, but wraps the commands
-;; into a function which tests if the cursor is currently inside
-;; a table.  If that is the case, the table editor command is
-;; executed.  However, when any of those keys is used outside a table,
-;; the function uses `key-binding' to look up if the key has an
-;; associated command in another currently active keymap (minor modes,
-;; major mode, global), and executes that command.  There might be
-;; problems if any of the keys used by the table editor is otherwise
-;; used as a prefix key.
-
-;; Another challenge is that the key binding for TAB can be tab or \C-i,
-;; likewise the binding for RET can be return or \C-m.  Orgtbl-mode
-;; addresses this by checking explicitly for both bindings.
-
-;; The optimized version (see variable `orgtbl-optimized') takes over
-;; all keys which are bound to `self-insert-command' in the *global map*.
-;; Some modes bind other commands to simple characters, for example
-;; AUCTeX binds the double quote to `Tex-insert-quote'.  With orgtbl-mode
-;; active, this binding is ignored inside tables and replaced with a
-;; modified self-insert.
-
-
-(defvar orgtbl-mode-map (make-keymap)
-  "Keymap for `orgtbl-mode'.")
-
-(defvar org-old-auto-fill-inhibit-regexp nil
-  "Local variable used by `orgtbl-mode'.")
-
-(defconst orgtbl-line-start-regexp
-  "[ \t]*\\(|\\|#\\+\\(tblfm\\|orgtbl\\|tblname\\):\\)"
-  "Matches a line belonging to an orgtbl.")
-
-(defconst orgtbl-extra-font-lock-keywords
-  (list (list (concat "^" orgtbl-line-start-regexp ".*")
-	      0 (quote 'org-table) 'prepend))
-  "Extra `font-lock-keywords' to be added when `orgtbl-mode' is active.")
-
-;; Install it as a minor mode.
-(put 'orgtbl-mode :included t)
-(put 'orgtbl-mode :menu-tag "Org Table Mode")
-
-;;;###autoload
-(define-minor-mode orgtbl-mode
-  "The Org mode table editor as a minor mode for use in other modes."
-  :lighter " OrgTbl" :keymap orgtbl-mode-map
-  (org-load-modules-maybe)
-  (cond
-   ((derived-mode-p 'org-mode)
-    ;; Exit without error, in case some hook functions calls this by
-    ;; accident in Org mode.
-    (message "Orgtbl mode is not useful in Org mode, command ignored"))
-   (orgtbl-mode
-    (and (orgtbl-setup) (defun orgtbl-setup () nil)) ;; FIXME: Yuck!?!
-    ;; Make sure we are first in minor-mode-map-alist
-    (let ((c (assq 'orgtbl-mode minor-mode-map-alist)))
-      ;; FIXME: maybe it should use emulation-mode-map-alists?
-      (and c (setq minor-mode-map-alist
-                   (cons c (delq c minor-mode-map-alist)))))
-    (setq-local org-table-may-need-update t)
-    (add-hook 'before-change-functions 'org-before-change-function
-	      nil 'local)
-    (setq-local org-old-auto-fill-inhibit-regexp
-		auto-fill-inhibit-regexp)
-    (setq-local auto-fill-inhibit-regexp
-		(if auto-fill-inhibit-regexp
-		    (concat orgtbl-line-start-regexp "\\|"
-			    auto-fill-inhibit-regexp)
-		  orgtbl-line-start-regexp))
-    (add-to-invisibility-spec '(org-cwidth))
-    (when (fboundp 'font-lock-add-keywords)
-      (font-lock-add-keywords nil orgtbl-extra-font-lock-keywords)
-      (org-restart-font-lock))
-    (easy-menu-add orgtbl-mode-menu))
-   (t
-    (setq auto-fill-inhibit-regexp org-old-auto-fill-inhibit-regexp)
-    (org-table-cleanup-narrow-column-properties)
-    (org-remove-from-invisibility-spec '(org-cwidth))
-    (remove-hook 'before-change-functions 'org-before-change-function t)
-    (when (fboundp 'font-lock-remove-keywords)
-      (font-lock-remove-keywords nil orgtbl-extra-font-lock-keywords)
-      (org-restart-font-lock))
-    (easy-menu-remove orgtbl-mode-menu)
-    (force-mode-line-update 'all))))
-
-(defun org-table-cleanup-narrow-column-properties ()
-  "Remove all properties related to narrow-column invisibility."
-  (let ((s (point-min)))
-    (while (setq s (text-property-any s (point-max)
-				      'display org-narrow-column-arrow))
-      (remove-text-properties s (1+ s) '(display t)))
-    (setq s (point-min))
-    (while (setq s (text-property-any s (point-max) 'org-cwidth 1))
-      (remove-text-properties s (1+ s) '(org-cwidth t)))
-    (setq s (point-min))
-    (while (setq s (text-property-any s (point-max) 'invisible 'org-cwidth))
-      (remove-text-properties s (1+ s) '(invisible t)))))
-
-(defun orgtbl-make-binding (fun n &rest keys)
-  "Create a function for binding in the table minor mode.
-FUN is the command to call inside a table.  N is used to create a unique
-command name.  KEYS are keys that should be checked in for a command
-to execute outside of tables."
-  (eval
-   (list 'defun
-	 (intern (concat "orgtbl-hijacker-command-" (int-to-string n)))
-	 '(arg)
-	 (concat "In tables, run `" (symbol-name fun) "'.\n"
-		 "Outside of tables, run the binding of `"
-		 (mapconcat #'key-description keys "' or `")
-		 "'.")
-	 '(interactive "p")
-	 (list 'if
-	       '(org-at-table-p)
-	       (list 'call-interactively (list 'quote fun))
-	       (list 'let '(orgtbl-mode)
-		     (list 'call-interactively
-			   (append '(or)
-				   (mapcar (lambda (k)
-					     (list 'key-binding k))
-					   keys)
-				   '('orgtbl-error))))))))
-
-(defun orgtbl-error ()
-  "Error when there is no default binding for a table key."
-  (interactive)
-  (user-error "This key has no function outside tables"))
-
-(defun orgtbl-setup ()
-  "Setup orgtbl keymaps."
-  (let ((nfunc 0)
-	(bindings
-	 '(([(meta shift left)]  org-table-delete-column)
-	   ([(meta left)]	 org-table-move-column-left)
-	   ([(meta right)]       org-table-move-column-right)
-	   ([(meta shift right)] org-table-insert-column)
-	   ([(meta shift up)]    org-table-kill-row)
-	   ([(meta shift down)]  org-table-insert-row)
-	   ([(meta up)]		 org-table-move-row-up)
-	   ([(meta down)]	 org-table-move-row-down)
-	   ("\C-c\C-w"		 org-table-cut-region)
-	   ("\C-c\M-w"		 org-table-copy-region)
-	   ("\C-c\C-y"		 org-table-paste-rectangle)
-	   ("\C-c\C-w"           org-table-wrap-region)
-	   ("\C-c-"		 org-table-insert-hline)
-	   ("\C-c}"		 org-table-toggle-coordinate-overlays)
-	   ("\C-c{"		 org-table-toggle-formula-debugger)
-	   ("\C-m"		 org-table-next-row)
-	   ([(shift return)]	 org-table-copy-down)
-	   ("\C-c?"		 org-table-field-info)
-	   ("\C-c "		 org-table-blank-field)
-	   ("\C-c+"		 org-table-sum)
-	   ("\C-c="		 org-table-eval-formula)
-	   ("\C-c'"		 org-table-edit-formulas)
-	   ("\C-c`"		 org-table-edit-field)
-	   ("\C-c*"		 org-table-recalculate)
-	   ("\C-c^"		 org-table-sort-lines)
-	   ("\M-a"		 org-table-beginning-of-field)
-	   ("\M-e"		 org-table-end-of-field)
-	   ([(control ?#)]       org-table-rotate-recalc-marks)))
-	elt key fun cmd)
-    (while (setq elt (pop bindings))
-      (setq nfunc (1+ nfunc))
-      (setq key (org-key (car elt))
-	    fun (nth 1 elt)
-	    cmd (orgtbl-make-binding fun nfunc key))
-      (org-defkey orgtbl-mode-map key cmd))
-
-    ;; Special treatment needed for TAB, RET and DEL
-    (org-defkey orgtbl-mode-map [(return)]
-		(orgtbl-make-binding 'orgtbl-ret 100 [(return)] "\C-m"))
-    (org-defkey orgtbl-mode-map "\C-m"
-		(orgtbl-make-binding 'orgtbl-ret 101 "\C-m" [(return)]))
-    (org-defkey orgtbl-mode-map [(tab)]
-		(orgtbl-make-binding 'orgtbl-tab 102 [(tab)] "\C-i"))
-    (org-defkey orgtbl-mode-map "\C-i"
-		(orgtbl-make-binding 'orgtbl-tab 103 "\C-i" [(tab)]))
-    (org-defkey orgtbl-mode-map [(shift tab)]
-		(orgtbl-make-binding 'org-table-previous-field 104
-				     [(shift tab)] [(tab)] "\C-i"))
-    (org-defkey orgtbl-mode-map [backspace]
-		(orgtbl-make-binding 'org-delete-backward-char 109
-				     [backspace] (kbd "DEL")))
-
-    (org-defkey orgtbl-mode-map [S-iso-lefttab]
-		(orgtbl-make-binding 'org-table-previous-field 107
-				     [S-iso-lefttab] [backtab] [(shift tab)]
-				     [(tab)] "\C-i"))
-
-    (org-defkey orgtbl-mode-map [backtab]
-		(orgtbl-make-binding 'org-table-previous-field 108
-				     [backtab] [S-iso-lefttab] [(shift tab)]
-				     [(tab)] "\C-i"))
-
-    (org-defkey orgtbl-mode-map "\M-\C-m"
-		(orgtbl-make-binding 'org-table-wrap-region 105
-				     "\M-\C-m" [(meta return)]))
-    (org-defkey orgtbl-mode-map [(meta return)]
-		(orgtbl-make-binding 'org-table-wrap-region 106
-				     [(meta return)] "\M-\C-m"))
-
-    (org-defkey orgtbl-mode-map "\C-c\C-c" 'orgtbl-ctrl-c-ctrl-c)
-    (org-defkey orgtbl-mode-map "\C-c|" 'orgtbl-create-or-convert-from-region)
-
-    (when orgtbl-optimized
-      ;; If the user wants maximum table support, we need to hijack
-      ;; some standard editing functions
-      (org-remap orgtbl-mode-map
-		 'self-insert-command 'orgtbl-self-insert-command
-		 'delete-char 'org-delete-char
-		 'delete-backward-char 'org-delete-backward-char)
-      (org-defkey orgtbl-mode-map "|" 'org-force-self-insert))
-    (easy-menu-define orgtbl-mode-menu orgtbl-mode-map "OrgTbl menu"
-      '("OrgTbl"
-	["Create or convert" org-table-create-or-convert-from-region
-	 :active (not (org-at-table-p)) :keys "C-c |" ]
-	"--"
-	["Align" org-ctrl-c-ctrl-c :active (org-at-table-p) :keys "C-c C-c"]
-	["Next Field" org-cycle :active (org-at-table-p) :keys "TAB"]
-	["Previous Field" org-shifttab :active (org-at-table-p) :keys "S-TAB"]
-	["Next Row" org-return :active (org-at-table-p) :keys "RET"]
-	"--"
-	["Blank Field" org-table-blank-field :active (org-at-table-p) :keys "C-c SPC"]
-	["Edit Field" org-table-edit-field :active (org-at-table-p) :keys "C-c ` "]
-	["Copy Field from Above"
-	 org-table-copy-down :active (org-at-table-p) :keys "S-RET"]
-	"--"
-	("Column"
-	 ["Move Column Left" org-metaleft :active (org-at-table-p) :keys "M-<left>"]
-	 ["Move Column Right" org-metaright :active (org-at-table-p) :keys "M-<right>"]
-	 ["Delete Column" org-shiftmetaleft :active (org-at-table-p) :keys "M-S-<left>"]
-	 ["Insert Column" org-shiftmetaright :active (org-at-table-p) :keys "M-S-<right>"])
-	("Row"
-	 ["Move Row Up" org-metaup :active (org-at-table-p) :keys "M-<up>"]
-	 ["Move Row Down" org-metadown :active (org-at-table-p) :keys "M-<down>"]
-	 ["Delete Row" org-shiftmetaup :active (org-at-table-p) :keys "M-S-<up>"]
-	 ["Insert Row" org-shiftmetadown :active (org-at-table-p) :keys "M-S-<down>"]
-	 ["Sort lines in region" org-table-sort-lines :active (org-at-table-p) :keys "C-c ^"]
-	 "--"
-	 ["Insert Hline" org-table-insert-hline :active (org-at-table-p) :keys "C-c -"])
-	("Rectangle"
-	 ["Copy Rectangle" org-copy-special :active (org-at-table-p)]
-	 ["Cut Rectangle" org-cut-special :active (org-at-table-p)]
-	 ["Paste Rectangle" org-paste-special :active (org-at-table-p)]
-	 ["Fill Rectangle" org-table-wrap-region :active (org-at-table-p)])
-	"--"
-	("Radio tables"
-	 ["Insert table template" orgtbl-insert-radio-table
-	  (cl-assoc-if #'derived-mode-p orgtbl-radio-table-templates)]
-	 ["Comment/uncomment table" orgtbl-toggle-comment t])
-	"--"
-	["Set Column Formula" org-table-eval-formula :active (org-at-table-p) :keys "C-c ="]
-	["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
-	["Edit Formulas" org-table-edit-formulas :active (org-at-table-p) :keys "C-c '"]
-	["Recalculate line" org-table-recalculate :active (org-at-table-p) :keys "C-c *"]
-	["Recalculate all" (org-table-recalculate '(4)) :active (org-at-table-p) :keys "C-u C-c *"]
-	["Iterate all" (org-table-recalculate '(16)) :active (org-at-table-p) :keys "C-u C-u C-c *"]
-	["Toggle Recalculate Mark" org-table-rotate-recalc-marks :active (org-at-table-p) :keys "C-c #"]
-	["Sum Column/Rectangle" org-table-sum
-	 :active (or (org-at-table-p) (org-region-active-p)) :keys "C-c +"]
-	["Which Column?" org-table-current-column :active (org-at-table-p) :keys "C-c ?"]
-	["Debug Formulas"
-	 org-table-toggle-formula-debugger :active (org-at-table-p)
-	 :keys "C-c {"
-	 :style toggle :selected org-table-formula-debug]
-	["Show Col/Row Numbers"
-	 org-table-toggle-coordinate-overlays :active (org-at-table-p)
-	 :keys "C-c }"
-	 :style toggle :selected org-table-overlay-coordinates]
-	"--"
-	("Plot"
-	 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
-	 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
-    t))
-
-(defun orgtbl-ctrl-c-ctrl-c (arg)
-  "If the cursor is inside a table, realign the table.
-If it is a table to be sent away to a receiver, do it.
-With prefix arg, also recompute table."
-  (interactive "P")
-  (let ((case-fold-search t) (pos (point)) action)
-    (save-excursion
-      (beginning-of-line 1)
-      (setq action (cond
-		    ((looking-at "[ \t]*#\\+ORGTBL:.*\n[ \t]*|") (match-end 0))
-		    ((looking-at "[ \t]*|") pos)
-		    ((looking-at "[ \t]*#\\+tblfm:") 'recalc))))
-    (cond
-     ((integerp action)
-      (goto-char action)
-      (org-table-maybe-eval-formula)
-      (if arg
-	  (call-interactively 'org-table-recalculate)
-	(org-table-maybe-recalculate-line))
-      (call-interactively 'org-table-align)
-      (when (orgtbl-send-table 'maybe)
-	(run-hooks 'orgtbl-after-send-table-hook)))
-     ((eq action 'recalc)
-      (save-excursion
-	(beginning-of-line 1)
-	(skip-chars-backward " \r\n\t")
-	(if (org-at-table-p)
-	    (org-call-with-arg 'org-table-recalculate t))))
-     (t (let (orgtbl-mode)
-	  (call-interactively (key-binding "\C-c\C-c")))))))
-
-(defun orgtbl-create-or-convert-from-region (_arg)
-  "Create table or convert region to table, if no conflicting binding.
-This installs the table binding `C-c |', but only if there is no
-conflicting binding to this key outside orgtbl-mode."
-  (interactive "P")
-  (let* (orgtbl-mode (cmd (key-binding "\C-c|")))
-    (if cmd
-	(call-interactively cmd)
-      (call-interactively 'org-table-create-or-convert-from-region))))
-
-(defun orgtbl-tab (arg)
-  "Justification and field motion for `orgtbl-mode'."
-  (interactive "P")
-  (if arg (org-table-edit-field t)
-    (org-table-justify-field-maybe)
-    (org-table-next-field)))
-
-(defun orgtbl-ret ()
-  "Justification and field motion for `orgtbl-mode'."
-  (interactive)
-  (if (bobp)
-      (newline)
-    (org-table-justify-field-maybe)
-    (org-table-next-row)))
-
-(defun orgtbl-self-insert-command (N)
-  "Like `self-insert-command', use overwrite-mode for whitespace in tables.
-If the cursor is in a table looking at whitespace, the whitespace is
-overwritten, and the table is not marked as requiring realignment."
-  (interactive "p")
-  (if (and (org-at-table-p)
-	   (or
-	    (and org-table-auto-blank-field
-		 (member last-command
-			 '(orgtbl-hijacker-command-100
-			   orgtbl-hijacker-command-101
-			   orgtbl-hijacker-command-102
-			   orgtbl-hijacker-command-103
-			   orgtbl-hijacker-command-104
-			   orgtbl-hijacker-command-105
-			   yas/expand))
-		 (org-table-blank-field))
-	    t)
-	   (eq N 1)
-	   (looking-at "[^|\n]* \\( \\)|"))
-      (let (org-table-may-need-update)
-	(delete-region (match-beginning 1) (match-end 1))
-	(self-insert-command N))
-    (setq org-table-may-need-update t)
-    (let* (orgtbl-mode
-	   a
-	   (cmd (or (key-binding
-		     (or (and (listp function-key-map)
-			      (setq a (assoc last-input-event function-key-map))
-			      (cdr a))
-			 (vector last-input-event)))
-		    'self-insert-command)))
-      (call-interactively cmd)
-      (if (and org-self-insert-cluster-for-undo
-	       (eq cmd 'self-insert-command))
-	  (if (not (eq last-command 'orgtbl-self-insert-command))
-	      (setq org-self-insert-command-undo-counter 1)
-	    (if (>= org-self-insert-command-undo-counter 20)
-		(setq org-self-insert-command-undo-counter 1)
-	      (and (> org-self-insert-command-undo-counter 0)
-		   buffer-undo-list
-		   (not (cadr buffer-undo-list)) ; remove nil entry
-		   (setcdr buffer-undo-list (cddr buffer-undo-list)))
-	      (setq org-self-insert-command-undo-counter
-		    (1+ org-self-insert-command-undo-counter))))))))
-
-;;;###autoload
-(defvar orgtbl-exp-regexp "^\\([-+]?[0-9][0-9.]*\\)[eE]\\([-+]?[0-9]+\\)$"
-  "Regular expression matching exponentials as produced by calc.")
-
-(defun orgtbl-gather-send-defs ()
-  "Gather a plist of :name, :transform, :params for each destination before
-a radio table."
-  (save-excursion
-    (goto-char (org-table-begin))
-    (let (rtn)
-      (beginning-of-line 0)
-      (while (looking-at "[ \t]*#\\+ORGTBL[: \t][ \t]*SEND[ \t]+\\([^ \t\r\n]+\\)[ \t]+\\([^ \t\r\n]+\\)\\([ \t]+.*\\)?")
-	(let ((name (org-no-properties (match-string 1)))
-	      (transform (intern (match-string 2)))
-	      (params (if (match-end 3)
-			  (read (concat "(" (match-string 3) ")")))))
-	  (push (list :name name :transform transform :params params)
-		rtn)
-	  (beginning-of-line 0)))
-      rtn)))
-
-(defun orgtbl-send-replace-tbl (name text)
-  "Find and replace table NAME with TEXT."
-  (save-excursion
-    (goto-char (point-min))
-    (let* ((location-flag nil)
-	   (name (regexp-quote name))
-	   (begin-re (format "BEGIN +RECEIVE +ORGTBL +%s\\([ \t]\\|$\\)" name))
-	   (end-re (format "END +RECEIVE +ORGTBL +%s\\([ \t]\\|$\\)" name)))
-      (while (re-search-forward begin-re nil t)
-	(unless location-flag (setq location-flag t))
-	(let ((beg (line-beginning-position 2)))
-	  (unless (re-search-forward end-re nil t)
-	    (user-error "Cannot find end of receiver location at %d" beg))
-	  (beginning-of-line)
-	  (delete-region beg (point))
-	  (insert text "\n")))
-      (unless location-flag
-	(user-error "No valid receiver location found in the buffer")))))
-
-;;;###autoload
-(defun org-table-to-lisp (&optional txt)
-  "Convert the table at point to a Lisp structure.
-The structure will be a list.  Each item is either the symbol `hline'
-for a horizontal separator line, or a list of field values as strings.
-The table is taken from the parameter TXT, or from the buffer at point."
-  (unless (or txt (org-at-table-p)) (user-error "No table at point"))
-  (let ((txt (or txt
-		 (buffer-substring-no-properties (org-table-begin)
-						 (org-table-end)))))
-    (mapcar (lambda (x)
-	      (if (string-match org-table-hline-regexp x) 'hline
-		(org-split-string (org-trim x) "\\s-*|\\s-*")))
-	    (org-split-string txt "[ \t]*\n[ \t]*"))))
-
-(defun orgtbl-send-table (&optional maybe)
-  "Send a transformed version of table at point to the receiver position.
-With argument MAYBE, fail quietly if no transformation is defined
-for this table."
-  (interactive)
-  (catch 'exit
-    (unless (org-at-table-p) (user-error "Not at a table"))
-    ;; when non-interactive, we assume align has just happened.
-    (when (called-interactively-p 'any) (org-table-align))
-    (let ((dests (orgtbl-gather-send-defs))
-	  (table (org-table-to-lisp
-		  (buffer-substring-no-properties (org-table-begin)
-						  (org-table-end))))
-	  (ntbl 0))
-      (unless dests
-	(if maybe (throw 'exit nil)
-	  (user-error "Don't know how to transform this table")))
-      (dolist (dest dests)
-	(let ((name (plist-get dest :name))
-	      (transform (plist-get dest :transform))
-	      (params (plist-get dest :params)))
-	  (unless (fboundp transform)
-	    (user-error "No such transformation function %s" transform))
-	  (orgtbl-send-replace-tbl name (funcall transform table params)))
-	(cl-incf ntbl))
-      (message "Table converted and installed at %d receiver location%s"
-	       ntbl (if (> ntbl 1) "s" ""))
-      (and (> ntbl 0) ntbl))))
-
-(defun org-remove-by-index (list indices &optional i0)
-  "Remove the elements in LIST with indices in INDICES.
-First element has index 0, or I0 if given."
-  (if (not indices)
-      list
-    (if (integerp indices) (setq indices (list indices)))
-    (setq i0 (1- (or i0 0)))
-    (delq :rm (mapcar (lambda (x)
-			(setq i0 (1+ i0))
-			(if (memq i0 indices) :rm x))
-		      list))))
-
-(defun orgtbl-toggle-comment ()
-  "Comment or uncomment the orgtbl at point."
-  (interactive)
-  (let* ((case-fold-search t)
-	 (re1 (concat "^" (regexp-quote comment-start) orgtbl-line-start-regexp))
-	 (re2 (concat "^" orgtbl-line-start-regexp))
-	 (commented (save-excursion (beginning-of-line 1)
-				    (cond ((looking-at re1) t)
-					  ((looking-at re2) nil)
-					  (t (user-error "Not at an org table")))))
-	 (re (if commented re1 re2))
-	 beg end)
-    (save-excursion
-      (beginning-of-line 1)
-      (while (looking-at re) (beginning-of-line 0))
-      (beginning-of-line 2)
-      (setq beg (point))
-      (while (looking-at re) (beginning-of-line 2))
-      (setq end (point)))
-    (comment-region beg end (if commented '(4) nil))))
-
-(defun orgtbl-insert-radio-table ()
-  "Insert a radio table template appropriate for this major mode."
-  (interactive)
-  (let* ((e (cl-assoc-if #'derived-mode-p orgtbl-radio-table-templates))
-	 (txt (nth 1 e))
-	 name pos)
-    (unless e (user-error "No radio table setup defined for %s" major-mode))
-    (setq name (read-string "Table name: "))
-    (while (string-match "%n" txt)
-      (setq txt (replace-match name t t txt)))
-    (or (bolp) (insert "\n"))
-    (setq pos (point))
-    (insert txt)
-    (goto-char pos)))
-
-;;;###autoload
-(defun orgtbl-to-generic (table params)
-  "Convert the orgtbl-mode TABLE to some other format.
-
-This generic routine can be used for many standard cases.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that
-line.  PARAMS is a property list of parameters that can
-influence the conversion.
-
-Valid parameters are:
-
-:backend, :raw
-
-  Export back-end used as a basis to transcode elements of the
-  table, when no specific parameter applies to it.  It is also
-  used to translate cells contents.  You can prevent this by
-  setting :raw property to a non-nil value.
-
-:splice
-
-  When non-nil, only convert rows, not the table itself.  This is
-  equivalent to setting to the empty string both :tstart
-  and :tend, which see.
-
-:skip
-
-  When set to an integer N, skip the first N lines of the table.
-  Horizontal separation lines do count for this parameter!
-
-:skipcols
-
-  List of columns that should be skipped.  If the table has
-  a column with calculation marks, that column is automatically
-  discarded beforehand.
-
-:hline
-
-  String to be inserted on horizontal separation lines.  May be
-  nil to ignore these lines altogether.
-
-:sep
-
-  Separator between two fields, as a string.
-
-Each in the following group may be either a string or a function
-of no arguments returning a string:
-
-:tstart, :tend
-
-  Strings to start and end the table.  Ignored when :splice is t.
-
-:lstart, :lend
-
-  Strings to start and end a new table line.
-
-:llstart, :llend
-
-  Strings to start and end the last table line.  Default,
-  respectively, to :lstart and :lend.
-
-Each in the following group may be a string or a function of one
-argument (either the cells in the current row, as a list of
-strings, or the current cell) returning a string:
-
-:lfmt
-
-  Format string for an entire row, with enough %s to capture all
-  fields.  When non-nil, :lstart, :lend, and :sep are ignored.
-
-:llfmt
-
-  Format for the entire last line, defaults to :lfmt.
-
-:fmt
-
-  A format to be used to wrap the field, should contain %s for
-  the original field value.  For example, to wrap everything in
-  dollars, you could use :fmt \"$%s$\".  This may also be
-  a property list with column numbers and format strings, or
-  functions, e.g.,
-
-    (:fmt (2 \"$%s$\" 4 (lambda (c) (format \"$%s$\" c))))
-
-:hlstart :hllstart :hlend :hllend :hsep :hlfmt :hllfmt :hfmt
-
- Same as above, specific for the header lines in the table.
- All lines before the first hline are treated as header.  If
- any of these is not present, the data line value is used.
-
-This may be either a string or a function of two arguments:
-
-:efmt
-
-  Use this format to print numbers with exponential.  The format
-  should have %s twice for inserting mantissa and exponent, for
-  example \"%s\\\\times10^{%s}\".  This may also be a property
-  list with column numbers and format strings or functions.
-  :fmt will still be applied after :efmt."
-  ;; Make sure `org-export-create-backend' is available.
-  (require 'ox)
-  (let* ((backend (plist-get params :backend))
-	 (custom-backend
-	  ;; Build a custom back-end according to PARAMS.  Before
-	  ;; defining a translator, check if there is anything to do.
-	  ;; When there isn't, let BACKEND handle the element.
-	  (org-export-create-backend
-	   :parent (or backend 'org)
-	   :transcoders
-	   `((table . ,(org-table--to-generic-table params))
-	     (table-row . ,(org-table--to-generic-row params))
-	     (table-cell . ,(org-table--to-generic-cell params))
-	     ;; Macros are not going to be expanded.  However, no
-	     ;; regular back-end has a transcoder for them.  We
-	     ;; provide one so they are not ignored, but displayed
-	     ;; as-is instead.
-	     (macro . (lambda (m c i) (org-element-macro-interpreter m nil))))))
-	 data info)
-    ;; Store TABLE as Org syntax in DATA.  Tolerate non-string cells.
-    ;; Initialize communication channel in INFO.
-    (with-temp-buffer
-      (let ((org-inhibit-startup t)) (org-mode))
-      (let ((standard-output (current-buffer))
-	    (org-element-use-cache nil))
-	(dolist (e table)
-	  (cond ((eq e 'hline) (princ "|--\n"))
-		((consp e)
-		 (princ "| ") (dolist (c e) (princ c) (princ " |"))
-		 (princ "\n")))))
-      ;; Add back-end specific filters, but not user-defined ones.  In
-      ;; particular, make sure to call parse-tree filters on the
-      ;; table.
-      (setq info
-	    (let ((org-export-filters-alist nil))
-	      (org-export-install-filters
-	       (org-combine-plists
-		(org-export-get-environment backend nil params)
-		`(:back-end ,(org-export-get-backend backend))))))
-      (setq data
-	    (org-export-filter-apply-functions
-	     (plist-get info :filter-parse-tree)
-	     (org-element-map (org-element-parse-buffer) 'table
-	       #'identity nil t)
-	     info)))
-    (when (and backend (symbolp backend) (not (org-export-get-backend backend)))
-      (user-error "Unknown :backend value"))
-    (when (or (not backend) (plist-get info :raw)) (require 'ox-org))
-    ;; Handle :skip parameter.
-    (let ((skip (plist-get info :skip)))
-      (when skip
-	(unless (wholenump skip) (user-error "Wrong :skip value"))
-	(let ((n 0))
-	  (org-element-map data 'table-row
-	    (lambda (row)
-	      (if (>= n skip) t
-		(org-element-extract-element row)
-		(cl-incf n)
-		nil))
-	    nil t))))
-    ;; Handle :skipcols parameter.
-    (let ((skipcols (plist-get info :skipcols)))
-      (when skipcols
-	(unless (consp skipcols) (user-error "Wrong :skipcols value"))
-	(org-element-map data 'table
-	  (lambda (table)
-	    (let ((specialp (org-export-table-has-special-column-p table)))
-	      (dolist (row (org-element-contents table))
-		(when (eq (org-element-property :type row) 'standard)
-		  (let ((c 1))
-		    (dolist (cell (nthcdr (if specialp 1 0)
-					  (org-element-contents row)))
-		      (when (memq c skipcols)
-			(org-element-extract-element cell))
-		      (cl-incf c))))))))))
-    ;; Since we are going to export using a low-level mechanism,
-    ;; ignore special column and special rows manually.
-    (let ((special? (org-export-table-has-special-column-p data))
-	  ignore)
-      (org-element-map data (if special? '(table-cell table-row) 'table-row)
-	(lambda (datum)
-	  (when (if (eq (org-element-type datum) 'table-row)
-		    (org-export-table-row-is-special-p datum nil)
-		  (org-export-first-sibling-p datum nil))
-	    (push datum ignore))))
-      (setq info (plist-put info :ignore-list ignore)))
-    ;; We use a low-level mechanism to export DATA so as to skip all
-    ;; usual pre-processing and post-processing, i.e., hooks, Babel
-    ;; code evaluation, include keywords and macro expansion.  Only
-    ;; back-end specific filters are retained.
-    (let ((output (org-export-data-with-backend data custom-backend info)))
-      ;; Remove final newline.
-      (if (org-string-nw-p output) (substring-no-properties output 0 -1) ""))))
-
-(defun org-table--generic-apply (value name &optional with-cons &rest args)
-  (cond ((null value) nil)
-        ((functionp value) `(funcall ',value ,@args))
-        ((stringp value)
-	 (cond ((consp (car args)) `(apply #'format ,value ,@args))
-	       (args `(format ,value ,@args))
-	       (t value)))
-	((and with-cons (consp value))
-	 `(let ((val (cadr (memq column ',value))))
-	    (cond ((null val) contents)
-		  ((stringp val) (format val ,@args))
-		  ((functionp val) (funcall val ,@args))
-		  (t (user-error "Wrong %s value" ,name)))))
-        (t (user-error "Wrong %s value" name))))
-
-(defun org-table--to-generic-table (params)
-  "Return custom table transcoder according to PARAMS.
-PARAMS is a plist.  See `orgtbl-to-generic' for more
-information."
-  (let ((backend (plist-get params :backend))
-	(splice (plist-get params :splice))
-	(tstart (plist-get params :tstart))
-	(tend (plist-get params :tend)))
-    `(lambda (table contents info)
-       (concat
-	,(and tstart (not splice)
-	      `(concat ,(org-table--generic-apply tstart ":tstart") "\n"))
-	,(if (or (not backend) tstart tend splice) 'contents
-	   `(org-export-with-backend ',backend table contents info))
-	,(org-table--generic-apply (and (not splice) tend) ":tend")))))
-
-(defun org-table--to-generic-row (params)
-  "Return custom table row transcoder according to PARAMS.
-PARAMS is a plist.  See `orgtbl-to-generic' for more
-information."
-  (let* ((backend (plist-get params :backend))
-	 (lstart (plist-get params :lstart))
-	 (llstart (plist-get params :llstart))
-	 (hlstart (plist-get params :hlstart))
-	 (hllstart (plist-get params :hllstart))
-	 (lend (plist-get params :lend))
-	 (llend (plist-get params :llend))
-	 (hlend (plist-get params :hlend))
-	 (hllend (plist-get params :hllend))
-	 (lfmt (plist-get params :lfmt))
-	 (llfmt (plist-get params :llfmt))
-	 (hlfmt (plist-get params :hlfmt))
-	 (hllfmt (plist-get params :hllfmt)))
-    `(lambda (row contents info)
-       (if (eq (org-element-property :type row) 'rule)
-	   ,(cond
-	     ((plist-member params :hline)
-	      (org-table--generic-apply (plist-get params :hline) ":hline"))
-	     (backend `(org-export-with-backend ',backend row nil info)))
-	 (let ((headerp ,(and (or hlfmt hlstart hlend)
-			      '(org-export-table-row-in-header-p row info)))
-	       (last-header-p
-		,(and (or hllfmt hllstart hllend)
-		      '(org-export-table-row-ends-header-p row info)))
-	       (lastp (not (org-export-get-next-element row info))))
-	   (when contents
-	     ;; Check if we can apply `:lfmt', `:llfmt', `:hlfmt', or
-	     ;; `:hllfmt' to CONTENTS.  Otherwise, fallback on
-	     ;; `:lstart', `:lend' and their relatives.
-	     ,(let ((cells
-		     '(org-element-map row 'table-cell
-			(lambda (cell)
-			  ;; Export all cells, without separators.
-			  ;;
-			  ;; Use `org-export-data-with-backend'
-			  ;; instead of `org-export-data' to eschew
-			  ;; cached values, which
-			  ;; ignore :orgtbl-ignore-sep parameter.
-			  (org-export-data-with-backend
-			   cell
-			   (plist-get info :back-end)
-			   (org-combine-plists info '(:orgtbl-ignore-sep t))))
-			info)))
-		`(cond
-		  ,(and hllfmt
-			`(last-header-p ,(org-table--generic-apply
-					  hllfmt ":hllfmt" nil cells)))
-		  ,(and hlfmt
-			`(headerp ,(org-table--generic-apply
-				    hlfmt ":hlfmt" nil cells)))
-		  ,(and llfmt
-			`(lastp ,(org-table--generic-apply
-				  llfmt ":llfmt" nil cells)))
-		  (t
-		   ,(if lfmt (org-table--generic-apply lfmt ":lfmt" nil cells)
-		      `(concat
-			(cond
-			 ,(and
-			   (or hllstart hllend)
-			   `(last-header-p
-			     (concat
-			      ,(org-table--generic-apply hllstart ":hllstart")
-			      contents
-			      ,(org-table--generic-apply hllend ":hllend"))))
-			 ,(and
-			   (or hlstart hlend)
-			   `(headerp
-			     (concat
-			      ,(org-table--generic-apply hlstart ":hlstart")
-			      contents
-			      ,(org-table--generic-apply hlend ":hlend"))))
-			 ,(and
-			   (or llstart llend)
-			   `(lastp
-			     (concat
-			      ,(org-table--generic-apply llstart ":llstart")
-			      contents
-			      ,(org-table--generic-apply llend ":llend"))))
-			 (t
-			  ,(cond
-			    ((or lstart lend)
-			     `(concat
-			       ,(org-table--generic-apply lstart ":lstart")
-			       contents
-			       ,(org-table--generic-apply lend ":lend")))
-			    (backend
-			     `(org-export-with-backend
-			       ',backend row contents info))
-			    (t 'contents)))))))))))))))
-
-(defun org-table--to-generic-cell (params)
-  "Return custom table cell transcoder according to PARAMS.
-PARAMS is a plist.  See `orgtbl-to-generic' for more
-information."
-  (let* ((backend (plist-get params :backend))
-	 (efmt (plist-get params :efmt))
-	 (fmt (plist-get params :fmt))
-	 (hfmt (plist-get params :hfmt))
-	 (sep (plist-get params :sep))
-	 (hsep (plist-get params :hsep)))
-    `(lambda (cell contents info)
-       ;; Make sure that contents are exported as Org data when :raw
-       ;; parameter is non-nil.
-       ,(when (and backend (plist-get params :raw))
-	  `(setq contents
-		 ;; Since we don't know what are the pseudo object
-		 ;; types defined in backend, we cannot pass them to
-		 ;; `org-element-interpret-data'.  As a consequence,
-		 ;; they will be treated as pseudo elements, and will
-		 ;; have newlines appended instead of spaces.
-		 ;; Therefore, we must make sure :post-blank value is
-		 ;; really turned into spaces.
-		 (replace-regexp-in-string
-		  "\n" " "
-		  (org-trim
-		   (org-element-interpret-data
-		    (org-element-contents cell))))))
-
-       (let ((headerp ,(and (or hfmt hsep)
-			    '(org-export-table-row-in-header-p
-			      (org-export-get-parent-element cell) info)))
-	     (column
-	      ;; Call costly `org-export-table-cell-address' only if
-	      ;; absolutely necessary, i.e., if one
-	      ;; of :fmt :efmt :hfmt has a "plist type" value.
-	      ,(and (cl-some (lambda (v) (integerp (car-safe v)))
-			     (list efmt hfmt fmt))
-		    '(1+ (cdr (org-export-table-cell-address cell info))))))
-	 (when contents
-	   ;; Check if we can apply `:efmt' on CONTENTS.
-	   ,(when efmt
-	      `(when (string-match orgtbl-exp-regexp contents)
-		 (let ((mantissa (match-string 1 contents))
-		       (exponent (match-string 2 contents)))
-		   (setq contents ,(org-table--generic-apply
-				    efmt ":efmt" t 'mantissa 'exponent)))))
-	   ;; Check if we can apply FMT (or HFMT) on CONTENTS.
-	   (cond
-	    ,(and hfmt `(headerp (setq contents ,(org-table--generic-apply
-						  hfmt ":hfmt" t 'contents))))
-	    ,(and fmt `(t (setq contents ,(org-table--generic-apply
-					   fmt ":fmt" t 'contents))))))
-	 ;; If a separator is provided, use it instead of BACKEND's.
-	 ;; Separators are ignored when LFMT (or equivalent) is
-	 ;; provided.
-	 ,(cond
-	   ((or hsep sep)
-	    `(if (or ,(and (not sep) '(not headerp))
-		     (plist-get info :orgtbl-ignore-sep)
-		     (not (org-export-get-next-element cell info)))
-		 ,(if (not backend) 'contents
-		    `(org-export-with-backend ',backend cell contents info))
-	       (concat contents
-		       ,(if (and sep hsep) `(if headerp ,hsep ,sep)
-			  (or hsep sep)))))
-	   (backend `(org-export-with-backend ',backend cell contents info))
-	   (t 'contents))))))
-
-;;;###autoload
-(defun orgtbl-to-tsv (table params)
-  "Convert the orgtbl-mode table to TAB separated material."
-  (orgtbl-to-generic table (org-combine-plists '(:sep "\t") params)))
-
-;;;###autoload
-(defun orgtbl-to-csv (table params)
-  "Convert the orgtbl-mode table to CSV material.
-This does take care of the proper quoting of fields with comma or quotes."
-  (orgtbl-to-generic table
-		     (org-combine-plists '(:sep "," :fmt org-quote-csv-field)
-					 params)))
-
-;;;###autoload
-(defun orgtbl-to-latex (table params)
-  "Convert the orgtbl-mode TABLE to LaTeX.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.  It is also possible to use the following ones:
-
-:booktabs
-
-  When non-nil, use formal \"booktabs\" style.
-
-:environment
-
-  Specify environment to use, as a string.  If you use
-  \"longtable\", you may also want to specify :language property,
-  as a string, to get proper continuation strings."
-  (require 'ox-latex)
-  (orgtbl-to-generic
-   table
-   (org-combine-plists
-    ;; Provide sane default values.
-    (list :backend 'latex
-	  :latex-default-table-mode 'table
-	  :latex-tables-centered nil
-	  :latex-tables-booktabs (plist-get params :booktabs)
-	  :latex-table-scientific-notation nil
-	  :latex-default-table-environment
-	  (or (plist-get params :environment) "tabular"))
-    params)))
-
-;;;###autoload
-(defun orgtbl-to-html (table params)
-  "Convert the orgtbl-mode TABLE to HTML.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.  It is also possible to use the following one:
-
-:attributes
-
-  Attributes and values, as a plist, which will be used in
-  <table> tag."
-  (require 'ox-html)
-  (orgtbl-to-generic
-   table
-   (org-combine-plists
-    ;; Provide sane default values.
-    (list :backend 'html
-	  :html-table-data-tags '("<td%s>" . "</td>")
-	  :html-table-use-header-tags-for-first-column nil
-	  :html-table-align-individual-fields t
-	  :html-table-row-tags '("<tr>" . "</tr>")
-	  :html-table-attributes
-	  (if (plist-member params :attributes)
-	      (plist-get params :attributes)
-	    '(:border "2" :cellspacing "0" :cellpadding "6" :rules "groups"
-		      :frame "hsides")))
-    params)))
-
-;;;###autoload
-(defun orgtbl-to-texinfo (table params)
-  "Convert the orgtbl-mode TABLE to Texinfo.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.  It is also possible to use the following one:
-
-:columns
-
-  Column widths, as a string.  When providing column fractions,
-  \"@columnfractions\" command can be omitted."
-  (require 'ox-texinfo)
-  (let ((output
-	 (orgtbl-to-generic
-	  table
-	  (org-combine-plists
-	   (list :backend 'texinfo
-		 :texinfo-tables-verbatim nil
-		 :texinfo-table-scientific-notation nil)
-	   params)))
-	(columns (let ((w (plist-get params :columns)))
-		   (cond ((not w) nil)
-			 ((string-match-p "{\\|@columnfractions " w) w)
-			 (t (concat "@columnfractions " w))))))
-    (if (not columns) output
-      (replace-regexp-in-string
-       "@multitable \\(.*\\)" columns output t nil 1))))
-
-;;;###autoload
-(defun orgtbl-to-orgtbl (table params)
-  "Convert the orgtbl-mode TABLE into another orgtbl-mode table.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.
-
-Useful when slicing one table into many.  The :hline, :sep,
-:lstart, and :lend provide orgtbl framing.  :tstart and :tend can
-be set to provide ORGTBL directives for the generated table."
-  (require 'ox-org)
-  (orgtbl-to-generic table (org-combine-plists params (list :backend 'org))))
-
-(defun orgtbl-to-table.el (table params)
-  "Convert the orgtbl-mode TABLE into a table.el table.
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported."
-  (with-temp-buffer
-    (insert (orgtbl-to-orgtbl table params))
-    (org-table-align)
-    (replace-regexp-in-string
-     "-|" "-+"
-     (replace-regexp-in-string "|-" "+-" (buffer-substring 1 (buffer-size))))))
-
-(defun orgtbl-to-unicode (table params)
-  "Convert the orgtbl-mode TABLE into a table with unicode characters.
-
-TABLE is a list, each entry either the symbol `hline' for
-a horizontal separator line, or a list of fields for that line.
-PARAMS is a property list of parameters that can influence the
-conversion.  All parameters from `orgtbl-to-generic' are
-supported.  It is also possible to use the following ones:
-
-:ascii-art
-
-  When non-nil, use \"ascii-art-to-unicode\" package to translate
-  the table.  You can download it here:
-  http://gnuvola.org/software/j/aa2u/ascii-art-to-unicode.el.
-
-:narrow
-
-  When non-nil, narrow columns width than provided width cookie,
-  using \"=>\" as an ellipsis, just like in an Org mode buffer."
-  (require 'ox-ascii)
-  (orgtbl-to-generic
-   table
-   (org-combine-plists
-    (list :backend 'ascii
-	  :ascii-charset 'utf-8
-	  :ascii-table-widen-columns (not (plist-get params :narrow))
-	  :ascii-table-use-ascii-art (plist-get params :ascii-art))
-    params)))
-
-;; Put the cursor in a column containing numerical values
-;; of an Org table,
-;; type C-c " a
-;; A new column is added with a bar plot.
-;; When the table is refreshed (C-u C-c *),
-;; the plot is updated to reflect the new values.
-
-(defun orgtbl-ascii-draw (value min max &optional width characters)
-  "Draw an ascii bar in a table.
-VALUE is the value to plot, it determines the width of the bar to draw.
-MIN is the value that will be displayed as empty (zero width bar).
-MAX is the value that will draw a bar filling all the WIDTH.
-WIDTH is the span in characters from MIN to MAX.
-CHARACTERS is a string that will compose the bar, with shades of grey
-from pure white to pure black.  It defaults to a 10 characters string
-of regular ascii characters."
-  (let* ((width      (ceiling (or width 12)))
-	 (characters (or characters " .:;c!lhVHW"))
-	 (len        (1- (length characters)))
-	 (value      (float (if (numberp value)
-				value (string-to-number value))))
-	 (relative   (/ (- value min) (- max min)))
-	 (steps      (round (* relative width len))))
-    (cond ((< steps             0) "too small")
-	  ((> steps (* width len)) "too large")
-	  (t (let* ((int-division (/ steps len))
-		    (remainder    (- steps (* int-division len))))
-	       (concat (make-string int-division (elt characters len))
-		       (string (elt characters remainder))))))))
-
-;;;###autoload
-(defun orgtbl-ascii-plot (&optional ask)
-  "Draw an ASCII bar plot in a column.
-
-With cursor in a column containing numerical values, this function
-will draw a plot in a new column.
-
-ASK, if given, is a numeric prefix to override the default 12
-characters width of the plot.  ASK may also be the `\\[universal-argument]' \
-prefix,
-which will prompt for the width."
-  (interactive "P")
-  (let ((col (org-table-current-column))
-	(min  1e999)		 ; 1e999 will be converted to infinity
-	(max -1e999)		 ; which is the desired result
-	(table (org-table-to-lisp))
-	(length
-	 (cond ((consp ask)
-		(read-number "Length of column " 12))
-	       ((numberp ask) ask)
-	       (t 12))))
-    ;; Skip any hline a the top of table.
-    (while (eq (car table) 'hline) (setq table (cdr table)))
-    ;; Skip table header if any.
-    (dolist (x (or (cdr (memq 'hline table)) table))
-      (when (consp x)
-	(setq x (nth (1- col) x))
-	(when (string-match
-	       "^[-+]?\\([0-9]*[.]\\)?[0-9]*\\([eE][+-]?[0-9]+\\)?$"
-	       x)
-	  (setq x (string-to-number x))
-	  (when (> min x) (setq min x))
-	  (when (< max x) (setq max x)))))
-    (org-table-insert-column)
-    (org-table-move-column-right)
-    (org-table-store-formulas
-     (cons
-      (cons
-       (concat "$" (number-to-string (1+ col)))
-       (format "'(%s $%s %s %s %s)"
-	       "orgtbl-ascii-draw" col min max length))
-      (org-table-get-stored-formulas)))
-    (org-table-recalculate t)))
-
-;; Example of extension: unicode characters
-;; Here are two examples of different styles.
-
-;; Unicode block characters are used to give a smooth effect.
-;; See http://en.wikipedia.org/wiki/Block_Elements
-;; Use one of those drawing functions
-;; - orgtbl-ascii-draw   (the default ascii)
-;; - orgtbl-uc-draw-grid (unicode with a grid effect)
-;; - orgtbl-uc-draw-cont (smooth unicode)
-
-;; This is best viewed with the "DejaVu Sans Mono" font
-;; (use M-x set-frame-font).
-
-(defun orgtbl-uc-draw-grid (value min max &optional width)
-  "Draw a bar in a table using block unicode characters.
-It is a variant of orgtbl-ascii-draw with Unicode block
-characters, for a smooth display.  Bars appear as grids (to the
-extent the font allows)."
-  ;; http://en.wikipedia.org/wiki/Block_Elements
-  ;; best viewed with the "DejaVu Sans Mono" font.
-  (orgtbl-ascii-draw value min max width
-		     " \u258F\u258E\u258D\u258C\u258B\u258A\u2589"))
-
-(defun orgtbl-uc-draw-cont (value min max &optional width)
-  "Draw a bar in a table using block unicode characters.
-It is a variant of orgtbl-ascii-draw with Unicode block
-characters, for a smooth display.  Bars are solid (to the extent
-the font allows)."
-  (orgtbl-ascii-draw value min max width
-		     " \u258F\u258E\u258D\u258C\u258B\u258A\u2589\u2588"))
-
-(defun org-table-get-remote-range (name-or-id form)
-  "Get a field value or a list of values in a range from table at ID.
-
-NAME-OR-ID may be the name of a table in the current file as set
-by a \"#+NAME:\" directive.  The first table following this line
-will then be used.  Alternatively, it may be an ID referring to
-any entry, also in a different file.  In this case, the first
-table in that entry will be referenced.
-FORM is a field or range descriptor like \"@2$3\" or \"B3\" or
-\"@I$2..@II$2\".  All the references must be absolute, not relative.
-
-The return value is either a single string for a single field, or a
-list of the fields in the rectangle."
-  (save-match-data
-    (let ((case-fold-search t) (id-loc nil)
-	  ;; Protect a bunch of variables from being overwritten by
-	  ;; the context of the remote table.
-	  org-table-column-names org-table-column-name-regexp
-	  org-table-local-parameters org-table-named-field-locations
-	  org-table-current-line-types
-	  org-table-current-begin-pos org-table-dlines
-	  org-table-current-ncol
-	  org-table-hlines org-table-last-alignment
-	  org-table-last-column-widths org-table-last-alignment
-	  org-table-last-column-widths
-	  buffer loc)
-      (setq form (org-table-convert-refs-to-rc form))
-      (org-with-wide-buffer
-       (goto-char (point-min))
-       (if (re-search-forward
-	    (concat "^[ \t]*#\\+\\(tbl\\)?name:[ \t]*"
-		    (regexp-quote name-or-id) "[ \t]*$")
-	    nil t)
-	   (setq buffer (current-buffer) loc (match-beginning 0))
-	 (setq id-loc (org-id-find name-or-id 'marker))
-	 (unless (and id-loc (markerp id-loc))
-	   (user-error "Can't find remote table \"%s\"" name-or-id))
-	 (setq buffer (marker-buffer id-loc)
-	       loc (marker-position id-loc))
-	 (move-marker id-loc nil))
-       (with-current-buffer buffer
-	 (org-with-wide-buffer
-	  (goto-char loc)
-	  (forward-char 1)
-	  (unless (and (re-search-forward "^\\(\\*+ \\)\\|^[ \t]*|" nil t)
-		       (not (match-beginning 1)))
-	    (user-error "Cannot find a table at NAME or ID %s" name-or-id))
-	  (org-table-analyze)
-	  (setq form (org-table-formula-substitute-names
-		      (org-table-formula-handle-first/last-rc form)))
-	  (if (and (string-match org-table-range-regexp form)
-		   (> (length (match-string 0 form)) 1))
-	      (org-table-get-range
-	       (match-string 0 form) org-table-current-begin-pos 1)
-	    form)))))))
-
-(defun org-table-remote-reference-indirection (form)
-  "Return formula with table remote references substituted by indirection.
-For example \"remote($1, @>$2)\" => \"remote(year_2013, @>$1)\".
-This indirection works only with the format @ROW$COLUMN.  The
-format \"B3\" is not supported because it can not be
-distinguished from a plain table name or ID."
-  (let ((regexp
-	 ;; Same as in `org-table-eval-formula'.
-	 (concat "\\<remote([ \t]*\\("
-		 ;; Allow "$1", "@<", "$-1", "@<<$1" etc.
-		 "[@$][^ \t,]+"
-		 "\\)[ \t]*,[ \t]*\\([^\n)]+\\))")))
-    (replace-regexp-in-string
-     regexp
-     (lambda (m)
-       (save-match-data
-	 (let ((eq (org-table-formula-handle-first/last-rc (match-string 1 m))))
-	   (org-table-get-range
-	    (if (string-match-p "\\`\\$[0-9]+\\'" eq)
-		(concat "@0" eq)
-	      eq)))))
-     form t t 1)))
-
-(defmacro org-define-lookup-function (mode)
-  (let ((mode-str (symbol-name mode))
-	(first-p (eq mode 'first))
-	(all-p (eq mode 'all)))
-    (let ((plural-str (if all-p "s" "")))
-      `(defun ,(intern (format "org-lookup-%s" mode-str)) (val s-list r-list &optional predicate)
-	 ,(format "Find %s occurrence%s of VAL in S-LIST; return corresponding element%s of R-LIST.
-If R-LIST is nil, return matching element%s of S-LIST.
-If PREDICATE is not nil, use it instead of `equal' to match VAL.
-Matching is done by (PREDICATE VAL S), where S is an element of S-LIST.
-This function is generated by a call to the macro `org-define-lookup-function'."
-		  mode-str plural-str plural-str plural-str)
-	 (let ,(let ((lvars '((p (or predicate 'equal))
-			      (sl s-list)
-			      (rl (or r-list s-list))
-			      (ret nil))))
-		 (if first-p (cons '(match-p nil) lvars) lvars))
-	   (while ,(if first-p '(and (not match-p) sl) 'sl)
-	     (when (funcall p val (car sl))
-	       ,(when first-p '(setq match-p t))
-	       (let ((rval (car rl)))
-		 (setq ret ,(if all-p '(append ret (list rval)) 'rval))))
-	     (setq sl (cdr sl) rl (cdr rl)))
-	   ret)))))
-
-(org-define-lookup-function first)
-(org-define-lookup-function last)
-(org-define-lookup-function all)
-
-(provide 'org-table)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-table.el ends here
diff --git a/elpa/org-9.1.14/org-table.elc b/elpa/org-9.1.14/org-table.elc
deleted file mode 100644
index aba2148..0000000
--- a/elpa/org-9.1.14/org-table.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-timer.el b/elpa/org-9.1.14/org-timer.el
deleted file mode 100644
index d840944..0000000
--- a/elpa/org-9.1.14/org-timer.el
+++ /dev/null
@@ -1,509 +0,0 @@
-;;; org-timer.el --- Timer code for Org mode         -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements two types of timers for Org buffers:
-;;
-;; - A relative timer that counts up (from 0 or a specified offset)
-;; - A countdown timer that counts down from a specified time
-;;
-;; The relative and countdown timers differ in their entry points.
-;; Use `org-timer' or `org-timer-start' to start the relative timer,
-;; and `org-timer-set-timer' to start the countdown timer.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'org-clock)
-
-(declare-function org-agenda-error "org-agenda" ())
-
-(defvar org-timer-start-time nil
-  "t=0 for the running timer.")
-
-(defvar org-timer-pause-time nil
-  "Time when the timer was paused.")
-
-(defvar org-timer-countdown-timer nil
-  "Current countdown timer.
-This is a timer object if there is an active countdown timer,
-`paused' if there is a paused countdown timer, and nil
-otherwise.")
-
-(defvar org-timer-countdown-timer-title nil
-  "Title for notification displayed when a countdown finishes.")
-
-(defconst org-timer-re "\\([-+]?[0-9]+\\):\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)"
-  "Regular expression used to match timer stamps.")
-
-(defcustom org-timer-format "%s "
-  "The format to insert the time of the timer.
-This format must contain one instance of \"%s\" which will be replaced by
-the value of the timer."
-  :group 'org-time
-  :type 'string)
-
-(defcustom org-timer-default-timer "0"
-  "The default timer when a timer is set, in minutes or hh:mm:ss format.
-When 0, the user is prompted for a value."
-  :group 'org-time
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'string)
-
-(defcustom org-timer-display 'mode-line
-  "Define where running timer is displayed, if at all.
-When a timer is running, Org can display it in the mode line
-and/or frame title.  Allowed values are:
-
-both         displays in both mode line and frame title
-mode-line    displays only in mode line (default)
-frame-title  displays only in frame title
-nil          current timer is not displayed"
-  :group 'org-time
-  :type '(choice
-	  (const :tag "Mode line" mode-line)
-	  (const :tag "Frame title" frame-title)
-	  (const :tag "Both" both)
-	  (const :tag "None" nil)))
-
-(defvar org-timer-start-hook nil
-  "Hook run after relative timer is started.")
-
-(defvar org-timer-stop-hook nil
-  "Hook run before relative or countdown timer is stopped.")
-
-(defvar org-timer-pause-hook nil
-  "Hook run before relative or countdown timer is paused.")
-
-(defvar org-timer-continue-hook nil
-  "Hook run after relative or countdown timer is continued.")
-
-(defvar org-timer-set-hook nil
-  "Hook run after countdown timer is set.")
-
-(defvar org-timer-done-hook nil
-  "Hook run after countdown timer reaches zero.")
-
-;;;###autoload
-(defun org-timer-start (&optional offset)
-  "Set the starting time for the relative timer to now.
-When called with prefix argument OFFSET, prompt the user for an offset time,
-with the default taken from a timer stamp at point, if any.
-If OFFSET is a string or an integer, it is directly taken to be the offset
-without user interaction.
-When called with a double prefix arg, all timer strings in the active
-region will be shifted by a specific amount.  You will be prompted for
-the amount, with the default to make the first timer string in
-the region 0:00:00."
-  (interactive "P")
-  (cond
-   ((equal offset '(16))
-    (call-interactively 'org-timer-change-times-in-region))
-   (org-timer-countdown-timer
-    (user-error "Countdown timer is running.  Cancel first"))
-   (t
-    (let (delta def s)
-      (if (not offset)
-	  (setq org-timer-start-time (current-time))
-	(cond
-	 ((integerp offset) (setq delta offset))
-	 ((stringp offset) (setq delta (org-timer-hms-to-secs offset)))
-	 (t
-	  (setq def (if (org-in-regexp org-timer-re)
-			(match-string 0)
-		      "0:00:00")
-		s (read-string
-		   (format "Restart timer with offset [%s]: " def)))
-	  (unless (string-match "\\S-" s) (setq s def))
-	  (setq delta (org-timer-hms-to-secs (org-timer-fix-incomplete s)))))
-	(setq org-timer-start-time
-	      (seconds-to-time
-	       ;; Pass `current-time' result to `float-time' (instead
-	       ;; of calling without arguments) so that only
-	       ;; `current-time' has to be overridden in tests.
-	       (- (float-time (current-time)) delta))))
-      (setq org-timer-pause-time nil)
-      (org-timer-set-mode-line 'on)
-      (message "Timer start time set to %s, current value is %s"
-	       (format-time-string "%T" org-timer-start-time)
-	       (org-timer-secs-to-hms (or delta 0)))
-      (run-hooks 'org-timer-start-hook)))))
-
-(defun org-timer-pause-or-continue (&optional stop)
-  "Pause or continue the relative or countdown timer.
-With prefix arg STOP, stop it entirely."
-  (interactive "P")
-  (cond
-   (stop (org-timer-stop))
-   ((not org-timer-start-time) (error "No timer is running"))
-   (org-timer-pause-time
-    (let ((start-secs (float-time org-timer-start-time))
-	  (pause-secs (float-time org-timer-pause-time)))
-      (if org-timer-countdown-timer
-	  (let ((new-secs (- start-secs pause-secs)))
-	    (setq org-timer-countdown-timer
-		  (org-timer--run-countdown-timer
-		   new-secs org-timer-countdown-timer-title))
-	    (setq org-timer-start-time
-		  (time-add (current-time) (seconds-to-time new-secs))))
-	(setq org-timer-start-time
-	      ;; Pass `current-time' result to `float-time' (instead
-	      ;; of calling without arguments) so that only
-	      ;; `current-time' has to be overridden in tests.
-	      (seconds-to-time (- (float-time (current-time))
-				  (- pause-secs start-secs)))))
-      (setq org-timer-pause-time nil)
-      (org-timer-set-mode-line 'on)
-      (run-hooks 'org-timer-continue-hook)
-      (message "Timer continues at %s" (org-timer-value-string))))
-   (t
-    ;; pause timer
-    (when org-timer-countdown-timer
-      (cancel-timer org-timer-countdown-timer)
-      (setq org-timer-countdown-timer 'paused))
-    (run-hooks 'org-timer-pause-hook)
-    (setq org-timer-pause-time (current-time))
-    (org-timer-set-mode-line 'paused)
-    (message "Timer paused at %s" (org-timer-value-string)))))
-
-(defun org-timer-stop ()
-  "Stop the relative or countdown timer."
-  (interactive)
-  (unless org-timer-start-time
-    (user-error "No timer running"))
-  (when (timerp org-timer-countdown-timer)
-    (cancel-timer org-timer-countdown-timer))
-  (run-hooks 'org-timer-stop-hook)
-  (setq org-timer-start-time nil
-	org-timer-pause-time nil
-	org-timer-countdown-timer nil)
-  (org-timer-set-mode-line 'off)
-  (message "Timer stopped"))
-
-;;;###autoload
-(defun org-timer (&optional restart no-insert)
-  "Insert a H:MM:SS string from the timer into the buffer.
-The first time this command is used, the timer is started.
-
-When used with a `\\[universal-argument]' prefix, force restarting the timer.
-
-When used with a `\\[universal-argument] \\[universal-argument]' \
-prefix, change all the timer strings
-in the region by a fixed amount.  This can be used to re-calibrate
-a timer that was not started at the correct moment.
-
-If NO-INSERT is non-nil, return the string instead of inserting
-it in the buffer."
-  (interactive "P")
-  (if (equal restart '(16))
-      (org-timer-start restart)
-    (when (or (equal restart '(4)) (not org-timer-start-time))
-      (org-timer-start))
-    (if no-insert
-	(org-timer-value-string)
-      (insert (org-timer-value-string)))))
-
-(defun org-timer-value-string ()
-  "Set the timer string."
-  (format org-timer-format
-	  (org-timer-secs-to-hms
-	   (abs (floor (org-timer-seconds))))))
-
-(defun org-timer-seconds ()
-  ;; Pass `current-time' result to `float-time' (instead of calling
-  ;; without arguments) so that only `current-time' has to be
-  ;; overridden in tests.
-  (if org-timer-countdown-timer
-      (- (float-time org-timer-start-time)
-	 (float-time (or org-timer-pause-time (current-time))))
-    (- (float-time (or org-timer-pause-time (current-time)))
-       (float-time org-timer-start-time))))
-
-;;;###autoload
-(defun org-timer-change-times-in-region (beg end delta)
-  "Change all h:mm:ss time in region by a DELTA."
-  (interactive
-   "r\nsEnter time difference like \"-1:08:26\".  Default is first time to zero: ")
-  (let ((re "[-+]?[0-9]+:[0-9]\\{2\\}:[0-9]\\{2\\}") p)
-    (unless (string-match "\\S-" delta)
-      (save-excursion
-	(goto-char beg)
-	(when (re-search-forward re end t)
-	  (setq delta (match-string 0))
-	  (if (equal (string-to-char delta) ?-)
-	      (setq delta (substring delta 1))
-	    (setq delta (concat "-" delta))))))
-    (setq delta (org-timer-hms-to-secs (org-timer-fix-incomplete delta)))
-    (when (= delta 0) (error "No change"))
-    (save-excursion
-      (goto-char end)
-      (while (re-search-backward re beg t)
-	(setq p (point))
-	(replace-match
-	 (save-match-data
-	   (org-timer-secs-to-hms (+ (org-timer-hms-to-secs (match-string 0)) delta)))
-	 t t)
-	(goto-char p)))))
-
-;;;###autoload
-(defun org-timer-item (&optional arg)
-  "Insert a description-type item with the current timer value."
-  (interactive "P")
-  (let ((itemp (org-in-item-p)) (pos (point)))
-    (cond
-     ;; In a timer list, insert with `org-list-insert-item',
-     ;; then fix the list.
-     ((and itemp (goto-char itemp) (org-at-item-timer-p))
-      (let* ((struct (org-list-struct))
-	     (prevs (org-list-prevs-alist struct))
-	     (s (concat (org-timer (when arg '(4)) t) ":: ")))
-	(setq struct (org-list-insert-item pos struct prevs nil s))
-	(org-list-write-struct struct (org-list-parents-alist struct))
-	(looking-at org-list-full-item-re)
-	(goto-char (match-end 0))))
-     ;; In a list of another type, don't break anything: throw an error.
-     (itemp (goto-char pos) (error "This is not a timer list"))
-     ;; Else, start a new list.
-     (t
-      (beginning-of-line)
-      (org-indent-line)
-      (insert  "- ")
-      (org-timer (when arg '(4)))
-      (insert ":: ")))))
-
-(defun org-timer-fix-incomplete (hms)
-  "If hms is a H:MM:SS string with missing hour or hour and minute, fix it."
-  (if (string-match "\\(?:\\([0-9]+:\\)?\\([0-9]+:\\)\\)?\\([0-9]+\\)" hms)
-      (replace-match
-       (format "%d:%02d:%02d"
-	       (if (match-end 1) (string-to-number (match-string 1 hms)) 0)
-	       (if (match-end 2) (string-to-number (match-string 2 hms)) 0)
-	       (string-to-number (match-string 3 hms)))
-       t t hms)
-    (error "Cannot parse HMS string \"%s\"" hms)))
-
-(defun org-timer-hms-to-secs (hms)
-  "Convert h:mm:ss string to an integer time.
-If the string starts with a minus sign, the integer will be negative."
-  (if (not (string-match
-	    "\\([-+]?[0-9]+\\):\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)"
-	    hms))
-      0
-    (let* ((h (string-to-number (match-string 1 hms)))
-	   (m (string-to-number (match-string 2 hms)))
-	   (s (string-to-number (match-string 3 hms)))
-	   (sign (equal (substring (match-string 1 hms) 0 1) "-")))
-      (setq h (abs h))
-      (* (if sign -1 1) (+ s (* 60 (+ m (* 60 h))))))))
-
-(defun org-timer-secs-to-hms (s)
-  "Convert integer S into h:mm:ss.
-If the integer is negative, the string will start with \"-\"."
-  (let (sign m h)
-    (setq sign (if (< s 0) "-" "")
-	  s (abs s)
-	  m (/ s 60) s (- s (* 60 m))
-	  h (/ m 60) m (- m (* 60 h)))
-    (format "%s%d:%02d:%02d" sign h m s)))
-
-(defvar org-timer-mode-line-timer nil)
-(defvar org-timer-mode-line-string nil)
-
-(defun org-timer-set-mode-line (value)
-  "Set the mode-line display for relative or countdown timer.
-VALUE can be `on', `off', or `paused'."
-  (when (or (eq org-timer-display 'mode-line)
-	    (eq org-timer-display 'both))
-    (or global-mode-string (setq global-mode-string '("")))
-    (or (memq 'org-timer-mode-line-string global-mode-string)
-	(setq global-mode-string
-	      (append global-mode-string '(org-timer-mode-line-string)))))
-  (when (or (eq org-timer-display 'frame-title)
-	    (eq org-timer-display 'both))
-    (or (memq 'org-timer-mode-line-string frame-title-format)
-	(setq frame-title-format
-	      (append frame-title-format '(org-timer-mode-line-string)))))
-  (cl-case value
-    (off
-     (when org-timer-mode-line-timer
-       (cancel-timer org-timer-mode-line-timer)
-       (setq org-timer-mode-line-timer nil))
-     (when (or (eq org-timer-display 'mode-line)
-	       (eq org-timer-display 'both))
-       (setq global-mode-string
-	     (delq 'org-timer-mode-line-string global-mode-string)))
-     (when (or (eq org-timer-display 'frame-title)
-	       (eq org-timer-display 'both))
-       (setq frame-title-format
-	     (delq 'org-timer-mode-line-string frame-title-format)))
-     (force-mode-line-update))
-    (paused
-     (when org-timer-mode-line-timer
-       (cancel-timer org-timer-mode-line-timer)
-       (setq org-timer-mode-line-timer nil)))
-    (on
-     (when (or (eq org-timer-display 'mode-line)
-	       (eq org-timer-display 'both))
-       (or global-mode-string (setq global-mode-string '("")))
-       (or (memq 'org-timer-mode-line-string global-mode-string)
-	   (setq global-mode-string
-		 (append global-mode-string '(org-timer-mode-line-string)))))
-     (when (or (eq org-timer-display 'frame-title)
-	       (eq org-timer-display 'both))
-       (or (memq 'org-timer-mode-line-string frame-title-format)
-	   (setq frame-title-format
-		 (append frame-title-format '(org-timer-mode-line-string)))))
-     (org-timer-update-mode-line)
-     (when org-timer-mode-line-timer
-       (cancel-timer org-timer-mode-line-timer)
-       (setq org-timer-mode-line-timer nil))
-     (when org-timer-display
-       (setq org-timer-mode-line-timer
-	     (run-with-timer 1 1 'org-timer-update-mode-line))))))
-
-(defun org-timer-update-mode-line ()
-  "Update the timer time in the mode line."
-  (if org-timer-pause-time
-      nil
-    (setq org-timer-mode-line-string
-	  (concat " <" (substring (org-timer-value-string) 0 -1) ">"))
-    (force-mode-line-update)))
-
-(defun org-timer-show-remaining-time ()
-  "Display the remaining time before the timer ends."
-  (interactive)
-  (require 'time)
-  (if (not org-timer-countdown-timer)
-      (message "No timer set")
-    (let* ((rtime (decode-time
-		   (time-subtract (timer--time org-timer-countdown-timer)
-				  (current-time))))
-	   (rsecs (nth 0 rtime))
-	   (rmins (nth 1 rtime)))
-      (message "%d minute(s) %d seconds left before next time out"
-	       rmins rsecs))))
-
-;;;###autoload
-(defun org-timer-set-timer (&optional opt)
-  "Prompt for a duration in minutes or hh:mm:ss and set a timer.
-
-If `org-timer-default-timer' is not \"0\", suggest this value as
-the default duration for the timer.  If a timer is already set,
-prompt the user if she wants to replace it.
-
-Called with a numeric prefix argument, use this numeric value as
-the duration of the timer in minutes.
-
-Called with a `C-u' prefix arguments, use `org-timer-default-timer'
-without prompting the user for a duration.
-
-With two `C-u' prefix arguments, use `org-timer-default-timer'
-without prompting the user for a duration and automatically
-replace any running timer.
-
-By default, the timer duration will be set to the number of
-minutes in the Effort property, if any.  You can ignore this by
-using three `C-u' prefix arguments."
-  (interactive "P")
-  (when (and org-timer-start-time
-	     (not org-timer-countdown-timer))
-    (user-error "Relative timer is running.  Stop first"))
-  (let* ((default-timer
-	   ;; `org-timer-default-timer' used to be a number, don't choke:
-	   (if (numberp org-timer-default-timer)
-	       (number-to-string org-timer-default-timer)
-	     org-timer-default-timer))
-	 (effort-minutes (ignore-errors (floor (org-get-at-eol 'effort-minutes 1))))
-	 (minutes (or (and (numberp opt) (number-to-string opt))
-		      (and (not (equal opt '(64)))
-			   effort-minutes
-			   (number-to-string effort-minutes))
-		      (and (consp opt) default-timer)
-		      (and (stringp opt) opt)
-		      (read-from-minibuffer
-		       "How much time left? (minutes or h:mm:ss) "
-		       (and (not (string-equal default-timer "0")) default-timer)))))
-    (when (string-match "\\`[0-9]+\\'" minutes)
-      (setq minutes (concat minutes ":00")))
-    (if (not (string-match "[0-9]+" minutes))
-	(org-timer-show-remaining-time)
-      (let ((secs (org-timer-hms-to-secs (org-timer-fix-incomplete minutes))))
-	(if (and org-timer-countdown-timer
-		 (not (or (equal opt '(16))
-			  (y-or-n-p "Replace current timer? "))))
-	    (message "No timer set")
-	  (when (timerp org-timer-countdown-timer)
-	    (cancel-timer org-timer-countdown-timer))
-	  (setq org-timer-countdown-timer-title
-		(org-timer--get-timer-title))
-	  (setq org-timer-countdown-timer
-		(org-timer--run-countdown-timer
-		 secs org-timer-countdown-timer-title))
-	  (run-hooks 'org-timer-set-hook)
-	  (setq org-timer-start-time
-		(time-add (current-time) (seconds-to-time secs)))
-	  (setq org-timer-pause-time nil)
-	  (org-timer-set-mode-line 'on))))))
-
-(defun org-timer--run-countdown-timer (secs title)
-  "Start countdown timer that will last SECS.
-TITLE will be appended to the notification message displayed when
-time is up."
-  (let ((msg (format "%s: time out" title)))
-    (run-with-timer
-     secs nil `(lambda ()
-		 (setq org-timer-countdown-timer nil
-		       org-timer-start-time nil)
-		 (org-notify ,msg ,org-clock-sound)
-		 (org-timer-set-mode-line 'off)
-		 (run-hooks 'org-timer-done-hook)))))
-
-(defun org-timer--get-timer-title ()
-  "Construct timer title from heading or file name of Org buffer."
-  (cond
-   ((derived-mode-p 'org-agenda-mode)
-    (let* ((marker (or (get-text-property (point) 'org-marker)
-		       (org-agenda-error)))
-	   (hdmarker (or (get-text-property (point) 'org-hd-marker)
-			 marker)))
-      (with-current-buffer (marker-buffer marker)
-	(org-with-wide-buffer
-	 (goto-char hdmarker)
-	 (org-show-entry)
-	 (or (ignore-errors (org-get-heading))
-	     (buffer-name (buffer-base-buffer)))))))
-   ((derived-mode-p 'org-mode)
-    (or (ignore-errors (org-get-heading))
-	(buffer-name (buffer-base-buffer))))
-   (t (error "Not in an Org buffer"))))
-
-(provide 'org-timer)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; org-timer.el ends here
diff --git a/elpa/org-9.1.14/org-timer.elc b/elpa/org-9.1.14/org-timer.elc
deleted file mode 100644
index c9eec33..0000000
--- a/elpa/org-9.1.14/org-timer.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org-version.el b/elpa/org-9.1.14/org-version.el
deleted file mode 100644
index e62ba65..0000000
--- a/elpa/org-9.1.14/org-version.el
+++ /dev/null
@@ -1,27 +0,0 @@
-;;; org-version.el --- autogenerated file, do not edit
-;;
-;;; Code:
-;;;###autoload
-(defun org-release ()
-  "The release version of Org.
-Inserted by installing Org mode or when a release is made."
-   (let ((org-release "9.1.14"))
-     org-release))
-;;;###autoload
-(defun org-git-version ()
-  "The Git version of Org mode.
-Inserted by installing Org or when a release is made."
-   (let ((org-git-version "9.1.14-1-g4931fc-elpa"))
-     org-git-version))
-;;;###autoload
-(defvar org-odt-data-dir "/usr/share/emacs/etc/org"
-  "The location of ODT styles.")
-
-(provide 'org-version)
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; coding: utf-8
-;; End:
-;;; org-version.el ends here
diff --git a/elpa/org-9.1.14/org-w3m.el b/elpa/org-9.1.14/org-w3m.el
deleted file mode 100644
index b2dfc77..0000000
--- a/elpa/org-9.1.14/org-w3m.el
+++ /dev/null
@@ -1,184 +0,0 @@
-;;; org-w3m.el --- Support from Copy and Paste From w3m -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
-
-;; Author: Andy Stewart <lazycat dot manatee at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;;
-;; This file is part of GNU Emacs.
-;;
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-
-;; This file implements copying HTML content from a w3m buffer and
-;; transforming the text on the fly so that it can be pasted into an
-;; Org buffer with hot links.  It will also work for regions in gnus
-;; buffers that have been washed with w3m.
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Acknowledgments:
-
-;; Richard Riley <rileyrgdev at googlemail dot com>
-;;
-;;      The idea of transforming the HTML content with Org syntax is
-;;      proposed by Richard, I'm just coding it.
-;;
-
-;;; Code:
-
-(require 'org)
-
-(defvar w3m-current-url)
-(defvar w3m-current-title)
-
-(org-link-set-parameters "w3m" :store #'org-w3m-store-link)
-(defun org-w3m-store-link ()
-  "Store a link to a w3m buffer."
-  (when (eq major-mode 'w3m-mode)
-    (org-store-link-props
-     :type "w3m"
-     :link w3m-current-url
-     :url (url-view-url t)
-     :description (or w3m-current-title w3m-current-url))))
-
-(defun org-w3m-copy-for-org-mode ()
-  "Copy current buffer content or active region with Org style links.
-This will encode `link-title' and `link-location' with
-`org-make-link-string', and insert the transformed test into the kill ring,
-so that it can be yanked into an Org  buffer with links working correctly."
-  (interactive)
-  (let* ((regionp (org-region-active-p))
-         (transform-start (point-min))
-         (transform-end (point-max))
-         return-content
-         link-location link-title
-         temp-position out-bound)
-    (when regionp
-      (setq transform-start (region-beginning))
-      (setq transform-end (region-end))
-      ;; Deactivate mark if current mark is activate.
-      (if (fboundp 'deactivate-mark) (deactivate-mark)))
-    (message "Transforming links...")
-    (save-excursion
-      (goto-char transform-start)
-      (while (and (not out-bound)	; still inside region to copy
-                  (not (org-w3m-no-next-link-p))) ; no next link current buffer
-        ;; store current point before jump next anchor
-        (setq temp-position (point))
-        ;; move to next anchor when current point is not at anchor
-        (or (get-text-property (point) 'w3m-href-anchor) (org-w3m-get-next-link-start))
-        (if (<= (point) transform-end) ; if point is inside transform bound
-            (progn
-              ;; get content between two links.
-              (if (> (point) temp-position)
-                  (setq return-content (concat return-content
-                                               (buffer-substring
-                                                temp-position (point)))))
-              ;; get link location at current point.
-              (setq link-location (get-text-property (point) 'w3m-href-anchor))
-              ;; get link title at current point.
-              (setq link-title (buffer-substring (point)
-                                                 (org-w3m-get-anchor-end)))
-              ;; concat Org style url to `return-content'.
-              (setq return-content
-		    (concat return-content
-			    (if (org-string-nw-p link-location)
-				(org-make-link-string link-location link-title)
-			      link-title))))
-          (goto-char temp-position) ; reset point before jump next anchor
-          (setq out-bound t)))	    ; for break out `while' loop
-      ;; add the rest until end of the region to be copied
-      (if (< (point) transform-end)
-          (setq return-content
-                (concat return-content
-                        (buffer-substring (point) transform-end))))
-      (org-kill-new return-content)
-      (message "Transforming links...done, use C-y to insert text into Org file")
-      (message "Copy with link transformation complete."))))
-
-(defun org-w3m-get-anchor-start ()
-  "Move cursor to the start of current anchor.  Return point."
-  ;; get start position of anchor or current point
-  (goto-char (or (previous-single-property-change (point) 'w3m-anchor-sequence)
-                 (point))))
-
-(defun org-w3m-get-anchor-end ()
-  "Move cursor to the end of current anchor.  Return point."
-  ;; get end position of anchor or point
-  (goto-char (or (next-single-property-change (point) 'w3m-anchor-sequence)
-		 (point))))
-
-(defun org-w3m-get-next-link-start ()
-  "Move cursor to the start of next link.  Return point."
-  (catch 'reach
-    (while (next-single-property-change (point) 'w3m-anchor-sequence)
-      ;; jump to next anchor
-      (goto-char (next-single-property-change (point) 'w3m-anchor-sequence))
-      (when (get-text-property (point) 'w3m-href-anchor)
-        ;; return point when current is valid link
-        (throw 'reach nil))))
-  (point))
-
-(defun org-w3m-get-prev-link-start ()
-  "Move cursor to the start of previous link.  Return point."
-  (catch 'reach
-    (while (previous-single-property-change (point) 'w3m-anchor-sequence)
-      ;; jump to previous anchor
-      (goto-char (previous-single-property-change (point) 'w3m-anchor-sequence))
-      (when (get-text-property (point) 'w3m-href-anchor)
-        ;; return point when current is valid link
-        (throw 'reach nil))))
-  (point))
-
-(defun org-w3m-no-next-link-p ()
-  "Whether there is no next link after the cursor.
-Return t if there is no next link; otherwise, return nil."
-  (save-excursion
-    (equal (point) (org-w3m-get-next-link-start))))
-
-(defun org-w3m-no-prev-link-p ()
-  "Whether there is no previous link after the cursor.
-Return t if there is no previous link; otherwise, return nil."
-  (save-excursion
-    (equal (point) (org-w3m-get-prev-link-start))))
-
-;; Install keys into the w3m keymap
-(defvar w3m-mode-map)
-(defvar w3m-minor-mode-map)
-(when (and (boundp 'w3m-mode-map)
-           (keymapp w3m-mode-map))
-  (define-key w3m-mode-map "\C-c\C-x\M-w" 'org-w3m-copy-for-org-mode)
-  (define-key w3m-mode-map "\C-c\C-x\C-w" 'org-w3m-copy-for-org-mode))
-(when (and (boundp 'w3m-minor-mode-map)
-           (keymapp w3m-minor-mode-map))
-  (define-key w3m-minor-mode-map "\C-c\C-x\M-w" 'org-w3m-copy-for-org-mode)
-  (define-key w3m-minor-mode-map "\C-c\C-x\C-w" 'org-w3m-copy-for-org-mode))
-(add-hook
- 'w3m-mode-hook
- (lambda ()
-   (define-key w3m-mode-map "\C-c\C-x\M-w" 'org-w3m-copy-for-org-mode)
-   (define-key w3m-mode-map "\C-c\C-x\C-w" 'org-w3m-copy-for-org-mode)))
-(add-hook
- 'w3m-minor-mode-hook
- (lambda ()
-   (define-key w3m-minor-mode-map "\C-c\C-x\M-w" 'org-w3m-copy-for-org-mode)
-   (define-key w3m-minor-mode-map "\C-c\C-x\C-w" 'org-w3m-copy-for-org-mode)))
-
-(provide 'org-w3m)
-
-;;; org-w3m.el ends here
diff --git a/elpa/org-9.1.14/org-w3m.elc b/elpa/org-9.1.14/org-w3m.elc
deleted file mode 100644
index bda54bb..0000000
--- a/elpa/org-9.1.14/org-w3m.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/org.el b/elpa/org-9.1.14/org.el
deleted file mode 100644
index 2cc9b6a..0000000
--- a/elpa/org-9.1.14/org.el
+++ /dev/null
@@ -1,24947 +0,0 @@
-;;; org.el --- Outline-based notes management and organizer -*- lexical-binding: t; -*-
-
-;; Carstens outline-mode for keeping track of everything.
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-;;
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-;; Version: 9.1.14
-;;
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-;;
-;;; Commentary:
-;;
-;; Org is a mode for keeping notes, maintaining ToDo lists, and doing
-;; project planning with a fast and effective plain-text system.
-;;
-;; Org mode develops organizational tasks around NOTES files that
-;; contain information about projects as plain text.  Org mode is
-;; implemented on top of outline-mode, which makes it possible to keep
-;; the content of large files well structured.  Visibility cycling and
-;; structure editing help to work with the tree.  Tables are easily
-;; created with a built-in table editor.  Org mode supports ToDo
-;; items, deadlines, time stamps, and scheduling.  It dynamically
-;; compiles entries into an agenda that utilizes and smoothly
-;; integrates much of the Emacs calendar and diary.  Plain text
-;; URL-like links connect to websites, emails, Usenet messages, BBDB
-;; entries, and any files related to the projects.  For printing and
-;; sharing of notes, an Org file can be exported as a structured ASCII
-;; file, as HTML, or (todo and agenda items only) as an iCalendar
-;; file.  It can also serve as a publishing tool for a set of linked
-;; webpages.
-;;
-;; Installation and Activation
-;; ---------------------------
-;; See the corresponding sections in the manual at
-;;
-;;   https://orgmode.org/org.html#Installation
-;;
-;; Documentation
-;; -------------
-;; The documentation of Org mode can be found in the TeXInfo file.  The
-;; distribution also contains a PDF version of it.  At the homepage of
-;; Org mode, you can read the same text online as HTML.  There is also an
-;; excellent reference card made by Philip Rooke.  This card can be found
-;; in the doc/ directory.
-;;
-;; A list of recent changes can be found at
-;; https://orgmode.org/Changes.html
-;;
-;;; Code:
-
-(defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
-(defvar-local org-table-formula-constants-local nil
-  "Local version of `org-table-formula-constants'.")
-
-;;;; Require other packages
-
-(require 'cl-lib)
-
-(eval-when-compile (require 'gnus-sum))
-
-(require 'calendar)
-(require 'find-func)
-(require 'format-spec)
-
-(or (eq this-command 'eval-buffer)
-    (condition-case nil
-	(load (concat (file-name-directory load-file-name)
-		      "org-loaddefs.el")
-	      nil t t t)
-      (error
-       (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
-       (sit-for 3)
-       (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
-       (sit-for 3))))
-
-(require 'org-macs)
-(require 'org-compat)
-
-;; `org-outline-regexp' ought to be a defconst but is let-bound in
-;; some places -- e.g. see the macro `org-with-limited-levels'.
-;;
-;; In Org buffers, the value of `outline-regexp' is that of
-;; `org-outline-regexp'.  The only function still directly relying on
-;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
-;; job when `orgstruct-mode' is active.
-(defvar org-outline-regexp "\\*+ "
-  "Regexp to match Org headlines.")
-
-(defvar org-outline-regexp-bol "^\\*+ "
-  "Regexp to match Org headlines.
-This is similar to `org-outline-regexp' but additionally makes
-sure that we are at the beginning of the line.")
-
-(defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
-  "Matches a headline, putting stars and text into groups.
-Stars are put in group 1 and the trimmed body in group 2.")
-
-(declare-function calendar-check-holidays "holidays" (date))
-(declare-function cdlatex-environment "ext:cdlatex" (environment item))
-(declare-function isearch-no-upper-case-p "isearch" (string regexp-flag))
-(declare-function org-add-archive-files "org-archive" (files))
-(declare-function org-agenda-entry-get-agenda-timestamp "org-agenda" (pom))
-(declare-function org-agenda-list "org-agenda" (&optional arg start-day span with-hour))
-(declare-function org-agenda-redo "org-agenda" (&optional all))
-(declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body) t)
-(declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
-(declare-function org-beamer-mode "ox-beamer" (&optional prefix) t)
-(declare-function org-clock-get-last-clock-out-time "org-clock" ())
-(declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
-(declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
-(declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
-(declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
-(declare-function org-clock-timestamps-down "org-clock" (&optional n))
-(declare-function org-clock-timestamps-up "org-clock" (&optional n))
-(declare-function org-clock-update-time-maybe "org-clock" ())
-(declare-function org-clocking-buffer "org-clock" ())
-(declare-function org-clocktable-shift "org-clock" (dir n))
-(declare-function
- org-duration-from-minutes "org-duration" (minutes &optional fmt canonical))
-(declare-function org-element-at-point "org-element" ())
-(declare-function org-element-cache-refresh "org-element" (pos))
-(declare-function org-element-cache-reset "org-element" (&optional all))
-(declare-function org-element-contents "org-element" (element))
-(declare-function org-element-context "org-element" (&optional element))
-(declare-function org-element-copy "org-element" (datum))
-(declare-function org-element-interpret-data "org-element" (data))
-(declare-function org-element-lineage "org-element" (blob &optional types with-self))
-(declare-function org-element-link-parser "org-element" ())
-(declare-function org-element-nested-p "org-element" (elem-a elem-b))
-(declare-function org-element-parse-buffer "org-element" (&optional granularity visible-only))
-(declare-function org-element-property "org-element" (property element))
-(declare-function org-element-put-property "org-element" (element property value))
-(declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
-(declare-function org-element-type "org-element" (element))
-(declare-function org-element-update-syntax "org-element" ())
-(declare-function org-id-find-id-file "org-id" (id))
-(declare-function org-id-get-create "org-id" (&optional force))
-(declare-function org-inlinetask-at-task-p "org-inlinetask" ())
-(declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
-(declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
-(declare-function org-plot/gnuplot "org-plot" (&optional params))
-(declare-function org-table-align "org-table" ())
-(declare-function org-table-begin "org-table" (&optional table-type))
-(declare-function org-table-beginning-of-field "org-table" (&optional n))
-(declare-function org-table-blank-field "org-table" ())
-(declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
-(declare-function org-table-copy-region "org-table" (beg end &optional cut))
-(declare-function org-table-cut-region "org-table" (beg end))
-(declare-function org-table-edit-field "org-table" (arg))
-(declare-function org-table-end "org-table" (&optional table-type))
-(declare-function org-table-end-of-field "org-table" (&optional n))
-(declare-function org-table-insert-row "org-table" (&optional arg))
-(declare-function org-table-justify-field-maybe "org-table" (&optional new))
-(declare-function org-table-maybe-eval-formula "org-table" ())
-(declare-function org-table-maybe-recalculate-line "org-table" ())
-(declare-function org-table-next-row "org-table" ())
-(declare-function org-table-paste-rectangle "org-table" ())
-(declare-function org-table-recalculate "org-table" (&optional all noalign))
-(declare-function
- org-table-sort-lines "org-table"
- (&optional with-case sorting-type getkey-func compare-func interactive?))
-(declare-function org-table-wrap-region "org-table" (arg))
-(declare-function org-tags-view "org-agenda" (&optional todo-only match))
-(declare-function orgtbl-ascii-plot "org-table" (&optional ask))
-(declare-function orgtbl-mode "org-table" (&optional arg))
-(declare-function org-export-get-backend "ox" (name))
-(declare-function org-export-get-environment "ox" (&optional backend subtreep ext-plist))
-(declare-function org-latex-make-preamble "ox-latex" (info &optional template snippet?))
-
-(defvar ffap-url-regexp)
-(defvar org-element-paragraph-separate)
-
-(defsubst org-uniquify (list)
-  "Non-destructively remove duplicate elements from LIST."
-  (let ((res (copy-sequence list))) (delete-dups res)))
-
-(defsubst org-get-at-bol (property)
-  "Get text property PROPERTY at the beginning of line."
-  (get-text-property (point-at-bol) property))
-
-(defsubst org-trim (s &optional keep-lead)
-  "Remove whitespace at the beginning and the end of string S.
-When optional argument KEEP-LEAD is non-nil, removing blank lines
-at the beginning of the string does not affect leading indentation."
-  (replace-regexp-in-string
-   (if keep-lead "\\`\\([ \t]*\n\\)+" "\\`[ \t\n\r]+") ""
-   (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
-
-;; load languages based on value of `org-babel-load-languages'
-(defvar org-babel-load-languages)
-
-;;;###autoload
-(defun org-babel-do-load-languages (sym value)
-  "Load the languages defined in `org-babel-load-languages'."
-  (set-default sym value)
-  (dolist (pair org-babel-load-languages)
-    (let ((active (cdr pair)) (lang (symbol-name (car pair))))
-      (if active
-	  (require (intern (concat "ob-" lang)))
-	(funcall 'fmakunbound
-		 (intern (concat "org-babel-execute:" lang)))
-	(funcall 'fmakunbound
-		 (intern (concat "org-babel-expand-body:" lang)))))))
-
-(declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
-;;;###autoload
-(defun org-babel-load-file (file &optional compile)
-  "Load Emacs Lisp source code blocks in the Org FILE.
-This function exports the source code using `org-babel-tangle'
-and then loads the resulting file using `load-file'.  With prefix
-arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
-file to byte-code before it is loaded."
-  (interactive "fFile to load: \nP")
-  (let* ((age (lambda (file)
-		(float-time
-		 (time-subtract (current-time)
-				(nth 5 (or (file-attributes (file-truename file))
-					   (file-attributes file)))))))
-	 (base-name (file-name-sans-extension file))
-	 (exported-file (concat base-name ".el")))
-    ;; tangle if the Org file is newer than the elisp file
-    (unless (and (file-exists-p exported-file)
-		 (> (funcall age file) (funcall age exported-file)))
-      ;; Tangle-file traversal returns reversed list of tangled files
-      ;; and we want to evaluate the first target.
-      (setq exported-file
-	    (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
-    (message "%s %s"
-	     (if compile
-		 (progn (byte-compile-file exported-file 'load)
-			"Compiled and loaded")
-	       (progn (load-file exported-file) "Loaded"))
-	     exported-file)))
-
-(defcustom org-babel-load-languages '((emacs-lisp . t))
-  "Languages which can be evaluated in Org buffers.
-This list can be used to load support for any of the languages
-below, note that each language will depend on a different set of
-system executables and/or Emacs modes.  When a language is
-\"loaded\", then code blocks in that language can be evaluated
-with `org-babel-execute-src-block' bound by default to C-c
-C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
-be set to remove code block evaluation from the C-c C-c
-keybinding.  By default only Emacs Lisp (which has no
-requirements) is loaded."
-  :group 'org-babel
-  :set 'org-babel-do-load-languages
-  :version "24.1"
-  :type '(alist :tag "Babel Languages"
-		:key-type
-		(choice
-		 (const :tag "Awk" awk)
-		 (const :tag "C" C)
-		 (const :tag "R" R)
-		 (const :tag "Asymptote" asymptote)
-		 (const :tag "Calc" calc)
-		 (const :tag "Clojure" clojure)
-		 (const :tag "CSS" css)
-		 (const :tag "Ditaa" ditaa)
-		 (const :tag "Dot" dot)
-		 (const :tag "Ebnf2ps" ebnf2ps)
-		 (const :tag "Emacs Lisp" emacs-lisp)
-		 (const :tag "Forth" forth)
-		 (const :tag "Fortran" fortran)
-		 (const :tag "Gnuplot" gnuplot)
-		 (const :tag "Haskell" haskell)
-		 (const :tag "hledger" hledger)
-		 (const :tag "IO" io)
-		 (const :tag "J" J)
-		 (const :tag "Java" java)
-		 (const :tag "Javascript" js)
-		 (const :tag "LaTeX" latex)
-		 (const :tag "Ledger" ledger)
-		 (const :tag "Lilypond" lilypond)
-		 (const :tag "Lisp" lisp)
-		 (const :tag "Makefile" makefile)
-		 (const :tag "Maxima" maxima)
-		 (const :tag "Matlab" matlab)
-		 (const :tag "Mscgen" mscgen)
-		 (const :tag "Ocaml" ocaml)
-		 (const :tag "Octave" octave)
-		 (const :tag "Org" org)
-		 (const :tag "Perl" perl)
-		 (const :tag "Pico Lisp" picolisp)
-		 (const :tag "PlantUML" plantuml)
-		 (const :tag "Python" python)
-		 (const :tag "Ruby" ruby)
-		 (const :tag "Sass" sass)
-		 (const :tag "Scala" scala)
-		 (const :tag "Scheme" scheme)
-		 (const :tag "Screen" screen)
-		 (const :tag "Shell Script" shell)
-		 (const :tag "Shen" shen)
-		 (const :tag "Sql" sql)
-		 (const :tag "Sqlite" sqlite)
-		 (const :tag "Stan" stan)
-		 (const :tag "Vala" vala))
-		:value-type (boolean :tag "Activate" :value t)))
-
-;;;; Customization variables
-(defcustom org-clone-delete-id nil
-  "Remove ID property of clones of a subtree.
-When non-nil, clones of a subtree don't inherit the ID property.
-Otherwise they inherit the ID property with a new unique
-identifier."
-  :type 'boolean
-  :version "24.1"
-  :group 'org-id)
-
-;;; Version
-(org-check-version)
-
-;;;###autoload
-(defun org-version (&optional here full message)
-  "Show the Org version.
-Interactively, or when MESSAGE is non-nil, show it in echo area.
-With prefix argument, or when HERE is non-nil, insert it at point.
-In non-interactive uses, a reduced version string is output unless
-FULL is given."
-  (interactive (list current-prefix-arg t (not current-prefix-arg)))
-  (let ((org-dir (ignore-errors (org-find-library-dir "org")))
-	(save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
-	(load-suffixes (list ".el"))
-	(org-install-dir
-	 (ignore-errors (org-find-library-dir "org-loaddefs"))))
-    (unless (and (fboundp 'org-release) (fboundp 'org-git-version))
-      (org-load-noerror-mustsuffix (concat org-dir "org-version")))
-    (let* ((load-suffixes save-load-suffixes)
-	   (release (org-release))
-	   (git-version (org-git-version))
-	   (version (format "Org mode version %s (%s @ %s)"
-			    release
-			    git-version
-			    (if org-install-dir
-				(if (string= org-dir org-install-dir)
-				    org-install-dir
-				  (concat "mixed installation! "
-					  org-install-dir
-					  " and "
-					  org-dir))
-			      "org-loaddefs.el can not be found!")))
-	   (version1 (if full version release)))
-      (when here (insert version1))
-      (when message (message "%s" version1))
-      version1)))
-
-(defconst org-version (org-version))
-
-
-;;; Syntax Constants
-
-;;;; Block
-
-(defconst org-block-regexp
-  "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
-  "Regular expression for hiding blocks.")
-
-(defconst org-dblock-start-re
-  "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
-  "Matches the start line of a dynamic block, with parameters.")
-
-(defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
-  "Matches the end of a dynamic block.")
-
-;;;; Clock and Planning
-
-(defconst org-clock-string "CLOCK:"
-  "String used as prefix for timestamps clocking work hours on an item.")
-
-(defvar org-closed-string "CLOSED:"
-  "String used as the prefix for timestamps logging closing a TODO entry.")
-
-(defvar org-deadline-string "DEADLINE:"
-  "String to mark deadline entries.
-\\<org-mode-map>
-A deadline is this string, followed by a time stamp.  It must be
-a word, terminated by a colon.  You can insert a schedule keyword
-and a timestamp with `\\[org-deadline]'.")
-
-(defvar org-scheduled-string "SCHEDULED:"
-  "String to mark scheduled TODO entries.
-\\<org-mode-map>
-A schedule is this string, followed by a time stamp.  It must be
-a word, terminated by a colon.  You can insert a schedule keyword
-and a timestamp with `\\[org-schedule]'.")
-
-(defconst org-ds-keyword-length
-  (+ 2
-     (apply #'max
-	    (mapcar #'length
-		    (list org-deadline-string org-scheduled-string
-			  org-clock-string org-closed-string))))
-  "Maximum length of the DEADLINE and SCHEDULED keywords.")
-
-(defconst org-planning-line-re
-  (concat "^[ \t]*"
-	  (regexp-opt
-	   (list org-closed-string org-deadline-string org-scheduled-string)
-	   t))
-  "Matches a line with planning info.
-Matched keyword is in group 1.")
-
-(defconst org-clock-line-re
-  (concat "^[ \t]*" org-clock-string)
-  "Matches a line with clock info.")
-
-(defconst org-deadline-regexp (concat "\\<" org-deadline-string)
-  "Matches the DEADLINE keyword.")
-
-(defconst org-deadline-time-regexp
-  (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
-  "Matches the DEADLINE keyword together with a time stamp.")
-
-(defconst org-deadline-time-hour-regexp
-  (concat "\\<" org-deadline-string
-	  " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
-  "Matches the DEADLINE keyword together with a time-and-hour stamp.")
-
-(defconst org-deadline-line-regexp
-  (concat "\\<\\(" org-deadline-string "\\).*")
-  "Matches the DEADLINE keyword and the rest of the line.")
-
-(defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
-  "Matches the SCHEDULED keyword.")
-
-(defconst org-scheduled-time-regexp
-  (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
-  "Matches the SCHEDULED keyword together with a time stamp.")
-
-(defconst org-scheduled-time-hour-regexp
-  (concat "\\<" org-scheduled-string
-	  " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
-  "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
-
-(defconst org-closed-time-regexp
-  (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
-  "Matches the CLOSED keyword together with a time stamp.")
-
-(defconst org-keyword-time-regexp
-  (concat "\\<"
-	  (regexp-opt
-	   (list org-scheduled-string org-deadline-string org-closed-string
-		 org-clock-string)
-	   t)
-	  " *[[<]\\([^]>]+\\)[]>]")
-  "Matches any of the 4 keywords, together with the time stamp.")
-
-(defconst org-keyword-time-not-clock-regexp
-  (concat
-   "\\<"
-   (regexp-opt
-    (list org-scheduled-string org-deadline-string org-closed-string) t)
-   " *[[<]\\([^]>]+\\)[]>]")
-  "Matches any of the 3 keywords, together with the time stamp.")
-
-(defconst org-maybe-keyword-time-regexp
-  (concat "\\(\\<"
-	  (regexp-opt
-	   (list org-scheduled-string org-deadline-string org-closed-string
-		 org-clock-string)
-	   t)
-	  "\\)?"
-	  " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
-	  "\\|"
-	  "<%%([^\r\n>]*>\\)")
-  "Matches a timestamp, possibly preceded by a keyword.")
-
-(defconst org-all-time-keywords
-  (mapcar (lambda (w) (substring w 0 -1))
-	  (list org-scheduled-string org-deadline-string
-		org-clock-string org-closed-string))
-  "List of time keywords.")
-
-;;;; Drawer
-
-(defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
-  "Matches first or last line of a hidden block.
-Group 1 contains drawer's name or \"END\".")
-
-(defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
-  "Regular expression matching the first line of a property drawer.")
-
-(defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
-  "Regular expression matching the last line of a property drawer.")
-
-(defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
-  "Regular expression matching the first line of a clock drawer.")
-
-(defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
-  "Regular expression matching the last line of a clock drawer.")
-
-(defconst org-property-drawer-re
-  (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
-	  "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*?"
-	  "[ \t]*:END:[ \t]*$")
-  "Matches an entire property drawer.")
-
-(defconst org-clock-drawer-re
-  (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
-	  org-clock-drawer-end-re "\\)\n?")
-  "Matches an entire clock drawer.")
-
-;;;; Headline
-
-(defconst org-heading-keyword-regexp-format
-  "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
-  "Printf format for a regexp matching a headline with some keyword.
-This regexp will match the headline of any node which has the
-exact keyword that is put into the format.  The keyword isn't in
-any group by default, but the stars and the body are.")
-
-(defconst org-heading-keyword-maybe-regexp-format
-  "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
-  "Printf format for a regexp matching a headline, possibly with some keyword.
-This regexp can match any headline with the specified keyword, or
-without a keyword.  The keyword isn't in any group by default,
-but the stars and the body are.")
-
-(defconst org-archive-tag "ARCHIVE"
-  "The tag that marks a subtree as archived.
-An archived subtree does not open during visibility cycling, and does
-not contribute to the agenda listings.")
-
-(eval-and-compile
-  (defconst org-comment-string "COMMENT"
-    "Entries starting with this keyword will never be exported.
-\\<org-mode-map>
-An entry can be toggled between COMMENT and normal with
-`\\[org-toggle-comment]'."))
-
-
-;;;; LaTeX Environments and Fragments
-
-(defconst org-latex-regexps
-  '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
-    ;; ("$" "\\([ \t(]\\|^\\)\\(\\(\\([$]\\)\\([^ \t\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \t\n,.$]\\)\\4\\)\\)\\([ \t.,?;:'\")]\\|$\\)" 2 nil)
-    ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
-    ("$1" "\\([^$]\\|^\\)\\(\\$[^ \t\r\n,;.$]\\$\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|'\\|$\\)" 2 nil)
-    ("$"  "\\([^$]\\|^\\)\\(\\(\\$\\([^ \t\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \t\n,.$]\\)\\$\\)\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|'\\|$\\)" 2 nil)
-    ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
-    ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
-    ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
-  "Regular expressions for matching embedded LaTeX.")
-
-;;;; Node Property
-
-(defconst org-effort-property "Effort"
-  "The property that is being used to keep track of effort estimates.
-Effort estimates given in this property need to have the format H:MM.")
-
-;;;; Table
-
-(defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
-  "Detect an org-type or table-type table.")
-
-(defconst org-table-line-regexp "^[ \t]*|"
-  "Detect an org-type table line.")
-
-(defconst org-table-dataline-regexp "^[ \t]*|[^-]"
-  "Detect an org-type table line.")
-
-(defconst org-table-hline-regexp "^[ \t]*|-"
-  "Detect an org-type table hline.")
-
-(defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
-  "Detect a table-type table hline.")
-
-(defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
-  "Detect the first line outside a table when searching from within it.
-This works for both table types.")
-
-(defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
-  "Detect a #+TBLFM line.")
-
-;;;; Timestamp
-
-(defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
-  "Regular expression for fast time stamp matching.")
-
-(defconst org-ts-regexp-inactive
-  "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
-  "Regular expression for fast inactive time stamp matching.")
-
-(defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
-  "Regular expression for fast time stamp matching.")
-
-(defconst org-ts-regexp0
-  "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
-  "Regular expression matching time strings for analysis.
-This one does not require the space after the date, so it can be used
-on a string that terminates immediately after the date.")
-
-(defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
-  "Regular expression matching time strings for analysis.")
-
-(defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
-  "Regular expression matching time stamps, with groups.")
-
-(defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
-  "Regular expression matching time stamps (also [..]), with groups.")
-
-(defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
-  "Regular expression matching a time stamp range.")
-
-(defconst org-tr-regexp-both
-  (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
-  "Regular expression matching a time stamp range.")
-
-(defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
-				 org-ts-regexp "\\)?")
-  "Regular expression matching a time stamp or time stamp range.")
-
-(defconst org-tsr-regexp-both
-  (concat org-ts-regexp-both "\\(--?-?"
-	  org-ts-regexp-both "\\)?")
-  "Regular expression matching a time stamp or time stamp range.
-The time stamps may be either active or inactive.")
-
-(defconst org-repeat-re
-  "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
-  "Regular expression for specifying repeated events.
-After a match, group 1 contains the repeat expression.")
-
-(defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
-  "Formats for `format-time-string' which are used for time stamps.")
-
-
-;;; The custom variables
-
-(defgroup org nil
-  "Outline-based notes management and organizer."
-  :tag "Org"
-  :group 'outlines
-  :group 'calendar)
-
-(defcustom org-mode-hook nil
-  "Mode hook for Org mode, run after the mode was turned on."
-  :group 'org
-  :type 'hook)
-
-(defcustom org-load-hook nil
-  "Hook that is run after org.el has been loaded."
-  :group 'org
-  :type 'hook)
-
-(defcustom org-log-buffer-setup-hook nil
-  "Hook that is run after an Org log buffer is created."
-  :group 'org
-  :version "24.1"
-  :type 'hook)
-
-(defvar org-modules)  ; defined below
-(defvar org-modules-loaded nil
-  "Have the modules been loaded already?")
-
-(defun org-load-modules-maybe (&optional force)
-  "Load all extensions listed in `org-modules'."
-  (when (or force (not org-modules-loaded))
-    (dolist (ext org-modules)
-      (condition-case nil (require ext)
-	(error (message "Problems while trying to load feature `%s'" ext))))
-    (setq org-modules-loaded t)))
-
-(defun org-set-modules (var value)
-  "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
-  (set var value)
-  (when (featurep 'org)
-    (org-load-modules-maybe 'force)
-    (org-element-cache-reset 'all)))
-
-(defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
-  "Modules that should always be loaded together with org.el.
-
-If a description starts with <C>, the file is not part of Emacs
-and loading it will require that you have downloaded and properly
-installed the Org mode distribution.
-
-You can also use this system to load external packages (i.e. neither Org
-core modules, nor modules from the CONTRIB directory).  Just add symbols
-to the end of the list.  If the package is called org-xyz.el, then you need
-to add the symbol `xyz', and the package must have a call to:
-
-   (provide \\='org-xyz)
-
-For export specific modules, see also `org-export-backends'."
-  :group 'org
-  :set 'org-set-modules
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type
-  '(set :greedy t
-	(const :tag "   bbdb:              Links to BBDB entries" org-bbdb)
-	(const :tag "   bibtex:            Links to BibTeX entries" org-bibtex)
-	(const :tag "   crypt:             Encryption of subtrees" org-crypt)
-	(const :tag "   ctags:             Access to Emacs tags with links" org-ctags)
-	(const :tag "   docview:           Links to doc-view buffers" org-docview)
-	(const :tag "   eww:               Store link to url of eww" org-eww)
-	(const :tag "   gnus:              Links to GNUS folders/messages" org-gnus)
-	(const :tag "   habit:             Track your consistency with habits" org-habit)
-	(const :tag "   id:                Global IDs for identifying entries" org-id)
-	(const :tag "   info:              Links to Info nodes" org-info)
-	(const :tag "   inlinetask:        Tasks independent of outline hierarchy" org-inlinetask)
-	(const :tag "   irc:               Links to IRC/ERC chat sessions" org-irc)
-	(const :tag "   mhe:               Links to MHE folders/messages" org-mhe)
-	(const :tag "   mouse:             Additional mouse support" org-mouse)
-	(const :tag "   protocol:          Intercept calls from emacsclient" org-protocol)
-	(const :tag "   rmail:             Links to RMAIL folders/messages" org-rmail)
-	(const :tag "   w3m:               Special cut/paste from w3m to Org mode." org-w3m)
-
-	(const :tag "C  annotate-file:     Annotate a file with org syntax" org-annotate-file)
-	(const :tag "C  bookmark:          Org links to bookmarks" org-bookmark)
-	(const :tag "C  checklist:         Extra functions for checklists in repeated tasks" org-checklist)
-	(const :tag "C  choose:            Use TODO keywords to mark decisions states" org-choose)
-	(const :tag "C  collector:         Collect properties into tables" org-collector)
-	(const :tag "C  depend:            TODO dependencies for Org mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
-	(const :tag "C  drill:             Flashcards and spaced repetition for Org mode" org-drill)
-	(const :tag "C  elisp-symbol:      Org links to emacs-lisp symbols" org-elisp-symbol)
-	(const :tag "C  eshell             Support for links to working directories in eshell" org-eshell)
-	(const :tag "C  eval-light:        Evaluate inbuffer-code on demand" org-eval-light)
-	(const :tag "C  eval:              Include command output as text" org-eval)
-	(const :tag "C  expiry:            Expiry mechanism for Org entries" org-expiry)
-	(const :tag "C  favtable:          Lookup table of favorite references and links" org-favtable)
-	(const :tag "C  git-link:          Provide org links to specific file version" org-git-link)
-	(const :tag "C  interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
-        (const :tag "C  invoice:           Help manage client invoices in Org mode" org-invoice)
-	(const :tag "C  learn:             SuperMemo's incremental learning algorithm" org-learn)
-	(const :tag "C  mac-iCal           Imports events from iCal.app to the Emacs diary" org-mac-iCal)
-	(const :tag "C  mac-link:          Grab links and url from various mac Applications" org-mac-link)
-	(const :tag "C  mairix:            Hook mairix search into Org for different MUAs" org-mairix)
-	(const :tag "C  man:               Support for links to manpages in Org mode" org-man)
-	(const :tag "C  mew:               Links to Mew folders/messages" org-mew)
-	(const :tag "C  mtags:             Support for muse-like tags" org-mtags)
-	(const :tag "C  notmuch:           Provide org links to notmuch searches or messages" org-notmuch)
-	(const :tag "C  panel:             Simple routines for us with bad memory" org-panel)
-	(const :tag "C  registry:          A registry for Org links" org-registry)
-	(const :tag "C  screen:            Visit screen sessions through Org links" org-screen)
-	(const :tag "C  secretary:         Team management with Org" org-secretary)
-	(const :tag "C  sqlinsert:         Convert Org tables to SQL insertions" orgtbl-sqlinsert)
-	(const :tag "C  toc:               Table of contents for Org buffer" org-toc)
-	(const :tag "C  track:             Keep up with Org mode development" org-track)
-	(const :tag "C  velocity           Something like Notational Velocity for Org" org-velocity)
-	(const :tag "C  vm:                Links to VM folders/messages" org-vm)
-	(const :tag "C  wikinodes:         CamelCase wiki-like links" org-wikinodes)
-	(const :tag "C  wl:                Links to Wanderlust folders/messages" org-wl)
-	(repeat :tag "External packages" :inline t (symbol :tag "Package"))))
-
-(defvar org-export-registered-backends) ; From ox.el.
-(declare-function org-export-derived-backend-p "ox" (backend &rest backends))
-(declare-function org-export-backend-name "ox" (backend) t)
-(defcustom org-export-backends '(ascii html icalendar latex odt)
-  "List of export back-ends that should be always available.
-
-If a description starts with <C>, the file is not part of Emacs
-and loading it will require that you have downloaded and properly
-installed the Org mode distribution.
-
-Unlike to `org-modules', libraries in this list will not be
-loaded along with Org, but only once the export framework is
-needed.
-
-This variable needs to be set before org.el is loaded.  If you
-need to make a change while Emacs is running, use the customize
-interface or run the following code, where VAL stands for the new
-value of the variable, after updating it:
-
-  (progn
-    (setq org-export-registered-backends
-          (cl-remove-if-not
-           (lambda (backend)
-             (let ((name (org-export-backend-name backend)))
-               (or (memq name val)
-                   (catch \\='parentp
-                     (dolist (b val)
-                       (and (org-export-derived-backend-p b name)
-                            (throw \\='parentp t)))))))
-           org-export-registered-backends))
-    (let ((new-list (mapcar #\\='org-export-backend-name
-                            org-export-registered-backends)))
-      (dolist (backend val)
-        (cond
-         ((not (load (format \"ox-%s\" backend) t t))
-          (message \"Problems while trying to load export back-end \\=`%s\\='\"
-                   backend))
-         ((not (memq backend new-list)) (push backend new-list))))
-      (set-default \\='org-export-backends new-list)))
-
-Adding a back-end to this list will also pull the back-end it
-depends on, if any."
-  :group 'org
-  :group 'org-export
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :initialize 'custom-initialize-set
-  :set (lambda (var val)
-	 (if (not (featurep 'ox)) (set-default var val)
-	   ;; Any back-end not required anymore (not present in VAL and not
-	   ;; a parent of any back-end in the new value) is removed from the
-	   ;; list of registered back-ends.
-	   (setq org-export-registered-backends
-		 (cl-remove-if-not
-		  (lambda (backend)
-		    (let ((name (org-export-backend-name backend)))
-		      (or (memq name val)
-			  (catch 'parentp
-			    (dolist (b val)
-			      (and (org-export-derived-backend-p b name)
-				   (throw 'parentp t)))))))
-		  org-export-registered-backends))
-	   ;; Now build NEW-LIST of both new back-ends and required
-	   ;; parents.
-	   (let ((new-list (mapcar #'org-export-backend-name
-				   org-export-registered-backends)))
-	     (dolist (backend val)
-	       (cond
-		((not (load (format "ox-%s" backend) t t))
-		 (message "Problems while trying to load export back-end `%s'"
-			  backend))
-		((not (memq backend new-list)) (push backend new-list))))
-	     ;; Set VAR to that list with fixed dependencies.
-	     (set-default var new-list))))
-  :type '(set :greedy t
-	      (const :tag "   ascii       Export buffer to ASCII format" ascii)
-	      (const :tag "   beamer      Export buffer to Beamer presentation" beamer)
-	      (const :tag "   html        Export buffer to HTML format" html)
-	      (const :tag "   icalendar   Export buffer to iCalendar format" icalendar)
-	      (const :tag "   latex       Export buffer to LaTeX format" latex)
-	      (const :tag "   man         Export buffer to MAN format" man)
-	      (const :tag "   md          Export buffer to Markdown format" md)
-	      (const :tag "   odt         Export buffer to ODT format" odt)
-	      (const :tag "   org         Export buffer to Org format" org)
-	      (const :tag "   texinfo     Export buffer to Texinfo format" texinfo)
-	      (const :tag "C  confluence  Export buffer to Confluence Wiki format" confluence)
-	      (const :tag "C  deck        Export buffer to deck.js presentations" deck)
-	      (const :tag "C  freemind    Export buffer to Freemind mindmap format" freemind)
-	      (const :tag "C  groff       Export buffer to Groff format" groff)
-	      (const :tag "C  koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
-	      (const :tag "C  RSS 2.0     Export buffer to RSS 2.0 format" rss)
-	      (const :tag "C  s5          Export buffer to s5 presentations" s5)
-	      (const :tag "C  taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
-
-(eval-after-load 'ox
-  '(dolist (backend org-export-backends)
-     (condition-case nil (require (intern (format "ox-%s" backend)))
-       (error (message "Problems while trying to load export back-end `%s'"
-		       backend)))))
-
-(defcustom org-support-shift-select nil
-  "Non-nil means make shift-cursor commands select text when possible.
-\\<org-mode-map>\
-
-In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
-start selecting a region, or enlarge regions started in this way.
-In Org mode, in special contexts, these same keys are used for
-other purposes, important enough to compete with shift selection.
-Org tries to balance these needs by supporting `shift-select-mode'
-outside these special contexts, under control of this variable.
-
-The default of this variable is nil, to avoid confusing behavior.  Shifted
-cursor keys will then execute Org commands in the following contexts:
-- on a headline, changing TODO state (left/right) and priority (up/down)
-- on a time stamp, changing the time
-- in a plain list item, changing the bullet type
-- in a property definition line, switching between allowed values
-- in the BEGIN line of a clock table (changing the time block).
-Outside these contexts, the commands will throw an error.
-
-When this variable is t and the cursor is not in a special
-context, Org mode will support shift-selection for making and
-enlarging regions.  To make this more effective, the bullet
-cycling will no longer happen anywhere in an item line, but only
-if the cursor is exactly on the bullet.
-
-If you set this variable to the symbol `always', then the keys
-will not be special in headlines, property lines, and item lines,
-to make shift selection work there as well.  If this is what you
-want, you can use the following alternative commands:
-`\\[org-todo]' and `\\[org-priority]' \
-to change TODO state and priority,
-`\\[universal-argument] \\[universal-argument] \\[org-todo]' \
-can be used to switch TODO sets,
-`\\[org-ctrl-c-minus]' to cycle item bullet types,
-and properties can be edited by hand or in column view.
-
-However, when the cursor is on a timestamp, shift-cursor commands
-will still edit the time stamp - this is just too good to give up."
-  :group 'org
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "When outside special context" t)
-	  (const :tag "Everywhere except timestamps" always)))
-
-(defcustom org-loop-over-headlines-in-active-region nil
-  "Shall some commands act upon headlines in the active region?
-
-When set to t, some commands will be performed in all headlines
-within the active region.
-
-When set to `start-level', some commands will be performed in all
-headlines within the active region, provided that these headlines
-are of the same level than the first one.
-
-When set to a string, those commands will be performed on the
-matching headlines within the active region.  Such string must be
-a tags/property/todo match as it is used in the agenda tags view.
-
-The list of commands is: `org-schedule', `org-deadline',
-`org-todo', `org-archive-subtree', `org-archive-set-tag' and
-`org-archive-to-archive-sibling'.  The archiving commands skip
-already archived entries."
-  :type '(choice (const :tag "Don't loop" nil)
-		 (const :tag "All headlines in active region" t)
-		 (const :tag "In active region, headlines at the same level than the first one" start-level)
-		 (string :tag "Tags/Property/Todo matcher"))
-  :version "24.1"
-  :group 'org-todo
-  :group 'org-archive)
-
-(defgroup org-startup nil
-  "Options concerning startup of Org mode."
-  :tag "Org Startup"
-  :group 'org)
-
-(defcustom org-startup-folded t
-  "Non-nil means entering Org mode will switch to OVERVIEW.
-
-This can also be configured on a per-file basis by adding one of
-the following lines anywhere in the buffer:
-
-   #+STARTUP: fold              (or `overview', this is equivalent)
-   #+STARTUP: nofold            (or `showall', this is equivalent)
-   #+STARTUP: content
-   #+STARTUP: showeverything
-
-Set `org-agenda-inhibit-startup' to a non-nil value if you want
-to ignore this option when Org opens agenda files for the first
-time."
-  :group 'org-startup
-  :type '(choice
-	  (const :tag "nofold: show all" nil)
-	  (const :tag "fold: overview" t)
-	  (const :tag "content: all headlines" content)
-	  (const :tag "show everything, even drawers" showeverything)))
-
-(defcustom org-startup-truncated t
-  "Non-nil means entering Org mode will set `truncate-lines'.
-This is useful since some lines containing links can be very long and
-uninteresting.  Also tables look terrible when wrapped.
-
-The variable `org-startup-truncated' allows to configure
-truncation for Org mode different to the other modes that use the
-variable `truncate-lines' and as a shortcut instead of putting
-the variable `truncate-lines' into the `org-mode-hook'.  If one
-wants to configure truncation for Org mode not statically but
-dynamically e. g. in a hook like `ediff-prepare-buffer-hook' then
-the variable `truncate-lines' has to be used because in such a
-case it is too late to set the variable `org-startup-truncated'."
-  :group 'org-startup
-  :type 'boolean)
-
-(defcustom org-startup-indented nil
-  "Non-nil means turn on `org-indent-mode' on startup.
-This can also be configured on a per-file basis by adding one of
-the following lines anywhere in the buffer:
-
-   #+STARTUP: indent
-   #+STARTUP: noindent"
-  :group 'org-structure
-  :type '(choice
-	  (const :tag "Not" nil)
-	  (const :tag "Globally (slow on startup in large files)" t)))
-
-(defcustom org-use-sub-superscripts t
-  "Non-nil means interpret \"_\" and \"^\" for display.
-
-If you want to control how Org exports those characters, see
-`org-export-with-sub-superscripts'.  `org-use-sub-superscripts'
-used to be an alias for `org-export-with-sub-superscripts' in
-Org <8.0, it is not anymore.
-
-When this option is turned on, you can use TeX-like syntax for
-sub- and superscripts within the buffer.  Several characters after
-\"_\" or \"^\" will be considered as a single item - so grouping
-with {} is normally not needed.  For example, the following things
-will be parsed as single sub- or superscripts:
-
- 10^24   or   10^tau     several digits will be considered 1 item.
- 10^-12  or   10^-tau    a leading sign with digits or a word
- x^2-y^3                 will be read as x^2 - y^3, because items are
-			 terminated by almost any nonword/nondigit char.
- x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.
-
-Still, ambiguity is possible.  So when in doubt, use {} to enclose
-the sub/superscript.  If you set this variable to the symbol `{}',
-the braces are *required* in order to trigger interpretations as
-sub/superscript.  This can be helpful in documents that need \"_\"
-frequently in plain text."
-  :group 'org-startup
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Always interpret" t)
-	  (const :tag "Only with braces" {})
-	  (const :tag "Never interpret" nil)))
-
-(defcustom org-startup-with-beamer-mode nil
-  "Non-nil means turn on `org-beamer-mode' on startup.
-This can also be configured on a per-file basis by adding one of
-the following lines anywhere in the buffer:
-
-   #+STARTUP: beamer"
-  :group 'org-startup
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-startup-align-all-tables nil
-  "Non-nil means align all tables when visiting a file.
-This is useful when the column width in tables is forced with <N> cookies
-in table fields.  Such tables will look correct only after the first re-align.
-This can also be configured on a per-file basis by adding one of
-the following lines anywhere in the buffer:
-   #+STARTUP: align
-   #+STARTUP: noalign"
-  :group 'org-startup
-  :type 'boolean)
-
-(defcustom org-startup-with-inline-images nil
-  "Non-nil means show inline images when loading a new Org file.
-This can also be configured on a per-file basis by adding one of
-the following lines anywhere in the buffer:
-   #+STARTUP: inlineimages
-   #+STARTUP: noinlineimages"
-  :group 'org-startup
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-startup-with-latex-preview nil
-  "Non-nil means preview LaTeX fragments when loading a new Org file.
-
-This can also be configured on a per-file basis by adding one of
-the following lines anywhere in the buffer:
-   #+STARTUP: latexpreview
-   #+STARTUP: nolatexpreview"
-  :group 'org-startup
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-insert-mode-line-in-empty-file nil
-  "Non-nil means insert the first line setting Org mode in empty files.
-When the function `org-mode' is called interactively in an empty file, this
-normally means that the file name does not automatically trigger Org mode.
-To ensure that the file will always be in Org mode in the future, a
-line enforcing Org mode will be inserted into the buffer, if this option
-has been set."
-  :group 'org-startup
-  :type 'boolean)
-
-(defcustom org-replace-disputed-keys nil
-  "Non-nil means use alternative key bindings for some keys.
-Org mode uses S-<cursor> keys for changing timestamps and priorities.
-These keys are also used by other packages like shift-selection-mode'
-\(built into Emacs 23), `CUA-mode' or `windmove.el'.
-If you want to use Org mode together with one of these other modes,
-or more generally if you would like to move some Org mode commands to
-other keys, set this variable and configure the keys with the variable
-`org-disputed-keys'.
-
-This option is only relevant at load-time of Org mode, and must be set
-*before* org.el is loaded.  Changing it requires a restart of Emacs to
-become effective."
-  :group 'org-startup
-  :type 'boolean)
-
-(defcustom org-use-extra-keys nil
-  "Non-nil means use extra key sequence definitions for certain commands.
-This happens automatically if `window-system' is nil.  This
-variable lets you do the same manually.  You must set it before
-loading Org."
-  :group 'org-startup
-  :type 'boolean)
-
-(defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
-
-(defcustom org-disputed-keys
-  '(([(shift up)]		. [(meta p)])
-    ([(shift down)]		. [(meta n)])
-    ([(shift left)]		. [(meta -)])
-    ([(shift right)]		. [(meta +)])
-    ([(control shift right)] 	. [(meta shift +)])
-    ([(control shift left)]	. [(meta shift -)]))
-  "Keys for which Org mode and other modes compete.
-This is an alist, cars are the default keys, second element specifies
-the alternative to use when `org-replace-disputed-keys' is t.
-
-Keys can be specified in any syntax supported by `define-key'.
-The value of this option takes effect only at Org mode startup,
-therefore you'll have to restart Emacs to apply it after changing."
-  :group 'org-startup
-  :type 'alist)
-
-(defun org-key (key)
-  "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
-Or return the original if not disputed."
-  (when org-replace-disputed-keys
-    (let* ((nkey (key-description key))
-	   (x (cl-find-if (lambda (x) (equal (key-description (car x)) nkey))
-			  org-disputed-keys)))
-      (setq key (if x (cdr x) key))))
-  key)
-
-(defun org-defkey (keymap key def)
-  "Define a key, possibly translated, as returned by `org-key'."
-  (define-key keymap (org-key key) def))
-
-(defcustom org-ellipsis nil
-  "The ellipsis to use in the Org mode outline.
-
-When nil, just use the standard three dots.  When a non-empty string,
-use that string instead.
-
-The change affects only Org mode (which will then use its own display table).
-Changing this requires executing `\\[org-mode]' in a buffer to become
-effective."
-  :group 'org-startup
-  :type '(choice (const :tag "Default" nil)
-		 (string :tag "String" :value "...#"))
-  :safe (lambda (v) (and (string-or-null-p v) (not (equal "" v)))))
-
-(defvar org-display-table nil
-  "The display table for Org mode, in case `org-ellipsis' is non-nil.")
-
-(defgroup org-keywords nil
-  "Keywords in Org mode."
-  :tag "Org Keywords"
-  :group 'org)
-
-(defcustom org-closed-keep-when-no-todo nil
-  "Remove CLOSED: time-stamp when switching back to a non-todo state?"
-  :group 'org-todo
-  :group 'org-keywords
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defgroup org-structure nil
-  "Options concerning the general structure of Org files."
-  :tag "Org Structure"
-  :group 'org)
-
-(defgroup org-reveal-location nil
-  "Options about how to make context of a location visible."
-  :tag "Org Reveal Location"
-  :group 'org-structure)
-
-(defcustom org-show-context-detail '((agenda . local)
-				     (bookmark-jump . lineage)
-				     (isearch . lineage)
-				     (default . ancestors))
-  "Alist between context and visibility span when revealing a location.
-
-\\<org-mode-map>Some actions may move point into invisible
-locations.  As a consequence, Org always expose a neighborhood
-around point.  How much is shown depends on the initial action,
-or context.  Valid contexts are
-
-  agenda         when exposing an entry from the agenda
-  org-goto       when using the command `org-goto' (`\\[org-goto]')
-  occur-tree     when using the command `org-occur' (`\\[org-sparse-tree] /')
-  tags-tree      when constructing a sparse tree based on tags matches
-  link-search    when exposing search matches associated with a link
-  mark-goto      when exposing the jump goal of a mark
-  bookmark-jump  when exposing a bookmark location
-  isearch        when exiting from an incremental search
-  default        default for all contexts not set explicitly
-
-Allowed visibility spans are
-
-  minimal        show current headline; if point is not on headline,
-                 also show entry
-
-  local          show current headline, entry and next headline
-
-  ancestors      show current headline and its direct ancestors; if
-                 point is not on headline, also show entry
-
-  lineage        show current headline, its direct ancestors and all
-                 their children; if point is not on headline, also show
-                 entry and first child
-
-  tree           show current headline, its direct ancestors and all
-                 their children; if point is not on headline, also show
-                 entry and all children
-
-  canonical      show current headline, its direct ancestors along with
-                 their entries and children; if point is not located on
-                 the headline, also show current entry and all children
-
-As special cases, a nil or t value means show all contexts in
-`minimal' or `canonical' view, respectively.
-
-Some views can make displayed information very compact, but also
-make it harder to edit the location of the match.  In such
-a case, use the command `org-reveal' (`\\[org-reveal]') to show
-more context."
-  :group 'org-reveal-location
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type '(choice
-	  (const :tag "Canonical" t)
-	  (const :tag "Minimal" nil)
-	  (repeat :greedy t :tag "Individual contexts"
-		  (cons
-		   (choice :tag "Context"
-			   (const agenda)
-			   (const org-goto)
-			   (const occur-tree)
-			   (const tags-tree)
-			   (const link-search)
-			   (const mark-goto)
-			   (const bookmark-jump)
-			   (const isearch)
-			   (const default))
-		   (choice :tag "Detail level"
-			   (const minimal)
-			   (const local)
-			   (const ancestors)
-			   (const lineage)
-			   (const tree)
-			   (const canonical))))))
-
-(defcustom org-indirect-buffer-display 'other-window
-  "How should indirect tree buffers be displayed?
-
-This applies to indirect buffers created with the commands
-`org-tree-to-indirect-buffer' and `org-agenda-tree-to-indirect-buffer'.
-
-Valid values are:
-current-window   Display in the current window
-other-window     Just display in another window.
-dedicated-frame  Create one new frame, and re-use it each time.
-new-frame        Make a new frame each time.  Note that in this case
-                 previously-made indirect buffers are kept, and you need to
-                 kill these buffers yourself."
-  :group 'org-structure
-  :group 'org-agenda-windows
-  :type '(choice
-	  (const :tag "In current window" current-window)
-	  (const :tag "In current frame, other window" other-window)
-	  (const :tag "Each time a new frame" new-frame)
-	  (const :tag "One dedicated frame" dedicated-frame)))
-
-(defcustom org-use-speed-commands nil
-  "Non-nil means activate single letter commands at beginning of a headline.
-This may also be a function to test for appropriate locations where speed
-commands should be active.
-
-For example, to activate speed commands when the point is on any
-star at the beginning of the headline, you can do this:
-
-  (setq org-use-speed-commands
-      (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
-  :group 'org-structure
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "At beginning of headline stars" t)
-	  (function)))
-
-(defcustom org-speed-commands-user nil
-  "Alist of additional speed commands.
-This list will be checked before `org-speed-commands-default'
-when the variable `org-use-speed-commands' is non-nil
-and when the cursor is at the beginning of a headline.
-The car of each entry is a string with a single letter, which must
-be assigned to `self-insert-command' in the global map.
-The cdr is either a command to be called interactively, a function
-to be called, or a form to be evaluated.
-An entry that is just a list with a single string will be interpreted
-as a descriptive headline that will be added when listing the speed
-commands in the Help buffer using the `?' speed command."
-  :group 'org-structure
-  :type '(repeat :value ("k" . ignore)
-		 (choice :value ("k" . ignore)
-			 (list :tag "Descriptive Headline" (string :tag "Headline"))
-			 (cons :tag "Letter and Command"
-			       (string :tag "Command letter")
-			       (choice
-				(function)
-				(sexp))))))
-
-(defcustom org-bookmark-names-plist
-  '(:last-capture "org-capture-last-stored"
-		  :last-refile "org-refile-last-stored"
-		  :last-capture-marker "org-capture-last-stored-marker")
-  "Names for bookmarks automatically set by some Org commands.
-This can provide strings as names for a number of bookmarks Org sets
-automatically.  The following keys are currently implemented:
-  :last-capture
-  :last-capture-marker
-  :last-refile
-When a key does not show up in the property list, the corresponding bookmark
-is not set."
-  :group 'org-structure
-  :type 'plist)
-
-(defgroup org-cycle nil
-  "Options concerning visibility cycling in Org mode."
-  :tag "Org Cycle"
-  :group 'org-structure)
-
-(defcustom org-cycle-skip-children-state-if-no-children t
-  "Non-nil means skip CHILDREN state in entries that don't have any."
-  :group 'org-cycle
-  :type 'boolean)
-
-(defcustom org-cycle-max-level nil
-  "Maximum level which should still be subject to visibility cycling.
-Levels higher than this will, for cycling, be treated as text, not a headline.
-When `org-odd-levels-only' is set, a value of N in this variable actually
-means 2N-1 stars as the limiting headline.
-When nil, cycle all levels.
-Note that the limiting level of cycling is also influenced by
-`org-inlinetask-min-level'.  When `org-cycle-max-level' is not set but
-`org-inlinetask-min-level' is, cycling will be limited to levels one less
-than its value."
-  :group 'org-cycle
-  :type '(choice
-	  (const :tag "No limit" nil)
-	  (integer :tag "Maximum level")))
-
-(defcustom org-hide-block-startup nil
-  "Non-nil means entering Org mode will fold all blocks.
-This can also be set in on a per-file basis with
-
-#+STARTUP: hideblocks
-#+STARTUP: showblocks"
-  :group 'org-startup
-  :group 'org-cycle
-  :type 'boolean)
-
-(defcustom org-cycle-global-at-bob nil
-  "Cycle globally if cursor is at beginning of buffer and not at a headline.
-
-This makes it possible to do global cycling without having to use `S-TAB'
-or `\\[universal-argument] TAB'.  For this special case to work, the first \
-line of the buffer
-must not be a headline -- it may be empty or some other text.
-
-When used in this way, `org-cycle-hook' is disabled temporarily to make
-sure the cursor stays at the beginning of the buffer.
-
-When this option is nil, don't do anything special at the beginning of
-the buffer."
-  :group 'org-cycle
-  :type 'boolean)
-
-(defcustom org-cycle-level-after-item/entry-creation t
-  "Non-nil means cycle entry level or item indentation in new empty entries.
-
-When the cursor is at the end of an empty headline, i.e., with only stars
-and maybe a TODO keyword, TAB will then switch the entry to become a child,
-and then all possible ancestor states, before returning to the original state.
-This makes data entry extremely fast:  M-RET to create a new headline,
-on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
-
-When the cursor is at the end of an empty plain list item, one TAB will
-make it a subitem, two or more tabs will back up to make this an item
-higher up in the item hierarchy."
-  :group 'org-cycle
-  :type 'boolean)
-
-(defcustom org-cycle-emulate-tab t
-  "Where should `org-cycle' emulate TAB.
-nil         Never
-white       Only in completely white lines
-whitestart  Only at the beginning of lines, before the first non-white char
-t           Everywhere except in headlines
-exc-hl-bol  Everywhere except at the start of a headline
-If TAB is used in a place where it does not emulate TAB, the current subtree
-visibility is cycled."
-  :group 'org-cycle
-  :type '(choice (const :tag "Never" nil)
-		 (const :tag "Only in completely white lines" white)
-		 (const :tag "Before first char in a line" whitestart)
-		 (const :tag "Everywhere except in headlines" t)
-		 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
-
-(defcustom org-cycle-separator-lines 2
-  "Number of empty lines needed to keep an empty line between collapsed trees.
-If you leave an empty line between the end of a subtree and the following
-headline, this empty line is hidden when the subtree is folded.
-Org mode will leave (exactly) one empty line visible if the number of
-empty lines is equal or larger to the number given in this variable.
-So the default 2 means at least 2 empty lines after the end of a subtree
-are needed to produce free space between a collapsed subtree and the
-following headline.
-
-If the number is negative, and the number of empty lines is at least -N,
-all empty lines are shown.
-
-Special case: when 0, never leave empty lines in collapsed view."
-  :group 'org-cycle
-  :type 'integer)
-(put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
-
-(defcustom org-pre-cycle-hook nil
-  "Hook that is run before visibility cycling is happening.
-The function(s) in this hook must accept a single argument which indicates
-the new state that will be set right after running this hook.  The
-argument is a symbol.  Before a global state change, it can have the values
-`overview', `content', or `all'.  Before a local state change, it can have
-the values `folded', `children', or `subtree'."
-  :group 'org-cycle
-  :type 'hook)
-
-(defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
-			    org-cycle-hide-drawers
-			    org-cycle-show-empty-lines
-			    org-optimize-window-after-visibility-change)
-  "Hook that is run after `org-cycle' has changed the buffer visibility.
-The function(s) in this hook must accept a single argument which indicates
-the new state that was set by the most recent `org-cycle' command.  The
-argument is a symbol.  After a global state change, it can have the values
-`overview', `contents', or `all'.  After a local state change, it can have
-the values `folded', `children', or `subtree'."
-  :group 'org-cycle
-  :type 'hook
-  :version "26.1"
-  :package-version '(Org . "8.3"))
-
-(defgroup org-edit-structure nil
-  "Options concerning structure editing in Org mode."
-  :tag "Org Edit Structure"
-  :group 'org-structure)
-
-(defcustom org-odd-levels-only nil
-  "Non-nil means skip even levels and only use odd levels for the outline.
-This has the effect that two stars are being added/taken away in
-promotion/demotion commands.  It also influences how levels are
-handled by the exporters.
-Changing it requires restart of `font-lock-mode' to become effective
-for fontification also in regions already fontified.
-You may also set this on a per-file basis by adding one of the following
-lines to the buffer:
-
-   #+STARTUP: odd
-   #+STARTUP: oddeven"
-  :group 'org-edit-structure
-  :group 'org-appearance
-  :type 'boolean)
-
-(defcustom org-adapt-indentation t
-  "Non-nil means adapt indentation to outline node level.
-
-When this variable is set, Org assumes that you write outlines by
-indenting text in each node to align with the headline (after the
-stars).  The following issues are influenced by this variable:
-
-- The indentation is increased by one space in a demotion
-  command, and decreased by one in a promotion command.  However,
-  in the latter case, if shifting some line in the entry body
-  would alter document structure (e.g., insert a new headline),
-  indentation is not changed at all.
-
-- Property drawers and planning information is inserted indented
-  when this variable is set.  When nil, they will not be indented.
-
-- TAB indents a line relative to current level.  The lines below
-  a headline will be indented when this variable is set.
-
-Note that this is all about true indentation, by adding and
-removing space characters.  See also `org-indent.el' which does
-level-dependent indentation in a virtual way, i.e. at display
-time in Emacs."
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defcustom org-special-ctrl-a/e nil
-  "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
-
-When t, `C-a' will bring back the cursor to the beginning of the
-headline text, i.e. after the stars and after a possible TODO
-keyword.  In an item, this will be the position after bullet and
-check-box, if any.  When the cursor is already at that position,
-another `C-a' will bring it to the beginning of the line.
-
-`C-e' will jump to the end of the headline, ignoring the presence
-of tags in the headline.  A second `C-e' will then jump to the
-true end of the line, after any tags.  This also means that, when
-this variable is non-nil, `C-e' also will never jump beyond the
-end of the heading of a folded section, i.e. not after the
-ellipses.
-
-When set to the symbol `reversed', the first `C-a' or `C-e' works
-normally, going to the true line boundary first.  Only a directly
-following, identical keypress will bring the cursor to the
-special positions.
-
-This may also be a cons cell where the behavior for `C-a' and
-`C-e' is set separately."
-  :group 'org-edit-structure
-  :type '(choice
-	  (const :tag "off" nil)
-	  (const :tag "on: after stars/bullet and before tags first" t)
-	  (const :tag "reversed: true line boundary first" reversed)
-	  (cons :tag "Set C-a and C-e separately"
-		(choice :tag "Special C-a"
-			(const :tag "off" nil)
-			(const :tag "on: after  stars/bullet first" t)
-			(const :tag "reversed: before stars/bullet first" reversed))
-		(choice :tag "Special C-e"
-			(const :tag "off" nil)
-			(const :tag "on: before tags first" t)
-			(const :tag "reversed: after tags first" reversed)))))
-(defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
-
-(defcustom org-special-ctrl-k nil
-  "Non-nil means `C-k' will behave specially in headlines.
-When nil, `C-k' will call the default `kill-line' command.
-When t, the following will happen while the cursor is in the headline:
-
-- When the cursor is at the beginning of a headline, kill the entire
-  line and possible the folded subtree below the line.
-- When in the middle of the headline text, kill the headline up to the tags.
-- When after the headline text, kill the tags."
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defcustom org-ctrl-k-protect-subtree nil
-  "Non-nil means, do not delete a hidden subtree with C-k.
-When set to the symbol `error', simply throw an error when C-k is
-used to kill (part-of) a headline that has hidden text behind it.
-Any other non-nil value will result in a query to the user, if it is
-OK to kill that hidden subtree.  When nil, kill without remorse."
-  :group 'org-edit-structure
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Do not protect hidden subtrees" nil)
-	  (const :tag "Protect hidden subtrees with a security query" t)
-	  (const :tag "Never kill a hidden subtree with C-k" error)))
-
-(defcustom org-special-ctrl-o t
-  "Non-nil means, make `C-o' insert a row in tables."
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defcustom org-catch-invisible-edits nil
-  "Check if in invisible region before inserting or deleting a character.
-Valid values are:
-
-nil              Do not check, so just do invisible edits.
-error            Throw an error and do nothing.
-show             Make point visible, and do the requested edit.
-show-and-error   Make point visible, then throw an error and abort the edit.
-smart            Make point visible, and do insertion/deletion if it is
-                 adjacent to visible text and the change feels predictable.
-                 Never delete a previously invisible character or add in the
-                 middle or right after an invisible region.  Basically, this
-                 allows insertion and backward-delete right before ellipses.
-                 FIXME: maybe in this case we should not even show?"
-  :group 'org-edit-structure
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Do not check" nil)
-	  (const :tag "Throw error when trying to edit" error)
-	  (const :tag "Unhide, but do not do the edit" show-and-error)
-	  (const :tag "Show invisible part and do the edit" show)
-	  (const :tag "Be smart and do the right thing" smart)))
-
-(defcustom org-yank-folded-subtrees t
-  "Non-nil means when yanking subtrees, fold them.
-If the kill is a single subtree, or a sequence of subtrees, i.e. if
-it starts with a heading and all other headings in it are either children
-or siblings, then fold all the subtrees.  However, do this only if no
-text after the yank would be swallowed into a folded tree by this action."
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defcustom org-yank-adjusted-subtrees nil
-  "Non-nil means when yanking subtrees, adjust the level.
-With this setting, `org-paste-subtree' is used to insert the subtree, see
-this function for details."
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defcustom org-M-RET-may-split-line '((default . t))
-  "Non-nil means M-RET will split the line at the cursor position.
-When nil, it will go to the end of the line before making a
-new line.
-You may also set this option in a different way for different
-contexts.  Valid contexts are:
-
-headline  when creating a new headline
-item      when creating a new item
-table     in a table field
-default   the value to be used for all contexts not explicitly
-          customized"
-  :group 'org-structure
-  :group 'org-table
-  :type '(choice
-	  (const :tag "Always" t)
-	  (const :tag "Never" nil)
-	  (repeat :greedy t :tag "Individual contexts"
-		  (cons
-		   (choice :tag "Context"
-			   (const headline)
-			   (const item)
-			   (const table)
-			   (const default))
-		   (boolean)))))
-
-
-(defcustom org-insert-heading-respect-content nil
-  "Non-nil means insert new headings after the current subtree.
-\\<org-mode-map>
-When nil, the new heading is created directly after the current line.
-The commands `\\[org-insert-heading-respect-content]' and \
-`\\[org-insert-todo-heading-respect-content]' turn this variable on
-for the duration of the command."
-  :group 'org-structure
-  :type 'boolean)
-
-(defcustom org-blank-before-new-entry '((heading . auto)
-					(plain-list-item . auto))
-  "Should `org-insert-heading' leave a blank line before new heading/item?
-The value is an alist, with `heading' and `plain-list-item' as CAR,
-and a boolean flag as CDR.  The cdr may also be the symbol `auto', in
-which case Org will look at the surrounding headings/items and try to
-make an intelligent decision whether to insert a blank line or not."
-  :group 'org-edit-structure
-  :type '(list
-	  (cons (const heading)
-		(choice (const :tag "Never" nil)
-			(const :tag "Always" t)
-			(const :tag "Auto" auto)))
-	  (cons (const plain-list-item)
-		(choice (const :tag "Never" nil)
-			(const :tag "Always" t)
-			(const :tag "Auto" auto)))))
-
-(defcustom org-insert-heading-hook nil
-  "Hook being run after inserting a new heading."
-  :group 'org-edit-structure
-  :type 'hook)
-
-(defcustom org-enable-fixed-width-editor t
-  "Non-nil means lines starting with \":\" are treated as fixed-width.
-This currently only means they are never auto-wrapped.
-When nil, such lines will be treated like ordinary lines."
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defcustom org-goto-auto-isearch t
-  "Non-nil means typing characters in `org-goto' starts incremental search.
-When nil, you can use these keybindings to navigate the buffer:
-
-  q    Quit the org-goto interface
-  n    Go to the next visible heading
-  p    Go to the previous visible heading
-  f    Go one heading forward on same level
-  b    Go one heading backward on same level
-  u    Go one heading up"
-  :group 'org-edit-structure
-  :type 'boolean)
-
-(defgroup org-sparse-trees nil
-  "Options concerning sparse trees in Org mode."
-  :tag "Org Sparse Trees"
-  :group 'org-structure)
-
-(defcustom org-highlight-sparse-tree-matches t
-  "Non-nil means highlight all matches that define a sparse tree.
-The highlights will automatically disappear the next time the buffer is
-changed by an edit command."
-  :group 'org-sparse-trees
-  :type 'boolean)
-
-(defcustom org-remove-highlights-with-change t
-  "Non-nil means any change to the buffer will remove temporary highlights.
-\\<org-mode-map>\
-Such highlights are created by `org-occur' and `org-clock-display'.
-When nil, `\\[org-ctrl-c-ctrl-c]' needs to be used \
-to get rid of the highlights.
-The highlights created by `org-toggle-latex-fragment' always need
-`\\[org-toggle-latex-fragment]' to be removed."
-  :group 'org-sparse-trees
-  :group 'org-time
-  :type 'boolean)
-
-(defcustom org-occur-case-fold-search t
-  "Non-nil means `org-occur' should be case-insensitive.
-If set to `smart' the search will be case-insensitive only if it
-doesn't specify any upper case character."
-  :group 'org-sparse-trees
-  :version "26.1"
-  :type '(choice
-	  (const :tag "Case-sensitive" nil)
-	  (const :tag "Case-insensitive" t)
-	  (const :tag "Case-insensitive for lower case searches only" smart)))
-
-(defcustom org-occur-hook '(org-first-headline-recenter)
-  "Hook that is run after `org-occur' has constructed a sparse tree.
-This can be used to recenter the window to show as much of the structure
-as possible."
-  :group 'org-sparse-trees
-  :type 'hook)
-
-(defgroup org-imenu-and-speedbar nil
-  "Options concerning imenu and speedbar in Org mode."
-  :tag "Org Imenu and Speedbar"
-  :group 'org-structure)
-
-(defcustom org-imenu-depth 2
-  "The maximum level for Imenu access to Org headlines.
-This also applied for speedbar access."
-  :group 'org-imenu-and-speedbar
-  :type 'integer)
-
-(defgroup org-table nil
-  "Options concerning tables in Org mode."
-  :tag "Org Table"
-  :group 'org)
-
-(defcustom org-self-insert-cluster-for-undo nil
-  "Non-nil means cluster self-insert commands for undo when possible.
-If this is set, then, like in the Emacs command loop, 20 consecutive
-characters will be undone together.
-This is configurable, because there is some impact on typing performance."
-  :group 'org-table
-  :type 'boolean)
-
-(defcustom org-table-tab-recognizes-table.el t
-  "Non-nil means TAB will automatically notice a table.el table.
-When it sees such a table, it moves point into it and - if necessary -
-calls `table-recognize-table'."
-  :group 'org-table-editing
-  :type 'boolean)
-
-(defgroup org-link nil
-  "Options concerning links in Org mode."
-  :tag "Org Link"
-  :group 'org)
-
-(defvar-local org-link-abbrev-alist-local nil
-  "Buffer-local version of `org-link-abbrev-alist', which see.
-The value of this is taken from the #+LINK lines.")
-
-(defcustom org-link-parameters
-  '(("doi" :follow org--open-doi-link)
-    ("elisp" :follow org--open-elisp-link)
-    ("file" :complete org-file-complete-link)
-    ("ftp" :follow (lambda (path) (browse-url (concat "ftp:" path))))
-    ("help" :follow org--open-help-link)
-    ("http" :follow (lambda (path) (browse-url (concat "http:" path))))
-    ("https" :follow (lambda (path) (browse-url (concat "https:" path))))
-    ("mailto" :follow (lambda (path) (browse-url (concat "mailto:" path))))
-    ("news" :follow (lambda (path) (browse-url (concat "news:" path))))
-    ("shell" :follow org--open-shell-link))
-  "An alist of properties that defines all the links in Org mode.
-The key in each association is a string of the link type.
-Subsequent optional elements make up a p-list of link properties.
-
-:follow - A function that takes the link path as an argument.
-
-:export - A function that takes the link path, description and
-export-backend as arguments.
-
-:store - A function responsible for storing the link.  See the
-function `org-store-link-functions'.
-
-:complete - A function that inserts a link with completion.  The
-function takes one optional prefix arg.
-
-:face - A face for the link, or a function that returns a face.
-The function takes one argument which is the link path.  The
-default face is `org-link'.
-
-:mouse-face - The mouse-face. The default is `highlight'.
-
-:display - `full' will not fold the link in descriptive
-display.  Default is `org-link'.
-
-:help-echo - A string or function that takes (window object position)
-as arguments and returns a string.
-
-:keymap - A keymap that is active on the link.  The default is
-`org-mouse-map'.
-
-:htmlize-link - A function for the htmlize-link.  Defaults
-to (list :uri \"type:path\")
-
-:activate-func - A function to run at the end of font-lock
-activation.  The function must accept (link-start link-end path bracketp)
-as arguments."
-  :group 'org-link
-  :type '(alist :tag "Link display parameters"
-		:value-type plist)
-  :version "26.1"
-  :package-version '(Org . "9.1"))
-
-(defun org-link-get-parameter (type key)
-  "Get TYPE link property for KEY.
-TYPE is a string and KEY is a plist keyword."
-  (plist-get
-   (cdr (assoc type org-link-parameters))
-   key))
-
-(defun org-link-set-parameters (type &rest parameters)
-  "Set link TYPE properties to PARAMETERS.
-  PARAMETERS should be :key val pairs."
-  (let ((data (assoc type org-link-parameters)))
-    (if data (setcdr data (org-combine-plists (cdr data) parameters))
-      (push (cons type parameters) org-link-parameters)
-      (org-make-link-regexps)
-      (org-element-update-syntax))))
-
-(defun org-link-types ()
-  "Return a list of known link types."
-  (mapcar #'car org-link-parameters))
-
-(defcustom org-link-abbrev-alist nil
-  "Alist of link abbreviations.
-The car of each element is a string, to be replaced at the start of a link.
-The cdrs are replacement values, like (\"linkkey\" . REPLACE).  Abbreviated
-links in Org buffers can have an optional tag after a double colon, e.g.,
-
-     [[linkkey:tag][description]]
-
-The `linkkey' must be a single word, starting with a letter, followed
-by letters, numbers, `-' or `_'.
-
-If REPLACE is a string, the tag will simply be appended to create the link.
-If the string contains \"%s\", the tag will be inserted there.  If the string
-contains \"%h\", it will cause a url-encoded version of the tag to be inserted
-at that point (see the function `url-hexify-string').  If the string contains
-the specifier \"%(my-function)\", then the custom function `my-function' will
-be invoked: this function takes the tag as its only argument and must return
-a string.
-
-REPLACE may also be a function that will be called with the tag as the
-only argument to create the link, which should be returned as a string.
-
-See the manual for examples."
-  :group 'org-link
-  :type '(repeat
-	  (cons
-	   (string :tag "Protocol")
-	   (choice
-	    (string :tag "Format")
-	    (function)))))
-
-(defcustom org-descriptive-links t
-  "Non-nil means Org will display descriptive links.
-E.g. [[https://orgmode.org][Org website]] will be displayed as
-\"Org Website\", hiding the link itself and just displaying its
-description.  When set to nil, Org will display the full links
-literally.
-
-You can interactively set the value of this variable by calling
-`org-toggle-link-display' or from the menu Org>Hyperlinks menu."
-  :group 'org-link
-  :type 'boolean)
-
-(defcustom org-link-file-path-type 'adaptive
-  "How the path name in file links should be stored.
-Valid values are:
-
-relative  Relative to the current directory, i.e. the directory of the file
-          into which the link is being inserted.
-absolute  Absolute path, if possible with ~ for home directory.
-noabbrev  Absolute path, no abbreviation of home directory.
-adaptive  Use relative path for files in the current directory and sub-
-          directories of it.  For other files, use an absolute path."
-  :group 'org-link
-  :type '(choice
-	  (const relative)
-	  (const absolute)
-	  (const noabbrev)
-	  (const adaptive)))
-
-(defvaralias 'org-activate-links 'org-highlight-links)
-(defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
-  "Types of links that should be highlighted in Org files.
-
-This is a list of symbols, each one of them leading to the
-highlighting of a certain link type.
-
-You can still open links that are not highlighted.
-
-In principle, it does not hurt to turn on highlighting for all
-link types.  There may be a small gain when turning off unused
-link types.  The types are:
-
-bracket   The recommended [[link][description]] or [[link]] links with hiding.
-angle     Links in angular brackets that may contain whitespace like
-          <bbdb:Carsten Dominik>.
-plain     Plain links in normal text, no whitespace, like http://google.com.
-radio     Text that is matched by a radio target, see manual for details.
-tag       Tag settings in a headline (link to tag search).
-date      Time stamps (link to calendar).
-footnote  Footnote labels.
-
-If you set this variable during an Emacs session, use `org-mode-restart'
-in the Org buffer so that the change takes effect."
-  :group 'org-link
-  :group 'org-appearance
-  :type '(set :greedy t
-	      (const :tag "Double bracket links" bracket)
-	      (const :tag "Angular bracket links" angle)
-	      (const :tag "Plain text links" plain)
-	      (const :tag "Radio target matches" radio)
-	      (const :tag "Tags" tag)
-	      (const :tag "Timestamps" date)
-	      (const :tag "Footnotes" footnote)))
-
-(defcustom org-make-link-description-function nil
-  "Function to use for generating link descriptions from links.
-This function must take two parameters: the first one is the
-link, the second one is the description generated by
-`org-insert-link'.  The function should return the description to
-use."
-  :group 'org-link
-  :type '(choice (const nil) (function)))
-
-(defgroup org-link-store nil
-  "Options concerning storing links in Org mode."
-  :tag "Org Store Link"
-  :group 'org-link)
-
-(defcustom org-url-hexify-p t
-  "When non-nil, hexify URL when creating a link."
-  :type 'boolean
-  :version "24.3"
-  :group 'org-link-store)
-
-(defcustom org-email-link-description-format "Email %c: %.30s"
-  "Format of the description part of a link to an email or usenet message.
-The following %-escapes will be replaced by corresponding information:
-
-%F   full \"From\" field
-%f   name, taken from \"From\" field, address if no name
-%T   full \"To\" field
-%t   first name in \"To\" field, address if no name
-%c   correspondent.  Usually \"from NAME\", but if you sent it yourself, it
-     will be \"to NAME\".  See also the variable `org-from-is-user-regexp'.
-%s   subject
-%d   date
-%m   message-id.
-
-You may use normal field width specification between the % and the letter.
-This is for example useful to limit the length of the subject.
-
-Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
-  :group 'org-link-store
-  :type 'string)
-
-(defcustom org-from-is-user-regexp
-  (let (r1 r2)
-    (when (and user-mail-address (not (string= user-mail-address "")))
-      (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
-    (when (and user-full-name (not (string= user-full-name "")))
-      (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
-    (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
-  "Regexp matched against the \"From:\" header of an email or usenet message.
-It should match if the message is from the user him/herself."
-  :group 'org-link-store
-  :type 'regexp)
-
-(defcustom org-context-in-file-links t
-  "Non-nil means file links from `org-store-link' contain context.
-\\<org-mode-map>
-A search string will be added to the file name with :: as separator
-and used to find the context when the link is activated by the command
-`org-open-at-point'.  When this option is t, the entire active region
-will be placed in the search string of the file link.  If set to a
-positive integer, only the first n lines of context will be stored.
-
-Using a prefix arg to the command `org-store-link' (`\\[universal-argument] \
-\\[org-store-link]')
-negates this setting for the duration of the command."
-  :group 'org-link-store
-  :type '(choice boolean integer))
-
-(defcustom org-keep-stored-link-after-insertion nil
-  "Non-nil means keep link in list for entire session.
-\\<org-mode-map>
-The command `org-store-link' adds a link pointing to the current
-location to an internal list.  These links accumulate during a session.
-The command `org-insert-link' can be used to insert links into any
-Org file (offering completion for all stored links).
-
-When this option is nil, every link which has been inserted once using
-`\\[org-insert-link]' will be removed from the list, to make completing the \
-unused
-links more efficient."
-  :group 'org-link-store
-  :type 'boolean)
-
-(defgroup org-link-follow nil
-  "Options concerning following links in Org mode."
-  :tag "Org Follow Link"
-  :group 'org-link)
-
-(defcustom org-link-translation-function nil
-  "Function to translate links with different syntax to Org syntax.
-This can be used to translate links created for example by the Planner
-or emacs-wiki packages to Org syntax.
-The function must accept two parameters, a TYPE containing the link
-protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
-which is everything after the link protocol.  It should return a cons
-with possibly modified values of type and path.
-Org contains a function for this, so if you set this variable to
-`org-translate-link-from-planner', you should be able follow many
-links created by planner."
-  :group 'org-link-follow
-  :type '(choice (const nil) (function)))
-
-(defcustom org-follow-link-hook nil
-  "Hook that is run after a link has been followed."
-  :group 'org-link-follow
-  :type 'hook)
-
-(defcustom org-tab-follows-link nil
-  "Non-nil means on links TAB will follow the link.
-Needs to be set before org.el is loaded.
-This really should not be used, it does not make sense, and the
-implementation is bad."
-  :group 'org-link-follow
-  :type 'boolean)
-
-(defcustom org-return-follows-link nil
-  "Non-nil means on links RET will follow the link.
-In tables, the special behavior of RET has precedence."
-  :group 'org-link-follow
-  :type 'boolean)
-
-(defcustom org-mouse-1-follows-link
-  (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
-  "Non-nil means mouse-1 on a link will follow the link.
-A longer mouse click will still set point.  Needs to be set
-before org.el is loaded."
-  :group 'org-link-follow
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice
-	  (const :tag "A double click follows the link" double)
-	  (const :tag "Unconditionally follow the link with mouse-1" t)
-	  (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
-
-(defcustom org-mark-ring-length 4
-  "Number of different positions to be recorded in the ring.
-Changing this requires a restart of Emacs to work correctly."
-  :group 'org-link-follow
-  :type 'integer)
-
-(defcustom org-link-search-must-match-exact-headline 'query-to-create
-  "Non-nil means internal fuzzy links can only match headlines.
-
-When nil, the a fuzzy link may point to a target or a named
-construct in the document.  When set to the special value
-`query-to-create', offer to create a new headline when none
-matched.
-
-Spaces and statistics cookies are ignored during heading searches."
-  :group 'org-link-follow
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Use fuzzy text search" nil)
-	  (const :tag "Match only exact headline" t)
-	  (const :tag "Match exact headline or query to create it"
-		 query-to-create))
-  :safe #'symbolp)
-
-(defcustom org-link-frame-setup
-  '((vm . vm-visit-folder-other-frame)
-    (vm-imap . vm-visit-imap-folder-other-frame)
-    (gnus . org-gnus-no-new-news)
-    (file . find-file-other-window)
-    (wl . wl-other-frame))
-  "Setup the frame configuration for following links.
-When following a link with Emacs, it may often be useful to display
-this link in another window or frame.  This variable can be used to
-set this up for the different types of links.
-For VM, use any of
-    `vm-visit-folder'
-    `vm-visit-folder-other-window'
-    `vm-visit-folder-other-frame'
-For Gnus, use any of
-    `gnus'
-    `gnus-other-frame'
-    `org-gnus-no-new-news'
-For FILE, use any of
-    `find-file'
-    `find-file-other-window'
-    `find-file-other-frame'
-For Wanderlust use any of
-    `wl'
-    `wl-other-frame'
-For the calendar, use the variable `calendar-setup'.
-For BBDB, it is currently only possible to display the matches in
-another window."
-  :group 'org-link-follow
-  :type '(list
-	  (cons (const vm)
-		(choice
-		 (const vm-visit-folder)
-		 (const vm-visit-folder-other-window)
-		 (const vm-visit-folder-other-frame)))
-	  (cons (const vm-imap)
-		(choice
-		 (const vm-visit-imap-folder)
-		 (const vm-visit-imap-folder-other-window)
-		 (const vm-visit-imap-folder-other-frame)))
-	  (cons (const gnus)
-		(choice
-		 (const gnus)
-		 (const gnus-other-frame)
-		 (const org-gnus-no-new-news)))
-	  (cons (const file)
-		(choice
-		 (const find-file)
-		 (const find-file-other-window)
-		 (const find-file-other-frame)))
-	  (cons (const wl)
-		(choice
-		 (const wl)
-		 (const wl-other-frame)))))
-
-(defcustom org-display-internal-link-with-indirect-buffer nil
-  "Non-nil means use indirect buffer to display infile links.
-Activating internal links (from one location in a file to another location
-in the same file) normally just jumps to the location.  When the link is
-activated with a `\\[universal-argument]' prefix (or with mouse-3), the link \
-is displayed in
-another window.  When this option is set, the other window actually displays
-an indirect buffer clone of the current buffer, to avoid any visibility
-changes to the current buffer."
-  :group 'org-link-follow
-  :type 'boolean)
-
-(defcustom org-open-non-existing-files nil
-  "Non-nil means `org-open-file' will open non-existing files.
-When nil, an error will be generated.
-This variable applies only to external applications because they
-might choke on non-existing files.  If the link is to a file that
-will be opened in Emacs, the variable is ignored."
-  :group 'org-link-follow
-  :type 'boolean)
-
-(defcustom org-open-directory-means-index-dot-org nil
-  "Non-nil means a link to a directory really means to index.org.
-When nil, following a directory link will run dired or open a finder/explorer
-window on that directory."
-  :group 'org-link-follow
-  :type 'boolean)
-
-(defcustom org-confirm-shell-link-function 'yes-or-no-p
-  "Non-nil means ask for confirmation before executing shell links.
-Shell links can be dangerous: just think about a link
-
-     [[shell:rm -rf ~/*][Google Search]]
-
-This link would show up in your Org document as \"Google Search\",
-but really it would remove your entire home directory.
-Therefore we advise against setting this variable to nil.
-Just change it to `y-or-n-p' if you want to confirm with a
-single keystroke rather than having to type \"yes\"."
-  :group 'org-link-follow
-  :type '(choice
-	  (const :tag "with yes-or-no (safer)" yes-or-no-p)
-	  (const :tag "with y-or-n (faster)" y-or-n-p)
-	  (const :tag "no confirmation (dangerous)" nil)))
-(put 'org-confirm-shell-link-function
-     'safe-local-variable
-     (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
-
-(defcustom org-confirm-shell-link-not-regexp ""
-  "A regexp to skip confirmation for shell links."
-  :group 'org-link-follow
-  :version "24.1"
-  :type 'regexp)
-
-(defcustom org-confirm-elisp-link-function 'yes-or-no-p
-  "Non-nil means ask for confirmation before executing Emacs Lisp links.
-Elisp links can be dangerous: just think about a link
-
-     [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
-
-This link would show up in your Org document as \"Google Search\",
-but really it would remove your entire home directory.
-Therefore we advise against setting this variable to nil.
-Just change it to `y-or-n-p' if you want to confirm with a
-single keystroke rather than having to type \"yes\"."
-  :group 'org-link-follow
-  :type '(choice
-	  (const :tag "with yes-or-no (safer)" yes-or-no-p)
-	  (const :tag "with y-or-n (faster)" y-or-n-p)
-	  (const :tag "no confirmation (dangerous)" nil)))
-(put 'org-confirm-shell-link-function
-     'safe-local-variable
-     (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
-
-(defcustom org-confirm-elisp-link-not-regexp ""
-  "A regexp to skip confirmation for Elisp links."
-  :group 'org-link-follow
-  :version "24.1"
-  :type 'regexp)
-
-(defconst org-file-apps-defaults-gnu
-  '((remote . emacs)
-    (system . mailcap)
-    (t . mailcap))
-  "Default file applications on a UNIX or GNU/Linux system.
-See `org-file-apps'.")
-
-(defconst org-file-apps-defaults-macosx
-  '((remote . emacs)
-    (system . "open %s")
-    ("ps.gz"  . "gv %s")
-    ("eps.gz" . "gv %s")
-    ("dvi"    . "xdvi %s")
-    ("fig"    . "xfig %s")
-    (t . "open %s"))
-  "Default file applications on a macOS system.
-The system \"open\" is known as a default, but we use X11 applications
-for some files for which the OS does not have a good default.
-See `org-file-apps'.")
-
-(defconst org-file-apps-defaults-windowsnt
-  (list '(remote . emacs)
-	(cons 'system (lambda (file _path)
-			(with-no-warnings (w32-shell-execute "open" file))))
-	(cons t (lambda (file _path)
-		  (with-no-warnings (w32-shell-execute "open" file)))))
-  "Default file applications on a Windows NT system.
-The system \"open\" is used for most files.
-See `org-file-apps'.")
-
-(defcustom org-file-apps
-  '((auto-mode . emacs)
-    ("\\.mm\\'" . default)
-    ("\\.x?html?\\'" . default)
-    ("\\.pdf\\'" . default))
-  "External applications for opening `file:path' items in a document.
-\\<org-mode-map>\
-
-Org mode uses system defaults for different file types, but
-you can use this variable to set the application for a given file
-extension.  The entries in this list are cons cells where the car identifies
-files and the cdr the corresponding command.
-
-Possible values for the file identifier are:
-
- \"string\"    A string as a file identifier can be interpreted in different
-               ways, depending on its contents:
-
-               - Alphanumeric characters only:
-                 Match links with this file extension.
-                 Example: (\"pdf\" . \"evince %s\")
-                          to open PDFs with evince.
-
-               - Regular expression: Match links where the
-                 filename matches the regexp.  If you want to
-                 use groups here, use shy groups.
-
-                 Example: (\"\\\\.x?html\\\\\\='\" . \"firefox %s\")
-                          (\"\\\\(?:xhtml\\\\|html\\\\)\\\\\\='\" . \"firefox %s\")
-                          to open *.html and *.xhtml with firefox.
-
-               - Regular expression which contains (non-shy) groups:
-                 Match links where the whole link, including \"::\", and
-                 anything after that, matches the regexp.
-                 In a custom command string, %1, %2, etc. are replaced with
-                 the parts of the link that were matched by the groups.
-                 For backwards compatibility, if a command string is given
-                 that does not use any of the group matches, this case is
-                 handled identically to the second one (i.e. match against
-                 file name only).
-                 In a custom function, you can access the group matches with
-                 (match-string n link).
-
-                 Example: (\"\\\\.pdf::\\\\([0-9]+\\\\)\\\\\\='\" . \
-\"evince -p %1 %s\")
-                     to open [[file:document.pdf::5]] with evince at page 5.
-
- `directory'   Matches a directory
- `remote'      Matches a remote file, accessible through tramp or efs.
-               Remote files most likely should be visited through Emacs
-               because external applications cannot handle such paths.
-`auto-mode'    Matches files that are matched by any entry in `auto-mode-alist',
-               so all files Emacs knows how to handle.  Using this with
-               command `emacs' will open most files in Emacs.  Beware that this
-               will also open html files inside Emacs, unless you add
-               (\"html\" . default) to the list as well.
- `system'      The system command to open files, like `open' on Windows
-               and macOS, and mailcap under GNU/Linux.  This is the command
-               that will be selected if you call `org-open-at-point' with a
-               double prefix argument (`\\[universal-argument] \
-\\[universal-argument] \\[org-open-at-point]').
- t             Default for files not matched by any of the other options.
-
-Possible values for the command are:
-
- `emacs'       The file will be visited by the current Emacs process.
- `default'     Use the default application for this file type, which is the
-               association for t in the list, most likely in the system-specific
-               part.  This can be used to overrule an unwanted setting in the
-               system-specific variable.
- `system'      Use the system command for opening files, like \"open\".
-               This command is specified by the entry whose car is `system'.
-               Most likely, the system-specific version of this variable
-               does define this command, but you can overrule/replace it
-               here.
-`mailcap'      Use command specified in the mailcaps.
- string        A command to be executed by a shell; %s will be replaced
-               by the path to the file.
- function      A Lisp function, which will be called with two arguments:
-               the file path and the original link string, without the
-               \"file:\" prefix.
-
-For more examples, see the system specific constants
-`org-file-apps-defaults-macosx'
-`org-file-apps-defaults-windowsnt'
-`org-file-apps-defaults-gnu'."
-  :group 'org-link-follow
-  :type '(repeat
-	  (cons (choice :value ""
-			(string :tag "Extension")
-			(const :tag "System command to open files" system)
-			(const :tag "Default for unrecognized files" t)
-			(const :tag "Remote file" remote)
-			(const :tag "Links to a directory" directory)
-			(const :tag "Any files that have Emacs modes"
-			       auto-mode))
-		(choice :value ""
-			(const :tag "Visit with Emacs" emacs)
-			(const :tag "Use default" default)
-			(const :tag "Use the system command" system)
-			(string :tag "Command")
-			(function :tag "Function")))))
-
-(defcustom org-doi-server-url "http://dx.doi.org/"
-  "The URL of the DOI server."
-  :type 'string
-  :version "24.3"
-  :group 'org-link-follow)
-
-(defgroup org-refile nil
-  "Options concerning refiling entries in Org mode."
-  :tag "Org Refile"
-  :group 'org)
-
-(defcustom org-directory "~/org"
-  "Directory with Org files.
-This is just a default location to look for Org files.  There is no need
-at all to put your files into this directory.  It is used in the
-following situations:
-
-1. When a capture template specifies a target file that is not an
-   absolute path.  The path will then be interpreted relative to
-   `org-directory'
-2. When the value of variable `org-agenda-files' is a single file, any
-   relative paths in this file will be taken as relative to
-   `org-directory'."
-  :group 'org-refile
-  :group 'org-capture
-  :type 'directory)
-
-(defcustom org-default-notes-file (convert-standard-filename "~/.notes")
-  "Default target for storing notes.
-Used as a fall back file for org-capture.el, for templates that
-do not specify a target file."
-  :group 'org-refile
-  :group 'org-capture
-  :type 'file)
-
-(defcustom org-goto-interface 'outline
-  "The default interface to be used for `org-goto'.
-Allowed values are:
-outline                  The interface shows an outline of the relevant file
-                         and the correct heading is found by moving through
-                         the outline or by searching with incremental search.
-outline-path-completion  Headlines in the current buffer are offered via
-                         completion.  This is the interface also used by
-                         the refile command."
-  :group 'org-refile
-  :type '(choice
-	  (const :tag "Outline" outline)
-	  (const :tag "Outline-path-completion" outline-path-completion)))
-
-(defcustom org-goto-max-level 5
-  "Maximum target level when running `org-goto' with refile interface."
-  :group 'org-refile
-  :type 'integer)
-
-(defcustom org-reverse-note-order nil
-  "Non-nil means store new notes at the beginning of a file or entry.
-When nil, new notes will be filed to the end of a file or entry.
-This can also be a list with cons cells of regular expressions that
-are matched against file names, and values."
-  :group 'org-capture
-  :group 'org-refile
-  :type '(choice
-	  (const :tag "Reverse always" t)
-	  (const :tag "Reverse never" nil)
-	  (repeat :tag "By file name regexp"
-		  (cons regexp boolean))))
-
-(defcustom org-log-refile nil
-  "Information to record when a task is refiled.
-
-Possible values are:
-
-nil     Don't add anything
-time    Add a time stamp to the task
-note    Prompt for a note and add it with template `org-log-note-headings'
-
-This option can also be set with on a per-file-basis with
-
-   #+STARTUP: nologrefile
-   #+STARTUP: logrefile
-   #+STARTUP: lognoterefile
-
-You can have local logging settings for a subtree by setting the LOGGING
-property to one or more of these keywords.
-
-When bulk-refiling from the agenda, the value `note' is forbidden and
-will temporarily be changed to `time'."
-  :group 'org-refile
-  :group 'org-progress
-  :version "24.1"
-  :type '(choice
-	  (const :tag "No logging" nil)
-	  (const :tag "Record timestamp" time)
-	  (const :tag "Record timestamp with note." note)))
-
-(defcustom org-refile-targets nil
-  "Targets for refiling entries with `\\[org-refile]'.
-This is a list of cons cells.  Each cell contains:
-- a specification of the files to be considered, either a list of files,
-  or a symbol whose function or variable value will be used to retrieve
-  a file name or a list of file names.  If you use `org-agenda-files' for
-  that, all agenda files will be scanned for targets.  Nil means consider
-  headings in the current buffer.
-- A specification of how to find candidate refile targets.  This may be
-  any of:
-  - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
-    This tag has to be present in all target headlines, inheritance will
-    not be considered.
-  - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
-    todo keyword.
-  - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
-    headlines that are refiling targets.
-  - a cons cell (:level . N).  Any headline of level N is considered a target.
-    Note that, when `org-odd-levels-only' is set, level corresponds to
-    order in hierarchy, not to the number of stars.
-  - a cons cell (:maxlevel . N).  Any headline with level <= N is a target.
-    Note that, when `org-odd-levels-only' is set, level corresponds to
-    order in hierarchy, not to the number of stars.
-
-Each element of this list generates a set of possible targets.
-The union of these sets is presented (with completion) to
-the user by `org-refile'.
-
-You can set the variable `org-refile-target-verify-function' to a function
-to verify each headline found by the simple criteria above.
-
-When this variable is nil, all top-level headlines in the current buffer
-are used, equivalent to the value `((nil . (:level . 1))'."
-  :group 'org-refile
-  :type '(repeat
-	  (cons
-	   (choice :value org-agenda-files
-		   (const :tag "All agenda files" org-agenda-files)
-		   (const :tag "Current buffer" nil)
-		   (function) (variable) (file))
-	   (choice :tag "Identify target headline by"
-		   (cons :tag "Specific tag" (const :value :tag) (string))
-		   (cons :tag "TODO keyword" (const :value :todo) (string))
-		   (cons :tag "Regular expression" (const :value :regexp) (regexp))
-		   (cons :tag "Level number" (const :value :level) (integer))
-		   (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
-
-(defcustom org-refile-target-verify-function nil
-  "Function to verify if the headline at point should be a refile target.
-The function will be called without arguments, with point at the
-beginning of the headline.  It should return t and leave point
-where it is if the headline is a valid target for refiling.
-
-If the target should not be selected, the function must return nil.
-In addition to this, it may move point to a place from where the search
-should be continued.  For example, the function may decide that the entire
-subtree of the current entry should be excluded and move point to the end
-of the subtree."
-  :group 'org-refile
-  :type '(choice
-	  (const nil)
-	  (function)))
-
-(defcustom org-refile-use-cache nil
-  "Non-nil means cache refile targets to speed up the process.
-\\<org-mode-map>\
-The cache for a particular file will be updated automatically when
-the buffer has been killed, or when any of the marker used for flagging
-refile targets no longer points at a live buffer.
-If you have added new entries to a buffer that might themselves be targets,
-you need to clear the cache manually by pressing `C-0 \\[org-refile]' or,
-if you find that easier, \
-`\\[universal-argument] \\[universal-argument] \\[universal-argument] \
-\\[org-refile]'."
-  :group 'org-refile
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-refile-use-outline-path nil
-  "Non-nil means provide refile targets as paths.
-So a level 3 headline will be available as level1/level2/level3.
-
-When the value is `file', also include the file name (without directory)
-into the path.  In this case, you can also stop the completion after
-the file name, to get entries inserted as top level in the file.
-
-When `full-file-path', include the full file path.
-
-When `buffer-name', use the buffer name."
-  :group 'org-refile
-  :type '(choice
-	  (const :tag "Not" nil)
-	  (const :tag "Yes" t)
-	  (const :tag "Start with file name" file)
-	  (const :tag "Start with full file path" full-file-path)
-	  (const :tag "Start with buffer name" buffer-name)))
-
-(defcustom org-outline-path-complete-in-steps t
-  "Non-nil means complete the outline path in hierarchical steps.
-When Org uses the refile interface to select an outline path (see
-`org-refile-use-outline-path'), the completion of the path can be
-done in a single go, or it can be done in steps down the headline
-hierarchy.  Going in steps is probably the best if you do not use
-a special completion package like `ido' or `icicles'.  However,
-when using these packages, going in one step can be very fast,
-while still showing the whole path to the entry."
-  :group 'org-refile
-  :type 'boolean)
-
-(defcustom org-refile-allow-creating-parent-nodes nil
-  "Non-nil means allow the creation of new nodes as refile targets.
-New nodes are then created by adding \"/new node name\" to the completion
-of an existing node.  When the value of this variable is `confirm',
-new node creation must be confirmed by the user (recommended).
-When nil, the completion must match an existing entry.
-
-Note that, if the new heading is not seen by the criteria
-listed in `org-refile-targets', multiple instances of the same
-heading would be created by trying again to file under the new
-heading."
-  :group 'org-refile
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "Always" t)
-	  (const :tag "Prompt for confirmation" confirm)))
-
-(defcustom org-refile-active-region-within-subtree nil
-  "Non-nil means also refile active region within a subtree.
-
-By default `org-refile' doesn't allow refiling regions if they
-don't contain a set of subtrees, but it might be convenient to
-do so sometimes: in that case, the first line of the region is
-converted to a headline before refiling."
-  :group 'org-refile
-  :version "24.1"
-  :type 'boolean)
-
-(defgroup org-todo nil
-  "Options concerning TODO items in Org mode."
-  :tag "Org TODO"
-  :group 'org)
-
-(defgroup org-progress nil
-  "Options concerning Progress logging in Org mode."
-  :tag "Org Progress"
-  :group 'org-time)
-
-(defvar org-todo-interpretation-widgets
-  '((:tag "Sequence (cycling hits every state)" sequence)
-    (:tag "Type     (cycling directly to DONE)" type))
-  "The available interpretation symbols for customizing `org-todo-keywords'.
-Interested libraries should add to this list.")
-
-(defcustom org-todo-keywords '((sequence "TODO" "DONE"))
-  "List of TODO entry keyword sequences and their interpretation.
-\\<org-mode-map>This is a list of sequences.
-
-Each sequence starts with a symbol, either `sequence' or `type',
-indicating if the keywords should be interpreted as a sequence of
-action steps, or as different types of TODO items.  The first
-keywords are states requiring action - these states will select a headline
-for inclusion into the global TODO list Org produces.  If one of the
-\"keywords\" is the vertical bar, \"|\", the remaining keywords
-signify that no further action is necessary.  If \"|\" is not found,
-the last keyword is treated as the only DONE state of the sequence.
-
-The command `\\[org-todo]' cycles an entry through these states, and one
-additional state where no keyword is present.  For details about this
-cycling, see the manual.
-
-TODO keywords and interpretation can also be set on a per-file basis with
-the special #+SEQ_TODO and #+TYP_TODO lines.
-
-Each keyword can optionally specify a character for fast state selection
-\(in combination with the variable `org-use-fast-todo-selection')
-and specifiers for state change logging, using the same syntax that
-is used in the \"#+TODO:\" lines.  For example, \"WAIT(w)\" says that
-the WAIT state can be selected with the \"w\" key.  \"WAIT(w!)\"
-indicates to record a time stamp each time this state is selected.
-
-Each keyword may also specify if a timestamp or a note should be
-recorded when entering or leaving the state, by adding additional
-characters in the parenthesis after the keyword.  This looks like this:
-\"WAIT(w@/!)\".  \"@\" means to add a note (with time), \"!\" means to
-record only the time of the state change.  With X and Y being either
-\"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
-Y when leaving the state if and only if the *target* state does not
-define X.  You may omit any of the fast-selection key or X or /Y,
-so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
-
-For backward compatibility, this variable may also be just a list
-of keywords.  In this case the interpretation (sequence or type) will be
-taken from the (otherwise obsolete) variable `org-todo-interpretation'."
-  :group 'org-todo
-  :group 'org-keywords
-  :type '(choice
-	  (repeat :tag "Old syntax, just keywords"
-		  (string :tag "Keyword"))
-	  (repeat :tag "New syntax"
-		  (cons
-		   (choice
-		    :tag "Interpretation"
-		    ;;Quick and dirty way to see
-		    ;;`org-todo-interpretations'.  This takes the
-		    ;;place of item arguments
-		    :convert-widget
-		    (lambda (widget)
-		      (widget-put widget
-				  :args (mapcar
-					 (lambda (x)
-					   (widget-convert
-					    (cons 'const x)))
-					 org-todo-interpretation-widgets))
-		      widget))
-		   (repeat
-		    (string :tag "Keyword"))))))
-
-(defvar-local org-todo-keywords-1 nil
-  "All TODO and DONE keywords active in a buffer.")
-(defvar org-todo-keywords-for-agenda nil)
-(defvar org-done-keywords-for-agenda nil)
-(defvar org-todo-keyword-alist-for-agenda nil)
-(defvar org-tag-alist-for-agenda nil
-  "Alist of all tags from all agenda files.")
-(defvar org-tag-groups-alist-for-agenda nil
-  "Alist of all groups tags from all current agenda files.")
-(defvar-local org-tag-groups-alist nil)
-(defvar org-agenda-contributing-files nil)
-(defvar-local org-current-tag-alist nil
-  "Alist of all tag groups in current buffer.
-This variable takes into consideration `org-tag-alist',
-`org-tag-persistent-alist' and TAGS keywords in the buffer.")
-(defvar-local org-not-done-keywords nil)
-(defvar-local org-done-keywords nil)
-(defvar-local org-todo-heads nil)
-(defvar-local org-todo-sets nil)
-(defvar-local org-todo-log-states nil)
-(defvar-local org-todo-kwd-alist nil)
-(defvar-local org-todo-key-alist nil)
-(defvar-local org-todo-key-trigger nil)
-
-(defcustom org-todo-interpretation 'sequence
-  "Controls how TODO keywords are interpreted.
-This variable is in principle obsolete and is only used for
-backward compatibility, if the interpretation of todo keywords is
-not given already in `org-todo-keywords'.  See that variable for
-more information."
-  :group 'org-todo
-  :group 'org-keywords
-  :type '(choice (const sequence)
-		 (const type)))
-
-(defcustom org-use-fast-todo-selection t
-  "\\<org-mode-map>\
-Non-nil means use the fast todo selection scheme with `\\[org-todo]'.
-This variable describes if and under what circumstances the cycling
-mechanism for TODO keywords will be replaced by a single-key, direct
-selection scheme.
-
-When nil, fast selection is never used.
-
-When the symbol `prefix', it will be used when `org-todo' is called
-with a prefix argument,  i.e. `\\[universal-argument] \\[org-todo]' \
-in an Org buffer, and
-`\\[universal-argument] t' in an agenda buffer.
-
-When t, fast selection is used by default.  In this case, the prefix
-argument forces cycling instead.
-
-In all cases, the special interface is only used if access keys have
-actually been assigned by the user, i.e. if keywords in the configuration
-are followed by a letter in parenthesis, like TODO(t)."
-  :group 'org-todo
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "By default" t)
-	  (const :tag "Only with C-u C-c C-t" prefix)))
-
-(defcustom org-provide-todo-statistics t
-  "Non-nil means update todo statistics after insert and toggle.
-ALL-HEADLINES means update todo statistics by including headlines
-with no TODO keyword as well, counting them as not done.
-A list of TODO keywords means the same, but skip keywords that are
-not in this list.
-When set to a list of two lists, the first list contains keywords
-to consider as TODO keywords, the second list contains keywords
-to consider as DONE keywords.
-
-When this is set, todo statistics is updated in the parent of the
-current entry each time a todo state is changed."
-  :group 'org-todo
-  :type '(choice
-	  (const :tag "Yes, only for TODO entries" t)
-	  (const :tag "Yes, including all entries" all-headlines)
-	  (repeat :tag "Yes, for TODOs in this list"
-		  (string :tag "TODO keyword"))
-	  (list :tag "Yes, for TODOs and DONEs in these lists"
-		(repeat (string :tag "TODO keyword"))
-		(repeat (string :tag "DONE keyword")))
-	  (other :tag "No TODO statistics" nil)))
-
-(defcustom org-hierarchical-todo-statistics t
-  "Non-nil means TODO statistics covers just direct children.
-When nil, all entries in the subtree are considered.
-This has only an effect if `org-provide-todo-statistics' is set.
-To set this to nil for only a single subtree, use a COOKIE_DATA
-property and include the word \"recursive\" into the value."
-  :group 'org-todo
-  :type 'boolean)
-
-(defcustom org-after-todo-state-change-hook nil
-  "Hook which is run after the state of a TODO item was changed.
-The new state (a string with a TODO keyword, or nil) is available in the
-Lisp variable `org-state'."
-  :group 'org-todo
-  :type 'hook)
-
-(defvar org-blocker-hook nil
-  "Hook for functions that are allowed to block a state change.
-
-Functions in this hook should not modify the buffer.
-Each function gets as its single argument a property list,
-see `org-trigger-hook' for more information about this list.
-
-If any of the functions in this hook returns nil, the state change
-is blocked.")
-
-(defvar org-trigger-hook nil
-  "Hook for functions that are triggered by a state change.
-
-Each function gets as its single argument a property list with at
-least the following elements:
-
- (:type type-of-change :position pos-at-entry-start
-  :from old-state :to new-state)
-
-Depending on the type, more properties may be present.
-
-This mechanism is currently implemented for:
-
-TODO state changes
-------------------
-:type  todo-state-change
-:from  previous state (keyword as a string), or nil, or a symbol
-       `todo' or `done', to indicate the general type of state.
-:to    new state, like in :from")
-
-(defcustom org-enforce-todo-dependencies nil
-  "Non-nil means undone TODO entries will block switching the parent to DONE.
-Also, if a parent has an :ORDERED: property, switching an entry to DONE will
-be blocked if any prior sibling is not yet done.
-Finally, if the parent is blocked because of ordered siblings of its own,
-the child will also be blocked."
-  :set (lambda (var val)
-	 (set var val)
-	 (if val
-	     (add-hook 'org-blocker-hook
-		       'org-block-todo-from-children-or-siblings-or-parent)
-	   (remove-hook 'org-blocker-hook
-			'org-block-todo-from-children-or-siblings-or-parent)))
-  :group 'org-todo
-  :type 'boolean)
-
-(defcustom org-enforce-todo-checkbox-dependencies nil
-  "Non-nil means unchecked boxes will block switching the parent to DONE.
-When this is nil, checkboxes have no influence on switching TODO states.
-When non-nil, you first need to check off all check boxes before the TODO
-entry can be switched to DONE.
-This variable needs to be set before org.el is loaded, and you need to
-restart Emacs after a change to make the change effective.  The only way
-to change is while Emacs is running is through the customize interface."
-  :set (lambda (var val)
-	 (set var val)
-	 (if val
-	     (add-hook 'org-blocker-hook
-		       'org-block-todo-from-checkboxes)
-	   (remove-hook 'org-blocker-hook
-			'org-block-todo-from-checkboxes)))
-  :group 'org-todo
-  :type 'boolean)
-
-(defcustom org-treat-insert-todo-heading-as-state-change nil
-  "Non-nil means inserting a TODO heading is treated as state change.
-So when the command `\\[org-insert-todo-heading]' is used, state change
-logging will apply if appropriate.  When nil, the new TODO item will
-be inserted directly, and no logging will take place."
-  :group 'org-todo
-  :type 'boolean)
-
-(defcustom org-treat-S-cursor-todo-selection-as-state-change t
-  "Non-nil means switching TODO states with S-cursor counts as state change.
-This is the default behavior.  However, setting this to nil allows a
-convenient way to select a TODO state and bypass any logging associated
-with that."
-  :group 'org-todo
-  :type 'boolean)
-
-(defcustom org-todo-state-tags-triggers nil
-  "Tag changes that should be triggered by TODO state changes.
-This is a list.  Each entry is
-
-  (state-change (tag . flag) .......)
-
-State-change can be a string with a state, and empty string to indicate the
-state that has no TODO keyword, or it can be one of the symbols `todo'
-or `done', meaning any not-done or done state, respectively."
-  :group 'org-todo
-  :group 'org-tags
-  :type '(repeat
-	  (cons (choice :tag "When changing to"
-			(const :tag "Not-done state" todo)
-			(const :tag "Done state" done)
-			(string :tag "State"))
-		(repeat
-		 (cons :tag "Tag action"
-		       (string :tag "Tag")
-		       (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
-
-(defcustom org-log-done nil
-  "Information to record when a task moves to the DONE state.
-
-Possible values are:
-
-nil     Don't add anything, just change the keyword
-time    Add a time stamp to the task
-note    Prompt for a note and add it with template `org-log-note-headings'
-
-This option can also be set with on a per-file-basis with
-
-   #+STARTUP: nologdone
-   #+STARTUP: logdone
-   #+STARTUP: lognotedone
-
-You can have local logging settings for a subtree by setting the LOGGING
-property to one or more of these keywords."
-  :group 'org-todo
-  :group 'org-progress
-  :type '(choice
-	  (const :tag "No logging" nil)
-	  (const :tag "Record CLOSED timestamp" time)
-	  (const :tag "Record CLOSED timestamp with note." note)))
-
-;; Normalize old uses of org-log-done.
-(cond
- ((eq org-log-done t) (setq org-log-done 'time))
- ((and (listp org-log-done) (memq 'done org-log-done))
-  (setq org-log-done 'note)))
-
-(defcustom org-log-reschedule nil
-  "Information to record when the scheduling date of a tasks is modified.
-
-Possible values are:
-
-nil     Don't add anything, just change the date
-time    Add a time stamp to the task
-note    Prompt for a note and add it with template `org-log-note-headings'
-
-This option can also be set with on a per-file-basis with
-
-   #+STARTUP: nologreschedule
-   #+STARTUP: logreschedule
-   #+STARTUP: lognotereschedule"
-  :group 'org-todo
-  :group 'org-progress
-  :type '(choice
-	  (const :tag "No logging" nil)
-	  (const :tag "Record timestamp" time)
-	  (const :tag "Record timestamp with note." note)))
-
-(defcustom org-log-redeadline nil
-  "Information to record when the deadline date of a tasks is modified.
-
-Possible values are:
-
-nil     Don't add anything, just change the date
-time    Add a time stamp to the task
-note    Prompt for a note and add it with template `org-log-note-headings'
-
-This option can also be set with on a per-file-basis with
-
-   #+STARTUP: nologredeadline
-   #+STARTUP: logredeadline
-   #+STARTUP: lognoteredeadline
-
-You can have local logging settings for a subtree by setting the LOGGING
-property to one or more of these keywords."
-  :group 'org-todo
-  :group 'org-progress
-  :type '(choice
-	  (const :tag "No logging" nil)
-	  (const :tag "Record timestamp" time)
-	  (const :tag "Record timestamp with note." note)))
-
-(defcustom org-log-note-clock-out nil
-  "Non-nil means record a note when clocking out of an item.
-This can also be configured on a per-file basis by adding one of
-the following lines anywhere in the buffer:
-
-   #+STARTUP: lognoteclock-out
-   #+STARTUP: nolognoteclock-out"
-  :group 'org-todo
-  :group 'org-progress
-  :type 'boolean)
-
-(defcustom org-log-done-with-time t
-  "Non-nil means the CLOSED time stamp will contain date and time.
-When nil, only the date will be recorded."
-  :group 'org-progress
-  :type 'boolean)
-
-(defcustom org-log-note-headings
-  '((done .  "CLOSING NOTE %t")
-    (state . "State %-12s from %-12S %t")
-    (note .  "Note taken on %t")
-    (reschedule .  "Rescheduled from %S on %t")
-    (delschedule .  "Not scheduled, was %S on %t")
-    (redeadline .  "New deadline from %S on %t")
-    (deldeadline .  "Removed deadline, was %S on %t")
-    (refile . "Refiled on %t")
-    (clock-out . ""))
-  "Headings for notes added to entries.
-
-The value is an alist, with the car being a symbol indicating the
-note context, and the cdr is the heading to be used.  The heading
-may also be the empty string.  The following placeholders can be
-used:
-
-  %t  a time stamp.
-  %T  an active time stamp instead the default inactive one
-  %d  a short-format time stamp.
-  %D  an active short-format time stamp.
-  %s  the new TODO state or time stamp (inactive), in double quotes.
-  %S  the old TODO state or time stamp (inactive), in double quotes.
-  %u  the user name.
-  %U  full user name.
-
-In fact, it is not a good idea to change the `state' entry,
-because Agenda Log mode depends on the format of these entries."
-  :group  'org-todo
-  :group  'org-progress
-  :type '(list :greedy t
-	       (cons (const :tag "Heading when closing an item" done) string)
-	       (cons (const :tag
-			    "Heading when changing todo state (todo sequence only)"
-			    state) string)
-	       (cons (const :tag "Heading when just taking a note" note) string)
-	       (cons (const :tag "Heading when rescheduling" reschedule) string)
-	       (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
-	       (cons (const :tag "Heading when changing deadline"  redeadline) string)
-	       (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
-	       (cons (const :tag "Heading when refiling" refile) string)
-	       (cons (const :tag "Heading when clocking out" clock-out) string)))
-
-(unless (assq 'note org-log-note-headings)
-  (push '(note . "%t") org-log-note-headings))
-
-(defcustom org-log-into-drawer nil
-  "Non-nil means insert state change notes and time stamps into a drawer.
-When nil, state changes notes will be inserted after the headline and
-any scheduling and clock lines, but not inside a drawer.
-
-The value of this variable should be the name of the drawer to use.
-LOGBOOK is proposed as the default drawer for this purpose, you can
-also set this to a string to define the drawer of your choice.
-
-A value of t is also allowed, representing \"LOGBOOK\".
-
-A value of t or nil can also be set with on a per-file-basis with
-
-   #+STARTUP: logdrawer
-   #+STARTUP: nologdrawer
-
-If this variable is set, `org-log-state-notes-insert-after-drawers'
-will be ignored.
-
-You can set the property LOG_INTO_DRAWER to overrule this setting for
-a subtree.
-
-Do not check directly this variable in a Lisp program.  Call
-function `org-log-into-drawer' instead."
-  :group 'org-todo
-  :group 'org-progress
-  :type '(choice
-	  (const :tag "Not into a drawer" nil)
-	  (const :tag "LOGBOOK" t)
-	  (string :tag "Other")))
-
-(defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
-
-(defun org-log-into-drawer ()
-  "Name of the log drawer, as a string, or nil.
-This is the value of `org-log-into-drawer'.  However, if the
-current entry has or inherits a LOG_INTO_DRAWER property, it will
-be used instead of the default value."
-  (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
-    (cond ((equal p "nil") nil)
-	  ((equal p "t") "LOGBOOK")
-	  ((stringp p) p)
-	  (p "LOGBOOK")
-	  ((stringp org-log-into-drawer) org-log-into-drawer)
-	  (org-log-into-drawer "LOGBOOK"))))
-
-(defcustom org-log-state-notes-insert-after-drawers nil
-  "Non-nil means insert state change notes after any drawers in entry.
-Only the drawers that *immediately* follow the headline and the
-deadline/scheduled line are skipped.
-When nil, insert notes right after the heading and perhaps the line
-with deadline/scheduling if present.
-
-This variable will have no effect if `org-log-into-drawer' is
-set."
-  :group 'org-todo
-  :group 'org-progress
-  :type 'boolean)
-
-(defcustom org-log-states-order-reversed t
-  "Non-nil means the latest state note will be directly after heading.
-When nil, the state change notes will be ordered according to time.
-
-This option can also be set with on a per-file-basis with
-
-   #+STARTUP: logstatesreversed
-   #+STARTUP: nologstatesreversed"
-  :group 'org-todo
-  :group 'org-progress
-  :type 'boolean)
-
-(defcustom org-todo-repeat-to-state nil
-  "The TODO state to which a repeater should return the repeating task.
-By default this is the first task in a TODO sequence, or the previous state
-in a TODO_TYP set.  But you can specify another task here.
-alternatively, set the :REPEAT_TO_STATE: property of the entry."
-  :group 'org-todo
-  :version "24.1"
-  :type '(choice (const :tag "Head of sequence" nil)
-		 (string :tag "Specific state")))
-
-(defcustom org-log-repeat 'time
-  "Non-nil means record moving through the DONE state when triggering repeat.
-An auto-repeating task is immediately switched back to TODO when
-marked DONE.  If you are not logging state changes (by adding \"@\"
-or \"!\" to the TODO keyword definition), or set `org-log-done' to
-record a closing note, there will be no record of the task moving
-through DONE.  This variable forces taking a note anyway.
-
-nil     Don't force a record
-time    Record a time stamp
-note    Prompt for a note and add it with template `org-log-note-headings'
-
-This option can also be set with on a per-file-basis with
-
-   #+STARTUP: nologrepeat
-   #+STARTUP: logrepeat
-   #+STARTUP: lognoterepeat
-
-You can have local logging settings for a subtree by setting the LOGGING
-property to one or more of these keywords."
-  :group 'org-todo
-  :group 'org-progress
-  :type '(choice
-	  (const :tag "Don't force a record" nil)
-	  (const :tag "Force recording the DONE state" time)
-	  (const :tag "Force recording a note with the DONE state" note)))
-
-
-(defgroup org-priorities nil
-  "Priorities in Org mode."
-  :tag "Org Priorities"
-  :group 'org-todo)
-
-(defcustom org-enable-priority-commands t
-  "Non-nil means priority commands are active.
-When nil, these commands will be disabled, so that you never accidentally
-set a priority."
-  :group 'org-priorities
-  :type 'boolean)
-
-(defcustom org-highest-priority ?A
-  "The highest priority of TODO items.  A character like ?A, ?B etc.
-Must have a smaller ASCII number than `org-lowest-priority'."
-  :group 'org-priorities
-  :type 'character)
-
-(defcustom org-lowest-priority ?C
-  "The lowest priority of TODO items.  A character like ?A, ?B etc.
-Must have a larger ASCII number than `org-highest-priority'."
-  :group 'org-priorities
-  :type 'character)
-
-(defcustom org-default-priority ?B
-  "The default priority of TODO items.
-This is the priority an item gets if no explicit priority is given.
-When starting to cycle on an empty priority the first step in the cycle
-depends on `org-priority-start-cycle-with-default'.  The resulting first
-step priority must not exceed the range from `org-highest-priority' to
-`org-lowest-priority' which means that `org-default-priority' has to be
-in this range exclusive or inclusive the range boundaries.  Else the
-first step refuses to set the default and the second will fall back
-to (depending on the command used) the highest or lowest priority."
-  :group 'org-priorities
-  :type 'character)
-
-(defcustom org-priority-start-cycle-with-default t
-  "Non-nil means start with default priority when starting to cycle.
-When this is nil, the first step in the cycle will be (depending on the
-command used) one higher or lower than the default priority.
-See also `org-default-priority'."
-  :group 'org-priorities
-  :type 'boolean)
-
-(defcustom org-get-priority-function nil
-  "Function to extract the priority from a string.
-The string is normally the headline.  If this is nil Org computes the
-priority from the priority cookie like [#A] in the headline.  It returns
-an integer, increasing by 1000 for each priority level.
-The user can set a different function here, which should take a string
-as an argument and return the numeric priority."
-  :group 'org-priorities
-  :version "24.1"
-  :type '(choice
-	  (const nil)
-	  (function)))
-
-(defgroup org-time nil
-  "Options concerning time stamps and deadlines in Org mode."
-  :tag "Org Time"
-  :group 'org)
-
-(defcustom org-time-stamp-rounding-minutes '(0 5)
-  "Number of minutes to round time stamps to.
-\\<org-mode-map>\
-These are two values, the first applies when first creating a time stamp.
-The second applies when changing it with the commands `S-up' and `S-down'.
-When changing the time stamp, this means that it will change in steps
-of N minutes, as given by the second value.
-
-When a setting is 0 or 1, insert the time unmodified.  Useful rounding
-numbers should be factors of 60, so for example 5, 10, 15.
-
-When this is larger than 1, you can still force an exact time stamp by using
-a double prefix argument to a time stamp command like \
-`\\[org-time-stamp]' or `\\[org-time-stamp-inactive],
-and by using a prefix arg to `S-up/down' to specify the exact number
-of minutes to shift."
-  :group 'org-time
-  :get (lambda (var) ; Make sure both elements are there
-	 (if (integerp (default-value var))
-	     (list (default-value var) 5)
-	   (default-value var)))
-  :type '(list
-	  (integer :tag "when inserting times")
-	  (integer :tag "when modifying times")))
-
-;; Normalize old customizations of this variable.
-(when (integerp org-time-stamp-rounding-minutes)
-  (setq org-time-stamp-rounding-minutes
-	(list org-time-stamp-rounding-minutes
-	      org-time-stamp-rounding-minutes)))
-
-(defcustom org-display-custom-times nil
-  "Non-nil means overlay custom formats over all time stamps.
-The formats are defined through the variable `org-time-stamp-custom-formats'.
-To turn this on on a per-file basis, insert anywhere in the file:
-   #+STARTUP: customtime"
-  :group 'org-time
-  :set 'set-default
-  :type 'sexp)
-(make-variable-buffer-local 'org-display-custom-times)
-
-(defcustom org-time-stamp-custom-formats
-  '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
-  "Custom formats for time stamps.  See `format-time-string' for the syntax.
-These are overlaid over the default ISO format if the variable
-`org-display-custom-times' is set.  Time like %H:%M should be at the
-end of the second format.  The custom formats are also honored by export
-commands, if custom time display is turned on at the time of export."
-  :group 'org-time
-  :type 'sexp)
-
-(defun org-time-stamp-format (&optional long inactive)
-  "Get the right format for a time string."
-  (let ((f (if long (cdr org-time-stamp-formats)
-	     (car org-time-stamp-formats))))
-    (if inactive
-	(concat "[" (substring f 1 -1) "]")
-      f)))
-
-(defcustom org-deadline-warning-days 14
-  "Number of days before expiration during which a deadline becomes active.
-This variable governs the display in sparse trees and in the agenda.
-When 0 or negative, it means use this number (the absolute value of it)
-even if a deadline has a different individual lead time specified.
-
-Custom commands can set this variable in the options section."
-  :group 'org-time
-  :group 'org-agenda-daily/weekly
-  :type 'integer)
-
-(defcustom org-scheduled-delay-days 0
-  "Number of days before a scheduled item becomes active.
-This variable governs the display in sparse trees and in the agenda.
-The default value (i.e. 0) means: don't delay scheduled item.
-When negative, it means use this number (the absolute value of it)
-even if a scheduled item has a different individual delay time
-specified.
-
-Custom commands can set this variable in the options section."
-  :group 'org-time
-  :group 'org-agenda-daily/weekly
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'integer)
-
-(defcustom org-read-date-prefer-future t
-  "Non-nil means assume future for incomplete date input from user.
-This affects the following situations:
-1. The user gives a month but not a year.
-   For example, if it is April and you enter \"feb 2\", this will be read
-   as Feb 2, *next* year.  \"May 5\", however, will be this year.
-2. The user gives a day, but no month.
-   For example, if today is the 15th, and you enter \"3\", Org will read
-   this as the third of *next* month.  However, if you enter \"17\",
-   it will be considered as *this* month.
-
-If you set this variable to the symbol `time', then also the following
-will work:
-
-3. If the user gives a time.
-   If the time is before now, it will be interpreted as tomorrow.
-
-Currently none of this works for ISO week specifications.
-
-When this option is nil, the current day, month and year will always be
-used as defaults.
-
-See also `org-agenda-jump-prefer-future'."
-  :group 'org-time
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "Check month and day" t)
-	  (const :tag "Check month, day, and time" time)))
-
-(defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
-  "Should the agenda jump command prefer the future for incomplete dates?
-The default is to do the same as configured in `org-read-date-prefer-future'.
-But you can also set a deviating value here.
-This may t or nil, or the symbol `org-read-date-prefer-future'."
-  :group 'org-agenda
-  :group 'org-time
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Use org-read-date-prefer-future"
-		 org-read-date-prefer-future)
-	  (const :tag "Never" nil)
-	  (const :tag "Always" t)))
-
-(defcustom org-read-date-force-compatible-dates t
-  "Should date/time prompt force dates that are guaranteed to work in Emacs?
-
-Depending on the system Emacs is running on, certain dates cannot
-be represented with the type used internally to represent time.
-Dates between 1970-1-1 and 2038-1-1 can always be represented
-correctly.  Some systems allow for earlier dates, some for later,
-some for both.  One way to find out it to insert any date into an
-Org buffer, putting the cursor on the year and hitting S-up and
-S-down to test the range.
-
-When this variable is set to t, the date/time prompt will not let
-you specify dates outside the 1970-2037 range, so it is certain that
-these dates will work in whatever version of Emacs you are
-running, and also that you can move a file from one Emacs implementation
-to another.  WHenever Org is forcing the year for you, it will display
-a message and beep.
-
-When this variable is nil, Org will check if the date is
-representable in the specific Emacs implementation you are using.
-If not, it will force a year, usually the current year, and beep
-to remind you.  Currently this setting is not recommended because
-the likelihood that you will open your Org files in an Emacs that
-has limited date range is not negligible.
-
-A workaround for this problem is to use diary sexp dates for time
-stamps outside of this range."
-  :group 'org-time
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-read-date-display-live t
-  "Non-nil means display current interpretation of date prompt live.
-This display will be in an overlay, in the minibuffer."
-  :group 'org-time
-  :type 'boolean)
-
-(defcustom org-read-date-popup-calendar t
-  "Non-nil means pop up a calendar when prompting for a date.
-In the calendar, the date can be selected with mouse-1.  However, the
-minibuffer will also be active, and you can simply enter the date as well.
-When nil, only the minibuffer will be available."
-  :group 'org-time
-  :type 'boolean)
-(defvaralias 'org-popup-calendar-for-date-prompt
-  'org-read-date-popup-calendar)
-
-(defcustom org-extend-today-until 0
-  "The hour when your day really ends.  Must be an integer.
-This has influence for the following applications:
-- When switching the agenda to \"today\".  It it is still earlier than
-  the time given here, the day recognized as TODAY is actually yesterday.
-- When a date is read from the user and it is still before the time given
-  here, the current date and time will be assumed to be yesterday, 23:59.
-  Also, timestamps inserted in capture templates follow this rule.
-
-IMPORTANT:  This is a feature whose implementation is and likely will
-remain incomplete.  Really, it is only here because past midnight seems to
-be the favorite working time of John Wiegley :-)"
-  :group 'org-time
-  :type 'integer)
-
-(defcustom org-use-effective-time nil
-  "If non-nil, consider `org-extend-today-until' when creating timestamps.
-For example, if `org-extend-today-until' is 8, and it's 4am, then the
-\"effective time\" of any timestamps between midnight and 8am will be
-23:59 of the previous day."
-  :group 'org-time
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-use-last-clock-out-time-as-effective-time nil
-  "When non-nil, use the last clock out time for `org-todo'.
-Note that this option has precedence over the combined use of
-`org-use-effective-time' and `org-extend-today-until'."
-  :group 'org-time
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-edit-timestamp-down-means-later nil
-  "Non-nil means S-down will increase the time in a time stamp.
-When nil, S-up will increase."
-  :group 'org-time
-  :type 'boolean)
-
-(defcustom org-calendar-follow-timestamp-change t
-  "Non-nil means make the calendar window follow timestamp changes.
-When a timestamp is modified and the calendar window is visible, it will be
-moved to the new date."
-  :group 'org-time
-  :type 'boolean)
-
-(defgroup org-tags nil
-  "Options concerning tags in Org mode."
-  :tag "Org Tags"
-  :group 'org)
-
-(defcustom org-tag-alist nil
-  "Default tags available in Org files.
-
-The value of this variable is an alist.  Associations either:
-
-  (TAG)
-  (TAG . SELECT)
-  (SPECIAL)
-
-where TAG is a tag as a string, SELECT is character, used to
-select that tag through the fast tag selection interface, and
-SPECIAL is one of the following keywords: `:startgroup',
-`:startgrouptag', `:grouptags', `:engroup', `:endgrouptag' or
-`:newline'.  These keywords are used to define a hierarchy of
-tags.  See manual for details.
-
-When this variable is nil, Org mode bases tag input on what is
-already in the buffer.  The value can be overridden locally by
-using a TAGS keyword, e.g.,
-
-  #+TAGS: tag1 tag2
-
-See also `org-tag-persistent-alist' to sidestep this behavior."
-  :group 'org-tags
-  :type '(repeat
-	  (choice
-	   (cons :tag "Tag with key"
-		 (string    :tag "Tag name")
-		 (character :tag "Access char"))
-	   (list :tag "Tag" (string :tag "Tag name"))
-	   (const :tag "Start radio group" (:startgroup))
-	   (const :tag "Start tag group, non distinct" (:startgrouptag))
-	   (const :tag "Group tags delimiter" (:grouptags))
-	   (const :tag "End radio group" (:endgroup))
-	   (const :tag "End tag group, non distinct" (:endgrouptag))
-	   (const :tag "New line" (:newline)))))
-
-(defcustom org-tag-persistent-alist nil
-  "Tags always available in Org files.
-
-The value of this variable is an alist.  Associations either:
-
-  (TAG)
-  (TAG . SELECT)
-  (SPECIAL)
-
-where TAG is a tag as a string, SELECT is a character, used to
-select that tag through the fast tag selection interface, and
-SPECIAL is one of the following keywords: `:startgroup',
-`:startgrouptag', `:grouptags', `:engroup', `:endgrouptag' or
-`:newline'.  These keywords are used to define a hierarchy of
-tags.  See manual for details.
-
-Unlike to `org-tag-alist', tags defined in this variable do not
-depend on a local TAGS keyword.  Instead, to disable these tags
-on a per-file basis, insert anywhere in the file:
-
-  #+STARTUP: noptag"
-  :group 'org-tags
-  :type '(repeat
-	  (choice
-	   (cons :tag "Tag with key"
-		 (string    :tag "Tag name")
-		 (character :tag "Access char"))
-	   (list :tag "Tag" (string :tag "Tag name"))
-	   (const :tag "Start radio group" (:startgroup))
-	   (const :tag "Start tag group, non distinct" (:startgrouptag))
-	   (const :tag "Group tags delimiter" (:grouptags))
-	   (const :tag "End radio group" (:endgroup))
-	   (const :tag "End tag group, non distinct" (:endgrouptag))
-	   (const :tag "New line" (:newline)))))
-
-(defcustom org-complete-tags-always-offer-all-agenda-tags nil
-  "If non-nil, always offer completion for all tags of all agenda files.
-Instead of customizing this variable directly, you might want to
-set it locally for capture buffers, because there no list of
-tags in that file can be created dynamically (there are none).
-
-  (add-hook \\='org-capture-mode-hook
-            (lambda ()
-              (setq-local org-complete-tags-always-offer-all-agenda-tags t)))"
-  :group 'org-tags
-  :version "24.1"
-  :type 'boolean)
-
-(defvar org-file-tags nil
-  "List of tags that can be inherited by all entries in the file.
-The tags will be inherited if the variable `org-use-tag-inheritance'
-says they should be.
-This variable is populated from #+FILETAGS lines.")
-
-(defcustom org-use-fast-tag-selection 'auto
-  "Non-nil means use fast tag selection scheme.
-This is a special interface to select and deselect tags with single keys.
-When nil, fast selection is never used.
-When the symbol `auto', fast selection is used if and only if selection
-characters for tags have been configured, either through the variable
-`org-tag-alist' or through a #+TAGS line in the buffer.
-When t, fast selection is always used and selection keys are assigned
-automatically if necessary."
-  :group 'org-tags
-  :type '(choice
-	  (const :tag "Always" t)
-	  (const :tag "Never" nil)
-	  (const :tag "When selection characters are configured" auto)))
-
-(defcustom org-fast-tag-selection-single-key nil
-  "Non-nil means fast tag selection exits after first change.
-When nil, you have to press RET to exit it.
-During fast tag selection, you can toggle this flag with `C-c'.
-This variable can also have the value `expert'.  In this case, the window
-displaying the tags menu is not even shown, until you press C-c again."
-  :group 'org-tags
-  :type '(choice
-	  (const :tag "No" nil)
-	  (const :tag "Yes" t)
-	  (const :tag "Expert" expert)))
-
-(defvar org-fast-tag-selection-include-todo nil
-  "Non-nil means fast tags selection interface will also offer TODO states.
-This is an undocumented feature, you should not rely on it.")
-
-(defcustom org-tags-column -77
-  "The column to which tags should be indented in a headline.
-If this number is positive, it specifies the column.  If it is negative,
-it means that the tags should be flushright to that column.  For example,
--80 works well for a normal 80 character screen.
-When 0, place tags directly after headline text, with only one space in
-between."
-  :group 'org-tags
-  :type 'integer)
-
-(defcustom org-auto-align-tags t
-  "Non-nil keeps tags aligned when modifying headlines.
-Some operations (i.e. demoting) change the length of a headline and
-therefore shift the tags around.  With this option turned on, after
-each such operation the tags are again aligned to `org-tags-column'."
-  :group 'org-tags
-  :type 'boolean)
-
-(defcustom org-use-tag-inheritance t
-  "Non-nil means tags in levels apply also for sublevels.
-When nil, only the tags directly given in a specific line apply there.
-This may also be a list of tags that should be inherited, or a regexp that
-matches tags that should be inherited.  Additional control is possible
-with the variable  `org-tags-exclude-from-inheritance' which gives an
-explicit list of tags to be excluded from inheritance, even if the value of
-`org-use-tag-inheritance' would select it for inheritance.
-
-If this option is t, a match early-on in a tree can lead to a large
-number of matches in the subtree when constructing the agenda or creating
-a sparse tree.  If you only want to see the first match in a tree during
-a search, check out the variable `org-tags-match-list-sublevels'."
-  :group 'org-tags
-  :type '(choice
-	  (const :tag "Not" nil)
-	  (const :tag "Always" t)
-	  (repeat :tag "Specific tags" (string :tag "Tag"))
-	  (regexp :tag "Tags matched by regexp")))
-
-(defcustom org-tags-exclude-from-inheritance nil
-  "List of tags that should never be inherited.
-This is a way to exclude a few tags from inheritance.  For way to do
-the opposite, to actively allow inheritance for selected tags,
-see the variable `org-use-tag-inheritance'."
-  :group 'org-tags
-  :type '(repeat (string :tag "Tag")))
-
-(defun org-tag-inherit-p (tag)
-  "Check if TAG is one that should be inherited."
-  (cond
-   ((member tag org-tags-exclude-from-inheritance) nil)
-   ((eq org-use-tag-inheritance t) t)
-   ((not org-use-tag-inheritance) nil)
-   ((stringp org-use-tag-inheritance)
-    (string-match org-use-tag-inheritance tag))
-   ((listp org-use-tag-inheritance)
-    (member tag org-use-tag-inheritance))
-   (t (error "Invalid setting of `org-use-tag-inheritance'"))))
-
-(defcustom org-tags-match-list-sublevels t
-  "Non-nil means list also sublevels of headlines matching a search.
-This variable applies to tags/property searches, and also to stuck
-projects because this search is based on a tags match as well.
-
-When set to the symbol `indented', sublevels are indented with
-leading dots.
-
-Because of tag inheritance (see variable `org-use-tag-inheritance'),
-the sublevels of a headline matching a tag search often also match
-the same search.  Listing all of them can create very long lists.
-Setting this variable to nil causes subtrees of a match to be skipped.
-
-This variable is semi-obsolete and probably should always be true.  It
-is better to limit inheritance to certain tags using the variables
-`org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
-  :group 'org-tags
-  :type '(choice
-	  (const :tag "No, don't list them" nil)
-	  (const :tag "Yes, do list them" t)
-	  (const :tag "List them, indented with leading dots" indented)))
-
-(defcustom org-tags-sort-function nil
-  "When set, tags are sorted using this function as a comparator."
-  :group 'org-tags
-  :type '(choice
-	  (const :tag "No sorting" nil)
-	  (const :tag "Alphabetical" string<)
-	  (const :tag "Reverse alphabetical" string>)
-	  (function :tag "Custom function" nil)))
-
-(defvar org-tags-history nil
-  "History of minibuffer reads for tags.")
-(defvar org-last-tags-completion-table nil
-  "The last used completion table for tags.")
-(defvar org-after-tags-change-hook nil
-  "Hook that is run after the tags in a line have changed.")
-
-(defgroup org-properties nil
-  "Options concerning properties in Org mode."
-  :tag "Org Properties"
-  :group 'org)
-
-(defcustom org-property-format "%-10s %s"
-  "How property key/value pairs should be formatted by `indent-line'.
-When `indent-line' hits a property definition, it will format the line
-according to this format, mainly to make sure that the values are
-lined-up with respect to each other."
-  :group 'org-properties
-  :type 'string)
-
-(defcustom org-properties-postprocess-alist nil
-  "Alist of properties and functions to adjust inserted values.
-Elements of this alist must be of the form
-
-  ([string] [function])
-
-where [string] must be a property name and [function] must be a
-lambda expression: this lambda expression must take one argument,
-the value to adjust, and return the new value as a string.
-
-For example, this element will allow the property \"Remaining\"
-to be updated wrt the relation between the \"Effort\" property
-and the clock summary:
-
- ((\"Remaining\" (lambda(value)
-                   (let ((clocksum (org-clock-sum-current-item))
-                         (effort (org-duration-to-minutes
-                                   (org-entry-get (point) \"Effort\"))))
-                     (org-minutes-to-clocksum-string (- effort clocksum))))))"
-  :group 'org-properties
-  :version "24.1"
-  :type '(alist :key-type (string     :tag "Property")
-		:value-type (function :tag "Function")))
-
-(defcustom org-use-property-inheritance nil
-  "Non-nil means properties apply also for sublevels.
-
-This setting is chiefly used during property searches.  Turning it on can
-cause significant overhead when doing a search, which is why it is not
-on by default.
-
-When nil, only the properties directly given in the current entry count.
-When t, every property is inherited.  The value may also be a list of
-properties that should have inheritance, or a regular expression matching
-properties that should be inherited.
-
-However, note that some special properties use inheritance under special
-circumstances (not in searches).  Examples are CATEGORY, ARCHIVE, COLUMNS,
-and the properties ending in \"_ALL\" when they are used as descriptor
-for valid values of a property.
-
-Note for programmers:
-When querying an entry with `org-entry-get',  you can control if inheritance
-should be used.  By default, `org-entry-get' looks only at the local
-properties.  You can request inheritance by setting the inherit argument
-to t (to force inheritance) or to `selective' (to respect the setting
-in this variable)."
-  :group 'org-properties
-  :type '(choice
-	  (const :tag "Not" nil)
-	  (const :tag "Always" t)
-	  (repeat :tag "Specific properties" (string :tag "Property"))
-	  (regexp :tag "Properties matched by regexp")))
-
-(defun org-property-inherit-p (property)
-  "Return a non-nil value if PROPERTY should be inherited."
-  (cond
-   ((eq org-use-property-inheritance t) t)
-   ((not org-use-property-inheritance) nil)
-   ((stringp org-use-property-inheritance)
-    (string-match org-use-property-inheritance property))
-   ((listp org-use-property-inheritance)
-    (member-ignore-case property org-use-property-inheritance))
-   (t (error "Invalid setting of `org-use-property-inheritance'"))))
-
-(defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
-  "The default column format, if no other format has been defined.
-This variable can be set on the per-file basis by inserting a line
-
-#+COLUMNS: %25ITEM ....."
-  :group 'org-properties
-  :type 'string)
-
-(defcustom org-columns-ellipses ".."
-  "The ellipses to be used when a field in column view is truncated.
-When this is the empty string, as many characters as possible are shown,
-but then there will be no visual indication that the field has been truncated.
-When this is a string of length N, the last N characters of a truncated
-field are replaced by this string.  If the column is narrower than the
-ellipses string, only part of the ellipses string will be shown."
-  :group 'org-properties
-  :type 'string)
-
-(defconst org-global-properties-fixed
-  '(("VISIBILITY_ALL" . "folded children content all")
-    ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
-  "List of property/value pairs that can be inherited by any entry.
-
-These are fixed values, for the preset properties.  The user variable
-that can be used to add to this list is `org-global-properties'.
-
-The entries in this list are cons cells where the car is a property
-name and cdr is a string with the value.  If the value represents
-multiple items like an \"_ALL\" property, separate the items by
-spaces.")
-
-(defcustom org-global-properties nil
-  "List of property/value pairs that can be inherited by any entry.
-
-This list will be combined with the constant `org-global-properties-fixed'.
-
-The entries in this list are cons cells where the car is a property
-name and cdr is a string with the value.
-
-You can set buffer-local values for the same purpose in the variable
-`org-file-properties' this by adding lines like
-
-#+PROPERTY: NAME VALUE"
-  :group 'org-properties
-  :type '(repeat
-	  (cons (string :tag "Property")
-		(string :tag "Value"))))
-
-(defvar-local org-file-properties nil
-  "List of property/value pairs that can be inherited by any entry.
-Valid for the current buffer.
-This variable is populated from #+PROPERTY lines.")
-
-(defgroup org-agenda nil
-  "Options concerning agenda views in Org mode."
-  :tag "Org Agenda"
-  :group 'org)
-
-(defvar-local org-category nil
-  "Variable used by Org files to set a category for agenda display.
-Such files should use a file variable to set it, for example
-
-#   -*- mode: org; org-category: \"ELisp\"
-
-or contain a special line
-
-#+CATEGORY: ELisp
-
-If the file does not specify a category, then file's base name
-is used instead.")
-(put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
-
-(defcustom org-agenda-files nil
-  "The files to be used for agenda display.
-
-If an entry is a directory, all files in that directory that are matched
-by `org-agenda-file-regexp' will be part of the file list.
-
-If the value of the variable is not a list but a single file name, then
-the list of agenda files is actually stored and maintained in that file,
-one agenda file per line.  In this file paths can be given relative to
-`org-directory'.  Tilde expansion and environment variable substitution
-are also made.
-
-Entries may be added to this list with `\\[org-agenda-file-to-front]'
-and removed with `\\[org-remove-file]'."
-  :group 'org-agenda
-  :type '(choice
-	  (repeat :tag "List of files and directories" file)
-	  (file :tag "Store list in a file\n" :value "~/.agenda_files")))
-
-(defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
-  "Regular expression to match files for `org-agenda-files'.
-If any element in the list in that variable contains a directory instead
-of a normal file, all files in that directory that are matched by this
-regular expression will be included."
-  :group 'org-agenda
-  :type 'regexp)
-
-(defcustom org-agenda-text-search-extra-files nil
-  "List of extra files to be searched by text search commands.
-These files will be searched in addition to the agenda files by the
-commands `org-search-view' (`\\[org-agenda] s') \
-and `org-occur-in-agenda-files'.
-Note that these files will only be searched for text search commands,
-not for the other agenda views like todo lists, tag searches or the weekly
-agenda.  This variable is intended to list notes and possibly archive files
-that should also be searched by these two commands.
-In fact, if the first element in the list is the symbol `agenda-archives',
-then all archive files of all agenda files will be added to the search
-scope."
-  :group 'org-agenda
-  :type '(set :greedy t
-	      (const :tag "Agenda Archives" agenda-archives)
-	      (repeat :inline t (file))))
-
-(defvaralias 'org-agenda-multi-occur-extra-files
-  'org-agenda-text-search-extra-files)
-
-(defcustom org-agenda-skip-unavailable-files nil
-  "Non-nil means to just skip non-reachable files in `org-agenda-files'.
-A nil value means to remove them, after a query, from the list."
-  :group 'org-agenda
-  :type 'boolean)
-
-(defcustom org-calendar-to-agenda-key [?c]
-  "The key to be installed in `calendar-mode-map' for switching to the agenda.
-The command `org-calendar-goto-agenda' will be bound to this key.  The
-default is the character `c' because then `c' can be used to switch back and
-forth between agenda and calendar."
-  :group 'org-agenda
-  :type 'sexp)
-
-(defcustom org-calendar-insert-diary-entry-key [?i]
-  "The key to be installed in `calendar-mode-map' for adding diary entries.
-This option is irrelevant until `org-agenda-diary-file' has been configured
-to point to an Org file.  When that is the case, the command
-`org-agenda-diary-entry' will be bound to the key given here, by default
-`i'.  In the calendar, `i' normally adds entries to `diary-file'.  So
-if you want to continue doing this, you need to change this to a different
-key."
-  :group 'org-agenda
-  :type 'sexp)
-
-(defcustom org-agenda-diary-file 'diary-file
-  "File to which to add new entries with the `i' key in agenda and calendar.
-When this is the symbol `diary-file', the functionality in the Emacs
-calendar will be used to add entries to the `diary-file'.  But when this
-points to a file, `org-agenda-diary-entry' will be used instead."
-  :group 'org-agenda
-  :type '(choice
-	  (const :tag "The standard Emacs diary file" diary-file)
-	  (file :tag "Special Org file diary entries")))
-
-(eval-after-load "calendar"
-  '(progn
-     (org-defkey calendar-mode-map org-calendar-to-agenda-key
-		 'org-calendar-goto-agenda)
-     (add-hook 'calendar-mode-hook
-	       (lambda ()
-		 (unless (eq org-agenda-diary-file 'diary-file)
-		   (define-key calendar-mode-map
-		     org-calendar-insert-diary-entry-key
-		     'org-agenda-diary-entry))))))
-
-(defgroup org-latex nil
-  "Options for embedding LaTeX code into Org mode."
-  :tag "Org LaTeX"
-  :group 'org)
-
-(defcustom org-format-latex-options
-  '(:foreground default :background default :scale 1.0
-		:html-foreground "Black" :html-background "Transparent"
-		:html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
-  "Options for creating images from LaTeX fragments.
-This is a property list with the following properties:
-:foreground  the foreground color for images embedded in Emacs, e.g. \"Black\".
-             `default' means use the foreground of the default face.
-             `auto' means use the foreground from the text face.
-:background  the background color, or \"Transparent\".
-             `default' means use the background of the default face.
-             `auto' means use the background from the text face.
-:scale       a scaling factor for the size of the images, to get more pixels
-:html-foreground, :html-background, :html-scale
-             the same numbers for HTML export.
-:matchers    a list indicating which matchers should be used to
-             find LaTeX fragments.  Valid members of this list are:
-             \"begin\" find environments
-             \"$1\"    find single characters surrounded by $.$
-             \"$\"     find math expressions surrounded by $...$
-             \"$$\"    find math expressions surrounded by $$....$$
-             \"\\(\"    find math expressions surrounded by \\(...\\)
-             \"\\=\\[\"    find math expressions surrounded by \\=\\[...\\]"
-  :group 'org-latex
-  :type 'plist)
-
-(defcustom org-format-latex-signal-error t
-  "Non-nil means signal an error when image creation of LaTeX snippets fails.
-When nil, just push out a message."
-  :group 'org-latex
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-latex-to-mathml-jar-file nil
-  "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
-Use this to specify additional executable file say a jar file.
-
-When using MathToWeb as the converter, specify the full-path to
-your mathtoweb.jar file."
-  :group 'org-latex
-  :version "24.1"
-  :type '(choice
-	  (const :tag "None" nil)
-	  (file :tag "JAR file" :must-match t)))
-
-(defcustom org-latex-to-mathml-convert-command nil
-  "Command to convert LaTeX fragments to MathML.
-Replace format-specifiers in the command as noted below and use
-`shell-command' to convert LaTeX to MathML.
-%j:     Executable file in fully expanded form as specified by
-        `org-latex-to-mathml-jar-file'.
-%I:     Input LaTeX file in fully expanded form.
-%i:     The latex fragment to be converted.
-%o:     Output MathML file.
-
-This command is used by `org-create-math-formula'.
-
-When using MathToWeb as the converter, set this option to
-\"java -jar %j -unicode -force -df %o %I\".
-
-When using LaTeXML set this option to
-\"latexmlmath \"%i\" --presentationmathml=%o\"."
-  :group 'org-latex
-  :version "24.1"
-  :type '(choice
-	  (const :tag "None" nil)
-	  (string :tag "\nShell command")))
-
-(defcustom org-preview-latex-default-process 'dvipng
-  "The default process to convert LaTeX fragments to image files.
-All available processes and theirs documents can be found in
-`org-preview-latex-process-alist', which see."
-  :group 'org-latex
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type 'symbol)
-
-(defcustom org-preview-latex-process-alist
-  '((dvipng
-     :programs ("latex" "dvipng")
-     :description "dvi > png"
-     :message "you need to install the programs: latex and dvipng."
-     :image-input-type "dvi"
-     :image-output-type "png"
-     :image-size-adjust (1.0 . 1.0)
-     :latex-compiler ("latex -interaction nonstopmode -output-directory %o %f")
-     :image-converter ("dvipng -fg %F -bg %B -D %D -T tight -o %O %f"))
-    (dvisvgm
-     :programs ("latex" "dvisvgm")
-     :description "dvi > svg"
-     :message "you need to install the programs: latex and dvisvgm."
-     :use-xcolor t
-     :image-input-type "dvi"
-     :image-output-type "svg"
-     :image-size-adjust (1.7 . 1.5)
-     :latex-compiler ("latex -interaction nonstopmode -output-directory %o %f")
-     :image-converter ("dvisvgm %f -n -b min -c %S -o %O"))
-    (imagemagick
-     :programs ("latex" "convert")
-     :description "pdf > png"
-     :message "you need to install the programs: latex and imagemagick."
-     :use-xcolor t
-     :image-input-type "pdf"
-     :image-output-type "png"
-     :image-size-adjust (1.0 . 1.0)
-     :latex-compiler ("pdflatex -interaction nonstopmode -output-directory %o %f")
-     :image-converter
-     ("convert -density %D -trim -antialias %f -quality 100 %O")))
-  "Definitions of external processes for LaTeX previewing.
-Org mode can use some external commands to generate TeX snippet's images for
-previewing or inserting into HTML files, e.g., \"dvipng\".  This variable tells
-`org-create-formula-image' how to call them.
-
-The value is an alist with the pattern (NAME . PROPERTIES).  NAME is a symbol.
-PROPERTIES accepts the following attributes:
-
-  :programs           list of strings, required programs.
-  :description        string, describe the process.
-  :message            string, message it when required programs cannot be found.
-  :image-input-type   string, input file type of image converter (e.g., \"dvi\").
-  :image-output-type  string, output file type of image converter (e.g., \"png\").
-  :use-xcolor         boolean, when non-nil, LaTeX \"xcolor\" macro is used to
-                      deal with background and foreground color of image.
-                      Otherwise, dvipng style background and foreground color
-                      format are generated.  You may then refer to them in
-                      command options with \"%F\" and \"%B\".
-  :image-size-adjust  cons of numbers, the car element is used to adjust LaTeX
-                      image size showed in buffer and the cdr element is for
-                      HTML file.  This option is only useful for process
-                      developers, users should use variable
-                      `org-format-latex-options' instead.
-  :post-clean         list of strings, files matched are to be cleaned up once
-                      the image is generated.  When nil, the files with \".dvi\",
-                      \".xdv\", \".pdf\", \".tex\", \".aux\", \".log\", \".svg\",
-                      \".png\", \".jpg\", \".jpeg\" or \".out\" extension will
-                      be cleaned up.
-  :latex-header       list of strings, the LaTeX header of the snippet file.
-                      When nil, the fallback value is used instead, which is
-                      controlled by `org-format-latex-header',
-                      `org-latex-default-packages-alist' and
-                      `org-latex-packages-alist', which see.
-  :latex-compiler     list of LaTeX commands, as strings.  Each of them is given
-                      to the shell.  Place-holders \"%t\", \"%b\" and \"%o\" are
-                      replaced with values defined below.
-  :image-converter    list of image converter commands strings.  Each of them is
-                      given to the shell and supports any of the following
-                      place-holders defined below.
-
-Place-holders used by `:image-converter' and `:latex-compiler':
-
-  %f    input file name
-  %b    base name of input file
-  %o    base directory of input file
-  %O    absolute output file name
-
-Place-holders only used by `:image-converter':
-
-  %F    foreground of image
-  %B    background of image
-  %D    dpi, which is used to adjust image size by some processing commands.
-  %S    the image size scale ratio, which is used to adjust image size by some
-        processing commands."
-  :group 'org-latex
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type '(alist :tag "LaTeX to image backends"
-		:value-type (plist)))
-
-(defcustom org-preview-latex-image-directory "ltximg/"
-  "Path to store latex preview images.
-A relative path here creates many directories relative to the
-processed Org files paths.  An absolute path puts all preview
-images at the same place."
-  :group 'org-latex
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type 'string)
-
-(defun org-format-latex-mathml-available-p ()
-  "Return t if `org-latex-to-mathml-convert-command' is usable."
-  (save-match-data
-    (when (and (boundp 'org-latex-to-mathml-convert-command)
-	       org-latex-to-mathml-convert-command)
-      (let ((executable (car (split-string
-			      org-latex-to-mathml-convert-command))))
-	(when (executable-find executable)
-	  (if (string-match
-	       "%j" org-latex-to-mathml-convert-command)
-	      (file-readable-p org-latex-to-mathml-jar-file)
-	    t))))))
-
-(defcustom org-format-latex-header "\\documentclass{article}
-\\usepackage[usenames]{color}
-\[PACKAGES]
-\[DEFAULT-PACKAGES]
-\\pagestyle{empty}             % do not remove
-% The settings below are copied from fullpage.sty
-\\setlength{\\textwidth}{\\paperwidth}
-\\addtolength{\\textwidth}{-3cm}
-\\setlength{\\oddsidemargin}{1.5cm}
-\\addtolength{\\oddsidemargin}{-2.54cm}
-\\setlength{\\evensidemargin}{\\oddsidemargin}
-\\setlength{\\textheight}{\\paperheight}
-\\addtolength{\\textheight}{-\\headheight}
-\\addtolength{\\textheight}{-\\headsep}
-\\addtolength{\\textheight}{-\\footskip}
-\\addtolength{\\textheight}{-3cm}
-\\setlength{\\topmargin}{1.5cm}
-\\addtolength{\\topmargin}{-2.54cm}"
-  "The document header used for processing LaTeX fragments.
-It is imperative that this header make sure that no page number
-appears on the page.  The package defined in the variables
-`org-latex-default-packages-alist' and `org-latex-packages-alist'
-will either replace the placeholder \"[PACKAGES]\" in this
-header, or they will be appended."
-  :group 'org-latex
-  :type 'string)
-
-(defun org-set-packages-alist (var val)
-  "Set the packages alist and make sure it has 3 elements per entry."
-  (set var (mapcar (lambda (x)
-		     (if (and (consp x) (= (length x) 2))
-			 (list (car x) (nth 1 x) t)
-		       x))
-		   val)))
-
-(defun org-get-packages-alist (var)
-  "Get the packages alist and make sure it has 3 elements per entry."
-  (mapcar (lambda (x)
-	    (if (and (consp x) (= (length x) 2))
-		(list (car x) (nth 1 x) t)
-	      x))
-	  (default-value var)))
-
-(defcustom org-latex-default-packages-alist
-  '(("AUTO" "inputenc"  t ("pdflatex"))
-    ("T1"   "fontenc"   t ("pdflatex"))
-    (""     "graphicx"  t)
-    (""     "grffile"   t)
-    (""     "longtable" nil)
-    (""     "wrapfig"   nil)
-    (""     "rotating"  nil)
-    ("normalem" "ulem"  t)
-    (""     "amsmath"   t)
-    (""     "textcomp"  t)
-    (""     "amssymb"   t)
-    (""     "capt-of"   nil)
-    (""     "hyperref"  nil))
-  "Alist of default packages to be inserted in the header.
-
-Change this only if one of the packages here causes an
-incompatibility with another package you are using.
-
-The packages in this list are needed by one part or another of
-Org mode to function properly:
-
-- inputenc, fontenc:  for basic font and character selection
-- graphicx: for including images
-- grffile: allow periods and spaces in graphics file names
-- longtable: For multipage tables
-- wrapfig: for figure placement
-- rotating: for sideways figures and tables
-- ulem: for underline and strike-through
-- amsmath: for subscript and superscript and math environments
-- textcomp, amssymb: for various symbols used
-  for interpreting the entities in `org-entities'.  You can skip
-  some of these packages if you don't use any of their symbols.
-- capt-of: for captions outside of floats
-- hyperref: for cross references
-
-Therefore you should not modify this variable unless you know
-what you are doing.  The one reason to change it anyway is that
-you might be loading some other package that conflicts with one
-of the default packages.  Each element is either a cell or
-a string.
-
-A cell is of the format
-
-  (\"options\" \"package\" SNIPPET-FLAG COMPILERS)
-
-If SNIPPET-FLAG is non-nil, the package also needs to be included
-when compiling LaTeX snippets into images for inclusion into
-non-LaTeX output.  COMPILERS is a list of compilers that should
-include the package, see `org-latex-compiler'.  If the document
-compiler is not in the list, and the list is non-nil, the package
-will not be inserted in the final document.
-
-A string will be inserted as-is in the header of the document."
-  :group 'org-latex
-  :group 'org-export-latex
-  :set 'org-set-packages-alist
-  :get 'org-get-packages-alist
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(repeat
-	  (choice
-	   (list :tag "options/package pair"
-		 (string :tag "options")
-		 (string :tag "package")
-		 (boolean :tag "Snippet")
-		 (choice
-		  (const :tag "For all compilers" nil)
-		  (repeat :tag "Allowed compiler" string)))
-	   (string :tag "A line of LaTeX"))))
-
-(defcustom org-latex-packages-alist nil
-  "Alist of packages to be inserted in every LaTeX header.
-
-These will be inserted after `org-latex-default-packages-alist'.
-Each element is either a cell or a string.
-
-A cell is of the format:
-
-    (\"options\" \"package\" SNIPPET-FLAG)
-
-SNIPPET-FLAG, when non-nil, indicates that this package is also
-needed when turning LaTeX snippets into images for inclusion into
-non-LaTeX output.
-
-A string will be inserted as-is in the header of the document.
-
-Make sure that you only list packages here which:
-
-  - you want in every file;
-  - do not conflict with the setup in `org-format-latex-header';
-  - do not conflict with the default packages in
-    `org-latex-default-packages-alist'."
-  :group 'org-latex
-  :group 'org-export-latex
-  :set 'org-set-packages-alist
-  :get 'org-get-packages-alist
-  :type '(repeat
-	  (choice
-	   (list :tag "options/package pair"
-		 (string :tag "options")
-		 (string :tag "package")
-		 (boolean :tag "Snippet"))
-	   (string :tag "A line of LaTeX"))))
-
-(defgroup org-appearance nil
-  "Settings for Org mode appearance."
-  :tag "Org Appearance"
-  :group 'org)
-
-(defcustom org-level-color-stars-only nil
-  "Non-nil means fontify only the stars in each headline.
-When nil, the entire headline is fontified.
-Changing it requires restart of `font-lock-mode' to become effective
-also in regions already fontified."
-  :group 'org-appearance
-  :type 'boolean)
-
-(defcustom org-hide-leading-stars nil
-  "Non-nil means hide the first N-1 stars in a headline.
-This works by using the face `org-hide' for these stars.  This
-face is white for a light background, and black for a dark
-background.  You may have to customize the face `org-hide' to
-make this work.
-Changing it requires restart of `font-lock-mode' to become effective
-also in regions already fontified.
-You may also set this on a per-file basis by adding one of the following
-lines to the buffer:
-
-   #+STARTUP: hidestars
-   #+STARTUP: showstars"
-  :group 'org-appearance
-  :type 'boolean)
-
-(defcustom org-hidden-keywords nil
-  "List of symbols corresponding to keywords to be hidden in the Org buffer.
-For example, a value \\='(title) for this list makes the document's title
-appear in the buffer without the initial \"#+TITLE:\" part."
-  :group 'org-appearance
-  :version "24.1"
-  :type '(set (const :tag "#+AUTHOR" author)
-	      (const :tag "#+DATE" date)
-	      (const :tag "#+EMAIL" email)
-	      (const :tag "#+TITLE" title)))
-
-(defcustom org-custom-properties nil
-  "List of properties (as strings) with a special meaning.
-The default use of these custom properties is to let the user
-hide them with `org-toggle-custom-properties-visibility'."
-  :group 'org-properties
-  :group 'org-appearance
-  :version "24.3"
-  :type '(repeat (string :tag "Property Name")))
-
-(defcustom org-fontify-done-headline nil
-  "Non-nil means change the face of a headline if it is marked DONE.
-Normally, only the TODO/DONE keyword indicates the state of a headline.
-When this is non-nil, the headline after the keyword is set to the
-`org-headline-done' as an additional indication."
-  :group 'org-appearance
-  :type 'boolean)
-
-(defcustom org-fontify-emphasized-text t
-  "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
-Changing this variable requires a restart of Emacs to take effect."
-  :group 'org-appearance
-  :type 'boolean)
-
-(defcustom org-fontify-whole-heading-line nil
-  "Non-nil means fontify the whole line for headings.
-This is useful when setting a background color for the
-org-level-* faces."
-  :group 'org-appearance
-  :type 'boolean)
-
-(defcustom org-highlight-latex-and-related nil
-  "Non-nil means highlight LaTeX related syntax in the buffer.
-When non nil, the value should be a list containing any of the
-following symbols:
-  `latex'    Highlight LaTeX snippets and environments.
-  `script'   Highlight subscript and superscript.
-  `entities' Highlight entities."
-  :group 'org-appearance
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "No highlighting" nil)
-	  (set :greedy t :tag "Highlight"
-	       (const :tag "LaTeX snippets and environments" latex)
-	       (const :tag "Subscript and superscript" script)
-	       (const :tag "Entities" entities))))
-
-(defcustom org-hide-emphasis-markers nil
-  "Non-nil mean font-lock should hide the emphasis marker characters."
-  :group 'org-appearance
-  :type 'boolean)
-
-(defcustom org-hide-macro-markers nil
-  "Non-nil mean font-lock should hide the brackets marking macro calls."
-  :group 'org-appearance
-  :type 'boolean)
-
-(defcustom org-pretty-entities nil
-  "Non-nil means show entities as UTF8 characters.
-When nil, the \\name form remains in the buffer."
-  :group 'org-appearance
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-pretty-entities-include-sub-superscripts t
-  "Non-nil means, pretty entity display includes formatting sub/superscripts."
-  :group 'org-appearance
-  :version "24.1"
-  :type 'boolean)
-
-(defvar org-emph-re nil
-  "Regular expression for matching emphasis.
-After a match, the match groups contain these elements:
-0  The match of the full regular expression, including the characters
-   before and after the proper match
-1  The character before the proper match, or empty at beginning of line
-2  The proper match, including the leading and trailing markers
-3  The leading marker like * or /, indicating the type of highlighting
-4  The text between the emphasis markers, not including the markers
-5  The character after the match, empty at the end of a line")
-
-(defvar org-verbatim-re nil
-  "Regular expression for matching verbatim text.")
-
-(defvar org-emphasis-regexp-components) ; defined just below
-(defvar org-emphasis-alist) ; defined just below
-(defun org-set-emph-re (var val)
-  "Set variable and compute the emphasis regular expression."
-  (set var val)
-  (when (and (boundp 'org-emphasis-alist)
-	     (boundp 'org-emphasis-regexp-components)
-	     org-emphasis-alist org-emphasis-regexp-components)
-    (pcase-let*
-	((`(,pre ,post ,border ,body ,nl) org-emphasis-regexp-components)
-	 (body (if (<= nl 0) body
-		 (format "%s*?\\(?:\n%s*?\\)\\{0,%d\\}" body body nl)))
-	 (template
-	  (format (concat "\\([%s]\\|^\\)" ;before markers
-			  "\\(\\([%%s]\\)\\([^%s]\\|[^%s]%s[^%s]\\)\\3\\)"
-			  "\\([%s]\\|$\\)") ;after markers
-		  pre border border body border post)))
-      (setq org-emph-re (format template "*/_+"))
-      (setq org-verbatim-re (format template "=~")))))
-
-;; This used to be a defcustom (Org <8.0) but allowing the users to
-;; set this option proved cumbersome.  See this message/thread:
-;; http://article.gmane.org/gmane.emacs.orgmode/68681
-(defvar org-emphasis-regexp-components
-  '("- \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n" "." 1)
-  "Components used to build the regular expression for emphasis.
-This is a list with five entries.  Terminology:  In an emphasis string
-like \" *strong word* \", we call the initial space PREMATCH, the final
-space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
-and \"trong wor\" is the body.  The different components in this variable
-specify what is allowed/forbidden in each part:
-
-pre          Chars allowed as prematch.  Beginning of line will be allowed too.
-post         Chars allowed as postmatch.  End of line will be allowed too.
-border       The chars *forbidden* as border characters.
-body-regexp  A regexp like \".\" to match a body character.  Don't use
-             non-shy groups here, and don't allow newline here.
-newline      The maximum number of newlines allowed in an emphasis exp.
-
-You need to reload Org or to restart Emacs after customizing this.")
-
-(defcustom org-emphasis-alist
-  '(("*" bold)
-    ("/" italic)
-    ("_" underline)
-    ("=" org-verbatim verbatim)
-    ("~" org-code verbatim)
-    ("+" (:strike-through t)))
-  "Alist of characters and faces to emphasize text.
-Text starting and ending with a special character will be emphasized,
-for example *bold*, _underlined_ and /italic/.  This variable sets the
-marker characters and the face to be used by font-lock for highlighting
-in Org buffers.
-
-You need to reload Org or to restart Emacs after customizing this."
-  :group 'org-appearance
-  :set 'org-set-emph-re
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(repeat
-	  (list
-	   (string :tag "Marker character")
-	   (choice
-	    (face :tag "Font-lock-face")
-	    (plist :tag "Face property list"))
-	   (option (const verbatim)))))
-
-(defvar org-protecting-blocks '("src" "example" "export")
-  "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
-This is needed for font-lock setup.")
-
-;;; Functions and variables from their packages
-;;  Declared here to avoid compiler warnings
-(defvar mark-active)
-
-;; Various packages
-(declare-function calc-eval "calc" (str &optional separator &rest args))
-(declare-function calendar-forward-day "cal-move" (arg))
-(declare-function calendar-goto-date "cal-move" (date))
-(declare-function calendar-goto-today "cal-move" ())
-(declare-function calendar-iso-from-absolute "cal-iso" (date))
-(declare-function calendar-iso-to-absolute "cal-iso" (date))
-(declare-function cdlatex-compute-tables "ext:cdlatex" ())
-(declare-function cdlatex-tab "ext:cdlatex" ())
-(declare-function dired-get-filename
-		  "dired"
-		  (&optional localp no-error-if-not-filep))
-(declare-function iswitchb-read-buffer
-		  "iswitchb"
-		  (prompt &optional
-			  default require-match _predicate start matches-set))
-(declare-function org-agenda-change-all-lines
-		  "org-agenda"
-		  (newhead hdmarker &optional fixface just-this))
-(declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
-		  "org-agenda"
-		  (&optional end))
-(declare-function org-agenda-copy-local-variable "org-agenda" (var))
-(declare-function org-agenda-format-item
-		  "org-agenda"
-		  (extra txt &optional level category tags dotime
-			 remove-re habitp))
-(declare-function org-agenda-maybe-redo "org-agenda" ())
-(declare-function org-agenda-new-marker "org-agenda" (&optional pos))
-(declare-function org-agenda-save-markers-for-cut-and-paste
-		  "org-agenda"
-		  (beg end))
-(declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
-(declare-function org-agenda-skip "org-agenda" ())
-(declare-function org-attach-reveal "org-attach" (&optional if-exists))
-(declare-function org-gnus-follow-link "org-gnus" (&optional group article))
-(declare-function org-indent-mode "org-indent" (&optional arg))
-(declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
-(declare-function org-inlinetask-goto-end "org-inlinetask" ())
-(declare-function org-inlinetask-in-task-p "org-inlinetask" ())
-(declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
-(declare-function orgtbl-send-table "org-table" (&optional maybe))
-(declare-function parse-time-string "parse-time" (string))
-(declare-function speedbar-line-directory "speedbar" (&optional depth))
-
-(defvar align-mode-rules-list)
-(defvar calc-embedded-close-formula)
-(defvar calc-embedded-open-formula)
-(defvar calc-embedded-open-mode)
-(defvar font-lock-unfontify-region-function)
-(defvar iswitchb-temp-buflist)
-(defvar org-agenda-tags-todo-honor-ignore-options)
-(defvar remember-data-file)
-(defvar texmathp-why)
-
-;;;###autoload
-(defun turn-on-orgtbl ()
-  "Unconditionally turn on `orgtbl-mode'."
-  (require 'org-table)
-  (orgtbl-mode 1))
-
-(defun org-at-table-p (&optional table-type)
-  "Non-nil if the cursor is inside an Org table.
-If TABLE-TYPE is non-nil, also check for table.el-type tables."
-  (and (org-match-line (if table-type "[ \t]*[|+]" "[ \t]*|"))
-       (or (not (derived-mode-p 'org-mode))
-	   (let ((e (org-element-lineage (org-element-at-point) '(table) t)))
-	     (and e (or table-type
-			(eq 'org (org-element-property :type e))))))))
-
-(defun org-at-table.el-p ()
-  "Non-nil when point is at a table.el table."
-  (and (org-match-line "[ \t]*[|+]")
-       (let ((element (org-element-at-point)))
-	 (and (eq (org-element-type element) 'table)
-	      (eq (org-element-property :type element) 'table.el)))))
-
-(defun org-at-table-hline-p ()
-  "Non-nil when point is inside a hline in a table.
-Assume point is already in a table."
-  (org-match-line org-table-hline-regexp))
-
-(defun org-table-map-tables (function &optional quietly)
-  "Apply FUNCTION to the start of all tables in the buffer."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (while (re-search-forward org-table-any-line-regexp nil t)
-     (unless quietly
-       (message "Mapping tables: %d%%"
-		(floor (* 100.0 (point)) (buffer-size))))
-     (beginning-of-line 1)
-     (when (and (looking-at org-table-line-regexp)
-		;; Exclude tables in src/example/verbatim/clocktable blocks
-		(not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
-       (save-excursion (funcall function))
-       (or (looking-at org-table-line-regexp)
-	   (forward-char 1)))
-     (re-search-forward org-table-any-border-regexp nil 1)))
-  (unless quietly (message "Mapping tables: done")))
-
-(declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
-(declare-function org-clock-update-mode-line "org-clock" ())
-(declare-function org-resolve-clocks "org-clock"
-		  (&optional also-non-dangling-p prompt last-valid))
-
-(defun org-at-TBLFM-p (&optional pos)
-  "Non-nil when point (or POS) is in #+TBLFM line."
-  (save-excursion
-    (goto-char (or pos (point)))
-    (beginning-of-line)
-    (and (let ((case-fold-search t)) (looking-at org-TBLFM-regexp))
-	 (eq (org-element-type (org-element-at-point)) 'table))))
-
-(defvar org-clock-start-time)
-(defvar org-clock-marker (make-marker)
-  "Marker recording the last clock-in.")
-(defvar org-clock-hd-marker (make-marker)
-  "Marker recording the last clock-in, but the headline position.")
-(defvar org-clock-heading ""
-  "The heading of the current clock entry.")
-(defun org-clock-is-active ()
-  "Return the buffer where the clock is currently running.
-Return nil if no clock is running."
-  (marker-buffer org-clock-marker))
-
-(defun org-check-running-clock ()
-  "Check if the current buffer contains the running clock.
-If yes, offer to stop it and to save the buffer with the changes."
-  (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
-	     (y-or-n-p (format "Clock-out in buffer %s before killing it? "
-			       (buffer-name))))
-    (org-clock-out)
-    (when (y-or-n-p "Save changed buffer?")
-      (save-buffer))))
-
-(defun org-clocktable-try-shift (dir n)
-  "Check if this line starts a clock table, if yes, shift the time block."
-  (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
-    (org-clocktable-shift dir n)))
-
-;;;###autoload
-(defun org-clock-persistence-insinuate ()
-  "Set up hooks for clock persistence."
-  (require 'org-clock)
-  (add-hook 'org-mode-hook 'org-clock-load)
-  (add-hook 'kill-emacs-hook 'org-clock-save))
-
-(defgroup org-archive nil
-  "Options concerning archiving in Org mode."
-  :tag "Org Archive"
-  :group 'org-structure)
-
-(defcustom org-archive-location "%s_archive::"
-  "The location where subtrees should be archived.
-
-The value of this variable is a string, consisting of two parts,
-separated by a double-colon.  The first part is a filename and
-the second part is a headline.
-
-When the filename is omitted, archiving happens in the same file.
-%s in the filename will be replaced by the current file
-name (without the directory part).  Archiving to a different file
-is useful to keep archived entries from contributing to the
-Org Agenda.
-
-The archived entries will be filed as subtrees of the specified
-headline.  When the headline is omitted, the subtrees are simply
-filed away at the end of the file, as top-level entries.  Also in
-the heading you can use %s to represent the file name, this can be
-useful when using the same archive for a number of different files.
-
-Here are a few examples:
-\"%s_archive::\"
-	If the current file is Projects.org, archive in file
-	Projects.org_archive, as top-level trees.  This is the default.
-
-\"::* Archived Tasks\"
-	Archive in the current file, under the top-level headline
-	\"* Archived Tasks\".
-
-\"~/org/archive.org::\"
-	Archive in file ~/org/archive.org (absolute path), as top-level trees.
-
-\"~/org/archive.org::* From %s\"
-	Archive in file ~/org/archive.org (absolute path), under headlines
-        \"From FILENAME\" where file name is the current file name.
-
-\"~/org/datetree.org::datetree/* Finished Tasks\"
-        The \"datetree/\" string is special, signifying to archive
-        items to the datetree.  Items are placed in either the CLOSED
-        date of the item, or the current date if there is no CLOSED date.
-        The heading will be a subentry to the current date.  There doesn't
-        need to be a heading, but there always needs to be a slash after
-        datetree.  For example, to store archived items directly in the
-        datetree, use \"~/org/datetree.org::datetree/\".
-
-\"basement::** Finished Tasks\"
-	Archive in file ./basement (relative path), as level 3 trees
-	below the level 2 heading \"** Finished Tasks\".
-
-You may set this option on a per-file basis by adding to the buffer a
-line like
-
-#+ARCHIVE: basement::** Finished Tasks
-
-You may also define it locally for a subtree by setting an ARCHIVE property
-in the entry.  If such a property is found in an entry, or anywhere up
-the hierarchy, it will be used."
-  :group 'org-archive
-  :type 'string)
-
-(defcustom org-agenda-skip-archived-trees t
-  "Non-nil means the agenda will skip any items located in archived trees.
-An archived tree is a tree marked with the tag ARCHIVE.  The use of this
-variable is no longer recommended, you should leave it at the value t.
-Instead, use the key `v' to cycle the archives-mode in the agenda."
-  :group 'org-archive
-  :group 'org-agenda-skip
-  :type 'boolean)
-
-(defcustom org-columns-skip-archived-trees t
-  "Non-nil means ignore archived trees when creating column view."
-  :group 'org-archive
-  :group 'org-properties
-  :type 'boolean)
-
-(defcustom org-cycle-open-archived-trees nil
-  "Non-nil means `org-cycle' will open archived trees.
-An archived tree is a tree marked with the tag ARCHIVE.
-When nil, archived trees will stay folded.  You can still open them with
-normal outline commands like `show-all', but not with the cycling commands."
-  :group 'org-archive
-  :group 'org-cycle
-  :type 'boolean)
-
-(defcustom org-sparse-tree-open-archived-trees nil
-  "Non-nil means sparse tree construction shows matches in archived trees.
-When nil, matches in these trees are highlighted, but the trees are kept in
-collapsed state."
-  :group 'org-archive
-  :group 'org-sparse-trees
-  :type 'boolean)
-
-(defcustom org-sparse-tree-default-date-type nil
-  "The default date type when building a sparse tree.
-When this is nil, a date is a scheduled or a deadline timestamp.
-Otherwise, these types are allowed:
-
-        all: all timestamps
-     active: only active timestamps (<...>)
-   inactive: only inactive timestamps ([...])
-  scheduled: only scheduled timestamps
-   deadline: only deadline timestamps"
-  :type '(choice (const :tag "Scheduled or deadline" nil)
-		 (const :tag "All timestamps" all)
-		 (const :tag "Only active timestamps" active)
-		 (const :tag "Only inactive timestamps" inactive)
-		 (const :tag "Only scheduled timestamps" scheduled)
-		 (const :tag "Only deadline timestamps" deadline)
-		 (const :tag "Only closed timestamps" closed))
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :group 'org-sparse-trees)
-
-(defun org-cycle-hide-archived-subtrees (state)
-  "Re-hide all archived subtrees after a visibility state change.
-STATE should be one of the symbols listed in the docstring of
-`org-cycle-hook'."
-  (when (and (not org-cycle-open-archived-trees)
-             (not (memq state '(overview folded))))
-    (save-excursion
-      (let* ((globalp (memq state '(contents all)))
-             (beg (if globalp (point-min) (point)))
-             (end (if globalp (point-max) (org-end-of-subtree t))))
-	(org-hide-archived-subtrees beg end)
-	(goto-char beg)
-	(when (looking-at-p (concat ".*:" org-archive-tag ":"))
-	  (message "%s" (substitute-command-keys
-			 "Subtree is archived and stays closed.  Use \
-`\\[org-force-cycle-archived]' to cycle it anyway.")))))))
-
-(defun org-force-cycle-archived ()
-  "Cycle subtree even if it is archived."
-  (interactive)
-  (setq this-command 'org-cycle)
-  (let ((org-cycle-open-archived-trees t))
-    (call-interactively 'org-cycle)))
-
-(defun org-hide-archived-subtrees (beg end)
-  "Re-hide all archived subtrees after a visibility state change."
-  (org-with-wide-buffer
-   (let ((case-fold-search nil)
-	 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
-     (goto-char beg)
-     ;; Include headline point is currently on.
-     (beginning-of-line)
-     (while (and (< (point) end) (re-search-forward re end t))
-       (when (member org-archive-tag (org-get-tags))
-	 (org-flag-subtree t)
-	 (org-end-of-subtree t))))))
-
-(declare-function outline-end-of-heading "outline" ())
-(declare-function outline-flag-region "outline" (from to flag))
-(defun org-flag-subtree (flag)
-  (save-excursion
-    (org-back-to-heading t)
-    (outline-end-of-heading)
-    (outline-flag-region (point)
-			 (progn (org-end-of-subtree t) (point))
-			 flag)))
-
-(defalias 'org-advertized-archive-subtree 'org-archive-subtree)
-
-;; Declare Column View Code
-
-(declare-function org-columns-get-format-and-top-level "org-colview" ())
-(declare-function org-columns-compute "org-colview" (property))
-
-;; Declare ID code
-
-(declare-function org-id-store-link "org-id")
-(declare-function org-id-locations-load "org-id")
-(declare-function org-id-locations-save "org-id")
-(defvar org-id-track-globally)
-
-;;; Variables for pre-computed regular expressions, all buffer local
-
-(defvar-local org-todo-regexp nil
-  "Matches any of the TODO state keywords.
-Since TODO keywords are case-sensitive, `case-fold-search' is
-expected to be bound to nil when matching against this regexp.")
-
-(defvar-local org-not-done-regexp nil
-  "Matches any of the TODO state keywords except the last one.
-Since TODO keywords are case-sensitive, `case-fold-search' is
-expected to be bound to nil when matching against this regexp.")
-
-(defvar-local org-not-done-heading-regexp nil
-  "Matches a TODO headline that is not done.
-Since TODO keywords are case-sensitive, `case-fold-search' is
-expected to be bound to nil when matching against this regexp.")
-
-(defvar-local org-todo-line-regexp nil
-  "Matches a headline and puts TODO state into group 2 if present.
-Since TODO keywords are case-sensitive, `case-fold-search' is
-expected to be bound to nil when matching against this regexp.")
-
-(defvar-local org-complex-heading-regexp nil
-  "Matches a headline and puts everything into groups:
-
-group 1: Stars
-group 2: The TODO keyword, maybe
-group 3: Priority cookie
-group 4: True headline
-group 5: Tags
-
-Since TODO keywords are case-sensitive, `case-fold-search' is
-expected to be bound to nil when matching against this regexp.")
-
-(defvar-local org-complex-heading-regexp-format nil
-  "Printf format to make regexp to match an exact headline.
-This regexp will match the headline of any node which has the
-exact headline text that is put into the format, but may have any
-TODO state, priority and tags.")
-
-(defvar-local org-todo-line-tags-regexp nil
-  "Matches a headline and puts TODO state into group 2 if present.
-Also put tags into group 4 if tags are present.")
-
-(defconst org-plain-time-of-day-regexp
-  (concat
-   "\\(\\<[012]?[0-9]"
-   "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
-   "\\(--?"
-   "\\(\\<[012]?[0-9]"
-   "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
-   "\\)?")
-  "Regular expression to match a plain time or time range.
-Examples:  11:45 or 8am-13:15 or 2:45-2:45pm.  After a match, the following
-groups carry important information:
-0  the full match
-1  the first time, range or not
-8  the second time, if it is a range.")
-
-(defconst org-plain-time-extension-regexp
-  (concat
-   "\\(\\<[012]?[0-9]"
-   "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
-   "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
-  "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
-Examples:  11:45 or 8am-13:15 or 2:45-2:45pm.  After a match, the following
-groups carry important information:
-0  the full match
-7  hours of duration
-9  minutes of duration")
-
-(defconst org-stamp-time-of-day-regexp
-  (concat
-   "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
-   "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
-   "\\(--?"
-   "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
-  "Regular expression to match a timestamp time or time range.
-After a match, the following groups carry important information:
-0  the full match
-1  date plus weekday, for back referencing to make sure both times are on the same day
-2  the first time, range or not
-4  the second time, if it is a range.")
-
-(defconst org-startup-options
-  '(("fold" org-startup-folded t)
-    ("overview" org-startup-folded t)
-    ("nofold" org-startup-folded nil)
-    ("showall" org-startup-folded nil)
-    ("showeverything" org-startup-folded showeverything)
-    ("content" org-startup-folded content)
-    ("indent" org-startup-indented t)
-    ("noindent" org-startup-indented nil)
-    ("hidestars" org-hide-leading-stars t)
-    ("showstars" org-hide-leading-stars nil)
-    ("odd" org-odd-levels-only t)
-    ("oddeven" org-odd-levels-only nil)
-    ("align" org-startup-align-all-tables t)
-    ("noalign" org-startup-align-all-tables nil)
-    ("inlineimages" org-startup-with-inline-images t)
-    ("noinlineimages" org-startup-with-inline-images nil)
-    ("latexpreview" org-startup-with-latex-preview t)
-    ("nolatexpreview" org-startup-with-latex-preview nil)
-    ("customtime" org-display-custom-times t)
-    ("logdone" org-log-done time)
-    ("lognotedone" org-log-done note)
-    ("nologdone" org-log-done nil)
-    ("lognoteclock-out" org-log-note-clock-out t)
-    ("nolognoteclock-out" org-log-note-clock-out nil)
-    ("logrepeat" org-log-repeat state)
-    ("lognoterepeat" org-log-repeat note)
-    ("logdrawer" org-log-into-drawer t)
-    ("nologdrawer" org-log-into-drawer nil)
-    ("logstatesreversed" org-log-states-order-reversed t)
-    ("nologstatesreversed" org-log-states-order-reversed nil)
-    ("nologrepeat" org-log-repeat nil)
-    ("logreschedule" org-log-reschedule time)
-    ("lognotereschedule" org-log-reschedule note)
-    ("nologreschedule" org-log-reschedule nil)
-    ("logredeadline" org-log-redeadline time)
-    ("lognoteredeadline" org-log-redeadline note)
-    ("nologredeadline" org-log-redeadline nil)
-    ("logrefile" org-log-refile time)
-    ("lognoterefile" org-log-refile note)
-    ("nologrefile" org-log-refile nil)
-    ("fninline" org-footnote-define-inline t)
-    ("nofninline" org-footnote-define-inline nil)
-    ("fnlocal" org-footnote-section nil)
-    ("fnauto" org-footnote-auto-label t)
-    ("fnprompt" org-footnote-auto-label nil)
-    ("fnconfirm" org-footnote-auto-label confirm)
-    ("fnplain" org-footnote-auto-label plain)
-    ("fnadjust" org-footnote-auto-adjust t)
-    ("nofnadjust" org-footnote-auto-adjust nil)
-    ("constcgs" constants-unit-system cgs)
-    ("constSI" constants-unit-system SI)
-    ("noptag" org-tag-persistent-alist nil)
-    ("hideblocks" org-hide-block-startup t)
-    ("nohideblocks" org-hide-block-startup nil)
-    ("beamer" org-startup-with-beamer-mode t)
-    ("entitiespretty" org-pretty-entities t)
-    ("entitiesplain" org-pretty-entities nil))
-  "Variable associated with STARTUP options for Org.
-Each element is a list of three items: the startup options (as written
-in the #+STARTUP line), the corresponding variable, and the value to set
-this variable to if the option is found.  An optional forth element PUSH
-means to push this value onto the list in the variable.")
-
-(defcustom org-group-tags t
-  "When non-nil (the default), use group tags.
-This can be turned on/off through `org-toggle-tags-groups'."
-  :group 'org-tags
-  :group 'org-startup
-  :type 'boolean)
-
-(defvar org-inhibit-startup nil)        ; Dynamically-scoped param.
-
-(defun org-toggle-tags-groups ()
-  "Toggle support for group tags.
-Support for group tags is controlled by the option
-`org-group-tags', which is non-nil by default."
-  (interactive)
-  (setq org-group-tags (not org-group-tags))
-  (cond ((and (derived-mode-p 'org-agenda-mode)
-	      org-group-tags)
-	 (org-agenda-redo))
-	((derived-mode-p 'org-mode)
-	 (let ((org-inhibit-startup t)) (org-mode))))
-  (message "Groups tags support has been turned %s"
-	   (if org-group-tags "on" "off")))
-
-(defun org--tag-add-to-alist (alist1 alist2)
-  "Merge tags from ALIST1 into ALIST2.
-
-Duplicates tags outside a group are removed.  Keywords and order
-are preserved.
-
-The function assumes ALIST1 and ALIST2 are proper tag alists.
-See `org-tag-alist' for their structure."
-  (cond
-   ((null alist2) alist1)
-   ((null alist1) alist2)
-   (t
-    (let ((to-add nil)
-	  (group-flag nil))
-      (dolist (tag-pair alist1)
-	(pcase tag-pair
-	  (`(,(or :startgrouptag :startgroup))
-	   (setq group-flag t)
-	   (push tag-pair to-add))
-	  (`(,(or :endgrouptag :endgroup))
-	   (setq group-flag nil)
-	   (push tag-pair to-add))
-	  (`(,(or :grouptags :newline))
-	   (push tag-pair to-add))
-	  (`(,tag . ,_)
-	   ;; Remove duplicates from ALIST1, unless they are in
-	   ;; a group.  Indeed, it makes sense to have a tag appear in
-	   ;; multiple groups.
-	   (when (or group-flag (not (assoc tag alist2)))
-	     (push tag-pair to-add)))
-	  (_ (error "Invalid association in tag alist: %S" tag-pair))))
-      ;; Preserve order of ALIST1.
-      (append (nreverse to-add) alist2)))))
-
-(defun org-set-regexps-and-options (&optional tags-only)
-  "Precompute regular expressions used in the current buffer.
-When optional argument TAGS-ONLY is non-nil, only compute tags
-related expressions."
-  (when (derived-mode-p 'org-mode)
-    (let ((alist (org--setup-collect-keywords
-		  (org-make-options-regexp
-		   (append '("FILETAGS" "TAGS" "SETUPFILE")
-			   (and (not tags-only)
-				'("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
-				  "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
-				  "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
-      ;; Startup options.  Get this early since it does change
-      ;; behavior for other options (e.g., tags).
-      (let ((startup (cdr (assq 'startup alist))))
-	(dolist (option startup)
-	  (let ((entry (assoc-string option org-startup-options t)))
-	    (when entry
-	      (let ((var (nth 1 entry))
-		    (val (nth 2 entry)))
-		(if (not (nth 3 entry)) (set (make-local-variable var) val)
-		  (unless (listp (symbol-value var))
-		    (set (make-local-variable var) nil))
-		  (add-to-list var val)))))))
-      (setq-local org-file-tags
-		  (mapcar #'org-add-prop-inherited
-			  (cdr (assq 'filetags alist))))
-      (setq org-current-tag-alist
-	    (org--tag-add-to-alist
-	     org-tag-persistent-alist
-	     (let ((tags (cdr (assq 'tags alist))))
-	       (if tags (org-tag-string-to-alist tags)
-		 org-tag-alist))))
-      (setq org-tag-groups-alist
-	    (org-tag-alist-to-groups org-current-tag-alist))
-      (unless tags-only
-	;; File properties.
-	(setq-local org-file-properties (cdr (assq 'property alist)))
-	;; Archive location.
-	(let ((archive (cdr (assq 'archive alist))))
-	  (when archive (setq-local org-archive-location archive)))
-	;; Category.
-	(let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
-	  (when cat
-	    (setq-local org-category (intern cat))
-	    (setq-local org-file-properties
-			(org--update-property-plist
-			 "CATEGORY" cat org-file-properties))))
-	;; Columns.
-	(let ((column (cdr (assq 'columns alist))))
-	  (when column (setq-local org-columns-default-format column)))
-	;; Constants.
-	(setq org-table-formula-constants-local (cdr (assq 'constants alist)))
-	;; Link abbreviations.
-	(let ((links (cdr (assq 'link alist))))
-	  (when links (setq org-link-abbrev-alist-local (nreverse links))))
-	;; Priorities.
-	(let ((priorities (cdr (assq 'priorities alist))))
-	  (when priorities
-	    (setq-local org-highest-priority (nth 0 priorities))
-	    (setq-local org-lowest-priority (nth 1 priorities))
-	    (setq-local org-default-priority (nth 2 priorities))))
-	;; Scripts.
-	(let ((scripts (assq 'scripts alist)))
-	  (when scripts
-	    (setq-local org-use-sub-superscripts (cdr scripts))))
-	;; TODO keywords.
-	(setq-local org-todo-kwd-alist nil)
-	(setq-local org-todo-key-alist nil)
-	(setq-local org-todo-key-trigger nil)
-	(setq-local org-todo-keywords-1 nil)
-	(setq-local org-done-keywords nil)
-	(setq-local org-todo-heads nil)
-	(setq-local org-todo-sets nil)
-	(setq-local org-todo-log-states nil)
-	(let ((todo-sequences
-	       (or (nreverse (cdr (assq 'todo alist)))
-		   (let ((d (default-value 'org-todo-keywords)))
-		     (if (not (stringp (car d))) d
-		       ;; XXX: Backward compatibility code.
-		       (list (cons org-todo-interpretation d)))))))
-	  (dolist (sequence todo-sequences)
-	    (let* ((sequence (or (run-hook-with-args-until-success
-				  'org-todo-setup-filter-hook sequence)
-				 sequence))
-		   (sequence-type (car sequence))
-		   (keywords (cdr sequence))
-		   (sep (member "|" keywords))
-		   names alist)
-	      (dolist (k (remove "|" keywords))
-		(unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
-				      k)
-		  (error "Invalid TODO keyword %s" k))
-		(let ((name (match-string 1 k))
-		      (key (match-string 2 k))
-		      (log (org-extract-log-state-settings k)))
-		  (push name names)
-		  (push (cons name (and key (string-to-char key))) alist)
-		  (when log (push log org-todo-log-states))))
-	      (let* ((names (nreverse names))
-		     (done (if sep (org-remove-keyword-keys (cdr sep))
-			     (last names)))
-		     (head (car names))
-		     (tail (list sequence-type head (car done) (org-last done))))
-		(add-to-list 'org-todo-heads head 'append)
-		(push names org-todo-sets)
-		(setq org-done-keywords (append org-done-keywords done nil))
-		(setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
-		(setq org-todo-key-alist
-		      (append org-todo-key-alist
-			      (and alist
-				   (append '((:startgroup))
-					   (nreverse alist)
-					   '((:endgroup))))))
-		(dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
-	(setq org-todo-sets (nreverse org-todo-sets)
-	      org-todo-kwd-alist (nreverse org-todo-kwd-alist)
-	      org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
-	      org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
-	;; Compute the regular expressions and other local variables.
-	;; Using `org-outline-regexp-bol' would complicate them much,
-	;; because of the fixed white space at the end of that string.
-	(unless org-done-keywords
-	  (setq org-done-keywords
-		(and org-todo-keywords-1 (last org-todo-keywords-1))))
-	(setq org-not-done-keywords
-	      (org-delete-all org-done-keywords
-			      (copy-sequence org-todo-keywords-1))
-	      org-todo-regexp (regexp-opt org-todo-keywords-1 t)
-	      org-not-done-regexp (regexp-opt org-not-done-keywords t)
-	      org-not-done-heading-regexp
-	      (format org-heading-keyword-regexp-format org-not-done-regexp)
-	      org-todo-line-regexp
-	      (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
-	      org-complex-heading-regexp
-	      (concat "^\\(\\*+\\)"
-		      "\\(?: +" org-todo-regexp "\\)?"
-		      "\\(?: +\\(\\[#.\\]\\)\\)?"
-		      "\\(?: +\\(.*?\\)\\)??"
-		      "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?"
-		      "[ \t]*$")
-	      org-complex-heading-regexp-format
-	      (concat "^\\(\\*+\\)"
-		      "\\(?: +" org-todo-regexp "\\)?"
-		      "\\(?: +\\(\\[#.\\]\\)\\)?"
-		      "\\(?: +"
-		      ;; Stats cookies can be stuck to body.
-		      "\\(?:\\[[0-9%%/]+\\] *\\)*"
-		      "\\(%s\\)"
-		      "\\(?: *\\[[0-9%%/]+\\]\\)*"
-		      "\\)"
-		      "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?"
-		      "[ \t]*$")
-	      org-todo-line-tags-regexp
-	      (concat "^\\(\\*+\\)"
-		      "\\(?: +" org-todo-regexp "\\)?"
-		      "\\(?: +\\(.*?\\)\\)??"
-		      "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?"
-		      "[ \t]*$"))
-	(org-compute-latex-and-related-regexp)))))
-
-(defun org--setup-collect-keywords (regexp &optional files alist)
-  "Return setup keywords values as an alist.
-
-REGEXP matches a subset of setup keywords.  FILES is a list of
-file names already visited.  It is used to avoid circular setup
-files.  ALIST, when non-nil, is the alist computed so far.
-
-Return value contains the following keys: `archive', `category',
-`columns', `constants', `filetags', `link', `priorities',
-`property', `scripts', `startup', `tags' and `todo'."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let ((case-fold-search t))
-     (while (re-search-forward regexp nil t)
-       (let ((element (org-element-at-point)))
-	 (when (eq (org-element-type element) 'keyword)
-	   (let ((key (org-element-property :key element))
-		 (value (org-element-property :value element)))
-	     (cond
-	      ((equal key "ARCHIVE")
-	       (when (org-string-nw-p value)
-		 (push (cons 'archive value) alist)))
-	      ((equal key "CATEGORY") (push (cons 'category value) alist))
-	      ((equal key "COLUMNS") (push (cons 'columns value) alist))
-	      ((equal key "CONSTANTS")
-	       (let* ((constants (assq 'constants alist))
-		      (store (cdr constants)))
-		 (dolist (pair (split-string value))
-		   (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
-				       pair)
-		     (let* ((name (match-string 1 pair))
-			    (value (match-string 2 pair))
-			    (old (assoc name store)))
-		       (if old (setcdr old value)
-			 (push (cons name value) store)))))
-		 (if constants (setcdr constants store)
-		   (push (cons 'constants store) alist))))
-	      ((equal key "FILETAGS")
-	       (when (org-string-nw-p value)
-		 (let ((old (assq 'filetags alist))
-		       (new (apply #'nconc
-				   (mapcar (lambda (x) (org-split-string x ":"))
-					   (split-string value)))))
-		   (if old (setcdr old (append new (cdr old)))
-		     (push (cons 'filetags new) alist)))))
-	      ((equal key "LINK")
-	       (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
-		 (let ((links (assq 'link alist))
-		       (pair (cons (match-string-no-properties 1 value)
-				   (match-string-no-properties 2 value))))
-		   (if links (push pair (cdr links))
-		     (push (list 'link pair) alist)))))
-	      ((equal key "OPTIONS")
-	       (when (and (org-string-nw-p value)
-			  (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
-		 (push (cons 'scripts (read (match-string 1 value))) alist)))
-	      ((equal key "PRIORITIES")
-	       (push (cons 'priorities
-			   (let ((prio (split-string value)))
-			     (if (< (length prio) 3) '(?A ?C ?B)
-			       (mapcar #'string-to-char prio))))
-		     alist))
-	      ((equal key "PROPERTY")
-	       (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
-		 (let* ((property (assq 'property alist))
-			(value (org--update-property-plist
-				(match-string-no-properties 1 value)
-				(match-string-no-properties 2 value)
-				(cdr property))))
-		   (if property (setcdr property value)
-		     (push (cons 'property value) alist)))))
-	      ((equal key "STARTUP")
-	       (let ((startup (assq 'startup alist)))
-		 (if startup
-		     (setcdr startup
-			     (append (cdr startup) (split-string value)))
-		   (push (cons 'startup (split-string value)) alist))))
-	      ((equal key "TAGS")
-	       (let ((tag-cell (assq 'tags alist)))
-		 (if tag-cell
-		     (setcdr tag-cell (concat (cdr tag-cell) "\n" value))
-		   (push (cons 'tags value) alist))))
-	      ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
-	       (let ((todo (assq 'todo alist))
-		     (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
-				  (split-string value))))
-		 (if todo (push value (cdr todo))
-		   (push (list 'todo value) alist))))
-	      ((equal key "SETUPFILE")
-	       (unless buffer-read-only ; Do not check in Gnus messages.
-		 (let ((f (and (org-string-nw-p value)
-			       (expand-file-name
-				(org-unbracket-string "\"" "\"" value)))))
-		   (when (and f (file-readable-p f) (not (member f files)))
-		     (with-temp-buffer
-		       (setq default-directory (file-name-directory f))
-		       (insert-file-contents f)
-		       (setq alist
-			     ;; Fake Org mode to benefit from cache
-			     ;; without recurring needlessly.
-			     (let ((major-mode 'org-mode))
-			       (org--setup-collect-keywords
-				regexp (cons f files) alist)))))))))))))))
-  alist)
-
-(defun org-tag-string-to-alist (s)
-  "Return tag alist associated to string S.
-S is a value for TAGS keyword or produced with
-`org-tag-alist-to-string'.  Return value is an alist suitable for
-`org-tag-alist' or `org-tag-persistent-alist'."
-  (let ((lines (mapcar #'split-string (split-string s "\n" t)))
-	(tag-re (concat "\\`\\([[:alnum:]_@#%]+"
-			"\\|{.+?}\\)"	; regular expression
-			"\\(?:(\\(.\\))\\)?\\'"))
-	alist group-flag)
-    (dolist (tokens lines (cdr (nreverse alist)))
-      (push '(:newline) alist)
-      (while tokens
-	(let ((token (pop tokens)))
-	  (pcase token
-	    ("{"
-	     (push '(:startgroup) alist)
-	     (when (equal (nth 1 tokens) ":") (setq group-flag t)))
-	    ("}"
-	     (push '(:endgroup) alist)
-	     (setq group-flag nil))
-	    ("["
-	     (push '(:startgrouptag) alist)
-	     (when (equal (nth 1 tokens) ":") (setq group-flag t)))
-	    ("]"
-	     (push '(:endgrouptag) alist)
-	     (setq group-flag nil))
-	    (":"
-	     (push '(:grouptags) alist))
-	    ((guard (string-match tag-re token))
-	     (let ((tag (match-string 1 token))
-		   (key (and (match-beginning 2)
-			     (string-to-char (match-string 2 token)))))
-	       ;; Push all tags in groups, no matter if they already
-	       ;; appear somewhere else in the list.
-	       (when (or group-flag (not (assoc tag alist)))
-		 (push (cons tag key) alist))))))))))
-
-(defun org-tag-alist-to-string (alist &optional skip-key)
-  "Return tag string associated to ALIST.
-
-ALIST is an alist, as defined in `org-tag-alist' or
-`org-tag-persistent-alist', or produced with
-`org-tag-string-to-alist'.
-
-Return value is a string suitable as a value for \"TAGS\"
-keyword.
-
-When optional argument SKIP-KEY is non-nil, skip selection keys
-next to tags."
-  (mapconcat (lambda (token)
-	       (pcase token
-		 (`(:startgroup) "{")
-		 (`(:endgroup) "}")
-		 (`(:startgrouptag) "[")
-		 (`(:endgrouptag) "]")
-		 (`(:grouptags) ":")
-		 (`(:newline) "\\n")
-		 ((and
-		   (guard (not skip-key))
-		   `(,(and tag (pred stringp)) . ,(and key (pred characterp))))
-		  (format "%s(%c)" tag key))
-		 (`(,(and tag (pred stringp)) . ,_) tag)
-		 (_ (user-error "Invalid tag token: %S" token))))
-	     alist
-	     " "))
-
-(defun org-tag-alist-to-groups (alist)
-  "Return group alist from tag ALIST.
-ALIST is an alist, as defined in `org-tag-alist' or
-`org-tag-persistent-alist', or produced with
-`org-tag-string-to-alist'.  Return value is an alist following
-the pattern (GROUP-TAG TAGS) where GROUP-TAG is the tag, as
-a string, summarizing TAGS, as a list of strings."
-  (let (groups group-status current-group)
-    (dolist (token alist (nreverse groups))
-      (pcase token
-	(`(,(or :startgroup :startgrouptag)) (setq group-status t))
-	(`(,(or :endgroup :endgrouptag))
-	 (when (eq group-status 'append)
-	   (push (nreverse current-group) groups))
-	 (setq group-status nil current-group nil))
-	(`(:grouptags) (setq group-status 'append))
-	((and `(,tag . ,_) (guard group-status))
-	 (if (eq group-status 'append) (push tag current-group)
-	   (setq current-group (list tag))))
-	(_ nil)))))
-
-(defvar org--file-cache (make-hash-table :test #'equal)
-  "Hash table to store contents of files referenced via a URL.
-This is the cache of file URLs read using `org-file-contents'.")
-
-(defun org-reset-file-cache ()
-  "Reset the cache of files downloaded by `org-file-contents'."
-  (clrhash org--file-cache))
-
-(defun org-file-url-p (file)
-  "Non-nil if FILE is a URL."
-  (require 'ffap)
-  (string-match-p ffap-url-regexp file))
-
-(defun org-file-contents (file &optional noerror nocache)
-  "Return the contents of FILE, as a string.
-
-FILE can be a file name or URL.
-
-If FILE is a URL, download the contents.  If the URL contents are
-already cached in the `org--file-cache' hash table, the download step
-is skipped.
-
-If NOERROR is non-nil, ignore the error when unable to read the FILE
-from file or URL.
-
-If NOCACHE is non-nil, do a fresh fetch of FILE even if cached version
-is available.  This option applies only if FILE is a URL."
-  (let* ((is-url (org-file-url-p file))
-         (cache (and is-url
-                     (not nocache)
-                     (gethash file org--file-cache))))
-    (cond
-     (cache)
-     (is-url
-      (with-current-buffer (url-retrieve-synchronously file)
-	(goto-char (point-min))
-	;; Move point to after the url-retrieve header.
-	(search-forward "\n\n" nil :move)
-	;; Search for the success code only in the url-retrieve header.
-	(if (save-excursion
-	      (re-search-backward "HTTP.*\\s-+200\\s-OK" nil :noerror))
-	    ;; Update the cache `org--file-cache' and return contents.
-	    (puthash file
-		     (buffer-substring-no-properties (point) (point-max))
-		     org--file-cache)
-	  (funcall (if noerror #'message #'user-error)
-		   "Unable to fetch file from %S"
-		   file))))
-     (t
-      (with-temp-buffer
-        (condition-case nil
-	    (progn
-	      (insert-file-contents file)
-	      (buffer-string))
-	  (file-error
-           (funcall (if noerror #'message #'user-error)
-		    "Unable to read file %S"
-		    file))))))))
-
-(defun org-extract-log-state-settings (x)
-  "Extract the log state setting from a TODO keyword string.
-This will extract info from a string like \"WAIT(w@/!)\"."
-  (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
-    (let ((kw (match-string 1 x))
-	  (log1 (and (match-end 3) (match-string 3 x)))
-	  (log2 (and (match-end 4) (match-string 4 x))))
-      (and (or log1 log2)
-	   (list kw
-		 (and log1 (if (equal log1 "!") 'time 'note))
-		 (and log2 (if (equal log2 "!") 'time 'note)))))))
-
-(defun org-remove-keyword-keys (list)
-  "Remove a pair of parenthesis at the end of each string in LIST."
-  (mapcar (lambda (x)
-	    (if (string-match "(.*)$" x)
-		(substring x 0 (match-beginning 0))
-	      x))
-	  list))
-
-(defun org-assign-fast-keys (alist)
-  "Assign fast keys to a keyword-key alist.
-Respect keys that are already there."
-  (let (new e (alt ?0))
-    (while (setq e (pop alist))
-      (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
-	      (cdr e)) ;; Key already assigned.
-	  (push e new)
-	(let ((clist (string-to-list (downcase (car e))))
-	      (used (append new alist)))
-	  (when (= (car clist) ?@)
-	    (pop clist))
-	  (while (and clist (rassoc (car clist) used))
-	    (pop clist))
-	  (unless clist
-	    (while (rassoc alt used)
-	      (cl-incf alt)))
-	  (push (cons (car e) (or (car clist) alt)) new))))
-    (nreverse new)))
-
-;;; Some variables used in various places
-
-(defvar org-window-configuration nil
-  "Used in various places to store a window configuration.")
-(defvar org-selected-window nil
-  "Used in various places to store a window configuration.")
-(defvar org-finish-function nil
-  "Function to be called when `C-c C-c' is used.
-This is for getting out of special buffers like capture.")
-(defvar org-last-state)
-
-;; Defined somewhere in this file, but used before definition.
-(defvar org-entities)     ;; defined in org-entities.el
-(defvar org-struct-menu)
-(defvar org-org-menu)
-(defvar org-tbl-menu)
-
-;;;; Define the Org mode
-
-;; We use a before-change function to check if a table might need
-;; an update.
-(defvar org-table-may-need-update t
-  "Indicates that a table might need an update.
-This variable is set by `org-before-change-function'.
-`org-table-align' sets it back to nil.")
-(defun org-before-change-function (_beg _end)
-  "Every change indicates that a table might need an update."
-  (setq org-table-may-need-update t))
-(defvar org-mode-map)
-(defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
-(defvar org-agenda-keep-modes nil)      ; Dynamically-scoped param.
-(defvar org-inhibit-logging nil)        ; Dynamically-scoped param.
-(defvar org-inhibit-blocking nil)       ; Dynamically-scoped param.
-(defvar org-table-buffer-is-an nil)
-
-(defvar bidi-paragraph-direction)
-(defvar buffer-face-mode-face)
-
-(require 'outline)
-
-;; Other stuff we need.
-(require 'time-date)
-(unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
-(require 'easymenu)
-(autoload 'easy-menu-add "easymenu")
-(require 'overlay)
-
-;; (require 'org-macs) moved higher up in the file before it is first used
-(require 'org-entities)
-;; (require 'org-compat) moved higher up in the file before it is first used
-(require 'org-faces)
-(require 'org-list)
-(require 'org-pcomplete)
-(require 'org-src)
-(require 'org-footnote)
-(require 'org-macro)
-
-;; babel
-(require 'ob)
-
-;;;###autoload
-(define-derived-mode org-mode outline-mode "Org"
-  "Outline-based notes management and organizer, alias
-\"Carsten's outline-mode for keeping track of everything.\"
-
-Org mode develops organizational tasks around a NOTES file which
-contains information about projects as plain text.  Org mode is
-implemented on top of Outline mode, which is ideal to keep the content
-of large files well structured.  It supports ToDo items, deadlines and
-time stamps, which magically appear in the diary listing of the Emacs
-calendar.  Tables are easily created with a built-in table editor.
-Plain text URL-like links connect to websites, emails (VM), Usenet
-messages (Gnus), BBDB entries, and any files related to the project.
-For printing and sharing of notes, an Org file (or a part of it)
-can be exported as a structured ASCII or HTML file.
-
-The following commands are available:
-
-\\{org-mode-map}"
-
-  ;; Get rid of Outline menus, they are not needed
-  ;; Need to do this here because define-derived-mode sets up
-  ;; the keymap so late.  Still, it is a waste to call this each time
-  ;; we switch another buffer into Org mode.
-  (define-key org-mode-map [menu-bar headings] 'undefined)
-  (define-key org-mode-map [menu-bar hide] 'undefined)
-  (define-key org-mode-map [menu-bar show] 'undefined)
-
-  (org-load-modules-maybe)
-  (org-install-agenda-files-menu)
-  (when org-descriptive-links (add-to-invisibility-spec '(org-link)))
-  (add-to-invisibility-spec '(org-cwidth))
-  (add-to-invisibility-spec '(org-hide-block . t))
-  (setq-local outline-regexp org-outline-regexp)
-  (setq-local outline-level 'org-outline-level)
-  (setq bidi-paragraph-direction 'left-to-right)
-  (when (and (stringp org-ellipsis) (not (equal "" org-ellipsis)))
-    (unless org-display-table
-      (setq org-display-table (make-display-table)))
-    (set-display-table-slot
-     org-display-table 4
-     (vconcat (mapcar (lambda (c) (make-glyph-code c 'org-ellipsis))
-		      org-ellipsis)))
-    (setq buffer-display-table org-display-table))
-  (org-set-regexps-and-options)
-  (org-set-font-lock-defaults)
-  (when (and org-tag-faces (not org-tags-special-faces-re))
-    ;; tag faces set outside customize.... force initialization.
-    (org-set-tag-faces 'org-tag-faces org-tag-faces))
-  ;; Calc embedded
-  (setq-local calc-embedded-open-mode "# ")
-  ;; Modify a few syntax entries
-  (modify-syntax-entry ?@ "w")
-  (modify-syntax-entry ?\" "\"")
-  (modify-syntax-entry ?\\ "_")
-  (modify-syntax-entry ?~ "_")
-  (setq-local font-lock-unfontify-region-function 'org-unfontify-region)
-  ;; Activate before-change-function
-  (setq-local org-table-may-need-update t)
-  (add-hook 'before-change-functions 'org-before-change-function nil 'local)
-  ;; Check for running clock before killing a buffer
-  (add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
-  ;; Initialize macros templates.
-  (org-macro-initialize-templates)
-  ;; Initialize radio targets.
-  (org-update-radio-target-regexp)
-  ;; Indentation.
-  (setq-local indent-line-function 'org-indent-line)
-  (setq-local indent-region-function 'org-indent-region)
-  ;; Filling and auto-filling.
-  (org-setup-filling)
-  ;; Comments.
-  (org-setup-comments-handling)
-  ;; Initialize cache.
-  (org-element-cache-reset)
-  ;; Beginning/end of defun
-  (setq-local beginning-of-defun-function 'org-backward-element)
-  (setq-local end-of-defun-function
-	      (lambda ()
-		(if (not (org-at-heading-p))
-		    (org-forward-element)
-		  (org-forward-element)
-		  (forward-char -1))))
-  ;; Next error for sparse trees
-  (setq-local next-error-function 'org-occur-next-match)
-  ;; Make sure dependence stuff works reliably, even for users who set it
-  ;; too late :-(
-  (if org-enforce-todo-dependencies
-      (add-hook 'org-blocker-hook
-		'org-block-todo-from-children-or-siblings-or-parent)
-    (remove-hook 'org-blocker-hook
-		 'org-block-todo-from-children-or-siblings-or-parent))
-  (if org-enforce-todo-checkbox-dependencies
-      (add-hook 'org-blocker-hook
-		'org-block-todo-from-checkboxes)
-    (remove-hook 'org-blocker-hook
-		 'org-block-todo-from-checkboxes))
-
-  ;; Align options lines
-  (setq-local
-   align-mode-rules-list
-   '((org-in-buffer-settings
-      (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
-      (modes . '(org-mode)))))
-
-  ;; Imenu
-  (setq-local imenu-create-index-function 'org-imenu-get-tree)
-
-  ;; Make isearch reveal context
-  (setq-local outline-isearch-open-invisible-function
-	      (lambda (&rest _) (org-show-context 'isearch)))
-
-  ;; Setup the pcomplete hooks
-  (setq-local pcomplete-command-completion-function 'org-pcomplete-initial)
-  (setq-local pcomplete-command-name-function 'org-command-at-point)
-  (setq-local pcomplete-default-completion-function 'ignore)
-  (setq-local pcomplete-parse-arguments-function 'org-parse-arguments)
-  (setq-local pcomplete-termination-string "")
-  (setq-local buffer-face-mode-face 'org-default)
-
-  ;; If empty file that did not turn on Org mode automatically, make
-  ;; it to.
-  (when (and org-insert-mode-line-in-empty-file
-	     (called-interactively-p 'any)
-	     (= (point-min) (point-max)))
-    (insert "#    -*- mode: org -*-\n\n"))
-  (unless org-inhibit-startup
-    (org-unmodified
-     (when org-startup-with-beamer-mode (org-beamer-mode))
-     (when org-startup-align-all-tables
-       (org-table-map-tables #'org-table-align t))
-     (when org-startup-with-inline-images (org-display-inline-images))
-     (when org-startup-with-latex-preview (org-toggle-latex-fragment '(16)))
-     (unless org-inhibit-startup-visibility-stuff (org-set-startup-visibility))
-     (when org-startup-truncated (setq truncate-lines t))
-     (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
-     (org-refresh-effort-properties)))
-  ;; Try to set `org-hide' face correctly.
-  (let ((foreground (org-find-invisible-foreground)))
-    (when foreground
-      (set-face-foreground 'org-hide foreground))))
-
-;; Update `customize-package-emacs-version-alist'
-(add-to-list 'customize-package-emacs-version-alist
-	     '(Org ("8.0" . "24.4")
-		   ("8.1" . "24.4")
-		   ("8.2" . "24.4")
-		   ("8.2.7" . "24.4")
-		   ("8.3" . "26.1")
-		   ("9.0" . "26.1")
-		   ("9.1" . "26.1")))
-
-(defvar org-mode-transpose-word-syntax-table
-  (let ((st (make-syntax-table text-mode-syntax-table)))
-    (dolist (c org-emphasis-alist st)
-      (modify-syntax-entry (string-to-char (car c)) "w p" st))))
-
-(when (fboundp 'abbrev-table-put)
-  (abbrev-table-put org-mode-abbrev-table
-		    :parents (list text-mode-abbrev-table)))
-
-(defun org-find-invisible-foreground ()
-  (let ((candidates (remove
-		     "unspecified-bg"
-		     (nconc
-		      (list (face-background 'default)
-			    (face-background 'org-default))
-		      (mapcar
-		       (lambda (alist)
-			 (when (boundp alist)
-			   (cdr (assq 'background-color (symbol-value alist)))))
-		       '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
-		      (list (face-foreground 'org-hide))))))
-    (car (remove nil candidates))))
-
-(defun org-current-time (&optional rounding-minutes past)
-  "Current time, possibly rounded to ROUNDING-MINUTES.
-When ROUNDING-MINUTES is not an integer, fall back on the car of
-`org-time-stamp-rounding-minutes'.  When PAST is non-nil, ensure
-the rounding returns a past time."
-  (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
-	       (car org-time-stamp-rounding-minutes)))
-	(time (decode-time)) res)
-    (if (< r 1)
-	(current-time)
-      (setq res
-	    (apply 'encode-time
-		   (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
-			   (nthcdr 2 time))))
-      (if (and past (< (float-time (time-subtract (current-time) res)) 0))
-	  (seconds-to-time (- (float-time res) (* r 60)))
-	res))))
-
-(defun org-today ()
-  "Return today date, considering `org-extend-today-until'."
-  (time-to-days
-   (time-subtract (current-time)
-		  (list 0 (* 3600 org-extend-today-until) 0))))
-
-;;;; Font-Lock stuff, including the activators
-
-(defvar org-mouse-map (make-sparse-keymap))
-(org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
-(org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
-(when org-mouse-1-follows-link
-  (org-defkey org-mouse-map [follow-link] 'mouse-face))
-(when org-tab-follows-link
-  (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
-  (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
-
-(require 'font-lock)
-
-(defconst org-non-link-chars "]\t\n\r<>")
-(defvar org-link-types-re nil
-  "Matches a link that has a url-like prefix like \"http:\"")
-(defvar org-link-re-with-space nil
-  "Matches a link with spaces, optional angular brackets around it.")
-(defvar org-link-re-with-space2 nil
-  "Matches a link with spaces, optional angular brackets around it.")
-(defvar org-link-re-with-space3 nil
-  "Matches a link with spaces, only for internal part in bracket links.")
-(defvar org-angle-link-re nil
-  "Matches link with angular brackets, spaces are allowed.")
-(defvar org-plain-link-re nil
-  "Matches plain link, without spaces.")
-(defvar org-bracket-link-regexp nil
-  "Matches a link in double brackets.")
-(defvar org-bracket-link-analytic-regexp nil
-  "Regular expression used to analyze links.
-Here is what the match groups contain after a match:
-1: http:
-2: http
-3: path
-4: [desc]
-5: desc")
-(defvar org-bracket-link-analytic-regexp++ nil
-  "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
-(defvar org-any-link-re nil
-  "Regular expression matching any link.")
-
-(defconst org-match-sexp-depth 3
-  "Number of stacked braces for sub/superscript matching.")
-
-(defun org-create-multibrace-regexp (left right n)
-  "Create a regular expression which will match a balanced sexp.
-Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
-as single character strings.
-The regexp returned will match the entire expression including the
-delimiters.  It will also define a single group which contains the
-match except for the outermost delimiters.  The maximum depth of
-stacked delimiters is N.  Escaping delimiters is not possible."
-  (let* ((nothing (concat "[^" left right "]*?"))
-	 (or "\\|")
-	 (re nothing)
-	 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
-    (while (> n 1)
-      (setq n (1- n)
-	    re (concat re or next)
-	    next (concat "\\(?:" nothing left next right "\\)+" nothing)))
-    (concat left "\\(" re "\\)" right)))
-
-(defconst org-match-substring-regexp
-  (concat
-   "\\(\\S-\\)\\([_^]\\)\\("
-   "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
-   "\\|"
-   "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
-   "\\|"
-   "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
-  "The regular expression matching a sub- or superscript.")
-
-(defconst org-match-substring-with-braces-regexp
-  (concat
-   "\\(\\S-\\)\\([_^]\\)"
-   "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
-  "The regular expression matching a sub- or superscript, forcing braces.")
-
-(defun org-make-link-regexps ()
-  "Update the link regular expressions.
-This should be called after the variable `org-link-parameters' has changed."
-  (let ((types-re (regexp-opt (org-link-types) t)))
-    (setq org-link-types-re
-	  (concat "\\`" types-re ":")
-	  org-link-re-with-space
-	  (concat "<?" types-re ":"
-		  "\\([^" org-non-link-chars " ]"
-		  "[^" org-non-link-chars "]*"
-		  "[^" org-non-link-chars " ]\\)>?")
-	  org-link-re-with-space2
-	  (concat "<?" types-re ":"
-		  "\\([^" org-non-link-chars " ]"
-		  "[^\t\n\r]*"
-		  "[^" org-non-link-chars " ]\\)>?")
-	  org-link-re-with-space3
-	  (concat "<?" types-re ":"
-		  "\\([^" org-non-link-chars " ]"
-		  "[^\t\n\r]*\\)")
-	  org-angle-link-re
-	  (format "<%s:\\([^>\n]*\\(?:\n[ \t]*[^> \t\n][^>\n]*\\)*\\)>"
-		  types-re)
-	  org-plain-link-re
-	  (concat
-	   "\\<" types-re ":"
-	   "\\([^][ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)")
-	  ;;	 "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
-	  org-bracket-link-regexp
-	  "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
-	  org-bracket-link-analytic-regexp
-	  (concat
-	   "\\[\\["
-	   "\\(" types-re ":\\)?"
-	   "\\([^]]+\\)"
-	   "\\]"
-	   "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
-	   "\\]")
-	  org-bracket-link-analytic-regexp++
-	  (concat
-	   "\\[\\["
-	   "\\(" (regexp-opt (cons "coderef" (org-link-types)) t) ":\\)?"
-	   "\\([^]]+\\)"
-	   "\\]"
-	   "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
-	   "\\]")
-	  org-any-link-re
-	  (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
-		  org-angle-link-re "\\)\\|\\("
-		  org-plain-link-re "\\)"))))
-
-(org-make-link-regexps)
-
-(defvar org-emph-face nil)
-
-(defun org-do-emphasis-faces (limit)
-  "Run through the buffer and emphasize strings."
-  (let ((quick-re (format "\\([%s]\\|^\\)\\([~=*/_+]\\)"
-			  (car org-emphasis-regexp-components))))
-    (catch :exit
-      (while (re-search-forward quick-re limit t)
-	(let* ((marker (match-string 2))
-	       (verbatim? (member marker '("~" "="))))
-	  (when (save-excursion
-		  (goto-char (match-beginning 0))
-		  (and
-		   ;; Do not match table hlines.
-		   (not (and (equal marker "+")
-			     (org-match-line
-			      "[ \t]*\\(|[-+]+|?\\|\\+[-+]+\\+\\)[ \t]*$")))
-		   ;; Do not match headline stars.  Do not consider
-		   ;; stars of a headline as closing marker for bold
-		   ;; markup either.
-		   (not (and (equal marker "*")
-			     (save-excursion
-			       (forward-char)
-			       (skip-chars-backward "*")
-			       (looking-at-p org-outline-regexp-bol))))
-		   ;; Match full emphasis markup regexp.
-		   (looking-at (if verbatim? org-verbatim-re org-emph-re))
-		   ;; Do not span over paragraph boundaries.
-		   (not (string-match-p org-element-paragraph-separate
-					(match-string 2)))
-		   ;; Do not span over cells in table rows.
-		   (not (and (save-match-data (org-match-line "[ \t]*|"))
-			     (string-match-p "|" (match-string 4))))))
-	    (pcase-let ((`(,_ ,face ,_) (assoc marker org-emphasis-alist)))
-	      (font-lock-prepend-text-property
-	       (match-beginning 2) (match-end 2) 'face face)
-	      (when verbatim?
-		(org-remove-flyspell-overlays-in
-		 (match-beginning 0) (match-end 0)))
-	      (add-text-properties (match-beginning 2) (match-end 2)
-				   '(font-lock-multiline t org-emphasis t))
-	      (when org-hide-emphasis-markers
-		(add-text-properties (match-end 4) (match-beginning 5)
-				     '(invisible org-link))
-		(add-text-properties (match-beginning 3) (match-end 3)
-				     '(invisible org-link)))
-	      (throw :exit t))))))))
-
-(defun org-emphasize (&optional char)
-  "Insert or change an emphasis, i.e. a font like bold or italic.
-If there is an active region, change that region to a new emphasis.
-If there is no region, just insert the marker characters and position
-the cursor between them.
-CHAR should be the marker character.  If it is a space, it means to
-remove the emphasis of the selected region.
-If CHAR is not given (for example in an interactive call) it will be
-prompted for."
-  (interactive)
-  (let ((erc org-emphasis-regexp-components)
-	(string "") beg end move s)
-    (if (org-region-active-p)
-	(setq beg (region-beginning)
-	      end (region-end)
-	      string (buffer-substring beg end))
-      (setq move t))
-
-    (unless char
-      (message "Emphasis marker or tag: [%s]"
-	       (mapconcat #'car org-emphasis-alist ""))
-      (setq char (read-char-exclusive)))
-    (if (equal char ?\s)
-	(setq s ""
-	      move nil)
-      (unless (assoc (char-to-string char) org-emphasis-alist)
-	(user-error "No such emphasis marker: \"%c\"" char))
-      (setq s (char-to-string char)))
-    (while (and (> (length string) 1)
-		(equal (substring string 0 1) (substring string -1))
-		(assoc (substring string 0 1) org-emphasis-alist))
-      (setq string (substring string 1 -1)))
-    (setq string (concat s string s))
-    (when beg (delete-region beg end))
-    (unless (or (bolp)
-		(string-match (concat "[" (nth 0 erc) "\n]")
-			      (char-to-string (char-before (point)))))
-      (insert " "))
-    (unless (or (eobp)
-		(string-match (concat "[" (nth 1 erc) "\n]")
-			      (char-to-string (char-after (point)))))
-      (insert " ") (backward-char 1))
-    (insert string)
-    (and move (backward-char 1))))
-
-(defconst org-nonsticky-props
-  '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
-
-(defsubst org-rear-nonsticky-at (pos)
-  (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
-
-(defun org-activate-links (limit)
-  "Add link properties to links.
-This includes angle, plain, and bracket links."
-  (catch :exit
-    (while (re-search-forward org-any-link-re limit t)
-      (let* ((start (match-beginning 0))
-	     (end (match-end 0))
-	     (style (cond ((eq ?< (char-after start)) 'angle)
-			  ((eq ?\[ (char-after (1+ start))) 'bracket)
-			  (t 'plain))))
-	(when (and (memq style org-highlight-links)
-		   ;; Do not confuse plain links with tags.
-		   (not (and (eq style 'plain)
-			     (let ((face (get-text-property
-					  (max (1- start) (point-min)) 'face)))
-			       (if (consp face) (memq 'org-tag face)
-				 (eq 'org-tag face))))))
-	  (let* ((link-object (save-excursion
-				(goto-char start)
-				(save-match-data (org-element-link-parser))))
-		 (link (org-element-property :raw-link link-object))
-		 (type (org-element-property :type link-object))
-		 (path (org-element-property :path link-object))
-		 (properties		;for link's visible part
-		  (list
-		   'face (pcase (org-link-get-parameter type :face)
-			   ((and (pred functionp) face) (funcall face path))
-			   ((and (pred facep) face) face)
-			   ((and (pred consp) face) face) ;anonymous
-			   (_ 'org-link))
-		   'mouse-face (or (org-link-get-parameter type :mouse-face)
-				   'highlight)
-		   'keymap (or (org-link-get-parameter type :keymap)
-			       org-mouse-map)
-		   'help-echo (pcase (org-link-get-parameter type :help-echo)
-				((and (pred stringp) echo) echo)
-				((and (pred functionp) echo) echo)
-				(_ (concat "LINK: " link)))
-		   'htmlize-link (pcase (org-link-get-parameter type
-								:htmlize-link)
-				   ((and (pred functionp) f) (funcall f))
-				   (_ `(:uri ,link)))
-		   'font-lock-multiline t)))
-	    (org-remove-flyspell-overlays-in start end)
-	    (org-rear-nonsticky-at end)
-	    (if (not (eq 'bracket style))
-		(add-text-properties start end properties)
-	      ;; Handle invisible parts in bracket links.
-	      (remove-text-properties start end '(invisible nil))
-	      (let ((hidden
-		     (append `(invisible
-			       ,(or (org-link-get-parameter type :display)
-				    'org-link))
-			     properties))
-		    (visible-start (or (match-beginning 4) (match-beginning 2)))
-		    (visible-end (or (match-end 4) (match-end 2))))
-		(add-text-properties start visible-start hidden)
-		(add-text-properties visible-start visible-end properties)
-		(add-text-properties visible-end end hidden)
-		(org-rear-nonsticky-at visible-start)
-		(org-rear-nonsticky-at visible-end)))
-	    (let ((f (org-link-get-parameter type :activate-func)))
-	      (when (functionp f)
-		(funcall f start end path (eq style 'bracket))))
-	    (throw :exit t)))))		;signal success
-    nil))
-
-(defun org-activate-code (limit)
-  (when (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
-    (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
-    (remove-text-properties (match-beginning 0) (match-end 0)
-			    '(display t invisible t intangible t))
-    t))
-
-(defcustom org-src-fontify-natively t
-  "When non-nil, fontify code in code blocks.
-See also the `org-block' face."
-  :type 'boolean
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :group 'org-appearance
-  :group 'org-babel)
-
-(defcustom org-allow-promoting-top-level-subtree nil
-  "When non-nil, allow promoting a top level subtree.
-The leading star of the top level headline will be replaced
-by a #."
-  :type 'boolean
-  :version "24.1"
-  :group 'org-appearance)
-
-(defun org-fontify-meta-lines-and-blocks (limit)
-  (condition-case nil
-      (org-fontify-meta-lines-and-blocks-1 limit)
-    (error (message "Org mode fontification error in %S at %d"
-		    (current-buffer)
-		    (line-number-at-pos)))))
-
-(defun org-fontify-meta-lines-and-blocks-1 (limit)
-  "Fontify #+ lines and blocks."
-  (let ((case-fold-search t))
-    (when (re-search-forward
-	   "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
-	   limit t)
-      (let ((beg (match-beginning 0))
-	    (block-start (match-end 0))
-	    (block-end nil)
-	    (lang (match-string 7))
-	    (beg1 (line-beginning-position 2))
-	    (dc1 (downcase (match-string 2)))
-	    (dc3 (downcase (match-string 3)))
-	    end end1 quoting block-type)
-	(cond
-	 ((and (match-end 4) (equal dc3 "+begin"))
-	  ;; Truly a block
-	  (setq block-type (downcase (match-string 5))
-		quoting (member block-type org-protecting-blocks))
-	  (when (re-search-forward
-		 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
-		 nil t)  ;; on purpose, we look further than LIMIT
-	    (setq end (min (point-max) (match-end 0))
-		  end1 (min (point-max) (1- (match-beginning 0))))
-	    (setq block-end (match-beginning 0))
-	    (when quoting
-	      (org-remove-flyspell-overlays-in beg1 end1)
-	      (remove-text-properties beg end
-				      '(display t invisible t intangible t)))
-	    (add-text-properties
-	     beg end '(font-lock-fontified t font-lock-multiline t))
-	    (add-text-properties beg beg1 '(face org-meta-line))
-	    (org-remove-flyspell-overlays-in beg beg1)
-	    (add-text-properties	; For end_src
-	     end1 (min (point-max) (1+ end)) '(face org-meta-line))
-	    (org-remove-flyspell-overlays-in end1 end)
-	    (cond
-	     ((and lang (not (string= lang "")) org-src-fontify-natively)
-	      (org-src-font-lock-fontify-block lang block-start block-end)
-	      (add-text-properties beg1 block-end '(src-block t)))
-	     (quoting
-	      (add-text-properties beg1 (min (point-max) (1+ end1))
-				   (list 'face
-					 (list :inherit
-					       (let ((face-name
-						      (intern (format "org-block-%s" lang))))
-						 (append (and (facep face-name) (list face-name))
-							 '(org-block))))))) ; end of source block
-	     ((not org-fontify-quote-and-verse-blocks))
-	     ((string= block-type "quote")
-	      (add-face-text-property
-	       beg1 (min (point-max) (1+ end1)) 'org-quote t))
-	     ((string= block-type "verse")
-	      (add-face-text-property
-	       beg1 (min (point-max) (1+ end1)) 'org-verse t)))
-	    (add-text-properties beg beg1 '(face org-block-begin-line))
-	    (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
-				 '(face org-block-end-line))
-	    t))
-	 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
-	  (org-remove-flyspell-overlays-in
-	   (match-beginning 0)
-	   (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
-	  (add-text-properties
-	   beg (match-end 3)
-	   (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
-	       '(font-lock-fontified t invisible t)
-	     '(font-lock-fontified t face org-document-info-keyword)))
-	  (add-text-properties
-	   (match-beginning 6) (min (point-max) (1+ (match-end 6)))
-	   (if (string-equal dc1 "+title:")
-	       '(font-lock-fontified t face org-document-title)
-	     '(font-lock-fontified t face org-document-info))))
-	 ((string-prefix-p "+caption" dc1)
-	  (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
-	  (remove-text-properties (match-beginning 0) (match-end 0)
-				  '(display t invisible t intangible t))
-	  ;; Handle short captions.
-	  (save-excursion
-	    (beginning-of-line)
-	    (looking-at "\\([ \t]*#\\+caption\\(?:\\[.*\\]\\)?:\\)[ \t]*"))
-	  (add-text-properties (line-beginning-position) (match-end 1)
-			       '(font-lock-fontified t face org-meta-line))
-	  (add-text-properties (match-end 0) (line-end-position)
-			       '(font-lock-fontified t face org-block))
-	  t)
-	 ((member dc3 '(" " ""))
-	  (org-remove-flyspell-overlays-in beg (match-end 0))
-	  (add-text-properties
-	   beg (match-end 0)
-	   '(font-lock-fontified t face font-lock-comment-face)))
-	 (t ;; just any other in-buffer setting, but not indented
-	  (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
-	  (remove-text-properties (match-beginning 0) (match-end 0)
-				  '(display t invisible t intangible t))
-	  (add-text-properties beg (match-end 0)
-			       '(font-lock-fontified t face org-meta-line))
-	  t))))))
-
-(defun org-fontify-drawers (limit)
-  "Fontify drawers."
-  (when (re-search-forward org-drawer-regexp limit t)
-    (add-text-properties
-     (match-beginning 0) (match-end 0)
-     '(font-lock-fontified t face org-special-keyword))
-    (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
-    t))
-
-(defun org-fontify-macros (limit)
-  "Fontify macros."
-  (when (re-search-forward "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)" limit t)
-    (let ((begin (match-beginning 0))
-	  (opening-end (match-beginning 1)))
-      (when (and (re-search-forward "\n[ \t]*\n\\|\\(}}}\\)" limit t)
-		 (match-string 1))
-	(let ((end (match-end 1))
-	      (closing-start (match-beginning 1)))
-	  (add-text-properties
-	   begin end
-	   '(font-lock-multiline t font-lock-fontified t face org-macro))
-	  (org-remove-flyspell-overlays-in begin end)
-	  (when org-hide-macro-markers
-	    (add-text-properties begin opening-end '(invisible t))
-	    (add-text-properties closing-start end '(invisible t)))
-	  t)))))
-
-(defun org-activate-footnote-links (limit)
-  "Add text properties for footnotes."
-  (let ((fn (org-footnote-next-reference-or-definition limit)))
-    (when fn
-      (let* ((beg (nth 1 fn))
-	     (end (nth 2 fn))
-	     (label (car fn))
-	     (referencep (/= (line-beginning-position) beg)))
-	(when (and referencep (nth 3 fn))
-	  (save-excursion
-	    (goto-char beg)
-	    (search-forward (or label "fn:"))
-	    (org-remove-flyspell-overlays-in beg (match-end 0))))
-	(add-text-properties beg end
-			     (list 'mouse-face 'highlight
-				   'keymap org-mouse-map
-				   'help-echo
-				   (if referencep "Footnote reference"
-				     "Footnote definition")
-				   'font-lock-fontified t
-				   'font-lock-multiline t
-				   'face 'org-footnote))))))
-
-(defun org-activate-dates (limit)
-  "Add text properties for dates."
-  (when (and (re-search-forward org-tsr-regexp-both limit t)
-	     (not (equal (char-before (match-beginning 0)) 91)))
-    (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
-    (add-text-properties (match-beginning 0) (match-end 0)
-			 (list 'mouse-face 'highlight
-			       'keymap org-mouse-map))
-    (org-rear-nonsticky-at (match-end 0))
-    (when org-display-custom-times
-      ;; If it's a date range, activate custom time for second date.
-      (when (match-end 3)
-	(org-display-custom-time (match-beginning 3) (match-end 3)))
-      (org-display-custom-time (match-beginning 1) (match-end 1)))
-    t))
-
-(defvar-local org-target-link-regexp nil
-  "Regular expression matching radio targets in plain text.")
-
-(defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
-			      (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
-				      border border border))
-  "Regular expression matching a link target.")
-
-(defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
-  "Regular expression matching a radio target.")
-
-(defconst org-any-target-regexp
-  (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
-  "Regular expression matching any target.")
-
-(defun org-activate-target-links (limit)
-  "Add text properties for target matches."
-  (when org-target-link-regexp
-    (let ((case-fold-search t))
-      (when (re-search-forward org-target-link-regexp limit t)
-	(org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
-	(add-text-properties (match-beginning 1) (match-end 1)
-			     (list 'mouse-face 'highlight
-				   'keymap org-mouse-map
-				   'help-echo "Radio target link"
-				   'org-linked-text t))
-	(org-rear-nonsticky-at (match-end 1))
-	t))))
-
-(defun org-update-radio-target-regexp ()
-  "Find all radio targets in this file and update the regular expression.
-Also refresh fontification if needed."
-  (interactive)
-  (let ((old-regexp org-target-link-regexp)
-	(before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
-	(after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
-	(targets
-	 (org-with-wide-buffer
-	  (goto-char (point-min))
-	  (let (rtn)
-	    (while (re-search-forward org-radio-target-regexp nil t)
-	      ;; Make sure point is really within the object.
-	      (backward-char)
-	      (let ((obj (org-element-context)))
-		(when (eq (org-element-type obj) 'radio-target)
-		  (cl-pushnew (org-element-property :value obj) rtn
-			      :test #'equal))))
-	    rtn))))
-    (setq org-target-link-regexp
-	  (and targets
-	       (concat before-re
-		       (mapconcat
-			(lambda (x)
-			  (replace-regexp-in-string
-			   " +" "\\s-+" (regexp-quote x) t t))
-			targets
-			"\\|")
-		       after-re)))
-    (unless (equal old-regexp org-target-link-regexp)
-      ;; Clean-up cache.
-      (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
-			  ((not org-target-link-regexp) old-regexp)
-			  (t
-			   (concat before-re
-				   (mapconcat
-				    (lambda (re)
-				      (substring re (length before-re)
-						 (- (length after-re))))
-				    (list old-regexp org-target-link-regexp)
-				    "\\|")
-				   after-re)))))
-	(org-with-wide-buffer
-	 (goto-char (point-min))
-	 (while (re-search-forward regexp nil t)
-	   (org-element-cache-refresh (match-beginning 1)))))
-      ;; Re fontify buffer.
-      (when (memq 'radio org-highlight-links)
-	(org-restart-font-lock)))))
-
-(defun org-hide-wide-columns (limit)
-  (let (s e)
-    (setq s (text-property-any (point) (or limit (point-max))
-			       'org-cwidth t))
-    (when s
-      (setq e (next-single-property-change s 'org-cwidth))
-      (add-text-properties s e '(invisible org-cwidth))
-      (goto-char e)
-      t)))
-
-(defvar org-latex-and-related-regexp nil
-  "Regular expression for highlighting LaTeX, entities and sub/superscript.")
-
-(defun org-compute-latex-and-related-regexp ()
-  "Compute regular expression for LaTeX, entities and sub/superscript.
-Result depends on variable `org-highlight-latex-and-related'."
-  (setq-local
-   org-latex-and-related-regexp
-   (let* ((re-sub
-	   (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
-		 ((eq org-use-sub-superscripts '{})
-		  (list org-match-substring-with-braces-regexp))
-		 (org-use-sub-superscripts (list org-match-substring-regexp))))
-	  (re-latex
-	   (when (memq 'latex org-highlight-latex-and-related)
-	     (let ((matchers (plist-get org-format-latex-options :matchers)))
-	       (delq nil
-		     (mapcar (lambda (x)
-			       (and (member (car x) matchers) (nth 1 x)))
-			     org-latex-regexps)))))
-	  (re-entities
-	   (when (memq 'entities org-highlight-latex-and-related)
-	     (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
-     (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
-
-(defun org-do-latex-and-related (limit)
-  "Highlight LaTeX snippets and environments, entities and sub/superscript.
-LIMIT bounds the search for syntax to highlight.  Stop at first
-highlighted object, if any.  Return t if some highlighting was
-done, nil otherwise."
-  (when (org-string-nw-p org-latex-and-related-regexp)
-    (catch 'found
-      (while (re-search-forward org-latex-and-related-regexp limit t)
-	(unless
-	    (cl-some
-	     (lambda (f)
-	       (memq f '(org-code org-verbatim underline org-special-keyword)))
-	     (save-excursion
-	       (goto-char (1+ (match-beginning 0)))
-	       (face-at-point nil t)))
-	  (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
-				  '(?_ ?^))
-			    1
-			  0)))
-	    (font-lock-prepend-text-property
-	     (+ offset (match-beginning 0)) (match-end 0)
-	     'face 'org-latex-and-related)
-	    (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
-				 '(font-lock-multiline t)))
-	  (throw 'found t)))
-      nil)))
-
-(defun org-restart-font-lock ()
-  "Restart `font-lock-mode', to force refontification."
-  (when (and (boundp 'font-lock-mode) font-lock-mode)
-    (font-lock-mode -1)
-    (font-lock-mode 1)))
-
-(defun org-activate-tags (limit)
-  (when (re-search-forward
-	 "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$" limit t)
-    (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
-    (add-text-properties (match-beginning 1) (match-end 1)
-			 (list 'mouse-face 'highlight
-			       'keymap org-mouse-map))
-    (org-rear-nonsticky-at (match-end 1))
-    t))
-
-(defun org-outline-level ()
-  "Compute the outline level of the heading at point.
-
-If this is called at a normal headline, the level is the number
-of stars.  Use `org-reduced-level' to remove the effect of
-`org-odd-levels'.  Unlike to `org-current-level', this function
-takes into consideration inlinetasks."
-  (org-with-wide-buffer
-   (end-of-line)
-   (if (re-search-backward org-outline-regexp-bol nil t)
-       (1- (- (match-end 0) (match-beginning 0)))
-     0)))
-
-(defvar org-font-lock-keywords nil)
-
-(defsubst org-re-property (property &optional literal allow-null value)
-  "Return a regexp matching a PROPERTY line.
-
-When optional argument LITERAL is non-nil, do not quote PROPERTY.
-This is useful when PROPERTY is a regexp.  When ALLOW-NULL is
-non-nil, match properties even without a value.
-
-Match group 3 is set to the value when it exists.  If there is no
-value and ALLOW-NULL is non-nil, it is set to the empty string.
-
-With optional argument VALUE, match only property lines with
-that value; in this case, ALLOW-NULL is ignored.  VALUE is quoted
-unless LITERAL is non-nil."
-  (concat
-   "^\\(?4:[ \t]*\\)"
-   (format "\\(?1::\\(?2:%s\\):\\)"
-	   (if literal property (regexp-quote property)))
-   (cond (value
-	  (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
-		  (if literal value (regexp-quote value))))
-	 (allow-null
-	  "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
-	 (t
-	  "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
-
-(defconst org-property-re
-  (org-re-property "\\S-+" 'literal t)
-  "Regular expression matching a property line.
-There are four matching groups:
-1: :PROPKEY: including the leading and trailing colon,
-2: PROPKEY without the leading and trailing colon,
-3: PROPVAL without leading or trailing spaces,
-4: the indentation of the current line,
-5: trailing whitespace.")
-
-(defvar org-font-lock-hook nil
-  "Functions to be called for special font lock stuff.")
-
-(defvar org-font-lock-extra-keywords nil) ;Dynamically scoped.
-
-(defvar org-font-lock-set-keywords-hook nil
-  "Functions that can manipulate `org-font-lock-extra-keywords'.
-This is called after `org-font-lock-extra-keywords' is defined, but before
-it is installed to be used by font lock.  This can be useful if something
-needs to be inserted at a specific position in the font-lock sequence.")
-
-(defun org-font-lock-hook (limit)
-  "Run `org-font-lock-hook' within LIMIT."
-  (run-hook-with-args 'org-font-lock-hook limit))
-
-(defun org-set-font-lock-defaults ()
-  "Set font lock defaults for the current buffer."
-  (let* ((em org-fontify-emphasized-text)
-	 (lk org-highlight-links)
-	 (org-font-lock-extra-keywords
-	  (list
-	   ;; Call the hook
-	   '(org-font-lock-hook)
-	   ;; Headlines
-	   `(,(if org-fontify-whole-heading-line
-		  "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
-		"^\\(\\**\\)\\(\\* \\)\\(.*\\)")
-	     (1 (org-get-level-face 1))
-	     (2 (org-get-level-face 2))
-	     (3 (org-get-level-face 3)))
-	   ;; Table lines
-	   '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
-	     (1 'org-table t))
-	   ;; Table internals
-	   '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
-	   '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
-	   '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
-	   '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
-	   ;; Drawers
-	   '(org-fontify-drawers)
-	   ;; Properties
-	   (list org-property-re
-		 '(1 'org-special-keyword t)
-		 '(3 'org-property-value t))
-	   ;; Link related fontification.
-	   '(org-activate-links)
-	   (when (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
-	   (when (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
-	   (when (memq 'date lk) '(org-activate-dates (0 'org-date t)))
-	   (when (memq 'footnote lk) '(org-activate-footnote-links))
-           ;; Targets.
-           (list org-any-target-regexp '(0 'org-target t))
-	   ;; Diary sexps.
-	   '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
-	   ;; Macro
-	   '(org-fontify-macros)
-	   '(org-hide-wide-columns (0 nil append))
-	   ;; TODO keyword
-	   (list (format org-heading-keyword-regexp-format
-			 org-todo-regexp)
-		 '(2 (org-get-todo-face 2) t))
-	   ;; DONE
-	   (if org-fontify-done-headline
-	       (list (format org-heading-keyword-regexp-format
-			     (concat
-			      "\\(?:"
-			      (mapconcat 'regexp-quote org-done-keywords "\\|")
-			      "\\)"))
-		     '(2 'org-headline-done t))
-	     nil)
-	   ;; Priorities
-	   '(org-font-lock-add-priority-faces)
-	   ;; Tags
-	   '(org-font-lock-add-tag-faces)
-	   ;; Tags groups
-	   (when (and org-group-tags org-tag-groups-alist)
-	     (list (concat org-outline-regexp-bol ".+\\(:"
-			   (regexp-opt (mapcar 'car org-tag-groups-alist))
-			   ":\\).*$")
-		   '(1 'org-tag-group prepend)))
-	   ;; Special keywords
-	   (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
-	   (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
-	   (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
-	   (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
-	   ;; Emphasis
-	   (when em '(org-do-emphasis-faces))
-	   ;; Checkboxes
-	   '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
-	     1 'org-checkbox prepend)
-	   (when (cdr (assq 'checkbox org-list-automatic-rules))
-	     '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
-	       (0 (org-get-checkbox-statistics-face) t)))
-	   ;; Description list items
-	   '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
-	     1 'org-list-dt prepend)
-	   ;; ARCHIVEd headings
-	   (list (concat
-		  org-outline-regexp-bol
-		  "\\(.*:" org-archive-tag ":.*\\)")
-		 '(1 'org-archived prepend))
-	   ;; Specials
-	   '(org-do-latex-and-related)
-	   '(org-fontify-entities)
-	   '(org-raise-scripts)
-	   ;; Code
-	   '(org-activate-code (1 'org-code t))
-	   ;; COMMENT
-	   (list (format
-		  "^\\*+\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
-		  org-todo-regexp
-		  org-comment-string)
-		 '(9 'org-special-keyword t))
-	   ;; Blocks and meta lines
-	   '(org-fontify-meta-lines-and-blocks))))
-    (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
-    (run-hooks 'org-font-lock-set-keywords-hook)
-    ;; Now set the full font-lock-keywords
-    (setq-local org-font-lock-keywords org-font-lock-extra-keywords)
-    (setq-local font-lock-defaults
-		'(org-font-lock-keywords t nil nil backward-paragraph))
-    (kill-local-variable 'font-lock-keywords)
-    nil))
-
-(defun org-toggle-pretty-entities ()
-  "Toggle the composition display of entities as UTF8 characters."
-  (interactive)
-  (setq-local org-pretty-entities (not org-pretty-entities))
-  (org-restart-font-lock)
-  (if org-pretty-entities
-      (message "Entities are now displayed as UTF8 characters")
-    (save-restriction
-      (widen)
-      (decompose-region (point-min) (point-max))
-      (message "Entities are now displayed as plain text"))))
-
-(defvar-local org-custom-properties-overlays nil
-  "List of overlays used for custom properties.")
-
-(defun org-toggle-custom-properties-visibility ()
-  "Display or hide properties in `org-custom-properties'."
-  (interactive)
-  (if org-custom-properties-overlays
-      (progn (mapc #'delete-overlay org-custom-properties-overlays)
-	     (setq org-custom-properties-overlays nil))
-    (when org-custom-properties
-      (org-with-wide-buffer
-       (goto-char (point-min))
-       (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
-	 (while (re-search-forward regexp nil t)
-	   (let ((end (cdr (save-match-data (org-get-property-block)))))
-	     (when (and end (< (point) end))
-	       ;; Hide first custom property in current drawer.
-	       (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
-		 (overlay-put o 'invisible t)
-		 (overlay-put o 'org-custom-property t)
-		 (push o org-custom-properties-overlays))
-	       ;; Hide additional custom properties in the same drawer.
-	       (while (re-search-forward regexp end t)
-		 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
-		   (overlay-put o 'invisible t)
-		   (overlay-put o 'org-custom-property t)
-		   (push o org-custom-properties-overlays)))))
-	   ;; Each entry is limited to a single property drawer.
-	   (outline-next-heading)))))))
-
-(defun org-fontify-entities (limit)
-  "Find an entity to fontify."
-  (let (ee)
-    (when org-pretty-entities
-      (catch 'match
-	;; "\_ "-family is left out on purpose.  Only the first one,
-	;; i.e., "\_ ", could be fontified anyway, and it would be
-	;; confusing when adding a second white space character.
-	(while (re-search-forward
-		"\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
-		limit t)
-	  (when (and (not (org-at-comment-p))
-		     (setq ee (org-entity-get (match-string 1)))
-		     (= (length (nth 6 ee)) 1))
-	    (let* ((end (if (equal (match-string 2) "{}")
-			    (match-end 2)
-			  (match-end 1))))
-	      (add-text-properties
-	       (match-beginning 0) end
-	       (list 'font-lock-fontified t))
-	      (compose-region (match-beginning 0) end
-			      (nth 6 ee) nil)
-	      (backward-char 1)
-	      (throw 'match t))))
-	nil))))
-
-(defun org-fontify-like-in-org-mode (s &optional odd-levels)
-  "Fontify string S like in Org mode."
-  (with-temp-buffer
-    (insert s)
-    (let ((org-odd-levels-only odd-levels))
-      (org-mode)
-      (org-font-lock-ensure)
-      (buffer-string))))
-
-(defvar org-m nil)
-(defvar org-l nil)
-(defvar org-f nil)
-(defun org-get-level-face (n)
-  "Get the right face for match N in font-lock matching of headlines."
-  (setq org-l (- (match-end 2) (match-beginning 1) 1))
-  (when org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
-  (if org-cycle-level-faces
-      (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
-    (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
-  (cond
-   ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
-   ((eq n 2) org-f)
-   (t (unless org-level-color-stars-only org-f))))
-
-(defun org-face-from-face-or-color (context inherit face-or-color)
-  "Create a face list that inherits INHERIT, but sets the foreground color.
-When FACE-OR-COLOR is not a string, just return it."
-  (if (stringp face-or-color)
-      (list :inherit inherit
-	    (cdr (assoc context org-faces-easy-properties))
-	    face-or-color)
-    face-or-color))
-
-(defun org-get-todo-face (kwd)
-  "Get the right face for a TODO keyword KWD.
-If KWD is a number, get the corresponding match group."
-  (when (numberp kwd) (setq kwd (match-string kwd)))
-  (or (org-face-from-face-or-color
-       'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
-      (and (member kwd org-done-keywords) 'org-done)
-      'org-todo))
-
-(defun org-get-priority-face (priority)
-  "Get the right face for PRIORITY.
-PRIORITY is a character."
-  (or (org-face-from-face-or-color
-       'priority 'org-priority (cdr (assq priority org-priority-faces)))
-      'org-priority))
-
-(defun org-get-tag-face (tag)
-  "Get the right face for TAG.
-If TAG is a number, get the corresponding match group."
-  (let ((tag (if (wholenump tag) (match-string tag) tag)))
-    (or (org-face-from-face-or-color
-	 'tag 'org-tag (cdr (assoc tag org-tag-faces)))
-	'org-tag)))
-
-(defun org-font-lock-add-priority-faces (limit)
-  "Add the special priority faces."
-  (while (re-search-forward "^\\*+ .*?\\(\\[#\\(.\\)\\]\\)" limit t)
-    (add-text-properties
-     (match-beginning 1) (match-end 1)
-     (list 'face (org-get-priority-face (string-to-char (match-string 2)))
-	   'font-lock-fontified t))))
-
-(defun org-font-lock-add-tag-faces (limit)
-  "Add the special tag faces."
-  (when (and org-tag-faces org-tags-special-faces-re)
-    (while (re-search-forward org-tags-special-faces-re limit t)
-      (add-text-properties (match-beginning 1) (match-end 1)
-			   (list 'face (org-get-tag-face 1)
-				 'font-lock-fontified t))
-      (backward-char 1))))
-
-(defun org-unfontify-region (beg end &optional _maybe_loudly)
-  "Remove fontification and activation overlays from links."
-  (font-lock-default-unfontify-region beg end)
-  (let* ((buffer-undo-list t)
-	 (inhibit-read-only t) (inhibit-point-motion-hooks t)
-	 (inhibit-modification-hooks t)
-	 deactivate-mark buffer-file-name buffer-file-truename)
-    (decompose-region beg end)
-    (remove-text-properties beg end
-			    '(mouse-face t keymap t org-linked-text t
-					 invisible t intangible t
-					 org-emphasis t))
-    (org-remove-font-lock-display-properties beg end)))
-
-(defconst org-script-display  '(((raise -0.3) (height 0.7))
-				((raise 0.3)  (height 0.7))
-				((raise -0.5))
-				((raise 0.5)))
-  "Display properties for showing superscripts and subscripts.")
-
-(defun org-remove-font-lock-display-properties (beg end)
-  "Remove specific display properties that have been added by font lock.
-The will remove the raise properties that are used to show superscripts
-and subscripts."
-  (let (next prop)
-    (while (< beg end)
-      (setq next (next-single-property-change beg 'display nil end)
-	    prop (get-text-property beg 'display))
-      (when (member prop org-script-display)
-	(put-text-property beg next 'display nil))
-      (setq beg next))))
-
-(defun org-raise-scripts (limit)
-  "Add raise properties to sub/superscripts."
-  (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts
-	     (re-search-forward
-	      (if (eq org-use-sub-superscripts t)
-		  org-match-substring-regexp
-		org-match-substring-with-braces-regexp)
-	      limit t))
-    (let* ((pos (point)) table-p comment-p
-	   (mpos (match-beginning 3))
-	   (emph-p (get-text-property mpos 'org-emphasis))
-	   (link-p (get-text-property mpos 'mouse-face))
-	   (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
-      (goto-char (point-at-bol))
-      (setq table-p (looking-at-p org-table-dataline-regexp)
-	    comment-p (looking-at-p "^[ \t]*#[ +]"))
-      (goto-char pos)
-      ;; Handle a_b^c
-      (when (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
-      (unless (or comment-p emph-p link-p keyw-p)
-	(put-text-property (match-beginning 3) (match-end 0)
-			   'display
-			   (if (equal (char-after (match-beginning 2)) ?^)
-			       (nth (if table-p 3 1) org-script-display)
-			     (nth (if table-p 2 0) org-script-display)))
-	(add-text-properties (match-beginning 2) (match-end 2)
-			     (list 'invisible t))
-	(when (and (eq (char-after (match-beginning 3)) ?{)
-		   (eq (char-before (match-end 3)) ?}))
-	  (add-text-properties (match-beginning 3) (1+ (match-beginning 3))
-			       (list 'invisible t))
-	  (add-text-properties (1- (match-end 3)) (match-end 3)
-			       (list 'invisible t))))
-      t)))
-
-;;;; Visibility cycling, including org-goto and indirect buffer
-
-;;; Cycling
-
-(defvar-local org-cycle-global-status nil)
-(put 'org-cycle-global-status 'org-state t)
-(defvar-local org-cycle-subtree-status nil)
-(put 'org-cycle-subtree-status 'org-state t)
-
-(defvar org-inlinetask-min-level)
-
-(defun org-unlogged-message (&rest args)
-  "Display a message, but avoid logging it in the *Messages* buffer."
-  (let ((message-log-max nil))
-    (apply 'message args)))
-
-;;;###autoload
-(defun org-cycle (&optional arg)
-  "TAB-action and visibility cycling for Org mode.
-
-This is the command invoked in Org mode by the `TAB' key.  Its main
-purpose is outline visibility cycling, but it also invokes other actions
-in special contexts.
-
-When this function is called with a `\\[universal-argument]' prefix, rotate \
-the entire
-buffer through 3 states (global cycling)
-  1. OVERVIEW: Show only top-level headlines.
-  2. CONTENTS: Show all headlines of all levels, but no body text.
-  3. SHOW ALL: Show everything.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix argument, \
-switch to the startup visibility,
-determined by the variable `org-startup-folded', and by any VISIBILITY
-properties in the buffer.
-
-With a `\\[universal-argument] \\[universal-argument] \
-\\[universal-argument]' prefix argument, show the entire buffer, including
-any drawers.
-
-When inside a table, re-align the table and move to the next field.
-
-When point is at the beginning of a headline, rotate the subtree started
-by this line through 3 different states (local cycling)
-  1. FOLDED:   Only the main headline is shown.
-  2. CHILDREN: The main headline and the direct children are shown.
-               From this state, you can move to one of the children
-               and zoom in further.
-  3. SUBTREE:  Show the entire subtree, including body text.
-If there is no subtree, switch directly from CHILDREN to FOLDED.
-
-When point is at the beginning of an empty headline and the variable
-`org-cycle-level-after-item/entry-creation' is set, cycle the level
-of the headline by demoting and promoting it to likely levels.  This
-speeds up creation document structure by pressing `TAB' once or several
-times right after creating a new headline.
-
-When there is a numeric prefix, go up to a heading with level ARG, do
-a `show-subtree' and return to the previous cursor position.  If ARG
-is negative, go up that many levels.
-
-When point is not at the beginning of a headline, execute the global
-binding for `TAB', which is re-indenting the line.  See the option
-`org-cycle-emulate-tab' for details.
-
-As a special case, if point is at the beginning of the buffer and there is
-no headline in line 1, this function will act as if called with prefix arg
-\(`\\[universal-argument] TAB', same as `S-TAB') also when called without \
-prefix arg, but only
-if the variable `org-cycle-global-at-bob' is t."
-  (interactive "P")
-  (org-load-modules-maybe)
-  (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
-	      (and org-cycle-level-after-item/entry-creation
-		   (or (org-cycle-level)
-		       (org-cycle-item-indentation))))
-    (let* ((limit-level
-	    (or org-cycle-max-level
-		(and (boundp 'org-inlinetask-min-level)
-		     org-inlinetask-min-level
-		     (1- org-inlinetask-min-level))))
-	   (nstars (and limit-level
-			(if org-odd-levels-only
-			    (and limit-level (1- (* limit-level 2)))
-			  limit-level)))
-	   (org-outline-regexp
-	    (if (not (derived-mode-p 'org-mode))
-		outline-regexp
-	      (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
-	   (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
-			     (not (looking-at org-outline-regexp))))
-	   (org-cycle-hook
-	    (if bob-special
-		(delq 'org-optimize-window-after-visibility-change
-		      (copy-sequence org-cycle-hook))
-	      org-cycle-hook))
-	   (pos (point)))
-
-      (cond
-
-       ((equal arg '(16))
-	(setq last-command 'dummy)
-	(org-set-startup-visibility)
-	(org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
-
-       ((equal arg '(64))
-	(outline-show-all)
-	(org-unlogged-message "Entire buffer visible, including drawers"))
-
-       ((equal arg '(4)) (org-cycle-internal-global))
-
-       ;; Try hiding block at point.
-       ((org-hide-block-toggle-maybe))
-
-       ;; Try cdlatex TAB completion
-       ((org-try-cdlatex-tab))
-
-       ;; Table: enter it or move to the next field.
-       ((org-at-table-p 'any)
-	(if (org-at-table.el-p)
-	    (message "%s" (substitute-command-keys "\\<org-mode-map>\
-Use `\\[org-edit-special]' to edit table.el tables"))
-	  (if arg (org-table-edit-field t)
-	    (org-table-justify-field-maybe)
-	    (call-interactively 'org-table-next-field))))
-
-       ((run-hook-with-args-until-success 'org-tab-after-check-for-table-hook))
-
-       ;; Global cycling: delegate to `org-cycle-internal-global'.
-       (bob-special (org-cycle-internal-global))
-
-       ;; Drawers: delegate to `org-flag-drawer'.
-       ((save-excursion
-	  (beginning-of-line 1)
-	  (looking-at org-drawer-regexp))
-	(org-flag-drawer		; toggle block visibility
-	 (not (get-char-property (match-end 0) 'invisible))))
-
-       ;; Show-subtree, ARG levels up from here.
-       ((integerp arg)
-	(save-excursion
-	  (org-back-to-heading)
-	  (outline-up-heading (if (< arg 0) (- arg)
-				(- (funcall outline-level) arg)))
-	  (org-show-subtree)))
-
-       ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
-       ((and (featurep 'org-inlinetask)
-	     (org-inlinetask-at-task-p)
-	     (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
-	(org-inlinetask-toggle-visibility))
-
-       ;; At an item/headline: delegate to `org-cycle-internal-local'.
-       ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
-		 (save-excursion (move-beginning-of-line 1)
-				 (looking-at org-outline-regexp)))
-	     (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
-	(org-cycle-internal-local))
-
-       ;; From there: TAB emulation and template completion.
-       (buffer-read-only (org-back-to-heading))
-
-       ((run-hook-with-args-until-success
-	 'org-tab-after-check-for-cycling-hook))
-
-       ((org-try-structure-completion))
-
-       ((run-hook-with-args-until-success
-	 'org-tab-before-tab-emulation-hook))
-
-       ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
-	     (or (not (bolp))
-		 (not (looking-at org-outline-regexp))))
-	(call-interactively (global-key-binding "\t")))
-
-       ((if (and (memq org-cycle-emulate-tab '(white whitestart))
-		 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
-		 (or (and (eq org-cycle-emulate-tab 'white)
-			  (= (match-end 0) (point-at-eol)))
-		     (and (eq org-cycle-emulate-tab 'whitestart)
-			  (>= (match-end 0) pos))))
-	    t
-	  (eq org-cycle-emulate-tab t))
-	(call-interactively (global-key-binding "\t")))
-
-       (t (save-excursion
-	    (org-back-to-heading)
-	    (org-cycle)))))))
-
-(defun org-cycle-internal-global ()
-  "Do the global cycling action."
-  ;; Hack to avoid display of messages for .org  attachments in Gnus
-  (let ((ga (string-match "\\*fontification" (buffer-name))))
-    (cond
-     ((and (eq last-command this-command)
-	   (eq org-cycle-global-status 'overview))
-      ;; We just created the overview - now do table of contents
-      ;; This can be slow in very large buffers, so indicate action
-      (run-hook-with-args 'org-pre-cycle-hook 'contents)
-      (unless ga (org-unlogged-message "CONTENTS..."))
-      (org-content)
-      (unless ga (org-unlogged-message "CONTENTS...done"))
-      (setq org-cycle-global-status 'contents)
-      (run-hook-with-args 'org-cycle-hook 'contents))
-
-     ((and (eq last-command this-command)
-	   (eq org-cycle-global-status 'contents))
-      ;; We just showed the table of contents - now show everything
-      (run-hook-with-args 'org-pre-cycle-hook 'all)
-      (outline-show-all)
-      (unless ga (org-unlogged-message "SHOW ALL"))
-      (setq org-cycle-global-status 'all)
-      (run-hook-with-args 'org-cycle-hook 'all))
-
-     (t
-      ;; Default action: go to overview
-      (run-hook-with-args 'org-pre-cycle-hook 'overview)
-      (org-overview)
-      (unless ga (org-unlogged-message "OVERVIEW"))
-      (setq org-cycle-global-status 'overview)
-      (run-hook-with-args 'org-cycle-hook 'overview)))))
-
-(defvar org-called-with-limited-levels nil
-  "Non-nil when `org-with-limited-levels' is currently active.")
-
-(defun org-invisible-p (&optional pos)
-  "Non-nil if the character after POS is invisible.
-If POS is nil, use `point' instead."
-  (get-char-property (or pos (point)) 'invisible))
-
-(defun org-cycle-internal-local ()
-  "Do the local cycling action."
-  (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
-    ;; First, determine end of headline (EOH), end of subtree or item
-    ;; (EOS), and if item or heading has children (HAS-CHILDREN).
-    (save-excursion
-      (if (org-at-item-p)
-	  (progn
-	    (beginning-of-line)
-	    (setq struct (org-list-struct))
-	    (setq eoh (point-at-eol))
-	    (setq eos (org-list-get-item-end-before-blank (point) struct))
-	    (setq has-children (org-list-has-child-p (point) struct)))
-	(org-back-to-heading)
-	(setq eoh (save-excursion (outline-end-of-heading) (point)))
-	(setq eos (save-excursion (org-end-of-subtree t t)
-				  (when (bolp) (backward-char)) (point)))
-	(setq has-children
-	      (or (save-excursion
-		    (let ((level (funcall outline-level)))
-		      (outline-next-heading)
-		      (and (org-at-heading-p t)
-			   (> (funcall outline-level) level))))
-		  (save-excursion
-		    (org-list-search-forward (org-item-beginning-re) eos t)))))
-      ;; Determine end invisible part of buffer (EOL)
-      (beginning-of-line 2)
-      (while (and (not (eobp)) ;This is like `next-line'.
-		  (get-char-property (1- (point)) 'invisible))
-	(goto-char (next-single-char-property-change (point) 'invisible))
-	(and (eolp) (beginning-of-line 2)))
-      (setq eol (point)))
-    ;; Find out what to do next and set `this-command'
-    (cond
-     ((= eos eoh)
-      ;; Nothing is hidden behind this heading
-      (unless (org-before-first-heading-p)
-	(run-hook-with-args 'org-pre-cycle-hook 'empty))
-      (org-unlogged-message "EMPTY ENTRY")
-      (setq org-cycle-subtree-status nil)
-      (save-excursion
-	(goto-char eos)
-	(outline-next-heading)
-	(when (org-invisible-p) (org-flag-heading nil))))
-     ((and (or (>= eol eos)
-	       (not (string-match "\\S-" (buffer-substring eol eos))))
-	   (or has-children
-	       (not (setq children-skipped
-			  org-cycle-skip-children-state-if-no-children))))
-      ;; Entire subtree is hidden in one line: children view
-      (unless (org-before-first-heading-p)
-	(run-hook-with-args 'org-pre-cycle-hook 'children))
-      (if (org-at-item-p)
-	  (org-list-set-item-visibility (point-at-bol) struct 'children)
-	(org-show-entry)
-	(org-with-limited-levels (org-show-children))
-	(org-show-set-visibility 'canonical)
-	;; FIXME: This slows down the func way too much.
-	;; How keep drawers hidden in subtree anyway?
-	;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
-	;;   (org-cycle-hide-drawers 'subtree))
-
-	;; Fold every list in subtree to top-level items.
-	(when (eq org-cycle-include-plain-lists 'integrate)
-	  (save-excursion
-	    (org-back-to-heading)
-	    (while (org-list-search-forward (org-item-beginning-re) eos t)
-	      (beginning-of-line 1)
-	      (let* ((struct (org-list-struct))
-		     (prevs (org-list-prevs-alist struct))
-		     (end (org-list-get-bottom-point struct)))
-		(dolist (e (org-list-get-all-items (point) struct prevs))
-		  (org-list-set-item-visibility e struct 'folded))
-		(goto-char (if (< end eos) end eos)))))))
-      (org-unlogged-message "CHILDREN")
-      (save-excursion
-	(goto-char eos)
-	(outline-next-heading)
-	(when (org-invisible-p) (org-flag-heading nil)))
-      (setq org-cycle-subtree-status 'children)
-      (unless (org-before-first-heading-p)
-	(run-hook-with-args 'org-cycle-hook 'children)))
-     ((or children-skipped
-	  (and (eq last-command this-command)
-	       (eq org-cycle-subtree-status 'children)))
-      ;; We just showed the children, or no children are there,
-      ;; now show everything.
-      (unless (org-before-first-heading-p)
-	(run-hook-with-args 'org-pre-cycle-hook 'subtree))
-      (outline-flag-region eoh eos nil)
-      (org-unlogged-message
-       (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
-      (setq org-cycle-subtree-status 'subtree)
-      (unless (org-before-first-heading-p)
-	(run-hook-with-args 'org-cycle-hook 'subtree)))
-     (t
-      ;; Default action: hide the subtree.
-      (run-hook-with-args 'org-pre-cycle-hook 'folded)
-      (outline-flag-region eoh eos t)
-      (org-unlogged-message "FOLDED")
-      (setq org-cycle-subtree-status 'folded)
-      (unless (org-before-first-heading-p)
-	(run-hook-with-args 'org-cycle-hook 'folded))))))
-
-;;;###autoload
-(defun org-global-cycle (&optional arg)
-  "Cycle the global visibility.  For details see `org-cycle'.
-With `\\[universal-argument]' prefix ARG, switch to startup visibility.
-With a numeric prefix, show all headlines up to that level."
-  (interactive "P")
-  (let ((org-cycle-include-plain-lists
-	 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
-    (cond
-     ((integerp arg)
-      (outline-show-all)
-      (outline-hide-sublevels arg)
-      (setq org-cycle-global-status 'contents))
-     ((equal arg '(4))
-      (org-set-startup-visibility)
-      (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
-     (t
-      (org-cycle '(4))))))
-
-(defun org-set-startup-visibility ()
-  "Set the visibility required by startup options and properties."
-  (cond
-   ((eq org-startup-folded t)
-    (org-overview))
-   ((eq org-startup-folded 'content)
-    (org-content))
-   ((or (eq org-startup-folded 'showeverything)
-	(eq org-startup-folded nil))
-    (outline-show-all)))
-  (unless (eq org-startup-folded 'showeverything)
-    (when org-hide-block-startup (org-hide-block-all))
-    (org-set-visibility-according-to-property 'no-cleanup)
-    (org-cycle-hide-archived-subtrees 'all)
-    (org-cycle-hide-drawers 'all)
-    (org-cycle-show-empty-lines t)))
-
-(defun org-set-visibility-according-to-property (&optional no-cleanup)
-  "Switch subtree visibilities according to :VISIBILITY: property."
-  (interactive)
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
-     (if (not (org-at-property-p)) (outline-next-heading)
-       (let ((state (match-string 3)))
-	 (save-excursion
-	   (org-back-to-heading t)
-	   (outline-hide-subtree)
-	   (org-reveal))
-	 (cond
-	  ((equal state "folded")
-	   (outline-hide-subtree)
-	   (org-end-of-subtree t t))
-	  ((equal state "children")
-	   (org-show-hidden-entry)
-	   (org-show-children))
-	  ((equal state "content")
-	   (save-excursion
-	     (save-restriction
-	       (org-narrow-to-subtree)
-	       (org-content)))
-	   (org-end-of-subtree t t))
-	  ((member state '("all" "showall"))
-	   (outline-show-subtree))))))
-   (unless no-cleanup
-     (org-cycle-hide-archived-subtrees 'all)
-     (org-cycle-hide-drawers 'all)
-     (org-cycle-show-empty-lines 'all))))
-
-;; This function uses outline-regexp instead of the more fundamental
-;; org-outline-regexp so that org-cycle-global works outside of Org
-;; buffers, where outline-regexp is needed.
-(defun org-overview ()
-  "Switch to overview mode, showing only top-level headlines.
-This shows all headlines with a level equal or greater than the level
-of the first headline in the buffer.  This is important, because if the
-first headline is not level one, then (hide-sublevels 1) gives confusing
-results."
-  (interactive)
-  (save-excursion
-    (let ((level
-	   (save-excursion
-	     (goto-char (point-min))
-	     (when (re-search-forward (concat "^" outline-regexp) nil t)
-	       (goto-char (match-beginning 0))
-	       (funcall outline-level)))))
-      (and level (outline-hide-sublevels level)))))
-
-(defun org-content (&optional arg)
-  "Show all headlines in the buffer, like a table of contents.
-With numerical argument N, show content up to level N."
-  (interactive "P")
-  (org-overview)
-  (save-excursion
-    ;; Visit all headings and show their offspring
-    (and (integerp arg) (org-overview))
-    (goto-char (point-max))
-    (catch 'exit
-      (while (and (progn (condition-case nil
-			     (outline-previous-visible-heading 1)
-			   (error (goto-char (point-min))))
-			 t)
-		  (looking-at org-outline-regexp))
-	(if (integerp arg)
-	    (org-show-children (1- arg))
-	  (outline-show-branches))
-	(when (bobp) (throw 'exit nil))))))
-
-(defun org-optimize-window-after-visibility-change (state)
-  "Adjust the window after a change in outline visibility.
-This function is the default value of the hook `org-cycle-hook'."
-  (when (get-buffer-window (current-buffer))
-    (cond
-     ((eq state 'content)  nil)
-     ((eq state 'all)      nil)
-     ((eq state 'folded)   nil)
-     ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
-     ((eq state 'subtree)  (or (org-subtree-end-visible-p) (recenter 1))))))
-
-(defun org-remove-empty-overlays-at (pos)
-  "Remove outline overlays that do not contain non-white stuff."
-  (dolist (o (overlays-at pos))
-    (and (eq 'outline (overlay-get o 'invisible))
-	 (not (string-match "\\S-" (buffer-substring (overlay-start o)
-						     (overlay-end o))))
-	 (delete-overlay o))))
-
-(defun org-clean-visibility-after-subtree-move ()
-  "Fix visibility issues after moving a subtree."
-  ;; First, find a reasonable region to look at:
-  ;; Start two siblings above, end three below
-  (let* ((beg (save-excursion
-		(and (org-get-last-sibling)
-		     (org-get-last-sibling))
-		(point)))
-	 (end (save-excursion
-		(and (org-get-next-sibling)
-		     (org-get-next-sibling)
-		     (org-get-next-sibling))
-		(if (org-at-heading-p)
-		    (point-at-eol)
-		  (point))))
-	 (level (looking-at "\\*+"))
-	 (re (when level (concat "^" (regexp-quote (match-string 0)) " "))))
-    (save-excursion
-      (save-restriction
-	(narrow-to-region beg end)
-	(when re
-	  ;; Properly fold already folded siblings
-	  (goto-char (point-min))
-	  (while (re-search-forward re nil t)
-	    (when (and (not (org-invisible-p))
-		       (save-excursion
-			 (goto-char (point-at-eol)) (org-invisible-p)))
-	      (outline-hide-entry))))
-	(org-cycle-show-empty-lines 'overview)
-	(org-cycle-hide-drawers 'overview)))))
-
-(defun org-cycle-show-empty-lines (state)
-  "Show empty lines above all visible headlines.
-The region to be covered depends on STATE when called through
-`org-cycle-hook'.  Lisp program can use t for STATE to get the
-entire buffer covered.  Note that an empty line is only shown if there
-are at least `org-cycle-separator-lines' empty lines before the headline."
-  (when (/= org-cycle-separator-lines 0)
-    (save-excursion
-      (let* ((n (abs org-cycle-separator-lines))
-	     (re (cond
-		  ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
-		  ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
-		  (t (let ((ns (number-to-string (- n 2))))
-		       (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
-			       "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
-	     beg end)
-	(cond
-	 ((memq state '(overview contents t))
-	  (setq beg (point-min) end (point-max)))
-	 ((memq state '(children folded))
-	  (setq beg (point)
-		end (progn (org-end-of-subtree t t)
-			   (line-beginning-position 2)))))
-	(when beg
-	  (goto-char beg)
-	  (while (re-search-forward re end t)
-	    (unless (get-char-property (match-end 1) 'invisible)
-	      (let ((e (match-end 1))
-		    (b (if (>= org-cycle-separator-lines 0)
-			   (match-beginning 1)
-			 (save-excursion
-			   (goto-char (match-beginning 0))
-			   (skip-chars-backward " \t\n")
-			   (line-end-position)))))
-		(outline-flag-region b e nil))))))))
-  ;; Never hide empty lines at the end of the file.
-  (save-excursion
-    (goto-char (point-max))
-    (outline-previous-heading)
-    (outline-end-of-heading)
-    (when (and (looking-at "[ \t\n]+")
-	       (= (match-end 0) (point-max)))
-      (outline-flag-region (point) (match-end 0) nil))))
-
-(defun org-show-empty-lines-in-parent ()
-  "Move to the parent and re-show empty lines before visible headlines."
-  (save-excursion
-    (let ((context (if (org-up-heading-safe) 'children 'overview)))
-      (org-cycle-show-empty-lines context))))
-
-(defun org-files-list ()
-  "Return `org-agenda-files' list, plus all open Org files.
-This is useful for operations that need to scan all of a user's
-open and agenda-wise Org files."
-  (let ((files (mapcar #'expand-file-name (org-agenda-files))))
-    (dolist (buf (buffer-list))
-      (with-current-buffer buf
-	(when (and (derived-mode-p 'org-mode) (buffer-file-name))
-	  (cl-pushnew (expand-file-name (buffer-file-name)) files
-		      :test #'equal))))
-    files))
-
-(defsubst org-entry-beginning-position ()
-  "Return the beginning position of the current entry."
-  (save-excursion (org-back-to-heading t) (point)))
-
-(defsubst org-entry-end-position ()
-  "Return the end position of the current entry."
-  (save-excursion (outline-next-heading) (point)))
-
-(defun org-cycle-hide-drawers (state &optional exceptions)
-  "Re-hide all drawers after a visibility state change.
-STATE should be one of the symbols listed in the docstring of
-`org-cycle-hook'.  When non-nil, optional argument EXCEPTIONS is
-a list of strings specifying which drawers should not be hidden."
-  (when (and (derived-mode-p 'org-mode)
-	     (not (memq state '(overview folded contents))))
-    (save-excursion
-      (let* ((globalp (eq state 'all))
-             (beg (if globalp (point-min) (point)))
-             (end (if globalp (point-max)
-		    (if (eq state 'children)
-			(save-excursion (outline-next-heading) (point))
-		      (org-end-of-subtree t)))))
-	(goto-char beg)
-	(while (re-search-forward org-drawer-regexp (max end (point)) t)
-	  (unless (member-ignore-case (match-string 1) exceptions)
-	    (let ((drawer (org-element-at-point)))
-	      (when (memq (org-element-type drawer) '(drawer property-drawer))
-		(org-flag-drawer t drawer)
-		;; Make sure to skip drawer entirely or we might flag
-		;; it another time when matching its ending line with
-		;; `org-drawer-regexp'.
-		(goto-char (org-element-property :end drawer))))))))))
-
-(defun org-flag-drawer (flag &optional element)
-  "When FLAG is non-nil, hide the drawer we are at.
-Otherwise make it visible.  When optional argument ELEMENT is
-a parsed drawer, as returned by `org-element-at-point', hide or
-show that drawer instead."
-  (let ((drawer (or element
-		    (and (save-excursion
-			   (beginning-of-line)
-			   (looking-at-p org-drawer-regexp))
-			 (org-element-at-point)))))
-    (when (memq (org-element-type drawer) '(drawer property-drawer))
-      (let ((post (org-element-property :post-affiliated drawer)))
-	(save-excursion
-	  (outline-flag-region
-	   (progn (goto-char post) (line-end-position))
-	   (progn (goto-char (org-element-property :end drawer))
-		  (skip-chars-backward " \r\t\n")
-		  (line-end-position))
-	   flag))
-	;; When the drawer is hidden away, make sure point lies in
-	;; a visible part of the buffer.
-	(when (and flag (> (line-beginning-position) post))
-	  (goto-char post))))))
-
-(defun org-subtree-end-visible-p ()
-  "Is the end of the current subtree visible?"
-  (pos-visible-in-window-p
-   (save-excursion (org-end-of-subtree t) (point))))
-
-(defun org-first-headline-recenter ()
-  "Move cursor to the first headline and recenter the headline."
-  (let ((window (get-buffer-window)))
-    (when window
-      (goto-char (point-min))
-      (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
-	(set-window-start window (line-beginning-position))))))
-
-;;; Saving and restoring visibility
-
-(defun org-outline-overlay-data (&optional use-markers)
-  "Return a list of the locations of all outline overlays.
-These are overlays with the `invisible' property value `outline'.
-The return value is a list of cons cells, with start and stop
-positions for each overlay.
-If USE-MARKERS is set, return the positions as markers."
-  (let (beg end)
-    (org-with-wide-buffer
-     (delq nil
-	   (mapcar (lambda (o)
-		     (when (eq (overlay-get o 'invisible) 'outline)
-		       (setq beg (overlay-start o)
-			     end (overlay-end o))
-		       (and beg end (> end beg)
-			    (if use-markers
-				(cons (copy-marker beg)
-				      (copy-marker end t))
-			      (cons beg end)))))
-		   (overlays-in (point-min) (point-max)))))))
-
-(defun org-set-outline-overlay-data (data)
-  "Create visibility overlays for all positions in DATA.
-DATA should have been made by `org-outline-overlay-data'."
-  (org-with-wide-buffer
-   (outline-show-all)
-   (dolist (c data) (outline-flag-region (car c) (cdr c) t))))
-
-;;; Folding of blocks
-
-(defvar-local org-hide-block-overlays nil
-  "Overlays hiding blocks.")
-
-(defun org-block-map (function &optional start end)
-  "Call FUNCTION at the head of all source blocks in the current buffer.
-Optional arguments START and END can be used to limit the range."
-  (let ((start (or start (point-min)))
-        (end (or end (point-max))))
-    (save-excursion
-      (goto-char start)
-      (while (and (< (point) end) (re-search-forward org-block-regexp end t))
-	(save-excursion
-	  (save-match-data
-            (goto-char (match-beginning 0))
-            (funcall function)))))))
-
-(defun org-hide-block-toggle-all ()
-  "Toggle the visibility of all blocks in the current buffer."
-  (org-block-map 'org-hide-block-toggle))
-
-(defun org-hide-block-all ()
-  "Fold all blocks in the current buffer."
-  (interactive)
-  (org-show-block-all)
-  (org-block-map 'org-hide-block-toggle-maybe))
-
-(defun org-show-block-all ()
-  "Unfold all blocks in the current buffer."
-  (interactive)
-  (mapc #'delete-overlay org-hide-block-overlays)
-  (setq org-hide-block-overlays nil))
-
-(defun org-hide-block-toggle-maybe ()
-  "Toggle visibility of block at point.
-Unlike to `org-hide-block-toggle', this function does not throw
-an error.  Return a non-nil value when toggling is successful."
-  (interactive)
-  (ignore-errors (org-hide-block-toggle)))
-
-(defun org-hide-block-toggle (&optional force)
-  "Toggle the visibility of the current block.
-When optional argument FORCE is `off', make block visible.  If it
-is non-nil, hide it unconditionally.  Throw an error when not at
-a block.  Return a non-nil value when toggling is successful."
-  (interactive)
-  (let ((element (org-element-at-point)))
-    (unless (memq (org-element-type element)
-		  '(center-block comment-block dynamic-block example-block
-				 export-block quote-block special-block
-				 src-block verse-block))
-      (user-error "Not at a block"))
-    (let* ((start (save-excursion
-		    (goto-char (org-element-property :post-affiliated element))
-		    (line-end-position)))
-	   (end (save-excursion
-		  (goto-char (org-element-property :end element))
-		  (skip-chars-backward " \r\t\n")
-		  (line-end-position)))
-	   (overlays (overlays-at start)))
-      (cond
-       ;; Do nothing when not before or at the block opening line or
-       ;; at the block closing line.
-       ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
-       ((and (not (eq force 'off))
-	     (not (memq t (mapcar
-			   (lambda (o)
-			     (eq (overlay-get o 'invisible) 'org-hide-block))
-			   overlays))))
-	(let ((ov (make-overlay start end)))
-	  (overlay-put ov 'invisible 'org-hide-block)
-	  ;; Make the block accessible to `isearch'.
-	  (overlay-put
-	   ov 'isearch-open-invisible
-	   (lambda (ov)
-	     (when (memq ov org-hide-block-overlays)
-	       (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
-	     (when (eq (overlay-get ov 'invisible) 'org-hide-block)
-	       (delete-overlay ov))))
-	  (push ov org-hide-block-overlays)
-	  ;; When the block is hidden away, make sure point is left in
-	  ;; a visible part of the buffer.
-	  (when (> (line-beginning-position) start)
-	    (goto-char start)
-	    (beginning-of-line))
-	  ;; Signal successful toggling.
-	  t))
-       ((or (not force) (eq force 'off))
-	(dolist (ov overlays t)
-	  (when (memq ov org-hide-block-overlays)
-	    (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
-	  (when (eq (overlay-get ov 'invisible) 'org-hide-block)
-	    (delete-overlay ov))))))))
-
-;; Remove overlays when changing major mode
-(add-hook 'org-mode-hook
-	  (lambda () (add-hook 'change-major-mode-hook
-			       'org-show-block-all 'append 'local)))
-
-;;; Org-goto
-
-(defvar org-goto-window-configuration nil)
-(defvar org-goto-marker nil)
-(defvar org-goto-map)
-(defun org-goto-map ()
-  "Set the keymap `org-goto'."
-  (setq org-goto-map
-	(let ((map (make-sparse-keymap)))
-	  (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
-					mouse-drag-region universal-argument org-occur)))
-	    (dolist (cmd cmds)
-	      (substitute-key-definition cmd cmd map global-map)))
-	  (suppress-keymap map)
-	  (org-defkey map "\C-m"     'org-goto-ret)
-	  (org-defkey map [(return)] 'org-goto-ret)
-	  (org-defkey map [(left)]   'org-goto-left)
-	  (org-defkey map [(right)]  'org-goto-right)
-	  (org-defkey map [(control ?g)] 'org-goto-quit)
-	  (org-defkey map "\C-i" 'org-cycle)
-	  (org-defkey map [(tab)] 'org-cycle)
-	  (org-defkey map [(down)] 'outline-next-visible-heading)
-	  (org-defkey map [(up)] 'outline-previous-visible-heading)
-	  (if org-goto-auto-isearch
-	      (if (fboundp 'define-key-after)
-		  (define-key-after map [t] 'org-goto-local-auto-isearch)
-		nil)
-	    (org-defkey map "q" 'org-goto-quit)
-	    (org-defkey map "n" 'outline-next-visible-heading)
-	    (org-defkey map "p" 'outline-previous-visible-heading)
-	    (org-defkey map "f" 'outline-forward-same-level)
-	    (org-defkey map "b" 'outline-backward-same-level)
-	    (org-defkey map "u" 'outline-up-heading))
-	  (org-defkey map "/" 'org-occur)
-	  (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
-	  (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
-	  (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
-	  (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
-	  (org-defkey map "\C-c\C-u" 'outline-up-heading)
-	  map)))
-
-(defconst org-goto-help
-  "Browse buffer copy, to find location or copy text.%s
-RET=jump to location             C-g=quit and return to previous location
-\[Up]/[Down]=next/prev headline   TAB=cycle visibility   [/] org-occur")
-
-(defvar org-goto-start-pos) ; dynamically scoped parameter
-
-(defun org-goto (&optional alternative-interface)
-  "Look up a different location in the current file, keeping current visibility.
-
-When you want look-up or go to a different location in a
-document, the fastest way is often to fold the entire buffer and
-then dive into the tree.  This method has the disadvantage, that
-the previous location will be folded, which may not be what you
-want.
-
-This command works around this by showing a copy of the current
-buffer in an indirect buffer, in overview mode.  You can dive
-into the tree in that copy, use org-occur and incremental search
-to find a location.  When pressing RET or `Q', the command
-returns to the original buffer in which the visibility is still
-unchanged.  After RET it will also jump to the location selected
-in the indirect buffer and expose the headline hierarchy above.
-
-With a prefix argument, use the alternative interface: e.g., if
-`org-goto-interface' is `outline' use `outline-path-completion'."
-  (interactive "P")
-  (org-goto-map)
-  (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
-	 (org-refile-use-outline-path t)
-	 (org-refile-target-verify-function nil)
-	 (interface
-	  (if (not alternative-interface)
-	      org-goto-interface
-	    (if (eq org-goto-interface 'outline)
-		'outline-path-completion
-	      'outline)))
-	 (org-goto-start-pos (point))
-	 (selected-point
-	  (if (eq interface 'outline)
-	      (car (org-get-location (current-buffer) org-goto-help))
-	    (let ((pa (org-refile-get-location "Goto")))
-	      (org-refile-check-position pa)
-	      (nth 3 pa)))))
-    (if selected-point
-	(progn
-	  (org-mark-ring-push org-goto-start-pos)
-	  (goto-char selected-point)
-	  (when (or (org-invisible-p) (org-invisible-p2))
-	    (org-show-context 'org-goto)))
-      (message "Quit"))))
-
-(defvar org-goto-selected-point nil) ; dynamically scoped parameter
-(defvar org-goto-exit-command nil) ; dynamically scoped parameter
-(defvar org-goto-local-auto-isearch-map) ; defined below
-
-(defun org-get-location (_buf help)
-  "Let the user select a location in current buffer.
-This function uses a recursive edit.  It returns the selected position
-or nil."
-  (org-no-popups
-   (let ((isearch-mode-map org-goto-local-auto-isearch-map)
-	 (isearch-hide-immediately nil)
-	 (isearch-search-fun-function
-	  (lambda () 'org-goto-local-search-headings))
-	 (org-goto-selected-point org-goto-exit-command))
-     (save-excursion
-       (save-window-excursion
-	 (delete-other-windows)
-	 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
-	 (pop-to-buffer-same-window
-	  (condition-case nil
-	      (make-indirect-buffer (current-buffer) "*org-goto*")
-	    (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
-	 (with-output-to-temp-buffer "*Org Help*"
-	   (princ (format help (if org-goto-auto-isearch
-				   "  Just type for auto-isearch."
-				 "  n/p/f/b/u to navigate, q to quit."))))
-	 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
-	 (setq buffer-read-only nil)
-	 (let ((org-startup-truncated t)
-	       (org-startup-folded nil)
-	       (org-startup-align-all-tables nil))
-	   (org-mode)
-	   (org-overview))
-	 (setq buffer-read-only t)
-	 (if (and (boundp 'org-goto-start-pos)
-		  (integer-or-marker-p org-goto-start-pos))
-	     (progn (goto-char org-goto-start-pos)
-		    (when (org-invisible-p)
-		      (org-show-set-visibility 'lineage)))
-	   (goto-char (point-min)))
-	 (let (org-special-ctrl-a/e) (org-beginning-of-line))
-	 (message "Select location and press RET")
-	 (use-local-map org-goto-map)
-	 (recursive-edit)))
-     (kill-buffer "*org-goto*")
-     (cons org-goto-selected-point org-goto-exit-command))))
-
-(defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
-(set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
-;; `isearch-other-control-char' was removed in Emacs 24.4.
-(if (fboundp 'isearch-other-control-char)
-    (progn
-      (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
-      (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
-  (define-key org-goto-local-auto-isearch-map "\C-i" nil)
-  (define-key org-goto-local-auto-isearch-map "\C-m" nil)
-  (define-key org-goto-local-auto-isearch-map [return] nil))
-
-(defun org-goto-local-search-headings (string bound noerror)
-  "Search and make sure that any matches are in headlines."
-  (catch 'return
-    (while (if isearch-forward
-               (search-forward string bound noerror)
-             (search-backward string bound noerror))
-      (when (save-match-data
-	      (and (save-excursion
-		     (beginning-of-line)
-		     (looking-at org-complex-heading-regexp))
-		   (or (not (match-beginning 5))
-		       (< (point) (match-beginning 5)))))
-	(throw 'return (point))))))
-
-(defun org-goto-local-auto-isearch ()
-  "Start isearch."
-  (interactive)
-  (goto-char (point-min))
-  (let ((keys (this-command-keys)))
-    (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
-      (isearch-mode t)
-      (isearch-process-search-char (string-to-char keys)))))
-
-(defun org-goto-ret (&optional _arg)
-  "Finish `org-goto' by going to the new location."
-  (interactive "P")
-  (setq org-goto-selected-point (point))
-  (setq org-goto-exit-command 'return)
-  (throw 'exit nil))
-
-(defun org-goto-left ()
-  "Finish `org-goto' by going to the new location."
-  (interactive)
-  (if (org-at-heading-p)
-      (progn
-	(beginning-of-line 1)
-	(setq org-goto-selected-point (point)
-	      org-goto-exit-command 'left)
-	(throw 'exit nil))
-    (user-error "Not on a heading")))
-
-(defun org-goto-right ()
-  "Finish `org-goto' by going to the new location."
-  (interactive)
-  (if (org-at-heading-p)
-      (progn
-	(setq org-goto-selected-point (point)
-	      org-goto-exit-command 'right)
-	(throw 'exit nil))
-    (user-error "Not on a heading")))
-
-(defun org-goto-quit ()
-  "Finish `org-goto' without cursor motion."
-  (interactive)
-  (setq org-goto-selected-point nil)
-  (setq org-goto-exit-command 'quit)
-  (throw 'exit nil))
-
-;;; Indirect buffer display of subtrees
-
-(defvar org-indirect-dedicated-frame nil
-  "This is the frame being used for indirect tree display.")
-(defvar org-last-indirect-buffer nil)
-
-(defun org-tree-to-indirect-buffer (&optional arg)
-  "Create indirect buffer and narrow it to current subtree.
-
-With a numerical prefix ARG, go up to this level and then take that tree.
-If ARG is negative, go up that many levels.
-
-If `org-indirect-buffer-display' is not `new-frame', the command removes the
-indirect buffer previously made with this command, to avoid proliferation of
-indirect buffers.  However, when you call the command with a \
-`\\[universal-argument]' prefix, or
-when `org-indirect-buffer-display' is `new-frame', the last buffer is kept
-so that you can work with several indirect buffers at the same time.  If
-`org-indirect-buffer-display' is `dedicated-frame', the \
-`\\[universal-argument]' prefix also
-requests that a new frame be made for the new buffer, so that the dedicated
-frame is not changed."
-  (interactive "P")
-  (let ((cbuf (current-buffer))
-	(cwin (selected-window))
-	(pos (point))
-	beg end level heading ibuf)
-    (save-excursion
-      (org-back-to-heading t)
-      (when (numberp arg)
-	(setq level (org-outline-level))
-	(when (< arg 0) (setq arg (+ level arg)))
-	(while (> (setq level (org-outline-level)) arg)
-	  (org-up-heading-safe)))
-      (setq beg (point)
-	    heading (org-get-heading 'no-tags))
-      (org-end-of-subtree t t)
-      (when (org-at-heading-p) (backward-char 1))
-      (setq end (point)))
-    (when (and (buffer-live-p org-last-indirect-buffer)
-	       (not (eq org-indirect-buffer-display 'new-frame))
-	       (not arg))
-      (kill-buffer org-last-indirect-buffer))
-    (setq ibuf (org-get-indirect-buffer cbuf heading)
-	  org-last-indirect-buffer ibuf)
-    (cond
-     ((or (eq org-indirect-buffer-display 'new-frame)
-	  (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
-      (select-frame (make-frame))
-      (delete-other-windows)
-      (pop-to-buffer-same-window ibuf)
-      (org-set-frame-title heading))
-     ((eq org-indirect-buffer-display 'dedicated-frame)
-      (raise-frame
-       (select-frame (or (and org-indirect-dedicated-frame
-			      (frame-live-p org-indirect-dedicated-frame)
-			      org-indirect-dedicated-frame)
-			 (setq org-indirect-dedicated-frame (make-frame)))))
-      (delete-other-windows)
-      (pop-to-buffer-same-window ibuf)
-      (org-set-frame-title (concat "Indirect: " heading)))
-     ((eq org-indirect-buffer-display 'current-window)
-      (pop-to-buffer-same-window ibuf))
-     ((eq org-indirect-buffer-display 'other-window)
-      (pop-to-buffer ibuf))
-     (t (error "Invalid value")))
-    (narrow-to-region beg end)
-    (outline-show-all)
-    (goto-char pos)
-    (run-hook-with-args 'org-cycle-hook 'all)
-    (and (window-live-p cwin) (select-window cwin))))
-
-(defun org-get-indirect-buffer (&optional buffer heading)
-  (setq buffer (or buffer (current-buffer)))
-  (let ((n 1) (base (buffer-name buffer)) bname)
-    (while (buffer-live-p
-	    (get-buffer
-	     (setq bname
-		   (concat base "-"
-			   (if heading (concat heading "-" (number-to-string n))
-			     (number-to-string n))))))
-      (setq n (1+ n)))
-    (condition-case nil
-        (make-indirect-buffer buffer bname 'clone)
-      (error (make-indirect-buffer buffer bname)))))
-
-(defun org-set-frame-title (title)
-  "Set the title of the current frame to the string TITLE."
-  (modify-frame-parameters (selected-frame) (list (cons 'name title))))
-
-;;;; Structure editing
-
-;;; Inserting headlines
-
-(defun org--line-empty-p (n)
-  "Is the Nth next line empty?
-
-Counts the current line as N = 1 and the previous line as N = 0;
-see `beginning-of-line'."
-  (save-excursion
-    (and (not (bobp))
-	 (or (beginning-of-line n) t)
-	 (save-match-data
-	   (looking-at "[ \t]*$")))))
-
-(defun org-previous-line-empty-p ()
-  "Is the previous line a blank line?
-When NEXT is non-nil, check the next line instead."
-  (org--line-empty-p 0))
-
-(defun org-next-line-empty-p ()
-  "Is the previous line a blank line?
-When NEXT is non-nil, check the next line instead."
-  (org--line-empty-p 2))
-
-(defun org--blank-before-heading-p (&optional parent)
-  "Non-nil when an empty line should precede a new heading here.
-When optional argument PARENT is non-nil, consider parent
-headline instead of current one."
-  (pcase (assq 'heading org-blank-before-new-entry)
-    (`(heading . auto)
-     (save-excursion
-       (org-with-limited-levels
-        (unless (and (org-before-first-heading-p)
-                     (not (outline-next-heading)))
-          (org-back-to-heading t)
-          (when parent (org-up-heading-safe))
-          (cond ((not (bobp))
-                 (org-previous-line-empty-p))
-		((outline-next-heading)
-		 (org-previous-line-empty-p))
-		;; Ignore trailing spaces on last buffer line.
-		((progn (skip-chars-backward " \t") (bolp))
-		 (org-previous-line-empty-p))
-		(t nil))))))
-    (`(heading . ,value) value)
-    (_ nil)))
-
-(defun org-insert-heading (&optional arg invisible-ok top)
-  "Insert a new heading or an item with the same depth at point.
-
-If point is at the beginning of a heading, insert a new heading
-or a new headline above the current one.  When at the beginning
-of a regular line of text, turn it into a heading.
-
-If point is in the middle of a line, split it and create a new
-headline with the text in the current line after point (see
-`org-M-RET-may-split-line' on how to modify this behavior).  As
-a special case, on a headline, splitting can only happen on the
-title itself.  E.g., this excludes breaking stars or tags.
-
-With a `\\[universal-argument]' prefix, set \
-`org-insert-heading-respect-content' to
-a non-nil value for the duration of the command.  This forces the
-insertion of a heading after the current subtree, independently
-on the location of point.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix, \
-insert the heading at the end of the tree
-above the current heading.  For example, if point is within a
-2nd-level heading, then it will insert a 2nd-level heading at
-the end of the 1st-level parent subtree.
-
-When INVISIBLE-OK is set, stop at invisible headlines when going
-back.  This is important for non-interactive uses of the
-command.
-
-When optional argument TOP is non-nil, insert a level 1 heading,
-unconditionally."
-  (interactive "P")
-  (let* ((blank? (org--blank-before-heading-p (equal arg '(16))))
-	 (level (org-current-level))
-	 (stars (make-string (if (and level (not top)) level 1) ?*)))
-    (cond
-     ((or org-insert-heading-respect-content
-	  (member arg '((4) (16)))
-	  (and (not invisible-ok)
-	       (invisible-p (max (1- (point)) (point-min)))))
-      ;; Position point at the location of insertion.
-      (if (not level)			;before first headline
-	  (org-with-limited-levels (outline-next-heading))
-	;; Make sure we end up on a visible headline if INVISIBLE-OK
-	;; is nil.
-	(org-with-limited-levels (org-back-to-heading invisible-ok))
-	(cond ((equal arg '(16))
-	       (org-up-heading-safe)
-	       (org-end-of-subtree t t))
-	      (t
-	       (org-end-of-subtree t t))))
-      (unless (bolp) (insert "\n"))   ;ensure final newline
-      (unless (and blank? (org-previous-line-empty-p))
-	(org-N-empty-lines-before-current (if blank? 1 0)))
-      (insert stars " \n")
-      (forward-char -1))
-     ;; At a headline...
-     ((org-at-heading-p)
-      (cond ((bolp)
-	     (when blank? (save-excursion (insert "\n")))
-	     (save-excursion (insert stars " \n"))
-	     (unless (and blank? (org-previous-line-empty-p))
-	       (org-N-empty-lines-before-current (if blank? 1 0)))
-	     (end-of-line))
-	    ((and (org-get-alist-option org-M-RET-may-split-line 'headline)
-		  (org-match-line org-complex-heading-regexp)
-		  (org-pos-in-match-range (point) 4))
-	     ;; Grab the text that should moved to the new headline.
-	     ;; Preserve tags.
-	     (let ((split (delete-and-extract-region (point) (match-end 4))))
-	       (if (looking-at "[ \t]*$") (replace-match "")
-		 (org-set-tags nil t))
-	       (end-of-line)
-	       (when blank? (insert "\n"))
-	       (insert "\n" stars " ")
-	       (when (org-string-nw-p split) (insert split))
-	       (when (eobp) (save-excursion (insert "\n")))))
-	    (t
-	     (end-of-line)
-	     (when blank? (insert "\n"))
-	     (insert "\n" stars " ")
-	     (when (eobp) (save-excursion (insert "\n"))))))
-     ;; On regular text, turn line into a headline or split, if
-     ;; appropriate.
-     ((bolp)
-      (insert stars " ")
-      (unless (and blank? (org-previous-line-empty-p))
-        (org-N-empty-lines-before-current (if blank? 1 0))))
-     (t
-      (unless (org-get-alist-option org-M-RET-may-split-line 'headline)
-        (end-of-line))
-      (insert "\n" stars " ")
-      (unless (and blank? (org-previous-line-empty-p))
-        (org-N-empty-lines-before-current (if blank? 1 0))))))
-  (run-hooks 'org-insert-heading-hook))
-
-(defun org-N-empty-lines-before-current (n)
-  "Make the number of empty lines before current exactly N.
-So this will delete or add empty lines."
-  (let ((column (current-column)))
-    (beginning-of-line)
-    (unless (bobp)
-      (let ((start (save-excursion
-		     (skip-chars-backward " \r\t\n")
-		     (line-end-position))))
-	(delete-region start (line-end-position 0))))
-    (insert (make-string n ?\n))
-    (move-to-column column)))
-
-(defun org-get-heading (&optional no-tags no-todo no-priority no-comment)
-  "Return the heading of the current entry, without the stars.
-When NO-TAGS is non-nil, don't include tags.
-When NO-TODO is non-nil, don't include TODO keywords.
-When NO-PRIORITY is non-nil, don't include priority cookie.
-When NO-COMMENT is non-nil, don't include COMMENT string."
-  (save-excursion
-    (org-back-to-heading t)
-    (let ((case-fold-search nil))
-      (looking-at org-complex-heading-regexp)
-      (let ((todo (and (not no-todo) (match-string 2)))
-	    (priority (and (not no-priority) (match-string 3)))
-	    (headline (pcase (match-string 4)
-			(`nil "")
-			((and (guard no-comment) h)
-			 (replace-regexp-in-string
-			  (eval-when-compile
-			    (format "\\`%s[ \t]+" org-comment-string))
-			  "" h))
-			(h h)))
-	    (tags (and (not no-tags) (match-string 5))))
-	(mapconcat #'identity
-		   (delq nil (list todo priority headline tags))
-		   " ")))))
-
-(defvar orgstruct-mode)   ; defined below
-
-(defun org-heading-components ()
-  "Return the components of the current heading.
-This is a list with the following elements:
-- the level as an integer
-- the reduced level, different if `org-odd-levels-only' is set.
-- the TODO keyword, or nil
-- the priority character, like ?A, or nil if no priority is given
-- the headline text itself, or the tags string if no headline text
-- the tags string, or nil."
-  (save-excursion
-    (org-back-to-heading t)
-    (when (let (case-fold-search)
-	    (looking-at
-	     (if orgstruct-mode
-		 org-heading-regexp
-	       org-complex-heading-regexp)))
-      (if orgstruct-mode
-	  (list (length (match-string 1))
-		(org-reduced-level (length (match-string 1)))
-		nil
-		nil
-		(match-string 2)
-		nil)
-	(list (length (match-string 1))
-	      (org-reduced-level (length (match-string 1)))
-	      (match-string-no-properties 2)
-	      (and (match-end 3) (aref (match-string 3) 2))
-	      (match-string-no-properties 4)
-	      (match-string-no-properties 5))))))
-
-(defun org-get-entry ()
-  "Get the entry text, after heading, entire subtree."
-  (save-excursion
-    (org-back-to-heading t)
-    (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
-
-(defun org-edit-headline (&optional heading)
-  "Edit the current headline.
-Set it to HEADING when provided."
-  (interactive)
-  (org-with-wide-buffer
-   (org-back-to-heading t)
-   (let ((case-fold-search nil))
-     (when (looking-at org-complex-heading-regexp)
-       (let* ((old (match-string-no-properties 4))
-	      (new (save-match-data
-		     (org-trim (or heading (read-string "Edit: " old))))))
-	 (unless (equal old new)
-	   (if old (replace-match new t t nil 4)
-	     (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
-	     (insert " " new))
-	   (org-set-tags nil t)
-	   (when (looking-at "[ \t]*$") (replace-match ""))))))))
-
-(defun org-insert-heading-after-current ()
-  "Insert a new heading with same level as current, after current subtree."
-  (interactive)
-  (org-back-to-heading)
-  (org-insert-heading)
-  (org-move-subtree-down)
-  (end-of-line 1))
-
-(defun org-insert-heading-respect-content (&optional invisible-ok)
-  "Insert heading with `org-insert-heading-respect-content' set to t."
-  (interactive)
-  (org-insert-heading '(4) invisible-ok))
-
-(defun org-insert-todo-heading-respect-content (&optional force-state)
-  "Insert TODO heading with `org-insert-heading-respect-content' set to t."
-  (interactive)
-  (org-insert-todo-heading force-state '(4)))
-
-(defun org-insert-todo-heading (arg &optional force-heading)
-  "Insert a new heading with the same level and TODO state as current heading.
-
-If the heading has no TODO state, or if the state is DONE, use
-the first state (TODO by default).  Also with one prefix arg,
-force first state.  With two prefix args, force inserting at the
-end of the parent subtree.
-
-When called at a plain list item, insert a new item with an
-unchecked check box."
-  (interactive "P")
-  (when (or force-heading (not (org-insert-item 'checkbox)))
-    (org-insert-heading (or (and (equal arg '(16)) '(16))
-			    force-heading))
-    (save-excursion
-      (org-forward-heading-same-level -1)
-      (let ((case-fold-search nil)) (looking-at org-todo-line-regexp)))
-    (let* ((new-mark-x
-	    (if (or (equal arg '(4))
-		    (not (match-beginning 2))
-		    (member (match-string 2) org-done-keywords))
-		(car org-todo-keywords-1)
-	      (match-string 2)))
-	   (new-mark
-	    (or
-	     (run-hook-with-args-until-success
-	      'org-todo-get-default-hook new-mark-x nil)
-	     new-mark-x)))
-      (beginning-of-line 1)
-      (and (looking-at org-outline-regexp) (goto-char (match-end 0))
-	   (if org-treat-insert-todo-heading-as-state-change
-	       (org-todo new-mark)
-	     (insert new-mark " "))))
-    (when org-provide-todo-statistics
-      (org-update-parent-todo-statistics))))
-
-(defun org-insert-subheading (arg)
-  "Insert a new subheading and demote it.
-Works for outline headings and for plain lists alike."
-  (interactive "P")
-  (org-insert-heading arg)
-  (cond
-   ((org-at-heading-p) (org-do-demote))
-   ((org-at-item-p) (org-indent-item))))
-
-(defun org-insert-todo-subheading (arg)
-  "Insert a new subheading with TODO keyword or checkbox and demote it.
-Works for outline headings and for plain lists alike."
-  (interactive "P")
-  (org-insert-todo-heading arg)
-  (cond
-   ((org-at-heading-p) (org-do-demote))
-   ((org-at-item-p) (org-indent-item))))
-
-;;; Promotion and Demotion
-
-(defvar org-after-demote-entry-hook nil
-  "Hook run after an entry has been demoted.
-The cursor will be at the beginning of the entry.
-When a subtree is being demoted, the hook will be called for each node.")
-
-(defvar org-after-promote-entry-hook nil
-  "Hook run after an entry has been promoted.
-The cursor will be at the beginning of the entry.
-When a subtree is being promoted, the hook will be called for each node.")
-
-(defun org-promote-subtree ()
-  "Promote the entire subtree.
-See also `org-promote'."
-  (interactive)
-  (save-excursion
-    (org-with-limited-levels (org-map-tree 'org-promote)))
-  (org-fix-position-after-promote))
-
-(defun org-demote-subtree ()
-  "Demote the entire subtree.
-See `org-demote' and `org-promote'."
-  (interactive)
-  (save-excursion
-    (org-with-limited-levels (org-map-tree 'org-demote)))
-  (org-fix-position-after-promote))
-
-(defun org-do-promote ()
-  "Promote the current heading higher up the tree.
-If the region is active in `transient-mark-mode', promote all
-headings in the region."
-  (interactive)
-  (save-excursion
-    (if (org-region-active-p)
-	(org-map-region 'org-promote (region-beginning) (region-end))
-      (org-promote)))
-  (org-fix-position-after-promote))
-
-(defun org-do-demote ()
-  "Demote the current heading lower down the tree.
-If the region is active in `transient-mark-mode', demote all
-headings in the region."
-  (interactive)
-  (save-excursion
-    (if (org-region-active-p)
-	(org-map-region 'org-demote (region-beginning) (region-end))
-      (org-demote)))
-  (org-fix-position-after-promote))
-
-(defun org-fix-position-after-promote ()
-  "Fix cursor position and indentation after demoting/promoting."
-  (let ((pos (point)))
-    (when (save-excursion
-	    (beginning-of-line)
-	    (let ((case-fold-search nil)) (looking-at org-todo-line-regexp))
-	    (or (eq pos (match-end 1)) (eq pos (match-end 2))))
-      (cond ((eobp) (insert " "))
-	    ((eolp) (insert " "))
-	    ((equal (char-after) ?\s) (forward-char 1))))))
-
-(defun org-current-level ()
-  "Return the level of the current entry, or nil if before the first headline.
-The level is the number of stars at the beginning of the
-headline.  Use `org-reduced-level' to remove the effect of
-`org-odd-levels'.  Unlike to `org-outline-level', this function
-ignores inlinetasks."
-  (let ((level (org-with-limited-levels (org-outline-level))))
-    (and (> level 0) level)))
-
-(defun org-get-previous-line-level ()
-  "Return the outline depth of the last headline before the current line.
-Returns 0 for the first headline in the buffer, and nil if before the
-first headline."
-  (and (org-current-level)
-       (or (and (/= (line-beginning-position) (point-min))
-		(save-excursion (beginning-of-line 0) (org-current-level)))
-	   0)))
-
-(defun org-reduced-level (l)
-  "Compute the effective level of a heading.
-This takes into account the setting of `org-odd-levels-only'."
-  (cond
-   ((zerop l) 0)
-   (org-odd-levels-only (1+ (floor (/ l 2))))
-   (t l)))
-
-(defun org-level-increment ()
-  "Return the number of stars that will be added or removed at a
-time to headlines when structure editing, based on the value of
-`org-odd-levels-only'."
-  (if org-odd-levels-only 2 1))
-
-(defun org-get-valid-level (level &optional change)
-  "Rectify a level change under the influence of `org-odd-levels-only'.
-LEVEL is a current level, CHANGE is by how much the level should
-be modified.  Even if CHANGE is nil, LEVEL may be returned
-modified because even level numbers will become the next higher
-odd number.  Returns values greater than 0."
-  (if org-odd-levels-only
-      (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
-	    ((> change 0) (1+ (* 2 (/ (+ (1- level) (* 2 change)) 2))))
-	    ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
-    (max 1 (+ level (or change 0)))))
-
-(defun org-promote ()
-  "Promote the current heading higher up the tree."
-  (org-with-wide-buffer
-   (org-back-to-heading t)
-   (let* ((after-change-functions (remq 'flyspell-after-change-function
-					after-change-functions))
-	  (level (save-match-data (funcall outline-level)))
-	  (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
-	  (diff (abs (- level (length up-head) -1))))
-     (cond
-      ((and (= level 1) org-allow-promoting-top-level-subtree)
-       (replace-match "# " nil t))
-      ((= level 1)
-       (user-error "Cannot promote to level 0.  UNDO to recover if necessary"))
-      (t (replace-match up-head nil t)))
-     (unless (= level 1)
-       (when org-auto-align-tags (org-set-tags nil 'ignore-column))
-       (when org-adapt-indentation (org-fixup-indentation (- diff))))
-     (run-hooks 'org-after-promote-entry-hook))))
-
-(defun org-demote ()
-  "Demote the current heading lower down the tree."
-  (org-with-wide-buffer
-   (org-back-to-heading t)
-   (let* ((after-change-functions (remq 'flyspell-after-change-function
-					after-change-functions))
-	  (level (save-match-data (funcall outline-level)))
-	  (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
-	  (diff (abs (- level (length down-head) -1))))
-     (replace-match down-head nil t)
-     (when org-auto-align-tags (org-set-tags nil 'ignore-column))
-     (when org-adapt-indentation (org-fixup-indentation diff))
-     (run-hooks 'org-after-demote-entry-hook))))
-
-(defun org-cycle-level ()
-  "Cycle the level of an empty headline through possible states.
-This goes first to child, then to parent, level, then up the hierarchy.
-After top level, it switches back to sibling level."
-  (interactive)
-  (let ((org-adapt-indentation nil))
-    (when (org-point-at-end-of-empty-headline)
-      (setq this-command 'org-cycle-level) ; Only needed for caching
-      (let ((cur-level (org-current-level))
-            (prev-level (org-get-previous-line-level)))
-        (cond
-         ;; If first headline in file, promote to top-level.
-         ((= prev-level 0)
-          (cl-loop repeat (/ (- cur-level 1) (org-level-increment))
-		   do (org-do-promote)))
-         ;; If same level as prev, demote one.
-         ((= prev-level cur-level)
-          (org-do-demote))
-         ;; If parent is top-level, promote to top level if not already.
-         ((= prev-level 1)
-          (cl-loop repeat (/ (- cur-level 1) (org-level-increment))
-		   do (org-do-promote)))
-         ;; If top-level, return to prev-level.
-         ((= cur-level 1)
-          (cl-loop repeat (/ (- prev-level 1) (org-level-increment))
-		   do (org-do-demote)))
-         ;; If less than prev-level, promote one.
-         ((< cur-level prev-level)
-          (org-do-promote))
-         ;; If deeper than prev-level, promote until higher than
-         ;; prev-level.
-         ((> cur-level prev-level)
-          (cl-loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
-		   do (org-do-promote))))
-        t))))
-
-(defun org-map-tree (fun)
-  "Call FUN for every heading underneath the current one."
-  (org-back-to-heading t)
-  (let ((level (funcall outline-level)))
-    (save-excursion
-      (funcall fun)
-      (while (and (progn
-		    (outline-next-heading)
-		    (> (funcall outline-level) level))
-		  (not (eobp)))
-	(funcall fun)))))
-
-(defun org-map-region (fun beg end)
-  "Call FUN for every heading between BEG and END."
-  (let ((org-ignore-region t))
-    (save-excursion
-      (setq end (copy-marker end))
-      (goto-char beg)
-      (when (and (re-search-forward org-outline-regexp-bol nil t)
-		 (< (point) end))
-	(funcall fun))
-      (while (and (progn
-		    (outline-next-heading)
-		    (< (point) end))
-		  (not (eobp)))
-	(funcall fun)))))
-
-(defun org-fixup-indentation (diff)
-  "Change the indentation in the current entry by DIFF.
-
-DIFF is an integer.  Indentation is done according to the
-following rules:
-
-  - Planning information and property drawers are always indented
-    according to the new level of the headline;
-
-  - Footnote definitions and their contents are ignored;
-
-  - Inlinetasks' boundaries are not shifted;
-
-  - Empty lines are ignored;
-
-  - Other lines' indentation are shifted by DIFF columns, unless
-    it would introduce a structural change in the document, in
-    which case no shifting is done at all.
-
-Assume point is at a heading or an inlinetask beginning."
-  (org-with-wide-buffer
-   (narrow-to-region (line-beginning-position)
-		     (save-excursion
-		       (if (org-with-limited-levels (org-at-heading-p))
-			   (org-with-limited-levels (outline-next-heading))
-			 (org-inlinetask-goto-end))
-		       (point)))
-   (forward-line)
-   ;; Indent properly planning info and property drawer.
-   (when (looking-at-p org-planning-line-re)
-     (org-indent-line)
-     (forward-line))
-   (when (looking-at org-property-drawer-re)
-     (goto-char (match-end 0))
-     (forward-line)
-     (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
-   (catch 'no-shift
-     (when (zerop diff) (throw 'no-shift nil))
-     ;; If DIFF is negative, first check if a shift is possible at all
-     ;; (e.g., it doesn't break structure).  This can only happen if
-     ;; some contents are not properly indented.
-     (let ((case-fold-search t))
-       (when (< diff 0)
-	 (let ((diff (- diff))
-	       (forbidden-re (concat org-outline-regexp
-				     "\\|"
-				     (substring org-footnote-definition-re 1))))
-	   (save-excursion
-	     (while (not (eobp))
-	       (cond
-		((looking-at-p "[ \t]*$") (forward-line))
-		((and (looking-at-p org-footnote-definition-re)
-		      (let ((e (org-element-at-point)))
-			(and (eq (org-element-type e) 'footnote-definition)
-			     (goto-char (org-element-property :end e))))))
-		((looking-at-p org-outline-regexp) (forward-line))
-		;; Give up if shifting would move before column 0 or
-		;; if it would introduce a headline or a footnote
-		;; definition.
-		(t
-		 (skip-chars-forward " \t")
-		 (let ((ind (current-column)))
-		   (when (or (< ind diff)
-			     (and (= ind diff) (looking-at-p forbidden-re)))
-		     (throw 'no-shift nil)))
-		 ;; Ignore contents of example blocks and source
-		 ;; blocks if their indentation is meant to be
-		 ;; preserved.  Jump to block's closing line.
-		 (beginning-of-line)
-		 (or (and (looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
-			  (let ((e (org-element-at-point)))
-			    (and (memq (org-element-type e)
-				       '(example-block src-block))
-				 (or org-src-preserve-indentation
-				     (org-element-property :preserve-indent e))
-				 (goto-char (org-element-property :end e))
-				 (progn (skip-chars-backward " \r\t\n")
-					(beginning-of-line)
-					t))))
-		     (forward-line))))))))
-       ;; Shift lines but footnote definitions, inlinetasks boundaries
-       ;; by DIFF.  Also skip contents of source or example blocks
-       ;; when indentation is meant to be preserved.
-       (while (not (eobp))
-	 (cond
-	  ((and (looking-at-p org-footnote-definition-re)
-		(let ((e (org-element-at-point)))
-		  (and (eq (org-element-type e) 'footnote-definition)
-		       (goto-char (org-element-property :end e))))))
-	  ((looking-at-p org-outline-regexp) (forward-line))
-	  ((looking-at-p "[ \t]*$") (forward-line))
-	  (t
-	   (indent-line-to (+ (org-get-indentation) diff))
-	   (beginning-of-line)
-	   (or (and (looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
-		    (let ((e (org-element-at-point)))
-		      (and (memq (org-element-type e)
-				 '(example-block src-block))
-			   (or org-src-preserve-indentation
-			       (org-element-property :preserve-indent e))
-			   (goto-char (org-element-property :end e))
-			   (progn (skip-chars-backward " \r\t\n")
-				  (beginning-of-line)
-				  t))))
-	       (forward-line)))))))))
-
-(defun org-convert-to-odd-levels ()
-  "Convert an Org file with all levels allowed to one with odd levels.
-This will leave level 1 alone, convert level 2 to level 3, level 3 to
-level 5 etc."
-  (interactive)
-  (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
-    (let ((outline-level 'org-outline-level)
-	  (org-odd-levels-only nil) n)
-      (save-excursion
-	(goto-char (point-min))
-	(while (re-search-forward "^\\*\\*+ " nil t)
-	  (setq n (- (length (match-string 0)) 2))
-	  (while (>= (setq n (1- n)) 0)
-	    (org-demote))
-	  (end-of-line 1))))))
-
-(defun org-convert-to-oddeven-levels ()
-  "Convert an Org file with only odd levels to one with odd/even levels.
-This promotes level 3 to level 2, level 5 to level 3 etc.  If the
-file contains a section with an even level, conversion would
-destroy the structure of the file.  An error is signaled in this
-case."
-  (interactive)
-  (goto-char (point-min))
-  ;; First check if there are no even levels
-  (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
-    (org-show-set-visibility 'canonical)
-    (error "Not all levels are odd in this file.  Conversion not possible"))
-  (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
-    (let ((outline-regexp org-outline-regexp)
-	  (outline-level 'org-outline-level)
-	  (org-odd-levels-only nil) n)
-      (save-excursion
-	(goto-char (point-min))
-	(while (re-search-forward "^\\*\\*+ " nil t)
-	  (setq n (/ (1- (length (match-string 0))) 2))
-	  (while (>= (setq n (1- n)) 0)
-	    (org-promote))
-	  (end-of-line 1))))))
-
-(defun org-tr-level (n)
-  "Make N odd if required."
-  (if org-odd-levels-only (1+ (/ n 2)) n))
-
-;;; Vertical tree motion, cutting and pasting of subtrees
-
-(defun org-move-subtree-up (&optional arg)
-  "Move the current subtree up past ARG headlines of the same level."
-  (interactive "p")
-  (org-move-subtree-down (- (prefix-numeric-value arg))))
-
-(defun org-move-subtree-down (&optional arg)
-  "Move the current subtree down past ARG headlines of the same level."
-  (interactive "p")
-  (setq arg (prefix-numeric-value arg))
-  (let ((movfunc (if (> arg 0) 'org-get-next-sibling
-		   'org-get-last-sibling))
-	(ins-point (make-marker))
-	(cnt (abs arg))
-	(col (current-column))
-	beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
-    ;; Select the tree
-    (org-back-to-heading)
-    (setq beg0 (point))
-    (save-excursion
-      (setq ne-beg (org-back-over-empty-lines))
-      (setq beg (point)))
-    (save-match-data
-      (save-excursion (outline-end-of-heading)
-		      (setq folded (org-invisible-p)))
-      (progn (org-end-of-subtree nil t)
-	     (unless (eobp) (backward-char))))
-    (outline-next-heading)
-    (setq ne-end (org-back-over-empty-lines))
-    (setq end (point))
-    (goto-char beg0)
-    (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
-      ;; include less whitespace
-      (save-excursion
-	(goto-char beg)
-	(forward-line (- ne-beg ne-end))
-	(setq beg (point))))
-    ;; Find insertion point, with error handling
-    (while (> cnt 0)
-      (or (and (funcall movfunc) (looking-at org-outline-regexp))
-	  (progn (goto-char beg0)
-		 (user-error "Cannot move past superior level or buffer limit")))
-      (setq cnt (1- cnt)))
-    (when (> arg 0)
-      ;; Moving forward - still need to move over subtree
-      (org-end-of-subtree t t)
-      (save-excursion
-	(org-back-over-empty-lines)
-	(or (bolp) (newline))))
-    (setq ne-ins (org-back-over-empty-lines))
-    (move-marker ins-point (point))
-    (setq txt (buffer-substring beg end))
-    (org-save-markers-in-region beg end)
-    (delete-region beg end)
-    (org-remove-empty-overlays-at beg)
-    (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
-    (or (bobp) (outline-flag-region (1- (point)) (point) nil))
-    (and (not (bolp)) (looking-at "\n") (forward-char 1))
-    (let ((bbb (point)))
-      (insert-before-markers txt)
-      (org-reinstall-markers-in-region bbb)
-      (move-marker ins-point bbb))
-    (or (bolp) (insert "\n"))
-    (setq ins-end (point))
-    (goto-char ins-point)
-    (org-skip-whitespace)
-    (when (and (< arg 0)
-	       (org-first-sibling-p)
-	       (> ne-ins ne-beg))
-      ;; Move whitespace back to beginning
-      (save-excursion
-	(goto-char ins-end)
-	(let ((kill-whole-line t))
-	  (kill-line (- ne-ins ne-beg)) (point)))
-      (insert (make-string (- ne-ins ne-beg) ?\n)))
-    (move-marker ins-point nil)
-    (if folded
-	(outline-hide-subtree)
-      (org-show-entry)
-      (org-show-children)
-      (org-cycle-hide-drawers 'children))
-    (org-clean-visibility-after-subtree-move)
-    ;; move back to the initial column we were at
-    (move-to-column col)))
-
-(defvar org-subtree-clip ""
-  "Clipboard for cut and paste of subtrees.
-This is actually only a copy of the kill, because we use the normal kill
-ring.  We need it to check if the kill was created by `org-copy-subtree'.")
-
-(defvar org-subtree-clip-folded nil
-  "Was the last copied subtree folded?
-This is used to fold the tree back after pasting.")
-
-(defun org-cut-subtree (&optional n)
-  "Cut the current subtree into the clipboard.
-With prefix arg N, cut this many sequential subtrees.
-This is a short-hand for marking the subtree and then cutting it."
-  (interactive "p")
-  (org-copy-subtree n 'cut))
-
-(defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
-  "Copy the current subtree into the clipboard.
-With prefix arg N, copy this many sequential subtrees.
-This is a short-hand for marking the subtree and then copying it.
-If CUT is non-nil, actually cut the subtree.
-If FORCE-STORE-MARKERS is non-nil, store the relative locations
-of some markers in the region, even if CUT is non-nil.  This is
-useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
-  (interactive "p")
-  (let (beg end folded (beg0 (point)))
-    (if (called-interactively-p 'any)
-	(org-back-to-heading nil) ; take what looks like a subtree
-      (org-back-to-heading t)) ; take what is really there
-    (setq beg (point))
-    (skip-chars-forward " \t\r\n")
-    (save-match-data
-      (if nosubtrees
-	  (outline-next-heading)
-	(save-excursion (outline-end-of-heading)
-			(setq folded (org-invisible-p)))
-	(ignore-errors (org-forward-heading-same-level (1- n) t))
-	(org-end-of-subtree t t)))
-    ;; Include the end of an inlinetask
-    (when (and (featurep 'org-inlinetask)
-	       (looking-at-p (concat (org-inlinetask-outline-regexp)
-				     "END[ \t]*$")))
-      (end-of-line))
-    (setq end (point))
-    (goto-char beg0)
-    (when (> end beg)
-      (setq org-subtree-clip-folded folded)
-      (when (or cut force-store-markers)
-	(org-save-markers-in-region beg end))
-      (if cut (kill-region beg end) (copy-region-as-kill beg end))
-      (setq org-subtree-clip (current-kill 0))
-      (message "%s: Subtree(s) with %d characters"
-	       (if cut "Cut" "Copied")
-	       (length org-subtree-clip)))))
-
-(defun org-paste-subtree (&optional level tree for-yank remove)
-  "Paste the clipboard as a subtree, with modification of headline level.
-The entire subtree is promoted or demoted in order to match a new headline
-level.
-
-If the cursor is at the beginning of a headline, the same level as
-that headline is used to paste the tree.
-
-If not, the new level is derived from the *visible* headings
-before and after the insertion point, and taken to be the inferior headline
-level of the two.  So if the previous visible heading is level 3 and the
-next is level 4 (or vice versa), level 4 will be used for insertion.
-This makes sure that the subtree remains an independent subtree and does
-not swallow low level entries.
-
-You can also force a different level, either by using a numeric prefix
-argument, or by inserting the heading marker by hand.  For example, if the
-cursor is after \"*****\", then the tree will be shifted to level 5.
-
-If optional TREE is given, use this text instead of the kill ring.
-
-When FOR-YANK is set, this is called by `org-yank'.  In this case, do not
-move back over whitespace before inserting, and move point to the end of
-the inserted text when done.
-
-When REMOVE is non-nil, remove the subtree from the clipboard."
-  (interactive "P")
-  (setq tree (or tree (and kill-ring (current-kill 0))))
-  (unless (org-kill-is-subtree-p tree)
-    (user-error "%s"
-		(substitute-command-keys
-		 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
-  (org-with-limited-levels
-   (let* ((visp (not (org-invisible-p)))
-	  (txt tree)
-	  (old-level (if (string-match org-outline-regexp-bol txt)
-			 (- (match-end 0) (match-beginning 0) 1)
-		       -1))
-	  (force-level (cond (level (prefix-numeric-value level))
-			     ((and (looking-at "[ \t]*$")
-				   (string-match
-				    "^\\*+$" (buffer-substring
-					      (point-at-bol) (point))))
-			      (- (match-end 0) (match-beginning 0)))
-			     ((and (bolp)
-				   (looking-at org-outline-regexp))
-			      (- (match-end 0) (point) 1))))
-	  (previous-level (save-excursion
-			    (condition-case nil
-				(progn
-				  (outline-previous-visible-heading 1)
-				  (if (looking-at org-outline-regexp-bol)
-				      (- (match-end 0) (match-beginning 0) 1)
-				    1))
-			      (error 1))))
-	  (next-level (save-excursion
-			(condition-case nil
-			    (progn
-			      (or (looking-at org-outline-regexp)
-				  (outline-next-visible-heading 1))
-			      (if (looking-at org-outline-regexp-bol)
-				  (- (match-end 0) (match-beginning 0) 1)
-				1))
-			  (error 1))))
-	  (new-level (or force-level (max previous-level next-level)))
-	  (shift (if (or (= old-level -1)
-			 (= new-level -1)
-			 (= old-level new-level))
-		     0
-		   (- new-level old-level)))
-	  (delta (if (> shift 0) -1 1))
-	  (func (if (> shift 0) 'org-demote 'org-promote))
-	  (org-odd-levels-only nil)
-	  beg end newend)
-     ;; Remove the forced level indicator
-     (when force-level
-       (delete-region (point-at-bol) (point)))
-     ;; Paste
-     (beginning-of-line (if (bolp) 1 2))
-     (setq beg (point))
-     (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
-     (insert-before-markers txt)
-     (unless (string-suffix-p "\n" txt) (insert "\n"))
-     (setq newend (point))
-     (org-reinstall-markers-in-region beg)
-     (setq end (point))
-     (goto-char beg)
-     (skip-chars-forward " \t\n\r")
-     (setq beg (point))
-     (when (and (org-invisible-p) visp)
-       (save-excursion (outline-show-heading)))
-     ;; Shift if necessary
-     (unless (= shift 0)
-       (save-restriction
-	 (narrow-to-region beg end)
-	 (while (not (= shift 0))
-	   (org-map-region func (point-min) (point-max))
-	   (setq shift (+ delta shift)))
-	 (goto-char (point-min))
-	 (setq newend (point-max))))
-     (when (or (called-interactively-p 'interactive) for-yank)
-       (message "Clipboard pasted as level %d subtree" new-level))
-     (when (and (not for-yank) ; in this case, org-yank will decide about folding
-		kill-ring
-		(eq org-subtree-clip (current-kill 0))
-		org-subtree-clip-folded)
-       ;; The tree was folded before it was killed/copied
-       (outline-hide-subtree))
-     (and for-yank (goto-char newend))
-     (and remove (setq kill-ring (cdr kill-ring))))))
-
-(defun org-kill-is-subtree-p (&optional txt)
-  "Check if the current kill is an outline subtree, or a set of trees.
-Returns nil if kill does not start with a headline, or if the first
-headline level is not the largest headline level in the tree.
-So this will actually accept several entries of equal levels as well,
-which is OK for `org-paste-subtree'.
-If optional TXT is given, check this string instead of the current kill."
-  (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
-	 (re (org-get-limited-outline-regexp))
-	 (^re (concat "^" re))
-	 (start-level (and kill
-			   (string-match
-			    (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
-			    kill)
-			   (- (match-end 2) (match-beginning 2) 1)))
-	 (start (1+ (or (match-beginning 2) -1))))
-    (if (not start-level)
-	(progn
-	  nil)  ;; does not even start with a heading
-      (catch 'exit
-	(while (setq start (string-match ^re kill (1+ start)))
-	  (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
-	    (throw 'exit nil)))
-	t))))
-
-(defvar org-markers-to-move nil
-  "Markers that should be moved with a cut-and-paste operation.
-Those markers are stored together with their positions relative to
-the start of the region.")
-
-(defun org-save-markers-in-region (beg end)
-  "Check markers in region.
-If these markers are between BEG and END, record their position relative
-to BEG, so that after moving the block of text, we can put the markers back
-into place.
-This function gets called just before an entry or tree gets cut from the
-buffer.  After re-insertion, `org-reinstall-markers-in-region' must be
-called immediately, to move the markers with the entries."
-  (setq org-markers-to-move nil)
-  (when (featurep 'org-clock)
-    (org-clock-save-markers-for-cut-and-paste beg end))
-  (when (featurep 'org-agenda)
-    (org-agenda-save-markers-for-cut-and-paste beg end)))
-
-(defun org-check-and-save-marker (marker beg end)
-  "Check if MARKER is between BEG and END.
-If yes, remember the marker and the distance to BEG."
-  (when (and (marker-buffer marker)
-	     (equal (marker-buffer marker) (current-buffer))
-	     (>= marker beg) (< marker end))
-    (push (cons marker (- marker beg)) org-markers-to-move)))
-
-(defun org-reinstall-markers-in-region (beg)
-  "Move all remembered markers to their position relative to BEG."
-  (dolist (x org-markers-to-move)
-    (move-marker (car x) (+ beg (cdr x))))
-  (setq org-markers-to-move nil))
-
-(defun org-narrow-to-subtree ()
-  "Narrow buffer to the current subtree."
-  (interactive)
-  (save-excursion
-    (save-match-data
-      (org-with-limited-levels
-       (narrow-to-region
-	(progn (org-back-to-heading t) (point))
-	(progn (org-end-of-subtree t t)
-	       (when (and (org-at-heading-p) (not (eobp))) (backward-char 1))
-	       (point)))))))
-
-(defun org-narrow-to-block ()
-  "Narrow buffer to the current block."
-  (interactive)
-  (let* ((case-fold-search t)
-	 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
-					"^[ \t]*#\\+end_.*")))
-    (if blockp
-	(narrow-to-region (car blockp) (cdr blockp))
-      (user-error "Not in a block"))))
-
-(defun org-clone-subtree-with-time-shift (n &optional shift)
-  "Clone the task (subtree) at point N times.
-The clones will be inserted as siblings.
-
-In interactive use, the user will be prompted for the number of
-clones to be produced.  If the entry has a timestamp, the user
-will also be prompted for a time shift, which may be a repeater
-as used in time stamps, for example `+3d'.  To disable this,
-you can call the function with a universal prefix argument.
-
-When a valid repeater is given and the entry contains any time
-stamps, the clones will become a sequence in time, with time
-stamps in the subtree shifted for each clone produced.  If SHIFT
-is nil or the empty string, time stamps will be left alone.  The
-ID property of the original subtree is removed.
-
-In each clone, all the CLOCK entries will be removed.  This
-prevents Org from considering that the clocked times overlap.
-
-If the original subtree did contain time stamps with a repeater,
-the following will happen:
-- the repeater will be removed in each clone
-- an additional clone will be produced, with the current, unshifted
-  date(s) in the entry.
-- the original entry will be placed *after* all the clones, with
-  repeater intact.
-- the start days in the repeater in the original entry will be shifted
-  to past the last clone.
-In this way you can spell out a number of instances of a repeating task,
-and still retain the repeater to cover future instances of the task.
-
-As described above, N+1 clones are produced when the original
-subtree has a repeater.  Setting N to 0, then, can be used to
-remove the repeater from a subtree and create a shifted clone
-with the original repeater."
-  (interactive "nNumber of clones to produce: ")
-  (unless (wholenump n) (user-error "Invalid number of replications %s" n))
-  (when (org-before-first-heading-p) (user-error "No subtree to clone"))
-  (let* ((beg (save-excursion (org-back-to-heading t) (point)))
-	 (end-of-tree (save-excursion (org-end-of-subtree t t) (point)))
-	 (shift
-	  (or shift
-	      (if (and (not (equal current-prefix-arg '(4)))
-		       (save-excursion
-			 (goto-char beg)
-			 (re-search-forward org-ts-regexp-both end-of-tree t)))
-		  (read-from-minibuffer
-		   "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
-		"")))			;No time shift
-	 (doshift
-	  (and (org-string-nw-p shift)
-	       (or (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([dwmy]\\)[ \t]*\\'"
-				 shift)
-		   (user-error "Invalid shift specification %s" shift)))))
-    (goto-char end-of-tree)
-    (unless (bolp) (insert "\n"))
-    (let* ((end (point))
-	   (template (buffer-substring beg end))
-	   (shift-n (and doshift (string-to-number (match-string 1 shift))))
-	   (shift-what (pcase (and doshift (match-string 2 shift))
-			 (`nil nil)
-			 ("d" 'day)
-			 ("w" (setq shift-n (* 7 shift-n)) 'day)
-			 ("m" 'month)
-			 ("y" 'year)
-			 (_ (error "Unsupported time unit"))))
-	   (nmin 1)
-	   (nmax n)
-	   (n-no-remove -1)
-	   (idprop (org-entry-get nil "ID")))
-      (when (and doshift
-		 (string-match-p "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>"
-				 template))
-	(delete-region beg end)
-	(setq end beg)
-	(setq nmin 0)
-	(setq nmax (1+ nmax))
-	(setq n-no-remove nmax))
-      (goto-char end)
-      (cl-loop for n from nmin to nmax do
-	       (insert
-		;; Prepare clone.
-		(with-temp-buffer
-		  (insert template)
-		  (org-mode)
-		  (goto-char (point-min))
-		  (org-show-subtree)
-		  (and idprop (if org-clone-delete-id
-				  (org-entry-delete nil "ID")
-				(org-id-get-create t)))
-		  (unless (= n 0)
-		    (while (re-search-forward org-clock-line-re nil t)
-		      (delete-region (line-beginning-position)
-				     (line-beginning-position 2)))
-		    (goto-char (point-min))
-		    (while (re-search-forward org-drawer-regexp nil t)
-		      (org-remove-empty-drawer-at (point))))
-		  (goto-char (point-min))
-		  (when doshift
-		    (while (re-search-forward org-ts-regexp-both nil t)
-		      (org-timestamp-change (* n shift-n) shift-what))
-		    (unless (= n n-no-remove)
-		      (goto-char (point-min))
-		      (while (re-search-forward org-ts-regexp nil t)
-			(save-excursion
-			  (goto-char (match-beginning 0))
-			  (when (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
-			    (delete-region (match-beginning 1) (match-end 1)))))))
-		  (buffer-string)))))
-    (goto-char beg)))
-
-;;; Outline Sorting
-
-(defun org-sort (&optional with-case)
-  "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
-Optional argument WITH-CASE means sort case-sensitively."
-  (interactive "P")
-  (org-call-with-arg
-   (cond ((org-at-table-p) #'org-table-sort-lines)
-	 ((org-at-item-p) #'org-sort-list)
-	 (t #'org-sort-entries))
-   with-case))
-
-(defun org-sort-remove-invisible (s)
-  "Remove invisible part of links and emphasis markers from string S."
-  (remove-text-properties 0 (length s) org-rm-props s)
-  (replace-regexp-in-string
-   org-verbatim-re (lambda (m) (format "%s " (match-string 4 m)))
-   (replace-regexp-in-string
-    org-emph-re (lambda (m) (format " %s " (match-string 4 m)))
-    (org-link-display-format s)
-    t t) t t))
-
-(defvar org-priority-regexp) ; defined later in the file
-
-(defvar org-after-sorting-entries-or-items-hook nil
-  "Hook that is run after a bunch of entries or items have been sorted.
-When children are sorted, the cursor is in the parent line when this
-hook gets called.  When a region or a plain list is sorted, the cursor
-will be in the first entry of the sorted region/list.")
-
-(defun org-sort-entries
-    (&optional with-case sorting-type getkey-func compare-func property
-	       interactive?)
-  "Sort entries on a certain level of an outline tree.
-If there is an active region, the entries in the region are sorted.
-Else, if the cursor is before the first entry, sort the top-level items.
-Else, the children of the entry at point are sorted.
-
-Sorting can be alphabetically, numerically, by date/time as given by
-a time stamp, by a property, by priority order, or by a custom function.
-
-The command prompts for the sorting type unless it has been given to the
-function through the SORTING-TYPE argument, which needs to be a character,
-\(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K).  Here is
-the precise meaning of each character:
-
-a   Alphabetically, ignoring the TODO keyword and the priority, if any.
-c   By creation time, which is assumed to be the first inactive time stamp
-    at the beginning of a line.
-d   By deadline date/time.
-k   By clocking time.
-n   Numerically, by converting the beginning of the entry/item to a number.
-o   By order of TODO keywords.
-p   By priority according to the cookie.
-r   By the value of a property.
-s   By scheduled date/time.
-t   By date/time, either the first active time stamp in the entry, or, if
-    none exist, by the first inactive one.
-
-Capital letters will reverse the sort order.
-
-If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
-called with point at the beginning of the record.  It must return a
-value that is compatible with COMPARE-FUNC, the function used to
-compare entries.
-
-Comparing entries ignores case by default.  However, with an optional argument
-WITH-CASE, the sorting considers case as well.
-
-Sorting is done against the visible part of the headlines, it ignores hidden
-links.
-
-When sorting is done, call `org-after-sorting-entries-or-items-hook'.
-
-A non-nil value for INTERACTIVE? is used to signal that this
-function is being called interactively."
-  (interactive (list current-prefix-arg nil nil nil nil t))
-  (let ((case-func (if with-case 'identity 'downcase))
-        start beg end stars re re2
-        txt what tmp)
-    ;; Find beginning and end of region to sort
-    (cond
-     ((org-region-active-p)
-      ;; we will sort the region
-      (setq end (region-end)
-            what "region")
-      (goto-char (region-beginning))
-      (unless (org-at-heading-p) (outline-next-heading))
-      (setq start (point)))
-     ((or (org-at-heading-p)
-          (ignore-errors (progn (org-back-to-heading) t)))
-      ;; we will sort the children of the current headline
-      (org-back-to-heading)
-      (setq start (point)
-	    end (progn (org-end-of-subtree t t)
-		       (or (bolp) (insert "\n"))
-		       (when (>= (org-back-over-empty-lines) 1)
-			 (forward-line 1))
-		       (point))
-	    what "children")
-      (goto-char start)
-      (outline-show-subtree)
-      (outline-next-heading))
-     (t
-      ;; we will sort the top-level entries in this file
-      (goto-char (point-min))
-      (or (org-at-heading-p) (outline-next-heading))
-      (setq start (point))
-      (goto-char (point-max))
-      (beginning-of-line 1)
-      (when (looking-at ".*?\\S-")
-	;; File ends in a non-white line
-	(end-of-line 1)
-	(insert "\n"))
-      (setq end (point-max))
-      (setq what "top-level")
-      (goto-char start)
-      (outline-show-all)))
-
-    (setq beg (point))
-    (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
-
-    (looking-at "\\(\\*+\\)")
-    (setq stars (match-string 1)
-	  re (concat "^" (regexp-quote stars) " +")
-	  re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
-	  txt (buffer-substring beg end))
-    (unless (equal (substring txt -1) "\n") (setq txt (concat txt "\n")))
-    (when (and (not (equal stars "*")) (string-match re2 txt))
-      (user-error "Region to sort contains a level above the first entry"))
-
-    (unless sorting-type
-      (message
-       "Sort %s: [a]lpha  [n]umeric  [p]riority  p[r]operty  todo[o]rder  [f]unc
-               [t]ime [s]cheduled  [d]eadline  [c]reated  cloc[k]ing
-               A/N/P/R/O/F/T/S/D/C/K means reversed:"
-       what)
-      (setq sorting-type (read-char-exclusive)))
-
-    (unless getkey-func
-      (and (= (downcase sorting-type) ?f)
-	   (setq getkey-func
-		 (or (and interactive?
-			  (org-read-function
-			   "Function for extracting keys: "))
-		     (error "Missing key extractor")))))
-
-    (and (= (downcase sorting-type) ?r)
-	 (not property)
-	 (setq property
-	       (completing-read "Property: "
-				(mapcar #'list (org-buffer-property-keys t))
-				nil t)))
-
-    (when (member sorting-type '(?k ?K)) (org-clock-sum))
-    (message "Sorting entries...")
-
-    (save-restriction
-      (narrow-to-region start end)
-      (let ((restore-clock?
-	     ;; The clock marker is lost when using `sort-subr'; mark
-	     ;; the clock with temporary `:org-clock-marker-backup'
-	     ;; text property.
-	     (when (and (eq (org-clock-is-active) (current-buffer))
-			(<= start (marker-position org-clock-marker))
-			(>= end (marker-position org-clock-marker)))
-	       (org-with-silent-modifications
-		(put-text-property (1- org-clock-marker) org-clock-marker
-				   :org-clock-marker-backup t))
-	       t))
-	    (dcst (downcase sorting-type))
-	    (case-fold-search nil)
-	    (now (current-time)))
-        (sort-subr
-         (/= dcst sorting-type)
-         ;; This function moves to the beginning character of the "record" to
-         ;; be sorted.
-	 (lambda nil
-	   (if (re-search-forward re nil t)
-	       (goto-char (match-beginning 0))
-	     (goto-char (point-max))))
-         ;; This function moves to the last character of the "record" being
-         ;; sorted.
-	 (lambda nil
-	   (save-match-data
-	     (condition-case nil
-		 (outline-forward-same-level 1)
-	       (error
-		(goto-char (point-max))))))
-         ;; This function returns the value that gets sorted against.
-	 (lambda nil
-	   (cond
-	    ((= dcst ?n)
-	     (if (looking-at org-complex-heading-regexp)
-		 (string-to-number (org-sort-remove-invisible (match-string 4)))
-	       nil))
-	    ((= dcst ?a)
-	     (if (looking-at org-complex-heading-regexp)
-		 (funcall case-func (org-sort-remove-invisible (match-string 4)))
-	       nil))
-	    ((= dcst ?k)
-	     (or (get-text-property (point) :org-clock-minutes) 0))
-	    ((= dcst ?t)
-	     (let ((end (save-excursion (outline-next-heading) (point))))
-	       (if (or (re-search-forward org-ts-regexp end t)
-		       (re-search-forward org-ts-regexp-both end t))
-		   (org-time-string-to-seconds (match-string 0))
-		 (float-time now))))
-	    ((= dcst ?c)
-	     (let ((end (save-excursion (outline-next-heading) (point))))
-	       (if (re-search-forward
-		    (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
-		    end t)
-		   (org-time-string-to-seconds (match-string 0))
-		 (float-time now))))
-	    ((= dcst ?s)
-	     (let ((end (save-excursion (outline-next-heading) (point))))
-	       (if (re-search-forward org-scheduled-time-regexp end t)
-		   (org-time-string-to-seconds (match-string 1))
-		 (float-time now))))
-	    ((= dcst ?d)
-	     (let ((end (save-excursion (outline-next-heading) (point))))
-	       (if (re-search-forward org-deadline-time-regexp end t)
-		   (org-time-string-to-seconds (match-string 1))
-		 (float-time now))))
-	    ((= dcst ?p)
-	     (if (re-search-forward org-priority-regexp (point-at-eol) t)
-		 (string-to-char (match-string 2))
-	       org-default-priority))
-	    ((= dcst ?r)
-	     (or (org-entry-get nil property) ""))
-	    ((= dcst ?o)
-	     (when (looking-at org-complex-heading-regexp)
-	       (let* ((m (match-string 2))
-		      (s (if (member m org-done-keywords) '- '+)))
-		 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
-	    ((= dcst ?f)
-	     (if getkey-func
-		 (progn
-		   (setq tmp (funcall getkey-func))
-		   (when (stringp tmp) (setq tmp (funcall case-func tmp)))
-		   tmp)
-	       (error "Invalid key function `%s'" getkey-func)))
-	    (t (error "Invalid sorting type `%c'" sorting-type))))
-         nil
-         (cond
-          ((= dcst ?a) 'string<)
-          ((= dcst ?f)
-	   (or compare-func
-	       (and interactive?
-		    (org-read-function
-		     (concat "Function for comparing keys "
-			     "(empty for default `sort-subr' predicate): ")
-		     'allow-empty))))
-          ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))
-	(when restore-clock?
-	  (move-marker org-clock-marker
-		       (1+ (next-single-property-change
-			    start :org-clock-marker-backup)))
-	  (remove-text-properties (1- org-clock-marker) org-clock-marker
-				  '(:org-clock-marker-backup t)))))
-    (run-hooks 'org-after-sorting-entries-or-items-hook)
-    (message "Sorting entries...done")))
-
-;;; The orgstruct minor mode
-
-;; Define a minor mode which can be used in other modes in order to
-;; integrate the Org mode structure editing commands.
-
-;; This is really a hack, because the Org mode structure commands use
-;; keys which normally belong to the major mode.  Here is how it
-;; works: The minor mode defines all the keys necessary to operate the
-;; structure commands, but wraps the commands into a function which
-;; tests if the cursor is currently at a headline or a plain list
-;; item.  If that is the case, the structure command is used,
-;; temporarily setting many Org mode variables like regular
-;; expressions for filling etc.  However, when any of those keys is
-;; used at a different location, function uses `key-binding' to look
-;; up if the key has an associated command in another currently active
-;; keymap (minor modes, major mode, global), and executes that
-;; command.  There might be problems if any of the keys is otherwise
-;; used as a prefix key.
-
-(defcustom orgstruct-heading-prefix-regexp ""
-  "Regexp that matches the custom prefix of Org headlines in
-orgstruct(++)-mode."
-  :group 'org
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'regexp)
-;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
-
-(defcustom orgstruct-setup-hook nil
-  "Hook run after orgstruct-mode-map is filled."
-  :group 'org
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'hook)
-
-(defvar orgstruct-initialized nil)
-
-(defvar org-local-vars nil
-  "List of local variables, for use by `orgstruct-mode'.")
-
-;;;###autoload
-(define-minor-mode orgstruct-mode
-  "Toggle the minor mode `orgstruct-mode'.
-This mode is for using Org mode structure commands in other
-modes.  The following keys behave as if Org mode were active, if
-the cursor is on a headline, or on a plain list item (both as
-defined by Org mode)."
-  nil " OrgStruct" (make-sparse-keymap)
-  (funcall (if orgstruct-mode
-	       'add-to-invisibility-spec
-	     'remove-from-invisibility-spec)
-	   '(outline . t))
-  (when orgstruct-mode
-    (org-load-modules-maybe)
-    (unless orgstruct-initialized
-      (orgstruct-setup)
-      (setq orgstruct-initialized t))))
-
-;;;###autoload
-(defun turn-on-orgstruct ()
-  "Unconditionally turn on `orgstruct-mode'."
-  (orgstruct-mode 1))
-
-(defvar-local orgstruct-is-++ nil
-  "Is `orgstruct-mode' in ++ version in the current-buffer?")
-(defvar-local org-fb-vars nil)
-(defun orgstruct++-mode (&optional arg)
-  "Toggle `orgstruct-mode', the enhanced version of it.
-In addition to setting orgstruct-mode, this also exports all
-indentation and autofilling variables from Org mode into the
-buffer.  It will also recognize item context in multiline items."
-  (interactive "P")
-  (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
-  (if (< arg 1)
-      (progn (orgstruct-mode -1)
-	     (dolist (v org-fb-vars)
-	       (set (make-local-variable (car v))
-		    (if (eq (car-safe (cadr v)) 'quote)
-			(cl-cadadr v)
-		      (nth 1 v)))))
-    (orgstruct-mode 1)
-    (setq org-fb-vars nil)
-    (unless org-local-vars
-      (setq org-local-vars (org-get-local-variables)))
-    (let (var val)
-      (dolist (x org-local-vars)
-	(when (string-match
-	       "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\
-\\|fill-prefix\\|indent-\\)"
-	       (symbol-name (car x)))
-	  (setq var (car x) val (nth 1 x))
-	  (push (list var `(quote ,(eval var))) org-fb-vars)
-	  (set (make-local-variable var)
-	       (if (eq (car-safe val) 'quote) (nth 1 val) val))))
-      (setq-local orgstruct-is-++ t))))
-
-;;;###autoload
-(defun turn-on-orgstruct++ ()
-  "Unconditionally turn on `orgstruct++-mode'."
-  (orgstruct++-mode 1))
-
-(defun orgstruct-error ()
-  "Error when there is no default binding for a structure key."
-  (interactive)
-  (funcall (if (fboundp 'user-error)
-	       'user-error
-	     'error)
-	   "This key has no function outside structure elements"))
-
-(defun orgstruct-setup ()
-  "Setup orgstruct keymap."
-  (dolist (cell '((org-demote . t)
-		  (org-metaleft . t)
-		  (org-metaright . t)
-		  (org-promote . t)
-		  (org-shiftmetaleft . t)
-		  (org-shiftmetaright . t)
-		  org-backward-element
-		  org-backward-heading-same-level
-		  org-ctrl-c-ret
-		  org-ctrl-c-minus
-		  org-ctrl-c-star
-		  org-cycle
-		  org-force-cycle-archived
-		  org-forward-heading-same-level
-		  org-insert-heading
-		  org-insert-heading-respect-content
-		  org-kill-note-or-show-branches
-		  org-mark-subtree
-		  org-meta-return
-		  org-metadown
-		  org-metaup
-		  org-narrow-to-subtree
-		  org-promote-subtree
-		  org-reveal
-		  org-shiftdown
-		  org-shiftleft
-		  org-shiftmetadown
-		  org-shiftmetaup
-		  org-shiftright
-		  org-shifttab
-		  org-shifttab
-		  org-shiftup
-		  org-show-children
-		  org-show-subtree
-		  org-sort
-		  org-up-element
-		  outline-demote
-		  outline-next-visible-heading
-		  outline-previous-visible-heading
-		  outline-promote
-		  outline-up-heading))
-    (let ((f (or (car-safe cell) cell))
-	  (disable-when-heading-prefix (cdr-safe cell)))
-      (when (fboundp f)
-	(let ((new-bindings))
-	  (dolist (binding (nconc (where-is-internal f org-mode-map)
-				  (where-is-internal f outline-mode-map)))
-	    (push binding new-bindings)
-	    ;; TODO use local-function-key-map
-	    (dolist (rep '(("<tab>" . "TAB")
-			   ("<return>" . "RET")
-			   ("<escape>" . "ESC")
-			   ("<delete>" . "DEL")))
-	      (setq binding (read-kbd-macro
-			     (let ((case-fold-search))
-			       (replace-regexp-in-string
-				(regexp-quote (cdr rep))
-				(car rep)
-				(key-description binding)))))
-	      (cl-pushnew binding new-bindings :test 'equal)))
-	  (dolist (binding new-bindings)
-	    (let ((key (lookup-key orgstruct-mode-map binding)))
-	      (when (or (not key) (numberp key))
-		(ignore-errors
-		  (org-defkey orgstruct-mode-map
-			      binding
-			      (orgstruct-make-binding
-			       f binding disable-when-heading-prefix))))))))))
-  (run-hooks 'orgstruct-setup-hook))
-
-(defun orgstruct-make-binding (fun key disable-when-heading-prefix)
-  "Create a function for binding in the structure minor mode.
-FUN is the command to call inside a table.  KEY is the key that
-should be checked in for a command to execute outside of tables.
-Non-nil `disable-when-heading-prefix' means to disable the command
-if `orgstruct-heading-prefix-regexp' is not empty."
-  (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
-    (let ((nname name)
-	  (i 0))
-      (while (fboundp (intern nname))
-	(setq nname (format "%s-%d" name (setq i (1+ i)))))
-      (setq name (intern nname)))
-    (eval
-     (let ((bindings '((org-heading-regexp
-			(concat "^"
-				orgstruct-heading-prefix-regexp
-				"\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[		]*$"))
-		       (org-outline-regexp
-			(concat orgstruct-heading-prefix-regexp "\\*+ "))
-		       (org-outline-regexp-bol
-			(concat "^" org-outline-regexp))
-		       (outline-regexp org-outline-regexp)
-		       (outline-heading-end-regexp "\n")
-		       (outline-level 'org-outline-level)
-		       (outline-heading-alist))))
-       `(defun ,name (arg)
-	  ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
-		   "Outside of structure, run the binding of `"
-		   (key-description key) "'."
-		   (when disable-when-heading-prefix
-		     (concat
-		      "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
-		      "back to the default binding due to limitations of Org's implementation of\n"
-		      "`" (symbol-name fun) "'.")))
-	  (interactive "p")
-	  (let* ((disable
-		  ,(and disable-when-heading-prefix
-			'(not (string= orgstruct-heading-prefix-regexp ""))))
-		 (fallback
-		  (or disable
-		      (not
-		       (let* ,bindings
-			 (org-context-p 'headline 'item
-					,(when (memq fun
-						     '(org-insert-heading
-						       org-insert-heading-respect-content
-						       org-meta-return))
-					   '(when orgstruct-is-++
-					      'item-body))))))))
-	    (if fallback
-		(let* ((orgstruct-mode)
-		       (binding
-			(let ((key ,key))
-			  (catch 'exit
-			    (dolist
-				(rep
-				 '(nil
-				   ("<\\([^>]*\\)tab>" . "\\1TAB")
-				   ("<\\([^>]*\\)return>" . "\\1RET")
-				   ("<\\([^>]*\\)escape>" . "\\1ESC")
-				   ("<\\([^>]*\\)delete>" . "\\1DEL"))
-				 nil)
-			      (when rep
-				(setq key (read-kbd-macro
-					   (let ((case-fold-search))
-					     (replace-regexp-in-string
-					      (car rep)
-					      (cdr rep)
-					      (key-description key))))))
-			      (when (key-binding key)
-				(throw 'exit (key-binding key))))))))
-		  (if (keymapp binding)
-		      (org-set-transient-map binding)
-		    (let ((func (or binding
-				    (unless disable
-				      'orgstruct-error))))
-		      (when func
-			(call-interactively func)))))
-	      (org-run-like-in-org-mode
-	       (lambda ()
-		 (interactive)
-		 (let* ,bindings
-		   (call-interactively ',fun)))))))))
-    name))
-
-(defun org-contextualize-keys (alist contexts)
-  "Return valid elements in ALIST depending on CONTEXTS.
-
-`org-agenda-custom-commands' or `org-capture-templates' are the
-values used for ALIST, and `org-agenda-custom-commands-contexts'
-or `org-capture-templates-contexts' are the associated contexts
-definitions."
-  (let ((contexts
-	 ;; normalize contexts
-	 (mapcar
-	  (lambda(c) (cond ((listp (cadr c))
-			    (list (car c) (car c) (nth 1 c)))
-			   ((string= "" (cadr c))
-			    (list (car c) (car c) (nth 2 c)))
-			   (t c)))
-          contexts))
-	(a alist) r s)
-    ;; loop over all commands or templates
-    (dolist (c a)
-      (let (vrules repl)
-	(cond
-	 ((not (assoc (car c) contexts))
-	  (push c r))
-	 ((and (assoc (car c) contexts)
-	       (setq vrules (org-contextualize-validate-key
-			     (car c) contexts)))
-	  (mapc (lambda (vr)
-		  (unless (equal (car vr) (cadr vr))
-		    (setq repl vr)))
-                vrules)
-	  (if (not repl) (push c r)
-	    (push (cadr repl) s)
-	    (push
-	     (cons (car c)
-		   (cdr (or (assoc (cadr repl) alist)
-			    (error "Undefined key `%s' as contextual replacement for `%s'"
-				   (cadr repl) (car c)))))
-	     r))))))
-    ;; Return limited ALIST, possibly with keys modified, and deduplicated
-    (delq
-     nil
-     (delete-dups
-      (mapcar (lambda (x)
-		(let ((tpl (car x)))
-		  (unless (delq
-			   nil
-			   (mapcar (lambda (y)
-				     (equal y tpl))
-				   s))
-                    x)))
-	      (reverse r))))))
-
-(defun org-contextualize-validate-key (key contexts)
-  "Check CONTEXTS for agenda or capture KEY."
-  (let (res)
-    (dolist (r contexts)
-      (dolist (rr (car (last r)))
-	(when
-	    (and (equal key (car r))
-		 (if (functionp rr) (funcall rr)
-		   (or (and (eq (car rr) 'in-file)
-			    (buffer-file-name)
-			    (string-match (cdr rr) (buffer-file-name)))
-		       (and (eq (car rr) 'in-mode)
-			    (string-match (cdr rr) (symbol-name major-mode)))
-		       (and (eq (car rr) 'in-buffer)
-			    (string-match (cdr rr) (buffer-name)))
-		       (when (and (eq (car rr) 'not-in-file)
-				  (buffer-file-name))
-			 (not (string-match (cdr rr) (buffer-file-name))))
-		       (when (eq (car rr) 'not-in-mode)
-			 (not (string-match (cdr rr) (symbol-name major-mode))))
-		       (when (eq (car rr) 'not-in-buffer)
-			 (not (string-match (cdr rr) (buffer-name)))))))
-	  (push r res))))
-    (delete-dups (delq nil res))))
-
-(defun org-context-p (&rest contexts)
-  "Check if local context is any of CONTEXTS.
-Possible values in the list of contexts are `table', `headline', and `item'."
-  (let ((pos (point)))
-    (goto-char (point-at-bol))
-    (prog1 (or (and (memq 'table contexts)
-		    (looking-at "[ \t]*|"))
-	       (and (memq 'headline contexts)
-		    (looking-at org-outline-regexp))
-	       (and (memq 'item contexts)
-		    (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
-	       (and (memq 'item-body contexts)
-		    (org-in-item-p)))
-      (goto-char pos))))
-
-;;;###autoload
-(defun org-run-like-in-org-mode (cmd)
-  "Run a command, pretending that the current buffer is in Org mode.
-This will temporarily bind local variables that are typically bound in
-Org mode to the values they have in Org mode, and then interactively
-call CMD."
-  (org-load-modules-maybe)
-  (unless org-local-vars
-    (setq org-local-vars (org-get-local-variables)))
-  (let (binds)
-    (dolist (var org-local-vars)
-      (when (or (not (boundp (car var)))
-		(eq (symbol-value (car var))
-		    (default-value (car var))))
-	(push (list (car var) `(quote ,(cadr var))) binds)))
-    (eval `(let ,binds
-	     (call-interactively (quote ,cmd))))))
-
-(defun org-get-category (&optional pos force-refresh)
-  "Get the category applying to position POS."
-  (save-match-data
-    (when force-refresh (org-refresh-category-properties))
-    (let ((pos (or pos (point))))
-      (or (get-text-property pos 'org-category)
-	  (progn (org-refresh-category-properties)
-		 (get-text-property pos 'org-category))))))
-
-;;; Refresh properties
-
-(defun org-refresh-properties (dprop tprop)
-  "Refresh buffer text properties.
-DPROP is the drawer property and TPROP is either the
-corresponding text property to set, or an alist with each element
-being a text property (as a symbol) and a function to apply to
-the value of the drawer property."
-  (let* ((case-fold-search t)
-	 (inhibit-read-only t)
-	 (inherit? (org-property-inherit-p dprop))
-	 (property-re (org-re-property (concat (regexp-quote dprop) "\\+?") t))
-	 (global (and inherit? (org--property-global-value dprop nil))))
-    (org-with-silent-modifications
-     (org-with-point-at 1
-       ;; Set global values (e.g., values defined through
-       ;; "#+PROPERTY:" keywords) to the whole buffer.
-       (when global (put-text-property (point-min) (point-max) tprop global))
-       ;; Set local values.
-       (while (re-search-forward property-re nil t)
-	 (when (org-at-property-p)
-	   (org-refresh-property tprop (org-entry-get (point) dprop) inherit?))
-	 (outline-next-heading))))))
-
-(defun org-refresh-property (tprop p &optional inherit)
-  "Refresh the buffer text property TPROP from the drawer property P.
-The refresh happens only for the current headline, or the whole
-sub-tree if optional argument INHERIT is non-nil."
-  (unless (org-before-first-heading-p)
-    (save-excursion
-      (org-back-to-heading t)
-      (let ((start (point))
-	    (end (save-excursion
-		   (if inherit (org-end-of-subtree t t)
-		     (or (outline-next-heading) (point-max))))))
-	(if (symbolp tprop)
-	    ;; TPROP is a text property symbol.
-	    (put-text-property start end tprop p)
-	  ;; TPROP is an alist with (property . function) elements.
-	  (pcase-dolist (`(,prop . ,f) tprop)
-	    (put-text-property start end prop (funcall f p))))))))
-
-(defun org-refresh-category-properties ()
-  "Refresh category text properties in the buffer."
-  (let ((case-fold-search t)
-	(inhibit-read-only t)
-	(default-category
-	  (cond ((null org-category)
-		 (if buffer-file-name
-		     (file-name-sans-extension
-		      (file-name-nondirectory buffer-file-name))
-		   "???"))
-		((symbolp org-category) (symbol-name org-category))
-		(t org-category))))
-    (org-with-silent-modifications
-     (org-with-wide-buffer
-      ;; Set buffer-wide category.  Search last #+CATEGORY keyword.
-      ;; This is the default category for the buffer.  If none is
-      ;; found, fall-back to `org-category' or buffer file name.
-      (put-text-property
-       (point-min) (point-max)
-       'org-category
-       (catch 'buffer-category
-	 (goto-char (point-max))
-	 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
-	   (let ((element (org-element-at-point)))
-	     (when (eq (org-element-type element) 'keyword)
-	       (throw 'buffer-category
-		      (org-element-property :value element)))))
-	 default-category))
-      ;; Set sub-tree specific categories.
-      (goto-char (point-min))
-      (let ((regexp (org-re-property "CATEGORY")))
-	(while (re-search-forward regexp nil t)
-	  (let ((value (match-string-no-properties 3)))
-	    (when (org-at-property-p)
-	      (put-text-property
-	       (save-excursion (org-back-to-heading t) (point))
-	       (save-excursion (org-end-of-subtree t t) (point))
-	       'org-category
-	       value)))))))))
-
-(defun org-refresh-stats-properties ()
-  "Refresh stats text properties in the buffer."
-  (org-with-silent-modifications
-   (org-with-point-at 1
-     (let ((regexp (concat org-outline-regexp-bol
-			   ".*\\[\\([0-9]*\\)\\(?:%\\|/\\([0-9]*\\)\\)\\]")))
-       (while (re-search-forward regexp nil t)
-	 (let* ((numerator (string-to-number (match-string 1)))
-		(denominator (and (match-end 2)
-				  (string-to-number (match-string 2))))
-		(stats (cond ((not denominator) numerator) ;percent
-			     ((= denominator 0) 0)
-			     (t (/ (* numerator 100) denominator)))))
-	   (put-text-property (point) (progn (org-end-of-subtree t t) (point))
-			      'org-stats stats)))))))
-
-(defun org-refresh-effort-properties ()
-  "Refresh effort properties"
-  (org-refresh-properties
-   org-effort-property
-   '((effort . identity)
-     (effort-minutes . org-duration-to-minutes))))
-
-;;;; Link Stuff
-
-;;; Link abbreviations
-
-(defun org-link-expand-abbrev (link)
-  "Apply replacements as defined in `org-link-abbrev-alist'."
-  (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
-      (let* ((key (match-string 1 link))
-	     (as (or (assoc key org-link-abbrev-alist-local)
-		     (assoc key org-link-abbrev-alist)))
-	     (tag (and (match-end 2) (match-string 3 link)))
-	     rpl)
-	(if (not as)
-	    link
-	  (setq rpl (cdr as))
-	  (cond
-	   ((symbolp rpl) (funcall rpl tag))
-	   ((string-match "%(\\([^)]+\\))" rpl)
-	    (replace-match
-	     (save-match-data
-	       (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
-	   ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
-	   ((string-match "%h" rpl)
-	    (replace-match (url-hexify-string (or tag "")) t t rpl))
-	   (t (concat rpl tag)))))
-    link))
-
-;;; Storing and inserting links
-
-(defvar org-insert-link-history nil
-  "Minibuffer history for links inserted with `org-insert-link'.")
-
-(defvar org-stored-links nil
-  "Contains the links stored with `org-store-link'.")
-
-(defvar org-store-link-plist nil
-  "Plist with info about the most recently link created with `org-store-link'.")
-
-(defun org-store-link-functions ()
-  "Return a list of functions that are called to create and store a link.
-The functions defined in the :store property of
-`org-link-parameters'.
-
-Each function will be called in turn until one returns a non-nil
-value.  Each function should check if it is responsible for
-creating this link (for example by looking at the major mode).
-If not, it must exit and return nil.  If yes, it should return
-a non-nil value after calling `org-store-link-props' with a list
-of properties and values.  Special properties are:
-
-:type         The link prefix, like \"http\".  This must be given.
-:link         The link, like \"http://www.astro.uva.nl/~dominik\".
-              This is obligatory as well.
-:description  Optional default description for the second pair
-              of brackets in an Org mode link.  The user can still change
-              this when inserting this link into an Org mode buffer.
-
-In addition to these, any additional properties can be specified
-and then used in capture templates."
-  (cl-loop for link in org-link-parameters
-	   with store-func
-	   do (setq store-func (org-link-get-parameter (car link) :store))
-	   if store-func
-	   collect store-func))
-
-(defvar org-agenda-buffer-name) ; Defined in org-agenda.el
-(defvar org-id-link-to-org-use-id) ; Defined in org-id.el
-
-;;;###autoload
-(defun org-store-link (arg)
-  "Store an org-link to the current location.
-\\<org-mode-map>
-This link is added to `org-stored-links' and can later be inserted
-into an Org buffer with `org-insert-link' (`\\[org-insert-link]').
-
-For some link types, a `\\[universal-argument]' prefix ARG is interpreted.  \
-A single
-`\\[universal-argument]' negates `org-context-in-file-links' for file links or
-`org-gnus-prefer-web-links' for links to Usenet articles.
-
-A `\\[universal-argument] \\[universal-argument]' prefix ARG forces \
-skipping storing functions that are not
-part of Org core.
-
-A `\\[universal-argument] \\[universal-argument] \\[universal-argument]' \
-prefix ARG forces storing a link for each line in the
-active region."
-  (interactive "P")
-  (org-load-modules-maybe)
-  (if (and (equal arg '(64)) (org-region-active-p))
-      (save-excursion
-	(let ((end (region-end)))
-	  (goto-char (region-beginning))
-	  (set-mark (point))
-	  (while (< (point-at-eol) end)
-	    (move-end-of-line 1) (activate-mark)
-	    (let (current-prefix-arg)
-	      (call-interactively 'org-store-link))
-	    (move-beginning-of-line 2)
-	    (set-mark (point)))))
-    (setq org-store-link-plist nil)
-    (let (link cpltxt desc description search txt custom-id agenda-link)
-      (cond
-       ;; Store a link using an external link type, if any function is
-       ;; available. If more than one can generate a link from current
-       ;; location, ask which one to use.
-       ((and (not (equal arg '(16)))
-	     (let ((results-alist nil))
-	       (dolist (f (org-store-link-functions))
-		 (when (funcall f)
-		   ;; XXX: return value is not link's plist, so we
-		   ;; store the new value before it is modified.  It
-		   ;; would be cleaner to ask store link functions to
-		   ;; return the plist instead.
-		   (push (cons f (copy-sequence org-store-link-plist))
-			 results-alist)))
-	       (pcase results-alist
-		 (`nil nil)
-		 (`((,_ . ,_)) t)	;single choice: nothing to do
-		 (`((,name . ,_) . ,_)
-		  ;; Reinstate link plist associated to the chosen
-		  ;; function.
-		  (apply #'org-store-link-props
-			 (cdr (assoc-string
-			       (completing-read
-				"Which function for creating the link? "
-				(mapcar #'car results-alist)
-				nil t (symbol-name name))
-			       results-alist)))
-		  t))))
-	(setq link (plist-get org-store-link-plist :link))
-	(setq desc (or (plist-get org-store-link-plist :description)
-		       link)))
-
-       ;; Store a link from a source code buffer.
-       ((org-src-edit-buffer-p)
-	(let ((coderef-format (org-src-coderef-format)))
-	  (cond ((save-excursion
-		   (beginning-of-line)
-		   (looking-at (org-src-coderef-regexp coderef-format)))
-		 (setq link (format "(%s)" (match-string-no-properties 3))))
-		((called-interactively-p 'any)
-		 (let ((label (read-string "Code line label: ")))
-		   (end-of-line)
-		   (setq link (format coderef-format label))
-		   (let ((gc (- 79 (length link))))
-		     (if (< (current-column) gc)
-			 (org-move-to-column gc t)
-		       (insert " ")))
-		   (insert link)
-		   (setq link (concat "(" label ")"))
-		   (setq desc nil)))
-		(t (setq link nil)))))
-
-       ;; We are in the agenda, link to referenced location
-       ((equal (bound-and-true-p org-agenda-buffer-name) (buffer-name))
-	(let ((m (or (get-text-property (point) 'org-hd-marker)
-		     (get-text-property (point) 'org-marker))))
-	  (when m
-	    (org-with-point-at m
-	      (setq agenda-link
-		    (if (called-interactively-p 'any)
-			(call-interactively 'org-store-link)
-		      (org-store-link nil)))))))
-
-       ((eq major-mode 'calendar-mode)
-	(let ((cd (calendar-cursor-to-date)))
-	  (setq link
-		(format-time-string
-		 (car org-time-stamp-formats)
-		 (apply 'encode-time
-			(list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
-			      nil nil nil))))
-	  (org-store-link-props :type "calendar" :date cd)))
-
-       ((eq major-mode 'help-mode)
-	(setq link (concat "help:" (save-excursion
-				     (goto-char (point-min))
-				     (looking-at "^[^ ]+")
-				     (match-string 0))))
-	(org-store-link-props :type "help"))
-
-       ((eq major-mode 'w3-mode)
-	(setq cpltxt (if (and (buffer-name)
-			      (not (string-match "Untitled" (buffer-name))))
-			 (buffer-name)
-		       (url-view-url t))
-	      link (url-view-url t))
-	(org-store-link-props :type "w3" :url (url-view-url t)))
-
-       ((eq major-mode 'image-mode)
-	(setq cpltxt (concat "file:"
-			     (abbreviate-file-name buffer-file-name))
-	      link cpltxt)
-	(org-store-link-props :type "image" :file buffer-file-name))
-
-       ;; In dired, store a link to the file of the current line
-       ((derived-mode-p 'dired-mode)
-	(let ((file (dired-get-filename nil t)))
-	  (setq file (if file
-			 (abbreviate-file-name
-			  (expand-file-name (dired-get-filename nil t)))
-		       ;; otherwise, no file so use current directory.
-		       default-directory))
-	  (setq cpltxt (concat "file:" file)
-		link cpltxt)))
-
-       ((setq search (run-hook-with-args-until-success
-		      'org-create-file-search-functions))
-	(setq link (concat "file:" (abbreviate-file-name buffer-file-name)
-			   "::" search))
-	(setq cpltxt (or description link)))
-
-       ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
-	(org-with-limited-levels
-	 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
-	 (cond
-	  ;; Store a link using the target at point
-	  ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
-	   (setq cpltxt
-		 (concat "file:"
-			 (abbreviate-file-name
-			  (buffer-file-name (buffer-base-buffer)))
-			 "::" (match-string 1))
-		 link cpltxt))
-	  ((and (featurep 'org-id)
-		(or (eq org-id-link-to-org-use-id t)
-		    (and (called-interactively-p 'any)
-			 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
-			     (and (eq org-id-link-to-org-use-id
-				      'create-if-interactive-and-no-custom-id)
-				  (not custom-id))))
-		    (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
-	   ;; Store a link using the ID at point
-	   (setq link (condition-case nil
-			  (prog1 (org-id-store-link)
-			    (setq desc (or (plist-get org-store-link-plist
-						      :description)
-					   "")))
-			(error
-			 ;; Probably before first headline, link only to file
-			 (concat "file:"
-				 (abbreviate-file-name
-				  (buffer-file-name (buffer-base-buffer))))))))
-	  (t
-	   ;; Just link to current headline
-	   (setq cpltxt (concat "file:"
-				(abbreviate-file-name
-				 (buffer-file-name (buffer-base-buffer)))))
-	   ;; Add a context search string
-	   (when (org-xor org-context-in-file-links
-			  (equal arg '(4)))
-	     (let* ((element (org-element-at-point))
-		    (name (org-element-property :name element)))
-	       (setq txt (cond
-			  ((org-at-heading-p) nil)
-			  (name)
-			  ((org-region-active-p)
-			   (buffer-substring (region-beginning) (region-end)))))
-	       (when (or (null txt) (string-match "\\S-" txt))
-		 (setq cpltxt
-		       (concat cpltxt "::"
-			       (condition-case nil
-				   (org-make-org-heading-search-string txt)
-				 (error "")))
-		       desc (or name
-				(nth 4 (ignore-errors (org-heading-components)))
-				"NONE")))))
-	   (when (string-match "::\\'" cpltxt)
-	     (setq cpltxt (substring cpltxt 0 -2)))
-	   (setq link cpltxt)))))
-
-       ((buffer-file-name (buffer-base-buffer))
-	;; Just link to this file here.
-	(setq cpltxt (concat "file:"
-			     (abbreviate-file-name
-			      (buffer-file-name (buffer-base-buffer)))))
-	;; Add a context string.
-	(when (org-xor org-context-in-file-links
-		       (equal arg '(4)))
-	  (setq txt (if (org-region-active-p)
-			(buffer-substring (region-beginning) (region-end))
-		      (buffer-substring (point-at-bol) (point-at-eol))))
-	  ;; Only use search option if there is some text.
-	  (when (string-match "\\S-" txt)
-	    (setq cpltxt
-		  (concat cpltxt "::" (org-make-org-heading-search-string txt))
-		  desc "NONE")))
-	(setq link cpltxt))
-
-       ((called-interactively-p 'interactive)
-	(user-error "No method for storing a link from this buffer"))
-
-       (t (setq link nil)))
-
-      ;; We're done setting link and desc, clean up
-      (when (consp link) (setq cpltxt (car link) link (cdr link)))
-      (setq link (or link cpltxt)
-	    desc (or desc cpltxt))
-      (cond ((not desc))
-	    ((equal desc "NONE") (setq desc nil))
-	    (t (setq desc
-		     (replace-regexp-in-string
-		      org-bracket-link-analytic-regexp
-		      (lambda (m) (or (match-string 5 m) (match-string 3 m)))
-		      desc))))
-      ;; Return the link
-      (if (not (and (or (called-interactively-p 'any)
-			executing-kbd-macro)
-		    link))
-	  (or agenda-link (and link (org-make-link-string link desc)))
-	(push (list link desc) org-stored-links)
-	(message "Stored: %s" (or desc link))
-	(when custom-id
-	  (setq link (concat "file:" (abbreviate-file-name
-				      (buffer-file-name)) "::#" custom-id))
-	  (push (list link desc) org-stored-links))
-	(car org-stored-links)))))
-
-(defun org-store-link-props (&rest plist)
-  "Store link properties.
-The properties are pre-processed by extracting names, addresses
-and dates."
-  (let ((x (plist-get plist :from)))
-    (when x
-      (let ((adr (mail-extract-address-components x)))
-	(setq plist (plist-put plist :fromname (car adr)))
-	(setq plist (plist-put plist :fromaddress (nth 1 adr))))))
-  (let ((x (plist-get plist :to)))
-    (when x
-      (let ((adr (mail-extract-address-components x)))
-	(setq plist (plist-put plist :toname (car adr)))
-	(setq plist (plist-put plist :toaddress (nth 1 adr))))))
-  (let ((x (ignore-errors (date-to-time (plist-get plist :date)))))
-    (when x
-      (setq plist (plist-put plist :date-timestamp
-			     (format-time-string
-			      (org-time-stamp-format t) x)))
-      (setq plist (plist-put plist :date-timestamp-inactive
-			     (format-time-string
-			      (org-time-stamp-format t t) x)))))
-  (let ((from (plist-get plist :from))
-	(to (plist-get plist :to)))
-    (when (and from to org-from-is-user-regexp)
-      (setq plist
-	    (plist-put plist :fromto
-		       (if (string-match org-from-is-user-regexp from)
-			   (concat "to %t")
-			 (concat "from %f"))))))
-  (setq org-store-link-plist plist))
-
-(defun org-add-link-props (&rest plist)
-  "Add these properties to the link property list."
-  (let (key value)
-    (while plist
-      (setq key (pop plist) value (pop plist))
-      (setq org-store-link-plist
-	    (plist-put org-store-link-plist key value)))))
-
-(defun org-email-link-description (&optional fmt)
-  "Return the description part of an email link.
-This takes information from `org-store-link-plist' and formats it
-according to FMT (default from `org-email-link-description-format')."
-  (setq fmt (or fmt org-email-link-description-format))
-  (let* ((p org-store-link-plist)
-	 (to (plist-get p :toaddress))
-	 (from (plist-get p :fromaddress))
-	 (table
-	  (list
-	   (cons "%c" (plist-get p :fromto))
-	   (cons "%F" (plist-get p :from))
-	   (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
-	   (cons "%T" (plist-get p :to))
-	   (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
-	   (cons "%s" (plist-get p :subject))
-	   (cons "%d" (plist-get p :date))
-	   (cons "%m" (plist-get p :message-id)))))
-    (when (string-match "%c" fmt)
-      ;; Check if the user wrote this message
-      (if (and org-from-is-user-regexp from to
-	       (save-match-data (string-match org-from-is-user-regexp from)))
-	  (setq fmt (replace-match "to %t" t t fmt))
-	(setq fmt (replace-match "from %f" t t fmt))))
-    (org-replace-escapes fmt table)))
-
-(defun org-make-org-heading-search-string (&optional string)
-  "Make search string for the current headline or STRING."
-  (let ((s (or string
-	       (and (derived-mode-p 'org-mode)
-		    (save-excursion
-		      (org-back-to-heading t)
-		      (org-element-property :raw-value (org-element-at-point))))))
-	(lines org-context-in-file-links))
-    (unless string (setq s (concat "*" s))) ;Add * for headlines
-    (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
-    (when (and string (integerp lines) (> lines 0))
-      (let ((slines (org-split-string s "\n")))
-	(when (< lines (length slines))
-	  (setq s (mapconcat
-		   'identity
-		   (reverse (nthcdr (- (length slines) lines)
-				    (reverse slines))) "\n")))))
-    (mapconcat #'identity (split-string s) " ")))
-
-(defconst org-link-escape-chars
-  ;;%20 %5B %5D %25
-  '(?\s ?\[ ?\] ?%)
-  "List of characters that should be escaped in a link when stored to Org.
-This is the list that is used for internal purposes.")
-
-(defun org-make-link-string (link &optional description)
-  "Make a link with brackets, consisting of LINK and DESCRIPTION."
-  (unless (org-string-nw-p link) (error "Empty link"))
-  (let ((uri (cond ((string-match org-link-types-re link)
-		    (concat (match-string 1 link)
-			    (org-link-escape (substring link (match-end 1)))))
-		   ((or (file-name-absolute-p link)
-			(string-match-p "\\`\\.\\.?/" link))
-		    (org-link-escape link))
-		   ;; For readability, do not encode space characters
-		   ;; in fuzzy links.
-		   (t (org-link-escape link (remq ?\s org-link-escape-chars)))))
-	(description
-	 (and (org-string-nw-p description)
-	      ;; Remove brackets from description, as they are fatal.
-	      (replace-regexp-in-string
-	       "[][]" (lambda (m) (if (equal "[" m) "{" "}"))
-	       (org-trim description)))))
-    (format "[[%s]%s]"
-	    uri
-	    (if description (format "[%s]" description) ""))))
-
-(defun org-link-escape (text &optional table merge)
-  "Return percent escaped representation of TEXT.
-TEXT is a string with the text to escape.
-Optional argument TABLE is a list with characters that should be
-escaped.  When nil, `org-link-escape-chars' is used.
-If optional argument MERGE is set, merge TABLE into
-`org-link-escape-chars'."
-  (let ((characters-to-encode
-	 (cond ((null table) org-link-escape-chars)
-	       (merge (append org-link-escape-chars table))
-	       (t table))))
-    (mapconcat
-     (lambda (c)
-       (if (or (memq c characters-to-encode)
-	       (and org-url-hexify-p (or (< c 32) (> c 126))))
-	   (mapconcat (lambda (e) (format "%%%.2X" e))
-		      (or (encode-coding-char c 'utf-8)
-			  (error "Unable to percent escape character: %c" c))
-		      "")
-	 (char-to-string c)))
-     text "")))
-
-(defun org-link-unescape (str)
-  "Unhex hexified Unicode parts in string STR.
-E.g. `%C3%B6' becomes the german o-Umlaut.  This is the
-reciprocal of `org-link-escape', which see."
-  (if (org-string-nw-p str)
-      (replace-regexp-in-string
-       "\\(%[0-9A-Za-z]\\{2\\}\\)+" #'org-link-unescape-compound str t t)
-    str))
-
-(defun org-link-unescape-compound (hex)
-  "Unhexify Unicode hex-chars.  E.g. `%C3%B6' is the German o-Umlaut.
-Note: this function also decodes single byte encodings like
-`%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
-  (save-match-data
-    (let* ((bytes (cdr (split-string hex "%")))
-	   (ret "")
-	   (eat 0)
-	   (sum 0))
-      (while bytes
-	(let* ((val (string-to-number (pop bytes) 16))
-	       (shift-xor
-		(if (= 0 eat)
-		    (cond
-		     ((>= val 252) (cons 6 252))
-		     ((>= val 248) (cons 5 248))
-		     ((>= val 240) (cons 4 240))
-		     ((>= val 224) (cons 3 224))
-		     ((>= val 192) (cons 2 192))
-		     (t (cons 0 0)))
-		  (cons 6 128))))
-	  (when (>= val 192) (setq eat (car shift-xor)))
-	  (setq val (logxor val (cdr shift-xor)))
-	  (setq sum (+ (lsh sum (car shift-xor)) val))
-	  (when (> eat 0) (setq eat (- eat 1)))
-	  (cond
-	   ((= 0 eat)			;multi byte
-	    (setq ret (concat ret (char-to-string sum)))
-	    (setq sum 0))
-	   ((not bytes)			; single byte(s)
-	    (setq ret (org-link-unescape-single-byte-sequence hex))))))
-      ret)))
-
-(defun org-link-unescape-single-byte-sequence (hex)
-  "Unhexify hex-encoded single byte character sequences."
-  (mapconcat (lambda (byte)
-	       (char-to-string (string-to-number byte 16)))
-	     (cdr (split-string hex "%")) ""))
-
-(defun org-xor (a b)
-  "Exclusive or."
-  (if a (not b) b))
-
-(defun org-fixup-message-id-for-http (s)
-  "Replace special characters in a message id, so it can be used in an http query."
-  (when (string-match "%" s)
-    (setq s (mapconcat (lambda (c)
-			 (if (eq c ?%)
-			     "%25"
-			   (char-to-string c)))
-		       s "")))
-  (while (string-match "<" s)
-    (setq s (replace-match "%3C" t t s)))
-  (while (string-match ">" s)
-    (setq s (replace-match "%3E" t t s)))
-  (while (string-match "@" s)
-    (setq s (replace-match "%40" t t s)))
-  s)
-
-(defun org-link-prettify (link)
-  "Return a human-readable representation of LINK.
-The car of LINK must be a raw link.
-The cdr of LINK must be either a link description or nil."
-  (let ((desc (or (cadr link) "<no description>")))
-    (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
-	    "<" (car link) ">")))
-
-;;;###autoload
-(defun org-insert-link-global ()
-  "Insert a link like Org mode does.
-This command can be called in any mode to insert a link in Org syntax."
-  (interactive)
-  (org-load-modules-maybe)
-  (org-run-like-in-org-mode 'org-insert-link))
-
-(defun org-insert-all-links (arg &optional pre post)
-  "Insert all links in `org-stored-links'.
-When a universal prefix, do not delete the links from `org-stored-links'.
-When `ARG' is a number, insert the last N link(s).
-`PRE' and `POST' are optional arguments to define a string to
-prepend or to append."
-  (interactive "P")
-  (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
-	(links (copy-sequence org-stored-links))
-	(pr (or pre "- "))
-	(po (or post "\n"))
-	(cnt 1) l)
-    (if (null org-stored-links)
-	(message "No link to insert")
-      (while (and (or (listp arg) (>= arg cnt))
-		  (setq l (if (listp arg)
-			      (pop links)
-			    (pop org-stored-links))))
-	(setq cnt (1+ cnt))
-	(insert pr)
-	(org-insert-link nil (car l) (or (cadr l) "<no description>"))
-	(insert po)))))
-
-(defun org-insert-last-stored-link (arg)
-  "Insert the last link stored in `org-stored-links'."
-  (interactive "p")
-  (org-insert-all-links arg "" "\n"))
-
-(defun org-link-fontify-links-to-this-file ()
-  "Fontify links to the current file in `org-stored-links'."
-  (let ((f (buffer-file-name)) a b)
-    (setq a (mapcar (lambda(l)
-		      (let ((ll (car l)))
-			(when (and (string-match "^file:\\(.+\\)::" ll)
-				   (equal f (expand-file-name (match-string 1 ll))))
-			  ll)))
-		    org-stored-links))
-    (when (featurep 'org-id)
-      (setq b (mapcar (lambda(l)
-			(let ((ll (car l)))
-			  (when (and (string-match "^id:\\(.+\\)$" ll)
-				     (equal f (expand-file-name
-					       (or (org-id-find-id-file
-						    (match-string 1 ll)) ""))))
-			    ll)))
-		      org-stored-links)))
-    (mapcar (lambda(l)
-	      (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
-	    (delq nil (append a b)))))
-
-(defvar org--links-history nil)
-(defun org-insert-link (&optional complete-file link-location default-description)
-  "Insert a link.  At the prompt, enter the link.
-
-Completion can be used to insert any of the link protocol prefixes in use.
-
-The history can be used to select a link previously stored with
-`org-store-link'.  When the empty string is entered (i.e. if you just
-press `RET' at the prompt), the link defaults to the most recently
-stored link.  As `SPC' triggers completion in the minibuffer, you need to
-use `M-SPC' or `C-q SPC' to force the insertion of a space character.
-
-You will also be prompted for a description, and if one is given, it will
-be displayed in the buffer instead of the link.
-
-If there is already a link at point, this command will allow you to edit
-link and description parts.
-
-With a `\\[universal-argument]' prefix, prompts for a file to link to.  The \
-file name can be
-selected using completion.  The path to the file will be relative to the
-current directory if the file is in the current directory or a subdirectory.
-Otherwise, the link will be the absolute path as completed in the minibuffer
-\(i.e. normally ~/path/to/file).  You can configure this behavior using the
-option `org-link-file-path-type'.
-
-With a `\\[universal-argument] \\[universal-argument]' prefix, enforce an \
-absolute path even if the file is in
-the current directory or below.
-
-A `\\[universal-argument] \\[universal-argument] \\[universal-argument]' \
-prefix negates `org-keep-stored-link-after-insertion'.
-
-If the LINK-LOCATION parameter is non-nil, this value will be used as
-the link location instead of reading one interactively.
-
-If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
-be used as the default description.  Otherwise, if
-`org-make-link-description-function' is non-nil, this function
-will be called with the link target, and the result will be the
-default link description."
-  (interactive "P")
-  (let* ((wcf (current-window-configuration))
-	 (origbuf (current-buffer))
-	 (region (when (org-region-active-p)
-		   (buffer-substring (region-beginning) (region-end))))
-	 (remove (and region (list (region-beginning) (region-end))))
-	 (desc region)
-	 (link link-location)
-	 (abbrevs org-link-abbrev-alist-local)
-	 entry all-prefixes auto-desc)
-    (cond
-     (link-location)		      ; specified by arg, just use it.
-     ((org-in-regexp org-bracket-link-regexp 1)
-      ;; We do have a link at point, and we are going to edit it.
-      (setq remove (list (match-beginning 0) (match-end 0)))
-      (setq desc (when (match-end 3) (match-string-no-properties 3)))
-      (setq link (read-string "Link: "
-			      (org-link-unescape
-			       (match-string-no-properties 1)))))
-     ((or (org-in-regexp org-angle-link-re)
-	  (org-in-regexp org-plain-link-re))
-      ;; Convert to bracket link
-      (setq remove (list (match-beginning 0) (match-end 0))
-	    link (read-string "Link: "
-			      (org-unbracket-string "<" ">" (match-string 0)))))
-     ((member complete-file '((4) (16)))
-      ;; Completing read for file names.
-      (setq link (org-file-complete-link complete-file)))
-     (t
-      ;; Read link, with completion for stored links.
-      (org-link-fontify-links-to-this-file)
-      (org-switch-to-buffer-other-window "*Org Links*")
-      (with-current-buffer "*Org Links*"
-	(erase-buffer)
-	(insert "Insert a link.
-Use TAB to complete link prefixes, then RET for type-specific completion support\n")
-	(when org-stored-links
-	  (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
-	  (insert (mapconcat 'org-link-prettify
-			     (reverse org-stored-links) "\n")))
-	(goto-char (point-min)))
-      (let ((cw (selected-window)))
-	(select-window (get-buffer-window "*Org Links*" 'visible))
-	(with-current-buffer "*Org Links*" (setq truncate-lines t))
-	(unless (pos-visible-in-window-p (point-max))
-	  (org-fit-window-to-buffer))
-	(and (window-live-p cw) (select-window cw)))
-      (setq all-prefixes (append (mapcar 'car abbrevs)
-				 (mapcar 'car org-link-abbrev-alist)
-				 (org-link-types)))
-      (unwind-protect
-	  ;; Fake a link history, containing the stored links.
-	  (let ((org--links-history
-		 (append (mapcar #'car org-stored-links)
-			 org-insert-link-history)))
-	    (setq link
-		  (org-completing-read
-		   "Link: "
-		   (append
-		    (mapcar (lambda (x) (concat x ":")) all-prefixes)
-		    (mapcar #'car org-stored-links))
-		   nil nil nil
-		   'org--links-history
-		   (caar org-stored-links)))
-	    (unless (org-string-nw-p link) (user-error "No link selected"))
-	    (dolist (l org-stored-links)
-	      (when (equal link (cadr l))
-		(setq link (car l))
-		(setq auto-desc t)))
-	    (when (or (member link all-prefixes)
-		      (and (equal ":" (substring link -1))
-			   (member (substring link 0 -1) all-prefixes)
-			   (setq link (substring link 0 -1))))
-	      (setq link (with-current-buffer origbuf
-			   (org-link-try-special-completion link)))))
-	(set-window-configuration wcf)
-	(kill-buffer "*Org Links*"))
-      (setq entry (assoc link org-stored-links))
-      (or entry (push link org-insert-link-history))
-      (setq desc (or desc (nth 1 entry)))))
-
-    (when (funcall (if (equal complete-file '(64)) 'not 'identity)
-		   (not org-keep-stored-link-after-insertion))
-      (setq org-stored-links (delq (assoc link org-stored-links)
-				   org-stored-links)))
-
-    (when (and (string-match org-plain-link-re link)
-	       (not (string-match org-ts-regexp link)))
-      ;; URL-like link, normalize the use of angular brackets.
-      (setq link (org-unbracket-string "<" ">" link)))
-
-    ;; Check if we are linking to the current file with a search
-    ;; option If yes, simplify the link by using only the search
-    ;; option.
-    (when (and buffer-file-name
-	       (let ((case-fold-search nil))
-		 (string-match "\\`file:\\(.+?\\)::" link)))
-      (let ((path (match-string-no-properties 1 link))
-	    (search (substring-no-properties link (match-end 0))))
-	(save-match-data
-	  (when (equal (file-truename buffer-file-name) (file-truename path))
-	    ;; We are linking to this same file, with a search option
-	    (setq link search)))))
-
-    ;; Check if we can/should use a relative path.  If yes, simplify
-    ;; the link.
-    (let ((case-fold-search nil))
-      (when (string-match "\\`\\(file\\|docview\\):" link)
-	(let* ((type (match-string-no-properties 0 link))
-	       (path-start (match-end 0))
-	       (search (and (string-match "::\\(.*\\)\\'" link)
-			    (match-string 1 link)))
-	       (path
-		(if search
-		    (substring-no-properties
-		     link path-start (match-beginning 0))
-		  (substring-no-properties link (match-end 0))))
-	       (origpath path))
-	  (cond
-	   ((or (eq org-link-file-path-type 'absolute)
-		(equal complete-file '(16)))
-	    (setq path (abbreviate-file-name (expand-file-name path))))
-	   ((eq org-link-file-path-type 'noabbrev)
-	    (setq path (expand-file-name path)))
-	   ((eq org-link-file-path-type 'relative)
-	    (setq path (file-relative-name path)))
-	   (t
-	    (save-match-data
-	      (if (string-match (concat "^" (regexp-quote
-					     (expand-file-name
-					      (file-name-as-directory
-					       default-directory))))
-				(expand-file-name path))
-		  ;; We are linking a file with relative path name.
-		  (setq path (substring (expand-file-name path)
-					(match-end 0)))
-		(setq path (abbreviate-file-name (expand-file-name path)))))))
-	  (setq link (concat type path (and search (concat "::" search))))
-	  (when (equal desc origpath)
-	    (setq desc path)))))
-
-    (unless auto-desc
-      (let ((initial-input
-	     (cond
-	      (default-description)
-	      ((not org-make-link-description-function) desc)
-	      (t (condition-case nil
-		     (funcall org-make-link-description-function link desc)
-		   (error
-		    (message "Can't get link description from `%s'"
-			     (symbol-name org-make-link-description-function))
-		    (sit-for 2)
-		    nil))))))
-	(setq desc (read-string "Description: " initial-input))))
-
-    (unless (string-match "\\S-" desc) (setq desc nil))
-    (when remove (apply 'delete-region remove))
-    (insert (org-make-link-string link desc))
-    ;; Redisplay so as the new link has proper invisible characters.
-    (sit-for 0)))
-
-(defun org-link-try-special-completion (type)
-  "If there is completion support for link type TYPE, offer it."
-  (let ((fun (org-link-get-parameter type :complete)))
-    (if (functionp fun)
-	(funcall fun)
-      (read-string "Link (no completion support): " (concat type ":")))))
-
-(defun org-file-complete-link (&optional arg)
-  "Create a file link using completion."
-  (let ((file (read-file-name "File: "))
-	(pwd (file-name-as-directory (expand-file-name ".")))
-	(pwd1 (file-name-as-directory (abbreviate-file-name
-				       (expand-file-name ".")))))
-    (cond ((equal arg '(16))
-	   (concat "file:"
-		   (abbreviate-file-name (expand-file-name file))))
-	  ((string-match
-	    (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
-	   (concat "file:" (match-string 1 file)))
-	  ((string-match
-	    (concat "^" (regexp-quote pwd) "\\(.+\\)")
-	    (expand-file-name file))
-	   (concat "file:"
-		   (match-string 1 (expand-file-name file))))
-	  (t (concat "file:" file)))))
-
-(defun org-completing-read (&rest args)
-  "Completing-read with SPACE being a normal character."
-  (let ((enable-recursive-minibuffers t)
-	(minibuffer-local-completion-map
-	 (copy-keymap minibuffer-local-completion-map)))
-    (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
-    (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
-    (org-defkey minibuffer-local-completion-map (kbd "C-c !")
-		'org-time-stamp-inactive)
-    (apply #'completing-read args)))
-
-;;; Opening/following a link
-
-(defvar org-link-search-failed nil)
-
-(defvar org-open-link-functions nil
-  "Hook for functions finding a plain text link.
-These functions must take a single argument, the link content.
-They will be called for links that look like [[link text][description]]
-when LINK TEXT does not have a protocol like \"http:\" and does not look
-like a filename (e.g. \"./blue.png\").
-
-These functions will be called *before* Org attempts to resolve the
-link by doing text searches in the current buffer - so if you want a
-link \"[[target]]\" to still find \"<<target>>\", your function should
-handle this as a special case.
-
-When the function does handle the link, it must return a non-nil value.
-If it decides that it is not responsible for this link, it must return
-nil to indicate that that Org can continue with other options like
-exact and fuzzy text search.")
-
-(defun org-next-link (&optional search-backward)
-  "Move forward to the next link.
-If the link is in hidden text, expose it."
-  (interactive "P")
-  (when (and org-link-search-failed (eq this-command last-command))
-    (goto-char (point-min))
-    (message "Link search wrapped back to beginning of buffer"))
-  (setq org-link-search-failed nil)
-  (let* ((pos (point))
-	 (ct (org-context))
-	 (a (assq :link ct))
-	 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
-    (cond (a (goto-char (nth (if search-backward 1 2) a)))
-	  ((looking-at org-any-link-re)
-	   ;; Don't stay stuck at link without an org-link face
-	   (forward-char (if search-backward -1 1))))
-    (if (funcall srch-fun org-any-link-re nil t)
-	(progn
-	  (goto-char (match-beginning 0))
-	  (when (org-invisible-p) (org-show-context)))
-      (goto-char pos)
-      (setq org-link-search-failed t)
-      (message "No further link found"))))
-
-(defun org-previous-link ()
-  "Move backward to the previous link.
-If the link is in hidden text, expose it."
-  (interactive)
-  (funcall 'org-next-link t))
-
-(defun org-translate-link (s)
-  "Translate a link string if a translation function has been defined."
-  (with-temp-buffer
-    (insert (org-trim s))
-    (org-trim (org-element-interpret-data (org-element-context)))))
-
-(defun org-translate-link-from-planner (type path)
-  "Translate a link from Emacs Planner syntax so that Org can follow it.
-This is still an experimental function, your mileage may vary."
-  (cond
-   ((member type '("http" "https" "news" "ftp"))
-    ;; standard Internet links are the same.
-    nil)
-   ((and (equal type "irc") (string-match "^//" path))
-    ;; Planner has two / at the beginning of an irc link, we have 1.
-    ;; We should have zero, actually....
-    (setq path (substring path 1)))
-   ((and (equal type "lisp") (string-match "^/" path))
-    ;; Planner has a slash, we do not.
-    (setq type "elisp" path (substring path 1)))
-   ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
-    ;; A typical message link.  Planner has the id after the final slash,
-    ;; we separate it with a hash mark
-    (setq path (concat (match-string 1 path) "#"
-		       (org-unbracket-string "<" ">" (match-string 2 path))))))
-  (cons type path))
-
-(defun org-find-file-at-mouse (ev)
-  "Open file link or URL at mouse."
-  (interactive "e")
-  (mouse-set-point ev)
-  (org-open-at-point 'in-emacs))
-
-(defun org-open-at-mouse (ev)
-  "Open file link or URL at mouse.
-See the docstring of `org-open-file' for details."
-  (interactive "e")
-  (mouse-set-point ev)
-  (when (eq major-mode 'org-agenda-mode)
-    (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
-  (org-open-at-point))
-
-(defvar org-window-config-before-follow-link nil
-  "The window configuration before following a link.
-This is saved in case the need arises to restore it.")
-
-;;;###autoload
-(defun org-open-at-point-global ()
-  "Follow a link or time-stamp like Org mode does.
-This command can be called in any mode to follow an external link
-or a time-stamp that has Org mode syntax.  Its behavior is
-undefined when called on internal links (e.g., fuzzy links).
-Raise an error when there is nothing to follow.  "
-  (interactive)
-  (cond ((org-in-regexp org-any-link-re)
-	 (org-open-link-from-string (match-string-no-properties 0)))
-	((or (org-in-regexp org-ts-regexp-both nil t)
-	     (org-in-regexp org-tsr-regexp-both nil t))
-	 (org-follow-timestamp-link))
-	(t (user-error "No link found"))))
-
-;;;###autoload
-(defun org-open-link-from-string (s &optional arg reference-buffer)
-  "Open a link in the string S, as if it was in Org mode."
-  (interactive "sLink: \nP")
-  (let ((reference-buffer (or reference-buffer (current-buffer))))
-    (with-temp-buffer
-      (let ((org-inhibit-startup (not reference-buffer)))
-	(org-mode)
-	(insert s)
-	(goto-char (point-min))
-	(when reference-buffer
-	  (setq org-link-abbrev-alist-local
-		(with-current-buffer reference-buffer
-		  org-link-abbrev-alist-local)))
-	(org-open-at-point arg reference-buffer)))))
-
-(defvar org-open-at-point-functions nil
-  "Hook that is run when following a link at point.
-
-Functions in this hook must return t if they identify and follow
-a link at point.  If they don't find anything interesting at point,
-they must return nil.")
-
-(defvar org-link-search-inhibit-query nil)
-(defvar clean-buffer-list-kill-buffer-names) ;Defined in midnight.el
-(defun org--open-doi-link (path)
-  "Open a \"doi\" type link.
-PATH is a the path to search for, as a string."
-  (browse-url (url-encode-url (concat org-doi-server-url path))))
-
-(defun org--open-elisp-link (path)
-  "Open a \"elisp\" type link.
-PATH is the sexp to evaluate, as a string."
-  (let ((cmd path))
-    (if (or (and (org-string-nw-p
-		  org-confirm-elisp-link-not-regexp)
-		 (string-match-p org-confirm-elisp-link-not-regexp cmd))
-	    (not org-confirm-elisp-link-function)
-	    (funcall org-confirm-elisp-link-function
-		     (format "Execute \"%s\" as elisp? "
-			     (org-add-props cmd nil 'face 'org-warning))))
-	(message "%s => %s" cmd
-		 (if (eq (string-to-char cmd) ?\()
-		     (eval (read cmd))
-		   (call-interactively (read cmd))))
-      (user-error "Abort"))))
-
-(defun org--open-help-link (path)
-  "Open a \"help\" type link.
-PATH is a symbol name, as a string."
-  (pcase (intern path)
-    ((and (pred fboundp) variable) (describe-function variable))
-    ((and (pred boundp) function) (describe-variable function))
-    (name (user-error "Unknown function or variable: %s" name))))
-
-(defun org--open-shell-link (path)
-  "Open a \"shell\" type link.
-PATH is the command to execute, as a string."
-  (let ((buf (generate-new-buffer "*Org Shell Output*"))
-	(cmd path))
-    (if (or (and (org-string-nw-p
-		  org-confirm-shell-link-not-regexp)
-		 (string-match
-		  org-confirm-shell-link-not-regexp cmd))
-	    (not org-confirm-shell-link-function)
-	    (funcall org-confirm-shell-link-function
-		     (format "Execute \"%s\" in shell? "
-			     (org-add-props cmd nil
-			       'face 'org-warning))))
-	(progn
-	  (message "Executing %s" cmd)
-	  (shell-command cmd buf)
-	  (when (featurep 'midnight)
-	    (setq clean-buffer-list-kill-buffer-names
-		  (cons (buffer-name buf)
-			clean-buffer-list-kill-buffer-names))))
-      (user-error "Abort"))))
-
-(defun org-open-at-point (&optional arg reference-buffer)
-  "Open link, timestamp, footnote or tags at point.
-
-When point is on a link, follow it.  Normally, files will be
-opened by an appropriate application.  If the optional prefix
-argument ARG is non-nil, Emacs will visit the file.  With
-a double prefix argument, try to open outside of Emacs, in the
-application the system uses for this file type.
-
-When point is on a timestamp, open the agenda at the day
-specified.
-
-When point is a footnote definition, move to the first reference
-found.  If it is on a reference, move to the associated
-definition.
-
-When point is on a headline, display a list of every link in the
-entry, so it is possible to pick one, or all, of them.  If point
-is on a tag, call `org-tags-view' instead.
-
-When optional argument REFERENCE-BUFFER is non-nil, it should
-specify a buffer from where the link search should happen.  This
-is used internally by `org-open-link-from-string'.
-
-On top of syntactically correct links, this function will also
-try to open links and time-stamps in comments, example
-blocks... i.e., whenever point is on something looking like
-a timestamp or a link."
-  (interactive "P")
-  ;; On a code block, open block's results.
-  (unless (call-interactively 'org-babel-open-src-block-result)
-    (org-load-modules-maybe)
-    (setq org-window-config-before-follow-link (current-window-configuration))
-    (org-remove-occur-highlights nil nil t)
-    (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
-      (let* ((context
-	      ;; Only consider supported types, even if they are not
-	      ;; the closest one.
-	      (org-element-lineage
-	       (org-element-context)
-	       '(clock footnote-definition footnote-reference headline
-		       inlinetask link timestamp)
-	       t))
-	     (type (org-element-type context))
-	     (value (org-element-property :value context)))
-	(cond
-	 ;; On a headline or an inlinetask, but not on a timestamp,
-	 ;; a link, a footnote reference.
-	 ((memq type '(headline inlinetask))
-	  (org-match-line org-complex-heading-regexp)
-	  (if (and (match-beginning 5)
-		   (>= (point) (match-beginning 5))
-		   (< (point) (match-end 5)))
-	      ;; On tags.
-	      (org-tags-view arg (substring (match-string 5) 0 -1))
-	    ;; Not on tags.
-	    (pcase (org-offer-links-in-entry (current-buffer) (point) arg)
-	      (`(nil . ,_)
-	       (require 'org-attach)
-	       (org-attach-reveal 'if-exists))
-	      (`(,links . ,links-end)
-	       (dolist (link (if (stringp links) (list links) links))
-		 (search-forward link nil links-end)
-		 (goto-char (match-beginning 0))
-		 (org-open-at-point))))))
-	 ;; On a footnote reference or at definition's label.
-	 ((or (eq type 'footnote-reference)
-	      (and (eq type 'footnote-definition)
-		   (save-excursion
-		     ;; Do not validate action when point is on the
-		     ;; spaces right after the footnote label, in
-		     ;; order to be on par with behavior on links.
-		     (skip-chars-forward " \t")
-		     (let ((begin
-			    (org-element-property :contents-begin context)))
-		       (if begin (< (point) begin)
-			 (= (org-element-property :post-affiliated context)
-			    (line-beginning-position)))))))
-	  (org-footnote-action))
-	 ;; No valid context.  Ignore catch-all types like `headline'.
-	 ;; If point is on something looking like a link or
-	 ;; a time-stamp, try opening it.  It may be useful in
-	 ;; comments, example blocks...
-	 ((memq type '(footnote-definition headline inlinetask nil))
-	  (call-interactively #'org-open-at-point-global))
-	 ;; On a clock line, make sure point is on the timestamp
-	 ;; before opening it.
-	 ((and (eq type 'clock)
-	       value
-	       (>= (point) (org-element-property :begin value))
-	       (<= (point) (org-element-property :end value)))
-	  (org-follow-timestamp-link))
-	 ;; Do nothing on white spaces after an object.
-	 ((>= (point)
-	      (save-excursion
-		(goto-char (org-element-property :end context))
-		(skip-chars-backward " \t")
-		(point)))
-	  (user-error "No link found"))
-	 ((eq type 'timestamp) (org-follow-timestamp-link))
-	 ((eq type 'link)
-	  (let ((type (org-element-property :type context))
-		(path (org-link-unescape (org-element-property :path context))))
-	    ;; Switch back to REFERENCE-BUFFER needed when called in
-	    ;; a temporary buffer through `org-open-link-from-string'.
-	    (with-current-buffer (or reference-buffer (current-buffer))
-	      (cond
-	       ((equal type "file")
-		(if (string-match "[*?{]" (file-name-nondirectory path))
-		    (dired path)
-		  ;; Look into `org-link-parameters' in order to find
-		  ;; a DEDICATED-FUNCTION to open file.  The function
-		  ;; will be applied on raw link instead of parsed
-		  ;; link due to the limitation in `org-add-link-type'
-		  ;; ("open" function called with a single argument).
-		  ;; If no such function is found, fallback to
-		  ;; `org-open-file'.
-		  (let* ((option (org-element-property :search-option context))
-			 (app (org-element-property :application context))
-			 (dedicated-function
-			  (org-link-get-parameter
-			   (if app (concat type "+" app) type)
-			   :follow)))
-		    (if dedicated-function
-			(funcall dedicated-function
-				 (concat path
-					 (and option (concat "::" option))))
-		      (apply #'org-open-file
-			     path
-			     (cond (arg)
-				   ((equal app "emacs") 'emacs)
-				   ((equal app "sys") 'system))
-			     (cond ((not option) nil)
-				   ((string-match-p "\\`[0-9]+\\'" option)
-				    (list (string-to-number option)))
-				   (t (list nil
-					    (org-link-unescape option)))))))))
-	       ((functionp (org-link-get-parameter type :follow))
-		(funcall (org-link-get-parameter type :follow) path))
-	       ((member type '("coderef" "custom-id" "fuzzy" "radio"))
-		(unless (run-hook-with-args-until-success
-			 'org-open-link-functions path)
-		  (if (not arg) (org-mark-ring-push)
-		    (switch-to-buffer-other-window
-		     (org-get-buffer-for-internal-link (current-buffer))))
-		  (let ((destination
-			 (org-with-wide-buffer
-			  (if (equal type "radio")
-			      (org-search-radio-target
-			       (org-element-property :path context))
-			    (org-link-search
-			     (if (member type '("custom-id" "coderef"))
-				 (org-element-property :raw-link context)
-			       path)
-			     ;; Prevent fuzzy links from matching
-			     ;; themselves.
-			     (and (equal type "fuzzy")
-				  (+ 2 (org-element-property :begin context)))))
-			  (point))))
-		    (unless (and (<= (point-min) destination)
-				 (>= (point-max) destination))
-		      (widen))
-		    (goto-char destination))))
-	       (t (browse-url-at-point))))))
-	 (t (user-error "No link found")))))
-    (run-hook-with-args 'org-follow-link-hook)))
-
-(defun org-offer-links-in-entry (buffer marker &optional nth zero)
-  "Offer links in the current entry and return the selected link.
-If there is only one link, return it.
-If NTH is an integer, return the NTH link found.
-If ZERO is a string, check also this string for a link, and if
-there is one, return it."
-  (with-current-buffer buffer
-    (org-with-wide-buffer
-     (goto-char marker)
-     (let ((cnt ?0)
-	   have-zero end links link c)
-       (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
-	 (push (match-string 0 zero) links)
-	 (setq cnt (1- cnt) have-zero t))
-       (save-excursion
-	 (org-back-to-heading t)
-	 (setq end (save-excursion (outline-next-heading) (point)))
-	 (while (re-search-forward org-any-link-re end t)
-	   (push (match-string 0) links))
-	 (setq links (org-uniquify (reverse links))))
-       (cond
-	((null links)
-	 (message "No links"))
-	((equal (length links) 1)
-	 (setq link (car links)))
-	((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
-	 (setq link (nth (if have-zero nth (1- nth)) links)))
-	(t				; we have to select a link
-	 (save-excursion
-	   (save-window-excursion
-	     (delete-other-windows)
-	     (with-output-to-temp-buffer "*Select Link*"
-	       (dolist (l links)
-		 (cond
-		  ((not (string-match org-bracket-link-regexp l))
-		   (princ (format "[%c]  %s\n" (cl-incf cnt)
-				  (org-unbracket-string "<" ">" l))))
-		  ((match-end 3)
-		   (princ (format "[%c]  %s (%s)\n" (cl-incf cnt)
-				  (match-string 3 l) (match-string 1 l))))
-		  (t (princ (format "[%c]  %s\n" (cl-incf cnt)
-				    (match-string 1 l)))))))
-	     (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
-	     (message "Select link to open, RET to open all:")
-	     (setq c (read-char-exclusive))
-	     (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
-	 (when (equal c ?q) (user-error "Abort"))
-	 (if (equal c ?\C-m)
-	     (setq link links)
-	   (setq nth (- c ?0))
-	   (when have-zero (setq nth (1+ nth)))
-	   (unless (and (integerp nth) (>= (length links) nth))
-	     (user-error "Invalid link selection"))
-	   (setq link (nth (1- nth) links)))))
-       (cons link end)))))
-
-;; TODO: These functions are deprecated since `org-open-at-point'
-;; hard-codes behavior for "file+emacs" and "file+sys" types.
-(defun org-open-file-with-system (path)
-  "Open file at PATH using the system way of opening it."
-  (org-open-file path 'system))
-(defun org-open-file-with-emacs (path)
-  "Open file at PATH in Emacs."
-  (org-open-file path 'emacs))
-
-
-;;; File search
-
-(defvar org-create-file-search-functions nil
-  "List of functions to construct the right search string for a file link.
-These functions are called in turn with point at the location to
-which the link should point.
-
-A function in the hook should first test if it would like to
-handle this file type, for example by checking the `major-mode'
-or the file extension.  If it decides not to handle this file, it
-should just return nil to give other functions a chance.  If it
-does handle the file, it must return the search string to be used
-when following the link.  The search string will be part of the
-file link, given after a double colon, and `org-open-at-point'
-will automatically search for it.  If special measures must be
-taken to make the search successful, another function should be
-added to the companion hook `org-execute-file-search-functions',
-which see.
-
-A function in this hook may also use `setq' to set the variable
-`description' to provide a suggestion for the descriptive text to
-be used for this link when it gets inserted into an Org buffer
-with \\[org-insert-link].")
-
-(defvar org-execute-file-search-functions nil
-  "List of functions to execute a file search triggered by a link.
-
-Functions added to this hook must accept a single argument, the
-search string that was part of the file link, the part after the
-double colon.  The function must first check if it would like to
-handle this search, for example by checking the `major-mode' or
-the file extension.  If it decides not to handle this search, it
-should just return nil to give other functions a chance.  If it
-does handle the search, it must return a non-nil value to keep
-other functions from trying.
-
-Each function can access the current prefix argument through the
-variable `current-prefix-arg'.  Note that a single prefix is used
-to force opening a link in Emacs, so it may be good to only use a
-numeric or double prefix to guide the search function.
-
-In case this is needed, a function in this hook can also restore
-the window configuration before `org-open-at-point' was called using:
-
-    (set-window-configuration org-window-config-before-follow-link)")
-
-(defun org-search-radio-target (target)
-  "Search a radio target matching TARGET in current buffer.
-White spaces are not significant."
-  (let ((re (format "<<<%s>>>"
-		    (mapconcat #'regexp-quote
-			       (split-string target)
-			       "[ \t]+\\(?:\n[ \t]*\\)?")))
-	(origin (point)))
-    (goto-char (point-min))
-    (catch :radio-match
-      (while (re-search-forward re nil t)
-	(backward-char)
-	(let ((object (org-element-context)))
-	  (when (eq (org-element-type object) 'radio-target)
-	    (goto-char (org-element-property :begin object))
-	    (org-show-context 'link-search)
-	    (throw :radio-match nil))))
-      (goto-char origin)
-      (user-error "No match for radio target: %s" target))))
-
-(defun org-link-search (s &optional avoid-pos stealth)
-  "Search for a search string S.
-
-If S starts with \"#\", it triggers a custom ID search.
-
-If S is enclosed within parenthesis, it initiates a coderef
-search.
-
-If S is surrounded by forward slashes, it is interpreted as
-a regular expression.  In Org mode files, this will create an
-`org-occur' sparse tree.  In ordinary files, `occur' will be used
-to list matches.  If the current buffer is in `dired-mode', grep
-will be used to search in all files.
-
-When AVOID-POS is given, ignore matches near that position.
-
-When optional argument STEALTH is non-nil, do not modify
-visibility around point, thus ignoring `org-show-context-detail'
-variable.
-
-Search is case-insensitive and ignores white spaces.  Return type
-of matched result, which is either `dedicated' or `fuzzy'."
-  (unless (org-string-nw-p s) (error "Invalid search string \"%s\"" s))
-  (let* ((case-fold-search t)
-	 (origin (point))
-	 (normalized (replace-regexp-in-string "\n[ \t]*" " " s))
-	 (starred (eq (string-to-char normalized) ?*))
-	 (words (split-string (if starred (substring s 1) s)))
-	 (s-multi-re (mapconcat #'regexp-quote words "\\(?:[ \t\n]+\\)"))
-	 (s-single-re (mapconcat #'regexp-quote words "[ \t]+"))
-	 type)
-    (cond
-     ;; Check if there are any special search functions.
-     ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
-     ((eq (string-to-char s) ?#)
-      ;; Look for a custom ID S if S starts with "#".
-      (let* ((id (substring normalized 1))
-	     (match (org-find-property "CUSTOM_ID" id)))
-	(if match (progn (goto-char match) (setf type 'dedicated))
-	  (error "No match for custom ID: %s" id))))
-     ((string-match "\\`(\\(.*\\))\\'" normalized)
-      ;; Look for coderef targets if S is enclosed within parenthesis.
-      (let ((coderef (match-string-no-properties 1 normalized))
-	    (re (substring s-single-re 1 -1)))
-	(goto-char (point-min))
-	(catch :coderef-match
-	  (while (re-search-forward re nil t)
-	    (let ((element (org-element-at-point)))
-	      (when (and (memq (org-element-type element)
-			       '(example-block src-block))
-			 ;; Build proper regexp according to current
-			 ;; block's label format.
-			 (let ((label-fmt
-				(regexp-quote
-				 (or (org-element-property :label-fmt element)
-				     org-coderef-label-format))))
-			   (save-excursion
-			     (beginning-of-line)
-			     (looking-at (format ".*?\\(%s\\)[ \t]*$"
-						 (format label-fmt coderef))))))
-		(setq type 'dedicated)
-		(goto-char (match-beginning 1))
-		(throw :coderef-match nil))))
-	  (goto-char origin)
-	  (error "No match for coderef: %s" coderef))))
-     ((string-match "\\`/\\(.*\\)/\\'" normalized)
-      ;; Look for a regular expression.
-      (funcall (if (derived-mode-p 'org-mode) #'org-occur #'org-do-occur)
-	       (match-string 1 s)))
-     ;; From here, we handle fuzzy links.
-     ;;
-     ;; Look for targets, only if not in a headline search.
-     ((and (not starred)
-	   (let ((target (format "<<%s>>" s-multi-re)))
-	     (catch :target-match
-	       (goto-char (point-min))
-	       (while (re-search-forward target nil t)
-		 (backward-char)
-		 (let ((context (org-element-context)))
-		   (when (eq (org-element-type context) 'target)
-		     (setq type 'dedicated)
-		     (goto-char (org-element-property :begin context))
-		     (throw :target-match t))))
-	       nil))))
-     ;; Look for elements named after S, only if not in a headline
-     ;; search.
-     ((and (not starred)
-	   (let ((name (format "^[ \t]*#\\+NAME: +%s[ \t]*$" s-single-re)))
-	     (catch :name-match
-	       (goto-char (point-min))
-	       (while (re-search-forward name nil t)
-		 (let ((element (org-element-at-point)))
-		   (when (equal words
-				(split-string
-				 (org-element-property :name element)))
-		     (setq type 'dedicated)
-		     (beginning-of-line)
-		     (throw :name-match t))))
-	       nil))))
-     ;; Regular text search.  Prefer headlines in Org mode buffers.
-     ;; Ignore COMMENT keyword, TODO keywords, priority cookies,
-     ;; statistics cookies and tags.
-     ((and (derived-mode-p 'org-mode)
-	   (let ((title-re
-		  (format "%s.*\\(?:%s[ \t]\\)?.*%s"
-			  org-outline-regexp-bol
-			  org-comment-string
-			  (mapconcat #'regexp-quote words ".+")))
-		 (cookie-re "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]")
-		 (comment-re (eval-when-compile
-			       (format "\\`%s[ \t]+" org-comment-string))))
-	     (goto-char (point-min))
-	     (catch :found
-	       (while (re-search-forward title-re nil t)
-		 (when (equal words
-			      (split-string
-			       (replace-regexp-in-string
-				cookie-re ""
-				(replace-regexp-in-string
-				 comment-re "" (org-get-heading t t t)))))
-		   (throw :found t)))
-	       nil)))
-      (beginning-of-line)
-      (setq type 'dedicated))
-     ;; Offer to create non-existent headline depending on
-     ;; `org-link-search-must-match-exact-headline'.
-     ((and (derived-mode-p 'org-mode)
-	   (not org-link-search-inhibit-query)
-	   (eq org-link-search-must-match-exact-headline 'query-to-create)
-	   (yes-or-no-p "No match - create this as a new heading? "))
-      (goto-char (point-max))
-      (unless (bolp) (newline))
-      (org-insert-heading nil t t)
-      (insert s "\n")
-      (beginning-of-line 0))
-     ;; Only headlines are looked after.  No need to process
-     ;; further: throw an error.
-     ((and (derived-mode-p 'org-mode)
-	   (or starred org-link-search-must-match-exact-headline))
-      (goto-char origin)
-      (error "No match for fuzzy expression: %s" normalized))
-     ;; Regular text search.
-     ((catch :fuzzy-match
-	(goto-char (point-min))
-	(while (re-search-forward s-multi-re nil t)
-	  ;; Skip match if it contains AVOID-POS or it is included in
-	  ;; a link with a description but outside the description.
-	  (unless (or (and avoid-pos
-			   (<= (match-beginning 0) avoid-pos)
-			   (> (match-end 0) avoid-pos))
-		      (and (save-match-data
-			     (org-in-regexp org-bracket-link-regexp))
-			   (match-beginning 3)
-			   (or (> (match-beginning 3) (point))
-			       (<= (match-end 3) (point)))
-			   (org-element-lineage
-			    (save-match-data (org-element-context))
-			    '(link) t)))
-	    (goto-char (match-beginning 0))
-	    (setq type 'fuzzy)
-	    (throw :fuzzy-match t)))
-	nil))
-     ;; All failed.  Throw an error.
-     (t (goto-char origin)
-	(error "No match for fuzzy expression: %s" normalized)))
-    ;; Disclose surroundings of match, if appropriate.
-    (when (and (derived-mode-p 'org-mode) (not stealth))
-      (org-show-context 'link-search))
-    type))
-
-(defun org-get-buffer-for-internal-link (buffer)
-  "Return a buffer to be used for displaying the link target of internal links."
-  (cond
-   ((not org-display-internal-link-with-indirect-buffer)
-    buffer)
-   ((string-suffix-p "(Clone)" (buffer-name buffer))
-    (message "Buffer is already a clone, not making another one")
-    ;; we also do not modify visibility in this case
-    buffer)
-   (t ; make a new indirect buffer for displaying the link
-    (let* ((bn (buffer-name buffer))
-	   (ibn (concat bn "(Clone)"))
-	   (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
-      (with-current-buffer ib (org-overview))
-      ib))))
-
-(defun org-do-occur (regexp &optional cleanup)
-  "Call the Emacs command `occur'.
-If CLEANUP is non-nil, remove the printout of the regular expression
-in the *Occur* buffer.  This is useful if the regex is long and not useful
-to read."
-  (occur regexp)
-  (when cleanup
-    (let ((cwin (selected-window)) win beg end)
-      (when (setq win (get-buffer-window "*Occur*"))
-	(select-window win))
-      (goto-char (point-min))
-      (when (re-search-forward "match[a-z]+" nil t)
-	(setq beg (match-end 0))
-	(when (re-search-forward "^[ \t]*[0-9]+" nil t)
-	  (setq end (1- (match-beginning 0)))))
-      (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
-      (goto-char (point-min))
-      (select-window cwin))))
-
-;;; The mark ring for links jumps
-
-(defvar org-mark-ring nil
-  "Mark ring for positions before jumps in Org mode.")
-(defvar org-mark-ring-last-goto nil
-  "Last position in the mark ring used to go back.")
-;; Fill and close the ring
-(setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
-(dotimes (_ org-mark-ring-length)
-  (push (make-marker) org-mark-ring))
-(setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
-	org-mark-ring)
-
-(defun org-mark-ring-push (&optional pos buffer)
-  "Put the current position or POS into the mark ring and rotate it."
-  (interactive)
-  (setq pos (or pos (point)))
-  (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
-  (move-marker (car org-mark-ring)
-	       (or pos (point))
-	       (or buffer (current-buffer)))
-  (message "%s"
-	   (substitute-command-keys
-	    "Position saved to mark ring, go back with \
-`\\[org-mark-ring-goto]'.")))
-
-(defun org-mark-ring-goto (&optional n)
-  "Jump to the previous position in the mark ring.
-With prefix arg N, jump back that many stored positions.  When
-called several times in succession, walk through the entire ring.
-Org mode commands jumping to a different position in the current file,
-or to another Org file, automatically push the old position onto the ring."
-  (interactive "p")
-  (let (p m)
-    (if (eq last-command this-command)
-	(setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
-      (setq p org-mark-ring))
-    (setq org-mark-ring-last-goto p)
-    (setq m (car p))
-    (pop-to-buffer-same-window (marker-buffer m))
-    (goto-char m)
-    (when (or (org-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
-
-(defun org-add-angle-brackets (s)
-  (unless (equal (substring s 0 1) "<") (setq s (concat "<" s)))
-  (unless (equal (substring s -1) ">") (setq s (concat s ">")))
-  s)
-
-;;; Following specific links
-
-(defvar org-agenda-buffer-tmp-name)
-(defvar org-agenda-start-on-weekday)
-(defun org-follow-timestamp-link ()
-  "Open an agenda view for the time-stamp date/range at point."
-  (cond
-   ((org-at-date-range-p t)
-    (let ((org-agenda-start-on-weekday)
-	  (t1 (match-string 1))
-	  (t2 (match-string 2)) tt1 tt2)
-      (setq tt1 (time-to-days (org-time-string-to-time t1))
-	    tt2 (time-to-days (org-time-string-to-time t2)))
-      (let ((org-agenda-buffer-tmp-name
-	     (format "*Org Agenda(a:%s)"
-		     (concat (substring t1 0 10) "--" (substring t2 0 10)))))
-	(org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
-   ((org-at-timestamp-p 'lax)
-    (let ((org-agenda-buffer-tmp-name
-	   (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
-      (org-agenda-list nil (time-to-days (org-time-string-to-time
-					  (substring (match-string 1) 0 10)))
-		       1)))
-   (t (error "This should not happen"))))
-
-
-;;; Following file links
-(declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
-(declare-function mailcap-extension-to-mime "mailcap" (extn))
-(declare-function mailcap-mime-info
-		  "mailcap" (string &optional request no-decode))
-(defvar org-wait nil)
-(defun org-open-file (path &optional in-emacs line search)
-  "Open the file at PATH.
-First, this expands any special file name abbreviations.  Then the
-configuration variable `org-file-apps' is checked if it contains an
-entry for this file type, and if yes, the corresponding command is launched.
-
-If no application is found, Emacs simply visits the file.
-
-With optional prefix argument IN-EMACS, Emacs will visit the file.
-With a double \\[universal-argument] \\[universal-argument] \
-prefix arg, Org tries to avoid opening in Emacs
-and to use an external application to visit the file.
-
-Optional LINE specifies a line to go to, optional SEARCH a string
-to search for.  If LINE or SEARCH is given, the file will be
-opened in Emacs, unless an entry from org-file-apps that makes
-use of groups in a regexp matches.
-
-If you want to change the way frames are used when following a
-link, please customize `org-link-frame-setup'.
-
-If the file does not exist, an error is thrown."
-  (let* ((file (if (equal path "")
-		   buffer-file-name
-		 (substitute-in-file-name (expand-file-name path))))
-	 (file-apps (append org-file-apps (org-default-apps)))
-	 (apps (cl-remove-if
-		'org-file-apps-entry-match-against-dlink-p file-apps))
-	 (apps-dlink (cl-remove-if-not
-		      'org-file-apps-entry-match-against-dlink-p file-apps))
-	 (remp (and (assq 'remote apps) (org-file-remote-p file)))
-	 (dirp (unless remp (file-directory-p file)))
-	 (file (if (and dirp org-open-directory-means-index-dot-org)
-		   (concat (file-name-as-directory file) "index.org")
-		 file))
-	 (a-m-a-p (assq 'auto-mode apps))
-	 (dfile (downcase file))
-	 ;; Reconstruct the original link from the PATH, LINE and
-	 ;; SEARCH args.
-	 (link (cond (line (concat file "::" (number-to-string line)))
-		     (search (concat file "::" search))
-		     (t file)))
-	 (dlink (downcase link))
-	 (ext
-	  (and (string-match "\\`.*?\\.\\([a-zA-Z0-9]+\\(\\.gz\\)?\\)\\'" dfile)
-	       (match-string 1 dfile)))
-	 (save-position-maybe
-	  (let ((old-buffer (current-buffer))
-		(old-pos (point))
-		(old-mode major-mode))
-	    (lambda ()
-	      (and (derived-mode-p 'org-mode)
-		   (eq old-mode 'org-mode)
-		   (or (not (eq old-buffer (current-buffer)))
-		       (not (eq old-pos (point))))
-		   (org-mark-ring-push old-pos old-buffer)))))
-	 cmd link-match-data)
-    (cond
-     ((member in-emacs '((16) system))
-      (setq cmd (cdr (assq 'system apps))))
-     (in-emacs (setq cmd 'emacs))
-     (t
-      (setq cmd (or (and remp (cdr (assq 'remote apps)))
-		    (and dirp (cdr (assq 'directory apps)))
-		    ;; First, try matching against apps-dlink if we
-		    ;; get a match here, store the match data for
-		    ;; later.
-		    (let ((match (assoc-default dlink apps-dlink
-						'string-match)))
-		      (if match
-			  (progn (setq link-match-data (match-data))
-				 match)
-			(progn (setq in-emacs (or in-emacs line search))
-			       nil))) ; if we have no match in apps-dlink,
-					; always open the file in emacs if line or search
-					; is given (for backwards compatibility)
-		    (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
-				   'string-match)
-		    (cdr (assoc ext apps))
-		    (cdr (assq t apps))))))
-    (when (eq cmd 'system)
-      (setq cmd (cdr (assq 'system apps))))
-    (when (eq cmd 'default)
-      (setq cmd (cdr (assoc t apps))))
-    (when (eq cmd 'mailcap)
-      (require 'mailcap)
-      (mailcap-parse-mailcaps)
-      (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
-	     (command (mailcap-mime-info mime-type)))
-	(if (stringp command)
-	    (setq cmd command)
-	  (setq cmd 'emacs))))
-    (when (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
-	       (not (file-exists-p file))
-	       (not org-open-non-existing-files))
-      (user-error "No such file: %s" file))
-    (cond
-     ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
-      ;; Remove quotes around the file name - we'll use shell-quote-argument.
-      (while (string-match "['\"]%s['\"]" cmd)
-	(setq cmd (replace-match "%s" t t cmd)))
-      (setq cmd (replace-regexp-in-string
-		 "%s"
-		 (shell-quote-argument (convert-standard-filename file))
-		 cmd
-		 nil t))
-
-      ;; Replace "%1", "%2" etc. in command with group matches from regex
-      (save-match-data
-	(let ((match-index 1)
-	      (number-of-groups (- (/ (length link-match-data) 2) 1)))
-	  (set-match-data link-match-data)
-	  (while (<= match-index number-of-groups)
-	    (let ((regex (concat "%" (number-to-string match-index)))
-		  (replace-with (match-string match-index dlink)))
-	      (while (string-match regex cmd)
-		(setq cmd (replace-match replace-with t t cmd))))
-	    (setq match-index (+ match-index 1)))))
-
-      (save-window-excursion
-	(message "Running %s...done" cmd)
-	(start-process-shell-command cmd nil cmd)
-	(and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
-     ((or (stringp cmd)
-	  (eq cmd 'emacs))
-      (funcall (cdr (assq 'file org-link-frame-setup)) file)
-      (widen)
-      (cond (line (org-goto-line line)
-		  (when (derived-mode-p 'org-mode) (org-reveal)))
-	    (search (condition-case err
-			(org-link-search search)
-		      ;; Save position before error-ing out so user
-		      ;; can easily move back to the original buffer.
-		      (error (funcall save-position-maybe)
-			     (error (nth 1 err)))))))
-     ((functionp cmd)
-      (save-match-data
-	(set-match-data link-match-data)
-	(condition-case nil
-	    (funcall cmd file link)
-	  ;; FIXME: Remove this check when most default installations
-	  ;; of Emacs have at least Org 9.0.
-	  ((debug wrong-number-of-arguments wrong-type-argument
-		  invalid-function)
-	   (user-error "Please see Org News for version 9.0 about \
-`org-file-apps'--Lisp error: %S" cmd)))))
-     ((consp cmd)
-      ;; FIXME: Remove this check when most default installations of
-      ;; Emacs have at least Org 9.0.  Heads-up instead of silently
-      ;; fall back to `org-link-frame-setup' for an old usage of
-      ;; `org-file-apps' with sexp instead of a function for `cmd'.
-      (user-error "Please see Org News for version 9.0 about \
-`org-file-apps'--Error: Deprecated usage of %S" cmd))
-     (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
-    (funcall save-position-maybe)))
-
-(defun org-file-apps-entry-match-against-dlink-p (entry)
-  "This function returns non-nil if `entry' uses a regular
-expression which should be matched against the whole link by
-org-open-file.
-
-It assumes that is the case when the entry uses a regular
-expression which has at least one grouping construct and the
-action is either a lisp form or a command string containing
-`%1', i.e. using at least one subexpression match as a
-parameter."
-  (let ((selector (car entry))
-	(action (cdr entry)))
-    (if (stringp selector)
-	(and (> (regexp-opt-depth selector) 0)
-	     (or (and (stringp action)
-		      (string-match "%[0-9]" action))
-		 (consp action)))
-      nil)))
-
-(defun org-default-apps ()
-  "Return the default applications for this operating system."
-  (cond
-   ((eq system-type 'darwin)
-    org-file-apps-defaults-macosx)
-   ((eq system-type 'windows-nt)
-    org-file-apps-defaults-windowsnt)
-   (t org-file-apps-defaults-gnu)))
-
-(defun org-apps-regexp-alist (list &optional add-auto-mode)
-  "Convert extensions to regular expressions in the cars of LIST.
-Also, weed out any non-string entries, because the return value is used
-only for regexp matching.
-When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
-point to the symbol `emacs', indicating that the file should
-be opened in Emacs."
-  (append
-   (delq nil
-	 (mapcar (lambda (x)
-		   (unless (not (stringp (car x)))
-		     (if (string-match "\\W" (car x))
-			 x
-		       (cons (concat "\\." (car x) "\\'") (cdr x)))))
-		 list))
-   (when add-auto-mode
-     (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
-
-(defvar ange-ftp-name-format)
-(defun org-file-remote-p (file)
-  "Test whether FILE specifies a location on a remote system.
-Return non-nil if the location is indeed remote.
-
-For example, the filename \"/user@host:/foo\" specifies a location
-on the system \"/user@host:\"."
-  (cond ((fboundp 'file-remote-p)
-         (file-remote-p file))
-        ((fboundp 'tramp-handle-file-remote-p)
-         (tramp-handle-file-remote-p file))
-        ((and (boundp 'ange-ftp-name-format)
-              (string-match (car ange-ftp-name-format) file))
-         t)))
-
-
-;;;; Refiling
-
-(defun org-get-org-file ()
-  "Read a filename, with default directory `org-directory'."
-  (let ((default (or org-default-notes-file remember-data-file)))
-    (read-file-name (format "File name [%s]: " default)
-		    (file-name-as-directory org-directory)
-		    default)))
-
-(defun org-notes-order-reversed-p ()
-  "Check if the current file should receive notes in reversed order."
-  (cond
-   ((not org-reverse-note-order) nil)
-   ((eq t org-reverse-note-order) t)
-   ((not (listp org-reverse-note-order)) nil)
-   (t (catch 'exit
-        (dolist (entry org-reverse-note-order)
-          (when (string-match (car entry) buffer-file-name)
-	    (throw 'exit (cdr entry))))))))
-
-(defvar org-refile-target-table nil
-  "The list of refile targets, created by `org-refile'.")
-
-(defvar org-agenda-new-buffers nil
-  "Buffers created to visit agenda files.")
-
-(defvar org-refile-cache nil
-  "Cache for refile targets.")
-
-(defvar org-refile-markers nil
-  "All the markers used for caching refile locations.")
-
-(defun org-refile-marker (pos)
-  "Get a new refile marker, but only if caching is in use."
-  (if (not org-refile-use-cache)
-      pos
-    (let ((m (make-marker)))
-      (move-marker m pos)
-      (push m org-refile-markers)
-      m)))
-
-(defun org-refile-cache-clear ()
-  "Clear the refile cache and disable all the markers."
-  (dolist (m org-refile-markers) (move-marker m nil))
-  (setq org-refile-markers nil)
-  (setq org-refile-cache nil)
-  (message "Refile cache has been cleared"))
-
-(defun org-refile-cache-check-set (set)
-  "Check if all the markers in the cache still have live buffers."
-  (let (marker)
-    (catch 'exit
-      (while (and set (setq marker (nth 3 (pop set))))
-	;; If `org-refile-use-outline-path' is 'file, marker may be nil
-	(when (and marker (null (marker-buffer marker)))
-	  (message "Please regenerate the refile cache with `C-0 C-c C-w'")
-	  (sit-for 3)
-	  (throw 'exit nil)))
-      t)))
-
-(defun org-refile-cache-put (set &rest identifiers)
-  "Push the refile targets SET into the cache, under IDENTIFIERS."
-  (let* ((key (sha1 (prin1-to-string identifiers)))
-	 (entry (assoc key org-refile-cache)))
-    (if entry
-	(setcdr entry set)
-      (push (cons key set) org-refile-cache))))
-
-(defun org-refile-cache-get (&rest identifiers)
-  "Retrieve the cached value for refile targets given by IDENTIFIERS."
-  (cond
-   ((not org-refile-cache) nil)
-   ((not org-refile-use-cache) (org-refile-cache-clear) nil)
-   (t
-    (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
-			   org-refile-cache))))
-      (and set (org-refile-cache-check-set set) set)))))
-
-(defvar org-outline-path-cache nil
-  "Alist between buffer positions and outline paths.
-It value is an alist (POSITION . PATH) where POSITION is the
-buffer position at the beginning of an entry and PATH is a list
-of strings describing the outline path for that entry, in reverse
-order.")
-
-(defun org-refile-get-targets (&optional default-buffer)
-  "Produce a table with refile targets."
-  (let ((case-fold-search nil)
-	;; otherwise org confuses "TODO" as a kw and "Todo" as a word
-	(entries (or org-refile-targets '((nil . (:level . 1)))))
-	targets tgs files desc descre)
-    (message "Getting targets...")
-    (with-current-buffer (or default-buffer (current-buffer))
-      (dolist (entry entries)
-	(setq files (car entry) desc (cdr entry))
-	(cond
-	 ((null files) (setq files (list (current-buffer))))
-	 ((eq files 'org-agenda-files)
-	  (setq files (org-agenda-files 'unrestricted)))
-	 ((and (symbolp files) (fboundp files))
-	  (setq files (funcall files)))
-	 ((and (symbolp files) (boundp files))
-	  (setq files (symbol-value files))))
-	(when (stringp files) (setq files (list files)))
-	(cond
-	 ((eq (car desc) :tag)
-	  (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
-	 ((eq (car desc) :todo)
-	  (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
-	 ((eq (car desc) :regexp)
-	  (setq descre (cdr desc)))
-	 ((eq (car desc) :level)
-	  (setq descre (concat "^\\*\\{" (number-to-string
-					  (if org-odd-levels-only
-					      (1- (* 2 (cdr desc)))
-					    (cdr desc)))
-			       "\\}[ \t]")))
-	 ((eq (car desc) :maxlevel)
-	  (setq descre (concat "^\\*\\{1," (number-to-string
-					    (if org-odd-levels-only
-						(1- (* 2 (cdr desc)))
-					      (cdr desc)))
-			       "\\}[ \t]")))
-	 (t (error "Bad refiling target description %s" desc)))
-	(dolist (f files)
-	  (with-current-buffer (if (bufferp f) f (org-get-agenda-file-buffer f))
-	    (or
-	     (setq tgs (org-refile-cache-get (buffer-file-name) descre))
-	     (progn
-	       (when (bufferp f)
-		 (setq f (buffer-file-name (buffer-base-buffer f))))
-	       (setq f (and f (expand-file-name f)))
-	       (when (eq org-refile-use-outline-path 'file)
-		 (push (list (file-name-nondirectory f) f nil nil) tgs))
-	       (when (eq org-refile-use-outline-path 'buffer-name)
-		 (push (list (buffer-name (buffer-base-buffer)) f nil nil) tgs))
-	       (when (eq org-refile-use-outline-path 'full-file-path)
-		 (push (list (file-truename (buffer-file-name (buffer-base-buffer))) f nil nil) tgs))
-	       (org-with-wide-buffer
-		(goto-char (point-min))
-		(setq org-outline-path-cache nil)
-		(while (re-search-forward descre nil t)
-		  (beginning-of-line)
-		  (let ((case-fold-search nil))
-		    (looking-at org-complex-heading-regexp))
-		  (let ((begin (point))
-			(heading (match-string-no-properties 4)))
-		    (unless (or (and
-				 org-refile-target-verify-function
-				 (not
-				  (funcall org-refile-target-verify-function)))
-				(not heading))
-		      (let ((re (format org-complex-heading-regexp-format
-					(regexp-quote heading)))
-			    (target
-			     (if (not org-refile-use-outline-path) heading
-			       (mapconcat
-				#'identity
-				(append
-				 (pcase org-refile-use-outline-path
-				   (`file (list (file-name-nondirectory
-						 (buffer-file-name
-						  (buffer-base-buffer)))))
-				   (`full-file-path
-				    (list (buffer-file-name
-					   (buffer-base-buffer))))
-				   (`buffer-name
-				    (list (buffer-name
-					   (buffer-base-buffer))))
-				   (_ nil))
-				 (mapcar (lambda (s) (replace-regexp-in-string
-						 "/" "\\/" s nil t))
-					 (org-get-outline-path t t)))
-				"/"))))
-			(push (list target f re (org-refile-marker (point)))
-			      tgs)))
-		    (when (= (point) begin)
-		      ;; Verification function has not moved point.
-		      (end-of-line)))))))
-	    (when org-refile-use-cache
-	      (org-refile-cache-put tgs (buffer-file-name) descre))
-	    (setq targets (append tgs targets))))))
-    (message "Getting targets...done")
-    (delete-dups (nreverse targets))))
-
-(defun org--get-outline-path-1 (&optional use-cache)
-  "Return outline path to current headline.
-
-Outline path is a list of strings, in reverse order.  When
-optional argument USE-CACHE is non-nil, make use of a cache.  See
-`org-get-outline-path' for details.
-
-Assume buffer is widened and point is on a headline."
-  (or (and use-cache (cdr (assq (point) org-outline-path-cache)))
-      (let ((p (point))
-	    (heading (let ((case-fold-search nil))
-		       (looking-at org-complex-heading-regexp)
-		       (if (not (match-end 4)) ""
-			 ;; Remove statistics cookies.
-			 (org-trim
-			  (org-link-display-format
-			   (replace-regexp-in-string
-			    "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
-			    (match-string-no-properties 4))))))))
-	(if (org-up-heading-safe)
-	    (let ((path (cons heading (org--get-outline-path-1 use-cache))))
-	      (when use-cache
-		(push (cons p path) org-outline-path-cache))
-	      path)
-	  ;; This is a new root node.  Since we assume we are moving
-	  ;; forward, we can drop previous cache so as to limit number
-	  ;; of associations there.
-	  (let ((path (list heading)))
-	    (when use-cache (setq org-outline-path-cache (list (cons p path))))
-	    path)))))
-
-(defun org-get-outline-path (&optional with-self use-cache)
-  "Return the outline path to the current entry.
-
-An outline path is a list of ancestors for current headline, as
-a list of strings.  Statistics cookies are removed and links are
-replaced with their description, if any, or their path otherwise.
-
-When optional argument WITH-SELF is non-nil, the path also
-includes the current headline.
-
-When optional argument USE-CACHE is non-nil, cache outline paths
-between calls to this function so as to avoid backtracking.  This
-argument is useful when planning to find more than one outline
-path in the same document.  In that case, there are two
-conditions to satisfy:
-  - `org-outline-path-cache' is set to nil before starting the
-    process;
-  - outline paths are computed by increasing buffer positions."
-  (org-with-wide-buffer
-   (and (or (and with-self (org-back-to-heading t))
-	    (org-up-heading-safe))
-	(reverse (org--get-outline-path-1 use-cache)))))
-
-(defun org-format-outline-path (path &optional width prefix separator)
-  "Format the outline path PATH for display.
-WIDTH is the maximum number of characters that is available.
-PREFIX is a prefix to be included in the returned string,
-such as the file name.
-SEPARATOR is inserted between the different parts of the path,
-the default is \"/\"."
-  (setq width (or width 79))
-  (setq path (delq nil path))
-  (unless (> width 0)
-    (user-error "Argument `width' must be positive"))
-  (setq separator (or separator "/"))
-  (let* ((org-odd-levels-only nil)
-	 (fpath (concat
-		 prefix (and prefix path separator)
-		 (mapconcat
-		  (lambda (s) (replace-regexp-in-string "[ \t]+\\'" "" s))
-		  (cl-loop for head in path
-			   for n from 0
-			   collect (org-add-props
-				       head nil 'face
-				       (nth (% n org-n-level-faces) org-level-faces)))
-		  separator))))
-    (when (> (length fpath) width)
-      (if (< width 7)
-	  ;; It's unlikely that `width' will be this small, but don't
-	  ;; waste characters by adding ".." if it is.
-	  (setq fpath (substring fpath 0 width))
-	(setf (substring fpath (- width 2)) "..")))
-    fpath))
-
-(defun org-display-outline-path (&optional file current separator just-return-string)
-  "Display the current outline path in the echo area.
-
-If FILE is non-nil, prepend the output with the file name.
-If CURRENT is non-nil, append the current heading to the output.
-SEPARATOR is passed through to `org-format-outline-path'.  It separates
-the different parts of the path and defaults to \"/\".
-If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
-  (interactive "P")
-  (let* (case-fold-search
-	 (bfn (buffer-file-name (buffer-base-buffer)))
-	 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
-	 res)
-    (when current (setq path (append path
-				     (save-excursion
-				       (org-back-to-heading t)
-				       (when (looking-at org-complex-heading-regexp)
-					 (list (match-string 4)))))))
-    (setq res
-	  (org-format-outline-path
-	   path
-	   (1- (frame-width))
-	   (and file bfn (concat (file-name-nondirectory bfn) separator))
-	   separator))
-    (if just-return-string
-	(org-no-properties res)
-      (org-unlogged-message "%s" res))))
-
-(defvar org-refile-history nil
-  "History for refiling operations.")
-
-(defvar org-after-refile-insert-hook nil
-  "Hook run after `org-refile' has inserted its stuff at the new location.
-Note that this is still *before* the stuff will be removed from
-the *old* location.")
-
-(defvar org-capture-last-stored-marker)
-(defvar org-refile-keep nil
-  "Non-nil means `org-refile' will copy instead of refile.")
-
-(defun org-copy ()
-  "Like `org-refile', but copy."
-  (interactive)
-  (let ((org-refile-keep t))
-    (funcall 'org-refile nil nil nil "Copy")))
-
-(defun org-refile (&optional arg default-buffer rfloc msg)
-  "Move the entry or entries at point to another heading.
-
-The list of target headings is compiled using the information in
-`org-refile-targets', which see.
-
-At the target location, the entry is filed as a subitem of the
-target heading.  Depending on `org-reverse-note-order', the new
-subitem will either be the first or the last subitem.
-
-If there is an active region, all entries in that region will be
-refiled.  However, the region must fulfill the requirement that
-the first heading sets the top-level of the moved text.
-
-With a `\\[universal-argument]' ARG, the command will only visit the target \
-location
-and not actually move anything.
-
-With a prefix `\\[universal-argument] \\[universal-argument]', go to the \
-location where the last
-refiling operation has put the subtree.
-
-With a numeric prefix argument of `2', refile to the running clock.
-
-With a numeric prefix argument of `3', emulate `org-refile-keep'
-being set to t and copy to the target location, don't move it.
-Beware that keeping refiled entries may result in duplicated ID
-properties.
-
-RFLOC can be a refile location obtained in a different way.
-
-MSG is a string to replace \"Refile\" in the default prompt with
-another verb.  E.g. `org-copy' sets this parameter to \"Copy\".
-
-See also `org-refile-use-outline-path'.
-
-If you are using target caching (see `org-refile-use-cache'), you
-have to clear the target cache in order to find new targets.
-This can be done with a `0' prefix (`C-0 C-c C-w') or a triple
-prefix argument (`C-u C-u C-u C-c C-w')."
-  (interactive "P")
-  (if (member arg '(0 (64)))
-      (org-refile-cache-clear)
-    (let* ((actionmsg (cond (msg msg)
-			    ((equal arg 3) "Refile (and keep)")
-			    (t "Refile")))
-	   (regionp (org-region-active-p))
-	   (region-start (and regionp (region-beginning)))
-	   (region-end (and regionp (region-end)))
-	   (org-refile-keep (if (equal arg 3) t org-refile-keep))
-	   pos it nbuf file level reversed)
-      (setq last-command nil)
-      (when regionp
-	(goto-char region-start)
-	(or (bolp) (goto-char (point-at-bol)))
-	(setq region-start (point))
-	(unless (or (org-kill-is-subtree-p
-		     (buffer-substring region-start region-end))
-		    (prog1 org-refile-active-region-within-subtree
-		      (let ((s (point-at-eol)))
-			(org-toggle-heading)
-			(setq region-end (+ (- (point-at-eol) s) region-end)))))
-	  (user-error "The region is not a (sequence of) subtree(s)")))
-      (if (equal arg '(16))
-	  (org-refile-goto-last-stored)
-	(when (or
-	       (and (equal arg 2)
-		    org-clock-hd-marker (marker-buffer org-clock-hd-marker)
-		    (prog1
-			(setq it (list (or org-clock-heading "running clock")
-				       (buffer-file-name
-					(marker-buffer org-clock-hd-marker))
-				       ""
-				       (marker-position org-clock-hd-marker)))
-		      (setq arg nil)))
-	       (setq it
-		     (or rfloc
-			 (let (heading-text)
-			   (save-excursion
-			     (unless (and arg (listp arg))
-			       (org-back-to-heading t)
-			       (setq heading-text
-				     (replace-regexp-in-string
-				      org-bracket-link-regexp
-				      "\\3"
-				      (or (nth 4 (org-heading-components))
-					  ""))))
-			     (org-refile-get-location
-			      (cond ((and arg (listp arg)) "Goto")
-				    (regionp (concat actionmsg " region to"))
-				    (t (concat actionmsg " subtree \""
-					       heading-text "\" to")))
-			      default-buffer
-			      (and (not (equal '(4) arg))
-				   org-refile-allow-creating-parent-nodes)))))))
-	  (setq file (nth 1 it)
-		pos (nth 3 it))
-	  (when (and (not arg)
-		     pos
-		     (equal (buffer-file-name) file)
-		     (if regionp
-			 (and (>= pos region-start)
-			      (<= pos region-end))
-		       (and (>= pos (point))
-			    (< pos (save-excursion
-				     (org-end-of-subtree t t))))))
-	    (error "Cannot refile to position inside the tree or region"))
-	  (setq nbuf (or (find-buffer-visiting file)
-			 (find-file-noselect file)))
-	  (if (and arg (not (equal arg 3)))
-	      (progn
-		(pop-to-buffer-same-window nbuf)
-		(goto-char (cond (pos)
-				 ((org-notes-order-reversed-p) (point-min))
-				 (t (point-max))))
-		(org-show-context 'org-goto))
-	    (if regionp
-		(progn
-		  (org-kill-new (buffer-substring region-start region-end))
-		  (org-save-markers-in-region region-start region-end))
-	      (org-copy-subtree 1 nil t))
-	    (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
-						(find-file-noselect file)))
-	      (setq reversed (org-notes-order-reversed-p))
-	      (org-with-wide-buffer
-	       (if pos
-		   (progn
-		     (goto-char pos)
-		     (setq level (org-get-valid-level (funcall outline-level) 1))
-		     (goto-char
-		      (if reversed
-			  (or (outline-next-heading) (point-max))
-			(or (save-excursion (org-get-next-sibling))
-			    (org-end-of-subtree t t)
-			    (point-max)))))
-		 (setq level 1)
-		 (if (not reversed)
-		     (goto-char (point-max))
-		   (goto-char (point-min))
-		   (or (outline-next-heading) (goto-char (point-max)))))
-	       (unless (bolp) (newline))
-	       (org-paste-subtree level nil nil t)
-	       (when org-log-refile
-		 (org-add-log-setup 'refile nil nil org-log-refile)
-		 (unless (eq org-log-refile 'note)
-		   (save-excursion (org-add-log-note))))
-	       (and org-auto-align-tags
-		    (let ((org-loop-over-headlines-in-active-region nil))
-		      (org-set-tags nil t)))
-	       (let ((bookmark-name (plist-get org-bookmark-names-plist
-					       :last-refile)))
-		 (when bookmark-name
-		   (with-demoted-errors
-		       (bookmark-set bookmark-name))))
-	       ;; If we are refiling for capture, make sure that the
-	       ;; last-capture pointers point here
-	       (when (bound-and-true-p org-capture-is-refiling)
-		 (let ((bookmark-name (plist-get org-bookmark-names-plist
-						 :last-capture-marker)))
-		   (when bookmark-name
-		     (with-demoted-errors
-			 (bookmark-set bookmark-name))))
-		 (move-marker org-capture-last-stored-marker (point)))
-	       (when (fboundp 'deactivate-mark) (deactivate-mark))
-	       (run-hooks 'org-after-refile-insert-hook)))
-	    (unless org-refile-keep
-	      (if regionp
-		  (delete-region (point) (+ (point) (- region-end region-start)))
-		(delete-region
-		 (and (org-back-to-heading t) (point))
-		 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
-	    (when (featurep 'org-inlinetask)
-	      (org-inlinetask-remove-END-maybe))
-	    (setq org-markers-to-move nil)
-	    (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
-
-(defun org-refile-goto-last-stored ()
-  "Go to the location where the last refile was stored."
-  (interactive)
-  (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
-  (message "This is the location of the last refile"))
-
-(defun org-refile--get-location (refloc tbl)
-  "When user refile to REFLOC, find the associated target in TBL.
-Also check `org-refile-target-table'."
-  (car (delq
-	nil
-	(mapcar
-	 (lambda (r) (or (assoc r tbl)
-			 (assoc r org-refile-target-table)))
-	 (list (replace-regexp-in-string "/$" "" refloc)
-	       (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
-
-(defun org-refile-get-location (&optional prompt default-buffer new-nodes)
-  "Prompt the user for a refile location, using PROMPT.
-PROMPT should not be suffixed with a colon and a space, because
-this function appends the default value from
-`org-refile-history' automatically, if that is not empty."
-  (let ((org-refile-targets org-refile-targets)
-	(org-refile-use-outline-path org-refile-use-outline-path))
-    (setq org-refile-target-table (org-refile-get-targets default-buffer)))
-  (unless org-refile-target-table
-    (user-error "No refile targets"))
-  (let* ((cbuf (current-buffer))
-	 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
-	 (cfunc (if (and org-refile-use-outline-path
-			 org-outline-path-complete-in-steps)
-		    #'org-olpath-completing-read
-		  #'completing-read))
-	 (extra (if org-refile-use-outline-path "/" ""))
-	 (cbnex (concat (buffer-name) extra))
-	 (filename (and cfn (expand-file-name cfn)))
-	 (tbl (mapcar
-	       (lambda (x)
-		 (if (and (not (member org-refile-use-outline-path
-				       '(file full-file-path)))
-			  (not (equal filename (nth 1 x))))
-		     (cons (concat (car x) extra " ("
-				   (file-name-nondirectory (nth 1 x)) ")")
-			   (cdr x))
-		   (cons (concat (car x) extra) (cdr x))))
-	       org-refile-target-table))
-	 (completion-ignore-case t)
-	 cdef
-	 (prompt (concat prompt
-			 (or (and (car org-refile-history)
-				  (concat " (default " (car org-refile-history) ")"))
-			     (and (assoc cbnex tbl) (setq cdef cbnex)
-				  (concat " (default " cbnex ")"))) ": "))
-	 pa answ parent-target child parent old-hist)
-    (setq old-hist org-refile-history)
-    (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
-			nil 'org-refile-history (or cdef (car org-refile-history))))
-    (if (setq pa (org-refile--get-location answ tbl))
-	(progn
-	  (org-refile-check-position pa)
-	  (when (or (not org-refile-history)
-		    (not (eq old-hist org-refile-history))
-		    (not (equal (car pa) (car org-refile-history))))
-	    (setq org-refile-history
-		  (cons (car pa) (if (assoc (car org-refile-history) tbl)
-				     org-refile-history
-				   (cdr org-refile-history))))
-	    (when (equal (car org-refile-history) (nth 1 org-refile-history))
-	      (pop org-refile-history)))
-	  pa)
-      (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
-	  (progn
-	    (setq parent (match-string 1 answ)
-		  child (match-string 2 answ))
-	    (setq parent-target (org-refile--get-location parent tbl))
-	    (when (and parent-target
-		       (or (eq new-nodes t)
-			   (and (eq new-nodes 'confirm)
-				(y-or-n-p (format "Create new node \"%s\"? "
-						  child)))))
-	      (org-refile-new-child parent-target child)))
-	(user-error "Invalid target location")))))
-
-(declare-function org-string-nw-p "org-macs" (s))
-(defun org-refile-check-position (refile-pointer)
-  "Check if the refile pointer matches the headline to which it points."
-  (let* ((file (nth 1 refile-pointer))
-	 (re (nth 2 refile-pointer))
-	 (pos (nth 3 refile-pointer))
-	 buffer)
-    (if (and (not (markerp pos)) (not file))
-	(user-error "Please indicate a target file in the refile path")
-      (when (org-string-nw-p re)
-	(setq buffer (if (markerp pos)
-			 (marker-buffer pos)
-		       (or (find-buffer-visiting file)
-			   (find-file-noselect file))))
-	(with-current-buffer buffer
-	  (org-with-wide-buffer
-	   (goto-char pos)
-	   (beginning-of-line 1)
-	   (unless (looking-at-p re)
-	     (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling"))))))))
-
-(defun org-refile-new-child (parent-target child)
-  "Use refile target PARENT-TARGET to add new CHILD below it."
-  (unless parent-target
-    (error "Cannot find parent for new node"))
-  (let ((file (nth 1 parent-target))
-	(pos (nth 3 parent-target))
-	level)
-    (with-current-buffer (or (find-buffer-visiting file)
-			     (find-file-noselect file))
-      (org-with-wide-buffer
-       (if pos
-	   (goto-char pos)
-	 (goto-char (point-max))
-	 (unless (bolp) (newline)))
-       (when (looking-at org-outline-regexp)
-	 (setq level (funcall outline-level))
-	 (org-end-of-subtree t t))
-       (org-back-over-empty-lines)
-       (insert "\n" (make-string
-		     (if pos (org-get-valid-level level 1) 1) ?*)
-	       " " child "\n")
-       (beginning-of-line 0)
-       (list (concat (car parent-target) "/" child) file "" (point))))))
-
-(defun org-olpath-completing-read (prompt collection &rest args)
-  "Read an outline path like a file name."
-  (let ((thetable collection))
-    (apply #'completing-read
-	   prompt
-	   (lambda (string predicate &optional flag)
-	     (cond
-	      ((eq flag nil) (try-completion string thetable))
-	      ((eq flag t)
-	       (let ((l (length string)))
-		 (mapcar (lambda (x)
-			   (let ((r (substring x l))
-				 (f (if (string-match " ([^)]*)$" x)
-					(match-string 0 x)
-				      "")))
-			     (if (string-match "/" r)
-				 (concat string (substring r 0 (match-end 0)) f)
-			       x)))
-			 (all-completions string thetable predicate))))
-	      ;; Exact match?
-	      ((eq flag 'lambda) (assoc string thetable))))
-	   args)))
-
-;;;; Dynamic blocks
-
-(defun org-find-dblock (name)
-  "Find the first dynamic block with name NAME in the buffer.
-If not found, stay at current position and return nil."
-  (let ((case-fold-search t) pos)
-    (save-excursion
-      (goto-char (point-min))
-      (setq pos (and (re-search-forward
-		      (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
-		     (match-beginning 0))))
-    (when pos (goto-char pos))
-    pos))
-
-(defun org-create-dblock (plist)
-  "Create a dynamic block section, with parameters taken from PLIST.
-PLIST must contain a :name entry which is used as the name of the block."
-  (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
-    (end-of-line 1)
-    (newline))
-  (let ((col (current-column))
-	(name (plist-get plist :name)))
-    (insert "#+BEGIN: " name)
-    (while plist
-      (if (eq (car plist) :name)
-	  (setq plist (cddr plist))
-	(insert " " (prin1-to-string (pop plist)))))
-    (insert "\n\n" (make-string col ?\ ) "#+END:\n")
-    (beginning-of-line -2)))
-
-(defun org-prepare-dblock ()
-  "Prepare dynamic block for refresh.
-This empties the block, puts the cursor at the insert position and returns
-the property list including an extra property :name with the block name."
-  (unless (looking-at org-dblock-start-re)
-    (user-error "Not at a dynamic block"))
-  (let* ((begdel (1+ (match-end 0)))
-	 (name (org-no-properties (match-string 1)))
-	 (params (append (list :name name)
-			 (read (concat "(" (match-string 3) ")")))))
-    (save-excursion
-      (beginning-of-line 1)
-      (skip-chars-forward " \t")
-      (setq params (plist-put params :indentation-column (current-column))))
-    (unless (re-search-forward org-dblock-end-re nil t)
-      (error "Dynamic block not terminated"))
-    (setq params
-	  (append params
-		  (list :content (buffer-substring
-				  begdel (match-beginning 0)))))
-    (delete-region begdel (match-beginning 0))
-    (goto-char begdel)
-    (open-line 1)
-    params))
-
-(defun org-map-dblocks (&optional command)
-  "Apply COMMAND to all dynamic blocks in the current buffer.
-If COMMAND is not given, use `org-update-dblock'."
-  (let ((cmd (or command 'org-update-dblock)))
-    (save-excursion
-      (goto-char (point-min))
-      (while (re-search-forward org-dblock-start-re nil t)
-	(goto-char (match-beginning 0))
-        (save-excursion
-          (condition-case nil
-              (funcall cmd)
-            (error (message "Error during update of dynamic block"))))
-	(unless (re-search-forward org-dblock-end-re nil t)
-	  (error "Dynamic block not terminated"))))))
-
-(defun org-dblock-update (&optional arg)
-  "User command for updating dynamic blocks.
-Update the dynamic block at point.  With prefix ARG, update all dynamic
-blocks in the buffer."
-  (interactive "P")
-  (if arg
-      (org-update-all-dblocks)
-    (or (looking-at org-dblock-start-re)
-	(org-beginning-of-dblock))
-    (org-update-dblock)))
-
-(defun org-update-dblock ()
-  "Update the dynamic block at point.
-This means to empty the block, parse for parameters and then call
-the correct writing function."
-  (interactive)
-  (save-excursion
-    (let* ((win (selected-window))
-	   (pos (point))
-	   (line (org-current-line))
-	   (params (org-prepare-dblock))
-	   (name (plist-get params :name))
-	   (indent (plist-get params :indentation-column))
-	   (cmd (intern (concat "org-dblock-write:" name))))
-      (message "Updating dynamic block `%s' at line %d..." name line)
-      (funcall cmd params)
-      (message "Updating dynamic block `%s' at line %d...done" name line)
-      (goto-char pos)
-      (when (and indent (> indent 0))
-	(setq indent (make-string indent ?\ ))
-	(save-excursion
-	  (select-window win)
-	  (org-beginning-of-dblock)
-	  (forward-line 1)
-	  (while (not (looking-at org-dblock-end-re))
-	    (insert indent)
-	    (beginning-of-line 2))
-	  (when (looking-at org-dblock-end-re)
-	    (and (looking-at "[ \t]+")
-		 (replace-match ""))
-	    (insert indent)))))))
-
-(defun org-beginning-of-dblock ()
-  "Find the beginning of the dynamic block at point.
-Error if there is no such block at point."
-  (let ((pos (point))
-	beg)
-    (end-of-line 1)
-    (if (and (re-search-backward org-dblock-start-re nil t)
-	     (setq beg (match-beginning 0))
-	     (re-search-forward org-dblock-end-re nil t)
-	     (> (match-end 0) pos))
-	(goto-char beg)
-      (goto-char pos)
-      (error "Not in a dynamic block"))))
-
-(defun org-update-all-dblocks ()
-  "Update all dynamic blocks in the buffer.
-This function can be used in a hook."
-  (interactive)
-  (when (derived-mode-p 'org-mode)
-    (org-map-dblocks 'org-update-dblock)))
-
-
-;;;; Completion
-
-(declare-function org-export-backend-options "ox" (cl-x) t)
-(defun org-get-export-keywords ()
-  "Return a list of all currently understood export keywords.
-Export keywords include options, block names, attributes and
-keywords relative to each registered export back-end."
-  (let (keywords)
-    (dolist (backend
-	     (bound-and-true-p org-export-registered-backends)
-	     (delq nil keywords))
-      ;; Back-end name (for keywords, like #+LATEX:)
-      (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
-      (dolist (option-entry (org-export-backend-options backend))
-	;; Back-end options.
-	(push (nth 1 option-entry) keywords)))))
-
-(defconst org-options-keywords
-  '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
-    "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
-    "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
-    "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
-    "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
-
-(defcustom org-structure-template-alist
-  '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
-    ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
-    ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
-    ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
-    ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
-    ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
-    ("C" "#+BEGIN_COMMENT\n?\n#+END_COMMENT")
-    ("l" "#+BEGIN_EXPORT latex\n?\n#+END_EXPORT")
-    ("L" "#+LaTeX: ")
-    ("h" "#+BEGIN_EXPORT html\n?\n#+END_EXPORT")
-    ("H" "#+HTML: ")
-    ("a" "#+BEGIN_EXPORT ascii\n?\n#+END_EXPORT")
-    ("A" "#+ASCII: ")
-    ("i" "#+INDEX: ?")
-    ("I" "#+INCLUDE: %file ?"))
-  "Structure completion elements.
-This is a list of abbreviation keys and values.  The value gets inserted
-if you type `<' followed by the key and then press the completion key,
-usually `TAB'.  %file will be replaced by a file name after prompting
-for the file using completion.  The cursor will be placed at the position
-of the `?' in the template.
-There are two templates for each key, the first uses the original Org syntax,
-the second uses Emacs Muse-like syntax tags.  These Muse-like tags become
-the default when the /org-mtags.el/ module has been loaded.  See also the
-variable `org-mtags-prefer-muse-templates'."
-  :group 'org-edit-structure
-  :type '(repeat
-	  (list
-	   (string :tag "Key")
-	   (string :tag "Template")))
-  :version "26.1"
-  :package-version '(Org . "8.3"))
-
-(defun org-try-structure-completion ()
-  "Try to complete a structure template before point.
-This looks for strings like \"<e\" on an otherwise empty line and
-expands them."
-  (let ((l (buffer-substring (point-at-bol) (point)))
-	a)
-    (when (and (looking-at "[ \t]*$")
-	       (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
-	       (setq a (assoc (match-string 1 l) org-structure-template-alist)))
-      (org-complete-expand-structure-template (+ -1 (point-at-bol)
-						 (match-beginning 1)) a)
-      t)))
-
-(defun org-complete-expand-structure-template (start cell)
-  "Expand a structure template."
-  (let ((rpl (nth 1 cell))
-	(ind ""))
-    (delete-region start (point))
-    (when (string-match "\\`[ \t]*#\\+" rpl)
-      (cond
-       ((bolp))
-       ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
-	(setq ind (buffer-substring (point-at-bol) (point))))
-       (t (newline))))
-    (setq start (point))
-    (when (string-match "%file" rpl)
-      (setq rpl (replace-match
-		 (concat
-		  "\""
-		  (save-match-data
-		    (abbreviate-file-name (read-file-name "Include file: ")))
-		  "\"")
-		 t t rpl)))
-    (setq rpl (mapconcat 'identity (split-string rpl "\n")
-			 (concat "\n" ind)))
-    (insert rpl)
-    (when (re-search-backward "\\?" start t) (delete-char 1))))
-
-;;;; TODO, DEADLINE, Comments
-
-(defun org-toggle-comment ()
-  "Change the COMMENT state of an entry."
-  (interactive)
-  (save-excursion
-    (org-back-to-heading)
-    (let ((case-fold-search nil))
-      (looking-at org-complex-heading-regexp))
-    (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
-    (skip-chars-forward " \t")
-    (unless (memq (char-before) '(?\s ?\t)) (insert " "))
-    (if (org-in-commented-heading-p t)
-	(delete-region (point)
-		       (progn (search-forward " " (line-end-position) 'move)
-			      (skip-chars-forward " \t")
-			      (point)))
-      (insert org-comment-string)
-      (unless (eolp) (insert " ")))))
-
-(defvar org-last-todo-state-is-todo nil
-  "This is non-nil when the last TODO state change led to a TODO state.
-If the last change removed the TODO tag or switched to DONE, then
-this is nil.")
-
-(defvar org-setting-tags nil) ; dynamically skipped
-
-(defvar org-todo-setup-filter-hook nil
-  "Hook for functions that pre-filter todo specs.
-Each function takes a todo spec and returns either nil or the spec
-transformed into canonical form." )
-
-(defvar org-todo-get-default-hook nil
-  "Hook for functions that get a default item for todo.
-Each function takes arguments (NEW-MARK OLD-MARK) and returns either
-nil or a string to be used for the todo mark." )
-
-(defvar org-agenda-headline-snapshot-before-repeat)
-
-(defun org-current-effective-time ()
-  "Return current time adjusted for `org-extend-today-until' variable."
-  (let* ((ct (org-current-time))
-	 (dct (decode-time ct))
-	 (ct1
-	  (cond
-	   (org-use-last-clock-out-time-as-effective-time
-	    (or (org-clock-get-last-clock-out-time) ct))
-	   ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
-	    (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
-	   (t ct))))
-    ct1))
-
-(defun org-todo-yesterday (&optional arg)
-  "Like `org-todo' but the time of change will be 23:59 of yesterday."
-  (interactive "P")
-  (if (eq major-mode 'org-agenda-mode)
-      (apply 'org-agenda-todo-yesterday arg)
-    (let* ((org-use-effective-time t)
-	   (hour (nth 2 (decode-time (org-current-time))))
-	   (org-extend-today-until (1+ hour)))
-      (org-todo arg))))
-
-(defvar org-block-entry-blocking ""
-  "First entry preventing the TODO state change.")
-
-(defun org-cancel-repeater ()
-  "Cancel a repeater by setting its numeric value to zero."
-  (interactive)
-  (save-excursion
-    (org-back-to-heading t)
-    (let ((bound1 (point))
-	  (bound0 (save-excursion (outline-next-heading) (point))))
-      (when (and (re-search-forward
-		  (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
-			  org-deadline-time-regexp "\\)\\|\\("
-			  org-ts-regexp "\\)")
-		  bound0 t)
-		 (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]"
-				     bound1 t))
-	(replace-match "0" t nil nil 1)))))
-
-(defvar org-state)
-(defvar org-blocked-by-checkboxes)
-(defun org-todo (&optional arg)
-  "Change the TODO state of an item.
-
-The state of an item is given by a keyword at the start of the heading,
-like
-     *** TODO Write paper
-     *** DONE Call mom
-
-The different keywords are specified in the variable `org-todo-keywords'.
-By default the available states are \"TODO\" and \"DONE\".  So, for this
-example: when the item starts with TODO, it is changed to DONE.
-When it starts with DONE, the DONE is removed.  And when neither TODO nor
-DONE are present, add TODO at the beginning of the heading.
-
-With `\\[universal-argument]' prefix ARG, use completion to determine the new \
-state.
-With numeric prefix ARG, switch to that state.
-With a `\\[universal-argument] \\[universal-argument]' prefix, switch to the \
-next set of TODO \
-keywords (nextset).
-With a `\\[universal-argument] \\[universal-argument] \\[universal-argument]' \
-prefix, circumvent any state blocking.
-With a numeric prefix arg of 0, inhibit note taking for the change.
-With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
-
-When called through ELisp, arg is also interpreted in the following way:
-`none'        -> empty state
-\"\"            -> switch to empty state
-`done'        -> switch to DONE
-`nextset'     -> switch to the next set of keywords
-`previousset' -> switch to the previous set of keywords
-\"WAITING\"     -> switch to the specified keyword, but only if it
-                 really is a member of `org-todo-keywords'."
-  (interactive "P")
-  (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
-      (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
-		    'region-start-level 'region))
-	    org-loop-over-headlines-in-active-region)
-	(org-map-entries
-	 `(org-todo ,arg)
-	 org-loop-over-headlines-in-active-region
-	 cl (when (org-invisible-p) (org-end-of-subtree nil t))))
-    (when (equal arg '(16)) (setq arg 'nextset))
-    (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
-    (let ((org-blocker-hook org-blocker-hook)
-	  commentp
-	  case-fold-search)
-      (when (equal arg '(64))
-	(setq arg nil org-blocker-hook nil))
-      (when (and org-blocker-hook
-		 (or org-inhibit-blocking
-		     (org-entry-get nil "NOBLOCKING")))
-	(setq org-blocker-hook nil))
-      (save-excursion
-	(catch 'exit
-	  (org-back-to-heading t)
-	  (when (org-in-commented-heading-p t)
-	    (org-toggle-comment)
-	    (setq commentp t))
-	  (when (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
-	  (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
-	      (looking-at "\\(?: *\\|[ \t]*$\\)"))
-	  (let* ((match-data (match-data))
-		 (startpos (copy-marker (line-beginning-position)))
-		 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
-		 (org-log-done org-log-done)
-		 (org-log-repeat org-log-repeat)
-		 (org-todo-log-states org-todo-log-states)
-		 (org-inhibit-logging
-		  (if (equal arg 0)
-		      (progn (setq arg nil) 'note) org-inhibit-logging))
-		 (this (match-string 1))
-		 (hl-pos (match-beginning 0))
-		 (head (org-get-todo-sequence-head this))
-		 (ass (assoc head org-todo-kwd-alist))
-		 (interpret (nth 1 ass))
-		 (done-word (nth 3 ass))
-		 (final-done-word (nth 4 ass))
-		 (org-last-state (or this ""))
-		 (completion-ignore-case t)
-		 (member (member this org-todo-keywords-1))
-		 (tail (cdr member))
-		 (org-state (cond
-			     ((and org-todo-key-trigger
-				   (or (and (equal arg '(4))
-					    (eq org-use-fast-todo-selection 'prefix))
-				       (and (not arg) org-use-fast-todo-selection
-					    (not (eq org-use-fast-todo-selection
-						     'prefix)))))
-			      ;; Use fast selection.
-			      (org-fast-todo-selection))
-			     ((and (equal arg '(4))
-				   (or (not org-use-fast-todo-selection)
-				       (not org-todo-key-trigger)))
-			      ;; Read a state with completion.
-			      (completing-read
-			       "State: " (mapcar #'list org-todo-keywords-1)
-			       nil t))
-			     ((eq arg 'right)
-			      (if this
-				  (if tail (car tail) nil)
-				(car org-todo-keywords-1)))
-			     ((eq arg 'left)
-			      (unless (equal member org-todo-keywords-1)
-				(if this
-				    (nth (- (length org-todo-keywords-1)
-					    (length tail) 2)
-					 org-todo-keywords-1)
-				  (org-last org-todo-keywords-1))))
-			     ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
-				   (setq arg nil))) ;hack to fall back to cycling
-			     (arg
-			      ;; User or caller requests a specific state.
-			      (cond
-			       ((equal arg "") nil)
-			       ((eq arg 'none) nil)
-			       ((eq arg 'done) (or done-word (car org-done-keywords)))
-			       ((eq arg 'nextset)
-				(or (car (cdr (member head org-todo-heads)))
-				    (car org-todo-heads)))
-			       ((eq arg 'previousset)
-				(let ((org-todo-heads (reverse org-todo-heads)))
-				  (or (car (cdr (member head org-todo-heads)))
-				      (car org-todo-heads))))
-			       ((car (member arg org-todo-keywords-1)))
-			       ((stringp arg)
-				(user-error "State `%s' not valid in this file" arg))
-			       ((nth (1- (prefix-numeric-value arg))
-				     org-todo-keywords-1))))
-			     ((null member) (or head (car org-todo-keywords-1)))
-			     ((equal this final-done-word) nil) ;-> make empty
-			     ((null tail) nil) ;-> first entry
-			     ((memq interpret '(type priority))
-			      (if (eq this-command last-command)
-				  (car tail)
-				(if (> (length tail) 0)
-				    (or done-word (car org-done-keywords))
-				  nil)))
-			     (t
-			      (car tail))))
-		 (org-state (or
-			     (run-hook-with-args-until-success
-			      'org-todo-get-default-hook org-state org-last-state)
-			     org-state))
-		 (next (if org-state (concat " " org-state " ") " "))
-		 (change-plist (list :type 'todo-state-change :from this :to org-state
-				     :position startpos))
-		 dolog now-done-p)
-	    (when org-blocker-hook
-	      (let (org-blocked-by-checkboxes block-reason)
-		(setq org-last-todo-state-is-todo
-		      (not (member this org-done-keywords)))
-		(unless (save-excursion
-			  (save-match-data
-			    (org-with-wide-buffer
-			     (run-hook-with-args-until-failure
-			      'org-blocker-hook change-plist))))
-		  (setq block-reason (if org-blocked-by-checkboxes
-					 "contained checkboxes"
-				       (format "\"%s\"" org-block-entry-blocking)))
-		  (if (called-interactively-p 'interactive)
-		      (user-error "TODO state change from %s to %s blocked (by %s)"
-				  this org-state block-reason)
-		    ;; Fail silently.
-		    (message "TODO state change from %s to %s blocked (by %s)"
-			     this org-state block-reason)
-		    (throw 'exit nil)))))
-	    (store-match-data match-data)
-	    (replace-match next t t)
-	    (cond ((equal this org-state)
-		   (message "TODO state was already %s" (org-trim next)))
-		  ((not (pos-visible-in-window-p hl-pos))
-		   (message "TODO state changed to %s" (org-trim next))))
-	    (unless head
-	      (setq head (org-get-todo-sequence-head org-state)
-		    ass (assoc head org-todo-kwd-alist)
-		    interpret (nth 1 ass)
-		    done-word (nth 3 ass)
-		    final-done-word (nth 4 ass)))
-	    (when (memq arg '(nextset previousset))
-	      (message "Keyword-Set %d/%d: %s"
-		       (- (length org-todo-sets) -1
-			  (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
-		       (length org-todo-sets)
-		       (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
-	    (setq org-last-todo-state-is-todo
-		  (not (member org-state org-done-keywords)))
-	    (setq now-done-p (and (member org-state org-done-keywords)
-				  (not (member this org-done-keywords))))
-	    (and logging (org-local-logging logging))
-	    (when (and (or org-todo-log-states org-log-done)
-		       (not (eq org-inhibit-logging t))
-		       (not (memq arg '(nextset previousset))))
-	      ;; We need to look at recording a time and note.
-	      (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
-			      (nth 2 (assoc this org-todo-log-states))))
-	      (when (and (eq dolog 'note) (eq org-inhibit-logging 'note))
-		(setq dolog 'time))
-	      (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
-			(and org-state
-			     (member org-state org-not-done-keywords)
-			     (not (member this org-not-done-keywords))))
-		;; This is now a todo state and was not one before
-		;; If there was a CLOSED time stamp, get rid of it.
-		(org-add-planning-info nil nil 'closed))
-	      (when (and now-done-p org-log-done)
-		;; It is now done, and it was not done before.
-		(org-add-planning-info 'closed (org-current-effective-time))
-		(when (and (not dolog) (eq 'note org-log-done))
-		  (org-add-log-setup 'done org-state this 'note)))
-	      (when (and org-state dolog)
-		;; This is a non-nil state, and we need to log it.
-		(org-add-log-setup 'state org-state this dolog)))
-	    ;; Fixup tag positioning.
-	    (org-todo-trigger-tag-changes org-state)
-	    (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
-	    (when org-provide-todo-statistics
-	      (org-update-parent-todo-statistics))
-	    (run-hooks 'org-after-todo-state-change-hook)
-	    (when (and arg (not (member org-state org-done-keywords)))
-	      (setq head (org-get-todo-sequence-head org-state)))
-	    (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
-	    ;; Do we need to trigger a repeat?
-	    (when now-done-p
-	      (when (boundp 'org-agenda-headline-snapshot-before-repeat)
-		;; This is for the agenda, take a snapshot of the headline.
-		(save-match-data
-		  (setq org-agenda-headline-snapshot-before-repeat
-			(org-get-heading))))
-	      (org-auto-repeat-maybe org-state))
-	    ;; Fixup cursor location if close to the keyword.
-	    (when (and (outline-on-heading-p)
-		       (not (bolp))
-		       (save-excursion (beginning-of-line 1)
-				       (looking-at org-todo-line-regexp))
-		       (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
-	      (goto-char (or (match-end 2) (match-end 1)))
-	      (and (looking-at " ") (just-one-space)))
-	    (when org-trigger-hook
-	      (save-excursion
-		(run-hook-with-args 'org-trigger-hook change-plist)))
-	    (when commentp (org-toggle-comment))))))))
-
-(defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
-  "Block turning an entry into a TODO, using the hierarchy.
-This checks whether the current task should be blocked from state
-changes.  Such blocking occurs when:
-
-  1. The task has children which are not all in a completed state.
-
-  2. A task has a parent with the property :ORDERED:, and there
-     are siblings prior to the current task with incomplete
-     status.
-
-  3. The parent of the task is blocked because it has siblings that should
-     be done first, or is child of a block grandparent TODO entry."
-
-  (if (not org-enforce-todo-dependencies)
-      t ; if locally turned off don't block
-    (catch 'dont-block
-      ;; If this is not a todo state change, or if this entry is already DONE,
-      ;; do not block
-      (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
-		(member (plist-get change-plist :from)
-			(cons 'done org-done-keywords))
-		(member (plist-get change-plist :to)
-			(cons 'todo org-not-done-keywords))
-		(not (plist-get change-plist :to)))
-	(throw 'dont-block t))
-      ;; If this task has children, and any are undone, it's blocked
-      (save-excursion
-	(org-back-to-heading t)
-	(let ((this-level (funcall outline-level)))
-	  (outline-next-heading)
-	  (let ((child-level (funcall outline-level)))
-	    (while (and (not (eobp))
-			(> child-level this-level))
-	      ;; this todo has children, check whether they are all
-	      ;; completed
-	      (when (and (not (org-entry-is-done-p))
-			 (org-entry-is-todo-p))
-		(setq org-block-entry-blocking (org-get-heading))
-		(throw 'dont-block nil))
-	      (outline-next-heading)
-	      (setq child-level (funcall outline-level))))))
-      ;; Otherwise, if the task's parent has the :ORDERED: property, and
-      ;; any previous siblings are undone, it's blocked
-      (save-excursion
-	(org-back-to-heading t)
-	(let* ((pos (point))
-	       (parent-pos (and (org-up-heading-safe) (point)))
-	       (case-fold-search nil))
-	  (unless parent-pos (throw 'dont-block t)) ; no parent
-	  (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
-		     (forward-line 1)
-		     (re-search-forward org-not-done-heading-regexp pos t))
-	    (setq org-block-entry-blocking (match-string 0))
-	    (throw 'dont-block nil))  ; block, there is an older sibling not done.
-	  ;; Search further up the hierarchy, to see if an ancestor is blocked
-	  (while t
-	    (goto-char parent-pos)
-	    (unless (looking-at org-not-done-heading-regexp)
-	      (throw 'dont-block t))	; do not block, parent is not a TODO
-	    (setq pos (point))
-	    (setq parent-pos (and (org-up-heading-safe) (point)))
-	    (unless parent-pos (throw 'dont-block t)) ; no parent
-	    (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
-		       (forward-line 1)
-		       (re-search-forward org-not-done-heading-regexp pos t)
-		       (setq org-block-entry-blocking (org-get-heading)))
-	      (throw 'dont-block nil)))))))) ; block, older sibling not done.
-
-(defcustom org-track-ordered-property-with-tag nil
-  "Should the ORDERED property also be shown as a tag?
-The ORDERED property decides if an entry should require subtasks to be
-completed in sequence.  Since a property is not very visible, setting
-this option means that toggling the ORDERED property with the command
-`org-toggle-ordered-property' will also toggle a tag ORDERED.  That tag is
-not relevant for the behavior, but it makes things more visible.
-
-Note that toggling the tag with tags commands will not change the property
-and therefore not influence behavior!
-
-This can be t, meaning the tag ORDERED should be used,  It can also be a
-string to select a different tag for this task."
-  :group 'org-todo
-  :type '(choice
-	  (const :tag "No tracking" nil)
-	  (const :tag "Track with ORDERED tag" t)
-	  (string :tag "Use other tag")))
-
-(defun org-toggle-ordered-property ()
-  "Toggle the ORDERED property of the current entry.
-For better visibility, you can track the value of this property with a tag.
-See variable `org-track-ordered-property-with-tag'."
-  (interactive)
-  (let* ((t1 org-track-ordered-property-with-tag)
-	 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
-    (save-excursion
-      (org-back-to-heading)
-      (if (org-entry-get nil "ORDERED")
-	  (progn
-	    (org-delete-property "ORDERED")
-	    (and tag (org-toggle-tag tag 'off))
-	    (message "Subtasks can be completed in arbitrary order"))
-	(org-entry-put nil "ORDERED" "t")
-	(and tag (org-toggle-tag tag 'on))
-	(message "Subtasks must be completed in sequence")))))
-
-(defun org-block-todo-from-checkboxes (change-plist)
-  "Block turning an entry into a TODO, using checkboxes.
-This checks whether the current task should be blocked from state
-changes because there are unchecked boxes in this entry."
-  (if (not org-enforce-todo-checkbox-dependencies)
-      t ; if locally turned off don't block
-    (catch 'dont-block
-      ;; If this is not a todo state change, or if this entry is already DONE,
-      ;; do not block
-      (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
-		(member (plist-get change-plist :from)
-			(cons 'done org-done-keywords))
-		(member (plist-get change-plist :to)
-			(cons 'todo org-not-done-keywords))
-		(not (plist-get change-plist :to)))
-	(throw 'dont-block t))
-      ;; If this task has checkboxes that are not checked, it's blocked
-      (save-excursion
-	(org-back-to-heading t)
-	(let ((beg (point)) end)
-	  (outline-next-heading)
-	  (setq end (point))
-	  (goto-char beg)
-	  (when (org-list-search-forward
-		 (concat (org-item-beginning-re)
-			 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
-			 "\\[[- ]\\]")
-		 end t)
-	    (when (boundp 'org-blocked-by-checkboxes)
-	      (setq org-blocked-by-checkboxes t))
-	    (throw 'dont-block nil))))
-      t))) ; do not block
-
-(defun org-entry-blocked-p ()
-  "Non-nil if entry at point is blocked."
-  (and (not (org-entry-get nil "NOBLOCKING"))
-       (member (org-entry-get nil "TODO") org-not-done-keywords)
-       (not (run-hook-with-args-until-failure
-	     'org-blocker-hook
-	     (list :type 'todo-state-change
-		   :position (point)
-		   :from 'todo
-		   :to 'done)))))
-
-(defun org-update-statistics-cookies (all)
-  "Update the statistics cookie, either from TODO or from checkboxes.
-This should be called with the cursor in a line with a statistics
-cookie.  When called with a \\[universal-argument] prefix, update
-all statistics cookies in the buffer."
-  (interactive "P")
-  (if all
-      (progn
-	(org-update-checkbox-count 'all)
-	(org-map-entries 'org-update-parent-todo-statistics))
-    (if (not (org-at-heading-p))
-	(org-update-checkbox-count)
-      (let ((pos (point-marker))
-	    end l1 l2)
-	(ignore-errors (org-back-to-heading t))
-	(if (not (org-at-heading-p))
-	    (org-update-checkbox-count)
-	  (setq l1 (org-outline-level))
-	  (setq end (save-excursion
-		      (outline-next-heading)
-		      (when (org-at-heading-p) (setq l2 (org-outline-level)))
-		      (point)))
-	  (if (and (save-excursion
-		     (re-search-forward
-		      "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
-		   (not (save-excursion (re-search-forward
-					 ":COOKIE_DATA:.*\\<todo\\>" end t))))
-	      (org-update-checkbox-count)
-	    (if (and l2 (> l2 l1))
-		(progn
-		  (goto-char end)
-		  (org-update-parent-todo-statistics))
-	      (goto-char pos)
-	      (beginning-of-line 1)
-	      (while (re-search-forward
-		      "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
-		      (point-at-eol) t)
-		(replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
-	(goto-char pos)
-	(move-marker pos nil)))))
-
-(defvar org-entry-property-inherited-from) ;; defined below
-(defun org-update-parent-todo-statistics ()
-  "Update any statistics cookie in the parent of the current headline.
-When `org-hierarchical-todo-statistics' is nil, statistics will cover
-the entire subtree and this will travel up the hierarchy and update
-statistics everywhere."
-  (let* ((prop (save-excursion (org-up-heading-safe)
-			       (org-entry-get nil "COOKIE_DATA" 'inherit)))
-	 (recursive (or (not org-hierarchical-todo-statistics)
-			(and prop (string-match "\\<recursive\\>" prop))))
-	 (lim (or (and prop (marker-position org-entry-property-inherited-from))
-		  0))
-	 (first t)
-	 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
-	 level ltoggle l1 new ndel
-	 (cnt-all 0) (cnt-done 0) is-percent kwd
-	 checkbox-beg cookie-present)
-    (catch 'exit
-      (save-excursion
-	(beginning-of-line 1)
-	(setq ltoggle (funcall outline-level))
-	;; Three situations are to consider:
-
-	;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
-	;;    to the top-level ancestor on the headline;
-
-	;; 2. If parent has "recursive" property, repeat up to the
-	;;    headline setting that property, taking inheritance into
-	;;    account;
-
-	;; 3. Else, move up to direct parent and proceed only once.
-	(while (and (setq level (org-up-heading-safe))
-		    (or recursive first)
-		    (>= (point) lim))
-	  (setq first nil cookie-present nil)
-	  (unless (and level
-		       (not (string-match
-			     "\\<checkbox\\>"
-			     (downcase (or (org-entry-get nil "COOKIE_DATA")
-					   "")))))
-	    (throw 'exit nil))
-	  (while (re-search-forward box-re (point-at-eol) t)
-	    (setq cnt-all 0 cnt-done 0 cookie-present t)
-	    (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
-	    (save-match-data
-	      (unless (outline-next-heading) (throw 'exit nil))
-	      (while (and (looking-at org-complex-heading-regexp)
-	    		  (> (setq l1 (length (match-string 1))) level))
-	    	(setq kwd (and (or recursive (= l1 ltoggle))
-	    		       (match-string 2)))
-	    	(if (or (eq org-provide-todo-statistics 'all-headlines)
-			(and (eq org-provide-todo-statistics t)
-			     (or (member kwd org-done-keywords)))
-	    		(and (listp org-provide-todo-statistics)
-			     (stringp (car org-provide-todo-statistics))
-	    		     (or (member kwd org-provide-todo-statistics)
-				 (member kwd org-done-keywords)))
-			(and (listp org-provide-todo-statistics)
-			     (listp (car org-provide-todo-statistics))
-			     (or (member kwd (car org-provide-todo-statistics))
-				 (and (member kwd org-done-keywords)
-				      (member kwd (cadr org-provide-todo-statistics))))))
-	    	    (setq cnt-all (1+ cnt-all))
-		  (and (eq org-provide-todo-statistics t)
-		       kwd
-		       (setq cnt-all (1+ cnt-all))))
-		(when (or (and (member org-provide-todo-statistics '(t all-headlines))
-			       (member kwd org-done-keywords))
-			  (and (listp org-provide-todo-statistics)
-			       (listp (car org-provide-todo-statistics))
-			       (member kwd org-done-keywords)
-			       (member kwd (cadr org-provide-todo-statistics)))
-			  (and (listp org-provide-todo-statistics)
-			       (stringp (car org-provide-todo-statistics))
-			       (member kwd org-done-keywords)))
-		  (setq cnt-done (1+ cnt-done)))
-	    	(outline-next-heading)))
-	    (setq new
-	    	  (if is-percent
-		      (format "[%d%%]" (floor (* 100.0 cnt-done)
-					      (max 1 cnt-all)))
-	    	    (format "[%d/%d]" cnt-done cnt-all))
-	    	  ndel (- (match-end 0) checkbox-beg))
-	    (goto-char checkbox-beg)
-	    (insert new)
-	    (delete-region (point) (+ (point) ndel))
-	    (when org-auto-align-tags (org-fix-tags-on-the-fly)))
-	  (when cookie-present
-	    (run-hook-with-args 'org-after-todo-statistics-hook
-				cnt-done (- cnt-all cnt-done))))))
-    (run-hooks 'org-todo-statistics-hook)))
-
-(defvar org-after-todo-statistics-hook nil
-  "Hook that is called after a TODO statistics cookie has been updated.
-Each function is called with two arguments: the number of not-done entries
-and the number of done entries.
-
-For example, the following function, when added to this hook, will switch
-an entry to DONE when all children are done, and back to TODO when new
-entries are set to a TODO status.  Note that this hook is only called
-when there is a statistics cookie in the headline!
-
- (defun org-summary-todo (n-done n-not-done)
-   \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
-   (let (org-log-done org-log-states)   ; turn off logging
-     (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
-")
-
-(defvar org-todo-statistics-hook nil
-  "Hook that is run whenever Org thinks TODO statistics should be updated.
-This hook runs even if there is no statistics cookie present, in which case
-`org-after-todo-statistics-hook' would not run.")
-
-(defun org-todo-trigger-tag-changes (state)
-  "Apply the changes defined in `org-todo-state-tags-triggers'."
-  (let ((l org-todo-state-tags-triggers)
-	changes)
-    (when (or (not state) (equal state ""))
-      (setq changes (append changes (cdr (assoc "" l)))))
-    (when (and (stringp state) (> (length state) 0))
-      (setq changes (append changes (cdr (assoc state l)))))
-    (when (member state org-not-done-keywords)
-      (setq changes (append changes (cdr (assq 'todo l)))))
-    (when (member state org-done-keywords)
-      (setq changes (append changes (cdr (assq 'done l)))))
-    (dolist (c changes)
-      (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
-
-(defun org-local-logging (value)
-  "Get logging settings from a property VALUE."
-  ;; Directly set the variables, they are already local.
-  (setq org-log-done nil
-        org-log-repeat nil
-        org-todo-log-states nil)
-  (dolist (w (split-string value))
-    (let (a)
-      (cond
-       ((setq a (assoc w org-startup-options))
-        (and (member (nth 1 a) '(org-log-done org-log-repeat))
-             (set (nth 1 a) (nth 2 a))))
-       ((setq a (org-extract-log-state-settings w))
-        (and (member (car a) org-todo-keywords-1)
-             (push a org-todo-log-states)))))))
-
-(defun org-get-todo-sequence-head (kwd)
-  "Return the head of the TODO sequence to which KWD belongs.
-If KWD is not set, check if there is a text property remembering the
-right sequence."
-  (let (p)
-    (cond
-     ((not kwd)
-      (or (get-text-property (point-at-bol) 'org-todo-head)
-	  (progn
-	    (setq p (next-single-property-change (point-at-bol) 'org-todo-head
-						 nil (point-at-eol)))
-	    (get-text-property p 'org-todo-head))))
-     ((not (member kwd org-todo-keywords-1))
-      (car org-todo-keywords-1))
-     (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
-
-(defun org-fast-todo-selection ()
-  "Fast TODO keyword selection with single keys.
-Returns the new TODO keyword, or nil if no state change should occur."
-  (let* ((fulltable org-todo-key-alist)
-	 (done-keywords org-done-keywords) ;; needed for the faces.
-	 (maxlen (apply 'max (mapcar
-			      (lambda (x)
-				(if (stringp (car x)) (string-width (car x)) 0))
-			      fulltable)))
-	 (expert nil)
-	 (fwidth (+ maxlen 3 1 3))
-	 (ncol (/ (- (window-width) 4) fwidth))
-	 tg cnt e c tbl
-	 groups ingroup)
-    (save-excursion
-      (save-window-excursion
-	(if expert
-	    (set-buffer (get-buffer-create " *Org todo*"))
-	  (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
-	(erase-buffer)
-	(setq-local org-done-keywords done-keywords)
-	(setq tbl fulltable cnt 0)
-	(while (setq e (pop tbl))
-	  (cond
-	   ((equal e '(:startgroup))
-	    (push '() groups) (setq ingroup t)
-	    (unless (= cnt 0)
-	      (setq cnt 0)
-	      (insert "\n"))
-	    (insert "{ "))
-	   ((equal e '(:endgroup))
-	    (setq ingroup nil cnt 0)
-	    (insert "}\n"))
-	   ((equal e '(:newline))
-	    (unless (= cnt 0)
-	      (setq cnt 0)
-	      (insert "\n")
-	      (setq e (car tbl))
-	      (while (equal (car tbl) '(:newline))
-		(insert "\n")
-		(setq tbl (cdr tbl)))))
-	   (t
-	    (setq tg (car e) c (cdr e))
-	    (when ingroup (push tg (car groups)))
-	    (setq tg (org-add-props tg nil 'face
-				    (org-get-todo-face tg)))
-	    (when (and (= cnt 0) (not ingroup)) (insert "  "))
-	    (insert "[" c "] " tg (make-string
-				   (- fwidth 4 (length tg)) ?\ ))
-	    (when (= (setq cnt (1+ cnt)) ncol)
-	      (insert "\n")
-	      (when ingroup (insert "  "))
-	      (setq cnt 0)))))
-	(insert "\n")
-	(goto-char (point-min))
-	(unless expert (org-fit-window-to-buffer))
-	(message "[a-z..]:Set [SPC]:clear")
-	(setq c (let ((inhibit-quit t)) (read-char-exclusive)))
-	(cond
-	 ((or (= c ?\C-g)
-	      (and (= c ?q) (not (rassoc c fulltable))))
-	  (setq quit-flag t))
-	 ((= c ?\ ) nil)
-	 ((setq e (rassoc c fulltable) tg (car e))
-	  tg)
-	 (t (setq quit-flag t)))))))
-
-(defun org-entry-is-todo-p ()
-  (member (org-get-todo-state) org-not-done-keywords))
-
-(defun org-entry-is-done-p ()
-  (member (org-get-todo-state) org-done-keywords))
-
-(defun org-get-todo-state ()
-  "Return the TODO keyword of the current subtree."
-  (save-excursion
-    (org-back-to-heading t)
-    (and (let ((case-fold-search nil)) (looking-at org-todo-line-regexp))
-	 (match-end 2)
-	 (match-string 2))))
-
-(defun org-at-date-range-p (&optional inactive-ok)
-  "Non-nil if point is inside a date range.
-
-When optional argument INACTIVE-OK is non-nil, also consider
-inactive time ranges.
-
-When this function returns a non-nil value, match data is set
-according to `org-tr-regexp-both' or `org-tr-regexp', depending
-on INACTIVE-OK."
-  (interactive)
-  (save-excursion
-    (catch 'exit
-      (let ((pos (point)))
-	(skip-chars-backward "^[<\r\n")
-	(skip-chars-backward "<[")
-	(and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
-	     (>= (match-end 0) pos)
-	     (throw 'exit t))
-	(skip-chars-backward "^<[\r\n")
-	(skip-chars-backward "<[")
-	(and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
-	     (>= (match-end 0) pos)
-	     (throw 'exit t)))
-      nil)))
-
-(defun org-get-repeat (&optional timestamp)
-  "Check if there is a time-stamp with repeater in this entry.
-
-Return the repeater, as a string, or nil.  Also return nil when
-this function is called before first heading.
-
-When optional argument TIMESTAMP is a string, extract the
-repeater from there instead."
-  (save-match-data
-    (cond (timestamp
-	   (and (string-match org-repeat-re timestamp)
-		(match-string-no-properties 1 timestamp)))
-	  ((org-before-first-heading-p) nil)
-	  (t
-	   (save-excursion
-	     (org-back-to-heading t)
-	     (let ((end (org-entry-end-position)))
-	       (catch :repeat
-		 (while (re-search-forward org-repeat-re end t)
-		   (when (save-match-data (org-at-timestamp-p 'agenda))
-		     (throw :repeat (match-string-no-properties 1)))))))))))
-
-(defvar org-last-changed-timestamp)
-(defvar org-last-inserted-timestamp)
-(defvar org-log-post-message)
-(defvar org-log-note-purpose)
-(defvar org-log-note-how nil)
-(defvar org-log-note-extra)
-(defun org-auto-repeat-maybe (done-word)
-  "Check if the current headline contains a repeated time-stamp.
-
-If yes, set TODO state back to what it was and change the base date
-of repeating deadline/scheduled time stamps to new date.
-
-This function is run automatically after each state change to a DONE state."
-  (let* ((repeat (org-get-repeat))
-	 (aa (assoc org-last-state org-todo-kwd-alist))
-	 (interpret (nth 1 aa))
-	 (head (nth 2 aa))
-	 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
-	 (msg "Entry repeats: ")
-	 (org-log-done nil)
-	 (org-todo-log-states nil)
-	 (end (copy-marker (org-entry-end-position))))
-    (unwind-protect
-	(when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
-	  (when (eq org-log-repeat t) (setq org-log-repeat 'state))
-	  (let ((to-state (or (org-entry-get nil "REPEAT_TO_STATE" 'selective)
-			      org-todo-repeat-to-state)))
-	    (org-todo (cond
-		       ((and to-state (member to-state org-todo-keywords-1))
-			to-state)
-		       ((eq interpret 'type) org-last-state)
-		       (head)
-		       (t 'none))))
-	  (org-back-to-heading t)
-	  (org-add-planning-info nil nil 'closed)
-	  ;; When `org-log-repeat' is non-nil or entry contains
-	  ;; a clock, set LAST_REPEAT property.
-	  (when (or org-log-repeat
-		    (catch :clock
-		      (save-excursion
-			(while (re-search-forward org-clock-line-re end t)
-			  (when (org-at-clock-log-p) (throw :clock t))))))
-	    (org-entry-put nil "LAST_REPEAT" (format-time-string
-					      (org-time-stamp-format t t)
-					      (current-time))))
-	  (when org-log-repeat
-	    (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
-		    (memq 'org-add-log-note post-command-hook))
-		;; We are already setup for some record.
-		(when (eq org-log-repeat 'note)
-		  ;; Make sure we take a note, not only a time stamp.
-		  (setq org-log-note-how 'note))
-	      ;; Set up for taking a record.
-	      (org-add-log-setup 'state
-				 (or done-word (car org-done-keywords))
-				 org-last-state
-				 org-log-repeat)))
-	  (let ((planning-re (regexp-opt
-			      (list org-scheduled-string org-deadline-string))))
-	    (while (re-search-forward org-ts-regexp end t)
-	      (let* ((ts (match-string 0))
-		     (planning? (org-at-planning-p))
-		     (type (if (not planning?) "Plain:"
-			     (save-excursion
-			       (re-search-backward
-				planning-re (line-beginning-position) t)
-			       (match-string 0)))))
-		(cond
-		 ;; Ignore fake time-stamps (e.g., within comments).
-		 ((not (org-at-timestamp-p 'agenda)))
-		 ;; Time-stamps without a repeater are usually
-		 ;; skipped.  However, a SCHEDULED time-stamp without
-		 ;; one is removed, as they are no longer relevant.
-		 ((not (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)"
-				     ts))
-		  (when (equal type org-scheduled-string)
-		    (org-remove-timestamp-with-keyword type)))
-		 (t
-		  (let ((n (string-to-number (match-string 2 ts)))
-			(what (match-string 3 ts)))
-		    (when (equal what "w") (setq n (* n 7) what "d"))
-		    (when (and (equal what "h")
-			       (not (string-match-p "[0-9]\\{1,2\\}:[0-9]\\{2\\}"
-						    ts)))
-		      (user-error
-		       "Cannot repeat in Repeat in %d hour(s) because no hour \
-has been set"
-		       n))
-		    ;; Preparation, see if we need to modify the start
-		    ;; date for the change.
-		    (when (match-end 1)
-		      (let ((time (save-match-data
-				    (org-time-string-to-time ts))))
-			(cond
-			 ((equal (match-string 1 ts) ".")
-			  ;; Shift starting date to today
-			  (org-timestamp-change
-			   (- (org-today) (time-to-days time))
-			   'day))
-			 ((equal (match-string 1 ts) "+")
-			  (let ((nshiftmax 10)
-				(nshift 0))
-			    (while (or (= nshift 0)
-				       (not (time-less-p (current-time) time)))
-			      (when (= (cl-incf nshift) nshiftmax)
-				(or (y-or-n-p
-				     (format "%d repeater intervals were not \
-enough to shift date past today.  Continue? "
-					     nshift))
-				    (user-error "Abort")))
-			      (org-timestamp-change n (cdr (assoc what whata)))
-			      (org-in-regexp org-ts-regexp3)
-			      (setq ts (match-string 1))
-			      (setq time
-				    (save-match-data
-				      (org-time-string-to-time ts)))))
-			  (org-timestamp-change (- n) (cdr (assoc what whata)))
-			  ;; Rematch, so that we have everything in place
-			  ;; for the real shift.
-			  (org-in-regexp org-ts-regexp3)
-			  (setq ts (match-string 1))
-			  (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)"
-					ts)))))
-		    (save-excursion
-		      (org-timestamp-change n (cdr (assoc what whata)) nil t))
-		    (setq msg
-			  (concat
-			   msg type " " org-last-changed-timestamp " "))))))))
-	  (setq org-log-post-message msg)
-	  (message "%s" msg))
-      (set-marker end nil))))
-
-(defun org-show-todo-tree (arg)
-  "Make a compact tree which shows all headlines marked with TODO.
-The tree will show the lines where the regexp matches, and all higher
-headlines above the match.
-With a `\\[universal-argument]' prefix, prompt for a regexp to match.
-With a numeric prefix N, construct a sparse tree for the Nth element
-of `org-todo-keywords-1'."
-  (interactive "P")
-  (let ((case-fold-search nil)
-	(kwd-re
-	 (cond ((null arg) org-not-done-regexp)
-	       ((equal arg '(4))
-		(let ((kwd
-		       (completing-read "Keyword (or KWD1|KWD2|...): "
-					(mapcar #'list org-todo-keywords-1))))
-		  (concat "\\("
-			  (mapconcat 'identity (org-split-string kwd "|") "\\|")
-			  "\\)\\>")))
-	       ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
-		(regexp-quote (nth (1- (prefix-numeric-value arg))
-				   org-todo-keywords-1)))
-	       (t (user-error "Invalid prefix argument: %s" arg)))))
-    (message "%d TODO entries found"
-	     (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
-
-(defun org--deadline-or-schedule (arg type time)
-  "Insert DEADLINE or SCHEDULE information in current entry.
-TYPE is either `deadline' or `scheduled'.  See `org-deadline' or
-`org-schedule' for information about ARG and TIME arguments."
-  (let* ((deadline? (eq type 'deadline))
-	 (keyword (if deadline? org-deadline-string org-scheduled-string))
-	 (log (if deadline? org-log-redeadline org-log-reschedule))
-	 (old-date (org-entry-get nil (if deadline? "DEADLINE" "SCHEDULED")))
-	 (old-date-time (and old-date (org-time-string-to-time old-date)))
-	 ;; Save repeater cookie from either TIME or current scheduled
-	 ;; time stamp.  We are going to insert it back at the end of
-	 ;; the process.
-	 (repeater (or (and (org-string-nw-p time)
-			    ;; We use `org-repeat-re' because we need
-			    ;; to tell the difference between a real
-			    ;; repeater and a time delta, e.g. "+2d".
-			    (string-match org-repeat-re time)
-			    (match-string 1 time))
-		       (and (org-string-nw-p old-date)
-			    (string-match "\\([.+-]+[0-9]+[hdwmy]\
-\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\)"
-					  old-date)
-			    (match-string 1 old-date)))))
-    (pcase arg
-      (`(4)
-       (when (and old-date log)
-	 (org-add-log-setup (if deadline? 'deldeadline 'delschedule)
-			    nil old-date log))
-       (org-remove-timestamp-with-keyword keyword)
-       (message (if deadline? "Item no longer has a deadline."
-		  "Item is no longer scheduled.")))
-      (`(16)
-       (save-excursion
-	 (org-back-to-heading t)
-	 (let ((regexp (if deadline? org-deadline-time-regexp
-			 org-scheduled-time-regexp)))
-	   (if (not (re-search-forward regexp (line-end-position 2) t))
-	       (user-error (if deadline? "No deadline information to update"
-			     "No scheduled information to update"))
-	     (let* ((rpl0 (match-string 1))
-		    (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0))
-		    (msg (if deadline? "Warn starting from" "Delay until")))
-	       (replace-match
-		(concat keyword
-			" <" rpl
-			(format " -%dd"
-				(abs (- (time-to-days
-					 (save-match-data
-					   (org-read-date
-					    nil t nil msg old-date-time)))
-					(time-to-days old-date-time))))
-			">") t t))))))
-      (_
-       (org-add-planning-info type time 'closed)
-       (when (and old-date
-		  log
-		  (not (equal old-date org-last-inserted-timestamp)))
-	 (org-add-log-setup (if deadline? 'redeadline 'reschedule)
-			    org-last-inserted-timestamp
-			    old-date
-			    log))
-       (when repeater
-	 (save-excursion
-	   (org-back-to-heading t)
-	   (when (re-search-forward
-		  (concat keyword " " org-last-inserted-timestamp)
-		  (line-end-position 2)
-		  t)
-	     (goto-char (1- (match-end 0)))
-	     (insert " " repeater)
-	     (setq org-last-inserted-timestamp
-		   (concat (substring org-last-inserted-timestamp 0 -1)
-			   " " repeater
-			   (substring org-last-inserted-timestamp -1))))))
-       (message (if deadline? "Deadline on %s" "Scheduled to %s")
-		org-last-inserted-timestamp)))))
-
-(defun org-deadline (arg &optional time)
-  "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
-With one universal prefix argument, remove any deadline from the item.
-With two universal prefix arguments, prompt for a warning delay.
-With argument TIME, set the deadline at the corresponding date.  TIME
-can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
-  (interactive "P")
-  (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
-      (org-map-entries
-       (lambda () (org--deadline-or-schedule arg 'deadline time))
-       nil
-       (if (eq org-loop-over-headlines-in-active-region 'start-level)
-	   'region-start-level
-	 'region)
-       (lambda () (when (org-invisible-p) (org-end-of-subtree nil t))))
-    (org--deadline-or-schedule arg 'deadline time)))
-
-(defun org-schedule (arg &optional time)
-  "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
-With one universal prefix argument, remove any scheduling date from the item.
-With two universal prefix arguments, prompt for a delay cookie.
-With argument TIME, scheduled at the corresponding date.  TIME can
-either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
-  (interactive "P")
-  (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
-      (org-map-entries
-       (lambda () (org--deadline-or-schedule arg 'scheduled time))
-       nil
-       (if (eq org-loop-over-headlines-in-active-region 'start-level)
-	   'region-start-level
-	 'region)
-       (lambda () (when (org-invisible-p) (org-end-of-subtree nil t))))
-    (org--deadline-or-schedule arg 'scheduled time)))
-
-(defun org-get-scheduled-time (pom &optional inherit)
-  "Get the scheduled time as a time tuple, of a format suitable
-for calling org-schedule with, or if there is no scheduling,
-returns nil."
-  (let ((time (org-entry-get pom "SCHEDULED" inherit)))
-    (when time
-      (apply 'encode-time (org-parse-time-string time)))))
-
-(defun org-get-deadline-time (pom &optional inherit)
-  "Get the deadline as a time tuple, of a format suitable for
-calling org-deadline with, or if there is no scheduling, returns
-nil."
-  (let ((time (org-entry-get pom "DEADLINE" inherit)))
-    (when time
-      (apply 'encode-time (org-parse-time-string time)))))
-
-(defun org-remove-timestamp-with-keyword (keyword)
-  "Remove all time stamps with KEYWORD in the current entry."
-  (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
-	beg)
-    (save-excursion
-      (org-back-to-heading t)
-      (setq beg (point))
-      (outline-next-heading)
-      (while (re-search-backward re beg t)
-	(replace-match "")
-	(if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
-		 (equal (char-before) ?\ ))
-	    (backward-delete-char 1)
-	  (when (string-match "^[ \t]*$" (buffer-substring
-					  (point-at-bol) (point-at-eol)))
-	    (delete-region (point-at-bol)
-			   (min (point-max) (1+ (point-at-eol))))))))))
-
-(defvar org-time-was-given) ; dynamically scoped parameter
-(defvar org-end-time-was-given) ; dynamically scoped parameter
-
-(defun org-at-planning-p ()
-  "Non-nil when point is on a planning info line."
-  ;; This is as accurate and faster than `org-element-at-point' since
-  ;; planning info location is fixed in the section.
-  (org-with-wide-buffer
-   (beginning-of-line)
-   (and (looking-at-p org-planning-line-re)
-	(eq (point)
-	    (ignore-errors
-	      (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
-		  (org-back-to-heading t)
-		(org-with-limited-levels (org-back-to-heading t)))
-	      (line-beginning-position 2))))))
-
-(defun org-add-planning-info (what &optional time &rest remove)
-  "Insert new timestamp with keyword in the planning line.
-WHAT indicates what kind of time stamp to add.  It is a symbol
-among `closed', `deadline', `scheduled' and nil.  TIME indicates
-the time to use.  If none is given, the user is prompted for
-a date.  REMOVE indicates what kind of entries to remove.  An old
-WHAT entry will also be removed."
-  (let (org-time-was-given org-end-time-was-given default-time default-input)
-    (catch 'exit
-      (when (and (memq what '(scheduled deadline))
-		 (or (not time)
-		     (and (stringp time)
-			  (string-match "^[-+]+[0-9]" time))))
-	;; Try to get a default date/time from existing timestamp
-	(save-excursion
-	  (org-back-to-heading t)
-	  (let ((end (save-excursion (outline-next-heading) (point))) ts)
-	    (when (re-search-forward (if (eq what 'scheduled)
-					 org-scheduled-time-regexp
-				       org-deadline-time-regexp)
-				     end t)
-	      (setq ts (match-string 1)
-		    default-time (apply 'encode-time (org-parse-time-string ts))
-		    default-input (and ts (org-get-compact-tod ts)))))))
-      (when what
-	(setq time
-	      (if (stringp time)
-		  ;; This is a string (relative or absolute), set
-		  ;; proper date.
-		  (apply #'encode-time
-			 (org-read-date-analyze
-			  time default-time (decode-time default-time)))
-		;; If necessary, get the time from the user
-		(or time (org-read-date nil 'to-time nil nil
-					default-time default-input)))))
-
-      (org-with-wide-buffer
-       (org-back-to-heading t)
-       (forward-line)
-       (unless (bolp) (insert "\n"))
-       (cond ((looking-at-p org-planning-line-re)
-	      ;; Move to current indentation.
-	      (skip-chars-forward " \t")
-	      ;; Check if we have to remove something.
-	      (dolist (type (if what (cons what remove) remove))
-		(save-excursion
-		  (when (re-search-forward
-			 (cl-case type
-			   (closed org-closed-time-regexp)
-			   (deadline org-deadline-time-regexp)
-			   (scheduled org-scheduled-time-regexp)
-			   (otherwise
-			    (error "Invalid planning type: %s" type)))
-			 (line-end-position) t)
-		    ;; Delete until next keyword or end of line.
-		    (delete-region
-		     (match-beginning 0)
-		     (if (re-search-forward org-keyword-time-not-clock-regexp
-					    (line-end-position)
-					    t)
-			 (match-beginning 0)
-		       (line-end-position))))))
-	      ;; If there is nothing more to add and no more keyword
-	      ;; is left, remove the line completely.
-	      (if (and (looking-at-p "[ \t]*$") (not what))
-		  (delete-region (line-beginning-position)
-				 (line-beginning-position 2))
-		;; If we removed last keyword, do not leave trailing
-		;; white space at the end of line.
-		(let ((p (point)))
-		  (save-excursion
-		    (end-of-line)
-		    (unless (= (skip-chars-backward " \t" p) 0)
-		      (delete-region (point) (line-end-position)))))))
-	     ((not what) (throw 'exit nil)) ; Nothing to do.
-	     (t (insert-before-markers "\n")
-		(backward-char 1)
-		(when org-adapt-indentation
-		  (indent-to-column (1+ (org-outline-level))))))
-       (when what
-	 ;; Insert planning keyword.
-	 (insert (cl-case what
-		   (closed org-closed-string)
-		   (deadline org-deadline-string)
-		   (scheduled org-scheduled-string)
-		   (otherwise (error "Invalid planning type: %s" what)))
-		 " ")
-	 ;; Insert associated timestamp.
-	 (let ((ts (org-insert-time-stamp
-		    time
-		    (or org-time-was-given
-			(and (eq what 'closed) org-log-done-with-time))
-		    (eq what 'closed)
-		    nil nil (list org-end-time-was-given))))
-	   (unless (eolp) (insert " "))
-	   ts))))))
-
-(defvar org-log-note-marker (make-marker)
-  "Marker pointing at the entry where the note is to be inserted.")
-(defvar org-log-note-purpose nil)
-(defvar org-log-note-state nil)
-(defvar org-log-note-previous-state nil)
-(defvar org-log-note-extra nil)
-(defvar org-log-note-window-configuration nil)
-(defvar org-log-note-return-to (make-marker))
-(defvar org-log-note-effective-time nil
-  "Remembered current time so that dynamically scoped
-`org-extend-today-until' affects timestamps in state change log")
-
-(defvar org-log-post-message nil
-  "Message to be displayed after a log note has been stored.
-The auto-repeater uses this.")
-
-(defun org-add-note ()
-  "Add a note to the current entry.
-This is done in the same way as adding a state change note."
-  (interactive)
-  (org-add-log-setup 'note))
-
-(defun org-log-beginning (&optional create)
-  "Return expected start of log notes in current entry.
-When optional argument CREATE is non-nil, the function creates
-a drawer to store notes, if necessary.  Returned position ignores
-narrowing."
-  (org-with-wide-buffer
-   (let ((drawer (org-log-into-drawer)))
-     (cond
-      (drawer
-       (org-end-of-meta-data)
-       (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
-	     (end (if (org-at-heading-p) (point)
-		    (save-excursion (outline-next-heading) (point))))
-	     (case-fold-search t))
-	 (catch 'exit
-	   ;; Try to find existing drawer.
-	   (while (re-search-forward regexp end t)
-	     (let ((element (org-element-at-point)))
-	       (when (eq (org-element-type element) 'drawer)
-		 (let ((cend  (org-element-property :contents-end element)))
-		   (when (and (not org-log-states-order-reversed) cend)
-		     (goto-char cend)))
-		 (throw 'exit nil))))
-	   ;; No drawer found.  Create one, if permitted.
-	   (when create
-	     (unless (bolp) (insert "\n"))
-	     (let ((beg (point)))
-	       (insert ":" drawer ":\n:END:\n")
-	       (org-indent-region beg (point)))
-	     (end-of-line -1)))))
-      (t
-       (org-end-of-meta-data org-log-state-notes-insert-after-drawers)
-       (skip-chars-forward " \t\n")
-       (beginning-of-line)
-       (unless org-log-states-order-reversed
-	 (org-skip-over-state-notes)
-	 (skip-chars-backward " \t\n")
-	 (forward-line)))))
-   (if (bolp) (point) (line-beginning-position 2))))
-
-(defun org-add-log-setup (&optional purpose state prev-state how extra)
-  "Set up the post command hook to take a note.
-If this is about to TODO state change, the new state is expected in STATE.
-HOW is an indicator what kind of note should be created.
-EXTRA is additional text that will be inserted into the notes buffer."
-  (move-marker org-log-note-marker (point))
-  (setq org-log-note-purpose purpose
-	org-log-note-state state
-	org-log-note-previous-state prev-state
-	org-log-note-how how
-	org-log-note-extra extra
-	org-log-note-effective-time (org-current-effective-time))
-  (add-hook 'post-command-hook 'org-add-log-note 'append))
-
-(defun org-skip-over-state-notes ()
-  "Skip past the list of State notes in an entry."
-  (when (ignore-errors (goto-char (org-in-item-p)))
-    (let* ((struct (org-list-struct))
-	   (prevs (org-list-prevs-alist struct))
-	   (regexp
-	    (concat "[ \t]*- +"
-		    (replace-regexp-in-string
-		     " +" " +"
-		     (org-replace-escapes
-		      (regexp-quote (cdr (assq 'state org-log-note-headings)))
-		      `(("%d" . ,org-ts-regexp-inactive)
-			("%D" . ,org-ts-regexp)
-			("%s" . "\\(?:\"\\S-+\"\\)?")
-			("%S" . "\\(?:\"\\S-+\"\\)?")
-			("%t" . ,org-ts-regexp-inactive)
-			("%T" . ,org-ts-regexp)
-			("%u" . ".*?")
-			("%U" . ".*?")))))))
-      (while (looking-at-p regexp)
-	(goto-char (or (org-list-get-next-item (point) struct prevs)
-		       (org-list-get-item-end (point) struct)))))))
-
-(defun org-add-log-note (&optional _purpose)
-  "Pop up a window for taking a note, and add this note later."
-  (remove-hook 'post-command-hook 'org-add-log-note)
-  (setq org-log-note-window-configuration (current-window-configuration))
-  (delete-other-windows)
-  (move-marker org-log-note-return-to (point))
-  (pop-to-buffer-same-window (marker-buffer org-log-note-marker))
-  (goto-char org-log-note-marker)
-  (org-switch-to-buffer-other-window "*Org Note*")
-  (erase-buffer)
-  (if (memq org-log-note-how '(time state))
-      (org-store-log-note)
-    (let ((org-inhibit-startup t)) (org-mode))
-    (insert (format "# Insert note for %s.
-# Finish with C-c C-c, or cancel with C-c C-k.\n\n"
-		    (cond
-		     ((eq org-log-note-purpose 'clock-out) "stopped clock")
-		     ((eq org-log-note-purpose 'done)  "closed todo item")
-		     ((eq org-log-note-purpose 'state)
-		      (format "state change from \"%s\" to \"%s\""
-			      (or org-log-note-previous-state "")
-			      (or org-log-note-state "")))
-		     ((eq org-log-note-purpose 'reschedule)
-		      "rescheduling")
-		     ((eq org-log-note-purpose 'delschedule)
-		      "no longer scheduled")
-		     ((eq org-log-note-purpose 'redeadline)
-		      "changing deadline")
-		     ((eq org-log-note-purpose 'deldeadline)
-		      "removing deadline")
-		     ((eq org-log-note-purpose 'refile)
-		      "refiling")
-		     ((eq org-log-note-purpose 'note)
-		      "this entry")
-		     (t (error "This should not happen")))))
-    (when org-log-note-extra (insert org-log-note-extra))
-    (setq-local org-finish-function 'org-store-log-note)
-    (run-hooks 'org-log-buffer-setup-hook)))
-
-(defvar org-note-abort nil) ; dynamically scoped
-(defun org-store-log-note ()
-  "Finish taking a log note, and insert it to where it belongs."
-  (let ((txt (prog1 (buffer-string)
-	       (kill-buffer)))
-	(note (cdr (assq org-log-note-purpose org-log-note-headings)))
-	lines)
-    (while (string-match "\\`# .*\n[ \t\n]*" txt)
-      (setq txt (replace-match "" t t txt)))
-    (when (string-match "\\s-+\\'" txt)
-      (setq txt (replace-match "" t t txt)))
-    (setq lines (and (not (equal "" txt)) (org-split-string txt "\n")))
-    (when (org-string-nw-p note)
-      (setq note
-	    (org-replace-escapes
-	     note
-	     (list (cons "%u" (user-login-name))
-		   (cons "%U" user-full-name)
-		   (cons "%t" (format-time-string
-			       (org-time-stamp-format 'long 'inactive)
-			       org-log-note-effective-time))
-		   (cons "%T" (format-time-string
-			       (org-time-stamp-format 'long nil)
-			       org-log-note-effective-time))
-		   (cons "%d" (format-time-string
-			       (org-time-stamp-format nil 'inactive)
-			       org-log-note-effective-time))
-		   (cons "%D" (format-time-string
-			       (org-time-stamp-format nil nil)
-			       org-log-note-effective-time))
-		   (cons "%s" (cond
-			       ((not org-log-note-state) "")
-			       ((string-match-p org-ts-regexp
-						org-log-note-state)
-				(format "\"[%s]\""
-					(substring org-log-note-state 1 -1)))
-			       (t (format "\"%s\"" org-log-note-state))))
-		   (cons "%S"
-			 (cond
-			  ((not org-log-note-previous-state) "")
-			  ((string-match-p org-ts-regexp
-					   org-log-note-previous-state)
-			   (format "\"[%s]\""
-				   (substring
-				    org-log-note-previous-state 1 -1)))
-			  (t (format "\"%s\""
-				     org-log-note-previous-state)))))))
-      (when lines (setq note (concat note " \\\\")))
-      (push note lines))
-    (when (and lines (not org-note-abort))
-      (with-current-buffer (marker-buffer org-log-note-marker)
-	(org-with-wide-buffer
-	 ;; Find location for the new note.
-	 (goto-char org-log-note-marker)
-	 (set-marker org-log-note-marker nil)
-	 ;; Note associated to a clock is to be located right after
-	 ;; the clock.  Do not move point.
-	 (unless (eq org-log-note-purpose 'clock-out)
-	   (goto-char (org-log-beginning t)))
-	 ;; Make sure point is at the beginning of an empty line.
-	 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
-	       ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
-	 ;; In an existing list, add a new item at the top level.
-	 ;; Otherwise, indent line like a regular one.
-	 (let ((itemp (org-in-item-p)))
-	   (if itemp
-	       (indent-line-to
-		(let ((struct (save-excursion
-				(goto-char itemp) (org-list-struct))))
-		  (org-list-get-ind (org-list-get-top-point struct) struct)))
-	     (org-indent-line)))
-	 (insert (org-list-bullet-string "-") (pop lines))
-	 (let ((ind (org-list-item-body-column (line-beginning-position))))
-	   (dolist (line lines)
-	     (insert "\n")
-	     (indent-line-to ind)
-	     (insert line)))
-	 (message "Note stored")
-	 (org-back-to-heading t)
-	 (org-cycle-hide-drawers 'children))
-	;; Fix `buffer-undo-list' when `org-store-log-note' is called
-	;; from within `org-add-log-note' because `buffer-undo-list'
-	;; is then modified outside of `org-with-remote-undo'.
-	(when (eq this-command 'org-agenda-todo)
-	  (setcdr buffer-undo-list (cddr buffer-undo-list))))))
-  ;; Don't add undo information when called from `org-agenda-todo'.
-  (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
-    (set-window-configuration org-log-note-window-configuration)
-    (with-current-buffer (marker-buffer org-log-note-return-to)
-      (goto-char org-log-note-return-to))
-    (move-marker org-log-note-return-to nil)
-    (when org-log-post-message (message "%s" org-log-post-message))))
-
-(defun org-remove-empty-drawer-at (pos)
-  "Remove an empty drawer at position POS.
-POS may also be a marker."
-  (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
-    (org-with-wide-buffer
-     (goto-char pos)
-     (let ((drawer (org-element-at-point)))
-       (when (and (memq (org-element-type drawer) '(drawer property-drawer))
-		  (not (org-element-property :contents-begin drawer)))
-	 (delete-region (org-element-property :begin drawer)
-			(progn (goto-char (org-element-property :end drawer))
-			       (skip-chars-backward " \r\t\n")
-			       (forward-line)
-			       (point))))))))
-
-(defvar org-ts-type nil)
-(defun org-sparse-tree (&optional arg type)
-  "Create a sparse tree, prompt for the details.
-This command can create sparse trees.  You first need to select the type
-of match used to create the tree:
-
-t      Show all TODO entries.
-T      Show entries with a specific TODO keyword.
-m      Show entries selected by a tags/property match.
-p      Enter a property name and its value (both with completion on existing
-       names/values) and show entries with that property.
-r      Show entries matching a regular expression (`/' can be used as well).
-b      Show deadlines and scheduled items before a date.
-a      Show deadlines and scheduled items after a date.
-d      Show deadlines due within `org-deadline-warning-days'.
-D      Show deadlines and scheduled items between a date range."
-  (interactive "P")
-  (setq type (or type org-sparse-tree-default-date-type))
-  (setq org-ts-type type)
-  (message "Sparse tree: [r]egexp [t]odo [T]odo-kwd [m]atch [p]roperty
-             \[d]eadlines [b]efore-date [a]fter-date [D]ates range
-             \[c]ycle through date types: %s"
-	   (cl-case type
-	     (all "all timestamps")
-	     (scheduled "only scheduled")
-	     (deadline "only deadline")
-	     (active "only active timestamps")
-	     (inactive "only inactive timestamps")
-	     (closed "with a closed time-stamp")
-	     (otherwise "scheduled/deadline")))
-  (let ((answer (read-char-exclusive)))
-    (cl-case answer
-      (?c
-       (org-sparse-tree
-	arg
-	(cadr
-	 (memq type '(nil all scheduled deadline active inactive closed)))))
-      (?d (call-interactively 'org-check-deadlines))
-      (?b (call-interactively 'org-check-before-date))
-      (?a (call-interactively 'org-check-after-date))
-      (?D (call-interactively 'org-check-dates-range))
-      (?t (call-interactively 'org-show-todo-tree))
-      (?T (org-show-todo-tree '(4)))
-      (?m (call-interactively 'org-match-sparse-tree))
-      ((?p ?P)
-       (let* ((kwd (completing-read
-		    "Property: " (mapcar #'list (org-buffer-property-keys))))
-	      (value (completing-read
-		      "Value: " (mapcar #'list (org-property-values kwd)))))
-	 (unless (string-match "\\`{.*}\\'" value)
-	   (setq value (concat "\"" value "\"")))
-	 (org-match-sparse-tree arg (concat kwd "=" value))))
-      ((?r ?R ?/) (call-interactively 'org-occur))
-      (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
-
-(defvar-local org-occur-highlights nil
-  "List of overlays used for occur matches.")
-(defvar-local org-occur-parameters nil
-  "Parameters of the active org-occur calls.
-This is a list, each call to org-occur pushes as cons cell,
-containing the regular expression and the callback, onto the list.
-The list can contain several entries if `org-occur' has been called
-several time with the KEEP-PREVIOUS argument.  Otherwise, this list
-will only contain one set of parameters.  When the highlights are
-removed (for example with `C-c C-c', or with the next edit (depending
-on `org-remove-highlights-with-change'), this variable is emptied
-as well.")
-
-(defun org-occur (regexp &optional keep-previous callback)
-  "Make a compact tree which shows all matches of REGEXP.
-
-The tree will show the lines where the regexp matches, and any other context
-defined in `org-show-context-detail', which see.
-
-When optional argument KEEP-PREVIOUS is non-nil, highlighting and exposing
-done by a previous call to `org-occur' will be kept, to allow stacking of
-calls to this command.
-
-Optional argument CALLBACK can be a function of no argument.  In this case,
-it is called with point at the end of the match, match data being set
-accordingly.  Current match is shown only if the return value is non-nil.
-The function must neither move point nor alter narrowing."
-  (interactive "sRegexp: \nP")
-  (when (equal regexp "")
-    (user-error "Regexp cannot be empty"))
-  (unless keep-previous
-    (org-remove-occur-highlights nil nil t))
-  (push (cons regexp callback) org-occur-parameters)
-  (let ((cnt 0))
-    (save-excursion
-      (goto-char (point-min))
-      (when (or (not keep-previous)	    ; do not want to keep
-		(not org-occur-highlights)) ; no previous matches
-	;; hide everything
-	(org-overview))
-      (let ((case-fold-search (if (eq org-occur-case-fold-search 'smart)
-				  (isearch-no-upper-case-p regexp t)
-				org-occur-case-fold-search)))
-	(while (re-search-forward regexp nil t)
-	  (when (or (not callback)
-		    (save-match-data (funcall callback)))
-	    (setq cnt (1+ cnt))
-	    (when org-highlight-sparse-tree-matches
-	      (org-highlight-new-match (match-beginning 0) (match-end 0)))
-	    (org-show-context 'occur-tree)))))
-    (when org-remove-highlights-with-change
-      (add-hook 'before-change-functions 'org-remove-occur-highlights
-		nil 'local))
-    (unless org-sparse-tree-open-archived-trees
-      (org-hide-archived-subtrees (point-min) (point-max)))
-    (run-hooks 'org-occur-hook)
-    (when (called-interactively-p 'interactive)
-      (message "%d match(es) for regexp %s" cnt regexp))
-    cnt))
-
-(defun org-occur-next-match (&optional n _reset)
-  "Function for `next-error-function' to find sparse tree matches.
-N is the number of matches to move, when negative move backwards.
-This function always goes back to the starting point when no
-match is found."
-  (let* ((limit (if (< n 0) (point-min) (point-max)))
-	 (search-func (if (< n 0)
-			  'previous-single-char-property-change
-			'next-single-char-property-change))
-	 (n (abs n))
-	 (pos (point))
-	 p1)
-    (catch 'exit
-      (while (setq p1 (funcall search-func (point) 'org-type))
-	(when (equal p1 limit)
-	  (goto-char pos)
-	  (user-error "No more matches"))
-	(when (equal (get-char-property p1 'org-type) 'org-occur)
-	  (setq n (1- n))
-	  (when (= n 0)
-	    (goto-char p1)
-	    (throw 'exit (point))))
-	(goto-char p1))
-      (goto-char p1)
-      (user-error "No more matches"))))
-
-(defun org-show-context (&optional key)
-  "Make sure point and context are visible.
-Optional argument KEY, when non-nil, is a symbol.  See
-`org-show-context-detail' for allowed values and how much is to
-be shown."
-  (org-show-set-visibility
-   (cond ((symbolp org-show-context-detail) org-show-context-detail)
-	 ((cdr (assq key org-show-context-detail)))
-	 (t (cdr (assq 'default org-show-context-detail))))))
-
-(defun org-show-set-visibility (detail)
-  "Set visibility around point according to DETAIL.
-DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
-`tree', `canonical' or t.  See `org-show-context-detail' for more
-information."
-  ;; Show current heading and possibly its entry, following headline
-  ;; or all children.
-  (if (and (org-at-heading-p) (not (eq detail 'local)))
-      (org-flag-heading nil)
-    (org-show-entry)
-    ;; If point is hidden within a drawer or a block, make sure to
-    ;; expose it.
-    (dolist (o (overlays-at (point)))
-      (when (memq (overlay-get o 'invisible) '(org-hide-block outline))
-	(delete-overlay o)))
-    (unless (org-before-first-heading-p)
-      (org-with-limited-levels
-       (cl-case detail
-	 ((tree canonical t) (org-show-children))
-	 ((nil minimal ancestors))
-	 (t (save-excursion
-	      (outline-next-heading)
-	      (org-flag-heading nil)))))))
-  ;; Show all siblings.
-  (when (eq detail 'lineage) (org-show-siblings))
-  ;; Show ancestors, possibly with their children.
-  (when (memq detail '(ancestors lineage tree canonical t))
-    (save-excursion
-      (while (org-up-heading-safe)
-	(org-flag-heading nil)
-	(when (memq detail '(canonical t)) (org-show-entry))
-	(when (memq detail '(tree canonical t)) (org-show-children))))))
-
-(defvar org-reveal-start-hook nil
-  "Hook run before revealing a location.")
-
-(defun org-reveal (&optional siblings)
-  "Show current entry, hierarchy above it, and the following headline.
-
-This can be used to show a consistent set of context around
-locations exposed with `org-show-context'.
-
-With optional argument SIBLINGS, on each level of the hierarchy all
-siblings are shown.  This repairs the tree structure to what it would
-look like when opened with hierarchical calls to `org-cycle'.
-
-With a \\[universal-argument] \\[universal-argument] prefix, \
-go to the parent and show the entire tree."
-  (interactive "P")
-  (run-hooks 'org-reveal-start-hook)
-  (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
-	((equal siblings '(16))
-	 (save-excursion
-	   (when (org-up-heading-safe)
-	     (org-show-subtree)
-	     (run-hook-with-args 'org-cycle-hook 'subtree))))
-	(t (org-show-set-visibility 'lineage))))
-
-(defun org-highlight-new-match (beg end)
-  "Highlight from BEG to END and mark the highlight is an occur headline."
-  (let ((ov (make-overlay beg end)))
-    (overlay-put ov 'face 'secondary-selection)
-    (overlay-put ov 'org-type 'org-occur)
-    (push ov org-occur-highlights)))
-
-(defun org-remove-occur-highlights (&optional _beg _end noremove)
-  "Remove the occur highlights from the buffer.
-BEG and END are ignored.  If NOREMOVE is nil, remove this function
-from the `before-change-functions' in the current buffer."
-  (interactive)
-  (unless org-inhibit-highlight-removal
-    (mapc #'delete-overlay org-occur-highlights)
-    (setq org-occur-highlights nil)
-    (setq org-occur-parameters nil)
-    (unless noremove
-      (remove-hook 'before-change-functions
-		   'org-remove-occur-highlights 'local))))
-
-;;;; Priorities
-
-(defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
-  "Regular expression matching the priority indicator.")
-
-(defvar org-remove-priority-next-time nil)
-
-(defun org-priority-up ()
-  "Increase the priority of the current item."
-  (interactive)
-  (org-priority 'up))
-
-(defun org-priority-down ()
-  "Decrease the priority of the current item."
-  (interactive)
-  (org-priority 'down))
-
-(defun org-priority (&optional action _show)
-  "Change the priority of an item.
-ACTION can be `set', `up', `down', or a character."
-  (interactive "P")
-  (if (equal action '(4))
-      (org-show-priority)
-    (unless org-enable-priority-commands
-      (user-error "Priority commands are disabled"))
-    (setq action (or action 'set))
-    (let (current new news have remove)
-      (save-excursion
-	(org-back-to-heading t)
-	(when (looking-at org-priority-regexp)
-	  (setq current (string-to-char (match-string 2))
-		have t))
-	(cond
-	 ((eq action 'remove)
-	  (setq remove t new ?\ ))
-	 ((or (eq action 'set)
-	      (integerp action))
-	  (if (not (eq action 'set))
-	      (setq new action)
-	    (message "Priority %c-%c, SPC to remove: "
-		     org-highest-priority org-lowest-priority)
-	    (save-match-data
-	      (setq new (read-char-exclusive))))
-	  (when (and (= (upcase org-highest-priority) org-highest-priority)
-		     (= (upcase org-lowest-priority) org-lowest-priority))
-	    (setq new (upcase new)))
-	  (cond ((equal new ?\ ) (setq remove t))
-		((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
-		 (user-error "Priority must be between `%c' and `%c'"
-			     org-highest-priority org-lowest-priority))))
-	 ((eq action 'up)
-	  (setq new (if have
-			(1- current)  ; normal cycling
-		      ;; last priority was empty
-		      (if (eq last-command this-command)
-			  org-lowest-priority  ; wrap around empty to lowest
-			;; default
-			(if org-priority-start-cycle-with-default
-			    org-default-priority
-			  (1- org-default-priority))))))
-	 ((eq action 'down)
-	  (setq new (if have
-			(1+ current)  ; normal cycling
-		      ;; last priority was empty
-		      (if (eq last-command this-command)
-			  org-highest-priority  ; wrap around empty to highest
-			;; default
-			(if org-priority-start-cycle-with-default
-			    org-default-priority
-			  (1+ org-default-priority))))))
-	 (t (user-error "Invalid action")))
-	(when (or (< (upcase new) org-highest-priority)
-		  (> (upcase new) org-lowest-priority))
-	  (if (and (memq action '(up down))
-		   (not have) (not (eq last-command this-command)))
-	      ;; `new' is from default priority
-	      (error
-	       "The default can not be set, see `org-default-priority' why")
-	    ;; normal cycling: `new' is beyond highest/lowest priority
-	    ;; and is wrapped around to the empty priority
-	    (setq remove t)))
-	(setq news (format "%c" new))
-	(if have
-	    (if remove
-		(replace-match "" t t nil 1)
-	      (replace-match news t t nil 2))
-	  (if remove
-	      (user-error "No priority cookie found in line")
-	    (let ((case-fold-search nil)) (looking-at org-todo-line-regexp))
-	    (if (match-end 2)
-		(progn
-		  (goto-char (match-end 2))
-		  (insert " [#" news "]"))
-	      (goto-char (match-beginning 3))
-	      (insert "[#" news "] "))))
-	(org-set-tags nil 'align))
-      (if remove
-	  (message "Priority removed")
-	(message "Priority of current item set to %s" news)))))
-
-(defun org-show-priority ()
-  "Show the priority of the current item.
-This priority is composed of the main priority given with the [#A] cookies,
-and by additional input from the age of a schedules or deadline entry."
-  (interactive)
-  (let ((pri (if (eq major-mode 'org-agenda-mode)
-		 (org-get-at-bol 'priority)
-	       (save-excursion
-		 (save-match-data
-		   (beginning-of-line)
-		   (and (looking-at org-heading-regexp)
-			(org-get-priority (match-string 0))))))))
-    (message "Priority is %d" (if pri pri -1000))))
-
-(defun org-get-priority (s)
-  "Find priority cookie and return priority."
-  (save-match-data
-    (if (functionp org-get-priority-function)
-	(funcall org-get-priority-function)
-      (if (not (string-match org-priority-regexp s))
-	  (* 1000 (- org-lowest-priority org-default-priority))
-	(* 1000 (- org-lowest-priority
-		   (string-to-char (match-string 2 s))))))))
-
-;;;; Tags
-
-(defvar org-agenda-archives-mode)
-(defvar org-map-continue-from nil
-  "Position from where mapping should continue.
-Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
-
-(defvar org-scanner-tags nil
-  "The current tag list while the tags scanner is running.")
-
-(defvar org-trust-scanner-tags nil
-  "Should `org-get-tags-at' use the tags for the scanner.
-This is for internal dynamical scoping only.
-When this is non-nil, the function `org-get-tags-at' will return the value
-of `org-scanner-tags' instead of building the list by itself.  This
-can lead to large speed-ups when the tags scanner is used in a file with
-many entries, and when the list of tags is retrieved, for example to
-obtain a list of properties.  Building the tags list for each entry in such
-a file becomes an N^2 operation - but with this variable set, it scales
-as N.")
-
-(defvar org--matcher-tags-todo-only nil)
-
-(defun org-scan-tags (action matcher todo-only &optional start-level)
-  "Scan headline tags with inheritance and produce output ACTION.
-
-ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
-or `agenda' to produce an entry list for an agenda view.  It can also be
-a Lisp form or a function that should be called at each matched headline, in
-this case the return value is a list of all return values from these calls.
-
-MATCHER is a function accepting three arguments, returning
-a non-nil value whenever a given set of tags qualifies a headline
-for inclusion.  See `org-make-tags-matcher' for more information.
-As a special case, it can also be set to t (respectively nil) in
-order to match all (respectively none) headline.
-
-When TODO-ONLY is non-nil, only lines with a TODO keyword are
-included in the output.
-
-START-LEVEL can be a string with asterisks, reducing the scope to
-headlines matching this string."
-  (require 'org-agenda)
-  (let* ((re (concat "^"
-		     (if start-level
-			 ;; Get the correct level to match
-			 (concat "\\*\\{" (number-to-string start-level) "\\} ")
-		       org-outline-regexp)
-		     " *\\(\\<\\("
-		     (mapconcat #'regexp-quote org-todo-keywords-1 "\\|")
-		     "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$"))
-	 (props (list 'face 'default
-		      'done-face 'org-agenda-done
-		      'undone-face 'default
-		      'mouse-face 'highlight
-		      'org-not-done-regexp org-not-done-regexp
-		      'org-todo-regexp org-todo-regexp
-		      'org-complex-heading-regexp org-complex-heading-regexp
-		      'help-echo
-		      (format "mouse-2 or RET jump to Org file %S"
-			      (abbreviate-file-name
-			       (or (buffer-file-name (buffer-base-buffer))
-				   (buffer-name (buffer-base-buffer)))))))
-	 (org-map-continue-from nil)
-         lspos tags tags-list
-	 (tags-alist (list (cons 0 org-file-tags)))
-	 (llast 0) rtn rtn1 level category i txt
-	 todo marker entry priority
-	 ts-date ts-date-type ts-date-pair)
-    (unless (or (member action '(agenda sparse-tree)) (functionp action))
-      (setq action (list 'lambda nil action)))
-    (save-excursion
-      (goto-char (point-min))
-      (when (eq action 'sparse-tree)
-	(org-overview)
-	(org-remove-occur-highlights))
-      (while (let (case-fold-search)
-	       (re-search-forward re nil t))
-	(setq org-map-continue-from nil)
-	(catch :skip
-	  ;; Ignore closing parts of inline tasks.
-	  (when (and (fboundp 'org-inlinetask-end-p) (org-inlinetask-end-p))
-	    (throw :skip t))
-	  (setq todo
-		;; TODO: is the 1-2 difference a bug?
-		(when (match-end 1) (match-string-no-properties 2))
-		tags (when (match-end 4) (match-string-no-properties 4)))
-	  (goto-char (setq lspos (match-beginning 0)))
-	  (setq level (org-reduced-level (org-outline-level))
-		category (org-get-category))
-          (when (eq action 'agenda)
-            (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
-		  ts-date (car ts-date-pair)
-		  ts-date-type (cdr ts-date-pair)))
-	  (setq i llast llast level)
-	  ;; remove tag lists from same and sublevels
-	  (while (>= i level)
-	    (when (setq entry (assoc i tags-alist))
-	      (setq tags-alist (delete entry tags-alist)))
-	    (setq i (1- i)))
-	  ;; add the next tags
-	  (when tags
-	    (setq tags (org-split-string tags ":")
-		  tags-alist
-		  (cons (cons level tags) tags-alist)))
-	  ;; compile tags for current headline
-	  (setq tags-list
-		(if org-use-tag-inheritance
-		    (apply 'append (mapcar 'cdr (reverse tags-alist)))
-		  tags)
-		org-scanner-tags tags-list)
-	  (when org-use-tag-inheritance
-	    (setcdr (car tags-alist)
-		    (mapcar (lambda (x)
-			      (setq x (copy-sequence x))
-			      (org-add-prop-inherited x))
-			    (cdar tags-alist))))
-	  (when (and tags org-use-tag-inheritance
-		     (or (not (eq t org-use-tag-inheritance))
-			 org-tags-exclude-from-inheritance))
-	    ;; Selective inheritance, remove uninherited ones.
-	    (setcdr (car tags-alist)
-		    (org-remove-uninherited-tags (cdar tags-alist))))
-	  (when (and
-
-		 ;; eval matcher only when the todo condition is OK
-		 (and (or (not todo-only) (member todo org-todo-keywords-1))
-		      (if (functionp matcher)
-			  (let ((case-fold-search t) (org-trust-scanner-tags t))
-			    (funcall matcher todo tags-list level))
-			matcher))
-
-		 ;; Call the skipper, but return t if it does not
-		 ;; skip, so that the `and' form continues evaluating.
-		 (progn
-		   (unless (eq action 'sparse-tree) (org-agenda-skip))
-		   t)
-
-		 ;; Check if timestamps are deselecting this entry
-		 (or (not todo-only)
-		     (and (member todo org-todo-keywords-1)
-			  (or (not org-agenda-tags-todo-honor-ignore-options)
-			      (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
-
-	    ;; select this headline
-	    (cond
-	     ((eq action 'sparse-tree)
-	      (and org-highlight-sparse-tree-matches
-		   (org-get-heading) (match-end 0)
-		   (org-highlight-new-match
-		    (match-beginning 1) (match-end 1)))
-	      (org-show-context 'tags-tree))
-	     ((eq action 'agenda)
-	      (setq txt (org-agenda-format-item
-			 ""
-			 (concat
-			  (if (eq org-tags-match-list-sublevels 'indented)
-			      (make-string (1- level) ?.) "")
-			  (org-get-heading))
-			 (make-string level ?\s)
-			 category
-			 tags-list)
-		    priority (org-get-priority txt))
-	      (goto-char lspos)
-	      (setq marker (org-agenda-new-marker))
-	      (org-add-props txt props
-		'org-marker marker 'org-hd-marker marker 'org-category category
-		'todo-state todo
-                'ts-date ts-date
-		'priority priority
-                'type (concat "tagsmatch" ts-date-type))
-	      (push txt rtn))
-	     ((functionp action)
-	      (setq org-map-continue-from nil)
-	      (save-excursion
-		(setq rtn1 (funcall action))
-		(push rtn1 rtn)))
-	     (t (user-error "Invalid action")))
-
-	    ;; if we are to skip sublevels, jump to end of subtree
-	    (unless org-tags-match-list-sublevels
-	      (org-end-of-subtree t)
-	      (backward-char 1))))
-	;; Get the correct position from where to continue
-	(if org-map-continue-from
-	    (goto-char org-map-continue-from)
-	  (and (= (point) lspos) (end-of-line 1)))))
-    (when (and (eq action 'sparse-tree)
-	       (not org-sparse-tree-open-archived-trees))
-      (org-hide-archived-subtrees (point-min) (point-max)))
-    (nreverse rtn)))
-
-(defun org-remove-uninherited-tags (tags)
-  "Remove all tags that are not inherited from the list TAGS."
-  (cond
-   ((eq org-use-tag-inheritance t)
-    (if org-tags-exclude-from-inheritance
-	(org-delete-all org-tags-exclude-from-inheritance tags)
-      tags))
-   ((not org-use-tag-inheritance) nil)
-   ((stringp org-use-tag-inheritance)
-    (delq nil (mapcar
-	       (lambda (x)
-		 (if (and (string-match org-use-tag-inheritance x)
-			  (not (member x org-tags-exclude-from-inheritance)))
-		     x nil))
-	       tags)))
-   ((listp org-use-tag-inheritance)
-    (delq nil (mapcar
-	       (lambda (x)
-		 (if (member x org-use-tag-inheritance) x nil))
-	       tags)))))
-
-(defun org-match-sparse-tree (&optional todo-only match)
-  "Create a sparse tree according to tags string MATCH.
-
-MATCH is a string with match syntax.  It can contain a selection
-of tags (\"+work+urgent-boss\"), properties (\"LEVEL>3\"), and
-TODO keywords (\"TODO=\\\"WAITING\\\"\") or a combination of
-those.  See the manual for details.
-
-If optional argument TODO-ONLY is non-nil, only select lines that
-are also TODO tasks."
-  (interactive "P")
-  (org-agenda-prepare-buffers (list (current-buffer)))
-  (let ((org--matcher-tags-todo-only todo-only))
-    (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match))
-		   org--matcher-tags-todo-only)))
-
-(defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
-
-(defvar org-cached-props nil)
-(defun org-cached-entry-get (pom property)
-  (if (or (eq t org-use-property-inheritance)
-	  (and (stringp org-use-property-inheritance)
-	       (let ((case-fold-search t))
-		 (string-match-p org-use-property-inheritance property)))
-	  (and (listp org-use-property-inheritance)
-	       (member-ignore-case property org-use-property-inheritance)))
-      ;; Caching is not possible, check it directly.
-      (org-entry-get pom property 'inherit)
-    ;; Get all properties, so we can do complicated checks easily.
-    (cdr (assoc-string property
-		       (or org-cached-props
-			   (setq org-cached-props (org-entry-properties pom)))
-		       t))))
-
-(defun org-global-tags-completion-table (&optional files)
-  "Return the list of all tags in all agenda buffer/files.
-Optional FILES argument is a list of files which can be used
-instead of the agenda files."
-  (save-excursion
-    (org-uniquify
-     (delq nil
-	   (apply #'append
-		  (mapcar
-		   (lambda (file)
-		     (set-buffer (find-file-noselect file))
-		     (org--tag-add-to-alist
-		      (org-get-buffer-tags)
-		      (mapcar (lambda (x)
-				(and (stringp (car-safe x))
-				     (list (car-safe x))))
-			      org-current-tag-alist)))
-		   (if (car-safe files) files
-		     (org-agenda-files))))))))
-
-(defun org-make-tags-matcher (match)
-  "Create the TAGS/TODO matcher form for the selection string MATCH.
-
-Returns a cons of the selection string MATCH and a function
-implementing the matcher.
-
-The matcher is to be called at an Org entry, with point on the
-headline, and returns non-nil if the entry matches the selection
-string MATCH.  It must be called with three arguments: the TODO
-keyword at the entry (or nil if none), the list of all tags at
-the entry including inherited ones and the reduced level of the
-headline.  Additionally, the category of the entry, if any, must
-be specified as the text property `org-category' on the headline.
-
-This function sets the variable `org--matcher-tags-todo-only' to
-a non-nil value if the matcher restricts matching to TODO
-entries, otherwise it is not touched.
-
-See also `org-scan-tags'."
-  (unless match
-    ;; Get a new match request, with completion against the global
-    ;; tags table and the local tags in current buffer.
-    (let ((org-last-tags-completion-table
-	   (org--tag-add-to-alist
-	    (org-get-buffer-tags)
-	    (org-global-tags-completion-table))))
-      (setq match
-	    (completing-read
-	     "Match: "
-	     'org-tags-completion-function nil nil nil 'org-tags-history))))
-
-  (let ((match0 match)
-	(re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)")
-	(start 0)
-	tagsmatch todomatch tagsmatcher todomatcher)
-
-    ;; Expand group tags.
-    (setq match (org-tags-expand match))
-
-    ;; Check if there is a TODO part of this match, which would be the
-    ;; part after a "/".  To make sure that this slash is not part of
-    ;; a property value to be matched against, we also check that
-    ;; there is no / after that slash.  First, find the last slash.
-    (let ((s 0))
-      (while (string-match "/+" match s)
-	(setq start (match-beginning 0))
-	(setq s (match-end 0))))
-    (if (and (string-match "/+" match start)
-	     (not (string-match-p "\"" match start)))
-	;; Match contains also a TODO-matching request.
-	(progn
-	  (setq tagsmatch (substring match 0 (match-beginning 0)))
-	  (setq todomatch (substring match (match-end 0)))
-	  (when (string-prefix-p "!" todomatch)
-	    (setq org--matcher-tags-todo-only t)
-	    (setq todomatch (substring todomatch 1)))
-	  (when (string-match "\\`\\s-*\\'" todomatch)
-	    (setq todomatch nil)))
-      ;; Only matching tags.
-      (setq tagsmatch match)
-      (setq todomatch nil))
-
-    ;; Make the tags matcher.
-    (when (org-string-nw-p tagsmatch)
-      (let ((orlist nil)
-	    (orterms (org-split-string tagsmatch "|"))
-	    term)
-	(while (setq term (pop orterms))
-	  (while (and (equal (substring term -1) "\\") orterms)
-	    (setq term (concat term "|" (pop orterms)))) ;repair bad split.
-	  (while (string-match re term)
-	    (let* ((rest (substring term (match-end 0)))
-		   (minus (and (match-end 1)
-			       (equal (match-string 1 term) "-")))
-		   (tag (save-match-data
-			  (replace-regexp-in-string
-			   "\\\\-" "-" (match-string 2 term))))
-		   (regexp (eq (string-to-char tag) ?{))
-		   (levelp (match-end 4))
-		   (propp (match-end 5))
-		   (mm
-		    (cond
-		     (regexp `(org-match-any-p ,(substring tag 1 -1) tags-list))
-		     (levelp
-		      `(,(org-op-to-function (match-string 3 term))
-			level
-			,(string-to-number (match-string 4 term))))
-		     (propp
-		      (let* ((gv (pcase (upcase (match-string 5 term))
-				   ("CATEGORY"
-				    '(get-text-property (point) 'org-category))
-				   ("TODO" 'todo)
-				   (p `(org-cached-entry-get nil ,p))))
-			     (pv (match-string 7 term))
-			     (regexp (eq (string-to-char pv) ?{))
-			     (strp (eq (string-to-char pv) ?\"))
-			     (timep (string-match-p "^\"[[<].*[]>]\"$" pv))
-			     (po (org-op-to-function (match-string 6 term)
-						     (if timep 'time strp))))
-			(setq pv (if (or regexp strp) (substring pv 1 -1) pv))
-			(when timep (setq pv (org-matcher-time pv)))
-			(cond ((and regexp (eq po 'org<>))
-			       `(not (string-match ,pv (or ,gv ""))))
-			      (regexp `(string-match ,pv (or ,gv "")))
-			      (strp `(,po (or ,gv "") ,pv))
-			      (t
-			       `(,po
-				 (string-to-number (or ,gv ""))
-				 ,(string-to-number pv))))))
-		     (t `(member ,tag tags-list)))))
-	      (push (if minus `(not ,mm) mm) tagsmatcher)
-	      (setq term rest)))
-	  (push `(and ,@tagsmatcher) orlist)
-	  (setq tagsmatcher nil))
-	(setq tagsmatcher `(progn (setq org-cached-props nil) (or ,@orlist)))))
-
-    ;; Make the TODO matcher.
-    (when (org-string-nw-p todomatch)
-      (let ((orlist nil))
-	(dolist (term (org-split-string todomatch "|"))
-	  (while (string-match re term)
-	    (let* ((minus (and (match-end 1)
-			       (equal (match-string 1 term) "-")))
-		   (kwd (match-string 2 term))
-		   (regexp (eq (string-to-char kwd) ?{))
-		   (mm (if regexp `(string-match ,(substring kwd 1 -1) todo)
-			 `(equal todo ,kwd))))
-	      (push (if minus `(not ,mm) mm) todomatcher))
-	    (setq term (substring term (match-end 0))))
-	  (push (if (> (length todomatcher) 1)
-		    (cons 'and todomatcher)
-		  (car todomatcher))
-		orlist)
-	  (setq todomatcher nil))
-	(setq todomatcher (cons 'or orlist))))
-
-    ;; Return the string and function of the matcher.  If no
-    ;; tags-specific or todo-specific matcher exists, match
-    ;; everything.
-    (let ((matcher (if (and tagsmatcher todomatcher)
-		       `(and ,tagsmatcher ,todomatcher)
-		     (or tagsmatcher todomatcher t))))
-      (when org--matcher-tags-todo-only
-	(setq matcher `(and (member todo org-not-done-keywords) ,matcher)))
-      (cons match0 `(lambda (todo tags-list level) ,matcher)))))
-
-(defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
-  "Expand group tags in MATCH.
-
-This replaces every group tag in MATCH with a regexp tag search.
-For example, a group tag \"Work\" defined as { Work : Lab Conf }
-will be replaced like this:
-
-   Work =>  {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
-  +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
-  -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
-
-Replacing by a regexp preserves the structure of the match.
-E.g., this expansion
-
-  Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
-
-will match anything tagged with \"Lab\" and \"Home\", or tagged
-with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
-
-A group tag in MATCH can contain regular expressions of its own.
-For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
-will be replaced like this:
-
-   Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
-
-When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
-assumed to be a single group tag, and the function will return
-the list of tags in this group.
-
-When DOWNCASE is non-nil, expand downcased TAGS."
-  (if org-group-tags
-      (let* ((case-fold-search t)
-	     (stable org-mode-syntax-table)
-	     (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
-	     (taggroups (if downcased
-			    (mapcar (lambda (tg) (mapcar #'downcase tg))
-				    taggroups)
-			  taggroups))
-	     (taggroups-keys (mapcar #'car taggroups))
-	     (return-match (if downcased (downcase match) match))
-	     (count 0)
-	     (work-already-expanded tags-already-expanded)
-	     regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
-	;; @ and _ are allowed as word-components in tags.
-	(modify-syntax-entry ?@ "w" stable)
-	(modify-syntax-entry ?_ "w" stable)
-	;; Temporarily replace regexp-expressions in the match-expression.
-	(while (string-match "{.+?}" return-match)
-	  (cl-incf count)
-	  (push (match-string 0 return-match) regexps-in-match)
-	  (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
-	(while (and taggroups-keys
-		    (with-syntax-table stable
-		      (string-match
-		       (concat "\\(?1:[+-]?\\)\\(?2:\\<"
-			       (regexp-opt taggroups-keys) "\\>\\)")
-		       return-match)))
-	  (let* ((dir (match-string 1 return-match))
-		 (tag (match-string 2 return-match))
-		 (tag (if downcased (downcase tag) tag)))
-	    (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
-		        (member tag tags-already-expanded))
-	      (setq tags-in-group (assoc tag taggroups))
-	      (push tag work-already-expanded)
-	      ;; Recursively expand each tag in the group, if the tag hasn't
-	      ;; already been expanded.  Restore the match-data after all recursive calls.
-	      (save-match-data
-		(let (tags-expanded)
-		  (dolist (x (cdr tags-in-group))
-		    (if (and (member x taggroups-keys)
-			     (not (member x work-already-expanded)))
-			(setq tags-expanded
-			      (delete-dups
-			       (append
-				(org-tags-expand x t downcased
-						 work-already-expanded)
-				tags-expanded)))
-		      (setq tags-expanded
-			    (append (list x) tags-expanded)))
-		    (setq work-already-expanded
-			  (delete-dups
-			   (append tags-expanded
-				   work-already-expanded))))
-		  (setq tags-in-group
-			(delete-dups (cons (car tags-in-group)
-					   tags-expanded)))))
-	      ;; Filter tag-regexps from tags.
-	      (setq regexp-in-group-escaped
-		    (delq nil (mapcar (lambda (x)
-					(if (stringp x)
-					    (and (equal "{" (substring x 0 1))
-						 (equal "}" (substring x -1))
-						 x)
-					  x))
-				      tags-in-group))
-		    regexp-in-group
-		    (mapcar (lambda (x)
-			      (substring x 1 -1))
-			    regexp-in-group-escaped)
-		    tags-in-group
-		    (delq nil (mapcar (lambda (x)
-					(if (stringp x)
-					    (and (not (equal "{" (substring x 0 1)))
-						 (not (equal "}" (substring x -1)))
-						 x)
-					  x))
-				      tags-in-group)))
-	      ;; If single-as-list, do no more in the while-loop.
-	      (if (not single-as-list)
-		  (progn
-		    (when regexp-in-group
-		      (setq regexp-in-group
-			    (concat "\\|"
-				    (mapconcat 'identity regexp-in-group
-					       "\\|"))))
-		    (setq tags-in-group
-			  (concat dir
-				  "{\\<"
-				  (regexp-opt tags-in-group)
-				  "\\>"
-				  regexp-in-group
-				  "}"))
-		    (when (stringp tags-in-group)
-		      (org-add-props tags-in-group '(grouptag t)))
-		    (setq return-match
-			  (replace-match tags-in-group t t return-match)))
-		(setq tags-in-group
-		      (append regexp-in-group-escaped tags-in-group))))
-	    (setq taggroups-keys (delete tag taggroups-keys))))
-	;; Add the regular expressions back into the match-expression again.
-	(while regexps-in-match
-	  (setq return-match (replace-regexp-in-string (format "<%d>" count)
-						       (pop regexps-in-match)
-						       return-match t t))
-	  (cl-decf count))
-	(if single-as-list
-	    (if tags-in-group tags-in-group (list return-match))
-	  return-match))
-    (if single-as-list
-	(list (if downcased (downcase match) match))
-      match)))
-
-(defun org-op-to-function (op &optional stringp)
-  "Turn an operator into the appropriate function."
-  (setq op
-	(cond
-	 ((equal  op   "<"       ) '(<     string<      org-time<))
-	 ((equal  op   ">"       ) '(>     org-string>  org-time>))
-	 ((member op '("<=" "=<")) '(<=    org-string<= org-time<=))
-	 ((member op '(">=" "=>")) '(>=    org-string>= org-time>=))
-	 ((member op '("="  "==")) '(=     string=      org-time=))
-	 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
-  (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
-
-(defun org<> (a b) (not (= a b)))
-(defun org-string<= (a b) (or (string= a b) (string< a b)))
-(defun org-string>= (a b) (not (string< a b)))
-(defun org-string>  (a b) (and (not (string= a b)) (not (string< a b))))
-(defun org-string<> (a b) (not (string= a b)))
-(defun org-time=  (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (=     a b)))
-(defun org-time<  (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<     a b)))
-(defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<=    a b)))
-(defun org-time>  (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>     a b)))
-(defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>=    a b)))
-(defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
-(defun org-2ft (s)
-  "Convert S to a floating point time.
-If S is already a number, just return it.  If it is a string, parse
-it as a time string and apply `float-time' to it.  If S is nil, just return 0."
-  (cond
-   ((numberp s) s)
-   ((stringp s)
-    (condition-case nil
-	(float-time (apply #'encode-time (org-parse-time-string s)))
-      (error 0.)))
-   (t 0.)))
-
-(defun org-time-today ()
-  "Time in seconds today at 0:00.
-Returns the float number of seconds since the beginning of the
-epoch to the beginning of today (00:00)."
-  (float-time (apply 'encode-time
-		     (append '(0 0 0) (nthcdr 3 (decode-time))))))
-
-(defun org-matcher-time (s)
-  "Interpret a time comparison value."
-  (save-match-data
-    (cond
-     ((string= s "<now>") (float-time))
-     ((string= s "<today>") (org-time-today))
-     ((string= s "<tomorrow>")   (+ 86400.0 (org-time-today)))
-     ((string= s "<yesterday>")  (- (org-time-today) 86400.0))
-     ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
-      (+ (org-time-today)
-	 (* (string-to-number (match-string 1 s))
-	    (cdr (assoc (match-string 2 s)
-			'(("d" . 86400.0)   ("w" . 604800.0)
-			  ("m" . 2678400.0) ("y" . 31557600.0)))))))
-     (t (org-2ft s)))))
-
-(defun org-match-any-p (re list)
-  "Does re match any element of list?"
-  (setq list (mapcar (lambda (x) (string-match re x)) list))
-  (delq nil list))
-
-(defvar org-add-colon-after-tag-completion nil)  ;; dynamically scoped param
-(defvar org-tags-overlay (make-overlay 1 1))
-(delete-overlay org-tags-overlay)
-
-(defun org-get-local-tags-at (&optional pos)
-  "Get a list of tags defined in the current headline."
-  (org-get-tags-at pos 'local))
-
-(defun org-get-local-tags ()
-  "Get a list of tags defined in the current headline."
-  (org-get-tags-at nil 'local))
-
-(defun org-get-tags-at (&optional pos local)
-  "Get a list of all headline tags applicable at POS.
-POS defaults to point.  If tags are inherited, the list contains
-the targets in the same sequence as the headlines appear, i.e.
-the tags of the current headline come last.
-When LOCAL is non-nil, only return tags from the current headline,
-ignore inherited ones."
-  (interactive)
-  (if (and org-trust-scanner-tags
-	   (or (not pos) (equal pos (point)))
-	   (not local))
-      org-scanner-tags
-    (let (tags ltags lastpos parent)
-      (save-excursion
-	(save-restriction
-	  (widen)
-	  (goto-char (or pos (point)))
-	  (save-match-data
-	    (catch 'done
-	      (condition-case nil
-		  (progn
-		    (org-back-to-heading t)
-		    (while (not (equal lastpos (point)))
-		      (setq lastpos (point))
-		      (when (looking-at ".+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
-			(setq ltags (org-split-string
-				     (match-string-no-properties 1) ":"))
-			(when parent
-			  (setq ltags (mapcar 'org-add-prop-inherited ltags)))
-			(setq tags (append
-				    (if parent
-					(org-remove-uninherited-tags ltags)
-				      ltags)
-				    tags)))
-		      (or org-use-tag-inheritance (throw 'done t))
-		      (when local (throw 'done t))
-		      (or (org-up-heading-safe) (error nil))
-		      (setq parent t)))
-		(error nil)))))
-	(if local
-	    tags
-	  (reverse (delete-dups
-		    (reverse (append
-			      (org-remove-uninherited-tags
-			       org-file-tags)
-                              tags)))))))))
-
-(defun org-add-prop-inherited (s)
-  (add-text-properties 0 (length s) '(inherited t) s)
-  s)
-
-(defun org-toggle-tag (tag &optional onoff)
-  "Toggle the tag TAG for the current line.
-If ONOFF is `on' or `off', don't toggle but set to this state."
-  (save-excursion
-    (org-back-to-heading t)
-    (let ((current
-	   (when (re-search-forward "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$"
-				    (line-end-position) t)
-	     (let ((tags (match-string 1)))
-	       ;; Clear current tags.
-	       (replace-match "")
-	       ;; Reverse the tags list so any new tag is appended to
-	       ;; the current list of tags.
-	       (nreverse (org-split-string tags ":")))))
-	  res)
-      (pcase onoff
-	(`off (setq current (delete tag current)))
-	((or `on (guard (not (member tag current))))
-	 (setq res t)
-	 (cl-pushnew tag current :test #'equal))
-	(_ (setq current (delete tag current))))
-      (end-of-line)
-      (if current
-	  (progn
-	    (insert " :" (mapconcat #'identity (nreverse current) ":") ":")
-	    (org-set-tags nil t))
-	(delete-horizontal-space))
-      (run-hooks 'org-after-tags-change-hook)
-      res)))
-
-(defun org--align-tags-here (to-col)
-  "Align tags on the current headline to TO-COL.
-Assume point is on a headline."
-  (let ((pos (point)))
-    (beginning-of-line)
-    (if	(or (not (looking-at ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
-	    (>= pos (match-beginning 2)))
-	;; No tags or point within tags: do not align.
-	(goto-char pos)
-      (goto-char (match-beginning 1))
-      (let ((shift (max (- (if (>= to-col 0) to-col
-			     (- (abs to-col) (string-width (match-string 2))))
-			   (current-column))
-			1)))
-	(replace-match (make-string shift ?\s) nil nil nil 1)
-	;; Preserve initial position, if possible.  In any case, stop
-	;; before tags.
-	(when (< pos (point)) (goto-char pos))))))
-
-(defun org-set-tags-command (&optional arg just-align)
-  "Call the set-tags command for the current entry."
-  (interactive "P")
-  (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
-      (org-set-tags arg just-align)
-    (save-excursion
-      (unless (and (org-region-active-p)
-		   org-loop-over-headlines-in-active-region)
-	(org-back-to-heading t))
-      (org-set-tags arg just-align))))
-
-(defun org-set-tags-to (data)
-  "Set the tags of the current entry to DATA, replacing current tags.
-DATA may be a tags string like \":aa:bb:cc:\", or a list of tags.
-If DATA is nil or the empty string, all tags are removed."
-  (interactive "sTags: ")
-  (let ((data
-	 (pcase (if (stringp data) (org-trim data) data)
-	   ((or `nil "") nil)
-	   ((pred listp) (format ":%s:" (mapconcat #'identity data ":")))
-	   ((pred stringp)
-	    (format ":%s:"
-		    (mapconcat #'identity (org-split-string data ":+") ":")))
-	   (_ (error "Invalid tag specification: %S" data)))))
-    (org-with-wide-buffer
-     (org-back-to-heading t)
-     (let ((case-fold-search nil)) (looking-at org-complex-heading-regexp))
-     (when (or (match-end 5) data)
-       (goto-char (or (match-beginning 5) (line-end-position)))
-       (skip-chars-backward " \t")
-       (delete-region (point) (line-end-position))
-       (when data
-	 (insert " " data)
-	 (org-set-tags nil 'align))))))
-
-(defun org-align-all-tags ()
-  "Align the tags in all headings."
-  (interactive)
-  (save-excursion
-    (or (ignore-errors (org-back-to-heading t))
-	(outline-next-heading))
-    (if (org-at-heading-p)
-	(org-set-tags t)
-      (message "No headings"))))
-
-(defvar org-indent-indentation-per-level)
-(defun org-set-tags (&optional arg just-align)
-  "Set the tags for the current headline.
-With prefix ARG, realign all tags in headings in the current buffer.
-When JUST-ALIGN is non-nil, only align tags."
-  (interactive "P")
-  (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
-      (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
-                    'region-start-level
-		  'region))
-            org-loop-over-headlines-in-active-region)
-        (org-map-entries
-         ;; We don't use ARG and JUST-ALIGN here because these args
-         ;; are not useful when looping over headlines.
-         #'org-set-tags
-         org-loop-over-headlines-in-active-region
-         cl
-	 '(when (org-invisible-p) (org-end-of-subtree nil t))))
-    (let ((org-setting-tags t))
-      (if arg
-          (save-excursion
-            (goto-char (point-min))
-            (while (re-search-forward org-outline-regexp-bol nil t)
-	      (org-set-tags nil t)
-	      (end-of-line))
-            (message "All tags realigned to column %d" org-tags-column))
-	(let* ((current (org-get-tags-string))
-	       (tags
-		(if just-align current
-		  ;; Get a new set of tags from the user.
-		  (save-excursion
-		    (let* ((table
-			    (setq
-			     org-last-tags-completion-table
-			     (org--tag-add-to-alist
-			      (and
-			       org-complete-tags-always-offer-all-agenda-tags
-			       (org-global-tags-completion-table
-				(org-agenda-files)))
-			      (or org-current-tag-alist
-				  (org-get-buffer-tags)))))
-			   (current-tags (org-split-string current ":"))
-			   (inherited-tags
-			    (nreverse (nthcdr (length current-tags)
-					      (nreverse (org-get-tags-at))))))
-		      (replace-regexp-in-string
-		       "\\([-+&]+\\|,\\)"
-		       ":"
-		       (if (or (eq t org-use-fast-tag-selection)
-			       (and org-use-fast-tag-selection
-				    (delq nil (mapcar #'cdr table))))
-			   (org-fast-tag-selection
-			    current-tags inherited-tags table
-			    (and org-fast-tag-selection-include-todo
-				 org-todo-key-alist))
-			 (let ((org-add-colon-after-tag-completion
-				(< 1 (length table))))
-			   (org-trim
-			    (completing-read
-			     "Tags: "
-			     #'org-tags-completion-function
-			     nil nil current 'org-tags-history))))))))))
-
-	  (when org-tags-sort-function
-	    (setq tags
-		  (mapconcat
-		   #'identity
-		   (sort (org-split-string tags "[^[:alnum:]_@#%]+")
-			 org-tags-sort-function)
-		   ":")))
-
-	  (if (or (string= ":" tags)
-		  (string= "::" tags))
-	      (setq tags ""))
-	  (if (not (org-string-nw-p tags)) (setq tags "")
-	    (unless (string-suffix-p ":" tags) (setq tags (concat tags ":")))
-	    (unless (string-prefix-p ":" tags) (setq tags (concat ":" tags))))
-
-	  ;; Insert new tags at the correct column.
-	  (unless (equal current tags)
-	    (save-excursion
-	      (beginning-of-line)
-	      (let ((case-fold-search nil))
-		(looking-at org-complex-heading-regexp))
-	      ;; Remove current tags, if any.
-	      (when (match-end 5) (replace-match "" nil nil nil 5))
-	      ;; Insert new tags, if any.  Otherwise, remove trailing
-	      ;; white spaces.
-	      (end-of-line)
-	      (if (not (equal tags ""))
-		  ;; When text is being inserted on an invisible
-		  ;; region boundary, it can be inadvertently sucked
-		  ;; into invisibility.
-		  (outline-flag-region (point) (progn (insert " " tags) (point)) nil)
-		(skip-chars-backward " \t")
-		(delete-region (point) (line-end-position)))))
-	  ;; Align tags, if any.  Fix tags column if `org-indent-mode'
-	  ;; is on.
-	  (unless (equal tags "")
-	    (let* ((level (save-excursion
-			    (beginning-of-line)
-			    (skip-chars-forward "\\*")))
-		   (offset (if (bound-and-true-p org-indent-mode)
-			       (* (1- org-indent-indentation-per-level)
-				  (1- level))
-			     0))
-		   (tags-column
-		    (+ org-tags-column
-		       (if (> org-tags-column 0) (- offset) offset))))
-	      (org--align-tags-here tags-column))))
-        (unless just-align (run-hooks 'org-after-tags-change-hook))))))
-
-(defun org-change-tag-in-region (beg end tag off)
-  "Add or remove TAG for each entry in the region.
-This works in the agenda, and also in an Org buffer."
-  (interactive
-   (list (region-beginning) (region-end)
-	 (let ((org-last-tags-completion-table
-		(if (derived-mode-p 'org-mode)
-		    (org--tag-add-to-alist
-		     (org-get-buffer-tags)
-		     (org-global-tags-completion-table))
-		  (org-global-tags-completion-table))))
-	   (completing-read
-	    "Tag: " 'org-tags-completion-function nil nil nil
-	    'org-tags-history))
-	 (progn
-	   (message "[s]et or [r]emove? ")
-	   (equal (read-char-exclusive) ?r))))
-  (when (fboundp 'deactivate-mark) (deactivate-mark))
-  (let ((agendap (equal major-mode 'org-agenda-mode))
-	l1 l2 m buf pos newhead (cnt 0))
-    (goto-char end)
-    (setq l2 (1- (org-current-line)))
-    (goto-char beg)
-    (setq l1 (org-current-line))
-    (cl-loop for l from l1 to l2 do
-	     (org-goto-line l)
-	     (setq m (get-text-property (point) 'org-hd-marker))
-	     (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
-		       (and agendap m))
-	       (setq buf (if agendap (marker-buffer m) (current-buffer))
-		     pos (if agendap m (point)))
-	       (with-current-buffer buf
-		 (save-excursion
-		   (save-restriction
-		     (goto-char pos)
-		     (setq cnt (1+ cnt))
-		     (org-toggle-tag tag (if off 'off 'on))
-		     (setq newhead (org-get-heading)))))
-	       (and agendap (org-agenda-change-all-lines newhead m))))
-    (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
-
-(defun org-tags-completion-function (string _predicate &optional flag)
-  (let (s1 s2 rtn (ctable org-last-tags-completion-table)
-	   (confirm (lambda (x) (stringp (car x)))))
-    (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
-        (setq s1 (match-string 1 string)
-              s2 (match-string 2 string))
-      (setq s1 "" s2 string))
-    (cond
-     ((eq flag nil)
-      ;; try completion
-      (setq rtn (try-completion s2 ctable confirm))
-      (when (stringp rtn)
-	(setq rtn
-	      (concat s1 s2 (substring rtn (length s2))
-		      (if (and org-add-colon-after-tag-completion
-			       (assoc rtn ctable))
-			  ":" ""))))
-      rtn)
-     ((eq flag t)
-      ;; all-completions
-      (all-completions s2 ctable confirm))
-     ((eq flag 'lambda)
-      ;; exact match?
-      (assoc s2 ctable)))))
-
-(defun org-fast-tag-insert (kwd tags face &optional end)
-  "Insert KDW, and the TAGS, the latter with face FACE.
-Also insert END."
-  (insert (format "%-12s" (concat kwd ":"))
-	  (org-add-props (mapconcat 'identity tags " ") nil 'face face)
-	  (or end "")))
-
-(defun org-fast-tag-show-exit (flag)
-  (save-excursion
-    (org-goto-line 3)
-    (when (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
-      (replace-match ""))
-    (when flag
-      (end-of-line 1)
-      (org-move-to-column (- (window-width) 19) t)
-      (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
-
-(defun org-set-current-tags-overlay (current prefix)
-  "Add an overlay to CURRENT tag with PREFIX."
-  (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
-    (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
-    (org-overlay-display org-tags-overlay (concat prefix s))))
-
-(defvar org-last-tag-selection-key nil)
-(defun org-fast-tag-selection (current inherited table &optional todo-table)
-  "Fast tag selection with single keys.
-CURRENT is the current list of tags in the headline, INHERITED is the
-list of inherited tags, and TABLE is an alist of tags and corresponding keys,
-possibly with grouping information.  TODO-TABLE is a similar table with
-TODO keywords, should these have keys assigned to them.
-If the keys are nil, a-z are automatically assigned.
-Returns the new tags string, or nil to not change the current settings."
-  (let* ((fulltable (append table todo-table))
-	 (maxlen (if (null fulltable) 0
-		   (apply #'max
-			  (mapcar (lambda (x)
-				    (if (stringp (car x)) (string-width (car x))
-				      0))
-				  fulltable))))
-	 (buf (current-buffer))
-	 (expert (eq org-fast-tag-selection-single-key 'expert))
-	 (buffer-tags nil)
-	 (fwidth (+ maxlen 3 1 3))
-	 (ncol (/ (- (window-width) 4) fwidth))
-	 (i-face 'org-done)
-	 (c-face 'org-todo)
-	 tg cnt e c char c1 c2 ntable tbl rtn
-	 ov-start ov-end ov-prefix
-	 (exit-after-next org-fast-tag-selection-single-key)
-	 (done-keywords org-done-keywords)
-	 groups ingroup intaggroup)
-    (save-excursion
-      (beginning-of-line 1)
-      (if (looking-at ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
-	  (setq ov-start (match-beginning 1)
-		ov-end (match-end 1)
-		ov-prefix "")
-	(setq ov-start (1- (point-at-eol))
-	      ov-end (1+ ov-start))
-	(skip-chars-forward "^\n\r")
-	(setq ov-prefix
-	      (concat
-	       (buffer-substring (1- (point)) (point))
-	       (if (> (current-column) org-tags-column)
-		   " "
-		 (make-string (- org-tags-column (current-column)) ?\ ))))))
-    (move-overlay org-tags-overlay ov-start ov-end)
-    (save-window-excursion
-      (if expert
-	  (set-buffer (get-buffer-create " *Org tags*"))
-	(delete-other-windows)
-	(set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
-	(org-switch-to-buffer-other-window " *Org tags*"))
-      (erase-buffer)
-      (setq-local org-done-keywords done-keywords)
-      (org-fast-tag-insert "Inherited" inherited i-face "\n")
-      (org-fast-tag-insert "Current" current c-face "\n\n")
-      (org-fast-tag-show-exit exit-after-next)
-      (org-set-current-tags-overlay current ov-prefix)
-      (setq tbl fulltable char ?a cnt 0)
-      (while (setq e (pop tbl))
-	(cond
-	 ((eq (car e) :startgroup)
-	  (push '() groups) (setq ingroup t)
-	  (unless (zerop cnt)
-	    (setq cnt 0)
-	    (insert "\n"))
-	  (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
-	 ((eq (car e) :endgroup)
-	  (setq ingroup nil cnt 0)
-	  (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
-	 ((eq (car e) :startgrouptag)
-	  (setq intaggroup t)
-	  (unless (zerop cnt)
-	    (setq cnt 0)
-	    (insert "\n"))
-	  (insert "[ "))
-	 ((eq (car e) :endgrouptag)
-	  (setq intaggroup nil cnt 0)
-	  (insert "]\n"))
-	 ((equal e '(:newline))
-	  (unless (zerop cnt)
-	    (setq cnt 0)
-	    (insert "\n")
-	    (setq e (car tbl))
-	    (while (equal (car tbl) '(:newline))
-	      (insert "\n")
-	      (setq tbl (cdr tbl)))))
-	 ((equal e '(:grouptags)) (insert " : "))
-	 (t
-	  (setq tg (copy-sequence (car e)) c2 nil)
-	  (if (cdr e)
-	      (setq c (cdr e))
-	    ;; automatically assign a character.
-	    (setq c1 (string-to-char
-		      (downcase (substring
-				 tg (if (= (string-to-char tg) ?@) 1 0)))))
-	    (if (or (rassoc c1 ntable) (rassoc c1 table))
-		(while (or (rassoc char ntable) (rassoc char table))
-		  (setq char (1+ char)))
-	      (setq c2 c1))
-	    (setq c (or c2 char)))
-	  (when ingroup (push tg (car groups)))
-	  (setq tg (org-add-props tg nil 'face
-	  			  (cond
-	  			   ((not (assoc tg table))
-	  			    (org-get-todo-face tg))
-	  			   ((member tg current) c-face)
-	  			   ((member tg inherited) i-face))))
-	  (when (equal (caar tbl) :grouptags)
-	    (org-add-props tg nil 'face 'org-tag-group))
-	  (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
-	  (insert "[" c "] " tg (make-string
-				 (- fwidth 4 (length tg)) ?\ ))
-	  (push (cons tg c) ntable)
-	  (when (= (cl-incf cnt) ncol)
-	    (insert "\n")
-	    (when (or ingroup intaggroup) (insert " "))
-	    (setq cnt 0)))))
-      (setq ntable (nreverse ntable))
-      (insert "\n")
-      (goto-char (point-min))
-      (unless expert (org-fit-window-to-buffer))
-      (setq rtn
-	    (catch 'exit
-	      (while t
-		(message "[a-z..]:toggle [SPC]:clear [RET]:accept [TAB]:edit [!] %sgroups%s"
-			 (if (not groups) "no " "")
-			 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
-		(setq c (let ((inhibit-quit t)) (read-char-exclusive)))
-		(setq org-last-tag-selection-key c)
-		(cond
-		 ((= c ?\r) (throw 'exit t))
-		 ((= c ?!)
-		  (setq groups (not groups))
-		  (goto-char (point-min))
-		  (while (re-search-forward "[{}]" nil t) (replace-match " ")))
-		 ((= c ?\C-c)
-		  (if (not expert)
-		      (org-fast-tag-show-exit
-		       (setq exit-after-next (not exit-after-next)))
-		    (setq expert nil)
-		    (delete-other-windows)
-		    (set-window-buffer (split-window-vertically) " *Org tags*")
-		    (org-switch-to-buffer-other-window " *Org tags*")
-		    (org-fit-window-to-buffer)))
-		 ((or (= c ?\C-g)
-		      (and (= c ?q) (not (rassoc c ntable))))
-		  (delete-overlay org-tags-overlay)
-		  (setq quit-flag t))
-		 ((= c ?\ )
-		  (setq current nil)
-		  (when exit-after-next (setq exit-after-next 'now)))
-		 ((= c ?\t)
-		  (condition-case nil
-		      (setq tg (completing-read
-				"Tag: "
-				(or buffer-tags
-				    (with-current-buffer buf
-				      (setq buffer-tags
-					    (org-get-buffer-tags))))))
-		    (quit (setq tg "")))
-		  (when (string-match "\\S-" tg)
-		    (cl-pushnew (list tg) buffer-tags :test #'equal)
-		    (if (member tg current)
-			(setq current (delete tg current))
-		      (push tg current)))
-		  (when exit-after-next (setq exit-after-next 'now)))
-		 ((setq e (rassoc c todo-table) tg (car e))
-		  (with-current-buffer buf
-		    (save-excursion (org-todo tg)))
-		  (when exit-after-next (setq exit-after-next 'now)))
-		 ((setq e (rassoc c ntable) tg (car e))
-		  (if (member tg current)
-		      (setq current (delete tg current))
-		    (cl-loop for g in groups do
-			     (when (member tg g)
-			       (dolist (x g) (setq current (delete x current)))))
-		    (push tg current))
-		  (when exit-after-next (setq exit-after-next 'now))))
-
-		;; Create a sorted list
-		(setq current
-		      (sort current
-			    (lambda (a b)
-			      (assoc b (cdr (memq (assoc a ntable) ntable))))))
-		(when (eq exit-after-next 'now) (throw 'exit t))
-		(goto-char (point-min))
-		(beginning-of-line 2)
-		(delete-region (point) (point-at-eol))
-		(org-fast-tag-insert "Current" current c-face)
-		(org-set-current-tags-overlay current ov-prefix)
-		(while (re-search-forward "\\[.\\] \\([[:alnum:]_@#%]+\\)" nil t)
-		  (setq tg (match-string 1))
-		  (add-text-properties
-		   (match-beginning 1) (match-end 1)
-		   (list 'face
-			 (cond
-			  ((member tg current) c-face)
-			  ((member tg inherited) i-face)
-			  (t (get-text-property (match-beginning 1) 'face))))))
-		(goto-char (point-min)))))
-      (delete-overlay org-tags-overlay)
-      (if rtn
-	  (mapconcat 'identity current ":")
-	nil))))
-
-(defun org-get-tags-string ()
-  "Get the TAGS string in the current headline."
-  (unless (org-at-heading-p t)
-    (user-error "Not on a heading"))
-  (save-excursion
-    (beginning-of-line 1)
-    (if (looking-at ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
-	(match-string-no-properties 1)
-      "")))
-
-(defun org-get-tags ()
-  "Get the list of tags specified in the current headline."
-  (org-split-string (org-get-tags-string) ":"))
-
-(defun org-get-buffer-tags ()
-  "Get a table of all tags used in the buffer, for completion."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let ((tag-re (concat org-outline-regexp-bol
-			 "\\(?:.*?[ \t]\\)?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
-	 tags)
-     (while (re-search-forward tag-re nil t)
-       (dolist (tag (org-split-string (match-string-no-properties 1) ":"))
-	 (push tag tags)))
-     (mapcar #'list (append org-file-tags (org-uniquify tags))))))
-
-;;;; The mapping API
-
-(defvar org-agenda-skip-comment-trees)
-(defvar org-agenda-skip-function)
-(defun org-map-entries (func &optional match scope &rest skip)
-  "Call FUNC at each headline selected by MATCH in SCOPE.
-
-FUNC is a function or a lisp form.  The function will be called without
-arguments, with the cursor positioned at the beginning of the headline.
-The return values of all calls to the function will be collected and
-returned as a list.
-
-The call to FUNC will be wrapped into a save-excursion form, so FUNC
-does not need to preserve point.  After evaluation, the cursor will be
-moved to the end of the line (presumably of the headline of the
-processed entry) and search continues from there.  Under some
-circumstances, this may not produce the wanted results.  For example,
-if you have removed (e.g. archived) the current (sub)tree it could
-mean that the next entry will be skipped entirely.  In such cases, you
-can specify the position from where search should continue by making
-FUNC set the variable `org-map-continue-from' to the desired buffer
-position.
-
-MATCH is a tags/property/todo match as it is used in the agenda tags view.
-Only headlines that are matched by this query will be considered during
-the iteration.  When MATCH is nil or t, all headlines will be
-visited by the iteration.
-
-SCOPE determines the scope of this command.  It can be any of:
-
-nil     The current buffer, respecting the restriction if any
-tree    The subtree started with the entry at point
-region  The entries within the active region, if any
-region-start-level
-        The entries within the active region, but only those at
-        the same level than the first one.
-file    The current buffer, without restriction
-file-with-archives
-        The current buffer, and any archives associated with it
-agenda  All agenda files
-agenda-with-archives
-        All agenda files with any archive files associated with them
-\(file1 file2 ...)
-        If this is a list, all files in the list will be scanned
-
-The remaining args are treated as settings for the skipping facilities of
-the scanner.  The following items can be given here:
-
-  archive    skip trees with the archive tag
-  comment    skip trees with the COMMENT keyword
-  function or Emacs Lisp form:
-             will be used as value for `org-agenda-skip-function', so
-             whenever the function returns a position, FUNC will not be
-             called for that entry and search will continue from the
-             position returned
-
-If your function needs to retrieve the tags including inherited tags
-at the *current* entry, you can use the value of the variable
-`org-scanner-tags' which will be much faster than getting the value
-with `org-get-tags-at'.  If your function gets properties with
-`org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
-to t around the call to `org-entry-properties' to get the same speedup.
-Note that if your function moves around to retrieve tags and properties at
-a *different* entry, you cannot use these techniques."
-  (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
-	       (not (org-region-active-p)))
-    (let* ((org-agenda-archives-mode nil) ; just to make sure
-	   (org-agenda-skip-archived-trees (memq 'archive skip))
-	   (org-agenda-skip-comment-trees (memq 'comment skip))
-	   (org-agenda-skip-function
-	    (car (org-delete-all '(comment archive) skip)))
-	   (org-tags-match-list-sublevels t)
-	   (start-level (eq scope 'region-start-level))
-	   matcher res
-	   org-todo-keywords-for-agenda
-	   org-done-keywords-for-agenda
-	   org-todo-keyword-alist-for-agenda
-	   org-tag-alist-for-agenda
-	   org--matcher-tags-todo-only)
-
-      (cond
-       ((eq match t)   (setq matcher t))
-       ((eq match nil) (setq matcher t))
-       (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
-
-      (save-excursion
-	(save-restriction
-	  (cond ((eq scope 'tree)
-		 (org-back-to-heading t)
-		 (org-narrow-to-subtree)
-		 (setq scope nil))
-		((and (or (eq scope 'region) (eq scope 'region-start-level))
-		      (org-region-active-p))
-		 ;; If needed, set start-level to a string like "2"
-		 (when start-level
-		   (save-excursion
-		     (goto-char (region-beginning))
-		     (unless (org-at-heading-p) (outline-next-heading))
-		     (setq start-level (org-current-level))))
-		 (narrow-to-region (region-beginning)
-				   (save-excursion
-				     (goto-char (region-end))
-				     (unless (and (bolp) (org-at-heading-p))
-				       (outline-next-heading))
-				     (point)))
-		 (setq scope nil)))
-
-	  (if (not scope)
-	      (progn
-		(org-agenda-prepare-buffers
-		 (and buffer-file-name (list buffer-file-name)))
-		(setq res
-		      (org-scan-tags
-		       func matcher org--matcher-tags-todo-only start-level)))
-	    ;; Get the right scope
-	    (cond
-	     ((and scope (listp scope) (symbolp (car scope)))
-	      (setq scope (eval scope)))
-	     ((eq scope 'agenda)
-	      (setq scope (org-agenda-files t)))
-	     ((eq scope 'agenda-with-archives)
-	      (setq scope (org-agenda-files t))
-	      (setq scope (org-add-archive-files scope)))
-	     ((eq scope 'file)
-	      (setq scope (and buffer-file-name (list buffer-file-name))))
-	     ((eq scope 'file-with-archives)
-	      (setq scope (org-add-archive-files (list (buffer-file-name))))))
-	    (org-agenda-prepare-buffers scope)
-	    (dolist (file scope)
-	      (with-current-buffer (org-find-base-buffer-visiting file)
-		(org-with-wide-buffer
-		 (goto-char (point-min))
-		 (setq res
-		       (append
-			res
-			(org-scan-tags
-			 func matcher org--matcher-tags-todo-only)))))))))
-      res)))
-
-;;; Properties API
-
-(defconst org-special-properties
-  '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
-    "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
-  "The special properties valid in Org mode.
-These are properties that are not defined in the property drawer,
-but in some other way.")
-
-(defconst org-default-properties
-  '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
-    "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
-    "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
-    "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
-    "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
-    "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
-    "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
-  "Some properties that are used by Org mode for various purposes.
-Being in this list makes sure that they are offered for completion.")
-
-(defun org--valid-property-p (property)
-  "Non nil when string PROPERTY is a valid property name."
-  (not
-   (or (equal property "")
-       (string-match-p "\\s-" property))))
-
-(defun org--update-property-plist (key val props)
-  "Associate KEY to VAL in alist PROPS.
-Modifications are made by side-effect.  Return new alist."
-  (let* ((appending (string= (substring key -1) "+"))
-	 (key (if appending (substring key 0 -1) key))
-	 (old (assoc-string key props t)))
-    (if (not old) (cons (cons key val) props)
-      (setcdr old (if appending (concat (cdr old) " " val) val))
-      props)))
-
-(defun org-get-property-block (&optional beg force)
-  "Return the (beg . end) range of the body of the property drawer.
-BEG is the beginning of the current subtree, or of the part
-before the first headline.  If it is not given, it will be found.
-If the drawer does not exist, create it if FORCE is non-nil, or
-return nil."
-  (org-with-wide-buffer
-   (when beg (goto-char beg))
-   (unless (org-before-first-heading-p)
-     (let ((beg (cond (beg)
-		      ((or (not (featurep 'org-inlinetask))
-			   (org-inlinetask-in-task-p))
-		       (org-back-to-heading t))
-		      (t (org-with-limited-levels (org-back-to-heading t))))))
-       (forward-line)
-       (when (looking-at-p org-planning-line-re) (forward-line))
-       (cond ((looking-at org-property-drawer-re)
-	      (forward-line)
-	      (cons (point) (progn (goto-char (match-end 0))
-				   (line-beginning-position))))
-	     (force
-	      (goto-char beg)
-	      (org-insert-property-drawer)
-	      (let ((pos (save-excursion (search-forward ":END:")
-					 (line-beginning-position))))
-		(cons pos pos))))))))
-
-(defun org-at-property-p ()
-  "Non-nil when point is inside a property drawer.
-See `org-property-re' for match data, if applicable."
-  (save-excursion
-    (beginning-of-line)
-    (and (looking-at org-property-re)
-	 (let ((property-drawer (save-match-data (org-get-property-block))))
-	   (and property-drawer
-		(>= (point) (car property-drawer))
-		(< (point) (cdr property-drawer)))))))
-
-(defun org-property-action ()
-  "Do an action on properties."
-  (interactive)
-  (message "Property Action:  [s]et  [d]elete  [D]elete globally  [c]ompute")
-  (let ((c (read-char-exclusive)))
-    (cl-case c
-      (?s (call-interactively #'org-set-property))
-      (?d (call-interactively #'org-delete-property))
-      (?D (call-interactively #'org-delete-property-globally))
-      (?c (call-interactively #'org-compute-property-at-point))
-      (otherwise (user-error "No such property action %c" c)))))
-
-(defun org-inc-effort ()
-  "Increment the value of the effort property in the current entry."
-  (interactive)
-  (org-set-effort nil t))
-
-(defvar org-clock-effort)       ; Defined in org-clock.el.
-(defvar org-clock-current-task) ; Defined in org-clock.el.
-(defun org-set-effort (&optional value increment)
-  "Set the effort property of the current entry.
-With numerical prefix arg, use the nth allowed value, 0 stands for the
-10th allowed value.
-
-When INCREMENT is non-nil, set the property to the next allowed value."
-  (interactive "P")
-  (when (equal value 0) (setq value 10))
-  (let* ((completion-ignore-case t)
-	 (prop org-effort-property)
-	 (cur (org-entry-get nil prop))
-	 (allowed (org-property-get-allowed-values nil prop 'table))
-	 (existing (mapcar 'list (org-property-values prop)))
-	 (heading (nth 4 (org-heading-components)))
-	 rpl
-	 (val (cond
-	       ((stringp value) value)
-	       ((and allowed (integerp value))
-		(or (car (nth (1- value) allowed))
-		    (car (org-last allowed))))
-	       ((and allowed increment)
-		(or (cl-caadr (member (list cur) allowed))
-		    (user-error "Allowed effort values are not set")))
-	       (allowed
-		(message "Select 1-9,0, [RET%s]: %s"
-			 (if cur (concat "=" cur) "")
-			 (mapconcat 'car allowed " "))
-		(setq rpl (read-char-exclusive))
-		(if (equal rpl ?\r)
-		    cur
-		  (setq rpl (- rpl ?0))
-		  (when (equal rpl 0) (setq rpl 10))
-		  (if (and (> rpl 0) (<= rpl (length allowed)))
-		      (car (nth (1- rpl) allowed))
-		    (org-completing-read "Effort: " allowed nil))))
-	       (t
-		(org-completing-read
-		 (concat "Effort" (and cur (string-match "\\S-" cur)
-				       (concat " [" cur "]"))
-			 ": ")
-		 existing nil nil "" nil cur)))))
-    (unless (equal (org-entry-get nil prop) val)
-      (org-entry-put nil prop val))
-    (org-refresh-property
-     '((effort . identity)
-       (effort-minutes . org-duration-to-minutes))
-     val)
-    (when (equal heading (bound-and-true-p org-clock-current-task))
-      (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
-      (org-clock-update-mode-line))
-    (message "%s is now %s" prop val)))
-
-(defun org-entry-properties (&optional pom which)
-  "Get all properties of the current entry.
-
-When POM is a buffer position, get all properties from the entry
-there instead.
-
-This includes the TODO keyword, the tags, time strings for
-deadline, scheduled, and clocking, and any additional properties
-defined in the entry.
-
-If WHICH is nil or `all', get all properties.  If WHICH is
-`special' or `standard', only get that subclass.  If WHICH is
-a string, only get that property.
-
-Return value is an alist.  Keys are properties, as upcased
-strings."
-  (org-with-point-at pom
-    (when (and (derived-mode-p 'org-mode)
-	       (ignore-errors (org-back-to-heading t)))
-      (catch 'exit
-	(let* ((beg (point))
-	       (specific (and (stringp which) (upcase which)))
-	       (which (cond ((not specific) which)
-			    ((member specific org-special-properties) 'special)
-			    (t 'standard)))
-	       props)
-	  ;; Get the special properties, like TODO and TAGS.
-	  (when (memq which '(nil all special))
-	    (when (or (not specific) (string= specific "CLOCKSUM"))
-	      (let ((clocksum (get-text-property (point) :org-clock-minutes)))
-		(when clocksum
-		  (push (cons "CLOCKSUM" (org-duration-from-minutes clocksum))
-			props)))
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific) (string= specific "CLOCKSUM_T"))
-	      (let ((clocksumt (get-text-property (point)
-						  :org-clock-minutes-today)))
-		(when clocksumt
-		  (push (cons "CLOCKSUM_T"
-			      (org-duration-from-minutes clocksumt))
-			props)))
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific) (string= specific "ITEM"))
-	      (let ((case-fold-search nil))
-		(when (looking-at org-complex-heading-regexp)
-		  (push (cons "ITEM"
-			      (let ((title (match-string-no-properties 4)))
-				(if (org-string-nw-p title)
-				    (org-remove-tabs title)
-				  "")))
-			props)))
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific) (string= specific "TODO"))
-	      (let ((case-fold-search nil))
-		(when (and (looking-at org-todo-line-regexp) (match-end 2))
-		  (push (cons "TODO" (match-string-no-properties 2)) props)))
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific) (string= specific "PRIORITY"))
-	      (push (cons "PRIORITY"
-			  (if (looking-at org-priority-regexp)
-			      (match-string-no-properties 2)
-			    (char-to-string org-default-priority)))
-		    props)
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific) (string= specific "FILE"))
-	      (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
-		    props)
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific) (string= specific "TAGS"))
-	      (let ((value (org-string-nw-p (org-get-tags-string))))
-		(when value (push (cons "TAGS" value) props)))
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific) (string= specific "ALLTAGS"))
-	      (let ((value (org-get-tags-at)))
-		(when value
-		  (push (cons "ALLTAGS"
-			      (format ":%s:" (mapconcat #'identity value ":")))
-			props)))
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific) (string= specific "BLOCKED"))
-	      (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific)
-		      (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
-	      (forward-line)
-	      (when (looking-at-p org-planning-line-re)
-		(end-of-line)
-		(let ((bol (line-beginning-position))
-		      ;; Backward compatibility: time keywords used to
-		      ;; be configurable (before 8.3).  Make sure we
-		      ;; get the correct keyword.
-		      (key-assoc `(("CLOSED" . ,org-closed-string)
-				   ("DEADLINE" . ,org-deadline-string)
-				   ("SCHEDULED" . ,org-scheduled-string))))
-		  (dolist (pair (if specific (list (assoc specific key-assoc))
-				  key-assoc))
-		    (save-excursion
-		      (when (search-backward (cdr pair) bol t)
-			(goto-char (match-end 0))
-			(skip-chars-forward " \t")
-			(and (looking-at org-ts-regexp-both)
-			     (push (cons (car pair)
-					 (match-string-no-properties 0))
-				   props)))))))
-	      (when specific (throw 'exit props)))
-	    (when (or (not specific)
-		      (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
-	      (let ((find-ts
-		     (lambda (end ts)
-		       ;; Fix next time-stamp before END.  TS is the
-		       ;; list of time-stamps found so far.
-		       (let ((ts ts)
-			     (regexp (cond
-				      ((string= specific "TIMESTAMP")
-				       org-ts-regexp)
-				      ((string= specific "TIMESTAMP_IA")
-				       org-ts-regexp-inactive)
-				      ((assoc "TIMESTAMP_IA" ts)
-				       org-ts-regexp)
-				      ((assoc "TIMESTAMP" ts)
-				       org-ts-regexp-inactive)
-				      (t org-ts-regexp-both))))
-			 (catch 'next
-			   (while (re-search-forward regexp end t)
-			     (backward-char)
-			     (let ((object (org-element-context)))
-			       ;; Accept to match timestamps in node
-			       ;; properties, too.
-			       (when (memq (org-element-type object)
-					   '(node-property timestamp))
-				 (let ((type
-					(org-element-property :type object)))
-				   (cond
-				    ((and (memq type '(active active-range))
-					  (not (equal specific "TIMESTAMP_IA")))
-				     (unless (assoc "TIMESTAMP" ts)
-				       (push (cons "TIMESTAMP"
-						   (org-element-property
-						    :raw-value object))
-					     ts)
-				       (when specific (throw 'exit ts))))
-				    ((and (memq type '(inactive inactive-range))
-					  (not (string= specific "TIMESTAMP")))
-				     (unless (assoc "TIMESTAMP_IA" ts)
-				       (push (cons "TIMESTAMP_IA"
-						   (org-element-property
-						    :raw-value object))
-					     ts)
-				       (when specific (throw 'exit ts))))))
-				 ;; Both timestamp types are found,
-				 ;; move to next part.
-				 (when (= (length ts) 2) (throw 'next ts)))))
-			   ts)))))
-		(goto-char beg)
-		;; First look for timestamps within headline.
-		(let ((ts (funcall find-ts (line-end-position) nil)))
-		  (if (= (length ts) 2) (setq props (nconc ts props))
-		    ;; Then find timestamps in the section, skipping
-		    ;; planning line.
-		    (let ((end (save-excursion (outline-next-heading))))
-		      (forward-line)
-		      (when (looking-at-p org-planning-line-re) (forward-line))
-		      (setq props (nconc (funcall find-ts end ts) props))))))))
-	  ;; Get the standard properties, like :PROP:.
-	  (when (memq which '(nil all standard))
-	    ;; If we are looking after a specific property, delegate
-	    ;; to `org-entry-get', which is faster.  However, make an
-	    ;; exception for "CATEGORY", since it can be also set
-	    ;; through keywords (i.e. #+CATEGORY).
-	    (if (and specific (not (equal specific "CATEGORY")))
-		(let ((value (org-entry-get beg specific nil t)))
-		  (throw 'exit (and value (list (cons specific value)))))
-	      (let ((range (org-get-property-block beg)))
-		(when range
-		  (let ((end (cdr range)) seen-base)
-		    (goto-char (car range))
-		    ;; Unlike to `org--update-property-plist', we
-		    ;; handle the case where base values is found
-		    ;; after its extension.  We also forbid standard
-		    ;; properties to be named as special properties.
-		    (while (re-search-forward org-property-re end t)
-		      (let* ((key (upcase (match-string-no-properties 2)))
-			     (extendp (string-match-p "\\+\\'" key))
-			     (key-base (if extendp (substring key 0 -1) key))
-			     (value (match-string-no-properties 3)))
-			(cond
-			 ((member-ignore-case key-base org-special-properties))
-			 (extendp
-			  (setq props
-				(org--update-property-plist key value props)))
-			 ((member key seen-base))
-			 (t (push key seen-base)
-			    (let ((p (assoc-string key props t)))
-			      (if p (setcdr p (concat value " " (cdr p)))
-				(push (cons key value) props))))))))))))
-	  (unless (assoc "CATEGORY" props)
-	    (push (cons "CATEGORY" (org-get-category beg)) props)
-	    (when (string= specific "CATEGORY") (throw 'exit props)))
-	  ;; Return value.
-	  props)))))
-
-(defun org--property-local-values (property literal-nil)
-  "Return value for PROPERTY in current entry.
-Value is a list whose car is the base value for PROPERTY and cdr
-a list of accumulated values.  Return nil if neither is found in
-the entry.  Also return nil when PROPERTY is set to \"nil\",
-unless LITERAL-NIL is non-nil."
-  (let ((range (org-get-property-block)))
-    (when range
-      (goto-char (car range))
-      (let* ((case-fold-search t)
-	     (end (cdr range))
-	     (value
-	      ;; Base value.
-	      (save-excursion
-		(let ((v (and (re-search-forward
-			       (org-re-property property nil t) end t)
-			      (match-string-no-properties 3))))
-		  (list (if literal-nil v (org-not-nil v)))))))
-	;; Find additional values.
-	(let* ((property+ (org-re-property (concat property "+") nil t)))
-	  (while (re-search-forward property+ end t)
-	    (push (match-string-no-properties 3) value)))
-	;; Return final values.
-	(and (not (equal value '(nil))) (nreverse value))))))
-
-(defun org--property-global-value (property literal-nil)
-  "Return value for PROPERTY in current buffer.
-Return value is a string.  Return nil if property is not set
-globally.  Also return nil when PROPERTY is set to \"nil\",
-unless LITERAL-NIL is non-nil."
-  (let ((global
-	 (cdr (or (assoc-string property org-file-properties t)
-		  (assoc-string property org-global-properties t)
-		  (assoc-string property org-global-properties-fixed t)))))
-    (if literal-nil global (org-not-nil global))))
-
-(defun org-entry-get (pom property &optional inherit literal-nil)
-  "Get value of PROPERTY for entry or content at point-or-marker POM.
-
-If INHERIT is non-nil and the entry does not have the property,
-then also check higher levels of the hierarchy.  If INHERIT is
-the symbol `selective', use inheritance only if the setting in
-`org-use-property-inheritance' selects PROPERTY for inheritance.
-
-If the property is present but empty, the return value is the
-empty string.  If the property is not present at all, nil is
-returned.  In any other case, return the value as a string.
-Search is case-insensitive.
-
-If LITERAL-NIL is set, return the string value \"nil\" as
-a string, do not interpret it as the list atom nil.  This is used
-for inheritance when a \"nil\" value can supersede a non-nil
-value higher up the hierarchy."
-  (org-with-point-at pom
-    (cond
-     ((member-ignore-case property (cons "CATEGORY" org-special-properties))
-      ;; We need a special property.  Use `org-entry-properties' to
-      ;; retrieve it, but specify the wanted property.
-      (cdr (assoc-string property (org-entry-properties nil property))))
-     ((and inherit
-	   (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
-      (org-entry-get-with-inheritance property literal-nil))
-     (t
-      (let* ((local (org--property-local-values property literal-nil))
-	     (value (and local (mapconcat #'identity (delq nil local) " "))))
-	(if literal-nil value (org-not-nil value)))))))
-
-(defun org-property-or-variable-value (var &optional inherit)
-  "Check if there is a property fixing the value of VAR.
-If yes, return this value.  If not, return the current value of the variable."
-  (let ((prop (org-entry-get nil (symbol-name var) inherit)))
-    (if (and prop (stringp prop) (string-match "\\S-" prop))
-	(read prop)
-      (symbol-value var))))
-
-(defun org-entry-delete (pom property)
-  "Delete PROPERTY from entry at point-or-marker POM.
-Accumulated properties, i.e. PROPERTY+, are also removed.  Return
-non-nil when a property was removed."
-  (org-with-point-at pom
-    (pcase (org-get-property-block)
-      (`(,begin . ,origin)
-       (let* ((end (copy-marker origin))
-	      (re (org-re-property
-		   (concat (regexp-quote property) "\\+?") t t)))
-	 (goto-char begin)
-	 (while (re-search-forward re end t)
-	   (delete-region (match-beginning 0) (line-beginning-position 2)))
-	 ;; If drawer is empty, remove it altogether.
-	 (when (= begin end)
-	   (delete-region (line-beginning-position 0)
-			  (line-beginning-position 2)))
-	 ;; Return non-nil if some property was removed.
-	 (prog1 (/= end origin) (set-marker end nil))))
-      (_ nil))))
-
-;; Multi-values properties are properties that contain multiple values
-;; These values are assumed to be single words, separated by whitespace.
-(defun org-entry-add-to-multivalued-property (pom property value)
-  "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
-  (let* ((old (org-entry-get pom property))
-	 (values (and old (split-string old))))
-    (setq value (org-entry-protect-space value))
-    (unless (member value values)
-      (setq values (append values (list value)))
-      (org-entry-put pom property (mapconcat #'identity values " ")))))
-
-(defun org-entry-remove-from-multivalued-property (pom property value)
-  "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
-  (let* ((old (org-entry-get pom property))
-	 (values (and old (split-string old))))
-    (setq value (org-entry-protect-space value))
-    (when (member value values)
-      (setq values (delete value values))
-      (org-entry-put pom property (mapconcat #'identity values " ")))))
-
-(defun org-entry-member-in-multivalued-property (pom property value)
-  "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
-  (let* ((old (org-entry-get pom property))
-	 (values (and old (split-string old))))
-    (setq value (org-entry-protect-space value))
-    (member value values)))
-
-(defun org-entry-get-multivalued-property (pom property)
-  "Return a list of values in a multivalued property."
-  (let* ((value (org-entry-get pom property))
-	 (values (and value (split-string value))))
-    (mapcar #'org-entry-restore-space values)))
-
-(defun org-entry-put-multivalued-property (pom property &rest values)
-  "Set multivalued PROPERTY at point-or-marker POM to VALUES.
-VALUES should be a list of strings.  Spaces will be protected."
-  (org-entry-put pom property (mapconcat #'org-entry-protect-space values " "))
-  (let* ((value (org-entry-get pom property))
-	 (values (and value (split-string value))))
-    (mapcar #'org-entry-restore-space values)))
-
-(defun org-entry-protect-space (s)
-  "Protect spaces and newline in string S."
-  (while (string-match " " s)
-    (setq s (replace-match "%20" t t s)))
-  (while (string-match "\n" s)
-    (setq s (replace-match "%0A" t t s)))
-  s)
-
-(defun org-entry-restore-space (s)
-  "Restore spaces and newline in string S."
-  (while (string-match "%20" s)
-    (setq s (replace-match " " t t s)))
-  (while (string-match "%0A" s)
-    (setq s (replace-match "\n" t t s)))
-  s)
-
-(defvar org-entry-property-inherited-from (make-marker)
-  "Marker pointing to the entry from where a property was inherited.
-Each call to `org-entry-get-with-inheritance' will set this marker to the
-location of the entry where the inheritance search matched.  If there was
-no match, the marker will point nowhere.
-Note that also `org-entry-get' calls this function, if the INHERIT flag
-is set.")
-
-(defun org-entry-get-with-inheritance (property &optional literal-nil)
-  "Get PROPERTY of entry or content at point, search higher levels if needed.
-The search will stop at the first ancestor which has the property defined.
-If the value found is \"nil\", return nil to show that the property
-should be considered as undefined (this is the meaning of nil here).
-However, if LITERAL-NIL is set, return the string value \"nil\" instead."
-  (move-marker org-entry-property-inherited-from nil)
-  (org-with-wide-buffer
-   (let (value)
-     (catch 'exit
-       (while t
-	 (let ((v (org--property-local-values property literal-nil)))
-	   (when v
-	     (setq value
-		   (concat (mapconcat #'identity (delq nil v) " ")
-			   (and value " ")
-			   value)))
-	   (cond
-	    ((car v)
-	     (org-back-to-heading t)
-	     (move-marker org-entry-property-inherited-from (point))
-	     (throw 'exit nil))
-	    ((org-up-heading-safe))
-	    (t
-	     (let ((global (org--property-global-value property literal-nil)))
-	       (cond ((not global))
-		     (value (setq value (concat global " " value)))
-		     (t (setq value global))))
-	     (throw 'exit nil))))))
-     (if literal-nil value (org-not-nil value)))))
-
-(defvar org-property-changed-functions nil
-  "Hook called when the value of a property has changed.
-Each hook function should accept two arguments, the name of the property
-and the new value.")
-
-(defun org-entry-put (pom property value)
-  "Set PROPERTY to VALUE for entry at point-or-marker POM.
-
-If the value is nil, it is converted to the empty string.  If it
-is not a string, an error is raised.  Also raise an error on
-invalid property names.
-
-PROPERTY can be any regular property (see
-`org-special-properties').  It can also be \"TODO\",
-\"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
-
-For the last two properties, VALUE may have any of the special
-values \"earlier\" and \"later\".  The function then increases or
-decreases scheduled or deadline date by one day."
-  (cond ((null value) (setq value ""))
-	((not (stringp value)) (error "Properties values should be strings"))
-	((not (org--valid-property-p property))
-	 (user-error "Invalid property name: \"%s\"" property)))
-  (org-with-point-at pom
-    (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
-	(org-back-to-heading t)
-      (org-with-limited-levels (org-back-to-heading t)))
-    (let ((beg (point)))
-      (cond
-       ((equal property "TODO")
-	(cond ((not (org-string-nw-p value)) (setq value 'none))
-	      ((not (member value org-todo-keywords-1))
-	       (user-error "\"%s\" is not a valid TODO state" value)))
-	(org-todo value)
-	(org-set-tags nil 'align))
-       ((equal property "PRIORITY")
-	(org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
-	(org-set-tags nil 'align))
-       ((equal property "SCHEDULED")
-	(forward-line)
-	(if (and (looking-at-p org-planning-line-re)
-		 (re-search-forward
-		  org-scheduled-time-regexp (line-end-position) t))
-	    (cond ((string= value "earlier") (org-timestamp-change -1 'day))
-		  ((string= value "later") (org-timestamp-change 1 'day))
-		  ((string= value "") (org-schedule '(4)))
-		  (t (org-schedule nil value)))
-	  (if (member value '("earlier" "later" ""))
-	      (call-interactively #'org-schedule)
-	    (org-schedule nil value))))
-       ((equal property "DEADLINE")
-	(forward-line)
-	(if (and (looking-at-p org-planning-line-re)
-		 (re-search-forward
-		  org-deadline-time-regexp (line-end-position) t))
-	    (cond ((string= value "earlier") (org-timestamp-change -1 'day))
-		  ((string= value "later") (org-timestamp-change 1 'day))
-		  ((string= value "") (org-deadline '(4)))
-		  (t (org-deadline nil value)))
-	  (if (member value '("earlier" "later" ""))
-	      (call-interactively #'org-deadline)
-	    (org-deadline nil value))))
-       ((member property org-special-properties)
-	(error "The %s property cannot be set with `org-entry-put'" property))
-       (t
-	(let* ((range (org-get-property-block beg 'force))
-	       (end (cdr range))
-	       (case-fold-search t))
-	  (goto-char (car range))
-	  (if (re-search-forward (org-re-property property nil t) end t)
-	      (progn (delete-region (match-beginning 0) (match-end 0))
-		     (goto-char (match-beginning 0)))
-	    (goto-char end)
-	    (insert "\n")
-	    (backward-char))
-	  (insert ":" property ":")
-	  (when value (insert " " value))
-	  (org-indent-line)))))
-    (run-hook-with-args 'org-property-changed-functions property value)))
-
-(defun org-buffer-property-keys
-    (&optional specials defaults columns ignore-malformed)
-  "Get all property keys in the current buffer.
-
-When SPECIALS is non-nil, also list the special properties that
-reflect things like tags and TODO state.
-
-When DEFAULTS is non-nil, also include properties that has
-special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
-DESCRIPTION, LOCATION, and LOGGING and others.
-
-When COLUMNS in non-nil, also include property names given in
-COLUMN formats in the current buffer.
-
-When IGNORE-MALFORMED is non-nil, malformed drawer repair will not be
-automatically performed, such drawers will be silently ignored."
-  (let ((case-fold-search t)
-	(props (append
-		(and specials org-special-properties)
-		(and defaults (cons org-effort-property org-default-properties))
-		nil)))
-    (org-with-wide-buffer
-     (goto-char (point-min))
-     (while (re-search-forward org-property-start-re nil t)
-       (let ((range (org-get-property-block)))
-	 (catch 'skip
-	   (unless range
-	     (when (and (not ignore-malformed)
-			(not (org-before-first-heading-p))
-			(y-or-n-p (format "Malformed drawer at %d, repair?"
-					  (line-beginning-position))))
-	       (org-get-property-block nil t))
-	     (throw 'skip nil))
-	   (goto-char (car range))
-	   (let ((begin (car range))
-		 (end (cdr range)))
-	     ;; Make sure that found property block is not located
-	     ;; before current point, as it would generate an infloop.
-	     ;; It can happen, for example, in the following
-	     ;; situation:
-	     ;;
-	     ;; * Headline
-	     ;;   :PROPERTIES:
-	     ;;   ...
-	     ;;   :END:
-	     ;; *************** Inlinetask
-	     ;; #+BEGIN_EXAMPLE
-	     ;; :PROPERTIES:
-	     ;; #+END_EXAMPLE
-	     ;;
-	     (if (< begin (point)) (throw 'skip nil) (goto-char begin))
-	     (while (< (point) end)
-	       (let ((p (progn (looking-at org-property-re)
-			       (match-string-no-properties 2))))
-		 ;; Only add true property name, not extension symbol.
-		 (push (if (not (string-match-p "\\+\\'" p)) p
-			 (substring p 0 -1))
-		       props))
-	       (forward-line))))
-	 (outline-next-heading)))
-     (when columns
-       (goto-char (point-min))
-       (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
-	 (let ((element (org-element-at-point)))
-	   (when (memq (org-element-type element) '(keyword node-property))
-	     (let ((value (org-element-property :value element))
-		   (start 0))
-	       (while (string-match "%[0-9]*\\([[:alnum:]_-]+\\)\\(([^)]+)\\)?\
-\\(?:{[^}]+}\\)?"
-				    value start)
-		 (setq start (match-end 0))
-		 (let ((p (match-string-no-properties 1 value)))
-		   (unless (member-ignore-case p org-special-properties)
-		     (push p props))))))))))
-    (sort (delete-dups props) (lambda (a b) (string< (upcase a) (upcase b))))))
-
-(defun org-property-values (key)
-  "List all non-nil values of property KEY in current buffer."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let ((case-fold-search t)
-	 (re (org-re-property key))
-	 values)
-     (while (re-search-forward re nil t)
-       (push (org-entry-get (point) key) values))
-     (delete-dups values))))
-
-(defun org-insert-property-drawer ()
-  "Insert a property drawer into the current entry."
-  (org-with-wide-buffer
-   (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
-       (org-back-to-heading t)
-     (org-with-limited-levels (org-back-to-heading t)))
-   (forward-line)
-   (when (looking-at-p org-planning-line-re) (forward-line))
-   (unless (looking-at-p org-property-drawer-re)
-     ;; Make sure we start editing a line from current entry, not from
-     ;; next one.  It prevents extending text properties or overlays
-     ;; belonging to the latter.
-     (when (bolp) (backward-char))
-     (let ((begin (1+ (point)))
-	   (inhibit-read-only t))
-       (insert "\n:PROPERTIES:\n:END:")
-       (when (eobp) (insert "\n"))
-       (org-indent-region begin (point))))))
-
-(defun org-insert-drawer (&optional arg drawer)
-  "Insert a drawer at point.
-
-When optional argument ARG is non-nil, insert a property drawer.
-
-Optional argument DRAWER, when non-nil, is a string representing
-drawer's name.  Otherwise, the user is prompted for a name.
-
-If a region is active, insert the drawer around that region
-instead.
-
-Point is left between drawer's boundaries."
-  (interactive "P")
-  (let* ((drawer (if arg "PROPERTIES"
-		   (or drawer (read-from-minibuffer "Drawer: ")))))
-    (cond
-     ;; With C-u, fall back on `org-insert-property-drawer'
-     (arg (org-insert-property-drawer))
-     ;; Check validity of suggested drawer's name.
-     ((not (string-match-p org-drawer-regexp (format ":%s:" drawer)))
-      (user-error "Invalid drawer name"))
-     ;; With an active region, insert a drawer at point.
-     ((not (org-region-active-p))
-      (progn
-	(unless (bolp) (insert "\n"))
-	(insert (format ":%s:\n\n:END:\n" drawer))
-	(forward-line -2)))
-     ;; Otherwise, insert the drawer at point
-     (t
-      (let ((rbeg (region-beginning))
-	    (rend (copy-marker (region-end))))
-	(unwind-protect
-	    (progn
-	      (goto-char rbeg)
-	      (beginning-of-line)
-	      (when (save-excursion
-		      (re-search-forward org-outline-regexp-bol rend t))
-		(user-error "Drawers cannot contain headlines"))
-	      ;; Position point at the beginning of the first
-	      ;; non-blank line in region.  Insert drawer's opening
-	      ;; there, then indent it.
-	      (org-skip-whitespace)
-	      (beginning-of-line)
-	      (insert ":" drawer ":\n")
-	      (forward-line -1)
-	      (indent-for-tab-command)
-	      ;; Move point to the beginning of the first blank line
-	      ;; after the last non-blank line in region.  Insert
-	      ;; drawer's closing, then indent it.
-	      (goto-char rend)
-	      (skip-chars-backward " \r\t\n")
-	      (insert "\n:END:")
-	      (deactivate-mark t)
-	      (indent-for-tab-command)
-	      (unless (eolp) (insert "\n")))
-	  ;; Clear marker, whatever the outcome of insertion is.
-	  (set-marker rend nil)))))))
-
-(defvar org-property-set-functions-alist nil
-  "Property set function alist.
-Each entry should have the following format:
-
- (PROPERTY . READ-FUNCTION)
-
-The read function will be called with the same argument as
-`org-completing-read'.")
-
-(defun org-set-property-function (property)
-  "Get the function that should be used to set PROPERTY.
-This is computed according to `org-property-set-functions-alist'."
-  (or (cdr (assoc property org-property-set-functions-alist))
-      'org-completing-read))
-
-(defun org-read-property-value (property)
-  "Read PROPERTY value from user."
-  (let* ((completion-ignore-case t)
-	 (allowed (org-property-get-allowed-values nil property 'table))
-	 (cur (org-entry-get nil property))
-	 (prompt (concat property " value"
-			 (if (and cur (string-match "\\S-" cur))
-			     (concat " [" cur "]") "") ": "))
-	 (set-function (org-set-property-function property))
-	 (val (if allowed
-		  (funcall set-function prompt allowed nil
-			   (not (get-text-property 0 'org-unrestricted
-						   (caar allowed))))
-		(funcall set-function prompt
-			 (mapcar 'list (org-property-values property))
-			 nil nil "" nil cur))))
-    (org-trim val)))
-
-(defvar org-last-set-property nil)
-(defvar org-last-set-property-value nil)
-(defun org-read-property-name ()
-  "Read a property name."
-  (let ((completion-ignore-case t)
-	(default-prop (or (and (org-at-property-p)
-			       (match-string-no-properties 2))
-			  org-last-set-property)))
-    (org-completing-read
-     (concat "Property"
-	     (if default-prop (concat " [" default-prop "]") "")
-	     ": ")
-     (mapcar #'list (org-buffer-property-keys nil t t))
-     nil nil nil nil default-prop)))
-
-(defun org-set-property-and-value (use-last)
-  "Allow to set [PROPERTY]: [value] direction from prompt.
-When use-default, don't even ask, just use the last
-\"[PROPERTY]: [value]\" string from the history."
-  (interactive "P")
-  (let* ((completion-ignore-case t)
-	 (pv (or (and use-last org-last-set-property-value)
-		 (org-completing-read
-		  "Enter a \"[Property]: [value]\" pair: "
-		  nil nil nil nil nil
-		  org-last-set-property-value)))
-	 prop val)
-    (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
-      (setq prop (match-string 1 pv)
-	    val (match-string 2 pv))
-      (org-set-property prop val))))
-
-(defun org-set-property (property value)
-  "In the current entry, set PROPERTY to VALUE.
-
-When called interactively, this will prompt for a property name, offering
-completion on existing and default properties.  And then it will prompt
-for a value, offering completion either on allowed values (via an inherited
-xxx_ALL property) or on existing values in other instances of this property
-in the current file.
-
-Throw an error when trying to set a property with an invalid name."
-  (interactive (list nil nil))
-  (let ((property (or property (org-read-property-name))))
-    ;; `org-entry-put' also makes the following check, but this one
-    ;; avoids polluting `org-last-set-property' and
-    ;; `org-last-set-property-value' needlessly.
-    (unless (org--valid-property-p property)
-      (user-error "Invalid property name: \"%s\"" property))
-    (let ((value (or value (org-read-property-value property)))
-	  (fn (cdr (assoc-string property org-properties-postprocess-alist t))))
-      (setq org-last-set-property property)
-      (setq org-last-set-property-value (concat property ": " value))
-      ;; Possibly postprocess the inserted value:
-      (when fn (setq value (funcall fn value)))
-      (unless (equal (org-entry-get nil property) value)
-	(org-entry-put nil property value)))))
-
-(defun org-find-property (property &optional value)
-  "Find first entry in buffer that sets PROPERTY.
-
-When optional argument VALUE is non-nil, only consider an entry
-if it contains PROPERTY set to this value.  If PROPERTY should be
-explicitly set to nil, use string \"nil\" for VALUE.
-
-Return position where the entry begins, or nil if there is no
-such entry.  If narrowing is in effect, only search the visible
-part of the buffer."
-  (save-excursion
-    (goto-char (point-min))
-    (let ((case-fold-search t)
-	  (re (org-re-property property nil (not value) value)))
-      (catch 'exit
-	(while (re-search-forward re nil t)
-	  (when (if value (org-at-property-p)
-		  (org-entry-get (point) property nil t))
-	    (throw 'exit (progn (org-back-to-heading t) (point)))))))))
-
-(defun org-delete-property (property)
-  "In the current entry, delete PROPERTY."
-  (interactive
-   (let* ((completion-ignore-case t)
-	  (cat (org-entry-get (point) "CATEGORY"))
-	  (props0 (org-entry-properties nil 'standard))
-	  (props (if cat props0
-		   (delete `("CATEGORY" . ,(org-get-category)) props0)))
-	  (prop (if (< 1 (length props))
-		    (completing-read "Property: " props nil t)
-		  (caar props))))
-     (list prop)))
-  (if (not property)
-      (message "No property to delete in this entry")
-    (org-entry-delete nil property)
-    (message "Property \"%s\" deleted" property)))
-
-(defun org-delete-property-globally (property)
-  "Remove PROPERTY globally, from all entries.
-This function ignores narrowing, if any."
-  (interactive
-   (let* ((completion-ignore-case t)
-	  (prop (completing-read
-		 "Globally remove property: "
-		 (mapcar #'list (org-buffer-property-keys)))))
-     (list prop)))
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let ((count 0)
-	 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
-     (while (re-search-forward re nil t)
-       (when (org-entry-delete (point) property) (cl-incf count)))
-     (message "Property \"%s\" removed from %d entries" property count))))
-
-(defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
-
-(defun org-compute-property-at-point ()
-  "Compute the property at point.
-This looks for an enclosing column format, extracts the operator and
-then applies it to the property in the column format's scope."
-  (interactive)
-  (unless (org-at-property-p)
-    (user-error "Not at a property"))
-  (let ((prop (match-string-no-properties 2)))
-    (org-columns-get-format-and-top-level)
-    (unless (nth 3 (assoc-string prop org-columns-current-fmt-compiled t))
-      (user-error "No operator defined for property %s" prop))
-    (org-columns-compute prop)))
-
-(defvar org-property-allowed-value-functions nil
-  "Hook for functions supplying allowed values for a specific property.
-The functions must take a single argument, the name of the property, and
-return a flat list of allowed values.  If \":ETC\" is one of
-the values, this means that these values are intended as defaults for
-completion, but that other values should be allowed too.
-The functions must return nil if they are not responsible for this
-property.")
-
-(defun org-property-get-allowed-values (pom property &optional table)
-  "Get allowed values for the property PROPERTY.
-When TABLE is non-nil, return an alist that can directly be used for
-completion."
-  (let (vals)
-    (cond
-     ((equal property "TODO")
-      (setq vals (org-with-point-at pom
-		   (append org-todo-keywords-1 '("")))))
-     ((equal property "PRIORITY")
-      (let ((n org-lowest-priority))
-	(while (>= n org-highest-priority)
-	  (push (char-to-string n) vals)
-	  (setq n (1- n)))))
-     ((equal property "CATEGORY"))
-     ((member property org-special-properties))
-     ((setq vals (run-hook-with-args-until-success
-		  'org-property-allowed-value-functions property)))
-     (t
-      (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
-      (when (and vals (string-match "\\S-" vals))
-	(setq vals (car (read-from-string (concat "(" vals ")"))))
-	(setq vals (mapcar (lambda (x)
-			     (cond ((stringp x) x)
-				   ((numberp x) (number-to-string x))
-				   ((symbolp x) (symbol-name x))
-				   (t "???")))
-			   vals)))))
-    (when (member ":ETC" vals)
-      (setq vals (remove ":ETC" vals))
-      (org-add-props (car vals) '(org-unrestricted t)))
-    (if table (mapcar 'list vals) vals)))
-
-(defun org-property-previous-allowed-value (&optional _previous)
-  "Switch to the next allowed value for this property."
-  (interactive)
-  (org-property-next-allowed-value t))
-
-(defun org-property-next-allowed-value (&optional previous)
-  "Switch to the next allowed value for this property."
-  (interactive)
-  (unless (org-at-property-p)
-    (user-error "Not at a property"))
-  (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
-	 (key (match-string 2))
-	 (value (match-string 3))
-	 (allowed (or (org-property-get-allowed-values (point) key)
-		      (and (member value  '("[ ]" "[-]" "[X]"))
-			   '("[ ]" "[X]"))))
-	 (heading (save-match-data (nth 4 (org-heading-components))))
-	 nval)
-    (unless allowed
-      (user-error "Allowed values for this property have not been defined"))
-    (when previous (setq allowed (reverse allowed)))
-    (when (member value allowed)
-      (setq nval (car (cdr (member value allowed)))))
-    (setq nval (or nval (car allowed)))
-    (when (equal nval value)
-      (user-error "Only one allowed value for this property"))
-    (org-at-property-p)
-    (replace-match (concat " :" key ": " nval) t t)
-    (org-indent-line)
-    (beginning-of-line 1)
-    (skip-chars-forward " \t")
-    (when (equal prop org-effort-property)
-      (org-refresh-property
-       '((effort . identity)
-	 (effort-minutes . org-duration-to-minutes))
-       nval)
-      (when (string= org-clock-current-task heading)
-	(setq org-clock-effort nval)
-	(org-clock-update-mode-line)))
-    (run-hook-with-args 'org-property-changed-functions key nval)))
-
-(defun org-find-olp (path &optional this-buffer)
-  "Return a marker pointing to the entry at outline path OLP.
-If anything goes wrong, throw an error.
-You can wrap this call to catch the error like this:
-
-  (condition-case msg
-      (org-mobile-locate-entry (match-string 4))
-    (error (nth 1 msg)))
-
-The return value will then be either a string with the error message,
-or a marker if everything is OK.
-
-If THIS-BUFFER is set, the outline path does not contain a file,
-only headings."
-  (let* ((file (if this-buffer buffer-file-name (pop path)))
-	 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
-	 (level 1)
-	 (lmin 1)
-	 (lmax 1)
-	 end found flevel)
-    (unless buffer (error "File not found :%s" file))
-    (with-current-buffer buffer
-      (unless (derived-mode-p 'org-mode)
-	(error "Buffer %s needs to be in Org mode" buffer))
-      (org-with-wide-buffer
-       (goto-char (point-min))
-       (dolist (heading path)
-	 (let ((re (format org-complex-heading-regexp-format
-			   (regexp-quote heading)))
-	       (cnt 0))
-	   (while (re-search-forward re end t)
-	     (setq level (- (match-end 1) (match-beginning 1)))
-	     (when (and (>= level lmin) (<= level lmax))
-	       (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
-	   (when (= cnt 0)
-	     (error "Heading not found on level %d: %s" lmax heading))
-	   (when (> cnt 1)
-	     (error "Heading not unique on level %d: %s" lmax heading))
-	   (goto-char found)
-	   (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
-	   (setq end (save-excursion (org-end-of-subtree t t)))))
-       (when (org-at-heading-p)
-	 (point-marker))))))
-
-(defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
-  "Find node HEADING in BUFFER.
-Return a marker to the heading if it was found, or nil if not.
-If POS-ONLY is set, return just the position instead of a marker.
-
-The heading text must match exact, but it may have a TODO keyword,
-a priority cookie and tags in the standard locations."
-  (with-current-buffer (or buffer (current-buffer))
-    (org-with-wide-buffer
-     (goto-char (point-min))
-     (let (case-fold-search)
-       (when (re-search-forward
-	      (format org-complex-heading-regexp-format
-		      (regexp-quote heading)) nil t)
-	 (if pos-only
-	     (match-beginning 0)
-	   (move-marker (make-marker) (match-beginning 0))))))))
-
-(defun org-find-exact-heading-in-directory (heading &optional dir)
-  "Find Org node headline HEADING in all \".org\" files in directory DIR.
-When the target headline is found, return a marker to this location."
-  (let ((files (directory-files (or dir default-directory)
-				t "\\`[^.#].*\\.org\\'"))
-	visiting m buffer)
-    (catch 'found
-      (dolist (file files)
-        (message "trying %s" file)
-        (setq visiting (org-find-base-buffer-visiting file))
-        (setq buffer (or visiting (find-file-noselect file)))
-        (setq m (org-find-exact-headline-in-buffer
-                 heading buffer))
-        (when (and (not m) (not visiting)) (kill-buffer buffer))
-        (and m (throw 'found m))))))
-
-(defun org-find-entry-with-id (ident)
-  "Locate the entry that contains the ID property with exact value IDENT.
-IDENT can be a string, a symbol or a number, this function will search for
-the string representation of it.
-Return the position where this entry starts, or nil if there is no such entry."
-  (interactive "sID: ")
-  (let ((id (cond
-	     ((stringp ident) ident)
-	     ((symbolp ident) (symbol-name ident))
-	     ((numberp ident) (number-to-string ident))
-	     (t (error "IDENT %s must be a string, symbol or number" ident)))))
-    (org-with-wide-buffer (org-find-property "ID" id))))
-
-;;;; Timestamps
-
-(defvar org-last-changed-timestamp nil)
-(defvar org-last-inserted-timestamp nil
-  "The last time stamp inserted with `org-insert-time-stamp'.")
-
-(defun org-time-stamp (arg &optional inactive)
-  "Prompt for a date/time and insert a time stamp.
-
-If the user specifies a time like HH:MM or if this command is
-called with at least one prefix argument, the time stamp contains
-the date and the time.  Otherwise, only the date is included.
-
-All parts of a date not specified by the user are filled in from
-the timestamp at point, if any, or the current date/time
-otherwise.
-
-If there is already a timestamp at the cursor, it is replaced.
-
-With two universal prefix arguments, insert an active timestamp
-with the current time without prompting the user.
-
-When called from lisp, the timestamp is inactive if INACTIVE is
-non-nil."
-  (interactive "P")
-  (let* ((ts (cond
-	      ((org-at-date-range-p t)
-	       (match-string (if (< (point) (- (match-beginning 2) 2)) 1 2)))
-	      ((org-at-timestamp-p 'lax) (match-string 0))))
-	 ;; Default time is either the timestamp at point or today.
-	 ;; When entering a range, only the range start is considered.
-         (default-time (if (not ts) (current-time)
-			 (apply #'encode-time (org-parse-time-string ts))))
-         (default-input (and ts (org-get-compact-tod ts)))
-         (repeater (and ts
-			(string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
-			(match-string 0 ts)))
-	 org-time-was-given
-	 org-end-time-was-given
-	 (time
-	  (and (if (equal arg '(16)) (current-time)
-		 ;; Preserve `this-command' and `last-command'.
-		 (let ((this-command this-command)
-		       (last-command last-command))
-		   (org-read-date
-		    arg 'totime nil nil default-time default-input
-		    inactive))))))
-    (cond
-     ((and ts
-           (memq last-command '(org-time-stamp org-time-stamp-inactive))
-           (memq this-command '(org-time-stamp org-time-stamp-inactive)))
-      (insert "--")
-      (org-insert-time-stamp time (or org-time-was-given arg) inactive))
-     (ts
-      ;; Make sure we're on a timestamp.  When in the middle of a date
-      ;; range, move arbitrarily to range end.
-      (unless (org-at-timestamp-p 'lax)
-	(skip-chars-forward "-")
-	(org-at-timestamp-p 'lax))
-      (replace-match "")
-      (setq org-last-changed-timestamp
-	    (org-insert-time-stamp
-	     time (or org-time-was-given arg)
-	     inactive nil nil (list org-end-time-was-given)))
-      (when repeater
-	(backward-char)
-	(insert " " repeater)
-	(setq org-last-changed-timestamp
-	      (concat (substring org-last-inserted-timestamp 0 -1)
-		      " " repeater ">")))
-      (message "Timestamp updated"))
-     ((equal arg '(16)) (org-insert-time-stamp time t inactive))
-     (t (org-insert-time-stamp
-	 time (or org-time-was-given arg) inactive nil nil
-	 (list org-end-time-was-given))))))
-
-;; FIXME: can we use this for something else, like computing time differences?
-(defun org-get-compact-tod (s)
-  (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
-    (let* ((t1 (match-string 1 s))
-	   (h1 (string-to-number (match-string 2 s)))
-	   (m1 (string-to-number (match-string 3 s)))
-	   (t2 (and (match-end 4) (match-string 5 s)))
-	   (h2 (and t2 (string-to-number (match-string 6 s))))
-	   (m2 (and t2 (string-to-number (match-string 7 s))))
-	   dh dm)
-      (if (not t2)
-	  t1
-	(setq dh (- h2 h1) dm (- m2 m1))
-	(when (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
-	(concat t1 "+" (number-to-string dh)
-		(and (/= 0 dm) (format ":%02d" dm)))))))
-
-(defun org-time-stamp-inactive (&optional arg)
-  "Insert an inactive time stamp.
-
-An inactive time stamp is enclosed in square brackets instead of angle
-brackets.  It is inactive in the sense that it does not trigger agenda entries,
-does not link to the calendar and cannot be changed with the S-cursor keys.
-So these are more for recording a certain time/date.
-
-If the user specifies a time like HH:MM or if this command is called with
-at least one prefix argument, the time stamp contains the date and the time.
-Otherwise, only the date is included.
-
-When called with two universal prefix arguments, insert an active time stamp
-with the current time without prompting the user."
-  (interactive "P")
-  (org-time-stamp arg 'inactive))
-
-(defvar org-date-ovl (make-overlay 1 1))
-(overlay-put org-date-ovl 'face 'org-date-selected)
-(delete-overlay org-date-ovl)
-
-(defvar org-ans1) ; dynamically scoped parameter
-(defvar org-ans2) ; dynamically scoped parameter
-
-(defvar org-plain-time-of-day-regexp) ; defined below
-
-(defvar org-overriding-default-time nil) ; dynamically scoped
-(defvar org-read-date-overlay nil)
-(defvar org-dcst nil) ; dynamically scoped
-(defvar org-read-date-history nil)
-(defvar org-read-date-final-answer nil)
-(defvar org-read-date-analyze-futurep nil)
-(defvar org-read-date-analyze-forced-year nil)
-(defvar org-read-date-inactive)
-
-(defvar org-read-date-minibuffer-local-map
-  (let* ((map (make-sparse-keymap)))
-    (set-keymap-parent map minibuffer-local-map)
-    (org-defkey map (kbd ".")
-                (lambda () (interactive)
-		  ;; Are we at the beginning of the prompt?
-		  (if (looking-back "^[^:]+: "
-				    (let ((inhibit-field-text-motion t))
-				      (line-beginning-position)))
-		      (org-eval-in-calendar '(calendar-goto-today))
-		    (insert "."))))
-    (org-defkey map (kbd "C-.")
-                (lambda () (interactive)
-		  (org-eval-in-calendar '(calendar-goto-today))))
-    (org-defkey map [(meta shift left)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-backward-month 1))))
-    (org-defkey map [(meta shift right)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-forward-month 1))))
-    (org-defkey map [(meta shift up)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-backward-year 1))))
-    (org-defkey map [(meta shift down)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-forward-year 1))))
-    (org-defkey map [?\e (shift left)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-backward-month 1))))
-    (org-defkey map [?\e (shift right)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-forward-month 1))))
-    (org-defkey map [?\e (shift up)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-backward-year 1))))
-    (org-defkey map [?\e (shift down)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-forward-year 1))))
-    (org-defkey map [(shift up)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-backward-week 1))))
-    (org-defkey map [(shift down)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-forward-week 1))))
-    (org-defkey map [(shift left)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-backward-day 1))))
-    (org-defkey map [(shift right)]
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-forward-day 1))))
-    (org-defkey map "!"
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(diary-view-entries))
-                  (message "")))
-    (org-defkey map ">"
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-scroll-left 1))))
-    (org-defkey map "<"
-                (lambda () (interactive)
-                  (org-eval-in-calendar '(calendar-scroll-right 1))))
-    (org-defkey map "\C-v"
-                (lambda () (interactive)
-                  (org-eval-in-calendar
-                   '(calendar-scroll-left-three-months 1))))
-    (org-defkey map "\M-v"
-                (lambda () (interactive)
-                  (org-eval-in-calendar
-                   '(calendar-scroll-right-three-months 1))))
-    map)
-  "Keymap for minibuffer commands when using `org-read-date'.")
-
-(defvar org-def)
-(defvar org-defdecode)
-(defvar org-with-time)
-
-(defvar calendar-setup)			; Dynamically scoped.
-(defun org-read-date (&optional with-time to-time from-string prompt
-				default-time default-input inactive)
-  "Read a date, possibly a time, and make things smooth for the user.
-The prompt will suggest to enter an ISO date, but you can also enter anything
-which will at least partially be understood by `parse-time-string'.
-Unrecognized parts of the date will default to the current day, month, year,
-hour and minute.  If this command is called to replace a timestamp at point,
-or to enter the second timestamp of a range, the default time is taken
-from the existing stamp.  Furthermore, the command prefers the future,
-so if you are giving a date where the year is not given, and the day-month
-combination is already past in the current year, it will assume you
-mean next year.  For details, see the manual.  A few examples:
-
-  3-2-5         --> 2003-02-05
-  feb 15        --> currentyear-02-15
-  2/15          --> currentyear-02-15
-  sep 12 9      --> 2009-09-12
-  12:45         --> today 12:45
-  22 sept 0:34  --> currentyear-09-22 0:34
-  12            --> currentyear-currentmonth-12
-  Fri           --> nearest Friday after today
-  -Tue          --> last Tuesday
-  etc.
-
-Furthermore you can specify a relative date by giving, as the *first* thing
-in the input:  a plus/minus sign, a number and a letter [hdwmy] to indicate
-change in days weeks, months, years.
-With a single plus or minus, the date is relative to today.  With a double
-plus or minus, it is relative to the date in DEFAULT-TIME.  E.g.
-  +4d           --> four days from today
-  +4            --> same as above
-  +2w           --> two weeks from today
-  ++5           --> five days from default date
-
-The function understands only English month and weekday abbreviations.
-
-While prompting, a calendar is popped up - you can also select the
-date with the mouse (button 1).  The calendar shows a period of three
-months.  To scroll it to other months, use the keys `>' and `<'.
-If you don't like the calendar, turn it off with
-       (setq org-read-date-popup-calendar nil)
-
-With optional argument TO-TIME, the date will immediately be converted
-to an internal time.
-With an optional argument WITH-TIME, the prompt will suggest to
-also insert a time.  Note that when WITH-TIME is not set, you can
-still enter a time, and this function will inform the calling routine
-about this change.  The calling routine may then choose to change the
-format used to insert the time stamp into the buffer to include the time.
-With optional argument FROM-STRING, read from this string instead from
-the user.  PROMPT can overwrite the default prompt.  DEFAULT-TIME is
-the time/date that is used for everything that is not specified by the
-user."
-  (require 'parse-time)
-  (let* ((org-with-time with-time)
-	 (org-time-stamp-rounding-minutes
-	  (if (equal org-with-time '(16))
-	      '(0 0)
-	    org-time-stamp-rounding-minutes))
-	 (org-dcst org-display-custom-times)
-	 (ct (org-current-time))
-	 (org-def (or org-overriding-default-time default-time ct))
-	 (org-defdecode (decode-time org-def))
-         (cur-frame (selected-frame))
-	 (mouse-autoselect-window nil)	; Don't let the mouse jump
-	 (calendar-setup
-	  (and (eq calendar-setup 'calendar-only) 'calendar-only))
-	 (calendar-move-hook nil)
-	 (calendar-view-diary-initially-flag nil)
-	 (calendar-view-holidays-initially-flag nil)
-	 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
-    ;; Rationalize `org-def' and `org-defdecode', if required.
-    (when (< (nth 2 org-defdecode) org-extend-today-until)
-      (setf (nth 2 org-defdecode) -1)
-      (setf (nth 1 org-defdecode) 59)
-      (setq org-def (apply #'encode-time org-defdecode))
-      (setq org-defdecode (decode-time org-def)))
-    (let* ((timestr (format-time-string
-		     (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d")
-		     org-def))
-	   (prompt (concat (if prompt (concat prompt " ") "")
-			   (format "Date+time [%s]: " timestr))))
-      (cond
-       (from-string (setq ans from-string))
-       (org-read-date-popup-calendar
-	(save-excursion
-	  (save-window-excursion
-	    (calendar)
-	    (when (eq calendar-setup 'calendar-only)
-	      (setq cal-frame
-		    (window-frame (get-buffer-window "*Calendar*" 'visible)))
-	      (select-frame cal-frame))
-	    (org-eval-in-calendar '(setq cursor-type nil) t)
-	    (unwind-protect
-		(progn
-		  (calendar-forward-day (- (time-to-days org-def)
-					   (calendar-absolute-from-gregorian
-					    (calendar-current-date))))
-		  (org-eval-in-calendar nil t)
-		  (let* ((old-map (current-local-map))
-			 (map (copy-keymap calendar-mode-map))
-			 (minibuffer-local-map
-			  (copy-keymap org-read-date-minibuffer-local-map)))
-		    (org-defkey map (kbd "RET") 'org-calendar-select)
-		    (org-defkey map [mouse-1] 'org-calendar-select-mouse)
-		    (org-defkey map [mouse-2] 'org-calendar-select-mouse)
-		    (unwind-protect
-			(progn
-			  (use-local-map map)
-			  (setq org-read-date-inactive inactive)
-			  (add-hook 'post-command-hook 'org-read-date-display)
-			  (setq org-ans0
-				(read-string prompt
-					     default-input
-					     'org-read-date-history
-					     nil))
-			  ;; org-ans0: from prompt
-			  ;; org-ans1: from mouse click
-			  ;; org-ans2: from calendar motion
-			  (setq ans
-				(concat org-ans0 " " (or org-ans1 org-ans2))))
-		      (remove-hook 'post-command-hook 'org-read-date-display)
-		      (use-local-map old-map)
-		      (when org-read-date-overlay
-			(delete-overlay org-read-date-overlay)
-			(setq org-read-date-overlay nil)))))
-	      (bury-buffer "*Calendar*")
-	      (when cal-frame
-		(delete-frame cal-frame)
-		(select-frame-set-input-focus cur-frame))))))
-
-       (t				; Naked prompt only
-	(unwind-protect
-	    (setq ans (read-string prompt default-input
-				   'org-read-date-history timestr))
-	  (when org-read-date-overlay
-	    (delete-overlay org-read-date-overlay)
-	    (setq org-read-date-overlay nil))))))
-
-    (setq final (org-read-date-analyze ans org-def org-defdecode))
-
-    (when org-read-date-analyze-forced-year
-      (message "Year was forced into %s"
-	       (if org-read-date-force-compatible-dates
-		   "compatible range (1970-2037)"
-		 "range representable on this machine"))
-      (ding))
-
-    ;; One round trip to get rid of 34th of August and stuff like that....
-    (setq final (decode-time (apply 'encode-time final)))
-
-    (setq org-read-date-final-answer ans)
-
-    (if to-time
-	(apply 'encode-time final)
-      (if (and (boundp 'org-time-was-given) org-time-was-given)
-	  (format "%04d-%02d-%02d %02d:%02d"
-		  (nth 5 final) (nth 4 final) (nth 3 final)
-		  (nth 2 final) (nth 1 final))
-	(format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
-
-(defun org-read-date-display ()
-  "Display the current date prompt interpretation in the minibuffer."
-  (when org-read-date-display-live
-    (when org-read-date-overlay
-      (delete-overlay org-read-date-overlay))
-    (when (minibufferp (current-buffer))
-      (save-excursion
-	(end-of-line 1)
-	(while (not (equal (buffer-substring
-			    (max (point-min) (- (point) 4)) (point))
-			   "    "))
-	  (insert " ")))
-      (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
-			  " " (or org-ans1 org-ans2)))
-	     (org-end-time-was-given nil)
-	     (f (org-read-date-analyze ans org-def org-defdecode))
-	     (fmts (if org-dcst
-		       org-time-stamp-custom-formats
-		     org-time-stamp-formats))
-	     (fmt (if (or org-with-time
-			  (and (boundp 'org-time-was-given) org-time-was-given))
-		      (cdr fmts)
-		    (car fmts)))
-	     (txt (format-time-string fmt (apply 'encode-time f)))
-	     (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
-	     (txt (concat "=> " txt)))
-	(when (and org-end-time-was-given
-		   (string-match org-plain-time-of-day-regexp txt))
-	  (setq txt (concat (substring txt 0 (match-end 0)) "-"
-			    org-end-time-was-given
-			    (substring txt (match-end 0)))))
-	(when org-read-date-analyze-futurep
-	  (setq txt (concat txt " (=>F)")))
-	(setq org-read-date-overlay
-	      (make-overlay (1- (point-at-eol)) (point-at-eol)))
-	(org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
-
-(defun org-read-date-analyze (ans def defdecode)
-  "Analyze the combined answer of the date prompt."
-  ;; FIXME: cleanup and comment
-  ;; Pass `current-time' result to `decode-time' (instead of calling
-  ;; without arguments) so that only `current-time' has to be
-  ;; overridden in tests.
-  (let ((org-def def)
-	(org-defdecode defdecode)
-	(nowdecode (decode-time (current-time)))
-	delta deltan deltaw deltadef year month day
-	hour minute second wday pm h2 m2 tl wday1
-	iso-year iso-weekday iso-week iso-date futurep kill-year)
-    (setq org-read-date-analyze-futurep nil
-	  org-read-date-analyze-forced-year nil)
-    (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
-      (setq ans "+0"))
-
-    (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
-      (setq ans (replace-match "" t t ans)
-	    deltan (car delta)
-	    deltaw (nth 1 delta)
-	    deltadef (nth 2 delta)))
-
-    ;; Check if there is an iso week date in there.  If yes, store the
-    ;; info and postpone interpreting it until the rest of the parsing
-    ;; is done.
-    (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
-      (setq iso-year (when (match-end 1)
-		       (org-small-year-to-year
-			(string-to-number (match-string 1 ans))))
-	    iso-weekday (when (match-end 3)
-			  (string-to-number (match-string 3 ans)))
-	    iso-week (string-to-number (match-string 2 ans)))
-      (setq ans (replace-match "" t t ans)))
-
-    ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
-    (when (string-match
-	   "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
-      (setq year (if (match-end 2)
-		     (string-to-number (match-string 2 ans))
-		   (progn (setq kill-year t)
-			  (string-to-number (format-time-string "%Y"))))
-	    month (string-to-number (match-string 3 ans))
-	    day (string-to-number (match-string 4 ans)))
-      (setq year (org-small-year-to-year year))
-      (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
-			       t nil ans)))
-
-    ;; Help matching dotted european dates
-    (when (string-match
-	   "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
-      (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
-		   (setq kill-year t)
-		   (string-to-number (format-time-string "%Y")))
-	    day (string-to-number (match-string 1 ans))
-	    month (string-to-number (match-string 2 ans))
-	    ans (replace-match (format "%04d-%02d-%02d" year month day)
-			       t nil ans)))
-
-    ;; Help matching american dates, like 5/30 or 5/30/7
-    (when (string-match
-	   "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
-      (setq year (if (match-end 4)
-		     (string-to-number (match-string 4 ans))
-		   (progn (setq kill-year t)
-			  (string-to-number (format-time-string "%Y"))))
-	    month (string-to-number (match-string 1 ans))
-	    day (string-to-number (match-string 2 ans)))
-      (setq year (org-small-year-to-year year))
-      (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
-			       t nil ans)))
-    ;; Help matching am/pm times, because `parse-time-string' does not do that.
-    ;; If there is a time with am/pm, and *no* time without it, we convert
-    ;; so that matching will be successful.
-    (cl-loop for i from 1 to 2 do	; twice, for end time as well
-	     (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
-			(string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
-	       (setq hour (string-to-number (match-string 1 ans))
-		     minute (if (match-end 3)
-				(string-to-number (match-string 3 ans))
-			      0)
-		     pm (equal ?p
-			       (string-to-char (downcase (match-string 4 ans)))))
-	       (if (and (= hour 12) (not pm))
-		   (setq hour 0)
-		 (when (and pm (< hour 12)) (setq hour (+ 12 hour))))
-	       (setq ans (replace-match (format "%02d:%02d" hour minute)
-					t t ans))))
-
-    ;; Check if a time range is given as a duration
-    (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
-      (setq hour (string-to-number (match-string 1 ans))
-	    h2 (+ hour (string-to-number (match-string 3 ans)))
-	    minute (string-to-number (match-string 2 ans))
-	    m2 (+ minute (if (match-end 5) (string-to-number
-					    (match-string 5 ans))0)))
-      (when (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
-      (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
-			       t t ans)))
-
-    ;; Check if there is a time range
-    (when (boundp 'org-end-time-was-given)
-      (setq org-time-was-given nil)
-      (when (and (string-match org-plain-time-of-day-regexp ans)
-		 (match-end 8))
-	(setq org-end-time-was-given (match-string 8 ans))
-	(setq ans (concat (substring ans 0 (match-beginning 7))
-			  (substring ans (match-end 7))))))
-
-    (setq tl (parse-time-string ans)
-	  day (or (nth 3 tl) (nth 3 org-defdecode))
-	  month
-	  (cond ((nth 4 tl))
-		((not org-read-date-prefer-future) (nth 4 org-defdecode))
-		;; Day was specified.  Make sure DAY+MONTH
-		;; combination happens in the future.
-		((nth 3 tl)
-		 (setq futurep t)
-		 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
-		   (nth 4 nowdecode)))
-		(t (nth 4 org-defdecode)))
-	  year
-	  (cond ((and (not kill-year) (nth 5 tl)))
-		((not org-read-date-prefer-future) (nth 5 org-defdecode))
-		;; Month was guessed in the future and is at least
-		;; equal to NOWDECODE's.  Fix year accordingly.
-		(futurep
-		 (if (or (> month (nth 4 nowdecode))
-			 (>= day (nth 3 nowdecode)))
-		     (nth 5 nowdecode)
-		   (1+ (nth 5 nowdecode))))
-		;; Month was specified.  Make sure MONTH+YEAR
-		;; combination happens in the future.
-		((nth 4 tl)
-		 (setq futurep t)
-		 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
-		       ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
-		       ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
-		       (t (nth 5 nowdecode))))
-		(t (nth 5 org-defdecode)))
-	  hour (or (nth 2 tl) (nth 2 org-defdecode))
-	  minute (or (nth 1 tl) (nth 1 org-defdecode))
-	  second (or (nth 0 tl) 0)
-	  wday (nth 6 tl))
-
-    (when (and (eq org-read-date-prefer-future 'time)
-	       (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
-	       (equal day (nth 3 nowdecode))
-	       (equal month (nth 4 nowdecode))
-	       (equal year (nth 5 nowdecode))
-	       (nth 2 tl)
-	       (or (< (nth 2 tl) (nth 2 nowdecode))
-		   (and (= (nth 2 tl) (nth 2 nowdecode))
-			(nth 1 tl)
-			(< (nth 1 tl) (nth 1 nowdecode)))))
-      (setq day (1+ day)
-	    futurep t))
-
-    ;; Special date definitions below
-    (cond
-     (iso-week
-      ;; There was an iso week
-      (require 'cal-iso)
-      (setq futurep nil)
-      (setq year (or iso-year year)
-	    day (or iso-weekday wday 1)
-	    wday nil ; to make sure that the trigger below does not match
-	    iso-date (calendar-gregorian-from-absolute
-		      (calendar-iso-to-absolute
-		       (list iso-week day year))))
-					; FIXME:  Should we also push ISO weeks into the future?
-					;      (when (and org-read-date-prefer-future
-					;		 (not iso-year)
-					;		 (< (calendar-absolute-from-gregorian iso-date)
-					;		    (time-to-days (current-time))))
-					;	(setq year (1+ year)
-					;	      iso-date (calendar-gregorian-from-absolute
-					;			(calendar-iso-to-absolute
-					;			 (list iso-week day year)))))
-      (setq month (car iso-date)
-	    year (nth 2 iso-date)
-	    day (nth 1 iso-date)))
-     (deltan
-      (setq futurep nil)
-      (unless deltadef
-	;; Pass `current-time' result to `decode-time' (instead of
-	;; calling without arguments) so that only `current-time' has
-	;; to be overridden in tests.
-	(let ((now (decode-time (current-time))))
-	  (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
-      (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
-	    ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
-	    ((equal deltaw "m") (setq month (+ month deltan)))
-	    ((equal deltaw "y") (setq year (+ year deltan)))))
-     ((and wday (not (nth 3 tl)))
-      ;; Weekday was given, but no day, so pick that day in the week
-      ;; on or after the derived date.
-      (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
-      (unless (equal wday wday1)
-	(setq day (+ day (% (- wday wday1 -7) 7))))))
-    (when (and (boundp 'org-time-was-given)
-	       (nth 2 tl))
-      (setq org-time-was-given t))
-    (when (< year 100) (setq year (+ 2000 year)))
-    ;; Check of the date is representable
-    (if org-read-date-force-compatible-dates
-	(progn
-	  (when (< year 1970)
-	    (setq year 1970 org-read-date-analyze-forced-year t))
-	  (when (> year 2037)
-	    (setq year 2037 org-read-date-analyze-forced-year t)))
-      (condition-case nil
-	  (ignore (encode-time second minute hour day month year))
-	(error
-	 (setq year (nth 5 org-defdecode))
-	 (setq org-read-date-analyze-forced-year t))))
-    (setq org-read-date-analyze-futurep futurep)
-    (list second minute hour day month year)))
-
-(defvar parse-time-weekdays)
-(defun org-read-date-get-relative (s today default)
-  "Check string S for special relative date string.
-TODAY and DEFAULT are internal times, for today and for a default.
-Return shift list (N what def-flag)
-WHAT       is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
-N          is the number of WHATs to shift.
-DEF-FLAG   is t when a double ++ or -- indicates shift relative to
-           the DEFAULT date rather than TODAY."
-  (require 'parse-time)
-  (when (and
-	 (string-match
-	  (concat
-	   "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
-	   "\\([0-9]+\\)?"
-	   "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
-	   "\\([ \t]\\|$\\)") s)
-	 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
-    (let* ((dir (if (> (match-end 1) (match-beginning 1))
-		    (string-to-char (substring (match-string 1 s) -1))
-		  ?+))
-	   (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
-	   (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
-	   (what (if (match-end 3) (match-string 3 s) "d"))
-	   (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
-	   (date (if rel default today))
-	   (wday (nth 6 (decode-time date)))
-	   delta)
-      (if wday1
-	  (progn
-	    (setq delta (mod (+ 7 (- wday1 wday)) 7))
-	    (when (= delta 0) (setq delta 7))
-	    (when (= dir ?-)
-	      (setq delta (- delta 7))
-	      (when (= delta 0) (setq delta -7)))
-	    (when (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
-	    (list delta "d" rel))
-	(list (* n (if (= dir ?-) -1 1)) what rel)))))
-
-(defun org-order-calendar-date-args (arg1 arg2 arg3)
-  "Turn a user-specified date into the internal representation.
-The internal representation needed by the calendar is (month day year).
-This is a wrapper to handle the brain-dead convention in calendar that
-user function argument order change dependent on argument order."
-  (pcase calendar-date-style
-    (`american (list arg1 arg2 arg3))
-    (`european (list arg2 arg1 arg3))
-    (`iso (list arg2 arg3 arg1))))
-
-(defun org-eval-in-calendar (form &optional keepdate)
-  "Eval FORM in the calendar window and return to current window.
-Unless KEEPDATE is non-nil, update `org-ans2' to the cursor date."
-  (let ((sf (selected-frame))
-	(sw (selected-window)))
-    (select-window (get-buffer-window "*Calendar*" t))
-    (eval form)
-    (when (and (not keepdate) (calendar-cursor-to-date))
-      (let* ((date (calendar-cursor-to-date))
-	     (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
-	(setq org-ans2 (format-time-string "%Y-%m-%d" time))))
-    (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
-    (select-window sw)
-    (select-frame-set-input-focus sf)))
-
-(defun org-calendar-select ()
-  "Return to `org-read-date' with the date currently selected.
-This is used by `org-read-date' in a temporary keymap for the calendar buffer."
-  (interactive)
-  (when (calendar-cursor-to-date)
-    (let* ((date (calendar-cursor-to-date))
-	   (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
-      (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
-    (when (active-minibuffer-window) (exit-minibuffer))))
-
-(defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
-  "Insert a date stamp for the date given by the internal TIME.
-See `format-time-string' for the format of TIME.
-WITH-HM means use the stamp format that includes the time of the day.
-INACTIVE means use square brackets instead of angular ones, so that the
-stamp will not contribute to the agenda.
-PRE and POST are optional strings to be inserted before and after the
-stamp.
-The command returns the inserted time stamp."
-  (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
-	stamp)
-    (when inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
-    (insert-before-markers (or pre ""))
-    (when (listp extra)
-      (setq extra (car extra))
-      (if (and (stringp extra)
-	       (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
-	  (setq extra (format "-%02d:%02d"
-			      (string-to-number (match-string 1 extra))
-			      (string-to-number (match-string 2 extra))))
-	(setq extra nil)))
-    (when extra
-      (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
-    (insert-before-markers (setq stamp (format-time-string fmt time)))
-    (insert-before-markers (or post ""))
-    (setq org-last-inserted-timestamp stamp)))
-
-(defun org-toggle-time-stamp-overlays ()
-  "Toggle the use of custom time stamp formats."
-  (interactive)
-  (setq org-display-custom-times (not org-display-custom-times))
-  (unless org-display-custom-times
-    (let ((p (point-min)) (bmp (buffer-modified-p)))
-      (while (setq p (next-single-property-change p 'display))
-	(when (and (get-text-property p 'display)
-		   (eq (get-text-property p 'face) 'org-date))
-	  (remove-text-properties
-	   p (setq p (next-single-property-change p 'display))
-	   '(display t))))
-      (set-buffer-modified-p bmp)))
-  (org-restart-font-lock)
-  (setq org-table-may-need-update t)
-  (if org-display-custom-times
-      (message "Time stamps are overlaid with custom format")
-    (message "Time stamp overlays removed")))
-
-(defun org-display-custom-time (beg end)
-  "Overlay modified time stamp format over timestamp between BEG and END."
-  (let* ((ts (buffer-substring beg end))
-	 t1 with-hm tf time str (off 0))
-    (save-match-data
-      (setq t1 (org-parse-time-string ts t))
-      (when (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
-	(setq off (- (match-end 0) (match-beginning 0)))))
-    (setq end (- end off))
-    (setq with-hm (and (nth 1 t1) (nth 2 t1))
-	  tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
-	  time (org-fix-decoded-time t1)
-	  str (org-add-props
-		  (format-time-string
-		   (substring tf 1 -1) (apply 'encode-time time))
-		  nil 'mouse-face 'highlight))
-    (put-text-property beg end 'display str)))
-
-(defun org-fix-decoded-time (time)
-  "Set 0 instead of nil for the first 6 elements of time.
-Don't touch the rest."
-  (let ((n 0))
-    (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
-
-(defun org-time-stamp-to-now (timestamp-string &optional seconds)
-  "Difference between TIMESTAMP-STRING and now in days.
-If SECONDS is non-nil, return the difference in seconds."
-  (let ((fdiff (if seconds #'float-time #'time-to-days)))
-    (- (funcall fdiff (org-time-string-to-time timestamp-string))
-       (funcall fdiff (current-time)))))
-
-(defun org-deadline-close-p (timestamp-string &optional ndays)
-  "Is the time in TIMESTAMP-STRING close to the current date?"
-  (setq ndays (or ndays (org-get-wdays timestamp-string)))
-  (and (<= (org-time-stamp-to-now timestamp-string) ndays)
-       (not (org-entry-is-done-p))))
-
-(defun org-get-wdays (ts &optional delay zero-delay)
-  "Get the deadline lead time appropriate for timestring TS.
-When DELAY is non-nil, get the delay time for scheduled items
-instead of the deadline lead time.  When ZERO-DELAY is non-nil
-and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
-don't try to find the delay cookie in the scheduled timestamp."
-  (let ((tv (if delay org-scheduled-delay-days
-	      org-deadline-warning-days)))
-    (cond
-     ((or (and delay (< tv 0))
-	  (and delay zero-delay (<= tv 0))
-	  (and (not delay) (<= tv 0)))
-      ;; Enforce this value no matter what
-      (- tv))
-     ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
-      ;; lead time is specified.
-      (floor (* (string-to-number (match-string 1 ts))
-		(cdr (assoc (match-string 2 ts)
-			    '(("d" . 1)    ("w" . 7)
-			      ("m" . 30.4) ("y" . 365.25)
-			      ("h" . 0.041667)))))))
-     ;; go for the default.
-     (t tv))))
-
-(defun org-calendar-select-mouse (ev)
-  "Return to `org-read-date' with the date currently selected.
-This is used by `org-read-date' in a temporary keymap for the calendar buffer."
-  (interactive "e")
-  (mouse-set-point ev)
-  (when (calendar-cursor-to-date)
-    (let* ((date (calendar-cursor-to-date))
-	   (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
-      (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
-    (when (active-minibuffer-window) (exit-minibuffer))))
-
-(defun org-check-deadlines (ndays)
-  "Check if there are any deadlines due or past due.
-A deadline is considered due if it happens within `org-deadline-warning-days'
-days from today's date.  If the deadline appears in an entry marked DONE,
-it is not shown.  A numeric prefix argument NDAYS can be used to test that
-many days.  If the prefix is a raw `\\[universal-argument]', all deadlines \
-are shown."
-  (interactive "P")
-  (let* ((org-warn-days
-	  (cond
-	   ((equal ndays '(4)) 100000)
-	   (ndays (prefix-numeric-value ndays))
-	   (t (abs org-deadline-warning-days))))
-	 (case-fold-search nil)
-	 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
-	 (callback
-	  (lambda () (org-deadline-close-p (match-string 1) org-warn-days))))
-    (message "%d deadlines past-due or due within %d days"
-	     (org-occur regexp nil callback)
-	     org-warn-days)))
-
-(defsubst org-re-timestamp (type)
-  "Return a regexp for timestamp TYPE.
-Allowed values for TYPE are:
-
-        all: all timestamps
-     active: only active timestamps (<...>)
-   inactive: only inactive timestamps ([...])
-  scheduled: only scheduled timestamps
-   deadline: only deadline timestamps
-     closed: only closed time-stamps
-
-When TYPE is nil, fall back on returning a regexp that matches
-both scheduled and deadline timestamps."
-  (cl-case type
-    (all org-ts-regexp-both)
-    (active org-ts-regexp)
-    (inactive org-ts-regexp-inactive)
-    (scheduled org-scheduled-time-regexp)
-    (deadline org-deadline-time-regexp)
-    (closed org-closed-time-regexp)
-    (otherwise
-     (concat "\\<"
-	     (regexp-opt (list org-deadline-string org-scheduled-string))
-	     " *<\\([^>]+\\)>"))))
-
-(defun org-check-before-date (d)
-  "Check if there are deadlines or scheduled entries before date D."
-  (interactive (list (org-read-date)))
-  (let* ((case-fold-search nil)
-	 (regexp (org-re-timestamp org-ts-type))
-	 (ts-type org-ts-type)
-	 (callback
-	  (lambda ()
-	    (let ((match (match-string 1)))
-	      (and (if (memq ts-type '(active inactive all))
-		       (eq (org-element-type (save-excursion
-					       (backward-char)
-					       (org-element-context)))
-			   'timestamp)
-		     (org-at-planning-p))
-		   (time-less-p
-		    (org-time-string-to-time match)
-		    (org-time-string-to-time d)))))))
-    (message "%d entries before %s"
-	     (org-occur regexp nil callback)
-	     d)))
-
-(defun org-check-after-date (d)
-  "Check if there are deadlines or scheduled entries after date D."
-  (interactive (list (org-read-date)))
-  (let* ((case-fold-search nil)
-	 (regexp (org-re-timestamp org-ts-type))
-	 (ts-type org-ts-type)
-	 (callback
-	  (lambda ()
-	    (let ((match (match-string 1)))
-	      (and (if (memq ts-type '(active inactive all))
-		       (eq (org-element-type (save-excursion
-					       (backward-char)
-					       (org-element-context)))
-			   'timestamp)
-		     (org-at-planning-p))
-		   (not (time-less-p
-			 (org-time-string-to-time match)
-			 (org-time-string-to-time d))))))))
-    (message "%d entries after %s"
-	     (org-occur regexp nil callback)
-	     d)))
-
-(defun org-check-dates-range (start-date end-date)
-  "Check for deadlines/scheduled entries between START-DATE and END-DATE."
-  (interactive (list (org-read-date nil nil nil "Range starts")
-		     (org-read-date nil nil nil "Range end")))
-  (let ((case-fold-search nil)
-	(regexp (org-re-timestamp org-ts-type))
-	(callback
-	 (let ((type org-ts-type))
-	   (lambda ()
-	     (let ((match (match-string 1)))
-	       (and
-		(if (memq type '(active inactive all))
-		    (eq (org-element-type (save-excursion
-					    (backward-char)
-					    (org-element-context)))
-			'timestamp)
-		  (org-at-planning-p))
-		(not (time-less-p
-		      (org-time-string-to-time match)
-		      (org-time-string-to-time start-date)))
-		(time-less-p
-		 (org-time-string-to-time match)
-		 (org-time-string-to-time end-date))))))))
-    (message "%d entries between %s and %s"
-	     (org-occur regexp nil callback) start-date end-date)))
-
-(defun org-evaluate-time-range (&optional to-buffer)
-  "Evaluate a time range by computing the difference between start and end.
-Normally the result is just printed in the echo area, but with prefix arg
-TO-BUFFER, the result is inserted just after the date stamp into the buffer.
-If the time range is actually in a table, the result is inserted into the
-next column.
-For time difference computation, a year is assumed to be exactly 365
-days in order to avoid rounding problems."
-  (interactive "P")
-  (or
-   (org-clock-update-time-maybe)
-   (save-excursion
-     (unless (org-at-date-range-p t)
-       (goto-char (point-at-bol))
-       (re-search-forward org-tr-regexp-both (point-at-eol) t))
-     (unless (org-at-date-range-p t)
-       (user-error "Not at a time-stamp range, and none found in current line")))
-   (let* ((ts1 (match-string 1))
-	  (ts2 (match-string 2))
-	  (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
-	  (match-end (match-end 0))
-	  (time1 (org-time-string-to-time ts1))
-	  (time2 (org-time-string-to-time ts2))
-	  (t1 (float-time time1))
-	  (t2 (float-time time2))
-	  (diff (abs (- t2 t1)))
-	  (negative (< (- t2 t1) 0))
-	  ;; (ys (floor (* 365 24 60 60)))
-	  (ds (* 24 60 60))
-	  (hs (* 60 60))
-	  (fy "%dy %dd %02d:%02d")
-	  (fy1 "%dy %dd")
-	  (fd "%dd %02d:%02d")
-	  (fd1 "%dd")
-	  (fh "%02d:%02d")
-	  y d h m align)
-     (if havetime
-	 (setq ; y (floor (/ diff ys))  diff (mod diff ys)
-	  y 0
-	  d (floor (/ diff ds))  diff (mod diff ds)
-	  h (floor (/ diff hs))  diff (mod diff hs)
-	  m (floor (/ diff 60)))
-       (setq ; y (floor (/ diff ys))  diff (mod diff ys)
-	y 0
-	d (floor (+ (/ diff ds) 0.5))
-	h 0 m 0))
-     (if (not to-buffer)
-	 (message "%s" (org-make-tdiff-string y d h m))
-       (if (org-at-table-p)
-	   (progn
-	     (goto-char match-end)
-	     (setq align t)
-	     (and (looking-at " *|") (goto-char (match-end 0))))
-	 (goto-char match-end))
-       (when (looking-at
-	      "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
-	 (replace-match ""))
-       (when negative (insert " -"))
-       (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
-	 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
-	   (insert " " (format fh h m))))
-       (when align (org-table-align))
-       (message "Time difference inserted")))))
-
-(defun org-make-tdiff-string (y d h m)
-  (let ((fmt "")
-	(l nil))
-    (when (> y 0)
-      (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " "))
-      (push y l))
-    (when (> d 0)
-      (setq fmt (concat fmt "%d day"  (if (> d 1) "s" "") " "))
-      (push d l))
-    (when (> h 0)
-      (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " "))
-      (push h l))
-    (when (> m 0)
-      (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " "))
-      (push m l))
-    (apply 'format fmt (nreverse l))))
-
-(defun org-time-string-to-time (s)
-  "Convert timestamp string S into internal time."
-  (apply #'encode-time (org-parse-time-string s)))
-
-(defun org-time-string-to-seconds (s)
-  "Convert a timestamp string S into a number of seconds."
-  (float-time (org-time-string-to-time s)))
-
-(org-define-error 'org-diary-sexp-no-match "Unable to match diary sexp")
-
-(defun org-time-string-to-absolute (s &optional daynr prefer buffer pos)
-  "Convert time stamp S to an absolute day number.
-
-If DAYNR in non-nil, and there is a specifier for a cyclic time
-stamp, get the closest date to DAYNR.  If PREFER is
-`past' (respectively `future') return a date past (respectively
-after) or equal to DAYNR.
-
-POS is the location of time stamp S, as a buffer position in
-BUFFER.
-
-Diary sexp timestamps are matched against DAYNR, when non-nil.
-If matching fails or DAYNR is nil, `org-diary-sexp-no-match' is
-signaled."
-  (cond
-   ((string-match "\\`%%\\((.*)\\)" s)
-    ;; Sexp timestamp: try to match DAYNR, if available, since we're
-    ;; only able to match individual dates.  If it fails, raise an
-    ;; error.
-    (if (and daynr
-	     (org-diary-sexp-entry
-	      (match-string 1 s) "" (calendar-gregorian-from-absolute daynr)))
-	daynr
-      (signal 'org-diary-sexp-no-match (list s))))
-   (daynr (org-closest-date s daynr prefer))
-   (t (time-to-days
-       (condition-case errdata
-	   (apply #'encode-time (org-parse-time-string s))
-	 (error (error "Bad timestamp `%s'%s\nError was: %s"
-		       s
-		       (if (not (and buffer pos)) ""
-			 (format-message " at %d in buffer `%s'" pos buffer))
-		       (cdr errdata))))))))
-
-(defun org-days-to-iso-week (days)
-  "Return the iso week number."
-  (require 'cal-iso)
-  (car (calendar-iso-from-absolute days)))
-
-(defun org-small-year-to-year (year)
-  "Convert 2-digit years into 4-digit years.
-YEAR is expanded into one of the 30 next years, if possible, or
-into a past one.  Any year larger than 99 is returned unchanged."
-  (if (>= year 100) year
-    (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
-	   (century (/ current 100))
-	   (offset (- year (% current 100))))
-      (cond ((> offset 30) (+ (* (1- century) 100) year))
-	    ((> offset -70) (+ (* century 100) year))
-	    (t (+ (* (1+ century) 100) year))))))
-
-(defun org-time-from-absolute (d)
-  "Return the time corresponding to date D.
-D may be an absolute day number, or a calendar-type list (month day year)."
-  (when (numberp d) (setq d (calendar-gregorian-from-absolute d)))
-  (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
-
-(defvar org-agenda-current-date)
-(defun org-calendar-holiday ()
-  "List of holidays, for Diary display in Org mode."
-  (require 'holidays)
-  (let ((hl (calendar-check-holidays org-agenda-current-date)))
-    (and hl (mapconcat #'identity hl "; "))))
-
-(defun org-diary-sexp-entry (sexp entry d)
-  "Process a SEXP diary ENTRY for date D."
-  (require 'diary-lib)
-  ;; `org-anniversary' and alike expect ENTRY and DATE to be bound
-  ;; dynamically.
-  (let* ((sexp `(let ((entry ,entry)
-		      (date ',d))
-		  ,(car (read-from-string sexp))))
-	 (result (if calendar-debug-sexp (eval sexp)
-		   (condition-case nil
-		       (eval sexp)
-		     (error
-		      (beep)
-		      (message "Bad sexp at line %d in %s: %s"
-			       (org-current-line)
-			       (buffer-file-name) sexp)
-		      (sleep-for 2))))))
-    (cond ((stringp result) (split-string result "; "))
-	  ((and (consp result)
-		(not (consp (cdr result)))
-		(stringp (cdr result))) (cdr result))
-	  ((and (consp result)
-		(stringp (car result))) result)
-	  (result entry))))
-
-(defun org-diary-to-ical-string (frombuf)
-  "Get iCalendar entries from diary entries in buffer FROMBUF.
-This uses the icalendar.el library."
-  (let* ((tmpdir temporary-file-directory)
-	 (tmpfile (make-temp-name
-		   (expand-file-name "orgics" tmpdir)))
-	 buf rtn b e)
-    (with-current-buffer frombuf
-      (icalendar-export-region (point-min) (point-max) tmpfile)
-      (setq buf (find-buffer-visiting tmpfile))
-      (set-buffer buf)
-      (goto-char (point-min))
-      (when (re-search-forward "^BEGIN:VEVENT" nil t)
-	(setq b (match-beginning 0)))
-      (goto-char (point-max))
-      (when (re-search-backward "^END:VEVENT" nil t)
-	(setq e (match-end 0)))
-      (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
-    (kill-buffer buf)
-    (delete-file tmpfile)
-    rtn))
-
-(defun org-closest-date (start current prefer)
-  "Return closest date to CURRENT starting from START.
-
-CURRENT and START are both time stamps.
-
-When PREFER is `past', return a date that is either CURRENT or
-past.  When PREFER is `future', return a date that is either
-CURRENT or future.
-
-Only time stamps with a repeater are modified.  Any other time
-stamp stay unchanged.  In any case, return value is an absolute
-day number."
-  (if (not (string-match "\\+\\([0-9]+\\)\\([hdwmy]\\)" start))
-      ;; No repeater.  Do not shift time stamp.
-      (time-to-days (apply #'encode-time (org-parse-time-string start)))
-    (let ((value (string-to-number (match-string 1 start)))
-	  (type (match-string 2 start)))
-      (if (= 0 value)
-	  ;; Repeater with a 0-value is considered as void.
-	  (time-to-days (apply #'encode-time (org-parse-time-string start)))
-	(let* ((base (org-date-to-gregorian start))
-	       (target (org-date-to-gregorian current))
-	       (sday (calendar-absolute-from-gregorian base))
-	       (cday (calendar-absolute-from-gregorian target))
-	       n1 n2)
-	  ;; If START is already past CURRENT, just return START.
-	  (if (<= cday sday) sday
-	    ;; Compute closest date before (N1) and closest date past
-	    ;; (N2) CURRENT.
-	    (pcase type
-	      ("h"
-	       (let ((missing-hours
-		      (mod (+ (- (* 24 (- cday sday))
-				 (nth 2 (org-parse-time-string start)))
-			      org-extend-today-until)
-			   value)))
-		 (setf n1 (if (= missing-hours 0) cday
-			    (- cday (1+ (/ missing-hours 24)))))
-		 (setf n2 (+ cday (/ (- value missing-hours) 24)))))
-	      ((or "d" "w")
-	       (let ((value (if (equal type "w") (* 7 value) value)))
-		 (setf n1 (+ sday (* value (/ (- cday sday) value))))
-		 (setf n2 (+ n1 value))))
-	      ("m"
-	       (let* ((add-months
-		       (lambda (d n)
-			 ;; Add N months to gregorian date D, i.e.,
-			 ;; a list (MONTH DAY YEAR).  Return a valid
-			 ;; gregorian date.
-			 (let ((m (+ (nth 0 d) n)))
-			   (list (mod m 12)
-				 (nth 1 d)
-				 (+ (/ m 12) (nth 2 d))))))
-		      (months		; Complete months to TARGET.
-		       (* (/ (+ (* 12 (- (nth 2 target) (nth 2 base)))
-				(- (nth 0 target) (nth 0 base))
-				;; If START's day is greater than
-				;; TARGET's, remove incomplete month.
-				(if (> (nth 1 target) (nth 1 base)) 0 -1))
-			     value)
-			  value))
-		      (before (funcall add-months base months)))
-		 (setf n1 (calendar-absolute-from-gregorian before))
-		 (setf n2
-		       (calendar-absolute-from-gregorian
-			(funcall add-months before value)))))
-	      (_
-	       (let* ((d (nth 1 base))
-		      (m (nth 0 base))
-		      (y (nth 2 base))
-		      (years		; Complete years to TARGET.
-		       (* (/ (- (nth 2 target)
-				y
-				;; If START's month and day are
-				;; greater than TARGET's, remove
-				;; incomplete year.
-				(if (or (> (nth 0 target) m)
-					(and (= (nth 0 target) m)
-					     (> (nth 1 target) d)))
-				    0
-				  1))
-			     value)
-			  value))
-		      (before (list m d (+ y years))))
-		 (setf n1 (calendar-absolute-from-gregorian before))
-		 (setf n2 (calendar-absolute-from-gregorian
-			   (list m d (+ (nth 2 before) value)))))))
-	    ;; Handle PREFER parameter, if any.
-	    (cond
-	     ((eq prefer 'past)   (if (= cday n2) n2 n1))
-	     ((eq prefer 'future) (if (= cday n1) n1 n2))
-	     (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))))))))
-
-(defun org-date-to-gregorian (d)
-  "Turn any specification of date D into a Gregorian date for the calendar."
-  (cond ((integerp d) (calendar-gregorian-from-absolute d))
-	((and (listp d) (= (length d) 3)) d)
-	((stringp d)
-	 (let ((d (org-parse-time-string d)))
-	   (list (nth 4 d) (nth 3 d) (nth 5 d))))
-	((listp d) (list (nth 4 d) (nth 3 d) (nth 5 d)))))
-
-(defun org-parse-time-string (s &optional nodefault)
-  "Parse the standard Org time string.
-
-This should be a lot faster than the normal `parse-time-string'.
-
-If time is not given, defaults to 0:00.  However, with optional
-NODEFAULT, hour and minute fields will be nil if not given."
-  (cond ((string-match org-ts-regexp0 s)
-	 (list 0
-	       (when (or (match-beginning 8) (not nodefault))
-		 (string-to-number (or (match-string 8 s) "0")))
-	       (when (or (match-beginning 7) (not nodefault))
-		 (string-to-number (or (match-string 7 s) "0")))
-	       (string-to-number (match-string 4 s))
-	       (string-to-number (match-string 3 s))
-	       (string-to-number (match-string 2 s))
-	       nil nil nil))
-	((string-match "^<[^>]+>$" s)
-	 ;; FIXME: `decode-time' needs to be called with ZONE as its
-	 ;; second argument.  However, this requires at least Emacs
-	 ;; 25.1.  We can do it when we switch to this version as our
-	 ;; minimal requirement.
-	 (decode-time (seconds-to-time (org-matcher-time s))))
-	(t (error "Not a standard Org time string: %s" s))))
-
-(defun org-timestamp-up (&optional arg)
-  "Increase the date item at the cursor by one.
-If the cursor is on the year, change the year.  If it is on the month,
-the day or the time, change that.  If the cursor is on the enclosing
-bracket, change the timestamp type.
-With prefix ARG, change by that many units."
-  (interactive "p")
-  (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
-
-(defun org-timestamp-down (&optional arg)
-  "Decrease the date item at the cursor by one.
-If the cursor is on the year, change the year.  If it is on the month,
-the day or the time, change that.  If the cursor is on the enclosing
-bracket, change the timestamp type.
-With prefix ARG, change by that many units."
-  (interactive "p")
-  (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
-
-(defun org-timestamp-up-day (&optional arg)
-  "Increase the date in the time stamp by one day.
-With prefix ARG, change that many days."
-  (interactive "p")
-  (if (and (not (org-at-timestamp-p 'lax))
-	   (org-at-heading-p))
-      (org-todo 'up)
-    (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
-
-(defun org-timestamp-down-day (&optional arg)
-  "Decrease the date in the time stamp by one day.
-With prefix ARG, change that many days."
-  (interactive "p")
-  (if (and (not (org-at-timestamp-p 'lax))
-	   (org-at-heading-p))
-      (org-todo 'down)
-    (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
-
-(defun org-at-timestamp-p (&optional extended)
-  "Non-nil if point is inside a timestamp.
-
-By default, the function only consider syntactically valid active
-timestamps.  However, the caller may have a broader definition
-for timestamps.  As a consequence, optional argument EXTENDED can
-be set to the following values
-
-  `inactive'
-
-    Include also syntactically valid inactive timestamps.
-
-  `agenda'
-
-    Include timestamps allowed in Agenda, i.e., those in
-    properties drawers, planning lines and clock lines.
-
-  `lax'
-
-    Ignore context.  The function matches any part of the
-    document looking like a timestamp.  This includes comments,
-    example blocks...
-
-For backward-compatibility with Org 9.0, every other non-nil
-value is equivalent to `inactive'.
-
-When at a timestamp, return the position of the point as a symbol
-among `bracket', `after', `year', `month', `hour', `minute',
-`day' or a number of character from the last know part of the
-time stamp.
-
-When matching, the match groups are the following:
-  group 1: year
-  group 2: month
-  group 3: day number
-  group 4: day name
-  group 5: hours, if any
-  group 6: minutes, if any"
-  (let* ((regexp (if extended org-ts-regexp3 org-ts-regexp2))
-	 (pos (point))
-	 (match?
-	  (let ((boundaries (org-in-regexp regexp)))
-	    (save-match-data
-	      (cond ((null boundaries) nil)
-		    ((eq extended 'lax) t)
-		    (t
-		     (or (and (eq extended 'agenda)
-			      (or (org-at-planning-p)
-				  (org-at-property-p)
-				  (and (bound-and-true-p
-					org-agenda-include-inactive-timestamps)
-				       (org-at-clock-log-p))))
-			 (eq 'timestamp
-			     (save-excursion
-			       (when (= pos (cdr boundaries)) (forward-char -1))
-			       (org-element-type (org-element-context)))))))))))
-    (cond
-     ((not match?)                        nil)
-     ((= pos (match-beginning 0))         'bracket)
-     ;; Distinguish location right before the closing bracket from
-     ;; right after it.
-     ((= pos (1- (match-end 0)))          'bracket)
-     ((= pos (match-end 0))               'after)
-     ((org-pos-in-match-range pos 2)      'year)
-     ((org-pos-in-match-range pos 3)      'month)
-     ((org-pos-in-match-range pos 7)      'hour)
-     ((org-pos-in-match-range pos 8)      'minute)
-     ((or (org-pos-in-match-range pos 4)
-	  (org-pos-in-match-range pos 5)) 'day)
-     ((and (> pos (or (match-end 8) (match-end 5)))
-	   (< pos (match-end 0)))
-      (- pos (or (match-end 8) (match-end 5))))
-     (t                                   'day))))
-
-(defun org-toggle-timestamp-type ()
-  "Toggle the type (<active> or [inactive]) of a time stamp."
-  (interactive)
-  (when (org-at-timestamp-p 'lax)
-    (let ((beg (match-beginning 0)) (end (match-end 0))
-	  (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
-      (save-excursion
-	(goto-char beg)
-	(while (re-search-forward "[][<>]" end t)
-	  (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
-			 t t)))
-      (message "Timestamp is now %sactive"
-	       (if (equal (char-after beg) ?<) "" "in")))))
-
-(defun org-at-clock-log-p ()
-  "Non-nil if point is on a clock log line."
-  (and (org-match-line org-clock-line-re)
-       (eq (org-element-type (save-match-data (org-element-at-point))) 'clock)))
-
-(defvar org-clock-history)                     ; defined in org-clock.el
-(defvar org-clock-adjust-closest nil)          ; defined in org-clock.el
-(defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
-  "Change the date in the time stamp at point.
-The date will be changed by N times WHAT.  WHAT can be `day', `month',
-`year', `minute', `second'.  If WHAT is not given, the cursor position
-in the timestamp determines what will be changed.
-When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
-  (let ((origin (point))
-	(timestamp? (org-at-timestamp-p 'lax))
-	origin-cat
-	with-hm inactive
-	(dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
-	extra rem
-	ts time time0 fixnext clrgx)
-    (unless timestamp? (user-error "Not at a timestamp"))
-    (if (and (not what) (eq timestamp? 'bracket))
-	(org-toggle-timestamp-type)
-      ;; Point isn't on brackets.  Remember the part of the time-stamp
-      ;; the point was in.  Indeed, size of time-stamps may change,
-      ;; but point must be kept in the same category nonetheless.
-      (setq origin-cat timestamp?)
-      (when (and (not what) (not (eq timestamp? 'day))
-		 org-display-custom-times
-		 (get-text-property (point) 'display)
-		 (not (get-text-property (1- (point)) 'display)))
-	(setq timestamp? 'day))
-      (setq timestamp? (or what timestamp?)
-	    inactive (= (char-after (match-beginning 0)) ?\[)
-	    ts (match-string 0))
-      (replace-match "")
-      (when (string-match
-	     "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
-	     ts)
-	(setq extra (match-string 1 ts))
-	(when suppress-tmp-delay
-	  (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
-      (when (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
-	(setq with-hm t))
-      (setq time0 (org-parse-time-string ts))
-      (when (and updown
-		 (eq timestamp? 'minute)
-		 (not current-prefix-arg))
-	;; This looks like s-up and s-down.  Change by one rounding step.
-	(setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
-	(unless (= 0 (setq rem (% (nth 1 time0) dm)))
-	  (setcar (cdr time0) (+ (nth 1 time0)
-				 (if (> n 0) (- rem) (- dm rem))))))
-      (setq time
-	    (apply #'encode-time
-		   (or (car time0) 0)
-		   (+ (if (eq timestamp? 'minute) n 0) (nth 1 time0))
-		   (+ (if (eq timestamp? 'hour) n 0)   (nth 2 time0))
-		   (+ (if (eq timestamp? 'day) n 0)    (nth 3 time0))
-		   (+ (if (eq timestamp? 'month) n 0)  (nth 4 time0))
-		   (+ (if (eq timestamp? 'year) n 0)   (nth 5 time0))
-		   (nthcdr 6 time0)))
-      (when (and (memq timestamp? '(hour minute))
-		 extra
-		 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
-	(setq extra (org-modify-ts-extra
-		     extra
-		     (if (eq timestamp? 'hour) 2 5)
-		     n dm)))
-      (when (integerp timestamp?)
-	(setq extra (org-modify-ts-extra extra timestamp? n dm)))
-      (when (eq what 'calendar)
-	(let ((cal-date (org-get-date-from-calendar)))
-	  (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
-	  (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
-	  (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
-	  (setcar time0 (or (car time0) 0))
-	  (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
-	  (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
-	  (setq time (apply 'encode-time time0))))
-      ;; Insert the new time-stamp, and ensure point stays in the same
-      ;; category as before (i.e. not after the last position in that
-      ;; category).
-      (let ((pos (point)))
-	;; Stay before inserted string. `save-excursion' is of no use.
-	(setq org-last-changed-timestamp
-	      (org-insert-time-stamp time with-hm inactive nil nil extra))
-	(goto-char pos))
-      (save-match-data
-	(looking-at org-ts-regexp3)
-	(goto-char
-	 (pcase origin-cat
-	   ;; `day' category ends before `hour' if any, or at the end
-	   ;; of the day name.
-	   (`day (min (or (match-beginning 7) (1- (match-end 5))) origin))
-	   (`hour (min (match-end 7) origin))
-	   (`minute (min (1- (match-end 8)) origin))
-	   ((pred integerp) (min (1- (match-end 0)) origin))
-	   ;; Point was right after the time-stamp.  However, the
-	   ;; time-stamp length might have changed, so refer to
-	   ;; (match-end 0) instead.
-	   (`after (match-end 0))
-	   ;; `year' and `month' have both fixed size: point couldn't
-	   ;; have moved into another part.
-	   (_ origin))))
-      ;; Update clock if on a CLOCK line.
-      (org-clock-update-time-maybe)
-      ;; Maybe adjust the closest clock in `org-clock-history'
-      (when org-clock-adjust-closest
-	(if (not (and (org-at-clock-log-p)
-		      (< 1 (length (delq nil (mapcar 'marker-position
-						     org-clock-history))))))
-	    (message "No clock to adjust")
-	  (cond ((save-excursion	; fix previous clock?
-		   (re-search-backward org-ts-regexp0 nil t)
-		   (looking-back (concat org-clock-string " \\[")
-				 (line-beginning-position)))
-		 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
-		((save-excursion	; fix next clock?
-		   (re-search-backward org-ts-regexp0 nil t)
-		   (looking-at (concat org-ts-regexp0 "\\] =>")))
-		 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
-	  (save-window-excursion
-	    ;; Find closest clock to point, adjust the previous/next one in history
-	    (let* ((p (save-excursion (org-back-to-heading t)))
-		   (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
-		   (clfixnth
-		    (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
-		   (clfixpos (unless (> 0 clfixnth) (nth clfixnth org-clock-history))))
-	      (if (not clfixpos)
-		  (message "No clock to adjust")
-		(save-excursion
-		  (org-goto-marker-or-bmk clfixpos)
-		  (org-show-subtree)
-		  (when (re-search-forward clrgx nil t)
-		    (goto-char (match-beginning 1))
-		    (let (org-clock-adjust-closest)
-		      (org-timestamp-change n timestamp? updown))
-		    (message "Clock adjusted in %s for heading: %s"
-			     (file-name-nondirectory (buffer-file-name))
-			     (org-get-heading t t)))))))))
-      ;; Try to recenter the calendar window, if any.
-      (when (and org-calendar-follow-timestamp-change
-		 (get-buffer-window "*Calendar*" t)
-		 (memq timestamp? '(day month year)))
-	(org-recenter-calendar (time-to-days time))))))
-
-(defun org-modify-ts-extra (s pos n dm)
-  "Change the different parts of the lead-time and repeat fields in timestamp."
-  (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
-	ng h m new rem)
-    (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
-      (cond
-       ((or (org-pos-in-match-range pos 2)
-	    (org-pos-in-match-range pos 3))
-	(setq m (string-to-number (match-string 3 s))
-	      h (string-to-number (match-string 2 s)))
-	(if (org-pos-in-match-range pos 2)
-	    (setq h (+ h n))
-	  (setq n (* dm (with-no-warnings (signum n))))
-	  (unless (= 0 (setq rem (% m dm)))
-	    (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
-	  (setq m (+ m n)))
-	(when (< m 0) (setq m (+ m 60) h (1- h)))
-	(when (> m 59) (setq m (- m 60) h (1+ h)))
-	(setq h (mod h 24))
-	(setq ng 1 new (format "-%02d:%02d" h m)))
-       ((org-pos-in-match-range pos 6)
-	(setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
-       ((org-pos-in-match-range pos 5)
-	(setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
-
-       ((org-pos-in-match-range pos 9)
-	(setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
-       ((org-pos-in-match-range pos 8)
-	(setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
-
-      (when ng
-	(setq s (concat
-		 (substring s 0 (match-beginning ng))
-		 new
-		 (substring s (match-end ng))))))
-    s))
-
-(defun org-recenter-calendar (d)
-  "If the calendar is visible, recenter it to date D."
-  (let ((cwin (get-buffer-window "*Calendar*" t)))
-    (when cwin
-      (let ((calendar-move-hook nil))
-	(with-selected-window cwin
-	  (calendar-goto-date
-	   (if (listp d) d (calendar-gregorian-from-absolute d))))))))
-
-(defun org-goto-calendar (&optional arg)
-  "Go to the Emacs calendar at the current date.
-If there is a time stamp in the current line, go to that date.
-A prefix ARG can be used to force the current date."
-  (interactive "P")
-  (let ((calendar-move-hook nil)
-	(calendar-view-holidays-initially-flag nil)
-	(calendar-view-diary-initially-flag nil)
-	diff)
-    (when (or (org-at-timestamp-p 'lax)
-	      (org-match-line (concat ".*" org-ts-regexp)))
-      (let ((d1 (time-to-days (current-time)))
-	    (d2 (time-to-days (org-time-string-to-time (match-string 1)))))
-	(setq diff (- d2 d1))))
-    (calendar)
-    (calendar-goto-today)
-    (when (and diff (not arg)) (calendar-forward-day diff))))
-
-(defun org-get-date-from-calendar ()
-  "Return a list (month day year) of date at point in calendar."
-  (with-current-buffer "*Calendar*"
-    (save-match-data
-      (calendar-cursor-to-date))))
-
-(defun org-date-from-calendar ()
-  "Insert time stamp corresponding to cursor date in *Calendar* buffer.
-If there is already a time stamp at the cursor position, update it."
-  (interactive)
-  (if (org-at-timestamp-p 'lax)
-      (org-timestamp-change 0 'calendar)
-    (let ((cal-date (org-get-date-from-calendar)))
-      (org-insert-time-stamp
-       (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
-
-(defcustom org-effort-durations
-  `(("min" . 1)
-    ("h" . 60)
-    ("d" . ,(* 60 8))
-    ("w" . ,(* 60 8 5))
-    ("m" . ,(* 60 8 5 4))
-    ("y" . ,(* 60 8 5 40)))
-  "Conversion factor to minutes for an effort modifier.
-
-Each entry has the form (MODIFIER . MINUTES).
-
-In an effort string, a number followed by MODIFIER is multiplied
-by the specified number of MINUTES to obtain an effort in
-minutes.
-
-For example, if the value of this variable is ((\"hours\" . 60)), then an
-effort string \"2hours\" is equivalent to 120 minutes."
-  :group 'org-agenda
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(alist :key-type (string :tag "Modifier")
-		:value-type (number :tag "Minutes")))
-
-(defcustom org-image-actual-width t
-  "Should we use the actual width of images when inlining them?
-
-When set to t, always use the image width.
-
-When set to a number, use imagemagick (when available) to set
-the image's width to this value.
-
-When set to a number in a list, try to get the width from any
-#+ATTR.* keyword if it matches a width specification like
-
-  #+ATTR_HTML: :width 300px
-
-and fall back on that number if none is found.
-
-When set to nil, try to get the width from an #+ATTR.* keyword
-and fall back on the original width if none is found.
-
-This requires Emacs >= 24.1, build with imagemagick support."
-  :group 'org-appearance
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Use the image width" t)
-	  (integer :tag "Use a number of pixels")
-	  (list :tag "Use #+ATTR* or a number of pixels" (integer))
-	  (const :tag "Use #+ATTR* or don't resize" nil)))
-
-(defcustom org-agenda-inhibit-startup nil
-  "Inhibit startup when preparing agenda buffers.
-When this variable is t, the initialization of the Org agenda
-buffers is inhibited: e.g. the visibility state is not set, the
-tables are not re-aligned, etc."
-  :type 'boolean
-  :version "24.3"
-  :group 'org-agenda)
-
-(defcustom org-agenda-ignore-properties nil
-  "Avoid updating text properties when building the agenda.
-Properties are used to prepare buffers for effort estimates,
-appointments, statistics and subtree-local categories.
-If you don't use these in the agenda, you can add them to this
-list and agenda building will be a bit faster.
-The value is a list, with zero or more of the symbols `effort', `appt',
-`stats' or `category'."
-  :type '(set :greedy t
-	      (const effort)
-	      (const appt)
-	      (const stats)
-	      (const category))
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :group 'org-agenda)
-
-;;;; Files
-
-(defun org-save-all-org-buffers ()
-  "Save all Org buffers without user confirmation."
-  (interactive)
-  (message "Saving all Org buffers...")
-  (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
-  (when (featurep 'org-id) (org-id-locations-save))
-  (message "Saving all Org buffers... done"))
-
-(defun org-revert-all-org-buffers ()
-  "Revert all Org buffers.
-Prompt for confirmation when there are unsaved changes.
-Be sure you know what you are doing before letting this function
-overwrite your changes.
-
-This function is useful in a setup where one tracks Org files
-with a version control system, to revert on one machine after pulling
-changes from another.  I believe the procedure must be like this:
-
-1. M-x org-save-all-org-buffers
-2. Pull changes from the other machine, resolve conflicts
-3. M-x org-revert-all-org-buffers"
-  (interactive)
-  (unless (yes-or-no-p "Revert all Org buffers from their files? ")
-    (user-error "Abort"))
-  (save-excursion
-    (save-window-excursion
-      (dolist (b (buffer-list))
-	(when (and (with-current-buffer b (derived-mode-p 'org-mode))
-		   (with-current-buffer b buffer-file-name))
-	  (pop-to-buffer-same-window b)
-	  (revert-buffer t 'no-confirm)))
-      (when (and (featurep 'org-id) org-id-track-globally)
-	(org-id-locations-load)))))
-
-;;;; Agenda files
-
-;;;###autoload
-(defun org-switchb (&optional arg)
-  "Switch between Org buffers.
-
-With `\\[universal-argument]' prefix, restrict available buffers to files.
-
-With `\\[universal-argument] \\[universal-argument]' \
-prefix, restrict available buffers to agenda files."
-  (interactive "P")
-  (let ((blist (org-buffer-list
-		(cond ((equal arg '(4))  'files)
-		      ((equal arg '(16)) 'agenda)))))
-    (pop-to-buffer-same-window
-     (completing-read "Org buffer: "
-		      (mapcar #'list (mapcar #'buffer-name blist))
-		      nil t))))
-
-(defun org-buffer-list (&optional predicate exclude-tmp)
-  "Return a list of Org buffers.
-PREDICATE can be `export', `files' or `agenda'.
-
-export   restrict the list to Export buffers.
-files    restrict the list to buffers visiting Org files.
-agenda   restrict the list to buffers visiting agenda files.
-
-If EXCLUDE-TMP is non-nil, ignore temporary buffers."
-  (let* ((bfn nil)
-	 (agenda-files (and (eq predicate 'agenda)
-			    (mapcar 'file-truename (org-agenda-files t))))
-	 (filter
-	  (cond
-	   ((eq predicate 'files)
-	    (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
-	   ((eq predicate 'export)
-	    (lambda (b) (string-match "\\*Org .*Export" (buffer-name b))))
-	   ((eq predicate 'agenda)
-	    (lambda (b)
-	      (with-current-buffer b
-		(and (derived-mode-p 'org-mode)
-		     (setq bfn (buffer-file-name b))
-		     (member (file-truename bfn) agenda-files)))))
-	   (t (lambda (b) (with-current-buffer b
-			    (or (derived-mode-p 'org-mode)
-				(string-match "\\*Org .*Export"
-					      (buffer-name b)))))))))
-    (delq nil
-	  (mapcar
-	   (lambda(b)
-	     (if (and (funcall filter b)
-		      (or (not exclude-tmp)
-			  (not (string-match "tmp" (buffer-name b)))))
-		 b
-	       nil))
-	   (buffer-list)))))
-
-(defun org-agenda-files (&optional unrestricted archives)
-  "Get the list of agenda files.
-Optional UNRESTRICTED means return the full list even if a restriction
-is currently in place.
-When ARCHIVES is t, include all archive files that are really being
-used by the agenda files.  If ARCHIVE is `ifmode', do this only if
-`org-agenda-archives-mode' is t."
-  (let ((files
-	 (cond
-	  ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
-	  ((stringp org-agenda-files) (org-read-agenda-file-list))
-	  ((listp org-agenda-files) org-agenda-files)
-	  (t (error "Invalid value of `org-agenda-files'")))))
-    (setq files (apply 'append
-		       (mapcar (lambda (f)
-				 (if (file-directory-p f)
-				     (directory-files
-				      f t org-agenda-file-regexp)
-				   (list f)))
-			       files)))
-    (when org-agenda-skip-unavailable-files
-      (setq files (delq nil
-			(mapcar (function
-				 (lambda (file)
-				   (and (file-readable-p file) file)))
-				files))))
-    (when (or (eq archives t)
-	      (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
-      (setq files (org-add-archive-files files)))
-    files))
-
-(defun org-agenda-file-p (&optional file)
-  "Return non-nil, if FILE is an agenda file.
-If FILE is omitted, use the file associated with the current
-buffer."
-  (let ((fname (or file (buffer-file-name))))
-    (and fname
-         (member (file-truename fname)
-                 (mapcar #'file-truename (org-agenda-files t))))))
-
-(defun org-edit-agenda-file-list ()
-  "Edit the list of agenda files.
-Depending on setup, this either uses customize to edit the variable
-`org-agenda-files', or it visits the file that is holding the list.  In the
-latter case, the buffer is set up in a way that saving it automatically kills
-the buffer and restores the previous window configuration."
-  (interactive)
-  (if (stringp org-agenda-files)
-      (let ((cw (current-window-configuration)))
-	(find-file org-agenda-files)
-	(setq-local org-window-configuration cw)
-	(add-hook 'after-save-hook
-		  (lambda ()
-		    (set-window-configuration
-		     (prog1 org-window-configuration
-		       (kill-buffer (current-buffer))))
-		    (org-install-agenda-files-menu)
-		    (message "New agenda file list installed"))
-		  nil 'local)
-	(message "%s" (substitute-command-keys
-		       "Edit list and finish with \\[save-buffer]")))
-    (customize-variable 'org-agenda-files)))
-
-(defun org-store-new-agenda-file-list (list)
-  "Set new value for the agenda file list and save it correctly."
-  (if (stringp org-agenda-files)
-      (let ((fe (org-read-agenda-file-list t)) b u)
-	(while (setq b (find-buffer-visiting org-agenda-files))
-	  (kill-buffer b))
-	(with-temp-file org-agenda-files
-	  (insert
-	   (mapconcat
-	    (lambda (f) ;; Keep un-expanded entries.
-	      (if (setq u (assoc f fe))
-		  (cdr u)
-		f))
-	    list "\n")
-	   "\n")))
-    (let ((org-mode-hook nil) (org-inhibit-startup t)
-	  (org-insert-mode-line-in-empty-file nil))
-      (setq org-agenda-files list)
-      (customize-save-variable 'org-agenda-files org-agenda-files))))
-
-(defun org-read-agenda-file-list (&optional pair-with-expansion)
-  "Read the list of agenda files from a file.
-If PAIR-WITH-EXPANSION is t return pairs with un-expanded
-filenames, used by `org-store-new-agenda-file-list' to write back
-un-expanded file names."
-  (when (file-directory-p org-agenda-files)
-    (error "`org-agenda-files' cannot be a single directory"))
-  (when (stringp org-agenda-files)
-    (with-temp-buffer
-      (insert-file-contents org-agenda-files)
-      (mapcar
-       (lambda (f)
-	 (let ((e (expand-file-name (substitute-in-file-name f)
-				    org-directory)))
-	   (if pair-with-expansion
-	       (cons e f)
-	     e)))
-       (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
-
-;;;###autoload
-(defun org-cycle-agenda-files ()
-  "Cycle through the files in `org-agenda-files'.
-If the current buffer visits an agenda file, find the next one in the list.
-If the current buffer does not, find the first agenda file."
-  (interactive)
-  (let* ((fs (or (org-agenda-files t)
-		 (user-error "No agenda files")))
-	 (files (copy-sequence fs))
-	 (tcf (and buffer-file-name (file-truename buffer-file-name)))
-	 file)
-    (when tcf
-      (while (and (setq file (pop files))
-		  (not (equal (file-truename file) tcf)))))
-    (find-file (car (or files fs)))
-    (when (buffer-base-buffer) (pop-to-buffer-same-window (buffer-base-buffer)))))
-
-(defun org-agenda-file-to-front (&optional to-end)
-  "Move/add the current file to the top of the agenda file list.
-If the file is not present in the list, it is added to the front.  If it is
-present, it is moved there.  With optional argument TO-END, add/move to the
-end of the list."
-  (interactive "P")
-  (let ((org-agenda-skip-unavailable-files nil)
-	(file-alist (mapcar (lambda (x)
-			      (cons (file-truename x) x))
-			    (org-agenda-files t)))
-	(ctf (file-truename
-	      (or buffer-file-name
-		  (user-error "Please save the current buffer to a file"))))
-	x had)
-    (setq x (assoc ctf file-alist) had x)
-
-    (unless x (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
-    (if to-end
-	(setq file-alist (append (delq x file-alist) (list x)))
-      (setq file-alist (cons x (delq x file-alist))))
-    (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
-    (org-install-agenda-files-menu)
-    (message "File %s to %s of agenda file list"
-	     (if had "moved" "added") (if to-end "end" "front"))))
-
-(defun org-remove-file (&optional file)
-  "Remove current file from the list of files in variable `org-agenda-files'.
-These are the files which are being checked for agenda entries.
-Optional argument FILE means use this file instead of the current."
-  (interactive)
-  (let* ((org-agenda-skip-unavailable-files nil)
-	 (file (or file buffer-file-name
-		   (user-error "Current buffer does not visit a file")))
-	 (true-file (file-truename file))
-	 (afile (abbreviate-file-name file))
-	 (files (delq nil (mapcar
-			   (lambda (x)
-			     (unless (equal true-file
-					    (file-truename x))
-			       x))
-			   (org-agenda-files t)))))
-    (if (not (= (length files) (length (org-agenda-files t))))
-	(progn
-	  (org-store-new-agenda-file-list files)
-	  (org-install-agenda-files-menu)
-	  (message "Removed from Org Agenda list: %s" afile))
-      (message "File was not in list: %s (not removed)" afile))))
-
-(defun org-file-menu-entry (file)
-  (vector file (list 'find-file file) t))
-
-(defun org-check-agenda-file (file)
-  "Make sure FILE exists.  If not, ask user what to do."
-  (unless (file-exists-p file)
-    (message "Non-existent agenda file %s.  [R]emove from list or [A]bort?"
-	     (abbreviate-file-name file))
-    (let ((r (downcase (read-char-exclusive))))
-      (cond
-       ((equal r ?r)
-	(org-remove-file file)
-	(throw 'nextfile t))
-       (t (user-error "Abort"))))))
-
-(defun org-get-agenda-file-buffer (file)
-  "Get an agenda buffer visiting FILE.
-If the buffer needs to be created, add it to the list of buffers
-which might be released later."
-  (let ((buf (org-find-base-buffer-visiting file)))
-    (if buf
-	buf ; just return it
-      ;; Make a new buffer and remember it
-      (setq buf (find-file-noselect file))
-      (when buf (push buf org-agenda-new-buffers))
-      buf)))
-
-(defun org-release-buffers (blist)
-  "Release all buffers in list, asking the user for confirmation when needed.
-When a buffer is unmodified, it is just killed.  When modified, it is saved
-\(if the user agrees) and then killed."
-  (let (file)
-    (dolist (buf blist)
-      (setq file (buffer-file-name buf))
-      (when (and (buffer-modified-p buf)
-		 file
-		 (y-or-n-p (format "Save file %s? " file)))
-	(with-current-buffer buf (save-buffer)))
-      (kill-buffer buf))))
-
-(defun org-agenda-prepare-buffers (files)
-  "Create buffers for all agenda files, protect archived trees and comments."
-  (interactive)
-  (let ((pa '(:org-archived t))
-	(pc '(:org-comment t))
-	(pall '(:org-archived t :org-comment t))
-	(inhibit-read-only t)
-	(org-inhibit-startup org-agenda-inhibit-startup)
-	(rea (concat ":" org-archive-tag ":"))
-	re pos)
-    (setq org-tag-alist-for-agenda nil
-	  org-tag-groups-alist-for-agenda nil)
-    (save-excursion
-      (save-restriction
-	(dolist (file files)
-	  (catch 'nextfile
-	    (if (bufferp file)
-		(set-buffer file)
-	      (org-check-agenda-file file)
-	      (set-buffer (org-get-agenda-file-buffer file)))
-	    (widen)
-	    (org-set-regexps-and-options 'tags-only)
-	    (setq pos (point))
-	    (or (memq 'category org-agenda-ignore-properties)
-		(org-refresh-category-properties))
-	    (or (memq 'stats org-agenda-ignore-properties)
-		(org-refresh-stats-properties))
-	    (or (memq 'effort org-agenda-ignore-properties)
-		(org-refresh-effort-properties))
-	    (or (memq 'appt org-agenda-ignore-properties)
-		(org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
-	    (setq org-todo-keywords-for-agenda
-		  (append org-todo-keywords-for-agenda org-todo-keywords-1))
-	    (setq org-done-keywords-for-agenda
-		  (append org-done-keywords-for-agenda org-done-keywords))
-	    (setq org-todo-keyword-alist-for-agenda
-		  (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
-	    (setq org-tag-alist-for-agenda
-		  (org--tag-add-to-alist
-		   org-tag-alist-for-agenda
-		   org-current-tag-alist))
-	    ;; Merge current file's tag groups into global
-	    ;; `org-tag-groups-alist-for-agenda'.
-	    (when org-group-tags
-	      (dolist (alist org-tag-groups-alist)
-		(let ((old (assoc (car alist) org-tag-groups-alist-for-agenda)))
-		  (if old
-		      (setcdr old (org-uniquify (append (cdr old) (cdr alist))))
-		    (push alist org-tag-groups-alist-for-agenda)))))
-	    (org-with-silent-modifications
-	     (save-excursion
-	       (remove-text-properties (point-min) (point-max) pall)
-	       (when org-agenda-skip-archived-trees
-		 (goto-char (point-min))
-		 (while (re-search-forward rea nil t)
-		   (when (org-at-heading-p t)
-		     (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
-	       (goto-char (point-min))
-	       (setq re (format "^\\*+ .*\\<%s\\>" org-comment-string))
-	       (while (re-search-forward re nil t)
-		 (when (save-match-data (org-in-commented-heading-p t))
-		   (add-text-properties
-		    (match-beginning 0) (org-end-of-subtree t) pc)))))
-	    (goto-char pos)))))
-    (setq org-todo-keywords-for-agenda
-          (org-uniquify org-todo-keywords-for-agenda))
-    (setq org-todo-keyword-alist-for-agenda
-	  (org-uniquify org-todo-keyword-alist-for-agenda))))
-
-
-;;;; CDLaTeX minor mode
-
-(defvar org-cdlatex-mode-map (make-sparse-keymap)
-  "Keymap for the minor `org-cdlatex-mode'.")
-
-(org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
-(org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
-(org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
-(org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
-(org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
-
-(defvar org-cdlatex-texmathp-advice-is-done nil
-  "Flag remembering if we have applied the advice to texmathp already.")
-
-(define-minor-mode org-cdlatex-mode
-  "Toggle the minor `org-cdlatex-mode'.
-This mode supports entering LaTeX environment and math in LaTeX fragments
-in Org mode.
-\\{org-cdlatex-mode-map}"
-  nil " OCDL" nil
-  (when org-cdlatex-mode
-    (require 'cdlatex)
-    (run-hooks 'cdlatex-mode-hook)
-    (cdlatex-compute-tables))
-  (unless org-cdlatex-texmathp-advice-is-done
-    (setq org-cdlatex-texmathp-advice-is-done t)
-    (defadvice texmathp (around org-math-always-on activate)
-      "Always return t in Org buffers.
-This is because we want to insert math symbols without dollars even outside
-the LaTeX math segments.  If Org mode thinks that point is actually inside
-an embedded LaTeX fragment, let `texmathp' do its job.
-`\\[org-cdlatex-mode-map]'"
-      (interactive)
-      (let (p)
-	(cond
-	 ((not (derived-mode-p 'org-mode)) ad-do-it)
-	 ((eq this-command 'cdlatex-math-symbol)
-	  (setq ad-return-value t
-		texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
-	 (t
-	  (let ((p (org-inside-LaTeX-fragment-p)))
-	    (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
-		(setq ad-return-value t
-		      texmathp-why '("Org mode embedded math" . 0))
-	      (when p ad-do-it)))))))))
-
-(defun turn-on-org-cdlatex ()
-  "Unconditionally turn on `org-cdlatex-mode'."
-  (org-cdlatex-mode 1))
-
-(defun org-try-cdlatex-tab ()
-  "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
-It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
-  - inside a LaTeX fragment, or
-  - after the first word in a line, where an abbreviation expansion could
-    insert a LaTeX environment."
-  (when org-cdlatex-mode
-    (cond
-     ;; Before any word on the line: No expansion possible.
-     ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
-     ;; Just after first word on the line: Expand it.  Make sure it
-     ;; cannot happen on headlines, though.
-     ((save-excursion
-	(skip-chars-backward "a-zA-Z0-9*")
-	(skip-chars-backward " \t")
-	(and (bolp) (not (org-at-heading-p))))
-      (cdlatex-tab) t)
-     ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
-
-(defun org-cdlatex-underscore-caret (&optional _arg)
-  "Execute `cdlatex-sub-superscript' in LaTeX fragments.
-Revert to the normal definition outside of these fragments."
-  (interactive "P")
-  (if (org-inside-LaTeX-fragment-p)
-      (call-interactively 'cdlatex-sub-superscript)
-    (let (org-cdlatex-mode)
-      (call-interactively (key-binding (vector last-input-event))))))
-
-(defun org-cdlatex-math-modify (&optional _arg)
-  "Execute `cdlatex-math-modify' in LaTeX fragments.
-Revert to the normal definition outside of these fragments."
-  (interactive "P")
-  (if (org-inside-LaTeX-fragment-p)
-      (call-interactively 'cdlatex-math-modify)
-    (let (org-cdlatex-mode)
-      (call-interactively (key-binding (vector last-input-event))))))
-
-(defun org-cdlatex-environment-indent (&optional environment item)
-  "Execute `cdlatex-environment' and indent the inserted environment.
-
-ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
-
-The inserted environment is indented to current indentation
-unless point is at the beginning of the line, in which the
-environment remains unintended."
-  (interactive)
-  ;; cdlatex-environment always return nil.  Therefore, capture output
-  ;; first and determine if an environment was selected.
-  (let* ((beg (point-marker))
-	 (end (copy-marker (point) t))
-	 (inserted (progn
-		     (ignore-errors (cdlatex-environment environment item))
-		     (< beg end)))
-	 ;; Figure out how many lines to move forward after the
-	 ;; environment has been inserted.
-	 (lines (when inserted
-		  (save-excursion
-		    (- (cl-loop while (< beg (point))
-				with x = 0
-				do (forward-line -1)
-				(cl-incf x)
-				finally return x)
-		       (if (progn (goto-char beg)
-				  (and (progn (skip-chars-forward " \t") (eolp))
-				       (progn (skip-chars-backward " \t") (bolp))))
-			   1 0)))))
-	 (env (org-trim (delete-and-extract-region beg end))))
-    (when inserted
-      ;; Get indentation of next line unless at column 0.
-      (let ((ind (if (bolp) 0
-		   (save-excursion
-		     (org-return-indent)
-		     (prog1 (org-get-indentation)
-		       (when (progn (skip-chars-forward " \t") (eolp))
-			 (delete-region beg (point)))))))
-	    (bol (progn (skip-chars-backward " \t") (bolp))))
-	;; Insert a newline before environment unless at column zero
-	;; to "escape" the current line.  Insert a newline if
-	;; something is one the same line as \end{ENVIRONMENT}.
-	(insert
-	 (concat (unless bol "\n") env
-		 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
-	(unless (zerop ind)
-	  (save-excursion
-	    (goto-char beg)
-	    (while (< (point) end)
-	      (unless (eolp) (indent-line-to ind))
-	      (forward-line))))
-	(goto-char beg)
-	(forward-line lines)
-	(indent-line-to ind)))
-    (set-marker beg nil)
-    (set-marker end nil)))
-
-
-;;;; LaTeX fragments
-
-(defun org-inside-LaTeX-fragment-p ()
-  "Test if point is inside a LaTeX fragment.
-I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
-sequence appearing also before point.
-Even though the matchers for math are configurable, this function assumes
-that \\begin, \\(, \\[, and $$ are always used.  Only the single dollar
-delimiters are skipped when they have been removed by customization.
-The return value is nil, or a cons cell with the delimiter and the
-position of this delimiter.
-
-This function does a reasonably good job, but can locally be fooled by
-for example currency specifications.  For example it will assume being in
-inline math after \"$22.34\".  The LaTeX fragment formatter will only format
-fragments that are properly closed, but during editing, we have to live
-with the uncertainty caused by missing closing delimiters.  This function
-looks only before point, not after."
-  (catch 'exit
-    (let ((pos (point))
-	  (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
-	  (lim (save-excursion (org-backward-paragraph) (point)))
-	  dd-on str (start 0) m re)
-      (goto-char pos)
-      (when dodollar
-	(setq str (concat (buffer-substring lim (point)) "\000 X$.")
-	      re (nth 1 (assoc "$" org-latex-regexps)))
-	(while (string-match re str start)
-	  (cond
-	   ((= (match-end 0) (length str))
-	    (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
-	   ((= (match-end 0) (- (length str) 5))
-	    (throw 'exit nil))
-	   (t (setq start (match-end 0))))))
-      (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
-	(goto-char pos)
-	(and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
-	(and (match-beginning 2) (throw 'exit nil))
-	;; count $$
-	(while (re-search-backward "\\$\\$" lim t)
-	  (setq dd-on (not dd-on)))
-	(goto-char pos)
-	(when dd-on (cons "$$" m))))))
-
-(defun org-inside-latex-macro-p ()
-  "Is point inside a LaTeX macro or its arguments?"
-  (save-match-data
-    (org-in-regexp
-     "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
-
-(defun org--format-latex-make-overlay (beg end image &optional imagetype)
-  "Build an overlay between BEG and END using IMAGE file.
-Argument IMAGETYPE is the extension of the displayed image,
-as a string.  It defaults to \"png\"."
-  (let ((ov (make-overlay beg end))
-	(imagetype (or (intern imagetype) 'png)))
-    (overlay-put ov 'org-overlay-type 'org-latex-overlay)
-    (overlay-put ov 'evaporate t)
-    (overlay-put ov
-		 'modification-hooks
-		 (list (lambda (o _flag _beg _end &optional _l)
-			 (delete-overlay o))))
-    (overlay-put ov
-		 'display
-		 (list 'image :type imagetype :file image :ascent 'center))))
-
-(defun org--list-latex-overlays (&optional beg end)
-  "List all Org LaTeX overlays in current buffer.
-Limit to overlays between BEG and END when those are provided."
-  (cl-remove-if-not
-   (lambda (o) (eq (overlay-get o 'org-overlay-type) 'org-latex-overlay))
-   (overlays-in (or beg (point-min)) (or end (point-max)))))
-
-(defun org-remove-latex-fragment-image-overlays (&optional beg end)
-  "Remove all overlays with LaTeX fragment images in current buffer.
-When optional arguments BEG and END are non-nil, remove all
-overlays between them instead.  Return a non-nil value when some
-overlays were removed, nil otherwise."
-  (let ((overlays (org--list-latex-overlays beg end)))
-    (mapc #'delete-overlay overlays)
-    overlays))
-
-(defun org-toggle-latex-fragment (&optional arg)
-  "Preview the LaTeX fragment at point, or all locally or globally.
-
-If the cursor is on a LaTeX fragment, create the image and overlay
-it over the source code, if there is none.  Remove it otherwise.
-If there is no fragment at point, display all fragments in the
-current section.
-
-With prefix ARG, preview or clear image for all fragments in the
-current subtree or in the whole buffer when used before the first
-headline.  With a prefix ARG `\\[universal-argument] \
-\\[universal-argument]' preview or clear images
-for all fragments in the buffer."
-  (interactive "P")
-  (when (display-graphic-p)
-    (catch 'exit
-      (save-excursion
-	(let (beg end msg)
-	  (cond
-	   ((or (equal arg '(16))
-		(and (equal arg '(4))
-		     (org-with-limited-levels (org-before-first-heading-p))))
-	    (if (org-remove-latex-fragment-image-overlays)
-		(progn (message "LaTeX fragments images removed from buffer")
-		       (throw 'exit nil))
-	      (setq msg "Creating images for buffer...")))
-	   ((equal arg '(4))
-	    (org-with-limited-levels (org-back-to-heading t))
-	    (setq beg (point))
-	    (setq end (progn (org-end-of-subtree t) (point)))
-	    (if (org-remove-latex-fragment-image-overlays beg end)
-		(progn
-		  (message "LaTeX fragment images removed from subtree")
-		  (throw 'exit nil))
-	      (setq msg "Creating images for subtree...")))
-	   ((let ((datum (org-element-context)))
-	      (when (memq (org-element-type datum)
-			  '(latex-environment latex-fragment))
-		(setq beg (org-element-property :begin datum))
-		(setq end (org-element-property :end datum))
-		(if (org-remove-latex-fragment-image-overlays beg end)
-		    (progn (message "LaTeX fragment image removed")
-			   (throw 'exit nil))
-		  (setq msg "Creating image...")))))
-	   (t
-	    (org-with-limited-levels
-	     (setq beg (if (org-at-heading-p) (line-beginning-position)
-			 (outline-previous-heading)
-			 (point)))
-	     (setq end (progn (outline-next-heading) (point)))
-	     (if (org-remove-latex-fragment-image-overlays beg end)
-		 (progn
-		   (message "LaTeX fragment images removed from section")
-		   (throw 'exit nil))
-	       (setq msg "Creating images for section...")))))
-	  (let ((file (buffer-file-name (buffer-base-buffer))))
-	    (org-format-latex
-	     (concat org-preview-latex-image-directory "org-ltximg")
-	     beg end
-	     ;; Emacs cannot overlay images from remote hosts.  Create
-	     ;; it in `temporary-file-directory' instead.
-	     (if (or (not file) (file-remote-p file))
-		 temporary-file-directory
-	       default-directory)
-	     'overlays msg 'forbuffer org-preview-latex-default-process))
-	  (message (concat msg "done")))))))
-
-(defun org-format-latex
-    (prefix &optional beg end dir overlays msg forbuffer processing-type)
-  "Replace LaTeX fragments with links to an image.
-
-The function takes care of creating the replacement image.
-
-Only consider fragments between BEG and END when those are
-provided.
-
-When optional argument OVERLAYS is non-nil, display the image on
-top of the fragment instead of replacing it.
-
-PROCESSING-TYPE is the conversion method to use, as a symbol.
-
-Some of the options can be changed using the variable
-`org-format-latex-options', which see."
-  (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
-  (unless (eq processing-type 'verbatim)
-    (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
-	   (cnt 0)
-	   checkdir-flag)
-      (goto-char (or beg (point-min)))
-      ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
-      (when (and overlays (memq processing-type '(dvipng imagemagick)))
-	(overlay-recenter (or end (point-max))))
-      (while (re-search-forward math-regexp end t)
-	(unless (and overlays
-		     (eq (get-char-property (point) 'org-overlay-type)
-			 'org-latex-overlay))
-	  (let* ((context (org-element-context))
-		 (type (org-element-type context)))
-	    (when (memq type '(latex-environment latex-fragment))
-	      (let ((block-type (eq type 'latex-environment))
-		    (value (org-element-property :value context))
-		    (beg (org-element-property :begin context))
-		    (end (save-excursion
-			   (goto-char (org-element-property :end context))
-			   (skip-chars-backward " \r\t\n")
-			   (point))))
-		(cond
-		 ((eq processing-type 'mathjax)
-		  ;; Prepare for MathJax processing.
-		  (if (not (string-match "\\`\\$\\$?" value))
-		      (goto-char end)
-		    (delete-region beg end)
-		    (if (string= (match-string 0 value) "$$")
-			(insert "\\[" (substring value 2 -2) "\\]")
-		      (insert "\\(" (substring value 1 -1) "\\)"))))
-		 ((assq processing-type org-preview-latex-process-alist)
-		  ;; Process to an image.
-		  (cl-incf cnt)
-		  (goto-char beg)
-		  (let* ((processing-info
-			  (cdr (assq processing-type org-preview-latex-process-alist)))
-			 (face (face-at-point))
-			 ;; Get the colors from the face at point.
-			 (fg
-			  (let ((color (plist-get org-format-latex-options
-						  :foreground)))
-			    (if (and forbuffer (eq color 'auto))
-				(face-attribute face :foreground nil 'default)
-			      color)))
-			 (bg
-			  (let ((color (plist-get org-format-latex-options
-						  :background)))
-			    (if (and forbuffer (eq color 'auto))
-				(face-attribute face :background nil 'default)
-			      color)))
-			 (hash (sha1 (prin1-to-string
-				      (list org-format-latex-header
-					    org-latex-default-packages-alist
-					    org-latex-packages-alist
-					    org-format-latex-options
-					    forbuffer value fg bg))))
-			 (imagetype (or (plist-get processing-info :image-output-type) "png"))
-			 (absprefix (expand-file-name prefix dir))
-			 (linkfile (format "%s_%s.%s" prefix hash imagetype))
-			 (movefile (format "%s_%s.%s" absprefix hash imagetype))
-			 (sep (and block-type "\n\n"))
-			 (link (concat sep "[[file:" linkfile "]]" sep))
-			 (options
-			  (org-combine-plists
-			   org-format-latex-options
-			   `(:foreground ,fg :background ,bg))))
-		    (when msg (message msg cnt))
-		    (unless checkdir-flag ; Ensure the directory exists.
-		      (setq checkdir-flag t)
-		      (let ((todir (file-name-directory absprefix)))
-			(unless (file-directory-p todir)
-			  (make-directory todir t))))
-		    (unless (file-exists-p movefile)
-		      (org-create-formula-image
-		       value movefile options forbuffer processing-type))
-		    (if overlays
-			(progn
-			  (dolist (o (overlays-in beg end))
-			    (when (eq (overlay-get o 'org-overlay-type)
-				      'org-latex-overlay)
-			      (delete-overlay o)))
-			  (org--format-latex-make-overlay beg end movefile imagetype)
-			  (goto-char end))
-		      (delete-region beg end)
-		      (insert
-		       (org-add-props link
-			   (list 'org-latex-src
-				 (replace-regexp-in-string "\"" "" value)
-				 'org-latex-src-embed-type
-				 (if block-type 'paragraph 'character)))))))
-		 ((eq processing-type 'mathml)
-		  ;; Process to MathML.
-		  (unless (org-format-latex-mathml-available-p)
-		    (user-error "LaTeX to MathML converter not configured"))
-		  (cl-incf cnt)
-		  (when msg (message msg cnt))
-		  (goto-char beg)
-		  (delete-region beg end)
-		  (insert (org-format-latex-as-mathml
-			   value block-type prefix dir)))
-		 (t
-		  (error "Unknown conversion process %s for LaTeX fragments"
-			 processing-type)))))))))))
-
-(defun org-create-math-formula (latex-frag &optional mathml-file)
-  "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
-Use `org-latex-to-mathml-convert-command'.  If the conversion is
-sucessful, return the portion between \"<math...> </math>\"
-elements otherwise return nil.  When MATHML-FILE is specified,
-write the results in to that file.  When invoked as an
-interactive command, prompt for LATEX-FRAG, with initial value
-set to the current active region and echo the results for user
-inspection."
-  (interactive (list (let ((frag (when (org-region-active-p)
-				   (buffer-substring-no-properties
-				    (region-beginning) (region-end)))))
-		       (read-string "LaTeX Fragment: " frag nil frag))))
-  (unless latex-frag (user-error "Invalid LaTeX fragment"))
-  (let* ((tmp-in-file
-	  (let ((file (file-relative-name
-		       (make-temp-name (expand-file-name "ltxmathml-in")))))
-	    (write-region latex-frag nil file)
-	    file))
-	 (tmp-out-file (file-relative-name
-			(make-temp-name (expand-file-name  "ltxmathml-out"))))
-	 (cmd (format-spec
-	       org-latex-to-mathml-convert-command
-	       `((?j . ,(and org-latex-to-mathml-jar-file
-			     (shell-quote-argument
-			      (expand-file-name
-			       org-latex-to-mathml-jar-file))))
-		 (?I . ,(shell-quote-argument tmp-in-file))
-		 (?i . ,latex-frag)
-		 (?o . ,(shell-quote-argument tmp-out-file)))))
-	 mathml shell-command-output)
-    (when (called-interactively-p 'any)
-      (unless (org-format-latex-mathml-available-p)
-	(user-error "LaTeX to MathML converter not configured")))
-    (message "Running %s" cmd)
-    (setq shell-command-output (shell-command-to-string cmd))
-    (setq mathml
-	  (when (file-readable-p tmp-out-file)
-	    (with-current-buffer (find-file-noselect tmp-out-file t)
-	      (goto-char (point-min))
-	      (when (re-search-forward
-		     (format "<math[^>]*?%s[^>]*?>\\(.\\|\n\\)*</math>"
-			     (regexp-quote
-			      "xmlns=\"http://www.w3.org/1998/Math/MathML\""))
-		     nil t)
-		(prog1 (match-string 0) (kill-buffer))))))
-    (cond
-     (mathml
-      (setq mathml
-	    (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
-      (when mathml-file
-	(write-region mathml nil mathml-file))
-      (when (called-interactively-p 'any)
-	(message mathml)))
-     ((message "LaTeX to MathML conversion failed")
-      (message shell-command-output)))
-    (delete-file tmp-in-file)
-    (when (file-exists-p tmp-out-file)
-      (delete-file tmp-out-file))
-    mathml))
-
-(defun org-format-latex-as-mathml (latex-frag latex-frag-type
-					      prefix &optional dir)
-  "Use `org-create-math-formula' but check local cache first."
-  (let* ((absprefix (expand-file-name prefix dir))
-	 (print-length nil) (print-level nil)
-	 (formula-id (concat
-		      "formula-"
-		      (sha1
-		       (prin1-to-string
-			(list latex-frag
-			      org-latex-to-mathml-convert-command)))))
-	 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
-	 (formula-cache-dir (file-name-directory formula-cache)))
-
-    (unless (file-directory-p formula-cache-dir)
-      (make-directory formula-cache-dir t))
-
-    (unless (file-exists-p formula-cache)
-      (org-create-math-formula latex-frag formula-cache))
-
-    (if (file-exists-p formula-cache)
-	;; Successful conversion.  Return the link to MathML file.
-	(org-add-props
-	    (format  "[[file:%s]]" (file-relative-name formula-cache dir))
-	    (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
-		  'org-latex-src-embed-type (if latex-frag-type
-						'paragraph 'character)))
-      ;; Failed conversion.  Return the LaTeX fragment verbatim
-      latex-frag)))
-
-(defun org--get-display-dpi ()
-  "Get the DPI of the display.
-The function assumes that the display has the same pixel width in
-the horizontal and vertical directions."
-  (if (display-graphic-p)
-      (round (/ (display-pixel-height)
-		(/ (display-mm-height) 25.4)))
-    (error "Attempt to calculate the dpi of a non-graphic display")))
-
-(defun org-create-formula-image
-    (string tofile options buffer &optional processing-type)
-  "Create an image from LaTeX source using external processes.
-
-The LaTeX STRING is saved to a temporary LaTeX file, then
-converted to an image file by process PROCESSING-TYPE defined in
-`org-preview-latex-process-alist'.  A nil value defaults to
-`org-preview-latex-default-process'.
-
-The generated image file is eventually moved to TOFILE.
-
-The OPTIONS argument controls the size, foreground color and
-background color of the generated image.
-
-When BUFFER non-nil, this function is used for LaTeX previewing.
-Otherwise, it is used to deal with LaTeX snippets showed in
-a HTML file."
-  (let* ((processing-type (or processing-type
-			      org-preview-latex-default-process))
-	 (processing-info
-	  (cdr (assq processing-type org-preview-latex-process-alist)))
-	 (programs (plist-get processing-info :programs))
-	 (error-message (or (plist-get processing-info :message) ""))
-	 (use-xcolor (plist-get processing-info :use-xcolor))
-	 (image-input-type (plist-get processing-info :image-input-type))
-	 (image-output-type (plist-get processing-info :image-output-type))
-	 (post-clean (or (plist-get processing-info :post-clean)
-			 '(".dvi" ".xdv" ".pdf" ".tex" ".aux" ".log"
-			   ".svg" ".png" ".jpg" ".jpeg" ".out")))
-	 (latex-header
-	  (or (plist-get processing-info :latex-header)
-	      (org-latex-make-preamble
-	       (org-export-get-environment (org-export-get-backend 'latex))
-	       org-format-latex-header
-	       'snippet)))
-	 (latex-compiler (plist-get processing-info :latex-compiler))
-	 (image-converter (plist-get processing-info :image-converter))
-	 (tmpdir temporary-file-directory)
-	 (texfilebase (make-temp-name
-		       (expand-file-name "orgtex" tmpdir)))
-	 (texfile (concat texfilebase ".tex"))
-	 (image-size-adjust (or (plist-get processing-info :image-size-adjust)
-				'(1.0 . 1.0)))
-	 (scale (* (if buffer (car image-size-adjust) (cdr image-size-adjust))
-		   (or (plist-get options (if buffer :scale :html-scale)) 1.0)))
-	 (dpi (* scale (if buffer (org--get-display-dpi) 140.0)))
-	 (fg (or (plist-get options (if buffer :foreground :html-foreground))
-		 "Black"))
-	 (bg (or (plist-get options (if buffer :background :html-background))
-		 "Transparent"))
-	 (log-buf (get-buffer-create "*Org Preview LaTeX Output*"))
-	 (resize-mini-windows nil)) ;Fix Emacs flicker when creating image.
-    (dolist (program programs)
-      (org-check-external-command program error-message))
-    (if use-xcolor
-	(progn (if (eq fg 'default)
-		   (setq fg (org-latex-color :foreground))
-		 (setq fg (org-latex-color-format fg)))
-	       (if (eq bg 'default)
-		   (setq bg (org-latex-color :background))
-		 (setq bg (org-latex-color-format
-			   (if (string= bg "Transparent") "white" bg))))
-	       (with-temp-file texfile
-		 (insert latex-header)
-		 (insert "\n\\begin{document}\n"
-			 "\\definecolor{fg}{rgb}{" fg "}\n"
-			 "\\definecolor{bg}{rgb}{" bg "}\n"
-			 "\n\\pagecolor{bg}\n"
-			 "\n{\\color{fg}\n"
-			 string
-			 "\n}\n"
-			 "\n\\end{document}\n")))
-      (if (eq fg 'default)
-	  (setq fg (org-dvipng-color :foreground))
-	(unless (string= fg "Transparent")
-	  (setq fg (org-dvipng-color-format fg))))
-      (if (eq bg 'default)
-	  (setq bg (org-dvipng-color :background))
-	(unless (string= bg "Transparent")
-	  (setq bg (org-dvipng-color-format bg))))
-      (with-temp-file texfile
-	(insert latex-header)
-	(insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
-
-    (let* ((err-msg (format "Please adjust `%s' part of \
-`org-preview-latex-process-alist'."
-			    processing-type))
-	   (image-input-file
-	    (org-compile-file
-	     texfile latex-compiler image-input-type err-msg log-buf))
-	   (image-output-file
-	    (org-compile-file
-	     image-input-file image-converter image-output-type err-msg log-buf
-	     `((?F . ,(shell-quote-argument fg))
-	       (?B . ,(shell-quote-argument bg))
-	       (?D . ,(shell-quote-argument (format "%s" dpi)))
-	       (?S . ,(shell-quote-argument (format "%s" (/ dpi 140.0))))))))
-      (copy-file image-output-file tofile 'replace)
-      (dolist (e post-clean)
-	(when (file-exists-p (concat texfilebase e))
-	  (delete-file (concat texfilebase e))))
-      image-output-file)))
-
-(defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
-  "Fill a LaTeX header template TPL.
-In the template, the following place holders will be recognized:
-
- [DEFAULT-PACKAGES]      \\usepackage statements for DEF-PKG
- [NO-DEFAULT-PACKAGES]   do not include DEF-PKG
- [PACKAGES]              \\usepackage statements for PKG
- [NO-PACKAGES]           do not include PKG
- [EXTRA]                 the string EXTRA
- [NO-EXTRA]              do not include EXTRA
-
-For backward compatibility, if both the positive and the negative place
-holder is missing, the positive one (without the \"NO-\") will be
-assumed to be present at the end of the template.
-DEF-PKG and PKG are assumed to be alists of options/packagename lists.
-EXTRA is a string.
-SNIPPETS-P indicates if this is run to create snippet images for HTML."
-  (let (rpl (end ""))
-    (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
-	(setq rpl (if (or (match-end 1) (not def-pkg))
-		      "" (org-latex-packages-to-string def-pkg snippets-p t))
-	      tpl (replace-match rpl t t tpl))
-      (when def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
-
-    (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
-	(setq rpl (if (or (match-end 1) (not pkg))
-		      "" (org-latex-packages-to-string pkg snippets-p t))
-	      tpl (replace-match rpl t t tpl))
-      (when pkg (setq end
-		      (concat end "\n"
-			      (org-latex-packages-to-string pkg snippets-p)))))
-
-    (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
-	(setq rpl (if (or (match-end 1) (not extra))
-		      "" (concat extra "\n"))
-	      tpl (replace-match rpl t t tpl))
-      (when (and extra (string-match "\\S-" extra))
-	(setq end (concat end "\n" extra))))
-
-    (if (string-match "\\S-" end)
-	(concat tpl "\n" end)
-      tpl)))
-
-(defun org-latex-packages-to-string (pkg &optional snippets-p newline)
-  "Turn an alist of packages into a string with the \\usepackage macros."
-  (setq pkg (mapconcat (lambda(p)
-			 (cond
-			  ((stringp p) p)
-			  ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
-			   (format "%% Package %s omitted" (cadr p)))
-			  ((equal "" (car p))
-			   (format "\\usepackage{%s}" (cadr p)))
-			  (t
-			   (format "\\usepackage[%s]{%s}"
-				   (car p) (cadr p)))))
-		       pkg
-		       "\n"))
-  (if newline (concat pkg "\n") pkg))
-
-(defun org-dvipng-color (attr)
-  "Return a RGB color specification for dvipng."
-  (org-dvipng-color-format (face-attribute 'default attr nil)))
-
-(defun org-dvipng-color-format (color-name)
-  "Convert COLOR-NAME to a RGB color value for dvipng."
-  (apply #'format "rgb %s %s %s"
-	 (mapcar 'org-normalize-color
-		 (color-values color-name))))
-
-(defun org-latex-color (attr)
-  "Return a RGB color for the LaTeX color package."
-  (org-latex-color-format (face-attribute 'default attr nil)))
-
-(defun org-latex-color-format (color-name)
-  "Convert COLOR-NAME to a RGB color value."
-  (apply #'format "%s,%s,%s"
-	 (mapcar 'org-normalize-color
-		 (color-values color-name))))
-
-(defun org-normalize-color (value)
-  "Return string to be used as color value for an RGB component."
-  (format "%g" (/ value 65535.0)))
-
-
-
-;; Image display
-
-(defvar-local org-inline-image-overlays nil)
-
-(defun org-toggle-inline-images (&optional include-linked)
-  "Toggle the display of inline images.
-INCLUDE-LINKED is passed to `org-display-inline-images'."
-  (interactive "P")
-  (if org-inline-image-overlays
-      (progn
-	(org-remove-inline-images)
-	(when (called-interactively-p 'interactive)
-	  (message "Inline image display turned off")))
-    (org-display-inline-images include-linked)
-    (when (called-interactively-p 'interactive)
-      (message (if org-inline-image-overlays
-		   (format "%d images displayed inline"
-			   (length org-inline-image-overlays))
-		 "No images to display inline")))))
-
-(defun org-redisplay-inline-images ()
-  "Refresh the display of inline images."
-  (interactive)
-  (if (not org-inline-image-overlays)
-      (org-toggle-inline-images)
-    (org-toggle-inline-images)
-    (org-toggle-inline-images)))
-
-(defun org-display-inline-images (&optional include-linked refresh beg end)
-  "Display inline images.
-
-An inline image is a link which follows either of these
-conventions:
-
-  1. Its path is a file with an extension matching return value
-     from `image-file-name-regexp' and it has no contents.
-
-  2. Its description consists in a single link of the previous
-     type.
-
-When optional argument INCLUDE-LINKED is non-nil, also links with
-a text description part will be inlined.  This can be nice for
-a quick look at those images, but it does not reflect what
-exported files will look like.
-
-When optional argument REFRESH is non-nil, refresh existing
-images between BEG and END.  This will create new image displays
-only if necessary.  BEG and END default to the buffer
-boundaries."
-  (interactive "P")
-  (when (display-graphic-p)
-    (unless refresh
-      (org-remove-inline-images)
-      (when (fboundp 'clear-image-cache) (clear-image-cache)))
-    (org-with-wide-buffer
-     (goto-char (or beg (point-min)))
-     (let* ((case-fold-search t)
-	    (file-extension-re (image-file-name-regexp))
-	    (link-abbrevs (mapcar #'car
-				  (append org-link-abbrev-alist-local
-					  org-link-abbrev-alist)))
-	    ;; Check absolute, relative file names and explicit
-	    ;; "file:" links.  Also check link abbreviations since
-	    ;; some might expand to "file" links.
-	    (file-types-re (format "[][]\\[\\(?:file\\|[./~]%s\\)"
-				   (if (not link-abbrevs) ""
-				     (format "\\|\\(?:%s:\\)"
-					     (regexp-opt link-abbrevs))))))
-       (while (re-search-forward file-types-re end t)
-	 (let ((link (save-match-data (org-element-context))))
-	   ;; Check if we're at an inline image, i.e., an image file
-	   ;; link without a description (unless INCLUDE-LINKED is
-	   ;; non-nil).
-	   (when (and (equal "file" (org-element-property :type link))
-		      (or include-linked
-			  (null (org-element-contents link)))
-		      (string-match-p file-extension-re
-				      (org-element-property :path link)))
-	     (let ((file (expand-file-name
-			  (org-link-unescape
-			   (org-element-property :path link)))))
-	       (when (file-exists-p file)
-		 (let ((width
-			;; Apply `org-image-actual-width' specifications.
-			(cond
-			 ((not (image-type-available-p 'imagemagick)) nil)
-			 ((eq org-image-actual-width t) nil)
-			 ((listp org-image-actual-width)
-			  (or
-			   ;; First try to find a width among
-			   ;; attributes associated to the paragraph
-			   ;; containing link.
-			   (let ((paragraph
-				  (let ((e link))
-				    (while (and (setq e (org-element-property
-							 :parent e))
-						(not (eq (org-element-type e)
-							 'paragraph))))
-				    e)))
-			     (when paragraph
-			       (save-excursion
-				 (goto-char (org-element-property :begin paragraph))
-				 (when
-				     (re-search-forward
-				      "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
-				      (org-element-property
-				       :post-affiliated paragraph)
-				      t)
-				   (string-to-number (match-string 1))))))
-			   ;; Otherwise, fall-back to provided number.
-			   (car org-image-actual-width)))
-			 ((numberp org-image-actual-width)
-			  org-image-actual-width)))
-		       (old (get-char-property-and-overlay
-			     (org-element-property :begin link)
-			     'org-image-overlay)))
-		   (if (and (car-safe old) refresh)
-		       (image-refresh (overlay-get (cdr old) 'display))
-		     (let ((image (create-image file
-						(and width 'imagemagick)
-						nil
-						:width width)))
-		       (when image
-			 (let ((ov (make-overlay
-				    (org-element-property :begin link)
-				    (progn
-				      (goto-char
-				       (org-element-property :end link))
-				      (skip-chars-backward " \t")
-				      (point)))))
-			   (overlay-put ov 'display image)
-			   (overlay-put ov 'face 'default)
-			   (overlay-put ov 'org-image-overlay t)
-			   (overlay-put
-			    ov 'modification-hooks
-			    (list 'org-display-inline-remove-overlay))
-			   (push ov org-inline-image-overlays)))))))))))))))
-
-(defun org-display-inline-remove-overlay (ov after _beg _end &optional _len)
-  "Remove inline-display overlay if a corresponding region is modified."
-  (let ((inhibit-modification-hooks t))
-    (when (and ov after)
-      (delete ov org-inline-image-overlays)
-      (delete-overlay ov))))
-
-(defun org-remove-inline-images ()
-  "Remove inline display of images."
-  (interactive)
-  (mapc #'delete-overlay org-inline-image-overlays)
-  (setq org-inline-image-overlays nil))
-
-;;;; Key bindings
-
-(defun org-remap (map &rest commands)
-  "In MAP, remap the functions given in COMMANDS.
-COMMANDS is a list of alternating OLDDEF NEWDEF command names."
-  (let (new old)
-    (while commands
-      (setq old (pop commands) new (pop commands))
-      (org-defkey map (vector 'remap old) new))))
-
-;; Outline functions from `outline-mode-prefix-map'
-;; that can be remapped in Org:
-(define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
-(define-key org-mode-map [remap outline-show-subtree] 'org-show-subtree)
-(define-key org-mode-map [remap outline-forward-same-level]
-  'org-forward-heading-same-level)
-(define-key org-mode-map [remap outline-backward-same-level]
-  'org-backward-heading-same-level)
-(define-key org-mode-map [remap outline-show-branches]
-  'org-kill-note-or-show-branches)
-(define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
-(define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
-(define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
-(define-key org-mode-map [remap outline-next-visible-heading]
-  'org-next-visible-heading)
-(define-key org-mode-map [remap outline-previous-visible-heading]
-  'org-previous-visible-heading)
-(define-key org-mode-map [remap show-children] 'org-show-children)
-
-;; Outline functions from `outline-mode-prefix-map' that can not
-;; be remapped in Org:
-
-;; - the column "key binding" shows whether the Outline function is still
-;;   available in Org mode on the same key that it has been bound to in
-;;   Outline mode:
-;;   - "overridden": key used for a different functionality in Org mode
-;;   - else: key still bound to the same Outline function in Org mode
-
-;; | Outline function                   | key binding | Org replacement          |
-;; |------------------------------------+-------------+--------------------------|
-;; | `outline-up-heading'               | `C-c C-u'   | still same function      |
-;; | `outline-move-subtree-up'          | overridden  | better: org-shiftup      |
-;; | `outline-move-subtree-down'        | overridden  | better: org-shiftdown    |
-;; | `show-entry'                       | overridden  | no replacement           |
-;; | `show-branches'                    | `C-c C-k'   | still same function      |
-;; | `show-subtree'                     | overridden  | visibility cycling       |
-;; | `show-all'                         | overridden  | no replacement           |
-;; | `hide-subtree'                     | overridden  | visibility cycling       |
-;; | `hide-body'                        | overridden  | no replacement           |
-;; | `hide-entry'                       | overridden  | visibility cycling       |
-;; | `hide-leaves'                      | overridden  | no replacement           |
-;; | `hide-sublevels'                   | overridden  | no replacement           |
-;; | `hide-other'                       | overridden  | no replacement           |
-
-;; Make `C-c C-x' a prefix key
-(org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
-
-;; TAB key with modifiers
-(org-defkey org-mode-map "\C-i"       'org-cycle)
-(org-defkey org-mode-map [(tab)]      'org-cycle)
-(org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
-(org-defkey org-mode-map "\M-\t" #'pcomplete)
-
-;; The following line is necessary under Suse GNU/Linux
-(org-defkey org-mode-map [S-iso-lefttab]  'org-shifttab)
-(org-defkey org-mode-map [(shift tab)]    'org-shifttab)
-(define-key org-mode-map [backtab] 'org-shifttab)
-
-(org-defkey org-mode-map [(shift return)]   'org-table-copy-down)
-(org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
-(org-defkey org-mode-map (kbd "M-RET") #'org-meta-return)
-
-;; Cursor keys with modifiers
-(org-defkey org-mode-map [(meta left)]  'org-metaleft)
-(org-defkey org-mode-map [(meta right)] 'org-metaright)
-(org-defkey org-mode-map [(meta up)]    'org-metaup)
-(org-defkey org-mode-map [(meta down)]  'org-metadown)
-
-(org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
-(org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
-(org-defkey org-mode-map [(meta shift left)]   'org-shiftmetaleft)
-(org-defkey org-mode-map [(meta shift right)]  'org-shiftmetaright)
-(org-defkey org-mode-map [(meta shift up)]     'org-shiftmetaup)
-(org-defkey org-mode-map [(meta shift down)]   'org-shiftmetadown)
-
-(org-defkey org-mode-map [(shift up)]          'org-shiftup)
-(org-defkey org-mode-map [(shift down)]        'org-shiftdown)
-(org-defkey org-mode-map [(shift left)]        'org-shiftleft)
-(org-defkey org-mode-map [(shift right)]       'org-shiftright)
-
-(org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
-(org-defkey org-mode-map [(control shift left)]  'org-shiftcontrolleft)
-(org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
-(org-defkey org-mode-map [(control shift down)]  'org-shiftcontroldown)
-
-;; Babel keys
-(define-key org-mode-map org-babel-key-prefix org-babel-map)
-(dolist (pair org-babel-key-bindings)
-  (define-key org-babel-map (car pair) (cdr pair)))
-
-;;; Extra keys for tty access.
-;;  We only set them when really needed because otherwise the
-;;  menus don't show the simple keys
-
-(when (or org-use-extra-keys (not window-system))
-  (org-defkey org-mode-map "\C-c\C-xc"    'org-table-copy-down)
-  (org-defkey org-mode-map "\C-c\C-xM"    'org-insert-todo-heading)
-  (org-defkey org-mode-map "\C-c\C-xm"    'org-meta-return)
-  (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
-  (org-defkey org-mode-map [?\e (left)]   'org-metaleft)
-  (org-defkey org-mode-map "\C-c\C-xl"    'org-metaleft)
-  (org-defkey org-mode-map [?\e (right)]  'org-metaright)
-  (org-defkey org-mode-map "\C-c\C-xr"    'org-metaright)
-  (org-defkey org-mode-map [?\e (up)]     'org-metaup)
-  (org-defkey org-mode-map "\C-c\C-xu"    'org-metaup)
-  (org-defkey org-mode-map [?\e (down)]   'org-metadown)
-  (org-defkey org-mode-map "\C-c\C-xd"    'org-metadown)
-  (org-defkey org-mode-map "\C-c\C-xL"    'org-shiftmetaleft)
-  (org-defkey org-mode-map "\C-c\C-xR"    'org-shiftmetaright)
-  (org-defkey org-mode-map "\C-c\C-xU"    'org-shiftmetaup)
-  (org-defkey org-mode-map "\C-c\C-xD"    'org-shiftmetadown)
-  (org-defkey org-mode-map [?\C-c (up)]    'org-shiftup)
-  (org-defkey org-mode-map [?\C-c (down)]  'org-shiftdown)
-  (org-defkey org-mode-map [?\C-c (left)]  'org-shiftleft)
-  (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
-  (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
-  (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
-  (org-defkey org-mode-map [?\e (tab)] #'pcomplete)
-  (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
-  (org-defkey org-mode-map [?\e (shift left)]   'org-shiftmetaleft)
-  (org-defkey org-mode-map [?\e (shift right)]  'org-shiftmetaright)
-  (org-defkey org-mode-map [?\e (shift up)]     'org-shiftmetaup)
-  (org-defkey org-mode-map [?\e (shift down)]   'org-shiftmetadown))
-
-;; All the other keys
-(org-remap org-mode-map
-	   'self-insert-command 'org-self-insert-command
-	   'delete-char 'org-delete-char
-	   'delete-backward-char 'org-delete-backward-char)
-(org-defkey org-mode-map "|" 'org-force-self-insert)
-
-(org-defkey org-mode-map "\C-c\C-a" 'outline-show-all) ; in case allout messed up.
-(org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
-(if (boundp 'narrow-map)
-    (org-defkey narrow-map "s" 'org-narrow-to-subtree)
-  (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
-(if (boundp 'narrow-map)
-    (org-defkey narrow-map "b" 'org-narrow-to-block)
-  (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
-(if (boundp 'narrow-map)
-    (org-defkey narrow-map "e" 'org-narrow-to-element)
-  (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
-(org-defkey org-mode-map "\C-\M-t"  'org-transpose-element)
-(org-defkey org-mode-map "\M-}"     'org-forward-element)
-(org-defkey org-mode-map "\M-{"     'org-backward-element)
-(org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
-(org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
-(org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
-(org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
-(org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
-(org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
-(org-defkey org-mode-map "\C-c$"    'org-archive-subtree)
-(org-defkey org-mode-map "\C-c\C-x\C-s" 'org-archive-subtree)
-(org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
-(org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
-(org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
-(org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
-(org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
-(org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
-(org-defkey org-mode-map "\C-c\C-j" 'org-goto)
-(org-defkey org-mode-map "\C-c\C-t" 'org-todo)
-(org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
-(org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
-(org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
-(org-defkey org-mode-map "\C-c;"    'org-toggle-comment)
-(org-defkey org-mode-map "\C-c\C-w" 'org-refile)
-(org-defkey org-mode-map "\C-c\M-w" 'org-copy)
-(org-defkey org-mode-map "\C-c/"    'org-sparse-tree)   ; Minor-mode reserved
-(org-defkey org-mode-map "\C-c\\"   'org-match-sparse-tree) ; Minor-mode res.
-(org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
-(org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
-(org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
-(org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
-(org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
-(org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
-(org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
-(org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
-(org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
-(org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
-(org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
-(org-defkey org-mode-map "\C-c%"    'org-mark-ring-push)
-(org-defkey org-mode-map "\C-c&"    'org-mark-ring-goto)
-(org-defkey org-mode-map "\C-c\C-z" 'org-add-note)  ; Alternative binding
-(org-defkey org-mode-map "\C-c."    'org-time-stamp)  ; Minor-mode reserved
-(org-defkey org-mode-map "\C-c!"    'org-time-stamp-inactive) ; Minor-mode r.
-(org-defkey org-mode-map "\C-c,"    'org-priority)    ; Minor-mode reserved
-(org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
-(org-defkey org-mode-map "\C-c>"    'org-goto-calendar)
-(org-defkey org-mode-map "\C-c<"    'org-date-from-calendar)
-(org-defkey org-mode-map [(control ?,)]     'org-cycle-agenda-files)
-(org-defkey org-mode-map [(control ?\')]     'org-cycle-agenda-files)
-(org-defkey org-mode-map "\C-c["    'org-agenda-file-to-front)
-(org-defkey org-mode-map "\C-c]"    'org-remove-file)
-(org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
-(org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
-(org-defkey org-mode-map "\C-c-"    'org-ctrl-c-minus)
-(org-defkey org-mode-map "\C-c*"    'org-ctrl-c-star)
-(org-defkey org-mode-map "\C-c^"    'org-sort)
-(org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
-(org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
-(org-defkey org-mode-map "\C-c#"    'org-update-statistics-cookies)
-(org-defkey org-mode-map [remap open-line] 'org-open-line)
-(org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
-(org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
-(org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
-(org-defkey org-mode-map "\M-^"     'org-delete-indentation)
-(org-defkey org-mode-map "\C-m"     'org-return)
-(org-defkey org-mode-map "\C-j"     'org-return-indent)
-(org-defkey org-mode-map "\C-c?"    'org-table-field-info)
-(org-defkey org-mode-map "\C-c "    'org-table-blank-field)
-(org-defkey org-mode-map "\C-c+"    'org-table-sum)
-(org-defkey org-mode-map "\C-c="    'org-table-eval-formula)
-(org-defkey org-mode-map "\C-c'"    'org-edit-special)
-(org-defkey org-mode-map "\C-c`"    'org-table-edit-field)
-(org-defkey org-mode-map "\C-c\"a"  'orgtbl-ascii-plot)
-(org-defkey org-mode-map "\C-c\"g"  'org-plot/gnuplot)
-(org-defkey org-mode-map "\C-c|"    'org-table-create-or-convert-from-region)
-(org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
-(org-defkey org-mode-map "\C-c~"    'org-table-create-with-table.el)
-(org-defkey org-mode-map "\C-c\C-a" 'org-attach)
-(org-defkey org-mode-map "\C-c}"    'org-table-toggle-coordinate-overlays)
-(org-defkey org-mode-map "\C-c{"    'org-table-toggle-formula-debugger)
-(org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
-(org-defkey org-mode-map "\C-c:"    'org-toggle-fixed-width)
-(org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
-(org-defkey org-mode-map "\C-c\C-xf"    'org-footnote-action)
-(org-defkey org-mode-map "\C-c\C-x\C-mg"    'org-mobile-pull)
-(org-defkey org-mode-map "\C-c\C-x\C-mp"    'org-mobile-push)
-(org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
-(org-defkey org-mode-map "\M-h" 'org-mark-element)
-(org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
-;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
-
-(org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
-(org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
-(org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
-
-(org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
-(org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
-(org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
-(org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
-(org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
-(org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
-(org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
-(org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
-(org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
-(org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
-(org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
-(org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
-(org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
-(org-defkey org-mode-map "\C-c\C-x\\"   'org-toggle-pretty-entities)
-(org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
-(org-defkey org-mode-map "\C-c\C-xp"    'org-set-property)
-(org-defkey org-mode-map "\C-c\C-xP"    'org-set-property-and-value)
-(org-defkey org-mode-map "\C-c\C-xe"    'org-set-effort)
-(org-defkey org-mode-map "\C-c\C-xE"    'org-inc-effort)
-(org-defkey org-mode-map "\C-c\C-xo"    'org-toggle-ordered-property)
-(org-defkey org-mode-map "\C-c\C-xi"    'org-columns-insert-dblock)
-(org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
-
-(org-defkey org-mode-map "\C-c\C-x."    'org-timer)
-(org-defkey org-mode-map "\C-c\C-x-"    'org-timer-item)
-(org-defkey org-mode-map "\C-c\C-x0"    'org-timer-start)
-(org-defkey org-mode-map "\C-c\C-x_"    'org-timer-stop)
-(org-defkey org-mode-map "\C-c\C-x,"    'org-timer-pause-or-continue)
-
-(define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
-
-(define-key org-mode-map "\C-c\C-x!" 'org-reload)
-
-(define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
-(define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
-
-(define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
-
-
-(defconst org-speed-commands-default
-  '(
-    ("Outline Navigation")
-    ("n" . (org-speed-move-safe 'org-next-visible-heading))
-    ("p" . (org-speed-move-safe 'org-previous-visible-heading))
-    ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
-    ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
-    ("F" . org-next-block)
-    ("B" . org-previous-block)
-    ("u" . (org-speed-move-safe 'outline-up-heading))
-    ("j" . org-goto)
-    ("g" . (org-refile t))
-    ("Outline Visibility")
-    ("c" . org-cycle)
-    ("C" . org-shifttab)
-    (" " . org-display-outline-path)
-    ("s" . org-narrow-to-subtree)
-    ("=" . org-columns)
-    ("Outline Structure Editing")
-    ("U" . org-metaup)
-    ("D" . org-metadown)
-    ("r" . org-metaright)
-    ("l" . org-metaleft)
-    ("R" . org-shiftmetaright)
-    ("L" . org-shiftmetaleft)
-    ("i" . (progn (forward-char 1) (call-interactively
-				    'org-insert-heading-respect-content)))
-    ("^" . org-sort)
-    ("w" . org-refile)
-    ("a" . org-archive-subtree-default-with-confirmation)
-    ("@" . org-mark-subtree)
-    ("#" . org-toggle-comment)
-    ("Clock Commands")
-    ("I" . org-clock-in)
-    ("O" . org-clock-out)
-    ("Meta Data Editing")
-    ("t" . org-todo)
-    ("," . (org-priority))
-    ("0" . (org-priority ?\ ))
-    ("1" . (org-priority ?A))
-    ("2" . (org-priority ?B))
-    ("3" . (org-priority ?C))
-    (":" . org-set-tags-command)
-    ("e" . org-set-effort)
-    ("E" . org-inc-effort)
-    ("W" . (lambda(m) (interactive "sMinutes before warning: ")
-	     (org-entry-put (point) "APPT_WARNTIME" m)))
-    ("Agenda Views etc")
-    ("v" . org-agenda)
-    ("/" . org-sparse-tree)
-    ("Misc")
-    ("o" . org-open-at-point)
-    ("?" . org-speed-command-help)
-    ("<" . (org-agenda-set-restriction-lock 'subtree))
-    (">" . (org-agenda-remove-restriction-lock))
-    )
-  "The default speed commands.")
-
-(defun org-print-speed-command (e)
-  (if (> (length (car e)) 1)
-      (progn
-	(princ "\n")
-	(princ (car e))
-	(princ "\n")
-	(princ (make-string (length (car e)) ?-))
-	(princ "\n"))
-    (princ (car e))
-    (princ "   ")
-    (if (symbolp (cdr e))
-	(princ (symbol-name (cdr e)))
-      (prin1 (cdr e)))
-    (princ "\n")))
-
-(defun org-speed-command-help ()
-  "Show the available speed commands."
-  (interactive)
-  (if (not org-use-speed-commands)
-      (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
-    (with-output-to-temp-buffer "*Help*"
-      (princ "User-defined Speed commands\n===========================\n")
-      (mapc #'org-print-speed-command org-speed-commands-user)
-      (princ "\n")
-      (princ "Built-in Speed commands\n=======================\n")
-      (mapc #'org-print-speed-command org-speed-commands-default))
-    (with-current-buffer "*Help*"
-      (setq truncate-lines t))))
-
-(defun org-speed-move-safe (cmd)
-  "Execute CMD, but make sure that the cursor always ends up in a headline.
-If not, return to the original position and throw an error."
-  (interactive)
-  (let ((pos (point)))
-    (call-interactively cmd)
-    (unless (and (bolp) (org-at-heading-p))
-      (goto-char pos)
-      (error "Boundary reached while executing %s" cmd))))
-
-(defvar org-self-insert-command-undo-counter 0)
-
-(defvar org-table-auto-blank-field) ; defined in org-table.el
-(defvar org-speed-command nil)
-
-(defun org-speed-command-activate (keys)
-  "Hook for activating single-letter speed commands.
-`org-speed-commands-default' specifies a minimal command set.
-Use `org-speed-commands-user' for further customization."
-  (when (or (and (bolp) (looking-at org-outline-regexp))
-	    (and (functionp org-use-speed-commands)
-		 (funcall org-use-speed-commands)))
-    (cdr (assoc keys (append org-speed-commands-user
-			     org-speed-commands-default)))))
-
-(defun org-babel-speed-command-activate (keys)
-  "Hook for activating single-letter code block commands."
-  (when (and (bolp) (looking-at org-babel-src-block-regexp))
-    (cdr (assoc keys org-babel-key-bindings))))
-
-(defcustom org-speed-command-hook
-  '(org-speed-command-activate org-babel-speed-command-activate)
-  "Hook for activating speed commands at strategic locations.
-Hook functions are called in sequence until a valid handler is
-found.
-
-Each hook takes a single argument, a user-pressed command key
-which is also a `self-insert-command' from the global map.
-
-Within the hook, examine the cursor position and the command key
-and return nil or a valid handler as appropriate.  Handler could
-be one of an interactive command, a function, or a form.
-
-Set `org-use-speed-commands' to non-nil value to enable this
-hook.  The default setting is `org-speed-command-activate'."
-  :group 'org-structure
-  :version "24.1"
-  :type 'hook)
-
-(defun org-self-insert-command (N)
-  "Like `self-insert-command', use overwrite-mode for whitespace in tables.
-If the cursor is in a table looking at whitespace, the whitespace is
-overwritten, and the table is not marked as requiring realignment."
-  (interactive "p")
-  (org-check-before-invisible-edit 'insert)
-  (cond
-   ((and org-use-speed-commands
-	 (let ((kv (this-command-keys-vector)))
-	   (setq org-speed-command
-		 (run-hook-with-args-until-success
-		  'org-speed-command-hook
-		  (make-string 1 (aref kv (1- (length kv))))))))
-    (cond
-     ((commandp org-speed-command)
-      (setq this-command org-speed-command)
-      (call-interactively org-speed-command))
-     ((functionp org-speed-command)
-      (funcall org-speed-command))
-     ((and org-speed-command (listp org-speed-command))
-      (eval org-speed-command))
-     (t (let (org-use-speed-commands)
-	  (call-interactively 'org-self-insert-command)))))
-   ((and
-     (org-at-table-p)
-     (eq N 1)
-     (not (org-region-active-p))
-     (progn
-       ;; Check if we blank the field, and if that triggers align.
-       (and (featurep 'org-table) org-table-auto-blank-field
-	    (memq last-command
-		  '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
-	    (if (or (eq (char-after) ?\s) (looking-at "[^|\n]*  |"))
-		;; Got extra space, this field does not determine
-		;; column width.
-		(let (org-table-may-need-update) (org-table-blank-field))
-	      ;; No extra space, this field may determine column
-	      ;; width.
-	      (org-table-blank-field)))
-       t)
-     (looking-at "[^|\n]* \\( \\)|"))
-    ;; There is room for insertion without re-aligning the table.
-    (delete-region (match-beginning 1) (match-end 1))
-    (self-insert-command N))
-   (t
-    (setq org-table-may-need-update t)
-    (self-insert-command N)
-    (org-fix-tags-on-the-fly)
-    (when org-self-insert-cluster-for-undo
-      (if (not (eq last-command 'org-self-insert-command))
-	  (setq org-self-insert-command-undo-counter 1)
-	(if (>= org-self-insert-command-undo-counter 20)
-	    (setq org-self-insert-command-undo-counter 1)
-	  (and (> org-self-insert-command-undo-counter 0)
-	       buffer-undo-list (listp buffer-undo-list)
-	       (not (cadr buffer-undo-list)) ; remove nil entry
-	       (setcdr buffer-undo-list (cddr buffer-undo-list)))
-	  (setq org-self-insert-command-undo-counter
-		(1+ org-self-insert-command-undo-counter))))))))
-
-(defun org-check-before-invisible-edit (kind)
-  "Check is editing if kind KIND would be dangerous with invisible text around.
-The detailed reaction depends on the user option `org-catch-invisible-edits'."
-  ;; First, try to get out of here as quickly as possible, to reduce overhead
-  (when (and org-catch-invisible-edits
-	     (or (not (boundp 'visible-mode)) (not visible-mode))
-	     (or (get-char-property (point) 'invisible)
-		 (get-char-property (max (point-min) (1- (point))) 'invisible)))
-    ;; OK, we need to take a closer look.  Do not consider
-    ;; invisibility obtained through text properties (e.g., link
-    ;; fontification), as it cannot be toggled.
-    (let* ((invisible-at-point
-	    (pcase (get-char-property-and-overlay (point) 'invisible)
-	      (`(,_ . ,(and (pred overlayp) o)) o)))
-	   ;; Assume that point cannot land in the middle of an
-	   ;; overlay, or between two overlays.
-	   (invisible-before-point
-	    (and (not invisible-at-point)
-		 (not (bobp))
-		 (pcase (get-char-property-and-overlay (1- (point)) 'invisible)
-		   (`(,_ . ,(and (pred overlayp) o)) o))))
-	   (border-and-ok-direction
-	    (or
-	     ;; Check if we are acting predictably before invisible
-	     ;; text.
-	     (and invisible-at-point
-		  (memq kind '(insert delete-backward)))
-	     ;; Check if we are acting predictably after invisible text
-	     ;; This works not well, and I have turned it off.  It seems
-	     ;; better to always show and stop after invisible text.
-	     ;; (and (not invisible-at-point) invisible-before-point
-	     ;;  (memq kind '(insert delete)))
-	     )))
-      (when (or invisible-at-point invisible-before-point)
-	(when (eq org-catch-invisible-edits 'error)
-	  (user-error "Editing in invisible areas is prohibited, make them visible first"))
-	(if (and org-custom-properties-overlays
-		 (y-or-n-p "Display invisible properties in this buffer? "))
-	    (org-toggle-custom-properties-visibility)
-	  ;; Make the area visible
-	  (save-excursion
-	    (when invisible-before-point
-	      (goto-char
-	       (previous-single-char-property-change (point) 'invisible)))
-	    ;; Remove whatever overlay is currently making yet-to-be
-	    ;; edited text invisible.  Also remove nested invisibility
-	    ;; related overlays.
-	    (delete-overlay (or invisible-at-point invisible-before-point))
-	    (let ((origin (if invisible-at-point (point) (1- (point)))))
-	      (while (pcase (get-char-property-and-overlay origin 'invisible)
-		       (`(,_ . ,(and (pred overlayp) o))
-			(delete-overlay o)
-			t)))))
-	  (cond
-	   ((eq org-catch-invisible-edits 'show)
-	    ;; That's it, we do the edit after showing
-	    (message
-	     "Unfolding invisible region around point before editing")
-	    (sit-for 1))
-	   ((and (eq org-catch-invisible-edits 'smart)
-		 border-and-ok-direction)
-	    (message "Unfolding invisible region around point before editing"))
-	   (t
-	    ;; Don't do the edit, make the user repeat it in full visibility
-	    (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
-
-(defun org-fix-tags-on-the-fly ()
-  "Align tags in headline at point.
-Unlike to `org-set-tags', it ignores region and sorting."
-  (when (and (eq (char-after (line-beginning-position)) ?*) ;short-circuit
-	     (org-at-heading-p))
-    (let ((org-ignore-region t)
-	  (org-tags-sort-function nil))
-      (org-set-tags nil t))))
-
-(defun org-delete-backward-char (N)
-  "Like `delete-backward-char', insert whitespace at field end in tables.
-When deleting backwards, in tables this function will insert whitespace in
-front of the next \"|\" separator, to keep the table aligned.  The table will
-still be marked for re-alignment if the field did fill the entire column,
-because, in this case the deletion might narrow the column."
-  (interactive "p")
-  (save-match-data
-    (org-check-before-invisible-edit 'delete-backward)
-    (if (and (org-at-table-p)
-	     (eq N 1)
-	     (not (org-region-active-p))
-	     (string-match "|" (buffer-substring (point-at-bol) (point)))
-	     (looking-at ".*?|"))
-	(let ((pos (point))
-	      (noalign (looking-at "[^|\n\r]*  |"))
-	      (c org-table-may-need-update))
-	  (backward-delete-char N)
-	  (unless overwrite-mode
-	    (skip-chars-forward "^|")
-	    (insert " ")
-	    (goto-char (1- pos)))
-	  ;; noalign: if there were two spaces at the end, this field
-	  ;; does not determine the width of the column.
-	  (when noalign (setq org-table-may-need-update c)))
-      (backward-delete-char N)
-      (org-fix-tags-on-the-fly))))
-
-(defun org-delete-char (N)
-  "Like `delete-char', but insert whitespace at field end in tables.
-When deleting characters, in tables this function will insert whitespace in
-front of the next \"|\" separator, to keep the table aligned.  The table will
-still be marked for re-alignment if the field did fill the entire column,
-because, in this case the deletion might narrow the column."
-  (interactive "p")
-  (save-match-data
-    (org-check-before-invisible-edit 'delete)
-    (if (and (org-at-table-p)
-	     (not (bolp))
-	     (not (= (char-after) ?|))
-	     (eq N 1))
-	(if (looking-at ".*?|")
-	    (let ((pos (point))
-		  (noalign (looking-at "[^|\n\r]*  |"))
-		  (c org-table-may-need-update))
-	      (replace-match
-	       (concat (substring (match-string 0) 1 -1) " |") nil t)
-	      (goto-char pos)
-	      ;; noalign: if there were two spaces at the end, this field
-	      ;; does not determine the width of the column.
-	      (when noalign (setq org-table-may-need-update c)))
-	  (delete-char N))
-      (delete-char N)
-      (org-fix-tags-on-the-fly))))
-
-;; Make `delete-selection-mode' work with Org mode and Orgtbl mode
-(put 'org-self-insert-command 'delete-selection
-     (lambda ()
-       (not (run-hook-with-args-until-success
-             'self-insert-uses-region-functions))))
-(put 'orgtbl-self-insert-command 'delete-selection
-     (lambda ()
-       (not (run-hook-with-args-until-success
-             'self-insert-uses-region-functions))))
-(put 'org-delete-char 'delete-selection 'supersede)
-(put 'org-delete-backward-char 'delete-selection 'supersede)
-(put 'org-yank 'delete-selection 'yank)
-
-;; Make `flyspell-mode' delay after some commands
-(put 'org-self-insert-command 'flyspell-delayed t)
-(put 'orgtbl-self-insert-command 'flyspell-delayed t)
-(put 'org-delete-char 'flyspell-delayed t)
-(put 'org-delete-backward-char 'flyspell-delayed t)
-
-;; Make pabbrev-mode expand after Org mode commands
-(put 'org-self-insert-command 'pabbrev-expand-after-command t)
-(put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
-
-(defun org-transpose-words ()
-  "Transpose words for Org.
-This uses the `org-mode-transpose-word-syntax-table' syntax
-table, which interprets characters in `org-emphasis-alist' as
-word constituents."
-  (interactive)
-  (with-syntax-table org-mode-transpose-word-syntax-table
-    (call-interactively 'transpose-words)))
-(org-remap org-mode-map 'transpose-words 'org-transpose-words)
-
-(defvar org-ctrl-c-ctrl-c-hook nil
-  "Hook for functions attaching themselves to `C-c C-c'.
-
-This can be used to add additional functionality to the C-c C-c
-key which executes context-dependent commands.  This hook is run
-before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
-run after the last test.
-
-Each function will be called with no arguments.  The function
-must check if the context is appropriate for it to act.  If yes,
-it should do its thing and then return a non-nil value.  If the
-context is wrong, just do nothing and return nil.")
-
-(defvar org-ctrl-c-ctrl-c-final-hook nil
-  "Hook for functions attaching themselves to `C-c C-c'.
-
-This can be used to add additional functionality to the C-c C-c
-key which executes context-dependent commands.  This hook is run
-after any other test, while `org-ctrl-c-ctrl-c-hook' is run
-before the first test.
-
-Each function will be called with no arguments.  The function
-must check if the context is appropriate for it to act.  If yes,
-it should do its thing and then return a non-nil value.  If the
-context is wrong, just do nothing and return nil.")
-
-(defvar org-tab-first-hook nil
-  "Hook for functions to attach themselves to TAB.
-See `org-ctrl-c-ctrl-c-hook' for more information.
-This hook runs as the first action when TAB is pressed, even before
-`org-cycle' messes around with the `outline-regexp' to cater for
-inline tasks and plain list item folding.
-If any function in this hook returns t, any other actions that
-would have been caused by TAB (such as table field motion or visibility
-cycling) will not occur.")
-
-(defvar org-tab-after-check-for-table-hook nil
-  "Hook for functions to attach themselves to TAB.
-See `org-ctrl-c-ctrl-c-hook' for more information.
-This hook runs after it has been established that the cursor is not in a
-table, but before checking if the cursor is in a headline or if global cycling
-should be done.
-If any function in this hook returns t, not other actions like visibility
-cycling will be done.")
-
-(defvar org-tab-after-check-for-cycling-hook nil
-  "Hook for functions to attach themselves to TAB.
-See `org-ctrl-c-ctrl-c-hook' for more information.
-This hook runs after it has been established that not table field motion and
-not visibility should be done because of current context.  This is probably
-the place where a package like yasnippets can hook in.")
-
-(defvar org-tab-before-tab-emulation-hook nil
-  "Hook for functions to attach themselves to TAB.
-See `org-ctrl-c-ctrl-c-hook' for more information.
-This hook runs after every other options for TAB have been exhausted, but
-before indentation and \t insertion takes place.")
-
-(defvar org-metaleft-hook nil
-  "Hook for functions attaching themselves to `M-left'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-metaright-hook nil
-  "Hook for functions attaching themselves to `M-right'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-metaup-hook nil
-  "Hook for functions attaching themselves to `M-up'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-metadown-hook nil
-  "Hook for functions attaching themselves to `M-down'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftmetaleft-hook nil
-  "Hook for functions attaching themselves to `M-S-left'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftmetaright-hook nil
-  "Hook for functions attaching themselves to `M-S-right'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftmetaup-hook nil
-  "Hook for functions attaching themselves to `M-S-up'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftmetadown-hook nil
-  "Hook for functions attaching themselves to `M-S-down'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-metareturn-hook nil
-  "Hook for functions attaching themselves to `M-RET'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftup-hook nil
-  "Hook for functions attaching themselves to `S-up'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftup-final-hook nil
-  "Hook for functions attaching themselves to `S-up'.
-This one runs after all other options except shift-select have been excluded.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftdown-hook nil
-  "Hook for functions attaching themselves to `S-down'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftdown-final-hook nil
-  "Hook for functions attaching themselves to `S-down'.
-This one runs after all other options except shift-select have been excluded.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftleft-hook nil
-  "Hook for functions attaching themselves to `S-left'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftleft-final-hook nil
-  "Hook for functions attaching themselves to `S-left'.
-This one runs after all other options except shift-select have been excluded.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftright-hook nil
-  "Hook for functions attaching themselves to `S-right'.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-(defvar org-shiftright-final-hook nil
-  "Hook for functions attaching themselves to `S-right'.
-This one runs after all other options except shift-select have been excluded.
-See `org-ctrl-c-ctrl-c-hook' for more information.")
-
-(defun org-modifier-cursor-error ()
-  "Throw an error, a modified cursor command was applied in wrong context."
-  (user-error "This command is active in special context like tables, headlines or items"))
-
-(defun org-shiftselect-error ()
-  "Throw an error because Shift-Cursor command was applied in wrong context."
-  (if (and (boundp 'shift-select-mode) shift-select-mode)
-      (user-error "To use shift-selection with Org mode, customize `org-support-shift-select'")
-    (user-error "This command works only in special context like headlines or timestamps")))
-
-(defun org-call-for-shift-select (cmd)
-  (let ((this-command-keys-shift-translated t))
-    (call-interactively cmd)))
-
-(defun org-shifttab (&optional arg)
-  "Global visibility cycling or move to previous table field.
-Call `org-table-previous-field' within a table.
-When ARG is nil, cycle globally through visibility states.
-When ARG is a numeric prefix, show contents of this level."
-  (interactive "P")
-  (cond
-   ((org-at-table-p) (call-interactively 'org-table-previous-field))
-   ((integerp arg)
-    (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
-      (message "Content view to level: %d" arg)
-      (org-content (prefix-numeric-value arg2))
-      (org-cycle-show-empty-lines t)
-      (setq org-cycle-global-status 'overview)))
-   (t (call-interactively 'org-global-cycle))))
-
-(defun org-shiftmetaleft ()
-  "Promote subtree or delete table column.
-Calls `org-promote-subtree', `org-outdent-item-tree', or
-`org-table-delete-column', depending on context.  See the
-individual commands for more information."
-  (interactive)
-  (cond
-   ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
-   ((org-at-table-p) (call-interactively 'org-table-delete-column))
-   ((org-at-heading-p) (call-interactively 'org-promote-subtree))
-   ((if (not (org-region-active-p)) (org-at-item-p)
-      (save-excursion (goto-char (region-beginning))
-		      (org-at-item-p)))
-    (call-interactively 'org-outdent-item-tree))
-   (t (org-modifier-cursor-error))))
-
-(defun org-shiftmetaright ()
-  "Demote subtree or insert table column.
-Calls `org-demote-subtree', `org-indent-item-tree', or
-`org-table-insert-column', depending on context.  See the
-individual commands for more information."
-  (interactive)
-  (cond
-   ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
-   ((org-at-table-p) (call-interactively 'org-table-insert-column))
-   ((org-at-heading-p) (call-interactively 'org-demote-subtree))
-   ((if (not (org-region-active-p)) (org-at-item-p)
-      (save-excursion (goto-char (region-beginning))
-		      (org-at-item-p)))
-    (call-interactively 'org-indent-item-tree))
-   (t (org-modifier-cursor-error))))
-
-(defun org-shiftmetaup (&optional _arg)
-  "Drag the line at point up.
-In a table, kill the current row.
-On a clock timestamp, update the value of the timestamp like `S-<up>'
-but also adjust the previous clocked item in the clock history.
-Everywhere else, drag the line at point up."
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
-   ((org-at-table-p) (call-interactively 'org-table-kill-row))
-   ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
-			   (call-interactively 'org-timestamp-up)))
-   (t (call-interactively 'org-drag-line-backward))))
-
-(defun org-shiftmetadown (&optional _arg)
-  "Drag the line at point down.
-In a table, insert an empty row at the current line.
-On a clock timestamp, update the value of the timestamp like `S-<down>'
-but also adjust the previous clocked item in the clock history.
-Everywhere else, drag the line at point down."
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
-   ((org-at-table-p) (call-interactively 'org-table-insert-row))
-   ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
-			   (call-interactively 'org-timestamp-down)))
-   (t (call-interactively 'org-drag-line-forward))))
-
-(defsubst org-hidden-tree-error ()
-  (user-error
-   "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
-
-(defun org-metaleft (&optional _arg)
-  "Promote heading, list item at point or move table column left.
-
-Calls `org-do-promote', `org-outdent-item' or `org-table-move-column',
-depending on context.  With no specific context, calls the Emacs
-default `backward-word'.  See the individual commands for more
-information.
-
-This function runs the hook `org-metaleft-hook' as a first step,
-and returns at first non-nil value."
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-metaleft-hook))
-   ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
-   ((org-with-limited-levels
-     (or (org-at-heading-p)
-	 (and (org-region-active-p)
-	      (save-excursion
-		(goto-char (region-beginning))
-		(org-at-heading-p)))))
-    (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
-    (call-interactively 'org-do-promote))
-   ;; At an inline task.
-   ((org-at-heading-p)
-    (call-interactively 'org-inlinetask-promote))
-   ((or (org-at-item-p)
-	(and (org-region-active-p)
-	     (save-excursion
-	       (goto-char (region-beginning))
-	       (org-at-item-p))))
-    (when (org-check-for-hidden 'items) (org-hidden-tree-error))
-    (call-interactively 'org-outdent-item))
-   (t (call-interactively 'backward-word))))
-
-(defun org-metaright (&optional _arg)
-  "Demote heading, list item at point or move table column right.
-
-In front of a drawer or a block keyword, indent it correctly.
-
-Calls `org-do-demote', `org-indent-item', `org-table-move-column',
-`org-indent-drawer' or `org-indent-block' depending on context.
-With no specific context, calls the Emacs default `forward-word'.
-See the individual commands for more information.
-
-This function runs the hook `org-metaright-hook' as a first step,
-and returns at first non-nil value."
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-metaright-hook))
-   ((org-at-table-p) (call-interactively 'org-table-move-column))
-   ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
-   ((org-at-block-p) (call-interactively 'org-indent-block))
-   ((org-with-limited-levels
-     (or (org-at-heading-p)
-	 (and (org-region-active-p)
-	      (save-excursion
-		(goto-char (region-beginning))
-		(org-at-heading-p)))))
-    (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
-    (call-interactively 'org-do-demote))
-   ;; At an inline task.
-   ((org-at-heading-p)
-    (call-interactively 'org-inlinetask-demote))
-   ((or (org-at-item-p)
-	(and (org-region-active-p)
-	     (save-excursion
-	       (goto-char (region-beginning))
-	       (org-at-item-p))))
-    (when (org-check-for-hidden 'items) (org-hidden-tree-error))
-    (call-interactively 'org-indent-item))
-   (t (call-interactively 'forward-word))))
-
-(defun org-check-for-hidden (what)
-  "Check if there are hidden headlines/items in the current visual line.
-WHAT can be either `headlines' or `items'.  If the current line is
-an outline or item heading and it has a folded subtree below it,
-this function returns t, nil otherwise."
-  (let ((re (cond
-	     ((eq what 'headlines) org-outline-regexp-bol)
-	     ((eq what 'items) (org-item-beginning-re))
-	     (t (error "This should not happen"))))
-	beg end)
-    (save-excursion
-      (catch 'exit
-	(unless (org-region-active-p)
-	  (setq beg (point-at-bol))
-	  (beginning-of-line 2)
-	  (while (and (not (eobp)) ;; this is like `next-line'
-		      (get-char-property (1- (point)) 'invisible))
-	    (beginning-of-line 2))
-	  (setq end (point))
-	  (goto-char beg)
-	  (goto-char (point-at-eol))
-	  (setq end (max end (point)))
-	  (while (re-search-forward re end t)
-	    (when (get-char-property (match-beginning 0) 'invisible)
-	      (throw 'exit t))))
-	nil))))
-
-(defun org-metaup (&optional _arg)
-  "Move subtree up or move table row up.
-Calls `org-move-subtree-up' or `org-table-move-row' or
-`org-move-item-up', depending on context.  See the individual commands
-for more information."
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-metaup-hook))
-   ((org-region-active-p)
-    (let* ((a (min (region-beginning) (region-end)))
-	   (b (1- (max (region-beginning) (region-end))))
-	   (c (save-excursion (goto-char a)
-			      (move-beginning-of-line 0)))
-	   (d (save-excursion (goto-char a)
-			      (move-end-of-line 0) (point))))
-      (transpose-regions a b c d)
-      (goto-char c)))
-   ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
-   ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
-   ((org-at-item-p) (call-interactively 'org-move-item-up))
-   (t (org-drag-element-backward))))
-
-(defun org-metadown (&optional _arg)
-  "Move subtree down or move table row down.
-Calls `org-move-subtree-down' or `org-table-move-row' or
-`org-move-item-down', depending on context.  See the individual
-commands for more information."
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-metadown-hook))
-   ((org-region-active-p)
-    (let* ((a (min (region-beginning) (region-end)))
-	   (b (max (region-beginning) (region-end)))
-	   (c (save-excursion (goto-char b)
-			      (move-beginning-of-line 1)))
-	   (d (save-excursion (goto-char b)
-			      (move-end-of-line 1) (1+ (point)))))
-      (transpose-regions a b c d)
-      (goto-char d)))
-   ((org-at-table-p) (call-interactively 'org-table-move-row))
-   ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
-   ((org-at-item-p) (call-interactively 'org-move-item-down))
-   (t (org-drag-element-forward))))
-
-(defun org-shiftup (&optional arg)
-  "Increase item in timestamp or increase priority of current headline.
-Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
-depending on context.  See the individual commands for more information."
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-shiftup-hook))
-   ((and org-support-shift-select (org-region-active-p))
-    (org-call-for-shift-select 'previous-line))
-   ((org-at-timestamp-p 'lax)
-    (call-interactively (if org-edit-timestamp-down-means-later
-			    'org-timestamp-down 'org-timestamp-up)))
-   ((and (not (eq org-support-shift-select 'always))
-	 org-enable-priority-commands
-	 (org-at-heading-p))
-    (call-interactively 'org-priority-up))
-   ((and (not org-support-shift-select) (org-at-item-p))
-    (call-interactively 'org-previous-item))
-   ((org-clocktable-try-shift 'up arg))
-   ((run-hook-with-args-until-success 'org-shiftup-final-hook))
-   (org-support-shift-select
-    (org-call-for-shift-select 'previous-line))
-   (t (org-shiftselect-error))))
-
-(defun org-shiftdown (&optional arg)
-  "Decrease item in timestamp or decrease priority of current headline.
-Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
-depending on context.  See the individual commands for more information."
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-shiftdown-hook))
-   ((and org-support-shift-select (org-region-active-p))
-    (org-call-for-shift-select 'next-line))
-   ((org-at-timestamp-p 'lax)
-    (call-interactively (if org-edit-timestamp-down-means-later
-			    'org-timestamp-up 'org-timestamp-down)))
-   ((and (not (eq org-support-shift-select 'always))
-	 org-enable-priority-commands
-	 (org-at-heading-p))
-    (call-interactively 'org-priority-down))
-   ((and (not org-support-shift-select) (org-at-item-p))
-    (call-interactively 'org-next-item))
-   ((org-clocktable-try-shift 'down arg))
-   ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
-   (org-support-shift-select
-    (org-call-for-shift-select 'next-line))
-   (t (org-shiftselect-error))))
-
-(defun org-shiftright (&optional arg)
-  "Cycle the thing at point or in the current line, depending on context.
-Depending on context, this does one of the following:
-
-- switch a timestamp at point one day into the future
-- on a headline, switch to the next TODO keyword.
-- on an item, switch entire list to the next bullet type
-- on a property line, switch to the next allowed value
-- on a clocktable definition line, move time block into the future"
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-shiftright-hook))
-   ((and org-support-shift-select (org-region-active-p))
-    (org-call-for-shift-select 'forward-char))
-   ((org-at-timestamp-p 'lax) (call-interactively 'org-timestamp-up-day))
-   ((and (not (eq org-support-shift-select 'always))
-	 (org-at-heading-p))
-    (let ((org-inhibit-logging
-	   (not org-treat-S-cursor-todo-selection-as-state-change))
-	  (org-inhibit-blocking
-	   (not org-treat-S-cursor-todo-selection-as-state-change)))
-      (org-call-with-arg 'org-todo 'right)))
-   ((or (and org-support-shift-select
-	     (not (eq org-support-shift-select 'always))
-	     (org-at-item-bullet-p))
-	(and (not org-support-shift-select) (org-at-item-p)))
-    (org-call-with-arg 'org-cycle-list-bullet nil))
-   ((and (not (eq org-support-shift-select 'always))
-	 (org-at-property-p))
-    (call-interactively 'org-property-next-allowed-value))
-   ((org-clocktable-try-shift 'right arg))
-   ((run-hook-with-args-until-success 'org-shiftright-final-hook))
-   (org-support-shift-select
-    (org-call-for-shift-select 'forward-char))
-   (t (org-shiftselect-error))))
-
-(defun org-shiftleft (&optional arg)
-  "Cycle the thing at point or in the current line, depending on context.
-Depending on context, this does one of the following:
-
-- switch a timestamp at point one day into the past
-- on a headline, switch to the previous TODO keyword.
-- on an item, switch entire list to the previous bullet type
-- on a property line, switch to the previous allowed value
-- on a clocktable definition line, move time block into the past"
-  (interactive "P")
-  (cond
-   ((run-hook-with-args-until-success 'org-shiftleft-hook))
-   ((and org-support-shift-select (org-region-active-p))
-    (org-call-for-shift-select 'backward-char))
-   ((org-at-timestamp-p 'lax) (call-interactively 'org-timestamp-down-day))
-   ((and (not (eq org-support-shift-select 'always))
-	 (org-at-heading-p))
-    (let ((org-inhibit-logging
-	   (not org-treat-S-cursor-todo-selection-as-state-change))
-	  (org-inhibit-blocking
-	   (not org-treat-S-cursor-todo-selection-as-state-change)))
-      (org-call-with-arg 'org-todo 'left)))
-   ((or (and org-support-shift-select
-	     (not (eq org-support-shift-select 'always))
-	     (org-at-item-bullet-p))
-	(and (not org-support-shift-select) (org-at-item-p)))
-    (org-call-with-arg 'org-cycle-list-bullet 'previous))
-   ((and (not (eq org-support-shift-select 'always))
-	 (org-at-property-p))
-    (call-interactively 'org-property-previous-allowed-value))
-   ((org-clocktable-try-shift 'left arg))
-   ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
-   (org-support-shift-select
-    (org-call-for-shift-select 'backward-char))
-   (t (org-shiftselect-error))))
-
-(defun org-shiftcontrolright ()
-  "Switch to next TODO set."
-  (interactive)
-  (cond
-   ((and org-support-shift-select (org-region-active-p))
-    (org-call-for-shift-select 'forward-word))
-   ((and (not (eq org-support-shift-select 'always))
-	 (org-at-heading-p))
-    (org-call-with-arg 'org-todo 'nextset))
-   (org-support-shift-select
-    (org-call-for-shift-select 'forward-word))
-   (t (org-shiftselect-error))))
-
-(defun org-shiftcontrolleft ()
-  "Switch to previous TODO set."
-  (interactive)
-  (cond
-   ((and org-support-shift-select (org-region-active-p))
-    (org-call-for-shift-select 'backward-word))
-   ((and (not (eq org-support-shift-select 'always))
-	 (org-at-heading-p))
-    (org-call-with-arg 'org-todo 'previousset))
-   (org-support-shift-select
-    (org-call-for-shift-select 'backward-word))
-   (t (org-shiftselect-error))))
-
-(defun org-shiftcontrolup (&optional n)
-  "Change timestamps synchronously up in CLOCK log lines.
-Optional argument N tells to change by that many units."
-  (interactive "P")
-  (if (and (org-at-clock-log-p) (org-at-timestamp-p 'lax))
-      (let (org-support-shift-select)
-	(org-clock-timestamps-up n))
-    (user-error "Not at a clock log")))
-
-(defun org-shiftcontroldown (&optional n)
-  "Change timestamps synchronously down in CLOCK log lines.
-Optional argument N tells to change by that many units."
-  (interactive "P")
-  (if (and (org-at-clock-log-p) (org-at-timestamp-p 'lax))
-      (let (org-support-shift-select)
-	(org-clock-timestamps-down n))
-    (user-error "Not at a clock log")))
-
-(defun org-increase-number-at-point (&optional inc)
-  "Increment the number at point.
-With an optional prefix numeric argument INC, increment using
-this numeric value."
-  (interactive "p")
-  (if (not (number-at-point))
-      (user-error "Not on a number")
-    (unless inc (setq inc 1))
-    (let ((pos (point))
-	  (beg (skip-chars-backward "-+^/*0-9eE."))
-	  (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
-      (setq nap (buffer-substring-no-properties
-		 (+ pos beg) (+ pos beg end)))
-      (delete-region (+ pos beg) (+ pos beg end))
-      (insert (calc-eval (concat (number-to-string inc) "+" nap))))
-    (when (org-at-table-p)
-      (org-table-align)
-      (org-table-end-of-field 1))))
-
-(defun org-decrease-number-at-point (&optional inc)
-  "Decrement the number at point.
-With an optional prefix numeric argument INC, decrement using
-this numeric value."
-  (interactive "p")
-  (org-increase-number-at-point (- (or inc 1))))
-
-(defun org-ctrl-c-ret ()
-  "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
-  (interactive)
-  (cond
-   ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
-   (t (call-interactively 'org-insert-heading))))
-
-(defun org-find-visible ()
-  (let ((s (point)))
-    (while (and (not (= (point-max) (setq s (next-overlay-change s))))
-		(get-char-property s 'invisible)))
-    s))
-(defun org-find-invisible ()
-  (let ((s (point)))
-    (while (and (not (= (point-max) (setq s (next-overlay-change s))))
-		(not (get-char-property s 'invisible))))
-    s))
-
-(defun org-copy-visible (beg end)
-  "Copy the visible parts of the region."
-  (interactive "r")
-  (let ((result ""))
-    (while (/= beg end)
-      (when (get-char-property beg 'invisible)
-	(setq beg (next-single-char-property-change beg 'invisible nil end)))
-      (let ((next (next-single-char-property-change beg 'invisible nil end)))
-	(setq result (concat result (buffer-substring beg next)))
-	(setq beg next)))
-    (kill-new result)))
-
-(defun org-copy-special ()
-  "Copy region in table or copy current subtree.
-Calls `org-table-copy-region' or `org-copy-subtree', depending on
-context.  See the individual commands for more information."
-  (interactive)
-  (call-interactively
-   (if (org-at-table-p) #'org-table-copy-region #'org-copy-subtree)))
-
-(defun org-cut-special ()
-  "Cut region in table or cut current subtree.
-Calls `org-table-cut-region' or `org-cut-subtree', depending on
-context.  See the individual commands for more information."
-  (interactive)
-  (call-interactively
-   (if (org-at-table-p) #'org-table-cut-region #'org-cut-subtree)))
-
-(defun org-paste-special (arg)
-  "Paste rectangular region into table, or past subtree relative to level.
-Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
-See the individual commands for more information."
-  (interactive "P")
-  (if (org-at-table-p)
-      (org-table-paste-rectangle)
-    (org-paste-subtree arg)))
-
-(defun org-edit-special (&optional arg)
-  "Call a special editor for the element at point.
-When at a table, call the formula editor with `org-table-edit-formulas'.
-When in a source code block, call `org-edit-src-code'.
-When in a fixed-width region, call `org-edit-fixed-width-region'.
-When in an export block, call `org-edit-export-block'.
-When in a LaTeX environment, call `org-edit-latex-environment'.
-When at an #+INCLUDE keyword, visit the included file.
-When at a footnote reference, call `org-edit-footnote-reference'
-On a link, call `ffap' to visit the link at point.
-Otherwise, return a user error."
-  (interactive "P")
-  (let ((element (org-element-at-point)))
-    (barf-if-buffer-read-only)
-    (pcase (org-element-type element)
-      (`src-block
-       (if (not arg) (org-edit-src-code)
-	 (let* ((info (org-babel-get-src-block-info))
-		(lang (nth 0 info))
-		(params (nth 2 info))
-		(session (cdr (assq :session params))))
-	   (if (not session) (org-edit-src-code)
-	     ;; At a src-block with a session and function called with
-	     ;; an ARG: switch to the buffer related to the inferior
-	     ;; process.
-	     (switch-to-buffer
-	      (funcall (intern (concat "org-babel-prep-session:" lang))
-		       session params))))))
-      (`keyword
-       (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
-           (org-open-link-from-string
-	    (format "[[%s]]"
-		    (expand-file-name
-		     (let ((value (org-element-property :value element)))
-		       (cond ((org-file-url-p value)
-			      (user-error "The file is specified as a URL, cannot be edited"))
-			     ((not (org-string-nw-p value))
-			      (user-error "No file to edit"))
-			     ((string-match "\\`\"\\(.*?\\)\"" value)
-			      (match-string 1 value))
-			     ((string-match "\\`[^ \t\"]\\S-*" value)
-			      (match-string 0 value))
-			     (t (user-error "No valid file specified")))))))
-         (user-error "No special environment to edit here")))
-      (`table
-       (if (eq (org-element-property :type element) 'table.el)
-           (org-edit-table.el)
-         (call-interactively 'org-table-edit-formulas)))
-      ;; Only Org tables contain `table-row' type elements.
-      (`table-row (call-interactively 'org-table-edit-formulas))
-      (`example-block (org-edit-src-code))
-      (`export-block (org-edit-export-block))
-      (`fixed-width (org-edit-fixed-width-region))
-      (`latex-environment (org-edit-latex-environment))
-      (_
-       ;; No notable element at point.  Though, we may be at a link or
-       ;; a footnote reference, which are objects.  Thus, scan deeper.
-       (let ((context (org-element-context element)))
-	 (pcase (org-element-type context)
-	   (`footnote-reference (org-edit-footnote-reference))
-	   (`inline-src-block (org-edit-inline-src-code))
-	   (`link (call-interactively #'ffap))
-	   (_ (user-error "No special environment to edit here"))))))))
-
-(defvar org-table-coordinate-overlays) ; defined in org-table.el
-(defun org-ctrl-c-ctrl-c (&optional arg)
-  "Set tags in headline, or update according to changed information at point.
-
-This command does many different things, depending on context:
-
-- If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
-  this is what we do.
-
-- If the cursor is on a statistics cookie, update it.
-
-- If the cursor is in a headline, prompt for tags and insert them
-  into the current line, aligned to `org-tags-column'.  When called
-  with prefix arg, realign all tags in the current buffer.
-
-- If the cursor is in one of the special #+KEYWORD lines, this
-  triggers scanning the buffer for these lines and updating the
-  information.
-
-- If the cursor is inside a table, realign the table.  This command
-  works even if the automatic table editor has been turned off.
-
-- If the cursor is on a #+TBLFM line, re-apply the formulas to
-  the entire table.
-
-- If the cursor is at a footnote reference or definition, jump to
-  the corresponding definition or references, respectively.
-
-- If the cursor is a the beginning of a dynamic block, update it.
-
-- If the current buffer is a capture buffer, close note and file it.
-
-- If the cursor is on a <<<target>>>, update radio targets and
-  corresponding links in this buffer.
-
-- If the cursor is on a numbered item in a plain list, renumber the
-  ordered list.
-
-- If the cursor is on a checkbox, toggle it.
-
-- If the cursor is on a code block, evaluate it.  The variable
-  `org-confirm-babel-evaluate' can be used to control prompting
-  before code block evaluation, by default every code block
-  evaluation requires confirmation.  Code block evaluation can be
-  inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
-  (interactive "P")
-  (cond
-   ((or (bound-and-true-p org-clock-overlays) org-occur-highlights)
-    (when (boundp 'org-clock-overlays) (org-clock-remove-overlays))
-    (org-remove-occur-highlights)
-    (message "Temporary highlights/overlays removed from current buffer"))
-   ((and (local-variable-p 'org-finish-function)
-	 (fboundp org-finish-function))
-    (funcall org-finish-function))
-   ((org-babel-hash-at-point))
-   ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
-   (t
-    (let* ((context
-	    (org-element-lineage
-	     (org-element-context)
-	     ;; Limit to supported contexts.
-	     '(babel-call clock dynamic-block footnote-definition
-			  footnote-reference inline-babel-call inline-src-block
-			  inlinetask item keyword node-property paragraph
-			  plain-list planning property-drawer radio-target
-			  src-block statistics-cookie table table-cell table-row
-			  timestamp)
-	     t))
-	   (type (org-element-type context)))
-      ;; For convenience: at the first line of a paragraph on the same
-      ;; line as an item, apply function on that item instead.
-      (when (eq type 'paragraph)
-	(let ((parent (org-element-property :parent context)))
-	  (when (and (eq (org-element-type parent) 'item)
-		     (= (line-beginning-position)
-			(org-element-property :begin parent)))
-	    (setq context parent)
-	    (setq type 'item))))
-      ;; Act according to type of element or object at point.
-      ;;
-      ;; Do nothing on a blank line, except if it is contained in
-      ;; a src block.  Hence, we first check if point is in such
-      ;; a block and then if it is at a blank line.
-      (pcase type
-	((or `inline-src-block `src-block)
-	 (unless org-babel-no-eval-on-ctrl-c-ctrl-c
-	   (org-babel-eval-wipe-error-buffer)
-	   (org-babel-execute-src-block
-	    current-prefix-arg (org-babel-get-src-block-info nil context))))
-	((guard (org-match-line "[ \t]*$"))
-	 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
-	     (user-error
-	      (substitute-command-keys
-	       "`\\[org-ctrl-c-ctrl-c]' can do nothing useful here"))))
-	((or `babel-call `inline-babel-call)
-	 (let ((info (org-babel-lob-get-info context)))
-	   (when info (org-babel-execute-src-block nil info))))
-	(`clock (org-clock-update-time-maybe))
-	(`dynamic-block
-	 (save-excursion
-	   (goto-char (org-element-property :post-affiliated context))
-	   (org-update-dblock)))
-	(`footnote-definition
-	 (goto-char (org-element-property :post-affiliated context))
-	 (call-interactively 'org-footnote-action))
-	(`footnote-reference (call-interactively #'org-footnote-action))
-	((or `headline `inlinetask)
-	 (save-excursion (goto-char (org-element-property :begin context))
-			 (call-interactively #'org-set-tags)))
-	(`item
-	 ;; At an item: `C-u C-u' sets checkbox to "[-]"
-	 ;; unconditionally, whereas `C-u' will toggle its presence.
-	 ;; Without a universal argument, if the item has a checkbox,
-	 ;; toggle it.  Otherwise repair the list.
-	 (let* ((box (org-element-property :checkbox context))
-		(struct (org-element-property :structure context))
-		(old-struct (copy-tree struct))
-		(parents (org-list-parents-alist struct))
-		(prevs (org-list-prevs-alist struct))
-		(orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
-	   (org-list-set-checkbox
-	    (org-element-property :begin context) struct
-	    (cond ((equal arg '(16)) "[-]")
-		  ((and (not box) (equal arg '(4))) "[ ]")
-		  ((or (not box) (equal arg '(4))) nil)
-		  ((eq box 'on) "[ ]")
-		  (t "[X]")))
-	   ;; Mimic `org-list-write-struct' but with grabbing a return
-	   ;; value from `org-list-struct-fix-box'.
-	   (org-list-struct-fix-ind struct parents 2)
-	   (org-list-struct-fix-item-end struct)
-	   (org-list-struct-fix-bul struct prevs)
-	   (org-list-struct-fix-ind struct parents)
-	   (let ((block-item
-		  (org-list-struct-fix-box struct parents prevs orderedp)))
-	     (if (and box (equal struct old-struct))
-		 (if (equal arg '(16))
-		     (message "Checkboxes already reset")
-		   (user-error "Cannot toggle this checkbox: %s"
-			       (if (eq box 'on)
-				   "all subitems checked"
-				 "unchecked subitems")))
-	       (org-list-struct-apply-struct struct old-struct)
-	       (org-update-checkbox-count-maybe))
-	     (when block-item
-	       (message "Checkboxes were removed due to empty box at line %d"
-			(org-current-line block-item))))))
-	(`keyword
-	 (let ((org-inhibit-startup-visibility-stuff t)
-	       (org-startup-align-all-tables nil))
-	   (when (boundp 'org-table-coordinate-overlays)
-	     (mapc #'delete-overlay org-table-coordinate-overlays)
-	     (setq org-table-coordinate-overlays nil))
-	   (org-save-outline-visibility 'use-markers (org-mode-restart)))
-	 (message "Local setup has been refreshed"))
-	(`plain-list
-	 ;; At a plain list, with a double C-u argument, set
-	 ;; checkboxes of each item to "[-]", whereas a single one
-	 ;; will toggle their presence according to the state of the
-	 ;; first item in the list.  Without an argument, repair the
-	 ;; list.
-	 (let* ((begin (org-element-property :contents-begin context))
-		(beginm (move-marker (make-marker) begin))
-		(struct (org-element-property :structure context))
-		(old-struct (copy-tree struct))
-		(first-box (save-excursion
-			     (goto-char begin)
-			     (looking-at org-list-full-item-re)
-			     (match-string-no-properties 3)))
-		(new-box (cond ((equal arg '(16)) "[-]")
-			       ((equal arg '(4)) (unless first-box "[ ]"))
-			       ((equal first-box "[X]") "[ ]")
-			       (t "[X]"))))
-	   (cond
-	    (arg
-	     (dolist (pos
-		      (org-list-get-all-items
-		       begin struct (org-list-prevs-alist struct)))
-	       (org-list-set-checkbox pos struct new-box)))
-	    ((and first-box (eq (point) begin))
-	     ;; For convenience, when point is at bol on the first
-	     ;; item of the list and no argument is provided, simply
-	     ;; toggle checkbox of that item, if any.
-	     (org-list-set-checkbox begin struct new-box)))
-	   (org-list-write-struct
-	    struct (org-list-parents-alist struct) old-struct)
-	   (org-update-checkbox-count-maybe)
-	   (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
-	((or `property-drawer `node-property)
-	 (call-interactively #'org-property-action))
-	(`radio-target
-	 (call-interactively #'org-update-radio-target-regexp))
-	(`statistics-cookie
-	 (call-interactively #'org-update-statistics-cookies))
-	((or `table `table-cell `table-row)
-	 ;; At a table, recalculate every field and align it.  Also
-	 ;; send the table if necessary.  If the table has
-	 ;; a `table.el' type, just give up.  At a table row or cell,
-	 ;; maybe recalculate line but always align table.
-	 (if (eq (org-element-property :type context) 'table.el)
-	     (message "%s" (substitute-command-keys "\\<org-mode-map>\
-Use `\\[org-edit-special]' to edit table.el tables"))
-	   (if (or (eq type 'table)
-		   ;; Check if point is at a TBLFM line.
-		   (and (eq type 'table-row)
-			(= (point) (org-element-property :end context))))
-	       (save-excursion
-		 (if (org-at-TBLFM-p)
-		     (progn (require 'org-table)
-			    (org-table-calc-current-TBLFM))
-		   (goto-char (org-element-property :contents-begin context))
-		   (org-call-with-arg 'org-table-recalculate (or arg t))
-		   (orgtbl-send-table 'maybe)))
-	     (org-table-maybe-eval-formula)
-	     (cond (arg (call-interactively #'org-table-recalculate))
-		   ((org-table-maybe-recalculate-line))
-		   (t (org-table-align))))))
-	((or `timestamp (and `planning (guard (org-at-timestamp-p 'lax))))
-	 (org-timestamp-change 0 'day))
-	((and `nil (guard (org-at-heading-p)))
-	 ;; When point is on an unsupported object type, we can miss
-	 ;; the fact that it also is at a heading.  Handle it here.
-	 (call-interactively #'org-set-tags))
-	((guard
-	  (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)))
-	(_
-	 (user-error
-	  (substitute-command-keys
-	   "`\\[org-ctrl-c-ctrl-c]' can do nothing useful here"))))))))
-
-(defun org-mode-restart ()
-  (interactive)
-  (let ((indent-status (bound-and-true-p org-indent-mode)))
-    (funcall major-mode)
-    (hack-local-variables)
-    (when (and indent-status (not (bound-and-true-p org-indent-mode)))
-      (org-indent-mode -1))
-    (org-reset-file-cache))
-  (message "%s restarted" major-mode))
-
-(defun org-kill-note-or-show-branches ()
-  "Abort storing current note, or call `outline-show-branches'."
-  (interactive)
-  (if (not org-finish-function)
-      (save-excursion
-	(save-restriction
-	  (org-narrow-to-subtree)
-	  (org-flag-subtree t)
-	  (call-interactively 'outline-show-branches)
-	  (org-hide-archived-subtrees (point-min) (point-max))))
-    (let ((org-note-abort t))
-      (funcall org-finish-function))))
-
-(defun org-delete-indentation (&optional arg)
-  "Join current line to previous and fix whitespace at join.
-
-If previous line is a headline add to headline title.  Otherwise
-the function calls `delete-indentation'.
-
-With a non-nil optional argument, join it to the following one."
-  (interactive "*P")
-  (if (save-excursion
-	(beginning-of-line (if arg 1 0))
-	(let ((case-fold-search nil))
-	  (looking-at org-complex-heading-regexp)))
-      ;; At headline.
-      (let ((tags-column (when (match-beginning 5)
-			   (save-excursion (goto-char (match-beginning 5))
-					   (current-column))))
-	    (string (concat " " (progn (when arg (forward-line 1))
-				       (org-trim (delete-and-extract-region
-						  (line-beginning-position)
-						  (line-end-position)))))))
-	(unless (bobp) (delete-region (point) (1- (point))))
-	(goto-char (or (match-end 4)
-		       (match-beginning 5)
-		       (match-end 0)))
-	(skip-chars-backward " \t")
-	(save-excursion (insert string))
-	;; Adjust alignment of tags.
-	(cond
-	 ((not tags-column))		;no tags
-	 (org-auto-align-tags (org-set-tags nil t))
-	 (t (org--align-tags-here tags-column)))) ;preserve tags column
-    (delete-indentation arg)))
-
-(defun org-open-line (n)
-  "Insert a new row in tables, call `open-line' elsewhere.
-If `org-special-ctrl-o' is nil, just call `open-line' everywhere.
-As a special case, when a document starts with a table, allow to
-call `open-line' on the very first character."
-  (interactive "*p")
-  (if (and org-special-ctrl-o (/= (point) 1) (org-at-table-p))
-      (org-table-insert-row)
-    (open-line n)))
-
-(defun org-return (&optional indent)
-  "Goto next table row or insert a newline.
-
-Calls `org-table-next-row' or `newline', depending on context.
-
-When optional INDENT argument is non-nil, call
-`newline-and-indent' instead of `newline'.
-
-When `org-return-follows-link' is non-nil and point is on
-a timestamp or a link, call `org-open-at-point'.  However, it
-will not happen if point is in a table or on a \"dead\"
-object (e.g., within a comment).  In these case, you need to use
-`org-open-at-point' directly."
-  (interactive)
-  (let ((context (if org-return-follows-link (org-element-context)
-		   (org-element-at-point))))
-    (cond
-     ;; In a table, call `org-table-next-row'.  However, before first
-     ;; column or after last one, split the table.
-     ((or (and (eq (org-element-type context) 'table)
-	       (>= (point) (org-element-property :contents-begin context))
-	       (< (point) (org-element-property :contents-end context)))
-	  (org-element-lineage context '(table-row table-cell) t))
-      (if (or (looking-at-p "[ \t]*$")
-	      (save-excursion (skip-chars-backward " \t") (bolp)))
-	  (insert "\n")
-	(org-table-justify-field-maybe)
-	(call-interactively #'org-table-next-row)))
-     ;; On a link or a timestamp, call `org-open-at-point' if
-     ;; `org-return-follows-link' allows it.  Tolerate fuzzy
-     ;; locations, e.g., in a comment, as `org-open-at-point'.
-     ((and org-return-follows-link
-	   (or (and (eq 'link (org-element-type context))
-		    ;; Ensure point is not on the white spaces after
-		    ;; the link.
-		    (let ((origin (point)))
-		      (org-with-point-at (org-element-property :end context)
-			(skip-chars-backward " \t")
-			(> (point) origin))))
-	       (org-in-regexp org-ts-regexp-both nil t)
-	       (org-in-regexp org-tsr-regexp-both nil  t)
-	       (org-in-regexp org-any-link-re nil t)))
-      (call-interactively #'org-open-at-point))
-     ;; Insert newline in heading, but preserve tags.
-     ((and (not (bolp))
-	   (save-excursion (beginning-of-line)
-			   (let ((case-fold-search nil))
-			     (looking-at org-complex-heading-regexp))))
-      ;; At headline.  Split line.  However, if point is on keyword,
-      ;; priority cookie or tags, do not break any of them: add
-      ;; a newline after the headline instead.
-      (let ((tags-column (and (match-beginning 5)
-			      (save-excursion (goto-char (match-beginning 5))
-					      (current-column))))
-	    (string
-	     (when (and (match-end 4) (org-point-in-group (point) 4))
-	       (delete-and-extract-region (point) (match-end 4)))))
-	;; Adjust tag alignment.
-	(cond
-	 ((not (and tags-column string)))
-	 (org-auto-align-tags (org-set-tags nil t))
-	 (t (org--align-tags-here tags-column))) ;preserve tags column
-	(end-of-line)
-	(org-show-entry)
-	(if indent (newline-and-indent) (newline))
-	(when string (save-excursion (insert (org-trim string))))))
-     ;; In a list, make sure indenting keeps trailing text within.
-     ((and indent
-	   (not (eolp))
-	   (org-element-lineage context '(item)))
-      (let ((trailing-data
-	     (delete-and-extract-region (point) (line-end-position))))
-	(newline-and-indent)
-	(save-excursion (insert trailing-data))))
-     (t
-      ;; Do not auto-fill when point is in an Org property drawer.
-      (let ((auto-fill-function (and (not (org-at-property-p))
-				     auto-fill-function)))
-	(if indent
-	    (newline-and-indent)
-	  (newline)))))))
-
-(defun org-return-indent ()
-  "Goto next table row or insert a newline and indent.
-Calls `org-table-next-row' or `newline-and-indent', depending on
-context.  See the individual commands for more information."
-  (interactive)
-  (org-return t))
-
-(defun org-ctrl-c-star ()
-  "Compute table, or change heading status of lines.
-Calls `org-table-recalculate' or `org-toggle-heading',
-depending on context."
-  (interactive)
-  (cond
-   ((org-at-table-p)
-    (call-interactively 'org-table-recalculate))
-   (t
-    ;; Convert all lines in region to list items
-    (call-interactively 'org-toggle-heading))))
-
-(defun org-ctrl-c-minus ()
-  "Insert separator line in table or modify bullet status of line.
-Also turns a plain line or a region of lines into list items.
-Calls `org-table-insert-hline', `org-toggle-item', or
-`org-cycle-list-bullet', depending on context."
-  (interactive)
-  (cond
-   ((org-at-table-p)
-    (call-interactively 'org-table-insert-hline))
-   ((org-region-active-p)
-    (call-interactively 'org-toggle-item))
-   ((org-in-item-p)
-    (call-interactively 'org-cycle-list-bullet))
-   (t
-    (call-interactively 'org-toggle-item))))
-
-(defun org-toggle-heading (&optional nstars)
-  "Convert headings to normal text, or items or text to headings.
-If there is no active region, only convert the current line.
-
-With a `\\[universal-argument]' prefix, convert the whole list at
-point into heading.
-
-In a region:
-
-- If the first non blank line is a headline, remove the stars
-  from all headlines in the region.
-
-- If it is a normal line, turn each and every normal line (i.e.,
-  not an heading or an item) in the region into headings.  If you
-  want to convert only the first line of this region, use one
-  universal prefix argument.
-
-- If it is a plain list item, turn all plain list items into headings.
-
-When converting a line into a heading, the number of stars is chosen
-such that the lines become children of the current entry.  However,
-when a numeric prefix argument is given, its value determines the
-number of stars to add."
-  (interactive "P")
-  (let ((skip-blanks
-	 (function
-	  ;; Return beginning of first non-blank line, starting from
-	  ;; line at POS.
-	  (lambda (pos)
-	    (save-excursion
-	      (goto-char pos)
-	      (while (org-at-comment-p) (forward-line))
-	      (skip-chars-forward " \r\t\n")
-	      (point-at-bol)))))
-	beg end toggled)
-    ;; Determine boundaries of changes.  If a universal prefix has
-    ;; been given, put the list in a region.  If region ends at a bol,
-    ;; do not consider the last line to be in the region.
-
-    (when (and current-prefix-arg (org-at-item-p))
-      (when (listp current-prefix-arg) (setq current-prefix-arg 1))
-      (org-mark-element))
-
-    (if (org-region-active-p)
-	(setq beg (funcall skip-blanks (region-beginning))
-	      end (copy-marker (save-excursion
-				 (goto-char (region-end))
-				 (if (bolp) (point) (point-at-eol)))))
-      (setq beg (funcall skip-blanks (point-at-bol))
-	    end (copy-marker (point-at-eol))))
-    ;; Ensure inline tasks don't count as headings.
-    (org-with-limited-levels
-     (save-excursion
-       (goto-char beg)
-       (cond
-	;; Case 1. Started at an heading: de-star headings.
-	((org-at-heading-p)
-	 (while (< (point) end)
-	   (when (org-at-heading-p t)
-	     (looking-at org-outline-regexp) (replace-match "")
-	     (setq toggled t))
-	   (forward-line)))
-	;; Case 2. Started at an item: change items into headlines.
-	;;         One star will be added by `org-list-to-subtree'.
-	((org-at-item-p)
-	 (while (< (point) end)
-	   (when (org-at-item-p)
-	     ;; Pay attention to cases when region ends before list.
-	     (let* ((struct (org-list-struct))
-		    (list-end
-		     (min (org-list-get-bottom-point struct) (1+ end))))
-	       (save-restriction
-		 (narrow-to-region (point) list-end)
-		 (insert (org-list-to-subtree (org-list-to-lisp t)) "\n")))
-	     (setq toggled t))
-	   (forward-line)))
-	;; Case 3. Started at normal text: make every line an heading,
-	;;         skipping headlines and items.
-	(t (let* ((stars
-		   (make-string
-		    (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
-		  (add-stars
-		   (cond (nstars "")                ; stars from prefix only
-			 ((equal stars "") "*")     ; before first heading
-			 (org-odd-levels-only "**") ; inside heading, odd
-			 (t "*")))                  ; inside heading, oddeven
-		  (rpl (concat stars add-stars " "))
-		  (lend (when (listp nstars) (save-excursion (end-of-line) (point)))))
-	     (while (< (point) (if (equal nstars '(4)) lend end))
-	       (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
-			  (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
-		 (replace-match (concat rpl (match-string 2))) (setq toggled t))
-	       (forward-line)))))))
-    (unless toggled (message "Cannot toggle heading from here"))))
-
-(defun org-meta-return (&optional arg)
-  "Insert a new heading or wrap a region in a table.
-Calls `org-insert-heading', `org-insert-item' or
-`org-table-wrap-region', depending on context.  When called with
-an argument, unconditionally call `org-insert-heading'."
-  (interactive "P")
-  (org-check-before-invisible-edit 'insert)
-  (or (run-hook-with-args-until-success 'org-metareturn-hook)
-      (call-interactively (cond (arg #'org-insert-heading)
-				((org-at-table-p) #'org-table-wrap-region)
-				((org-in-item-p) #'org-insert-item)
-				(t #'org-insert-heading)))))
-
-;;; Menu entries
-
-(defsubst org-in-subtree-not-table-p ()
-  "Are we in a subtree and not in a table?"
-  (and (not (org-before-first-heading-p))
-       (not (org-at-table-p))))
-
-;; Define the Org mode menus
-(easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
-  '("Tbl"
-    ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
-    ["Next Field" org-cycle (org-at-table-p)]
-    ["Previous Field" org-shifttab (org-at-table-p)]
-    ["Next Row" org-return (org-at-table-p)]
-    "--"
-    ["Blank Field" org-table-blank-field (org-at-table-p)]
-    ["Edit Field" org-table-edit-field (org-at-table-p)]
-    ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
-    "--"
-    ("Column"
-     ["Move Column Left" org-metaleft (org-at-table-p)]
-     ["Move Column Right" org-metaright (org-at-table-p)]
-     ["Delete Column" org-shiftmetaleft (org-at-table-p)]
-     ["Insert Column" org-shiftmetaright (org-at-table-p)])
-    ("Row"
-     ["Move Row Up" org-metaup (org-at-table-p)]
-     ["Move Row Down" org-metadown (org-at-table-p)]
-     ["Delete Row" org-shiftmetaup (org-at-table-p)]
-     ["Insert Row" org-shiftmetadown (org-at-table-p)]
-     ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
-     "--"
-     ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
-    ("Rectangle"
-     ["Copy Rectangle" org-copy-special (org-at-table-p)]
-     ["Cut Rectangle" org-cut-special (org-at-table-p)]
-     ["Paste Rectangle" org-paste-special (org-at-table-p)]
-     ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
-    "--"
-    ("Calculate"
-     ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
-     ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
-     ["Edit Formulas" org-edit-special (org-at-table-p)]
-     "--"
-     ["Recalculate line" org-table-recalculate (org-at-table-p)]
-     ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
-     ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
-     "--"
-     ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
-     "--"
-     ["Sum Column/Rectangle" org-table-sum
-      (or (org-at-table-p) (org-region-active-p))]
-     ["Which Column?" org-table-current-column (org-at-table-p)])
-    ["Debug Formulas"
-     org-table-toggle-formula-debugger
-     :style toggle :selected (bound-and-true-p org-table-formula-debug)]
-    ["Show Col/Row Numbers"
-     org-table-toggle-coordinate-overlays
-     :style toggle
-     :selected (bound-and-true-p org-table-overlay-coordinates)]
-    "--"
-    ["Create" org-table-create (not (org-at-table-p))]
-    ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
-    ["Import from File" org-table-import (not (org-at-table-p))]
-    ["Export to File" org-table-export (org-at-table-p)]
-    "--"
-    ["Create/Convert from/to table.el" org-table-create-with-table.el t]
-    "--"
-    ("Plot"
-     ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
-     ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
-
-(easy-menu-define org-org-menu org-mode-map "Org menu"
-  '("Org"
-    ("Show/Hide"
-     ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
-     ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
-     ["Sparse Tree..." org-sparse-tree t]
-     ["Reveal Context" org-reveal t]
-     ["Show All" outline-show-all t]
-     "--"
-     ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
-    "--"
-    ["New Heading" org-insert-heading t]
-    ("Navigate Headings"
-     ["Up" outline-up-heading t]
-     ["Next" outline-next-visible-heading t]
-     ["Previous" outline-previous-visible-heading t]
-     ["Next Same Level" outline-forward-same-level t]
-     ["Previous Same Level" outline-backward-same-level t]
-     "--"
-     ["Jump" org-goto t])
-    ("Edit Structure"
-     ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
-     "--"
-     ["Move Subtree Up" org-metaup (org-at-heading-p)]
-     ["Move Subtree Down" org-metadown (org-at-heading-p)]
-     "--"
-     ["Copy Subtree"  org-copy-special (org-in-subtree-not-table-p)]
-     ["Cut Subtree"  org-cut-special (org-in-subtree-not-table-p)]
-     ["Paste Subtree"  org-paste-special (not (org-at-table-p))]
-     "--"
-     ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
-     "--"
-     ["Copy visible text"  org-copy-visible t]
-     "--"
-     ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
-     ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
-     ["Demote Heading"  org-metaright (org-in-subtree-not-table-p)]
-     ["Demote Subtree"  org-shiftmetaright (org-in-subtree-not-table-p)]
-     "--"
-     ["Sort Region/Children" org-sort t]
-     "--"
-     ["Convert to odd levels" org-convert-to-odd-levels t]
-     ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
-    ("Editing"
-     ["Emphasis..." org-emphasize t]
-     ["Edit Source Example" org-edit-special t]
-     "--"
-     ["Footnote new/jump" org-footnote-action t]
-     ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
-    ("Archive"
-     ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
-     "--"
-     ["Move Subtree to Archive file" org-archive-subtree (org-in-subtree-not-table-p)]
-     ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
-     ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
-     )
-    "--"
-    ("Hyperlinks"
-     ["Store Link (Global)" org-store-link t]
-     ["Find existing link to here" org-occur-link-in-agenda-files t]
-     ["Insert Link" org-insert-link t]
-     ["Follow Link" org-open-at-point t]
-     "--"
-     ["Next link" org-next-link t]
-     ["Previous link" org-previous-link t]
-     "--"
-     ["Descriptive Links"
-      org-toggle-link-display
-      :style radio
-      :selected org-descriptive-links
-      ]
-     ["Literal Links"
-      org-toggle-link-display
-      :style radio
-      :selected (not org-descriptive-links)])
-    "--"
-    ("TODO Lists"
-     ["TODO/DONE/-" org-todo t]
-     ("Select keyword"
-      ["Next keyword" org-shiftright (org-at-heading-p)]
-      ["Previous keyword" org-shiftleft (org-at-heading-p)]
-      ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
-      ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
-      ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
-     ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
-     ["Global TODO list" org-todo-list :active t :keys "\\[org-agenda] t"]
-     "--"
-     ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
-      :selected org-enforce-todo-dependencies :style toggle :active t]
-     "Settings for tree at point"
-     ["Do Children sequentially" org-toggle-ordered-property :style radio
-      :selected (org-entry-get nil "ORDERED")
-      :active org-enforce-todo-dependencies :keys "C-c C-x o"]
-     ["Do Children parallel" org-toggle-ordered-property :style radio
-      :selected (not (org-entry-get nil "ORDERED"))
-      :active org-enforce-todo-dependencies :keys "C-c C-x o"]
-     "--"
-     ["Set Priority" org-priority t]
-     ["Priority Up" org-shiftup t]
-     ["Priority Down" org-shiftdown t]
-     "--"
-     ["Get news from all feeds" org-feed-update-all t]
-     ["Go to the inbox of a feed..." org-feed-goto-inbox t]
-     ["Customize feeds" (customize-variable 'org-feed-alist) t])
-    ("TAGS and Properties"
-     ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
-     ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
-     "--"
-     ["Set property" org-set-property (not (org-before-first-heading-p))]
-     ["Column view of properties" org-columns t]
-     ["Insert Column View DBlock" org-columns-insert-dblock t])
-    ("Dates and Scheduling"
-     ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
-     ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
-     ("Change Date"
-      ["1 Day Later" org-shiftright (org-at-timestamp-p 'lax)]
-      ["1 Day Earlier" org-shiftleft (org-at-timestamp-p 'lax)]
-      ["1 ... Later" org-shiftup (org-at-timestamp-p 'lax)]
-      ["1 ... Earlier" org-shiftdown (org-at-timestamp-p 'lax)])
-     ["Compute Time Range" org-evaluate-time-range t]
-     ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
-     ["Deadline" org-deadline (not (org-before-first-heading-p))]
-     "--"
-     ["Custom time format" org-toggle-time-stamp-overlays
-      :style radio :selected org-display-custom-times]
-     "--"
-     ["Goto Calendar" org-goto-calendar t]
-     ["Date from Calendar" org-date-from-calendar t]
-     "--"
-     ["Start/Restart Timer" org-timer-start t]
-     ["Pause/Continue Timer" org-timer-pause-or-continue t]
-     ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
-     ["Insert Timer String" org-timer t]
-     ["Insert Timer Item" org-timer-item t])
-    ("Logging work"
-     ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
-     ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
-     ["Clock out" org-clock-out t]
-     ["Clock cancel" org-clock-cancel t]
-     "--"
-     ["Mark as default task" org-clock-mark-default-task t]
-     ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
-     ["Goto running clock" org-clock-goto t]
-     "--"
-     ["Display times" org-clock-display t]
-     ["Create clock table" org-clock-report t]
-     "--"
-     ["Record DONE time"
-      (progn (setq org-log-done (not org-log-done))
-	     (message "Switching to %s will %s record a timestamp"
-		      (car org-done-keywords)
-		      (if org-log-done "automatically" "not")))
-      :style toggle :selected org-log-done])
-    "--"
-    ["Agenda Command..." org-agenda t]
-    ["Set Restriction Lock" org-agenda-set-restriction-lock t]
-    ("File List for Agenda")
-    ("Special views current file"
-     ["TODO Tree"  org-show-todo-tree t]
-     ["Check Deadlines" org-check-deadlines t]
-     ["Tags/Property tree" org-match-sparse-tree t])
-    "--"
-    ["Export/Publish..." org-export-dispatch t]
-    ("LaTeX"
-     ["Org CDLaTeX mode" org-cdlatex-mode :active (require 'cdlatex nil t)
-      :style toggle :selected org-cdlatex-mode]
-     ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
-     ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
-     ["Modify math symbol" org-cdlatex-math-modify
-      (org-inside-LaTeX-fragment-p)]
-     ["Insert citation" org-reftex-citation t])
-    "--"
-    ("MobileOrg"
-     ["Push Files and Views" org-mobile-push t]
-     ["Get Captured and Flagged" org-mobile-pull t]
-     ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "\\[org-agenda] ?"]
-     "--"
-     ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
-    "--"
-    ("Documentation"
-     ["Show Version" org-version t]
-     ["Info Documentation" org-info t])
-    ("Customize"
-     ["Browse Org Group" org-customize t]
-     "--"
-     ["Expand This Menu" org-create-customize-menu
-      (fboundp 'customize-menu-create)])
-    ["Send bug report" org-submit-bug-report t]
-    "--"
-    ("Refresh/Reload"
-     ["Refresh setup current buffer" org-mode-restart t]
-     ["Reload Org (after update)" org-reload t]
-     ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
-    ))
-
-(defun org-info (&optional node)
-  "Read documentation for Org in the info system.
-With optional NODE, go directly to that node."
-  (interactive)
-  (info (format "(org)%s" (or node ""))))
-
-;;;###autoload
-(defun org-submit-bug-report ()
-  "Submit a bug report on Org via mail.
-
-Don't hesitate to report any problems or inaccurate documentation.
-
-If you don't have setup sending mail from (X)Emacs, please copy the
-output buffer into your mail program, as it gives us important
-information about your Org version and configuration."
-  (interactive)
-  (require 'reporter)
-  (defvar reporter-prompt-for-summary-p)
-  (org-load-modules-maybe)
-  (org-require-autoloaded-modules)
-  (let ((reporter-prompt-for-summary-p "Bug report subject: "))
-    (reporter-submit-bug-report
-     "emacs-orgmode@gnu.org"
-     (org-version nil 'full)
-     (let (list)
-       (save-window-excursion
-	 (pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
-	 (delete-other-windows)
-	 (erase-buffer)
-	 (insert "You are about to submit a bug report to the Org mailing list.
-
-We would like to add your full Org and Outline configuration to the
-bug report.  This greatly simplifies the work of the maintainer and
-other experts on the mailing list.
-
-HOWEVER, some variables you have customized may contain private
-information.  The names of customers, colleagues, or friends, might
-appear in the form of file names, tags, todo states, or search strings.
-If you answer yes to the prompt, you might want to check and remove
-such private information before sending the email.")
-	 (add-text-properties (point-min) (point-max) '(face org-warning))
-	 (when (yes-or-no-p "Include your Org configuration ")
-	   (mapatoms
-	    (lambda (v)
-	      (and (boundp v)
-		   (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
-		   (or (and (symbol-value v)
-			    (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
-		       (and
-			(get v 'custom-type) (get v 'standard-value)
-			(not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
-		   (push v list)))))
-	 (kill-buffer (get-buffer "*Warn about privacy*"))
-	 list))
-     nil nil
-     "Remember to cover the basics, that is, what you expected to happen and
-what in fact did happen.  You don't know how to make a good report?  See
-
-     https://orgmode.org/manual/Feedback.html#Feedback
-
-Your bug report will be posted to the Org mailing list.
-------------------------------------------------------------------------")
-    (save-excursion
-      (when (re-search-backward "^\\(Subject: \\)Org mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
-	(replace-match "\\1Bug: \\3 [\\2]")))))
-
-
-(defun org-install-agenda-files-menu ()
-  (let ((bl (buffer-list)))
-    (save-excursion
-      (while bl
-	(set-buffer (pop bl))
-	(when (derived-mode-p 'org-mode) (setq bl nil)))
-      (when (derived-mode-p 'org-mode)
-	(easy-menu-change
-	 '("Org") "File List for Agenda"
-	 (append
-	  (list
-	   ["Edit File List" (org-edit-agenda-file-list) t]
-	   ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
-	   ["Remove Current File from List" org-remove-file t]
-	   ["Cycle through agenda files" org-cycle-agenda-files t]
-	   ["Occur in all agenda files" org-occur-in-agenda-files t]
-	   "--")
-	  (mapcar 'org-file-menu-entry
-		  ;; Prevent initialization from failing.
-		  (ignore-errors (org-agenda-files t)))))))))
-
-;;;; Documentation
-
-(defun org-require-autoloaded-modules ()
-  (interactive)
-  (mapc #'require
-	'(org-agenda org-archive org-attach org-clock org-colview org-id
-		     org-table org-timer)))
-
-;;;###autoload
-(defun org-reload (&optional uncompiled)
-  "Reload all Org Lisp files.
-With prefix arg UNCOMPILED, load the uncompiled versions."
-  (interactive "P")
-  (require 'loadhist)
-  (let* ((org-dir     (org-find-library-dir "org"))
-	 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
-	 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
-	 (remove-re (format "\\`%s\\'"
-			    (regexp-opt '("org" "org-loaddefs" "org-version"))))
-	 (feats (delete-dups
-		 (mapcar 'file-name-sans-extension
-			 (mapcar 'file-name-nondirectory
-				 (delq nil
-				       (mapcar 'feature-file
-					       features))))))
-	 (lfeat (append
-		 (sort
-		  (setq feats
-			(delq nil (mapcar
-				   (lambda (f)
-				     (if (and (string-match feature-re f)
-					      (not (string-match remove-re f)))
-					 f nil))
-				   feats)))
-		  'string-lessp)
-		 (list "org-version" "org")))
-	 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
-	 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
-	 load-uncore load-misses)
-    (setq load-misses
-	  (delq 't
-		(mapcar (lambda (f)
-			  (or (org-load-noerror-mustsuffix (concat org-dir f))
-			      (and (string= org-dir contrib-dir)
-				   (org-load-noerror-mustsuffix (concat contrib-dir f)))
-			      (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
-				   (add-to-list 'load-uncore f 'append)
-				   't)
-			      f))
-			lfeat)))
-    (when load-uncore
-      (message "The following feature%s found in load-path, please check if that's correct:\n%s"
-	       (if (> (length load-uncore) 1) "s were" " was") load-uncore))
-    (if load-misses
-	(message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
-		 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
-      (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
-
-;;;###autoload
-(defun org-customize ()
-  "Call the customize function with org as argument."
-  (interactive)
-  (org-load-modules-maybe)
-  (org-require-autoloaded-modules)
-  (customize-browse 'org))
-
-(defun org-create-customize-menu ()
-  "Create a full customization menu for Org mode, insert it into the menu."
-  (interactive)
-  (org-load-modules-maybe)
-  (org-require-autoloaded-modules)
-  (if (fboundp 'customize-menu-create)
-      (progn
-	(easy-menu-change
-	 '("Org") "Customize"
-	 `(["Browse Org group" org-customize t]
-	   "--"
-	   ,(customize-menu-create 'org)
-	   ["Set" Custom-set t]
-	   ["Save" Custom-save t]
-	   ["Reset to Current" Custom-reset-current t]
-	   ["Reset to Saved" Custom-reset-saved t]
-	   ["Reset to Standard Settings" Custom-reset-standard t]))
-	(message "\"Org\"-menu now contains full customization menu"))
-    (error "Cannot expand menu (outdated version of cus-edit.el)")))
-
-;;;; Miscellaneous stuff
-
-;;; Generally useful functions
-
-(defun org-get-at-eol (property n)
-  "Get text property PROPERTY at the end of line less N characters."
-  (get-text-property (- (point-at-eol) n) property))
-
-(defun org-find-text-property-in-string (prop s)
-  "Return the first non-nil value of property PROP in string S."
-  (or (get-text-property 0 prop s)
-      (get-text-property (or (next-single-property-change 0 prop s) 0)
-			 prop s)))
-
-(defun org-display-warning (message)
-  "Display the given MESSAGE as a warning."
-  (display-warning 'org message :warning))
-
-(defun org-eval (form)
-  "Eval FORM and return result."
-  (condition-case error
-      (eval form)
-    (error (format "%%![Error: %s]" error))))
-
-(defun org-in-clocktable-p ()
-  "Check if the cursor is in a clocktable."
-  (let ((pos (point)) start)
-    (save-excursion
-      (end-of-line 1)
-      (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
-	   (setq start (match-beginning 0))
-	   (re-search-forward "^[ \t]*#\\+END:.*" nil t)
-	   (>= (match-end 0) pos)
-	   start))))
-
-(defun org-in-verbatim-emphasis ()
-  (save-match-data
-    (and (org-in-regexp org-verbatim-re 2)
-	 (>= (point) (match-beginning 3))
-	 (<= (point) (match-end 4)))))
-
-(defun org-overlay-display (ovl text &optional face evap)
-  "Make overlay OVL display TEXT with face FACE."
-  (overlay-put ovl 'display text)
-  (if face (overlay-put ovl 'face face))
-  (if evap (overlay-put ovl 'evaporate t)))
-
-(defun org-overlay-before-string (ovl text &optional face evap)
-  "Make overlay OVL display TEXT with face FACE."
-  (if face (org-add-props text nil 'face face))
-  (overlay-put ovl 'before-string text)
-  (if evap (overlay-put ovl 'evaporate t)))
-
-(defun org-find-overlays (prop &optional pos delete)
-  "Find all overlays specifying PROP at POS or point.
-If DELETE is non-nil, delete all those overlays."
-  (let (found)
-    (dolist (ov (overlays-at (or pos (point))) found)
-      (cond ((not (overlay-get ov prop)))
-	    (delete (delete-overlay ov))
-	    (t (push ov found))))))
-
-(defun org-goto-marker-or-bmk (marker &optional bookmark)
-  "Go to MARKER, widen if necessary.  When marker is not live, try BOOKMARK."
-  (if (and marker (marker-buffer marker)
-	   (buffer-live-p (marker-buffer marker)))
-      (progn
-	(pop-to-buffer-same-window (marker-buffer marker))
-	(when (or (> marker (point-max)) (< marker (point-min)))
-	  (widen))
-	(goto-char marker)
-	(org-show-context 'org-goto))
-    (if bookmark
-	(bookmark-jump bookmark)
-      (error "Cannot find location"))))
-
-(defun org-quote-csv-field (s)
-  "Quote field for inclusion in CSV material."
-  (if (string-match "[\",]" s)
-      (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
-    s))
-
-(defun org-force-self-insert (N)
-  "Needed to enforce self-insert under remapping."
-  (interactive "p")
-  (self-insert-command N))
-
-(defun org-shorten-string (s maxlength)
-  "Shorten string S so that it is no longer than MAXLENGTH characters.
-If the string is shorter or has length MAXLENGTH, just return the
-original string.  If it is longer, the functions finds a space in the
-string, breaks this string off at that locations and adds three dots
-as ellipsis.  Including the ellipsis, the string will not be longer
-than MAXLENGTH.  If finding a good breaking point in the string does
-not work, the string is just chopped off in the middle of a word
-if necessary."
-  (if (<= (length s) maxlength)
-      s
-    (let* ((n (max (- maxlength 4) 1))
-	   (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
-      (if (string-match re s)
-	  (concat (match-string 1 s) "...")
-	(concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
-
-(defun org-get-indentation (&optional line)
-  "Get the indentation of the current line, interpreting tabs.
-When LINE is given, assume it represents a line and compute its indentation."
-  (if line
-      (when (string-match "^ *" (org-remove-tabs line))
-	(match-end 0))
-    (save-excursion
-      (beginning-of-line 1)
-      (skip-chars-forward " \t")
-      (current-column))))
-
-(defun org-get-string-indentation (s)
-  "What indentation has S due to SPACE and TAB at the beginning of the string?"
-  (let ((n -1) (i 0) (w tab-width) c)
-    (catch 'exit
-      (while (< (setq n (1+ n)) (length s))
-	(setq c (aref s n))
-	(cond ((= c ?\ ) (setq i (1+ i)))
-	      ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
-	      (t (throw 'exit t)))))
-    i))
-
-(defun org-remove-tabs (s &optional width)
-  "Replace tabulators in S with spaces.
-Assumes that s is a single line, starting in column 0."
-  (setq width (or width tab-width))
-  (while (string-match "\t" s)
-    (setq s (replace-match
-	     (make-string
-	      (- (* width (/ (+ (match-beginning 0) width) width))
-		 (match-beginning 0)) ?\ )
-	     t t s)))
-  s)
-
-(defun org-fix-indentation (line ind)
-  "Fix indentation in LINE.
-IND is a cons cell with target and minimum indentation.
-If the current indentation in LINE is smaller than the minimum,
-leave it alone.  If it is larger than ind, set it to the target."
-  (let* ((l (org-remove-tabs line))
-	 (i (org-get-indentation l))
-	 (i1 (car ind)) (i2 (cdr ind)))
-    (when (>= i i2) (setq l (substring line i2)))
-    (if (> i1 0)
-	(concat (make-string i1 ?\ ) l)
-      l)))
-
-(defun org-remove-indentation (code &optional n)
-  "Remove maximum common indentation in string CODE and return it.
-N may optionally be the number of columns to remove.  Return CODE
-as-is if removal failed."
-  (with-temp-buffer
-    (insert code)
-    (if (org-do-remove-indentation n) (buffer-string) code)))
-
-(defun org-do-remove-indentation (&optional n)
-  "Remove the maximum common indentation from the buffer.
-When optional argument N is a positive integer, remove exactly
-that much characters from indentation, if possible.  Return nil
-if it fails."
-  (catch :exit
-    (goto-char (point-min))
-    ;; Find maximum common indentation, if not specified.
-    (let ((n (or n
-		 (let ((min-ind (point-max)))
-		   (save-excursion
-		     (while (re-search-forward "^[ \t]*\\S-" nil t)
-		       (let ((ind (1- (current-column))))
-			 (if (zerop ind) (throw :exit nil)
-			   (setq min-ind (min min-ind ind))))))
-		   min-ind))))
-      (if (zerop n) (throw :exit nil)
-	;; Remove exactly N indentation, but give up if not possible.
-	(while (not (eobp))
-	  (let ((ind (progn (skip-chars-forward " \t") (current-column))))
-	    (cond ((eolp) (delete-region (line-beginning-position) (point)))
-		  ((< ind n) (throw :exit nil))
-		  (t (indent-line-to (- ind n))))
-	    (forward-line)))
-	;; Signal success.
-	t))))
-
-(defun org-fill-template (template alist)
-  "Find each %key of ALIST in TEMPLATE and replace it."
-  (let ((case-fold-search nil))
-    (dolist (entry (sort (copy-sequence alist)
-                         (lambda (a b) (< (length (car a)) (length (car b))))))
-      (setq template
-	    (replace-regexp-in-string
-	     (concat "%" (regexp-quote (car entry)))
-	     (or (cdr entry) "") template t t)))
-    template))
-
-(defun org-base-buffer (buffer)
-  "Return the base buffer of BUFFER, if it has one.  Else return the buffer."
-  (if (not buffer)
-      buffer
-    (or (buffer-base-buffer buffer)
-	buffer)))
-
-(defun org-wrap (string &optional width lines)
-  "Wrap string to either a number of lines, or a width in characters.
-If WIDTH is non-nil, the string is wrapped to that width, however many lines
-that costs.  If there is a word longer than WIDTH, the text is actually
-wrapped to the length of that word.
-IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
-many lines, whatever width that takes.
-The return value is a list of lines, without newlines at the end."
-  (let* ((words (split-string string))
-	 (maxword (apply 'max (mapcar 'org-string-width words)))
-	 w ll)
-    (cond (width
-	   (org-do-wrap words (max maxword width)))
-	  (lines
-	   (setq w maxword)
-	   (setq ll (org-do-wrap words maxword))
-	   (if (<= (length ll) lines)
-	       ll
-	     (setq ll words)
-	     (while (> (length ll) lines)
-	       (setq w (1+ w))
-	       (setq ll (org-do-wrap words w)))
-	     ll))
-	  (t (error "Cannot wrap this")))))
-
-(defun org-do-wrap (words width)
-  "Create lines of maximum width WIDTH (in characters) from word list WORDS."
-  (let (lines line)
-    (while words
-      (setq line (pop words))
-      (while (and words (< (+ (length line) (length (car words))) width))
-	(setq line (concat line " " (pop words))))
-      (setq lines (push line lines)))
-    (nreverse lines)))
-
-(defun org-quote-vert (s)
-  "Replace \"|\" with \"\\vert\"."
-  (while (string-match "|" s)
-    (setq s (replace-match "\\vert" t t s)))
-  s)
-
-(defun org-uuidgen-p (s)
-  "Is S an ID created by UUIDGEN?"
-  (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
-
-(defun org-in-src-block-p (&optional inside)
-  "Whether point is in a code source block.
-When INSIDE is non-nil, don't consider we are within a src block
-when point is at #+BEGIN_SRC or #+END_SRC."
-  (let ((case-fold-search t))
-    (or (and (eq (get-char-property (point) 'src-block) t))
-	(and (not inside)
-	     (save-match-data
-	       (save-excursion
-		 (beginning-of-line)
-		 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
-
-(defun org-context ()
-  "Return a list of contexts of the current cursor position.
-If several contexts apply, all are returned.
-Each context entry is a list with a symbol naming the context, and
-two positions indicating start and end of the context.  Possible
-contexts are:
-
-:headline         anywhere in a headline
-:headline-stars   on the leading stars in a headline
-:todo-keyword     on a TODO keyword (including DONE) in a headline
-:tags             on the TAGS in a headline
-:priority         on the priority cookie in a headline
-:item             on the first line of a plain list item
-:item-bullet      on the bullet/number of a plain list item
-:checkbox         on the checkbox in a plain list item
-:table            in an Org table
-:table-special    on a special filed in a table
-:table-table      in a table.el table
-:clocktable       in a clocktable
-:src-block        in a source block
-:link             on a hyperlink
-:keyword          on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
-:target           on a <<target>>
-:radio-target     on a <<<radio-target>>>
-:latex-fragment   on a LaTeX fragment
-:latex-preview    on a LaTeX fragment with overlaid preview image
-
-This function expects the position to be visible because it uses font-lock
-faces as a help to recognize the following contexts: :table-special, :link,
-and :keyword."
-  (let* ((f (get-text-property (point) 'face))
-	 (faces (if (listp f) f (list f)))
-	 (case-fold-search t)
-	 (p (point)) clist o)
-    ;; First the large context
-    (cond
-     ((org-at-heading-p t)
-      (push (list :headline (point-at-bol) (point-at-eol)) clist)
-      (when (progn
-	      (beginning-of-line 1)
-	      (looking-at org-todo-line-tags-regexp))
-	(push (org-point-in-group p 1 :headline-stars) clist)
-	(push (org-point-in-group p 2 :todo-keyword) clist)
-	(push (org-point-in-group p 4 :tags) clist))
-      (goto-char p)
-      (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
-      (when (looking-at "\\[#[A-Z0-9]\\]")
-	(push (org-point-in-group p 0 :priority) clist)))
-
-     ((org-at-item-p)
-      (push (org-point-in-group p 2 :item-bullet) clist)
-      (push (list :item (point-at-bol)
-		  (save-excursion (org-end-of-item) (point)))
-	    clist)
-      (and (org-at-item-checkbox-p)
-	   (push (org-point-in-group p 0 :checkbox) clist)))
-
-     ((org-at-table-p)
-      (push (list :table (org-table-begin) (org-table-end)) clist)
-      (when (memq 'org-formula faces)
-	(push (list :table-special
-		    (previous-single-property-change p 'face)
-		    (next-single-property-change p 'face)) clist)))
-     ((org-at-table-p 'any)
-      (push (list :table-table) clist)))
-    (goto-char p)
-
-    (let ((case-fold-search t))
-      ;; New the "medium" contexts: clocktables, source blocks
-      (cond ((org-in-clocktable-p)
-	     (push (list :clocktable
-			 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
-				  (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
-			      (match-beginning 1))
-			 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
-			      (match-end 0))) clist))
-	    ((org-in-src-block-p)
-	     (push (list :src-block
-			 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
-				  (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
-			      (match-beginning 1))
-			 (and (search-forward "#+END_SRC" nil t)
-			      (match-beginning 0))) clist))))
-    (goto-char p)
-
-    ;; Now the small context
-    (cond
-     ((org-at-timestamp-p)
-      (push (org-point-in-group p 0 :timestamp) clist))
-     ((memq 'org-link faces)
-      (push (list :link
-		  (previous-single-property-change p 'face)
-		  (next-single-property-change p 'face)) clist))
-     ((memq 'org-special-keyword faces)
-      (push (list :keyword
-		  (previous-single-property-change p 'face)
-		  (next-single-property-change p 'face)) clist))
-     ((org-at-target-p)
-      (push (org-point-in-group p 0 :target) clist)
-      (goto-char (1- (match-beginning 0)))
-      (when (looking-at org-radio-target-regexp)
-	(push (org-point-in-group p 0 :radio-target) clist))
-      (goto-char p))
-     ((setq o (cl-some
-	       (lambda (o)
-		 (and (eq (overlay-get o 'org-overlay-type) 'org-latex-overlay)
-		      o))
-	       (overlays-at (point))))
-      (push (list :latex-fragment
-		  (overlay-start o) (overlay-end o)) clist)
-      (push (list :latex-preview
-		  (overlay-start o) (overlay-end o)) clist))
-     ((org-inside-LaTeX-fragment-p)
-      ;; FIXME: positions wrong.
-      (push (list :latex-fragment (point) (point)) clist)))
-
-    (setq clist (nreverse (delq nil clist)))
-    clist))
-
-(defun org-in-regexp (regexp &optional nlines visually)
-  "Check if point is inside a match of REGEXP.
-
-Normally only the current line is checked, but you can include
-NLINES extra lines around point into the search.  If VISUALLY is
-set, require that the cursor is not after the match but really
-on, so that the block visually is on the match.
-
-Return nil or a cons cell (BEG . END) where BEG and END are,
-respectively, the positions at the beginning and the end of the
-match."
-  (catch :exit
-    (let ((pos (point))
-          (eol (line-end-position (if nlines (1+ nlines) 1))))
-      (save-excursion
-	(beginning-of-line (- 1 (or nlines 0)))
-	(while (and (re-search-forward regexp eol t)
-		    (<= (match-beginning 0) pos))
-	  (let ((end (match-end 0)))
-	    (when (or (> end pos) (and (= end pos) (not visually)))
-	      (throw :exit (cons (match-beginning 0) (match-end 0))))))))))
-
-(defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
-  "Non-nil when point is between matches of START-RE and END-RE.
-
-Also return a non-nil value when point is on one of the matches.
-
-Optional arguments LIM-UP and LIM-DOWN bound the search; they are
-buffer positions.  Default values are the positions of headlines
-surrounding the point.
-
-The functions returns a cons cell whose car (resp. cdr) is the
-position before START-RE (resp. after END-RE)."
-  (save-match-data
-    (let ((pos (point))
-	  (limit-up (or lim-up (save-excursion (outline-previous-heading))))
-	  (limit-down (or lim-down (save-excursion (outline-next-heading))))
-	  beg end)
-      (save-excursion
-	;; Point is on a block when on START-RE or if START-RE can be
-	;; found before it...
-	(and (or (org-in-regexp start-re)
-		 (re-search-backward start-re limit-up t))
-	     (setq beg (match-beginning 0))
-	     ;; ... and END-RE after it...
-	     (goto-char (match-end 0))
-	     (re-search-forward end-re limit-down t)
-	     (> (setq end (match-end 0)) pos)
-	     ;; ... without another START-RE in-between.
-	     (goto-char (match-beginning 0))
-	     (not (re-search-backward start-re (1+ beg) t))
-	     ;; Return value.
-	     (cons beg end))))))
-
-(defun org-in-block-p (names)
-  "Non-nil when point belongs to a block whose name belongs to NAMES.
-
-NAMES is a list of strings containing names of blocks.
-
-Return first block name matched, or nil.  Beware that in case of
-nested blocks, the returned name may not belong to the closest
-block from point."
-  (save-match-data
-    (catch 'exit
-      (let ((case-fold-search t)
-	    (lim-up (save-excursion (outline-previous-heading)))
-	    (lim-down (save-excursion (outline-next-heading))))
-	(dolist (name names)
-	  (let ((n (regexp-quote name)))
-	    (when (org-between-regexps-p
-		   (concat "^[ \t]*#\\+begin_" n)
-		   (concat "^[ \t]*#\\+end_" n)
-		   lim-up lim-down)
-	      (throw 'exit n)))))
-      nil)))
-
-(defun org-occur-in-agenda-files (regexp &optional _nlines)
-  "Call `multi-occur' with buffers for all agenda files."
-  (interactive "sOrg-files matching: ")
-  (let* ((files (org-agenda-files))
-	 (tnames (mapcar #'file-truename files))
-	 (extra org-agenda-text-search-extra-files))
-    (when (eq (car extra) 'agenda-archives)
-      (setq extra (cdr extra))
-      (setq files (org-add-archive-files files)))
-    (dolist (f extra)
-      (unless (member (file-truename f) tnames)
-	(unless (member f files) (setq files (append files (list f))))
-	(setq tnames (append tnames (list (file-truename f))))))
-    (multi-occur
-     (mapcar (lambda (x)
-	       (with-current-buffer
-		   ;; FIXME: Why not just (find-file-noselect x)?
-		   ;; Is it to avoid the "revert buffer" prompt?
-		   (or (get-file-buffer x) (find-file-noselect x))
-		 (widen)
-		 (current-buffer)))
-	     files)
-     regexp)))
-
-(add-hook 'occur-mode-find-occurrence-hook
-	  (lambda () (when (derived-mode-p 'org-mode) (org-reveal))))
-
-(defun org-occur-link-in-agenda-files ()
-  "Create a link and search for it in the agendas.
-The link is not stored in `org-stored-links', it is just created
-for the search purpose."
-  (interactive)
-  (let ((link (condition-case nil
-		  (org-store-link nil)
-		(error "Unable to create a link to here"))))
-    (org-occur-in-agenda-files (regexp-quote link))))
-
-(defun org-reverse-string (string)
-  "Return the reverse of STRING."
-  (apply 'string (reverse (string-to-list string))))
-
-;; defsubst org-uniquify must be defined before first use
-
-(defun org-uniquify-alist (alist)
-  "Merge elements of ALIST with the same key.
-
-For example, in this alist:
-
-\(org-uniquify-alist \\='((a 1) (b 2) (a 3)))
-  => \\='((a 1 3) (b 2))
-
-merge (a 1) and (a 3) into (a 1 3).
-
-The function returns the new ALIST."
-  (let (rtn)
-    (dolist (e alist rtn)
-      (let (n)
-	(if (not (assoc (car e) rtn))
-	    (push e rtn)
-	  (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
-	  (setq rtn (assq-delete-all (car e) rtn))
-	  (push n rtn))))))
-
-(defun org-delete-all (elts list)
-  "Remove all elements in ELTS from LIST.
-Comparison is done with `equal'.  It is a destructive operation
-that may remove elements by altering the list structure."
-  (while elts
-    (setq list (delete (pop elts) list)))
-  list)
-
-(defun org-back-over-empty-lines ()
-  "Move backwards over whitespace, to the beginning of the first empty line.
-Returns the number of empty lines passed."
-  (let ((pos (point)))
-    (if (cdr (assq 'heading org-blank-before-new-entry))
-	(skip-chars-backward " \t\n\r")
-      (unless (eobp)
-	(forward-line -1)))
-    (beginning-of-line 2)
-    (goto-char (min (point) pos))
-    (count-lines (point) pos)))
-
-(defun org-skip-whitespace ()
-  (skip-chars-forward " \t\n\r"))
-
-(defun org-point-in-group (point group &optional context)
-  "Check if POINT is in match-group GROUP.
-If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
-match.  If the match group does not exist or point is not inside it,
-return nil."
-  (and (match-beginning group)
-       (>= point (match-beginning group))
-       (<= point (match-end group))
-       (if context
-	   (list context (match-beginning group) (match-end group))
-	 t)))
-
-(defun org-switch-to-buffer-other-window (&rest args)
-  "Switch to buffer in a second window on the current frame.
-In particular, do not allow pop-up frames.
-Returns the newly created buffer."
-  (org-no-popups
-   (apply 'switch-to-buffer-other-window args)))
-
-(defun org-combine-plists (&rest plists)
-  "Create a single property list from all plists in PLISTS.
-The process starts by copying the first list, and then setting properties
-from the other lists.  Settings in the last list are the most significant
-ones and overrule settings in the other lists."
-  (let ((rtn (copy-sequence (pop plists)))
-	p v ls)
-    (while plists
-      (setq ls (pop plists))
-      (while ls
-	(setq p (pop ls) v (pop ls))
-	(setq rtn (plist-put rtn p v))))
-    rtn))
-
-(defun org-replace-escapes (string table)
-  "Replace %-escapes in STRING with values in TABLE.
-TABLE is an association list with keys like \"%a\" and string values.
-The sequences in STRING may contain normal field width and padding information,
-for example \"%-5s\".  Replacements happen in the sequence given by TABLE,
-so values can contain further %-escapes if they are define later in TABLE."
-  (let ((tbl (copy-alist table))
-	(case-fold-search nil)
-        (pchg 0)
-        re rpl)
-    (dolist (e tbl)
-      (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
-      (when (and (cdr e) (string-match re (cdr e)))
-        (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
-              (safe "SREF"))
-          (add-text-properties 0 3 (list 'sref sref) safe)
-          (setcdr e (replace-match safe t t (cdr e)))))
-      (while (string-match re string)
-        (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
-                          (cdr e)))
-        (setq string (replace-match rpl t t string))))
-    (while (setq pchg (next-property-change pchg string))
-      (let ((sref (get-text-property pchg 'sref string)))
-	(when (and sref (string-match "SREF" string pchg))
-	  (setq string (replace-match sref t t string)))))
-    string))
-
-(defun org-find-base-buffer-visiting (file)
-  "Like `find-buffer-visiting' but always return the base buffer and
-not an indirect buffer."
-  (let ((buf (or (get-file-buffer file)
-		 (find-buffer-visiting file))))
-    (if buf
-	(or (buffer-base-buffer buf) buf)
-      nil)))
-
-;;; TODO: Only called once, from ox-odt which should probably use
-;;; org-export-inline-image-p or something.
-(defun org-file-image-p (file)
-  "Return non-nil if FILE is an image."
-  (save-match-data
-    (string-match (image-file-name-regexp) file)))
-
-(defun org-get-cursor-date (&optional with-time)
-  "Return the date at cursor in as a time.
-This works in the calendar and in the agenda, anywhere else it just
-returns the current time.
-If WITH-TIME is non-nil, returns the time of the event at point (in
-the agenda) or the current time of the day."
-  (let (date day defd tp hod mod)
-    (when with-time
-      (setq tp (get-text-property (point) 'time))
-      (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
-	(setq hod (string-to-number (match-string 1 tp))
-	      mod (string-to-number (match-string 2 tp))))
-      (or tp (let ((now (decode-time)))
-	       (setq hod (nth 2 now)
-		     mod (nth 1 now)))))
-    (cond
-     ((eq major-mode 'calendar-mode)
-      (setq date (calendar-cursor-to-date)
-	    defd (encode-time 0 (or mod 0) (or hod 0)
-			      (nth 1 date) (nth 0 date) (nth 2 date))))
-     ((eq major-mode 'org-agenda-mode)
-      (setq day (get-text-property (point) 'day))
-      (when day
-	(setq date (calendar-gregorian-from-absolute day)
-	      defd (encode-time 0 (or mod 0) (or hod 0)
-				(nth 1 date) (nth 0 date) (nth 2 date))))))
-    (or defd (current-time))))
-
-(defun org-mark-subtree (&optional up)
-  "Mark the current subtree.
-This puts point at the start of the current subtree, and mark at
-the end.  If a numeric prefix UP is given, move up into the
-hierarchy of headlines by UP levels before marking the subtree."
-  (interactive "P")
-  (org-with-limited-levels
-   (cond ((org-at-heading-p) (beginning-of-line))
-	 ((org-before-first-heading-p) (user-error "Not in a subtree"))
-	 (t (outline-previous-visible-heading 1))))
-  (when up (while (and (> up 0) (org-up-heading-safe)) (cl-decf up)))
-  (if (called-interactively-p 'any)
-      (call-interactively 'org-mark-element)
-    (org-mark-element)))
-
-(defun org-file-newer-than-p (file time)
-  "Non-nil if FILE is newer than TIME.
-FILE is a filename, as a string, TIME is a list of integers, as
-returned by, e.g., `current-time'."
-  (and (file-exists-p file)
-       ;; Only compare times up to whole seconds as some file-systems
-       ;; (e.g. HFS+) do not retain any finer granularity.  As
-       ;; a consequence, make sure we return non-nil when the two
-       ;; times are equal.
-       (not (time-less-p (cl-subseq (nth 5 (file-attributes file)) 0 2)
-			 (cl-subseq time 0 2)))))
-
-(defun org-compile-file (source process ext &optional err-msg log-buf spec)
-  "Compile a SOURCE file using PROCESS.
-
-PROCESS is either a function or a list of shell commands, as
-strings.  EXT is a file extension, without the leading dot, as
-a string.  It is used to check if the process actually succeeded.
-
-PROCESS must create a file with the same base name and directory
-as SOURCE, but ending with EXT.  The function then returns its
-filename.  Otherwise, it raises an error.  The error message can
-then be refined by providing string ERR-MSG, which is appended to
-the standard message.
-
-If PROCESS is a function, it is called with a single argument:
-the SOURCE file.
-
-If it is a list of commands, each of them is called using
-`shell-command'.  By default, in each command, %b, %f, %F, %o and
-%O are replaced with, respectively, SOURCE base name, name, full
-name, directory and absolute output file name.  It is possible,
-however, to use more place-holders by specifying them in optional
-argument SPEC, as an alist following the pattern
-
-  (CHARACTER . REPLACEMENT-STRING).
-
-When PROCESS is a list of commands, optional argument LOG-BUF can
-be set to a buffer or a buffer name.  `shell-command' then uses
-it for output."
-  (let* ((base-name (file-name-base source))
-	 (full-name (file-truename source))
-	 (out-dir (or (file-name-directory source) "./"))
-	 (output (expand-file-name (concat base-name "." ext) out-dir))
-	 (time (current-time))
-	 (err-msg (if (stringp err-msg) (concat ".  " err-msg) "")))
-    (save-window-excursion
-      (pcase process
-	((pred functionp) (funcall process (shell-quote-argument source)))
-	((pred consp)
-	 (let ((log-buf (and log-buf (get-buffer-create log-buf)))
-	       (spec (append spec
-			     `((?b . ,(shell-quote-argument base-name))
-			       (?f . ,(shell-quote-argument source))
-			       (?F . ,(shell-quote-argument full-name))
-			       (?o . ,(shell-quote-argument out-dir))
-			       (?O . ,(shell-quote-argument output))))))
-	   (dolist (command process)
-	     (shell-command (format-spec command spec) log-buf))
-	   (when log-buf (with-current-buffer log-buf (compilation-mode)))))
-	(_ (error "No valid command to process %S%s" source err-msg))))
-    ;; Check for process failure.  Output file is expected to be
-    ;; located in the same directory as SOURCE.
-    (unless (org-file-newer-than-p output time)
-      (error (format "File %S wasn't produced%s" output err-msg)))
-    output))
-
-;;; Indentation
-
-(defvar org-element-greater-elements)
-(defun org--get-expected-indentation (element contentsp)
-  "Expected indentation column for current line, according to ELEMENT.
-ELEMENT is an element containing point.  CONTENTSP is non-nil
-when indentation is to be computed according to contents of
-ELEMENT."
-  (let ((type (org-element-type element))
-	(start (org-element-property :begin element))
-	(post-affiliated (org-element-property :post-affiliated element)))
-    (org-with-wide-buffer
-     (cond
-      (contentsp
-       (cl-case type
-	 ((diary-sexp footnote-definition) 0)
-	 ((headline inlinetask nil)
-	  (if (not org-adapt-indentation) 0
-	    (let ((level (org-current-level)))
-	      (if level (1+ level) 0))))
-	 ((item plain-list) (org-list-item-body-column post-affiliated))
-	 (t
-	  (goto-char start)
-	  (org-get-indentation))))
-      ((memq type '(headline inlinetask nil))
-       (if (org-match-line "[ \t]*$")
-	   (org--get-expected-indentation element t)
-	 0))
-      ((memq type '(diary-sexp footnote-definition)) 0)
-      ;; First paragraph of a footnote definition or an item.
-      ;; Indent like parent.
-      ((< (line-beginning-position) start)
-       (org--get-expected-indentation
-	(org-element-property :parent element) t))
-      ;; At first line: indent according to previous sibling, if any,
-      ;; ignoring footnote definitions and inline tasks, or parent's
-      ;; contents.
-      ((= (line-beginning-position) start)
-       (catch 'exit
-	 (while t
-	   (if (= (point-min) start) (throw 'exit 0)
-	     (goto-char (1- start))
-	     (let* ((previous (org-element-at-point))
-		    (parent previous))
-	       (while (and parent (<= (org-element-property :end parent) start))
-		 (setq previous parent
-		       parent (org-element-property :parent parent)))
-	       (cond
-		((not previous) (throw 'exit 0))
-		((> (org-element-property :end previous) start)
-		 (throw 'exit (org--get-expected-indentation previous t)))
-		((memq (org-element-type previous)
-		       '(footnote-definition inlinetask))
-		 (setq start (org-element-property :begin previous)))
-		(t (goto-char (org-element-property :begin previous))
-		   (throw 'exit
-			  (if (bolp) (org-get-indentation)
-			    ;; At first paragraph in an item or
-			    ;; a footnote definition.
-			    (org--get-expected-indentation
-			     (org-element-property :parent previous) t))))))))))
-      ;; Otherwise, move to the first non-blank line above.
-      (t
-       (beginning-of-line)
-       (let ((pos (point)))
-	 (skip-chars-backward " \r\t\n")
-	 (cond
-	  ;; Two blank lines end a footnote definition or a plain
-	  ;; list.  When we indent an empty line after them, the
-	  ;; containing list or footnote definition is over, so it
-	  ;; qualifies as a previous sibling.  Therefore, we indent
-	  ;; like its first line.
-	  ((and (memq type '(footnote-definition plain-list))
-		(> (count-lines (point) pos) 2))
-	   (goto-char start)
-	   (org-get-indentation))
-	  ;; Line above is the first one of a paragraph at the
-	  ;; beginning of an item or a footnote definition.  Indent
-	  ;; like parent.
-	  ((< (line-beginning-position) start)
-	   (org--get-expected-indentation
-	    (org-element-property :parent element) t))
-	  ;; Line above is the beginning of an element, i.e., point
-	  ;; was originally on the blank lines between element's start
-	  ;; and contents.
-	  ((= (line-beginning-position) post-affiliated)
-	   (org--get-expected-indentation element t))
-	  ;; POS is after contents in a greater element.  Indent like
-	  ;; the beginning of the element.
-	  ((and (memq type org-element-greater-elements)
-		(let ((cend (org-element-property :contents-end element)))
-		  (and cend (<= cend pos))))
-	   ;; As a special case, if point is at the end of a footnote
-	   ;; definition or an item, indent like the very last element
-	   ;; within.  If that last element is an item, indent like
-	   ;; its contents.
-	   (if (memq type '(footnote-definition item plain-list))
-	       (let ((last (org-element-at-point)))
-		 (goto-char pos)
-		 (org--get-expected-indentation
-		  last (eq (org-element-type last) 'item)))
-	     (goto-char start)
-	     (org-get-indentation)))
-	  ;; In any other case, indent like the current line.
-	  (t (org-get-indentation)))))))))
-
-(defun org--align-node-property ()
-  "Align node property at point.
-Alignment is done according to `org-property-format', which see."
-  (when (save-excursion
-	  (beginning-of-line)
-	  (looking-at org-property-re))
-    (replace-match
-     (concat (match-string 4)
-	     (org-trim
-	      (format org-property-format (match-string 1) (match-string 3))))
-     t t)))
-
-(defun org-indent-line ()
-  "Indent line depending on context.
-
-Indentation is done according to the following rules:
-
-  - Footnote definitions, diary sexps, headlines and inline tasks
-    have to start at column 0.
-
-  - On the very first line of an element, consider, in order, the
-    next rules until one matches:
-
-    1. If there's a sibling element before, ignoring footnote
-       definitions and inline tasks, indent like its first line.
-
-    2. If element has a parent, indent like its contents.  More
-       precisely, if parent is an item, indent after the
-       description part, if any, or the bullet (see
-       `org-list-description-max-indent').  Else, indent like
-       parent's first line.
-
-    3. Otherwise, indent relatively to current level, if
-       `org-adapt-indentation' is non-nil, or to left margin.
-
-  - On a blank line at the end of an element, indent according to
-    the type of the element.  More precisely
-
-    1. If element is a plain list, an item, or a footnote
-       definition, indent like the very last element within.
-
-    2. If element is a paragraph, indent like its last non blank
-       line.
-
-    3. Otherwise, indent like its very first line.
-
-  - In the code part of a source block, use language major mode
-    to indent current line if `org-src-tab-acts-natively' is
-    non-nil.  If it is nil, do nothing.
-
-  - Otherwise, indent like the first non-blank line above.
-
-The function doesn't indent an item as it could break the whole
-list structure.  Instead, use \\<org-mode-map>`\\[org-shiftmetaleft]' or \
-`\\[org-shiftmetaright]'.
-
-Also align node properties according to `org-property-format'."
-  (interactive)
-  (cond
-   (orgstruct-is-++
-    (let ((indent-line-function
-	   (cl-cadadr (assq 'indent-line-function org-fb-vars))))
-      (indent-according-to-mode)))
-   ((org-at-heading-p) 'noindent)
-   (t
-    (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
-	   (type (org-element-type element)))
-      (cond ((and (memq type '(plain-list item))
-		  (= (line-beginning-position)
-		     (org-element-property :post-affiliated element)))
-	     'noindent)
-	    ((and (eq type 'latex-environment)
-		  (>= (point) (org-element-property :post-affiliated element))
-		  (< (point) (org-with-wide-buffer
-			      (goto-char (org-element-property :end element))
-			      (skip-chars-backward " \r\t\n")
-			      (line-beginning-position 2))))
-	     'noindent)
-	    ((and (eq type 'src-block)
-		  org-src-tab-acts-natively
-		  (> (line-beginning-position)
-		     (org-element-property :post-affiliated element))
-		  (< (line-beginning-position)
-		     (org-with-wide-buffer
-		      (goto-char (org-element-property :end element))
-		      (skip-chars-backward " \r\t\n")
-		      (line-beginning-position))))
-	     (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
-	    (t
-	     (let ((column (org--get-expected-indentation element nil)))
-	       ;; Preserve current column.
-	       (if (<= (current-column) (current-indentation))
-		   (indent-line-to column)
-		 (save-excursion (indent-line-to column))))
-	     ;; Align node property.  Also preserve current column.
-	     (when (eq type 'node-property)
-	       (let ((column (current-column)))
-		 (org--align-node-property)
-		 (org-move-to-column column)))))))))
-
-(defun org-indent-region (start end)
-  "Indent each non-blank line in the region.
-Called from a program, START and END specify the region to
-indent.  The function will not indent contents of example blocks,
-verse blocks and export blocks as leading white spaces are
-assumed to be significant there."
-  (interactive "r")
-  (save-excursion
-    (goto-char start)
-    (skip-chars-forward " \r\t\n")
-    (unless (eobp) (beginning-of-line))
-    (let ((indent-to
-	   (lambda (ind pos)
-	     ;; Set IND as indentation for all lines between point and
-	     ;; POS.  Blank lines are ignored.  Leave point after POS
-	     ;; once done.
-	     (let ((limit (copy-marker pos)))
-	       (while (< (point) limit)
-		 (unless (looking-at-p "[ \t]*$") (indent-line-to ind))
-		 (forward-line))
-	       (set-marker limit nil))))
-	  (end (copy-marker end)))
-      (while (< (point) end)
-	(if (or (looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
-	  (let* ((element (org-element-at-point))
-		 (type (org-element-type element))
-		 (element-end (copy-marker (org-element-property :end element)))
-		 (ind (org--get-expected-indentation element nil)))
-	    (cond
-	     ;; Element indented as a single block.  Example blocks
-	     ;; preserving indentation are a special case since the
-	     ;; "contents" must not be indented whereas the block
-	     ;; boundaries can.
-	     ((or (memq type '(export-block latex-environment))
-		  (and (eq type 'example-block)
-		       (not
-			(or org-src-preserve-indentation
-			    (org-element-property :preserve-indent element)))))
-	      (let ((offset (- ind (org-get-indentation))))
-		(unless (zerop offset)
-		  (indent-rigidly (org-element-property :begin element)
-				  (org-element-property :end element)
-				  offset)))
-	      (goto-char element-end))
-	     ;; Elements indented line wise.  Be sure to exclude
-	     ;; example blocks (preserving indentation) and source
-	     ;; blocks from this category as they are treated
-	     ;; specially later.
-	     ((or (memq type '(paragraph table table-row))
-		  (not (or (org-element-property :contents-begin element)
-			   (memq type '(example-block src-block)))))
-	      (when (eq type 'node-property)
-		(org--align-node-property)
-		(beginning-of-line))
-	      (funcall indent-to ind (min element-end end)))
-	     ;; Elements consisting of three parts: before the
-	     ;; contents, the contents, and after the contents.  The
-	     ;; contents are treated specially, according to the
-	     ;; element type, or not indented at all.  Other parts are
-	     ;; indented as a single block.
-	     (t
-	      (let* ((post (copy-marker
-			    (org-element-property :post-affiliated element)))
-		     (cbeg
-		      (copy-marker
-		       (cond
-			((not (org-element-property :contents-begin element))
-			 ;; Fake contents for source blocks.
-			 (org-with-wide-buffer
-			  (goto-char post)
-			  (line-beginning-position 2)))
-			((memq type '(footnote-definition item plain-list))
-			 ;; Contents in these elements could start on
-			 ;; the same line as the beginning of the
-			 ;; element.  Make sure we start indenting
-			 ;; from the second line.
-			 (org-with-wide-buffer
-			  (goto-char post)
-			  (end-of-line)
-			  (skip-chars-forward " \r\t\n")
-			  (if (eobp) (point) (line-beginning-position))))
-			(t (org-element-property :contents-begin element)))))
-		     (cend (copy-marker
-			    (or (org-element-property :contents-end element)
-				;; Fake contents for source blocks.
-				(org-with-wide-buffer
-				 (goto-char element-end)
-				 (skip-chars-backward " \r\t\n")
-				 (line-beginning-position)))
-			    t)))
-		;; Do not change items indentation individually as it
-		;; might break the list as a whole.  On the other
-		;; hand, when at a plain list, indent it as a whole.
-		(cond ((eq type 'plain-list)
-		       (let ((offset (- ind (org-get-indentation))))
-			 (unless (zerop offset)
-			   (indent-rigidly (org-element-property :begin element)
-					   (org-element-property :end element)
-					   offset))
-			 (goto-char cbeg)))
-		      ((eq type 'item) (goto-char cbeg))
-		      (t (funcall indent-to ind (min cbeg end))))
-		(when (< (point) end)
-		  (cl-case type
-		    ((example-block verse-block))
-		    (src-block
-		     ;; In a source block, indent source code
-		     ;; according to language major mode, but only if
-		     ;; `org-src-tab-acts-natively' is non-nil.
-		     (when (and (< (point) end) org-src-tab-acts-natively)
-		       (ignore-errors
-			 (org-babel-do-in-edit-buffer
-			  (indent-region (point-min) (point-max))))))
-		    (t (org-indent-region (point) (min cend end))))
-		  (goto-char (min cend end))
-		  (when (< (point) end)
-		    (funcall indent-to ind (min element-end end))))
-		(set-marker post nil)
-		(set-marker cbeg nil)
-		(set-marker cend nil))))
-	    (set-marker element-end nil))))
-      (set-marker end nil))))
-
-(defun org-indent-drawer ()
-  "Indent the drawer at point."
-  (interactive)
-  (unless (save-excursion
-	    (beginning-of-line)
-	    (looking-at-p org-drawer-regexp))
-    (user-error "Not at a drawer"))
-  (let ((element (org-element-at-point)))
-    (unless (memq (org-element-type element) '(drawer property-drawer))
-      (user-error "Not at a drawer"))
-    (org-with-wide-buffer
-     (org-indent-region (org-element-property :begin element)
-			(org-element-property :end element))))
-  (message "Drawer at point indented"))
-
-(defun org-indent-block ()
-  "Indent the block at point."
-  (interactive)
-  (unless (save-excursion
-	    (beginning-of-line)
-	    (let ((case-fold-search t))
-	      (looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
-    (user-error "Not at a block"))
-  (let ((element (org-element-at-point)))
-    (unless (memq (org-element-type element)
-		  '(comment-block center-block dynamic-block example-block
-				  export-block quote-block special-block
-				  src-block verse-block))
-      (user-error "Not at a block"))
-    (org-with-wide-buffer
-     (org-indent-region (org-element-property :begin element)
-			(org-element-property :end element))))
-  (message "Block at point indented"))
-
-
-;;; Filling
-
-;; We use our own fill-paragraph and auto-fill functions.
-
-;; `org-fill-paragraph' relies on adaptive filling and context
-;; checking.  Appropriate `fill-prefix' is computed with
-;; `org-adaptive-fill-function'.
-
-;; `org-auto-fill-function' takes care of auto-filling.  It calls
-;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
-;; `org-adaptive-fill-function' value.  Internally,
-;; `org-comment-line-break-function' breaks the line.
-
-;; `org-setup-filling' installs filling and auto-filling related
-;; variables during `org-mode' initialization.
-
-(defun org-setup-filling ()
-  (require 'org-element)
-  ;; Prevent auto-fill from inserting unwanted new items.
-  (when (boundp 'fill-nobreak-predicate)
-    (setq-local
-     fill-nobreak-predicate
-     (org-uniquify
-      (append fill-nobreak-predicate
-	      '(org-fill-line-break-nobreak-p
-		org-fill-n-macro-as-item-nobreak-p
-		org-fill-paragraph-with-timestamp-nobreak-p)))))
-  (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
-    (setq-local paragraph-start paragraph-ending)
-    (setq-local paragraph-separate paragraph-ending))
-  (setq-local fill-paragraph-function 'org-fill-paragraph)
-  (setq-local auto-fill-inhibit-regexp nil)
-  (setq-local adaptive-fill-function 'org-adaptive-fill-function)
-  (setq-local normal-auto-fill-function 'org-auto-fill-function)
-  (setq-local comment-line-break-function 'org-comment-line-break-function))
-
-(defun org-fill-line-break-nobreak-p ()
-  "Non-nil when a new line at point would create an Org line break."
-  (save-excursion
-    (skip-chars-backward "[ \t]")
-    (skip-chars-backward "\\\\")
-    (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
-
-(defun org-fill-paragraph-with-timestamp-nobreak-p ()
-  "Non-nil when a new line at point would split a timestamp."
-  (and (org-at-timestamp-p 'lax)
-       (not (looking-at org-ts-regexp-both))))
-
-(defun org-fill-n-macro-as-item-nobreak-p ()
-  "Non-nil when a new line at point would create a new list."
-  ;; During export, a "n" macro followed by a dot or a closing
-  ;; parenthesis can end up being parsed as a new list item.
-  (looking-at-p "[ \t]*{{{n\\(?:([^\n)]*)\\)?}}}[.)]\\(?:$\\| \\)"))
-
-(declare-function message-in-body-p "message" ())
-(defvar orgtbl-line-start-regexp) ; From org-table.el
-(defun org-adaptive-fill-function ()
-  "Compute a fill prefix for the current line.
-Return fill prefix, as a string, or nil if current line isn't
-meant to be filled.  For convenience, if `adaptive-fill-regexp'
-matches in paragraphs or comments, use it."
-  (catch 'exit
-    (when (derived-mode-p 'message-mode)
-      (save-excursion
-	(beginning-of-line)
-	(cond ((not (message-in-body-p)) (throw 'exit nil))
-	      ((looking-at-p org-table-line-regexp) (throw 'exit nil))
-	      ((looking-at message-cite-prefix-regexp)
-	       (throw 'exit (match-string-no-properties 0)))
-	      ((looking-at org-outline-regexp)
-	       (throw 'exit (make-string (length (match-string 0)) ?\s))))))
-    (org-with-wide-buffer
-     (unless (org-at-heading-p)
-       (let* ((p (line-beginning-position))
-	      (element (save-excursion
-			 (beginning-of-line)
-			 (org-element-at-point)))
-	      (type (org-element-type element))
-	      (post-affiliated (org-element-property :post-affiliated element)))
-	 (unless (< p post-affiliated)
-	   (cl-case type
-	     (comment
-	      (save-excursion
-		(beginning-of-line)
-		(looking-at "[ \t]*")
-		(concat (match-string 0) "# ")))
-	     (footnote-definition "")
-	     ((item plain-list)
-	      (make-string (org-list-item-body-column post-affiliated) ?\s))
-	     (paragraph
-	      ;; Fill prefix is usually the same as the current line,
-	      ;; unless the paragraph is at the beginning of an item.
-	      (let ((parent (org-element-property :parent element)))
-		(save-excursion
-		  (beginning-of-line)
-		  (cond ((eq (org-element-type parent) 'item)
-			 (make-string (org-list-item-body-column
-				       (org-element-property :begin parent))
-				      ?\s))
-			((and adaptive-fill-regexp
-			      ;; Locally disable
-			      ;; `adaptive-fill-function' to let
-			      ;; `fill-context-prefix' handle
-			      ;; `adaptive-fill-regexp' variable.
-			      (let (adaptive-fill-function)
-				(fill-context-prefix
-				 post-affiliated
-				 (org-element-property :end element)))))
-			((looking-at "[ \t]+") (match-string 0))
-			(t  "")))))
-	     (comment-block
-	      ;; Only fill contents if P is within block boundaries.
-	      (let* ((cbeg (save-excursion (goto-char post-affiliated)
-					   (forward-line)
-					   (point)))
-		     (cend (save-excursion
-			     (goto-char (org-element-property :end element))
-			     (skip-chars-backward " \r\t\n")
-			     (line-beginning-position))))
-		(when (and (>= p cbeg) (< p cend))
-		  (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
-		      (match-string 0)
-		    "")))))))))))
-
-(declare-function message-goto-body "message" ())
-(defvar message-cite-prefix-regexp)	; From message.el
-
-(defun org-fill-element (&optional justify)
-  "Fill element at point, when applicable.
-
-This function only applies to comment blocks, comments, example
-blocks and paragraphs.  Also, as a special case, re-align table
-when point is at one.
-
-If JUSTIFY is non-nil (interactively, with prefix argument),
-justify as well.  If `sentence-end-double-space' is non-nil, then
-period followed by one space does not end a sentence, so don't
-break a line there.  The variable `fill-column' controls the
-width for filling.
-
-For convenience, when point is at a plain list, an item or
-a footnote definition, try to fill the first paragraph within."
-  (with-syntax-table org-mode-transpose-word-syntax-table
-    ;; Move to end of line in order to get the first paragraph within
-    ;; a plain list or a footnote definition.
-    (let ((element (save-excursion (end-of-line) (org-element-at-point))))
-      ;; First check if point is in a blank line at the beginning of
-      ;; the buffer.  In that case, ignore filling.
-      (cl-case (org-element-type element)
-	;; Use major mode filling function is src blocks.
-	(src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
-	;; Align Org tables, leave table.el tables as-is.
-	(table-row (org-table-align) t)
-	(table
-	 (when (eq (org-element-property :type element) 'org)
-	   (save-excursion
-	     (goto-char (org-element-property :post-affiliated element))
-	     (org-table-align)))
-	 t)
-	(paragraph
-	 ;; Paragraphs may contain `line-break' type objects.
-	 (let ((beg (max (point-min)
-			 (org-element-property :contents-begin element)))
-	       (end (min (point-max)
-			 (org-element-property :contents-end element))))
-	   ;; Do nothing if point is at an affiliated keyword.
-	   (if (< (line-end-position) beg) t
-	     (when (derived-mode-p 'message-mode)
-	       ;; In `message-mode', do not fill following citation
-	       ;; in current paragraph nor text before message body.
-	       (let ((body-start (save-excursion (message-goto-body))))
-		 (when body-start (setq beg (max body-start beg))))
-	       (when (save-excursion
-		       (re-search-forward
-			(concat "^" message-cite-prefix-regexp) end t))
-		 (setq end (match-beginning 0))))
-	     ;; Fill paragraph, taking line breaks into account.
-	     (save-excursion
-	       (goto-char beg)
-	       (let ((cuts (list beg)))
-		 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
-		   (when (eq 'line-break
-			     (org-element-type
-			      (save-excursion (backward-char)
-					      (org-element-context))))
-		     (push (point) cuts)))
-		 (dolist (c (delq end cuts))
-		   (fill-region-as-paragraph c end justify)
-		   (setq end c))))
-	     t)))
-	;; Contents of `comment-block' type elements should be
-	;; filled as plain text, but only if point is within block
-	;; markers.
-	(comment-block
-	 (let* ((case-fold-search t)
-		(beg (save-excursion
-		       (goto-char (org-element-property :begin element))
-		       (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
-		       (forward-line)
-		       (point)))
-		(end (save-excursion
-		       (goto-char (org-element-property :end element))
-		       (re-search-backward "^[ \t]*#\\+end_comment" nil t)
-		       (line-beginning-position))))
-	   (if (or (< (point) beg) (> (point) end)) t
-	     (fill-region-as-paragraph
-	      (save-excursion (end-of-line)
-			      (re-search-backward "^[ \t]*$" beg 'move)
-			      (line-beginning-position))
-	      (save-excursion (beginning-of-line)
-			      (re-search-forward "^[ \t]*$" end 'move)
-			      (line-beginning-position))
-	      justify))))
-	;; Fill comments.
-	(comment
-	 (let ((begin (org-element-property :post-affiliated element))
-	       (end (org-element-property :end element)))
-	   (when (and (>= (point) begin) (<= (point) end))
-	     (let ((begin (save-excursion
-			    (end-of-line)
-			    (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
-				(progn (forward-line) (point))
-			      begin)))
-		   (end (save-excursion
-			  (end-of-line)
-			  (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
-			      (1- (line-beginning-position))
-			    (skip-chars-backward " \r\t\n")
-			    (line-end-position)))))
-	       ;; Do not fill comments when at a blank line.
-	       (when (> end begin)
-		 (let ((fill-prefix
-			(save-excursion
-			  (beginning-of-line)
-			  (looking-at "[ \t]*#")
-			  (let ((comment-prefix (match-string 0)))
-			    (goto-char (match-end 0))
-			    (if (looking-at adaptive-fill-regexp)
-				(concat comment-prefix (match-string 0))
-			      (concat comment-prefix " "))))))
-		   (save-excursion
-		     (fill-region-as-paragraph begin end justify))))))
-	   t))
-	;; Ignore every other element.
-	(otherwise t)))))
-
-(defun org-fill-paragraph (&optional justify region)
-  "Fill element at point, when applicable.
-
-This function only applies to comment blocks, comments, example
-blocks and paragraphs.  Also, as a special case, re-align table
-when point is at one.
-
-For convenience, when point is at a plain list, an item or
-a footnote definition, try to fill the first paragraph within.
-
-If JUSTIFY is non-nil (interactively, with prefix argument),
-justify as well.  If `sentence-end-double-space' is non-nil, then
-period followed by one space does not end a sentence, so don't
-break a line there.  The variable `fill-column' controls the
-width for filling.
-
-The REGION argument is non-nil if called interactively; in that
-case, if Transient Mark mode is enabled and the mark is active,
-fill each of the elements in the active region, instead of just
-filling the current element."
-  (interactive (progn
-		 (barf-if-buffer-read-only)
-		 (list (if current-prefix-arg 'full) t)))
-  (cond
-   ((and (derived-mode-p 'message-mode)
-	 (or (not (message-in-body-p))
-	     (save-excursion (move-beginning-of-line 1)
-			     (looking-at message-cite-prefix-regexp))))
-    ;; First ensure filling is correct in message-mode.
-    (let ((fill-paragraph-function
-	   (cl-cadadr (assq 'fill-paragraph-function org-fb-vars)))
-	  (fill-prefix (cl-cadadr (assq 'fill-prefix org-fb-vars)))
-	  (paragraph-start (cl-cadadr (assq 'paragraph-start org-fb-vars)))
-	  (paragraph-separate
-	   (cl-cadadr (assq 'paragraph-separate org-fb-vars))))
-      (fill-paragraph nil)))
-   ((and region transient-mark-mode mark-active
-	 (not (eq (region-beginning) (region-end))))
-    (let ((origin (point-marker))
-	  (start (region-beginning)))
-      (unwind-protect
-	  (progn
-	    (goto-char (region-end))
-	    (while (> (point) start)
-	      (org-backward-paragraph)
-	      (org-fill-element justify)))
-	(goto-char origin)
-	(set-marker origin nil))))
-   (t (org-fill-element justify))))
-(org-remap org-mode-map 'fill-paragraph 'org-fill-paragraph)
-
-(defun org-auto-fill-function ()
-  "Auto-fill function."
-  ;; Check if auto-filling is meaningful.
-  (let ((fc (current-fill-column)))
-    (when (and fc (> (current-column) fc))
-      (let* ((fill-prefix (org-adaptive-fill-function))
-	     ;; Enforce empty fill prefix, if required.  Otherwise, it
-	     ;; will be computed again.
-	     (adaptive-fill-mode (not (equal fill-prefix ""))))
-	(when fill-prefix (do-auto-fill))))))
-
-(defun org-comment-line-break-function (&optional soft)
-  "Break line at point and indent, continuing comment if within one.
-The inserted newline is marked hard if variable
-`use-hard-newlines' is true, unless optional argument SOFT is
-non-nil."
-  (if soft (insert-and-inherit ?\n) (newline 1))
-  (save-excursion (forward-char -1) (delete-horizontal-space))
-  (delete-horizontal-space)
-  (indent-to-left-margin)
-  (insert-before-markers-and-inherit fill-prefix))
-
-
-;;; Fixed Width Areas
-
-(defun org-toggle-fixed-width ()
-  "Toggle fixed-width markup.
-
-Add or remove fixed-width markup on current line, whenever it
-makes sense.  Return an error otherwise.
-
-If a region is active and if it contains only fixed-width areas
-or blank lines, remove all fixed-width markup in it.  If the
-region contains anything else, convert all non-fixed-width lines
-to fixed-width ones.
-
-Blank lines at the end of the region are ignored unless the
-region only contains such lines."
-  (interactive)
-  (if (not (org-region-active-p))
-      ;; No region:
-      ;;
-      ;; Remove fixed width marker only in a fixed-with element.
-      ;;
-      ;; Add fixed width maker in paragraphs, in blank lines after
-      ;; elements or at the beginning of a headline or an inlinetask,
-      ;; and before any one-line elements (e.g., a clock).
-      (progn
-        (beginning-of-line)
-        (let* ((element (org-element-at-point))
-               (type (org-element-type element)))
-          (cond
-           ((and (eq type 'fixed-width)
-                 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
-            (replace-match
-	     "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
-           ((and (memq type '(babel-call clock comment diary-sexp headline
-					 horizontal-rule keyword paragraph
-					 planning))
-		 (<= (org-element-property :post-affiliated element) (point)))
-            (skip-chars-forward " \t")
-            (insert ": "))
-           ((and (looking-at-p "[ \t]*$")
-                 (or (eq type 'inlinetask)
-                     (save-excursion
-                       (skip-chars-forward " \r\t\n")
-                       (<= (org-element-property :end element) (point)))))
-            (delete-region (point) (line-end-position))
-            (org-indent-line)
-            (insert ": "))
-           (t (user-error "Cannot insert a fixed-width line here")))))
-    ;; Region active.
-    (let* ((begin (save-excursion
-                    (goto-char (region-beginning))
-                    (line-beginning-position)))
-           (end (copy-marker
-                 (save-excursion
-                   (goto-char (region-end))
-                   (unless (eolp) (beginning-of-line))
-                   (if (save-excursion (re-search-backward "\\S-" begin t))
-                       (progn (skip-chars-backward " \r\t\n") (point))
-                     (point)))))
-           (all-fixed-width-p
-            (catch 'not-all-p
-              (save-excursion
-                (goto-char begin)
-                (skip-chars-forward " \r\t\n")
-                (when (eobp) (throw 'not-all-p nil))
-                (while (< (point) end)
-                  (let ((element (org-element-at-point)))
-                    (if (eq (org-element-type element) 'fixed-width)
-                        (goto-char (org-element-property :end element))
-                      (throw 'not-all-p nil))))
-                t))))
-      (if all-fixed-width-p
-          (save-excursion
-            (goto-char begin)
-            (while (< (point) end)
-              (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
-                (replace-match
-                 "" nil nil nil
-                 (if (= (line-end-position) (match-end 0)) 0 1)))
-              (forward-line)))
-        (let ((min-ind (point-max)))
-          ;; Find minimum indentation across all lines.
-          (save-excursion
-            (goto-char begin)
-            (if (not (save-excursion (re-search-forward "\\S-" end t)))
-                (setq min-ind 0)
-              (catch 'zerop
-                (while (< (point) end)
-                  (unless (looking-at-p "[ \t]*$")
-                    (let ((ind (org-get-indentation)))
-                      (setq min-ind (min min-ind ind))
-                      (when (zerop ind) (throw 'zerop t))))
-                  (forward-line)))))
-          ;; Loop over all lines and add fixed-width markup everywhere
-          ;; but in fixed-width lines.
-          (save-excursion
-            (goto-char begin)
-            (while (< (point) end)
-              (cond
-               ((org-at-heading-p)
-                (insert ": ")
-                (forward-line)
-                (while (and (< (point) end) (looking-at-p "[ \t]*$"))
-                  (insert ":")
-                  (forward-line)))
-               ((looking-at-p "[ \t]*:\\( \\|$\\)")
-                (let* ((element (org-element-at-point))
-                       (element-end (org-element-property :end element)))
-                  (if (eq (org-element-type element) 'fixed-width)
-                      (progn (goto-char element-end)
-                             (skip-chars-backward " \r\t\n")
-                             (forward-line))
-                    (let ((limit (min end element-end)))
-                      (while (< (point) limit)
-                        (org-move-to-column min-ind t)
-                        (insert ": ")
-                        (forward-line))))))
-               (t
-                (org-move-to-column min-ind t)
-                (insert ": ")
-                (forward-line)))))))
-      (set-marker end nil))))
-
-
-;;; Comments
-
-;; Org comments syntax is quite complex.  It requires the entire line
-;; to be just a comment.  Also, even with the right syntax at the
-;; beginning of line, some elements (e.g., verse-block or
-;; example-block) don't accept comments.  Usual Emacs comment commands
-;; cannot cope with those requirements.  Therefore, Org replaces them.
-
-;; Org still relies on `comment-dwim', but cannot trust
-;; `comment-only-p'.  So, `comment-region-function' and
-;; `uncomment-region-function' both point
-;; to`org-comment-or-uncomment-region'.  Eventually,
-;; `org-insert-comment' takes care of insertion of comments at the
-;; beginning of line.
-
-;; `org-setup-comments-handling' install comments related variables
-;; during `org-mode' initialization.
-
-(defun org-setup-comments-handling ()
-  (interactive)
-  (setq-local comment-use-syntax nil)
-  (setq-local comment-start "# ")
-  (setq-local comment-start-skip "^\\s-*#\\(?: \\|$\\)")
-  (setq-local comment-insert-comment-function 'org-insert-comment)
-  (setq-local comment-region-function 'org-comment-or-uncomment-region)
-  (setq-local uncomment-region-function 'org-comment-or-uncomment-region))
-
-(defun org-insert-comment ()
-  "Insert an empty comment above current line.
-If the line is empty, insert comment at its beginning.  When
-point is within a source block, comment according to the related
-major mode."
-  (if (let ((element (org-element-at-point)))
-	(and (eq (org-element-type element) 'src-block)
-	     (< (save-excursion
-		  (goto-char (org-element-property :post-affiliated element))
-		  (line-end-position))
-		(point))
-	     (> (save-excursion
-		  (goto-char (org-element-property :end element))
-		  (skip-chars-backward " \r\t\n")
-		  (line-beginning-position))
-		(point))))
-      (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
-    (beginning-of-line)
-    (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
-      (open-line 1))
-    (org-indent-line)
-    (insert "# ")))
-
-(defvar comment-empty-lines)		; From newcomment.el.
-(defun org-comment-or-uncomment-region (beg end &rest _)
-  "Comment or uncomment each non-blank line in the region.
-Uncomment each non-blank line between BEG and END if it only
-contains commented lines.  Otherwise, comment them.  If region is
-strictly within a source block, use appropriate comment syntax."
-  (if (let ((element (org-element-at-point)))
-	(and (eq (org-element-type element) 'src-block)
-	     (< (save-excursion
-		  (goto-char (org-element-property :post-affiliated element))
-		  (line-end-position))
-		beg)
-	     (>= (save-excursion
-		   (goto-char (org-element-property :end element))
-		   (skip-chars-backward " \r\t\n")
-		   (line-beginning-position))
-		 end)))
-      ;; Translate region boundaries for the Org buffer to the source
-      ;; buffer.
-      (let ((offset (- end beg)))
-	(save-excursion
-	  (goto-char beg)
-	  (org-babel-do-in-edit-buffer
-	   (comment-or-uncomment-region (point) (+ offset (point))))))
-    (save-restriction
-      ;; Restrict region
-      (narrow-to-region (save-excursion (goto-char beg)
-					(skip-chars-forward " \r\t\n" end)
-					(line-beginning-position))
-			(save-excursion (goto-char end)
-					(skip-chars-backward " \r\t\n" beg)
-					(line-end-position)))
-      (let ((uncommentp
-	     ;; UNCOMMENTP is non-nil when every non blank line between
-	     ;; BEG and END is a comment.
-	     (save-excursion
-	       (goto-char (point-min))
-	       (while (and (not (eobp))
-			   (let ((element (org-element-at-point)))
-			     (and (eq (org-element-type element) 'comment)
-				  (goto-char (min (point-max)
-						  (org-element-property
-						   :end element)))))))
-	       (eobp))))
-	(if uncommentp
-	    ;; Only blank lines and comments in region: uncomment it.
-	    (save-excursion
-	      (goto-char (point-min))
-	      (while (not (eobp))
-		(when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
-		  (replace-match "" nil nil nil 1))
-		(forward-line)))
-	  ;; Comment each line in region.
-	  (let ((min-indent (point-max)))
-	    ;; First find the minimum indentation across all lines.
-	    (save-excursion
-	      (goto-char (point-min))
-	      (while (and (not (eobp)) (not (zerop min-indent)))
-		(unless (looking-at "[ \t]*$")
-		  (setq min-indent (min min-indent (current-indentation))))
-		(forward-line)))
-	    ;; Then loop over all lines.
-	    (save-excursion
-	      (goto-char (point-min))
-	      (while (not (eobp))
-		(unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
-		  ;; Don't get fooled by invisible text (e.g. link path)
-		  ;; when moving to column MIN-INDENT.
-		  (let ((buffer-invisibility-spec nil))
-		    (org-move-to-column min-indent t))
-		  (insert comment-start))
-		(forward-line)))))))))
-
-(defun org-comment-dwim (_arg)
-  "Call `comment-dwim' within a source edit buffer if needed."
-  (interactive "*P")
-  (if (org-in-src-block-p)
-      (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
-    (call-interactively 'comment-dwim)))
-
-
-;;; Timestamps API
-
-;; This section contains tools to operate on timestamp objects, as
-;; returned by, e.g. `org-element-context'.
-
-(defun org-timestamp--to-internal-time (timestamp &optional end)
-  "Encode TIMESTAMP object into Emacs internal time.
-Use end of date range or time range when END is non-nil."
-  (apply #'encode-time
-	 (cons 0
-	       (mapcar
-		(lambda (prop) (or (org-element-property prop timestamp) 0))
-		(if end '(:minute-end :hour-end :day-end :month-end :year-end)
-		  '(:minute-start :hour-start :day-start :month-start
-				  :year-start))))))
-
-(defun org-timestamp-has-time-p (timestamp)
-  "Non-nil when TIMESTAMP has a time specified."
-  (org-element-property :hour-start timestamp))
-
-(defun org-timestamp-format (timestamp format &optional end utc)
-  "Format a TIMESTAMP object into a string.
-
-FORMAT is a format specifier to be passed to
-`format-time-string'.
-
-When optional argument END is non-nil, use end of date-range or
-time-range, if possible.
-
-When optional argument UTC is non-nil, time will be expressed as
-Universal Time."
-  (format-time-string
-   format (org-timestamp--to-internal-time timestamp end)
-   (and utc t)))
-
-(defun org-timestamp-split-range (timestamp &optional end)
-  "Extract a TIMESTAMP object from a date or time range.
-
-END, when non-nil, means extract the end of the range.
-Otherwise, extract its start.
-
-Return a new timestamp object."
-  (let ((type (org-element-property :type timestamp)))
-    (if (memq type '(active inactive diary)) timestamp
-      (let ((split-ts (org-element-copy timestamp)))
-	;; Set new type.
-	(org-element-put-property
-	 split-ts :type (if (eq type 'active-range) 'active 'inactive))
-	;; Copy start properties over end properties if END is
-	;; non-nil.  Otherwise, copy end properties over `start' ones.
-	(let ((p-alist '((:minute-start . :minute-end)
-			 (:hour-start . :hour-end)
-			 (:day-start . :day-end)
-			 (:month-start . :month-end)
-			 (:year-start . :year-end))))
-	  (dolist (p-cell p-alist)
-	    (org-element-put-property
-	     split-ts
-	     (funcall (if end #'car #'cdr) p-cell)
-	     (org-element-property
-	      (funcall (if end #'cdr #'car) p-cell) split-ts)))
-	  ;; Eventually refresh `:raw-value'.
-	  (org-element-put-property split-ts :raw-value nil)
-	  (org-element-put-property
-	   split-ts :raw-value (org-element-interpret-data split-ts)))))))
-
-(defun org-timestamp-translate (timestamp &optional boundary)
-  "Translate TIMESTAMP object to custom format.
-
-Format string is defined in `org-time-stamp-custom-formats',
-which see.
-
-When optional argument BOUNDARY is non-nil, it is either the
-symbol `start' or `end'.  In this case, only translate the
-starting or ending part of TIMESTAMP if it is a date or time
-range.  Otherwise, translate both parts.
-
-Return timestamp as-is if `org-display-custom-times' is nil or if
-it has a `diary' type."
-  (let ((type (org-element-property :type timestamp)))
-    (if (or (not org-display-custom-times) (eq type 'diary))
-	(org-element-interpret-data timestamp)
-      (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
-			  org-time-stamp-custom-formats)))
-	(if (and (not boundary) (memq type '(active-range inactive-range)))
-	    (concat (org-timestamp-format timestamp fmt)
-		    "--"
-		    (org-timestamp-format timestamp fmt t))
-	  (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
-
-
-
-;;; Other stuff.
-
-(defvar reftex-docstruct-symbol)
-(defvar org--rds)
-
-(defun org-reftex-citation ()
-  "Use reftex-citation to insert a citation into the buffer.
-This looks for a line like
-
-#+BIBLIOGRAPHY: foo plain option:-d
-
-and derives from it that foo.bib is the bibliography file relevant
-for this document.  It then installs the necessary environment for RefTeX
-to work in this buffer and calls `reftex-citation'  to insert a citation
-into the buffer.
-
-Export of such citations to both LaTeX and HTML is handled by the contributed
-package ox-bibtex by Taru Karttunen."
-  (interactive)
-  (let ((reftex-docstruct-symbol 'org--rds)
-	org--rds bib)
-    (org-with-wide-buffer
-     (let ((case-fold-search t)
-	   (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
-       (if (not (save-excursion
-		  (or (re-search-forward re nil t)
-		      (re-search-backward re nil t))))
-	   (user-error "No bibliography defined in file")
-	 (setq bib (concat (match-string 1) ".bib")
-	       org--rds (list (list 'bib bib))))))
-    (call-interactively 'reftex-citation)))
-
-;;;; Functions extending outline functionality
-
-(defun org-beginning-of-line (&optional n)
-  "Go to the beginning of the current visible line.
-
-If this is a headline, and `org-special-ctrl-a/e' is set, ignore
-tags on the first attempt, and only move to after the tags when
-the cursor is already beyond the end of the headline.
-
-With argument N not nil or 1, move forward N - 1 lines first."
-  (interactive "^p")
-  (let ((origin (point))
-	(special (pcase org-special-ctrl-a/e
-		   (`(,C-a . ,_) C-a) (_ org-special-ctrl-a/e)))
-	deactivate-mark)
-    ;; First move to a visible line.
-    (if (bound-and-true-p visual-line-mode)
-	(beginning-of-visual-line n)
-      (move-beginning-of-line n)
-      ;; `move-beginning-of-line' may leave point after invisible
-      ;; characters if line starts with such of these (e.g., with
-      ;; a link at column 0).  Really move to the beginning of the
-      ;; current visible line.
-      (beginning-of-line))
-    (cond
-     ;; No special behavior.  Point is already at the beginning of
-     ;; a line, logical or visual.
-     ((not special))
-     ;; `beginning-of-visual-line' left point before logical beginning
-     ;; of line: point is at the beginning of a visual line.  Bail
-     ;; out.
-     ((and (bound-and-true-p visual-line-mode) (not (bolp))))
-     ((let ((case-fold-search nil)) (looking-at org-complex-heading-regexp))
-      ;; At a headline, special position is before the title, but
-      ;; after any TODO keyword or priority cookie.
-      (let ((refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
-			 (line-end-position)))
-	    (bol (point)))
-	(if (eq special 'reversed)
-	    (when (and (= origin bol) (eq last-command this-command))
-	      (goto-char refpos))
-	  (when (or (> origin refpos) (= origin bol))
-	    (goto-char refpos)))))
-     ((and (looking-at org-list-full-item-re)
-	   (memq (org-element-type (save-match-data (org-element-at-point)))
-		 '(item plain-list)))
-      ;; Set special position at first white space character after
-      ;; bullet, and check-box, if any.
-      (let ((after-bullet
-	     (let ((box (match-end 3)))
-	       (cond ((not box) (match-end 1))
-		     ((eq (char-after box) ?\s) (1+ box))
-		     (t box)))))
-	(if (eq special 'reversed)
-	    (when (and (= (point) origin) (eq last-command this-command))
-	      (goto-char after-bullet))
-	  (when (or (> origin after-bullet) (= (point) origin))
-	    (goto-char after-bullet)))))
-     ;; No special context.  Point is already at beginning of line.
-     (t nil))))
-
-(defun org-end-of-line (&optional n)
-  "Go to the end of the line, but before ellipsis, if any.
-
-If this is a headline, and `org-special-ctrl-a/e' is set, ignore
-tags on the first attempt, and only move to after the tags when
-the cursor is already beyond the end of the headline.
-
-With argument N not nil or 1, move forward N - 1 lines first."
-  (interactive "^p")
-  (let ((origin (point))
-	(special (pcase org-special-ctrl-a/e
-		   (`(,_ . ,C-e) C-e) (_ org-special-ctrl-a/e)))
-	deactivate-mark)
-    ;; First move to a visible line.
-    (if (bound-and-true-p visual-line-mode)
-	(beginning-of-visual-line n)
-      (move-beginning-of-line n))
-    (cond
-     ;; At a headline, with tags.
-     ((and special
-	   (save-excursion
-	     (beginning-of-line)
-	     (let ((case-fold-search nil))
-	       (looking-at org-complex-heading-regexp)))
-	   (match-end 5))
-      (let ((tags (save-excursion
-		    (goto-char (match-beginning 5))
-		    (skip-chars-backward " \t")
-		    (point)))
-	    (visual-end (and (bound-and-true-p visual-line-mode)
-			     (save-excursion
-			       (end-of-visual-line)
-			       (point)))))
-	;; If `end-of-visual-line' brings us before end of line or
-	;; even tags, i.e., the headline spans over multiple visual
-	;; lines, move there.
-	(cond ((and visual-end
-		    (< visual-end tags)
-		    (<= origin visual-end))
-	       (goto-char visual-end))
-	      ((eq special 'reversed)
-	       (if (and (= origin (line-end-position))
-			(eq this-command last-command))
-		   (goto-char tags)
-		 (end-of-line)))
-	      (t
-	       (if (or (< origin tags) (= origin (line-end-position)))
-		   (goto-char tags)
-		 (end-of-line))))))
-     ((bound-and-true-p visual-line-mode)
-      (let ((bol (line-beginning-position)))
-	(end-of-visual-line)
-	;; If `end-of-visual-line' gets us past the ellipsis at the
-	;; end of a line, backtrack and use `end-of-line' instead.
-	(when (/= bol (line-beginning-position))
-	  (goto-char bol)
-	  (end-of-line))))
-     (t (end-of-line)))))
-
-(define-key org-mode-map "\C-a" 'org-beginning-of-line)
-(define-key org-mode-map "\C-e" 'org-end-of-line)
-
-(defun org-backward-sentence (&optional _arg)
-  "Go to beginning of sentence, or beginning of table field.
-This will call `backward-sentence' or `org-table-beginning-of-field',
-depending on context."
-  (interactive)
-  (let* ((element (org-element-at-point))
-	 (contents-begin (org-element-property :contents-begin element))
-	 (table (org-element-lineage element '(table) t)))
-    (if (and table
-	     (> (point) contents-begin)
-	     (<= (point) (org-element-property :contents-end table)))
-	(call-interactively #'org-table-beginning-of-field)
-      (save-restriction
-	(when (and contents-begin
-		   (< (point-min) contents-begin)
-		   (> (point) contents-begin))
-	  (narrow-to-region contents-begin
-			    (org-element-property :contents-end element)))
-	(call-interactively #'backward-sentence)))))
-
-(defun org-forward-sentence (&optional _arg)
-  "Go to end of sentence, or end of table field.
-This will call `forward-sentence' or `org-table-end-of-field',
-depending on context."
-  (interactive)
-  (if (and (org-at-heading-p)
-	   (save-restriction (skip-chars-forward " \t") (not (eolp))))
-      (save-restriction
-	(narrow-to-region (line-beginning-position) (line-end-position))
-	(call-interactively #'forward-sentence))
-    (let* ((element (org-element-at-point))
-	   (contents-end (org-element-property :contents-end element))
-	   (table (org-element-lineage element '(table) t)))
-      (if (and table
-	       (>= (point) (org-element-property :contents-begin table))
-	       (< (point) contents-end))
-	  (call-interactively #'org-table-end-of-field)
-	(save-restriction
-	  (when (and contents-end
-		     (> (point-max) contents-end)
-		     ;; Skip blank lines between elements.
-		     (< (org-element-property :end element)
-			(save-excursion (goto-char contents-end)
-					(skip-chars-forward " \r\t\n"))))
-	    (narrow-to-region (org-element-property :contents-begin element)
-			      contents-end))
-	  ;; End of heading is considered as the end of a sentence.
-	  (let ((sentence-end (concat (sentence-end) "\\|^\\*+ .*$")))
-	    (call-interactively #'forward-sentence)))))))
-
-(define-key org-mode-map "\M-a" 'org-backward-sentence)
-(define-key org-mode-map "\M-e" 'org-forward-sentence)
-
-(defun org-kill-line (&optional _arg)
-  "Kill line, to tags or end of line."
-  (interactive)
-  (cond
-   ((or (not org-special-ctrl-k)
-	(bolp)
-	(not (org-at-heading-p)))
-    (when (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
-	       org-ctrl-k-protect-subtree
-	       (or (eq org-ctrl-k-protect-subtree 'error)
-		   (not (y-or-n-p "Kill hidden subtree along with headline? "))))
-      (user-error
-       (substitute-command-keys
-	"`\\[org-kill-line]' aborted as it would kill a hidden subtree")))
-    (call-interactively
-     (if (bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
-   ((looking-at ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$")
-    (kill-region (point) (match-beginning 1))
-    (org-set-tags nil t))
-   (t (kill-region (point) (point-at-eol)))))
-
-(define-key org-mode-map "\C-k" 'org-kill-line)
-
-(defun org-yank (&optional arg)
-  "Yank.  If the kill is a subtree, treat it specially.
-This command will look at the current kill and check if is a single
-subtree, or a series of subtrees[1].  If it passes the test, and if the
-cursor is at the beginning of a line or after the stars of a currently
-empty headline, then the yank is handled specially.  How exactly depends
-on the value of the following variables.
-
-`org-yank-folded-subtrees'
-    By default, this variable is non-nil, which results in
-    subtree(s) being folded after insertion, except if doing so
-    would swallow text after the yanked text.
-
-`org-yank-adjusted-subtrees'
-    When non-nil (the default value is nil), the subtree will be
-    promoted or demoted in order to fit into the local outline tree
-    structure, which means that the level will be adjusted so that it
-    becomes the smaller one of the two *visible* surrounding headings.
-
-Any prefix to this command will cause `yank' to be called directly with
-no special treatment.  In particular, a simple `\\[universal-argument]' prefix \
-will just
-plainly yank the text as it is.
-
-\[1] The test checks if the first non-white line is a heading
-    and if there are no other headings with fewer stars."
-  (interactive "P")
-  (org-yank-generic 'yank arg))
-
-(defun org-yank-generic (command arg)
-  "Perform some yank-like command.
-
-This function implements the behavior described in the `org-yank'
-documentation.  However, it has been generalized to work for any
-interactive command with similar behavior."
-
-  ;; pretend to be command COMMAND
-  (setq this-command command)
-
-  (if arg
-      (call-interactively command)
-
-    (let ((subtreep ; is kill a subtree, and the yank position appropriate?
-	   (and (org-kill-is-subtree-p)
-		(or (bolp)
-		    (and (looking-at "[ \t]*$")
-			 (string-match
-			  "\\`\\*+\\'"
-			  (buffer-substring (point-at-bol) (point)))))))
-	  swallowp)
-      (cond
-       ((and subtreep org-yank-folded-subtrees)
-	(let ((beg (point))
-	      end)
-	  (if (and subtreep org-yank-adjusted-subtrees)
-	      (org-paste-subtree nil nil 'for-yank)
-	    (call-interactively command))
-
-	  (setq end (point))
-	  (goto-char beg)
-	  (when (and (bolp) subtreep
-		     (not (setq swallowp
-				(org-yank-folding-would-swallow-text beg end))))
-	    (org-with-limited-levels
-	     (or (looking-at org-outline-regexp)
-		 (re-search-forward org-outline-regexp-bol end t))
-	     (while (and (< (point) end) (looking-at org-outline-regexp))
-	       (outline-hide-subtree)
-	       (org-cycle-show-empty-lines 'folded)
-	       (condition-case nil
-		   (outline-forward-same-level 1)
-		 (error (goto-char end))))))
-	  (when swallowp
-	    (message
-	     "Inserted text not folded because that would swallow text"))
-
-	  (goto-char end)
-	  (skip-chars-forward " \t\n\r")
-	  (beginning-of-line 1)
-	  (push-mark beg 'nomsg)))
-       ((and subtreep org-yank-adjusted-subtrees)
-	(let ((beg (point-at-bol)))
-	  (org-paste-subtree nil nil 'for-yank)
-	  (push-mark beg 'nomsg)))
-       (t
-	(call-interactively command))))))
-
-(defun org-yank-folding-would-swallow-text (beg end)
-  "Would hide-subtree at BEG swallow any text after END?"
-  (let (level)
-    (org-with-limited-levels
-     (save-excursion
-       (goto-char beg)
-       (when (or (looking-at org-outline-regexp)
-		 (re-search-forward org-outline-regexp-bol end t))
-	 (setq level (org-outline-level)))
-       (goto-char end)
-       (skip-chars-forward " \t\r\n\v\f")
-       (not (or (eobp)
-		(and (bolp) (looking-at-p org-outline-regexp)
-		     (<= (org-outline-level) level))))))))
-
-(define-key org-mode-map "\C-y" 'org-yank)
-
-(defun org-truely-invisible-p ()
-  "Check if point is at a character currently not visible.
-This version does not only check the character property, but also
-`visible-mode'."
-  (unless (bound-and-true-p visible-mode)
-    (org-invisible-p)))
-
-(defun org-invisible-p2 ()
-  "Check if point is at a character currently not visible.
-
-If the point is at EOL (and not at the beginning of a buffer too),
-move it back by one char before doing this check."
-  (save-excursion
-    (when (and (eolp) (not (bobp)))
-      (backward-char 1))
-    (org-invisible-p)))
-
-(defun org-back-to-heading (&optional invisible-ok)
-  "Call `outline-back-to-heading', but provide a better error message."
-  (condition-case nil
-      (outline-back-to-heading invisible-ok)
-    (error (error "Before first headline at position %d in buffer %s"
-		  (point) (current-buffer)))))
-
-(defun org-before-first-heading-p ()
-  "Before first heading?"
-  (save-excursion
-    (end-of-line)
-    (null (re-search-backward org-outline-regexp-bol nil t))))
-
-(defun org-at-heading-p (&optional ignored)
-  (outline-on-heading-p t))
-
-(defun org-in-commented-heading-p (&optional no-inheritance)
-  "Non-nil if point is under a commented heading.
-This function also checks ancestors of the current headline,
-unless optional argument NO-INHERITANCE is non-nil."
-  (cond
-   ((org-before-first-heading-p) nil)
-   ((let ((headline (nth 4 (org-heading-components))))
-      (and headline
-	   (let ((case-fold-search nil))
-	     (string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
-			     headline)))))
-   (no-inheritance nil)
-   (t
-    (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
-
-(defun org-at-comment-p nil
-  "Is cursor in a commented line?"
-  (save-excursion
-    (save-match-data
-      (beginning-of-line)
-      (looking-at "^[ \t]*# "))))
-
-(defun org-at-drawer-p nil
-  "Is cursor at a drawer keyword?"
-  (save-excursion
-    (move-beginning-of-line 1)
-    (looking-at org-drawer-regexp)))
-
-(defun org-at-block-p nil
-  "Is cursor at a block keyword?"
-  (save-excursion
-    (move-beginning-of-line 1)
-    (looking-at org-block-regexp)))
-
-(defun org-point-at-end-of-empty-headline ()
-  "If point is at the end of an empty headline, return t, else nil.
-If the heading only contains a TODO keyword, it is still still considered
-empty."
-  (let ((case-fold-search nil))
-    (and (looking-at "[ \t]*$")
-	 org-todo-line-regexp
-	 (save-excursion
-	   (beginning-of-line)
-	   (looking-at org-todo-line-regexp)
-	   (string= (match-string 3) "")))))
-
-(defun org-at-heading-or-item-p ()
-  (or (org-at-heading-p) (org-at-item-p)))
-
-(defun org-at-target-p ()
-  (or (org-in-regexp org-radio-target-regexp)
-      (org-in-regexp org-target-regexp)))
-;; Compatibility alias with Org versions < 7.8.03
-(defalias 'org-on-target-p 'org-at-target-p)
-
-(defun org-up-heading-all (arg)
-  "Move to the heading line of which the present line is a subheading.
-This function considers both visible and invisible heading lines.
-With argument, move up ARG levels."
-  (outline-up-heading arg t))
-
-(defun org-up-heading-safe ()
-  "Move to the heading line of which the present line is a subheading.
-This version will not throw an error.  It will return the level of the
-headline found, or nil if no higher level is found.
-
-Also, this function will be a lot faster than `outline-up-heading',
-because it relies on stars being the outline starters.  This can really
-make a significant difference in outlines with very many siblings."
-  (when (ignore-errors (org-back-to-heading t))
-    (let ((level-up (1- (funcall outline-level))))
-      (and (> level-up 0)
-	   (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
-	   (funcall outline-level)))))
-
-(defun org-first-sibling-p ()
-  "Is this heading the first child of its parents?"
-  (interactive)
-  (let ((re org-outline-regexp-bol)
-	level l)
-    (unless (org-at-heading-p t)
-      (user-error "Not at a heading"))
-    (setq level (funcall outline-level))
-    (save-excursion
-      (if (not (re-search-backward re nil t))
-	  t
-	(setq l (funcall outline-level))
-	(< l level)))))
-
-(defun org-goto-sibling (&optional previous)
-  "Goto the next sibling, even if it is invisible.
-When PREVIOUS is set, go to the previous sibling instead.  Returns t
-when a sibling was found.  When none is found, return nil and don't
-move point."
-  (let ((fun (if previous 're-search-backward 're-search-forward))
-	(pos (point))
-	(re org-outline-regexp-bol)
-	level l)
-    (when (ignore-errors (org-back-to-heading t))
-      (setq level (funcall outline-level))
-      (catch 'exit
-	(or previous (forward-char 1))
-	(while (funcall fun re nil t)
-	  (setq l (funcall outline-level))
-	  (when (< l level) (goto-char pos) (throw 'exit nil))
-	  (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
-	(goto-char pos)
-	nil))))
-
-(defun org-show-siblings ()
-  "Show all siblings of the current headline."
-  (save-excursion
-    (while (org-goto-sibling) (org-flag-heading nil)))
-  (save-excursion
-    (while (org-goto-sibling 'previous)
-      (org-flag-heading nil))))
-
-(defun org-goto-first-child ()
-  "Goto the first child, even if it is invisible.
-Return t when a child was found.  Otherwise don't move point and
-return nil."
-  (let (level (pos (point)) (re org-outline-regexp-bol))
-    (when (ignore-errors (org-back-to-heading t))
-      (setq level (outline-level))
-      (forward-char 1)
-      (if (and (re-search-forward re nil t) (> (outline-level) level))
-	  (progn (goto-char (match-beginning 0)) t)
-	(goto-char pos) nil))))
-
-(defun org-show-hidden-entry ()
-  "Show an entry where even the heading is hidden."
-  (save-excursion
-    (org-show-entry)))
-
-(defun org-flag-heading (flag &optional entry)
-  "Flag the current heading.  FLAG non-nil means make invisible.
-When ENTRY is non-nil, show the entire entry."
-  (save-excursion
-    (org-back-to-heading t)
-    ;; Check if we should show the entire entry
-    (if entry
-	(progn
-	  (org-show-entry)
-	  (save-excursion
-	    (and (outline-next-heading)
-		 (org-flag-heading nil))))
-      (outline-flag-region (max (point-min) (1- (point)))
-			   (save-excursion (outline-end-of-heading) (point))
-			   flag))))
-
-(defun org-get-next-sibling ()
-  "Move to next heading of the same level, and return point.
-If there is no such heading, return nil.
-This is like outline-next-sibling, but invisible headings are ok."
-  (let ((level (funcall outline-level)))
-    (outline-next-heading)
-    (while (and (not (eobp)) (> (funcall outline-level) level))
-      (outline-next-heading))
-    (unless (or (eobp) (< (funcall outline-level) level))
-      (point))))
-
-(defun org-get-last-sibling ()
-  "Move to previous heading of the same level, and return point.
-If there is no such heading, return nil."
-  (let ((opoint (point))
-	(level (funcall outline-level)))
-    (outline-previous-heading)
-    (when (and (/= (point) opoint) (outline-on-heading-p t))
-      (while (and (> (funcall outline-level) level)
-		  (not (bobp)))
-	(outline-previous-heading))
-      (unless (< (funcall outline-level) level)
-        (point)))))
-
-(defun org-end-of-subtree (&optional invisible-ok to-heading)
-  "Goto to the end of a subtree."
-  ;; This contains an exact copy of the original function, but it uses
-  ;; `org-back-to-heading', to make it work also in invisible
-  ;; trees.  And is uses an invisible-ok argument.
-  ;; Under Emacs this is not needed, but the old outline.el needs this fix.
-  ;; Furthermore, when used inside Org, finding the end of a large subtree
-  ;; with many children and grandchildren etc, this can be much faster
-  ;; than the outline version.
-  (org-back-to-heading invisible-ok)
-  (let ((first t)
-	(level (funcall outline-level)))
-    (if (and (derived-mode-p 'org-mode) (< level 1000))
-	;; A true heading (not a plain list item), in Org
-	;; This means we can easily find the end by looking
-	;; only for the right number of stars.  Using a regexp to do
-	;; this is so much faster than using a Lisp loop.
-	(let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
-	  (forward-char 1)
-	  (and (re-search-forward re nil 'move) (beginning-of-line 1)))
-      ;; something else, do it the slow way
-      (while (and (not (eobp))
-		  (or first (> (funcall outline-level) level)))
-	(setq first nil)
-	(outline-next-heading)))
-    (unless to-heading
-      (when (memq (preceding-char) '(?\n ?\^M))
-	;; Go to end of line before heading
-	(forward-char -1)
-	(when (memq (preceding-char) '(?\n ?\^M))
-	  ;; leave blank line before heading
-	  (forward-char -1)))))
-  (point))
-
-(defun org-end-of-meta-data (&optional full)
-  "Skip planning line and properties drawer in current entry.
-When optional argument FULL is non-nil, also skip empty lines,
-clocking lines and regular drawers at the beginning of the
-entry."
-  (org-back-to-heading t)
-  (forward-line)
-  (when (looking-at-p org-planning-line-re) (forward-line))
-  (when (looking-at org-property-drawer-re)
-    (goto-char (match-end 0))
-    (forward-line))
-  (when (and full (not (org-at-heading-p)))
-    (catch 'exit
-      (let ((end (save-excursion (outline-next-heading) (point)))
-	    (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
-	(while (not (eobp))
-	  (cond ((looking-at-p org-drawer-regexp)
-		 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
-		     (forward-line)
-		   (throw 'exit t)))
-		((looking-at-p re) (forward-line))
-		(t (throw 'exit t))))))))
-
-(defun org-forward-heading-same-level (arg &optional invisible-ok)
-  "Move forward to the ARG'th subheading at same level as this one.
-Stop at the first and last subheadings of a superior heading.
-Normally this only looks at visible headings, but when INVISIBLE-OK is
-non-nil it will also look at invisible ones."
-  (interactive "p")
-  (let ((backward? (and arg (< arg 0))))
-    (if (org-before-first-heading-p)
-	(if backward? (goto-char (point-min)) (outline-next-heading))
-      (org-back-to-heading invisible-ok)
-      (unless backward? (end-of-line))	;do not match current headline
-      (let ((level (- (match-end 0) (match-beginning 0) 1))
-	    (f (if backward? #'re-search-backward #'re-search-forward))
-	    (count (if arg (abs arg) 1))
-	    (result (point)))
-	(while (and (> count 0)
-		    (funcall f org-outline-regexp-bol nil 'move))
-	  (let ((l (- (match-end 0) (match-beginning 0) 1)))
-	    (cond ((< l level) (setq count 0))
-		  ((and (= l level)
-			(or invisible-ok
-			    (not (org-invisible-p
-				  (line-beginning-position)))))
-		   (cl-decf count)
-		   (when (= l level) (setq result (point)))))))
-	(goto-char result))
-      (beginning-of-line))))
-
-(defun org-backward-heading-same-level (arg &optional invisible-ok)
-  "Move backward to the ARG'th subheading at same level as this one.
-Stop at the first and last subheadings of a superior heading."
-  (interactive "p")
-  (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
-
-(defun org-next-visible-heading (arg)
-  "Move to the next visible heading.
-
-This function wraps `outline-next-visible-heading' with
-`org-with-limited-levels' in order to skip over inline tasks and
-respect customization of `org-odd-levels-only'."
-  (interactive "p")
-  (org-with-limited-levels
-   (outline-next-visible-heading arg)))
-
-(defun org-previous-visible-heading (arg)
-  "Move to the previous visible heading.
-
-This function wraps `outline-previous-visible-heading' with
-`org-with-limited-levels' in order to skip over inline tasks and
-respect customization of `org-odd-levels-only'."
-  (interactive "p")
-  (org-with-limited-levels
-   (outline-previous-visible-heading arg)))
-
-(defun org-next-block (arg &optional backward block-regexp)
-  "Jump to the next block.
-
-With a prefix argument ARG, jump forward ARG many blocks.
-
-When BACKWARD is non-nil, jump to the previous block.
-
-When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
-Match data is set according to this regexp when the function
-returns.
-
-Return point at beginning of the opening line of found block.
-Throw an error if no block is found."
-  (interactive "p")
-  (let ((re (or block-regexp "^[ \t]*#\\+BEGIN"))
-	(case-fold-search t)
-	(search-fn (if backward #'re-search-backward #'re-search-forward))
-	(count (or arg 1))
-	(origin (point))
-	last-element)
-    (if backward (beginning-of-line) (end-of-line))
-    (while (and (> count 0) (funcall search-fn re nil t))
-      (let ((element (save-excursion
-		       (goto-char (match-beginning 0))
-		       (save-match-data (org-element-at-point)))))
-	(when (and (memq (org-element-type element)
-			 '(center-block comment-block dynamic-block
-					example-block export-block quote-block
-					special-block src-block verse-block))
-		   (<= (match-beginning 0)
-		       (org-element-property :post-affiliated element)))
-	  (setq last-element element)
-	  (cl-decf count))))
-    (if (= count 0)
-	(prog1 (goto-char (org-element-property :post-affiliated last-element))
-	  (save-match-data (org-show-context)))
-      (goto-char origin)
-      (user-error "No %s code blocks" (if backward "previous" "further")))))
-
-(defun org-previous-block (arg &optional block-regexp)
-  "Jump to the previous block.
-With a prefix argument ARG, jump backward ARG many source blocks.
-When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
-  (interactive "p")
-  (org-next-block arg t block-regexp))
-
-(defun org-forward-paragraph ()
-  "Move forward to beginning of next paragraph or equivalent.
-
-The function moves point to the beginning of the next visible
-structural element, which can be a paragraph, a table, a list
-item, etc.  It also provides some special moves for convenience:
-
-  - On an affiliated keyword, jump to the beginning of the
-    relative element.
-  - On an item or a footnote definition, move to the second
-    element inside, if any.
-  - On a table or a property drawer, jump after it.
-  - On a verse or source block, stop after blank lines."
-  (interactive)
-  (unless (eobp)
-    (let* ((deactivate-mark nil)
-	   (element (org-element-at-point))
-	   (type (org-element-type element))
-	   (post-affiliated (org-element-property :post-affiliated element))
-	   (contents-begin (org-element-property :contents-begin element))
-	   (contents-end (org-element-property :contents-end element))
-	   (end (let ((end (org-element-property :end element)) (parent element))
-		  (while (and (setq parent (org-element-property :parent parent))
-			      (= (org-element-property :contents-end parent) end))
-		    (setq end (org-element-property :end parent)))
-		  end)))
-      (cond ((not element)
-	     (skip-chars-forward " \r\t\n")
-	     (or (eobp) (beginning-of-line)))
-	    ;; On affiliated keywords, move to element's beginning.
-	    ((< (point) post-affiliated)
-	     (goto-char post-affiliated))
-	    ;; At a table row, move to the end of the table.  Similarly,
-	    ;; at a node property, move to the end of the property
-	    ;; drawer.
-	    ((memq type '(node-property table-row))
-	     (goto-char (org-element-property
-			 :end (org-element-property :parent element))))
-	    ((memq type '(property-drawer table)) (goto-char end))
-	    ;; Consider blank lines as separators in verse and source
-	    ;; blocks to ease editing.
-	    ((memq type '(src-block verse-block))
-	     (when (eq type 'src-block)
-	       (setq contents-end
-		     (save-excursion (goto-char end)
-				     (skip-chars-backward " \r\t\n")
-				     (line-beginning-position))))
-	     (beginning-of-line)
-	     (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
-	     (if (not (re-search-forward "^[ \t]*$" contents-end t))
-		 (goto-char end)
-	       (skip-chars-forward " \r\t\n")
-	       (if (= (point) contents-end) (goto-char end)
-		 (beginning-of-line))))
-	    ;; With no contents, just skip element.
-	    ((not contents-begin) (goto-char end))
-	    ;; If contents are invisible, skip the element altogether.
-	    ((org-invisible-p (line-end-position))
-	     (cl-case type
-	       (headline
-		(org-with-limited-levels (outline-next-visible-heading 1)))
-	       ;; At a plain list, make sure we move to the next item
-	       ;; instead of skipping the whole list.
-	       (plain-list (forward-char)
-			   (org-forward-paragraph))
-	       (otherwise (goto-char end))))
-	    ((>= (point) contents-end) (goto-char end))
-	    ((>= (point) contents-begin)
-	     ;; This can only happen on paragraphs and plain lists.
-	     (cl-case type
-	       (paragraph (goto-char end))
-	       ;; At a plain list, try to move to second element in
-	       ;; first item, if possible.
-	       (plain-list (end-of-line)
-			   (org-forward-paragraph))))
-	    ;; When contents start on the middle of a line (e.g. in
-	    ;; items and footnote definitions), try to reach first
-	    ;; element starting after current line.
-	    ((> (line-end-position) contents-begin)
-	     (end-of-line)
-	     (org-forward-paragraph))
-	    (t (goto-char contents-begin))))))
-
-(defun org-backward-paragraph ()
-  "Move backward to start of previous paragraph or equivalent.
-
-The function moves point to the beginning of the current
-structural element, which can be a paragraph, a table, a list
-item, etc., or to the beginning of the previous visible one if
-point is already there.  It also provides some special moves for
-convenience:
-
-  - On an affiliated keyword, jump to the first one.
-  - On a table or a property drawer, move to its beginning.
-  - On comment, example, export, src and verse blocks, stop
-    before blank lines."
-  (interactive)
-  (unless (bobp)
-    (let* ((deactivate-mark nil)
-	   (element (org-element-at-point))
-	   (type (org-element-type element))
-	   (contents-end (org-element-property :contents-end element))
-	   (post-affiliated (org-element-property :post-affiliated element))
-	   (begin (org-element-property :begin element))
-	   (special?			;blocks handled specially
-	    (memq type '(comment-block example-block export-block src-block
-				       verse-block)))
-	   (contents-begin
-	    (if special?
-		;; These types have no proper contents.  Fake line
-		;; below the block opening line as contents beginning.
-		(save-excursion (goto-char begin) (line-beginning-position 2))
-	      (org-element-property :contents-begin element))))
-      (cond
-       ((not element) (goto-char (point-min)))
-       ((= (point) begin)
-	(backward-char)
-	(org-backward-paragraph))
-       ((<= (point) post-affiliated) (goto-char begin))
-       ;; Special behavior: on a table or a property drawer, move to
-       ;; its beginning.
-       ((memq type '(node-property table-row))
-	(goto-char (org-element-property
-		    :post-affiliated (org-element-property :parent element))))
-       (special?
-	(if (<= (point) contents-begin) (goto-char post-affiliated)
-	  ;; Inside a verse block, see blank lines as paragraph
-	  ;; separators.
-	  (let ((origin (point)))
-	    (skip-chars-backward " \r\t\n" contents-begin)
-	    (when (re-search-backward "^[ \t]*$" contents-begin 'move)
-	      (skip-chars-forward " \r\t\n" origin)
-	      (if (= (point) origin) (goto-char contents-begin)
-		(beginning-of-line))))))
-       ((eq type 'paragraph) (goto-char contents-begin)
-	;; When at first paragraph in an item or a footnote definition,
-	;; move directly to beginning of line.
-	(let ((parent-contents
-	       (org-element-property
-		:contents-begin (org-element-property :parent element))))
-	  (when (and parent-contents (= parent-contents contents-begin))
-	    (beginning-of-line))))
-       ;; At the end of a greater element, move to the beginning of
-       ;; the last element within.
-       ((and contents-end (>= (point) contents-end))
-	(goto-char (1- contents-end))
-	(org-backward-paragraph))
-       (t (goto-char (or post-affiliated begin))))
-      ;; Ensure we never leave point invisible.
-      (when (org-invisible-p (point)) (beginning-of-visual-line)))))
-
-(defun org-forward-element ()
-  "Move forward by one element.
-Move to the next element at the same level, when possible."
-  (interactive)
-  (cond ((eobp) (user-error "Cannot move further down"))
-	((org-with-limited-levels (org-at-heading-p))
-	 (let ((origin (point)))
-	   (goto-char (org-end-of-subtree nil t))
-	   (unless (org-with-limited-levels (org-at-heading-p))
-	     (goto-char origin)
-	     (user-error "Cannot move further down"))))
-	(t
-	 (let* ((elem (org-element-at-point))
-		(end (org-element-property :end elem))
-		(parent (org-element-property :parent elem)))
-	   (cond ((and parent (= (org-element-property :contents-end parent) end))
-		  (goto-char (org-element-property :end parent)))
-		 ((integer-or-marker-p end) (goto-char end))
-		 (t (message "No element at point")))))))
-
-(defun org-backward-element ()
-  "Move backward by one element.
-Move to the previous element at the same level, when possible."
-  (interactive)
-  (cond ((bobp) (user-error "Cannot move further up"))
-	((org-with-limited-levels (org-at-heading-p))
-	 ;; At a headline, move to the previous one, if any, or stay
-	 ;; here.
-	 (let ((origin (point)))
-	   (org-with-limited-levels (org-backward-heading-same-level 1))
-	   ;; When current headline has no sibling above, move to its
-	   ;; parent.
-	   (when (= (point) origin)
-	     (or (org-with-limited-levels (org-up-heading-safe))
-		 (progn (goto-char origin)
-			(user-error "Cannot move further up"))))))
-	(t
-	 (let* ((elem (org-element-at-point))
-		(beg (org-element-property :begin elem)))
-	   (cond
-	    ;; Move to beginning of current element if point isn't
-	    ;; there already.
-	    ((null beg) (message "No element at point"))
-	    ((/= (point) beg) (goto-char beg))
-	    (t (goto-char beg)
-	       (skip-chars-backward " \r\t\n")
-	       (unless (bobp)
-		 (let ((prev (org-element-at-point)))
-		   (goto-char (org-element-property :begin prev))
-		   (while (and (setq prev (org-element-property :parent prev))
-			       (<= (org-element-property :end prev) beg))
-		     (goto-char (org-element-property :begin prev)))))))))))
-
-(defun org-up-element ()
-  "Move to upper element."
-  (interactive)
-  (if (org-with-limited-levels (org-at-heading-p))
-      (unless (org-up-heading-safe) (user-error "No surrounding element"))
-    (let* ((elem (org-element-at-point))
-	   (parent (org-element-property :parent elem)))
-      (if parent (goto-char (org-element-property :begin parent))
-	(if (org-with-limited-levels (org-before-first-heading-p))
-	    (user-error "No surrounding element")
-	  (org-with-limited-levels (org-back-to-heading)))))))
-
-(defun org-down-element ()
-  "Move to inner element."
-  (interactive)
-  (let ((element (org-element-at-point)))
-    (cond
-     ((memq (org-element-type element) '(plain-list table))
-      (goto-char (org-element-property :contents-begin element))
-      (forward-char))
-     ((memq (org-element-type element) org-element-greater-elements)
-      ;; If contents are hidden, first disclose them.
-      (when (org-invisible-p (line-end-position)) (org-cycle))
-      (goto-char (or (org-element-property :contents-begin element)
-		     (user-error "No content for this element"))))
-     (t (user-error "No inner element")))))
-
-(defun org-drag-element-backward ()
-  "Move backward element at point."
-  (interactive)
-  (let ((elem (or (org-element-at-point)
-		  (user-error "No element at point"))))
-    (if (eq (org-element-type elem) 'headline)
-	;; Preserve point when moving a whole tree, even if point was
-	;; on blank lines below the headline.
-	(let ((offset (skip-chars-backward " \t\n")))
-	  (unwind-protect (org-move-subtree-up)
-	    (forward-char (- offset))))
-      (let ((prev-elem
-	     (save-excursion
-	       (goto-char (org-element-property :begin elem))
-	       (skip-chars-backward " \r\t\n")
-	       (unless (bobp)
-		 (let* ((beg (org-element-property :begin elem))
-			(prev (org-element-at-point))
-			(up prev))
-		   (while (and (setq up (org-element-property :parent up))
-			       (<= (org-element-property :end up) beg))
-		     (setq prev up))
-		   prev)))))
-	;; Error out if no previous element or previous element is
-	;; a parent of the current one.
-	(if (or (not prev-elem) (org-element-nested-p elem prev-elem))
-	    (user-error "Cannot drag element backward")
-	  (let ((pos (point)))
-	    (org-element-swap-A-B prev-elem elem)
-	    (goto-char (+ (org-element-property :begin prev-elem)
-			  (- pos (org-element-property :begin elem))))))))))
-
-(defun org-drag-element-forward ()
-  "Move forward element at point."
-  (interactive)
-  (let* ((pos (point))
-	 (elem (or (org-element-at-point)
-		   (user-error "No element at point"))))
-    (when (= (point-max) (org-element-property :end elem))
-      (user-error "Cannot drag element forward"))
-    (goto-char (org-element-property :end elem))
-    (let ((next-elem (org-element-at-point)))
-      (when (or (org-element-nested-p elem next-elem)
-		(and (eq (org-element-type next-elem) 'headline)
-		     (not (eq (org-element-type elem) 'headline))))
-	(goto-char pos)
-	(user-error "Cannot drag element forward"))
-      ;; Compute new position of point: it's shifted by NEXT-ELEM
-      ;; body's length (without final blanks) and by the length of
-      ;; blanks between ELEM and NEXT-ELEM.
-      (let ((size-next (- (save-excursion
-			    (goto-char (org-element-property :end next-elem))
-			    (skip-chars-backward " \r\t\n")
-			    (forward-line)
-			    ;; Small correction if buffer doesn't end
-			    ;; with a newline character.
-			    (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
-			  (org-element-property :begin next-elem)))
-	    (size-blank (- (org-element-property :end elem)
-			   (save-excursion
-			     (goto-char (org-element-property :end elem))
-			     (skip-chars-backward " \r\t\n")
-			     (forward-line)
-			     (point)))))
-	(org-element-swap-A-B elem next-elem)
-	(goto-char (+ pos size-next size-blank))))))
-
-(defun org-drag-line-forward (arg)
-  "Drag the line at point ARG lines forward."
-  (interactive "p")
-  (dotimes (_ (abs arg))
-    (let ((c (current-column)))
-      (if (< 0 arg)
-	  (progn
-	    (beginning-of-line 2)
-	    (transpose-lines 1)
-	    (beginning-of-line 0))
-	(transpose-lines 1)
-	(beginning-of-line -1))
-      (org-move-to-column c))))
-
-(defun org-drag-line-backward (arg)
-  "Drag the line at point ARG lines backward."
-  (interactive "p")
-  (org-drag-line-forward (- arg)))
-
-(defun org-mark-element ()
-  "Put point at beginning of this element, mark at end.
-
-Interactively, if this command is repeated or (in Transient Mark
-mode) if the mark is active, it marks the next element after the
-ones already marked."
-  (interactive)
-  (let (deactivate-mark)
-    (if (and (called-interactively-p 'any)
-	     (or (and (eq last-command this-command) (mark t))
-		 (and transient-mark-mode mark-active)))
-	(set-mark
-	 (save-excursion
-	   (goto-char (mark))
-	   (goto-char (org-element-property :end (org-element-at-point)))))
-      (let ((element (org-element-at-point)))
-	(end-of-line)
-	(push-mark (org-element-property :end element) t t)
-	(goto-char (org-element-property :begin element))))))
-
-(defun org-narrow-to-element ()
-  "Narrow buffer to current element."
-  (interactive)
-  (let ((elem (org-element-at-point)))
-    (cond
-     ((eq (car elem) 'headline)
-      (narrow-to-region
-       (org-element-property :begin elem)
-       (org-element-property :end elem)))
-     ((memq (car elem) org-element-greater-elements)
-      (narrow-to-region
-       (org-element-property :contents-begin elem)
-       (org-element-property :contents-end elem)))
-     (t
-      (narrow-to-region
-       (org-element-property :begin elem)
-       (org-element-property :end elem))))))
-
-(defun org-transpose-element ()
-  "Transpose current and previous elements, keeping blank lines between.
-Point is moved after both elements."
-  (interactive)
-  (org-skip-whitespace)
-  (let ((end (org-element-property :end (org-element-at-point))))
-    (org-drag-element-backward)
-    (goto-char end)))
-
-(defun org-unindent-buffer ()
-  "Un-indent the visible part of the buffer.
-Relative indentation (between items, inside blocks, etc.) isn't
-modified."
-  (interactive)
-  (unless (eq major-mode 'org-mode)
-    (user-error "Cannot un-indent a buffer not in Org mode"))
-  (letrec ((parse-tree (org-element-parse-buffer 'greater-element))
-	   (unindent-tree
-	    (lambda (contents)
-	      (dolist (element (reverse contents))
-		(if (memq (org-element-type element) '(headline section))
-		    (funcall unindent-tree (org-element-contents element))
-		  (save-excursion
-		    (save-restriction
-		      (narrow-to-region
-		       (org-element-property :begin element)
-		       (org-element-property :end element))
-		      (org-do-remove-indentation))))))))
-    (funcall unindent-tree (org-element-contents parse-tree))))
-
-(defun org-show-children (&optional level)
-  "Show all direct subheadings of this heading.
-Prefix arg LEVEL is how many levels below the current level
-should be shown.  Default is enough to cause the following
-heading to appear."
-  (interactive "p")
-  ;; If `orgstruct-mode' is active, use the slower version.
-  (if orgstruct-mode (call-interactively #'outline-show-children)
-    (save-excursion
-      (org-back-to-heading t)
-      (let* ((current-level (funcall outline-level))
-	     (max-level (org-get-valid-level
-			 current-level
-			 (if level (prefix-numeric-value level) 1)))
-	     (end (save-excursion (org-end-of-subtree t t)))
-	     (regexp-fmt "^\\*\\{%d,%s\\}\\(?: \\|$\\)")
-	     (past-first-child nil)
-	     ;; Make sure to skip inlinetasks.
-	     (re (format regexp-fmt
-			 current-level
-			 (cond
-			  ((not (featurep 'org-inlinetask)) "")
-			  (org-odd-levels-only (- (* 2 org-inlinetask-min-level)
-						  3))
-			  (t (1- org-inlinetask-min-level))))))
-	;; Display parent heading.
-	(outline-flag-region (line-end-position 0) (line-end-position) nil)
-	(forward-line)
-	;; Display children.  First child may be deeper than expected
-	;; MAX-LEVEL.  Since we want to display it anyway, adjust
-	;; MAX-LEVEL accordingly.
-	(while (re-search-forward re end t)
-	  (unless past-first-child
-	    (setq re (format regexp-fmt
-			     current-level
-			     (max (funcall outline-level) max-level)))
-	    (setq past-first-child t))
-	  (outline-flag-region
-	   (line-end-position 0) (line-end-position) nil))))))
-
-(defun org-show-subtree ()
-  "Show everything after this heading at deeper levels."
-  (interactive)
-  (outline-flag-region
-   (point)
-   (save-excursion
-     (org-end-of-subtree t t))
-   nil))
-
-(defun org-show-entry ()
-  "Show the body directly following this heading.
-Show the heading too, if it is currently invisible."
-  (interactive)
-  (save-excursion
-    (ignore-errors
-      (org-back-to-heading t)
-      (outline-flag-region
-       (max (point-min) (1- (point)))
-       (save-excursion
-	 (if (re-search-forward
-	      (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
-	     (match-beginning 1)
-	   (point-max)))
-       nil)
-      (org-cycle-hide-drawers 'children))))
-
-(defun org-make-options-regexp (kwds &optional extra)
-  "Make a regular expression for keyword lines.
-KWDS is a list of keywords, as strings.  Optional argument EXTRA,
-when non-nil, is a regexp matching keywords names."
-  (concat "^[ \t]*#\\+\\("
-	  (regexp-opt kwds)
-	  (and extra (concat (and kwds "\\|") extra))
-	  "\\):[ \t]*\\(.*\\)"))
-
-;;;; Integration with and fixes for other packages
-
-;;; Imenu support
-
-(defvar-local org-imenu-markers nil
-  "All markers currently used by Imenu.")
-
-(defun org-imenu-new-marker (&optional pos)
-  "Return a new marker for use by Imenu, and remember the marker."
-  (let ((m (make-marker)))
-    (move-marker m (or pos (point)))
-    (push m org-imenu-markers)
-    m))
-
-(defun org-imenu-get-tree ()
-  "Produce the index for Imenu."
-  (dolist (x org-imenu-markers) (move-marker x nil))
-  (setq org-imenu-markers nil)
-  (let* ((case-fold-search nil)
-	 (n org-imenu-depth)
-	 (re (concat "^" (org-get-limited-outline-regexp)))
-	 (subs (make-vector (1+ n) nil))
-	 (last-level 0)
-	 m level head0 head)
-    (org-with-wide-buffer
-     (goto-char (point-max))
-     (while (re-search-backward re nil t)
-       (setq level (org-reduced-level (funcall outline-level)))
-       (when (and (<= level n)
-		  (looking-at org-complex-heading-regexp)
-		  (setq head0 (match-string-no-properties 4)))
-	 (setq head (org-link-display-format head0)
-	       m (org-imenu-new-marker))
-	 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
-	 (if (>= level last-level)
-	     (push (cons head m) (aref subs level))
-	   (push (cons head (aref subs (1+ level))) (aref subs level))
-	   (cl-loop for i from (1+ level) to n do (aset subs i nil)))
-	 (setq last-level level))))
-    (aref subs 1)))
-
-(eval-after-load "imenu"
-  '(progn
-     (add-hook 'imenu-after-jump-hook
-	       (lambda ()
-		 (when (derived-mode-p 'org-mode)
-		   (org-show-context 'org-goto))))))
-
-(defun org-link-display-format (s)
-  "Replace links in string S with their description.
-If there is no description, use the link target."
-  (save-match-data
-    (replace-regexp-in-string
-     org-bracket-link-analytic-regexp
-     (lambda (m)
-       (if (match-end 5) (match-string 5 m)
-	 (concat (match-string 1 m) (match-string 3 m))))
-     s nil t)))
-
-(defun org-toggle-link-display ()
-  "Toggle the literal or descriptive display of links."
-  (interactive)
-  (if org-descriptive-links
-      (progn (org-remove-from-invisibility-spec '(org-link))
-	     (org-restart-font-lock)
-	     (setq org-descriptive-links nil))
-    (progn (add-to-invisibility-spec '(org-link))
-	   (org-restart-font-lock)
-	   (setq org-descriptive-links t))))
-
-;; Speedbar support
-
-(defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
-  "Overlay marking the agenda restriction line in speedbar.")
-(overlay-put org-speedbar-restriction-lock-overlay
-	     'face 'org-agenda-restriction-lock)
-(overlay-put org-speedbar-restriction-lock-overlay
-	     'help-echo "Agendas are currently limited to this item.")
-(delete-overlay org-speedbar-restriction-lock-overlay)
-
-(defun org-speedbar-set-agenda-restriction ()
-  "Restrict future agenda commands to the location at point in speedbar.
-To get rid of the restriction, use `\\[org-agenda-remove-restriction-lock]'."
-  (interactive)
-  (require 'org-agenda)
-  (let (p m tp np dir txt)
-    (cond
-     ((setq p (text-property-any (point-at-bol) (point-at-eol)
-				 'org-imenu t))
-      (setq m (get-text-property p 'org-imenu-marker))
-      (with-current-buffer (marker-buffer m)
-	(goto-char m)
-	(org-agenda-set-restriction-lock 'subtree)))
-     ((setq p (text-property-any (point-at-bol) (point-at-eol)
-				 'speedbar-function 'speedbar-find-file))
-      (setq tp (previous-single-property-change
-		(1+ p) 'speedbar-function)
-	    np (next-single-property-change
-		tp 'speedbar-function)
-	    dir (speedbar-line-directory)
-	    txt (buffer-substring-no-properties (or tp (point-min))
-						(or np (point-max))))
-      (with-current-buffer (find-file-noselect
-			    (let ((default-directory dir))
-			      (expand-file-name txt)))
-	(unless (derived-mode-p 'org-mode)
-	  (user-error "Cannot restrict to non-Org mode file"))
-	(org-agenda-set-restriction-lock 'file)))
-     (t (user-error "Don't know how to restrict Org mode agenda")))
-    (move-overlay org-speedbar-restriction-lock-overlay
-		  (point-at-bol) (point-at-eol))
-    (setq current-prefix-arg nil)
-    (org-agenda-maybe-redo)))
-
-(defvar speedbar-file-key-map)
-(declare-function speedbar-add-supported-extension "speedbar" (extension))
-(eval-after-load "speedbar"
-  '(progn
-     (speedbar-add-supported-extension ".org")
-     (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
-     (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
-     (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
-     (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
-     (add-hook 'speedbar-visiting-tag-hook
-	       (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
-
-;;; Fixes and Hacks for problems with other packages
-
-(defun org--flyspell-object-check-p (element)
-  "Non-nil when Flyspell can check object at point.
-ELEMENT is the element at point."
-  (let ((object (save-excursion
-		  (when (looking-at-p "\\>") (backward-char))
-		  (org-element-context element))))
-    (cl-case (org-element-type object)
-      ;; Prevent checks in links due to keybinding conflict with
-      ;; Flyspell.
-      ((code entity export-snippet inline-babel-call
-	     inline-src-block line-break latex-fragment link macro
-	     statistics-cookie target timestamp verbatim)
-       nil)
-      (footnote-reference
-       ;; Only in inline footnotes, within the definition.
-       (and (eq (org-element-property :type object) 'inline)
-	    (< (save-excursion
-		 (goto-char (org-element-property :begin object))
-		 (search-forward ":" nil t 2))
-	       (point))))
-      (otherwise t))))
-
-(defun org-mode-flyspell-verify ()
-  "Function used for `flyspell-generic-check-word-predicate'."
-  (if (org-at-heading-p)
-      ;; At a headline or an inlinetask, check title only.  This is
-      ;; faster than relying on `org-element-at-point'.
-      (and (save-excursion (beginning-of-line)
-			   (and (let ((case-fold-search t))
-				  (not (looking-at-p "\\*+ END[ \t]*$")))
-				(let ((case-fold-search nil))
-				  (looking-at org-complex-heading-regexp))))
-	   (match-beginning 4)
-	   (>= (point) (match-beginning 4))
-	   (or (not (match-beginning 5))
-	       (< (point) (match-beginning 5))))
-    (let* ((element (org-element-at-point))
-	   (post-affiliated (org-element-property :post-affiliated element)))
-      (cond
-       ;; Ignore checks in all affiliated keywords but captions.
-       ((< (point) post-affiliated)
-	(and (save-excursion
-	       (beginning-of-line)
-	       (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
-	     (> (point) (match-end 0))
-	     (org--flyspell-object-check-p element)))
-       ;; Ignore checks in LOGBOOK (or equivalent) drawer.
-       ((let ((log (org-log-into-drawer)))
-	  (and log
-	       (let ((drawer (org-element-lineage element '(drawer))))
-		 (and drawer
-		      (eq (compare-strings
-			   log nil nil
-			   (org-element-property :drawer-name drawer) nil nil t)
-			  t)))))
-	nil)
-       (t
-	(cl-case (org-element-type element)
-	  ((comment quote-section) t)
-	  (comment-block
-	   ;; Allow checks between block markers, not on them.
-	   (and (> (line-beginning-position) post-affiliated)
-		(save-excursion
-		  (end-of-line)
-		  (skip-chars-forward " \r\t\n")
-		  (< (point) (org-element-property :end element)))))
-	  ;; Arbitrary list of keywords where checks are meaningful.
-	  ;; Make sure point is on the value part of the element.
-	  (keyword
-	   (and (member (org-element-property :key element)
-			'("DESCRIPTION" "TITLE"))
-		(save-excursion
-		  (search-backward ":" (line-beginning-position) t))))
-	  ;; Check is globally allowed in paragraphs verse blocks and
-	  ;; table rows (after affiliated keywords) but some objects
-	  ;; must not be affected.
-	  ((paragraph table-row verse-block)
-	   (let ((cbeg (org-element-property :contents-begin element))
-		 (cend (org-element-property :contents-end element)))
-	     (and cbeg (>= (point) cbeg) (< (point) cend)
-		  (org--flyspell-object-check-p element))))))))))
-(put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
-
-(defun org-remove-flyspell-overlays-in (beg end)
-  "Remove flyspell overlays in region."
-  (and (bound-and-true-p flyspell-mode)
-       (fboundp 'flyspell-delete-region-overlays)
-       (flyspell-delete-region-overlays beg end)))
-
-(defvar flyspell-delayed-commands)
-(eval-after-load "flyspell"
-  '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
-
-;; Make `bookmark-jump' shows the jump location if it was hidden.
-(eval-after-load "bookmark"
-  '(if (boundp 'bookmark-after-jump-hook)
-       ;; We can use the hook
-       (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
-     ;; Hook not available, use advice
-     (defadvice bookmark-jump (after org-make-visible activate)
-       "Make the position visible."
-       (org-bookmark-jump-unhide))))
-
-;; Make sure saveplace shows the location if it was hidden
-(eval-after-load "saveplace"
-  '(defadvice save-place-find-file-hook (after org-make-visible activate)
-     "Make the position visible."
-     (org-bookmark-jump-unhide)))
-
-;; Make sure ecb shows the location if it was hidden
-(eval-after-load "ecb"
-  '(defadvice ecb-method-clicked (after esf/org-show-context activate)
-     "Make hierarchy visible when jumping into location from ECB tree buffer."
-     (when (derived-mode-p 'org-mode)
-       (org-show-context))))
-
-(defun org-bookmark-jump-unhide ()
-  "Unhide the current position, to show the bookmark location."
-  (and (derived-mode-p 'org-mode)
-       (or (org-invisible-p)
-	   (save-excursion (goto-char (max (point-min) (1- (point))))
-			   (org-invisible-p)))
-       (org-show-context 'bookmark-jump)))
-
-(defun org-mark-jump-unhide ()
-  "Make the point visible with `org-show-context' after jumping to the mark."
-  (when (and (derived-mode-p 'org-mode)
-	     (org-invisible-p))
-    (org-show-context 'mark-goto)))
-
-(eval-after-load "simple"
-  '(defadvice pop-to-mark-command (after org-make-visible activate)
-     "Make the point visible with `org-show-context'."
-     (org-mark-jump-unhide)))
-
-(eval-after-load "simple"
-  '(defadvice exchange-point-and-mark (after org-make-visible activate)
-     "Make the point visible with `org-show-context'."
-     (org-mark-jump-unhide)))
-
-(eval-after-load "simple"
-  '(defadvice pop-global-mark (after org-make-visible activate)
-     "Make the point visible with `org-show-context'."
-     (org-mark-jump-unhide)))
-
-;; Make session.el ignore our circular variable
-(defvar session-globals-exclude)
-(eval-after-load "session"
-  '(add-to-list 'session-globals-exclude 'org-mark-ring))
-
-;;;; Finish up
-
-(provide 'org)
-
-(run-hooks 'org-load-hook)
-
-;;; org.el ends here
diff --git a/elpa/org-9.1.14/org.elc b/elpa/org-9.1.14/org.elc
deleted file mode 100644
index 4cc42d0..0000000
--- a/elpa/org-9.1.14/org.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/orgcard.pdf b/elpa/org-9.1.14/orgcard.pdf
deleted file mode 100644
index 3f3f8df..0000000
--- a/elpa/org-9.1.14/orgcard.pdf
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-ascii.el b/elpa/org-9.1.14/ox-ascii.el
deleted file mode 100644
index c3ccb59..0000000
--- a/elpa/org-9.1.14/ox-ascii.el
+++ /dev/null
@@ -1,2182 +0,0 @@
-;;; ox-ascii.el --- ASCII Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; This library implements an ASCII back-end for Org generic exporter.
-;; See Org manual for more information.
-
-;;; Code:
-
-(require 'ox)
-(require 'ox-publish)
-(require 'cl-lib)
-
-(declare-function aa2u "ext:ascii-art-to-unicode" ())
-
-;;; Define Back-End
-;;
-;; The following setting won't allow modifying preferred charset
-;; through a buffer keyword or an option item, but, since the property
-;; will appear in communication channel nonetheless, it allows
-;; overriding `org-ascii-charset' variable on the fly by the ext-plist
-;; mechanism.
-;;
-;; We also install a filter for headlines and sections, in order to
-;; control blank lines separating them in output string.
-
-(org-export-define-backend 'ascii
-  '((bold . org-ascii-bold)
-    (center-block . org-ascii-center-block)
-    (clock . org-ascii-clock)
-    (code . org-ascii-code)
-    (drawer . org-ascii-drawer)
-    (dynamic-block . org-ascii-dynamic-block)
-    (entity . org-ascii-entity)
-    (example-block . org-ascii-example-block)
-    (export-block . org-ascii-export-block)
-    (export-snippet . org-ascii-export-snippet)
-    (fixed-width . org-ascii-fixed-width)
-    (footnote-reference . org-ascii-footnote-reference)
-    (headline . org-ascii-headline)
-    (horizontal-rule . org-ascii-horizontal-rule)
-    (inline-src-block . org-ascii-inline-src-block)
-    (inlinetask . org-ascii-inlinetask)
-    (inner-template . org-ascii-inner-template)
-    (italic . org-ascii-italic)
-    (item . org-ascii-item)
-    (keyword . org-ascii-keyword)
-    (latex-environment . org-ascii-latex-environment)
-    (latex-fragment . org-ascii-latex-fragment)
-    (line-break . org-ascii-line-break)
-    (link . org-ascii-link)
-    (node-property . org-ascii-node-property)
-    (paragraph . org-ascii-paragraph)
-    (plain-list . org-ascii-plain-list)
-    (plain-text . org-ascii-plain-text)
-    (planning . org-ascii-planning)
-    (property-drawer . org-ascii-property-drawer)
-    (quote-block . org-ascii-quote-block)
-    (radio-target . org-ascii-radio-target)
-    (section . org-ascii-section)
-    (special-block . org-ascii-special-block)
-    (src-block . org-ascii-src-block)
-    (statistics-cookie . org-ascii-statistics-cookie)
-    (strike-through . org-ascii-strike-through)
-    (subscript . org-ascii-subscript)
-    (superscript . org-ascii-superscript)
-    (table . org-ascii-table)
-    (table-cell . org-ascii-table-cell)
-    (table-row . org-ascii-table-row)
-    (target . org-ascii-target)
-    (template . org-ascii-template)
-    (timestamp . org-ascii-timestamp)
-    (underline . org-ascii-underline)
-    (verbatim . org-ascii-verbatim)
-    (verse-block . org-ascii-verse-block))
-  :menu-entry
-  '(?t "Export to Plain Text"
-       ((?A "As ASCII buffer"
-	    (lambda (a s v b)
-	      (org-ascii-export-as-ascii a s v b '(:ascii-charset ascii))))
-	(?a "As ASCII file"
-	    (lambda (a s v b)
-	      (org-ascii-export-to-ascii a s v b '(:ascii-charset ascii))))
-	(?L "As Latin1 buffer"
-	    (lambda (a s v b)
-	      (org-ascii-export-as-ascii a s v b '(:ascii-charset latin1))))
-	(?l "As Latin1 file"
-	    (lambda (a s v b)
-	      (org-ascii-export-to-ascii a s v b '(:ascii-charset latin1))))
-	(?U "As UTF-8 buffer"
-	    (lambda (a s v b)
-	      (org-ascii-export-as-ascii a s v b '(:ascii-charset utf-8))))
-	(?u "As UTF-8 file"
-	    (lambda (a s v b)
-	      (org-ascii-export-to-ascii a s v b '(:ascii-charset utf-8))))))
-  :filters-alist '((:filter-headline . org-ascii-filter-headline-blank-lines)
-		   (:filter-parse-tree org-ascii-filter-paragraph-spacing
-				       org-ascii-filter-comment-spacing)
-		   (:filter-section . org-ascii-filter-headline-blank-lines))
-  :options-alist
-  '((:subtitle "SUBTITLE" nil nil parse)
-    (:ascii-bullets nil nil org-ascii-bullets)
-    (:ascii-caption-above nil nil org-ascii-caption-above)
-    (:ascii-charset nil nil org-ascii-charset)
-    (:ascii-global-margin nil nil org-ascii-global-margin)
-    (:ascii-format-drawer-function nil nil org-ascii-format-drawer-function)
-    (:ascii-format-inlinetask-function
-     nil nil org-ascii-format-inlinetask-function)
-    (:ascii-headline-spacing nil nil org-ascii-headline-spacing)
-    (:ascii-indented-line-width nil nil org-ascii-indented-line-width)
-    (:ascii-inlinetask-width nil nil org-ascii-inlinetask-width)
-    (:ascii-inner-margin nil nil org-ascii-inner-margin)
-    (:ascii-links-to-notes nil nil org-ascii-links-to-notes)
-    (:ascii-list-margin nil nil org-ascii-list-margin)
-    (:ascii-paragraph-spacing nil nil org-ascii-paragraph-spacing)
-    (:ascii-quote-margin nil nil org-ascii-quote-margin)
-    (:ascii-table-keep-all-vertical-lines
-     nil nil org-ascii-table-keep-all-vertical-lines)
-    (:ascii-table-use-ascii-art nil nil org-ascii-table-use-ascii-art)
-    (:ascii-table-widen-columns nil nil org-ascii-table-widen-columns)
-    (:ascii-text-width nil nil org-ascii-text-width)
-    (:ascii-underline nil nil org-ascii-underline)
-    (:ascii-verbatim-format nil nil org-ascii-verbatim-format)))
-
-
-
-;;; User Configurable Variables
-
-(defgroup org-export-ascii nil
-  "Options for exporting Org mode files to ASCII."
-  :tag "Org Export ASCII"
-  :group 'org-export)
-
-(defcustom org-ascii-text-width 72
-  "Maximum width of exported text.
-This number includes margin size, as set in
-`org-ascii-global-margin'."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'integer)
-
-(defcustom org-ascii-global-margin 0
-  "Width of the left margin, in number of characters."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'integer)
-
-(defcustom org-ascii-inner-margin 2
-  "Width of the inner margin, in number of characters.
-Inner margin is applied between each headline."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'integer)
-
-(defcustom org-ascii-quote-margin 6
-  "Width of margin used for quoting text, in characters.
-This margin is applied on both sides of the text.  It is also
-applied on the left side of contents in descriptive lists."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'integer)
-
-(defcustom org-ascii-list-margin 0
-  "Width of margin used for plain lists, in characters.
-This margin applies to top level list only, not to its
-sub-lists."
-  :group 'org-export-ascii
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'integer)
-
-(defcustom org-ascii-inlinetask-width 30
-  "Width of inline tasks, in number of characters.
-This number ignores any margin."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'integer)
-
-(defcustom org-ascii-headline-spacing '(1 . 2)
-  "Number of blank lines inserted around headlines.
-
-This variable can be set to a cons cell.  In that case, its car
-represents the number of blank lines present before headline
-contents whereas its cdr reflects the number of blank lines after
-contents.
-
-A nil value replicates the number of blank lines found in the
-original Org buffer at the same place."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Replicate original spacing" nil)
-	  (cons :tag "Set a uniform spacing"
-		(integer :tag "Number of blank lines before contents")
-		(integer :tag "Number of blank lines after contents"))))
-
-(defcustom org-ascii-indented-line-width 'auto
-  "Additional indentation width for the first line in a paragraph.
-If the value is an integer, indent the first line of each
-paragraph by this width, unless it is located at the beginning of
-a section, in which case indentation is removed from that line.
-If it is the symbol `auto' preserve indentation from original
-document."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (integer :tag "Number of white spaces characters")
-	  (const :tag "Preserve original width" auto)))
-
-(defcustom org-ascii-paragraph-spacing 'auto
-  "Number of white lines between paragraphs.
-If the value is an integer, add this number of blank lines
-between contiguous paragraphs.  If is it the symbol `auto', keep
-the same number of blank lines as in the original document."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (integer :tag "Number of blank lines")
-	  (const :tag "Preserve original spacing" auto)))
-
-(defcustom org-ascii-charset 'ascii
-  "The charset allowed to represent various elements and objects.
-Possible values are:
-`ascii'    Only use plain ASCII characters
-`latin1'   Include Latin-1 characters
-`utf-8'    Use all UTF-8 characters"
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "ASCII" ascii)
-	  (const :tag "Latin-1" latin1)
-	  (const :tag "UTF-8" utf-8)))
-
-(defcustom org-ascii-underline '((ascii ?= ?~ ?-)
-				 (latin1 ?= ?~ ?-)
-				 (utf-8 ?═ ?─ ?╌ ?┄ ?┈))
-  "Characters for underlining headings in ASCII export.
-
-Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
-and whose value is a list of characters.
-
-For each supported charset, this variable associates a sequence
-of underline characters.  In a sequence, the characters will be
-used in order for headlines level 1, 2, ...  If no character is
-available for a given level, the headline won't be underlined."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(list
-	  (cons :tag "Underline characters sequence"
-		(const :tag "ASCII charset" ascii)
-		(repeat character))
-	  (cons :tag "Underline characters sequence"
-		(const :tag "Latin-1 charset" latin1)
-		(repeat character))
-	  (cons :tag "Underline characters sequence"
-		(const :tag "UTF-8 charset" utf-8)
-		(repeat character))))
-
-(defcustom org-ascii-bullets '((ascii ?* ?+ ?-)
-			       (latin1 ?§ ?¶)
-			       (utf-8 ?◊))
-  "Bullet characters for headlines converted to lists in ASCII export.
-
-Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
-and whose value is a list of characters.
-
-The first character is used for the first level considered as low
-level, and so on.  If there are more levels than characters given
-here, the list will be repeated.
-
-Note that this variable doesn't affect plain lists
-representation."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(list
-	  (cons :tag "Bullet characters for low level headlines"
-		(const :tag "ASCII charset" ascii)
-		(repeat character))
-	  (cons :tag "Bullet characters for low level headlines"
-		(const :tag "Latin-1 charset" latin1)
-		(repeat character))
-	  (cons :tag "Bullet characters for low level headlines"
-		(const :tag "UTF-8 charset" utf-8)
-		(repeat character))))
-
-(defcustom org-ascii-links-to-notes t
-  "Non-nil means convert links to notes before the next headline.
-When nil, the link will be exported in place.  If the line
-becomes long in this way, it will be wrapped."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-ascii-table-keep-all-vertical-lines nil
-  "Non-nil means keep all vertical lines in ASCII tables.
-When nil, vertical lines will be removed except for those needed
-for column grouping."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-ascii-table-widen-columns t
-  "Non-nil means widen narrowed columns for export.
-When nil, narrowed columns will look in ASCII export just like in
-Org mode, i.e. with \"=>\" as ellipsis."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-ascii-table-use-ascii-art nil
-  "Non-nil means \"table.el\" tables are turned into ASCII art.
-It only makes sense when export charset is `utf-8'.  It is nil by
-default since it requires \"ascii-art-to-unicode.el\" package,
-available through, e.g., GNU ELPA."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-ascii-caption-above nil
-  "When non-nil, place caption string before the element.
-Otherwise, place it right after it."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-ascii-verbatim-format "`%s'"
-  "Format string used for verbatim text and inline code."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-ascii-format-drawer-function
-  (lambda (_name contents _width) contents)
-  "Function called to format a drawer in ASCII.
-
-The function must accept three parameters:
-  NAME      the drawer name, like \"LOGBOOK\"
-  CONTENTS  the contents of the drawer.
-  WIDTH     the text width within the drawer.
-
-The function should return either the string to be exported or
-nil to ignore the drawer.
-
-The default value simply returns the value of CONTENTS."
-  :group 'org-export-ascii
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'function)
-
-(defcustom org-ascii-format-inlinetask-function
-  'org-ascii-format-inlinetask-default
-  "Function called to format an inlinetask in ASCII.
-
-The function must accept nine parameters:
-  TODO       the todo keyword, as a string
-  TODO-TYPE  the todo type, a symbol among `todo', `done' and nil.
-  PRIORITY   the inlinetask priority, as a string
-  NAME       the inlinetask name, as a string.
-  TAGS       the inlinetask tags, as a list of strings.
-  CONTENTS   the contents of the inlinetask, as a string.
-  WIDTH      the width of the inlinetask, as a number.
-  INLINETASK the inlinetask itself.
-  INFO       the info channel.
-
-The function should return either the string to be exported or
-nil to ignore the inline task."
-  :group 'org-export-ascii
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'function)
-
-
-
-;;; Internal Functions
-
-;; Internal functions fall into three categories.
-
-;; The first one is about text formatting.  The core functions are
-;; `org-ascii--current-text-width' and
-;; `org-ascii--current-justification', which determine, respectively,
-;; the current text width allowed to a given element and its expected
-;; justification.  Once this information is known,
-;; `org-ascii--fill-string', `org-ascii--justify-lines',
-;; `org-ascii--justify-element' `org-ascii--box-string' and
-;; `org-ascii--indent-string' can operate on a given output string.
-;; In particular, justification happens at the regular (i.e.,
-;; non-greater) element level, which means that when the exporting
-;; process reaches a container (e.g., a center block) content are
-;; already justified.
-
-;; The second category contains functions handling elements listings,
-;; triggered by "#+TOC:" keyword.  As such, `org-ascii--build-toc'
-;; returns a complete table of contents, `org-ascii--list-listings'
-;; returns a list of referenceable src-block elements, and
-;; `org-ascii--list-tables' does the same for table elements.
-
-;; The third category includes general helper functions.
-;; `org-ascii--build-title' creates the title for a given headline
-;; or inlinetask element.  `org-ascii--build-caption' returns the
-;; caption string associated to a table or a src-block.
-;; `org-ascii--describe-links' creates notes about links for
-;; insertion at the end of a section.  It uses
-;; `org-ascii--unique-links' to get the list of links to describe.
-;; Eventually, `org-ascii--translate' translates a string according
-;; to language and charset specification.
-
-
-(defun org-ascii--fill-string (s text-width info &optional justify)
-  "Fill a string with specified text-width and return it.
-
-S is the string being filled.  TEXT-WIDTH is an integer
-specifying maximum length of a line.  INFO is the plist used as
-a communication channel.
-
-Optional argument JUSTIFY can specify any type of justification
-among `left', `center', `right' or `full'.  A nil value is
-equivalent to `left'.  For a justification that doesn't also fill
-string, see `org-ascii--justify-lines' and
-`org-ascii--justify-block'.
-
-Return nil if S isn't a string."
-  (when (stringp s)
-    (let ((double-space-p sentence-end-double-space))
-      (with-temp-buffer
-	(let ((fill-column text-width)
-	      (use-hard-newlines t)
-	      (sentence-end-double-space double-space-p))
-	  (insert (if (plist-get info :preserve-breaks)
-		      (replace-regexp-in-string "\n" hard-newline s)
-		    s))
-	  (fill-region (point-min) (point-max) justify))
-	(buffer-string)))))
-
-(defun org-ascii--justify-lines (s text-width how)
-  "Justify all lines in string S.
-TEXT-WIDTH is an integer specifying maximum length of a line.
-HOW determines the type of justification: it can be `left',
-`right', `full' or `center'."
-  (with-temp-buffer
-    (insert s)
-    (goto-char (point-min))
-    (let ((fill-column text-width)
-	  ;; Disable `adaptive-fill-mode' so it doesn't prevent
-	  ;; filling lines matching `adaptive-fill-regexp'.
-	  (adaptive-fill-mode nil))
-      (while (< (point) (point-max))
-	(justify-current-line how)
-	(forward-line)))
-    (buffer-string)))
-
-(defun org-ascii--justify-element (contents element info)
-  "Justify CONTENTS of ELEMENT.
-INFO is a plist used as a communication channel.  Justification
-is done according to the type of element.  More accurately,
-paragraphs are filled and other elements are justified as blocks,
-that is according to the widest non blank line in CONTENTS."
-  (if (not (org-string-nw-p contents)) contents
-    (let ((text-width (org-ascii--current-text-width element info))
-	  (how (org-ascii--current-justification element)))
-      (cond
-       ((eq (org-element-type element) 'paragraph)
-	;; Paragraphs are treated specially as they need to be filled.
-	(org-ascii--fill-string contents text-width info how))
-       ((eq how 'left) contents)
-       (t (with-temp-buffer
-	    (insert contents)
-	    (goto-char (point-min))
-	    (catch 'exit
-	      (let ((max-width 0))
-		;; Compute maximum width.  Bail out if it is greater
-		;; than page width, since no justification is
-		;; possible.
-		(save-excursion
-		  (while (not (eobp))
-		    (unless (looking-at-p "[ \t]*$")
-		      (end-of-line)
-		      (let ((column (current-column)))
-			(cond
-			 ((>= column text-width) (throw 'exit contents))
-			 ((> column max-width) (setq max-width column)))))
-		    (forward-line)))
-		;; Justify every line according to TEXT-WIDTH and
-		;; MAX-WIDTH.
-		(let ((offset (/ (- text-width max-width)
-				 (if (eq how 'right) 1 2))))
-		  (if (zerop offset) (throw 'exit contents)
-		    (while (not (eobp))
-		      (unless (looking-at-p "[ \t]*$")
-			(indent-to-column offset))
-		      (forward-line)))))
-	      (buffer-string))))))))
-
-(defun org-ascii--indent-string (s width)
-  "Indent string S by WIDTH white spaces.
-Empty lines are not indented."
-  (when (stringp s)
-    (replace-regexp-in-string
-     "\\(^\\)[ \t]*\\S-" (make-string width ?\s) s nil nil 1)))
-
-(defun org-ascii--box-string (s info)
-  "Return string S with a partial box to its left.
-INFO is a plist used as a communication channel."
-  (let ((utf8p (eq (plist-get info :ascii-charset) 'utf-8)))
-    (format (if utf8p "┌────\n%s\n└────" ",----\n%s\n`----")
-	    (replace-regexp-in-string
-	     "^" (if utf8p "│ " "| ")
-	     ;; Remove last newline character.
-	     (replace-regexp-in-string "\n[ \t]*\\'" "" s)))))
-
-(defun org-ascii--current-text-width (element info)
-  "Return maximum text width for ELEMENT's contents.
-INFO is a plist used as a communication channel."
-  (pcase (org-element-type element)
-    ;; Elements with an absolute width: `headline' and `inlinetask'.
-    (`inlinetask (plist-get info :ascii-inlinetask-width))
-    (`headline
-     (- (plist-get info :ascii-text-width)
-        (let ((low-level-rank (org-export-low-level-p element info)))
-          (if low-level-rank (* low-level-rank 2)
-            (plist-get info :ascii-global-margin)))))
-    ;; Elements with a relative width: store maximum text width in
-    ;; TOTAL-WIDTH.
-    (_
-     (let* ((genealogy (org-element-lineage element nil t))
-            ;; Total width is determined by the presence, or not, of an
-            ;; inline task among ELEMENT parents.
-            (total-width
-             (if (cl-some (lambda (parent)
-                            (eq (org-element-type parent) 'inlinetask))
-                          genealogy)
-                 (plist-get info :ascii-inlinetask-width)
-               ;; No inlinetask: Remove global margin from text width.
-               (- (plist-get info :ascii-text-width)
-                  (plist-get info :ascii-global-margin)
-                  (let ((parent (org-export-get-parent-headline element)))
-                    ;; Inner margin doesn't apply to text before first
-                    ;; headline.
-                    (if (not parent) 0
-                      (let ((low-level-rank
-                             (org-export-low-level-p parent info)))
-                        ;; Inner margin doesn't apply to contents of
-                        ;; low level headlines, since they've got their
-                        ;; own indentation mechanism.
-                        (if low-level-rank (* low-level-rank 2)
-                          (plist-get info :ascii-inner-margin)))))))))
-       (- total-width
-          ;; Each `quote-block' and `verse-block' above narrows text
-          ;; width by twice the standard margin size.
-          (+ (* (cl-count-if (lambda (parent)
-                               (memq (org-element-type parent)
-                                     '(quote-block verse-block)))
-                             genealogy)
-                2
-                (plist-get info :ascii-quote-margin))
-             ;; Apply list margin once per "top-level" plain-list
-             ;; containing current line
-             (* (cl-count-if
-                 (lambda (e)
-                   (and (eq (org-element-type e) 'plain-list)
-                        (not (eq (org-element-type (org-export-get-parent e))
-                                 'item))))
-                 genealogy)
-                (plist-get info :ascii-list-margin))
-             ;; Compute indentation offset due to current list.  It is
-	     ;; `org-ascii-quote-margin' per descriptive item in the
-	     ;; genealogy, bullet's length otherwise.
-             (let ((indentation 0))
-               (dolist (e genealogy)
-                 (cond
-                  ((not (eq 'item (org-element-type e))))
-                  ((eq (org-element-property :type (org-export-get-parent e))
-                       'descriptive)
-                   (cl-incf indentation org-ascii-quote-margin))
-                  (t
-                   (cl-incf indentation
-                            (+ (string-width
-                                (or (org-ascii--checkbox e info) ""))
-                               (string-width
-                                (org-element-property :bullet e)))))))
-               indentation)))))))
-
-(defun org-ascii--current-justification (element)
-  "Return expected justification for ELEMENT's contents.
-Return value is a symbol among `left', `center', `right' and
-`full'."
-  (let (justification)
-    (while (and (not justification)
-		(setq element (org-element-property :parent element)))
-      (pcase (org-element-type element)
-	(`center-block (setq justification 'center))
-	(`special-block
-	 (let ((name (org-element-property :type element)))
-	   (cond ((string= name "JUSTIFYRIGHT") (setq justification 'right))
-		 ((string= name "JUSTIFYLEFT") (setq justification 'left)))))))
-    (or justification 'left)))
-
-(defun org-ascii--build-title
-  (element info text-width &optional underline notags toc)
-  "Format ELEMENT title and return it.
-
-ELEMENT is either an `headline' or `inlinetask' element.  INFO is
-a plist used as a communication channel.  TEXT-WIDTH is an
-integer representing the maximum length of a line.
-
-When optional argument UNDERLINE is non-nil, underline title,
-without the tags, according to `org-ascii-underline'
-specifications.
-
-If optional argument NOTAGS is non-nil, no tags will be added to
-the title.
-
-When optional argument TOC is non-nil, use optional title if
-possible.  It doesn't apply to `inlinetask' elements."
-  (let* ((headlinep (eq (org-element-type element) 'headline))
-	 (numbers
-	  ;; Numbering is specific to headlines.
-	  (and headlinep (org-export-numbered-headline-p element info)
-	       ;; All tests passed: build numbering string.
-	       (concat
-		(mapconcat
-		 'number-to-string
-		 (org-export-get-headline-number element info) ".")
-		" ")))
-	 (text
-	  (org-trim
-	   (org-export-data
-	    (if (and toc headlinep) (org-export-get-alt-title element info)
-	      (org-element-property :title element))
-	    info)))
-	 (todo
-	  (and (plist-get info :with-todo-keywords)
-	       (let ((todo (org-element-property :todo-keyword element)))
-		 (and todo (concat (org-export-data todo info) " ")))))
-	 (tags (and (not notags)
-		    (plist-get info :with-tags)
-		    (let ((tag-list (org-export-get-tags element info)))
-		      (and tag-list
-			   (format ":%s:"
-				   (mapconcat 'identity tag-list ":"))))))
-	 (priority
-	  (and (plist-get info :with-priority)
-	       (let ((char (org-element-property :priority element)))
-		 (and char (format "(#%c) " char)))))
-	 (first-part (concat numbers todo priority text)))
-    (concat
-     first-part
-     ;; Align tags, if any.
-     (when tags
-       (format
-	(format " %%%ds"
-		(max (- text-width  (1+ (string-width first-part)))
-		     (string-width tags)))
-	tags))
-     ;; Maybe underline text, if ELEMENT type is `headline' and an
-     ;; underline character has been defined.
-     (when (and underline headlinep)
-       (let ((under-char
-	      (nth (1- (org-export-get-relative-level element info))
-		   (cdr (assq (plist-get info :ascii-charset)
-			      (plist-get info :ascii-underline))))))
-	 (and under-char
-	      (concat "\n"
-		      (make-string (/ (string-width first-part)
-				      (char-width under-char))
-				   under-char))))))))
-
-(defun org-ascii--has-caption-p (element _info)
-  "Non-nil when ELEMENT has a caption affiliated keyword.
-INFO is a plist used as a communication channel.  This function
-is meant to be used as a predicate for `org-export-get-ordinal'."
-  (org-element-property :caption element))
-
-(defun org-ascii--build-caption (element info)
-  "Return caption string for ELEMENT, if applicable.
-
-INFO is a plist used as a communication channel.
-
-The caption string contains the sequence number of ELEMENT along
-with its real caption.  Return nil when ELEMENT has no affiliated
-caption keyword."
-  (let ((caption (org-export-get-caption element)))
-    (when caption
-      ;; Get sequence number of current src-block among every
-      ;; src-block with a caption.
-      (let ((reference
-	     (org-export-get-ordinal
-	      element info nil 'org-ascii--has-caption-p))
-	    (title-fmt (org-ascii--translate
-			(pcase (org-element-type element)
-			  (`table "Table %d:")
-			  (`src-block "Listing %d:"))
-			info)))
-	(org-ascii--fill-string
-	 (concat (format title-fmt reference)
-		 " "
-		 (org-export-data caption info))
-	 (org-ascii--current-text-width element info) info)))))
-
-(defun org-ascii--build-toc (info &optional n keyword local)
-  "Return a table of contents.
-
-INFO is a plist used as a communication channel.
-
-Optional argument N, when non-nil, is an integer specifying the
-depth of the table.
-
-Optional argument KEYWORD specifies the TOC keyword, if any, from
-which the table of contents generation has been initiated.
-
-When optional argument LOCAL is non-nil, build a table of
-contents according to the current headline."
-  (concat
-   (unless local
-     (let ((title (org-ascii--translate "Table of Contents" info)))
-       (concat title "\n"
-	       (make-string
-		(string-width title)
-		(if (eq (plist-get info :ascii-charset) 'utf-8) ?─ ?_))
-	       "\n\n")))
-   (let ((text-width
-	  (if keyword (org-ascii--current-text-width keyword info)
-	    (- (plist-get info :ascii-text-width)
-	       (plist-get info :ascii-global-margin)))))
-     (mapconcat
-      (lambda (headline)
-	(let* ((level (org-export-get-relative-level headline info))
-	       (indent (* (1- level) 3)))
-	  (concat
-	   (unless (zerop indent) (concat (make-string (1- indent) ?.) " "))
-	   (org-ascii--build-title
-	    headline info (- text-width indent) nil
-	    (or (not (plist-get info :with-tags))
-		(eq (plist-get info :with-tags) 'not-in-toc))
-	    'toc))))
-      (org-export-collect-headlines info n (and local keyword)) "\n"))))
-
-(defun org-ascii--list-listings (keyword info)
-  "Return a list of listings.
-
-KEYWORD is the keyword that initiated the list of listings
-generation.  INFO is a plist used as a communication channel."
-  (let ((title (org-ascii--translate "List of Listings" info)))
-    (concat
-     title "\n"
-     (make-string (string-width title)
-		  (if (eq (plist-get info :ascii-charset) 'utf-8) ?─ ?_))
-     "\n\n"
-     (let ((text-width
-	    (if keyword (org-ascii--current-text-width keyword info)
-	      (- (plist-get info :ascii-text-width)
-		 (plist-get info :ascii-global-margin))))
-	   ;; Use a counter instead of retrieving ordinal of each
-	   ;; src-block.
-	   (count 0))
-       (mapconcat
-	(lambda (src-block)
-	  ;; Store initial text so its length can be computed.  This is
-	  ;; used to properly align caption right to it in case of
-	  ;; filling (like contents of a description list item).
-	  (let* ((initial-text
-		  (format (org-ascii--translate "Listing %d:" info)
-			  (cl-incf count)))
-		 (initial-width (string-width initial-text)))
-	    (concat
-	     initial-text " "
-	     (org-trim
-	      (org-ascii--indent-string
-	       (org-ascii--fill-string
-		;; Use short name in priority, if available.
-		(let ((caption (or (org-export-get-caption src-block t)
-				   (org-export-get-caption src-block))))
-		  (org-export-data caption info))
-		(- text-width initial-width) info)
-	       initial-width)))))
-	(org-export-collect-listings info) "\n")))))
-
-(defun org-ascii--list-tables (keyword info)
-  "Return a list of tables.
-
-KEYWORD is the keyword that initiated the list of tables
-generation.  INFO is a plist used as a communication channel."
-  (let ((title (org-ascii--translate "List of Tables" info)))
-    (concat
-     title "\n"
-     (make-string (string-width title)
-		  (if (eq (plist-get info :ascii-charset) 'utf-8) ?─ ?_))
-     "\n\n"
-     (let ((text-width
-	    (if keyword (org-ascii--current-text-width keyword info)
-	      (- (plist-get info :ascii-text-width)
-		 (plist-get info :ascii-global-margin))))
-	   ;; Use a counter instead of retrieving ordinal of each
-	   ;; src-block.
-	   (count 0))
-       (mapconcat
-	(lambda (table)
-	  ;; Store initial text so its length can be computed.  This is
-	  ;; used to properly align caption right to it in case of
-	  ;; filling (like contents of a description list item).
-	  (let* ((initial-text
-		  (format (org-ascii--translate "Table %d:" info)
-			  (cl-incf count)))
-		 (initial-width (string-width initial-text)))
-	    (concat
-	     initial-text " "
-	     (org-trim
-	      (org-ascii--indent-string
-	       (org-ascii--fill-string
-		;; Use short name in priority, if available.
-		(let ((caption (or (org-export-get-caption table t)
-				   (org-export-get-caption table))))
-		  (org-export-data caption info))
-		(- text-width initial-width) info)
-	       initial-width)))))
-	(org-export-collect-tables info) "\n")))))
-
-(defun org-ascii--unique-links (element info)
-  "Return a list of unique link references in ELEMENT.
-ELEMENT is either a headline element or a section element.  INFO
-is a plist used as a communication channel."
-  (let* (seen
-	 (unique-link-p
-	  ;; Return LINK if it wasn't referenced so far, or nil.
-	  ;; Update SEEN links along the way.
-	  (lambda (link)
-	    (let ((footprint
-		   ;; Normalize description in footprints.
-		   (cons (org-element-property :raw-link link)
-			 (let ((contents (org-element-contents link)))
-			   (and contents
-				(replace-regexp-in-string
-				 "[ \r\t\n]+" " "
-				 (org-trim
-				  (org-element-interpret-data contents))))))))
-	      ;; Ignore LINK if it hasn't been translated already.  It
-	      ;; can happen if it is located in an affiliated keyword
-	      ;; that was ignored.
-	      (when (and (org-string-nw-p
-			  (gethash link (plist-get info :exported-data)))
-			 (not (member footprint seen)))
-		(push footprint seen) link)))))
-    (org-element-map (if (eq (org-element-type element) 'section)
-			 element
-		       ;; In a headline, only retrieve links in title
-		       ;; and relative section, not in children.
-		       (list (org-element-property :title element)
-			     (car (org-element-contents element))))
-	'link unique-link-p info nil 'headline t)))
-
-(defun org-ascii--describe-datum (datum info)
-  "Describe DATUM object or element.
-If DATUM is a string, consider it to be a file name, per
-`org-export-resolve-id-link'.  INFO is the communication channel,
-as a plist."
-  (pcase (org-element-type datum)
-    (`plain-text (format "See file %s" datum)) ;External file
-    (`headline
-     (format (org-ascii--translate "See section %s" info)
-	     (if (org-export-numbered-headline-p datum info)
-		 (mapconcat #'number-to-string
-			    (org-export-get-headline-number datum info)
-			    ".")
-	       (org-export-data (org-element-property :title datum) info))))
-    (_
-     (let ((number (org-export-get-ordinal
-		    datum info nil #'org-ascii--has-caption-p))
-	   ;; If destination is a target, make sure we can name the
-	   ;; container it refers to.
-	   (enumerable
-	    (org-element-lineage datum
-				 '(headline paragraph src-block table) t)))
-       (pcase (org-element-type enumerable)
-	 (`headline
-	  (format (org-ascii--translate "See section %s" info)
-		  (if (org-export-numbered-headline-p enumerable info)
-		      (mapconcat #'number-to-string number ".")
-		    (org-export-data
-		     (org-element-property :title enumerable) info))))
-	 ((guard (not number))
-	  (org-ascii--translate "Unknown reference" info))
-	 (`paragraph
-	  (format (org-ascii--translate "See figure %s" info) number))
-	 (`src-block
-	  (format (org-ascii--translate "See listing %s" info) number))
-	 (`table
-	  (format (org-ascii--translate "See table %s" info) number))
-	 (_ (org-ascii--translate "Unknown reference" info)))))))
-
-(defun org-ascii--describe-links (links width info)
-  "Return a string describing a list of links.
-LINKS is a list of link type objects, as returned by
-`org-ascii--unique-links'.  WIDTH is the text width allowed for
-the output string.  INFO is a plist used as a communication
-channel."
-  (mapconcat
-   (lambda (link)
-     (let* ((type (org-element-property :type link))
-	    (description (org-element-contents link))
-	    (anchor (org-export-data
-		     (or description (org-element-property :raw-link link))
-		     info)))
-       (cond
-	((member type '("coderef" "radio")) nil)
-	((member type '("custom-id" "fuzzy" "id"))
-	 ;; Only links with a description need an entry.  Other are
-	 ;; already handled in `org-ascii-link'.
-	 (when description
-	   (let ((dest (if (equal type "fuzzy")
-			   (org-export-resolve-fuzzy-link link info)
-			 (org-export-resolve-id-link link info))))
-	     (concat
-	      (org-ascii--fill-string
-	       (format "[%s] %s" anchor (org-ascii--describe-datum dest info))
-	       width info)
-	      "\n\n"))))
-	;; Do not add a link that cannot be resolved and doesn't have
-	;; any description: destination is already visible in the
-	;; paragraph.
-	((not (org-element-contents link)) nil)
-	;; Do not add a link already handled by custom export
-	;; functions.
-	((org-export-custom-protocol-maybe link anchor 'ascii) nil)
-	(t
-	 (concat
-	  (org-ascii--fill-string
-	   (format "[%s] %s" anchor (org-element-property :raw-link link))
-	   width info)
-	  "\n\n")))))
-   links ""))
-
-(defun org-ascii--checkbox (item info)
-  "Return checkbox string for ITEM or nil.
-INFO is a plist used as a communication channel."
-  (let ((utf8p (eq (plist-get info :ascii-charset) 'utf-8)))
-    (pcase (org-element-property :checkbox item)
-      (`on (if utf8p "☑ " "[X] "))
-      (`off (if utf8p "☐ " "[ ] "))
-      (`trans (if utf8p "☒ " "[-] ")))))
-
-
-
-;;; Template
-
-(defun org-ascii-template--document-title (info)
-  "Return document title, as a string.
-INFO is a plist used as a communication channel."
-  (let* ((text-width (plist-get info :ascii-text-width))
-	 ;; Links in the title will not be resolved later, so we make
-	 ;; sure their path is located right after them.
-	 (info (org-combine-plists info '(:ascii-links-to-notes nil)))
-	 (with-title (plist-get info :with-title))
-	 (title (org-export-data
-		 (when with-title (plist-get info :title)) info))
-	 (subtitle (org-export-data
-		    (when with-title (plist-get info :subtitle)) info))
-	 (author (and (plist-get info :with-author)
-		      (let ((auth (plist-get info :author)))
-			(and auth (org-export-data auth info)))))
-	 (email (and (plist-get info :with-email)
-		     (org-export-data (plist-get info :email) info)))
-	 (date (and (plist-get info :with-date)
-		    (org-export-data (org-export-get-date info) info))))
-    ;; There are two types of title blocks depending on the presence
-    ;; of a title to display.
-    (if (string= title "")
-	;; Title block without a title.  DATE is positioned at the top
-	;; right of the document, AUTHOR to the top left and EMAIL
-	;; just below.
-	(cond
-	 ((and (org-string-nw-p date) (org-string-nw-p author))
-	  (concat
-	   author
-	   (make-string (- text-width (string-width date) (string-width author))
-			?\s)
-	   date
-	   (when (org-string-nw-p email) (concat "\n" email))
-	   "\n\n\n"))
-	 ((and (org-string-nw-p date) (org-string-nw-p email))
-	  (concat
-	   email
-	   (make-string (- text-width (string-width date) (string-width email))
-			?\s)
-	   date "\n\n\n"))
-	 ((org-string-nw-p date)
-	  (concat
-	   (org-ascii--justify-lines date text-width 'right)
-	   "\n\n\n"))
-	 ((and (org-string-nw-p author) (org-string-nw-p email))
-	  (concat author "\n" email "\n\n\n"))
-	 ((org-string-nw-p author) (concat author "\n\n\n"))
-	 ((org-string-nw-p email) (concat email "\n\n\n")))
-      ;; Title block with a title.  Document's TITLE, along with the
-      ;; AUTHOR and its EMAIL are both overlined and an underlined,
-      ;; centered.  Date is just below, also centered.
-      (let* ((utf8p (eq (plist-get info :ascii-charset) 'utf-8))
-	     ;; Format TITLE.  It may be filled if it is too wide,
-	     ;; that is wider than the two thirds of the total width.
-	     (title-len (min (apply #'max
-				    (mapcar #'length
-					    (org-split-string
-					     (concat title "\n" subtitle) "\n")))
-			     (/ (* 2 text-width) 3)))
-	     (formatted-title (org-ascii--fill-string title title-len info))
-	     (formatted-subtitle (when (org-string-nw-p subtitle)
-				   (org-ascii--fill-string subtitle title-len info)))
-	     (line
-	      (make-string
-	       (min (+ (max title-len
-			    (string-width (or author ""))
-			    (string-width (or email "")))
-		       2)
-		    text-width) (if utf8p ?━ ?_))))
-	(org-ascii--justify-lines
-	 (concat line "\n"
-		 (unless utf8p "\n")
-		 (upcase formatted-title)
-		 (and formatted-subtitle (concat "\n" formatted-subtitle))
-		 (cond
-		  ((and (org-string-nw-p author) (org-string-nw-p email))
-		   (concat "\n\n" author "\n" email))
-		  ((org-string-nw-p author) (concat "\n\n" author))
-		  ((org-string-nw-p email) (concat "\n\n" email)))
-		 "\n" line
-		 (when (org-string-nw-p date) (concat "\n\n\n" date))
-		 "\n\n\n") text-width 'center)))))
-
-(defun org-ascii-inner-template (contents info)
-  "Return complete document string after ASCII conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  (org-element-normalize-string
-   (let ((global-margin (plist-get info :ascii-global-margin)))
-     (org-ascii--indent-string
-      (concat
-       ;; 1. Document's body.
-       contents
-       ;; 2. Footnote definitions.
-       (let ((definitions (org-export-collect-footnote-definitions info))
-	     ;; Insert full links right inside the footnote definition
-	     ;; as they have no chance to be inserted later.
-	     (info (org-combine-plists info '(:ascii-links-to-notes nil))))
-	 (when definitions
-	   (concat
-	    "\n\n\n"
-	    (let ((title (org-ascii--translate "Footnotes" info)))
-	      (concat
-	       title "\n"
-	       (make-string
-		(string-width title)
-		(if (eq (plist-get info :ascii-charset) 'utf-8) ?─ ?_))))
-	    "\n\n"
-	    (let ((text-width (- (plist-get info :ascii-text-width)
-				 global-margin)))
-	      (mapconcat
-	       (lambda (ref)
-		 (let ((id (format "[%s] " (car ref))))
-		   ;; Distinguish between inline definitions and
-		   ;; full-fledged definitions.
-		   (org-trim
-		    (let ((def (nth 2 ref)))
-		      (if (org-element-map def org-element-all-elements
-			    #'identity info 'first-match)
-			  ;; Full-fledged definition: footnote ID is
-			  ;; inserted inside the first parsed
-			  ;; paragraph (FIRST), if any, to be sure
-			  ;; filling will take it into consideration.
-			  (let ((first (car (org-element-contents def))))
-			    (if (not (eq (org-element-type first) 'paragraph))
-				(concat id "\n" (org-export-data def info))
-			      (push id (nthcdr 2 first))
-			      (org-export-data def info)))
-			;; Fill paragraph once footnote ID is inserted
-			;; in order to have a correct length for first
-			;; line.
-			(org-ascii--fill-string
-			 (concat id (org-export-data def info))
-			 text-width info))))))
-	       definitions "\n\n"))))))
-      global-margin))))
-
-(defun org-ascii-template (contents info)
-  "Return complete document string after ASCII conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  (let ((global-margin (plist-get info :ascii-global-margin)))
-    (concat
-     ;; Build title block.
-     (org-ascii--indent-string
-      (concat (org-ascii-template--document-title info)
-	      ;; 2. Table of contents.
-	      (let ((depth (plist-get info :with-toc)))
-		(when depth
-		  (concat
-		   (org-ascii--build-toc info (and (wholenump depth) depth))
-		   "\n\n\n"))))
-      global-margin)
-     ;; Document's body.
-     contents
-     ;; Creator.  Justify it to the bottom right.
-     (and (plist-get info :with-creator)
-	  (org-ascii--indent-string
-	   (let ((text-width
-		  (- (plist-get info :ascii-text-width) global-margin)))
-	     (concat
-	      "\n\n\n"
-	      (org-ascii--fill-string
-	       (plist-get info :creator) text-width info 'right)))
-	   global-margin)))))
-
-(defun org-ascii--translate (s info)
-  "Translate string S according to specified language and charset.
-INFO is a plist used as a communication channel."
-  (let ((charset (intern (format ":%s" (plist-get info :ascii-charset)))))
-    (org-export-translate s charset info)))
-
-
-
-;;; Transcode Functions
-
-;;;; Bold
-
-(defun org-ascii-bold (_bold contents _info)
-  "Transcode BOLD from Org to ASCII.
-CONTENTS is the text with bold markup.  INFO is a plist holding
-contextual information."
-  (format "*%s*" contents))
-
-
-;;;; Center Block
-
-(defun org-ascii-center-block (_center-block contents _info)
-  "Transcode a CENTER-BLOCK element from Org to ASCII.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  ;; Center has already been taken care of at a lower level, so
-  ;; there's nothing left to do.
-  contents)
-
-
-;;;; Clock
-
-(defun org-ascii-clock (clock _contents info)
-  "Transcode a CLOCK object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (org-ascii--justify-element
-   (concat org-clock-string " "
-	   (org-timestamp-translate (org-element-property :value clock))
-	   (let ((time (org-element-property :duration clock)))
-	     (and time
-		  (concat " => "
-			  (apply 'format
-				 "%2s:%02s"
-				 (org-split-string time ":"))))))
-   clock info))
-
-
-;;;; Code
-
-(defun org-ascii-code (code _contents info)
-  "Return a CODE object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format (plist-get info :ascii-verbatim-format)
-	  (org-element-property :value code)))
-
-
-;;;; Drawer
-
-(defun org-ascii-drawer (drawer contents info)
-  "Transcode a DRAWER element from Org to ASCII.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let ((name (org-element-property :drawer-name drawer))
-	(width (org-ascii--current-text-width drawer info)))
-    (funcall (plist-get info :ascii-format-drawer-function)
-	     name contents width)))
-
-
-;;;; Dynamic Block
-
-(defun org-ascii-dynamic-block (_dynamic-block contents _info)
-  "Transcode a DYNAMIC-BLOCK element from Org to ASCII.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  contents)
-
-
-;;;; Entity
-
-(defun org-ascii-entity (entity _contents info)
-  "Transcode an ENTITY object from Org to ASCII.
-CONTENTS are the definition itself.  INFO is a plist holding
-contextual information."
-  (org-element-property
-   (intern (concat ":" (symbol-name (plist-get info :ascii-charset))))
-   entity))
-
-
-;;;; Example Block
-
-(defun org-ascii-example-block (example-block _contents info)
-  "Transcode a EXAMPLE-BLOCK element from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-ascii--justify-element
-   (org-ascii--box-string
-    (org-export-format-code-default example-block info) info)
-   example-block info))
-
-
-;;;; Export Snippet
-
-(defun org-ascii-export-snippet (export-snippet _contents _info)
-  "Transcode a EXPORT-SNIPPET object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (eq (org-export-snippet-backend export-snippet) 'ascii)
-    (org-element-property :value export-snippet)))
-
-
-;;;; Export Block
-
-(defun org-ascii-export-block (export-block _contents info)
-  "Transcode a EXPORT-BLOCK element from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (string= (org-element-property :type export-block) "ASCII")
-    (org-ascii--justify-element
-     (org-element-property :value export-block) export-block info)))
-
-
-;;;; Fixed Width
-
-(defun org-ascii-fixed-width (fixed-width _contents info)
-  "Transcode a FIXED-WIDTH element from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-ascii--justify-element
-   (org-ascii--box-string
-    (org-remove-indentation
-     (org-element-property :value fixed-width)) info)
-   fixed-width info))
-
-
-;;;; Footnote Definition
-
-;; Footnote Definitions are ignored.  They are compiled at the end of
-;; the document, by `org-ascii-inner-template'.
-
-
-;;;; Footnote Reference
-
-(defun org-ascii-footnote-reference (footnote-reference _contents info)
-  "Transcode a FOOTNOTE-REFERENCE element from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (format "[%s]" (org-export-get-footnote-number footnote-reference info)))
-
-
-;;;; Headline
-
-(defun org-ascii-headline (headline contents info)
-  "Transcode a HEADLINE element from Org to ASCII.
-CONTENTS holds the contents of the headline.  INFO is a plist
-holding contextual information."
-  ;; Don't export footnote section, which will be handled at the end
-  ;; of the template.
-  (unless (org-element-property :footnote-section-p headline)
-    (let* ((low-level (org-export-low-level-p headline info))
-	   (width (org-ascii--current-text-width headline info))
-	   ;; Export title early so that any link in it can be
-	   ;; exported and seen in `org-ascii--unique-links'.
-	   (title (org-ascii--build-title headline info width (not low-level)))
-	   ;; Blank lines between headline and its contents.
-	   ;; `org-ascii-headline-spacing', when set, overwrites
-	   ;; original buffer's spacing.
-	   (pre-blanks
-	    (make-string (or (car (plist-get info :ascii-headline-spacing))
-			     (org-element-property :pre-blank headline)
-			     0)
-			 ?\n))
-	   (links (and (plist-get info :ascii-links-to-notes)
-		       (org-ascii--describe-links
-			(org-ascii--unique-links headline info) width info)))
-	   ;; Re-build contents, inserting section links at the right
-	   ;; place.  The cost is low since build results are cached.
-	   (body
-	    (if (not (org-string-nw-p links)) contents
-	      (let* ((contents (org-element-contents headline))
-		     (section (let ((first (car contents)))
-				(and (eq (org-element-type first) 'section)
-				     first))))
-		(concat (and section
-			     (concat (org-element-normalize-string
-				      (org-export-data section info))
-				     "\n\n"))
-			links
-			(mapconcat (lambda (e) (org-export-data e info))
-				   (if section (cdr contents) contents)
-				   ""))))))
-      ;; Deep subtree: export it as a list item.
-      (if low-level
-	  (let* ((bullets (cdr (assq (plist-get info :ascii-charset)
-				     (plist-get info :ascii-bullets))))
-		 (bullet
-		  (format "%c "
-			  (nth (mod (1- low-level) (length bullets)) bullets))))
-	    (concat bullet title "\n" pre-blanks
-		    ;; Contents, indented by length of bullet.
-		    (org-ascii--indent-string body (length bullet))))
-	;; Else: Standard headline.
-	(concat title "\n" pre-blanks body)))))
-
-
-;;;; Horizontal Rule
-
-(defun org-ascii-horizontal-rule (horizontal-rule _contents info)
-  "Transcode an HORIZONTAL-RULE object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (let ((text-width (org-ascii--current-text-width horizontal-rule info))
-	(spec-width
-	 (org-export-read-attribute :attr_ascii horizontal-rule :width)))
-    (org-ascii--justify-lines
-     (make-string (if (and spec-width (string-match "^[0-9]+$" spec-width))
-		      (string-to-number spec-width)
-		    text-width)
-		  (if (eq (plist-get info :ascii-charset) 'utf-8) ?― ?-))
-     text-width 'center)))
-
-
-;;;; Inline Src Block
-
-(defun org-ascii-inline-src-block (inline-src-block _contents info)
-  "Transcode an INLINE-SRC-BLOCK element from Org to ASCII.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (format (plist-get info :ascii-verbatim-format)
-	  (org-element-property :value inline-src-block)))
-
-
-;;;; Inlinetask
-
-(defun org-ascii-format-inlinetask-default
-  (_todo _type _priority _name _tags contents width inlinetask info)
-  "Format an inline task element for ASCII export.
-See `org-ascii-format-inlinetask-function' for a description
-of the parameters."
-  (let* ((utf8p (eq (plist-get info :ascii-charset) 'utf-8))
-	 (width (or width (plist-get info :ascii-inlinetask-width))))
-    (org-ascii--indent-string
-     (concat
-      ;; Top line, with an additional blank line if not in UTF-8.
-      (make-string width (if utf8p ?━ ?_)) "\n"
-      (unless utf8p (concat (make-string width ? ) "\n"))
-      ;; Add title.  Fill it if wider than inlinetask.
-      (let ((title (org-ascii--build-title inlinetask info width)))
-	(if (<= (string-width title) width) title
-	  (org-ascii--fill-string title width info)))
-      "\n"
-      ;; If CONTENTS is not empty, insert it along with
-      ;; a separator.
-      (when (org-string-nw-p contents)
-        (concat (make-string width (if utf8p ?─ ?-)) "\n" contents))
-      ;; Bottom line.
-      (make-string width (if utf8p ?━ ?_)))
-     ;; Flush the inlinetask to the right.
-     (- (plist-get info :ascii-text-width) (plist-get info :ascii-global-margin)
-	(if (not (org-export-get-parent-headline inlinetask)) 0
-	  (plist-get info :ascii-inner-margin))
-	(org-ascii--current-text-width inlinetask info)))))
-
-(defun org-ascii-inlinetask (inlinetask contents info)
-  "Transcode an INLINETASK element from Org to ASCII.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let ((width (org-ascii--current-text-width inlinetask info)))
-    (funcall (plist-get info :ascii-format-inlinetask-function)
-	     ;; todo.
-	     (and (plist-get info :with-todo-keywords)
-		  (let ((todo (org-element-property
-			       :todo-keyword inlinetask)))
-		    (and todo (org-export-data todo info))))
-	     ;; todo-type
-	     (org-element-property :todo-type inlinetask)
-	     ;; priority
-	     (and (plist-get info :with-priority)
-		  (org-element-property :priority inlinetask))
-	     ;; title
-	     (org-export-data (org-element-property :title inlinetask) info)
-	     ;; tags
-	     (and (plist-get info :with-tags)
-		  (org-element-property :tags inlinetask))
-	     ;; contents and width
-	     contents width inlinetask info)))
-
-
-;;;; Italic
-
-(defun org-ascii-italic (_italic contents _info)
-  "Transcode italic from Org to ASCII.
-CONTENTS is the text with italic markup.  INFO is a plist holding
-contextual information."
-  (format "/%s/" contents))
-
-
-;;;; Item
-
-(defun org-ascii-item (item contents info)
-  "Transcode an ITEM element from Org to ASCII.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((utf8p (eq (plist-get info :ascii-charset) 'utf-8))
-	 (checkbox (org-ascii--checkbox item info))
-	 (list-type (org-element-property :type (org-export-get-parent item)))
-	 (bullet
-	  ;; First parent of ITEM is always the plain-list.  Get
-	  ;; `:type' property from it.
-	  (pcase list-type
-	    (`descriptive
-	     (concat checkbox
-		     (org-export-data (org-element-property :tag item)
-				      info)))
-	    (`ordered
-	     ;; Return correct number for ITEM, paying attention to
-	     ;; counters.
-	     (let* ((struct (org-element-property :structure item))
-		    (bul (org-list-bullet-string
-			  (org-element-property :bullet item)))
-		    (num (number-to-string
-			  (car (last (org-list-get-item-number
-				      (org-element-property :begin item)
-				      struct
-				      (org-list-prevs-alist struct)
-				      (org-list-parents-alist struct)))))))
-	       (replace-regexp-in-string "[0-9]+" num bul)))
-	    (_ (let ((bul (org-list-bullet-string
-			   (org-element-property :bullet item))))
-		 ;; Change bullets into more visible form if UTF-8 is active.
-		 (if (not utf8p) bul
-		   (replace-regexp-in-string
-		    "-" "•"
-		    (replace-regexp-in-string
-		     "+" "⁃"
-		     (replace-regexp-in-string "*" "‣" bul))))))))
-	 (indentation (if (eq list-type 'descriptive) org-ascii-quote-margin
-			(string-width bullet))))
-    (concat
-     bullet
-     checkbox
-     ;; Contents: Pay attention to indentation.  Note: check-boxes are
-     ;; already taken care of at the paragraph level so they don't
-     ;; interfere with indentation.
-     (let ((contents (org-ascii--indent-string contents indentation)))
-       ;; Determine if contents should follow the bullet or start
-       ;; a new line.  Do the former when the first contributing
-       ;; element to contents is a paragraph.  In descriptive lists
-       ;; however, contents always start a new line.
-       (if (and (not (eq list-type 'descriptive))
-		(org-string-nw-p contents)
-		(eq 'paragraph
-		    (org-element-type
-		     (cl-some (lambda (e)
-				(and (org-string-nw-p (org-export-data e info))
-				     e))
-			      (org-element-contents item)))))
-	   (org-trim contents)
-	 (concat "\n" contents))))))
-
-
-;;;; Keyword
-
-(defun org-ascii-keyword (keyword _contents info)
-  "Transcode a KEYWORD element from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (let ((key (org-element-property :key keyword))
-	(value (org-element-property :value keyword)))
-    (cond
-     ((string= key "ASCII") (org-ascii--justify-element value keyword info))
-     ((string= key "TOC")
-      (org-ascii--justify-element
-       (let ((case-fold-search t))
-	 (cond
-	  ((string-match-p "\\<headlines\\>" value)
-	   (let ((depth (and (string-match "\\<[0-9]+\\>" value)
-			     (string-to-number (match-string 0 value))))
-		 (localp (string-match-p "\\<local\\>" value)))
-	     (org-ascii--build-toc info depth keyword localp)))
-	  ((string-match-p "\\<tables\\>" value)
-	   (org-ascii--list-tables keyword info))
-	  ((string-match-p "\\<listings\\>" value)
-	   (org-ascii--list-listings keyword info))))
-       keyword info)))))
-
-
-;;;; Latex Environment
-
-(defun org-ascii-latex-environment (latex-environment _contents info)
-  "Transcode a LATEX-ENVIRONMENT element from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (when (plist-get info :with-latex)
-    (org-ascii--justify-element
-     (org-remove-indentation (org-element-property :value latex-environment))
-     latex-environment info)))
-
-
-;;;; Latex Fragment
-
-(defun org-ascii-latex-fragment (latex-fragment _contents info)
-  "Transcode a LATEX-FRAGMENT object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (when (plist-get info :with-latex)
-    (org-element-property :value latex-fragment)))
-
-
-;;;; Line Break
-
-(defun org-ascii-line-break (_line-break _contents _info)
-  "Transcode a LINE-BREAK object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual
-  information."  hard-newline)
-
-
-;;;; Link
-
-(defun org-ascii-link (link desc info)
-  "Transcode a LINK object from Org to ASCII.
-
-DESC is the description part of the link, or the empty string.
-INFO is a plist holding contextual information."
-  (let ((type (org-element-property :type link)))
-    (cond
-     ((org-export-custom-protocol-maybe link desc 'ascii))
-     ((string= type "coderef")
-      (let ((ref (org-element-property :path link)))
-	(format (org-export-get-coderef-format ref desc)
-		(org-export-resolve-coderef ref info))))
-     ;; Do not apply a special syntax on radio links.  Though, use
-     ;; transcoded target's contents as output.
-     ((string= type "radio") desc)
-     ((member type '("custom-id" "fuzzy" "id"))
-      (let ((destination (if (string= type "fuzzy")
-			     (org-export-resolve-fuzzy-link link info)
-			   (org-export-resolve-id-link link info))))
-	(pcase (org-element-type destination)
-	  ((guard desc)
-	   (if (plist-get info :ascii-links-to-notes)
-	       (format "[%s]" desc)
-	     (concat desc
-		     (format " (%s)"
-			     (org-ascii--describe-datum destination info)))))
-	  ;; External file.
-	  (`plain-text destination)
-	  (`headline
-	   (if (org-export-numbered-headline-p destination info)
-	       (mapconcat #'number-to-string
-			  (org-export-get-headline-number destination info)
-			  ".")
-	     (org-export-data (org-element-property :title destination) info)))
-	  ;; Handle enumerable elements and targets within them.
-	  ((and (let number (org-export-get-ordinal
-			     destination info nil #'org-ascii--has-caption-p))
-		(guard number))
-	   (if (atom number) (number-to-string number)
-	     (mapconcat #'number-to-string number ".")))
-	  ;; Don't know what to do.  Signal it.
-	  (_ "???"))))
-     (t
-      (let ((raw-link (org-element-property :raw-link link)))
-	(if (not (org-string-nw-p desc)) (format "[%s]" raw-link)
-	  (concat (format "[%s]" desc)
-		  (and (not (plist-get info :ascii-links-to-notes))
-		       (format " (%s)" raw-link)))))))))
-
-
-;;;; Node Properties
-
-(defun org-ascii-node-property (node-property _contents _info)
-  "Transcode a NODE-PROPERTY element from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "%s:%s"
-          (org-element-property :key node-property)
-          (let ((value (org-element-property :value node-property)))
-            (if value (concat " " value) ""))))
-
-
-;;;; Paragraph
-
-(defun org-ascii-paragraph (paragraph contents info)
-  "Transcode a PARAGRAPH element from Org to ASCII.
-CONTENTS is the contents of the paragraph, as a string.  INFO is
-the plist used as a communication channel."
-  (org-ascii--justify-element
-   (let ((indented-line-width (plist-get info :ascii-indented-line-width)))
-     (if (not (wholenump indented-line-width)) contents
-       (concat
-	;; Do not indent first paragraph in a section.
-	(unless (and (not (org-export-get-previous-element paragraph info))
-		     (eq (org-element-type (org-export-get-parent paragraph))
-			 'section))
-	  (make-string indented-line-width ?\s))
-	(replace-regexp-in-string "\\`[ \t]+" "" contents))))
-   paragraph info))
-
-
-;;;; Plain List
-
-(defun org-ascii-plain-list (plain-list contents info)
-  "Transcode a PLAIN-LIST element from Org to ASCII.
-CONTENTS is the contents of the list.  INFO is a plist holding
-contextual information."
-  (let ((margin (plist-get info :ascii-list-margin)))
-    (if (or (< margin 1)
-	    (eq (org-element-type (org-export-get-parent plain-list)) 'item))
-	contents
-      (org-ascii--indent-string contents margin))))
-
-
-;;;; Plain Text
-
-(defun org-ascii-plain-text (text info)
-  "Transcode a TEXT string from Org to ASCII.
-INFO is a plist used as a communication channel."
-  (let ((utf8p (eq (plist-get info :ascii-charset) 'utf-8)))
-    (when (and utf8p (plist-get info :with-smart-quotes))
-      (setq text (org-export-activate-smart-quotes text :utf-8 info)))
-    (if (not (plist-get info :with-special-strings)) text
-      (setq text (replace-regexp-in-string "\\\\-" "" text))
-      (if (not utf8p) text
-	;; Usual replacements in utf-8 with proper option set.
-	(replace-regexp-in-string
-	 "\\.\\.\\." "…"
-	 (replace-regexp-in-string
-	  "--" "–"
-	  (replace-regexp-in-string "---" "—" text)))))))
-
-
-;;;; Planning
-
-(defun org-ascii-planning (planning _contents info)
-  "Transcode a PLANNING element from Org to ASCII.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (org-ascii--justify-element
-   (mapconcat
-    #'identity
-    (delq nil
-	  (list (let ((closed (org-element-property :closed planning)))
-		  (when closed
-		    (concat org-closed-string " "
-			    (org-timestamp-translate closed))))
-		(let ((deadline (org-element-property :deadline planning)))
-		  (when deadline
-		    (concat org-deadline-string " "
-			    (org-timestamp-translate deadline))))
-		(let ((scheduled (org-element-property :scheduled planning)))
-		  (when scheduled
-		    (concat org-scheduled-string " "
-			    (org-timestamp-translate scheduled))))))
-    " ")
-   planning info))
-
-
-;;;; Property Drawer
-
-(defun org-ascii-property-drawer (property-drawer contents info)
-  "Transcode a PROPERTY-DRAWER element from Org to ASCII.
-CONTENTS holds the contents of the drawer.  INFO is a plist
-holding contextual information."
-  (and (org-string-nw-p contents)
-       (org-ascii--justify-element contents property-drawer info)))
-
-
-;;;; Quote Block
-
-(defun org-ascii-quote-block (_quote-block contents info)
-  "Transcode a QUOTE-BLOCK element from Org to ASCII.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (org-ascii--indent-string contents (plist-get info :ascii-quote-margin)))
-
-
-;;;; Radio Target
-
-(defun org-ascii-radio-target (_radio-target contents _info)
-  "Transcode a RADIO-TARGET object from Org to ASCII.
-CONTENTS is the contents of the target.  INFO is a plist holding
-contextual information."
-  contents)
-
-
-;;;; Section
-
-(defun org-ascii-section (section contents info)
-  "Transcode a SECTION element from Org to ASCII.
-CONTENTS is the contents of the section.  INFO is a plist holding
-contextual information."
-  (let ((links
-	 (and (plist-get info :ascii-links-to-notes)
-	      ;; Take care of links in first section of the document.
-	      (not (org-element-lineage section '(headline)))
-	      (org-ascii--describe-links
-	       (org-ascii--unique-links section info)
-	       (org-ascii--current-text-width section info)
-	       info))))
-    (org-ascii--indent-string
-     (if (not (org-string-nw-p links)) contents
-       (concat (org-element-normalize-string contents) "\n\n" links))
-     ;; Do not apply inner margin if parent headline is low level.
-     (let ((headline (org-export-get-parent-headline section)))
-       (if (or (not headline) (org-export-low-level-p headline info)) 0
-	 (plist-get info :ascii-inner-margin))))))
-
-
-;;;; Special Block
-
-(defun org-ascii-special-block (_special-block contents _info)
-  "Transcode a SPECIAL-BLOCK element from Org to ASCII.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  ;; "JUSTIFYLEFT" and "JUSTIFYRIGHT" have already been taken care of
-  ;; at a lower level.  There is no other special block type to
-  ;; handle.
-  contents)
-
-
-;;;; Src Block
-
-(defun org-ascii-src-block (src-block _contents info)
-  "Transcode a SRC-BLOCK element from Org to ASCII.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let ((caption (org-ascii--build-caption src-block info))
-	(caption-above-p (plist-get info :ascii-caption-above))
-	(code (org-export-format-code-default src-block info)))
-    (if (equal code "") ""
-      (org-ascii--justify-element
-       (concat
-	(and caption caption-above-p (concat caption "\n"))
-	(org-ascii--box-string code info)
-	(and caption (not caption-above-p) (concat "\n" caption)))
-       src-block info))))
-
-
-;;;; Statistics Cookie
-
-(defun org-ascii-statistics-cookie (statistics-cookie _contents _info)
-  "Transcode a STATISTICS-COOKIE object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-element-property :value statistics-cookie))
-
-
-;;;; Subscript
-
-(defun org-ascii-subscript (subscript contents _info)
-  "Transcode a SUBSCRIPT object from Org to ASCII.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (if (org-element-property :use-brackets-p subscript)
-      (format "_{%s}" contents)
-    (format "_%s" contents)))
-
-
-;;;; Superscript
-
-(defun org-ascii-superscript (superscript contents _info)
-  "Transcode a SUPERSCRIPT object from Org to ASCII.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (if (org-element-property :use-brackets-p superscript)
-      (format "^{%s}" contents)
-    (format "^%s" contents)))
-
-
-;;;; Strike-through
-
-(defun org-ascii-strike-through (_strike-through contents _info)
-  "Transcode STRIKE-THROUGH from Org to ASCII.
-CONTENTS is text with strike-through markup.  INFO is a plist
-holding contextual information."
-  (format "+%s+" contents))
-
-
-;;;; Table
-
-(defun org-ascii-table (table contents info)
-  "Transcode a TABLE element from Org to ASCII.
-CONTENTS is the contents of the table.  INFO is a plist holding
-contextual information."
-  (let ((caption (org-ascii--build-caption table info))
-	(caption-above-p (plist-get info :ascii-caption-above)))
-    (org-ascii--justify-element
-     (concat
-      ;; Possibly add a caption string above.
-      (and caption caption-above-p (concat caption "\n"))
-      ;; Insert table.  Note: "table.el" tables are left unmodified.
-      (cond ((eq (org-element-property :type table) 'org) contents)
-	    ((and (plist-get info :ascii-table-use-ascii-art)
-		  (eq (plist-get info :ascii-charset) 'utf-8)
-		  (require 'ascii-art-to-unicode nil t))
-	     (with-temp-buffer
-	       (insert (org-remove-indentation
-			(org-element-property :value table)))
-	       (goto-char (point-min))
-	       (aa2u)
-	       (goto-char (point-max))
-	       (skip-chars-backward " \r\t\n")
-	       (buffer-substring (point-min) (point))))
-	    (t (org-remove-indentation (org-element-property :value table))))
-      ;; Possible add a caption string below.
-      (and (not caption-above-p) caption))
-     table info)))
-
-
-;;;; Table Cell
-
-(defun org-ascii--table-cell-width (table-cell info)
-  "Return width of TABLE-CELL.
-
-INFO is a plist used as a communication channel.
-
-Width of a cell is determined either by a width cookie in the
-same column as the cell, or by the maximum cell's length in that
-column.
-
-When `org-ascii-table-widen-columns' is non-nil, width cookies
-are ignored."
-  (let* ((row (org-export-get-parent table-cell))
-	 (table (org-export-get-parent row))
-	 (col (let ((cells (org-element-contents row)))
-		(- (length cells) (length (memq table-cell cells)))))
-	 (cache
-	  (or (plist-get info :ascii-table-cell-width-cache)
-	      (plist-get (setq info
-			       (plist-put info :ascii-table-cell-width-cache
-					  (make-hash-table :test 'equal)))
-			 :ascii-table-cell-width-cache)))
-	 (key (cons table col))
-	 (widenp (plist-get info :ascii-table-widen-columns)))
-    (or (gethash key cache)
-	(puthash
-	 key
-	 (let ((cookie-width (org-export-table-cell-width table-cell info)))
-	   (or (and (not widenp) cookie-width)
-	       (let ((contents-width
-		      (let ((max-width 0))
-			(org-element-map table 'table-row
-			  (lambda (row)
-			    (setq max-width
-				  (max (string-width
-					(org-export-data
-					 (org-element-contents
-					  (elt (org-element-contents row) col))
-					 info))
-				       max-width)))
-			  info)
-			max-width)))
-		 (cond ((not cookie-width) contents-width)
-		       (widenp (max cookie-width contents-width))
-		       (t cookie-width)))))
-	 cache))))
-
-(defun org-ascii-table-cell (table-cell contents info)
-  "Transcode a TABLE-CELL object from Org to ASCII.
-CONTENTS is the cell contents.  INFO is a plist used as
-a communication channel."
-  ;; Determine column width.  When `org-ascii-table-widen-columns'
-  ;; is nil and some width cookie has set it, use that value.
-  ;; Otherwise, compute the maximum width among transcoded data of
-  ;; each cell in the column.
-  (let ((width (org-ascii--table-cell-width table-cell info)))
-    ;; When contents are too large, truncate them.
-    (unless (or (plist-get info :ascii-table-widen-columns)
-		(<= (string-width (or contents "")) width))
-      (setq contents (concat (substring contents 0 (- width 2)) "=>")))
-    ;; Align contents correctly within the cell.
-    (let* ((indent-tabs-mode nil)
-	   (data
-	    (when contents
-	      (org-ascii--justify-lines
-	       contents width
-	       (org-export-table-cell-alignment table-cell info)))))
-      (setq contents
-	    (concat data
-		    (make-string (- width (string-width (or data ""))) ?\s))))
-    ;; Return cell.
-    (concat (format " %s " contents)
-	    (when (memq 'right (org-export-table-cell-borders table-cell info))
-	      (if (eq (plist-get info :ascii-charset) 'utf-8) "│" "|")))))
-
-
-;;;; Table Row
-
-(defun org-ascii-table-row (table-row contents info)
-  "Transcode a TABLE-ROW element from Org to ASCII.
-CONTENTS is the row contents.  INFO is a plist used as
-a communication channel."
-  (when (eq (org-element-property :type table-row) 'standard)
-    (let ((build-hline
-	   (function
-	    (lambda (lcorner horiz vert rcorner)
-	      (concat
-	       (apply
-		'concat
-		(org-element-map table-row 'table-cell
-		  (lambda (cell)
-		    (let ((width (org-ascii--table-cell-width cell info))
-			  (borders (org-export-table-cell-borders cell info)))
-		      (concat
-		       ;; In order to know if CELL starts the row, do
-		       ;; not compare it with the first cell in the
-		       ;; row as there might be a special column.
-		       ;; Instead, compare it with first exportable
-		       ;; cell, obtained with `org-element-map'.
-		       (when (and (memq 'left borders)
-				  (eq (org-element-map table-row 'table-cell
-					'identity info t)
-				      cell))
-			 lcorner)
-		       (make-string (+ 2 width) (string-to-char horiz))
-		       (cond
-			((not (memq 'right borders)) nil)
-			((eq (car (last (org-element-contents table-row))) cell)
-			 rcorner)
-			(t vert)))))
-		  info)) "\n"))))
-	  (utf8p (eq (plist-get info :ascii-charset) 'utf-8))
-	  (borders (org-export-table-cell-borders
-		    (org-element-map table-row 'table-cell 'identity info t)
-		    info)))
-      (concat (cond
-	       ((and (memq 'top borders) (or utf8p (memq 'above borders)))
-		(if utf8p (funcall build-hline "┍" "━" "┯" "┑")
-		  (funcall build-hline "+" "-" "+" "+")))
-	       ((memq 'above borders)
-		(if utf8p (funcall build-hline "├" "─" "┼" "┤")
-		  (funcall build-hline "+" "-" "+" "+"))))
-	      (when (memq 'left borders) (if utf8p "│" "|"))
-	      contents "\n"
-	      (when (and (memq 'bottom borders) (or utf8p (memq 'below borders)))
-		(if utf8p (funcall build-hline "┕" "━" "┷" "┙")
-		  (funcall build-hline "+" "-" "+" "+")))))))
-
-
-;;;; Timestamp
-
-(defun org-ascii-timestamp (timestamp _contents info)
-  "Transcode a TIMESTAMP object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-ascii-plain-text (org-timestamp-translate timestamp) info))
-
-
-;;;; Underline
-
-(defun org-ascii-underline (_underline contents _info)
-  "Transcode UNDERLINE from Org to ASCII.
-CONTENTS is the text with underline markup.  INFO is a plist
-holding contextual information."
-  (format "_%s_" contents))
-
-
-;;;; Verbatim
-
-(defun org-ascii-verbatim (verbatim _contents info)
-  "Return a VERBATIM object from Org to ASCII.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (format (plist-get info :ascii-verbatim-format)
-	  (org-element-property :value verbatim)))
-
-
-;;;; Verse Block
-
-(defun org-ascii-verse-block (verse-block contents info)
-  "Transcode a VERSE-BLOCK element from Org to ASCII.
-CONTENTS is verse block contents.  INFO is a plist holding
-contextual information."
-  (org-ascii--indent-string
-   (org-ascii--justify-element contents verse-block info)
-   (plist-get info :ascii-quote-margin)))
-
-
-
-;;; Filters
-
-(defun org-ascii-filter-headline-blank-lines (headline _backend info)
-  "Filter controlling number of blank lines after a headline.
-
-HEADLINE is a string representing a transcoded headline.  BACKEND
-is symbol specifying back-end used for export.  INFO is plist
-containing the communication channel.
-
-This function only applies to `ascii' back-end.  See
-`org-ascii-headline-spacing' for information."
-  (let ((headline-spacing (plist-get info :ascii-headline-spacing)))
-    (if (not headline-spacing) headline
-      (let ((blanks (make-string (1+ (cdr headline-spacing)) ?\n)))
-	(replace-regexp-in-string "\n\\(?:\n[ \t]*\\)*\\'" blanks headline)))))
-
-(defun org-ascii-filter-paragraph-spacing (tree _backend info)
-  "Filter controlling number of blank lines between paragraphs.
-
-TREE is the parse tree.  BACKEND is the symbol specifying
-back-end used for export.  INFO is a plist used as
-a communication channel.
-
-See `org-ascii-paragraph-spacing' for information."
-  (let ((paragraph-spacing (plist-get info :ascii-paragraph-spacing)))
-    (when (wholenump paragraph-spacing)
-      (org-element-map tree 'paragraph
-	(lambda (p)
-	  (when (eq (org-element-type (org-export-get-next-element p info))
-		    'paragraph)
-	    (org-element-put-property p :post-blank paragraph-spacing))))))
-  tree)
-
-(defun org-ascii-filter-comment-spacing (tree _backend info)
-  "Filter removing blank lines between comments.
-TREE is the parse tree.  BACKEND is the symbol specifying
-back-end used for export.  INFO is a plist used as
-a communication channel."
-  (org-element-map tree '(comment comment-block)
-    (lambda (c)
-      (when (memq (org-element-type (org-export-get-next-element c info))
-		  '(comment comment-block))
-	(org-element-put-property c :post-blank 0))))
-  tree)
-
-
-
-;;; End-user functions
-
-;;;###autoload
-(defun org-ascii-export-as-ascii
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to a text buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, strip title and
-table of contents from output.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org ASCII Export*\", which
-will be displayed when `org-export-show-temporary-export-buffer'
-is non-nil."
-  (interactive)
-  (org-export-to-buffer 'ascii "*Org ASCII Export*"
-    async subtreep visible-only body-only ext-plist (lambda () (text-mode))))
-
-;;;###autoload
-(defun org-ascii-export-to-ascii
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to a text file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, strip title and
-table of contents from output.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name."
-  (interactive)
-  (let ((file (org-export-output-file-name ".txt" subtreep)))
-    (org-export-to-file 'ascii file
-      async subtreep visible-only body-only ext-plist)))
-
-;;;###autoload
-(defun org-ascii-publish-to-ascii (plist filename pub-dir)
-  "Publish an Org file to ASCII.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to
-   'ascii filename ".txt" `(:ascii-charset ascii ,@plist) pub-dir))
-
-;;;###autoload
-(defun org-ascii-publish-to-latin1 (plist filename pub-dir)
-  "Publish an Org file to Latin-1.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to
-   'ascii filename ".txt" `(:ascii-charset latin1 ,@plist) pub-dir))
-
-;;;###autoload
-(defun org-ascii-publish-to-utf8 (plist filename pub-dir)
-  "Publish an org file to UTF-8.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to
-   'ascii filename ".txt" `(:ascii-charset utf-8 ,@plist) pub-dir))
-
-
-(provide 'ox-ascii)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; coding: utf-8
-;; End:
-
-;;; ox-ascii.el ends here
diff --git a/elpa/org-9.1.14/ox-ascii.elc b/elpa/org-9.1.14/ox-ascii.elc
deleted file mode 100644
index 6d57e2f..0000000
--- a/elpa/org-9.1.14/ox-ascii.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-beamer.el b/elpa/org-9.1.14/ox-beamer.el
deleted file mode 100644
index 15b78dc..0000000
--- a/elpa/org-9.1.14/ox-beamer.el
+++ /dev/null
@@ -1,1143 +0,0 @@
-;;; ox-beamer.el --- Beamer Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2007-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten.dominik AT gmail DOT com>
-;;         Nicolas Goaziou <n.goaziou AT gmail DOT com>
-;; Keywords: org, wp, tex
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; This library implements both a Beamer back-end, derived from the
-;; LaTeX one and a minor mode easing structure edition of the
-;; document.  See Org manual for more information.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'ox-latex)
-
-;; Install a default set-up for Beamer export.
-(unless (assoc "beamer" org-latex-classes)
-  (add-to-list 'org-latex-classes
-	       '("beamer"
-		 "\\documentclass[presentation]{beamer}"
-		 ("\\section{%s}" . "\\section*{%s}")
-		 ("\\subsection{%s}" . "\\subsection*{%s}")
-		 ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))
-
-
-
-;;; User-Configurable Variables
-
-(defgroup org-export-beamer nil
-  "Options specific for using the beamer class in LaTeX export."
-  :tag "Org Beamer"
-  :group 'org-export
-  :version "24.2")
-
-(defcustom org-beamer-frame-level 1
-  "The level at which headlines become frames.
-
-Headlines at a lower level will be translated into a sectioning
-structure.  At a higher level, they will be translated into
-blocks.
-
-If a headline with a \"BEAMER_env\" property set to \"frame\" is
-found within a tree, its level locally overrides this number.
-
-This variable has no effect on headlines with the \"BEAMER_env\"
-property set to either \"ignoreheading\", \"appendix\", or
-\"note\", which will respectively, be invisible, become an
-appendix or a note.
-
-This integer is relative to the minimal level of a headline
-within the parse tree, defined as 1."
-  :group 'org-export-beamer
-  :type 'integer)
-
-(defcustom org-beamer-frame-default-options ""
-  "Default options string to use for frames.
-For example, it could be set to \"allowframebreaks\"."
-  :group 'org-export-beamer
-  :type '(string :tag "[options]"))
-
-(defcustom org-beamer-column-view-format
-  "%45ITEM %10BEAMER_env(Env) %10BEAMER_act(Act) %4BEAMER_col(Col) %8BEAMER_opt(Opt)"
-  "Column view format that should be used to fill the template."
-  :group 'org-export-beamer
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const  :tag "Do not insert Beamer column view format" nil)
-	  (string :tag "Beamer column view format")))
-
-(defcustom org-beamer-theme "default"
-  "Default theme used in Beamer presentations."
-  :group 'org-export-beamer
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Do not insert a Beamer theme" nil)
-	  (string :tag "Beamer theme")))
-
-(defcustom org-beamer-environments-extra nil
-  "Environments triggered by tags in Beamer export.
-Each entry has 4 elements:
-
-name    Name of the environment
-key     Selection key for `org-beamer-select-environment'
-open    The opening template for the environment, with the following escapes
-        %a   the action/overlay specification
-        %A   the default action/overlay specification
-        %R   the raw BEAMER_act value
-        %o   the options argument, with square brackets
-        %O   the raw BEAMER_opt value
-        %h   the headline text
-        %r   the raw headline text (i.e. without any processing)
-        %H   if there is headline text, that raw text in {} braces
-        %U   if there is headline text, that raw text in [] brackets
-close   The closing string of the environment."
-  :group 'org-export-beamer
-  :version "24.4"
-  :package-version '(Org . "8.1")
-  :type '(repeat
-	  (list
-	   (string :tag "Environment")
-	   (string :tag "Selection key")
-	   (string :tag "Begin")
-	   (string :tag "End"))))
-
-(defcustom org-beamer-outline-frame-title "Outline"
-  "Default title of a frame containing an outline."
-  :group 'org-export-beamer
-  :type '(string :tag "Outline frame title"))
-
-(defcustom org-beamer-outline-frame-options ""
-  "Outline frame options appended after \\begin{frame}.
-You might want to put e.g. \"allowframebreaks=0.9\" here."
-  :group 'org-export-beamer
-  :type '(string :tag "Outline frame options"))
-
-
-(defcustom org-beamer-subtitle-format "\\subtitle{%s}"
-  "Format string used for transcoded subtitle.
-The format string should have at most one \"%s\"-expression,
-which is replaced with the subtitle."
-  :group 'org-export-beamer
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(string :tag "Format string"))
-
-
-;;; Internal Variables
-
-(defconst org-beamer-column-widths
-  "0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.0 :ETC"
-"The column widths that should be installed as allowed property values.")
-
-(defconst org-beamer-environments-special
-  '(("againframe"     "A")
-    ("appendix"       "x")
-    ("column"         "c")
-    ("columns"        "C")
-    ("frame"          "f")
-    ("fullframe"      "F")
-    ("ignoreheading"  "i")
-    ("note"           "n")
-    ("noteNH"         "N"))
-  "Alist of environments treated in a special way by the back-end.
-Keys are environment names, as strings, values are bindings used
-in `org-beamer-select-environment'.  Environments listed here,
-along with their binding, are hard coded and cannot be modified
-through `org-beamer-environments-extra' variable.")
-
-(defconst org-beamer-environments-default
-  '(("block"          "b" "\\begin{block}%a{%h}"          "\\end{block}")
-    ("alertblock"     "a" "\\begin{alertblock}%a{%h}"     "\\end{alertblock}")
-    ("verse"          "v" "\\begin{verse}%a %% %h"        "\\end{verse}")
-    ("quotation"      "q" "\\begin{quotation}%a %% %h"    "\\end{quotation}")
-    ("quote"          "Q" "\\begin{quote}%a %% %h"        "\\end{quote}")
-    ("structureenv"   "s" "\\begin{structureenv}%a %% %h" "\\end{structureenv}")
-    ("theorem"        "t" "\\begin{theorem}%a[%h]"        "\\end{theorem}")
-    ("definition"     "d" "\\begin{definition}%a[%h]"     "\\end{definition}")
-    ("example"        "e" "\\begin{example}%a[%h]"        "\\end{example}")
-    ("exampleblock"   "E" "\\begin{exampleblock}%a{%h}"   "\\end{exampleblock}")
-    ("proof"          "p" "\\begin{proof}%a[%h]"          "\\end{proof}")
-    ("beamercolorbox" "o" "\\begin{beamercolorbox}%o{%h}" "\\end{beamercolorbox}"))
-  "Environments triggered by properties in Beamer export.
-These are the defaults - for user definitions, see
-`org-beamer-environments-extra'.")
-
-(defconst org-beamer-verbatim-elements
-  '(code example-block fixed-width inline-src-block src-block verbatim)
-  "List of element or object types producing verbatim text.
-This is used internally to determine when a frame should have the
-\"fragile\" option.")
-
-
-
-;;; Internal functions
-
-(defun org-beamer--normalize-argument (argument type)
-  "Return ARGUMENT string with proper boundaries.
-
-TYPE is a symbol among the following:
-`action'    Return ARGUMENT within angular brackets.
-`defaction' Return ARGUMENT within both square and angular brackets.
-`option'    Return ARGUMENT within square brackets."
-  (if (not (string-match "\\S-" argument)) ""
-    (cl-case type
-      (action (format "<%s>" (org-unbracket-string "<" ">" argument)))
-      (defaction
-	(format "[<%s>]"
-		(org-unbracket-string "<" ">" (org-unbracket-string "[" "]" argument))))
-      (option (format "[%s]" (org-unbracket-string "[" "]" argument)))
-      (otherwise (error "Invalid `type' argument to `org-beamer--normalize-argument': %s"
-			type)))))
-
-(defun org-beamer--element-has-overlay-p (element)
-  "Non-nil when ELEMENT has an overlay specified.
-An element has an overlay specification when it starts with an
-`beamer' export-snippet whose value is between angular brackets.
-Return overlay specification, as a string, or nil."
-  (let ((first-object (car (org-element-contents element))))
-    (when (eq (org-element-type first-object) 'export-snippet)
-      (let ((value (org-element-property :value first-object)))
-	(and (string-prefix-p "<" value) (string-suffix-p ">" value)
-	     value)))))
-
-
-
-;;; Define Back-End
-
-(org-export-define-derived-backend 'beamer 'latex
-  :menu-entry
-  '(?l 1
-       ((?B "As LaTeX buffer (Beamer)" org-beamer-export-as-latex)
-	(?b "As LaTeX file (Beamer)" org-beamer-export-to-latex)
-	(?P "As PDF file (Beamer)" org-beamer-export-to-pdf)
-	(?O "As PDF file and open (Beamer)"
-	    (lambda (a s v b)
-	      (if a (org-beamer-export-to-pdf t s v b)
-		(org-open-file (org-beamer-export-to-pdf nil s v b)))))))
-  :options-alist
-  '((:headline-levels nil "H" org-beamer-frame-level)
-    (:latex-class "LATEX_CLASS" nil "beamer" t)
-    (:beamer-subtitle-format nil nil org-beamer-subtitle-format)
-    (:beamer-column-view-format "COLUMNS" nil org-beamer-column-view-format)
-    (:beamer-theme "BEAMER_THEME" nil org-beamer-theme)
-    (:beamer-color-theme "BEAMER_COLOR_THEME" nil nil t)
-    (:beamer-font-theme "BEAMER_FONT_THEME" nil nil t)
-    (:beamer-inner-theme "BEAMER_INNER_THEME" nil nil t)
-    (:beamer-outer-theme "BEAMER_OUTER_THEME" nil nil t)
-    (:beamer-header "BEAMER_HEADER" nil nil newline)
-    (:beamer-environments-extra nil nil org-beamer-environments-extra)
-    (:beamer-frame-default-options nil nil org-beamer-frame-default-options)
-    (:beamer-outline-frame-options nil nil org-beamer-outline-frame-options)
-    (:beamer-outline-frame-title nil nil org-beamer-outline-frame-title))
-  :translate-alist '((bold . org-beamer-bold)
-		     (export-block . org-beamer-export-block)
-		     (export-snippet . org-beamer-export-snippet)
-		     (headline . org-beamer-headline)
-		     (item . org-beamer-item)
-		     (keyword . org-beamer-keyword)
-		     (link . org-beamer-link)
-		     (plain-list . org-beamer-plain-list)
-		     (radio-target . org-beamer-radio-target)
-		     (template . org-beamer-template)))
-
-
-
-;;; Transcode Functions
-
-;;;; Bold
-
-(defun org-beamer-bold (bold contents _info)
-  "Transcode BLOCK object into Beamer code.
-CONTENTS is the text being bold.  INFO is a plist used as
-a communication channel."
-  (format "\\alert%s{%s}"
-	  (or (org-beamer--element-has-overlay-p bold) "")
-	  contents))
-
-
-;;;; Export Block
-
-(defun org-beamer-export-block (export-block _contents _info)
-  "Transcode an EXPORT-BLOCK element into Beamer code.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (when (member (org-element-property :type export-block) '("BEAMER" "LATEX"))
-    (org-remove-indentation (org-element-property :value export-block))))
-
-
-;;;; Export Snippet
-
-(defun org-beamer-export-snippet (export-snippet _contents info)
-  "Transcode an EXPORT-SNIPPET object into Beamer code.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (let ((backend (org-export-snippet-backend export-snippet))
-	(value (org-element-property :value export-snippet)))
-    ;; Only "latex" and "beamer" snippets are retained.
-    (cond ((eq backend 'latex) value)
-	  ;; Ignore "beamer" snippets specifying overlays.
-	  ((and (eq backend 'beamer)
-		(or (org-export-get-previous-element export-snippet info)
-		    (not (string-match "\\`<.*>\\'" value))))
-	   value))))
-
-
-;;;; Headline
-;;
-;; The main function to translate a headline is
-;; `org-beamer-headline'.
-;;
-;; Depending on the level at which a headline is considered as
-;; a frame (given by `org-beamer--frame-level'), the headline is
-;; either a section (`org-beamer--format-section'), a frame
-;; (`org-beamer--format-frame') or a block
-;; (`org-beamer--format-block').
-;;
-;; `org-beamer-headline' also takes care of special environments
-;; like "ignoreheading", "note", "noteNH", "appendix" and
-;; "againframe".
-
-(defun org-beamer--get-label (headline info)
-  "Return label for HEADLINE, as a string.
-
-INFO is a plist used as a communication channel.
-
-The value is either the label specified in \"BEAMER_opt\"
-property, the custom ID, if there is one and
-`:latex-prefer-user-labels' property has a non nil value, or
-a unique internal label.  This function assumes HEADLINE will be
-treated as a frame."
-  (cond
-   ((let ((opt (org-element-property :BEAMER_OPT headline)))
-      (and (stringp opt)
-	   (string-match "\\(?:^\\|,\\)label=\\(.*?\\)\\(?:$\\|,\\)" opt)
-	   (let ((label (match-string 1 opt)))
-	     (if (string-match-p "\\`{.*}\\'" label)
-		 (substring label 1 -1)
-	       label)))))
-   ((and (plist-get info :latex-prefer-user-labels)
-	 (org-element-property :CUSTOM_ID headline)))
-   (t (format "sec:%s" (org-export-get-reference headline info)))))
-
-(defun org-beamer--frame-level (headline info)
-  "Return frame level in subtree containing HEADLINE.
-INFO is a plist used as a communication channel."
-  (or
-   ;; 1. Look for "frame" environment in parents, starting from the
-   ;;    farthest.
-   (catch 'exit
-     (dolist (parent (nreverse (org-element-lineage headline)))
-       (let ((env (org-element-property :BEAMER_ENV parent)))
-	 (when (and env (member-ignore-case env '("frame" "fullframe")))
-	   (throw 'exit (org-export-get-relative-level parent info))))))
-   ;; 2. Look for "frame" environment in HEADLINE.
-   (let ((env (org-element-property :BEAMER_ENV headline)))
-     (and env (member-ignore-case env '("frame" "fullframe"))
-	  (org-export-get-relative-level headline info)))
-   ;; 3. Look for "frame" environment in sub-tree.
-   (org-element-map headline 'headline
-     (lambda (hl)
-       (let ((env (org-element-property :BEAMER_ENV hl)))
-	 (when (and env (member-ignore-case env '("frame" "fullframe")))
-	   (org-export-get-relative-level hl info))))
-     info 'first-match)
-   ;; 4. No "frame" environment in tree: use default value.
-   (plist-get info :headline-levels)))
-
-(defun org-beamer--format-section (headline contents info)
-  "Format HEADLINE as a sectioning part.
-CONTENTS holds the contents of the headline.  INFO is a plist
-used as a communication channel."
-  (let ((latex-headline
-	 (org-export-with-backend
-	  ;; We create a temporary export back-end which behaves the
-	  ;; same as current one, but adds "\protect" in front of the
-	  ;; output of some objects.
-	  (org-export-create-backend
-	   :parent 'latex
-	   :transcoders
-	   (let ((protected-output
-		  (function
-		   (lambda (object contents info)
-		     (let ((code (org-export-with-backend
-				  'beamer object contents info)))
-		       (if (org-string-nw-p code) (concat "\\protect" code)
-			 code))))))
-	     (mapcar #'(lambda (type) (cons type protected-output))
-		     '(bold footnote-reference italic strike-through timestamp
-			    underline))))
-	  headline
-	  contents
-	  info))
-	(mode-specs (org-element-property :BEAMER_ACT headline)))
-    (if (and mode-specs
-	     (string-match "\\`\\\\\\(.*?\\)\\(?:\\*\\|\\[.*\\]\\)?{"
-			   latex-headline))
-	;; Insert overlay specifications.
-	(replace-match (concat (match-string 1 latex-headline)
-			       (format "<%s>" mode-specs))
-		       nil nil latex-headline 1)
-      latex-headline)))
-
-(defun org-beamer--format-frame (headline contents info)
-  "Format HEADLINE as a frame.
-CONTENTS holds the contents of the headline.  INFO is a plist
-used as a communication channel."
-  (let ((fragilep
-	 ;; FRAGILEP is non-nil when HEADLINE contains an element
-	 ;; among `org-beamer-verbatim-elements'.
-	 (org-element-map headline org-beamer-verbatim-elements 'identity
-			  info 'first-match)))
-    (concat "\\begin{frame}"
-	    ;; Overlay specification, if any. When surrounded by
-	    ;; square brackets, consider it as a default
-	    ;; specification.
-	    (let ((action (org-element-property :BEAMER_ACT headline)))
-	      (cond
-	       ((not action) "")
-	       ((string-match "\\`\\[.*\\]\\'" action )
-		(org-beamer--normalize-argument action 'defaction))
-	       (t (org-beamer--normalize-argument action 'action))))
-	    ;; Options, if any.
-	    (let* ((beamer-opt (org-element-property :BEAMER_OPT headline))
-		   (options
-		    ;; Collect nonempty options from default value and
-		    ;; headline's properties.  Also add a label for
-		    ;; links.
-		    (cl-remove-if-not 'org-string-nw-p
-		     (append
-		      (org-split-string
-		       (plist-get info :beamer-frame-default-options) ",")
-		      (and beamer-opt
-			   (org-split-string
-			    ;; Remove square brackets if user provided
-			    ;; them.
-			    (and (string-match "^\\[?\\(.*\\)\\]?$" beamer-opt)
-				 (match-string 1 beamer-opt))
-			    ","))
-		      ;; Provide an automatic label for the frame
-		      ;; unless the user specified one.  Also refrain
-		      ;; from labeling `allowframebreaks' frames; this
-		      ;; is not allowed by beamer.
-		      (unless (and beamer-opt
-				   (or (string-match "\\(^\\|,\\)label=" beamer-opt)
-				       (string-match "allowframebreaks" beamer-opt)))
-			(list
-			 (let ((label (org-beamer--get-label headline info)))
-			   ;; Labels containing colons need to be
-			   ;; wrapped within braces.
-			   (format (if (string-match-p ":" label)
-				       "label={%s}"
-				     "label=%s")
-				   label))))))))
-	      ;; Change options list into a string.
-	      (org-beamer--normalize-argument
-	       (mapconcat
-		'identity
-		(if (or (not fragilep) (member "fragile" options)) options
-		  (cons "fragile" options))
-		",")
-	       'option))
-	    ;; Title.
-	    (let ((env (org-element-property :BEAMER_ENV headline)))
-	      (format "{%s}"
-		      (if (and env (equal (downcase env) "fullframe")) ""
-			(org-export-data
-			 (org-element-property :title headline) info))))
-	    "\n"
-	    ;; The following workaround is required in fragile frames
-	    ;; as Beamer will append "\par" to the beginning of the
-	    ;; contents.  So we need to make sure the command is
-	    ;; separated from the contents by at least one space.  If
-	    ;; it isn't, it will create "\parfirst-word" command and
-	    ;; remove the first word from the contents in the PDF
-	    ;; output.
-	    (if (not fragilep) contents
-	      (replace-regexp-in-string "\\`\n*" "\\& " (or contents "")))
-	    "\\end{frame}")))
-
-(defun org-beamer--format-block (headline contents info)
-  "Format HEADLINE as a block.
-CONTENTS holds the contents of the headline.  INFO is a plist
-used as a communication channel."
-  (let* ((column-width (org-element-property :BEAMER_COL headline))
-	 ;; ENVIRONMENT defaults to "block" if none is specified and
-	 ;; there is no column specification.  If there is a column
-	 ;; specified but still no explicit environment, ENVIRONMENT
-	 ;; is "column".
-	 (environment (let ((env (org-element-property :BEAMER_ENV headline)))
-			(cond
-			 ;; "block" is the fallback environment.
-			 ((and (not env) (not column-width)) "block")
-			 ;; "column" only.
-			 ((not env) "column")
-			 ;; Use specified environment.
-			 (t env))))
-	 (raw-title (org-element-property :raw-value headline))
-	 (env-format
-	  (cond ((member environment '("column" "columns")) nil)
-		((assoc environment
-			(append (plist-get info :beamer-environments-extra)
-				org-beamer-environments-default)))
-		(t (user-error "Wrong block type at a headline named \"%s\""
-			       raw-title))))
-	 (title (org-export-data (org-element-property :title headline) info))
-	 (raw-options (org-element-property :BEAMER_OPT headline))
-	 (options (if raw-options
-		      (org-beamer--normalize-argument raw-options 'option)
-		    ""))
-	 ;; Start a "columns" environment when explicitly requested or
-	 ;; when there is no previous headline or the previous
-	 ;; headline do not have a BEAMER_column property.
-	 (parent-env (org-element-property
-		      :BEAMER_ENV (org-export-get-parent-headline headline)))
-	 (start-columns-p
-	  (or (equal environment "columns")
-	      (and column-width
-		   (not (and parent-env
-			     (equal (downcase parent-env) "columns")))
-		   (or (org-export-first-sibling-p headline info)
-		       (not (org-element-property
-			     :BEAMER_COL
-			     (org-export-get-previous-element
-			      headline info)))))))
-	 ;; End the "columns" environment when explicitly requested or
-	 ;; when there is no next headline or the next headline do not
-	 ;; have a BEAMER_column property.
-	 (end-columns-p
-	  (or (equal environment "columns")
-	      (and column-width
-		   (not (and parent-env
-			     (equal (downcase parent-env) "columns")))
-		   (or (org-export-last-sibling-p headline info)
-		       (not (org-element-property
-			     :BEAMER_COL
-			     (org-export-get-next-element headline info))))))))
-    (concat
-     (when start-columns-p
-       ;; Column can accept options only when the environment is
-       ;; explicitly defined.
-       (if (not (equal environment "columns")) "\\begin{columns}\n"
-	 (format "\\begin{columns}%s\n" options)))
-     (when column-width
-       (format "\\begin{column}%s{%s}\n"
-	       ;; One can specify placement for column only when
-	       ;; HEADLINE stands for a column on its own.
-	       (if (equal environment "column") options "")
-	       (format "%s\\columnwidth" column-width)))
-     ;; Block's opening string.
-     (when (nth 2 env-format)
-       (concat
-	(org-fill-template
-	 (nth 2 env-format)
-	 (nconc
-	  ;; If BEAMER_act property has its value enclosed in square
-	  ;; brackets, it is a default overlay specification and
-	  ;; overlay specification is empty.  Otherwise, it is an
-	  ;; overlay specification and the default one is nil.
-	  (let ((action (org-element-property :BEAMER_ACT headline)))
-	    (cond
-	     ((not action) (list (cons "a" "") (cons "A" "") (cons "R" "")))
-	     ((and (string-prefix-p "[" action)
-		   (string-suffix-p "]" action))
-	      (list
-	       (cons "A" (org-beamer--normalize-argument action 'defaction))
-	       (cons "a" "")
-	       (cons "R" action)))
-	     (t
-	      (list (cons "a" (org-beamer--normalize-argument action 'action))
-		    (cons "A" "")
-		    (cons "R" action)))))
-	  (list (cons "o" options)
-		(cons "O" (or raw-options ""))
-		(cons "h" title)
-		(cons "r" raw-title)
-		(cons "H" (if (equal raw-title "") ""
-			    (format "{%s}" raw-title)))
-		(cons "U" (if (equal raw-title "") ""
-			    (format "[%s]" raw-title))))))
-	"\n"))
-     contents
-     ;; Block's closing string, if any.
-     (and (nth 3 env-format) (concat (nth 3 env-format) "\n"))
-     (when column-width "\\end{column}\n")
-     (when end-columns-p "\\end{columns}"))))
-
-(defun org-beamer-headline (headline contents info)
-  "Transcode HEADLINE element into Beamer code.
-CONTENTS is the contents of the headline.  INFO is a plist used
-as a communication channel."
-  (unless (org-element-property :footnote-section-p headline)
-    (let ((level (org-export-get-relative-level headline info))
-	  (frame-level (org-beamer--frame-level headline info))
-	  (environment (let ((env (org-element-property :BEAMER_ENV headline)))
-			 (or (org-string-nw-p env) "block"))))
-      (cond
-       ;; Case 1: Resume frame specified by "BEAMER_ref" property.
-       ((equal environment "againframe")
-	(let ((ref (org-element-property :BEAMER_REF headline)))
-	  ;; Reference to frame being resumed is mandatory.  Ignore
-	  ;; the whole headline if it isn't provided.
-	  (when (org-string-nw-p ref)
-	    (concat "\\againframe"
-		    ;; Overlay specification.
-		    (let ((overlay (org-element-property :BEAMER_ACT headline)))
-		      (when overlay
-			(org-beamer--normalize-argument
-			 overlay
-			 (if (string-match "\\`\\[.*\\]\\'" overlay) 'defaction
-			   'action))))
-		    ;; Options.
-		    (let ((options (org-element-property :BEAMER_OPT headline)))
-		      (when options
-			(org-beamer--normalize-argument options 'option)))
-		    ;; Resolve reference provided by "BEAMER_ref"
-		    ;; property.  This is done by building a minimal
-		    ;; fake link and calling the appropriate resolve
-		    ;; function, depending on the reference syntax.
-		    (let ((target
-			   (if (string-match "\\`\\(id:\\|#\\)" ref)
-			       (org-export-resolve-id-link
-				`(link (:path ,(substring ref (match-end 0))))
-				info)
-			     (org-export-resolve-fuzzy-link
-			      `(link (:path
-				      ;; Look for headlines only.
-				      ,(if (eq (string-to-char ref) ?*) ref
-					 (concat "*" ref))))
-			      info))))
-		      ;; Now use user-defined label provided in TARGET
-		      ;; headline, or fallback to standard one.
-		      (format "{%s}" (org-beamer--get-label target info)))))))
-       ;; Case 2: Creation of an appendix is requested.
-       ((equal environment "appendix")
-	(concat "\\appendix"
-		(org-element-property :BEAMER_ACT headline)
-		"\n"
-		(make-string (org-element-property :pre-blank headline) ?\n)
-		contents))
-       ;; Case 3: Ignore heading.
-       ((equal environment "ignoreheading")
-	(concat (make-string (org-element-property :pre-blank headline) ?\n)
-		contents))
-       ;; Case 4: HEADLINE is a note.
-       ((member environment '("note" "noteNH"))
-	(format "\\note{%s}"
-		(concat (and (equal environment "note")
-			     (concat
-			      (org-export-data
-			       (org-element-property :title headline) info)
-			      "\n"))
-			(org-trim contents))))
-       ;; Case 5: HEADLINE is a frame.
-       ((= level frame-level)
-	(org-beamer--format-frame headline contents info))
-       ;; Case 6: Regular section, extracted from
-       ;; `org-latex-classes'.
-       ((< level frame-level)
-	(org-beamer--format-section headline contents info))
-       ;; Case 7: Otherwise, HEADLINE is a block.
-       (t (org-beamer--format-block headline contents info))))))
-
-
-;;;; Item
-
-(defun org-beamer-item (item contents info)
-  "Transcode an ITEM element into Beamer code.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (org-export-with-backend
-   ;; Delegate item export to `latex'.  However, we use `beamer'
-   ;; transcoders for objects in the description tag.
-   (org-export-create-backend
-    :parent 'beamer
-    :transcoders
-    (list
-     (cons
-      'item
-      (lambda (item _c _i)
-	(let ((action
-	       (let ((first (car (org-element-contents item))))
-		 (and (eq (org-element-type first) 'paragraph)
-		      (org-beamer--element-has-overlay-p first))))
-	      (output (org-latex-item item contents info)))
-	  (if (not (and action (string-match "\\\\item" output))) output
-	    ;; If the item starts with a paragraph and that paragraph
-	    ;; starts with an export snippet specifying an overlay,
-	    ;; append it to the \item command.
-	    (replace-match (concat "\\\\item" action) nil nil output)))))))
-   item contents info))
-
-
-;;;; Keyword
-
-(defun org-beamer-keyword (keyword contents info)
-  "Transcode a KEYWORD element into Beamer code.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (let ((key (org-element-property :key keyword))
-	(value (org-element-property :value keyword)))
-    ;; Handle specifically BEAMER and TOC (headlines only) keywords.
-    ;; Otherwise, fallback to `latex' back-end.
-    (cond
-     ((equal key "BEAMER") value)
-     ((and (equal key "TOC") (string-match "\\<headlines\\>" value))
-      (let ((depth (or (and (string-match "[0-9]+" value)
-			    (string-to-number (match-string 0 value)))
-		       (plist-get info :with-toc)))
-	    (options (and (string-match "\\[.*?\\]" value)
-			  (match-string 0 value))))
-	(concat
-	 (when (wholenump depth) (format "\\setcounter{tocdepth}{%s}\n" depth))
-	 "\\tableofcontents" options)))
-     (t (org-export-with-backend 'latex keyword contents info)))))
-
-
-;;;; Link
-
-(defun org-beamer-link (link contents info)
-  "Transcode a LINK object into Beamer code.
-CONTENTS is the description part of the link.  INFO is a plist
-used as a communication channel."
-  (or (org-export-custom-protocol-maybe link contents 'beamer)
-      ;; Fall-back to LaTeX export.  However, prefer "\hyperlink" over
-      ;; "\hyperref" since the former handles overlay specifications.
-      (let ((latex-link (org-export-with-backend 'latex link contents info)))
-	(if (string-match "\\`\\\\hyperref\\[\\(.*?\\)\\]" latex-link)
-	    (replace-match
-	     (format "\\\\hyperlink%s{\\1}"
-		     (or (org-beamer--element-has-overlay-p link) ""))
-	     nil nil latex-link)
-	  latex-link))))
-
-
-;;;; Plain List
-;;
-;; Plain lists support `:environment', `:overlay' and `:options'
-;; attributes.
-
-(defun org-beamer-plain-list (plain-list contents info)
-  "Transcode a PLAIN-LIST element into Beamer code.
-CONTENTS is the contents of the list.  INFO is a plist holding
-contextual information."
-  (let* ((type (org-element-property :type plain-list))
-	 (attributes (org-combine-plists
-		      (org-export-read-attribute :attr_latex plain-list)
-		      (org-export-read-attribute :attr_beamer plain-list)))
-	 (latex-type (let ((env (plist-get attributes :environment)))
-		       (cond (env)
-			     ((eq type 'ordered) "enumerate")
-			     ((eq type 'descriptive) "description")
-			     (t "itemize")))))
-    (org-latex--wrap-label
-     plain-list
-     (format "\\begin{%s}%s%s\n%s\\end{%s}"
-	     latex-type
-	     ;; Default overlay specification, if any.
-	     (org-beamer--normalize-argument
-	      (or (plist-get attributes :overlay) "")
-	      'defaction)
-	     ;; Second optional argument depends on the list type.
-	     (org-beamer--normalize-argument
-	      (or (plist-get attributes :options) "")
-	      'option)
-	     ;; Eventually insert contents and close environment.
-	     contents
-	     latex-type)
-     info)))
-
-
-;;;; Radio Target
-
-(defun org-beamer-radio-target (radio-target text info)
-  "Transcode a RADIO-TARGET object into Beamer code.
-TEXT is the text of the target.  INFO is a plist holding
-contextual information."
-  (format "\\hypertarget%s{%s}{%s}"
-	  (or (org-beamer--element-has-overlay-p radio-target) "")
-	  (org-export-get-reference radio-target info)
-	  text))
-
-
-;;;; Template
-;;
-;; Template used is similar to the one used in `latex' back-end,
-;; excepted for the table of contents and Beamer themes.
-
-(defun org-beamer-template (contents info)
-  "Return complete document string after Beamer conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  (let ((title (org-export-data (plist-get info :title) info))
-	(subtitle (org-export-data (plist-get info :subtitle) info)))
-    (concat
-     ;; Time-stamp.
-     (and (plist-get info :time-stamp-file)
-	  (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
-     ;; LaTeX compiler
-     (org-latex--insert-compiler info)
-     ;; Document class and packages.
-     (org-latex-make-preamble info)
-     ;; Insert themes.
-     (let ((format-theme
-	    (function
-	     (lambda (prop command)
-	       (let ((theme (plist-get info prop)))
-		 (when theme
-		   (concat command
-			   (if (not (string-match "\\[.*\\]" theme))
-			       (format "{%s}\n" theme)
-			     (format "%s{%s}\n"
-				     (match-string 0 theme)
-				     (org-trim
-				      (replace-match "" nil nil theme)))))))))))
-       (mapconcat (lambda (args) (apply format-theme args))
-		  '((:beamer-theme "\\usetheme")
-		    (:beamer-color-theme "\\usecolortheme")
-		    (:beamer-font-theme "\\usefonttheme")
-		    (:beamer-inner-theme "\\useinnertheme")
-		    (:beamer-outer-theme "\\useoutertheme"))
-		  ""))
-     ;; Possibly limit depth for headline numbering.
-     (let ((sec-num (plist-get info :section-numbers)))
-       (when (integerp sec-num)
-	 (format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
-     ;; Author.
-     (let ((author (and (plist-get info :with-author)
-			(let ((auth (plist-get info :author)))
-			  (and auth (org-export-data auth info)))))
-	   (email (and (plist-get info :with-email)
-		       (org-export-data (plist-get info :email) info))))
-       (cond ((and author email (not (string= "" email)))
-	      (format "\\author{%s\\thanks{%s}}\n" author email))
-	     ((or author email) (format "\\author{%s}\n" (or author email)))))
-     ;; Date.
-     (let ((date (and (plist-get info :with-date) (org-export-get-date info))))
-       (format "\\date{%s}\n" (org-export-data date info)))
-     ;; Title
-     (format "\\title{%s}\n" title)
-     (when (org-string-nw-p subtitle)
-       (concat (format (plist-get info :beamer-subtitle-format) subtitle) "\n"))
-     ;; Beamer-header
-     (let ((beamer-header (plist-get info :beamer-header)))
-       (when beamer-header
-	 (format "%s\n" (plist-get info :beamer-header))))
-     ;; 9. Hyperref options.
-     (let ((template (plist-get info :latex-hyperref-template)))
-       (and (stringp template)
-	    (format-spec template (org-latex--format-spec info))))
-     ;; Document start.
-     "\\begin{document}\n\n"
-     ;; Title command.
-     (org-element-normalize-string
-      (cond ((not (plist-get info :with-title)) nil)
-	    ((string= "" title) nil)
-	    ((not (stringp org-latex-title-command)) nil)
-	    ((string-match "\\(?:[^%]\\|^\\)%s"
-			   org-latex-title-command)
-	     (format org-latex-title-command title))
-	    (t org-latex-title-command)))
-     ;; Table of contents.
-     (let ((depth (plist-get info :with-toc)))
-       (when depth
-	 (concat
-	  (format "\\begin{frame}%s{%s}\n"
-		  (org-beamer--normalize-argument
-		   (plist-get info :beamer-outline-frame-options) 'option)
-		  (plist-get info :beamer-outline-frame-title))
-	  (when (wholenump depth)
-	    (format "\\setcounter{tocdepth}{%d}\n" depth))
-	  "\\tableofcontents\n"
-	  "\\end{frame}\n\n")))
-     ;; Document's body.
-     contents
-     ;; Creator.
-     (if (plist-get info :with-creator)
-	 (concat (plist-get info :creator) "\n")
-       "")
-     ;; Document end.
-     "\\end{document}")))
-
-
-
-;;; Minor Mode
-
-
-(defvar org-beamer-mode-map (make-sparse-keymap)
-  "The keymap for `org-beamer-mode'.")
-(define-key org-beamer-mode-map "\C-c\C-b" 'org-beamer-select-environment)
-
-;;;###autoload
-(define-minor-mode org-beamer-mode
-  "Support for editing Beamer oriented Org mode files."
-  nil " Bm" 'org-beamer-mode-map)
-
-(when (fboundp 'font-lock-add-keywords)
-  (font-lock-add-keywords
-   'org-mode
-   '((":\\(B_[a-z]+\\|BMCOL\\):" 1 'org-beamer-tag prepend))
-   'prepend))
-
-(defface org-beamer-tag '((t (:box (:line-width 1 :color grey40))))
-  "The special face for beamer tags."
-  :group 'org-export-beamer)
-
-(defun org-beamer-property-changed (property value)
-  "Track the BEAMER_env property with tags.
-PROPERTY is the name of the modified property.  VALUE is its new
-value."
-  (cond
-   ((equal property "BEAMER_env")
-    (save-excursion
-      (org-back-to-heading t)
-      ;; Filter out Beamer-related tags and install environment tag.
-      (let ((tags (cl-remove-if (lambda (x) (string-match "^B_" x))
-				 (org-get-tags)))
-	    (env-tag (and (org-string-nw-p value) (concat "B_" value))))
-	(org-set-tags-to (if env-tag (cons env-tag tags) tags))
-	(when env-tag (org-toggle-tag env-tag 'on)))))
-   ((equal property "BEAMER_col")
-    (org-toggle-tag "BMCOL" (if (org-string-nw-p value) 'on 'off)))))
-
-(add-hook 'org-property-changed-functions 'org-beamer-property-changed)
-
-(defun org-beamer-allowed-property-values (property)
-  "Supply allowed values for PROPERTY."
-  (cond
-   ((and (equal property "BEAMER_env")
-	 (not (org-entry-get nil (concat property "_ALL") 'inherit)))
-    ;; If no allowed values for BEAMER_env have been defined,
-    ;; supply all defined environments
-    (mapcar 'car (append org-beamer-environments-special
-			 org-beamer-environments-extra
-			 org-beamer-environments-default)))
-   ((and (equal property "BEAMER_col")
-	 (not (org-entry-get nil (concat property "_ALL") 'inherit)))
-    ;; If no allowed values for BEAMER_col have been defined, supply
-    ;; some.
-    (split-string org-beamer-column-widths " "))))
-
-(add-hook 'org-property-allowed-value-functions
-	  'org-beamer-allowed-property-values)
-
-
-
-;;; Commands
-
-;;;###autoload
-(defun org-beamer-export-as-latex
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer as a Beamer buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org BEAMER Export*\", which
-will be displayed when `org-export-show-temporary-export-buffer'
-is non-nil."
-  (interactive)
-  (org-export-to-buffer 'beamer "*Org BEAMER Export*"
-    async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
-
-;;;###autoload
-(defun org-beamer-export-to-latex
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer as a Beamer presentation (tex).
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name."
-  (interactive)
-  (let ((file (org-export-output-file-name ".tex" subtreep)))
-    (org-export-to-file 'beamer file
-      async subtreep visible-only body-only ext-plist)))
-
-;;;###autoload
-(defun org-beamer-export-to-pdf
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer as a Beamer presentation (PDF).
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return PDF file's name."
-  (interactive)
-  (let ((file (org-export-output-file-name ".tex" subtreep)))
-    (org-export-to-file 'beamer file
-      async subtreep visible-only body-only ext-plist
-      (lambda (file) (org-latex-compile file)))))
-
-;;;###autoload
-(defun org-beamer-select-environment ()
-  "Select the environment to be used by beamer for this entry.
-While this uses (for convenience) a tag selection interface, the
-result of this command will be that the BEAMER_env *property* of
-the entry is set.
-
-In addition to this, the command will also set a tag as a visual
-aid, but the tag does not have any semantic meaning."
-  (interactive)
-  ;; Make sure `org-beamer-environments-special' has a higher
-  ;; priority than `org-beamer-environments-extra'.
-  (let* ((envs (append org-beamer-environments-special
-		       org-beamer-environments-extra
-		       org-beamer-environments-default))
-	 (org-current-tag-alist
-	  (append '((:startgroup))
-		  (mapcar (lambda (e) (cons (concat "B_" (car e))
-				       (string-to-char (nth 1 e))))
-			  envs)
-		  '((:endgroup))
-		  '(("BMCOL" . ?|))))
-	 (org-tag-persistent-alist nil)
-	 (org-use-fast-tag-selection t)
-	 (org-fast-tag-selection-single-key t))
-    (org-set-tags)
-    (let ((tags (or (ignore-errors (org-get-tags-string)) "")))
-      (cond
-       ;; For a column, automatically ask for its width.
-       ((eq org-last-tag-selection-key ?|)
-	(if (string-match ":BMCOL:" tags)
-	    (org-set-property "BEAMER_col" (read-string "Column width: "))
-	  (org-delete-property "BEAMER_col")))
-       ;; For an "againframe" section, automatically ask for reference
-       ;; to resumed frame and overlay specifications.
-       ((eq org-last-tag-selection-key ?A)
-	(if (equal (org-entry-get nil "BEAMER_env") "againframe")
-	    (progn (org-entry-delete nil "BEAMER_env")
-		   (org-entry-delete nil "BEAMER_ref")
-		   (org-entry-delete nil "BEAMER_act"))
-	  (org-entry-put nil "BEAMER_env" "againframe")
-	  (org-set-property
-	   "BEAMER_ref"
-	   (read-string "Frame reference (*Title, #custom-id, id:...): "))
-	  (org-set-property "BEAMER_act"
-			    (read-string "Overlay specification: "))))
-       ((string-match (concat ":B_\\(" (mapconcat 'car envs "\\|") "\\):") tags)
-	(org-entry-put nil "BEAMER_env" (match-string 1 tags)))
-       (t (org-entry-delete nil "BEAMER_env"))))))
-
-;;;###autoload
-(defun org-beamer-publish-to-latex (plist filename pub-dir)
-  "Publish an Org file to a Beamer presentation (LaTeX).
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to 'beamer filename ".tex" plist pub-dir))
-
-;;;###autoload
-(defun org-beamer-publish-to-pdf (plist filename pub-dir)
-  "Publish an Org file to a Beamer presentation (PDF, via LaTeX).
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  ;; Unlike to `org-beamer-publish-to-latex', PDF file is generated in
-  ;; working directory and then moved to publishing directory.
-  (org-publish-attachment
-   plist
-   ;; Default directory could be anywhere when this function is
-   ;; called.  We ensure it is set to source file directory during
-   ;; compilation so as to not break links to external documents.
-   (let ((default-directory (file-name-directory filename)))
-     (org-latex-compile
-      (org-publish-org-to
-       'beamer filename ".tex" plist (file-name-directory filename))))
-   pub-dir))
-
-
-(provide 'ox-beamer)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-beamer.el ends here
diff --git a/elpa/org-9.1.14/ox-beamer.elc b/elpa/org-9.1.14/ox-beamer.elc
deleted file mode 100644
index f958512..0000000
--- a/elpa/org-9.1.14/ox-beamer.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-html.el b/elpa/org-9.1.14/ox-html.el
deleted file mode 100644
index ec80e83..0000000
--- a/elpa/org-9.1.14/ox-html.el
+++ /dev/null
@@ -1,3775 +0,0 @@
-;;; ox-html.el --- HTML Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;;      Jambunathan K <kjambunathan at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This library implements a HTML back-end for Org generic exporter.
-;; See Org manual for more information.
-
-;;; Code:
-
-;;; Dependencies
-
-(require 'cl-lib)
-(require 'format-spec)
-(require 'ox)
-(require 'ox-publish)
-(require 'table)
-
-
-;;; Function Declarations
-
-(declare-function org-id-find-id-file "org-id" (id))
-(declare-function htmlize-region "ext:htmlize" (beg end))
-(declare-function mm-url-decode-entities "mm-url" ())
-
-(defvar htmlize-css-name-prefix)
-(defvar htmlize-output-type)
-(defvar htmlize-output-type)
-(defvar htmlize-css-name-prefix)
-
-;;; Define Back-End
-
-(org-export-define-backend 'html
-  '((bold . org-html-bold)
-    (center-block . org-html-center-block)
-    (clock . org-html-clock)
-    (code . org-html-code)
-    (drawer . org-html-drawer)
-    (dynamic-block . org-html-dynamic-block)
-    (entity . org-html-entity)
-    (example-block . org-html-example-block)
-    (export-block . org-html-export-block)
-    (export-snippet . org-html-export-snippet)
-    (fixed-width . org-html-fixed-width)
-    (footnote-definition . org-html-footnote-definition)
-    (footnote-reference . org-html-footnote-reference)
-    (headline . org-html-headline)
-    (horizontal-rule . org-html-horizontal-rule)
-    (inline-src-block . org-html-inline-src-block)
-    (inlinetask . org-html-inlinetask)
-    (inner-template . org-html-inner-template)
-    (italic . org-html-italic)
-    (item . org-html-item)
-    (keyword . org-html-keyword)
-    (latex-environment . org-html-latex-environment)
-    (latex-fragment . org-html-latex-fragment)
-    (line-break . org-html-line-break)
-    (link . org-html-link)
-    (node-property . org-html-node-property)
-    (paragraph . org-html-paragraph)
-    (plain-list . org-html-plain-list)
-    (plain-text . org-html-plain-text)
-    (planning . org-html-planning)
-    (property-drawer . org-html-property-drawer)
-    (quote-block . org-html-quote-block)
-    (radio-target . org-html-radio-target)
-    (section . org-html-section)
-    (special-block . org-html-special-block)
-    (src-block . org-html-src-block)
-    (statistics-cookie . org-html-statistics-cookie)
-    (strike-through . org-html-strike-through)
-    (subscript . org-html-subscript)
-    (superscript . org-html-superscript)
-    (table . org-html-table)
-    (table-cell . org-html-table-cell)
-    (table-row . org-html-table-row)
-    (target . org-html-target)
-    (template . org-html-template)
-    (timestamp . org-html-timestamp)
-    (underline . org-html-underline)
-    (verbatim . org-html-verbatim)
-    (verse-block . org-html-verse-block))
-  :filters-alist '((:filter-options . org-html-infojs-install-script)
-		   (:filter-parse-tree . org-html-image-link-filter)
-		   (:filter-final-output . org-html-final-function))
-  :menu-entry
-  '(?h "Export to HTML"
-       ((?H "As HTML buffer" org-html-export-as-html)
-	(?h "As HTML file" org-html-export-to-html)
-	(?o "As HTML file and open"
-	    (lambda (a s v b)
-	      (if a (org-html-export-to-html t s v b)
-		(org-open-file (org-html-export-to-html nil s v b)))))))
-  :options-alist
-  '((:html-doctype "HTML_DOCTYPE" nil org-html-doctype)
-    (:html-container "HTML_CONTAINER" nil org-html-container-element)
-    (:description "DESCRIPTION" nil nil newline)
-    (:keywords "KEYWORDS" nil nil space)
-    (:html-html5-fancy nil "html5-fancy" org-html-html5-fancy)
-    (:html-link-use-abs-url nil "html-link-use-abs-url" org-html-link-use-abs-url)
-    (:html-link-home "HTML_LINK_HOME" nil org-html-link-home)
-    (:html-link-up "HTML_LINK_UP" nil org-html-link-up)
-    (:html-mathjax "HTML_MATHJAX" nil "" space)
-    (:html-postamble nil "html-postamble" org-html-postamble)
-    (:html-preamble nil "html-preamble" org-html-preamble)
-    (:html-head "HTML_HEAD" nil org-html-head newline)
-    (:html-head-extra "HTML_HEAD_EXTRA" nil org-html-head-extra newline)
-    (:subtitle "SUBTITLE" nil nil parse)
-    (:html-head-include-default-style
-     nil "html-style" org-html-head-include-default-style)
-    (:html-head-include-scripts nil "html-scripts" org-html-head-include-scripts)
-    (:html-allow-name-attribute-in-anchors
-     nil nil org-html-allow-name-attribute-in-anchors)
-    (:html-divs nil nil org-html-divs)
-    (:html-checkbox-type nil nil org-html-checkbox-type)
-    (:html-extension nil nil org-html-extension)
-    (:html-footnote-format nil nil org-html-footnote-format)
-    (:html-footnote-separator nil nil org-html-footnote-separator)
-    (:html-footnotes-section nil nil org-html-footnotes-section)
-    (:html-format-drawer-function nil nil org-html-format-drawer-function)
-    (:html-format-headline-function nil nil org-html-format-headline-function)
-    (:html-format-inlinetask-function
-     nil nil org-html-format-inlinetask-function)
-    (:html-home/up-format nil nil org-html-home/up-format)
-    (:html-indent nil nil org-html-indent)
-    (:html-infojs-options nil nil org-html-infojs-options)
-    (:html-infojs-template nil nil org-html-infojs-template)
-    (:html-inline-image-rules nil nil org-html-inline-image-rules)
-    (:html-link-org-files-as-html nil nil org-html-link-org-files-as-html)
-    (:html-mathjax-options nil nil org-html-mathjax-options)
-    (:html-mathjax-template nil nil org-html-mathjax-template)
-    (:html-metadata-timestamp-format nil nil org-html-metadata-timestamp-format)
-    (:html-postamble-format nil nil org-html-postamble-format)
-    (:html-preamble-format nil nil org-html-preamble-format)
-    (:html-table-align-individual-fields
-     nil nil org-html-table-align-individual-fields)
-    (:html-table-caption-above nil nil org-html-table-caption-above)
-    (:html-table-data-tags nil nil org-html-table-data-tags)
-    (:html-table-header-tags nil nil org-html-table-header-tags)
-    (:html-table-use-header-tags-for-first-column
-     nil nil org-html-table-use-header-tags-for-first-column)
-    (:html-tag-class-prefix nil nil org-html-tag-class-prefix)
-    (:html-text-markup-alist nil nil org-html-text-markup-alist)
-    (:html-todo-kwd-class-prefix nil nil org-html-todo-kwd-class-prefix)
-    (:html-toplevel-hlevel nil nil org-html-toplevel-hlevel)
-    (:html-use-infojs nil nil org-html-use-infojs)
-    (:html-validation-link nil nil org-html-validation-link)
-    (:html-viewport nil nil org-html-viewport)
-    (:html-inline-images nil nil org-html-inline-images)
-    (:html-table-attributes nil nil org-html-table-default-attributes)
-    (:html-table-row-open-tag nil nil org-html-table-row-open-tag)
-    (:html-table-row-close-tag nil nil org-html-table-row-close-tag)
-    (:html-xml-declaration nil nil org-html-xml-declaration)
-    (:html-klipsify-src nil nil org-html-klipsify-src)
-    (:html-klipse-css nil nil org-html-klipse-css)
-    (:html-klipse-js nil nil org-html-klipse-js)
-    (:html-klipse-selection-script nil nil org-html-klipse-selection-script)
-    (:infojs-opt "INFOJS_OPT" nil nil)
-    ;; Redefine regular options.
-    (:creator "CREATOR" nil org-html-creator-string)
-    (:with-latex nil "tex" org-html-with-latex)
-    ;; Retrieve LaTeX header for fragments.
-    (:latex-header "LATEX_HEADER" nil nil newline)))
-
-
-;;; Internal Variables
-
-(defvar org-html-format-table-no-css)
-(defvar htmlize-buffer-places)  ; from htmlize.el
-
-(defvar org-html--pre/postamble-class "status"
-  "CSS class used for pre/postamble")
-
-(defconst org-html-doctype-alist
-  '(("html4-strict" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\"
-\"http://www.w3.org/TR/html4/strict.dtd\">")
-    ("html4-transitional" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
-\"http://www.w3.org/TR/html4/loose.dtd\">")
-    ("html4-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\"
-\"http://www.w3.org/TR/html4/frameset.dtd\">")
-
-    ("xhtml-strict" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">")
-    ("xhtml-transitional" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">")
-    ("xhtml-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Frameset//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd\">")
-    ("xhtml-11" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd\">")
-
-    ("html5" . "<!DOCTYPE html>")
-    ("xhtml5" . "<!DOCTYPE html>"))
-  "An alist mapping (x)html flavors to specific doctypes.")
-
-(defconst org-html-html5-elements
-  '("article" "aside" "audio" "canvas" "details" "figcaption"
-    "figure" "footer" "header" "menu" "meter" "nav" "output"
-    "progress" "section" "video")
-  "New elements in html5.
-
-For blocks that should contain headlines, use the HTML_CONTAINER
-property on the headline itself.")
-
-(defconst org-html-special-string-regexps
-  '(("\\\\-" . "&#x00ad;")		; shy
-    ("---\\([^-]\\)" . "&#x2014;\\1")	; mdash
-    ("--\\([^-]\\)" . "&#x2013;\\1")	; ndash
-    ("\\.\\.\\." . "&#x2026;"))		; hellip
-  "Regular expressions for special string conversion.")
-
-(defconst org-html-scripts
-  "<script type=\"text/javascript\">
-/*
-@licstart  The following is the entire license notice for the
-JavaScript code in this tag.
-
-Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-The JavaScript code in this tag is free software: you can
-redistribute it and/or modify it under the terms of the GNU
-General Public License (GNU GPL) as published by the Free Software
-Foundation, either version 3 of the License, or (at your option)
-any later version.  The code is distributed WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
-
-As additional permission under GNU GPL version 3 section 7, you
-may distribute non-source (e.g., minimized or compacted) forms of
-that code without the copy of the GNU GPL normally required by
-section 4, provided you include this license notice and a URL
-through which recipients can access the Corresponding Source.
-
-
-@licend  The above is the entire license notice
-for the JavaScript code in this tag.
-*/
-<!--/*--><![CDATA[/*><!--*/
- function CodeHighlightOn(elem, id)
- {
-   var target = document.getElementById(id);
-   if(null != target) {
-     elem.cacheClassElem = elem.className;
-     elem.cacheClassTarget = target.className;
-     target.className = \"code-highlighted\";
-     elem.className   = \"code-highlighted\";
-   }
- }
- function CodeHighlightOff(elem, id)
- {
-   var target = document.getElementById(id);
-   if(elem.cacheClassElem)
-     elem.className = elem.cacheClassElem;
-   if(elem.cacheClassTarget)
-     target.className = elem.cacheClassTarget;
- }
-/*]]>*///-->
-</script>"
-  "Basic JavaScript that is needed by HTML files produced by Org mode.")
-
-(defconst org-html-style-default
-  "<style type=\"text/css\">
- <!--/*--><![CDATA[/*><!--*/
-  .title  { text-align: center;
-             margin-bottom: .2em; }
-  .subtitle { text-align: center;
-              font-size: medium;
-              font-weight: bold;
-              margin-top:0; }
-  .todo   { font-family: monospace; color: red; }
-  .done   { font-family: monospace; color: green; }
-  .priority { font-family: monospace; color: orange; }
-  .tag    { background-color: #eee; font-family: monospace;
-            padding: 2px; font-size: 80%; font-weight: normal; }
-  .timestamp { color: #bebebe; }
-  .timestamp-kwd { color: #5f9ea0; }
-  .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
-  .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
-  .org-center { margin-left: auto; margin-right: auto; text-align: center; }
-  .underline { text-decoration: underline; }
-  #postamble p, #preamble p { font-size: 90%; margin: .2em; }
-  p.verse { margin-left: 3%; }
-  pre {
-    border: 1px solid #ccc;
-    box-shadow: 3px 3px 3px #eee;
-    padding: 8pt;
-    font-family: monospace;
-    overflow: auto;
-    margin: 1.2em;
-  }
-  pre.src {
-    position: relative;
-    overflow: visible;
-    padding-top: 1.2em;
-  }
-  pre.src:before {
-    display: none;
-    position: absolute;
-    background-color: white;
-    top: -10px;
-    right: 10px;
-    padding: 3px;
-    border: 1px solid black;
-  }
-  pre.src:hover:before { display: inline;}
-  /* Languages per Org manual */
-  pre.src-asymptote:before { content: 'Asymptote'; }
-  pre.src-awk:before { content: 'Awk'; }
-  pre.src-C:before { content: 'C'; }
-  /* pre.src-C++ doesn't work in CSS */
-  pre.src-clojure:before { content: 'Clojure'; }
-  pre.src-css:before { content: 'CSS'; }
-  pre.src-D:before { content: 'D'; }
-  pre.src-ditaa:before { content: 'ditaa'; }
-  pre.src-dot:before { content: 'Graphviz'; }
-  pre.src-calc:before { content: 'Emacs Calc'; }
-  pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
-  pre.src-fortran:before { content: 'Fortran'; }
-  pre.src-gnuplot:before { content: 'gnuplot'; }
-  pre.src-haskell:before { content: 'Haskell'; }
-  pre.src-hledger:before { content: 'hledger'; }
-  pre.src-java:before { content: 'Java'; }
-  pre.src-js:before { content: 'Javascript'; }
-  pre.src-latex:before { content: 'LaTeX'; }
-  pre.src-ledger:before { content: 'Ledger'; }
-  pre.src-lisp:before { content: 'Lisp'; }
-  pre.src-lilypond:before { content: 'Lilypond'; }
-  pre.src-lua:before { content: 'Lua'; }
-  pre.src-matlab:before { content: 'MATLAB'; }
-  pre.src-mscgen:before { content: 'Mscgen'; }
-  pre.src-ocaml:before { content: 'Objective Caml'; }
-  pre.src-octave:before { content: 'Octave'; }
-  pre.src-org:before { content: 'Org mode'; }
-  pre.src-oz:before { content: 'OZ'; }
-  pre.src-plantuml:before { content: 'Plantuml'; }
-  pre.src-processing:before { content: 'Processing.js'; }
-  pre.src-python:before { content: 'Python'; }
-  pre.src-R:before { content: 'R'; }
-  pre.src-ruby:before { content: 'Ruby'; }
-  pre.src-sass:before { content: 'Sass'; }
-  pre.src-scheme:before { content: 'Scheme'; }
-  pre.src-screen:before { content: 'Gnu Screen'; }
-  pre.src-sed:before { content: 'Sed'; }
-  pre.src-sh:before { content: 'shell'; }
-  pre.src-sql:before { content: 'SQL'; }
-  pre.src-sqlite:before { content: 'SQLite'; }
-  /* additional languages in org.el's org-babel-load-languages alist */
-  pre.src-forth:before { content: 'Forth'; }
-  pre.src-io:before { content: 'IO'; }
-  pre.src-J:before { content: 'J'; }
-  pre.src-makefile:before { content: 'Makefile'; }
-  pre.src-maxima:before { content: 'Maxima'; }
-  pre.src-perl:before { content: 'Perl'; }
-  pre.src-picolisp:before { content: 'Pico Lisp'; }
-  pre.src-scala:before { content: 'Scala'; }
-  pre.src-shell:before { content: 'Shell Script'; }
-  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
-  /* additional language identifiers per \"defun org-babel-execute\"
-       in ob-*.el */
-  pre.src-cpp:before  { content: 'C++'; }
-  pre.src-abc:before  { content: 'ABC'; }
-  pre.src-coq:before  { content: 'Coq'; }
-  pre.src-groovy:before  { content: 'Groovy'; }
-  /* additional language identifiers from org-babel-shell-names in
-     ob-shell.el: ob-shell is the only babel language using a lambda to put
-     the execution function name together. */
-  pre.src-bash:before  { content: 'bash'; }
-  pre.src-csh:before  { content: 'csh'; }
-  pre.src-ash:before  { content: 'ash'; }
-  pre.src-dash:before  { content: 'dash'; }
-  pre.src-ksh:before  { content: 'ksh'; }
-  pre.src-mksh:before  { content: 'mksh'; }
-  pre.src-posh:before  { content: 'posh'; }
-  /* Additional Emacs modes also supported by the LaTeX listings package */
-  pre.src-ada:before { content: 'Ada'; }
-  pre.src-asm:before { content: 'Assembler'; }
-  pre.src-caml:before { content: 'Caml'; }
-  pre.src-delphi:before { content: 'Delphi'; }
-  pre.src-html:before { content: 'HTML'; }
-  pre.src-idl:before { content: 'IDL'; }
-  pre.src-mercury:before { content: 'Mercury'; }
-  pre.src-metapost:before { content: 'MetaPost'; }
-  pre.src-modula-2:before { content: 'Modula-2'; }
-  pre.src-pascal:before { content: 'Pascal'; }
-  pre.src-ps:before { content: 'PostScript'; }
-  pre.src-prolog:before { content: 'Prolog'; }
-  pre.src-simula:before { content: 'Simula'; }
-  pre.src-tcl:before { content: 'tcl'; }
-  pre.src-tex:before { content: 'TeX'; }
-  pre.src-plain-tex:before { content: 'Plain TeX'; }
-  pre.src-verilog:before { content: 'Verilog'; }
-  pre.src-vhdl:before { content: 'VHDL'; }
-  pre.src-xml:before { content: 'XML'; }
-  pre.src-nxml:before { content: 'XML'; }
-  /* add a generic configuration mode; LaTeX export needs an additional
-     (add-to-list 'org-latex-listings-langs '(conf \" \")) in .emacs */
-  pre.src-conf:before { content: 'Configuration File'; }
-
-  table { border-collapse:collapse; }
-  caption.t-above { caption-side: top; }
-  caption.t-bottom { caption-side: bottom; }
-  td, th { vertical-align:top;  }
-  th.org-right  { text-align: center;  }
-  th.org-left   { text-align: center;   }
-  th.org-center { text-align: center; }
-  td.org-right  { text-align: right;  }
-  td.org-left   { text-align: left;   }
-  td.org-center { text-align: center; }
-  dt { font-weight: bold; }
-  .footpara { display: inline; }
-  .footdef  { margin-bottom: 1em; }
-  .figure { padding: 1em; }
-  .figure p { text-align: center; }
-  .inlinetask {
-    padding: 10px;
-    border: 2px solid gray;
-    margin: 10px;
-    background: #ffffcc;
-  }
-  #org-div-home-and-up
-   { text-align: right; font-size: 70%; white-space: nowrap; }
-  textarea { overflow-x: auto; }
-  .linenr { font-size: smaller }
-  .code-highlighted { background-color: #ffff00; }
-  .org-info-js_info-navigation { border-style: none; }
-  #org-info-js_console-label
-    { font-size: 10px; font-weight: bold; white-space: nowrap; }
-  .org-info-js_search-highlight
-    { background-color: #ffff00; color: #000000; font-weight: bold; }
-  .org-svg { width: 90%; }
-  /*]]>*/-->
-</style>"
-  "The default style specification for exported HTML files.
-You can use `org-html-head' and `org-html-head-extra' to add to
-this style.  If you don't want to include this default style,
-customize `org-html-head-include-default-style'.")
-
-
-;;; User Configuration Variables
-
-(defgroup org-export-html nil
-  "Options for exporting Org mode files to HTML."
-  :tag "Org Export HTML"
-  :group 'org-export)
-
-;;;; Handle infojs
-
-(defvar org-html-infojs-opts-table
-  '((path PATH "https://orgmode.org/org-info.js")
-    (view VIEW "info")
-    (toc TOC :with-toc)
-    (ftoc FIXED_TOC "0")
-    (tdepth TOC_DEPTH "max")
-    (sdepth SECTION_DEPTH "max")
-    (mouse MOUSE_HINT "underline")
-    (buttons VIEW_BUTTONS "0")
-    (ltoc LOCAL_TOC "1")
-    (up LINK_UP :html-link-up)
-    (home LINK_HOME :html-link-home))
-  "JavaScript options, long form for script, default values.")
-
-(defcustom org-html-use-infojs 'when-configured
-  "Non-nil when Sebastian Rose's Java Script org-info.js should be active.
-This option can be nil or t to never or always use the script.
-It can also be the symbol `when-configured', meaning that the
-script will be linked into the export file if and only if there
-is a \"#+INFOJS_OPT:\" line in the buffer.  See also the variable
-`org-html-infojs-options'."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Never" nil)
-	  (const :tag "When configured in buffer" when-configured)
-	  (const :tag "Always" t)))
-
-(defcustom org-html-infojs-options
-  (mapcar (lambda (x) (cons (car x) (nth 2 x))) org-html-infojs-opts-table)
-  "Options settings for the INFOJS JavaScript.
-Each of the options must have an entry in `org-html-infojs-opts-table'.
-The value can either be a string that will be passed to the script, or
-a property.  This property is then assumed to be a property that is defined
-by the Export/Publishing setup of Org.
-The `sdepth' and `tdepth' parameters can also be set to \"max\", which
-means to use the maximum value consistent with other options."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type
-  `(set :greedy t :inline t
-	,@(mapcar
-	   (lambda (x)
-	     (list 'cons (list 'const (car x))
-		   '(choice
-		     (symbol :tag "Publishing/Export property")
-		     (string :tag "Value"))))
-	   org-html-infojs-opts-table)))
-
-(defcustom org-html-infojs-template
-  "<script type=\"text/javascript\" src=\"%SCRIPT_PATH\">
-/**
- *
- * @source: %SCRIPT_PATH
- *
- * @licstart  The following is the entire license notice for the
- *  JavaScript code in %SCRIPT_PATH.
- *
- * Copyright (C) 2012-2018 Free Software Foundation, Inc.
- *
- *
- * The JavaScript code in this tag is free software: you can
- * redistribute it and/or modify it under the terms of the GNU
- * General Public License (GNU GPL) as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option)
- * any later version.  The code is distributed WITHOUT ANY WARRANTY;
- * without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
- *
- * As additional permission under GNU GPL version 3 section 7, you
- * may distribute non-source (e.g., minimized or compacted) forms of
- * that code without the copy of the GNU GPL normally required by
- * section 4, provided you include this license notice and a URL
- * through which recipients can access the Corresponding Source.
- *
- * @licend  The above is the entire license notice
- * for the JavaScript code in %SCRIPT_PATH.
- *
- */
-</script>
-
-<script type=\"text/javascript\">
-
-/*
-@licstart  The following is the entire license notice for the
-JavaScript code in this tag.
-
-Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-The JavaScript code in this tag is free software: you can
-redistribute it and/or modify it under the terms of the GNU
-General Public License (GNU GPL) as published by the Free Software
-Foundation, either version 3 of the License, or (at your option)
-any later version.  The code is distributed WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
-
-As additional permission under GNU GPL version 3 section 7, you
-may distribute non-source (e.g., minimized or compacted) forms of
-that code without the copy of the GNU GPL normally required by
-section 4, provided you include this license notice and a URL
-through which recipients can access the Corresponding Source.
-
-
-@licend  The above is the entire license notice
-for the JavaScript code in this tag.
-*/
-
-<!--/*--><![CDATA[/*><!--*/
-%MANAGER_OPTIONS
-org_html_manager.setup();  // activate after the parameters are set
-/*]]>*///-->
-</script>"
-  "The template for the export style additions when org-info.js is used.
-Option settings will replace the %MANAGER-OPTIONS cookie."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defun org-html-infojs-install-script (exp-plist _backend)
-  "Install script in export options when appropriate.
-EXP-PLIST is a plist containing export options.  BACKEND is the
-export back-end currently used."
-  (unless (or (memq 'body-only (plist-get exp-plist :export-options))
-	      (not (plist-get exp-plist :html-use-infojs))
-	      (and (eq (plist-get exp-plist :html-use-infojs) 'when-configured)
-		   (let ((opt (plist-get exp-plist :infojs-opt)))
-		     (or (not opt)
-			 (string= "" opt)
-			 (string-match "\\<view:nil\\>" opt)))))
-    (let* ((template (plist-get exp-plist :html-infojs-template))
-	   (ptoc (plist-get exp-plist :with-toc))
-	   (hlevels (plist-get exp-plist :headline-levels))
-	   (sdepth hlevels)
-	   (tdepth (if (integerp ptoc) (min ptoc hlevels) hlevels))
-	   (options (plist-get exp-plist :infojs-opt))
-	   (infojs-opt (plist-get exp-plist :html-infojs-options))
-	   (table org-html-infojs-opts-table)
-	   style)
-      (dolist (entry table)
-	(let* ((opt (car entry))
-	       (var (nth 1 entry))
-	       ;; Compute default values for script option OPT from
-	       ;; `org-html-infojs-options' variable.
-	       (default
-		 (let ((default (cdr (assq opt infojs-opt))))
-		   (if (and (symbolp default) (not (memq default '(t nil))))
-		       (plist-get exp-plist default)
-		     default)))
-	       ;; Value set through INFOJS_OPT keyword has precedence
-	       ;; over the default one.
-	       (val (if (and options
-			     (string-match (format "\\<%s:\\(\\S-+\\)" opt)
-					   options))
-			(match-string 1 options)
-		      default)))
-	  (pcase opt
-	    (`path (setq template
-			 (replace-regexp-in-string
-			  "%SCRIPT_PATH" val template t t)))
-	    (`sdepth (when (integerp (read val))
-		       (setq sdepth (min (read val) sdepth))))
-	    (`tdepth (when (integerp (read val))
-		       (setq tdepth (min (read val) tdepth))))
-	    (_ (setq val
-		     (cond
-		      ((or (eq val t) (equal val "t")) "1")
-		      ((or (eq val nil) (equal val "nil")) "0")
-		      ((stringp val) val)
-		      (t (format "%s" val))))
-	       (push (cons var val) style)))))
-      ;; Now we set the depth of the *generated* TOC to SDEPTH,
-      ;; because the toc will actually determine the splitting.  How
-      ;; much of the toc will actually be displayed is governed by the
-      ;; TDEPTH option.
-      (setq exp-plist (plist-put exp-plist :with-toc sdepth))
-      ;; The table of contents should not show more sections than we
-      ;; generate.
-      (setq tdepth (min tdepth sdepth))
-      (push (cons "TOC_DEPTH" tdepth) style)
-      ;; Build style string.
-      (setq style (mapconcat
-		   (lambda (x)
-		     (format "org_html_manager.set(\"%s\", \"%s\");"
-			     (car x) (cdr x)))
-		   style "\n"))
-      (when (and style (> (length style) 0))
-	(and (string-match "%MANAGER_OPTIONS" template)
-	     (setq style (replace-match style t t template))
-	     (setq exp-plist
-		   (plist-put
-		    exp-plist :html-head-extra
-		    (concat (or (plist-get exp-plist :html-head-extra) "")
-			    "\n"
-			    style)))))
-      ;; This script absolutely needs the table of contents, so we
-      ;; change that setting.
-      (unless (plist-get exp-plist :with-toc)
-	(setq exp-plist (plist-put exp-plist :with-toc t)))
-      ;; Return the modified property list.
-      exp-plist)))
-
-;;;; Bold, etc.
-
-(defcustom org-html-text-markup-alist
-  '((bold . "<b>%s</b>")
-    (code . "<code>%s</code>")
-    (italic . "<i>%s</i>")
-    (strike-through . "<del>%s</del>")
-    (underline . "<span class=\"underline\">%s</span>")
-    (verbatim . "<code>%s</code>"))
-  "Alist of HTML expressions to convert text markup.
-
-The key must be a symbol among `bold', `code', `italic',
-`strike-through', `underline' and `verbatim'.  The value is
-a formatting string to wrap fontified text with.
-
-If no association can be found for a given markup, text will be
-returned as-is."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(alist :key-type (symbol :tag "Markup type")
-		:value-type (string :tag "Format string"))
-  :options '(bold code italic strike-through underline verbatim))
-
-(defcustom org-html-indent nil
-  "Non-nil means to indent the generated HTML.
-Warning: non-nil may break indentation of source code blocks."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-;;;; Drawers
-
-(defcustom org-html-format-drawer-function (lambda (_name contents) contents)
-  "Function called to format a drawer in HTML code.
-
-The function must accept two parameters:
-  NAME      the drawer name, like \"LOGBOOK\"
-  CONTENTS  the contents of the drawer.
-
-The function should return the string to be exported.
-
-For example, the variable could be set to the following function
-in order to mimic default behavior:
-
-The default value simply returns the value of CONTENTS."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'function)
-
-;;;; Footnotes
-
-(defcustom org-html-footnotes-section "<div id=\"footnotes\">
-<h2 class=\"footnotes\">%s: </h2>
-<div id=\"text-footnotes\">
-%s
-</div>
-</div>"
-  "Format for the footnotes section.
-Should contain a two instances of %s.  The first will be replaced with the
-language-specific word for \"Footnotes\", the second one will be replaced
-by the footnotes themselves."
-  :group 'org-export-html
-  :type 'string)
-
-(defcustom org-html-footnote-format "<sup>%s</sup>"
-  "The format for the footnote reference.
-%s will be replaced by the footnote reference itself."
-  :group 'org-export-html
-  :type 'string)
-
-(defcustom org-html-footnote-separator "<sup>, </sup>"
-  "Text used to separate footnotes."
-  :group 'org-export-html
-  :type 'string)
-
-;;;; Headline
-
-(defcustom org-html-toplevel-hlevel 2
-  "The <H> level for level 1 headings in HTML export.
-This is also important for the classes that will be wrapped around headlines
-and outline structure.  If this variable is 1, the top-level headlines will
-be <h1>, and the corresponding classes will be outline-1, section-number-1,
-and outline-text-1.  If this is 2, all of these will get a 2 instead.
-The default for this variable is 2, because we use <h1> for formatting the
-document title."
-  :group 'org-export-html
-  :type 'integer)
-
-(defcustom org-html-format-headline-function
-  'org-html-format-headline-default-function
-  "Function to format headline text.
-
-This function will be called with six arguments:
-TODO      the todo keyword (string or nil).
-TODO-TYPE the type of todo (symbol: `todo', `done', nil)
-PRIORITY  the priority of the headline (integer or nil)
-TEXT      the main headline text (string).
-TAGS      the tags (string or nil).
-INFO      the export options (plist).
-
-The function result will be used in the section format string."
-  :group 'org-export-html
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'function)
-
-;;;; HTML-specific
-
-(defcustom org-html-allow-name-attribute-in-anchors nil
-  "When nil, do not set \"name\" attribute in anchors.
-By default, when appropriate, anchors are formatted with \"id\"
-but without \"name\" attribute."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-;;;; Inlinetasks
-
-(defcustom org-html-format-inlinetask-function
-  'org-html-format-inlinetask-default-function
-  "Function called to format an inlinetask in HTML code.
-
-The function must accept seven parameters:
-  TODO      the todo keyword, as a string
-  TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
-  PRIORITY  the inlinetask priority, as a string
-  NAME      the inlinetask name, as a string.
-  TAGS      the inlinetask tags, as a list of strings.
-  CONTENTS  the contents of the inlinetask, as a string.
-  INFO      the export options, as a plist
-
-The function should return the string to be exported."
-  :group 'org-export-html
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'function)
-
-;;;; LaTeX
-
-(defcustom org-html-with-latex org-export-with-latex
-  "Non-nil means process LaTeX math snippets.
-
-When set, the exporter will process LaTeX environments and
-fragments.
-
-This option can also be set with the +OPTIONS line,
-e.g. \"tex:mathjax\".  Allowed values are:
-
-  nil           Ignore math snippets.
-  `verbatim'    Keep everything in verbatim
-  `mathjax', t  Do MathJax preprocessing and arrange for MathJax.js to
-                be loaded.
-  SYMBOL        Any symbol defined in `org-preview-latex-process-alist',
-                e.g., `dvipng'."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Do not process math in any way" nil)
-	  (const :tag "Leave math verbatim" verbatim)
-	  (const :tag "Use MathJax to display math" mathjax)
-	  (symbol :tag "Convert to image to display math" :value dvipng)))
-
-;;;; Links :: Generic
-
-(defcustom org-html-link-org-files-as-html t
-  "Non-nil means make file links to `file.org' point to `file.html'.
-When `org-mode' is exporting an `org-mode' file to HTML, links to
-non-html files are directly put into a href tag in HTML.
-However, links to other Org files (recognized by the extension
-\".org\") should become links to the corresponding HTML
-file, assuming that the linked `org-mode' file will also be
-converted to HTML.
-When nil, the links still point to the plain \".org\" file."
-  :group 'org-export-html
-  :type 'boolean)
-
-;;;; Links :: Inline images
-
-(defcustom org-html-inline-images t
-  "Non-nil means inline images into exported HTML pages.
-This is done using an <img> tag.  When nil, an anchor with href is used to
-link to the image."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.1")
-  :type 'boolean)
-
-(defcustom org-html-inline-image-rules
-  '(("file" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")
-    ("http" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")
-    ("https" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'"))
-  "Rules characterizing image files that can be inlined into HTML.
-A rule consists in an association whose key is the type of link
-to consider, and value is a regexp that will be matched against
-link's path."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(alist :key-type (string :tag "Type")
-		:value-type (regexp :tag "Path")))
-
-;;;; Plain Text
-
-(defvar org-html-protect-char-alist
-  '(("&" . "&amp;")
-    ("<" . "&lt;")
-    (">" . "&gt;"))
-  "Alist of characters to be converted by `org-html-encode-plain-text'.")
-
-;;;; Src Block
-
-(defcustom org-html-htmlize-output-type 'inline-css
-  "Output type to be used by htmlize when formatting code snippets.
-Choices are `css' to export the CSS selectors only,`inline-css'
-to export the CSS attribute values inline in the HTML or `nil' to
-export plain text.  We use as default `inline-css', in order to
-make the resulting HTML self-containing.
-
-However, this will fail when using Emacs in batch mode for export, because
-then no rich font definitions are in place.  It will also not be good if
-people with different Emacs setup contribute HTML files to a website,
-because the fonts will represent the individual setups.  In these cases,
-it is much better to let Org/Htmlize assign classes only, and to use
-a style file to define the look of these classes.
-To get a start for your css file, start Emacs session and make sure that
-all the faces you are interested in are defined, for example by loading files
-in all modes you want.  Then, use the command
-`\\[org-html-htmlize-generate-css]' to extract class definitions."
-  :group 'org-export-html
-  :type '(choice (const css) (const inline-css) (const nil)))
-
-(defcustom org-html-htmlize-font-prefix "org-"
-  "The prefix for CSS class names for htmlize font specifications."
-  :group 'org-export-html
-  :type 'string)
-
-;;;; Table
-
-(defcustom org-html-table-default-attributes
-  '(:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides")
-  "Default attributes and values which will be used in table tags.
-This is a plist where attributes are symbols, starting with
-colons, and values are strings.
-
-When exporting to HTML5, these values will be disregarded."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(plist :key-type (symbol :tag "Property")
-		:value-type (string :tag "Value")))
-
-(defcustom org-html-table-header-tags '("<th scope=\"%s\"%s>" . "</th>")
-  "The opening and ending tags for table header fields.
-This is customizable so that alignment options can be specified.
-The first %s will be filled with the scope of the field, either row or col.
-The second %s will be replaced by a style entry to align the field.
-See also the variable `org-html-table-use-header-tags-for-first-column'.
-See also the variable `org-html-table-align-individual-fields'."
-  :group 'org-export-html
-  :type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
-
-(defcustom org-html-table-data-tags '("<td%s>" . "</td>")
-  "The opening and ending tags for table data fields.
-This is customizable so that alignment options can be specified.
-The first %s will be filled with the scope of the field, either row or col.
-The second %s will be replaced by a style entry to align the field.
-See also the variable `org-html-table-align-individual-fields'."
-  :group 'org-export-html
-  :type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
-
-(defcustom org-html-table-row-open-tag "<tr>"
-  "The opening tag for table rows.
-This is customizable so that alignment options can be specified.
-Instead of strings, these can be a Lisp function that will be
-evaluated for each row in order to construct the table row tags.
-
-The function will be called with these arguments:
-
-         `number': row number (0 is the first row)
-   `group-number': group number of current row
-   `start-group?': non-nil means the row starts a group
-     `end-group?': non-nil means the row ends a group
-           `top?': non-nil means this is the top row
-        `bottom?': non-nil means this is the bottom row
-
-For example:
-
-  (setq org-html-table-row-open-tag
-        (lambda (number group-number start-group? end-group-p top? bottom?)
-           (cond (top? \"<tr class=\\\"tr-top\\\">\")
-                 (bottom? \"<tr class=\\\"tr-bottom\\\">\")
-                 (t (if (= (mod number 2) 1)
-                        \"<tr class=\\\"tr-odd\\\">\"
-                      \"<tr class=\\\"tr-even\\\">\")))))
-
-will use the \"tr-top\" and \"tr-bottom\" classes for the top row
-and the bottom row, and otherwise alternate between \"tr-odd\" and
-\"tr-even\" for odd and even rows."
-  :group 'org-export-html
-  :type '(choice :tag "Opening tag"
-		 (string :tag "Specify")
-		 (function)))
-
-(defcustom org-html-table-row-close-tag "</tr>"
-  "The closing tag for table rows.
-This is customizable so that alignment options can be specified.
-Instead of strings, this can be a Lisp function that will be
-evaluated for each row in order to construct the table row tags.
-
-See documentation of `org-html-table-row-open-tag'."
-  :group 'org-export-html
-  :type '(choice :tag "Closing tag"
-		 (string :tag "Specify")
-		 (function)))
-
-(defcustom org-html-table-align-individual-fields t
-  "Non-nil means attach style attributes for alignment to each table field.
-When nil, alignment will only be specified in the column tags, but this
-is ignored by some browsers (like Firefox, Safari).  Opera does it right
-though."
-  :group 'org-export-html
-  :type 'boolean)
-
-(defcustom org-html-table-use-header-tags-for-first-column nil
-  "Non-nil means format column one in tables with header tags.
-When nil, also column one will use data tags."
-  :group 'org-export-html
-  :type 'boolean)
-
-(defcustom org-html-table-caption-above t
-  "When non-nil, place caption string at the beginning of the table.
-Otherwise, place it near the end."
-  :group 'org-export-html
-  :type 'boolean)
-
-;;;; Tags
-
-(defcustom org-html-tag-class-prefix ""
-  "Prefix to class names for TODO keywords.
-Each tag gets a class given by the tag itself, with this prefix.
-The default prefix is empty because it is nice to just use the keyword
-as a class name.  But if you get into conflicts with other, existing
-CSS classes, then this prefix can be very useful."
-  :group 'org-export-html
-  :type 'string)
-
-;;;; Template :: Generic
-
-(defcustom org-html-extension "html"
-  "The extension for exported HTML files."
-  :group 'org-export-html
-  :type 'string)
-
-(defcustom org-html-xml-declaration
-  '(("html" . "<?xml version=\"1.0\" encoding=\"%s\"?>")
-    ("php" . "<?php echo \"<?xml version=\\\"1.0\\\" encoding=\\\"%s\\\" ?>\"; ?>"))
-  "The extension for exported HTML files.
-%s will be replaced with the charset of the exported file.
-This may be a string, or an alist with export extensions
-and corresponding declarations.
-
-This declaration only applies when exporting to XHTML."
-  :group 'org-export-html
-  :type '(choice
-	  (string :tag "Single declaration")
-	  (repeat :tag "Dependent on extension"
-		  (cons (string :tag "Extension")
-			(string :tag "Declaration")))))
-
-(defcustom org-html-coding-system 'utf-8
-  "Coding system for HTML export.
-Use utf-8 as the default value."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'coding-system)
-
-(defcustom org-html-doctype "xhtml-strict"
-  "Document type definition to use for exported HTML files.
-Can be set with the in-buffer HTML_DOCTYPE property or for
-publishing, with :html-doctype."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type (append
-	 '(choice)
-	 (mapcar (lambda (x) `(const ,(car x))) org-html-doctype-alist)
-	 '((string :tag "Custom doctype" ))))
-
-(defcustom org-html-html5-fancy nil
-  "Non-nil means using new HTML5 elements.
-This variable is ignored for anything other than HTML5 export.
-
-For compatibility with Internet Explorer, it's probably a good
-idea to download some form of the html5shiv (for instance
-https://code.google.com/p/html5shiv/) and add it to your
-HTML_HEAD_EXTRA, so that your pages don't break for users of IE
-versions 8 and below."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-html-container-element "div"
-  "HTML element to use for wrapping top level sections.
-Can be set with the in-buffer HTML_CONTAINER property or for
-publishing, with :html-container.
-
-Note that changing the default will prevent you from using
-org-info.js for your website."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-html-divs
-  '((preamble  "div" "preamble")
-    (content   "div" "content")
-    (postamble "div" "postamble"))
-  "Alist of the three section elements for HTML export.
-The car of each entry is one of `preamble', `content' or `postamble'.
-The cdrs of each entry are the ELEMENT_TYPE and ID for each
-section of the exported document.
-
-Note that changing the default will prevent you from using
-org-info.js for your website."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(list :greedy t
-	       (list :tag "Preamble"
-		     (const :format "" preamble)
-		     (string :tag "element") (string :tag "     id"))
-	       (list :tag "Content"
-		     (const :format "" content)
-		     (string :tag "element") (string :tag "     id"))
-	       (list :tag "Postamble" (const :format "" postamble)
-		     (string :tag "     id") (string :tag "element"))))
-
-(defconst org-html-checkbox-types
-  '((unicode .
-     ((on . "&#x2611;") (off . "&#x2610;") (trans . "&#x2610;")))
-    (ascii .
-     ((on . "<code>[X]</code>")
-      (off . "<code>[&#xa0;]</code>")
-      (trans . "<code>[-]</code>")))
-    (html .
-	  ((on . "<input type='checkbox' checked='checked' />")
-	  (off . "<input type='checkbox' />")
-	  (trans . "<input type='checkbox' />"))))
-  "Alist of checkbox types.
-The cdr of each entry is an alist list three checkbox types for
-HTML export: `on', `off' and `trans'.
-
-The choices are:
-  `unicode' Unicode characters (HTML entities)
-  `ascii'   ASCII characters
-  `html'    HTML checkboxes
-
-Note that only the ascii characters implement tri-state
-checkboxes. The other two use the `off' checkbox for `trans'.")
-
-(defcustom org-html-checkbox-type 'ascii
-  "The type of checkboxes to use for HTML export.
-See `org-html-checkbox-types' for for the values used for each
-option."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "ASCII characters" ascii)
-	  (const :tag "Unicode characters" unicode)
-	  (const :tag "HTML checkboxes" html)))
-
-(defcustom org-html-metadata-timestamp-format "%Y-%m-%d %a %H:%M"
-  "Format used for timestamps in preamble, postamble and metadata.
-See `format-time-string' for more information on its components."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-;;;; Template :: Mathjax
-
-(defcustom org-html-mathjax-options
-  '((path "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_HTML" )
-    (scale "100")
-    (align "center")
-    (font "TeX")
-    (linebreaks "false")
-    (autonumber "AMS")
-    (indent "0em")
-    (multlinewidth "85%")
-    (tagindent ".8em")
-    (tagside "right"))
-  "Options for MathJax setup.
-
-Alist of the following elements.  All values are strings.
-
-path          The path to MathJax.
-scale         Scaling with HTML-CSS, MathML and SVG output engines.
-align         How to align display math: left, center, or right.
-font          The font to use with HTML-CSS and SVG output.  As of MathJax 2.5
-              the following values are understood: \"TeX\", \"STIX-Web\",
-              \"Asana-Math\", \"Neo-Euler\", \"Gyre-Pagella\",
-              \"Gyre-Termes\", and \"Latin-Modern\".
-linebreaks    Let MathJax perform automatic linebreaks.  Valid values
-              are \"true\" and \"false\".
-indent        If align is not center, how far from the left/right side?
-              Valid values are \"left\" and \"right\"
-multlinewidth The width of the multline environment.
-autonumber    How to number equations.  Valid values are \"None\",
-              \"all\" and \"AMS Math\".
-tagindent     The amount tags are indented.
-tagside       Which side to show tags/labels on.  Valid values are
-              \"left\" and \"right\"
-
-You can also customize this for each buffer, using something like
-
-#+HTML_MATHJAX: align: left indent: 5em tagside: left font: Neo-Euler
-
-For further information about MathJax options, see the MathJax documentation:
-
-  http://docs.mathjax.org/"
-  :group 'org-export-html
-  :package-version '(Org . "8.3")
-  :type '(list :greedy t
-	       (list :tag "path   (the path from where to load MathJax.js)"
-		     (const :format "       " path) (string))
-	       (list :tag "scale  (scaling for the displayed math)"
-		     (const :format "       " scale) (string))
-	       (list :tag "align  (alignment of displayed equations)"
-		     (const :format "       " align) (string))
-	       (list :tag "font (used to display math)"
-		     (const :format "            " font)
-		     (choice (const "TeX")
-			     (const "STIX-Web")
-			     (const "Asana-Math")
-			     (const "Neo-Euler")
-			     (const "Gyre-Pagella")
-			     (const "Gyre-Termes")
-			     (const "Latin-Modern")))
-	       (list :tag "linebreaks (automatic line-breaking)"
-		     (const :format "      " linebreaks)
-		     (choice (const "true")
-			     (const "false")))
-	       (list :tag "autonumber (when should equations be numbered)"
-		     (const :format "      " autonumber)
-		     (choice (const "AMS")
-			     (const "None")
-			     (const "All")))
-	       (list :tag "indent (indentation with left or right alignment)"
-		     (const :format "       " indent) (string))
-	       (list :tag "multlinewidth (width to use for the multline environment)"
-		     (const :format "       " multlinewidth) (string))
-	       (list :tag "tagindent (the indentation of tags from left or right)"
-		     (const :format "     " tagindent) (string))
-	       (list :tag "tagside (location of tags)"
-		     (const :format "      " tagside)
-		     (choice (const "left")
-			     (const "right")))))
-
-(defcustom org-html-mathjax-template
-  "<script type=\"text/x-mathjax-config\">
-    MathJax.Hub.Config({
-        displayAlign: \"%ALIGN\",
-        displayIndent: \"%INDENT\",
-
-        \"HTML-CSS\": { scale: %SCALE,
-                        linebreaks: { automatic: \"%LINEBREAKS\" },
-                        webFont: \"%FONT\"
-                       },
-        SVG: {scale: %SCALE,
-              linebreaks: { automatic: \"%LINEBREAKS\" },
-              font: \"%FONT\"},
-        NativeMML: {scale: %SCALE},
-        TeX: { equationNumbers: {autoNumber: \"%AUTONUMBER\"},
-               MultLineWidth: \"%MULTLINEWIDTH\",
-               TagSide: \"%TAGSIDE\",
-               TagIndent: \"%TAGINDENT\"
-             }
-});
-</script>
-<script type=\"text/javascript\"
-        src=\"%PATH\"></script>"
-  "The MathJax template.  See also `org-html-mathjax-options'."
-  :group 'org-export-html
-  :type 'string)
-
-;;;; Template :: Postamble
-
-(defcustom org-html-postamble 'auto
-  "Non-nil means insert a postamble in HTML export.
-
-When set to `auto', check against the
-`org-export-with-author/email/creator/date' variables to set the
-content of the postamble.  When set to a string, use this string
-as the postamble.  When t, insert a string as defined by the
-formatting string in `org-html-postamble-format'.
-
-When set to a function, apply this function and insert the
-returned string.  The function takes the property list of export
-options as its only argument.
-
-Setting :html-postamble in publishing projects will take
-precedence over this variable."
-  :group 'org-export-html
-  :type '(choice (const :tag "No postamble" nil)
-		 (const :tag "Auto postamble" auto)
-		 (const :tag "Default formatting string" t)
-		 (string :tag "Custom formatting string")
-		 (function :tag "Function (must return a string)")))
-
-(defcustom org-html-postamble-format
-  '(("en" "<p class=\"author\">Author: %a (%e)</p>
-<p class=\"date\">Date: %d</p>
-<p class=\"creator\">%c</p>
-<p class=\"validation\">%v</p>"))
-  "Alist of languages and format strings for the HTML postamble.
-
-The first element of each list is the language code, as used for
-the LANGUAGE keyword.  See `org-export-default-language'.
-
-The second element of each list is a format string to format the
-postamble itself.  This format string can contain these elements:
-
-  %t stands for the title.
-  %s stands for the subtitle.
-  %a stands for the author's name.
-  %e stands for the author's email.
-  %d stands for the date.
-  %c will be replaced by `org-html-creator-string'.
-  %v will be replaced by `org-html-validation-link'.
-  %T will be replaced by the export time.
-  %C will be replaced by the last modification time.
-
-If you need to use a \"%\" character, you need to escape it
-like that: \"%%\"."
-  :group 'org-export-html
-  :type '(repeat
-	  (list (string :tag "Language")
-		(string :tag "Format string"))))
-
-(defcustom org-html-validation-link
-  "<a href=\"http://validator.w3.org/check?uri=referer\">Validate</a>"
-  "Link to HTML validation service."
-  :group 'org-export-html
-  :type 'string)
-
-(defcustom org-html-creator-string
-  (format "<a href=\"https://www.gnu.org/software/emacs/\">Emacs</a> %s (<a href=\"https://orgmode.org\">Org</a> mode %s)"
-	  emacs-version
-	  (if (fboundp 'org-version) (org-version) "unknown version"))
-  "Information about the creator of the HTML document.
-This option can also be set on with the CREATOR keyword."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(string :tag "Creator string"))
-
-;;;; Template :: Preamble
-
-(defcustom org-html-preamble t
-  "Non-nil means insert a preamble in HTML export.
-
-When t, insert a string as defined by the formatting string in
-`org-html-preamble-format'.  When set to a string, use this
-formatting string instead (see `org-html-postamble-format' for an
-example of such a formatting string).
-
-When set to a function, apply this function and insert the
-returned string.  The function takes the property list of export
-options as its only argument.
-
-Setting :html-preamble in publishing projects will take
-precedence over this variable."
-  :group 'org-export-html
-  :type '(choice (const :tag "No preamble" nil)
-		 (const :tag "Default preamble" t)
-		 (string :tag "Custom formatting string")
-		 (function :tag "Function (must return a string)")))
-
-(defcustom org-html-preamble-format '(("en" ""))
-  "Alist of languages and format strings for the HTML preamble.
-
-The first element of each list is the language code, as used for
-the LANGUAGE keyword.  See `org-export-default-language'.
-
-The second element of each list is a format string to format the
-preamble itself.  This format string can contain these elements:
-
-  %t stands for the title.
-  %s stands for the subtitle.
-  %a stands for the author's name.
-  %e stands for the author's email.
-  %d stands for the date.
-  %c will be replaced by `org-html-creator-string'.
-  %v will be replaced by `org-html-validation-link'.
-  %T will be replaced by the export time.
-  %C will be replaced by the last modification time.
-
-If you need to use a \"%\" character, you need to escape it
-like that: \"%%\".
-
-See the default value of `org-html-postamble-format' for an
-example."
-  :group 'org-export-html
-  :type '(repeat
-	  (list (string :tag "Language")
-		(string :tag "Format string"))))
-
-(defcustom org-html-link-up ""
-  "Where should the \"UP\" link of exported HTML pages lead?"
-  :group 'org-export-html
-  :type '(string :tag "File or URL"))
-
-(defcustom org-html-link-home ""
-  "Where should the \"HOME\" link of exported HTML pages lead?"
-  :group 'org-export-html
-  :type '(string :tag "File or URL"))
-
-(defcustom org-html-link-use-abs-url nil
-  "Should we prepend relative links with HTML_LINK_HOME?"
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.1")
-  :type 'boolean)
-
-(defcustom org-html-home/up-format
-  "<div id=\"org-div-home-and-up\">
- <a accesskey=\"h\" href=\"%s\"> UP </a>
- |
- <a accesskey=\"H\" href=\"%s\"> HOME </a>
-</div>"
-  "Snippet used to insert the HOME and UP links.
-This is a format string, the first %s will receive the UP link,
-the second the HOME link.  If both `org-html-link-up' and
-`org-html-link-home' are empty, the entire snippet will be
-ignored."
-  :group 'org-export-html
-  :type 'string)
-
-;;;; Template :: Scripts
-
-(defcustom org-html-head-include-scripts t
-  "Non-nil means include the JavaScript snippets in exported HTML files.
-The actual script is defined in `org-html-scripts' and should
-not be modified."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-;;;; Template :: Styles
-
-(defcustom org-html-head-include-default-style t
-  "Non-nil means include the default style in exported HTML files.
-The actual style is defined in `org-html-style-default' and
-should not be modified.  Use `org-html-head' to use your own
-style information."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-;;;###autoload
-(put 'org-html-head-include-default-style 'safe-local-variable 'booleanp)
-
-(defcustom org-html-head ""
-  "Org-wide head definitions for exported HTML files.
-
-This variable can contain the full HTML structure to provide a
-style, including the surrounding HTML tags.  You can consider
-including definitions for the following classes: title, todo,
-done, timestamp, timestamp-kwd, tag, target.
-
-For example, a valid value would be:
-
-   <style type=\"text/css\">
-    /*<![CDATA[*/
-      p { font-weight: normal; color: gray; }
-      h1 { color: black; }
-      .title { text-align: center; }
-      .todo, .timestamp-kwd { color: red; }
-      .done { color: green; }
-    /*]]>*/
-   </style>
-
-If you want to refer to an external style, use something like
-
-   <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\" />
-
-As the value of this option simply gets inserted into the HTML
-<head> header, you can use it to add any arbitrary text to the
-header.
-
-You can set this on a per-file basis using #+HTML_HEAD:,
-or for publication projects using the :html-head property."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-;;;###autoload
-(put 'org-html-head 'safe-local-variable 'stringp)
-
-(defcustom org-html-head-extra ""
-  "More head information to add in the HTML output.
-
-You can set this on a per-file basis using #+HTML_HEAD_EXTRA:,
-or for publication projects using the :html-head-extra property."
-  :group 'org-export-html
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-;;;###autoload
-(put 'org-html-head-extra 'safe-local-variable 'stringp)
-
-;;;; Template :: Viewport
-
-(defcustom org-html-viewport '((width "device-width")
-			       (initial-scale "1")
-			       (minimum-scale "")
-			       (maximum-scale "")
-			       (user-scalable ""))
-  "Viewport options for mobile-optimized sites.
-
-The following values are recognized
-
-width          Size of the viewport.
-initial-scale  Zoom level when the page is first loaded.
-minimum-scale  Minimum allowed zoom level.
-maximum-scale  Maximum allowed zoom level.
-user-scalable  Whether zoom can be changed.
-
-The viewport meta tag is inserted if this variable is non-nil.
-
-See the following site for a reference:
-https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag"
-  :group 'org-export-html
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice (const :tag "Disable" nil)
-		 (list :tag "Enable"
-		       (list :tag "Width of viewport"
-			     (const :format "             " width)
-			     (choice (const :tag "unset" "")
-				     (string)))
-		       (list :tag "Initial scale"
-			     (const :format "             " initial-scale)
-			     (choice (const :tag "unset" "")
-				     (string)))
-		       (list :tag "Minimum scale/zoom"
-			     (const :format "             " minimum-scale)
-			     (choice (const :tag "unset" "")
-				     (string)))
-		       (list :tag "Maximum scale/zoom"
-			     (const :format "             " maximum-scale)
-			     (choice (const :tag "unset" "")
-				     (string)))
-		       (list :tag "User scalable/zoomable"
-			     (const :format "             " user-scalable)
-			     (choice (const :tag "unset" "")
-				     (const "true")
-				     (const "false"))))))
-
-;; Handle source code blocks with Klipse
-
-(defcustom org-html-klipsify-src nil
-  "When non-nil, source code blocks are editable in exported presentation."
-  :group 'org-export-html
-  :package-version '(Org . "9.1")
-  :type 'boolean)
-
-(defcustom org-html-klipse-css
-  "https://storage.googleapis.com/app.klipse.tech/css/codemirror.css"
-  "Location of the codemirror CSS file for use with klipse."
-  :group 'org-export-html
-  :package-version '(Org . "9.1")
-  :type 'string)
-
-(defcustom org-html-klipse-js
-  "https://storage.googleapis.com/app.klipse.tech/plugin_prod/js/klipse_plugin.min.js"
-  "Location of the klipse javascript file."
-  :group 'org-export-html
-  :type 'string)
-
-(defcustom org-html-klipse-selection-script
-  "window.klipse_settings = {selector_eval_html: '.src-html',
-                             selector_eval_js: '.src-js',
-                             selector_eval_python_client: '.src-python',
-                             selector_eval_scheme: '.src-scheme',
-                             selector: '.src-clojure',
-                             selector_eval_ruby: '.src-ruby'};"
-  "Javascript snippet to activate klipse."
-  :group 'org-export-html
-  :package-version '(Org . "9.1")
-  :type 'string)
-
-
-;;;; Todos
-
-(defcustom org-html-todo-kwd-class-prefix ""
-  "Prefix to class names for TODO keywords.
-Each TODO keyword gets a class given by the keyword itself, with this prefix.
-The default prefix is empty because it is nice to just use the keyword
-as a class name.  But if you get into conflicts with other, existing
-CSS classes, then this prefix can be very useful."
-  :group 'org-export-html
-  :type 'string)
-
-
-;;; Internal Functions
-
-(defun org-html-xhtml-p (info)
-  (let ((dt (downcase (plist-get info :html-doctype))))
-    (string-match-p "xhtml" dt)))
-
-(defun org-html-html5-p (info)
-  (let ((dt (downcase (plist-get info :html-doctype))))
-	(member dt '("html5" "xhtml5" "<!doctype html>"))))
-
-(defun org-html--html5-fancy-p (info)
-  "Non-nil when exporting to HTML5 with fancy elements.
-INFO is the current state of the export process, as a plist."
-  (and (plist-get info :html-html5-fancy)
-       (org-html-html5-p info)))
-
-(defun org-html-close-tag (tag attr info)
-  "Return close-tag for string TAG.
-ATTR specifies additional attributes.  INFO is a property list
-containing current export state."
-  (concat "<" tag
-	  (org-string-nw-p (concat " " attr))
-	  (if (org-html-xhtml-p info) " />" ">")))
-
-(defun org-html-doctype (info)
-  "Return correct HTML doctype tag.
-INFO is a plist used as a communication channel.  Doctype tag is
-extracted from `org-html-doctype-alist', or the literal value
-of :html-doctype from INFO if :html-doctype is not found in the
-alist."
-  (let ((dt (plist-get info :html-doctype)))
-    (or (cdr (assoc dt org-html-doctype-alist)) dt)))
-
-(defun org-html--make-attribute-string (attributes)
-  "Return a list of attributes, as a string.
-ATTRIBUTES is a plist where values are either strings or nil.  An
-attribute with a nil value will be omitted from the result."
-  (let (output)
-    (dolist (item attributes (mapconcat 'identity (nreverse output) " "))
-      (cond ((null item) (pop output))
-            ((symbolp item) (push (substring (symbol-name item) 1) output))
-            (t (let ((key (car output))
-                     (value (replace-regexp-in-string
-                             "\"" "&quot;" (org-html-encode-plain-text item))))
-                 (setcar output (format "%s=\"%s\"" key value))))))))
-
-(defun org-html--wrap-image (contents info &optional caption label)
-  "Wrap CONTENTS string within an appropriate environment for images.
-INFO is a plist used as a communication channel.  When optional
-arguments CAPTION and LABEL are given, use them for caption and
-\"id\" attribute."
-  (let ((html5-fancy (org-html--html5-fancy-p info)))
-    (format (if html5-fancy "\n<figure%s>\n%s%s\n</figure>"
-	      "\n<div%s class=\"figure\">\n%s%s\n</div>")
-	    ;; ID.
-	    (if (org-string-nw-p label) (format " id=\"%s\"" label) "")
-	    ;; Contents.
-	    (if html5-fancy contents (format "<p>%s</p>" contents))
-	    ;; Caption.
-	    (if (not (org-string-nw-p caption)) ""
-	      (format (if html5-fancy "\n<figcaption>%s</figcaption>"
-			"\n<p>%s</p>")
-		      caption)))))
-
-(defun org-html--format-image (source attributes info)
-  "Return \"img\" tag with given SOURCE and ATTRIBUTES.
-SOURCE is a string specifying the location of the image.
-ATTRIBUTES is a plist, as returned by
-`org-export-read-attribute'.  INFO is a plist used as
-a communication channel."
-  (if (string= "svg" (file-name-extension source))
-      (org-html--svg-image source attributes info)
-    (org-html-close-tag
-     "img"
-     (org-html--make-attribute-string
-      (org-combine-plists
-       (list :src source
-	     :alt (if (string-match-p "^ltxpng/" source)
-		      (org-html-encode-plain-text
-		       (org-find-text-property-in-string 'org-latex-src source))
-		    (file-name-nondirectory source)))
-       attributes))
-     info)))
-
-(defun org-html--svg-image (source attributes info)
-  "Return \"object\" embedding svg file SOURCE with given ATTRIBUTES.
-INFO is a plist used as a communication channel.
-
-The special attribute \"fallback\" can be used to specify a
-fallback image file to use if the object embedding is not
-supported.  CSS class \"org-svg\" is assigned as the class of the
-object unless a different class is specified with an attribute."
-  (let ((fallback (plist-get attributes :fallback))
-	(attrs (org-html--make-attribute-string
-		(org-combine-plists
-                 ;; Remove fallback attribute, which is not meant to
-                 ;; appear directly in the attributes string, and
-                 ;; provide a default class if none is set.
-                 '(:class "org-svg") attributes '(:fallback nil)))))
-    (format "<object type=\"image/svg+xml\" data=\"%s\" %s>\n%s</object>"
-	    source
-	    attrs
-	    (if fallback
-		(org-html-close-tag
-		 "img" (format "src=\"%s\" %s" fallback attrs) info)
-	      "Sorry, your browser does not support SVG."))))
-
-(defun org-html--textarea-block (element)
-  "Transcode ELEMENT into a textarea block.
-ELEMENT is either a src block or an example block."
-  (let* ((code (car (org-export-unravel-code element)))
-	 (attr (org-export-read-attribute :attr_html element)))
-    (format "<p>\n<textarea cols=\"%s\" rows=\"%s\">\n%s</textarea>\n</p>"
-	    (or (plist-get attr :width) 80)
-	    (or (plist-get attr :height) (org-count-lines code))
-	    code)))
-
-(defun org-html--has-caption-p (element &optional _info)
-  "Non-nil when ELEMENT has a caption affiliated keyword.
-INFO is a plist used as a communication channel.  This function
-is meant to be used as a predicate for `org-export-get-ordinal' or
-a value to `org-html-standalone-image-predicate'."
-  (org-element-property :caption element))
-
-;;;; Table
-
-(defun org-html-htmlize-region-for-paste (beg end)
-  "Convert the region between BEG and END to HTML, using htmlize.el.
-This is much like `htmlize-region-for-paste', only that it uses
-the settings define in the org-... variables."
-  (let* ((htmlize-output-type org-html-htmlize-output-type)
-	 (htmlize-css-name-prefix org-html-htmlize-font-prefix)
-	 (htmlbuf (htmlize-region beg end)))
-    (unwind-protect
-	(with-current-buffer htmlbuf
-	  (buffer-substring (plist-get htmlize-buffer-places 'content-start)
-			    (plist-get htmlize-buffer-places 'content-end)))
-      (kill-buffer htmlbuf))))
-
-;;;###autoload
-(defun org-html-htmlize-generate-css ()
-  "Create the CSS for all font definitions in the current Emacs session.
-Use this to create face definitions in your CSS style file that can then
-be used by code snippets transformed by htmlize.
-This command just produces a buffer that contains class definitions for all
-faces used in the current Emacs session.  You can copy and paste the ones you
-need into your CSS file.
-
-If you then set `org-html-htmlize-output-type' to `css', calls
-to the function `org-html-htmlize-region-for-paste' will
-produce code that uses these same face definitions."
-  (interactive)
-  (or (require 'htmlize nil t)
-      (error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
-  (and (get-buffer "*html*") (kill-buffer "*html*"))
-  (with-temp-buffer
-    (let ((fl (face-list))
-	  (htmlize-css-name-prefix "org-")
-	  (htmlize-output-type 'css)
-	  f i)
-      (while (setq f (pop fl)
-		   i (and f (face-attribute f :inherit)))
-	(when (and (symbolp f) (or (not i) (not (listp i))))
-	  (insert (org-add-props (copy-sequence "1") nil 'face f))))
-      (htmlize-region (point-min) (point-max))))
-  (pop-to-buffer-same-window "*html*")
-  (goto-char (point-min))
-  (if (re-search-forward "<style" nil t)
-      (delete-region (point-min) (match-beginning 0)))
-  (if (re-search-forward "</style>" nil t)
-      (delete-region (1+ (match-end 0)) (point-max)))
-  (beginning-of-line 1)
-  (if (looking-at " +") (replace-match ""))
-  (goto-char (point-min)))
-
-(defun org-html--make-string (n string)
-  "Build a string by concatenating N times STRING."
-  (let (out) (dotimes (_ n out) (setq out (concat string out)))))
-
-(defun org-html-fix-class-name (kwd)	; audit callers of this function
-  "Turn todo keyword KWD into a valid class name.
-Replaces invalid characters with \"_\"."
-  (replace-regexp-in-string "[^a-zA-Z0-9_]" "_" kwd nil t))
-
-(defun org-html-footnote-section (info)
-  "Format the footnote section.
-INFO is a plist used as a communication channel."
-  (let* ((fn-alist (org-export-collect-footnote-definitions info))
-	 (fn-alist
-	  (cl-loop for (n _type raw) in fn-alist collect
-		   (cons n (if (eq (org-element-type raw) 'org-data)
-			       (org-trim (org-export-data raw info))
-			     (format "<div class=\"footpara\">%s</div>"
-				     (org-trim (org-export-data raw info))))))))
-    (when fn-alist
-      (format
-       (plist-get info :html-footnotes-section)
-       (org-html--translate "Footnotes" info)
-       (format
-	"\n%s\n"
-	(mapconcat
-	 (lambda (fn)
-	   (let ((n (car fn)) (def (cdr fn)))
-	     (format
-	      "<div class=\"footdef\">%s %s</div>\n"
-	      (format
-	       (plist-get info :html-footnote-format)
-	       (org-html--anchor
-		(format "fn.%d" n)
-		n
-		(format " class=\"footnum\" href=\"#fnr.%d\"" n)
-		info))
-	      def)))
-	 fn-alist
-	 "\n"))))))
-
-
-;;; Template
-
-(defun org-html--build-meta-info (info)
-  "Return meta tags for exported document.
-INFO is a plist used as a communication channel."
-  (let* ((protect-string
-          (lambda (str)
-            (replace-regexp-in-string
-             "\"" "&quot;" (org-html-encode-plain-text str))))
-         (title (org-export-data (plist-get info :title) info))
-         ;; Set title to an invisible character instead of leaving it
-         ;; empty, which is invalid.
-         (title (if (org-string-nw-p title) title "&lrm;"))
-         (author (and (plist-get info :with-author)
-                      (let ((auth (plist-get info :author)))
-                        (and auth
-                             ;; Return raw Org syntax, skipping non
-                             ;; exportable objects.
-                             (org-element-interpret-data
-                              (org-element-map auth
-                                  (cons 'plain-text org-element-all-objects)
-                                'identity info))))))
-         (description (plist-get info :description))
-         (keywords (plist-get info :keywords))
-         (charset (or (and org-html-coding-system
-                           (fboundp 'coding-system-get)
-                           (coding-system-get org-html-coding-system
-                                              'mime-charset))
-                      "iso-8859-1")))
-    (concat
-     (when (plist-get info :time-stamp-file)
-       (format-time-string
-	(concat "<!-- "
-		(plist-get info :html-metadata-timestamp-format)
-		" -->\n")))
-     (format
-      (if (org-html-html5-p info)
-	  (org-html-close-tag "meta" "charset=\"%s\"" info)
-	(org-html-close-tag
-	 "meta" "http-equiv=\"Content-Type\" content=\"text/html;charset=%s\""
-	 info))
-      charset) "\n"
-     (let ((viewport-options
-	    (cl-remove-if-not (lambda (cell) (org-string-nw-p (cadr cell)))
-			       (plist-get info :html-viewport))))
-       (and viewport-options
-	    (concat
-	     (org-html-close-tag
-	      "meta"
-	      (format "name=\"viewport\" content=\"%s\""
-		      (mapconcat
-		       (lambda (elm) (format "%s=%s" (car elm) (cadr elm)))
-		       viewport-options ", "))
-	      info)
-	     "\n")))
-     (format "<title>%s</title>\n" title)
-     (org-html-close-tag "meta" "name=\"generator\" content=\"Org mode\"" info)
-     "\n"
-     (and (org-string-nw-p author)
-	  (concat
-	   (org-html-close-tag "meta"
-			       (format "name=\"author\" content=\"%s\""
-				       (funcall protect-string author))
-			       info)
-	   "\n"))
-     (and (org-string-nw-p description)
-	  (concat
-	   (org-html-close-tag "meta"
-			       (format "name=\"description\" content=\"%s\"\n"
-				       (funcall protect-string description))
-			       info)
-	   "\n"))
-     (and (org-string-nw-p keywords)
-	  (concat
-	   (org-html-close-tag "meta"
-			       (format "name=\"keywords\" content=\"%s\""
-				       (funcall protect-string keywords))
-			       info)
-	   "\n")))))
-
-(defun org-html--build-head (info)
-  "Return information for the <head>..</head> of the HTML output.
-INFO is a plist used as a communication channel."
-  (org-element-normalize-string
-   (concat
-    (when (plist-get info :html-head-include-default-style)
-      (org-element-normalize-string org-html-style-default))
-    (org-element-normalize-string (plist-get info :html-head))
-    (org-element-normalize-string (plist-get info :html-head-extra))
-    (when (and (plist-get info :html-htmlized-css-url)
-	       (eq org-html-htmlize-output-type 'css))
-      (org-html-close-tag "link"
-			  (format "rel=\"stylesheet\" href=\"%s\" type=\"text/css\""
-				  (plist-get info :html-htmlized-css-url))
-			  info))
-    (when (plist-get info :html-head-include-scripts) org-html-scripts))))
-
-(defun org-html--build-mathjax-config (info)
-  "Insert the user setup into the mathjax template.
-INFO is a plist used as a communication channel."
-  (when (and (memq (plist-get info :with-latex) '(mathjax t))
-	     (org-element-map (plist-get info :parse-tree)
-		 '(latex-fragment latex-environment) #'identity info t nil t))
-    (let ((template (plist-get info :html-mathjax-template))
-	  (options (plist-get info :html-mathjax-options))
-	  (in-buffer (or (plist-get info :html-mathjax) "")))
-      (dolist (e options (org-element-normalize-string template))
-	(let ((name (car e))
-	      (val (nth 1 e)))
-	  (when (string-match (concat "\\<" (symbol-name name) ":") in-buffer)
-	    (setq val
-		  (car (read-from-string (substring in-buffer (match-end 0))))))
-	  (unless (stringp val) (setq val (format "%s" val)))
-	  (while (string-match (concat "%" (upcase (symbol-name name)))
-			       template)
-	    (setq template (replace-match val t t template))))))))
-
-(defun org-html-format-spec (info)
-  "Return format specification for preamble and postamble.
-INFO is a plist used as a communication channel."
-  (let ((timestamp-format (plist-get info :html-metadata-timestamp-format)))
-    `((?t . ,(org-export-data (plist-get info :title) info))
-      (?s . ,(org-export-data (plist-get info :subtitle) info))
-      (?d . ,(org-export-data (org-export-get-date info timestamp-format)
-			      info))
-      (?T . ,(format-time-string timestamp-format))
-      (?a . ,(org-export-data (plist-get info :author) info))
-      (?e . ,(mapconcat
-	      (lambda (e) (format "<a href=\"mailto:%s\">%s</a>" e e))
-	      (split-string (plist-get info :email)  ",+ *")
-	      ", "))
-      (?c . ,(plist-get info :creator))
-      (?C . ,(let ((file (plist-get info :input-file)))
-	       (format-time-string timestamp-format
-				   (and file (nth 5 (file-attributes file))))))
-      (?v . ,(or (plist-get info :html-validation-link) "")))))
-
-(defun org-html--build-pre/postamble (type info)
-  "Return document preamble or postamble as a string, or nil.
-TYPE is either `preamble' or `postamble', INFO is a plist used as a
-communication channel."
-  (let ((section (plist-get info (intern (format ":html-%s" type))))
-	(spec (org-html-format-spec info)))
-    (when section
-      (let ((section-contents
-	     (if (functionp section) (funcall section info)
-	       (cond
-		((stringp section) (format-spec section spec))
-		((eq section 'auto)
-		 (let ((date (cdr (assq ?d spec)))
-		       (author (cdr (assq ?a spec)))
-		       (email (cdr (assq ?e spec)))
-		       (creator (cdr (assq ?c spec)))
-		       (validation-link (cdr (assq ?v spec))))
-		   (concat
-		    (when (and (plist-get info :with-date)
-			       (org-string-nw-p date))
-		      (format "<p class=\"date\">%s: %s</p>\n"
-			      (org-html--translate "Date" info)
-			      date))
-		    (when (and (plist-get info :with-author)
-			       (org-string-nw-p author))
-		      (format "<p class=\"author\">%s: %s</p>\n"
-			      (org-html--translate "Author" info)
-			      author))
-		    (when (and (plist-get info :with-email)
-			       (org-string-nw-p email))
-		      (format "<p class=\"email\">%s: %s</p>\n"
-			      (org-html--translate "Email" info)
-			      email))
-		    (when (plist-get info :time-stamp-file)
-		      (format
-		       "<p class=\"date\">%s: %s</p>\n"
-		       (org-html--translate "Created" info)
-		       (format-time-string
-			(plist-get info :html-metadata-timestamp-format))))
-		    (when (plist-get info :with-creator)
-		      (format "<p class=\"creator\">%s</p>\n" creator))
-		    (format "<p class=\"validation\">%s</p>\n"
-			    validation-link))))
-		(t
-		 (let ((formats (plist-get info (if (eq type 'preamble)
-						    :html-preamble-format
-						  :html-postamble-format)))
-		       (language (plist-get info :language)))
-		   (format-spec
-		    (cadr (or (assoc-string language formats t)
-			      (assoc-string "en" formats t)))
-		    spec)))))))
-	(let ((div (assq type (plist-get info :html-divs))))
-	  (when (org-string-nw-p section-contents)
-	    (concat
-	     (format "<%s id=\"%s\" class=\"%s\">\n"
-		     (nth 1 div)
-		     (nth 2 div)
-		     org-html--pre/postamble-class)
-	     (org-element-normalize-string section-contents)
-	     (format "</%s>\n" (nth 1 div)))))))))
-
-(defun org-html-inner-template (contents info)
-  "Return body of document string after HTML conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  (concat
-   ;; Table of contents.
-   (let ((depth (plist-get info :with-toc)))
-     (when depth (org-html-toc depth info)))
-   ;; Document contents.
-   contents
-   ;; Footnotes section.
-   (org-html-footnote-section info)))
-
-(defun org-html-template (contents info)
-  "Return complete document string after HTML conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  (concat
-   (when (and (not (org-html-html5-p info)) (org-html-xhtml-p info))
-     (let* ((xml-declaration (plist-get info :html-xml-declaration))
-	    (decl (or (and (stringp xml-declaration) xml-declaration)
-		      (cdr (assoc (plist-get info :html-extension)
-				  xml-declaration))
-		      (cdr (assoc "html" xml-declaration))
-		      "")))
-       (when (not (or (not decl) (string= "" decl)))
-	 (format "%s\n"
-		 (format decl
-			 (or (and org-html-coding-system
-				  (fboundp 'coding-system-get)
-				  (coding-system-get org-html-coding-system 'mime-charset))
-			     "iso-8859-1"))))))
-   (org-html-doctype info)
-   "\n"
-   (concat "<html"
-	   (cond ((org-html-xhtml-p info)
-		  (format
-		   " xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"%s\" xml:lang=\"%s\""
-		   (plist-get info :language) (plist-get info :language)))
-		 ((org-html-html5-p info)
-		  (format " lang=\"%s\"" (plist-get info :language))))
-	   ">\n")
-   "<head>\n"
-   (org-html--build-meta-info info)
-   (org-html--build-head info)
-   (org-html--build-mathjax-config info)
-   "</head>\n"
-   "<body>\n"
-   (let ((link-up (org-trim (plist-get info :html-link-up)))
-	 (link-home (org-trim (plist-get info :html-link-home))))
-     (unless (and (string= link-up "") (string= link-home ""))
-       (format (plist-get info :html-home/up-format)
-	       (or link-up link-home)
-	       (or link-home link-up))))
-   ;; Preamble.
-   (org-html--build-pre/postamble 'preamble info)
-   ;; Document contents.
-   (let ((div (assq 'content (plist-get info :html-divs))))
-     (format "<%s id=\"%s\">\n" (nth 1 div) (nth 2 div)))
-   ;; Document title.
-   (when (plist-get info :with-title)
-     (let ((title (and (plist-get info :with-title)
-		       (plist-get info :title)))
-	   (subtitle (plist-get info :subtitle))
-	   (html5-fancy (org-html--html5-fancy-p info)))
-       (when title
-	 (format
-	  (if html5-fancy
-	      "<header>\n<h1 class=\"title\">%s</h1>\n%s</header>"
-	    "<h1 class=\"title\">%s%s</h1>\n")
-	  (org-export-data title info)
-	  (if subtitle
-	      (format
-	       (if html5-fancy
-		   "<p class=\"subtitle\">%s</p>\n"
-		 (concat "\n" (org-html-close-tag "br" nil info) "\n"
-			 "<span class=\"subtitle\">%s</span>\n"))
-	       (org-export-data subtitle info))
-	    "")))))
-   contents
-   (format "</%s>\n" (nth 1 (assq 'content (plist-get info :html-divs))))
-   ;; Postamble.
-   (org-html--build-pre/postamble 'postamble info)
-   ;; Possibly use the Klipse library live code blocks.
-   (if (plist-get info :html-klipsify-src)
-       (concat "<script>" (plist-get info :html-klipse-selection-script)
-	       "</script><script src=\""
-	       org-html-klipse-js
-	       "\"></script><link rel=\"stylesheet\" type=\"text/css\" href=\""
-	       org-html-klipse-css "\"/>"))
-   ;; Closing document.
-   "</body>\n</html>"))
-
-(defun org-html--translate (s info)
-  "Translate string S according to specified language.
-INFO is a plist used as a communication channel."
-  (org-export-translate s :html info))
-
-;;;; Anchor
-
-(defun org-html--anchor (id desc attributes info)
-  "Format a HTML anchor."
-  (let* ((name (and (plist-get info :html-allow-name-attribute-in-anchors) id))
-	 (attributes (concat (and id (format " id=\"%s\"" id))
-			     (and name (format " name=\"%s\"" name))
-			     attributes)))
-    (format "<a%s>%s</a>" attributes (or desc ""))))
-
-;;;; Todo
-
-(defun org-html--todo (todo info)
-  "Format TODO keywords into HTML."
-  (when todo
-    (format "<span class=\"%s %s%s\">%s</span>"
-	    (if (member todo org-done-keywords) "done" "todo")
-	    (or (plist-get info :html-todo-kwd-class-prefix) "")
-	    (org-html-fix-class-name todo)
-	    todo)))
-
-;;;; Priority
-
-(defun org-html--priority (priority _info)
-  "Format a priority into HTML.
-PRIORITY is the character code of the priority or nil.  INFO is
-a plist containing export options."
-  (and priority (format "<span class=\"priority\">[%c]</span>" priority)))
-
-;;;; Tags
-
-(defun org-html--tags (tags info)
-  "Format TAGS into HTML.
-INFO is a plist containing export options."
-  (when tags
-    (format "<span class=\"tag\">%s</span>"
-	    (mapconcat
-	     (lambda (tag)
-	       (format "<span class=\"%s\">%s</span>"
-		       (concat (plist-get info :html-tag-class-prefix)
-			       (org-html-fix-class-name tag))
-		       tag))
-	     tags "&#xa0;"))))
-
-;;;; Src Code
-
-(defun org-html-fontify-code (code lang)
-  "Color CODE with htmlize library.
-CODE is a string representing the source code to colorize.  LANG
-is the language used for CODE, as a string, or nil."
-  (when code
-    (cond
-     ;; No language.  Possibly an example block.
-     ((not lang) (org-html-encode-plain-text code))
-     ;; Plain text explicitly set.
-     ((not org-html-htmlize-output-type) (org-html-encode-plain-text code))
-     ;; No htmlize library or an inferior version of htmlize.
-     ((not (and (or (require 'htmlize nil t)
-		    (error "Please install htmlize from \
-https://github.com/hniksic/emacs-htmlize"))
-		(fboundp 'htmlize-region-for-paste)))
-      ;; Emit a warning.
-      (message "Cannot fontify src block (htmlize.el >= 1.34 required)")
-      (org-html-encode-plain-text code))
-     (t
-      ;; Map language
-      (setq lang (or (assoc-default lang org-src-lang-modes) lang))
-      (let* ((lang-mode (and lang (intern (format "%s-mode" lang)))))
-	(cond
-	 ;; Case 1: Language is not associated with any Emacs mode
-	 ((not (functionp lang-mode))
-	  (org-html-encode-plain-text code))
-	 ;; Case 2: Default.  Fontify code.
-	 (t
-	  ;; htmlize
-	  (setq code
-		(let ((output-type org-html-htmlize-output-type)
-		      (font-prefix org-html-htmlize-font-prefix))
-		  (with-temp-buffer
-		    ;; Switch to language-specific mode.
-		    (funcall lang-mode)
-		    (insert code)
-		    ;; Fontify buffer.
-		    (org-font-lock-ensure)
-		    ;; Remove formatting on newline characters.
-		    (save-excursion
-		      (let ((beg (point-min))
-			    (end (point-max)))
-			(goto-char beg)
-			(while (progn (end-of-line) (< (point) end))
-			  (put-text-property (point) (1+ (point)) 'face nil)
-			  (forward-char 1))))
-		    (org-src-mode)
-		    (set-buffer-modified-p nil)
-		    ;; Htmlize region.
-		    (let ((org-html-htmlize-output-type output-type)
-			  (org-html-htmlize-font-prefix font-prefix))
-		      (org-html-htmlize-region-for-paste
-		       (point-min) (point-max))))))
-	  ;; Strip any enclosing <pre></pre> tags.
-	  (let* ((beg (and (string-match "\\`<pre[^>]*>\n?" code) (match-end 0)))
-		 (end (and beg (string-match "</pre>\\'" code))))
-	    (if (and beg end) (substring code beg end) code)))))))))
-
-(defun org-html-do-format-code
-  (code &optional lang refs retain-labels num-start)
-  "Format CODE string as source code.
-Optional arguments LANG, REFS, RETAIN-LABELS and NUM-START are,
-respectively, the language of the source code, as a string, an
-alist between line numbers and references (as returned by
-`org-export-unravel-code'), a boolean specifying if labels should
-appear in the source code, and the number associated to the first
-line of code."
-  (let* ((code-lines (split-string code "\n"))
-	 (code-length (length code-lines))
-	 (num-fmt
-	  (and num-start
-	       (format "%%%ds: "
-		       (length (number-to-string (+ code-length num-start))))))
-	 (code (org-html-fontify-code code lang)))
-    (org-export-format-code
-     code
-     (lambda (loc line-num ref)
-       (setq loc
-	     (concat
-	      ;; Add line number, if needed.
-	      (when num-start
-		(format "<span class=\"linenr\">%s</span>"
-			(format num-fmt line-num)))
-	      ;; Transcoded src line.
-	      loc
-	      ;; Add label, if needed.
-	      (when (and ref retain-labels) (format " (%s)" ref))))
-       ;; Mark transcoded line as an anchor, if needed.
-       (if (not ref) loc
-	 (format "<span id=\"coderef-%s\" class=\"coderef-off\">%s</span>"
-		 ref loc)))
-     num-start refs)))
-
-(defun org-html-format-code (element info)
-  "Format contents of ELEMENT as source code.
-ELEMENT is either an example block or a src block.  INFO is
-a plist used as a communication channel."
-  (let* ((lang (org-element-property :language element))
-	 ;; Extract code and references.
-	 (code-info (org-export-unravel-code element))
-	 (code (car code-info))
-	 (refs (cdr code-info))
-	 ;; Does the src block contain labels?
-	 (retain-labels (org-element-property :retain-labels element))
-	 ;; Does it have line numbers?
-	 (num-start (org-export-get-loc element info)))
-    (org-html-do-format-code code lang refs retain-labels num-start)))
-
-
-;;; Tables of Contents
-
-(defun org-html-toc (depth info &optional scope)
-  "Build a table of contents.
-DEPTH is an integer specifying the depth of the table.  INFO is
-a plist used as a communication channel.  Optional argument SCOPE
-is an element defining the scope of the table.  Return the table
-of contents as a string, or nil if it is empty."
-  (let ((toc-entries
-	 (mapcar (lambda (headline)
-		   (cons (org-html--format-toc-headline headline info)
-			 (org-export-get-relative-level headline info)))
-		 (org-export-collect-headlines info depth scope))))
-    (when toc-entries
-      (let ((toc (concat "<div id=\"text-table-of-contents\">"
-			 (org-html--toc-text toc-entries)
-			 "</div>\n")))
-	(if scope toc
-	  (let ((outer-tag (if (org-html--html5-fancy-p info)
-			       "nav"
-			     "div")))
-	    (concat (format "<%s id=\"table-of-contents\">\n" outer-tag)
-		    (let ((top-level (plist-get info :html-toplevel-hlevel)))
-		      (format "<h%d>%s</h%d>\n"
-			      top-level
-			      (org-html--translate "Table of Contents" info)
-			      top-level))
-		    toc
-		    (format "</%s>\n" outer-tag))))))))
-
-(defun org-html--toc-text (toc-entries)
-  "Return innards of a table of contents, as a string.
-TOC-ENTRIES is an alist where key is an entry title, as a string,
-and value is its relative level, as an integer."
-  (let* ((prev-level (1- (cdar toc-entries)))
-	 (start-level prev-level))
-    (concat
-     (mapconcat
-      (lambda (entry)
-	(let ((headline (car entry))
-	      (level (cdr entry)))
-	  (concat
-	   (let* ((cnt (- level prev-level))
-		  (times (if (> cnt 0) (1- cnt) (- cnt))))
-	     (setq prev-level level)
-	     (concat
-	      (org-html--make-string
-	       times (cond ((> cnt 0) "\n<ul>\n<li>")
-			   ((< cnt 0) "</li>\n</ul>\n")))
-	      (if (> cnt 0) "\n<ul>\n<li>" "</li>\n<li>")))
-	   headline)))
-      toc-entries "")
-     (org-html--make-string (- prev-level start-level) "</li>\n</ul>\n"))))
-
-(defun org-html--format-toc-headline (headline info)
-  "Return an appropriate table of contents entry for HEADLINE.
-INFO is a plist used as a communication channel."
-  (let* ((headline-number (org-export-get-headline-number headline info))
-	 (todo (and (plist-get info :with-todo-keywords)
-		    (let ((todo (org-element-property :todo-keyword headline)))
-		      (and todo (org-export-data todo info)))))
-	 (todo-type (and todo (org-element-property :todo-type headline)))
-	 (priority (and (plist-get info :with-priority)
-			(org-element-property :priority headline)))
-	 (text (org-export-data-with-backend
-		(org-export-get-alt-title headline info)
-		(org-export-toc-entry-backend 'html)
-		info))
-	 (tags (and (eq (plist-get info :with-tags) t)
-		    (org-export-get-tags headline info))))
-    (format "<a href=\"#%s\">%s</a>"
-	    ;; Label.
-	    (or (org-element-property :CUSTOM_ID headline)
-		(org-export-get-reference headline info))
-	    ;; Body.
-	    (concat
-	     (and (not (org-export-low-level-p headline info))
-		  (org-export-numbered-headline-p headline info)
-		  (concat (mapconcat #'number-to-string headline-number ".")
-			  ". "))
-	     (apply (plist-get info :html-format-headline-function)
-		    todo todo-type priority text tags :section-number nil)))))
-
-(defun org-html-list-of-listings (info)
-  "Build a list of listings.
-INFO is a plist used as a communication channel.  Return the list
-of listings as a string, or nil if it is empty."
-  (let ((lol-entries (org-export-collect-listings info)))
-    (when lol-entries
-      (concat "<div id=\"list-of-listings\">\n"
-	      (let ((top-level (plist-get info :html-toplevel-hlevel)))
-		(format "<h%d>%s</h%d>\n"
-			top-level
-			(org-html--translate "List of Listings" info)
-			top-level))
-	      "<div id=\"text-list-of-listings\">\n<ul>\n"
-	      (let ((count 0)
-		    (initial-fmt (format "<span class=\"listing-number\">%s</span>"
-					 (org-html--translate "Listing %d:" info))))
-		(mapconcat
-		 (lambda (entry)
-		   (let ((label (and (org-element-property :name entry)
-				     (org-export-get-reference entry info)))
-			 (title (org-trim
-				 (org-export-data
-				  (or (org-export-get-caption entry t)
-				      (org-export-get-caption entry))
-				  info))))
-		     (concat
-		      "<li>"
-		      (if (not label)
-			  (concat (format initial-fmt (cl-incf count))
-				  " "
-				  title)
-			(format "<a href=\"#%s\">%s %s</a>"
-				label
-				(format initial-fmt (cl-incf count))
-				title))
-		      "</li>")))
-		 lol-entries "\n"))
-	      "\n</ul>\n</div>\n</div>"))))
-
-(defun org-html-list-of-tables (info)
-  "Build a list of tables.
-INFO is a plist used as a communication channel.  Return the list
-of tables as a string, or nil if it is empty."
-  (let ((lol-entries (org-export-collect-tables info)))
-    (when lol-entries
-      (concat "<div id=\"list-of-tables\">\n"
-	      (let ((top-level (plist-get info :html-toplevel-hlevel)))
-		(format "<h%d>%s</h%d>\n"
-			top-level
-			(org-html--translate "List of Tables" info)
-			top-level))
-	      "<div id=\"text-list-of-tables\">\n<ul>\n"
-	      (let ((count 0)
-		    (initial-fmt (format "<span class=\"table-number\">%s</span>"
-					 (org-html--translate "Table %d:" info))))
-		(mapconcat
-		 (lambda (entry)
-		   (let ((label (and (org-element-property :name entry)
-				     (org-export-get-reference entry info)))
-			 (title (org-trim
-				 (org-export-data
-				  (or (org-export-get-caption entry t)
-				      (org-export-get-caption entry))
-				  info))))
-		     (concat
-		      "<li>"
-		      (if (not label)
-			  (concat (format initial-fmt (cl-incf count))
-				  " "
-				  title)
-			(format "<a href=\"#%s\">%s %s</a>"
-				label
-				(format initial-fmt (cl-incf count))
-				title))
-		      "</li>")))
-		 lol-entries "\n"))
-	      "\n</ul>\n</div>\n</div>"))))
-
-
-;;; Transcode Functions
-
-;;;; Bold
-
-(defun org-html-bold (_bold contents info)
-  "Transcode BOLD from Org to HTML.
-CONTENTS is the text with bold markup.  INFO is a plist holding
-contextual information."
-  (format (or (cdr (assq 'bold (plist-get info :html-text-markup-alist))) "%s")
-	  contents))
-
-;;;; Center Block
-
-(defun org-html-center-block (_center-block contents _info)
-  "Transcode a CENTER-BLOCK element from Org to HTML.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (format "<div class=\"org-center\">\n%s</div>" contents))
-
-;;;; Clock
-
-(defun org-html-clock (clock _contents _info)
-  "Transcode a CLOCK element from Org to HTML.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (format "<p>
-<span class=\"timestamp-wrapper\">
-<span class=\"timestamp-kwd\">%s</span> <span class=\"timestamp\">%s</span>%s
-</span>
-</p>"
-	  org-clock-string
-	  (org-timestamp-translate (org-element-property :value clock))
-	  (let ((time (org-element-property :duration clock)))
-	    (and time (format " <span class=\"timestamp\">(%s)</span>" time)))))
-
-;;;; Code
-
-(defun org-html-code (code _contents info)
-  "Transcode CODE from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format (or (cdr (assq 'code (plist-get info :html-text-markup-alist))) "%s")
-	  (org-html-encode-plain-text (org-element-property :value code))))
-
-;;;; Drawer
-
-(defun org-html-drawer (drawer contents info)
-  "Transcode a DRAWER element from Org to HTML.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (funcall (plist-get info :html-format-drawer-function)
-	   (org-element-property :drawer-name drawer)
-	   contents))
-
-;;;; Dynamic Block
-
-(defun org-html-dynamic-block (_dynamic-block contents _info)
-  "Transcode a DYNAMIC-BLOCK element from Org to HTML.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information.  See `org-export-data'."
-  contents)
-
-;;;; Entity
-
-(defun org-html-entity (entity _contents _info)
-  "Transcode an ENTITY object from Org to HTML.
-CONTENTS are the definition itself.  INFO is a plist holding
-contextual information."
-  (org-element-property :html entity))
-
-;;;; Example Block
-
-(defun org-html-example-block (example-block _contents info)
-  "Transcode a EXAMPLE-BLOCK element from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (let ((attributes (org-export-read-attribute :attr_html example-block)))
-    (if (plist-get attributes :textarea)
-	(org-html--textarea-block example-block)
-      (format "<pre class=\"example\"%s>\n%s</pre>"
-	      (let* ((name (org-element-property :name example-block))
-		     (a (org-html--make-attribute-string
-			 (if (or (not name) (plist-member attributes :id))
-			     attributes
-			   (plist-put attributes :id name)))))
-		(if (org-string-nw-p a) (concat " " a) ""))
-	      (org-html-format-code example-block info)))))
-
-;;;; Export Snippet
-
-(defun org-html-export-snippet (export-snippet _contents _info)
-  "Transcode a EXPORT-SNIPPET object from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (when (eq (org-export-snippet-backend export-snippet) 'html)
-    (org-element-property :value export-snippet)))
-
-;;;; Export Block
-
-(defun org-html-export-block (export-block _contents _info)
-  "Transcode a EXPORT-BLOCK element from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (string= (org-element-property :type export-block) "HTML")
-    (org-remove-indentation (org-element-property :value export-block))))
-
-;;;; Fixed Width
-
-(defun org-html-fixed-width (fixed-width _contents _info)
-  "Transcode a FIXED-WIDTH element from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (format "<pre class=\"example\">\n%s</pre>"
-	  (org-html-do-format-code
-	   (org-remove-indentation
-	    (org-element-property :value fixed-width)))))
-
-;;;; Footnote Reference
-
-(defun org-html-footnote-reference (footnote-reference _contents info)
-  "Transcode a FOOTNOTE-REFERENCE element from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (concat
-   ;; Insert separator between two footnotes in a row.
-   (let ((prev (org-export-get-previous-element footnote-reference info)))
-     (when (eq (org-element-type prev) 'footnote-reference)
-       (plist-get info :html-footnote-separator)))
-   (let* ((n (org-export-get-footnote-number footnote-reference info))
-	  (id (format "fnr.%d%s"
-		      n
-		      (if (org-export-footnote-first-reference-p
-			   footnote-reference info)
-			  ""
-			".100"))))
-     (format
-      (plist-get info :html-footnote-format)
-      (org-html--anchor
-       id n (format " class=\"footref\" href=\"#fn.%d\"" n) info)))))
-
-;;;; Headline
-
-(defun org-html-headline (headline contents info)
-  "Transcode a HEADLINE element from Org to HTML.
-CONTENTS holds the contents of the headline.  INFO is a plist
-holding contextual information."
-  (unless (org-element-property :footnote-section-p headline)
-    (let* ((numberedp (org-export-numbered-headline-p headline info))
-           (numbers (org-export-get-headline-number headline info))
-           (level (+ (org-export-get-relative-level headline info)
-                     (1- (plist-get info :html-toplevel-hlevel))))
-           (todo (and (plist-get info :with-todo-keywords)
-                      (let ((todo (org-element-property :todo-keyword headline)))
-                        (and todo (org-export-data todo info)))))
-           (todo-type (and todo (org-element-property :todo-type headline)))
-           (priority (and (plist-get info :with-priority)
-                          (org-element-property :priority headline)))
-           (text (org-export-data (org-element-property :title headline) info))
-           (tags (and (plist-get info :with-tags)
-                      (org-export-get-tags headline info)))
-           (full-text (funcall (plist-get info :html-format-headline-function)
-                               todo todo-type priority text tags info))
-           (contents (or contents ""))
-	   (ids (delq nil
-                      (list (org-element-property :CUSTOM_ID headline)
-                            (org-export-get-reference headline info)
-                            (org-element-property :ID headline))))
-           (preferred-id (car ids))
-           (extra-ids
-	    (mapconcat
-	     (lambda (id)
-	       (org-html--anchor
-		(if (org-uuidgen-p id) (concat "ID-" id) id)
-		nil nil info))
-	     (cdr ids) "")))
-      (if (org-export-low-level-p headline info)
-          ;; This is a deep sub-tree: export it as a list item.
-          (let* ((html-type (if numberedp "ol" "ul")))
-	    (concat
-	     (and (org-export-first-sibling-p headline info)
-		  (apply #'format "<%s class=\"org-%s\">\n"
-			 (make-list 2 html-type)))
-	     (org-html-format-list-item
-                   contents (if numberedp 'ordered 'unordered)
-		   nil info nil
-                   (concat (org-html--anchor preferred-id nil nil info)
-                           extra-ids
-                           full-text)) "\n"
-	     (and (org-export-last-sibling-p headline info)
-		  (format "</%s>\n" html-type))))
-	;; Standard headline.  Export it as a section.
-        (let ((extra-class (org-element-property :HTML_CONTAINER_CLASS headline))
-              (first-content (car (org-element-contents headline))))
-          (format "<%s id=\"%s\" class=\"%s\">%s%s</%s>\n"
-                  (org-html--container headline info)
-                  (concat "outline-container-"
-			  (org-export-get-reference headline info))
-                  (concat (format "outline-%d" level)
-                          (and extra-class " ")
-                          extra-class)
-                  (format "\n<h%d id=\"%s\">%s%s</h%d>\n"
-                          level
-                          preferred-id
-                          extra-ids
-                          (concat
-                           (and numberedp
-                                (format
-                                 "<span class=\"section-number-%d\">%s</span> "
-                                 level
-                                 (mapconcat #'number-to-string numbers ".")))
-                           full-text)
-                          level)
-                  ;; When there is no section, pretend there is an
-                  ;; empty one to get the correct <div
-                  ;; class="outline-...> which is needed by
-                  ;; `org-info.js'.
-                  (if (eq (org-element-type first-content) 'section) contents
-                    (concat (org-html-section first-content "" info) contents))
-                  (org-html--container headline info)))))))
-
-(defun org-html-format-headline-default-function
-    (todo _todo-type priority text tags info)
-  "Default format function for a headline.
-See `org-html-format-headline-function' for details."
-  (let ((todo (org-html--todo todo info))
-	(priority (org-html--priority priority info))
-	(tags (org-html--tags tags info)))
-    (concat todo (and todo " ")
-	    priority (and priority " ")
-	    text
-	    (and tags "&#xa0;&#xa0;&#xa0;") tags)))
-
-(defun org-html--container (headline info)
-  (or (org-element-property :HTML_CONTAINER headline)
-      (if (= 1 (org-export-get-relative-level headline info))
-	  (plist-get info :html-container)
-	"div")))
-
-;;;; Horizontal Rule
-
-(defun org-html-horizontal-rule (_horizontal-rule _contents info)
-  "Transcode an HORIZONTAL-RULE  object from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-html-close-tag "hr" nil info))
-
-;;;; Inline Src Block
-
-(defun org-html-inline-src-block (inline-src-block _contents info)
-  "Transcode an INLINE-SRC-BLOCK element from Org to HTML.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((lang (org-element-property :language inline-src-block))
-	 (code (org-html-fontify-code
-		(org-element-property :value inline-src-block)
-		lang))
-	 (label
-	  (let ((lbl (and (org-element-property :name inline-src-block)
-			  (org-export-get-reference inline-src-block info))))
-	    (if (not lbl) "" (format " id=\"%s\"" lbl)))))
-    (format "<code class=\"src src-%s\"%s>%s</code>" lang label code)))
-
-;;;; Inlinetask
-
-(defun org-html-inlinetask (inlinetask contents info)
-  "Transcode an INLINETASK element from Org to HTML.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let* ((todo (and (plist-get info :with-todo-keywords)
-		    (let ((todo (org-element-property :todo-keyword inlinetask)))
-		      (and todo (org-export-data todo info)))))
-	 (todo-type (and todo (org-element-property :todo-type inlinetask)))
-	 (priority (and (plist-get info :with-priority)
-			(org-element-property :priority inlinetask)))
-	 (text (org-export-data (org-element-property :title inlinetask) info))
-	 (tags (and (plist-get info :with-tags)
-		    (org-export-get-tags inlinetask info))))
-    (funcall (plist-get info :html-format-inlinetask-function)
-	     todo todo-type priority text tags contents info)))
-
-(defun org-html-format-inlinetask-default-function
-  (todo todo-type priority text tags contents info)
-  "Default format function for inlinetasks.
-See `org-html-format-inlinetask-function' for details."
-  (format "<div class=\"inlinetask\">\n<b>%s</b>%s\n%s</div>"
-	  (org-html-format-headline-default-function
-	   todo todo-type priority text tags info)
-	  (org-html-close-tag "br" nil info)
-	  contents))
-
-;;;; Italic
-
-(defun org-html-italic (_italic contents info)
-  "Transcode ITALIC from Org to HTML.
-CONTENTS is the text with italic markup.  INFO is a plist holding
-contextual information."
-  (format
-   (or (cdr (assq 'italic (plist-get info :html-text-markup-alist))) "%s")
-   contents))
-
-;;;; Item
-
-(defun org-html-checkbox (checkbox info)
-  "Format CHECKBOX into HTML.
-INFO is a plist holding contextual information.  See
-`org-html-checkbox-type' for customization options."
-  (cdr (assq checkbox
-	     (cdr (assq (plist-get info :html-checkbox-type)
-			org-html-checkbox-types)))))
-
-(defun org-html-format-list-item (contents type checkbox info
-					   &optional term-counter-id
-					   headline)
-  "Format a list item into HTML."
-  (let ((class (if checkbox
-		   (format " class=\"%s\""
-			   (symbol-name checkbox)) ""))
-	(checkbox (concat (org-html-checkbox checkbox info)
-			  (and checkbox " ")))
-	(br (org-html-close-tag "br" nil info))
-	(extra-newline (if (and (org-string-nw-p contents) headline) "\n" "")))
-    (concat
-     (pcase type
-       (`ordered
-	(let* ((counter term-counter-id)
-	       (extra (if counter (format " value=\"%s\"" counter) "")))
-	  (concat
-	   (format "<li%s%s>" class extra)
-	   (when headline (concat headline br)))))
-       (`unordered
-	(let* ((id term-counter-id)
-	       (extra (if id (format " id=\"%s\"" id) "")))
-	  (concat
-	   (format "<li%s%s>" class extra)
-	   (when headline (concat headline br)))))
-       (`descriptive
-	(let* ((term term-counter-id))
-	  (setq term (or term "(no term)"))
-	  ;; Check-boxes in descriptive lists are associated to tag.
-	  (concat (format "<dt%s>%s</dt>"
-			  class (concat checkbox term))
-		  "<dd>"))))
-     (unless (eq type 'descriptive) checkbox)
-     extra-newline
-     (and (org-string-nw-p contents) (org-trim contents))
-     extra-newline
-     (pcase type
-       (`ordered "</li>")
-       (`unordered "</li>")
-       (`descriptive "</dd>")))))
-
-(defun org-html-item (item contents info)
-  "Transcode an ITEM element from Org to HTML.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((plain-list (org-export-get-parent item))
-	 (type (org-element-property :type plain-list))
-	 (counter (org-element-property :counter item))
-	 (checkbox (org-element-property :checkbox item))
-	 (tag (let ((tag (org-element-property :tag item)))
-		(and tag (org-export-data tag info)))))
-    (org-html-format-list-item
-     contents type checkbox info (or tag counter))))
-
-;;;; Keyword
-
-(defun org-html-keyword (keyword _contents info)
-  "Transcode a KEYWORD element from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((key (org-element-property :key keyword))
-	(value (org-element-property :value keyword)))
-    (cond
-     ((string= key "HTML") value)
-     ((string= key "TOC")
-      (let ((case-fold-search t))
-	(cond
-	 ((string-match "\\<headlines\\>" value)
-	  (let ((depth (and (string-match "\\<[0-9]+\\>" value)
-			    (string-to-number (match-string 0 value))))
-		(localp (string-match-p "\\<local\\>" value)))
-	    (org-html-toc depth info (and localp keyword))))
-	 ((string= "listings" value) (org-html-list-of-listings info))
-	 ((string= "tables" value) (org-html-list-of-tables info))))))))
-
-;;;; Latex Environment
-
-(defun org-html-format-latex (latex-frag processing-type info)
-  "Format a LaTeX fragment LATEX-FRAG into HTML.
-PROCESSING-TYPE designates the tool used for conversion.  It can
-be `mathjax', `verbatim', nil, t or symbols in
-`org-preview-latex-process-alist', e.g., `dvipng', `dvisvgm' or
-`imagemagick'.  See `org-html-with-latex' for more information.
-INFO is a plist containing export properties."
-  (let ((cache-relpath "") (cache-dir ""))
-    (unless (eq processing-type 'mathjax)
-      (let ((bfn (or (buffer-file-name)
-		     (make-temp-name
-		      (expand-file-name "latex" temporary-file-directory))))
-	    (latex-header
-	     (let ((header (plist-get info :latex-header)))
-	       (and header
-		    (concat (mapconcat
-			     (lambda (line) (concat "#+LATEX_HEADER: " line))
-			     (org-split-string header "\n")
-			     "\n")
-			    "\n")))))
-	(setq cache-relpath
-	      (concat (file-name-as-directory org-preview-latex-image-directory)
-		      (file-name-sans-extension
-		       (file-name-nondirectory bfn)))
-	      cache-dir (file-name-directory bfn))
-	;; Re-create LaTeX environment from original buffer in
-	;; temporary buffer so that dvipng/imagemagick can properly
-	;; turn the fragment into an image.
-	(setq latex-frag (concat latex-header latex-frag))))
-    (with-temp-buffer
-      (insert latex-frag)
-      (org-format-latex cache-relpath nil nil cache-dir nil
-			"Creating LaTeX Image..." nil processing-type)
-      (buffer-string))))
-
-(defun org-html-latex-environment (latex-environment _contents info)
-  "Transcode a LATEX-ENVIRONMENT element from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((processing-type (plist-get info :with-latex))
-	(latex-frag (org-remove-indentation
-		     (org-element-property :value latex-environment)))
-	(attributes (org-export-read-attribute :attr_html latex-environment)))
-    (cond
-     ((memq processing-type '(t mathjax))
-      (org-html-format-latex latex-frag 'mathjax info))
-     ((assq processing-type org-preview-latex-process-alist)
-      (let ((formula-link
-	     (org-html-format-latex latex-frag processing-type info)))
-	(when (and formula-link (string-match "file:\\([^]]*\\)" formula-link))
-	  ;; Do not provide a caption or a name to be consistent with
-	  ;; `mathjax' handling.
-	  (org-html--wrap-image
-	   (org-html--format-image
-	    (match-string 1 formula-link) attributes info) info))))
-     (t latex-frag))))
-
-;;;; Latex Fragment
-
-(defun org-html-latex-fragment (latex-fragment _contents info)
-  "Transcode a LATEX-FRAGMENT object from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((latex-frag (org-element-property :value latex-fragment))
-	(processing-type (plist-get info :with-latex)))
-    (cond
-     ((memq processing-type '(t mathjax))
-      (org-html-format-latex latex-frag 'mathjax info))
-     ((assq processing-type org-preview-latex-process-alist)
-      (let ((formula-link
-	     (org-html-format-latex latex-frag processing-type info)))
-	(when (and formula-link (string-match "file:\\([^]]*\\)" formula-link))
-	  (org-html--format-image (match-string 1 formula-link) nil info))))
-     (t latex-frag))))
-
-;;;; Line Break
-
-(defun org-html-line-break (_line-break _contents info)
-  "Transcode a LINE-BREAK object from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (concat (org-html-close-tag "br" nil info) "\n"))
-
-;;;; Link
-
-(defun org-html-image-link-filter (data _backend info)
-  (org-export-insert-image-links data info org-html-inline-image-rules))
-
-(defun org-html-inline-image-p (link info)
-  "Non-nil when LINK is meant to appear as an image.
-INFO is a plist used as a communication channel.  LINK is an
-inline image when it has no description and targets an image
-file (see `org-html-inline-image-rules' for more information), or
-if its description is a single link targeting an image file."
-  (if (not (org-element-contents link))
-      (org-export-inline-image-p
-       link (plist-get info :html-inline-image-rules))
-    (not
-     (let ((link-count 0))
-       (org-element-map (org-element-contents link)
-	   (cons 'plain-text org-element-all-objects)
-	 (lambda (obj)
-	   (pcase (org-element-type obj)
-	     (`plain-text (org-string-nw-p obj))
-	     (`link (if (= link-count 1) t
-		      (cl-incf link-count)
-		      (not (org-export-inline-image-p
-			    obj (plist-get info :html-inline-image-rules)))))
-	     (_ t)))
-         info t)))))
-
-(defvar org-html-standalone-image-predicate)
-(defun org-html-standalone-image-p (element info)
-  "Non-nil if ELEMENT is a standalone image.
-
-INFO is a plist holding contextual information.
-
-An element or object is a standalone image when
-
-  - its type is `paragraph' and its sole content, save for white
-    spaces, is a link that qualifies as an inline image;
-
-  - its type is `link' and its containing paragraph has no other
-    content save white spaces.
-
-Bind `org-html-standalone-image-predicate' to constrain paragraph
-further.  For example, to check for only captioned standalone
-images, set it to:
-
-  (lambda (paragraph) (org-element-property :caption paragraph))"
-  (let ((paragraph (pcase (org-element-type element)
-		     (`paragraph element)
-		     (`link (org-export-get-parent element)))))
-    (and (eq (org-element-type paragraph) 'paragraph)
-	 (or (not (fboundp 'org-html-standalone-image-predicate))
-	     (funcall org-html-standalone-image-predicate paragraph))
-	 (catch 'exit
-	   (let ((link-count 0))
-	     (org-element-map (org-element-contents paragraph)
-		 (cons 'plain-text org-element-all-objects)
-	       (lambda (obj)
-		 (when (pcase (org-element-type obj)
-			 (`plain-text (org-string-nw-p obj))
-			 (`link (or (> (cl-incf link-count) 1)
-				    (not (org-html-inline-image-p obj info))))
-			 (_ t))
-		   (throw 'exit nil)))
-	       info nil 'link)
-	     (= link-count 1))))))
-
-(defun org-html-link (link desc info)
-  "Transcode a LINK object from Org to HTML.
-DESC is the description part of the link, or the empty string.
-INFO is a plist holding contextual information.  See
-`org-export-data'."
-  (let* ((link-org-files-as-html-maybe
-	  (lambda (raw-path info)
-	    ;; Treat links to `file.org' as links to `file.html', if
-	    ;; needed.  See `org-html-link-org-files-as-html'.
-	    (cond
-	     ((and (plist-get info :html-link-org-files-as-html)
-		   (string= ".org"
-			    (downcase (file-name-extension raw-path "."))))
-	      (concat (file-name-sans-extension raw-path) "."
-		      (plist-get info :html-extension)))
-	     (t raw-path))))
-	 (type (org-element-property :type link))
-	 (raw-path (org-element-property :path link))
-	 ;; Ensure DESC really exists, or set it to nil.
-	 (desc (org-string-nw-p desc))
-	 (path
-	  (cond
-	   ((member type '("http" "https" "ftp" "mailto" "news"))
-	    (url-encode-url (org-link-unescape (concat type ":" raw-path))))
-	   ((string= type "file")
-	    ;; During publishing, turn absolute file names belonging
-	    ;; to base directory into relative file names.  Otherwise,
-	    ;; append "file" protocol to absolute file name.
-	    (setq raw-path
-		  (org-export-file-uri
-		   (org-publish-file-relative-name raw-path info)))
-	    ;; Possibly append `:html-link-home' to relative file
-	    ;; name.
-	    (let ((home (and (plist-get info :html-link-home)
-			     (org-trim (plist-get info :html-link-home)))))
-	      (when (and home
-			 (plist-get info :html-link-use-abs-url)
-			 (file-name-absolute-p raw-path))
-		(setq raw-path (concat (file-name-as-directory home) raw-path))))
-	    ;; Maybe turn ".org" into ".html".
-	    (setq raw-path (funcall link-org-files-as-html-maybe raw-path info))
-	    ;; Add search option, if any.  A search option can be
-	    ;; relative to a custom-id, a headline title, a name or
-	    ;; a target.
-	    (let ((option (org-element-property :search-option link)))
-	      (cond ((not option) raw-path)
-		    ;; Since HTML back-end use custom-id value as-is,
-		    ;; resolving is them is trivial.
-		    ((eq (string-to-char option) ?#) (concat raw-path option))
-		    (t
-		     (concat raw-path
-			     "#"
-			     (org-publish-resolve-external-link
-			      option
-			      (org-element-property :path link)))))))
-	   (t raw-path)))
-	 ;; Extract attributes from parent's paragraph.  HACK: Only do
-	 ;; this for the first link in parent (inner image link for
-	 ;; inline images).  This is needed as long as attributes
-	 ;; cannot be set on a per link basis.
-	 (attributes-plist
-	  (let* ((parent (org-export-get-parent-element link))
-		 (link (let ((container (org-export-get-parent link)))
-			 (if (and (eq (org-element-type container) 'link)
-				  (org-html-inline-image-p link info))
-			     container
-			   link))))
-	    (and (eq (org-element-map parent 'link 'identity info t) link)
-		 (org-export-read-attribute :attr_html parent))))
-	 (attributes
-	  (let ((attr (org-html--make-attribute-string attributes-plist)))
-	    (if (org-string-nw-p attr) (concat " " attr) ""))))
-    (cond
-     ;; Link type is handled by a special function.
-     ((org-export-custom-protocol-maybe link desc 'html))
-     ;; Image file.
-     ((and (plist-get info :html-inline-images)
-	   (org-export-inline-image-p
-	    link (plist-get info :html-inline-image-rules)))
-      (org-html--format-image path attributes-plist info))
-     ;; Radio target: Transcode target's contents and use them as
-     ;; link's description.
-     ((string= type "radio")
-      (let ((destination (org-export-resolve-radio-link link info)))
-	(if (not destination) desc
-	  (format "<a href=\"#%s\"%s>%s</a>"
-		  (org-export-get-reference destination info)
-		  attributes
-		  desc))))
-     ;; Links pointing to a headline: Find destination and build
-     ;; appropriate referencing command.
-     ((member type '("custom-id" "fuzzy" "id"))
-      (let ((destination (if (string= type "fuzzy")
-			     (org-export-resolve-fuzzy-link link info)
-			   (org-export-resolve-id-link link info))))
-	(pcase (org-element-type destination)
-	  ;; ID link points to an external file.
-	  (`plain-text
-	   (let ((fragment (concat "ID-" path))
-		 ;; Treat links to ".org" files as ".html", if needed.
-		 (path (funcall link-org-files-as-html-maybe
-				destination info)))
-	     (format "<a href=\"%s#%s\"%s>%s</a>"
-		     path fragment attributes (or desc destination))))
-	  ;; Fuzzy link points nowhere.
-	  (`nil
-	   (format "<i>%s</i>"
-		   (or desc
-		       (org-export-data
-			(org-element-property :raw-link link) info))))
-	  ;; Link points to a headline.
-	  (`headline
-	   (let ((href (or (org-element-property :CUSTOM_ID destination)
-			   (org-export-get-reference destination info)))
-		 ;; What description to use?
-		 (desc
-		  ;; Case 1: Headline is numbered and LINK has no
-		  ;; description.  Display section number.
-		  (if (and (org-export-numbered-headline-p destination info)
-			   (not desc))
-		      (mapconcat #'number-to-string
-				 (org-export-get-headline-number
-				  destination info) ".")
-		    ;; Case 2: Either the headline is un-numbered or
-		    ;; LINK has a custom description.  Display LINK's
-		    ;; description or headline's title.
-		    (or desc
-			(org-export-data
-			 (org-element-property :title destination) info)))))
-	     (format "<a href=\"#%s\"%s>%s</a>" href attributes desc)))
-	  ;; Fuzzy link points to a target or an element.
-	  (_
-	   (let* ((ref (org-export-get-reference destination info))
-		  (org-html-standalone-image-predicate
-		   #'org-html--has-caption-p)
-		  (number (cond
-			   (desc nil)
-			   ((org-html-standalone-image-p destination info)
-			    (org-export-get-ordinal
-			     (org-element-map destination 'link
-			       #'identity info t)
-			     info 'link 'org-html-standalone-image-p))
-			   (t (org-export-get-ordinal
-			       destination info nil 'org-html--has-caption-p))))
-		  (desc (cond (desc)
-			      ((not number) "No description for this link")
-			      ((numberp number) (number-to-string number))
-			      (t (mapconcat #'number-to-string number ".")))))
-	     (format "<a href=\"#%s\"%s>%s</a>" ref attributes desc))))))
-     ;; Coderef: replace link with the reference name or the
-     ;; equivalent line number.
-     ((string= type "coderef")
-      (let ((fragment (concat "coderef-" (org-html-encode-plain-text path))))
-	(format "<a href=\"#%s\" %s%s>%s</a>"
-		fragment
-		(format "class=\"coderef\" onmouseover=\"CodeHighlightOn(this, \
-'%s');\" onmouseout=\"CodeHighlightOff(this, '%s');\""
-			fragment fragment)
-		attributes
-		(format (org-export-get-coderef-format path desc)
-			(org-export-resolve-coderef path info)))))
-     ;; External link with a description part.
-     ((and path desc) (format "<a href=\"%s\"%s>%s</a>"
-			      (org-html-encode-plain-text path)
-			      attributes
-			      desc))
-     ;; External link without a description part.
-     (path (let ((path (org-html-encode-plain-text path)))
-	     (format "<a href=\"%s\"%s>%s</a>"
-		     path
-		     attributes
-		     (org-link-unescape path))))
-     ;; No path, only description.  Try to do something useful.
-     (t (format "<i>%s</i>" desc)))))
-
-;;;; Node Property
-
-(defun org-html-node-property (node-property _contents _info)
-  "Transcode a NODE-PROPERTY element from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "%s:%s"
-          (org-element-property :key node-property)
-          (let ((value (org-element-property :value node-property)))
-            (if value (concat " " value) ""))))
-
-;;;; Paragraph
-
-(defun org-html-paragraph (paragraph contents info)
-  "Transcode a PARAGRAPH element from Org to HTML.
-CONTENTS is the contents of the paragraph, as a string.  INFO is
-the plist used as a communication channel."
-  (let* ((parent (org-export-get-parent paragraph))
-	 (parent-type (org-element-type parent))
-	 (style '((footnote-definition " class=\"footpara\"")
-		  (org-data " class=\"footpara\"")))
-	 (attributes (org-html--make-attribute-string
-		      (org-export-read-attribute :attr_html paragraph)))
-	 (extra (or (cadr (assq parent-type style)) "")))
-    (cond
-     ((and (eq parent-type 'item)
-	   (not (org-export-get-previous-element paragraph info))
-	   (let ((followers (org-export-get-next-element paragraph info 2)))
-	     (and (not (cdr followers))
-		  (memq (org-element-type (car followers)) '(nil plain-list)))))
-      ;; First paragraph in an item has no tag if it is alone or
-      ;; followed, at most, by a sub-list.
-      contents)
-     ((org-html-standalone-image-p paragraph info)
-      ;; Standalone image.
-      (let ((caption
-	     (let ((raw (org-export-data
-			 (org-export-get-caption paragraph) info))
-		   (org-html-standalone-image-predicate
-		    #'org-html--has-caption-p))
-	       (if (not (org-string-nw-p raw)) raw
-		 (concat "<span class=\"figure-number\">"
-			 (format (org-html--translate "Figure %d:" info)
-				 (org-export-get-ordinal
-				  (org-element-map paragraph 'link
-				    #'identity info t)
-				  info nil #'org-html-standalone-image-p))
-			 " </span>"
-			 raw))))
-	    (label (and (org-element-property :name paragraph)
-			(org-export-get-reference paragraph info))))
-	(org-html--wrap-image contents info caption label)))
-     ;; Regular paragraph.
-     (t (format "<p%s%s>\n%s</p>"
-		(if (org-string-nw-p attributes)
-		    (concat " " attributes) "")
-		extra contents)))))
-
-;;;; Plain List
-
-(defun org-html-plain-list (plain-list contents _info)
-  "Transcode a PLAIN-LIST element from Org to HTML.
-CONTENTS is the contents of the list.  INFO is a plist holding
-contextual information."
-  (let* ((type (pcase (org-element-property :type plain-list)
-		 (`ordered "ol")
-		 (`unordered "ul")
-		 (`descriptive "dl")
-		 (other (error "Unknown HTML list type: %s" other))))
-	 (class (format "org-%s" type))
-	 (attributes (org-export-read-attribute :attr_html plain-list)))
-    (format "<%s %s>\n%s</%s>"
-	    type
-	    (org-html--make-attribute-string
-	     (plist-put attributes :class
-			(org-trim
-			 (mapconcat #'identity
-				    (list class (plist-get attributes :class))
-				    " "))))
-	    contents
-	    type)))
-
-;;;; Plain Text
-
-(defun org-html-convert-special-strings (string)
-  "Convert special characters in STRING to HTML."
-  (dolist (a org-html-special-string-regexps string)
-    (let ((re (car a))
-	  (rpl (cdr a)))
-      (setq string (replace-regexp-in-string re rpl string t)))))
-
-(defun org-html-encode-plain-text (text)
-  "Convert plain text characters from TEXT to HTML equivalent.
-Possible conversions are set in `org-html-protect-char-alist'."
-  (dolist (pair org-html-protect-char-alist text)
-    (setq text (replace-regexp-in-string (car pair) (cdr pair) text t t))))
-
-(defun org-html-plain-text (text info)
-  "Transcode a TEXT string from Org to HTML.
-TEXT is the string to transcode.  INFO is a plist holding
-contextual information."
-  (let ((output text))
-    ;; Protect following characters: <, >, &.
-    (setq output (org-html-encode-plain-text output))
-    ;; Handle smart quotes.  Be sure to provide original string since
-    ;; OUTPUT may have been modified.
-    (when (plist-get info :with-smart-quotes)
-      (setq output (org-export-activate-smart-quotes output :html info text)))
-    ;; Handle special strings.
-    (when (plist-get info :with-special-strings)
-      (setq output (org-html-convert-special-strings output)))
-    ;; Handle break preservation if required.
-    (when (plist-get info :preserve-breaks)
-      (setq output
-	    (replace-regexp-in-string
-	     "\\(\\\\\\\\\\)?[ \t]*\n"
-	     (concat (org-html-close-tag "br" nil info) "\n") output)))
-    ;; Return value.
-    output))
-
-
-;; Planning
-
-(defun org-html-planning (planning _contents info)
-  "Transcode a PLANNING element from Org to HTML.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (format
-   "<p><span class=\"timestamp-wrapper\">%s</span></p>"
-   (org-trim
-    (mapconcat
-     (lambda (pair)
-       (let ((timestamp (cdr pair)))
-	 (when timestamp
-	   (let ((string (car pair)))
-	     (format "<span class=\"timestamp-kwd\">%s</span> \
-<span class=\"timestamp\">%s</span> "
-		     string
-		     (org-html-plain-text (org-timestamp-translate timestamp)
-					  info))))))
-     `((,org-closed-string . ,(org-element-property :closed planning))
-       (,org-deadline-string . ,(org-element-property :deadline planning))
-       (,org-scheduled-string . ,(org-element-property :scheduled planning)))
-     ""))))
-
-;;;; Property Drawer
-
-(defun org-html-property-drawer (_property-drawer contents _info)
-  "Transcode a PROPERTY-DRAWER element from Org to HTML.
-CONTENTS holds the contents of the drawer.  INFO is a plist
-holding contextual information."
-  (and (org-string-nw-p contents)
-       (format "<pre class=\"example\">\n%s</pre>" contents)))
-
-;;;; Quote Block
-
-(defun org-html-quote-block (quote-block contents _info)
-  "Transcode a QUOTE-BLOCK element from Org to HTML.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (format "<blockquote%s>\n%s</blockquote>"
-	  (let* ((name (org-element-property :name quote-block))
-		 (attributes (org-export-read-attribute :attr_html quote-block))
-		 (a (org-html--make-attribute-string
-		     (if (or (not name) (plist-member attributes :id))
-			 attributes
-		       (plist-put attributes :id name)))))
-	    (if (org-string-nw-p a) (concat " " a) ""))
-	  contents))
-
-;;;; Section
-
-(defun org-html-section (section contents info)
-  "Transcode a SECTION element from Org to HTML.
-CONTENTS holds the contents of the section.  INFO is a plist
-holding contextual information."
-  (let ((parent (org-export-get-parent-headline section)))
-    ;; Before first headline: no container, just return CONTENTS.
-    (if (not parent) contents
-      ;; Get div's class and id references.
-      (let* ((class-num (+ (org-export-get-relative-level parent info)
-			   (1- (plist-get info :html-toplevel-hlevel))))
-	     (section-number
-	      (and (org-export-numbered-headline-p parent info)
-		   (mapconcat
-		    #'number-to-string
-		    (org-export-get-headline-number parent info) "-"))))
-        ;; Build return value.
-	(format "<div class=\"outline-text-%d\" id=\"text-%s\">\n%s</div>\n"
-		class-num
-		(or (org-element-property :CUSTOM_ID parent)
-		    section-number
-		    (org-export-get-reference parent info))
-		(or contents ""))))))
-
-;;;; Radio Target
-
-(defun org-html-radio-target (radio-target text info)
-  "Transcode a RADIO-TARGET object from Org to HTML.
-TEXT is the text of the target.  INFO is a plist holding
-contextual information."
-  (let ((ref (org-export-get-reference radio-target info)))
-    (org-html--anchor ref text nil info)))
-
-;;;; Special Block
-
-(defun org-html-special-block (special-block contents info)
-  "Transcode a SPECIAL-BLOCK element from Org to HTML.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let* ((block-type (org-element-property :type special-block))
-         (html5-fancy (and (org-html--html5-fancy-p info)
-                           (member block-type org-html-html5-elements)))
-         (attributes (org-export-read-attribute :attr_html special-block)))
-    (unless html5-fancy
-      (let ((class (plist-get attributes :class)))
-        (setq attributes (plist-put attributes :class
-                                    (if class (concat class " " block-type)
-                                      block-type)))))
-    (let* ((contents (or contents ""))
-	   (name (org-element-property :name special-block))
-	   (a (org-html--make-attribute-string
-	       (if (or (not name) (plist-member attributes :id))
-		   attributes
-		 (plist-put attributes :id name))))
-	   (str (if (org-string-nw-p a) (concat " " a) "")))
-      (if html5-fancy
-	  (format "<%s%s>\n%s</%s>" block-type str contents block-type)
-	(format "<div%s>\n%s\n</div>" str contents)))))
-
-;;;; Src Block
-
-(defun org-html-src-block (src-block _contents info)
-  "Transcode a SRC-BLOCK element from Org to HTML.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (if (org-export-read-attribute :attr_html src-block :textarea)
-      (org-html--textarea-block src-block)
-    (let* ((lang (org-element-property :language src-block))
-	  (code (org-html-format-code src-block info))
-	  (label (let ((lbl (and (org-element-property :name src-block)
-				 (org-export-get-reference src-block info))))
-		   (if lbl (format " id=\"%s\"" lbl) "")))
-	  (klipsify  (and  (plist-get info :html-klipsify-src)
-                           (member lang '("javascript" "js"
-					  "ruby" "scheme" "clojure" "php" "html")))))
-      (if (not lang) (format "<pre class=\"example\"%s>\n%s</pre>" label code)
-	(format "<div class=\"org-src-container\">\n%s%s\n</div>"
-		;; Build caption.
-		(let ((caption (org-export-get-caption src-block)))
-		  (if (not caption) ""
-		    (let ((listing-number
-			   (format
-			    "<span class=\"listing-number\">%s </span>"
-			    (format
-			     (org-html--translate "Listing %d:" info)
-			     (org-export-get-ordinal
-			      src-block info nil #'org-html--has-caption-p)))))
-		      (format "<label class=\"org-src-name\">%s%s</label>"
-			      listing-number
-			      (org-trim (org-export-data caption info))))))
-		;; Contents.
-		(if klipsify
-		    (format "<pre><code class=\"src src-%s\"%s%s>%s</code></pre>"
-			    lang
-			    label
-			    (if (string= lang "html")
-				" data-editor-type=\"html\""
-			      "")
-			    code)
-		  (format "<pre class=\"src src-%s\"%s>%s</pre>"
-                          lang label code)))))))
-
-;;;; Statistics Cookie
-
-(defun org-html-statistics-cookie (statistics-cookie _contents _info)
-  "Transcode a STATISTICS-COOKIE object from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((cookie-value (org-element-property :value statistics-cookie)))
-    (format "<code>%s</code>" cookie-value)))
-
-;;;; Strike-Through
-
-(defun org-html-strike-through (_strike-through contents info)
-  "Transcode STRIKE-THROUGH from Org to HTML.
-CONTENTS is the text with strike-through markup.  INFO is a plist
-holding contextual information."
-  (format
-   (or (cdr (assq 'strike-through (plist-get info :html-text-markup-alist)))
-       "%s")
-   contents))
-
-;;;; Subscript
-
-(defun org-html-subscript (_subscript contents _info)
-  "Transcode a SUBSCRIPT object from Org to HTML.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (format "<sub>%s</sub>" contents))
-
-;;;; Superscript
-
-(defun org-html-superscript (_superscript contents _info)
-  "Transcode a SUPERSCRIPT object from Org to HTML.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (format "<sup>%s</sup>" contents))
-
-;;;; Table Cell
-
-(defun org-html-table-cell (table-cell contents info)
-  "Transcode a TABLE-CELL element from Org to HTML.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (let* ((table-row (org-export-get-parent table-cell))
-	 (table (org-export-get-parent-table table-cell))
-	 (cell-attrs
-	  (if (not (plist-get info :html-table-align-individual-fields)) ""
-	    (format (if (and (boundp 'org-html-format-table-no-css)
-			     org-html-format-table-no-css)
-			" align=\"%s\"" " class=\"org-%s\"")
-		    (org-export-table-cell-alignment table-cell info)))))
-    (when (or (not contents) (string= "" (org-trim contents)))
-      (setq contents "&#xa0;"))
-    (cond
-     ((and (org-export-table-has-header-p table info)
-	   (= 1 (org-export-table-row-group table-row info)))
-      (let ((header-tags (plist-get info :html-table-header-tags)))
-	(concat "\n" (format (car header-tags) "col" cell-attrs)
-		contents
-		(cdr header-tags))))
-     ((and (plist-get info :html-table-use-header-tags-for-first-column)
-	   (zerop (cdr (org-export-table-cell-address table-cell info))))
-      (let ((header-tags (plist-get info :html-table-header-tags)))
-	(concat "\n" (format (car header-tags) "row" cell-attrs)
-		contents
-		(cdr header-tags))))
-     (t (let ((data-tags (plist-get info :html-table-data-tags)))
-	  (concat "\n" (format (car data-tags) cell-attrs)
-		  contents
-		  (cdr data-tags)))))))
-
-;;;; Table Row
-
-(defun org-html-table-row (table-row contents info)
-  "Transcode a TABLE-ROW element from Org to HTML.
-CONTENTS is the contents of the row.  INFO is a plist used as a
-communication channel."
-  ;; Rules are ignored since table separators are deduced from
-  ;; borders of the current row.
-  (when (eq (org-element-property :type table-row) 'standard)
-    (let* ((group (org-export-table-row-group table-row info))
-	   (number (org-export-table-row-number table-row info))
-	   (start-group-p
-	    (org-export-table-row-starts-rowgroup-p table-row info))
-	   (end-group-p
-	    (org-export-table-row-ends-rowgroup-p table-row info))
-	   (topp (and (equal start-group-p '(top))
-		      (equal end-group-p '(below top))))
-	   (bottomp (and (equal start-group-p '(above))
-			 (equal end-group-p '(bottom above))))
-           (row-open-tag
-            (pcase (plist-get info :html-table-row-open-tag)
-              ((and accessor (pred functionp))
-               (funcall accessor
-			number group start-group-p end-group-p topp bottomp))
-	      (accessor accessor)))
-           (row-close-tag
-            (pcase (plist-get info :html-table-row-close-tag)
-              ((and accessor (pred functionp))
-               (funcall accessor
-			number group start-group-p end-group-p topp bottomp))
-	      (accessor accessor)))
-	   (group-tags
-	    (cond
-	     ;; Row belongs to second or subsequent groups.
-	     ((not (= 1 group)) '("<tbody>" . "\n</tbody>"))
-	     ;; Row is from first group.  Table has >=1 groups.
-	     ((org-export-table-has-header-p
-	       (org-export-get-parent-table table-row) info)
-	      '("<thead>" . "\n</thead>"))
-	     ;; Row is from first and only group.
-	     (t '("<tbody>" . "\n</tbody>")))))
-      (concat (and start-group-p (car group-tags))
-	      (concat "\n"
-		      row-open-tag
-		      contents
-		      "\n"
-		      row-close-tag)
-	      (and end-group-p (cdr group-tags))))))
-
-;;;; Table
-
-(defun org-html-table-first-row-data-cells (table info)
-  "Transcode the first row of TABLE.
-INFO is a plist used as a communication channel."
-  (let ((table-row
-	 (org-element-map table 'table-row
-	   (lambda (row)
-	     (unless (eq (org-element-property :type row) 'rule) row))
-	   info 'first-match))
-	(special-column-p (org-export-table-has-special-column-p table)))
-    (if (not special-column-p) (org-element-contents table-row)
-      (cdr (org-element-contents table-row)))))
-
-(defun org-html-table--table.el-table (table _info)
-  "Format table.el tables into HTML.
-INFO is a plist used as a communication channel."
-  (when (eq (org-element-property :type table) 'table.el)
-    (require 'table)
-    (let ((outbuf (with-current-buffer
-		      (get-buffer-create "*org-export-table*")
-		    (erase-buffer) (current-buffer))))
-      (with-temp-buffer
-	(insert (org-element-property :value table))
-	(goto-char 1)
-	(re-search-forward "^[ \t]*|[^|]" nil t)
-	(table-generate-source 'html outbuf))
-      (with-current-buffer outbuf
-	(prog1 (org-trim (buffer-string))
-	  (kill-buffer) )))))
-
-(defun org-html-table (table contents info)
-  "Transcode a TABLE element from Org to HTML.
-CONTENTS is the contents of the table.  INFO is a plist holding
-contextual information."
-  (if (eq (org-element-property :type table) 'table.el)
-      ;; "table.el" table.  Convert it using appropriate tools.
-      (org-html-table--table.el-table table info)
-    ;; Standard table.
-    (let* ((caption (org-export-get-caption table))
-	   (number (org-export-get-ordinal
-		    table info nil #'org-html--has-caption-p))
-	   (attributes
-	    (org-html--make-attribute-string
-	     (org-combine-plists
-	      (and (org-element-property :name table)
-		   (list :id (org-export-get-reference table info)))
-	      (and (not (org-html-html5-p info))
-		   (plist-get info :html-table-attributes))
-	      (org-export-read-attribute :attr_html table))))
-	   (alignspec
-	    (if (bound-and-true-p org-html-format-table-no-css)
-		"align=\"%s\""
-	      "class=\"org-%s\""))
-	   (table-column-specs
-	    (lambda (table info)
-	      (mapconcat
-	       (lambda (table-cell)
-		 (let ((alignment (org-export-table-cell-alignment
-				   table-cell info)))
-		   (concat
-		    ;; Begin a colgroup?
-		    (when (org-export-table-cell-starts-colgroup-p
-			   table-cell info)
-		      "\n<colgroup>")
-		    ;; Add a column.  Also specify its alignment.
-		    (format "\n%s"
-			    (org-html-close-tag
-			     "col" (concat " " (format alignspec alignment)) info))
-		    ;; End a colgroup?
-		    (when (org-export-table-cell-ends-colgroup-p
-			   table-cell info)
-		      "\n</colgroup>"))))
-	       (org-html-table-first-row-data-cells table info) "\n"))))
-      (format "<table%s>\n%s\n%s\n%s</table>"
-	      (if (equal attributes "") "" (concat " " attributes))
-	      (if (not caption) ""
-		(format (if (plist-get info :html-table-caption-above)
-			    "<caption class=\"t-above\">%s</caption>"
-			  "<caption class=\"t-bottom\">%s</caption>")
-			(concat
-			 "<span class=\"table-number\">"
-			 (format (org-html--translate "Table %d:" info) number)
-			 "</span> " (org-export-data caption info))))
-	      (funcall table-column-specs table info)
-	      contents))))
-
-;;;; Target
-
-(defun org-html-target (target _contents info)
-  "Transcode a TARGET object from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (let ((ref (org-export-get-reference target info)))
-    (org-html--anchor ref nil nil info)))
-
-;;;; Timestamp
-
-(defun org-html-timestamp (timestamp _contents info)
-  "Transcode a TIMESTAMP object from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (let ((value (org-html-plain-text (org-timestamp-translate timestamp) info)))
-    (format "<span class=\"timestamp-wrapper\"><span class=\"timestamp\">%s</span></span>"
-	    (replace-regexp-in-string "--" "&#x2013;" value))))
-
-;;;; Underline
-
-(defun org-html-underline (_underline contents info)
-  "Transcode UNDERLINE from Org to HTML.
-CONTENTS is the text with underline markup.  INFO is a plist
-holding contextual information."
-  (format (or (cdr (assq 'underline (plist-get info :html-text-markup-alist)))
-	      "%s")
-	  contents))
-
-;;;; Verbatim
-
-(defun org-html-verbatim (verbatim _contents info)
-  "Transcode VERBATIM from Org to HTML.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format (or (cdr (assq 'verbatim (plist-get info :html-text-markup-alist))) "%s")
-	  (org-html-encode-plain-text (org-element-property :value verbatim))))
-
-;;;; Verse Block
-
-(defun org-html-verse-block (_verse-block contents info)
-  "Transcode a VERSE-BLOCK element from Org to HTML.
-CONTENTS is verse block contents.  INFO is a plist holding
-contextual information."
-  (format "<p class=\"verse\">\n%s</p>"
-	  ;; Replace leading white spaces with non-breaking spaces.
-	  (replace-regexp-in-string
-	   "^[ \t]+" (lambda (m) (org-html--make-string (length m) "&#xa0;"))
-	   ;; Replace each newline character with line break.  Also
-	   ;; remove any trailing "br" close-tag so as to avoid
-	   ;; duplicates.
-	   (let* ((br (org-html-close-tag "br" nil info))
-		  (re (format "\\(?:%s\\)?[ \t]*\n" (regexp-quote br))))
-	     (replace-regexp-in-string re (concat br "\n") contents)))))
-
-
-;;; Filter Functions
-
-(defun org-html-final-function (contents _backend info)
-  "Filter to indent the HTML and convert HTML entities."
-  (with-temp-buffer
-    (insert contents)
-    (set-auto-mode t)
-    (if (plist-get info :html-indent)
-	(indent-region (point-min) (point-max)))
-    (buffer-substring-no-properties (point-min) (point-max))))
-
-
-;;; End-user functions
-
-;;;###autoload
-(defun org-html-export-as-html
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to an HTML buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"<body>\" and \"</body>\" tags.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org HTML Export*\", which
-will be displayed when `org-export-show-temporary-export-buffer'
-is non-nil."
-  (interactive)
-  (org-export-to-buffer 'html "*Org HTML Export*"
-    async subtreep visible-only body-only ext-plist
-    (lambda () (set-auto-mode t))))
-
-;;;###autoload
-(defun org-html-convert-region-to-html ()
-  "Assume the current region has Org syntax, and convert it to HTML.
-This can be used in any buffer.  For example, you can write an
-itemized list in Org syntax in an HTML buffer and use this command
-to convert it."
-  (interactive)
-  (org-export-replace-region-by 'html))
-
-;;;###autoload
-(defun org-html-export-to-html
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to a HTML file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"<body>\" and \"</body>\" tags.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name."
-  (interactive)
-  (let* ((extension (concat "." (or (plist-get ext-plist :html-extension)
-				    org-html-extension
-				    "html")))
-	 (file (org-export-output-file-name extension subtreep))
-	 (org-export-coding-system org-html-coding-system))
-    (org-export-to-file 'html file
-      async subtreep visible-only body-only ext-plist)))
-
-;;;###autoload
-(defun org-html-publish-to-html (plist filename pub-dir)
-  "Publish an org file to HTML.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to 'html filename
-		      (concat "." (or (plist-get plist :html-extension)
-				      org-html-extension
-				      "html"))
-		      plist pub-dir))
-
-
-(provide 'ox-html)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-html.el ends here
diff --git a/elpa/org-9.1.14/ox-html.elc b/elpa/org-9.1.14/ox-html.elc
deleted file mode 100644
index bf48981..0000000
--- a/elpa/org-9.1.14/ox-html.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-icalendar.el b/elpa/org-9.1.14/ox-icalendar.el
deleted file mode 100644
index 7d7c850..0000000
--- a/elpa/org-9.1.14/ox-icalendar.el
+++ /dev/null
@@ -1,979 +0,0 @@
-;;; ox-icalendar.el --- iCalendar Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2004-2018 Free Software Foundation, Inc.
-
-;; Author: Carsten Dominik <carsten at orgmode dot org>
-;;      Nicolas Goaziou <n dot goaziou at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; This library implements an iCalendar back-end for Org generic
-;; exporter.  See Org manual for more information.
-;;
-;; It is expected to conform to RFC 5545.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'ox-ascii)
-(declare-function org-bbdb-anniv-export-ical "org-bbdb" nil)
-
-
-
-;;; User-Configurable Variables
-
-(defgroup org-export-icalendar nil
-  "Options specific for iCalendar export back-end."
-  :tag "Org Export iCalendar"
-  :group 'org-export)
-
-(defcustom org-icalendar-combined-agenda-file "~/org.ics"
-  "The file name for the iCalendar file covering all agenda files.
-This file is created with the command `\\[org-icalendar-combine-agenda-files]'.
-The file name should be absolute.  It will be overwritten without warning."
-  :group 'org-export-icalendar
-  :type 'file)
-
-(defcustom org-icalendar-alarm-time 0
-  "Number of minutes for triggering an alarm for exported timed events.
-
-A zero value (the default) turns off the definition of an alarm trigger
-for timed events.  If non-zero, alarms are created.
-
-- a single alarm per entry is defined
-- The alarm will go off N minutes before the event
-- only a DISPLAY action is defined."
-  :group 'org-export-icalendar
-  :version "24.1"
-  :type 'integer)
-
-(defcustom org-icalendar-combined-name "OrgMode"
-  "Calendar name for the combined iCalendar representing all agenda files."
-  :group 'org-export-icalendar
-  :type 'string)
-
-(defcustom org-icalendar-combined-description ""
-  "Calendar description for the combined iCalendar (all agenda files)."
-  :group 'org-export-icalendar
-  :type 'string)
-
-(defcustom org-icalendar-exclude-tags nil
-  "Tags that exclude a tree from export.
-This variable allows specifying different exclude tags from other
-back-ends.  It can also be set with the ICALENDAR_EXCLUDE_TAGS
-keyword."
-  :group 'org-export-icalendar
-  :type '(repeat (string :tag "Tag")))
-
-(defcustom org-icalendar-use-deadline '(event-if-not-todo todo-due)
-  "Contexts where iCalendar export should use a deadline time stamp.
-
-This is a list with possibly several symbols in it.  Valid symbols are:
-
-`event-if-todo'       Deadlines in TODO entries become calendar events.
-`event-if-not-todo'   Deadlines in non-TODO entries become calendar events.
-`todo-due'            Use deadlines in TODO entries as due-dates."
-  :group 'org-export-icalendar
-  :type '(set :greedy t
-	      (const :tag "Deadlines in non-TODO entries become events"
-		     event-if-not-todo)
-	      (const :tag "Deadline in TODO entries become events"
-		     event-if-todo)
-	      (const :tag "Deadlines in TODO entries become due-dates"
-		     todo-due)))
-
-(defcustom org-icalendar-use-scheduled '(todo-start)
-  "Contexts where iCalendar export should use a scheduling time stamp.
-
-This is a list with possibly several symbols in it.  Valid symbols are:
-
-`event-if-todo'       Scheduling time stamps in TODO entries become an event.
-`event-if-not-todo'   Scheduling time stamps in non-TODO entries become an event.
-`todo-start'          Scheduling time stamps in TODO entries become start date.
-                      Some calendar applications show TODO entries only after
-                      that date."
-  :group 'org-export-icalendar
-  :type '(set :greedy t
-	      (const :tag
-		     "SCHEDULED timestamps in non-TODO entries become events"
-		     event-if-not-todo)
-	      (const :tag "SCHEDULED timestamps in TODO entries become events"
-		     event-if-todo)
-	      (const :tag "SCHEDULED in TODO entries become start date"
-		     todo-start)))
-
-(defcustom org-icalendar-categories '(local-tags category)
-  "Items that should be entered into the \"categories\" field.
-
-This is a list of symbols, the following are valid:
-`category'    The Org mode category of the current file or tree
-`todo-state'  The todo state, if any
-`local-tags'  The tags, defined in the current line
-`all-tags'    All tags, including inherited ones."
-  :group 'org-export-icalendar
-  :type '(repeat
-	  (choice
-	   (const :tag "The file or tree category" category)
-	   (const :tag "The TODO state" todo-state)
-	   (const :tag "Tags defined in current line" local-tags)
-	   (const :tag "All tags, including inherited ones" all-tags))))
-
-(defcustom org-icalendar-with-timestamps 'active
-  "Non-nil means make an event from plain time stamps.
-
-It can be set to `active', `inactive', t or nil, in order to make
-an event from, respectively, only active timestamps, only
-inactive ones, all of them or none.
-
-This variable has precedence over `org-export-with-timestamps'.
-It can also be set with the #+OPTIONS line, e.g. \"<:t\"."
-  :group 'org-export-icalendar
-  :type '(choice
-	  (const :tag "All timestamps" t)
-	  (const :tag "Only active timestamps" active)
-	  (const :tag "Only inactive timestamps" inactive)
-	  (const :tag "No timestamp" nil)))
-
-(defcustom org-icalendar-include-todo nil
-  "Non-nil means create VTODO components from TODO items.
-
-Valid values are:
-nil                  don't include any task.
-t                    include tasks that are not in DONE state.
-`unblocked'          include all TODO items that are not blocked.
-`all'                include both done and not done items."
-  :group 'org-export-icalendar
-  :type '(choice
-	  (const :tag "None" nil)
-	  (const :tag "Unfinished" t)
-	  (const :tag "Unblocked" unblocked)
-	  (const :tag "All" all)
-	  (repeat :tag "Specific TODO keywords"
-		  (string :tag "Keyword"))))
-
-(defcustom org-icalendar-include-bbdb-anniversaries nil
-  "Non-nil means a combined iCalendar file should include anniversaries.
-The anniversaries are defined in the BBDB database."
-  :group 'org-export-icalendar
-  :type 'boolean)
-
-(defcustom org-icalendar-include-sexps t
-  "Non-nil means export to iCalendar files should also cover sexp entries.
-These are entries like in the diary, but directly in an Org file."
-  :group 'org-export-icalendar
-  :type 'boolean)
-
-(defcustom org-icalendar-include-body t
-  "Amount of text below headline to be included in iCalendar export.
-This is a number of characters that should maximally be included.
-Properties, scheduling and clocking lines will always be removed.
-The text will be inserted into the DESCRIPTION field."
-  :group 'org-export-icalendar
-  :type '(choice
-	  (const :tag "Nothing" nil)
-	  (const :tag "Everything" t)
-	  (integer :tag "Max characters")))
-
-(defcustom org-icalendar-store-UID nil
-  "Non-nil means store any created UIDs in properties.
-
-The iCalendar standard requires that all entries have a unique identifier.
-Org will create these identifiers as needed.  When this variable is non-nil,
-the created UIDs will be stored in the ID property of the entry.  Then the
-next time this entry is exported, it will be exported with the same UID,
-superseding the previous form of it.  This is essential for
-synchronization services.
-
-This variable is not turned on by default because we want to avoid creating
-a property drawer in every entry if people are only playing with this feature,
-or if they are only using it locally."
-  :group 'org-export-icalendar
-  :type 'boolean)
-
-(defcustom org-icalendar-timezone (getenv "TZ")
-  "The time zone string for iCalendar export.
-When nil or the empty string, use output
-from (current-time-zone)."
-  :group 'org-export-icalendar
-  :type '(choice
-	  (const :tag "Unspecified" nil)
-	  (string :tag "Time zone")))
-
-(defcustom org-icalendar-date-time-format ":%Y%m%dT%H%M%S"
-  "Format-string for exporting icalendar DATE-TIME.
-
-See `format-time-string' for a full documentation.  The only
-difference is that `org-icalendar-timezone' is used for %Z.
-
-Interesting value are:
- - \":%Y%m%dT%H%M%S\" for local time
- - \";TZID=%Z:%Y%m%dT%H%M%S\" for local time with explicit timezone
- - \":%Y%m%dT%H%M%SZ\" for time expressed in Universal Time"
-  :group 'org-export-icalendar
-  :version "24.1"
-  :type '(choice
-	  (const :tag "Local time" ":%Y%m%dT%H%M%S")
-	  (const :tag "Explicit local time" ";TZID=%Z:%Y%m%dT%H%M%S")
-	  (const :tag "Universal time" ":%Y%m%dT%H%M%SZ")
-	  (string :tag "Explicit format")))
-
-(defvar org-icalendar-after-save-hook nil
-  "Hook run after an iCalendar file has been saved.
-This hook is run with the name of the file as argument.  A good
-way to use this is to tell a desktop calendar application to
-re-read the iCalendar file.")
-
-
-
-;;; Define Back-End
-
-(org-export-define-derived-backend 'icalendar 'ascii
-  :translate-alist '((clock . ignore)
-		     (footnote-definition . ignore)
-		     (footnote-reference . ignore)
-		     (headline . org-icalendar-entry)
-		     (inlinetask . ignore)
-		     (planning . ignore)
-		     (section . ignore)
-		     (inner-template . (lambda (c i) c))
-		     (template . org-icalendar-template))
-  :options-alist
-  '((:exclude-tags
-     "ICALENDAR_EXCLUDE_TAGS" nil org-icalendar-exclude-tags split)
-    (:with-timestamps nil "<" org-icalendar-with-timestamps)
-    ;; Other variables.
-    (:icalendar-alarm-time nil nil org-icalendar-alarm-time)
-    (:icalendar-categories nil nil org-icalendar-categories)
-    (:icalendar-date-time-format nil nil org-icalendar-date-time-format)
-    (:icalendar-include-bbdb-anniversaries nil nil org-icalendar-include-bbdb-anniversaries)
-    (:icalendar-include-body nil nil org-icalendar-include-body)
-    (:icalendar-include-sexps nil nil org-icalendar-include-sexps)
-    (:icalendar-include-todo nil nil org-icalendar-include-todo)
-    (:icalendar-store-UID nil nil org-icalendar-store-UID)
-    (:icalendar-timezone nil nil org-icalendar-timezone)
-    (:icalendar-use-deadline nil nil org-icalendar-use-deadline)
-    (:icalendar-use-scheduled nil nil org-icalendar-use-scheduled))
-  :filters-alist
-  '((:filter-headline . org-icalendar-clear-blank-lines))
-  :menu-entry
-  '(?c "Export to iCalendar"
-       ((?f "Current file" org-icalendar-export-to-ics)
-	(?a "All agenda files"
-	    (lambda (a s v b) (org-icalendar-export-agenda-files a)))
-	(?c "Combine all agenda files"
-	    (lambda (a s v b) (org-icalendar-combine-agenda-files a))))))
-
-
-
-;;; Internal Functions
-
-(defun org-icalendar-create-uid (file &optional bell)
-  "Set ID property on headlines missing it in FILE.
-When optional argument BELL is non-nil, inform the user with
-a message if the file was modified."
-  (let (modified-flag)
-    (org-map-entries
-     (lambda ()
-       (let ((entry (org-element-at-point)))
-	 (unless (org-element-property :ID entry)
-	   (org-id-get-create)
-	   (setq modified-flag t)
-	   (forward-line))))
-     nil nil 'comment)
-    (when (and bell modified-flag)
-      (message "ID properties created in file \"%s\"" file)
-      (sit-for 2))))
-
-(defun org-icalendar-blocked-headline-p (headline info)
-  "Non-nil when HEADLINE is considered to be blocked.
-
-INFO is a plist used as a communication channel.
-
-A headline is blocked when either
-
-  - it has children which are not all in a completed state;
-
-  - it has a parent with the property :ORDERED:, and there are
-    siblings prior to it with incomplete status;
-
-  - its parent is blocked because it has siblings that should be
-    done first or is a child of a blocked grandparent entry."
-  (or
-   ;; Check if any child is not done.
-   (org-element-map headline 'headline
-     (lambda (hl) (eq (org-element-property :todo-type hl) 'todo))
-     info 'first-match)
-   ;; Check :ORDERED: node property.
-   (catch 'blockedp
-     (let ((current headline))
-       (dolist (parent (org-element-lineage headline))
-	 (cond
-	  ((not (org-element-property :todo-keyword parent))
-	   (throw 'blockedp nil))
-	  ((org-not-nil (org-element-property :ORDERED parent))
-	   (let ((sibling current))
-	     (while (setq sibling (org-export-get-previous-element
-				   sibling info))
-	       (when (eq (org-element-property :todo-type sibling) 'todo)
-		 (throw 'blockedp t)))))
-	  (t (setq current parent))))))))
-
-(defun org-icalendar-use-UTC-date-time-p ()
-  "Non-nil when `org-icalendar-date-time-format' requires UTC time."
-  (char-equal (elt org-icalendar-date-time-format
-		   (1- (length org-icalendar-date-time-format))) ?Z))
-
-(defvar org-agenda-default-appointment-duration) ; From org-agenda.el.
-(defun org-icalendar-convert-timestamp (timestamp keyword &optional end tz)
-  "Convert TIMESTAMP to iCalendar format.
-
-TIMESTAMP is a timestamp object.  KEYWORD is added in front of
-it, in order to make a complete line (e.g. \"DTSTART\").
-
-When optional argument END is non-nil, use end of time range.
-Also increase the hour by two (if time string contains a time),
-or the day by one (if it does not contain a time) when no
-explicit ending time is specified.
-
-When optional argument TZ is non-nil, timezone data time will be
-added to the timestamp.  It can be the string \"UTC\", to use UTC
-time, or a string in the IANA TZ database
-format (e.g. \"Europe/London\").  In either case, the value of
-`org-icalendar-date-time-format' will be ignored."
-  (let* ((year-start (org-element-property :year-start timestamp))
-	 (year-end (org-element-property :year-end timestamp))
-	 (month-start (org-element-property :month-start timestamp))
-	 (month-end (org-element-property :month-end timestamp))
-	 (day-start (org-element-property :day-start timestamp))
-	 (day-end (org-element-property :day-end timestamp))
-	 (hour-start (org-element-property :hour-start timestamp))
-	 (hour-end (org-element-property :hour-end timestamp))
-	 (minute-start (org-element-property :minute-start timestamp))
-	 (minute-end (org-element-property :minute-end timestamp))
-	 (with-time-p minute-start)
-	 (equal-bounds-p
-	  (equal (list year-start month-start day-start hour-start minute-start)
-		 (list year-end month-end day-end hour-end minute-end)))
-	 (mi (cond ((not with-time-p) 0)
-		   ((not end) minute-start)
-		   ((and org-agenda-default-appointment-duration equal-bounds-p)
-		    (+ minute-end org-agenda-default-appointment-duration))
-		   (t minute-end)))
-	 (h (cond ((not with-time-p) 0)
-		  ((not end) hour-start)
-		  ((or (not equal-bounds-p)
-		       org-agenda-default-appointment-duration)
-		   hour-end)
-		  (t (+ hour-end 2))))
-	 (d (cond ((not end) day-start)
-		  ((not with-time-p) (1+ day-end))
-		  (t day-end)))
-	 (m (if end month-end month-start))
-	 (y (if end year-end year-start)))
-    (concat
-     keyword
-     (format-time-string
-      (cond ((string-equal tz "UTC") ":%Y%m%dT%H%M%SZ")
-	    ((not with-time-p) ";VALUE=DATE:%Y%m%d")
-	    ((stringp tz) (concat ";TZID=" tz ":%Y%m%dT%H%M%S"))
-	    (t (replace-regexp-in-string "%Z"
-					 org-icalendar-timezone
-					 org-icalendar-date-time-format
-					 t)))
-      ;; Convert timestamp into internal time in order to use
-      ;; `format-time-string' and fix any mistake (i.e. MI >= 60).
-      (encode-time 0 mi h d m y)
-      (and (or (string-equal tz "UTC")
-	       (and (null tz)
-		    with-time-p
-		    (org-icalendar-use-UTC-date-time-p)))
-	   t)))))
-
-(defun org-icalendar-dtstamp ()
-  "Return DTSTAMP property, as a string."
-  (format-time-string "DTSTAMP:%Y%m%dT%H%M%SZ" nil t))
-
-(defun org-icalendar-get-categories (entry info)
-  "Return categories according to `org-icalendar-categories'.
-ENTRY is a headline or an inlinetask element.  INFO is a plist
-used as a communication channel."
-  (mapconcat
-   #'identity
-   (org-uniquify
-    (let (categories)
-      (dolist (type org-icalendar-categories (nreverse categories))
-	(cl-case type
-	  (category
-	   (push (org-export-get-category entry info) categories))
-	  (todo-state
-	   (let ((todo (org-element-property :todo-keyword entry)))
-	     (and todo (push todo categories))))
-	  (local-tags
-	   (setq categories
-		 (append (nreverse (org-export-get-tags entry info))
-			 categories)))
-	  (all-tags
-	   (setq categories
-		 (append (nreverse (org-export-get-tags entry info nil t))
-			 categories)))))))
-   ","))
-
-(defun org-icalendar-transcode-diary-sexp (sexp uid summary)
-  "Transcode a diary sexp into iCalendar format.
-SEXP is the diary sexp being transcoded, as a string.  UID is the
-unique identifier for the entry.  SUMMARY defines a short summary
-or subject for the event."
-  (when (require 'icalendar nil t)
-    (org-element-normalize-string
-     (with-temp-buffer
-       (let ((sexp (if (not (string-match "\\`<%%" sexp)) sexp
-		     (concat (substring sexp 1 -1) " " summary))))
-	 (put-text-property 0 1 'uid uid sexp)
-	 (insert sexp "\n"))
-       (org-diary-to-ical-string (current-buffer))))))
-
-(defun org-icalendar-cleanup-string (s)
-  "Cleanup string S according to RFC 5545."
-  (when s
-    ;; Protect "\", "," and ";" characters. and replace newline
-    ;; characters with literal \n.
-    (replace-regexp-in-string
-     "[ \t]*\n" "\\n"
-     (replace-regexp-in-string "[\\,;]" "\\\\\\&" s)
-     nil t)))
-
-(defun org-icalendar-fold-string (s)
-  "Fold string S according to RFC 5545."
-  (org-element-normalize-string
-   (mapconcat
-    (lambda (line)
-      ;; Limit each line to a maximum of 75 characters.  If it is
-      ;; longer, fold it by using "\r\n " as a continuation marker.
-      (let ((len (length line)))
-	(if (<= len 75) line
-	  (let ((folded-line (substring line 0 75))
-		(chunk-start 75)
-		chunk-end)
-	    ;; Since continuation marker takes up one character on the
-	    ;; line, real contents must be split at 74 chars.
-	    (while (< (setq chunk-end (+ chunk-start 74)) len)
-	      (setq folded-line
-		    (concat folded-line "\r\n "
-			    (substring line chunk-start chunk-end))
-		    chunk-start chunk-end))
-	    (concat folded-line "\r\n " (substring line chunk-start))))))
-    (org-split-string s "\n") "\r\n")))
-
-
-
-;;; Filters
-
-(defun org-icalendar-clear-blank-lines (headline _back-end _info)
-  "Remove blank lines in HEADLINE export.
-HEADLINE is a string representing a transcoded headline.
-BACK-END and INFO are ignored."
-  (replace-regexp-in-string "^\\(?:[ \t]*\n\\)+" "" headline))
-
-
-
-;;; Transcode Functions
-
-;;;; Headline and Inlinetasks
-
-;; The main function is `org-icalendar-entry', which extracts
-;; information from a headline or an inlinetask (summary,
-;; description...) and then delegates code generation to
-;; `org-icalendar--vtodo' and `org-icalendar--vevent', depending
-;; on the component needed.
-
-;; Obviously, `org-icalendar--valarm' handles alarms, which can
-;; happen within a VTODO component.
-
-(defun org-icalendar-entry (entry contents info)
-  "Transcode ENTRY element into iCalendar format.
-
-ENTRY is either a headline or an inlinetask.  CONTENTS is
-ignored.  INFO is a plist used as a communication channel.
-
-This function is called on every headline, the section below
-it (minus inlinetasks) being its contents.  It tries to create
-VEVENT and VTODO components out of scheduled date, deadline date,
-plain timestamps, diary sexps.  It also calls itself on every
-inlinetask within the section."
-  (unless (org-element-property :footnote-section-p entry)
-    (let* ((type (org-element-type entry))
-	   ;; Determine contents really associated to the entry.  For
-	   ;; a headline, limit them to section, if any.  For an
-	   ;; inlinetask, this is every element within the task.
-	   (inside
-	    (if (eq type 'inlinetask)
-		(cons 'org-data (cons nil (org-element-contents entry)))
-	      (let ((first (car (org-element-contents entry))))
-		(and (eq (org-element-type first) 'section)
-		     (cons 'org-data
-			   (cons nil (org-element-contents first))))))))
-      (concat
-       (let ((todo-type (org-element-property :todo-type entry))
-	     (uid (or (org-element-property :ID entry) (org-id-new)))
-	     (summary (org-icalendar-cleanup-string
-		       (or (org-element-property :SUMMARY entry)
-			   (org-export-data
-			    (org-element-property :title entry) info))))
-	     (loc (org-icalendar-cleanup-string
-		   (org-export-get-node-property
-		    :LOCATION entry
-		    (org-property-inherit-p "LOCATION"))))
-	     ;; Build description of the entry from associated section
-	     ;; (headline) or contents (inlinetask).
-	     (desc
-	      (org-icalendar-cleanup-string
-	       (or (org-element-property :DESCRIPTION entry)
-		   (let ((contents (org-export-data inside info)))
-		     (cond
-		      ((not (org-string-nw-p contents)) nil)
-		      ((wholenump org-icalendar-include-body)
-		       (let ((contents (org-trim contents)))
-			 (substring
-			  contents 0 (min (length contents)
-					  org-icalendar-include-body))))
-		      (org-icalendar-include-body (org-trim contents)))))))
-	     (cat (org-icalendar-get-categories entry info))
-	     (tz (org-export-get-node-property
-		  :TIMEZONE entry
-		  (org-property-inherit-p "TIMEZONE"))))
-	 (concat
-	  ;; Events: Delegate to `org-icalendar--vevent' to generate
-	  ;; "VEVENT" component from scheduled, deadline, or any
-	  ;; timestamp in the entry.
-	  (let ((deadline (org-element-property :deadline entry)))
-	    (and deadline
-		 (memq (if todo-type 'event-if-todo 'event-if-not-todo)
-		       org-icalendar-use-deadline)
-		 (org-icalendar--vevent
-		  entry deadline (concat "DL-" uid)
-		  (concat "DL: " summary) loc desc cat tz)))
-	  (let ((scheduled (org-element-property :scheduled entry)))
-	    (and scheduled
-		 (memq (if todo-type 'event-if-todo 'event-if-not-todo)
-		       org-icalendar-use-scheduled)
-		 (org-icalendar--vevent
-		  entry scheduled (concat "SC-" uid)
-		  (concat "S: " summary) loc desc cat tz)))
-	  ;; When collecting plain timestamps from a headline and its
-	  ;; title, skip inlinetasks since collection will happen once
-	  ;; ENTRY is one of them.
-	  (let ((counter 0))
-	    (mapconcat
-	     #'identity
-	     (org-element-map (cons (org-element-property :title entry)
-				    (org-element-contents inside))
-		 'timestamp
-	       (lambda (ts)
-		 (when (let ((type (org-element-property :type ts)))
-			 (cl-case (plist-get info :with-timestamps)
-			   (active (memq type '(active active-range)))
-			   (inactive (memq type '(inactive inactive-range)))
-			   ((t) t)))
-		   (let ((uid (format "TS%d-%s" (cl-incf counter) uid)))
-		     (org-icalendar--vevent
-		      entry ts uid summary loc desc cat tz))))
-	       info nil (and (eq type 'headline) 'inlinetask))
-	     ""))
-	  ;; Task: First check if it is appropriate to export it.  If
-	  ;; so, call `org-icalendar--vtodo' to transcode it into
-	  ;; a "VTODO" component.
-	  (when (and todo-type
-		     (cl-case (plist-get info :icalendar-include-todo)
-		       (all t)
-		       (unblocked
-			(and (eq type 'headline)
-			     (not (org-icalendar-blocked-headline-p
-				   entry info))))
-		       ((t) (eq todo-type 'todo))))
-	    (org-icalendar--vtodo entry uid summary loc desc cat tz))
-	  ;; Diary-sexp: Collect every diary-sexp element within ENTRY
-	  ;; and its title, and transcode them.  If ENTRY is
-	  ;; a headline, skip inlinetasks: they will be handled
-	  ;; separately.
-	  (when org-icalendar-include-sexps
-	    (let ((counter 0))
-	      (mapconcat #'identity
-			 (org-element-map
-			     (cons (org-element-property :title entry)
-				   (org-element-contents inside))
-			     'diary-sexp
-			   (lambda (sexp)
-			     (org-icalendar-transcode-diary-sexp
-			      (org-element-property :value sexp)
-			      (format "DS%d-%s" (cl-incf counter) uid)
-			      summary))
-			   info nil (and (eq type 'headline) 'inlinetask))
-			 "")))))
-       ;; If ENTRY is a headline, call current function on every
-       ;; inlinetask within it.  In agenda export, this is independent
-       ;; from the mark (or lack thereof) on the entry.
-       (when (eq type 'headline)
-	 (mapconcat #'identity
-		    (org-element-map inside 'inlinetask
-		      (lambda (task) (org-icalendar-entry task nil info))
-		      info) ""))
-       ;; Don't forget components from inner entries.
-       contents))))
-
-(defun org-icalendar--vevent
-    (entry timestamp uid summary location description categories timezone)
-  "Create a VEVENT component.
-
-ENTRY is either a headline or an inlinetask element.  TIMESTAMP
-is a timestamp object defining the date-time of the event.  UID
-is the unique identifier for the event.  SUMMARY defines a short
-summary or subject for the event.  LOCATION defines the intended
-venue for the event.  DESCRIPTION provides the complete
-description of the event.  CATEGORIES defines the categories the
-event belongs to.  TIMEZONE specifies a time zone for this event
-only.
-
-Return VEVENT component as a string."
-  (org-icalendar-fold-string
-   (if (eq (org-element-property :type timestamp) 'diary)
-       (org-icalendar-transcode-diary-sexp
-	(org-element-property :raw-value timestamp) uid summary)
-     (concat "BEGIN:VEVENT\n"
-	     (org-icalendar-dtstamp) "\n"
-	     "UID:" uid "\n"
-	     (org-icalendar-convert-timestamp timestamp "DTSTART" nil timezone) "\n"
-	     (org-icalendar-convert-timestamp timestamp "DTEND" t timezone) "\n"
-	     ;; RRULE.
-	     (when (org-element-property :repeater-type timestamp)
-	       (format "RRULE:FREQ=%s;INTERVAL=%d\n"
-		       (cl-case (org-element-property :repeater-unit timestamp)
-			 (hour "HOURLY") (day "DAILY") (week "WEEKLY")
-			 (month "MONTHLY") (year "YEARLY"))
-		       (org-element-property :repeater-value timestamp)))
-	     "SUMMARY:" summary "\n"
-	     (and (org-string-nw-p location) (format "LOCATION:%s\n" location))
-	     (and (org-string-nw-p description)
-		  (format "DESCRIPTION:%s\n" description))
-	     "CATEGORIES:" categories "\n"
-	     ;; VALARM.
-	     (org-icalendar--valarm entry timestamp summary)
-	     "END:VEVENT"))))
-
-(defun org-icalendar--vtodo
-  (entry uid summary location description categories timezone)
-  "Create a VTODO component.
-
-ENTRY is either a headline or an inlinetask element.  UID is the
-unique identifier for the task.  SUMMARY defines a short summary
-or subject for the task.  LOCATION defines the intended venue for
-the task.  DESCRIPTION provides the complete description of the
-task.  CATEGORIES defines the categories the task belongs to.
-TIMEZONE specifies a time zone for this TODO only.
-
-Return VTODO component as a string."
-  (let ((start (or (and (memq 'todo-start org-icalendar-use-scheduled)
-			(org-element-property :scheduled entry))
-		   ;; If we can't use a scheduled time for some
-		   ;; reason, start task now.
-		   (let ((now (decode-time)))
-		     (list 'timestamp
-			   (list :type 'active
-				 :minute-start (nth 1 now)
-				 :hour-start (nth 2 now)
-				 :day-start (nth 3 now)
-				 :month-start (nth 4 now)
-				 :year-start (nth 5 now)))))))
-    (org-icalendar-fold-string
-     (concat "BEGIN:VTODO\n"
-	     "UID:TODO-" uid "\n"
-	     (org-icalendar-dtstamp) "\n"
-	     (org-icalendar-convert-timestamp start "DTSTART" nil timezone) "\n"
-	     (and (memq 'todo-due org-icalendar-use-deadline)
-		  (org-element-property :deadline entry)
-		  (concat (org-icalendar-convert-timestamp
-			   (org-element-property :deadline entry) "DUE" nil timezone)
-			  "\n"))
-	     "SUMMARY:" summary "\n"
-	     (and (org-string-nw-p location) (format "LOCATION:%s\n" location))
-	     (and (org-string-nw-p description)
-		  (format "DESCRIPTION:%s\n" description))
-	     "CATEGORIES:" categories "\n"
-	     "SEQUENCE:1\n"
-	     (format "PRIORITY:%d\n"
-		     (let ((pri (or (org-element-property :priority entry)
-				    org-default-priority)))
-		       (floor (- 9 (* 8. (/ (float (- org-lowest-priority pri))
-					    (- org-lowest-priority
-					       org-highest-priority)))))))
-	     (format "STATUS:%s\n"
-		     (if (eq (org-element-property :todo-type entry) 'todo)
-			 "NEEDS-ACTION"
-		       "COMPLETED"))
-	     "END:VTODO"))))
-
-(defun org-icalendar--valarm (entry timestamp summary)
-  "Create a VALARM component.
-
-ENTRY is the calendar entry triggering the alarm.  TIMESTAMP is
-the start date-time of the entry.  SUMMARY defines a short
-summary or subject for the task.
-
-Return VALARM component as a string, or nil if it isn't allowed."
-  ;; Create a VALARM entry if the entry is timed.  This is not very
-  ;; general in that:
-  ;; (a) only one alarm per entry is defined,
-  ;; (b) only minutes are allowed for the trigger period ahead of the
-  ;;     start time,
-  ;; (c) only a DISPLAY action is defined.                       [ESF]
-  (let ((alarm-time
-	 (let ((warntime
-		(org-element-property :APPT_WARNTIME entry)))
-	   (if warntime (string-to-number warntime) 0))))
-    (and (or (> alarm-time 0) (> org-icalendar-alarm-time 0))
-	 (org-element-property :hour-start timestamp)
-	 (format "BEGIN:VALARM
-ACTION:DISPLAY
-DESCRIPTION:%s
-TRIGGER:-P0DT0H%dM0S
-END:VALARM\n"
-		 summary
-		 (if (zerop alarm-time) org-icalendar-alarm-time alarm-time)))))
-
-
-;;;; Template
-
-(defun org-icalendar-template (contents info)
-  "Return complete document string after iCalendar conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist used
-as a communication channel."
-  (org-icalendar--vcalendar
-   ;; Name.
-   (if (not (plist-get info :input-file)) (buffer-name (buffer-base-buffer))
-     (file-name-nondirectory
-      (file-name-sans-extension (plist-get info :input-file))))
-   ;; Owner.
-   (if (not (plist-get info :with-author)) ""
-     (org-export-data (plist-get info :author) info))
-   ;; Timezone.
-   (if (org-string-nw-p org-icalendar-timezone) org-icalendar-timezone
-     (cadr (current-time-zone)))
-   ;; Description.
-   (org-export-data (plist-get info :title) info)
-   contents))
-
-(defun org-icalendar--vcalendar (name owner tz description contents)
-  "Create a VCALENDAR component.
-NAME, OWNER, TZ, DESCRIPTION and CONTENTS are all strings giving,
-respectively, the name of the calendar, its owner, the timezone
-used, a short description and the other components included."
-  (concat (format "BEGIN:VCALENDAR
-VERSION:2.0
-X-WR-CALNAME:%s
-PRODID:-//%s//Emacs with Org mode//EN
-X-WR-TIMEZONE:%s
-X-WR-CALDESC:%s
-CALSCALE:GREGORIAN\n"
-		  (org-icalendar-cleanup-string name)
-		  (org-icalendar-cleanup-string owner)
-		  (org-icalendar-cleanup-string tz)
-		  (org-icalendar-cleanup-string description))
-	  contents
-	  "END:VCALENDAR\n"))
-
-
-
-;;; Interactive Functions
-
-;;;###autoload
-(defun org-icalendar-export-to-ics
-  (&optional async subtreep visible-only body-only)
-  "Export current buffer to an iCalendar file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"BEGIN:VCALENDAR\" and \"END:VCALENDAR\".
-
-Return ICS file name."
-  (interactive)
-  (let ((file (buffer-file-name (buffer-base-buffer))))
-    (when (and file org-icalendar-store-UID)
-      (org-icalendar-create-uid file 'warn-user)))
-  ;; Export part.  Since this back-end is backed up by `ascii', ensure
-  ;; links will not be collected at the end of sections.
-  (let ((outfile (org-export-output-file-name ".ics" subtreep)))
-    (org-export-to-file 'icalendar outfile
-      async subtreep visible-only body-only
-      '(:ascii-charset utf-8 :ascii-links-to-notes nil)
-      (lambda (file)
-	(run-hook-with-args 'org-icalendar-after-save-hook file) nil))))
-
-;;;###autoload
-(defun org-icalendar-export-agenda-files (&optional async)
-  "Export all agenda files to iCalendar files.
-When optional argument ASYNC is non-nil, export happens in an
-external process."
-  (interactive)
-  (if async
-      ;; Asynchronous export is not interactive, so we will not call
-      ;; `org-check-agenda-file'.  Instead we remove any non-existent
-      ;; agenda file from the list.
-      (let ((files (cl-remove-if-not #'file-exists-p (org-agenda-files t))))
-	(org-export-async-start
-	    (lambda (results)
-	      (dolist (f results) (org-export-add-to-stack f 'icalendar)))
-	  `(let (output-files)
-	     (dolist (file ',files outputfiles)
-	       (with-current-buffer (org-get-agenda-file-buffer file)
-		 (push (expand-file-name (org-icalendar-export-to-ics))
-		       output-files))))))
-    (let ((files (org-agenda-files t)))
-      (org-agenda-prepare-buffers files)
-      (unwind-protect
-	  (dolist (file files)
-	    (catch 'nextfile
-	      (org-check-agenda-file file)
-	      (with-current-buffer (org-get-agenda-file-buffer file)
-		(org-icalendar-export-to-ics))))
-	(org-release-buffers org-agenda-new-buffers)))))
-
-;;;###autoload
-(defun org-icalendar-combine-agenda-files (&optional async)
-  "Combine all agenda files into a single iCalendar file.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-The file is stored under the name chosen in
-`org-icalendar-combined-agenda-file'."
-  (interactive)
-  (if async
-      (let ((files (cl-remove-if-not #'file-exists-p (org-agenda-files t))))
-	(org-export-async-start
-	    (lambda (_)
-	      (org-export-add-to-stack
-	       (expand-file-name org-icalendar-combined-agenda-file)
-	       'icalendar))
-	  `(apply #'org-icalendar--combine-files ',files)))
-    (apply #'org-icalendar--combine-files (org-agenda-files t))))
-
-(defun org-icalendar-export-current-agenda (file)
-  "Export current agenda view to an iCalendar FILE.
-This function assumes major mode for current buffer is
-`org-agenda-mode'."
-  (let* ((org-export-use-babel)		;don't evaluate Babel blocks
-	 (contents
-	  (org-export-string-as
-	   (with-output-to-string
-	     (save-excursion
-	       (let ((p (point-min))
-		     (seen nil))	;prevent duplicates
-		 (while (setq p (next-single-property-change p 'org-hd-marker))
-		   (let ((m (get-text-property p 'org-hd-marker)))
-		     (when (and m (not (member m seen)))
-		       (push m seen)
-		       (with-current-buffer (marker-buffer m)
-			 (org-with-wide-buffer
-			  (goto-char (marker-position m))
-			  (princ
-			   (org-element-normalize-string
-			    (buffer-substring (point)
-					      (org-entry-end-position))))))))
-		   (forward-line)))))
-	   'icalendar t
-	   '(:ascii-charset utf-8 :ascii-links-to-notes nil
-			    :icalendar-include-todo all))))
-    (with-temp-file file
-      (insert
-       (org-icalendar--vcalendar
-	org-icalendar-combined-name
-	user-full-name
-	(or (org-string-nw-p org-icalendar-timezone) (cadr (current-time-zone)))
-	org-icalendar-combined-description
-	contents)))
-    (run-hook-with-args 'org-icalendar-after-save-hook file)))
-
-(defun org-icalendar--combine-files (&rest files)
-  "Combine entries from multiple files into an iCalendar file.
-FILES is a list of files to build the calendar from."
-  ;; At the end of the process, all buffers related to FILES are going
-  ;; to be killed.  Make sure to only kill the ones opened in the
-  ;; process.
-  (let ((org-agenda-new-buffers nil))
-    (unwind-protect
-	(progn
-	  (with-temp-file org-icalendar-combined-agenda-file
-	    (insert
-	     (org-icalendar--vcalendar
-	      ;; Name.
-	      org-icalendar-combined-name
-	      ;; Owner.
-	      user-full-name
-	      ;; Timezone.
-	      (or (org-string-nw-p org-icalendar-timezone)
-		  (cadr (current-time-zone)))
-	      ;; Description.
-	      org-icalendar-combined-description
-	      ;; Contents.
-	      (concat
-	       ;; Agenda contents.
-	       (mapconcat
-		(lambda (file)
-		  (catch 'nextfile
-		    (org-check-agenda-file file)
-		    (with-current-buffer (org-get-agenda-file-buffer file)
-		      ;; Create ID if necessary.
-		      (when org-icalendar-store-UID
-			(org-icalendar-create-uid file t))
-		      (org-export-as
-		       'icalendar nil nil t
-		       '(:ascii-charset utf-8 :ascii-links-to-notes nil)))))
-		files "")
-	       ;; BBDB anniversaries.
-	       (when (and org-icalendar-include-bbdb-anniversaries
-			  (require 'org-bbdb nil t))
-		 (with-output-to-string (org-bbdb-anniv-export-ical)))))))
-	  (run-hook-with-args 'org-icalendar-after-save-hook
-			      org-icalendar-combined-agenda-file))
-      (org-release-buffers org-agenda-new-buffers))))
-
-
-(provide 'ox-icalendar)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-icalendar.el ends here
diff --git a/elpa/org-9.1.14/ox-icalendar.elc b/elpa/org-9.1.14/ox-icalendar.elc
deleted file mode 100644
index 9dd328f..0000000
--- a/elpa/org-9.1.14/ox-icalendar.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-latex.el b/elpa/org-9.1.14/ox-latex.el
deleted file mode 100644
index 5aaaf99..0000000
--- a/elpa/org-9.1.14/ox-latex.el
+++ /dev/null
@@ -1,3756 +0,0 @@
-;;; ox-latex.el --- LaTeX Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; See Org manual for details.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'ox)
-(require 'ox-publish)
-
-(defvar org-latex-default-packages-alist)
-(defvar org-latex-packages-alist)
-(defvar orgtbl-exp-regexp)
-
-
-
-;;; Define Back-End
-
-(org-export-define-backend 'latex
-  '((bold . org-latex-bold)
-    (center-block . org-latex-center-block)
-    (clock . org-latex-clock)
-    (code . org-latex-code)
-    (drawer . org-latex-drawer)
-    (dynamic-block . org-latex-dynamic-block)
-    (entity . org-latex-entity)
-    (example-block . org-latex-example-block)
-    (export-block . org-latex-export-block)
-    (export-snippet . org-latex-export-snippet)
-    (fixed-width . org-latex-fixed-width)
-    (footnote-definition . org-latex-footnote-definition)
-    (footnote-reference . org-latex-footnote-reference)
-    (headline . org-latex-headline)
-    (horizontal-rule . org-latex-horizontal-rule)
-    (inline-src-block . org-latex-inline-src-block)
-    (inlinetask . org-latex-inlinetask)
-    (italic . org-latex-italic)
-    (item . org-latex-item)
-    (keyword . org-latex-keyword)
-    (latex-environment . org-latex-latex-environment)
-    (latex-fragment . org-latex-latex-fragment)
-    (line-break . org-latex-line-break)
-    (link . org-latex-link)
-    (node-property . org-latex-node-property)
-    (paragraph . org-latex-paragraph)
-    (plain-list . org-latex-plain-list)
-    (plain-text . org-latex-plain-text)
-    (planning . org-latex-planning)
-    (property-drawer . org-latex-property-drawer)
-    (quote-block . org-latex-quote-block)
-    (radio-target . org-latex-radio-target)
-    (section . org-latex-section)
-    (special-block . org-latex-special-block)
-    (src-block . org-latex-src-block)
-    (statistics-cookie . org-latex-statistics-cookie)
-    (strike-through . org-latex-strike-through)
-    (subscript . org-latex-subscript)
-    (superscript . org-latex-superscript)
-    (table . org-latex-table)
-    (table-cell . org-latex-table-cell)
-    (table-row . org-latex-table-row)
-    (target . org-latex-target)
-    (template . org-latex-template)
-    (timestamp . org-latex-timestamp)
-    (underline . org-latex-underline)
-    (verbatim . org-latex-verbatim)
-    (verse-block . org-latex-verse-block)
-    ;; Pseudo objects and elements.
-    (latex-math-block . org-latex-math-block)
-    (latex-matrices . org-latex-matrices))
-  :menu-entry
-  '(?l "Export to LaTeX"
-       ((?L "As LaTeX buffer" org-latex-export-as-latex)
-	(?l "As LaTeX file" org-latex-export-to-latex)
-	(?p "As PDF file" org-latex-export-to-pdf)
-	(?o "As PDF file and open"
-	    (lambda (a s v b)
-	      (if a (org-latex-export-to-pdf t s v b)
-		(org-open-file (org-latex-export-to-pdf nil s v b)))))))
-  :filters-alist '((:filter-options . org-latex-math-block-options-filter)
-		   (:filter-paragraph . org-latex-clean-invalid-line-breaks)
-		   (:filter-parse-tree org-latex-math-block-tree-filter
-				       org-latex-matrices-tree-filter
-				       org-latex-image-link-filter)
-		   (:filter-verse-block . org-latex-clean-invalid-line-breaks))
-  :options-alist
-  '((:latex-class "LATEX_CLASS" nil org-latex-default-class t)
-    (:latex-class-options "LATEX_CLASS_OPTIONS" nil nil t)
-    (:latex-header "LATEX_HEADER" nil nil newline)
-    (:latex-header-extra "LATEX_HEADER_EXTRA" nil nil newline)
-    (:description "DESCRIPTION" nil nil parse)
-    (:keywords "KEYWORDS" nil nil parse)
-    (:subtitle "SUBTITLE" nil nil parse)
-    ;; Other variables.
-    (:latex-active-timestamp-format nil nil org-latex-active-timestamp-format)
-    (:latex-caption-above nil nil org-latex-caption-above)
-    (:latex-classes nil nil org-latex-classes)
-    (:latex-default-figure-position nil nil org-latex-default-figure-position)
-    (:latex-default-table-environment nil nil org-latex-default-table-environment)
-    (:latex-default-table-mode nil nil org-latex-default-table-mode)
-    (:latex-diary-timestamp-format nil nil org-latex-diary-timestamp-format)
-    (:latex-footnote-defined-format nil nil org-latex-footnote-defined-format)
-    (:latex-footnote-separator nil nil org-latex-footnote-separator)
-    (:latex-format-drawer-function nil nil org-latex-format-drawer-function)
-    (:latex-format-headline-function nil nil org-latex-format-headline-function)
-    (:latex-format-inlinetask-function nil nil org-latex-format-inlinetask-function)
-    (:latex-hyperref-template nil nil org-latex-hyperref-template t)
-    (:latex-image-default-height nil nil org-latex-image-default-height)
-    (:latex-image-default-option nil nil org-latex-image-default-option)
-    (:latex-image-default-width nil nil org-latex-image-default-width)
-    (:latex-images-centered nil nil org-latex-images-centered)
-    (:latex-inactive-timestamp-format nil nil org-latex-inactive-timestamp-format)
-    (:latex-inline-image-rules nil nil org-latex-inline-image-rules)
-    (:latex-link-with-unknown-path-format nil nil org-latex-link-with-unknown-path-format)
-    (:latex-listings nil nil org-latex-listings)
-    (:latex-listings-langs nil nil org-latex-listings-langs)
-    (:latex-listings-options nil nil org-latex-listings-options)
-    (:latex-minted-langs nil nil org-latex-minted-langs)
-    (:latex-minted-options nil nil org-latex-minted-options)
-    (:latex-prefer-user-labels nil nil org-latex-prefer-user-labels)
-    (:latex-subtitle-format nil nil org-latex-subtitle-format)
-    (:latex-subtitle-separate nil nil org-latex-subtitle-separate)
-    (:latex-table-scientific-notation nil nil org-latex-table-scientific-notation)
-    (:latex-tables-booktabs nil nil org-latex-tables-booktabs)
-    (:latex-tables-centered nil nil org-latex-tables-centered)
-    (:latex-text-markup-alist nil nil org-latex-text-markup-alist)
-    (:latex-title-command nil nil org-latex-title-command)
-    (:latex-toc-command nil nil org-latex-toc-command)
-    (:latex-compiler "LATEX_COMPILER" nil org-latex-compiler)
-    ;; Redefine regular options.
-    (:date "DATE" nil "\\today" parse)))
-
-
-
-;;; Internal Variables
-
-(defconst org-latex-babel-language-alist
-  '(("af" . "afrikaans")
-    ("bg" . "bulgarian")
-    ("bt-br" . "brazilian")
-    ("ca" . "catalan")
-    ("cs" . "czech")
-    ("cy" . "welsh")
-    ("da" . "danish")
-    ("de" . "germanb")
-    ("de-at" . "naustrian")
-    ("de-de" . "ngerman")
-    ("el" . "greek")
-    ("en" . "english")
-    ("en-au" . "australian")
-    ("en-ca" . "canadian")
-    ("en-gb" . "british")
-    ("en-ie" . "irish")
-    ("en-nz" . "newzealand")
-    ("en-us" . "american")
-    ("es" . "spanish")
-    ("et" . "estonian")
-    ("eu" . "basque")
-    ("fi" . "finnish")
-    ("fr" . "frenchb")
-    ("fr-ca" . "canadien")
-    ("gl" . "galician")
-    ("hr" . "croatian")
-    ("hu" . "hungarian")
-    ("id" . "indonesian")
-    ("is" . "icelandic")
-    ("it" . "italian")
-    ("la" . "latin")
-    ("ms" . "malay")
-    ("nl" . "dutch")
-    ("nb" . "norsk")
-    ("nn" . "nynorsk")
-    ("no" . "norsk")
-    ("pl" . "polish")
-    ("pt" . "portuguese")
-    ("ro" . "romanian")
-    ("ru" . "russian")
-    ("sa" . "sanskrit")
-    ("sb" . "uppersorbian")
-    ("sk" . "slovak")
-    ("sl" . "slovene")
-    ("sq" . "albanian")
-    ("sr" . "serbian")
-    ("sv" . "swedish")
-    ("ta" . "tamil")
-    ("tr" . "turkish")
-    ("uk" . "ukrainian"))
-  "Alist between language code and corresponding Babel option.")
-
-(defconst org-latex-polyglossia-language-alist
-  '(("am" "amharic")
-    ("ast" "asturian")
-    ("ar" "arabic")
-    ("bo" "tibetan")
-    ("bn" "bengali")
-    ("bg" "bulgarian")
-    ("br" "breton")
-    ("bt-br" "brazilian")
-    ("ca" "catalan")
-    ("cop" "coptic")
-    ("cs" "czech")
-    ("cy" "welsh")
-    ("da" "danish")
-    ("de" "german" "german")
-    ("de-at" "german" "austrian")
-    ("de-de" "german" "german")
-    ("dv" "divehi")
-    ("el" "greek")
-    ("en" "english" "usmax")
-    ("en-au" "english" "australian")
-    ("en-gb" "english" "uk")
-    ("en-nz" "english" "newzealand")
-    ("en-us" "english" "usmax")
-    ("eo" "esperanto")
-    ("es" "spanish")
-    ("et" "estonian")
-    ("eu" "basque")
-    ("fa" "farsi")
-    ("fi" "finnish")
-    ("fr" "french")
-    ("fu" "friulan")
-    ("ga" "irish")
-    ("gd" "scottish")
-    ("gl" "galician")
-    ("he" "hebrew")
-    ("hi" "hindi")
-    ("hr" "croatian")
-    ("hu" "magyar")
-    ("hy" "armenian")
-    ("id" "bahasai")
-    ("ia" "interlingua")
-    ("is" "icelandic")
-    ("it" "italian")
-    ("kn" "kannada")
-    ("la" "latin" "modern")
-    ("la-modern" "latin" "modern")
-    ("la-classic" "latin" "classic")
-    ("la-medieval" "latin" "medieval")
-    ("lo" "lao")
-    ("lt" "lithuanian")
-    ("lv" "latvian")
-    ("mr" "maranthi")
-    ("ml" "malayalam")
-    ("nl" "dutch")
-    ("nb" "norsk")
-    ("nn" "nynorsk")
-    ("nko" "nko")
-    ("no" "norsk")
-    ("oc" "occitan")
-    ("pl" "polish")
-    ("pms" "piedmontese")
-    ("pt" "portuges")
-    ("rm" "romansh")
-    ("ro" "romanian")
-    ("ru" "russian")
-    ("sa" "sanskrit")
-    ("hsb" "usorbian")
-    ("dsb" "lsorbian")
-    ("sk" "slovak")
-    ("sl" "slovenian")
-    ("se" "samin")
-    ("sq" "albanian")
-    ("sr" "serbian")
-    ("sv" "swedish")
-    ("syr" "syriac")
-    ("ta" "tamil")
-    ("te" "telugu")
-    ("th" "thai")
-    ("tk" "turkmen")
-    ("tr" "turkish")
-    ("uk" "ukrainian")
-    ("ur" "urdu")
-    ("vi" "vietnamese"))
-  "Alist between language code and corresponding Polyglossia option")
-
-
-
-(defconst org-latex-table-matrix-macros '(("bordermatrix" . "\\cr")
-					  ("qbordermatrix" . "\\cr")
-					  ("kbordermatrix" . "\\\\"))
-  "Alist between matrix macros and their row ending.")
-
-(defconst org-latex-math-environments-re
-  (format
-   "\\`[ \t]*\\\\begin{%s\\*?}"
-   (regexp-opt
-	   '("equation" "eqnarray" "math" "displaymath"
-	     "align"  "gather" "multline" "flalign"  "alignat"
-	     "xalignat" "xxalignat"
-	     "subequations"
-	     ;; breqn
-	     "dmath" "dseries" "dgroup" "darray"
-	     ;; empheq
-	     "empheq")))
-  "Regexp of LaTeX math environments.")
-
-
-;;; User Configurable Variables
-
-(defgroup org-export-latex nil
-  "Options for exporting Org mode files to LaTeX."
-  :tag "Org Export LaTeX"
-  :group 'org-export)
-
-;;;; Generic
-
-(defcustom org-latex-caption-above '(table)
-  "When non-nil, place caption string at the beginning of elements.
-Otherwise, place it near the end.  When value is a list of
-symbols, put caption above selected elements only.  Allowed
-symbols are: `image', `table', `src-block' and `special-block'."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice
-	  (const :tag "For all elements" t)
-	  (const :tag "For no element" nil)
-	  (set :tag "For the following elements only" :greedy t
-	       (const :tag "Images" image)
-	       (const :tag "Tables" table)
-	       (const :tag "Source code" src-block)
-	       (const :tag "Special blocks" special-block))))
-
-(defcustom org-latex-prefer-user-labels nil
-   "Use user-provided labels instead of internal ones when non-nil.
-
-When this variable is non-nil, Org will use the value of
-CUSTOM_ID property, NAME keyword or Org target as the key for the
-\\label commands generated.
-
-By default, Org generates its own internal labels during LaTeX
-export.  This process ensures that the \\label keys are unique
-and valid, but it means the keys are not available in advance of
-the export process.
-
-Setting this variable gives you control over how Org generates
-labels during LaTeX export, so that you may know their keys in
-advance.  One reason to do this is that it allows you to refer to
-various elements using a single label both in Org's link syntax
-and in embedded LaTeX code.
-
-For example, when this variable is non-nil, a headline like this:
-
-  ** Some section
-     :PROPERTIES:
-     :CUSTOM_ID: sec:foo
-     :END:
-  This is section [[#sec:foo]].
-  #+BEGIN_EXPORT latex
-  And this is still section \\ref{sec:foo}.
-  #+END_EXPORT
-
-will be exported to LaTeX as:
-
-  \\subsection{Some section}
-  \\label{sec:foo}
-  This is section \\ref{sec:foo}.
-  And this is still section \\ref{sec:foo}.
-
-Note, however, that setting this variable introduces a limitation
-on the possible values for CUSTOM_ID and NAME.  When this
-variable is non-nil, Org passes their value to \\label unchanged.
-You are responsible for ensuring that the value is a valid LaTeX
-\\label key, and that no other \\label commands with the same key
-appear elsewhere in your document.  (Keys may contain letters,
-numbers, and the following punctuation: '_' '.'  '-' ':'.)  There
-are no such limitations on CUSTOM_ID and NAME when this variable
-is nil.
-
-For headlines that do not define the CUSTOM_ID property or
-elements without a NAME, Org will continue to use its default
-labeling scheme to generate labels and resolve links into proper
-references."
-  :group 'org-export-latex
-  :type 'boolean
-  :version "26.1"
-  :package-version '(Org . "8.3"))
-
-;;;; Preamble
-
-(defcustom org-latex-default-class "article"
-  "The default LaTeX class."
-  :group 'org-export-latex
-  :type '(string :tag "LaTeX class"))
-
-(defcustom org-latex-classes
-  '(("article"
-     "\\documentclass[11pt]{article}"
-     ("\\section{%s}" . "\\section*{%s}")
-     ("\\subsection{%s}" . "\\subsection*{%s}")
-     ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
-     ("\\paragraph{%s}" . "\\paragraph*{%s}")
-     ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))
-    ("report"
-     "\\documentclass[11pt]{report}"
-     ("\\part{%s}" . "\\part*{%s}")
-     ("\\chapter{%s}" . "\\chapter*{%s}")
-     ("\\section{%s}" . "\\section*{%s}")
-     ("\\subsection{%s}" . "\\subsection*{%s}")
-     ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))
-    ("book"
-     "\\documentclass[11pt]{book}"
-     ("\\part{%s}" . "\\part*{%s}")
-     ("\\chapter{%s}" . "\\chapter*{%s}")
-     ("\\section{%s}" . "\\section*{%s}")
-     ("\\subsection{%s}" . "\\subsection*{%s}")
-     ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))
-  "Alist of LaTeX classes and associated header and structure.
-If #+LATEX_CLASS is set in the buffer, use its value and the
-associated information.  Here is the structure of each cell:
-
-  (class-name
-    header-string
-    (numbered-section . unnumbered-section)
-    ...)
-
-The header string
------------------
-
-The HEADER-STRING is the header that will be inserted into the
-LaTeX file.  It should contain the \\documentclass macro, and
-anything else that is needed for this setup.  To this header, the
-following commands will be added:
-
-- Calls to \\usepackage for all packages mentioned in the
-  variables `org-latex-default-packages-alist' and
-  `org-latex-packages-alist'.  Thus, your header definitions
-  should avoid to also request these packages.
-
-- Lines specified via \"#+LATEX_HEADER:\" and
-  \"#+LATEX_HEADER_EXTRA:\" keywords.
-
-If you need more control about the sequence in which the header
-is built up, or if you want to exclude one of these building
-blocks for a particular class, you can use the following
-macro-like placeholders.
-
- [DEFAULT-PACKAGES]      \\usepackage statements for default packages
- [NO-DEFAULT-PACKAGES]   do not include any of the default packages
- [PACKAGES]              \\usepackage statements for packages
- [NO-PACKAGES]           do not include the packages
- [EXTRA]                 the stuff from #+LATEX_HEADER(_EXTRA)
- [NO-EXTRA]              do not include #+LATEX_HEADER(_EXTRA) stuff
-
-So a header like
-
-  \\documentclass{article}
-  [NO-DEFAULT-PACKAGES]
-  [EXTRA]
-  \\providecommand{\\alert}[1]{\\textbf{#1}}
-  [PACKAGES]
-
-will omit the default packages, and will include the
-#+LATEX_HEADER and #+LATEX_HEADER_EXTRA lines, then have a call
-to \\providecommand, and then place \\usepackage commands based
-on the content of `org-latex-packages-alist'.
-
-If your header, `org-latex-default-packages-alist' or
-`org-latex-packages-alist' inserts \"\\usepackage[AUTO]{inputenc}\",
-AUTO will automatically be replaced with a coding system derived
-from `buffer-file-coding-system'.  See also the variable
-`org-latex-inputenc-alist' for a way to influence this mechanism.
-
-Likewise, if your header contains \"\\usepackage[AUTO]{babel}\"
-or \"\\usepackage[AUTO]{polyglossia}\", AUTO will be replaced
-with the language related to the language code specified by
-`org-export-default-language'.  Note that constructions such as
-\"\\usepackage[french,AUTO,english]{babel}\" are permitted.  For
-Polyglossia the language will be set via the macros
-\"\\setmainlanguage\" and \"\\setotherlanguage\".  See also
-`org-latex-guess-babel-language' and
-`org-latex-guess-polyglossia-language'.
-
-The sectioning structure
-------------------------
-
-The sectioning structure of the class is given by the elements
-following the header string.  For each sectioning level, a number
-of strings is specified.  A %s formatter is mandatory in each
-section string and will be replaced by the title of the section.
-
-Instead of a cons cell (numbered . unnumbered), you can also
-provide a list of 2 or 4 elements,
-
-  (numbered-open numbered-close)
-
-or
-
-  (numbered-open numbered-close unnumbered-open unnumbered-close)
-
-providing opening and closing strings for a LaTeX environment
-that should represent the document section.  The opening clause
-should have a %s to represent the section title.
-
-Instead of a list of sectioning commands, you can also specify
-a function name.  That function will be called with two
-parameters, the (reduced) level of the headline, and a predicate
-non-nil when the headline should be numbered.  It must return
-a format string in which the section title will be added."
-  :group 'org-export-latex
-  :type '(repeat
-	  (list (string :tag "LaTeX class")
-		(string :tag "LaTeX header")
-		(repeat :tag "Levels" :inline t
-			(choice
-			 (cons :tag "Heading"
-			       (string :tag "  numbered")
-			       (string :tag "unnumbered"))
-			 (list :tag "Environment"
-			       (string :tag "Opening   (numbered)")
-			       (string :tag "Closing   (numbered)")
-			       (string :tag "Opening (unnumbered)")
-			       (string :tag "Closing (unnumbered)"))
-			 (function :tag "Hook computing sectioning"))))))
-
-(defcustom org-latex-inputenc-alist nil
-  "Alist of inputenc coding system names, and what should really be used.
-For example, adding an entry
-
-      (\"utf8\" . \"utf8x\")
-
-will cause \\usepackage[utf8x]{inputenc} to be used for buffers that
-are written as utf8 files."
-  :group 'org-export-latex
-  :type '(repeat
-	  (cons
-	   (string :tag "Derived from buffer")
-	   (string :tag "Use this instead"))))
-
-(defcustom org-latex-title-command "\\maketitle"
-  "The command used to insert the title just after \\begin{document}.
-
-This format string may contain these elements:
-
-  %a for AUTHOR keyword
-  %t for TITLE keyword
-  %s for SUBTITLE keyword
-  %k for KEYWORDS line
-  %d for DESCRIPTION line
-  %c for CREATOR line
-  %l for Language keyword
-  %L for capitalized language keyword
-  %D for DATE keyword
-
-If you need to use a \"%\" character, you need to escape it
-like that: \"%%\".
-
-Setting :latex-title-command in publishing projects will take
-precedence over this variable."
-  :group 'org-export-latex
-  :type '(string :tag "Format string"))
-
-(defcustom org-latex-subtitle-format "\\\\\\medskip\n\\large %s"
-  "Format string used for transcoded subtitle.
-The format string should have at most one \"%s\"-expression,
-which is replaced with the subtitle."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(string :tag "Format string"))
-
-(defcustom org-latex-subtitle-separate nil
-  "Non-nil means the subtitle is not typeset as part of title."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'boolean)
-
-(defcustom org-latex-toc-command "\\tableofcontents\n\n"
-  "LaTeX command to set the table of contents, list of figures, etc.
-This command only applies to the table of contents generated with
-the toc:nil option, not to those generated with #+TOC keyword."
-  :group 'org-export-latex
-  :type 'string)
-
-(defcustom org-latex-hyperref-template
-  "\\hypersetup{\n pdfauthor={%a},\n pdftitle={%t},\n pdfkeywords={%k},
- pdfsubject={%d},\n pdfcreator={%c}, \n pdflang={%L}}\n"
-  "Template for hyperref package options.
-
-This format string may contain these elements:
-
-  %a for AUTHOR keyword
-  %t for TITLE keyword
-  %s for SUBTITLE keyword
-  %k for KEYWORDS line
-  %d for DESCRIPTION line
-  %c for CREATOR line
-  %l for Language keyword
-  %L for capitalized language keyword
-  %D for DATE keyword
-
-If you need to use a \"%\" character, you need to escape it
-like that: \"%%\".
-
-As a special case, a nil value prevents template from being
-inserted.
-
-Setting :latex-hyperref-template in publishing projects will take
-precedence over this variable."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice (const :tag "No template" nil)
-		 (string :tag "Format string")))
-
-;;;; Headline
-
-(defcustom org-latex-format-headline-function
-  'org-latex-format-headline-default-function
-  "Function for formatting the headline's text.
-
-This function will be called with six arguments:
-TODO      the todo keyword (string or nil)
-TODO-TYPE the type of todo (symbol: `todo', `done', nil)
-PRIORITY  the priority of the headline (integer or nil)
-TEXT      the main headline text (string)
-TAGS      the tags (list of strings or nil)
-INFO      the export options (plist)
-
-The function result will be used in the section format string."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'function)
-
-
-;;;; Footnotes
-
-(defcustom org-latex-footnote-separator "\\textsuperscript{,}\\,"
-  "Text used to separate footnotes."
-  :group 'org-export-latex
-  :type 'string)
-
-(defcustom org-latex-footnote-defined-format "\\textsuperscript{\\ref{%s}}"
-  "Format string used to format reference to footnote already defined.
-%s will be replaced by the label of the referred footnote."
-  :group 'org-export-latex
-  :type '(choice
-	  (const :tag "Use plain superscript (default)" "\\textsuperscript{\\ref{%s}}")
-	  (const :tag "Use Memoir/KOMA-Script footref" "\\footref{%s}")
-	  (string :tag "Other format string"))
-  :version "26.1"
-  :package-version '(Org . "9.0"))
-
-;;;; Timestamps
-
-(defcustom org-latex-active-timestamp-format "\\textit{%s}"
-  "A printf format string to be applied to active timestamps."
-  :group 'org-export-latex
-  :type 'string)
-
-(defcustom org-latex-inactive-timestamp-format "\\textit{%s}"
-  "A printf format string to be applied to inactive timestamps."
-  :group 'org-export-latex
-  :type 'string)
-
-(defcustom org-latex-diary-timestamp-format "\\textit{%s}"
-  "A printf format string to be applied to diary timestamps."
-  :group 'org-export-latex
-  :type 'string)
-
-
-;;;; Links
-
-(defcustom org-latex-images-centered t
-  "When non-nil, images are centered."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-latex-image-default-option ""
-  "Default option for images."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-latex-image-default-width ".9\\linewidth"
-  "Default width for images.
-This value will not be used if a height is provided."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-latex-image-default-height ""
-  "Default height for images.
-This value will not be used if a width is provided, or if the
-image is wrapped within a \"figure\" or \"wrapfigure\"
-environment."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-latex-default-figure-position "htbp"
-  "Default position for LaTeX figures."
-  :group 'org-export-latex
-  :type 'string
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :safe #'stringp)
-
-(defcustom org-latex-inline-image-rules
-  `(("file" . ,(regexp-opt
-		'("pdf" "jpeg" "jpg" "png" "ps" "eps" "tikz" "pgf" "svg"))))
-  "Rules characterizing image files that can be inlined into LaTeX.
-
-A rule consists in an association whose key is the type of link
-to consider, and value is a regexp that will be matched against
-link's path.
-
-Note that, by default, the image extension *actually* allowed
-depend on the way the LaTeX file is processed.  When used with
-pdflatex, pdf, jpg and png images are OK.  When processing
-through dvi to Postscript, only ps and eps are allowed.  The
-default we use here encompasses both."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(alist :key-type (string :tag "Type")
-		:value-type (regexp :tag "Path")))
-
-(defcustom org-latex-link-with-unknown-path-format "\\texttt{%s}"
-  "Format string for links with unknown path type."
-  :group 'org-export-latex
-  :type 'string)
-
-
-;;;; Tables
-
-(defcustom org-latex-default-table-environment "tabular"
-  "Default environment used to build tables."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'string)
-
-(defcustom org-latex-default-table-mode 'table
-  "Default mode for tables.
-
-Value can be a symbol among:
-
-  `table' Regular LaTeX table.
-
-  `math' In this mode, every cell is considered as being in math
-     mode and the complete table will be wrapped within a math
-     environment.  It is particularly useful to write matrices.
-
-  `inline-math' This mode is almost the same as `math', but the
-     math environment will be inlined.
-
-  `verbatim' The table is exported as it appears in the Org
-     buffer, within a verbatim environment.
-
-This value can be overridden locally with, i.e. \":mode math\" in
-LaTeX attributes.
-
-When modifying this variable, it may be useful to change
-`org-latex-default-table-environment' accordingly."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice (const :tag "Table" table)
-		 (const :tag "Matrix" math)
-		 (const :tag "Inline matrix" inline-math)
-		 (const :tag "Verbatim" verbatim))
-  :safe (lambda (s) (memq s '(table math inline-math verbatim))))
-
-(defcustom org-latex-tables-centered t
-  "When non-nil, tables are exported in a center environment."
-  :group 'org-export-latex
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-latex-tables-booktabs nil
-  "When non-nil, display tables in a formal \"booktabs\" style.
-This option assumes that the \"booktabs\" package is properly
-loaded in the header of the document.  This value can be ignored
-locally with \":booktabs t\" and \":booktabs nil\" LaTeX
-attributes."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-latex-table-scientific-notation "%s\\,(%s)"
-  "Format string to display numbers in scientific notation.
-The format should have \"%s\" twice, for mantissa and exponent
-\(i.e., \"%s\\\\times10^{%s}\").
-
-When nil, no transformation is made."
-  :group 'org-export-latex
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (string :tag "Format string")
-	  (const :tag "No formatting" nil)))
-
-;;;; Text markup
-
-(defcustom org-latex-text-markup-alist '((bold . "\\textbf{%s}")
-					 (code . protectedtexttt)
-					 (italic . "\\emph{%s}")
-					 (strike-through . "\\sout{%s}")
-					 (underline . "\\uline{%s}")
-					 (verbatim . protectedtexttt))
-  "Alist of LaTeX expressions to convert text markup.
-
-The key must be a symbol among `bold', `code', `italic',
-`strike-through', `underline' and `verbatim'.  The value is
-a formatting string to wrap fontified text with.
-
-Value can also be set to the following symbols: `verb' and
-`protectedtexttt'.  For the former, Org will use \"\\verb\" to
-create a format string and select a delimiter character that
-isn't in the string.  For the latter, Org will use \"\\texttt\"
-to typeset and try to protect special characters.
-
-If no association can be found for a given markup, text will be
-returned as-is."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'alist
-  :options '(bold code italic strike-through underline verbatim))
-
-
-;;;; Drawers
-
-(defcustom org-latex-format-drawer-function (lambda (_ contents) contents)
-  "Function called to format a drawer in LaTeX code.
-
-The function must accept two parameters:
-  NAME      the drawer name, like \"LOGBOOK\"
-  CONTENTS  the contents of the drawer.
-
-The function should return the string to be exported.
-
-The default function simply returns the value of CONTENTS."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'function)
-
-
-;;;; Inlinetasks
-
-(defcustom org-latex-format-inlinetask-function
-  'org-latex-format-inlinetask-default-function
-  "Function called to format an inlinetask in LaTeX code.
-
-The function must accept seven parameters:
-  TODO      the todo keyword (string or nil)
-  TODO-TYPE the todo type (symbol: `todo', `done', nil)
-  PRIORITY  the inlinetask priority (integer or nil)
-  NAME      the inlinetask name (string)
-  TAGS      the inlinetask tags (list of strings or nil)
-  CONTENTS  the contents of the inlinetask (string or nil)
-  INFO      the export options (plist)
-
-The function should return the string to be exported."
-  :group 'org-export-latex
-  :type 'function
-  :version "26.1"
-  :package-version '(Org . "8.3"))
-
-
-;; Src blocks
-
-(defcustom org-latex-listings nil
-  "Non-nil means export source code using the listings package.
-
-This package will fontify source code, possibly even with color.
-If you want to use this, you also need to make LaTeX use the
-listings package, and if you want to have color, the color
-package.  Just add these to `org-latex-packages-alist', for
-example using customize, or with something like:
-
-  (require \\='ox-latex)
-  (add-to-list \\='org-latex-packages-alist \\='(\"\" \"listings\"))
-  (add-to-list \\='org-latex-packages-alist \\='(\"\" \"color\"))
-
-Alternatively,
-
-  (setq org-latex-listings \\='minted)
-
-causes source code to be exported using the minted package as
-opposed to listings.  If you want to use minted, you need to add
-the minted package to `org-latex-packages-alist', for example
-using customize, or with
-
-  (require \\='ox-latex)
-  (add-to-list \\='org-latex-packages-alist \\='(\"newfloat\" \"minted\"))
-
-In addition, it is necessary to install pygments
-\(URL `http://pygments.org>'), and to configure the variable
-`org-latex-pdf-process' so that the -shell-escape option is
-passed to pdflatex.
-
-The minted choice has possible repercussions on the preview of
-latex fragments (see `org-preview-latex-fragment').  If you run
-into previewing problems, please consult
-URL `https://orgmode.org/worg/org-tutorials/org-latex-preview.html'."
-  :group 'org-export-latex
-  :type '(choice
-	  (const :tag "Use listings" t)
-	  (const :tag "Use minted" minted)
-	  (const :tag "Export verbatim" nil))
-  :safe (lambda (s) (memq s '(t nil minted))))
-
-(defcustom org-latex-listings-langs
-  '((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp")
-    (c "C") (cc "C++")
-    (fortran "fortran")
-    (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")
-    (html "HTML") (xml "XML")
-    (tex "TeX") (latex "[LaTeX]TeX")
-    (shell-script "bash")
-    (gnuplot "Gnuplot")
-    (ocaml "Caml") (caml "Caml")
-    (sql "SQL") (sqlite "sql")
-    (makefile "make")
-    (R "r"))
-  "Alist mapping languages to their listing language counterpart.
-The key is a symbol, the major mode symbol without the \"-mode\".
-The value is the string that should be inserted as the language
-parameter for the listings package.  If the mode name and the
-listings name are the same, the language does not need an entry
-in this list - but it does not hurt if it is present."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(repeat
-	  (list
-	   (symbol :tag "Major mode       ")
-	   (string :tag "Listings language"))))
-
-(defcustom org-latex-listings-options nil
-  "Association list of options for the latex listings package.
-
-These options are supplied as a comma-separated list to the
-\\lstset command.  Each element of the association list should be
-a list containing two strings: the name of the option, and the
-value.  For example,
-
-  (setq org-latex-listings-options
-    \\='((\"basicstyle\" \"\\\\small\")
-      (\"keywordstyle\" \"\\\\color{black}\\\\bfseries\\\\underbar\")))
-
-will typeset the code in a small size font with underlined, bold
-black keywords.
-
-Note that the same options will be applied to blocks of all
-languages.  If you need block-specific options, you may use the
-following syntax:
-
-  #+ATTR_LATEX: :options key1=value1,key2=value2
-  #+BEGIN_SRC <LANG>
-  ...
-  #+END_SRC"
-  :group 'org-export-latex
-  :type '(repeat
-	  (list
-	   (string :tag "Listings option name ")
-	   (string :tag "Listings option value"))))
-
-(defcustom org-latex-minted-langs
-  '((emacs-lisp "common-lisp")
-    (cc "c++")
-    (cperl "perl")
-    (shell-script "bash")
-    (caml "ocaml"))
-  "Alist mapping languages to their minted language counterpart.
-The key is a symbol, the major mode symbol without the \"-mode\".
-The value is the string that should be inserted as the language
-parameter for the minted package.  If the mode name and the
-listings name are the same, the language does not need an entry
-in this list - but it does not hurt if it is present.
-
-Note that minted uses all lower case for language identifiers,
-and that the full list of language identifiers can be obtained
-with:
-
-  pygmentize -L lexers"
-  :group 'org-export-latex
-  :type '(repeat
-	  (list
-	   (symbol :tag "Major mode     ")
-	   (string :tag "Minted language"))))
-
-(defcustom org-latex-minted-options nil
-  "Association list of options for the latex minted package.
-
-These options are supplied within square brackets in
-\\begin{minted} environments.  Each element of the alist should
-be a list containing two strings: the name of the option, and the
-value.  For example,
-
-  (setq org-latex-minted-options
-    \\='((\"bgcolor\" \"bg\") (\"frame\" \"lines\")))
-
-will result in src blocks being exported with
-
-\\begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
-
-as the start of the minted environment. Note that the same
-options will be applied to blocks of all languages.  If you need
-block-specific options, you may use the following syntax:
-
-  #+ATTR_LATEX: :options key1=value1,key2=value2
-  #+BEGIN_SRC <LANG>
-  ...
-  #+END_SRC"
-  :group 'org-export-latex
-  :type '(repeat
-	  (list
-	   (string :tag "Minted option name ")
-	   (string :tag "Minted option value"))))
-
-(defcustom org-latex-custom-lang-environments nil
-  "Alist mapping languages to language-specific LaTeX environments.
-
-It is used during export of src blocks by the listings and minted
-latex packages.  The environment may be a simple string, composed of
-only letters and numbers.  In this case, the string is directly the
-name of the latex environment to use.  The environment may also be
-a format string.  In this case the format string will be directly
-exported.  This format string may contain these elements:
-
-  %s for the formatted source
-  %c for the caption
-  %f for the float attribute
-  %l for an appropriate label
-  %o for the LaTeX attributes
-
-For example,
-
-  (setq org-latex-custom-lang-environments
-     \\='((python \"pythoncode\")
-       (ocaml \"\\\\begin{listing}
-\\\\begin{minted}[%o]{ocaml}
-%s\\\\end{minted}
-\\\\caption{%c}
-\\\\label{%l}\")))
-
-would have the effect that if Org encounters a Python source block
-during LaTeX export it will produce
-
-  \\begin{pythoncode}
-  <src block body>
-  \\end{pythoncode}
-
-and if Org encounters an Ocaml source block during LaTeX export it
-will produce
-
-  \\begin{listing}
-  \\begin{minted}[<attr_latex options>]{ocaml}
-  <src block body>
-  \\end{minted}
-  \\caption{<caption>}
-  \\label{<label>}
-  \\end{listing}"
-  :group 'org-export-latex
-  :type '(repeat
-	  (list
-	   (symbol :tag "Language name                    ")
-	   (string :tag "Environment name or format string")))
-  :version "26.1"
-  :package-version '(Org . "9.0"))
-
-
-;;;; Compilation
-
-(defcustom org-latex-compiler-file-string "%% Intended LaTeX compiler: %s\n"
-  "LaTeX compiler format-string.
-See also `org-latex-compiler'."
-  :group 'org-export-latex
-  :type '(choice
-	  (const :tag "Comment" "%% Intended LaTeX compiler: %s\n")
-	  (const :tag "latex-mode file variable" "%% -*- latex-run-command: %s -*-\n")
-	  (const :tag "AUCTeX file variable" "%% -*- LaTeX-command: %s -*-\n")
-	  (string :tag "custom format" "%% %s"))
-  :version "26.1"
-  :package-version '(Org . "9.0"))
-
-(defcustom org-latex-compiler "pdflatex"
-  "LaTeX compiler to use.
-
-Must be an element in `org-latex-compilers' or the empty quote.
-Can also be set in buffers via #+LATEX_COMPILER.  See also
-`org-latex-compiler-file-string'."
-  :group 'org-export-latex
-  :type '(choice
-	  (const :tag "pdfLaTeX" "pdflatex")
-	  (const :tag "XeLaTeX"  "xelatex")
-	  (const :tag "LuaLaTeX" "lualatex")
-	  (const :tag "Unset" ""))
-  :version "26.1"
-  :package-version '(Org . "9.0"))
-
-(defconst org-latex-compilers '("pdflatex" "xelatex" "lualatex")
-  "Known LaTeX compilers.
-See also `org-latex-compiler'.")
-
-(defcustom org-latex-bib-compiler "bibtex"
-  "Command to process a LaTeX file's bibliography.
-
-The shorthand %bib in `org-latex-pdf-process' is replaced with
-this value.
-
-A better approach is to use a compiler suit such as `latexmk'."
-  :group 'org-export-latex
-  :type '(choice (const :tag "BibTeX" "bibtex")
-		 (const :tag "Biber" "biber")
-		 (string :tag "Other process"))
-  :version "26.1"
-  :package-version '(Org . "9.0"))
-
-(defcustom org-latex-pdf-process
-  '("%latex -interaction nonstopmode -output-directory %o %f"
-    "%latex -interaction nonstopmode -output-directory %o %f"
-    "%latex -interaction nonstopmode -output-directory %o %f")
-  "Commands to process a LaTeX file to a PDF file.
-
-This is a list of strings, each of them will be given to the
-shell as a command.  %f in the command will be replaced by the
-relative file name, %F by the absolute file name, %b by the file
-base name (i.e. without directory and extension parts), %o by the
-base directory of the file, %O by the absolute file name of the
-output file, %latex is the LaTeX compiler (see
-`org-latex-compiler'), and %bib is the BibTeX-like compiler (see
-`org-latex-bib-compiler').
-
-The reason why this is a list is that it usually takes several
-runs of `pdflatex', maybe mixed with a call to `bibtex'.  Org
-does not have a clever mechanism to detect which of these
-commands have to be run to get to a stable result, and it also
-does not do any error checking.
-
-Consider a smart LaTeX compiler such as `texi2dvi' or `latexmk',
-which calls the \"correct\" combinations of auxiliary programs.
-
-Alternatively, this may be a Lisp function that does the
-processing, so you could use this to apply the machinery of
-AUCTeX or the Emacs LaTeX mode.  This function should accept the
-file name as its single argument."
-  :group 'org-export-pdf
-  :type '(choice
-	  (repeat :tag "Shell command sequence"
-		  (string :tag "Shell command"))
-	  (const :tag "2 runs of latex"
-		 ("%latex -interaction nonstopmode -output-directory %o %f"
-		  "%latex -interaction nonstopmode -output-directory %o %f"))
-	  (const :tag "3 runs of latex"
-		 ("%latex -interaction nonstopmode -output-directory %o %f"
-		  "%latex -interaction nonstopmode -output-directory %o %f"
-		  "%latex -interaction nonstopmode -output-directory %o %f"))
-	  (const :tag "latex,bibtex,latex,latex"
-		 ("%latex -interaction nonstopmode -output-directory %o %f"
-		  "%bib %b"
-		  "%latex -interaction nonstopmode -output-directory %o %f"
-		  "%latex -interaction nonstopmode -output-directory %o %f"))
-	  (const :tag "texi2dvi"
-		 ("cd %o; LATEX=\"%latex\" texi2dvi -p -b -V %b.tex"))
-	  (const :tag "latexmk"
-		 ("latexmk -g -pdf -pdflatex=\"%latex\" -outdir=%o %f"))
-	  (function)))
-
-(defcustom org-latex-logfiles-extensions
-  '("aux" "bcf" "blg" "fdb_latexmk" "fls" "figlist" "idx" "log" "nav" "out"
-    "ptc" "run.xml" "snm" "toc" "vrb" "xdv")
-  "The list of file extensions to consider as LaTeX logfiles.
-The logfiles will be removed if `org-latex-remove-logfiles' is
-non-nil."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(repeat (string :tag "Extension")))
-
-(defcustom org-latex-remove-logfiles t
-  "Non-nil means remove the logfiles produced by PDF production.
-By default, logfiles are files with these extensions: .aux, .idx,
-.log, .out, .toc, .nav, .snm and .vrb.  To define the set of
-logfiles to remove, set `org-latex-logfiles-extensions'."
-  :group 'org-export-latex
-  :type 'boolean)
-
-(defcustom org-latex-known-warnings
-  '(("Reference.*?undefined" . "[undefined reference]")
-    ("Runaway argument" . "[runaway argument]")
-    ("Underfull \\hbox" . "[underfull hbox]")
-    ("Overfull \\hbox" . "[overfull hbox]")
-    ("Citation.*?undefined" . "[undefined citation]")
-    ("Undefined control sequence" . "[undefined control sequence]"))
-  "Alist of regular expressions and associated messages for the user.
-The regular expressions are used to find possible warnings in the
-log of a latex-run.  These warnings will be reported after
-calling `org-latex-compile'."
-  :group 'org-export-latex
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(repeat
-	  (cons
-	   (string :tag "Regexp")
-	   (string :tag "Message"))))
-
-
-
-;;; Internal Functions
-
-(defun org-latex--caption-above-p (element info)
-  "Non nil when caption is expected to be located above ELEMENT.
-INFO is a plist holding contextual information."
-  (let ((above (plist-get info :latex-caption-above)))
-    (if (symbolp above) above
-      (let ((type (org-element-type element)))
-	(memq (if (eq type 'link) 'image type) above)))))
-
-(defun org-latex--label (datum info &optional force full)
-  "Return an appropriate label for DATUM.
-DATUM is an element or a `target' type object.  INFO is the
-current export state, as a plist.
-
-Return nil if element DATUM has no NAME or VALUE affiliated
-keyword or no CUSTOM_ID property, unless FORCE is non-nil.  In
-this case always return a unique label.
-
-Eventually, if FULL is non-nil, wrap label within \"\\label{}\"."
-  (let* ((type (org-element-type datum))
-	 (user-label
-	  (org-element-property
-	   (cl-case type
-	     ((headline inlinetask) :CUSTOM_ID)
-	     (target :value)
-	     (otherwise :name))
-	   datum))
-	 (label
-	  (and (or user-label force)
-	       (if (and user-label (plist-get info :latex-prefer-user-labels))
-		   user-label
-		 (concat (cl-case type
-			   (headline "sec:")
-			   (table "tab:")
-			   (latex-environment
-			    (and (string-match-p
-				  org-latex-math-environments-re
-				  (org-element-property :value datum))
-				 "eq:"))
-			   (paragraph
-			    (and (org-element-property :caption datum)
-				 "fig:")))
-			 (org-export-get-reference datum info))))))
-    (cond ((not full) label)
-	  (label (format "\\label{%s}%s"
-			 label
-			 (if (eq type 'target) "" "\n")))
-	  (t ""))))
-
-(defun org-latex--caption/label-string (element info)
-  "Return caption and label LaTeX string for ELEMENT.
-
-INFO is a plist holding contextual information.  If there's no
-caption nor label, return the empty string.
-
-For non-floats, see `org-latex--wrap-label'."
-  (let* ((label (org-latex--label element info nil t))
-	 (main (org-export-get-caption element))
-	 (attr (org-export-read-attribute :attr_latex element))
-	 (type (org-element-type element))
-	 (nonfloat (or (and (plist-member attr :float)
-			    (not (plist-get attr :float))
-			    main)
-		       (and (eq type 'src-block)
-			    (not (plist-get attr :float))
-			    (null (plist-get info :latex-listings)))))
-	 (short (org-export-get-caption element t))
-	 (caption-from-attr-latex (plist-get attr :caption)))
-    (cond
-     ((org-string-nw-p caption-from-attr-latex)
-      (concat caption-from-attr-latex "\n"))
-     ((and (not main) (equal label "")) "")
-     ((not main) label)
-     ;; Option caption format with short name.
-     (t
-      (format (if nonfloat "\\captionof{%s}%s{%s%s}\n"
-		"\\caption%s%s{%s%s}\n")
-	      (let ((type* (if (eq type 'latex-environment)
-			       (org-latex--environment-type element)
-			     type)))
-		(if nonfloat
-		    (cl-case type*
-		      (paragraph "figure")
-		      (image "figure")
-		      (special-block "figure")
-		      (src-block (if (plist-get info :latex-listings)
-				     "listing"
-				   "figure"))
-		      (t (symbol-name type*)))
-		  ""))
-	      (if short (format "[%s]" (org-export-data short info)) "")
-	      label
-	      (org-export-data main info))))))
-
-(defun org-latex-guess-inputenc (header)
-  "Set the coding system in inputenc to what the buffer is.
-
-HEADER is the LaTeX header string.  This function only applies
-when specified inputenc option is \"AUTO\".
-
-Return the new header, as a string."
-  (let* ((cs (or (ignore-errors
-		   (latexenc-coding-system-to-inputenc
-		    (or org-export-coding-system buffer-file-coding-system)))
-		 "utf8")))
-    (if (not cs) header
-      ;; First translate if that is requested.
-      (setq cs (or (cdr (assoc cs org-latex-inputenc-alist)) cs))
-      ;; Then find the \usepackage statement and replace the option.
-      (replace-regexp-in-string "\\\\usepackage\\[\\(AUTO\\)\\]{inputenc}"
-				cs header t nil 1))))
-
-(defun org-latex-guess-babel-language (header info)
-  "Set Babel's language according to LANGUAGE keyword.
-
-HEADER is the LaTeX header string.  INFO is the plist used as
-a communication channel.
-
-Insertion of guessed language only happens when Babel package has
-explicitly been loaded.  Then it is added to the rest of
-package's options.
-
-The argument to Babel may be \"AUTO\" which is then replaced with
-the language of the document or `org-export-default-language'
-unless language in question is already loaded.
-
-Return the new header."
-  (let ((language-code (plist-get info :language)))
-    ;; If no language is set or Babel package is not loaded, return
-    ;; HEADER as-is.
-    (if (or (not (stringp language-code))
-	    (not (string-match "\\\\usepackage\\[\\(.*\\)\\]{babel}" header)))
-	header
-      (let ((options (save-match-data
-		       (org-split-string (match-string 1 header) ",[ \t]*")))
-	    (language (cdr (assoc-string language-code
-					 org-latex-babel-language-alist t))))
-	;; If LANGUAGE is already loaded, return header without AUTO.
-	;; Otherwise, replace AUTO with language or append language if
-	;; AUTO is not present.
-	(replace-match
-	 (mapconcat (lambda (option) (if (equal "AUTO" option) language option))
-		    (cond ((member language options) (delete "AUTO" options))
-			  ((member "AUTO" options) options)
-			  (t (append options (list language))))
-		    ", ")
-	 t nil header 1)))))
-
-(defun org-latex-guess-polyglossia-language (header info)
-  "Set the Polyglossia language according to the LANGUAGE keyword.
-
-HEADER is the LaTeX header string.  INFO is the plist used as
-a communication channel.
-
-Insertion of guessed language only happens when the Polyglossia
-package has been explicitly loaded.
-
-The argument to Polyglossia may be \"AUTO\" which is then
-replaced with the language of the document or
-`org-export-default-language'.  Note, the language is really set
-using \setdefaultlanguage and not as an option to the package.
-
-Return the new header."
-  (let ((language (plist-get info :language)))
-    ;; If no language is set or Polyglossia is not loaded, return
-    ;; HEADER as-is.
-    (if (or (not (stringp language))
-	    (not (string-match
-		  "\\\\usepackage\\(?:\\[\\([^]]+?\\)\\]\\){polyglossia}\n"
-		  header)))
-	header
-      (let* ((options (org-string-nw-p (match-string 1 header)))
-	     (languages (and options
-			     ;; Reverse as the last loaded language is
-			     ;; the main language.
-			     (nreverse
-			      (delete-dups
-			       (save-match-data
-				 (org-split-string
-				  (replace-regexp-in-string
-				   "AUTO" language options t)
-				  ",[ \t]*"))))))
-	     (main-language-set
-	      (string-match-p "\\\\setmainlanguage{.*?}" header)))
-	(replace-match
-	 (concat "\\usepackage{polyglossia}\n"
-		 (mapconcat
-		  (lambda (l)
-		    (let ((l (or (assoc l org-latex-polyglossia-language-alist)
-				 l)))
-		      (format (if main-language-set "\\setotherlanguage%s{%s}\n"
-				(setq main-language-set t)
-				"\\setmainlanguage%s{%s}\n")
-			      (if (and (consp l) (= (length l) 3))
-				  (format "[variant=%s]" (nth 2 l))
-				"")
-			      (nth 1 l))))
-		  languages
-		  ""))
-	 t t header 0)))))
-
-(defun org-latex--remove-packages (pkg-alist info)
-  "Remove packages based on the current LaTeX compiler.
-
-If the fourth argument of an element is set in pkg-alist, and it
-is not a member of the LaTeX compiler of the document, the packages
-is removed.  See also `org-latex-compiler'.
-
-Return modified pkg-alist."
-  (let ((compiler (or (plist-get info :latex-compiler) "")))
-    (if (member-ignore-case compiler org-latex-compilers)
-	(delq nil
-	      (mapcar
-	       (lambda (pkg)
-		 (unless (and
-			  (listp pkg)
-			  (let ((third (nth 3 pkg)))
-			    (and third
-				 (not (member-ignore-case
-				       compiler
-				       (if (listp third) third (list third)))))))
-		   pkg))
-	       pkg-alist))
-      pkg-alist)))
-
-(defun org-latex--find-verb-separator (s)
-  "Return a character not used in string S.
-This is used to choose a separator for constructs like \\verb."
-  (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
-    (cl-loop for c across ll
-	     when (not (string-match (regexp-quote (char-to-string c)) s))
-	     return (char-to-string c))))
-
-(defun org-latex--make-option-string (options)
-  "Return a comma separated string of keywords and values.
-OPTIONS is an alist where the key is the options keyword as
-a string, and the value a list containing the keyword value, or
-nil."
-  (mapconcat (lambda (pair)
-	       (pcase-let ((`(,keyword ,value) pair))
-		 (concat keyword
-			 (and (> (length value) 0)
-			      (concat "=" value)))))
-	     options
-	     ","))
-
-(defun org-latex--wrap-label (element output info)
-  "Wrap label associated to ELEMENT around OUTPUT, if appropriate.
-INFO is the current export state, as a plist.  This function
-should not be used for floats.  See
-`org-latex--caption/label-string'."
-  (if (not (and (org-string-nw-p output) (org-element-property :name element)))
-      output
-    (concat (format "\\phantomsection\n\\label{%s}\n"
-		    (org-latex--label element info))
-	    output)))
-
-(defun org-latex--protect-text (text)
-  "Protect special characters in string TEXT and return it."
-  (replace-regexp-in-string "[\\{}$%&_#~^]" "\\\\\\&" text))
-
-(defun org-latex--text-markup (text markup info)
-  "Format TEXT depending on MARKUP text markup.
-INFO is a plist used as a communication channel.  See
-`org-latex-text-markup-alist' for details."
-  (let ((fmt (cdr (assq markup (plist-get info :latex-text-markup-alist)))))
-    (cl-case fmt
-      ;; No format string: Return raw text.
-      ((nil) text)
-      ;; Handle the `verb' special case: Find an appropriate separator
-      ;; and use "\\verb" command.
-      (verb
-       (let ((separator (org-latex--find-verb-separator text)))
-	 (concat "\\verb"
-		 separator
-		 (replace-regexp-in-string "\n" " " text)
-		 separator)))
-      ;; Handle the `protectedtexttt' special case: Protect some
-      ;; special chars and use "\texttt{%s}" format string.
-      (protectedtexttt
-       (format "\\texttt{%s}"
-	       (replace-regexp-in-string
-		"--\\|[\\{}$%&_#~^]"
-		(lambda (m)
-		  (cond ((equal m "--") "-{}-")
-			((equal m "\\") "\\textbackslash{}")
-			((equal m "~") "\\textasciitilde{}")
-			((equal m "^") "\\textasciicircum{}")
-			(t (org-latex--protect-text m))))
-		text nil t)))
-      ;; Else use format string.
-      (t (format fmt text)))))
-
-(defun org-latex--delayed-footnotes-definitions (element info)
-  "Return footnotes definitions in ELEMENT as a string.
-
-INFO is a plist used as a communication channel.
-
-Footnotes definitions are returned within \"\\footnotetext{}\"
-commands.
-
-This function is used within constructs that don't support
-\"\\footnote{}\" command (e.g., an item tag).  In that case,
-\"\\footnotemark\" is used within the construct and the function
-just outside of it."
-  (mapconcat
-   (lambda (ref)
-     (let ((def (org-export-get-footnote-definition ref info)))
-       (format "\\footnotetext[%d]{%s%s}"
-	       (org-export-get-footnote-number ref info)
-	       (org-trim (org-latex--label def info t t))
-	       (org-trim (org-export-data def info)))))
-   ;; Find every footnote reference in ELEMENT.
-   (letrec ((all-refs nil)
-	    (search-refs
-	     (lambda (data)
-	       ;; Return a list of all footnote references never seen
-	       ;; before in DATA.
-	       (org-element-map data 'footnote-reference
-		 (lambda (ref)
-		   (when (org-export-footnote-first-reference-p ref info)
-		     (push ref all-refs)
-		     (when (eq (org-element-property :type ref) 'standard)
-		       (funcall search-refs
-				(org-export-get-footnote-definition ref info)))))
-		 info)
-	       (reverse all-refs))))
-     (funcall search-refs element))
-   ""))
-
-(defun org-latex--translate (s info)
-  "Translate string S according to specified language.
-INFO is a plist used as a communication channel."
-  (org-export-translate s :latex info))
-
-(defun org-latex--format-spec (info)
-  "Create a format-spec for document meta-data.
-INFO is a plist used as a communication channel."
-  (let ((language (let ((lang (plist-get info :language)))
-		    (or (cdr (assoc-string lang org-latex-babel-language-alist t))
-			(nth 1 (assoc-string lang org-latex-polyglossia-language-alist t))
-			lang))))
-    `((?a . ,(org-export-data (plist-get info :author) info))
-      (?t . ,(org-export-data (plist-get info :title) info))
-      (?k . ,(org-export-data (org-latex--wrap-latex-math-block
-			       (plist-get info :keywords) info)
-			      info))
-      (?d . ,(org-export-data (org-latex--wrap-latex-math-block
-			       (plist-get info :description) info)
-			      info))
-      (?c . ,(plist-get info :creator))
-      (?l . ,language)
-      (?L . ,(capitalize language))
-      (?D . ,(org-export-get-date info)))))
-
-(defun org-latex--insert-compiler (info)
-  "Insert LaTeX_compiler info into the document.
-INFO is a plist used as a communication channel."
-  (let ((compiler (plist-get info :latex-compiler)))
-       (and (org-string-nw-p org-latex-compiler-file-string)
-	    (member (or compiler "") org-latex-compilers)
-	    (format org-latex-compiler-file-string compiler))))
-
-
-;;; Filters
-
-(defun org-latex-matrices-tree-filter (tree _backend info)
-  (org-latex--wrap-latex-matrices tree info))
-
-(defun org-latex-math-block-tree-filter (tree _backend info)
-  (org-latex--wrap-latex-math-block tree info))
-
-(defun org-latex-math-block-options-filter (info _backend)
-  (dolist (prop '(:author :date :title) info)
-    (plist-put info prop
-	       (org-latex--wrap-latex-math-block (plist-get info prop) info))))
-
-(defun org-latex-clean-invalid-line-breaks (data _backend _info)
-  (replace-regexp-in-string
-   "\\(\\end{[A-Za-z0-9*]+}\\|^\\)[ \t]*\\\\\\\\[ \t]*$" "\\1"
-   data))
-
-
-;;; Template
-
-;;;###autoload
-(defun org-latex-make-preamble (info &optional template snippet?)
-  "Return a formatted LaTeX preamble.
-INFO is a plist used as a communication channel.  Optional
-argument TEMPLATE, when non-nil, is the header template string,
-as expected by `org-splice-latex-header'.  When SNIPPET? is
-non-nil, only includes packages relevant to image generation, as
-specified in `org-latex-default-packages-alist' or
-`org-latex-packages-alist'."
-  (let* ((class (plist-get info :latex-class))
-	 (class-template
-	  (or template
-	      (let* ((class-options (plist-get info :latex-class-options))
-		     (header (nth 1 (assoc class (plist-get info :latex-classes)))))
-		(and (stringp header)
-		     (if (not class-options) header
-		       (replace-regexp-in-string
-			"^[ \t]*\\\\documentclass\\(\\(\\[[^]]*\\]\\)?\\)"
-			class-options header t nil 1))))
-	      (user-error "Unknown LaTeX class `%s'" class))))
-    (org-latex-guess-polyglossia-language
-     (org-latex-guess-babel-language
-      (org-latex-guess-inputenc
-       (org-element-normalize-string
-	(org-splice-latex-header
-	 class-template
-	 (org-latex--remove-packages org-latex-default-packages-alist info)
-	 (org-latex--remove-packages org-latex-packages-alist info)
-	 snippet?
-	 (mapconcat #'org-element-normalize-string
-		    (list (plist-get info :latex-header)
-			  (and (not snippet?)
-			       (plist-get info :latex-header-extra)))
-		    ""))))
-      info)
-     info)))
-
-(defun org-latex-template (contents info)
-  "Return complete document string after LaTeX conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  (let ((title (org-export-data (plist-get info :title) info))
-	(spec (org-latex--format-spec info)))
-    (concat
-     ;; Time-stamp.
-     (and (plist-get info :time-stamp-file)
-	  (format-time-string "%% Created %Y-%m-%d %a %H:%M\n"))
-     ;; LaTeX compiler.
-     (org-latex--insert-compiler info)
-     ;; Document class and packages.
-     (org-latex-make-preamble info)
-     ;; Possibly limit depth for headline numbering.
-     (let ((sec-num (plist-get info :section-numbers)))
-       (when (integerp sec-num)
-	 (format "\\setcounter{secnumdepth}{%d}\n" sec-num)))
-     ;; Author.
-     (let ((author (and (plist-get info :with-author)
-			(let ((auth (plist-get info :author)))
-			  (and auth (org-export-data auth info)))))
-	   (email (and (plist-get info :with-email)
-		       (org-export-data (plist-get info :email) info))))
-       (cond ((and author email (not (string= "" email)))
-	      (format "\\author{%s\\thanks{%s}}\n" author email))
-	     ((or author email) (format "\\author{%s}\n" (or author email)))))
-     ;; Date.
-     (let ((date (and (plist-get info :with-date) (org-export-get-date info))))
-       (format "\\date{%s}\n" (org-export-data date info)))
-     ;; Title and subtitle.
-     (let* ((subtitle (plist-get info :subtitle))
-	    (formatted-subtitle
-	     (when subtitle
-	       (format (plist-get info :latex-subtitle-format)
-		       (org-export-data subtitle info))))
-	    (separate (plist-get info :latex-subtitle-separate)))
-       (concat
-	(format "\\title{%s%s}\n" title
-		(if separate "" (or formatted-subtitle "")))
-	(when (and separate subtitle)
-	  (concat formatted-subtitle "\n"))))
-     ;; Hyperref options.
-     (let ((template (plist-get info :latex-hyperref-template)))
-       (and (stringp template)
-            (format-spec template spec)))
-     ;; Document start.
-     "\\begin{document}\n\n"
-     ;; Title command.
-     (let* ((title-command (plist-get info :latex-title-command))
-            (command (and (stringp title-command)
-                          (format-spec title-command spec))))
-       (org-element-normalize-string
-	(cond ((not (plist-get info :with-title)) nil)
-	      ((string= "" title) nil)
-	      ((not (stringp command)) nil)
-	      ((string-match "\\(?:[^%]\\|^\\)%s" command)
-	       (format command title))
-	      (t command))))
-     ;; Table of contents.
-     (let ((depth (plist-get info :with-toc)))
-       (when depth
-	 (concat (when (integerp depth)
-		   (format "\\setcounter{tocdepth}{%d}\n" depth))
-		 (plist-get info :latex-toc-command))))
-     ;; Document's body.
-     contents
-     ;; Creator.
-     (and (plist-get info :with-creator)
-	  (concat (plist-get info :creator) "\n"))
-     ;; Document end.
-     "\\end{document}")))
-
-
-
-;;; Transcode Functions
-
-;;;; Bold
-
-(defun org-latex-bold (_bold contents info)
-  "Transcode BOLD from Org to LaTeX.
-CONTENTS is the text with bold markup.  INFO is a plist holding
-contextual information."
-  (org-latex--text-markup contents 'bold info))
-
-
-;;;; Center Block
-
-(defun org-latex-center-block (center-block contents info)
-  "Transcode a CENTER-BLOCK element from Org to LaTeX.
-CONTENTS holds the contents of the center block.  INFO is a plist
-holding contextual information."
-  (org-latex--wrap-label
-   center-block (format "\\begin{center}\n%s\\end{center}" contents) info))
-
-
-;;;; Clock
-
-(defun org-latex-clock (clock _contents info)
-  "Transcode a CLOCK element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (concat
-   "\\noindent"
-   (format "\\textbf{%s} " org-clock-string)
-   (format (plist-get info :latex-inactive-timestamp-format)
-	   (concat (org-timestamp-translate (org-element-property :value clock))
-		   (let ((time (org-element-property :duration clock)))
-		     (and time (format " (%s)" time)))))
-   "\\\\"))
-
-
-;;;; Code
-
-(defun org-latex-code (code _contents info)
-  "Transcode a CODE object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (org-latex--text-markup (org-element-property :value code) 'code info))
-
-
-;;;; Drawer
-
-(defun org-latex-drawer (drawer contents info)
-  "Transcode a DRAWER element from Org to LaTeX.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let* ((name (org-element-property :drawer-name drawer))
-	 (output (funcall (plist-get info :latex-format-drawer-function)
-			  name contents)))
-    (org-latex--wrap-label drawer output info)))
-
-
-;;;; Dynamic Block
-
-(defun org-latex-dynamic-block (dynamic-block contents info)
-  "Transcode a DYNAMIC-BLOCK element from Org to LaTeX.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information.  See `org-export-data'."
-  (org-latex--wrap-label dynamic-block contents info))
-
-
-;;;; Entity
-
-(defun org-latex-entity (entity _contents _info)
-  "Transcode an ENTITY object from Org to LaTeX.
-CONTENTS are the definition itself.  INFO is a plist holding
-contextual information."
-  (org-element-property :latex entity))
-
-
-;;;; Example Block
-
-(defun org-latex-example-block (example-block _contents info)
-  "Transcode an EXAMPLE-BLOCK element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (when (org-string-nw-p (org-element-property :value example-block))
-    (let ((environment (or (org-export-read-attribute
-			    :attr_latex example-block :environment)
-			   "verbatim")))
-      (org-latex--wrap-label
-       example-block
-       (format "\\begin{%s}\n%s\\end{%s}"
-	       environment
-	       (org-export-format-code-default example-block info)
-	       environment)
-       info))))
-
-
-;;;; Export Block
-
-(defun org-latex-export-block (export-block _contents _info)
-  "Transcode a EXPORT-BLOCK element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (member (org-element-property :type export-block) '("LATEX" "TEX"))
-    (org-remove-indentation (org-element-property :value export-block))))
-
-
-;;;; Export Snippet
-
-(defun org-latex-export-snippet (export-snippet _contents _info)
-  "Transcode a EXPORT-SNIPPET object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (eq (org-export-snippet-backend export-snippet) 'latex)
-    (org-element-property :value export-snippet)))
-
-
-;;;; Fixed Width
-
-(defun org-latex-fixed-width (fixed-width _contents info)
-  "Transcode a FIXED-WIDTH element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-latex--wrap-label
-   fixed-width
-   (format "\\begin{verbatim}\n%s\\end{verbatim}"
-	   (org-remove-indentation
-	    (org-element-property :value fixed-width)))
-   info))
-
-
-;;;; Footnote Reference
-
-(defun org-latex-footnote-reference (footnote-reference _contents info)
-  "Transcode a FOOTNOTE-REFERENCE element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((label (org-element-property :label footnote-reference)))
-    (concat
-     ;; Insert separator between two footnotes in a row.
-     (let ((prev (org-export-get-previous-element footnote-reference info)))
-       (when (eq (org-element-type prev) 'footnote-reference)
-	 (plist-get info :latex-footnote-separator)))
-     (cond
-      ;; Use `:latex-footnote-defined-format' if the footnote has
-      ;; already been defined.
-      ((not (org-export-footnote-first-reference-p footnote-reference info))
-       (format (plist-get info :latex-footnote-defined-format)
-	       (org-latex--label
-		(org-export-get-footnote-definition footnote-reference info)
-		info t)))
-      ;; Use \footnotemark if reference is within another footnote
-      ;; reference, footnote definition or table cell.
-      ((org-element-lineage footnote-reference
-			    '(footnote-reference footnote-definition table-cell))
-       "\\footnotemark")
-      ;; Otherwise, define it with \footnote command.
-      (t
-       (let ((def (org-export-get-footnote-definition footnote-reference info)))
-	 (concat
-	  (format "\\footnote{%s%s}" (org-trim (org-export-data def info))
-		  ;; Only insert a \label if there exist another
-		  ;; reference to def.
-		  (cond ((not label) "")
-			((org-element-map (plist-get info :parse-tree) 'footnote-reference
-			    (lambda (f)
-			      (and (not (eq f footnote-reference))
-				   (equal (org-element-property :label f) label)
-				   (org-trim (org-latex--label def info t t))))
-			    info t))
-			(t "")))
-	  ;; Retrieve all footnote references within the footnote and
-	  ;; add their definition after it, since LaTeX doesn't support
-	  ;; them inside.
-	  (org-latex--delayed-footnotes-definitions def info))))))))
-
-
-;;;; Headline
-
-(defun org-latex-headline (headline contents info)
-  "Transcode a HEADLINE element from Org to LaTeX.
-CONTENTS holds the contents of the headline.  INFO is a plist
-holding contextual information."
-  (unless (org-element-property :footnote-section-p headline)
-    (let* ((class (plist-get info :latex-class))
-	   (level (org-export-get-relative-level headline info))
-	   (numberedp (org-export-numbered-headline-p headline info))
-	   (class-sectioning (assoc class (plist-get info :latex-classes)))
-	   ;; Section formatting will set two placeholders: one for
-	   ;; the title and the other for the contents.
-	   (section-fmt
-	    (let ((sec (if (functionp (nth 2 class-sectioning))
-			   (funcall (nth 2 class-sectioning) level numberedp)
-			 (nth (1+ level) class-sectioning))))
-	      (cond
-	       ;; No section available for that LEVEL.
-	       ((not sec) nil)
-	       ;; Section format directly returned by a function.  Add
-	       ;; placeholder for contents.
-	       ((stringp sec) (concat sec "\n%s"))
-	       ;; (numbered-section . unnumbered-section)
-	       ((not (consp (cdr sec)))
-		(concat (funcall (if numberedp #'car #'cdr) sec) "\n%s"))
-	       ;; (numbered-open numbered-close)
-	       ((= (length sec) 2)
-		(when numberedp (concat (car sec) "\n%s" (nth 1 sec))))
-	       ;; (num-in num-out no-num-in no-num-out)
-	       ((= (length sec) 4)
-		(if numberedp (concat (car sec) "\n%s" (nth 1 sec))
-		  (concat (nth 2 sec) "\n%s" (nth 3 sec)))))))
-	   ;; Create a temporary export back-end that hard-codes
-	   ;; "\underline" within "\section" and alike.
-	   (section-back-end
-	    (org-export-create-backend
-	     :parent 'latex
-	     :transcoders
-	     '((underline . (lambda (o c i) (format "\\underline{%s}" c))))))
-	   (text
-	    (org-export-data-with-backend
-	     (org-element-property :title headline) section-back-end info))
-	   (todo
-	    (and (plist-get info :with-todo-keywords)
-		 (let ((todo (org-element-property :todo-keyword headline)))
-		   (and todo (org-export-data todo info)))))
-	   (todo-type (and todo (org-element-property :todo-type headline)))
-	   (tags (and (plist-get info :with-tags)
-		      (org-export-get-tags headline info)))
-	   (priority (and (plist-get info :with-priority)
-			  (org-element-property :priority headline)))
-	   ;; Create the headline text along with a no-tag version.
-	   ;; The latter is required to remove tags from toc.
-	   (full-text (funcall (plist-get info :latex-format-headline-function)
-			       todo todo-type priority text tags info))
-	   ;; Associate \label to the headline for internal links.
-	   (headline-label (org-latex--label headline info t t))
-	   (pre-blanks
-	    (make-string (org-element-property :pre-blank headline) ?\n)))
-      (if (or (not section-fmt) (org-export-low-level-p headline info))
-	  ;; This is a deep sub-tree: export it as a list item.  Also
-	  ;; export as items headlines for which no section format has
-	  ;; been found.
-	  (let ((low-level-body
-		 (concat
-		  ;; If headline is the first sibling, start a list.
-		  (when (org-export-first-sibling-p headline info)
-		    (format "\\begin{%s}\n" (if numberedp 'enumerate 'itemize)))
-		  ;; Itemize headline
-		  "\\item"
-		  (and full-text
-		       (string-match-p "\\`[ \t]*\\[" full-text)
-		       "\\relax")
-		  " " full-text "\n"
-		  headline-label
-		  pre-blanks
-		  contents)))
-	    ;; If headline is not the last sibling simply return
-	    ;; LOW-LEVEL-BODY.  Otherwise, also close the list, before
-	    ;; any blank line.
-	    (if (not (org-export-last-sibling-p headline info)) low-level-body
-	      (replace-regexp-in-string
-	       "[ \t\n]*\\'"
-	       (format "\n\\\\end{%s}" (if numberedp 'enumerate 'itemize))
-	       low-level-body)))
-	;; This is a standard headline.  Export it as a section.  Add
-	;; an alternative heading when possible, and when this is not
-	;; identical to the usual heading.
-	(let ((opt-title
-	       (funcall (plist-get info :latex-format-headline-function)
-			todo todo-type priority
-			(org-export-data-with-backend
-			 (org-export-get-alt-title headline info)
-			 section-back-end info)
-			(and (eq (plist-get info :with-tags) t) tags)
-			info))
-	      ;; Maybe end local TOC (see `org-latex-keyword').
-	      (contents
-	       (concat
-		contents
-		(let ((case-fold-search t)
-		      (section
-		       (let ((first (car (org-element-contents headline))))
-			 (and (eq (org-element-type first) 'section) first))))
-		  (org-element-map section 'keyword
-		    (lambda (k)
-		      (and (equal (org-element-property :key k) "TOC")
-			   (let ((v (org-element-property :value k)))
-			     (and (string-match-p "\\<headlines\\>" v)
-				  (string-match-p "\\<local\\>" v)
-				  (format "\\stopcontents[level-%d]" level)))))
-		    info t)))))
-	  (if (and opt-title
-		   (not (equal opt-title full-text))
-		   (string-match "\\`\\\\\\(.+?\\){" section-fmt))
-	      (format (replace-match "\\1[%s]" nil nil section-fmt 1)
-		      ;; Replace square brackets with parenthesis
-		      ;; since square brackets are not supported in
-		      ;; optional arguments.
-		      (replace-regexp-in-string
-		       "\\[" "(" (replace-regexp-in-string "\\]" ")" opt-title))
-		      full-text
-		      (concat headline-label pre-blanks contents))
-	    ;; Impossible to add an alternative heading.  Fallback to
-	    ;; regular sectioning format string.
-	    (format section-fmt full-text
-		    (concat headline-label pre-blanks contents))))))))
-
-(defun org-latex-format-headline-default-function
-    (todo _todo-type priority text tags _info)
-  "Default format function for a headline.
-See `org-latex-format-headline-function' for details."
-  (concat
-   (and todo (format "{\\bfseries\\sffamily %s} " todo))
-   (and priority (format "\\framebox{\\#%c} " priority))
-   text
-   (and tags
-	(format "\\hfill{}\\textsc{%s}"
-		(mapconcat #'org-latex--protect-text tags ":")))))
-
-
-;;;; Horizontal Rule
-
-(defun org-latex-horizontal-rule (horizontal-rule _contents info)
-  "Transcode an HORIZONTAL-RULE object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((attr (org-export-read-attribute :attr_latex horizontal-rule))
-	(prev (org-export-get-previous-element horizontal-rule info)))
-    (concat
-     ;; Make sure the rule doesn't start at the end of the current
-     ;; line by separating it with a blank line from previous element.
-     (when (and prev
-		(let ((prev-blank (org-element-property :post-blank prev)))
-		  (or (not prev-blank) (zerop prev-blank))))
-       "\n")
-     (org-latex--wrap-label
-      horizontal-rule
-      (format "\\noindent\\rule{%s}{%s}"
-	      (or (plist-get attr :width) "\\textwidth")
-	      (or (plist-get attr :thickness) "0.5pt"))
-      info))))
-
-
-;;;; Inline Src Block
-
-(defun org-latex-inline-src-block (inline-src-block _contents info)
-  "Transcode an INLINE-SRC-BLOCK element from Org to LaTeX.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((code (org-element-property :value inline-src-block))
-	 (separator (org-latex--find-verb-separator code)))
-    (cl-case (plist-get info :latex-listings)
-      ;; Do not use a special package: transcode it verbatim.
-      ((nil) (format "\\texttt{%s}" (org-latex--text-markup code 'code info)))
-      ;; Use minted package.
-      (minted
-       (let* ((org-lang (org-element-property :language inline-src-block))
-	      (mint-lang (or (cadr (assq (intern org-lang)
-					 (plist-get info :latex-minted-langs)))
-			     (downcase org-lang)))
-	      (options (org-latex--make-option-string
-			(plist-get info :latex-minted-options))))
-	 (format "\\mintinline%s{%s}{%s}"
-		 (if (string= options "") "" (format "[%s]" options))
-		 mint-lang
-		 code)))
-      ;; Use listings package.
-      (otherwise
-       ;; Maybe translate language's name.
-       (let* ((org-lang (org-element-property :language inline-src-block))
-	      (lst-lang (or (cadr (assq (intern org-lang)
-					(plist-get info :latex-listings-langs)))
-			    org-lang))
-	      (options (org-latex--make-option-string
-			(append (plist-get info :latex-listings-options)
-				`(("language" ,lst-lang))))))
-	 (concat (format "\\lstinline[%s]" options)
-		 separator code separator))))))
-
-
-;;;; Inlinetask
-
-(defun org-latex-inlinetask (inlinetask contents info)
-  "Transcode an INLINETASK element from Org to LaTeX.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let ((title (org-export-data (org-element-property :title inlinetask) info))
-	(todo (and (plist-get info :with-todo-keywords)
-		   (let ((todo (org-element-property :todo-keyword inlinetask)))
-		     (and todo (org-export-data todo info)))))
-	(todo-type (org-element-property :todo-type inlinetask))
-	(tags (and (plist-get info :with-tags)
-		   (org-export-get-tags inlinetask info)))
-	(priority (and (plist-get info :with-priority)
-		       (org-element-property :priority inlinetask)))
-	(contents (concat (org-latex--label inlinetask info) contents)))
-    (funcall (plist-get info :latex-format-inlinetask-function)
-	     todo todo-type priority title tags contents info)))
-
-(defun org-latex-format-inlinetask-default-function
-    (todo _todo-type priority title tags contents _info)
-  "Default format function for inlinetasks.
-See `org-latex-format-inlinetask-function' for details."
-  (let ((full-title
-	 (concat (when todo (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
-		 (when priority (format "\\framebox{\\#%c} " priority))
-		 title
-		 (when tags
-		   (format "\\hfill{}\\textsc{:%s:}"
-			   (mapconcat #'org-latex--protect-text tags ":"))))))
-    (concat "\\begin{center}\n"
-	    "\\fbox{\n"
-	    "\\begin{minipage}[c]{.6\\textwidth}\n"
-	    full-title "\n\n"
-	    (and (org-string-nw-p contents)
-		 (concat "\\rule[.8em]{\\textwidth}{2pt}\n\n" contents))
-	    "\\end{minipage}\n"
-	    "}\n"
-	    "\\end{center}")))
-
-
-;;;; Italic
-
-(defun org-latex-italic (_italic contents info)
-  "Transcode ITALIC from Org to LaTeX.
-CONTENTS is the text with italic markup.  INFO is a plist holding
-contextual information."
-  (org-latex--text-markup contents 'italic info))
-
-
-;;;; Item
-
-(defun org-latex-item (item contents info)
-  "Transcode an ITEM element from Org to LaTeX.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((counter
-	  (let ((count (org-element-property :counter item))
-		(level
-		 ;; Determine level of current item to determine the
-		 ;; correct LaTeX counter to use (enumi, enumii...).
-		 (let ((parent item) (level 0))
-		   (while (memq (org-element-type
-				 (setq parent (org-export-get-parent parent)))
-				'(plain-list item))
-		     (when (and (eq (org-element-type parent) 'plain-list)
-				(eq (org-element-property :type parent)
-				    'ordered))
-		       (cl-incf level)))
-		   level)))
-	    (and count
-		 (< level 5)
-		 (format "\\setcounter{enum%s}{%s}\n"
-			 (nth (1- level) '("i" "ii" "iii" "iv"))
-			 (1- count)))))
-	 (checkbox (cl-case (org-element-property :checkbox item)
-		     (on "$\\boxtimes$")
-		     (off "$\\square$")
-		     (trans "$\\boxminus$")))
-	 (tag (let ((tag (org-element-property :tag item)))
-		(and tag (org-export-data tag info)))))
-    (concat counter
-	    "\\item"
-	    (cond
-	     ((and checkbox tag) (format "[{%s %s}] " checkbox tag))
-	     ((or checkbox tag) (format "[{%s}] " (or checkbox tag)))
-	     ;; Without a tag or a check-box, if CONTENTS starts with
-	     ;; an opening square bracket, add "\relax" to "\item",
-	     ;; unless the brackets comes from an initial export
-	     ;; snippet (i.e. it is inserted willingly by the user).
-	     ((and contents
-		   (string-match-p "\\`[ \t]*\\[" contents)
-		   (not (let ((e (car (org-element-contents item))))
-			  (and (eq (org-element-type e) 'paragraph)
-			       (let ((o (car (org-element-contents e))))
-				 (and (eq (org-element-type o) 'export-snippet)
-				      (eq (org-export-snippet-backend o)
-					  'latex)))))))
-	      "\\relax ")
-	     (t " "))
-	    (and contents (org-trim contents))
-	    ;; If there are footnotes references in tag, be sure to
-	    ;; add their definition at the end of the item.  This
-	    ;; workaround is necessary since "\footnote{}" command is
-	    ;; not supported in tags.
-	    (and tag
-		 (org-latex--delayed-footnotes-definitions
-		  (org-element-property :tag item) info)))))
-
-
-;;;; Keyword
-
-(defun org-latex-keyword (keyword _contents info)
-  "Transcode a KEYWORD element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((key (org-element-property :key keyword))
-	(value (org-element-property :value keyword)))
-    (cond
-     ((string= key "LATEX") value)
-     ((string= key "INDEX") (format "\\index{%s}" value))
-     ((string= key "TOC")
-      (let ((case-fold-search t))
-	(cond
-	 ((string-match-p "\\<headlines\\>" value)
-	  (let* ((localp (string-match-p "\\<local\\>" value))
-		 (parent (org-element-lineage keyword '(headline)))
-		 (level (if (not (and localp parent)) 0
-			  (org-export-get-relative-level parent info)))
-		 (depth
-		  (and (string-match "\\<[0-9]+\\>" value)
-		       (format
-			"\\setcounter{tocdepth}{%d}"
-			(+ (string-to-number (match-string 0 value)) level)))))
-	    (if (and localp parent)
-		;; Start local TOC, assuming package "titletoc" is
-		;; required.
-		(format "\\startcontents[level-%d]
-\\printcontents[level-%d]{}{0}{%s}"
-			level level (or depth ""))
-	      (concat depth (and depth "\n") "\\tableofcontents"))))
-	 ((string-match-p "\\<tables\\>" value) "\\listoftables")
-	 ((string-match-p "\\<listings\\>" value)
-	  (cl-case (plist-get info :latex-listings)
-	    ((nil) "\\listoffigures")
-	    (minted "\\listoflistings")
-	    (otherwise "\\lstlistoflistings")))))))))
-
-
-;;;; Latex Environment
-
-(defun org-latex--environment-type (latex-environment)
-  "Return the TYPE of LATEX-ENVIRONMENT.
-
-The TYPE is determined from the actual latex environment, and
-could be a member of `org-latex-caption-above' or `math'."
-  (let* ((latex-begin-re "\\\\begin{\\([A-Za-z0-9*]+\\)}")
-	 (value (org-remove-indentation
-		 (org-element-property :value latex-environment)))
-	 (env (or (and (string-match latex-begin-re value)
-		       (match-string 1 value))
-		  "")))
-    (cond
-     ((string-match-p org-latex-math-environments-re value) 'math)
-     ((string-match-p
-       (eval-when-compile
-	 (regexp-opt '("table" "longtable" "tabular" "tabu" "longtabu")))
-       env)
-      'table)
-     ((string-match-p "figure" env) 'image)
-     ((string-match-p
-       (eval-when-compile
-	 (regexp-opt '("lstlisting" "listing" "verbatim" "minted")))
-       env)
-      'src-block)
-     (t 'special-block))))
-
-(defun org-latex-latex-environment (latex-environment _contents info)
-  "Transcode a LATEX-ENVIRONMENT element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (plist-get info :with-latex)
-    (let* ((value (org-remove-indentation
-		   (org-element-property :value latex-environment)))
-	   (type (org-latex--environment-type latex-environment))
-	   (caption (if (eq type 'math)
-			(org-latex--label latex-environment info nil t)
-		      (org-latex--caption/label-string latex-environment info)))
-	   (caption-above-p
-	    (memq type (append (plist-get info :latex-caption-above) '(math)))))
-      (if (not (or (org-element-property :name latex-environment)
-		   (org-element-property :caption latex-environment)))
-	  value
-	;; Environment is labeled: label must be within the environment
-	;; (otherwise, a reference pointing to that element will count
-	;; the section instead).  Also insert caption if `latex-environment'
-	;; is not a math environment.
-	(with-temp-buffer
-	  (insert value)
-	  (if caption-above-p
-	      (progn
-		(goto-char (point-min))
-		(forward-line))
-	    (goto-char (point-max))
-	    (forward-line -1))
-	  (insert caption)
-	  (buffer-string))))))
-
-;;;; Latex Fragment
-
-(defun org-latex-latex-fragment (latex-fragment _contents _info)
-  "Transcode a LATEX-FRAGMENT object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((value (org-element-property :value latex-fragment)))
-    ;; Trim math markers since the fragment is enclosed within
-    ;; a latex-math-block object anyway.
-    (cond ((string-match-p "\\`\\$[^$]" value) (substring value 1 -1))
-	  ((string-prefix-p "\\(" value) (substring value 2 -2))
-	  (t value))))
-
-
-;;;; Line Break
-
-(defun org-latex-line-break (_line-break _contents _info)
-  "Transcode a LINE-BREAK object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  "\\\\\n")
-
-
-;;;; Link
-
-(defun org-latex-image-link-filter (data _backend info)
-  (org-export-insert-image-links data info org-latex-inline-image-rules))
-
-(defun org-latex--inline-image (link info)
-  "Return LaTeX code for an inline image.
-LINK is the link pointing to the inline image.  INFO is a plist
-used as a communication channel."
-  (let* ((parent (org-export-get-parent-element link))
-	 (path (let ((raw-path (org-element-property :path link)))
-		 (if (not (file-name-absolute-p raw-path)) raw-path
-		   (expand-file-name raw-path))))
-	 (filetype (file-name-extension path))
-	 (caption (org-latex--caption/label-string parent info))
-	 (caption-above-p (org-latex--caption-above-p link info))
-	 ;; Retrieve latex attributes from the element around.
-	 (attr (org-export-read-attribute :attr_latex parent))
-	 (float (let ((float (plist-get attr :float)))
-		  (cond ((string= float "wrap") 'wrap)
-			((string= float "sideways") 'sideways)
-			((string= float "multicolumn") 'multicolumn)
-			((and (plist-member attr :float) (not float)) 'nonfloat)
-			((or float
-			     (org-element-property :caption parent)
-			     (org-string-nw-p (plist-get attr :caption)))
-			 'figure)
-			(t 'nonfloat))))
-	 (placement
-	  (let ((place (plist-get attr :placement)))
-	    (cond
-	     (place (format "%s" place))
-	     ((eq float 'wrap) "{l}{0.5\\textwidth}")
-	     ((eq float 'figure)
-	      (format "[%s]" (plist-get info :latex-default-figure-position)))
-	     (t ""))))
-	 (center
-	  (if (plist-member attr :center) (plist-get attr :center)
-	    (plist-get info :latex-images-centered)))
-	 (comment-include (if (plist-get attr :comment-include) "%" ""))
-	 ;; It is possible to specify width and height in the
-	 ;; ATTR_LATEX line, and also via default variables.
-	 (width (cond ((plist-get attr :width))
-		      ((plist-get attr :height) "")
-		      ((eq float 'wrap) "0.48\\textwidth")
-		      (t (plist-get info :latex-image-default-width))))
-	 (height (cond ((plist-get attr :height))
-		       ((or (plist-get attr :width)
-			    (memq float '(figure wrap))) "")
-		       (t (plist-get info :latex-image-default-height))))
-	 (options (let ((opt (or (plist-get attr :options)
-				 (plist-get info :latex-image-default-option))))
-		    (if (not (string-match "\\`\\[\\(.*\\)\\]\\'" opt)) opt
-		      (match-string 1 opt))))
-	 image-code)
-    (if (member filetype '("tikz" "pgf"))
-	;; For tikz images:
-	;; - use \input to read in image file.
-	;; - if options are present, wrap in a tikzpicture environment.
-	;; - if width or height are present, use \resizebox to change
-	;;   the image size.
-	(progn
-	  (setq image-code (format "\\input{%s}" path))
-	  (when (org-string-nw-p options)
-	    (setq image-code
-		  (format "\\begin{tikzpicture}[%s]\n%s\n\\end{tikzpicture}"
-			  options
-			  image-code)))
-	  (when (or (org-string-nw-p width) (org-string-nw-p height))
-	    (setq image-code (format "\\resizebox{%s}{%s}{%s}"
-				     (if (org-string-nw-p width) width "!")
-				     (if (org-string-nw-p height) height "!")
-				     image-code))))
-      ;; For other images:
-      ;; - add width and height to options.
-      ;; - include the image with \includegraphics.
-      (when (org-string-nw-p width)
-	(setq options (concat options ",width=" width)))
-      (when (org-string-nw-p height)
-	(setq options (concat options ",height=" height)))
-      (let ((search-option (org-element-property :search-option link)))
-        (when (and search-option
-                   (equal filetype "pdf")
-                   (string-match-p "\\`[0-9]+\\'" search-option)
-                   (not (string-match-p "page=" options)))
-          (setq options (concat options ",page=" search-option))))
-      (setq image-code
-	    (format "\\includegraphics%s{%s}"
-		    (cond ((not (org-string-nw-p options)) "")
-			  ((string-prefix-p "," options)
-			   (format "[%s]" (substring options 1)))
-			  (t (format "[%s]" options)))
-		    path))
-      (when (equal filetype "svg")
-	(setq image-code (replace-regexp-in-string "^\\\\includegraphics"
-						   "\\includesvg"
-						   image-code
-						   nil t))
-	(setq image-code (replace-regexp-in-string "\\.svg}"
-						   "}"
-						   image-code
-						   nil t))))
-    ;; Return proper string, depending on FLOAT.
-    (pcase float
-      (`wrap (format "\\begin{wrapfigure}%s
-%s%s
-%s%s
-%s\\end{wrapfigure}"
-		     placement
-		     (if caption-above-p caption "")
-		     (if center "\\centering" "")
-		     comment-include image-code
-		     (if caption-above-p "" caption)))
-      (`sideways (format "\\begin{sidewaysfigure}
-%s%s
-%s%s
-%s\\end{sidewaysfigure}"
-			 (if caption-above-p caption "")
-			 (if center "\\centering" "")
-			 comment-include image-code
-			 (if caption-above-p "" caption)))
-      (`multicolumn (format "\\begin{figure*}%s
-%s%s
-%s%s
-%s\\end{figure*}"
-			    placement
-			    (if caption-above-p caption "")
-			    (if center "\\centering" "")
-			    comment-include image-code
-			    (if caption-above-p "" caption)))
-      (`figure (format "\\begin{figure}%s
-%s%s
-%s%s
-%s\\end{figure}"
-		       placement
-		       (if caption-above-p caption "")
-		       (if center "\\centering" "")
-		       comment-include image-code
-		       (if caption-above-p "" caption)))
-      ((guard center)
-       (format "\\begin{center}
-%s%s
-%s\\end{center}"
-	       (if caption-above-p caption "")
-	       image-code
-	       (if caption-above-p "" caption)))
-      (_
-       (concat (if caption-above-p caption "")
-	       image-code
-	       (if caption-above-p caption ""))))))
-
-(defun org-latex-link (link desc info)
-  "Transcode a LINK object from Org to LaTeX.
-
-DESC is the description part of the link, or the empty string.
-INFO is a plist holding contextual information.  See
-`org-export-data'."
-  (let* ((type (org-element-property :type link))
-	 (raw-path (org-element-property :path link))
-	 ;; Ensure DESC really exists, or set it to nil.
-	 (desc (and (not (string= desc "")) desc))
-	 (imagep (org-export-inline-image-p
-		  link (plist-get info :latex-inline-image-rules)))
-	 (path (org-latex--protect-text
-		(cond ((member type '("http" "https" "ftp" "mailto" "doi"))
-		       (concat type ":" raw-path))
-		      ((string= type "file") (org-export-file-uri raw-path))
-		      (t raw-path)))))
-    (cond
-     ;; Link type is handled by a special function.
-     ((org-export-custom-protocol-maybe link desc 'latex))
-     ;; Image file.
-     (imagep (org-latex--inline-image link info))
-     ;; Radio link: Transcode target's contents and use them as link's
-     ;; description.
-     ((string= type "radio")
-      (let ((destination (org-export-resolve-radio-link link info)))
-	(if (not destination) desc
-	  (format "\\hyperref[%s]{%s}"
-		  (org-export-get-reference destination info)
-		  desc))))
-     ;; Links pointing to a headline: Find destination and build
-     ;; appropriate referencing command.
-     ((member type '("custom-id" "fuzzy" "id"))
-      (let ((destination (if (string= type "fuzzy")
-			     (org-export-resolve-fuzzy-link link info)
-			   (org-export-resolve-id-link link info))))
-	(cl-case (org-element-type destination)
-	  ;; Id link points to an external file.
-	  (plain-text
-	   (if desc (format "\\href{%s}{%s}" destination desc)
-	     (format "\\url{%s}" destination)))
-	  ;; Fuzzy link points nowhere.
-	  ((nil)
-	   (format (plist-get info :latex-link-with-unknown-path-format)
-		   (or desc
-		       (org-export-data
-			(org-element-property :raw-link link) info))))
-	  ;; LINK points to a headline.  If headlines are numbered
-	  ;; and the link has no description, display headline's
-	  ;; number.  Otherwise, display description or headline's
-	  ;; title.
-	  (headline
-	   (let ((label (org-latex--label destination info t)))
-	     (if (and (not desc)
-		      (org-export-numbered-headline-p destination info))
-		 (format "\\ref{%s}" label)
-	       (format "\\hyperref[%s]{%s}" label
-		       (or desc
-			   (org-export-data
-			    (org-element-property :title destination) info))))))
-          ;; Fuzzy link points to a target.  Do as above.
-	  (otherwise
-	   (let ((ref (org-latex--label destination info t)))
-	     (if (not desc) (format "\\ref{%s}" ref)
-	       (format "\\hyperref[%s]{%s}" ref desc)))))))
-     ;; Coderef: replace link with the reference name or the
-     ;; equivalent line number.
-     ((string= type "coderef")
-      (format (org-export-get-coderef-format path desc)
-	      (org-export-resolve-coderef path info)))
-     ;; External link with a description part.
-     ((and path desc) (format "\\href{%s}{%s}" path desc))
-     ;; External link without a description part.
-     (path (format "\\url{%s}" path))
-     ;; No path, only description.  Try to do something useful.
-     (t (format (plist-get info :latex-link-with-unknown-path-format) desc)))))
-
-
-;;;; Node Property
-
-(defun org-latex-node-property (node-property _contents _info)
-  "Transcode a NODE-PROPERTY element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "%s:%s"
-          (org-element-property :key node-property)
-          (let ((value (org-element-property :value node-property)))
-            (if value (concat " " value) ""))))
-
-
-;;;; Paragraph
-
-(defun org-latex-paragraph (_paragraph contents _info)
-  "Transcode a PARAGRAPH element from Org to LaTeX.
-CONTENTS is the contents of the paragraph, as a string.  INFO is
-the plist used as a communication channel."
-  contents)
-
-
-;;;; Plain List
-
-(defun org-latex-plain-list (plain-list contents info)
-  "Transcode a PLAIN-LIST element from Org to LaTeX.
-CONTENTS is the contents of the list.  INFO is a plist holding
-contextual information."
-  (let* ((type (org-element-property :type plain-list))
-	 (attr (org-export-read-attribute :attr_latex plain-list))
-	 (latex-type (let ((env (plist-get attr :environment)))
-		       (cond (env (format "%s" env))
-			     ((eq type 'ordered) "enumerate")
-			     ((eq type 'descriptive) "description")
-			     (t "itemize")))))
-    (org-latex--wrap-label
-     plain-list
-     (format "\\begin{%s}%s\n%s\\end{%s}"
-	     latex-type
-	     (or (plist-get attr :options) "")
-	     contents
-	     latex-type)
-     info)))
-
-
-;;;; Plain Text
-
-(defun org-latex-plain-text (text info)
-  "Transcode a TEXT string from Org to LaTeX.
-TEXT is the string to transcode.  INFO is a plist holding
-contextual information."
-  (let* ((specialp (plist-get info :with-special-strings))
-	 (output
-	  ;; Turn LaTeX into \LaTeX{} and TeX into \TeX{}.
-	  (let ((case-fold-search nil))
-	    (replace-regexp-in-string
-	     "\\<\\(?:La\\)?TeX\\>" "\\\\\\&{}"
-	     ;; Protect ^, ~, %, #, &, $, _, { and }.  Also protect \.
-	     ;; However, if special strings are used, be careful not
-	     ;; to protect "\" in "\-" constructs.
-	     (replace-regexp-in-string
-	      (concat "[%$#&{}_~^]\\|\\\\" (and specialp "\\([^-]\\|$\\)"))
-	      (lambda (m)
-		(cl-case (string-to-char m)
-		  (?\\ "$\\\\backslash$\\1")
-		  (?~ "\\\\textasciitilde{}")
-		  (?^ "\\\\^{}")
-		  (t "\\\\\\&")))
-	      text)))))
-    ;; Activate smart quotes.  Be sure to provide original TEXT string
-    ;; since OUTPUT may have been modified.
-    (when (plist-get info :with-smart-quotes)
-      (setq output (org-export-activate-smart-quotes output :latex info text)))
-    ;; Convert special strings.
-    (when specialp
-      (setq output (replace-regexp-in-string "\\.\\.\\." "\\\\ldots{}" output)))
-    ;; Handle break preservation if required.
-    (when (plist-get info :preserve-breaks)
-      (setq output (replace-regexp-in-string
-		    "\\(?:[ \t]*\\\\\\\\\\)?[ \t]*\n" "\\\\\n" output nil t)))
-    ;; Return value.
-    output))
-
-
-;;;; Planning
-
-(defun org-latex-planning (planning _contents info)
-  "Transcode a PLANNING element from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (concat
-   "\\noindent"
-   (mapconcat
-    'identity
-    (delq nil
-	  (list
-	   (let ((closed (org-element-property :closed planning)))
-	     (when closed
-	       (concat
-		(format "\\textbf{%s} " org-closed-string)
-		(format (plist-get info :latex-inactive-timestamp-format)
-			(org-timestamp-translate closed)))))
-	   (let ((deadline (org-element-property :deadline planning)))
-	     (when deadline
-	       (concat
-		(format "\\textbf{%s} " org-deadline-string)
-		(format (plist-get info :latex-active-timestamp-format)
-			(org-timestamp-translate deadline)))))
-	   (let ((scheduled (org-element-property :scheduled planning)))
-	     (when scheduled
-	       (concat
-		(format "\\textbf{%s} " org-scheduled-string)
-		(format (plist-get info :latex-active-timestamp-format)
-			(org-timestamp-translate scheduled)))))))
-    " ")
-   "\\\\"))
-
-
-;;;; Property Drawer
-
-(defun org-latex-property-drawer (_property-drawer contents _info)
-  "Transcode a PROPERTY-DRAWER element from Org to LaTeX.
-CONTENTS holds the contents of the drawer.  INFO is a plist
-holding contextual information."
-  (and (org-string-nw-p contents)
-       (format "\\begin{verbatim}\n%s\\end{verbatim}" contents)))
-
-
-;;;; Pseudo Element: LaTeX Matrices
-
-;; `latex-matrices' elements have the following properties:
-;; `:caption', `:post-blank' and `:markup' (`inline', `equation' or
-;; `math').
-
-(defun org-latex--wrap-latex-matrices (data info)
-  "Merge contiguous tables with the same mode within a pseudo-element.
-DATA is a parse tree or a secondary string.  INFO is a plist
-containing export options.  Modify DATA by side-effect and return
-it."
-  (org-element-map data 'table
-    (lambda (table)
-      (when (eq (org-element-property :type table) 'org)
-	(let ((mode (or (org-export-read-attribute :attr_latex table :mode)
-			(plist-get info :latex-default-table-mode))))
-	  (when (and (member mode '("inline-math" "math"))
-		     ;; Do not wrap twice the same table.
-		     (not (eq (org-element-type
-			       (org-element-property :parent table))
-			      'latex-matrices)))
-	    (let* ((caption (and (not (string= mode "inline-math"))
-				 (org-element-property :caption table)))
-		   (matrices
-		    (list 'latex-matrices
-			  (list :caption caption
-				:markup
-				(cond ((string= mode "inline-math") 'inline)
-				      (caption 'equation)
-				      (t 'math)))))
-		   (previous table)
-		   (next (org-export-get-next-element table info)))
-	      (org-element-insert-before matrices table)
-	      ;; Swallow all contiguous tables sharing the same mode.
-	      (while (and
-		      (zerop (or (org-element-property :post-blank previous) 0))
-		      (setq next (org-export-get-next-element previous info))
-		      (eq (org-element-type next) 'table)
-		      (eq (org-element-property :type next) 'org)
-		      (string= (or (org-export-read-attribute
-				    :attr_latex next :mode)
-				   (plist-get info :latex-default-table-mode))
-			       mode))
-		(org-element-extract-element previous)
-		(org-element-adopt-elements matrices previous)
-		(setq previous next))
-	      ;; Inherit `:post-blank' from the value of the last
-	      ;; swallowed table.  Set the latter's `:post-blank'
-	      ;; value to 0 so as to not duplicate empty lines.
-	      (org-element-put-property
-	       matrices :post-blank (org-element-property :post-blank previous))
-	      (org-element-put-property previous :post-blank 0)
-	      (org-element-extract-element previous)
-	      (org-element-adopt-elements matrices previous))))))
-    info)
-  data)
-
-(defun org-latex-matrices (matrices contents _info)
-  "Transcode a MATRICES element from Org to LaTeX.
-CONTENTS is a string.  INFO is a plist used as a communication
-channel."
-  (format (cl-case (org-element-property :markup matrices)
-	    (inline "\\(%s\\)")
-	    (equation "\\begin{equation}\n%s\\end{equation}")
-	    (t "\\[\n%s\\]"))
-	  contents))
-
-
-;;;; Pseudo Object: LaTeX Math Block
-
-;; `latex-math-block' objects have the following property:
-;; `:post-blank'.
-
-(defun org-latex--wrap-latex-math-block (data info)
-  "Merge contiguous math objects in a pseudo-object container.
-DATA is a parse tree or a secondary string.  INFO is a plist
-containing export options.  Modify DATA by side-effect and return it."
-  (let ((valid-object-p
-	 ;; Non-nil when OBJ can be added to the latex math block B.
-	 (lambda (obj b)
-	   (pcase (org-element-type obj)
-	     (`entity (org-element-property :latex-math-p obj))
-	     (`latex-fragment
-	      (let ((value (org-element-property :value obj)))
-		(or (string-prefix-p "\\(" value)
-		    (string-match-p "\\`\\$[^$]" value))))
-	     ((and type (or `subscript `superscript))
-	      (not (memq type (mapcar #'org-element-type
-				      (org-element-contents b)))))))))
-    (org-element-map data '(entity latex-fragment subscript superscript)
-      (lambda (object)
-	;; Skip objects already wrapped.
-	(when (and (not (eq (org-element-type
-			     (org-element-property :parent object))
-			    'latex-math-block))
-		   (funcall valid-object-p object nil))
-	  (let ((math-block (list 'latex-math-block nil))
-		(next-elements (org-export-get-next-element object info t))
-		(last object))
-	    ;; Wrap MATH-BLOCK around OBJECT in DATA.
-	    (org-element-insert-before math-block object)
-	    (org-element-extract-element object)
-	    (org-element-adopt-elements math-block object)
-	    (when (zerop (or (org-element-property :post-blank object) 0))
-	      ;; MATH-BLOCK swallows consecutive math objects.
-	      (catch 'exit
-		(dolist (next next-elements)
-		  (unless (funcall valid-object-p next math-block)
-		    (throw 'exit nil))
-		  (org-element-extract-element next)
-		  (org-element-adopt-elements math-block next)
-		  ;; Eschew the case: \beta$x$ -> \(\betax\).
-		  (unless (memq (org-element-type next)
-				'(subscript superscript))
-		    (org-element-put-property last :post-blank 1))
-		  (setq last next)
-		  (when (> (or (org-element-property :post-blank next) 0) 0)
-		    (throw 'exit nil)))))
-	    (org-element-put-property
-	     math-block :post-blank (org-element-property :post-blank last)))))
-      info nil '(subscript superscript latex-math-block) t)
-    ;; Return updated DATA.
-    data))
-
-(defun org-latex-math-block (_math-block contents _info)
-  "Transcode a MATH-BLOCK object from Org to LaTeX.
-CONTENTS is a string.  INFO is a plist used as a communication
-channel."
-  (when (org-string-nw-p contents)
-    (format "\\(%s\\)" (org-trim contents))))
-
-;;;; Quote Block
-
-(defun org-latex-quote-block (quote-block contents info)
-  "Transcode a QUOTE-BLOCK element from Org to LaTeX.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (org-latex--wrap-label
-   quote-block (format "\\begin{quote}\n%s\\end{quote}" contents) info))
-
-
-;;;; Radio Target
-
-(defun org-latex-radio-target (radio-target text info)
-  "Transcode a RADIO-TARGET object from Org to LaTeX.
-TEXT is the text of the target.  INFO is a plist holding
-contextual information."
-  (format "\\label{%s}%s" (org-export-get-reference radio-target info) text))
-
-
-;;;; Section
-
-(defun org-latex-section (_section contents _info)
-  "Transcode a SECTION element from Org to LaTeX.
-CONTENTS holds the contents of the section.  INFO is a plist
-holding contextual information."
-  contents)
-
-
-;;;; Special Block
-
-(defun org-latex-special-block (special-block contents info)
-  "Transcode a SPECIAL-BLOCK element from Org to LaTeX.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let ((type (org-element-property :type special-block))
-	(opt (org-export-read-attribute :attr_latex special-block :options))
-	(caption (org-latex--caption/label-string special-block info))
-	(caption-above-p (org-latex--caption-above-p special-block info)))
-    (concat (format "\\begin{%s}%s\n" type (or opt ""))
-	    (and caption-above-p caption)
-	    contents
-	    (and (not caption-above-p) caption)
-	    (format "\\end{%s}" type))))
-
-
-;;;; Src Block
-
-(defun org-latex-src-block (src-block _contents info)
-  "Transcode a SRC-BLOCK element from Org to LaTeX.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (when (org-string-nw-p (org-element-property :value src-block))
-    (let* ((lang (org-element-property :language src-block))
-	   (caption (org-element-property :caption src-block))
-	   (caption-above-p (org-latex--caption-above-p src-block info))
-	   (label (org-element-property :name src-block))
-	   (custom-env (and lang
-			    (cadr (assq (intern lang)
-					org-latex-custom-lang-environments))))
-	   (num-start (org-export-get-loc src-block info))
-	   (retain-labels (org-element-property :retain-labels src-block))
-	   (attributes (org-export-read-attribute :attr_latex src-block))
-	   (float (plist-get attributes :float))
-	   (listings (plist-get info :latex-listings)))
-      (cond
-       ;; Case 1.  No source fontification.
-       ((not listings)
-	(let* ((caption-str (org-latex--caption/label-string src-block info))
-	       (float-env
-		(cond ((string= "multicolumn" float)
-		       (format "\\begin{figure*}[%s]\n%s%%s\n%s\\end{figure*}"
-			       (plist-get info :latex-default-figure-position)
-			       (if caption-above-p caption-str "")
-			       (if caption-above-p "" caption-str)))
-		      (caption (concat
-				(if caption-above-p caption-str "")
-				"%s"
-				(if caption-above-p "" (concat "\n" caption-str))))
-		      (t "%s"))))
-	  (format
-	   float-env
-	   (concat (format "\\begin{verbatim}\n%s\\end{verbatim}"
-			   (org-export-format-code-default src-block info))))))
-       ;; Case 2.  Custom environment.
-       (custom-env
-	(let ((caption-str (org-latex--caption/label-string src-block info))
-              (formatted-src (org-export-format-code-default src-block info)))
-          (if (string-match-p "\\`[a-zA-Z0-9]+\\'" custom-env)
-	      (format "\\begin{%s}\n%s\\end{%s}\n"
-		      custom-env
-		      (concat (and caption-above-p caption-str)
-			      formatted-src
-			      (and (not caption-above-p) caption-str))
-		      custom-env)
-	    (format-spec custom-env
-			 `((?s . ,formatted-src)
-			   (?c . ,caption)
-			   (?f . ,float)
-			   (?l . ,(org-latex--label src-block info))
-			   (?o . ,(or (plist-get attributes :options) "")))))))
-       ;; Case 3.  Use minted package.
-       ((eq listings 'minted)
-	(let* ((caption-str (org-latex--caption/label-string src-block info))
-	       (float-env
-		(cond
-		 ((string= "multicolumn" float)
-		  (format "\\begin{listing*}[%s]\n%s%%s\n%s\\end{listing*}"
-			  (plist-get info :latex-default-figure-position)
-			  (if caption-above-p caption-str "")
-			  (if caption-above-p "" caption-str)))
-		 (caption
-		  (format "\\begin{listing}[%s]\n%s%%s\n%s\\end{listing}"
-			  (plist-get info :latex-default-figure-position)
-			  (if caption-above-p caption-str "")
-			  (if caption-above-p "" caption-str)))
-		 ((string= "t" float)
-		  (concat (format "\\begin{listing}[%s]\n"
-				  (plist-get info :latex-default-figure-position))
-			  "%s\n\\end{listing}"))
-		 (t "%s")))
-	       (options (plist-get info :latex-minted-options))
-	       (body
-		(format
-		 "\\begin{minted}[%s]{%s}\n%s\\end{minted}"
-		 ;; Options.
-		 (concat
-		  (org-latex--make-option-string
-		   (if (or (not num-start) (assoc "linenos" options))
-		       options
-		     (append
-		      `(("linenos")
-			("firstnumber" ,(number-to-string (1+ num-start))))
-		      options)))
-		  (let ((local-options (plist-get attributes :options)))
-		    (and local-options (concat "," local-options))))
-		 ;; Language.
-		 (or (cadr (assq (intern lang)
-				 (plist-get info :latex-minted-langs)))
-		     (downcase lang))
-		 ;; Source code.
-		 (let* ((code-info (org-export-unravel-code src-block))
-			(max-width
-			 (apply 'max
-				(mapcar 'length
-					(org-split-string (car code-info)
-							  "\n")))))
-		   (org-export-format-code
-		    (car code-info)
-		    (lambda (loc _num ref)
-		      (concat
-		       loc
-		       (when ref
-			 ;; Ensure references are flushed to the right,
-			 ;; separated with 6 spaces from the widest line
-			 ;; of code.
-			 (concat (make-string (+ (- max-width (length loc)) 6)
-					      ?\s)
-				 (format "(%s)" ref)))))
-		    nil (and retain-labels (cdr code-info)))))))
-	  ;; Return value.
-	  (format float-env body)))
-       ;; Case 4.  Use listings package.
-       (t
-	(let ((lst-lang
-	       (or (cadr (assq (intern lang)
-			       (plist-get info :latex-listings-langs)))
-		   lang))
-	      (caption-str
-	       (when caption
-		 (let ((main (org-export-get-caption src-block))
-		       (secondary (org-export-get-caption src-block t)))
-		   (if (not secondary)
-		       (format "{%s}" (org-export-data main info))
-		     (format "{[%s]%s}"
-			     (org-export-data secondary info)
-			     (org-export-data main info))))))
-	      (lst-opt (plist-get info :latex-listings-options)))
-	  (concat
-	   ;; Options.
-	   (format
-	    "\\lstset{%s}\n"
-	    (concat
-	     (org-latex--make-option-string
-	      (append
-	       lst-opt
-	       (cond
-		((and (not float) (plist-member attributes :float)) nil)
-		((string= "multicolumn" float) '(("float" "*")))
-		((and float (not (assoc "float" lst-opt)))
-		 `(("float" ,(plist-get info :latex-default-figure-position)))))
-	       `(("language" ,lst-lang))
-	       (if label
-		   `(("label" ,(org-latex--label src-block info)))
-		 '(("label" " ")))
-	       (if caption-str `(("caption" ,caption-str)) '(("caption" " ")))
-	       `(("captionpos" ,(if caption-above-p "t" "b")))
-	       (cond ((assoc "numbers" lst-opt) nil)
-		     ((not num-start) '(("numbers" "none")))
-		     (t `(("firstnumber" ,(number-to-string (1+ num-start)))
-			  ("numbers" "left"))))))
-	     (let ((local-options (plist-get attributes :options)))
-	       (and local-options (concat "," local-options)))))
-	   ;; Source code.
-	   (format
-	    "\\begin{lstlisting}\n%s\\end{lstlisting}"
-	    (let* ((code-info (org-export-unravel-code src-block))
-		   (max-width
-		    (apply 'max
-			   (mapcar 'length
-				   (org-split-string (car code-info) "\n")))))
-	      (org-export-format-code
-	       (car code-info)
-	       (lambda (loc _num ref)
-		 (concat
-		  loc
-		  (when ref
-		    ;; Ensure references are flushed to the right,
-		    ;; separated with 6 spaces from the widest line of
-		    ;; code
-		    (concat (make-string (+ (- max-width (length loc)) 6) ?\s)
-			    (format "(%s)" ref)))))
-	       nil (and retain-labels (cdr code-info))))))))))))
-
-
-;;;; Statistics Cookie
-
-(defun org-latex-statistics-cookie (statistics-cookie _contents _info)
-  "Transcode a STATISTICS-COOKIE object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (replace-regexp-in-string
-   "%" "\\%" (org-element-property :value statistics-cookie) nil t))
-
-
-;;;; Strike-Through
-
-(defun org-latex-strike-through (_strike-through contents info)
-  "Transcode STRIKE-THROUGH from Org to LaTeX.
-CONTENTS is the text with strike-through markup.  INFO is a plist
-holding contextual information."
-  (org-latex--text-markup contents 'strike-through info))
-
-
-;;;; Subscript
-
-(defun org-latex--script-size (object info)
-  "Transcode a subscript or superscript object.
-OBJECT is an Org object.  INFO is a plist used as a communication
-channel."
-  (let ((output ""))
-    (org-element-map (org-element-contents object)
-	(cons 'plain-text org-element-all-objects)
-      (lambda (obj)
-	(cl-case (org-element-type obj)
-	  ((entity latex-fragment)
-	   (let ((data (org-trim (org-export-data obj info))))
-	     (string-match
-	      "\\`\\(?:\\\\[([]\\|\\$+\\)?\\(.*?\\)\\(?:\\\\[])]\\|\\$+\\)?\\'"
-	      data)
-	     (setq output
-		   (concat output
-			   (match-string 1 data)
-			   (let ((blank (org-element-property :post-blank obj)))
-			     (and blank (> blank 0) "\\ "))))))
-	  (plain-text
-	   (setq output
-		 (format "%s\\text{%s}" output (org-export-data obj info))))
-	  (otherwise
-	   (setq output
-		 (concat output
-			 (org-export-data obj info)
-			 (let ((blank (org-element-property :post-blank obj)))
-			   (and blank (> blank 0) "\\ ")))))))
-      info nil org-element-recursive-objects)
-    ;; Result.  Do not wrap into curly brackets if OUTPUT is a single
-    ;; character.
-    (concat (if (eq (org-element-type object) 'subscript) "_" "^")
-	    (and (> (length output) 1) "{")
-	    output
-	    (and (> (length output) 1) "}"))))
-
-(defun org-latex-subscript (subscript _contents info)
-  "Transcode a SUBSCRIPT object from Org to LaTeX.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (org-latex--script-size subscript info))
-
-
-;;;; Superscript
-
-(defun org-latex-superscript (superscript _contents info)
-  "Transcode a SUPERSCRIPT object from Org to LaTeX.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (org-latex--script-size superscript info))
-
-
-;;;; Table
-;;
-;; `org-latex-table' is the entry point for table transcoding.  It
-;; takes care of tables with a "verbatim" mode.  Otherwise, it
-;; delegates the job to either `org-latex--table.el-table',
-;; `org-latex--org-table' or `org-latex--math-table' functions,
-;; depending of the type of the table and the mode requested.
-;;
-;; `org-latex--align-string' is a subroutine used to build alignment
-;; string for Org tables.
-
-(defun org-latex-table (table contents info)
-  "Transcode a TABLE element from Org to LaTeX.
-CONTENTS is the contents of the table.  INFO is a plist holding
-contextual information."
-  (if (eq (org-element-property :type table) 'table.el)
-      ;; "table.el" table.  Convert it using appropriate tools.
-      (org-latex--table.el-table table info)
-    (let ((type (or (org-export-read-attribute :attr_latex table :mode)
-		    (plist-get info :latex-default-table-mode))))
-      (cond
-       ;; Case 1: Verbatim table.
-       ((string= type "verbatim")
-	(format "\\begin{verbatim}\n%s\n\\end{verbatim}"
-		;; Re-create table, without affiliated keywords.
-		(org-trim (org-element-interpret-data
-			   `(table nil ,@(org-element-contents table))))))
-       ;; Case 2: Matrix.
-       ((or (string= type "math") (string= type "inline-math"))
-	(org-latex--math-table table info))
-       ;; Case 3: Standard table.
-       (t (concat (org-latex--org-table table contents info)
-		  ;; When there are footnote references within the
-		  ;; table, insert their definition just after it.
-		  (org-latex--delayed-footnotes-definitions table info)))))))
-
-(defun org-latex--align-string (table info &optional math?)
-  "Return an appropriate LaTeX alignment string.
-TABLE is the considered table.  INFO is a plist used as
-a communication channel.  When optional argument MATH? is
-non-nil, TABLE is meant to be a matrix, where all cells are
-centered."
-  (or (org-export-read-attribute :attr_latex table :align)
-      (let (align)
-	;; Extract column groups and alignment from first (non-rule)
-	;; row.
-	(org-element-map
-	    (org-element-map table 'table-row
-	      (lambda (row)
-		(and (eq (org-element-property :type row) 'standard) row))
-	      info 'first-match)
-	    'table-cell
-	  (lambda (cell)
-	    (let ((borders (org-export-table-cell-borders cell info)))
-	      ;; Check left border for the first cell only.
-	      (when (and (memq 'left borders) (not align))
-		(push "|" align))
-	      (push (if math? "c"	;center cells in matrices
-		      (cl-case (org-export-table-cell-alignment cell info)
-			(left "l")
-			(right "r")
-			(center "c")))
-		    align)
-	      (when (memq 'right borders) (push "|" align))))
-	  info)
-	(apply 'concat (nreverse align)))))
-
-(defun org-latex--org-table (table contents info)
-  "Return appropriate LaTeX code for an Org table.
-
-TABLE is the table type element to transcode.  CONTENTS is its
-contents, as a string.  INFO is a plist used as a communication
-channel.
-
-This function assumes TABLE has `org' as its `:type' property and
-`table' as its `:mode' attribute."
-  (let* ((caption (org-latex--caption/label-string table info))
-	 (attr (org-export-read-attribute :attr_latex table))
-	 ;; Determine alignment string.
-	 (alignment (org-latex--align-string table info))
-	 ;; Determine environment for the table: longtable, tabular...
-	 (table-env (or (plist-get attr :environment)
-			(plist-get info :latex-default-table-environment)))
-	 ;; If table is a float, determine environment: table, table*
-	 ;; or sidewaystable.
-	 (float-env (unless (member table-env '("longtable" "longtabu"))
-		      (let ((float (plist-get attr :float)))
-			(cond
-			 ((and (not float) (plist-member attr :float)) nil)
-			 ((or (string= float "sidewaystable")
-			      (string= float "sideways")) "sidewaystable")
-			 ((string= float "multicolumn") "table*")
-			 ((or float
-			      (org-element-property :caption table)
-			      (org-string-nw-p (plist-get attr :caption)))
-			  "table")))))
-	 ;; Extract others display options.
-	 (fontsize (let ((font (plist-get attr :font)))
-		     (and font (concat font "\n"))))
-	 ;; "tabular" environment doesn't allow to define a width.
-	 (width (and (not (equal table-env "tabular")) (plist-get attr :width)))
-	 (spreadp (plist-get attr :spread))
-	 (placement
-	  (or (plist-get attr :placement)
-	      (format "[%s]" (plist-get info :latex-default-figure-position))))
-	 (centerp (if (plist-member attr :center) (plist-get attr :center)
-		    (plist-get info :latex-tables-centered)))
-	 (caption-above-p (org-latex--caption-above-p table info)))
-    ;; Prepare the final format string for the table.
-    (cond
-     ;; Longtable.
-     ((equal "longtable" table-env)
-      (concat (and fontsize (concat "{" fontsize))
-	      (format "\\begin{longtable}{%s}\n" alignment)
-	      (and caption-above-p
-		   (org-string-nw-p caption)
-		   (concat caption "\\\\\n"))
-	      contents
-	      (and (not caption-above-p)
-		   (org-string-nw-p caption)
-		   (concat caption "\\\\\n"))
-	      "\\end{longtable}\n"
-	      (and fontsize "}")))
-     ;; Longtabu
-     ((equal "longtabu" table-env)
-      (concat (and fontsize (concat "{" fontsize))
-	      (format "\\begin{longtabu}%s{%s}\n"
-		      (if width
-			  (format " %s %s "
-				  (if spreadp "spread" "to") width) "")
-		      alignment)
-	      (and caption-above-p
-		   (org-string-nw-p caption)
-		   (concat caption "\\\\\n"))
-	      contents
-	      (and (not caption-above-p)
-		   (org-string-nw-p caption)
-		   (concat caption "\\\\\n"))
-	      "\\end{longtabu}\n"
-	      (and fontsize "}")))
-     ;; Others.
-     (t (concat (cond
-		 (float-env
-		  (concat (format "\\begin{%s}%s\n" float-env placement)
-			  (if caption-above-p caption "")
-			  (when centerp "\\centering\n")
-			  fontsize))
-		 ((and (not float-env) caption)
-		  (concat
-		   (and centerp "\\begin{center}\n" )
-		   (if caption-above-p caption "")
-		   (cond ((and fontsize centerp) fontsize)
-			 (fontsize (concat "{" fontsize)))))
-		 (centerp (concat "\\begin{center}\n" fontsize))
-		 (fontsize (concat "{" fontsize)))
-		(cond ((equal "tabu" table-env)
-		       (format "\\begin{tabu}%s{%s}\n%s\\end{tabu}"
-			       (if width (format
-					  (if spreadp " spread %s " " to %s ")
-					  width) "")
-			       alignment
-			       contents))
-		      (t (format "\\begin{%s}%s{%s}\n%s\\end{%s}"
-				 table-env
-				 (if width (format "{%s}" width) "")
-				 alignment
-				 contents
-				 table-env)))
-		(cond
-		 (float-env
-		  (concat (if caption-above-p "" (concat "\n" caption))
-			  (format "\n\\end{%s}" float-env)))
-		 ((and (not float-env) caption)
-		  (concat
-		   (if caption-above-p "" (concat "\n" caption))
-		   (and centerp "\n\\end{center}")
-		   (and fontsize (not centerp) "}")))
-		 (centerp "\n\\end{center}")
-		 (fontsize "}")))))))
-
-(defun org-latex--table.el-table (table info)
-  "Return appropriate LaTeX code for a table.el table.
-
-TABLE is the table type element to transcode.  INFO is a plist
-used as a communication channel.
-
-This function assumes TABLE has `table.el' as its `:type'
-property."
-  (require 'table)
-  ;; Ensure "*org-export-table*" buffer is empty.
-  (with-current-buffer (get-buffer-create "*org-export-table*")
-    (erase-buffer))
-  (let ((output (with-temp-buffer
-		  (insert (org-element-property :value table))
-		  (goto-char 1)
-		  (re-search-forward "^[ \t]*|[^|]" nil t)
-		  (table-generate-source 'latex "*org-export-table*")
-		  (with-current-buffer "*org-export-table*"
-		    (org-trim (buffer-string))))))
-    (kill-buffer (get-buffer "*org-export-table*"))
-    ;; Remove left out comments.
-    (while (string-match "^%.*\n" output)
-      (setq output (replace-match "" t t output)))
-    (let ((attr (org-export-read-attribute :attr_latex table)))
-      (when (plist-get attr :rmlines)
-	;; When the "rmlines" attribute is provided, remove all hlines
-	;; but the the one separating heading from the table body.
-	(let ((n 0) (pos 0))
-	  (while (and (< (length output) pos)
-		      (setq pos (string-match "^\\\\hline\n?" output pos)))
-	    (cl-incf n)
-	    (unless (= n 2) (setq output (replace-match "" nil nil output))))))
-      (let ((centerp (if (plist-member attr :center) (plist-get attr :center)
-		       (plist-get info :latex-tables-centered))))
-	(if (not centerp) output
-	  (format "\\begin{center}\n%s\n\\end{center}" output))))))
-
-(defun org-latex--math-table (table info)
-  "Return appropriate LaTeX code for a matrix.
-
-TABLE is the table type element to transcode.  INFO is a plist
-used as a communication channel.
-
-This function assumes TABLE has `org' as its `:type' property and
-`inline-math' or `math' as its `:mode' attribute."
-  (let* ((attr (org-export-read-attribute :attr_latex table))
-	 (env (or (plist-get attr :environment)
-		  (plist-get info :latex-default-table-environment)))
-	 (contents
-	  (mapconcat
-	   (lambda (row)
-	     (if (eq (org-element-property :type row) 'rule) "\\hline"
-	       ;; Return each cell unmodified.
-	       (concat
-		(mapconcat
-		 (lambda (cell)
-		   (substring (org-element-interpret-data cell) 0 -1))
-		 (org-element-map row 'table-cell #'identity info) "&")
-		(or (cdr (assoc env org-latex-table-matrix-macros)) "\\\\")
-		"\n")))
-	   (org-element-map table 'table-row #'identity info) "")))
-    (concat
-     ;; Prefix.
-     (plist-get attr :math-prefix)
-     ;; Environment.  Also treat special cases.
-     (cond ((member env '("array" "tabular"))
-	    (format "\\begin{%s}{%s}\n%s\\end{%s}"
-		    env (org-latex--align-string table info t) contents env))
-	   ((assoc env org-latex-table-matrix-macros)
-	    (format "\\%s%s{\n%s}"
-		    env
-		    (or (plist-get attr :math-arguments) "")
-		    contents))
-	   (t (format "\\begin{%s}\n%s\\end{%s}" env contents env)))
-     ;; Suffix.
-     (plist-get attr :math-suffix))))
-
-
-;;;; Table Cell
-
-(defun org-latex-table-cell (table-cell contents info)
-  "Transcode a TABLE-CELL element from Org to LaTeX.
-CONTENTS is the cell contents.  INFO is a plist used as
-a communication channel."
-  (concat
-   (let ((scientific-format (plist-get info :latex-table-scientific-notation)))
-     (if (and contents
-	      scientific-format
-	      (string-match orgtbl-exp-regexp contents))
-	 ;; Use appropriate format string for scientific
-	 ;; notation.
-	 (format scientific-format
-		 (match-string 1 contents)
-		 (match-string 2 contents))
-       contents))
-   (when (org-export-get-next-element table-cell info) " & ")))
-
-
-;;;; Table Row
-
-(defun org-latex-table-row (table-row contents info)
-  "Transcode a TABLE-ROW element from Org to LaTeX.
-CONTENTS is the contents of the row.  INFO is a plist used as
-a communication channel."
-  (let* ((attr (org-export-read-attribute :attr_latex
-					  (org-export-get-parent table-row)))
-	 (booktabsp (if (plist-member attr :booktabs) (plist-get attr :booktabs)
-		      (plist-get info :latex-tables-booktabs)))
-	 (longtablep
-	  (member (or (plist-get attr :environment)
-		      (plist-get info :latex-default-table-environment))
-		  '("longtable" "longtabu"))))
-    (if (eq (org-element-property :type table-row) 'rule)
-	(cond
-	 ((not booktabsp) "\\hline")
-	 ((not (org-export-get-previous-element table-row info)) "\\toprule")
-	 ((not (org-export-get-next-element table-row info)) "\\bottomrule")
-	 ((and longtablep
-	       (org-export-table-row-ends-header-p
-		(org-export-get-previous-element table-row info) info))
-	  "")
-	 (t "\\midrule"))
-      (concat
-       ;; When BOOKTABS are activated enforce top-rule even when no
-       ;; hline was specifically marked.
-       (and booktabsp (not (org-export-get-previous-element table-row info))
-	    "\\toprule\n")
-       contents "\\\\\n"
-       (cond
-	;; Special case for long tables.  Define header and footers.
-	((and longtablep (org-export-table-row-ends-header-p table-row info))
-	 (let ((columns (cdr (org-export-table-dimensions
-			      (org-export-get-parent-table table-row) info))))
-	   (format "%s
-\\endfirsthead
-\\multicolumn{%d}{l}{%s} \\\\
-%s
-%s \\\\\n
-%s
-\\endhead
-%s\\multicolumn{%d}{r}{%s} \\\\
-\\endfoot
-\\endlastfoot"
-		   (if booktabsp "\\midrule" "\\hline")
-		   columns
-		   (org-latex--translate "Continued from previous page" info)
-		   (cond
-		    ((not (org-export-table-row-starts-header-p table-row info))
-		     "")
-		    (booktabsp "\\toprule\n")
-		    (t "\\hline\n"))
-		   contents
-		   (if booktabsp "\\midrule" "\\hline")
-		   (if booktabsp "\\midrule" "\\hline")
-		   columns
-		   (org-latex--translate "Continued on next page" info))))
-	;; When BOOKTABS are activated enforce bottom rule even when
-	;; no hline was specifically marked.
-	((and booktabsp (not (org-export-get-next-element table-row info)))
-	 "\\bottomrule"))))))
-
-
-;;;; Target
-
-(defun org-latex-target (target _contents info)
-  "Transcode a TARGET object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "\\label{%s}" (org-latex--label target info)))
-
-
-;;;; Timestamp
-
-(defun org-latex-timestamp (timestamp _contents info)
-  "Transcode a TIMESTAMP object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (let ((value (org-latex-plain-text (org-timestamp-translate timestamp) info)))
-    (format
-     (plist-get info
-		(cl-case (org-element-property :type timestamp)
-		  ((active active-range) :latex-active-timestamp-format)
-		  ((inactive inactive-range) :latex-inactive-timestamp-format)
-		  (otherwise :latex-diary-timestamp-format)))
-     value)))
-
-
-;;;; Underline
-
-(defun org-latex-underline (_underline contents info)
-  "Transcode UNDERLINE from Org to LaTeX.
-CONTENTS is the text with underline markup.  INFO is a plist
-holding contextual information."
-  (org-latex--text-markup contents 'underline info))
-
-
-;;;; Verbatim
-
-(defun org-latex-verbatim (verbatim _contents info)
-  "Transcode a VERBATIM object from Org to LaTeX.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (org-latex--text-markup
-   (org-element-property :value verbatim) 'verbatim info))
-
-
-;;;; Verse Block
-
-(defun org-latex-verse-block (verse-block contents info)
-  "Transcode a VERSE-BLOCK element from Org to LaTeX.
-CONTENTS is verse block contents.  INFO is a plist holding
-contextual information."
-  (org-latex--wrap-label
-   verse-block
-   ;; In a verse environment, add a line break to each newline
-   ;; character and change each white space at beginning of a line
-   ;; into a space of 1 em.  Also change each blank line with
-   ;; a vertical space of 1 em.
-   (format "\\begin{verse}\n%s\\end{verse}"
-	   (replace-regexp-in-string
-	    "^[ \t]+" (lambda (m) (format "\\hspace*{%dem}" (length m)))
-	    (replace-regexp-in-string
-	     "^[ \t]*\\\\\\\\$" "\\vspace*{1em}"
-	     (replace-regexp-in-string
-	      "\\([ \t]*\\\\\\\\\\)?[ \t]*\n" "\\\\\n"
-	      contents nil t) nil t) nil t))
-   info))
-
-
-
-;;; End-user functions
-
-;;;###autoload
-(defun org-latex-export-as-latex
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer as a LaTeX buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org LATEX Export*\", which
-will be displayed when `org-export-show-temporary-export-buffer'
-is non-nil."
-  (interactive)
-  (org-export-to-buffer 'latex "*Org LATEX Export*"
-    async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
-
-;;;###autoload
-(defun org-latex-convert-region-to-latex ()
-  "Assume the current region has Org syntax, and convert it to LaTeX.
-This can be used in any buffer.  For example, you can write an
-itemized list in Org syntax in an LaTeX buffer and use this
-command to convert it."
-  (interactive)
-  (org-export-replace-region-by 'latex))
-
-;;;###autoload
-(defun org-latex-export-to-latex
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to a LaTeX file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".tex" subtreep)))
-    (org-export-to-file 'latex outfile
-      async subtreep visible-only body-only ext-plist)))
-
-;;;###autoload
-(defun org-latex-export-to-pdf
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to LaTeX then process through to PDF.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return PDF file's name."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".tex" subtreep)))
-    (org-export-to-file 'latex outfile
-      async subtreep visible-only body-only ext-plist
-      (lambda (file) (org-latex-compile file)))))
-
-(defun org-latex-compile (texfile &optional snippet)
-  "Compile a TeX file.
-
-TEXFILE is the name of the file being compiled.  Processing is
-done through the command specified in `org-latex-pdf-process',
-which see.  Output is redirected to \"*Org PDF LaTeX Output*\"
-buffer.
-
-When optional argument SNIPPET is non-nil, TEXFILE is a temporary
-file used to preview a LaTeX snippet.  In this case, do not
-create a log buffer and do not remove log files.
-
-Return PDF file name or raise an error if it couldn't be
-produced."
-  (unless snippet (message "Processing LaTeX file %s..." texfile))
-  (let* ((compiler
-	  (or (with-temp-buffer
-		(save-excursion (insert-file-contents texfile))
-		(and (search-forward-regexp (regexp-opt org-latex-compilers)
-					    (line-end-position 2)
-					    t)
-		     (progn (beginning-of-line) (looking-at-p "%"))
-		     (match-string 0)))
-	      "pdflatex"))
-	 (process (if (functionp org-latex-pdf-process) org-latex-pdf-process
-		    ;; Replace "%latex" and "%bibtex" with,
-		    ;; respectively, "%L" and "%B" so as to adhere to
-		    ;; `format-spec' specifications.
-		    (mapcar (lambda (command)
-			      (replace-regexp-in-string
-			       "%\\(?:bib\\|la\\)tex\\>"
-			       (lambda (m) (upcase (substring m 0 2)))
-			       command))
-			    org-latex-pdf-process)))
-         (spec `((?B . ,(shell-quote-argument org-latex-bib-compiler))
-                 (?L . ,(shell-quote-argument compiler))))
-	 (log-buf-name "*Org PDF LaTeX Output*")
-         (log-buf (and (not snippet) (get-buffer-create log-buf-name)))
-         (outfile (org-compile-file texfile process "pdf"
-				    (format "See %S for details" log-buf-name)
-				    log-buf spec)))
-    (unless snippet
-      (when org-latex-remove-logfiles
-	(mapc #'delete-file
-	      (directory-files
-	       (file-name-directory outfile)
-	       t
-	       (concat (regexp-quote (file-name-base outfile))
-		       "\\(?:\\.[0-9]+\\)?\\."
-		       (regexp-opt org-latex-logfiles-extensions))
-	       t)))
-      (let ((warnings (org-latex--collect-warnings log-buf)))
-	(message (concat "PDF file produced"
-			 (cond
-			  ((eq warnings 'error) " with errors.")
-			  (warnings (concat " with warnings: " warnings))
-			  (t "."))))))
-    ;; Return output file name.
-    outfile))
-
-(defun org-latex--collect-warnings (buffer)
-  "Collect some warnings from \"pdflatex\" command output.
-BUFFER is the buffer containing output.  Return collected
-warnings types as a string, `error' if a LaTeX error was
-encountered or nil if there was none."
-  (with-current-buffer buffer
-    (save-excursion
-      (goto-char (point-max))
-      (when (re-search-backward "^[ \t]*This is .*?TeX.*?Version" nil t)
-	(if (re-search-forward "^!" nil t) 'error
-	  (let ((case-fold-search t)
-		(warnings ""))
-	    (dolist (warning org-latex-known-warnings)
-	      (when (save-excursion (re-search-forward (car warning) nil t))
-		(setq warnings (concat warnings " " (cdr warning)))))
-	    (org-string-nw-p (org-trim warnings))))))))
-
-;;;###autoload
-(defun org-latex-publish-to-latex (plist filename pub-dir)
-  "Publish an Org file to LaTeX.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to 'latex filename ".tex" plist pub-dir))
-
-;;;###autoload
-(defun org-latex-publish-to-pdf (plist filename pub-dir)
-  "Publish an Org file to PDF (via LaTeX).
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  ;; Unlike to `org-latex-publish-to-latex', PDF file is generated
-  ;; in working directory and then moved to publishing directory.
-  (org-publish-attachment
-   plist
-   ;; Default directory could be anywhere when this function is
-   ;; called.  We ensure it is set to source file directory during
-   ;; compilation so as to not break links to external documents.
-   (let ((default-directory (file-name-directory filename)))
-     (org-latex-compile
-      (org-publish-org-to
-       'latex filename ".tex" plist (file-name-directory filename))))
-   pub-dir))
-
-
-(provide 'ox-latex)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-latex.el ends here
diff --git a/elpa/org-9.1.14/ox-latex.elc b/elpa/org-9.1.14/ox-latex.elc
deleted file mode 100644
index 425522c..0000000
--- a/elpa/org-9.1.14/ox-latex.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-man.el b/elpa/org-9.1.14/ox-man.el
deleted file mode 100644
index 2bc6392..0000000
--- a/elpa/org-9.1.14/ox-man.el
+++ /dev/null
@@ -1,1143 +0,0 @@
-;; ox-man.el --- Man Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2011-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
-;;      Luis R Anaya <papoanaya aroba hot mail punto com>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; This library implements a Man back-end for Org generic exporter.
-;;
-;; To test it, run
-;;
-;;   M-: (org-export-to-buffer 'man "*Test Man*") RET
-;;
-;; in an Org buffer then switch to the buffer to see the Man export.
-;; See ox.el for more details on how this exporter works.
-;;
-;; It introduces one new buffer keywords:
-;; "MAN_CLASS_OPTIONS".
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'ox)
-
-(defvar org-export-man-default-packages-alist)
-(defvar org-export-man-packages-alist)
-(defvar orgtbl-exp-regexp)
-
-
-
-;;; Define Back-End
-
-(org-export-define-backend 'man
-  '((babel-call . org-man-babel-call)
-    (bold . org-man-bold)
-    (center-block . org-man-center-block)
-    (code . org-man-code)
-    (drawer . org-man-drawer)
-    (dynamic-block . org-man-dynamic-block)
-    (entity . org-man-entity)
-    (example-block . org-man-example-block)
-    (export-block . org-man-export-block)
-    (export-snippet . org-man-export-snippet)
-    (fixed-width . org-man-fixed-width)
-    (footnote-definition . org-man-footnote-definition)
-    (footnote-reference . org-man-footnote-reference)
-    (headline . org-man-headline)
-    (horizontal-rule . org-man-horizontal-rule)
-    (inline-babel-call . org-man-inline-babel-call)
-    (inline-src-block . org-man-inline-src-block)
-    (inlinetask . org-man-inlinetask)
-    (italic . org-man-italic)
-    (item . org-man-item)
-    (keyword . org-man-keyword)
-    (line-break . org-man-line-break)
-    (link . org-man-link)
-    (node-property . org-man-node-property)
-    (paragraph . org-man-paragraph)
-    (plain-list . org-man-plain-list)
-    (plain-text . org-man-plain-text)
-    (planning . org-man-planning)
-    (property-drawer . org-man-property-drawer)
-    (quote-block . org-man-quote-block)
-    (radio-target . org-man-radio-target)
-    (section . org-man-section)
-    (special-block . org-man-special-block)
-    (src-block . org-man-src-block)
-    (statistics-cookie . org-man-statistics-cookie)
-    (strike-through . org-man-strike-through)
-    (subscript . org-man-subscript)
-    (superscript . org-man-superscript)
-    (table . org-man-table)
-    (table-cell . org-man-table-cell)
-    (table-row . org-man-table-row)
-    (target . org-man-target)
-    (template . org-man-template)
-    (timestamp . org-man-timestamp)
-    (underline . org-man-underline)
-    (verbatim . org-man-verbatim)
-    (verse-block . org-man-verse-block))
-  :menu-entry
-  '(?M "Export to MAN"
-       ((?m "As MAN file" org-man-export-to-man)
-	(?p "As PDF file" org-man-export-to-pdf)
-	(?o "As PDF file and open"
-	    (lambda (a s v b)
-	      (if a (org-man-export-to-pdf t s v b)
-		(org-open-file (org-man-export-to-pdf nil s v b)))))))
-  :options-alist
-  '((:man-class "MAN_CLASS" nil nil t)
-    (:man-class-options "MAN_CLASS_OPTIONS" nil nil t)
-    (:man-header-extra "MAN_HEADER" nil nil newline)
-    ;; Other variables.
-    (:man-tables-centered nil nil org-man-tables-centered)
-    (:man-tables-verbatim nil nil org-man-tables-verbatim)
-    (:man-table-scientific-notation nil nil org-man-table-scientific-notation)
-    (:man-source-highlight nil nil org-man-source-highlight)
-    (:man-source-highlight-langs nil nil org-man-source-highlight-langs)))
-
-
-
-;;; User Configurable Variables
-
-(defgroup org-export-man nil
-  "Options for exporting Org mode files to Man."
-  :tag "Org Export Man"
-  :group 'org-export)
-
-;;; Tables
-
-(defcustom org-man-tables-centered t
-  "When non-nil, tables are exported in a center environment."
-  :group 'org-export-man
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-man-tables-verbatim nil
-  "When non-nil, tables are exported verbatim."
-  :group 'org-export-man
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-
-(defcustom org-man-table-scientific-notation "%sE%s"
-  "Format string to display numbers in scientific notation.
-The format should have \"%s\" twice, for mantissa and exponent
-\(i.e. \"%s\\\\times10^{%s}\").
-
-When nil, no transformation is made."
-  :group 'org-export-man
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-          (string :tag "Format string")
-          (const :tag "No formatting")))
-
-
-;;; Inlinetasks
-;; Src blocks
-
-(defcustom org-man-source-highlight nil
-  "Use GNU source highlight to embellish source blocks "
-  :group 'org-export-man
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-
-(defcustom org-man-source-highlight-langs
-  '((emacs-lisp "lisp") (lisp "lisp") (clojure "lisp")
-    (scheme "scheme")
-    (c "c") (cc "cpp") (csharp "csharp") (d "d")
-    (fortran "fortran") (cobol "cobol") (pascal "pascal")
-    (ada "ada") (asm "asm")
-    (perl "perl") (cperl "perl")
-    (python "python") (ruby "ruby") (tcl "tcl") (lua "lua")
-    (java "java") (javascript "javascript")
-    (tex "latex")
-    (shell-script "sh") (awk "awk") (diff "diff") (m4 "m4")
-    (ocaml "caml") (caml "caml")
-    (sql "sql") (sqlite "sql")
-    (html "html") (css "css") (xml "xml")
-    (bat "bat") (bison "bison") (clipper "clipper")
-    (ldap "ldap") (opa "opa")
-    (php "php") (postscript "postscript") (prolog "prolog")
-    (properties "properties") (makefile "makefile")
-    (tml "tml") (vala "vala") (vbscript "vbscript") (xorg "xorg"))
-  "Alist mapping languages to their listing language counterpart.
-The key is a symbol, the major mode symbol without the \"-mode\".
-The value is the string that should be inserted as the language
-parameter for the listings package.  If the mode name and the
-listings name are the same, the language does not need an entry
-in this list - but it does not hurt if it is present."
-  :group 'org-export-man
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(repeat
-          (list
-           (symbol :tag "Major mode       ")
-           (string :tag "Listings language"))))
-
-
-;;; Compilation
-
-(defcustom org-man-pdf-process
-  '("tbl %f | eqn | groff -man | ps2pdf - > %b.pdf"
-    "tbl %f | eqn | groff -man | ps2pdf - > %b.pdf"
-    "tbl %f | eqn | groff -man | ps2pdf - > %b.pdf")
-
-  "Commands to process a Man file to a PDF file.
-
-This is a list of strings, each of them will be given to the
-shell as a command.  %f in the command will be replaced by the
-relative file name, %F by the absolute file name, %b by the file
-base name (i.e. without directory and extension parts), %o by the
-base directory of the file and %O by the absolute file name of
-the output file.
-
-By default, Org uses 3 runs of to do the processing.
-
-Alternatively, this may be a Lisp function that does the
-processing.  This function should accept the file name as
-its single argument."
-  :group 'org-export-pdf
-  :group 'org-export-man
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-          (repeat :tag "Shell command sequence"
-                  (string :tag "Shell command"))
-          (const :tag "2 runs of pdfgroff"
-                 ("tbl %f | eqn | groff -mm | ps2pdf - > %b.pdf"
-                  "tbl %f | eqn | groff -mm | ps2pdf - > %b.pdf" ))
-          (const :tag "3 runs of pdfgroff"
-                 ("tbl %f | eqn | groff -mm | ps2pdf - > %b.pdf"
-                  "tbl %f | eqn | groff -mm | ps2pdf - > %b.pdf"
-                  "tbl %f | eqn | groff -mm | ps2pdf - > %b.pdf"))
-          (function)))
-
-(defcustom org-man-logfiles-extensions
-  '("log" "out" "toc")
-  "The list of file extensions to consider as Man logfiles."
-  :group 'org-export-man
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(repeat (string :tag "Extension")))
-
-(defcustom org-man-remove-logfiles t
-  "Non-nil means remove the logfiles produced by PDF production.
-These are the .aux, .log, .out, and .toc files."
-  :group 'org-export-man
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-
-
-;;; Internal Functions
-
-(defun org-man--caption/label-string (element info)
-  "Return caption and label Man string for ELEMENT.
-
-INFO is a plist holding contextual information.  If there's no
-caption nor label, return the empty string.
-
-For non-floats, see `org-man--wrap-label'."
-  (let ((label (org-element-property :label element))
-	(main (org-export-get-caption element))
-	(short (org-export-get-caption element t)))
-    (cond ((and (not main) (not label)) "")
-	  ((not main) (format "\\fI%s\\fP" label))
-	  ;; Option caption format with short name.
-	  (short (format "\\fR%s\\fP - \\fI\\P - %s\n"
-			 (org-export-data short info)
-			 (org-export-data main info)))
-	  ;; Standard caption format.
-	  (t (format "\\fR%s\\fP" (org-export-data main info))))))
-
-(defun org-man--wrap-label (element output)
-  "Wrap label associated to ELEMENT around OUTPUT, if appropriate.
-This function shouldn't be used for floats.  See
-`org-man--caption/label-string'."
-  (let ((label (org-element-property :name element)))
-    (if (or (not output) (not label) (string= output "") (string= label ""))
-        output
-      (concat (format "%s\n.br\n" label) output))))
-
-(defun org-man--protect-text (text)
-  "Protect minus and backslash characters in string TEXT."
-  (replace-regexp-in-string "-" "\\-" text nil t))
-
-
-
-;;; Template
-
-(defun org-man-template (contents info)
-  "Return complete document string after Man conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  (let* ((title (when (plist-get info :with-title)
-		  (org-export-data (plist-get info :title) info)))
-        (attr (read (format "(%s)"
-                            (mapconcat
-                             #'identity
-                             (list (plist-get info :man-class-options))
-                             " "))))
-        (section-item (plist-get attr :section-id)))
-
-    (concat
-
-     (cond
-      ((and title (stringp section-item))
-       (format ".TH \"%s\" \"%s\" \n" title section-item))
-      ((and (string= "" title) (stringp section-item))
-       (format ".TH \"%s\" \"%s\" \n" " " section-item))
-      (title
-       (format ".TH \"%s\" \"1\" \n" title))
-      (t
-       ".TH \" \" \"1\" "))
-     contents)))
-
-
-
-
-;;; Transcode Functions
-
-;;; Babel Call
-;;
-;; Babel Calls are ignored.
-
-
-;;; Bold
-
-(defun org-man-bold (_bold contents _info)
-  "Transcode BOLD from Org to Man.
-CONTENTS is the text with bold markup.  INFO is a plist holding
-contextual information."
-  (format "\\fB%s\\fP" contents))
-
-
-;;; Center Block
-
-(defun org-man-center-block (center-block contents _info)
-  "Transcode a CENTER-BLOCK element from Org to Man.
-CONTENTS holds the contents of the center block.  INFO is a plist
-holding contextual information."
-  (org-man--wrap-label
-   center-block
-   (format ".ce %d\n.nf\n%s\n.fi"
-           (- (length (split-string contents "\n")) 1 )
-           contents)))
-
-
-;;; Code
-
-(defun org-man-code (code _contents _info)
-  "Transcode a CODE object from Org to Man."
-  (format "\\fC%s\\fP"
-	  (org-man--protect-text (org-element-property :value code))))
-
-
-;;; Drawer
-
-(defun org-man-drawer (_drawer contents _info)
-  "Transcode a DRAWER element from Org to Man.
-   DRAWER holds the drawer information
-   CONTENTS holds the contents of the block.
-   INFO is a plist holding contextual information. "
-  contents)
-
-
-;;; Dynamic Block
-
-(defun org-man-dynamic-block (dynamic-block contents _info)
-  "Transcode a DYNAMIC-BLOCK element from Org to Man.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information.  See `org-export-data'."
-  (org-man--wrap-label dynamic-block contents))
-
-
-;;; Entity
-
-(defun org-man-entity (entity _contents _info)
-  "Transcode an ENTITY object from Org to Man.
-CONTENTS are the definition itself.  INFO is a plist holding
-contextual information."
-  (org-element-property :utf-8 entity))
-
-
-;;; Example Block
-
-(defun org-man-example-block (example-block _contents info)
-  "Transcode an EXAMPLE-BLOCK element from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (org-man--wrap-label
-   example-block
-   (format ".RS\n.nf\n%s\n.fi\n.RE"
-           (org-export-format-code-default example-block info))))
-
-
-;;; Export Block
-
-(defun org-man-export-block (export-block _contents _info)
-  "Transcode a EXPORT-BLOCK element from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (string= (org-element-property :type export-block) "MAN")
-    (org-remove-indentation (org-element-property :value export-block))))
-
-
-;;; Export Snippet
-
-(defun org-man-export-snippet (export-snippet _contents _info)
-  "Transcode a EXPORT-SNIPPET object from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (eq (org-export-snippet-backend export-snippet) 'man)
-    (org-element-property :value export-snippet)))
-
-
-;;; Fixed Width
-
-(defun org-man-fixed-width (fixed-width _contents _info)
-  "Transcode a FIXED-WIDTH element from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-man--wrap-label
-   fixed-width
-   (format "\\fC\n%s\\fP"
-           (org-remove-indentation
-            (org-element-property :value fixed-width)))))
-
-
-;;; Footnote Definition
-;;
-;; Footnote Definitions are ignored.
-
-;;; Footnote References
-;;
-;; Footnote References are Ignored
-
-
-;;; Headline
-
-(defun org-man-headline (headline contents info)
-  "Transcode a HEADLINE element from Org to Man.
-CONTENTS holds the contents of the headline.  INFO is a plist
-holding contextual information."
-  (let* ((level (org-export-get-relative-level headline info))
-	 ;; Section formatting will set two placeholders: one for the
-	 ;; title and the other for the contents.
-	 (section-fmt
-	  (pcase level
-	    (1 ".SH \"%s\"\n%s")
-	    (2 ".SS \"%s\"\n%s")
-	    (3 ".SS \"%s\"\n%s")
-	    (_ nil)))
-	 (text (org-export-data (org-element-property :title headline) info)))
-
-    (cond
-     ;; Case 1: This is a footnote section: ignore it.
-     ((org-element-property :footnote-section-p headline) nil)
-
-     ;; Case 2. This is a deep sub-tree: export it as a list item.
-     ;;         Also export as items headlines for which no section
-     ;;         format has been found.
-     ((or (not section-fmt) (org-export-low-level-p headline info))
-      ;; Build the real contents of the sub-tree.
-      (let ((low-level-body
-	     (concat
-	      ;; If the headline is the first sibling, start a list.
-	      (when (org-export-first-sibling-p headline info)
-		(format "%s\n" ".RS"))
-	      ;; Itemize headline
-	      ".TP\n.ft I\n" text "\n.ft\n"
-	      contents ".RE")))
-	;; If headline is not the last sibling simply return
-	;; LOW-LEVEL-BODY.  Otherwise, also close the list, before any
-	;; blank line.
-	(if (not (org-export-last-sibling-p headline info)) low-level-body
-	  (replace-regexp-in-string
-	   "[ \t\n]*\\'" ""
-	   low-level-body))))
-
-     ;; Case 3. Standard headline.  Export it as a section.
-     (t (format section-fmt text contents )))))
-
-;;; Horizontal Rule
-;; Not supported
-
-;;; Inline Babel Call
-;;
-;; Inline Babel Calls are ignored.
-
-;;; Inline Src Block
-
-(defun org-man-inline-src-block (inline-src-block _contents info)
-  "Transcode an INLINE-SRC-BLOCK element from Org to Man.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((code (org-element-property :value inline-src-block)))
-    (cond
-     ((plist-get info :man-source-highlight)
-      (let* ((tmpdir temporary-file-directory)
-             (in-file  (make-temp-name
-                        (expand-file-name "srchilite" tmpdir)))
-             (out-file (make-temp-name
-                        (expand-file-name "reshilite" tmpdir)))
-             (org-lang (org-element-property :language inline-src-block))
-             (lst-lang
-	      (cadr (assq (intern org-lang)
-			  (plist-get info :man-source-highlight-langs))))
-
-             (cmd (concat (expand-file-name "source-highlight")
-                          " -s " lst-lang
-                          " -f groff_man"
-                          " -i " in-file
-                          " -o " out-file )))
-
-        (if lst-lang
-            (let ((code-block "" ))
-              (with-temp-file in-file (insert code))
-              (shell-command cmd)
-              (setq code-block  (org-file-contents out-file))
-              (delete-file in-file)
-              (delete-file out-file)
-              code-block)
-          (format ".RS\n.nf\n\\fC\\m[black]%s\\m[]\\fP\n.fi\n.RE\n"
-                  code))))
-
-     ;; Do not use a special package: transcode it verbatim.
-     (t
-      (concat ".RS\n.nf\n" "\\fC" "\n" code "\n"
-              "\\fP\n.fi\n.RE\n")))))
-
-
-;;; Inlinetask
-;;; Italic
-
-(defun org-man-italic (_italic contents _info)
-  "Transcode ITALIC from Org to Man.
-CONTENTS is the text with italic markup.  INFO is a plist holding
-contextual information."
-  (format "\\fI%s\\fP" contents))
-
-
-;;; Item
-
-
-(defun org-man-item (item contents info)
-  "Transcode an ITEM element from Org to Man.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((bullet (org-element-property :bullet item))
-         (type (org-element-property :type (org-element-property :parent item)))
-         (checkbox (pcase (org-element-property :checkbox item)
-                     (`on "\\o'\\(sq\\(mu'")
-                     (`off "\\(sq ")
-                     (`trans "\\o'\\(sq\\(mi'")))
-
-         (tag (let ((tag (org-element-property :tag item)))
-                ;; Check-boxes must belong to the tag.
-                (and tag (format "\\fB%s\\fP"
-                                 (concat checkbox
-                                         (org-export-data tag info)))))))
-
-    (if (and (null tag) (null checkbox))
-	(let* ((bullet (org-trim bullet))
-	       (marker (cond  ((string= "-" bullet) "\\(em")
-			      ((string= "*" bullet) "\\(bu")
-			      ((eq type 'ordered)
-			       (format "%s " (org-trim bullet)))
-			      (t "\\(dg"))))
-	  (concat ".IP " marker " 4\n"
-		  (org-trim (or contents " " ))))
-      (concat ".TP\n" (or tag (concat " " checkbox)) "\n"
-              (org-trim (or contents " " ))))))
-
-;;; Keyword
-
-
-(defun org-man-keyword (keyword _contents _info)
-  "Transcode a KEYWORD element from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((key (org-element-property :key keyword))
-        (value (org-element-property :value keyword)))
-    (cond
-     ((string= key "MAN") value)
-     ((string= key "INDEX") nil)
-     ((string= key "TOC"   ) nil))))
-
-
-;;; Line Break
-
-(defun org-man-line-break (_line-break _contents _info)
-  "Transcode a LINE-BREAK object from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  "\n.br\n")
-
-
-;;; Link
-
-
-(defun org-man-link (link desc _info)
-  "Transcode a LINK object from Org to Man.
-
-DESC is the description part of the link, or the empty string.
-INFO is a plist holding contextual information.  See
-`org-export-data'."
-  (let* ((type (org-element-property :type link))
-         (raw-path (org-element-property :path link))
-         ;; Ensure DESC really exists, or set it to nil.
-         (desc (and (not (string= desc "")) desc))
-         (path (cond
-                ((member type '("http" "https" "ftp" "mailto"))
-                 (concat type ":" raw-path))
-                ((string= type "file") (org-export-file-uri raw-path))
-                (t raw-path))))
-    (cond
-     ;; Link type is handled by a special function.
-     ((org-export-custom-protocol-maybe link desc 'man))
-     ;; External link with a description part.
-     ((and path desc) (format "%s \\fBat\\fP \\fI%s\\fP" path desc))
-     ;; External link without a description part.
-     (path (format "\\fI%s\\fP" path))
-     ;; No path, only description.  Try to do something useful.
-     (t (format "\\fI%s\\fP" desc)))))
-
-;;;; Node Property
-
-(defun org-man-node-property (node-property _contents _info)
-  "Transcode a NODE-PROPERTY element from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "%s:%s"
-          (org-element-property :key node-property)
-          (let ((value (org-element-property :value node-property)))
-            (if value (concat " " value) ""))))
-
-;;; Paragraph
-
-(defun org-man-paragraph (paragraph contents _info)
-  "Transcode a PARAGRAPH element from Org to Man.
-CONTENTS is the contents of the paragraph, as a string.  INFO is
-the plist used as a communication channel."
-  (let ((parent (plist-get (nth 1 paragraph) :parent)))
-    (when parent
-      (let ((parent-type (car parent))
-            (fixed-paragraph ""))
-        (cond ((and (eq parent-type 'item)
-                    (plist-get (nth 1 parent) :bullet ))
-               (setq fixed-paragraph (concat "" contents)))
-              ((eq parent-type 'section)
-               (setq fixed-paragraph (concat ".PP\n" contents)))
-              ((eq parent-type 'footnote-definition)
-               (setq fixed-paragraph contents))
-              (t (setq fixed-paragraph (concat "" contents))))
-        fixed-paragraph ))))
-
-
-;;; Plain List
-
-(defun org-man-plain-list (_plain-list contents _info)
-  "Transcode a PLAIN-LIST element from Org to Man.
-CONTENTS is the contents of the list.  INFO is a plist holding
-contextual information."
-  contents)
-
-;;; Plain Text
-
-(defun org-man-plain-text (text info)
-  "Transcode a TEXT string from Org to Man.
-TEXT is the string to transcode.  INFO is a plist holding
-contextual information."
-  (let ((output text))
-    ;; Protect various chars.
-    (setq output (replace-regexp-in-string
-		  "\\(?:[^\\]\\|^\\)\\(\\\\\\)\\(?:[^%$#&{}~^_\\]\\|$\\)"
-		  "$\\" output nil t 1))
-    ;; Activate smart quotes.  Be sure to provide original TEXT string
-    ;; since OUTPUT may have been modified.
-    (when (plist-get info :with-smart-quotes)
-      (setq output (org-export-activate-smart-quotes output :utf-8 info text)))
-    ;; Handle break preservation if required.
-    (when (plist-get info :preserve-breaks)
-      (setq output (replace-regexp-in-string "\\(\\\\\\\\\\)?[ \t]*\n" ".br\n"
-					     output)))
-    ;; Return value.
-    output))
-
-
-
-;;; Planning
-
-
-;;; Property Drawer
-
-(defun org-man-property-drawer (_property-drawer contents _info)
-  "Transcode a PROPERTY-DRAWER element from Org to Man.
-CONTENTS holds the contents of the drawer.  INFO is a plist
-holding contextual information."
-  (and (org-string-nw-p contents)
-       (format ".RS\n.nf\n%s\n.fi\n.RE" contents)))
-
-;;; Quote Block
-
-(defun org-man-quote-block (quote-block contents _info)
-  "Transcode a QUOTE-BLOCK element from Org to Man.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (org-man--wrap-label
-   quote-block
-   (format ".RS\n%s\n.RE" contents)))
-
-
-;;; Radio Target
-
-(defun org-man-radio-target (_radio-target text _info)
-  "Transcode a RADIO-TARGET object from Org to Man.
-TEXT is the text of the target.  INFO is a plist holding
-contextual information."
-  text)
-
-
-;;; Section
-
-(defun org-man-section (_section contents _info)
-  "Transcode a SECTION element from Org to Man.
-CONTENTS holds the contents of the section.  INFO is a plist
-holding contextual information."
-  contents)
-
-
-;;; Special Block
-
-(defun org-man-special-block (special-block contents _info)
-  "Transcode a SPECIAL-BLOCK element from Org to Man.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (org-man--wrap-label special-block (format "%s\n" contents)))
-
-
-;;; Src Block
-
-(defun org-man-src-block (src-block _contents info)
-  "Transcode a SRC-BLOCK element from Org to Man.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (if (not (plist-get info :man-source-highlight))
-      (format ".RS\n.nf\n\\fC%s\\fP\n.fi\n.RE\n\n"
-	      (org-export-format-code-default src-block info))
-    (let* ((tmpdir temporary-file-directory)
-	   (in-file  (make-temp-name (expand-file-name "srchilite" tmpdir)))
-	   (out-file (make-temp-name (expand-file-name "reshilite" tmpdir)))
-	   (code (org-element-property :value src-block))
-	   (org-lang (org-element-property :language src-block))
-	   (lst-lang
-	    (cadr (assq (intern org-lang)
-			(plist-get info :man-source-highlight-langs))))
-	   (cmd (concat "source-highlight"
-			" -s " lst-lang
-			" -f groff_man "
-			" -i " in-file
-			" -o " out-file)))
-      (if lst-lang
-	  (let ((code-block ""))
-	    (with-temp-file in-file (insert code))
-	    (shell-command cmd)
-	    (setq code-block  (org-file-contents out-file))
-	    (delete-file in-file)
-	    (delete-file out-file)
-	    code-block)
-	(format ".RS\n.nf\n\\fC\\m[black]%s\\m[]\\fP\n.fi\n.RE" code)))))
-
-
-;;; Statistics Cookie
-
-(defun org-man-statistics-cookie (statistics-cookie _contents _info)
-  "Transcode a STATISTICS-COOKIE object from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-element-property :value statistics-cookie))
-
-
-;;; Strike-Through
-
-(defun org-man-strike-through (_strike-through contents _info)
-  "Transcode STRIKE-THROUGH from Org to Man.
-CONTENTS is the text with strike-through markup.  INFO is a plist
-holding contextual information."
-  (format "\\fI%s\\fP" contents))
-
-;;; Subscript
-
-(defun org-man-subscript (_subscript contents _info)
-  "Transcode a SUBSCRIPT object from Org to Man.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (format  "\\d\\s-2%s\\s+2\\u" contents))
-
-;;; Superscript "^_%s$
-
-(defun org-man-superscript (_superscript contents _info)
-  "Transcode a SUPERSCRIPT object from Org to Man.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (format  "\\u\\s-2%s\\s+2\\d" contents))
-
-
-;;; Table
-;;
-;; `org-man-table' is the entry point for table transcoding.  It
-;; takes care of tables with a "verbatim" attribute.  Otherwise, it
-;; delegates the job to either `org-man-table--table.el-table' or
-;; `org-man-table--org-table' functions, depending of the type of
-;; the table.
-;;
-;; `org-man-table--align-string' is a subroutine used to build
-;; alignment string for Org tables.
-
-(defun org-man-table (table contents info)
-  "Transcode a TABLE element from Org to Man.
-CONTENTS is the contents of the table.  INFO is a plist holding
-contextual information."
-  (cond
-   ;; Case 1: verbatim table.
-   ((or (plist-get info :man-tables-verbatim)
-        (let ((attr (read (format "(%s)"
-                 (mapconcat
-                  #'identity
-                  (org-element-property :attr_man table)
-                  " ")))))
-
-          (and attr (plist-get attr :verbatim))))
-
-    (format ".nf\n\\fC%s\\fP\n.fi"
-            ;; Re-create table, without affiliated keywords.
-            (org-trim
-             (org-element-interpret-data
-              `(table nil ,@(org-element-contents table))))))
-   ;; Case 2: Standard table.
-   (t (org-man-table--org-table table contents info))))
-
-(defun org-man-table--align-string (divider table info)
-  "Return an appropriate Man alignment string.
-TABLE is the considered table.  INFO is a plist used as
-a communication channel."
-  (let (alignment)
-    ;; Extract column groups and alignment from first (non-rule) row.
-    (org-element-map
-	(org-element-map table 'table-row
-	  (lambda (row)
-	    (and (eq (org-element-property :type row) 'standard) row))
-	  info 'first-match)
-	'table-cell
-      (lambda (cell)
-	(let* ((borders (org-export-table-cell-borders cell info))
-	       (raw-width (org-export-table-cell-width cell info))
-	       (width-cm (when raw-width (/ raw-width 5)))
-	       (width (if raw-width (format "w(%dc)"
-					    (if (< width-cm 1) 1 width-cm)) "")))
-	  ;; Check left border for the first cell only.
-	  (when (and (memq 'left borders) (not alignment))
-	    (push "|" alignment))
-	  (push
-	   (concat (pcase (org-export-table-cell-alignment cell info)
-		     (`left "l") (`right "r") (`center "c"))
-		   width
-		   divider)
-	   alignment)
-	  (when (memq 'right borders) (push "|" alignment))))
-      info)
-    (apply #'concat (reverse alignment))))
-
-(defun org-man-table--org-table (table contents info)
-  "Return appropriate Man code for an Org table.
-
-TABLE is the table type element to transcode.  CONTENTS is its
-contents, as a string.  INFO is a plist used as a communication
-channel.
-
-This function assumes TABLE has `org' as its `:type' attribute."
-  (let* ((attr (org-export-read-attribute :attr_man table))
-         (caption (and (not (plist-get attr :disable-caption))
-		       (org-man--caption/label-string table info)))
-         (divider (if (plist-get attr :divider) "|" " "))
-
-         ;; Determine alignment string.
-         (alignment (org-man-table--align-string divider table info))
-         ;; Extract others display options.
-
-         (lines (org-split-string contents "\n"))
-
-         (attr-list
-	  (delq nil
-		(list
-		 (and (plist-get attr :expand) "expand")
-		 (let ((placement (plist-get attr :placement)))
-		   (cond ((string= placement 'center) "center")
-			 ((string= placement 'left) nil)
-			 ((plist-get info :man-tables-centered) "center")
-			 (t "")))
-		 (or (plist-get attr :boxtype) "box"))))
-
-         (title-line  (plist-get attr :title-line))
-         (long-cells (plist-get attr :long-cells))
-
-         (table-format (concat
-                        (format "%s" (or (car attr-list) "" ))
-                        (or
-                         (let ((output-list '()))
-                           (when (cdr attr-list)
-                             (dolist (attr-item (cdr attr-list))
-			       (setq output-list (concat output-list  (format ",%s" attr-item)))))
-                           output-list)
-                         "")))
-
-	 (first-line (when lines (org-split-string (car lines) "\t"))))
-    ;; Prepare the final format string for the table.
-
-
-    (cond
-     ;; Others.
-     (lines (concat ".TS\n " table-format ";\n"
-
-                    (format "%s.\n"
-                            (let ((final-line ""))
-                              (when title-line
-                                (dotimes (_ (length first-line))
-                                  (setq final-line (concat final-line "cb" divider))))
-
-                              (setq final-line (concat final-line "\n"))
-
-                              (if alignment
-                                  (setq final-line (concat final-line alignment))
-                                (dotimes (_ (length first-line))
-                                  (setq final-line (concat final-line "c" divider))))
-                              final-line ))
-
-                    (format "%s.TE\n"
-                            (let ((final-line "")
-                                  (long-line "")
-                                  (lines (org-split-string contents "\n")))
-
-                              (dolist (line-item lines)
-                                (setq long-line "")
-
-                                (if long-cells
-                                    (progn
-                                      (if (string= line-item "_")
-                                          (setq long-line (format "%s\n" line-item))
-                                        ;; else string =
-                                        (let ((cell-item-list (org-split-string line-item "\t")))
-                                          (dolist (cell-item cell-item-list)
-
-                                            (cond  ((eq cell-item (car (last cell-item-list)))
-                                                    (setq long-line (concat long-line
-                                                                            (format "T{\n%s\nT}\t\n"  cell-item ))))
-                                                   (t
-                                                    (setq long-line (concat long-line
-                                                                            (format "T{\n%s\nT}\t"  cell-item ))))))
-					  long-line))
-				      ;; else long cells
-				      (setq final-line (concat final-line long-line )))
-
-                                  (setq final-line (concat final-line line-item "\n"))))
-                              final-line))
-
-                    (and caption (format ".TB \"%s\"" caption)))))))
-
-;;; Table Cell
-
-(defun org-man-table-cell (table-cell contents info)
-  "Transcode a TABLE-CELL element from Org to Man
-CONTENTS is the cell contents.  INFO is a plist used as
-a communication channel."
-  (concat
-   (let ((scientific-format (plist-get info :man-table-scientific-notation)))
-     (if (and contents
-	      scientific-format
-	      (string-match orgtbl-exp-regexp contents))
-	 ;; Use appropriate format string for scientific notation.
-	 (format scientific-format
-		 (match-string 1 contents)
-		 (match-string 2 contents))
-       contents))
-   (when (org-export-get-next-element table-cell info) "\t")))
-
-
-;;; Table Row
-
-(defun org-man-table-row (table-row contents info)
-  "Transcode a TABLE-ROW element from Org to Man.
-CONTENTS is the contents of the row.  INFO is a plist used as
-a communication channel."
-  ;; Rules are ignored since table separators are deduced from borders
-  ;; of the current row.
-  (when (eq (org-element-property :type table-row) 'standard)
-    (let ((borders
-	   ;; TABLE-ROW's borders are extracted from its first cell.
-	   (org-export-table-cell-borders
-	    (car (org-element-contents table-row)) info)))
-      (concat
-       (cond ((and (memq 'top borders) (memq 'above borders)) "_\n"))
-       contents
-       (cond ((and (memq 'bottom borders) (memq 'below borders)) "\n_")
-	     ((memq 'below borders) "\n_"))))))
-
-
-;;; Target
-
-(defun org-man-target (target _contents info)
-  "Transcode a TARGET object from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "\\fI%s\\fP" (org-export-get-reference target info)))
-
-
-;;; Timestamp
-
-(defun org-man-timestamp (_timestamp _contents _info)
-  "Transcode a TIMESTAMP object from Org to Man.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  "")
-
-
-;;; Underline
-
-(defun org-man-underline (_underline contents _info)
-  "Transcode UNDERLINE from Org to Man.
-CONTENTS is the text with underline markup.  INFO is a plist
-holding contextual information."
-  (format "\\fI%s\\fP" contents))
-
-
-;;; Verbatim
-
-(defun org-man-verbatim (verbatim _contents _info)
-  "Transcode a VERBATIM object from Org to Man."
-  (format "\\fI%s\\fP"
-	  (org-man--protect-text (org-element-property :value verbatim))))
-
-
-;;; Verse Block
-
-(defun org-man-verse-block (_verse-block contents _info)
-  "Transcode a VERSE-BLOCK element from Org to Man.
-CONTENTS is verse block contents. INFO is a plist holding
-contextual information."
-  (format ".RS\n.ft I\n%s\n.ft\n.RE" contents))
-
-
-
-;;; Interactive functions
-
-(defun org-man-export-to-man
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to a Man file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only the body
-without any markers.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".man" subtreep)))
-    (org-export-to-file 'man outfile
-      async subtreep visible-only body-only ext-plist)))
-
-(defun org-man-export-to-pdf
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to Groff then process through to PDF.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write between
-markers.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return PDF file's name."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".man" subtreep)))
-    (org-export-to-file 'man outfile
-      async subtreep visible-only body-only ext-plist
-      (lambda (file) (org-latex-compile file)))))
-
-(defun org-man-compile (file)
-  "Compile a Groff file.
-
-FILE is the name of the file being compiled.  Processing is done
-through the command specified in `org-man-pdf-process'.
-
-Return PDF file name or an error if it couldn't be produced."
-  (message "Processing Groff file %s..." file)
-  (let ((output (org-compile-file file org-man-pdf-process "pdf")))
-    (when org-man-remove-logfiles
-      (let ((base (file-name-sans-extension output)))
-	(dolist (ext org-man-logfiles-extensions)
-	  (let ((file (concat base "." ext)))
-	    (when (file-exists-p file) (delete-file file))))))
-    (message "Process completed.")
-    output))
-
-(provide 'ox-man)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-man.el ends here
diff --git a/elpa/org-9.1.14/ox-man.elc b/elpa/org-9.1.14/ox-man.elc
deleted file mode 100644
index 84a2680..0000000
--- a/elpa/org-9.1.14/ox-man.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-md.el b/elpa/org-9.1.14/ox-md.el
deleted file mode 100644
index 9d7458e..0000000
--- a/elpa/org-9.1.14/ox-md.el
+++ /dev/null
@@ -1,736 +0,0 @@
-;;; ox-md.el --- Markdown Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
-;; Keywords: org, wp, markdown
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This library implements a Markdown back-end (vanilla flavor) for
-;; Org exporter, based on `html' back-end.  See Org manual for more
-;; information.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'ox-html)
-(require 'ox-publish)
-
-
-;;; User-Configurable Variables
-
-(defgroup org-export-md nil
-  "Options specific to Markdown export back-end."
-  :tag "Org Markdown"
-  :group 'org-export
-  :version "24.4"
-  :package-version '(Org . "8.0"))
-
-(defcustom org-md-headline-style 'atx
-  "Style used to format headlines.
-This variable can be set to either `atx' or `setext'."
-  :group 'org-export-md
-  :type '(choice
-	  (const :tag "Use \"atx\" style" atx)
-	  (const :tag "Use \"Setext\" style" setext)))
-
-
-;;;; Footnotes
-
-(defcustom org-md-footnotes-section "%s%s"
-  "Format string for the footnotes section.
-The first %s placeholder will be replaced with the localized Footnotes section
-heading, the second with the contents of the Footnotes section."
- :group 'org-export-md
- :type 'string
- :version "26.1"
- :package-version '(Org . "9.0"))
-
-(defcustom org-md-footnote-format "<sup>%s</sup>"
-  "Format string for the footnote reference.
-The %s will be replaced by the footnote reference itself."
-  :group 'org-export-md
-  :type 'string
-  :version "26.1"
-  :package-version '(Org . "9.0"))
-
-
-;;; Define Back-End
-
-(org-export-define-derived-backend 'md 'html
-  :filters-alist '((:filter-parse-tree . org-md-separate-elements))
-  :menu-entry
-  '(?m "Export to Markdown"
-       ((?M "To temporary buffer"
-	    (lambda (a s v b) (org-md-export-as-markdown a s v)))
-	(?m "To file" (lambda (a s v b) (org-md-export-to-markdown a s v)))
-	(?o "To file and open"
-	    (lambda (a s v b)
-	      (if a (org-md-export-to-markdown t s v)
-		(org-open-file (org-md-export-to-markdown nil s v)))))))
-  :translate-alist '((bold . org-md-bold)
-		     (code . org-md-verbatim)
-		     (example-block . org-md-example-block)
-		     (export-block . org-md-export-block)
-		     (fixed-width . org-md-example-block)
-		     (headline . org-md-headline)
-		     (horizontal-rule . org-md-horizontal-rule)
-		     (inline-src-block . org-md-verbatim)
-		     (inner-template . org-md-inner-template)
-		     (italic . org-md-italic)
-		     (item . org-md-item)
-		     (keyword . org-md-keyword)
-		     (line-break . org-md-line-break)
-		     (link . org-md-link)
-		     (node-property . org-md-node-property)
-		     (paragraph . org-md-paragraph)
-		     (plain-list . org-md-plain-list)
-		     (plain-text . org-md-plain-text)
-		     (property-drawer . org-md-property-drawer)
-		     (quote-block . org-md-quote-block)
-		     (section . org-md-section)
-		     (src-block . org-md-example-block)
-		     (template . org-md-template)
-		     (verbatim . org-md-verbatim))
-  :options-alist
-  '((:md-footnote-format nil nil org-md-footnote-format)
-    (:md-footnotes-section nil nil org-md-footnotes-section)
-    (:md-headline-style nil nil org-md-headline-style)))
-
-
-;;; Filters
-
-(defun org-md-separate-elements (tree _backend info)
-  "Fix blank lines between elements.
-
-TREE is the parse tree being exported.  BACKEND is the export
-back-end used.  INFO is a plist used as a communication channel.
-
-Enforce a blank line between elements.  There are two exceptions
-to this rule:
-
-  1. Preserve blank lines between sibling items in a plain list,
-
-  2. In an item, remove any blank line before the very first
-     paragraph and the next sub-list when the latter ends the
-     current item.
-
-Assume BACKEND is `md'."
-  (org-element-map tree (remq 'item org-element-all-elements)
-    (lambda (e)
-      (org-element-put-property
-       e :post-blank
-       (if (and (eq (org-element-type e) 'paragraph)
-		(eq (org-element-type (org-element-property :parent e)) 'item)
-		(org-export-first-sibling-p e info)
-		(let ((next (org-export-get-next-element e info)))
-		  (and (eq (org-element-type next) 'plain-list)
-		       (not (org-export-get-next-element next info)))))
-	   0
-	 1))))
-  ;; Return updated tree.
-  tree)
-
-
-
-;;; Transcode Functions
-
-;;;; Bold
-
-(defun org-md-bold (_bold contents _info)
-  "Transcode BOLD object into Markdown format.
-CONTENTS is the text within bold markup.  INFO is a plist used as
-a communication channel."
-  (format "**%s**" contents))
-
-
-;;;; Code and Verbatim
-
-(defun org-md-verbatim (verbatim _contents _info)
-  "Transcode VERBATIM object into Markdown format.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (let ((value (org-element-property :value verbatim)))
-    (format (cond ((not (string-match "`" value)) "`%s`")
-		  ((or (string-prefix-p "`" value)
-		       (string-suffix-p "`" value))
-		   "`` %s ``")
-		  (t "``%s``"))
-	    value)))
-
-
-;;;; Example Block, Src Block and export Block
-
-(defun org-md-example-block (example-block _contents info)
-  "Transcode EXAMPLE-BLOCK element into Markdown format.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (replace-regexp-in-string
-   "^" "    "
-   (org-remove-indentation
-    (org-export-format-code-default example-block info))))
-
-(defun org-md-export-block (export-block contents info)
-  "Transcode a EXPORT-BLOCK element from Org to Markdown.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (if (member (org-element-property :type export-block) '("MARKDOWN" "MD"))
-      (org-remove-indentation (org-element-property :value export-block))
-    ;; Also include HTML export blocks.
-    (org-export-with-backend 'html export-block contents info)))
-
-
-;;;; Headline
-
-(defun org-md-headline (headline contents info)
-  "Transcode HEADLINE element into Markdown format.
-CONTENTS is the headline contents.  INFO is a plist used as
-a communication channel."
-  (unless (org-element-property :footnote-section-p headline)
-    (let* ((level (org-export-get-relative-level headline info))
-	   (title (org-export-data (org-element-property :title headline) info))
-	   (todo (and (plist-get info :with-todo-keywords)
-		      (let ((todo (org-element-property :todo-keyword
-							headline)))
-			(and todo (concat (org-export-data todo info) " ")))))
-	   (tags (and (plist-get info :with-tags)
-		      (let ((tag-list (org-export-get-tags headline info)))
-			(and tag-list
-			     (format "     :%s:"
-				     (mapconcat 'identity tag-list ":"))))))
-	   (priority
-	    (and (plist-get info :with-priority)
-		 (let ((char (org-element-property :priority headline)))
-		   (and char (format "[#%c] " char)))))
-	   ;; Headline text without tags.
-	   (heading (concat todo priority title))
-	   (style (plist-get info :md-headline-style)))
-      (cond
-       ;; Cannot create a headline.  Fall-back to a list.
-       ((or (org-export-low-level-p headline info)
-	    (not (memq style '(atx setext)))
-	    (and (eq style 'atx) (> level 6))
-	    (and (eq style 'setext) (> level 2)))
-	(let ((bullet
-	       (if (not (org-export-numbered-headline-p headline info)) "-"
-		 (concat (number-to-string
-			  (car (last (org-export-get-headline-number
-				      headline info))))
-			 "."))))
-	  (concat bullet (make-string (- 4 (length bullet)) ?\s) heading tags "\n\n"
-		  (and contents (replace-regexp-in-string "^" "    " contents)))))
-       (t
-	(let ((anchor
-	       (and (org-md--headline-referred-p headline info)
-		    (format "<a id=\"%s\"></a>"
-			    (or (org-element-property :CUSTOM_ID headline)
-				(org-export-get-reference headline info))))))
-	  (concat (org-md--headline-title style level heading anchor tags)
-		  contents)))))))
-
-
-(defun org-md--headline-referred-p (headline info)
-  "Non-nil when HEADLINE is being referred to.
-INFO is a plist used as a communication channel.  Links and table
-of contents can refer to headlines."
-  (unless (org-element-property :footnote-section-p headline)
-    (or
-     ;; Global table of contents includes HEADLINE.
-     (and (plist-get info :with-toc)
-	  (memq headline
-		(org-export-collect-headlines info (plist-get info :with-toc))))
-     ;; A local table of contents includes HEADLINE.
-     (cl-some
-      (lambda (h)
-	(let ((section (car (org-element-contents h))))
-	  (and
-	   (eq 'section (org-element-type section))
-	   (org-element-map section 'keyword
-	     (lambda (keyword)
-	       (when (equal "TOC" (org-element-property :key keyword))
-		 (let ((case-fold-search t)
-		       (value (org-element-property :value keyword)))
-		   (and (string-match-p "\\<headlines\\>" value)
-			(let ((n (and
-				  (string-match "\\<[0-9]+\\>" value)
-				  (string-to-number (match-string 0 value))))
-			      (local? (string-match-p "\\<local\\>" value)))
-			  (memq headline
-				(org-export-collect-headlines
-				 info n (and local? keyword))))))))
-	     info t))))
-      (org-element-lineage headline))
-     ;; A link refers internally to HEADLINE.
-     (org-element-map (plist-get info :parse-tree) 'link
-       (lambda (link)
-	 (eq headline
-	     (pcase (org-element-property :type link)
-	       ((or "custom-id" "id") (org-export-resolve-id-link link info))
-	       ("fuzzy" (org-export-resolve-fuzzy-link link info))
-	       (_ nil))))
-       info t))))
-
-(defun org-md--headline-title (style level title &optional anchor tags)
-  "Generate a headline title in the preferred Markdown headline style.
-STYLE is the preferred style (`atx' or `setext').  LEVEL is the
-header level.  TITLE is the headline title.  ANCHOR is the HTML
-anchor tag for the section as a string.  TAGS are the tags set on
-the section."
-  (let ((anchor-lines (and anchor (concat anchor "\n\n"))))
-    ;; Use "Setext" style
-    (if (and (eq style 'setext) (< level 3))
-        (let* ((underline-char (if (= level 1) ?= ?-))
-               (underline (concat (make-string (length title) underline-char)
-				  "\n")))
-          (concat "\n" anchor-lines title tags "\n" underline "\n"))
-        ;; Use "Atx" style
-        (let ((level-mark (make-string level ?#)))
-          (concat "\n" anchor-lines level-mark " " title tags "\n\n")))))
-
-;;;; Horizontal Rule
-
-(defun org-md-horizontal-rule (_horizontal-rule _contents _info)
-  "Transcode HORIZONTAL-RULE element into Markdown format.
-CONTENTS is the horizontal rule contents.  INFO is a plist used
-as a communication channel."
-  "---")
-
-
-;;;; Italic
-
-(defun org-md-italic (_italic contents _info)
-  "Transcode ITALIC object into Markdown format.
-CONTENTS is the text within italic markup.  INFO is a plist used
-as a communication channel."
-  (format "*%s*" contents))
-
-
-;;;; Item
-
-(defun org-md-item (item contents info)
-  "Transcode ITEM element into Markdown format.
-CONTENTS is the item contents.  INFO is a plist used as
-a communication channel."
-  (let* ((type (org-element-property :type (org-export-get-parent item)))
-	 (struct (org-element-property :structure item))
-	 (bullet (if (not (eq type 'ordered)) "-"
-		   (concat (number-to-string
-			    (car (last (org-list-get-item-number
-					(org-element-property :begin item)
-					struct
-					(org-list-prevs-alist struct)
-					(org-list-parents-alist struct)))))
-			   "."))))
-    (concat bullet
-	    (make-string (- 4 (length bullet)) ? )
-	    (pcase (org-element-property :checkbox item)
-	      (`on "[X] ")
-	      (`trans "[-] ")
-	      (`off "[ ] "))
-	    (let ((tag (org-element-property :tag item)))
-	      (and tag (format "**%s:** "(org-export-data tag info))))
-	    (and contents
-		 (org-trim (replace-regexp-in-string "^" "    " contents))))))
-
-
-
-;;;; Keyword
-
-(defun org-md-keyword (keyword contents info)
-  "Transcode a KEYWORD element into Markdown format.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (pcase (org-element-property :key keyword)
-    ((or "MARKDOWN" "MD") (org-element-property :value keyword))
-    ("TOC"
-     (let ((case-fold-search t)
-	   (value (org-element-property :value keyword)))
-       (cond
-	((string-match-p "\\<headlines\\>" value)
-	 (let ((depth (and (string-match "\\<[0-9]+\\>" value)
-			   (string-to-number (match-string 0 value))))
-	       (local? (string-match-p "\\<local\\>" value)))
-	   (org-remove-indentation
-	    (org-md--build-toc info depth keyword local?)))))))
-    (_ (org-export-with-backend 'html keyword contents info))))
-
-
-;;;; Line Break
-
-(defun org-md-line-break (_line-break _contents _info)
-  "Transcode LINE-BREAK object into Markdown format.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  "  \n")
-
-
-;;;; Link
-
-(defun org-md-link (link contents info)
-  "Transcode LINE-BREAK object into Markdown format.
-CONTENTS is the link's description.  INFO is a plist used as
-a communication channel."
-  (let ((link-org-files-as-md
-	 (lambda (raw-path)
-	   ;; Treat links to `file.org' as links to `file.md'.
-	   (if (string= ".org" (downcase (file-name-extension raw-path ".")))
-	       (concat (file-name-sans-extension raw-path) ".md")
-	     raw-path)))
-	(type (org-element-property :type link)))
-    (cond
-     ;; Link type is handled by a special function.
-     ((org-export-custom-protocol-maybe link contents 'md))
-     ((member type '("custom-id" "id" "fuzzy"))
-      (let ((destination (if (string= type "fuzzy")
-			     (org-export-resolve-fuzzy-link link info)
-			   (org-export-resolve-id-link link info))))
-	(pcase (org-element-type destination)
-	  (`plain-text			; External file.
-	   (let ((path (funcall link-org-files-as-md destination)))
-	     (if (not contents) (format "<%s>" path)
-	       (format "[%s](%s)" contents path))))
-	  (`headline
-	   (format
-	    "[%s](#%s)"
-	    ;; Description.
-	    (cond ((org-string-nw-p contents))
-		  ((org-export-numbered-headline-p destination info)
-		   (mapconcat #'number-to-string
-			      (org-export-get-headline-number destination info)
-			      "."))
-		  (t (org-export-data (org-element-property :title destination)
-				      info)))
-	    ;; Reference.
-	    (or (org-element-property :CUSTOM_ID destination)
-		(org-export-get-reference destination info))))
-	  (_
-	   (let ((description
-		  (or (org-string-nw-p contents)
-		      (let ((number (org-export-get-ordinal destination info)))
-			(cond
-			 ((not number) nil)
-			 ((atom number) (number-to-string number))
-			 (t (mapconcat #'number-to-string number ".")))))))
-	     (when description
-	       (format "[%s](#%s)"
-		       description
-		       (org-export-get-reference destination info))))))))
-     ((org-export-inline-image-p link org-html-inline-image-rules)
-      (let ((path (let ((raw-path (org-element-property :path link)))
-		    (cond ((not (equal "file" type)) (concat type ":" raw-path))
-			  ((not (file-name-absolute-p raw-path)) raw-path)
-			  (t (expand-file-name raw-path)))))
-	    (caption (org-export-data
-		      (org-export-get-caption
-		       (org-export-get-parent-element link)) info)))
-	(format "![img](%s)"
-		(if (not (org-string-nw-p caption)) path
-		  (format "%s \"%s\"" path caption)))))
-     ((string= type "coderef")
-      (let ((ref (org-element-property :path link)))
-	(format (org-export-get-coderef-format ref contents)
-		(org-export-resolve-coderef ref info))))
-     ((equal type "radio") contents)
-     (t (let* ((raw-path (org-element-property :path link))
-	       (path
-		(cond
-		 ((member type '("http" "https" "ftp" "mailto" "irc"))
-		  (concat type ":" raw-path))
-		 ((string= type "file")
-		  (org-export-file-uri (funcall link-org-files-as-md raw-path)))
-		 (t raw-path))))
-	  (if (not contents) (format "<%s>" path)
-	    (format "[%s](%s)" contents path)))))))
-
-
-;;;; Node Property
-
-(defun org-md-node-property (node-property _contents _info)
-  "Transcode a NODE-PROPERTY element into Markdown syntax.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "%s:%s"
-          (org-element-property :key node-property)
-          (let ((value (org-element-property :value node-property)))
-            (if value (concat " " value) ""))))
-
-
-;;;; Paragraph
-
-(defun org-md-paragraph (paragraph contents _info)
-  "Transcode PARAGRAPH element into Markdown format.
-CONTENTS is the paragraph contents.  INFO is a plist used as
-a communication channel."
-  (let ((first-object (car (org-element-contents paragraph))))
-    ;; If paragraph starts with a #, protect it.
-    (if (and (stringp first-object) (string-prefix-p "#" first-object))
-	(concat "\\" contents)
-      contents)))
-
-
-;;;; Plain List
-
-(defun org-md-plain-list (_plain-list contents _info)
-  "Transcode PLAIN-LIST element into Markdown format.
-CONTENTS is the plain-list contents.  INFO is a plist used as
-a communication channel."
-  contents)
-
-
-;;;; Plain Text
-
-(defun org-md-plain-text (text info)
-  "Transcode a TEXT string into Markdown format.
-TEXT is the string to transcode.  INFO is a plist holding
-contextual information."
-  (when (plist-get info :with-smart-quotes)
-    (setq text (org-export-activate-smart-quotes text :html info)))
-  ;; The below series of replacements in `text' is order sensitive.
-  ;; Protect `, *, _, and \
-  (setq text (replace-regexp-in-string "[`*_\\]" "\\\\\\&" text))
-  ;; Protect ambiguous #.  This will protect # at the beginning of
-  ;; a line, but not at the beginning of a paragraph.  See
-  ;; `org-md-paragraph'.
-  (setq text (replace-regexp-in-string "\n#" "\n\\\\#" text))
-  ;; Protect ambiguous !
-  (setq text (replace-regexp-in-string "\\(!\\)\\[" "\\\\!" text nil nil 1))
-  ;; Handle special strings, if required.
-  (when (plist-get info :with-special-strings)
-    (setq text (org-html-convert-special-strings text)))
-  ;; Handle break preservation, if required.
-  (when (plist-get info :preserve-breaks)
-    (setq text (replace-regexp-in-string "[ \t]*\n" "  \n" text)))
-  ;; Return value.
-  text)
-
-
-;;;; Property Drawer
-
-(defun org-md-property-drawer (_property-drawer contents _info)
-  "Transcode a PROPERTY-DRAWER element into Markdown format.
-CONTENTS holds the contents of the drawer.  INFO is a plist
-holding contextual information."
-  (and (org-string-nw-p contents)
-       (replace-regexp-in-string "^" "    " contents)))
-
-
-;;;; Quote Block
-
-(defun org-md-quote-block (_quote-block contents _info)
-  "Transcode QUOTE-BLOCK element into Markdown format.
-CONTENTS is the quote-block contents.  INFO is a plist used as
-a communication channel."
-  (replace-regexp-in-string
-   "^" "> "
-   (replace-regexp-in-string "\n\\'" "" contents)))
-
-
-;;;; Section
-
-(defun org-md-section (_section contents _info)
-  "Transcode SECTION element into Markdown format.
-CONTENTS is the section contents.  INFO is a plist used as
-a communication channel."
-  contents)
-
-
-;;;; Template
-
-(defun org-md--build-toc (info &optional n keyword local)
-  "Return a table of contents.
-
-INFO is a plist used as a communication channel.
-
-Optional argument N, when non-nil, is an integer specifying the
-depth of the table.
-
-Optional argument KEYWORD specifies the TOC keyword, if any, from
-which the table of contents generation has been initiated.
-
-When optional argument LOCAL is non-nil, build a table of
-contents according to the current headline."
-  (concat
-   (unless local
-     (let ((style (plist-get info :md-headline-style))
-	   (title (org-html--translate "Table of Contents" info)))
-       (org-md--headline-title style 1 title nil)))
-   (mapconcat
-    (lambda (headline)
-      (let* ((indentation
-	      (make-string
-	       (* 4 (1- (org-export-get-relative-level headline info)))
-	       ?\s))
-	     (bullet
-	      (if (not (org-export-numbered-headline-p headline info)) "-   "
-		(let ((prefix
-		       (format "%d." (org-last (org-export-get-headline-number
-						headline info)))))
-		  (concat prefix (make-string (max 1 (- 4 (length prefix)))
-					      ?\s)))))
-	     (title
-	      (format "[%s](#%s)"
-		      (org-export-data-with-backend
-		       (org-export-get-alt-title headline info)
-		       (org-export-toc-entry-backend 'md)
-		       info)
-		      (or (org-element-property :CUSTOM_ID headline)
-			  (org-export-get-reference headline info))))
-	     (tags (and (plist-get info :with-tags)
-			(not (eq 'not-in-toc (plist-get info :with-tags)))
-			(let ((tags (org-export-get-tags headline info)))
-			  (and tags
-			       (format ":%s:"
-				       (mapconcat #'identity tags ":")))))))
-	(concat indentation bullet title tags)))
-    (org-export-collect-headlines info n (and local keyword)) "\n")
-   "\n"))
-
-(defun org-md--footnote-formatted (footnote info)
-  "Formats a single footnote entry FOOTNOTE.
-FOOTNOTE is a cons cell of the form (number . definition).
-INFO is a plist with contextual information."
-  (let* ((fn-num (car footnote))
-         (fn-text (cdr footnote))
-         (fn-format (plist-get info :md-footnote-format))
-         (fn-anchor (format "fn.%d" fn-num))
-         (fn-href (format " href=\"#fnr.%d\"" fn-num))
-         (fn-link-to-ref (org-html--anchor fn-anchor fn-num fn-href info)))
-    (concat (format fn-format fn-link-to-ref) " " fn-text "\n")))
-
-(defun org-md--footnote-section (info)
-  "Format the footnote section.
-INFO is a plist used as a communication channel."
-  (let* ((fn-alist (org-export-collect-footnote-definitions info))
-         (fn-alist (cl-loop for (n _type raw) in fn-alist collect
-                            (cons n (org-trim (org-export-data raw info)))))
-         (headline-style (plist-get info :md-headline-style))
-         (section-title (org-html--translate "Footnotes" info)))
-    (when fn-alist
-      (format (plist-get info :md-footnotes-section)
-              (org-md--headline-title headline-style 1 section-title)
-              (mapconcat (lambda (fn) (org-md--footnote-formatted fn info))
-                         fn-alist
-                         "\n")))))
-
-(defun org-md-inner-template (contents info)
-  "Return body of document after converting it to Markdown syntax.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  ;; Make sure CONTENTS is separated from table of contents and
-  ;; footnotes with at least a blank line.
-  (concat
-   ;; Table of contents.
-   (let ((depth (plist-get info :with-toc)))
-     (when depth
-       (concat (org-md--build-toc info (and (wholenump depth) depth)) "\n")))
-   ;; Document contents.
-   contents
-   "\n"
-   ;; Footnotes section.
-   (org-md--footnote-section info)))
-
-(defun org-md-template (contents _info)
-  "Return complete document string after Markdown conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist used
-as a communication channel."
-  contents)
-
-
-
-;;; Interactive function
-
-;;;###autoload
-(defun org-md-export-as-markdown (&optional async subtreep visible-only)
-  "Export current buffer to a Markdown buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-Export is done in a buffer named \"*Org MD Export*\", which will
-be displayed when `org-export-show-temporary-export-buffer' is
-non-nil."
-  (interactive)
-  (org-export-to-buffer 'md "*Org MD Export*"
-    async subtreep visible-only nil nil (lambda () (text-mode))))
-
-;;;###autoload
-(defun org-md-convert-region-to-md ()
-  "Assume the current region has Org syntax, and convert it to Markdown.
-This can be used in any buffer.  For example, you can write an
-itemized list in Org syntax in a Markdown buffer and use
-this command to convert it."
-  (interactive)
-  (org-export-replace-region-by 'md))
-
-
-;;;###autoload
-(defun org-md-export-to-markdown (&optional async subtreep visible-only)
-  "Export current buffer to a Markdown file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-Return output file's name."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".md" subtreep)))
-    (org-export-to-file 'md outfile async subtreep visible-only)))
-
-;;;###autoload
-(defun org-md-publish-to-md (plist filename pub-dir)
-  "Publish an org file to Markdown.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to 'md filename ".md" plist pub-dir))
-
-(provide 'ox-md)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-md.el ends here
diff --git a/elpa/org-9.1.14/ox-md.elc b/elpa/org-9.1.14/ox-md.elc
deleted file mode 100644
index dd8dd20..0000000
--- a/elpa/org-9.1.14/ox-md.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-odt.el b/elpa/org-9.1.14/ox-odt.el
deleted file mode 100644
index 74d811d..0000000
--- a/elpa/org-9.1.14/ox-odt.el
+++ /dev/null
@@ -1,4332 +0,0 @@
-;;; ox-odt.el --- OpenDocument Text Exporter for Org Mode -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2010-2018 Free Software Foundation, Inc.
-
-;; Author: Jambunathan K <kjambunathan at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-;; Homepage: https://orgmode.org
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'format-spec)
-(require 'ox)
-(require 'org-compat)
-(require 'table nil 'noerror)
-
-;;; Define Back-End
-
-(org-export-define-backend 'odt
-  '((bold . org-odt-bold)
-    (center-block . org-odt-center-block)
-    (clock . org-odt-clock)
-    (code . org-odt-code)
-    (drawer . org-odt-drawer)
-    (dynamic-block . org-odt-dynamic-block)
-    (entity . org-odt-entity)
-    (example-block . org-odt-example-block)
-    (export-block . org-odt-export-block)
-    (export-snippet . org-odt-export-snippet)
-    (fixed-width . org-odt-fixed-width)
-    (footnote-definition . org-odt-footnote-definition)
-    (footnote-reference . org-odt-footnote-reference)
-    (headline . org-odt-headline)
-    (horizontal-rule . org-odt-horizontal-rule)
-    (inline-src-block . org-odt-inline-src-block)
-    (inlinetask . org-odt-inlinetask)
-    (italic . org-odt-italic)
-    (item . org-odt-item)
-    (keyword . org-odt-keyword)
-    (latex-environment . org-odt-latex-environment)
-    (latex-fragment . org-odt-latex-fragment)
-    (line-break . org-odt-line-break)
-    (link . org-odt-link)
-    (node-property . org-odt-node-property)
-    (paragraph . org-odt-paragraph)
-    (plain-list . org-odt-plain-list)
-    (plain-text . org-odt-plain-text)
-    (planning . org-odt-planning)
-    (property-drawer . org-odt-property-drawer)
-    (quote-block . org-odt-quote-block)
-    (radio-target . org-odt-radio-target)
-    (section . org-odt-section)
-    (special-block . org-odt-special-block)
-    (src-block . org-odt-src-block)
-    (statistics-cookie . org-odt-statistics-cookie)
-    (strike-through . org-odt-strike-through)
-    (subscript . org-odt-subscript)
-    (superscript . org-odt-superscript)
-    (table . org-odt-table)
-    (table-cell . org-odt-table-cell)
-    (table-row . org-odt-table-row)
-    (target . org-odt-target)
-    (template . org-odt-template)
-    (timestamp . org-odt-timestamp)
-    (underline . org-odt-underline)
-    (verbatim . org-odt-verbatim)
-    (verse-block . org-odt-verse-block))
-  :filters-alist '((:filter-parse-tree
-		    . (org-odt--translate-latex-fragments
-		       org-odt--translate-description-lists
-		       org-odt--translate-list-tables
-		       org-odt--translate-image-links)))
-  :menu-entry
-  '(?o "Export to ODT"
-       ((?o "As ODT file" org-odt-export-to-odt)
-	(?O "As ODT file and open"
-	    (lambda (a s v b)
-	      (if a (org-odt-export-to-odt t s v)
-		(org-open-file (org-odt-export-to-odt nil s v) 'system))))))
-  :options-alist
-  '((:odt-styles-file "ODT_STYLES_FILE" nil nil t)
-    (:description "DESCRIPTION" nil nil newline)
-    (:keywords "KEYWORDS" nil nil space)
-    (:subtitle "SUBTITLE" nil nil parse)
-    ;; Other variables.
-    (:odt-content-template-file nil nil org-odt-content-template-file)
-    (:odt-display-outline-level nil nil org-odt-display-outline-level)
-    (:odt-fontify-srcblocks nil nil org-odt-fontify-srcblocks)
-    (:odt-format-drawer-function nil nil org-odt-format-drawer-function)
-    (:odt-format-headline-function nil nil org-odt-format-headline-function)
-    (:odt-format-inlinetask-function nil nil org-odt-format-inlinetask-function)
-    (:odt-inline-formula-rules nil nil org-odt-inline-formula-rules)
-    (:odt-inline-image-rules nil nil org-odt-inline-image-rules)
-    (:odt-pixels-per-inch nil nil org-odt-pixels-per-inch)
-    (:odt-styles-file nil nil org-odt-styles-file)
-    (:odt-table-styles nil nil org-odt-table-styles)
-    (:odt-use-date-fields nil nil org-odt-use-date-fields)
-    ;; Redefine regular option.
-    (:with-latex nil "tex" org-odt-with-latex)
-    ;; Retrieve LaTeX header for fragments.
-    (:latex-header "LATEX_HEADER" nil nil newline)))
-
-
-;;; Dependencies
-
-;;; Hooks
-
-;;; Function and Dynamically Scoped Variables Declarations
-
-(declare-function hfy-face-to-style "htmlfontify" (fn))
-(declare-function hfy-face-or-def-to-name "htmlfontify" (fn))
-(declare-function archive-zip-extract "arc-mode" (archive name))
-(declare-function org-create-math-formula "org" (latex-frag &optional mathml-file))
-(declare-function browse-url-file-url "browse-url" (file))
-
-(defvar nxml-auto-insert-xml-declaration-flag) ; nxml-mode.el
-(defvar archive-zip-extract)		       ; arc-mode.el
-(defvar hfy-end-span-handler)		       ; htmlfontify.el
-(defvar hfy-begin-span-handler)		       ; htmlfontify.el
-(defvar hfy-face-to-css)		       ; htmlfontify.el
-(defvar hfy-html-quote-map)		       ; htmlfontify.el
-(defvar hfy-html-quote-regex)		       ; htmlfontify.el
-
-
-;;; Internal Variables
-
-(defconst org-odt-lib-dir
-  (file-name-directory (or load-file-name (buffer-file-name)))
-  "Location of ODT exporter.
-Use this to infer values of `org-odt-styles-dir' and
-`org-odt-schema-dir'.")
-
-(defvar org-odt-data-dir
-  (expand-file-name "../../etc/" org-odt-lib-dir)
-  "Data directory for ODT exporter.
-Use this to infer values of `org-odt-styles-dir' and
-`org-odt-schema-dir'.")
-
-(defconst org-odt-special-string-regexps
-  '(("\\\\-" . "&#x00ad;\\1")		; shy
-    ("---\\([^-]\\)" . "&#x2014;\\1")	; mdash
-    ("--\\([^-]\\)" . "&#x2013;\\1")	; ndash
-    ("\\.\\.\\." . "&#x2026;"))		; hellip
-  "Regular expressions for special string conversion.")
-
-(defconst org-odt-schema-dir-list
-  (list
-   (and org-odt-data-dir
-	(expand-file-name "./schema/" org-odt-data-dir)) ; bail out
-   (eval-when-compile
-     (and (boundp 'org-odt-data-dir) org-odt-data-dir ; see make install
-	  (expand-file-name "./schema/" org-odt-data-dir))))
-  "List of directories to search for OpenDocument schema files.
-Use this list to set the default value of
-`org-odt-schema-dir'.  The entries in this list are
-populated heuristically based on the values of `org-odt-lib-dir'
-and `org-odt-data-dir'.")
-
-(defconst org-odt-styles-dir-list
-  (list
-   (and org-odt-data-dir
-	(expand-file-name "./styles/" org-odt-data-dir)) ; bail out
-   (eval-when-compile
-     (and (boundp 'org-odt-data-dir) org-odt-data-dir ; see make install
-	  (expand-file-name "./styles/" org-odt-data-dir)))
-   (expand-file-name "../etc/styles/" org-odt-lib-dir) ; git
-   (expand-file-name "./etc/styles/" org-odt-lib-dir)  ; elpa
-   (expand-file-name "./org/" data-directory)	       ; system
-   )
-  "List of directories to search for OpenDocument styles files.
-See `org-odt-styles-dir'.  The entries in this list are populated
-heuristically based on the values of `org-odt-lib-dir' and
-`org-odt-data-dir'.")
-
-(defconst org-odt-styles-dir
-  (let ((styles-dir
-	 (cl-find-if
-	  (lambda (dir)
-	    (and dir
-		 (file-readable-p
-		  (expand-file-name "OrgOdtContentTemplate.xml" dir))
-		 (file-readable-p (expand-file-name "OrgOdtStyles.xml" dir))))
-	  org-odt-styles-dir-list)))
-    (unless styles-dir
-      (error "Error (ox-odt): Cannot find factory styles files, aborting"))
-    styles-dir)
-  "Directory that holds auxiliary XML files used by the ODT exporter.
-
-This directory contains the following XML files -
- \"OrgOdtStyles.xml\" and \"OrgOdtContentTemplate.xml\".  These
- XML files are used as the default values of
- `org-odt-styles-file' and `org-odt-content-template-file'.
-
-The default value of this variable varies depending on the
-version of Org in use and is initialized from
-`org-odt-styles-dir-list'.  Note that the user could be using Org
-from one of: Org own private git repository, GNU ELPA tar or
-standard Emacs.")
-
-(defconst org-odt-bookmark-prefix "OrgXref.")
-
-(defconst org-odt-manifest-file-entry-tag
-  "\n<manifest:file-entry manifest:media-type=\"%s\" manifest:full-path=\"%s\"%s/>")
-
-(defconst org-odt-file-extensions
-  '(("odt" . "OpenDocument Text")
-    ("ott" . "OpenDocument Text Template")
-    ("odm" . "OpenDocument Master Document")
-    ("ods" . "OpenDocument Spreadsheet")
-    ("ots" . "OpenDocument Spreadsheet Template")
-    ("odg" . "OpenDocument Drawing (Graphics)")
-    ("otg" . "OpenDocument Drawing Template")
-    ("odp" . "OpenDocument Presentation")
-    ("otp" . "OpenDocument Presentation Template")
-    ("odi" . "OpenDocument Image")
-    ("odf" . "OpenDocument Formula")
-    ("odc" . "OpenDocument Chart")))
-
-(defconst org-odt-table-style-format
-  "
-<style:style style:name=\"%s\" style:family=\"table\">
-  <style:table-properties style:rel-width=\"%s%%\" fo:margin-top=\"0cm\" fo:margin-bottom=\"0.20cm\" table:align=\"center\"/>
-</style:style>
-"
-  "Template for auto-generated Table styles.")
-
-(defvar org-odt-automatic-styles '()
-  "Registry of automatic styles for various OBJECT-TYPEs.
-The variable has the following form:
- ((OBJECT-TYPE-A
-   ((OBJECT-NAME-A.1 OBJECT-PROPS-A.1)
-    (OBJECT-NAME-A.2 OBJECT-PROPS-A.2) ...))
-  (OBJECT-TYPE-B
-   ((OBJECT-NAME-B.1 OBJECT-PROPS-B.1)
-    (OBJECT-NAME-B.2 OBJECT-PROPS-B.2) ...))
-  ...).
-
-OBJECT-TYPEs could be \"Section\", \"Table\", \"Figure\" etc.
-OBJECT-PROPS is (typically) a plist created by passing
-\"#+ATTR_ODT: \" option to `org-odt-parse-block-attributes'.
-
-Use `org-odt-add-automatic-style' to add update this variable.'")
-
-(defvar org-odt-object-counters nil
-  "Running counters for various OBJECT-TYPEs.
-Use this to generate automatic names and style-names. See
-`org-odt-add-automatic-style'.")
-
-(defvar org-odt-src-block-paragraph-format
-  "<style:style style:name=\"OrgSrcBlock\" style:family=\"paragraph\" style:parent-style-name=\"Preformatted_20_Text\">
-   <style:paragraph-properties fo:background-color=\"%s\" fo:padding=\"0.049cm\" fo:border=\"0.51pt solid #000000\" style:shadow=\"none\">
-    <style:background-image/>
-   </style:paragraph-properties>
-   <style:text-properties fo:color=\"%s\"/>
-  </style:style>"
-  "Custom paragraph style for colorized source and example blocks.
-This style is much the same as that of \"OrgFixedWidthBlock\"
-except that the foreground and background colors are set
-according to the default face identified by the `htmlfontify'.")
-
-(defvar hfy-optimizations)
-(defvar org-odt-embedded-formulas-count 0)
-(defvar org-odt-embedded-images-count 0)
-(defvar org-odt-image-size-probe-method
-  (append (and (executable-find "identify") '(imagemagick)) ; See Bug#10675
-	  '(emacs fixed))
-  "Ordered list of methods for determining image sizes.")
-
-(defvar org-odt-default-image-sizes-alist
-  '(("as-char" . (5 . 0.4))
-    ("paragraph" . (5 . 5)))
-  "Hardcoded image dimensions one for each of the anchor
-  methods.")
-
-;; A4 page size is 21.0 by 29.7 cms
-;; The default page settings has 2cm margin on each of the sides. So
-;; the effective text area is 17.0 by 25.7 cm
-(defvar org-odt-max-image-size '(17.0 . 20.0)
-  "Limiting dimensions for an embedded image.")
-
-(defconst org-odt-label-styles
-  '(("math-formula" "%c" "text" "(%n)")
-    ("math-label" "(%n)" "text" "(%n)")
-    ("category-and-value" "%e %n: %c" "category-and-value" "%e %n")
-    ("value" "%e %n: %c" "value" "%n"))
-  "Specify how labels are applied and referenced.
-
-This is an alist where each element is of the form:
-
-  (STYLE-NAME ATTACH-FMT REF-MODE REF-FMT)
-
-ATTACH-FMT controls how labels and captions are attached to an
-entity.  It may contain following specifiers - %e and %c.  %e is
-replaced with the CATEGORY-NAME.  %n is replaced with
-\"<text:sequence ...> SEQNO </text:sequence>\".  %c is replaced
-with CAPTION.
-
-REF-MODE and REF-FMT controls how label references are generated.
-The following XML is generated for a label reference -
-\"<text:sequence-ref text:reference-format=\"REF-MODE\" ...>
-REF-FMT </text:sequence-ref>\".  REF-FMT may contain following
-specifiers - %e and %n.  %e is replaced with the CATEGORY-NAME.
-%n is replaced with SEQNO.
-
-See also `org-odt-format-label'.")
-
-(defvar org-odt-category-map-alist
-  '(("__Table__" "Table" "value" "Table" org-odt--enumerable-p)
-    ("__Figure__" "Illustration" "value" "Figure" org-odt--enumerable-image-p)
-    ("__MathFormula__" "Text" "math-formula" "Equation" org-odt--enumerable-formula-p)
-    ("__DvipngImage__" "Equation" "value" "Equation" org-odt--enumerable-latex-image-p)
-    ("__Listing__" "Listing" "value" "Listing" org-odt--enumerable-p))
-  "Map a CATEGORY-HANDLE to OD-VARIABLE and LABEL-STYLE.
-
-This is a list where each entry is of the form:
-
-  (CATEGORY-HANDLE OD-VARIABLE LABEL-STYLE CATEGORY-NAME ENUMERATOR-PREDICATE)
-
-CATEGORY_HANDLE identifies the captionable entity in question.
-
-OD-VARIABLE is the OpenDocument sequence counter associated with
-the entity.  These counters are declared within
-\"<text:sequence-decls>...</text:sequence-decls>\" block of
-`org-odt-content-template-file'.
-
-LABEL-STYLE is a key into `org-odt-label-styles' and specifies
-how a given entity should be captioned and referenced.
-
-CATEGORY-NAME is used for qualifying captions on export.
-
-ENUMERATOR-PREDICATE is used for assigning a sequence number to
-the entity.  See `org-odt--enumerate'.")
-
-(defvar org-odt-manifest-file-entries nil)
-(defvar hfy-user-sheet-assoc)
-
-(defvar org-odt-zip-dir nil
-  "Temporary work directory for OpenDocument exporter.")
-
-
-
-;;; User Configuration Variables
-
-(defgroup org-export-odt nil
-  "Options for exporting Org mode files to ODT."
-  :tag "Org Export ODT"
-  :group 'org-export)
-
-
-;;;; Debugging
-
-(defcustom org-odt-prettify-xml nil
-  "Specify whether or not the xml output should be prettified.
-When this option is turned on, `indent-region' is run on all
-component xml buffers before they are saved.  Turn this off for
-regular use.  Turn this on if you need to examine the xml
-visually."
-  :group 'org-export-odt
-  :version "24.1"
-  :type 'boolean)
-
-
-;;;; Document schema
-
-(require 'rng-loc)
-(defcustom org-odt-schema-dir
-  (cl-find-if
-   (lambda (dir)
-     (and dir
-	  (file-expand-wildcards
-	   (expand-file-name "od-manifest-schema*.rnc" dir))
-	  (file-expand-wildcards (expand-file-name "od-schema*.rnc" dir))
-	  (file-readable-p (expand-file-name "schemas.xml" dir))))
-   org-odt-schema-dir-list)
-  "Directory that contains OpenDocument schema files.
-
-This directory contains:
-1. rnc files for OpenDocument schema
-2. a \"schemas.xml\" file that specifies locating rules needed
-   for auto validation of OpenDocument XML files.
-
-Use the customize interface to set this variable.  This ensures
-that `rng-schema-locating-files' is updated and auto-validation
-of OpenDocument XML takes place based on the value
-`rng-nxml-auto-validate-flag'.
-
-The default value of this variable varies depending on the
-version of org in use and is initialized from
-`org-odt-schema-dir-list'.  The OASIS schema files are available
-only in the org's private git repository.  It is *not* bundled
-with GNU ELPA tar or standard Emacs distribution."
-  :type '(choice
-	  (const :tag "Not set" nil)
-	  (directory :tag "Schema directory"))
-  :group 'org-export-odt
-  :version "24.1"
-  :set
-  (lambda (var value)
-    "Set `org-odt-schema-dir'.
-Also add it to `rng-schema-locating-files'."
-    (let ((schema-dir value))
-      (set var
-	   (if (and
-		(file-expand-wildcards
-		 (expand-file-name "od-manifest-schema*.rnc" schema-dir))
-		(file-expand-wildcards
-		 (expand-file-name "od-schema*.rnc" schema-dir))
-		(file-readable-p
-		 (expand-file-name "schemas.xml" schema-dir)))
-	       schema-dir
-	     (when value
-	       (message "Error (ox-odt): %s has no OpenDocument schema files"
-			value))
-	     nil)))
-    (when org-odt-schema-dir
-      (eval-after-load 'rng-loc
-	'(add-to-list 'rng-schema-locating-files
-		      (expand-file-name "schemas.xml"
-					org-odt-schema-dir))))))
-
-
-;;;; Document styles
-
-(defcustom org-odt-content-template-file nil
-  "Template file for \"content.xml\".
-The exporter embeds the exported content just before
-\"</office:text>\" element.
-
-If unspecified, the file named \"OrgOdtContentTemplate.xml\"
-under `org-odt-styles-dir' is used."
-  :type '(choice (const nil)
-		 (file))
-  :group 'org-export-odt
-  :version "24.3")
-
-(defcustom org-odt-styles-file nil
-  "Default styles file for use with ODT export.
-Valid values are one of:
-1. nil
-2. path to a styles.xml file
-3. path to a *.odt or a *.ott file
-4. list of the form (ODT-OR-OTT-FILE (FILE-MEMBER-1 FILE-MEMBER-2
-...))
-
-In case of option 1, an in-built styles.xml is used. See
-`org-odt-styles-dir' for more information.
-
-In case of option 3, the specified file is unzipped and the
-styles.xml embedded therein is used.
-
-In case of option 4, the specified ODT-OR-OTT-FILE is unzipped
-and FILE-MEMBER-1, FILE-MEMBER-2 etc are copied in to the
-generated odt file.  Use relative path for specifying the
-FILE-MEMBERS.  styles.xml must be specified as one of the
-FILE-MEMBERS.
-
-Use options 1, 2 or 3 only if styles.xml alone suffices for
-achieving the desired formatting.  Use option 4, if the styles.xml
-references additional files like header and footer images for
-achieving the desired formatting.
-
-Use \"#+ODT_STYLES_FILE: ...\" directive to set this variable on
-a per-file basis.  For example,
-
-#+ODT_STYLES_FILE: \"/path/to/styles.xml\" or
-#+ODT_STYLES_FILE: (\"/path/to/file.ott\" (\"styles.xml\" \"image/hdr.png\"))."
-  :group 'org-export-odt
-  :version "24.1"
-  :type
-  '(choice
-    (const :tag "Factory settings" nil)
-    (file :must-match t :tag "styles.xml")
-    (file :must-match t :tag "ODT or OTT file")
-    (list :tag "ODT or OTT file + Members"
-	  (file :must-match t :tag "ODF Text or Text Template file")
-	  (cons :tag "Members"
-		(file :tag "	Member" "styles.xml")
-		(repeat (file :tag "Member"))))))
-
-(defcustom org-odt-display-outline-level 2
-  "Outline levels considered for enumerating captioned entities."
-  :group 'org-export-odt
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'integer)
-
-;;;; Document conversion
-
-(defcustom org-odt-convert-processes
-  '(("LibreOffice"
-     "soffice --headless --convert-to %f%x --outdir %d %i")
-    ("unoconv"
-     "unoconv -f %f -o %d %i"))
-  "Specify a list of document converters and their usage.
-The converters in this list are offered as choices while
-customizing `org-odt-convert-process'.
-
-This variable is a list where each element is of the
-form (CONVERTER-NAME CONVERTER-CMD).  CONVERTER-NAME is the name
-of the converter.  CONVERTER-CMD is the shell command for the
-converter and can contain format specifiers.  These format
-specifiers are interpreted as below:
-
-%i input file name in full
-%I input file name as a URL
-%f format of the output file
-%o output file name in full
-%O output file name as a URL
-%d output dir in full
-%D output dir as a URL.
-%x extra options as set in `org-odt-convert-capabilities'."
-  :group 'org-export-odt
-  :version "24.1"
-  :type
-  '(choice
-    (const :tag "None" nil)
-    (alist :tag "Converters"
-	   :key-type (string :tag "Converter Name")
-	   :value-type (group (string :tag "Command line")))))
-
-(defcustom org-odt-convert-process "LibreOffice"
-  "Use this converter to convert from \"odt\" format to other formats.
-During customization, the list of converter names are populated
-from `org-odt-convert-processes'."
-  :group 'org-export-odt
-  :version "24.1"
-  :type '(choice :convert-widget
-		 (lambda (w)
-		   (apply 'widget-convert (widget-type w)
-			  (eval (car (widget-get w :args)))))
-		 `((const :tag "None" nil)
-		   ,@(mapcar (lambda (c)
-			       `(const :tag ,(car c) ,(car c)))
-			     org-odt-convert-processes))))
-
-(defcustom org-odt-convert-capabilities
-  '(("Text"
-     ("odt" "ott" "doc" "rtf" "docx")
-     (("pdf" "pdf") ("odt" "odt") ("rtf" "rtf") ("ott" "ott")
-      ("doc" "doc" ":\"MS Word 97\"") ("docx" "docx") ("html" "html")))
-    ("Web"
-     ("html")
-     (("pdf" "pdf") ("odt" "odt") ("html" "html")))
-    ("Spreadsheet"
-     ("ods" "ots" "xls" "csv" "xlsx")
-     (("pdf" "pdf") ("ots" "ots") ("html" "html") ("csv" "csv") ("ods" "ods")
-      ("xls" "xls") ("xlsx" "xlsx")))
-    ("Presentation"
-     ("odp" "otp" "ppt" "pptx")
-     (("pdf" "pdf") ("swf" "swf") ("odp" "odp") ("otp" "otp") ("ppt" "ppt")
-      ("pptx" "pptx") ("odg" "odg"))))
-  "Specify input and output formats of `org-odt-convert-process'.
-More correctly, specify the set of input and output formats that
-the user is actually interested in.
-
-This variable is an alist where each element is of the
-form (DOCUMENT-CLASS INPUT-FMT-LIST OUTPUT-FMT-ALIST).
-INPUT-FMT-LIST is a list of INPUT-FMTs.  OUTPUT-FMT-ALIST is an
-alist where each element is of the form (OUTPUT-FMT
-OUTPUT-FILE-EXTENSION EXTRA-OPTIONS).
-
-The variable is interpreted as follows:
-`org-odt-convert-process' can take any document that is in
-INPUT-FMT-LIST and produce any document that is in the
-OUTPUT-FMT-LIST.  A document converted to OUTPUT-FMT will have
-OUTPUT-FILE-EXTENSION as the file name extension.  OUTPUT-FMT
-serves dual purposes:
-- It is used for populating completion candidates during
-  `org-odt-convert' commands.
-- It is used as the value of \"%f\" specifier in
-  `org-odt-convert-process'.
-
-EXTRA-OPTIONS is used as the value of \"%x\" specifier in
-`org-odt-convert-process'.
-
-DOCUMENT-CLASS is used to group a set of file formats in
-INPUT-FMT-LIST in to a single class.
-
-Note that this variable inherently captures how LibreOffice based
-converters work.  LibreOffice maps documents of various formats
-to classes like Text, Web, Spreadsheet, Presentation etc and
-allow document of a given class (irrespective of its source
-format) to be converted to any of the export formats associated
-with that class.
-
-See default setting of this variable for a typical configuration."
-  :group 'org-export-odt
-  :version "24.1"
-  :type
-  '(choice
-    (const :tag "None" nil)
-    (alist :tag "Capabilities"
-	   :key-type (string :tag "Document Class")
-	   :value-type
-	   (group (repeat :tag "Input formats" (string :tag "Input format"))
-		  (alist :tag "Output formats"
-			 :key-type (string :tag "Output format")
-			 :value-type
-			 (group (string :tag "Output file extension")
-				(choice
-				 (const :tag "None" nil)
-				 (string :tag "Extra options"))))))))
-
-(defcustom org-odt-preferred-output-format nil
-  "Automatically post-process to this format after exporting to \"odt\".
-Command `org-odt-export-to-odt' exports first to \"odt\" format
-and then uses `org-odt-convert-process' to convert the
-resulting document to this format.  During customization of this
-variable, the list of valid values are populated based on
-`org-odt-convert-capabilities'.
-
-You can set this option on per-file basis using file local
-values.  See Info node `(emacs) File Variables'."
-  :group 'org-export-odt
-  :version "24.1"
-  :type '(choice :convert-widget
-		 (lambda (w)
-		   (apply 'widget-convert (widget-type w)
-			  (eval (car (widget-get w :args)))))
-		 `((const :tag "None" nil)
-		   ,@(mapcar (lambda (c)
-			       `(const :tag ,c ,c))
-			     (org-odt-reachable-formats "odt")))))
-;;;###autoload
-(put 'org-odt-preferred-output-format 'safe-local-variable 'stringp)
-
-
-;;;; Drawers
-
-(defcustom org-odt-format-drawer-function (lambda (_name contents) contents)
-  "Function called to format a drawer in ODT code.
-
-The function must accept two parameters:
-  NAME      the drawer name, like \"LOGBOOK\"
-  CONTENTS  the contents of the drawer.
-
-The function should return the string to be exported.
-
-The default value simply returns the value of CONTENTS."
-  :group 'org-export-odt
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'function)
-
-
-;;;; Headline
-
-(defcustom org-odt-format-headline-function
-  'org-odt-format-headline-default-function
-  "Function to format headline text.
-
-This function will be called with 5 arguments:
-TODO      the todo keyword (string or nil).
-TODO-TYPE the type of todo (symbol: `todo', `done', nil)
-PRIORITY  the priority of the headline (integer or nil)
-TEXT      the main headline text (string).
-TAGS      the tags string, separated with colons (string or nil).
-
-The function result will be used as headline text."
-  :group 'org-export-odt
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'function)
-
-
-;;;; Inlinetasks
-
-(defcustom org-odt-format-inlinetask-function
-  'org-odt-format-inlinetask-default-function
-  "Function called to format an inlinetask in ODT code.
-
-The function must accept six parameters:
-  TODO      the todo keyword, as a string
-  TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
-  PRIORITY  the inlinetask priority, as a string
-  NAME      the inlinetask name, as a string.
-  TAGS      the inlinetask tags, as a string.
-  CONTENTS  the contents of the inlinetask, as a string.
-
-The function should return the string to be exported."
-  :group 'org-export-odt
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'function)
-
-
-;;;; LaTeX
-
-(defcustom org-odt-with-latex org-export-with-latex
-  "Non-nil means process LaTeX math snippets.
-
-When set, the exporter will process LaTeX environments and
-fragments.
-
-This option can also be set with the +OPTIONS line,
-e.g. \"tex:mathjax\".  Allowed values are:
-
-nil            Ignore math snippets.
-`verbatim'     Keep everything in verbatim
-`dvipng'       Process the LaTeX fragments to images.  This will also
-               include processing of non-math environments.
-`imagemagick'  Convert the LaTeX fragments to pdf files and use
-               imagemagick to convert pdf files to png files.
-`mathjax'      Do MathJax preprocessing and arrange for MathJax.js to
-               be loaded.
-
-Any other symbol is a synonym for `mathjax'."
-  :group 'org-export-odt
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Do not process math in any way" nil)
-	  (const :tag "Leave math verbatim" verbatim)
-	  (const :tag "Use dvipng to make images" dvipng)
-	  (const :tag "Use imagemagick to make images" imagemagick)
-	  (other :tag "Use MathJax to display math" mathjax)))
-
-
-;;;; Links
-
-(defcustom org-odt-inline-formula-rules
-  '(("file" . "\\.\\(mathml\\|mml\\|odf\\)\\'"))
-  "Rules characterizing formula files that can be inlined into ODT.
-
-A rule consists in an association whose key is the type of link
-to consider, and value is a regexp that will be matched against
-link's path."
-  :group 'org-export-odt
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(alist :key-type (string :tag "Type")
-		:value-type (regexp :tag "Path")))
-
-(defcustom org-odt-inline-image-rules
-  '(("file" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'"))
-  "Rules characterizing image files that can be inlined into ODT.
-
-A rule consists in an association whose key is the type of link
-to consider, and value is a regexp that will be matched against
-link's path."
-  :group 'org-export-odt
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(alist :key-type (string :tag "Type")
-		:value-type (regexp :tag "Path")))
-
-(defcustom org-odt-pixels-per-inch 96.0
-  "Scaling factor for converting images pixels to inches.
-Use this for sizing of embedded images.  See Info node `(org)
-Images in ODT export' for more information."
-  :type 'float
-  :group 'org-export-odt
-  :version "24.4"
-  :package-version '(Org . "8.1"))
-
-
-;;;; Src Block
-
-(defcustom org-odt-create-custom-styles-for-srcblocks t
-  "Whether custom styles for colorized source blocks be automatically created.
-When this option is turned on, the exporter creates custom styles
-for source blocks based on the advice of `htmlfontify'.  Creation
-of custom styles happen as part of `org-odt-hfy-face-to-css'.
-
-When this option is turned off exporter does not create such
-styles.
-
-Use the latter option if you do not want the custom styles to be
-based on your current display settings.  It is necessary that the
-styles.xml already contains needed styles for colorizing to work.
-
-This variable is effective only if `org-odt-fontify-srcblocks' is
-turned on."
-  :group 'org-export-odt
-  :version "24.1"
-  :type 'boolean)
-
-(defcustom org-odt-fontify-srcblocks t
-  "Specify whether or not source blocks need to be fontified.
-Turn this option on if you want to colorize the source code
-blocks in the exported file.  For colorization to work, you need
-to make available an enhanced version of `htmlfontify' library."
-  :type 'boolean
-  :group 'org-export-odt
-  :version "24.1")
-
-
-;;;; Table
-
-(defcustom org-odt-table-styles
-  '(("OrgEquation" "OrgEquation"
-     ((use-first-column-styles . t)
-      (use-last-column-styles . t)))
-    ("TableWithHeaderRowAndColumn" "Custom"
-     ((use-first-row-styles . t)
-      (use-first-column-styles . t)))
-    ("TableWithFirstRowandLastRow" "Custom"
-     ((use-first-row-styles . t)
-      (use-last-row-styles . t)))
-    ("GriddedTable" "Custom" nil))
-  "Specify how Table Styles should be derived from a Table Template.
-This is a list where each element is of the
-form (TABLE-STYLE-NAME TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS).
-
-TABLE-STYLE-NAME is the style associated with the table through
-\"#+ATTR_ODT: :style TABLE-STYLE-NAME\" line.
-
-TABLE-TEMPLATE-NAME is a set of - upto 9 - automatic
-TABLE-CELL-STYLE-NAMEs and PARAGRAPH-STYLE-NAMEs (as defined
-below) that is included in `org-odt-content-template-file'.
-
-TABLE-CELL-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
-                         \"TableCell\"
-PARAGRAPH-STYLE-NAME  := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
-                         \"TableParagraph\"
-TABLE-CELL-TYPE       := \"FirstRow\"   | \"LastColumn\" |
-                         \"FirstRow\"   | \"LastRow\"    |
-                         \"EvenRow\"    | \"OddRow\"     |
-                         \"EvenColumn\" | \"OddColumn\"  | \"\"
-where \"+\" above denotes string concatenation.
-
-TABLE-CELL-OPTIONS is an alist where each element is of the
-form (TABLE-CELL-STYLE-SELECTOR . ON-OR-OFF).
-TABLE-CELL-STYLE-SELECTOR := `use-first-row-styles'       |
-                             `use-last-row-styles'        |
-                             `use-first-column-styles'    |
-                             `use-last-column-styles'     |
-                             `use-banding-rows-styles'    |
-                             `use-banding-columns-styles' |
-                             `use-first-row-styles'
-ON-OR-OFF                 := t | nil
-
-For example, with the following configuration
-
-\(setq org-odt-table-styles
-      \\='((\"TableWithHeaderRowsAndColumns\" \"Custom\"
-         ((use-first-row-styles . t)
-          (use-first-column-styles . t)))
-        (\"TableWithHeaderColumns\" \"Custom\"
-         ((use-first-column-styles . t)))))
-
-1. A table associated with \"TableWithHeaderRowsAndColumns\"
-   style will use the following table-cell styles -
-   \"CustomFirstRowTableCell\", \"CustomFirstColumnTableCell\",
-   \"CustomTableCell\" and the following paragraph styles
-   \"CustomFirstRowTableParagraph\",
-   \"CustomFirstColumnTableParagraph\", \"CustomTableParagraph\"
-   as appropriate.
-
-2. A table associated with \"TableWithHeaderColumns\" style will
-   use the following table-cell styles -
-   \"CustomFirstColumnTableCell\", \"CustomTableCell\" and the
-   following paragraph styles
-   \"CustomFirstColumnTableParagraph\", \"CustomTableParagraph\"
-   as appropriate..
-
-Note that TABLE-TEMPLATE-NAME corresponds to the
-\"<table:table-template>\" elements contained within
-\"<office:styles>\".  The entries (TABLE-STYLE-NAME
-TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS) correspond to
-\"table:template-name\" and \"table:use-first-row-styles\" etc
-attributes of \"<table:table>\" element.  Refer ODF-1.2
-specification for more information.  Also consult the
-implementation filed under `org-odt-get-table-cell-styles'.
-
-The TABLE-STYLE-NAME \"OrgEquation\" is used internally for
-formatting of numbered display equations.  Do not delete this
-style from the list."
-  :group 'org-export-odt
-  :version "24.1"
-  :type '(choice
-          (const :tag "None" nil)
-          (repeat :tag "Table Styles"
-                  (list :tag "Table Style Specification"
-			(string :tag "Table Style Name")
-			(string  :tag "Table Template Name")
-			(alist :options (use-first-row-styles
-					 use-last-row-styles
-					 use-first-column-styles
-					 use-last-column-styles
-					 use-banding-rows-styles
-					 use-banding-columns-styles)
-			       :key-type symbol
-			       :value-type (const :tag "True" t))))))
-
-;;;; Timestamps
-
-(defcustom org-odt-use-date-fields nil
-  "Non-nil, if timestamps should be exported as date fields.
-
-When nil, export timestamps as plain text.
-
-When non-nil, map `org-time-stamp-custom-formats' to a pair of
-OpenDocument date-styles with names \"OrgDate1\" and \"OrgDate2\"
-respectively.  A timestamp with no time component is formatted
-with style \"OrgDate1\" while one with explicit hour and minutes
-is formatted with style \"OrgDate2\".
-
-This feature is experimental.  Most (but not all) of the common
-%-specifiers in `format-time-string' are supported.
-Specifically, locale-dependent specifiers like \"%c\", \"%x\" are
-formatted as canonical Org timestamps.  For finer control, avoid
-these %-specifiers.
-
-Textual specifiers like \"%b\", \"%h\", \"%B\", \"%a\", \"%A\"
-etc., are displayed by the application in the default language
-and country specified in `org-odt-styles-file'.  Note that the
-default styles file uses language \"en\" and country \"GB\".  You
-can localize the week day and month strings in the exported
-document by setting the default language and country either using
-the application UI or through a custom styles file.
-
-See `org-odt--build-date-styles' for implementation details."
-  :group 'org-export-odt
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-
-
-;;; Internal functions
-
-;;;; Date
-
-(defun org-odt--format-timestamp (timestamp &optional end iso-date-p)
-  (let* ((format-timestamp
-	  (lambda (timestamp format &optional end utc)
-	    (if timestamp
-		(org-timestamp-format timestamp format end utc)
-	      (format-time-string format nil utc))))
-	 (has-time-p (or (not timestamp)
-			 (org-timestamp-has-time-p timestamp)))
-	 (iso-date (let ((format (if has-time-p "%Y-%m-%dT%H:%M:%S"
-				   "%Y-%m-%dT%H:%M:%S")))
-		     (funcall format-timestamp timestamp format end))))
-    (if iso-date-p iso-date
-      (let* ((style (if has-time-p "OrgDate2" "OrgDate1"))
-	     ;; LibreOffice does not care about end goes as content
-	     ;; within the "<text:date>...</text:date>" field.  The
-	     ;; displayed date is automagically corrected to match the
-	     ;; format requested by "style:data-style-name" attribute.  So
-	     ;; don't bother about formatting the date contents to be
-	     ;; compatible with "OrgDate1" and "OrgDateTime" styles.  A
-	     ;; simple Org-style date should suffice.
-	     (date (let* ((formats
-			   (if org-display-custom-times
-			       (cons (substring
-				      (car org-time-stamp-custom-formats) 1 -1)
-				     (substring
-				      (cdr org-time-stamp-custom-formats) 1 -1))
-			     '("%Y-%m-%d %a" . "%Y-%m-%d %a %H:%M")))
-			  (format (if has-time-p (cdr formats) (car formats))))
-		     (funcall format-timestamp timestamp format end)))
-	     (repeater (let ((repeater-type (org-element-property
-					     :repeater-type timestamp))
-			     (repeater-value (org-element-property
-					      :repeater-value timestamp))
-			     (repeater-unit (org-element-property
-					     :repeater-unit timestamp)))
-			 (concat
-			  (cl-case repeater-type
-			    (catchup "++") (restart ".+") (cumulate "+"))
-			  (when repeater-value
-			    (number-to-string repeater-value))
-			  (cl-case repeater-unit
-			    (hour "h") (day "d") (week "w") (month "m")
-			    (year "y"))))))
-	(concat
-	 (format "<text:date text:date-value=\"%s\" style:data-style-name=\"%s\" text:fixed=\"true\">%s</text:date>"
-		 iso-date style date)
-	 (and (not (string= repeater ""))  " ")
-	 repeater)))))
-
-;;;; Frame
-
-(defun org-odt--frame (text width height style &optional extra
-			      anchor-type &rest title-and-desc)
-  (let ((frame-attrs
-	 (concat
-	  (if width (format " svg:width=\"%0.2fcm\"" width) "")
-	  (if height (format " svg:height=\"%0.2fcm\"" height) "")
-	  extra
-	  (format " text:anchor-type=\"%s\"" (or anchor-type "paragraph"))
-	  (format " draw:name=\"%s\""
-		  (car (org-odt-add-automatic-style "Frame"))))))
-    (format
-     "\n<draw:frame draw:style-name=\"%s\"%s>\n%s\n</draw:frame>"
-     style frame-attrs
-     (concat text
-	     (let ((title (car title-and-desc))
-		   (desc (cadr title-and-desc)))
-	       (concat (when title
-			 (format "<svg:title>%s</svg:title>"
-				 (org-odt--encode-plain-text title t)))
-		       (when desc
-			 (format "<svg:desc>%s</svg:desc>"
-				 (org-odt--encode-plain-text desc t)))))))))
-
-
-;;;; Library wrappers
-
-(defun org-odt--zip-extract (archive members target)
-  (when (atom members) (setq members (list members)))
-  (require 'arc-mode)
-  (dolist (member members)
-    (let* ((--quote-file-name
-	    ;; This is shamelessly stolen from `archive-zip-extract'.
-	    (lambda (name)
-	      (if (or (not (memq system-type '(windows-nt ms-dos)))
-		      (and (boundp 'w32-quote-process-args)
-			   (null w32-quote-process-args)))
-		  (shell-quote-argument name)
-		name)))
-	   (target (funcall --quote-file-name target))
-	   (archive (expand-file-name archive))
-	   (archive-zip-extract
-	    (list "unzip" "-qq" "-o" "-d" target))
-	   exit-code command-output)
-      (setq command-output
-	    (with-temp-buffer
-	      (setq exit-code (archive-zip-extract archive member))
-	      (buffer-string)))
-      (unless (zerop exit-code)
-	(message command-output)
-	(error "Extraction failed")))))
-
-;;;; Target
-
-(defun org-odt--target (text id)
-  (if (not id) text
-    (concat
-     (format "\n<text:bookmark-start text:name=\"OrgXref.%s\"/>" id)
-     (format "\n<text:bookmark text:name=\"%s\"/>" id) text
-     (format "\n<text:bookmark-end text:name=\"OrgXref.%s\"/>" id))))
-
-;;;; Textbox
-
-(defun org-odt--textbox (text width height style &optional
-				extra anchor-type)
-  (org-odt--frame
-   (format "\n<draw:text-box %s>%s\n</draw:text-box>"
-	   (concat (format " fo:min-height=\"%0.2fcm\"" (or height .2))
-		   (and (not width)
-			(format " fo:min-width=\"%0.2fcm\"" (or width .2))))
-	   text)
-   width nil style extra anchor-type))
-
-
-
-;;;; Table of Contents
-
-(defun org-odt--format-toc (title entries depth)
-  "Return a table of contents.
-TITLE is the title of the table, as a string, or nil.  ENTRIES is
-the contents of the table, as a string.  DEPTH is an integer
-specifying the depth of the table."
-  (concat
-   "
-<text:table-of-content text:style-name=\"OrgIndexSection\" text:protected=\"true\" text:name=\"Table of Contents\">\n"
-   (format "  <text:table-of-content-source text:outline-level=\"%d\">" depth)
-   (and title
-	(format "
-    <text:index-title-template text:style-name=\"Contents_20_Heading\">%s</text:index-title-template>
-"
-		title))
-
-   (let ((levels (number-sequence 1 10)))
-     (mapconcat
-      (lambda (level)
-	(format
-	 "
-      <text:table-of-content-entry-template text:outline-level=\"%d\" text:style-name=\"Contents_20_%d\">
-       <text:index-entry-link-start text:style-name=\"Internet_20_link\"/>
-       <text:index-entry-chapter/>
-       <text:index-entry-text/>
-       <text:index-entry-link-end/>
-      </text:table-of-content-entry-template>\n"
-	 level level)) levels ""))
-   "
-  </text:table-of-content-source>
-  <text:index-body>"
-   (and title
-	(format "
-    <text:index-title text:style-name=\"Sect1\" text:name=\"Table of Contents1_Head\">
-      <text:p text:style-name=\"Contents_20_Heading\">%s</text:p>
-    </text:index-title>\n"
-		title))
-   entries
-   "
-  </text:index-body>
-</text:table-of-content>"))
-
-(cl-defun org-odt-format-toc-headline
-    (todo _todo-type priority text tags
-	  &key _level section-number headline-label &allow-other-keys)
-  (format "<text:a xlink:type=\"simple\" xlink:href=\"#%s\">%s</text:a>"
-	  headline-label
-	  (concat
-	   ;; Section number.
-	   (and section-number (concat section-number ". "))
-	   ;; Todo.
-	   (when todo
-	     (let ((style (if (member todo org-done-keywords)
-			      "OrgDone" "OrgTodo")))
-	       (format "<text:span text:style-name=\"%s\">%s</text:span> "
-		       style todo)))
-	   (when priority
-	     (let* ((style (format "OrgPriority-%s" priority))
-		    (priority (format "[#%c]" priority)))
-	       (format "<text:span text:style-name=\"%s\">%s</text:span> "
-		       style priority)))
-	   ;; Title.
-	   text
-	   ;; Tags.
-	   (when tags
-	     (concat
-	      (format " <text:span text:style-name=\"%s\">[%s]</text:span>"
-		      "OrgTags"
-		      (mapconcat
-		       (lambda (tag)
-			 (format
-			  "<text:span text:style-name=\"%s\">%s</text:span>"
-			  "OrgTag" tag)) tags " : ")))))))
-
-(defun org-odt-toc (depth info &optional scope)
-  "Build a table of contents.
-DEPTH is an integer specifying the depth of the table.  INFO is
-a plist containing current export properties.  Optional argument
-SCOPE, when non-nil, defines the scope of the table.  Return the
-table of contents as a string, or nil."
-  (cl-assert (wholenump depth))
-  ;; When a headline is marked as a radio target, as in the example below:
-  ;;
-  ;; ** <<<Some Heading>>>
-  ;;    Some text.
-  ;;
-  ;; suppress generation of radio targets.  i.e., Radio targets are to
-  ;; be marked as targets within /document body/ and *not* within
-  ;; /TOC/, as otherwise there will be duplicated anchors one in TOC
-  ;; and one in the document body.
-  ;;
-  ;; Likewise, links, footnote references and regular targets are also
-  ;; suppressed.
-  (let* ((headlines (org-export-collect-headlines info depth scope))
-	 (backend (org-export-toc-entry-backend
-		      (org-export-backend-name (plist-get info :back-end)))))
-    (when headlines
-      (org-odt--format-toc
-       (and (not scope) (org-export-translate "Table of Contents" :utf-8 info))
-       (mapconcat
-	(lambda (headline)
-	  (let* ((entry (org-odt-format-headline--wrap
-			 headline backend info 'org-odt-format-toc-headline))
-		 (level (org-export-get-relative-level headline info))
-		 (style (format "Contents_20_%d" level)))
-	    (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-		    style entry)))
-	headlines "\n")
-       depth))))
-
-
-;;;; Document styles
-
-(defun org-odt-add-automatic-style (object-type &optional object-props)
-  "Create an automatic style of type OBJECT-TYPE with param OBJECT-PROPS.
-OBJECT-PROPS is (typically) a plist created by passing
-\"#+ATTR_ODT: \" option of the object in question to
-`org-odt-parse-block-attributes'.
-
-Use `org-odt-object-counters' to generate an automatic
-OBJECT-NAME and STYLE-NAME.  If OBJECT-PROPS is non-nil, add a
-new entry in `org-odt-automatic-styles'.  Return (OBJECT-NAME
-. STYLE-NAME)."
-  (cl-assert (stringp object-type))
-  (let* ((object (intern object-type))
-	 (seqvar object)
-	 (seqno (1+ (or (plist-get org-odt-object-counters seqvar) 0)))
-	 (object-name (format "%s%d" object-type seqno)) style-name)
-    (setq org-odt-object-counters
-	  (plist-put org-odt-object-counters seqvar seqno))
-    (when object-props
-      (setq style-name (format "Org%s" object-name))
-      (setq org-odt-automatic-styles
-	    (plist-put org-odt-automatic-styles object
-		       (append (list (list style-name object-props))
-			       (plist-get org-odt-automatic-styles object)))))
-    (cons object-name style-name)))
-
-;;;; Checkbox
-
-(defun org-odt--checkbox (item)
-  "Return check-box string associated to ITEM."
-  (let ((checkbox (org-element-property :checkbox item)))
-    (if (not checkbox) ""
-      (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	      "OrgCode" (cl-case checkbox
-			  (on "[&#x2713;] ") ; CHECK MARK
-			  (off "[ ] ")
-			  (trans "[-] "))))))
-
-;;; Template
-
-(defun org-odt--build-date-styles (fmt style)
-  ;; In LibreOffice 3.4.6, there doesn't seem to be a convenient way
-  ;; to modify the date fields.  A date could be modified by
-  ;; offsetting in days.  That's about it.  Also, date and time may
-  ;; have to be emitted as two fields - a date field and a time field
-  ;; - separately.
-
-  ;; One can add Form Controls to date and time fields so that they
-  ;; can be easily modified.  But then, the exported document will
-  ;; become tightly coupled with LibreOffice and may not function
-  ;; properly with other OpenDocument applications.
-
-  ;; I have a strange feeling that Date styles are a bit flaky at the
-  ;; moment.
-
-  ;; The feature is experimental.
-  (when (and fmt style)
-    (let* ((fmt-alist
-	    '(("%A" . "<number:day-of-week number:style=\"long\"/>")
-	      ("%B" . "<number:month number:textual=\"true\" number:style=\"long\"/>")
-	      ("%H" . "<number:hours number:style=\"long\"/>")
-	      ("%M" . "<number:minutes number:style=\"long\"/>")
-	      ("%S" . "<number:seconds number:style=\"long\"/>")
-	      ("%V" . "<number:week-of-year/>")
-	      ("%Y" . "<number:year number:style=\"long\"/>")
-	      ("%a" . "<number:day-of-week number:style=\"short\"/>")
-	      ("%b" . "<number:month number:textual=\"true\" number:style=\"short\"/>")
-	      ("%d" . "<number:day number:style=\"long\"/>")
-	      ("%e" . "<number:day number:style=\"short\"/>")
-	      ("%h" . "<number:month number:textual=\"true\" number:style=\"short\"/>")
-	      ("%k" . "<number:hours number:style=\"short\"/>")
-	      ("%m" . "<number:month number:style=\"long\"/>")
-	      ("%p" . "<number:am-pm/>")
-	      ("%y" . "<number:year number:style=\"short\"/>")))
-	   (case-fold-search nil)
-	   (re (mapconcat 'identity (mapcar 'car fmt-alist) "\\|"))
-	   match rpl (start 0) (filler-beg 0) filler-end filler output)
-      (dolist (pair
-	       '(("\\(?:%[[:digit:]]*N\\)" . "") ; strip ns, us and ns
-		 ("%C" . "Y")		; replace century with year
-		 ("%D" . "%m/%d/%y")
-		 ("%G" . "Y")	      ; year corresponding to iso week
-		 ("%I" . "%H")	      ; hour on a 12-hour clock
-		 ("%R" . "%H:%M")
-		 ("%T" . "%H:%M:%S")
-		 ("%U\\|%W" . "%V")   ; week no. starting on Sun./Mon.
-		 ("%Z" . "")	      ; time zone name
-		 ("%c" . "%Y-%M-%d %a %H:%M" ) ; locale's date and time format
-		 ("%g" . "%y")
-		 ("%X" . "%x" )		; locale's pref. time format
-		 ("%j" . "")		; day of the year
-		 ("%l" . "%k")		; like %I blank-padded
-		 ("%s" . "") ; no. of secs since 1970-01-01 00:00:00 +0000
-		 ("%n" . "<text:line-break/>")
-		 ("%r" . "%I:%M:%S %p")
-		 ("%t" . "<text:tab/>")
-		 ("%u\\|%w" . "") ; numeric day of week - Mon (1-7), Sun(0-6)
-		 ("%x" . "%Y-%M-%d %a")	; locale's pref. time format
-		 ("%z" . "")		; time zone in numeric form
-		 ))
-	(setq fmt (replace-regexp-in-string (car pair) (cdr pair) fmt t t)))
-      (while (string-match re fmt start)
-	(setq match (match-string 0 fmt))
-	(setq rpl (assoc-default match fmt-alist))
-	(setq start (match-end 0))
-	(setq filler-end (match-beginning 0))
-	(setq filler (substring fmt (prog1 filler-beg
-				      (setq filler-beg (match-end 0)))
-				filler-end))
-	(setq filler (and (not (string= filler ""))
-			  (format "<number:text>%s</number:text>"
-				  (org-odt--encode-plain-text filler))))
-	(setq output (concat output "\n" filler "\n" rpl)))
-      (setq filler (substring fmt filler-beg))
-      (unless (string= filler "")
-	(setq output (concat output
-			     (format "\n<number:text>%s</number:text>"
-				     (org-odt--encode-plain-text filler)))))
-      (format "\n<number:date-style style:name=\"%s\" %s>%s\n</number:date-style>"
-	      style
-	      (concat " number:automatic-order=\"true\""
-		      " number:format-source=\"fixed\"")
-	      output ))))
-
-(defun org-odt-template (contents info)
-  "Return complete document string after ODT conversion.
-CONTENTS is the transcoded contents string.  RAW-DATA is the
-original parsed data.  INFO is a plist holding export options."
-  ;; Write meta file.
-  (let ((title (org-export-data (plist-get info :title) info))
-	(subtitle (org-export-data (plist-get info :subtitle) info))
-	(author (let ((author (plist-get info :author)))
-		  (if (not author) "" (org-export-data author info))))
-	(keywords (or (plist-get info :keywords) ""))
-	(description (or (plist-get info :description) "")))
-    (write-region
-     (concat
-      "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
-     <office:document-meta
-         xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\"
-         xmlns:xlink=\"http://www.w3.org/1999/xlink\"
-         xmlns:dc=\"http://purl.org/dc/elements/1.1/\"
-         xmlns:meta=\"urn:oasis:names:tc:opendocument:xmlns:meta:1.0\"
-         xmlns:ooo=\"http://openoffice.org/2004/office\"
-         office:version=\"1.2\">
-       <office:meta>\n"
-      (format "<dc:creator>%s</dc:creator>\n" author)
-      (format "<meta:initial-creator>%s</meta:initial-creator>\n" author)
-      ;; Date, if required.
-      (when (plist-get info :with-date)
-	;; Check if DATE is specified as an Org-timestamp.  If yes,
-	;; include it as meta information.  Otherwise, just use
-	;; today's date.
-	(let* ((date (let ((date (plist-get info :date)))
-		       (and (not (cdr date))
-			    (eq (org-element-type (car date)) 'timestamp)
-			    (car date)))))
-	  (let ((iso-date (org-odt--format-timestamp date nil 'iso-date)))
-	    (concat
-	     (format "<dc:date>%s</dc:date>\n" iso-date)
-	     (format "<meta:creation-date>%s</meta:creation-date>\n"
-		     iso-date)))))
-      (format "<meta:generator>%s</meta:generator>\n"
-	      (plist-get info :creator))
-      (format "<meta:keyword>%s</meta:keyword>\n" keywords)
-      (format "<dc:subject>%s</dc:subject>\n" description)
-      (format "<dc:title>%s</dc:title>\n" title)
-      (when (org-string-nw-p subtitle)
-	(format
-	 "<meta:user-defined meta:name=\"subtitle\">%s</meta:user-defined>\n"
-	 subtitle))
-      "\n"
-      "  </office:meta>\n" "</office:document-meta>")
-     nil (concat org-odt-zip-dir "meta.xml"))
-    ;; Add meta.xml in to manifest.
-    (org-odt-create-manifest-file-entry "text/xml" "meta.xml"))
-
-  ;; Update styles file.
-  ;; Copy styles.xml.  Also dump htmlfontify styles, if there is any.
-  ;; Write styles file.
-  (let* ((styles-file (plist-get info :odt-styles-file))
-	 (styles-file (and (org-string-nw-p styles-file)
-			   (org-trim styles-file)))
-	 ;; Non-availability of styles.xml is not a critical
-	 ;; error. For now, throw an error.
-	 (styles-file (or styles-file
-			  (expand-file-name "OrgOdtStyles.xml"
-					    org-odt-styles-dir)
-			  (error "org-odt: Missing styles file?"))))
-    (cond
-     ((listp styles-file)
-      (let ((archive (nth 0 styles-file))
-	    (members (nth 1 styles-file)))
-	(org-odt--zip-extract archive members org-odt-zip-dir)
-	(dolist (member members)
-	  (when (org-file-image-p member)
-	    (let* ((image-type (file-name-extension member))
-		   (media-type (format "image/%s" image-type)))
-	      (org-odt-create-manifest-file-entry media-type member))))))
-     ((and (stringp styles-file) (file-exists-p styles-file))
-      (let ((styles-file-type (file-name-extension styles-file)))
-	(cond
-	 ((string= styles-file-type "xml")
-	  (copy-file styles-file (concat org-odt-zip-dir "styles.xml") t))
-	 ((member styles-file-type '("odt" "ott"))
-	  (org-odt--zip-extract styles-file "styles.xml" org-odt-zip-dir)))))
-     (t
-      (error "Invalid specification of styles.xml file: %S"
-	     (plist-get info :odt-styles-file))))
-
-    ;; create a manifest entry for styles.xml
-    (org-odt-create-manifest-file-entry "text/xml" "styles.xml")
-
-    ;; FIXME: Who is opening an empty styles.xml before this point?
-    (with-current-buffer
-	(find-file-noselect (concat org-odt-zip-dir "styles.xml") t)
-      (revert-buffer t t)
-
-      ;; Write custom styles for source blocks
-      ;; Save STYLES used for colorizing of source blocks.
-      ;; Update styles.xml with styles that were collected as part of
-      ;; `org-odt-hfy-face-to-css' callbacks.
-      (let ((styles (mapconcat (lambda (style) (format " %s\n" (cddr style)))
-			       hfy-user-sheet-assoc "")))
-	(when styles
-	  (goto-char (point-min))
-	  (when (re-search-forward "</office:styles>" nil t)
-	    (goto-char (match-beginning 0))
-	    (insert "\n<!-- Org Htmlfontify Styles -->\n" styles "\n"))))
-
-      ;; Update styles.xml - take care of outline numbering
-
-      ;; Don't make automatic backup of styles.xml file. This setting
-      ;; prevents the backed-up styles.xml file from being zipped in to
-      ;; odt file. This is more of a hackish fix. Better alternative
-      ;; would be to fix the zip command so that the output odt file
-      ;; includes only the needed files and excludes any auto-generated
-      ;; extra files like backups and auto-saves etc etc. Note that
-      ;; currently the zip command zips up the entire temp directory so
-      ;; that any auto-generated files created under the hood ends up in
-      ;; the resulting odt file.
-      (setq-local backup-inhibited t)
-
-      ;; Outline numbering is retained only upto LEVEL.
-      ;; To disable outline numbering pass a LEVEL of 0.
-
-      (goto-char (point-min))
-      (let ((regex
-	     "<text:outline-level-style\\([^>]*\\)text:level=\"\\([^\"]*\\)\"\\([^>]*\\)>")
-	    (replacement
-	     "<text:outline-level-style\\1text:level=\"\\2\" style:num-format=\"\">"))
-	(while (re-search-forward regex nil t)
-	  (unless (let ((sec-num (plist-get info :section-numbers))
-			(level (string-to-number (match-string 2))))
-		    (if (wholenump sec-num) (<= level sec-num) sec-num))
-	    (replace-match replacement t nil))))
-      (save-buffer 0)))
-  ;; Update content.xml.
-
-  (let* ( ;; `org-display-custom-times' should be accessed right
-	 ;; within the context of the Org buffer.  So obtain its
-	 ;; value before moving on to temp-buffer context down below.
-	 (custom-time-fmts
-	  (if org-display-custom-times
-	      (cons (substring (car org-time-stamp-custom-formats) 1 -1)
-		    (substring (cdr org-time-stamp-custom-formats) 1 -1))
-	    '("%Y-%M-%d %a" . "%Y-%M-%d %a %H:%M"))))
-    (with-temp-buffer
-      (insert-file-contents
-       (or (plist-get info :odt-content-template-file)
-	   (expand-file-name "OrgOdtContentTemplate.xml"
-			     org-odt-styles-dir)))
-      ;; Write automatic styles.
-      ;; - Position the cursor.
-      (goto-char (point-min))
-      (re-search-forward "  </office:automatic-styles>" nil t)
-      (goto-char (match-beginning 0))
-      ;; - Dump automatic table styles.
-      (cl-loop for (style-name props) in
-	       (plist-get org-odt-automatic-styles 'Table) do
-	       (when (setq props (or (plist-get props :rel-width) "96"))
-		 (insert (format org-odt-table-style-format style-name props))))
-      ;; - Dump date-styles.
-      (when (plist-get info :odt-use-date-fields)
-	(insert (org-odt--build-date-styles (car custom-time-fmts)
-					    "OrgDate1")
-		(org-odt--build-date-styles (cdr custom-time-fmts)
-					    "OrgDate2")))
-      ;; Update display level.
-      ;; - Remove existing sequence decls.  Also position the cursor.
-      (goto-char (point-min))
-      (when (re-search-forward "<text:sequence-decls" nil t)
-	(delete-region (match-beginning 0)
-		       (re-search-forward "</text:sequence-decls>" nil nil)))
-      ;; Update sequence decls according to user preference.
-      (insert
-       (format
-	"\n<text:sequence-decls>\n%s\n</text:sequence-decls>"
-	(mapconcat
-	 (lambda (x)
-	   (format
-	    "<text:sequence-decl text:display-outline-level=\"%d\" text:name=\"%s\"/>"
-	    (plist-get info :odt-display-outline-level)
-	    (nth 1 x)))
-	 org-odt-category-map-alist "\n")))
-      ;; Position the cursor to document body.
-      (goto-char (point-min))
-      (re-search-forward "</office:text>" nil nil)
-      (goto-char (match-beginning 0))
-
-      ;; Preamble - Title, Author, Date etc.
-      (insert
-       (let* ((title (and (plist-get info :with-title)
-			  (org-export-data (plist-get info :title) info)))
-	      (subtitle (when title
-			  (org-export-data (plist-get info :subtitle) info)))
-	      (author (and (plist-get info :with-author)
-			   (let ((auth (plist-get info :author)))
-			     (and auth (org-export-data auth info)))))
-	      (email (plist-get info :email))
-	      ;; Switch on or off above vars based on user settings
-	      (author (and (plist-get info :with-author) (or author email)))
-	      (email (and (plist-get info :with-email) email)))
-	 (concat
-	  ;; Title.
-	  (when (org-string-nw-p title)
-	    (concat
-	     (format "\n<text:p text:style-name=\"%s\">%s</text:p>\n"
-		     "OrgTitle" (format "\n<text:title>%s</text:title>" title))
-	     ;; Separator.
-	     "\n<text:p text:style-name=\"OrgTitle\"/>\n"
-	     ;; Subtitle.
-	     (when (org-string-nw-p subtitle)
-	       (concat
-		(format "<text:p text:style-name=\"OrgSubtitle\">\n%s\n</text:p>\n"
-			(concat
-			 "<text:user-defined style:data-style-name=\"N0\" text:name=\"subtitle\">\n"
-			 subtitle
-			 "</text:user-defined>\n"))
-		;; Separator.
-		"<text:p text:style-name=\"OrgSubtitle\"/>\n"))))
-	  (cond
-	   ((and author (not email))
-	    ;; Author only.
-	    (concat
-	     (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-		     "OrgSubtitle"
-		     (format "<text:initial-creator>%s</text:initial-creator>" author))
-	     ;; Separator.
-	     "\n<text:p text:style-name=\"OrgSubtitle\"/>"))
-	   ((and author email)
-	    ;; Author and E-mail.
-	    (concat
-	     (format
-	      "\n<text:p text:style-name=\"%s\">%s</text:p>"
-	      "OrgSubtitle"
-	      (format
-	       "<text:a xlink:type=\"simple\" xlink:href=\"%s\">%s</text:a>"
-	       (concat "mailto:" email)
-	       (format "<text:initial-creator>%s</text:initial-creator>" author)))
-	     ;; Separator.
-	     "\n<text:p text:style-name=\"OrgSubtitle\"/>")))
-	  ;; Date, if required.
-	  (when (plist-get info :with-date)
-	    (let* ((date (plist-get info :date))
-		   ;; Check if DATE is specified as a timestamp.
-		   (timestamp (and (not (cdr date))
-				   (eq (org-element-type (car date)) 'timestamp)
-				   (car date))))
-	      (when date
-		(concat
-		 (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-			 "OrgSubtitle"
-			 (if (and (plist-get info :odt-use-date-fields) timestamp)
-			     (org-odt--format-timestamp (car date))
-			   (org-export-data date info)))
-		 ;; Separator
-		 "<text:p text:style-name=\"OrgSubtitle\"/>")))))))
-      ;; Table of Contents
-      (let* ((with-toc (plist-get info :with-toc))
-	     (depth (and with-toc (if (wholenump with-toc)
-				      with-toc
-				    (plist-get info :headline-levels)))))
-	(when depth (insert (or (org-odt-toc depth info) ""))))
-      ;; Contents.
-      (insert contents)
-      ;; Return contents.
-      (buffer-substring-no-properties (point-min) (point-max)))))
-
-
-
-;;; Transcode Functions
-
-;;;; Bold
-
-(defun org-odt-bold (_bold contents _info)
-  "Transcode BOLD from Org to ODT.
-CONTENTS is the text with bold markup.  INFO is a plist holding
-contextual information."
-  (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	  "Bold" contents))
-
-
-;;;; Center Block
-
-(defun org-odt-center-block (_center-block contents _info)
-  "Transcode a CENTER-BLOCK element from Org to ODT.
-CONTENTS holds the contents of the center block.  INFO is a plist
-holding contextual information."
-  contents)
-
-
-;;;; Clock
-
-(defun org-odt-clock (clock contents info)
-  "Transcode a CLOCK element from Org to ODT.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (let ((timestamp (org-element-property :value clock))
-	(duration (org-element-property :duration clock)))
-    (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-	    (if (eq (org-element-type (org-export-get-next-element clock info))
-		    'clock) "OrgClock" "OrgClockLastLine")
-	    (concat
-	     (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		     "OrgClockKeyword" org-clock-string)
-	     (org-odt-timestamp timestamp contents info)
-	     (and duration (format " (%s)" duration))))))
-
-
-;;;; Code
-
-(defun org-odt-code (code _contents _info)
-  "Transcode a CODE object from Org to ODT.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	  "OrgCode" (org-odt--encode-plain-text
-		     (org-element-property :value code))))
-
-
-;;;; Drawer
-
-(defun org-odt-drawer (drawer contents info)
-  "Transcode a DRAWER element from Org to ODT.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let* ((name (org-element-property :drawer-name drawer))
-	 (output (funcall (plist-get info :odt-format-drawer-function)
-			  name contents)))
-    output))
-
-
-;;;; Dynamic Block
-
-(defun org-odt-dynamic-block (_dynamic-block contents _info)
-  "Transcode a DYNAMIC-BLOCK element from Org to ODT.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information.  See `org-export-data'."
-  contents)
-
-
-;;;; Entity
-
-(defun org-odt-entity (entity _contents _info)
-  "Transcode an ENTITY object from Org to ODT.
-CONTENTS are the definition itself.  INFO is a plist holding
-contextual information."
-  (org-element-property :utf-8 entity))
-
-
-;;;; Example Block
-
-(defun org-odt-example-block (example-block _contents info)
-  "Transcode a EXAMPLE-BLOCK element from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-odt-format-code example-block info))
-
-
-;;;; Export Snippet
-
-(defun org-odt-export-snippet (export-snippet _contents _info)
-  "Transcode a EXPORT-SNIPPET object from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (eq (org-export-snippet-backend export-snippet) 'odt)
-    (org-element-property :value export-snippet)))
-
-
-;;;; Export Block
-
-(defun org-odt-export-block (export-block _contents _info)
-  "Transcode a EXPORT-BLOCK element from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (string= (org-element-property :type export-block) "ODT")
-    (org-remove-indentation (org-element-property :value export-block))))
-
-
-;;;; Fixed Width
-
-(defun org-odt-fixed-width (fixed-width _contents info)
-  "Transcode a FIXED-WIDTH element from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-odt-do-format-code (org-element-property :value fixed-width) info))
-
-
-;;;; Footnote Definition
-
-;; Footnote Definitions are ignored.
-
-
-;;;; Footnote Reference
-
-(defun org-odt-footnote-reference (footnote-reference _contents info)
-  "Transcode a FOOTNOTE-REFERENCE element from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((--format-footnote-definition
-	 (lambda (n def)
-	   (setq n (format "%d" n))
-	   (let ((id (concat  "fn" n))
-		 (note-class "footnote"))
-	     (format
-	      "<text:note text:id=\"%s\" text:note-class=\"%s\">%s</text:note>"
-	      id note-class
-	      (concat
-	       (format "<text:note-citation>%s</text:note-citation>" n)
-	       (format "<text:note-body>%s</text:note-body>" def))))))
-	(--format-footnote-reference
-	 (lambda (n)
-	   (setq n (format "%d" n))
-	   (let ((note-class "footnote")
-		 (ref-format "text")
-		 (ref-name (concat "fn" n)))
-	     (format
-	      "<text:span text:style-name=\"%s\">%s</text:span>"
-	      "OrgSuperscript"
-	      (format "<text:note-ref text:note-class=\"%s\" text:reference-format=\"%s\" text:ref-name=\"%s\">%s</text:note-ref>"
-		      note-class ref-format ref-name n))))))
-    (concat
-     ;; Insert separator between two footnotes in a row.
-     (let ((prev (org-export-get-previous-element footnote-reference info)))
-       (and (eq (org-element-type prev) 'footnote-reference)
-	    (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		    "OrgSuperscript" ",")))
-     ;; Transcode footnote reference.
-     (let ((n (org-export-get-footnote-number footnote-reference info nil t)))
-       (cond
-	((not
-	  (org-export-footnote-first-reference-p footnote-reference info nil t))
-	 (funcall --format-footnote-reference n))
-	(t
-	 (let* ((raw (org-export-get-footnote-definition
-		      footnote-reference info))
-		(def
-		 (let ((def (org-trim
-			     (org-export-data-with-backend
-			      raw
-			      (org-export-create-backend
-			       :parent 'odt
-			       :transcoders
-			       '((paragraph . (lambda (p c i)
-						(org-odt--format-paragraph
-						 p c i
-						 "Footnote"
-						 "OrgFootnoteCenter"
-						 "OrgFootnoteQuotations")))))
-			      info))))
-		   ;; Inline definitions are secondary strings.  We
-		   ;; need to wrap them within a paragraph.
-		   (if (eq (org-element-class (car (org-element-contents raw)))
-			   'element)
-		       def
-		     (format
-		      "\n<text:p text:style-name=\"Footnote\">%s</text:p>"
-		      def)))))
-	   (funcall --format-footnote-definition n def))))))))
-
-
-;;;; Headline
-
-(defun org-odt-format-headline--wrap (headline backend info
-					       &optional format-function
-					       &rest extra-keys)
-  "Transcode a HEADLINE element using BACKEND.
-INFO is a plist holding contextual information."
-  (setq backend (or backend (plist-get info :back-end)))
-  (let* ((level (+ (org-export-get-relative-level headline info)))
-	 (headline-number (org-export-get-headline-number headline info))
-	 (section-number (and (org-export-numbered-headline-p headline info)
-			      (mapconcat 'number-to-string
-					 headline-number ".")))
-	 (todo (and (plist-get info :with-todo-keywords)
-		    (let ((todo (org-element-property :todo-keyword headline)))
-		      (and todo
-			   (org-export-data-with-backend todo backend info)))))
-	 (todo-type (and todo (org-element-property :todo-type headline)))
-	 (priority (and (plist-get info :with-priority)
-			(org-element-property :priority headline)))
-	 (text (org-export-data-with-backend
-		(org-element-property :title headline) backend info))
-	 (tags (and (plist-get info :with-tags)
-		    (org-export-get-tags headline info)))
-	 (headline-label (org-export-get-reference headline info))
-	 (format-function
-	  (if (functionp format-function) format-function
-	    (cl-function
-	     (lambda (todo todo-type priority text tags
-		      &key _level _section-number _headline-label
-		      &allow-other-keys)
-	       (funcall (plist-get info :odt-format-headline-function)
-			todo todo-type priority text tags))))))
-    (apply format-function
-	   todo todo-type priority text tags
-	   :headline-label headline-label
-	   :level level
-	   :section-number section-number extra-keys)))
-
-(defun org-odt-headline (headline contents info)
-  "Transcode a HEADLINE element from Org to ODT.
-CONTENTS holds the contents of the headline.  INFO is a plist
-holding contextual information."
-  ;; Case 1: This is a footnote section: ignore it.
-  (unless (org-element-property :footnote-section-p headline)
-    (let* ((full-text (org-odt-format-headline--wrap headline nil info))
-	   ;; Get level relative to current parsed data.
-	   (level (org-export-get-relative-level headline info))
-	   (numbered (org-export-numbered-headline-p headline info))
-	   ;; Get canonical label for the headline.
-	   (id (org-export-get-reference headline info))
-	   ;; Extra targets.
-	   (extra-targets
-	    (let ((id (org-element-property :ID headline)))
-	      (if id (org-odt--target "" (concat "ID-" id)) "")))
-	   ;; Title.
-	   (anchored-title (org-odt--target full-text id)))
-      (cond
-       ;; Case 2. This is a deep sub-tree: export it as a list item.
-       ;;         Also export as items headlines for which no section
-       ;;         format has been found.
-       ((org-export-low-level-p headline info)
-	;; Build the real contents of the sub-tree.
-	(concat
-	 (and (org-export-first-sibling-p headline info)
-	      (format "\n<text:list text:style-name=\"%s\" %s>"
-		      ;; Choose style based on list type.
-		      (if numbered "OrgNumberedList" "OrgBulletedList")
-		      ;; If top-level list, re-start numbering.  Otherwise,
-		      ;; continue numbering.
-		      (format "text:continue-numbering=\"%s\""
-			      (let* ((parent (org-export-get-parent-headline
-					      headline)))
-				(if (and parent
-					 (org-export-low-level-p parent info))
-				    "true" "false")))))
-	 (let ((headline-has-table-p
-		(let ((section (assq 'section (org-element-contents headline))))
-		  (assq 'table (and section (org-element-contents section))))))
-	   (format "\n<text:list-item>\n%s\n%s"
-		   (concat
-		    (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-			    "Text_20_body"
-			    (concat extra-targets anchored-title))
-		    contents)
-		   (if headline-has-table-p
-		       "</text:list-header>"
-		     "</text:list-item>")))
-	 (and (org-export-last-sibling-p headline info)
-	      "</text:list>")))
-       ;; Case 3. Standard headline.  Export it as a section.
-       (t
-	(concat
-	 (format
-	  "\n<text:h text:style-name=\"%s\" text:outline-level=\"%s\" text:is-list-header=\"%s\">%s</text:h>"
-	  (format "Heading_20_%s%s"
-		  level (if numbered "" "_unnumbered"))
-	  level
-	  (if numbered "false" "true")
-	  (concat extra-targets anchored-title))
-	 contents))))))
-
-(defun org-odt-format-headline-default-function
-  (todo todo-type priority text tags)
-  "Default format function for a headline.
-See `org-odt-format-headline-function' for details."
-  (concat
-   ;; Todo.
-   (when todo
-     (let ((style (if (eq todo-type 'done) "OrgDone" "OrgTodo")))
-       (format "<text:span text:style-name=\"%s\">%s</text:span> " style todo)))
-   (when priority
-     (let* ((style (format "OrgPriority-%c" priority))
-	    (priority (format "[#%c]" priority)))
-       (format "<text:span text:style-name=\"%s\">%s</text:span> "
-	       style priority)))
-   ;; Title.
-   text
-   ;; Tags.
-   (when tags
-     (concat
-      "<text:tab/>"
-      (format "<text:span text:style-name=\"%s\">[%s]</text:span>"
-	      "OrgTags" (mapconcat
-			 (lambda (tag)
-			   (format
-			    "<text:span text:style-name=\"%s\">%s</text:span>"
-			    "OrgTag" tag)) tags " : "))))))
-
-
-;;;; Horizontal Rule
-
-(defun org-odt-horizontal-rule (_horizontal-rule _contents _info)
-  "Transcode an HORIZONTAL-RULE  object from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-	  "Horizontal_20_Line" ""))
-
-
-;;;; Inline Babel Call
-
-;; Inline Babel Calls are ignored.
-
-
-;;;; Inline Src Block
-
-(defun org-odt--find-verb-separator (s)
-  "Return a character not used in string S.
-This is used to choose a separator for constructs like \\verb."
-  (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
-    (cl-loop for c across ll
-	     when (not (string-match (regexp-quote (char-to-string c)) s))
-	     return (char-to-string c))))
-
-(defun org-odt-inline-src-block (_inline-src-block _contents _info)
-  "Transcode an INLINE-SRC-BLOCK element from Org to ODT.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (error "FIXME"))
-
-
-;;;; Inlinetask
-
-(defun org-odt-inlinetask (inlinetask contents info)
-  "Transcode an INLINETASK element from Org to ODT.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let* ((todo
-	  (and (plist-get info :with-todo-keywords)
-	       (let ((todo (org-element-property :todo-keyword inlinetask)))
-		 (and todo (org-export-data todo info)))))
-	 (todo-type (and todo (org-element-property :todo-type inlinetask)))
-	 (priority (and (plist-get info :with-priority)
-			(org-element-property :priority inlinetask)))
-	 (text (org-export-data (org-element-property :title inlinetask) info))
-	 (tags (and (plist-get info :with-tags)
-		    (org-export-get-tags inlinetask info))))
-    (funcall (plist-get info :odt-format-inlinetask-function)
-	     todo todo-type priority text tags contents)))
-
-(defun org-odt-format-inlinetask-default-function
-  (todo todo-type priority name tags contents)
-  "Default format function for inlinetasks.
-See `org-odt-format-inlinetask-function' for details."
-  (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-	  "Text_20_body"
-	  (org-odt--textbox
-	   (concat
-	    (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-		    "OrgInlineTaskHeading"
-		    (org-odt-format-headline-default-function
-		     todo todo-type priority name tags))
-	    contents)
-	   nil nil "OrgInlineTaskFrame" " style:rel-width=\"100%\"")))
-
-;;;; Italic
-
-(defun org-odt-italic (_italic contents _info)
-  "Transcode ITALIC from Org to ODT.
-CONTENTS is the text with italic markup.  INFO is a plist holding
-contextual information."
-  (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	  "Emphasis" contents))
-
-
-;;;; Item
-
-(defun org-odt-item (item contents info)
-  "Transcode an ITEM element from Org to ODT.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((plain-list (org-export-get-parent item))
-	 (type (org-element-property :type plain-list)))
-    (unless (memq type '(ordered unordered descriptive-1 descriptive-2))
-      (error "Unknown list type: %S" type))
-    (format "\n<text:list-item>\n%s\n%s"
-	    contents
-	    (if (org-element-map item 'table #'identity info 'first-match)
-		"</text:list-header>"
-	      "</text:list-item>"))))
-
-;;;; Keyword
-
-(defun org-odt-keyword (keyword _contents info)
-  "Transcode a KEYWORD element from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (let ((key (org-element-property :key keyword))
-	(value (org-element-property :value keyword)))
-    (cond
-     ((string= key "ODT") value)
-     ((string= key "INDEX")
-      ;; FIXME
-      (ignore))
-     ((string= key "TOC")
-      (let ((case-fold-search t))
-	(cond
-	 ((string-match-p "\\<headlines\\>" value)
-	  (let ((depth (or (and (string-match "\\<[0-9]+\\>" value)
-				(string-to-number (match-string 0 value)))
-			   (plist-get info :headline-levels)))
-		(localp (string-match-p "\\<local\\>" value)))
-	    (org-odt-toc depth info (and localp keyword))))
-	 ((string-match-p "tables\\|figures\\|listings" value)
-	  ;; FIXME
-	  (ignore))))))))
-
-
-;;;; Latex Environment
-
-
-;; (eval-after-load 'ox-odt '(ad-deactivate 'org-format-latex-as-mathml))
-;; (defadvice org-format-latex-as-mathml	; FIXME
-;;   (after org-odt-protect-latex-fragment activate)
-;;   "Encode LaTeX fragment as XML.
-;; Do this when translation to MathML fails."
-;;   (unless (> (length ad-return-value) 0)
-;;     (setq ad-return-value (org-odt--encode-plain-text (ad-get-arg 0)))))
-
-(defun org-odt-latex-environment (latex-environment _contents info)
-  "Transcode a LATEX-ENVIRONMENT element from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let* ((latex-frag (org-remove-indentation
-		      (org-element-property :value latex-environment))))
-    (org-odt-do-format-code latex-frag info)))
-
-
-;;;; Latex Fragment
-
-;; (when latex-frag			; FIXME
-;; 	(setq href (propertize href :title "LaTeX Fragment"
-;; 				   :description latex-frag)))
-;; handle verbatim
-;; provide descriptions
-
-(defun org-odt-latex-fragment (latex-fragment _contents _info)
-  "Transcode a LATEX-FRAGMENT object from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((latex-frag (org-element-property :value latex-fragment)))
-    (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	    "OrgCode" (org-odt--encode-plain-text latex-frag t))))
-
-
-;;;; Line Break
-
-(defun org-odt-line-break (_line-break _contents _info)
-  "Transcode a LINE-BREAK object from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  "<text:line-break/>")
-
-
-;;;; Link
-
-;;;; Links :: Label references
-
-(defun org-odt--enumerate (element info &optional predicate n)
-  (when predicate (cl-assert (funcall predicate element info)))
-  (let* ((--numbered-parent-headline-at-<=-n
-	  (lambda (element n info)
-	    (cl-loop for x in (org-element-lineage element)
-		     thereis (and (eq (org-element-type x) 'headline)
-				  (<= (org-export-get-relative-level x info) n)
-				  (org-export-numbered-headline-p x info)
-				  x))))
-	 (--enumerate
-	  (lambda (element scope info &optional predicate)
-	    (let ((counter 0))
-	      (org-element-map (or scope (plist-get info :parse-tree))
-		  (org-element-type element)
-		(lambda (el)
-		  (and (or (not predicate) (funcall predicate el info))
-		       (cl-incf counter)
-		       (eq element el)
-		       counter))
-		info 'first-match))))
-	 (scope (funcall --numbered-parent-headline-at-<=-n
-			 element
-			 (or n (plist-get info :odt-display-outline-level))
-			 info))
-	 (ordinal (funcall --enumerate element scope info predicate))
-	 (tag
-	  (concat
-	   ;; Section number.
-	   (and scope
-		(mapconcat 'number-to-string
-			   (org-export-get-headline-number scope info) "."))
-	   ;; Separator.
-	   (and scope ".")
-	   ;; Ordinal.
-	   (number-to-string ordinal))))
-    tag))
-
-(defun org-odt-format-label (element info op)
-  "Return a label for ELEMENT.
-
-ELEMENT is a `link', `table', `src-block' or `paragraph' type
-element.  INFO is a plist used as a communication channel.  OP is
-either `definition' or `reference', depending on the purpose of
-the generated string.
-
-Return value is a string if OP is set to `reference' or a cons
-cell like CAPTION . SHORT-CAPTION) where CAPTION and
-SHORT-CAPTION are strings."
-  (cl-assert (memq (org-element-type element) '(link table src-block paragraph)))
-  (let* ((element-or-parent
-	  (cl-case (org-element-type element)
-	    (link (org-export-get-parent-element element))
-	    (t element)))
-	 ;; Get label and caption.
-	 (label (and (or (org-element-property :name element)
-			 (org-element-property :name element-or-parent))
-		     (org-export-get-reference element-or-parent info)))
-	 (caption (let ((c (org-export-get-caption element-or-parent)))
-		    (and c (org-export-data c info))))
-	 ;; FIXME: We don't use short-caption for now
-	 (short-caption nil))
-    (when (or label caption)
-      (let* ((default-category
-	       (cl-case (org-element-type element)
-		 (table "__Table__")
-		 (src-block "__Listing__")
-		 ((link paragraph)
-		  (cond
-		   ((org-odt--enumerable-latex-image-p element info)
-		    "__DvipngImage__")
-		   ((org-odt--enumerable-image-p element info)
-		    "__Figure__")
-		   ((org-odt--enumerable-formula-p element info)
-		    "__MathFormula__")
-		   (t (error "Don't know how to format label for link: %S"
-			     element))))
-		 (t (error "Don't know how to format label for element type: %s"
-			   (org-element-type element)))))
-	     seqno)
-	(cl-assert default-category)
-	(pcase-let
-	    ((`(,counter ,label-style ,category ,predicate)
-	      (assoc-default default-category org-odt-category-map-alist)))
-	  ;; Compute sequence number of the element.
-	  (setq seqno (org-odt--enumerate element info predicate))
-	  ;; Localize category string.
-	  (setq category (org-export-translate category :utf-8 info))
-	  (cl-case op
-	    ;; Case 1: Handle Label definition.
-	    (definition
-	      (cons
-	       (concat
-		;; Sneak in a bookmark.  The bookmark is used when the
-		;; labeled element is referenced with a link that
-		;; provides its own description.
-		(format "\n<text:bookmark text:name=\"%s\"/>" label)
-		;; Label definition: Typically formatted as below:
-		;;     CATEGORY SEQ-NO: LONG CAPTION
-		;; with translation for correct punctuation.
-		(format-spec
-		 (org-export-translate
-		  (cadr (assoc-string label-style org-odt-label-styles t))
-		  :utf-8 info)
-		 `((?e . ,category)
-		   (?n . ,(format
-			   "<text:sequence text:ref-name=\"%s\" text:name=\"%s\" text:formula=\"ooow:%s+1\" style:num-format=\"1\">%s</text:sequence>"
-			   label counter counter seqno))
-		   (?c . ,(or caption "")))))
-	       short-caption))
-	    ;; Case 2: Handle Label reference.
-	    (reference
-	     (let* ((fmt (cddr (assoc-string label-style org-odt-label-styles t)))
-		    (fmt1 (car fmt))
-		    (fmt2 (cadr fmt)))
-	       (format "<text:sequence-ref text:reference-format=\"%s\" text:ref-name=\"%s\">%s</text:sequence-ref>"
-		       fmt1
-		       label
-		       (format-spec fmt2 `((?e . ,category) (?n . ,seqno))))))
-	    (t (error "Unknown %S on label" op))))))))
-
-
-;;;; Links :: Inline Images
-
-(defun org-odt--copy-image-file (path)
-  "Returns the internal name of the file"
-  (let* ((image-type (file-name-extension path))
-	 (media-type (format "image/%s" image-type))
-	 (target-dir "Images/")
-	 (target-file
-	  (format "%s%04d.%s" target-dir
-		  (cl-incf org-odt-embedded-images-count) image-type)))
-    (message "Embedding %s as %s..."
-	     (substring-no-properties path) target-file)
-
-    (when (= 1 org-odt-embedded-images-count)
-      (make-directory (concat org-odt-zip-dir target-dir))
-      (org-odt-create-manifest-file-entry "" target-dir))
-
-    (copy-file path (concat org-odt-zip-dir target-file) 'overwrite)
-    (org-odt-create-manifest-file-entry media-type target-file)
-    target-file))
-
-(defun org-odt--image-size
-  (file info &optional user-width user-height scale dpi embed-as)
-  (let* ((--pixels-to-cms
-	  (function (lambda (pixels dpi)
-		      (let ((cms-per-inch 2.54)
-			    (inches (/ pixels dpi)))
-			(* cms-per-inch inches)))))
-	 (--size-in-cms
-	  (function
-	   (lambda (size-in-pixels dpi)
-	     (and size-in-pixels
-		  (cons (funcall --pixels-to-cms (car size-in-pixels) dpi)
-			(funcall --pixels-to-cms (cdr size-in-pixels) dpi))))))
-	 (dpi (or dpi (plist-get info :odt-pixels-per-inch)))
-	 (anchor-type (or embed-as "paragraph"))
-	 (user-width (and (not scale) user-width))
-	 (user-height (and (not scale) user-height))
-	 (size
-	  (and
-	   (not (and user-height user-width))
-	   (or
-	    ;; Use Imagemagick.
-	    (and (executable-find "identify")
-		 (let ((size-in-pixels
-			(let ((dim (shell-command-to-string
-				    (format "identify -format \"%%w:%%h\" \"%s\""
-					    file))))
-			  (when (string-match "\\([0-9]+\\):\\([0-9]+\\)" dim)
-			    (cons (string-to-number (match-string 1 dim))
-				  (string-to-number (match-string 2 dim)))))))
-		   (funcall --size-in-cms size-in-pixels dpi)))
-	    ;; Use Emacs.
-	    (let ((size-in-pixels
-		   (ignore-errors	; Emacs could be in batch mode
-		     (clear-image-cache)
-		     (image-size (create-image file) 'pixels))))
-	      (funcall --size-in-cms size-in-pixels dpi))
-	    ;; Use hard-coded values.
-	    (cdr (assoc-string anchor-type
-			       org-odt-default-image-sizes-alist))
-	    ;; Error out.
-	    (error "Cannot determine image size, aborting"))))
-	 (width (car size)) (height (cdr size)))
-    (cond
-     (scale
-      (setq width (* width scale) height (* height scale)))
-     ((and user-height user-width)
-      (setq width user-width height user-height))
-     (user-height
-      (setq width (* user-height (/ width height)) height user-height))
-     (user-width
-      (setq height (* user-width (/ height width)) width user-width))
-     (t (ignore)))
-    ;; ensure that an embedded image fits comfortably within a page
-    (let ((max-width (car org-odt-max-image-size))
-	  (max-height (cdr org-odt-max-image-size)))
-      (when (or (> width max-width) (> height max-height))
-	(let* ((scale1 (/ max-width width))
-	       (scale2 (/ max-height height))
-	       (scale (min scale1 scale2)))
-	  (setq width (* scale width) height (* scale height)))))
-    (cons width height)))
-
-(defun org-odt-link--inline-image (element info)
-  "Return ODT code for an inline image.
-LINK is the link pointing to the inline image.  INFO is a plist
-used as a communication channel."
-  (cl-assert (eq (org-element-type element) 'link))
-  (let* ((src (let* ((type (org-element-property :type element))
-		     (raw-path (org-element-property :path element)))
-		(cond ((member type '("http" "https"))
-		       (concat type ":" raw-path))
-		      ((file-name-absolute-p raw-path)
-		       (expand-file-name raw-path))
-		      (t raw-path))))
-	 (src-expanded (if (file-name-absolute-p src) src
-			 (expand-file-name src (file-name-directory
-						(plist-get info :input-file)))))
-	 (href (format
-		"\n<draw:image xlink:href=\"%s\" xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"/>"
-		(org-odt--copy-image-file src-expanded)))
-	 ;; Extract attributes from #+ATTR_ODT line.
-	 (attr-from (cl-case (org-element-type element)
-		      (link (org-export-get-parent-element element))
-		      (t element)))
-	 ;; Convert attributes to a plist.
-	 (attr-plist (org-export-read-attribute :attr_odt attr-from))
-	 ;; Handle `:anchor', `:style' and `:attributes' properties.
-	 (user-frame-anchor
-	  (car (assoc-string (plist-get attr-plist :anchor)
-			     '(("as-char") ("paragraph") ("page")) t)))
-	 (user-frame-style
-	  (and user-frame-anchor (plist-get attr-plist :style)))
-	 (user-frame-attrs
-	  (and user-frame-anchor (plist-get attr-plist :attributes)))
-	 (user-frame-params
-	  (list user-frame-style user-frame-attrs user-frame-anchor))
-	 ;; (embed-as (or embed-as user-frame-anchor "paragraph"))
-	 ;;
-	 ;; Handle `:width', `:height' and `:scale' properties.  Read
-	 ;; them as numbers since we need them for computations.
-	 (size (org-odt--image-size
-		src-expanded info
-		(let ((width (plist-get attr-plist :width)))
-		  (and width (read width)))
-		(let ((length (plist-get attr-plist :length)))
-		  (and length (read length)))
-		(let ((scale (plist-get attr-plist :scale)))
-		  (and scale (read scale)))
-		nil			; embed-as
-		"paragraph"		; FIXME
-		))
-	 (width (car size)) (height (cdr size))
-	 (standalone-link-p (org-odt--standalone-link-p element info))
-	 (embed-as (if standalone-link-p "paragraph" "as-char"))
-	 (captions (org-odt-format-label element info 'definition))
-	 (caption (car captions))
-	 (entity (concat (and caption "Captioned") embed-as "Image"))
-	 ;; Check if this link was created by LaTeX-to-PNG converter.
-	 (replaces (org-element-property
-		    :replaces (if (not standalone-link-p) element
-				(org-export-get-parent-element element))))
-	 ;; If yes, note down the type of the element - LaTeX Fragment
-	 ;; or LaTeX environment.  It will go in to frame title.
-	 (title (and replaces (capitalize
-			       (symbol-name (org-element-type replaces)))))
-
-	 ;; If yes, note down its contents.  It will go in to frame
-	 ;; description.  This quite useful for debugging.
-	 (desc (and replaces (org-element-property :value replaces))))
-    (org-odt--render-image/formula entity href width height
-				   captions user-frame-params title desc)))
-
-
-;;;; Links :: Math formula
-
-(defun org-odt-link--inline-formula (element info)
-  (let* ((src (let ((raw-path (org-element-property :path element)))
-		(cond
-		 ((file-name-absolute-p raw-path)
-		  (expand-file-name raw-path))
-		 (t raw-path))))
-	 (src-expanded (if (file-name-absolute-p src) src
-			 (expand-file-name src (file-name-directory
-						(plist-get info :input-file)))))
-	 (href
-	  (format
-	   "\n<draw:object %s xlink:href=\"%s\" xlink:type=\"simple\"/>"
-	   " xlink:show=\"embed\" xlink:actuate=\"onLoad\""
-	   (file-name-directory (org-odt--copy-formula-file src-expanded))))
-	 (standalone-link-p (org-odt--standalone-link-p element info))
-	 (embed-as (if standalone-link-p 'paragraph 'character))
-	 (captions (org-odt-format-label element info 'definition))
-	 ;; Check if this link was created by LaTeX-to-MathML
-	 ;; converter.
-	 (replaces (org-element-property
-		    :replaces (if (not standalone-link-p) element
-				(org-export-get-parent-element element))))
-	 ;; If yes, note down the type of the element - LaTeX Fragment
-	 ;; or LaTeX environment.  It will go in to frame title.
-	 (title (and replaces (capitalize
-			       (symbol-name (org-element-type replaces)))))
-
-	 ;; If yes, note down its contents.  It will go in to frame
-	 ;; description.  This quite useful for debugging.
-	 (desc (and replaces (org-element-property :value replaces)))
-	 width height)
-    (cond
-     ((eq embed-as 'character)
-      (org-odt--render-image/formula "InlineFormula" href width height
-				     nil nil title desc))
-     (t
-      (let* ((equation (org-odt--render-image/formula
-			"CaptionedDisplayFormula" href width height
-			captions nil title desc))
-	     (label
-	      (let* ((org-odt-category-map-alist
-		      '(("__MathFormula__" "Text" "math-label" "Equation"
-			 org-odt--enumerable-formula-p))))
-		(car (org-odt-format-label element info 'definition)))))
-	(concat equation "<text:tab/>" label))))))
-
-(defun org-odt--copy-formula-file (src-file)
-  "Returns the internal name of the file"
-  (let* ((target-dir (format "Formula-%04d/"
-			     (cl-incf org-odt-embedded-formulas-count)))
-	 (target-file (concat target-dir "content.xml")))
-    ;; Create a directory for holding formula file.  Also enter it in
-    ;; to manifest.
-    (make-directory (concat org-odt-zip-dir target-dir))
-    (org-odt-create-manifest-file-entry
-     "application/vnd.oasis.opendocument.formula" target-dir "1.2")
-    ;; Copy over the formula file from user directory to zip
-    ;; directory.
-    (message "Embedding %s as %s..." src-file target-file)
-    (let ((ext (file-name-extension src-file)))
-      (cond
-       ;; Case 1: Mathml.
-       ((member ext '("mathml" "mml"))
-	(copy-file src-file (concat org-odt-zip-dir target-file) 'overwrite))
-       ;; Case 2: OpenDocument formula.
-       ((string= ext "odf")
-	(org-odt--zip-extract src-file "content.xml"
-				(concat org-odt-zip-dir target-dir)))
-       (t (error "%s is not a formula file" src-file))))
-    ;; Enter the formula file in to manifest.
-    (org-odt-create-manifest-file-entry "text/xml" target-file)
-    target-file))
-
-;;;; Targets
-
-(defun org-odt--render-image/formula (cfg-key href width height &optional
-					      captions user-frame-params
-					      &rest title-and-desc)
-  (let* ((frame-cfg-alist
-	  ;; Each element of this alist is of the form (CFG-HANDLE
-	  ;; INNER-FRAME-PARAMS OUTER-FRAME-PARAMS).
-
-	  ;; CFG-HANDLE is the key to the alist.
-
-	  ;; INNER-FRAME-PARAMS and OUTER-FRAME-PARAMS specify the
-	  ;; frame params for INNER-FRAME and OUTER-FRAME
-	  ;; respectively.  See below.
-
-	  ;; Configurations that are meant to be applied to
-	  ;; non-captioned image/formula specifies no
-	  ;; OUTER-FRAME-PARAMS.
-
-	  ;; TERMINOLOGY
-	  ;; ===========
-	  ;; INNER-FRAME :: Frame that directly surrounds an
-	  ;;                image/formula.
-
-	  ;; OUTER-FRAME :: Frame that encloses the INNER-FRAME.  This
-	  ;;                frame also contains the caption, if any.
-
-	  ;; FRAME-PARAMS :: List of the form (FRAME-STYLE-NAME
-	  ;;                 FRAME-ATTRIBUTES FRAME-ANCHOR).  Note
-	  ;;                 that these are the last three arguments
-	  ;;                 to `org-odt--frame'.
-
-	  ;; Note that an un-captioned image/formula requires just an
-	  ;; INNER-FRAME, while a captioned image/formula requires
-	  ;; both an INNER and an OUTER-FRAME.
-	  '(("As-CharImage" ("OrgInlineImage" nil "as-char"))
-	    ("ParagraphImage" ("OrgDisplayImage" nil "paragraph"))
-	    ("PageImage" ("OrgPageImage" nil "page"))
-	    ("CaptionedAs-CharImage"
-	     ("OrgCaptionedImage"
-	      " style:rel-width=\"100%\" style:rel-height=\"scale\"" "paragraph")
-	     ("OrgInlineImage" nil "as-char"))
-	    ("CaptionedParagraphImage"
-	     ("OrgCaptionedImage"
-	      " style:rel-width=\"100%\" style:rel-height=\"scale\"" "paragraph")
-	     ("OrgImageCaptionFrame" nil "paragraph"))
-	    ("CaptionedPageImage"
-	     ("OrgCaptionedImage"
-	      " style:rel-width=\"100%\" style:rel-height=\"scale\"" "paragraph")
-	     ("OrgPageImageCaptionFrame" nil "page"))
-	    ("InlineFormula" ("OrgInlineFormula" nil "as-char"))
-	    ("DisplayFormula" ("OrgDisplayFormula" nil "as-char"))
-	    ("CaptionedDisplayFormula"
-	     ("OrgCaptionedFormula" nil "paragraph")
-	     ("OrgFormulaCaptionFrame" nil "paragraph"))))
-	 (caption (car captions)) (short-caption (cdr captions))
-	 ;; Retrieve inner and outer frame params, from configuration.
-	 (frame-cfg (assoc-string cfg-key frame-cfg-alist t))
-	 (inner (nth 1 frame-cfg))
-	 (outer (nth 2 frame-cfg))
-	 ;; User-specified frame params (from #+ATTR_ODT spec)
-	 (user user-frame-params)
-	 (--merge-frame-params (function
-				(lambda (default user)
-				  "Merge default and user frame params."
-				  (if (not user) default
-				    (cl-assert (= (length default) 3))
-				    (cl-assert (= (length user) 3))
-				    (cl-loop for u in user
-					     for d in default
-					     collect (or u d)))))))
-    (cond
-     ;; Case 1: Image/Formula has no caption.
-     ;;         There is only one frame, one that surrounds the image
-     ;;         or formula.
-     ((not caption)
-      ;; Merge user frame params with that from configuration.
-      (setq inner (funcall --merge-frame-params inner user))
-      (apply 'org-odt--frame href width height
-	     (append inner title-and-desc)))
-     ;; Case 2: Image/Formula is captioned or labeled.
-     ;;         There are two frames: The inner one surrounds the
-     ;;         image or formula.  The outer one contains the
-     ;;         caption/sequence number.
-     (t
-      ;; Merge user frame params with outer frame params.
-      (setq outer (funcall --merge-frame-params outer user))
-      ;; Short caption, if specified, goes as part of inner frame.
-      (setq inner (let ((frame-params (copy-sequence inner)))
-		    (setcar (cdr frame-params)
-			    (concat
-			     (cadr frame-params)
-			     (when short-caption
-			       (format " draw:name=\"%s\" " short-caption))))
-		    frame-params))
-      (apply 'org-odt--textbox
-	     (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-		     "Illustration"
-		     (concat
-		      (apply 'org-odt--frame href width height
-			     (append inner title-and-desc))
-		      caption))
-	     width height outer)))))
-
-(defun org-odt--enumerable-p (element _info)
-  ;; Element should have a caption or label.
-  (or (org-element-property :caption element)
-      (org-element-property :name element)))
-
-(defun org-odt--enumerable-image-p (element info)
-  (org-odt--standalone-link-p
-   element info
-   ;; Paragraph should have a caption or label.  It SHOULD NOT be a
-   ;; replacement element. (i.e., It SHOULD NOT be a result of LaTeX
-   ;; processing.)
-   (lambda (p)
-     (and (not (org-element-property :replaces p))
-	  (or (org-element-property :caption p)
-	      (org-element-property :name p))))
-   ;; Link should point to an image file.
-   (lambda (l)
-     (cl-assert (eq (org-element-type l) 'link))
-     (org-export-inline-image-p l (plist-get info :odt-inline-image-rules)))))
-
-(defun org-odt--enumerable-latex-image-p (element info)
-  (org-odt--standalone-link-p
-   element info
-   ;; Paragraph should have a caption or label.  It SHOULD also be a
-   ;; replacement element. (i.e., It SHOULD be a result of LaTeX
-   ;; processing.)
-   (lambda (p)
-     (and (org-element-property :replaces p)
-	  (or (org-element-property :caption p)
-	      (org-element-property :name p))))
-   ;; Link should point to an image file.
-   (lambda (l)
-     (cl-assert (eq (org-element-type l) 'link))
-     (org-export-inline-image-p l (plist-get info :odt-inline-image-rules)))))
-
-(defun org-odt--enumerable-formula-p (element info)
-  (org-odt--standalone-link-p
-   element info
-   ;; Paragraph should have a caption or label.
-   (lambda (p)
-     (or (org-element-property :caption p)
-	 (org-element-property :name p)))
-   ;; Link should point to a MathML or ODF file.
-   (lambda (l)
-     (cl-assert (eq (org-element-type l) 'link))
-     (org-export-inline-image-p l (plist-get info :odt-inline-formula-rules)))))
-
-(defun org-odt--standalone-link-p (element _info &optional
-					   paragraph-predicate
-					   link-predicate)
-  "Test if ELEMENT is a standalone link for the purpose ODT export.
-INFO is a plist holding contextual information.
-
-Return non-nil, if ELEMENT is of type paragraph satisfying
-PARAGRAPH-PREDICATE and its sole content, save for whitespaces,
-is a link that satisfies LINK-PREDICATE.
-
-Return non-nil, if ELEMENT is of type link satisfying
-LINK-PREDICATE and its containing paragraph satisfies
-PARAGRAPH-PREDICATE in addition to having no other content save for
-leading and trailing whitespaces.
-
-Return nil, otherwise."
-  (let ((p (cl-case (org-element-type element)
-	     (paragraph element)
-	     (link (and (or (not link-predicate)
-			    (funcall link-predicate element))
-			(org-export-get-parent element)))
-	     (t nil))))
-    (when (and p (eq (org-element-type p) 'paragraph))
-      (when (or (not paragraph-predicate)
-		(funcall paragraph-predicate p))
-	(let ((contents (org-element-contents p)))
-	  (cl-loop for x in contents
-		   with inline-image-count = 0
-		   always (cl-case (org-element-type x)
-			    (plain-text
-			     (not (org-string-nw-p x)))
-			    (link
-			     (and (or (not link-predicate)
-				      (funcall link-predicate x))
-				  (= (cl-incf inline-image-count) 1)))
-			    (t nil))))))))
-
-(defun org-odt-link--infer-description (destination info)
-  ;; DESTINATION is a headline or an element (like paragraph,
-  ;; verse-block etc) to which a "#+NAME: label" can be attached.
-
-  ;; Note that labels that are attached to captioned entities - inline
-  ;; images, math formulae and tables - get resolved as part of
-  ;; `org-odt-format-label' and `org-odt--enumerate'.
-
-  ;; Create a cross-reference to DESTINATION but make best-efforts to
-  ;; create a *meaningful* description.  Check item numbers, section
-  ;; number and section title in that order.
-
-  ;; NOTE: Counterpart of `org-export-get-ordinal'.
-  ;; FIXME: Handle footnote-definition footnote-reference?
-  (let* ((genealogy (org-element-lineage destination))
-	 (data (reverse genealogy))
-	 (label (let ((type (org-element-type destination)))
-		  (if (memq type '(headline target))
-		      (org-export-get-reference destination info)
-		    (error "FIXME: Unable to resolve %S" destination)))))
-    (or
-     (let* ( ;; Locate top-level list.
-	    (top-level-list
-	     (cl-loop for x on data
-		      when (eq (org-element-type (car x)) 'plain-list)
-		      return x))
-	    ;; Get list item nos.
-	    (item-numbers
-	     (cl-loop for (plain-list item . rest) on top-level-list by #'cddr
-		      until (not (eq (org-element-type plain-list) 'plain-list))
-		      collect (when (eq (org-element-property :type
-							      plain-list)
-					'ordered)
-				(1+ (length (org-export-get-previous-element
-					     item info t))))))
-	    ;; Locate top-most listified headline.
-	    (listified-headlines
-	     (cl-loop for x on data
-		      when (and (eq (org-element-type (car x)) 'headline)
-				(org-export-low-level-p (car x) info))
-		      return x))
-	    ;; Get listified headline numbers.
-	    (listified-headline-nos
-	     (cl-loop for el in listified-headlines
-		      when (eq (org-element-type el) 'headline)
-		      collect (when (org-export-numbered-headline-p el info)
-				(1+ (length (org-export-get-previous-element
-					     el info t)))))))
-       ;; Combine item numbers from both the listified headlines and
-       ;; regular list items.
-
-       ;; Case 1: Check if all the parents of list item are numbered.
-       ;; If yes, link to the item proper.
-       (let ((item-numbers (append listified-headline-nos item-numbers)))
-	 (when (and item-numbers (not (memq nil item-numbers)))
-	   (format "<text:bookmark-ref text:reference-format=\"number-all-superior\" text:ref-name=\"%s\">%s</text:bookmark-ref>"
-		   label
-		   (mapconcat (lambda (n) (if (not n) " "
-				       (concat (number-to-string n) ".")))
-			      item-numbers "")))))
-     ;; Case 2: Locate a regular and numbered headline in the
-     ;; hierarchy.  Display its section number.
-     (let ((headline
-	    (and
-	     ;; Test if destination is a numbered headline.
-	     (org-export-numbered-headline-p destination info)
-	     (cl-loop for el in (cons destination genealogy)
-		      when (and (eq (org-element-type el) 'headline)
-				(not (org-export-low-level-p el info))
-				(org-export-numbered-headline-p el info))
-		      return el))))
-       ;; We found one.
-       (when headline
-	 (format "<text:bookmark-ref text:reference-format=\"chapter\" text:ref-name=\"OrgXref.%s\">%s</text:bookmark-ref>"
-		 label
-		 (mapconcat 'number-to-string (org-export-get-headline-number
-					       headline info) "."))))
-     ;; Case 4: Locate a regular headline in the hierarchy.  Display
-     ;; its title.
-     (let ((headline (cl-loop for el in (cons destination genealogy)
-			      when (and (eq (org-element-type el) 'headline)
-					(not (org-export-low-level-p el info)))
-			      return el)))
-       ;; We found one.
-       (when headline
-	 (format "<text:bookmark-ref text:reference-format=\"text\" text:ref-name=\"OrgXref.%s\">%s</text:bookmark-ref>"
-		 label
-		 (let ((title (org-element-property :title headline)))
-		   (org-export-data title info)))))
-     (error "FIXME?"))))
-
-(defun org-odt-link (link desc info)
-  "Transcode a LINK object from Org to ODT.
-
-DESC is the description part of the link, or the empty string.
-INFO is a plist holding contextual information.  See
-`org-export-data'."
-  (let* ((type (org-element-property :type link))
-	 (raw-path (org-element-property :path link))
-	 ;; Ensure DESC really exists, or set it to nil.
-	 (desc (and (not (string= desc "")) desc))
-	 (imagep (org-export-inline-image-p
-		  link (plist-get info :odt-inline-image-rules)))
-	 (path (cond
-		((member type '("http" "https" "ftp" "mailto"))
-		 (concat type ":" raw-path))
-		((string= type "file") (org-export-file-uri raw-path))
-		(t raw-path)))
-	 ;; Convert & to &amp; for correct XML representation
-	 (path (replace-regexp-in-string "&" "&amp;" path)))
-    (cond
-     ;; Link type is handled by a special function.
-     ((org-export-custom-protocol-maybe link desc 'odt))
-     ;; Image file.
-     ((and (not desc) imagep) (org-odt-link--inline-image link info))
-     ;; Formula file.
-     ((and (not desc)
-	   (org-export-inline-image-p
-	    link (plist-get info :odt-inline-formula-rules)))
-      (org-odt-link--inline-formula link info))
-     ;; Radio target: Transcode target's contents and use them as
-     ;; link's description.
-     ((string= type "radio")
-      (let ((destination (org-export-resolve-radio-link link info)))
-	(if (not destination) desc
-	  (format
-	   "<text:bookmark-ref text:reference-format=\"text\" text:ref-name=\"OrgXref.%s\">%s</text:bookmark-ref>"
-	   (org-export-get-reference destination info)
-	   desc))))
-     ;; Links pointing to a headline: Find destination and build
-     ;; appropriate referencing command.
-     ((member type '("custom-id" "fuzzy" "id"))
-      (let ((destination (if (string= type "fuzzy")
-			     (org-export-resolve-fuzzy-link link info)
-			   (org-export-resolve-id-link link info))))
-	(cl-case (org-element-type destination)
-	  ;; Fuzzy link points to a headline.  If there's
-	  ;; a description, create a hyperlink.  Otherwise, try to
-	  ;; provide a meaningful description.
-	  (headline
-	   (if (not desc) (org-odt-link--infer-description destination info)
-	     (let ((label
-		    (or (and (string= type "custom-id")
-			     (org-element-property :CUSTOM_ID destination))
-			(org-export-get-reference destination info))))
-	       (format
-		"<text:a xlink:type=\"simple\" xlink:href=\"#%s\">%s</text:a>"
-		label desc))))
-	  ;; Fuzzy link points to a target.  If there's a description,
-	  ;; create a hyperlink.  Otherwise, try to provide
-	  ;; a meaningful description.
-	  (target
-	   (format "<text:a xlink:type=\"simple\" xlink:href=\"#%s\">%s</text:a>"
-		   (org-export-get-reference destination info)
-		   (or desc (org-export-get-ordinal destination info))))
-	  ;; Fuzzy link points to some element (e.g., an inline image,
-	  ;; a math formula or a table).
-	  (otherwise
-	   (let ((label-reference
-		  (ignore-errors
-		    (org-odt-format-label destination info 'reference))))
-	     (cond
-	      ((not label-reference)
-	       (org-odt-link--infer-description destination info))
-	      ;; LINK has no description.  Create
-	      ;; a cross-reference showing entity's sequence
-	      ;; number.
-	      ((not desc) label-reference)
-	      ;; LINK has description.  Insert a hyperlink with
-	      ;; user-provided description.
-	      (t
-	       (format
-		"<text:a xlink:type=\"simple\" xlink:href=\"#%s\">%s</text:a>"
-		(org-export-get-reference destination info)
-		desc))))))))
-     ;; Coderef: replace link with the reference name or the
-     ;; equivalent line number.
-     ((string= type "coderef")
-      (let* ((line-no (format "%d" (org-export-resolve-coderef path info)))
-	     (href (concat "coderef-" path)))
-	(format
-	 (org-export-get-coderef-format path desc)
-	 (format
-	  "<text:bookmark-ref text:reference-format=\"number\" text:ref-name=\"OrgXref.%s\">%s</text:bookmark-ref>"
-	  href line-no))))
-     ;; External link with a description part.
-     ((and path desc)
-      (let ((link-contents (org-element-contents link)))
-	;; Check if description is a link to an inline image.
-	(if (and (not (cdr link-contents))
-		 (let ((desc-element (car link-contents)))
-		   (and (eq (org-element-type desc-element) 'link)
-			(org-export-inline-image-p
-			 desc-element
-			 (plist-get info :odt-inline-image-rules)))))
-	    ;; Format link as a clickable image.
-	    (format "\n<draw:a xlink:type=\"simple\" xlink:href=\"%s\">\n%s\n</draw:a>"
-		    path desc)
-	  ;; Otherwise, format it as a regular link.
-	  (format "<text:a xlink:type=\"simple\" xlink:href=\"%s\">%s</text:a>"
-		  path desc))))
-     ;; External link without a description part.
-     (path
-      (format "<text:a xlink:type=\"simple\" xlink:href=\"%s\">%s</text:a>"
-	      path path))
-     ;; No path, only description.  Try to do something useful.
-     (t (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		"Emphasis" desc)))))
-
-
-;;;; Node Property
-
-(defun org-odt-node-property (node-property _contents _info)
-  "Transcode a NODE-PROPERTY element from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (org-odt--encode-plain-text
-   (format "%s:%s"
-	   (org-element-property :key node-property)
-	   (let ((value (org-element-property :value node-property)))
-	     (if value (concat " " value) "")))))
-
-;;;; Paragraph
-
-(defun org-odt--paragraph-style (paragraph)
-  "Return style of PARAGRAPH.
-Style is a symbol among `quoted', `centered' and nil."
-  (let ((up paragraph))
-    (while (and (setq up (org-element-property :parent up))
-		(not (memq (org-element-type up)
-			   '(center-block quote-block section)))))
-    (cl-case (org-element-type up)
-      (center-block 'centered)
-      (quote-block 'quoted))))
-
-(defun org-odt--format-paragraph (paragraph contents info default center quote)
-  "Format paragraph according to given styles.
-PARAGRAPH is a paragraph type element.  CONTENTS is the
-transcoded contents of that paragraph, as a string.  INFO is
-a plist used as a communication channel.  DEFAULT, CENTER and
-QUOTE are, respectively, style to use when paragraph belongs to
-no special environment, a center block, or a quote block."
-  (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-	  (cl-case (org-odt--paragraph-style paragraph)
-	    (quoted quote)
-	    (centered center)
-	    (otherwise default))
-	  ;; If PARAGRAPH is a leading paragraph in an item that has
-	  ;; a checkbox, splice checkbox and paragraph contents
-	  ;; together.
-	  (concat (let ((parent (org-element-property :parent paragraph)))
-		    (and (eq (org-element-type parent) 'item)
-			 (not (org-export-get-previous-element paragraph info))
-			 (org-odt--checkbox parent)))
-		  contents)))
-
-(defun org-odt-paragraph (paragraph contents info)
-  "Transcode a PARAGRAPH element from Org to ODT.
-CONTENTS is the contents of the paragraph, as a string.  INFO is
-the plist used as a communication channel."
-  (org-odt--format-paragraph
-   paragraph contents info
-   (or (org-element-property :style paragraph) "Text_20_body")
-   "OrgCenter"
-   "Quotations"))
-
-
-;;;; Plain List
-
-(defun org-odt-plain-list (plain-list contents _info)
-  "Transcode a PLAIN-LIST element from Org to ODT.
-CONTENTS is the contents of the list.  INFO is a plist holding
-contextual information."
-  (format "\n<text:list text:style-name=\"%s\" %s>\n%s</text:list>"
-	  ;; Choose style based on list type.
-	  (cl-case (org-element-property :type plain-list)
-	    (ordered "OrgNumberedList")
-	    (unordered "OrgBulletedList")
-	    (descriptive-1 "OrgDescriptionList")
-	    (descriptive-2 "OrgDescriptionList"))
-	  ;; If top-level list, re-start numbering.  Otherwise,
-	  ;; continue numbering.
-	  (format "text:continue-numbering=\"%s\""
-		  (let* ((parent (org-export-get-parent plain-list)))
-		    (if (and parent (eq (org-element-type parent) 'item))
-			"true" "false")))
-	  contents))
-
-;;;; Plain Text
-
-(defun org-odt--encode-tabs-and-spaces (line)
-  (replace-regexp-in-string
-   "\\(\t\\| \\{2,\\}\\)"
-   (lambda (s)
-     (if (string= s "\t") "<text:tab/>"
-       (format " <text:s text:c=\"%d\"/>" (1- (length s)))))
-   line))
-
-(defun org-odt--encode-plain-text (text &optional no-whitespace-filling)
-  (dolist (pair '(("&" . "&amp;") ("<" . "&lt;") (">" . "&gt;")))
-    (setq text (replace-regexp-in-string (car pair) (cdr pair) text t t)))
-  (if no-whitespace-filling text
-    (org-odt--encode-tabs-and-spaces text)))
-
-(defun org-odt-plain-text (text info)
-  "Transcode a TEXT string from Org to ODT.
-TEXT is the string to transcode.  INFO is a plist holding
-contextual information."
-  (let ((output text))
-    ;; Protect &, < and >.
-    (setq output (org-odt--encode-plain-text output t))
-    ;; Handle smart quotes.  Be sure to provide original string since
-    ;; OUTPUT may have been modified.
-    (when (plist-get info :with-smart-quotes)
-      (setq output (org-export-activate-smart-quotes output :utf-8 info text)))
-    ;; Convert special strings.
-    (when (plist-get info :with-special-strings)
-      (dolist (pair org-odt-special-string-regexps)
-	(setq output
-	      (replace-regexp-in-string (car pair) (cdr pair) output t nil))))
-    ;; Handle break preservation if required.
-    (when (plist-get info :preserve-breaks)
-      (setq output (replace-regexp-in-string
-		    "\\(\\\\\\\\\\)?[ \t]*\n" "<text:line-break/>" output t)))
-    ;; Return value.
-    output))
-
-
-;;;; Planning
-
-(defun org-odt-planning (planning contents info)
-  "Transcode a PLANNING element from Org to ODT.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-	  "OrgPlanning"
-	  (concat
-	   (let ((closed (org-element-property :closed planning)))
-	     (when closed
-	       (concat
-		(format "<text:span text:style-name=\"%s\">%s</text:span>"
-			"OrgClosedKeyword" org-closed-string)
-		(org-odt-timestamp closed contents info))))
-	   (let ((deadline (org-element-property :deadline planning)))
-	     (when deadline
-	       (concat
-		(format "<text:span text:style-name=\"%s\">%s</text:span>"
-			"OrgDeadlineKeyword" org-deadline-string)
-		(org-odt-timestamp deadline contents info))))
-	   (let ((scheduled (org-element-property :scheduled planning)))
-	     (when scheduled
-	       (concat
-		(format "<text:span text:style-name=\"%s\">%s</text:span>"
-			"OrgScheduledKeyword" org-deadline-string)
-		(org-odt-timestamp scheduled contents info)))))))
-
-
-;;;; Property Drawer
-
-(defun org-odt-property-drawer (_property-drawer contents _info)
-  "Transcode a PROPERTY-DRAWER element from Org to ODT.
-CONTENTS holds the contents of the drawer.  INFO is a plist
-holding contextual information."
-  (and (org-string-nw-p contents)
-       (format "<text:p text:style-name=\"OrgFixedWidthBlock\">%s</text:p>"
-	       contents)))
-
-
-;;;; Quote Block
-
-(defun org-odt-quote-block (_quote-block contents _info)
-  "Transcode a QUOTE-BLOCK element from Org to ODT.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  contents)
-
-
-;;;; Section
-
-(defun org-odt-format-section (text style &optional name)
-  (let ((default-name (car (org-odt-add-automatic-style "Section"))))
-    (format "\n<text:section text:style-name=\"%s\" %s>\n%s\n</text:section>"
-	    style
-	    (format "text:name=\"%s\"" (or name default-name))
-	    text)))
-
-
-(defun org-odt-section (_section contents _info) ; FIXME
-  "Transcode a SECTION element from Org to ODT.
-CONTENTS holds the contents of the section.  INFO is a plist
-holding contextual information."
-  contents)
-
-;;;; Radio Target
-
-(defun org-odt-radio-target (radio-target text info)
-  "Transcode a RADIO-TARGET object from Org to ODT.
-TEXT is the text of the target.  INFO is a plist holding
-contextual information."
-  (org-odt--target text (org-export-get-reference radio-target info)))
-
-
-;;;; Special Block
-
-(defun org-odt-special-block (special-block contents info)
-  "Transcode a SPECIAL-BLOCK element from Org to ODT.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let ((type (org-element-property :type special-block))
-	(attributes (org-export-read-attribute :attr_odt special-block)))
-    (cond
-     ;; Annotation.
-     ((string= type "annotation")
-      (let* ((author (or (plist-get attributes :author)
-			 (let ((author (plist-get info :author)))
-			   (and author (org-export-data author info)))))
-	     (date (or (plist-get attributes :date)
-		       ;; FIXME: Is `car' right thing to do below?
-		       (car (plist-get info :date)))))
-	(format "\n<text:p>%s</text:p>"
-		(format "<office:annotation>\n%s\n</office:annotation>"
-			(concat
-			 (and author
-			      (format "<dc:creator>%s</dc:creator>" author))
-			 (and date
-			      (format "<dc:date>%s</dc:date>"
-				      (org-odt--format-timestamp date nil 'iso-date)))
-			 contents)))))
-     ;; Textbox.
-     ((string= type "textbox")
-      (let ((width (plist-get attributes :width))
-	    (height (plist-get attributes :height))
-	    (style (plist-get attributes :style))
-	    (extra (plist-get attributes :extra))
-	    (anchor (plist-get attributes :anchor)))
-	(format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-		"Text_20_body" (org-odt--textbox contents width height
-						   style extra anchor))))
-     (t contents))))
-
-
-;;;; Src Block
-
-(defun org-odt-hfy-face-to-css (fn)
-  "Create custom style for face FN.
-When FN is the default face, use its foreground and background
-properties to create \"OrgSrcBlock\" paragraph style.  Otherwise
-use its color attribute to create a character style whose name
-is obtained from FN.  Currently all attributes of FN other than
-color are ignored.
-
-The style name for a face FN is derived using the following
-operations on the face name in that order - de-dash, CamelCase
-and prefix with \"OrgSrc\".  For example,
-`font-lock-function-name-face' is associated with
-\"OrgSrcFontLockFunctionNameFace\"."
-  (let* ((css-list (hfy-face-to-style fn))
-	 (style-name (concat "OrgSrc"
-                             (mapconcat
-                              'capitalize (split-string
-                                           (hfy-face-or-def-to-name fn) "-")
-                              "")))
-	 (color-val (cdr (assoc "color" css-list)))
-	 (background-color-val (cdr (assoc "background" css-list)))
-	 (style (and org-odt-create-custom-styles-for-srcblocks
-		     (cond
-		      ((eq fn 'default)
-		       (format org-odt-src-block-paragraph-format
-			       background-color-val color-val))
-		      (t
-		       (format
-			"
-<style:style style:name=\"%s\" style:family=\"text\">
-  <style:text-properties fo:color=\"%s\"/>
- </style:style>" style-name color-val))))))
-    (cons style-name style)))
-
-(defun org-odt-htmlfontify-string (line)
-  (let* ((hfy-html-quote-regex "\\([<\"&> \t]\\)")
-	 (hfy-html-quote-map '(("\"" "&quot;")
-			       ("<" "&lt;")
-			       ("&" "&amp;")
-			       (">" "&gt;")
-			       (" " "<text:s/>")
-			       ("\t" "<text:tab/>")))
-	 (hfy-face-to-css 'org-odt-hfy-face-to-css)
-	 (hfy-optimizations-1 (copy-sequence hfy-optimizations))
-	 (hfy-optimizations (cl-pushnew 'body-text-only hfy-optimizations-1))
-	 (hfy-begin-span-handler
-	  (lambda (style _text-block _text-id _text-begins-block-p)
-	    (insert (format "<text:span text:style-name=\"%s\">" style))))
-	 (hfy-end-span-handler (lambda () (insert "</text:span>"))))
-    (with-no-warnings (htmlfontify-string line))))
-
-(defun org-odt-do-format-code
-    (code info &optional lang refs retain-labels num-start)
-  (let* ((lang (or (assoc-default lang org-src-lang-modes) lang))
-	 (lang-mode (and lang (intern (format "%s-mode" lang))))
-	 (code-lines (org-split-string code "\n"))
-	 (code-length (length code-lines))
-	 (use-htmlfontify-p (and (functionp lang-mode)
-				 (plist-get info :odt-fontify-srcblocks)
-				 (require 'htmlfontify nil t)
-				 (fboundp 'htmlfontify-string)))
-	 (code (if (not use-htmlfontify-p) code
-		 (with-temp-buffer
-		   (insert code)
-		   (funcall lang-mode)
-		   (org-font-lock-ensure)
-		   (buffer-string))))
-	 (fontifier (if use-htmlfontify-p 'org-odt-htmlfontify-string
-		      'org-odt--encode-plain-text))
-	 (par-style (if use-htmlfontify-p "OrgSrcBlock"
-		      "OrgFixedWidthBlock"))
-	 (i 0))
-    (cl-assert (= code-length (length (org-split-string code "\n"))))
-    (setq code
-	  (org-export-format-code
-	   code
-	   (lambda (loc line-num ref)
-	     (setq par-style
-		   (concat par-style (and (= (cl-incf i) code-length)
-					  "LastLine")))
-
-	     (setq loc (concat loc (and ref retain-labels (format " (%s)" ref))))
-	     (setq loc (funcall fontifier loc))
-	     (when ref
-	       (setq loc (org-odt--target loc (concat "coderef-" ref))))
-	     (cl-assert par-style)
-	     (setq loc (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-			       par-style loc))
-	     (if (not line-num) loc
-	       (format "\n<text:list-item>%s\n</text:list-item>" loc)))
-	   num-start refs))
-    (cond
-     ((not num-start) code)
-     ((= num-start 0)
-      (format
-       "\n<text:list text:style-name=\"OrgSrcBlockNumberedLine\"%s>%s</text:list>"
-       " text:continue-numbering=\"false\"" code))
-     (t
-      (format
-       "\n<text:list text:style-name=\"OrgSrcBlockNumberedLine\"%s>%s</text:list>"
-       " text:continue-numbering=\"true\"" code)))))
-
-(defun org-odt-format-code (element info)
-  (let* ((lang (org-element-property :language element))
-	 ;; Extract code and references.
-	 (code-info (org-export-unravel-code element))
-	 (code (car code-info))
-	 (refs (cdr code-info))
-	 ;; Does the src block contain labels?
-	 (retain-labels (org-element-property :retain-labels element))
-	 ;; Does it have line numbers?
-	 (num-start (org-export-get-loc element info)))
-    (org-odt-do-format-code code info lang refs retain-labels num-start)))
-
-(defun org-odt-src-block (src-block _contents info)
-  "Transcode a SRC-BLOCK element from Org to ODT.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((attributes (org-export-read-attribute :attr_odt src-block))
-	 (caption (car (org-odt-format-label src-block info 'definition))))
-    (concat
-     (and caption
-	  (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-		  "Listing" caption))
-     (let ((--src-block (org-odt-format-code src-block info)))
-       (if (not (plist-get attributes :textbox)) --src-block
-	 (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-		 "Text_20_body"
-		 (org-odt--textbox --src-block nil nil nil)))))))
-
-
-;;;; Statistics Cookie
-
-(defun org-odt-statistics-cookie (statistics-cookie _contents _info)
-  "Transcode a STATISTICS-COOKIE object from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((cookie-value (org-element-property :value statistics-cookie)))
-    (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	    "OrgCode" cookie-value)))
-
-
-;;;; Strike-Through
-
-(defun org-odt-strike-through (_strike-through contents _info)
-  "Transcode STRIKE-THROUGH from Org to ODT.
-CONTENTS is the text with strike-through markup.  INFO is a plist
-holding contextual information."
-  (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	  "Strikethrough" contents))
-
-
-;;;; Subscript
-
-(defun org-odt-subscript (_subscript contents _info)
-  "Transcode a SUBSCRIPT object from Org to ODT.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	  "OrgSubscript" contents))
-
-
-;;;; Superscript
-
-(defun org-odt-superscript (_superscript contents _info)
-  "Transcode a SUPERSCRIPT object from Org to ODT.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	  "OrgSuperscript" contents))
-
-
-;;;; Table Cell
-
-(defun org-odt-table-style-spec (element info)
-  (let* ((table (org-export-get-parent-table element))
-	 (table-attributes (org-export-read-attribute :attr_odt table))
-	 (table-style (plist-get table-attributes :style)))
-    (assoc table-style (plist-get info :odt-table-styles))))
-
-(defun org-odt-get-table-cell-styles (table-cell info)
-  "Retrieve styles applicable to a table cell.
-R and C are (zero-based) row and column numbers of the table
-cell.  STYLE-SPEC is an entry in `org-odt-table-styles'
-applicable to the current table.  It is nil if the table is not
-associated with any style attributes.
-
-Return a cons of (TABLE-CELL-STYLE-NAME . PARAGRAPH-STYLE-NAME).
-
-When STYLE-SPEC is nil, style the table cell the conventional way
-- choose cell borders based on row and column groupings and
-choose paragraph alignment based on `org-col-cookies' text
-property.  See also
-`org-odt-get-paragraph-style-cookie-for-table-cell'.
-
-When STYLE-SPEC is non-nil, ignore the above cookie and return
-styles congruent with the ODF-1.2 specification."
-  (let* ((table-cell-address (org-export-table-cell-address table-cell info))
-	 (r (car table-cell-address)) (c (cdr table-cell-address))
-	 (style-spec (org-odt-table-style-spec table-cell info))
-	 (table-dimensions (org-export-table-dimensions
-			    (org-export-get-parent-table table-cell)
-			    info)))
-    (when style-spec
-      ;; LibreOffice - particularly the Writer - honors neither table
-      ;; templates nor custom table-cell styles.  Inorder to retain
-      ;; inter-operability with LibreOffice, only automatic styles are
-      ;; used for styling of table-cells.  The current implementation is
-      ;; congruent with ODF-1.2 specification and hence is
-      ;; future-compatible.
-
-      ;; Additional Note: LibreOffice's AutoFormat facility for tables -
-      ;; which recognizes as many as 16 different cell types - is much
-      ;; richer. Unfortunately it is NOT amenable to easy configuration
-      ;; by hand.
-      (let* ((template-name (nth 1 style-spec))
-	     (cell-style-selectors (nth 2 style-spec))
-	     (cell-type
-	      (cond
-	       ((and (cdr (assq 'use-first-column-styles cell-style-selectors))
-		     (= c 0)) "FirstColumn")
-	       ((and (cdr (assq 'use-last-column-styles cell-style-selectors))
-		     (= (1+ c) (cdr table-dimensions)))
-		"LastColumn")
-	       ((and (cdr (assq 'use-first-row-styles cell-style-selectors))
-		     (= r 0)) "FirstRow")
-	       ((and (cdr (assq 'use-last-row-styles cell-style-selectors))
-		     (= (1+ r) (car table-dimensions)))
-		"LastRow")
-	       ((and (cdr (assq 'use-banding-rows-styles cell-style-selectors))
-		     (= (% r 2) 1)) "EvenRow")
-	       ((and (cdr (assq 'use-banding-rows-styles cell-style-selectors))
-		     (= (% r 2) 0)) "OddRow")
-	       ((and (cdr (assq 'use-banding-columns-styles cell-style-selectors))
-		     (= (% c 2) 1)) "EvenColumn")
-	       ((and (cdr (assq 'use-banding-columns-styles cell-style-selectors))
-		     (= (% c 2) 0)) "OddColumn")
-	       (t ""))))
-	(concat template-name cell-type)))))
-
-(defun org-odt-table-cell (table-cell contents info)
-  "Transcode a TABLE-CELL element from Org to ODT.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (let* ((table-cell-address (org-export-table-cell-address table-cell info))
-	 (r (car table-cell-address))
-	 (c (cdr table-cell-address))
-	 (horiz-span (or (org-export-table-cell-width table-cell info) 0))
-	 (table-row (org-export-get-parent table-cell))
-	 (custom-style-prefix (org-odt-get-table-cell-styles
-			       table-cell info))
-	 (paragraph-style
-	  (or
-	   (and custom-style-prefix
-		(format "%sTableParagraph" custom-style-prefix))
-	   (concat
-	    (cond
-	     ((and (= 1 (org-export-table-row-group table-row info))
-		   (org-export-table-has-header-p
-		    (org-export-get-parent-table table-row) info))
-	      "OrgTableHeading")
-	     ((let* ((table (org-export-get-parent-table table-cell))
-		     (table-attrs (org-export-read-attribute :attr_odt table))
-		     (table-header-columns
-		      (let ((cols (plist-get table-attrs :header-columns)))
-			(and cols (read cols)))))
-		(<= c (cond ((wholenump table-header-columns)
-			     (- table-header-columns 1))
-			    (table-header-columns 0)
-			    (t -1))))
-	      "OrgTableHeading")
-	     (t "OrgTableContents"))
-	    (capitalize (symbol-name (org-export-table-cell-alignment
-				      table-cell info))))))
-	 (cell-style-name
-	  (or
-	   (and custom-style-prefix (format "%sTableCell"
-					    custom-style-prefix))
-	   (concat
-	    "OrgTblCell"
-	    (when (or (org-export-table-row-starts-rowgroup-p table-row info)
-		      (zerop r)) "T")
-	    (when (org-export-table-row-ends-rowgroup-p table-row info) "B")
-	    (when (and (org-export-table-cell-starts-colgroup-p table-cell info)
-		       (not (zerop c)) ) "L"))))
-	 (cell-attributes
-	  (concat
-	   (format " table:style-name=\"%s\"" cell-style-name)
-	   (and (> horiz-span 0)
-		(format " table:number-columns-spanned=\"%d\""
-			(1+ horiz-span))))))
-    (unless contents (setq contents ""))
-    (concat
-     (cl-assert paragraph-style)
-     (format "\n<table:table-cell%s>\n%s\n</table:table-cell>"
-	     cell-attributes
-	     (let ((table-cell-contents (org-element-contents table-cell)))
-	       (if (eq (org-element-class (car table-cell-contents)) 'element)
-		   contents
-		 (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-			 paragraph-style contents))))
-     (let (s)
-       (dotimes (_ horiz-span s)
-	 (setq s (concat s "\n<table:covered-table-cell/>"))))
-     "\n")))
-
-
-;;;; Table Row
-
-(defun org-odt-table-row (table-row contents info)
-  "Transcode a TABLE-ROW element from Org to ODT.
-CONTENTS is the contents of the row.  INFO is a plist used as a
-communication channel."
-  ;; Rules are ignored since table separators are deduced from
-  ;; borders of the current row.
-  (when (eq (org-element-property :type table-row) 'standard)
-    (let* ((rowgroup-tags
-	    (if (and (= 1 (org-export-table-row-group table-row info))
-		     (org-export-table-has-header-p
-		      (org-export-get-parent-table table-row) info))
-		;; If the row belongs to the first rowgroup and the
-		;; table has more than one row groups, then this row
-		;; belongs to the header row group.
-		'("\n<table:table-header-rows>" . "\n</table:table-header-rows>")
-	      ;; Otherwise, it belongs to non-header row group.
-	      '("\n<table:table-rows>" . "\n</table:table-rows>"))))
-      (concat
-       ;; Does this row begin a rowgroup?
-       (when (org-export-table-row-starts-rowgroup-p table-row info)
-	 (car rowgroup-tags))
-       ;; Actual table row
-       (format "\n<table:table-row>\n%s\n</table:table-row>" contents)
-       ;; Does this row end a rowgroup?
-       (when (org-export-table-row-ends-rowgroup-p table-row info)
-	 (cdr rowgroup-tags))))))
-
-
-;;;; Table
-
-(defun org-odt-table-first-row-data-cells (table info)
-  (let ((table-row
-	 (org-element-map table 'table-row
-	   (lambda (row)
-	     (unless (eq (org-element-property :type row) 'rule) row))
-	   info 'first-match))
-	(special-column-p (org-export-table-has-special-column-p table)))
-    (if (not special-column-p) (org-element-contents table-row)
-      (cdr (org-element-contents table-row)))))
-
-(defun org-odt--table (table contents info)
-  "Transcode a TABLE element from Org to ODT.
-CONTENTS is the contents of the table.  INFO is a plist holding
-contextual information."
-  (cl-case (org-element-property :type table)
-    ;; Case 1: table.el doesn't support export to OD format.  Strip
-    ;; such tables from export.
-    (table.el
-     (prog1 nil
-       (message
-	(concat
-	 "(ox-odt): Found table.el-type table in the source Org file."
-	 "  table.el doesn't support export to ODT format."
-	 "  Stripping the table from export."))))
-    ;; Case 2: Native Org tables.
-    (otherwise
-     (let* ((captions (org-odt-format-label table info 'definition))
-	    (caption (car captions)) (short-caption (cdr captions))
-	    (attributes (org-export-read-attribute :attr_odt table))
-	    (custom-table-style (nth 1 (org-odt-table-style-spec table info)))
-	    (table-column-specs
-	     (lambda (table info)
-	       (let* ((table-style (or custom-table-style "OrgTable"))
-		      (column-style (format "%sColumn" table-style)))
-		 (mapconcat
-		  (lambda (table-cell)
-		    (let ((width (1+ (or (org-export-table-cell-width
-					  table-cell info) 0)))
-			  (s (format
-			      "\n<table:table-column table:style-name=\"%s\"/>"
-			      column-style))
-			  out)
-		      (dotimes (_ width out) (setq out (concat s out)))))
-		  (org-odt-table-first-row-data-cells table info) "\n")))))
-       (concat
-	;; caption.
-	(when caption
-	  (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
-		  "Table" caption))
-	;; begin table.
-	(let* ((automatic-name
-		(org-odt-add-automatic-style "Table" attributes)))
-	  (format
-	   "\n<table:table table:style-name=\"%s\"%s>"
-	   (or custom-table-style (cdr automatic-name) "OrgTable")
-	   (concat (when short-caption
-		     (format " table:name=\"%s\"" short-caption)))))
-	;; column specification.
-	(funcall table-column-specs table info)
-	;; actual contents.
-	"\n" contents
-	;; end table.
-	"</table:table>")))))
-
-(defun org-odt-table (table contents info)
-  "Transcode a TABLE element from Org to ODT.
-CONTENTS is the contents of the table.  INFO is a plist holding
-contextual information.
-
-Use `org-odt--table' to typeset the table.  Handle details
-pertaining to indentation here."
-  (let* ((--element-preceded-by-table-p
-	  (lambda (element info)
-	    (cl-loop for el in (org-export-get-previous-element element info t)
-		     thereis (eq (org-element-type el) 'table))))
-	 (--walk-list-genealogy-and-collect-tags
-	  (lambda (table info)
-	    (let* ((genealogy (org-element-lineage table))
-		   (list-genealogy
-		    (when (eq (org-element-type (car genealogy)) 'item)
-		      (cl-loop for el in genealogy
-			       when (memq (org-element-type el)
-					  '(item plain-list))
-			       collect el)))
-		   (llh-genealogy
-		    (apply #'nconc
-			   (cl-loop
-			    for el in genealogy
-			    when (and (eq (org-element-type el) 'headline)
-				      (org-export-low-level-p el info))
-			    collect
-			    (list el
-				  (assq 'headline
-					(org-element-contents
-					 (org-export-get-parent el)))))))
-		   parent-list)
-	      (nconc
-	       ;; Handle list genealogy.
-	       (cl-loop
-		for el in list-genealogy collect
-		(cl-case (org-element-type el)
-		  (plain-list
-		   (setq parent-list el)
-		   (cons "</text:list>"
-			 (format "\n<text:list text:style-name=\"%s\" %s>"
-				 (cl-case (org-element-property :type el)
-				   (ordered "OrgNumberedList")
-				   (unordered "OrgBulletedList")
-				   (descriptive-1 "OrgDescriptionList")
-				   (descriptive-2 "OrgDescriptionList"))
-				 "text:continue-numbering=\"true\"")))
-		  (item
-		   (cond
-		    ((not parent-list)
-		     (if (funcall --element-preceded-by-table-p table info)
-			 '("</text:list-header>" . "<text:list-header>")
-		       '("</text:list-item>" . "<text:list-header>")))
-		    ((funcall --element-preceded-by-table-p
-			      parent-list info)
-		     '("</text:list-header>" . "<text:list-header>"))
-		    (t '("</text:list-item>" . "<text:list-item>"))))))
-	       ;; Handle low-level headlines.
-	       (cl-loop for el in llh-genealogy
-			with step = 'item collect
-			(cl-case step
-			  (plain-list
-			   (setq step 'item) ; Flip-flop
-			   (setq parent-list el)
-			   (cons "</text:list>"
-				 (format "\n<text:list text:style-name=\"%s\" %s>"
-					 (if (org-export-numbered-headline-p
-					      el info)
-					     "OrgNumberedList"
-					   "OrgBulletedList")
-					 "text:continue-numbering=\"true\"")))
-			  (item
-			   (setq step 'plain-list) ; Flip-flop
-			   (cond
-			    ((not parent-list)
-			     (if (funcall --element-preceded-by-table-p table info)
-				 '("</text:list-header>" . "<text:list-header>")
-			       '("</text:list-item>" . "<text:list-header>")))
-			    ((let ((section? (org-export-get-previous-element
-					      parent-list info)))
-			       (and section?
-				    (eq (org-element-type section?) 'section)
-				    (assq 'table (org-element-contents section?))))
-			     '("</text:list-header>" . "<text:list-header>"))
-			    (t
-			     '("</text:list-item>" . "<text:list-item>"))))))))))
-	 (close-open-tags (funcall --walk-list-genealogy-and-collect-tags
-				   table info)))
-    ;; OpenDocument schema does not permit table to occur within a
-    ;; list item.
-
-    ;; One solution - the easiest and lightweight, in terms of
-    ;; implementation - is to put the table in an indented text box
-    ;; and make the text box part of the list-item.  Unfortunately if
-    ;; the table is big and spans multiple pages, the text box could
-    ;; overflow.  In this case, the following attribute will come
-    ;; handy.
-
-    ;; ,---- From OpenDocument-v1.1.pdf
-    ;; | 15.27.28 Overflow behavior
-    ;; |
-    ;; | For text boxes contained within text document, the
-    ;; | style:overflow-behavior property specifies the behavior of text
-    ;; | boxes where the containing text does not fit into the text
-    ;; | box.
-    ;; |
-    ;; | If the attribute's value is clip, the text that does not fit
-    ;; | into the text box is not displayed.
-    ;; |
-    ;; | If the attribute value is auto-create-new-frame, a new frame
-    ;; | will be created on the next page, with the same position and
-    ;; | dimensions of the original frame.
-    ;; |
-    ;; | If the style:overflow-behavior property's value is
-    ;; | auto-create-new-frame and the text box has a minimum width or
-    ;; | height specified, then the text box will grow until the page
-    ;; | bounds are reached before a new frame is created.
-    ;; `----
-
-    ;; Unfortunately, LibreOffice-3.4.6 doesn't honor
-    ;; auto-create-new-frame property and always resorts to clipping
-    ;; the text box.  This results in table being truncated.
-
-    ;; So we solve the problem the hard (and fun) way using list
-    ;; continuations.
-
-    ;; The problem only becomes more interesting if you take in to
-    ;; account the following facts:
-    ;;
-    ;; - Description lists are simulated as plain lists.
-    ;; - Low-level headlines can be listified.
-    ;; - In Org mode, a table can occur not only as a regular list
-    ;;   item, but also within description lists and low-level
-    ;;   headlines.
-
-    ;; See `org-odt-translate-description-lists' and
-    ;; `org-odt-translate-low-level-headlines' for how this is
-    ;; tackled.
-
-    (concat "\n"
-	    ;; Discontinue the list.
-	    (mapconcat 'car close-open-tags "\n")
-	    ;; Put the table in an indented section.
-	    (let* ((table (org-odt--table table contents info))
-		   (level (/ (length (mapcar 'car close-open-tags)) 2))
-		   (style (format "OrgIndentedSection-Level-%d" level)))
-	      (when table (org-odt-format-section table style)))
-	    ;; Continue the list.
-	    (mapconcat 'cdr (nreverse close-open-tags) "\n"))))
-
-
-;;;; Target
-
-(defun org-odt-target (target _contents info)
-  "Transcode a TARGET object from Org to ODT.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (org-odt--target "" (org-export-get-reference target info)))
-
-
-;;;; Timestamp
-
-(defun org-odt-timestamp (timestamp _contents info)
-  "Transcode a TIMESTAMP object from Org to ODT.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (let ((type (org-element-property :type timestamp)))
-    (if (not (plist-get info :odt-use-date-fields))
-	(let ((value (org-odt-plain-text
-		      (org-timestamp-translate timestamp) info)))
-	  (cl-case (org-element-property :type timestamp)
-	    ((active active-range)
-	     (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		     "OrgActiveTimestamp" value))
-	    ((inactive inactive-range)
-	     (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		     "OrgInactiveTimestamp" value))
-	    (otherwise value)))
-      (cl-case type
-	(active
-	 (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		 "OrgActiveTimestamp"
-		 (format "&lt;%s&gt;" (org-odt--format-timestamp timestamp))))
-	(inactive
-	 (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		 "OrgInactiveTimestamp"
-		 (format "[%s]" (org-odt--format-timestamp timestamp))))
-	(active-range
-	 (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		 "OrgActiveTimestamp"
-		 (format "&lt;%s&gt;&#x2013;&lt;%s&gt;"
-			 (org-odt--format-timestamp timestamp)
-			 (org-odt--format-timestamp timestamp 'end))))
-	(inactive-range
-	 (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		 "OrgInactiveTimestamp"
-		 (format "[%s]&#x2013;[%s]"
-			 (org-odt--format-timestamp timestamp)
-			 (org-odt--format-timestamp timestamp 'end))))
-	(otherwise
-	 (format "<text:span text:style-name=\"%s\">%s</text:span>"
-		 "OrgDiaryTimestamp"
-		 (org-odt-plain-text (org-timestamp-translate timestamp)
-				     info)))))))
-
-
-;;;; Underline
-
-(defun org-odt-underline (_underline contents _info)
-  "Transcode UNDERLINE from Org to ODT.
-CONTENTS is the text with underline markup.  INFO is a plist
-holding contextual information."
-  (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	  "Underline" contents))
-
-
-;;;; Verbatim
-
-(defun org-odt-verbatim (verbatim _contents _info)
-  "Transcode a VERBATIM object from Org to ODT.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (format "<text:span text:style-name=\"%s\">%s</text:span>"
-	  "OrgCode" (org-odt--encode-plain-text
-		     (org-element-property :value verbatim))))
-
-
-;;;; Verse Block
-
-(defun org-odt-verse-block (_verse-block contents _info)
-  "Transcode a VERSE-BLOCK element from Org to ODT.
-CONTENTS is verse block contents.  INFO is a plist holding
-contextual information."
-  (format "\n<text:p text:style-name=\"OrgVerse\">%s</text:p>"
-	  (replace-regexp-in-string
-	   ;; Replace leading tabs and spaces.
-	   "^[ \t]+" #'org-odt--encode-tabs-and-spaces
-	   ;; Add line breaks to each line of verse.
-	   (replace-regexp-in-string
-	    "\\(<text:line-break/>\\)?[ \t]*$" "<text:line-break/>" contents))))
-
-
-
-;;; Filters
-
-;;; Images
-
-(defun org-odt--translate-image-links (data _backend info)
-  (org-export-insert-image-links data info org-odt-inline-image-rules))
-
-;;;; LaTeX fragments
-
-(defun org-odt--translate-latex-fragments (tree _backend info)
-  (let ((processing-type (plist-get info :with-latex))
-	(count 0))
-    ;; Normalize processing-type to one of dvipng, mathml or verbatim.
-    ;; If the desired converter is not available, force verbatim
-    ;; processing.
-    (cl-case processing-type
-      ((t mathml)
-       (if (and (fboundp 'org-format-latex-mathml-available-p)
-		(org-format-latex-mathml-available-p))
-	   (setq processing-type 'mathml)
-	 (message "LaTeX to MathML converter not available.")
-	 (setq processing-type 'verbatim)))
-      ((dvipng imagemagick)
-       (unless (and (org-check-external-command "latex" "" t)
-		    (org-check-external-command
-		     (if (eq processing-type 'dvipng) "dvipng" "convert") "" t))
-	 (message "LaTeX to PNG converter not available.")
-	 (setq processing-type 'verbatim)))
-      (otherwise
-       (message "Unknown LaTeX option.  Forcing verbatim.")
-       (setq processing-type 'verbatim)))
-
-    ;; Store normalized value for later use.
-    (when (plist-get info :with-latex)
-      (plist-put info :with-latex processing-type))
-    (message "Formatting LaTeX using %s" processing-type)
-
-    ;; Convert `latex-fragment's and `latex-environment's.
-    (when (memq processing-type '(mathml dvipng imagemagick))
-      (org-element-map tree '(latex-fragment latex-environment)
-	(lambda (latex-*)
-	  (cl-incf count)
-	  (let* ((latex-frag (org-element-property :value latex-*))
-		 (input-file (plist-get info :input-file))
-		 (cache-dir (file-name-directory input-file))
-		 (cache-subdir (concat
-				(cl-case processing-type
-				  ((dvipng imagemagick) "ltxpng/")
-				  (mathml "ltxmathml/"))
-				(file-name-sans-extension
-				 (file-name-nondirectory input-file))))
-		 (display-msg
-		  (cl-case processing-type
-		    ((dvipng imagemagick)
-		     (format "Creating LaTeX Image %d..." count))
-		    (mathml (format "Creating MathML snippet %d..." count))))
-		 ;; Get an Org-style link to PNG image or the MathML
-		 ;; file.
-		 (link
-		  (with-temp-buffer
-		    (insert latex-frag)
-		    ;; When converting to a PNG image, make sure to
-		    ;; copy all LaTeX header specifications from the
-		    ;; Org source.
-		    (unless (eq processing-type 'mathml)
-		      (let ((h (plist-get info :latex-header)))
-			(when h
-			  (insert "\n"
-				  (replace-regexp-in-string
-				   "^" "#+LATEX_HEADER: " h)))))
-		    (org-format-latex cache-subdir nil nil cache-dir
-				      nil display-msg nil
-				      processing-type)
-		    (goto-char (point-min))
-		    (skip-chars-forward " \t\n")
-		    (org-element-link-parser))))
-	    (if (not (eq 'link (org-element-type link)))
-		(message "LaTeX Conversion failed.")
-	      ;; Conversion succeeded.  Parse above Org-style link to
-	      ;; a `link' object.
-	      (let ((replacement
-		     (cl-case (org-element-type latex-*)
-		       ;;LaTeX environment.  Mimic a "standalone image
-		       ;; or formula" by enclosing the `link' in
-		       ;; a `paragraph'.  Copy over original
-		       ;; attributes, captions to the enclosing
-		       ;; paragraph.
-		       (latex-environment
-			(org-element-adopt-elements
-			 (list 'paragraph
-			       (list :style "OrgFormula"
-				     :name
-				     (org-element-property :name latex-*)
-				     :caption
-				     (org-element-property :caption latex-*)))
-			 link))
-		       ;; LaTeX fragment.  No special action.
-		       (latex-fragment link))))
-		;; Note down the object that link replaces.
-		(org-element-put-property replacement :replaces
-					  (list (org-element-type latex-*)
-						(list :value latex-frag)))
-		;; Restore blank after initial element or object.
-		(org-element-put-property
-		 replacement :post-blank
-		 (org-element-property :post-blank latex-*))
-		;; Replace now.
-		(org-element-set-element latex-* replacement)))))
-	info nil nil t)))
-  tree)
-
-
-;;;; Description lists
-
-;; This translator is necessary to handle indented tables in a uniform
-;; manner.  See comment in `org-odt--table'.
-
-(defun org-odt--translate-description-lists (tree _backend info)
-  ;; OpenDocument has no notion of a description list.  So simulate it
-  ;; using plain lists.  Description lists in the exported document
-  ;; are typeset in the same manner as they are in a typical HTML
-  ;; document.
-  ;;
-  ;; Specifically, a description list like this:
-  ;;
-  ;;     ,----
-  ;;     | - term-1 :: definition-1
-  ;;     | - term-2 :: definition-2
-  ;;     `----
-  ;;
-  ;; gets translated in to the following form:
-  ;;
-  ;;     ,----
-  ;;     | - term-1
-  ;;     |   - definition-1
-  ;;     | - term-2
-  ;;     |   - definition-2
-  ;;     `----
-  ;;
-  ;; Further effect is achieved by fixing the OD styles as below:
-  ;;
-  ;; 1. Set the :type property of the simulated lists to
-  ;;    `descriptive-1' and `descriptive-2'.  Map these to list-styles
-  ;;    that has *no* bullets whatsoever.
-  ;;
-  ;; 2. The paragraph containing the definition term is styled to be
-  ;;    in bold.
-  ;;
-  (org-element-map tree 'plain-list
-    (lambda (el)
-      (when (eq (org-element-property :type el) 'descriptive)
-	(org-element-set-element
-	 el
-	 (apply 'org-element-adopt-elements
-		(list 'plain-list (list :type 'descriptive-1))
-		(mapcar
-		 (lambda (item)
-		   (org-element-adopt-elements
-		    (list 'item (list :checkbox (org-element-property
-						 :checkbox item)))
-		    (list 'paragraph (list :style "Text_20_body_20_bold")
-			  (or (org-element-property :tag item) "(no term)"))
-		    (org-element-adopt-elements
-		     (list 'plain-list (list :type 'descriptive-2))
-		     (apply 'org-element-adopt-elements
-			    (list 'item nil)
-			    (org-element-contents item)))))
-		 (org-element-contents el)))))
-      nil)
-    info)
-  tree)
-
-;;;; List tables
-
-;; Lists that are marked with attribute `:list-table' are called as
-;; list tables.  They will be rendered as a table within the exported
-;; document.
-
-;; Consider an example.  The following list table
-;;
-;; #+attr_odt :list-table t
-;; - Row 1
-;;   - 1.1
-;;   - 1.2
-;;   - 1.3
-;; - Row 2
-;;   - 2.1
-;;   - 2.2
-;;   - 2.3
-;;
-;; will be exported as though it were an Org table like the one show
-;; below.
-;;
-;; | Row 1 | 1.1 | 1.2 | 1.3 |
-;; | Row 2 | 2.1 | 2.2 | 2.3 |
-;;
-;; Note that org-tables are NOT multi-line and each line is mapped to
-;; a unique row in the exported document.  So if an exported table
-;; needs to contain a single paragraph (with copious text) it needs to
-;; be typed up in a single line.  Editing such long lines using the
-;; table editor will be a cumbersome task.  Furthermore inclusion of
-;; multi-paragraph text in a table cell is well-nigh impossible.
-;;
-;; A LIST-TABLE circumvents above problems.
-;;
-;; Note that in the example above the list items could be paragraphs
-;; themselves and the list can be arbitrarily deep.
-;;
-;; Inspired by following thread:
-;; https://lists.gnu.org/r/emacs-orgmode/2011-03/msg01101.html
-
-;; Translate lists to tables
-
-(defun org-odt--translate-list-tables (tree _backend info)
-  (org-element-map tree 'plain-list
-    (lambda (l1-list)
-      (when (org-export-read-attribute :attr_odt l1-list :list-table)
-	;; Replace list with table.
-	(org-element-set-element
-	 l1-list
-	 ;; Build replacement table.
-	 (apply 'org-element-adopt-elements
-		(list 'table '(:type org :attr_odt (":style \"GriddedTable\"")))
-		(org-element-map l1-list 'item
-		  (lambda (l1-item)
-		    (let* ((l1-item-contents (org-element-contents l1-item))
-			   l1-item-leading-text l2-list)
-		      ;; Remove Level-2 list from the Level-item.  It
-		      ;; will be subsequently attached as table-cells.
-		      (let ((cur l1-item-contents) prev)
-			(while (and cur (not (eq (org-element-type (car cur))
-						 'plain-list)))
-			  (setq prev cur)
-			  (setq cur (cdr cur)))
-			(when prev
-			  (setcdr prev nil)
-			  (setq l2-list (car cur)))
-			(setq l1-item-leading-text l1-item-contents))
-		      ;; Level-1 items start a table row.
-		      (apply 'org-element-adopt-elements
-			     (list 'table-row (list :type 'standard))
-			     ;;  Leading text of level-1 item define
-			     ;;  the first table-cell.
-			     (apply 'org-element-adopt-elements
-				    (list 'table-cell nil)
-				    l1-item-leading-text)
-			     ;; Level-2 items define subsequent
-			     ;; table-cells of the row.
-			     (org-element-map l2-list 'item
-			       (lambda (l2-item)
-				 (apply 'org-element-adopt-elements
-					(list 'table-cell nil)
-					(org-element-contents l2-item)))
-			       info nil 'item))))
-		  info nil 'item))))
-      nil)
-    info)
-  tree)
-
-
-;;; Interactive functions
-
-(defun org-odt-create-manifest-file-entry (&rest args)
-  (push args org-odt-manifest-file-entries))
-
-(defun org-odt-write-manifest-file ()
-  (make-directory (concat org-odt-zip-dir "META-INF"))
-  (let ((manifest-file (concat org-odt-zip-dir "META-INF/manifest.xml")))
-    (with-current-buffer
-	(let ((nxml-auto-insert-xml-declaration-flag nil))
-	  (find-file-noselect manifest-file t))
-      (insert
-       "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
-     <manifest:manifest xmlns:manifest=\"urn:oasis:names:tc:opendocument:xmlns:manifest:1.0\" manifest:version=\"1.2\">\n")
-      (dolist (file-entry org-odt-manifest-file-entries)
-	(let* ((version (nth 2 file-entry))
-	       (extra (if (not version) ""
-			(format " manifest:version=\"%s\"" version))))
-	  (insert
-	   (format org-odt-manifest-file-entry-tag
-		   (nth 0 file-entry) (nth 1 file-entry) extra))))
-      (insert "\n</manifest:manifest>"))))
-
-(defmacro org-odt--export-wrap (out-file &rest body)
-  `(let* ((--out-file ,out-file)
-	  (out-file-type (file-name-extension --out-file))
-	  (org-odt-xml-files '("META-INF/manifest.xml" "content.xml"
-			       "meta.xml" "styles.xml"))
-	  ;; Initialize temporary workarea.  All files that end up in
-	  ;; the exported document get parked/created here.
-	  (org-odt-zip-dir (file-name-as-directory
-			    (make-temp-file (format "%s-" out-file-type) t)))
-	  (org-odt-manifest-file-entries nil)
-	  (--cleanup-xml-buffers
-	   (lambda ()
-	     ;; Kill all XML buffers.
-	     (dolist (file org-odt-xml-files)
-	       (let ((buf (find-buffer-visiting
-			   (concat org-odt-zip-dir file))))
-		 (when buf
-		   (with-current-buffer buf
-		     (set-buffer-modified-p nil)
-		     (kill-buffer buf)))))
-	     ;; Delete temporary directory and also other embedded
-	     ;; files that get copied there.
-	     (delete-directory org-odt-zip-dir t))))
-     (condition-case err
-	 (progn
-	   (unless (executable-find "zip")
-	     ;; Not at all OSes ship with zip by default
-	     (error "Executable \"zip\" needed for creating OpenDocument files"))
-	   ;; Do export.  This creates a bunch of xml files ready to be
-	   ;; saved and zipped.
-	   (progn ,@body)
-	   ;; Create a manifest entry for content.xml.
-	   (org-odt-create-manifest-file-entry "text/xml" "content.xml")
-	   ;; Write mimetype file
-	   (let* ((mimetypes
-		   '(("odt" . "application/vnd.oasis.opendocument.text")
-		     ("odf" .  "application/vnd.oasis.opendocument.formula")))
-		  (mimetype (cdr (assoc-string out-file-type mimetypes t))))
-	     (unless mimetype
-	       (error "Unknown OpenDocument backend %S" out-file-type))
-	     (write-region mimetype nil (concat org-odt-zip-dir "mimetype"))
-	     (org-odt-create-manifest-file-entry mimetype "/" "1.2"))
-	   ;; Write out the manifest entries before zipping
-	   (org-odt-write-manifest-file)
-	   ;; Save all XML files.
-	   (dolist (file org-odt-xml-files)
-	     (let ((buf (find-buffer-visiting
-			 (concat org-odt-zip-dir file))))
-	       (when buf
-		 (with-current-buffer buf
-		   ;; Prettify output if needed.
-		   (when org-odt-prettify-xml
-		     (indent-region (point-min) (point-max)))
-		   (save-buffer 0)))))
-	   ;; Run zip.
-	   (let* ((target --out-file)
-		  (target-name (file-name-nondirectory target))
-		  (cmds `(("zip" "-mX0" ,target-name "mimetype")
-			  ("zip" "-rmTq" ,target-name "."))))
-	     ;; If a file with same name as the desired output file
-	     ;; exists, remove it.
-	     (when (file-exists-p target)
-	       (delete-file target))
-	     ;; Zip up the xml files.
-	     (let ((coding-system-for-write 'no-conversion) exitcode err-string)
-	       (message "Creating ODT file...")
-	       ;; Switch temporarily to content.xml.  This way Zip
-	       ;; process will inherit `org-odt-zip-dir' as the current
-	       ;; directory.
-	       (with-current-buffer
-		   (find-file-noselect (concat org-odt-zip-dir "content.xml") t)
-		 (dolist (cmd cmds)
-		   (message "Running %s" (mapconcat 'identity cmd " "))
-		   (setq err-string
-			 (with-output-to-string
-			   (setq exitcode
-				 (apply 'call-process (car cmd)
-					nil standard-output nil (cdr cmd)))))
-		   (or (zerop exitcode)
-		       (error (concat "Unable to create OpenDocument file."
-				      "  Zip failed with error (%s)")
-			      err-string)))))
-	     ;; Move the zip file from temporary work directory to
-	     ;; user-mandated location.
-	     (rename-file (concat org-odt-zip-dir target-name) target)
-	     (message "Created %s" (expand-file-name target))
-	     ;; Cleanup work directory and work files.
-	     (funcall --cleanup-xml-buffers)
-	     ;; Open the OpenDocument file in archive-mode for
-	     ;; examination.
-	     (find-file-noselect target t)
-	     ;; Return exported file.
-	     (cond
-	      ;; Case 1: Conversion desired on exported file.  Run the
-	      ;; converter on the OpenDocument file.  Return the
-	      ;; converted file.
-	      (org-odt-preferred-output-format
-	       (or (org-odt-convert target org-odt-preferred-output-format)
-		   target))
-	      ;; Case 2: No further conversion.  Return exported
-	      ;; OpenDocument file.
-	      (t target))))
-       (error
-	;; Cleanup work directory and work files.
-	(funcall --cleanup-xml-buffers)
-	(message "OpenDocument export failed: %s"
-		 (error-message-string err))))))
-
-
-;;;; Export to OpenDocument formula
-
-;;;###autoload
-(defun org-odt-export-as-odf (latex-frag &optional odf-file)
-  "Export LATEX-FRAG as OpenDocument formula file ODF-FILE.
-Use `org-create-math-formula' to convert LATEX-FRAG first to
-MathML.  When invoked as an interactive command, use
-`org-latex-regexps' to infer LATEX-FRAG from currently active
-region.  If no LaTeX fragments are found, prompt for it.  Push
-MathML source to kill ring depending on the value of
-`org-export-copy-to-kill-ring'."
-  (interactive
-   `(,(let (frag)
-	(setq frag (and (setq frag (and (region-active-p)
-					(buffer-substring (region-beginning)
-							  (region-end))))
-			(cl-loop for e in org-latex-regexps
-				 thereis (when (string-match (nth 1 e) frag)
-					   (match-string (nth 2 e) frag)))))
-	(read-string "LaTeX Fragment: " frag nil frag))
-     ,(let ((odf-filename (expand-file-name
-			   (concat
-			    (file-name-sans-extension
-			     (or (file-name-nondirectory buffer-file-name)))
-			    "." "odf")
-			   (file-name-directory buffer-file-name))))
-	(read-file-name "ODF filename: " nil odf-filename nil
-			(file-name-nondirectory odf-filename)))))
-  (let ((filename (or odf-file
-		      (expand-file-name
-		       (concat
-			(file-name-sans-extension
-			 (or (file-name-nondirectory buffer-file-name)))
-			"." "odf")
-		       (file-name-directory buffer-file-name)))))
-    (org-odt--export-wrap
-     filename
-     (let* ((buffer (progn
-		      (require 'nxml-mode)
-		      (let ((nxml-auto-insert-xml-declaration-flag nil))
-			(find-file-noselect (concat org-odt-zip-dir
-						    "content.xml") t))))
-	    (coding-system-for-write 'utf-8)
-	    (save-buffer-coding-system 'utf-8))
-       (set-buffer buffer)
-       (set-buffer-file-coding-system coding-system-for-write)
-       (let ((mathml (org-create-math-formula latex-frag)))
-	 (unless mathml (error "No Math formula created"))
-	 (insert mathml)
-	 ;; Add MathML to kill ring, if needed.
-	 (when (org-export--copy-to-kill-ring-p)
-	   (org-kill-new (buffer-string))))))))
-
-;;;###autoload
-(defun org-odt-export-as-odf-and-open ()
-  "Export LaTeX fragment as OpenDocument formula and immediately open it.
-Use `org-odt-export-as-odf' to read LaTeX fragment and OpenDocument
-formula file."
-  (interactive)
-  (org-open-file (call-interactively 'org-odt-export-as-odf) 'system))
-
-
-;;;; Export to OpenDocument Text
-
-;;;###autoload
-(defun org-odt-export-to-odt (&optional async subtreep visible-only ext-plist)
-  "Export current buffer to a ODT file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".odt" subtreep)))
-    (if async
-	(org-export-async-start (lambda (f) (org-export-add-to-stack f 'odt))
-	  `(expand-file-name
-	    (org-odt--export-wrap
-	     ,outfile
-	     (let* ((org-odt-embedded-images-count 0)
-		    (org-odt-embedded-formulas-count 0)
-		    (org-odt-automatic-styles nil)
-		    (org-odt-object-counters nil)
-		    ;; Let `htmlfontify' know that we are interested in
-		    ;; collecting styles.
-		    (hfy-user-sheet-assoc nil))
-	       ;; Initialize content.xml and kick-off the export
-	       ;; process.
-	       (let ((out-buf
-		      (progn
-			(require 'nxml-mode)
-			(let ((nxml-auto-insert-xml-declaration-flag nil))
-			  (find-file-noselect
-			   (concat org-odt-zip-dir "content.xml") t))))
-		     (output (org-export-as
-			      'odt ,subtreep ,visible-only nil ,ext-plist)))
-		 (with-current-buffer out-buf
-		   (erase-buffer)
-		   (insert output)))))))
-      (org-odt--export-wrap
-       outfile
-       (let* ((org-odt-embedded-images-count 0)
-	      (org-odt-embedded-formulas-count 0)
-	      (org-odt-automatic-styles nil)
-	      (org-odt-object-counters nil)
-	      ;; Let `htmlfontify' know that we are interested in collecting
-	      ;; styles.
-	      (hfy-user-sheet-assoc nil))
-	 ;; Initialize content.xml and kick-off the export process.
-	 (let ((output (org-export-as 'odt subtreep visible-only nil ext-plist))
-	       (out-buf (progn
-			  (require 'nxml-mode)
-			  (let ((nxml-auto-insert-xml-declaration-flag nil))
-			    (find-file-noselect
-			     (concat org-odt-zip-dir "content.xml") t)))))
-	   (with-current-buffer out-buf (erase-buffer) (insert output))))))))
-
-
-;;;; Convert between OpenDocument and other formats
-
-(defun org-odt-reachable-p (in-fmt out-fmt)
-  "Return non-nil if IN-FMT can be converted to OUT-FMT."
-  (catch 'done
-    (let ((reachable-formats (org-odt-do-reachable-formats in-fmt)))
-      (dolist (e reachable-formats)
-	(let ((out-fmt-spec (assoc out-fmt (cdr e))))
-	  (when out-fmt-spec
-	    (throw 'done (cons (car e) out-fmt-spec))))))))
-
-(defun org-odt-do-convert (in-file out-fmt &optional open)
-  "Workhorse routine for `org-odt-convert'."
-  (require 'browse-url)
-  (let* ((in-file (let ((f (expand-file-name (or in-file buffer-file-name))))
-		    (if (file-readable-p f) f
-		      (error "Cannot read %s" in-file))))
-	 (in-fmt (file-name-extension in-file))
-	 (out-fmt (or out-fmt (error "Output format unspecified")))
-	 (how (or (org-odt-reachable-p in-fmt out-fmt)
-		  (error "Cannot convert from %s format to %s format?"
-			 in-fmt out-fmt)))
-	 (convert-process (car how))
-	 (out-file (concat (file-name-sans-extension in-file) "."
-			   (nth 1 (or (cdr how) out-fmt))))
-	 (extra-options (or (nth 2 (cdr how)) ""))
-	 (out-dir (file-name-directory in-file))
-	 (cmd (format-spec convert-process
-			   `((?i . ,(shell-quote-argument in-file))
-			     (?I . ,(browse-url-file-url in-file))
-			     (?f . ,out-fmt)
-			     (?o . ,out-file)
-			     (?O . ,(browse-url-file-url out-file))
-			     (?d . , (shell-quote-argument out-dir))
-			     (?D . ,(browse-url-file-url out-dir))
-			     (?x . ,extra-options)))))
-    (when (file-exists-p out-file)
-      (delete-file out-file))
-
-    (message "Executing %s" cmd)
-    (let ((cmd-output (shell-command-to-string cmd)))
-      (message "%s" cmd-output))
-
-    (cond
-     ((file-exists-p out-file)
-      (message "Exported to %s" out-file)
-      (when open
-	(message "Opening %s..."  out-file)
-	(org-open-file out-file 'system))
-      out-file)
-     (t
-      (message "Export to %s failed" out-file)
-      nil))))
-
-(defun org-odt-do-reachable-formats (in-fmt)
-  "Return verbose info about formats to which IN-FMT can be converted.
-Return a list where each element is of the
-form (CONVERTER-PROCESS . OUTPUT-FMT-ALIST).  See
-`org-odt-convert-processes' for CONVERTER-PROCESS and see
-`org-odt-convert-capabilities' for OUTPUT-FMT-ALIST."
-  (let* ((converter
-	  (and org-odt-convert-process
-	       (cadr (assoc-string org-odt-convert-process
-				   org-odt-convert-processes t))))
-	 (capabilities
-	  (and org-odt-convert-process
-	       (cadr (assoc-string org-odt-convert-process
-				   org-odt-convert-processes t))
-	       org-odt-convert-capabilities))
-	 reachable-formats)
-    (when converter
-      (dolist (c capabilities)
-	(when (member in-fmt (nth 1 c))
-	  (push (cons converter (nth 2 c)) reachable-formats))))
-    reachable-formats))
-
-(defun org-odt-reachable-formats (in-fmt)
-  "Return list of formats to which IN-FMT can be converted.
-The list of the form (OUTPUT-FMT-1 OUTPUT-FMT-2 ...)."
-  (copy-sequence
-   (apply #'append (mapcar
-		    (lambda (e) (mapcar #'car (cdr e)))
-		    (org-odt-do-reachable-formats in-fmt)))))
-
-(defun org-odt-convert-read-params ()
-  "Return IN-FILE and OUT-FMT params for `org-odt-do-convert'.
-This is a helper routine for interactive use."
-  (let* ((input (if (featurep 'ido) 'ido-completing-read 'completing-read))
-	 (in-file (read-file-name "File to be converted: "
-				  nil buffer-file-name t))
-	 (in-fmt (file-name-extension in-file))
-	 (out-fmt-choices (org-odt-reachable-formats in-fmt))
-	 (out-fmt
-	  (or (and out-fmt-choices
-		   (funcall input "Output format: "
-			    out-fmt-choices nil nil nil))
-	      (error
-	       "No known converter or no known output formats for %s files"
-	       in-fmt))))
-    (list in-file out-fmt)))
-
-;;;###autoload
-(defun org-odt-convert (&optional in-file out-fmt open)
-  "Convert IN-FILE to format OUT-FMT using a command line converter.
-IN-FILE is the file to be converted.  If unspecified, it defaults
-to variable `buffer-file-name'.  OUT-FMT is the desired output
-format.  Use `org-odt-convert-process' as the converter.  If OPEN
-is non-nil then the newly converted file is opened using
-`org-open-file'."
-  (interactive
-   (append (org-odt-convert-read-params) current-prefix-arg))
-  (org-odt-do-convert in-file out-fmt open))
-
-;;; Library Initializations
-
-(dolist (desc org-odt-file-extensions)
-  ;; Let Emacs open all OpenDocument files in archive mode.
-  (add-to-list 'auto-mode-alist
-	       (cons (concat  "\\." (car desc) "\\'") 'archive-mode)))
-
-(provide 'ox-odt)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-odt.el ends here
diff --git a/elpa/org-9.1.14/ox-odt.elc b/elpa/org-9.1.14/ox-odt.elc
deleted file mode 100644
index 1e5a615..0000000
--- a/elpa/org-9.1.14/ox-odt.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-org.el b/elpa/org-9.1.14/ox-org.el
deleted file mode 100644
index 1b5a7cc..0000000
--- a/elpa/org-9.1.14/ox-org.el
+++ /dev/null
@@ -1,353 +0,0 @@
-;;; ox-org.el --- Org Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <n.goaziou@gmail.com>
-;; Keywords: org, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;;; Code:
-
-(require 'ox)
-(declare-function htmlize-buffer "ext:htmlize" (&optional buffer))
-(defvar htmlize-output-type)
-
-(defgroup org-export-org nil
-  "Options for exporting Org mode files to Org."
-  :tag "Org Export Org"
-  :group 'org-export
-  :version "24.4"
-  :package-version '(Org . "8.0"))
-
-(defcustom org-org-htmlized-css-url nil
-  "URL pointing to the CSS defining colors for htmlized Emacs buffers.
-Normally when creating an htmlized version of an Org buffer,
-htmlize will create the CSS to define the font colors.  However,
-this does not work when converting in batch mode, and it also can
-look bad if different people with different fontification setup
-work on the same website.  When this variable is non-nil,
-creating an htmlized version of an Org buffer using
-`org-org-export-as-org' will include a link to this URL if the
-setting of `org-html-htmlize-output-type' is `css'."
-  :group 'org-export-org
-  :type '(choice
-	  (const :tag "Don't include external stylesheet link" nil)
-	  (string :tag "URL or local href")))
-
-(org-export-define-backend 'org
-  '((babel-call . org-org-identity)
-    (bold . org-org-identity)
-    (center-block . org-org-identity)
-    (clock . org-org-identity)
-    (code . org-org-identity)
-    (diary-sexp . org-org-identity)
-    (drawer . org-org-identity)
-    (dynamic-block . org-org-identity)
-    (entity . org-org-identity)
-    (example-block . org-org-identity)
-    (export-block . org-org-export-block)
-    (fixed-width . org-org-identity)
-    (footnote-definition . ignore)
-    (footnote-reference . org-org-identity)
-    (headline . org-org-headline)
-    (horizontal-rule . org-org-identity)
-    (inline-babel-call . org-org-identity)
-    (inline-src-block . org-org-identity)
-    (inlinetask . org-org-identity)
-    (italic . org-org-identity)
-    (item . org-org-identity)
-    (keyword . org-org-keyword)
-    (latex-environment . org-org-identity)
-    (latex-fragment . org-org-identity)
-    (line-break . org-org-identity)
-    (link . org-org-link)
-    (node-property . org-org-identity)
-    (template . org-org-template)
-    (paragraph . org-org-identity)
-    (plain-list . org-org-identity)
-    (planning . org-org-identity)
-    (property-drawer . org-org-identity)
-    (quote-block . org-org-identity)
-    (radio-target . org-org-identity)
-    (section . org-org-section)
-    (special-block . org-org-identity)
-    (src-block . org-org-identity)
-    (statistics-cookie . org-org-identity)
-    (strike-through . org-org-identity)
-    (subscript . org-org-identity)
-    (superscript . org-org-identity)
-    (table . org-org-identity)
-    (table-cell . org-org-identity)
-    (table-row . org-org-identity)
-    (target . org-org-identity)
-    (timestamp . org-org-identity)
-    (underline . org-org-identity)
-    (verbatim . org-org-identity)
-    (verse-block . org-org-identity))
-  :menu-entry
-  '(?O "Export to Org"
-       ((?O "As Org buffer" org-org-export-as-org)
-	(?o "As Org file" org-org-export-to-org)
-	(?v "As Org file and open"
-	    (lambda (a s v b)
-	      (if a (org-org-export-to-org t s v b)
-		(org-open-file (org-org-export-to-org nil s v b)))))))
-  :filters-alist '((:filter-parse-tree . org-org--add-missing-sections)))
-
-(defun org-org--add-missing-sections (tree _backend _info)
-  "Ensure each headline has an associated section.
-
-TREE is the parse tree being exported.
-
-Footnotes relative to the headline are inserted in the section,
-using `org-org-section'.  However, this function is not called if
-the headline doesn't contain any section in the first place, so
-we make sure it is always called."
-  (org-element-map tree 'headline
-    (lambda (h)
-      (let ((first-child (car (org-element-contents h)))
-	    (new-section (org-element-create 'section)))
-	(pcase (org-element-type first-child)
-	  (`section nil)
-	  (`nil (org-element-adopt-elements h new-section))
-	  (_ (org-element-insert-before new-section first-child))))))
-  tree)
-
-(defun org-org-export-block (export-block _contents _info)
-  "Transcode a EXPORT-BLOCK element from Org to LaTeX.
-CONTENTS and INFO are ignored."
-  (and (equal (org-element-property :type export-block) "ORG")
-       (org-element-property :value export-block)))
-
-(defun org-org-identity (blob contents _info)
-  "Transcode BLOB element or object back into Org syntax.
-CONTENTS is its contents, as a string or nil.  INFO is ignored."
-  (let ((case-fold-search t))
-    (replace-regexp-in-string
-     "^[ \t]*#\\+ATTR_[-_A-Za-z0-9]+:\\(?: .*\\)?\n" ""
-     (org-export-expand blob contents t))))
-
-(defun org-org-headline (headline contents info)
-  "Transcode HEADLINE element back into Org syntax.
-CONTENTS is its contents, as a string or nil.  INFO is ignored."
-  (unless (org-element-property :footnote-section-p headline)
-    (unless (plist-get info :with-todo-keywords)
-      (org-element-put-property headline :todo-keyword nil))
-    (unless (plist-get info :with-tags)
-      (org-element-put-property headline :tags nil))
-    (unless (plist-get info :with-priority)
-      (org-element-put-property headline :priority nil))
-    (org-element-put-property headline :level
-			      (org-export-get-relative-level headline info))
-    (org-element-headline-interpreter headline contents)))
-
-(defun org-org-keyword (keyword _contents _info)
-  "Transcode KEYWORD element back into Org syntax.
-CONTENTS is nil.  INFO is ignored."
-  (let ((key (org-element-property :key keyword)))
-    (unless (member key
-		    '("AUTHOR" "CREATOR" "DATE" "EMAIL" "OPTIONS" "TITLE"))
-      (org-element-keyword-interpreter keyword nil))))
-
-(defun org-org-link (link contents _info)
-  "Transcode LINK object back into Org syntax.
-CONTENTS is the description of the link, as a string, or nil.
-INFO is a plist containing current export state."
-  (or (org-export-custom-protocol-maybe link contents 'org)
-      (org-element-link-interpreter link contents)))
-
-(defun org-org-template (contents info)
-  "Return Org document template with document keywords.
-CONTENTS is the transcoded contents string.  INFO is a plist used
-as a communication channel."
-  (concat
-   (and (plist-get info :time-stamp-file)
-	(format-time-string "# Created %Y-%m-%d %a %H:%M\n"))
-   (org-element-normalize-string
-    (mapconcat #'identity
-	       (org-element-map (plist-get info :parse-tree) 'keyword
-		 (lambda (k)
-		   (and (string-equal (org-element-property :key k) "OPTIONS")
-			(concat "#+OPTIONS: "
-				(org-element-property :value k)))))
-	       "\n"))
-   (and (plist-get info :with-title)
-	(format "#+TITLE: %s\n" (org-export-data (plist-get info :title) info)))
-   (and (plist-get info :with-date)
-	(let ((date (org-export-data (org-export-get-date info) info)))
-	  (and (org-string-nw-p date)
-	       (format "#+DATE: %s\n" date))))
-   (and (plist-get info :with-author)
-	(let ((author (org-export-data (plist-get info :author) info)))
-	  (and (org-string-nw-p author)
-	       (format "#+AUTHOR: %s\n" author))))
-   (and (plist-get info :with-email)
-	(let ((email (org-export-data (plist-get info :email) info)))
-	  (and (org-string-nw-p email)
-	       (format "#+EMAIL: %s\n" email))))
-   (and (plist-get info :with-creator)
-	(org-string-nw-p (plist-get info :creator))
-	(format "#+CREATOR: %s\n" (plist-get info :creator)))
-   contents))
-
-(defun org-org-section (section contents info)
-  "Transcode SECTION element back into Org syntax.
-CONTENTS is the contents of the section.  INFO is a plist used as
-a communication channel."
-  (concat
-   (org-element-normalize-string contents)
-   ;; Insert footnote definitions appearing for the first time in this
-   ;; section, or in the relative headline title.  Indeed, some of
-   ;; them may not be available to narrowing so we make sure all of
-   ;; them are included in the result.
-   (let ((footnotes
-	  (org-element-map
-	      (list (org-export-get-parent-headline section) section)
-	      'footnote-reference
-	    (lambda (fn)
-	      (and (eq (org-element-property :type fn) 'standard)
-		   (org-export-footnote-first-reference-p fn info)
-		   (org-element-normalize-string
-		    (format "[fn:%s] %s"
-			    (org-element-property :label fn)
-			    (org-export-data
-			     (org-export-get-footnote-definition fn info)
-			     info)))))
-	    info nil 'headline t)))
-     (and footnotes (concat "\n" (mapconcat #'identity footnotes "\n"))))))
-
-;;;###autoload
-(defun org-org-export-as-org
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to an Org buffer.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should be accessible
-through the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, strip document
-keywords from output.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Export is done in a buffer named \"*Org ORG Export*\", which will
-be displayed when `org-export-show-temporary-export-buffer' is
-non-nil."
-  (interactive)
-  (org-export-to-buffer 'org "*Org ORG Export*"
-    async subtreep visible-only body-only ext-plist (lambda () (org-mode))))
-
-;;;###autoload
-(defun org-org-export-to-org
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to an org file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, strip document
-keywords from output.
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file name."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".org" subtreep)))
-    (org-export-to-file 'org outfile
-      async subtreep visible-only body-only ext-plist)))
-
-;;;###autoload
-(defun org-org-publish-to-org (plist filename pub-dir)
-  "Publish an org file to org.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to 'org filename ".org" plist pub-dir)
-  (when (plist-get plist :htmlized-source)
-    (or (require 'htmlize nil t)
-	(error "Please install htmlize from https://github.com/hniksic/emacs-htmlize"))
-    (require 'ox-html)
-    (let* ((org-inhibit-startup t)
-	   (htmlize-output-type 'css)
-	   (html-ext (concat "." (or (plist-get plist :html-extension)
-				     org-html-extension "html")))
-	   (visitingp (find-buffer-visiting filename))
-	   (work-buffer (or visitingp (find-file-noselect filename)))
-	   newbuf)
-      (with-current-buffer work-buffer
-        (org-font-lock-ensure)
-        (outline-show-all)
-        (org-show-block-all)
-        (setq newbuf (htmlize-buffer)))
-      (with-current-buffer newbuf
-	(when org-org-htmlized-css-url
-	  (goto-char (point-min))
-	  (and (re-search-forward
-		"<style type=\"text/css\">[^\000]*?\n[ \t]*</style>.*" nil t)
-	       (replace-match
-		(format
-		 "<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\">"
-		 org-org-htmlized-css-url)
-                t t)))
-	(write-file (concat pub-dir (file-name-nondirectory filename) html-ext)))
-      (kill-buffer newbuf)
-      (unless visitingp (kill-buffer work-buffer)))
-    ;; FIXME: Why?  Which buffer is this supposed to apply to?
-    (set-buffer-modified-p nil)))
-
-
-(provide 'ox-org)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-org.el ends here
diff --git a/elpa/org-9.1.14/ox-org.elc b/elpa/org-9.1.14/ox-org.elc
deleted file mode 100644
index 60a3018..0000000
--- a/elpa/org-9.1.14/ox-org.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-publish.el b/elpa/org-9.1.14/ox-publish.el
deleted file mode 100644
index 8901dba..0000000
--- a/elpa/org-9.1.14/ox-publish.el
+++ /dev/null
@@ -1,1361 +0,0 @@
-;;; ox-publish.el --- Publish Related Org Mode Files as a Website -*- lexical-binding: t; -*-
-;; Copyright (C) 2006-2018 Free Software Foundation, Inc.
-
-;; Author: David O'Toole <dto@gnu.org>
-;; Maintainer: Carsten Dominik <carsten DOT dominik AT gmail DOT com>
-;; Keywords: hypermedia, outlines, wp
-
-;; This file is part of GNU Emacs.
-;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This program allow configurable publishing of related sets of
-;; Org mode files as a complete website.
-;;
-;; ox-publish.el can do the following:
-;;
-;; + Publish all one's Org files to a given export back-end
-;; + Upload HTML, images, attachments and other files to a web server
-;; + Exclude selected private pages from publishing
-;; + Publish a clickable sitemap of pages
-;; + Manage local timestamps for publishing only changed files
-;; + Accept plugin functions to extend range of publishable content
-;;
-;; Documentation for publishing is in the manual.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'format-spec)
-(require 'ox)
-
-
-
-;;; Variables
-
-;; Here, so you find the variable right before it's used the first time:
-(defvar org-publish-cache nil
-  "This will cache timestamps and titles for files in publishing projects.
-Blocks could hash sha1 values here.")
-
-(defvar org-publish-after-publishing-hook nil
-  "Hook run each time a file is published.
-Every function in this hook will be called with two arguments:
-the name of the original file and the name of the file
-produced.")
-
-(defgroup org-export-publish nil
-  "Options for publishing a set of files."
-  :tag "Org Publishing"
-  :group 'org-export)
-
-(defcustom org-publish-project-alist nil
-  "Association list to control publishing behavior.
-\\<org-mode-map>
-Each element of the alist is a publishing project.  The car of
-each element is a string, uniquely identifying the project.  The
-cdr of each element is in one of the following forms:
-
-1. A well-formed property list with an even number of elements,
-   alternating keys and values, specifying parameters for the
-   publishing process.
-
-     (:property value :property value ... )
-
-2. A meta-project definition, specifying of a list of
-   sub-projects:
-
-     (:components (\"project-1\" \"project-2\" ...))
-
-When the CDR of an element of org-publish-project-alist is in
-this second form, the elements of the list after `:components'
-are taken to be components of the project, which group together
-files requiring different publishing options.  When you publish
-such a project with `\\[org-publish]', the components all publish.
-
-When a property is given a value in `org-publish-project-alist',
-its setting overrides the value of the corresponding user
-variable (if any) during publishing.  However, options set within
-a file override everything.
-
-Most properties are optional, but some should always be set:
-
-  `:base-directory'
-
-    Directory containing publishing source files.
-
-  `:base-extension'
-
-    Extension (without the dot!) of source files.  This can be
-    a regular expression.  If not given, \"org\" will be used as
-    default extension.  If it is `any', include all the files,
-    even without extension.
-
-  `:publishing-directory'
-
-    Directory (possibly remote) where output files will be
-    published.
-
-If `:recursive' is non-nil files in sub-directories of
-`:base-directory' are considered.
-
-The `:exclude' property may be used to prevent certain files from
-being published.  Its value may be a string or regexp matching
-file names you don't want to be published.
-
-The `:include' property may be used to include extra files.  Its
-value may be a list of filenames to include.  The filenames are
-considered relative to the base directory.
-
-When both `:include' and `:exclude' properties are given values,
-the exclusion step happens first.
-
-One special property controls which back-end function to use for
-publishing files in the project.  This can be used to extend the
-set of file types publishable by `org-publish', as well as the
-set of output formats.
-
-  `:publishing-function'
-
-    Function to publish file.  Each back-end may define its
-    own (i.e. `org-latex-publish-to-pdf',
-    `org-html-publish-to-html').  May be a list of functions, in
-    which case each function in the list is invoked in turn.
-
-Another property allows you to insert code that prepares
-a project for publishing.  For example, you could call GNU Make
-on a certain makefile, to ensure published files are built up to
-date.
-
-  `:preparation-function'
-
-    Function to be called before publishing this project.  This
-    may also be a list of functions.  Preparation functions are
-    called with the project properties list as their sole
-    argument.
-
-  `:completion-function'
-
-    Function to be called after publishing this project.  This
-    may also be a list of functions.  Completion functions are
-    called with the project properties list as their sole
-    argument.
-
-Some properties control details of the Org publishing process,
-and are equivalent to the corresponding user variables listed in
-the right column.  Back-end specific properties may also be
-included.  See the back-end documentation for more information.
-
-  :author                   `user-full-name'
-  :creator                  `org-export-creator-string'
-  :email                    `user-mail-address'
-  :exclude-tags             `org-export-exclude-tags'
-  :headline-levels          `org-export-headline-levels'
-  :language                 `org-export-default-language'
-  :preserve-breaks          `org-export-preserve-breaks'
-  :section-numbers          `org-export-with-section-numbers'
-  :select-tags              `org-export-select-tags'
-  :time-stamp-file          `org-export-time-stamp-file'
-  :with-archived-trees      `org-export-with-archived-trees'
-  :with-author              `org-export-with-author'
-  :with-creator             `org-export-with-creator'
-  :with-date                `org-export-with-date'
-  :with-drawers             `org-export-with-drawers'
-  :with-email               `org-export-with-email'
-  :with-emphasize           `org-export-with-emphasize'
-  :with-entities            `org-export-with-entities'
-  :with-fixed-width         `org-export-with-fixed-width'
-  :with-footnotes           `org-export-with-footnotes'
-  :with-inlinetasks         `org-export-with-inlinetasks'
-  :with-latex               `org-export-with-latex'
-  :with-planning            `org-export-with-planning'
-  :with-priority            `org-export-with-priority'
-  :with-properties          `org-export-with-properties'
-  :with-smart-quotes        `org-export-with-smart-quotes'
-  :with-special-strings     `org-export-with-special-strings'
-  :with-statistics-cookies' `org-export-with-statistics-cookies'
-  :with-sub-superscript     `org-export-with-sub-superscripts'
-  :with-toc                 `org-export-with-toc'
-  :with-tables              `org-export-with-tables'
-  :with-tags                `org-export-with-tags'
-  :with-tasks               `org-export-with-tasks'
-  :with-timestamps          `org-export-with-timestamps'
-  :with-title               `org-export-with-title'
-  :with-todo-keywords       `org-export-with-todo-keywords'
-
-The following properties may be used to control publishing of
-a site-map of files or summary page for a given project.
-
-  `:auto-sitemap'
-
-    Whether to publish a site-map during
-    `org-publish-current-project' or `org-publish-all'.
-
-  `:sitemap-filename'
-
-    Filename for output of site-map.  Defaults to \"sitemap.org\".
-
-  `:sitemap-title'
-
-    Title of site-map page.  Defaults to name of file.
-
-  `:sitemap-style'
-
-    Can be `list' (site-map is just an itemized list of the
-    titles of the files involved) or `tree' (the directory
-    structure of the source files is reflected in the site-map).
-    Defaults to `tree'.
-
-  `:sitemap-format-entry'
-
-    Plugin function used to format entries in the site-map.  It
-    is called with three arguments: the file or directory name
-    relative to base directory, the site map style and the
-    current project.  It has to return a string.
-
-    Defaults to `org-publish-sitemap-default-entry', which turns
-    file names into links and use document titles as
-    descriptions.  For specific formatting needs, one can use
-    `org-publish-find-date', `org-publish-find-title' and
-    `org-publish-find-property', to retrieve additional
-    information about published documents.
-
-  `:sitemap-function'
-
-    Plugin function to use for generation of site-map.  It is
-    called with two arguments: the title of the site-map, as
-    a string, and a representation of the files involved in the
-    project, as returned by `org-list-to-lisp'.  The latter can
-    further be transformed using `org-list-to-generic',
-    `org-list-to-subtree' and alike.  It has to return a string.
-
-    Defaults to `org-publish-sitemap-default', which generates
-    a plain list of links to all files in the project.
-
-If you create a site-map file, adjust the sorting like this:
-
-  `:sitemap-sort-folders'
-
-    Where folders should appear in the site-map.  Set this to
-    `first' or `last' to display folders first or last,
-    respectively.  When set to `ignore' (default), folders are
-    ignored altogether.  Any other value will mix files and
-    folders.  This variable has no effect when site-map style is
-    `tree'.
-
-  `:sitemap-sort-files'
-
-    The site map is normally sorted alphabetically.  You can
-    change this behavior setting this to `anti-chronologically',
-    `chronologically', or nil.
-
-  `:sitemap-ignore-case'
-
-    Should sorting be case-sensitive?  Default nil.
-
-The following property control the creation of a concept index.
-
-  `:makeindex'
-
-    Create a concept index.  The file containing the index has to
-    be called \"theindex.org\".  If it doesn't exist in the
-    project, it will be generated.  Contents of the index are
-    stored in the file \"theindex.inc\", which can be included in
-    \"theindex.org\".
-
-Other properties affecting publication.
-
-  `:body-only'
-
-    Set this to t to publish only the body of the documents."
-  :group 'org-export-publish
-  :type 'alist)
-
-(defcustom org-publish-use-timestamps-flag t
-  "Non-nil means use timestamp checking to publish only changed files.
-When nil, do no timestamp checking and always publish all files."
-  :group 'org-export-publish
-  :type 'boolean)
-
-(defcustom org-publish-timestamp-directory
-  (convert-standard-filename "~/.org-timestamps/")
-  "Name of directory in which to store publishing timestamps."
-  :group 'org-export-publish
-  :type 'directory)
-
-(defcustom org-publish-list-skipped-files t
-  "Non-nil means show message about files *not* published."
-  :group 'org-export-publish
-  :type 'boolean)
-
-(defcustom org-publish-sitemap-sort-files 'alphabetically
-  "Method to sort files in site-maps.
-Possible values are `alphabetically', `chronologically',
-`anti-chronologically' and nil.
-
-If `alphabetically', files will be sorted alphabetically.  If
-`chronologically', files will be sorted with older modification
-time first.  If `anti-chronologically', files will be sorted with
-newer modification time first.  nil won't sort files.
-
-You can overwrite this default per project in your
-`org-publish-project-alist', using `:sitemap-sort-files'."
-  :group 'org-export-publish
-  :type 'symbol)
-
-(defcustom org-publish-sitemap-sort-folders 'ignore
-  "A symbol, denoting if folders are sorted first in site-maps.
-
-Possible values are `first', `last', `ignore' and nil.
-If `first', folders will be sorted before files.
-If `last', folders are sorted to the end after the files.
-If `ignore', folders do not appear in the site-map.
-Any other value will mix files and folders.
-
-You can overwrite this default per project in your
-`org-publish-project-alist', using `:sitemap-sort-folders'.
-
-This variable is ignored when site-map style is `tree'."
-  :group 'org-export-publish
-  :type '(choice
-	  (const :tag "Folders before files" first)
-	  (const :tag "Folders after files" last)
-	  (const :tag "No folder in site-map" ignore)
-	  (const :tag "Mix folders and files" nil))
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :safe #'symbolp)
-
-(defcustom org-publish-sitemap-sort-ignore-case nil
-  "Non-nil when site-map sorting should ignore case.
-
-You can overwrite this default per project in your
-`org-publish-project-alist', using `:sitemap-ignore-case'."
-  :group 'org-export-publish
-  :type 'boolean)
-
-
-
-;;; Timestamp-related functions
-
-(defun org-publish-timestamp-filename (filename &optional pub-dir pub-func)
-  "Return path to timestamp file for filename FILENAME."
-  (setq filename (concat filename "::" (or pub-dir "") "::"
-			 (format "%s" (or pub-func ""))))
-  (concat "X" (if (fboundp 'sha1) (sha1 filename) (md5 filename))))
-
-(defun org-publish-needed-p
-  (filename &optional pub-dir pub-func _true-pub-dir base-dir)
-  "Non-nil if FILENAME should be published in PUB-DIR using PUB-FUNC.
-TRUE-PUB-DIR is where the file will truly end up.  Currently we
-are not using this - maybe it can eventually be used to check if
-the file is present at the target location, and how old it is.
-Right now we cannot do this, because we do not know under what
-file name the file will be stored - the publishing function can
-still decide about that independently."
-  (let ((rtn (if (not org-publish-use-timestamps-flag) t
-	       (org-publish-cache-file-needs-publishing
-		filename pub-dir pub-func base-dir))))
-    (if rtn (message "Publishing file %s using `%s'" filename pub-func)
-      (when org-publish-list-skipped-files
-	(message "Skipping unmodified file %s" filename)))
-    rtn))
-
-(defun org-publish-update-timestamp
-  (filename &optional pub-dir pub-func _base-dir)
-  "Update publishing timestamp for file FILENAME.
-If there is no timestamp, create one."
-  (let ((key (org-publish-timestamp-filename filename pub-dir pub-func))
-	(stamp (org-publish-cache-ctime-of-src filename)))
-    (org-publish-cache-set key stamp)))
-
-(defun org-publish-remove-all-timestamps ()
-  "Remove all files in the timestamp directory."
-  (let ((dir org-publish-timestamp-directory))
-    (when (and (file-exists-p dir) (file-directory-p dir))
-      (mapc #'delete-file (directory-files dir 'full "[^.]\\'"))
-      (org-publish-reset-cache))))
-
-
-
-;;; Getting project information out of `org-publish-project-alist'
-
-(defun org-publish-property (property project &optional default)
-  "Return value PROPERTY, as a symbol, in PROJECT.
-DEFAULT is returned when PROPERTY is not actually set in PROJECT
-definition."
-  (let ((properties (cdr project)))
-    (if (plist-member properties property)
-	(plist-get properties property)
-      default)))
-
-(defun org-publish--expand-file-name (file project)
-  "Return full file name for FILE in PROJECT.
-When FILE is a relative file name, it is expanded according to
-project base directory."
-  (if (file-name-absolute-p file) file
-    (expand-file-name file (org-publish-property :base-directory project))))
-
-(defun org-publish-expand-projects (projects-alist)
-  "Expand projects in PROJECTS-ALIST.
-This splices all the components into the list."
-  (let ((rest projects-alist) rtn p components)
-    (while (setq p (pop rest))
-      (if (setq components (plist-get (cdr p) :components))
-	  (setq rest (append
-		      (mapcar
-		       (lambda (x)
-			 (or (assoc x org-publish-project-alist)
-			     (user-error "Unknown component %S in project %S"
-					 x (car p))))
-		       components)
-		      rest))
-	(push p rtn)))
-    (nreverse (delete-dups (delq nil rtn)))))
-
-(defun org-publish-get-base-files (project)
-  "Return a list of all files in PROJECT."
-  (let* ((base-dir (file-name-as-directory
-		    (org-publish-property :base-directory project)))
-	 (extension (or (org-publish-property :base-extension project) "org"))
-	 (match (if (eq extension 'any) ""
-		  (format "^[^\\.].*\\.\\(%s\\)$" extension)))
-	 (base-files
-	  (cond ((not (file-exists-p base-dir)) nil)
-		((not (org-publish-property :recursive project))
-		 (cl-remove-if #'file-directory-p
-			       (directory-files base-dir t match t)))
-		(t
-		 ;; Find all files recursively.  Unlike to
-		 ;; `directory-files-recursively', we follow symlinks
-		 ;; to other directories.
-		 (letrec ((files nil)
-			  (walk-tree
-			   (lambda (dir depth)
-			     (when (> depth 100)
-			       (error "Apparent cycle of symbolic links for %S"
-				      base-dir))
-			     (dolist (f (file-name-all-completions "" dir))
-			       (pcase f
-				 ((or "./" "../") nil)
-				 ((pred directory-name-p)
-				  (funcall walk-tree
-					   (expand-file-name f dir)
-					   (1+ depth)))
-				 ((pred (string-match match))
-				  (push (expand-file-name f dir) files))
-				 (_ nil)))
-			     files)))
-		   (funcall walk-tree base-dir 0))))))
-    (org-uniquify
-     (append
-      ;; Files from BASE-DIR.  Apply exclusion filter before adding
-      ;; included files.
-      (let ((exclude-regexp (org-publish-property :exclude project)))
-	(if exclude-regexp
-	    (cl-remove-if
-	     (lambda (f)
-	       ;; Match against relative names, yet BASE-DIR file
-	       ;; names are absolute.
-	       (string-match exclude-regexp
-			     (file-relative-name f base-dir)))
-	     base-files)
-	  base-files))
-      ;; Sitemap file.
-      (and (org-publish-property :auto-sitemap project)
-	   (list (expand-file-name
-		  (or (org-publish-property :sitemap-filename project)
-		      "sitemap.org")
-		  base-dir)))
-      ;; Included files.
-      (mapcar (lambda (f) (expand-file-name f base-dir))
-	      (org-publish-property :include project))))))
-
-(defun org-publish-get-project-from-filename (filename &optional up)
-  "Return a project that FILENAME belongs to.
-When UP is non-nil, return a meta-project (i.e., with a :components part)
-publishing FILENAME."
-  (let* ((filename (expand-file-name filename))
-	 (project
-	  (cl-some
-	   (lambda (p)
-	     ;; Ignore meta-projects.
-	     (unless (org-publish-property :components p)
-	       (let ((base (expand-file-name
-			    (org-publish-property :base-directory p))))
-		 (cond
-		  ;; Check if FILENAME is explicitly included in one
-		  ;; project.
-		  ((cl-some (lambda (f) (file-equal-p f filename))
-			    (mapcar (lambda (f) (expand-file-name f base))
-				    (org-publish-property :include p)))
-		   p)
-		  ;; Exclude file names matching :exclude property.
-		  ((let ((exclude-re (org-publish-property :exclude p)))
-		     (and exclude-re
-			  (string-match-p exclude-re
-					  (file-relative-name filename base))))
-		   nil)
-		  ;; Check :extension.  Handle special `any'
-		  ;; extension.
-		  ((let ((extension (org-publish-property :base-extension p)))
-		     (not (or (eq extension 'any)
-			      (string= (or extension "org")
-				       (file-name-extension filename)))))
-		   nil)
-		  ;; Check if FILENAME belong to project's base
-		  ;; directory, or some of its sub-directories
-		  ;; if :recursive in non-nil.
-		  ((member filename (org-publish-get-base-files p)) p)
-		  (t nil)))))
-	   org-publish-project-alist)))
-    (cond
-     ((not project) nil)
-     ((not up) project)
-     ;; When optional argument UP is non-nil, return the top-most
-     ;; meta-project effectively publishing FILENAME.
-     (t
-      (letrec ((find-parent-project
-		(lambda (project)
-		  (or (cl-some
-		       (lambda (p)
-			 (and (member (car project)
-				      (org-publish-property :components p))
-			      (funcall find-parent-project p)))
-		       org-publish-project-alist)
-		      project))))
-	(funcall find-parent-project project))))))
-
-
-
-;;; Tools for publishing functions in back-ends
-
-(defun org-publish-org-to (backend filename extension plist &optional pub-dir)
-  "Publish an Org file to a specified back-end.
-
-BACKEND is a symbol representing the back-end used for
-transcoding.  FILENAME is the filename of the Org file to be
-published.  EXTENSION is the extension used for the output
-string, with the leading dot.  PLIST is the property list for the
-given project.
-
-Optional argument PUB-DIR, when non-nil is the publishing
-directory.
-
-Return output file name."
-  (unless (or (not pub-dir) (file-exists-p pub-dir)) (make-directory pub-dir t))
-  ;; Check if a buffer visiting FILENAME is already open.
-  (let* ((org-inhibit-startup t)
-	 (visiting (find-buffer-visiting filename))
-	 (work-buffer (or visiting (find-file-noselect filename))))
-    (unwind-protect
-	(with-current-buffer work-buffer
-	  (let ((output (org-export-output-file-name extension nil pub-dir)))
-	    (org-export-to-file backend output
-	      nil nil nil (plist-get plist :body-only)
-	      ;; Add `org-publish--store-crossrefs' and
-	      ;; `org-publish-collect-index' to final output filters.
-	      ;; The latter isn't dependent on `:makeindex', since we
-	      ;; want to keep it up-to-date in cache anyway.
-	      (org-combine-plists
-	       plist
-	       `(:crossrefs
-		 ,(org-publish-cache-get-file-property
-		   ;; Normalize file names in cache.
-		   (file-truename filename) :crossrefs nil t)
-		 :filter-final-output
-		 (org-publish--store-crossrefs
-		  org-publish-collect-index
-		  ,@(plist-get plist :filter-final-output)))))))
-      ;; Remove opened buffer in the process.
-      (unless visiting (kill-buffer work-buffer)))))
-
-(defun org-publish-attachment (_plist filename pub-dir)
-  "Publish a file with no transformation of any kind.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (unless (file-directory-p pub-dir)
-    (make-directory pub-dir t))
-  (let ((output (expand-file-name (file-name-nondirectory filename) pub-dir)))
-    (unless (file-equal-p (expand-file-name (file-name-directory filename))
-			  (file-name-as-directory (expand-file-name pub-dir)))
-      (copy-file filename output t))
-    ;; Return file name.
-    output))
-
-
-
-;;; Publishing files, sets of files
-
-(defun org-publish-file (filename &optional project no-cache)
-  "Publish file FILENAME from PROJECT.
-If NO-CACHE is not nil, do not initialize `org-publish-cache'.
-This is needed, since this function is used to publish single
-files, when entire projects are published (see
-`org-publish-projects')."
-  (let* ((project
-	  (or project
-	      (org-publish-get-project-from-filename filename)
-	      (user-error "File %S is not part of any known project"
-			  (abbreviate-file-name filename))))
-	 (project-plist (cdr project))
-	 (publishing-function
-	  (pcase (org-publish-property :publishing-function project)
-	    (`nil (user-error "No publishing function chosen"))
-	    ((and f (pred listp)) f)
-	    (f (list f))))
-	 (base-dir
-	  (file-name-as-directory
-	   (or (org-publish-property :base-directory project)
-	       (user-error "Project %S does not have :base-directory defined"
-			   (car project)))))
-	 (pub-base-dir
-	  (file-name-as-directory
-	   (or (org-publish-property :publishing-directory project)
-	       (user-error
-		"Project %S does not have :publishing-directory defined"
-		(car project)))))
-	 (pub-dir
-	  (file-name-directory
-	   (expand-file-name (file-relative-name filename base-dir)
-			     pub-base-dir))))
-
-    (unless no-cache (org-publish-initialize-cache (car project)))
-
-    ;; Allow chain of publishing functions.
-    (dolist (f publishing-function)
-      (when (org-publish-needed-p filename pub-base-dir f pub-dir base-dir)
-	(let ((output (funcall f project-plist filename pub-dir)))
-	  (org-publish-update-timestamp filename pub-base-dir f base-dir)
-	  (run-hook-with-args 'org-publish-after-publishing-hook
-			      filename
-			      output))))
-    ;; Make sure to write cache to file after successfully publishing
-    ;; a file, so as to minimize impact of a publishing failure.
-    (org-publish-write-cache-file)))
-
-(defun org-publish-projects (projects)
-  "Publish all files belonging to the PROJECTS alist.
-If `:auto-sitemap' is set, publish the sitemap too.  If
-`:makeindex' is set, also produce a file \"theindex.org\"."
-  (dolist (project (org-publish-expand-projects projects))
-    (let ((plist (cdr project)))
-      (let ((fun (org-publish-property :preparation-function project)))
-	(cond
-	 ((consp fun) (dolist (f fun) (funcall f plist)))
-	 ((functionp fun) (funcall fun plist))))
-      ;; Each project uses its own cache file.
-      (org-publish-initialize-cache (car project))
-      (when (org-publish-property :auto-sitemap project)
-	(let ((sitemap-filename
-	       (or (org-publish-property :sitemap-filename project)
-		   "sitemap.org")))
-	  (org-publish-sitemap project sitemap-filename)))
-      ;; Publish all files from PROJECT except "theindex.org".  Its
-      ;; publishing will be deferred until "theindex.inc" is
-      ;; populated.
-      (let ((theindex
-	     (expand-file-name "theindex.org"
-			       (org-publish-property :base-directory project))))
-	(dolist (file (org-publish-get-base-files project))
-	  (unless (file-equal-p file theindex)
-	    (org-publish-file file project t)))
-	;; Populate "theindex.inc", if needed, and publish
-	;; "theindex.org".
-	(when (org-publish-property :makeindex project)
-	  (org-publish-index-generate-theindex
-	   project (org-publish-property :base-directory project))
-	  (org-publish-file theindex project t)))
-      (let ((fun (org-publish-property :completion-function project)))
-	(cond
-	 ((consp fun) (dolist (f fun) (funcall f plist)))
-	 ((functionp fun) (funcall fun plist)))))
-    (org-publish-write-cache-file)))
-
-
-;;; Site map generation
-
-(defun org-publish--sitemap-files-to-lisp (files project style format-entry)
-  "Represent FILES as a parsed plain list.
-FILES is the list of files in the site map.  PROJECT is the
-current project.  STYLE determines is either `list' or `tree'.
-FORMAT-ENTRY is a function called on each file which should
-return a string.  Return value is a list as returned by
-`org-list-to-lisp'."
-  (let ((root (expand-file-name
-	       (file-name-as-directory
-		(org-publish-property :base-directory project)))))
-    (pcase style
-      (`list
-       (cons 'unordered
-	     (mapcar
-	      (lambda (f)
-		(list (funcall format-entry
-			       (file-relative-name f root)
-			       style
-			       project)))
-	      files)))
-      (`tree
-       (letrec ((files-only (cl-remove-if #'directory-name-p files))
-		(directories (cl-remove-if-not #'directory-name-p files))
-		(subtree-to-list
-		 (lambda (dir)
-		   (cons 'unordered
-			 (nconc
-			  ;; Files in DIR.
-			  (mapcar
-			   (lambda (f)
-			     (list (funcall format-entry
-					    (file-relative-name f root)
-					    style
-					    project)))
-			   (cl-remove-if-not
-			    (lambda (f) (string= dir (file-name-directory f)))
-			    files-only))
-			  ;; Direct sub-directories.
-			  (mapcar
-			   (lambda (sub)
-			     (list (funcall format-entry
-					    (file-relative-name sub root)
-					    style
-					    project)
-				   (funcall subtree-to-list sub)))
-			   (cl-remove-if-not
-			    (lambda (f)
-			      (string=
-			       dir
-			       ;; Parent directory.
-			       (file-name-directory (directory-file-name f))))
-			    directories)))))))
-	 (funcall subtree-to-list root)))
-      (_ (user-error "Unknown site-map style: `%s'" style)))))
-
-(defun org-publish-sitemap (project &optional sitemap-filename)
-  "Create a sitemap of pages in set defined by PROJECT.
-Optionally set the filename of the sitemap with SITEMAP-FILENAME.
-Default for SITEMAP-FILENAME is `sitemap.org'."
-  (let* ((root (expand-file-name
-		(file-name-as-directory
-		 (org-publish-property :base-directory project))))
-	 (sitemap-filename (concat root (or sitemap-filename "sitemap.org")))
-	 (title (or (org-publish-property :sitemap-title project)
-		    (concat "Sitemap for project " (car project))))
-	 (style (or (org-publish-property :sitemap-style project)
-		    'tree))
-	 (sitemap-builder (or (org-publish-property :sitemap-function project)
-			      #'org-publish-sitemap-default))
-	 (format-entry (or (org-publish-property :sitemap-format-entry project)
-			   #'org-publish-sitemap-default-entry))
-	 (sort-folders
-	  (org-publish-property :sitemap-sort-folders project
-				org-publish-sitemap-sort-folders))
-	 (sort-files
-	  (org-publish-property :sitemap-sort-files project
-				org-publish-sitemap-sort-files))
-	 (ignore-case
-	  (org-publish-property :sitemap-ignore-case project
-				org-publish-sitemap-sort-ignore-case))
-	 (org-file-p (lambda (f) (equal "org" (file-name-extension f))))
-	 (sort-predicate
-	  (lambda (a b)
-	    (let ((retval t))
-	      ;; First we sort files:
-	      (pcase sort-files
-		(`alphabetically
-		 (let ((A (if (funcall org-file-p a)
-			      (concat (file-name-directory a)
-				      (org-publish-find-title a project))
-			    a))
-		       (B (if (funcall org-file-p b)
-			      (concat (file-name-directory b)
-				      (org-publish-find-title b project))
-			    b)))
-		   (setq retval
-			 (if ignore-case
-			     (not (string-lessp (upcase B) (upcase A)))
-			   (not (string-lessp B A))))))
-		((or `anti-chronologically `chronologically)
-		 (let* ((adate (org-publish-find-date a project))
-			(bdate (org-publish-find-date b project))
-			(A (+ (lsh (car adate) 16) (cadr adate)))
-			(B (+ (lsh (car bdate) 16) (cadr bdate))))
-		   (setq retval
-			 (if (eq sort-files 'chronologically)
-			     (<= A B)
-			   (>= A B)))))
-		(`nil nil)
-		(_ (user-error "Invalid sort value %s" sort-files)))
-	      ;; Directory-wise wins:
-	      (when (memq sort-folders '(first last))
-		;; a is directory, b not:
-		(cond
-		 ((and (file-directory-p a) (not (file-directory-p b)))
-		  (setq retval (eq sort-folders 'first)))
-		 ;; a is not a directory, but b is:
-		 ((and (not (file-directory-p a)) (file-directory-p b))
-		  (setq retval (eq sort-folders 'last)))))
-	      retval))))
-    (message "Generating sitemap for %s" title)
-    (with-temp-file sitemap-filename
-      (insert
-       (let ((files (remove sitemap-filename
-			    (org-publish-get-base-files project))))
-	 ;; Add directories, if applicable.
-	 (unless (and (eq style 'list) (eq sort-folders 'ignore))
-	   (setq files
-		 (nconc (remove root (org-uniquify
-				      (mapcar #'file-name-directory files)))
-			files)))
-	 ;; Eventually sort all entries.
-	 (when (or sort-files (not (memq sort-folders 'ignore)))
-	   (setq files (sort files sort-predicate)))
-	 (funcall sitemap-builder
-		  title
-		  (org-publish--sitemap-files-to-lisp
-		   files project style format-entry)))))))
-
-(defun org-publish-find-property (file property project &optional backend)
-  "Find the PROPERTY of FILE in project.
-
-PROPERTY is a keyword referring to an export option, as defined
-in `org-export-options-alist' or in export back-ends.  In the
-latter case, optional argument BACKEND has to be set to the
-back-end where the option is defined, e.g.,
-
-  (org-publish-find-property file :subtitle 'latex)
-
-Return value may be a string or a list, depending on the type of
-PROPERTY, i.e. \"behavior\" parameter from `org-export-options-alist'."
-  (let ((file (org-publish--expand-file-name file project)))
-    (when (and (file-readable-p file) (not (directory-name-p file)))
-      (let* ((org-inhibit-startup t)
-	     (visiting (find-buffer-visiting file))
-	     (buffer (or visiting (find-file-noselect file))))
-	(unwind-protect
-	    (plist-get (with-current-buffer buffer
-			 (if (not visiting) (org-export-get-environment backend)
-			   ;; Protect local variables in open buffers.
-			   (org-export-with-buffer-copy
-			    (org-export-get-environment backend))))
-		       property)
-	  (unless visiting (kill-buffer buffer)))))))
-
-(defun org-publish-find-title (file project)
-  "Find the title of FILE in PROJECT."
-  (let ((file (org-publish--expand-file-name file project)))
-    (or (org-publish-cache-get-file-property file :title nil t)
-	(let* ((parsed-title (org-publish-find-property file :title project))
-	       (title
-		(if parsed-title
-		    ;; Remove property so that the return value is
-		    ;; cache-able (i.e., it can be `read' back).
-		    (org-no-properties
-		     (org-element-interpret-data parsed-title))
-		  (file-name-nondirectory (file-name-sans-extension file)))))
-	  (org-publish-cache-set-file-property file :title title)
-	  title))))
-
-(defun org-publish-find-date (file project)
-  "Find the date of FILE in PROJECT.
-This function assumes FILE is either a directory or an Org file.
-If FILE is an Org file and provides a DATE keyword use it.  In
-any other case use the file system's modification time.  Return
-time in `current-time' format."
-  (let ((file (org-publish--expand-file-name file project)))
-    (if (file-directory-p file) (nth 5 (file-attributes file))
-      (let ((date (org-publish-find-property file :date project)))
-	;; DATE is a secondary string.  If it contains a time-stamp,
-	;; convert it to internal format.  Otherwise, use FILE
-	;; modification time.
-	(cond ((let ((ts (and (consp date) (assq 'timestamp date))))
-		 (and ts
-		      (let ((value (org-element-interpret-data ts)))
-			(and (org-string-nw-p value)
-			     (org-time-string-to-time value))))))
-	      ((file-exists-p file) (nth 5 (file-attributes file)))
-	      (t (error "No such file: \"%s\"" file)))))))
-
-(defun org-publish-sitemap-default-entry (entry style project)
-  "Default format for site map ENTRY, as a string.
-ENTRY is a file name.  STYLE is the style of the sitemap.
-PROJECT is the current project."
-  (cond ((not (directory-name-p entry))
-	 (format "[[file:%s][%s]]"
-		 entry
-		 (org-publish-find-title entry project)))
-	((eq style 'tree)
-	 ;; Return only last subdir.
-	 (file-name-nondirectory (directory-file-name entry)))
-	(t entry)))
-
-(defun org-publish-sitemap-default (title list)
-  "Default site map, as a string.
-TITLE is the the title of the site map.  LIST is an internal
-representation for the files to include, as returned by
-`org-list-to-lisp'.  PROJECT is the current project."
-  (concat "#+TITLE: " title "\n\n"
-	  (org-list-to-org list)))
-
-
-;;; Interactive publishing functions
-
-;;;###autoload
-(defalias 'org-publish-project 'org-publish)
-
-;;;###autoload
-(defun org-publish (project &optional force async)
-  "Publish PROJECT.
-
-PROJECT is either a project name, as a string, or a project
-alist (see `org-publish-project-alist' variable).
-
-When optional argument FORCE is non-nil, force publishing all
-files in PROJECT.  With a non-nil optional argument ASYNC,
-publishing will be done asynchronously, in another process."
-  (interactive
-   (list (assoc (completing-read "Publish project: "
-				 org-publish-project-alist nil t)
-		org-publish-project-alist)
-	 current-prefix-arg))
-  (let ((project (if (not (stringp project)) project
-		   ;; If this function is called in batch mode,
-		   ;; PROJECT is still a string here.
-		   (assoc project org-publish-project-alist))))
-    (cond
-     ((not project))
-     (async
-      (org-export-async-start (lambda (_) nil)
-	`(let ((org-publish-use-timestamps-flag
-		,(and (not force) org-publish-use-timestamps-flag)))
-	   ;; Expand components right now as external process may not
-	   ;; be aware of complete `org-publish-project-alist'.
-	   (org-publish-projects
-	    ',(org-publish-expand-projects (list project))))))
-     (t (save-window-excursion
-	  (let ((org-publish-use-timestamps-flag
-		 (and (not force) org-publish-use-timestamps-flag)))
-	    (org-publish-projects (list project))))))))
-
-;;;###autoload
-(defun org-publish-all (&optional force async)
-  "Publish all projects.
-With prefix argument FORCE, remove all files in the timestamp
-directory and force publishing all projects.  With a non-nil
-optional argument ASYNC, publishing will be done asynchronously,
-in another process."
-  (interactive "P")
-  (if async
-      (org-export-async-start (lambda (_) nil)
-	`(progn
-	   (when ',force (org-publish-remove-all-timestamps))
-	   (let ((org-publish-use-timestamps-flag
-		  (if ',force nil ,org-publish-use-timestamps-flag)))
-	     (org-publish-projects ',org-publish-project-alist))))
-    (when force (org-publish-remove-all-timestamps))
-    (save-window-excursion
-      (let ((org-publish-use-timestamps-flag
-	     (if force nil org-publish-use-timestamps-flag)))
-	(org-publish-projects org-publish-project-alist)))))
-
-
-;;;###autoload
-(defun org-publish-current-file (&optional force async)
-  "Publish the current file.
-With prefix argument FORCE, force publish the file.  When
-optional argument ASYNC is non-nil, publishing will be done
-asynchronously, in another process."
-  (interactive "P")
-  (let ((file (buffer-file-name (buffer-base-buffer))))
-    (if async
-	(org-export-async-start (lambda (_) nil)
-	  `(let ((org-publish-use-timestamps-flag
-		  (if ',force nil ,org-publish-use-timestamps-flag)))
-	     (org-publish-file ,file)))
-      (save-window-excursion
-	(let ((org-publish-use-timestamps-flag
-	       (if force nil org-publish-use-timestamps-flag)))
-	  (org-publish-file file))))))
-
-;;;###autoload
-(defun org-publish-current-project (&optional force async)
-  "Publish the project associated with the current file.
-With a prefix argument, force publishing of all files in
-the project."
-  (interactive "P")
-  (save-window-excursion
-    (let ((project (org-publish-get-project-from-filename
-		    (buffer-file-name (buffer-base-buffer)) 'up)))
-      (if project (org-publish project force async)
-	(error "File %s is not part of any known project"
-	       (buffer-file-name (buffer-base-buffer)))))))
-
-
-
-;;; Index generation
-
-(defun org-publish-collect-index (output _backend info)
-  "Update index for a file in cache.
-
-OUTPUT is the output from transcoding current file.  BACKEND is
-the back-end that was used for transcoding.  INFO is a plist
-containing publishing and export options.
-
-The index relative to current file is stored as an alist.  An
-association has the following shape: (TERM FILE-NAME PARENT),
-where TERM is the indexed term, as a string, FILE-NAME is the
-original full path of the file where the term in encountered, and
-PARENT is a reference to the headline, if any, containing the
-original index keyword.  When non-nil, this reference is a cons
-cell.  Its CAR is a symbol among `id', `custom-id' and `name' and
-its CDR is a string."
-  (let ((file (file-truename (plist-get info :input-file))))
-    (org-publish-cache-set-file-property
-     file :index
-     (delete-dups
-      (org-element-map (plist-get info :parse-tree) 'keyword
-	(lambda (k)
-	  (when (equal (org-element-property :key k) "INDEX")
-	    (let ((parent (org-export-get-parent-headline k)))
-	      (list (org-element-property :value k)
-		    file
-		    (cond
-		     ((not parent) nil)
-		     ((let ((id (org-element-property :ID parent)))
-			(and id (cons 'id id))))
-		     ((let ((id (org-element-property :CUSTOM_ID parent)))
-			(and id (cons 'custom-id id))))
-		     (t (cons 'name
-			      ;; Remove statistics cookie.
-			      (replace-regexp-in-string
-			       "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
-			       (org-element-property :raw-value parent)))))))))
-	info))))
-  ;; Return output unchanged.
-  output)
-
-(defun org-publish-index-generate-theindex (project directory)
-  "Retrieve full index from cache and build \"theindex.org\".
-PROJECT is the project the index relates to.  DIRECTORY is the
-publishing directory."
-  (let ((all-files (org-publish-get-base-files project))
-	full-index)
-    ;; Compile full index and sort it alphabetically.
-    (dolist (file all-files
-		  (setq full-index
-			(sort (nreverse full-index)
-			      (lambda (a b) (string< (downcase (car a))
-						(downcase (car b)))))))
-      (let ((index (org-publish-cache-get-file-property file :index)))
-	(dolist (term index)
-	  (unless (member term full-index) (push term full-index)))))
-    ;; Write "theindex.inc" in DIRECTORY.
-    (with-temp-file (expand-file-name "theindex.inc" directory)
-      (let ((current-letter nil) (last-entry nil))
-	(dolist (idx full-index)
-	  (let* ((entry (org-split-string (car idx) "!"))
-		 (letter (upcase (substring (car entry) 0 1)))
-		 ;; Transform file into a path relative to publishing
-		 ;; directory.
-		 (file (file-relative-name
-			(nth 1 idx)
-			(plist-get (cdr project) :base-directory))))
-	    ;; Check if another letter has to be inserted.
-	    (unless (string= letter current-letter)
-	      (insert (format "* %s\n" letter)))
-	    ;; Compute the first difference between last entry and
-	    ;; current one: it tells the level at which new items
-	    ;; should be added.
-	    (let* ((rank
-		    (if (equal entry last-entry) (1- (length entry))
-		      (cl-loop for n from 0 to (length entry)
-			       unless (equal (nth n entry) (nth n last-entry))
-			       return n)))
-		   (len (length (nthcdr rank entry))))
-	      ;; For each term after the first difference, create
-	      ;; a new sub-list with the term as body.  Moreover,
-	      ;; linkify the last term.
-	      (dotimes (n len)
-		(insert
-		 (concat
-		  (make-string (* (+ rank n) 2) ?\s) "  - "
-		  (if (not (= (1- len) n)) (nth (+ rank n) entry)
-		    ;; Last term: Link it to TARGET, if possible.
-		    (let ((target (nth 2 idx)))
-		      (format
-		       "[[%s][%s]]"
-		       ;; Destination.
-		       (pcase (car target)
-			 (`nil (format "file:%s" file))
-			 (`id (format "id:%s" (cdr target)))
-			 (`custom-id (format "file:%s::#%s" file (cdr target)))
-			 (_ (format "file:%s::*%s" file (cdr target))))
-		       ;; Description.
-		       (car (last entry)))))
-		  "\n"))))
-	    (setq current-letter letter last-entry entry))))
-      ;; Create "theindex.org", if it doesn't exist yet, and provide
-      ;; a default index file.
-      (let ((index.org (expand-file-name "theindex.org" directory)))
-	(unless (file-exists-p index.org)
-	  (with-temp-file index.org
-	    (insert "#+TITLE: Index\n\n#+INCLUDE: \"theindex.inc\"\n\n")))))))
-
-
-
-;;; External Fuzzy Links Resolution
-;;
-;; This part implements tools to resolve [[file.org::*Some headline]]
-;; links, where "file.org" belongs to the current project.
-
-(defun org-publish--store-crossrefs (output _backend info)
-  "Store cross-references for current published file.
-
-OUTPUT is the produced output, as a string.  BACKEND is the export
-back-end used, as a symbol.  INFO is the final export state, as
-a plist.
-
-This function is meant to be used as a final output filter.  See
-`org-publish-org-to'."
-  (org-publish-cache-set-file-property
-   (file-truename (plist-get info :input-file))
-   :crossrefs
-   ;; Update `:crossrefs' so as to remove unused references and search
-   ;; cells.  Actually used references are extracted from
-   ;; `:internal-references', with references as strings removed.  See
-   ;; `org-export-get-reference' for details.
-   (cl-remove-if (lambda (pair) (stringp (car pair)))
-		 (plist-get info :internal-references)))
-  ;; Return output unchanged.
-  output)
-
-(defun org-publish-resolve-external-link (search file)
-  "Return reference for element matching string SEARCH in FILE.
-
-Return value is an internal reference, as a string.
-
-This function allows resolving external links with a search
-option, e.g.,
-
-  [[file.org::*heading][description]]
-  [[file.org::#custom-id][description]]
-  [[file.org::fuzzy][description]]
-
-It only makes sense to use this if export back-end builds
-references with `org-export-get-reference'."
-  (if (not org-publish-cache)
-      (progn
-	(message "Reference %S in file %S cannot be resolved without publishing"
-		 search
-		 file)
-	"MissingReference")
-    (let* ((filename (file-truename file))
-	   (crossrefs
-	    (org-publish-cache-get-file-property filename :crossrefs nil t))
-	   (cells
-	    (org-export-string-to-search-cell (org-link-unescape search))))
-      (or
-       ;; Look for reference associated to search cells triggered by
-       ;; LINK.  It can match when targeted file has been published
-       ;; already.
-       (let ((known (cdr (cl-some (lambda (c) (assoc c crossrefs)) cells))))
-	 (and known (org-export-format-reference known)))
-       ;; Search cell is unknown so far.  Generate a new internal
-       ;; reference that will be used when the targeted file will be
-       ;; published.
-       (let ((new (org-export-new-reference crossrefs)))
-	 (dolist (cell cells) (push (cons cell new) crossrefs))
-	 (org-publish-cache-set-file-property filename :crossrefs crossrefs)
-	 (org-export-format-reference new))))))
-
-(defun org-publish-file-relative-name (filename info)
-  "Convert FILENAME to be relative to current project's base directory.
-INFO is the plist containing the current export state.  The
-function does not change relative file names."
-  (let ((base (plist-get info :base-directory)))
-    (if (and base
-	     (file-name-absolute-p filename)
-	     (file-in-directory-p filename base))
-	(file-relative-name filename base)
-      filename)))
-
-
-
-;;; Caching functions
-
-(defun org-publish-write-cache-file (&optional free-cache)
-  "Write `org-publish-cache' to file.
-If FREE-CACHE, empty the cache."
-  (unless org-publish-cache
-    (error "`org-publish-write-cache-file' called, but no cache present"))
-
-  (let ((cache-file (org-publish-cache-get ":cache-file:")))
-    (unless cache-file
-      (error "Cannot find cache-file name in `org-publish-write-cache-file'"))
-    (with-temp-file cache-file
-      (let (print-level print-length)
-	(insert "(setq org-publish-cache \
-\(make-hash-table :test 'equal :weakness nil :size 100))\n")
-	(maphash (lambda (k v)
-		   (insert
-		    (format "(puthash %S %s%S org-publish-cache)\n"
-			    k (if (or (listp v) (symbolp v)) "'" "") v)))
-		 org-publish-cache)))
-    (when free-cache (org-publish-reset-cache))))
-
-(defun org-publish-initialize-cache (project-name)
-  "Initialize the projects cache if not initialized yet and return it."
-
-  (unless project-name
-    (error "Cannot initialize `org-publish-cache' without projects name in \
-`org-publish-initialize-cache'"))
-
-  (unless (file-exists-p org-publish-timestamp-directory)
-    (make-directory org-publish-timestamp-directory t))
-  (unless (file-directory-p org-publish-timestamp-directory)
-    (error "Org publish timestamp: %s is not a directory"
-	   org-publish-timestamp-directory))
-
-  (unless (and org-publish-cache
-	       (string= (org-publish-cache-get ":project:") project-name))
-    (let* ((cache-file
-	    (concat
-	     (expand-file-name org-publish-timestamp-directory)
-	     project-name ".cache"))
-	   (cexists (file-exists-p cache-file)))
-
-      (when org-publish-cache (org-publish-reset-cache))
-
-      (if cexists (load-file cache-file)
-	(setq org-publish-cache
-	      (make-hash-table :test 'equal :weakness nil :size 100))
-	(org-publish-cache-set ":project:" project-name)
-	(org-publish-cache-set ":cache-file:" cache-file))
-      (unless cexists (org-publish-write-cache-file nil))))
-  org-publish-cache)
-
-(defun org-publish-reset-cache ()
-  "Empty org-publish-cache and reset it nil."
-  (message "%s" "Resetting org-publish-cache")
-  (when (hash-table-p org-publish-cache)
-    (clrhash org-publish-cache))
-  (setq org-publish-cache nil))
-
-(defun org-publish-cache-file-needs-publishing
-    (filename &optional pub-dir pub-func _base-dir)
-  "Check the timestamp of the last publishing of FILENAME.
-Return non-nil if the file needs publishing.  Also check if
-any included files have been more recently published, so that
-the file including them will be republished as well."
-  (unless org-publish-cache
-    (error
-     "`org-publish-cache-file-needs-publishing' called, but no cache present"))
-  (let* ((key (org-publish-timestamp-filename filename pub-dir pub-func))
-	 (pstamp (org-publish-cache-get key))
-	 (org-inhibit-startup t)
-	 included-files-ctime)
-    (when (equal (file-name-extension filename) "org")
-      (let ((visiting (find-buffer-visiting filename))
-	    (buf (find-file-noselect filename))
-	    (case-fold-search t))
-	(unwind-protect
-	    (with-current-buffer buf
-	      (goto-char (point-min))
-	      (while (re-search-forward "^[ \t]*#\\+INCLUDE:" nil t)
-		(let ((element (org-element-at-point)))
-		  (when (eq 'keyword (org-element-type element))
-		    (let* ((value (org-element-property :value element))
-			   (filename
-			    (and (string-match "\\`\\(\".+?\"\\|\\S-+\\)" value)
-				 (let ((m (org-unbracket-string
-					   "\"" "\"" (match-string 1 value))))
-				   ;; Ignore search suffix.
-				   (if (string-match "::.*?\\'" m)
-				       (substring m 0 (match-beginning 0))
-				     m)))))
-		      (when filename
-			(push (org-publish-cache-ctime-of-src
-			       (expand-file-name filename))
-			      included-files-ctime)))))))
-	  (unless visiting (kill-buffer buf)))))
-    (or (null pstamp)
-	(let ((ctime (org-publish-cache-ctime-of-src filename)))
-	  (or (< pstamp ctime)
-	      (cl-some (lambda (ct) (< ctime ct)) included-files-ctime))))))
-
-(defun org-publish-cache-set-file-property
-  (filename property value &optional project-name)
-  "Set the VALUE for a PROPERTY of file FILENAME in publishing cache to VALUE.
-Use cache file of PROJECT-NAME.  If the entry does not exist, it
-will be created.  Return VALUE."
-  ;; Evtl. load the requested cache file:
-  (if project-name (org-publish-initialize-cache project-name))
-  (let ((pl (org-publish-cache-get filename)))
-    (if pl (progn (plist-put pl property value) value)
-      (org-publish-cache-get-file-property
-       filename property value nil project-name))))
-
-(defun org-publish-cache-get-file-property
-    (filename property &optional default no-create project-name)
-  "Return the value for a PROPERTY of file FILENAME in publishing cache.
-Use cache file of PROJECT-NAME.  Return the value of that PROPERTY,
-or DEFAULT, if the value does not yet exist.  Create the entry,
-if necessary, unless NO-CREATE is non-nil."
-  (when project-name (org-publish-initialize-cache project-name))
-  (let ((properties (org-publish-cache-get filename)))
-    (cond ((null properties)
-	   (unless no-create
-	     (org-publish-cache-set filename (list property default)))
-	   default)
-	  ((plist-member properties property) (plist-get properties property))
-	  (t default))))
-
-(defun org-publish-cache-get (key)
-  "Return the value stored in `org-publish-cache' for key KEY.
-Return nil, if no value or nil is found.  Raise an error if the
-cache does not exist."
-  (unless org-publish-cache
-    (error "`org-publish-cache-get' called, but no cache present"))
-  (gethash key org-publish-cache))
-
-(defun org-publish-cache-set (key value)
-  "Store KEY VALUE pair in `org-publish-cache'.
-Returns value on success, else nil.  Raise an error if the cache
-does not exist."
-  (unless org-publish-cache
-    (error "`org-publish-cache-set' called, but no cache present"))
-  (puthash key value org-publish-cache))
-
-(defun org-publish-cache-ctime-of-src (file)
-  "Get the ctime of FILE as an integer."
-  (let ((attr (file-attributes
-	       (expand-file-name (or (file-symlink-p file) file)
-				 (file-name-directory file)))))
-    (if (not attr) (error "No such file: \"%s\"" file)
-      (+ (lsh (car (nth 5 attr)) 16)
-	 (cadr (nth 5 attr))))))
-
-
-(provide 'ox-publish)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-publish.el ends here
diff --git a/elpa/org-9.1.14/ox-publish.elc b/elpa/org-9.1.14/ox-publish.elc
deleted file mode 100644
index 1c97f1a..0000000
--- a/elpa/org-9.1.14/ox-publish.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox-texinfo.el b/elpa/org-9.1.14/ox-texinfo.el
deleted file mode 100644
index d877c9c..0000000
--- a/elpa/org-9.1.14/ox-texinfo.el
+++ /dev/null
@@ -1,1709 +0,0 @@
-;;; ox-texinfo.el --- Texinfo Back-End for Org Export Engine -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2012-2018 Free Software Foundation, Inc.
-;; Author: Jonathan Leech-Pepin <jonathan.leechpepin at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; See Org manual for details.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'ox)
-
-(defvar orgtbl-exp-regexp)
-
-
-
-;;; Define Back-End
-
-(org-export-define-backend 'texinfo
-  '((bold . org-texinfo-bold)
-    (center-block . org-texinfo-center-block)
-    (clock . org-texinfo-clock)
-    (code . org-texinfo-code)
-    (drawer . org-texinfo-drawer)
-    (dynamic-block . org-texinfo-dynamic-block)
-    (entity . org-texinfo-entity)
-    (example-block . org-texinfo-example-block)
-    (export-block . org-texinfo-export-block)
-    (export-snippet . org-texinfo-export-snippet)
-    (fixed-width . org-texinfo-fixed-width)
-    (footnote-definition . org-texinfo-footnote-definition)
-    (footnote-reference . org-texinfo-footnote-reference)
-    (headline . org-texinfo-headline)
-    (inline-src-block . org-texinfo-inline-src-block)
-    (inlinetask . org-texinfo-inlinetask)
-    (italic . org-texinfo-italic)
-    (item . org-texinfo-item)
-    (keyword . org-texinfo-keyword)
-    (line-break . org-texinfo-line-break)
-    (link . org-texinfo-link)
-    (node-property . org-texinfo-node-property)
-    (paragraph . org-texinfo-paragraph)
-    (plain-list . org-texinfo-plain-list)
-    (plain-text . org-texinfo-plain-text)
-    (planning . org-texinfo-planning)
-    (property-drawer . org-texinfo-property-drawer)
-    (quote-block . org-texinfo-quote-block)
-    (radio-target . org-texinfo-radio-target)
-    (section . org-texinfo-section)
-    (special-block . org-texinfo-special-block)
-    (src-block . org-texinfo-src-block)
-    (statistics-cookie . org-texinfo-statistics-cookie)
-    (strike-through . org-texinfo-strike-through)
-    (subscript . org-texinfo-subscript)
-    (superscript . org-texinfo-superscript)
-    (table . org-texinfo-table)
-    (table-cell . org-texinfo-table-cell)
-    (table-row . org-texinfo-table-row)
-    (target . org-texinfo-target)
-    (template . org-texinfo-template)
-    (timestamp . org-texinfo-timestamp)
-    (underline . org-texinfo-underline)
-    (verbatim . org-texinfo-verbatim)
-    (verse-block . org-texinfo-verse-block))
-  :filters-alist
-  '((:filter-headline . org-texinfo--filter-section-blank-lines)
-    (:filter-parse-tree . org-texinfo--normalize-headlines)
-    (:filter-section . org-texinfo--filter-section-blank-lines)
-    (:filter-final-output . org-texinfo--untabify))
-  :menu-entry
-  '(?i "Export to Texinfo"
-       ((?t "As TEXI file" org-texinfo-export-to-texinfo)
-	(?i "As INFO file" org-texinfo-export-to-info)
-	(?o "As INFO file and open"
-	    (lambda (a s v b)
-	      (if a (org-texinfo-export-to-info t s v b)
-		(org-open-file (org-texinfo-export-to-info nil s v b)))))))
-  :options-alist
-  '((:texinfo-filename "TEXINFO_FILENAME" nil nil t)
-    (:texinfo-class "TEXINFO_CLASS" nil org-texinfo-default-class t)
-    (:texinfo-header "TEXINFO_HEADER" nil nil newline)
-    (:texinfo-post-header "TEXINFO_POST_HEADER" nil nil newline)
-    (:subtitle "SUBTITLE" nil nil parse)
-    (:subauthor "SUBAUTHOR" nil nil newline)
-    (:texinfo-dircat "TEXINFO_DIR_CATEGORY" nil nil t)
-    (:texinfo-dirtitle "TEXINFO_DIR_TITLE" nil nil t)
-    (:texinfo-dirdesc "TEXINFO_DIR_DESC" nil nil t)
-    (:texinfo-printed-title "TEXINFO_PRINTED_TITLE" nil nil t)
-    ;; Other variables.
-    (:texinfo-classes nil nil org-texinfo-classes)
-    (:texinfo-format-headline-function nil nil org-texinfo-format-headline-function)
-    (:texinfo-node-description-column nil nil org-texinfo-node-description-column)
-    (:texinfo-active-timestamp-format nil nil org-texinfo-active-timestamp-format)
-    (:texinfo-inactive-timestamp-format nil nil org-texinfo-inactive-timestamp-format)
-    (:texinfo-diary-timestamp-format nil nil org-texinfo-diary-timestamp-format)
-    (:texinfo-link-with-unknown-path-format nil nil org-texinfo-link-with-unknown-path-format)
-    (:texinfo-tables-verbatim nil nil org-texinfo-tables-verbatim)
-    (:texinfo-table-scientific-notation nil nil org-texinfo-table-scientific-notation)
-    (:texinfo-table-default-markup nil nil org-texinfo-table-default-markup)
-    (:texinfo-text-markup-alist nil nil org-texinfo-text-markup-alist)
-    (:texinfo-format-drawer-function nil nil org-texinfo-format-drawer-function)
-    (:texinfo-format-inlinetask-function nil nil org-texinfo-format-inlinetask-function)))
-
-
-
-;;; User Configurable Variables
-
-(defgroup org-export-texinfo nil
-  "Options for exporting Org mode files to Texinfo."
-  :tag "Org Export Texinfo"
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :group 'org-export)
-
-;;;; Preamble
-
-(defcustom org-texinfo-coding-system nil
-  "Default document encoding for Texinfo output.
-
-If nil it will default to `buffer-file-coding-system'."
-  :group 'org-export-texinfo
-  :type 'coding-system)
-
-(defcustom org-texinfo-default-class "info"
-  "The default Texinfo class."
-  :group 'org-export-texinfo
-  :type '(string :tag "Texinfo class"))
-
-(defcustom org-texinfo-classes
-  '(("info"
-     "@documentencoding AUTO\n@documentlanguage AUTO"
-     ("@chapter %s" "@unnumbered %s" "@appendix %s")
-     ("@section %s" "@unnumberedsec %s" "@appendixsec %s")
-     ("@subsection %s" "@unnumberedsubsec %s" "@appendixsubsec %s")
-     ("@subsubsection %s" "@unnumberedsubsubsec %s" "@appendixsubsubsec %s")))
-  "Alist of Texinfo classes and associated header and structure.
-If #+TEXINFO_CLASS is set in the buffer, use its value and the
-associated information.  Here is the structure of a class
-definition:
-
-  (class-name
-    header-string
-    (numbered-1 unnumbered-1 appendix-1)
-    (numbered-2 unnumbered-2 appendix-2)
-    ...)
-
-
-The header string
------------------
-
-The header string is inserted in the header of the generated
-document, right after \"@setfilename\" and \"@settitle\"
-commands.
-
-If it contains the special string
-
-  \"@documentencoding AUTO\"
-
-\"AUTO\" will be replaced with an appropriate coding system.  See
-`org-texinfo-coding-system' for more information.  Likewise, if
-the string contains the special string
-
-  \"@documentlanguage AUTO\"
-
-\"AUTO\" will be replaced with the language defined in the
-buffer, through #+LANGUAGE keyword, or globally, with
-`org-export-default-language', which see.
-
-
-The sectioning structure
-------------------------
-
-The sectioning structure of the class is given by the elements
-following the header string.  For each sectioning level, a number
-of strings is specified.  A %s formatter is mandatory in each
-section string and will be replaced by the title of the section."
-  :group 'org-export-texinfo
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type '(repeat
-	  (list (string :tag "Texinfo class")
-		(string :tag "Texinfo header")
-		(repeat :tag "Levels" :inline t
-			(choice
-			 (list :tag "Heading"
-			       (string :tag "  numbered")
-			       (string :tag "unnumbered")
-			       (string :tag "  appendix")))))))
-
-;;;; Headline
-
-(defcustom org-texinfo-format-headline-function
-  'org-texinfo-format-headline-default-function
-  "Function to format headline text.
-
-This function will be called with 5 arguments:
-TODO      the todo keyword (string or nil).
-TODO-TYPE the type of todo (symbol: `todo', `done', nil)
-PRIORITY  the priority of the headline (integer or nil)
-TEXT      the main headline text (string).
-TAGS      the tags as a list of strings (list of strings or nil).
-
-The function result will be used in the section format string."
-  :group 'org-export-texinfo
-  :type 'function
-  :version "26.1"
-  :package-version '(Org . "8.3"))
-
-;;;; Node listing (menu)
-
-(defcustom org-texinfo-node-description-column 32
-  "Column at which to start the description in the node listings.
-If a node title is greater than this length, the description will
-be placed after the end of the title."
-  :group 'org-export-texinfo
-  :type 'integer)
-
-;;;; Timestamps
-
-(defcustom org-texinfo-active-timestamp-format "@emph{%s}"
-  "A printf format string to be applied to active timestamps."
-  :group 'org-export-texinfo
-  :type 'string)
-
-(defcustom org-texinfo-inactive-timestamp-format "@emph{%s}"
-  "A printf format string to be applied to inactive timestamps."
-  :group 'org-export-texinfo
-  :type 'string)
-
-(defcustom org-texinfo-diary-timestamp-format "@emph{%s}"
-  "A printf format string to be applied to diary timestamps."
-  :group 'org-export-texinfo
-  :type 'string)
-
-;;;; Links
-
-(defcustom org-texinfo-link-with-unknown-path-format "@indicateurl{%s}"
-  "Format string for links with unknown path type."
-  :group 'org-export-texinfo
-  :type 'string)
-
-;;;; Tables
-
-(defcustom org-texinfo-tables-verbatim nil
-  "When non-nil, tables are exported verbatim."
-  :group 'org-export-texinfo
-  :type 'boolean)
-
-(defcustom org-texinfo-table-scientific-notation "%s\\,(%s)"
-  "Format string to display numbers in scientific notation.
-
-The format should have \"%s\" twice, for mantissa and exponent
-\(i.e. \"%s\\\\times10^{%s}\").
-
-When nil, no transformation is made."
-  :group 'org-export-texinfo
-  :type '(choice
-	  (string :tag "Format string")
-	  (const :tag "No formatting" nil)))
-
-(defcustom org-texinfo-table-default-markup "@asis"
-  "Default markup for first column in two-column tables.
-
-This should an indicating command, e.g., \"@code\", \"@kbd\" or
-\"@samp\".
-
-It can be overridden locally using the \":indic\" attribute."
-  :group 'org-export-texinfo
-  :type 'string
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :safe #'stringp)
-
-;;;; Text markup
-
-(defcustom org-texinfo-text-markup-alist '((bold . "@strong{%s}")
-					   (code . code)
-					   (italic . "@emph{%s}")
-					   (verbatim . samp))
-  "Alist of Texinfo expressions to convert text markup.
-
-The key must be a symbol among `bold', `code', `italic',
-`strike-through', `underscore' and `verbatim'.  The value is
-a formatting string to wrap fontified text with.
-
-Value can also be set to the following symbols: `verb', `samp'
-and `code'.  With the first one, Org uses \"@verb\" to create
-a format string and selects a delimiter character that isn't in
-the string.  For the other two, Org uses \"@samp\" or \"@code\"
-to typeset and protects special characters.
-
-When no association is found for a given markup, text is returned
-as-is."
-  :group 'org-export-texinfo
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type 'alist
-  :options '(bold code italic strike-through underscore verbatim))
-
-;;;; Drawers
-
-(defcustom org-texinfo-format-drawer-function (lambda (_name contents) contents)
-  "Function called to format a drawer in Texinfo code.
-
-The function must accept two parameters:
-  NAME      the drawer name, like \"LOGBOOK\"
-  CONTENTS  the contents of the drawer.
-
-The function should return the string to be exported.
-
-The default function simply returns the value of CONTENTS."
-  :group 'org-export-texinfo
-  :version "24.4"
-  :package-version '(Org . "8.2")
-  :type 'function)
-
-;;;; Inlinetasks
-
-(defcustom org-texinfo-format-inlinetask-function
-  'org-texinfo-format-inlinetask-default-function
-  "Function called to format an inlinetask in Texinfo code.
-
-The function must accept six parameters:
-  TODO      the todo keyword, as a string
-  TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
-  PRIORITY  the inlinetask priority, as a string
-  NAME      the inlinetask name, as a string.
-  TAGS      the inlinetask tags, as a list of strings.
-  CONTENTS  the contents of the inlinetask, as a string.
-
-The function should return the string to be exported."
-  :group 'org-export-texinfo
-  :type 'function)
-
-;;;; Compilation
-
-(defcustom org-texinfo-info-process '("makeinfo --no-split %f")
-  "Commands to process a Texinfo file to an INFO file.
-
-This is a list of strings, each of them will be given to the
-shell as a command.  %f in the command will be replaced by the
-relative file name, %F by the absolute file name, %b by the file
-base name (i.e. without directory and extension parts), %o by the
-base directory of the file and %O by the absolute file name of
-the output file."
-  :group 'org-export-texinfo
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type '(repeat :tag "Shell command sequence"
-		 (string :tag "Shell command")))
-
-(defcustom org-texinfo-logfiles-extensions
-  '("aux" "toc" "cp" "fn" "ky" "pg" "tp" "vr")
-  "The list of file extensions to consider as Texinfo logfiles.
-The logfiles will be remove if `org-texinfo-remove-logfiles' is
-non-nil."
-  :group 'org-export-texinfo
-  :type '(repeat (string :tag "Extension")))
-
-(defcustom org-texinfo-remove-logfiles t
-  "Non-nil means remove the logfiles produced by compiling a Texinfo file.
-By default, logfiles are files with these extensions: .aux, .toc,
-.cp, .fn, .ky, .pg and .tp.  To define the set of logfiles to remove,
-set `org-texinfo-logfiles-extensions'."
-  :group 'org-export-latex
-  :type 'boolean)
-
-;;; Constants
-
-(defconst org-texinfo-max-toc-depth 4
-  "Maximum depth for creation of detailed menu listings.
-Beyond this depth, Texinfo will not recognize the nodes and will
-cause errors.  Left as a constant in case this value ever
-changes.")
-
-(defconst org-texinfo-supported-coding-systems
-  '("US-ASCII" "UTF-8" "ISO-8859-15" "ISO-8859-1" "ISO-8859-2" "koi8-r" "koi8-u")
-  "List of coding systems supported by Texinfo, as strings.
-Specified coding system will be matched against these strings.
-If two strings share the same prefix (e.g. \"ISO-8859-1\" and
-\"ISO-8859-15\"), the most specific one has to be listed first.")
-
-(defconst org-texinfo-inline-image-rules
-  (list (cons "file"
-	      (regexp-opt '("eps" "pdf" "png" "jpg" "jpeg" "gif" "svg"))))
-  "Rules characterizing image files that can be inlined.")
-
-
-;;; Internal Functions
-
-(defun org-texinfo--untabify (s _backend _info)
-  "Remove TAB characters in string S."
-  (replace-regexp-in-string "\t" (make-string tab-width ?\s) s))
-
-(defun org-texinfo--filter-section-blank-lines (headline _backend _info)
-  "Filter controlling number of blank lines after a section."
-  (replace-regexp-in-string "\n\\(?:\n[ \t]*\\)*\\'" "\n\n" headline))
-
-(defun org-texinfo--normalize-headlines (tree _backend info)
-  "Normalize headlines in TREE.
-
-BACK-END is the symbol specifying back-end used for export. INFO
-is a plist used as a communication channel.
-
-Make sure every headline in TREE contains a section, since those
-are required to install a menu.  Also put exactly one blank line
-at the end of each section.
-
-Return new tree."
-  (org-element-map tree 'headline
-    (lambda (hl)
-      (org-element-put-property hl :post-blank 1)
-      (let ((contents (org-element-contents hl)))
-	(when contents
-	  (let ((first (org-element-map contents '(headline section)
-			 #'identity info t)))
-	    (unless (eq (org-element-type first) 'section)
-	      (apply #'org-element-set-contents
-		     hl
-		     (cons `(section (:parent ,hl)) contents)))))))
-    info)
-  tree)
-
-(defun org-texinfo--find-verb-separator (s)
-  "Return a character not used in string S.
-This is used to choose a separator for constructs like \\verb."
-  (let ((ll "~,./?;':\"|!@#%^&-_=+abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ<>()[]{}"))
-    (cl-loop for c across ll
-	     when (not (string-match (regexp-quote (char-to-string c)) s))
-	     return (char-to-string c))))
-
-(defun org-texinfo--text-markup (text markup _info)
-  "Format TEXT depending on MARKUP text markup.
-INFO is a plist used as a communication channel.  See
-`org-texinfo-text-markup-alist' for details."
-  (pcase (cdr (assq markup org-texinfo-text-markup-alist))
-    (`nil text)				;no markup: return raw text
-    (`code (format "@code{%s}" (org-texinfo--sanitize-content text)))
-    (`samp (format "@samp{%s}" (org-texinfo--sanitize-content text)))
-    (`verb
-     (let ((separator (org-texinfo--find-verb-separator text)))
-       (format "@verb{%s%s%s}" separator text separator)))
-    ;; Else use format string.
-    (fmt (format fmt text))))
-
-(defun org-texinfo--get-node (datum info)
-  "Return node or anchor associated to DATUM.
-DATUM is an element or object.  INFO is a plist used as
-a communication channel.  The function guarantees the node or
-anchor name is unique."
-  (let ((cache (plist-get info :texinfo-node-cache)))
-    (or (cdr (assq datum cache))
-	(let* ((salt 0)
-	       (basename
-		(org-texinfo--sanitize-node
-		 (if (eq (org-element-type datum) 'headline)
-		     (org-texinfo--sanitize-title
-		      (org-export-get-alt-title datum info) info)
-		   (org-export-get-reference datum info))))
-	       (name basename))
-	  ;; Ensure NAME is unique and not reserved node name "Top".
-	  (while (or (equal name "Top") (rassoc name cache))
-	    (setq name (concat basename (format " %d" (cl-incf salt)))))
-	  (plist-put info :texinfo-node-cache (cons (cons datum name) cache))
-	  name))))
-
-(defun org-texinfo--sanitize-node (title)
-  "Bend string TITLE to node line requirements.
-Trim string and collapse multiple whitespace characters as they
-are not significant.  Replace leading left parenthesis, when
-followed by a right parenthesis, with a square bracket.  Remove
-periods, commas and colons."
-  (org-trim
-   (replace-regexp-in-string
-    "[ \t]+" " "
-    (replace-regexp-in-string
-     "[:,.]" ""
-     (replace-regexp-in-string "\\`(\\(.*?)\\)" "[\\1" title)))))
-
-(defun org-texinfo--sanitize-title (title info)
-  "Make TITLE suitable as a section name.
-TITLE is a string or a secondary string.  INFO is the current
-export state, as a plist."
-  (org-export-data-with-backend
-   title
-   (org-export-create-backend
-    :parent 'texinfo
-    :transcoders '((footnote-reference . ignore)
-		   (link . (lambda (l c i)
-			     (or c
-				 (org-export-data
-				  (org-element-property :raw-link l)
-				  i))))
-		   (radio-target . (lambda (_r c _i) c))
-		   (target . ignore)))
-   info))
-
-(defun org-texinfo--sanitize-content (text)
-  "Escape special characters in string TEXT.
-Special characters are: @ { }"
-  (replace-regexp-in-string "[@{}]" "@\\&" text))
-
-(defun org-texinfo--wrap-float (value info &optional type label caption short)
-  "Wrap string VALUE within a @float command.
-INFO is the current export state, as a plist.  TYPE is float
-type, as a string.  LABEL is the cross reference label for the
-float, as a string.  CAPTION and SHORT are, respectively, the
-caption and shortcaption used for the float, as secondary
-strings (e.g., returned by `org-export-get-caption')."
-  (let* ((backend
-	  (org-export-create-backend
-	   :parent 'texinfo
-	   :transcoders '((link . (lambda (l c i)
-				    (or c
-					(org-export-data
-					 (org-element-property :raw-link l)
-					 i))))
-			  (radio-target . (lambda (_r c _i) c))
-			  (target . ignore))))
-	 (short-backend
-	  (org-export-create-backend
-	   :parent 'texinfo
-	   :transcoders
-	   '((footnote-reference . ignore)
-	     (inline-src-block . ignore)
-	     (link . (lambda (l c i)
-		       (or c
-			   (org-export-data
-			    (org-element-property :raw-link l)
-			    i))))
-	     (radio-target . (lambda (_r c _i) c))
-	     (target . ignore)
-	     (verbatim . ignore))))
-	 (short-str
-	  (if (and short caption)
-	      (format "@shortcaption{%s}\n"
-		      (org-export-data-with-backend short short-backend info))
-	    ""))
-	 (caption-str
-	  (if (or short caption)
-	      (format "@caption{%s}\n"
-		      (org-export-data-with-backend
-		       (or caption short)
-		       (if (equal short-str "") short-backend backend)
-		       info))
-	    "")))
-    (format "@float %s%s\n%s\n%s%s@end float"
-	    type (if label (concat "," label) "") value caption-str short-str)))
-
-;;; Template
-
-(defun org-texinfo-template (contents info)
-  "Return complete document string after Texinfo conversion.
-CONTENTS is the transcoded contents string.  INFO is a plist
-holding export options."
-  (let ((title (org-export-data (plist-get info :title) info))
-	;; Copying data is the contents of the first headline in
-	;; parse tree with a non-nil copying property.
-	(copying (org-element-map (plist-get info :parse-tree) 'headline
-		   (lambda (hl)
-		     (and (org-not-nil (org-element-property :COPYING hl))
-			  (org-element-contents hl)))
-		   info t)))
-    (concat
-     "\\input texinfo    @c -*- texinfo -*-\n"
-     "@c %**start of header\n"
-     (let ((file (or (plist-get info :texinfo-filename)
-		     (let ((f (plist-get info :output-file)))
-		       (and f (concat (file-name-sans-extension f) ".info"))))))
-       (and file (format "@setfilename %s\n" file)))
-     (format "@settitle %s\n" title)
-     ;; Insert class-defined header.
-     (org-element-normalize-string
-      (let ((header (nth 1 (assoc (plist-get info :texinfo-class)
-				  org-texinfo-classes)))
-	    (coding
-	     (catch 'coding-system
-	       (let ((case-fold-search t)
-		     (name (symbol-name (or org-texinfo-coding-system
-					    buffer-file-coding-system))))
-		 (dolist (system org-texinfo-supported-coding-systems "UTF-8")
-		   (when (string-match-p (regexp-quote system) name)
-		     (throw 'coding-system system))))))
-	    (language (plist-get info :language))
-	    (case-fold-search nil))
-	;; Auto coding system.
-	(replace-regexp-in-string
-	 "^@documentencoding \\(AUTO\\)$"
-	 coding
-	 (replace-regexp-in-string
-	  "^@documentlanguage \\(AUTO\\)$" language header t nil 1) t nil 1)))
-     ;; Additional header options set by #+TEXINFO_HEADER.
-     (let ((texinfo-header (plist-get info :texinfo-header)))
-       (and texinfo-header (org-element-normalize-string texinfo-header)))
-     "@c %**end of header\n\n"
-     ;; Additional options set by #+TEXINFO_POST_HEADER.
-     (let ((texinfo-post-header (plist-get info :texinfo-post-header)))
-       (and texinfo-post-header
-	    (org-element-normalize-string texinfo-post-header)))
-     ;; Copying.
-     (and copying
-	  (format "@copying\n%s@end copying\n\n"
-		  (org-element-normalize-string
-		   (org-export-data copying info))))
-     ;; Info directory information.  Only supply if both title and
-     ;; category are provided.
-     (let ((dircat (plist-get info :texinfo-dircat))
-	   (dirtitle
-	    (let ((title (plist-get info :texinfo-dirtitle)))
-	      (and title
-		   (string-match "^\\(?:\\* \\)?\\(.*?\\)\\(\\.\\)?$" title)
-		   (format "* %s." (match-string 1 title))))))
-       (when (and dircat dirtitle)
-	 (concat "@dircategory " dircat "\n"
-		 "@direntry\n"
-		 (let ((dirdesc
-			(let ((desc (plist-get info :texinfo-dirdesc)))
-			  (cond ((not desc) nil)
-				((string-suffix-p "." desc) desc)
-				(t (concat desc "."))))))
-		   (if dirdesc (format "%-23s %s" dirtitle dirdesc) dirtitle))
-		 "\n"
-		 "@end direntry\n\n")))
-     ;; Title
-     "@finalout\n"
-     "@titlepage\n"
-     (when (plist-get info :with-title)
-       (concat
-	(format "@title %s\n"
-		(or (plist-get info :texinfo-printed-title) title ""))
-	(let ((subtitle (plist-get info :subtitle)))
-	  (when subtitle
-	    (format "@subtitle %s\n"
-		    (org-export-data subtitle info))))))
-     (when (plist-get info :with-author)
-       (concat
-	;; Primary author.
-	(let ((author (org-string-nw-p
-		       (org-export-data (plist-get info :author) info)))
-	      (email (and (plist-get info :with-email)
-			  (org-string-nw-p
-			   (org-export-data (plist-get info :email) info)))))
-	  (cond ((and author email)
-		 (format "@author %s (@email{%s})\n" author email))
-		(author (format "@author %s\n" author))
-		(email (format "@author @email{%s}\n" email))))
-	;; Other authors.
-	(let ((subauthor (plist-get info :subauthor)))
-	  (and subauthor
-	       (org-element-normalize-string
-		(replace-regexp-in-string "^" "@author " subauthor))))))
-     (and copying "@page\n@vskip 0pt plus 1filll\n@insertcopying\n")
-     "@end titlepage\n\n"
-     ;; Table of contents.
-     (and (plist-get info :with-toc) "@contents\n\n")
-     ;; Configure Top Node when not for TeX.  Also include contents
-     ;; from the first section of the document.
-     "@ifnottex\n"
-     "@node Top\n"
-     (format "@top %s\n" title)
-     (let* ((first-section
-	     (org-element-map (plist-get info :parse-tree) 'section
-	       #'identity info t '(headline)))
-	    (top-contents
-	     (org-export-data (org-element-contents first-section) info)))
-       (and (org-string-nw-p top-contents) (concat "\n" top-contents)))
-     "@end ifnottex\n\n"
-     ;; Menu.
-     (org-texinfo-make-menu (plist-get info :parse-tree) info 'master)
-     "\n"
-     ;; Document's body.
-     contents "\n"
-     ;; Creator.
-     (and (plist-get info :with-creator)
-	  (concat (plist-get info :creator) "\n"))
-     ;; Document end.
-     "@bye")))
-
-
-
-;;; Transcode Functions
-
-;;;; Bold
-
-(defun org-texinfo-bold (_bold contents info)
-  "Transcode BOLD from Org to Texinfo.
-CONTENTS is the text with bold markup.  INFO is a plist holding
-contextual information."
-  (org-texinfo--text-markup contents 'bold info))
-
-;;;; Center Block
-
-(defun org-texinfo-center-block (_center-block contents _info)
-  "Transcode a CENTER-BLOCK element from Org to Texinfo.
-CONTENTS holds the contents of the block.  INFO is a plist used
-as a communication channel."
-  contents)
-
-;;;; Clock
-
-(defun org-texinfo-clock (clock _contents info)
-  "Transcode a CLOCK element from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (concat
-   "@noindent"
-   (format "@strong{%s} " org-clock-string)
-   (format (plist-get info :texinfo-inactive-timestamp-format)
-	   (concat (org-timestamp-translate (org-element-property :value clock))
-		   (let ((time (org-element-property :duration clock)))
-		     (and time (format " (%s)" time)))))
-   "@*"))
-
-;;;; Code
-
-(defun org-texinfo-code (code _contents info)
-  "Transcode a CODE object from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (org-texinfo--text-markup (org-element-property :value code) 'code info))
-
-;;;; Drawer
-
-(defun org-texinfo-drawer (drawer contents info)
-  "Transcode a DRAWER element from Org to Texinfo.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let* ((name (org-element-property :drawer-name drawer))
-	 (output (funcall (plist-get info :texinfo-format-drawer-function)
-			  name contents)))
-    output))
-
-;;;; Dynamic Block
-
-(defun org-texinfo-dynamic-block (_dynamic-block contents _info)
-  "Transcode a DYNAMIC-BLOCK element from Org to Texinfo.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  contents)
-
-;;;; Entity
-
-(defun org-texinfo-entity (entity _contents _info)
-  "Transcode an ENTITY object from Org to Texinfo."
-  ;; Since there is not specific Texinfo entry in entities, use
-  ;; Texinfo-specific commands whenever possible, and fallback to
-  ;; UTF-8 otherwise.
-  (pcase (org-element-property :name entity)
-    ("AElig"                       "@AE{}")
-    ("aelig"                       "@ae{}")
-    ((or "bull" "bullet")          "@bullet{}")
-    ("copy"                        "@copyright{}")
-    ("deg"                         "@textdegree{}")
-    ((or "dots" "hellip")          "@dots{}")
-    ("equiv"                       "@equiv{}")
-    ((or "euro" "EUR")             "@euro{}")
-    ((or "ge" "geq")               "@geq{}")
-    ("laquo"                       "@guillemetleft{}")
-    ("iexcl"                       "@exclamdown{}")
-    ("imath"                       "@dotless{i}")
-    ("iquest"                      "@questiondown{}")
-    ("jmath"                       "@dotless{j}")
-    ((or "le" "leq")               "@leq{}")
-    ("lsaquo"                      "@guilsinglleft{}")
-    ("mdash"                       "---")
-    ("minus"                       "@minus{}")
-    ("nbsp"                        "@tie{}")
-    ("ndash"                       "--")
-    ("OElig"                       "@OE{}")
-    ("oelig"                       "@oe{}")
-    ("ordf"                        "@ordf{}")
-    ("ordm"                        "@ordm{}")
-    ("pound"                       "@pound{}")
-    ("raquo"                       "@guillemetright{}")
-    ((or "rArr" "Rightarrow")      "@result{}")
-    ("reg"                         "@registeredsymbol{}")
-    ((or "rightarrow" "to" "rarr") "@arrow{}")
-    ("rsaquo"                      "@guilsinglright{}")
-    ("thorn"                       "@th{}")
-    ("THORN"                       "@TH{}")
-    ((and (pred (string-prefix-p "_")) name) ;spacing entities
-     (format "@w{%s}" (substring name 1)))
-    (_ (org-element-property :utf-8 entity))))
-
-;;;; Example Block
-
-(defun org-texinfo-example-block (example-block _contents info)
-  "Transcode an EXAMPLE-BLOCK element from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "@example\n%s@end example"
-	  (org-texinfo--sanitize-content
-	   (org-export-format-code-default example-block info))))
-
-;;; Export Block
-
-(defun org-texinfo-export-block (export-block _contents _info)
-  "Transcode a EXPORT-BLOCK element from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (string= (org-element-property :type export-block) "TEXINFO")
-    (org-remove-indentation (org-element-property :value export-block))))
-
-;;; Export Snippet
-
-(defun org-texinfo-export-snippet (export-snippet _contents _info)
-  "Transcode a EXPORT-SNIPPET object from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (when (eq (org-export-snippet-backend export-snippet) 'texinfo)
-    (org-element-property :value export-snippet)))
-
-;;;; Fixed Width
-
-(defun org-texinfo-fixed-width (fixed-width _contents _info)
-  "Transcode a FIXED-WIDTH element from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (format "@example\n%s@end example"
-	  (org-remove-indentation
-	   (org-texinfo--sanitize-content
-	    (org-element-property :value fixed-width)))))
-
-;;;; Footnote Reference
-
-(defun org-texinfo-footnote-reference (footnote _contents info)
-  "Create a footnote reference for FOOTNOTE.
-
-FOOTNOTE is the footnote to define.  CONTENTS is nil.  INFO is a
-plist holding contextual information."
-  (let ((def (org-export-get-footnote-definition footnote info)))
-    (format "@footnote{%s}"
-	    (org-trim (org-export-data def info)))))
-
-;;;; Headline
-
-(defun org-texinfo--structuring-command (headline info)
-  "Return Texinfo structuring command string for HEADLINE element.
-Return nil if HEADLINE is to be ignored, `plain-list' if it
-should be exported as a plain-list item.  INFO is a plist holding
-contextual information."
-  (cond
-   ((org-element-property :footnote-section-p headline) nil)
-   ((org-not-nil (org-export-get-node-property :COPYING headline t)) nil)
-   ((org-export-low-level-p headline info) 'plain-list)
-   (t
-    (let ((class (plist-get info :texinfo-class)))
-      (pcase (assoc class (plist-get info :texinfo-classes))
-	(`(,_ ,_ . ,sections)
-	 (pcase (nth (1- (org-export-get-relative-level headline info))
-		     sections)
-	   (`(,numbered ,unnumbered ,appendix)
-	    (cond
-	     ((org-not-nil (org-export-get-node-property :APPENDIX headline t))
-	      appendix)
-	     ((org-not-nil (org-export-get-node-property :INDEX headline t))
-	      unnumbered)
-	     ((org-export-numbered-headline-p headline info) numbered)
-	     (t unnumbered)))
-	   (`nil 'plain-list)
-	   (_ (user-error "Invalid Texinfo class specification: %S" class))))
-	(_ (user-error "Invalid Texinfo class specification: %S" class)))))))
-
-(defun org-texinfo-headline (headline contents info)
-  "Transcode a HEADLINE element from Org to Texinfo.
-CONTENTS holds the contents of the headline.  INFO is a plist
-holding contextual information."
-  (let ((section-fmt (org-texinfo--structuring-command headline info)))
-    (when section-fmt
-      (let* ((todo
-	      (and (plist-get info :with-todo-keywords)
-		   (let ((todo (org-element-property :todo-keyword headline)))
-		     (and todo (org-export-data todo info)))))
-	     (todo-type (and todo (org-element-property :todo-type headline)))
-	     (tags (and (plist-get info :with-tags)
-			(org-export-get-tags headline info)))
-	     (priority (and (plist-get info :with-priority)
-			    (org-element-property :priority headline)))
-	     (text (org-texinfo--sanitize-title
-		    (org-element-property :title headline) info))
-	     (full-text
-	      (funcall (plist-get info :texinfo-format-headline-function)
-		       todo todo-type priority text tags))
-	     (contents
-	      (concat "\n"
-		      (if (org-string-nw-p contents)
-			  (concat "\n" contents)
-			"")
-		      (let ((index (org-element-property :INDEX headline)))
-			(and (member index '("cp" "fn" "ky" "pg" "tp" "vr"))
-			     (format "\n@printindex %s\n" index))))))
-	(cond
-	 ((eq section-fmt 'plain-list)
-	  (let ((numbered? (org-export-numbered-headline-p headline info)))
-	    (concat (and (org-export-first-sibling-p headline info)
-			 (format "@%s\n" (if numbered? 'enumerate 'itemize)))
-		    "@item\n" full-text "\n"
-		    contents
-		    (if (org-export-last-sibling-p headline info)
-			(format "@end %s" (if numbered? 'enumerate 'itemize))
-		      "\n"))))
-	 (t
-	  (concat (format "@node %s\n" (org-texinfo--get-node headline info))
-		  (format section-fmt full-text)
-		  contents)))))))
-
-(defun org-texinfo-format-headline-default-function
-  (todo _todo-type priority text tags)
-  "Default format function for a headline.
-See `org-texinfo-format-headline-function' for details."
-  (concat (when todo (format "@strong{%s} " todo))
-	  (when priority (format "@emph{#%s} " priority))
-	  text
-	  (when tags (format " :%s:" (mapconcat 'identity tags ":")))))
-
-;;;; Inline Src Block
-
-(defun org-texinfo-inline-src-block (inline-src-block _contents _info)
-  "Transcode an INLINE-SRC-BLOCK element from Org to Texinfo.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (format "@code{%s}"
-	  (org-texinfo--sanitize-content
-	   (org-element-property :value inline-src-block))))
-
-;;;; Inlinetask
-
-(defun org-texinfo-inlinetask (inlinetask contents info)
-  "Transcode an INLINETASK element from Org to Texinfo.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let ((title (org-export-data (org-element-property :title inlinetask) info))
-	(todo (and (plist-get info :with-todo-keywords)
-		   (let ((todo (org-element-property :todo-keyword inlinetask)))
-		     (and todo (org-export-data todo info)))))
-	(todo-type (org-element-property :todo-type inlinetask))
-	(tags (and (plist-get info :with-tags)
-		   (org-export-get-tags inlinetask info)))
-	(priority (and (plist-get info :with-priority)
-		       (org-element-property :priority inlinetask))))
-    (funcall (plist-get info :texinfo-format-inlinetask-function)
-	     todo todo-type priority title tags contents)))
-
-(defun org-texinfo-format-inlinetask-default-function
-  (todo _todo-type priority title tags contents)
-  "Default format function for inlinetasks.
-See `org-texinfo-format-inlinetask-function' for details."
-  (let ((full-title
-	 (concat (when todo (format "@strong{%s} " todo))
-		 (when priority (format "#%c " priority))
-		 title
-		 (when tags (format ":%s:" (mapconcat #'identity tags ":"))))))
-    (format "@center %s\n\n%s\n" full-title contents)))
-
-;;;; Italic
-
-(defun org-texinfo-italic (_italic contents info)
-  "Transcode ITALIC from Org to Texinfo.
-CONTENTS is the text with italic markup.  INFO is a plist holding
-contextual information."
-  (org-texinfo--text-markup contents 'italic info))
-
-;;;; Item
-
-(defun org-texinfo-item (item contents info)
-  "Transcode an ITEM element from Org to Texinfo.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((tag (org-element-property :tag item))
-	 (split (org-string-nw-p
-		 (org-export-read-attribute :attr_texinfo
-					    (org-element-property :parent item)
-					    :sep)))
-	 (items (and tag
-		     (let ((tag (org-export-data tag info)))
-		       (if split
-			   (split-string tag (regexp-quote split) t "[ \t\n]+")
-			 (list tag))))))
-    (format "%s\n%s"
-	    (pcase items
-	      (`nil "@item")
-	      (`(,item) (concat "@item " item))
-	      (`(,item . ,items)
-	       (concat "@item " item "\n"
-		       (mapconcat (lambda (i) (concat "@itemx " i))
-				  items
-				  "\n"))))
-	    (or contents ""))))
-
-;;;; Keyword
-
-(defun org-texinfo-keyword (keyword _contents info)
-  "Transcode a KEYWORD element from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (let ((value (org-element-property :value keyword)))
-    (pcase (org-element-property :key keyword)
-      ("TEXINFO" value)
-      ("CINDEX" (format "@cindex %s" value))
-      ("FINDEX" (format "@findex %s" value))
-      ("KINDEX" (format "@kindex %s" value))
-      ("PINDEX" (format "@pindex %s" value))
-      ("TINDEX" (format "@tindex %s" value))
-      ("VINDEX" (format "@vindex %s" value))
-      ("TOC"
-       (cond ((string-match-p "\\<tables\\>" value)
-	      (concat "@listoffloats "
-		      (org-export-translate "Table" :utf-8 info)))
-	     ((string-match-p "\\<listings\\>" value)
-	      (concat "@listoffloats "
-		      (org-export-translate "Listing" :utf-8 info))))))))
-
-;;;; Line Break
-
-(defun org-texinfo-line-break (_line-break _contents _info)
-  "Transcode a LINE-BREAK object from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  "@*\n")
-
-;;;; Link
-
-(defun org-texinfo--@ref (datum description info)
-  "Return @ref command for element or object DATUM.
-DESCRIPTION is the printed name of the section, as a string, or
-nil."
-  (let ((node-name (org-texinfo--get-node datum info))
-	;; Sanitize DESCRIPTION for cross-reference use.  In
-	;; particular, remove colons as they seem to cause pain (even
-	;; within @asis{...}) to the Texinfo reader.
-	(title (and description
-		    (replace-regexp-in-string
-		     "[ \t]*:+" ""
-		     (replace-regexp-in-string "," "@comma{}" description)))))
-    (if (or (not title) (equal title node-name))
-	(format "@ref{%s}" node-name)
-      (format "@ref{%s, , %s}" node-name title))))
-
-(defun org-texinfo-link (link desc info)
-  "Transcode a LINK object from Org to Texinfo.
-DESC is the description part of the link, or the empty string.
-INFO is a plist holding contextual information.  See
-`org-export-data'."
-  (let* ((type (org-element-property :type link))
-	 (raw-path (org-element-property :path link))
-	 ;; Ensure DESC really exists, or set it to nil.
-	 (desc (and (not (string= desc "")) desc))
-	 (path (cond
-		((member type '("http" "https" "ftp"))
-		 (concat type ":" raw-path))
-		((string= type "file") (org-export-file-uri raw-path))
-		(t raw-path))))
-    (cond
-     ((org-export-custom-protocol-maybe link desc 'texinfo))
-     ((org-export-inline-image-p link org-texinfo-inline-image-rules)
-      (org-texinfo--inline-image link info))
-     ((equal type "radio")
-      (let ((destination (org-export-resolve-radio-link link info)))
-	(if (not destination) desc
-	  (org-texinfo--@ref destination desc info))))
-     ((member type '("custom-id" "id" "fuzzy"))
-      (let ((destination
-	     (if (equal type "fuzzy")
-		 (org-export-resolve-fuzzy-link link info)
-	       (org-export-resolve-id-link link info))))
-	(pcase (org-element-type destination)
-	  (`nil
-	   (format org-texinfo-link-with-unknown-path-format
-		   (org-texinfo--sanitize-content path)))
-	  ;; Id link points to an external file.
-	  (`plain-text
-	   (if desc (format "@uref{file://%s,%s}" destination desc)
-	     (format "@uref{file://%s}" destination)))
-	  ((or `headline
-	       ;; Targets within headlines cannot be turned into
-	       ;; @anchor{}, so we refer to the headline parent
-	       ;; directly.
-	       (and `target
-		    (guard (eq 'headline
-			       (org-element-type
-				(org-element-property :parent destination))))))
-	   (let ((headline (org-element-lineage destination '(headline) t)))
-	     (org-texinfo--@ref headline desc info)))
-	  (_ (org-texinfo--@ref destination desc info)))))
-     ((string= type "mailto")
-      (format "@email{%s}"
-	      (concat (org-texinfo--sanitize-content path)
-		      (and desc (concat ", " desc)))))
-     ;; External link with a description part.
-     ((and path desc) (format "@uref{%s, %s}" path desc))
-     ;; External link without a description part.
-     (path (format "@uref{%s}" path))
-     ;; No path, only description.  Try to do something useful.
-     (t
-      (format (plist-get info :texinfo-link-with-unknown-path-format) desc)))))
-
-(defun org-texinfo--inline-image (link info)
-  "Return Texinfo code for an inline image.
-LINK is the link pointing to the inline image.  INFO is the
-current state of the export, as a plist."
-  (let* ((parent (org-export-get-parent-element link))
-	 (label (and (org-element-property :name parent)
-		     (org-texinfo--get-node parent info)))
-	 (caption (org-export-get-caption parent))
-	 (shortcaption (org-export-get-caption parent t))
-	 (path  (org-element-property :path link))
-	 (filename
-	  (file-name-sans-extension
-	   (if (file-name-absolute-p path) (expand-file-name path) path)))
-	 (extension (file-name-extension path))
-	 (attributes (org-export-read-attribute :attr_texinfo parent))
-	 (height (or (plist-get attributes :height) ""))
-	 (width (or (plist-get attributes :width) ""))
-	 (alt (or (plist-get attributes :alt) ""))
-	 (image (format "@image{%s,%s,%s,%s,%s}"
-			filename width height alt extension)))
-    (cond ((or caption shortcaption)
-	   (org-texinfo--wrap-float image
-				    info
-				    (org-export-translate "Figure" :utf-8 info)
-				    label
-				    caption
-				    shortcaption))
-	  (label (concat "@anchor{" label "}\n" image))
-	  (t image))))
-
-
-;;;; Menu
-
-(defun org-texinfo-make-menu (scope info &optional master)
-  "Create the menu for inclusion in the Texinfo document.
-
-SCOPE is a headline or a full parse tree.  INFO is the
-communication channel, as a plist.
-
-When optional argument MASTER is non-nil, generate a master menu,
-including detailed node listing."
-  (let ((menu (org-texinfo--build-menu scope info)))
-    (when (org-string-nw-p menu)
-      (org-element-normalize-string
-       (format
-	"@menu\n%s@end menu"
-	(concat menu
-		(when master
-		  (let ((detailmenu
-			 (org-texinfo--build-menu
-			  scope info
-			  (let ((toc-depth (plist-get info :with-toc)))
-			    (if (wholenump toc-depth) toc-depth
-			      org-texinfo-max-toc-depth)))))
-		    (when (org-string-nw-p detailmenu)
-		      (concat "\n@detailmenu\n"
-			      "--- The Detailed Node Listing ---\n\n"
-			      detailmenu
-			      "@end detailmenu\n"))))))))))
-
-(defun org-texinfo--build-menu (scope info &optional level)
-  "Build menu for entries within SCOPE.
-SCOPE is a headline or a full parse tree.  INFO is a plist
-containing contextual information.  When optional argument LEVEL
-is an integer, build the menu recursively, down to this depth."
-  (cond
-   ((not level)
-    (org-texinfo--format-entries (org-texinfo--menu-entries scope info) info))
-   ((zerop level) "\n")
-   (t
-    (mapconcat
-     (lambda (h)
-       (let ((entries (org-texinfo--menu-entries h info)))
-	 (when entries
-	   (concat
-	    (format "%s\n\n%s\n"
-		    (org-export-data (org-export-get-alt-title h info) info)
-		    (org-texinfo--format-entries entries info))
-	    (org-texinfo--build-menu h info (1- level))))))
-     (org-texinfo--menu-entries scope info)
-     ""))))
-
-(defun org-texinfo--format-entries (entries info)
-  "Format all direct menu entries in SCOPE, as a string.
-SCOPE is either a headline or a full Org document.  INFO is
-a plist containing contextual information."
-  (org-element-normalize-string
-   (mapconcat
-    (lambda (h)
-      (let* ((title
-	      ;; Colons are used as a separator between title and node
-	      ;; name.  Remove them.
-	      (replace-regexp-in-string
-	       "[ \t]+:+" ""
-	       (org-texinfo--sanitize-title
-		(org-export-get-alt-title h info) info)))
-	     (node (org-texinfo--get-node h info))
-	     (entry (concat "* " title ":"
-			    (if (string= title node) ":"
-			      (concat " " node ". "))))
-	     (desc (org-element-property :DESCRIPTION h)))
-	(if (not desc) entry
-	  (format (format "%%-%ds %%s" org-texinfo-node-description-column)
-		  entry desc))))
-    entries "\n")))
-
-(defun org-texinfo--menu-entries (scope info)
-  "List direct children in SCOPE needing a menu entry.
-SCOPE is a headline or a full parse tree.  INFO is a plist
-holding contextual information."
-  (let* ((cache (or (plist-get info :texinfo-entries-cache)
-		    (plist-get (plist-put info :texinfo-entries-cache
-					  (make-hash-table :test #'eq))
-			       :texinfo-entries-cache)))
-	 (cached-entries (gethash scope cache 'no-cache)))
-    (if (not (eq cached-entries 'no-cache)) cached-entries
-      (puthash scope
-	       (cl-remove-if
-		(lambda (h)
-		  (org-not-nil (org-export-get-node-property :COPYING h t)))
-		(org-export-collect-headlines info 1 scope))
-	       cache))))
-
-;;;; Node Property
-
-(defun org-texinfo-node-property (node-property _contents _info)
-  "Transcode a NODE-PROPERTY element from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "%s:%s"
-          (org-element-property :key node-property)
-          (let ((value (org-element-property :value node-property)))
-            (if value (concat " " value) ""))))
-
-;;;; Paragraph
-
-(defun org-texinfo-paragraph (_paragraph contents _info)
-  "Transcode a PARAGRAPH element from Org to Texinfo.
-CONTENTS is the contents of the paragraph, as a string.  INFO is
-the plist used as a communication channel."
-  contents)
-
-;;;; Plain List
-
-(defun org-texinfo-plain-list (plain-list contents info)
-  "Transcode a PLAIN-LIST element from Org to Texinfo.
-CONTENTS is the contents of the list.  INFO is a plist holding
-contextual information."
-  (let* ((attr (org-export-read-attribute :attr_texinfo plain-list))
-	 (indic (let ((i (or (plist-get attr :indic)
-			     (plist-get info :texinfo-table-default-markup))))
-		  ;; Allow indicating commands with missing @ sign.
-		  (if (string-prefix-p "@" i) i (concat "@" i))))
-	 (table-type (plist-get attr :table-type))
-	 (type (org-element-property :type plain-list))
-	 (list-type (cond
-		     ((eq type 'ordered) "enumerate")
-		     ((eq type 'unordered) "itemize")
-		     ((member table-type '("ftable" "vtable")) table-type)
-		     (t "table"))))
-    (format "@%s\n%s@end %s"
-	    (if (eq type 'descriptive) (concat list-type " " indic) list-type)
-	    contents
-	    list-type)))
-
-;;;; Plain Text
-
-(defun org-texinfo-plain-text (text info)
-  "Transcode a TEXT string from Org to Texinfo.
-TEXT is the string to transcode.  INFO is a plist holding
-contextual information."
-  ;; First protect @, { and }.
-  (let ((output (org-texinfo--sanitize-content text)))
-    ;; Activate smart quotes.  Be sure to provide original TEXT string
-    ;; since OUTPUT may have been modified.
-    (when (plist-get info :with-smart-quotes)
-      (setq output
-	    (org-export-activate-smart-quotes output :texinfo info text)))
-    ;; LaTeX into @LaTeX{} and TeX into @TeX{}
-    (let ((case-fold-search nil))
-      (setq output (replace-regexp-in-string "\\(?:La\\)?TeX" "@\\&{}" output)))
-    ;; Convert special strings.
-    (when (plist-get info :with-special-strings)
-      (setq output
-	    (replace-regexp-in-string
-	     "\\.\\.\\." "@dots{}"
-	     (replace-regexp-in-string "\\\\-" "@-" output))))
-    ;; Handle break preservation if required.
-    (when (plist-get info :preserve-breaks)
-      (setq output (replace-regexp-in-string
-		    "\\(\\\\\\\\\\)?[ \t]*\n" " @*\n" output)))
-    ;; Return value.
-    output))
-
-;;;; Planning
-
-(defun org-texinfo-planning (planning _contents info)
-  "Transcode a PLANNING element from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (concat
-   "@noindent"
-   (mapconcat
-    'identity
-    (delq nil
-	  (list
-	   (let ((closed (org-element-property :closed planning)))
-	     (when closed
-	       (concat
-		(format "@strong{%s} " org-closed-string)
-		(format (plist-get info :texinfo-inactive-timestamp-format)
-			(org-timestamp-translate closed)))))
-	   (let ((deadline (org-element-property :deadline planning)))
-	     (when deadline
-	       (concat
-		(format "@strong{%s} " org-deadline-string)
-		(format (plist-get info :texinfo-active-timestamp-format)
-			(org-timestamp-translate deadline)))))
-	   (let ((scheduled (org-element-property :scheduled planning)))
-	     (when scheduled
-	       (concat
-		(format "@strong{%s} " org-scheduled-string)
-		(format (plist-get info :texinfo-active-timestamp-format)
-			(org-timestamp-translate scheduled)))))))
-    " ")
-   "@*"))
-
-;;;; Property Drawer
-
-(defun org-texinfo-property-drawer (_property-drawer contents _info)
-  "Transcode a PROPERTY-DRAWER element from Org to Texinfo.
-CONTENTS holds the contents of the drawer.  INFO is a plist
-holding contextual information."
-  (and (org-string-nw-p contents)
-       (format "@verbatim\n%s@end verbatim" contents)))
-
-;;;; Quote Block
-
-(defun org-texinfo-quote-block (quote-block contents _info)
-  "Transcode a QUOTE-BLOCK element from Org to Texinfo.
-CONTENTS holds the contents of the block.  INFO is a plist
-holding contextual information."
-  (let* ((title (org-element-property :name quote-block))
-	 (start-quote (concat "@quotation"
-			      (if title
-				  (format " %s" title)))))
-    (format "%s\n%s@end quotation" start-quote contents)))
-
-;;;; Radio Target
-
-(defun org-texinfo-radio-target (radio-target text info)
-  "Transcode a RADIO-TARGET object from Org to Texinfo.
-TEXT is the text of the target.  INFO is a plist holding
-contextual information."
-  (format "@anchor{%s}%s"
-	  (org-texinfo--get-node radio-target info)
-	  text))
-
-;;;; Section
-
-(defun org-texinfo-section (section contents info)
-  "Transcode a SECTION element from Org to Texinfo.
-CONTENTS holds the contents of the section.  INFO is a plist
-holding contextual information."
-  (let ((parent (org-export-get-parent-headline section)))
-    (when parent			;ignore very first section
-      (org-trim
-       (concat contents "\n" (org-texinfo-make-menu parent info))))))
-
-;;;; Special Block
-
-(defun org-texinfo-special-block (special-block contents _info)
-  "Transcode a SPECIAL-BLOCK element from Org to Texinfo.
-CONTENTS holds the contents of the block.  INFO is a plist used
-as a communication channel."
-  (let ((opt (org-export-read-attribute :attr_texinfo special-block :options))
-	(type (org-element-property :type special-block)))
-    (format "@%s%s\n%s@end %s"
-	    type
-	    (if opt (concat " " opt) "")
-	    (or contents "")
-	    type)))
-
-;;;; Src Block
-
-(defun org-texinfo-src-block (src-block _contents info)
-  "Transcode a SRC-BLOCK element from Org to Texinfo.
-CONTENTS holds the contents of the item.  INFO is a plist holding
-contextual information."
-  (let* ((lisp (string-match-p "lisp"
-			       (org-element-property :language src-block)))
-	 (code (org-texinfo--sanitize-content
-		(org-export-format-code-default src-block info)))
-	 (value (format
-		 (if lisp "@lisp\n%s@end lisp" "@example\n%s@end example")
-		 code))
-	 (caption (org-export-get-caption src-block))
-	 (shortcaption (org-export-get-caption src-block t)))
-    (if (not (or caption shortcaption)) value
-      (org-texinfo--wrap-float value
-			       info
-			       (org-export-translate "Listing" :utf-8 info)
-			       (org-texinfo--get-node src-block info)
-			       caption
-			       shortcaption))))
-
-;;;; Statistics Cookie
-
-(defun org-texinfo-statistics-cookie (statistics-cookie _contents _info)
-  "Transcode a STATISTICS-COOKIE object from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual information."
-  (org-element-property :value statistics-cookie))
-
-
-;;;; Strike-through
-
-(defun org-texinfo-strike-through (_strike-through contents info)
-  "Transcode STRIKE-THROUGH from Org to Texinfo.
-CONTENTS is the text with strike-through markup.  INFO is a plist
-holding contextual information."
-  (org-texinfo--text-markup contents 'strike-through info))
-
-;;;; Subscript
-
-(defun org-texinfo-subscript (_subscript contents _info)
-  "Transcode a SUBSCRIPT object from Org to Texinfo.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (format "@math{_%s}" contents))
-
-;;;; Superscript
-
-(defun org-texinfo-superscript (_superscript contents _info)
-  "Transcode a SUPERSCRIPT object from Org to Texinfo.
-CONTENTS is the contents of the object.  INFO is a plist holding
-contextual information."
-  (format "@math{^%s}" contents))
-
-;;;; Table
-
-(defun org-texinfo-table (table contents info)
-  "Transcode a TABLE element from Org to Texinfo.
-CONTENTS is the contents of the table.  INFO is a plist holding
-contextual information."
-  (if (eq (org-element-property :type table) 'table.el)
-      (format "@verbatim\n%s@end verbatim"
-	      (org-element-normalize-string
-	       (org-element-property :value table)))
-    (let* ((col-width (org-export-read-attribute :attr_texinfo table :columns))
-	   (columns
-	    (if col-width (format "@columnfractions %s" col-width)
-	      (org-texinfo-table-column-widths table info)))
-	   (caption (org-export-get-caption table))
-	   (shortcaption (org-export-get-caption table t))
-	   (table-str (format "@multitable %s\n%s@end multitable"
-			      columns
-			      contents)))
-      (if (not (or caption shortcaption)) table-str
-	(org-texinfo--wrap-float table-str
-				 info
-				 (org-export-translate "Table" :utf-8 info)
-				 (org-texinfo--get-node table info)
-				 caption
-				 shortcaption)))))
-
-(defun org-texinfo-table-column-widths (table info)
-  "Determine the largest table cell in each column to process alignment.
-TABLE is the table element to transcode.  INFO is a plist used as
-a communication channel."
-  (let ((widths (make-vector (cdr (org-export-table-dimensions table info)) 0)))
-    (org-element-map table 'table-row
-      (lambda (row)
-	(let ((idx 0))
-	  (org-element-map row 'table-cell
-	    (lambda (cell)
-	      ;; Length of the cell in the original buffer is only an
-	      ;; approximation of the length of the cell in the
-	      ;; output.  It can sometimes fail (e.g. it considers
-	      ;; "/a/" being larger than "ab").
-	      (let ((w (- (org-element-property :contents-end cell)
-			  (org-element-property :contents-begin cell))))
-		(aset widths idx (max w (aref widths idx))))
-	      (cl-incf idx))
-	    info)))
-      info)
-    (format "{%s}" (mapconcat (lambda (w) (make-string w ?a)) widths "} {"))))
-
-;;;; Table Cell
-
-(defun org-texinfo-table-cell (table-cell contents info)
-  "Transcode a TABLE-CELL element from Org to Texinfo.
-CONTENTS is the cell contents.  INFO is a plist used as
-a communication channel."
-  (concat
-   (let ((scientific-notation
-	  (plist-get info :texinfo-table-scientific-notation)))
-     (if (and contents
-	      scientific-notation
-	      (string-match orgtbl-exp-regexp contents))
-	 ;; Use appropriate format string for scientific notation.
-	 (format scientific-notation
-		 (match-string 1 contents)
-		 (match-string 2 contents))
-       contents))
-   (when (org-export-get-next-element table-cell info) "\n@tab ")))
-
-;;;; Table Row
-
-(defun org-texinfo-table-row (table-row contents info)
-  "Transcode a TABLE-ROW element from Org to Texinfo.
-CONTENTS is the contents of the row.  INFO is a plist used as
-a communication channel."
-  ;; Rules are ignored since table separators are deduced from
-  ;; borders of the current row.
-  (when (eq (org-element-property :type table-row) 'standard)
-    (let ((rowgroup-tag
-	   (if (and (= 1 (org-export-table-row-group table-row info))
-		    (org-export-table-has-header-p
-		     (org-export-get-parent-table table-row) info))
-	       "@headitem "
-	     "@item ")))
-      (concat rowgroup-tag contents "\n"))))
-
-;;;; Target
-
-(defun org-texinfo-target (target _contents info)
-  "Transcode a TARGET object from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (format "@anchor{%s}" (org-texinfo--get-node target info)))
-
-;;;; Timestamp
-
-(defun org-texinfo-timestamp (timestamp _contents info)
-  "Transcode a TIMESTAMP object from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist holding contextual
-information."
-  (let ((value (org-texinfo-plain-text
-		(org-timestamp-translate timestamp) info)))
-    (pcase (org-element-property :type timestamp)
-      ((or `active `active-range)
-       (format (plist-get info :texinfo-active-timestamp-format) value))
-      ((or `inactive `inactive-range)
-       (format (plist-get info :texinfo-inactive-timestamp-format) value))
-      (_ (format (plist-get info :texinfo-diary-timestamp-format) value)))))
-
-;;;; Underline
-
-(defun org-texinfo-underline (_underline contents info)
-  "Transcode UNDERLINE from Org to Texinfo.
-CONTENTS is the text with underline markup.  INFO is a plist
-holding contextual information."
-  (org-texinfo--text-markup contents 'underline info))
-
-;;;; Verbatim
-
-(defun org-texinfo-verbatim (verbatim _contents info)
-  "Transcode a VERBATIM object from Org to Texinfo.
-CONTENTS is nil.  INFO is a plist used as a communication
-channel."
-  (org-texinfo--text-markup
-   (org-element-property :value verbatim) 'verbatim info))
-
-;;;; Verse Block
-
-(defun org-texinfo-verse-block (_verse-block contents _info)
-  "Transcode a VERSE-BLOCK element from Org to Texinfo.
-CONTENTS is verse block contents. INFO is a plist holding
-contextual information."
-  (format "@display\n%s@end display" contents))
-
-
-;;; Interactive functions
-
-;;;###autoload
-(defun org-texinfo-export-to-texinfo
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to a Texinfo file.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-Return output file's name."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".texi" subtreep))
-	(org-export-coding-system org-texinfo-coding-system))
-    (org-export-to-file 'texinfo outfile
-      async subtreep visible-only body-only ext-plist)))
-
-;;;###autoload
-(defun org-texinfo-export-to-info
-  (&optional async subtreep visible-only body-only ext-plist)
-  "Export current buffer to Texinfo then process through to INFO.
-
-If narrowing is active in the current buffer, only export its
-narrowed part.
-
-If a region is active, export that region.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting file should be accessible through
-the `org-export-stack' interface.
-
-When optional argument SUBTREEP is non-nil, export the sub-tree
-at point, extracting information from the headline properties
-first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only write code
-between \"\\begin{document}\" and \"\\end{document}\".
-
-EXT-PLIST, when provided, is a property list with external
-parameters overriding Org default settings, but still inferior to
-file-local settings.
-
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
-Return INFO file's name."
-  (interactive)
-  (let ((outfile (org-export-output-file-name ".texi" subtreep))
-	(org-export-coding-system org-texinfo-coding-system))
-    (org-export-to-file 'texinfo outfile
-      async subtreep visible-only body-only ext-plist
-      (lambda (file) (org-texinfo-compile file)))))
-
-;;;###autoload
-(defun org-texinfo-publish-to-texinfo (plist filename pub-dir)
-  "Publish an org file to Texinfo.
-
-FILENAME is the filename of the Org file to be published.  PLIST
-is the property list for the given project.  PUB-DIR is the
-publishing directory.
-
-Return output file name."
-  (org-publish-org-to 'texinfo filename ".texi" plist pub-dir))
-
-;;;###autoload
-(defun org-texinfo-convert-region-to-texinfo ()
-  "Assume the current region has Org syntax, and convert it to Texinfo.
-This can be used in any buffer.  For example, you can write an
-itemized list in Org syntax in an Texinfo buffer and use this
-command to convert it."
-  (interactive)
-  (org-export-replace-region-by 'texinfo))
-
-(defun org-texinfo-compile (file)
-  "Compile a texinfo file.
-
-FILE is the name of the file being compiled.  Processing is done
-through the command specified in `org-texinfo-info-process',
-which see.  Output is redirected to \"*Org INFO Texinfo Output*\"
-buffer.
-
-Return INFO file name or an error if it couldn't be produced."
-  (message "Processing Texinfo file %s..." file)
-  (let* ((log-name "*Org INFO Texinfo Output*")
-	 (log (get-buffer-create log-name))
-	 (output
-	  (org-compile-file file org-texinfo-info-process "info"
-			    (format "See %S for details" log-name)
-			    log)))
-    (when org-texinfo-remove-logfiles
-      (let ((base (file-name-sans-extension output)))
-	(dolist (ext org-texinfo-logfiles-extensions)
-	  (let ((file (concat base "." ext)))
-	    (when (file-exists-p file) (delete-file file))))))
-    (message "Process completed.")
-    output))
-
-
-(provide 'ox-texinfo)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox-texinfo.el ends here
diff --git a/elpa/org-9.1.14/ox-texinfo.elc b/elpa/org-9.1.14/ox-texinfo.elc
deleted file mode 100644
index 5d88043..0000000
--- a/elpa/org-9.1.14/ox-texinfo.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-9.1.14/ox.el b/elpa/org-9.1.14/ox.el
deleted file mode 100644
index ea7d1dc..0000000
--- a/elpa/org-9.1.14/ox.el
+++ /dev/null
@@ -1,6841 +0,0 @@
-;;; ox.el --- Export Framework for Org Mode          -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
-;; Keywords: outlines, hypermedia, calendar, wp
-
-;; This file is part of GNU Emacs.
-
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; This library implements a generic export engine for Org, built on
-;; its syntactical parser: Org Elements.
-;;
-;; Besides that parser, the generic exporter is made of three distinct
-;; parts:
-;;
-;; - The communication channel consists of a property list, which is
-;;   created and updated during the process.  Its use is to offer
-;;   every piece of information, would it be about initial environment
-;;   or contextual data, all in a single place.
-;;
-;; - The transcoder walks the parse tree, ignores or treat as plain
-;;   text elements and objects according to export options, and
-;;   eventually calls back-end specific functions to do the real
-;;   transcoding, concatenating their return value along the way.
-;;
-;; - The filter system is activated at the very beginning and the very
-;;   end of the export process, and each time an element or an object
-;;   has been converted.  It is the entry point to fine-tune standard
-;;   output from back-end transcoders.  See "The Filter System"
-;;   section for more information.
-;;
-;; The core functions is `org-export-as'.  It returns the transcoded
-;; buffer as a string.  Its derivatives are `org-export-to-buffer' and
-;; `org-export-to-file'.
-;;
-;; An export back-end is defined with `org-export-define-backend'.
-;; This function can also support specific buffer keywords, OPTION
-;; keyword's items and filters.  Refer to function's documentation for
-;; more information.
-;;
-;; If the new back-end shares most properties with another one,
-;; `org-export-define-derived-backend' can be used to simplify the
-;; process.
-;;
-;; Any back-end can define its own variables.  Among them, those
-;; customizable should belong to the `org-export-BACKEND' group.
-;;
-;; Tools for common tasks across back-ends are implemented in the
-;; following part of the file.
-;;
-;; Eventually, a dispatcher (`org-export-dispatch') is provided in the
-;; last one.
-;;
-;; See <https://orgmode.org/worg/dev/org-export-reference.html> for
-;; more information.
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'ob-exp)
-(require 'org-element)
-(require 'org-macro)
-(require 'tabulated-list)
-
-(declare-function org-src-coderef-format "org-src" (&optional element))
-(declare-function org-src-coderef-regexp "org-src" (fmt &optional label))
-(declare-function org-publish "ox-publish" (project &optional force async))
-(declare-function org-publish-all "ox-publish" (&optional force async))
-(declare-function org-publish-current-file "ox-publish" (&optional force async))
-(declare-function org-publish-current-project "ox-publish" (&optional force async))
-
-(defvar org-publish-project-alist)
-(defvar org-table-number-fraction)
-(defvar org-table-number-regexp)
-
-
-;;; Internal Variables
-;;
-;; Among internal variables, the most important is
-;; `org-export-options-alist'.  This variable define the global export
-;; options, shared between every exporter, and how they are acquired.
-
-(defconst org-export-max-depth 19
-  "Maximum nesting depth for headlines, counting from 0.")
-
-(defconst org-export-options-alist
-  '((:title "TITLE" nil nil parse)
-    (:date "DATE" nil nil parse)
-    (:author "AUTHOR" nil user-full-name parse)
-    (:email "EMAIL" nil user-mail-address t)
-    (:language "LANGUAGE" nil org-export-default-language t)
-    (:select-tags "SELECT_TAGS" nil org-export-select-tags split)
-    (:exclude-tags "EXCLUDE_TAGS" nil org-export-exclude-tags split)
-    (:creator "CREATOR" nil org-export-creator-string)
-    (:headline-levels nil "H" org-export-headline-levels)
-    (:preserve-breaks nil "\\n" org-export-preserve-breaks)
-    (:section-numbers nil "num" org-export-with-section-numbers)
-    (:time-stamp-file nil "timestamp" org-export-time-stamp-file)
-    (:with-archived-trees nil "arch" org-export-with-archived-trees)
-    (:with-author nil "author" org-export-with-author)
-    (:with-broken-links nil "broken-links" org-export-with-broken-links)
-    (:with-clocks nil "c" org-export-with-clocks)
-    (:with-creator nil "creator" org-export-with-creator)
-    (:with-date nil "date" org-export-with-date)
-    (:with-drawers nil "d" org-export-with-drawers)
-    (:with-email nil "email" org-export-with-email)
-    (:with-emphasize nil "*" org-export-with-emphasize)
-    (:with-entities nil "e" org-export-with-entities)
-    (:with-fixed-width nil ":" org-export-with-fixed-width)
-    (:with-footnotes nil "f" org-export-with-footnotes)
-    (:with-inlinetasks nil "inline" org-export-with-inlinetasks)
-    (:with-latex nil "tex" org-export-with-latex)
-    (:with-planning nil "p" org-export-with-planning)
-    (:with-priority nil "pri" org-export-with-priority)
-    (:with-properties nil "prop" org-export-with-properties)
-    (:with-smart-quotes nil "'" org-export-with-smart-quotes)
-    (:with-special-strings nil "-" org-export-with-special-strings)
-    (:with-statistics-cookies nil "stat" org-export-with-statistics-cookies)
-    (:with-sub-superscript nil "^" org-export-with-sub-superscripts)
-    (:with-toc nil "toc" org-export-with-toc)
-    (:with-tables nil "|" org-export-with-tables)
-    (:with-tags nil "tags" org-export-with-tags)
-    (:with-tasks nil "tasks" org-export-with-tasks)
-    (:with-timestamps nil "<" org-export-with-timestamps)
-    (:with-title nil "title" org-export-with-title)
-    (:with-todo-keywords nil "todo" org-export-with-todo-keywords))
-  "Alist between export properties and ways to set them.
-
-The key of the alist is the property name, and the value is a list
-like (KEYWORD OPTION DEFAULT BEHAVIOR) where:
-
-KEYWORD is a string representing a buffer keyword, or nil.  Each
-  property defined this way can also be set, during subtree
-  export, through a headline property named after the keyword
-  with the \"EXPORT_\" prefix (i.e. DATE keyword and EXPORT_DATE
-  property).
-OPTION is a string that could be found in an #+OPTIONS: line.
-DEFAULT is the default value for the property.
-BEHAVIOR determines how Org should handle multiple keywords for
-  the same property.  It is a symbol among:
-  nil       Keep old value and discard the new one.
-  t         Replace old value with the new one.
-  `space'   Concatenate the values, separating them with a space.
-  `newline' Concatenate the values, separating them with
-	    a newline.
-  `split'   Split values at white spaces, and cons them to the
-	    previous list.
-  `parse'   Parse value as a list of strings and Org objects,
-            which can then be transcoded with, e.g.,
-            `org-export-data'.  It implies `space' behavior.
-
-Values set through KEYWORD and OPTION have precedence over
-DEFAULT.
-
-All these properties should be back-end agnostic.  Back-end
-specific properties are set through `org-export-define-backend'.
-Properties redefined there have precedence over these.")
-
-(defconst org-export-special-keywords '("FILETAGS" "SETUPFILE" "OPTIONS")
-  "List of in-buffer keywords that require special treatment.
-These keywords are not directly associated to a property.  The
-way they are handled must be hard-coded into
-`org-export--get-inbuffer-options' function.")
-
-(defconst org-export-filters-alist
-  '((:filter-body . org-export-filter-body-functions)
-    (:filter-bold . org-export-filter-bold-functions)
-    (:filter-babel-call . org-export-filter-babel-call-functions)
-    (:filter-center-block . org-export-filter-center-block-functions)
-    (:filter-clock . org-export-filter-clock-functions)
-    (:filter-code . org-export-filter-code-functions)
-    (:filter-diary-sexp . org-export-filter-diary-sexp-functions)
-    (:filter-drawer . org-export-filter-drawer-functions)
-    (:filter-dynamic-block . org-export-filter-dynamic-block-functions)
-    (:filter-entity . org-export-filter-entity-functions)
-    (:filter-example-block . org-export-filter-example-block-functions)
-    (:filter-export-block . org-export-filter-export-block-functions)
-    (:filter-export-snippet . org-export-filter-export-snippet-functions)
-    (:filter-final-output . org-export-filter-final-output-functions)
-    (:filter-fixed-width . org-export-filter-fixed-width-functions)
-    (:filter-footnote-definition . org-export-filter-footnote-definition-functions)
-    (:filter-footnote-reference . org-export-filter-footnote-reference-functions)
-    (:filter-headline . org-export-filter-headline-functions)
-    (:filter-horizontal-rule . org-export-filter-horizontal-rule-functions)
-    (:filter-inline-babel-call . org-export-filter-inline-babel-call-functions)
-    (:filter-inline-src-block . org-export-filter-inline-src-block-functions)
-    (:filter-inlinetask . org-export-filter-inlinetask-functions)
-    (:filter-italic . org-export-filter-italic-functions)
-    (:filter-item . org-export-filter-item-functions)
-    (:filter-keyword . org-export-filter-keyword-functions)
-    (:filter-latex-environment . org-export-filter-latex-environment-functions)
-    (:filter-latex-fragment . org-export-filter-latex-fragment-functions)
-    (:filter-line-break . org-export-filter-line-break-functions)
-    (:filter-link . org-export-filter-link-functions)
-    (:filter-node-property . org-export-filter-node-property-functions)
-    (:filter-options . org-export-filter-options-functions)
-    (:filter-paragraph . org-export-filter-paragraph-functions)
-    (:filter-parse-tree . org-export-filter-parse-tree-functions)
-    (:filter-plain-list . org-export-filter-plain-list-functions)
-    (:filter-plain-text . org-export-filter-plain-text-functions)
-    (:filter-planning . org-export-filter-planning-functions)
-    (:filter-property-drawer . org-export-filter-property-drawer-functions)
-    (:filter-quote-block . org-export-filter-quote-block-functions)
-    (:filter-radio-target . org-export-filter-radio-target-functions)
-    (:filter-section . org-export-filter-section-functions)
-    (:filter-special-block . org-export-filter-special-block-functions)
-    (:filter-src-block . org-export-filter-src-block-functions)
-    (:filter-statistics-cookie . org-export-filter-statistics-cookie-functions)
-    (:filter-strike-through . org-export-filter-strike-through-functions)
-    (:filter-subscript . org-export-filter-subscript-functions)
-    (:filter-superscript . org-export-filter-superscript-functions)
-    (:filter-table . org-export-filter-table-functions)
-    (:filter-table-cell . org-export-filter-table-cell-functions)
-    (:filter-table-row . org-export-filter-table-row-functions)
-    (:filter-target . org-export-filter-target-functions)
-    (:filter-timestamp . org-export-filter-timestamp-functions)
-    (:filter-underline . org-export-filter-underline-functions)
-    (:filter-verbatim . org-export-filter-verbatim-functions)
-    (:filter-verse-block . org-export-filter-verse-block-functions))
-  "Alist between filters properties and initial values.
-
-The key of each association is a property name accessible through
-the communication channel.  Its value is a configurable global
-variable defining initial filters.
-
-This list is meant to install user specified filters.  Back-end
-developers may install their own filters using
-`org-export-define-backend'.  Filters defined there will always
-be prepended to the current list, so they always get applied
-first.")
-
-(defconst org-export-default-inline-image-rule
-  `(("file" .
-     ,(format "\\.%s\\'"
-	      (regexp-opt
-	       '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm"
-		 "xpm" "pbm" "pgm" "ppm") t))))
-  "Default rule for link matching an inline image.
-This rule applies to links with no description.  By default, it
-will be considered as an inline image if it targets a local file
-whose extension is either \"png\", \"jpeg\", \"jpg\", \"gif\",
-\"tiff\", \"tif\", \"xbm\", \"xpm\", \"pbm\", \"pgm\" or \"ppm\".
-See `org-export-inline-image-p' for more information about
-rules.")
-
-(defconst org-export-ignored-local-variables
-  '(org-font-lock-keywords
-    org-element--cache org-element--cache-objects org-element--cache-sync-keys
-    org-element--cache-sync-requests org-element--cache-sync-timer)
-  "List of variables not copied through upon buffer duplication.
-Export process takes place on a copy of the original buffer.
-When this copy is created, all Org related local variables not in
-this list are copied to the new buffer.  Variables with an
-unreadable value are also ignored.")
-
-(defvar org-export-async-debug nil
-  "Non-nil means asynchronous export process should leave data behind.
-
-This data is found in the appropriate \"*Org Export Process*\"
-buffer, and in files prefixed with \"org-export-process\" and
-located in `temporary-file-directory'.
-
-When non-nil, it will also set `debug-on-error' to a non-nil
-value in the external process.")
-
-(defvar org-export-stack-contents nil
-  "Record asynchronously generated export results and processes.
-This is an alist: its CAR is the source of the
-result (destination file or buffer for a finished process,
-original buffer for a running one) and its CDR is a list
-containing the back-end used, as a symbol, and either a process
-or the time at which it finished.  It is used to build the menu
-from `org-export-stack'.")
-
-(defvar org-export-registered-backends nil
-  "List of backends currently available in the exporter.
-This variable is set with `org-export-define-backend' and
-`org-export-define-derived-backend' functions.")
-
-(defvar org-export-dispatch-last-action nil
-  "Last command called from the dispatcher.
-The value should be a list.  Its CAR is the action, as a symbol,
-and its CDR is a list of export options.")
-
-(defvar org-export-dispatch-last-position (make-marker)
-  "The position where the last export command was created using the dispatcher.
-This marker will be used with `C-u C-c C-e' to make sure export repetition
-uses the same subtree if the previous command was restricted to a subtree.")
-
-;; For compatibility with Org < 8
-(defvar org-export-current-backend nil
-  "Name, if any, of the back-end used during an export process.
-
-Its value is a symbol such as `html', `latex', `ascii', or nil if
-the back-end is anonymous (see `org-export-create-backend') or if
-there is no export process in progress.
-
-It can be used to teach Babel blocks how to act differently
-according to the back-end used.")
-
-
-
-;;; User-configurable Variables
-;;
-;; Configuration for the masses.
-;;
-;; They should never be accessed directly, as their value is to be
-;; stored in a property list (cf. `org-export-options-alist').
-;; Back-ends will read their value from there instead.
-
-(defgroup org-export nil
-  "Options for exporting Org mode files."
-  :tag "Org Export"
-  :group 'org)
-
-(defgroup org-export-general nil
-  "General options for export engine."
-  :tag "Org Export General"
-  :group 'org-export)
-
-(defcustom org-export-with-archived-trees 'headline
-  "Whether sub-trees with the ARCHIVE tag should be exported.
-
-This can have three different values:
-nil         Do not export, pretend this tree is not present.
-t           Do export the entire tree.
-`headline'  Only export the headline, but skip the tree below it.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"arch:nil\"."
-  :group 'org-export-general
-  :type '(choice
-	  (const :tag "Not at all" nil)
-	  (const :tag "Headline only" headline)
-	  (const :tag "Entirely" t))
-  :safe (lambda (x) (memq x '(t nil headline))))
-
-(defcustom org-export-with-author t
-  "Non-nil means insert author name into the exported file.
-This option can also be set with the OPTIONS keyword,
-e.g. \"author:nil\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-clocks nil
-  "Non-nil means export CLOCK keywords.
-This option can also be set with the OPTIONS keyword,
-e.g. \"c:t\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-creator nil
-  "Non-nil means the postamble should contain a creator sentence.
-
-The sentence can be set in `org-export-creator-string', which
-see.
-
-This option can also be set with the OPTIONS keyword, e.g.,
-\"creator:t\"."
-  :group 'org-export-general
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-date t
-  "Non-nil means insert date in the exported document.
-This option can also be set with the OPTIONS keyword,
-e.g. \"date:nil\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-date-timestamp-format nil
-  "Time-stamp format string to use for DATE keyword.
-
-The format string, when specified, only applies if date consists
-in a single time-stamp.  Otherwise its value will be ignored.
-
-See `format-time-string' for details on how to build this
-string."
-  :group 'org-export-general
-  :type '(choice
-	  (string :tag "Time-stamp format string")
-	  (const :tag "No format string" nil))
-  :safe (lambda (x) (or (null x) (stringp x))))
-
-(defcustom org-export-creator-string
-  (format "Emacs %s (Org mode %s)"
-	  emacs-version
-	  (if (fboundp 'org-version) (org-version) "unknown version"))
-  "Information about the creator of the document.
-This option can also be set on with the CREATOR keyword."
-  :group 'org-export-general
-  :type '(string :tag "Creator string")
-  :safe #'stringp)
-
-(defcustom org-export-with-drawers '(not "LOGBOOK")
-  "Non-nil means export contents of standard drawers.
-
-When t, all drawers are exported.  This may also be a list of
-drawer names to export, as strings.  If that list starts with
-`not', only drawers with such names will be ignored.
-
-This variable doesn't apply to properties drawers.  See
-`org-export-with-properties' instead.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"d:nil\"."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "All drawers" t)
-	  (const :tag "None" nil)
-	  (repeat :tag "Selected drawers"
-		  (string :tag "Drawer name"))
-	  (list :tag "Ignored drawers"
-		(const :format "" not)
-		(repeat :tag "Specify names of drawers to ignore during export"
-			:inline t
-			(string :tag "Drawer name"))))
-  :safe (lambda (x) (or (booleanp x) (consp x))))
-
-(defcustom org-export-with-email nil
-  "Non-nil means insert author email into the exported file.
-This option can also be set with the OPTIONS keyword,
-e.g. \"email:t\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-emphasize t
-  "Non-nil means interpret *word*, /word/, _word_ and +word+.
-
-If the export target supports emphasizing text, the word will be
-typeset in bold, italic, with an underline or strike-through,
-respectively.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"*:nil\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-exclude-tags '("noexport")
-  "Tags that exclude a tree from export.
-
-All trees carrying any of these tags will be excluded from
-export.  This is without condition, so even subtrees inside that
-carry one of the `org-export-select-tags' will be removed.
-
-This option can also be set with the EXCLUDE_TAGS keyword."
-  :group 'org-export-general
-  :type '(repeat (string :tag "Tag"))
-  :safe (lambda (x) (and (listp x) (cl-every #'stringp x))))
-
-(defcustom org-export-with-fixed-width t
-  "Non-nil means export lines starting with \":\".
-This option can also be set with the OPTIONS keyword,
-e.g. \"::nil\"."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-footnotes t
-  "Non-nil means Org footnotes should be exported.
-This option can also be set with the OPTIONS keyword,
-e.g. \"f:nil\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-latex t
-  "Non-nil means process LaTeX environments and fragments.
-
-This option can also be set with the OPTIONS line,
-e.g. \"tex:verbatim\".  Allowed values are:
-
-nil         Ignore math snippets.
-`verbatim'  Keep everything in verbatim.
-t           Allow export of math snippets."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Do not process math in any way" nil)
-	  (const :tag "Interpret math snippets" t)
-	  (const :tag "Leave math verbatim" verbatim))
-  :safe (lambda (x) (memq x '(t nil verbatim))))
-
-(defcustom org-export-headline-levels 3
-  "The last level which is still exported as a headline.
-
-Inferior levels will usually produce itemize or enumerate lists
-when exported, but back-end behavior may differ.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"H:2\"."
-  :group 'org-export-general
-  :type 'integer
-  :safe #'integerp)
-
-(defcustom org-export-default-language "en"
-  "The default language for export and clocktable translations, as a string.
-This may have an association in
-`org-clock-clocktable-language-setup',
-`org-export-smart-quotes-alist' and `org-export-dictionary'.
-This option can also be set with the LANGUAGE keyword."
-  :group 'org-export-general
-  :type '(string :tag "Language")
-  :safe #'stringp)
-
-(defcustom org-export-preserve-breaks nil
-  "Non-nil means preserve all line breaks when exporting.
-This option can also be set with the OPTIONS keyword,
-e.g. \"\\n:t\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-entities t
-  "Non-nil means interpret entities when exporting.
-
-For example, HTML export converts \\alpha to &alpha; and \\AA to
-&Aring;.
-
-For a list of supported names, see the constant `org-entities'
-and the user option `org-entities-user'.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"e:nil\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-inlinetasks t
-  "Non-nil means inlinetasks should be exported.
-This option can also be set with the OPTIONS keyword,
-e.g. \"inline:nil\"."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-planning nil
-  "Non-nil means include planning info in export.
-
-Planning info is the line containing either SCHEDULED:,
-DEADLINE:, CLOSED: time-stamps, or a combination of them.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"p:t\"."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-priority nil
-  "Non-nil means include priority cookies in export.
-This option can also be set with the OPTIONS keyword,
-e.g. \"pri:t\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-properties nil
-  "Non-nil means export contents of properties drawers.
-
-When t, all properties are exported.  This may also be a list of
-properties to export, as strings.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"prop:t\"."
-  :group 'org-export-general
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice
-	  (const :tag "All properties" t)
-	  (const :tag "None" nil)
-	  (repeat :tag "Selected properties"
-		  (string :tag "Property name")))
-  :safe (lambda (x) (or (booleanp x)
-			(and (listp x) (cl-every #'stringp x)))))
-
-(defcustom org-export-with-section-numbers t
-  "Non-nil means add section numbers to headlines when exporting.
-
-When set to an integer n, numbering will only happen for
-headlines whose relative level is higher or equal to n.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"num:t\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-select-tags '("export")
-  "Tags that select a tree for export.
-
-If any such tag is found in a buffer, all trees that do not carry
-one of these tags will be ignored during export.  Inside trees
-that are selected like this, you can still deselect a subtree by
-tagging it with one of the `org-export-exclude-tags'.
-
-This option can also be set with the SELECT_TAGS keyword."
-  :group 'org-export-general
-  :type '(repeat (string :tag "Tag"))
-  :safe (lambda (x) (and (listp x) (cl-every #'stringp x))))
-
-(defcustom org-export-with-smart-quotes nil
-  "Non-nil means activate smart quotes during export.
-This option can also be set with the OPTIONS keyword,
-e.g., \"':t\".
-
-When setting this to non-nil, you need to take care of
-using the correct Babel package when exporting to LaTeX.
-E.g., you can load Babel for french like this:
-
-#+LATEX_HEADER: \\usepackage[french]{babel}"
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-special-strings t
-  "Non-nil means interpret \"\\-\", \"--\" and \"---\" for export.
-
-When this option is turned on, these strings will be exported as:
-
-   Org     HTML     LaTeX    UTF-8
-  -----+----------+--------+-------
-   \\-    &shy;      \\-
-   --    &ndash;    --         –
-   ---   &mdash;    ---        —
-   ...   &hellip;   \\ldots     …
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"-:nil\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-statistics-cookies t
-  "Non-nil means include statistics cookies in export.
-This option can also be set with the OPTIONS keyword,
-e.g. \"stat:nil\""
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-sub-superscripts t
-  "Non-nil means interpret \"_\" and \"^\" for export.
-
-If you want to control how Org displays those characters, see
-`org-use-sub-superscripts'.  `org-export-with-sub-superscripts'
-used to be an alias for `org-use-sub-superscripts' in Org <8.0,
-it is not anymore.
-
-When this option is turned on, you can use TeX-like syntax for
-sub- and superscripts and see them exported correctly.
-
-You can also set the option with #+OPTIONS: ^:t
-
-Several characters after \"_\" or \"^\" will be considered as a
-single item - so grouping with {} is normally not needed.  For
-example, the following things will be parsed as single sub- or
-superscripts:
-
- 10^24   or   10^tau     several digits will be considered 1 item.
- 10^-12  or   10^-tau    a leading sign with digits or a word
- x^2-y^3                 will be read as x^2 - y^3, because items are
-			 terminated by almost any nonword/nondigit char.
- x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.
-
-Still, ambiguity is possible.  So when in doubt, use {} to enclose
-the sub/superscript.  If you set this variable to the symbol `{}',
-the braces are *required* in order to trigger interpretations as
-sub/superscript.  This can be helpful in documents that need \"_\"
-frequently in plain text."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Interpret them" t)
-	  (const :tag "Curly brackets only" {})
-	  (const :tag "Do not interpret them" nil))
-  :safe (lambda (x) (memq x '(t nil {}))))
-
-(defcustom org-export-with-toc t
-  "Non-nil means create a table of contents in exported files.
-
-The table of contents contains headlines with levels up to
-`org-export-headline-levels'.
-
-When this variable is set to an integer N, include levels up to
-N in the table of contents.  Although it may then be different
-from `org-export-headline-levels', it is cannot be larger than
-the number of headline levels.
-
-When nil, no table of contents is created.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"toc:nil\" or \"toc:3\"."
-  :group 'org-export-general
-  :type '(choice
-	  (const :tag "No Table of Contents" nil)
-	  (const :tag "Full Table of Contents" t)
-	  (integer :tag "TOC to level"))
-  :safe (lambda (x)
-	  (or (booleanp x)
-	      (integerp x))))
-
-(defcustom org-export-with-tables t
-  "Non-nil means export tables.
-This option can also be set with the OPTIONS keyword,
-e.g. \"|:nil\"."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-tags t
-  "If nil, do not export tags, just remove them from headlines.
-
-If this is the symbol `not-in-toc', tags will be removed from
-table of contents entries, but still be shown in the headlines of
-the document.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"tags:nil\"."
-  :group 'org-export-general
-  :type '(choice
-	  (const :tag "Off" nil)
-	  (const :tag "Not in TOC" not-in-toc)
-	  (const :tag "On" t))
-  :safe (lambda (x) (memq x '(t nil not-in-toc))))
-
-(defcustom org-export-with-tasks t
-  "Non-nil means include TODO items for export.
-
-This may have the following values:
-t                    include tasks independent of state.
-`todo'               include only tasks that are not yet done.
-`done'               include only tasks that are already done.
-nil                  ignore all tasks.
-list of keywords     include tasks with these keywords.
-
-This option can also be set with the OPTIONS keyword,
-e.g. \"tasks:nil\"."
-  :group 'org-export-general
-  :type '(choice
-	  (const :tag "All tasks" t)
-	  (const :tag "No tasks" nil)
-	  (const :tag "Not-done tasks" todo)
-	  (const :tag "Only done tasks" done)
-	  (repeat :tag "Specific TODO keywords"
-		  (string :tag "Keyword")))
-  :safe (lambda (x) (or (memq x '(nil t todo done))
-			(and (listp x)
-			     (cl-every #'stringp x)))))
-
-(defcustom org-export-with-title t
-  "Non-nil means print title into the exported file.
-This option can also be set with the OPTIONS keyword,
-e.g. \"title:nil\"."
-  :group 'org-export-general
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-time-stamp-file t
-  "Non-nil means insert a time stamp into the exported file.
-The time stamp shows when the file was created.  This option can
-also be set with the OPTIONS keyword, e.g. \"timestamp:nil\"."
-  :group 'org-export-general
-  :type 'boolean
-  :safe #'booleanp)
-
-(defcustom org-export-with-timestamps t
-  "Non nil means allow timestamps in export.
-
-It can be set to any of the following values:
-  t          export all timestamps.
-  `active'   export active timestamps only.
-  `inactive' export inactive timestamps only.
-  nil        do not export timestamps
-
-This only applies to timestamps isolated in a paragraph
-containing only timestamps.  Other timestamps are always
-exported.
-
-This option can also be set with the OPTIONS keyword, e.g.
-\"<:nil\"."
-  :group 'org-export-general
-  :type '(choice
-	  (const :tag "All timestamps" t)
-	  (const :tag "Only active timestamps" active)
-	  (const :tag "Only inactive timestamps" inactive)
-	  (const :tag "No timestamp" nil))
-  :safe (lambda (x) (memq x '(t nil active inactive))))
-
-(defcustom org-export-with-todo-keywords t
-  "Non-nil means include TODO keywords in export.
-When nil, remove all these keywords from the export.  This option
-can also be set with the OPTIONS keyword, e.g.  \"todo:nil\"."
-  :group 'org-export-general
-  :type 'boolean)
-
-(defcustom org-export-allow-bind-keywords nil
-  "Non-nil means BIND keywords can define local variable values.
-This is a potential security risk, which is why the default value
-is nil.  You can also allow them through local buffer variables."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-export-with-broken-links nil
-  "Non-nil means do not raise an error on broken links.
-
-When this variable is non-nil, broken links are ignored, without
-stopping the export process.  If it is set to `mark', broken
-links are marked as such in the output, with a string like
-
-  [BROKEN LINK: path]
-
-where PATH is the un-resolvable reference.
-
-This option can also be set with the OPTIONS keyword, e.g.,
-\"broken-links:mark\"."
-  :group 'org-export-general
-  :version "26.1"
-  :package-version '(Org . "9.0")
-  :type '(choice
-	  (const :tag "Ignore broken links" t)
-	  (const :tag "Mark broken links in output" mark)
-	  (const :tag "Raise an error" nil)))
-
-(defcustom org-export-snippet-translation-alist nil
-  "Alist between export snippets back-ends and exporter back-ends.
-
-This variable allows providing shortcuts for export snippets.
-
-For example, with a value of \\='((\"h\" . \"html\")), the
-HTML back-end will recognize the contents of \"@@h:<b>@@\" as
-HTML code while every other back-end will ignore it."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(repeat
-	  (cons (string :tag "Shortcut")
-		(string :tag "Back-end")))
-  :safe (lambda (x)
-	  (and (listp x)
-	       (cl-every #'consp x)
-	       (cl-every #'stringp (mapcar #'car x))
-	       (cl-every #'stringp (mapcar #'cdr x)))))
-
-(defcustom org-export-global-macros nil
-  "Alist between macro names and expansion templates.
-
-This variable defines macro expansion templates available
-globally.  Associations follow the pattern
-
-  (NAME . TEMPLATE)
-
-where NAME is a string beginning with a letter and consisting of
-alphanumeric characters only.
-
-TEMPLATE is the string to which the macro is going to be
-expanded.  Inside, \"$1\", \"$2\"... are place-holders for
-macro's arguments.  Moreover, if the template starts with
-\"(eval\", it will be parsed as an Elisp expression and evaluated
-accordingly."
-  :group 'org-export-general
-  :version "26.1"
-  :package-version '(Org . "9.1")
-  :type '(repeat
-	  (cons (string :tag "Name")
-		(string :tag "Template"))))
-
-(defcustom org-export-coding-system nil
-  "Coding system for the exported file."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'coding-system)
-
-(defcustom org-export-copy-to-kill-ring nil
-  "Non-nil means pushing export output to the kill ring.
-This variable is ignored during asynchronous export."
-  :group 'org-export-general
-  :version "26.1"
-  :package-version '(Org . "8.3")
-  :type '(choice
-	  (const :tag "Always" t)
-	  (const :tag "When export is done interactively" if-interactive)
-	  (const :tag "Never" nil)))
-
-(defcustom org-export-initial-scope 'buffer
-  "The initial scope when exporting with `org-export-dispatch'.
-This variable can be either set to `buffer' or `subtree'."
-  :group 'org-export-general
-  :type '(choice
-	  (const :tag "Export current buffer" buffer)
-	  (const :tag "Export current subtree" subtree)))
-
-(defcustom org-export-show-temporary-export-buffer t
-  "Non-nil means show buffer after exporting to temp buffer.
-When Org exports to a file, the buffer visiting that file is never
-shown, but remains buried.  However, when exporting to
-a temporary buffer, that buffer is popped up in a second window.
-When this variable is nil, the buffer remains buried also in
-these cases."
-  :group 'org-export-general
-  :type 'boolean)
-
-(defcustom org-export-in-background nil
-  "Non-nil means export and publishing commands will run in background.
-Results from an asynchronous export are never displayed
-automatically.  But you can retrieve them with `\\[org-export-stack]'."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-(defcustom org-export-async-init-file nil
-  "File used to initialize external export process.
-
-Value must be either nil or an absolute file name.  When nil, the
-external process is launched like a regular Emacs session,
-loading user's initialization file and any site specific
-configuration.  If a file is provided, it, and only it, is loaded
-at start-up.
-
-Therefore, using a specific configuration makes the process to
-load faster and the export more portable."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type '(choice
-	  (const :tag "Regular startup" nil)
-	  (file :tag "Specific start-up file" :must-match t)))
-
-(defcustom org-export-dispatch-use-expert-ui nil
-  "Non-nil means using a non-intrusive `org-export-dispatch'.
-In that case, no help buffer is displayed.  Though, an indicator
-for current export scope is added to the prompt (\"b\" when
-output is restricted to body only, \"s\" when it is restricted to
-the current subtree, \"v\" when only visible elements are
-considered for export, \"f\" when publishing functions should be
-passed the FORCE argument and \"a\" when the export should be
-asynchronous).  Also, [?] allows switching back to standard
-mode."
-  :group 'org-export-general
-  :version "24.4"
-  :package-version '(Org . "8.0")
-  :type 'boolean)
-
-
-
-;;; Defining Back-ends
-;;
-;; An export back-end is a structure with `org-export-backend' type
-;; and `name', `parent', `transcoders', `options', `filters', `blocks'
-;; and `menu' slots.
-;;
-;; At the lowest level, a back-end is created with
-;; `org-export-create-backend' function.
-;;
-;; A named back-end can be registered with
-;; `org-export-register-backend' function.  A registered back-end can
-;; later be referred to by its name, with `org-export-get-backend'
-;; function.  Also, such a back-end can become the parent of a derived
-;; back-end from which slot values will be inherited by default.
-;; `org-export-derived-backend-p' can check if a given back-end is
-;; derived from a list of back-end names.
-;;
-;; `org-export-get-all-transcoders', `org-export-get-all-options' and
-;; `org-export-get-all-filters' return the full alist of transcoders,
-;; options and filters, including those inherited from ancestors.
-;;
-;; At a higher level, `org-export-define-backend' is the standard way
-;; to define an export back-end.  If the new back-end is similar to
-;; a registered back-end, `org-export-define-derived-backend' may be
-;; used instead.
-;;
-;; Eventually `org-export-barf-if-invalid-backend' returns an error
-;; when a given back-end hasn't been registered yet.
-
-(cl-defstruct (org-export-backend (:constructor org-export-create-backend)
-				  (:copier nil))
-  name parent transcoders options filters blocks menu)
-
-;;;###autoload
-(defun org-export-get-backend (name)
-  "Return export back-end named after NAME.
-NAME is a symbol.  Return nil if no such back-end is found."
-  (cl-find-if (lambda (b) (and (eq name (org-export-backend-name b))))
-	      org-export-registered-backends))
-
-(defun org-export-register-backend (backend)
-  "Register BACKEND as a known export back-end.
-BACKEND is a structure with `org-export-backend' type."
-  ;; Refuse to register an unnamed back-end.
-  (unless (org-export-backend-name backend)
-    (error "Cannot register a unnamed export back-end"))
-  ;; Refuse to register a back-end with an unknown parent.
-  (let ((parent (org-export-backend-parent backend)))
-    (when (and parent (not (org-export-get-backend parent)))
-      (error "Cannot use unknown \"%s\" back-end as a parent" parent)))
-  ;; If a back-end with the same name as BACKEND is already
-  ;; registered, replace it with BACKEND.  Otherwise, simply add
-  ;; BACKEND to the list of registered back-ends.
-  (let ((old (org-export-get-backend (org-export-backend-name backend))))
-    (if old (setcar (memq old org-export-registered-backends) backend)
-      (push backend org-export-registered-backends))))
-
-(defun org-export-barf-if-invalid-backend (backend)
-  "Signal an error if BACKEND isn't defined."
-  (unless (org-export-backend-p backend)
-    (error "Unknown \"%s\" back-end: Aborting export" backend)))
-
-(defun org-export-derived-backend-p (backend &rest backends)
-  "Non-nil if BACKEND is derived from one of BACKENDS.
-BACKEND is an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.  BACKENDS is constituted of symbols."
-  (when (symbolp backend) (setq backend (org-export-get-backend backend)))
-  (when backend
-    (catch 'exit
-      (while (org-export-backend-parent backend)
-	(when (memq (org-export-backend-name backend) backends)
-	  (throw 'exit t))
-	(setq backend
-	      (org-export-get-backend (org-export-backend-parent backend))))
-      (memq (org-export-backend-name backend) backends))))
-
-(defun org-export-get-all-transcoders (backend)
-  "Return full translation table for BACKEND.
-
-BACKEND is an export back-end, as return by, e.g,,
-`org-export-create-backend'.  Return value is an alist where
-keys are element or object types, as symbols, and values are
-transcoders.
-
-Unlike to `org-export-backend-transcoders', this function
-also returns transcoders inherited from parent back-ends,
-if any."
-  (when (symbolp backend) (setq backend (org-export-get-backend backend)))
-  (when backend
-    (let ((transcoders (org-export-backend-transcoders backend))
-	  parent)
-      (while (setq parent (org-export-backend-parent backend))
-	(setq backend (org-export-get-backend parent))
-	(setq transcoders
-	      (append transcoders (org-export-backend-transcoders backend))))
-      transcoders)))
-
-(defun org-export-get-all-options (backend)
-  "Return export options for BACKEND.
-
-BACKEND is an export back-end, as return by, e.g,,
-`org-export-create-backend'.  See `org-export-options-alist'
-for the shape of the return value.
-
-Unlike to `org-export-backend-options', this function also
-returns options inherited from parent back-ends, if any.
-
-Return nil if BACKEND is unknown."
-  (when (symbolp backend) (setq backend (org-export-get-backend backend)))
-  (when backend
-    (let ((options (org-export-backend-options backend))
-	  parent)
-      (while (setq parent (org-export-backend-parent backend))
-	(setq backend (org-export-get-backend parent))
-	(setq options (append options (org-export-backend-options backend))))
-      options)))
-
-(defun org-export-get-all-filters (backend)
-  "Return complete list of filters for BACKEND.
-
-BACKEND is an export back-end, as return by, e.g,,
-`org-export-create-backend'.  Return value is an alist where
-keys are symbols and values lists of functions.
-
-Unlike to `org-export-backend-filters', this function also
-returns filters inherited from parent back-ends, if any."
-  (when (symbolp backend) (setq backend (org-export-get-backend backend)))
-  (when backend
-    (let ((filters (org-export-backend-filters backend))
-	  parent)
-      (while (setq parent (org-export-backend-parent backend))
-	(setq backend (org-export-get-backend parent))
-	(setq filters (append filters (org-export-backend-filters backend))))
-      filters)))
-
-(defun org-export-define-backend (backend transcoders &rest body)
-  "Define a new back-end BACKEND.
-
-TRANSCODERS is an alist between object or element types and
-functions handling them.
-
-These functions should return a string without any trailing
-space, or nil.  They must accept three arguments: the object or
-element itself, its contents or nil when it isn't recursive and
-the property list used as a communication channel.
-
-Contents, when not nil, are stripped from any global indentation
-\(although the relative one is preserved).  They also always end
-with a single newline character.
-
-If, for a given type, no function is found, that element or
-object type will simply be ignored, along with any blank line or
-white space at its end.  The same will happen if the function
-returns the nil value.  If that function returns the empty
-string, the type will be ignored, but the blank lines or white
-spaces will be kept.
-
-In addition to element and object types, one function can be
-associated to the `template' (or `inner-template') symbol and
-another one to the `plain-text' symbol.
-
-The former returns the final transcoded string, and can be used
-to add a preamble and a postamble to document's body.  It must
-accept two arguments: the transcoded string and the property list
-containing export options.  A function associated to `template'
-will not be applied if export has option \"body-only\".
-A function associated to `inner-template' is always applied.
-
-The latter, when defined, is to be called on every text not
-recognized as an element or an object.  It must accept two
-arguments: the text string and the information channel.  It is an
-appropriate place to protect special chars relative to the
-back-end.
-
-BODY can start with pre-defined keyword arguments.  The following
-keywords are understood:
-
-  :filters-alist
-
-    Alist between filters and function, or list of functions,
-    specific to the back-end.  See `org-export-filters-alist' for
-    a list of all allowed filters.  Filters defined here
-    shouldn't make a back-end test, as it may prevent back-ends
-    derived from this one to behave properly.
-
-  :menu-entry
-
-    Menu entry for the export dispatcher.  It should be a list
-    like:
-
-      \\='(KEY DESCRIPTION-OR-ORDINAL ACTION-OR-MENU)
-
-    where :
-
-      KEY is a free character selecting the back-end.
-
-      DESCRIPTION-OR-ORDINAL is either a string or a number.
-
-      If it is a string, is will be used to name the back-end in
-      its menu entry.  If it is a number, the following menu will
-      be displayed as a sub-menu of the back-end with the same
-      KEY.  Also, the number will be used to determine in which
-      order such sub-menus will appear (lowest first).
-
-      ACTION-OR-MENU is either a function or an alist.
-
-      If it is an action, it will be called with four
-      arguments (booleans): ASYNC, SUBTREEP, VISIBLE-ONLY and
-      BODY-ONLY.  See `org-export-as' for further explanations on
-      some of them.
-
-      If it is an alist, associations should follow the
-      pattern:
-
-        \\='(KEY DESCRIPTION ACTION)
-
-      where KEY, DESCRIPTION and ACTION are described above.
-
-    Valid values include:
-
-      \\='(?m \"My Special Back-end\" my-special-export-function)
-
-      or
-
-      \\='(?l \"Export to LaTeX\"
-           (?p \"As PDF file\" org-latex-export-to-pdf)
-           (?o \"As PDF file and open\"
-               (lambda (a s v b)
-                 (if a (org-latex-export-to-pdf t s v b)
-                   (org-open-file
-                    (org-latex-export-to-pdf nil s v b)))))))
-
-      or the following, which will be added to the previous
-      sub-menu,
-
-      \\='(?l 1
-          ((?B \"As TEX buffer (Beamer)\" org-beamer-export-as-latex)
-           (?P \"As PDF file (Beamer)\" org-beamer-export-to-pdf)))
-
-  :options-alist
-
-    Alist between back-end specific properties introduced in
-    communication channel and how their value are acquired.  See
-    `org-export-options-alist' for more information about
-    structure of the values."
-  (declare (indent 1))
-  (let (filters menu-entry options)
-    (while (keywordp (car body))
-      (let ((keyword (pop body)))
-	(pcase keyword
-	  (:filters-alist (setq filters (pop body)))
-	  (:menu-entry (setq menu-entry (pop body)))
-	  (:options-alist (setq options (pop body)))
-	  (_ (error "Unknown keyword: %s" keyword)))))
-    (org-export-register-backend
-     (org-export-create-backend :name backend
-				:transcoders transcoders
-				:options options
-				:filters filters
-				:menu menu-entry))))
-
-(defun org-export-define-derived-backend (child parent &rest body)
-  "Create a new back-end as a variant of an existing one.
-
-CHILD is the name of the derived back-end.  PARENT is the name of
-the parent back-end.
-
-BODY can start with pre-defined keyword arguments.  The following
-keywords are understood:
-
-  :filters-alist
-
-    Alist of filters that will overwrite or complete filters
-    defined in PARENT back-end.  See `org-export-filters-alist'
-    for a list of allowed filters.
-
-  :menu-entry
-
-    Menu entry for the export dispatcher.  See
-    `org-export-define-backend' for more information about the
-    expected value.
-
-  :options-alist
-
-    Alist of back-end specific properties that will overwrite or
-    complete those defined in PARENT back-end.  Refer to
-    `org-export-options-alist' for more information about
-    structure of the values.
-
-  :translate-alist
-
-    Alist of element and object types and transcoders that will
-    overwrite or complete transcode table from PARENT back-end.
-    Refer to `org-export-define-backend' for detailed information
-    about transcoders.
-
-As an example, here is how one could define \"my-latex\" back-end
-as a variant of `latex' back-end with a custom template function:
-
-  (org-export-define-derived-backend \\='my-latex \\='latex
-     :translate-alist \\='((template . my-latex-template-fun)))
-
-The back-end could then be called with, for example:
-
-  (org-export-to-buffer \\='my-latex \"*Test my-latex*\")"
-  (declare (indent 2))
-  (let (filters menu-entry options transcoders)
-    (while (keywordp (car body))
-      (let ((keyword (pop body)))
-	(pcase keyword
-	  (:filters-alist (setq filters (pop body)))
-	  (:menu-entry (setq menu-entry (pop body)))
-	  (:options-alist (setq options (pop body)))
-	  (:translate-alist (setq transcoders (pop body)))
-	  (_ (error "Unknown keyword: %s" keyword)))))
-    (org-export-register-backend
-     (org-export-create-backend :name child
-				:parent parent
-				:transcoders transcoders
-				:options options
-				:filters filters
-				:menu menu-entry))))
-
-
-
-;;; The Communication Channel
-;;
-;; During export process, every function has access to a number of
-;; properties.  They are of two types:
-;;
-;; 1. Environment options are collected once at the very beginning of
-;;    the process, out of the original buffer and configuration.
-;;    Collecting them is handled by `org-export-get-environment'
-;;    function.
-;;
-;;    Most environment options are defined through the
-;;    `org-export-options-alist' variable.
-;;
-;; 2. Tree properties are extracted directly from the parsed tree,
-;;    just before export, by `org-export--collect-tree-properties'.
-
-;;;; Environment Options
-;;
-;; Environment options encompass all parameters defined outside the
-;; scope of the parsed data.  They come from five sources, in
-;; increasing precedence order:
-;;
-;; - Global variables,
-;; - Buffer's attributes,
-;; - Options keyword symbols,
-;; - Buffer keywords,
-;; - Subtree properties.
-;;
-;; The central internal function with regards to environment options
-;; is `org-export-get-environment'.  It updates global variables with
-;; "#+BIND:" keywords, then retrieve and prioritize properties from
-;; the different sources.
-;;
-;;  The internal functions doing the retrieval are:
-;;  `org-export--get-global-options',
-;;  `org-export--get-buffer-attributes',
-;;  `org-export--parse-option-keyword',
-;;  `org-export--get-subtree-options' and
-;;  `org-export--get-inbuffer-options'
-;;
-;; Also, `org-export--list-bound-variables' collects bound variables
-;; along with their value in order to set them as buffer local
-;; variables later in the process.
-
-;;;###autoload
-(defun org-export-get-environment (&optional backend subtreep ext-plist)
-  "Collect export options from the current buffer.
-
-Optional argument BACKEND is an export back-end, as returned by
-`org-export-create-backend'.
-
-When optional argument SUBTREEP is non-nil, assume the export is
-done against the current sub-tree.
-
-Third optional argument EXT-PLIST is a property list with
-external parameters overriding Org default settings, but still
-inferior to file-local settings."
-  ;; First install #+BIND variables since these must be set before
-  ;; global options are read.
-  (dolist (pair (org-export--list-bound-variables))
-    (set (make-local-variable (car pair)) (nth 1 pair)))
-  ;; Get and prioritize export options...
-  (org-combine-plists
-   ;; ... from global variables...
-   (org-export--get-global-options backend)
-   ;; ... from an external property list...
-   ext-plist
-   ;; ... from in-buffer settings...
-   (org-export--get-inbuffer-options backend)
-   ;; ... and from subtree, when appropriate.
-   (and subtreep (org-export--get-subtree-options backend))))
-
-(defun org-export--parse-option-keyword (options &optional backend)
-  "Parse an OPTIONS line and return values as a plist.
-Optional argument BACKEND is an export back-end, as returned by,
-e.g., `org-export-create-backend'.  It specifies which back-end
-specific items to read, if any."
-  (let ((line
-	 (let ((s 0) alist)
-	   (while (string-match "\\(.+?\\):\\((.*?)\\|\\S-*\\)[ \t]*" options s)
-	     (setq s (match-end 0))
-	     (push (cons (match-string 1 options)
-			 (read (match-string 2 options)))
-		   alist))
-	   alist))
-	;; Priority is given to back-end specific options.
-	(all (append (org-export-get-all-options backend)
-		     org-export-options-alist))
-	(plist))
-    (when line
-      (dolist (entry all plist)
-	(let ((item (nth 2 entry)))
-	  (when item
-	    (let ((v (assoc-string item line t)))
-	      (when v (setq plist (plist-put plist (car entry) (cdr v)))))))))))
-
-(defun org-export--get-subtree-options (&optional backend)
-  "Get export options in subtree at point.
-Optional argument BACKEND is an export back-end, as returned by,
-e.g., `org-export-create-backend'.  It specifies back-end used
-for export.  Return options as a plist."
-  ;; For each buffer keyword, create a headline property setting the
-  ;; same property in communication channel.  The name for the
-  ;; property is the keyword with "EXPORT_" appended to it.
-  (org-with-wide-buffer
-   ;; Make sure point is at a heading.
-   (if (org-at-heading-p) (org-up-heading-safe) (org-back-to-heading t))
-   (let ((plist
-	  ;; EXPORT_OPTIONS are parsed in a non-standard way.  Take
-	  ;; care of them right from the start.
-	  (let ((o (org-entry-get (point) "EXPORT_OPTIONS" 'selective)))
-	    (and o (org-export--parse-option-keyword o backend))))
-	 ;; Take care of EXPORT_TITLE.  If it isn't defined, use
-	 ;; headline's title (with no todo keyword, priority cookie or
-	 ;; tag) as its fallback value.
-	 (cache (list
-		 (cons "TITLE"
-		       (or (org-entry-get (point) "EXPORT_TITLE" 'selective)
-			   (let ((case-fold-search nil))
-			     (looking-at org-complex-heading-regexp)
-			     (match-string-no-properties 4))))))
-	 ;; Look for both general keywords and back-end specific
-	 ;; options, with priority given to the latter.
-	 (options (append (org-export-get-all-options backend)
-			  org-export-options-alist)))
-     ;; Handle other keywords.  Then return PLIST.
-     (dolist (option options plist)
-       (let ((property (car option))
-	     (keyword (nth 1 option)))
-	 (when keyword
-	   (let ((value
-		  (or (cdr (assoc keyword cache))
-		      (let ((v (org-entry-get (point)
-					      (concat "EXPORT_" keyword)
-					      'selective)))
-			(push (cons keyword v) cache) v))))
-	     (when value
-	       (setq plist
-		     (plist-put plist
-				property
-				(cl-case (nth 4 option)
-				  (parse
-				   (org-element-parse-secondary-string
-				    value (org-element-restriction 'keyword)))
-				  (split (split-string value))
-				  (t value))))))))))))
-
-(defun org-export--get-inbuffer-options (&optional backend)
-  "Return current buffer export options, as a plist.
-
-Optional argument BACKEND, when non-nil, is an export back-end,
-as returned by, e.g., `org-export-create-backend'.  It specifies
-which back-end specific options should also be read in the
-process.
-
-Assume buffer is in Org mode.  Narrowing, if any, is ignored."
-  (let* ((case-fold-search t)
-	 (options (append
-		   ;; Priority is given to back-end specific options.
-		   (org-export-get-all-options backend)
-		   org-export-options-alist))
-	 (regexp (format "^[ \t]*#\\+%s:"
-			 (regexp-opt (nconc (delq nil (mapcar #'cadr options))
-					    org-export-special-keywords))))
-	 plist to-parse)
-    (letrec ((find-properties
-	      (lambda (keyword)
-		;; Return all properties associated to KEYWORD.
-		(let (properties)
-		  (dolist (option options properties)
-		    (when (equal (nth 1 option) keyword)
-		      (cl-pushnew (car option) properties))))))
-	     (get-options
-	      (lambda (&optional files)
-		;; Recursively read keywords in buffer.  FILES is
-		;; a list of files read so far.  PLIST is the current
-		;; property list obtained.
-		(org-with-wide-buffer
-		 (goto-char (point-min))
-		 (while (re-search-forward regexp nil t)
-		   (let ((element (org-element-at-point)))
-		     (when (eq (org-element-type element) 'keyword)
-		       (let ((key (org-element-property :key element))
-			     (val (org-element-property :value element)))
-			 (cond
-			  ;; Options in `org-export-special-keywords'.
-			  ((equal key "SETUPFILE")
-			   (let* ((uri (org-unbracket-string "\"" "\"" (org-trim val)))
-				  (uri-is-url (org-file-url-p uri))
-				  (uri (if uri-is-url
-					   uri
-					 (expand-file-name uri))))
-			     ;; Avoid circular dependencies.
-			     (unless (member uri files)
-			       (with-temp-buffer
-				 (unless uri-is-url
-				   (setq default-directory
-					 (file-name-directory uri)))
-				 (insert (org-file-contents uri 'noerror))
-				 (let ((org-inhibit-startup t)) (org-mode))
-				 (funcall get-options (cons uri files))))))
-			  ((equal key "OPTIONS")
-			   (setq plist
-				 (org-combine-plists
-				  plist
-				  (org-export--parse-option-keyword
-				   val backend))))
-			  ((equal key "FILETAGS")
-			   (setq plist
-				 (org-combine-plists
-				  plist
-				  (list :filetags
-					(org-uniquify
-					 (append
-					  (org-split-string val ":")
-					  (plist-get plist :filetags)))))))
-			  (t
-			   ;; Options in `org-export-options-alist'.
-			   (dolist (property (funcall find-properties key))
-			     (setq
-			      plist
-			      (plist-put
-			       plist property
-			       ;; Handle value depending on specified
-			       ;; BEHAVIOR.
-			       (cl-case (nth 4 (assq property options))
-				 (parse
-				  (unless (memq property to-parse)
-				    (push property to-parse))
-				  ;; Even if `parse' implies `space'
-				  ;; behavior, we separate line with
-				  ;; "\n" so as to preserve
-				  ;; line-breaks.  However, empty
-				  ;; lines are forbidden since `parse'
-				  ;; doesn't allow more than one
-				  ;; paragraph.
-				  (let ((old (plist-get plist property)))
-				    (cond ((not (org-string-nw-p val)) old)
-					  (old (concat old "\n" val))
-					  (t val))))
-				 (space
-				  (if (not (plist-get plist property))
-				      (org-trim val)
-				    (concat (plist-get plist property)
-					    " "
-					    (org-trim val))))
-				 (newline
-				  (org-trim
-				   (concat (plist-get plist property)
-					   "\n"
-					   (org-trim val))))
-				 (split `(,@(plist-get plist property)
-					  ,@(split-string val)))
-				 ((t) val)
-				 (otherwise
-				  (if (not (plist-member plist property)) val
-				    (plist-get plist property)))))))))))))))))
-      ;; Read options in the current buffer and return value.
-      (funcall get-options (and buffer-file-name (list buffer-file-name)))
-      ;; Parse properties in TO-PARSE.  Remove newline characters not
-      ;; involved in line breaks to simulate `space' behavior.
-      ;; Finally return options.
-      (dolist (p to-parse plist)
-	(let ((value (org-element-parse-secondary-string
-		      (plist-get plist p)
-		      (org-element-restriction 'keyword))))
-	  (org-element-map value 'plain-text
-	    (lambda (s)
-	      (org-element-set-element
-	       s (replace-regexp-in-string "\n" " " s))))
-	  (setq plist (plist-put plist p value)))))))
-
-(defun org-export--get-export-attributes
-    (&optional backend subtreep visible-only body-only)
-  "Return properties related to export process, as a plist.
-Optional arguments BACKEND, SUBTREEP, VISIBLE-ONLY and BODY-ONLY
-are like the arguments with the same names of function
-`org-export-as'."
-  (list :export-options (delq nil
-			      (list (and subtreep 'subtree)
-				    (and visible-only 'visible-only)
-				    (and body-only 'body-only)))
-	:back-end backend
-	:translate-alist (org-export-get-all-transcoders backend)
-	:exported-data (make-hash-table :test #'eq :size 4001)))
-
-(defun org-export--get-buffer-attributes ()
-  "Return properties related to buffer attributes, as a plist."
-  (list :input-buffer (buffer-name (buffer-base-buffer))
-	:input-file (buffer-file-name (buffer-base-buffer))))
-
-(defun org-export--get-global-options (&optional backend)
-  "Return global export options as a plist.
-Optional argument BACKEND, if non-nil, is an export back-end, as
-returned by, e.g., `org-export-create-backend'.  It specifies
-which back-end specific export options should also be read in the
-process."
-  (let (plist
-	;; Priority is given to back-end specific options.
-	(all (append (org-export-get-all-options backend)
-		     org-export-options-alist)))
-    (dolist (cell all plist)
-      (let ((prop (car cell)))
-	(unless (plist-member plist prop)
-	  (setq plist
-		(plist-put
-		 plist
-		 prop
-		 ;; Evaluate default value provided.
-		 (let ((value (eval (nth 3 cell))))
-		   (if (eq (nth 4 cell) 'parse)
-		       (org-element-parse-secondary-string
-			value (org-element-restriction 'keyword))
-		     value)))))))))
-
-(defun org-export--list-bound-variables ()
-  "Return variables bound from BIND keywords in current buffer.
-Also look for BIND keywords in setup files.  The return value is
-an alist where associations are (VARIABLE-NAME VALUE)."
-  (when org-export-allow-bind-keywords
-    (letrec ((collect-bind
-	      (lambda (files alist)
-		;; Return an alist between variable names and their
-		;; value.  FILES is a list of setup files names read
-		;; so far, used to avoid circular dependencies.  ALIST
-		;; is the alist collected so far.
-		(let ((case-fold-search t))
-		  (org-with-wide-buffer
-		   (goto-char (point-min))
-		   (while (re-search-forward
-			   "^[ \t]*#\\+\\(BIND\\|SETUPFILE\\):" nil t)
-		     (let ((element (org-element-at-point)))
-		       (when (eq (org-element-type element) 'keyword)
-			 (let ((val (org-element-property :value element)))
-			   (if (equal (org-element-property :key element)
-				      "BIND")
-			       (push (read (format "(%s)" val)) alist)
-			     ;; Enter setup file.
-			     (let* ((uri (org-unbracket-string "\"" "\"" val))
-				    (uri-is-url (org-file-url-p uri))
-				    (uri (if uri-is-url
-					     uri
-					   (expand-file-name uri))))
-			       ;; Avoid circular dependencies.
-			       (unless (member uri files)
-				 (with-temp-buffer
-				   (unless uri-is-url
-				     (setq default-directory
-					   (file-name-directory uri)))
-				   (let ((org-inhibit-startup t)) (org-mode))
-				   (insert (org-file-contents uri 'noerror))
-				   (setq alist
-					 (funcall collect-bind
-						  (cons uri files)
-						  alist))))))))))
-		   alist)))))
-      ;; Return value in appropriate order of appearance.
-      (nreverse (funcall collect-bind nil nil)))))
-
-;; defsubst org-export-get-parent must be defined before first use,
-;; was originally defined in the topology section
-
-(defsubst org-export-get-parent (blob)
-  "Return BLOB parent or nil.
-BLOB is the element or object considered."
-  (org-element-property :parent blob))
-
-;;;; Tree Properties
-;;
-;; Tree properties are information extracted from parse tree.  They
-;; are initialized at the beginning of the transcoding process by
-;; `org-export--collect-tree-properties'.
-;;
-;; Dedicated functions focus on computing the value of specific tree
-;; properties during initialization.  Thus,
-;; `org-export--populate-ignore-list' lists elements and objects that
-;; should be skipped during export, `org-export--get-min-level' gets
-;; the minimal exportable level, used as a basis to compute relative
-;; level for headlines.  Eventually
-;; `org-export--collect-headline-numbering' builds an alist between
-;; headlines and their numbering.
-
-(defun org-export--collect-tree-properties (data info)
-  "Extract tree properties from parse tree.
-
-DATA is the parse tree from which information is retrieved.  INFO
-is a list holding export options.
-
-Following tree properties are set or updated:
-
-`:headline-offset' Offset between true level of headlines and
-		   local level.  An offset of -1 means a headline
-		   of level 2 should be considered as a level
-		   1 headline in the context.
-
-`:headline-numbering' Alist of all headlines as key and the
-		      associated numbering as value.
-
-`:id-alist' Alist of all ID references as key and associated file
-            as value.
-
-Return updated plist."
-  ;; Install the parse tree in the communication channel.
-  (setq info (plist-put info :parse-tree data))
-  ;; Compute `:headline-offset' in order to be able to use
-  ;; `org-export-get-relative-level'.
-  (setq info
-	(plist-put info
-		   :headline-offset
-		   (- 1 (org-export--get-min-level data info))))
-  ;; From now on, properties order doesn't matter: get the rest of the
-  ;; tree properties.
-  (org-combine-plists
-   info
-   (list :headline-numbering (org-export--collect-headline-numbering data info)
-	 :id-alist
-	 (org-element-map data 'link
-	   (lambda (l)
-	     (and (string= (org-element-property :type l) "id")
-		  (let* ((id (org-element-property :path l))
-			 (file (car (org-id-find id))))
-		    (and file (cons id (file-relative-name file))))))))))
-
-(defun org-export--get-min-level (data options)
-  "Return minimum exportable headline's level in DATA.
-DATA is parsed tree as returned by `org-element-parse-buffer'.
-OPTIONS is a plist holding export options."
-  (catch 'exit
-    (let ((min-level 10000))
-      (dolist (datum (org-element-contents data))
-	(when (and (eq (org-element-type datum) 'headline)
-		   (not (org-element-property :footnote-section-p datum))
-		   (not (memq datum (plist-get options :ignore-list))))
-	  (setq min-level (min (org-element-property :level datum) min-level))
-	  (when (= min-level 1) (throw 'exit 1))))
-      ;; If no headline was found, for the sake of consistency, set
-      ;; minimum level to 1 nonetheless.
-      (if (= min-level 10000) 1 min-level))))
-
-(defun org-export--collect-headline-numbering (data options)
-  "Return numbering of all exportable, numbered headlines in a parse tree.
-
-DATA is the parse tree.  OPTIONS is the plist holding export
-options.
-
-Return an alist whose key is a headline and value is its
-associated numbering \(in the shape of a list of numbers) or nil
-for a footnotes section."
-  (let ((numbering (make-vector org-export-max-depth 0)))
-    (org-element-map data 'headline
-      (lambda (headline)
-	(when (and (org-export-numbered-headline-p headline options)
-		   (not (org-element-property :footnote-section-p headline)))
-	  (let ((relative-level
-		 (1- (org-export-get-relative-level headline options))))
-	    (cons
-	     headline
-	     (cl-loop
-	      for n across numbering
-	      for idx from 0 to org-export-max-depth
-	      when (< idx relative-level) collect n
-	      when (= idx relative-level) collect (aset numbering idx (1+ n))
-	      when (> idx relative-level) do (aset numbering idx 0))))))
-      options)))
-
-(defun org-export--selected-trees (data info)
-  "List headlines and inlinetasks with a select tag in their tree.
-DATA is parsed data as returned by `org-element-parse-buffer'.
-INFO is a plist holding export options."
-  (let ((select (cl-mapcan (lambda (tag) (org-tags-expand tag t))
-			   (plist-get info :select-tags))))
-    (if (cl-some (lambda (tag) (member tag select)) (plist-get info :filetags))
-	;; If FILETAGS contains a select tag, every headline or
-	;; inlinetask is returned.
-	(org-element-map data '(headline inlinetask) #'identity)
-      (letrec ((selected-trees nil)
-	       (walk-data
-		(lambda (data genealogy)
-		  (let ((type (org-element-type data)))
-		    (cond
-		     ((memq type '(headline inlinetask))
-		      (let ((tags (org-element-property :tags data)))
-			(if (cl-some (lambda (tag) (member tag select)) tags)
-			    ;; When a select tag is found, mark full
-			    ;; genealogy and every headline within the
-			    ;; tree as acceptable.
-			    (setq selected-trees
-				  (append
-				   genealogy
-				   (org-element-map data '(headline inlinetask)
-				     #'identity)
-				   selected-trees))
-			  ;; If at a headline, continue searching in
-			  ;; tree, recursively.
-			  (when (eq type 'headline)
-			    (dolist (el (org-element-contents data))
-			      (funcall walk-data el (cons data genealogy)))))))
-		     ((or (eq type 'org-data)
-			  (memq type org-element-greater-elements))
-		      (dolist (el (org-element-contents data))
-			(funcall walk-data el genealogy))))))))
-	(funcall walk-data data nil)
-	selected-trees))))
-
-(defun org-export--skip-p (datum options selected excluded)
-  "Non-nil when element or object DATUM should be skipped during export.
-OPTIONS is the plist holding export options.  SELECTED, when
-non-nil, is a list of headlines or inlinetasks belonging to
-a tree with a select tag.  EXCLUDED is a list of tags, as
-strings.  Any headline or inlinetask marked with one of those is
-not exported."
-  (cl-case (org-element-type datum)
-    ((comment comment-block)
-     ;; Skip all comments and comment blocks.  Make to keep maximum
-     ;; number of blank lines around the comment so as to preserve
-     ;; local structure of the document upon interpreting it back into
-     ;; Org syntax.
-     (let* ((previous (org-export-get-previous-element datum options))
-	    (before (or (org-element-property :post-blank previous) 0))
-	    (after (or (org-element-property :post-blank datum) 0)))
-       (when previous
-	 (org-element-put-property previous :post-blank (max before after 1))))
-     t)
-    (clock (not (plist-get options :with-clocks)))
-    (drawer
-     (let ((with-drawers-p (plist-get options :with-drawers)))
-       (or (not with-drawers-p)
-	   (and (consp with-drawers-p)
-		;; If `:with-drawers' value starts with `not', ignore
-		;; every drawer whose name belong to that list.
-		;; Otherwise, ignore drawers whose name isn't in that
-		;; list.
-		(let ((name (org-element-property :drawer-name datum)))
-		  (if (eq (car with-drawers-p) 'not)
-		      (member-ignore-case name (cdr with-drawers-p))
-		    (not (member-ignore-case name with-drawers-p))))))))
-    (fixed-width (not (plist-get options :with-fixed-width)))
-    ((footnote-definition footnote-reference)
-     (not (plist-get options :with-footnotes)))
-    ((headline inlinetask)
-     (let ((with-tasks (plist-get options :with-tasks))
-	   (todo (org-element-property :todo-keyword datum))
-	   (todo-type (org-element-property :todo-type datum))
-	   (archived (plist-get options :with-archived-trees))
-	   (tags (org-export-get-tags datum options nil t)))
-       (or
-	(and (eq (org-element-type datum) 'inlinetask)
-	     (not (plist-get options :with-inlinetasks)))
-	;; Ignore subtrees with an exclude tag.
-	(cl-some (lambda (tag) (member tag excluded)) tags)
-	;; When a select tag is present in the buffer, ignore any tree
-	;; without it.
-	(and selected (not (memq datum selected)))
-	;; Ignore commented sub-trees.
-	(org-element-property :commentedp datum)
-	;; Ignore archived subtrees if `:with-archived-trees' is nil.
-	(and (not archived) (org-element-property :archivedp datum))
-	;; Ignore tasks, if specified by `:with-tasks' property.
-	(and todo
-	     (or (not with-tasks)
-		 (and (memq with-tasks '(todo done))
-		      (not (eq todo-type with-tasks)))
-		 (and (consp with-tasks) (not (member todo with-tasks))))))))
-    ((latex-environment latex-fragment) (not (plist-get options :with-latex)))
-    (node-property
-     (let ((properties-set (plist-get options :with-properties)))
-       (cond ((null properties-set) t)
-	     ((consp properties-set)
-	      (not (member-ignore-case (org-element-property :key datum)
-				       properties-set))))))
-    (planning (not (plist-get options :with-planning)))
-    (property-drawer (not (plist-get options :with-properties)))
-    (statistics-cookie (not (plist-get options :with-statistics-cookies)))
-    (table (not (plist-get options :with-tables)))
-    (table-cell
-     (and (org-export-table-has-special-column-p
-	   (org-export-get-parent-table datum))
-	  (org-export-first-sibling-p datum options)))
-    (table-row (org-export-table-row-is-special-p datum options))
-    (timestamp
-     ;; `:with-timestamps' only applies to isolated timestamps
-     ;; objects, i.e. timestamp objects in a paragraph containing only
-     ;; timestamps and whitespaces.
-     (when (let ((parent (org-export-get-parent-element datum)))
-	     (and (memq (org-element-type parent) '(paragraph verse-block))
-		  (not (org-element-map parent
-			   (cons 'plain-text
-				 (remq 'timestamp org-element-all-objects))
-			 (lambda (obj)
-			   (or (not (stringp obj)) (org-string-nw-p obj)))
-			 options t))))
-       (cl-case (plist-get options :with-timestamps)
-	 ((nil) t)
-	 (active
-	  (not (memq (org-element-property :type datum) '(active active-range))))
-	 (inactive
-	  (not (memq (org-element-property :type datum)
-		     '(inactive inactive-range)))))))))
-
-
-;;; The Transcoder
-;;
-;; `org-export-data' reads a parse tree (obtained with, i.e.
-;; `org-element-parse-buffer') and transcodes it into a specified
-;; back-end output.  It takes care of filtering out elements or
-;; objects according to export options and organizing the output blank
-;; lines and white space are preserved.  The function memoizes its
-;; results, so it is cheap to call it within transcoders.
-;;
-;; It is possible to modify locally the back-end used by
-;; `org-export-data' or even use a temporary back-end by using
-;; `org-export-data-with-backend'.
-;;
-;; `org-export-transcoder' is an accessor returning appropriate
-;; translator function for a given element or object.
-
-(defun org-export-transcoder (blob info)
-  "Return appropriate transcoder for BLOB.
-INFO is a plist containing export directives."
-  (let ((type (org-element-type blob)))
-    ;; Return contents only for complete parse trees.
-    (if (eq type 'org-data) (lambda (_datum contents _info) contents)
-      (let ((transcoder (cdr (assq type (plist-get info :translate-alist)))))
-	(and (functionp transcoder) transcoder)))))
-
-(defun org-export-data (data info)
-  "Convert DATA into current back-end format.
-
-DATA is a parse tree, an element or an object or a secondary
-string.  INFO is a plist holding export options.
-
-Return a string."
-  (or (gethash data (plist-get info :exported-data))
-      ;; Handle broken links according to
-      ;; `org-export-with-broken-links'.
-      (cl-macrolet
-	  ((broken-link-handler
-	    (&rest body)
-	    `(condition-case err
-		 (progn ,@body)
-	       (org-link-broken
-		(pcase (plist-get info :with-broken-links)
-		  (`nil (user-error "Unable to resolve link: %S" (nth 1 err)))
-		  (`mark (org-export-data
-			  (format "[BROKEN LINK: %s]" (nth 1 err)) info))
-		  (_ nil))))))
-	(let* ((type (org-element-type data))
-	       (parent (org-export-get-parent data))
-	       (results
-		(cond
-		 ;; Ignored element/object.
-		 ((memq data (plist-get info :ignore-list)) nil)
-		 ;; Plain text.
-		 ((eq type 'plain-text)
-		  (org-export-filter-apply-functions
-		   (plist-get info :filter-plain-text)
-		   (let ((transcoder (org-export-transcoder data info)))
-		     (if transcoder (funcall transcoder data info) data))
-		   info))
-		 ;; Secondary string.
-		 ((not type)
-		  (mapconcat (lambda (obj) (org-export-data obj info)) data ""))
-		 ;; Element/Object without contents or, as a special
-		 ;; case, headline with archive tag and archived trees
-		 ;; restricted to title only.
-		 ((or (not (org-element-contents data))
-		      (and (eq type 'headline)
-			   (eq (plist-get info :with-archived-trees) 'headline)
-			   (org-element-property :archivedp data)))
-		  (let ((transcoder (org-export-transcoder data info)))
-		    (or (and (functionp transcoder)
-			     (broken-link-handler
-			      (funcall transcoder data nil info)))
-			;; Export snippets never return a nil value so
-			;; that white spaces following them are never
-			;; ignored.
-			(and (eq type 'export-snippet) ""))))
-		 ;; Element/Object with contents.
-		 (t
-		  (let ((transcoder (org-export-transcoder data info)))
-		    (when transcoder
-		      (let* ((greaterp (memq type org-element-greater-elements))
-			     (objectp
-			      (and (not greaterp)
-				   (memq type org-element-recursive-objects)))
-			     (contents
-			      (mapconcat
-			       (lambda (element) (org-export-data element info))
-			       (org-element-contents
-				(if (or greaterp objectp) data
-				  ;; Elements directly containing
-				  ;; objects must have their indentation
-				  ;; normalized first.
-				  (org-element-normalize-contents
-				   data
-				   ;; When normalizing contents of the
-				   ;; first paragraph in an item or
-				   ;; a footnote definition, ignore
-				   ;; first line's indentation: there is
-				   ;; none and it might be misleading.
-				   (when (eq type 'paragraph)
-				     (and
-				      (eq (car (org-element-contents parent))
-					  data)
-				      (memq (org-element-type parent)
-					    '(footnote-definition item)))))))
-			       "")))
-			(broken-link-handler
-			 (funcall transcoder data
-				  (if (not greaterp) contents
-				    (org-element-normalize-string contents))
-				  info)))))))))
-	  ;; Final result will be memoized before being returned.
-	  (puthash
-	   data
-	   (cond
-	    ((not results) "")
-	    ((memq type '(org-data plain-text nil)) results)
-	    ;; Append the same white space between elements or objects
-	    ;; as in the original buffer, and call appropriate filters.
-	    (t
-	     (org-export-filter-apply-functions
-	      (plist-get info (intern (format ":filter-%s" type)))
-	      (let ((blank (or (org-element-property :post-blank data) 0)))
-		(if (eq (org-element-class data parent) 'object)
-		    (concat results (make-string blank ?\s))
-		  (concat (org-element-normalize-string results)
-			  (make-string blank ?\n))))
-	      info)))
-	   (plist-get info :exported-data))))))
-
-(defun org-export-data-with-backend (data backend info)
-  "Convert DATA into BACKEND format.
-
-DATA is an element, an object, a secondary string or a string.
-BACKEND is a symbol.  INFO is a plist used as a communication
-channel.
-
-Unlike to `org-export-with-backend', this function will
-recursively convert DATA using BACKEND translation table."
-  (when (symbolp backend) (setq backend (org-export-get-backend backend)))
-  ;; Set-up a new communication channel with translations defined in
-  ;; BACKEND as the translate table and a new hash table for
-  ;; memoization.
-  (let ((new-info
-	 (org-combine-plists
-	  info
-	  (list :back-end backend
-		:translate-alist (org-export-get-all-transcoders backend)
-		;; Size of the hash table is reduced since this
-		;; function will probably be used on small trees.
-		:exported-data (make-hash-table :test 'eq :size 401)))))
-    (prog1 (org-export-data data new-info)
-      ;; Preserve `:internal-references', as those do not depend on
-      ;; the back-end used; we need to make sure that any new
-      ;; reference when the temporary back-end was active gets through
-      ;; the default one.
-      (plist-put info :internal-references
-		 (plist-get new-info :internal-references)))))
-
-(defun org-export-expand (blob contents &optional with-affiliated)
-  "Expand a parsed element or object to its original state.
-
-BLOB is either an element or an object.  CONTENTS is its
-contents, as a string or nil.
-
-When optional argument WITH-AFFILIATED is non-nil, add affiliated
-keywords before output."
-  (let ((type (org-element-type blob)))
-    (concat (and with-affiliated
-		 (eq (org-element-class blob) 'element)
-		 (org-element--interpret-affiliated-keywords blob))
-	    (funcall (intern (format "org-element-%s-interpreter" type))
-		     blob contents))))
-
-
-
-;;; The Filter System
-;;
-;; Filters allow end-users to tweak easily the transcoded output.
-;; They are the functional counterpart of hooks, as every filter in
-;; a set is applied to the return value of the previous one.
-;;
-;; Every set is back-end agnostic.  Although, a filter is always
-;; called, in addition to the string it applies to, with the back-end
-;; used as argument, so it's easy for the end-user to add back-end
-;; specific filters in the set.  The communication channel, as
-;; a plist, is required as the third argument.
-;;
-;; From the developer side, filters sets can be installed in the
-;; process with the help of `org-export-define-backend', which
-;; internally stores filters as an alist.  Each association has a key
-;; among the following symbols and a function or a list of functions
-;; as value.
-;;
-;; - `:filter-options' applies to the property list containing export
-;;   options.  Unlike to other filters, functions in this list accept
-;;   two arguments instead of three: the property list containing
-;;   export options and the back-end.  Users can set its value through
-;;   `org-export-filter-options-functions' variable.
-;;
-;; - `:filter-parse-tree' applies directly to the complete parsed
-;;   tree.  Users can set it through
-;;   `org-export-filter-parse-tree-functions' variable.
-;;
-;; - `:filter-body' applies to the body of the output, before template
-;;   translator chimes in.  Users can set it through
-;;   `org-export-filter-body-functions' variable.
-;;
-;; - `:filter-final-output' applies to the final transcoded string.
-;;   Users can set it with `org-export-filter-final-output-functions'
-;;   variable.
-;;
-;; - `:filter-plain-text' applies to any string not recognized as Org
-;;   syntax.  `org-export-filter-plain-text-functions' allows users to
-;;   configure it.
-;;
-;; - `:filter-TYPE' applies on the string returned after an element or
-;;   object of type TYPE has been transcoded.  A user can modify
-;;   `org-export-filter-TYPE-functions' to install these filters.
-;;
-;; All filters sets are applied with
-;; `org-export-filter-apply-functions' function.  Filters in a set are
-;; applied in a LIFO fashion.  It allows developers to be sure that
-;; their filters will be applied first.
-;;
-;; Filters properties are installed in communication channel with
-;; `org-export-install-filters' function.
-;;
-;; Eventually, two hooks (`org-export-before-processing-hook' and
-;; `org-export-before-parsing-hook') are run at the beginning of the
-;; export process and just before parsing to allow for heavy structure
-;; modifications.
-
-
-;;;; Hooks
-
-(defvar org-export-before-processing-hook nil
-  "Hook run at the beginning of the export process.
-
-This is run before include keywords and macros are expanded and
-Babel code blocks executed, on a copy of the original buffer
-being exported.  Visibility and narrowing are preserved.  Point
-is at the beginning of the buffer.
-
-Every function in this hook will be called with one argument: the
-back-end currently used, as a symbol.")
-
-(defvar org-export-before-parsing-hook nil
-  "Hook run before parsing an export buffer.
-
-This is run after include keywords and macros have been expanded
-and Babel code blocks executed, on a copy of the original buffer
-being exported.  Visibility and narrowing are preserved.  Point
-is at the beginning of the buffer.
-
-Every function in this hook will be called with one argument: the
-back-end currently used, as a symbol.")
-
-
-;;;; Special Filters
-
-(defvar org-export-filter-options-functions nil
-  "List of functions applied to the export options.
-Each filter is called with two arguments: the export options, as
-a plist, and the back-end, as a symbol.  It must return
-a property list containing export options.")
-
-(defvar org-export-filter-parse-tree-functions nil
-  "List of functions applied to the parsed tree.
-Each filter is called with three arguments: the parse tree, as
-returned by `org-element-parse-buffer', the back-end, as
-a symbol, and the communication channel, as a plist.  It must
-return the modified parse tree to transcode.")
-
-(defvar org-export-filter-plain-text-functions nil
-  "List of functions applied to plain text.
-Each filter is called with three arguments: a string which
-contains no Org syntax, the back-end, as a symbol, and the
-communication channel, as a plist.  It must return a string or
-nil.")
-
-(defvar org-export-filter-body-functions nil
-  "List of functions applied to transcoded body.
-Each filter is called with three arguments: a string which
-contains no Org syntax, the back-end, as a symbol, and the
-communication channel, as a plist.  It must return a string or
-nil.")
-
-(defvar org-export-filter-final-output-functions nil
-  "List of functions applied to the transcoded string.
-Each filter is called with three arguments: the full transcoded
-string, the back-end, as a symbol, and the communication channel,
-as a plist.  It must return a string that will be used as the
-final export output.")
-
-
-;;;; Elements Filters
-
-(defvar org-export-filter-babel-call-functions nil
-  "List of functions applied to a transcoded babel-call.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-center-block-functions nil
-  "List of functions applied to a transcoded center block.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-clock-functions nil
-  "List of functions applied to a transcoded clock.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-diary-sexp-functions nil
-  "List of functions applied to a transcoded diary-sexp.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-drawer-functions nil
-  "List of functions applied to a transcoded drawer.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-dynamic-block-functions nil
-  "List of functions applied to a transcoded dynamic-block.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-example-block-functions nil
-  "List of functions applied to a transcoded example-block.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-export-block-functions nil
-  "List of functions applied to a transcoded export-block.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-fixed-width-functions nil
-  "List of functions applied to a transcoded fixed-width.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-footnote-definition-functions nil
-  "List of functions applied to a transcoded footnote-definition.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-headline-functions nil
-  "List of functions applied to a transcoded headline.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-horizontal-rule-functions nil
-  "List of functions applied to a transcoded horizontal-rule.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-inlinetask-functions nil
-  "List of functions applied to a transcoded inlinetask.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-item-functions nil
-  "List of functions applied to a transcoded item.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-keyword-functions nil
-  "List of functions applied to a transcoded keyword.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-latex-environment-functions nil
-  "List of functions applied to a transcoded latex-environment.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-node-property-functions nil
-  "List of functions applied to a transcoded node-property.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-paragraph-functions nil
-  "List of functions applied to a transcoded paragraph.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-plain-list-functions nil
-  "List of functions applied to a transcoded plain-list.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-planning-functions nil
-  "List of functions applied to a transcoded planning.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-property-drawer-functions nil
-  "List of functions applied to a transcoded property-drawer.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-quote-block-functions nil
-  "List of functions applied to a transcoded quote block.
-Each filter is called with three arguments: the transcoded quote
-data, as a string, the back-end, as a symbol, and the
-communication channel, as a plist.  It must return a string or
-nil.")
-
-(defvar org-export-filter-section-functions nil
-  "List of functions applied to a transcoded section.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-special-block-functions nil
-  "List of functions applied to a transcoded special block.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-src-block-functions nil
-  "List of functions applied to a transcoded src-block.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-table-functions nil
-  "List of functions applied to a transcoded table.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-table-cell-functions nil
-  "List of functions applied to a transcoded table-cell.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-table-row-functions nil
-  "List of functions applied to a transcoded table-row.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-verse-block-functions nil
-  "List of functions applied to a transcoded verse block.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-
-;;;; Objects Filters
-
-(defvar org-export-filter-bold-functions nil
-  "List of functions applied to transcoded bold text.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-code-functions nil
-  "List of functions applied to transcoded code text.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-entity-functions nil
-  "List of functions applied to a transcoded entity.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-export-snippet-functions nil
-  "List of functions applied to a transcoded export-snippet.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-footnote-reference-functions nil
-  "List of functions applied to a transcoded footnote-reference.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-inline-babel-call-functions nil
-  "List of functions applied to a transcoded inline-babel-call.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-inline-src-block-functions nil
-  "List of functions applied to a transcoded inline-src-block.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-italic-functions nil
-  "List of functions applied to transcoded italic text.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-latex-fragment-functions nil
-  "List of functions applied to a transcoded latex-fragment.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-line-break-functions nil
-  "List of functions applied to a transcoded line-break.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-link-functions nil
-  "List of functions applied to a transcoded link.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-radio-target-functions nil
-  "List of functions applied to a transcoded radio-target.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-statistics-cookie-functions nil
-  "List of functions applied to a transcoded statistics-cookie.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-strike-through-functions nil
-  "List of functions applied to transcoded strike-through text.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-subscript-functions nil
-  "List of functions applied to a transcoded subscript.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-superscript-functions nil
-  "List of functions applied to a transcoded superscript.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-target-functions nil
-  "List of functions applied to a transcoded target.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-timestamp-functions nil
-  "List of functions applied to a transcoded timestamp.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-underline-functions nil
-  "List of functions applied to transcoded underline text.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-(defvar org-export-filter-verbatim-functions nil
-  "List of functions applied to transcoded verbatim text.
-Each filter is called with three arguments: the transcoded data,
-as a string, the back-end, as a symbol, and the communication
-channel, as a plist.  It must return a string or nil.")
-
-
-;;;; Filters Tools
-;;
-;; Internal function `org-export-install-filters' installs filters
-;; hard-coded in back-ends (developer filters) and filters from global
-;; variables (user filters) in the communication channel.
-;;
-;; Internal function `org-export-filter-apply-functions' takes care
-;; about applying each filter in order to a given data.  It ignores
-;; filters returning a nil value but stops whenever a filter returns
-;; an empty string.
-
-(defun org-export-filter-apply-functions (filters value info)
-  "Call every function in FILTERS.
-
-Functions are called with three arguments: a value, the export
-back-end name and the communication channel.  First function in
-FILTERS is called with VALUE as its first argument.  Second
-function in FILTERS is called with the previous result as its
-value, etc.
-
-Functions returning nil are skipped.  Any function returning the
-empty string ends the process, which returns the empty string.
-
-Call is done in a LIFO fashion, to be sure that developer
-specified filters, if any, are called first."
-  (catch :exit
-    (let* ((backend (plist-get info :back-end))
-	   (backend-name (and backend (org-export-backend-name backend))))
-      (dolist (filter filters value)
-	(let ((result (funcall filter value backend-name info)))
-	  (cond ((not result))
-		((equal result "") (throw :exit ""))
-		(t (setq value result))))))))
-
-(defun org-export-install-filters (info)
-  "Install filters properties in communication channel.
-INFO is a plist containing the current communication channel.
-Return the updated communication channel."
-  (let (plist)
-    ;; Install user-defined filters with `org-export-filters-alist'
-    ;; and filters already in INFO (through ext-plist mechanism).
-    (dolist (p org-export-filters-alist)
-      (let* ((prop (car p))
-	     (info-value (plist-get info prop))
-	     (default-value (symbol-value (cdr p))))
-	(setq plist
-	      (plist-put plist prop
-			 ;; Filters in INFO will be called
-			 ;; before those user provided.
-			 (append (if (listp info-value) info-value
-				   (list info-value))
-				 default-value)))))
-    ;; Prepend back-end specific filters to that list.
-    (dolist (p (org-export-get-all-filters (plist-get info :back-end)))
-      ;; Single values get consed, lists are appended.
-      (let ((key (car p)) (value (cdr p)))
-	(when value
-	  (setq plist
-		(plist-put
-		 plist key
-		 (if (atom value) (cons value (plist-get plist key))
-		   (append value (plist-get plist key))))))))
-    ;; Return new communication channel.
-    (org-combine-plists info plist)))
-
-
-
-;;; Core functions
-;;
-;; This is the room for the main function, `org-export-as', along with
-;; its derivative, `org-export-string-as'.
-;; `org-export--copy-to-kill-ring-p' determines if output of these
-;; function should be added to kill ring.
-;;
-;; Note that `org-export-as' doesn't really parse the current buffer,
-;; but a copy of it (with the same buffer-local variables and
-;; visibility), where macros and include keywords are expanded and
-;; Babel blocks are executed, if appropriate.
-;; `org-export-with-buffer-copy' macro prepares that copy.
-;;
-;; File inclusion is taken care of by
-;; `org-export-expand-include-keyword' and
-;; `org-export--prepare-file-contents'.  Structure wise, including
-;; a whole Org file in a buffer often makes little sense.  For
-;; example, if the file contains a headline and the include keyword
-;; was within an item, the item should contain the headline.  That's
-;; why file inclusion should be done before any structure can be
-;; associated to the file, that is before parsing.
-;;
-;; `org-export-insert-default-template' is a command to insert
-;; a default template (or a back-end specific template) at point or in
-;; current subtree.
-
-(defun org-export-copy-buffer ()
-  "Return a copy of the current buffer.
-The copy preserves Org buffer-local variables, visibility and
-narrowing."
-  (let ((copy-buffer-fun (org-export--generate-copy-script (current-buffer)))
-	(new-buf (generate-new-buffer (buffer-name))))
-    (with-current-buffer new-buf
-      (funcall copy-buffer-fun)
-      (set-buffer-modified-p nil))
-    new-buf))
-
-(defmacro org-export-with-buffer-copy (&rest body)
-  "Apply BODY in a copy of the current buffer.
-The copy preserves local variables, visibility and contents of
-the original buffer.  Point is at the beginning of the buffer
-when BODY is applied."
-  (declare (debug t))
-  (org-with-gensyms (buf-copy)
-    `(let ((,buf-copy (org-export-copy-buffer)))
-       (unwind-protect
-	   (with-current-buffer ,buf-copy
-	     (goto-char (point-min))
-	     (progn ,@body))
-	 (and (buffer-live-p ,buf-copy)
-	      ;; Kill copy without confirmation.
-	      (progn (with-current-buffer ,buf-copy
-		       (restore-buffer-modified-p nil))
-		     (kill-buffer ,buf-copy)))))))
-
-(defun org-export--generate-copy-script (buffer)
-  "Generate a function duplicating BUFFER.
-
-The copy will preserve local variables, visibility, contents and
-narrowing of the original buffer.  If a region was active in
-BUFFER, contents will be narrowed to that region instead.
-
-The resulting function can be evaluated at a later time, from
-another buffer, effectively cloning the original buffer there.
-
-The function assumes BUFFER's major mode is `org-mode'."
-  (with-current-buffer buffer
-    `(lambda ()
-       (let ((inhibit-modification-hooks t))
-	 ;; Set major mode. Ignore `org-mode-hook' as it has been run
-	 ;; already in BUFFER.
-	 (let ((org-mode-hook nil) (org-inhibit-startup t)) (org-mode))
-	 ;; Copy specific buffer local variables and variables set
-	 ;; through BIND keywords.
-	 ,@(let ((bound-variables (org-export--list-bound-variables))
-		 vars)
-	     (dolist (entry (buffer-local-variables (buffer-base-buffer)) vars)
-	       (when (consp entry)
-		 (let ((var (car entry))
-		       (val (cdr entry)))
-		   (and (not (memq var org-export-ignored-local-variables))
-			(or (memq var
-				  '(default-directory
-				     buffer-file-name
-				     buffer-file-coding-system))
-			    (assq var bound-variables)
-			    (string-match "^\\(org-\\|orgtbl-\\)"
-					  (symbol-name var)))
-			;; Skip unreadable values, as they cannot be
-			;; sent to external process.
-			(or (not val) (ignore-errors (read (format "%S" val))))
-			(push `(set (make-local-variable (quote ,var))
-				    (quote ,val))
-			      vars))))))
-	 ;; Whole buffer contents.
-	 (insert
-	  ,(org-with-wide-buffer
-	    (buffer-substring-no-properties
-	     (point-min) (point-max))))
-	 ;; Narrowing.
-	 ,(if (org-region-active-p)
-	      `(narrow-to-region ,(region-beginning) ,(region-end))
-	    `(narrow-to-region ,(point-min) ,(point-max)))
-	 ;; Current position of point.
-	 (goto-char ,(point))
-	 ;; Overlays with invisible property.
-	 ,@(let (ov-set)
-	     (dolist (ov (overlays-in (point-min) (point-max)) ov-set)
-	       (let ((invis-prop (overlay-get ov 'invisible)))
-		 (when invis-prop
-		   (push `(overlay-put
-			   (make-overlay ,(overlay-start ov)
-					 ,(overlay-end ov))
-			   'invisible (quote ,invis-prop))
-			 ov-set)))))))))
-
-(defun org-export--delete-comment-trees ()
-  "Delete commented trees and commented inlinetasks in the buffer.
-Narrowing, if any, is ignored."
-  (org-with-wide-buffer
-   (goto-char (point-min))
-   (let* ((case-fold-search t)
-	  (regexp (concat org-outline-regexp-bol ".*" org-comment-string)))
-     (while (re-search-forward regexp nil t)
-       (let ((element (org-element-at-point)))
-	 (when (org-element-property :commentedp element)
-	   (delete-region (org-element-property :begin element)
-			  (org-element-property :end element))))))))
-
-(defun org-export--prune-tree (data info)
-  "Prune non exportable elements from DATA.
-DATA is the parse tree to traverse.  INFO is the plist holding
-export info.  Also set `:ignore-list' in INFO to a list of
-objects which should be ignored during export, but not removed
-from tree."
-  (letrec ((ignore nil)
-	   ;; First find trees containing a select tag, if any.
-	   (selected (org-export--selected-trees data info))
-	   ;; List tags that prevent export of headlines.
-	   (excluded (cl-mapcan (lambda (tag) (org-tags-expand tag t))
-				(plist-get info :exclude-tags)))
-	   (walk-data
-	    (lambda (data)
-	      ;; Prune non-exportable elements and objects from tree.
-	      ;; As a special case, special rows and cells from tables
-	      ;; are stored in IGNORE, as they still need to be
-	      ;; accessed during export.
-	      (when data
-		(let ((type (org-element-type data)))
-		  (if (org-export--skip-p data info selected excluded)
-		      (if (memq type '(table-cell table-row)) (push data ignore)
-			(org-element-extract-element data))
-		    (if (and (eq type 'headline)
-			     (eq (plist-get info :with-archived-trees)
-				 'headline)
-			     (org-element-property :archivedp data))
-			;; If headline is archived but tree below has
-			;; to be skipped, remove contents.
-			(org-element-set-contents data)
-		      ;; Move into recursive objects/elements.
-		      (mapc walk-data (org-element-contents data)))
-		    ;; Move into secondary string, if any.
-		    (dolist (p (cdr (assq type
-					  org-element-secondary-value-alist)))
-		      (mapc walk-data (org-element-property p data))))))))
-	   (definitions
-	     ;; Collect definitions before possibly pruning them so as
-	     ;; to avoid parsing them again if they are required.
-	     (org-element-map data '(footnote-definition footnote-reference)
-	       (lambda (f)
-		 (cond
-		  ((eq 'footnote-definition (org-element-type f)) f)
-		  ((and (eq 'inline (org-element-property :type f))
-			(org-element-property :label f))
-		   f)
-		  (t nil))))))
-    ;; If a select tag is active, also ignore the section before the
-    ;; first headline, if any.
-    (when selected
-      (let ((first-element (car (org-element-contents data))))
-	(when (eq (org-element-type first-element) 'section)
-	  (org-element-extract-element first-element))))
-    ;; Prune tree and communication channel.
-    (funcall walk-data data)
-    (dolist (entry (append
-		    ;; Priority is given to back-end specific options.
-		    (org-export-get-all-options (plist-get info :back-end))
-		    org-export-options-alist))
-      (when (eq (nth 4 entry) 'parse)
-	(funcall walk-data (plist-get info (car entry)))))
-    (let ((missing (org-export--missing-definitions data definitions)))
-      (funcall walk-data missing)
-      (org-export--install-footnote-definitions missing data))
-    ;; Eventually set `:ignore-list'.
-    (plist-put info :ignore-list ignore)))
-
-(defun org-export--missing-definitions (tree definitions)
-  "List footnote definitions missing from TREE.
-Missing definitions are searched within DEFINITIONS, which is
-a list of footnote definitions or in the widened buffer."
-  (let* ((list-labels
-	  (lambda (data)
-	    ;; List all footnote labels encountered in DATA.  Inline
-	    ;; footnote references are ignored.
-	    (org-element-map data 'footnote-reference
-	      (lambda (reference)
-		(and (eq (org-element-property :type reference) 'standard)
-		     (org-element-property :label reference))))))
-	 defined undefined missing-definitions)
-    ;; Partition DIRECT-REFERENCES between DEFINED and UNDEFINED
-    ;; references.
-    (let ((known-definitions
-	   (org-element-map tree '(footnote-reference footnote-definition)
-	     (lambda (f)
-	       (and (or (eq (org-element-type f) 'footnote-definition)
-			(eq (org-element-property :type f) 'inline))
-		    (org-element-property :label f)))))
-	  seen)
-      (dolist (l (funcall list-labels tree))
-	(cond ((member l seen))
-	      ((member l known-definitions) (push l defined))
-	      (t (push l undefined)))))
-    ;; Complete MISSING-DEFINITIONS by finding the definition of every
-    ;; undefined label, first by looking into DEFINITIONS, then by
-    ;; searching the widened buffer.  This is a recursive process
-    ;; since definitions found can themselves contain an undefined
-    ;; reference.
-    (while undefined
-      (let* ((label (pop undefined))
-	     (definition
-	       (cond
-		((cl-some
-		  (lambda (d) (and (equal (org-element-property :label d) label)
-			      d))
-		  definitions))
-		((pcase (org-footnote-get-definition label)
-		   (`(,_ ,beg . ,_)
-		    (org-with-wide-buffer
-		     (goto-char beg)
-		     (let ((datum (org-element-context)))
-		       (if (eq (org-element-type datum) 'footnote-reference)
-			   datum
-			 ;; Parse definition with contents.
-			 (save-restriction
-			   (narrow-to-region
-			    (org-element-property :begin datum)
-			    (org-element-property :end datum))
-			   (org-element-map (org-element-parse-buffer)
-			       'footnote-definition #'identity nil t))))))
-		   (_ nil)))
-		(t (user-error "Definition not found for footnote %s" label)))))
-	(push label defined)
-	(push definition missing-definitions)
-	;; Look for footnote references within DEFINITION, since
-	;; we may need to also find their definition.
-	(dolist (l (funcall list-labels definition))
-	  (unless (or (member l defined)    ;Known label
-		      (member l undefined)) ;Processed later
-	    (push l undefined)))))
-    ;; MISSING-DEFINITIONS may contain footnote references with inline
-    ;; definitions.  Make sure those are changed into real footnote
-    ;; definitions.
-    (mapcar (lambda (d)
-	      (if (eq (org-element-type d) 'footnote-definition) d
-		(let ((label (org-element-property :label d)))
-		  (apply #'org-element-create
-			 'footnote-definition `(:label ,label :post-blank 1)
-			 (org-element-contents d)))))
-	    missing-definitions)))
-
-(defun org-export--install-footnote-definitions (definitions tree)
-  "Install footnote definitions in tree.
-
-DEFINITIONS is the list of footnote definitions to install.  TREE
-is the parse tree.
-
-If there is a footnote section in TREE, definitions found are
-appended to it.  If `org-footnote-section' is non-nil, a new
-footnote section containing all definitions is inserted in TREE.
-Otherwise, definitions are appended at the end of the section
-containing their first reference."
-  (cond
-   ((null definitions))
-   ;; If there is a footnote section, insert definitions there.
-   ((let ((footnote-section
-	   (org-element-map tree 'headline
-	     (lambda (h) (and (org-element-property :footnote-section-p h) h))
-	     nil t)))
-      (and footnote-section
-	   (apply #'org-element-adopt-elements
-		  footnote-section
-		  (nreverse definitions)))))
-   ;; If there should be a footnote section, create one containing all
-   ;; the definitions at the end of the tree.
-   (org-footnote-section
-    (org-element-adopt-elements
-     tree
-     (org-element-create 'headline
-			 (list :footnote-section-p t
-			       :level 1
-			       :title org-footnote-section
-			       :raw-value org-footnote-section)
-			 (apply #'org-element-create
-				'section
-				nil
-				(nreverse definitions)))))
-   ;; Otherwise add each definition at the end of the section where it
-   ;; is first referenced.
-   (t
-    (letrec ((seen nil)
-	     (insert-definitions
-	      (lambda (data)
-		;; Insert footnote definitions in the same section as
-		;; their first reference in DATA.
-		(org-element-map data 'footnote-reference
-		  (lambda (reference)
-		    (when (eq (org-element-property :type reference) 'standard)
-		      (let ((label (org-element-property :label reference)))
-			(unless (member label seen)
-			  (push label seen)
-			  (let ((definition
-				  (cl-some
-				   (lambda (d)
-				     (and (equal (org-element-property :label d)
-						 label)
-					  d))
-				   definitions)))
-			    (org-element-adopt-elements
-			     (org-element-lineage reference '(section))
-			     definition)
-			    ;; Also insert definitions for nested
-			    ;; references, if any.
-			    (funcall insert-definitions definition))))))))))
-      (funcall insert-definitions tree)))))
-
-(defun org-export--remove-uninterpreted-data (data info)
-  "Change uninterpreted elements back into Org syntax.
-DATA is a parse tree or a secondary string.  INFO is a plist
-containing export options.  It is modified by side effect and
-returned by the function."
-  (org-element-map data
-      '(entity bold italic latex-environment latex-fragment strike-through
-	       subscript superscript underline)
-    (lambda (datum)
-      (let ((new
-	     (cl-case (org-element-type datum)
-	       ;; ... entities...
-	       (entity
-		(and (not (plist-get info :with-entities))
-		     (list (concat
-			    (org-export-expand datum nil)
-			    (make-string
-			     (or (org-element-property :post-blank datum) 0)
-			     ?\s)))))
-	       ;; ... emphasis...
-	       ((bold italic strike-through underline)
-		(and (not (plist-get info :with-emphasize))
-		     (let ((marker (cl-case (org-element-type datum)
-				     (bold "*")
-				     (italic "/")
-				     (strike-through "+")
-				     (underline "_"))))
-		       (append
-			(list marker)
-			(org-element-contents datum)
-			(list (concat
-			       marker
-			       (make-string
-				(or (org-element-property :post-blank datum)
-				    0)
-				?\s)))))))
-	       ;; ... LaTeX environments and fragments...
-	       ((latex-environment latex-fragment)
-		(and (eq (plist-get info :with-latex) 'verbatim)
-		     (list (org-export-expand datum nil))))
-	       ;; ... sub/superscripts...
-	       ((subscript superscript)
-		(let ((sub/super-p (plist-get info :with-sub-superscript))
-		      (bracketp (org-element-property :use-brackets-p datum)))
-		  (and (or (not sub/super-p)
-			   (and (eq sub/super-p '{}) (not bracketp)))
-		       (append
-			(list (concat
-			       (if (eq (org-element-type datum) 'subscript)
-				   "_"
-				 "^")
-			       (and bracketp "{")))
-			(org-element-contents datum)
-			(list (concat
-			       (and bracketp "}")
-			       (and (org-element-property :post-blank datum)
-				    (make-string
-				     (org-element-property :post-blank datum)
-				     ?\s)))))))))))
-	(when new
-	  ;; Splice NEW at DATUM location in parse tree.
-	  (dolist (e new (org-element-extract-element datum))
-	    (unless (equal e "") (org-element-insert-before e datum))))))
-    info nil nil t)
-  ;; Return modified parse tree.
-  data)
-
-;;;###autoload
-(defun org-export-as
-    (backend &optional subtreep visible-only body-only ext-plist)
-  "Transcode current Org buffer into BACKEND code.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-If narrowing is active in the current buffer, only transcode its
-narrowed part.
-
-If a region is active, transcode that region.
-
-When optional argument SUBTREEP is non-nil, transcode the
-sub-tree at point, extracting information from the headline
-properties first.
-
-When optional argument VISIBLE-ONLY is non-nil, don't export
-contents of hidden elements.
-
-When optional argument BODY-ONLY is non-nil, only return body
-code, without surrounding template.
-
-Optional argument EXT-PLIST, when provided, is a property list
-with external parameters overriding Org default settings, but
-still inferior to file-local settings.
-
-Return code as a string."
-  (when (symbolp backend) (setq backend (org-export-get-backend backend)))
-  (org-export-barf-if-invalid-backend backend)
-  (save-excursion
-    (save-restriction
-      ;; Narrow buffer to an appropriate region or subtree for
-      ;; parsing.  If parsing subtree, be sure to remove main
-      ;; headline, planning data and property drawer.
-      (cond ((org-region-active-p)
-	     (narrow-to-region (region-beginning) (region-end)))
-	    (subtreep
-	     (org-narrow-to-subtree)
-	     (goto-char (point-min))
-	     (org-end-of-meta-data)
-	     (narrow-to-region (point) (point-max))))
-      ;; Initialize communication channel with original buffer
-      ;; attributes, unavailable in its copy.
-      (let* ((org-export-current-backend (org-export-backend-name backend))
-	     (info (org-combine-plists
-		    (org-export--get-export-attributes
-		     backend subtreep visible-only body-only)
-		    (org-export--get-buffer-attributes)))
-	     (parsed-keywords
-	      (delq nil
-		    (mapcar (lambda (o) (and (eq (nth 4 o) 'parse) (nth 1 o)))
-			    (append (org-export-get-all-options backend)
-				    org-export-options-alist))))
-	     tree)
-	;; Update communication channel and get parse tree.  Buffer
-	;; isn't parsed directly.  Instead, all buffer modifications
-	;; and consequent parsing are undertaken in a temporary copy.
-	(org-export-with-buffer-copy
-	 ;; Run first hook with current back-end's name as argument.
-	 (run-hook-with-args 'org-export-before-processing-hook
-			     (org-export-backend-name backend))
-	 ;; Include files, delete comments and expand macros.
-	 (org-export-expand-include-keyword)
-	 (org-export--delete-comment-trees)
-	 (org-macro-initialize-templates)
-	 (org-macro-replace-all
-	  (append org-macro-templates org-export-global-macros)
-	  nil parsed-keywords)
-	 ;; Refresh buffer properties and radio targets after
-	 ;; potentially invasive previous changes.  Likewise, do it
-	 ;; again after executing Babel code.
-	 (org-set-regexps-and-options)
-	 (org-update-radio-target-regexp)
-	 (when org-export-use-babel
-	   (org-babel-exp-process-buffer)
-	   (org-set-regexps-and-options)
-	   (org-update-radio-target-regexp))
-	 ;; Run last hook with current back-end's name as argument.
-	 ;; Update buffer properties and radio targets one last time
-	 ;; before parsing.
-	 (goto-char (point-min))
-	 (save-excursion
-	   (run-hook-with-args 'org-export-before-parsing-hook
-			       (org-export-backend-name backend)))
-	 (org-set-regexps-and-options)
-	 (org-update-radio-target-regexp)
-	 ;; Update communication channel with environment.
-	 (setq info
-	       (org-combine-plists
-		info (org-export-get-environment backend subtreep ext-plist)))
-	 ;; De-activate uninterpreted data from parsed keywords.
-	 (dolist (entry (append (org-export-get-all-options backend)
-				org-export-options-alist))
-	   (pcase entry
-	     (`(,p ,_ ,_ ,_ parse)
-	      (let ((value (plist-get info p)))
-		(plist-put info
-			   p
-			   (org-export--remove-uninterpreted-data value info))))
-	     (_ nil)))
-	 ;; Install user's and developer's filters.
-	 (setq info (org-export-install-filters info))
-	 ;; Call options filters and update export options.  We do not
-	 ;; use `org-export-filter-apply-functions' here since the
-	 ;; arity of such filters is different.
-	 (let ((backend-name (org-export-backend-name backend)))
-	   (dolist (filter (plist-get info :filter-options))
-	     (let ((result (funcall filter info backend-name)))
-	       (when result (setq info result)))))
-	 ;; Expand export-specific set of macros: {{{author}}},
-	 ;; {{{date(FORMAT)}}}, {{{email}}} and {{{title}}}.  It must
-	 ;; be done once regular macros have been expanded, since
-	 ;; parsed keywords may contain one of them.
-	 (org-macro-replace-all
-	  (list
-	   (cons "author" (org-element-interpret-data (plist-get info :author)))
-	   (cons "date"
-		 (let* ((date (plist-get info :date))
-			(value (or (org-element-interpret-data date) "")))
-		   (if (and (consp date)
-			    (not (cdr date))
-			    (eq (org-element-type (car date)) 'timestamp))
-		       (format "(eval (if (org-string-nw-p \"$1\") %s %S))"
-			       (format "(org-timestamp-format '%S \"$1\")"
-				       (org-element-copy (car date)))
-			       value)
-		     value)))
-	   (cons "email" (org-element-interpret-data (plist-get info :email)))
-	   (cons "title" (org-element-interpret-data (plist-get info :title)))
-	   (cons "results" "$1"))
-	  'finalize
-	  parsed-keywords)
-	 ;; Parse buffer.
-	 (setq tree (org-element-parse-buffer nil visible-only))
-	 ;; Prune tree from non-exported elements and transform
-	 ;; uninterpreted elements or objects in both parse tree and
-	 ;; communication channel.
-	 (org-export--prune-tree tree info)
-	 (org-export--remove-uninterpreted-data tree info)
-	 ;; Call parse tree filters.
-	 (setq tree
-	       (org-export-filter-apply-functions
-		(plist-get info :filter-parse-tree) tree info))
-	 ;; Now tree is complete, compute its properties and add them
-	 ;; to communication channel.
-	 (setq info (org-export--collect-tree-properties tree info))
-	 ;; Eventually transcode TREE.  Wrap the resulting string into
-	 ;; a template.
-	 (let* ((body (org-element-normalize-string
-		       (or (org-export-data tree info) "")))
-		(inner-template (cdr (assq 'inner-template
-					   (plist-get info :translate-alist))))
-		(full-body (org-export-filter-apply-functions
-			    (plist-get info :filter-body)
-			    (if (not (functionp inner-template)) body
-			      (funcall inner-template body info))
-			    info))
-		(template (cdr (assq 'template
-				     (plist-get info :translate-alist)))))
-	   ;; Remove all text properties since they cannot be
-	   ;; retrieved from an external process.  Finally call
-	   ;; final-output filter and return result.
-	   (org-no-properties
-	    (org-export-filter-apply-functions
-	     (plist-get info :filter-final-output)
-	     (if (or (not (functionp template)) body-only) full-body
-	       (funcall template full-body info))
-	     info))))))))
-
-;;;###autoload
-(defun org-export-string-as (string backend &optional body-only ext-plist)
-  "Transcode STRING into BACKEND code.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-When optional argument BODY-ONLY is non-nil, only return body
-code, without preamble nor postamble.
-
-Optional argument EXT-PLIST, when provided, is a property list
-with external parameters overriding Org default settings, but
-still inferior to file-local settings.
-
-Return code as a string."
-  (with-temp-buffer
-    (insert string)
-    (let ((org-inhibit-startup t)) (org-mode))
-    (org-export-as backend nil nil body-only ext-plist)))
-
-;;;###autoload
-(defun org-export-replace-region-by (backend)
-  "Replace the active region by its export to BACKEND.
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end."
-  (unless (org-region-active-p) (user-error "No active region to replace"))
-  (insert
-   (org-export-string-as
-    (delete-and-extract-region (region-beginning) (region-end)) backend t)))
-
-;;;###autoload
-(defun org-export-insert-default-template (&optional backend subtreep)
-  "Insert all export keywords with default values at beginning of line.
-
-BACKEND is a symbol referring to the name of a registered export
-back-end, for which specific export options should be added to
-the template, or `default' for default template.  When it is nil,
-the user will be prompted for a category.
-
-If SUBTREEP is non-nil, export configuration will be set up
-locally for the subtree through node properties."
-  (interactive)
-  (unless (derived-mode-p 'org-mode) (user-error "Not in an Org mode buffer"))
-  (when (and subtreep (org-before-first-heading-p))
-    (user-error "No subtree to set export options for"))
-  (let ((node (and subtreep (save-excursion (org-back-to-heading t) (point))))
-	(backend
-	 (or backend
-	     (intern
-	      (org-completing-read
-	       "Options category: "
-	       (cons "default"
-		     (mapcar (lambda (b)
-			       (symbol-name (org-export-backend-name b)))
-			     org-export-registered-backends))
-	       nil t))))
-	options keywords)
-    ;; Populate OPTIONS and KEYWORDS.
-    (dolist (entry (cond ((eq backend 'default) org-export-options-alist)
-			 ((org-export-backend-p backend)
-			  (org-export-backend-options backend))
-			 (t (org-export-backend-options
-			     (org-export-get-backend backend)))))
-      (let ((keyword (nth 1 entry))
-            (option (nth 2 entry)))
-        (cond
-         (keyword (unless (assoc keyword keywords)
-                    (let ((value
-                           (if (eq (nth 4 entry) 'split)
-                               (mapconcat #'identity (eval (nth 3 entry)) " ")
-                             (eval (nth 3 entry)))))
-                      (push (cons keyword value) keywords))))
-         (option (unless (assoc option options)
-                   (push (cons option (eval (nth 3 entry))) options))))))
-    ;; Move to an appropriate location in order to insert options.
-    (unless subtreep (beginning-of-line))
-    ;; First (multiple) OPTIONS lines.  Never go past fill-column.
-    (when options
-      (let ((items
-	     (mapcar
-	      #'(lambda (opt) (format "%s:%S" (car opt) (cdr opt)))
-	      (sort options (lambda (k1 k2) (string< (car k1) (car k2)))))))
-	(if subtreep
-	    (org-entry-put
-	     node "EXPORT_OPTIONS" (mapconcat 'identity items " "))
-	  (while items
-	    (insert "#+OPTIONS:")
-	    (let ((width 10))
-	      (while (and items
-			  (< (+ width (length (car items)) 1) fill-column))
-		(let ((item (pop items)))
-		  (insert " " item)
-		  (cl-incf width (1+ (length item))))))
-	    (insert "\n")))))
-    ;; Then the rest of keywords, in the order specified in either
-    ;; `org-export-options-alist' or respective export back-ends.
-    (dolist (key (nreverse keywords))
-      (let ((val (cond ((equal (car key) "DATE")
-			(or (cdr key)
-			    (with-temp-buffer
-			      (org-insert-time-stamp (current-time)))))
-		       ((equal (car key) "TITLE")
-			(or (let ((visited-file
-				   (buffer-file-name (buffer-base-buffer))))
-			      (and visited-file
-				   (file-name-sans-extension
-				    (file-name-nondirectory visited-file))))
-			    (buffer-name (buffer-base-buffer))))
-		       (t (cdr key)))))
-	(if subtreep (org-entry-put node (concat "EXPORT_" (car key)) val)
-	  (insert
-	   (format "#+%s:%s\n"
-		   (car key)
-		   (if (org-string-nw-p val) (format " %s" val) ""))))))))
-
-(defun org-export-expand-include-keyword (&optional included dir footnotes)
-  "Expand every include keyword in buffer.
-Optional argument INCLUDED is a list of included file names along
-with their line restriction, when appropriate.  It is used to
-avoid infinite recursion.  Optional argument DIR is the current
-working directory.  It is used to properly resolve relative
-paths.  Optional argument FOOTNOTES is a hash-table used for
-storing and resolving footnotes.  It is created automatically."
-  (let ((case-fold-search t)
-	(file-prefix (make-hash-table :test #'equal))
-	(current-prefix 0)
-	(footnotes (or footnotes (make-hash-table :test #'equal)))
-	(include-re "^[ \t]*#\\+INCLUDE:"))
-    ;; If :minlevel is not set the text-property
-    ;; `:org-include-induced-level' will be used to determine the
-    ;; relative level when expanding INCLUDE.
-    ;; Only affects included Org documents.
-    (goto-char (point-min))
-    (while (re-search-forward include-re nil t)
-      (put-text-property (line-beginning-position) (line-end-position)
-			 :org-include-induced-level
-			 (1+ (org-reduced-level (or (org-current-level) 0)))))
-    ;; Expand INCLUDE keywords.
-    (goto-char (point-min))
-    (while (re-search-forward include-re nil t)
-      (unless (org-in-commented-heading-p)
-	(let ((element (save-match-data (org-element-at-point))))
-	  (when (eq (org-element-type element) 'keyword)
-	    (beginning-of-line)
-	    ;; Extract arguments from keyword's value.
-	    (let* ((value (org-element-property :value element))
-		   (ind (org-get-indentation))
-		   location
-		   (file
-		    (and (string-match
-			  "^\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)" value)
-			 (prog1
-			     (save-match-data
-			       (let ((matched (match-string 1 value)))
-				 (when (string-match "\\(::\\(.*?\\)\\)\"?\\'"
-						     matched)
-				   (setq location (match-string 2 matched))
-				   (setq matched
-					 (replace-match "" nil nil matched 1)))
-				 (expand-file-name
-				  (org-unbracket-string "\"" "\"" matched)
-				  dir)))
-			   (setq value (replace-match "" nil nil value)))))
-		   (only-contents
-		    (and (string-match ":only-contents *\\([^: \r\t\n]\\S-*\\)?"
-				       value)
-			 (prog1 (org-not-nil (match-string 1 value))
-			   (setq value (replace-match "" nil nil value)))))
-		   (lines
-		    (and (string-match
-			  ":lines +\"\\(\\(?:[0-9]+\\)?-\\(?:[0-9]+\\)?\\)\""
-			  value)
-			 (prog1 (match-string 1 value)
-			   (setq value (replace-match "" nil nil value)))))
-		   (env (cond
-			 ((string-match "\\<example\\>" value) 'literal)
-			 ((string-match "\\<export\\(?: +\\(.*\\)\\)?" value)
-			  'literal)
-			 ((string-match "\\<src\\(?: +\\(.*\\)\\)?" value)
-			  'literal)))
-		   ;; Minimal level of included file defaults to the
-		   ;; child level of the current headline, if any, or
-		   ;; one.  It only applies is the file is meant to be
-		   ;; included as an Org one.
-		   (minlevel
-		    (and (not env)
-			 (if (string-match ":minlevel +\\([0-9]+\\)" value)
-			     (prog1 (string-to-number (match-string 1 value))
-			       (setq value (replace-match "" nil nil value)))
-			   (get-text-property (point)
-					      :org-include-induced-level))))
-		   (args (and (eq env 'literal) (match-string 1 value)))
-		   (block (and (string-match "\\<\\(\\S-+\\)\\>" value)
-			       (match-string 1 value))))
-	      ;; Remove keyword.
-	      (delete-region (point) (line-beginning-position 2))
-	      (cond
-	       ((not file) nil)
-	       ((not (file-readable-p file))
-		(error "Cannot include file %s" file))
-	       ;; Check if files has already been parsed.  Look after
-	       ;; inclusion lines too, as different parts of the same
-	       ;; file can be included too.
-	       ((member (list file lines) included)
-		(error "Recursive file inclusion: %s" file))
-	       (t
-		(cond
-		 ((eq env 'literal)
-		  (insert
-		   (let ((ind-str (make-string ind ?\s))
-			 (arg-str (if (stringp args) (format " %s" args) ""))
-			 (contents
-			  (org-escape-code-in-string
-			   (org-export--prepare-file-contents file lines))))
-		     (format "%s#+BEGIN_%s%s\n%s%s#+END_%s\n"
-			     ind-str block arg-str contents ind-str block))))
-		 ((stringp block)
-		  (insert
-		   (let ((ind-str (make-string ind ?\s))
-			 (contents
-			  (org-export--prepare-file-contents file lines)))
-		     (format "%s#+BEGIN_%s\n%s%s#+END_%s\n"
-			     ind-str block contents ind-str block))))
-		 (t
-		  (insert
-		   (with-temp-buffer
-		     (let ((org-inhibit-startup t)
-			   (lines
-			    (if location
-				(org-export--inclusion-absolute-lines
-				 file location only-contents lines)
-			      lines)))
-		       (org-mode)
-		       (insert
-			(org-export--prepare-file-contents
-			 file lines ind minlevel
-			 (or
-			  (gethash file file-prefix)
-			  (puthash file (cl-incf current-prefix) file-prefix))
-			 footnotes)))
-		     (org-export-expand-include-keyword
-		      (cons (list file lines) included)
-		      (file-name-directory file)
-		      footnotes)
-		     (buffer-string)))))
-		;; Expand footnotes after all files have been
-		;; included.  Footnotes are stored at end of buffer.
-		(unless included
-		  (org-with-wide-buffer
-		   (goto-char (point-max))
-		   (maphash (lambda (k v)
-			      (insert (format "\n[fn:%s] %s\n" k v)))
-			    footnotes))))))))))))
-
-(defun org-export--inclusion-absolute-lines (file location only-contents lines)
-  "Resolve absolute lines for an included file with file-link.
-
-FILE is string file-name of the file to include.  LOCATION is a
-string name within FILE to be included (located via
-`org-link-search').  If ONLY-CONTENTS is non-nil only the
-contents of the named element will be included, as determined
-Org-Element.  If LINES is non-nil only those lines are included.
-
-Return a string of lines to be included in the format expected by
-`org-export--prepare-file-contents'."
-  (with-temp-buffer
-    (insert-file-contents file)
-    (unless (eq major-mode 'org-mode)
-      (let ((org-inhibit-startup t)) (org-mode)))
-    (condition-case err
-	;; Enforce consistent search.
-	(let ((org-link-search-must-match-exact-headline nil))
-	  (org-link-search location))
-      (error
-       (error "%s for %s::%s" (error-message-string err) file location)))
-    (let* ((element (org-element-at-point))
-	   (contents-begin
-	    (and only-contents (org-element-property :contents-begin element))))
-      (narrow-to-region
-       (or contents-begin (org-element-property :begin element))
-       (org-element-property (if contents-begin :contents-end :end) element))
-      (when (and only-contents
-		 (memq (org-element-type element) '(headline inlinetask)))
-	;; Skip planning line and property-drawer.
-	(goto-char (point-min))
-	(when (looking-at-p org-planning-line-re) (forward-line))
-	(when (looking-at org-property-drawer-re) (goto-char (match-end 0)))
-	(unless (bolp) (forward-line))
-	(narrow-to-region (point) (point-max))))
-    (when lines
-      (org-skip-whitespace)
-      (beginning-of-line)
-      (let* ((lines (split-string lines "-"))
-	     (lbeg (string-to-number (car lines)))
-	     (lend (string-to-number (cadr lines)))
-	     (beg (if (zerop lbeg) (point-min)
-		    (goto-char (point-min))
-		    (forward-line (1- lbeg))
-		    (point)))
-	     (end (if (zerop lend) (point-max)
-		    (goto-char beg)
-		    (forward-line (1- lend))
-		    (point))))
-	(narrow-to-region beg end)))
-    (let ((end (point-max)))
-      (goto-char (point-min))
-      (widen)
-      (let ((start-line (line-number-at-pos)))
-	(format "%d-%d"
-		start-line
-		(save-excursion
-		  (+ start-line
-		     (let ((counter 0))
-		       (while (< (point) end) (cl-incf counter) (forward-line))
-		       counter))))))))
-
-(defun org-export--prepare-file-contents
-    (file &optional lines ind minlevel id footnotes)
-  "Prepare contents of FILE for inclusion and return it as a string.
-
-When optional argument LINES is a string specifying a range of
-lines, include only those lines.
-
-Optional argument IND, when non-nil, is an integer specifying the
-global indentation of returned contents.  Since its purpose is to
-allow an included file to stay in the same environment it was
-created (e.g., a list item), it doesn't apply past the first
-headline encountered.
-
-Optional argument MINLEVEL, when non-nil, is an integer
-specifying the level that any top-level headline in the included
-file should have.
-
-Optional argument ID is an integer that will be inserted before
-each footnote definition and reference if FILE is an Org file.
-This is useful to avoid conflicts when more than one Org file
-with footnotes is included in a document.
-
-Optional argument FOOTNOTES is a hash-table to store footnotes in
-the included document."
-  (with-temp-buffer
-    (insert-file-contents file)
-    (when lines
-      (let* ((lines (split-string lines "-"))
-	     (lbeg (string-to-number (car lines)))
-	     (lend (string-to-number (cadr lines)))
-	     (beg (if (zerop lbeg) (point-min)
-		    (goto-char (point-min))
-		    (forward-line (1- lbeg))
-		    (point)))
-	     (end (if (zerop lend) (point-max)
-		    (goto-char (point-min))
-		    (forward-line (1- lend))
-		    (point))))
-	(narrow-to-region beg end)))
-    ;; Remove blank lines at beginning and end of contents.  The logic
-    ;; behind that removal is that blank lines around include keyword
-    ;; override blank lines in included file.
-    (goto-char (point-min))
-    (org-skip-whitespace)
-    (beginning-of-line)
-    (delete-region (point-min) (point))
-    (goto-char (point-max))
-    (skip-chars-backward " \r\t\n")
-    (forward-line)
-    (delete-region (point) (point-max))
-    ;; If IND is set, preserve indentation of include keyword until
-    ;; the first headline encountered.
-    (when (and ind (> ind 0))
-      (unless (eq major-mode 'org-mode)
-	(let ((org-inhibit-startup t)) (org-mode)))
-      (goto-char (point-min))
-      (let ((ind-str (make-string ind ?\s)))
-	(while (not (or (eobp) (looking-at org-outline-regexp-bol)))
-	  ;; Do not move footnote definitions out of column 0.
-	  (unless (and (looking-at org-footnote-definition-re)
-		       (eq (org-element-type (org-element-at-point))
-			   'footnote-definition))
-	    (insert ind-str))
-	  (forward-line))))
-    ;; When MINLEVEL is specified, compute minimal level for headlines
-    ;; in the file (CUR-MIN), and remove stars to each headline so
-    ;; that headlines with minimal level have a level of MINLEVEL.
-    (when minlevel
-      (unless (eq major-mode 'org-mode)
-	(let ((org-inhibit-startup t)) (org-mode)))
-      (org-with-limited-levels
-       (let ((levels (org-map-entries
-		      (lambda () (org-reduced-level (org-current-level))))))
-	 (when levels
-	   (let ((offset (- minlevel (apply #'min levels))))
-	     (unless (zerop offset)
-	       (when org-odd-levels-only (setq offset (* offset 2)))
-	       ;; Only change stars, don't bother moving whole
-	       ;; sections.
-	       (org-map-entries
-		(lambda ()
-		  (if (< offset 0) (delete-char (abs offset))
-		    (insert (make-string offset ?*)))))))))))
-    ;; Append ID to all footnote references and definitions, so they
-    ;; become file specific and cannot collide with footnotes in other
-    ;; included files.  Further, collect relevant footnote definitions
-    ;; outside of LINES, in order to reintroduce them later.
-    (when id
-      (let ((marker-min (point-min-marker))
-	    (marker-max (point-max-marker))
-	    (get-new-label
-	     (lambda (label)
-	       ;; Generate new label from LABEL by prefixing it with
-	       ;; "-ID-".
-	       (format "-%d-%s" id label)))
-	    (set-new-label
-	     (lambda (f old new)
-	       ;; Replace OLD label with NEW in footnote F.
-	       (save-excursion
-		 (goto-char (+ (org-element-property :begin f) 4))
-		 (looking-at (regexp-quote old))
-		 (replace-match new))))
-	    (seen-alist))
-	(goto-char (point-min))
-	(while (re-search-forward org-footnote-re nil t)
-	  (let ((footnote (save-excursion
-			    (backward-char)
-			    (org-element-context))))
-	    (when (memq (org-element-type footnote)
-			'(footnote-definition footnote-reference))
-	      (let* ((label (org-element-property :label footnote)))
-		;; Update the footnote-reference at point and collect
-		;; the new label, which is only used for footnotes
-		;; outsides LINES.
-		(when label
-		  (let ((seen (cdr (assoc label seen-alist))))
-		    (if seen (funcall set-new-label footnote label seen)
-		      (let ((new (funcall get-new-label label)))
-			(push (cons label new) seen-alist)
-			(org-with-wide-buffer
-			 (let* ((def (org-footnote-get-definition label))
-				(beg (nth 1 def)))
-			   (when (and def
-				      (or (< beg marker-min)
-					  (>= beg marker-max)))
-			     ;; Store since footnote-definition is
-			     ;; outside of LINES.
-			     (puthash new
-				      (org-element-normalize-string (nth 3 def))
-				      footnotes))))
-			(funcall set-new-label footnote label new)))))))))
-	(set-marker marker-min nil)
-	(set-marker marker-max nil)))
-    (org-element-normalize-string (buffer-string))))
-
-(defun org-export--copy-to-kill-ring-p ()
-  "Return a non-nil value when output should be added to the kill ring.
-See also `org-export-copy-to-kill-ring'."
-  (if (eq org-export-copy-to-kill-ring 'if-interactive)
-      (not (or executing-kbd-macro noninteractive))
-    (eq org-export-copy-to-kill-ring t)))
-
-
-
-;;; Tools For Back-Ends
-;;
-;; A whole set of tools is available to help build new exporters.  Any
-;; function general enough to have its use across many back-ends
-;; should be added here.
-
-;;;; For Affiliated Keywords
-;;
-;; `org-export-read-attribute' reads a property from a given element
-;;  as a plist.  It can be used to normalize affiliated keywords'
-;;  syntax.
-;;
-;; Since captions can span over multiple lines and accept dual values,
-;; their internal representation is a bit tricky.  Therefore,
-;; `org-export-get-caption' transparently returns a given element's
-;; caption as a secondary string.
-
-(defun org-export-read-attribute (attribute element &optional property)
-  "Turn ATTRIBUTE property from ELEMENT into a plist.
-
-When optional argument PROPERTY is non-nil, return the value of
-that property within attributes.
-
-This function assumes attributes are defined as \":keyword
-value\" pairs.  It is appropriate for `:attr_html' like
-properties.
-
-All values will become strings except the empty string and
-\"nil\", which will become nil.  Also, values containing only
-double quotes will be read as-is, which means that \"\" value
-will become the empty string."
-  (let* ((prepare-value
-	  (lambda (str)
-	    (save-match-data
-	      (cond ((member str '(nil "" "nil")) nil)
-		    ((string-match "^\"\\(\"+\\)?\"$" str)
-		     (or (match-string 1 str) ""))
-		    (t str)))))
-	 (attributes
-	  (let ((value (org-element-property attribute element)))
-	    (when value
-	      (let ((s (mapconcat 'identity value " ")) result)
-		(while (string-match
-			"\\(?:^\\|[ \t]+\\)\\(:[-a-zA-Z0-9_]+\\)\\([ \t]+\\|$\\)"
-			s)
-		  (let ((value (substring s 0 (match-beginning 0))))
-		    (push (funcall prepare-value value) result))
-		  (push (intern (match-string 1 s)) result)
-		  (setq s (substring s (match-end 0))))
-		;; Ignore any string before first property with `cdr'.
-		(cdr (nreverse (cons (funcall prepare-value s) result))))))))
-    (if property (plist-get attributes property) attributes)))
-
-(defun org-export-get-caption (element &optional shortp)
-  "Return caption from ELEMENT as a secondary string.
-
-When optional argument SHORTP is non-nil, return short caption,
-as a secondary string, instead.
-
-Caption lines are separated by a white space."
-  (let ((full-caption (org-element-property :caption element)) caption)
-    (dolist (line full-caption (cdr caption))
-      (let ((cap (funcall (if shortp 'cdr 'car) line)))
-	(when cap
-	  (setq caption (nconc (list " ") (copy-sequence cap) caption)))))))
-
-
-;;;; For Derived Back-ends
-;;
-;; `org-export-with-backend' is a function allowing to locally use
-;; another back-end to transcode some object or element.  In a derived
-;; back-end, it may be used as a fall-back function once all specific
-;; cases have been treated.
-
-(defun org-export-with-backend (backend data &optional contents info)
-  "Call a transcoder from BACKEND on DATA.
-BACKEND is an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.  DATA is an Org element, object, secondary
-string or string.  CONTENTS, when non-nil, is the transcoded
-contents of DATA element, as a string.  INFO, when non-nil, is
-the communication channel used for export, as a plist."
-  (when (symbolp backend) (setq backend (org-export-get-backend backend)))
-  (org-export-barf-if-invalid-backend backend)
-  (let ((type (org-element-type data)))
-    (when (memq type '(nil org-data)) (error "No foreign transcoder available"))
-    (let* ((all-transcoders (org-export-get-all-transcoders backend))
-	   (transcoder (cdr (assq type all-transcoders))))
-      (unless (functionp transcoder) (error "No foreign transcoder available"))
-      (let ((new-info
-	     (org-combine-plists
-	      info (list
-		    :back-end backend
-		    :translate-alist all-transcoders
-		    :exported-data (make-hash-table :test #'eq :size 401)))))
-	;; `:internal-references' are shared across back-ends.
-	(prog1 (if (eq type 'plain-text)
-		   (funcall transcoder data new-info)
-		 (funcall transcoder data contents new-info))
-	  (plist-put info :internal-references
-		     (plist-get new-info :internal-references)))))))
-
-
-;;;; For Export Snippets
-;;
-;; Every export snippet is transmitted to the back-end.  Though, the
-;; latter will only retain one type of export-snippet, ignoring
-;; others, based on the former's target back-end.  The function
-;; `org-export-snippet-backend' returns that back-end for a given
-;; export-snippet.
-
-(defun org-export-snippet-backend (export-snippet)
-  "Return EXPORT-SNIPPET targeted back-end as a symbol.
-Translation, with `org-export-snippet-translation-alist', is
-applied."
-  (let ((back-end (org-element-property :back-end export-snippet)))
-    (intern
-     (or (cdr (assoc back-end org-export-snippet-translation-alist))
-	 back-end))))
-
-
-;;;; For Footnotes
-;;
-;; `org-export-collect-footnote-definitions' is a tool to list
-;; actually used footnotes definitions in the whole parse tree, or in
-;; a headline, in order to add footnote listings throughout the
-;; transcoded data.
-;;
-;; `org-export-footnote-first-reference-p' is a predicate used by some
-;; back-ends, when they need to attach the footnote definition only to
-;; the first occurrence of the corresponding label.
-;;
-;; `org-export-get-footnote-definition' and
-;; `org-export-get-footnote-number' provide easier access to
-;; additional information relative to a footnote reference.
-
-(defun org-export-get-footnote-definition (footnote-reference info)
-  "Return definition of FOOTNOTE-REFERENCE as parsed data.
-INFO is the plist used as a communication channel.  If no such
-definition can be found, raise an error."
-  (let ((label (org-element-property :label footnote-reference)))
-    (if (not label) (org-element-contents footnote-reference)
-      (let ((cache (or (plist-get info :footnote-definition-cache)
-		       (let ((hash (make-hash-table :test #'equal)))
-			 (plist-put info :footnote-definition-cache hash)
-			 hash))))
-	(or
-	 (gethash label cache)
-	 (puthash label
-		  (org-element-map (plist-get info :parse-tree)
-		      '(footnote-definition footnote-reference)
-		    (lambda (f)
-		      (cond
-		       ;; Skip any footnote with a different label.
-		       ;; Also skip any standard footnote reference
-		       ;; with the same label since those cannot
-		       ;; contain a definition.
-		       ((not (equal (org-element-property :label f) label)) nil)
-		       ((eq (org-element-property :type f) 'standard) nil)
-		       ((org-element-contents f))
-		       ;; Even if the contents are empty, we can not
-		       ;; return nil since that would eventually raise
-		       ;; the error.  Instead, return the equivalent
-		       ;; empty string.
-		       (t "")))
-		    info t)
-		  cache)
-	 (error "Definition not found for footnote %s" label))))))
-
-(defun org-export--footnote-reference-map
-    (function data info &optional body-first)
-  "Apply FUNCTION on every footnote reference in DATA.
-INFO is a plist containing export state.  By default, as soon as
-a new footnote reference is encountered, FUNCTION is called onto
-its definition.  However, if BODY-FIRST is non-nil, this step is
-delayed until the end of the process."
-  (letrec ((definitions nil)
-	   (seen-refs nil)
-	   (search-ref
-	    (lambda (data delayp)
-	      ;; Search footnote references through DATA, filling
-	      ;; SEEN-REFS along the way.  When DELAYP is non-nil,
-	      ;; store footnote definitions so they can be entered
-	      ;; later.
-	      (org-element-map data 'footnote-reference
-		(lambda (f)
-		  (funcall function f)
-		  (let ((--label (org-element-property :label f)))
-		    (unless (and --label (member --label seen-refs))
-		      (when --label (push --label seen-refs))
-		      ;; Search for subsequent references in footnote
-		      ;; definition so numbering follows reading
-		      ;; logic, unless DELAYP in non-nil.
-		      (cond
-		       (delayp
-			(push (org-export-get-footnote-definition f info)
-			      definitions))
-		       ;; Do not force entering inline definitions,
-		       ;; since `org-element-map' already traverses
-		       ;; them at the right time.
-		       ((eq (org-element-property :type f) 'inline))
-		       (t (funcall search-ref
-				   (org-export-get-footnote-definition f info)
-				   nil))))))
-		info nil
-		;; Don't enter footnote definitions since it will
-		;; happen when their first reference is found.
-		;; Moreover, if DELAYP is non-nil, make sure we
-		;; postpone entering definitions of inline references.
-		(if delayp '(footnote-definition footnote-reference)
-		  'footnote-definition)))))
-    (funcall search-ref data body-first)
-    (funcall search-ref (nreverse definitions) nil)))
-
-(defun org-export-collect-footnote-definitions (info &optional data body-first)
-  "Return an alist between footnote numbers, labels and definitions.
-
-INFO is the current export state, as a plist.
-
-Definitions are collected throughout the whole parse tree, or
-DATA when non-nil.
-
-Sorting is done by order of references.  As soon as a new
-reference is encountered, other references are searched within
-its definition.  However, if BODY-FIRST is non-nil, this step is
-delayed after the whole tree is checked.  This alters results
-when references are found in footnote definitions.
-
-Definitions either appear as Org data or as a secondary string
-for inlined footnotes.  Unreferenced definitions are ignored."
-  (let ((n 0) labels alist)
-    (org-export--footnote-reference-map
-     (lambda (f)
-       ;; Collect footnote number, label and definition.
-       (let ((l (org-element-property :label f)))
-	 (unless (and l (member l labels))
-	   (cl-incf n)
-	   (push (list n l (org-export-get-footnote-definition f info)) alist))
-	 (when l (push l labels))))
-     (or data (plist-get info :parse-tree)) info body-first)
-    (nreverse alist)))
-
-(defun org-export-footnote-first-reference-p
-    (footnote-reference info &optional data body-first)
-  "Non-nil when a footnote reference is the first one for its label.
-
-FOOTNOTE-REFERENCE is the footnote reference being considered.
-INFO is a plist containing current export state.
-
-Search is done throughout the whole parse tree, or DATA when
-non-nil.
-
-By default, as soon as a new footnote reference is encountered,
-other references are searched within its definition.  However, if
-BODY-FIRST is non-nil, this step is delayed after the whole tree
-is checked.  This alters results when references are found in
-footnote definitions."
-  (let ((label (org-element-property :label footnote-reference)))
-    ;; Anonymous footnotes are always a first reference.
-    (or (not label)
-	(catch 'exit
-	  (org-export--footnote-reference-map
-	   (lambda (f)
-	     (let ((l (org-element-property :label f)))
-	       (when (and l label (string= label l))
-		 (throw 'exit (eq footnote-reference f)))))
-	   (or data (plist-get info :parse-tree)) info body-first)))))
-
-(defun org-export-get-footnote-number (footnote info &optional data body-first)
-  "Return number associated to a footnote.
-
-FOOTNOTE is either a footnote reference or a footnote definition.
-INFO is the plist containing export state.
-
-Number is unique throughout the whole parse tree, or DATA, when
-non-nil.
-
-By default, as soon as a new footnote reference is encountered,
-counting process moves into its definition.  However, if
-BODY-FIRST is non-nil, this step is delayed until the end of the
-process, leading to a different order when footnotes are nested."
-  (let ((count 0)
-	(seen)
-	(label (org-element-property :label footnote)))
-    (catch 'exit
-      (org-export--footnote-reference-map
-       (lambda (f)
-	 (let ((l (org-element-property :label f)))
-	   (cond
-	    ;; Anonymous footnote match: return number.
-	    ((and (not l) (not label) (eq footnote f)) (throw 'exit (1+ count)))
-	    ;; Labels match: return number.
-	    ((and label l (string= label l)) (throw 'exit (1+ count)))
-	    ;; Otherwise store label and increase counter if label
-	    ;; wasn't encountered yet.
-	    ((not l) (cl-incf count))
-	    ((not (member l seen)) (push l seen) (cl-incf count)))))
-       (or data (plist-get info :parse-tree)) info body-first))))
-
-
-;;;; For Headlines
-;;
-;; `org-export-get-relative-level' is a shortcut to get headline
-;; level, relatively to the lower headline level in the parsed tree.
-;;
-;; `org-export-get-headline-number' returns the section number of an
-;; headline, while `org-export-number-to-roman' allows it to be
-;; converted to roman numbers.  With an optional argument,
-;; `org-export-get-headline-number' returns a number to unnumbered
-;; headlines (used for internal id).
-;;
-;; `org-export-low-level-p', `org-export-first-sibling-p' and
-;; `org-export-last-sibling-p' are three useful predicates when it
-;; comes to fulfill the `:headline-levels' property.
-;;
-;; `org-export-get-tags', `org-export-get-category' and
-;; `org-export-get-node-property' extract useful information from an
-;; headline or a parent headline.  They all handle inheritance.
-;;
-;; `org-export-get-alt-title' tries to retrieve an alternative title,
-;; as a secondary string, suitable for table of contents.  It falls
-;; back onto default title.
-
-(defun org-export-get-relative-level (headline info)
-  "Return HEADLINE relative level within current parsed tree.
-INFO is a plist holding contextual information."
-  (+ (org-element-property :level headline)
-     (or (plist-get info :headline-offset) 0)))
-
-(defun org-export-low-level-p (headline info)
-  "Non-nil when HEADLINE is considered as low level.
-
-INFO is a plist used as a communication channel.
-
-A low level headlines has a relative level greater than
-`:headline-levels' property value.
-
-Return value is the difference between HEADLINE relative level
-and the last level being considered as high enough, or nil."
-  (let ((limit (plist-get info :headline-levels)))
-    (when (wholenump limit)
-      (let ((level (org-export-get-relative-level headline info)))
-        (and (> level limit) (- level limit))))))
-
-(defun org-export-get-headline-number (headline info)
-  "Return numbered HEADLINE numbering as a list of numbers.
-INFO is a plist holding contextual information."
-  (and (org-export-numbered-headline-p headline info)
-       (cdr (assq headline (plist-get info :headline-numbering)))))
-
-(defun org-export-numbered-headline-p (headline info)
-  "Return a non-nil value if HEADLINE element should be numbered.
-INFO is a plist used as a communication channel."
-  (unless (org-not-nil (org-export-get-node-property :UNNUMBERED headline t))
-    (let ((sec-num (plist-get info :section-numbers))
-	  (level (org-export-get-relative-level headline info)))
-      (if (wholenump sec-num) (<= level sec-num) sec-num))))
-
-(defun org-export-number-to-roman (n)
-  "Convert integer N into a roman numeral."
-  (let ((roman '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
-		 ( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
-		 (  10 . "X") (  9 . "IX") (  5 . "V") (  4 . "IV")
-		 (   1 . "I")))
-	(res ""))
-    (if (<= n 0)
-	(number-to-string n)
-      (while roman
-	(if (>= n (caar roman))
-	    (setq n (- n (caar roman))
-		  res (concat res (cdar roman)))
-	  (pop roman)))
-      res)))
-
-(defun org-export-get-tags (element info &optional tags inherited)
-  "Return list of tags associated to ELEMENT.
-
-ELEMENT has either an `headline' or an `inlinetask' type.  INFO
-is a plist used as a communication channel.
-
-When non-nil, optional argument TAGS should be a list of strings.
-Any tag belonging to this list will also be removed.
-
-When optional argument INHERITED is non-nil, tags can also be
-inherited from parent headlines and FILETAGS keywords."
-  (cl-remove-if
-   (lambda (tag) (member tag tags))
-   (if (not inherited) (org-element-property :tags element)
-     ;; Build complete list of inherited tags.
-     (let ((current-tag-list (org-element-property :tags element)))
-       (dolist (parent (org-element-lineage element))
-	 (dolist (tag (org-element-property :tags parent))
-	   (when (and (memq (org-element-type parent) '(headline inlinetask))
-		      (not (member tag current-tag-list)))
-	     (push tag current-tag-list))))
-       ;; Add FILETAGS keywords and return results.
-       (org-uniquify (append (plist-get info :filetags) current-tag-list))))))
-
-(defun org-export-get-node-property (property blob &optional inherited)
-  "Return node PROPERTY value for BLOB.
-
-PROPERTY is an upcase symbol (i.e. `:COOKIE_DATA').  BLOB is an
-element or object.
-
-If optional argument INHERITED is non-nil, the value can be
-inherited from a parent headline.
-
-Return value is a string or nil."
-  (let ((headline (if (eq (org-element-type blob) 'headline) blob
-		    (org-export-get-parent-headline blob))))
-    (if (not inherited) (org-element-property property blob)
-      (let ((parent headline))
-	(catch 'found
-	  (while parent
-	    (when (plist-member (nth 1 parent) property)
-	      (throw 'found (org-element-property property parent)))
-	    (setq parent (org-element-property :parent parent))))))))
-
-(defun org-export-get-category (blob info)
-  "Return category for element or object BLOB.
-
-INFO is a plist used as a communication channel.
-
-CATEGORY is automatically inherited from a parent headline, from
-#+CATEGORY: keyword or created out of original file name.  If all
-fail, the fall-back value is \"???\"."
-  (or (org-export-get-node-property :CATEGORY blob t)
-      (org-element-map (plist-get info :parse-tree) 'keyword
-	(lambda (kwd)
-	  (when (equal (org-element-property :key kwd) "CATEGORY")
-	    (org-element-property :value kwd)))
-	info 'first-match)
-      (let ((file (plist-get info :input-file)))
-	(and file (file-name-sans-extension (file-name-nondirectory file))))
-      "???"))
-
-(defun org-export-get-alt-title (headline _)
-  "Return alternative title for HEADLINE, as a secondary string.
-If no optional title is defined, fall-back to the regular title."
-  (let ((alt (org-element-property :ALT_TITLE headline)))
-    (if alt (org-element-parse-secondary-string
-	     alt (org-element-restriction 'headline) headline)
-      (org-element-property :title headline))))
-
-(defun org-export-first-sibling-p (blob info)
-  "Non-nil when BLOB is the first sibling in its parent.
-BLOB is an element or an object.  If BLOB is a headline, non-nil
-means it is the first sibling in the sub-tree.  INFO is a plist
-used as a communication channel."
-  (memq (org-element-type (org-export-get-previous-element blob info))
-	'(nil section)))
-
-(defun org-export-last-sibling-p (datum info)
-  "Non-nil when DATUM is the last sibling in its parent.
-DATUM is an element or an object.  INFO is a plist used as
-a communication channel."
-  (let ((next (org-export-get-next-element datum info)))
-    (or (not next)
-	(and (eq 'headline (org-element-type datum))
-	     (> (org-element-property :level datum)
-		(org-element-property :level next))))))
-
-
-;;;; For Keywords
-;;
-;; `org-export-get-date' returns a date appropriate for the document
-;;  to about to be exported.  In particular, it takes care of
-;;  `org-export-date-timestamp-format'.
-
-(defun org-export-get-date (info &optional fmt)
-  "Return date value for the current document.
-
-INFO is a plist used as a communication channel.  FMT, when
-non-nil, is a time format string that will be applied on the date
-if it consists in a single timestamp object.  It defaults to
-`org-export-date-timestamp-format' when nil.
-
-A proper date can be a secondary string, a string or nil.  It is
-meant to be translated with `org-export-data' or alike."
-  (let ((date (plist-get info :date))
-	(fmt (or fmt org-export-date-timestamp-format)))
-    (cond ((not date) nil)
-	  ((and fmt
-		(not (cdr date))
-		(eq (org-element-type (car date)) 'timestamp))
-	   (org-timestamp-format (car date) fmt))
-	  (t date))))
-
-
-;;;; For Links
-;;
-;; `org-export-custom-protocol-maybe' handles custom protocol defined
-;; in `org-link-parameters'.
-;;
-;; `org-export-get-coderef-format' returns an appropriate format
-;; string for coderefs.
-;;
-;; `org-export-inline-image-p' returns a non-nil value when the link
-;; provided should be considered as an inline image.
-;;
-;; `org-export-resolve-fuzzy-link' searches destination of fuzzy links
-;; (i.e. links with "fuzzy" as type) within the parsed tree, and
-;; returns an appropriate unique identifier.
-;;
-;; `org-export-resolve-id-link' returns the first headline with
-;; specified id or custom-id in parse tree, the path to the external
-;; file with the id.
-;;
-;; `org-export-resolve-coderef' associates a reference to a line
-;; number in the element it belongs, or returns the reference itself
-;; when the element isn't numbered.
-;;
-;; `org-export-file-uri' expands a filename as stored in :path value
-;;  of a "file" link into a file URI.
-;;
-;; Broken links raise a `org-link-broken' error, which is caught by
-;; `org-export-data' for further processing, depending on
-;; `org-export-with-broken-links' value.
-
-(org-define-error 'org-link-broken "Unable to resolve link; aborting")
-
-(defun org-export-custom-protocol-maybe (link desc backend)
-  "Try exporting LINK with a dedicated function.
-
-DESC is its description, as a string, or nil.  BACKEND is the
-back-end used for export, as a symbol.
-
-Return output as a string, or nil if no protocol handles LINK.
-
-A custom protocol has precedence over regular back-end export.
-The function ignores links with an implicit type (e.g.,
-\"custom-id\")."
-  (let ((type (org-element-property :type link)))
-    (unless (or (member type '("coderef" "custom-id" "fuzzy" "radio"))
-		(not backend))
-      (let ((protocol (org-link-get-parameter type :export)))
-	(and (functionp protocol)
-	     (funcall protocol
-		      (org-link-unescape (org-element-property :path link))
-		      desc
-		      backend))))))
-
-(defun org-export-get-coderef-format (path desc)
-  "Return format string for code reference link.
-PATH is the link path.  DESC is its description."
-  (save-match-data
-    (cond ((not desc) "%s")
-	  ((string-match (regexp-quote (concat "(" path ")")) desc)
-	   (replace-match "%s" t t desc))
-	  (t desc))))
-
-(defun org-export-inline-image-p (link &optional rules)
-  "Non-nil if LINK object points to an inline image.
-
-Optional argument is a set of RULES defining inline images.  It
-is an alist where associations have the following shape:
-
-  (TYPE . REGEXP)
-
-Applying a rule means apply REGEXP against LINK's path when its
-type is TYPE.  The function will return a non-nil value if any of
-the provided rules is non-nil.  The default rule is
-`org-export-default-inline-image-rule'.
-
-This only applies to links without a description."
-  (and (not (org-element-contents link))
-       (let ((case-fold-search t))
-	 (cl-some (lambda (rule)
-		    (and (string= (org-element-property :type link) (car rule))
-			 (string-match-p (cdr rule)
-					 (org-element-property :path link))))
-		  (or rules org-export-default-inline-image-rule)))))
-
-(defun org-export-insert-image-links (data info &optional rules)
-  "Insert image links in DATA.
-
-Org syntax does not support nested links.  Nevertheless, some
-export back-ends support images as descriptions of links.  Since
-images are really links to image files, we need to make an
-exception about links nesting.
-
-This function recognizes links whose contents are really images
-and turn them into proper nested links.  It is meant to be used
-as a parse tree filter in back-ends supporting such constructs.
-
-DATA is a parse tree.  INFO is the current state of the export
-process, as a plist.
-
-A description is a valid images if it matches any rule in RULES,
-if non-nil, or `org-export-default-inline-image-rule' otherwise.
-See `org-export-inline-image-p' for more information about the
-structure of RULES.
-
-Return modified DATA."
-  (let ((link-re (format "\\`\\(?:%s\\|%s\\)\\'"
-			 org-plain-link-re
-			 org-angle-link-re))
-	(case-fold-search t))
-    (org-element-map data 'link
-      (lambda (l)
-	(let ((contents (org-element-interpret-data (org-element-contents l))))
-	  (when (and (org-string-nw-p contents)
-		     (string-match link-re contents))
-	    (let ((type (match-string 1 contents))
-		  (path (match-string 2 contents)))
-	      (when (cl-some (lambda (rule)
-			       (and (string= type (car rule))
-				    (string-match-p (cdr rule) path)))
-			     (or rules org-export-default-inline-image-rule))
-		;; Replace contents with image link.
-		(org-element-adopt-elements
-		 (org-element-set-contents l nil)
-		 (with-temp-buffer
-		   (save-excursion (insert contents))
-		   (org-element-link-parser))))))))
-      info nil nil t))
-  data)
-
-(defun org-export-resolve-coderef (ref info)
-  "Resolve a code reference REF.
-
-INFO is a plist used as a communication channel.
-
-Return associated line number in source code, or REF itself,
-depending on src-block or example element's switches.  Throw an
-error if no block contains REF."
-  (or (org-element-map (plist-get info :parse-tree) '(example-block src-block)
-	(lambda (el)
-	  (with-temp-buffer
-	    (insert (org-trim (org-element-property :value el)))
-	    (let* ((label-fmt (or (org-element-property :label-fmt el)
-				  org-coderef-label-format))
-		   (ref-re (org-src-coderef-regexp label-fmt ref)))
-	      ;; Element containing REF is found.  Resolve it to
-	      ;; either a label or a line number, as needed.
-	      (when (re-search-backward ref-re nil t)
-		(if (org-element-property :use-labels el) ref
-		  (+ (or (org-export-get-loc el info) 0)
-		     (line-number-at-pos)))))))
-	info 'first-match)
-      (signal 'org-link-broken (list ref))))
-
-(defun org-export-search-cells (datum)
-  "List search cells for element or object DATUM.
-
-A search cell follows the pattern (TYPE . SEARCH) where
-
-  TYPE is a symbol among `headline', `custom-id', `target' and
-  `other'.
-
-  SEARCH is the string a link is expected to match.  More
-  accurately, it is
-
-    - headline's title, as a list of strings, if TYPE is
-      `headline'.
-
-    - CUSTOM_ID value, as a string, if TYPE is `custom-id'.
-
-    - target's or radio-target's name as a list of strings if
-      TYPE is `target'.
-
-    - NAME affiliated keyword if TYPE is `other'.
-
-A search cell is the internal representation of a fuzzy link.  It
-ignores white spaces and statistics cookies, if applicable."
-  (pcase (org-element-type datum)
-    (`headline
-     (let ((title (split-string
-		   (replace-regexp-in-string
-		    "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]" ""
-		    (org-element-property :raw-value datum)))))
-       (delq nil
-	     (list
-	      (cons 'headline title)
-	      (cons 'other title)
-	      (let ((custom-id (org-element-property :custom-id datum)))
-		(and custom-id (cons 'custom-id custom-id)))))))
-    (`target
-     (list (cons 'target (split-string (org-element-property :value datum)))))
-    ((and (let name (org-element-property :name datum))
-	  (guard name))
-     (list (cons 'other (split-string name))))
-    (_ nil)))
-
-(defun org-export-string-to-search-cell (s)
-  "Return search cells associated to string S.
-S is either the path of a fuzzy link or a search option, i.e., it
-tries to match either a headline (through custom ID or title),
-a target or a named element."
-  (pcase (string-to-char s)
-    (?* (list (cons 'headline (split-string (substring s 1)))))
-    (?# (list (cons 'custom-id (substring s 1))))
-    ((let search (split-string s))
-     (list (cons 'target search) (cons 'other search)))))
-
-(defun org-export-match-search-cell-p (datum cells)
-  "Non-nil when DATUM matches search cells CELLS.
-DATUM is an element or object.  CELLS is a list of search cells,
-as returned by `org-export-search-cells'."
-  (let ((targets (org-export-search-cells datum)))
-    (and targets (cl-some (lambda (cell) (member cell targets)) cells))))
-
-(defun org-export-resolve-fuzzy-link (link info)
-  "Return LINK destination.
-
-INFO is a plist holding contextual information.
-
-Return value can be an object or an element:
-
-- If LINK path matches a target object (i.e. <<path>>) return it.
-
-- If LINK path exactly matches the name affiliated keyword
-  (i.e. #+NAME: path) of an element, return that element.
-
-- If LINK path exactly matches any headline name, return that
-  element.
-
-- Otherwise, throw an error.
-
-Assume LINK type is \"fuzzy\".  White spaces are not
-significant."
-  (let* ((search-cells (org-export-string-to-search-cell
-			(org-link-unescape (org-element-property :path link))))
-	 (link-cache (or (plist-get info :resolve-fuzzy-link-cache)
-			 (let ((table (make-hash-table :test #'eq)))
-			   (plist-put info :resolve-fuzzy-link-cache table)
-			   table)))
-	 (cached (gethash search-cells link-cache 'not-found)))
-    (if (not (eq cached 'not-found)) cached
-      (let ((matches
-	     (org-element-map (plist-get info :parse-tree)
-		 (cons 'target org-element-all-elements)
-	       (lambda (datum)
-		 (and (org-export-match-search-cell-p datum search-cells)
-		      datum)))))
-	(unless matches
-	  (signal 'org-link-broken (list (org-element-property :path link))))
-	(puthash
-	 search-cells
-	 ;; There can be multiple matches for un-typed searches, i.e.,
-	 ;; for searches not starting with # or *.  In this case,
-	 ;; prioritize targets and names over headline titles.
-	 ;; Matching both a name and a target is not valid, and
-	 ;; therefore undefined.
-	 (or (cl-some (lambda (datum)
-			(and (not (eq (org-element-type datum) 'headline))
-			     datum))
-		      matches)
-	     (car matches))
-	 link-cache)))))
-
-(defun org-export-resolve-id-link (link info)
-  "Return headline referenced as LINK destination.
-
-INFO is a plist used as a communication channel.
-
-Return value can be the headline element matched in current parse
-tree or a file name.  Assume LINK type is either \"id\" or
-\"custom-id\".  Throw an error if no match is found."
-  (let ((id (org-element-property :path link)))
-    ;; First check if id is within the current parse tree.
-    (or (org-element-map (plist-get info :parse-tree) 'headline
-	  (lambda (headline)
-	    (when (or (equal (org-element-property :ID headline) id)
-		      (equal (org-element-property :CUSTOM_ID headline) id))
-	      headline))
-	  info 'first-match)
-	;; Otherwise, look for external files.
-	(cdr (assoc id (plist-get info :id-alist)))
-	(signal 'org-link-broken (list id)))))
-
-(defun org-export-resolve-radio-link (link info)
-  "Return radio-target object referenced as LINK destination.
-
-INFO is a plist used as a communication channel.
-
-Return value can be a radio-target object or nil.  Assume LINK
-has type \"radio\"."
-  (let ((path (replace-regexp-in-string
-	       "[ \r\t\n]+" " " (org-element-property :path link))))
-    (org-element-map (plist-get info :parse-tree) 'radio-target
-      (lambda (radio)
-	(and (eq (compare-strings
-		  (replace-regexp-in-string
-		   "[ \r\t\n]+" " " (org-element-property :value radio))
-		  nil nil path nil nil t)
-		 t)
-	     radio))
-      info 'first-match)))
-
-(defun org-export-file-uri (filename)
-  "Return file URI associated to FILENAME."
-  (cond ((string-prefix-p "//" filename) (concat "file:" filename))
-	((not (file-name-absolute-p filename)) filename)
-	((org-file-remote-p filename) (concat "file:/" filename))
-	(t
-	 (let ((fullname (expand-file-name filename)))
-	   (concat (if (string-prefix-p "/" fullname) "file://" "file:///")
-		   fullname)))))
-
-;;;; For References
-;;
-;; `org-export-get-reference' associate a unique reference for any
-;; object or element.  It uses `org-export-new-reference' and
-;; `org-export-format-reference' to, respectively, generate new
-;; internal references and turn them into a string suitable for
-;; output.
-;;
-;; `org-export-get-ordinal' associates a sequence number to any object
-;; or element.
-
-(defun org-export-new-reference (references)
-  "Return a unique reference, among REFERENCES.
-REFERENCES is an alist whose values are in-use references, as
-numbers.  Returns a number, which is the internal representation
-of a reference.  See also `org-export-format-reference'."
-  ;; Generate random 7 digits hexadecimal numbers.  Collisions
-  ;; increase exponentially with the numbers of references.  However,
-  ;; the odds for encountering at least one collision with 1000 active
-  ;; references in the same document are roughly 0.2%, so this
-  ;; shouldn't be the bottleneck.
-  (let ((new (random #x10000000)))
-    (while (rassq new references) (setq new (random #x10000000)))
-    new))
-
-(defun org-export-format-reference (reference)
-  "Format REFERENCE into a string.
-REFERENCE is a number representing a reference, as returned by
-`org-export-new-reference', which see."
-  (format "org%07x" reference))
-
-(defun org-export-get-reference (datum info)
-  "Return a unique reference for DATUM, as a string.
-
-DATUM is either an element or an object.  INFO is the current
-export state, as a plist.
-
-This function checks `:crossrefs' property in INFO for search
-cells matching DATUM before creating a new reference.  Returned
-reference consists of alphanumeric characters only."
-  (let ((cache (plist-get info :internal-references)))
-    (or (car (rassq datum cache))
-	(let* ((crossrefs (plist-get info :crossrefs))
-	       (cells (org-export-search-cells datum))
-	       ;; Preserve any pre-existing association between
-	       ;; a search cell and a reference, i.e., when some
-	       ;; previously published document referenced a location
-	       ;; within current file (see
-	       ;; `org-publish-resolve-external-link').
-	       ;;
-	       ;; However, there is no guarantee that search cells are
-	       ;; unique, e.g., there might be duplicate custom ID or
-	       ;; two headings with the same title in the file.
-	       ;;
-	       ;; As a consequence, before re-using any reference to
-	       ;; an element or object, we check that it doesn't refer
-	       ;; to a previous element or object.
-	       (new (or (cl-some
-			 (lambda (cell)
-			   (let ((stored (cdr (assoc cell crossrefs))))
-			     (when stored
-			       (let ((old (org-export-format-reference stored)))
-				 (and (not (assoc old cache)) stored)))))
-			 cells)
-			(org-export-new-reference cache)))
-	       (reference-string (org-export-format-reference new)))
-	  ;; Cache contains both data already associated to
-	  ;; a reference and in-use internal references, so as to make
-	  ;; unique references.
-	  (dolist (cell cells) (push (cons cell new) cache))
-	  ;; Retain a direct association between reference string and
-	  ;; DATUM since (1) not every object or element can be given
-	  ;; a search cell (2) it permits quick lookup.
-	  (push (cons reference-string datum) cache)
-	  (plist-put info :internal-references cache)
-	  reference-string))))
-
-(defun org-export-get-ordinal (element info &optional types predicate)
-  "Return ordinal number of an element or object.
-
-ELEMENT is the element or object considered.  INFO is the plist
-used as a communication channel.
-
-Optional argument TYPES, when non-nil, is a list of element or
-object types, as symbols, that should also be counted in.
-Otherwise, only provided element's type is considered.
-
-Optional argument PREDICATE is a function returning a non-nil
-value if the current element or object should be counted in.  It
-accepts two arguments: the element or object being considered and
-the plist used as a communication channel.  This allows counting
-only a certain type of object (i.e. inline images).
-
-Return value is a list of numbers if ELEMENT is a headline or an
-item.  It is nil for keywords.  It represents the footnote number
-for footnote definitions and footnote references.  If ELEMENT is
-a target, return the same value as if ELEMENT was the closest
-table, item or headline containing the target.  In any other
-case, return the sequence number of ELEMENT among elements or
-objects of the same type."
-  ;; Ordinal of a target object refer to the ordinal of the closest
-  ;; table, item, or headline containing the object.
-  (when (eq (org-element-type element) 'target)
-    (setq element
-	  (org-element-lineage
-	   element
-	   '(footnote-definition footnote-reference headline item table))))
-  (cl-case (org-element-type element)
-    ;; Special case 1: A headline returns its number as a list.
-    (headline (org-export-get-headline-number element info))
-    ;; Special case 2: An item returns its number as a list.
-    (item (let ((struct (org-element-property :structure element)))
-	    (org-list-get-item-number
-	     (org-element-property :begin element)
-	     struct
-	     (org-list-prevs-alist struct)
-	     (org-list-parents-alist struct))))
-    ((footnote-definition footnote-reference)
-     (org-export-get-footnote-number element info))
-    (otherwise
-     (let ((counter 0))
-       ;; Increment counter until ELEMENT is found again.
-       (org-element-map (plist-get info :parse-tree)
-	   (or types (org-element-type element))
-	 (lambda (el)
-	   (cond
-	    ((eq element el) (1+ counter))
-	    ((not predicate) (cl-incf counter) nil)
-	    ((funcall predicate el info) (cl-incf counter) nil)))
-	 info 'first-match)))))
-
-
-;;;; For Src-Blocks
-;;
-;; `org-export-get-loc' counts number of code lines accumulated in
-;; src-block or example-block elements with a "+n" switch until
-;; a given element, excluded.  Note: "-n" switches reset that count.
-;;
-;; `org-export-unravel-code' extracts source code (along with a code
-;; references alist) from an `element-block' or `src-block' type
-;; element.
-;;
-;; `org-export-format-code' applies a formatting function to each line
-;; of code, providing relative line number and code reference when
-;; appropriate.  Since it doesn't access the original element from
-;; which the source code is coming, it expects from the code calling
-;; it to know if lines should be numbered and if code references
-;; should appear.
-;;
-;; Eventually, `org-export-format-code-default' is a higher-level
-;; function (it makes use of the two previous functions) which handles
-;; line numbering and code references inclusion, and returns source
-;; code in a format suitable for plain text or verbatim output.
-
-(defun org-export-get-loc (element info)
-  "Return count of lines of code before ELEMENT.
-
-ELEMENT is an example-block or src-block element.  INFO is the
-plist used as a communication channel.
-
-Count includes every line of code in example-block or src-block
-with a \"+n\" or \"-n\" switch before block.  Return nil if
-ELEMENT doesn't allow line numbering."
-  (pcase (org-element-property :number-lines element)
-    (`(new . ,n) n)
-    (`(continued . ,n)
-     (let ((loc 0))
-       (org-element-map (plist-get info :parse-tree) '(src-block example-block)
-	 (lambda (el)
-	   ;; ELEMENT is reached: Quit loop and return locs.
-	   (if (eq el element) (+ loc n)
-	     ;; Only count lines from src-block and example-block
-	     ;; elements with a "+n" or "-n" switch.
-	     (let ((linum (org-element-property :number-lines el)))
-	       (when linum
-		 (let ((lines (org-count-lines
-			       (org-element-property :value el))))
-		   ;; Accumulate locs or reset them.
-		   (pcase linum
-		     (`(new . ,n) (setq loc (+ n lines)))
-		     (`(continued . ,n) (cl-incf loc (+ n lines)))))))
-	     nil))		      ;Return nil to stay in the loop.
-	 info 'first-match)))))
-
-(defun org-export-unravel-code (element)
-  "Clean source code and extract references out of it.
-
-ELEMENT has either a `src-block' an `example-block' type.
-
-Return a cons cell whose CAR is the source code, cleaned from any
-reference, protective commas and spurious indentation, and CDR is
-an alist between relative line number (integer) and name of code
-reference on that line (string)."
-  (let* ((line 0) refs
-	 (value (org-element-property :value element))
-	 ;; Remove global indentation from code, if necessary.  Also
-	 ;; remove final newline character, since it doesn't belongs
-	 ;; to the code proper.
-	 (code (replace-regexp-in-string
-		"\n\\'" ""
-		(if (or org-src-preserve-indentation
-			(org-element-property :preserve-indent element))
-		    value
-		  (org-remove-indentation value))))
-	 ;; Build a regexp matching a loc with a reference.
-	 (ref-re (org-src-coderef-regexp (org-src-coderef-format element))))
-    ;; Return value.
-    (cons
-     ;; Code with references removed.
-     (mapconcat
-      (lambda (loc)
-	(cl-incf line)
-	(if (not (string-match ref-re loc)) loc
-	  ;; Ref line: remove ref, and add its position in REFS.
-	  (push (cons line (match-string 3 loc)) refs)
-	  (replace-match "" nil nil loc 1)))
-      (split-string code "\n") "\n")
-     ;; Reference alist.
-     refs)))
-
-(defun org-export-format-code (code fun &optional num-lines ref-alist)
-  "Format CODE by applying FUN line-wise and return it.
-
-CODE is a string representing the code to format.  FUN is
-a function.  It must accept three arguments: a line of
-code (string), the current line number (integer) or nil and the
-reference associated to the current line (string) or nil.
-
-Optional argument NUM-LINES can be an integer representing the
-number of code lines accumulated until the current code.  Line
-numbers passed to FUN will take it into account.  If it is nil,
-FUN's second argument will always be nil.  This number can be
-obtained with `org-export-get-loc' function.
-
-Optional argument REF-ALIST can be an alist between relative line
-number (i.e. ignoring NUM-LINES) and the name of the code
-reference on it.  If it is nil, FUN's third argument will always
-be nil.  It can be obtained through the use of
-`org-export-unravel-code' function."
-  (let ((--locs (split-string code "\n"))
-	(--line 0))
-    (concat
-     (mapconcat
-      (lambda (--loc)
-	(cl-incf --line)
-	(let ((--ref (cdr (assq --line ref-alist))))
-	  (funcall fun --loc (and num-lines (+ num-lines --line)) --ref)))
-      --locs "\n")
-     "\n")))
-
-(defun org-export-format-code-default (element info)
-  "Return source code from ELEMENT, formatted in a standard way.
-
-ELEMENT is either a `src-block' or `example-block' element.  INFO
-is a plist used as a communication channel.
-
-This function takes care of line numbering and code references
-inclusion.  Line numbers, when applicable, appear at the
-beginning of the line, separated from the code by two white
-spaces.  Code references, on the other hand, appear flushed to
-the right, separated by six white spaces from the widest line of
-code."
-  ;; Extract code and references.
-  (let* ((code-info (org-export-unravel-code element))
-         (code (car code-info))
-	 (code-lines (split-string code "\n")))
-    (if (null code-lines) ""
-      (let* ((refs (and (org-element-property :retain-labels element)
-			(cdr code-info)))
-	     ;; Handle line numbering.
-	     (num-start (org-export-get-loc element info))
-	     (num-fmt
-	      (and num-start
-		   (format "%%%ds  "
-			   (length (number-to-string
-				    (+ (length code-lines) num-start))))))
-	     ;; Prepare references display, if required.  Any reference
-	     ;; should start six columns after the widest line of code,
-	     ;; wrapped with parenthesis.
-	     (max-width
-	      (+ (apply 'max (mapcar 'length code-lines))
-		 (if (not num-start) 0 (length (format num-fmt num-start))))))
-	(org-export-format-code
-	 code
-	 (lambda (loc line-num ref)
-	   (let ((number-str (and num-fmt (format num-fmt line-num))))
-	     (concat
-	      number-str
-	      loc
-	      (and ref
-		   (concat (make-string (- (+ 6 max-width)
-					   (+ (length loc) (length number-str)))
-					?\s)
-			   (format "(%s)" ref))))))
-	 num-start refs)))))
-
-
-;;;; For Tables
-;;
-;; `org-export-table-has-special-column-p' and and
-;; `org-export-table-row-is-special-p' are predicates used to look for
-;; meta-information about the table structure.
-;;
-;; `org-table-has-header-p' tells when the rows before the first rule
-;;  should be considered as table's header.
-;;
-;; `org-export-table-cell-width', `org-export-table-cell-alignment'
-;; and `org-export-table-cell-borders' extract information from
-;; a table-cell element.
-;;
-;; `org-export-table-dimensions' gives the number on rows and columns
-;; in the table, ignoring horizontal rules and special columns.
-;; `org-export-table-cell-address', given a table-cell object, returns
-;; the absolute address of a cell. On the other hand,
-;; `org-export-get-table-cell-at' does the contrary.
-;;
-;; `org-export-table-cell-starts-colgroup-p',
-;; `org-export-table-cell-ends-colgroup-p',
-;; `org-export-table-row-starts-rowgroup-p',
-;; `org-export-table-row-ends-rowgroup-p',
-;; `org-export-table-row-starts-header-p',
-;; `org-export-table-row-ends-header-p' and
-;; `org-export-table-row-in-header-p' indicate position of current row
-;; or cell within the table.
-
-(defun org-export-table-has-special-column-p (table)
-  "Non-nil when TABLE has a special column.
-All special columns will be ignored during export."
-  ;; The table has a special column when every first cell of every row
-  ;; has an empty value or contains a symbol among "/", "#", "!", "$",
-  ;; "*" "_" and "^".  Though, do not consider a first column
-  ;; containing only empty cells as special.
-  (let ((special-column? 'empty))
-    (catch 'exit
-      (dolist (row (org-element-contents table))
-	(when (eq (org-element-property :type row) 'standard)
-	  (let ((value (org-element-contents
-			(car (org-element-contents row)))))
-	    (cond ((member value
-			   '(("/") ("#") ("!") ("$") ("*") ("_") ("^")))
-		   (setq special-column? 'special))
-		  ((null value))
-		  (t (throw 'exit nil))))))
-      (eq special-column? 'special))))
-
-(defun org-export-table-has-header-p (table info)
-  "Non-nil when TABLE has a header.
-
-INFO is a plist used as a communication channel.
-
-A table has a header when it contains at least two row groups."
-  (let* ((cache (or (plist-get info :table-header-cache)
-		    (let ((table (make-hash-table :test #'eq)))
-		      (plist-put info :table-header-cache table)
-		      table)))
-	 (cached (gethash table cache 'no-cache)))
-    (if (not (eq cached 'no-cache)) cached
-      (let ((rowgroup 1) row-flag)
-	(puthash table
-		 (org-element-map table 'table-row
-		   (lambda (row)
-		     (cond
-		      ((> rowgroup 1) t)
-		      ((and row-flag
-			    (eq (org-element-property :type row) 'rule))
-		       (cl-incf rowgroup)
-		       (setq row-flag nil))
-		      ((and (not row-flag)
-			    (eq (org-element-property :type row) 'standard))
-		       (setq row-flag t)
-		       nil)))
-		   info 'first-match)
-		 cache)))))
-
-(defun org-export-table-row-is-special-p (table-row _)
-  "Non-nil if TABLE-ROW is considered special.
-All special rows will be ignored during export."
-  (when (eq (org-element-property :type table-row) 'standard)
-    (let ((first-cell (org-element-contents
-		       (car (org-element-contents table-row)))))
-      ;; A row is special either when...
-      (or
-       ;; ... it starts with a field only containing "/",
-       (equal first-cell '("/"))
-       ;; ... the table contains a special column and the row start
-       ;; with a marking character among, "^", "_", "$" or "!",
-       (and (org-export-table-has-special-column-p
-	     (org-export-get-parent table-row))
-	    (member first-cell '(("^") ("_") ("$") ("!"))))
-       ;; ... it contains only alignment cookies and empty cells.
-       (let ((special-row-p 'empty))
-	 (catch 'exit
-	   (dolist (cell (org-element-contents table-row))
-	     (let ((value (org-element-contents cell)))
-	       ;; Since VALUE is a secondary string, the following
-	       ;; checks avoid expanding it with `org-export-data'.
-	       (cond ((not value))
-		     ((and (not (cdr value))
-			   (stringp (car value))
-			   (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'"
-					 (car value)))
-		      (setq special-row-p 'cookie))
-		     (t (throw 'exit nil)))))
-	   (eq special-row-p 'cookie)))))))
-
-(defun org-export-table-row-group (table-row info)
-  "Return TABLE-ROW's group number, as an integer.
-
-INFO is a plist used as the communication channel.
-
-Return value is the group number, as an integer, or nil for
-special rows and rows separators.  First group is also table's
-header."
-  (when (eq (org-element-property :type table-row) 'standard)
-    (let* ((cache (or (plist-get info :table-row-group-cache)
-		      (let ((table (make-hash-table :test #'eq)))
-			(plist-put info :table-row-group-cache table)
-			table)))
-	   (cached (gethash table-row cache 'no-cache)))
-      (if (not (eq cached 'no-cache)) cached
-	;; First time a row is queried, populate cache with all the
-	;; rows from the table.
-	(let ((group 0) row-flag)
-	  (org-element-map (org-export-get-parent table-row) 'table-row
-	    (lambda (row)
-	      (if (eq (org-element-property :type row) 'rule)
-		  (setq row-flag nil)
-		(unless row-flag (cl-incf group) (setq row-flag t))
-		(puthash row group cache)))
-	    info))
-	(gethash table-row cache)))))
-
-(defun org-export-table-cell-width (table-cell info)
-  "Return TABLE-CELL contents width.
-
-INFO is a plist used as the communication channel.
-
-Return value is the width given by the last width cookie in the
-same column as TABLE-CELL, or nil."
-  (let* ((row (org-export-get-parent table-cell))
-	 (table (org-export-get-parent row))
-	 (cells (org-element-contents row))
-	 (columns (length cells))
-	 (column (- columns (length (memq table-cell cells))))
-	 (cache (or (plist-get info :table-cell-width-cache)
-		    (let ((table (make-hash-table :test #'eq)))
-		      (plist-put info :table-cell-width-cache table)
-		      table)))
-	 (width-vector (or (gethash table cache)
-			   (puthash table (make-vector columns 'empty) cache)))
-	 (value (aref width-vector column)))
-    (if (not (eq value 'empty)) value
-      (let (cookie-width)
-	(dolist (row (org-element-contents table)
-		     (aset width-vector column cookie-width))
-	  (when (org-export-table-row-is-special-p row info)
-	    ;; In a special row, try to find a width cookie at COLUMN.
-	    (let* ((value (org-element-contents
-			   (elt (org-element-contents row) column)))
-		   (cookie (car value)))
-	      ;; The following checks avoid expanding unnecessarily
-	      ;; the cell with `org-export-data'.
-	      (when (and value
-			 (not (cdr value))
-			 (stringp cookie)
-			 (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" cookie)
-			 (match-string 1 cookie))
-		(setq cookie-width
-		      (string-to-number (match-string 1 cookie)))))))))))
-
-(defun org-export-table-cell-alignment (table-cell info)
-  "Return TABLE-CELL contents alignment.
-
-INFO is a plist used as the communication channel.
-
-Return alignment as specified by the last alignment cookie in the
-same column as TABLE-CELL.  If no such cookie is found, a default
-alignment value will be deduced from fraction of numbers in the
-column (see `org-table-number-fraction' for more information).
-Possible values are `left', `right' and `center'."
-  ;; Load `org-table-number-fraction' and `org-table-number-regexp'.
-  (require 'org-table)
-  (let* ((row (org-export-get-parent table-cell))
-	 (table (org-export-get-parent row))
-	 (cells (org-element-contents row))
-	 (columns (length cells))
-	 (column (- columns (length (memq table-cell cells))))
-	 (cache (or (plist-get info :table-cell-alignment-cache)
-		    (let ((table (make-hash-table :test #'eq)))
-		      (plist-put info :table-cell-alignment-cache table)
-		      table)))
-	 (align-vector (or (gethash table cache)
-			   (puthash table (make-vector columns nil) cache))))
-    (or (aref align-vector column)
-	(let ((number-cells 0)
-	      (total-cells 0)
-	      cookie-align
-	      previous-cell-number-p)
-	  (dolist (row (org-element-contents (org-export-get-parent row)))
-	    (cond
-	     ;; In a special row, try to find an alignment cookie at
-	     ;; COLUMN.
-	     ((org-export-table-row-is-special-p row info)
-	      (let ((value (org-element-contents
-			    (elt (org-element-contents row) column))))
-		;; Since VALUE is a secondary string, the following
-		;; checks avoid useless expansion through
-		;; `org-export-data'.
-		(when (and value
-			   (not (cdr value))
-			   (stringp (car value))
-			   (string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'"
-					 (car value))
-			   (match-string 1 (car value)))
-		  (setq cookie-align (match-string 1 (car value))))))
-	     ;; Ignore table rules.
-	     ((eq (org-element-property :type row) 'rule))
-	     ;; In a standard row, check if cell's contents are
-	     ;; expressing some kind of number.  Increase NUMBER-CELLS
-	     ;; accordingly.  Though, don't bother if an alignment
-	     ;; cookie has already defined cell's alignment.
-	     ((not cookie-align)
-	      (let ((value (org-export-data
-			    (org-element-contents
-			     (elt (org-element-contents row) column))
-			    info)))
-		(cl-incf total-cells)
-		;; Treat an empty cell as a number if it follows
-		;; a number.
-		(if (not (or (string-match org-table-number-regexp value)
-			     (and (string= value "") previous-cell-number-p)))
-		    (setq previous-cell-number-p nil)
-		  (setq previous-cell-number-p t)
-		  (cl-incf number-cells))))))
-	  ;; Return value.  Alignment specified by cookies has
-	  ;; precedence over alignment deduced from cell's contents.
-	  (aset align-vector
-		column
-		(cond ((equal cookie-align "l") 'left)
-		      ((equal cookie-align "r") 'right)
-		      ((equal cookie-align "c") 'center)
-		      ((>= (/ (float number-cells) total-cells)
-			   org-table-number-fraction)
-		       'right)
-		      (t 'left)))))))
-
-(defun org-export-table-cell-borders (table-cell info)
-  "Return TABLE-CELL borders.
-
-INFO is a plist used as a communication channel.
-
-Return value is a list of symbols, or nil.  Possible values are:
-`top', `bottom', `above', `below', `left' and `right'.  Note:
-`top' (resp. `bottom') only happen for a cell in the first
-row (resp. last row) of the table, ignoring table rules, if any.
-
-Returned borders ignore special rows."
-  (let* ((row (org-export-get-parent table-cell))
-	 (table (org-export-get-parent-table table-cell))
-	 borders)
-    ;; Top/above border?  TABLE-CELL has a border above when a rule
-    ;; used to demarcate row groups can be found above.  Hence,
-    ;; finding a rule isn't sufficient to push `above' in BORDERS:
-    ;; another regular row has to be found above that rule.
-    (let (rule-flag)
-      (catch 'exit
-	;; Look at every row before the current one.
-	(dolist (row (cdr (memq row (reverse (org-element-contents table)))))
-	  (cond ((eq (org-element-property :type row) 'rule)
-		 (setq rule-flag t))
-		((not (org-export-table-row-is-special-p row info))
-		 (if rule-flag (throw 'exit (push 'above borders))
-		   (throw 'exit nil)))))
-	;; No rule above, or rule found starts the table (ignoring any
-	;; special row): TABLE-CELL is at the top of the table.
-	(when rule-flag (push 'above borders))
-	(push 'top borders)))
-    ;; Bottom/below border? TABLE-CELL has a border below when next
-    ;; non-regular row below is a rule.
-    (let (rule-flag)
-      (catch 'exit
-	;; Look at every row after the current one.
-	(dolist (row (cdr (memq row (org-element-contents table))))
-	  (cond ((eq (org-element-property :type row) 'rule)
-		 (setq rule-flag t))
-		((not (org-export-table-row-is-special-p row info))
-		 (if rule-flag (throw 'exit (push 'below borders))
-		   (throw 'exit nil)))))
-	;; No rule below, or rule found ends the table (modulo some
-	;; special row): TABLE-CELL is at the bottom of the table.
-	(when rule-flag (push 'below borders))
-	(push 'bottom borders)))
-    ;; Right/left borders?  They can only be specified by column
-    ;; groups.  Column groups are defined in a row starting with "/".
-    ;; Also a column groups row only contains "<", "<>", ">" or blank
-    ;; cells.
-    (catch 'exit
-      (let ((column (let ((cells (org-element-contents row)))
-		      (- (length cells) (length (memq table-cell cells))))))
-	;; Table rows are read in reverse order so last column groups
-	;; row has precedence over any previous one.
-	(dolist (row (reverse (org-element-contents table)))
-	  (unless (eq (org-element-property :type row) 'rule)
-	    (when (equal (org-element-contents
-			  (car (org-element-contents row)))
-			 '("/"))
-	      (let ((column-groups
-		     (mapcar
-		      (lambda (cell)
-			(let ((value (org-element-contents cell)))
-			  (when (member value '(("<") ("<>") (">") nil))
-			    (car value))))
-		      (org-element-contents row))))
-		;; There's a left border when previous cell, if
-		;; any, ends a group, or current one starts one.
-		(when (or (and (not (zerop column))
-			       (member (elt column-groups (1- column))
-				       '(">" "<>")))
-			  (member (elt column-groups column) '("<" "<>")))
-		  (push 'left borders))
-		;; There's a right border when next cell, if any,
-		;; starts a group, or current one ends one.
-		(when (or (and (/= (1+ column) (length column-groups))
-			       (member (elt column-groups (1+ column))
-				       '("<" "<>")))
-			  (member (elt column-groups column) '(">" "<>")))
-		  (push 'right borders))
-		(throw 'exit nil)))))))
-    ;; Return value.
-    borders))
-
-(defun org-export-table-cell-starts-colgroup-p (table-cell info)
-  "Non-nil when TABLE-CELL is at the beginning of a column group.
-INFO is a plist used as a communication channel."
-  ;; A cell starts a column group either when it is at the beginning
-  ;; of a row (or after the special column, if any) or when it has
-  ;; a left border.
-  (or (eq (org-element-map (org-export-get-parent table-cell) 'table-cell
-	    'identity info 'first-match)
-	  table-cell)
-      (memq 'left (org-export-table-cell-borders table-cell info))))
-
-(defun org-export-table-cell-ends-colgroup-p (table-cell info)
-  "Non-nil when TABLE-CELL is at the end of a column group.
-INFO is a plist used as a communication channel."
-  ;; A cell ends a column group either when it is at the end of a row
-  ;; or when it has a right border.
-  (or (eq (car (last (org-element-contents
-			 (org-export-get-parent table-cell))))
-	     table-cell)
-      (memq 'right (org-export-table-cell-borders table-cell info))))
-
-(defun org-export-table-row-starts-rowgroup-p (table-row info)
-  "Non-nil when TABLE-ROW is at the beginning of a row group.
-INFO is a plist used as a communication channel."
-  (unless (or (eq (org-element-property :type table-row) 'rule)
-	      (org-export-table-row-is-special-p table-row info))
-    (let ((borders (org-export-table-cell-borders
-		    (car (org-element-contents table-row)) info)))
-      (or (memq 'top borders) (memq 'above borders)))))
-
-(defun org-export-table-row-ends-rowgroup-p (table-row info)
-  "Non-nil when TABLE-ROW is at the end of a row group.
-INFO is a plist used as a communication channel."
-  (unless (or (eq (org-element-property :type table-row) 'rule)
-	      (org-export-table-row-is-special-p table-row info))
-    (let ((borders (org-export-table-cell-borders
-		    (car (org-element-contents table-row)) info)))
-      (or (memq 'bottom borders) (memq 'below borders)))))
-
-(defun org-export-table-row-in-header-p (table-row info)
-  "Non-nil when TABLE-ROW is located within table's header.
-INFO is a plist used as a communication channel.  Always return
-nil for special rows and rows separators."
-  (and (org-export-table-has-header-p
-	(org-export-get-parent-table table-row) info)
-       (eql (org-export-table-row-group table-row info) 1)))
-
-(defun org-export-table-row-starts-header-p (table-row info)
-  "Non-nil when TABLE-ROW is the first table header's row.
-INFO is a plist used as a communication channel."
-  (and (org-export-table-row-in-header-p table-row info)
-       (org-export-table-row-starts-rowgroup-p table-row info)))
-
-(defun org-export-table-row-ends-header-p (table-row info)
-  "Non-nil when TABLE-ROW is the last table header's row.
-INFO is a plist used as a communication channel."
-  (and (org-export-table-row-in-header-p table-row info)
-       (org-export-table-row-ends-rowgroup-p table-row info)))
-
-(defun org-export-table-row-number (table-row info)
-  "Return TABLE-ROW number.
-INFO is a plist used as a communication channel.  Return value is
-zero-indexed and ignores separators.  The function returns nil
-for special rows and separators."
-  (when (eq (org-element-property :type table-row) 'standard)
-    (let* ((cache (or (plist-get info :table-row-number-cache)
-		      (let ((table (make-hash-table :test #'eq)))
-			(plist-put info :table-row-number-cache table)
-			table)))
-	   (cached (gethash table-row cache 'no-cache)))
-      (if (not (eq cached 'no-cache)) cached
-	;; First time a row is queried, populate cache with all the
-	;; rows from the table.
-	(let ((number -1))
-	  (org-element-map (org-export-get-parent-table table-row) 'table-row
-	    (lambda (row)
-	      (when (eq (org-element-property :type row) 'standard)
-		(puthash row (cl-incf number) cache)))
-	    info))
-	(gethash table-row cache)))))
-
-(defun org-export-table-dimensions (table info)
-  "Return TABLE dimensions.
-
-INFO is a plist used as a communication channel.
-
-Return value is a CONS like (ROWS . COLUMNS) where
-ROWS (resp. COLUMNS) is the number of exportable
-rows (resp. columns)."
-  (let (first-row (columns 0) (rows 0))
-    ;; Set number of rows, and extract first one.
-    (org-element-map table 'table-row
-      (lambda (row)
-	(when (eq (org-element-property :type row) 'standard)
-	  (cl-incf rows)
-	  (unless first-row (setq first-row row)))) info)
-    ;; Set number of columns.
-    (org-element-map first-row 'table-cell (lambda (_) (cl-incf columns)) info)
-    ;; Return value.
-    (cons rows columns)))
-
-(defun org-export-table-cell-address (table-cell info)
-  "Return address of a regular TABLE-CELL object.
-
-TABLE-CELL is the cell considered.  INFO is a plist used as
-a communication channel.
-
-Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
-zero-based index.  Only exportable cells are considered.  The
-function returns nil for other cells."
-  (let* ((table-row (org-export-get-parent table-cell))
-	 (row-number (org-export-table-row-number table-row info)))
-    (when row-number
-      (cons row-number
-	    (let ((col-count 0))
-	      (org-element-map table-row 'table-cell
-		(lambda (cell)
-		  (if (eq cell table-cell) col-count (cl-incf col-count) nil))
-		info 'first-match))))))
-
-(defun org-export-get-table-cell-at (address table info)
-  "Return regular table-cell object at ADDRESS in TABLE.
-
-Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
-zero-based index.  TABLE is a table type element.  INFO is
-a plist used as a communication channel.
-
-If no table-cell, among exportable cells, is found at ADDRESS,
-return nil."
-  (let ((column-pos (cdr address)) (column-count 0))
-    (org-element-map
-	;; Row at (car address) or nil.
-	(let ((row-pos (car address)) (row-count 0))
-	  (org-element-map table 'table-row
-	    (lambda (row)
-	      (cond ((eq (org-element-property :type row) 'rule) nil)
-		    ((= row-count row-pos) row)
-		    (t (cl-incf row-count) nil)))
-	    info 'first-match))
-	'table-cell
-      (lambda (cell)
-	(if (= column-count column-pos) cell
-	  (cl-incf column-count) nil))
-      info 'first-match)))
-
-
-;;;; For Tables of Contents
-;;
-;; `org-export-collect-headlines' builds a list of all exportable
-;; headline elements, maybe limited to a certain depth.  One can then
-;; easily parse it and transcode it.
-;;
-;; Building lists of tables, figures or listings is quite similar.
-;; Once the generic function `org-export-collect-elements' is defined,
-;; `org-export-collect-tables', `org-export-collect-figures' and
-;; `org-export-collect-listings' can be derived from it.
-;;
-;; `org-export-toc-entry-backend' builds a special anonymous back-end
-;; useful to export table of contents' entries.
-
-(defun org-export-collect-headlines (info &optional n scope)
-  "Collect headlines in order to build a table of contents.
-
-INFO is a plist used as a communication channel.
-
-When optional argument N is an integer, it specifies the depth of
-the table of contents.  Otherwise, it is set to the value of the
-last headline level.  See `org-export-headline-levels' for more
-information.
-
-Optional argument SCOPE, when non-nil, is an element.  If it is
-a headline, only children of SCOPE are collected.  Otherwise,
-collect children of the headline containing provided element.  If
-there is no such headline, collect all headlines.  In any case,
-argument N becomes relative to the level of that headline.
-
-Return a list of all exportable headlines as parsed elements.
-Footnote sections are ignored."
-  (let* ((scope (cond ((not scope) (plist-get info :parse-tree))
-		      ((eq (org-element-type scope) 'headline) scope)
-		      ((org-export-get-parent-headline scope))
-		      (t (plist-get info :parse-tree))))
-	 (limit (plist-get info :headline-levels))
-	 (n (if (not (wholenump n)) limit
-	      (min (if (eq (org-element-type scope) 'org-data) n
-		     (+ (org-export-get-relative-level scope info) n))
-		   limit))))
-    (org-element-map (org-element-contents scope) 'headline
-      (lambda (headline)
-	(unless (org-element-property :footnote-section-p headline)
-	  (let ((level (org-export-get-relative-level headline info)))
-	    (and (<= level n) headline))))
-      info)))
-
-(defun org-export-collect-elements (type info &optional predicate)
-  "Collect referenceable elements of a determined type.
-
-TYPE can be a symbol or a list of symbols specifying element
-types to search.  Only elements with a caption are collected.
-
-INFO is a plist used as a communication channel.
-
-When non-nil, optional argument PREDICATE is a function accepting
-one argument, an element of type TYPE.  It returns a non-nil
-value when that element should be collected.
-
-Return a list of all elements found, in order of appearance."
-  (org-element-map (plist-get info :parse-tree) type
-    (lambda (element)
-      (and (org-element-property :caption element)
-	   (or (not predicate) (funcall predicate element))
-	   element))
-    info))
-
-(defun org-export-collect-tables (info)
-  "Build a list of tables.
-INFO is a plist used as a communication channel.
-
-Return a list of table elements with a caption."
-  (org-export-collect-elements 'table info))
-
-(defun org-export-collect-figures (info predicate)
-  "Build a list of figures.
-
-INFO is a plist used as a communication channel.  PREDICATE is
-a function which accepts one argument: a paragraph element and
-whose return value is non-nil when that element should be
-collected.
-
-A figure is a paragraph type element, with a caption, verifying
-PREDICATE.  The latter has to be provided since a \"figure\" is
-a vague concept that may depend on back-end.
-
-Return a list of elements recognized as figures."
-  (org-export-collect-elements 'paragraph info predicate))
-
-(defun org-export-collect-listings (info)
-  "Build a list of src blocks.
-
-INFO is a plist used as a communication channel.
-
-Return a list of src-block elements with a caption."
-  (org-export-collect-elements 'src-block info))
-
-(defun org-export-toc-entry-backend (parent &rest transcoders)
-  "Return an export back-end appropriate for table of contents entries.
-
-PARENT is an export back-end the returned back-end should inherit
-from.
-
-By default, the back-end removes footnote references and targets.
-It also changes links and radio targets into regular text.
-TRANSCODERS optional argument, when non-nil, specifies additional
-transcoders.  A transcoder follows the pattern (TYPE . FUNCTION)
-where type is an element or object type and FUNCTION the function
-transcoding it."
-  (declare (indent 1))
-  (org-export-create-backend
-   :parent parent
-   :transcoders
-   (append transcoders
-	   `((footnote-reference . ,#'ignore)
-	     (link . ,(lambda (l c i)
-			(or c
-			    (org-export-data
-			     (org-element-property :raw-link l)
-			     i))))
-	     (radio-target . ,(lambda (_r c _) c))
-	     (target . ,#'ignore)))))
-
-
-;;;; Smart Quotes
-;;
-;; The main function for the smart quotes sub-system is
-;; `org-export-activate-smart-quotes', which replaces every quote in
-;; a given string from the parse tree with its "smart" counterpart.
-;;
-;; Dictionary for smart quotes is stored in
-;; `org-export-smart-quotes-alist'.
-
-(defconst org-export-smart-quotes-alist
-  '(("ar"
-     (primary-opening
-      :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
-      :texinfo "@guillemetleft{}")
-     (primary-closing
-      :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
-      :texinfo "@guillemetright{}")
-     (secondary-opening :utf-8 "‹" :html "&lsaquo;" :latex "\\guilsinglleft{}"
-			:texinfo "@guilsinglleft{}")
-     (secondary-closing :utf-8 "›" :html "&rsaquo;" :latex "\\guilsinglright{}"
-			:texinfo "@guilsinglright{}")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("da"
-     ;; one may use: »...«, "...", ›...‹, or '...'.
-     ;; http://sproget.dk/raad-og-regler/retskrivningsregler/retskrivningsregler/a7-40-60/a7-58-anforselstegn/
-     ;; LaTeX quotes require Babel!
-     (primary-opening
-      :utf-8 "»" :html "&raquo;" :latex ">>" :texinfo "@guillemetright{}")
-     (primary-closing
-      :utf-8 "«" :html "&laquo;" :latex "<<" :texinfo "@guillemetleft{}")
-     (secondary-opening
-      :utf-8 "›" :html "&rsaquo;" :latex "\\frq{}" :texinfo "@guilsinglright{}")
-     (secondary-closing
-      :utf-8 "‹" :html "&lsaquo;" :latex "\\flq{}" :texinfo "@guilsingleft{}")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("de"
-     (primary-opening
-      :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}")
-     (primary-closing
-      :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}")
-     (secondary-opening
-      :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}")
-     (secondary-closing
-      :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("en"
-     (primary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
-     (primary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
-     (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
-     (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("es"
-     (primary-opening
-      :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
-      :texinfo "@guillemetleft{}")
-     (primary-closing
-      :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
-      :texinfo "@guillemetright{}")
-     (secondary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``")
-     (secondary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("fr"
-     (primary-opening
-      :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og "
-      :texinfo "@guillemetleft{}@tie{}")
-     (primary-closing
-      :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}"
-      :texinfo "@tie{}@guillemetright{}")
-     (secondary-opening
-      :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og "
-      :texinfo "@guillemetleft{}@tie{}")
-     (secondary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}"
-			:texinfo "@tie{}@guillemetright{}")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("is"
-     (primary-opening
-      :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}")
-     (primary-closing
-      :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}")
-     (secondary-opening
-      :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}")
-     (secondary-closing
-      :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("no"
-     ;; https://nn.wikipedia.org/wiki/Sitatteikn
-     (primary-opening
-      :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
-      :texinfo "@guillemetleft{}")
-     (primary-closing
-      :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
-      :texinfo "@guillemetright{}")
-     (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
-     (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("nb"
-     ;; https://nn.wikipedia.org/wiki/Sitatteikn
-     (primary-opening
-      :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
-      :texinfo "@guillemetleft{}")
-     (primary-closing
-      :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
-      :texinfo "@guillemetright{}")
-     (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
-     (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("nn"
-     ;; https://nn.wikipedia.org/wiki/Sitatteikn
-     (primary-opening
-      :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}"
-      :texinfo "@guillemetleft{}")
-     (primary-closing
-      :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}"
-      :texinfo "@guillemetright{}")
-     (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`")
-     (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("ru"
-     ;; http://ru.wikipedia.org/wiki/%D0%9A%D0%B0%D0%B2%D1%8B%D1%87%D0%BA%D0%B8#.D0.9A.D0.B0.D0.B2.D1.8B.D1.87.D0.BA.D0.B8.2C_.D0.B8.D1.81.D0.BF.D0.BE.D0.BB.D1.8C.D0.B7.D1.83.D0.B5.D0.BC.D1.8B.D0.B5_.D0.B2_.D1.80.D1.83.D1.81.D1.81.D0.BA.D0.BE.D0.BC_.D1.8F.D0.B7.D1.8B.D0.BA.D0.B5
-     ;; http://www.artlebedev.ru/kovodstvo/sections/104/
-     (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<"
-		      :texinfo "@guillemetleft{}")
-     (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}"
-		      :texinfo "@guillemetright{}")
-     (secondary-opening
-      :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}")
-     (secondary-closing
-      :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}")
-     (apostrophe :utf-8 "’" :html: "&#39;"))
-    ("sl"
-     ;; Based on https://sl.wikipedia.org/wiki/Narekovaj
-     (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<"
-		      :texinfo "@guillemetleft{}")
-     (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}"
-		      :texinfo "@guillemetright{}")
-     (secondary-opening
-      :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}")
-     (secondary-closing
-      :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}")
-     (apostrophe :utf-8 "’" :html "&rsquo;"))
-    ("sv"
-     ;; Based on https://sv.wikipedia.org/wiki/Citattecken
-     (primary-opening :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’")
-     (primary-closing :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’")
-     (secondary-opening :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "`")
-     (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "'")
-     (apostrophe :utf-8 "’" :html "&rsquo;")))
-  "Smart quotes translations.
-
-Alist whose CAR is a language string and CDR is an alist with
-quote type as key and a plist associating various encodings to
-their translation as value.
-
-A quote type can be any symbol among `primary-opening',
-`primary-closing', `secondary-opening', `secondary-closing' and
-`apostrophe'.
-
-Valid encodings include `:utf-8', `:html', `:latex' and
-`:texinfo'.
-
-If no translation is found, the quote character is left as-is.")
-
-(defun org-export--smart-quote-status (s info)
-  "Return smart quote status at the beginning of string S.
-INFO is the current export state, as a plist."
-  (let* ((parent (org-element-property :parent s))
-	 (cache (or (plist-get info :smart-quote-cache)
-		    (let ((table (make-hash-table :test #'eq)))
-		      (plist-put info :smart-quote-cache table)
-		      table)))
-	 (value (gethash parent cache 'missing-data)))
-    (if (not (eq value 'missing-data)) (cdr (assq s value))
-      (let (level1-open full-status)
-	(org-element-map
-	    (let ((secondary (org-element-secondary-p s)))
-	      (if secondary (org-element-property secondary parent)
-		(org-element-contents parent)))
-	    'plain-text
-	  (lambda (text)
-	    (let ((start 0) current-status)
-	      (while (setq start (string-match "['\"]" text start))
-		(push
-		 (cond
-		  ((equal (match-string 0 text) "\"")
-		   (setf level1-open (not level1-open))
-		   (if level1-open 'primary-opening 'primary-closing))
-		  ;; Not already in a level 1 quote: this is an
-		  ;; apostrophe.
-		  ((not level1-open) 'apostrophe)
-		  ;; Extract previous char and next char.  As
-		  ;; a special case, they can also be set to `blank',
-		  ;; `no-blank' or nil.  Then determine if current
-		  ;; match is allowed as an opening quote or a closing
-		  ;; quote.
-		  (t
-		   (let* ((previous
-			   (if (> start 0) (substring text (1- start) start)
-			     (let ((p (org-export-get-previous-element
-				       text info)))
-			       (cond ((not p) nil)
-				     ((stringp p) (substring p -1))
-				     ((memq (org-element-property :post-blank p)
-					    '(0 nil))
-				      'no-blank)
-				     (t 'blank)))))
-			  (next
-			   (if (< (1+ start) (length text))
-			       (substring text (1+ start) (+ start 2))
-			     (let ((n (org-export-get-next-element text info)))
-			       (cond ((not n) nil)
-				     ((stringp n) (substring n 0 1))
-				     (t 'no-blank)))))
-			  (allow-open
-			   (and (if (stringp previous)
-				    (string-match "\\s\"\\|\\s-\\|\\s("
-						  previous)
-				  (memq previous '(blank nil)))
-				(if (stringp next)
-				    (string-match "\\w\\|\\s.\\|\\s_" next)
-				  (eq next 'no-blank))))
-			  (allow-close
-			   (and (if (stringp previous)
-				    (string-match "\\w\\|\\s.\\|\\s_" previous)
-				  (eq previous 'no-blank))
-				(if (stringp next)
-				    (string-match "\\s-\\|\\s)\\|\\s.\\|\\s\""
-						  next)
-				  (memq next '(blank nil))))))
-		     (cond
-		      ((and allow-open allow-close) (error "Should not happen"))
-		      (allow-open 'secondary-opening)
-		      (allow-close 'secondary-closing)
-		      (t 'apostrophe)))))
-		 current-status)
-		(cl-incf start))
-	      (when current-status
-		(push (cons text (nreverse current-status)) full-status))))
-	  info nil org-element-recursive-objects)
-	(puthash parent full-status cache)
-	(cdr (assq s full-status))))))
-
-(defun org-export-activate-smart-quotes (s encoding info &optional original)
-  "Replace regular quotes with \"smart\" quotes in string S.
-
-ENCODING is a symbol among `:html', `:latex', `:texinfo' and
-`:utf-8'.  INFO is a plist used as a communication channel.
-
-The function has to retrieve information about string
-surroundings in parse tree.  It can only happen with an
-unmodified string.  Thus, if S has already been through another
-process, a non-nil ORIGINAL optional argument will provide that
-original string.
-
-Return the new string."
-  (let ((quote-status
-	 (copy-sequence (org-export--smart-quote-status (or original s) info))))
-    (replace-regexp-in-string
-     "['\"]"
-     (lambda (match)
-       (or (plist-get
-	    (cdr (assq (pop quote-status)
-		       (cdr (assoc (plist-get info :language)
-				   org-export-smart-quotes-alist))))
-	    encoding)
-	   match))
-     s nil t)))
-
-;;;; Topology
-;;
-;; Here are various functions to retrieve information about the
-;; neighborhood of a given element or object.  Neighbors of interest
-;; are direct parent (`org-export-get-parent'), parent headline
-;; (`org-export-get-parent-headline'), first element containing an
-;; object, (`org-export-get-parent-element'), parent table
-;; (`org-export-get-parent-table'), previous element or object
-;; (`org-export-get-previous-element') and next element or object
-;; (`org-export-get-next-element').
-
-;; defsubst org-export-get-parent must be defined before first use
-
-(defun org-export-get-parent-headline (blob)
-  "Return BLOB parent headline or nil.
-BLOB is the element or object being considered."
-  (org-element-lineage blob '(headline)))
-
-(defun org-export-get-parent-element (object)
-  "Return first element containing OBJECT or nil.
-OBJECT is the object to consider."
-  (org-element-lineage object org-element-all-elements))
-
-(defun org-export-get-parent-table (object)
-  "Return OBJECT parent table or nil.
-OBJECT is either a `table-cell' or `table-element' type object."
-  (org-element-lineage object '(table)))
-
-(defun org-export-get-previous-element (blob info &optional n)
-  "Return previous element or object.
-
-BLOB is an element or object.  INFO is a plist used as
-a communication channel.  Return previous exportable element or
-object, a string, or nil.
-
-When optional argument N is a positive integer, return a list
-containing up to N siblings before BLOB, from farthest to
-closest.  With any other non-nil value, return a list containing
-all of them."
-  (let* ((secondary (org-element-secondary-p blob))
-	 (parent (org-export-get-parent blob))
-	 (siblings
-	  (if secondary (org-element-property secondary parent)
-	    (org-element-contents parent)))
-	 prev)
-    (catch 'exit
-      (dolist (obj (cdr (memq blob (reverse siblings))) prev)
-	(cond ((memq obj (plist-get info :ignore-list)))
-	      ((null n) (throw 'exit obj))
-	      ((not (wholenump n)) (push obj prev))
-	      ((zerop n) (throw 'exit prev))
-	      (t (cl-decf n) (push obj prev)))))))
-
-(defun org-export-get-next-element (blob info &optional n)
-  "Return next element or object.
-
-BLOB is an element or object.  INFO is a plist used as
-a communication channel.  Return next exportable element or
-object, a string, or nil.
-
-When optional argument N is a positive integer, return a list
-containing up to N siblings after BLOB, from closest to farthest.
-With any other non-nil value, return a list containing all of
-them."
-  (let* ((secondary (org-element-secondary-p blob))
-	 (parent (org-export-get-parent blob))
-	 (siblings
-	  (cdr (memq blob
-		     (if secondary (org-element-property secondary parent)
-		       (org-element-contents parent)))))
-	 next)
-    (catch 'exit
-      (dolist (obj siblings (nreverse next))
-	(cond ((memq obj (plist-get info :ignore-list)))
-	      ((null n) (throw 'exit obj))
-	      ((not (wholenump n)) (push obj next))
-	      ((zerop n) (throw 'exit (nreverse next)))
-	      (t (cl-decf n) (push obj next)))))))
-
-
-;;;; Translation
-;;
-;; `org-export-translate' translates a string according to the language
-;; specified by the LANGUAGE keyword.  `org-export-dictionary' contains
-;; the dictionary used for the translation.
-
-(defconst org-export-dictionary
-  '(("%e %n: %c"
-     ("fr" :default "%e %n : %c" :html "%e&nbsp;%n&nbsp;: %c"))
-    ("Author"
-     ("ar" :default "تأليف")
-     ("ca" :default "Autor")
-     ("cs" :default "Autor")
-     ("da" :default "Forfatter")
-     ("de" :default "Autor")
-     ("eo" :html "A&#365;toro")
-     ("es" :default "Autor")
-     ("et" :default "Autor")
-     ("fi" :html "Tekij&auml;")
-     ("fr" :default "Auteur")
-     ("hu" :default "Szerz&otilde;")
-     ("is" :html "H&ouml;fundur")
-     ("it" :default "Autore")
-     ("ja" :default "著者" :html "&#33879;&#32773;")
-     ("nl" :default "Auteur")
-     ("no" :default "Forfatter")
-     ("nb" :default "Forfatter")
-     ("nn" :default "Forfattar")
-     ("pl" :default "Autor")
-     ("pt_BR" :default "Autor")
-     ("ru" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор")
-     ("sl" :default "Avtor")
-     ("sv" :html "F&ouml;rfattare")
-     ("uk" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор")
-     ("zh-CN" :html "&#20316;&#32773;" :utf-8 "作者")
-     ("zh-TW" :html "&#20316;&#32773;" :utf-8 "作者"))
-    ("Continued from previous page"
-     ("ar" :default "تتمة الصفحة السابقة")
-     ("cs" :default "Pokračování z předchozí strany")
-     ("de" :default "Fortsetzung von vorheriger Seite")
-     ("es" :html "Contin&uacute;a de la p&aacute;gina anterior" :ascii "Continua de la pagina anterior" :default "Continúa de la página anterior")
-     ("fr" :default "Suite de la page précédente")
-     ("it" :default "Continua da pagina precedente")
-     ("ja" :default "前ページからの続き")
-     ("nl" :default "Vervolg van vorige pagina")
-     ("pt" :default "Continuação da página anterior")
-     ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077;)"
-      :utf-8 "(Продолжение)")
-     ("sl" :default "Nadaljevanje s prejšnje strani"))
-    ("Continued on next page"
-     ("ar" :default "التتمة في الصفحة التالية")
-     ("cs" :default "Pokračuje na další stránce")
-     ("de" :default "Fortsetzung nächste Seite")
-     ("es" :html "Contin&uacute;a en la siguiente p&aacute;gina" :ascii "Continua en la siguiente pagina" :default "Continúa en la siguiente página")
-     ("fr" :default "Suite page suivante")
-     ("it" :default "Continua alla pagina successiva")
-     ("ja" :default "次ページに続く")
-     ("nl" :default "Vervolg op volgende pagina")
-     ("pt" :default "Continua na página seguinte")
-     ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;)"
-      :utf-8 "(Продолжение следует)")
-     ("sl" :default "Nadaljevanje na naslednji strani"))
-    ("Created"
-     ("cs" :default "Vytvořeno")
-     ("sl" :default "Ustvarjeno"))
-    ("Date"
-     ("ar" :default "بتاريخ")
-     ("ca" :default "Data")
-     ("cs" :default "Datum")
-     ("da" :default "Dato")
-     ("de" :default "Datum")
-     ("eo" :default "Dato")
-     ("es" :default "Fecha")
-     ("et" :html "Kuup&#228;ev" :utf-8 "Kuupäev")
-     ("fi" :html "P&auml;iv&auml;m&auml;&auml;r&auml;")
-     ("hu" :html "D&aacute;tum")
-     ("is" :default "Dagsetning")
-     ("it" :default "Data")
-     ("ja" :default "日付" :html "&#26085;&#20184;")
-     ("nl" :default "Datum")
-     ("no" :default "Dato")
-     ("nb" :default "Dato")
-     ("nn" :default "Dato")
-     ("pl" :default "Data")
-     ("pt_BR" :default "Data")
-     ("ru" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата")
-     ("sl" :default "Datum")
-     ("sv" :default "Datum")
-     ("uk" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата")
-     ("zh-CN" :html "&#26085;&#26399;" :utf-8 "日期")
-     ("zh-TW" :html "&#26085;&#26399;" :utf-8 "日期"))
-    ("Equation"
-     ("ar" :default "معادلة")
-     ("cs" :default "Rovnice")
-     ("da" :default "Ligning")
-     ("de" :default "Gleichung")
-     ("es" :ascii "Ecuacion" :html "Ecuaci&oacute;n" :default "Ecuación")
-     ("et" :html "V&#245;rrand" :utf-8 "Võrrand")
-     ("fr" :ascii "Equation" :default "Équation")
-     ("is" :default "Jafna")
-     ("ja" :default "方程式")
-     ("no" :default "Ligning")
-     ("nb" :default "Ligning")
-     ("nn" :default "Likning")
-     ("pt_BR" :html "Equa&ccedil;&atilde;o" :default "Equação" :ascii "Equacao")
-     ("ru" :html "&#1059;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1077;"
-      :utf-8 "Уравнение")
-     ("sl" :default "Enačba")
-     ("sv" :default "Ekvation")
-     ("zh-CN" :html "&#26041;&#31243;" :utf-8 "方程"))
-    ("Figure"
-     ("ar" :default "شكل")
-     ("cs" :default "Obrázek")
-     ("da" :default "Figur")
-     ("de" :default "Abbildung")
-     ("es" :default "Figura")
-     ("et" :default "Joonis")
-     ("is" :default "Mynd")
-     ("ja" :default "図" :html "&#22259;")
-     ("no" :default "Illustrasjon")
-     ("nb" :default "Illustrasjon")
-     ("nn" :default "Illustrasjon")
-     ("pt_BR" :default "Figura")
-     ("ru" :html "&#1056;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;" :utf-8 "Рисунок")
-     ("sv" :default "Illustration")
-     ("zh-CN" :html "&#22270;" :utf-8 "图"))
-    ("Figure %d:"
-     ("ar" :default "شكل %d:")
-     ("cs" :default "Obrázek %d:")
-     ("da" :default "Figur %d")
-     ("de" :default "Abbildung %d:")
-     ("es" :default "Figura %d:")
-     ("et" :default "Joonis %d:")
-     ("fr" :default "Figure %d :" :html "Figure&nbsp;%d&nbsp;:")
-     ("is" :default "Mynd %d")
-     ("ja" :default "図%d: " :html "&#22259;%d: ")
-     ("no" :default "Illustrasjon %d")
-     ("nb" :default "Illustrasjon %d")
-     ("nn" :default "Illustrasjon %d")
-     ("pt_BR" :default "Figura %d:")
-     ("ru" :html "&#1056;&#1080;&#1089;. %d.:" :utf-8 "Рис. %d.:")
-     ("sl" :default "Slika %d")
-     ("sv" :default "Illustration %d")
-     ("zh-CN" :html "&#22270;%d&nbsp;" :utf-8 "图%d "))
-    ("Footnotes"
-     ("ar" :default "الهوامش")
-     ("ca" :html "Peus de p&agrave;gina")
-     ("cs" :default "Poznámky pod čarou")
-     ("da" :default "Fodnoter")
-     ("de" :html "Fu&szlig;noten" :default "Fußnoten")
-     ("eo" :default "Piednotoj")
-     ("es" :ascii "Nota al pie de pagina" :html "Nota al pie de p&aacute;gina" :default "Nota al pie de página")
-     ("et" :html "Allm&#228;rkused" :utf-8 "Allmärkused")
-     ("fi" :default "Alaviitteet")
-     ("fr" :default "Notes de bas de page")
-     ("hu" :html "L&aacute;bjegyzet")
-     ("is" :html "Aftanm&aacute;lsgreinar")
-     ("it" :html "Note a pi&egrave; di pagina")
-     ("ja" :default "脚注" :html "&#33050;&#27880;")
-     ("nl" :default "Voetnoten")
-     ("no" :default "Fotnoter")
-     ("nb" :default "Fotnoter")
-     ("nn" :default "Fotnotar")
-     ("pl" :default "Przypis")
-     ("pt_BR" :html "Notas de Rodap&eacute;" :default "Notas de Rodapé" :ascii "Notas de Rodape")
-     ("ru" :html "&#1057;&#1085;&#1086;&#1089;&#1082;&#1080;" :utf-8 "Сноски")
-     ("sl" :default "Opombe")
-     ("sv" :default "Fotnoter")
-     ("uk" :html "&#1055;&#1088;&#1080;&#1084;&#1110;&#1090;&#1082;&#1080;"
-      :utf-8 "Примітки")
-     ("zh-CN" :html "&#33050;&#27880;" :utf-8 "脚注")
-     ("zh-TW" :html "&#33139;&#35387;" :utf-8 "腳註"))
-    ("List of Listings"
-     ("ar" :default "قائمة بالبرامج")
-     ("cs" :default "Seznam programů")
-     ("da" :default "Programmer")
-     ("de" :default "Programmauflistungsverzeichnis")
-     ("es" :ascii "Indice de Listados de programas" :html "&Iacute;ndice de Listados de programas" :default "Índice de Listados de programas")
-     ("et" :default "Loendite nimekiri")
-     ("fr" :default "Liste des programmes")
-     ("ja" :default "ソースコード目次")
-     ("no" :default "Dataprogrammer")
-     ("nb" :default "Dataprogrammer")
-     ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1086;&#1082;"
-      :utf-8 "Список распечаток")
-     ("sl" :default "Seznam programskih izpisov")
-     ("zh-CN" :html "&#20195;&#30721;&#30446;&#24405;" :utf-8 "代码目录"))
-    ("List of Tables"
-     ("ar" :default "قائمة بالجداول")
-     ("cs" :default "Seznam tabulek")
-     ("da" :default "Tabeller")
-     ("de" :default "Tabellenverzeichnis")
-     ("es" :ascii "Indice de tablas" :html "&Iacute;ndice de tablas" :default "Índice de tablas")
-     ("et" :default "Tabelite nimekiri")
-     ("fr" :default "Liste des tableaux")
-     ("is" :default "Töfluskrá" :html "T&ouml;fluskr&aacute;")
-     ("ja" :default "表目次")
-     ("no" :default "Tabeller")
-     ("nb" :default "Tabeller")
-     ("nn" :default "Tabeller")
-     ("pt_BR" :default "Índice de Tabelas" :ascii "Indice de Tabelas")
-     ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;"
-      :utf-8 "Список таблиц")
-     ("sl" :default "Seznam tabel")
-     ("sv" :default "Tabeller")
-     ("zh-CN" :html "&#34920;&#26684;&#30446;&#24405;" :utf-8 "表格目录"))
-    ("Listing"
-     ("ar" :default "برنامج")
-     ("cs" :default "Program")
-     ("da" :default "Program")
-     ("de" :default "Programmlisting")
-     ("es" :default "Listado de programa")
-     ("et" :default "Loend")
-     ("fr" :default "Programme" :html "Programme")
-     ("ja" :default "ソースコード")
-     ("no" :default "Dataprogram")
-     ("nb" :default "Dataprogram")
-     ("pt_BR" :default "Listagem")
-     ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072;"
-      :utf-8 "Распечатка")
-     ("sl" :default "Izpis programa")
-     ("zh-CN" :html "&#20195;&#30721;" :utf-8 "代码"))
-    ("Listing %d:"
-     ("ar" :default "برنامج %d:")
-     ("cs" :default "Program %d:")
-     ("da" :default "Program %d")
-     ("de" :default "Programmlisting %d")
-     ("es" :default "Listado de programa %d")
-     ("et" :default "Loend %d")
-     ("fr" :default "Programme %d :" :html "Programme&nbsp;%d&nbsp;:")
-     ("ja" :default "ソースコード%d:")
-     ("no" :default "Dataprogram %d")
-     ("nb" :default "Dataprogram %d")
-     ("pt_BR" :default "Listagem %d")
-     ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072; %d.:"
-      :utf-8 "Распечатка %d.:")
-     ("sl" :default "Izpis programa %d")
-     ("zh-CN" :html "&#20195;&#30721;%d&nbsp;" :utf-8 "代码%d "))
-    ("References"
-     ("ar" :default "المراجع")
-     ("cs" :default "Reference")
-     ("fr" :ascii "References" :default "Références")
-     ("de" :default "Quellen")
-     ("es" :default "Referencias")
-     ("sl" :default "Reference"))
-    ("See figure %s"
-     ("cs" :default "Viz obrázek %s")
-     ("fr" :default "cf. figure %s"
-      :html "cf.&nbsp;figure&nbsp;%s" :latex "cf.~figure~%s")
-     ("sl" :default "Glej sliko %s"))
-    ("See listing %s"
-     ("cs" :default "Viz program %s")
-     ("fr" :default "cf. programme %s"
-      :html "cf.&nbsp;programme&nbsp;%s" :latex "cf.~programme~%s")
-     ("sl" :default "Glej izpis programa %s"))
-    ("See section %s"
-     ("ar" :default "انظر قسم %s")
-     ("cs" :default "Viz sekce %s")
-     ("da" :default "jævnfør afsnit %s")
-     ("de" :default "siehe Abschnitt %s")
-     ("es" :ascii "Vea seccion %s" :html "Vea secci&oacute;n %s" :default "Vea sección %s")
-     ("et" :html "Vaata peat&#252;kki %s" :utf-8 "Vaata peatükki %s")
-     ("fr" :default "cf. section %s")
-     ("ja" :default "セクション %s を参照")
-     ("pt_BR" :html "Veja a se&ccedil;&atilde;o %s" :default "Veja a seção %s"
-      :ascii "Veja a secao %s")
-     ("ru" :html "&#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; %s"
-      :utf-8 "См. раздел %s")
-     ("sl" :default "Glej poglavje %d")
-     ("zh-CN" :html "&#21442;&#35265;&#31532;%s&#33410;" :utf-8 "参见第%s节"))
-    ("See table %s"
-     ("cs" :default "Viz tabulka %s")
-     ("fr" :default "cf. tableau %s"
-      :html "cf.&nbsp;tableau&nbsp;%s" :latex "cf.~tableau~%s")
-     ("sl" :default "Glej tabelo %s"))
-    ("Table"
-     ("ar" :default "جدول")
-     ("cs" :default "Tabulka")
-     ("de" :default "Tabelle")
-     ("es" :default "Tabla")
-     ("et" :default "Tabel")
-     ("fr" :default "Tableau")
-     ("is" :default "Tafla")
-     ("ja" :default "表" :html "&#34920;")
-     ("pt_BR" :default "Tabela")
-     ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;"
-      :utf-8 "Таблица")
-     ("zh-CN" :html "&#34920;" :utf-8 "表"))
-    ("Table %d:"
-     ("ar" :default "جدول %d:")
-     ("cs" :default "Tabulka %d:")
-     ("da" :default "Tabel %d")
-     ("de" :default "Tabelle %d")
-     ("es" :default "Tabla %d")
-     ("et" :default "Tabel %d")
-     ("fr" :default "Tableau %d :")
-     ("is" :default "Tafla %d")
-     ("ja" :default "表%d:" :html "&#34920;%d:")
-     ("no" :default "Tabell %d")
-     ("nb" :default "Tabell %d")
-     ("nn" :default "Tabell %d")
-     ("pt_BR" :default "Tabela %d")
-     ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; %d.:"
-      :utf-8 "Таблица %d.:")
-     ("sl" :default "Tabela %d")
-     ("sv" :default "Tabell %d")
-     ("zh-CN" :html "&#34920;%d&nbsp;" :utf-8 "表%d "))
-    ("Table of Contents"
-     ("ar" :default "قائمة المحتويات")
-     ("ca" :html "&Iacute;ndex")
-     ("cs" :default "Obsah")
-     ("da" :default "Indhold")
-     ("de" :default "Inhaltsverzeichnis")
-     ("eo" :default "Enhavo")
-     ("es" :ascii "Indice" :html "&Iacute;ndice" :default "Índice")
-     ("et" :default "Sisukord")
-     ("fi" :html "Sis&auml;llysluettelo")
-     ("fr" :ascii "Sommaire" :default "Table des matières")
-     ("hu" :html "Tartalomjegyz&eacute;k")
-     ("is" :default "Efnisyfirlit")
-     ("it" :default "Indice")
-     ("ja" :default "目次" :html "&#30446;&#27425;")
-     ("nl" :default "Inhoudsopgave")
-     ("no" :default "Innhold")
-     ("nb" :default "Innhold")
-     ("nn" :default "Innhald")
-     ("pl" :html "Spis tre&#x015b;ci")
-     ("pt_BR" :html "&Iacute;ndice" :utf8 "Índice" :ascii "Indice")
-     ("ru" :html "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;"
-      :utf-8 "Содержание")
-     ("sl" :default "Kazalo")
-     ("sv" :html "Inneh&aring;ll")
-     ("uk" :html "&#1047;&#1084;&#1110;&#1089;&#1090;" :utf-8 "Зміст")
-     ("zh-CN" :html "&#30446;&#24405;" :utf-8 "目录")
-     ("zh-TW" :html "&#30446;&#37636;" :utf-8 "目錄"))
-    ("Unknown reference"
-     ("ar" :default "مرجع غير معرّف")
-     ("da" :default "ukendt reference")
-     ("de" :default "Unbekannter Verweis")
-     ("es" :default "Referencia desconocida")
-     ("et" :default "Tundmatu viide")
-     ("fr" :ascii "Destination inconnue" :default "Référence inconnue")
-     ("ja" :default "不明な参照先")
-     ("pt_BR" :default "Referência desconhecida"
-      :ascii "Referencia desconhecida")
-     ("ru" :html "&#1053;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1072;&#1103; &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;"
-      :utf-8 "Неизвестная ссылка")
-     ("sl" :default "Neznana referenca")
-     ("zh-CN" :html "&#26410;&#30693;&#24341;&#29992;" :utf-8 "未知引用")))
-  "Dictionary for export engine.
-
-Alist whose car is the string to translate and cdr is an alist
-whose car is the language string and cdr is a plist whose
-properties are possible charsets and values translated terms.
-
-It is used as a database for `org-export-translate'.  Since this
-function returns the string as-is if no translation was found,
-the variable only needs to record values different from the
-entry.")
-
-(defun org-export-translate (s encoding info)
-  "Translate string S according to language specification.
-
-ENCODING is a symbol among `:ascii', `:html', `:latex', `:latin1'
-and `:utf-8'.  INFO is a plist used as a communication channel.
-
-Translation depends on `:language' property.  Return the
-translated string.  If no translation is found, try to fall back
-to `:default' encoding.  If it fails, return S."
-  (let* ((lang (plist-get info :language))
-	 (translations (cdr (assoc lang
-				   (cdr (assoc s org-export-dictionary))))))
-    (or (plist-get translations encoding)
-	(plist-get translations :default)
-	s)))
-
-
-
-;;; Asynchronous Export
-;;
-;; `org-export-async-start' is the entry point for asynchronous
-;; export.  It recreates current buffer (including visibility,
-;; narrowing and visited file) in an external Emacs process, and
-;; evaluates a command there.  It then applies a function on the
-;; returned results in the current process.
-;;
-;; At a higher level, `org-export-to-buffer' and `org-export-to-file'
-;; allow exporting to a buffer or a file, asynchronously or not.
-;;
-;; `org-export-output-file-name' is an auxiliary function meant to be
-;; used with `org-export-to-file'.  With a given extension, it tries
-;; to provide a canonical file name to write export output to.
-;;
-;; Asynchronously generated results are never displayed directly.
-;; Instead, they are stored in `org-export-stack-contents'.  They can
-;; then be retrieved by calling `org-export-stack'.
-;;
-;; Export Stack is viewed through a dedicated major mode
-;;`org-export-stack-mode' and tools: `org-export-stack-refresh',
-;;`org-export-stack-delete', `org-export-stack-view' and
-;;`org-export-stack-clear'.
-;;
-;; For back-ends, `org-export-add-to-stack' add a new source to stack.
-;; It should be used whenever `org-export-async-start' is called.
-
-(defmacro org-export-async-start  (fun &rest body)
-  "Call function FUN on the results returned by BODY evaluation.
-
-FUN is an anonymous function of one argument.  BODY evaluation
-happens in an asynchronous process, from a buffer which is an
-exact copy of the current one.
-
-Use `org-export-add-to-stack' in FUN in order to register results
-in the stack.
-
-This is a low level function.  See also `org-export-to-buffer'
-and `org-export-to-file' for more specialized functions."
-  (declare (indent 1) (debug t))
-  (org-with-gensyms (process temp-file copy-fun proc-buffer coding)
-    ;; Write the full sexp evaluating BODY in a copy of the current
-    ;; buffer to a temporary file, as it may be too long for program
-    ;; args in `start-process'.
-    `(with-temp-message "Initializing asynchronous export process"
-       (let ((,copy-fun (org-export--generate-copy-script (current-buffer)))
-             (,temp-file (make-temp-file "org-export-process"))
-             (,coding buffer-file-coding-system))
-         (with-temp-file ,temp-file
-           (insert
-            ;; Null characters (from variable values) are inserted
-            ;; within the file.  As a consequence, coding system for
-            ;; buffer contents will not be recognized properly.  So,
-            ;; we make sure it is the same as the one used to display
-            ;; the original buffer.
-            (format ";; -*- coding: %s; -*-\n%S"
-                    ,coding
-                    `(with-temp-buffer
-                       (when org-export-async-debug '(setq debug-on-error t))
-                       ;; Ignore `kill-emacs-hook' and code evaluation
-                       ;; queries from Babel as we need a truly
-                       ;; non-interactive process.
-                       (setq kill-emacs-hook nil
-                             org-babel-confirm-evaluate-answer-no t)
-                       ;; Initialize export framework.
-                       (require 'ox)
-                       ;; Re-create current buffer there.
-                       (funcall ,,copy-fun)
-                       (restore-buffer-modified-p nil)
-                       ;; Sexp to evaluate in the buffer.
-                       (print (progn ,,@body))))))
-         ;; Start external process.
-         (let* ((process-connection-type nil)
-                (,proc-buffer (generate-new-buffer-name "*Org Export Process*"))
-                (,process
-		 (apply
-		  #'start-process
-		  (append
-		   (list "org-export-process"
-			 ,proc-buffer
-			 (expand-file-name invocation-name invocation-directory)
-			 "--batch")
-		   (if org-export-async-init-file
-		       (list "-Q" "-l" org-export-async-init-file)
-		     (list "-l" user-init-file))
-		   (list "-l" ,temp-file)))))
-           ;; Register running process in stack.
-           (org-export-add-to-stack (get-buffer ,proc-buffer) nil ,process)
-           ;; Set-up sentinel in order to catch results.
-           (let ((handler ,fun))
-             (set-process-sentinel
-              ,process
-              `(lambda (p status)
-                 (let ((proc-buffer (process-buffer p)))
-                   (when (eq (process-status p) 'exit)
-                     (unwind-protect
-                         (if (zerop (process-exit-status p))
-                             (unwind-protect
-                                 (let ((results
-                                        (with-current-buffer proc-buffer
-                                          (goto-char (point-max))
-                                          (backward-sexp)
-                                          (read (current-buffer)))))
-                                   (funcall ,handler results))
-                               (unless org-export-async-debug
-                                 (and (get-buffer proc-buffer)
-                                      (kill-buffer proc-buffer))))
-                           (org-export-add-to-stack proc-buffer nil p)
-                           (ding)
-                           (message "Process `%s' exited abnormally" p))
-                       (unless org-export-async-debug
-                         (delete-file ,,temp-file)))))))))))))
-
-;;;###autoload
-(defun org-export-to-buffer
-  (backend buffer
-	   &optional async subtreep visible-only body-only ext-plist
-	   post-process)
-  "Call `org-export-as' with output to a specified buffer.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.
-
-BUFFER is the name of the output buffer.  If it already exists,
-it will be erased first, otherwise, it will be created.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer should then be accessible
-through the `org-export-stack' interface.  When ASYNC is nil, the
-buffer is displayed if `org-export-show-temporary-export-buffer'
-is non-nil.
-
-Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
-EXT-PLIST are similar to those used in `org-export-as', which
-see.
-
-Optional argument POST-PROCESS is a function which should accept
-no argument.  It is always called within the current process,
-from BUFFER, with point at its beginning.  Export back-ends can
-use it to set a major mode there, e.g,
-
-  (defun org-latex-export-as-latex
-    (&optional async subtreep visible-only body-only ext-plist)
-    (interactive)
-    (org-export-to-buffer \\='latex \"*Org LATEX Export*\"
-      async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
-
-This function returns BUFFER."
-  (declare (indent 2))
-  (if async
-      (org-export-async-start
-	  `(lambda (output)
-	     (with-current-buffer (get-buffer-create ,buffer)
-	       (erase-buffer)
-	       (setq buffer-file-coding-system ',buffer-file-coding-system)
-	       (insert output)
-	       (goto-char (point-min))
-	       (org-export-add-to-stack (current-buffer) ',backend)
-	       (ignore-errors (funcall ,post-process))))
-	`(org-export-as
-	  ',backend ,subtreep ,visible-only ,body-only ',ext-plist))
-    (let ((output
-	   (org-export-as backend subtreep visible-only body-only ext-plist))
-	  (buffer (get-buffer-create buffer))
-	  (encoding buffer-file-coding-system))
-      (when (and (org-string-nw-p output) (org-export--copy-to-kill-ring-p))
-	(org-kill-new output))
-      (with-current-buffer buffer
-	(erase-buffer)
-	(setq buffer-file-coding-system encoding)
-	(insert output)
-	(goto-char (point-min))
-	(and (functionp post-process) (funcall post-process)))
-      (when org-export-show-temporary-export-buffer
-	(switch-to-buffer-other-window buffer))
-      buffer)))
-
-;;;###autoload
-(defun org-export-to-file
-  (backend file &optional async subtreep visible-only body-only ext-plist
-	   post-process)
-  "Call `org-export-as' with output to a specified file.
-
-BACKEND is either an export back-end, as returned by, e.g.,
-`org-export-create-backend', or a symbol referring to
-a registered back-end.  FILE is the name of the output file, as
-a string.
-
-A non-nil optional argument ASYNC means the process should happen
-asynchronously.  The resulting buffer will then be accessible
-through the `org-export-stack' interface.
-
-Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
-EXT-PLIST are similar to those used in `org-export-as', which
-see.
-
-Optional argument POST-PROCESS is called with FILE as its
-argument and happens asynchronously when ASYNC is non-nil.  It
-has to return a file name, or nil.  Export back-ends can use this
-to send the output file through additional processing, e.g,
-
-  (defun org-latex-export-to-latex
-    (&optional async subtreep visible-only body-only ext-plist)
-    (interactive)
-    (let ((outfile (org-export-output-file-name \".tex\" subtreep)))
-      (org-export-to-file \\='latex outfile
-        async subtreep visible-only body-only ext-plist
-        (lambda (file) (org-latex-compile file)))
-
-The function returns either a file name returned by POST-PROCESS,
-or FILE."
-  (declare (indent 2))
-  (if (not (file-writable-p file)) (error "Output file not writable")
-    (let ((ext-plist (org-combine-plists `(:output-file ,file) ext-plist))
-	  (encoding (or org-export-coding-system buffer-file-coding-system)))
-      (if async
-          (org-export-async-start
-	      `(lambda (file)
-		 (org-export-add-to-stack (expand-file-name file) ',backend))
-	    `(let ((output
-		    (org-export-as
-		     ',backend ,subtreep ,visible-only ,body-only
-		     ',ext-plist)))
-	       (with-temp-buffer
-		 (insert output)
-		 (let ((coding-system-for-write ',encoding))
-		   (write-file ,file)))
-	       (or (ignore-errors (funcall ',post-process ,file)) ,file)))
-        (let ((output (org-export-as
-                       backend subtreep visible-only body-only ext-plist)))
-          (with-temp-buffer
-            (insert output)
-            (let ((coding-system-for-write encoding))
-	      (write-file file)))
-          (when (and (org-export--copy-to-kill-ring-p) (org-string-nw-p output))
-            (org-kill-new output))
-          ;; Get proper return value.
-          (or (and (functionp post-process) (funcall post-process file))
-	      file))))))
-
-(defun org-export-output-file-name (extension &optional subtreep pub-dir)
-  "Return output file's name according to buffer specifications.
-
-EXTENSION is a string representing the output file extension,
-with the leading dot.
-
-With a non-nil optional argument SUBTREEP, try to determine
-output file's name by looking for \"EXPORT_FILE_NAME\" property
-of subtree at point.
-
-When optional argument PUB-DIR is set, use it as the publishing
-directory.
-
-Return file name as a string."
-  (let* ((visited-file (buffer-file-name (buffer-base-buffer)))
-	 (base-name
-	  (concat
-	   (file-name-sans-extension
-	    (or
-	     ;; Check EXPORT_FILE_NAME subtree property.
-	     (and subtreep (org-entry-get nil "EXPORT_FILE_NAME" 'selective))
-	     ;; Check #+EXPORT_FILE_NAME keyword.
-	     (org-with-point-at (point-min)
-	       (catch :found
-		 (let ((case-fold-search t))
-		   (while (re-search-forward
-			   "^[ \t]*#\\+EXPORT_FILE_NAME:[ \t]+\\S-" nil t)
-		     (let ((element (org-element-at-point)))
-		       (when (eq 'keyword (org-element-type element))
-			 (throw :found
-				(org-element-property :value element))))))))
-	     ;; Extract from buffer's associated file, if any.
-	     (and visited-file (file-name-nondirectory visited-file))
-	     ;; Can't determine file name on our own: ask user.
-	     (read-file-name
-	      "Output file: " pub-dir nil nil nil
-	      (lambda (n) (string= extension (file-name-extension n t))))))
-	   extension))
-	 (output-file
-	  ;; Build file name.  Enforce EXTENSION over whatever user
-	  ;; may have come up with.  PUB-DIR, if defined, always has
-	  ;; precedence over any provided path.
-	  (cond
-	   (pub-dir (concat (file-name-as-directory pub-dir)
-			    (file-name-nondirectory base-name)))
-	   ((file-name-absolute-p base-name) base-name)
-	   (t base-name))))
-    ;; If writing to OUTPUT-FILE would overwrite original file, append
-    ;; EXTENSION another time to final name.
-    (if (and visited-file (file-equal-p visited-file output-file))
-	(concat output-file extension)
-      output-file)))
-
-(defun org-export-add-to-stack (source backend &optional process)
-  "Add a new result to export stack if not present already.
-
-SOURCE is a buffer or a file name containing export results.
-BACKEND is a symbol representing export back-end used to generate
-it.
-
-Entries already pointing to SOURCE and unavailable entries are
-removed beforehand.  Return the new stack."
-  (setq org-export-stack-contents
-	(cons (list source backend (or process (current-time)))
-	      (org-export-stack-remove source))))
-
-(defun org-export-stack ()
-  "Menu for asynchronous export results and running processes."
-  (interactive)
-  (let ((buffer (get-buffer-create "*Org Export Stack*")))
-    (with-current-buffer buffer
-      (org-export-stack-mode)
-      (tabulated-list-print t))
-    (pop-to-buffer buffer))
-  (message "Type \"q\" to quit, \"?\" for help"))
-
-(defun org-export-stack-clear ()
-  "Remove all entries from export stack."
-  (interactive)
-  (setq org-export-stack-contents nil))
-
-(defun org-export-stack-refresh ()
-  "Refresh the export stack."
-  (interactive)
-  (tabulated-list-print t))
-
-(defun org-export-stack-remove (&optional source)
-  "Remove export results at point from stack.
-If optional argument SOURCE is non-nil, remove it instead."
-  (interactive)
-  (let ((source (or source (org-export--stack-source-at-point))))
-    (setq org-export-stack-contents
-	  (cl-remove-if (lambda (el) (equal (car el) source))
-			 org-export-stack-contents))))
-
-(defun org-export-stack-view (&optional in-emacs)
-  "View export results at point in stack.
-With an optional prefix argument IN-EMACS, force viewing files
-within Emacs."
-  (interactive "P")
-  (let ((source (org-export--stack-source-at-point)))
-    (cond ((processp source)
-	   (org-switch-to-buffer-other-window (process-buffer source)))
-	  ((bufferp source) (org-switch-to-buffer-other-window source))
-	  (t (org-open-file source in-emacs)))))
-
-(defvar org-export-stack-mode-map
-  (let ((km (make-sparse-keymap)))
-    (set-keymap-parent km tabulated-list-mode-map)
-    (define-key km " " 'next-line)
-    (define-key km "\C-n" 'next-line)
-    (define-key km [down] 'next-line)
-    (define-key km "\C-p" 'previous-line)
-    (define-key km "\C-?" 'previous-line)
-    (define-key km [up] 'previous-line)
-    (define-key km "C" 'org-export-stack-clear)
-    (define-key km "v" 'org-export-stack-view)
-    (define-key km (kbd "RET") 'org-export-stack-view)
-    (define-key km "d" 'org-export-stack-remove)
-    km)
-  "Keymap for Org Export Stack.")
-
-(define-derived-mode org-export-stack-mode tabulated-list-mode "Org-Stack"
-  "Mode for displaying asynchronous export stack.
-
-Type `\\[org-export-stack]' to visualize the asynchronous export
-stack.
-
-In an Org Export Stack buffer, use \
-\\<org-export-stack-mode-map>`\\[org-export-stack-view]' to view export output
-on current line, `\\[org-export-stack-remove]' to remove it from the stack and \
-`\\[org-export-stack-clear]' to clear
-stack completely.
-
-Removing entries in a stack buffer does not affect files
-or buffers, only display.
-
-\\{org-export-stack-mode-map}"
-  (setq tabulated-list-format
-	(vector (list "#" 4 #'org-export--stack-num-predicate)
-		(list "Back-End" 12 t)
-		(list "Age" 6 nil)
-		(list "Source" 0 nil)))
-  (setq tabulated-list-sort-key (cons "#" nil))
-  (setq tabulated-list-entries #'org-export--stack-generate)
-  (add-hook 'tabulated-list-revert-hook #'org-export--stack-generate nil t)
-  (add-hook 'post-command-hook #'org-export-stack-refresh nil t)
-  (tabulated-list-init-header))
-
-(defun org-export--stack-generate ()
-  "Generate the asynchronous export stack for display.
-Unavailable sources are removed from the list.  Return a list
-appropriate for `tabulated-list-print'."
-  ;; Clear stack from exited processes, dead buffers or non-existent
-  ;; files.
-  (setq org-export-stack-contents
-	(cl-remove-if-not
-	 (lambda (el)
-	   (if (processp (nth 2 el))
-	       (buffer-live-p (process-buffer (nth 2 el)))
-	     (let ((source (car el)))
-	       (if (bufferp source) (buffer-live-p source)
-		 (file-exists-p source)))))
-	 org-export-stack-contents))
-  ;; Update `tabulated-list-entries'.
-  (let ((counter 0))
-    (mapcar
-     (lambda (entry)
-       (let ((source (car entry)))
-	 (list source
-	       (vector
-		;; Counter.
-		(number-to-string (cl-incf counter))
-		;; Back-End.
-		(if (nth 1 entry) (symbol-name (nth 1 entry)) "")
-		;; Age.
-		(let ((info (nth 2 entry)))
-		  (if (processp info) (symbol-name (process-status info))
-		    (format-seconds "%h:%.2m" (float-time (time-since info)))))
-		;; Source.
-		(if (stringp source) source (buffer-name source))))))
-     org-export-stack-contents)))
-
-(defun org-export--stack-num-predicate (a b)
-  (< (string-to-number (aref (nth 1 a) 0))
-     (string-to-number (aref (nth 1 b) 0))))
-
-(defun org-export--stack-source-at-point ()
-  "Return source from export results at point in stack."
-  (let ((source (car (nth (1- (org-current-line)) org-export-stack-contents))))
-    (if (not source) (error "Source unavailable, please refresh buffer")
-      (let ((source-name (if (stringp source) source (buffer-name source))))
-	(if (save-excursion
-	      (beginning-of-line)
-	      (looking-at-p (concat ".* +" (regexp-quote source-name) "$")))
-	    source
-	  ;; SOURCE is not consistent with current line.  The stack
-	  ;; view is outdated.
-	  (error (substitute-command-keys
-		  "Source unavailable; type `\\[org-export-stack-refresh]' \
-to refresh buffer")))))))
-
-
-
-;;; The Dispatcher
-;;
-;; `org-export-dispatch' is the standard interactive way to start an
-;; export process.  It uses `org-export--dispatch-ui' as a subroutine
-;; for its interface, which, in turn, delegates response to key
-;; pressed to `org-export--dispatch-action'.
-
-;;;###autoload
-(defun org-export-dispatch (&optional arg)
-  "Export dispatcher for Org mode.
-
-It provides an access to common export related tasks in a buffer.
-Its interface comes in two flavors: standard and expert.
-
-While both share the same set of bindings, only the former
-displays the valid keys associations in a dedicated buffer.
-Scrolling (resp. line-wise motion) in this buffer is done with
-SPC and DEL (resp. C-n and C-p) keys.
-
-Set variable `org-export-dispatch-use-expert-ui' to switch to one
-flavor or the other.
-
-When ARG is `\\[universal-argument]', repeat the last export action, with the\
- same
-set of options used back then, on the current buffer.
-
-When ARG is `\\[universal-argument] \\[universal-argument]', display the \
-asynchronous export stack."
-  (interactive "P")
-  (let* ((input
-	  (cond ((equal arg '(16)) '(stack))
-		((and arg org-export-dispatch-last-action))
-		(t (save-window-excursion
-		     (unwind-protect
-			 (progn
-			   ;; Remember where we are
-			   (move-marker org-export-dispatch-last-position
-					(point)
-					(org-base-buffer (current-buffer)))
-			   ;; Get and store an export command
-			   (setq org-export-dispatch-last-action
-				 (org-export--dispatch-ui
-				  (list org-export-initial-scope
-					(and org-export-in-background 'async))
-				  nil
-				  org-export-dispatch-use-expert-ui)))
-		       (and (get-buffer "*Org Export Dispatcher*")
-			    (kill-buffer "*Org Export Dispatcher*")))))))
-	 (action (car input))
-	 (optns (cdr input)))
-    (unless (memq 'subtree optns)
-      (move-marker org-export-dispatch-last-position nil))
-    (cl-case action
-      ;; First handle special hard-coded actions.
-      (template (org-export-insert-default-template nil optns))
-      (stack (org-export-stack))
-      (publish-current-file
-       (org-publish-current-file (memq 'force optns) (memq 'async optns)))
-      (publish-current-project
-       (org-publish-current-project (memq 'force optns) (memq 'async optns)))
-      (publish-choose-project
-       (org-publish (assoc (completing-read
-			    "Publish project: "
-			    org-publish-project-alist nil t)
-			   org-publish-project-alist)
-		    (memq 'force optns)
-		    (memq 'async optns)))
-      (publish-all (org-publish-all (memq 'force optns) (memq 'async optns)))
-      (otherwise
-       (save-excursion
-	 (when arg
-	   ;; Repeating command, maybe move cursor to restore subtree
-	   ;; context.
-	   (if (eq (marker-buffer org-export-dispatch-last-position)
-		   (org-base-buffer (current-buffer)))
-	       (goto-char org-export-dispatch-last-position)
-	     ;; We are in a different buffer, forget position.
-	     (move-marker org-export-dispatch-last-position nil)))
-	 (funcall action
-		  ;; Return a symbol instead of a list to ease
-		  ;; asynchronous export macro use.
-		  (and (memq 'async optns) t)
-		  (and (memq 'subtree optns) t)
-		  (and (memq 'visible optns) t)
-		  (and (memq 'body optns) t)))))))
-
-(defun org-export--dispatch-ui (options first-key expertp)
-  "Handle interface for `org-export-dispatch'.
-
-OPTIONS is a list containing current interactive options set for
-export.  It can contain any of the following symbols:
-`body'    toggles a body-only export
-`subtree' restricts export to current subtree
-`visible' restricts export to visible part of buffer.
-`force'   force publishing files.
-`async'   use asynchronous export process
-
-FIRST-KEY is the key pressed to select the first level menu.  It
-is nil when this menu hasn't been selected yet.
-
-EXPERTP, when non-nil, triggers expert UI.  In that case, no help
-buffer is provided, but indications about currently active
-options are given in the prompt.  Moreover, [?] allows switching
-back to standard interface."
-  (let* ((fontify-key
-	  (lambda (key &optional access-key)
-	    ;; Fontify KEY string.  Optional argument ACCESS-KEY, when
-	    ;; non-nil is the required first-level key to activate
-	    ;; KEY.  When its value is t, activate KEY independently
-	    ;; on the first key, if any.  A nil value means KEY will
-	    ;; only be activated at first level.
-	    (if (or (eq access-key t) (eq access-key first-key))
-		(propertize key 'face 'org-warning)
-	      key)))
-	 (fontify-value
-	  (lambda (value)
-	    ;; Fontify VALUE string.
-	    (propertize value 'face 'font-lock-variable-name-face)))
-	 ;; Prepare menu entries by extracting them from registered
-	 ;; back-ends and sorting them by access key and by ordinal,
-	 ;; if any.
-	 (entries
-	  (sort (sort (delq nil
-			    (mapcar #'org-export-backend-menu
-				    org-export-registered-backends))
-		      (lambda (a b)
-			(let ((key-a (nth 1 a))
-			      (key-b (nth 1 b)))
-			  (cond ((and (numberp key-a) (numberp key-b))
-				 (< key-a key-b))
-				((numberp key-b) t)))))
-		'car-less-than-car))
-	 ;; Compute a list of allowed keys based on the first key
-	 ;; pressed, if any.  Some keys
-	 ;; (?^B, ?^V, ?^S, ?^F, ?^A, ?&, ?# and ?q) are always
-	 ;; available.
-	 (allowed-keys
-	  (nconc (list 2 22 19 6 1)
-		 (if (not first-key) (org-uniquify (mapcar 'car entries))
-		   (let (sub-menu)
-		     (dolist (entry entries (sort (mapcar 'car sub-menu) '<))
-		       (when (eq (car entry) first-key)
-			 (setq sub-menu (append (nth 2 entry) sub-menu))))))
-		 (cond ((eq first-key ?P) (list ?f ?p ?x ?a))
-		       ((not first-key) (list ?P)))
-		 (list ?& ?#)
-		 (when expertp (list ??))
-		 (list ?q)))
-	 ;; Build the help menu for standard UI.
-	 (help
-	  (unless expertp
-	    (concat
-	     ;; Options are hard-coded.
-	     (format "[%s] Body only:    %s           [%s] Visible only:     %s
-\[%s] Export scope: %s       [%s] Force publishing: %s
-\[%s] Async export: %s\n\n"
-		     (funcall fontify-key "C-b" t)
-		     (funcall fontify-value
-			      (if (memq 'body options) "On " "Off"))
-		     (funcall fontify-key "C-v" t)
-		     (funcall fontify-value
-			      (if (memq 'visible options) "On " "Off"))
-		     (funcall fontify-key "C-s" t)
-		     (funcall fontify-value
-			      (if (memq 'subtree options) "Subtree" "Buffer "))
-		     (funcall fontify-key "C-f" t)
-		     (funcall fontify-value
-			      (if (memq 'force options) "On " "Off"))
-		     (funcall fontify-key "C-a" t)
-		     (funcall fontify-value
-			      (if (memq 'async options) "On " "Off")))
-	     ;; Display registered back-end entries.  When a key
-	     ;; appears for the second time, do not create another
-	     ;; entry, but append its sub-menu to existing menu.
-	     (let (last-key)
-	       (mapconcat
-		(lambda (entry)
-		  (let ((top-key (car entry)))
-		    (concat
-		     (unless (eq top-key last-key)
-		       (setq last-key top-key)
-		       (format "\n[%s] %s\n"
-			       (funcall fontify-key (char-to-string top-key))
-			       (nth 1 entry)))
-		     (let ((sub-menu (nth 2 entry)))
-		       (unless (functionp sub-menu)
-			 ;; Split sub-menu into two columns.
-			 (let ((index -1))
-			   (concat
-			    (mapconcat
-			     (lambda (sub-entry)
-			       (cl-incf index)
-			       (format
-				(if (zerop (mod index 2)) "    [%s] %-26s"
-				  "[%s] %s\n")
-				(funcall fontify-key
-					 (char-to-string (car sub-entry))
-					 top-key)
-				(nth 1 sub-entry)))
-			     sub-menu "")
-			    (when (zerop (mod index 2)) "\n"))))))))
-		entries ""))
-	     ;; Publishing menu is hard-coded.
-	     (format "\n[%s] Publish
-    [%s] Current file              [%s] Current project
-    [%s] Choose project            [%s] All projects\n\n\n"
-		     (funcall fontify-key "P")
-		     (funcall fontify-key "f" ?P)
-		     (funcall fontify-key "p" ?P)
-		     (funcall fontify-key "x" ?P)
-		     (funcall fontify-key "a" ?P))
-	     (format "[%s] Export stack                  [%s] Insert template\n"
-		     (funcall fontify-key "&" t)
-		     (funcall fontify-key "#" t))
-	     (format "[%s] %s"
-		     (funcall fontify-key "q" t)
-		     (if first-key "Main menu" "Exit")))))
-	 ;; Build prompts for both standard and expert UI.
-	 (standard-prompt (unless expertp "Export command: "))
-	 (expert-prompt
-	  (when expertp
-	    (format
-	     "Export command (C-%s%s%s%s%s) [%s]: "
-	     (if (memq 'body options) (funcall fontify-key "b" t) "b")
-	     (if (memq 'visible options) (funcall fontify-key "v" t) "v")
-	     (if (memq 'subtree options) (funcall fontify-key "s" t) "s")
-	     (if (memq 'force options) (funcall fontify-key "f" t) "f")
-	     (if (memq 'async options) (funcall fontify-key "a" t) "a")
-	     (mapconcat (lambda (k)
-			  ;; Strip control characters.
-			  (unless (< k 27) (char-to-string k)))
-			allowed-keys "")))))
-    ;; With expert UI, just read key with a fancy prompt.  In standard
-    ;; UI, display an intrusive help buffer.
-    (if expertp
-	(org-export--dispatch-action
-	 expert-prompt allowed-keys entries options first-key expertp)
-      ;; At first call, create frame layout in order to display menu.
-      (unless (get-buffer "*Org Export Dispatcher*")
-	(delete-other-windows)
-	(org-switch-to-buffer-other-window
-	 (get-buffer-create "*Org Export Dispatcher*"))
-	(setq cursor-type nil
-	      header-line-format "Use SPC, DEL, C-n or C-p to navigate.")
-	;; Make sure that invisible cursor will not highlight square
-	;; brackets.
-	(set-syntax-table (copy-syntax-table))
-	(modify-syntax-entry ?\[ "w"))
-      ;; At this point, the buffer containing the menu exists and is
-      ;; visible in the current window.  So, refresh it.
-      (with-current-buffer "*Org Export Dispatcher*"
-	;; Refresh help.  Maintain display continuity by re-visiting
-	;; previous window position.
-	(let ((pos (window-start)))
-	  (erase-buffer)
-	  (insert help)
-	  (set-window-start nil pos)))
-      (org-fit-window-to-buffer)
-      (org-export--dispatch-action
-       standard-prompt allowed-keys entries options first-key expertp))))
-
-(defun org-export--dispatch-action
-    (prompt allowed-keys entries options first-key expertp)
-  "Read a character from command input and act accordingly.
-
-PROMPT is the displayed prompt, as a string.  ALLOWED-KEYS is
-a list of characters available at a given step in the process.
-ENTRIES is a list of menu entries.  OPTIONS, FIRST-KEY and
-EXPERTP are the same as defined in `org-export--dispatch-ui',
-which see.
-
-Toggle export options when required.  Otherwise, return value is
-a list with action as CAR and a list of interactive export
-options as CDR."
-  (let (key)
-    ;; Scrolling: when in non-expert mode, act on motion keys (C-n,
-    ;; C-p, SPC, DEL).
-    (while (and (setq key (read-char-exclusive prompt))
-		(not expertp)
-		(memq key '(14 16 ?\s ?\d)))
-      (cl-case key
-	(14 (if (not (pos-visible-in-window-p (point-max)))
-		(ignore-errors (scroll-up 1))
-	      (message "End of buffer")
-	      (sit-for 1)))
-	(16 (if (not (pos-visible-in-window-p (point-min)))
-		(ignore-errors (scroll-down 1))
-	      (message "Beginning of buffer")
-	      (sit-for 1)))
-	(?\s (if (not (pos-visible-in-window-p (point-max)))
-		 (scroll-up nil)
-	       (message "End of buffer")
-	       (sit-for 1)))
-	(?\d (if (not (pos-visible-in-window-p (point-min)))
-		 (scroll-down nil)
-	       (message "Beginning of buffer")
-	       (sit-for 1)))))
-    (cond
-     ;; Ignore undefined associations.
-     ((not (memq key allowed-keys))
-      (ding)
-      (unless expertp (message "Invalid key") (sit-for 1))
-      (org-export--dispatch-ui options first-key expertp))
-     ;; q key at first level aborts export.  At second level, cancel
-     ;; first key instead.
-     ((eq key ?q) (if (not first-key) (error "Export aborted")
-		    (org-export--dispatch-ui options nil expertp)))
-     ;; Help key: Switch back to standard interface if expert UI was
-     ;; active.
-     ((eq key ??) (org-export--dispatch-ui options first-key nil))
-     ;; Send request for template insertion along with export scope.
-     ((eq key ?#) (cons 'template (memq 'subtree options)))
-     ;; Switch to asynchronous export stack.
-     ((eq key ?&) '(stack))
-     ;; Toggle options: C-b (2) C-v (22) C-s (19) C-f (6) C-a (1).
-     ((memq key '(2 22 19 6 1))
-      (org-export--dispatch-ui
-       (let ((option (cl-case key (2 'body) (22 'visible) (19 'subtree)
-			      (6 'force) (1 'async))))
-	 (if (memq option options) (remq option options)
-	   (cons option options)))
-       first-key expertp))
-     ;; Action selected: Send key and options back to
-     ;; `org-export-dispatch'.
-     ((or first-key (functionp (nth 2 (assq key entries))))
-      (cons (cond
-	     ((not first-key) (nth 2 (assq key entries)))
-	     ;; Publishing actions are hard-coded.  Send a special
-	     ;; signal to `org-export-dispatch'.
-	     ((eq first-key ?P)
-	      (cl-case key
-		(?f 'publish-current-file)
-		(?p 'publish-current-project)
-		(?x 'publish-choose-project)
-		(?a 'publish-all)))
-	     ;; Return first action associated to FIRST-KEY + KEY
-	     ;; path. Indeed, derived backends can share the same
-	     ;; FIRST-KEY.
-	     (t (catch 'found
-		  (dolist (entry (member (assq first-key entries) entries))
-		    (let ((match (assq key (nth 2 entry))))
-		      (when match (throw 'found (nth 2 match))))))))
-	    options))
-     ;; Otherwise, enter sub-menu.
-     (t (org-export--dispatch-ui options key expertp)))))
-
-
-
-(provide 'ox)
-
-;; Local variables:
-;; generated-autoload-file: "org-loaddefs.el"
-;; End:
-
-;;; ox.el ends here
diff --git a/elpa/org-9.1.14/ox.elc b/elpa/org-9.1.14/ox.elc
deleted file mode 100644
index fb5d1f9..0000000
--- a/elpa/org-9.1.14/ox.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/org-bullets-20180208.2343/org-bullets-autoloads.el b/elpa/org-bullets-20180208.2343/org-bullets-autoloads.el
deleted file mode 100644
index 127cbf7..0000000
--- a/elpa/org-bullets-20180208.2343/org-bullets-autoloads.el
+++ /dev/null
@@ -1,27 +0,0 @@
-;;; org-bullets-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "org-bullets" "org-bullets.el" (0 0 0 0))
-;;; Generated autoloads from org-bullets.el
-
-(autoload 'org-bullets-mode "org-bullets" "\
-Use UTF8 bullets in Org mode headings.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "org-bullets" '("org-bullets-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; org-bullets-autoloads.el ends here
diff --git a/elpa/org-bullets-20180208.2343/org-bullets-pkg.el b/elpa/org-bullets-20180208.2343/org-bullets-pkg.el
deleted file mode 100644
index d0d85e2..0000000
--- a/elpa/org-bullets-20180208.2343/org-bullets-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "org-bullets" "20180208.2343" "Show bullets in org-mode as UTF-8 characters" 'nil :commit "b56f2e3812626f2c4ac1686073d102c71f4a8513" :authors '(("sabof")) :maintainer '("Jonas Bernoulli" . "jonas@bernoul.li") :url "https://github.com/emacsorphanage/org-bullets")
diff --git a/elpa/org-bullets-20180208.2343/org-bullets.el b/elpa/org-bullets-20180208.2343/org-bullets.el
deleted file mode 100644
index fe7ffee..0000000
--- a/elpa/org-bullets-20180208.2343/org-bullets.el
+++ /dev/null
@@ -1,129 +0,0 @@
-;;; org-bullets.el --- Show bullets in org-mode as UTF-8 characters
-
-;; Version: 0.2.4
-;; Package-Version: 20180208.2343
-;; Author: sabof
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-;; Homepage: https://github.com/emacsorphanage/org-bullets
-
-;; This file is NOT part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; For a full copy of the GNU General Public License
-;; see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Show org-mode bullets as UTF-8 characters.
-
-;; Because the author is inactive, this package is currenlty being
-;; maintained at https://github.com/emacsorphanage/org-bullets.
-
-;;; Code:
-
-(defgroup org-bullets nil
-  "Display bullets as UTF-8 characters."
-  :group 'org-appearance)
-
-;; A nice collection of unicode bullets:
-;; http://nadeausoftware.com/articles/2007/11/latency_friendly_customized_bullets_using_unicode_characters
-(defcustom org-bullets-bullet-list
-  '(;;; Large
-    "◉"
-    "○"
-    "✸"
-    "✿"
-    ;; ♥ ● ◇ ✚ ✜ ☯ ◆ ♠ ♣ ♦ ☢ ❀ ◆ ◖ ▶
-    ;;; Small
-    ;; ► • ★ ▸
-    )
-  "List of bullets used in Org headings.
-It can contain any number of symbols, which will be repeated."
-  :group 'org-bullets
-  :type '(repeat (string :tag "Bullet character")))
-
-(defcustom org-bullets-face-name nil
-  "Face used for bullets in Org mode headings.
-If set to the name of a face, that face is used.
-Otherwise the face of the heading level is used."
-  :group 'org-bullets
-  :type 'symbol)
-
-(defvar org-bullets-bullet-map (make-sparse-keymap))
-
-(defun org-bullets-level-char (level)
-  (string-to-char
-   (nth (mod (1- level)
-             (length org-bullets-bullet-list))
-        org-bullets-bullet-list)))
-
-(defvar org-bullets--keywords
-  `(("^\\*+ "
-     (0 (let* ((level (- (match-end 0) (match-beginning 0) 1))
-               (is-inline-task
-                (and (boundp 'org-inlinetask-min-level)
-                     (>= level org-inlinetask-min-level))))
-          (compose-region (- (match-end 0) 2)
-                          (- (match-end 0) 1)
-                          (org-bullets-level-char level))
-          (when is-inline-task
-            (compose-region (- (match-end 0) 3)
-                            (- (match-end 0) 2)
-                            (org-bullets-level-char level)))
-          (when (facep org-bullets-face-name)
-            (put-text-property (- (match-end 0)
-                                  (if is-inline-task 3 2))
-                               (- (match-end 0) 1)
-                               'face
-                               org-bullets-face-name))
-          (put-text-property (match-beginning 0)
-                             (- (match-end 0) 2)
-                             'face (list :foreground
-                                         (face-attribute
-                                          'default :background)))
-          (put-text-property (match-beginning 0)
-                             (match-end 0)
-                             'keymap
-                             org-bullets-bullet-map)
-          nil)))))
-
-;;;###autoload
-(define-minor-mode org-bullets-mode
-  "Use UTF8 bullets in Org mode headings."
-  nil nil nil
-  (if org-bullets-mode
-      (progn
-        (font-lock-add-keywords nil org-bullets--keywords)
-        (org-bullets--fontify-buffer))
-    (save-excursion
-      (goto-char (point-min))
-      (font-lock-remove-keywords nil org-bullets--keywords)
-      (while (re-search-forward "^\\*+ " nil t)
-        (decompose-region (match-beginning 0) (match-end 0)))
-      (org-bullets--fontify-buffer))))
-
-(defun org-bullets--fontify-buffer ()
-  (when font-lock-mode
-    (if (and (fboundp 'font-lock-flush)
-             (fboundp 'font-lock-ensure))
-        (save-restriction
-          (widen)
-          (font-lock-flush)
-          (font-lock-ensure))
-      (with-no-warnings
-        (font-lock-fontify-buffer)))))
-
-(provide 'org-bullets)
-;; Local Variables:
-;; indent-tabs-mode: nil
-;; End:
-;;; org-bullets.el ends here
diff --git a/elpa/org-bullets-20180208.2343/org-bullets.elc b/elpa/org-bullets-20180208.2343/org-bullets.elc
deleted file mode 100644
index 09e4dc5..0000000
--- a/elpa/org-bullets-20180208.2343/org-bullets.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/pkg-info-20150517.1143/pkg-info-autoloads.el b/elpa/pkg-info-20150517.1143/pkg-info-autoloads.el
deleted file mode 100644
index 44ce6b5..0000000
--- a/elpa/pkg-info-20150517.1143/pkg-info-autoloads.el
+++ /dev/null
@@ -1,127 +0,0 @@
-;;; pkg-info-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "pkg-info" "pkg-info.el" (0 0 0 0))
-;;; Generated autoloads from pkg-info.el
-
-(autoload 'pkg-info-library-original-version "pkg-info" "\
-Get the original version in the header of LIBRARY.
-
-The original version is stored in the X-Original-Version header.
-This header is added by the MELPA package archive to preserve
-upstream version numbers.
-
-LIBRARY is either a symbol denoting a named feature, or a library
-name as string.
-
-If SHOW is non-nil, show the version in the minibuffer.
-
-Return the version from the header of LIBRARY as list.  Signal an
-error if the LIBRARY was not found or had no X-Original-Version
-header.
-
-See Info node `(elisp)Library Headers' for more information
-about library headers.
-
-\(fn LIBRARY &optional SHOW)" t nil)
-
-(autoload 'pkg-info-library-version "pkg-info" "\
-Get the version in the header of LIBRARY.
-
-LIBRARY is either a symbol denoting a named feature, or a library
-name as string.
-
-If SHOW is non-nil, show the version in the minibuffer.
-
-Return the version from the header of LIBRARY as list.  Signal an
-error if the LIBRARY was not found or had no proper header.
-
-See Info node `(elisp)Library Headers' for more information
-about library headers.
-
-\(fn LIBRARY &optional SHOW)" t nil)
-
-(autoload 'pkg-info-defining-library-original-version "pkg-info" "\
-Get the original version of the library defining FUNCTION.
-
-The original version is stored in the X-Original-Version header.
-This header is added by the MELPA package archive to preserve
-upstream version numbers.
-
-If SHOW is non-nil, show the version in mini-buffer.
-
-This function is mainly intended to find the version of a major
-or minor mode, i.e.
-
-   (pkg-info-defining-library-version 'flycheck-mode)
-
-Return the version of the library defining FUNCTION.  Signal an
-error if FUNCTION is not a valid function, if its defining
-library was not found, or if the library had no proper version
-header.
-
-\(fn FUNCTION &optional SHOW)" t nil)
-
-(autoload 'pkg-info-defining-library-version "pkg-info" "\
-Get the version of the library defining FUNCTION.
-
-If SHOW is non-nil, show the version in mini-buffer.
-
-This function is mainly intended to find the version of a major
-or minor mode, i.e.
-
-   (pkg-info-defining-library-version 'flycheck-mode)
-
-Return the version of the library defining FUNCTION.  Signal an
-error if FUNCTION is not a valid function, if its defining
-library was not found, or if the library had no proper version
-header.
-
-\(fn FUNCTION &optional SHOW)" t nil)
-
-(autoload 'pkg-info-package-version "pkg-info" "\
-Get the version of an installed PACKAGE.
-
-If SHOW is non-nil, show the version in the minibuffer.
-
-Return the version as list, or nil if PACKAGE is not installed.
-
-\(fn PACKAGE &optional SHOW)" t nil)
-
-(autoload 'pkg-info-version-info "pkg-info" "\
-Obtain complete version info for LIBRARY and PACKAGE.
-
-LIBRARY is a symbol denoting a named feature, or a library name
-as string.  PACKAGE is a symbol denoting an ELPA package.  If
-omitted or nil, default to LIBRARY.
-
-If SHOW is non-nil, show the version in the minibuffer.
-
-When called interactively, prompt for LIBRARY.  When called
-interactively with prefix argument, prompt for PACKAGE as well.
-
-Return a string with complete version information for LIBRARY.
-This version information contains the version from the headers of
-LIBRARY, and the version of the installed PACKAGE, the LIBRARY is
-part of.  If PACKAGE is not installed, or if the PACKAGE version
-is the same as the LIBRARY version, do not include a package
-version.
-
-\(fn LIBRARY &optional PACKAGE SHOW)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pkg-info" '("pkg-info-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; pkg-info-autoloads.el ends here
diff --git a/elpa/pkg-info-20150517.1143/pkg-info-pkg.el b/elpa/pkg-info-20150517.1143/pkg-info-pkg.el
deleted file mode 100644
index d4b90e1..0000000
--- a/elpa/pkg-info-20150517.1143/pkg-info-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "pkg-info" "20150517.1143" "Information about packages" '((epl "0.8")) :commit "76ba7415480687d05a4353b27fea2ae02b8d9d61" :keywords '("convenience") :authors '(("Sebastian Wiesner" . "swiesner@lunaryorn.com")) :maintainer '("Sebastian Wiesner" . "swiesner@lunaryorn.com") :url "https://github.com/lunaryorn/pkg-info.el")
diff --git a/elpa/pkg-info-20150517.1143/pkg-info.el b/elpa/pkg-info-20150517.1143/pkg-info.el
deleted file mode 100644
index e6a03a1..0000000
--- a/elpa/pkg-info-20150517.1143/pkg-info.el
+++ /dev/null
@@ -1,331 +0,0 @@
-;;; pkg-info.el --- Information about packages       -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2015  Sebastian Wiesner <swiesner@lunaryorn.com>
-
-;; Author: Sebastian Wiesner <swiesner@lunaryorn.com>
-;; URL: https://github.com/lunaryorn/pkg-info.el
-;; Package-Version: 20150517.1143
-;; Keywords: convenience
-;; Version: 0.7-cvs
-;; Package-Requires: ((epl "0.8"))
-
-;; This file is not part of GNU Emacs.
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This library extracts information from installed packages.
-
-;;;; Functions:
-
-;; `pkg-info-library-version' extracts the version from the header of a library.
-;;
-;; `pkg-info-defining-library-version' extracts the version from the header of a
-;;  library defining a function.
-;;
-;; `pkg-info-package-version' gets the version of an installed package.
-;;
-;; `pkg-info-format-version' formats a version list as human readable string.
-;;
-;; `pkg-info-version-info' returns complete version information for a specific
-;; package.
-;;
-;; `pkg-info-get-melpa-recipe' gets the MELPA recipe for a package.
-;;
-;; `pkg-info-get-melpa-fetcher' gets the fetcher used to build a package on
-;; MELPA.
-;;
-;; `pkg-info-wiki-package-p' determines whether a package was build from
-;; EmacsWiki on MELPA.
-
-;;; Code:
-
-(require 'epl)
-
-(require 'lisp-mnt)
-(require 'find-func)
-(require 'json)                         ; `json-read'
-(require 'url-http)                     ; `url-http-parse-response'
-
-(defvar url-http-end-of-headers)
-
-
-;;; Version information
-(defun pkg-info-format-version (version)
-  "Format VERSION as human-readable string.
-
-Return a human-readable string representing VERSION."
-  ;; XXX: Find a better, more flexible way of formatting?
-  (package-version-join version))
-
-(defsubst pkg-info--show-version-and-return (version show)
-  "Show and return VERSION.
-
-When SHOW is non-nil, show VERSION in minibuffer.
-
-Return VERSION."
-  (when show
-    (message (if (listp version) (pkg-info-format-version version) version)))
-  version)
-
-(defun pkg-info--read-library ()
-  "Read a library from minibuffer."
-  (completing-read "Load library: "
-                   (apply-partially 'locate-file-completion-table
-                                    load-path
-                                    (get-load-suffixes))))
-
-(defun pkg-info--read-function ()
-  "Read a function name from minibuffer."
-  (let ((input (completing-read "Function: " obarray #'boundp :require-match)))
-    (if (string= input "") nil (intern input))))
-
-(defun pkg-info--read-package ()
-  "Read a package name from minibuffer."
-  (let* ((installed (epl-installed-packages))
-         (names (sort (mapcar (lambda (pkg)
-                                (symbol-name (epl-package-name pkg)))
-                              installed)
-                      #'string<))
-         (default (car names)))
-    (completing-read "Installed package: " names nil 'require-match
-                     nil nil default)))
-
-(defun pkg-info-library-source (library)
-  "Get the source file of LIBRARY.
-
-LIBRARY is either a symbol denoting a named feature, or a library
-name as string.
-
-Return the source file of LIBRARY as string."
-  (find-library-name (if (symbolp library) (symbol-name library) library)))
-
-(defun pkg-info-defining-library (function)
-  "Get the source file of the library defining FUNCTION.
-
-FUNCTION is a function symbol.
-
-Return the file name of the library as string.  Signal an error
-if the library does not exist, or if the definition of FUNCTION
-was not found."
-  (unless (functionp function)
-    (signal 'wrong-type-argument (list 'functionp function)))
-  (let ((library (symbol-file function 'defun)))
-    (unless library
-      (error "Can't find definition of %s" function))
-    library))
-
-(defun pkg-info-x-original-version (file)
-  "Read the X-Original-Version header from FILE.
-
-Return the value as version list, or return nil if FILE lacks
-this header.  Signal an error, if the value of the header is not
-a valid version."
-  (let ((version-str (with-temp-buffer
-                       (insert-file-contents file)
-                       (lm-header "X-Original-Version"))))
-    (when version-str
-      (version-to-list version-str))))
-
-;;;###autoload
-(defun pkg-info-library-original-version (library &optional show)
-  "Get the original version in the header of LIBRARY.
-
-The original version is stored in the X-Original-Version header.
-This header is added by the MELPA package archive to preserve
-upstream version numbers.
-
-LIBRARY is either a symbol denoting a named feature, or a library
-name as string.
-
-If SHOW is non-nil, show the version in the minibuffer.
-
-Return the version from the header of LIBRARY as list.  Signal an
-error if the LIBRARY was not found or had no X-Original-Version
-header.
-
-See Info node `(elisp)Library Headers' for more information
-about library headers."
-  (interactive (list (pkg-info--read-library) t))
-  (let ((version (pkg-info-x-original-version
-                  (pkg-info-library-source library))))
-    (if version
-        (pkg-info--show-version-and-return version show)
-      (error "Library %s has no original version" library))))
-
-;;;###autoload
-(defun pkg-info-library-version (library &optional show)
-  "Get the version in the header of LIBRARY.
-
-LIBRARY is either a symbol denoting a named feature, or a library
-name as string.
-
-If SHOW is non-nil, show the version in the minibuffer.
-
-Return the version from the header of LIBRARY as list.  Signal an
-error if the LIBRARY was not found or had no proper header.
-
-See Info node `(elisp)Library Headers' for more information
-about library headers."
-  (interactive (list (pkg-info--read-library) t))
-  (let* ((source (pkg-info-library-source library))
-         (version (epl-package-version (epl-package-from-file source))))
-    (pkg-info--show-version-and-return version show)))
-
-;;;###autoload
-(defun pkg-info-defining-library-original-version (function &optional show)
-  "Get the original version of the library defining FUNCTION.
-
-The original version is stored in the X-Original-Version header.
-This header is added by the MELPA package archive to preserve
-upstream version numbers.
-
-If SHOW is non-nil, show the version in mini-buffer.
-
-This function is mainly intended to find the version of a major
-or minor mode, i.e.
-
-   (pkg-info-defining-library-version 'flycheck-mode)
-
-Return the version of the library defining FUNCTION.  Signal an
-error if FUNCTION is not a valid function, if its defining
-library was not found, or if the library had no proper version
-header."
-  (interactive (list (pkg-info--read-function) t))
-  (pkg-info-library-original-version (pkg-info-defining-library function) show))
-
-;;;###autoload
-(defun pkg-info-defining-library-version (function &optional show)
-  "Get the version of the library defining FUNCTION.
-
-If SHOW is non-nil, show the version in mini-buffer.
-
-This function is mainly intended to find the version of a major
-or minor mode, i.e.
-
-   (pkg-info-defining-library-version 'flycheck-mode)
-
-Return the version of the library defining FUNCTION.  Signal an
-error if FUNCTION is not a valid function, if its defining
-library was not found, or if the library had no proper version
-header."
-  (interactive (list (pkg-info--read-function) t))
-  (pkg-info-library-version (pkg-info-defining-library function) show))
-
-;;;###autoload
-(defun pkg-info-package-version (package &optional show)
-  "Get the version of an installed PACKAGE.
-
-If SHOW is non-nil, show the version in the minibuffer.
-
-Return the version as list, or nil if PACKAGE is not installed."
-  (interactive (list (pkg-info--read-package) t))
-  (let* ((name (if (stringp package) (intern package) package))
-         (package (car (epl-find-installed-packages name))))
-    (unless package
-      (error "Can't find installed package %s" name))
-    (pkg-info--show-version-and-return (epl-package-version package) show)))
-
-;;;###autoload
-(defun pkg-info-version-info (library &optional package show)
-  "Obtain complete version info for LIBRARY and PACKAGE.
-
-LIBRARY is a symbol denoting a named feature, or a library name
-as string.  PACKAGE is a symbol denoting an ELPA package.  If
-omitted or nil, default to LIBRARY.
-
-If SHOW is non-nil, show the version in the minibuffer.
-
-When called interactively, prompt for LIBRARY.  When called
-interactively with prefix argument, prompt for PACKAGE as well.
-
-Return a string with complete version information for LIBRARY.
-This version information contains the version from the headers of
-LIBRARY, and the version of the installed PACKAGE, the LIBRARY is
-part of.  If PACKAGE is not installed, or if the PACKAGE version
-is the same as the LIBRARY version, do not include a package
-version."
-  (interactive (list (pkg-info--read-library)
-                     (when current-prefix-arg
-                       (pkg-info--read-package))
-                     t))
-  (let* ((package (or package (if (stringp library) (intern library) library)))
-         (orig-version (condition-case nil
-                           (pkg-info-library-original-version library)
-                         (error nil)))
-         ;; If we have X-Original-Version, we assume that MELPA replaced the
-         ;; library version with its generated version, so we use the
-         ;; X-Original-Version header instead, and ignore the library version
-         ;; header
-         (lib-version (or orig-version (pkg-info-library-version library)))
-         (pkg-version (condition-case nil
-                          (pkg-info-package-version package)
-                        (error nil)))
-         (version (if (and pkg-version
-                           (not (version-list-= lib-version pkg-version)))
-                      (format "%s (package: %s)"
-                              (pkg-info-format-version lib-version)
-                              (pkg-info-format-version pkg-version))
-                    (pkg-info-format-version lib-version))))
-    (pkg-info--show-version-and-return version show)))
-
-(defconst pkg-info-melpa-recipe-url "http://melpa.org/recipes.json"
-  "The URL from which to fetch MELPA recipes.")
-
-(defvar pkg-info-melpa-recipes nil
-  "An alist of MELPA recipes.")
-
-(defun pkg-info-retrieve-melpa-recipes ()
-  "Retrieve MELPA recipes from MELPA archive."
-  (let ((buffer (url-retrieve-synchronously pkg-info-melpa-recipe-url)))
-    (with-current-buffer buffer
-      (unwind-protect
-          (let ((response-code (url-http-parse-response)))
-            (unless (equal response-code 200)
-              (error "Failed to retrieve MELPA recipes from %s (code %s)"
-                     pkg-info-melpa-recipe-url response-code))
-            (goto-char url-http-end-of-headers)
-            (json-read))
-        (when (and buffer (buffer-live-p buffer))
-          (kill-buffer buffer))))))
-
-(defun pkg-info-get-melpa-recipes ()
-  "Get MELPA recipes."
-  (setq pkg-info-melpa-recipes
-        (or pkg-info-melpa-recipes
-            (pkg-info-retrieve-melpa-recipes))))
-
-(defun pkg-info-get-melpa-recipe (package)
-  "Get the MELPA recipe for PACKAGE.
-
-Return nil if PACKAGE is not on MELPA."
-  (cdr (assq package (pkg-info-get-melpa-recipes))))
-
-(defun pkg-info-get-melpa-fetcher (package)
-  "Get the MELPA fetcher for PACKAGE."
-  (cdr (assq 'fetcher (pkg-info-get-melpa-recipe package))))
-
-(defun pkg-info-wiki-package-p (package)
-  "Determine whether PACKAGE is build from the EmacsWiki."
-  (equal (pkg-info-get-melpa-fetcher package) "wiki"))
-
-(provide 'pkg-info)
-
-;; Local Variables:
-;; indent-tabs-mode: nil
-;; coding: utf-8
-;; End:
-
-;;; pkg-info.el ends here
diff --git a/elpa/pkg-info-20150517.1143/pkg-info.elc b/elpa/pkg-info-20150517.1143/pkg-info.elc
deleted file mode 100644
index bfb9c88..0000000
--- a/elpa/pkg-info-20150517.1143/pkg-info.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/popup-20160709.1429/popup-autoloads.el b/elpa/popup-20160709.1429/popup-autoloads.el
deleted file mode 100644
index 8389b0a..0000000
--- a/elpa/popup-20160709.1429/popup-autoloads.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; popup-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "popup" "popup.el" (0 0 0 0))
-;;; Generated autoloads from popup.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "popup" '("popup-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; popup-autoloads.el ends here
diff --git a/elpa/popup-20160709.1429/popup-pkg.el b/elpa/popup-20160709.1429/popup-pkg.el
deleted file mode 100644
index f2c937f..0000000
--- a/elpa/popup-20160709.1429/popup-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "popup" "20160709.1429" "Visual Popup User Interface" '((cl-lib "0.5")) :commit "80829dd46381754639fb764da11c67235fe63282" :keywords '("lisp") :authors '(("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) :maintainer '("Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))
diff --git a/elpa/popup-20160709.1429/popup.el b/elpa/popup-20160709.1429/popup.el
deleted file mode 100644
index f112cba..0000000
--- a/elpa/popup-20160709.1429/popup.el
+++ /dev/null
@@ -1,1432 +0,0 @@
-;;; popup.el --- Visual Popup User Interface
-
-;; Copyright (C) 2009-2015  Tomohiro Matsuyama
-
-;; Author: Tomohiro Matsuyama <m2ym.pub@gmail.com>
-;; Keywords: lisp
-;; Package-Version: 20160709.1429
-;; Version: 0.5.3
-;; Package-Requires: ((cl-lib "0.5"))
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; popup.el is a visual popup user interface library for Emacs. This
-;; provides a basic API and common UI widgets such as popup tooltips
-;; and popup menus.
-;; See README.markdown for more information.
-
-;;; Code:
-
-(require 'cl-lib)
-
-(defconst popup-version "0.5.3")
-
-
-
-;;; Utilities
-
-(defun popup-calculate-max-width (max-width)
-  "Determines whether the width desired is
-character or window proportion based, And returns the result."
-  (cl-typecase max-width
-    (integer max-width)
-    (float (* (ceiling (/ (round (* max-width (window-width))) 10.0)) 10))))
-
-(defvar popup-use-optimized-column-computation t
-  "Use the optimized column computation routine.
-If there is a problem, please set it nil.")
-
-(defmacro popup-aif (test then &rest else)
-  "Anaphoric if."
-  (declare (indent 2))
-  `(let ((it ,test))
-     (if it ,then ,@else)))
-
-(defmacro popup-awhen (test &rest body)
-  "Anaphoric when."
-  (declare (indent 1))
-  `(let ((it ,test))
-     (when it ,@body)))
-
-(defun popup-x-to-string (x)
-  "Convert any object to string effeciently.
-This is faster than `prin1-to-string' in many cases."
-  (cl-typecase x
-    (string x)
-    (symbol (symbol-name x))
-    (integer (number-to-string x))
-    (float (number-to-string x))
-    (t (format "%s" x))))
-
-(defun popup-substring-by-width (string width)
-  "Return a cons cell of substring and remaining string by
-splitting with WIDTH."
-  ;; Expand tabs into 4 spaces
-  (setq string (replace-regexp-in-string "\t" "    " string))
-  (cl-loop with len = (length string)
-           with w = 0
-           for l from 0
-           for c in (append string nil)
-           while (<= (cl-incf w (char-width c)) width)
-           finally return
-           (if (< l len)
-               (cons (substring string 0 l) (substring string l))
-             (list string))))
-
-(defun popup-fill-string (string &optional width max-width justify squeeze)
-  "Split STRING into fixed width strings and return a cons cell
-like \(WIDTH . ROWS). Here, the car WIDTH indicates the actual
-maxim width of ROWS.
-
-The argument WIDTH specifies the width of filling each
-paragraph. WIDTH nil means don't perform any justification and
-word wrap. Note that this function doesn't add any padding
-characters at the end of each row.
-
-MAX-WIDTH, if WIDTH is nil, specifies the maximum number of
-columns.
-
-The optional fourth argument JUSTIFY specifies which kind of
-justification to do: `full', `left', `right', `center', or
-`none' (equivalent to nil).  A value of t means handle each
-paragraph as specified by its text properties.
-
-SQUEEZE nil means leave whitespaces other than line breaks
-untouched."
-  (if (eq width 0)
-      (error "Can't fill string with 0 width"))
-  (if width
-      (setq max-width width))
-  (with-temp-buffer
-    (let ((tab-width 4)
-          (fill-column width)
-          (left-margin 0)
-          (kinsoku-limit 1)
-          indent-tabs-mode
-          row rows)
-      (insert string)
-      (untabify (point-min) (point-max))
-      (if width
-          (fill-region (point-min) (point-max) justify (not squeeze)))
-      (goto-char (point-min))
-      (setq width 0)
-      (while (prog2
-                 (let ((line (buffer-substring
-                              (point) (progn (end-of-line) (point)))))
-                   (if max-width
-                       (while (progn
-                                (setq row (truncate-string-to-width line max-width)
-                                      width (max width (string-width row)))
-                                (push row rows)
-                                (if (not (= (length row) (length line)))
-                                    (setq line (substring line (length row))))))
-                     (setq width (max width (string-width line)))
-                     (push line rows)))
-                 (< (point) (point-max))
-               (beginning-of-line 2)))
-      (cons width (nreverse rows)))))
-
-(defmacro popup-save-buffer-state (&rest body)
-  (declare (indent 0))
-  `(save-excursion
-     (let ((buffer-undo-list t)
-           (inhibit-read-only t)
-           (modified (buffer-modified-p)))
-       (unwind-protect
-           (progn ,@body)
-         (set-buffer-modified-p modified)))))
-
-(defun popup-vertical-motion (column direction)
-  "A portable version of `vertical-motion'."
-  (if (>= emacs-major-version 23)
-      (vertical-motion (cons column direction))
-    (vertical-motion direction)
-    (move-to-column (+ (current-column) column))))
-
-(defun popup-last-line-of-buffer-p ()
-  "Return non-nil if the cursor is at the last line of the
-buffer."
-  (save-excursion (end-of-line) (/= (forward-line) 0)))
-
-(defun popup-lookup-key-by-event (function event)
-  (or (funcall function (vector event))
-      (if (symbolp event)
-          (popup-aif (get event 'event-symbol-element-mask)
-              (funcall function
-                       (vector (logior (or (get (car it) 'ascii-character)
-                                           0)
-                                       (cadr it))))))))
-
-
-
-;;; Core
-
-(defgroup popup nil
-  "Visual Popup User Interface"
-  :group 'lisp
-  :prefix "popup-")
-
-(defface popup-face
-  '((t (:inherit default :background "lightgray" :foreground "black")))
-  "Face for popup."
-  :group 'popup)
-
-(defface popup-summary-face
-  '((t (:inherit popup-face :foreground "dimgray")))
-  "Face for popup summary."
-  :group 'popup)
-
-(defface popup-scroll-bar-foreground-face
-  '((t (:background "black")))
-  "Foreground face for scroll-bar."
-  :group 'popup)
-
-(defface popup-scroll-bar-background-face
-  '((t (:background "gray")))
-  "Background face for scroll-bar."
-  :group 'popup)
-
-(defvar popup-instances nil
-  "Popup instances.")
-
-(defvar popup-scroll-bar-foreground-char
-  (propertize " " 'face 'popup-scroll-bar-foreground-face)
-  "Foreground character for scroll-bar.")
-
-(defvar popup-scroll-bar-background-char
-  (propertize " " 'face 'popup-scroll-bar-background-face)
-  "Background character for scroll-bar.")
-
-(cl-defstruct popup
-  point row column width height min-height direction overlays keymap
-  parent depth
-  face mouse-face selection-face summary-face
-  margin-left margin-right margin-left-cancel scroll-bar symbol
-  cursor offset scroll-top current-height list newlines
-  pattern original-list invis-overlays)
-
-(defun popup-item-propertize (item &rest properties)
-  "Same as `propertize' except that this avoids overriding
-existed value with `nil' property."
-  (cl-loop for (k v) on properties by 'cddr
-           if v append (list k v) into props
-           finally return
-           (apply 'propertize
-                  (popup-x-to-string item)
-                  props)))
-
-(defun popup-item-property (item property)
-  "Same as `get-text-property' except that this returns nil if
-ITEM is not string."
-  (if (stringp item)
-      (get-text-property 0 property item)))
-
-(cl-defun popup-make-item (name
-                           &key
-                           value
-                           face
-                           mouse-face
-                           selection-face
-                           sublist
-                           document
-                           symbol
-                           summary)
-  "Utility function to make popup item. See also
-`popup-item-propertize'."
-  (popup-item-propertize name
-                         'value value
-                         'popup-face face
-                         'popup-mouse-face mouse-face
-                         'selection-face selection-face
-                         'document document
-                         'symbol symbol
-                         'summary summary
-                         'sublist sublist))
-
-(defsubst popup-item-value (item)               (popup-item-property item 'value))
-(defsubst popup-item-value-or-self (item)       (or (popup-item-value item) item))
-(defsubst popup-item-face (item)                (popup-item-property item 'popup-face))
-(defsubst popup-item-mouse-face (item)          (popup-item-property item 'popup-mouse-face))
-(defsubst popup-item-selection-face (item)      (popup-item-property item 'selection-face))
-(defsubst popup-item-document (item)            (popup-item-property item 'document))
-(defsubst popup-item-summary (item)             (popup-item-property item 'summary))
-(defsubst popup-item-symbol (item)              (popup-item-property item 'symbol))
-(defsubst popup-item-sublist (item)             (popup-item-property item 'sublist))
-
-(defun popup-item-documentation (item)
-  (let ((doc (popup-item-document item)))
-    (if (functionp doc)
-        (setq doc (funcall doc (popup-item-value-or-self item))))
-    doc))
-
-(defun popup-item-show-help-1 (item)
-  (let ((doc (popup-item-documentation item)))
-    (when doc
-      (with-current-buffer (get-buffer-create " *Popup Help*")
-        (erase-buffer)
-        (insert doc)
-        (goto-char (point-min))
-        (display-buffer (current-buffer)))
-      t)))
-
-(defun popup-item-show-help-with-event-loop (item)
-  (save-window-excursion
-    (when (popup-item-show-help-1 item)
-      (cl-loop do (clear-this-command-keys)
-               for key = (read-key-sequence-vector nil)
-               do
-               (cl-case (key-binding key)
-                 (scroll-other-window
-                  (scroll-other-window))
-                 (scroll-other-window-down
-                  (scroll-other-window-down nil))
-                 (otherwise
-                  (setq unread-command-events (append key unread-command-events))
-                  (cl-return)))))))
-
-(defun popup-item-show-help (item &optional persist)
-  "Display the documentation of ITEM with `display-buffer'. If
-PERSIST is nil, the documentation buffer will be closed
-automatically, meaning interal event loop ensures the buffer to
-be closed. Otherwise, the buffer will be just displayed as
-usual."
-  (when item
-    (if (not persist)
-        (popup-item-show-help-with-event-loop item)
-      (popup-item-show-help-1 item))))
-
-(defun popup-set-list (popup list)
-  (popup-set-filtered-list popup list)
-  (setf (popup-pattern popup) nil)
-  (setf (popup-original-list popup) list))
-
-(defun popup-set-filtered-list (popup list)
-  (let ((offset
-         (if (> (popup-direction popup) 0)
-             0
-           (max (- (popup-height popup) (length list)) 0))))
-    (setf (popup-list popup) list
-          (popup-offset popup) offset)))
-
-(defun popup-selected-item (popup)
-  (nth (popup-cursor popup) (popup-list popup)))
-
-(defun popup-selected-line (popup)
-  (- (popup-cursor popup) (popup-scroll-top popup)))
-
-(defun popup-line-overlay (popup line)
-  (aref (popup-overlays popup) line))
-
-(defun popup-selected-line-overlay (popup)
-  (popup-line-overlay popup (popup-selected-line popup)))
-
-(defun popup-hide-line (popup line)
-  (let ((overlay (popup-line-overlay popup line)))
-    (overlay-put overlay 'display nil)
-    (overlay-put overlay 'after-string nil)))
-
-(defun popup-line-hidden-p (popup line)
-  (let ((overlay (popup-line-overlay popup line)))
-    (and (eq (overlay-get overlay 'display) nil)
-         (eq (overlay-get overlay 'after-string) nil))))
-
-(cl-defun popup-set-line-item (popup
-                               line
-                               &key
-                               item
-                               face
-                               mouse-face
-                               margin-left
-                               margin-right
-                               scroll-bar-char
-                               symbol
-                               summary
-                               summary-face
-                               keymap)
-  (let* ((overlay (popup-line-overlay popup line))
-         (content (popup-create-line-string popup (popup-x-to-string item)
-                                            :margin-left margin-left
-                                            :margin-right margin-right
-                                            :symbol symbol
-                                            :summary summary
-                                            :summary-face summary-face))
-         (start 0)
-         (prefix (overlay-get overlay 'prefix))
-         (postfix (overlay-get overlay 'postfix))
-         end)
-    (put-text-property 0 (length content) 'popup-item item content)
-    (put-text-property 0 (length content) 'keymap keymap content)
-    ;; Overlap face properties
-    (when (get-text-property start 'face content)
-      (setq start (next-single-property-change start 'face content)))
-    (while (and start (setq end (next-single-property-change start 'face content)))
-      (put-text-property start end 'face face content)
-      (setq start (next-single-property-change end 'face content)))
-    (when start
-      (put-text-property start (length content) 'face face content))
-    (when mouse-face
-      (put-text-property 0 (length content) 'mouse-face mouse-face content))
-    (let ((prop (if (overlay-get overlay 'dangle)
-                    'after-string
-                  'display)))
-      (overlay-put overlay
-                   prop
-                   (concat prefix
-                           content
-                           scroll-bar-char
-                           postfix)))))
-
-(cl-defun popup-create-line-string (popup
-                                    string
-                                    &key
-                                    margin-left
-                                    margin-right
-                                    symbol
-                                    summary
-                                    summary-face)
-  (let* ((popup-width (popup-width popup))
-         (summary-width (string-width summary))
-         (content-width (max
-                         (min popup-width (string-width string))
-                         (- popup-width
-                            (if (> summary-width 0)
-                                (+ summary-width 2)
-                              0))))
-         (string (car (popup-substring-by-width string content-width)))
-         (string-width (string-width string))
-         (spacing (max (- popup-width string-width summary-width)
-                       (if (> popup-width string-width) 1 0)))
-         (truncated-summary
-          (car (popup-substring-by-width
-                summary (max (- popup-width string-width spacing) 0)))))
-    (when summary-face
-      (put-text-property 0 (length truncated-summary)
-                         'face summary-face truncated-summary))
-    (concat margin-left
-            string
-            (make-string spacing ? )
-            truncated-summary
-            symbol
-            margin-right)))
-
-(defun popup-live-p (popup)
-  "Return non-nil if POPUP is alive."
-  (and popup (popup-overlays popup) t))
-
-(defun popup-child-point (popup &optional offset)
-  (overlay-end
-   (popup-line-overlay
-    popup
-    (or offset
-        (popup-selected-line popup)))))
-
-(defun popup-calculate-direction (height row)
-  "Return a proper direction when displaying a popup on this
-window. HEIGHT is the a height of the popup, and ROW is a line
-number at the point."
-  (let* ((remaining-rows (- (max 1 (- (window-height)
-                                      (if mode-line-format 1 0)
-                                      (if header-line-format 1 0)))
-                            (count-lines (window-start) (point))))
-         (enough-space-above (> row height))
-         (enough-space-below (<= height remaining-rows)))
-    (if (and enough-space-above
-             (not enough-space-below))
-        -1
-      1)))
-
-(cl-defun popup-create (point
-                        width
-                        height
-                        &key
-                        min-height
-                        max-width
-                        around
-                        (face 'popup-face)
-                        mouse-face
-                        (selection-face face)
-                        (summary-face 'popup-summary-face)
-                        scroll-bar
-                        margin-left
-                        margin-right
-                        symbol
-                        parent
-                        parent-offset
-                        keymap)
-  "Create a popup instance at POINT with WIDTH and HEIGHT.
-
-MIN-HEIGHT is a minimal height of the popup. The default value is
-0.
-
-MAX-WIDTH is the maximum width of the popup. The default value is
-nil (no limit). If a floating point, the value refers to the ratio of
-the window. If an integer, limit is in characters.
-
-If AROUND is non-nil, the popup will be displayed around the
-point but not at the point.
-
-FACE is a background face of the popup. The default value is POPUP-FACE.
-
-SELECTION-FACE is a foreground (selection) face of the popup The
-default value is POPUP-FACE.
-
-If SCROLL-BAR is non-nil, the popup will have a scroll bar at the
-right.
-
-If MARGIN-LEFT is non-nil, the popup will have a margin at the
-left.
-
-If MARGIN-RIGHT is non-nil, the popup will have a margin at the
-right.
-
-SYMBOL is a single character which indicates a kind of the item.
-
-PARENT is a parent popup instance. If PARENT is omitted, the
-popup will be a root instance.
-
-PARENT-OFFSET is a row offset from the parent popup.
-
-KEYMAP is a keymap that will be put on the popup contents."
-  (or margin-left (setq margin-left 0))
-  (or margin-right (setq margin-right 0))
-  (unless point
-    (setq point
-          (if parent (popup-child-point parent parent-offset) (point))))
-  (when max-width
-    (setq width (min width (popup-calculate-max-width max-width))))
-  (save-excursion
-    (goto-char point)
-    (let* ((col-row (posn-col-row (posn-at-point)))
-           (row (cdr col-row))
-           (column (car col-row))
-           (overlays (make-vector height nil))
-           (popup-width (+ width
-                           (if scroll-bar 1 0)
-                           margin-left
-                           margin-right
-                           (if symbol 2 0)))
-           margin-left-cancel
-           (window (selected-window))
-           (window-start (window-start))
-           (window-hscroll (window-hscroll))
-           (window-width (window-width))
-           (right (+ column popup-width))
-           (overflow (and (> right window-width)
-                          (>= right popup-width)))
-           (foldable (and (null parent)
-                          (>= column popup-width)))
-           (direction (or
-                       ;; Currently the direction of cascade popup won't be changed
-                       (and parent (popup-direction parent))
-
-                       ;; Calculate direction
-                       (popup-calculate-direction height row)))
-           (depth (if parent (1+ (popup-depth parent)) 0))
-           (newlines (max 0 (+ (- height (count-lines point (point-max))) (if around 1 0))))
-           invis-overlays
-           current-column)
-      ;; Case: no newlines at the end of the buffer
-      (when (> newlines 0)
-        (popup-save-buffer-state
-          (goto-char (point-max))
-          (insert (make-string newlines ?\n))))
-
-      ;; Case: the popup overflows
-      (if overflow
-          (if foldable
-              (progn
-                (cl-decf column (- popup-width margin-left margin-right))
-                (unless around (move-to-column column)))
-            (when (not truncate-lines)
-              ;; Truncate.
-              (let ((d (1+ (- popup-width (- window-width column)))))
-                (cl-decf popup-width d)
-                (cl-decf width d)))
-            (cl-decf column margin-left))
-        (cl-decf column margin-left))
-
-      ;; Case: no space at the left
-      (when (and (null parent)
-                 (< column 0))
-        ;; Cancel margin left
-        (setq column 0)
-        (cl-decf popup-width margin-left)
-        (setq margin-left-cancel t))
-
-      (dotimes (i height)
-        (let (overlay begin w (dangle t) (prefix "") (postfix ""))
-          (when around
-            (popup-vertical-motion column direction))
-          (cl-loop for ov in (overlays-in (save-excursion
-                                            (beginning-of-visual-line)
-                                            (point))
-                                          (save-excursion
-                                            (end-of-visual-line)
-                                            (point)))
-                   when (and (not (overlay-get ov 'popup))
-                             (not (overlay-get ov 'popup-item))
-                             (or (overlay-get ov 'invisible)
-                                 (overlay-get ov 'display)))
-                   do (progn
-                        (push (list ov (overlay-get ov 'display)) invis-overlays)
-                        (overlay-put ov 'display "")))
-          (setq around t)
-          (setq current-column (car (posn-col-row (posn-at-point))))
-
-          (when (< current-column column)
-            ;; Extend short buffer lines by popup prefix (line of spaces)
-            (setq prefix (make-string
-                          (+ (if (= current-column 0)
-                                 (- window-hscroll current-column)
-                               0)
-                             (- column current-column))
-                          ? )))
-
-          (setq begin (point))
-          (setq w (+ popup-width (length prefix)))
-          (while (and (not (eolp)) (> w 0))
-            (setq dangle nil)
-            (cl-decf w (char-width (char-after)))
-            (forward-char))
-          (if (< w 0)
-              (setq postfix (make-string (- w) ? )))
-
-          (setq overlay (make-overlay begin (point)))
-          (overlay-put overlay 'popup t)
-          (overlay-put overlay 'window window)
-          (overlay-put overlay 'dangle dangle)
-          (overlay-put overlay 'prefix prefix)
-          (overlay-put overlay 'postfix postfix)
-          (overlay-put overlay 'width width)
-          (aset overlays
-                (if (> direction 0) i (- height i 1))
-                overlay)))
-      (cl-loop for p from (- 10000 (* depth 1000))
-               for overlay in (nreverse (append overlays nil))
-               do (overlay-put overlay 'priority p))
-      (let ((it (make-popup :point point
-                            :row row
-                            :column column
-                            :width width
-                            :height height
-                            :min-height min-height
-                            :direction direction
-                            :parent parent
-                            :depth depth
-                            :face face
-                            :mouse-face mouse-face
-                            :selection-face selection-face
-                            :summary-face summary-face
-                            :margin-left margin-left
-                            :margin-right margin-right
-                            :margin-left-cancel margin-left-cancel
-                            :scroll-bar scroll-bar
-                            :symbol symbol
-                            :cursor 0
-                            :offset 0
-                            :scroll-top 0
-                            :current-height 0
-                            :list nil
-                            :newlines newlines
-                            :overlays overlays
-                            :invis-overlays invis-overlays
-                            :keymap keymap)))
-        (push it popup-instances)
-        it))))
-
-(defun popup-delete (popup)
-  "Delete POPUP instance."
-  (when (popup-live-p popup)
-    (popup-hide popup)
-    (mapc 'delete-overlay (popup-overlays popup))
-    (setf (popup-overlays popup) nil)
-    (setq popup-instances (delq popup popup-instances))
-    ;; Restore newlines state
-    (let ((newlines (popup-newlines popup)))
-      (when (> newlines 0)
-        (popup-save-buffer-state
-          (goto-char (point-max))
-          (dotimes (i newlines)
-            (if (and (char-before)
-                     (= (char-before) ?\n))
-                (delete-char -1)))))))
-  nil)
-
-(defun popup-draw (popup)
-  "Draw POPUP."
-  (cl-loop for (ov olddisplay) in (popup-invis-overlays popup)
-           do (overlay-put ov 'display ""))
-
-  (cl-loop with height = (popup-height popup)
-           with min-height = (popup-min-height popup)
-           with popup-face = (popup-face popup)
-           with mouse-face = (popup-mouse-face popup)
-           with selection-face = (popup-selection-face popup)
-           with summary-face-0 = (popup-summary-face popup)
-           with list = (popup-list popup)
-           with length = (length list)
-           with thum-size = (max (/ (* height height) (max length 1)) 1)
-           with page-size = (/ (+ 0.0 (max length 1)) height)
-           with scroll-bar = (popup-scroll-bar popup)
-           with margin-left = (make-string (if (popup-margin-left-cancel popup) 0 (popup-margin-left popup)) ? )
-           with margin-right = (make-string (popup-margin-right popup) ? )
-           with symbol = (popup-symbol popup)
-           with cursor = (popup-cursor popup)
-           with scroll-top = (popup-scroll-top popup)
-           with offset = (popup-offset popup)
-           with keymap = (popup-keymap popup)
-           for o from offset
-           for i from scroll-top
-           while (< o height)
-           for item in (nthcdr scroll-top list)
-           for page-index = (* thum-size (/ o thum-size))
-           for face = (if (= i cursor)
-                          (or (popup-item-selection-face item) selection-face)
-                        (or (popup-item-face item) popup-face))
-           for summary-face = (unless (= i cursor) summary-face-0)
-           for empty-char = (propertize " " 'face face)
-           for scroll-bar-char = (if scroll-bar
-                                     (cond
-                                      ((and (not (eq scroll-bar :always))
-                                            (<= page-size 1))
-                                       empty-char)
-                                      ((and (> page-size 1)
-                                            (>= cursor (* page-index page-size))
-                                            (< cursor (* (+ page-index thum-size) page-size)))
-                                       popup-scroll-bar-foreground-char)
-                                      (t
-                                       popup-scroll-bar-background-char))
-                                   "")
-           for sym = (if symbol
-                         (concat " " (or (popup-item-symbol item) " "))
-                       "")
-           for summary = (or (popup-item-summary item) "")
-
-           do
-           ;; Show line and set item to the line
-           (popup-set-line-item popup o
-                                :item item
-                                :face face
-                                :mouse-face mouse-face
-                                :margin-left margin-left
-                                :margin-right margin-right
-                                :scroll-bar-char scroll-bar-char
-                                :symbol sym
-                                :summary summary
-                                :summary-face summary-face
-                                :keymap keymap)
-
-           finally
-           ;; Remember current height
-           (setf (popup-current-height popup) (- o offset))
-
-           ;; Hide remaining lines
-           (let ((scroll-bar-char (if scroll-bar (propertize " " 'face popup-face) ""))
-                 (symbol (if symbol " " "")))
-             (if (> (popup-direction popup) 0)
-                 (progn
-                   (when min-height
-                     (while (< o min-height)
-                       (popup-set-line-item popup o
-                                            :item ""
-                                            :face popup-face
-                                            :margin-left margin-left
-                                            :margin-right margin-right
-                                            :scroll-bar-char scroll-bar-char
-                                            :symbol symbol
-                                            :summary "")
-                       (cl-incf o)))
-                   (while (< o height)
-                     (popup-hide-line popup o)
-                     (cl-incf o)))
-               (cl-loop with h = (if min-height (- height min-height) offset)
-                        for o from 0 below offset
-                        if (< o h)
-                        do (popup-hide-line popup o)
-                        if (>= o h)
-                        do (popup-set-line-item popup o
-                                                :item ""
-                                                :face popup-face
-                                                :margin-left margin-left
-                                                :margin-right margin-right
-                                                :scroll-bar-char scroll-bar-char
-                                                :symbol symbol
-                                                :summary ""))))))
-
-(defun popup-hide (popup)
-  "Hide POPUP."
-  (cl-loop for (ov olddisplay) in (popup-invis-overlays popup)
-           do (overlay-put ov 'display olddisplay))
-  (dotimes (i (popup-height popup))
-    (popup-hide-line popup i)))
-
-(defun popup-hidden-p (popup)
-  "Return non-nil if POPUP is hidden."
-  (let ((hidden t))
-    (when (popup-live-p popup)
-      (dotimes (i (popup-height popup))
-        (unless (popup-line-hidden-p popup i)
-          (setq hidden nil))))
-    hidden))
-
-(defun popup-jump (popup cursor)
-  "Jump to a position specified by CURSOR of POPUP and draw."
-  (let ((scroll-top (popup-scroll-top popup)))
-    ;; Do not change page as much as possible.
-    (unless (and (<= scroll-top cursor)
-                 (< cursor (+ scroll-top (popup-height popup))))
-      (setf (popup-scroll-top popup) cursor))
-    (setf (popup-cursor popup) cursor)
-    (popup-draw popup)))
-
-(defun popup-select (popup i)
-  "Select the item at I of POPUP and draw."
-  (setq i (+ i (popup-offset popup)))
-  (when (and (<= 0 i) (< i (popup-height popup)))
-    (setf (popup-cursor popup) i)
-    (popup-draw popup)
-    t))
-
-(defun popup-next (popup)
-  "Select the next item of POPUP and draw."
-  (let ((height (popup-height popup))
-        (cursor (1+ (popup-cursor popup)))
-        (scroll-top (popup-scroll-top popup))
-        (length (length (popup-list popup))))
-    (cond
-     ((>= cursor length)
-      ;; Back to first page
-      (setq cursor 0
-            scroll-top 0))
-     ((= cursor (+ scroll-top height))
-      ;; Go to next page
-      (setq scroll-top (min (1+ scroll-top) (max (- length height) 0)))))
-    (setf (popup-cursor popup) cursor
-          (popup-scroll-top popup) scroll-top)
-    (popup-draw popup)))
-
-(defun popup-previous (popup)
-  "Select the previous item of POPUP and draw."
-  (let ((height (popup-height popup))
-        (cursor (1- (popup-cursor popup)))
-        (scroll-top (popup-scroll-top popup))
-        (length (length (popup-list popup))))
-    (cond
-     ((< cursor 0)
-      ;; Go to last page
-      (setq cursor (1- length)
-            scroll-top (max (- length height) 0)))
-     ((= cursor (1- scroll-top))
-      ;; Go to previous page
-      (cl-decf scroll-top)))
-    (setf (popup-cursor popup) cursor
-          (popup-scroll-top popup) scroll-top)
-    (popup-draw popup)))
-
-(defun popup-page-next (popup)
-  "Select next item of POPUP per `popup-height' range.
-Pages down through POPUP."
-  (dotimes (counter (1- (popup-height popup)))
-    (popup-next popup)))
-
-(defun popup-page-previous (popup)
-  "Select previous item of POPUP per `popup-height' range.
-Pages up through POPUP."
-  (dotimes (counter (1- (popup-height popup)))
-    (popup-previous popup)))
-
-(defun popup-scroll-down (popup &optional n)
-  "Scroll down N of POPUP and draw."
-  (let ((scroll-top (min (+ (popup-scroll-top popup) (or n 1))
-                         (- (length (popup-list popup)) (popup-height popup)))))
-    (setf (popup-cursor popup) scroll-top
-          (popup-scroll-top popup) scroll-top)
-    (popup-draw popup)))
-
-(defun popup-scroll-up (popup &optional n)
-  "Scroll up N of POPUP and draw."
-  (let ((scroll-top (max (- (popup-scroll-top popup) (or n 1))
-                         0)))
-    (setf (popup-cursor popup) scroll-top
-          (popup-scroll-top popup) scroll-top)
-    (popup-draw popup)))
-
-
-
-;;; Popup Incremental Search
-
-(defface popup-isearch-match
-  '((t (:inherit default :background "sky blue")))
-  "Popup isearch match face."
-  :group 'popup)
-
-(defvar popup-isearch-cursor-color "blue")
-
-(defvar popup-isearch-keymap
-  (let ((map (make-sparse-keymap)))
-    ;(define-key map "\r"        'popup-isearch-done)
-    (define-key map "\C-g"      'popup-isearch-cancel)
-    (define-key map "\C-b"      'popup-isearch-close)
-    (define-key map [left]      'popup-isearch-close)
-    (define-key map "\C-h"      'popup-isearch-delete)
-    (define-key map (kbd "DEL") 'popup-isearch-delete)
-    (define-key map (kbd "C-y") 'popup-isearch-yank)
-    map))
-
-(defvar popup-menu-show-quick-help-function 'popup-menu-show-quick-help
-  "Function used for showing quick help by `popup-menu*'.")
-
-(defcustom popup-isearch-regexp-builder-function #'regexp-quote
-  "Function used to construct a regexp from a pattern. You may for instance
-  provide a function that replaces spaces by '.+' if you like helm or ivy style
-  of completion."
-  :type 'function)
-
-(defsubst popup-isearch-char-p (char)
-  (and (integerp char)
-       (<= 32 char)
-       (<= char 126)))
-
-(defun popup-isearch-filter-list (pattern list)
-  (cl-loop with regexp = (funcall popup-isearch-regexp-builder-function pattern)
-           for item in list
-           do
-           (unless (stringp item)
-             (setq item (popup-item-propertize (popup-x-to-string item)
-                                               'value item)))
-           if (string-match regexp item)
-           collect
-           (let ((beg (match-beginning 0))
-                 (end (match-end 0)))
-             (alter-text-property 0 (length item) 'face
-                                  (lambda (prop)
-                                    (unless (eq prop 'popup-isearch-match)
-                                      prop))
-                                  item)
-             (put-text-property beg end
-                                'face 'popup-isearch-match
-                                item)
-             item)))
-
-(defun popup-isearch-prompt (popup pattern)
-  (format "Pattern: %s" (if (= (length (popup-list popup)) 0)
-                            (propertize pattern 'face 'isearch-fail)
-                          pattern)))
-
-(defun popup-isearch-update (popup filter pattern &optional callback)
-  (setf (popup-cursor popup) 0
-        (popup-scroll-top popup) 0
-        (popup-pattern popup) pattern)
-  (let ((list (funcall filter pattern (popup-original-list popup))))
-    (popup-set-filtered-list popup list)
-    (if callback
-        (funcall callback list)))
-  (popup-draw popup))
-
-(cl-defun popup-isearch (popup
-                         &key
-                         (filter 'popup-isearch-filter-list)
-                         (cursor-color popup-isearch-cursor-color)
-                         (keymap popup-isearch-keymap)
-                         callback
-                         help-delay)
-  "Start isearch on POPUP. This function is synchronized, meaning
-event loop waits for quiting of isearch.
-
-FILTER is function with two argumenst to perform popup items filtering.
-
-CURSOR-COLOR is a cursor color during isearch. The default value
-is `popup-isearch-cursor-color'.
-
-KEYMAP is a keymap which is used when processing events during
-event loop. The default value is `popup-isearch-keymap'.
-
-CALLBACK is a function taking one argument. `popup-isearch' calls
-CALLBACK, if specified, after isearch finished or isearch
-canceled. The arguments is whole filtered list of items.
-
-HELP-DELAY is a delay of displaying helps."
-  (let ((list (popup-original-list popup))
-        (pattern (or (popup-pattern popup) ""))
-        (old-cursor-color (frame-parameter (selected-frame) 'cursor-color))
-        prompt key binding)
-    (unwind-protect
-        (cl-block nil
-          (if cursor-color
-              (set-cursor-color cursor-color))
-          (while t
-            (setq prompt (popup-isearch-prompt popup pattern))
-            (setq key (popup-menu-read-key-sequence keymap prompt help-delay))
-            (if (null key)
-                (unless (funcall popup-menu-show-quick-help-function popup nil :prompt prompt)
-                  (clear-this-command-keys)
-                  (push (read-event prompt) unread-command-events))
-              (setq binding (lookup-key keymap key))
-              (cond
-               ((and (stringp key)
-                     (popup-isearch-char-p (aref key 0)))
-                (setq pattern (concat pattern key)))
-               ((eq binding 'popup-isearch-done)
-                (cl-return nil))
-               ((eq binding 'popup-isearch-cancel)
-                (popup-isearch-update popup filter "" callback)
-                (cl-return t))
-               ((eq binding 'popup-isearch-close)
-                (popup-isearch-update popup filter "" callback)
-                (setq unread-command-events
-                      (append (listify-key-sequence key) unread-command-events))
-                (cl-return nil))
-               ((eq binding 'popup-isearch-delete)
-                (if (> (length pattern) 0)
-                    (setq pattern (substring pattern 0 (1- (length pattern))))))
-               ((eq binding 'popup-isearch-yank)
-                (popup-isearch-update popup filter (car kill-ring) callback)
-                (cl-return nil))
-               (t
-                (setq unread-command-events
-                      (append (listify-key-sequence key) unread-command-events))
-                (cl-return nil)))
-              (popup-isearch-update popup filter pattern callback))))
-      (if old-cursor-color
-          (set-cursor-color old-cursor-color)))))
-
-
-
-;;; Popup Tip
-
-(defface popup-tip-face
-  '((t (:background "khaki1" :foreground "black")))
-  "Face for popup tip."
-  :group 'popup)
-
-(defvar popup-tip-max-width 80)
-
-(cl-defun popup-tip (string
-                     &key
-                     point
-                     (around t)
-                     width
-                     (height 15)
-                     min-height
-                     max-width
-                     truncate
-                     margin
-                     margin-left
-                     margin-right
-                     scroll-bar
-                     parent
-                     parent-offset
-                     nowait
-                     nostrip
-                     prompt
-                     &aux tip lines)
-  "Show a tooltip of STRING at POINT. This function is
-synchronized unless NOWAIT specified. Almost all arguments are
-the same as in `popup-create', except for TRUNCATE, NOWAIT, and
-PROMPT.
-
-If TRUNCATE is non-nil, the tooltip can be truncated.
-
-If NOWAIT is non-nil, this function immediately returns the
-tooltip instance without entering event loop.
-
-If `NOSTRIP` is non-nil, `STRING` properties are not stripped.
-
-PROMPT is a prompt string when reading events during event loop."
-  (if (bufferp string)
-      (setq string (with-current-buffer string (buffer-string))))
-
-  (unless nostrip
-    ;; TODO strip text (mainly face) properties
-    (setq string (substring-no-properties string)))
-
-  (and (eq margin t) (setq margin 1))
-  (or margin-left (setq margin-left margin))
-  (or margin-right (setq margin-right margin))
-
-  (let ((it (popup-fill-string string width popup-tip-max-width)))
-    (setq width (car it)
-          lines (cdr it)))
-
-  (setq tip (popup-create point width height
-                          :min-height min-height
-                          :max-width max-width
-                          :around around
-                          :margin-left margin-left
-                          :margin-right margin-right
-                          :scroll-bar scroll-bar
-                          :face 'popup-tip-face
-                          :parent parent
-                          :parent-offset parent-offset))
-
-  (unwind-protect
-      (when (> (popup-width tip) 0)                   ; not to be corrupted
-        (when (and (not (eq width (popup-width tip))) ; truncated
-                   (not truncate))
-          ;; Refill once again to lines be fitted to popup width
-          (setq width (popup-width tip))
-          (setq lines (cdr (popup-fill-string string width width))))
-
-        (popup-set-list tip lines)
-        (popup-draw tip)
-        (if nowait
-            tip
-          (clear-this-command-keys)
-          (push (read-event prompt) unread-command-events)
-          t))
-    (unless nowait
-      (popup-delete tip))))
-
-
-
-;;; Popup Menu
-
-(defface popup-menu-face
-  '((t (:inherit popup-face)))
-  "Face for popup menu."
-  :group 'popup)
-
-(defface popup-menu-mouse-face
-  '((t (:background "blue" :foreground "white")))
-  "Face for popup menu."
-  :group 'popup)
-
-(defface popup-menu-selection-face
-  '((t (:inherit default :background "steelblue" :foreground "white")))
-  "Face for popup menu selection."
-  :group 'popup)
-
-(defface popup-menu-summary-face
-  '((t (:inherit popup-summary-face)))
-  "Face for popup summary."
-  :group 'popup)
-
-(defvar popup-menu-show-tip-function 'popup-tip
-  "Function used for showing tooltip by `popup-menu-show-quick-help'.")
-
-(defun popup-menu-show-help (menu &optional persist item)
-  (popup-item-show-help (or item (popup-selected-item menu)) persist))
-
-(defun popup-menu-documentation (menu &optional item)
-  (popup-item-documentation (or item (popup-selected-item menu))))
-
-(defun popup-menu-show-quick-help (menu &optional item &rest args)
-  (let* ((point (plist-get args :point))
-         (height (or (plist-get args :height) (popup-height menu)))
-         (min-height (min height (popup-current-height menu)))
-         (around nil)
-         (parent-offset (popup-offset menu))
-         (doc (popup-menu-documentation menu item)))
-    (when (stringp doc)
-      (if (popup-hidden-p menu)
-          (setq around t
-                menu nil
-                parent-offset nil)
-        (setq point nil))
-      (let ((popup-use-optimized-column-computation nil)) ; To avoid wrong positioning
-        (apply popup-menu-show-tip-function
-               doc
-               :point point
-               :height height
-               :min-height min-height
-               :around around
-               :parent menu
-               :parent-offset parent-offset
-               args)))))
-
-(defun popup-menu-item-of-mouse-event (event)
-  (when (and (consp event)
-             (memq (cl-first event) '(mouse-1 mouse-2 mouse-3 mouse-4 mouse-5)))
-    (let* ((position (cl-second event))
-           (object (elt position 4)))
-      (when (consp object)
-        (get-text-property (cdr object) 'popup-item (car object))))))
-
-(defun popup-menu-read-key-sequence (keymap &optional prompt timeout)
-  (catch 'timeout
-    (let ((timer (and timeout
-                      (run-with-timer timeout nil
-                                      (lambda ()
-                                        (if (zerop (length (this-command-keys)))
-                                            (throw 'timeout nil))))))
-          (old-global-map (current-global-map))
-          (temp-global-map (make-sparse-keymap))
-          (overriding-terminal-local-map (make-sparse-keymap)))
-      (substitute-key-definition 'keyboard-quit 'keyboard-quit
-                                 temp-global-map old-global-map)
-      (define-key temp-global-map [menu-bar] (lookup-key old-global-map [menu-bar]))
-      (define-key temp-global-map [tool-bar] (lookup-key old-global-map [tool-bar]))
-      (set-keymap-parent overriding-terminal-local-map keymap)
-      (if (current-local-map)
-          (define-key overriding-terminal-local-map [menu-bar]
-            (lookup-key (current-local-map) [menu-bar])))
-      (unwind-protect
-          (progn
-            (use-global-map temp-global-map)
-            (clear-this-command-keys)
-            (with-temp-message prompt
-              (read-key-sequence nil)))
-        (use-global-map old-global-map)
-        (if timer (cancel-timer timer))))))
-
-(defun popup-menu-fallback (event default))
-
-(cl-defun popup-menu-event-loop (menu
-                                 keymap
-                                 fallback
-                                 &key
-                                 prompt
-                                 help-delay
-                                 isearch
-                                 isearch-filter
-                                 isearch-cursor-color
-                                 isearch-keymap
-                                 isearch-callback
-                                 &aux key binding)
-  (cl-block nil
-    (while (popup-live-p menu)
-      (and isearch
-           (popup-isearch menu
-                          :filter isearch-filter
-                          :cursor-color isearch-cursor-color
-                          :keymap isearch-keymap
-                          :callback isearch-callback
-                          :help-delay help-delay)
-           (keyboard-quit))
-      (setq key (popup-menu-read-key-sequence keymap prompt help-delay))
-      (setq binding (and key (lookup-key keymap key)))
-      (cond
-       ((or (null key) (zerop (length key)))
-        (unless (funcall popup-menu-show-quick-help-function menu nil :prompt prompt)
-          (clear-this-command-keys)
-          (push (read-event prompt) unread-command-events)))
-       ((eq (lookup-key (current-global-map) key) 'keyboard-quit)
-        (keyboard-quit)
-        (cl-return))
-       ((eq binding 'popup-close)
-        (if (popup-parent menu)
-            (cl-return)))
-       ((memq binding '(popup-select popup-open))
-        (let* ((item (or (popup-menu-item-of-mouse-event (elt key 0))
-                         (popup-selected-item menu)))
-               (index (cl-position item (popup-list menu)))
-               (sublist (popup-item-sublist item)))
-          (unless index (cl-return))
-          (if sublist
-              (popup-aif (let (popup-use-optimized-column-computation)
-                           (popup-cascade-menu sublist
-                                               :around nil
-                                               :margin-left (popup-margin-left menu)
-                                               :margin-right (popup-margin-right menu)
-                                               :scroll-bar (popup-scroll-bar menu)
-                                               :parent menu
-                                               :parent-offset index
-                                               :help-delay help-delay
-                                               :isearch isearch
-                                               :isearch-filter isearch-filter
-                                               :isearch-cursor-color isearch-cursor-color
-                                               :isearch-keymap isearch-keymap
-                                               :isearch-callback isearch-callback))
-                  (and it (cl-return it)))
-            (if (eq binding 'popup-select)
-                (cl-return (popup-item-value-or-self item))))))
-       ((eq binding 'popup-next)
-        (popup-next menu))
-       ((eq binding 'popup-previous)
-        (popup-previous menu))
-       ((eq binding 'popup-page-next)
-        (popup-page-next menu))
-       ((eq binding 'popup-page-previous)
-        (popup-page-previous menu))
-       ((eq binding 'popup-help)
-        (popup-menu-show-help menu))
-       ((eq binding 'popup-isearch)
-        (popup-isearch menu
-                       :filter isearch-filter
-                       :cursor-color isearch-cursor-color
-                       :keymap isearch-keymap
-                       :callback isearch-callback
-                       :help-delay help-delay))
-       ((commandp binding)
-        (call-interactively binding))
-       (t
-        (funcall fallback key (key-binding key)))))))
-
-(defun popup-preferred-width (list)
-  "Return the preferred width to show LIST beautifully."
-  (cl-loop with tab-width = 4
-           for item in list
-           for summary = (popup-item-summary item)
-           maximize (string-width (popup-x-to-string item)) into width
-           if (stringp summary)
-           maximize (+ (string-width summary) 2) into summary-width
-           finally return
-           (let ((total (+ (or width 0) (or summary-width 0))))
-             (* (ceiling (/ total 10.0)) 10))))
-
-(defvar popup-menu-keymap
-  (let ((map (make-sparse-keymap)))
-    (define-key map "\r"        'popup-select)
-    (define-key map "\C-f"      'popup-open)
-    (define-key map [right]     'popup-open)
-    (define-key map "\C-b"      'popup-close)
-    (define-key map [left]      'popup-close)
-
-    (define-key map "\C-n"      'popup-next)
-    (define-key map [down]      'popup-next)
-    (define-key map "\C-p"      'popup-previous)
-    (define-key map [up]        'popup-previous)
-
-    (define-key map [next]      'popup-page-next)
-    (define-key map [prior]     'popup-page-previous)
-
-    (define-key map [f1]        'popup-help)
-    (define-key map (kbd "\C-?") 'popup-help)
-
-    (define-key map "\C-s"      'popup-isearch)
-
-    (define-key map [mouse-1]   'popup-select)
-    (define-key map [mouse-4]   'popup-previous)
-    (define-key map [mouse-5]   'popup-next)
-    map))
-
-(cl-defun popup-menu* (list
-                       &key
-                       point
-                       (around t)
-                       (width (popup-preferred-width list))
-                       (height 15)
-                       max-width
-                       margin
-                       margin-left
-                       margin-right
-                       scroll-bar
-                       symbol
-                       parent
-                       parent-offset
-                       cursor
-                       (keymap popup-menu-keymap)
-                       (fallback 'popup-menu-fallback)
-                       help-delay
-                       nowait
-                       prompt
-                       isearch
-                       (isearch-filter 'popup-isearch-filter-list)
-                       (isearch-cursor-color popup-isearch-cursor-color)
-                       (isearch-keymap popup-isearch-keymap)
-                       isearch-callback
-                       initial-index
-                       &aux menu event)
-  "Show a popup menu of LIST at POINT. This function returns a
-value of the selected item. Almost all arguments are the same as in
-`popup-create', except for KEYMAP, FALLBACK, HELP-DELAY, PROMPT,
-ISEARCH, ISEARCH-FILTER, ISEARCH-CURSOR-COLOR, ISEARCH-KEYMAP, and
-ISEARCH-CALLBACK.
-
-If KEYMAP is a keymap which is used when processing events during
-event loop.
-
-If FALLBACK is a function taking two arguments; a key and a
-command. FALLBACK is called when no special operation is found on
-the key. The default value is `popup-menu-fallback', which does
-nothing.
-
-HELP-DELAY is a delay of displaying helps.
-
-If NOWAIT is non-nil, this function immediately returns the menu
-instance without entering event loop.
-
-PROMPT is a prompt string when reading events during event loop.
-
-If ISEARCH is non-nil, do isearch as soon as displaying the popup
-menu.
-
-ISEARCH-FILTER is a filtering function taking two arguments:
-search pattern and list of items. Returns a list of matching items.
-
-ISEARCH-CURSOR-COLOR is a cursor color during isearch. The
-default value is `popup-isearch-cursor-color'.
-
-ISEARCH-KEYMAP is a keymap which is used when processing events
-during event loop. The default value is `popup-isearch-keymap'.
-
-ISEARCH-CALLBACK is a function taking one argument.  `popup-menu'
-calls ISEARCH-CALLBACK, if specified, after isearch finished or
-isearch canceled. The arguments is whole filtered list of items.
-
-If `INITIAL-INDEX' is non-nil, this is an initial index value for
-`popup-select'. Only positive integer is valid."
-  (and (eq margin t) (setq margin 1))
-  (or margin-left (setq margin-left margin))
-  (or margin-right (setq margin-right margin))
-  (if (and scroll-bar
-           (integerp margin-right)
-           (> margin-right 0))
-      ;; Make scroll-bar space as margin-right
-      (cl-decf margin-right))
-  (setq menu (popup-create point width height
-                           :max-width max-width
-                           :around around
-                           :face 'popup-menu-face
-                           :mouse-face 'popup-menu-mouse-face
-                           :selection-face 'popup-menu-selection-face
-                           :summary-face 'popup-menu-summary-face
-                           :margin-left margin-left
-                           :margin-right margin-right
-                           :scroll-bar scroll-bar
-                           :symbol symbol
-                           :parent parent
-                           :parent-offset parent-offset))
-  (unwind-protect
-      (progn
-        (popup-set-list menu list)
-        (if cursor
-            (popup-jump menu cursor)
-          (popup-draw menu))
-        (when initial-index
-          (dotimes (_i (min (- (length list) 1) initial-index))
-            (popup-next menu)))
-        (if nowait
-            menu
-          (popup-menu-event-loop menu keymap fallback
-                                 :prompt prompt
-                                 :help-delay help-delay
-                                 :isearch isearch
-                                 :isearch-filter isearch-filter
-                                 :isearch-cursor-color isearch-cursor-color
-                                 :isearch-keymap isearch-keymap
-                                 :isearch-callback isearch-callback)))
-    (unless nowait
-      (popup-delete menu))))
-
-(defun popup-cascade-menu (list &rest args)
-  "Same as `popup-menu' except that an element of LIST can be
-also a sub-menu if the element is a cons cell formed (ITEM
-. SUBLIST) where ITEM is an usual item and SUBLIST is a list of
-the sub menu."
-  (apply 'popup-menu*
-         (mapcar (lambda (item)
-                   (if (consp item)
-                       (popup-make-item (car item)
-                                        :sublist (cdr item)
-                                        :symbol ">")
-                     item))
-                 list)
-         :symbol t
-         args))
-
-(provide 'popup)
-;;; popup.el ends here
diff --git a/elpa/popup-20160709.1429/popup.elc b/elpa/popup-20160709.1429/popup.elc
deleted file mode 100644
index 44bb447..0000000
--- a/elpa/popup-20160709.1429/popup.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/popwin-20150315.1300/popwin-autoloads.el b/elpa/popwin-20150315.1300/popwin-autoloads.el
deleted file mode 100644
index 51101a7..0000000
--- a/elpa/popwin-20150315.1300/popwin-autoloads.el
+++ /dev/null
@@ -1,82 +0,0 @@
-;;; popwin-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "popwin" "popwin.el" (0 0 0 0))
-;;; Generated autoloads from popwin.el
-
-(autoload 'popwin:popup-buffer "popwin" "\
-Show BUFFER in a popup window and return the popup window. If
-NOSELECT is non-nil, the popup window will not be selected. If
-STICK is non-nil, the popup window will be stuck. If TAIL is
-non-nil, the popup window will show the last contents. Calling
-`popwin:popup-buffer' during `popwin:popup-buffer' is allowed. In
-that case, the buffer of the popup window will be replaced with
-BUFFER.
-
-\(fn BUFFER &key (width popwin:popup-window-width) (height popwin:popup-window-height) (position popwin:popup-window-position) NOSELECT DEDICATED STICK TAIL)" t nil)
-
-(autoload 'popwin:display-buffer "popwin" "\
-Display BUFFER-OR-NAME, if possible, in a popup window, or as
-usual. This function can be used as a value of
-`display-buffer-function'.
-
-\(fn BUFFER-OR-NAME &optional NOT-THIS-WINDOW)" t nil)
-
-(autoload 'popwin:pop-to-buffer "popwin" "\
-Same as `pop-to-buffer' except that this function will use
-`popwin:display-buffer-1' instead of `display-buffer'.
-
-\(fn BUFFER &optional OTHER-WINDOW NORECORD)" t nil)
-
-(autoload 'popwin:universal-display "popwin" "\
-Call the following command interactively with letting
-`popwin:special-display-config' be
-`popwin:universal-display-config'. This will be useful when
-displaying buffers in popup windows temporarily.
-
-\(fn)" t nil)
-
-(autoload 'popwin:one-window "popwin" "\
-Delete other window than the popup window. C-g restores the
-original window configuration.
-
-\(fn)" t nil)
-
-(autoload 'popwin:popup-buffer-tail "popwin" "\
-Same as `popwin:popup-buffer' except that the buffer will be
-`recenter'ed at the bottom.
-
-\(fn &rest SAME-AS-POPWIN:POPUP-BUFFER)" t nil)
-
-(autoload 'popwin:find-file "popwin" "\
-Edit file FILENAME with popup window by `popwin:popup-buffer'.
-
-\(fn FILENAME &optional WILDCARDS)" t nil)
-
-(autoload 'popwin:find-file-tail "popwin" "\
-Edit file FILENAME with popup window by
-`popwin:popup-buffer-tail'.
-
-\(fn FILE &optional WILDCARD)" t nil)
-
-(autoload 'popwin:messages "popwin" "\
-Display *Messages* buffer in a popup window.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "popwin" '("popwin")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; popwin-autoloads.el ends here
diff --git a/elpa/popwin-20150315.1300/popwin-pkg.el b/elpa/popwin-20150315.1300/popwin-pkg.el
deleted file mode 100644
index 4d53600..0000000
--- a/elpa/popwin-20150315.1300/popwin-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "popwin" "20150315.1300" "Popup Window Manager." 'nil :commit "95dea14c60019d6cccf9a3b33e0dec4e1f22c304" :keywords '("convenience") :authors '(("Tomohiro Matsuyama" . "m2ym.pub@gmail.com")) :maintainer '("Tomohiro Matsuyama" . "m2ym.pub@gmail.com"))
diff --git a/elpa/popwin-20150315.1300/popwin.el b/elpa/popwin-20150315.1300/popwin.el
deleted file mode 100644
index 751399d..0000000
--- a/elpa/popwin-20150315.1300/popwin.el
+++ /dev/null
@@ -1,1114 +0,0 @@
-;;; popwin.el --- Popup Window Manager.
-
-;; Copyright (C) 2011-2015  Tomohiro Matsuyama
-
-;; Author: Tomohiro Matsuyama <m2ym.pub@gmail.com>
-;; Keywords: convenience
-;; Package-Version: 20150315.1300
-;; Version: 1.0.0
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Popwin makes you free from the hell of annoying buffers such like
-;; *Help*, *Completions*, *compilation*, and etc.
-;; 
-;; To use popwin, just add the following code into your .emacs:
-;; 
-;;     (require 'popwin)
-;;     (popwin-mode 1)
-;; 
-;; Then try to show some buffer, for example *Help* or
-;; *Completeions*. Unlike standard behavior, their buffers may be
-;; shown in a popup window at the bottom of the frame. And you can
-;; close the popup window seamlessly by typing C-g or selecting other
-;; windows.
-;;
-;; `popwin:display-buffer' displays special buffers in a popup window
-;; and displays normal buffers as unsual. Special buffers are
-;; specified in `popwin:special-display-config', which tells popwin
-;; how to display such buffers. See docstring of
-;; `popwin:special-display-config' for more information.
-;;
-;; The default width/height/position of popup window can be changed by
-;; setting `popwin:popup-window-width', `popwin:popup-window-height',
-;; and `popwin:popup-window-position'.  You can also change the
-;; behavior for a specific buffer. See docstring of
-;; `popwin:special-display-config'.
-;;
-;; If you want to use some useful commands such like
-;; `popwin:popup-buffer' and `popwin:find-file' easily. you may bind
-;; `popwin:keymap' to `C-z', for example, like:
-;;
-;;     (global-set-key (kbd "C-z") popwin:keymap)
-;;
-;; See also `popwin:keymap' documentation.
-;;
-;; Enjoy!
-
-;;; Code:
-
-(eval-when-compile (require 'cl))
-
-(defconst popwin:version "1.0.0")
-
-
-
-;;; Utility
-
-(defun popwin:listify (object)
-  "Return a singleton list of OBJECT if OBJECT is an atom,
-otherwise OBJECT itself."
-  (if (atom object) (list object) object))
-
-(defun popwin:subsitute-in-tree (map tree)
-  (if (consp tree)
-      (cons (popwin:subsitute-in-tree map (car tree))
-            (popwin:subsitute-in-tree map (cdr tree)))
-    (or (cdr (assq tree map)) tree)))
-
-(defun popwin:get-buffer (buffer-or-name &optional if-not-found)
-  "Return a buffer named BUFFER-OR-NAME or BUFFER-OR-NAME itself
-if BUFFER-OR-NAME is a buffer. If BUFFER-OR-NAME is a string and
-such a buffer named BUFFER-OR-NAME not found, a new buffer will
-be returned when IF-NOT-FOUND is :create, or an error reported
-when IF-NOT-FOUND is :error. The default of value of IF-NOT-FOUND
-is :error."
-  (ecase (or if-not-found :error)
-    (:create
-     (get-buffer-create buffer-or-name))
-    (:error
-     (or (get-buffer buffer-or-name)
-         (error "No buffer named %s" buffer-or-name)))))
-
-(defun popwin:switch-to-buffer (buffer-or-name &optional norecord)
-  "Call `switch-to-buffer' forcing BUFFER-OF-NAME be displayed in
-the selected window."
-  (with-no-warnings 
-    (if (>= emacs-major-version 24)
-        (switch-to-buffer buffer-or-name norecord t)
-      (switch-to-buffer buffer-or-name norecord))))
-
-(defun popwin:select-window (window &optional norecord)
-  "Call `select-window' with saving the current buffer."
-  (save-current-buffer
-    (select-window window norecord)))
-
-(defun popwin:buried-buffer-p (buffer)
-  "Return t if BUFFER might be thought of as a buried buffer."
-  (eq (car (last (buffer-list))) buffer))
-
-(defun popwin:window-point (window)
-  "Return window-point of WINDOW. If WINDOW is currently
-selected, then return buffer-point instead."
-  (if (eq (selected-window) window)
-      (with-current-buffer (window-buffer window)
-        (point))
-    (window-point window)))
-
-(defun popwin:window-deletable-p (window)
-  "Return t if WINDOW is deletable, meaning that WINDOW is alive
-and not a minibuffer's window, plus there is two or more windows."
-  (and (window-live-p window)
-       (not (window-minibuffer-p window))
-       (not (one-window-p))))
-
-(defmacro popwin:save-selected-window (&rest body)
-  "Evaluate BODY saving the selected window."
-  `(with-selected-window (selected-window) ,@body))
-
-(defun popwin:minibuffer-window-selected-p ()
-  "Return t if minibuffer window is selected."
-  (minibuffer-window-active-p (selected-window)))
-
-(defun popwin:last-selected-window ()
-  "Return currently selected window or lastly selected window if
-minibuffer window is selected."
-  (if (popwin:minibuffer-window-selected-p)
-      (minibuffer-selected-window)
-    (selected-window)))
-
-
-
-;;; Common
-
-(defvar popwin:debug nil)
-
-(defvar popwin:dummy-buffer nil)
-
-(defun popwin:dummy-buffer ()
-  (if (buffer-live-p popwin:dummy-buffer)
-      popwin:dummy-buffer
-    (setq popwin:dummy-buffer (get-buffer-create " *popwin-dummy*"))))
-
-(defun popwin:kill-dummy-buffer ()
-  (when (buffer-live-p popwin:dummy-buffer)
-    (kill-buffer popwin:dummy-buffer))
-  (setq popwin:dummy-buffer nil))
-
-(defun popwin:window-trailing-edge-adjustable-p (window)
-  "Return t if a trailing edge of WINDOW is adjustable."
-  (let ((next-window (next-window window)))
-    (and (not (eq next-window (frame-first-window)))
-         (not (eq (window-buffer next-window)
-                  (popwin:dummy-buffer))))))
-
-(defun* popwin:adjust-window-edges (window
-                                    edges
-                                    &optional
-                                    (hfactor 1)
-                                    (vfactor 1))
-  "Adjust edges of WINDOW to EDGES accoring to horizontal factor
-HFACTOR, and vertical factor VFACTOR."
-  (when (popwin:window-trailing-edge-adjustable-p window)
-    (destructuring-bind ((left top right bottom)
-                         (cur-left cur-top cur-right cur-bottom))
-        (list edges (window-edges window))
-      (let ((hdelta (floor (- (* (- right left) hfactor) (- cur-right cur-left))))
-            (vdelta (floor (- (* (- bottom top) vfactor) (- cur-bottom cur-top)))))
-        (ignore-errors
-          (adjust-window-trailing-edge window hdelta t))
-        (ignore-errors
-          (adjust-window-trailing-edge window vdelta nil))))))
-
-(defun popwin:window-config-tree-1 (node)
-  (if (windowp node)
-      (list 'window
-            node
-            (window-buffer node)
-            (popwin:window-point node)
-            (window-start node)
-            (window-edges node)
-            (eq (selected-window) node)
-            (window-dedicated-p node))
-    (destructuring-bind (dir edges . windows) node
-      (append (list dir edges)
-              (loop for window in windows
-                    unless (and (windowp window)
-                                (window-parameter window 'window-side))
-                    collect (popwin:window-config-tree-1 window))))))
-
-(defun popwin:window-config-tree ()
-  "Return `window-tree' with replacing window values in the tree
-with persistent representations."
-  (destructuring-bind (root mini)
-      (window-tree)
-    (list (popwin:window-config-tree-1 root) mini)))
-
-(defun popwin:replicate-window-config (window node hfactor vfactor)
-  "Replicate NODE of window configuration on WINDOW with
-horizontal factor HFACTOR, and vertical factor VFACTOR. The
-return value is a association list of mapping from old-window to
-new-window."
-  (if (eq (car node) 'window)
-      (destructuring-bind (old-win buffer point start edges selected dedicated)
-          (cdr node)
-        (set-window-dedicated-p window nil)
-        (popwin:adjust-window-edges window edges hfactor vfactor)
-        (with-selected-window window
-          (popwin:switch-to-buffer buffer t))
-        (when selected
-          (popwin:select-window window))
-        (set-window-point window point)
-        (set-window-start window start t)
-        (when dedicated
-          (set-window-dedicated-p window t))
-        `((,old-win . ,window)))
-    (destructuring-bind (dir edges . windows) node
-      (loop while windows
-            for sub-node = (pop windows)
-            for win = window then next-win
-            for next-win = (and windows (split-window win nil (not dir)))
-            append (popwin:replicate-window-config win sub-node hfactor vfactor)))))
-
-(defun popwin:restore-window-outline (node outline)
-  "Restore window outline accoding to the structures of NODE
-which is a node of `window-tree' and OUTLINE which is a node of
-`popwin:window-config-tree'."
-  (cond
-   ((and (windowp node)
-         (eq (car outline) 'window))
-    ;; same window
-    (destructuring-bind (old-win buffer point start edges selected dedicated)
-        (cdr outline)
-      (popwin:adjust-window-edges node edges)
-      (when (and (eq (window-buffer node) buffer)
-                 (eq (popwin:window-point node) point))
-        (set-window-start node start))))
-   ((or (windowp node)
-        (not (eq (car node) (car outline))))
-    ;; different structure
-    ;; nothing to do
-    )
-   (t
-    (let ((child-nodes (cddr node))
-          (child-outlines (cddr outline)))
-      (when (eq (length child-nodes) (length child-outlines))
-        ;; same structure
-        (loop for child-node in child-nodes
-              for child-outline in child-outlines
-              do (popwin:restore-window-outline child-node child-outline)))))))
-
-(defun popwin:position-horizontal-p (position)
-  "Return t if POSITION is hozirontal."
-  (and (memq position '(left :left right :right)) t))
-
-(defun popwin:position-vertical-p (position)
-  "Return t if POSITION is vertical."
-  (and (memq position '(top :top bottom :bottom)) t))
-
-(defun popwin:create-popup-window-1 (window size position)
-  "Create a new window with SIZE at POSITION of WINDOW. The
-return value is a list of a master window and the popup window."
-  (let ((width (window-width window))
-        (height (window-height window)))
-    (ecase position
-      ((left :left)
-       (list (split-window window size t)
-             window))
-      ((top :top)
-       (list (split-window window size nil)
-             window))
-      ((right :right)
-       (list window
-             (split-window window (- width size) t)))
-      ((bottom :bottom)
-       (list window
-             (split-window window (- height size) nil))))))
-
-(defun* popwin:create-popup-window (&optional (size 15) (position 'bottom) (adjust t))
-  "Create a popup window with SIZE on the frame.  If SIZE
-is integer, the size of the popup window will be SIZE. If SIZE is
-float, the size of popup window will be a multiplier of SIZE and
-frame-size. can be an integer and a float. If ADJUST is t, all of
-windows will be adjusted to fit the frame. POSITION must be one
-of (left top right bottom). The return value is a pair of a
-master window and the popup window. To close the popup window
-properly, get `current-window-configuration' before calling this
-function, and call `set-window-configuration' with the
-window-configuration."
-  (let* ((root (car (popwin:window-config-tree)))
-         (root-win (popwin:last-selected-window))
-         (hfactor 1)
-         (vfactor 1))
-    (popwin:save-selected-window
-     (delete-other-windows root-win))
-    (let ((root-width (window-width root-win))
-          (root-height (window-height root-win)))
-      (when adjust
-        (if (floatp size)
-            (if (popwin:position-horizontal-p position)
-                (setq hfactor (- 1.0 size)
-                      size (round (* root-width size)))
-              (setq vfactor (- 1.0 size)
-                    size (round (* root-height size))))
-          (if (popwin:position-horizontal-p position)
-              (setq hfactor (/ (float (- root-width size)) root-width))
-            (setq vfactor (/ (float (- root-height size)) root-height)))))
-      (destructuring-bind (master-win popup-win)
-          (popwin:create-popup-window-1 root-win size position)
-        ;; Mark popup-win being a popup window.
-        (with-selected-window popup-win
-          (popwin:switch-to-buffer (popwin:dummy-buffer) t))
-        (let ((win-map (popwin:replicate-window-config master-win root hfactor vfactor)))
-          (list master-win popup-win win-map))))))
-
-
-
-;;; Common User Interface
-
-(defgroup popwin nil
-  "Popup Window Manager."
-  :group 'convenience
-  :prefix "popwin:")
-
-(defcustom popwin:popup-window-position 'bottom
-  "Default popup window position. This must be one of (left top right
-bottom)."
-  :type 'symbol
-  :group 'popwin)
-
-(defcustom popwin:popup-window-width 30
-  "Default popup window width. If `popwin:popup-window-position'
-is top or bottom, this configuration will be ignored. If this
-variable is float, the popup window width will be a multiplier of
-the value and frame-size."
-  :type 'number
-  :group 'popwin)
-
-(defcustom popwin:popup-window-height 15
-  "Default popup window height. If `popwin:popup-window-position'
-is left or right, this configuration will be ignored. If this
-variable is float, the popup window height will be a multiplier
-of the value and frame-size."
-  :type 'number
-  :group 'popwin)
-
-(defcustom popwin:reuse-window 'current
-  "Non-nil means `popwin:display-buffer' will not popup the
-visible buffer.  The value is same as a second argument of
-`get-buffer-window', except `current' means the selected frame."
-  :group 'popwin)
-
-(defcustom popwin:adjust-other-windows t
-  "Non-nil means all of other windows will be adjusted to fit the
-frame when a popup window is shown."
-  :type 'boolean
-  :group 'popwin)
-
-(defvar popwin:context-stack nil)
-
-(defvar popwin:popup-window nil
-  "Main popup window instance.")
-
-(defvar popwin:popup-buffer nil
-  "Buffer of currently shown in the popup window.")
-
-(defvar popwin:popup-last-config nil
-  "Arguments to `popwin:popup-buffer' of last call.")
-
-;; Deprecated
-(defvar popwin:master-window nil
-  "Master window of a popup window.")
-
-(defvar popwin:focus-window nil
-  "Focused window which is used to check whether or not to close
-the popup window.")
-
-(defvar popwin:selected-window nil
-  "Last selected window when the popup window is shown.")
-
-(defvar popwin:popup-window-dedicated-p nil
-  "Non-nil means the popup window is dedicated to the original
-popup buffer.")
-
-(defvar popwin:popup-window-stuck-p nil
-  "Non-nil means the popup window has been stuck.")
-
-(defvar popwin:window-outline nil
-  "Original window outline which is obtained by
-`popwin:window-config-tree'.")
-
-(defvar popwin:window-map nil
-  "Mapping from old windows to new windows.")
-
-(defvar popwin:window-config nil
-  "An original window configuration for restoreing.")
-
-(defvar popwin:close-popup-window-timer nil
-  "Timer of closing the popup window.")
-
-(defvar popwin:close-popup-window-timer-interval 0.05
-  "Interval of `popwin:close-popup-window-timer'.")
-
-(defvar popwin:before-popup-hook nil)
-
-(defvar popwin:after-popup-hook nil)
-
-(symbol-macrolet ((context-vars '(popwin:popup-window
-                                  popwin:popup-buffer
-                                  popwin:master-window
-                                  popwin:focus-window
-                                  popwin:selected-window
-                                  popwin:popup-window-dedicated-p
-                                  popwin:popup-window-stuck-p
-                                  popwin:window-outline
-                                  popwin:window-map)))
-  (defun popwin:valid-context-p (context)
-    (window-live-p (plist-get context 'popwin:popup-window)))
-
-  (defun popwin:current-context ()
-    (loop for var in context-vars
-          collect var
-          collect (symbol-value var)))
-  
-  (defun popwin:use-context (context)
-    (loop for var = (pop context)
-          for val = (pop context)
-          while var
-          do (set var val)))
-
-  (defun popwin:push-context ()
-    (push (popwin:current-context) popwin:context-stack))
-
-  (defun popwin:pop-context ()
-    (popwin:use-context (pop popwin:context-stack)))
-
-  (defun* popwin:find-context-for-buffer (buffer &key valid-only)
-    (loop with stack = popwin:context-stack
-          for context = (pop stack)
-          while context
-          if (and (eq buffer (plist-get context 'popwin:popup-buffer))
-                  (or (not valid-only)
-                      (popwin:valid-context-p context)))
-          return (list context stack))))
-
-(defun popwin:popup-window-live-p ()
-  "Return t if `popwin:popup-window' is alive."
-  (window-live-p popwin:popup-window))
-
-(defun* popwin:update-window-reference (symbol
-                                        &key
-                                        (map popwin:window-map)
-                                        safe
-                                        recursive)
-  (unless (and safe (not (boundp symbol)))
-    (let ((value (symbol-value symbol)))
-      (set symbol
-           (if recursive
-               (popwin:subsitute-in-tree map value)
-             (or (cdr (assq value map)) value))))))
-
-(defun popwin:start-close-popup-window-timer ()
-  (or popwin:close-popup-window-timer
-      (setq popwin:close-popup-window-timer
-            (run-with-idle-timer popwin:close-popup-window-timer-interval
-                                 popwin:close-popup-window-timer-interval
-                                 'popwin:close-popup-window-timer))))
-
-(defun popwin:stop-close-popup-window-timer ()
-  (when popwin:close-popup-window-timer
-    (cancel-timer popwin:close-popup-window-timer)
-    (setq popwin:close-popup-window-timer nil)))
-
-(defun popwin:close-popup-window-timer ()
-  (condition-case var
-      (popwin:close-popup-window-if-necessary)
-    (error
-     (message "popwin:close-popup-window-timer: error: %s" var)
-     (when popwin:debug (backtrace)))))
-
-(defun popwin:close-popup-window (&optional keep-selected)
-  "Close the popup window and restore to the previous window
-configuration. If KEEP-SELECTED is non-nil, the lastly selected
-window will not be selected."
-  (interactive)
-  (when popwin:popup-window
-    (unwind-protect
-        (progn
-          (when (popwin:window-deletable-p popwin:popup-window)
-            (delete-window popwin:popup-window))
-          (popwin:restore-window-outline (car (window-tree)) popwin:window-outline)
-          ;; Call `redisplay' here so `window-start' could be set
-          ;; prior to the point change of the master buffer.
-          (redisplay)
-          (when (and (not keep-selected)
-                     (window-live-p popwin:selected-window))
-            (select-window popwin:selected-window)))
-      (popwin:pop-context)
-      ;; Cleanup if no context left.
-      (when (null popwin:context-stack)
-        (popwin:kill-dummy-buffer)
-        (popwin:stop-close-popup-window-timer)))))
-
-(defun popwin:close-popup-window-if-necessary ()
-  "Close the popup window if necessary. The all situations where
-the popup window will be closed are followings:
-
-* `C-g' has been pressed.
-* The popup buffer has been killed.
-* The popup buffer has been buried.
-* The popup buffer has been changed if the popup window is
-  dedicated to the buffer.
-* Another window has been selected."
-  (when popwin:popup-window
-    (let* ((window (selected-window))
-           (window-point (popwin:window-point window))
-           (window-buffer (window-buffer window))
-           (minibuf-window-p (window-minibuffer-p window))
-           (reading-from-minibuf
-            (and minibuf-window-p
-                 (minibuffer-prompt)
-                 t))
-           (quit-requested
-            (and (eq last-command 'keyboard-quit)
-                 (eq last-command-event ?\C-g)))
-           (other-window-selected
-            (and (not (eq window popwin:focus-window))
-                 (not (eq window popwin:popup-window))))
-           (orig-this-command this-command)
-           (popup-buffer-alive
-            (buffer-live-p popwin:popup-buffer))
-           (popup-buffer-buried
-            (popwin:buried-buffer-p popwin:popup-buffer))
-           (popup-buffer-changed-despite-of-dedicated
-            (and popwin:popup-window-dedicated-p
-                 (not popwin:popup-window-stuck-p)
-                 (or (not other-window-selected)
-                     (not reading-from-minibuf))
-                 (buffer-live-p window-buffer)
-                 (not (eq popwin:popup-buffer window-buffer))))
-           (popup-window-alive (popwin:popup-window-live-p)))
-      (when (or quit-requested
-                (not popup-buffer-alive)
-                popup-buffer-buried
-                popup-buffer-changed-despite-of-dedicated
-                (not popup-window-alive)
-                (and other-window-selected
-                     (not minibuf-window-p)
-                     (not popwin:popup-window-stuck-p)))
-        (when popwin:debug
-          (message (concat "popwin: CLOSE:\n"
-                           "  quit-requested = %s\n"
-                           "  popup-buffer-alive = %s\n"
-                           "  popup-buffer-buried = %s\n"
-                           "  popup-buffer-changed-despite-of-dedicated = %s\n"
-                           "  popup-window-alive = %s\n"
-                           "  (selected-window) = %s\n"
-                           "  popwin:focus-window = %s\n"
-                           "  popwin:popup-window = %s\n"
-                           "  other-window-selected = %s\n"
-                           "  minibuf-window-p = %s\n"
-                           "  popwin:popup-window-stuck-p = %s")
-                   quit-requested
-                   popup-buffer-alive
-                   popup-buffer-buried
-                   popup-buffer-changed-despite-of-dedicated
-                   popup-window-alive
-                   window
-                   popwin:focus-window
-                   popwin:popup-window
-                   other-window-selected
-                   minibuf-window-p
-                   popwin:popup-window-stuck-p))
-        (when (and quit-requested
-                   (null orig-this-command))
-          (setq this-command 'popwin:close-popup-window)
-          (run-hooks 'pre-command-hook))
-        (cond
-         ((and quit-requested
-               (null orig-this-command)
-               popwin:window-config)
-          (set-window-configuration popwin:window-config)
-          (setq popwin:window-config nil))
-         (reading-from-minibuf
-          (popwin:close-popup-window)
-          (select-window (minibuffer-window)))
-         (t
-          (popwin:close-popup-window
-           (and other-window-selected
-                (and popup-buffer-alive
-                     (not popup-buffer-buried))))
-          (when popup-buffer-changed-despite-of-dedicated
-            (popwin:switch-to-buffer window-buffer)
-            (goto-char window-point))))
-        (when (and quit-requested
-                   (null orig-this-command))
-          (run-hooks 'post-command-hook)
-          (setq last-command 'popwin:close-popup-window))))))
-
-;;;###autoload
-(defun* popwin:popup-buffer (buffer
-                             &key
-                             (width popwin:popup-window-width)
-                             (height popwin:popup-window-height)
-                             (position popwin:popup-window-position)
-                             noselect
-                             dedicated
-                             stick
-                             tail)
-  "Show BUFFER in a popup window and return the popup window. If
-NOSELECT is non-nil, the popup window will not be selected. If
-STICK is non-nil, the popup window will be stuck. If TAIL is
-non-nil, the popup window will show the last contents. Calling
-`popwin:popup-buffer' during `popwin:popup-buffer' is allowed. In
-that case, the buffer of the popup window will be replaced with
-BUFFER."
-  (interactive "BPopup buffer:\n")
-  (setq buffer (get-buffer buffer))
-  (popwin:push-context)
-  (run-hooks 'popwin:before-popup-hook)
-  (multiple-value-bind (context context-stack)
-      (popwin:find-context-for-buffer buffer :valid-only t)
-    (if context
-        (progn
-          (popwin:use-context context)
-          (setq popwin:context-stack context-stack))
-      (let ((win-outline (car (popwin:window-config-tree))))
-        (destructuring-bind (master-win popup-win win-map)
-            (let ((size (if (popwin:position-horizontal-p position) width height))
-                  (adjust popwin:adjust-other-windows))
-              (popwin:create-popup-window size position adjust))
-          (setq popwin:popup-window popup-win
-                popwin:master-window master-win
-                popwin:window-outline win-outline
-                popwin:window-map win-map
-                popwin:window-config nil
-                popwin:selected-window (selected-window)))
-        (popwin:update-window-reference 'popwin:context-stack :recursive t)
-        (popwin:start-close-popup-window-timer))
-      (with-selected-window popwin:popup-window
-        (popwin:switch-to-buffer buffer)
-        (when tail
-          (set-window-point popwin:popup-window (point-max))
-          (recenter -2)))
-      (setq popwin:popup-buffer buffer
-            popwin:popup-last-config (list buffer
-                                           :width width :height height :position position
-                                           :noselect noselect :dedicated dedicated
-                                           :stick stick :tail tail)
-            popwin:popup-window-dedicated-p dedicated
-            popwin:popup-window-stuck-p stick)))
-  (if noselect
-      (setq popwin:focus-window popwin:selected-window)
-    (setq popwin:focus-window popwin:popup-window)
-    (select-window popwin:popup-window))
-  (run-hooks 'popwin:after-popup-hook)
-  popwin:popup-window)
-
-(defun popwin:popup-last-buffer (&optional noselect)
-  "Show the last popup buffer with the same configuration. If
-NOSELECT is non-nil, the popup window will not be selected."
-  (interactive "P")
-  (if popwin:popup-last-config
-      (if noselect
-          (destructuring-bind (buffer . keyargs) popwin:popup-last-config
-            (apply 'popwin:popup-buffer buffer :noselect t keyargs))
-        (apply 'popwin:popup-buffer popwin:popup-last-config))
-    (error "No popup buffer ever")))
-(defalias 'popwin:display-last-buffer 'popwin:popup-last-buffer)
-
-(defun popwin:select-popup-window ()
-  "Select the currently shown popup window."
-  (interactive)
-  (if (popwin:popup-window-live-p)
-      (select-window popwin:popup-window)
-    (error "No popup window displayed")))
-
-(defun popwin:stick-popup-window ()
-  "Stick the currently shown popup window. The popup window can
-be closed by `popwin:close-popup-window'."
-  (interactive)
-  (if (popwin:popup-window-live-p)
-      (progn
-        (setq popwin:popup-window-stuck-p t)
-        (message "Popup window stuck"))
-    (error "No popup window displayed")))
-
-
-
-;;; Special Display
-
-(defmacro popwin:without-special-displaying (&rest body)
-  "Evaluate BODY without special displaying."
-  (if (boundp 'display-buffer-alist)
-      `(with-no-warnings
-         (let ((display-buffer-function nil)
-               (display-buffer-alist
-                (remove '(popwin:display-buffer-condition
-                          popwin:display-buffer-action)
-                        display-buffer-alist)))
-           ,@body))
-    `(with-no-warnings (let ((display-buffer-function nil)) ,@body))))
-
-(defcustom popwin:special-display-config
-  '(;; Emacs
-    ("*Miniedit Help*" :noselect t)
-    help-mode
-    (completion-list-mode :noselect t)
-    (compilation-mode :noselect t)
-    (grep-mode :noselect t)
-    (occur-mode :noselect t)
-    ("*Pp Macroexpand Output*" :noselect t)
-    "*Shell Command Output*"
-    ;; VC
-    "*vc-diff*"
-    "*vc-change-log*"
-    ;; Undo-Tree
-    (" *undo-tree*" :width 60 :position right)
-    ;; Anything
-    ("^\\*anything.*\\*$" :regexp t)
-    ;; SLIME
-    "*slime-apropos*"
-    "*slime-macroexpansion*"
-    "*slime-description*"
-    ("*slime-compilation*" :noselect t)
-    "*slime-xref*"
-    (sldb-mode :stick t)
-    slime-repl-mode
-    slime-connection-list-mode)
-  "Configuration of special displaying buffer for
-`popwin:display-buffer' and
-`popwin:special-display-popup-window'. The value is a list of
-CONFIG as a form of (PATTERN . KEYWORDS) where PATTERN is a
-pattern of specifying buffer and KEYWORDS is a list of a pair of
-key and value. PATTERN is in general a buffer name, a symbol
-specifying major-mode of buffer, or a predicate function which
-takes one argument: the buffer. If CONFIG is a string or a
-symbol, PATTERN will be CONFIG and KEYWORDS will be
-empty. Available keywords are following:
-
-  regexp: If the value is non-nil, PATTERN will be used as regexp
-    to matching buffer.
-
-  width, height: Specify width or height of the popup window. If
-    no size specified, `popwin:popup-window-width' or
-    `popwin:popup-window-height' will be used. See also position
-    keyword.
-
-  position: The value must be one of (left top right bottom). The
-    popup window will shown at the position of the frame.  If no
-    position specified, `popwin:popup-window-position' will be
-    used.
-
-  noselect: If the value is non-nil, the popup window will not be
-    selected when it is shown.
-
-  dedicated: If the value is non-nil, the popup window will be
-    dedicated to the original popup buffer. In this case, when
-    another buffer is selected in the popup window, the popup
-    window will be closed immedicately and the selected buffer
-    will be shown on the previously selected window.
-
-  stick: If the value is non-nil, the popup window will be stuck
-    when it is shown.
-
-  tail: If the value is non-nil, the popup window will show the
-    last contents.
-
-Examples: With '(\"*scratch*\" :height 30 :position top),
-*scratch* buffer will be shown at the top of the frame with
-height 30. With '(dired-mode :width 80 :position left), dired
-buffers will be shown at the left of the frame with width 80."
-  :type '(repeat
-          (cons :tag "Config"
-                (choice :tag "Pattern"
-                        (string :tag "Buffer Name")
-                        (symbol :tag "Major Mode"))
-                (plist :tag "Keywords"
-                       :value (:regexp nil) ; BUG? need default value
-                       :options
-                       ((:regexp (boolean :tag "On/Off"))
-                        (:width (choice :tag "Width"
-                                        (integer :tag "Width")
-                                        (float :tag "Width (%)")))
-                        (:height (choice :tag "Height"
-                                         (integer :tag "Height")
-                                         (float :tag "Height (%)")))
-                        (:position (choice :tag "Position"
-                                           (const :tag "Bottom" bottom)
-                                           (const :tag "Top" top)
-                                           (const :tag "Left" left)
-                                           (const :tag "Right" right)))
-                        (:noselect (boolean :tag "On/Off"))
-                        (:dedicated (boolean :tag "On/Off"))
-                        (:stick (boolean :tag "On/Off"))
-                        (:tail (boolean :tag "On/Off"))))))
-  :get (lambda (symbol)
-         (mapcar (lambda (element)
-                   (if (consp element)
-                       element
-                     (list element)))
-                 (default-value symbol)))
-  :group 'popwin)
-
-(defun popwin:apply-display-buffer (function buffer &optional not-this-window)
-  "Call FUNCTION on BUFFER without special displaying."
-  (popwin:without-special-displaying
-   (let ((same-window
-          (or (same-window-p (buffer-name buffer))
-              (and (>= emacs-major-version 24)
-                   (boundp 'action)
-                   (consp action)
-                   (eq (car action) 'display-buffer-same-window)))))
-     ;; Close the popup window here so that the popup window won't to
-     ;; be splitted.
-     (when (and (eq (selected-window) popwin:popup-window)
-                (not same-window))
-       (popwin:close-popup-window)))
-   (if (and (>= emacs-major-version 24)
-            (boundp 'action)
-            (boundp 'frame))
-       ;; Use variables ACTION and FRAME which are formal parameters
-       ;; of DISPLAY-BUFFER.
-       ;; 
-       ;; TODO use display-buffer-alist instead of
-       ;; display-buffer-function.
-       (funcall function buffer action frame)
-     (funcall function buffer not-this-window))))
-
-(defun popwin:original-display-buffer (buffer &optional not-this-window)
-  "Call `display-buffer' on BUFFER without special displaying."
-  (popwin:apply-display-buffer 'display-buffer buffer not-this-window))
-
-(defun popwin:original-pop-to-buffer (buffer &optional not-this-window)
-  "Call `pop-to-buffer' on BUFFER without special displaying."
-  (popwin:apply-display-buffer 'pop-to-buffer buffer not-this-window))
-
-(defun popwin:original-display-last-buffer ()
-  "Call `display-buffer' for the last popup buffer without
-special displaying."
-  (interactive)
-  (if popwin:popup-last-config
-      (popwin:original-display-buffer (car popwin:popup-last-config))
-    (error "No popup buffer ever")))
-
-(defun popwin:switch-to-last-buffer ()
-  "Switch to the last popup buffer."
-  (interactive)
-  (if popwin:popup-last-config
-      (popwin:apply-display-buffer
-       (lambda (buffer &rest ignore) (switch-to-buffer buffer))
-       (car popwin:popup-last-config))
-    (error "No popup buffer ever")))
-
-(defun popwin:original-pop-to-last-buffer ()
-  "Call `pop-to-buffer' for the last popup buffer without
-special displaying."
-  (interactive)
-  (if popwin:popup-last-config
-      (popwin:original-pop-to-buffer (car popwin:popup-last-config))
-    (error "No popup buffer ever")))
-
-(defun popwin:reuse-window-p (buffer-or-name not-this-window)
-  "Return t if a window showing BUFFER-OR-NAME exists and should
-be used displaying the buffer."
-  (and popwin:reuse-window
-       (let ((window (get-buffer-window buffer-or-name
-                                        (if (eq popwin:reuse-window 'current)
-                                            nil
-                                          popwin:reuse-window))))
-         (and (not (null window))
-              (not (eq window (if not-this-window (selected-window))))))))
-
-(defun* popwin:match-config (buffer)
-  (when (stringp buffer) (setq buffer (get-buffer buffer)))
-  (loop with name = (buffer-name buffer)
-        with mode = (buffer-local-value 'major-mode buffer)
-        for config in popwin:special-display-config
-        for (pattern . keywords) = (popwin:listify config)
-        if (cond ((eq pattern t) t)
-                 ((and (stringp pattern) (plist-get keywords :regexp))
-                  (string-match pattern name))
-                 ((stringp pattern)
-                  (string= pattern name))
-                 ((symbolp pattern)
-                  (eq pattern mode))
-                 ((functionp pattern)
-                  (funcall pattern buffer))
-                 (t (error "Invalid pattern: %s" pattern)))
-        return (cons pattern keywords)))
-
-(defun* popwin:display-buffer-1 (buffer-or-name
-                                 &key
-                                 default-config-keywords
-                                 (if-buffer-not-found :create)
-                                 if-config-not-found)
-  "Display BUFFER-OR-NAME, if possible, in a popup
-window. Otherwise call IF-CONFIG-NOT-FOUND with BUFFER-OR-NAME if
-the value is a function. If IF-CONFIG-NOT-FOUND is nil,
-`popwin:popup-buffer' will be called. IF-BUFFER-NOT-FOUND
-indicates what happens when there is no such buffers. If the
-value is :create, create a new buffer named BUFFER-OR-NAME. If
-the value is :error, report an error. The default value
-is :create. DEFAULT-CONFIG-KEYWORDS is a property list which
-specifies default values of the config."
-  (let* ((buffer (popwin:get-buffer buffer-or-name if-buffer-not-found))
-         (pattern-and-keywords (popwin:match-config buffer)))
-    (unless pattern-and-keywords
-      (if if-config-not-found
-          (return-from popwin:display-buffer-1
-            (funcall if-config-not-found buffer))
-        (setq pattern-and-keywords '(t))))
-    (destructuring-bind (&key regexp width height position noselect dedicated stick tail)
-        (append (cdr pattern-and-keywords) default-config-keywords)
-      (popwin:popup-buffer buffer
-                           :width (or width popwin:popup-window-width)
-                           :height (or height popwin:popup-window-height)
-                           :position (or position popwin:popup-window-position)
-                           :noselect (or (popwin:minibuffer-window-selected-p) noselect)
-                           :dedicated dedicated
-                           :stick stick
-                           :tail tail))))
-
-;;;###autoload
-(defun popwin:display-buffer (buffer-or-name &optional not-this-window)
-  "Display BUFFER-OR-NAME, if possible, in a popup window, or as
-usual. This function can be used as a value of
-`display-buffer-function'."
-  (interactive "BDisplay buffer:\n")
-  (if (popwin:reuse-window-p buffer-or-name not-this-window)
-      ;; Call `display-buffer' for reuse.
-      (popwin:original-display-buffer buffer-or-name not-this-window)
-    (popwin:display-buffer-1
-     buffer-or-name
-     :if-config-not-found
-     (unless (with-no-warnings
-               ;; FIXME: emacs bug?
-               (called-interactively-p))
-       (lambda (buffer)
-         (popwin:original-display-buffer buffer not-this-window))))))
-
-(defun popwin:special-display-popup-window (buffer &rest ignore)
-  "Obsolete."
-  (popwin:display-buffer-1 buffer))
-
-(defun* popwin:pop-to-buffer-1 (buffer
-                                &key
-                                default-config-keywords
-                                other-window
-                                norecord)
-  (popwin:display-buffer-1 buffer
-                           :default-config-keywords default-config-keywords
-                           :if-config-not-found
-                           (lambda (buffer)
-                             (pop-to-buffer buffer other-window norecord))))
-
-;;;###autoload
-(defun popwin:pop-to-buffer (buffer &optional other-window norecord)
-  "Same as `pop-to-buffer' except that this function will use
-`popwin:display-buffer-1' instead of `display-buffer'."
-  (interactive (list (read-buffer "Pop to buffer: " (other-buffer))
-                     (if current-prefix-arg t)))
-  (popwin:pop-to-buffer-1 buffer
-                          :other-window other-window
-                          :norecord norecord))
-
-
-
-;;; Universal Display
-
-(defcustom popwin:universal-display-config '(t)
-  "Same as `popwin:special-display-config' except that this will
-be used for `popwin:universal-display'."
-  :group 'popwin)
-
-;;;###autoload
-(defun popwin:universal-display ()
-  "Call the following command interactively with letting
-`popwin:special-display-config' be
-`popwin:universal-display-config'. This will be useful when
-displaying buffers in popup windows temporarily."
-  (interactive)
-  (let ((command (key-binding (read-key-sequence "" t)))
-        (popwin:special-display-config popwin:universal-display-config))
-    (call-interactively command)))
-
-
-
-;;; Extensions
-
-;;;###autoload
-(defun popwin:one-window ()
-  "Delete other window than the popup window. C-g restores the
-original window configuration."
-  (interactive)
-  (setq popwin:window-config (current-window-configuration))
-  (delete-other-windows))
-
-;;;###autoload
-(defun popwin:popup-buffer-tail (&rest same-as-popwin:popup-buffer)
-  "Same as `popwin:popup-buffer' except that the buffer will be
-`recenter'ed at the bottom."
-  (interactive "bPopup buffer:\n")
-  (destructuring-bind (buffer . keyargs) same-as-popwin:popup-buffer
-    (apply 'popwin:popup-buffer buffer :tail t keyargs)))
-
-;;;###autoload
-(defun popwin:find-file (filename &optional wildcards)
-  "Edit file FILENAME with popup window by `popwin:popup-buffer'."
-  (interactive
-   (find-file-read-args "Find file in popup window: "
-                        (when (fboundp 'confirm-nonexistent-file-or-buffer)
-                          (confirm-nonexistent-file-or-buffer))))
-  (popwin:popup-buffer (find-file-noselect filename wildcards)))
-
-;;;###autoload
-(defun popwin:find-file-tail (file &optional wildcard)
-  "Edit file FILENAME with popup window by
-`popwin:popup-buffer-tail'."
-  (interactive
-   (find-file-read-args "Find file in popup window: "
-                        (when (fboundp 'confirm-nonexistent-file-or-buffer)
-                          (confirm-nonexistent-file-or-buffer))))
-  (popwin:popup-buffer-tail (find-file-noselect file wildcard)))
-
-;;;###autoload
-(defun popwin:messages ()
-  "Display *Messages* buffer in a popup window."
-  (interactive)
-  (popwin:popup-buffer-tail "*Messages*"))
-
-
-
-;;; Minor Mode
-
-(defun popwin:display-buffer-condition (buffer action)
-  (and (popwin:match-config buffer) t))
-
-(defun popwin:display-buffer-action (buffer alist)
-  (let ((not-this-window (plist-get 'inhibit-same-window alist)))
-    (popwin:display-buffer buffer not-this-window)))
-
-(define-minor-mode popwin-mode
-  ""
-  :init-value nil
-  :global t
-  (if (boundp 'display-buffer-alist)
-      (let ((pair '(popwin:display-buffer-condition popwin:display-buffer-action)))
-        (if popwin-mode
-          (push pair display-buffer-alist)
-          (setq display-buffer-alist (delete pair display-buffer-alist))))
-    (with-no-warnings
-      (unless (or (null display-buffer-function)
-                  (eq display-buffer-function 'popwin:display-buffer))
-        (warn "Overwriting display-buffer-function variable to enable/disable popwin-mode"))
-      (setq display-buffer-function (if popwin-mode 'popwin:display-buffer nil)))))
-
-
-
-;;; Keymaps
-
-(defvar popwin:keymap
-  (let ((map (make-sparse-keymap)))
-    (define-key map "b"    'popwin:popup-buffer)
-    (define-key map "l"    'popwin:popup-last-buffer)
-    (define-key map "o"    'popwin:display-buffer)
-    (define-key map "\C-b" 'popwin:switch-to-last-buffer)
-    (define-key map "\C-p" 'popwin:original-pop-to-last-buffer)
-    (define-key map "\C-o" 'popwin:original-display-last-buffer)
-    (define-key map " "    'popwin:select-popup-window)
-    (define-key map "s"    'popwin:stick-popup-window)
-    (define-key map "0"    'popwin:close-popup-window)
-    (define-key map "f"    'popwin:find-file)
-    (define-key map "\C-f" 'popwin:find-file)
-    (define-key map "e"    'popwin:messages)
-    (define-key map "\C-u" 'popwin:universal-display)
-    (define-key map "1"    'popwin:one-window)
-    
-    map)
-  "Default keymap for popwin commands. Use like:
-\(global-set-key (kbd \"C-z\") popwin:keymap\)
-
-Keymap:
-
-| Key    | Command                               |
-|--------+---------------------------------------|
-| b      | popwin:popup-buffer                   |
-| l      | popwin:popup-last-buffer              |
-| o      | popwin:display-buffer                 |
-| C-b    | popwin:switch-to-last-buffer          |
-| C-p    | popwin:original-pop-to-last-buffer    |
-| C-o    | popwin:original-display-last-buffer   |
-| SPC    | popwin:select-popup-window            |
-| s      | popwin:stick-popup-window             |
-| 0      | popwin:close-popup-window             |
-| f, C-f | popwin:find-file                      |
-| e      | popwin:messages                       |
-| C-u    | popwin:universal-display              |
-| 1      | popwin:one-window                     |")
-
-(provide 'popwin)
-;;; popwin.el ends here
diff --git a/elpa/popwin-20150315.1300/popwin.elc b/elpa/popwin-20150315.1300/popwin.elc
deleted file mode 100644
index 774da22..0000000
--- a/elpa/popwin-20150315.1300/popwin.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/pos-tip-20150318.1513/pos-tip-autoloads.el b/elpa/pos-tip-20150318.1513/pos-tip-autoloads.el
deleted file mode 100644
index a3db701..0000000
--- a/elpa/pos-tip-20150318.1513/pos-tip-autoloads.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; pos-tip-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "pos-tip" "pos-tip.el" (0 0 0 0))
-;;; Generated autoloads from pos-tip.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "pos-tip" '("pos-tip-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; pos-tip-autoloads.el ends here
diff --git a/elpa/pos-tip-20150318.1513/pos-tip-pkg.el b/elpa/pos-tip-20150318.1513/pos-tip-pkg.el
deleted file mode 100644
index 8ce8ca8..0000000
--- a/elpa/pos-tip-20150318.1513/pos-tip-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "pos-tip" "20150318.1513" "Show tooltip at point" 'nil :commit "051e08fec5cf30b7574bdf439f79fef7d42d689d" :keywords '("tooltip") :authors '(("S. Irie")) :maintainer '("S. Irie"))
diff --git a/elpa/pos-tip-20150318.1513/pos-tip.el b/elpa/pos-tip-20150318.1513/pos-tip.el
deleted file mode 100644
index 0052b51..0000000
--- a/elpa/pos-tip-20150318.1513/pos-tip.el
+++ /dev/null
@@ -1,980 +0,0 @@
-;;; pos-tip.el --- Show tooltip at point -*- coding: utf-8 -*-
-
-;; Copyright (C) 2010 S. Irie
-
-;; Author: S. Irie
-;; Maintainer: S. Irie
-;; Keywords: Tooltip
-;; Package-Version: 20150318.1513
-
-(defconst pos-tip-version "0.4.6")
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License as
-;; published by the Free Software Foundation; either version 2, or
-;; (at your option) any later version.
-
-;; It is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
-;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
-;; License for more details.
-
-;; You should have received a copy of the GNU General Public
-;; License along with this program; if not, write to the Free
-;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
-;; MA  02110-1301 USA
-
-;;; Commentary:
-
-;; The standard library tooltip.el provides the function for displaying
-;; a tooltip at mouse position which allows users to easily show it.
-;; However, locating tooltip at arbitrary buffer position in window
-;; is not easy. This program provides such function to be used by other
-;; frontend programs.
-
-;; This program is tested on GNU Emacs 22, 23 under X window system and
-;; Emacs 23 for MS-Windows.
-
-;;
-;; Installation:
-;;
-;; First, save this file as pos-tip.el and byte-compile in
-;; a directory that is listed in load-path.
-;;
-;; Put the following in your .emacs file:
-;;
-;;   (require 'pos-tip)
-;;
-;; To use the full features of this program on MS-Windows,
-;; put the additional setting in .emacs file:
-;;
-;;   (pos-tip-w32-max-width-height)   ; Maximize frame temporarily
-;;
-;; or
-;;
-;;   (pos-tip-w32-max-width-height t) ; Keep frame maximized
-
-;;
-;; Examples:
-;;
-;; We can display a tooltip at the current position by the following:
-;;
-;;   (pos-tip-show "foo bar")
-;;
-;; If you'd like to specify the tooltip color, use an expression as:
-;;
-;;   (pos-tip-show "foo bar" '("white" . "red"))
-;;
-;; Here, "white" and "red" are the foreground color and background
-;; color, respectively.
-
-
-;;; History:
-;; 2013-07-16  P. Kalinowski
-;;         * Adjusted `pos-tip-show' to correctly set tooltip text foreground
-;;           color when using custom color themes.
-;;         * Version 0.4.6
-;;
-;; 2010-09-27  S. Irie
-;;         * Simplified implementation of `pos-tip-window-system'
-;;         * Version 0.4.5
-;;
-;; 2010-08-20  S. Irie
-;;         * Changed to use `window-line-height' to calculate tooltip position
-;;         * Changed `pos-tip-string-width-height' to ignore last empty line
-;;         * Version 0.4.4
-;;
-;; 2010-07-25  S. Irie
-;;         * Bug fix
-;;         * Version 0.4.3
-;;
-;; 2010-06-09  S. Irie
-;;         * Bug fix
-;;         * Version 0.4.2
-;;
-;; 2010-06-04  S. Irie
-;;         * Added support for text-scale-mode
-;;         * Version 0.4.1
-;;
-;; 2010-05-04  S. Irie
-;;         * Added functions:
-;;             `pos-tip-x-display-width', `pos-tip-x-display-height'
-;;             `pos-tip-normalize-natnum', `pos-tip-frame-relative-position'
-;;         * Fixed the supports for multi-displays and multi-frames
-;;         * Version 0.4.0
-;;
-;; 2010-04-29  S. Irie
-;;         * Modified to avoid byte-compile warning
-;;         * Bug fix
-;;         * Version 0.3.6
-;;
-;; 2010-04-29  S. Irie
-;;         * Renamed argument MAX-HEIGHT of `pos-tip-fill-string' to MAX-ROWS
-;;         * Modified old FSF address
-;;         * Version 0.3.5
-;;
-;; 2010-04-29  S. Irie
-;;         * Modified `pos-tip-show' to truncate string exceeding display size
-;;         * Added function `pos-tip-truncate-string'
-;;         * Added optional argument MAX-ROWS to `pos-tip-split-string'
-;;         * Added optional argument MAX-HEIGHT to `pos-tip-fill-string'
-;;         * Version 0.3.4
-;;
-;; 2010-04-16  S. Irie
-;;         * Changed `pos-tip-show' not to fill paragraph unless exceeding WIDTH
-;;         * Version 0.3.3
-;;
-;; 2010-04-08  S. Irie
-;;         * Bug fix
-;;         * Version 0.3.2
-;;
-;; 2010-03-31  S. Irie
-;;         * Bug fix
-;;         * Version 0.3.1
-;;
-;; 2010-03-30  S. Irie
-;;         * Added support for MS-Windows
-;;         * Added option `pos-tip-use-relative-coordinates'
-;;         * Bug fixes
-;;         * Version 0.3.0
-;;
-;; 2010-03-23  S. Irie
-;;         * Changed argument WORD-WRAP to JUSTIFY
-;;         * Added optional argument SQUEEZE
-;;         * Added function `pos-tip-fill-string'
-;;         * Added option `pos-tip-tab-width' used to expand tab characters
-;;         * Bug fixes
-;;         * Version 0.2.0
-;;
-;; 2010-03-22  S. Irie
-;;         * Added optional argument WORD-WRAP to `pos-tip-split-string'
-;;         * Changed `pos-tip-show' to perform word wrap or kinsoku shori
-;;         * Version 0.1.8
-;;
-;; 2010-03-20  S. Irie
-;;         * Added optional argument DY
-;;         * Bug fix
-;;         * Modified docstrings
-;;         * Version 0.1.7
-;;
-;; 2010-03-18  S. Irie
-;;         * Added/modifed docstrings
-;;         * Changed working buffer name to " *xwininfo*"
-;;         * Version 0.1.6
-;;
-;; 2010-03-17  S. Irie
-;;         * Fixed typos in docstrings
-;;         * Version 0.1.5
-;;
-;; 2010-03-16  S. Irie
-;;         * Added support for multi-display environment
-;;         * Bug fix
-;;         * Version 0.1.4
-;;
-;; 2010-03-16  S. Irie
-;;         * Bug fix
-;;         * Changed calculation for `x-max-tooltip-size'
-;;         * Modified docstring
-;;         * Version 0.1.3
-;;
-;; 2010-03-11  S. Irie
-;;         * Modified commentary
-;;         * Version 0.1.2
-;;
-;; 2010-03-11  S. Irie
-;;         * Re-implemented `pos-tip-string-width-height'
-;;         * Added indicator variable `pos-tip-upperside-p'
-;;         * Version 0.1.1
-;;
-;; 2010-03-09  S. Irie
-;;         * Re-implemented `pos-tip-show' (*incompatibly changed*)
-;;             - Use frame default font
-;;             - Automatically calculate tooltip pixel size
-;;             - Added optional arguments: TIP-COLOR, MAX-WIDTH
-;;         * Added utility functions:
-;;             `pos-tip-split-string', `pos-tip-string-width-height'
-;;         * Bug fixes
-;;         * Version 0.1.0
-;;
-;; 2010-03-08  S. Irie
-;;         * Added optional argument DX
-;;         * Version 0.0.4
-;;
-;; 2010-03-08  S. Irie
-;;         * Bug fix
-;;         * Version 0.0.3
-;;
-;; 2010-03-08  S. Irie
-;;         * Modified to move out mouse pointer
-;;         * Version 0.0.2
-;;
-;; 2010-03-07  S. Irie
-;;         * First release
-;;         * Version 0.0.1
-
-;; ToDo:
-
-;;; Code:
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Settings
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defgroup pos-tip nil
-  "Show tooltip at point"
-  :group 'faces
-  :prefix "pos-tip-")
-
-(defcustom pos-tip-border-width 1
-  "Outer border width of pos-tip's tooltip."
-  :type 'integer
-  :group 'pos-tip)
-
-(defcustom pos-tip-internal-border-width 2
-  "Text margin of pos-tip's tooltip."
-  :type 'integer
-  :group 'pos-tip)
-
-(defcustom pos-tip-foreground-color nil
-  "Default foreground color of pos-tip's tooltip.
-When `nil', look up the foreground color of the `tooltip' face."
-  :type '(choice (const :tag "Default" nil)
-                 string)
-  :group 'pos-tip)
-
-(defcustom pos-tip-background-color nil
-  "Default background color of pos-tip's tooltip.
-When `nil', look up the background color of the `tooltip' face."
-  :type '(choice (const :tag "Default" nil)
-                 string)
-  :group 'pos-tip)
-
-(defcustom pos-tip-tab-width nil
-  "Tab width used for `pos-tip-split-string' and `pos-tip-fill-string'
-to expand tab characters. nil means use default value of `tab-width'."
-  :type '(choice (const :tag "Default" nil)
-                 integer)
-  :group 'pos-tip)
-
-(defcustom pos-tip-use-relative-coordinates nil
-  "Non-nil means tooltip location is calculated as a coordinates
-relative to the top left corner of frame. In this case the tooltip
-will always be displayed within the frame.
-
-Note that this variable is automatically set to non-nil if absolute
-coordinates can't be obtained by `pos-tip-compute-pixel-position'."
-  :type 'boolean
-  :group 'pos-tip)
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Functions
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun pos-tip-window-system (&optional frame)
-  "The name of the window system that FRAME is displaying through.
-The value is a symbol---for instance, 'x' for X windows.
-The value is nil if Emacs is using a text-only terminal.
-
-FRAME defaults to the currently selected frame."
-  (let ((type (framep (or frame (selected-frame)))))
-    (if type
-	(and (not (eq type t))
-	     type)
-      (signal 'wrong-type-argument (list 'framep frame)))))
-
-(defun pos-tip-normalize-natnum (object &optional n)
-  "Return a Nth power of 2 if OBJECT is a positive integer.
-Otherwise return 0. Omitting N means return 1 for a positive integer."
-  (ash (if (and (natnump object) (> object 0)) 1 0)
-       (or n 0)))
-
-(defvar pos-tip-saved-frame-coordinates '(0 . 0)
-  "The latest result of `pos-tip-frame-top-left-coordinates'.")
-
-(defvar pos-tip-frame-offset nil
-  "The latest result of `pos-tip-calibrate-frame-offset'. This value
-is used for non-X graphical environment.")
-
-(defvar pos-tip-frame-offset-array [nil nil nil nil]
-  "Array of the results of `pos-tip-calibrate-frame-offset'. They are
-recorded only when `pos-tip-frame-top-left-coordinates' is called for a
-non-X but graphical frame.
-
-The 2nd and 4th elements are the values for frames having a menu bar.
-The 3rd and 4th elements are the values for frames having a tool bar.")
-
-(defun pos-tip-frame-top-left-coordinates (&optional frame)
-  "Return the pixel coordinates of FRAME as a cons cell (LEFT . TOP),
-which are relative to top left corner of screen.
-
-Return nil if failing to acquire the coordinates.
-
-If FRAME is omitted, use selected-frame.
-
-Users can also get the frame coordinates by referring the variable
-`pos-tip-saved-frame-coordinates' just after calling this function."
-  (let ((winsys (pos-tip-window-system frame)))
-    (cond
-     ((null winsys)
-      (error "text-only frame: %S" frame))
-     ((eq winsys 'x)
-      (condition-case nil
-	  (with-current-buffer (get-buffer-create " *xwininfo*")
-	    (let ((case-fold-search nil))
-	      (buffer-disable-undo)
-	      (erase-buffer)
-	      (call-process shell-file-name nil t nil shell-command-switch
-			    (format "xwininfo -display %s -id %s"
-				    (frame-parameter frame 'display)
-				    (frame-parameter frame 'window-id)))
-	      (goto-char (point-min))
-	      (search-forward "\n  Absolute")
-	      (setq pos-tip-saved-frame-coordinates
-		    (cons (string-to-number (buffer-substring-no-properties
-					     (search-forward "X: ")
-					     (line-end-position)))
-			  (string-to-number (buffer-substring-no-properties
-					     (search-forward "Y: ")
-					     (line-end-position)))))))
-	(error nil)))
-     (t
-      (let* ((index (+ (pos-tip-normalize-natnum
-			(frame-parameter frame 'menu-bar-lines) 0)
-		       (pos-tip-normalize-natnum
-			(frame-parameter frame 'tool-bar-lines) 1)))
-	     (offset (or (aref pos-tip-frame-offset-array index)
-			 (aset pos-tip-frame-offset-array index
-			       (pos-tip-calibrate-frame-offset frame)))))
-	(if offset
-	    (setq pos-tip-saved-frame-coordinates
-		  (cons (+ (eval (frame-parameter frame 'left))
-			   (car offset))
-			(+ (eval (frame-parameter frame 'top))
-			   (cdr offset))))))))))
-
-(defun pos-tip-frame-relative-position
-  (frame1 frame2 &optional w32-frame frame-coord1 frame-coord2)
-  "Return the pixel coordinates of FRAME1 relative to FRAME2
-as a cons cell (LEFT . TOP).
-
-W32-FRAME non-nil means both of frames are under `w32' window system.
-
-FRAME-COORD1 and FRAME-COORD2, if given, specify the absolute
-coordinates of FRAME1 and FRAME2, respectively, which make the
-calculations faster if the frames have different heights of menu bars
-and tool bars."
-  (if (and (eq (pos-tip-normalize-natnum
-		(frame-parameter frame1 'menu-bar-lines))
-	       (pos-tip-normalize-natnum
-		(frame-parameter frame2 'menu-bar-lines)))
-	   (or w32-frame
-	       (eq (pos-tip-normalize-natnum
-		    (frame-parameter frame1 'tool-bar-lines))
-		   (pos-tip-normalize-natnum
-		    (frame-parameter frame2 'tool-bar-lines)))))
-      (cons (- (eval (frame-parameter frame1 'left))
-	       (eval (frame-parameter frame2 'left)))
-	    (- (eval (frame-parameter frame1 'top))
-	       (eval (frame-parameter frame2 'top))))
-    (unless frame-coord1
-      (setq frame-coord1 (let (pos-tip-saved-frame-coordinates)
-			   (pos-tip-frame-top-left-coordinates frame1))))
-    (unless frame-coord2
-      (setq frame-coord2 (let (pos-tip-saved-frame-coordinates)
-			   (pos-tip-frame-top-left-coordinates frame2))))
-    (cons (- (car frame-coord1) (car frame-coord2))
-	  (- (cdr frame-coord1) (cdr frame-coord2)))))
-
-(defvar pos-tip-upperside-p nil
-  "Non-nil indicates the latest result of `pos-tip-compute-pixel-position'
-was upper than the location specified by the arguments.")
-
-(defvar pos-tip-w32-saved-max-width-height nil
-  "Display pixel size effective for showing tooltip in MS-Windows desktop.
-This doesn't include the taskbar area, so isn't same as actual display size.")
-
-(defun pos-tip-compute-pixel-position
-  (&optional pos window pixel-width pixel-height frame-coordinates dx dy)
-  "Return pixel position of POS in WINDOW like (X . Y), which indicates
-the absolute or relative coordinates of bottom left corner of the object.
-
-Omitting POS and WINDOW means use current position and selected window,
-respectively.
-
-If PIXEL-WIDTH and PIXEL-HEIGHT are given, this function assumes these
-values as the size of small window like tooltip which is located around the
-object at POS. These values are used to adjust the location in order that
-the tooltip won't disappear by sticking out of the display. By referring
-the variable `pos-tip-upperside-p' after calling this function, user can
-examine whether the tooltip will be located above the specified position.
-
-If FRAME-COORDINATES is omitted or nil, automatically obtain the absolute
-coordinates of the top left corner of frame which WINDOW is on. Here,
-`top left corner of frame' represents the origin of `window-pixel-edges'
-and its coordinates are essential for calculating the return value as
-absolute coordinates. If a cons cell like (LEFT . TOP), specifies the
-frame absolute location and makes the calculation slightly faster, but can
-be used only when it's clear that frame is in the specified position. Users
-can get the latest values of frame coordinates for using in the next call
-by referring the variable `pos-tip-saved-frame-coordinates' just after
-calling this function. Otherwise, FRAME-COORDINATES `relative' means return
-pixel coordinates of the object relative to the top left corner of the frame.
-This is the same effect as `pos-tip-use-relative-coordinates' is non-nil.
-
-DX specifies horizontal offset in pixel.
-
-DY specifies vertical offset in pixel. This makes the calculations done
-without considering the height of object at POS, so the object might be
-hidden by the tooltip."
-  (let* ((frame (window-frame (or window (selected-window))))
-	 (w32-frame (eq (pos-tip-window-system frame) 'w32))
-	 (relative (or pos-tip-use-relative-coordinates
-		       (eq frame-coordinates 'relative)
-		       (and w32-frame
-			    (null pos-tip-w32-saved-max-width-height))))
-	 (frame-coord (or (and relative '(0 . 0))
-			  frame-coordinates
-			  (pos-tip-frame-top-left-coordinates frame)
-			  (progn
-			    (setq relative t
-				  pos-tip-use-relative-coordinates t)
-			  '(0 . 0))))
-	 (posn (posn-at-point (or pos (window-point window)) window))
-	 (line (cdr (posn-actual-col-row posn)))
-	 (line-height (and line
-			   (or (window-line-height line window)
-			       (and (redisplay t)
-				    (window-line-height line window)))))
-	 (x-y (or (posn-x-y posn)
-		  (let ((geom (pos-visible-in-window-p
-			       (or pos (window-point window)) window t)))
-		    (and geom (cons (car geom) (cadr geom))))
-		  '(0 . 0)))
-	 (x (+ (car frame-coord)
-	       (car (window-inside-pixel-edges window))
-	       (car x-y)
-	       (or dx 0)))
-	 (y0 (+ (cdr frame-coord)
-		(cadr (window-pixel-edges window))
-		(or (nth 2 line-height) (cdr x-y))))
-	 (y (+ y0
-	       (or dy
-		   (car line-height)
-		   (with-current-buffer (window-buffer window)
-		     (cond
-		      ;; `posn-object-width-height' returns an incorrect value
-		      ;; when the header line is displayed (Emacs bug #4426).
-		      ((and posn
-			    (null header-line-format))
-		       (cdr (posn-object-width-height posn)))
-		      ((and (bound-and-true-p text-scale-mode)
-			    (not (zerop (with-no-warnings
-					  text-scale-mode-amount))))
-		       (round (* (frame-char-height frame)
-				 (with-no-warnings
-				   (expt text-scale-mode-step
-					 text-scale-mode-amount)))))
-		      (t
-		       (frame-char-height frame)))))))
-	 xmax ymax)
-    (cond
-     (relative
-      (setq xmax (frame-pixel-width frame)
-	    ymax (frame-pixel-height frame)))
-     (w32-frame
-      (setq xmax (car pos-tip-w32-saved-max-width-height)
-	    ymax (cdr pos-tip-w32-saved-max-width-height)))
-     (t
-      (setq xmax (x-display-pixel-width frame)
-	    ymax (x-display-pixel-height frame))))
-    (setq pos-tip-upperside-p (> (+ y (or pixel-height 0))
-				 ymax))
-    (cons (max 0 (min x (- xmax (or pixel-width 0))))
-	  (max 0 (if pos-tip-upperside-p
-		     (- (if dy ymax y0) (or pixel-height 0))
-		   y)))))
-
-(defun pos-tip-cancel-timer ()
-  "Cancel timeout of tooltip."
-  (mapc (lambda (timer)
-	  (if (eq (aref timer 5) 'x-hide-tip)
-	      (cancel-timer timer)))
-	timer-list))
-
-(defun pos-tip-avoid-mouse (left right top bottom &optional frame)
-  "Move out mouse pointer if it is inside region (LEFT RIGHT TOP BOTTOM)
-in FRAME. Return new mouse position like (FRAME . (X . Y))."
-  (unless frame
-    (setq frame (selected-frame)))
-  (let* ((mpos (with-selected-window (frame-selected-window frame)
-		 (mouse-pixel-position)))
-	 (mframe (pop mpos))
-	 (mx (car mpos))
-	 (my (cdr mpos)))
-    (when (and (eq mframe frame)
-	       (numberp mx))
-      (let* ((large-number (+ (frame-pixel-width frame) (frame-pixel-height frame)))
-	     (dl (if (> left 2)
-		     (1+ (- mx left))
-		   large-number))
-	     (dr (if (< (1+ right) (frame-pixel-width frame))
-		     (- right mx)
-		   large-number))
-	     (dt (if (> top 2)
-		     (1+ (- my top))
-		   large-number))
-	     (db (if (< (1+ bottom) (frame-pixel-height frame))
-		     (- bottom my)
-		   large-number))
-	     (d (min dl dr dt db)))
-	(when (> d -2)
-	  (cond
-	   ((= d dl)
-	    (setq mx (- left 2)))
-	   ((= d dr)
-	    (setq mx (1+ right)))
-	   ((= d dt)
-	    (setq my (- top 2)))
-	   (t
-	    (setq my (1+ bottom))))
-	  (set-mouse-pixel-position frame mx my)
-	  (sit-for 0.0001))))
-    (cons mframe (and mpos (cons mx my)))))
-
-(defun pos-tip-compute-foreground-color (tip-color)
-  "Compute the foreground color to use for tooltip.
-
-TIP-COLOR is a face or a cons cell like (FOREGROUND-COLOR . BACKGROUND-COLOR).
-If it is nil, use `pos-tip-foreground-color' or the foreground color of the
-`tooltip' face."
-  (or (and (facep tip-color)
-           (face-attribute tip-color :foreground))
-      (car-safe tip-color)
-      pos-tip-foreground-color
-      (face-foreground 'tooltip)))
-
-(defun pos-tip-compute-background-color (tip-color)
-  "Compute the background color to use for tooltip.
-
-TIP-COLOR is a face or a cons cell like (FOREGROUND-COLOR . BACKGROUND-COLOR).
-If it is nil, use `pos-tip-background-color' or the background color of the
-`tooltip' face."
-  (or (and (facep tip-color)
-           (face-attribute tip-color :background))
-      (cdr-safe tip-color)
-      pos-tip-background-color
-      (face-background 'tooltip)))
-
-(defun pos-tip-show-no-propertize
-  (string &optional tip-color pos window timeout pixel-width pixel-height frame-coordinates dx dy)
-  "Show STRING in a tooltip at POS in WINDOW.
-Analogous to `pos-tip-show' except don't propertize STRING by `pos-tip' face.
-
-PIXEL-WIDTH and PIXEL-HEIGHT specify the size of tooltip, if given. These
-are used to adjust the tooltip position in order that it doesn't disappear by
-sticking out of the display, and also used to prevent it from vanishing by
-overlapping with mouse pointer.
-
-Note that this function itself doesn't calculate tooltip size because the
-character width and height specified by faces are unknown. So users should
-calculate PIXEL-WIDTH and PIXEL-HEIGHT by using `pos-tip-tooltip-width' and
-`pos-tip-tooltip-height', or use `pos-tip-show' instead, which can
-automatically calculate tooltip size.
-
-See `pos-tip-show' for details.
-
-Example:
-
-\(defface my-tooltip
-  '((t
-     :background \"gray85\"
-     :foreground \"black\"
-     :inherit variable-pitch))
-  \"Face for my tooltip.\")
-
-\(defface my-tooltip-highlight
-  '((t
-     :background \"blue\"
-     :foreground \"white\"
-     :inherit my-tooltip))
-  \"Face for my tooltip highlighted.\")
-
-\(let ((str (propertize \" foo \\n bar \\n baz \" 'face 'my-tooltip)))
-  (put-text-property 6 11 'face 'my-tooltip-highlight str)
-  (pos-tip-show-no-propertize str 'my-tooltip))"
-  (unless window
-    (setq window (selected-window)))
-  (let* ((frame (window-frame window))
-	 (winsys (pos-tip-window-system frame))
-	 (x-frame (eq winsys 'x))
-	 (w32-frame (eq winsys 'w32))
-	 (relative (or pos-tip-use-relative-coordinates
-		       (eq frame-coordinates 'relative)
-		       (and w32-frame
-			    (null pos-tip-w32-saved-max-width-height))))
-	 (x-y (prog1
-		  (pos-tip-compute-pixel-position pos window
-						  pixel-width pixel-height
-						  frame-coordinates dx dy)
-		(if pos-tip-use-relative-coordinates
-		    (setq relative t))))
-	 (ax (car x-y))
-	 (ay (cdr x-y))
-	 (rx (if relative ax (- ax (car pos-tip-saved-frame-coordinates))))
-	 (ry (if relative ay (- ay (cdr pos-tip-saved-frame-coordinates))))
-	 (retval (cons rx ry))
-	 (fg (pos-tip-compute-foreground-color tip-color))
-	 (bg (pos-tip-compute-background-color tip-color))
-	 (use-dxdy (or relative
-		       (not x-frame)))
-	 (spacing (frame-parameter frame 'line-spacing))
-	 (border (ash (+ pos-tip-border-width
-			 pos-tip-internal-border-width)
-		      1))
-	 (x-max-tooltip-size
-	  (cons (+ (if x-frame 1 0)
-		   (/ (- (or pixel-width
-			     (cond
-			      (relative
-			       (frame-pixel-width frame))
-			      (w32-frame
-			       (car pos-tip-w32-saved-max-width-height))
-			      (t
-			       (x-display-pixel-width frame))))
-			 border)
-		      (frame-char-width frame)))
-		(/ (- (or pixel-height
-			  (x-display-pixel-height frame))
-		      border)
-		   (frame-char-height frame))))
-	 (mpos (with-selected-window window (mouse-pixel-position)))
-	 (mframe (car mpos))
-	 default-frame-alist)
-    (if (or relative
-	    (and use-dxdy
-		 (null (cadr mpos))))
-	(unless (and (cadr mpos)
-		     (eq mframe frame))
-	  (let* ((edges (window-inside-pixel-edges (cadr (window-list frame))))
-		 (mx (ash (+ (pop edges) (cadr edges)) -1))
-		 (my (ash (+ (pop edges) (cadr edges)) -1)))
-	    (setq mframe frame)
-	    (set-mouse-pixel-position mframe mx my)
-	    (sit-for 0.0001)))
-      (when (and (cadr mpos)
-		 (not (eq mframe frame)))
-	(let ((rel-coord (pos-tip-frame-relative-position frame mframe w32-frame
-							  frame-coordinates)))
-	  (setq rx (+ rx (car rel-coord))
-		ry (+ ry (cdr rel-coord))))))
-    (and pixel-width pixel-height
-	 (setq mpos (pos-tip-avoid-mouse rx (+ rx pixel-width
-					       (if w32-frame 3 0))
-					 ry (+ ry pixel-height)
-					 mframe)))
-    (x-show-tip string mframe
-		`((border-width . ,pos-tip-border-width)
-		  (internal-border-width . ,pos-tip-internal-border-width)
-		  ,@(and (not use-dxdy) `((left . ,ax)
-					  (top . ,ay)))
-		  (font . ,(frame-parameter frame 'font))
-		  ,@(and spacing `((line-spacing . ,spacing)))
-		  ,@(and (stringp fg) `((foreground-color . ,fg)))
-		  ,@(and (stringp bg) `((background-color . ,bg))))
-		(and timeout (> timeout 0) timeout)
-		(and use-dxdy (- rx (cadr mpos)))
-		(and use-dxdy (- ry (cddr mpos))))
-    (if (and timeout (<= timeout 0))
-	(pos-tip-cancel-timer))
-    retval))
-
-(defun pos-tip-split-string (string &optional width margin justify squeeze max-rows)
-  "Split STRING into fixed width strings. Return a list of these strings.
-
-WIDTH specifies the width of filling each paragraph. WIDTH nil means use
-the width of currently selected frame. Note that this function doesn't add any
-padding characters at the end of each row.
-
-MARGIN, if non-nil, specifies left margin width which is the number of spece
-characters to add at the beginning of each row.
-
-The optional fourth argument JUSTIFY specifies which kind of justification
-to do: `full', `left', `right', `center', or `none'. A value of t means handle
-each paragraph as specified by its text properties. Omitting JUSTIFY means
-don't perform justification, word wrap and kinsoku shori (禁則処理).
-
-SQUEEZE nil means leave whitespaces other than line breaks untouched.
-
-MAX-ROWS, if given, specifies maximum number of elements of return value.
-The elements exceeding this number are discarded."
-  (with-temp-buffer
-    (let* ((tab-width (or pos-tip-tab-width tab-width))
-	   (fill-column (or width (frame-width)))
-	   (left-margin (or margin 0))
-	   (kinsoku-limit 1)
-	   indent-tabs-mode
-	   row rows)
-      (insert string)
-      (untabify (point-min) (point-max))
-      (if justify
-	  (fill-region (point-min) (point-max) justify (not squeeze))
-	(setq margin (make-string left-margin ?\s)))
-      (goto-char (point-min))
-      (while (prog2
-		 (let ((line (buffer-substring
-			      (point) (progn (end-of-line) (point)))))
-		   (if justify
-		       (push line rows)
-		     (while (progn
-			      (setq line (concat margin line)
-				    row (truncate-string-to-width line fill-column))
-			      (push row rows)
-			      (if (not (= (length row) (length line)))
-				  (setq line (substring line (length row))))))))
-		 (< (point) (point-max))
-	       (beginning-of-line 2)))
-      (nreverse (if max-rows
-		    (last rows max-rows)
-		  rows)))))
-
-(defun pos-tip-fill-string (string &optional width margin justify squeeze max-rows)
-  "Fill each of the paragraphs in STRING.
-
-WIDTH specifies the width of filling each paragraph. WIDTH nil means use
-the width of currently selected frame. Note that this function doesn't add any
-padding characters at the end of each row.
-
-MARGIN, if non-nil, specifies left margin width which is the number of spece
-characters to add at the beginning of each row.
-
-The optional fourth argument JUSTIFY specifies which kind of justification
-to do: `full', `left', `right', `center', or `none'. A value of t means handle
-each paragraph as specified by its text properties. Omitting JUSTIFY means
-don't perform justification, word wrap and kinsoku shori (禁則処理).
-
-SQUEEZE nil means leave whitespaces other than line breaks untouched.
-
-MAX-ROWS, if given, specifies maximum number of rows. The rows exceeding
-this number are discarded."
-  (if justify
-      (with-temp-buffer
-	(let* ((tab-width (or pos-tip-tab-width tab-width))
-	       (fill-column (or width (frame-width)))
-	       (left-margin (or margin 0))
-	       (kinsoku-limit 1)
-	       indent-tabs-mode)
-	  (insert string)
-	  (untabify (point-min) (point-max))
-	  (fill-region (point-min) (point-max) justify (not squeeze))
-	  (if max-rows
-	      (buffer-substring (goto-char (point-min))
-				(line-end-position max-rows))
-	    (buffer-string))))
-    (mapconcat 'identity
-	       (pos-tip-split-string string width margin nil nil max-rows)
-	       "\n")))
-
-(defun pos-tip-truncate-string (string width height)
-  "Truncate each line of STRING to WIDTH and discard lines exceeding HEIGHT."
-  (with-temp-buffer
-    (insert string)
-    (goto-char (point-min))
-    (let ((nrow 0)
-	  rows)
-      (while (and (< nrow height)
-		  (prog2
-		      (push (truncate-string-to-width
-			     (buffer-substring (point) (progn (end-of-line) (point)))
-			     width)
-			    rows)
-		      (< (point) (point-max))
-		    (beginning-of-line 2)
-		    (setq nrow (1+ nrow)))))
-      (mapconcat 'identity (nreverse rows) "\n"))))
-
-(defun pos-tip-string-width-height (string)
-  "Count columns and rows of STRING. Return a cons cell like (WIDTH . HEIGHT).
-The last empty line of STRING is ignored.
-
-Example:
-
-\(pos-tip-string-width-height \"abc\\nあいう\\n123\")
-;; => (6 . 3)"
-  (with-temp-buffer
-    (insert string)
-    (goto-char (point-min))
-    (end-of-line)
-    (let ((width (current-column))
-	  (height (if (eq (char-before (point-max)) ?\n) 0 1)))
-      (while (< (point) (point-max))
-	(end-of-line 2)
-	(setq width (max (current-column) width)
-	      height (1+ height)))
-      (cons width height))))
-
-(defun pos-tip-x-display-width (&optional frame)
-  "Return maximum column number in tooltip which occupies the full width
-of display. Omitting FRAME means use display that selected frame is in."
-  (1+ (/ (x-display-pixel-width frame) (frame-char-width frame))))
-
-(defun pos-tip-x-display-height (&optional frame)
-  "Return maximum row number in tooltip which occupies the full height
-of display. Omitting FRAME means use display that selected frame is in."
-  (1+ (/ (x-display-pixel-height frame) (frame-char-height frame))))
-
-(defun pos-tip-tooltip-width (width char-width)
-  "Calculate tooltip pixel width."
-  (+ (* width char-width)
-     (ash (+ pos-tip-border-width
-	     pos-tip-internal-border-width)
-	  1)))
-
-(defun pos-tip-tooltip-height (height char-height &optional frame)
-  "Calculate tooltip pixel height."
-  (let ((spacing (or (default-value 'line-spacing)
-		     (frame-parameter frame 'line-spacing))))
-    (+ (* height (+ char-height
-		    (cond
-		     ((integerp spacing)
-		      spacing)
-		     ((floatp spacing)
-		      (truncate (* (frame-char-height frame)
-				   spacing)))
-		     (t 0))))
-       (ash (+ pos-tip-border-width
-	       pos-tip-internal-border-width)
-	    1))))
-
-(defun pos-tip-show
-  (string &optional tip-color pos window timeout width frame-coordinates dx dy)
-  "Show STRING in a tooltip, which is a small X window, at POS in WINDOW
-using frame's default font with TIP-COLOR.
-
-Return pixel position of tooltip relative to top left corner of frame as
-a cons cell like (X . Y).
-
-TIP-COLOR is a face or a cons cell like (FOREGROUND-COLOR . BACKGROUND-COLOR)
-used to specify *only* foreground-color and background-color of tooltip. If
-omitted, use `pos-tip-foreground-color' and `pos-tip-background-color' or the
-foreground and background color of the `tooltip' face instead.
-
-Omitting POS and WINDOW means use current position and selected window,
-respectively.
-
-Automatically hide the tooltip after TIMEOUT seconds. Omitting TIMEOUT means
-use the default timeout of 5 seconds. Non-positive TIMEOUT means don't hide
-tooltip automatically.
-
-WIDTH, if non-nil, specifies the width of filling each paragraph.
-
-If FRAME-COORDINATES is omitted or nil, automatically obtain the absolute
-coordinates of the top left corner of frame which WINDOW is on. Here,
-`top left corner of frame' represents the origin of `window-pixel-edges'
-and its coordinates are essential for calculating the absolute coordinates
-of the tooltip. If a cons cell like (LEFT . TOP), specifies the frame
-absolute location and makes the calculation slightly faster, but can be
-used only when it's clear that frame is in the specified position. Users
-can get the latest values of frame coordinates for using in the next call
-by referring the variable `pos-tip-saved-frame-coordinates' just after
-calling this function. Otherwise, FRAME-COORDINATES `relative' means use
-the pixel coordinates relative to the top left corner of the frame for
-displaying the tooltip. This is the same effect as
-`pos-tip-use-relative-coordinates' is non-nil.
-
-DX specifies horizontal offset in pixel.
-
-DY specifies vertical offset in pixel. This makes the calculations done
-without considering the height of object at POS, so the object might be
-hidden by the tooltip.
-
-See also `pos-tip-show-no-propertize'."
-  (unless window
-    (setq window (selected-window)))
-  (let* ((frame (window-frame window))
-	 (max-width (pos-tip-x-display-width frame))
-	 (max-height (pos-tip-x-display-height frame))
-	 (w-h (pos-tip-string-width-height string))
-         (fg (pos-tip-compute-foreground-color tip-color))
-         (bg (pos-tip-compute-background-color tip-color))
-         (frame-font (find-font (font-spec :name (frame-parameter frame 'font))))
-         (tip-face-attrs (list :font frame-font :foreground fg :background bg)))
-    (cond
-     ((and width
-	   (> (car w-h) width))
-      (setq string (pos-tip-fill-string string width nil 'none nil max-height)
-	    w-h (pos-tip-string-width-height string)))
-     ((or (> (car w-h) max-width)
-	  (> (cdr w-h) max-height))
-      (setq string (pos-tip-truncate-string string max-width max-height)
-	    w-h (pos-tip-string-width-height string))))
-    (pos-tip-show-no-propertize
-     (propertize string 'face tip-face-attrs)
-     tip-color pos window timeout
-     (pos-tip-tooltip-width (car w-h) (frame-char-width frame))
-     (pos-tip-tooltip-height (cdr w-h) (frame-char-height frame) frame)
-     frame-coordinates dx dy)))
-
-(defalias 'pos-tip-hide 'x-hide-tip
-  "Hide pos-tip's tooltip.")
-
-(defun pos-tip-calibrate-frame-offset (&optional frame)
-  "Return coordinates of FRAME orign relative to the top left corner of
-the FRAME extent, like (LEFT . TOP). The return value is recorded to
-`pos-tip-frame-offset'.
-
-Note that this function does't correctly work for X frame and Emacs 22."
-  (setq pos-tip-frame-offset nil)
-  (let* ((window (frame-first-window frame))
-	 (delete-frame-functions
-	  '((lambda (frame)
-	      (if (equal (frame-parameter frame 'name) "tooltip")
-		  (setq pos-tip-frame-offset
-			(cons (eval (frame-parameter frame 'left))
-			      (eval (frame-parameter frame 'top))))))))
-	 (pos-tip-border-width 0)
-	 (pos-tip-internal-border-width 1)
-	 (rpos (pos-tip-show ""
-			     `(nil . ,(frame-parameter frame 'background-color))
-			     (window-start window) window
-			     nil nil 'relative nil 0)))
-    (sit-for 0)
-    (pos-tip-hide)
-    (and pos-tip-frame-offset
-	 (setq pos-tip-frame-offset
-	       (cons (- (car pos-tip-frame-offset)
-			(car rpos)
-			(eval (frame-parameter frame 'left)))
-		     (- (cdr pos-tip-frame-offset)
-			(cdr rpos)
-			(eval (frame-parameter frame 'top))))))))
-
-(defun pos-tip-w32-max-width-height (&optional keep-maximize)
-  "Maximize the currently selected frame temporarily and set
-`pos-tip-w32-saved-max-width-height' the effective display size in order
-to become possible to calculate the absolute location of tooltip.
-
-KEEP-MAXIMIZE non-nil means leave the frame maximized.
-
-Note that this function is usable only in Emacs 23 for MS-Windows."
-  (interactive)
-  (unless (eq window-system 'w32)
-    (error "`pos-tip-w32-max-width-height' can be used only in w32 frame."))
-  ;; Maximize frame
-  (with-no-warnings (w32-send-sys-command 61488))
-  (sit-for 0)
-  (let ((offset (pos-tip-calibrate-frame-offset)))
-    (prog1
-	(setq pos-tip-w32-saved-max-width-height
-	      (cons (frame-pixel-width)
-		    (+ (frame-pixel-height)
-		       (- (cdr offset) (car offset)))))
-      (if (called-interactively-p 'interactive)
-	  (message "%S" pos-tip-w32-saved-max-width-height))
-      (unless keep-maximize
-	;; Restore frame
-	(with-no-warnings (w32-send-sys-command 61728))))))
-
-
-(provide 'pos-tip)
-
-;;;
-;;; pos-tip.el ends here
diff --git a/elpa/pos-tip-20150318.1513/pos-tip.elc b/elpa/pos-tip-20150318.1513/pos-tip.elc
deleted file mode 100644
index 8951e4b..0000000
--- a/elpa/pos-tip-20150318.1513/pos-tip.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/projectile-20181106.1631/projectile-autoloads.el b/elpa/projectile-20181106.1631/projectile-autoloads.el
deleted file mode 100644
index 58a0cf6..0000000
--- a/elpa/projectile-20181106.1631/projectile-autoloads.el
+++ /dev/null
@@ -1,572 +0,0 @@
-;;; projectile-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "projectile" "projectile.el" (0 0 0 0))
-;;; Generated autoloads from projectile.el
-
-(autoload 'projectile-version "projectile" "\
-Get the Projectile version as string.
-
-If called interactively or if SHOW-VERSION is non-nil, show the
-version in the echo area and the messages buffer.
-
-The returned string includes both, the version from package.el
-and the library version, if both a present and different.
-
-If the version number could not be determined, signal an error,
-if called interactively, or if SHOW-VERSION is non-nil, otherwise
-just return nil.
-
-\(fn &optional SHOW-VERSION)" t nil)
-
-(autoload 'projectile-invalidate-cache "projectile" "\
-Remove the current project's files from `projectile-projects-cache'.
-
-With a prefix argument PROMPT prompts for the name of the project whose cache
-to invalidate.
-
-\(fn PROMPT)" t nil)
-
-(autoload 'projectile-purge-file-from-cache "projectile" "\
-Purge FILE from the cache of the current project.
-
-\(fn FILE)" t nil)
-
-(autoload 'projectile-purge-dir-from-cache "projectile" "\
-Purge DIR from the cache of the current project.
-
-\(fn DIR)" t nil)
-
-(autoload 'projectile-cache-current-file "projectile" "\
-Add the currently visited file to the cache.
-
-\(fn)" t nil)
-
-(autoload 'projectile-discover-projects-in-directory "projectile" "\
-Discover any projects in DIRECTORY and add them to the projectile cache.
-This function is not recursive and only adds projects with roots
-at the top level of DIRECTORY.
-
-\(fn DIRECTORY)" t nil)
-
-(autoload 'projectile-discover-projects-in-search-path "projectile" "\
-Discover projects in `projectile-project-search-path'.
-Invoked automatically when `projectile-mode' is enabled.
-
-\(fn)" t nil)
-
-(autoload 'projectile-switch-to-buffer "projectile" "\
-Switch to a project buffer.
-
-\(fn)" t nil)
-
-(autoload 'projectile-switch-to-buffer-other-window "projectile" "\
-Switch to a project buffer and show it in another window.
-
-\(fn)" t nil)
-
-(autoload 'projectile-switch-to-buffer-other-frame "projectile" "\
-Switch to a project buffer and show it in another window.
-
-\(fn)" t nil)
-
-(autoload 'projectile-display-buffer "projectile" "\
-Display a project buffer in another window without selecting it.
-
-\(fn)" t nil)
-
-(autoload 'projectile-project-buffers-other-buffer "projectile" "\
-Switch to the most recently selected buffer project buffer.
-Only buffers not visible in windows are returned.
-
-\(fn)" t nil)
-
-(autoload 'projectile-multi-occur "projectile" "\
-Do a `multi-occur' in the project's buffers.
-With a prefix argument, show NLINES of context.
-
-\(fn &optional NLINES)" t nil)
-
-(autoload 'projectile-find-other-file "projectile" "\
-Switch between files with the same name but different extensions.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable `projectile-other-file-alist'.
-
-\(fn &optional FLEX-MATCHING)" t nil)
-
-(autoload 'projectile-find-other-file-other-window "projectile" "\
-Switch between files with the same name but different extensions in other window.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable `projectile-other-file-alist'.
-
-\(fn &optional FLEX-MATCHING)" t nil)
-
-(autoload 'projectile-find-other-file-other-frame "projectile" "\
-Switch between files with the same name but different extensions in other window.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable `projectile-other-file-alist'.
-
-\(fn &optional FLEX-MATCHING)" t nil)
-
-(autoload 'projectile-find-file-dwim "projectile" "\
-Jump to a project's files using completion based on context.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-If point is on a filename, Projectile first tries to search for that
-file in project:
-
-- If it finds just a file, it switches to that file instantly.  This works even
-if the filename is incomplete, but there's only a single file in the current project
-that matches the filename at point.  For example, if there's only a single file named
-\"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
-`projectile-find-file-dwim' still switches to \"projectile/projectile.el\" immediately
- because this is the only filename that matches.
-
-- If it finds a list of files, the list is displayed for selecting.  A list of
-files is displayed when a filename appears more than one in the project or the
-filename at point is a prefix of more than two files in a project.  For example,
-if `projectile-find-file-dwim' is executed on a filepath like \"projectile/\", it lists
-the content of that directory.  If it is executed on a partial filename like
- \"projectile/a\", a list of files with character 'a' in that directory is presented.
-
-- If it finds nothing, display a list of all files in project for selecting.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-find-file-dwim-other-window "projectile" "\
-Jump to a project's files using completion based on context in other window.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-If point is on a filename, Projectile first tries to search for that
-file in project:
-
-- If it finds just a file, it switches to that file instantly.  This works even
-if the filename is incomplete, but there's only a single file in the current project
-that matches the filename at point.  For example, if there's only a single file named
-\"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
-`projectile-find-file-dwim-other-window' still switches to \"projectile/projectile.el\"
-immediately because this is the only filename that matches.
-
-- If it finds a list of files, the list is displayed for selecting.  A list of
-files is displayed when a filename appears more than one in the project or the
-filename at point is a prefix of more than two files in a project.  For example,
-if `projectile-find-file-dwim-other-window' is executed on a filepath like \"projectile/\", it lists
-the content of that directory.  If it is executed on a partial filename
-like \"projectile/a\", a list of files with character 'a' in that directory
-is presented.
-
-- If it finds nothing, display a list of all files in project for selecting.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-find-file-dwim-other-frame "projectile" "\
-Jump to a project's files using completion based on context in other frame.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-If point is on a filename, Projectile first tries to search for that
-file in project:
-
-- If it finds just a file, it switches to that file instantly.  This works even
-if the filename is incomplete, but there's only a single file in the current project
-that matches the filename at point.  For example, if there's only a single file named
-\"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
-`projectile-find-file-dwim-other-frame' still switches to \"projectile/projectile.el\"
-immediately because this is the only filename that matches.
-
-- If it finds a list of files, the list is displayed for selecting.  A list of
-files is displayed when a filename appears more than one in the project or the
-filename at point is a prefix of more than two files in a project.  For example,
-if `projectile-find-file-dwim-other-frame' is executed on a filepath like \"projectile/\", it lists
-the content of that directory.  If it is executed on a partial filename
-like \"projectile/a\", a list of files with character 'a' in that directory
-is presented.
-
-- If it finds nothing, display a list of all files in project for selecting.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-find-file "projectile" "\
-Jump to a project's file using completion.
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-find-file-other-window "projectile" "\
-Jump to a project's file using completion and show it in another window.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-find-file-other-frame "projectile" "\
-Jump to a project's file using completion and show it in another frame.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-toggle-project-read-only "projectile" "\
-Toggle project read only.
-
-\(fn)" t nil)
-
-(autoload 'projectile-find-dir "projectile" "\
-Jump to a project's directory using completion.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-find-dir-other-window "projectile" "\
-Jump to a project's directory in other window using completion.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-find-dir-other-frame "projectile" "\
-Jump to a project's directory in other window using completion.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-find-test-file "projectile" "\
-Jump to a project's test file using completion.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-\(fn &optional INVALIDATE-CACHE)" t nil)
-
-(autoload 'projectile-project-info "projectile" "\
-Display info for current project.
-
-\(fn)" t nil)
-
-(autoload 'projectile-find-implementation-or-test-other-window "projectile" "\
-Open matching implementation or test file in other window.
-
-\(fn)" t nil)
-
-(autoload 'projectile-find-implementation-or-test-other-frame "projectile" "\
-Open matching implementation or test file in other frame.
-
-\(fn)" t nil)
-
-(autoload 'projectile-toggle-between-implementation-and-test "projectile" "\
-Toggle between an implementation file and its test file.
-
-\(fn)" t nil)
-
-(autoload 'projectile-grep "projectile" "\
-Perform rgrep in the project.
-
-With a prefix ARG asks for files (globbing-aware) which to grep in.
-With prefix ARG of `-' (such as `M--'), default the files (without prompt),
-to `projectile-grep-default-files'.
-
-With REGEXP given, don't query the user for a regexp.
-
-\(fn &optional REGEXP ARG)" t nil)
-
-(autoload 'projectile-ag "projectile" "\
-Run an ag search with SEARCH-TERM in the project.
-
-With an optional prefix argument ARG SEARCH-TERM is interpreted as a
-regular expression.
-
-\(fn SEARCH-TERM &optional ARG)" t nil)
-
-(autoload 'projectile-ripgrep "projectile" "\
-Run a Ripgrep search with `SEARCH-TERM' at current project root.
-
-SEARCH-TERM is a regexp.
-
-\(fn SEARCH-TERM)" t nil)
-
-(autoload 'projectile-regenerate-tags "projectile" "\
-Regenerate the project's [e|g]tags.
-
-\(fn)" t nil)
-
-(autoload 'projectile-find-tag "projectile" "\
-Find tag in project.
-
-\(fn)" t nil)
-
-(autoload 'projectile-run-command-in-root "projectile" "\
-Invoke `execute-extended-command' in the project's root.
-
-\(fn)" t nil)
-
-(autoload 'projectile-run-shell-command-in-root "projectile" "\
-Invoke `shell-command' in the project's root.
-
-\(fn)" t nil)
-
-(autoload 'projectile-run-async-shell-command-in-root "projectile" "\
-Invoke `async-shell-command' in the project's root.
-
-\(fn)" t nil)
-
-(autoload 'projectile-run-shell "projectile" "\
-Invoke `shell' in the project's root.
-
-Switch to the project specific shell buffer if it already exists.
-
-\(fn)" t nil)
-
-(autoload 'projectile-run-eshell "projectile" "\
-Invoke `eshell' in the project's root.
-
-Switch to the project specific eshell buffer if it already exists.
-
-\(fn)" t nil)
-
-(autoload 'projectile-run-ielm "projectile" "\
-Invoke `ielm' in the project's root.
-
-Switch to the project specific ielm buffer if it already exists.
-
-\(fn)" t nil)
-
-(autoload 'projectile-run-term "projectile" "\
-Invoke `term' in the project's root.
-
-Switch to the project specific term buffer if it already exists.
-
-\(fn PROGRAM)" t nil)
-
-(autoload 'projectile-replace "projectile" "\
-Replace literal string in project using non-regexp `tags-query-replace'.
-
-With a prefix argument ARG prompts you for a directory on which
-to run the replacement.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'projectile-replace-regexp "projectile" "\
-Replace a regexp in the project using `tags-query-replace'.
-
-With a prefix argument ARG prompts you for a directory on which
-to run the replacement.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'projectile-kill-buffers "projectile" "\
-Kill project buffers.
-
-The buffer are killed according to the value of
-`projectile-kill-buffers-filter'.
-
-\(fn)" t nil)
-
-(autoload 'projectile-save-project-buffers "projectile" "\
-Save all project buffers.
-
-\(fn)" t nil)
-
-(autoload 'projectile-dired "projectile" "\
-Open `dired' at the root of the project.
-
-\(fn)" t nil)
-
-(autoload 'projectile-dired-other-window "projectile" "\
-Open `dired'  at the root of the project in another window.
-
-\(fn)" t nil)
-
-(autoload 'projectile-dired-other-frame "projectile" "\
-Open `dired' at the root of the project in another frame.
-
-\(fn)" t nil)
-
-(autoload 'projectile-vc "projectile" "\
-Open `vc-dir' at the root of the project.
-
-For git projects `magit-status-internal' is used if available.
-For hg projects `monky-status' is used if available.
-
-If PROJECT-ROOT is given, it is opened instead of the project
-root directory of the current buffer file.  If interactively
-called with a prefix argument, the user is prompted for a project
-directory to open.
-
-\(fn &optional PROJECT-ROOT)" t nil)
-
-(autoload 'projectile-recentf "projectile" "\
-Show a list of recently visited files in a project.
-
-\(fn)" t nil)
-
-(autoload 'projectile-configure-project "projectile" "\
-Run project configure command.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-with a prefix ARG.
-
-\(fn ARG)" t nil)
-
-(autoload 'projectile-compile-project "projectile" "\
-Run project compilation command.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-with a prefix ARG.
-
-\(fn ARG)" t nil)
-
-(autoload 'projectile-test-project "projectile" "\
-Run project test command.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-with a prefix ARG.
-
-\(fn ARG)" t nil)
-
-(autoload 'projectile-run-project "projectile" "\
-Run project run command.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-with a prefix ARG.
-
-\(fn ARG)" t nil)
-
-(autoload 'projectile-repeat-last-command "projectile" "\
-Run last projectile external command.
-
-External commands are: `projectile-configure-project',
-`projectile-compile-project', `projectile-test-project' and
-`projectile-run-project'.
-
-If the prefix argument SHOW_PROMPT is non nil, the command can be edited.
-
-\(fn SHOW-PROMPT)" t nil)
-
-(autoload 'projectile-switch-project "projectile" "\
-Switch to a project we have visited before.
-Invokes the command referenced by `projectile-switch-project-action' on switch.
-With a prefix ARG invokes `projectile-commander' instead of
-`projectile-switch-project-action.'
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'projectile-switch-open-project "projectile" "\
-Switch to a project we have currently opened.
-Invokes the command referenced by `projectile-switch-project-action' on switch.
-With a prefix ARG invokes `projectile-commander' instead of
-`projectile-switch-project-action.'
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'projectile-find-file-in-directory "projectile" "\
-Jump to a file in a (maybe regular) DIRECTORY.
-
-This command will first prompt for the directory the file is in.
-
-\(fn &optional DIRECTORY)" t nil)
-
-(autoload 'projectile-find-file-in-known-projects "projectile" "\
-Jump to a file in any of the known projects.
-
-\(fn)" t nil)
-
-(autoload 'projectile-cleanup-known-projects "projectile" "\
-Remove known projects that don't exist anymore.
-
-\(fn)" t nil)
-
-(autoload 'projectile-clear-known-projects "projectile" "\
-Clear both `projectile-known-projects' and `projectile-known-projects-file'.
-
-\(fn)" t nil)
-
-(autoload 'projectile-remove-known-project "projectile" "\
-Remove PROJECT from the list of known projects.
-
-\(fn &optional PROJECT)" t nil)
-
-(autoload 'projectile-remove-current-project-from-known-projects "projectile" "\
-Remove the current project from the list of known projects.
-
-\(fn)" t nil)
-
-(autoload 'projectile-ibuffer "projectile" "\
-Open an IBuffer window showing all buffers in the current project.
-
-Let user choose another project when PROMPT-FOR-PROJECT is supplied.
-
-\(fn PROMPT-FOR-PROJECT)" t nil)
-
-(autoload 'projectile-commander "projectile" "\
-Execute a Projectile command with a single letter.
-The user is prompted for a single character indicating the action to invoke.
-The `?' character describes then
-available actions.
-
-See `def-projectile-commander-method' for defining new methods.
-
-\(fn)" t nil)
-
-(autoload 'projectile-browse-dirty-projects "projectile" "\
-Browse dirty version controlled projects.
-
-With a prefix argument, or if CACHED is non-nil, try to use the cached
-dirty project list.
-
-\(fn &optional CACHED)" t nil)
-
-(autoload 'projectile-edit-dir-locals "projectile" "\
-Edit or create a .dir-locals.el file of the project.
-
-\(fn)" t nil)
-
-(defvar projectile-mode nil "\
-Non-nil if Projectile mode is enabled.
-See the `projectile-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `projectile-mode'.")
-
-(custom-autoload 'projectile-mode "projectile" nil)
-
-(autoload 'projectile-mode "projectile" "\
-Minor mode to assist project management and navigation.
-
-When called interactively, toggle `projectile-mode'.  With prefix
-ARG, enable `projectile-mode' if ARG is positive, otherwise disable
-it.
-
-When called from Lisp, enable `projectile-mode' if ARG is omitted,
-nil or positive.  If ARG is `toggle', toggle `projectile-mode'.
-Otherwise behave as if called interactively.
-
-\\{projectile-mode-map}
-
-\(fn &optional ARG)" t nil)
-
-(define-obsolete-function-alias 'projectile-global-mode 'projectile-mode "1.0")
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "projectile" '("projectile-" "??" "def-projectile-commander-method")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; projectile-autoloads.el ends here
diff --git a/elpa/projectile-20181106.1631/projectile-pkg.el b/elpa/projectile-20181106.1631/projectile-pkg.el
deleted file mode 100644
index a361656..0000000
--- a/elpa/projectile-20181106.1631/projectile-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "projectile" "20181106.1631" "Manage and navigate projects in Emacs easily" '((emacs "25.1") (pkg-info "0.4")) :commit "9482d69e5ca6549ec7baea58f86c1445b544563b" :keywords '("project" "convenience") :authors '(("Bozhidar Batsov" . "bozhidar@batsov.com")) :maintainer '("Bozhidar Batsov" . "bozhidar@batsov.com") :url "https://github.com/bbatsov/projectile")
diff --git a/elpa/projectile-20181106.1631/projectile.el b/elpa/projectile-20181106.1631/projectile.el
deleted file mode 100644
index 995def8..0000000
--- a/elpa/projectile-20181106.1631/projectile.el
+++ /dev/null
@@ -1,4346 +0,0 @@
-;;; projectile.el --- Manage and navigate projects in Emacs easily -*- lexical-binding: t -*-
-
-;; Copyright © 2011-2018 Bozhidar Batsov <bozhidar@batsov.com>
-
-;; Author: Bozhidar Batsov <bozhidar@batsov.com>
-;; URL: https://github.com/bbatsov/projectile
-;; Package-Version: 20181106.1631
-;; Keywords: project, convenience
-;; Version: 1.1.0-snapshot
-;; Package-Requires: ((emacs "25.1") (pkg-info "0.4"))
-
-;; This file is NOT part of GNU Emacs.
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-;;
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-;; Boston, MA 02110-1301, USA.
-
-;;; Commentary:
-;;
-;; This library provides easy project management and navigation.  The
-;; concept of a project is pretty basic - just a folder containing
-;; special file.  Currently git, mercurial and bazaar repos are
-;; considered projects by default.  If you want to mark a folder
-;; manually as a project just create an empty .projectile file in
-;; it.  See the README for more details.
-;;
-;;; Code:
-
-(require 'cl-lib)
-(require 'thingatpt)
-(require 'ibuffer)
-(require 'ibuf-ext)
-(require 'compile)
-(require 'grep)
-(eval-when-compile
-  (require 'subr-x))
-
-(eval-when-compile
-  (defvar ag-ignore-list)
-  (defvar ggtags-completion-table)
-  (defvar tags-completion-table)
-  (defvar tags-loop-scan)
-  (defvar tags-loop-operate)
-  (defvar eshell-buffer-name)
-  (defvar explicit-shell-file-name))
-
-(declare-function ggtags-ensure-project "ggtags")
-(declare-function ggtags-update-tags "ggtags")
-(declare-function pkg-info-version-info "pkg-info")
-(declare-function tags-completion-table "etags")
-(declare-function make-term "term")
-(declare-function term-mode "term")
-(declare-function term-char-mode "term")
-(declare-function eshell-search-path "esh-ext")
-(declare-function vc-dir "vc-dir")
-(declare-function vc-dir-busy "vc-dir")
-(declare-function ripgrep-regexp "ripgrep")
-(declare-function string-trim "subr-x")
-
-(defvar grep-files-aliases)
-(defvar grep-find-ignored-directories)
-(defvar grep-find-ignored-files)
-
-
-;;; Customization
-(defgroup projectile nil
-  "Manage and navigate projects easily."
-  :group 'tools
-  :group 'convenience
-  :link '(url-link :tag "GitHub" "https://github.com/bbatsov/projectile")
-  :link '(url-link :tag "Online Manual" "https://docs.projectile.mx/")
-  :link '(emacs-commentary-link :tag "Commentary" "projectile"))
-
-(defcustom projectile-indexing-method (if (eq system-type 'windows-nt) 'native 'alien)
-  "Specifies the indexing method used by Projectile.
-
-There are three indexing methods - native, hybrid and alien.
-
-The native method is implemented in Emacs Lisp (therefore it is
-native to Emacs).  Its advantage is that it is portable and will
-work everywhere that Emacs does.  Its disadvantage is that it is a
-bit slow (especially for large projects).  Generally it's a good
-idea to pair the native indexing method with caching.
-
-The hybrid indexing method uses external tools (e.g. git, find,
-etc) to speed up the indexing process.  Still, the files will be
-post-processed by Projectile for sorting/filtering purposes.
-In this sense that approach is a hybrid between native and indexing
-and alien indexing.
-
-The alien indexing method optimizes to the limit the speed
-of the hybrid indexing method.  This means that Projectile will
-not do any processing of the files returned by the external
-commands and you're going to get the maximum performance
-possible.  This behaviour makes a lot of sense for most people,
-as they'd typically be putting ignores in their VCS config and
-won't care about any additional ignores/unignores/sorting that
-Projectile might also provide.
-
-The disadvantage of the hybrid and alien methods is that they are not well
-supported on Windows systems.  That's why by default alien indexing is the
-default on all operating systems, except Windows."
-  :group 'projectile
-  :type '(radio
-          (const :tag "Native" native)
-          (const :tag "Hybrid" hybrid)
-          (const :tag "Alien" alien)))
-
-(defcustom projectile-enable-caching (eq projectile-indexing-method 'native)
-  "When t enables project files caching.
-
-Project caching is automatically enabled by default if you're
-using the native indexing method."
-  :group 'projectile
-  :type 'boolean)
-
-(defcustom projectile-kill-buffers-filter 'kill-all
-  "Determine which buffers are killed by `projectile-kill-buffers'.
-
-When the kill-all option is selected, kills each buffer.
-
-When the kill-only-files option is selected, kill only the buffer
-associated to a file.
-
-Otherwise, it should be a predicate that takes one argument: the buffer to
-be killed."
-  :group 'projectile
-  :type '(radio
-          (const :tag "All project buffers" kill-all)
-          (const :tag "Project file buffers" kill-only-files)
-          (function :tag "Predicate")))
-
-(defcustom projectile-file-exists-local-cache-expire nil
-  "Number of seconds before the local file existence cache expires.
-Local refers to a file on a local file system.
-
-A value of nil disables this cache.
-See `projectile-file-exists-p' for details."
-  :group 'projectile
-  :type '(choice (const :tag "Disabled" nil)
-                 (integer :tag "Seconds")))
-
-(defcustom projectile-file-exists-remote-cache-expire (* 5 60)
-  "Number of seconds before the remote file existence cache expires.
-Remote refers to a file on a remote file system such as tramp.
-
-A value of nil disables this cache.
-See `projectile-file-exists-p' for details."
-  :group 'projectile
-  :type '(choice (const :tag "Disabled" nil)
-                 (integer :tag "Seconds")))
-
-(defcustom projectile-files-cache-expire nil
-  "Number of seconds before project files list cache expires.
-
-A value of nil means the cache never expires."
-  :group 'projectile
-  :type '(choice (const :tag "Disabled" nil)
-                 (integer :tag "Seconds")))
-
-(defcustom projectile-require-project-root 'prompt
-  "Require the presence of a project root to operate when true.
-When set to 'prompt Projectile will ask you to select a project
-directory if you're not in a project.
-
-When nil Projectile will consider the current directory the project root."
-  :group 'projectile
-  :type '(choice (const :tag "No" nil)
-                 (const :tag "Yes" t)
-                 (const :tag "Prompt for project" prompt)))
-
-(defcustom projectile-completion-system 'ido
-  "The completion system to be used by Projectile."
-  :group 'projectile
-  :type '(radio
-          (const :tag "Ido" ido)
-          (const :tag "Helm" helm)
-          (const :tag "Ivy" ivy)
-          (const :tag "Default" default)
-          (function :tag "Custom function")))
-
-(defcustom projectile-keymap-prefix nil
-  "Projectile keymap prefix."
-  :group 'projectile
-  :type 'string)
-
-(make-obsolete-variable 'projectile-keymap-prefix "Use (define-key projectile-mode-map (kbd ...) 'projectile-command-map) instead." "1.1.0")
-
-(defcustom projectile-cache-file
-  (expand-file-name "projectile.cache" user-emacs-directory)
-  "The name of Projectile's cache file."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-tags-file-name "TAGS"
-  "The tags filename Projectile's going to use."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-tags-command "ctags -Re -f \"%s\" %s \"%s\""
-  "The command Projectile's going to use to generate a TAGS file."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-tags-backend 'auto
-  "The tag backend that Projectile should use.
-
-If set to 'auto', `projectile-find-tag' will automatically choose
-which backend to use.  Preference order is ggtags -> xref
--> etags-select -> `find-tag'.  Variable can also be set to specify which
-backend to use.  If selected backend is unavailable, fall back to
-`find-tag'.
-
-If this variable is set to 'auto' and ggtags is available, or if
-set to 'ggtags', then ggtags will be used for
-`projectile-regenerate-tags'.  For all other settings
-`projectile-tags-command' will be used."
-  :group 'projectile
-  :type '(radio
-          (const :tag "auto" auto)
-          (const :tag "xref" xref)
-          (const :tag "ggtags" ggtags)
-          (const :tag "etags" etags-select)
-          (const :tag "standard" find-tag))
-  :package-version '(projectile . "0.14.0"))
-
-(defcustom projectile-sort-order 'default
-  "The sort order used for a project's files."
-  :group 'projectile
-  :type '(radio
-          (const :tag "default" default)
-          (const :tag "recentf" recentf)
-          (const :tag "recently active" recently-active)
-          (const :tag "access time" access-time)
-          (const :tag "modification time" modification-time)))
-
-(defcustom projectile-verbose t
-  "Echo messages that are not errors."
-  :group 'projectile
-  :type 'boolean)
-
-(defcustom projectile-buffers-filter-function nil
-  "A function used to filter the buffers in `projectile-project-buffers'.
-
-The function should accept and return a list of Emacs buffers.
-Two example filter functions are shipped by default -
-`projectile-buffers-with-file' and
-`projectile-buffers-with-file-or-process'."
-  :group 'projectile
-  :type 'function)
-
-(defcustom projectile-project-name nil
-  "If this value is non-nil, it will be used as project name.
-
-It has precedence over function `projectile-project-name-function'."
-  :group 'projectile
-  :type 'string
-  :package-version '(projectile . "0.14.0"))
-
-(defcustom projectile-project-name-function 'projectile-default-project-name
-  "A function that receives the project-root and returns the project name.
-
-If variable `projectile-project-name' is non-nil, this function will not be used."
-  :group 'projectile
-  :type 'function
-  :package-version '(projectile . "0.14.0"))
-
-(defcustom projectile-project-root-files
-  '("rebar.config"       ; Rebar project file
-    "project.clj"        ; Leiningen project file
-    "build.boot"         ; Boot-clj project file
-    "deps.edn"           ; Clojure CLI project file
-    "SConstruct"         ; Scons project file
-    "pom.xml"            ; Maven project file
-    "build.sbt"          ; SBT project file
-    "gradlew"            ; Gradle wrapper script
-    "build.gradle"       ; Gradle project file
-    ".ensime"            ; Ensime configuration file
-    "Gemfile"            ; Bundler file
-    "requirements.txt"   ; Pip file
-    "setup.py"           ; Setuptools file
-    "tox.ini"            ; Tox file
-    "composer.json"      ; Composer project file
-    "Cargo.toml"         ; Cargo project file
-    "mix.exs"            ; Elixir mix project file
-    "stack.yaml"         ; Haskell's stack tool based project
-    "info.rkt"           ; Racket package description file
-    "DESCRIPTION"        ; R package description file
-    "TAGS"               ; etags/ctags are usually in the root of project
-    "GTAGS"              ; GNU Global tags
-    "configure.in"       ; autoconf old style
-    "configure.ac"       ; autoconf new style
-    "cscope.out"         ; cscope
-    )
-  "A list of files considered to mark the root of a project.
-The topmost match has precedence."
-  :group 'projectile
-  :type '(repeat string))
-
-(defcustom projectile-project-root-files-bottom-up
-  '(".projectile" ; projectile project marker
-    ".git"        ; Git VCS root dir
-    ".hg"         ; Mercurial VCS root dir
-    ".fslckout"   ; Fossil VCS root dir
-    "_FOSSIL_"    ; Fossil VCS root DB on Windows
-    ".bzr"        ; Bazaar VCS root dir
-    "_darcs"      ; Darcs VCS root dir
-    )
-  "A list of files considered to mark the root of a project.
-The bottommost (parentmost) match has precedence."
-  :group 'projectile
-  :type '(repeat string))
-
-(defcustom projectile-project-root-files-top-down-recurring
-  '(".svn" ; Svn VCS root dir
-    "CVS"  ; Csv VCS root dir
-    "Makefile")
-  "A list of files considered to mark the root of a project.
-The search starts at the top and descends down till a directory
-that contains a match file but its parent does not.  Thus, it's a
-bottommost match in the topmost sequence of directories
-containing a root file."
-  :group 'projectile
-  :type '(repeat string))
-
-(defcustom projectile-project-root-files-functions
-  '(projectile-root-local
-    projectile-root-bottom-up
-    projectile-root-top-down
-    projectile-root-top-down-recurring)
-  "A list of functions for finding project roots."
-  :group 'projectile
-  :type '(repeat function))
-
-(defcustom projectile-globally-ignored-files
-  (list projectile-tags-file-name)
-  "A list of files globally ignored by projectile."
-  :group 'projectile
-  :type '(repeat string))
-
-(defcustom projectile-globally-unignored-files nil
-  "A list of files globally unignored by projectile.
-
-Regular expressions can be used."
-  :group 'projectile
-  :type '(repeat string)
-  :package-version '(projectile . "0.14.0"))
-
-(defcustom projectile-globally-ignored-file-suffixes
-  nil
-  "A list of file suffixes globally ignored by projectile."
-  :group 'projectile
-  :type '(repeat string))
-
-(defcustom projectile-globally-ignored-directories
-  '(".idea"
-    ".ensime_cache"
-    ".eunit"
-    ".git"
-    ".hg"
-    ".fslckout"
-    "_FOSSIL_"
-    ".bzr"
-    "_darcs"
-    ".tox"
-    ".svn"
-    ".stack-work")
-  "A list of directories globally ignored by projectile.
-
-Regular expressions can be used."
-  :safe (lambda (x) (not (remq t (mapcar #'stringp x))))
-  :group 'projectile
-  :type '(repeat string))
-
-(defcustom projectile-globally-unignored-directories nil
-  "A list of directories globally unignored by projectile."
-  :group 'projectile
-  :type '(repeat string)
-  :package-version '(projectile . "0.14.0"))
-
-(defcustom projectile-globally-ignored-modes
-  '("erc-mode"
-    "help-mode"
-    "completion-list-mode"
-    "Buffer-menu-mode"
-    "gnus-.*-mode"
-    "occur-mode")
-  "A list of regular expressions for major modes ignored by projectile.
-
-If a buffer is using a given major mode, projectile will ignore
-it for functions working with buffers."
-  :group 'projectile
-  :type '(repeat string))
-
-(defcustom projectile-globally-ignored-buffers nil
-  "A list of buffer-names ignored by projectile.
-
-You can use either exact buffer names or regular expressions.
-If a buffer is in the list projectile will ignore it for
-functions working with buffers."
-  :group 'projectile
-  :type '(repeat string)
-  :package-version '(projectile . "0.12.0"))
-
-(defcustom projectile-find-file-hook nil
-  "Hooks run when a file is opened with `projectile-find-file'."
-  :group 'projectile
-  :type 'hook)
-
-(defcustom projectile-find-dir-hook nil
-  "Hooks run when a directory is opened with `projectile-find-dir'."
-  :group 'projectile
-  :type 'hook)
-
-(defcustom projectile-switch-project-action 'projectile-find-file
-  "Action invoked after switching projects with `projectile-switch-project'.
-
-Any function that does not take arguments will do."
-  :group 'projectile
-  :type 'function)
-
-(defcustom projectile-find-dir-includes-top-level nil
-  "If true, add top-level dir to options offered by `projectile-find-dir'."
-  :group 'projectile
-  :type 'boolean)
-
-(defcustom projectile-use-git-grep nil
-  "If true, use `vc-git-grep' in git projects."
-  :group 'projectile
-  :type 'boolean)
-
-(defcustom projectile-grep-finished-hook nil
-  "Hooks run when `projectile-grep' finishes."
-  :group 'projectile
-  :type 'hook
-  :package-version '(projectile . "0.14.0"))
-
-(defcustom projectile-test-prefix-function 'projectile-test-prefix
-  "Function to find test files prefix based on PROJECT-TYPE."
-  :group 'projectile
-  :type 'function)
-
-(defcustom projectile-test-suffix-function 'projectile-test-suffix
-  "Function to find test files suffix based on PROJECT-TYPE."
-  :group 'projectile
-  :type 'function)
-
-(defcustom projectile-dynamic-mode-line t
-  "If true, update the mode-line dynamically.
-Only file buffers are affected by this, as the update happens via
-`find-file-hook'.
-
-See also `projectile-mode-line-function' and `projectile-update-mode-line'."
-  :group 'projectile
-  :type 'boolean
-  :package-version '(projectile . "1.1.0"))
-
-(defcustom projectile-mode-line-function 'projectile-default-mode-line
-  "The function to use to generate project-specific mode-line.
-The default function adds the project name and type to the mode-line.
-See also `projectile-update-mode-line'."
-  :group 'projectile
-  :type 'function
-  :package-version '(projectile . "1.1.0"))
-
-
-;;; Idle Timer
-(defvar projectile-idle-timer nil
-  "The timer object created when `projectile-enable-idle-timer' is non-nil.")
-
-(defcustom projectile-idle-timer-seconds 30
-  "The idle period to use when `projectile-enable-idle-timer' is non-nil."
-  :group 'projectile
-  :type 'number)
-
-(defcustom projectile-idle-timer-hook '(projectile-regenerate-tags)
-  "The hook run when `projectile-enable-idle-timer' is non-nil."
-  :group 'projectile
-  :type '(repeat symbol))
-
-(defcustom projectile-enable-idle-timer nil
-  "Enables idle timer hook `projectile-idle-timer-functions'.
-
-When `projectile-enable-idle-timer' is non-nil, the hook
-`projectile-idle-timer-hook' is run each time Emacs has been idle
-for `projectile-idle-timer-seconds' seconds and we're in a
-project."
-  :group 'projectile
-  :set (lambda (symbol value)
-         (set symbol value)
-         (when projectile-idle-timer
-           (cancel-timer projectile-idle-timer))
-         (setq projectile-idle-timer nil)
-         (when projectile-enable-idle-timer
-           (setq projectile-idle-timer (run-with-idle-timer
-                                        projectile-idle-timer-seconds t
-                                        (lambda ()
-                                          (when (projectile-project-p)
-                                            (run-hooks 'projectile-idle-timer-hook)))))))
-  :type 'boolean)
-
-(defvar projectile-projects-cache nil
-  "A hashmap used to cache project file names to speed up related operations.")
-
-(defvar projectile-projects-cache-time nil
-  "A hashmap used to record when we populated `projectile-projects-cache'.")
-
-(defvar projectile-project-root-cache (make-hash-table :test 'equal)
-  "Cached value of function `projectile-project-root`.")
-
-(defvar projectile-project-type-cache (make-hash-table :test 'equal)
-  "A hashmap used to cache project type to speed up related operations.")
-
-(defvar projectile-known-projects nil
-  "List of locations where we have previously seen projects.
-The list of projects is ordered by the time they have been accessed.
-
-See also `projectile-remove-known-project',
-`projectile-cleanup-known-projects' and `projectile-clear-known-projects'.")
-
-(defvar projectile-known-projects-on-file nil
-  "List of known projects reference point.
-
-Contains a copy of `projectile-known-projects' when it was last
-synchronized with `projectile-known-projects-file'.")
-
-(defcustom projectile-known-projects-file
-  (expand-file-name "projectile-bookmarks.eld"
-                    user-emacs-directory)
-  "Name and location of the Projectile's known projects file."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-ignored-projects nil
-  "A list of projects not to be added to `projectile-known-projects'."
-  :group 'projectile
-  :type '(repeat :tag "Project list" directory)
-  :package-version '(projectile . "0.11.0"))
-
-(defcustom projectile-ignored-project-function nil
-  "Function to decide if a project is added to `projectile-known-projects'.
-
-Can be either nil, or a function that takes the truename of the
-project root as argument and returns non-nil if the project is to
-be ignored or nil otherwise.
-
-This function is only called if the project is not listed in
-`projectile-ignored-projects'.
-
-A suitable candidate would be `file-remote-p' to ignore remote
-projects."
-  :group 'projectile
-  :type '(choice
-          (const :tag "Nothing" nil)
-          (const :tag "Remote files" file-remote-p)
-          function)
-  :package-version '(projectile . "0.13.0"))
-
-(defcustom projectile-track-known-projects-automatically t
-  "Controls whether Projectile will automatically register known projects.
-
-When set to nil you'll have always add projects explicitly with
-`projectile-add-known-project'."
-  :group 'projectile
-  :type 'boolean
-  :package-version '(projectile . "1.0.0"))
-
-(defcustom projectile-project-search-path nil
-  "List of folders where projectile is automatically going to look for projects.
-You can think of something like $PATH, but for projects instead of executables.
-Examples of such paths might be ~/projects, ~/work, etc."
-  :group 'projectile
-  :type 'list
-  :package-version '(projectile . "1.0.0"))
-
-(defcustom projectile-git-command "git ls-files -zco --exclude-standard"
-  "Command used by projectile to get the files in a git project."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-git-submodule-command "git submodule --quiet foreach 'echo $path' | tr '\\n' '\\0'"
-  "Command used by projectile to list submodules of a given git repository.
-Set to nil to disable listing submodules contents."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-git-ignored-command "git ls-files -zcoi --exclude-standard"
-  "Command used by projectile to get the ignored files in a git project."
-  :group 'projectile
-  :type 'string
-  :package-version '(projectile . "0.14.0"))
-
-(defcustom projectile-hg-command "hg locate -f -0 -I ."
-  "Command used by projectile to get the files in a hg project."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-fossil-command (concat "fossil ls | "
-                                             (when (string-equal system-type
-                                                                 "windows-nt")
-                                               "dos2unix | ")
-                                             "tr '\\n' '\\0'")
-  "Command used by projectile to get the files in a fossil project."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-bzr-command "bzr ls -R --versioned -0"
-  "Command used by projectile to get the files in a bazaar project."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-darcs-command "darcs show files -0 . "
-  "Command used by projectile to get the files in a darcs project."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-svn-command "svn list -R . | grep -v '$/' | tr '\\n' '\\0'"
-  "Command used by projectile to get the files in a svn project."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-generic-command "find . -type f -print0"
-  "Command used by projectile to get the files in a generic project."
-  :group 'projectile
-  :type 'string)
-
-(defcustom projectile-vcs-dirty-state '("edited" "unregistered" "needs-update" "needs-merge" "unlocked-changes" "conflict")
-  "List of states checked by `projectile-browse-dirty-projects'.
-Possible checked states are:
-\"edited\", \"unregistered\", \"needs-update\", \"needs-merge\",
-\"unlocked-changes\" and \"conflict\",
-as defined in `vc.el'."
-  :group 'projectile
-  :type '(repeat (string))
-  :package-version '(projectile . "1.0.0"))
-
-(defcustom projectile-other-file-alist
-  '( ;; handle C/C++ extensions
-    ("cpp" . ("h" "hpp" "ipp"))
-    ("ipp" . ("h" "hpp" "cpp"))
-    ("hpp" . ("h" "ipp" "cpp" "cc"))
-    ("cxx" . ("h" "hxx" "ixx"))
-    ("ixx" . ("h" "hxx" "cxx"))
-    ("hxx" . ("h" "ixx" "cxx"))
-    ("c"   . ("h"))
-    ("m"   . ("h"))
-    ("mm"  . ("h"))
-    ("h"   . ("c" "cc" "cpp" "ipp" "hpp" "cxx" "ixx" "hxx" "m" "mm"))
-    ("cc"  . ("h" "hh" "hpp"))
-    ("hh"  . ("cc"))
-
-    ;; vertex shader and fragment shader extensions in glsl
-    ("vert" . ("frag"))
-    ("frag" . ("vert"))
-
-    ;; handle files with no extension
-    (nil    . ("lock" "gpg"))
-    ("lock" . (""))
-    ("gpg"  . (""))
-    )
-  "Alist of extensions for switching to file with the same name,
-  using other extensions based on the extension of current
-  file."
-  :type 'alist)
-
-(defcustom projectile-create-missing-test-files nil
-  "During toggling, if non-nil enables creating test files if not found.
-
-When not-nil, every call to projectile-find-implementation-or-test-*
-creates test files if not found on the file system.  Defaults to nil.
-It assumes the test/ folder is at the same level as src/."
-  :group 'projectile
-  :type 'boolean)
-
-(defcustom projectile-after-switch-project-hook nil
-  "Hooks run right after project is switched."
-  :group 'projectile
-  :type 'hook)
-
-(defcustom projectile-before-switch-project-hook nil
-  "Hooks run when right before project is switched."
-  :group 'projectile
-  :type 'hook)
-
-(defcustom projectile-current-project-on-switch 'remove
-  "Determines whether to display current project when switching projects.
-
-When set to 'remove current project is not included, 'move-to-end
-will display current project and the end of the list of known
-projects, 'keep will leave the current project at the default
-position."
-  :group 'projectile
-  :type '(radio
-          (const :tag "Remove" remove)
-          (const :tag "Move to end" move-to-end)
-          (const :tag "Keep" keep)))
-
-
-;;; Version information
-
-;;;###autoload
-(defun projectile-version (&optional show-version)
-  "Get the Projectile version as string.
-
-If called interactively or if SHOW-VERSION is non-nil, show the
-version in the echo area and the messages buffer.
-
-The returned string includes both, the version from package.el
-and the library version, if both a present and different.
-
-If the version number could not be determined, signal an error,
-if called interactively, or if SHOW-VERSION is non-nil, otherwise
-just return nil."
-  (interactive (list t))
-  (if (require 'pkg-info nil t)
-      (let ((version (pkg-info-version-info 'projectile)))
-        (when show-version
-          (message "Projectile %s" version))
-        version)
-    (error "Cannot determine version without package pkg-info")))
-
-;;; Misc utility functions
-(defun projectile-difference (list1 list2)
-  (cl-remove-if
-   (lambda (x) (member x list2))
-   list1))
-
-(defun projectile-unixy-system-p ()
-  "Check to see if unixy text utilities are installed."
-  (cl-every
-   (lambda (x) (executable-find x))
-   '("grep" "cut" "uniq")))
-
-(defun projectile-symbol-or-selection-at-point ()
-  "Get the symbol or selected text at point."
-  (if (use-region-p)
-      (buffer-substring-no-properties (region-beginning) (region-end))
-    (projectile-symbol-at-point)))
-
-(defun projectile-symbol-at-point ()
-  "Get the symbol at point and strip its properties."
-  (substring-no-properties (or (thing-at-point 'symbol) "")))
-
-
-
-;;; Serialization
-(defun projectile-serialize (data filename)
-  "Serialize DATA to FILENAME.
-
-The saved data can be restored with `projectile-unserialize'."
-  (when (file-writable-p filename)
-    (with-temp-file filename
-      (insert (let (print-length) (prin1-to-string data))))))
-
-(defun projectile-unserialize (filename)
-  "Read data serialized by `projectile-serialize' from FILENAME."
-  (with-demoted-errors
-      "Error during file deserialization: %S"
-    (when (file-exists-p filename)
-      (with-temp-buffer
-        (insert-file-contents filename)
-        ;; this will blow up if the contents of the file aren't
-        ;; lisp data structures
-        (read (buffer-string))))))
-
-
-;;; Caching
-(defvar projectile-file-exists-cache
-  (make-hash-table :test 'equal)
-  "Cached `projectile-file-exists-p' results.")
-
-(defvar projectile-file-exists-cache-timer nil
-  "Timer for scheduling`projectile-file-exists-cache-cleanup'.")
-
-(defun projectile-file-exists-cache-cleanup ()
-  "Removed timed out cache entries and reschedules or remove the
-timer if no more items are in the cache."
-  (let ((now (current-time)))
-    (maphash (lambda (key value)
-               (if (time-less-p (cdr value) now)
-                   (remhash key projectile-file-exists-cache)))
-             projectile-file-exists-cache)
-    (setq projectile-file-exists-cache-timer
-          (if (> (hash-table-count projectile-file-exists-cache) 0)
-              (run-with-timer 10 nil 'projectile-file-exists-cache-cleanup)))))
-
-(defun projectile-file-exists-p (filename)
-  "Return t if file FILENAME exist.
-A wrapper around `file-exists-p' with additional caching support."
-  (let* ((file-remote (file-remote-p filename))
-         (expire-seconds
-          (if file-remote
-              (and projectile-file-exists-remote-cache-expire
-                   (> projectile-file-exists-remote-cache-expire 0)
-                   projectile-file-exists-remote-cache-expire)
-            (and projectile-file-exists-local-cache-expire
-                 (> projectile-file-exists-local-cache-expire 0)
-                 projectile-file-exists-local-cache-expire)))
-         (remote-file-name-inhibit-cache (if expire-seconds
-                                             expire-seconds
-                                           remote-file-name-inhibit-cache)))
-    (if (not expire-seconds)
-        (file-exists-p filename)
-      (let* ((current-time (current-time))
-             (cached (gethash filename projectile-file-exists-cache))
-             (cached-value (if cached (car cached)))
-             (cached-expire (if cached (cdr cached)))
-             (cached-expired (if cached (time-less-p cached-expire current-time) t))
-             (value (or (and (not cached-expired) cached-value)
-                        (if (file-exists-p filename) 'found 'notfound))))
-        (when (or (not cached) cached-expired)
-          (puthash filename
-                   (cons value (time-add current-time (seconds-to-time expire-seconds)))
-                   projectile-file-exists-cache))
-        (unless projectile-file-exists-cache-timer
-          (setq projectile-file-exists-cache-timer
-                (run-with-timer 10 nil 'projectile-file-exists-cache-cleanup)))
-        (equal value 'found)))))
-
-;;;###autoload
-(defun projectile-invalidate-cache (prompt)
-  "Remove the current project's files from `projectile-projects-cache'.
-
-With a prefix argument PROMPT prompts for the name of the project whose cache
-to invalidate."
-  (interactive "P")
-  (let ((project-root
-         (if prompt
-             (completing-read "Remove cache for: "
-                              (hash-table-keys projectile-projects-cache))
-           (projectile-ensure-project (projectile-project-root)))))
-    (setq projectile-project-root-cache (make-hash-table :test 'equal))
-    (remhash project-root projectile-project-type-cache)
-    (remhash project-root projectile-projects-cache)
-    (remhash project-root projectile-projects-cache-time)
-    (projectile-serialize-cache)
-    (when projectile-verbose
-      (message "Invalidated Projectile cache for %s."
-               (propertize project-root 'face 'font-lock-keyword-face))))
-  (when (fboundp 'recentf-cleanup)
-    (recentf-cleanup)))
-
-(defun projectile-time-seconds ()
-  "Return the number of seconds since the unix epoch."
-  (cl-destructuring-bind (high low _usec _psec) (current-time)
-    (+ (lsh high 16) low)))
-
-(defun projectile-cache-project (project files)
-  "Cache PROJECTs FILES.
-The cache is created both in memory and on the hard drive."
-  (when projectile-enable-caching
-    (puthash project files projectile-projects-cache)
-    (puthash project (projectile-time-seconds) projectile-projects-cache-time)
-    (projectile-serialize-cache)))
-
-;;;###autoload
-(defun projectile-purge-file-from-cache (file)
-  "Purge FILE from the cache of the current project."
-  (interactive
-   (list (projectile-completing-read
-          "Remove file from cache: "
-          (projectile-current-project-files))))
-  (let* ((project-root (projectile-project-root))
-         (project-cache (gethash project-root projectile-projects-cache)))
-    (if (projectile-file-cached-p file project-root)
-        (progn
-          (puthash project-root (remove file project-cache) projectile-projects-cache)
-          (projectile-serialize-cache)
-          (when projectile-verbose
-            (message "%s removed from cache" file)))
-      (error "%s is not in the cache" file))))
-
-;;;###autoload
-(defun projectile-purge-dir-from-cache (dir)
-  "Purge DIR from the cache of the current project."
-  (interactive
-   (list (projectile-completing-read
-          "Remove directory from cache: "
-          (projectile-current-project-dirs))))
-  (let* ((project-root (projectile-project-root))
-         (project-cache (gethash project-root projectile-projects-cache)))
-    (puthash project-root
-             (cl-remove-if (lambda (str) (string-prefix-p dir str)) project-cache)
-             projectile-projects-cache)))
-
-(defun projectile-file-cached-p (file project)
-  "Check if FILE is already in PROJECT cache."
-  (member file (gethash project projectile-projects-cache)))
-
-;;;###autoload
-(defun projectile-cache-current-file ()
-  "Add the currently visited file to the cache."
-  (interactive)
-  (let ((current-project (projectile-project-root)))
-    (when (and (buffer-file-name) (gethash (projectile-project-root) projectile-projects-cache))
-      (let* ((abs-current-file (file-truename (buffer-file-name)))
-             (current-file (file-relative-name abs-current-file current-project)))
-        (unless (or (projectile-file-cached-p current-file current-project)
-                    (projectile-ignored-directory-p (file-name-directory abs-current-file))
-                    (projectile-ignored-file-p abs-current-file))
-          (puthash current-project
-                   (cons current-file (gethash current-project projectile-projects-cache))
-                   projectile-projects-cache)
-          (projectile-serialize-cache)
-          (message "File %s added to project %s cache."
-                   (propertize current-file 'face 'font-lock-keyword-face)
-                   (propertize current-project 'face 'font-lock-keyword-face)))))))
-
-;; cache opened files automatically to reduce the need for cache invalidation
-(defun projectile-cache-files-find-file-hook ()
-  "Function for caching files with `find-file-hook'."
-  (let ((project-root (projectile-project-p)))
-    (when (and projectile-enable-caching
-               project-root
-               (not (projectile-ignored-project-p project-root)))
-      (projectile-cache-current-file))))
-
-(defun projectile-track-known-projects-find-file-hook ()
-  "Function for caching projects with `find-file-hook'."
-  (when (and projectile-track-known-projects-automatically (projectile-project-p))
-    (projectile-add-known-project (projectile-project-root))))
-
-(defun projectile-maybe-invalidate-cache (force)
-  "Invalidate if FORCE or project's dirconfig newer than cache."
-  (when (or force (file-newer-than-file-p (projectile-dirconfig-file)
-                                          projectile-cache-file))
-    (projectile-invalidate-cache nil)))
-
-;;;###autoload
-(defun projectile-discover-projects-in-directory (directory)
-  "Discover any projects in DIRECTORY and add them to the projectile cache.
-This function is not recursive and only adds projects with roots
-at the top level of DIRECTORY."
-  (interactive
-   (list (read-directory-name "Starting directory: ")))
-  (let ((subdirs (directory-files directory t)))
-    (mapcar
-     (lambda (dir)
-       (when (and (file-directory-p dir)
-                  (not (member (file-name-nondirectory dir) '(".." "."))))
-         (when (projectile-project-p dir)
-           (projectile-add-known-project dir))))
-     subdirs)))
-
-;;;###autoload
-(defun projectile-discover-projects-in-search-path ()
-  "Discover projects in `projectile-project-search-path'.
-Invoked automatically when `projectile-mode' is enabled."
-  (interactive)
-  (mapcar #'projectile-discover-projects-in-directory projectile-project-search-path))
-
-
-(defadvice delete-file (before purge-from-projectile-cache (filename &optional trash))
-  (if (and projectile-enable-caching (projectile-project-p))
-      (let* ((project-root (projectile-project-root))
-             (true-filename (file-truename filename))
-             (relative-filename (file-relative-name true-filename project-root)))
-        (if (projectile-file-cached-p relative-filename project-root)
-            (projectile-purge-file-from-cache relative-filename)))))
-
-
-;;; Project root related utilities
-(defun projectile-parent (path)
-  "Return the parent directory of PATH.
-PATH may be a file or directory and directory paths may end with a slash."
-  (directory-file-name (file-name-directory (directory-file-name (expand-file-name path)))))
-
-(defun projectile-locate-dominating-file (file name)
-  "Look up the directory hierarchy from FILE for a directory containing NAME.
-Stop at the first parent directory containing a file NAME,
-and return the directory.  Return nil if not found.
-Instead of a string, NAME can also be a predicate taking one argument
-\(a directory) and returning a non-nil value if that directory is the one for
-which we're looking."
-  ;; copied from files.el (stripped comments) emacs-24 bzr branch 2014-03-28 10:20
-  (setq file (abbreviate-file-name file))
-  (let ((root nil)
-        try)
-    (while (not (or root
-                    (null file)
-                    (string-match locate-dominating-stop-dir-regexp file)))
-      (setq try (if (stringp name)
-                    (projectile-file-exists-p (expand-file-name name file))
-                  (funcall name file)))
-      (cond (try (setq root file))
-            ((equal file (setq file (file-name-directory
-                                     (directory-file-name file))))
-             (setq file nil))))
-    (and root (expand-file-name (file-name-as-directory root)))))
-
-(defvar-local projectile-project-root nil
-  "Defines a custom Projectile project root.
-This is intended to be used as a file local variable.")
-
-(defun projectile-root-local (_dir)
-  "A simple wrapper around `projectile-project-root'."
-  projectile-project-root)
-
-(defun projectile-root-top-down (dir &optional list)
-  "Identify a project root in DIR by top-down search for files in LIST.
-If LIST is nil, use `projectile-project-root-files' instead.
-Return the first (topmost) matched directory or nil if not found."
-  (projectile-locate-dominating-file
-   dir
-   (lambda (dir)
-     (cl-find-if (lambda (f) (projectile-file-exists-p (expand-file-name f dir)))
-                 (or list projectile-project-root-files)))))
-
-(defun projectile-root-bottom-up (dir &optional list)
-  "Identify a project root in DIR by bottom-up search for files in LIST.
-If LIST is nil, use `projectile-project-root-files-bottom-up' instead.
-Return the first (bottommost) matched directory or nil if not found."
-  (cl-some (lambda (name) (projectile-locate-dominating-file dir name))
-           (or list projectile-project-root-files-bottom-up)))
-
-(defun projectile-root-top-down-recurring (dir &optional list)
-  "Identify a project root in DIR by recurring top-down search for files in LIST.
-If LIST is nil, use `projectile-project-root-files-top-down-recurring'
-instead.  Return the last (bottommost) matched directory in the
-topmost sequence of matched directories.  Nil otherwise."
-  (cl-some
-   (lambda (f)
-     (projectile-locate-dominating-file
-      dir
-      (lambda (dir)
-        (and (projectile-file-exists-p (expand-file-name f dir))
-             (or (string-match locate-dominating-stop-dir-regexp (projectile-parent dir))
-                 (not (projectile-file-exists-p (expand-file-name f (projectile-parent dir)))))))))
-   (or list projectile-project-root-files-top-down-recurring)))
-
-(defun projectile-project-root (&optional dir)
-  "Retrieves the root directory of a project if available.
-If DIR is not supplied its set to the current directory by default."
-  ;; the cached value will be 'none in the case of no project root (this is to
-  ;; ensure it is not reevaluated each time when not inside a project) so use
-  ;; cl-subst to replace this 'none value with nil so a nil value is used
-  ;; instead
-  (let ((dir (or dir default-directory)))
-    (cl-subst nil 'none
-              ;; The `is-local' and `is-connected' variables are
-              ;; used to fix the behavior where Emacs hangs
-              ;; because of Projectile when you open a file over
-              ;; TRAMP. It basically prevents Projectile from
-              ;; trying to find information about files for which
-              ;; it's not possible to get that information right
-              ;; now.
-              (or (let ((is-local (not (file-remote-p dir)))      ;; `true' if the file is local
-                        (is-connected (file-remote-p dir nil t))) ;; `true' if the file is remote AND we are connected to the remote
-                    (when (or is-local is-connected)
-                      (cl-some
-                       (lambda (func)
-                         (let* ((cache-key (format "%s-%s" func dir))
-                                (cache-value (gethash cache-key projectile-project-root-cache)))
-                           (if (and cache-value (file-exists-p cache-value))
-                               cache-value
-                             (let ((value (funcall func (file-truename dir))))
-                               (puthash cache-key value projectile-project-root-cache)
-                               value))))
-                       projectile-project-root-files-functions)))
-                  ;; set cached to none so is non-nil so we don't try
-                  ;; and look it up again
-                  'none))))
-
-(defun projectile-ensure-project (dir)
-  "Ensure that DIR is non-nil.
-Useful for commands that expect the presence of a project.
-Controlled by `projectile-require-project-root'."
-  (if dir
-      dir
-    (cond
-     ((eq projectile-require-project-root 'prompt) (projectile-completing-read
-                                                    "Switch to project: " projectile-known-projects))
-     (projectile-require-project-root (error "Projectile can't find a project definition in %s" dir))
-     (t default-directory))))
-
-(defun projectile-project-p (&optional dir)
-  "Check if DIR is a project.
-Defaults to the current directory if not provided
-explicitly."
-  (projectile-project-root (or dir default-directory)))
-
-(defun projectile-default-project-name (project-root)
-  "Default function used create project name to be displayed based on the value of PROJECT-ROOT."
-  (file-name-nondirectory (directory-file-name project-root)))
-
-(defun projectile-project-name (&optional project)
-  "Return project name.
-If PROJECT is not specified acts on the current project."
-  (or projectile-project-name
-      (let ((project-root (or project (projectile-project-root))))
-        (if project-root
-            (funcall projectile-project-name-function project-root)
-          "-"))))
-
-
-;;; Project indexing
-(defun projectile-get-project-directories (project-dir)
-  "Get the list of PROJECT-DIR directories that are of interest to the user."
-  (mapcar (lambda (subdir) (concat project-dir subdir))
-          (or (nth 0 (projectile-parse-dirconfig-file)) '(""))))
-
-(defun projectile--directory-p (directory)
-  "Checks if DIRECTORY is a string designating a valid directory."
-  (and (stringp directory) (file-directory-p directory)))
-
-(defun projectile-dir-files (directory)
-  "List the files in DIRECTORY and in its sub-directories.
-Files are returned as relative paths to DIRECTORY."
-  (unless (projectile--directory-p directory)
-    (error "Directory %S does not exist" directory))
-  ;; check for a cache hit first if caching is enabled
-  (let ((files-list (and projectile-enable-caching
-                         (gethash directory projectile-projects-cache))))
-    ;; cache disabled or cache miss
-    (or files-list
-        (let ((vcs (projectile-project-vcs directory)))
-          (pcase projectile-indexing-method
-           ('native (projectile-dir-files-native directory))
-           ;; use external tools to get the project files
-           ('hybrid (projectile-adjust-files directory vcs (projectile-dir-files-alien directory)))
-           ('alien (projectile-dir-files-alien directory))
-           (_ (user-error "Unsupported indexing method `%S'" projectile-indexing-method)))))))
-
-;;; Native Project Indexing
-;;
-;; This corresponds to `projectile-indexing-method' being set to native.
-(defun projectile-dir-files-native (directory)
-  "Get the files for ROOT under DIRECTORY using just Emacs Lisp."
-  (let ((progress-reporter
-         (make-progress-reporter
-          (format "Projectile is indexing %s"
-                  (propertize directory 'face 'font-lock-keyword-face)))))
-    ;; we need the files with paths relative to the project root
-    (mapcar (lambda (file) (file-relative-name file directory))
-            (projectile-index-directory directory (projectile-filtering-patterns)
-                                        progress-reporter))))
-
-(defun projectile-index-directory (directory patterns progress-reporter)
-  "Index DIRECTORY taking into account PATTERNS.
-The function calls itself recursively until all sub-directories
-have been indexed.  The PROGRESS-REPORTER is updated while the
-function is executing."
-  (apply 'append
-         (mapcar
-          (lambda (f)
-            (unless (or (and patterns (projectile-ignored-rel-p f directory patterns))
-                        (member (file-name-nondirectory (directory-file-name f))
-                                '("." ".." ".svn" ".cvs")))
-              (progress-reporter-update progress-reporter)
-              (if (file-directory-p f)
-                  (unless (projectile-ignored-directory-p
-                           (file-name-as-directory f))
-                    (projectile-index-directory f patterns progress-reporter))
-                (unless (projectile-ignored-file-p f)
-                  (list f)))))
-          (directory-files directory t))))
-
-;;; Alien Project Indexing
-;;
-;; This corresponds to `projectile-indexing-method' being set to hybrid or alien.
-;; The only difference between the two methods is that alien doesn't do
-;; any post-processing of the files obtained via the external command.
-(defun projectile-dir-files-alien (directory)
-  "Get the files for DIRECTORY using external tools."
-  (let ((vcs (projectile-project-vcs directory)))
-    (cond
-    ((eq vcs 'git)
-     (nconc (projectile-files-via-ext-command directory (projectile-get-ext-command vcs))
-            (projectile-get-sub-projects-files directory vcs)))
-    (t (projectile-files-via-ext-command directory (projectile-get-ext-command vcs))))))
-
-(define-obsolete-function-alias 'projectile-dir-files-external 'projectile-dir-files-alien "1.1")
-(define-obsolete-function-alias 'projectile-get-repo-files 'projectile-dir-files-alien "1.1")
-
-(defun projectile-get-ext-command (vcs)
-  "Determine which external command to invoke based on the project's VCS.
-Fallback to a generic command when not in a VCS-controlled project."
-  (pcase vcs
-   ('git projectile-git-command)
-   ('hg projectile-hg-command)
-   ('fossil projectile-fossil-command)
-   ('bzr projectile-bzr-command)
-   ('darcs projectile-darcs-command)
-   ('svn projectile-svn-command)
-   (_ projectile-generic-command)))
-
-(defun projectile-get-sub-projects-command (vcs)
-  "Get the sub-projects command for VCS.
-Currently that's supported just for Git (sub-projects being Git
-sub-modules there)."
-  (pcase vcs
-   ('git projectile-git-submodule-command)
-   (_ "")))
-
-(defun projectile-get-ext-ignored-command (vcs)
-  "Determine which external command to invoke based on the project's VCS."
-  (pcase vcs
-   ('git projectile-git-ignored-command)
-   ;; TODO: Add support for other VCS
-   (_ nil)))
-
-(defun projectile-flatten (lst)
-  "Take a nested list LST and return its contents as a single, flat list."
-  (if (and (listp lst) (listp (cdr lst)))
-      (cl-mapcan 'projectile-flatten lst)
-    (list lst)))
-
-(defun projectile-get-all-sub-projects (project)
-  "Get all sub-projects for a given project.
-
-PROJECT is base directory to start search recursively."
-  (let ((submodules (projectile-get-immediate-sub-projects project)))
-    (cond
-     ((null submodules)
-      nil)
-     (t
-      (nconc submodules (projectile-flatten
-                         ;; recursively get sub-projects of each sub-project
-                         (mapcar (lambda (s)
-                                   (projectile-get-all-sub-projects s)) submodules)))))))
-
-(defun projectile-get-immediate-sub-projects (path)
-  "Get immediate sub-projects for a given project without recursing.
-
-PATH is the vcs root or project root from which to start
-searching, and should end with an appropriate path delimiter, such as
-'/' or a '\\'.
-
-If the vcs get-sub-projects query returns results outside of path,
-they are excluded from the results of this function."
-  (let* ((vcs (projectile-project-vcs path))
-         ;; search for sub-projects under current project `project'
-         (submodules (mapcar
-                      (lambda (s)
-                        (file-name-as-directory (expand-file-name s path)))
-                      (projectile-files-via-ext-command path (projectile-get-sub-projects-command vcs))))
-         (project-child-folder-regex
-          (concat "\\`"
-                  (regexp-quote path))))
-
-    ;; If project root is inside of an VCS folder, but not actually an
-    ;; VCS root itself, submodules external to the project will be
-    ;; included in the VCS get sub-projects result. Let's remove them.
-    (cl-remove-if-not
-     (lambda (submodule)
-       (string-match-p project-child-folder-regex
-                       submodule))
-     submodules)))
-
-(defun projectile-get-sub-projects-files (project-root vcs)
-  "Get files from sub-projects for PROJECT-ROOT recursively."
-  (projectile-flatten
-   (mapcar (lambda (sub-project)
-             (mapcar (lambda (file)
-                       (concat sub-project file))
-                     ;; TODO: Seems we forgot git hardcoded here
-                     (projectile-files-via-ext-command sub-project projectile-git-command)))
-           (projectile-get-all-sub-projects project-root))))
-
-(defun projectile-get-repo-ignored-files (project vcs)
-  "Get a list of the files ignored in the PROJECT using VCS."
-  (let ((cmd (projectile-get-ext-ignored-command vcs)))
-    (when cmd
-      (projectile-files-via-ext-command project cmd))))
-
-(defun projectile-get-repo-ignored-directory (project dir vcs)
-  "Get a list of the files ignored in the PROJECT in the directory DIR.
-VCS is the VCS of the project."
-  (let ((cmd (projectile-get-ext-ignored-command vcs)))
-    (when cmd
-      (projectile-files-via-ext-command project (concat cmd " " dir)))))
-
-(defun projectile-files-via-ext-command (root command)
-  "Get a list of relative file names in the project ROOT by executing COMMAND.
-
-If `command' is nil or an empty string, return nil.
-This allows commands to be disabled."
-  (when (stringp command)
-    (let ((default-directory root))
-      (split-string (shell-command-to-string command) "\0" t))))
-
-(defun projectile-adjust-files (project vcs files)
-  "First remove ignored files from FILES, then add back unignored files."
-  (projectile-add-unignored project vcs (projectile-remove-ignored files)))
-
-(defun projectile-remove-ignored (files)
-  "Remove ignored files and folders from FILES.
-
-If ignored directory prefixed with '*', then ignore all
-directories/subdirectories with matching filename,
-otherwise operates relative to project root."
-  (let ((ignored-files (projectile-ignored-files-rel))
-        (ignored-dirs (projectile-ignored-directories-rel)))
-    (cl-remove-if
-     (lambda (file)
-       (or (cl-some
-            (lambda (f)
-              (string= f (file-name-nondirectory file)))
-            ignored-files)
-           (cl-some
-            (lambda (dir)
-              ;; if the directory is prefixed with '*' then ignore all directories matching that name
-              (if (string-prefix-p "*" dir)
-                  ;; remove '*' and trailing slash from ignored directory name
-                  (let ((d (substring dir 1 (if (equal (substring dir -1) "/") -1 nil))))
-                    (cl-some
-                     (lambda (p)
-                       (string= d p))
-                     ;; split path by '/', remove empty strings, and check if any subdirs match name 'd'
-                     (delete "" (split-string (or (file-name-directory file) "") "/"))))
-                (string-prefix-p dir file)))
-            ignored-dirs)
-           (cl-some
-            (lambda (suf)
-              (string-suffix-p suf file t))
-            projectile-globally-ignored-file-suffixes)))
-     files)))
-
-(defun projectile-keep-ignored-files (project vcs files)
-  "Filter FILES to retain only those that are ignored."
-  (when files
-    (cl-remove-if-not
-     (lambda (file)
-       (cl-some (lambda (f) (string-prefix-p f file)) files))
-     (projectile-get-repo-ignored-files project vcs))))
-
-(defun projectile-keep-ignored-directories (project vcs directories)
-  "Get ignored files within each of DIRECTORIES."
-  (when directories
-    (let (result)
-      (dolist (dir directories result)
-        (setq result (append result
-                             (projectile-get-repo-ignored-directory project vcs dir))))
-      result)))
-
-(defun projectile-add-unignored (project vcs files)
-  "This adds unignored files to FILES.
-
-Useful because the VCS may not return ignored files at all.  In
-this case unignored files will be absent from FILES."
-  (let ((unignored-files (projectile-keep-ignored-files
-                          project
-                          vcs
-                          (projectile-unignored-files-rel)))
-        (unignored-paths (projectile-remove-ignored
-                          (projectile-keep-ignored-directories
-                           project
-                           vcs
-                           (projectile-unignored-directories-rel)))))
-    (append files unignored-files unignored-paths)))
-
-(defun projectile-buffers-with-file (buffers)
-  "Return only those BUFFERS backed by files."
-  (cl-remove-if-not (lambda (b) (buffer-file-name b)) buffers))
-
-(defun projectile-buffers-with-file-or-process (buffers)
-  "Return only those BUFFERS backed by files or processes."
-  (cl-remove-if-not (lambda (b) (or (buffer-file-name b)
-                                    (get-buffer-process b))) buffers))
-
-(defun projectile-project-buffers (&optional project)
-  "Get a list of a project's buffers.
-If PROJECT is not specified the command acts on the current project."
-  (let* ((project-root (or project (projectile-project-root)))
-         (all-buffers (cl-remove-if-not
-                       (lambda (buffer)
-                         (projectile-project-buffer-p buffer project-root))
-                       (buffer-list))))
-    (if projectile-buffers-filter-function
-        (funcall projectile-buffers-filter-function all-buffers)
-      all-buffers)))
-
-(defun projectile-process-current-project-buffers (action)
-  "Process the current project's buffers using ACTION."
-  (let ((project-buffers (projectile-project-buffers)))
-    (dolist (buffer project-buffers)
-      (funcall action buffer))))
-
-(defun projectile-project-buffer-files (&optional project)
-  "Get a list of a project's buffer files.
-If PROJECT is not specified the command acts on the current project."
-  (let ((project-root (or project (projectile-project-root))))
-    (mapcar
-     (lambda (buffer)
-       (file-relative-name
-        (buffer-file-name buffer)
-        project-root))
-     (projectile-buffers-with-file
-      (projectile-project-buffers project)))))
-
-(defun projectile-project-buffer-p (buffer project-root)
-  "Check if BUFFER is under PROJECT-ROOT."
-  (with-current-buffer buffer
-    (and (not (string-prefix-p " " (buffer-name buffer)))
-         (not (projectile-ignored-buffer-p buffer))
-         default-directory
-         (string-equal (file-remote-p default-directory)
-                       (file-remote-p project-root))
-         (not (string-match-p "^http\\(s\\)?://" default-directory))
-         (string-prefix-p project-root (file-truename default-directory) (eq system-type 'windows-nt)))))
-
-(defun projectile-ignored-buffer-p (buffer)
-  "Check if BUFFER should be ignored.
-
-Regular expressions can be use."
-  (or
-   (with-current-buffer buffer
-     (cl-some
-      (lambda (name)
-        (string-match-p name (buffer-name)))
-      projectile-globally-ignored-buffers))
-   (with-current-buffer buffer
-     (cl-some
-      (lambda (mode)
-        (string-match-p (concat "^" mode "$")
-                        (symbol-name major-mode)))
-      projectile-globally-ignored-modes))))
-
-(defun projectile-recently-active-files ()
-  "Get list of recently active files.
-
-Files are ordered by recently active buffers, and then recently
-opened through use of recentf."
-  (let ((project-buffer-files (projectile-project-buffer-files)))
-    (append project-buffer-files
-            (projectile-difference
-             (projectile-recentf-files)
-             project-buffer-files))))
-
-(defun projectile-project-buffer-names ()
-  "Get a list of project buffer names."
-  (mapcar #'buffer-name (projectile-project-buffers)))
-
-(defun projectile-prepend-project-name (string)
-  "Prepend the current project's name to STRING."
-  (format "[%s] %s" (projectile-project-name) string))
-
-(defun projectile-read-buffer-to-switch (prompt)
-  "Read the name of a buffer to switch to, prompting with PROMPT.
-
-This function excludes the current buffer from the offered
-choices."
-  (projectile-completing-read
-   prompt
-   (delete (buffer-name (current-buffer))
-           (projectile-project-buffer-names))))
-
-;;;###autoload
-(defun projectile-switch-to-buffer ()
-  "Switch to a project buffer."
-  (interactive)
-  (switch-to-buffer
-   (projectile-read-buffer-to-switch "Switch to buffer: ")))
-
-;;;###autoload
-(defun projectile-switch-to-buffer-other-window ()
-  "Switch to a project buffer and show it in another window."
-  (interactive)
-  (switch-to-buffer-other-window
-   (projectile-read-buffer-to-switch "Switch to buffer: ")))
-
-;;;###autoload
-(defun projectile-switch-to-buffer-other-frame ()
-  "Switch to a project buffer and show it in another window."
-  (interactive)
-  (switch-to-buffer-other-frame
-   (projectile-read-buffer-to-switch "Switch to buffer: ")))
-
-;;;###autoload
-(defun projectile-display-buffer ()
-  "Display a project buffer in another window without selecting it."
-  (interactive)
-  (display-buffer
-   (projectile-completing-read
-    "Display buffer: "
-    (projectile-project-buffer-names))))
-
-;;;###autoload
-(defun projectile-project-buffers-other-buffer ()
-  "Switch to the most recently selected buffer project buffer.
-Only buffers not visible in windows are returned."
-  (interactive)
-  (switch-to-buffer (car (projectile-project-buffers-non-visible))) nil t)
-
-(defun projectile-project-buffers-non-visible ()
-  "Get a list of non visible project buffers."
-  (cl-remove-if-not
-   (lambda (buffer)
-     (not (get-buffer-window buffer 'visible)))
-   (projectile-project-buffers)))
-
-;;;###autoload
-(defun projectile-multi-occur (&optional nlines)
-  "Do a `multi-occur' in the project's buffers.
-With a prefix argument, show NLINES of context."
-  (interactive "P")
-  (let ((project (projectile-ensure-project (projectile-project-root))))
-    (multi-occur (projectile-project-buffers project)
-                 (car (occur-read-primary-args))
-                 nlines)))
-
-(defun projectile-normalise-paths (patterns)
-  "Remove leading `/' from the elements of PATTERNS."
-  (delq nil (mapcar (lambda (pat) (and (string-prefix-p "/" pat)
-                                       ;; remove the leading /
-                                       (substring pat 1)))
-                    patterns)))
-
-(defun projectile-expand-paths (paths)
-  "Expand the elements of PATHS.
-
-Elements containing wildcards are expanded and spliced into the
-resulting paths.  The returned PATHS are absolute, based on the
-projectile project root."
-  (let ((default-directory (projectile-project-root)))
-    (projectile-flatten (mapcar
-                         (lambda (pattern)
-                           (or (file-expand-wildcards pattern t)
-                               (projectile-expand-root pattern)))
-                         paths))))
-
-(defun projectile-normalise-patterns (patterns)
-  "Remove paths from PATTERNS."
-  (cl-remove-if (lambda (pat) (string-prefix-p "/" pat)) patterns))
-
-(defun projectile-make-relative-to-root (files)
-  "Make FILES relative to the project root."
-  (let ((project-root (projectile-project-root)))
-    (mapcar (lambda (f) (file-relative-name f project-root)) files)))
-
-(defun projectile-ignored-directory-p (directory)
-  "Check if DIRECTORY should be ignored.
-
-Regular expressions can be used."
-  (cl-some
-   (lambda (name)
-     (string-match-p name directory))
-   (projectile-ignored-directories)))
-
-(defun projectile-ignored-file-p (file)
-  "Check if FILE should be ignored.
-
-Regular expressions can be used."
-  (cl-some
-   (lambda (name)
-     (string-match-p name file))
-   (projectile-ignored-files)))
-
-(defun projectile-check-pattern-p (file pattern)
-  "Check if FILE meets PATTERN."
-  (or (string-suffix-p (directory-file-name pattern)
-                      (directory-file-name file))
-     (member file (file-expand-wildcards pattern t))))
-
-(defun projectile-ignored-rel-p (file directory patterns)
-  "Check if FILE should be ignored relative to DIRECTORY
-according to PATTERNS: (ignored . unignored)"
-  (let ((default-directory directory))
-    (and (cl-some
-          (lambda (pat) (projectile-check-pattern-p file pat))
-          (car patterns))
-         (cl-notany
-          (lambda (pat) (projectile-check-pattern-p file pat))
-          (cdr patterns)))))
-
-(defun projectile-ignored-files ()
-  "Return list of ignored files."
-  (projectile-difference
-   (mapcar
-    #'projectile-expand-root
-    (append
-     projectile-globally-ignored-files
-     (projectile-project-ignored-files)))
-   (projectile-unignored-files)))
-
-(defun projectile-ignored-directories ()
-  "Return list of ignored directories."
-  (projectile-difference
-   (mapcar
-    #'file-name-as-directory
-    (mapcar
-     #'projectile-expand-root
-     (append
-      projectile-globally-ignored-directories
-      (projectile-project-ignored-directories))))
-   (projectile-unignored-directories)))
-
-(defun projectile-ignored-directories-rel ()
-  "Return list of ignored directories, relative to the root."
-  (projectile-make-relative-to-root (projectile-ignored-directories)))
-
-(defun projectile-ignored-files-rel ()
-  "Return list of ignored files, relative to the root."
-  (projectile-make-relative-to-root (projectile-ignored-files)))
-
-(defun projectile-project-ignored-files ()
-  "Return list of project ignored files.
-Unignored files are not included."
-  (cl-remove-if 'file-directory-p (projectile-project-ignored)))
-
-(defun projectile-project-ignored-directories ()
-  "Return list of project ignored directories.
-Unignored directories are not included."
-  (cl-remove-if-not 'file-directory-p (projectile-project-ignored)))
-
-(defun projectile-paths-to-ignore ()
-  "Return a list of ignored project paths."
-  (projectile-normalise-paths (nth 1 (projectile-parse-dirconfig-file))))
-
-(defun projectile-patterns-to-ignore ()
-  "Return a list of relative file patterns."
-  (projectile-normalise-patterns (nth 1 (projectile-parse-dirconfig-file))))
-
-(defun projectile-project-ignored ()
-  "Return list of project ignored files/directories.
-Unignored files/directories are not included."
-  (let ((paths (projectile-paths-to-ignore)))
-    (projectile-expand-paths paths)))
-
-(defun projectile-unignored-files ()
-  "Return list of unignored files."
-  (mapcar
-   #'projectile-expand-root
-   (append
-    projectile-globally-unignored-files
-    (projectile-project-unignored-files))))
-
-(defun projectile-unignored-directories ()
-  "Return list of unignored directories."
-  (mapcar
-   #'file-name-as-directory
-   (mapcar
-    #'projectile-expand-root
-    (append
-     projectile-globally-unignored-directories
-     (projectile-project-unignored-directories)))))
-
-(defun projectile-unignored-directories-rel ()
-  "Return list of unignored directories, relative to the root."
-  (projectile-make-relative-to-root (projectile-unignored-directories)))
-
-(defun projectile-unignored-files-rel ()
-  "Return list of unignored files, relative to the root."
-  (projectile-make-relative-to-root (projectile-unignored-files)))
-
-(defun projectile-project-unignored-files ()
-  "Return list of project unignored files."
-  (cl-remove-if 'file-directory-p (projectile-project-unignored)))
-
-(defun projectile-project-unignored-directories ()
-  "Return list of project unignored directories."
-  (cl-remove-if-not 'file-directory-p (projectile-project-unignored)))
-
-(defun projectile-paths-to-ensure ()
-  "Return a list of unignored project paths."
-  (projectile-normalise-paths (nth 2 (projectile-parse-dirconfig-file))))
-
-(defun projectile-files-to-ensure ()
-  (projectile-flatten (mapcar (lambda (pat) (file-expand-wildcards pat t))
-                              (projectile-patterns-to-ensure))))
-
-(defun projectile-patterns-to-ensure ()
-  "Return a list of relative file patterns."
-  (projectile-normalise-patterns (nth 2 (projectile-parse-dirconfig-file))))
-
-(defun projectile-filtering-patterns ()
-  (cons (projectile-patterns-to-ignore)
-        (projectile-patterns-to-ensure)))
-
-(defun projectile-project-unignored ()
-  "Return list of project ignored files/directories."
-  (delete-dups (append (projectile-expand-paths (projectile-paths-to-ensure))
-                       (projectile-expand-paths (projectile-files-to-ensure)))))
-
-
-(defun projectile-dirconfig-file ()
-  "Return the absolute path to the project's dirconfig file."
-  (expand-file-name ".projectile" (projectile-project-root)))
-
-(defun projectile-parse-dirconfig-file ()
-  "Parse project ignore file and return directories to ignore and keep.
-
-The return value will be a list of three elements, the car being
-the list of directories to keep, the cadr being the list of files
-or directories to ignore, and the caddr being the list of files
-or directories to ensure.
-
-Strings starting with + will be added to the list of directories
-to keep, and strings starting with - will be added to the list of
-directories to ignore.  For backward compatibility, without a
-prefix the string will be assumed to be an ignore string."
-  (let (keep ignore ensure (dirconfig (projectile-dirconfig-file)))
-    (when (projectile-file-exists-p dirconfig)
-      (with-temp-buffer
-        (insert-file-contents dirconfig)
-        (while (not (eobp))
-          (pcase (char-after)
-            (?+ (push (buffer-substring (1+ (point)) (line-end-position)) keep))
-            (?- (push (buffer-substring (1+ (point)) (line-end-position)) ignore))
-            (?! (push (buffer-substring (1+ (point)) (line-end-position)) ensure))
-            (_ (push (buffer-substring (point) (line-end-position)) ignore)))
-          (forward-line)))
-      (list (mapcar (lambda (f) (file-name-as-directory (string-trim f)))
-                    (delete "" (reverse keep)))
-            (mapcar #'string-trim
-                    (delete "" (reverse ignore)))
-            (mapcar #'string-trim
-                    (delete "" (reverse ensure)))))))
-
-(defun projectile-expand-root (name)
-  "Expand NAME to project root.
-
-Never use on many files since it's going to recalculate the
-project-root for every file."
-  (expand-file-name name (projectile-project-root)))
-
-(cl-defun projectile-completing-read (prompt choices &key initial-input action)
-  "Present a project tailored PROMPT with CHOICES."
-  (let ((prompt (projectile-prepend-project-name prompt))
-        res)
-    (setq res
-          (cond
-           ((eq projectile-completion-system 'ido)
-            (ido-completing-read prompt choices nil nil initial-input))
-           ((eq projectile-completion-system 'default)
-            (completing-read prompt choices nil nil initial-input))
-           ((eq projectile-completion-system 'helm)
-            (if (and (fboundp 'helm)
-                     (fboundp 'helm-make-source))
-                (helm :sources
-                      (helm-make-source "Projectile" 'helm-source-sync
-                        :candidates choices
-                        :action (if action
-                                    (prog1 action
-                                      (setq action nil))
-                                  #'identity))
-                      :prompt prompt
-                      :input initial-input
-                      :buffer "*helm-projectile*")
-              (user-error "Please install helm from \
-https://github.com/emacs-helm/helm")))
-           ((eq projectile-completion-system 'ivy)
-            (if (fboundp 'ivy-read)
-                (ivy-read prompt choices
-                          :initial-input initial-input
-                          :action (prog1 action
-                                    (setq action nil))
-                          :caller 'projectile-completing-read)
-              (user-error "Please install ivy from \
-https://github.com/abo-abo/swiper")))
-           (t (funcall projectile-completion-system prompt choices))))
-    (if action
-        (funcall action res)
-      res)))
-
-(defun projectile-project-files (project-root)
-  "Return a list of files for the PROJECT-ROOT."
-  (let (files)
-    ;; If the cache is too stale, don't use it.
-    (when projectile-files-cache-expire
-      (let ((cache-time
-             (gethash project-root projectile-projects-cache-time)))
-        (when (or (null cache-time)
-                  (< (+ cache-time projectile-files-cache-expire)
-                     (projectile-time-seconds)))
-          (remhash project-root projectile-projects-cache)
-          (remhash project-root projectile-projects-cache-time))))
-
-    ;; Use the cache, if requested and available.
-    (when projectile-enable-caching
-      (setq files (gethash project-root projectile-projects-cache)))
-
-    ;; Calculate the list of files.
-    (when (null files)
-      (when projectile-enable-caching
-        (message "Projectile is initializing cache..."))
-      (setq files
-            (if (eq projectile-indexing-method 'alien)
-                ;; In alien mode we can just skip reading
-                ;; .projectile and find all files in the root dir.
-                (projectile-dir-files-alien project-root)
-              ;; If a project is defined as a list of subfolders
-              ;; then we'll have the files returned for each subfolder,
-              ;; so they are relative to the project root.
-              ;;
-              ;; TODO: That's pretty slow and we need to improve it.
-              ;; One options would be to pass explicitly the subdirs
-              ;; to commands like `git ls-files` which would return
-              ;; files paths relative to the project root.
-              (cl-mapcan
-               (lambda (dir)
-                 (mapcar (lambda (f)
-                           (file-relative-name (concat dir f)
-                                               project-root))
-                         (projectile-dir-files dir)))
-               (projectile-get-project-directories project-root))))
-
-      ;; Save the cached list.
-      (when projectile-enable-caching
-        (projectile-cache-project project-root files)))
-
-    ;;; Sorting
-    ;;
-    ;; Files can't be cached in sorted order as some sorting schemes
-    ;; require dynamic data.  Sorting is ignored completely when in
-    ;; alien mode.
-    (if (eq projectile-indexing-method 'alien)
-        files
-      (projectile-sort-files files))))
-
-(defun projectile-current-project-files ()
-  "Return a list of the files in the current project."
-  (projectile-project-files (projectile-project-root)))
-
-(defun projectile-process-current-project-files (action)
-  "Process the current project's files using ACTION."
-  (let ((project-files (projectile-current-project-files))
-        (default-directory (projectile-project-root)))
-    (dolist (filename project-files)
-      (funcall action filename))))
-
-(defun projectile-project-dirs (project)
-  "Return a list of dirs for PROJECT."
-  (delete-dups
-   (delq nil
-         (mapcar #'file-name-directory
-                 (projectile-project-files project)))))
-
-(defun projectile-current-project-dirs ()
-  "Return a list of dirs for the current project."
-  (projectile-project-dirs (projectile-ensure-project (projectile-project-root))))
-
-;;; Interactive commands
-
-(defun projectile--find-other-file (&optional flex-matching ff-variant)
-  "Switch between files with the same name but different extensions.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable
-`projectile-other-file-alist'.  With FF-VARIANT set to a defun, use that
-instead of `find-file'.   A typical example of such a defun would be
-`find-file-other-window' or `find-file-other-frame'"
-  (let ((ff (or ff-variant #'find-file))
-        (other-files (projectile-get-other-files
-                      (buffer-file-name)
-                      (projectile-current-project-files)
-                      flex-matching)))
-    (if other-files
-        (let ((file-name (if (= (length other-files) 1)
-                             (car other-files)
-                           (projectile-completing-read "Switch to: "
-                                                       other-files))))
-          (funcall ff (expand-file-name file-name
-                                        (projectile-project-root))))
-      (error "No other file found"))))
-
-;;;###autoload
-(defun projectile-find-other-file (&optional flex-matching)
-  "Switch between files with the same name but different extensions.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable `projectile-other-file-alist'."
-  (interactive "P")
-  (projectile--find-other-file flex-matching))
-
-;;;###autoload
-(defun projectile-find-other-file-other-window (&optional flex-matching)
-  "Switch between files with the same name but different extensions in other window.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable `projectile-other-file-alist'."
-  (interactive "P")
-  (projectile--find-other-file flex-matching
-                               #'find-file-other-window))
-
-;;;###autoload
-(defun projectile-find-other-file-other-frame (&optional flex-matching)
-  "Switch between files with the same name but different extensions in other window.
-With FLEX-MATCHING, match any file that contains the base name of current file.
-Other file extensions can be customized with the variable `projectile-other-file-alist'."
-  (interactive "P")
-  (projectile--find-other-file flex-matching
-                               #'find-file-other-frame))
-
-(defun projectile--file-name-sans-extensions (file-name)
-  "Return FILE-NAME sans any extensions.
-The extensions, in a filename, are what follows the first '.', with the exception of a leading '.'"
-  (setq file-name (file-name-nondirectory file-name))
-  (substring file-name 0 (string-match "\\..*" file-name 1)))
-
-(defun projectile--file-name-extensions (file-name)
-  "Return FILE-NAME's extensions.
-The extensions, in a filename, are what follows the first '.', with the exception of a leading '.'"
-  ;;would it make sense to return nil instead of an empty string if no extensions are found?
-  (setq file-name (file-name-nondirectory file-name))
-  (let (extensions-start)
-    (substring file-name
-               (if (setq extensions-start (string-match "\\..*" file-name 1))
-                   (1+ extensions-start)
-                 (length file-name)))))
-
-(defun projectile-associated-file-name-extensions (file-name)
-  "Return projectile-other-file-extensions associated to FILE-NAME's extensions.
-If no associated other-file-extensions for the complete (nested) extension are found, remove subextensions from FILENAME's extensions until a match is found."
-  (let ((current-extensions (projectile--file-name-extensions (file-name-nondirectory file-name)))
-        associated-extensions)
-    (catch 'break
-      (while (not (string= "" current-extensions))
-        (if (setq associated-extensions (cdr (assoc current-extensions projectile-other-file-alist)))
-            (throw 'break associated-extensions))
-        (setq current-extensions (projectile--file-name-extensions current-extensions))))))
-
-(defun projectile-get-other-files (current-file project-file-list &optional flex-matching)
-  "Narrow to files with the same names but different extensions.
-Returns a list of possible files for users to choose.
-
-With FLEX-MATCHING, match any file that contains the base name of current file"
-  (let* ((file-ext-list (projectile-associated-file-name-extensions current-file))
-         (fulldirname (if (file-name-directory current-file)
-                          (file-name-directory current-file) "./"))
-         (dirname (file-name-nondirectory (directory-file-name fulldirname)))
-         (filename (regexp-quote (projectile--file-name-sans-extensions current-file)))
-         (file-list (mapcar (lambda (ext)
-                              (if flex-matching
-                                  (concat ".*" filename ".*" "\." ext "\\'")
-                                (concat "^" filename
-                                        (unless (equal ext "")
-                                          (concat "\." ext))
-                                        "\\'")))
-                            file-ext-list))
-         (candidates (cl-remove-if-not
-                      (lambda (project-file)
-                        (string-match filename project-file))
-                      project-file-list))
-         (candidates
-          (projectile-flatten (mapcar
-                               (lambda (file)
-                                 (cl-remove-if-not
-                                  (lambda (project-file)
-                                    (string-match file
-                                                  (concat (file-name-base project-file)
-                                                          (unless (equal (file-name-extension project-file) nil)
-                                                            (concat "\." (file-name-extension project-file))))))
-                                  candidates))
-                               file-list)))
-         (candidates
-          (cl-remove-if-not (lambda (file) (not (backup-file-name-p file))) candidates))
-         (candidates
-          (cl-sort (copy-sequence candidates)
-                   (lambda (file _)
-                     (let ((candidate-dirname (file-name-nondirectory (directory-file-name (file-name-directory file)))))
-                       (unless (equal fulldirname (file-name-directory file))
-                         (equal dirname candidate-dirname)))))))
-    candidates))
-
-(defun projectile-select-files (project-files &optional invalidate-cache)
-  "Select a list of files based on filename at point.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first."
-  (projectile-maybe-invalidate-cache invalidate-cache)
-  (let* ((file (if (region-active-p)
-                   (buffer-substring (region-beginning) (region-end))
-                 (or (thing-at-point 'filename) "")))
-         (file (if (string-match "\\.?\\./" file)
-                   (file-relative-name (file-truename file) (projectile-project-root))
-                 file))
-         (files (if file
-                    (cl-remove-if-not
-                     (lambda (project-file)
-                       (string-match file project-file))
-                     project-files)
-                  nil)))
-    files))
-
-(defun projectile--find-file-dwim (invalidate-cache &optional ff-variant)
-  "Jump to a project's files using completion based on context.
-
-With a INVALIDATE-CACHE invalidates the cache first.
-
-With FF-VARIANT set to a defun, use that instead of `find-file'.
-A typical example of such a defun would be `find-file-other-window' or
-`find-file-other-frame'
-
-Subroutine for `projectile-find-file-dwim' and
-`projectile-find-file-dwim-other-window'"
-  (let* ((project-root (projectile-project-root))
-         (project-files (projectile-project-files project-root))
-         (files (projectile-select-files project-files invalidate-cache))
-         (file (cond ((= (length files) 1)
-                      (car files))
-                     ((> (length files) 1)
-                      (projectile-completing-read "Switch to: " files))
-                     (t
-                      (projectile-completing-read "Switch to: " project-files))))
-         (ff (or ff-variant #'find-file)))
-    (funcall ff (expand-file-name file project-root))
-    (run-hooks 'projectile-find-file-hook)))
-
-;;;###autoload
-(defun projectile-find-file-dwim (&optional invalidate-cache)
-  "Jump to a project's files using completion based on context.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-If point is on a filename, Projectile first tries to search for that
-file in project:
-
-- If it finds just a file, it switches to that file instantly.  This works even
-if the filename is incomplete, but there's only a single file in the current project
-that matches the filename at point.  For example, if there's only a single file named
-\"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
-`projectile-find-file-dwim' still switches to \"projectile/projectile.el\" immediately
- because this is the only filename that matches.
-
-- If it finds a list of files, the list is displayed for selecting.  A list of
-files is displayed when a filename appears more than one in the project or the
-filename at point is a prefix of more than two files in a project.  For example,
-if `projectile-find-file-dwim' is executed on a filepath like \"projectile/\", it lists
-the content of that directory.  If it is executed on a partial filename like
- \"projectile/a\", a list of files with character 'a' in that directory is presented.
-
-- If it finds nothing, display a list of all files in project for selecting."
-  (interactive "P")
-  (projectile--find-file-dwim invalidate-cache))
-
-;;;###autoload
-(defun projectile-find-file-dwim-other-window (&optional invalidate-cache)
-  "Jump to a project's files using completion based on context in other window.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-If point is on a filename, Projectile first tries to search for that
-file in project:
-
-- If it finds just a file, it switches to that file instantly.  This works even
-if the filename is incomplete, but there's only a single file in the current project
-that matches the filename at point.  For example, if there's only a single file named
-\"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
-`projectile-find-file-dwim-other-window' still switches to \"projectile/projectile.el\"
-immediately because this is the only filename that matches.
-
-- If it finds a list of files, the list is displayed for selecting.  A list of
-files is displayed when a filename appears more than one in the project or the
-filename at point is a prefix of more than two files in a project.  For example,
-if `projectile-find-file-dwim-other-window' is executed on a filepath like \"projectile/\", it lists
-the content of that directory.  If it is executed on a partial filename
-like \"projectile/a\", a list of files with character 'a' in that directory
-is presented.
-
-- If it finds nothing, display a list of all files in project for selecting."
-  (interactive "P")
-  (projectile--find-file-dwim invalidate-cache #'find-file-other-window))
-
-;;;###autoload
-(defun projectile-find-file-dwim-other-frame (&optional invalidate-cache)
-  "Jump to a project's files using completion based on context in other frame.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first.
-
-If point is on a filename, Projectile first tries to search for that
-file in project:
-
-- If it finds just a file, it switches to that file instantly.  This works even
-if the filename is incomplete, but there's only a single file in the current project
-that matches the filename at point.  For example, if there's only a single file named
-\"projectile/projectile.el\" but the current filename is \"projectile/proj\" (incomplete),
-`projectile-find-file-dwim-other-frame' still switches to \"projectile/projectile.el\"
-immediately because this is the only filename that matches.
-
-- If it finds a list of files, the list is displayed for selecting.  A list of
-files is displayed when a filename appears more than one in the project or the
-filename at point is a prefix of more than two files in a project.  For example,
-if `projectile-find-file-dwim-other-frame' is executed on a filepath like \"projectile/\", it lists
-the content of that directory.  If it is executed on a partial filename
-like \"projectile/a\", a list of files with character 'a' in that directory
-is presented.
-
-- If it finds nothing, display a list of all files in project for selecting."
-  (interactive "P")
-  (projectile--find-file-dwim invalidate-cache #'find-file-other-frame))
-
-(defun projectile--find-file (invalidate-cache &optional ff-variant)
-  "Jump to a project's file using completion.
-With INVALIDATE-CACHE invalidates the cache first.  With FF-VARIANT set to a
-defun, use that instead of `find-file'.   A typical example of such a defun
-would be `find-file-other-window' or `find-file-other-frame'"
-  (interactive "P")
-  (projectile-maybe-invalidate-cache invalidate-cache)
-  (let* ((project-root (projectile-ensure-project (projectile-project-root)))
-         (file (projectile-completing-read "Find file: "
-                                          (projectile-project-files project-root)))
-         (ff (or ff-variant #'find-file)))
-    (when file
-      (funcall ff (expand-file-name file project-root))
-      (run-hooks 'projectile-find-file-hook))))
-
-;;;###autoload
-(defun projectile-find-file (&optional invalidate-cache)
-  "Jump to a project's file using completion.
-With a prefix arg INVALIDATE-CACHE invalidates the cache first."
-  (interactive "P")
-  (projectile--find-file invalidate-cache))
-
-;;;###autoload
-(defun projectile-find-file-other-window (&optional invalidate-cache)
-  "Jump to a project's file using completion and show it in another window.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first."
-  (interactive "P")
-  (projectile--find-file invalidate-cache #'find-file-other-window))
-
-;;;###autoload
-(defun projectile-find-file-other-frame (&optional invalidate-cache)
-  "Jump to a project's file using completion and show it in another frame.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first."
-  (interactive "P")
-  (projectile--find-file invalidate-cache #'find-file-other-frame))
-
-;;;###autoload
-(defun projectile-toggle-project-read-only ()
-  "Toggle project read only."
-  (interactive)
-  (let ((inhibit-read-only t)
-        (val (not buffer-read-only))
-        (default-directory (projectile-ensure-project (projectile-project-root))))
-    (add-dir-local-variable nil 'buffer-read-only val)
-    (save-buffer)
-    (kill-buffer)
-    (when buffer-file-name
-      (read-only-mode (if val +1 -1))
-      (message "[%s] read-only-mode is %s" (projectile-project-name) (if val "on" "off")))))
-
-
-;;;; Sorting project files
-(defun projectile-sort-files (files)
-  "Sort FILES according to `projectile-sort-order'."
-  (cl-case projectile-sort-order
-    (default files)
-    (recentf (projectile-sort-by-recentf-first files))
-    (recently-active (projectile-sort-by-recently-active-first files))
-    (modification-time (projectile-sort-by-modification-time files))
-    (access-time (projectile-sort-by-access-time files))))
-
-(defun projectile-sort-by-recentf-first (files)
-  "Sort FILES by a recent first scheme."
-  (let ((project-recentf-files (projectile-recentf-files)))
-    (append project-recentf-files
-            (projectile-difference files project-recentf-files))))
-
-(defun projectile-sort-by-recently-active-first (files)
-  "Sort FILES by most recently active buffers or opened files."
-  (let ((project-recently-active-files (projectile-recently-active-files)))
-    (append project-recently-active-files
-            (projectile-difference files project-recently-active-files))))
-
-(defun projectile-sort-by-modification-time (files)
-  "Sort FILES by modification time."
-  (let ((default-directory (projectile-project-root)))
-    (cl-sort
-     (copy-sequence files)
-     (lambda (file1 file2)
-       (let ((file1-mtime (nth 5 (file-attributes file1)))
-             (file2-mtime (nth 5 (file-attributes file2))))
-         (not (time-less-p file1-mtime file2-mtime)))))))
-
-(defun projectile-sort-by-access-time (files)
-  "Sort FILES by access time."
-  (let ((default-directory (projectile-project-root)))
-    (cl-sort
-     (copy-sequence files)
-     (lambda (file1 file2)
-       (let ((file1-atime (nth 4 (file-attributes file1)))
-             (file2-atime (nth 4 (file-attributes file2))))
-         (not (time-less-p file1-atime file2-atime)))))))
-
-
-;;;; Find directory in project functionality
-(defun projectile--find-dir (invalidate-cache &optional dired-variant)
-  "Jump to a project's directory using completion.
-
-With INVALIDATE-CACHE invalidates the cache first.  With DIRED-VARIANT set to a
-defun, use that instead of `dired'.  A typical example of such a defun would be
-`dired-other-window' or `dired-other-frame'"
-  (projectile-maybe-invalidate-cache invalidate-cache)
-  (let* ((project (projectile-ensure-project (projectile-project-root)))
-         (dir (projectile-complete-dir project))
-         (dired-v (or dired-variant #'dired)))
-    (funcall dired-v (expand-file-name dir project))
-    (run-hooks 'projectile-find-dir-hook)))
-
-;;;###autoload
-(defun projectile-find-dir (&optional invalidate-cache)
-  "Jump to a project's directory using completion.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first."
-  (interactive "P")
-  (projectile--find-dir invalidate-cache))
-
-;;;###autoload
-(defun projectile-find-dir-other-window (&optional invalidate-cache)
-  "Jump to a project's directory in other window using completion.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first."
-  (interactive "P")
-  (projectile--find-dir invalidate-cache #'dired-other-window))
-
-;;;###autoload
-(defun projectile-find-dir-other-frame (&optional invalidate-cache)
-  "Jump to a project's directory in other window using completion.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first."
-  (interactive "P")
-  (projectile--find-dir invalidate-cache #'dired-other-frame))
-
-(defun projectile-complete-dir (project)
-  (let ((project-dirs (projectile-project-dirs project)))
-    (projectile-completing-read
-    "Find dir: "
-    (if projectile-find-dir-includes-top-level
-        (append '("./") project-dirs)
-      project-dirs))))
-
-;;;###autoload
-(defun projectile-find-test-file (&optional invalidate-cache)
-  "Jump to a project's test file using completion.
-
-With a prefix arg INVALIDATE-CACHE invalidates the cache first."
-  (interactive "P")
-  (projectile-maybe-invalidate-cache invalidate-cache)
-  (let ((file (projectile-completing-read "Find test file: "
-                                          (projectile-current-project-test-files))))
-    (find-file (expand-file-name file (projectile-project-root)))))
-
-(defun projectile-test-files (files)
-  "Return only the test FILES."
-  (cl-remove-if-not 'projectile-test-file-p files))
-
-(defun projectile-test-file-p (file)
-  "Check if FILE is a test file."
-  (or (cl-some (lambda (pat) (string-prefix-p pat (file-name-nondirectory file)))
-               (delq nil (list (funcall projectile-test-prefix-function (projectile-project-type)))))
-      (cl-some (lambda (pat) (string-suffix-p pat (file-name-sans-extension (file-name-nondirectory file))))
-               (delq nil (list (funcall projectile-test-suffix-function (projectile-project-type)))))))
-
-(defun projectile-current-project-test-files ()
-  "Return a list of test files for the current project."
-  (projectile-test-files (projectile-current-project-files)))
-
-(defvar projectile-project-types nil
-  "An alist holding all project types that are known to Projectile.
-The project types are symbols and they are linked to plists holding
-the properties of the various project types.")
-
-(cl-defun projectile-register-project-type
-    (project-type marker-files &key compilation-dir configure compile test run test-suffix test-prefix src-dir test-dir)
-  "Register a project type with projectile.
-
-A project type is defined by PROJECT-TYPE, a set of MARKER-FILES,
-and optional keyword arguments:
-COMPILATION-DIR the directory to run the tests- and compilations in,
-CONFIGURE which specifies a command that configures the project
-          `%s' in the command will be substituted with (projectile-project-root)
-          before the command is run,
-COMPILE which specifies a command that builds the project,
-TEST which specified a command that tests the project,
-RUN which specifies a command that runs the project,
-TEST-SUFFIX which specifies test file suffix, and
-TEST-PREFIX which specifies test file prefix.
-SRC-DIR which specifies the path to the source relative to the project root.
-TEST-DIR which specifies the path to the tests relative to the project root."
-  (let ((project-plist (list 'marker-files marker-files
-                             'compilation-dir compilation-dir
-                             'configure-command configure
-                             'compile-command compile
-                             'test-command test
-                             'run-command run)))
-    ;; There is no way for the function to distinguish between an
-    ;; explicit argument of nil and an omitted argument. However, the
-    ;; body of the function is free to consider nil an abbreviation
-    ;; for some other meaningful value
-    (when test-suffix
-      (plist-put project-plist 'test-suffix test-suffix))
-    (when test-prefix
-      (plist-put project-plist 'test-prefix test-prefix))
-    (when src-dir
-      (plist-put project-plist 'src-dir src-dir))
-    (when test-dir
-      (plist-put project-plist 'test-dir test-dir))
-    (setq projectile-project-types
-          (cons `(,project-type . ,project-plist)
-                projectile-project-types))))
-
-(defun projectile-cabal-project-p ()
-  "Check if a project contains *.cabal files but no stack.yaml file."
-  (and (projectile-verify-file-wildcard "*.cabal")
-       (not (projectile-verify-file "stack.yaml"))))
-
-(defun projectile-go-project-p ()
-  "Check if a project contains Go source files."
-  (projectile-verify-file-wildcard "*.go"))
-
-(define-obsolete-variable-alias 'projectile-go-function 'projectile-go-project-test-function "1.0.0")
-(defcustom projectile-go-project-test-function #'projectile-go-project-p
-  "Function to determine if project's type is go."
-  :group 'projectile
-  :type 'function)
-
-;;; Project type registration
-;;
-;; Project type detection happens in a reverse order with respect to
-;; project type registration (invocations of `projectile-register-project-type').
-;;
-;; As function-based project type detection is pretty slow, so it
-;; should be tried at the end if everything else failed (meaning here
-;; it should be listed first).
-;;
-;; Ideally common project types should be checked earlier than exotic ones.
-
-;; Function-based detection project type
-(projectile-register-project-type 'haskell-cabal #'projectile-cabal-project-p
-                                  :compile "cabal build"
-                                  :test "cabal test"
-                                  :test-suffix "Spec")
-(projectile-register-project-type 'go projectile-go-project-test-function
-                                  :compile "go build ./..."
-                                  :test "go test ./..."
-                                  :test-suffix "_test")
-;; File-based detection project types
-
-;; Universal
-(projectile-register-project-type 'scons '("SConstruct")
-                                  :compile "scons"
-                                  :test "scons test"
-                                  :test-suffix "test")
-(projectile-register-project-type 'meson '("meson.build")
-                                  :compilation-dir "build"
-                                  :configure "meson %s"
-                                  :compile "ninja"
-                                  :test "ninja test")
-(projectile-register-project-type 'nix '("default.nix")
-                                  :compile "nix-build"
-                                  :test "nix-build")
-;; Make & CMake
-(projectile-register-project-type 'make '("Makefile")
-                                  :compile "make"
-                                  :test "make test")
-(projectile-register-project-type 'cmake '("CMakeLists.txt")
-                                  :configure "cmake %s"
-                                  :compile "cmake --build ."
-                                  :test "ctest")
-;; PHP
-(projectile-register-project-type 'php-symfony '("composer.json" "app" "src" "vendor")
-                                  :compile "app/console server:run"
-                                  :test "phpunit -c app "
-                                  :test-suffix "Test")
-;; Erlang & Elixir
-(projectile-register-project-type 'rebar '("rebar.config")
-                                  :compile "rebar"
-                                  :test "rebar eunit"
-                                  :test-suffix "_SUITE")
-(projectile-register-project-type 'elixir '("mix.exs")
-                                  :compile "mix compile"
-                                  :src-dir "lib/"
-                                  :test "mix test"
-                                  :test-suffix "_test")
-;; JavaScript
-(projectile-register-project-type 'grunt '("Gruntfile.js")
-                                  :compile "grunt"
-                                  :test "grunt test")
-(projectile-register-project-type 'gulp '("gulpfile.js")
-                                  :compile "gulp"
-                                  :test "gulp test")
-(projectile-register-project-type 'npm '("package.json")
-                                  :compile "npm install"
-                                  :test "npm test"
-                                  :test-suffix ".test")
-;; Angular
-(projectile-register-project-type 'angular '("angular.json" ".angular-cli.json")
-                                  :compile "ng build"
-                                  :run "ng serve"
-                                  :test "ng test")
-;; Python
-(projectile-register-project-type 'django '("manage.py")
-                                  :compile "python manage.py runserver"
-                                  :test "python manage.py test"
-                                  :test-prefix "test_"
-                                  :test-suffix"_test")
-(projectile-register-project-type 'python-pip '("requirements.txt")
-                                  :compile "python setup.by build"
-                                  :test "python -m unittest discover"
-                                  :test-prefix "test_"
-                                  :test-suffix"_test")
-(projectile-register-project-type 'python-pkg '("setup.py")
-                                  :compile "python setup.py build"
-                                  :test "python -m unittest discover"
-                                  :test-prefix "test_"
-                                  :test-suffix"_test")
-(projectile-register-project-type 'python-tox '("tox.ini")
-                                  :compile "tox -r --notest"
-                                  :test "tox"
-                                  :test-prefix "test_"
-                                  :test-suffix"_test")
-(projectile-register-project-type 'python-pipenv '("Pipfile")
-                                  :compile "pipenv run build"
-                                  :test "pipenv run test"
-                                  :test-prefix "test_"
-                                  :test-suffix "_test")
-;; Java & friends
-(projectile-register-project-type 'maven '("pom.xml")
-                                  :compile "mvn clean install"
-                                  :test "mvn test"
-                                  :test-suffix "Test"
-                                  :src-dir "main/src/"
-                                  :test-dir "main/test/")
-(projectile-register-project-type 'gradle '("build.gradle")
-                                  :compile "gradle build"
-                                  :test "gradle test"
-                                  :test-suffix "Spec")
-(projectile-register-project-type 'gradlew '("gradlew")
-                                  :compile "./gradlew build"
-                                  :test "./gradlew test"
-                                  :test-suffix "Spec")
-(projectile-register-project-type 'grails '("application.properties" "grails-app")
-                                  :compile "grails package"
-                                  :test "grails test-app"
-                                  :test-suffix "Spec")
-(projectile-register-project-type 'sbt '("build.sbt")
-                                  :compile "sbt compile"
-                                  :test "sbt test"
-                                  :test-suffix "Spec")
-(projectile-register-project-type 'lein-test '("project.clj")
-                                  :compile "lein compile"
-                                  :test "lein test"
-                                  :test-suffix "_test")
-(projectile-register-project-type 'lein-midje '("project.clj" ".midje.clj")
-                                  :compile "lein compile"
-                                  :test "lein midje"
-                                  :test-prefix "t_")
-(projectile-register-project-type 'boot-clj '("build.boot")
-                                  :compile "boot aot"
-                                  :test "boot test"
-                                  :test-suffix "_test")
-(projectile-register-project-type 'clojure-cli '("deps.edn")
-                                  :test-suffix "_test")
-;; Ruby
-(projectile-register-project-type 'ruby-rspec '("Gemfile" "lib" "spec")
-                                  :compile "bundle exec rake"
-                                  :src-dir "lib/"
-                                  :test "bundle exec rspec"
-                                  :test-dir "spec/"
-                                  :test-suffix "_spec")
-(projectile-register-project-type 'ruby-test '("Gemfile" "lib" "test")
-                                  :compile"bundle exec rake"
-                                  :src-dir "lib/"
-                                  :test "bundle exec rake test"
-                                  :test-suffix "_test")
-;; Rails needs to be registered after npm, otherwise `package.json` makes it `npm`.
-;; https://github.com/bbatsov/projectile/pull/1191
-(projectile-register-project-type 'rails-test '("Gemfile" "app" "lib" "db" "config" "test")
-                                  :compile "bundle exec rails server"
-                                  :src-dir "lib/"
-                                  :test "bundle exec rake test"
-                                  :test-suffix "_test")
-(projectile-register-project-type 'rails-rspec '("Gemfile" "app" "lib" "db" "config" "spec")
-                                  :compile "bundle exec rails server"
-                                  :src-dir "lib/"
-                                  :test "bundle exec rspec"
-                                  :test-dir "spec/"
-                                  :test-suffix "_spec")
-;; Crystal
-(projectile-register-project-type 'crystal-spec '("shard.yml")
-                                  :src-dir "src/"
-                                  :test "crystal spec"
-                                  :test-dir "spec/"
-                                  :test-suffix "_spec")
-
-;; Emacs
-(projectile-register-project-type 'emacs-cask '("Cask")
-                                  :compile "cask install"
-                                  :test-prefix "test-"
-                                  :test-suffix "-test")
-
-;; R
-(projectile-register-project-type 'r '("DESCRIPTION")
-                                  :compile "R CMD INSTALL --with-keep.source ."
-                                  :test (concat "R CMD check -o " temporary-file-directory " ."))
-
-;; Haskell
-(projectile-register-project-type 'haskell-stack '("stack.yaml")
-                                  :compile "stack build"
-                                  :test "stack build --test"
-                                  :test-suffix "Spec")
-
-;; Rust
-(projectile-register-project-type 'rust-cargo '("Cargo.toml")
-                                  :compile "cargo build"
-                                  :test "cargo test")
-
-;; Racket
-(projectile-register-project-type 'racket '("info.rkt")
-                                  :test "raco test .")
-
-
-(defvar-local projectile-project-type nil
-  "Buffer local var for overriding the auto-detected project type.
-Normally you'd set this from .dir-locals.el.")
-(put 'projectile-project-type 'safe-local-variable #'symbolp)
-
-(defun projectile-detect-project-type ()
-  "Detect the type of the current project.
-Fallsback to a generic project type when the type can't be determined."
-  (let ((project-type
-         (or (car (cl-find-if
-                   (lambda (project-type-record)
-                     (let ((project-type (car project-type-record))
-                           (marker (plist-get (cdr project-type-record) 'marker-files)))
-                       (if (listp marker)
-                           (and (projectile-verify-files marker) project-type)
-                         (and (funcall marker) project-type))))
-                   projectile-project-types))
-             'generic)))
-    (puthash (projectile-project-root) project-type projectile-project-type-cache)
-    project-type))
-
-(defun projectile-project-type (&optional dir)
-  "Determine a project's type based on its structure.
-When DIR is specified it checks it, otherwise it acts
-on the current project.
-
-The project type is cached for improved performance."
-  (if projectile-project-type
-      projectile-project-type
-    (let* ((dir (or dir default-directory))
-           (project-root (projectile-project-root dir)))
-      (if project-root
-          (or (gethash project-root projectile-project-type-cache)
-              (projectile-detect-project-type))
-        ;; if we're not in a project we just return nil
-        nil))))
-
-;;;###autoload
-(defun projectile-project-info ()
-  "Display info for current project."
-  (interactive)
-  (message "Project dir: %s ## Project VCS: %s ## Project type: %s"
-           (projectile-project-root)
-           (projectile-project-vcs)
-           (projectile-project-type)))
-
-(defun projectile-verify-files (files)
-  "Check whether all FILES exist in the current project."
-  (cl-every #'projectile-verify-file files))
-
-(defun projectile-verify-file (file)
-  "Check whether FILE exists in the current project."
-  (file-exists-p (projectile-expand-root file)))
-
-(defun projectile-verify-file-wildcard (file)
-  "Check whether FILE exists in the current project.
-Expands wildcards using `file-expand-wildcards' before checking."
-  (file-expand-wildcards (projectile-expand-root file)))
-
-(defun projectile-project-vcs (&optional project-root)
-  "Determine the VCS used by the project if any.
-PROJECT-ROOT is the targeted directory.  If nil, use
-`projectile-project-root'."
-  (or project-root (setq project-root (projectile-project-root)))
-  (cond
-   ((projectile-file-exists-p (expand-file-name ".git" project-root)) 'git)
-   ((projectile-file-exists-p (expand-file-name ".hg" project-root)) 'hg)
-   ((projectile-file-exists-p (expand-file-name ".fslckout" project-root)) 'fossil)
-   ((projectile-file-exists-p (expand-file-name "_FOSSIL_" project-root)) 'fossil)
-   ((projectile-file-exists-p (expand-file-name ".bzr" project-root)) 'bzr)
-   ((projectile-file-exists-p (expand-file-name "_darcs" project-root)) 'darcs)
-   ((projectile-file-exists-p (expand-file-name ".svn" project-root)) 'svn)
-   ((projectile-locate-dominating-file project-root ".git") 'git)
-   ((projectile-locate-dominating-file project-root ".hg") 'hg)
-   ((projectile-locate-dominating-file project-root ".fslckout") 'fossil)
-   ((projectile-locate-dominating-file project-root "_FOSSIL_") 'fossil)
-   ((projectile-locate-dominating-file project-root ".bzr") 'bzr)
-   ((projectile-locate-dominating-file project-root "_darcs") 'darcs)
-   ((projectile-locate-dominating-file project-root ".svn") 'svn)
-   (t 'none)))
-
-(defun projectile--test-name-for-impl-name (impl-file-path)
-  "Determine the name of the test file for IMPL-FILE-PATH."
-  (let* ((project-type (projectile-project-type))
-         (impl-file-name (file-name-sans-extension (file-name-nondirectory impl-file-path)))
-         (impl-file-ext (file-name-extension impl-file-path))
-         (test-prefix (funcall projectile-test-prefix-function project-type))
-         (test-suffix (funcall projectile-test-suffix-function project-type)))
-    (cond
-     (test-prefix (concat test-prefix impl-file-name "." impl-file-ext))
-     (test-suffix (concat impl-file-name test-suffix "." impl-file-ext))
-     (t (error "Project type `%s' not supported!" project-type)))))
-
-(defun projectile-create-test-file-for (impl-file-path)
-  "Create a test file for IMPL-FILE-PATH."
-  (let* ((test-file (projectile--test-name-for-impl-name impl-file-path))
-         (project-root (projectile-project-root))
-         (relative-dir (file-name-directory (file-relative-name impl-file-path project-root)))
-         (src-dir-name (projectile-src-directory (projectile-project-type)))
-         (test-dir-name (projectile-test-directory (projectile-project-type)))
-         (test-dir (expand-file-name (replace-regexp-in-string src-dir-name test-dir-name relative-dir) project-root))
-         (test-path (expand-file-name test-file test-dir)))
-    (unless (file-exists-p test-path)
-      (progn (unless (file-exists-p test-dir)
-               (make-directory test-dir :create-parents))
-             test-path))))
-
-(defun projectile-find-implementation-or-test (file-name)
-  "Given a FILE-NAME return the matching implementation or test filename.
-
-If `projectile-create-missing-test-files' is non-nil, create the missing
-test file."
-  (unless file-name (error "The current buffer is not visiting a file"))
-  (if (projectile-test-file-p file-name)
-      ;; find the matching impl file
-      (let ((impl-file (projectile-find-matching-file file-name)))
-        (if impl-file
-            (projectile-expand-root impl-file)
-          (error
-           "No matching source file found for project type `%s'"
-           (projectile-project-type))))
-    ;; find the matching test file
-    (let ((test-file (projectile-find-matching-test file-name)))
-      (if test-file
-          (projectile-expand-root test-file)
-        (if projectile-create-missing-test-files
-            (projectile-create-test-file-for file-name)
-          (error "No matching test file found for project type `%s'"
-                 (projectile-project-type)))))))
-
-;;;###autoload
-(defun projectile-find-implementation-or-test-other-window ()
-  "Open matching implementation or test file in other window."
-  (interactive)
-  (find-file-other-window
-   (projectile-find-implementation-or-test (buffer-file-name))))
-
-;;;###autoload
-(defun projectile-find-implementation-or-test-other-frame ()
-  "Open matching implementation or test file in other frame."
-  (interactive)
-  (find-file-other-frame
-   (projectile-find-implementation-or-test (buffer-file-name))))
-
-;;;###autoload
-(defun projectile-toggle-between-implementation-and-test ()
-  "Toggle between an implementation file and its test file."
-  (interactive)
-  (find-file
-   (projectile-find-implementation-or-test (buffer-file-name))))
-
-
-(defun projectile-project-type-attribute (project-type key &optional default-value)
-  "Return the value of some PROJECT-TYPE attribute identified by KEY.
-Fallback to DEFAULT-VALUE for missing attributes."
-  (let ((project (alist-get project-type projectile-project-types)))
-    (if (and project (plist-member project key))
-        (plist-get project key)
-      default-value)))
-
-(defun projectile-test-prefix (project-type)
-  "Find default test files prefix based on PROJECT-TYPE."
-  (projectile-project-type-attribute project-type 'test-prefix))
-
-(defun projectile-test-suffix (project-type)
-  "Find default test files suffix based on PROJECT-TYPE."
-  (projectile-project-type-attribute project-type 'test-suffix))
-
-(defun projectile-src-directory (project-type)
-  "Find default src directory based on PROJECT-TYPE."
-  (projectile-project-type-attribute project-type 'src-dir "src/"))
-
-(defun projectile-test-directory (project-type)
-  "Find default test directory based on PROJECT-TYPE."
-  (projectile-project-type-attribute project-type 'test-dir "test/"))
-
-(defun projectile-dirname-matching-count (a b)
-  "Count matching dirnames ascending file paths."
-  (setq a (reverse (split-string (or (file-name-directory a) "") "/" t))
-        b (reverse (split-string (or (file-name-directory b) "") "/" t)))
-  (let ((common 0))
-    (while (and a b (string-equal (pop a) (pop b)))
-      (setq common (1+ common)))
-    common))
-
-(defun projectile-group-file-candidates (file candidates)
-  "Group file candidates by dirname matching count."
-  (cl-sort (copy-sequence
-            (let (value result)
-              (while (setq value (pop candidates))
-                (let* ((key (projectile-dirname-matching-count file value))
-                       (kv (assoc key result)))
-                  (if kv
-                      (setcdr kv (cons value (cdr kv)))
-                    (push (list key value) result))))
-              (mapcar (lambda (x)
-                        (cons (car x) (nreverse (cdr x))))
-                      (nreverse result))))
-           (lambda (a b) (> (car a) (car b)))))
-
-(defun projectile-find-matching-test (file)
-  "Compute the name of the test matching FILE."
-  (let* ((basename (file-name-nondirectory (file-name-sans-extension file)))
-         (test-prefix (funcall projectile-test-prefix-function (projectile-project-type)))
-         (test-suffix (funcall projectile-test-suffix-function (projectile-project-type)))
-         (candidates
-          (cl-remove-if-not
-           (lambda (current-file)
-             (let ((name (file-name-nondirectory
-                          (file-name-sans-extension current-file))))
-               (or (when test-prefix
-                     (string-equal name (concat test-prefix basename)))
-                   (when test-suffix
-                     (string-equal name (concat basename test-suffix))))))
-           (projectile-current-project-files))))
-    (cond
-     ((null candidates) nil)
-     ((= (length candidates) 1) (car candidates))
-     (t (let ((grouped-candidates (projectile-group-file-candidates file candidates)))
-          (if (= (length (car grouped-candidates)) 2)
-              (car (last (car grouped-candidates)))
-            (projectile-completing-read
-             "Switch to: "
-             (apply 'append (mapcar 'cdr grouped-candidates)))))))))
-
-(defun projectile-find-matching-file (test-file)
-  "Compute the name of a file matching TEST-FILE."
-  (let* ((basename (file-name-nondirectory (file-name-sans-extension test-file)))
-         (test-prefix (funcall projectile-test-prefix-function (projectile-project-type)))
-         (test-suffix (funcall projectile-test-suffix-function (projectile-project-type)))
-         (candidates
-          (cl-remove-if-not
-           (lambda (current-file)
-             (let ((name (file-name-nondirectory
-                          (file-name-sans-extension current-file))))
-               (or (when test-prefix
-                     (string-equal (concat test-prefix name) basename))
-                   (when test-suffix
-                     (string-equal (concat name test-suffix) basename)))))
-           (projectile-current-project-files))))
-    (cond
-     ((null candidates) nil)
-     ((= (length candidates) 1) (car candidates))
-     (t (let ((grouped-candidates (projectile-group-file-candidates test-file candidates)))
-          (if (= (length (car grouped-candidates)) 2)
-              (car (last (car grouped-candidates)))
-            (projectile-completing-read
-             "Switch to: "
-             (apply 'append (mapcar 'cdr grouped-candidates)))))))))
-
-(defun projectile-grep-default-files ()
-  "Try to find a default pattern for `projectile-grep'.
-This is a subset of `grep-read-files', where either a matching entry from
-`grep-files-aliases' or file name extension pattern is returned."
-  (when buffer-file-name
-    (let* ((fn (file-name-nondirectory buffer-file-name))
-           (default-alias
-             (let ((aliases (remove (assoc "all" grep-files-aliases)
-                                    grep-files-aliases))
-                   alias)
-               (while aliases
-                 (setq alias (car aliases)
-                       aliases (cdr aliases))
-                 (if (string-match (mapconcat
-                                    #'wildcard-to-regexp
-                                    (split-string (cdr alias) nil t)
-                                    "\\|")
-                                   fn)
-                     (setq aliases nil)
-                   (setq alias nil)))
-               (cdr alias)))
-           (default-extension
-             (let ((ext (file-name-extension fn)))
-               (and ext (concat "*." ext)))))
-      (or default-alias default-extension))))
-
-(defun projectile--globally-ignored-file-suffixes-glob ()
-  "Return ignored file suffixes as a list of glob patterns."
-  (mapcar (lambda (pat) (concat "*" pat)) projectile-globally-ignored-file-suffixes))
-
-(defun projectile--read-search-string-with-default (prefix-label)
-  (let* ((prefix-label (projectile-prepend-project-name prefix-label))
-         (default-value (projectile-symbol-or-selection-at-point))
-         (default-label (if (or (not default-value)
-                                (string= default-value ""))
-                            ""
-                          (format " (default %s)" default-value))))
-    (read-string (format "%s%s: " prefix-label default-label) nil nil default-value)))
-
-;;;###autoload
-(defun projectile-grep (&optional regexp arg)
-  "Perform rgrep in the project.
-
-With a prefix ARG asks for files (globbing-aware) which to grep in.
-With prefix ARG of `-' (such as `M--'), default the files (without prompt),
-to `projectile-grep-default-files'.
-
-With REGEXP given, don't query the user for a regexp."
-  (interactive "i\nP")
-  (require 'grep) ;; for `rgrep'
-  (let* ((roots (projectile-get-project-directories (projectile-project-root)))
-         (search-regexp (or regexp
-                            (projectile--read-search-string-with-default "Grep for")))
-         (files (and arg (or (and (equal current-prefix-arg '-)
-                                  (projectile-grep-default-files))
-                             (read-string (projectile-prepend-project-name "Grep in: ")
-                                          (projectile-grep-default-files))))))
-    (dolist (root-dir roots)
-      (require 'vc-git) ;; for `vc-git-grep'
-      ;; in git projects users have the option to use `vc-git-grep' instead of `rgrep'
-      (if (and (eq (projectile-project-vcs) 'git)
-               projectile-use-git-grep
-               (fboundp 'vc-git-grep))
-          (vc-git-grep search-regexp (or files "") root-dir)
-        ;; paths for find-grep should relative and without trailing /
-        (let ((grep-find-ignored-directories
-               (cl-union (mapcar (lambda (f) (directory-file-name (file-relative-name f root-dir)))
-                                 (projectile-ignored-directories))
-                         grep-find-ignored-directories))
-              (grep-find-ignored-files
-               (cl-union (append (mapcar (lambda (file)
-                                           (file-relative-name file root-dir))
-                                         (projectile-ignored-files))
-                                 (projectile--globally-ignored-file-suffixes-glob))
-                         grep-find-ignored-files)))
-          (grep-compute-defaults)
-          (rgrep search-regexp (or files "* .*") root-dir))))
-    (run-hooks 'projectile-grep-finished-hook)))
-
-;;;###autoload
-(defun projectile-ag (search-term &optional arg)
-  "Run an ag search with SEARCH-TERM in the project.
-
-With an optional prefix argument ARG SEARCH-TERM is interpreted as a
-regular expression."
-  (interactive
-   (list (projectile--read-search-string-with-default
-          (format "Ag %ssearch for" (if current-prefix-arg "regexp " "")))
-         current-prefix-arg))
-  (if (require 'ag nil 'noerror)
-      (let ((ag-command (if arg 'ag-regexp 'ag))
-            (ag-ignore-list (delq nil
-                                  (delete-dups
-                                   (append
-                                    ag-ignore-list
-                                    (projectile--globally-ignored-file-suffixes-glob)
-                                    ;; ag supports git ignore files directly
-                                    (unless (eq (projectile-project-vcs) 'git)
-                                      (append (projectile-ignored-files-rel)
-                                              (projectile-ignored-directories-rel)
-                                              grep-find-ignored-files
-                                              grep-find-ignored-directories
-                                              '()))))))
-            ;; reset the prefix arg, otherwise it will affect the ag-command
-            (current-prefix-arg nil))
-        (funcall ag-command search-term (projectile-project-root)))
-    (error "Package 'ag' is not available")))
-
-;;;###autoload
-(defun projectile-ripgrep (search-term)
-  "Run a Ripgrep search with `SEARCH-TERM' at current project root.
-
-SEARCH-TERM is a regexp."
-  (interactive (list (projectile--read-search-string-with-default
-                      "Ripgrep search for")))
-  (if (require 'ripgrep nil 'noerror)
-      (let ((args (mapcar (lambda (val) (concat "--glob !" val))
-                          (append projectile-globally-ignored-files
-                                  projectile-globally-ignored-directories))))
-        (ripgrep-regexp search-term
-                        (projectile-project-root)
-                        (if current-prefix-arg
-                            args
-                          (cons "--fixed-strings" args))))
-    (error "Package `ripgrep' is not available")))
-
-(defun projectile-tags-exclude-patterns ()
-  "Return a string with exclude patterns for ctags."
-  (mapconcat (lambda (pattern) (format "--exclude=\"%s\""
-                                       (directory-file-name pattern)))
-             (projectile-ignored-directories-rel) " "))
-
-;;;###autoload
-(defun projectile-regenerate-tags ()
-  "Regenerate the project's [e|g]tags."
-  (interactive)
-  (if (and (boundp 'ggtags-mode)
-           (memq projectile-tags-backend '(auto ggtags)))
-      (progn
-        (let* ((ggtags-project-root (projectile-project-root))
-               (default-directory ggtags-project-root))
-          (ggtags-ensure-project)
-          (ggtags-update-tags t)))
-    (let* ((project-root (projectile-project-root))
-           (tags-exclude (projectile-tags-exclude-patterns))
-           (default-directory project-root)
-           (tags-file (expand-file-name projectile-tags-file-name))
-           (command (format projectile-tags-command tags-file tags-exclude default-directory))
-           shell-output exit-code)
-      (with-temp-buffer
-        (setq exit-code
-              (call-process-shell-command command nil (current-buffer))
-              shell-output (string-trim
-                            (buffer-substring (point-min) (point-max)))))
-      (unless (zerop exit-code)
-        (error shell-output))
-      (visit-tags-table tags-file)
-      (message "Regenerated %s" tags-file))))
-
-(defun projectile-visit-project-tags-table ()
-  "Visit the current project's tags table."
-  (when (projectile-project-p)
-    (let ((tags-file (projectile-expand-root projectile-tags-file-name)))
-      (when (file-exists-p tags-file)
-        (with-demoted-errors "Error loading tags-file: %s"
-          (visit-tags-table tags-file t))))))
-
-(defun projectile-determine-find-tag-fn ()
-  "Determine which function to use for a call to `projectile-find-tag'."
-  (or
-   (cond
-    ((eq projectile-tags-backend 'auto)
-     (cond
-      ((fboundp 'ggtags-find-tag-dwim)
-       'ggtags-find-tag-dwim)
-      ((fboundp 'xref-find-definitions)
-       'xref-find-definitions)
-      ((fboundp 'etags-select-find-tag)
-       'etags-select-find-tag)))
-    ((eq projectile-tags-backend 'xref)
-     (when (fboundp 'xref-find-definitions)
-       'xref-find-definitions))
-    ((eq projectile-tags-backend 'ggtags)
-     (when (fboundp 'ggtags-find-tag-dwim)
-       'ggtags-find-tag-dwim))
-    ((eq projectile-tags-backend 'etags-select)
-     (when (fboundp 'etags-select-find-tag)
-       'etags-select-find-tag)))
-   'find-tag))
-
-;;;###autoload
-(defun projectile-find-tag ()
-  "Find tag in project."
-  (interactive)
-  (projectile-visit-project-tags-table)
-  ;; Auto-discover the user's preference for tags
-  (let ((find-tag-fn (projectile-determine-find-tag-fn)))
-    (call-interactively find-tag-fn)))
-
-(defmacro projectile-with-default-dir (dir &rest body)
-  "Invoke in DIR the BODY."
-  (declare (debug t) (indent 1))
-  `(let ((default-directory ,dir))
-     ,@body))
-
-;;;###autoload
-(defun projectile-run-command-in-root ()
-  "Invoke `execute-extended-command' in the project's root."
-  (interactive)
-  (projectile-with-default-dir (projectile-ensure-project (projectile-project-root))
-    (call-interactively 'execute-extended-command)))
-
-;;;###autoload
-(defun projectile-run-shell-command-in-root ()
-  "Invoke `shell-command' in the project's root."
-  (interactive)
-  (projectile-with-default-dir (projectile-ensure-project (projectile-project-root))
-    (call-interactively 'shell-command)))
-
-;;;###autoload
-(defun projectile-run-async-shell-command-in-root ()
-  "Invoke `async-shell-command' in the project's root."
-  (interactive)
-  (projectile-with-default-dir (projectile-ensure-project (projectile-project-root))
-    (call-interactively 'async-shell-command)))
-
-;;;###autoload
-(defun projectile-run-shell ()
-  "Invoke `shell' in the project's root.
-
-Switch to the project specific shell buffer if it already exists."
-  (interactive)
-  (projectile-with-default-dir (projectile-ensure-project (projectile-project-root))
-    (shell (concat "*shell " (projectile-project-name) "*"))))
-
-;;;###autoload
-(defun projectile-run-eshell ()
-  "Invoke `eshell' in the project's root.
-
-Switch to the project specific eshell buffer if it already exists."
-  (interactive)
-  (projectile-with-default-dir (projectile-ensure-project (projectile-project-root))
-    (let ((eshell-buffer-name (concat "*eshell " (projectile-project-name) "*")))
-      (eshell))))
-
-;;;###autoload
-(defun projectile-run-ielm ()
-  "Invoke `ielm' in the project's root.
-
-Switch to the project specific ielm buffer if it already exists."
-  (interactive)
-  (let* ((project (projectile-ensure-project (projectile-project-root)))
-         (ielm-buffer-name (format "*ielm %s*" (projectile-project-name project))))
-    (if (get-buffer ielm-buffer-name)
-        (switch-to-buffer ielm-buffer-name)
-      (projectile-with-default-dir project
-        (ielm))
-      ;; ielm's buffer name is hardcoded, so we have to rename it after creation
-      (rename-buffer ielm-buffer-name))))
-
-;;;###autoload
-(defun projectile-run-term (program)
-  "Invoke `term' in the project's root.
-
-Switch to the project specific term buffer if it already exists."
-  (interactive (list nil))
-  (let* ((project (projectile-ensure-project (projectile-project-root)))
-         (term (concat "term " (projectile-project-name project)))
-         (buffer (concat "*" term "*")))
-    (unless (get-buffer buffer)
-      (require 'term)
-      (let ((program (or program
-                         (read-from-minibuffer "Run program: "
-                                               (or explicit-shell-file-name
-                                                   (getenv "ESHELL")
-                                                   (getenv "SHELL")
-                                                   "/bin/sh")))))
-        (projectile-with-default-dir project
-          (set-buffer (make-term term program))
-          (term-mode)
-          (term-char-mode))))
-    (switch-to-buffer buffer)))
-
-(defun projectile-files-in-project-directory (directory)
-  "Return a list of files in DIRECTORY."
-  (let* ((project (projectile-ensure-project (projectile-project-root)))
-         (dir (file-relative-name (expand-file-name directory)
-                                  project)))
-    (cl-remove-if-not
-     (lambda (f) (string-prefix-p dir f))
-     (projectile-project-files project))))
-
-(defun projectile-files-from-cmd (cmd directory)
-  "Use a grep-like CMD to search for files within DIRECTORY.
-
-CMD should include the necessary search params and should output
-equivalently to grep -HlI (only unique matching filenames).
-Returns a list of expanded filenames."
-  (let ((default-directory directory))
-    (mapcar (lambda (str)
-              (concat directory
-                      (if (string-prefix-p "./" str)
-                          (substring str 2)
-                        str)))
-            (split-string
-             (string-trim (shell-command-to-string cmd))
-             "\n+"
-             t))))
-
-(defun projectile-files-with-string (string directory)
-  "Return a list of all files containing STRING in DIRECTORY.
-
-Tries to use ag, ack, git-grep, and grep in that order.  If those
-are impossible (for instance on Windows), returns a list of all
-files in the project."
-  (if (projectile-unixy-system-p)
-      (let* ((search-term (shell-quote-argument string))
-             (cmd (cond ((executable-find "ag")
-                         (concat "ag --literal --nocolor --noheading -l -- "
-                                 search-term))
-                        ((executable-find "ack")
-                         (concat "ack --literal --noheading --nocolor -l -- "
-                                 search-term))
-                        ((and (executable-find "git")
-                              (eq (projectile-project-vcs) 'git))
-                         (concat "git grep -HlI " search-term))
-                        (t
-                         ;; -r: recursive
-                         ;; -H: show filename for each match
-                         ;; -l: show only file names with matches
-                         ;; -I: no binary files
-                         (format "grep -rHlI %s ." search-term)))))
-        (projectile-files-from-cmd cmd directory))
-    ;; we have to reject directories as a workaround to work with git submodules
-    (cl-remove-if
-     #'file-directory-p
-     (mapcar #'projectile-expand-root (projectile-dir-files directory)))))
-
-;;;###autoload
-(defun projectile-replace (&optional arg)
-  "Replace literal string in project using non-regexp `tags-query-replace'.
-
-With a prefix argument ARG prompts you for a directory on which
-to run the replacement."
-  (interactive "P")
-  (let* ((directory (if arg
-                        (file-name-as-directory
-                         (read-directory-name "Replace in directory: "))
-                      (projectile-ensure-project (projectile-project-root))))
-         (old-text (read-string
-                    (projectile-prepend-project-name "Replace: ")
-                    (projectile-symbol-or-selection-at-point)))
-         (new-text (read-string
-                    (projectile-prepend-project-name
-                     (format "Replace %s with: " old-text))))
-         (files (projectile-files-with-string old-text directory)))
-    ;; Adapted from `tags-query-replace' for literal strings (not regexp)
-    (setq tags-loop-scan `(let ,(unless (equal old-text (downcase old-text))
-                                  '((case-fold-search nil)))
-                            (if (search-forward ',old-text nil t)
-                                ;; When we find a match, move back to
-                                ;; the beginning of it so
-                                ;; perform-replace will see it.
-                                (goto-char (match-beginning 0))))
-          tags-loop-operate `(perform-replace ',old-text ',new-text t nil nil
-                                              nil multi-query-replace-map))
-    (tags-loop-continue (or (cons 'list files) t))))
-
-;;;###autoload
-(defun projectile-replace-regexp (&optional arg)
-  "Replace a regexp in the project using `tags-query-replace'.
-
-With a prefix argument ARG prompts you for a directory on which
-to run the replacement."
-  (interactive "P")
-  (let* ((directory (if arg
-                        (file-name-as-directory
-                         (read-directory-name "Replace regexp in directory: "))
-                      (projectile-ensure-project (projectile-project-root))))
-         (old-text (read-string
-                    (projectile-prepend-project-name "Replace regexp: ")
-                    (projectile-symbol-or-selection-at-point)))
-         (new-text (read-string
-                    (projectile-prepend-project-name
-                     (format "Replace regexp %s with: " old-text))))
-         (files
-          ;; We have to reject directories as a workaround to work with git submodules.
-          ;;
-          ;; We can't narrow the list of files with
-          ;; `projectile-files-with-string' because those regexp tools
-          ;; don't support Emacs regular expressions.
-          (cl-remove-if
-           #'file-directory-p
-           (mapcar #'projectile-expand-root (projectile-dir-files directory)))))
-    (tags-query-replace old-text new-text nil (cons 'list files))))
-
-;;;###autoload
-(defun projectile-kill-buffers ()
-  "Kill project buffers.
-
-The buffer are killed according to the value of
-`projectile-kill-buffers-filter'."
-  (interactive)
-  (let* ((project (projectile-ensure-project (projectile-project-root)))
-         (project-name (projectile-project-name project))
-         (buffers (projectile-project-buffers project)))
-    (when (yes-or-no-p
-           (format "Are you sure you want to kill %s buffers for '%s'? "
-                   (length buffers) project-name))
-      (dolist (buffer buffers)
-        (when (and
-               ;; we take care not to kill indirect buffers directly
-               ;; as we might encounter them after their base buffers are killed
-               (not (buffer-base-buffer buffer))
-               (if (functionp projectile-kill-buffers-filter)
-                   (funcall projectile-kill-buffers-filter buffer)
-                 (pcase projectile-kill-buffers-filter
-                   ('kill-all t)
-                   ('kill-only-files (buffer-file-name buffer))
-                   (_ (user-error "Invalid projectile-kill-buffers-filter value: %S" projectile-kill-buffers-filter)))))
-          (kill-buffer buffer))))))
-
-;;;###autoload
-(defun projectile-save-project-buffers ()
-  "Save all project buffers."
-  (interactive)
-  (let* ((project (projectile-ensure-project (projectile-project-root)))
-         (project-name (projectile-project-name project))
-         (modified-buffers (cl-remove-if-not (lambda (buf)
-                                               (and (buffer-file-name buf)
-                                                    (buffer-modified-p buf)))
-                                             (projectile-project-buffers project))))
-    (if (null modified-buffers)
-        (message "[%s] No buffers need saving" project-name)
-      (dolist (buf modified-buffers)
-        (with-current-buffer buf
-          (save-buffer)))
-      (message "[%s] Saved %d buffers" project-name (length modified-buffers)))))
-
-;;;###autoload
-(defun projectile-dired ()
-  "Open `dired' at the root of the project."
-  (interactive)
-  (dired (projectile-ensure-project (projectile-project-root))))
-
-;;;###autoload
-(defun projectile-dired-other-window ()
-  "Open `dired'  at the root of the project in another window."
-  (interactive)
-  (dired-other-window (projectile-ensure-project (projectile-project-root))))
-
-;;;###autoload
-(defun projectile-dired-other-frame ()
-  "Open `dired' at the root of the project in another frame."
-  (interactive)
-  (dired-other-frame (projectile-ensure-project (projectile-project-root))))
-
-;;;###autoload
-(defun projectile-vc (&optional project-root)
-  "Open `vc-dir' at the root of the project.
-
-For git projects `magit-status-internal' is used if available.
-For hg projects `monky-status' is used if available.
-
-If PROJECT-ROOT is given, it is opened instead of the project
-root directory of the current buffer file.  If interactively
-called with a prefix argument, the user is prompted for a project
-directory to open."
-  (interactive (and current-prefix-arg
-                    (list
-                     (projectile-completing-read
-                      "Open project VC in: "
-                      projectile-known-projects))))
-  (or project-root (setq project-root (projectile-project-root)))
-  (let ((vcs (projectile-project-vcs project-root)))
-    (cl-case vcs
-      (git
-       (cond ((fboundp 'magit-status-internal)
-              (magit-status-internal project-root))
-             ((fboundp 'magit-status)
-              (with-no-warnings (magit-status project-root)))
-             (t
-              (vc-dir project-root))))
-      (hg
-       (if (fboundp 'monky-status)
-           (monky-status project-root)
-         (vc-dir project-root)))
-      (t (vc-dir project-root)))))
-
-;;;###autoload
-(defun projectile-recentf ()
-  "Show a list of recently visited files in a project."
-  (interactive)
-  (if (boundp 'recentf-list)
-      (find-file (projectile-expand-root
-                  (projectile-completing-read
-                   "Recently visited files: "
-                   (projectile-recentf-files))))
-    (message "recentf is not enabled")))
-
-(defun projectile-recentf-files ()
-  "Return a list of recently visited files in a project."
-  (and (boundp 'recentf-list)
-       (let ((project-root (projectile-ensure-project (projectile-project-root))))
-         (mapcar
-          (lambda (f) (file-relative-name f project-root))
-          (cl-remove-if-not
-           (lambda (f) (string-prefix-p project-root f))
-           recentf-list)))))
-
-(defun projectile-serialize-cache ()
-  "Serializes the memory cache to the hard drive."
-  (projectile-serialize projectile-projects-cache projectile-cache-file))
-
-(defvar projectile-configure-cmd-map
-  (make-hash-table :test 'equal)
-  "A mapping between projects and the last configure command used on them.")
-
-(defvar projectile-compilation-cmd-map
-  (make-hash-table :test 'equal)
-  "A mapping between projects and the last compilation command used on them.")
-
-(defvar projectile-test-cmd-map
-  (make-hash-table :test 'equal)
-  "A mapping between projects and the last test command used on them.")
-
-(defvar projectile-run-cmd-map
-  (make-hash-table :test 'equal)
-  "A mapping between projects and the last run command used on them.")
-
-(defvar projectile-project-configure-cmd nil
-  "The command to use with `projectile-configure-project'.
-It takes precedence over the default command for the project type when set.
-Should be set via .dir-locals.el.")
-
-(defvar projectile-project-compilation-cmd nil
-  "The command to use with `projectile-compile-project'.
-It takes precedence over the default command for the project type when set.
-Should be set via .dir-locals.el.")
-
-(defvar projectile-project-compilation-dir nil
-  "The directory to use with `projectile-compile-project'.
-The directory path is relative to the project root.
-Should be set via .dir-locals.el.")
-
-(defvar projectile-project-test-cmd nil
-  "The command to use with `projectile-test-project'.
-It takes precedence over the default command for the project type when set.
-Should be set via .dir-locals.el.")
-
-(defvar projectile-project-run-cmd nil
-  "The command to use with `projectile-run-project'.
-It takes precedence over the default command for the project type when set.
-Should be set via .dir-locals.el.")
-
-(defun projectile-default-generic-command (project-type command-type)
-  "Generic retrieval of COMMAND-TYPEs default cmd-value for PROJECT-TYPE.
-
-If found, checks if value is symbol or string.  In case of symbol
-resolves to function `funcall's.  Return value of function MUST
-be string to be executed as command."
-  (let ((command (plist-get (alist-get project-type projectile-project-types) command-type)))
-    (cond
-     ((stringp command) command)
-     ((functionp command)
-      (if (fboundp command)
-          (funcall (symbol-function command))))
-     ((and (not command) (eq command-type 'compilation-dir))
-      ;; `compilation-dir' is special in that it is used as a fallback for the root
-      nil)
-     (t
-      (user-error "The value for: %s in project-type: %s was neither a function nor a string." command-type project-type)))))
-
-(defun projectile-default-configure-command (project-type)
-  "Retrieve default configure command for PROJECT-TYPE."
-  (projectile-default-generic-command project-type 'configure-command))
-
-(defun projectile-default-compilation-command (project-type)
-  "Retrieve default compilation command for PROJECT-TYPE."
-  (projectile-default-generic-command project-type 'compile-command))
-
-(defun projectile-default-compilation-dir (project-type)
-  "Retrieve default compilation directory for PROJECT-TYPE."
-  (projectile-default-generic-command project-type 'compilation-dir))
-
-(defun projectile-default-test-command (project-type)
-  "Retrieve default test command for PROJECT-TYPE."
-  (projectile-default-generic-command project-type 'test-command))
-
-(defun projectile-default-run-command (project-type)
-  "Retrieve default run command for PROJECT-TYPE."
-  (projectile-default-generic-command project-type 'run-command))
-
-(defun projectile-configure-command (compile-dir)
-  "Retrieve the configure command for COMPILE-DIR.
-
-The command is determined like this:
-
-- first we check `projectile-configure-cmd-map' for the last
-configure command that was invoked on the project
-
-- then we check for `projectile-project-configure-cmd' supplied
-via .dir-locals.el
-
-- finally we check for the default configure command for a
-project of that type"
-  (or (gethash compile-dir projectile-configure-cmd-map)
-      projectile-project-configure-cmd
-      (let ((cmd-format-string (projectile-default-configure-command (projectile-project-type))))
-        (when cmd-format-string
-          (format cmd-format-string (projectile-project-root))))))
-
-(defun projectile-compilation-command (compile-dir)
-  "Retrieve the compilation command for COMPILE-DIR.
-
-The command is determined like this:
-
-- first we check `projectile-compilation-cmd-map' for the last
-compile command that was invoked on the project
-
-- then we check for `projectile-project-compilation-cmd' supplied
-via .dir-locals.el
-
-- finally we check for the default compilation command for a
-project of that type"
-  (or (gethash compile-dir projectile-compilation-cmd-map)
-      projectile-project-compilation-cmd
-      (projectile-default-compilation-command (projectile-project-type))))
-
-(defun projectile-test-command (compile-dir)
-  "Retrieve the test command for COMPILE-DIR.
-
-The command is determined like this:
-
-- first we check `projectile-test-cmd-map' for the last
-test command that was invoked on the project
-
-- then we check for `projectile-project-test-cmd' supplied
-via .dir-locals.el
-
-- finally we check for the default test command for a
-project of that type"
-  (or (gethash compile-dir projectile-test-cmd-map)
-      projectile-project-test-cmd
-      (projectile-default-test-command (projectile-project-type))))
-
-(defun projectile-run-command (compile-dir)
-  "Retrieve the run command for COMPILE-DIR.
-
-The command is determined like this:
-
-- first we check `projectile-run-cmd-map' for the last
-run command that was invoked on the project
-
-- then we check for `projectile-project-run-cmd' supplied
-via .dir-locals.el
-
-- finally we check for the default run command for a
-project of that type"
-  (or (gethash compile-dir projectile-run-cmd-map)
-      projectile-project-run-cmd
-      (projectile-default-run-command (projectile-project-type))))
-
-(defun projectile-read-command (prompt command)
-  "Adapted from `compilation-read-command'."
-  (read-shell-command prompt command
-                      (if (equal (car compile-history) command)
-                          '(compile-history . 1)
-                        'compile-history)))
-
-(defun projectile-compilation-dir ()
-  "Retrieve the compilation directory for this project."
-  (let* ((type (projectile-project-type))
-         (directory (or projectile-project-compilation-dir
-                        (projectile-default-compilation-dir type))))
-    (if directory
-        (file-truename
-         (concat (file-name-as-directory (projectile-project-root))
-                 (file-name-as-directory directory)))
-      (projectile-project-root))))
-
-(defun projectile-maybe-read-command (arg default-cmd prompt)
-  "Prompt user for command unless DEFAULT-CMD is an Elisp function."
-  (if (and (or (stringp default-cmd) (null default-cmd))
-           (or compilation-read-command arg))
-      (projectile-read-command prompt default-cmd)
-    default-cmd))
-
-(defun projectile-run-compilation (cmd)
-  "Run external or Elisp compilation command CMD."
-  (if (functionp cmd)
-      (funcall cmd)
-    (compile cmd)))
-
-(defvar projectile-project-command-history (make-hash-table :test 'equal)
-  "The history of last executed project commands, per project.
-
-Projects are indexed by their project-root value.")
-
-(defun projectile--get-command-history (project-root)
-  (or (gethash project-root projectile-project-command-history)
-      (puthash project-root
-               (make-ring 16)
-               projectile-project-command-history)))
-
-(cl-defun projectile--run-project-cmd
-    (command command-map &key show-prompt prompt-prefix save-buffers)
-  "Run a project COMMAND, typically a test- or compile command.
-
-Cache the COMMAND for later use inside the hash-table COMMAND-MAP.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-by setting SHOW-PROMPT.  The prompt will be prefixed with PROMPT-PREFIX.
-
-If SAVE-BUFFERS is non-nil save all projectile buffers before
-running the command.
-
-The command actually run is returned."
-  (let* ((project-root (projectile-project-root))
-         (default-directory (projectile-compilation-dir))
-         (command (projectile-maybe-read-command show-prompt
-                                                 command
-                                                 prompt-prefix)))
-    (when command-map
-      (puthash default-directory command command-map)
-      (ring-insert (projectile--get-command-history project-root) command))
-    (when save-buffers
-      (save-some-buffers (not compilation-ask-about-save)
-                         (lambda ()
-                           (projectile-project-buffer-p (current-buffer)
-                                                        project-root))))
-    (unless (file-directory-p default-directory)
-      (mkdir default-directory))
-    (projectile-run-compilation command)
-    command))
-
-;;;###autoload
-(defun projectile-configure-project (arg)
-  "Run project configure command.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-with a prefix ARG."
-  (interactive "P")
-  (let ((command (projectile-configure-command (projectile-compilation-dir))))
-    (projectile--run-project-cmd command projectile-configure-cmd-map
-                                 :show-prompt arg
-                                 :prompt-prefix "Configure command: "
-                                 :save-buffers t)))
-
-;;;###autoload
-(defun projectile-compile-project (arg)
-  "Run project compilation command.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-with a prefix ARG."
-  (interactive "P")
-  (let ((command (projectile-compilation-command (projectile-compilation-dir))))
-    (projectile--run-project-cmd command projectile-compilation-cmd-map
-                                 :show-prompt arg
-                                 :prompt-prefix "Compile command: "
-                                 :save-buffers t)))
-
-;;;###autoload
-(defun projectile-test-project (arg)
-  "Run project test command.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-with a prefix ARG."
-  (interactive "P")
-  (let ((command (projectile-test-command (projectile-compilation-dir))))
-    (projectile--run-project-cmd command projectile-test-cmd-map
-                                 :show-prompt arg
-                                 :prompt-prefix "Test command: "
-                                 :save-buffers t)))
-
-;;;###autoload
-(defun projectile-run-project (arg)
-  "Run project run command.
-
-Normally you'll be prompted for a compilation command, unless
-variable `compilation-read-command'.  You can force the prompt
-with a prefix ARG."
-  (interactive "P")
-  (let ((command (projectile-run-command (projectile-compilation-dir))))
-    (projectile--run-project-cmd command projectile-run-cmd-map
-                                 :show-prompt arg
-                                 :prompt-prefix "Run command: ")))
-
-;;;###autoload
-(defun projectile-repeat-last-command (show-prompt)
-  "Run last projectile external command.
-
-External commands are: `projectile-configure-project',
-`projectile-compile-project', `projectile-test-project' and
-`projectile-run-project'.
-
-If the prefix argument SHOW_PROMPT is non nil, the command can be edited."
-  (interactive "P")
-  (let* ((project-root
-          (projectile-ensure-project (projectile-project-root)))
-         (command-history (projectile--get-command-history project-root))
-         (command (car-safe (ring-elements command-history)))
-         (compilation-read-command show-prompt)
-         executed-command)
-    (unless command
-      (user-error "No command has been run yet for this project"))
-    (setq executed-command
-          (projectile--run-project-cmd command
-                                       nil
-                                       :save-buffers t
-                                       :prompt-prefix "Execute command: "))
-    (unless (string= command executed-command)
-      (ring-insert command-history executed-command))))
-
-(defadvice compilation-find-file (around projectile-compilation-find-file)
-  "Try to find a buffer for FILENAME, if we cannot find it,
-fallback to the original function."
-  (let ((filename (ad-get-arg 1))
-        full-filename)
-    (ad-set-arg 1
-                (or
-                 (if (file-exists-p (expand-file-name filename))
-                     filename)
-                 ;; Try to find the filename using projectile
-                 (and (projectile-project-p)
-                      (let ((root (projectile-project-root))
-                            (dirs (cons "" (projectile-current-project-dirs))))
-                        (when (setq full-filename
-                                    (car (cl-remove-if-not
-                                          #'file-exists-p
-                                          (mapcar
-                                           (lambda (f)
-                                             (expand-file-name
-                                              filename
-                                              (expand-file-name f root)))
-                                           dirs))))
-                          full-filename)))
-                 ;; Fall back to the old argument
-                 filename))
-    ad-do-it))
-
-(defun projectile-open-projects ()
-  "Return a list of all open projects.
-An open project is a project with any open buffers."
-  (delete-dups
-   (delq nil
-         (mapcar (lambda (buffer)
-                   (with-current-buffer buffer
-                     (when (projectile-project-p)
-                       (abbreviate-file-name (projectile-project-root)))))
-                 (buffer-list)))))
-
-(defun projectile--remove-current-project (projects)
-  "Remove the current project (if any) from the list of PROJECTS."
-  (if-let ((project (projectile-project-root)))
-      (projectile-difference projects
-                             (list (abbreviate-file-name project)))
-    projects))
-
-(defun projectile--move-current-project-to-end (projects)
-  "Move current project (if any) to the end of list in the list of PROJECTS."
-  (if-let ((project (projectile-project-root)))
-      (append
-       (projectile--remove-current-project projects)
-       (list (abbreviate-file-name project)))
-    projects))
-
-(defun projectile-relevant-known-projects ()
-  "Return a list of known projects."
-  (pcase projectile-current-project-on-switch
-   ('remove (projectile--remove-current-project projectile-known-projects))
-   ('move-to-end (projectile--move-current-project-to-end projectile-known-projects))
-   ('keep projectile-known-projects)))
-
-(defun projectile-relevant-open-projects ()
-  "Return a list of open projects."
-  (let ((open-projects (projectile-open-projects)))
-    (pcase projectile-current-project-on-switch
-     ('remove (projectile--remove-current-project open-projects))
-     ('move-to-end (projectile--move-current-project-to-end open-projects))
-     ('keep open-projects))))
-
-;;;###autoload
-(defun projectile-switch-project (&optional arg)
-  "Switch to a project we have visited before.
-Invokes the command referenced by `projectile-switch-project-action' on switch.
-With a prefix ARG invokes `projectile-commander' instead of
-`projectile-switch-project-action.'"
-  (interactive "P")
-  (let ((projects (projectile-relevant-known-projects)))
-    (if projects
-        (projectile-completing-read
-         "Switch to project: " projects
-         :action (lambda (project)
-                   (projectile-switch-project-by-name project arg)))
-      (user-error "There are no known projects"))))
-
-;;;###autoload
-(defun projectile-switch-open-project (&optional arg)
-  "Switch to a project we have currently opened.
-Invokes the command referenced by `projectile-switch-project-action' on switch.
-With a prefix ARG invokes `projectile-commander' instead of
-`projectile-switch-project-action.'"
-  (interactive "P")
-  (let ((projects (projectile-relevant-open-projects)))
-    (if projects
-        (projectile-completing-read
-         "Switch to open project: " projects
-         :action (lambda (project)
-                   (projectile-switch-project-by-name project arg)))
-      (user-error "There are no open projects"))))
-
-(defun projectile-switch-project-by-name (project-to-switch &optional arg)
-  "Switch to project by project name PROJECT-TO-SWITCH.
-Invokes the command referenced by `projectile-switch-project-action' on switch.
-With a prefix ARG invokes `projectile-commander' instead of
-`projectile-switch-project-action.'"
-  (unless (projectile-project-p project-to-switch)
-    (projectile-remove-known-project project-to-switch)
-    (error "Directory %s is not a project" project-to-switch))
-  (let ((switch-project-action (if arg
-                                   'projectile-commander
-                                 projectile-switch-project-action)))
-    (run-hooks 'projectile-before-switch-project-hook)
-    (let ((default-directory project-to-switch))
-      ;; use a temporary buffer to load PROJECT-TO-SWITCH's dir-locals before calling SWITCH-PROJECT-ACTION
-      (with-temp-buffer
-        (hack-dir-local-variables-non-file-buffer))
-      ;; Normally the project name is determined from the current
-      ;; buffer. However, when we're switching projects, we want to
-      ;; show the name of the project being switched to, rather than
-      ;; the current project, in the minibuffer. This is a simple hack
-      ;; to tell the `projectile-project-name' function to ignore the
-      ;; current buffer and the caching mechanism, and just return the
-      ;; value of the `projectile-project-name' variable.
-      (let ((projectile-project-name (funcall projectile-project-name-function
-                                              project-to-switch)))
-        (funcall switch-project-action)))
-    (run-hooks 'projectile-after-switch-project-hook)))
-
-;;;###autoload
-(defun projectile-find-file-in-directory (&optional directory)
-  "Jump to a file in a (maybe regular) DIRECTORY.
-
-This command will first prompt for the directory the file is in."
-  (interactive "DFind file in directory: ")
-  (unless (projectile--directory-p directory)
-    (user-error "Directory %S does not exist" directory))
-  (let ((default-directory directory))
-    (if (projectile-project-p)
-        ;; target directory is in a project
-        (let ((file (projectile-completing-read "Find file: "
-                                                (projectile-dir-files directory))))
-          (find-file (expand-file-name file (projectile-project-root)))
-          (run-hooks 'projectile-find-file-hook))
-      ;; target directory is not in a project
-      (projectile-find-file))))
-
-(defun projectile-all-project-files ()
-  "Get a list of all files in all projects."
-  (cl-mapcan
-   (lambda (project)
-     (when (file-exists-p project)
-       (mapcar (lambda (file)
-                 (expand-file-name file project))
-               (projectile-project-files project))))
-   projectile-known-projects))
-
-;;;###autoload
-(defun projectile-find-file-in-known-projects ()
-  "Jump to a file in any of the known projects."
-  (interactive)
-  (find-file (projectile-completing-read "Find file in projects: " (projectile-all-project-files))))
-
-(defun projectile-keep-project-p (project)
-  "Determine whether we should cleanup (remove) PROJECT or not.
-
-It handles the case of remote projects as well.
-See `projectile--cleanup-known-projects'."
-  ;; Taken from from `recentf-keep-default-predicate'
-  (cond
-   ((file-remote-p project nil t) (file-readable-p project))
-   ((file-remote-p project))
-   ((file-readable-p project))))
-
-(defun projectile--cleanup-known-projects ()
-  "Remove known projects that don't exist anymore and return a list of projects removed."
-  (projectile-merge-known-projects)
-  (let ((projects-kept (cl-remove-if-not #'projectile-keep-project-p projectile-known-projects))
-        (projects-removed (cl-remove-if #'projectile-keep-project-p projectile-known-projects)))
-    (setq projectile-known-projects projects-kept)
-    (projectile-merge-known-projects)
-    projects-removed))
-
-;;;###autoload
-(defun projectile-cleanup-known-projects ()
-  "Remove known projects that don't exist anymore."
-  (interactive)
-  (if-let ((projects-removed (projectile--cleanup-known-projects)))
-      (message "Projects removed: %s"
-               (mapconcat #'identity projects-removed ", "))
-    (message "No projects needed to be removed.")))
-
-;;;###autoload
-(defun projectile-clear-known-projects ()
-  "Clear both `projectile-known-projects' and `projectile-known-projects-file'."
-  (interactive)
-  (setq projectile-known-projects nil)
-  (projectile-save-known-projects))
-
-;;;###autoload
-(defun projectile-remove-known-project (&optional project)
-  "Remove PROJECT from the list of known projects."
-  (interactive (list (projectile-completing-read
-                      "Remove from known projects: " projectile-known-projects
-                      :action 'projectile-remove-known-project)))
-  (unless (called-interactively-p 'any)
-    (setq projectile-known-projects
-          (cl-remove-if
-           (lambda (proj) (string= project proj))
-           projectile-known-projects))
-    (projectile-merge-known-projects)
-    (when projectile-verbose
-      (message "Project %s removed from the list of known projects." project))))
-
-;;;###autoload
-(defun projectile-remove-current-project-from-known-projects ()
-  "Remove the current project from the list of known projects."
-  (interactive)
-  (projectile-remove-known-project (abbreviate-file-name (projectile-project-root))))
-
-(defun projectile-ignored-projects ()
-  "A list of projects that should not be save in `projectile-known-projects'."
-  (mapcar #'file-truename projectile-ignored-projects))
-
-(defun projectile-ignored-project-p (project-root)
-  "Return t if PROJECT-ROOT should not be added to `projectile-known-projects'."
-  (or (member project-root (projectile-ignored-projects))
-      (and (functionp projectile-ignored-project-function)
-           (funcall projectile-ignored-project-function project-root))))
-
-(defun projectile-add-known-project (project-root)
-  "Add PROJECT-ROOT to the list of known projects."
-  (interactive (list (read-directory-name "Add to known projects: ")))
-  (unless (projectile-ignored-project-p project-root)
-    (setq projectile-known-projects
-          (delete-dups
-           (cons (file-name-as-directory (abbreviate-file-name project-root))
-                 projectile-known-projects)))
-    (projectile-merge-known-projects)))
-
-(defun projectile-load-known-projects ()
-  "Load saved projects from `projectile-known-projects-file'.
-Also set `projectile-known-projects'."
-  (setq projectile-known-projects
-        (projectile-unserialize projectile-known-projects-file))
-  (setq projectile-known-projects-on-file
-        (and (sequencep projectile-known-projects)
-             (copy-sequence projectile-known-projects))))
-
-(defun projectile-save-known-projects ()
-  "Save PROJECTILE-KNOWN-PROJECTS to PROJECTILE-KNOWN-PROJECTS-FILE."
-  (projectile-serialize projectile-known-projects
-                        projectile-known-projects-file)
-  (setq projectile-known-projects-on-file
-        (and (sequencep projectile-known-projects)
-             (copy-sequence projectile-known-projects))))
-
-(defun projectile-merge-known-projects ()
-  "Merge any change from `projectile-known-projects-file' and save to disk.
-
-This enables multiple Emacs processes to make changes without
-overwriting each other's changes."
-  (let* ((known-now projectile-known-projects)
-         (known-on-last-sync projectile-known-projects-on-file)
-         (known-on-file
-          (projectile-unserialize projectile-known-projects-file))
-         (removed-after-sync (projectile-difference known-on-last-sync known-now))
-         (removed-in-other-process
-          (projectile-difference known-on-last-sync known-on-file))
-         (result (delete-dups
-                  (projectile-difference
-                   (append known-now known-on-file)
-                   (append removed-after-sync removed-in-other-process)))))
-    (setq projectile-known-projects result)
-    (projectile-save-known-projects)))
-
-
-;;; IBuffer integration
-(define-ibuffer-filter projectile-files
-    "Show Ibuffer with all buffers in the current project."
-  (:reader (read-directory-name "Project root: " (projectile-project-root))
-           :description nil)
-  (with-current-buffer buf
-    (equal (file-name-as-directory (expand-file-name qualifier))
-           (projectile-project-root))))
-
-(defun projectile-ibuffer-by-project (project-root)
-  "Open an IBuffer window showing all buffers in PROJECT-ROOT."
-  (let ((project-name (funcall projectile-project-name-function project-root)))
-    (ibuffer nil (format "*%s Buffers*" project-name)
-             (list (cons 'projectile-files project-root)))))
-
-;;;###autoload
-(defun projectile-ibuffer (prompt-for-project)
-  "Open an IBuffer window showing all buffers in the current project.
-
-Let user choose another project when PROMPT-FOR-PROJECT is supplied."
-  (interactive "P")
-  (let ((project-root (if prompt-for-project
-                          (projectile-completing-read
-                           "Project name: "
-                           (projectile-relevant-known-projects))
-                        (projectile-project-root))))
-
-    (projectile-ibuffer-by-project project-root)))
-
-
-;;;; projectile-commander
-
-(defconst projectile-commander-help-buffer "*Projectile Commander Help*")
-
-(defvar projectile-commander-methods nil
-  "List of file-selection methods for the `projectile-commander' command.
-Each element is a list (KEY DESCRIPTION FUNCTION).
-DESCRIPTION is a one-line description of what the key selects.")
-
-;;;###autoload
-(defun projectile-commander ()
-  "Execute a Projectile command with a single letter.
-The user is prompted for a single character indicating the action to invoke.
-The `?' character describes then
-available actions.
-
-See `def-projectile-commander-method' for defining new methods."
-  (interactive)
-  (let* ((choices (mapcar #'car projectile-commander-methods))
-         (prompt (concat "Select Projectile command [" choices "]: "))
-         (ch (read-char-choice prompt choices))
-         (fn (nth 2 (assq ch projectile-commander-methods))))
-    (funcall fn)))
-
-(defmacro def-projectile-commander-method (key description &rest body)
-  "Define a new `projectile-commander' method.
-
-KEY is the key the user will enter to choose this method.
-
-DESCRIPTION is a one-line sentence describing how the method.
-
-BODY is a series of forms which are evaluated when the find
-is chosen."
-  (let ((method `(lambda ()
-                   ,@body)))
-    `(setq projectile-commander-methods
-           (cl-sort (copy-sequence
-                     (cons (list ,key ,description ,method)
-                           (assq-delete-all ,key projectile-commander-methods)))
-                    (lambda (a b) (< (car a) (car b)))))))
-
-(def-projectile-commander-method ?? "Commander help buffer."
-  (ignore-errors (kill-buffer projectile-commander-help-buffer))
-  (with-current-buffer (get-buffer-create projectile-commander-help-buffer)
-    (insert "Projectile Commander Methods:\n\n")
-    (dolist (met projectile-commander-methods)
-      (insert (format "%c:\t%s\n" (car met) (cadr met))))
-    (goto-char (point-min))
-    (help-mode)
-    (display-buffer (current-buffer) t))
-  (projectile-commander))
-
-(defun projectile-commander-bindings ()
-  "Setup the keybindings for the Projectile Commander."
-  (def-projectile-commander-method ?f
-    "Find file in project."
-    (projectile-find-file))
-
-  (def-projectile-commander-method ?T
-    "Find test file in project."
-    (projectile-find-test-file))
-
-  (def-projectile-commander-method ?b
-    "Switch to project buffer."
-    (projectile-switch-to-buffer))
-
-  (def-projectile-commander-method ?d
-    "Find directory in project."
-    (projectile-find-dir))
-
-  (def-projectile-commander-method ?D
-    "Open project root in dired."
-    (projectile-dired))
-
-  (def-projectile-commander-method ?v
-    "Open project root in vc-dir or magit."
-    (projectile-vc))
-
-  (def-projectile-commander-method ?V
-    "Browse dirty projects"
-    (projectile-browse-dirty-projects))
-
-  (def-projectile-commander-method ?r
-    "Replace a string in the project."
-    (projectile-replace))
-
-  (def-projectile-commander-method ?R
-    "Regenerate the project's [e|g]tags."
-    (projectile-regenerate-tags))
-
-  (def-projectile-commander-method ?g
-    "Run grep on project."
-    (projectile-grep))
-
-  (def-projectile-commander-method ?a
-    "Run ag on project."
-    (call-interactively 'projectile-ag))
-
-  (def-projectile-commander-method ?s
-    "Switch project."
-    (projectile-switch-project))
-
-  (def-projectile-commander-method ?o
-    "Run multi-occur on project buffers."
-    (projectile-multi-occur))
-
-  (def-projectile-commander-method ?j
-    "Find tag in project."
-    (projectile-find-tag))
-
-  (def-projectile-commander-method ?k
-    "Kill all project buffers."
-    (projectile-kill-buffers))
-
-  (def-projectile-commander-method ?e
-    "Find recently visited file in project."
-    (projectile-recentf)))
-
-
-;;; Dirty (modified) project check related functionality
-(defun projectile-check-vcs-status (&optional project-path)
-  "Check the status of the current project.
-If PROJECT-PATH is a project, check this one instead."
-  (let ((project-path (or project-path (projectile-project-root)))
-        (project-status nil))
-    (save-excursion
-      (vc-dir project-path)
-      ;; wait until vc-dir is done
-      (while (vc-dir-busy) (sleep-for 0 100))
-      ;; check for status
-      (save-excursion
-        (save-match-data
-          (dolist (check projectile-vcs-dirty-state)
-            (goto-char (point-min))
-            (when (search-forward check nil t)
-              (setq project-status (cons check project-status))))))
-      (kill-buffer)
-      project-status)))
-
-(defvar projectile-cached-dirty-projects-status nil
-  "Cache of the last dirty projects check.")
-
-(defun projectile-check-vcs-status-of-known-projects ()
-  "Return the list of dirty projects.
-The list is composed of sublists~: (project-path, project-status).
-Raise an error if their is no dirty project."
-  (save-window-excursion
-    (message "Checking for modifications in known projects...")
-    (let ((projects projectile-known-projects)
-          (status ()))
-      (dolist (project projects)
-        (when (and (projectile-keep-project-p project) (not (string= 'none (projectile-project-vcs project))))
-          (let ((tmp-status (projectile-check-vcs-status project)))
-            (when tmp-status
-              (setq status (cons (list project tmp-status) status))))))
-      (when (= (length status) 0)
-        (message "No dirty projects have been found"))
-      (setq projectile-cached-dirty-projects-status status)
-      status)))
-
-;;;###autoload
-(defun projectile-browse-dirty-projects (&optional cached)
-  "Browse dirty version controlled projects.
-
-With a prefix argument, or if CACHED is non-nil, try to use the cached
-dirty project list."
-  (interactive "P")
-  (let ((status (if (and cached projectile-cached-dirty-projects-status)
-                    projectile-cached-dirty-projects-status
-                  (projectile-check-vcs-status-of-known-projects)))
-        (mod-proj nil))
-    (while (not (= (length status) 0))
-      (setq mod-proj (cons (car (pop status)) mod-proj)))
-    (projectile-completing-read "Select project: " mod-proj
-                                :action 'projectile-vc)))
-
-
-;;; Find next/previous project buffer
-(defun projectile--repeat-until-project-buffer (orig-fun &rest args)
-  "Repeat ORIG-FUN with ARGS until the current buffer is a project buffer."
-  (if (projectile-project-root)
-      (let* ((other-project-buffers (make-hash-table :test 'eq))
-             (projectile-project-buffers (projectile-project-buffers))
-             (max-iterations (length (buffer-list)))
-             (counter 0))
-        (dolist (buffer projectile-project-buffers)
-          (unless (eq buffer (current-buffer))
-            (puthash buffer t other-project-buffers)))
-        (when (cdr-safe projectile-project-buffers)
-          (while (and (< counter max-iterations)
-                      (not (gethash (current-buffer) other-project-buffers)))
-            (apply orig-fun args)
-            (cl-incf counter))))
-    (apply orig-fun args)))
-
-(defun projectile-next-project-buffer ()
-  "In selected window switch to the next project buffer.
-
-If the current buffer does not belong to a project, call `next-buffer'."
-  (interactive)
-  (projectile--repeat-until-project-buffer #'next-buffer))
-
-(defun projectile-previous-project-buffer ()
-  "In selected window switch to the previous project buffer.
-
-If the current buffer does not belong to a project, call `previous-buffer'."
-  (interactive)
-  (projectile--repeat-until-project-buffer #'previous-buffer))
-
-
-;;; Editing a project's .dir-locals
-(defun projectile-read-variable ()
-  "Prompt for a variable and return its name."
-  (completing-read "Variable: "
-                   obarray
-                   '(lambda (v)
-                      (and (boundp v) (not (keywordp v))))
-                   t))
-
-(define-skeleton projectile-skel-variable-cons
-  "Insert a variable-name and a value in a cons-cell."
-  "Value: "
-  "("
-  (projectile-read-variable)
-  " . "
-  str
-  ")")
-
-(define-skeleton projectile-skel-dir-locals
-  "Insert a .dir-locals.el template."
-  nil
-  "((nil . ("
-  ("" '(projectile-skel-variable-cons) \n)
-  resume:
-  ")))")
-
-;;;###autoload
-(defun projectile-edit-dir-locals ()
-  "Edit or create a .dir-locals.el file of the project."
-  (interactive)
-  (let ((file (expand-file-name ".dir-locals.el" (projectile-project-root))))
-    (find-file file)
-    (when (not (file-exists-p file))
-      (unwind-protect
-          (projectile-skel-dir-locals)
-        (save-buffer)))))
-
-
-;;; Projectile Minor mode
-(define-obsolete-variable-alias 'projectile-mode-line-lighter 'projectile-mode-line-prefix)
-(defcustom projectile-mode-line-prefix
-  " Projectile"
-  "Mode line lighter prefix for Projectile.
-It's used by `projectile-default-mode-line'
-when using dynamic mode line lighter and is the only
-thing shown in the mode line otherwise."
-  :group 'projectile
-  :type 'string
-  :package-version '(projectile . "0.12.0"))
-
-(defvar-local projectile--mode-line projectile-mode-line-prefix)
-
-(defun projectile-default-mode-line ()
-  "Report project name and type in the modeline."
-  (let ((project-name (projectile-project-name))
-        (project-type (projectile-project-type)))
-    (format "%s[%s%s]"
-            projectile-mode-line-prefix
-            (or project-name "-")
-            (if project-type
-                (format ":%s" project-type)
-              ""))))
-
-(defun projectile-update-mode-line ()
-  "Update the Projectile mode-line."
-  (let ((mode-line (funcall projectile-mode-line-function)))
-    (setq projectile--mode-line mode-line))
-  (force-mode-line-update))
-
-(defvar projectile-command-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map (kbd "4 a") #'projectile-find-other-file-other-window)
-    (define-key map (kbd "4 b") #'projectile-switch-to-buffer-other-window)
-    (define-key map (kbd "4 C-o") #'projectile-display-buffer)
-    (define-key map (kbd "4 d") #'projectile-find-dir-other-window)
-    (define-key map (kbd "4 D") #'projectile-dired-other-window)
-    (define-key map (kbd "4 f") #'projectile-find-file-other-window)
-    (define-key map (kbd "4 g") #'projectile-find-file-dwim-other-window)
-    (define-key map (kbd "4 t") #'projectile-find-implementation-or-test-other-window)
-    (define-key map (kbd "5 a") #'projectile-find-other-file-other-frame)
-    (define-key map (kbd "5 b") #'projectile-switch-to-buffer-other-frame)
-    (define-key map (kbd "5 d") #'projectile-find-dir-other-frame)
-    (define-key map (kbd "5 D") #'projectile-dired-other-frame)
-    (define-key map (kbd "5 f") #'projectile-find-file-other-frame)
-    (define-key map (kbd "5 g") #'projectile-find-file-dwim-other-frame)
-    (define-key map (kbd "5 t") #'projectile-find-implementation-or-test-other-frame)
-    (define-key map (kbd "!") #'projectile-run-shell-command-in-root)
-    (define-key map (kbd "&") #'projectile-run-async-shell-command-in-root)
-    (define-key map (kbd "a") #'projectile-find-other-file)
-    (define-key map (kbd "b") #'projectile-switch-to-buffer)
-    (define-key map (kbd "C") #'projectile-configure-project)
-    (define-key map (kbd "c") #'projectile-compile-project)
-    (define-key map (kbd "d") #'projectile-find-dir)
-    (define-key map (kbd "D") #'projectile-dired)
-    (define-key map (kbd "e") #'projectile-recentf)
-    (define-key map (kbd "E") #'projectile-edit-dir-locals)
-    (define-key map (kbd "f") #'projectile-find-file)
-    (define-key map (kbd "g") #'projectile-find-file-dwim)
-    (define-key map (kbd "F") #'projectile-find-file-in-known-projects)
-    (define-key map (kbd "i") #'projectile-invalidate-cache)
-    (define-key map (kbd "I") #'projectile-ibuffer)
-    (define-key map (kbd "j") #'projectile-find-tag)
-    (define-key map (kbd "k") #'projectile-kill-buffers)
-    (define-key map (kbd "l") #'projectile-find-file-in-directory)
-    (define-key map (kbd "m") #'projectile-commander)
-    (define-key map (kbd "o") #'projectile-multi-occur)
-    (define-key map (kbd "p") #'projectile-switch-project)
-    (define-key map (kbd "q") #'projectile-switch-open-project)
-    (define-key map (kbd "P") #'projectile-test-project)
-    (define-key map (kbd "r") #'projectile-replace)
-    (define-key map (kbd "R") #'projectile-regenerate-tags)
-    (define-key map (kbd "s g") #'projectile-grep)
-    (define-key map (kbd "s r") #'projectile-ripgrep)
-    (define-key map (kbd "s s") #'projectile-ag)
-    (define-key map (kbd "S") #'projectile-save-project-buffers)
-    (define-key map (kbd "t") #'projectile-toggle-between-implementation-and-test)
-    (define-key map (kbd "T") #'projectile-find-test-file)
-    (define-key map (kbd "u") #'projectile-run-project)
-    (define-key map (kbd "v") #'projectile-vc)
-    (define-key map (kbd "V") #'projectile-browse-dirty-projects)
-    (define-key map (kbd "x e") #'projectile-run-eshell)
-    (define-key map (kbd "x i") #'projectile-run-ielm)
-    (define-key map (kbd "x t") #'projectile-run-term)
-    (define-key map (kbd "x s") #'projectile-run-shell)
-    (define-key map (kbd "z") #'projectile-cache-current-file)
-    (define-key map (kbd "<left>") #'projectile-previous-project-buffer)
-    (define-key map (kbd "<right>") #'projectile-next-project-buffer)
-    (define-key map (kbd "ESC") #'projectile-project-buffers-other-buffer)
-    map)
-  "Keymap for Projectile commands after `projectile-keymap-prefix'.")
-(fset 'projectile-command-map projectile-command-map)
-
-(defvar projectile-mode-map
-  (let ((map (make-sparse-keymap)))
-    (when projectile-keymap-prefix
-      (define-key map projectile-keymap-prefix 'projectile-command-map))
-    (easy-menu-define projectile-mode-menu map
-      "Menu for Projectile"
-      '("Projectile"
-        ["Find file" projectile-find-file]
-        ["Find file in known projects" projectile-find-file-in-known-projects]
-        ["Find test file" projectile-find-test-file]
-        ["Find directory" projectile-find-dir]
-        ["Find file in directory" projectile-find-file-in-directory]
-        ["Find other file" projectile-find-other-file]
-        ["Switch to buffer" projectile-switch-to-buffer]
-        ["Jump between implementation file and test file" projectile-toggle-between-implementation-and-test]
-        ["Kill project buffers" projectile-kill-buffers]
-        ["Save project buffers" projectile-save-project-buffers]
-        ["Recent files" projectile-recentf]
-        ["Previous buffer" projectile-previous-project-buffer]
-        ["Next buffer" projectile-next-project-buffer]
-        "--"
-        ["Toggle project wide read-only" projectile-toggle-project-read-only]
-        ["Edit .dir-locals.el" projectile-edit-dir-locals]
-        "--"
-        ["Switch to project" projectile-switch-project]
-        ["Switch to open project" projectile-switch-open-project]
-        ["Discover projects in directory" projectile-discover-projects-in-directory]
-        ["Browse dirty projects" projectile-browse-dirty-projects]
-        ["Open project in dired" projectile-dired]
-        "--"
-        ["Search in project (grep)" projectile-grep]
-        ["Search in project (ag)" projectile-ag]
-        ["Replace in project" projectile-replace]
-        ["Multi-occur in project" projectile-multi-occur]
-        "--"
-        ["Run shell" projectile-run-shell]
-        ["Run eshell" projectile-run-eshell]
-        ["Run ielm" projectile-run-ielm]
-        ["Run term" projectile-run-term]
-        "--"
-        ["Cache current file" projectile-cache-current-file]
-        ["Invalidate cache" projectile-invalidate-cache]
-        ["Regenerate [e|g]tags" projectile-regenerate-tags]
-        "--"
-        ["Configure project" projectile-configure-project]
-        ["Compile project" projectile-compile-project]
-        ["Test project" projectile-test-project]
-        ["Run project" projectile-run-project]
-        ["Repeat last external command" projectile-repeat-last-command]
-        "--"
-        ["Project info" projectile-project-info]
-        ["About" projectile-version]))
-    map)
-  "Keymap for Projectile mode.")
-
-(defun projectile-find-file-hook-function ()
-  "Called by `find-file-hook' when `projectile-mode' is on.
-
-The function does pretty much nothing when triggered on remote files
-as all the operations it normally performs are extremely slow over
-tramp."
-  (unless (file-remote-p default-directory)
-    (when projectile-dynamic-mode-line
-      (projectile-update-mode-line))
-    (projectile-cache-files-find-file-hook)
-    (projectile-track-known-projects-find-file-hook)
-    (projectile-visit-project-tags-table)))
-
-;;;###autoload
-(define-minor-mode projectile-mode
-  "Minor mode to assist project management and navigation.
-
-When called interactively, toggle `projectile-mode'.  With prefix
-ARG, enable `projectile-mode' if ARG is positive, otherwise disable
-it.
-
-When called from Lisp, enable `projectile-mode' if ARG is omitted,
-nil or positive.  If ARG is `toggle', toggle `projectile-mode'.
-Otherwise behave as if called interactively.
-
-\\{projectile-mode-map}"
-  :lighter projectile--mode-line
-  :keymap projectile-mode-map
-  :group 'projectile
-  :require 'projectile
-  :global t
-  (cond
-   (projectile-mode
-    ;; setup the commander bindings
-    (projectile-commander-bindings)
-    ;; initialize the projects cache if needed
-    (unless projectile-projects-cache
-      (setq projectile-projects-cache
-            (or (projectile-unserialize projectile-cache-file)
-                (make-hash-table :test 'equal))))
-    (unless projectile-projects-cache-time
-      (setq projectile-projects-cache-time
-            (make-hash-table :test 'equal)))
-    ;; load the known projects
-    (projectile-load-known-projects)
-    ;; update the list of known projects
-    (projectile--cleanup-known-projects)
-    (projectile-discover-projects-in-search-path)
-    (add-hook 'find-file-hook 'projectile-find-file-hook-function)
-    (add-hook 'projectile-find-dir-hook #'projectile-track-known-projects-find-file-hook t)
-    (add-hook 'dired-before-readin-hook #'projectile-track-known-projects-find-file-hook t t)
-    (ad-activate 'compilation-find-file)
-    (ad-activate 'delete-file))
-   (t
-    (remove-hook 'find-file-hook #'projectile-find-file-hook-function)
-    (remove-hook 'dired-before-readin-hook #'projectile-track-known-projects-find-file-hook t)
-    (ad-deactivate 'compilation-find-file)
-    (ad-deactivate 'delete-file))))
-
-;;;###autoload
-(define-obsolete-function-alias 'projectile-global-mode 'projectile-mode "1.0")
-
-(provide 'projectile)
-
-;;; projectile.el ends here
diff --git a/elpa/projectile-20181106.1631/projectile.elc b/elpa/projectile-20181106.1631/projectile.elc
deleted file mode 100644
index 1debb85..0000000
--- a/elpa/projectile-20181106.1631/projectile.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/pydoc-info-readme.txt b/elpa/pydoc-info-readme.txt
deleted file mode 100644
index e69de29..0000000
--- a/elpa/pydoc-info-readme.txt
+++ /dev/null
diff --git a/elpa/s-20180406.808/s-autoloads.el b/elpa/s-20180406.808/s-autoloads.el
deleted file mode 100644
index a232497..0000000
--- a/elpa/s-20180406.808/s-autoloads.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; s-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "s" "s.el" (0 0 0 0))
-;;; Generated autoloads from s.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "s" '("s-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; s-autoloads.el ends here
diff --git a/elpa/s-20180406.808/s-pkg.el b/elpa/s-20180406.808/s-pkg.el
deleted file mode 100644
index 7080f87..0000000
--- a/elpa/s-20180406.808/s-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "s" "20180406.808" "The long lost Emacs string manipulation library." 'nil :commit "03410e6a7a2b11e47e1fea3b7d9899c7df26435e" :keywords '("strings") :authors '(("Magnar Sveen" . "magnars@gmail.com")) :maintainer '("Magnar Sveen" . "magnars@gmail.com"))
diff --git a/elpa/s-20180406.808/s.el b/elpa/s-20180406.808/s.el
deleted file mode 100644
index d8e359a..0000000
--- a/elpa/s-20180406.808/s.el
+++ /dev/null
@@ -1,747 +0,0 @@
-;;; s.el --- The long lost Emacs string manipulation library.
-
-;; Copyright (C) 2012-2015 Magnar Sveen
-
-;; Author: Magnar Sveen <magnars@gmail.com>
-;; Version: 1.12.0
-;; Package-Version: 20180406.808
-;; Keywords: strings
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; The long lost Emacs string manipulation library.
-;;
-;; See documentation on https://github.com/magnars/s.el#functions
-
-;;; Code:
-
-;; Silence byte-compiler
-(defvar ucs-normalize-combining-chars)  ; Defined in `ucs-normalize'
-(autoload 'slot-value "eieio")
-
-(defun s-trim-left (s)
-  "Remove whitespace at the beginning of S."
-  (declare (pure t) (side-effect-free t))
-  (save-match-data
-    (if (string-match "\\`[ \t\n\r]+" s)
-        (replace-match "" t t s)
-      s)))
-
-(defun s-trim-right (s)
-  "Remove whitespace at the end of S."
-  (save-match-data
-    (declare (pure t) (side-effect-free t))
-    (if (string-match "[ \t\n\r]+\\'" s)
-        (replace-match "" t t s)
-      s)))
-
-(defun s-trim (s)
-  "Remove whitespace at the beginning and end of S."
-  (declare (pure t) (side-effect-free t))
-  (s-trim-left (s-trim-right s)))
-
-(defun s-collapse-whitespace (s)
-  "Convert all adjacent whitespace characters to a single space."
-  (declare (pure t) (side-effect-free t))
-  (replace-regexp-in-string "[ \t\n\r]+" " " s))
-
-(defun s-split (separator s &optional omit-nulls)
-  "Split S into substrings bounded by matches for regexp SEPARATOR.
-If OMIT-NULLS is non-nil, zero-length substrings are omitted.
-
-This is a simple wrapper around the built-in `split-string'."
-  (declare (side-effect-free t))
-  (save-match-data
-    (split-string s separator omit-nulls)))
-
-(defun s-split-up-to (separator s n &optional omit-nulls)
-  "Split S up to N times into substrings bounded by matches for regexp SEPARATOR.
-
-If OMIT-NULLS is non-nil, zero-length substrings are omitted.
-
-See also `s-split'."
-  (declare (side-effect-free t))
-  (save-match-data
-    (let ((op 0)
-          (r nil))
-      (with-temp-buffer
-        (insert s)
-        (setq op (goto-char (point-min)))
-        (while (and (re-search-forward separator nil t)
-                    (< 0 n))
-          (let ((sub (buffer-substring op (match-beginning 0))))
-            (unless (and omit-nulls
-                         (equal sub ""))
-              (push sub r)))
-          (setq op (goto-char (match-end 0)))
-          (setq n (1- n)))
-        (let ((sub (buffer-substring op (point-max))))
-          (unless (and omit-nulls
-                       (equal sub ""))
-            (push sub r))))
-      (nreverse r))))
-
-(defun s-lines (s)
-  "Splits S into a list of strings on newline characters."
-  (declare (pure t) (side-effect-free t))
-  (s-split "\\(\r\n\\|[\n\r]\\)" s))
-
-(defun s-join (separator strings)
-  "Join all the strings in STRINGS with SEPARATOR in between."
-  (declare (pure t) (side-effect-free t))
-  (mapconcat 'identity strings separator))
-
-(defun s-concat (&rest strings)
-  "Join all the string arguments into one string."
-  (declare (pure t) (side-effect-free t))
-  (apply 'concat strings))
-
-(defun s-prepend (prefix s)
-  "Concatenate PREFIX and S."
-  (declare (pure t) (side-effect-free t))
-  (concat prefix s))
-
-(defun s-append (suffix s)
-  "Concatenate S and SUFFIX."
-  (declare (pure t) (side-effect-free t))
-  (concat s suffix))
-
-(defun s-repeat (num s)
-  "Make a string of S repeated NUM times."
-  (declare (pure t) (side-effect-free t))
-  (let (ss)
-    (while (> num 0)
-      (setq ss (cons s ss))
-      (setq num (1- num)))
-    (apply 'concat ss)))
-
-(defun s-chop-suffix (suffix s)
-  "Remove SUFFIX if it is at end of S."
-  (declare (pure t) (side-effect-free t))
-  (let ((pos (- (length suffix))))
-    (if (and (>= (length s) (length suffix))
-             (string= suffix (substring s pos)))
-        (substring s 0 pos)
-      s)))
-
-(defun s-chop-suffixes (suffixes s)
-  "Remove SUFFIXES one by one in order, if they are at the end of S."
-  (declare (pure t) (side-effect-free t))
-  (while suffixes
-    (setq s (s-chop-suffix (car suffixes) s))
-    (setq suffixes (cdr suffixes)))
-  s)
-
-(defun s-chop-prefix (prefix s)
-  "Remove PREFIX if it is at the start of S."
-  (declare (pure t) (side-effect-free t))
-  (let ((pos (length prefix)))
-    (if (and (>= (length s) (length prefix))
-             (string= prefix (substring s 0 pos)))
-        (substring s pos)
-      s)))
-
-(defun s-chop-prefixes (prefixes s)
-  "Remove PREFIXES one by one in order, if they are at the start of S."
-  (declare (pure t) (side-effect-free t))
-  (while prefixes
-    (setq s (s-chop-prefix (car prefixes) s))
-    (setq prefixes (cdr prefixes)))
-  s)
-
-(defun s-shared-start (s1 s2)
-  "Returns the longest prefix S1 and S2 have in common."
-  (declare (pure t) (side-effect-free t))
-  (let ((search-length (min (length s1) (length s2)))
-        (i 0))
-    (while (and (< i search-length)
-                (= (aref s1 i) (aref s2 i)))
-      (setq i (1+ i)))
-    (substring s1 0 i)))
-
-(defun s-shared-end (s1 s2)
-  "Returns the longest suffix S1 and S2 have in common."
-  (declare (pure t) (side-effect-free t))
-  (let* ((l1 (length s1))
-         (l2 (length s2))
-         (search-length (min l1 l2))
-         (i 0))
-    (while (and (< i search-length)
-                (= (aref s1 (- l1 i 1)) (aref s2 (- l2 i 1))))
-      (setq i (1+ i)))
-    ;; If I is 0, then it means that there's no common suffix between
-    ;; S1 and S2.
-    ;;
-    ;; However, since (substring s (- 0)) will return the whole
-    ;; string, `s-shared-end' should simply return the empty string
-    ;; when I is 0.
-    (if (zerop i)
-        ""
-      (substring s1 (- i)))))
-
-(defun s-chomp (s)
-  "Remove one trailing `\\n`, `\\r` or `\\r\\n` from S."
-  (declare (pure t) (side-effect-free t))
-  (s-chop-suffixes '("\n" "\r") s))
-
-(defun s-truncate (len s &optional ellipsis)
-  "If S is longer than LEN, cut it down and add ELLIPSIS to the end.
-
-The resulting string, including ellipsis, will be LEN characters
-long.
-
-When not specified, ELLIPSIS defaults to ‘...’."
-  (declare (pure t) (side-effect-free t))
-  (unless ellipsis
-    (setq ellipsis "..."))
-  (if (> (length s) len)
-      (format "%s%s" (substring s 0 (- len (length ellipsis))) ellipsis)
-    s))
-
-(defun s-word-wrap (len s)
-  "If S is longer than LEN, wrap the words with newlines."
-  (declare (side-effect-free t))
-  (save-match-data
-    (with-temp-buffer
-      (insert s)
-      (let ((fill-column len))
-        (fill-region (point-min) (point-max)))
-      (buffer-substring (point-min) (point-max)))))
-
-(defun s-center (len s)
-  "If S is shorter than LEN, pad it with spaces so it is centered."
-  (declare (pure t) (side-effect-free t))
-  (let ((extra (max 0 (- len (length s)))))
-    (concat
-     (make-string (ceiling extra 2) ? )
-     s
-     (make-string (floor extra 2) ? ))))
-
-(defun s-pad-left (len padding s)
-  "If S is shorter than LEN, pad it with PADDING on the left."
-  (declare (pure t) (side-effect-free t))
-  (let ((extra (max 0 (- len (length s)))))
-    (concat (make-string extra (string-to-char padding))
-            s)))
-
-(defun s-pad-right (len padding s)
-  "If S is shorter than LEN, pad it with PADDING on the right."
-  (declare (pure t) (side-effect-free t))
-  (let ((extra (max 0 (- len (length s)))))
-    (concat s
-            (make-string extra (string-to-char padding)))))
-
-(defun s-left (len s)
-  "Returns up to the LEN first chars of S."
-  (declare (pure t) (side-effect-free t))
-  (if (> (length s) len)
-      (substring s 0 len)
-    s))
-
-(defun s-right (len s)
-  "Returns up to the LEN last chars of S."
-  (declare (pure t) (side-effect-free t))
-  (let ((l (length s)))
-    (if (> l len)
-        (substring s (- l len) l)
-      s)))
-
-(defun s-ends-with? (suffix s &optional ignore-case)
-  "Does S end with SUFFIX?
-
-If IGNORE-CASE is non-nil, the comparison is done without paying
-attention to case differences.
-
-Alias: `s-suffix?'"
-  (declare (pure t) (side-effect-free t))
-  (let ((start-pos (- (length s) (length suffix))))
-    (and (>= start-pos 0)
-         (eq t (compare-strings suffix nil nil
-                                s start-pos nil ignore-case)))))
-
-(defun s-starts-with? (prefix s &optional ignore-case)
-  "Does S start with PREFIX?
-
-If IGNORE-CASE is non-nil, the comparison is done without paying
-attention to case differences.
-
-Alias: `s-prefix?'. This is a simple wrapper around the built-in
-`string-prefix-p'."
-  (declare (pure t) (side-effect-free t))
-  (string-prefix-p prefix s ignore-case))
-
-(defun s--truthy? (val)
-  (declare (pure t) (side-effect-free t))
-  (not (null val)))
-
-(defun s-contains? (needle s &optional ignore-case)
-  "Does S contain NEEDLE?
-
-If IGNORE-CASE is non-nil, the comparison is done without paying
-attention to case differences."
-  (declare (pure t) (side-effect-free t))
-  (let ((case-fold-search ignore-case))
-    (s--truthy? (string-match-p (regexp-quote needle) s))))
-
-(defun s-equals? (s1 s2)
-  "Is S1 equal to S2?
-
-This is a simple wrapper around the built-in `string-equal'."
-  (declare (pure t) (side-effect-free t))
-  (string-equal s1 s2))
-
-(defun s-less? (s1 s2)
-  "Is S1 less than S2?
-
-This is a simple wrapper around the built-in `string-lessp'."
-  (declare (pure t) (side-effect-free t))
-  (string-lessp s1 s2))
-
-(defun s-matches? (regexp s &optional start)
-  "Does REGEXP match S?
-If START is non-nil the search starts at that index.
-
-This is a simple wrapper around the built-in `string-match-p'."
-  (declare (side-effect-free t))
-  (s--truthy? (string-match-p regexp s start)))
-
-(defun s-blank? (s)
-  "Is S nil or the empty string?"
-  (declare (pure t) (side-effect-free t))
-  (or (null s) (string= "" s)))
-
-(defun s-blank-str? (s)
-  "Is S nil or the empty string or string only contains whitespace?"
-  (declare (pure t) (side-effect-free t))
-  (or (s-blank? s) (s-blank? (s-trim s))))
-
-(defun s-present? (s)
-  "Is S anything but nil or the empty string?"
-  (declare (pure t) (side-effect-free t))
-  (not (s-blank? s)))
-
-(defun s-presence (s)
-  "Return S if it's `s-present?', otherwise return nil."
-  (declare (pure t) (side-effect-free t))
-  (and (s-present? s) s))
-
-(defun s-lowercase? (s)
-  "Are all the letters in S in lower case?"
-  (declare (side-effect-free t))
-  (let ((case-fold-search nil))
-    (not (string-match-p "[[:upper:]]" s))))
-
-(defun s-uppercase? (s)
-  "Are all the letters in S in upper case?"
-  (declare (side-effect-free t))
-  (let ((case-fold-search nil))
-    (not (string-match-p "[[:lower:]]" s))))
-
-(defun s-mixedcase? (s)
-  "Are there both lower case and upper case letters in S?"
-  (let ((case-fold-search nil))
-    (s--truthy?
-     (and (string-match-p "[[:lower:]]" s)
-          (string-match-p "[[:upper:]]" s)))))
-
-(defun s-capitalized? (s)
-  "In S, is the first letter upper case, and all other letters lower case?"
-  (declare (side-effect-free t))
-  (let ((case-fold-search nil))
-    (s--truthy?
-     (string-match-p "^[[:upper:]][^[:upper:]]*$" s))))
-
-(defun s-numeric? (s)
-  "Is S a number?"
-  (declare (pure t) (side-effect-free t))
-  (s--truthy?
-   (string-match-p "^[0-9]+$" s)))
-
-(defun s-replace (old new s)
-  "Replaces OLD with NEW in S."
-  (declare (pure t) (side-effect-free t))
-  (replace-regexp-in-string (regexp-quote old) new s t t))
-
-(defalias 's-replace-regexp 'replace-regexp-in-string)
-
-(defun s--aget (alist key)
-  (declare (pure t) (side-effect-free t))
-  (cdr (assoc-string key alist)))
-
-(defun s-replace-all (replacements s)
-  "REPLACEMENTS is a list of cons-cells. Each `car` is replaced with `cdr` in S."
-  (declare (pure t) (side-effect-free t))
-  (replace-regexp-in-string (regexp-opt (mapcar 'car replacements))
-                            (lambda (it) (s--aget replacements it))
-                            s t t))
-
-(defun s-downcase (s)
-  "Convert S to lower case.
-
-This is a simple wrapper around the built-in `downcase'."
-  (declare (side-effect-free t))
-  (downcase s))
-
-(defun s-upcase (s)
-  "Convert S to upper case.
-
-This is a simple wrapper around the built-in `upcase'."
-  (declare (side-effect-free t))
-  (upcase s))
-
-(defun s-capitalize (s)
-  "Convert the first word's first character to upper case and the rest to lower case in S."
-  (declare (side-effect-free t))
-  (concat (upcase (substring s 0 1)) (downcase (substring s 1))))
-
-(defun s-titleize (s)
-  "Convert each word's first character to upper case and the rest to lower case in S.
-
-This is a simple wrapper around the built-in `capitalize'."
-  (declare (side-effect-free t))
-  (capitalize s))
-
-(defmacro s-with (s form &rest more)
-  "Threads S through the forms. Inserts S as the last item
-in the first form, making a list of it if it is not a list
-already. If there are more forms, inserts the first form as the
-last item in second form, etc."
-  (declare (debug (form &rest [&or (function &rest form) fboundp])))
-  (if (null more)
-      (if (listp form)
-          `(,(car form) ,@(cdr form) ,s)
-        (list form s))
-    `(s-with (s-with ,s ,form) ,@more)))
-
-(put 's-with 'lisp-indent-function 1)
-
-(defun s-index-of (needle s &optional ignore-case)
-  "Returns first index of NEEDLE in S, or nil.
-
-If IGNORE-CASE is non-nil, the comparison is done without paying
-attention to case differences."
-  (declare (pure t) (side-effect-free t))
-  (let ((case-fold-search ignore-case))
-    (string-match-p (regexp-quote needle) s)))
-
-(defun s-reverse (s)
-  "Return the reverse of S."
-  (declare (pure t) (side-effect-free t))
-  (save-match-data
-    (if (multibyte-string-p s)
-        (let ((input (string-to-list s))
-              output)
-          (require 'ucs-normalize)
-          (while input
-            ;; Handle entire grapheme cluster as a single unit
-            (let ((grapheme (list (pop input))))
-              (while (memql (car input) ucs-normalize-combining-chars)
-                (push (pop input) grapheme))
-              (setq output (nconc (nreverse grapheme) output))))
-          (concat output))
-      (concat (nreverse (string-to-list s))))))
-
-(defun s-match-strings-all (regex string)
-  "Return a list of matches for REGEX in STRING.
-
-Each element itself is a list of matches, as per
-`match-string'. Multiple matches at the same position will be
-ignored after the first."
-  (declare (side-effect-free t))
-  (save-match-data
-    (let ((all-strings ())
-          (i 0))
-      (while (and (< i (length string))
-                  (string-match regex string i))
-        (setq i (1+ (match-beginning 0)))
-        (let (strings
-              (num-matches (/ (length (match-data)) 2))
-              (match 0))
-          (while (/= match num-matches)
-            (push (match-string match string) strings)
-            (setq match (1+ match)))
-          (push (nreverse strings) all-strings)))
-      (nreverse all-strings))))
-
-(defun s-matched-positions-all (regexp string &optional subexp-depth)
-  "Return a list of matched positions for REGEXP in STRING.
-SUBEXP-DEPTH is 0 by default."
-  (declare (side-effect-free t))
-  (if (null subexp-depth)
-      (setq subexp-depth 0))
-  (save-match-data
-    (let ((pos 0) result)
-      (while (and (string-match regexp string pos)
-                  (< pos (length string)))
-        (let ((m (match-end subexp-depth)))
-          (push (cons (match-beginning subexp-depth) (match-end subexp-depth)) result)
-          (setq pos (match-end 0))))
-      (nreverse result))))
-
-(defun s-match (regexp s &optional start)
-  "When the given expression matches the string, this function returns a list
-of the whole matching string and a string for each matched subexpressions.
-If it did not match the returned value is an empty list (nil).
-
-When START is non-nil the search will start at that index."
-  (declare (side-effect-free t))
-  (save-match-data
-    (if (string-match regexp s start)
-        (let ((match-data-list (match-data))
-              result)
-          (while match-data-list
-            (let* ((beg (car match-data-list))
-                   (end (cadr match-data-list))
-                   (subs (if (and beg end) (substring s beg end) nil)))
-              (setq result (cons subs result))
-              (setq match-data-list
-                    (cddr match-data-list))))
-          (nreverse result)))))
-
-(defun s-slice-at (regexp s)
-  "Slices S up at every index matching REGEXP."
-  (declare (side-effect-free t))
-  (if (= 0 (length s)) (list "")
-    (save-match-data
-      (let (i)
-        (setq i (string-match regexp s 1))
-        (if i
-            (cons (substring s 0 i)
-                  (s-slice-at regexp (substring s i)))
-          (list s))))))
-
-(defun s-split-words (s)
-  "Split S into list of words."
-  (declare (side-effect-free t))
-  (s-split
-   "[^[:word:]0-9]+"
-   (let ((case-fold-search nil))
-     (replace-regexp-in-string
-      "\\([[:lower:]]\\)\\([[:upper:]]\\)" "\\1 \\2"
-      (replace-regexp-in-string "\\([[:upper:]]\\)\\([[:upper:]][0-9[:lower:]]\\)" "\\1 \\2" s)))
-   t))
-
-(defun s--mapcar-head (fn-head fn-rest list)
-  "Like MAPCAR, but applies a different function to the first element."
-  (if list
-      (cons (funcall fn-head (car list)) (mapcar fn-rest (cdr list)))))
-
-(defun s-lower-camel-case (s)
-  "Convert S to lowerCamelCase."
-  (declare (side-effect-free t))
-  (s-join "" (s--mapcar-head 'downcase 'capitalize (s-split-words s))))
-
-(defun s-upper-camel-case (s)
-  "Convert S to UpperCamelCase."
-  (declare (side-effect-free t))
-  (s-join "" (mapcar 'capitalize (s-split-words s))))
-
-(defun s-snake-case (s)
-  "Convert S to snake_case."
-  (declare (side-effect-free t))
-  (s-join "_" (mapcar 'downcase (s-split-words s))))
-
-(defun s-dashed-words (s)
-  "Convert S to dashed-words."
-  (declare (side-effect-free t))
-  (s-join "-" (mapcar 'downcase (s-split-words s))))
-
-(defun s-capitalized-words (s)
-  "Convert S to Capitalized words."
-  (declare (side-effect-free t))
-  (let ((words (s-split-words s)))
-    (s-join " " (cons (capitalize (car words)) (mapcar 'downcase (cdr words))))))
-
-(defun s-titleized-words (s)
-  "Convert S to Titleized Words."
-  (declare (side-effect-free t))
-  (s-join " " (mapcar 's-titleize (s-split-words s))))
-
-(defun s-word-initials (s)
-  "Convert S to its initials."
-  (declare (side-effect-free t))
-  (s-join "" (mapcar (lambda (ss) (substring ss 0 1))
-                     (s-split-words s))))
-
-;; Errors for s-format
-(progn
-  (put 's-format-resolve
-       'error-conditions
-       '(error s-format s-format-resolve))
-  (put 's-format-resolve
-       'error-message
-       "Cannot resolve a template to values"))
-
-(defun s-format (template replacer &optional extra)
-  "Format TEMPLATE with the function REPLACER.
-
-REPLACER takes an argument of the format variable and optionally
-an extra argument which is the EXTRA value from the call to
-`s-format'.
-
-Several standard `s-format' helper functions are recognized and
-adapted for this:
-
-    (s-format \"${name}\" 'gethash hash-table)
-    (s-format \"${name}\" 'aget alist)
-    (s-format \"$0\" 'elt sequence)
-
-The REPLACER function may be used to do any other kind of
-transformation."
-  (let ((saved-match-data (match-data)))
-    (unwind-protect
-        (replace-regexp-in-string
-         "\\$\\({\\([^}]+\\)}\\|[0-9]+\\)"
-         (lambda (md)
-           (let ((var
-                  (let ((m (match-string 2 md)))
-                    (if m m
-                      (string-to-number (match-string 1 md)))))
-                 (replacer-match-data (match-data)))
-             (unwind-protect
-                 (let ((v
-                        (cond
-                         ((eq replacer 'gethash)
-                          (funcall replacer var extra))
-                         ((eq replacer 'aget)
-                          (funcall 's--aget extra var))
-                         ((eq replacer 'elt)
-                          (funcall replacer extra var))
-                         ((eq replacer 'oref)
-                          (funcall #'slot-value extra (intern var)))
-                         (t
-                          (set-match-data saved-match-data)
-                          (if extra
-                              (funcall replacer var extra)
-                            (funcall replacer var))))))
-                   (if v (format "%s" v) (signal 's-format-resolve md)))
-               (set-match-data replacer-match-data)))) template
-               ;; Need literal to make sure it works
-               t t)
-      (set-match-data saved-match-data))))
-
-(defvar s-lex-value-as-lisp nil
-  "If `t' interpolate lisp values as lisp.
-
-`s-lex-format' inserts values with (format \"%S\").")
-
-(defun s-lex-fmt|expand (fmt)
-  "Expand FMT into lisp."
-  (declare (side-effect-free t))
-  (list 's-format fmt (quote 'aget)
-        (append '(list)
-                (mapcar
-                 (lambda (matches)
-                   (list
-                    'cons
-                    (cadr matches)
-                    `(format
-                      (if s-lex-value-as-lisp "%S" "%s")
-                      ,(intern (cadr matches)))))
-                 (s-match-strings-all "${\\([^}]+\\)}" fmt)))))
-
-(defmacro s-lex-format (format-str)
-  "`s-format` with the current environment.
-
-FORMAT-STR may use the `s-format' variable reference to refer to
-any variable:
-
- (let ((x 1))
-   (s-lex-format \"x is: ${x}\"))
-
-The values of the variables are interpolated with \"%s\" unless
-the variable `s-lex-value-as-lisp' is `t' and then they are
-interpolated with \"%S\"."
-  (declare (debug (form)))
-  (s-lex-fmt|expand format-str))
-
-(defun s-count-matches (regexp s &optional start end)
-  "Count occurrences of `regexp' in `s'.
-
-`start', inclusive, and `end', exclusive, delimit the part of `s' to
-match.  `start' and `end' are both indexed starting at 1; the initial
-character in `s' is index 1.
-
-This function starts looking for the next match from the end of the
-previous match.  Hence, it ignores matches that overlap a previously
-found match.  To count overlapping matches, use
-`s-count-matches-all'."
-  (declare (side-effect-free t))
-  (save-match-data
-    (with-temp-buffer
-      (insert s)
-      (goto-char (point-min))
-      (count-matches regexp (or start 1) (or end (point-max))))))
-
-(defun s-count-matches-all (regexp s &optional start end)
-  "Count occurrences of `regexp' in `s'.
-
-`start', inclusive, and `end', exclusive, delimit the part of `s' to
-match.  `start' and `end' are both indexed starting at 1; the initial
-character in `s' is index 1.
-
-This function starts looking for the next match from the second
-character of the previous match.  Hence, it counts matches that
-overlap a previously found match.  To ignore matches that overlap a
-previously found match, use `s-count-matches'."
-  (declare (side-effect-free t))
-  (let* ((anchored-regexp (format "^%s" regexp))
-         (match-count 0)
-         (i 0)
-         (narrowed-s (substring s
-                                (when start (1- start))
-                                (when end (1- end)))))
-    (save-match-data
-      (while (< i (length narrowed-s))
-        (when (s-matches? anchored-regexp (substring narrowed-s i))
-          (setq match-count (1+ match-count)))
-        (setq i (1+ i))))
-    match-count))
-
-(defun s-wrap (s prefix &optional suffix)
-  "Wrap string S with PREFIX and optionally SUFFIX.
-
-Return string S with PREFIX prepended.  If SUFFIX is present, it
-is appended, otherwise PREFIX is used as both prefix and
-suffix."
-  (declare (pure t) (side-effect-free t))
-  (concat prefix s (or suffix prefix)))
-
-
-;;; Aliases
-
-(defalias 's-blank-p 's-blank?)
-(defalias 's-blank-str-p 's-blank-str?)
-(defalias 's-capitalized-p 's-capitalized?)
-(defalias 's-contains-p 's-contains?)
-(defalias 's-ends-with-p 's-ends-with?)
-(defalias 's-equals-p 's-equals?)
-(defalias 's-less-p 's-less?)
-(defalias 's-lowercase-p 's-lowercase?)
-(defalias 's-matches-p 's-matches?)
-(defalias 's-mixedcase-p 's-mixedcase?)
-(defalias 's-numeric-p 's-numeric?)
-(defalias 's-prefix-p 's-starts-with?)
-(defalias 's-prefix? 's-starts-with?)
-(defalias 's-present-p 's-present?)
-(defalias 's-starts-with-p 's-starts-with?)
-(defalias 's-suffix-p 's-ends-with?)
-(defalias 's-suffix? 's-ends-with?)
-(defalias 's-uppercase-p 's-uppercase?)
-
-
-(provide 's)
-;;; s.el ends here
diff --git a/elpa/s-20180406.808/s.elc b/elpa/s-20180406.808/s.elc
deleted file mode 100644
index 1016bbd..0000000
--- a/elpa/s-20180406.808/s.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-autoloads.el b/elpa/smartparens-20181028.1005/smartparens-autoloads.el
deleted file mode 100644
index 9247c71..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-autoloads.el
+++ /dev/null
@@ -1,329 +0,0 @@
-;;; smartparens-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "smartparens" "smartparens.el" (0 0 0 0))
-;;; Generated autoloads from smartparens.el
-
-(autoload 'sp-cheat-sheet "smartparens" "\
-Generate a cheat sheet of all the smartparens interactive functions.
-
-Without a prefix argument, print only the short documentation and examples.
-
-With non-nil prefix argument ARG, show the full documentation for each function.
-
-You can follow the links to the function or variable help page.
-To get back to the full list, use \\[help-go-back].
-
-You can use `beginning-of-defun' and `end-of-defun' to jump to
-the previous/next entry.
-
-Examples are fontified using the `font-lock-string-face' for
-better orientation.
-
-\(fn &optional ARG)" t nil)
-
-(defvar smartparens-mode-map (make-sparse-keymap) "\
-Keymap used for `smartparens-mode'.")
-
-(autoload 'sp-use-paredit-bindings "smartparens" "\
-Initiate `smartparens-mode-map' with `sp-paredit-bindings'.
-
-\(fn)" t nil)
-
-(autoload 'sp-use-smartparens-bindings "smartparens" "\
-Initiate `smartparens-mode-map' with `sp-smartparens-bindings'.
-
-\(fn)" t nil)
-
-(autoload 'smartparens-mode "smartparens" "\
-Toggle smartparens mode.
-
-You can enable pre-set bindings by customizing
-`sp-base-key-bindings' variable.  The current content of
-`smartparens-mode-map' is:
-
- \\{smartparens-mode-map}
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'smartparens-strict-mode "smartparens" "\
-Toggle the strict smartparens mode.
-
-When strict mode is active, `delete-char', `kill-word' and their
-backward variants will skip over the pair delimiters in order to
-keep the structure always valid (the same way as `paredit-mode'
-does).  This is accomplished by remapping them to
-`sp-delete-char' and `sp-kill-word'.  There is also function
-`sp-kill-symbol' that deletes symbols instead of words, otherwise
-working exactly the same (it is not bound to any key by default).
-
-When strict mode is active, this is indicated with \"/s\"
-after the smartparens indicator in the mode list.
-
-\(fn &optional ARG)" t nil)
-
-(defvar smartparens-global-strict-mode nil "\
-Non-nil if Smartparens-Global-Strict mode is enabled.
-See the `smartparens-global-strict-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `smartparens-global-strict-mode'.")
-
-(custom-autoload 'smartparens-global-strict-mode "smartparens" nil)
-
-(autoload 'smartparens-global-strict-mode "smartparens" "\
-Toggle Smartparens-Strict mode in all buffers.
-With prefix ARG, enable Smartparens-Global-Strict mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Smartparens-Strict mode is enabled in all buffers where
-`turn-on-smartparens-strict-mode' would do it.
-See `smartparens-strict-mode' for more information on Smartparens-Strict mode.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'turn-on-smartparens-strict-mode "smartparens" "\
-Turn on `smartparens-strict-mode'.
-
-\(fn)" t nil)
-
-(autoload 'turn-off-smartparens-strict-mode "smartparens" "\
-Turn off `smartparens-strict-mode'.
-
-\(fn)" t nil)
-
-(defvar smartparens-global-mode nil "\
-Non-nil if Smartparens-Global mode is enabled.
-See the `smartparens-global-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `smartparens-global-mode'.")
-
-(custom-autoload 'smartparens-global-mode "smartparens" nil)
-
-(autoload 'smartparens-global-mode "smartparens" "\
-Toggle Smartparens mode in all buffers.
-With prefix ARG, enable Smartparens-Global mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Smartparens mode is enabled in all buffers where
-`turn-on-smartparens-mode' would do it.
-See `smartparens-mode' for more information on Smartparens mode.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'turn-on-smartparens-mode "smartparens" "\
-Turn on `smartparens-mode'.
-
-This function is used to turn on `smartparens-global-mode'.
-
-By default `smartparens-global-mode' ignores buffers with
-`mode-class' set to special, but only if they are also not comint
-buffers.
-
-Additionally, buffers on `sp-ignore-modes-list' are ignored.
-
-You can still turn on smartparens in these mode manually (or
-in mode's startup-hook etc.) by calling `smartparens-mode'.
-
-\(fn)" t nil)
-
-(autoload 'turn-off-smartparens-mode "smartparens" "\
-Turn off `smartparens-mode'.
-
-\(fn)" t nil)
-
-(autoload 'show-smartparens-mode "smartparens" "\
-Toggle visualization of matching pairs.  When enabled, any
-matching pair is highlighted after `sp-show-pair-delay' seconds
-of Emacs idle time if the point is immediately in front or after
-a pair.  This mode works similarly to `show-paren-mode', but
-support custom pairs.
-
-\(fn &optional ARG)" t nil)
-
-(defvar show-smartparens-global-mode nil "\
-Non-nil if Show-Smartparens-Global mode is enabled.
-See the `show-smartparens-global-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `show-smartparens-global-mode'.")
-
-(custom-autoload 'show-smartparens-global-mode "smartparens" nil)
-
-(autoload 'show-smartparens-global-mode "smartparens" "\
-Toggle Show-Smartparens mode in all buffers.
-With prefix ARG, enable Show-Smartparens-Global mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Show-Smartparens mode is enabled in all buffers where
-`turn-on-show-smartparens-mode' would do it.
-See `show-smartparens-mode' for more information on Show-Smartparens mode.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'turn-on-show-smartparens-mode "smartparens" "\
-Turn on `show-smartparens-mode'.
-
-\(fn)" t nil)
-
-(autoload 'turn-off-show-smartparens-mode "smartparens" "\
-Turn off `show-smartparens-mode'.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens" '("smartparens-" "sp-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-clojure" "smartparens-clojure.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-clojure.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-clojure" '("sp-clojure-prefix")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-config" "smartparens-config.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-config.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-config" '("sp-lisp-invalid-hyperlink-p")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-crystal" "smartparens-crystal.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-crystal.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-crystal" '("sp-crystal-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-elixir" "smartparens-elixir.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-elixir.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-elixir" '("sp-elixir-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-ess" "smartparens-ess.el" (0 0
-;;;;;;  0 0))
-;;; Generated autoloads from smartparens-ess.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-ess" '("sp-ess-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-haskell" "smartparens-haskell.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-haskell.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-haskell" '("sp-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-html" "smartparens-html.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from smartparens-html.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-html" '("sp-html-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-latex" "smartparens-latex.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-latex.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-latex" '("sp-latex-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-lua" "smartparens-lua.el" (0 0
-;;;;;;  0 0))
-;;; Generated autoloads from smartparens-lua.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-lua" '("sp-lua-post-keyword-insert")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-markdown" "smartparens-markdown.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-markdown.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-markdown" '("sp-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-org" "smartparens-org.el" (0 0
-;;;;;;  0 0))
-;;; Generated autoloads from smartparens-org.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-org" '("sp--org-skip-asterisk")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-python" "smartparens-python.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-python.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-python" '("sp-python-fix-tripple-quotes")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-ruby" "smartparens-ruby.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from smartparens-ruby.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-ruby" '("sp-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-rust" "smartparens-rust.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from smartparens-rust.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-rust" '("sp-")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-scala" "smartparens-scala.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from smartparens-scala.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-scala" '("sp-scala-wrap-with-indented-newlines")))
-
-;;;***
-
-;;;### (autoloads nil "smartparens-text" "smartparens-text.el" (0
-;;;;;;  0 0 0))
-;;; Generated autoloads from smartparens-text.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "smartparens-text" '("sp-text-mode-")))
-
-;;;***
-
-;;;### (autoloads nil nil ("smartparens-javascript.el" "smartparens-ml.el"
-;;;;;;  "smartparens-pkg.el" "smartparens-racket.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; smartparens-autoloads.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-clojure.el b/elpa/smartparens-20181028.1005/smartparens-clojure.el
deleted file mode 100644
index 25b6d6d..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-clojure.el
+++ /dev/null
@@ -1,56 +0,0 @@
-;;; smartparens-clojure.el --- Additional configuration for Clojure mode.  -*- lexical-binding: t; -*-
-;;
-;; Author: Vitalie Spinu <spinuvit@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 14 July 2016
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-;;
-;; This file is not part of GNU Emacs.
-;;
-;;; License:
-;;
-;; This file is part of Smartparens.
-;;
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-;;
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-;;
-;;; Commentary:
-;;
-;; This file provides some additional configuration for Clojure mode.  To use
-;; it, simply add:
-;;
-;; (require 'smartparens-clojure)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;;; Code:
-
-(require 'smartparens)
-
-(defvar sp-clojure-prefix "\\(?:[@`'#~,_?^]+\\)"
-  "Prefix used in `sp-sepx-prefix' for clojure modes.")
-
-(dolist (mode '(clojure-mode clojurescript-mode clojurec-mode cider-repl-mode))
-  (add-to-list 'sp-sexp-prefix `(,mode regexp ,sp-clojure-prefix)))
-
-;; Match "`" with "`" in strings and comments
-(sp-with-modes sp-clojure-modes
-  (sp-local-pair "`" "`"
-                 :when '(sp-in-string-p
-                         sp-in-comment-p)
-                 :unless '(sp-lisp-invalid-hyperlink-p)))
-
-(provide 'smartparens-clojure)
-;;; smartparens-clojure.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-clojure.elc b/elpa/smartparens-20181028.1005/smartparens-clojure.elc
deleted file mode 100644
index e7274ee..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-clojure.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-config.el b/elpa/smartparens-20181028.1005/smartparens-config.el
deleted file mode 100644
index 2b8665c..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-config.el
+++ /dev/null
@@ -1,131 +0,0 @@
-;;; smartparens-config.el --- Default configuration for smartparens package  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2016 Matus Goljer
-
-;; Author: Matus Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 30 Jan 2013
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This is a default configuration for smartparens package.  If you
-;; wish to set up everything by yourself, you can instead require
-;; smartparens directly.
-
-;; However, some configuration is always loaded by default, most
-;; notably the built-in list of supported pairs.  If you want to erase
-;; this list, simply use (setq sp-pairs nil) and then add your own
-;; pairs.
-
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-(defun sp-lisp-invalid-hyperlink-p (_id action _context)
-  "Test if there is an invalid hyperlink in a Lisp docstring.
-ID, ACTION, CONTEXT."
-  (when (eq action 'navigate)
-    ;; Ignore errors due to us being at the start or end of the
-    ;; buffer.
-    (ignore-errors
-      (or
-       ;; foo'|bar
-       (and (looking-at "\\sw\\|\\s_")
-            ;; do not consider punctuation
-            (not (looking-at "[?.,;!]"))
-            (save-excursion
-              (backward-char 2)
-              (looking-at "\\sw\\|\\s_")))
-       ;; foo|'bar
-       (and (save-excursion
-              (backward-char 1)
-              (looking-at "\\sw\\|\\s_"))
-            (save-excursion
-              (forward-char 1)
-              (looking-at "\\sw\\|\\s_")
-              ;; do not consider punctuation
-              (not (looking-at "[?.,;!]"))))))))
-
-;; emacs is lisp hacking enviroment, so we set up some most common
-;; lisp modes too
-(sp-with-modes sp-lisp-modes
-  ;; disable ', it's the quote character!
-  (sp-local-pair "'" nil :actions nil))
-
-(sp-with-modes (-difference sp-lisp-modes sp-clojure-modes)
-  ;; also only use the pseudo-quote inside strings where it serve as
-  ;; hyperlink.
-  (sp-local-pair "`" "'"
-                 :when '(sp-in-string-p
-                         sp-in-comment-p)
-                 :unless '(sp-lisp-invalid-hyperlink-p)
-                 :skip-match (lambda (ms _mb _me)
-                               (cond
-                                ((equal ms "'")
-                                 (or (sp-lisp-invalid-hyperlink-p "`" 'navigate '_)
-                                     (not (sp-point-in-string-or-comment))))
-                                (t (not (sp-point-in-string-or-comment)))))))
-
-;; TODO: this should only be active in docstring, otherwise we want
-;; the regexp completion \\{\\}.  To handle this feature, we must
-;; allow multiple pairs on same opening (therefore, the unique ID must
-;; become the opening and closing pair)
-(sp-local-pair 'emacs-lisp-mode "\\\\{" "}" :when '(sp-in-docstring-p))
-
-;; NOTE: Normally, `sp-local-pair' accepts list of modes (or a single
-;; mode) as a first argument.  The macro `sp-with-modes' adds this
-;; automatically.  If you want to call sp-local-pair outside this
-;; macro, you MUST supply the major mode argument.
-
-(eval-after-load 'clojure-mode             '(require 'smartparens-clojure))
-(eval-after-load 'crystal-mode             '(require 'smartparens-crystal))
-(eval-after-load 'elixir-mode              '(require 'smartparens-elixir))
-(eval-after-load 'enh-ruby-mode            '(require 'smartparens-ruby))
-(eval-after-load 'ess                      '(require 'smartparens-ess))
-(eval-after-load 'haskell-interactive-mode '(require 'smartparens-haskell))
-(eval-after-load 'haskell-mode             '(require 'smartparens-haskell))
-(--each sp--html-modes
-  (eval-after-load it                      '(require 'smartparens-html)))
-(eval-after-load 'latex                    '(require 'smartparens-latex))
-(eval-after-load 'lua-mode                 '(require 'smartparens-lua))
-(eval-after-load 'markdown-mode            '(require 'smartparens-markdown))
-(--each '(python-mode python)
-  (eval-after-load it                      '(require 'smartparens-python)))
-(eval-after-load 'org                      '(require 'smartparens-org))
-(eval-after-load 'racket-mode              '(require 'smartparens-racket))
-(eval-after-load 'ruby-mode                '(require 'smartparens-ruby))
-(eval-after-load 'rust-mode                '(require 'smartparens-rust))
-(eval-after-load 'scala-mode               '(require 'smartparens-scala))
-(eval-after-load 'tex-mode                 '(require 'smartparens-latex))
-(eval-after-load 'text-mode                '(require 'smartparens-text))
-(eval-after-load 'tuareg                   '(require 'smartparens-ml))
-(eval-after-load 'fsharp-mode              '(require 'smartparens-ml))
-(--each '(js js2-mode)
-  (eval-after-load it                      '(require 'smartparens-javascript)))
-(provide 'smartparens-config)
-
-;;; smartparens-config.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-config.elc b/elpa/smartparens-20181028.1005/smartparens-config.elc
deleted file mode 100644
index a098d4c..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-config.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-crystal.el b/elpa/smartparens-20181028.1005/smartparens-crystal.el
deleted file mode 100644
index 574ac8e..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-crystal.el
+++ /dev/null
@@ -1,261 +0,0 @@
-;;; smartparens-crystal.el --- Additional configuration for Crystal based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2018 Brantou
-
-;; Author: Brantou <brantou89@gmail.com>
-;; Maintainer: Brantou <brantou89@gmail.com>
-;; Created: 5 March 2018
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; Based on smartparens-ruby.el
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Crystal based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-crystal)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-(require 'smartparens-ruby)
-
-(declare-function crystal-forward-sexp "crystal")
-(declare-function crystal-backward-sexp "crystal")
-
-(defun sp-crystal-forward-sexp ()
-  "Wrapper for `crystal-forward-sexp'."
-  (interactive)
-  (crystal-forward-sexp))
-
-(defun sp-crystal-backward-sexp ()
-  "Wrapper for `crystal-backward-sexp'."
-  (interactive)
-  (crystal-backward-sexp))
-
-(defun sp-crystal-inline-p (id)
-  "Test if ID is inline."
-  (save-excursion
-    (when (looking-back id nil)
-      (backward-word))
-    (when (not (or (looking-back "^[[:blank:]]*" nil)
-                   (looking-back "= *" nil)))
-      (or (save-excursion
-            (forward-symbol -1)
-            (forward-symbol 1)
-            (looking-at-p (concat " *" id)))
-          (save-excursion
-            ;; This does not seem to make emacs snapshot happy
-            (ignore-errors
-              (sp-crystal-backward-sexp)
-              (sp-crystal-forward-sexp)
-              (looking-at-p (concat "[^[:blank:]]* *" id))))))))
-
-(defun sp-crystal-skip-inline-match-p (ms _mb _me)
-  "If non-nil, skip inline match.
-MS, MB, ME."
-  (or (sp-ruby-method-p ms)
-      (sp-crystal-inline-p ms)))
-
-(defun sp-crystal-in-string-word-or-inline-p (id action context)
-  "Test if point is inside string, word or inline.
-ID, ACTION, CONTEXT."
-  (or (sp-ruby-in-string-or-word-p id action context)
-      (and (looking-back id nil)
-           (sp-crystal-inline-p id))))
-
-(add-to-list 'sp-navigate-skip-match
-             '((crystal-mode) . sp--ruby-skip-match))
-
-(dolist (mode '(crystal-mode))
-  (add-to-list 'sp-sexp-suffix `(,mode syntax "")))
-
-(sp-with-modes 'crystal-mode
-  (sp-local-pair "do" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-block-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "{" "}"
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-post-handler)
-                 :suffix "")
-
-  (sp-local-pair "begin" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-block-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "def" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "class" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "struct" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "lib" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "fun" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "enum" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "union" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "module" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "macro" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "case" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "if" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-crystal-in-string-word-or-inline-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-crystal-skip-inline-match-p
-                 :suffix "")
-
-  (sp-local-pair "unless" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-crystal-in-string-word-or-inline-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-crystal-skip-inline-match-p
-                 :suffix "")
-
-  (sp-local-pair "while" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-crystal-in-string-word-or-inline-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-crystal-skip-inline-match-p
-                 :suffix "")
-
-  (sp-local-pair "until" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-crystal-in-string-word-or-inline-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-crystal-skip-inline-match-p
-                 :suffix "")
-
-  (sp-local-pair "|" "|"
-                 :when '(sp-ruby-should-insert-pipe-close)
-                 :pre-handlers '(sp-ruby-pre-pipe-handler)
-                 :suffix ""))
-
-(provide 'smartparens-crystal)
-
-;;; smartparens-crystal.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-crystal.elc b/elpa/smartparens-20181028.1005/smartparens-crystal.elc
deleted file mode 100644
index f108b1a..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-crystal.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-elixir.el b/elpa/smartparens-20181028.1005/smartparens-elixir.el
deleted file mode 100644
index 8411162..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-elixir.el
+++ /dev/null
@@ -1,135 +0,0 @@
-;;; smartparens-elixir.el --- Configuration for Elixir.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017 Matúš Goljer
-
-;; Author: Matúš Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matúš Goljer <matus.goljer@gmail.com>
-;; Version: 0.0.1
-;; Created: 15th January 2017
-;; Keywords: languages
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License
-;; as published by the Free Software Foundation; either version 3
-;; of the License, or (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;;; Code:
-
-(require 'smartparens)
-
-(--each '(elixir-mode)
-  (add-to-list 'sp-sexp-suffix (list it 'regexp "")))
-
-(defun sp-elixir-def-p (id)
-  "Return non-nil if the \"do\" keyword is part of definition.
-
-ID is the opening delimiter.
-
-Definitions are the constructions of the form defmodule-do-end,
-def-do-end and similar pairs."
-  (save-excursion
-    (when (equal "do" id)
-      (back-to-indentation)
-      (looking-at (regexp-opt '(
-                                "defmodule"
-                                "defmacro"
-                                "defmacrop"
-                                "quote"
-                                "def"
-                                "defp"
-                                "if"
-                                "unless"
-                                "case"
-                                "cond"
-                                "with"
-                                "for"
-                                "receive"
-                                "try"
-                                ))))))
-
-(defun sp-elixir-skip-def-p (ms _mb _me)
-  "Test if \"do\" is part of definition.
-MS, MB, ME."
-  (sp-elixir-def-p ms))
-
-(defun sp-elixir-do-block-post-handler (_id action _context)
-  "Insert \"do\" keyword and indent the new block.
-ID, ACTION, CONTEXT."
-  (when (eq action 'insert)
-    (let ((m (make-marker)))
-      (save-excursion
-        (forward-word) ;; over the "end"
-        (move-marker m (point)))
-      (save-excursion (newline))
-      (save-excursion (insert " do"))
-      (indent-region (line-beginning-position) m)
-      (move-marker m nil nil))))
-
-(defun sp-elixir-empty-do-block-post-handler (_id action _context)
-  "Insert empty \"do\" keyword and indent the new block.
-
-This is used for receive-do-end expression.
-ID, ACTION, CONTEXT."
-  (when (eq action 'insert)
-    (let ((m (make-marker)))
-      (save-excursion
-        (forward-word) ;; over the "end"
-        (move-marker m (point)))
-      (save-excursion
-        (forward-line -1)
-        (end-of-line)
-        (insert " do"))
-      (save-excursion (newline))
-      (indent-region (line-beginning-position) m)
-      (indent-according-to-mode)
-      (move-marker m nil nil))))
-
-(sp-with-modes 'elixir-mode
-  (sp-local-pair "do" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :skip-match 'sp-elixir-skip-def-p
-                 :unless '(sp-in-comment-p sp-in-string-p))
-  (sp-local-pair "def" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :post-handlers '(sp-elixir-do-block-post-handler)
-                 :unless '(sp-in-comment-p sp-in-string-p))
-  (sp-local-pair "defp" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :post-handlers '(sp-elixir-do-block-post-handler)
-                 :unless '(sp-in-comment-p sp-in-string-p))
-  (sp-local-pair "defmodule" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :post-handlers '(sp-elixir-do-block-post-handler)
-                 :unless '(sp-in-comment-p sp-in-string-p))
-  (sp-local-pair "fn" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :post-handlers '("| "))
-  (sp-local-pair "if" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :post-handlers '(sp-elixir-do-block-post-handler)
-                 :unless '(sp-in-comment-p sp-in-string-p))
-  (sp-local-pair "unless" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :post-handlers '(sp-elixir-do-block-post-handler)
-                 :unless '(sp-in-comment-p sp-in-string-p))
-  (sp-local-pair "case" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :post-handlers '(sp-elixir-do-block-post-handler)
-                 :unless '(sp-in-comment-p sp-in-string-p))
-  (sp-local-pair "receive" "end"
-                 :when '(("RET" "<evil-ret>"))
-                 :post-handlers '(sp-elixir-empty-do-block-post-handler))
-  )
-
-(provide 'smartparens-elixir)
-;;; smartparens-elixir.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-elixir.elc b/elpa/smartparens-20181028.1005/smartparens-elixir.elc
deleted file mode 100644
index 6e0e181..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-elixir.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-ess.el b/elpa/smartparens-20181028.1005/smartparens-ess.el
deleted file mode 100644
index 3bac0b5..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-ess.el
+++ /dev/null
@@ -1,228 +0,0 @@
-;;; smartparens-ess.el --- Smartparens Extension for Emacs Speaks Statistics  -*- lexical-binding: t; -*-
-
-;; Copyright (c) 2015-2016 Bernhard Pröll
-
-;; Author: Bernhard Pröll
-;; Maintainer: Bernhard Pröll
-;; URL: https://github.com/Fuco1/smartparens
-;; Created: 2015-02-26
-;; Version: 0.2
-;; Keywords: abbrev convenience editing
-
-;; This file is NOT part of GNU Emacs.
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; This file provides some additional configuration for ESS.  To use
-;; it, simply add:
-;;
-;; (require 'smartparens-ess)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;;; Code:
-
-(require 'smartparens)
-(require 'rx)
-
-(defvar ess-roxy-str)
-
-(declare-function ess-roxy-indent-on-newline "ess-roxy")
-
-
-;; avoid traveling commas when slurping
-;; (|a, b), c ---> (|a, b, c)
-(dolist (mode '(ess-mode inferior-ess-mode))
-  (add-to-list 'sp-sexp-suffix (list mode 'regexp "")))
-
-;; `sp-sexp-prefix' for ESS
-(add-to-list 'sp-sexp-prefix
-             (list 'ess-mode 'regexp
-                   (rx (zero-or-more (or word (syntax symbol))))))
-
-;; slurping follows Google's R style guide
-;; see https://google.github.io/styleguide/Rguide.xml
-(defun sp-ess-pre-handler (_id action _context)
-  "Remove spaces before opening parenthesis in a function call.
-Remove redundant space around commas.
-ID, ACTION, CONTEXT."
-  (when (equal action 'slurp-forward)
-    (let ((sxp (sp-get-thing 'back)))
-      (save-excursion
-        (goto-char (sp-get sxp :beg-prf))
-        ;; (|)   x ---> (x)
-        (when (looking-back (rx (syntax open-parenthesis)
-                                (one-or-more space)) nil)
-          (cycle-spacing 0 nil 'single-shot))
-        (cond
-         ;; (|)if(cond) ---> (|if (cond))
-         ((member (sp-get sxp :prefix) '("if" "for" "while"))
-          (goto-char (sp-get sxp :beg))
-          (cycle-spacing 1 nil 'single-shot))
-         ;; (|)v [,2] <- if(x > 1) ---> (v[,2] <- if (x > 1))
-         ((and
-           (member (sp-get sxp :op) '("[" "("))
-           (equal (sp-get sxp :prefix) "")
-           (looking-back
-            (rx (and (not-char "%" ",")
-                     (not (syntax close-parenthesis)))
-                (one-or-more space)) nil)
-           (not (member
-                 (save-excursion
-                   (sp-backward-sexp)
-                   (thing-at-point 'word 'noprop))
-                 '("if" "for" "while"))))
-          (cycle-spacing 0 nil 'single-shot))
-         ;; (|[...])%in% ---> ([...] %in%|)
-         ((or (looking-at "%") (looking-back "%" nil))
-          (just-one-space))
-         ;; (|)a , b,    c ---> (|a, b, c)
-         ((looking-back
-           (rx (zero-or-more space) "," (zero-or-more space))
-           (line-beginning-position) 'greedy)
-          (replace-match ", "))))))
-  (when (equal action 'slurp-backward)
-    (let ((sxp (sp-get-thing)))
-      (save-excursion
-        (goto-char (sp-get sxp :end))
-        ;; x  (|) ---> (x)
-        (when (looking-at (rx (one-or-more space)
-                              (syntax close-parenthesis)))
-          (cycle-spacing 0 nil 'single-shot))
-        ;; if(cond){} (|) ---> (if (cond) {}|)
-        (cond ((member (sp-get sxp :prefix) '("if" "for" "while"))
-               (goto-char (sp-get sxp :beg))
-               (cycle-spacing 1 nil 'single-shot))
-              ;; for style reasons there should be a space before curly
-              ;; brackets and binary operators
-              ((and (member (sp-get sxp :op) '("{" "%"))
-                    (not (looking-at (rx (syntax close-parenthesis)))))
-               (cycle-spacing 1 nil 'single-shot))
-              ;; v[2](|) ---> (v[2]|)
-              ((and
-                (not (member (thing-at-point 'word 'noprop)
-                             '("if" "for" "while")))
-                (looking-at
-                 (rx (and (zero-or-more space)
-                          (not-char "{")
-                          (or (syntax close-parenthesis)
-                              (char "(")
-                              (char "["))))))
-               (cycle-spacing 0 nil 'single-shot))
-              ;; 1 , 2 (|) ---> (1, 2)
-              ((looking-at
-                (rx (zero-or-more space) "," (zero-or-more space)))
-               (replace-match ", ")))))))
-
-;; function(x) {|} ---> function(x) {\n|\n}
-;; ##' \tabular{rrr}{|} --->
-;; ##' \tabular{rrr}{
-;; ##'   |
-;; ##' }
-(defun sp-ess-open-sexp-indent (&rest _args)
-  "Open new brace or bracket with indentation.
-ARGS."
-  (if (and (fboundp 'ess-roxy-entry-p) (ess-roxy-entry-p))
-      (progn
-        (save-excursion (ess-roxy-indent-on-newline))
-        (when (looking-back ess-roxy-str nil)
-          (cycle-spacing 3 nil t)))
-    (newline)
-    (indent-according-to-mode)
-    (forward-line -1)
-    (indent-according-to-mode)))
-
-(defun sp-ess-roxy-str-p (_id action _context)
-  "Test if looking back at `ess-roxy-re'.
-ID, ACTION, CONTEXT."
-  (when (and (boundp 'ess-roxy-re) (eq action 'insert))
-    (sp--looking-back-p ess-roxy-re)))
-
-(sp-with-modes 'ess-mode
-  (sp-local-pair "{" nil
-                 :pre-handlers '(sp-ess-pre-handler)
-    ;; the more reasonable C-j interferes with default binding for
-    ;; `ess-eval-line'
-                 :post-handlers '((sp-ess-open-sexp-indent "M-j")))
-  (sp-local-pair "(" nil
-                 :pre-handlers '(sp-ess-pre-handler)
-                 :post-handlers '((sp-ess-open-sexp-indent "M-j")))
-  (sp-local-pair "[" nil
-                 :pre-handlers '(sp-ess-pre-handler)
-                 :post-handlers '((sp-ess-open-sexp-indent "M-j")))
-  (sp-local-pair "'" nil
-                 :unless '(sp-ess-roxy-str-p sp-in-comment-p sp-in-string-quotes-p)))
-
-;;; roxygen2 markup
-;; see https://cran.r-project.org/web/packages/roxygen2/vignettes/formatting.html
-(sp-with-modes 'ess-mode
-  (sp-local-pair "\\strong{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\strong")
-  (sp-local-pair "\\emph{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\emph")
-  (sp-local-pair "\\code{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\code")
-  (sp-local-pair "\\url{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\url")
-  (sp-local-pair "\\link{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\link")
-  (sp-local-pair "\\href{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\href"
-                 :suffix "{[^}]*}")
-  (sp-local-pair "\\email{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\email")
-  (sp-local-pair "\\pkg{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\pkg")
-  (sp-local-pair "\\item{" "}"
-                 :when '(sp-in-comment-p)
-                 :post-handlers '((sp-ess-open-sexp-indent "M-j"))
-                 :trigger "\\item{")
-  (sp-local-pair "\\enumerate{" "}"
-                 :when '(sp-in-comment-p)
-                 :post-handlers '((sp-ess-open-sexp-indent "M-j"))
-                 :trigger "\\enumerate")
-  (sp-local-pair "\\itemize{" "}"
-                 :when '(sp-in-comment-p)
-                 :post-handlers '((sp-ess-open-sexp-indent "M-j"))
-                 :trigger "\\itemize")
-  (sp-local-pair "\\describe{" "}"
-                 :when '(sp-in-comment-p)
-                 :post-handlers '((sp-ess-open-sexp-indent "M-j"))
-                 :trigger "\\describe")
-  (sp-local-pair "\\eqn{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\eqn")
-  (sp-local-pair "\\deqn{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\deqn")
-  (sp-local-pair "\\tabular{" "}"
-                 :when '(sp-in-comment-p)
-                 :trigger "\\tabular"
-                 :post-handlers '((sp-ess-open-sexp-indent "M-j"))
-                 :suffix "{[^}]*}"))
-
-
-(provide 'smartparens-ess)
-;;; smartparens-ess ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-ess.elc b/elpa/smartparens-20181028.1005/smartparens-ess.elc
deleted file mode 100644
index 34728e4..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-ess.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-haskell.el b/elpa/smartparens-20181028.1005/smartparens-haskell.el
deleted file mode 100644
index 47a9ab5..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-haskell.el
+++ /dev/null
@@ -1,113 +0,0 @@
-;;; smartparens-haskell.el --- Additional configuration for Haskell based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015 Michael Xavier
-
-;; Author: Michael Xavier <michael@michaelxavier.net>
-;; Maintainer: Michael Xavier <michael@michaelxavier.net>
-;; Created: 29 Apr 2016
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Haskell based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-haskell)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-(require 'smartparens)
-
-(defun sp-haskell-skip-apostrophe (_ms mb _me)
-  (save-excursion
-    ;; We test the syntax class because haskell mode overrides
-    ;; the class for ' on the fly when it run the syntax pass of
-    ;; font-lock... so that if '' is a valid string (char) it
-    ;; gets an override via 'syntax-table property.  In which
-    ;; case we just agree with haskell mode and let it be used as
-    ;; a pair.
-    (not (eq (syntax-class (syntax-after mb)) 7))))
-
-(defun sp-haskell-strict-ignore-apostrophe-after-word (_id action _context)
-  "Ignore trailing ' when navigating.
-
-Because ' in haskell is symbol class it gets picked up as part of
-a words such as myFunction', and then strict mode won't allow us
-to delete it.  Also show-smartparens-mode incorrectly highlights
-it as missing an opener.
-
-So we ignore that pair when at the end of word."
-  (when (eq action 'navigate)
-    (sp--looking-back-p (concat "\\(\\sw\\|\\s_\\)'+"))))
-
-(sp-with-modes '(haskell-mode haskell-interactive-mode)
-  (sp-local-pair "{-" "-}")
-  (sp-local-pair "{-#" "#-}")
-  (sp-local-pair "{-@" "@-}")
-  (sp-local-pair "'" nil
-                 :unless '(sp-point-after-word-p
-                           sp-haskell-strict-ignore-apostrophe-after-word)
-                 :skip-match 'sp-haskell-skip-apostrophe)
-  (sp-local-pair "\\(" nil :actions nil))
-
-(defun sp--inferior-haskell-mode-backward-bound-fn ()
-  "Limit the backward search to the prompt if point is on prompt."
-  (-when-let (limit (cond ((bound-and-true-p comint-last-prompt)
-                           (marker-position (cdr comint-last-prompt)))
-                          ((bound-and-true-p comint-last-prompt-overlay)
-                           (overlay-end comint-last-prompt-overlay))
-                          (t nil)))
-    (and (> (point) limit) limit)))
-
-(defun sp--inferior-haskell-mode-forward-bound-fn ()
-  "Limit the forward search to exclude the prompt if point is before prompt."
-  (-when-let (limit (cond ((bound-and-true-p comint-last-prompt)
-                           (marker-position (car comint-last-prompt)))
-                          ((bound-and-true-p comint-last-prompt-overlay)
-                           (overlay-start comint-last-prompt-overlay))
-                          (t nil)))
-    (and (< (point) limit) limit)))
-
-(defun sp--setup-inferior-haskell-mode-search-bounds ()
-  "Setup the search bound.
-
-If the point is after the last prompt, limit the backward search
-only for the propmt.
-
-If the point is before the last prompt, limit the forward search up until the prompt start."
-  (setq sp-forward-bound-fn 'sp--inferior-haskell-mode-forward-bound-fn)
-  (setq sp-backward-bound-fn 'sp--inferior-haskell-mode-backward-bound-fn))
-
-(add-hook 'inferior-haskell-mode-hook 'sp--setup-inferior-haskell-mode-search-bounds)
-
-(provide 'smartparens-haskell)
-
-;;; smartparens-haskell.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-haskell.elc b/elpa/smartparens-20181028.1005/smartparens-haskell.elc
deleted file mode 100644
index 7f85a0d..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-haskell.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-html.el b/elpa/smartparens-20181028.1005/smartparens-html.el
deleted file mode 100644
index 3ba6406..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-html.el
+++ /dev/null
@@ -1,173 +0,0 @@
-;;; smartparens-html.el --- Additional configuration for HTML based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2014 Matus Goljer
-
-;; Author: Matus Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 14 Sep 2013
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for HTML based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-html)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-
-;; This file provides these interactive functions:
-
-;; `sp-html-next-tag'     - Recommended binding: C-c C-f
-;; `sp-html-previous-tag' - Recommended binding: C-c C-b
-;;
-;; (These two bindings are used for navigation by tags forward or
-;;  backward, but `sp-forward-sexp' already does that.)
-
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-(defun sp-html-next-tag (arg)
-  "Move point to the beginning of next SGML tag.
-
-With ARG positive N > 1, move N tags forward.
-
-With ARG raw prefix argument \\[universal-argument] move out of
-the current tag and to the beginning of enclosing tag.
-
-Note: this function is based on `sp-beginning-of-sexp' but
-specialized to only work with SGML tags and to always move
-forward."
-  (interactive "P")
-  (let ((sp-prefix-tag-object t))
-    (if (sp--raw-argument-p arg)
-        (sp-beginning-of-sexp arg)
-      (sp-beginning-of-sexp (1+ (prefix-numeric-value arg))))))
-
-(defun sp-html-previous-tag (arg)
-  "Move point to the beginning of previous SGML tag.
-
-With ARG positive N > 1, move N tags backward.
-
-With ARG raw prefix argument \\[universal-argument] move out of
-the current tag and to the beginning of enclosing tag.
-
-Note: this function is based on `sp-beginning-of-sexp' but
-specialized to only work with SGML tags and to always move
-backward."
-  (interactive "P")
-  (let ((sp-prefix-tag-object t))
-    (if (sp--raw-argument-p arg)
-        (sp-beginning-of-sexp arg)
-      (sp-beginning-of-sexp (1- (- (prefix-numeric-value arg)))))))
-
-(defun sp-html-post-handler (&optional _id action _context)
-  "Post-action hooks for `html-mode'.
-
-ID is the tag being processed, ACTION is the action and CONTEXT
-specifies if we are inside a string or code."
-  (cl-case action
-    (slurp-forward
-     (save-excursion
-       (let ((sp-prefix-pair-object t))
-         (sp-backward-sexp))
-       (-when-let (enc (sp-get-enclosing-sexp))
-         (sp-get enc
-           (goto-char :beg-in)
-           (when (looking-at-p "[ \t]*$")
-             (goto-char :end-in)
-             (save-excursion
-               (sp-backward-sexp)
-               (forward-line -1)
-               (when (sp-point-in-blank-line)
-                 (delete-region (line-beginning-position) (1+ (line-end-position)))))
-             (newline-and-indent))))))
-    (slurp-backward
-     (save-excursion
-       (-when-let (enc (sp-get-enclosing-sexp))
-         (sp-get enc
-           (goto-char :end-in)
-           (when (sp--looking-back-p "^[ \t]*")
-             (save-excursion
-               (goto-char :beg-in)
-               (newline-and-indent)
-               (sp-forward-sexp)
-               (forward-line)
-               (when (sp-point-in-blank-line)
-                 (delete-region (line-beginning-position) (1+ (line-end-position))))))))))
-    (barf-forward
-     (save-excursion
-       (let ((sp-prefix-pair-object t))
-         (sp-backward-sexp))
-       (-when-let (enc (sp-get-enclosing-sexp))
-         (sp-get enc
-           (goto-char :beg-in)
-           (when (looking-at-p "[ \t]*$")
-             (goto-char :end-in)
-             (newline-and-indent)))))
-     (save-excursion
-       (sp-forward-sexp)
-       (forward-line)
-       (when (sp-point-in-blank-line)
-         (delete-region (line-beginning-position) (1+ (line-end-position))))))
-    (barf-backward
-     (save-excursion
-       (-when-let (enc (sp-get-enclosing-sexp))
-         (sp-get enc
-           (goto-char :end-in)
-           (when (sp--looking-back-p "^[ \t]*")
-             (goto-char :beg-in)
-             (newline-and-indent)
-             (sp-backward-up-sexp)
-             (sp-backward-sexp)
-             (forward-line -1)
-             (when (sp-point-in-blank-line)
-               (delete-region (line-beginning-position) (1+ (line-end-position)))))))))
-    (beginning-of-sexp
-     (when (looking-at-p "[ \t]*$")
-       (sp-next-sexp)))
-    (end-of-sexp
-     (when (sp--looking-back-p "^[ \t]*" nil t)
-       (sp-previous-sexp)))))
-
-(sp-with-modes sp--html-modes
-  (sp-local-pair "<" ">")
-  (sp-local-tag  "<" "<_>" "</_>" :transform 'sp-match-sgml-tags :post-handlers '(sp-html-post-handler)))
-
-(--each sp--html-modes
-  (add-to-list 'sp-navigate-consider-sgml-tags it))
-
-(--each '(web-mode)
-  (add-to-list 'sp-sexp-suffix (list it 'regexp "")))
-
-(provide 'smartparens-html)
-
-;;; smartparens-html.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-html.elc b/elpa/smartparens-20181028.1005/smartparens-html.elc
deleted file mode 100644
index 3e3f469..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-html.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-javascript.el b/elpa/smartparens-20181028.1005/smartparens-javascript.el
deleted file mode 100644
index 5ec5746..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-javascript.el
+++ /dev/null
@@ -1,55 +0,0 @@
-;;; smartparens-javascript.el --- Additional configuration for JavaScript based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (c) 2017 Marinin Tim
-;; Author: Tim Marinin <mt@marinin.xyz>
-;; Maintainer: Tim Marinin <mt@marinin.xyz>
-;; Created: 2017-03-03
-;; Keywords: abbrev convenience editing javascript
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for JavaScript based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-javascript)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-;;
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-;; (|sys).path.append---the dot should not travel with the closing
-;; paren
-(--each '(js-mode javascript-mode js2-mode typescript-mode rjsx-mode)
-  (add-to-list 'sp-sexp-suffix (list it 'regexp "")))
-
-(provide 'smartparens-javascript)
-;;; smartparens-javasript.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-javascript.elc b/elpa/smartparens-20181028.1005/smartparens-javascript.elc
deleted file mode 100644
index 8799655..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-javascript.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-latex.el b/elpa/smartparens-20181028.1005/smartparens-latex.el
deleted file mode 100644
index cad2537..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-latex.el
+++ /dev/null
@@ -1,192 +0,0 @@
-;;; smartparens-latex.el --- Additional configuration for (La)TeX based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2016 Matus Goljer
-
-;; Author: Matus Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 14 Feb 2013
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for (La)TeX based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-latex)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-(defun sp-latex-insert-spaces-inside-pair (_id action _context)
-  "ID, ACTION, CONTEXT."
-  (when (eq action 'insert)
-    (insert "  ")
-    (backward-char 1))
-  (when (and (eq action 'wrap)
-             (save-excursion
-               (goto-char (sp-get sp-last-wrapped-region :beg-in))
-               (not (sp--looking-back-p "[[{(]"))))
-    (save-excursion
-      (goto-char (sp-get sp-last-wrapped-region :end-in))
-      (insert " ")
-      (goto-char (sp-get sp-last-wrapped-region :beg-in))
-      (insert " "))))
-
-(defun sp-latex-skip-match-apostrophe (ms _mb me)
-  "MS, MB, ME."
-  (when (equal ms "'")
-    (save-excursion
-      (goto-char me)
-      (looking-at-p "\\sw"))))
-
-(defun sp-latex-skip-double-quote (_id action _context)
-  "ID, ACTION, CONTEXT."
-  (when (eq action 'insert)
-    (when (looking-at-p "''''")
-      (delete-char -2)
-      (delete-char 2)
-      (forward-char 2))))
-
-(defun sp-latex-point-after-backslash (id action _context)
-  "Return t if point follows a backslash, nil otherwise.
-This predicate is only tested on \"insert\" action.
-ID, ACTION, CONTEXT."
-  (when (eq action 'insert)
-    (let ((trigger (sp-get-pair id :trigger)))
-      (looking-back (concat "\\\\" (regexp-quote (if trigger trigger id))) nil))))
-
-(add-to-list 'sp-navigate-skip-match
-             '((tex-mode plain-tex-mode latex-mode) . sp--backslash-skip-match))
-
-(sp-with-modes '(
-                 tex-mode
-                 plain-tex-mode
-                 latex-mode
-                 LaTeX-mode
-                 )
-  (sp-local-pair "`" "'"
-                 :actions '(:rem autoskip)
-                 :skip-match 'sp-latex-skip-match-apostrophe
-                 :unless '(sp-latex-point-after-backslash))
-  ;; math modes, yay.  The :actions are provided automatically if
-  ;; these pairs do not have global definitions.
-  (sp-local-pair "$" "$")
-  (sp-local-pair "\\[" "\\]"
-                 :unless '(sp-latex-point-after-backslash))
-
-  ;; disable useless pairs.
-  (sp-local-pair "\\\\(" nil :actions nil)
-  (sp-local-pair "'" nil :actions nil)
-  (sp-local-pair "\\\"" nil :actions nil)
-
-  ;; quote should insert ``'' instead of double quotes.  If we ever
-  ;; need to insert ", C-q is our friend.
-  (sp-local-pair "``" "''"
-                 :trigger "\""
-                 :unless '(sp-latex-point-after-backslash)
-                 :post-handlers '(sp-latex-skip-double-quote))
-
-  ;; add the prefix function sticking to {} pair
-  (sp-local-pair "{" nil :prefix "\\\\\\(\\sw\\|\\s_\\)*")
-
-  ;; do not add more space when slurping
-  (sp-local-pair "{" "}")
-  (sp-local-pair "(" ")")
-  (sp-local-pair "[" "]")
-
-  ;; pairs for big brackets.  Needs more research on what pairs are
-  ;; useful to add here.  Post suggestions if you know some.
-  (sp-local-pair "\\left(" "\\right)"
-                 :trigger "\\l("
-                 :when '(sp-in-math-p)
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\left[" "\\right]"
-                 :trigger "\\l["
-                 :when '(sp-in-math-p)
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\left\\{" "\\right\\}"
-                 :trigger "\\l{"
-                 :when '(sp-in-math-p)
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\left|" "\\right|"
-                 :trigger "\\l|"
-                 :when '(sp-in-math-p)
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\bigl(" "\\bigr)"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\biggl(" "\\biggr)"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\Bigl(" "\\Bigr)"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\Biggl(" "\\Biggr)"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\bigl[" "\\bigr]"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\biggl[" "\\biggr]"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\Bigl[" "\\Bigr]"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\Biggl[" "\\Biggr]"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\bigl\\{" "\\bigr\\}"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\biggl\\{" "\\biggr\\}"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\Bigl\\{" "\\Bigr\\}"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\Biggl\\{" "\\Biggr\\}"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\lfloor" "\\rfloor"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\lceil" "\\rceil"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair "\\langle" "\\rangle"
-                 :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair  "\\lVert" "\\rVert"
-          :when '(sp-in-math-p)
-          :trigger "\\lVert"
-          :post-handlers '(sp-latex-insert-spaces-inside-pair))
-  (sp-local-pair  "\\lvert" "\\rvert"
-          :when '(sp-in-math-p)
-          :trigger "\\lvert"
-          :post-handlers '(sp-latex-insert-spaces-inside-pair))
-
-  ;; some common wrappings
-  (sp-local-tag "\"" "``" "''" :actions '(wrap))
-  (sp-local-tag "\\b" "\\begin{_}" "\\end{_}")
-  (sp-local-tag "bi" "\\begin{itemize}" "\\end{itemize}")
-  (sp-local-tag "be" "\\begin{enumerate}" "\\end{enumerate}"))
-
-(provide 'smartparens-latex)
-
-;;; smartparens-latex.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-latex.elc b/elpa/smartparens-20181028.1005/smartparens-latex.elc
deleted file mode 100644
index a40c3de..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-latex.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-lua.el b/elpa/smartparens-20181028.1005/smartparens-lua.el
deleted file mode 100644
index 29621a6..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-lua.el
+++ /dev/null
@@ -1,90 +0,0 @@
-;;; smartparens-lua.el --- Additional configuration for Lua based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2014 Matus Goljer
-
-;; Author: Matus Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 3 August 2013
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Lua based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-lua)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-;;
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-(defun sp-lua-post-keyword-insert (id action _context)
-  "ID, ACTION, CONTEXT."
-  (cond
-   ((eq action 'insert)
-    (cond
-     ((member id '("while" "for"))
-      (insert " do")
-      (save-excursion (newline-and-indent))
-      (backward-char 3))
-     ((equal id "if")
-      (insert " then")
-      (save-excursion (newline-and-indent))
-      (backward-char 5))
-     ((equal id "function")
-      (save-excursion (newline-and-indent))
-      (insert " "))))))
-
-;; all the pairs are expanded only if followed by "SPC" event.  This
-;; will reduce false positives like 'dIFficult' to trigger.
-(sp-with-modes '(lua-mode)
-  (sp-local-pair "if" "end"
-                 :when '(("SPC"))
-                 :unless '(sp-in-comment-p sp-in-string-p)
-                 :post-handlers '(sp-lua-post-keyword-insert))
-  (sp-local-pair "function" "end"
-                 :when '(("SPC"))
-                 :unless '(sp-in-comment-p sp-in-string-p)
-                 :post-handlers '(sp-lua-post-keyword-insert))
-  (sp-local-pair "for" "end"
-                 :when '(("SPC"))
-                 :unless '(sp-in-comment-p sp-in-string-p)
-                 :post-handlers '(sp-lua-post-keyword-insert))
-  (sp-local-pair "while" "end"
-                 :when '(("SPC"))
-                 :unless '(sp-in-comment-p sp-in-string-p)
-                 :post-handlers '(sp-lua-post-keyword-insert))
-  )
-
-(provide 'smartparens-lua)
-
-;;; smartparens-lua.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-lua.elc b/elpa/smartparens-20181028.1005/smartparens-lua.elc
deleted file mode 100644
index 308ef9f..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-lua.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-markdown.el b/elpa/smartparens-20181028.1005/smartparens-markdown.el
deleted file mode 100644
index b097fb5..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-markdown.el
+++ /dev/null
@@ -1,88 +0,0 @@
-;;; smartparens-markdown.el --- Additional configuration for Markdown based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017 Matus Goljer
-
-;; Author: Matus Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 11th May 2017
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Markdown based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-markdown)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-;;
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-(require 'smartparens-text)
-(eval-when-compile
-  (defvar markdown-gfm-use-electric-backquote))
-
-
-(defun sp-gfm-electric-backquote-p (_id action _context)
-  "Do not insert ```...``` pair if that would be handled by `markdown-electric-backquote'."
-  (and (eq action 'insert)
-       markdown-gfm-use-electric-backquote
-       (sp--looking-back-p "^```")))
-
-(defun sp--gfm-point-after-word-p (id action _context)
-  "Return t if point is after a word, nil otherwise.
-This predicate is only tested on \"insert\" action."
-  (when (eq action 'insert)
-    (sp--looking-back-p (concat "\\(\\sw\\)" (regexp-quote id)))))
-
-(defun sp--gfm-skip-asterisk (_ms mb _me)
-  "Non-nil if we should ignore this asterisk as a delimiter."
-  (save-excursion
-    (goto-char mb)
-    (save-match-data (looking-at "^\\* "))))
-
-(sp-with-modes '(markdown-mode gfm-mode)
-  (sp-local-pair "*" "*"
-                 :unless '(sp--gfm-point-after-word-p sp-point-at-bol-p)
-                 :post-handlers '(("[d1]" "SPC"))
-                 :skip-match 'sp--gfm-skip-asterisk)
-  (sp-local-pair "**" "**")
-  (sp-local-pair "_" "_" :unless '(sp-point-after-word-p)))
-
-(sp-with-modes 'markdown-mode
-  (sp-local-pair "```" "```"))
-
-(sp-with-modes 'gfm-mode
-  (sp-local-pair "`" "`" :unless '(:add sp-gfm-electric-backquote-p))
-  (sp-local-pair "```" "```" :unless '(:add sp-gfm-electric-backquote-p)))
-
-(provide 'smartparens-markdown)
-;;; smartparens-markdown.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-markdown.elc b/elpa/smartparens-20181028.1005/smartparens-markdown.elc
deleted file mode 100644
index 5509ca4..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-markdown.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-ml.el b/elpa/smartparens-20181028.1005/smartparens-ml.el
deleted file mode 100644
index 55008c4..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-ml.el
+++ /dev/null
@@ -1,73 +0,0 @@
-;;; smartparens-ml.el --- Additional configuration for ML languages  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2016-2017 Ta Quang Trung
-;; Copyright (C) 2017 Matus Goljer
-
-;; Author: Ta Quang Trung <taquangtrungvn@gmail.com>
-;;         Matus Goljer <matus.goljer@gmail.com>
-;;         Louis Roché <louis@louisroche.net>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 14 July 2016
-;; Keywords: smartparens, ML, ocaml, reason
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for ML languages.
-;; To use it, simply add:
-;;
-;; (require 'smartparens-ml)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-;;
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-;;; Local pairs for ML-family languages
-
-(sp-with-modes '(fsharp-mode)
-  (sp-local-pair "(*" "*)" ))
-
-(sp-with-modes '(tuareg-mode)
-  ;; Disable ` because it is used in polymorphic variants
-  (sp-local-pair "`" nil :actions nil)
-  ;; Disable ' because it is used in value names and types
-  (sp-local-pair "'" nil :actions nil)
-  (sp-local-pair "(*" "*)" ))
-
-(sp-with-modes '(reason-mode)
-  ;; Disable ` because it is used in polymorphic variants
-  (sp-local-pair "`" nil :actions nil)
-  ;; Disable ' because it is used in value names and types
-  (sp-local-pair "'" nil :actions nil)
-  (sp-local-pair "/*" "*/" ))
-
-(provide 'smartparens-ml)
-;;; smartparens-ml.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-ml.elc b/elpa/smartparens-20181028.1005/smartparens-ml.elc
deleted file mode 100644
index b4c2176..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-ml.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-org.el b/elpa/smartparens-20181028.1005/smartparens-org.el
deleted file mode 100644
index 083c258..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-org.el
+++ /dev/null
@@ -1,66 +0,0 @@
-;;; smartparens-org.el --- Configuration for Org mode.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017 Matúš Goljer
-
-;; Author: Matúš Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matúš Goljer <matus.goljer@gmail.com>
-;; Version: 0.0.1
-;; Created: 15th January 2017
-;; Keywords: languages
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License
-;; as published by the Free Software Foundation; either version 3
-;; of the License, or (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Org based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-org)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-;;
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-(require 'smartparens-text)
-
-(defun sp--org-skip-asterisk (_ms mb me)
-  "Non-nil if the asterisk is part of the outline marker."
-  (save-excursion
-    (goto-char mb)
-    (beginning-of-line)
-    (let ((skip-distance (skip-chars-forward "*")))
-      (if (= skip-distance 1)
-          (not (memq (syntax-class (syntax-after (point))) '(2 3)))
-        (<= me (point))))))
-
-(sp-with-modes 'org-mode
-  (sp-local-pair "*" "*"
-                 :unless '(sp-point-after-word-p sp-point-at-bol-p)
-                 :skip-match 'sp--org-skip-asterisk)
-  (sp-local-pair "_" "_" :unless '(sp-point-after-word-p))
-  (sp-local-pair "/" "/" :unless '(sp-point-after-word-p) :post-handlers '(("[d1]" "SPC")))
-  (sp-local-pair "~" "~" :unless '(sp-point-after-word-p) :post-handlers '(("[d1]" "SPC")))
-  (sp-local-pair "=" "=" :unless '(sp-point-after-word-p) :post-handlers '(("[d1]" "SPC")))
-  (sp-local-pair "«" "»"))
-
-(provide 'smartparens-org)
-;;; smartparens-org.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-org.elc b/elpa/smartparens-20181028.1005/smartparens-org.elc
deleted file mode 100644
index 3a77598..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-org.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-pkg.el b/elpa/smartparens-20181028.1005/smartparens-pkg.el
deleted file mode 100644
index ee4a1e3..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-pkg.el
+++ /dev/null
@@ -1,6 +0,0 @@
-(define-package "smartparens" "20181028.1005" "Automatic insertion, wrapping and paredit-like navigation with user defined pairs."
-  '((dash "2.13.0")
-    (cl-lib "0.3")))
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/smartparens-20181028.1005/smartparens-python.el b/elpa/smartparens-20181028.1005/smartparens-python.el
deleted file mode 100644
index d6ac93f..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-python.el
+++ /dev/null
@@ -1,92 +0,0 @@
-;;; smartparens-python.el --- Additional configuration for Python based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015-2016 Matus Goljer
-
-;; Author: Matus Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 8 February 2015
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Python based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-python)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-;;
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-;; Python has no sexp suffices.  This fixes slurping
-;; (|sys).path.append---the dot should not travel with the closing
-;; paren
-(--each '(python-mode inferior-python-mode)
-  (add-to-list 'sp-sexp-suffix (list it 'regexp "")))
-
-(sp-with-modes 'python-mode
-  (sp-local-pair "'" "'" :unless '(sp-in-comment-p sp-in-string-quotes-p) :post-handlers '(:add sp-python-fix-tripple-quotes))
-  (sp-local-pair "\"" "\"" :post-handlers '(:add sp-python-fix-tripple-quotes))
-  (sp-local-pair "'''" "'''")
-  (sp-local-pair "\\'" "\\'")
-  (sp-local-pair "\"\"\"" "\"\"\""))
-
-(defun sp-python-fix-tripple-quotes (id action _context)
-  "Properly rewrap tripple quote pairs.
-
-When the user rewraps a tripple quote pair to the other pair
-type (i.e. ''' to \") we check if the old pair was a
-tripple-quote pair and if so add two pairs to beg/end of the
-newly formed pair (which was a single-quote \"...\" pair)."
-  (when (eq action 'rewrap-sexp)
-    (let ((old (plist-get sp-handler-context :parent)))
-      (when (or (and (equal old "'''") (equal id "\""))
-                (and (equal old "\"\"\"") (equal id "'")))
-        (save-excursion
-          (sp-get sp-last-wrapped-region
-            (goto-char :end-in)
-            (insert (make-string 2 (aref id 0)))
-            (goto-char :beg)
-            (insert (make-string 2 (aref id 0)))))))))
-
-(defadvice python-indent-dedent-line-backspace
-    (around sp-backward-delete-char-advice activate)
-  "Fix indend."
-  (if smartparens-strict-mode
-      (cl-letf (((symbol-function 'delete-backward-char)
-                 (lambda (arg &optional killp)
-                   (sp-backward-delete-char arg))))
-        ad-do-it)
-    ad-do-it))
-
-(provide 'smartparens-python)
-;;; smartparens-python.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-python.elc b/elpa/smartparens-20181028.1005/smartparens-python.elc
deleted file mode 100644
index 20a3a4f..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-python.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-racket.el b/elpa/smartparens-20181028.1005/smartparens-racket.el
deleted file mode 100644
index 08af676..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-racket.el
+++ /dev/null
@@ -1,56 +0,0 @@
-;;; smartparens-racket.el --- Additional configuration for Racket based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015 Vikraman Choudhury
-
-;; Author: Vikraman Choudhury <git@vikraman.org>
-;; Maintainer: Vikraman Choudhury <git@vikraman.org>
-;; Created: 26 Oct 2015
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Racket based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-racket)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-;;
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-(sp-with-modes '(racket-mode racket-repl-mode)
-  (sp-local-pair "`" nil :actions nil)
-  (sp-local-pair "'" nil :actions nil)
-  (sp-local-pair "#|" "|#"))
-
-(provide 'smartparens-racket)
-;;; smartparens-racket.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-racket.elc b/elpa/smartparens-20181028.1005/smartparens-racket.elc
deleted file mode 100644
index 6b36dfa..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-racket.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-ruby.el b/elpa/smartparens-20181028.1005/smartparens-ruby.el
deleted file mode 100644
index ed50484..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-ruby.el
+++ /dev/null
@@ -1,412 +0,0 @@
-;;; smartparens-ruby.el --- Additional configuration for Ruby based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2013-2014 Jean-Louis Giordano
-
-;; Author: Jean-Louis Giordano <jean-louis@jawaninja.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 16 June 2013
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Ruby based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-ruby)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-(declare-function enh-ruby-forward-sexp "ruby")
-(declare-function ruby-forward-sexp "ruby")
-(declare-function enh-ruby-backward-sexp "ruby")
-(declare-function ruby-backward-sexp "ruby")
-
-(defun sp-ruby-forward-sexp ()
-  "Wrapper for `ruby-forward-sexp' based on `enh-ruby-mode'."
-  (interactive)
-  (if (boundp 'enh-ruby-forward-sexp)
-      (enh-ruby-forward-sexp)
-    (ruby-forward-sexp)))
-
-(defun sp-ruby-backward-sexp ()
-  "Wrapper for `ruby-backward-sexp' based on `enh-ruby-mode'."
-  (interactive)
-  (if (boundp 'enh-ruby-backward-sexp)
-      (enh-ruby-backward-sexp)
-    (ruby-backward-sexp)))
-
-(defun sp-ruby-maybe-one-space ()
-  "Turn whitespace around point to just one space."
-  (while (looking-back " " nil) (backward-char))
-  (when (or (looking-at-p " ")
-            (looking-at-p "}")
-            (looking-back "{" nil)
-            (and (looking-at-p "\\sw")
-                 (looking-back ":" nil)))
-    (save-excursion (just-one-space)))
-  (when (and (not (looking-back "^.?" nil))
-             (save-excursion
-               (backward-char 2)
-               (or (looking-at-p ".[^:] [.([,;]")
-                   (looking-at-p ".. ::")
-                   (looking-at-p ".[.@$] ")
-                   (looking-at-p ":: "))))
-    (delete-char 1)))
-
-(defun sp-ruby-delete-indentation (&optional arg)
-  "Better way of joining ruby lines.
-
-ARG is how many indentation to delete."
-  (delete-indentation arg)
-  (sp-ruby-maybe-one-space))
-
-(defun sp-ruby-block-post-handler (id action context)
-  "Handler for ruby block-like insertions.
-ID, ACTION, CONTEXT."
-  (when (equal action 'insert)
-    (save-excursion
-      (newline)
-      (indent-according-to-mode))
-    (indent-according-to-mode))
-  (sp-ruby-post-handler id action context))
-
-(defun sp-ruby-def-post-handler (id action context)
-  "Handler for ruby def-like insertions.
-ID, ACTION, CONTEXT."
-  (when (equal action 'insert)
-    (save-excursion
-      (insert "x")
-      (newline)
-      (indent-according-to-mode))
-    (delete-char 1))
-  (sp-ruby-post-handler id action context))
-
-(defun sp-ruby-post-handler (_id action _context)
-  "Ruby post handler.
-ID, ACTION, CONTEXT."
-  (-let (((&plist :arg arg :enc enc) sp-handler-context))
-    (when (equal action 'barf-backward)
-      (sp-ruby-delete-indentation 1)
-      (indent-according-to-mode)
-      (save-excursion
-        (sp-backward-sexp) ; move to begining of current sexp
-        (sp-backward-sexp arg)
-        (sp-ruby-maybe-one-space)))
-
-    (when (equal action 'barf-forward)
-      (sp-get enc
-        (let ((beg-line (line-number-at-pos :beg-in))
-              (end-line (line-number-at-pos :end-in)))
-          (sp-forward-sexp arg)
-          (sp-ruby-maybe-one-space)
-          (when (not (= (line-number-at-pos) beg-line))
-            (sp-ruby-delete-indentation -1))
-          (indent-according-to-mode))))))
-
-(defun sp-ruby-pre-handler (_id action _context)
-  "Handler for ruby slurp and barf.
-ID, ACTION, CONTEXT."
-  (let ((enc (plist-get sp-handler-context :enc)))
-    (sp-get enc
-      (let ((beg-line (line-number-at-pos :beg-in))
-            (end-line (line-number-at-pos :end-in)))
-
-        (when (equal action 'slurp-backward)
-          (save-excursion
-            (sp-forward-sexp)
-            (when (looking-at-p ";") (forward-char))
-            (sp-ruby-maybe-one-space)
-            (when (not (= (line-number-at-pos) end-line))
-              (sp-ruby-delete-indentation -1)))
-          (when (looking-at-p "::")
-            (while (and (looking-back "\\sw" nil)
-                        (--when-let (sp-get-symbol t)
-                          (sp-get it (goto-char :beg-prf))))))
-          (while (thing-at-point-looking-at "\\.[[:blank:]\n]*")
-            (sp-backward-sexp))
-          (when (looking-back "[@$:&?!]" nil)
-            (backward-char)
-            (when (looking-back "[@&:]" nil)
-              (backward-char)))
-          (just-one-space)
-          (save-excursion
-            (if (= (line-number-at-pos) end-line)
-                (insert " ")
-              (newline))))
-
-        (when (equal action 'barf-backward)
-          ;; Barf whole method chains
-          (while (thing-at-point-looking-at "[(.:[][\n[:blank:]]*")
-            (sp-forward-sexp))
-          (if (looking-at-p " *$")
-              (newline)
-            (save-excursion (newline))))
-
-        (when (equal action 'slurp-forward)
-          (save-excursion
-            (sp-backward-sexp)
-            (when (looking-back "\." nil) (backward-char))
-            (sp-ruby-maybe-one-space)
-            (when (not (= (line-number-at-pos) beg-line))
-              (if (thing-at-point-looking-at "\\.[[:blank:]\n]*")
-                  (progn
-                    (forward-symbol -1)
-                    (sp-ruby-delete-indentation -1))
-                (sp-ruby-delete-indentation))))
-          (while (looking-at-p "::") (sp-forward-symbol))
-          (when (looking-at-p "[?!;]") (forward-char))
-          (if (= (line-number-at-pos) beg-line)
-              (insert " ")
-            (newline)))
-
-        (when (equal action 'barf-forward)
-          (when (looking-back "\\." nil) (backward-char))
-          (when (looking-at-p "::")
-            (while (and (looking-back "\\sw" nil)
-                        (--when-let (sp-get-symbol t)
-                          (sp-get it (goto-char :beg-prf))))))
-          (if (= (line-number-at-pos) end-line)
-              (insert " ")
-            (if (looking-back "^[[:blank:]]*" nil)
-                (save-excursion (newline))
-              (newline))))))))
-
-(defun sp-ruby-inline-p (id)
-  "Test if ID is inline."
-  (save-excursion
-    (when (looking-back id nil)
-      (backward-word))
-    (when (not (or (looking-back "^[[:blank:]]*" nil)
-                   (looking-back "= *" nil)))
-      (or (save-excursion
-            (forward-symbol -1)
-            (forward-symbol 1)
-            (looking-at-p (concat " *" id)))
-          (save-excursion
-            ;; This does not seem to make emacs snapshot happy
-            (ignore-errors
-              (sp-ruby-backward-sexp)
-              (sp-ruby-forward-sexp)
-              (looking-at-p (concat "[^[:blank:]]* *" id))))))))
-
-(defun sp-ruby-method-p (id)
-  "Test if ID is a method."
-  (save-excursion
-    (when (looking-back id nil)
-      (backward-word))
-    (and (looking-at-p id)
-         (or
-          ;; fix for def_foo
-          (looking-at-p (concat id "[_?!:]"))
-          ;; fix for foo_def
-          (looking-back "[_:@$.]" nil)
-          ;; fix for def for; end
-          (looking-back "def \\|class \\|module " nil)
-          ;; Check if multiline method call
-          ;; But beware of comments!
-          (and (looking-back "\\.[[:blank:]\n]*" nil)
-               (not (save-excursion
-                      (search-backward ".")
-                      (sp-point-in-comment))))))))
-
-(defun sp-ruby-skip-inline-match-p (ms _mb _me)
-  "If non-nil, skip inline match.
-MS, MB, ME."
-  (or (sp-ruby-method-p ms)
-      (sp-ruby-inline-p ms)))
-
-(defun sp-ruby-skip-method-p (ms _mb _me)
-  "If non-nil, skip method.
-MS, MB, ME."
-  (sp-ruby-method-p ms))
-
-(defun sp-ruby-in-string-or-word-p (id action context)
-  "Test if point is inside string or word.
-ID, ACTION, CONTEXT."
-  (or (sp-in-string-p id action context)
-      (and (looking-back id nil)
-           (not (looking-back (sp--strict-regexp-quote id) nil)))
-      (sp-ruby-method-p id)))
-
-(defun sp-ruby-in-string-word-or-inline-p (id action context)
-  "Test if point is inside string, word or inline.
-ID, ACTION, CONTEXT."
-  (or (sp-ruby-in-string-or-word-p id action context)
-      (and (looking-back id nil)
-           (sp-ruby-inline-p id))))
-
-(defun sp-ruby-pre-pipe-handler (id action _context)
-  "Ruby pipe handler.
-ID, ACTION, CONTEXT."
-  (when (equal action 'insert)
-    (save-excursion
-      (just-one-space))
-    (save-excursion
-      (search-backward id)
-      (just-one-space))))
-
-(defun sp-ruby-should-insert-pipe-close (id action _context)
-  "Test whether to insert the closing pipe for a lambda-binding pipe pair.
-ID, ACTION, CONTEXT"
-  (if (eq action 'insert)
-      (thing-at-point-looking-at
-       (rx-to-string `(and (or "do" "{") (* space) ,id)))
-    t))
-
-(defun sp--ruby-skip-match (ms me mb)
-  "Ruby skip match.
-MS, ME, MB."
-  (when (string= ms "end")
-    (or (sp-in-string-p ms me mb)
-        (sp-ruby-method-p "end"))))
-
-(add-to-list 'sp-navigate-skip-match
-             '((ruby-mode enh-ruby-mode motion-mode) . sp--ruby-skip-match))
-
-(dolist (mode '(ruby-mode motion-mode))
-  (add-to-list 'sp-sexp-suffix `(,mode syntax "")))
-
-(sp-with-modes '(ruby-mode enh-ruby-mode motion-mode)
-  (sp-local-pair "do" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-block-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "{" "}"
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-post-handler)
-                 :suffix "")
-
-  (sp-local-pair "begin" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-block-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "def" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "class" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "module" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "case" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-method-p
-                 :suffix "")
-
-  (sp-local-pair "for" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-or-word-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-inline-match-p)
-
-  (sp-local-pair "if" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-word-or-inline-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-inline-match-p
-                 :suffix "")
-
-  (sp-local-pair "unless" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-word-or-inline-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-inline-match-p
-                 :suffix "")
-
-  (sp-local-pair "while" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-word-or-inline-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-inline-match-p
-                 :suffix "")
-
-  (sp-local-pair "until" "end"
-                 :when '(("SPC" "RET" "<evil-ret>"))
-                 :unless '(sp-ruby-in-string-word-or-inline-p sp-in-comment-p)
-                 :actions '(insert navigate)
-                 :pre-handlers '(sp-ruby-pre-handler)
-                 :post-handlers '(sp-ruby-def-post-handler)
-                 :skip-match 'sp-ruby-skip-inline-match-p
-                 :suffix "")
-
-  (sp-local-pair "|" "|"
-                 :when '(sp-ruby-should-insert-pipe-close)
-                 :pre-handlers '(sp-ruby-pre-pipe-handler)
-                 :suffix ""))
-
-(provide 'smartparens-ruby)
-
-;;; smartparens-ruby.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-ruby.elc b/elpa/smartparens-20181028.1005/smartparens-ruby.elc
deleted file mode 100644
index 1e1952d..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-ruby.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-rust.el b/elpa/smartparens-20181028.1005/smartparens-rust.el
deleted file mode 100644
index 17d29b6..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-rust.el
+++ /dev/null
@@ -1,140 +0,0 @@
-;;; smartparens-rust.el --- Additional configuration for Rust based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015 Wilfred Hughes
-
-;; Created: 3 November 2015
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Rust.  To use
-;; it, simply add:
-;;
-;; (require 'smartparens-config)
-;;
-;; alternatively, you can explicitly load these preferences:
-;;
-;; (require 'smartparens-rust)
-;;
-;; in your configuration.
-
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-(require 'smartparens)
-
-(declare-function rust-mode "rust-mode")
-
-(defun sp-in-rust-lifetime-context (&rest _args)
-  "Return t if point is in a Rust context where ' represents a lifetime.
-If we return nil, ' should be used for character literals.
-ARGS."
-  (or
-   (condition-case nil
-       ;; If point is just after a &', it's probably a &'foo.
-       (save-excursion
-         (backward-char 2)
-         (looking-at "&"))
-     ;; If we're at the beginning of the buffer, just carry on.
-     (beginning-of-buffer))
-   ;; If point is inside < > it's probably a parameterised function.
-   (let ((paren-pos (nth 1 (syntax-ppss))))
-     (and paren-pos
-          (save-excursion
-            (goto-char paren-pos)
-            (looking-at "<"))))))
-
-(defun sp-rust-skip-match-angle-bracket (_ms _mb me)
-  "Non-nil if we should ignore the bracket as valid delimiter."
-  (save-excursion
-    (goto-char me)
-    (let ((on-fn-return-type
-           (sp--looking-back-p (rx "->") nil))
-          (on-match-branch
-           (sp--looking-back-p (rx "=>") nil))
-          (on-comparison
-           (sp--looking-back-p (rx (or
-                                    (seq space "<")
-                                    (seq space ">")
-                                    (seq space "<<")
-                                    (seq space ">>")))
-                               nil)))
-      (or on-comparison on-fn-return-type on-match-branch))))
-
-(defun sp-rust-filter-angle-brackets (_id action context)
-  "Non-nil if we should allow ID's ACTION in CONTEXT for angle brackets."
-  ;; See the docstring for `sp-pair' for the possible values of ID,
-  ;; ACTION and CONTEXT.
-  (cond
-   ;; Inside strings, don't do anything with < or >.
-   ((eq context 'string)
-    nil)
-   ;; Don't do any smart pairing inside comments either.
-   ((eq context 'comment)
-    nil)
-   ;; Otherwise, we're in code.
-   ((eq context 'code)
-    (let ((on-fn-return-type
-           (looking-back (rx "->") nil))
-          (on-match-branch
-           (looking-back (rx "=>") nil))
-          (on-comparison
-           (looking-back (rx (or
-                              (seq space "<")
-                              (seq space ">")
-                              (seq space "<<")
-                              (seq space ">>")))
-                         nil)))
-      (cond
-       ;; Only insert a matching > if we're not looking at a
-       ;; comparison.
-       ((eq action 'insert)
-        (and (not on-comparison) (not on-fn-return-type) (not on-match-branch)))
-       ;; Always allow wrapping in a pair if the region is active.
-       ((eq action 'wrap)
-        (not on-match-branch))
-       ;; When pressing >, autoskip if we're not looking at a
-       ;; comparison.
-       ((eq action 'autoskip)
-        (and (not on-comparison) (not on-fn-return-type) (not on-match-branch)))
-       ;; Allow navigation, highlighting and strictness checks if it's
-       ;; not a comparison.
-       ((eq action 'navigate)
-        (and (not on-comparison) (not on-fn-return-type) (not on-match-branch))))))))
-
-(sp-with-modes '(rust-mode)
-  (sp-local-pair "'" "'"
-                 :unless '(sp-in-comment-p sp-in-string-quotes-p sp-in-rust-lifetime-context)
-                 :post-handlers'(:rem sp-escape-quotes-after-insert))
-  (sp-local-pair "<" ">"
-                 :when '(sp-rust-filter-angle-brackets)
-                 :skip-match 'sp-rust-skip-match-angle-bracket))
-
-;; Rust has no sexp suffices.  This fixes slurping
-;; (|foo).bar -> (foo.bar)
-(add-to-list 'sp-sexp-suffix (list #'rust-mode 'regexp ""))
-
-(provide 'smartparens-rust)
-
-;;; smartparens-rust.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-rust.elc b/elpa/smartparens-20181028.1005/smartparens-rust.elc
deleted file mode 100644
index c47185a..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-rust.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-scala.el b/elpa/smartparens-20181028.1005/smartparens-scala.el
deleted file mode 100644
index 7e79016..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-scala.el
+++ /dev/null
@@ -1,80 +0,0 @@
-;;; smartparens-scala.el --- Additional configuration for Scala based modes.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2015 Greg Nwosu
-
-;; Author: Greg Nwosu <greg.nwosu@gmail.com>
-;; Maintainer: Greg Nwosu <greg.nwosu@gmail.com>
-;; Created: 8 July 2015
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for Scala based
-;; modes.  To use it, simply add:
-;;
-;; (require 'smartparens-scala)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-;;
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-;;
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-;; Scala has no sexp suffices.  This fixes slurping
-;; import scala.mutable{|} ListBuffer, Set ---the comma should not travel with the closing
-;; paren
-(--each '(scala-mode inferior-scala-mode)
-  (add-to-list 'sp-sexp-suffix (list it 'regexp "")))
-
-(defun sp-scala-wrap-with-indented-newlines (_1 action _2)
-  "Post handler for the wrap ACTION, putting the region on indented newlines."
-  (when (eq action 'wrap)
-    (sp-get sp-last-wrapped-region
-      (let ((beg :beg-in)
-            (end :end-in))
-        (save-excursion
-          (goto-char end)
-          (newline-and-indent))
-        (save-excursion
-          (goto-char beg)
-          (newline))
-        (indent-region beg end)))))
-
-(sp-local-pair 'scala-mode "(" nil
-               :post-handlers '(("||\n[i]" "RET")
-                                ("| " "SPC")))
-
-(sp-local-pair 'scala-mode "{" nil
-               :post-handlers '(("||\n[i]" "RET")
-                                ("| " "SPC")
-                                sp-scala-wrap-with-indented-newlines))
-
-(provide 'smartparens-scala)
-;;; smartparens-scala.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-scala.elc b/elpa/smartparens-20181028.1005/smartparens-scala.elc
deleted file mode 100644
index 47865b3..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-scala.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens-text.el b/elpa/smartparens-20181028.1005/smartparens-text.el
deleted file mode 100644
index 91c07be..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-text.el
+++ /dev/null
@@ -1,65 +0,0 @@
-;;; smartparens-latex.el --- Additional configuration for text-mode.  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2017 Matus Goljer
-
-;; Author: Matus Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 16 July 2017
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; This file provides some additional configuration for `text-mode'.
-;; To use it, simply add:
-;;
-;; (require 'smartparens-text)
-;;
-;; into your configuration.  You can use this in conjunction with the
-;; default config or your own configuration.
-
-;; If you have good ideas about what should be added please file an
-;; issue on the github tracker.
-
-;; For more info, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;;; Code:
-
-(require 'smartparens)
-
-(defun sp-text-mode-emoticon-p (_id action _context)
-  (when (memq action '(insert navigate))
-    (sp--looking-back-p ":-?[()]" 3)))
-
-(defun sp-text-mode-skip-emoticon (ms mb _me)
-  (when (member ms '("(" ")"))
-    (save-excursion
-      (goto-char mb)
-      (sp--looking-back-p ":-?" 2))))
-
-(sp-local-pair 'text-mode "(" nil
-               :unless '(:add sp-text-mode-emoticon-p)
-               :skip-match 'sp-text-mode-skip-emoticon)
-
-(provide 'smartparens-text)
-;;; smartparens-text.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens-text.elc b/elpa/smartparens-20181028.1005/smartparens-text.elc
deleted file mode 100644
index 656cd48..0000000
--- a/elpa/smartparens-20181028.1005/smartparens-text.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/smartparens-20181028.1005/smartparens.el b/elpa/smartparens-20181028.1005/smartparens.el
deleted file mode 100644
index c59f31c..0000000
--- a/elpa/smartparens-20181028.1005/smartparens.el
+++ /dev/null
@@ -1,9593 +0,0 @@
-;;; smartparens.el --- Automatic insertion, wrapping and paredit-like navigation with user defined pairs. -*- lexical-binding: t -*-
-
-;; Copyright (C) 2012-2016 Matus Goljer
-
-;; Author: Matus Goljer <matus.goljer@gmail.com>
-;; Maintainer: Matus Goljer <matus.goljer@gmail.com>
-;; Created: 17 Nov 2012
-;; Keywords: abbrev convenience editing
-;; URL: https://github.com/Fuco1/smartparens
-
-;; This file is not part of GNU Emacs.
-
-;;; License:
-
-;; This file is part of Smartparens.
-
-;; Smartparens is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; Smartparens is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Smartparens.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Smartparens is minor mode for Emacs that deals with parens pairs
-;; and tries to be smart about it.  It started as a unification effort
-;; to combine functionality of several existing packages in a single,
-;; compatible and extensible way to deal with parentheses, delimiters,
-;; tags and the like.  Some of these packages include autopair,
-;; textmate, wrap-region, electric-pair-mode, paredit and others.  With
-;; the basic features found in other packages it also brings many
-;; improvements as well as completely new features.
-
-;; For a basic overview, see github readme at
-;; https://github.com/Fuco1/smartparens
-
-;; For the complete documentation visit the documentation wiki located
-;; at https://github.com/Fuco1/smartparens/wiki
-
-;; If you like this project, you can donate here:
-;; https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CEYP5YVHDRX8C
-
-;;; Code:
-
-(eval-when-compile
-  (require 'subr-x) ; for `string-trim'
-  (require 'cl-lib))
-
-(require 'dash)
-(require 'thingatpt)
-(require 'help-mode) ;; for help-xref-following #85
-
-(declare-function cua-replace-region "cua-base") ; FIXME: remove this when we drop support for old emacs
-(declare-function cua-delete-region "cua-base")
-(declare-function cua--fallback "cua-base")
-(declare-function package-version-join "package")
-(declare-function package-desc-version "package")
-
-(declare-function subword-kill "subword")
-(declare-function subword-forward "subword")
-(declare-function subword-backward "subword")
-
-(declare-function hungry-delete-backward "hungry-delete")
-(declare-function hungry-delete-forward "hungry-delete")
-
-(declare-function evil-get-register "evil-common")
-(declare-function evil-set-register "evil-common")
-(eval-when-compile
-  (defvar evil-this-register)
-  (defvar package-alist)
-  (defvar sp-autoskip-closing-pair)
-  (defvar sp-show-enclosing-pair-commands)
-  (defvar show-smartparens-mode))
-
-
-;;; backport for older emacsen
-
-;; introduced in 24.3
-(unless (fboundp 'defvar-local)
-  (defmacro defvar-local (var val &optional docstring)
-    "Define VAR as a buffer-local variable with default value VAL.
-Like `defvar' but additionally marks the variable as being automatically
-buffer-local wherever it is set."
-    (declare (debug defvar) (doc-string 3))
-    ;; Can't use backquote here, it's too early in the bootstrap.
-    (list 'progn (list 'defvar var val docstring)
-          (list 'make-variable-buffer-local (list 'quote var)))))
-
-;;;###autoload
-(defun sp-cheat-sheet (&optional arg)
-  "Generate a cheat sheet of all the smartparens interactive functions.
-
-Without a prefix argument, print only the short documentation and examples.
-
-With non-nil prefix argument ARG, show the full documentation for each function.
-
-You can follow the links to the function or variable help page.
-To get back to the full list, use \\[help-go-back].
-
-You can use `beginning-of-defun' and `end-of-defun' to jump to
-the previous/next entry.
-
-Examples are fontified using the `font-lock-string-face' for
-better orientation."
-  (interactive "P")
-  (setq arg (not arg))
-  (let ((do-not-display '(
-                          smartparens-mode
-                          smartparens-global-mode
-                          turn-on-smartparens-mode
-                          turn-off-smartparens-mode
-                          sp-wrap-cancel
-                          sp-remove-active-pair-overlay
-                          sp-splice-sexp-killing-around ;; is aliased to `sp-raise-sexp'
-                          show-smartparens-mode
-                          show-smartparens-global-mode
-                          turn-on-show-smartparens-mode
-                          turn-off-show-smartparens-mode
-                          ))
-        (do-not-display-with-arg '(
-                                   sp-use-paredit-bindings
-                                   sp-use-smartparens-bindings
-                                   ))
-        (commands (cl-loop for i in (cdr (assoc-string (file-truename (locate-library "smartparens")) load-history))
-                           if (and (consp i) (eq (car i) 'defun) (commandp (cdr i)))
-                           collect (cdr i))))
-    (with-current-buffer (get-buffer-create "*Smartparens cheat sheet*")
-      (let ((standard-output (current-buffer))
-            (help-xref-following t))
-        (read-only-mode -1)
-        (erase-buffer)
-        (help-mode)
-        (smartparens-mode 1)
-        (help-setup-xref (list #'sp-cheat-sheet)
-                         (called-interactively-p 'interactive))
-        (read-only-mode -1)
-        (--each (--remove (or (memq it do-not-display)
-                              (and arg (memq it do-not-display-with-arg)))
-                          commands)
-          (unless (equal (symbol-name it) "advice-compilation")
-            (let ((start (point)) kill-from)
-              (insert (propertize (symbol-name it) 'face 'font-lock-function-name-face))
-              (insert " is ")
-              (describe-function-1 it)
-              (save-excursion
-                (when arg
-                  (goto-char start)
-                  (forward-paragraph 1)
-                  (forward-line 1)
-                  (if (looking-at "^It is bound")
-                      (forward-paragraph 2)
-                    (forward-paragraph 1))
-                  (setq kill-from (point))
-                  (when (re-search-forward "^Examples:" nil t)
-                    (delete-region kill-from
-                                   (save-excursion
-                                     (forward-line 1)
-                                     (point))))))
-              (insert (propertize (concat
-                                   "\n\n"
-                                   (make-string 72 ?―)
-                                   "\n\n") 'face 'font-lock-function-name-face)))))
-        (goto-char (point-min))
-        (while (re-search-forward "\\(->\\|​\\)" nil t)
-          (let ((thing (bounds-of-thing-at-point 'line)))
-            (put-text-property (car thing) (cdr thing) 'face 'font-lock-string-face)))
-        (goto-char (point-min))
-        (while (re-search-forward "|" nil t)
-          (put-text-property (1- (point)) (point) 'face 'font-lock-warning-face))
-        (goto-char (point-min))
-        (while (re-search-forward "^It is bound to \\(.*?\\)\\." nil t)
-          (put-text-property (match-beginning 1) (match-end 1) 'face 'font-lock-keyword-face))
-        (goto-char (point-min))
-        (while (re-search-forward ";;.*?$" nil t)
-          (put-text-property (match-beginning 0) (match-end 0) 'face 'font-lock-comment-face))
-        (help-make-xrefs)
-        (goto-char (point-min))))
-    (pop-to-buffer "*Smartparens cheat sheet*")))
-
-(defun sp-describe-system (starterkit)
-  "Describe user's system.
-
-The output of this function can be used in bug reports."
-  (interactive
-   (list (completing-read "Starterkit/Distribution used: "
-                          (list
-                           "Spacemacs"
-                           "Evil"
-                           "Vanilla"
-                           ))))
-  (let ((text (format "- `smartparens` version: %s
-- Active `major-mode`: `%s`
-- Smartparens strict mode: %s
-- Emacs version (`M-x emacs-version`): %s
-- Starterkit/Distribution: %s
-- OS: %s"
-                      (--if-let (cadr (assoc 'smartparens package-alist))
-                          (package-version-join (package-desc-version it))
-                        "<Please specify manually>")
-                      (symbol-name major-mode)
-                      (bound-and-true-p smartparens-strict-mode)
-                      (replace-regexp-in-string "\n" "" (emacs-version))
-                      starterkit
-                      (symbol-name system-type))))
-    (pop-to-buffer
-     (with-current-buffer (get-buffer-create "*sp-describe-system*")
-       (erase-buffer)
-       (insert "The content of the buffer underneath the line was
-copied to your clipboard.  You can also edit it in this buffer
-and then copy the results manually.
-------------------------------------------------
-")
-       (insert text)
-       (current-buffer)))
-    (kill-new text)))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Variables
-
-(defvar-local sp-forward-bound-fn nil
-  "Function to restrict the forward search")
-
-(defvar-local sp-backward-bound-fn nil
-  "Function to restrict the backward search")
-
-(defun sp--get-forward-bound ()
-  "Get the bound to limit the forward search for looking for pairs.
-
-If it returns nil, the original bound passed to the search
-function will be considered."
-  (and sp-forward-bound-fn (funcall sp-forward-bound-fn)))
-
-(defun sp--get-backward-bound ()
-  "Get the bound to limit the backward search for looking for pairs.
-
-If it returns nil, the original bound passed to the search
-function will be considered."
-  (and sp-backward-bound-fn (funcall sp-backward-bound-fn)))
-
-
-;;;###autoload
-(defvar smartparens-mode-map (make-sparse-keymap)
-  "Keymap used for `smartparens-mode'.")
-(defvaralias 'sp-keymap 'smartparens-mode-map)
-(make-obsolete-variable 'sp-keymap 'smartparens-mode-map "2015-01-01")
-
-(defvar sp-paredit-bindings '(
-                              ("C-M-f" . sp-forward-sexp) ;; navigation
-                              ("C-M-b" . sp-backward-sexp)
-                              ("C-M-u" . sp-backward-up-sexp)
-                              ("C-M-d" . sp-down-sexp)
-                              ("C-M-p" . sp-backward-down-sexp)
-                              ("C-M-n" . sp-up-sexp)
-                              ("M-s" . sp-splice-sexp) ;; depth-changing commands
-                              ("M-<up>" . sp-splice-sexp-killing-backward)
-                              ("M-<down>" . sp-splice-sexp-killing-forward)
-                              ("M-r" . sp-splice-sexp-killing-around)
-                              ("M-(" . sp-wrap-round)
-                              ("C-)" . sp-forward-slurp-sexp) ;; barf/slurp
-                              ("C-<right>" . sp-forward-slurp-sexp)
-                              ("C-}" . sp-forward-barf-sexp)
-                              ("C-<left>" . sp-forward-barf-sexp)
-                              ("C-(" . sp-backward-slurp-sexp)
-                              ("C-M-<left>" . sp-backward-slurp-sexp)
-                              ("C-{" . sp-backward-barf-sexp)
-                              ("C-M-<right>" . sp-backward-barf-sexp)
-                              ("M-S" . sp-split-sexp) ;; misc
-                              ("M-j" . sp-join-sexp)
-                              ("M-?" . sp-convolute-sexp)
-                              )
-  "Paredit inspired bindings.
-
-Alist containing the default paredit bindings to corresponding
-smartparens functions.")
-
-(defun sp--populate-keymap (bindings)
-  "Populates the `smartparens-mode-map' from the BINDINGS alist."
-  (--each bindings
-    (define-key smartparens-mode-map (read-kbd-macro (car it)) (cdr it))))
-
-;;;###autoload
-(defun sp-use-paredit-bindings ()
-  "Initiate `smartparens-mode-map' with `sp-paredit-bindings'."
-  (interactive)
-  (sp--populate-keymap sp-paredit-bindings))
-
-(defvar sp-smartparens-bindings '(
-                                  ("C-M-f" . sp-forward-sexp)
-                                  ("C-M-b" . sp-backward-sexp)
-                                  ("C-M-d" . sp-down-sexp)
-                                  ("C-M-a" . sp-backward-down-sexp)
-                                  ("C-S-d" . sp-beginning-of-sexp)
-                                  ("C-S-a" . sp-end-of-sexp)
-                                  ("C-M-e" . sp-up-sexp)
-                                  ("C-M-u" . sp-backward-up-sexp)
-                                  ("C-M-n" . sp-next-sexp)
-                                  ("C-M-p" . sp-previous-sexp)
-                                  ("C-M-k" . sp-kill-sexp)
-                                  ("C-M-w" . sp-copy-sexp)
-                                  ("M-<delete>" . sp-unwrap-sexp)
-                                  ("M-<backspace>" . sp-backward-unwrap-sexp)
-                                  ("C-<right>" . sp-forward-slurp-sexp)
-                                  ("C-<left>" . sp-forward-barf-sexp)
-                                  ("C-M-<left>" . sp-backward-slurp-sexp)
-                                  ("C-M-<right>" . sp-backward-barf-sexp)
-                                  ("M-D" . sp-splice-sexp)
-                                  ("C-M-<delete>" . sp-splice-sexp-killing-forward)
-                                  ("C-M-<backspace>" . sp-splice-sexp-killing-backward)
-                                  ("C-S-<backspace>" . sp-splice-sexp-killing-around)
-                                  ("C-]" . sp-select-next-thing-exchange)
-                                  ("C-M-]" . sp-select-next-thing)
-                                  ("C-M-SPC" . sp-mark-sexp)
-                                  ("M-F" . sp-forward-symbol)
-                                  ("M-B" . sp-backward-symbol)
-                                  )
-  "Alist containing the default smartparens bindings.")
-
-;;;###autoload
-(defun sp-use-smartparens-bindings ()
-  "Initiate `smartparens-mode-map' with `sp-smartparens-bindings'."
-  (interactive)
-  (sp--populate-keymap sp-smartparens-bindings))
-
-(defun sp--set-base-key-bindings (&optional symbol value)
-  "Set up the default keymap based on `sp-base-key-bindings'.
-
-SYMBOL is the symbol being set, that is `sp-base-key-bindings'.
-
-VALUE is the saved value (as a symbol), can be one of:
-- sp
-- paredit
-
-This function is also used as a setter for this customize value."
-  (when symbol (set-default symbol value))
-  (cond
-   ((eq value 'sp)
-    (sp-use-smartparens-bindings))
-   ((eq value 'paredit)
-    (sp-use-paredit-bindings))))
-
-(defun sp--update-override-key-bindings (&optional symbol value)
-  "Override the key bindings with values from `sp-override-key-bindings'.
-
-SYMBOL is `sp-override-key-bindings', VALUE is the value being set.
-
-This function is also used as a setter for this customize value."
-  (when symbol (set-default symbol value))
-  ;; this also needs to reload the base set, if any is present.
-  (sp--set-base-key-bindings)
-  (sp--populate-keymap value))
-
-(defcustom sp-base-key-bindings nil
-  "A default set of key bindings for commands provided by smartparens.
-
-Paredit binding adds the bindings in `sp-paredit-bindings' to the
-corresponding smartparens commands.  It does not add bindings to
-any other commands, or commands that do not have a paredit
-counterpart.
-
-Smartparens binding adds the bindings in
-`sp-smartparens-bindings' to most common smartparens commands.
-These are somewhat inspired by paredit, but in many cases differ.
-
-Note that neither \"paredit\" nor \"smartparens\" bindings add a
-binding for all the provided commands."
-  :type '(radio
-          (const :tag "Don't use any default set of bindings" nil)
-          (const :tag "Use smartparens set of bindings" sp)
-          (const :tag "Use paredit set of bindings" paredit))
-  :set 'sp--set-base-key-bindings
-  :group 'smartparens)
-
-(defcustom sp-override-key-bindings nil
-  "An alist of bindings and commands that should override the base key set.
-
-If you wish to override a binding from the base set, set the
-value for the binding to the `kbd' recognizable string constant
-and command to the command symbol you wish to bind there.
-
-If you wish to disable a binding from the base set, set the value
-for the command to nil.
-
-Examples:
- (\"C-M-f\" . sp-forward-sexp)
- (\"C-<right>\" . nil)
-
-See `sp-base-key-bindings'."
-  :type '(alist
-          :key-type string
-          :value-type symbol)
-  :set 'sp--update-override-key-bindings
-  :group 'smartparens)
-
-(defvar sp-escape-char nil
-  "Character used to escape quotes inside strings.")
-(make-variable-buffer-local 'sp-escape-char)
-
-(defvar sp-comment-char nil
-  "Character used to start comments.")
-(make-variable-buffer-local 'sp-comment-char)
-
-(defvar sp-pair-list nil
-  "List of pairs for autoinsertion or wrapping.
-
-Maximum length of opening or closing pair is
-`sp-max-pair-length' characters.")
-(make-variable-buffer-local 'sp-pair-list)
-
-(defvar sp-local-pairs nil
-  "List of pair definitions used for current buffer.")
-(make-variable-buffer-local 'sp-local-pairs)
-
-(defvar sp-last-operation nil
-  "Symbol holding the last successful operation.")
-(make-variable-buffer-local 'sp-last-operation)
-
-(cl-defstruct sp-state
-  "Smartparens state for the current buffer."
-  ;; A "counter" to track delayed hook.  When a pair is inserted, a
-  ;; cons of the form (:next . pair) is stored.  On the next
-  ;; (immediately after insertion) invocation of post-command-hook, it
-  ;; is changed to (:this . pair).  When the `car' is :this, the
-  ;; post-command-hook checks the delayed hooks for `pair' and
-  ;; executes them, then reset the "counter".
-  delayed-hook
-  ;; TODO
-  delayed-insertion
-  ;; The last point checked by sp--syntax-ppss and its result, used for
-  ;; memoization
-  last-syntax-ppss-point ;; a list (point point-min point-max)
-  last-syntax-ppss-result
-  ;; Value of `sp-pair-list' for this buffer.  Note that this might
-  ;; differ from `sp-pair-list' which is often changed by dynamic
-  ;; binding
-  pair-list
-  ;; Value of `sp-local-pairs' for this buffer.  Note that this might
-  ;; differ from `sp-local-pairs' which is often changed by dynamic
-  ;; binding
-  local-pairs
-  )
-
-(defvar sp-state (make-sp-state)
-  "Smartparens state for the current buffer.")
-(make-variable-buffer-local 'sp-state)
-
-;; TODO: get rid of this
-(defvar sp-previous-point -1
-  "Location of point before last command.
-
-This is only updated when some pair-overlay is active.  Do not
-rely on the value of this variable anywhere else!")
-(make-variable-buffer-local 'sp-previous-point)
-
-;; TODO: get rid of this
-(defvar sp-wrap-point nil
-  "Save the value of point before attemt to wrap a region.
-
-Used for restoring the original state if the wrapping is
-cancelled.")
-(make-variable-buffer-local 'sp-wrap-point)
-
-;; TODO: get rid of this
-(defvar sp-wrap-mark nil
-  "Save the value of mark before attemt to wrap a region.
-
-Used for restoring the original state if the wrapping is
-cancelled.")
-(make-variable-buffer-local 'sp-wrap-mark)
-
-(defvar sp-last-inserted-characters ""
-  "Characters typed during the wrapping selection.
-
-If wrapping is cancelled, these characters are re-inserted to the
-location of point before the wrapping.")
-(make-variable-buffer-local 'sp-last-inserted-characters)
-
-(defvar sp-last-inserted-pair nil
-  "Last inserted pair.")
-(make-variable-buffer-local 'sp-last-inserted-pair)
-
-(defvar sp-delayed-pair nil
-  "The pair whose insertion is being delayed.
-
-The insertion of this pair is delayed to be carried out in
-`sp--post-command-hook-handler'.  The format is (opening delim
-.  beg of the opening delim)")
-(make-variable-buffer-local 'sp-delayed-pair)
-
-(defvar sp-last-wrapped-region nil
-  "Information about the last wrapped region.
-The format is the same as returned by `sp-get-sexp'.")
-(make-variable-buffer-local 'sp-last-wrapped-region)
-
-(defvar sp-point-inside-string nil
-  "Non-nil if point is inside a string.
-
-Used to remember the state from before `self-insert-command' is
-run.")
-
-(defvar sp-buffer-modified-p nil
-  "Non-nil if buffer was modified before `pre-command-hook'.")
-
-(defvar sp-pre-command-point nil
-  "Position of `point' before `this-command' gets executed.")
-
-(defconst sp-max-pair-length 10
-  "Maximum length of an opening or closing delimiter.
-
-Only the pairs defined by `sp-pair' are considered.  Tag pairs
-can be of any length.")
-
-(defconst sp-max-prefix-length 100
-  "Maximum length of a pair prefix.
-
-Because prefixes for pairs can be specified using regular
-expressions, they can potentially be of arbitrary length.  This
-settings solves the problem where the parser would decide to
-backtrack the entire buffer which would lock up Emacs.")
-
-(defvar sp-pairs
-  '((t
-     .
-     ((:open "\\\\(" :close "\\\\)" :actions (insert wrap autoskip navigate))
-      (:open "\\{"   :close "\\}"   :actions (insert wrap autoskip navigate))
-      (:open "\\("   :close "\\)"   :actions (insert wrap autoskip navigate))
-      (:open "\\\""  :close "\\\""  :actions (insert wrap autoskip navigate))
-      (:open "\""    :close "\""
-       :actions (insert wrap autoskip navigate escape)
-       :unless (sp-in-string-quotes-p)
-       :post-handlers (sp-escape-wrapped-region sp-escape-quotes-after-insert))
-      (:open "'"     :close "'"
-       :actions (insert wrap autoskip navigate escape)
-       :unless (sp-in-string-quotes-p sp-point-after-word-p)
-       :post-handlers (sp-escape-wrapped-region sp-escape-quotes-after-insert))
-      (:open "("     :close ")"     :actions (insert wrap autoskip navigate))
-      (:open "["     :close "]"     :actions (insert wrap autoskip navigate))
-      (:open "{"     :close "}"     :actions (insert wrap autoskip navigate))
-      (:open "`"     :close "`"     :actions (insert wrap autoskip navigate)))))
-  "List of pair definitions.
-
-Maximum length of opening or closing pair is
-`sp-max-pair-length' characters.")
-
-(defvar sp-tags nil
-  "List of tag definitions.  See `sp-local-tag' for more information.")
-
-(defvar sp-prefix-tag-object nil
-  "If non-nil, only consider tags while searching for next thing.")
-
-(defvar sp-prefix-pair-object nil
-  "If non-nil, only consider pairs while searching for next thing.
-
-Pairs are defined as expressions delimited by pairs from
-`sp-pair-list'.")
-
-(defvar sp-prefix-symbol-object nil
-  "If non-nil, only consider symbols while searching for next thing.
-
-Symbol is defined as a chunk of text recognized by
-`sp-forward-symbol'.")
-
-(define-obsolete-variable-alias 'sp--lisp-modes 'sp-lisp-modes "2015-11-08")
-
-(defcustom sp-lisp-modes '(
-                           cider-repl-mode
-                           clojure-mode
-                           clojurec-mode
-                           clojurescript-mode
-                           clojurex-mode
-                           common-lisp-mode
-                           emacs-lisp-mode
-                           eshell-mode
-                           geiser-repl-mode
-                           gerbil-mode
-                           inf-clojure-mode
-                           inferior-emacs-lisp-mode
-                           inferior-lisp-mode
-                           inferior-scheme-mode
-                           lisp-interaction-mode
-                           lisp-mode
-                           monroe-mode
-                           racket-mode
-                           racket-repl-mode
-                           scheme-interaction-mode
-                           scheme-mode
-                           slime-repl-mode
-                           stumpwm-mode
-                           )
-  "List of Lisp-related modes."
-  :type '(repeat symbol)
-  :group 'smartparens)
-
-(defcustom sp-clojure-modes '(
-                              cider-repl-mode
-                              clojure-mode
-                              clojurec-mode
-                              clojurescript-mode
-                              clojurex-mode
-                              inf-clojure-mode
-                              )
-  "List of Clojure-related modes."
-  :type '(repeat symbol)
-  :group 'smartparens)
-
-(defcustom sp-no-reindent-after-kill-modes '(
-                                             python-mode
-                                             coffee-mode
-                                             asm-mode
-                                             makefile-gmake-mode
-                                             haml-mode
-                                             )
-  "List of modes that should not reindent after kill."
-  :type '(repeat symbol)
-  :group 'smartparens)
-
-(defcustom sp-no-reindent-after-kill-indent-line-functions
-  '(
-    insert-tab
-    )
-  "List of `indent-line-function's that should not reindent after kill."
-  :type '(repeat symbol)
-  :group 'smartparens)
-
-(defvar sp--html-modes '(
-                         sgml-mode
-                         html-mode
-                         rhtml-mode
-                         nxhtml-mode
-                         nxml-mode
-                         web-mode
-                         jinja2-mode
-                         html-erb-mode
-                         js-jsx-mode
-                         js2-jsx-mode
-                         rjsx-mode
-                         )
-  "List of HTML modes.")
-
-(defvar sp-message-alist
-  '((:unmatched-expression
-     "Search failed: there is an unmatched expression somewhere or we are at the beginning/end of file"
-     "Unmatched expression")
-    (:unbalanced-region
-     "Can not kill the region: the buffer would end up in an unbalanced state after deleting the active region"
-     "Killing the region would make the buffer unbalanced"
-     "Unbalanced region")
-    (:delimiter-in-string
-     "Ignored: opening or closing pair is inside a string or comment and matching pair is outside (or vice versa)")
-    (:no-matching-tag
-     "Search failed: no matching tag found"
-     "No matching tag")
-    (:invalid-context-prev
-     "Invalid context: previous h-sexp ends after the next one"
-     "Invalid context")
-    (:invalid-context-cur
-     "Invalid context: current h-sexp starts after the next one"
-     "Invalid context")
-    (:no-structure-found
-     "Previous sexp starts after current h-sexp or no structure was found"
-     "No valid structure found")
-    (:invalid-structure
-     "Ignored: this operation would result in invalid structure"
-     "Ignored because of invalid structure")
-    (:cant-slurp
-     "Ignored: we can not slurp without breaking strictly balanced expression"
-     "Can not slurp without breaking balance")
-    (:cant-slurp-context
-     "Ignored: we can not slurp into different context (comment -> code)"
-     "Can not slurp into different context")
-    (:cant-insert-closing-delimiter
-     "We can not insert unbalanced closing delimiter in strict mode"
-     "Can not insert unbalanced delimiter")
-    (:blank-sexp
-     "Point is in blank sexp, nothing to barf"
-     "Point is in blank sexp")
-    (:point-not-deep-enough
-     "Point has to be at least two levels deep to swap the enclosing delimiters"
-     "Point has to be at least two levels deep"
-     "Point not deep enough")
-    (:different-type
-     "The expressions to be joined are of different type"
-     "Expressions are of different type"))
-  "List of predefined messages to be displayed by `sp-message'.
-
-Each element is a list consisting of a keyword and one or more
-strings, which are chosen based on the `sp-message-width'
-variable.  If the latter is t, the first string is chosen as
-default, which should be the most verbose option available.")
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Customize & Mode definitions
-
-(defgroup smartparens ()
-  "Smartparens minor mode."
-  :group 'editing
-  :prefix "sp-")
-
-;;;###autoload
-(define-minor-mode smartparens-mode
-  "Toggle smartparens mode.
-
-You can enable pre-set bindings by customizing
-`sp-base-key-bindings' variable.  The current content of
-`smartparens-mode-map' is:
-
- \\{smartparens-mode-map}"
-  :init-value nil
-  :lighter (" SP" (:eval (if smartparens-strict-mode "/s" "")))
-  :group 'smartparens
-  :keymap smartparens-mode-map
-  (if smartparens-mode
-      (progn
-        (sp--init)
-        (add-hook 'self-insert-uses-region-functions 'sp-wrap--can-wrap-p nil 'local)
-        (run-hooks 'smartparens-enabled-hook))
-    (remove-hook 'self-insert-uses-region-functions 'sp-wrap--can-wrap-p 'local)
-    (run-hooks 'smartparens-disabled-hook)))
-
-(defvar smartparens-strict-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [remap delete-char] 'sp-delete-char)
-    (define-key map [remap delete-forward-char] 'sp-delete-char)
-    (define-key map [remap backward-delete-char-untabify] 'sp-backward-delete-char)
-    (define-key map [remap backward-delete-char] 'sp-backward-delete-char)
-    (define-key map [remap delete-backward-char] 'sp-backward-delete-char)
-    (define-key map [remap kill-word] 'sp-kill-word)
-    (define-key map [remap kill-line] 'sp-kill-hybrid-sexp)
-    (define-key map [remap backward-kill-word] 'sp-backward-kill-word)
-    (define-key map [remap kill-region] 'sp-kill-region)
-    (define-key map [remap delete-region] 'sp-delete-region)
-    (define-key map [remap kill-whole-line] 'sp-kill-whole-line)
-    map)
-  "Keymap used for `smartparens-strict-mode'.")
-
-;;;###autoload
-(define-minor-mode smartparens-strict-mode
-  "Toggle the strict smartparens mode.
-
-When strict mode is active, `delete-char', `kill-word' and their
-backward variants will skip over the pair delimiters in order to
-keep the structure always valid (the same way as `paredit-mode'
-does).  This is accomplished by remapping them to
-`sp-delete-char' and `sp-kill-word'.  There is also function
-`sp-kill-symbol' that deletes symbols instead of words, otherwise
-working exactly the same (it is not bound to any key by default).
-
-When strict mode is active, this is indicated with \"/s\"
-after the smartparens indicator in the mode list."
-  :init-value nil
-  :group 'smartparens
-  (if smartparens-strict-mode
-      (progn
-        (unless smartparens-mode
-          (smartparens-mode 1))
-        (unless (-find-indices (lambda (it) (eq (car it) 'smartparens-strict-mode)) minor-mode-overriding-map-alist)
-          (setq minor-mode-overriding-map-alist
-                (cons `(smartparens-strict-mode . ,smartparens-strict-mode-map) minor-mode-overriding-map-alist)))
-        (put 'sp-backward-delete-char 'delete-selection 'sp--delete-selection-supersede-p)
-        (put 'sp-delete-char 'delete-selection 'sp--delete-selection-supersede-p)
-        (add-hook 'self-insert-uses-region-functions 'sp--self-insert-uses-region-strict-p nil 'local)
-        (setq sp-autoskip-closing-pair 'always))
-    (setq minor-mode-overriding-map-alist
-          (-remove (lambda (it) (eq (car it) 'smartparens-strict-mode)) minor-mode-overriding-map-alist))
-    (put 'sp-backward-delete-char 'delete-selection 'supersede)
-    (put 'sp-delete-char 'delete-selection 'supersede)
-    (remove-hook 'self-insert-uses-region-functions 'sp--self-insert-uses-region-strict-p 'local)
-    (let ((std-val (car (plist-get (symbol-plist 'sp-autoskip-closing-pair) 'standard-value)))
-          (saved-val (car (plist-get (symbol-plist 'sp-autoskip-closing-pair) 'saved-value))))
-      (setq sp-autoskip-closing-pair (eval (or saved-val std-val))))))
-
-;;;###autoload
-(define-globalized-minor-mode smartparens-global-strict-mode
-  smartparens-strict-mode
-  turn-on-smartparens-strict-mode
-  :group 'smartparens)
-
-(defcustom sp-ignore-modes-list '(
-                                  minibuffer-inactive-mode
-                                  )
-  "Modes where smartparens mode is inactive if allowed globally."
-  :type '(repeat symbol)
-  :group 'smartparens)
-
-;;;###autoload
-(defun turn-on-smartparens-strict-mode ()
-  "Turn on `smartparens-strict-mode'."
-  (interactive)
-  (unless (or (member major-mode sp-ignore-modes-list)
-              (and (not (derived-mode-p 'comint-mode))
-                   (eq (get major-mode 'mode-class) 'special)))
-    (smartparens-strict-mode 1)))
-
-;;;###autoload
-(defun turn-off-smartparens-strict-mode ()
-  "Turn off `smartparens-strict-mode'."
-  (interactive)
-  (smartparens-strict-mode -1))
-
-(defun sp--init ()
-  "Initialize the buffer local smartparens state.
-
- This includes pair bindings and other buffer local variables
-that depend on the active `major-mode'."
-  (setq sp-state (make-sp-state))
-  ;; setup local pair replacements
-  (sp--update-local-pairs)
-  ;; set the escape char
-  (dotimes (char 256)
-    (unless sp-escape-char
-      (when (= ?\\ (char-syntax char))
-        (setq sp-escape-char (string char))))
-    (unless sp-comment-char
-      (when (= ?< (char-syntax char))
-        (setq sp-comment-char (string char))))))
-
-(defun sp--maybe-init ()
-  "Initialize the buffer if it is not already initialized.
-
-See `sp--init'."
-  (unless sp-pair-list
-    (sp--init)))
-
-(defun sp--remove-local-pair (open)
-  "Remove OPEN from `sp-local-pairs'."
-  (setq sp-local-pairs
-        (--remove (equal (plist-get it :open) open)
-                  sp-local-pairs)))
-
-(defun sp--update-sp-pair-list ()
-  "Update `sp-pair-list' according to current value of `sp-local-pairs'."
-  (setq sp-pair-list
-        (->> sp-local-pairs
-             (--map (cons (plist-get it :open) (plist-get it :close)))
-             (-sort (lambda (x y) (> (length (car x)) (length (car y))))))))
-
-(defun sp--update-local-pairs ()
-  "Update local pairs after change or at mode initialization.
-
-This commands load all the parent major mode definitions and
-merges them into current buffer's `sp-local-pairs'."
-  (let ((parent-modes (-fix (lambda (x)
-                              (--if-let (get (car x) 'derived-mode-parent)
-                                  (cons it x)
-                                x))
-                            (list major-mode))))
-    ;; Combine all the definitions from the most ancient parent to the
-    ;; most recent parent
-    (--each parent-modes (sp-update-local-pairs it))))
-
-(defun sp-update-local-pairs (configuration)
-  "Update `sp-local-pairs' with CONFIGURATION.
-
-The pairs are only updated in current buffer not in all buffers
-with the same major mode!  If you want to update all buffers of
-the specific major-modes use `sp-local-pair'.
-
-CONFIGURATION can be a symbol to be looked up in `sp-pairs' or a
-property list corresponding to the arguments of `sp-local-pair'
-or a list of such property lists."
-  (setq sp-local-pairs
-        (cond
-         ((symbolp configuration)
-          (sp--merge-pair-configurations (cdr (assq configuration sp-pairs))))
-         ((plist-member configuration :open)
-          (sp--merge-pair-configurations (list configuration)))
-         (t
-          (sp--merge-pair-configurations configuration))))
-
-  ;; Keep only those which have non-nil :actions
-  (setq sp-local-pairs (--filter (plist-get it :actions) sp-local-pairs))
-
-  ;; update the `sp-pair-list'.  This is a list only containing
-  ;; (open.close) cons pairs for easier querying.  We also must order
-  ;; it by length of opening delimiter in descending order (first
-  ;; value is the longest)
-  (sp--update-sp-pair-list)
-  (setf (sp-state-local-pairs sp-state) sp-local-pairs)
-  (setf (sp-state-pair-list sp-state) sp-pair-list))
-
-(defmacro sp-with-buffers-using-mode (mode &rest body)
-  "Execute BODY in every existing buffer using `major-mode' MODE."
-  (declare (indent 1))
-  `(--each (buffer-list)
-     (with-current-buffer it
-       (when (derived-mode-p ,mode)
-         ,@body))))
-
-(defun sp--update-local-pairs-everywhere (&rest modes)
-  "Run `sp--update-local-pairs' in all buffers.
-
-This is necessary to update all the buffer-local definitions.  If
-MODES is non-nil, only update buffers with `major-mode' equal to
-MODES."
-  (setq modes (-flatten modes))
-  (--each (buffer-list)
-    (with-current-buffer it
-      (when (and smartparens-mode
-                 (or (not modes)
-                     (--any? (derived-mode-p it) modes)))
-        (sp--update-local-pairs)))))
-
-(defcustom smartparens-enabled-hook nil
-  "Called after `smartparens-mode' is turned on."
-  :type 'hook
-  :group 'smartparens)
-
-(defcustom smartparens-disabled-hook nil
-  "Called after `smartparens-mode' is turned off."
-  :type 'hook
-  :group 'smartparens)
-
-;;;###autoload
-(define-globalized-minor-mode smartparens-global-mode
-  smartparens-mode
-  turn-on-smartparens-mode)
-
-;;;###autoload
-(defun turn-on-smartparens-mode ()
-  "Turn on `smartparens-mode'.
-
-This function is used to turn on `smartparens-global-mode'.
-
-By default `smartparens-global-mode' ignores buffers with
-`mode-class' set to special, but only if they are also not comint
-buffers.
-
-Additionally, buffers on `sp-ignore-modes-list' are ignored.
-
-You can still turn on smartparens in these mode manually (or
-in mode's startup-hook etc.) by calling `smartparens-mode'."
-  (interactive)
-  (unless (or (member major-mode sp-ignore-modes-list)
-              (and (not (derived-mode-p 'comint-mode))
-                   (eq (get major-mode 'mode-class) 'special)))
-    (smartparens-mode t)))
-
-;;;###autoload
-(defun turn-off-smartparens-mode ()
-  "Turn off `smartparens-mode'."
-  (interactive)
-  (smartparens-mode -1))
-
-;; insert custom
-(defcustom sp-autoinsert-pair t
-  "If non-nil, autoinsert pairs.  See `sp-insert-pair'."
-  :type 'boolean
-  :group 'smartparens)
-
-;; TODO: remove this in 1.12
-(defcustom sp-autoinsert-quote-if-followed-by-closing-pair nil
-  "If non-nil autoinsert quotes when the point is followed by closing delimiter.
-
-This option only changes behaviour of the insertion process if
-point is inside a string.  In other words, if string is not
-closed and next character is a closing pair.
-
-For example, in a situation like this:
-
-  [\"some text|]
-
-after pressing \", one would probably want to insert the closing
-quote, not a nested pair (\\\"\\\"), to close the string literal
-in the array.  To enable such behaviour, set this variable to
-nil.
-
-Note: the values of this varible seem to be backward, i.e. it is
-\"enabled\" when the value is nil.  This was an unfortunate
-choice of wording.  It is kept this way to preserve backward
-compatibility.  The intended meaning is \"insert the pair if
-followed by closing pair?\", t = yes."
-  :type 'boolean
-  :group 'smartparens)
-(make-obsolete-variable
- 'sp-autoinsert-quote-if-followed-by-closing-pair
- "the option was removed and no longer has any effect." "1.10")
-
-(defcustom sp-autoskip-closing-pair 'always-end
-  "Determine the behaviour when skipping closing delimiters.
-
-If t, skip the following closing pair if the expression is
-active (that is right after insertion).  This is controlled by
-`sp-cancel-autoskip-on-backward-movement'.
-
-If set to \"always-end\", skip the closing pair even if the
-expression is not active and point is at the end of the
-expression.  This only works for expressions with
-single-character delimiters.
-
-If set to \"always\", `sp-up-sexp' is called whenever the closing
-delimiter is typed inside a sexp of the same type.  This is the
-paredit-like behaviour.  This setting only works for
-single-character delimiters and does not work for string-like
-delimiters.
-
-See `sp-autoskip-opening-pair' for similar setting for
-string-like delimiters.
-
-See also `sp-skip-closing-pair'."
-  :type '(radio
-          (const :tag "Never skip closing delimiter" nil)
-          (const :tag "Skip closing delimiter in active expressions" t)
-          (const :tag "Always skip closing delimiter if at the end of sexp" always-end)
-          (const :tag "Always skip closing delimiter" always))
-  :group 'smartparens)
-(make-variable-buffer-local 'sp-autoskip-closing-pair)
-
-(defcustom sp-autoskip-opening-pair nil
-  "Determine the behaviour when skipping opening delimiters.
-
-If non-nil, skip into the following string-like expression
-instead of inserting a new pair."
-  :type 'boolean
-  :group 'smartparens)
-(make-variable-buffer-local 'sp-autoskip-opening-pair)
-
-;; TODO: rename to reflect what this actually does
-(defcustom sp-cancel-autoskip-on-backward-movement t
-  "If non-nil, deactivate the active expression on backward movement.
-
-Note: the name of this variable is a historic coincidence and
-will change in some future release to reflect its real purpose.
-
-See also `sp-skip-closing-pair'."
-  :type 'boolean
-  :group 'smartparens)
-
-;; delete custom
-(defcustom sp-autodelete-pair t
-  "If non-nil, auto delete pairs.  See `sp-delete-pair'."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-autodelete-closing-pair t
-  "If non-nil, auto delete the whole closing-pair.  See `sp-delete-pair'."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-autodelete-opening-pair t
-  "If non-nil, auto delete the whole opening-pair.  See `sp-delete-pair'."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-undo-pairs-separately nil
-  "If non-nil, put an `undo-boundary' before each inserted pair.
-
-Calling undo after smartparens complete a pair will remove only
-the pair before undoing any previous insertion.
-
-WARNING: This option is implemented by hacking the
-`buffer-undo-list'.  Turning this option on might have
-irreversible consequences on the buffer's undo information and in
-some cases might remove important information.  Usage of package
-`undo-tree' is recommended if you ever need to revert to a state
-unreachable by undo."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-successive-kill-preserve-whitespace 1
-  "Control the behaviour of `sp-kill-sexp' on successive kills.
-
-In the description, we consider more than one space
-\"superfluous\", however, newlines are preserved."
-  :type '(radio
-          (const :tag "Always preserve the whitespace" 0)
-          (const :tag "Remove superfluous whitespace after last kill" 1)
-          (const :tag "Remove superfluous whitespace after all kills" 2))
-  :group 'smartparens)
-
-;; wrap custom
-(defcustom sp-autowrap-region t
-  "If non-nil, wrap the active region with pair."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-wrap-show-possible-pairs t
-  "If non-nil, show possible pairs which can complete the wrapping."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-autodelete-wrap t
-  "If non-nil, autodelete opening and closing pair of most recent wrapping.
-
-Deletion command must be the very first command after the
-insertion, otherwise normal behaviour is applied."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-wrap-repeat-last 1
-  "Context in which smartparens repeats the last wrap.
-
-If the last operation was a wrap and we insert another pair at
-the beginning or end of the last wrapped region, repeat the
-wrap on this region with current pair."
-  :type '(radio
-          (const :tag "Do not repeat wrapping" 0)
-          (const :tag "Only repeat if current tag is the same as the last one" 1)
-          (const :tag "Always repeat if the point is after the opening/closing delimiter of last wrapped region" 2))
-  :group 'smartparens)
-
-(defcustom sp-wrap-entire-symbol nil
-  "If non-nil, do NOT wrap the entire symbol, only the part after point.
-
-If set to \"Enable globally\", smart symbol wrapping is active
-everywhere.  This is the default option.
-
-If set to \"Disable globally\", smart symbol wrapping is disabled
-everywhere.
-
-Otherwise, a list of major modes where smart symbol wrapping is
-*disabled* can be supplied.
-
-Examples:
-
- foo-ba|r-baz -> (|foo-bar-baz) ;; if enabled
-
- foo-ba|r-baz -> foo-ba(|r-baz) ;; if disabled"
-  :type '(choice
-          (const :tag "Enable globally" nil)
-          (const :tag "Disable globally" globally)
-          (repeat :tag "Disable in these major modes" symbol))
-  :group 'smartparens)
-
-(defcustom sp-wrap-from-point nil
-  "If non-nil, do not wrap from the beginning of next expression but from point.
-
-However, if the point is inside a symbol/word, the entire
-symbol/word is wrapped.  To customize this behaviour, see
-variable `sp-wrap-entire-symbol'."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-wrap-respect-direction nil
-  "When non-nil respect the wrap direction.
-
-When non-nil, wrapping with opening pair always jumps to the
-beginning of the region and wrapping with closing pair always
-jumps to the end of the region.
-
-  |fooM -> [ -> |[foo]M
-  Mfoo| -> [ -> |[foo]M
-  |fooM -> ] -> M[foo]|
-  Mfoo| -> ] -> M[foo]|
-
-When nil, closing pair places the point at the end of the region
-and the opening pair leaves the point at its original
-position (before or after the region).
-
-  |fooM -> [ -> [|fooM]
-  Mfoo| -> [ -> M[foo]|
-  |fooM -> ] -> M[foo]|
-  Mfoo| -> ] -> M[foo]|"
-  :type 'boolean
-  :group 'smartparens)
-
-;; escaping custom
-(defcustom sp-escape-wrapped-region t
-  "If non-nil, escape special chars inside the just wrapped region."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-escape-quotes-after-insert t
-  "If non-nil, escape string quotes if typed inside string."
-  :type 'boolean
-  :group 'smartparens)
-
-;; navigation & manip custom
-(defcustom sp-navigate-consider-sgml-tags '(
-                                            html-mode
-                                            )
-  "List of modes where sgml tags are considered to be sexps."
-  :type '(repeat symbol)
-  :group 'smartparens)
-
-
-(defcustom sp-navigate-use-textmode-stringlike-parser '((derived . text-mode))
-  "List of modes where textmode stringlike parser is used.
-
-See `sp-get-textmode-stringlike-expression'.
-
-Each element of the list can either be a symbol which is then
-checked against `major-mode', or a cons (derived . PARENT-MODE),
-where PARENT-MODE is checked using `derived-mode-p'."
-  :type '(repeat (choice
-                  (symbol :tag "Major mode")
-                  (cons :tag "Derived mode"
-                    (const derived)
-                    (symbol :tag "Parent major mode name"))))
-  :group 'smartparens)
-
-(defcustom sp-navigate-consider-symbols t
-  "If non-nil, consider symbols outside balanced expressions as such.
-
-Symbols are recognized by function `sp-forward-symbol'.  This
-setting affect all the navigation and manipulation functions
-where it make sense.
-
-Also, special handling of strings is enabled, where the whole
-string delimited with \"\" is considered as one token.
-
-WARNING: This is a legacy setting and changing its value to NIL
-may break many things.  It is kept only for backward
-compatibility and will be removed in the next major release."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-navigate-comments-as-sexps t
-  "If non-nil, consider comments as sexps in `sp-get-enclosing-sexp'.
-
-If this option is enabled, unbalanced expressions in comments are
-never automatically closed (see `sp-navigate-close-if-unbalanced')."
-  :type 'boolean
-  :group 'smartparens)
-
-;; TODO: add -alist suffix
-(defcustom sp-navigate-skip-match `(
-                                    (,sp-lisp-modes . sp--elisp-skip-match)
-                                    )
-  "Major-mode dependent specifications of skip functions.
-
-Alist where the key is a list of major-modes and the value is a
-function used to skip over matches in `sp-get-paired-expression'.
-This function takes three arguments: the currently matched
-delimiter, beginning of match and end of match.  If this function
-returns true, the current match will be skipped.
-
-You can use this to skip over expressions that serve multiple
-functions, such as if/end pair or unary if in Ruby or * in
-markdown when it signifies list item instead of emphasis.  If the
-exception is only relevant to one pair, you should rather
-use :skip-match option in `sp-local-pair'."
-  :type '(alist
-          :key-type (repeat symbol)
-          :value-type symbol)
-  :group 'smartparens)
-
-(defcustom sp-navigate-reindent-after-up `(
-                                           (interactive
-                                            ,@sp-lisp-modes
-                                            )
-                                           )
-  "Modes where sexps should be reindented after `sp-up-sexp'.
-
-The whitespace between the closing delimiter and last \"thing\"
-inside the expression is removed.  It works analogically for the
-`sp-backward-up-sexp'.
-
-Note that this also happens when `sp-skip-closing-pair' is
-invoked (usually in strict mode when the closing delimiter is
-typed) as it calls `sp-up-sexp' internally.  This behaviour can
-be customized by various settings of `sp-autoskip-closing-pair'
-and `sp-autoskip-opening-pair'.
-
-If the mode is in the list \"interactive\", only reindent the sexp
-if the command was called interactively.  This is recommended for
-general use.
-
-If the mode is in the list \"always\", reindend the sexp even if the
-command was called programatically."
-  :type '(alist
-          :options (interactive always)
-          :value-type (repeat symbol))
-  :group 'smartparens)
-
-(defcustom sp-navigate-reindent-after-up-in-string t
-  "If non-nil, `sp-up-sexp' will reindent inside strings.
-
-If `sp-navigate-reindent-after-up' is enabled and the point is
-inside a string, this setting determines if smartparens should
-reindent the current (string) sexp or not."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-navigate-close-if-unbalanced nil
-  "If non-nil, insert the closing pair of the un-matched pair on `sp-up-sexp'.
-
-The closing delimiter is inserted after the symbol at
-point (using `sp-previous-sexp')."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-navigate-interactive-always-progress-point nil
-  "Make point always move in the direction of navigation.
-
-If non-nil and the function is called interactively,
-`sp-next-sexp' and `sp-previous-sexp' will always move the point
-to the end/beg of such an expression where the point would end up
-being further in the direction of travel.
-
-Note: this behaviour will become default in release 2.0 and will
-cease to be configurable."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-sexp-prefix nil
-  "Alist of `major-mode' specific prefix specification.
-
-Each item is a list with three properties:
-- major mode
-- a constant symbol 'regexp or 'syntax
-- a regexp or a string containing syntax class codes.
-
-If the second argument is 'regexp, the third argument is
-interpreted as a regexp to search backward from the start of an
-expression.
-
-If the second argument is 'syntax, the third argument is
-interpreted as string containing syntax codes that will be
-skipped.
-
-You can also override this property locally for a specific pair
-by specifying its :prefix property."
-  :type '(repeat
-          (list symbol
-                (choice
-                 (const :tag "Regexp" regexp)
-                 (const :tag "Syntax class codes" syntax))
-                string))
-  :group 'smartparens)
-
-(defcustom sp-sexp-suffix nil
-  "Alist of `major-mode' specific suffix specification.
-
-Each item is a list with three properties:
-- major mode
-- a constant symbol 'regexp or 'syntax
-- a regexp or a string containing syntax class codes.
-
-If the second argument is 'regexp, the third argument is
-interpreted as a regexp to search forward from the end of an
-expression.
-
-If the second argument is 'syntax, the third argument is
-interpreted as string containing syntax codes that will be
-skipped.
-
-You can also override this property locally for a specific pair
-by specifying its :suffix property."
-  :type '(repeat
-          (list symbol
-                (choice
-                 (const :tag "Regexp" regexp)
-                 (const :tag "Syntax class codes" syntax))
-                string))
-  :group 'smartparens)
-
-(defcustom sp-split-sexp-always-split-as-string t
-  "Determine if sexp inside string is split.
-
-If the point is inside a sexp inside a string, the default
-behaviour is now to split the string, such that:
-
-  \"foo (|) bar\"
-
-becomes
-
-   \"foo (\"|\") bar\"
-
-instead of
-
-   \"foo ()|() bar\".
-
-Note: the old default behaviour was the reverse, it would split
-the sexp, but this is hardly ever what you want.
-
-You can add a post-handler on string pair and check for
-'split-string action to add concatenation operators of the
-language you work in (in each `major-mode' you can have a separate
-hook).
-
-For example, in PHP the string concatenation operator is a
-dot (.), so you would add:
-
-  (defun my-php-post-split-handler (_ action _)
-    (when (eq action 'split-sexp)
-      (just-one-space)
-      (insert \".  . \")
-      (backward-char 3)))
-
-  (sp-local-pair 'php-mode \"'\" nil
-   :post-handlers '(my-php-post-split-handler))
-
-Then
-
-  echo 'foo |baz';
-
-results in
-
-  echo 'foo' . | . 'baz';"
-  :type 'boolean
-  :group 'smartparens)
-
-;; hybrid lines
-(defcustom sp-hybrid-kill-excessive-whitespace nil
-  "Determine how `sp-kill-hybrid-sexp' kills excessive whitespace.
-
-If non-nil, `sp-kill-hybrid-sexp' will delete all whitespace
-up until next hybrid sexp if the point is at the end of line or
-on a blank line.
-
-When it is set to 'kill, whitespace will be appended to the sexp
-in kill ring."
-  :type '(choice
-          (const :tag "Delete" t)
-          (const :tag "Kill" kill)
-          (const :tag "Off" nil))
-  :group 'smartparens)
-
-(defcustom sp-hybrid-kill-entire-symbol nil
-  "Governs how symbols under point are treated by `sp-kill-hybrid-sexp'.
-
-If t, always kill the symbol under point.
-
-If nil, never kill the entire symbol and only kill the part after point.
-
-If a function, this should be a zero-arg predicate.  When it
-returns non-nil value, we should kill from point."
-  :type '(radio
-          (const :tag "Always kill entire symbol" t)
-          (const :tag "Always kill from point" nil)
-          (const :tag "Kill from point only inside strings" sp-point-in-string)
-          (function :tag "Custom predicate"))
-  :group 'smartparens)
-
-(defcustom sp-comment-string nil
-  "String that is inserted after calling `sp-comment'.
-
-It is an alist of list of major modes to a string.
-
-The value of `comment-start' is used if the major mode is not found."
-  :type '(alist
-          :key-type (repeat symbol)
-          :value-type string)
-  :group 'smartparens)
-
-;; ui custom
-(defcustom sp-highlight-pair-overlay t
-  "If non-nil, autoinserted pairs are highlighted while point is inside the pair."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-highlight-wrap-overlay t
-  "If non-nil, wrap overlays are highlighted during editing of the wrapping pair."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-highlight-wrap-tag-overlay t
-  "If non-nil, wrap tag overlays are highlighted during editing of the wrapping tag pair."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-echo-match-when-invisible t
-  "If non-nil, show-smartparens-mode prints the line of the
-matching paren in the echo area if not visible on screen."
-  :type 'boolean
-  :group 'smartparens)
-
-(defcustom sp-message-width 'frame
-  "Length of information and error messages to display.
-
-If set to 'frame (the default), messages are chosen based of the
-frame width.  t means chose the default (verbose) message, nil
-means mute.  Integers specify the maximum width."
-  :type '(choice (const :tag "Fit to frame" frame)
-                 (const :tag "Verbose" t)
-                 (const :tag "Mute" nil)
-                 (integer :tag "Max width"))
-  :group 'smartparens)
-
-;; TODO: this should be true by default > then the behaviour is
-;; controlled by subword-mode... and this is a hard override
-(defcustom sp-use-subword nil
-  "Override of `subword-mode' killing behaviour.
-
-If non-nill, `sp-kill-word' and `sp-backward-kill-word' only
-kill \"subwords\" when `subword-mode' is active."
-  :type 'boolean
-  :group 'smartparens)
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Selection mode handling
-
-(defun sp--delete-selection-p ()
-  "Return t if `delete-selection-mode' or `cua-delete-selection' is enabled."
-  (or (and (boundp 'delete-selection-mode) delete-selection-mode)
-      (and (boundp 'cua-delete-selection) cua-delete-selection cua-mode)))
-
-(defun sp--delete-selection-supersede-p ()
-  "Decide if the current command should delete the region or not.
-
-This check is used as value of 'delete-selection property on the
-command symbol."
-  (if (or (equal current-prefix-arg '(4))
-          (sp-region-ok-p (region-beginning) (region-end)))
-      'supersede
-    (sp-message :unbalanced-region)
-    ;; Since this check runs in the pre-command-hook we can change the
-    ;; command to be executed... in this case we set it to ignore
-    ;; because we don't want to do anything.
-    (setq this-command 'ignore)
-    nil))
-
-(defun sp--self-insert-uses-region-strict-p ()
-  "Decide if the current `self-insert-command' should be able to
-replace the region.
-
-This check is added to the special hook
-`self-insert-uses-region-functions' which is checked by
-`delete-selection-uses-region-p'."
-  (if (or (equal current-prefix-arg '(4))
-          (sp-region-ok-p (region-beginning) (region-end)))
-      ;; region is OK or we are allowed to replace it, just say nil so
-      ;; that delsel handles this
-      nil
-    ;; in case region is bad we interrupt the insertion
-    (setq this-command 'ignore)
-    t))
-
-;; TODO: this function was removed from Emacs, we should get rid of
-;; the advice in time.
-(defadvice cua-replace-region (around fix-sp-wrap activate)
-  "Fix `sp-wrap' in `cua-selection-mode'."
-  (if (sp-wrap--can-wrap-p)
-      (cua--fallback)
-    ad-do-it))
-
-(defadvice cua-delete-region (around fix-sp-delete-region activate)
-  "If `smartparens-strict-mode' is enabled, perform a region
-check before deleting."
-  (if smartparens-strict-mode
-      (progn
-        (unless (or current-prefix-arg
-                    (sp-region-ok-p (region-beginning) (region-end)))
-          (user-error (sp-message :unbalanced-region :return)))
-        ad-do-it)
-    ad-do-it))
-
-
-
-(cl-eval-when (compile eval load)
-  (defun sp--get-substitute (struct list)
-    "Only ever call this from sp-get!  This function does the
-replacement of all the keywords with actual calls to sp-get."
-    (if (listp list)
-        (if (eq (car list) 'sp-get)
-            list
-          (mapcar (lambda (x) (sp--get-substitute struct x))
-                  (let ((command (car list)))
-                    (cond
-                     ((eq command 'sp-do-move-op)
-                      (let ((argument (make-symbol "--sp-argument--")))
-                        `(let ((,argument ,(cadr list)))
-                           (if (< ,argument :beg-prf)
-                               (progn
-                                 (goto-char :beg-prf)
-                                 (delete-char (+ :op-l :prefix-l))
-                                 (goto-char ,argument)
-                                 (insert :prefix :op))
-                             (goto-char ,argument)
-                             (insert :prefix :op)
-                             (goto-char :beg-prf)
-                             (delete-char (+ :op-l :prefix-l))))))
-                     ((eq command 'sp-do-move-cl)
-                      (let ((argument (make-symbol "--sp-argument--")))
-                        `(let ((,argument ,(cadr list)))
-                           (if (> ,argument :end-in)
-                               (progn
-                                 (goto-char ,argument)
-                                 (insert :cl :suffix)
-                                 (goto-char :end-in)
-                                 (delete-char (+ :cl-l :suffix-l)))
-                             (goto-char :end-in)
-                             (delete-char (+ :cl-l :suffix-l))
-                             (goto-char ,argument)
-                             (insert :cl :suffix)))))
-                     ((eq command 'sp-do-del-op)
-                      `(progn
-                         (goto-char :beg-prf)
-                         (delete-char (+ :op-l :prefix-l))))
-                     ((eq command 'sp-do-del-cl)
-                      `(progn
-                         (goto-char :end-in)
-                         (delete-char (+ :cl-l :suffix-l))))
-                     ((eq command 'sp-do-put-op)
-                      `(progn
-                         (goto-char ,(cadr list))
-                         (insert :prefix :op)))
-                     ((eq command 'sp-do-put-cl)
-                      `(progn
-                         (goto-char ,(cadr list))
-                         (insert :cl :suffix)))
-                     (t list)))))
-      (if (keywordp list)
-          (sp--get-replace-keyword struct list)
-        list)))
-
-  (defun sp--get-replace-keyword (struct keyword)
-    (cl-case keyword
-      ;; point in buffer before the opening delimiter
-      (:beg         `(plist-get ,struct :beg))
-      ;; point in the buffer after the closing delimiter
-      (:end         `(plist-get ,struct :end))
-      ;; point in buffer after the opening delimiter
-      (:beg-in      `(+ (plist-get ,struct :beg) (length (plist-get ,struct :op))))
-      ;; point in buffer before the closing delimiter
-      (:end-in      `(- (plist-get ,struct :end) (length (plist-get ,struct :cl))))
-      ;; point in buffer before the prefix of this expression
-      (:beg-prf     `(- (plist-get ,struct :beg) (length (plist-get ,struct :prefix))))
-      ;; point in the buffer after the suffix of this expression
-      (:end-suf     `(+ (plist-get ,struct :end) (length (plist-get ,struct :suffix))))
-      ;; opening delimiter
-      (:op          `(plist-get ,struct :op))
-      ;; closing delimiter
-      (:cl          `(plist-get ,struct :cl))
-      ;; length of the opening pair
-      (:op-l        `(length (plist-get ,struct :op)))
-      ;; length of the closing pair
-      (:cl-l        `(length (plist-get ,struct :cl)))
-      ;; length of the entire expression, including enclosing
-      ;; delimiters and the prefix and suffix
-      (:len         `(- (plist-get ,struct :end)
-                        (plist-get ,struct :beg)
-                        (- (length (plist-get ,struct :prefix)))
-                        (- (length (plist-get ,struct :suffix)))))
-      ;; length of the the pair ignoring the prefix, including delimiters
-      (:len-out     `(- (plist-get ,struct :end) (plist-get ,struct :beg)))
-      ;; length of the pair inside the delimiters
-      (:len-in      `(- (plist-get ,struct :end)
-                        (plist-get ,struct :beg)
-                        (length (plist-get ,struct :op))
-                        (length (plist-get ,struct :cl))))
-      ;; expression prefix
-      (:prefix      `(plist-get ,struct :prefix))
-      ;; expression prefix length
-      (:prefix-l    `(length (plist-get ,struct :prefix)))
-      (:suffix      `(plist-get ,struct :suffix))
-      (:suffix-l    `(length (plist-get ,struct :suffix)))
-      ;; combined op/cl and suffix/prefix
-      (:opp         `(concat (plist-get ,struct :prefix)
-                             (plist-get ,struct :op)))
-      (:opp-l       `(+ (length (plist-get ,struct :prefix))
-                        (length (plist-get ,struct :op))))
-      (:cls         `(concat (plist-get ,struct :cl)
-                             (plist-get ,struct :suffix)))
-      (:cls-l       `(+ (length (plist-get ,struct :cl))
-                        (length (plist-get ,struct :suffix))))
-      (t keyword))))
-
-
-;; TODO: rewrite this in terms of `symbol-macrolet' ??
-(defmacro sp-get (struct &rest forms)
-  "Get a property from a structure.
-
-STRUCT is a plist with the format as returned by `sp-get-sexp'.
-Which means this macro also works with `sp-get-symbol',
-`sp-get-string' and `sp-get-thing'.
-
-FORMS is an attribute we want to query.  Currently supported
-attributes are:
-
-:beg       - point in buffer before the opening delimiter
-:end       - point in the buffer after the closing delimiter
-:beg-in    - point in buffer after the opening delimiter
-:end-in    - point in buffer before the closing delimiter
-:beg-prf   - point in buffer before the prefix of this expression
-:end-suf   - point in buffer after the suffix of this expression
-:op        - opening delimiter
-:cl        - closing delimiter
-:op-l      - length of the opening pair
-:cl-l      - length of the closing pair
-:len       - length of the entire expression, including enclosing
-             delimiters, the prefix and the suffix
-:len-out   - length of the the pair ignoring the prefix and suffix,
-             including delimiters
-:len-in    - length of the pair inside the delimiters
-:prefix    - expression prefix
-:prefix-l  - expression prefix length
-:suffix    - expression suffix
-:suffix-l  - expression suffix length
-
-These special \"functions\" are expanded to do the selected
-action in the context of currently queried pair:
-
-Nullary:
-\(sp-do-del-op) - remove prefix and opening delimiter
-\(sp-do-del-cl) - remove closing delimiter and suffix
-
-Unary:
-\(sp-do-move-op p) - move prefix and opening delimiter to point p
-\(sp-do-move-cl p) - move closing delimiter and suffix to point p
-\(sp-do-put-op p) - put prefix and opening delimiter at point p
-\(sp-do-put-cl p) - put closing delimiter and suffix at point p
-
-In addition to these simple queries and commands, this macro
-understands arbitrary forms where any of the aforementioned
-attributes are used.  Therefore, you can for example query for
-\"(+ :op-l :cl-l)\".  This query would return the sum of lengths
-of opening and closing delimiter.  A query
-\"(concat :prefix :op)\" would return the string containing
-expression prefix and the opening delimiter.
-
-Special care is taken to only evaluate the STRUCT argument once."
-  (declare (indent 1)
-           (debug (form body)))
-  (let ((st (make-symbol "struct")))
-    (sp--get-substitute st `(let ((,st ,struct)) ,@forms))))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Misc/Utility functions
-
-(defun sp--indent-region (start end &optional column)
-  "Call `indent-region' unless `aggressive-indent-mode' is enabled.
-
-START, END and COLUMN are the same as in `indent-region'."
-  (unless (bound-and-true-p aggressive-indent-mode)
-    ;; Don't issue "Indenting region..." message.
-    (cl-letf (((symbol-function 'message) #'ignore))
-      (indent-region start end column))))
-
-(defmacro sp-with-modes (arg &rest forms)
-  "Add ARG as first argument to each form in FORMS.
-
-This can be used with `sp-local-pair' calls to automatically
-insert the modes."
-  (declare (indent 1)
-           (debug (form body)))
-  (let ((modes (make-symbol "modes")))
-    `(let ((,modes ,arg))
-       (progn
-         ,@(mapcar (lambda (form) (append (list (car form) modes) (cdr form))) forms)))))
-
-(font-lock-add-keywords 'emacs-lisp-mode `((,(concat "("
-                                                     (regexp-opt '("sp-with-modes"
-                                                                   "sp-get"
-                                                                   "sp-compare-sexps") t)
-                                                     "\\_>")
-                                            (1 font-lock-keyword-face))))
-
-(defmacro sp--with-case-sensitive (&rest body)
-  "Ensure that searching done within BODY is case-sensitive.
-
-Bind `case-fold-search' to nil if it is not already and avoid the
-bind if it is already.  Any function that needs to use any of the
-sp--looking-* functions more than once should wrap them all in
-`sp--with-case-sensitive'."
-  (declare (indent 0)
-           (debug (body)))
-  `(if case-fold-search
-       (let ((case-fold-search nil))
-         ,@body)
-     ,@body))
-
-(defun sp--evil-normal-state-p ()
-  "Check to see if the current `evil-state' is in normal mode."
-  (and (fboundp 'evil-normal-state-p) (evil-normal-state-p)))
-
-(defun sp--evil-motion-state-p ()
-  "Check to see if the current `evil-state' is in motion mode."
-  (and (fboundp 'evil-motion-state-p) (evil-motion-state-p)))
-
-(defun sp--evil-visual-state-p ()
-  "Check to see if the current `evil-state' is in visual mode."
-  (and (fboundp 'evil-visual-state-p) (evil-visual-state-p)))
-
-(defun sp-point-in-blank-line (&optional p)
-  "Return non-nil if line at point is blank (whitespace only).
-
-If optional argument P is present test this instead of point."
-  (save-excursion
-    (when p (goto-char p))
-    (beginning-of-line)
-    (looking-at "[ \t]*$")))
-
-(defun sp-point-in-blank-sexp (&optional p)
-  "Return non-nil if point is inside blank (whitespace only) sexp.
-
-If optional argument P is present test this instead of point.
-
-Warning: it is only safe to call this when point is inside a
-sexp, otherwise the call may be very slow."
-  (save-excursion
-    (when p (goto-char p))
-    (-when-let (enc (sp-get-enclosing-sexp))
-      (sp-get enc (string-match-p
-                   "\\`[ \t\n]*\\'"
-                   (buffer-substring-no-properties :beg-in :end-in))))))
-
-(defun sp-char-is-escaped-p (&optional point)
-  "Test if the char at POINT is escaped or not.
-
-POINT defaults to `point'."
-  (setq point (or point (point)))
-  (save-match-data
-    (when (save-excursion
-            (goto-char point)
-            (looking-back (concat sp-escape-char sp-escape-char "+") nil t))
-      (eq (logand (length (match-string 0)) 1) 1))))
-
-(defun sp--syntax-ppss (&optional p)
-  "Memoize the last result of `syntax-ppss'.
-
-P is the point at which we run `syntax-ppss'"
-  (let ((p (or p (point)))
-        (mem-p (sp-state-last-syntax-ppss-point sp-state)))
-    (if (and (eq p (nth 0 mem-p))
-             (eq (point-min) (nth 1 mem-p))
-             (eq (point-max) (nth 2 mem-p)))
-        (sp-state-last-syntax-ppss-result sp-state)
-      ;; Add hook to reset memoization if necessary
-      (unless (sp-state-last-syntax-ppss-point sp-state)
-        (add-hook 'before-change-functions 'sp--reset-memoization t t))
-      (setf (sp-state-last-syntax-ppss-point sp-state)
-            (list p (point-min) (point-max))
-            (sp-state-last-syntax-ppss-result sp-state) (syntax-ppss p)))))
-
-(defun sp-point-in-string (&optional p)
-  "Return non-nil if point is inside string or documentation string.
-
-This function actually returns the 3rd element of `syntax-ppss'
-which can be a number if the string is delimited by that
-character or t if the string is delimited by general string
-fences.
-
-If optional argument P is present test this instead of point."
-  (ignore-errors
-    (save-excursion
-      (nth 3 (sp--syntax-ppss p)))))
-
-(defun sp-point-in-comment (&optional p)
-  "Return non-nil if point is inside comment.
-
-If optional argument P is present test this instead off point."
-  (setq p (or p (point)))
-  (ignore-errors
-    (save-excursion
-      ;; We cannot be in a comment if we are inside a string
-      (unless (nth 3 (sp--syntax-ppss p))
-        (or (nth 4 (sp--syntax-ppss p))
-            ;; this also test opening and closing comment delimiters... we
-            ;; need to chack that it is not newline, which is in "comment
-            ;; ender" class in elisp-mode, but we just want it to be
-            ;; treated as whitespace
-            (and (< p (point-max))
-                 (memq (char-syntax (char-after p)) '(?< ?>))
-                 (not (eq (char-after p) ?\n)))
-            ;; we also need to test the special syntax flag for comment
-            ;; starters and enders, because `syntax-ppss' does not yet
-            ;; know if we are inside a comment or not (e.g. / can be a
-            ;; division or comment starter...).
-            (-when-let (s (car (syntax-after p)))
-              (or (and (/= 0 (logand (lsh 1 16) s))
-                       (nth 4 (syntax-ppss (+ p 2))))
-                  (and (/= 0 (logand (lsh 1 17) s))
-                       (nth 4 (syntax-ppss (+ p 1))))
-                  (and (/= 0 (logand (lsh 1 18) s))
-                       (nth 4 (syntax-ppss (- p 1))))
-                  (and (/= 0 (logand (lsh 1 19) s))
-                       (nth 4 (syntax-ppss (- p 2)))))))))))
-
-(defun sp-point-in-string-or-comment (&optional p)
-  "Return non-nil if point is inside string, documentation string or a comment.
-
-If optional argument P is present, test this instead of point."
-  (or (sp-point-in-string p)
-      (sp-point-in-comment p)))
-
-;; TODO: add -p suffix
-(defun sp-point-in-symbol (&optional p)
-  "Return non-nil if `point' is inside symbol.
-
-If P is non-nil, interpret it as buffer position and test there.
-
-Point is inside symbol if characters on both sides of the point
-are in either word or symbol class."
-  (setq p (or p (point)))
-  (save-excursion
-    (goto-char p)
-    (and (/= 0 (following-char))
-         (memq (char-syntax (following-char)) '(?w ?_))
-         (memq (char-syntax (preceding-char)) '(?w ?_)))))
-
-(defun sp--single-key-description (event)
-  "Return a description of the last EVENT.
-
-Replace all the function key symbols with garbage character (ň).
-
-TODO: fix this!"
-  (let ((original (single-key-description event)))
-    (cond
-     ((string-match-p "<.*?>" original) "ň")
-     ((string-match-p "SPC" original) " ")
-     (t original))))
-
-;; see https://github.com/Fuco1/smartparens/issues/125#issuecomment-20356176
-(defun sp--current-indentation ()
-  "Get the indentation offset of the current line."
-  (save-excursion
-    (back-to-indentation)
-    (current-column)))
-
-(defun sp--calculate-indentation-offset (old-column old-indentation)
-  "Calculate correct indentation after re-indent.
-
-OLD-COLUMN is the column before reindent.
-
-OLD-INDENTATION is the indentation depth before reindent."
-  (let ((indentation (sp--current-indentation)))
-    (cond
-     ;; Point was in code, so move it along with the re-indented code
-     ((>= old-column old-indentation)
-      (+ old-column (- indentation old-indentation)))
-     ;; Point was indentation, but would be in code now, so move to
-     ;; the beginning of indentation
-     ((<= indentation old-column) indentation)
-     ;; Point was in indentation, and still is, so leave it there
-     (:else old-column))))
-
-(defun sp--back-to-indentation (old-column old-indentation)
-  "Set the current column to proper value.
-
-See `sp--keep-indentation'.
-
-OLD-COLUMN is the column before reindent.
-
-OLD-INDENTATION is the indentation depth before reindent."
-  (let ((offset (sp--calculate-indentation-offset old-column old-indentation)))
-    (move-to-column offset)))
-
-;; TODO: rename to preserve-current-column
-(defmacro sp--keep-indentation (&rest body)
-  "Execute BODY and restore the column.
-
-If point was in code move it along if the line is reinvented so
-it is the same distance relative to first code column.
-
-If point was previously in the indentation region but would end
-up in code, move it to the first code column.
-
-If point was in the indentation region and is still there after
-BODY, do nothing."
-  (declare (indent 0)
-           (debug (body)))
-  (let ((c (make-symbol "c"))
-        (i (make-symbol "i")))
-    `(let ((,c (current-column))
-           (,i (sp--current-indentation)))
-       ,@body
-       (sp--back-to-indentation ,c ,i))))
-
-;; Please contribute these if you come across some!
-(defvar sp--self-insert-commands
-  '(self-insert-command
-    org-self-insert-command
-    LaTeX-insert-left-brace)
-   "List of commands that are some sort of `self-insert-command'.
-
-Many modes rebind \"self-inserting\" keys to \"smart\" versions
-which do some additional processing before delegating the
-insertion to `self-insert-command'.  Smartparens needs to be able
-to distinguish these to properly handle insertion and reinsertion
-of pairs and wraps.")
-
-;; Please contribute these if you come across some!
-(defvar sp--special-self-insert-commands
-  '(
-    TeX-insert-dollar
-    TeX-insert-quote
-    quack-insert-opening-paren
-    quack-insert-closing-paren
-    quack-insert-opening-bracket
-    quack-insert-closing-bracket
-    racket-insert-closing-paren
-    racket-insert-closing-bracket
-    racket-insert-closing-brace
-    )
-   "List of commands which are handled as if they were `self-insert-command's.
-
-Some modes redefine \"self-inserting\" keys to \"smart\" versions
-which do some additional processing but do _not_ delegate the
-insertion to `self-insert-command', instead inserting via
-`insert'.  Smartparens needs to be able to distinguish these to
-properly handle insertion and reinsertion of pairs and wraps.
-
-The `sp--post-self-insert-hook-handler' is called in the
-`post-command-hook' for these commands.")
-
-(defun sp--self-insert-command-p ()
-  "Return non-nil if `this-command' is some sort of `self-insert-command'."
-  (memq this-command sp--self-insert-commands))
-
-(defun sp--special-self-insert-command-p ()
-  "Return non-nil if `this-command' is \"special\" self insert command.
-
-A special self insert command is one that inserts a character but
-does not trigger `post-self-insert-hook'."
-  (memq this-command sp--special-self-insert-commands))
-
-(defun sp--signum (x)
-  "Return 1 if X is positive, -1 if negative, 0 if zero."
-  (cond ((> x 0) 1) ((< x 0) -1) (t 0)))
-
-;; The structure returned by sp-get-sexp is a plist with following properties:
-;;
-;; :beg    - point in the buffer before the opening delimiter (ignoring prefix)
-;; :end    - point in the buffer after the closing delimiter
-;; :op     - opening delimiter
-;; :cl     - closing delimiter
-;; :prefix - expression prefix
-;;
-;; This structure should never be accessed directly and should only be
-;; exposed by the sp-get macro.  This way, we can later change the
-;; internal representation without much trouble.
-
-(defmacro sp-compare-sexps (a b &optional fun what-a what-b)
-  "Return non-nil if the expressions A and B are equal.
-
-Two expressions are equal if their :beg property is the same.
-
-If optional argument FUN is non-nil, it is the comparison
-function.
-
-If optional argument WHAT-A is non-nil, use it as a keyword on
-which to do the comparsion (default to :beg).
-
-If optional argument WHAT-B is non-nil, use it as a keyword on
-which to do the comparsion (default to WHAT-A)."
-  (declare (debug (form form &optional functionp keywordp keywordp)))
-  (setq fun (or fun 'equal))
-  (setq what-a (or what-a :beg))
-  (setq what-b (or what-b what-a))
-  `(,fun (sp-get ,a ,what-a) (sp-get ,b ,what-b)))
-
-(defun sp-message (key &optional return)
-  "Display a message.
-
-KEY is either a string or list of strings, or a keyword,
-in which case the string list is looked up in
-`sp-message-alist'.  The string to be displayed is chosen based on
-the `sp-message-width' variable.
-
-If RETURN is non-nil return the string instead of printing it."
-  (let ((msgs (cond ((listp key) key)
-                    ((stringp key) (list key))
-                    (t (cdr (assq key sp-message-alist))))))
-    (when (and msgs sp-message-width)
-      (if (eq sp-message-width t)
-          (if return (car msgs) (message "%s." (car msgs)))
-        (let ((maxlen (if (eq sp-message-width 'frame)
-                          (frame-width)
-                        sp-message-width))
-              (s nil))
-          (dolist (msg msgs)
-            (if (and (<= (length msg) maxlen)
-                     (> (length msg) (length s)))
-                (setf s msg)))
-          (when s
-            (if return s (message "%s." s))))))))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Adding/removing of pairs/bans/allows etc.
-
-(defun sp--merge-prop (prop new-pair old-pair)
-  "Merge a property PROP from NEW-PAIR into OLD-PAIR.
-
-The list OLD-PAIR must not be nil."
-  (let ((new-val (plist-get new-pair prop)))
-    (cl-case prop
-      (:close (plist-put old-pair :close new-val))
-      (:prefix (plist-put old-pair :prefix new-val))
-      (:suffix (plist-put old-pair :suffix new-val))
-      (:skip-match (plist-put old-pair :skip-match new-val))
-      (:trigger (plist-put old-pair :trigger new-val))
-      (:trigger-wrap (plist-put old-pair :trigger-wrap new-val))
-      ((:actions :when :unless :pre-handlers :post-handlers)
-       (cl-case (car new-val)
-         (:add (plist-put old-pair prop (-union (plist-get old-pair prop) (cdr new-val))))
-         (:rem (plist-put old-pair prop (-difference (plist-get old-pair prop) (cdr new-val))))
-         (t
-          (cond
-           ;; this means we have ((:add ...) (:rem ...)) argument
-           ((and new-val
-                 (listp (car new-val))
-                 (memq (caar new-val) '(:add :rem)))
-            (let ((a (assq :add new-val))
-                  (r (assq :rem new-val)))
-              (plist-put old-pair prop (-union (plist-get old-pair prop) (cdr a)))
-              (plist-put old-pair prop (-difference (plist-get old-pair prop) (cdr r)))))
-           (t
-            (plist-put old-pair prop (plist-get new-pair prop))))))))))
-
-(defun sp--merge-pairs (old-pair new-pair)
-  "Merge OLD-PAIR and NEW-PAIR.
-This modifies the OLD-PAIR by side effect."
-  (let ((ind 0))
-    (--each new-pair
-      (when (= 0 (% ind 2))
-        (sp--merge-prop it new-pair old-pair))
-      (setq ind (1+ ind))))
-  old-pair)
-
-(defun sp--update-pair (new-pair old-pair)
-  "Copy properties from NEW-PAIR to OLD-PAIR.
-
-The list OLD-PAIR must not be nil."
-  (let ((ind 0))
-    (--each new-pair
-      (when (= 0 (% ind 2))
-        (when (or (not (plist-get old-pair it))
-                  ;; HACK: we don't want to overwrite list properties
-                  ;; that aren't just :add with :add because this
-                  ;; would break the "idempotency".
-                  (not (equal '(:add) (plist-get new-pair it))))
-          (plist-put old-pair it (plist-get new-pair it))))
-      (setq ind (1+ ind))))
-  old-pair)
-
-(defun sp--update-pair-list (pair mode)
-  "Update the PAIR for major mode MODE.
-
-If this pair is not defined yet for this major mode, add it.  If
-this pair is already defined, replace all the properties in the
-old definition with values from PAIR."
-  ;; get the structure relevant to mode.  t means global setting
-  (let ((struct (--first (eq mode (car it)) sp-pairs)))
-    (if (not struct)
-        (!cons (cons mode (list pair)) sp-pairs)
-      ;; this does NOT merge changes, only replace the values at
-      ;; properties.  Open delimiter works as ID as usual.
-      (let ((old-pair (--first (equal (plist-get pair :open)
-                                      (plist-get it :open))
-                               (cdr struct)))
-            (open (plist-get pair :open)))
-        (if (not old-pair)
-            (progn
-              (unless (or (plist-get pair :close)
-                          (sp--get-pair open (assq t sp-pairs)))
-                (error "Pair %s was never defined, please specify closing delimiter in instead of passing `nil'" open))
-              (setcdr struct (cons pair (cdr struct))))
-          (sp--update-pair pair old-pair)))))
-  sp-pairs)
-
-(defun sp--get-pair (open list)
-  "Get the pair with id OPEN from list LIST."
-  (--first (equal open (plist-get it :open)) list))
-
-(defun sp--get-pair-definition (open list &optional prop)
-  "Get the definition of a pair identified by OPEN from list LIST.
-
-If PROP is non-nil, return the value of that property instead."
-  (let ((pair (sp--get-pair open list)))
-    (if prop
-        (cond
-         ((eq prop :op-l)
-          (length (plist-get pair :open)))
-         ((eq prop :cl-l)
-          (length (plist-get pair :close)))
-         ((eq prop :len)
-          (+ (length (plist-get pair :open)) (length (plist-get pair :close))))
-         ((eq prop :post-handlers)
-          (--filter (not (listp it)) (plist-get pair prop)))
-         ((eq prop :post-handlers-cond)
-          (--filter (listp it) (plist-get pair :post-handlers)))
-         ((eq prop :when)
-          (--filter (not (listp it)) (plist-get pair :when)))
-         ((eq prop :when-cond)
-          (-flatten (-concat (--filter (listp it) (plist-get pair :when)))))
-         (t (plist-get pair prop)))
-      pair)))
-
-(defun sp-get-pair-definition (open mode &optional prop)
-  "Get the definition of pair identified by OPEN.
-
-OPEN is the opening delimiter, MODE is the major mode symbol or t
-for global definition.
-
-If PROP is non-nil, return the value of that property instead."
-  (sp--get-pair-definition open (cdr (assq mode sp-pairs)) prop))
-
-(defun sp-get-pair (open &optional prop)
-  "Return the definition of pair defined by OPEN in the current buffer.
-
-The value is fetched from `sp-local-pairs'.
-
-If PROP is non-nil, return the value of that property instead."
-  (sp--get-pair-definition open sp-local-pairs prop))
-
-(defun sp--merge-pair-configurations (specific &optional current)
-  "Merge SPECIFIC pair configuration to the CURRENT configuration.
-
-CURRENT defaults to `sp-local-pairs' if it is non-nil or the
-global definition from `sp-pairs' if `sp-local-pairs' is nil."
-  (let* ((global (or current sp-local-pairs (cdr (assq t sp-pairs))))
-         (local specific)
-         (result nil))
-    ;; copy the pairs on global list first.  This creates new plists
-    ;; so we can modify them without changing the global "template"
-    ;; values.
-    (dolist (old-pair global)
-      (!cons (list :open (plist-get old-pair :open)) result))
-
-    ;; merge the global list with result.  This basically "deep copy"
-    ;; global list.  We use `sp--merge-pairs' because it also clones
-    ;; the list properties (actions, filters etc.)
-    (dolist (new-pair global)
-      (let ((old-pair (sp--get-pair (plist-get new-pair :open) result)))
-        (sp--merge-pairs old-pair new-pair)))
-
-    ;; for each local pair, merge it into the global definition
-    (dolist (new-pair local)
-      (let ((old-pair (sp--get-pair (plist-get new-pair :open) result)))
-        (if old-pair
-            (sp--merge-pairs old-pair new-pair)
-          ;; pair does not have global definition, simply copy it over
-          (!cons
-           ;; this "deep copy" the new-pair
-           (sp--merge-pairs (list :open (plist-get new-pair :open)) new-pair)
-           ;; TODO: remove the nil lists from the definitions
-           result))))
-    result))
-
-(defun sp-wrap-with-pair (pair)
-  "Wrap the following expression with PAIR.
-
-This function is a non-interactive helper.  To use this function
-interactively, bind the following lambda to a key:
-
- (lambda (&optional arg) (interactive \"P\") (sp-wrap-with-pair \"(\"))
-
-This lambda accepts the same prefix arguments as
-`sp-select-next-thing'.
-
-If region is active and `use-region-p' returns true, the region
-is wrapped instead.  This is useful with selection functions in
-`evil-mode' to wrap regions with pairs."
-  (let* ((arg (or current-prefix-arg 1))
-         (sel (and (not (use-region-p))
-                   (sp-select-next-thing-exchange
-                    arg
-                    (cond
-                     ;; point is inside symbol and smart symbol wrapping is disabled
-                     ((and (sp-point-in-symbol)
-                           (or (eq sp-wrap-entire-symbol 'globally)
-                               (memq major-mode sp-wrap-entire-symbol)))
-                      (point))
-                     ;; wrap from point, not the start of the next expression
-                     ((and sp-wrap-from-point
-                           (not (sp-point-in-symbol)))
-                      (point))))))
-         (active-pair (--first (equal (car it) pair) sp-pair-list))
-         (rb (region-beginning))
-         (re (region-end)))
-    (goto-char re)
-    (insert (cdr active-pair))
-    (goto-char rb)
-    (insert (car active-pair))
-    (if (use-region-p)
-        (sp--indent-region rb re)
-      (sp-get sel (sp--indent-region :beg :end)))))
-
-(cl-defun sp-pair (open
-                   close
-                   &key
-                   trigger
-                   trigger-wrap
-                   (actions '(wrap insert autoskip navigate))
-                   when
-                   unless
-                   pre-handlers
-                   post-handlers
-                   wrap
-                   bind
-                   insert)
-  "Add a pair definition.
-
-OPEN is the opening delimiter.  Every pair is uniquely determined
-by this string.
-
-CLOSE is the closing delimiter.  You can use nil for this
-argument if you are updating an existing definition.  In this
-case, the old value is retained.
-
-TRIGGER is an optional trigger for the pair.  The pair will be
-inserted if either OPEN or TRIGGER is typed.  This is usually
-used as a shortcut for longer pairs or for pairs that can't be
-typed easily.
-
-TRIGGER-WRAP is the same as TRIGGER but used for wrapping.
-
-ACTIONS is a list of actions that smartparens will perform with
-this pair.  Possible values are:
-
-- insert  - autoinsert the closing pair when opening pair is
-  typed.
-- wrap    - wrap an active region with the pair defined by opening
-  delimiter if this is typed while region is active.
-- autoskip - if the sexp is active or `sp-autoskip-closing-pair' is
-  set to 'always, skip over the closing delimiter if user types its
-  characters in order.
-- navigate - enable this pair for navigation/highlight and strictness
-  checks
-- escape - allow autoescaping of this delimiter in string contexts
-
-If the ACTIONS argument has value :rem, the pair is removed.
-This can be used to remove default pairs you don't want to use.
-For example: (sp-pair \"[\" nil :actions :rem)
-
-WHEN is a list of predicates that test whether the action
-should be performed in current context.  The values in the list
-should be names of the predicates (that is symbols, not
-lambdas!).  They should accept three arguments: opening
-delimiter (which uniquely determines the pair), action and
-context.  The context argument can have values:
-
-- string  - if point is inside string.
-- comment - if point is inside comment.
-- code    - if point is inside code.  This context is only
-  recognized in programming modes that define string semantics.
-
-If *any* filter returns t, the action WILL be performed. A number
-of filters are predefined: `sp-point-after-word-p',
-`sp-point-before-word-p', `sp-in-string-p',
-`sp-point-before-eol-p' etc.
-
-When clause also supports a special format for delayed insertion.
-The condition is a list with commands, predicates (with three
-arguments as regular when form) or strings specifying the last
-event.  All three types can be combined in one list.  The pair
-will be inserted *after* the next command if it matches the any
-command on the list, if the last event matches any string on the
-list or if any predicate returns true.  If the pair's :when
-clause contains this special form, it will never be immediately
-inserted and will always test for delayed insertion.
-
-UNLESS is a list of predicates.  The conventions are the same as
-for the WHEN list.  If *any* filter on this list returns t, the
-action WILL NOT be performed.  The predicates in the WHEN list
-are checked first, and if any of them succeeds, the UNLESS list
-is not checked.
-
-Note: the functions on the WHEN/UNLESS lists are also called
-\"filters\" in the documentation.
-
-All the filters are run *after* the trigger character is
-inserted.
-
-PRE-HANDLERS is a list of functions that are called before there
-has been some action caused by this pair.  The arguments are the
-same as for filters.  Context is relative to the point *before*
-the last inserted character.  Because of the nature of the
-wrapping operation, this hook is not called if the action is
-wrapping.
-
-POST-HANDLERS is a list of functions that are called after there
-has been some action caused by this pair.  The arguments are the
-same as for filters.  Context is relative to current position of
-point *after* the closing pair was inserted.
-
-After a wrapping action, the point might end on either side of
-the wrapped region, depending on the original direction.  You can
-use the variable `sp-last-wrapped-region' to retrieve information
-about the wrapped region and position the point to suit your
-needs.
-
-A special syntax for conditional execution of hooks is also
-supported.  If the added item is a list (function command1
-command2...), where function is a 3 argument function described
-above and command(s) can be either name of a command or a string
-representing an event.  If the last command or event as described
-by `single-key-description' matches any on the list, the hook
-will be executed.  This means these hooks are run not after the
-insertion, but after the *next* command is executed.
-
-Example:
-  ((lambda (id act con)
-     (save-excursion
-       (newline))) \"RET\" newline)
-
-This function will move the closing pair on its own line only if
-the next command is `newline' or is triggered by RET.  Otherwise
-the pairs stay on the same line.
-
-WRAP is a key binding to which a \"wrapping\" action is bound.
-The key should be in format that is accepted by `kbd'.  This
-option binds a lambda form:
-
-  `(lambda (&optional arg)
-     (interactive \"P\")
-     (sp-wrap-with-pair ,OPEN))
-
-to the specified key sequence.  The binding is added to global
-keymap.  When executed, it wraps ARG (default 1) expressions with
-this pair (like `paredit-wrap-round' and friends).  Additionally,
-it accepts the same prefix arguments as `sp-select-next-thing'.
-
-BIND is equivalent to WRAP.  It is a legacy setting and will be
-removed soon.
-
-INSERT is a key binding to which an \"insert\" action is bound.
-The key should be in format that is accepted by `kbd'.  This is
-achieved by binding a lambda form:
-
- (lambda () (interactive) (sp-insert-pair \"pair-id\"))
-
-to the supplied key, where pair-id is the open delimiter of the
-pair.  The binding is added to the global map.  You can also bind
-a similar lambda manually.  To only bind this in specific major
-modes, use this property on `sp-local-pair' instead."
-  (if (eq actions :rem)
-      (let ((global-list (assq t sp-pairs)))
-        (setcdr global-list (--remove (equal (plist-get it :open) open) (cdr global-list)))
-        (--each (buffer-list)
-          (with-current-buffer it (sp--remove-local-pair open))))
-    (let ((pair nil))
-      (setq pair (plist-put pair :open open))
-      (when close (plist-put pair :close close))
-      (when trigger (plist-put pair :trigger trigger))
-      (when trigger-wrap (plist-put pair :trigger-wrap trigger-wrap))
-      (dolist (arg `((:actions . ,actions)
-                     (:when . ,when)
-                     (:unless . ,unless)
-                     (:pre-handlers . ,pre-handlers)
-                     (:post-handlers . ,post-handlers)))
-        ;; We only consider "nil" as a proper value if the property
-        ;; already exists in the pair.  In that case, we will set it to
-        ;; nil.  This allows for removing properties in global
-        ;; definitions.
-        (when (or (cdr arg)
-                  (sp-get-pair-definition open t (car arg)))
-          (plist-put pair (car arg) (cdr arg))))
-      (sp--update-pair-list pair t))
-    (when (or wrap bind) (global-set-key (read-kbd-macro (or wrap bind))
-                                         `(lambda (&optional arg)
-                                            (interactive "P")
-                                            (sp-wrap-with-pair ,open))))
-    (when insert (global-set-key (kbd insert) `(lambda () (interactive) (sp-insert-pair ,open)))))
-  (sp--update-local-pairs-everywhere)
-  sp-pairs)
-
-(cl-defun sp-local-pair (modes
-                         open
-                         close
-                         &key
-                         trigger
-                         trigger-wrap
-                         (actions '(:add))
-                         (when '(:add))
-                         (unless '(:add))
-                         (pre-handlers '(:add))
-                         (post-handlers '(:add))
-                         wrap
-                         bind
-                         insert
-                         prefix
-                         suffix
-                         skip-match)
-  "Add a local pair definition or override a global definition.
-
-MODES can be a single mode or a list of modes where these settings
-should be applied.
-
-PREFIX is a regular expression matching an optional prefix for
-this pair in the specified major modes.  If not specified, the
-characters of expression prefix syntax class are automatically
-considered instead.  This can be used to attach custom prefixes
-to pairs, such as prefix \"\\function\" in \\function{arg} in
-`LaTeX-mode'.
-
-SUFFIX is a regular expression matching an optional suffix for
-this pair in the specified major modes.  If not specified, the
-characters of punctuation syntax class are automatically
-considered instead.
-
-The rest of the arguments have same semantics as in `sp-pair'.
-
-If the pair is not defined globally, ACTIONS defaults to (wrap
-insert) instead of (:add) (which inherits global settings)
-
-The pairs are uniquely identified by the opening delimiter.  If you
-replace the closing one with a different string in the local
-definition, this will override the global closing delimiter.
-
-The list arguments can optionally be of form starting with
-\":add\" or \":rem\" when these mean \"add to the global list\"
-and \"remove from the global list\" respectively.  Otherwise,
-the global list is replaced.  If you wish to both add and remove
-things with single call, use \"((:add ...) (:rem ...))\" as an
-argument.  Therefore,
-
-  :when '(:add my-test)
-
-would mean \"use the global settings for this pair, but also this
-additional test\". If no value is provided for list arguments,
-they default to \"(:add)\" which means they inherit the list from
-the global definition.
-
-To disable a pair in a major mode, simply set its actions set to
-nil. This will ensure the pair is not even loaded when the mode is
-activated.
-
-If WRAP is non-nil, the binding is added into major mode keymap
-called \"foo-mode-map\".  If the mode does not follow this
-convention, you will need to bind the function manually (see
-`sp-pair' to how the function is named for each particular pair).
-The bindings are not added into `smartparens-mode-map' to prevent
-clashes between different modes.
-
-BIND is equivalent to WRAP.  It is a legacy setting and will be
-removed soon.
-
-The binding for INSERT follows the same convention as BIND.  See
-`sp-pair' for more info.
-
-You can provide a function SKIP-MATCH, that will take three
-arguments: the currently matched delimiter, beginning of match
-and end of match.  If this function returns true, the
-`sp-get-paired-expression' matcher will ignore this match.  You
-can use this to skip over expressions that serve multiple
-functions, such as if/end pair or unary if in Ruby or * in
-markdown when it signifies list item instead of emphasis.  In
-addition, there is a global per major-mode option, see
-`sp-navigate-skip-match'."
-  (if (eq actions :rem)
-      (dolist (m (-flatten (list modes)))
-        (let ((mode-pairs (assq m sp-pairs)))
-          (setcdr mode-pairs
-                  (--remove (equal (plist-get it :open) open)
-                            (cdr mode-pairs))))
-        (sp-with-buffers-using-mode m
-          (sp--remove-local-pair open)))
-    (dolist (m (-flatten (list modes)))
-      (let* ((pair nil))
-        (setq pair (plist-put pair :open open))
-        (when close (plist-put pair :close close))
-        (when trigger (plist-put pair :trigger trigger))
-        (when trigger-wrap (plist-put pair :trigger-wrap trigger-wrap))
-        (when prefix (plist-put pair :prefix prefix))
-        (when suffix (plist-put pair :suffix suffix))
-        (when skip-match (plist-put pair :skip-match skip-match))
-        (when (and (not (sp-get-pair-definition open t))
-                   (equal actions '(:add)))
-          (setq actions '(wrap insert autoskip navigate)))
-        (plist-put pair :actions actions)
-        (plist-put pair :when when)
-        (plist-put pair :unless unless)
-        (plist-put pair :pre-handlers pre-handlers)
-        (plist-put pair :post-handlers post-handlers)
-        (sp--update-pair-list pair m)
-        (-when-let* ((symbol (intern (concat (symbol-name m) "-map")))
-                     (map (and (boundp symbol) (symbol-value symbol))))
-          (when (or wrap bind) (define-key map
-                                 (read-kbd-macro (or wrap bind))
-                                 `(lambda (&optional arg)
-                                    (interactive "P")
-                                    (sp-wrap-with-pair ,open))))
-          (when insert (define-key map
-                         (kbd insert)
-                         `(lambda () (interactive) (sp-insert-pair ,open))))))))
-  (sp--update-local-pairs-everywhere (-flatten (list modes)))
-  sp-pairs)
-
-(cl-defun sp-local-tag (modes trig open close &key
-                              (transform 'identity)
-                              (actions '(wrap insert))
-                              post-handlers)
-  "Add a tag definition.
-
-MODES is a mode or a list of modes where this tag should
-activate.  It is impossible to define global tags.
-
-TRIG is the trigger sequence.  It can be a string of any length.
-If more triggers share a common prefix, the shortest trigger is
-executed.
-
-OPEN is the format of the opening tag.  This is inserted before
-the active region.
-
-CLOSE is the format of the closing tag.  This is inserted after
-the active region.
-
-Opening and closing tags can optionally contain the _ character.
-
-If the opening tag contains the _ character, after you type the
-trigger, the region is wrapped with \"skeleton\" tags and a
-special tag editing mode is entered.  The text you now type is
-substituted for the _ character in the opening tag.
-
-If the closing tag contains the _ character, the text from the
-opening pair is mirrored to the closing pair and substituted for
-the _ character.
-
-TRANSFORM is a function name (symbol) that is called to perform a
-transformation of the opening tag text before this is inserted to
-the closing tag.  For example, in html tag it might simply select
-the name of the tag and cut off the tag attributes (like
-class/style etc.).  Defaults to identity.
-
-ACTIONS is a list of actions this tag should support. Currently,
-only \"wrap\" action is supported.  Usually, you don't need to
-specify this argument.
-
-POST-HANDLERS is a list of functions that are called after the
-tag is inserted.  If the tag does contain the _ character, these
-functions are called after the tag editing mode is exited.  Each
-function on this list should accept two arguments: the trigger
-string and the action."
-  (dolist (mode (-flatten (list modes)))
-    (let* ((tag-list (assq mode sp-tags))
-           (tag (--first (equal trig (plist-get it :trigger)) (cdr tag-list)))
-           (new-tag nil))
-      (setq new-tag (plist-put new-tag :trigger trig))
-      (plist-put new-tag :open open)
-      (plist-put new-tag :close close)
-      (when transform (plist-put new-tag :transform transform))
-      (when actions (plist-put new-tag :actions actions))
-      (when post-handlers (plist-put new-tag :post-handlers post-handlers))
-      (if tag-list
-          (if (not actions)
-              (setcdr tag-list (--remove (equal trig (plist-get it :trigger)) (cdr tag-list)))
-            (if (not tag)
-                (setcdr tag-list (cons new-tag (cdr tag-list)))
-              (sp--update-pair new-tag tag)))
-        ;; mode doesn't exist
-        (when actions
-          (!cons (cons mode (list new-tag)) sp-tags))))))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Overlay management
-
-;; burlywood4
-(defface sp-pair-overlay-face
-  '((t (:inherit highlight)))
-  "The face used to highlight pair overlays."
-  :group 'smartparens)
-
-(defface sp-wrap-overlay-face
-  '((t (:inherit sp-pair-overlay-face)))
-  "The face used to highlight wrap overlays.
-
-When the user wraps a region with multi-character pair a special
-insertion mode is entered.  This face is used for the overlays
-where the possible wrappings are displayed.
-
-The opening and closing delimiters use
-`sp-wrap-overlay-opening-pair' and `sp-wrap-overlay-closing-pair'
-respectively."
-  :group 'smartparens)
-
-(defface sp-wrap-overlay-opening-pair
-  '((t (:inherit sp-wrap-overlay-face
-        :foreground "green")))
-  "The face used to highlight opening pairs for wrapping.
-
-See `sp-wrap-overlay-face'."
-  :group 'smartparens)
-
-(defface sp-wrap-overlay-closing-pair
-  '((t (:inherit sp-wrap-overlay-face
-        :foreground "red")))
-  "The face used to highlight closing pairs for wrapping.
-
-See `sp-wrap-overlay-face'."
-  :group 'smartparens)
-
-(defface sp-wrap-tag-overlay-face
-  '((t (:inherit sp-pair-overlay-face)))
-  "The face used to highlight wrap tag overlays."
-  :group 'smartparens)
-
-(defvar sp-pair-overlay-list '()
-  "List of overlays used for tracking inserted pairs.
-
-When a pair is inserted, an overlay is created over it.  When the
-user starts typing the closing pair we will not insert it again.
-If user leaves the overlay, it is canceled and the insertion
-works again as usual.")
-(make-variable-buffer-local 'sp-pair-overlay-list)
-
-(defvar sp-wrap-overlays nil
-  "Cons pair of wrap overlays.")
-(make-variable-buffer-local 'sp-wrap-overlays)
-
-(defvar sp-wrap-tag-overlays nil
-  "Cons pair of tag wrap overlays.")
-(make-variable-buffer-local 'sp-wrap-tag-overlays)
-
-(defvar sp-pair-overlay-keymap (make-sparse-keymap)
-  "Keymap for the pair overlays.")
-(define-key sp-pair-overlay-keymap (kbd "C-g")
-  '(menu-item nil sp-remove-active-pair-overlay :filter
-              (lambda (cmd)
-                (unless (bound-and-true-p company-my-keymap)
-                  cmd))))
-
-(defvar sp-wrap-overlay-keymap (make-sparse-keymap)
-  "Keymap for the wrap overlays.")
-(define-key sp-wrap-overlay-keymap (kbd "C-g") 'sp-wrap-cancel)
-
-(defun sp--overlays-at (&optional pos)
-  "Wrapper around `overlays-at' to get smartparens overlays.
-
-POS is the same as for `overlays-at'.
-
-Smartparens functions must use this function instead of
-`overlays-at' directly."
-  ;; TODO: we should probably also check the returned value
-  (--filter (overlay-get it 'type) (overlays-at (or pos (point)))))
-
-(defun sp--point-in-overlay-p (overlay)
-  "Return t if point is in OVERLAY."
-  (and (< (point) (overlay-end overlay))
-       (> (point) (overlay-start overlay))))
-
-(defun sp--get-overlay-length (overlay)
-  "Compute the length of OVERLAY."
-  (- (overlay-end overlay) (overlay-start overlay)))
-
-(defun sp--get-active-overlay (&optional type)
-  "Get active overlay.
-
-Active overlay is the shortest overlay at point.  Optional
-argument TYPE restrict overlays to only those with given type."
-  (let ((overlays (sp--overlays-at)))
-    (when type
-      (setq overlays (--filter (eq (overlay-get it 'type) type) overlays)))
-    (cond
-     ((not overlays) nil)
-     ((not (cdr overlays)) (car overlays))
-     (t
-      (--reduce (if (< (sp--get-overlay-length it) (sp--get-overlay-length acc)) it acc) overlays)))))
-
-(defun sp--pair-overlay-create (start end id)
-  "Create an overlay over the currently inserted pair.
-
-This overlay is used for tracking the position of the point and
-marks the active expression.  START and END are the boundaries of
-the overlay, ID is the id of the pair."
-  (let ((overlay (make-overlay start end)))
-    ;; set priority to 99 so that yasnippet with 100 overloads the
-    ;; keymap #625
-    (overlay-put overlay 'priority 99)
-    (overlay-put overlay 'keymap sp-pair-overlay-keymap)
-    (overlay-put overlay 'pair-id id)
-    (overlay-put overlay 'type 'pair)
-    (!cons overlay sp-pair-overlay-list)
-    (sp--pair-overlay-fix-highlight)
-    (add-hook 'post-command-hook 'sp--pair-overlay-post-command-handler nil t)))
-
-(defun sp-wrap-cancel ()
-  "Cancel the active wrapping."
-  (interactive)
-  (unwind-protect
-      (-let (((obeg . oend) sp-wrap-overlays))
-        (when (and (not (called-interactively-p 'any))
-                   (sp--delete-selection-p))
-          (kill-region (overlay-end obeg) (overlay-start oend)))
-        (delete-region (overlay-start oend) (overlay-end oend))
-        (when (> sp-wrap-point sp-wrap-mark)
-          (let ((beg (delete-and-extract-region (overlay-start obeg) (overlay-end obeg))))
-            (goto-char (overlay-start oend))
-            (insert beg))))
-    (sp-wrap--clean-overlays)))
-
-(defun sp-wrap--clean-overlays ()
-  "Delete wrap overlays."
-  (-let [(obeg . oend) sp-wrap-overlays]
-    (delete-overlay obeg)
-    (delete-overlay oend)
-    (setq sp-wrap-overlays nil)))
-
-(defun sp--pair-overlay-fix-highlight ()
-  "Fix highlighting of the pair overlays.
-
-Only the active overlay should be highlighted."
-  (--each (sp--overlays-at) (overlay-put it 'face nil))
-  (let* ((active (sp--get-active-overlay))
-         (type (and active (overlay-get active 'type))))
-    (if active
-        (cond
-         ((eq 'wrap-tag type)
-          (when sp-highlight-wrap-tag-overlay
-            (overlay-put active 'face 'sp-wrap-tag-overlay-face)))
-         ((eq 'pair type)
-          (when sp-highlight-pair-overlay
-            (overlay-put active 'face 'sp-pair-overlay-face))))
-      ;; edge case where we're at the end of active overlay.  If
-      ;; there is a wrap-tag overlay, restore it's face
-      (when sp-wrap-tag-overlays
-        (overlay-put (car sp-wrap-tag-overlays) 'face 'sp-wrap-tag-overlay-face)))))
-
-(defun sp--pair-overlay-post-command-handler ()
-  "Remove all invalid pair overlays.
-
-An invalid overlay is one that doesn't have point inside it or
-is of zero length.
-
-Also remove all pair overlays if point moved backwards and
-`sp-cancel-autoskip-on-backward-movement' is non-nil."
-  ;; if the point moved backwards, remove all overlays
-  (if (and sp-cancel-autoskip-on-backward-movement
-           (< (point) sp-previous-point))
-      (dolist (o sp-pair-overlay-list) (sp--remove-overlay o))
-    ;; else only remove the overlays where point is outside them or
-    ;; their length is zero
-    (dolist (o (--remove (and (sp--point-in-overlay-p it)
-                              (> (sp--get-overlay-length it) 0))
-                         sp-pair-overlay-list))
-      (sp--remove-overlay o)))
-  (when sp-pair-overlay-list
-    (setq sp-previous-point (point))))
-
-(defun sp--reset-memoization (&rest ignored)
-  "Reset memoization as a safety precaution.
-
-IGNORED is a dummy argument used to eat up arguments passed from
-the hook where this is executed."
-  (setf (sp-state-last-syntax-ppss-point sp-state) nil
-        (sp-state-last-syntax-ppss-result sp-state) nil))
-
-(defun sp-remove-active-pair-overlay ()
-  "Deactivate the active overlay.  See `sp--get-active-overlay'."
-  (interactive)
-  (-when-let (active-overlay (sp--get-active-overlay 'pair))
-    (sp--remove-overlay active-overlay)))
-
-(defun sp--remove-overlay (overlay)
-  "Remove OVERLAY."
-  ;; if it's not a pair overlay, nothing happens here anyway
-  (setq sp-pair-overlay-list (--remove (equal it overlay) sp-pair-overlay-list))
-  ;; if we have zero pair overlays, remove the post-command hook
-  (when (not sp-pair-overlay-list)
-    (remove-hook 'post-command-hook 'sp--pair-overlay-post-command-handler t)
-    ;; this is only updated when sp--pair-overlay-post-command-handler
-    ;; is active.  Therefore, we need to reset this to 1.  If not, newly
-    ;; created overlay could be removed right after creation - if
-    ;; sp-previous-point was greater than actual point
-    (setq sp-previous-point -1))
-  (delete-overlay overlay)
-  (sp--pair-overlay-fix-highlight))
-
-(defun sp--replace-overlay-text (o string)
-  "Replace text inside overlay O with STRING."
-  (save-excursion
-    (goto-char (overlay-start o))
-    (insert string)
-    (delete-region (point) (overlay-end o))))
-
-(defun sp--get-overlay-text (o)
-  "Get text inside overlay O."
-  (buffer-substring (overlay-start o) (overlay-end o)))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Action predicates
-
-(defun sp-in-string-p (_id _action context)
-  "Return t if point is inside string or comment, nil otherwise."
-  (eq context 'string))
-
-(defun sp-in-string-quotes-p (_id action context)
-  "Special string test for quotes.
-
-On insert action, test the string context one character back from
-point.  Return nil at `bobp'.
-
-On escape action use the value of CONTEXT."
-  (cond
-   ((eq action 'insert)
-    (if (bobp) nil
-      (save-excursion (backward-char 1) (sp-point-in-string))))
-   ((eq action 'escape)
-    (eq context 'string))))
-
-(defun sp-in-docstring-p (_id _action context)
-  "Return t if point is inside elisp docstring, nil otherwise."
-  (and (eq context 'string)
-       (save-excursion
-         (--when-let (car (sp-get-quoted-string-bounds))
-           (goto-char it)
-           (ignore-errors (backward-sexp 3))
-           (looking-at-p (regexp-opt '("defun" "defmacro"
-                                       "cl-defun" "cl-defmacro"
-                                       "defun*" "defmacro*"
-                                       "lambda" "-lambda")))))))
-
-(defun sp-in-code-p (_id _action context)
-  "Return t if point is inside code, nil otherwise."
-  (eq context 'code))
-
-(defun sp-in-comment-p (_id _action context)
-  "Return t if point is inside comment, nil otherwise."
-  (eq context 'comment))
-
-(defun sp-in-math-p (_id _action _context)
-  "Return t if point is inside code, nil otherwise."
-  (when (functionp 'texmathp)
-    (texmathp)))
-
-(defun sp-point-before-eol-p (_id action _context)
-  "Return t if point is followed by optional white spaces and end of line, nil otherwise.
-This predicate is only tested on \"insert\" action."
-  (when (eq action 'insert)
-    (sp--looking-at-p "\\s-*$")))
-
-(defun sp-point-after-bol-p (id action _context)
-  "Return t if point follows beginning of line and possibly white spaces, nil otherwise.
-This predicate is only tested on \"insert\" action."
-  (when (eq action 'insert)
-    (sp--looking-back-p (concat "^\\s-*" (regexp-quote id)))))
-
-(defun sp-point-at-bol-p (id action _context)
-  "Return t if point is at the beginning of line, nil otherwise.
-This predicate is only tested on \"insert\" action."
-  (when (eq action 'insert)
-    (sp--looking-back-p (concat "^" (regexp-quote id)))))
-
-(defun sp-point-before-symbol-p (_id action _context)
-  "Return t if point is followed by a symbol, nil otherwise.
-This predicate is only tested on \"insert\" action."
-  (when (eq action 'insert)
-    (sp--looking-at-p "\\s_")))
-
-(defun sp-point-before-word-p (_id action _context)
-  "Return t if point is followed by a word, nil otherwise.
-This predicate is only tested on \"insert\" action."
-  (when (eq action 'insert)
-    (sp--looking-at-p "\\sw\\|\\s_")))
-
-(defun sp-point-after-word-p (id action _context)
-  "Return t if point is after a word, nil otherwise.
-This predicate is only tested on \"insert\" action."
-  ;; TODO: remove condition with sp-defpair
-  (when (memq action '(insert escape))
-    (sp--looking-back-p (concat "\\(\\sw\\|\\s_\\)" (regexp-quote id)))))
-
-(defun sp-point-before-same-p (id action _context)
-  "Return t if point is followed by ID, nil otherwise.
-This predicate is only tested on \"insert\" action."
-  (when (eq action 'insert)
-    (sp--looking-at-p (regexp-quote id))))
-
-(defun sp-point-in-empty-line-p (id _action _context)
-  "Return t if point is on an empty line, nil otherwise."
-  (and (sp--looking-at-p "\\s-*$")
-       (sp--looking-back-p (concat "^\\s-*" (regexp-quote id)))))
-
-(defun sp-char-escaped-p (_id action _context)
-  "Return non-nil if character before point is escaped with \\."
-  (when (eq action 'insert)
-    (save-excursion
-      (backward-char 1)
-      (looking-back "\\\\" 1))))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Pair insertion/deletion/skipping
-
-(defun sp--do-action-p (id action &optional use-inside-string)
-  "Return t if pair ID can perform ACTION.
-
-If ACTION is a list, return t if at least one action from the
-list can be performed.
-
-If USE-INSIDE-STRING is non-nil, use value of
-`sp-point-inside-string' instead of testing with
-`sp-point-in-string-or-comment'."
-  (setq action (-flatten (list action)))
-  (let* ((actions (sp-get-pair id :actions))
-         (when-l (sp-get-pair id :when))
-         (unless-l (sp-get-pair id :unless))
-         (in-string (if use-inside-string
-                        sp-point-inside-string
-                      (sp-point-in-string)))
-         (context (cond
-                   (in-string 'string)
-                   ((sp-point-in-comment) 'comment)
-                   (t 'code)))
-         a r)
-    (while (and action (not r))
-      (setq a (car action))
-      (setq r (when (memq a actions)
-                ;;(and (when-clause) (not (unless-clause)))
-                (and (or (not when-l)
-                         (--some (funcall it id a context) when-l))
-                     (or (not unless-l)
-                         (not (--some (funcall it id a context) unless-l))))))
-      (!cdr action))
-    r))
-
-(defun sp--get-handler-context (type)
-  "Return the context constant.  TYPE is type of the handler."
-  (let ((in-string (cl-case type
-                     (:pre-handlers
-                      (save-excursion
-                        (unless (bobp) (backward-char 1))
-                        (sp-point-in-string-or-comment)))
-                     (:post-handlers
-                      (sp-point-in-string-or-comment)))))
-    (if in-string 'string 'code)))
-
-(defun sp--get-context (&optional point in-string in-comment)
-  "Return the context of POINT.
-
-If the optional arguments IN-STRING or IN-COMMENT non-nil, their
-value is used instead of a test."
-  (save-excursion
-    (goto-char (or point (point)))
-    (cond
-     ((or in-string (sp-point-in-string)) 'string)
-     ((or in-comment (sp-point-in-comment)) 'comment)
-     (t 'code))))
-
-(defun sp--parse-insertion-spec (fun)
-  "Parse the insertion specification FUN and return a form to evaluate."
-  (let ((spec nil)
-        (after nil)
-        (last 1))
-    (cl-labels ((push-non-empty
-                 (what)
-                 (unless (equal (cadr what) "")
-                   (push what spec))))
-      (with-temp-buffer
-        (insert fun)
-        (goto-char (point-min))
-        (while (re-search-forward "\\(|\\|\\[\\)" nil t)
-          (cond
-           ((equal (match-string 0) "[")
-            (if (save-excursion (backward-char 1) (eq (preceding-char) 92))
-                (push-non-empty `(insert ,(concat (buffer-substring-no-properties last (- (point) 2)) "[")))
-              (push-non-empty `(insert ,(buffer-substring-no-properties last (1- (point)))))
-              (let* ((p (point))
-                     (fun-end (progn
-                                (re-search-forward "]" nil t)
-                                (1- (point))))
-                     (fun-spec (buffer-substring-no-properties p fun-end))
-                     (instruction (cond
-                                   ((equal fun-spec "i")
-                                    '(indent-according-to-mode))
-                                   ((equal (aref fun-spec 0) ?d)
-                                    `(delete-char ,(string-to-number (substring fun-spec 1)))))))
-                (when instruction (push instruction spec)))))
-           ((equal (match-string 0) "|")
-            (cond
-             ((save-excursion (backward-char 1) (eq (preceding-char) 92))
-              (push-non-empty `(insert ,(concat (buffer-substring-no-properties last (- (point) 2)) "|"))))
-             (t
-              (push-non-empty `(insert ,(buffer-substring-no-properties last (1- (point)))))
-              (push 'save-excursion spec)
-              (when (eq (following-char) 124)
-                (forward-char 1)
-                (setq after '(indent-according-to-mode)))))))
-          (setq last (point)))
-        (push-non-empty `(insert ,(buffer-substring-no-properties last (point-max)))))
-      (let* ((specr (nreverse spec))
-             (specsplit (--split-with (not (eq it 'save-excursion)) specr))
-             (re (-concat (car specsplit) (if (cadr specsplit) (cdr specsplit) nil))))
-        (cons 'progn (if after (-snoc re after) re))))))
-
-(defun sp--run-function-or-insertion (fun id action context)
-  "Run a function or insertion.
-
-If FUN is a function, call it with `funcall' with ID, ACTION and
-CONTEXT as arguments.
-
-If FUN is a string, interpret it as \"insertion specification\",
-see `sp-pair' for description."
-  (cond
-   ((functionp fun)
-    (funcall fun id action context))
-   ((stringp fun)
-    (eval (sp--parse-insertion-spec fun)))))
-
-
-(defvar sp-handler-context nil
-  "Special variable holding context during handler execution.")
-
-;; TODO: get rid of `sp-handler-context' and make all the handlers (we
-;; should call them hooks) take better arguments, what we pass now is
-;; useless almost always
-(defun sp--run-hook-with-args (id type action &optional context-values)
-  "Run all the hooks for pair ID of type TYPE on action ACTION.
-
-CONTEXT-VALUES is a plist with arbitrary values (depending on the
-action).  A dynamic varable `sp-handler-context' will be bound to
-this value during execution of the handler."
-  (ignore-errors
-    (let ((hook (sp-get-pair id type))
-          (context (sp--get-handler-context type)))
-      (if hook
-          (let ((sp-handler-context context-values))
-            (--each hook (sp--run-function-or-insertion it id action context)))
-        (run-hook-with-args 'tag-hook id action context)))))
-
-;; TODO: add a test for a symbol property that would tell this handler
-;; not to re=set `sp-last-operation'. Useful for example in "macro
-;; functions" like `my-wrap-with-paren'.
-(defun sp--post-command-hook-handler ()
-  "Handle the situation after some command has executed."
-  (sp--with-case-sensitive
-    (when (sp--special-self-insert-command-p)
-      (sp--post-self-insert-hook-handler))
-    (ignore-errors
-      (when smartparens-mode
-        ;; handle the wrap overlays
-        (when sp-wrap-overlays
-          (let* ((overlay (car sp-wrap-overlays))
-                 (start (overlay-start overlay))
-                 (end (overlay-end overlay))
-                 (p (point)))
-            (when (or (< p sp-previous-point)
-                      (> p end)
-                      (< p start))
-              (sp-wrap-cancel))))
-        (when sp-wrap-overlays
-          (setq sp-previous-point (point)))
-
-        ;; Here we run the delayed hooks. See issue #80
-        (cond
-         ((eq (car-safe (sp-state-delayed-hook sp-state)) :next)
-          (setf (car (sp-state-delayed-hook sp-state)) :this))
-         ((eq (car-safe (sp-state-delayed-hook sp-state)) :this)
-          (let* ((pair (cdr (sp-state-delayed-hook sp-state)))
-                 (hooks (sp-get-pair pair :post-handlers-cond)))
-            (--each hooks
-              (let ((fun (car it))
-                    (conds (cdr it)))
-                (when (or (--any? (eq this-command it) conds)
-                          (--any? (equal (single-key-description last-command-event) it) conds))
-                  (sp--run-function-or-insertion
-                   fun pair 'insert
-                   (sp--get-handler-context :post-handlers)))))
-            (setf (sp-state-delayed-hook sp-state) nil)
-            (setq sp-last-inserted-pair nil))))
-
-        ;; Here we run the delayed insertion. Some details in issue #113
-        (when (and (not (eq sp-last-operation 'sp-insert-pair-delayed))
-                   sp-delayed-pair)
-          (let* ((pair (car sp-delayed-pair))
-                 (beg (cdr sp-delayed-pair))
-                 (conds (sp-get-pair pair :when-cond))
-                 (open-pair pair)
-                 (close-pair (sp-get-pair pair :close)))
-            (when (and conds
-                       (--any? (cond
-                                ((and (commandp it)
-                                      (not (stringp it)))
-                                 (eq this-command it))
-                                ((stringp it)
-                                 (equal (single-key-description last-command-event) it))
-                                ((ignore-errors (funcall it pair 'insert (sp--get-handler-context :post-handlers))))) conds))
-              ;; TODO: refactor this and the same code in
-              ;; `sp-insert-pair' to a separate function
-              (sp--run-hook-with-args open-pair :pre-handlers 'insert)
-              (insert close-pair)
-              (backward-char (length close-pair))
-              (sp--pair-overlay-create beg
-                                       (+ (point) (length close-pair))
-                                       open-pair)
-              ;; no auto-escape here? Should be fairly safe
-              (sp--run-hook-with-args open-pair :post-handlers 'insert)
-              (setq sp-last-inserted-pair open-pair)
-              ;; TODO: this is probably useless
-              (setq sp-last-operation 'sp-insert-pair)))
-          (setq sp-delayed-pair nil))
-
-        (when (eq sp-last-operation 'sp-insert-pair-delayed)
-          (setq sp-last-operation nil))
-
-        (unless (or (sp--self-insert-command-p)
-                    (sp--special-self-insert-command-p))
-          ;; unless the last command was a self-insert, remove the
-          ;; information about the last wrapped region.  It is only used
-          ;; for: 1. deleting the wrapping immediately after the wrap,
-          ;; 2. re-wrapping region immediatelly after a sucessful wrap.
-          ;; Therefore, the deletion should have no ill-effect.  If the
-          ;; necessity will arise, we can add a different flag.
-          (setq sp-last-wrapped-region nil)
-          (setq sp-last-operation nil))
-
-        (when show-smartparens-mode
-          (if (member this-command sp-show-enclosing-pair-commands)
-              (sp-show--pair-enc-function)
-            (when (not (eq this-command 'sp-highlight-current-sexp))
-              (sp-show--pair-delete-enc-overlays))))))))
-
-(defmacro sp--setaction (action &rest forms)
-  "Use ACTION as a flag to evaluating FORMS.
-
-If ACTION is nil, evaluate FORMS and set it to the value of the
-last form; otherwise do nothing."
-  (declare (debug (form body)))
-  `(unless ,action
-     (setq ,action (progn ,@forms))))
-
-;; TODO: this introduces a regression, where doing C-4 [ inserts [[[[]
-;; figure out how to detect the argument to self-insert-command that
-;; resulted to this insertion
-(defun sp--post-self-insert-hook-handler ()
-  "Handler for `post-self-insert-hook'."
-  (with-demoted-errors "sp--post-self-insert-hook-handler: %S"
-    (when smartparens-mode
-      (sp--with-case-sensitive
-        (catch 'done
-          (let (action)
-            (when (region-active-p)
-              (condition-case err
-                  (sp-wrap--initialize)
-                (user-error
-                 (message (error-message-string err))
-                 ;; we need to remove the undo record of the insertion
-                 (unless (eq buffer-undo-list t)
-                   ;; pop all undo info until we hit an insertion node
-                   (sp--undo-pop-to-last-insertion-node)
-                   ;; get rid of it and insert an undo boundary marker
-                   (pop buffer-undo-list)
-                   (undo-boundary))
-                 (restore-buffer-modified-p sp-buffer-modified-p)
-                 (throw 'done nil))))
-            (cond
-             (sp-wrap-overlays
-              (sp-wrap))
-             (t
-              ;; TODO: this does not pick correct pair!! it uses insert and not wrapping code
-              (sp--setaction
-               action
-               (-when-let ((_ . open-pairs) (sp--all-pairs-to-insert nil 'wrap))
-                 (catch 'done
-                   (-each open-pairs
-                     (-lambda ((&keys :open open :close close))
-                       (--when-let (sp--wrap-repeat-last (cons open close))
-                         (throw 'done it)))))))
-              (unless overwrite-mode (sp--setaction action (sp-insert-pair)))
-              (sp--setaction action (sp-skip-closing-pair))
-              (unless action (sp-escape-open-delimiter))
-              ;; if nothing happened, we just inserted a character, so
-              ;; set the apropriate operation.
-              (unless action
-                (setq sp-last-operation 'sp-self-insert))))))))))
-
-;; Unfortunately, some modes rebind "inserting" keys to their own
-;; handlers but do not hand over the insertion back to
-;; `self-insert-command', rather, they insert via `insert'.
-;; Therefore, we need to call this handler in `post-command-hook' too.
-;; The list `sp--special-self-insert-commands' specifies which
-;; commands to handle specially.
-(add-hook 'post-self-insert-hook 'sp--post-self-insert-hook-handler)
-
-;; TODO: make a proper data structure for state tracking and describe
-;; why we need each of these.
-(defun sp--save-pre-command-state ()
-  "Save some of the buffer state before `pre-command-hook'."
-  (setq sp-point-inside-string (sp-point-in-string))
-  (setq sp-pre-command-point (point))
-  (setq sp-buffer-modified-p (buffer-modified-p)))
-
-(add-hook 'pre-command-hook 'sp--save-pre-command-state)
-
-(defun sp--get-pair-list ()
-  "Get all non-stringlike pairs.
-
-Return all pairs that are recognized in this `major-mode' and do
-not have same opening and closing delimiter.  This is used for
-navigation functions."
-  (--filter (not (string= (car it) (cdr it))) sp-pair-list))
-
-(defun sp--get-stringlike-list ()
-  "Get all string-like pairs.
-
-Return all pairs that are recognized in this `major-mode' that
-have same opening and closing delimiter."
-  (--filter (string= (car it) (cdr it)) sp-pair-list))
-
-(defun sp--get-allowed-pair-list ()
-  "Get all allowed non string-like pairs.
-
-Return all pairs that are recognized in this `major-mode', do not
-have same opening and closing delimiter and are allowed in the
-current context.  See also `sp--get-pair-list'."
-  (--filter (and (sp--do-action-p (car it) 'navigate)
-                 (not (equal (car it) (cdr it)))) sp-pair-list))
-
-(defun sp--get-allowed-stringlike-list ()
-  "Get all allowed string-like pairs.
-
-Return all pairs that are recognized in this `major-mode',
-have the same opening and closing delimiter and are allowed in
-the current context."
-  (--filter (and (sp--do-action-p (car it) 'navigate)
-                 (equal (car it) (cdr it))) sp-pair-list))
-
-(defun sp--get-pair-list-context (&optional action)
-  "Return all pairs that are recognized in this `major-mode' and
-are allowed in the current context."
-  (setq action (or action 'insert))
-  (--filter (sp--do-action-p (car it) action) sp-pair-list))
-
-(defun sp--get-pair-list-wrap ()
-  "Return the list of all pairs that can be used for wrapping."
-  (--filter (sp--do-action-p (car it) 'wrap) sp-pair-list))
-
-(defun sp--wrap-regexp (string start end)
-  "Wraps regexp with start and end boundary conditions to avoid
-matching symbols in symbols."
-  (concat "\\(?:" (when start "\\<") string (when end "\\>") "\\)"))
-
-(defun sp--regexp-for-group (parens &rest strings)
-  "Generates an optimized regexp matching all string, but with
-extra boundary conditions depending on parens."
-  (let* ((start (car parens))
-         (end (cadr parens)))
-    (sp--wrap-regexp (regexp-opt strings) start end)))
-
-(defun sp--strict-regexp-opt (strings &optional ignored)
-  "Like regexp-opt, but with extra boundary conditions to ensure
-that the strings are not matched in-symbol."
-  (if strings
-      (with-syntax-table
-          ;; HACK: this is a terrible hack to make ' be treated as a
-          ;; punctuation.  Many text modes set it as word character which
-          ;; messes up the regexps
-          (let ((table (make-syntax-table (syntax-table))))
-            (modify-syntax-entry ?' "." table)
-            table)
-        (--> strings
-             (-group-by (lambda (string)
-                          (list (and (string-match-p "\\`\\<" string) t)
-                                (and (string-match-p "\\>\\'" string) t)))
-                        it)
-             (mapconcat (lambda (g) (apply 'sp--regexp-for-group g)) it "\\|")
-             (concat "\\(?:" it "\\)")))
-    "^\\<$"))
-
-(defun sp--strict-regexp-quote (string)
-  "Like regexp-quote, but make sure that the string is not
-matched in-symbol."
-  (sp--wrap-regexp (regexp-quote string)
-                   (string-match-p "\\`\\<" string)
-                   (string-match-p "\\>\\'" string)))
-
-(cl-defun sp--get-opening-regexp (&optional (pair-list (sp--get-pair-list)))
-  "Return regexp matching any opening pair."
-  (sp--strict-regexp-opt (--map (car it) pair-list)))
-
-(cl-defun sp--get-closing-regexp (&optional (pair-list (sp--get-pair-list)))
-  "Return regexp matching any closing pair."
-  (sp--strict-regexp-opt (--map (cdr it) pair-list)))
-
-(cl-defun sp--get-allowed-regexp (&optional (pair-list (sp--get-allowed-pair-list)))
-  "Return regexp matching any opening or closing
-delimiter for any pair allowed in current context."
-  (sp--strict-regexp-opt (--mapcat (list (car it) (cdr it)) pair-list)))
-
-(cl-defun sp--get-stringlike-regexp (&optional (pair-list (sp--get-allowed-stringlike-list)))
-  "Return a regexp matching any string-like delimiter.
-
-In case PAIR-LIST is empty return a regexp that never matches
-anything."
-  (if (consp pair-list)
-      (regexp-opt (--map (car it) pair-list))
-    "^\\<$"))
-
-(defun sp--get-last-wraped-region (beg end open close)
-  "Return `sp-get-sexp' style plist about the last wrapped region.
-
-Note: this function does not retrieve the actual value of
-`sp-last-wrapped-region', it merely construct the plist from the
-provided values."
-  (let ((b (make-marker))
-        (e (make-marker)))
-    (set-marker b beg)
-    (set-marker e end)
-    (set-marker-insertion-type e t)
-    `(:beg ,b :end ,e :op ,open :cl ,close :prefix "")))
-
-;; Wrapping is basically the same thing as insertion, only the closing
-;; pair is placed at a distance.
-
-;; However, we want to be able to insert the *closing* delimiter and
-;; go to the end of block.  This will only work with delimiters which
-;; are unique wrt their opening one.  For more complex wrapping, there
-;; will probably be an IDO/minibuffer interface.  Openings are checked
-;; first.
-
-;; Inserting the opening delimiter should put the point wherever it
-;; was when we started insertion.
-
-(defun sp-wrap--can-wrap-p ()
-  "Return non-nil if we can wrap a region.
-
-This is used in advices on various pre-command-hooks from
-\"selection deleting\" modes to intercept their actions.
-
-Also added to `self-insert-uses-region-functions' to prevent
-`delete-selection-mode' from replacing the region."
-  (let* ((list (sp--get-pair-list-wrap))
-         (desc (sp--single-key-description last-command-event)))
-    (--any? (or (string-prefix-p desc (car it))
-                (string-prefix-p desc (cdr it)))
-            list)))
-
-(defun sp--pair-to-wrap-comparator (prop a b)
-  "Comparator for wrapping pair selection.
-
-PROP specifies wrapping-end.  A and B are pairs to be compared."
-  (< (length (plist-get a prop)) (length (plist-get b prop))))
-
-(defun sp--pair-to-wrap (&optional prefix)
-  "Return information about possible wrapping pairs.
-
-If optional PREFIX is non-nil, this is used to determine the
-possible wrapping pairs instead of the text in the wrapping
-overlay."
-  (let* ((working-pairs
-          ;; TODO: abstract this into a new "sp--get-..." hierarchy
-          (--filter (sp--do-action-p (plist-get it :open) 'wrap) sp-local-pairs))
-         (obeg (car sp-wrap-overlays))
-         (prefix (or prefix (sp--get-overlay-text obeg)))
-         (opening-pairs (--filter (string-prefix-p prefix (plist-get it :open)) working-pairs))
-         ;; HACK: Here, we will add special "trigger pairs" to the
-         ;; opening list.  We set the opening delimiter to the
-         ;; trigger, leave the rest alone and put the real open into
-         ;; :open-real property.  When we get the pair back, we will
-         ;; check this property, and if present, fix the pair back to
-         ;; the regular form
-         (wrapper-pairs (->> (--filter (string-prefix-p prefix (or (plist-get it :trigger-wrap) "")) working-pairs)
-                             (-map (-lambda ((pair &as &plist :open open :trigger-wrap trigger-wrap))
-                                     (setq pair (copy-sequence pair))
-                                     (setq pair (plist-put pair :open trigger-wrap))
-                                     (setq pair (plist-put pair :open-real open))
-                                     pair))))
-         (opening-pairs (-concat wrapper-pairs opening-pairs))
-         (closing-pairs (--filter (string-prefix-p prefix (plist-get it :close)) working-pairs))
-         (open (car (--sort (sp--pair-to-wrap-comparator :open it other) opening-pairs)))
-         ;; TODO: do we need the special sorting here?
-         (close (car (--sort (sp--pair-to-wrap-comparator :close it other) closing-pairs))))
-    (list :open open
-          :close close
-          :opening opening-pairs
-          :closing closing-pairs)))
-
-(defun sp-wrap--initialize ()
-  "Initialize wrapping."
-  (when (and sp-autowrap-region
-             (sp-wrap--can-wrap-p))
-    ;; This is the length of string which was inserted by the last
-    ;; "self-insert" action.  Typically this is 1, but sometimes a
-    ;; single key inserts two or more characters, such as " in latex
-    ;; where it translates into `` or ''.
-    (let ((inserted-string-length (- (point) sp-pre-command-point)))
-      ;; TODO: get rid of the following variables
-      (setq sp-wrap-point (- (point) inserted-string-length))
-      (setq sp-wrap-mark (mark))
-      ;; balance check
-      (with-silent-modifications
-        (let ((inserted-string
-               (prog1 (delete-and-extract-region sp-wrap-point (point))
-                 ;; HACK: in modes with string fences, the insertion
-                 ;; of the delimiter causes `syntax-propertize' to
-                 ;; fire, but the above deletion doesn't re-run it
-                 ;; because the cache tells it the state is OK.  We
-                 ;; need to destroy the cache and re-run the
-                 ;; `syntax-propertize' on the buffer.  This might be
-                 ;; expensive, but we only done this on wrap-init so
-                 ;; it's fine, I guess.
-                 (setq syntax-propertize--done -1)
-                 (syntax-propertize (point-max))))
-              (point-string-context (sp-get-quoted-string-bounds sp-wrap-point))
-              (mark-string-context (sp-get-quoted-string-bounds (mark))))
-          ;; If point and mark are inside the same string, we don't
-          ;; need to check if the region is OK.  If both are outisde
-          ;; strings, we have to.  If one is inside and the other is
-          ;; not, no matter what we would break, so we exit.
-          (cond
-           ;; inside the same string
-           ((and point-string-context mark-string-context
-                 (eq (car point-string-context)
-                     (car mark-string-context))))
-           ;; neither is inside string
-           ((and (not point-string-context)
-                 (not mark-string-context))
-            (unless (sp-region-ok-p sp-wrap-point (mark))
-              (user-error "Mismatched sexp state: wrapping would break structure")))
-           ;; one is in and the other isn't
-           ((if point-string-context (not mark-string-context) mark-string-context)
-            (user-error "Mismatched string state: point %sin string, mark %sin string"
-                        (if (car-safe point-string-context) "" "not ")
-                        (if (car-safe mark-string-context) "" "not ")))
-           ;; both are in but in different strings
-           (t (user-error "Mismatched string state: point and mark are inside different strings")))
-          (insert inserted-string)))
-      ;; if point > mark, we need to move point to mark and reinsert the
-      ;; just inserted character.
-      (when (> (point) (mark))
-        (let ((char (delete-and-extract-region (- (point) inserted-string-length) (point))))
-          (exchange-point-and-mark)
-          (insert char)))
-      (let* ((oleft (make-overlay (- (region-beginning) inserted-string-length)
-                                  (region-beginning) nil nil t))
-             (oright (make-overlay (region-end) (region-end) nil nil t)))
-        (setq sp-wrap-overlays (cons oleft oright))
-        (when sp-highlight-wrap-overlay
-          (overlay-put oleft 'face 'sp-wrap-overlay-face)
-          (overlay-put oright 'face 'sp-wrap-overlay-face))
-        (overlay-put oleft 'priority 100)
-        (overlay-put oright 'priority 100)
-        (overlay-put oleft 'keymap sp-wrap-overlay-keymap)
-        (overlay-put oleft 'type 'wrap)
-        (setq sp-previous-point (point))
-        (goto-char (1+ (overlay-start oleft)))))))
-
-(defun sp-wrap--finalize (wrapping-end open close)
-  "Finalize a successful wrapping.
-
-WRAPPING-END specifies the wrapping end.  If we wrapped using
-opening delimiter it is :open.  If we wrapped using closing
-delimiter it is :close.  Position of point after wrapping depends
-on this value---if :open, go where the wrapping was initalized,
-if :close, go after the newly-formed sexp.
-
-OPEN and CLOSE are the delimiters."
-  (-let (((obeg . oend) sp-wrap-overlays))
-    (sp--replace-overlay-text obeg open)
-    (sp--replace-overlay-text oend close)
-    (setq sp-last-operation 'sp-wrap-region)
-    (setq sp-last-wrapped-region
-          (sp--get-last-wraped-region
-           (overlay-start obeg) (overlay-end oend)
-           open close))
-    (cond
-     ((eq wrapping-end :open)
-      (if sp-wrap-respect-direction
-          (progn
-            (set-mark (overlay-end oend))
-            (goto-char (overlay-start obeg)))
-        (when (> sp-wrap-point sp-wrap-mark)
-          (set-mark (overlay-start obeg))
-          (goto-char (overlay-end oend)))))
-     ((eq wrapping-end :close)
-      (set-mark (overlay-start obeg))
-      (goto-char (overlay-end oend))))
-    (sp-wrap--clean-overlays)
-    (sp--run-hook-with-args open :post-handlers 'wrap)))
-
-(defun sp-wrap ()
-  "Try to wrap the active region with some pair.
-
-This function is not ment to be used to wrap sexps with pairs
-programatically.  Use `sp-wrap-with-pair' instead."
-  (-let* (((&plist :open open :close close
-                   :opening opening-pairs
-                   :closing closing-pairs) (sp--pair-to-wrap))
-          ((obeg . oend) sp-wrap-overlays))
-    (cond
-     (open
-      (-let (((&plist :open open :close close :open-real open-real) open))
-        (when sp-wrap-show-possible-pairs
-          (overlay-put
-           oend 'after-string
-           (mapconcat (lambda (x)
-                        (if sp-highlight-wrap-overlay
-                            (concat
-                             (propertize
-                              (plist-get x :open) 'face
-                              'sp-wrap-overlay-opening-pair)
-                             (propertize
-                              (plist-get x :close)
-                              'face 'sp-wrap-overlay-closing-pair))
-                          (concat (plist-get x :open) (plist-get x :close))))
-                      opening-pairs " ")))
-        (when (equal (sp--get-overlay-text obeg) open)
-          (sp-wrap--finalize :open (or open-real open) close))))
-     ((and close (= 1 (length closing-pairs)))
-      (-let (((&plist :open open :close close) close))
-        (when (equal (sp--get-overlay-text obeg) close)
-          (sp-wrap--finalize :close open close))))
-     (t
-      (sp-wrap-cancel)))))
-
-(defun sp--escape-region (chars-to-escape beg end)
-  "Escape instances of CHARS-TO-ESCAPE between BEG and END.
-
-Return non-nil if at least one escaping was performed."
-  (save-excursion
-    (goto-char beg)
-    (let ((pattern (regexp-opt chars-to-escape))
-          (end-marker (set-marker (make-marker) end))
-          (re nil))
-      (while (re-search-forward pattern end-marker t)
-        (setq re t)
-        (save-excursion
-          (goto-char (match-beginning 0))
-          (insert sp-escape-char)))
-      re)))
-
-;; TODO: refactor the rewrap-sexp dependent parts out so that this
-;; function has less dependencies on the action
-;; TODO: add mode-dependent escape/unescape actions?
-(defun sp-escape-wrapped-region (id action _context)
-  "Escape quotes and special chars when a region is (re)wrapped."
-  (when (and sp-escape-wrapped-region
-             (memq action '(wrap rewrap-sexp)))
-    (sp-get sp-last-wrapped-region
-      (let* ((parent-delim (save-excursion
-                             (goto-char :beg)
-                             (sp-get (sp-get-string)
-                               (cond
-                                ((and (< :beg (point))
-                                      (< (point) :end))
-                                 :op)
-                                ((eq action 'rewrap-sexp)
-                                 (plist-get sp-handler-context :parent)))))))
-        (cond
-         ((equal parent-delim id)
-          (sp--escape-region (list id sp-escape-char) :beg :end))
-         (parent-delim
-          (sp--escape-region (list id) :beg-in :end-in))
-         (t
-          (sp--escape-region (list id sp-escape-char) :beg-in :end-in)))))))
-
-(defun sp-escape-quotes-after-insert (id action context)
-  "Escape quotes inserted via `sp-insert-pair'."
-  (when (and sp-escape-quotes-after-insert
-             (eq action 'insert)
-             ;; we test not being inside string because if we were
-             ;; before inserting the "" pair it is now split into two
-             ;; -> which moves us outside the pair
-             (not (eq context 'string))
-             ;; the inserted character must have string syntax, otherwise no "context" flip happens
-             (eq (char-syntax (aref id 0)) ?\"))
-    (let ((open id)
-          (close (sp-get-pair id :close)))
-      (sp--escape-region (list open close)
-                         (- (point) (length open))
-                         (+ (point) (length close))))))
-
-(defun sp--buffer-is-string-balanced-p ()
-  "Check if the buffer is string-balanced.
-
-A string-balanced buffer is one where where is no unclosed
-string, that is, the string state at the end of the buffer is
-\"closed\"."
-  (save-excursion
-    (save-restriction
-      (widen)
-      (goto-char (point-max))
-      (let ((syntax (sp--syntax-ppss)))
-        (or (< (car syntax) 0)
-            (nth 3 syntax))))))
-
-(defun sp-escape-open-delimiter ()
-  "Escape just inserted opening pair if `sp-insert-pair' was skipped.
-
-This is useful for escaping of \" inside strings when its pairing
-is disabled.  This way, we can control autoescape and closing
-delimiter insertion separately."
-  (-when-let (open (plist-get (sp--pair-to-insert 'escape) :open))
-    (when (and (sp--do-action-p open 'escape)
-               sp-point-inside-string
-               ;; do not escape if we are looking at a closing
-               ;; delimiter, that means we closed an opened string,
-               ;; most likely.
-               (sp--buffer-is-string-balanced-p))
-      (sp--escape-region (list open) (- (point) (length open)) (point)))))
-
-;; kept to not break people's config... remove later
-(defun sp-match-sgml-tags (tag)
-  "Split the html tag TAG at the first space and return its name."
-  (let* ((split (split-string tag " "))
-         (close (car split)))
-    close))
-(make-obsolete 'sp-match-sgml-tags "do not use this function as the tag system has been removed." "2015-02-07")
-
-(defun sp--is-number-cons (c)
-  "Return non-nil if C is a cons cell with numbers at `car' and `cdr'."
-  (and (consp c) (numberp (car c)) (numberp (cdr c))))
-
-;; TODO: more research is needed
-(defun sp--undo-pop-to-last-insertion-node ()
-  "Pop all undo info until an insertion node (beg . end) is found.
-
-This can potentially remove some undo important information."
-  (while (and buffer-undo-list
-              (or (null (car buffer-undo-list)) ;; is nil
-                  ;; is not undo action we're interested in
-                  (not (sp--is-number-cons (car buffer-undo-list)))))
-    (pop buffer-undo-list)))
-
-;; modified from: https://github.com/Fuco1/smartparens/issues/90#issuecomment-18800369
-(defun sp--split-last-insertion-undo (len)
-  "Split the last insertion node in the `buffer-undo-list' to
-include separate pair node."
-  (sp--undo-pop-to-last-insertion-node)
-  (when buffer-undo-list
-    (let* ((previous-undo-actions (cdr buffer-undo-list))
-           (beg (caar buffer-undo-list))
-           (end (cdar buffer-undo-list))
-           first-action second-action)
-      (unless (< beg (- end len))
-        ;; We need to go back more than one action.  Given the pairs
-        ;; are limited to 10 chars now and the chunks seem to be 20
-        ;; chars, we probably wouldn't need more.
-        (pop buffer-undo-list)
-        (sp--undo-pop-to-last-insertion-node)
-        (when buffer-undo-list
-          (setq beg (caar buffer-undo-list))
-          (setq previous-undo-actions (cdr buffer-undo-list))))
-      (setq first-action (cons beg (- end len)))
-      (setq second-action (cons (- end len) end))
-      (setq buffer-undo-list
-            (append (list nil second-action nil first-action)
-                    previous-undo-actions)))))
-
-;; TODO: remove ACTION argument and make the selection process more
-;; unified (see also sp--pair-to-wrap which depends on buffer state
-;; among other things)
-(defun sp--all-pairs-to-insert (&optional looking-fn action)
-  "Return all pairs that can be inserted at point.
-
-Return nil if such pair does not exist.
-
-Pairs inserted using a trigger have higher priority over pairs
-without a trigger and only one or the other list is returned.
-
-In other words, if any pair can be inserted using a trigger, only
-pairs insertable by trigger are returned.
-
-ACTION is an implementation detail.  Usually it has the value
-'insert when we determine pairs to insert.  On repeated wrapping
-however we pass the value 'wrap.  This will be refactored away in
-the upcoming version."
-  (setq looking-fn (or looking-fn 'sp--looking-back-p))
-  (setq action (or action 'insert))
-  (let ((working-pairs
-         ;; TODO: abstract this into a new "sp--get-..." hierarchy
-         (--filter (sp--do-action-p (plist-get it :open) action) sp-local-pairs)))
-    (-if-let (trigs (--filter (and (plist-get it :trigger)
-                                   (funcall looking-fn (sp--strict-regexp-quote (plist-get it :trigger))))
-                              working-pairs))
-        (cons :trigger trigs)
-      (-when-let (pairs (--filter (funcall looking-fn (sp--strict-regexp-quote (plist-get it :open))) working-pairs))
-        (cons :open pairs)))))
-
-(defun sp--pair-to-insert-comparator (prop a b)
-  (cond
-   ;; in case of triggers shorter always wins
-   ((eq prop :trigger)
-    (< (length (plist-get a :trigger)) (length (plist-get b :trigger))))
-   ;; Shorter wins only if the shorter's closing is a prefix of the
-   ;; longer's closing.  In other words, if we are looking at
-   ;; shorter's closing and we are trying to nest it.
-   (t
-    (if (< (length (plist-get a :open)) (length (plist-get b :open)))
-        (and (string-prefix-p (plist-get a :close) (plist-get b :close))
-             (sp--looking-at-p (plist-get a :close)))
-      (not (and (string-prefix-p (plist-get b :close) (plist-get a :close))
-                (sp--looking-at-p (plist-get b :close))))))))
-
-(defun sp--pair-to-insert (&optional action)
-  "Return pair that can be inserted at point.
-
-Return nil if such pair does not exist.
-
-If more triggers or opening pairs are possible select the
-shortest one."
-  (-when-let ((property . pairs) (sp--all-pairs-to-insert nil action))
-    (car (--sort (sp--pair-to-insert-comparator property it other) pairs))))
-
-(defun sp--longest-prefix-to-insert ()
-  "Return pair with the longest :open which can be inserted at point."
-  (-when-let (pairs (--filter (sp--looking-back-p (sp--strict-regexp-quote (plist-get it :open))) sp-local-pairs))
-    (car (--sort (> (length (plist-get it :open)) (length (plist-get other :open))) pairs))))
-
-(defun sp--pair-to-uninsert ()
-  "Return pair to uninsert.
-
-If the current to-be-inserted pair shares a prefix with
-another (shorter) pair, we must first remove the effect of
-inserting its closing pair before inserting the current one.
-
-The previously inserted pair must be the one with the longest
-common prefix excluding the current pair."
-  (-when-let (lp (sp--longest-prefix-to-insert))
-    (save-excursion
-      (backward-char (length (plist-get lp :open)))
-      (-when-let ((property . pairs) (sp--all-pairs-to-insert 'sp--looking-at-p))
-        (car (--sort (> (length (plist-get it property)) (length (plist-get other property)))
-                     ;; remove pairs whose open is longer than the
-                     ;; current longest possible prefix---otherwise
-                     ;; they would overflow to the closing pair
-                     ;; TODO: this ignores the possibility when lp is
-                     ;; inserted by trigger.  We assume triggers are
-                     ;; shorter than the openings and this situation,
-                     ;; if ever, should be very rare
-                     (--remove (>= (length (plist-get it :open))
-                                   (length (plist-get lp :open))) pairs)))))))
-
-(defun sp--insert-pair-get-pair-info (active-pair)
-  "Get basic info about the to-be-inserted pair."
-  (let ((open-pair (plist-get active-pair :open)))
-    (list
-     open-pair
-     (plist-get active-pair :close)
-     (-if-let (tr (plist-get active-pair :trigger))
-         (if (sp--looking-back-p (sp--strict-regexp-quote tr)) tr open-pair)
-       open-pair))))
-
-(defun sp-insert-pair (&optional pair)
-  "Automatically insert the closing pair if it is allowed in current context.
-
-If PAIR is provided, use this as pair ID instead of looking
-through the recent history of pressed keys.
-
-You can disable this feature completely for all modes and all pairs by
-setting `sp-autoinsert-pair' to nil.
-
-You can globally disable insertion of closing pair if point is
-followed by the matching opening pair.  It is disabled by
-default."
-  (sp--with-case-sensitive
-    (catch 'done
-      (-let* ((active-pair (unwind-protect
-                               ;; This fake insertion manufactures proper
-                               ;; context for the tests below... in effect
-                               ;; we must make it look as if the user
-                               ;; typed in the opening part themselves
-                               ;; TODO: it is duplicated in the test
-                               ;; below, maybe it wouldn't hurt to
-                               ;; restructure this function a bit
-                               (progn
-                                 (when pair (insert pair))
-                                 (sp--pair-to-insert))
-                             (when pair (delete-char (- (length pair))))))
-              ((open-pair close-pair trig) (sp--insert-pair-get-pair-info active-pair)))
-        ;; We are not looking at a closing delimiter which might mean we
-        ;; are in an already existing sexp.  If the to-be-inserted pair
-        ;; has a prefix which is also a pair we migth be extending the
-        ;; opener of a sexp with this opener.  In which case we should
-        ;; probably rewrap.
-        (unless (sp--looking-at-p (sp--get-closing-regexp))
-          (when (and open-pair
-                     (= 1 (- (point) sp-pre-command-point)))
-            (-when-let (prefix-pair (sp-get-pair (substring open-pair 0 -1)))
-              (let ((last-char-of-open-pair (substring open-pair -1)))
-                (unwind-protect
-                    (progn
-                      (delete-char -1)
-                      (--when-let (sp-get-thing t)
-                        (save-excursion
-                          (sp-get it
-                            (delete-region :end-in :end)
-                            (goto-char :end-in)
-                            (insert close-pair)))
-                        (throw 'done t)))
-                  (insert last-char-of-open-pair))))))
-        (if (not (unwind-protect
-                     (progn
-                       (when pair (insert pair))
-                       ;; TODO: all these tests must go into `sp--pair-to-insert'
-                       (and sp-autoinsert-pair
-                            active-pair
-                            (if (memq sp-autoskip-closing-pair '(always always-end))
-                                (or (not (equal open-pair close-pair))
-                                    (not (sp-skip-closing-pair nil t)))
-                              t)
-                            (sp--do-action-p open-pair 'insert t)
-                            ;; was sp-autoinsert-if-followed-by-same
-                            (or (not (sp--get-active-overlay 'pair))
-                                (not (sp--looking-at (sp--strict-regexp-quote open-pair)))
-                                (and (equal open-pair close-pair)
-                                     (eq sp-last-operation 'sp-insert-pair)
-                                     (save-excursion
-                                       (backward-char (length trig))
-                                       (sp--looking-back (sp--strict-regexp-quote open-pair))))
-                                (not (equal open-pair close-pair)))))
-                   (when pair (delete-char (- (length pair))))))
-            ;; if this pair could not be inserted, we try the procedure
-            ;; again with this pair removed from sp-pair-list to give
-            ;; chance to other pairs sharing a common suffix (for
-            ;; example \[ and [)
-            (let ((new-sp-pair-list (--remove (equal (car it) open-pair) sp-pair-list))
-                  (new-sp-local-pairs (--remove (equal (plist-get it :open) open-pair) sp-local-pairs)))
-              (when (> (length sp-pair-list) (length new-sp-pair-list))
-                (let ((sp-pair-list new-sp-pair-list)
-                      (sp-local-pairs new-sp-local-pairs))
-                  (sp-insert-pair))))
-          ;; setup the delayed insertion here.
-          (if (sp-get-pair open-pair :when-cond)
-              (progn
-                (setq sp-delayed-pair (cons open-pair (- (point) (length open-pair))))
-                (setq sp-last-operation 'sp-insert-pair-delayed))
-            (unless pair (delete-char (- (length trig))))
-            (insert open-pair)
-            (sp--run-hook-with-args open-pair :pre-handlers 'insert)
-            ;; The re-binding of these dynamic variables is a hack to
-            ;; combat the similar rebinding in the branch above where
-            ;; we retry `sp-insert-pair' with some pairs removed.
-            ;; This however causes them to be uninserted improperly,
-            ;; so for this one operation we need to restore the state
-            ;; to the "full" pair list.  TODO: in the future we might
-            ;; want to pass the state around explicitly so we have
-            ;; better control.
-            (--when-let (let ((sp-pair-list (sp-state-pair-list sp-state))
-                              (sp-local-pairs (sp-state-local-pairs sp-state)))
-                          (sp--pair-to-uninsert))
-              (let ((cl (plist-get it :close)))
-                (when (and (sp--looking-at-p (sp--strict-regexp-quote cl))
-                           (> (- (length close-pair) (length cl)) 0))
-                  (delete-char (length cl)))))
-            (insert close-pair)
-            (backward-char (length close-pair))
-            (sp--pair-overlay-create (- (point) (length open-pair))
-                                     (+ (point) (length close-pair))
-                                     open-pair)
-            (when sp-undo-pairs-separately
-              (sp--split-last-insertion-undo (+ (length open-pair) (length close-pair)))
-              ;; TODO: abc\{abc\} undo undo \{asd\} . next undo removes the
-              ;; entire \{asd\} if we do not insert two nils here.
-              ;; Normally, repeated nils are ignored so it shouldn't
-              ;; matter.  It would still be useful to inspect further.
-              (push nil buffer-undo-list)
-              (push nil buffer-undo-list))
-            (sp--run-hook-with-args open-pair :post-handlers 'insert)
-            (setq sp-last-inserted-pair open-pair)
-            (setf (sp-state-delayed-hook sp-state) (cons :next open-pair))
-            (setq sp-last-operation 'sp-insert-pair)))))))
-
-(defun sp--wrap-repeat-last (active-pair)
-  "If the last operation was a wrap and `sp-wrap-repeat-last' is
-non-nil, repeat the wrapping with this pair around the last
-active region."
-  (unless (= 0 sp-wrap-repeat-last)
-    (when sp-last-wrapped-region
-      (let* ((b (sp-get sp-last-wrapped-region :beg))
-             (e (sp-get sp-last-wrapped-region :end))
-             (op (sp-get sp-last-wrapped-region :op))
-             (oplen (length op))
-             (cllen (sp-get sp-last-wrapped-region :cl-l))
-             (acolen (length (car active-pair))))
-        (when (and
-               (cond
-                ((= 1 sp-wrap-repeat-last)
-                 (equal (car active-pair) op))
-                ((= 2 sp-wrap-repeat-last)))
-               (memq sp-last-operation '(sp-self-insert sp-wrap-region))
-               (or (= (point) (+ b oplen acolen))
-                   (= (point) e)))
-          (delete-char (- acolen))
-          (if (< (point) e)
-              (progn (goto-char (+ b oplen))
-                     (insert (car active-pair))
-                     (goto-char (- e cllen))
-                     (insert (cdr active-pair))
-                     (setq sp-last-wrapped-region
-                           (sp--get-last-wraped-region
-                            (+ b oplen) (point)
-                            (car active-pair) (cdr active-pair)))
-                     (goto-char (+ b oplen acolen)))
-            (goto-char b)
-            (insert (car active-pair))
-            (goto-char e)
-            (insert (cdr active-pair))
-            (setq sp-last-wrapped-region
-                  (sp--get-last-wraped-region
-                   b e (car active-pair) (cdr active-pair))))
-          (setq sp-last-operation 'sp-wrap-region)
-          (sp--run-hook-with-args (car active-pair) :post-handlers 'wrap)
-          sp-last-operation)))))
-
-(defun sp--char-is-part-of-stringlike (char)
-  "Return non-nil if CHAR is part of a string-like delimiter of length 1."
-  (->> (sp--get-stringlike-list)
-    (--filter (= 1 (length (cdr it))))
-    (-map 'car)
-    (--any? (string-match-p (regexp-quote char) it))))
-
-(defun sp--char-is-part-of-closing (char &optional pair-list)
-  "Return non-nil if CHAR is part of a pair delimiter of length 1.
-Specifically, return the pair for which CHAR is the closing
-delimiter."
-  (let ((regexp (regexp-quote char)))
-    (->> (or pair-list (sp--get-pair-list))
-         (--filter (= 1 (length (cdr it))))
-         (--find (string-match-p regexp (cdr it))))))
-
-;; TODO: this only supports single-char delimiters.  Maybe it should
-;; that that way.
-(defun sp-skip-closing-pair (&optional last test-only)
-  "Automatically skip the closing delimiters of pairs.
-
-If point is inside an inserted pair, and the user only moved
-forward with point (that is, only inserted text), if the closing
-pair is typed, we shouldn't insert it again but skip forward.  We
-call this state \"active sexp\".  The setting
-`sp-cancel-autoskip-on-backward-movement' controls when an active
-expression become inactive.
-
-For example, pressing ( is followed by inserting the pair (|).  If
-we then type 'word' and follow by ), the result should be (word)|
-instead of (word)|).
-
-This behaviour can be customized by various settings of
-`sp-autoskip-closing-pair' and `sp-autoskip-opening-pair'.
-
-Additionally, this behaviour can be selectively disabled for
-specific pairs by removing their \"autoskip\" action.  You can
-achieve this by using `sp-pair' or `sp-local-pair' with
-\":actions '(:rem autoskip)\"."
-  (sp--with-case-sensitive
-    (when (or (and (eq sp-autoskip-closing-pair t)
-                   sp-pair-overlay-list
-                   (sp--get-active-overlay 'pair))
-              (memq sp-autoskip-closing-pair '(always always-end)))
-      ;; TODO: ugly hack to override 'navigate with 'autoskip.  Each of
-      ;; these submodules should set-up their own environment somehow
-      ;; and thread it through the entire computation
-      (cl-letf (((symbol-function 'sp--get-allowed-stringlike-list)
-                 (lambda ()
-                   (--filter (and (sp--do-action-p (car it) 'autoskip)
-                                  (equal (car it) (cdr it))) sp-pair-list))))
-        ;; these two are pretty hackish ~_~
-        (cl-labels ((get-sexp
-                     (last)
-                     (delete-char -1)
-                     (insert " ")
-                     (prog1 (sp-get-sexp)
-                       (delete-char -1)
-                       (insert last)))
-                    (get-enclosing-sexp
-                     (last)
-                     (delete-char -1)
-                     (insert " ")
-                     (prog1 (sp-get-enclosing-sexp)
-                       (delete-char -1)
-                       (insert last))))
-          (let ((last (or last (sp--single-key-description last-command-event))))
-            (-if-let (active-sexp
-                      (cond
-                       ((-when-let* ((ov (sp--get-active-overlay 'pair))
-                                     (op (overlay-get ov 'pair-id))
-                                     (cl (cdr (assoc op sp-pair-list))))
-                          ;; if the sexp is active, we are inside it.
-                          (when (and (= 1 (length op))
-                                     (equal last cl))
-                            (list :beg (overlay-start ov)
-                                  :end (overlay-end ov)
-                                  :op op
-                                  :cl cl
-                                  :prefix ""
-                                  :suffix ""))))
-                       ((sp--char-is-part-of-stringlike last)
-                        ;; a part of closing delimiter is typed. There are four
-                        ;; options now:
-                        ;; - we are inside the sexp, at its end
-                        ;; - we are inside the sexp, somewhere in the middle
-                        ;; - we are outside, in front of a sexp
-                        ;; - we are outside, somewhere between sexps
-                        (cond
-                         ((and (sp--looking-at (sp--get-stringlike-regexp))
-                               (not (sp--skip-match-p (match-string-no-properties 0)
-                                                      (match-beginning 0)
-                                                      (match-end 0))))
-                          ;; if we're looking at the delimiter, and it is valid in
-                          ;; current context, get the sexp.
-                          (get-sexp last))
-                         ;; here comes the feature when we're somewhere in the
-                         ;; middle of the sexp (or outside), if ever supported.
-                         ))
-                       ((sp--char-is-part-of-closing last)
-                        (cond
-                         ((and (sp--looking-at (sp--get-closing-regexp))
-                               (not (sp--skip-match-p (match-string-no-properties 0)
-                                                      (match-beginning 0)
-                                                      (match-end 0))))
-                          (get-sexp last))
-                         ((eq sp-autoskip-closing-pair 'always)
-                          (get-enclosing-sexp last))))))
-                (if (and active-sexp
-                         (equal (sp-get active-sexp :cl) last)
-                         (sp--do-action-p (sp-get active-sexp :op) 'autoskip)
-                         ;; if the point is inside string and preceded
-                         ;; by an odd number of `sp-escape-char's, we
-                         ;; should not skip as that would leave the
-                         ;; string broken.
-                         (or (not (sp-point-in-string))
-                             (not (sp-char-is-escaped-p (1- (point))))))
-                    (-when-let (re (cond
-                                    ((= (point) (sp-get active-sexp :beg))
-                                     ;; we are in front of a string-like sexp
-                                     (when sp-autoskip-opening-pair
-                                       (if test-only t
-                                         (delete-char -1)
-                                         (forward-char)
-                                         (setq sp-last-operation 'sp-skip-closing-pair))))
-                                    ((= (point) (sp-get active-sexp :end-in))
-                                     (if test-only t
-                                       (delete-char 1)
-                                       (setq sp-last-operation 'sp-skip-closing-pair)))
-                                    ((sp-get active-sexp
-                                       (and (> (point) :beg-in)
-                                            (< (point) :end-in)))
-                                     (if test-only t
-                                       (delete-char -1)
-                                       (sp-up-sexp nil t)))))
-                      (unless (or test-only
-                                  sp-buffer-modified-p)
-                        (set-buffer-modified-p nil))
-                      (unless test-only
-                        (sp--run-hook-with-args (sp-get active-sexp :op) :post-handlers 'skip-closing-pair))
-                      re)
-                  ;; if we can't skip and are in strict mode we must not
-                  ;; insert anything if it is a closing character
-                  (sp--inhibit-insertion-of-closing-delim last))
-              (sp--inhibit-insertion-of-closing-delim last))))))))
-
-(defun sp--inhibit-insertion-of-closing-delim (last)
-  "Inhibit insertion of closing delimiter in `smartparens-strict-mode'.
-
-If we are not inserting inside string or a comment, and the LAST
-inserted character is closing delimiter for a pair that performs
-autoskip, and we can not jump out of its enclosing sexp (i.e. it
-does not match), we are not allowed to insert it literally
-because it would break the balance; so we delete the
-just-inserted character."
-  (when (and smartparens-strict-mode
-             (-when-let (pair (sp--char-is-part-of-closing
-                               last (sp--get-allowed-pair-list)))
-               (memq 'autoskip (sp-get-pair (car pair) :actions)))
-             (not (sp-point-in-string-or-comment)))
-    (delete-char -1)
-    (set-buffer-modified-p sp-buffer-modified-p)
-    (sp-message :cant-insert-closing-delimiter)
-    nil))
-
-(defun sp-delete-pair (&optional arg)
-  "Automatically delete opening or closing pair, or both, depending on
-position of point.
-
-If the point is inside an empty pair, automatically delete both.  That
-is, [(|) turns to [|, [\{|\} turns to [|.  Can be disabled by setting
-`sp-autodelete-pair' to nil.
-
-If the point is behind a closing pair or behind an opening pair delete
-it as a whole.  That is, \{\}| turns to \{|, \{| turns to |.  Can be
-disabled by setting `sp-autodelete-closing-pair' and
-`sp-autodelete-opening-pair' to nil.
-
-If the last operation was a wrap and `sp-autodelete-wrap' is
-enabled, invoking this function will unwrap the expression, that
-is remove the just added wrapping."
-  ;; NOTE: Only use delete-char inside this function, so we
-  ;; don't activate the advice recursively!
-
-  ;; only activate if argument is 1 (this is 0-th argument of the
-  ;; delete-backward-char), otherwise the user wants to delete
-  ;; multiple character, so let him do that
-  (sp--with-case-sensitive
-    (when (and (= arg 1)
-               smartparens-mode)
-      (if (and sp-autodelete-wrap
-               (eq sp-last-operation 'sp-wrap-region))
-          (let ((p (point))
-                (b (sp-get sp-last-wrapped-region :beg))
-                (e (sp-get sp-last-wrapped-region :end))
-                (o (sp-get sp-last-wrapped-region :op-l))
-                (c (sp-get sp-last-wrapped-region :cl-l)))
-            ;; if the last operation was `sp-wrap-region', and we are at
-            ;; the position of either opening or closing pair, delete the
-            ;; just-inserted pair
-            (when (or (= p (+ b o))
-                      (= p e))
-              (insert "x") ;dummy char to account for the regularly deleted one
-              (save-excursion
-                (goto-char e)
-                (delete-char (- c))
-                (goto-char b)
-                (delete-char o))
-              (setq sp-last-operation 'sp-delete-pair-wrap)))
-        (let ((p (point))
-              (inside-pair (--first (and (sp--looking-back (sp--strict-regexp-quote (car it)))
-                                         (sp--looking-at (concat "[ \n\t]*" (sp--strict-regexp-quote (cdr it)))))
-                                    sp-pair-list))
-              (behind-pair (--first (sp--looking-back (sp--strict-regexp-quote (cdr it))) sp-pair-list))
-              (opening-pair (--first (sp--looking-back (sp--strict-regexp-quote (car it))) sp-pair-list)))
-
-          (cond
-           ;; we're just before the closing quote of a string.  If there
-           ;; is an opening or closing pair behind the point, remove
-           ;; it.  This is only really relevant if the pair ends in the
-           ;; same character as string quote.  We almost never want to
-           ;; delete it as an autopair (it would "open up the string").
-           ;; So, word\"|" and <backspace> should produce word\|" or
-           ;; word|" (if \" is autopair) instead of word\|.
-           ((and (sp-point-in-string)
-                 (not (sp-point-in-string (1+ p)))
-                 (sp-point-in-string (1- p))) ;; the string isn't empty
-            (cond ;; oh, you ugly duplication :/
-             ((and behind-pair sp-autodelete-closing-pair)
-              (delete-char (- (1- (length (car behind-pair)))))
-              (setq sp-last-operation 'sp-delete-pair-closing))
-             ((and opening-pair sp-autodelete-opening-pair)
-              (delete-char (- (1- (length (car opening-pair)))))
-              (setq sp-last-operation 'sp-delete-pair-opening))))
-           ;; we're inside a pair
-           ((and inside-pair sp-autodelete-pair)
-            (let* ((beg (save-excursion
-                          (search-backward (car inside-pair))))
-                   (end (save-excursion
-                          (search-forward (cdr inside-pair))))
-                   (cs (sp--get-context p))
-                   (ce (sp--get-context end))
-                   (current-sexp (sp-get-sexp)))
-              (when (and (or (not (eq cs 'comment)) ;; a => b <=> ~a v b
-                             (eq ce 'comment))
-                         (eq beg (sp-get current-sexp :beg))
-                         (eq end (sp-get current-sexp :end))
-                         (equal (sp-get current-sexp :op) (car inside-pair))
-                         (equal (sp-get current-sexp :cl) (cdr inside-pair)))
-                (delete-char (- end p))
-                (delete-char (- (1- (length (car inside-pair)))))
-                (setq sp-last-operation 'sp-delete-pair))))
-           ;; we're behind a closing pair
-           ((and behind-pair sp-autodelete-closing-pair)
-            (delete-char (- (1- (length (cdr behind-pair)))))
-            (setq sp-last-operation 'sp-delete-pair-closing))
-           ;; we're behind an opening pair and there's no closing pair
-           ((and opening-pair sp-autodelete-opening-pair)
-            (delete-char (- (1- (length (car opening-pair)))))
-            (setq sp-last-operation 'sp-delete-pair-opening))))))))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Navigation
-
-(defun sp--looking-at (regexp)
-  "Like `looking-at', but always case sensitive."
-  (sp--with-case-sensitive
-    (looking-at regexp)))
-
-(defun sp--looking-at-p (regexp)
-  "Like `looking-at-p', but always case sensitive."
-  (sp--with-case-sensitive
-    (looking-at-p regexp)))
-
-(defun sp--looking-back (regexp &optional limit not-greedy)
-  "Return non-nil if text before point matches regular expression REGEXP.
-
-With optional argument LIMIT search only that many characters
-backward.  If LIMIT is nil, default to `sp-max-pair-length'.
-
-If optional argument NON-GREEDY is t search for any matching
-sequence, not necessarily the longest possible."
-  (setq limit (or limit sp-max-pair-length))
-  (sp--with-case-sensitive
-    (let ((from (max 1 (- (point) limit)))
-          (to (point))
-          (greedy (not not-greedy))
-          has-match)
-      (if greedy
-          (save-excursion
-            (goto-char from)
-            (save-match-data
-              (while (and (not has-match) (< (point) to))
-                ;; don't use looking-at because we can't limit that search
-                (if (and (save-excursion (re-search-forward regexp to t))
-                         (= (match-end 0) to))
-                    (setq has-match (match-data))
-                  (forward-char 1))))
-            (when has-match
-              (set-match-data has-match)
-              t))
-        (save-excursion
-          (not (null (search-backward-regexp (concat "\\(?:" regexp "\\)\\=") from t))))))))
-
-(defun sp--looking-back-p (regexp &optional limit not-greedy)
-  "Same as `sp--looking-back' but do not change the match data."
-  (save-match-data
-    (sp--looking-back regexp limit not-greedy)))
-
-(defun sp--search-backward-regexp (regexp &optional bound noerror count)
-  "Works just like `search-backward-regexp', but returns the
-longest possible match.  That means that searching for
-\"defun|fun\" backwards would return \"defun\" instead of
-\"fun\", which would be matched first.
-
-This is an internal function.  Only use this for searching for
-pairs!"
-  (setq count (or count 1))
-  (setq bound (or (sp--get-backward-bound) bound))
-  (sp--with-case-sensitive
-    (let (r)
-      (while (> count 0)
-        (when (search-backward-regexp regexp bound noerror)
-          (goto-char (match-end 0))
-          (if (sp--looking-back regexp)
-              (setq r (goto-char (match-beginning 0)))
-            (if noerror nil (error "Search failed: %s" regexp))))
-        (setq count (1- count)))
-      r)))
-
-(defun sp--search-forward-regexp (regexp &optional bound noerror count)
-  "Just like `search-forward-regexp', but always case sensitive."
-  (setq bound (or (sp--get-forward-bound) bound))
-  (sp--with-case-sensitive
-    (search-forward-regexp regexp bound noerror count)))
-
-(defun sp--search-forward-in-context (regexp &optional bound noerror count)
-  "Just like `sp--search-forward-regexp' but only accept results in same context.
-
-The context at point is considered the reference context."
-  (let ((context (sp--get-context))
-        (re))
-    (--dotimes (or count 1)
-      (save-excursion
-        (while (and (setq re (sp--search-forward-regexp regexp bound noerror))
-                    (not (eq (sp--get-context) context)))))
-      (when re (goto-char re)))
-    re))
-
-(defun sp--search-backward-in-context (regexp &optional bound noerror count)
-  "Just like `sp--search-backward-regexp' but only accept results in same context.
-
-The context at point is considered the reference context."
-  (let ((context (sp--get-context))
-        (re))
-    (--dotimes (or count 1)
-      (save-excursion
-        (while (and (setq re (sp--search-backward-regexp regexp bound noerror))
-                    (not (eq (sp--get-context) context))))
-        (when re (goto-char re))))
-    re))
-
-(defun sp-get-quoted-string-bounds (&optional point)
-  "Return the bounds of the string around POINT.
-
-POINT defaults to `point'.
-
-If the point is not inside a quoted string, return nil."
-  (setq point (or point (point)))
-  (save-excursion
-    (goto-char point)
-    (let ((parse-data (syntax-ppss)))
-      (when (nth 3 parse-data)
-        (let* ((open (nth 8 parse-data))
-               (close (save-excursion
-                        (parse-partial-sexp
-                         (point) (point-max)
-                         nil nil parse-data 'syntax-table)
-                        (point))))
-          (cons open close))))))
-
-;; TODO: the repeated conditions are ugly, refactor this!
-(defun sp-get-comment-bounds ()
-  "If the point is inside a comment, return its bounds."
-  (when (or (sp-point-in-comment)
-            (looking-at "[[:space:]]+\\s<"))
-    (let ((open (save-excursion
-                  (--when-let (nth 8 (sp--syntax-ppss))
-                    (goto-char it))
-                  (while (and (not (bobp))
-                              (or (when (sp-point-in-comment)
-                                    (backward-char 1)
-                                    t)
-                                  (when (save-excursion
-                                          (beginning-of-line)
-                                          (looking-at "^[[:space:]]+\\s<"))
-                                    (when (>= (forward-line -1) 0)
-                                      (end-of-line))
-                                    t))))
-                  ;; this means we got here by `sp-point-in-comment' condition
-                  (unless (and (bobp) (sp-point-in-comment))
-                    (forward-char))
-                  (point)))
-          (close (save-excursion
-                   (while (and (not (eobp))
-                               (or (sp-point-in-comment)
-                                   (looking-at "[[:space:]]+\\s<")))
-                     (forward-char 1))
-                   (let ((pp (1- (point))))
-                     (when (not (or (eobp)
-                                    (sp-point-in-comment)
-                                    (looking-at "[[:space:]]+\\s<")
-                                    (and (eq (char-syntax
-                                              (char-after pp)) ?>)
-                                         (not (eq (char-after pp) ?\n)))
-                                    (/= (logand
-                                         (lsh 1 18)
-                                         (car (syntax-after pp))) 0)
-                                    (/= (logand
-                                         (lsh 1 19)
-                                         (car (syntax-after pp))) 0)))
-                       (backward-char 1)))
-                   (point))))
-      (cons open close))))
-
-(defun sp--get-string-or-comment-bounds ()
-  "Get the bounds of string or comment the point is in."
-  (or (sp-get-quoted-string-bounds)
-      (sp-get-comment-bounds)))
-
-(defmacro sp--search-and-save-match (search-fn pattern bound res beg end str)
-  "Save the last match info."
-  `(progn
-     (setq ,res (funcall ,search-fn ,pattern ,bound t))
-     (when ,res
-       (setq ,beg (match-beginning 0))
-       (setq ,end (match-end 0))
-       (setq ,str (match-string 0)))
-     ,res))
-
-(cl-defun sp--skip-match-p (ms mb me
-                               &key
-                               (global-skip (cdr (--first (memq major-mode (car it)) sp-navigate-skip-match)))
-                               (pair-skip (sp-get-pair ms :skip-match)))
-  "Return non-nil if this match should be skipped.
-
-This function uses two tests, one specified in
-`sp-navigate-skip-match' (this is global setting for all pairs in
-given major mode) and by a function specified in :skip-match
-property of the pair.
-
-If you are calling this function in a heavy loop, you can supply
-the test functions as keyword arguments to speed up the lookup."
-  (save-match-data
-    (or (when global-skip (funcall global-skip ms mb me))
-        (when pair-skip (funcall pair-skip ms mb me)))))
-
-(defmacro sp--valid-initial-delimiter-p (form)
-  "Test the last match using `sp--skip-match-p'.  The form should
-be a function call that sets the match data."
-  (declare (debug (form)))
-  (let ((match (make-symbol "match"))
-        (pair-skip (make-symbol "pair-skip")))
-    `(and ,form
-          (let* ((,match (match-string 0))
-                 (,pair-skip (or (sp-get-pair ,match :skip-match)
-                                 (sp-get-pair (car (--first
-                                                    (equal (cdr it) ,match)
-                                                    sp-pair-list))
-                                              :skip-match))))
-            (not (sp--skip-match-p
-                  ,match
-                  (match-beginning 0)
-                  (match-end 0)
-                  :pair-skip ,pair-skip))))))
-
-(defun sp--elisp-skip-match (ms mb _me)
-  "Function used to test for escapes in lisp modes.
-
-Non-nil return value means to skip the result."
-  (and ms
-       (> mb 1)
-       (save-excursion
-         (goto-char mb)
-         (save-match-data
-           (or (and (sp--looking-back "\\\\" 1 t)
-                    ;; it might be a part of ?\\ token
-                    (not (sp--looking-back "\\?\\\\\\\\" 3 t)))
-               (and (not (sp-point-in-string-or-comment))
-                    (sp--looking-back "\\?" 1 t) ;;TODO surely we can do better
-                    (not (sp--looking-back "\\\\\\?" 2 t))
-                    (not (sp--looking-back "\\s_\\?" 2 t))
-                    (not (sp--looking-back "\\sw\\?" 2 t))))))))
-
-(defun sp--backslash-skip-match (ms mb _me)
-  (and ms
-       (save-excursion
-         (goto-char mb)
-         (sp--looking-back "\\\\" 1 t))))
-
-;; TODO: since this function is used for all the navigation, we should
-;; optimize it a lot! Get some elisp profiler! Also, we should split
-;; this into smaller functions (esp. the "first expression search"
-;; business)
-(defun sp-get-paired-expression (&optional back)
-  "Find the nearest balanced pair expression after point.
-
-The expressions considered are those delimited by pairs on
-`sp-pair-list'."
-  (sp--with-case-sensitive
-    (save-excursion
-      (let* ((search-fn (if (not back) 'sp--search-forward-regexp 'sp--search-backward-regexp))
-             (global-skip-fn (cdr (--first (memq major-mode (car it)) sp-navigate-skip-match)))
-             (pair-list (sp--get-allowed-pair-list))
-             ;; TODO UGLY HACK!!!  When the situation is:
-             ;; ..)|;; comment
-             ;; the context the point gets is the comment.  But if we
-             ;; are searching backward, that is incorrect, because in
-             ;; that case we want the context of the closing pair.
-             ;; Therefore, if the direction is backward, we need to move
-             ;; one point backward, then test the comment/string thing,
-             ;; then compute the correct bounds, and then restore the
-             ;; point so the search will pick up the )
-
-             ;; However, we need to distinguish the cases where we are
-             ;; in comment and trying to get out, and when we are in any
-             ;; context and we jump into string (in that case, we should
-             ;; report code context!).  For example:
-             ;;   "foo"|;bar
-             ;; or
-             ;;   "foo"|bar
-             ;; should both report code context
-             ;; and "|(foo)" should report string context.
-
-             ;; Beware the case when we have a string inside a comment, like
-             ;;   (foo) ;; bar "baz"| qux
-             ;; In this case we want to report comment context even when
-             ;; backing into the "" (which however is commented)
-
-             ;; Yet another case is when we are not in a comment but
-             ;; directly after one and we search backwards, consider:
-             ;;   /* foo bar */|
-             ;; in C-like language.  In this case, we want to report the
-             ;; context as comment.
-
-             ;; In some languages, special paren syntax with a prefix
-             ;; serves to mark strings.  This means that regular
-             ;; delimiters, like () are used to delimit strings.  For
-             ;; example, in ruby the sequence %w(...) signifies a
-             ;; string.  If the point is after such a sequence and we
-             ;; are searching back, we must use the string context,
-             ;; because the paren is now a string delimiter.  This is
-             ;; usually implemented with "string fence" syntax, so we
-             ;; will simply check for that.
-
-             ;; Thanks for being consistent at handling syntax bounds Emacs!
-             (in-string-or-comment (if back
-                                       (let ((in-comment (sp-point-in-comment))
-                                             (in-string (sp-point-in-string)))
-                                         (save-excursion
-                                           (unless (= (point) (point-min))
-                                             (backward-char)
-                                             (cond
-                                              ((eq (car (syntax-after (point))) 15) (point))
-                                              (in-comment (when (sp-point-in-comment) (1+ (point))))
-                                              ((and (not in-comment) (sp-point-in-comment)) (1+ (point)))
-                                              ((or in-comment in-string) (1+ (point)))))))
-                                     (when (sp-point-in-string-or-comment) (point))))
-             (string-bounds (and in-string-or-comment
-                                 (progn
-                                   (goto-char in-string-or-comment)
-                                   (sp--get-string-or-comment-bounds))))
-             (fw-bound (if in-string-or-comment (cdr string-bounds) (point-max)))
-             (bw-bound (if in-string-or-comment (car string-bounds) (point-min)))
-             s e forward mb me ms r done
-             possible-pairs possible-interfering-pairs possible-ops possible-cls)
-        (while (and (not done)
-                    (sp--search-and-save-match
-                     search-fn
-                     ;; #556 The regexp we use here might exclude or
-                     ;; include extra pairs in case the next match is in
-                     ;; a different context.  There's no way to know
-                     ;; beforehand where we land, so we need to consider
-                     ;; *all* pairs in the search and then re-check with
-                     ;; a regexp based on the context of the found pair
-                     (sp--get-allowed-regexp
-                      ;; use all the pairs!
-                      (sp--get-pair-list))
-                     (if back bw-bound fw-bound)
-                     r mb me ms))
-          ;; search for the first opening pair.  Here, only consider tags
-          ;; that are allowed in the current context.
-          (unless (or (not (save-excursion
-                             (if back
-                                 (progn
-                                   (goto-char me)
-                                   (sp--looking-back-p (sp--get-allowed-regexp)))
-                               (goto-char mb)
-                               (sp--looking-at-p (sp--get-allowed-regexp)))))
-                      (sp--skip-match-p ms mb me :global-skip global-skip-fn))
-            ;; if the point originally wasn't inside of a string or comment
-            ;; but now is, jump out of the string/comment and only search
-            ;; the code.  This ensures that the comments and strings are
-            ;; skipped if we search inside code.
-            (if (and (not in-string-or-comment)
-                     (if back
-                         ;; When searching back, the point lands on the
-                         ;; first character of whatever pair we've found
-                         ;; and it is in the proper context, for example
-                         ;; "|(foo)"
-                         (sp-point-in-string-or-comment)
-                       ;; However, when searching forward, the point
-                       ;; lands after the last char of the pair so to get
-                       ;; its context we must back up one character
-                       (sp-point-in-string-or-comment (1- (point)))))
-                (-if-let (bounds (sp--get-string-or-comment-bounds))
-                    (let ((jump-to (if back (car bounds) (cdr bounds))))
-                      (goto-char jump-to)
-                      ;; Can't move out of comment because eob, #427
-                      (when (eobp)
-                        (setq done t)))
-                  (setq done t))
-              (setq done t))))
-        (when r
-          (setq possible-pairs (--filter (or (equal ms (car it))
-                                             (equal ms (cdr it)))
-                                         pair-list))
-          (setq possible-ops (-map 'car possible-pairs))
-          (setq possible-cls (-map 'cdr possible-pairs))
-          (setq pair-list (-difference pair-list possible-pairs))
-          (setq possible-interfering-pairs pair-list)
-          (while possible-interfering-pairs
-            (setq possible-interfering-pairs
-                  (--filter (or (-contains? possible-ops (car it))
-                                (-contains? possible-cls (cdr it)))
-                            pair-list))
-            (setq pair-list (-difference pair-list possible-interfering-pairs))
-            (setq possible-ops (append possible-ops (-map 'car possible-interfering-pairs)))
-            (setq possible-cls (append possible-cls (-map 'cdr possible-interfering-pairs))))
-          (when (--any? (equal ms it) possible-ops)
-            (setq forward t)
-            (setq s mb)
-            (when back
-              (forward-char (length ms))))
-          (when (--any? (equal ms it) possible-cls)
-            (setq forward nil)
-            (setq e me)
-            (when (not back)
-              (backward-char (length ms))))
-          (let* ((opens (if forward possible-ops possible-cls))
-                 (closes (if forward possible-cls possible-ops))
-                 (needle (sp--strict-regexp-opt (append possible-ops possible-cls)))
-                 (search-fn (if forward 'sp--search-forward-regexp 'sp--search-backward-regexp))
-                 (depth 1)
-                 (eof (if forward 'eobp 'bobp))
-                 (b (if forward fw-bound bw-bound))
-                 (open (substring-no-properties ms))
-                 (close (substring-no-properties ms))
-                 (failure (funcall eof))
-                 (skip-match-pair-fns (->> possible-ops
-                                           (--mapcat (-when-let (smf (sp-get-pair it :skip-match))
-                                                       (list (cons it smf) (cons (sp-get-pair it :close) smf)))))))
-            (while (and (> depth 0) (not (funcall eof)))
-              (sp--search-and-save-match search-fn needle b r mb me ms)
-              (if r
-                  (unless (or (and (not in-string-or-comment)
-                                   (if forward (save-excursion
-                                                 (backward-char)
-                                                 (sp-point-in-string-or-comment))
-                                     (sp-point-in-string-or-comment)))
-                              ;; check the individual pair skipper.  We
-                              ;; need to test all the possible-ops,
-                              ;; which makes it a bit ugly :/
-                              (let ((skip-match-pair-fn
-                                     (cdr (--first (equal (car it) ms) skip-match-pair-fns))))
-                                (sp--skip-match-p ms mb me :global-skip global-skip-fn :pair-skip skip-match-pair-fn)))
-                    (when (--any? (equal ms it) opens) (setq depth (1+ depth)))
-                    (when (--any? (equal ms it) closes) (setq depth (1- depth))))
-                (unless (minibufferp)
-                  (sp-message :unmatched-expression))
-                (setq depth -1)
-                (setq failure t)))
-            (if forward
-                (setq e me)
-              (setq s mb))
-            (setq close (substring-no-properties ms))
-            (if (or failure
-                    (/= depth 0))
-                (progn
-                  (unless (minibufferp)
-                    (sp-message :unmatched-expression))
-                  nil)
-              (let ((end-in-cos (sp-point-in-string-or-comment (1- e)))) ;; fix the "point on comment" issue
-                (cond
-                 ((or (and (sp-point-in-string-or-comment s) (not end-in-cos))
-                      (and (not (sp-point-in-string-or-comment s)) end-in-cos))
-                  (unless (minibufferp)
-                    (sp-message :delimiter-in-string))
-                  nil)
-                 (t
-                  (let* ((op (if forward open close)))
-                    (list :beg s
-                          :end e
-                          :op op
-                          :cl (if forward close open)
-                          :prefix (sp--get-prefix s op)
-                          :suffix (sp--get-suffix e op)))))))))))))
-
-;; TODO: this does not consider unbalanced quotes in comments!!!
-(defun sp--find-next-stringlike-delimiter (needle search-fn-f &optional limit skip-fn)
-  "Find the next string-like delimiter, considering the escapes
-and the skip-match predicate."
-  (let (hit match)
-    (while (and (not hit)
-                (funcall search-fn-f needle limit t))
-      (save-match-data
-        (setq match (match-string-no-properties 0))
-        (unless (or (save-match-data
-                      (save-excursion
-                        (goto-char (match-beginning 0))
-                        (or (sp--looking-back-p "\\\\" 2) ;; assumes \ is always the escape... bad?
-                            (and (eq major-mode 'emacs-lisp-mode)
-                                 (not (sp-point-in-string))
-                                 (sp--looking-back-p "?" 1)))))
-                    ;; TODO: HACK: global-skip is hack here!!!
-                    (sp--skip-match-p match (match-beginning 0) (match-end 0)
-                                      :pair-skip (or skip-fn
-                                                     (sp-get-pair match :skip-match))
-                                      :global-skip nil))
-          (setq hit (match-data)))))
-    hit))
-
-(defun sp-get-stringlike-expression (&optional back)
-  "Find the nearest string-like expression after point.
-
-String-like expression is expression enclosed with the same
-opening and closing delimiter, such as *...*, \"...\", `...` etc."
-  (sp--with-case-sensitive
-    (save-excursion
-      (let ((needle (sp--get-stringlike-regexp))
-            (search-fn-f (if (not back) 'sp--search-forward-regexp 'sp--search-backward-regexp))
-            (search-fn-b (if back 'sp--search-forward-regexp 'sp--search-backward-regexp))
-            (count 0)
-            m b e skip-match-fn limit ok)
-        (when (not (equal needle ""))
-          (when (sp--find-next-stringlike-delimiter needle search-fn-f)
-            ;; assumes \ is always the escape... bad?
-            (setq m (match-string-no-properties 0))
-            (setq needle (regexp-quote m))
-            (setq skip-match-fn (sp-get-pair m :skip-match))
-            (cond
-             ((sp-point-in-string)
-              (setq limit (sp-get-quoted-string-bounds)))
-             ((sp-point-in-comment)
-              (setq limit (sp-get-comment-bounds))))
-            (save-excursion
-              (while (sp--find-next-stringlike-delimiter needle 'search-backward-regexp (car limit) skip-match-fn)
-                (setq count (1+ count))))
-            (when (= (mod count 2) 0)
-              (sp--find-next-stringlike-delimiter needle search-fn-b nil))
-            (save-excursion
-              (setq ok (sp--find-next-stringlike-delimiter needle 'sp--search-backward-regexp (car limit)))
-              (setq e (match-beginning 0)))
-            (setq ok (and ok (sp--find-next-stringlike-delimiter needle 'search-forward-regexp (cdr limit))))
-            (setq b (match-end 0))
-            (when ok
-              (let ((mb b) (me e))
-                (setq b (min mb me))
-                (setq e (max mb me)))
-              (list :beg b :end e :op m :cl m :prefix (sp--get-prefix b m) :suffix (sp--get-suffix e m)))))))))
-
-(defun sp--textmode-stringlike-regexp (delimiters &optional direction)
-  "Get a regexp matching text-mode string-like DELIMITERS.
-
-Capture group 1 or 2 has the delimiter itself, depending on the
-direction (forward, backward).
-
-If DIRECTION is :open, create a regexp matching opening only.
-
-If DIRECTION is :close, create a regexp matching closing only.
-
-If DIRECTION is nil, create a regexp matching both directions."
-  (let* ((delims (regexp-opt delimiters))
-         (re (concat
-              (if (or (not direction)
-                      (eq direction :open))
-                  (concat "\\(?:" "\\(?:\\`\\|[ \t\n\r]\\)" "\\(" delims "\\)" "[^ \t\n\r]\\)") "")
-              (if (not direction) "\\|" "")
-              (if (or (not direction)
-                      (eq direction :close))
-                  (concat "\\(?:[^ \t\n\r]" "\\(" delims "\\)" "\\(?:[ \t\n\r[:punct:]]\\|\\'\\)" "\\)") ""))))
-    re))
-
-(defun sp--find-next-textmode-stringlike-delimiter (needle search-fn-f &optional limit)
-  "Find the next string-like delimiter, considering the escapes
-and the skip-match predicate."
-  (let (hit)
-    (while (and (not hit)
-                (funcall search-fn-f needle limit t))
-      (save-match-data
-        (let* ((group (if (match-string 1) 1 2))
-               (match (match-string-no-properties group))
-               (mb (match-beginning group))
-               (me (match-end group))
-               (skip-fn (sp-get-pair match :skip-match)))
-          (unless (sp--skip-match-p match mb me :pair-skip skip-fn :global-skip nil)
-            (setq hit (list match (if (= group 1) :open :close)))))))
-    hit))
-
-(defun sp-get-textmode-stringlike-expression (&optional back)
-  "Find the nearest text-mode string-like expression.
-
-If BACK is non-nil search in the backwards direction.
-
-Text-mode string-like expression is one where the delimiters must
-be surrounded by whitespace from the outside.  For example,
-
-foo *bar* baz
-
-is a valid expression enclosed in ** pair, but
-
-foo*bar*baz  OR  foo *bar*baz  OR  foo*bar* baz
-
-are not.
-
-This is the case in almost every markup language, and so we will
-adjust the parsing to only consider such pairs as delimiters.
-This makes the parsing much faster as it transforms the problem
-to non-stringlike matching and we can use a simple
-counting (stack) algorithm."
-  (save-excursion
-    (let ((restart-from (point))
-          (bounds (or (sp-get-comment-bounds)
-                      (cons (point-min) (point-max))))
-          hit re)
-      (while (not hit)
-        (goto-char restart-from)
-        (save-excursion
-          (ignore-errors
-            (if back (forward-char) (backward-char)))
-          (let* ((delimiters (-map 'car (sp--get-allowed-stringlike-list)))
-                 (needle (sp--textmode-stringlike-regexp delimiters))
-                 (search-fn-f (if (not back) 'sp--search-forward-regexp 'sp--search-backward-regexp))
-                 (limit-f (if (not back) (cdr bounds) (car bounds))))
-            (-if-let ((delim type) (sp--find-next-textmode-stringlike-delimiter needle search-fn-f limit-f))
-                (let ((search-fn (if (eq type :open) 'sp--search-forward-regexp 'sp--search-backward-regexp))
-                      (limit (if (eq type :open) (cdr bounds) (car bounds)))
-                      (needle (sp--textmode-stringlike-regexp (list delim) (if (eq type :open) :close :open))))
-                  (setq restart-from (point))
-                  ;; this adjustments are made because elisp regexp
-                  ;; can't do lookahead assertions... so we match and
-                  ;; then back up.
-                  (ignore-errors
-                    (when (and (not back) (eq type :open)) (backward-char (1+ (length delim))))
-                    (when (and (not back) (eq type :close) (not (eobp))) (backward-char 1))
-                    (when (and back (eq type :close)) (forward-char (1+ (length delim))))
-                    (when (and back (eq type :open) (not (bobp))) (forward-char 1)))
-                  (let ((other-end (point)))
-                    (when (sp--find-next-textmode-stringlike-delimiter needle search-fn limit)
-                      ;; Beware, we also need to test the beg/end of
-                      ;; buffer, because we have that variant in the
-                      ;; regexp.  In that case the match does not
-                      ;; consume anything and we needn't do any
-                      ;; correction.
-                      (let* ((this-end (if (eq type :open)
-                                           (max (point-min) (if (eobp) (point) (1- (point))))
-                                         (min (point-max) (if (bobp) (point) (1+ (point))))))
-                             (b (min this-end other-end))
-                             (e (max this-end other-end)))
-                        (setq re (list :beg b
-                                       :end e
-                                       :op delim
-                                       :cl delim
-                                       :prefix (sp--get-prefix b delim) :suffix (sp--get-suffix e delim)))
-                        (setq hit t)
-                        ;; We ignore matches that contain two
-                        ;; consecutive newlines, as that usually means
-                        ;; there's a new paragraph somewhere inbetween
-                        ;; TODO: make this customizable
-                        (when (sp-get re
-                                (save-excursion
-                                  (goto-char :beg)
-                                  (re-search-forward "\n\n\\|\r\r" :end t)))
-                          (setq re nil)
-                          (setq hit nil))))))
-              (setq hit :no-more)))))
-      re)))
-
-(defun sp-use-textmode-stringlike-parser-p ()
-  "Test if we should use textmode stringlike parser or not."
-  (let ((modes (-filter 'symbolp sp-navigate-use-textmode-stringlike-parser))
-        (derived (-map 'cdr (-remove 'symbolp sp-navigate-use-textmode-stringlike-parser))))
-    (or (--any? (eq major-mode it) modes)
-        (apply 'derived-mode-p derived))))
-
-(defun sp-get-stringlike-or-textmode-expression (&optional back delimiter)
-  "Return a stringlike expression using stringlike or textmode parser.
-
-DELIMITER is a candidate in case we performed a search before
-calling this function and we know it's the closest string
-delimiter to try.  This is purely a performance hack, do not rely
-on it when calling directly."
-  (if (sp-use-textmode-stringlike-parser-p)
-      (sp-get-textmode-stringlike-expression back)
-    ;; performance hack. If the delimiter is a character in
-    ;; syntax class 34, grab the string-like expression using
-    ;; `sp-get-string'
-    (if (and delimiter
-             (= (length delimiter) 1)
-             ;; TODO: this "smart" behaviour is duplicated in
-             ;; `sp-get-thing', maybe the whole string parsing could
-             ;; be extracted to some common function (actually we
-             ;; should probably use this one from `sp-get-thing')
-             (eq (char-syntax (string-to-char delimiter)) 34))
-        (if (eq t (sp-point-in-string))
-            ;; TODO: this is duplicated in `sp-get-thing', move to a function
-            (save-excursion
-              (save-restriction
-                (widen)
-                (-let (((beg . end) (sp-get-quoted-string-bounds)))
-                  (narrow-to-region beg end))
-                (sp-get-stringlike-expression back)))
-          (sp-get-string back))
-      (sp-get-stringlike-expression back))))
-
-(defun sp-get-expression (&optional back)
-  "Find the nearest balanced expression of any kind.
-
-For markup and text modes a special, more efficient stringlike
-parser is available, see `sp-get-textmode-stringlike-expression'.
-By default, this is enabled in all modes derived from
-`text-mode'.  You can change it by customizing
-`sp-navigate-use-textmode-stringlike-parser'."
-  (let ((pre (sp--get-allowed-regexp))
-        (sre (sp--get-stringlike-regexp))
-        (search-fn (if (not back) 'sp--search-forward-regexp 'sp--search-backward-regexp))
-        (ps (if back (1- (point-min)) (1+ (point-max))))
-        (ss (if back (1- (point-min)) (1+ (point-max))))
-        (string-delim nil))
-    (setq ps (if (equal pre "") ps
-               (or (save-excursion (funcall search-fn pre nil t)) ps)))
-    (setq ss (if (equal sre "") ss
-               (or (--when-let (save-excursion
-                                 (sp--find-next-stringlike-delimiter sre search-fn))
-                     (setq string-delim (match-string 0))
-                     (save-match-data
-                       (set-match-data it)
-                       (if back (match-beginning 0) (match-end 0))))
-                   ss)))
-    ;; TODO: simplify this logic somehow... (this really depends
-    ;; on a rewrite of the core parser logic: separation of "find
-    ;; the valid opening" and "parse it")
-
-    ;; Here, we sacrifice readability for performance.  Because we
-    ;; only use regexp to look forward for the closest pair, it
-    ;; might occasionally happen that what we picked in fact
-    ;; *can't* form a pair and it returns error (for example, it
-    ;; is an unclosed pair or a quote between words like'so, which
-    ;; doesn't form a pair).  In such a case, or when the pair
-    ;; found is further than the other possible pair type (for
-    ;; example, we think we should parse stringlike, but we skip
-    ;; the first occurrence and the next one is only after a
-    ;; regular pair, which we should've picked instead), we must
-    ;; try the other parser as well.
-    (-let (((type . re) (if (or (and (not back) (< ps ss))
-                                (and back (> ps ss)))
-                            (cons :regular (sp-get-paired-expression back))
-                          (cons :string (sp-get-stringlike-or-textmode-expression back string-delim)))))
-      (when re
-        (sp-get re
-          (cond
-           ;; If the returned sexp is regular, but the
-           ;; to-be-tried-string-expression is before it, we try
-           ;; to parse it as well, it might be a complete sexp in
-           ;; which case it should be returned.
-           ((and (eq type :regular)
-                 (or (and (not back) (< ss :beg))
-                     (and back (> ss :end))))
-            (or (sp-get-stringlike-or-textmode-expression back string-delim) re))
-           ((and (eq type :string)
-                 (or (and (not back) (< ps :beg))
-                     (and back (> ps :end))))
-            (or (sp-get-paired-expression back) re))
-           (t re)))))))
-
-(defun sp-get-sexp (&optional back)
-  "Find the nearest balanced expression that is after (before) point.
-
-Search backward if BACK is non-nil.  This also means, if the
-point is inside an expression, this expression is returned.
-
-If `major-mode' is member of `sp-navigate-consider-sgml-tags',
-sgml tags will also be considered as sexps in current buffer.
-
-If the search starts outside a comment, all subsequent comments
-are skipped.
-
-If the search starts inside a string or comment, it tries to find
-the first balanced expression that is completely contained inside
-the string or comment.  If no such expression exist, a warning is
-raised (for example, when you comment out imbalanced expression).
-However, if you start a search from within a string and the next
-complete sexp lies completely outside, this is returned.  Note
-that this only works in modes where strings and comments are
-properly defined via the syntax tables.
-
-The return value is a plist with following keys:
-
-  :beg    - point in the buffer before the opening
-  delimiter (ignoring prefix)
-  :end    - point in the buffer after the closing delimiter
-  :op     - opening delimiter
-  :cl     - closing delimiter
-  :prefix - expression prefix
-  :suffix - expression suffix
-
-However, you should never access this structure directly as it is
-subject to change.  Instead, use the macro `sp-get' which also
-provide shortcuts for many commonly used queries (such as length
-of opening/closing delimiter or prefix)."
-  (sp--maybe-init)
-  (sp--with-case-sensitive
-    (cond
-     (sp-prefix-tag-object
-      (sp-get-sgml-tag back))
-     (sp-prefix-pair-object
-      (sp-get-paired-expression back))
-     ((memq major-mode sp-navigate-consider-sgml-tags)
-      (let ((paired (sp-get-expression back)))
-        (if (and paired
-                 (equal "<" (sp-get paired :op)))
-            ;; if the point is inside the tag delimiter, return the pair.
-            (if (sp-get paired (and (<= :beg-in (point)) (>= :end-in (point))))
-                paired
-              ;; if the tag can't be completed, we can at least return
-              ;; the <> pair
-              (or (sp-get-sgml-tag back) paired))
-          ;; we can still try the tag if the first < or > is closer than
-          ;; the pair.  This is a bit too complicated... seems like a
-          ;; more clever solution would be needed in the future, esp if
-          ;; we add the python hack.
-          (cond
-           ((and (not back)
-                 (< (save-excursion
-                      (or (search-forward "<" nil t) (point-max)))
-                    (or (sp-get paired :beg) (point-max))))
-            (or (sp-get-sgml-tag) paired))
-           ((and back
-                 (> (save-excursion
-                      (or (search-backward ">" nil t) (point-min)))
-                    (or (sp-get paired :end) (point-max))))
-            (or (sp-get-sgml-tag t) paired))
-           (t paired)))))
-     (t (sp-get-expression back)))))
-
-(defun sp--get-hybrid-sexp-beg ()
-  "Get the beginning of hybrid sexp.
-See `sp-get-hybrid-sexp' for definition."
-  (save-excursion
-    (cl-labels ((indent-or-beg-of-line
-                 (lb)
-                 (if (sp-point-in-blank-line)
-                     lb
-                   (back-to-indentation)
-                   (point))))
-      (let ((p (progn (when (sp-point-in-symbol) (sp-backward-sexp)) (point)))
-            (lb (line-beginning-position))
-            (cur (--if-let (save-excursion (sp-backward-sexp)) it (list :end 0))) ;hack
-            last)
-        (if (< (sp-get cur :end) lb)
-            ;; if the line is not empty, we move the beg to the indent
-            (indent-or-beg-of-line lb)
-          (while (sp-get cur
-                   (and cur
-                        (> :end lb)
-                        (<= :end p)))
-            (setq last cur)
-            (setq cur (sp-backward-sexp)))
-          (if last
-              (sp-get last :beg-prf)
-            ;; happens when there is no sexp before the opening delim of
-            ;; the enclosing sexp.  In case it is on line above, we take
-            ;; the maximum wrt lb.
-            (sp-get cur (max :beg-in (indent-or-beg-of-line lb)))))))))
-
-(defun sp--narrow-to-line ()
-  "Narrow to the current line."
-  (narrow-to-region (line-beginning-position) (line-end-position)))
-
-(defun sp--get-hybrid-sexp-end ()
-  "Get the end of hybrid sexp.
-See `sp-get-hybrid-sexp' for definition."
-  (save-excursion
-    (cl-labels ((skip-prefix-backward
-                 (p)
-                 (save-excursion
-                   (goto-char p)
-                   (save-restriction
-                     (sp--narrow-to-line)
-                     (skip-syntax-backward " .")
-                     (point)))))
-      (let ((p (progn (when (sp-point-in-symbol) (sp-backward-sexp)) (point)))
-            (le (line-end-position))
-            (cur (--if-let (save-excursion (sp-forward-sexp)) it (list :beg (1+ (point-max))))) ;hack
-            last)
-        (if (> (sp-get cur :beg) le)
-            (if (sp-point-in-blank-line) le (skip-prefix-backward le))
-          (while (sp-get cur
-                   (and cur
-                        (< :beg le)
-                        (>= :beg p)))
-            (setq last cur)
-            (setq cur (sp-forward-sexp)))
-          (let ((r (skip-prefix-backward
-                    (if last
-                        (sp-get last :end)
-                      ;; happens when there is no sexp before the closing delim of
-                      ;; the enclosing sexp.  In case it is on line below, we take
-                      ;; the minimum wrt le.
-                      (sp-get cur (min :end-in le))))))
-            (goto-char r)
-            ;; fix the situation when point ends in comment
-            (cond
-             ((sp-point-in-comment)
-              (if (= (line-number-at-pos p)
-                     (line-number-at-pos r))
-                  (line-end-position)
-                (goto-char p)
-                (line-end-position)))
-             (t r))))))))
-
-(defun sp--get-hybrid-suffix (p)
-  "Get the hybrid sexp suffix, which is any punctuation after
-the end, possibly preceded by whitespace."
-  (save-excursion
-    (goto-char p)
-    (buffer-substring-no-properties
-     p
-     (save-restriction
-       (sp--narrow-to-line)
-       (skip-syntax-forward " ")
-       (if (not (looking-at "\\s."))
-           p
-         (skip-syntax-forward ".")
-         (point))))))
-
-(defun sp-get-hybrid-sexp ()
-  "Return the hybrid sexp around point.
-
-A hybrid sexp is defined as the smallest balanced region containing
-the point while not expanding further than the current line.  That is,
-any hanging sexps will be included, but the expansion stops at the
-enclosing list boundaries or line boundaries."
-  (let ((end (sp--get-hybrid-sexp-end)))
-    (list :beg (sp--get-hybrid-sexp-beg)
-          :end end
-          :op ""
-          :cl ""
-          :prefix ""
-          :suffix (sp--get-hybrid-suffix end))))
-
-(defun sp-get-enclosing-sexp (&optional arg)
-  "Return the balanced expression that wraps point at the same level.
-
-With ARG, ascend that many times.  This function expects a positive
-argument."
-  (setq arg (or arg 1))
-  (save-excursion
-    (let ((n arg)
-          (ok t)
-          (okr))
-      (while (and (> n 0) ok)
-        (setq ok t)
-        (setq okr nil)
-        ;; if we are inside string, get the string bounds and "string
-        ;; expression"
-        (when (sp-point-in-string)
-          (setq okr (sp-get-string)))
-        ;; get the "normal" expression defined by pairs
-        (let ((p (point)))
-          (setq ok (sp-get-sexp))
-          (cond
-           ((and ok (= (sp-get ok :beg) p))
-            (goto-char (sp-get ok :end))
-            (setq n (1+ n)))
-           ((and ok (< (sp-get ok :beg) p))
-            (goto-char (sp-get ok :end)))
-           (t
-            (while (and ok (>= (sp-get ok :beg) p))
-              (setq ok (sp-get-sexp))
-              (when ok (goto-char (sp-get ok :end)))))))
-        ;; if the pair expression is enclosed inside a string, return
-        ;; the pair expression, otherwise return the string expression
-        (when okr
-          (unless (and ok
-                       (sp-compare-sexps ok okr >=)
-                       (sp-compare-sexps ok okr <= :end))
-            (setq ok okr)
-            (goto-char (sp-get ok :end))))
-        (setq n (1- n)))
-      (if (not (and (not ok)
-                    sp-navigate-comments-as-sexps))
-          ok
-        (when (sp-point-in-comment)
-          (let* ((cb (sp-get-comment-bounds))
-                 (b (save-excursion
-                      (goto-char (car cb))
-                      (sp-skip-backward-to-symbol t)
-                      (point)))
-                 (e (save-excursion
-                      (goto-char (cdr cb))
-                      (sp-skip-forward-to-symbol t)
-                      (point))))
-            (list :beg b :end e :op "" :cl "" :prefix sp-comment-char)))))))
-
-(defun sp-get-list-items (&optional lst)
-  "Return the information about expressions inside LST.
-
-LST should be a data structure in format as returned by
-`sp-get-sexp'.
-
-The return value is a list of such structures in order as they
-occur inside LST describing each expression, with LST itself
-prepended to the front.
-
-If LST is nil, the list at point is used (that is the list
-following point after `sp-backward-up-sexp' is called)."
-  (let ((r nil))
-    (save-excursion
-      (unless lst
-        (setq lst (sp-backward-up-sexp)))
-      (when lst
-        (goto-char (sp-get lst :beg-in))
-        (while (< (point) (sp-get lst :end))
-          (!cons (sp-forward-sexp) r))
-        (cons lst (nreverse (cdr r)))))))
-
-(cl-defun sp--get-prefix (&optional (p (point)) op)
-  "Get the prefix of EXPR.
-
-Prefix is any continuous sequence of characters in \"expression
-prefix\" syntax class.  You can also specify a set of syntax code
-characters or a regexp for a specific major mode.  See
-`sp-sexp-prefix'.
-
-The point is expected to be at the opening delimiter of the sexp
-and the prefix is searched backwards.
-
-If the prefix property is defined for OP, the associated regexp
-is used to retrieve the prefix instead of the global setting."
-  (sp--with-case-sensitive
-    (save-excursion
-      (goto-char p)
-      (let* ((pref (sp-get-pair op :prefix))
-             (prefix
-              (if pref
-                  (when (sp--looking-back pref sp-max-prefix-length)
-                    (match-string-no-properties 0))
-                (-if-let (mmode-prefix (cdr (assoc major-mode sp-sexp-prefix)))
-                    (cond
-                     ((and (eq (car mmode-prefix) 'regexp)
-                           (sp--looking-back (cadr mmode-prefix)))
-                      (match-string-no-properties 0))
-                     ((eq (car mmode-prefix) 'syntax)
-                      (skip-syntax-backward (cadr mmode-prefix))
-                      (buffer-substring-no-properties (point) p))
-                     (t ""))
-                  (backward-prefix-chars)
-                  (buffer-substring-no-properties (point) p)))))
-        ;; do not consider it a prefix if it matches some opening or
-        ;; closing delimiter which is allowed for parsing in current
-        ;; context
-        (goto-char p)
-        (if (and (< 0 (length prefix))
-                 (or (sp--do-action-p prefix 'navigate)
-                     (sp--do-action-p
-                      (car (--first (equal (cdr it) prefix)
-                                    sp-pair-list))
-                      'navigate)))
-            ""
-          prefix)))))
-
-(cl-defun sp--get-suffix (&optional (p (point)) op)
-  "Get the suffix of EXPR.
-
-Suffix is any continuous sequence of characters in the
-\"punctuation suffix\" syntax class.  You can also specify a set
-of syntax code characters or a regexp for a specific major mode.
-See `sp-sexp-suffix'.
-
-If the suffix property is defined for OP, the associated regexp
-is used to retrieve the suffix instead of the global setting."
-  (sp--with-case-sensitive
-    (save-excursion
-      (goto-char p)
-      (let* ((suff (sp-get-pair op :suffix))
-             (suffix
-              (if suff
-                  (when (sp--looking-at suff)
-                    (match-string-no-properties 0))
-                (-if-let (mmode-suffix (cdr (assoc major-mode sp-sexp-suffix)))
-                    (cond
-                     ((and (eq (car mmode-suffix) 'regexp)
-                           (sp--looking-at (cadr mmode-suffix)))
-                      (match-string-no-properties 0))
-                     ((eq (car mmode-suffix) 'syntax)
-                      (skip-syntax-forward (cadr mmode-suffix))
-                      (buffer-substring-no-properties p (point)))
-                     (t ""))
-                  (skip-syntax-forward ".")
-                  (buffer-substring-no-properties p (point))))))
-        ;; do not consider it a suffix if it matches some opening or
-        ;; closing delimiter which is allowed for parsing in current
-        ;; context
-        (goto-char p)
-        (if (and (< 0 (length suffix))
-                 (or (sp--do-action-p suffix 'navigate)
-                     (sp--do-action-p
-                      (car (--first (equal (cdr it) suffix)
-                                    sp-pair-list))
-                      'navigate)))
-            ""
-          suffix)))))
-
-(defun sp-get-symbol (&optional back)
-  "Find the nearest symbol that is after point, or before point if BACK is non-nil.
-
-This also means, if the point is inside a symbol, this symbol is
-returned.  Symbol is defined as a chunk of text recognized by
-`sp-forward-symbol'.
-
-The return value is a plist with the same format as the value
-returned by `sp-get-sexp'."
-  (sp--maybe-init)
-  (let (b e last-or-first)
-    (save-excursion
-      (if back
-          (progn
-            (sp-skip-backward-to-symbol)
-            (when (= (point) (point-min)) (setq last-or-first t))
-            (sp-forward-symbol -1)
-            (setq b (point))
-            (sp-forward-symbol 1)
-            (setq e (point)))
-        (sp-skip-forward-to-symbol)
-        (when (= (point) (point-max)) (setq last-or-first t))
-        (sp-forward-symbol 1)
-        (setq e (point))
-        (sp-forward-symbol -1)
-        (setq b (point))))
-    (unless last-or-first
-      (list :beg b :end e :op "" :cl "" :prefix (sp--get-prefix b) :suffix (sp--get-suffix e)))))
-
-(defun sp--get-string (bounds)
-  "Return the `sp-get-sexp' format info about the string.
-
-This function simply transforms BOUNDS, which is a cons (BEG
-. END) into format compatible with `sp-get-sexp'."
-  (let* ((op (char-to-string (char-after (car bounds))))
-         (cl (char-to-string (char-before (cdr bounds)))))
-    ;; if the closing and opening isn't the same token, we should
-    ;; return nil
-    (when (equal op cl)
-      (list :beg (car bounds)
-            :end (cdr bounds)
-            :op cl
-            :cl cl
-            :prefix (sp--get-prefix (car bounds) op)
-            :suffix (sp--get-suffix (cdr bounds) cl)))))
-
-(defun sp-get-string (&optional back)
-  "Find the nearest string after point, or before if BACK is non-nil.
-
-This also means if the point is inside a string, this string is
-returned.  If there are another symbols between point and the
-string, nil is returned.  That means that this function only
-return non-nil if the string is the very next meaningful
-expression.
-
-The return value is a plist with the same format as the value
-returned by `sp-get-sexp'."
-  (sp--maybe-init)
-  (if (sp-point-in-comment)
-      (sp-get-stringlike-expression back)
-    (if (sp-point-in-string)
-        (let ((r (sp-get-quoted-string-bounds)))
-          (sp--get-string r))
-      (save-excursion
-        (sp-skip-into-string back)
-        (--when-let (sp-get-quoted-string-bounds)
-          (sp--get-string it))))))
-
-(defun sp-get-whitespace ()
-  "Get the whitespace around point.
-
-Whitespace here is defined as any of the characters: space, tab
-and newline."
-  (list :beg (save-excursion (skip-chars-backward " \t\n") (point))
-        :end (save-excursion (skip-chars-forward " \t\n") (point))
-        :op ""
-        :cl ""
-        :prefix ""
-        :suffix ""))
-
-(defun sp--sgml-get-tag-name (match)
-  (let ((sub (if (equal "/" (substring match 1 2))
-                 (substring match 2)
-               (substring match 1))))
-    (car (split-string sub "\\( \\|>\\)"))))
-
-(defun sp--sgml-opening-p (tag)
-  (not (equal "/" (substring tag 1 2))))
-
-(defun sp--sgml-ignore-tag (tag)
-  "Return non-nil if tag should be ignored in search, nil otherwise."
-  (member tag '("!--" "!DOCTYPE")))
-
-(defun sp-get-sgml-tag (&optional back)
-  (sp--maybe-init)
-  (sp--with-case-sensitive
-    (save-excursion
-      (let ((search-fn (if (not back) 'sp--search-forward-regexp 'search-backward-regexp))
-            tag tag-name needle
-            open-start open-end
-            close-start close-end)
-        (when (and (funcall search-fn "</?.*?\\s-?.*?>" nil t)
-                   (progn
-                     (setq tag (substring-no-properties (match-string 0)))
-                     (setq tag-name (sp--sgml-get-tag-name tag))
-                     (not (sp--sgml-ignore-tag tag-name))))
-          (setq needle (concat "</?" tag-name))
-          (let* ((forward (sp--sgml-opening-p tag))
-                 (search-fn (if forward 'sp--search-forward-regexp 'search-backward-regexp))
-                 (depth 1))
-            (save-excursion
-              (if (not back)
-                  (progn
-                    (setq open-end (point))
-                    (search-backward-regexp "<" nil t)
-                    (setq open-start (point)))
-                (setq open-start (point))
-                (search-forward-regexp ">" nil t)
-                (setq open-end (point))))
-            (cond
-             ((and (not back) (not forward))
-              (goto-char (match-beginning 0)))
-             ((and back forward)
-              (goto-char (match-end 0))))
-            (while (> depth 0)
-              (if (funcall search-fn needle nil t)
-                  (if (sp--sgml-opening-p (match-string 0))
-                      (if forward (setq depth (1+ depth)) (setq depth (1- depth)))
-                    (if forward (setq depth (1- depth)) (setq depth (1+ depth))))
-                (setq depth -1)))
-            (if (eq depth -1)
-                (progn (sp-message :no-matching-tag) nil)
-              (save-excursion
-                (if forward
-                    (progn
-                      (setq close-start (match-beginning 0))
-                      (search-forward-regexp ">" nil t)
-                      (setq close-end (point)))
-                  (setq close-start (point))
-                  (search-forward-regexp ">" nil t)
-                  (setq close-end (point))))
-              (let ((op (buffer-substring-no-properties open-start open-end))
-                    (cl (buffer-substring-no-properties close-start close-end)))
-                (list :beg (if forward open-start close-start)
-                      :end (if forward close-end open-end)
-                      :op (if forward op cl)
-                      :cl (if forward cl op)
-                      :prefix ""
-                      :suffix "")))))))))
-
-(defun sp--end-delimiter-closure (pairs pair-list)
-  "Compute the \"end-delimiter\" closure of set PAIRS.
-
-PAIRS can be:
-- single pair ID
-- single cons with opening and closing delimiter
-- list of pair IDs
-- list of conses of opening and closing delimiters
-
-For example, if we have pairs (if . end) and (def . end), then
-the closure of \"if\" pair are both of these because they share
-the closing delimiter.  Therefore, in the navigation functions,
-both have to be considered by the parser."
-  (let* ((pairs (-flatten (list pairs)))
-         (pairs (if (consp (car pairs)) (-map 'car pairs) pairs))
-         (pairs (--filter (member (car it) pairs) pair-list))
-         (closure (-mapcat
-                   (lambda (x)
-                     (--filter (equal (cdr x) (cdr it)) pair-list))
-                   pairs)))
-    closure))
-
-(defun sp-restrict-to-pairs (pairs function)
-  "Call the FUNCTION restricted to PAIRS.
-
-PAIRS is either an opening delimiter of a list of opening
-delimiters.
-
-FUNCTION is a function symbol.
-
-For example, you can restrict function `sp-down-sexp' to the
-pair (\"{\" . \"}\") for easier navigation of blocks in C-like
-languages."
-  (let* ((pairs (-flatten (list pairs)))
-         (new-pairs (--filter (member (car it) pairs) sp-pair-list))
-         (sp-pair-list (sp--end-delimiter-closure new-pairs sp-pair-list)))
-    (call-interactively function)))
-
-(defun sp-restrict-to-object (object function)
-  "Call the FUNCTION restricted to OBJECT.
-
-OBJECT is one of following symbols (you have to quote it!):
-- `sp-prefix-pair-object'
-- `sp-prefix-tag-object'
-- `sp-prefix-symbol-object'
-
-This function will enable this prefix and then call FUNCTION.
-
-FUNCTION is a function symbol.
-
-This function is equivalent to doing:
-
-  (let ((sp-prefix-object t))
-    (call-interactively function))
-
-For example, you can restrict function `sp-forward-sexp' to just
-the pairs for easier navigation of blocks in C-like languages."
-  (cl-letf (((symbol-value object) t))
-    (call-interactively function)))
-
-;; TODO: add shorter alias?
-(defun sp-restrict-to-pairs-interactive (pairs function)
-  "Return an interactive lambda that calls FUNCTION restricted to PAIRS.
-
-See `sp-restrict-to-pairs'.
-
-This function implements a \"decorator pattern\", that is, you
-can apply another scoping function to the output of this function
-and the effects will added together. In particular, you can
-combine it with:
-
-- `sp-restrict-to-object-interactive'
-
-You can also bind the output of this function directly to a key, like:
-
-  (global-set-key (kbd ...) (sp-restrict-to-pairs-interactive \"{\" 'sp-down-sexp))
-
-This will be a function that descends down only into { } pair,
-ignoring all others."
-  (lambda (&optional _arg)
-    (interactive "P")
-    (sp-restrict-to-pairs pairs function)))
-
-(defun sp-restrict-to-object-interactive (object function)
-  "Return an interactive lambda that calls FUNCTION restricted to OBJECT.
-
-See `sp-restrict-to-object'.
-
-This function implements a \"decorator pattern\", that is, you
-can apply another scoping function to the output of this function
-and the effects will added together. In particular, you can
-combine it with:
-
-- `sp-restrict-to-pairs-interactive'
-
-You can also bind the output of this function directly to a key, like:
-
-  (global-set-key (kbd ...) (sp-restrict-to-object-interactive
-                             'sp-prefix-pair-object
-                             'sp-forward-sexp))
-
-This will be a function that navigates only by using paired
-expressions, ignoring strings and sgml tags."
-  (lambda (&optional _arg)
-    (interactive "P")
-    (sp-restrict-to-object object function)))
-
-(defun sp-prefix-tag-object (&optional _arg)
-  "Read the command and invoke it on the next tag object.
-
-If you specify a regular emacs prefix argument this is passed to
-the executed command.  Therefore, executing
-\"\\[universal-argument] 2 \\[sp-prefix-tag-object] \\[sp-forward-sexp]\" will move two tag
-expressions forward, ignoring possible symbols or paired
-expressions inbetween.
-
-Tag object is anything delimited by sgml tag."
-  (interactive "P")
-  (let* ((cmd (read-key-sequence "" t))
-         (com (key-binding cmd))
-         (sp-prefix-tag-object t))
-    (if (commandp com)
-        (call-interactively com)
-      (execute-kbd-macro cmd))))
-
-(defun sp-prefix-pair-object (&optional _arg)
-  "Read the command and invoke it on the next pair object.
-
-If you specify a regular emacs prefix argument this is passed to
-the executed command.  Therefore, executing
-\"\\[universal-argument] 2 \\[sp-prefix-pair-object] \\[sp-forward-sexp]\" will move two paired
-expressions forward, ignoring possible symbols inbetween.
-
-Pair object is anything delimited by pairs from `sp-pair-list'."
-  (interactive "P")
-  (let* ((cmd (read-key-sequence "" t))
-         (com (key-binding cmd))
-         (sp-prefix-pair-object t))
-    (if (commandp com)
-        (call-interactively com)
-      (execute-kbd-macro cmd))))
-
-(defun sp-prefix-symbol-object (&optional _arg)
-  "Read the command and invoke it on the next pair object.
-
-If you specify a regular emacs prefix argument this is passed to
-the executed command.  Therefore, executing
-\"\\[universal-argument] 2 \\[sp-prefix-symbol-object] \\[sp-forward-sexp]\" will move two symbols
-forward, ignoring any structure.
-
-Symbol is defined as a chunk of text recognized by
-`sp-forward-symbol'."
-  (interactive "P")
-  (let* ((cmd (read-key-sequence "" t))
-         (com (key-binding cmd))
-         (sp-prefix-symbol-object t))
-    (if (commandp com)
-        (call-interactively com)
-      (execute-kbd-macro cmd))))
-
-(defun sp-prefix-save-excursion (&optional _arg)
-  "Execute the command keeping the point fixed.
-
-If you specify a regular emacs prefix argument this is passed to
-the executed command."
-  (interactive "P")
-  (let* ((cmd (read-key-sequence "" t))
-         (com (key-binding cmd)))
-    (sp--keep-indentation
-      (save-excursion
-        (if (commandp com)
-            (call-interactively com)
-          (execute-kbd-macro cmd))))))
-
-(defun sp-get-thing (&optional back)
-  "Find next thing after point, or before if BACK is non-nil.
-
-Thing is either symbol (`sp-get-symbol'),
-string (`sp-get-string') or balanced expression recognized by
-`sp-get-sexp'.
-
-If `sp-navigate-consider-symbols' is nil, only balanced
-expressions are considered."
-  (sp--maybe-init)
-  (sp--with-case-sensitive
-    (cond
-     (sp-prefix-tag-object (sp-get-sgml-tag back))
-     (sp-prefix-pair-object (sp-get-paired-expression back))
-     (sp-prefix-symbol-object (sp-get-symbol back))
-     (t
-      (if back
-          (if (not sp-navigate-consider-symbols)
-              (sp-get-sexp t)
-            (save-excursion
-              (cond
-               ((sp-point-in-empty-string)
-                (sp-get-string t))
-               (t
-                (sp-skip-backward-to-symbol t nil t)
-                (cond
-                 ;; this is an optimization, we do not need to look up
-                 ;; the "pair" expression first. If this fails, follow
-                 ;; up with regular sexps
-                 ((and (memq major-mode sp-navigate-consider-sgml-tags)
-                       (or (sp--looking-back ">")
-                           ;; sp-skip-backward-to-symbol moves the
-                           ;; point to the end of an element name in
-                           ;; js2-jsx-mode
-                           (looking-at ">"))
-                       (sp-get-sgml-tag t)))
-                 ((sp--valid-initial-delimiter-p (sp--looking-back (sp--get-closing-regexp (sp--get-allowed-pair-list)) nil))
-                  (sp-get-sexp t))
-                 ((sp--valid-initial-delimiter-p (sp--looking-back (sp--get-opening-regexp (sp--get-allowed-pair-list)) nil))
-                  (sp-get-sexp t))
-                 ((and (eq (syntax-class (syntax-after (1- (point)))) 7)
-                       (not (sp-char-is-escaped-p (1- (point)))))
-                  (if (eq t (sp-point-in-string))
-                      (save-excursion
-                        (save-restriction
-                          (widen)
-                          (-let (((beg . end) (sp-get-quoted-string-bounds)))
-                            (narrow-to-region beg end))
-                          (sp-get-stringlike-expression t)))
-                    (sp-get-string t)))
-                 ((sp--valid-initial-delimiter-p (sp--looking-back (sp--get-stringlike-regexp) nil))
-                  (sp-get-expression t))
-                 ;; We might be somewhere inside the prefix of the
-                 ;; sexp after the point.  Since the prefix can be
-                 ;; specified as regexp and not syntax class, it might
-                 ;; itself by a symbol which would invalidly get
-                 ;; picked here.
-                 (t (-when-let (sym (sp-get-symbol t))
-                      (save-excursion
-                        (sp-get sym (goto-char :end))
-                        (if (sp--valid-initial-delimiter-p (sp--looking-at (sp--get-opening-regexp (sp--get-allowed-pair-list))))
-                            (let* ((ms (match-string 0))
-                                   (pref (sp--get-prefix (point) ms)))
-                              (if (and pref
-                                       (not (equal pref "")))
-                                  (sp-get-sexp t)
-                                sym))
-                          sym)))))))))
-        (if (not sp-navigate-consider-symbols)
-            (sp-get-sexp nil)
-          (save-excursion
-            (cond
-             ((sp-point-in-empty-string)
-              (sp-get-string nil))
-             (t
-              (sp-skip-forward-to-symbol t nil t)
-              (cond
-               ((and (memq major-mode sp-navigate-consider-sgml-tags)
-                     (or (looking-at "<")
-                         ;; sp-skip-forward-to-symbol moves the point
-                         ;; to the beginning of an element name in
-                         ;; js2-jsx-mode
-                         (and (sp--looking-back "</?" (- (point) 2))
-                              (goto-char (match-beginning 0))))
-                     (sp-get-sgml-tag)))
-               ((sp--valid-initial-delimiter-p (sp--looking-at (sp--get-opening-regexp (sp--get-allowed-pair-list))))
-                (sp-get-sexp nil))
-               ((sp--valid-initial-delimiter-p (sp--looking-at (sp--get-closing-regexp (sp--get-allowed-pair-list))))
-                (sp-get-sexp nil))
-               ;; TODO: merge the following two conditions and use
-               ;; `sp-get-stringlike-or-textmode-expression'
-               ((and (eq (syntax-class (syntax-after (point))) 7)
-                     (not (sp-char-is-escaped-p)))
-                ;; It might happen that the string delimiter we are
-                ;; looking at is nested inside another string
-                ;; delimited by string fences (for example nested "
-                ;; and ' in python).  In this case we can't use
-                ;; `sp-get-string' parser because it would pick up the
-                ;; outer string.  So if we are inside a string and
-                ;; `syntax-ppss' returns t as delimiter we need to use
-                ;; `sp-get-stringlike-expression'
-                (if (eq t (sp-point-in-string))
-                    (save-excursion
-                      (save-restriction
-                        (widen)
-                        (-let (((beg . end) (sp-get-quoted-string-bounds)))
-                          (narrow-to-region beg end))
-                        (sp-get-stringlike-expression nil)))
-                  (sp-get-string nil)))
-               ((sp--valid-initial-delimiter-p (sp--looking-at (sp--get-stringlike-regexp)))
-                (sp-get-expression nil))
-               ;; it can still be that we are looking at a /prefix/ of a
-               ;; sexp.  We should skip a symbol forward and check if it
-               ;; is a sexp, and then maybe readjust the output.
-               (t (let* ((sym (sp-get-symbol nil))
-                         (sym-string (and sym (sp-get sym (buffer-substring-no-properties :beg :end))))
-                         (point-before-prefix (point)))
-                    (when sym-string
-                      (if (sp--valid-initial-delimiter-p (sp--search-forward-regexp (sp--get-opening-regexp (sp--get-pair-list-context 'navigate)) nil t))
-                          (let* ((ms (match-string 0))
-                                 (pref (progn
-                                         ;; need to move before the
-                                         ;; opening, so (point) evals
-                                         ;; there.
-                                         (backward-char (length ms))
-                                         (sp--get-prefix (point) ms))))
-                            ;; We use >= because the first skip to
-                            ;; symbol might have skipped some prefix
-                            ;; chars which make prefix of the symbol
-                            ;; which together make prefix of a sexp.
-                            ;; For example \foo{} in latex, where \ is
-                            ;; prefix of symbol foo and \foo is prefix
-                            ;; of {
-                            (if (and pref
-                                     (not (equal pref ""))
-                                     (>= point-before-prefix (- (point) (length pref))))
-                                (sp-get-sexp nil)
-                              sym))
-                        sym))))))))))))))
-
-(defun sp-narrow-to-sexp (arg)
-  "Make text outside current balanced expression invisible.
-A numeric arg specifies to move up by that many enclosing expressions.
-
-See also `narrow-to-region' and `narrow-to-defun'."
-  (interactive "p")
-  (-when-let (enc (sp-get-enclosing-sexp arg))
-    (sp-get enc (narrow-to-region :beg-prf :end))))
-
-(defun sp-forward-sexp (&optional arg)
-  "Move forward across one balanced expression.
-
-With ARG, do it that many times.  Negative arg -N means move
-backward across N balanced expressions.  If there is no forward
-expression, jump out of the current one (effectively doing
-`sp-up-sexp').
-
-With `sp-navigate-consider-symbols' symbols and strings are also
-considered balanced expressions.
-
-Examples: (prefix arg in comment)
-
-  |(foo bar baz)   -> (foo bar baz)|
-
-  (|foo bar baz)   -> (foo| bar baz)
-
-  (|foo bar baz)   -> (foo bar| baz) ;; 2
-
-  (foo (bar baz|)) -> (foo (bar baz)|)"
-  (interactive "^p")
-  (setq arg (or arg 1))
-  (if (< arg 0)
-      (sp-backward-sexp (- arg))
-    (let* ((n arg)
-           (ok t))
-      (while (and ok (> n 0))
-        (setq ok (sp-get-thing))
-        (setq n (1- n))
-        (when ok (goto-char (sp-get ok :end))))
-      ok)))
-
-(put 'sp-forward-sexp 'CUA 'move)
-
-(defun sp-backward-sexp (&optional arg)
-  "Move backward across one balanced expression (sexp).
-
-With ARG, do it that many times.  Negative arg -N means move
-forward across N balanced expressions.  If there is no previous
-expression, jump out of the current one (effectively doing
-`sp-backward-up-sexp').
-
-With `sp-navigate-consider-symbols' symbols and strings are also
-considered balanced expressions.
-
-Examples: (prefix arg in comment)
-
-  (foo bar baz)|   -> |(foo bar baz)
-
-  (foo| bar baz)   -> (|foo bar baz)
-
-  (foo bar| baz)   -> (|foo bar baz) ;; 2
-
-  (|(foo bar) baz) -> ((|foo bar) baz)"
-  (interactive "^p")
-  (setq arg (or arg 1))
-  (if (< arg 0)
-      (sp-forward-sexp (- arg))
-    (let* ((n arg)
-           (ok t))
-      (while (and ok (> n 0))
-        (setq ok (sp-get-thing t))
-        (setq n (1- n))
-        (when ok (goto-char (sp-get ok :beg))))
-      ok)))
-
-(put 'sp-backward-sexp 'CUA 'move)
-
-(defun sp-next-sexp (&optional arg)
-  "Move forward to the beginning of next balanced expression.
-
-With ARG, do it that many times.  If there is no next expression
-at current level, jump one level up (effectively doing
-`sp-backward-up-sexp').  Negative arg -N means move to the
-beginning of N-th previous balanced expression.
-
-If `sp-navigate-interactive-always-progress-point' is non-nil,
-and this is called interactively, the point will move to the
-first expression in forward direction where it will end up
-greater than the current location.
-
-With `sp-navigate-consider-symbols' symbols and strings are also
-considered balanced expressions.
-
-Examples:
-
-  ((foo) |bar (baz quux)) -> ((foo) bar |(baz quux))
-
-  ((foo) bar |(baz quux)) -> |((foo) bar (baz quux))
-
-and with non-nil `sp-navigate-interactive-always-progress-point'
-
-  (f|oo bar) -> (foo |bar)
-
-  ((fo|o) (bar)) -> ((foo) |(bar))"
-  (interactive "^p")
-  (setq arg (or arg 1))
-  (if (<= arg 0)
-      (sp-backward-sexp (- arg))
-    (if (and sp-navigate-interactive-always-progress-point
-             (called-interactively-p 'any))
-        (progn
-          (while (< 0 arg)
-            (let ((point-start (point)))
-              (while (--when-let (sp-forward-sexp)
-                       (<= (sp-get it :beg) point-start))))
-            (setq arg (1- arg)))
-          (goto-char (sp-get (sp-get-thing t) :beg)))
-      (if (= arg 1)
-          (-when-let (ok (sp-get-thing))
-            (if (= (point) (sp-get ok :beg))
-                (progn (sp-forward-sexp 2)
-                       (sp-backward-sexp))
-              (goto-char (sp-get ok :beg))
-              ok))
-        (sp-forward-sexp arg)
-        (sp-backward-sexp)))))
-
-(put 'sp-next-sexp 'CUA 'move)
-
-(defun sp-previous-sexp (&optional arg)
-  "Move backward to the end of previous balanced expression.
-
-With ARG, do it that many times.  If there is no next
-expression at current level, jump one level up (effectively
-doing `sp-up-sexp').  Negative arg -N means move to the end of
-N-th following balanced expression.
-
-With `sp-navigate-consider-symbols' symbols and strings are also
-considered balanced expressions.
-
-If `sp-navigate-interactive-always-progress-point' is non-nil,
-and this is called interactively, the point will move to the
-first expression in backward direction where it will end up
-less than the current location.
-
-Examples:
-
-  ((foo) bar| (baz quux)) -> ((foo)| bar (baz quux))
-
-  ((foo)| bar (baz quux)) -> ((foo) bar (baz quux))|
-
-and if `sp-navigate-interactive-always-progress-point' is non-nil
-
-  (foo b|ar baz) -> (foo| bar baz)
-
-  (foo (b|ar baz)) -> (foo| (bar baz))"
-  (interactive "^p")
-  (setq arg (or arg 1))
-  (if (<= arg 0)
-      (sp-forward-sexp (- arg))
-    (if (and sp-navigate-interactive-always-progress-point
-             ;; (called-interactively-p 'any)
-             )
-        (progn
-          (while (< 0 arg)
-            (let ((point-start (point)))
-              (while (--when-let (sp-backward-sexp)
-                       (>= (sp-get it :end) point-start))))
-            (setq arg (1- arg)))
-          (goto-char (sp-get (sp-get-thing) :end)))
-      (if (= arg 1)
-          (-when-let (ok (sp-get-thing t))
-            (if (= (point) (sp-get ok :end))
-                (progn (sp-backward-sexp 2)
-                       (sp-forward-sexp))
-              (goto-char (sp-get ok :end))
-              ok))
-        (sp-backward-sexp arg)
-        (sp-forward-sexp)))))
-
-(put 'sp-previous-sexp 'CUA 'move)
-
-(defun sp-forward-parallel-sexp (&optional arg)
-  "Move forward across one balanced expressions at the same depth.
-
-If calling `sp-forward-sexp' at point would result in raising a
-level up, loop back to the first expression at current level,
-that is the first child of the enclosing sexp as defined by
-`sp-get-enclosing-sexp'."
-  (interactive "^p")
-  (setq arg (or arg 1))
-  (if (< arg 0)
-      (sp-backward-parallel-sexp (- arg))
-    (let (re)
-      (while (> arg 0)
-        (setq arg (1- arg))
-        (let ((next (sp-get-thing))
-              (prev (sp-get-thing t)))
-          (setq
-           re
-           (cond
-            ((eq next nil)
-             (goto-char (point-min))
-             (sp-forward-sexp))
-            ((eq prev nil)
-             (goto-char (sp-get next :end))
-             next)
-            (t (if (> (sp-get next :beg) (sp-get prev :beg))
-                   (progn
-                     (goto-char (sp-get next :end))
-                     next)
-                 (goto-char (sp-get next :beg-in))
-                 (sp-forward-sexp)))))))
-      re)))
-
-(defun sp-backward-parallel-sexp (&optional arg)
-  "Move backward across one balanced expressions at the same depth.
-
-If calling `sp-backward-sexp' at point would result in raising a
-level up, loop back to the last expression at current level, that
-is the last child of the enclosing sexp as defined by
-`sp-get-enclosing-sexp'."
-  (interactive "^p")
-  (setq arg (or arg 1))
-  (if (< arg 0)
-      (sp-forward-parallel-sexp (- arg))
-    (let (re)
-      (while (> arg 0)
-        (setq arg (1- arg))
-        (let ((next (sp-get-thing))
-              (prev (sp-get-thing t)))
-          (setq
-           re
-           (cond
-            ((eq prev nil)
-             (goto-char (point-max))
-             (sp-backward-sexp))
-            ((eq next nil)
-             (goto-char (sp-get prev :beg))
-             prev)
-            (t (if (< (sp-get prev :end) (sp-get next :end))
-                   (progn
-                     (goto-char (sp-get prev :beg))
-                     prev)
-                 (goto-char (sp-get prev :end-in))
-                 (sp-backward-sexp)))))))
-      re)))
-
-(defun sp--raw-argument-p (arg)
-  "Return t if ARG represents raw argument, that is a non-empty list."
-  (and (listp arg) (car arg)))
-
-(defun sp--negate-argument (arg)
-  "Return the argument ARG but negated.
-
-If the argument is a raw prefix argument (cons num nil) return a
-list with its car negated.  If the argument is just the - symbol,
-return 1.  If the argument is nil, return -1.  Otherwise negate
-the input number."
-  (cond
-   ((sp--raw-argument-p arg) (list (- (car arg))))
-   ((eq arg '-) 1)
-   ((not arg) -1)
-   (t (- arg))))
-
-(defun sp-down-sexp (&optional arg)
-  "Move forward down one level of sexp.
-
-With ARG, do this that many times.  A negative argument -N means
-move backward but still go down a level.
-
-If ARG is raw prefix argument \\[universal-argument], descend forward as much as
-possible.
-
-If ARG is raw prefix argument \\[universal-argument] \\[universal-argument], jump to the beginning of
-current list.
-
-If the point is inside sexp and there is no down expression to
-descend to, jump to the beginning of current one.  If moving
-backwards, jump to end of current one.
-
-Examples:
-
-  |foo (bar (baz quux)) -> foo (|bar (baz quux))
-
-  |foo (bar (baz quux)) -> foo (bar (|baz quux)) ;; 2
-
-  |foo (bar (baz (quux) blab)) -> foo (bar (baz (|quux) blab)) ;; \\[universal-argument]
-
-  (foo (bar baz) |quux) -> (|foo (bar baz) quux)
-
-  (blab foo |(bar baz) quux) -> (|blab foo (bar baz) quux) ;; \\[universal-argument] \\[universal-argument]"
-  (interactive "^P")
-  (let* ((raw (sp--raw-argument-p arg))
-         (arg (prefix-numeric-value arg))
-         (n (abs arg))
-         (ok t)
-         (last-point -1))
-    (if (and raw (= (abs arg) 16))
-        ;; jump to the beginning/end of current list
-        (-when-let (enc (sp-get-enclosing-sexp))
-          (if (> arg 0)
-              (goto-char (sp-get enc :beg-in))
-            (goto-char (sp-get enc :end-in)))
-          (setq ok enc))
-      ;; otherwise descend normally
-      (while (and ok (> n 0))
-        (setq ok (sp-get-sexp (< arg 0)))
-        ;; if the prefix was C-u, we do not decrease n and instead set
-        ;; it to -1 when (point) == "last ok"
-        (if raw
-            (when (= (point) last-point)
-              (setq n -1))
-          (setq n (1- n)))
-        (when ok
-          (setq last-point (point))
-          (if (< arg 0)
-              (goto-char (sp-get ok :end-in))
-            (goto-char (sp-get ok :beg-in))))))
-    ok))
-
-(put 'sp-down-sexp 'CUA 'move)
-
-(defun sp-backward-down-sexp (&optional arg)
-  "Move backward down one level of sexp.
-
-With ARG, do this that many times.  A negative argument -N means
-move forward but still go down a level.
-
-If ARG is raw prefix argument \\[universal-argument], descend backward as much as
-possible.
-
-If ARG is raw prefix argument \\[universal-argument] \\[universal-argument], jump to the end of current
-list.
-
-If the point is inside sexp and there is no down expression to
-descend to, jump to the end of current one.  If moving forward,
-jump to beginning of current one.
-
-Examples:
-
-  foo (bar (baz quux))| -> foo (bar (baz quux)|)
-
-  (bar (baz quux)) foo| -> (bar (baz quux|)) foo ;; 2
-
-  foo (bar (baz (quux) blab))| -> foo (bar (baz (quux|) blab)) ;; \\[universal-argument]
-
-  (foo| (bar baz) quux) -> (foo (bar baz) quux|)
-
-  (foo (bar baz) |quux blab) -> (foo (bar baz) quux blab|) ;; \\[universal-argument] \\[universal-argument]"
-  (interactive "^P")
-  (sp-down-sexp (sp--negate-argument arg)))
-
-(put 'sp-backward-down-sexp 'CUA 'move)
-
-(defun sp-beginning-of-sexp (&optional arg)
-  "Jump to beginning of the sexp the point is in.
-
-The beginning is the point after the opening delimiter.
-
-With no argument, this is the same as calling
-\\[universal-argument] \\[universal-argument] `sp-down-sexp'
-
-With ARG positive N > 1, move forward out of the current
-expression, move N-2 expressions forward and move down one level
-into next expression.
-
-With ARG negative -N < 1, move backward out of the current
-expression, move N-1 expressions backward and move down one level
-into next expression.
-
-With ARG raw prefix argument \\[universal-argument] move out of the current expressions
-and then to the beginning of enclosing expression.
-
-Examples:
-
-  (foo (bar baz) quux| (blab glob)) -> (|foo (bar baz) quux (blab glob))
-
-  (foo (bar baz|) quux (blab glob)) -> (foo (|bar baz) quux (blab glob))
-
-  (|foo) (bar) (baz quux) -> (foo) (bar) (|baz quux) ;; 3
-
-  (foo bar) (baz) (quux|) -> (|foo bar) (baz) (quux) ;; -3
-
-  ((foo bar) (baz |quux) blab) -> (|(foo bar) (baz quux) blab) ;; \\[universal-argument]"
-  (interactive "^P")
-  (let* ((raw (sp--raw-argument-p arg))
-         (arg (prefix-numeric-value arg))
-         (re (cond
-              ((and raw (= arg 4))
-               (sp-up-sexp)
-               (sp-beginning-of-sexp))
-              ((= arg 1)
-               (sp-down-sexp '(16)))
-              ((< arg 0)
-               (sp-backward-up-sexp)
-               (sp-forward-sexp (1+ arg))
-               (sp-down-sexp))
-              ((> arg 0)
-               (sp-up-sexp)
-               (sp-forward-sexp (- arg 2))
-               (sp-down-sexp)))))
-    (sp--run-hook-with-args (sp-get re :op) :post-handlers 'beginning-of-sexp)
-    re))
-
-(put 'sp-beginning-of-sexp 'CUA 'move)
-
-(defun sp-end-of-sexp (&optional arg)
-  "Jump to end of the sexp the point is in.
-
-The end is the point before the closing delimiter.
-
-With no argument, this is the same as calling
-\\[universal-argument] \\[universal-argument] `sp-backward-down-sexp'.
-
-With ARG positive N > 1, move forward out of the current
-expression, move N-1 expressions forward and move down backward
-one level into previous expression.
-
-With ARG negative -N < 1, move backward out of the current
-expression, move N-2 expressions backward and move down backward
-one level into previous expression.
-
-With ARG raw prefix argument \\[universal-argument] move out of the current expressions
-and then to the end of enclosing expression.
-
-Examples:
-
-  (foo |(bar baz) quux (blab glob)) -> (foo (bar baz) quux (blab glob)|)
-
-  (foo (|bar baz) quux (blab glob)) -> (foo (bar baz|) quux (blab glob))
-
-  (|foo) (bar) (baz quux) -> (foo) (bar) (baz quux|) ;; 3
-
-  (foo bar) (baz) (quux|) -> (foo bar|) (baz) (quux) ;; -3
-
-  ((foo |bar) (baz quux) blab) -> ((foo bar) (baz quux) blab|) ;; \\[universal-argument]"
-  (interactive "^P")
-  (let* ((raw (sp--raw-argument-p arg))
-         (arg (prefix-numeric-value arg))
-         (re (cond
-              ((and raw (= arg 4))
-               (sp-up-sexp)
-               (sp-end-of-sexp))
-              ((= arg 1)
-               (sp-down-sexp '(-16)))
-              ((< arg 0)
-               (sp-backward-up-sexp)
-               (sp-forward-sexp (+ 2 arg))
-               (sp-backward-down-sexp))
-              ((> arg 0)
-               (sp-up-sexp)
-               (sp-forward-sexp (1- arg))
-               (sp-backward-down-sexp)))))
-    (sp--run-hook-with-args (sp-get re :op) :post-handlers 'end-of-sexp)
-    re))
-
-(put 'sp-end-of-sexp 'CUA 'move)
-
-(defun sp-beginning-of-next-sexp (&optional arg)
-  "Jump to the beginning of next sexp on the same depth.
-
-Optional argument ARG defaults to 1 and means how many times we
-should repeat.
-
-This acts exactly as `sp-beginning-of-sexp' but adds 1 to the
-numeric argument.
-
-Examples:
-
-  (f|oo) (bar) (baz) -> (foo) (|bar) (baz)
-
-  (f|oo) (bar) (baz) -> (foo) (bar) (|baz) ;; 2"
-  (interactive "^P")
-  (if (sp--raw-argument-p arg)
-      (sp-beginning-of-sexp arg)
-    (let ((arg (prefix-numeric-value arg)))
-      (if (> arg 0)
-          (sp-beginning-of-sexp (1+ arg))
-        (sp-beginning-of-sexp (1- arg))))))
-
-(put 'sp-beginning-of-next-sexp 'CUA 'move)
-
-(defun sp-beginning-of-previous-sexp (&optional arg)
-  "Jump to the beginning of previous sexp on the same depth.
-
-Optional argument ARG defaults to 1 and means how many times we
-should repeat.
-
-This acts exactly as `sp-beginning-of-sexp' with negative
-argument but subtracts 1 from it.
-
-Examples:
-
-  (foo) (b|ar) (baz) -> (|foo) (bar) (baz)
-
-  (foo) (bar) (b|az) -> (|foo) (bar) (baz) ;; 2"
-  (interactive "^P")
-  (if (sp--raw-argument-p arg)
-      (sp-beginning-of-sexp (sp--negate-argument arg))
-    (let ((arg (prefix-numeric-value arg)))
-      (if (> arg 0)
-          (sp-beginning-of-sexp (- (1+ arg)))
-        (sp-beginning-of-sexp (- (1- arg)))))))
-
-(put 'sp-beginning-of-previous-sexp 'CUA 'move)
-
-(defun sp-end-of-next-sexp (&optional arg)
-  "Jump to the end of next sexp on the same depth.
-
-Optional argument ARG defaults to 1 and means how many times we
-should repeat.
-
-This acts exactly as `sp-end-of-sexp' but adds 1 to the
-numeric argument.
-
-Examples:
-
-  (f|oo) (bar) (baz) -> (foo) (bar|) (baz)
-
-  (f|oo) (bar) (baz) -> (foo) (bar) (baz|) ;; 2"
-  (interactive "^P")
-  (if (sp--raw-argument-p arg)
-      (sp-end-of-sexp arg)
-    (let ((arg (prefix-numeric-value arg)))
-      (if (> arg 0)
-          (sp-end-of-sexp (1+ arg))
-        (sp-end-of-sexp (1- arg))))))
-
-(put 'sp-end-of-next-sexp 'CUA 'move)
-
-(defun sp-end-of-previous-sexp (&optional arg)
-  "Jump to the end of previous sexp on the same depth.
-
-Optional argument ARG defaults to 1 and means how many times we
-should repeat.
-
-This acts exactly as `sp-end-of-sexp' with negative
-argument but subtracts 1 from it.
-
-Examples:
-
-  (foo) (b|ar) (baz) -> (foo|) (bar) (baz)
-
-  (foo) (bar) (b|az) -> (foo|) (bar) (baz) ;; 2"
-  (interactive "^P")
-  (if (sp--raw-argument-p arg)
-      (sp-end-of-sexp (sp--negate-argument arg))
-    (let ((arg (prefix-numeric-value arg)))
-      (if (> arg 0)
-          (sp-end-of-sexp (- (1+ arg)))
-        (sp-end-of-sexp (- (1- arg)))))))
-
-(put 'sp-end-of-previous-sexp 'CUA 'move)
-
-;; TODO: split the reindent code so we can call it inside strings on
-;; sexps like [foo ]... We can't reindent that by default because it
-;; can be a regular expression or something where the whitespace
-;; matters.  For now, disable reindent in strings if the sexp is not
-;; the string quote itself.
-(defun sp-up-sexp (&optional arg interactive)
-  "Move forward out of one level of parentheses.
-
-With ARG, do this that many times.  A negative argument means
-move backward but still to a less deep spot.
-
-The argument INTERACTIVE is for internal use only.
-
-If called interactively and `sp-navigate-reindent-after-up' is
-enabled for current major-mode, remove the whitespace between end
-of the expression and the last \"thing\" inside the expression.
-
-If `sp-navigate-close-if-unbalanced' is non-nil, close the
-unbalanced expressions automatically.
-
-Examples:
-
-  (foo |(bar baz) quux blab) -> (foo (bar baz) quux blab)|
-
-  (foo (bar |baz) quux blab) -> (foo (bar baz) quux blab)| ;; 2
-
-  (foo bar |baz              -> (foo bar baz)| ;; re-indent the expression
-​   )
-
-  (foo  |(bar baz)           -> (foo)| (bar baz) ;; close unbalanced expr."
-  (interactive "^p\np")
-  (setq arg (or arg 1))
-  (sp--with-case-sensitive
-    (let ((ok (sp-get-enclosing-sexp (abs arg))))
-      (if ok
-          (progn
-            (if (> arg 0)
-                (goto-char (sp-get ok :end))
-              (goto-char (sp-get ok :beg)))
-            (when (and (= (abs arg) 1)
-                       (not (equal (sp-get ok :prefix) sp-comment-char))
-                       (or (memq major-mode (assq 'always sp-navigate-reindent-after-up))
-                           (and (memq major-mode (assq 'interactive sp-navigate-reindent-after-up))
-                                interactive))
-                       (or sp-navigate-reindent-after-up-in-string
-                           (sp-get ok (not (sp-point-in-string :end-in))))
-                       ;; if the sexp to be reindented is not a string
-                       ;; but is inside a string, we should rather do
-                       ;; nothing than break semantics (in e.g. regexp
-                       ;; [...])
-                       (let ((str (sp-point-in-string)))
-                         (or (not str)
-                             ;; op must be the delimiter of the string we're in
-                             (eq (sp-get ok :op)
-                                 (or (eq str t)
-                                     (char-to-string str))))))
-              ;; TODO: this needs different indent rules for different
-              ;; modes.  Should we concern with such things?  Lisp rules are
-              ;; funny in HTML... :/
-              (save-excursion
-                (if (> arg 0)
-                    (progn
-                      (goto-char (sp-get ok :end-in))
-                      (let ((prev (sp-get-thing t)))
-                        ;; if the expression is empty remove everything inside
-                        (if (sp-compare-sexps ok prev)
-                            (sp-get ok (delete-region :beg-in :end-in))
-                          (when (save-excursion
-                                  (skip-chars-backward " \t\n")
-                                  (= (point) (sp-get prev :end-suf)))
-                            (delete-region (sp-get prev :end-suf) (point))))))
-                  (goto-char (sp-get ok :beg-in))
-                  (let ((next (sp-get-thing)))
-                    (if (sp-compare-sexps ok next)
-                        (sp-get ok (delete-region :beg-in :end-in))
-                      (when (save-excursion
-                              (skip-chars-forward " \t\n")
-                              (= (point) (sp-get next :beg-prf)))
-                        (delete-region (point) (sp-get next :beg-prf)))))))))
-        ;; on forward up, we can detect that the pair was not closed.
-        ;; Therefore, jump sexps backwards until we hit the error, then
-        ;; extract the opening pair and insert it at point.  Only works
-        ;; for pairs defined in `sp-pair-list'.
-        (when (and (> arg 0)
-                   sp-navigate-close-if-unbalanced)
-          (let (active-pair)
-            (save-excursion
-              ;; add support for SGML tags here
-              (while (sp-backward-sexp))
-              (sp-skip-backward-to-symbol t)
-              (when (sp--looking-back (sp--get-opening-regexp))
-                (let* ((op (match-string 0)))
-                  (setq active-pair (assoc op sp-pair-list)))))
-            (when active-pair
-              (sp-backward-sexp)
-              (sp-forward-sexp)
-              (insert (cdr active-pair))))))
-      ok)))
-
-(put 'sp-up-sexp 'CUA 'move)
-
-(defun sp-backward-up-sexp (&optional arg interactive)
-  "Move backward out of one level of parentheses.
-
-With ARG, do this that many times.  A negative argument means
-move forward but still to a less deep spot.
-
-The argument INTERACTIVE is for internal use only.
-
-If called interactively and `sp-navigate-reindent-after-up' is
-enabled for current major-mode, remove the whitespace between
-beginning of the expression and the first \"thing\" inside the
-expression.
-
-Examples:
-
-  (foo (bar baz) quux| blab) -> |(foo (bar baz) quux blab)
-
-  (foo (bar |baz) quux blab) -> |(foo (bar baz) quux blab) ;; 2
-
-  (                  -> |(foo bar baz)
-​    foo |bar baz)"
-  (interactive "^p\np")
-  (setq arg (or arg 1))
-  (sp-up-sexp (- arg) interactive))
-
-(put 'sp-backward-up-sexp 'CUA 'move)
-
-(defvar sp-last-kill-whitespace nil
-  "Save the whitespace cleaned after the last kill.
-
-If the next command is `sp-kill-sexp', append the whitespace
-between the successive kills.")
-
-(defun sp--kill-or-copy-region (beg end &optional dont-kill)
-  "Kill or copy region between BEG and END according to DONT-KILL.
-If `evil-mode' is active, copying a region will also add it to the 0 register.
-Additionally, if command was prefixed with a register, copy the region
-to that register."
-  (interactive)
-  (let ((result
-         (if dont-kill
-             (copy-region-as-kill beg end)
-           (kill-region beg end))))
-    (when (bound-and-true-p evil-mode)
-      (when dont-kill
-        (evil-set-register ?0 (evil-get-register ?1)))
-      (when evil-this-register
-        (evil-set-register evil-this-register (evil-get-register ?1))
-        (setq evil-this-register nil)))
-    result))
-
-(defun sp-kill-sexp (&optional arg dont-kill)
-  "Kill the balanced expression following point.
-
-If point is inside an expression and there is no following
-expression, kill the topmost enclosing expression.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-backward direction.
-
-With ARG being raw prefix \\[universal-argument], kill all the expressions from
-point up until the end of current list.  With raw prefix \\[negative-argument] \\[universal-argument],
-kill all the expressions from beginning of current list up until
-point.  If point is inside a symbol, this is also killed.  If
-there is no expression after/before the point, just delete the
-whitespace up until the closing/opening delimiter.
-
-With ARG being raw prefix \\[universal-argument] \\[universal-argument], kill current list (the list
-point is inside).
-
-With ARG numeric prefix 0 (zero) kill the insides of the current
-list, that is everything from after the opening delimiter to
-before the closing delimiter.
-
-If ARG is nil, default to 1 (kill single expression forward)
-
-If second optional argument DONT-KILL is non-nil, save the to be
-killed region in the kill ring, but do not kill the region from
-buffer.
-
-With `sp-navigate-consider-symbols', symbols and strings are also
-considered balanced expressions.
-
-Examples:
-
- (foo |(abc) bar)  -> (foo | bar) ;; nil, defaults to 1
-
- (foo (bar) | baz) -> |           ;; 2
-
- (foo |(bar) baz)  -> |           ;; \\[universal-argument] \\[universal-argument]
-
- (1 |2 3 4 5 6)    -> (1|)        ;; \\[universal-argument]
-
- (1 |2 3 4 5 6)    -> (1 | 5 6)   ;; 3
-
- (1 2 3 4 5| 6)    -> (1 2 3 | 6) ;; -2
-
- (1 2 3 4| 5 6)    -> (|5 6)      ;; - \\[universal-argument]
-
- (1 2 |   )        -> (1 2|)      ;; \\[universal-argument], kill useless whitespace
-
- (1 2 3 |4 5 6)    -> (|)         ;; 0
-
-Note: prefix argument is shown after the example in
-\"comment\". Assumes `sp-navigate-consider-symbols' equal to t."
-  (interactive "P")
-  (let* ((raw (sp--raw-argument-p arg))
-         (arg (prefix-numeric-value arg))
-         (n (abs arg))
-         (ok t)
-         (b (point-max))
-         (e (point)))
-    (cond
-     ;; kill to the end or beginning of list
-     ((and raw
-           (= n 4))
-      (let ((next (sp-get-thing (< arg 0)))
-            (enc (sp-get-enclosing-sexp)))
-        (if (sp-compare-sexps next enc)
-            (when (not dont-kill)
-              (let ((del (sp-get-whitespace)))
-                (sp-get del (delete-region :beg :end))))
-          (if (> arg 0)
-              (sp--kill-or-copy-region
-               (sp-get next :beg-prf) (sp-get enc :end-in) dont-kill)
-            (sp--kill-or-copy-region
-             (sp-get next :end) (sp-get enc :beg-in) dont-kill))
-          (when (not dont-kill)
-            (let ((del (sp-get-whitespace)))
-              (sp-get del (delete-region :beg :end)))))))
-     ;; kill the enclosing list
-     ((and raw
-           (= n 16))
-      (let ((lst (sp-backward-up-sexp)))
-        (sp-get lst (sp--kill-or-copy-region
-                     :beg-prf :end dont-kill))))
-     ;; kill inside of sexp
-     ((= n 0)
-      (let ((e (sp-get-enclosing-sexp)))
-        (when e
-          (sp-get e (sp--kill-or-copy-region
-                     :beg-in :end-in dont-kill)))))
-     ;; regular kill
-     (t
-      (save-excursion
-        (while (and (> n 0) ok)
-          (setq ok (sp-forward-sexp (sp--signum arg)))
-          (sp-get ok
-            (when (< :beg-prf b) (setq b :beg-prf))
-            (when (> :end e) (setq e :end)))
-          (setq n (1- n))))
-      (when ok
-        (let ((bm (set-marker (make-marker) b)))
-          (if (eq last-command 'kill-region)
-              (progn
-                (when (member sp-successive-kill-preserve-whitespace '(1 2))
-                  (kill-append sp-last-kill-whitespace nil))
-                (sp--kill-or-copy-region
-                 (if (> b (point)) (point) b) e dont-kill))
-            (sp--kill-or-copy-region b e dont-kill))
-          ;; kill useless junk whitespace, but only if we're actually
-          ;; killing the region
-          (when (not dont-kill)
-            (sp--cleanup-after-kill)
-            ;; kill useless newlines
-            (when (string-match-p "\n" (buffer-substring-no-properties bm (point)))
-              (setq sp-last-kill-whitespace
-                    (concat sp-last-kill-whitespace
-                            (buffer-substring-no-properties bm (point))))
-              (delete-region bm (point)))
-            (when (= 0 sp-successive-kill-preserve-whitespace)
-              (kill-append sp-last-kill-whitespace nil)))))))))
-
-(defun sp--cleanup-after-kill ()
-  (unless (save-match-data (looking-back "^[\t\s]+" (1- (line-beginning-position))))
-    (let ((bdel (save-excursion
-                  (when (sp--looking-back-p " " 1)
-                    (skip-chars-backward " \t")
-                    (when (not (sp--looking-back-p (sp--get-opening-regexp)))
-                      (forward-char)))
-                  (point)))
-          (edel (save-excursion
-                  (when (looking-at " ")
-                    (skip-chars-forward " \t")
-                    (when (not (or (sp--looking-at (sp--get-closing-regexp))
-                                   (looking-at "$")))
-                      (backward-char)))
-                  (point))))
-      (when (eq this-command 'kill-region)
-        (setq sp-last-kill-whitespace
-              (if (/= 2 sp-successive-kill-preserve-whitespace)
-                  (buffer-substring-no-properties bdel edel)
-                "")))
-      (delete-region bdel edel)))
-  (if (memq major-mode sp-lisp-modes)
-      ;; WARNING: The above white-space killing routine might preserve
-      ;; less whitespace than there actually is because the indent
-      ;; might further eat some up
-      (indent-according-to-mode)
-    (unless (or (memq major-mode sp-no-reindent-after-kill-modes)
-                (memq indent-line-function
-                      sp-no-reindent-after-kill-indent-line-functions))
-      (save-excursion
-        (sp--indent-region (line-beginning-position) (line-end-position)))
-      (when (> (save-excursion
-                 (back-to-indentation)
-                 (current-indentation))
-               (current-column))
-        (back-to-indentation)))))
-
-(defun sp-backward-kill-sexp (&optional arg dont-kill)
-  "Kill the balanced expression preceding point.
-
-This is exactly like calling `sp-kill-sexp' with minus ARG.
-In other words, the direction of all commands is reversed.  For
-more information, see the documentation of `sp-kill-sexp'.
-
-Examples:
-
-  (foo (abc)| bar)           -> (foo | bar)
-
-  blab (foo (bar baz) quux)| -> blab |
-
-  (1 2 3 |4 5 6)             -> (|4 5 6) ;; \\[universal-argument]"
-  (interactive "P")
-  (sp-kill-sexp (sp--negate-argument arg) dont-kill))
-
-(defun sp-copy-sexp (&optional arg)
-  "Copy the following ARG expressions to the kill-ring.
-
-This is exactly like calling `sp-kill-sexp' with second argument
-t.  All the special prefix arguments work the same way."
-  (interactive "P")
-  (save-excursion
-    (sp-kill-sexp arg t)))
-
-(defun sp-backward-copy-sexp (&optional arg)
-  "Copy the previous ARG expressions to the kill-ring.
-
-This is exactly like calling `sp-backward-kill-sexp' with second argument
-t.  All the special prefix arguments work the same way."
-  (interactive "P")
-  (save-excursion
-    (sp-kill-sexp (sp--negate-argument arg) t)))
-
-(defun sp-clone-sexp ()
-  "Clone sexp after or around point.
-
-If the form immediately after point is a sexp, clone it below the
-current one and put the point in front of it.
-
-Otherwise get the enclosing sexp and clone it below the current
-enclosing sexp."
-  (interactive)
-  (-when-let (ok (let ((sexp (sp-get-thing)))
-                   (if (not (equal (sp-get sexp :op) ""))
-                       sexp
-                     (sp-get-enclosing-sexp))))
-    (sp-get ok
-      (undo-boundary)
-      (if (< :beg-prf (point))
-          ;; this is the case where point is inside a sexp, we place
-          ;; the "clone" before the current enclosing sexp and move
-          ;; the old one below.  Note that the "net result" is the
-          ;; same as the other case, but the implementation must
-          ;; reflect different relative position of the point wrt
-          ;; "current" sexp.
-          (save-excursion
-            (goto-char :beg-prf)
-            (insert-buffer-substring-no-properties
-             (current-buffer) :beg-prf :end-suf)
-            (newline-and-indent))
-        ;; in this case we are in front, so we move after the current
-        ;; one, place the clone and move it below
-        (goto-char :end-suf)
-        (save-excursion
-          (insert-buffer-substring-no-properties
-           (current-buffer) :beg-prf :end-suf))
-        (newline-and-indent))
-      (sp-indent-defun))))
-
-(defun sp-kill-hybrid-sexp (arg)
-  "Kill a line as if with `kill-line', but respecting delimiters.
-
-With ARG being raw prefix \\[universal-argument] \\[universal-argument], kill the hybrid sexp
-the point is in (see `sp-get-hybrid-sexp').
-
-With ARG numeric prefix 0 (zero) just call `kill-line'.
-
-You can customize the behaviour of this command by toggling
-`sp-hybrid-kill-excessive-whitespace'.
-
-Examples:
-
-  foo | bar baz               -> foo |               ;; nil
-
-  foo (bar | baz) quux        -> foo (bar |) quux    ;; nil
-
-  foo | bar (baz              -> foo |               ;; nil
-             quux)
-
-  foo \"bar |baz quux\" quack   -> foo \"bar |\" quack   ;; nil
-
-  foo (bar
-       baz) qu|ux (quack      ->   foo | hoo         ;; \\[universal-argument] \\[universal-argument]
-                   zaq) hoo
-
-  foo | (bar                  -> foo |               ;; C-0
-         baz)                          baz)"
-  (interactive "P")
-  (let* ((raw (sp--raw-argument-p arg))
-         (arg (prefix-numeric-value arg))
-         (orig-indent (save-excursion
-                        (back-to-indentation)
-                        (current-column)))
-         (orig-column (current-column)))
-    (cond
-     ((= arg 0) (kill-line))
-     ((and raw (= arg 16))
-      (let ((hl (sp-get-hybrid-sexp)))
-        (sp-get hl (kill-region :beg-prf :end-suf))))
-     (t
-      (let ((hl (sp-get-hybrid-sexp)))
-        (save-excursion
-          (when (and (or (eq sp-hybrid-kill-entire-symbol t)
-                         (and (functionp sp-hybrid-kill-entire-symbol)
-                              (not (funcall sp-hybrid-kill-entire-symbol))))
-                     (sp-point-in-symbol))
-            (sp-backward-sexp))
-          (sp-get hl
-            (let ((end (min (point-max) (if (looking-at "[ \t]*$")
-                                            (1+ :end-suf)
-                                          :end-suf))))
-              (when sp-hybrid-kill-excessive-whitespace
-                (save-excursion
-                  (goto-char end)
-                  (skip-chars-forward "\n\t\r\s")
-                  (cond
-                   ((eq 'kill sp-hybrid-kill-excessive-whitespace)
-                    (setq end (point)))
-                   (t (delete-region end (point))))))
-              (kill-region (point) end)))))
-      (sp--cleanup-after-kill)
-      ;; if we've killed the entire line, do *not* contract the indent
-      ;; to just one space
-      (when (sp-point-in-blank-line)
-        (delete-region (line-beginning-position) (line-end-position))
-        (if (and (= 0 orig-column)
-                 kill-whole-line)
-            (delete-char 1) ;; delete the newline
-          (let ((need-indent (- orig-indent (current-column))))
-            (when (> need-indent 0)
-              (insert (make-string need-indent ?\ ))))))))))
-
-(defun sp-kill-whole-line ()
-  "Kill current line in sexp-aware manner.
-
-First, go to the beginning of current line and then try to kill
-as much as possible on the current line but without breaking
-balance.
-
-If there is a hanging sexp at the end of line the it is killed as
-well.
-
-If there is a closing delimiter for a sexp \"up\" current sexp,
-the kill is not extended after it.  For more details see
-`sp-kill-hybrid-sexp'.
-
-Examples:
-
-  (progn                    (progn
-    (some |long sexp))  ->    |)"
-  (interactive)
-  (beginning-of-line)
-  (sp-kill-hybrid-sexp nil)
-  (let ((empty-last-line (save-excursion (beginning-of-line) (eobp))))
-    ;; We can't kill the line if it is empty and the last line
-    (when (and (sp-point-in-blank-line) (not empty-last-line))
-      (kill-whole-line))))
-
-(defun sp--transpose-objects (first second)
-  "Transpose FIRST and SECOND object while preserving the
-whitespace between them."
-  (save-excursion
-    (goto-char (sp-get second :beg-prf))
-    (let ((ins (sp-get second (delete-and-extract-region :beg-prf :end)))
-          (between (delete-and-extract-region (sp-get first :end) (point))))
-      (goto-char (sp-get first :beg-prf))
-      (insert ins between))))
-
-(defun sp-transpose-sexp (&optional arg)
-  "Transpose the expressions around point.
-
-The operation will move the point after the transposed block, so
-the next transpose will \"drag\" it forward.
-
-With arg positive N, apply that many times, dragging the
-expression forward.
-
-With arg negative -N, apply N times backward, pushing the word
-before cursor backward.  This will therefore not transpose the
-expressions before and after point, but push the expression
-before point over the one before it.
-
-Examples:
-
-  foo |bar baz     -> bar foo| baz
-
-  foo |bar baz     -> bar baz foo| ;; 2
-
-  (foo) |(bar baz) -> (bar baz) (foo)|
-
-  (foo bar)        ->    (baz quux)   ;; keeps the formatting
-​    |(baz quux)            |(foo bar)
-
-  foo bar baz|     -> foo baz| bar ;; -1"
-  (interactive "P")
-  (let* ((arg (prefix-numeric-value arg))
-         (n (abs arg)))
-    ;; if we're inside a symbol, we need to move out of it first
-    (when (> arg 0)
-      (when (sp-point-in-symbol)
-        (sp-forward-symbol)))
-    (while (> n 0)
-      (when (< arg 0) (sp-backward-sexp))
-      (let* ((next (save-excursion (sp-forward-sexp)))
-             (prev (save-excursion (goto-char (sp-get next :beg-prf)) (sp-backward-sexp))))
-        (sp--transpose-objects prev next)
-        (when (< arg 0)
-          (goto-char (+ (sp-get prev :beg-prf) (sp-get next :len))))
-        (setq n (1- n))))))
-
-(defun sp-transpose-hybrid-sexp (&optional arg)
-  "Transpose the hybrid sexps around point.
-
-`sp-backward-sexp' is used to enter the previous hybrid sexp.
-
-With ARG numeric prefix call `transpose-lines' with this
-argument.
-
-The operation will move the point at the next line after the
-transposed block if it is at the end of line already.
-
-Examples:
-
-  foo bar            baz (quux
-  |baz (quux   ->         quack)
-        quack)       foo bar\\n|
-
-
-  [(foo) (bar) -> [(baz)
-  |(baz)]          (foo) (bar)|]
-
-  foo bar baz  -> quux flux
-  |quux flux      foo bar baz\\n|"
-  (interactive "P")
-  (if (numberp arg)
-      (transpose-lines arg)
-    (let* ((next (save-excursion
-                   (sp-forward-sexp)
-                   (sp-backward-sexp)
-                   (sp-get-hybrid-sexp)))
-           (prev (save-excursion
-                   (goto-char (sp-get next :beg))
-                   (sp-backward-sexp)
-                   (sp-get-hybrid-sexp))))
-      (if (sp-compare-sexps prev next > :end)
-          (sp-message :invalid-context-prev)
-        (sp--transpose-objects prev next))
-      (when (looking-at "[\n\t ]+")
-        (forward-line)
-        (back-to-indentation)))))
-
-(defun sp-push-hybrid-sexp ()
-  "Push the hybrid sexp after point over the following one.
-
-`sp-forward-sexp' is used to enter the following hybrid sexp.
-
-Examples:
-
-  |x = big_function_call(a,    |(a,
-                         b)      b) = read_user_input()
-                           ->
-  (a,                          x = big_function_call(a,
-   b) = read_user_input()                            b)"
-  (interactive)
-  (let* ((cur (sp-get-hybrid-sexp))
-         (next (save-excursion
-                 (goto-char (sp-get cur :end))
-                 (sp-forward-sexp)
-                 (sp-get-hybrid-sexp))))
-    (if (sp-compare-sexps cur next >)
-        (sp-message :invalid-context-cur)
-      (sp--transpose-objects cur next))))
-
-;; The following two functions are inspired by "adjust-parens.el"
-;; package available at
-;; http://elpa.gnu.org/packages/adjust-parens-1.0.el
-(defun sp-indent-adjust-sexp ()
-  "Add the hybrid sexp at line into previous sexp.  All forms
-between the two are also inserted.  Specifically, if the point is
-on empty line, move the closing delimiter there, so the next
-typed text will become the last item of the previous sexp.
-
-This acts similarly to `sp-add-to-previous-sexp' but with special
-handling of empty lines."
-  (interactive)
-  (let* ((hsexp (sp-get-hybrid-sexp))
-         (prev-sexp (save-excursion
-                      (goto-char (sp-get hsexp :beg))
-                      (sp-get-sexp t))))
-    (if (not (and prev-sexp hsexp
-                  (sp-compare-sexps prev-sexp hsexp < :end :beg)))
-        (sp-message :no-structure-found)
-      (save-excursion
-        (sp-get prev-sexp
-          (goto-char (sp-get hsexp :end))
-          (insert :cl)
-          (goto-char :end-in)
-          (delete-char :cl-l)))
-      (sp-get (sp-get-enclosing-sexp) (sp--indent-region :beg :end))
-      (indent-according-to-mode)
-      (sp--run-hook-with-args (sp-get prev-sexp :op) :post-handlers 'indent-adjust-sexp))))
-
-(defun sp-dedent-adjust-sexp ()
-  "Remove the hybrid sexp at line from previous sexp.  All
-sibling forms after it are also removed (not deleted, just placed
-outside of the enclosing list).  Specifically, if the point is on
-empty line followed by closing delimiter of enclosing list, move
-the closing delimiter after the last item in the list.
-
-This acts similarly to `sp-forward-barf-sexp' but with special
-handling of empty lines."
-  (interactive)
-  (-when-let (enc (sp-get-enclosing-sexp))
-    (save-excursion
-      ;; if we're looking at whitespace and end of sexp, move the
-      ;; closing paren over the whitespace but *after* the last item
-      ;; in the list (barf would also go *before* the last item)
-      (sp-skip-forward-to-symbol t)
-      (if (= (point) (sp-get enc :end-in))
-          (let ((prev-sexp (sp-get-thing t)))
-            (sp-get enc
-              (delete-char :cl-l)
-              (goto-char (sp-get prev-sexp :end))
-              ;; see next TODO
-              (save-restriction
-                (sp--narrow-to-line)
-                (skip-syntax-forward " ")
-                (skip-syntax-forward "."))
-              (insert :cl)))
-        ;; otherwise just C-u barf
-        (sp-skip-backward-to-symbol t)
-        (sp-forward-barf-sexp '(4))
-        ;; we need to take special care of any hanging
-        ;; punctuation. TODO: this should be a sexp suffix? HACK until
-        ;; we fix barf to get the info.
-        (save-restriction
-          (sp-get (sp-backward-down-sexp)
-            (goto-char :end)
-            (delete-char (- :cl-l))
-            (sp--narrow-to-line)
-            (skip-syntax-forward " ")
-            (skip-syntax-forward ".")
-            (insert :cl)))
-        (sp-get enc (sp--indent-region :beg :end))))
-    (indent-according-to-mode)
-    (sp--run-hook-with-args (sp-get enc :op) :post-handlers 'dedent-adjust-sexp)))
-
-;;  "When the hook is called point is *after* the just moved closing delimiter."
-;; TODO: add hook
-(defun sp-slurp-hybrid-sexp ()
-  "Add hybrid sexp following the current list in it by moving the
-closing delimiter.
-
-This is philosophically similar to `sp-forward-slurp-sexp' but
-works better in \"line-based\" languages like C or Java.
-
-Because the structure is much looser in these languages, this
-command currently does not support all the prefix argument
-triggers that `sp-forward-slurp-sexp' does."
-  (interactive)
-  (let (slurped-within-line)
-    (-if-let* ((enc (sp-get-enclosing-sexp))
-               (bsexp (save-excursion
-                        (sp-get enc (goto-char :end))
-                        (when (sp-compare-sexps (sp-forward-sexp) enc >)
-                          (sp-get-hybrid-sexp)))))
-        (save-excursion
-          (sp-get enc
-            (goto-char :end-suf)
-            (delete-char (- (+ :cl-l :suffix-l)))
-            ;; TODO: move to hook
-            (when (sp-point-in-blank-line)
-              (delete-region (line-beginning-position) (1+ (line-end-position))))
-            (sp-forward-sexp)
-
-            (when (eq (line-number-at-pos :beg)
-                      (line-number-at-pos :end))
-              (setq slurped-within-line t))
-            ;; If we're slurping over multiple lines, include the suffix on the next line.
-            ;; I.e. while () {|} -> while () {\n foo(); \n}
-            (unless slurped-within-line
-              (sp-get (sp-get-hybrid-sexp) (goto-char :end-suf)))
-            (insert :cl :suffix))
-          ;; TODO: move to hook
-          (sp-get (sp--next-thing-selection -1)
-            (save-excursion
-              (if (save-excursion
-                    (goto-char :beg-in)
-                    (looking-at "[ \t]*$"))
-                  (progn
-                    (goto-char :end-in)
-                    (newline))
-                ;; copy the whitespace after opening delim and put it in
-                ;; front of the closing. This will ensure pretty { foo }
-                ;; or {foo}
-                (goto-char :end-in)
-                (insert (buffer-substring-no-properties
-                         :beg-in
-                         (+ :beg-in (save-excursion
-                                      (goto-char :beg-in)
-                                      (skip-syntax-forward " ")))))))
-            (unless (or (looking-at "[ \t]*$")
-                        (looking-at (sp--get-stringlike-regexp))
-                        (looking-at (sp--get-closing-regexp))
-                        slurped-within-line)
-              (newline)))
-          (sp-get (sp--next-thing-selection -1) (sp--indent-region :beg :end))
-          ;; we need to call this again to get the new structure after
-          ;; indent.
-          (sp--next-thing-selection -1))
-      (sp-message :invalid-structure)
-      nil)))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; "paredit" operations
-
-(defun sp-forward-slurp-sexp (&optional arg)
-  "Add sexp following the current list in it by moving the closing delimiter.
-
-If the current list is the last in a parent list, extend that
-list (and possibly apply recursively until we can extend a list
-or end of file).
-
-If ARG is N, apply this function that many times.
-
-If ARG is negative -N, extend the opening pair instead (that is,
-backward).
-
-If ARG is raw prefix \\[universal-argument], extend all the way to the end of the parent list.
-
-If both the current expression and the expression to be slurped
-are strings, they are joined together.
-
-See also `sp-slurp-hybrid-sexp' which is similar but handles
-C-style syntax better.
-
-Examples:
-
-  (foo |bar) baz        -> (foo |bar baz)
-
-  [(foo |bar)] baz      -> [(foo |bar) baz]
-
-  [(foo |bar) baz]      -> [(foo |bar baz)]
-
-  ((|foo) bar baz quux) -> ((|foo bar baz quux)) ;; with \\[universal-argument]
-
-  \"foo| bar\" \"baz quux\" -> \"foo| bar baz quux\""
-  (interactive "P")
-  (if (> (prefix-numeric-value arg) 0)
-      (let ((n (abs (prefix-numeric-value arg)))
-            (enc (sp-get-enclosing-sexp))
-            (in-comment (sp-point-in-comment))
-            next-thing ok)
-        (when enc
-          (save-excursion
-            (if (sp--raw-argument-p arg)
-                (progn
-                  (goto-char (sp-get enc :end-suf))
-                  (setq next-thing (sp-get-enclosing-sexp))
-                  (when next-thing
-                    (goto-char (sp-get next-thing :end-in))
-                    (sp--run-hook-with-args (sp-get enc :op) :pre-handlers 'slurp-forward
-                                            (list :arg arg :enc enc :next-thing next-thing))
-                    (sp-get enc (insert :cl :suffix))
-                    (goto-char (sp-get enc :end-suf))
-                    (delete-char (sp-get enc (- (+ :cl-l :suffix-l))))
-                    (sp--indent-region (sp-get enc :beg-prf) (sp-get next-thing :end))
-                    (sp--run-hook-with-args (sp-get enc :op) :post-handlers 'slurp-forward
-                                            (list :arg arg :enc enc :next-thing next-thing))))
-              (while (> n 0)
-                (goto-char (sp-get enc :end-suf))
-                (setq ok enc)
-                (setq next-thing (sp-get-thing nil))
-                (while (sp-compare-sexps next-thing ok <)
-                  (goto-char (sp-get next-thing :end-suf))
-                  (setq ok next-thing)
-                  (setq next-thing (sp-get-thing nil)))
-                ;; do not allow slurping into a different context from
-                ;; inside a comment
-                (if (and in-comment
-                         (save-excursion
-                           (sp-get next-thing
-                             (goto-char :beg)
-                             (not (sp-point-in-comment)))))
-                    (progn
-                      (sp-message :cant-slurp-context)
-                      (setq n -1))
-                  (if ok
-                      (progn
-                        (if (and (equal (sp-get next-thing :cl) "\"")
-                                 (equal (sp-get ok :cl) "\""))
-                            (progn
-                              (sp--join-sexp ok next-thing)
-                              (goto-char (- (sp-get next-thing :end) 2))
-                              (plist-put enc :end (- (sp-get next-thing :end) 2)))
-                          (let ((inner-sexp
-                                 (save-excursion
-                                   (goto-char (sp-get ok :end-in))
-                                   (sp-get-thing t))))
-                            (delete-char (sp-get ok (- (+ :cl-l :suffix-l))))
-                            ;; this calculation corrects the absence
-                            ;; of already deleted cls
-                            (goto-char (- (sp-get next-thing :end-suf)
-                                          (sp-get ok (+ :cl-l :suffix-l))))
-                            ;; only insert space if not inserting it
-                            ;; would merge two sexps together
-                            (when (and (sp-get ok (/= :len-in 0))
-                                       (sp-compare-sexps
-                                        inner-sexp
-                                        (sp-get-thing t))
-                                       (= (sp-get ok :end-suf)
-                                          (sp-get next-thing :beg-prf)))
-                              (save-excursion
-                                (goto-char (sp-get ok :end-in))
-                                (insert " "))))
-                          (sp--run-hook-with-args
-                           (sp-get enc :op) :pre-handlers 'slurp-forward
-                           (list :arg arg :enc enc :ok ok :next-thing next-thing))
-                          (sp-get ok (insert :cl :suffix))
-                          (sp--indent-region (sp-get ok :beg-prf) (point))
-                          ;; HACK: update the "enc" data structure if ok==enc
-                          (when (= (sp-get enc :beg) (sp-get ok :beg)) (plist-put enc :end (point)))
-                          (sp--run-hook-with-args
-                           (sp-get enc :op) :post-handlers 'slurp-forward
-                           (list :arg arg :enc enc :ok ok :next-thing next-thing)))
-                        (setq n (1- n)))
-                    (sp-message :cant-slurp)
-                    (setq n -1))))))))
-    (sp-backward-slurp-sexp (sp--negate-argument arg))))
-
-(defun sp-backward-slurp-sexp (&optional arg)
-  "Add the sexp preceding the current list in it by moving the opening delimiter.
-
-If the current list is the first in a parent list, extend that
-list (and possibly apply recursively until we can extend a list
-or beginning of file).
-
-If arg is N, apply this function that many times.
-
-If arg is negative -N, extend the closing pair instead (that is,
-forward).
-
-If ARG is raw prefix \\[universal-argument], extend all the way to the beginning of the parent list.
-
-If both the current expression and the expression to be slurped
-are strings, they are joined together.
-
-Examples:
-
-  foo (bar| baz)        -> (foo bar| baz)
-
-  foo [(bar| baz)]      -> [foo (bar| baz)]
-
-  [foo (bar| baz)]      -> [(foo bar| baz)]
-
-  (foo bar baz (|quux)) -> ((foo bar baz |quux)) ;; with \\[universal-argument]
-
-  \"foo bar\" \"baz |quux\" -> \"foo bar baz |quux\""
-  (interactive "P")
-  (if (> (prefix-numeric-value arg) 0)
-      (let ((n (abs (prefix-numeric-value arg)))
-            (enc (sp-get-enclosing-sexp))
-            (in-comment (sp-point-in-comment))
-            next-thing ok)
-        (when enc
-          (save-excursion
-            (if (sp--raw-argument-p arg)
-                (progn
-                  (goto-char (sp-get enc :beg-prf))
-                  (setq next-thing (sp-get-enclosing-sexp))
-                  (when next-thing
-                    (delete-char (sp-get enc (+ :op-l :prefix-l)))
-                    (goto-char (sp-get next-thing :beg-in))
-                    (sp--run-hook-with-args
-                     (sp-get enc :op) :pre-handlers 'slurp-backward
-                     (list :arg arg :enc enc :next-thing next-thing))
-                    (sp-get enc (insert :prefix :op))
-                    (sp--indent-region (sp-get next-thing :beg-in) (sp-get enc :end))
-                    (sp--run-hook-with-args
-                     (sp-get enc :op) :post-handlers 'slurp-backward
-                     (list :arg arg :enc enc :next-thing next-thing))))
-              (while (> n 0)
-                (goto-char (sp-get enc :beg-prf))
-                (setq ok enc)
-                (setq next-thing (sp-get-thing t))
-                (while (sp-compare-sexps next-thing ok > :end)
-                  (goto-char (sp-get next-thing :beg-prf))
-                  (setq ok next-thing)
-                  (setq next-thing (sp-get-thing t)))
-                ;; do not allow slurping into a different context from
-                ;; inside a comment
-                (if (and in-comment
-                         (save-excursion
-                           (sp-get next-thing
-                             (goto-char :beg)
-                             (not (sp-point-in-comment)))))
-                    (progn
-                      (sp-message :cant-slurp-context)
-                      (setq n -1))
-                  (if ok
-                      (progn
-                        (if (and (equal (sp-get next-thing :cl) "\"")
-                                 (equal (sp-get ok :cl) "\""))
-                            (progn
-                              (sp--join-sexp next-thing ok)
-                              (goto-char (sp-get next-thing :beg-prf))
-                              (plist-put enc :beg (sp-get next-thing :beg)))
-                          (let ((inner-sexp
-                                 (save-excursion
-                                   (goto-char (sp-get ok :beg-in))
-                                   (sp-get-thing))))
-                            (delete-char (sp-get ok (+ :op-l :prefix-l)))
-                            (goto-char (sp-get next-thing :beg-prf))
-                            ;; only insert space if not inserting it
-                            ;; would merge two sexps together
-                            (when (and (sp-get ok (/= :len-in 0))
-                                       (= (sp-get ok (- (sp-get inner-sexp :end)
-                                                        :op-l :prefix-l))
-                                          (sp-get (sp-get-thing) :end))
-                                       (= (sp-get ok :beg-prf)
-                                          (sp-get next-thing :end-suf)))
-                              (save-excursion
-                                (goto-char (sp-get ok (- :beg-in :op-l :prefix-l)))
-                                (insert " "))))
-                          (sp--run-hook-with-args
-                           (sp-get enc :op) :pre-handlers 'slurp-backward
-                           (list :arg arg :enc enc :ok ok :next-thing next-thing))
-                          (sp-get ok (insert :prefix :op))
-                          (sp--indent-region (point) (sp-get ok :end))
-                          ;; HACK: update the "enc" data structure if ok==enc
-                          (when (sp-compare-sexps enc ok) (plist-put enc :beg (- (point) (sp-get ok :op-l))))
-                          (sp--run-hook-with-args
-                           (sp-get enc :op) :post-handlers 'slurp-backward
-                           (list :arg arg :enc enc :ok ok :next-thing next-thing)))
-                        (setq n (1- n)))
-                    (sp-message :cant-slurp)
-                    (setq n -1))))))))
-    (sp-forward-slurp-sexp (sp--negate-argument arg))))
-
-(defun sp-add-to-previous-sexp (&optional arg)
-  "Add the expression around point to the first list preceding point.
-
-With ARG positive N add that many expressions to the preceding
-list.
-
-If ARG is raw prefix argument \\[universal-argument] add all expressions until
-the end of enclosing list to the previous list.
-
-If ARG is raw prefix argument \\[universal-argument] \\[universal-argument] add the current
-list into the previous list.
-
-Examples:
-
-  (foo bar) |baz quux        -> (foo bar |baz) quux
-
-  (foo bar) |baz quux        -> (foo bar |baz quux) ;; 2
-
-  (blab (foo bar) |baz quux) -> (blab (foo bar |baz quux)) ;; \\[universal-argument]
-
-  (foo bar) (baz |quux)      -> (foo bar (baz |quux)) ;; \\[universal-argument] \\[universal-argument]"
-  (interactive "P")
-  (save-excursion
-    (cond
-     ((equal arg '(16))
-      (sp-backward-up-sexp)
-      (sp-backward-down-sexp)
-      (sp-forward-slurp-sexp))
-     (t
-      (sp-backward-down-sexp)
-      (sp-forward-slurp-sexp arg))))
-  (indent-according-to-mode))
-
-(defun sp-add-to-next-sexp (&optional arg)
-  "Add the expressions around point to the first list following point.
-
-With ARG positive N add that many expressions to the following
-list.
-
-If ARG is raw prefix argument \\[universal-argument] add all expressions until
-the beginning of enclosing list to the following list.
-
-If ARG is raw prefix argument \\[universal-argument] \\[universal-argument] add the current
-list into the following list.
-
-Examples:
-
-  foo bar| (baz quux)        -> foo (bar| baz quux)
-
-  foo bar| (baz quux)        -> (foo bar| baz quux) ;; 2
-
-  (foo bar |(bar quux) blab) -> ((foo bar |bar quux) blab) ;; \\[universal-argument]
-
-  (foo |bar) (baz quux)      -> ((foo |bar) baz quux) ;; \\[universal-argument] \\[universal-argument]"
-  (interactive "P")
-  (save-excursion
-    (cond
-     ((equal arg '(16))
-      (sp-up-sexp)
-      (sp-down-sexp)
-      (sp-backward-slurp-sexp))
-     (t
-      (sp-down-sexp)
-      (sp-backward-slurp-sexp arg)))))
-
-(defun sp-forward-barf-sexp (&optional arg)
-  "Remove the last sexp in the current list by moving the closing delimiter.
-
-If ARG is positive number N, barf that many expressions.
-
-If ARG is negative number -N, contract the opening pair instead.
-
-If ARG is raw prefix \\[universal-argument], barf all expressions from the one after
-point to the end of current list and place the point before the
-closing delimiter of the list.
-
-If the current list is empty, do nothing.
-
-Examples: (prefix arg in comment)
-
-  (foo bar| baz)   -> (foo bar|) baz   ;; nil (defaults to 1)
-
-  (foo| [bar baz]) -> (foo|) [bar baz] ;; 1
-
-  (1 2 3| 4 5 6)   -> (1 2 3|) 4 5 6   ;; \\[universal-argument] (or numeric prefix 3)
-
-  (foo bar| baz)   -> foo (bar| baz)   ;; -1"
-  (interactive "P")
-  (let* ((raw (sp--raw-argument-p arg))
-         (old-arg arg)
-         (arg (prefix-numeric-value arg)))
-    (if (> arg 0)
-        (if (sp-point-in-blank-sexp)
-            (sp-message :blank-sexp)
-          (save-excursion
-            (let ((enc (sp-get-enclosing-sexp)))
-              (sp-get enc
-                (cond
-                 ((and raw (= arg 4))
-                  (sp-get (sp-get-thing t)
-                    (goto-char :end-suf)))
-                 (t
-                  (goto-char :end-in)
-                  (sp-backward-sexp arg)
-                  (when (<= (point) :beg)
-                    (goto-char :beg-in))))
-                ;; we know for sure there is at least one thing in the list
-                (let ((back (sp-get-thing t)))
-                  (if (sp-compare-sexps back enc)
-                      (goto-char :beg-in)
-                    (goto-char (sp-get back :end-suf))))
-                (sp--run-hook-with-args :op :pre-handlers 'barf-forward
-                  (list :arg arg :enc enc)))
-              (sp-get (sp-get-enclosing-sexp)
-                (sp-do-move-cl (point))
-                (sp--indent-region :beg :end)
-                (sp--run-hook-with-args :op :post-handlers 'barf-forward
-                  (list :arg arg :enc enc))))))
-      (sp-backward-barf-sexp (sp--negate-argument old-arg)))))
-
-(defun sp-backward-barf-sexp (&optional arg)
-  "This is exactly like calling `sp-forward-barf-sexp' with minus ARG.
-In other words, instead of contracting the closing pair, the
-opening pair is contracted.  For more information, see the
-documentation of `sp-forward-barf-sexp'.
-
-Examples:
-
-  (foo bar| baz) -> foo (bar| baz)
-
-  ([foo bar] |baz) -> [foo bar] (|baz)
-
-  (1 2 3 |4 5 6) -> 1 2 3 (|4 5 6) ;; \\[universal-argument] (or 3)"
-  (interactive "P")
-  (let* ((raw (sp--raw-argument-p arg))
-         (old-arg arg)
-         (arg (prefix-numeric-value arg)))
-    (if (> arg 0)
-        (if (sp-point-in-blank-sexp)
-            (sp-message :blank-sexp)
-          (save-excursion
-            (let ((enc (sp-get-enclosing-sexp)))
-              (sp-get enc
-                (cond
-                 ((and raw (= arg 4))
-                  (sp-get (sp-get-thing)
-                    (goto-char :beg-prf)))
-                 (t
-                  (goto-char :beg-in)
-                  (sp-forward-sexp arg)
-                  (when (>= (point) :end)
-                    (goto-char :end-in))))
-                ;; we know for sure there is at least one thing in the list
-                (let ((next (sp-get-thing)))
-                  (if (sp-compare-sexps next enc)
-                      (goto-char :end-in)
-                    (goto-char (sp-get next :beg-prf))))
-                (sp--run-hook-with-args :op :pre-handlers 'barf-backward
-                  (list :arg arg :enc enc)))
-              (sp-get (sp-get-enclosing-sexp)
-                (sp-do-move-op (point))
-                (sp--indent-region :beg :end)
-                (sp--run-hook-with-args :op :post-handlers 'barf-backward
-                  (list :arg arg :enc enc))))))
-      (sp-forward-barf-sexp (sp--negate-argument old-arg)))))
-
-;; TODO: get rid of the macro anyway, it's stupid!
-(defmacro sp--skip-to-symbol-1 (forward)
-  "Generate `sp-skip-forward-to-symbol' or `sp-skip-backward-to-symbol'."
-  (let ((inc (if forward '1+ '1-))
-        (dec (if forward '1- '1+))
-        (forward-fn (if forward 'forward-char 'backward-char))
-        (next-char-fn (if forward 'following-char 'preceding-char))
-        (looking (if forward 'sp--looking-at 'sp--looking-back))
-        (prefix-fn (if forward 'sp--get-suffix 'sp--get-prefix))
-        (eob-test (if forward '(eobp) '(bobp)))
-        (comment-bound (if forward 'cdr 'car)))
-    `(let ((in-comment (sp-point-in-comment))
-           ;; HACK: if we run out of current context this might skip a
-           ;; pair that was not allowed before.  However, such a call is
-           ;; never made in SP, so it's OK for now
-           (allowed-pairs (sp--get-allowed-regexp))
-           (allowed-open (sp--get-opening-regexp (sp--get-allowed-pair-list)))
-           (allowed-close (sp--get-closing-regexp (sp--get-allowed-pair-list)))
-           (allowed-strings (sp--get-stringlike-regexp))
-           (prefix nil))
-       (while (and (not (or ,eob-test
-                            (and stop-after-string
-                                 (not (sp-point-in-string))
-                                 (sp-point-in-string (,dec (point))))
-                            (and stop-at-string
-                                 (not (sp-point-in-string))
-                                 (sp-point-in-string (,inc (point))))
-                            (and stop-inside-string
-                                 (sp-point-in-string)
-                                 (not (sp-point-in-string (,inc (point)))))
-                            (and (,looking allowed-pairs)
-                                 (or in-comment (not (sp-point-in-comment))))
-                            (and (,looking allowed-strings)
-                                 (or in-comment (not (sp-point-in-comment))))))
-                   (or (member (char-syntax (,next-char-fn)) '(?< ?> ?! ?| ?\ ?\\ ?\" ?' ?.))
-                       (/= 0 (logand (lsh 1 20) (car (syntax-after
-                                                      ,(if forward
-                                                           '(point)
-                                                         '(1- (point)))))))
-                       (unless in-comment (sp-point-in-comment))
-                       ;; This is the case where we are starting at
-                       ;; pair (looking at it) and there is some
-                       ;; prefix which is not recognized by syntax,
-                       ;; i.e. defined by regexp.  This should only be
-                       ;; tested once in principle before the next
-                       ;; time we land on a delimiter this whole loop
-                       ;; stops based on the first branch of the `and'
-                       ;; condition in `while' so using expensive
-                       ;; functions here is not a bg deal.
-                       (and (or (,(if forward 'sp--looking-back 'sp--looking-at)
-                                 ,(if forward 'allowed-close 'allowed-open))
-                                (,(if forward 'sp--looking-back 'sp--looking-at) allowed-strings))
-                            (progn
-                              (setq prefix (,prefix-fn))
-                              (> (length prefix) 0)))))
-         (if (and (not in-comment)
-                  (sp-point-in-comment))
-             (progn
-               (goto-char (,comment-bound (sp-get-comment-bounds)))
-               (unless ,eob-test (,forward-fn 1)))
-           (unless ,eob-test
-             (,forward-fn (max (length prefix) 1))))))))
-
-(defun sp-skip-forward-to-symbol (&optional stop-at-string stop-after-string stop-inside-string)
-  "Skip whitespace and comments moving forward.
-
-If STOP-AT-STRING is non-nil, stop before entering a string (if
-not already in a string).
-
-If STOP-AFTER-STRING is non-nil, stop after exiting a string.
-
-If STOP-INSIDE-STRING is non-nil, stop before exiting a string.
-
-Examples:
-
-  foo|   bar -> foo   |bar
-
-  foo|   [bar baz] -> foo   |[bar baz]"
-  (interactive "^")
-  (sp--skip-to-symbol-1 t))
-
-(put 'sp-skip-forward-to-symbol 'CUA 'move)
-
-(defun sp-skip-backward-to-symbol (&optional stop-at-string stop-after-string stop-inside-string)
-  "Skip whitespace and comments moving backward.
-If STOP-AT-STRING is non-nil, stop before entering a string (if
-not already in a string).
-
-If STOP-AFTER-STRING is non-nil, stop after exiting a string.
-
-If STOP-INSIDE-STRING is non-nil, stop before exiting a string.
-
-Examples:
-
-  foo   |bar -> foo|   bar
-
-  [bar baz]   |foo -> [bar baz]|   foo"
-  (interactive "^")
-  (sp--skip-to-symbol-1 nil))
-
-(put 'sp-skip-backward-to-symbol 'CUA 'move)
-
-(defun sp-skip-into-string (&optional back)
-  "Move the point into the next string.
-
-With BACK non-nil, move backwards."
-  (if back
-      (while (not (sp-point-in-string))
-        (backward-char))
-    (while (not (sp-point-in-string))
-      (forward-char))))
-
-;; TODO: in ruby, "foo |if bar" now moves correctly, but there's a
-;; noticable lag before it jumps over "if".  This is probably caused
-;; by :skip-match handlers.  Investigate!
-(defun sp-forward-symbol (&optional arg)
-  "Move point to the next position that is the end of a symbol.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-backward direction.
-
-A symbol is any sequence of characters that are in either the
-word constituent or symbol constituent syntax class.  Current
-symbol only extend to the possible opening or closing delimiter
-as defined by `sp-add-pair' even if part of this delimiter
-would match \"symbol\" syntax classes.
-
-Examples:
-
-  |foo bar baz          -> foo| bar baz
-
-  |foo (bar (baz))      -> foo (bar| (baz)) ;; 2
-
-  |foo (bar (baz) quux) -> foo (bar (baz) quux|) ;; 4"
-  (interactive "^p")
-  (setq arg (or arg 1))
-  (sp--with-case-sensitive
-    (let* ((n (abs arg))
-           (fw (> arg 0))
-           (allowed (sp--get-allowed-pair-list))
-           (open (sp--get-opening-regexp allowed))
-           (close (sp--get-closing-regexp allowed)))
-      (if fw
-          (while (> n 0)
-            ;; First we need to get to the beginning of a symbol.  This means
-            ;; skipping all whitespace and pair delimiters until we hit
-            ;; something in \sw or \s_
-            (while (cond
-                    ((eobp) nil)
-                    ((not (memq (char-syntax (following-char)) '(?w ?_)))
-                     (forward-char)
-                     t)
-                    ;; if allowed is empty, the regexp matches anything
-                    ;; and we go into infinite loop, cf. Issue #400
-                    ((and allowed (sp--valid-initial-delimiter-p (sp--looking-at open)))
-                     (goto-char (match-end 0)))
-                    ((and allowed (sp--valid-initial-delimiter-p (sp--looking-at close)))
-                     (goto-char (match-end 0)))))
-            (while (and (not (eobp))
-                        (or (not allowed)
-                            (not (or (sp--valid-initial-delimiter-p (sp--looking-at open))
-                                     (sp--valid-initial-delimiter-p (sp--looking-at close)))))
-                        (memq (char-syntax (following-char)) '(?w ?_)))
-              (forward-char))
-            (setq n (1- n)))
-        (sp-backward-symbol n)))))
-
-(put 'sp-forward-symbol 'CUA 'move)
-
-(defun sp-backward-symbol (&optional arg)
-  "Move point to the next position that is the beginning of a symbol.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-forward direction.
-
-A symbol is any sequence of characters that are in either the word
-constituent or symbol constituent syntax class.  Current symbol only
-extend to the possible opening or closing delimiter as defined by
-`sp-add-pair' even if part of this delimiter would match \"symbol\"
-syntax classes.
-
-Examples:
-
-  foo bar| baz            -> foo |bar baz
-
-  ((foo bar) baz)|        -> ((foo |bar) baz) ;; 2
-
-  (quux ((foo) bar) baz)| -> (|quux ((foo) bar) baz) ;; 4"
-  (interactive "^p")
-  (setq arg (or arg 1))
-  (sp--with-case-sensitive
-    (let ((n (abs arg))
-          (fw (> arg 0))
-          (open (sp--get-opening-regexp (sp--get-allowed-pair-list)))
-          (close (sp--get-closing-regexp (sp--get-allowed-pair-list))))
-      (if fw
-          (while (> n 0)
-            (while (cond
-                    ((bobp) nil)
-                    ((not (memq (char-syntax (preceding-char)) '(?w ?_)))
-                     (backward-char)
-                     t)
-                    ((sp--valid-initial-delimiter-p (sp--looking-back open))
-                     (goto-char (match-beginning 0)))
-                    ((sp--valid-initial-delimiter-p (sp--looking-back close))
-                     (goto-char (match-beginning 0)))))
-            (while (and (not (bobp))
-                        (not (or (sp--valid-initial-delimiter-p (sp--looking-back open))
-                                 (sp--valid-initial-delimiter-p (sp--looking-back close))))
-                        (memq (char-syntax (preceding-char)) '(?w ?_)))
-              (backward-char))
-            ;; skip characters which are symbols with prefix flag
-            (while (and (not (eobp))
-                        (/= 0 (logand (lsh 1 20) (car (syntax-after (point))))))
-              (forward-char 1))
-            (setq n (1- n)))
-        (sp-forward-symbol n)))))
-
-(put 'sp-backward-symbol 'CUA 'move)
-
-(defun sp-rewrap-sexp (pair &optional keep-old)
-  "Rewrap the enclosing expression with a different pair.
-
-PAIR is the new enclosing pair.
-
-If optional argument KEEP-OLD is set, keep old delimiter and wrap
-with PAIR on the outside of the current expression.
-
-When used interactively, the new pair is specified in minibuffer
-by typing the *opening* delimiter, same way as with pair
-wrapping.
-
-When used interactively with raw prefix argument \\[universal-argument], KEEP-OLD
-is set to non-nil.
-
-Examples:
-
-  (foo |bar baz) -> [foo |bar baz]   ;; [
-
-  (foo |bar baz) -> [(foo |bar baz)] ;; \\[universal-argument] ["
-  (interactive (list
-                (catch 'done
-                  (let ((available-pairs (sp--get-pair-list-context 'wrap))
-                        ev ac (pair-prefix ""))
-                    (while (not ac)
-                      (setq ev (read-event (format "Rewrap with: %s" pair-prefix) t))
-                      (if (and (equal pair-prefix "")
-                               (eq ev 'return))
-                          (throw 'done nil))
-                      (setq pair-prefix (concat pair-prefix (format-kbd-macro (vector ev))))
-                      (unless (--any? (string-prefix-p pair-prefix (car it)) available-pairs)
-                        (user-error "Impossible pair prefix selected: %s" pair-prefix))
-                      (setq ac (--first (equal pair-prefix (car it)) available-pairs)))
-                    ac))
-                current-prefix-arg))
-  (if (not pair)
-      (sp-unwrap-sexp)
-    (-when-let (enc (sp-get-enclosing-sexp))
-      (save-excursion
-        (sp-get enc
-          (goto-char :end)
-          (unless keep-old
-            (delete-char (- :cl-l)))
-          (insert (cdr pair))
-          (goto-char :beg)
-          (insert (car pair))
-          (unless keep-old
-            (delete-char :op-l))
-          (setq sp-last-wrapped-region
-                (sp--get-last-wraped-region
-                 :beg (+ :end
-                        (length (car pair))
-                        (length (cdr pair))
-                        (- :op-l)
-                        (- :cl-l))
-                  (car pair) (cdr pair)))))
-      (sp--run-hook-with-args (car pair) :post-handlers 'rewrap-sexp
-                              (list :parent (sp-get enc :op))))))
-
-(defun sp-swap-enclosing-sexp (&optional arg)
-  "Swap the enclosing delimiters of this and the parent expression.
-
-With N > 0 numeric argument, ascend that many levels before
-swapping.
-
-Examples:
-
-  (foo [|bar] baz)              -> [foo (|bar) baz] ;; 1
-
-  (foo {bar [|baz] quux} quack) -> [foo {bar (|baz) quux} quack] ;; 2"
-  (interactive "p")
-  (let ((enc (sp-get-enclosing-sexp))
-        (encp (sp-get-enclosing-sexp (1+ arg))))
-    (if (and enc encp)
-        (save-excursion
-          (sp-get encp
-            (goto-char :end)
-            (delete-char (- :cl-l)))
-          (sp-get enc
-            (insert :cl)
-            (goto-char :end)
-            (delete-char (- :cl-l)))
-          (sp-get encp (insert :cl))
-          (sp-get enc (goto-char :beg-prf))
-          (sp-get encp (insert :prefix :op))
-          (sp-get enc (delete-char (+ :op-l :prefix-l)))
-          (sp-get encp (goto-char :beg-prf))
-          (sp-get enc (insert :prefix :op))
-          (sp-get encp (delete-char (+ :op-l :prefix-l))))
-      (sp-message :point-not-deep-enough))))
-
-(defun sp--unwrap-sexp (sexp &optional no-cleanup)
-  "Unwrap expression defined by SEXP.
-
-Warning: this function remove possible empty lines and reindents
-the unwrapped sexp, so the SEXP structure will no longer
-represent a valid object in a buffer!"
-  (sp-get sexp
-    (delete-region :end-in :end)
-    (delete-region :beg-prf :beg-in))
-  ;; if the delimiters were the only thing on the line, we should also
-  ;; get rid of the (possible) empty line that will be the result of
-  ;; their removal.  This is especially nice in HTML mode or
-  ;; long-running tags like \[\] in latex.
-  (unless no-cleanup
-    (let ((new-start (sp-get sexp :beg-prf))
-          (new-end (sp-get sexp (- :end-in :op-l :prefix-l)))
-          indent-from indent-to)
-      (save-excursion
-        (goto-char new-end)
-        (when (string-match-p "^[\n\t ]+\\'" (thing-at-point 'line))
-          (let ((b (bounds-of-thing-at-point 'line)))
-            (delete-region (car b) (cdr b))))
-        (setq indent-to (point))
-        (goto-char new-start)
-        (when (string-match-p "^[\n\t ]+\\'" (thing-at-point 'line))
-          (let ((b (bounds-of-thing-at-point 'line)))
-            (delete-region (car b) (cdr b))))
-        (setq indent-from (point)))
-      (unless (or (memq major-mode sp-no-reindent-after-kill-modes)
-                  (memq indent-line-function
-                        sp-no-reindent-after-kill-indent-line-functions))
-        (sp--keep-indentation
-          (sp--indent-region indent-from indent-to))))))
-
-(defun sp-change-inner ()
-  "Change the inside of the next expression.
-
-First, kill the inside of the next balanced expression, then move
-point just after the opening delimiter.
-
-Examples:
-
-  (f|oo [bar] baz) -> (foo [|] baz)
-
-  {|'foo': 'bar'}  -> {'|': 'bar'}"
-  (interactive)
-  (-when-let (ok (sp-get-sexp))
-    (sp-get ok
-      (kill-region :beg-in :end-in)
-      (goto-char :beg-in))))
-
-(defun sp-change-enclosing ()
-  "Change the inside of the enclosing expression.
-
-Whitespace on both sides of the inner items is preserved if it
-contains newlines.  Invoking this function on a blank sexp will
-wipe out remaining whitespace (see `sp-point-in-blank-sexp').
-
-Move the point to the beginning of the original content.
-
-Examples:
-
-  (f|oo [bar] baz) -> (|)
-
-  {'f|oo': 'bar'}  -> {'|': 'bar'}"
-  (interactive)
-  (-when-let (ok (sp-get-enclosing-sexp))
-    (sp-get ok
-      (if (sp-point-in-blank-sexp)
-          (progn
-            (kill-region :beg-in :end-in)
-            (goto-char :beg-in))
-        (let ((beg (progn
-                     (goto-char :beg-in)
-                     (skip-chars-forward "\t\n ")
-                     (point)))
-              (end (progn
-                     (goto-char :end-in)
-                     (skip-chars-backward "\t\n ")
-                     (point))))
-          (kill-region beg end)
-          (goto-char beg))))))
-
-(defun sp-unwrap-sexp (&optional arg)
-  "Unwrap the following expression.
-
-With ARG N, unwrap Nth expression as returned by
-`sp-forward-sexp'.  If ARG is negative -N, unwrap Nth expression
-backwards as returned by `sp-backward-sexp'.
-
-Return the information about the just unwrapped expression.  Note
-that this structure does not represent a valid expression in the
-buffer.
-
-Examples:
-
-  |(foo bar baz)     -> |foo bar baz
-
-  (foo bar| baz)     -> foo bar| baz
-
-  |(foo) (bar) (baz) -> |(foo) bar (baz) ;; 2"
-  (interactive "p")
-  (setq arg (or arg 1))
-  (let ((sp-navigate-consider-symbols nil))
-    (let ((ok (save-excursion (sp-forward-sexp arg))))
-      (when ok (sp--unwrap-sexp ok))
-      ok)))
-
-(defun sp-backward-unwrap-sexp (&optional arg)
-  "Unwrap the previous expression.
-
-With ARG N, unwrap Nth expression as returned by
-`sp-backward-sexp'.  If ARG is negative -N, unwrap Nth expression
-forward as returned by `sp-forward-sexp'.
-
-Examples:
-
-  (foo bar baz)|     -> foo bar baz|
-
-  (foo bar)| (baz)   -> foo bar| (baz)
-
-  (foo) (bar) (baz)| -> foo (bar) (baz) ;; 3"
-  (interactive "p")
-  (sp-unwrap-sexp (- (or arg 1))))
-
-(defun sp-splice-sexp (&optional arg)
-  "Unwrap the current list.
-
-With ARG N, unwrap Nth list as returned by applying `sp-up-sexp'
-N times.  This function expect positive arg.
-
-Examples:
-
-  (foo (bar| baz) quux) -> (foo bar| baz quux)
-
-  (foo |(bar baz) quux) -> foo |(bar baz) quux
-
-  (foo (bar| baz) quux) -> foo (bar| baz) quux ;; 2"
-  (interactive "p")
-  (setq arg (or arg 1))
-  (-when-let (ok (sp-get-enclosing-sexp arg))
-    (if (equal ";" (sp-get ok :prefix))
-        (sp-get ok
-          (save-excursion
-            (goto-char :beg)
-            (-when-let (enc (sp-get-enclosing-sexp arg))
-              (sp--unwrap-sexp enc))))
-      (sp--unwrap-sexp ok))))
-
-(defun sp--splice-sexp-do-killing (beg end expr &optional jump-end)
-  "Save the text in the region between BEG and END inside EXPR,
-then delete EXPR and insert the saved text.
-
-If optional argument JUPM-END is equal to the symbol 'end move
-the point after the re-inserted text."
-  (let (str p)
-    (setq str (buffer-substring-no-properties beg end))
-    (delete-region (sp-get expr :beg-prf) (sp-get expr :end))
-    (save-excursion
-      (insert str)
-      (sp--indent-region (sp-get expr :beg-prf) (point))
-      (setq p (point)))
-    (when (eq jump-end 'end) (goto-char p))))
-
-(defun sp-splice-sexp-killing-backward (&optional arg)
-  "Unwrap the current list and kill all the expressions
-between start of this list and the point.
-
-With the optional argument ARG, repeat that many times.  This
-argument should be positive number.
-
-Examples:
-
-  (foo (let ((x 5)) |(sqrt n)) bar)  -> (foo |(sqrt n) bar)
-
-​  (when ok|                             |(perform-operation-1)
-​    (perform-operation-1)            ->  (perform-operation-2)
-​    (perform-operation-2))
-
-​  (save-excursion                    -> |(awesome-stuff-happens) ;; 2
-​    (unless (test)
-​      |(awesome-stuff-happens)))
-
-Note that to kill only the content and not the enclosing
-delimiters you can use \\[universal-argument] \\[sp-backward-kill-sexp].
-See `sp-backward-kill-sexp' for more information."
-  (interactive "p")
-  (while (> arg 0)
-    (sp-splice-sexp-killing-around '(4))
-    (setq arg (1- arg))))
-
-;; TODO: write in terms of `sp-splice-sexp-killing-around'.
-(defun sp-splice-sexp-killing-forward (&optional arg)
-  "Unwrap the current list and kill all the expressions between
-the point and the end of this list.
-
-With the optional argument ARG, repeat that many times.  This
-argument should be positive number.
-
-Examples:
-
-  (a (b c| d e) f) -> (a b c| f)
-
-  (+ (x |y z) w)   -> (+ x| w)
-
-Note that to kill only the content and not the enclosing
-delimiters you can use \\[universal-argument] \\[sp-kill-sexp].
-See `sp-kill-sexp' for more information."
-  (interactive "p")
-  (while (> arg 0)
-    (let ((ok (sp-get-enclosing-sexp 1)))
-      (if ok
-          (let ((next (sp-get-thing t)))
-            (if (sp-compare-sexps next ok)
-                (sp-kill-sexp '(16))
-              (sp--splice-sexp-do-killing
-               (sp-get next :end) ;search backward
-               (sp-get ok :beg-in)
-               ok 'end)))
-        (setq arg -1)))
-    (setq arg (1- arg))))
-
-(defun sp-splice-sexp-killing-around (&optional arg)
-  "Unwrap the current list and kill everything inside except next expression.
-
-With ARG save that many next expressions.  With ARG negative -N,
-save that many expressions backward.
-
-If ARG is raw prefix argument \\[universal-argument] this function behaves exactly
-the same as `sp-splice-sexp-killing-backward'.
-
-If ARG is negative raw prefix argument \\[negative-argument] \\[universal-argument] this function
-behaves exactly the same as `sp-splice-sexp-killing-forward'.
-
-Note that the behaviour with the prefix argument seems to be
-reversed.  This is because the backward variant is much more
-common and hence deserve shorter binding.
-
-If ARG is raw prefix argument \\[universal-argument] \\[universal-argument] raise the expression the point
-is inside of.  This is the same as `sp-backward-up-sexp' followed by
-`sp-splice-sexp-killing-around'.
-
-Examples:
-
-  (a b |(c d) e f)      -> |(c d)     ;; with arg = 1
-
-  (a b |c d e f)        -> |c d       ;; with arg = 2
-
-  (- (car x) |a 3)      -> (car x)|   ;; with arg = -1
-
-  (foo (bar |baz) quux) -> |(bar baz) ;; with arg = \\[universal-argument] \\[universal-argument]"
-  (interactive "P")
-  (cond
-   ((equal arg '(-4))
-    (sp-splice-sexp-killing-forward 1))
-   (t
-    (if (equal arg '(16))
-        (progn
-          (sp-backward-up-sexp)
-          (setq arg 1)))
-    (let* (inside-comment-inside-sexp
-           (num-arg (prefix-numeric-value arg))
-           (ok ;; (sp-get-enclosing-sexp 1)
-            (save-excursion
-              (sp-skip-backward-to-symbol)
-              ;; if the point is inside a comment, we want to
-              ;; operate on the sexp that contains it.  however,
-              ;; if we are inside a sexp inside a comment, we
-              ;; should operate on that instead.
-              (if (sp-point-in-comment)
-                  (let ((enc (sp-get-enclosing-sexp 1))
-                        (cb (sp-get-comment-bounds)))
-                    (if (> (sp-get enc :beg) (car cb))
-                        (progn
-                          (setq inside-comment-inside-sexp t)
-                          enc)
-                      (goto-char (cdr cb))
-                      ;; todo: replace with something more
-                      ;; abstract
-                      (skip-chars-forward "\t\n ")
-                      (sp-get-enclosing-sexp 1)))
-                (sp-get-enclosing-sexp 1)))))
-      (when ok
-        (when (and (sp-point-in-comment)
-                   (not inside-comment-inside-sexp))
-          (let ((cb (sp-get-comment-bounds)))
-            (goto-char (if (> num-arg 0) (car cb) (cdr cb)))))
-        (sp-skip-backward-to-symbol)
-        (-let* ((next (sp--next-thing-selection arg))
-                ((from . to)
-                 (cond
-                  ((and (sp-point-in-comment)
-                        (not inside-comment-inside-sexp))
-                   (if (> num-arg 0)
-                       ;; only extends to keep the comment if raising
-                       ;; towards the end.
-                       (cons (car (sp-get-comment-bounds))
-                             (sp-get next :end-suf))
-                     (sp-get next (cons :beg-prf :end-suf))))
-                  ((and (sp-point-in-comment)
-                        inside-comment-inside-sexp)
-                   (sp-get next (cons :beg-prf :end-suf)))
-                  ;; If we are splicing before a comment, the
-                  ;; comment might be connected to the sexp
-                  ;; after it, so we better don't kill it.  Only
-                  ;; do that if the comment is on its own line
-                  ;; though, otherwise it is connected to the
-                  ;; sexp before it.
-                  ((save-excursion
-                     (skip-chars-forward "\t\n ")
-                     (when (and (> num-arg 0)
-                                (sp-point-in-comment)
-                                (save-excursion
-                                  (skip-chars-backward "\t ")
-                                  (bolp)))
-                       (cons (point) (sp-get next :end-suf)))))
-                  ;; similarly, if there is a comment before
-                  ;; this sexp, keep it.
-                  ((save-excursion
-                     (sp-backward-symbol)
-                     (when (and (> num-arg 0)
-                                (sp-point-in-comment)
-                                (goto-char (car (sp-get-comment-bounds)))
-                                (> (point) (sp-get ok :beg))
-                                (save-excursion
-                                  (skip-chars-backward "\t ")
-                                  (bolp)))
-                       (cons (point) (sp-get next :end-suf)))))
-                  (t (sp-get next (cons :beg-prf :end-suf))))))
-          (sp--splice-sexp-do-killing from to
-                                      ok (if (> num-arg 0) nil 'end))))))))
-
-(defalias 'sp-raise-sexp 'sp-splice-sexp-killing-around)
-
-(defun sp-convolute-sexp (&optional arg)
-  "Convolute balanced expressions.
-
-Save the expressions preceding point and delete them.  Then
-splice the resulting expression.  Wrap the current enclosing list
-with the delimiters of the spliced list and insert the saved
-expressions.
-
-If point is in a symbol, move to end of symbol before convolving.
-
-With ARG positive N, move up N lists before wrapping.
-
-Examples:
-
-We want to move the `while' before the `let'.
-
-​  (let ((stuff 1)             (while (we-are-good)
-​        (other 2))              (let ((stuff 1)
-​    (while (we-are-good)  ->          (other 2))
-​     |(do-thing 1)               |(do-thing 1)
-​      (do-thing 2)                (do-thing 2)
-​      (do-thing 3)))              (do-thing 3)))
-
-  (forward-char (sp-get env |:op-l)) -> (sp-get env (forward-char |:op-l))"
-  (interactive "p")
-  (save-excursion
-    (when (sp-point-in-symbol)
-      (sp-forward-symbol))
-    (when (looking-at-p " ")
-      (just-one-space))
-    (let* ((old-buffer-size (buffer-size))
-           (enc (sp-get-enclosing-sexp))
-           (inner-close (sp-get enc (delete-and-extract-region
-                                     (save-excursion
-                                       (goto-char :end-in)
-                                       (sp-backward-whitespace))
-                                     :end)))
-           (inner-raise (sp-get enc (delete-and-extract-region
-                                     :beg-prf
-                                     (save-excursion
-                                       (sp-forward-whitespace)))))
-           (whitespace (sp-get enc
-                         ;; this happens when the entire inside sexp was removed.
-                         (when (= old-buffer-size (+ (buffer-size) :len))
-                           (delete-and-extract-region
-                            (save-excursion
-                              (goto-char :beg-prf)
-                              (max (line-beginning-position) (sp-backward-whitespace)))
-                            :beg-prf))))
-           (encp (sp-get-enclosing-sexp arg)))
-      (sp-get encp
-        (goto-char :end)
-        (insert inner-close)
-        (goto-char :beg-prf)
-        (insert inner-raise (if whitespace whitespace ""))
-        (sp-get (sp-get-enclosing-sexp)
-          (sp--indent-region :beg :end)))))
-  (indent-according-to-mode))
-
-(defun sp-absorb-sexp (&optional arg)
-  "Absorb previous expression.
-
-Save the expressions preceding point and delete them.  Then slurp
-an expression backward and insert the saved expressions.
-
-With ARG positive N, absorb that many expressions.
-
-Examples:
-
-​  (do-stuff 1)         (save-excursion
-​  (save-excursion  ->   |(do-stuff 1)
-​   |(do-stuff 2))        (do-stuff 2))
-
-  foo bar (concat |baz quux) -> (concat |foo bar baz quux) ;; 2"
-  (interactive "p")
-  (sp-forward-whitespace)
-  (let* ((old (point))
-         (raise (progn
-                  (sp-beginning-of-sexp)
-                  (buffer-substring (point) old))))
-    (delete-region (point) old)
-    (sp-backward-slurp-sexp arg)
-    (sp-forward-whitespace)
-    (sp-beginning-of-sexp)
-    (insert raise)
-    (save-excursion
-      (sp-backward-up-sexp)
-      (indent-sexp)))
-  (sp-forward-whitespace))
-
-(defun sp-emit-sexp (&optional arg)
-  "Move all expression preceding point except the first one out of the current list.
-
-With ARG positive N, keep that many expressions from the start of
-the current list.
-
-This is similar as `sp-backward-barf-sexp' but it also drags the
-first N expressions with the delimiter.
-
-Examples:
-
-​  (save-excursion     ​(do-stuff 1)
-​    (do-stuff 1)      (do-stuff 2)
-​    (do-stuff 2)  ->  (save-excursion
-​   |(do-stuff 3))      |(do-stuff 3))
-
-​  (while not-done-yet       (execute-only-once)
-​    (execute-only-once) ->  (while not-done-yet    ;; arg = 2
-​   |(execute-in-loop))       |(execute-in-loop))"
-  (interactive "p")
-  (let (save-text)
-    (save-excursion
-      (sp-beginning-of-sexp)
-      (let* ((start (point)))
-        (sp-forward-sexp arg)
-        (sp-skip-forward-to-symbol t)
-        (setq save-text (buffer-substring start (point)))
-        (delete-region start (point))))
-    (save-excursion (sp-backward-barf-sexp '(4)))
-    (sp-down-sexp)
-    (insert save-text)
-    (save-excursion
-      (sp-backward-up-sexp)
-      (indent-sexp))))
-
-(defun sp-extract-before-sexp (&optional arg)
-  "Move the expression after point before the enclosing balanced expression.
-
-The point moves with the extracted expression.
-
-With ARG positive N, extract N expressions after point.
-
-With ARG negative -N, extract N expressions before point.
-
-With ARG being raw prefix argument \\[universal-argument], extract all the expressions
-up until the end of enclosing list.
-
-If the raw prefix is negative, this behaves as \\[universal-argument] `sp-backward-barf-sexp'."
-  (interactive "P")
-  (if (equal arg '(-4))
-      (sp-backward-barf-sexp '(4))
-    (sp-select-next-thing arg)
-    (let ((enc (sp-get-enclosing-sexp))
-          save-text b e nl)
-      (save-excursion
-        ;; TODO: extract this use pattern into general "get X things
-        ;; with or without surrounding whitespace."
-        (setq b (region-beginning))
-        (setq e (region-end))
-        (goto-char (sp-get enc :end-in))
-        (if (save-excursion
-              (skip-chars-backward "\t ")
-              (bolp))
-            (let ((whitespace (sp-get-whitespace)))
-              (sp-get whitespace (when (= :beg e)
-                                   (delete-region :beg :end))))
-          (setq nl t))
-        (setq save-text (delete-and-extract-region b e))
-        (when nl
-          (let ((whitespace (sp-get-whitespace)))
-            (sp-get whitespace (delete-region :beg :end))))
-        (goto-char (sp-get enc :beg-prf))
-        (insert save-text "\n")
-        (sp-get enc (sp--indent-region :beg-prf :end)))
-      ;; if we're at an empty line, remove it
-      (when (string-match-p "^[\n\t ]+\\'" (thing-at-point 'line))
-        (let ((b (bounds-of-thing-at-point 'line)))
-          (delete-region (car b) (cdr b))))
-      (goto-char (sp-get enc :beg-prf)))))
-
-(defun sp-extract-after-sexp (&optional arg)
-  "Move the expression after point after the enclosing balanced expression.
-
-The point moves with the extracted expression.
-
-With ARG positive N, extract N expressions after point.
-
-With ARG negative -N, extract N expressions before point.
-
-With ARG being raw prefix argument \\[universal-argument], extract all the
-expressions up until the end of enclosing list.
-
-With ARG being negative raw prefix argument \\[negative-argument] \\[universal-argument], extract all the
-expressions up until the start of enclosing list."
-  ;; this is uch uglier than the "before" version, since the
-  ;; calculations forward have to account for the deleted text. Figure
-  ;; out a way to make it smoother.
-  (interactive "P")
-  (sp-select-next-thing arg)
-  (sp--with-case-sensitive
-    (let ((enc (sp-get-enclosing-sexp))
-          (dws 0)                       ;length of deleted whitespace
-          save-text b e nl)
-      (save-excursion
-        (setq b (region-beginning))
-        (setq e (region-end))
-        (goto-char (sp-get enc :end-in))
-        (if (save-excursion
-              (skip-chars-backward "\t ")
-              (bolp))
-            (let ((whitespace (sp-get-whitespace)))
-              (sp-get whitespace
-                (when (= :beg e)
-                  (delete-region :beg :end)
-                  (setq dws (- :end :beg)))))
-          (setq nl t))
-        (setq save-text (delete-and-extract-region b e))
-        (when nl
-          (let ((whitespace (sp-get-whitespace)))
-            (sp-get whitespace (delete-region :beg :end))
-            (sp-get whitespace (setq dws (+ dws (- :end :beg))))))
-        (sp-get enc (goto-char (- :end (length save-text) dws)))
-        (insert "\n" save-text)
-        (sp-get enc (sp--indent-region :beg-prf :end))
-        (setq e (point)))
-      ;; if we're at an empty line, remove it
-      (setq dws 0)                      ; variable reuse, ugly :/
-      (when (string-match-p "^[\n\t ]+\\'" (thing-at-point 'line))
-        (let ((b (bounds-of-thing-at-point 'line)))
-          (delete-region (car b) (cdr b))
-          (setq dws (- (cdr b) (car b)))))
-      (when (sp--looking-back (sp--get-opening-regexp) nil t)
-        (let ((whitespace (sp-get-whitespace)))
-          (sp-get whitespace
-            (delete-region :beg :end)
-            (setq dws (- :end :beg)))))
-      (goto-char (- e dws)))))
-
-(defun sp-forward-whitespace (&optional arg)
-  "Skip forward past the whitespace characters.
-With non-nil ARG return number of characters skipped."
-  (interactive "^P")
-  (let ((rel-move (skip-chars-forward " \t\n")))
-    (if arg rel-move (point))))
-
-(put 'sp-forward-whitespace 'CUA 'move)
-
-(defun sp-backward-whitespace (&optional arg)
-  "Skip backward past the whitespace characters.
-With non-nil ARG return number of characters skipped."
-  (interactive "^P")
-  (let ((rel-move (skip-chars-backward " \t\n")))
-    (if arg rel-move (point))))
-
-(put 'sp-backward-whitespace 'CUA 'move)
-
-(defun sp-split-sexp (arg)
-  "Split the list or string the point is on into two.
-
-If ARG is a raw prefix \\[universal-argument] split all the sexps in current expression
-in separate lists enclosed with delimiters of the current
-expression.
-
-See also setting `sp-split-sexp-always-split-as-string' which
-determines how sexps inside strings are treated and also for a
-discussion of how to automatically add concatenation operators to
-string splitting.
-
-Examples:
-
-  (foo bar |baz quux)   -> (foo bar) |(baz quux)
-
-  \"foo bar |baz quux\"   -> \"foo bar\" |\"baz quux\"
-
-  ([foo |bar baz] quux) -> ([foo] |[bar baz] quux)
-
-  (foo bar| baz quux) -> (foo) (bar|) (baz) (quux) ;; \\[universal-argument]"
-  (interactive "P")
-  (cond
-   ((equal arg '(4))
-    (-when-let (items (sp-get-list-items))
-      (let ((op (sp-get (car items) :op))
-            (cl (sp-get (car items) :cl))
-            (beg (sp-get (car items) :beg))
-            (end (sp-get (car items) :end)))
-        (!cdr items)
-        (setq items (nreverse items))
-        (save-excursion
-          (goto-char end)
-          (delete-char (- (length cl)))
-          (while items
-            (sp-get (car items)
-              (goto-char :end)
-              (insert cl)
-              (goto-char :beg)
-              (insert op))
-            (!cdr items))
-          (goto-char beg)
-          (delete-char (length op))))))
-   (t
-    (let ((should-split-as-string
-           (and sp-split-sexp-always-split-as-string
-                (sp-point-in-string))))
-      (-when-let (ok (if should-split-as-string
-                         (save-excursion
-                           (goto-char (1- (cdr (sp-get-quoted-string-bounds))))
-                           (sp-get-enclosing-sexp 1))
-                       (sp-get-enclosing-sexp 1)))
-        (sp-get ok
-          (sp--run-hook-with-args :op :pre-handlers 'split-sexp)
-          (if should-split-as-string
-              (progn
-                (insert :cl)
-                (save-excursion (insert :op)))
-            (forward-char (- (prog1 (sp-backward-whitespace t) (insert :cl))))
-            (save-excursion (sp-forward-whitespace) (insert :op)))
-          (sp--run-hook-with-args :op :post-handlers 'split-sexp)))))))
-
-(defun sp--join-sexp (prev next)
-  "Join the expressions PREV and NEXT if they are of the same type.
-
-The expression with smaller :beg is considered the previous one,
-so the input order does not actually matter.
-
-Return the information about resulting expression."
-  (if (and (sp-compare-sexps prev next equal :op)
-           (sp-compare-sexps prev next equal :cl))
-      ;; if there's some prefix on the second expression, remove it.
-      ;; We do not move it to the first expression, it is assumed
-      ;; there's one already
-      (progn
-        (if (sp-compare-sexps prev next >)
-            (let ((tmp prev))
-              (setq prev next)
-              (setq next tmp)))
-        (sp-get next (delete-region :beg-prf :beg-in))
-        (sp-get prev (delete-region :end-in :end))
-        (list :beg (sp-get prev :beg)
-              :end (- (sp-get next (- :end :op-l :prefix-l)) (sp-get prev :cl-l))
-              :op (sp-get prev :op)
-              :cl (sp-get prev :cl)
-              :prefix (sp-get prev :prefix)))
-    (sp-message :different-type)))
-
-(defun sp-join-sexp (&optional arg)
-  "Join the sexp before and after point if they are of the same type.
-
-If ARG is positive N, join N expressions after the point with the
-one before the point.
-
-If ARG is negative -N, join N expressions before the point with
-the one after the point.
-
-If ARG is a raw prefix \\[universal-argument] join all the things up until the end
-of current expression.
-
-The joining stops at the first expression of different type.
-
-Examples:
-
-  (foo bar) |(baz)                    -> (foo bar |baz)
-
-  (foo) |(bar) (baz)                  -> (foo |bar baz) ;; 2
-
-  [foo] [bar] |[baz]                  -> [foo bar |baz] ;; -2
-
-  (foo bar (baz)| (quux) (blob bluq)) -> (foo bar (baz| quux blob bluq)) ;; \\[universal-argument]"
-  (interactive "P")
-  (let* ((raw (sp--raw-argument-p arg))
-         (arg (prefix-numeric-value arg))
-         (n (abs arg))
-         (prev (save-excursion (sp-backward-sexp (sp--signum arg))))
-         next)
-    (save-excursion
-      (cond
-       ((and raw (= n 4))
-        (setq next (sp-forward-sexp (sp--signum arg)))
-        (while (cond
-                ((> arg 0)
-                 (sp-compare-sexps next prev > :beg :end))
-                ((< arg 0)
-                 (sp-compare-sexps next prev < :end :beg)))
-          (setq prev (sp--join-sexp prev next))
-          (setq next (sp-forward-sexp (sp--signum arg)))))
-       (t (while (> n 0)
-            (setq next (sp-forward-sexp (sp--signum arg)))
-            (setq prev (sp--join-sexp prev next))
-            (setq n (1- n)))))
-      prev)))
-
-(defun sp--next-thing-selection (&optional arg point)
-  "Return the bounds of selection over next thing.
-
-See `sp-select-next-thing' for the meaning of ARG.
-
-If POINT is non-nil, it is assumed it's a point inside the buffer
-from which the selection extends, either forward or backward,
-depending on the value of ARG.
-
-The return value has the same format as `sp-get-sexp'.  This does
-not necessarily represent a valid balanced expression!"
-  (save-excursion
-    (let* ((raw (sp--raw-argument-p arg))
-           (arg (prefix-numeric-value arg))
-           (beg point) (end point)
-           (op "") (cl "")
-           (prefix "")
-           (suffix ""))
-      (cond
-       ;; select up until end of list
-       ((and raw (= arg 4))
-        (let ((enc (sp-get-enclosing-sexp)))
-          (if (not enc)
-              (error "No enclosing expression")
-            (save-excursion
-              (goto-char (sp-get enc :end-in))
-              (-when-let (ok (sp-get-thing t))
-                (sp-get ok
-                  (setq end :end)
-                  (setq cl :cl)
-                  (setq suffix :suffix)))))
-          (unless point
-            (-when-let (ok (sp-get-thing))
-              (if (sp-compare-sexps ok enc)
-                  (progn
-                    (setq beg end)
-                    (setq end (sp-get enc :end-in)))
-                (sp-get ok
-                  (setq beg :beg)
-                  (setq op :op)
-                  (setq prefix :prefix)))))))
-       ;; select up until beg of list
-       ((and raw (= arg -4))
-        (let ((enc (sp-get-enclosing-sexp)))
-          (if (not enc)
-              (error "No enclosing expression")
-            (save-excursion
-              (goto-char (sp-get enc :beg-in))
-              (-when-let (ok (sp-get-thing))
-                (sp-get ok
-                  (setq beg :beg)
-                  (setq op :op)
-                  (setq prefix :prefix))))))
-        (unless point
-          (-when-let (ok (sp-get-thing t))
-            (sp-get ok
-              (setq end :end)
-              (setq cl :cl)
-              (setq suffix :suffix)))))
-       ;; select the enclosing expression
-       ((and raw (= (abs arg) 16))
-        (let ((enc (sp-get-enclosing-sexp)))
-          (if (not enc)
-              (error "No enclosing expression")
-            (sp-get enc (setq beg :beg) (setq end :end)
-                    (setq op :op) (setq cl :cl)
-                    (setq prefix :prefix)
-                    (setq suffix :suffix)))))
-       ;; normal selection, select N expressions
-       ((> arg 0)
-        (let* ((first (sp-forward-sexp))
-               (last first))
-          (setq arg (1- arg))
-          (setq beg (or point (sp-get first :beg)))
-          (while (and (> arg 0) last)
-            (setq last (sp-forward-sexp))
-            (let ((nb (sp-get last :beg))) (when (< nb beg)
-                                             (setq first last)
-                                             (setq beg nb)))
-            (setq arg (1- arg)))
-          (unless (and point (= point beg))
-            (sp-get first
-              (setq beg :beg)
-              (setq op :op)
-              (setq prefix :prefix)))
-          (sp-get last
-            (setq end :end)
-            (setq cl :cl)
-            (setq suffix :suffix))))
-       ;; normal select, select -N expressions
-       ((< arg 0)
-        (let* ((first (sp-backward-sexp))
-               (last first))
-          (setq arg (1+ arg))
-          (setq end (or point (sp-get first :end)))
-          (while (and (< arg 0) last)
-            (setq last (sp-backward-sexp))
-            (let ((ne (sp-get last :end))) (when (> ne end)
-                                             (setq first last)
-                                             (setq end ne)))
-            (setq arg (1+ arg)))
-          (sp-get last
-            (setq beg :beg)
-            (setq op :op)
-            (setq prefix :prefix))
-          (unless (and point (= point end))
-            (sp-get first
-              (setq end :end)
-              (setq cl :cl)
-              (setq suffix :suffix)))))
-       ;; N = 0, select insides
-       ((= arg 0)
-        (let ((enc (sp-get-enclosing-sexp)))
-          (if (not enc)
-              (error "No enclosing expression")
-            (save-excursion
-              (goto-char (sp-get enc :beg-in))
-              (-when-let (ok (sp-get-thing))
-                (sp-get ok
-                  (setq beg :beg)
-                  (setq op :op)
-                  (setq prefix :prefix))))
-            (save-excursion
-              (goto-char (sp-get enc :end-in))
-              (-when-let (ok (sp-get-thing t))
-                (sp-get ok
-                  (setq end :end)
-                  (setq cl :cl)
-                  (setq suffix :suffix))))))))
-      (list :beg beg :end end :op op :cl cl :prefix prefix :suffix suffix))))
-
-(defun sp-select-next-thing (&optional arg point)
-  "Set active region over next thing as recognized by `sp-get-thing'.
-
-If ARG is positive N, select N expressions forward.
-
-If ARG is negative -N, select N expressions backward.
-
-If ARG is a raw prefix \\[universal-argument] select all the things up until the
-end of current expression.
-
-If ARG is a raw prefix \\[universal-argument] \\[universal-argument] select the current expression (as
-if doing `sp-backward-up-sexp' followed by
-`sp-select-next-thing').
-
-If ARG is number 0 (zero), select all the things inside the
-current expression.
-
-If POINT is non-nil, it is assumed it's a point inside the buffer
-from which the selection extends, either forward or backward,
-depending on the value of ARG.
-
-If the currently active region contains a balanced expression,
-following invocation of `sp-select-next-thing' will select the
-inside of this expression .  Therefore calling this function
-twice with no active region will select the inside of the next
-expression.
-
-If the point is right in front of the expression any potential
-prefix is ignored.  For example, '|(foo) would only select (foo)
-and not include ' in the selection.  If you wish to also select
-the prefix, you have to move the point backwards.
-
-With `sp-navigate-consider-symbols' symbols and strings are also
-considered balanced expressions."
-  (interactive "P")
-  (let* ((selection (sp--next-thing-selection arg point))
-         (p (point))
-         (b (sp-get selection :beg))
-         (e (sp-get selection :end))
-         contracted)
-    ;; Show a helpful error if we're trying to move beyond the
-    ;; beginning or end of the buffer.
-    (when (or (null b) (null e))
-      (user-error (if (bobp) "At beginning of buffer" "At end of buffer")))
-    ;; if region is active and ready to use, check if this selection
-    ;; == old selection.  If so, reselect the insides
-    (when (region-active-p)
-      (let ((rb (region-beginning))
-            (re (region-end)))
-        (when (and (sp-get selection
-                     (or (= rb :beg)
-                         (= rb :beg-prf)))
-                   (= re (sp-get selection :end)))
-          (sp-get selection
-            (setq b :beg-in)
-            (setq e :end-in))
-          (setq contracted t))))
-    ;; if we moved forward check if the old-point was in front of an
-    ;; expression and after a prefix. If so, remove the prefix from
-    ;; the selection
-    (unless (and (> (prefix-numeric-value arg) 0)
-                 (not (sp--raw-argument-p arg))
-                 (= b p))
-      (unless contracted (setq b (sp-get selection :beg-prf))))
-    (push-mark b t t)
-    (goto-char e)
-    selection))
-
-(defun sp-select-previous-thing (&optional arg point)
-  "Set active region over ARG previous things as recognized by `sp-get-thing'.
-
-If ARG is negative -N, select that many expressions forward.
-
-With `sp-navigate-consider-symbols' symbols and strings are also
-considered balanced expressions."
-  (interactive "P")
-  (sp-select-next-thing (sp--negate-argument arg) point))
-
-(defun sp-select-next-thing-exchange (&optional arg point)
-  "Just like `sp-select-next-thing' but run `exchange-point-and-mark' afterwards."
-  (interactive "P")
-  (prog1
-      (sp-select-next-thing arg point)
-    (exchange-point-and-mark)))
-
-(defun sp-select-previous-thing-exchange (&optional arg point)
-  "Just like `sp-select-previous-thing' but run `exchange-point-and-mark' afterwards."
-  (interactive "P")
-  (prog1
-      (sp-select-previous-thing arg point)
-    (exchange-point-and-mark)))
-
-(defun sp-mark-sexp (&optional arg allow-extend)
-  "Set mark ARG balanced expressions from point.
-The place mark goes is the same place \\[sp-forward-sexp] would
-move to with the same argument.
-Interactively, if this command is repeated
-or (in Transient Mark mode) if the mark is active,
-it marks the next ARG sexps after the ones already marked.
-This command assumes point is not in a string or comment."
-  (interactive "P\np")
-  (cond ((and allow-extend
-              (or (and (eq last-command this-command) (mark t))
-                  (and transient-mark-mode mark-active)))
-         (setq arg (if arg (prefix-numeric-value arg)
-                     (if (< (mark) (point)) -1 1)))
-         (set-mark
-          (save-excursion
-            (let ((p (point)))
-              (goto-char (mark))
-              (sp-forward-sexp arg)
-              (unless (sp-region-ok-p p (point))
-                (user-error "Can not extend selection: region invalid"))
-              (point)))))
-        (t
-         (push-mark
-          (save-excursion
-            (sp-forward-sexp (prefix-numeric-value arg))
-            (point))
-          nil t))))
-
-(defun sp-delete-char (&optional arg)
-  "Delete a character forward or move forward over a delimiter.
-
-If on an opening delimiter, move forward into balanced expression.
-
-If on a closing delimiter, refuse to delete unless the balanced
-expression is empty, in which case delete the entire expression.
-
-If the delimiter does not form a balanced expression, it will be
-deleted normally.
-
-With a numeric prefix argument N > 0, delete N characters forward.
-
-With a numeric prefix argument N < 0, delete N characters backward.
-
-With a numeric prefix argument N = 0, simply delete a character
-forward, without regard for delimiter balancing.
-
-If ARG is raw prefix argument \\[universal-argument], delete
-characters forward until a closing delimiter whose deletion would
-break the proper pairing is hit.
-
-Examples:
-
- (quu|x \"zot\") -> (quu| \"zot\")
-
- (quux |\"zot\") -> (quux \"|zot\") -> (quux \"|ot\")
-
- (foo (|) bar) -> (foo | bar)
-
- |(foo bar) -> (|foo bar)"
-  (interactive "P")
-  (sp--with-case-sensitive
-    (let* ((raw (sp--raw-argument-p arg))
-           ;; if you edit 10 gigabyte files in Emacs, you're gonna have
-           ;; a bad time.
-           (n (if raw 100000000
-                (prefix-numeric-value arg))))
-      (cond
-       ((> n 0)
-        (while (> n 0)
-          (cond
-           ((let ((ok (sp-point-in-empty-sexp)))
-              (when ok
-                (backward-char (length (car ok)))
-                (delete-char (+ (length (car ok)) (length (cdr ok)))))
-              ok)
-            ;; make this customizable
-            (setq n (1- n)))
-           ((and (sp-point-in-string)
-                 (save-excursion (forward-char) (not (sp-point-in-string))))
-            (setq n 0))
-           ((sp--looking-at (sp--get-opening-regexp (sp--get-pair-list-context 'navigate)))
-            (-if-let (thing (save-match-data (sp-get-thing)))
-                (cond
-                 ((= (sp-get thing :end-in) (point))
-                  (setq n 0))
-                 ((= (sp-get thing :beg) (point))
-                  (goto-char (sp-get thing :beg-in)))
-                 (t
-                  (delete-char (length (match-string 0)))))
-              (delete-char (length (match-string 0))))
-            ;; make this customizable
-            (setq n (1- n)))
-           ((and (not (sp-point-in-string))
-                 (save-excursion (forward-char) (sp-point-in-string)))
-            (forward-char)
-            ;; make this customizable
-            (setq n (1- n)))
-           ((sp--looking-at (sp--get-closing-regexp (sp--get-pair-list-context 'navigate)))
-            (if (save-match-data (sp-get-thing))
-                ;; make this customizable -- maybe we want to skip and
-                ;; continue deleting
-                (setq n 0)
-              (delete-char (length (match-string 0)))
-              (setq n (1- n))))
-           ((bound-and-true-p hungry-delete-mode)
-            (hungry-delete-forward 1)
-            (setq n (1- n)))
-           (t
-            (delete-char 1)
-            (setq n (1- n))))))
-       ((= n 0) (delete-char 1))
-       (t (sp-backward-delete-char (sp--negate-argument arg)))))))
-
-(defun sp-backward-delete-char (&optional arg)
-  "Delete a character backward or move backward over a delimiter.
-
-If on a closing delimiter, move backward into balanced expression.
-
-If on a opening delimiter, refuse to delete unless the balanced
-expression is empty, in which case delete the entire expression.
-
-If the delimiter does not form a balanced expression, it will be
-deleted normally.
-
-With a numeric prefix argument N > 0, delete N characters backward.
-
-With a numeric prefix argument N < 0, delete N characters forward.
-
-With a numeric prefix argument N = 0, simply delete a character
-backward, without regard for delimiter balancing.
-
-If ARG is raw prefix argument \\[universal-argument], delete
-characters backward until a opening delimiter whose deletion would
-break the proper pairing is hit.
-
-Examples:
-
- (\"zot\" q|uux) -> (\"zot\" |uux)
-
- (\"zot\"| quux) -> (\"zot|\" quux) -> (\"zo|\" quux)
-
- (foo (|) bar) -> (foo | bar)
-
- (foo bar)| -> (foo bar|)"
-  (interactive "P")
-  (if (and sp-autodelete-wrap
-           (eq sp-last-operation 'sp-wrap-region))
-      (sp-backward-unwrap-sexp)
-    (sp--with-case-sensitive
-      (let* ((raw (sp--raw-argument-p arg))
-             ;; if you edit 10 gigabyte files in Emacs, you're gonna have
-             ;; a bad time.
-             (n (if raw 100000000
-                  (prefix-numeric-value arg))))
-        (cond
-         ((> n 0)
-          (while (> n 0)
-            (cond
-             ((let ((ok (sp-point-in-empty-sexp)))
-                (when ok
-                  (backward-char (length (car ok)))
-                  (delete-char (+ (length (car ok)) (length (cdr ok)))))
-                ok)
-              ;; make this customizable
-              (setq n (1- n)))
-             ((and (sp-point-in-string)
-                   (save-excursion (backward-char) (not (sp-point-in-string))))
-              (setq n 0))
-             ((sp--looking-back (sp--get-closing-regexp (sp--get-pair-list-context 'navigate)))
-              (-if-let (thing (save-match-data (sp-get-thing t)))
-                  (cond
-                   ((= (sp-get thing :end) (point))
-                    (goto-char (sp-get thing :end-in)))
-                   ((= (sp-get thing :beg-in) (point))
-                    (setq n 0))
-                   (t
-                    (delete-char (- (length (match-string 0))))))
-                (delete-char (- (length (match-string 0)))))
-              ;; make this customizable
-              (setq n (1- n)))
-             ((and (not (sp-point-in-string))
-                   (save-excursion (backward-char) (sp-point-in-string)))
-              (backward-char)
-              ;; make this customizable
-              (setq n (1- n)))
-             ((sp--looking-back (sp--get-opening-regexp (sp--get-pair-list-context 'navigate)))
-              (if (save-match-data (sp-get-thing t))
-                  ;; make this customizable -- maybe we want to skip and
-                  ;; continue deleting
-                  (setq n 0)
-                (delete-char (- (length (match-string 0))))
-                (setq n (1- n))))
-             ((bound-and-true-p hungry-delete-mode)
-              (hungry-delete-backward 1)
-              (setq n (1- n)))
-             (t
-              (delete-char -1)
-              (setq n (1- n))))))
-         ((= n 0) (delete-char -1))
-         (t (sp-delete-char (sp--negate-argument arg))))))))
-
-(put 'sp-backward-delete-char 'delete-selection 'supersede)
-(put 'sp-delete-char 'delete-selection 'supersede)
-
-(defun sp-point-in-empty-sexp (&optional pos)
-  "Return non-nil if point is in empty sexp or string.
-
-The return value is active cons pair of opening and closing sexp
-delimiter enclosing this sexp."
-  (setq pos (or pos (point)))
-  (let (op act)
-    (cond
-     ((sp--looking-back (sp--get-opening-regexp (sp--get-pair-list-context 'navigate)))
-      (setq op (match-string 0))
-      (setq act (--first (equal (car it) op) sp-pair-list))
-      (when (sp--looking-at (regexp-quote (cdr act))) act))
-     ((sp-point-in-empty-string pos)))))
-
-(defun sp-point-in-empty-string (&optional pos)
-  "Return non-nil if point is in empty string.
-
-The return value is actually cons pair of opening and closing
-string delimiter enclosing this string."
-  (setq pos (or pos (point)))
-  (when (and (sp-point-in-string)
-             (save-excursion (if (= (point-max) (point))
-                                 t
-                               (forward-char) (not (sp-point-in-string))))
-             (save-excursion (backward-char) (not (sp-point-in-string))))
-    (save-excursion
-      (let* ((syntax (nth 3 (syntax-ppss pos)))
-             (c (char-to-string (if (eq syntax t) (following-char) syntax))))
-        (cons c c)))))
-
-(defun sp--use-subword ()
-  "Return non-nil if word killing commands should kill subwords.
-This is the case if `subword-mode' is enabled and
-`sp-use-subword' is non-nil."
-  (and sp-use-subword (bound-and-true-p subword-mode)))
-
-(defun sp--kill-word (&optional n)
-  "Kill N words or subwords."
-  (let ((n (or n 1)))
-    (if (sp--use-subword)
-        (subword-kill n)
-      (kill-word n))))
-
-(defun sp--forward-word (&optional n)
-  "Move forward N words or subwords."
-  (let ((n (or n 1)))
-    (if (sp--use-subword)
-        (subword-forward n)
-      (forward-word n))))
-
-(defun sp--backward-word (&optional n)
-  "Move backward N words or subwords."
-  (let ((n (or n 1)))
-    (if (sp--use-subword)
-        (subword-backward n)
-      (backward-word n))))
-
-(defun sp-kill-symbol (&optional arg word)
-  "Kill a symbol forward, skipping over any intervening delimiters.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-backward direction.
-
-See `sp-forward-symbol' for what constitutes a symbol."
-  (interactive "p")
-  (sp--with-case-sensitive
-    (if (> arg 0)
-        (while (> arg 0)
-          (-when-let (s (sp-get-symbol))
-            (sp-get s
-              (let* ((beg
-                      (if (< :beg-prf (point))
-                          (if word (point) :beg)
-                        (if (= (save-excursion
-                                 (sp-skip-forward-to-symbol)
-                                 (point))
-                               :beg-prf)
-                            (point)
-                          :beg-prf)))
-                     (end (if word
-                              (let ((fw-end
-                                     (save-excursion
-                                       (sp--forward-word)
-                                       (point))))
-                                (if (sp-region-ok-p beg fw-end)
-                                    fw-end
-                                  :end-suf))
-                            :end-suf)))
-                (goto-char beg)
-                (kill-region beg end))))
-          (sp--cleanup-after-kill)
-          (setq arg (1- arg)))
-      (sp-backward-kill-symbol (sp--negate-argument arg) word))))
-
-(defun sp-kill-word (&optional arg)
-  "Kill a word forward, skipping over intervening delimiters.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-backward direction."
-  (interactive "p")
-  (sp-kill-symbol arg t))
-
-(defun sp-delete-symbol (&optional arg word)
-  "Delete a symbol forward, skipping over any intervening delimiters.
-
-Deleted symbol does not go to the clipboard or kill ring.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-backward direction.
-
-See `sp-forward-symbol' for what constitutes a symbol."
-  (interactive "p")
-  (let* ((kill-ring kill-ring)
-         (select-enable-clipboard nil))
-    (sp-kill-symbol arg word)))
-
-(defun sp-delete-word (&optional arg)
-  "Delete a word forward, skipping over intervening delimiters.
-
-Deleted word does not go to the clipboard or kill ring.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-backward direction."
-  (interactive "p")
-  (sp-delete-symbol arg t))
-
-(defun sp-backward-kill-symbol (&optional arg word)
-  "Kill a symbol backward, skipping over any intervening delimiters.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-forward direction.
-
-See `sp-backward-symbol' for what constitutes a symbol."
-  (interactive "p")
-  (sp--with-case-sensitive
-    (if (> arg 0)
-        (while (> arg 0)
-          (-when-let (s (sp-get-symbol t))
-            (sp-get s
-              (let* ((end
-                      (if (< (point) :end-suf)
-                          (if word (point) :end-suf)
-                        (if (= (save-excursion
-                                 (sp-skip-backward-to-symbol)
-                                 (point))
-                               :end-suf)
-                            (point)
-                          :end-suf)))
-                     (beg (if word
-                              (let ((bw-start
-                                     (save-excursion
-                                       (sp--backward-word)
-                                       (point))))
-                                (if (sp-region-ok-p bw-start end)
-                                    bw-start
-                                  :beg-prf))
-                            :beg-prf)))
-                (goto-char end)
-                (kill-region end beg))))
-          (sp--cleanup-after-kill)
-          (setq arg (1- arg)))
-      (sp-kill-symbol (sp--negate-argument arg) word))))
-
-(defun sp-backward-kill-word (&optional arg)
-  "Kill a word backward, skipping over intervening delimiters.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-backward direction."
-  (interactive "p")
-  (sp-backward-kill-symbol arg t))
-
-(defun sp-backward-delete-symbol (&optional arg word)
-  "Delete a symbol backward, skipping over any intervening delimiters.
-
-Deleted symbol does not go to the clipboard or kill ring.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-forward direction.
-
-See `sp-backward-symbol' for what constitutes a symbol."
-  (interactive "p")
-  (let* ((kill-ring kill-ring)
-         (select-enable-clipboard nil))
-    (sp-backward-kill-symbol arg word)))
-
-(defun sp-backward-delete-word (&optional arg)
-  "Delete a word backward, skipping over intervening delimiters.
-
-Deleted word does not go to the clipboard or kill ring.
-
-With ARG being positive number N, repeat that many times.
-
-With ARG being Negative number -N, repeat that many times in
-backward direction."
-  (interactive "p")
-  (sp-backward-delete-symbol arg t))
-
-(defun sp-delete-region (beg end)
-  "Delete the text between point and mark, like `delete-region'.
-
-BEG and END are the bounds of region to be deleted.
-
-If that text is unbalanced, signal an error instead.
-With a prefix argument, skip the balance check."
-  (interactive "r")
-  (when (or current-prefix-arg
-            (sp-region-ok-p beg end)
-            (user-error (sp-message :unbalanced-region :return)))
-    (setq this-command 'delete-region)
-    (delete-region beg end)))
-
-(defun sp-kill-region (beg end)
-  "Kill the text between point and mark, like `kill-region'.
-
-BEG and END are the bounds of region to be killed.
-
-If that text is unbalanced, signal an error instead.
-With a prefix argument, skip the balance check."
-  (interactive "r")
-  (when (or current-prefix-arg
-            (sp-region-ok-p beg end)
-            (user-error (sp-message :unbalanced-region :return)))
-    (setq this-command 'kill-region)
-    (kill-region beg end)))
-
-(defun sp-indent-defun (&optional arg)
-  "Reindent the current defun.
-
-If point is inside a string or comment, fill the current
-paragraph instead, and with ARG, justify as well.
-
-Otherwise, reindent the current defun, and adjust the position
-of the point."
-  (interactive "P")
-  (if (sp-point-in-string-or-comment)
-      (fill-paragraph arg)
-    (let ((column (current-column))
-          (indentation (sp--current-indentation)))
-      (save-excursion
-        (end-of-defun)
-        (beginning-of-defun)
-        (indent-sexp))
-      (sp--back-to-indentation column indentation))))
-
-(cl-defun sp-region-ok-p (start end)
-  "Test if region between START and END is balanced.
-
-A balanced region is one where all opening delimiters are matched
-by closing delimiters.
-
-This function does *not* check that the delimiters are correctly
-ordered, that is [(]) is correct even though it is not logically
-properly balanced."
-  (interactive "r")
-  (save-excursion
-    (save-restriction
-      (when (eq (sp-point-in-string start) (sp-point-in-string end))
-        (narrow-to-region start end)
-        (let ((regex (sp--get-allowed-regexp (-difference sp-pair-list (sp--get-allowed-pair-list)))))
-          (goto-char (point-min))
-          (while (or (prog1 (sp-forward-sexp)
-                       (sp-skip-forward-to-symbol))
-                     ;; skip impossible delimiters
-                     (when (looking-at-p regex)
-                       (goto-char (match-end 0)))))
-          (looking-at-p "[[:blank:]\n]*\\'"))))))
-
-(defun sp-newline ()
-  "Insert a newline and indent it.
-
-This is like `newline-and-indent', but it not only indents the
-line that the point is on but also the S-expression following the
-point, if there is one.
-
-If in a string, just insert a literal newline.
-
-If in a comment and if followed by invalid structure, call
-`indent-new-comment-line' to keep the invalid structure in a
-comment."
-  (interactive)
-  (cond
-   ((sp-point-in-string)
-    (newline))
-   ((sp-point-in-comment)
-    (if (sp-region-ok-p (point) (point-at-eol))
-        (progn (newline-and-indent) (ignore-errors (indent-sexp)))
-      (indent-new-comment-line)))
-   (t
-    (newline-and-indent)
-    (ignore-errors (indent-sexp)))))
-
-(defun sp-comment ()
-  "Insert the comment character and adjust hanging sexps such
-  that it doesn't break structure."
-  (interactive)
-  (if (sp-point-in-string-or-comment)
-      (if (= 1 (length (single-key-description last-command-event))) ;; pretty hacky
-          (insert (single-key-description last-command-event))
-        (insert comment-start))
-    (sp--with-case-sensitive
-      (let ((old-point (point))
-            (column (current-column))
-            (indentation (sp--current-indentation))
-            (old-line (line-number-at-pos))
-            (hsexp (sp-get-hybrid-sexp))
-            (newline-inserted 0))
-        (goto-char (sp-get hsexp :end))
-        (if (and (sp--looking-at-p (concat "\\s-*" (sp--get-closing-regexp)))
-                 (= old-line (line-number-at-pos)))
-            (progn
-              (setq old-point (point))
-              (newline)
-              (setq newline-inserted (1+ (- (line-end-position) (point)))))
-          (when (/= old-line (line-number-at-pos))
-            (sp-backward-sexp)
-            (setq old-point (+ old-point (skip-syntax-backward " ")))
-            (newline)
-            (setq newline-inserted (- (line-end-position) (point)))))
-        ;; @{ indenting madness
-        (goto-char old-point)
-        (sp-get hsexp (sp--indent-region :beg (+ :end newline-inserted)))
-        (sp--back-to-indentation column indentation)
-        ;; @}
-        (let ((comment-delim (or (cdr (--first (memq major-mode (car it)) sp-comment-string))
-                                 comment-start)))
-          (when (and (/= 0 (current-column))
-                     (not (sp--looking-back-p "\\s-")))
-            (insert " "))
-          (insert comment-delim)
-          (when (/= newline-inserted 0)
-            (save-excursion
-              (forward-line 1)
-              (indent-according-to-mode))))))))
-
-(defun sp-wrap-round ()
-  "Wrap following sexp in round parentheses."
-  (interactive)
-  (sp-wrap-with-pair "("))
-
-(defun sp-wrap-square ()
-  "Wrap following sexp in square brackets."
-  (interactive)
-  (sp-wrap-with-pair "["))
-
-(defun sp-wrap-curly ()
-  "Wrap following sexp in curly braces."
-  (interactive)
-  (sp-wrap-with-pair "{"))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; show-smartparens-mode
-
-(defgroup show-smartparens nil
-  "Show smartparens minor mode."
-  :group 'smartparens)
-
-(defcustom sp-show-pair-delay 0.125
-  "Time in seconds to delay before showing a matching pair."
-  :type '(number :tag "seconds")
-  :group 'show-smartparens)
-
-(defcustom sp-show-enclosing-pair-commands '(
-                                             sp-show-enclosing-pair
-                                             sp-forward-slurp-sexp
-                                             sp-backward-slurp-sexp
-                                             sp-forward-barf-sexp
-                                             sp-backward-barf-sexp
-                                             )
-  "List of commands after which the enclosing pair is highlighted.
-
-After the next command the pair will automatically disappear."
-  :type '(repeat symbol)
-  :group 'show-smartparens)
-
-(defcustom sp-show-pair-from-inside nil
-  "If non-nil, highlight the enclosing pair if immediately after
-the opening delimiter or before the closing delimiter."
-  :type 'boolean
-  :group 'show-smartparens)
-
-(defface sp-show-pair-match-face
-  '((t (:inherit show-paren-match)))
-  "`show-smartparens-mode' face used for a matching pair."
-  :group 'show-smartparens)
-
-(defface sp-show-pair-mismatch-face
-  '((t (:inherit show-paren-mismatch)))
-  "`show-smartparens-mode' face used for a mismatching pair."
-  :group 'show-smartparens)
-
-(defface sp-show-pair-enclosing
-  '((t (:inherit highlight)))
-  "The face used to highlight pair overlays."
-  :group 'show-smartparens)
-
-(defface sp-show-pair-match-content-face
-  '()
-  "`show-smartparens-mode' face used for a matching pair's content."
-  :group 'show-smartparens)
-
-(defvar sp-show-pair-idle-timer nil)
-
-(defvar sp-show-pair-overlays nil)
-
-(defvar sp-show-pair-previous-match-positions nil)
-
-(defvar sp-show-pair-previous-point nil)
-
-(defvar sp-show-pair-enc-overlays nil)
-
-;;;###autoload
-(define-minor-mode show-smartparens-mode
-  "Toggle visualization of matching pairs.  When enabled, any
-matching pair is highlighted after `sp-show-pair-delay' seconds
-of Emacs idle time if the point is immediately in front or after
-a pair.  This mode works similarly to `show-paren-mode', but
-support custom pairs."
-  :init-value nil
-  :group 'show-smartparens
-  (if show-smartparens-mode
-      (unless sp-show-pair-idle-timer
-        (setq sp-show-pair-idle-timer
-              (run-with-idle-timer sp-show-pair-delay t
-                                   'sp-show--pair-function)))
-    (when sp-show-pair-overlays
-      (sp-show--pair-delete-overlays))))
-
-;;;###autoload
-(define-globalized-minor-mode show-smartparens-global-mode
-  show-smartparens-mode
-  turn-on-show-smartparens-mode)
-
-;;;###autoload
-(defun turn-on-show-smartparens-mode ()
-  "Turn on `show-smartparens-mode'."
-  (interactive)
-  (unless (or (member major-mode sp-ignore-modes-list)
-              (and (not (derived-mode-p 'comint-mode))
-                   (eq (get major-mode 'mode-class) 'special)))
-    (show-smartparens-mode t)))
-
-;;;###autoload
-(defun turn-off-show-smartparens-mode ()
-  "Turn off `show-smartparens-mode'."
-  (interactive)
-  (show-smartparens-mode -1))
-
-(defun sp-show-enclosing-pair ()
-  "Highlight the enclosing pair around point."
-  (interactive))
-
-(defun sp-highlight-current-sexp (_arg)
-  "Highlight the expression returned by the next command, preserving point position."
-  (interactive "P")
-  (let* ((cmd (read-key-sequence "" t))
-         (com (key-binding cmd)))
-    (if (commandp com)
-        (save-excursion
-          (let ((ok (call-interactively com)))
-            (sp-show--pair-enc-function ok)))
-      (execute-kbd-macro cmd))))
-
-(defun sp-show--pair-function ()
-  "Display the show pair overlays and print the line of the
-matching paren in the echo area if not visible on screen."
-  (when show-smartparens-mode
-    (sp--with-case-sensitive
-      (save-match-data
-        (cl-labels ((scan-and-place-overlays
-                     (match &optional back)
-                     ;; we can use `sp-get-thing' here because we *are* at some
-                     ;; pair opening, and so only the tag or the sexp can trigger.
-                     (-if-let (ok (sp-get-thing back))
-                         (sp-get ok
-                           (when (or (and back
-                                          (or (= :end (point))
-                                              (= :beg-in (point))))
-                                     (and (not back)
-                                          (or (= :beg (point))
-                                              (= :end-in (point)))))
-                             (sp-show--pair-create-overlays :beg :end :op-l :cl-l)
-                             (when (and sp-echo-match-when-invisible
-                                        (not (or (active-minibuffer-window) cursor-in-echo-area)))
-                               (sp-show--pair-echo-match :beg :end :op-l :cl-l))))
-                       (if back
-                           (sp-show--pair-create-mismatch-overlay (- (point) (length match))
-                                                                  (length match))
-                         (sp-show--pair-create-mismatch-overlay (point) (length match)))
-                       (setq sp-show-pair-previous-match-positions nil)
-                       (setq sp-show-pair-previous-point nil))))
-          (let* ((pair-list (sp--get-allowed-pair-list))
-                 (opening (sp--get-opening-regexp pair-list))
-                 (closing (sp--get-closing-regexp pair-list))
-                 (allowed (and sp-show-pair-from-inside (sp--get-allowed-regexp))))
-            (cond
-             ;; if we are in a situation "()|", we should highlight the
-             ;; regular pair and not the string pair "from inside"
-             ((and (not (sp--evil-normal-state-p))
-                   (not (sp--evil-motion-state-p))
-                   (not (sp--evil-visual-state-p))
-                   (sp--looking-back (if sp-show-pair-from-inside allowed closing)))
-              (scan-and-place-overlays (match-string 0) :back))
-             ((or (and (or (sp--evil-normal-state-p)
-                           (sp--evil-motion-state-p)
-                           (sp--evil-visual-state-p))
-                       (sp--looking-at (sp--get-allowed-regexp)))
-                  (sp--looking-at (if sp-show-pair-from-inside allowed opening))
-                  (looking-at (sp--get-stringlike-regexp))
-                  (and (memq major-mode sp-navigate-consider-sgml-tags)
-                       (looking-at "<")))
-              (scan-and-place-overlays (match-string 0)))
-             ((or (sp--looking-back (if sp-show-pair-from-inside allowed closing))
-                  (sp--looking-back (sp--get-stringlike-regexp))
-                  (and (memq major-mode sp-navigate-consider-sgml-tags)
-                       (sp--looking-back ">")))
-              (scan-and-place-overlays (match-string 0) :back))
-             (sp-show-pair-overlays
-              (sp-show--pair-delete-overlays)
-              (setq sp-show-pair-previous-match-positions nil)
-              (setq sp-show-pair-previous-point nil)))))))))
-
-(defun sp-show--pair-enc-function (&optional thing)
-  "Display the show pair overlays for enclosing expression."
-  (when show-smartparens-mode
-    (-when-let (enc (or thing (sp-get-enclosing-sexp)))
-      (sp-get enc (sp-show--pair-create-enc-overlays :beg :end :op-l :cl-l)))))
-
-(defun sp-show--pair-create-overlays (start end olen clen)
-  "Create the show pair overlays."
-  (when sp-show-pair-overlays
-    (sp-show--pair-delete-overlays))
-  (let* ((oleft (make-overlay start (+ start olen) nil t nil))
-         (omiddle (make-overlay (+ start olen) (- end clen) nil t nil))
-         (oright (make-overlay (- end clen) end nil t nil)))
-    (setq sp-show-pair-overlays (list oleft omiddle oright))
-    (overlay-put oleft 'face 'sp-show-pair-match-face)
-    (unless (use-region-p)
-      (overlay-put omiddle 'face 'sp-show-pair-match-content-face))
-    (overlay-put oright 'face 'sp-show-pair-match-face)
-    (overlay-put oleft 'priority 1000)
-    (overlay-put omiddle 'priority 1000)
-    (overlay-put oright 'priority 1000)
-    (overlay-put oleft 'type 'show-pair)))
-
-(defun sp-show--pair-echo-match (start end olen clen)
-  "Print the line of the matching paren in the echo area if not
-visible on screen. Needs to be called after the show-pair overlay
-has been created."
-  (let ((match-positions (list start end olen clen)))
-    (when (not (and (equal sp-show-pair-previous-match-positions match-positions)
-                    (equal sp-show-pair-previous-point (point))))
-      (setq sp-show-pair-previous-match-positions match-positions)
-      (setq sp-show-pair-previous-point (point))
-      (let* ((visible-start (pos-visible-in-window-p start))
-             (visible-end (pos-visible-in-window-p end))
-             (where (cond
-                     ((not visible-start) start)
-                     ((not visible-end) end))))
-        (when where
-          (save-excursion
-            (let* ((from (progn (goto-char where) (beginning-of-line) (point)))
-                   (to (progn (end-of-line) (point)))
-                   (line (buffer-substring from to))
-                   (message-log-max)) ;; don't log in messages
-              ;; Add smartparens overlay for opening parens
-              (let* ((i1 (- start from))
-                     (i2 (+ i1 olen)))
-                (when (and (< i1 (length line)) (>= i2 0))
-                  (add-face-text-property (max i1 0) (min i2 (length line))
-                                          'sp-show-pair-match-face nil line)))
-              ;; Add smartparens overlay for closing parens
-              (let* ((i1 (- end from 1))
-                     (i2 (+ i1 clen)))
-                (when (and (< i1 (length line)) (>= i2 0))
-                  (add-face-text-property (max i1 0) (min i2 (length line))
-                                          'sp-show-pair-match-face nil line)))
-              ;; echo line of match
-              (message "Matches: %s" (string-trim line)))))))))
-
-(defun sp-show--pair-create-enc-overlays (start end olen clen)
-  "Create the show pair enclosing overlays"
-  (when sp-show-pair-enc-overlays
-    (sp-show--pair-delete-enc-overlays))
-  (let* ((oleft (make-overlay start (+ start olen) nil t nil))
-         (oright (make-overlay (- end clen) end nil t nil)))
-    (setq sp-show-pair-enc-overlays (cons oleft oright))
-    (overlay-put oleft 'face 'sp-show-pair-enclosing)
-    (overlay-put oright 'face 'sp-show-pair-enclosing)
-    (overlay-put oleft 'priority 1000)
-    (overlay-put oright 'priority 1000)
-    (overlay-put oleft 'type 'show-pair-enc)))
-
-(defun sp-show--pair-create-mismatch-overlay (start len)
-  "Create the mismatch pair overlay."
-  (when sp-show-pair-overlays
-    (sp-show--pair-delete-overlays))
-  (let ((o (make-overlay start (+ start len) nil t nil)))
-    (setq sp-show-pair-overlays (list o))
-    (overlay-put o 'face 'sp-show-pair-mismatch-face)
-    (overlay-put o 'priority 1000)
-    (overlay-put o 'type 'show-pair)))
-
-(defun sp-show--pair-delete-overlays ()
-  "Remove both show pair overlays."
-  (when sp-show-pair-overlays
-    (dolist (overlay sp-show-pair-overlays)
-      (delete-overlay overlay))
-    (setq sp-show-pair-overlays nil)))
-
-(defun sp-show--pair-delete-enc-overlays ()
-  "Remove both show pair enclosing overlays."
-  (when sp-show-pair-enc-overlays
-    (when (car sp-show-pair-enc-overlays)
-      (delete-overlay (car sp-show-pair-enc-overlays)))
-    (when (cdr sp-show-pair-enc-overlays)
-      (delete-overlay (cdr sp-show-pair-enc-overlays)))
-    (setq sp-show-pair-enc-overlays nil)))
-
-
-;; global initialization
-(defadvice delete-backward-char (before sp-delete-pair-advice activate)
-  (save-match-data
-    (sp-delete-pair (ad-get-arg 0))))
-(defadvice haskell-indentation-delete-backward-char (before sp-delete-pair-advice activate)
-  (save-match-data
-    (sp-delete-pair (ad-get-arg 0))))
-(add-hook 'post-command-hook 'sp--post-command-hook-handler)
-(sp--set-base-key-bindings)
-(sp--update-override-key-bindings)
-
-(defadvice company--insert-candidate (after sp-company--insert-candidate activate)
-  "If `smartparens-mode' is active, we check if the completed string
-has a pair definition.  If so, we insert the closing pair."
-  (when smartparens-mode
-    (sp-insert-pair))
-  ad-return-value)
-
-(defadvice hippie-expand (after sp-auto-complete-advice activate)
-  (when smartparens-mode
-    (sp-insert-pair)))
-
-(defvar sp--mc/cursor-specific-vars
-  '(
-    sp-wrap-point
-    sp-wrap-mark
-    sp-last-wrapped-region
-    sp-pair-overlay-list
-    sp-wrap-overlays
-    sp-wrap-tag-overlays
-    sp-last-operation
-    sp-previous-point
-    )
-  "A list of vars that need to be tracked on a per-cursor basis.")
-
-(defvar mc/cursor-specific-vars)
-(eval-after-load 'multiple-cursors
-  '(dolist (it sp--mc/cursor-specific-vars)
-     (add-to-list 'mc/cursor-specific-vars it)))
-
-(provide 'smartparens)
-
-;; Local Variables:
-;; coding: utf-8
-;; eval: (font-lock-add-keywords nil `((,(concat "(" (regexp-opt '("sp-do-move-op" "sp-do-move-cl" "sp-do-put-op" "sp-do-put-cl" "sp-do-del-op" "sp-do-del-cl") t) "\\_>") 1 'font-lock-variable-name-face)))
-;; End:
-
-;;; smartparens.el ends here
diff --git a/elpa/smartparens-20181028.1005/smartparens.elc b/elpa/smartparens-20181028.1005/smartparens.elc
deleted file mode 100644
index 008ebfb..0000000
--- a/elpa/smartparens-20181028.1005/smartparens.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/srefactor-20180703.1810/srefactor-autoloads.el b/elpa/srefactor-20180703.1810/srefactor-autoloads.el
deleted file mode 100644
index 46c0f12..0000000
--- a/elpa/srefactor-20180703.1810/srefactor-autoloads.el
+++ /dev/null
@@ -1,49 +0,0 @@
-;;; srefactor-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "srefactor" "srefactor.el" (0 0 0 0))
-;;; Generated autoloads from srefactor.el
-
-(autoload 'srefactor-refactor-at-point "srefactor" "\
-Offer contextual menu with actions based on current tag in scope.
-
-Each menu item added returns a token for what type of refactoring
-to perform.
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srefactor" '("srefactor-")))
-
-;;;***
-
-;;;### (autoloads nil "srefactor-lisp" "srefactor-lisp.el" (0 0 0
-;;;;;;  0))
-;;; Generated autoloads from srefactor-lisp.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srefactor-lisp" '("second-token" "srefactor-" "orig-format-type" "recursive-p" "first-token" "format-type" "cur-buf" "comment-" "next-token" "tok" "lexemes" "ignore-num")))
-
-;;;***
-
-;;;### (autoloads nil "srefactor-ui" "srefactor-ui.el" (0 0 0 0))
-;;; Generated autoloads from srefactor-ui.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "srefactor-ui" '("srefactor-ui-")))
-
-;;;***
-
-;;;### (autoloads nil nil ("srefactor-pkg.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; srefactor-autoloads.el ends here
diff --git a/elpa/srefactor-20180703.1810/srefactor-lisp.el b/elpa/srefactor-20180703.1810/srefactor-lisp.el
deleted file mode 100644
index 4a3f941..0000000
--- a/elpa/srefactor-20180703.1810/srefactor-lisp.el
+++ /dev/null
@@ -1,661 +0,0 @@
-;;; Srefactor --- A refactoring tool based on Semantic parser framework
-;;
-;; Filename: srefactor-lisp.el
-;; Description: A refactoring tool based on Semantic parser framework
-;; Author: Tu, Do Hoang <tuhdo1710@gmail.com>
-;; URL      : https://github.com/tuhdo/semantic-refactor
-;; Maintainer: Tu, Do Hoang
-;; Created: Wed Feb 11 21:25:51 2015 (+0700)
-;; Version: 0.3
-;; Package-Requires: ((emacs "24.3+"))
-;; Last-Updated: Wed Feb 11 21:25:51 2015 (+0700)
-;;           By: Tu, Do Hoang
-;;     Update #: 1
-;; URL:
-;; Doc URL:
-;; Keywords: emacs-lisp, languages, tools
-;; Compatibility: GNU Emacs: 24.3+
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-;;
-;; Semantic is a package that provides a framework for writing
-;; parsers. Parsing is a process of analyzing source code based on
-;; programming language syntax. This package relies on Semantic for
-;; analyzing source code and uses its results to perform smart code
-;; refactoring that based on code structure of the analyzed language,
-;; instead of plain text structure.
-;;
-;; This package provides the following features for Emacs Lisp:
-;;
-;; - `srefactor-lisp-format-buffer': Format whole buffer.
-;; - `srefactor-lisp-format-defun': Format the current defun point is in.
-;; - `srefactor-lisp-one-line': Transform all sub-sexpressions current sexpression at
-;; point into one line separated each one by a space.
-;;
-;; - `srefactor-lisp-format-sexp': Transform all sub-sexpressions current sexpression
-;; at point into multiple lines separated. If the head symbol belongs to the
-;; list `srefactor-lisp-symbol-to-skip', then the first N next symbol/sexpressions
-;; (where N is the nummber associated with the head symbol as stated in the
-;;  list) are skipped before a newline is inserted.
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or (at
-;; your option) any later version.
-;;
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Code:
-(require 'semantic/bovine/el)
-
-(defcustom srefactor-newline-threshold 40
-  "If a token is about to be inserted, if the current posistion
-  exceeds this threshold characters, insert the token in the next
-  line isntead. Note that this does not account for indentation
-  but the total number of characters in a line."
-  :group 'srefactor)
-
-(defcustom srefactor-lisp-symbol-to-skip '(("progn" . 0)
-                                           ("cond" . 0)
-                                           ("save-excursion" . 0)
-                                           ("unwind-protect" . 0)
-                                           ("with-temp-buffer" . 0)
-                                           ;; ("condition-case" . 1)
-                                           ;; ("with-current-buffer" . 1)
-                                           ;; ("with-open-file" . 1)
-                                           ;; ("let" . 1)
-                                           ;; ("let*" . 1)
-                                           ;; ("if" . 1)
-                                           ;; ("while" . 1)
-                                           ;; ("dolist" . 1)
-                                           ;; ("do" . 1)
-                                           ;; ("when" . 1)
-                                           ;; ("buffer-substring-no-properties" . 1)
-                                           ;; ("unless" . 1)
-                                           ;; ("not" . 1)
-                                           ;; ("null" . 1)
-                                           ;; ("null?" . 1)
-                                           ;; ("concat" . 1)
-                                           ;; ("or" . 1)
-                                           ;; ("and" . 1)
-                                           ;; ("catch" . 1)
-                                           ;; ("mapcar" . 1)
-                                           ;; ("mapcan" . 1)
-                                           ;; ("mapc" . 1)
-                                           ;; ("+" . 1)
-                                           ;; ("-" . 1)
-                                           ;; ("*" . 1)
-                                           ;; ("/" . 1)
-                                           ;; ("error" . 1)
-                                           ;; ("goto-char" . 1)
-                                           ;; ("insert" . 1)
-                                           ;; ("car" . 1)
-                                           ;; ("cdr" . 1)
-                                           ;; ("lambda" . 1)
-                                           ;; ("1+" . 1)
-                                           ;; ("1-" . 1)
-                                           ("defmethod" . 1)
-                                           ("cons" . 2)
-                                           ("kill-region" . 2)
-                                           ("equal" . 2)
-                                           ("member" . 2)
-                                           ("eq?" . 2)
-                                           ("eq" . 2)
-                                           ("get" . 2)
-                                           ("assoc" . 2)
-                                           ("defun" . 2)
-                                           ("defclass" . 2)
-                                           ("defstruct" . 2)
-                                           ("defmacro" . 2)
-                                           ("defsubst" . 2)
-                                           ("defface" . 2)
-                                           ("defalias" . 2)
-                                           ("defcustom" . 2)
-                                           ("declare" . 2)
-                                           ("defvar" . 2)
-                                           ("defparameter" . 2)
-                                           ("defconst" . 2)
-                                           ("string-match" . 2)
-                                           ("defcustom" . 2)
-                                           ("setq" . 2)
-                                           ("setq-default" . 2)
-                                           ("member" . 2)
-                                           ("setf" . 2)
-                                           (">" . 2)
-                                           ("<" . 2)
-                                           ("<=" . 2)
-                                           (">=" . 2)
-                                           ("/=" . 2)
-                                           ("=" . 2)
-                                           ("some" . 2)
-                                           ("define-key" . 3)
-                                           ("modify-syntax-entry" . 3))
-  "A list of pairs of a symbol and a number that denotes how many
-  sexp to skip before inserting the first newline. "
-  :group 'srefactor)
-
-(defcustom srefactor-clojure-symbol-to-skip '(("fn" . 1)
-                                              ("ns" . 1)
-                                              (":require" . 1)
-                                              (":import" . 1)
-                                              ("def" . 2)
-                                              ("struct-map" . 1)
-                                              ("defmacro" . 1)
-                                              ("binding" . 1)
-                                              ("with-bindings" . 1)
-                                              ("doseq" . 1)
-                                              ("catch" . 2)
-                                              ("defn" . 2))
-  "A list of pairs of a symbol and a number that denotes how many
-  sexp to skip before inserting a newline. This will be merged
-  with `srefactor-lisp-symbol-to-skip'. Symbols in this list
-  overrides symbols in `srefactor-lisp-symbol-to-skip'."
-  :group 'srefactor)
-
-;; Internal variables of parser state
-(defvar token nil)
-(defvar token-type nil)
-(defvar token-str nil)
-(defvar ignore-num nil)
-(defvar tok-start nil)
-(defvar next-token nil)
-(defvar next-token-start nil)
-(defvar next-token-end nil)
-(defvar next-token-type nil)
-(defvar next-token-str nil)
-(defvar tok-end nil)
-(defvar cur-buf nil)
-(defvar first-token nil)
-(defvar first-token-name nil)
-(defvar second-token nil)
-(defvar lexemes nil)
-(defvar comment-token nil)
-(defvar comment-content nil)
-(defvar token-real-line nil)
-(defvar next-token-real-line nil)
-(defvar comment-real-line-start nil)
-(defvar comment-real-line-end nil)
-(defvar comment-token-start nil)
-(defvar comment-token-end nil)
-(defvar format-type nil)
-(defvar recursive-p nil)
-(defvar orig-format-type nil)
-
-
-(defun srefactor--appropriate-major-mode (major-mode)
-  (cond
-   ((eq major-mode 'emacs-lisp-mode)
-    (emacs-lisp-mode))
-   ((eq major-mode 'scheme-mode)
-    (scheme-mode))
-   ((eq major-mode 'common-lisp-mode)
-    (common-lisp-mode))
-   ((and (fboundp 'clojure-mode)
-         (eq major-mode 'clojure-mode))
-    (clojure-mode))
-   (t (emacs-lisp-mode))))
-
-(defun srefactor--define-skip-list-for-mode (major-mode)
-  (cond
-   ((and (fboundp 'clojure-mode)
-         (eq major-mode 'clojure-mode))
-    (cl-remove-duplicates (append srefactor-lisp-symbol-to-skip srefactor-clojure-symbol-to-skip)
-                          :test (lambda (a b)
-                                  (equal (car a) (car b)))))
-   (t srefactor-lisp-symbol-to-skip)))
-
-(defun srefactor-lisp-format-buffer ()
-  "Format current buffer."
-  (interactive)
-  (let ((cur-pos (point))
-        (buf-content (buffer-substring-no-properties (point-min)
-                                                     (point-max)))
-        (cur-major-mode major-mode)
-        (orig-skip-list srefactor-lisp-symbol-to-skip)
-        (cur-indent-mode indent-tabs-mode))
-    (setq buf-content (with-temp-buffer
-                        (semantic-default-elisp-setup)
-                        (emacs-lisp-mode)
-                        (setq indent-tabs-mode cur-indent-mode)
-                        (setq srefactor-lisp-symbol-to-skip (srefactor--define-skip-list-for-mode cur-major-mode))
-                        (semantic-lex-init)
-                        (insert buf-content)
-                        (goto-char (point-max))
-                        (while (beginning-of-defun-raw)
-                          (let ((beg (point))
-                                (end (save-excursion
-                                       (forward-sexp)
-                                       (point))))
-                            (srefactor--lisp-format-one-or-multi-lines
-                             beg end beg 'multi-line nil t)
-                            (goto-char beg)))
-                        (srefactor--appropriate-major-mode cur-major-mode)
-                        (indent-region (point-min)
-                                       (point-max))
-                        (setq srefactor-lisp-symbol-to-skip orig-skip-list)
-                        (buffer-substring-no-properties (point-min)
-                                                        (point-max))))
-    (kill-region (point-min) (point-max))
-    (insert buf-content)
-    (goto-char cur-pos)))
-
-(defun srefactor-lisp-format-defun ()
-  "Format current defun point is in."
-  (interactive)
-  (let* ((orig-point (point))
-         (beg (save-excursion
-                (forward-char 1)
-                (beginning-of-defun-raw)
-                (point)))
-         (end (save-excursion
-                (goto-char beg)
-                (forward-sexp)
-                (point)))
-         (orig-skip-list srefactor-lisp-symbol-to-skip)
-         (cur-indent-mode indent-tabs-mode)
-         (cur-major-mode major-mode)
-         (content (buffer-substring-no-properties beg end)))
-    (progn
-      (setq content (with-temp-buffer
-                      (semantic-default-elisp-setup)
-                      (emacs-lisp-mode)
-                      (setq indent-tabs-mode cur-indent-mode)
-                      (setq srefactor-lisp-symbol-to-skip (srefactor--define-skip-list-for-mode cur-major-mode))
-                      (semantic-lex-init)
-                      (insert content)
-                      (srefactor--lisp-format-one-or-multi-lines (point-min)
-                                                                 (point-max)
-                                                                 (point-min)'multi-line
-                                                                 nil
-                                                                 t)
-                      (srefactor--appropriate-major-mode cur-major-mode)
-                      (setq srefactor-lisp-symbol-to-skip orig-skip-list)
-                      (indent-region (point-min)
-                                     (point-max))
-                      (buffer-substring-no-properties (point-min)
-                                                      (point-max))))
-      (kill-region beg end)
-      (insert content)
-      (goto-char orig-point))))
-
-(defun srefactor-lisp-format-sexp ()
-  "Transform all sub-sexpressions current sexpression at point
-into multiple lines separatedly. If the head symbol belongs to the
-list `srefactor-lisp-symbol-to-skip', then the first N next
-symbol/sexpressions (where N is the nummber associated with the
-head symbol as stated in the list) are skipped before a newline
-is inserted."
-  (interactive)
-  (let* ((orig-point (point))
-         (beg (save-excursion
-                (unless (looking-at "[({[]")
-                  (backward-up-list))
-                (point)))
-         (end (save-excursion
-                (goto-char beg)
-                (forward-sexp)
-                (point)))
-         (orig-skip-list srefactor-lisp-symbol-to-skip)
-         (cur-indent-mode indent-tabs-mode)
-         (cur-major-mode major-mode)
-         (content (buffer-substring-no-properties beg end)))
-    (progn
-      (setq content (with-temp-buffer
-                      (semantic-default-elisp-setup)
-                      (emacs-lisp-mode)
-                      (setq indent-tabs-mode cur-indent-mode)
-                      (setq srefactor-lisp-symbol-to-skip (srefactor--define-skip-list-for-mode cur-major-mode))
-                      (semantic-lex-init)
-                      (insert content)
-                      (srefactor--lisp-format-one-or-multi-lines (point-min)
-                                                                 (point-max)
-                                                                 (point-min)'multi-line
-                                                                 nil
-                                                                 t)
-                      (srefactor--appropriate-major-mode cur-major-mode)
-                      (setq srefactor-lisp-symbol-to-skip orig-skip-list)
-                      (buffer-substring-no-properties (point-min)
-                                                      (point-max))))
-      (kill-region beg end)
-      (insert content)
-      (goto-char beg)
-      (forward-sexp)
-      (setq end (point))
-      (indent-region beg end)
-      (goto-char orig-point))))
-
-(defun srefactor-lisp-one-line (recursive-p)
-  "Transform all sub-sexpressions current sexpression at point
-into one line separated each one by a space."
-  (interactive "P")
-  (let* ((orig-point (point))
-         (beg (save-excursion
-                (unless (looking-at "[({[]")
-                  (backward-up-list))
-                (point)))
-         (end (save-excursion
-                (goto-char beg)
-                (forward-sexp)
-                (point)))
-         (orig-skip-list srefactor-lisp-symbol-to-skip)
-         (cur-indent-mode indent-tabs-mode)
-         (cur-major-mode major-mode)
-         (content (buffer-substring-no-properties beg end)))
-    (progn
-      (setq content (with-temp-buffer
-                      (semantic-default-elisp-setup)
-                      (emacs-lisp-mode)
-                      (setq indent-tabs-mode cur-indent-mode)
-                      (setq srefactor-lisp-symbol-to-skip (srefactor--define-skip-list-for-mode cur-major-mode))
-                      (semantic-lex-init)
-                      (insert content)
-                      (srefactor--lisp-format-one-or-multi-lines (point-min)
-                                                                 (point-max)
-                                                                 (point-min)'one-line
-                                                                 nil
-                                                                 recursive-p)
-                      (srefactor--appropriate-major-mode cur-major-mode)
-                      (setq srefactor-lisp-symbol-to-skip orig-skip-list)
-                      (indent-region (point-min)
-                                     (point-max))
-                      (buffer-substring-no-properties (point-min)
-                                                      (point-max))))
-      (kill-region beg end)
-      (insert content)
-      (goto-char orig-point))))
-
-(defun srefactor--lisp-format-one-or-multi-lines (beg end orig-point format-type &optional
-                                                      newline-betwen-semantic-lists recursive-p)
-  "Turn the current sexpression into one line/multi-line depends
-on the value of FORMAT-TYPE. If FORMAT-TYPE is 'one-line,
-transforms all sub-sexpressions of the same level into one
-line. If FORMAT-TYPE is 'multi-line, transforms all
-sub-sexpressions of the same level into multiple lines.
-
-Return the position of last closing sexp."
-  (let* ((lexemes (semantic-emacs-lisp-lexer beg end 1))
-         (cur-buf (current-buffer))
-         (first-token (cadr lexemes))
-         (first-token-name (srefactor--lisp-token-text first-token))
-         (second-token (caddr lexemes))
-         (tmp-buf (generate-new-buffer (make-temp-name "")))
-         (orig-format-type format-type)
-         token-str
-         ignore-pair
-         ignore-num
-         token)
-    (unwind-protect
-        (progn
-          (unless (assoc 'semantic-list lexemes)
-            (setq format-type 'one-line))
-          (if (or (eq (car first-token) 'semantic-list)
-                  (assoc first-token-name srefactor-lisp-symbol-to-skip))
-              (setq newline-betwen-semantic-lists t))
-          (setq ignore-pair (assoc first-token-name srefactor-lisp-symbol-to-skip))
-          (setq ignore-num (cdr ignore-pair))
-          (while lexemes
-            (let* (token-type tok-start tok-end next-token next-token-start
-                              next-token-type next-token-str)
-              (srefactor--lisp-forward-token)
-              (with-current-buffer tmp-buf
-                (insert token-str)
-                (srefactor--lisp-comment-formatter)
-                (cond
-                 ((and (eq token-type 'number)
-                       (member next-token-str '("+" "-" "*" "/")))
-                  (srefactor--lisp-number-formatter))
-                 ((or (eq token-type 'punctuation)
-                      (eq token-type 'open-paren)
-                      (eq token-type 'close-paren)
-                      (eq next-token-type 'close-paren))
-                  (srefactor--lisp-punctuation-formatter))
-                 ((eq token-type 'symbol)
-                  (srefactor--lisp-symbol-formatter))
-                 ((eq format-type 'one-line)
-                  (srefactor--lisp-oneline-formatter))
-                 ((eq format-type 'multi-line)
-                  (srefactor--lisp-multiline-formatter))))))
-          (kill-region beg end)
-          (setq beg (point))
-          (insert (with-current-buffer tmp-buf
-                    (buffer-substring-no-properties (point-min)
-                                                    (point-max))))
-          (setq end (point))
-          ;; descend into sub-sexpressions
-          (setq lexemes (semantic-emacs-lisp-lexer beg end 1))
-          (when recursive-p
-            (srefactor--lisp-visit-semantic-list-lex (nreverse lexemes))))
-      (kill-buffer tmp-buf))))
-
-(defun srefactor--lisp-number-formatter ()
-  "Make use of dynamic scope of its parent
-function `srefactor--lisp-format-one-or-multi-lines'"
-  (goto-char (semantic-lex-token-end token))
-  (insert next-token-str)
-  (srefactor--lisp-comment-formatter)
-  (insert " ")
-  (setq first-token (semantic-lex-token 'symbol
-                                        (semantic-lex-token-start token)
-                                        (1+ (semantic-lex-token-end token))))
-  (setq first-token-name (concat token-str next-token-str))
-  (setq second-token (cadr lexemes))
-  (srefactor--lisp-forward-token))
-
-(defun srefactor--lisp-punctuation-formatter ()
-  "Make use of dynamic scope of its parent
-function `srefactor--lisp-format-one-or-multi-lines'"
-  (let ((orig-token token)
-        token
-        token-str)
-    (while (srefactor--lisp-token-in-punctuation-p (srefactor--lisp-forward-token))
-      (insert token-str)
-      (srefactor--lisp-comment-formatter))
-    (when (eq first-token-name (srefactor--lisp-token-text orig-token))
-      (srefactor--lisp-forward-first-second-token))
-    (when token
-      (push token lexemes))))
-
-(defun srefactor--lisp-symbol-formatter ()
-  "Insert additional text based on symbol appearance. Make use of
-dynamic scope of its parent function `srefactor--lisp-format-one-or-multi-lines'"
-  (cond
-   ((and (not (equal token-str first-token-name))
-         (eq orig-format-type 'multi-line)
-         (string-match ":.*" token-str))
-    (insert " ")
-    (srefactor--lisp-forward-token)
-    (while (member token-type '(punctuation open-paren semantic-list))
-      (insert token-str)
-      (srefactor--lisp-forward-token))
-    (insert token-str)
-    (cond
-     ((or (equal next-token-str "}"))
-      (insert next-token-str "\n" " ")
-      (srefactor--lisp-comment-formatter)
-      (srefactor--lisp-forward-token))
-     ((not (or (srefactor--lisp-token-in-punctuation-p next-token)
-               (null next-token)))
-      (insert "\n"))
-     (t)))
-   ((member token-str '("~@" "?")) "")
-   ((string-equal token-str ".") (insert " "))
-   ((eq format-type 'one-line)
-    (srefactor--lisp-oneline-formatter))
-   ((eq format-type 'multi-line)
-    (srefactor--lisp-multiline-formatter))))
-
-(defun srefactor--lisp-forward-first-second-token ()
-  (setq first-token token)
-  (setq first-token-name (srefactor--lisp-token-text first-token))
-  (setq second-token (car lexemes)))
-
-(defun srefactor--lisp-forward-token ()
-  (setq token (pop lexemes))
-  (when token
-    (setq token-type (semantic-lex-token-class token))
-    (setq tok-start (semantic-lex-token-start token))
-    (setq tok-end (semantic-lex-token-end token))
-    (setq token-str (srefactor--lisp-token-text token))
-    (setq next-token (car lexemes))
-    (setq next-token-type (semantic-lex-token-class next-token))
-    (setq next-token-start (semantic-lex-token-start next-token))
-    (setq next-token-end (semantic-lex-token-end next-token))
-    (setq next-token-str (if next-token
-                             (srefactor--lisp-token-text next-token)
-                           ""))
-    token))
-
-(defun srefactor--lisp-comment-formatter ()
-  (let (comment-token comment-token-start comment-token-end
-                      comment-content next-token-real-line token-real-line
-                      comment-real-line-start comment-real-line-end)
-    (when (and tok-end next-token-start)
-      (setq comment-token (with-current-buffer cur-buf ;; asdf
-                            (condition-case nil
-                                (car (semantic-comment-lexer tok-end next-token-start))
-                              (error nil))))
-      (when comment-token
-        (setq comment-content (with-current-buffer cur-buf
-                                ;; set values inside the buffer to avoid global variable
-                                (setq comment-token-start (semantic-lex-token-start comment-token))
-                                (setq comment-token-end (semantic-lex-token-end comment-token))
-                                (setq comment-real-line-start (line-number-at-pos comment-token-start))
-                                (setq comment-real-line-end (line-number-at-pos comment-token-end))
-                                (setq token-real-line (line-number-at-pos tok-end))
-                                (setq next-token-real-line (line-number-at-pos next-token-start))
-                                (buffer-substring-no-properties comment-token-start
-                                                                comment-token-end)))
-        (cond
-         ;; if comment token is next to a string, chances are it is below the
-         ;; docstring. Add a newlien in between.
-         ((eq token-type 'string)
-          (insert "\n" comment-content))
-         ((= token-real-line comment-real-line-start)
-          (insert " " comment-content))
-         ((not (= token-real-line comment-real-line-start))
-          (insert "\n" comment-content))
-         (t))
-        ;; If the current/next token is a punctuation (open/close paren,
-        ;; punctuation) add a newline no matter what; otherwise it destroys the
-        ;; layout of sexp because nonewline is inserted after the current/next
-        ;; token and it will be in the same line with the just inserted comment
-        ;; and be part of it, which is dangerous
-        (when (or (srefactor--lisp-token-in-punctuation-p token)
-                  (srefactor--lisp-token-in-punctuation-p next-token)
-                  (string-match "[]}]" token-str))
-          (insert "\n"))))))
-
-(defun srefactor--lisp-oneline-formatter ()
-  (unless (srefactor--lisp-token-in-punctuation-p token)
-    (let ((distance (- (point)
-                       (line-beginning-position))))
-      (if (or (eq orig-format-type 'one-line)
-              (<= distance srefactor-newline-threshold))
-          (insert " ")
-        (insert "\n")))))
-
-(defun srefactor--lisp-multiline-formatter ()
-  (cond
-   (ignore-num (when (and (equal first-token-name token-str))
-                 (insert " ")
-                 (when (and ignore-num
-                            (= ignore-num 0))
-                   (setq ignore-num (1- ignore-num))))
-               (while (> ignore-num 0)
-                 (if (srefactor--lisp-token-paren-p token)
-                     (progn
-                       (delete-char -1)
-                       (push token lexemes)
-                       (setq ignore-num 0))
-                   (srefactor--lisp-forward-token)
-                   (insert token-str)
-                   (srefactor--lisp-comment-formatter)
-                   (if (srefactor--lisp-token-in-punctuation-p token)
-                       (srefactor--lisp-forward-first-second-token)
-                     (setq ignore-num (1- ignore-num))
-                     (insert " "))))
-               (delete-char -1)
-               (if (srefactor--lisp-token-paren-p (car lexemes))
-                   (srefactor--lisp-punctuation-formatter)
-                 (insert "\n"))
-               (setq ignore-num nil))
-   ((and (equal first-token-name token-str)
-         (not (eq next-token-type 'semantic-list)))
-    (insert " "))
-   ((and (eq next-token-type 'semantic-list)
-         (eq token-type 'symbol)
-         (equal first-token-name token-str))
-    (insert " "))
-   ((eq token-type 'semantic-list)
-    (insert "\n"))
-   ((or (null ignore-num)
-        (= ignore-num 0))
-    (insert "\n"))
-   (t (insert "\n"))))
-
-(defun srefactor--lisp-token-name-in-skip-list-p (token-name)
-  (member token-name srefactor-lisp-symbol-to-skip))
-
-(defun srefactor--lisp-token-in-punctuation-p (token)
-  (member (semantic-lex-token-class token) '(open-paren charquote close-paren punctuation)))
-
-(defun srefactor--lisp-token-paren-p (token)
-  (member (semantic-lex-token-class token) '(open-paren close-paren)))
-
-(defun srefactor--lisp-token-text (token)
-  (if token
-      (with-current-buffer cur-buf
-        (buffer-substring-no-properties (semantic-lex-token-start token)
-                                        (semantic-lex-token-end token)))
-    ""))
-
-(defun srefactor--lisp-visit-semantic-list-lex (lexemes)
-  "Visit and format all sub-sexpressions (semantic list) in LEXEMES."
-  (dolist (token lexemes)
-    (let ((tok-start (semantic-lex-token-start token))
-          (tok-end (semantic-lex-token-end token))
-          tok-str)
-      (when (and (eq (car token) 'semantic-list)
-                 (> (- tok-end tok-start) 2))
-        (goto-char (semantic-lex-token-start token))
-        (srefactor--lisp-format-one-or-multi-lines tok-start
-                                                   tok-end
-                                                   tok-start
-                                                   format-type
-                                                   (assoc tok-str srefactor-lisp-symbol-to-skip)
-                                                   recursive-p)))))
-
-(defun srefactor--lisp-comment-debug-messages ()
-  (message "comment-token: %s" comment-token)
-  (message "comment-start: %s" comment-token-start)
-  (message "comment-end: %s" comment-token-end)
-  (message "comment-content: %s" comment-content)
-  (message "comment-content: %s" comment-content)
-  (message "token-real-line: %s" token-real-line)
-  (message "next-token-real-line: %s" next-token-real-line)
-  (message "comment-real-line-start: %s" comment-real-line-start)
-  (message "comment-real-line-end %s" comment-real-line-end))
-
-(defun srefactor--lisp-debug-messages ()
-  (message "token: %s" token)
-  (message "token-type: %s" token-type)
-  (message "token-str: %s" token-str)
-  (when ignore-num
-    (message "ignore-num: %s" ignore-num))
-  (message "next-token: %s" next-token)
-  (message "next-token-type: %s" next-token-type)
-  (message "next-token-str: %s" next-token-str))
-
-(provide 'srefactor-lisp)
diff --git a/elpa/srefactor-20180703.1810/srefactor-lisp.elc b/elpa/srefactor-20180703.1810/srefactor-lisp.elc
deleted file mode 100644
index fa73a17..0000000
--- a/elpa/srefactor-20180703.1810/srefactor-lisp.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/srefactor-20180703.1810/srefactor-pkg.el b/elpa/srefactor-20180703.1810/srefactor-pkg.el
deleted file mode 100644
index b6187e8..0000000
--- a/elpa/srefactor-20180703.1810/srefactor-pkg.el
+++ /dev/null
@@ -1,12 +0,0 @@
-(define-package "srefactor" "20180703.1810" "A refactoring tool based on Semantic parser framework"
-  '((emacs "24.4"))
-  :keywords
-  '("c" "languages" "tools")
-  :authors
-  '(("Tu, Do Hoang" . "tuhdo1710@gmail.com"))
-  :maintainer
-  '("Tu, Do Hoang")
-  :url "https://github.com/tuhdo/semantic-refactor")
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/srefactor-20180703.1810/srefactor-ui.el b/elpa/srefactor-20180703.1810/srefactor-ui.el
deleted file mode 100644
index 8c98041..0000000
--- a/elpa/srefactor-20180703.1810/srefactor-ui.el
+++ /dev/null
@@ -1,437 +0,0 @@
-;;; srefactor-ui.el --- A refactoring tool based on Semantic parser framework
-;;
-;; Filename: srefactor-ui.el
-;; Description: A refactoring tool based on Semantic parser framework
-;; Author: Tu, Do Hoang <tuhdo1710@gmail.com
-;; Maintainer: Tu, Do Hoang
-;; Created: Wed Feb 11 21:25:51 2015 (+0700)
-;; Version: 0.1
-;; Package-Requires: ()
-;; Last-Updated: Wed Feb 11 21:25:51 2015 (+0700)
-;;           By: Tu, Do Hoang
-;;     Update #: 1
-;; URL:
-;; Doc URL:
-;; Keywords: c, languages, tools
-;; Compatibility: GNU Emacs: 24.3+
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-;;
-;; This package provides a UI to interact with users of Srefactor
-;; package.
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or (at
-;; your option) any later version.
-;;
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Code:
-(with-no-warnings
-  (require 'cl))
-(require 'recentf)
-(require 'eieio)
-(require 'semantic/format)
-(autoload 'srefactor--refactor-based-on-tag-class "srefactor")
-(autoload 'srefactor--insert-tag "srefactor")
-
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Variables
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar srefactor-ui--current-active-window nil
-  "Store the current active window where the menu is invoked.")
-
-(defvar srefactor-ui--current-active-region-start nil
-  "Store the start of an active region of current window if any.")
-
-(defvar srefactor-ui--current-active-region-end nil
-  "Store the end of an active region of current window if any.")
-
-(defvar srefactor-ui--current-active-menu nil
-  "Current menu object biing used.")
-
-(defvar srefactor-ui--func-type nil
-  "What type of refactoring to perform.")
-
-(defvar srefactor-ui--current-active-tag-overlay nil
-  "Overlay of tag in srefactor-ui--current-active-window.")
-
-(defcustom srefactor-ui-menu-show-help t
-  "Turn on/off help message."
-  :group 'srefactor-ui
-  :type 'boolean)
-
-(defsubst srefactor-ui--menu-label (e)
-  (car e))
-
-(defsubst srefactor-ui--menu-value-item (e)
-  (cdr e))
-
-(defsubst srefactor-ui--digit-shortcut-command-name (n)
-  "Return a command name to open the Nth most recent file.
-See also the command `recentf-open-most-recent-file'."
-  (intern (format "srefactor-ui--refactor-based-on-tag-class-%d" n)))
-
-(defsubst srefactor-ui--make-menu-element (menu-item menu-value)
-  "Create a new menu-element.
-A menu element is a pair (MENU-ITEM . MENU-VALUE), where MENU-ITEM is
-the menu item string displayed.  MENU-VALUE is the file to be open
-when the corresponding MENU-ITEM is selected."
-  (cons menu-item menu-value))
-
-(defclass srefactor-ui-menu ()
-  ((name
-    :initarg :name
-    :initform "*Srefactor Menu*"
-    :accessor name
-    :type string
-    :documentation
-    "Name of the menu to be displayed in the modeline.")
-   (items
-    :initarg :items
-    :initform nil
-    :accessor items
-    :type list
-    :documentation
-    "Item list to be displayed in a menu. Item is a list
-          '(DISPLAY REAL OPTIONS).")
-   (action
-    :initarg :action
-    :initform nil
-    :accessor action
-    :documentation
-    "An action to run when a menu item is selected.")
-   (context
-    :initarg :context
-    :initform nil
-    :accessor context
-    :documentation
-    "Current Semantic tag in scope, used as context to
-     select appropriate refactor actions.")
-   (shortcut-p
-    :initarg :shortcut-p
-    :initform nil
-    :accessor shortcut-p
-    :type boolean
-    :documentation
-    "If t, first 9 actions can be executed by digit keys 1-9.")
-   (persistent-action
-    :initarg :persistent-action
-    :initform nil
-    :accessor persistent-action
-    :documentation
-    "An action to execute without exiting the menu.")
-   (keymap
-    :initarg :keymap
-    :initform nil
-    :accessor keymap
-    :documentation
-    "A function that set define keys in srefactor-ui-menu-mode-map.")
-   (post-handler
-    :initarg :post-handler
-    :initform nil
-    :accessor post-handler
-    :documentation
-    "A function to be executed after the menu is created."))
-  "Class srefactor-ui-menu ")
-
-(defmacro srefactor-ui--menu (name &rest forms)
-  "Show a dialog buffer with NAME, setup with FORMS."
-  (declare (indent 1) (debug t))
-  `(with-current-buffer (get-buffer-create ,name)
-     ;; Cleanup buffer
-     (let ((inhibit-read-only t)
-           (ol (overlay-lists)))
-       (mapc 'delete-overlay (car ol))
-       (mapc 'delete-overlay (cdr ol))
-       (erase-buffer))
-     (srefactor-ui-menu-mode)
-     ,@forms
-     (widget-setup)
-     (switch-to-buffer (current-buffer))
-     (hl-line-mode 1)))
-
-(defun srefactor-ui-create-menu (menu)
-  (interactive)
-  (unless (items menu)
-    (error "No available action."))
-  (setq srefactor-ui--current-active-window (car (window-list)))
-  (setq srefactor-ui--current-active-menu menu)
-  (if (region-active-p)
-      (progn
-        (setq srefactor-ui--current-active-region-start (region-beginning))
-        (setq srefactor-ui--current-active-region-end (region-end)))
-    (setq srefactor-ui--current-active-region-start nil)
-    (setq srefactor-ui--current-active-region-end nil))
-  (condition-case nil
-      (with-selected-window (select-window (split-window-below))
-        (srefactor-ui--menu
-            (or (name srefactor-ui--current-active-menu)
-                (format "*%s*" "*Srefactor Menu*"))
-          (let ((major-mode 'c++-mode))
-            (widget-insert (if (context srefactor-ui--current-active-menu)
-                               (concat (semantic-format-tag-summarize (context srefactor-ui--current-active-menu) nil t) "\n")
-                             "")
-                           (if srefactor-ui-menu-show-help
-                               (concat  (if (shortcut-p srefactor-ui--current-active-menu)
-                                            (concat "Press "
-                                                    (propertize "1-9" 'face  'font-lock-preprocessor-face)
-                                                    " or click on an action to execute.\n")
-                                          "Click on an action to execute.\n")
-                                        "Press "
-                                        (propertize "o" 'face  'bold)
-                                        " or "
-                                        (propertize "O" 'face  'bold)
-                                        " to switch to next/previous option."
-                                        "\n"
-                                        "Click on "
-                                        (propertize "[Cancel]" 'face 'bold)
-                                        " or press "
-                                        (propertize "q" 'face 'bold)
-                                        " to quit.\n")
-                             "")))
-          (apply 'widget-create
-                 `(group
-                   :indent 2
-                   :format "\n%v\n"
-                   ,@(srefactor-ui--generate-items
-                      (items srefactor-ui--current-active-menu)
-                      (action srefactor-ui--current-active-menu)
-                      (shortcut-p srefactor-ui--current-active-menu))))
-          (widget-create
-           'push-button
-           :notify 'srefactor-ui--menu-quit
-           (propertize  "Cancel" 'face 'bold))
-          (recentf-dialog-goto-first 'link)
-          (when (post-handler menu)
-            (funcall (post-handler menu)))
-          (when (keymap menu)
-            (funcall (keymap menu))))
-        (fit-window-to-buffer (car (window-list))
-                              (/ (* (frame-height) 50)
-                                 100)
-                              (/ (* (frame-height) 10)
-                                 100))
-        (when (and (fboundp 'evil-mode)
-                   evil-mode)
-          (evil-local-mode)))
-    (error (srefactor-ui--clean-up-menu-window)
-           (message "Error when creating menu."))))
-
-(defun srefactor-ui--return-option-list (type)
-  (let (options)
-    (cond
-     ((eq type 'file)
-      (push "(Current file)" options)
-      (push "(Other file)" options)
-      (when (featurep 'projectile)
-        (push "(Project file)" options))
-      (push "(File)" options))
-     ((eq type 'tag)
-      '("(Before)" "(Inside)" "(After)"))
-     (t))))
-
-(defun srefactor-ui--generate-items (commands action &optional add-shortcut)
-  "Return a list of widgets to display FILES in a dialog buffer."
-  (mapcar (lambda (w)
-            (srefactor-ui--create-menu-widget w action))
-          (if add-shortcut
-              (srefactor-ui--show-digit-shortcut (mapcar 'srefactor-ui--make-default-menu-element
-                                                         commands))
-            (mapcar 'srefactor-ui--make-default-menu-element
-                    commands))))
-
-(defun srefactor-ui--show-digit-shortcut (l)
-  "Filter the list of menu-elements L to show digit shortcuts."
-  (let ((i 0))
-    (dolist (e l)
-      (setq i (1+ i))
-      (setcar e (format (if (< i 10)
-                            "[%s] %s"
-                          " %s  %s")
-                        (if (< i 10 )
-                            (propertize (number-to-string (% i 10))
-                                        'face 'font-lock-preprocessor-face
-                                        'mouse-face 'italic)
-                          " ")
-                        (srefactor-ui--menu-label e))))
-    l))
-
-(defun srefactor-ui--make-default-menu-element (command)
-  (srefactor-ui--make-menu-element (srefactor-ui--menu-label command)
-                                   (srefactor-ui--menu-value-item command)))
-
-(defun srefactor-ui--create-menu-widget (menu-element action)
-  "Return a widget to display MENU-ELEMENT in a dialog buffer."
-  `(link :tag ,(srefactor-ui--menu-label menu-element)
-         :button-prefix ""
-         :button-suffix ""
-         :button-face nil
-         :format "%[%t\n%]"
-         :help-echo ""
-         :action ,action
-         ,(srefactor-ui--menu-value-item menu-element)))
-
-(defun srefactor-ui--clean-up-menu-window (&optional kill-buffer)
-  (interactive)
-  (when kill-buffer
-    (kill-buffer (current-buffer)))
-  (delete-window (car (window-list)))
-  (select-window srefactor-ui--current-active-window)
-  (when (and srefactor-ui--current-active-region-start
-             srefactor-ui--current-active-region-end)
-    (goto-char srefactor-ui--current-active-region-start)
-    (set-mark-command nil)
-    (goto-char srefactor-ui--current-active-region-end)
-    (setq deactivate-mark nil))
-  (when srefactor-ui--current-active-tag-overlay
-    (delete-overlay srefactor-ui--current-active-tag-overlay)))
-
-(defun srefactor-ui--refactor-action (widget &rest _ignore)
-  "Open the file stored in WIDGET's value when notified.
--IGNORE other arguments."
-  (interactive)
-  (srefactor-ui--clean-up-menu-window t)
-  (srefactor--refactor-based-on-tag-class (car (widget-value widget))
-                                          (srefactor-ui--get-current-menu-option (widget-get widget :tag))))
-
-(defun srefactor-ui--tag-action (widget &rest _ignore)
-  (interactive)
-  (srefactor-ui--clean-up-menu-window t)
-  (srefactor--insert-tag (context srefactor-ui--current-active-menu)
-                         (car (widget-value widget))
-                         srefactor-ui--func-type
-                         (srefactor-ui--get-current-menu-option (widget-get widget :tag))))
-
-(defun srefactor-ui--menu-quit (&rest ignored)
-  (interactive)
-  (srefactor-ui--clean-up-menu-window t))
-
-(defvar srefactor-ui--shortcuts-keymap
-  (let ((km (make-sparse-keymap)))
-    (dolist (k '(9 8 7 6 5 4 3 2 1))
-      (let ((cmd (srefactor-ui--digit-shortcut-command-name k)))
-        ;; Define a shortcut command.
-        (defalias cmd
-          `(lambda ()
-             (interactive)
-             (unless (search-forward (number-to-string ,k) nil t)
-                 (search-backward (number-to-string ,k)) nil t)
-             (srefactor-ui--refactor-action (get-char-property (point) 'button))))
-        ;; Bind it to a digit key.
-        (define-key km (vector (+ k ?0)) cmd)))
-    km)
-  "Digit shortcuts keymap.")
-
-(defun srefactor-ui--previous-page-target-window ()
-  (interactive)
-  (let ((menu-window (car (window-list))))
-    (select-window srefactor-ui--current-active-window)
-    (condition-case nil
-        (scroll-down)
-      (error nil))
-    (select-window menu-window)))
-
-(defun srefactor-ui--next-page-target-window ()
-  (interactive)
-  (let ((menu-window (car (window-list))))
-    (select-window srefactor-ui--current-active-window)
-    (condition-case nil
-        (scroll-up)
-      (error nil))
-    (select-window menu-window)))
-
-(defun srefactor-ui--cycle-option (direction current-option options)
-  (let* ((options options)
-         (pos (position current-option options :test #'string-equal))
-         (l (length options)))
-    (if (eq direction 'next)
-        (if (< pos (1- l))
-            (nth (1+ pos) options)
-          (car options))
-      (if (> pos 0)
-          (nth (1- pos) options)
-        (nth (1- l) options)))))
-
-(defun srefactor-ui--get-current-menu-option (menu-string)
-  (condition-case nil
-      (progn
-        (string-match "(\\(.*\\))" menu-string)
-        (match-string 0 menu-string))
-    (error nil)))
-
-(defun srefactor-ui--cycle (direction)
-  (let* ((pos (point))
-         (link (get-char-property pos 'button))
-         (current-opt (srefactor-ui--get-current-menu-option (widget-get link :tag)))
-         (options (cadr (widget-value-value-get link)))
-         (check (unless current-opt (throw 'option-not-available "No option is available for this tag.")))
-         (next-opt (srefactor-ui--cycle-option direction current-opt options))
-         (next-tag (replace-regexp-in-string "(\\(.*\\))" "" (widget-get link :tag))))
-    (when link
-      (widget-put link :tag (concat next-tag next-opt))
-      (widget-delete (get-char-property pos 'button))
-      (widget-create link)
-      (forward-line -1)
-      (widget-forward 1))))
-
-(defvar srefactor-ui-menu-mode-map
-  (let ((km (copy-keymap srefactor-ui--shortcuts-keymap)))
-    (set-keymap-parent km widget-keymap)
-    (define-key km "q" 'srefactor-ui--menu-quit)
-    (define-key km "n" 'widget-forward)
-    (define-key km "p" 'widget-backward)
-    (define-key km "j" 'widget-forward)
-    (define-key km "k" 'widget-backward)
-    (define-key km (kbd "TAB") (lambda ()
-                                 (interactive)
-                                 (when (persistent-action srefactor-ui--current-active-menu)
-                                   (funcall (persistent-action srefactor-ui--current-active-menu)))))
-    (define-key km "o" (lambda ()
-                         (interactive)
-                         (message "%s"
-                                  (catch 'option-not-available
-                                    (srefactor-ui--cycle 'next)))))
-    (define-key km "O" (lambda ()
-                         (interactive)
-                         (message "%s"
-                                  (catch 'option-not-available
-                                    (srefactor-ui--cycle 'prev)))))
-    (define-key km (kbd "M-<next>") 'srefactor-ui--next-page-target-window)
-    (define-key km (kbd "M-<prior>") 'srefactor-ui--previous-page-target-window)
-    (when (featurep 'evil)
-      (define-key km (kbd "/") 'evil-search-forward)
-      (define-key km (kbd "?") 'evil-search-backward))
-    (define-key km (kbd "C-g") 'srefactor-ui--menu-quit)
-    (define-key km [follow-link] "\C-m")
-    km)
-  "Keymap used in recentf dialogs.")
-
-(define-derived-mode srefactor-ui-menu-mode nil "srefactor-ui-menu"
-  "Major mode of recentf dialogs.
- "
-  :syntax-table nil
-  :abbrev-table nil
-  (setq truncate-lines t))
-
-(provide 'srefactor-ui)
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;; srefactor-ui.el ends here
-;; Local Variables:
-;; byte-compile-warnings: (not cl-functions)
-;; End:
diff --git a/elpa/srefactor-20180703.1810/srefactor-ui.elc b/elpa/srefactor-20180703.1810/srefactor-ui.elc
deleted file mode 100644
index 302c259..0000000
--- a/elpa/srefactor-20180703.1810/srefactor-ui.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/srefactor-20180703.1810/srefactor.el b/elpa/srefactor-20180703.1810/srefactor.el
deleted file mode 100644
index 7d963b1..0000000
--- a/elpa/srefactor-20180703.1810/srefactor.el
+++ /dev/null
@@ -1,1667 +0,0 @@
-;;; srefactor.el --- A refactoring tool based on Semantic parser framework
-;;
-;; Filename: srefactor.el
-;; Description: A refactoring tool based on Semantic parser framework
-;; Author: Tu, Do Hoang <tuhdo1710@gmail.com>
-;; URL      : https://github.com/tuhdo/semantic-refactor
-;; Maintainer: Tu, Do Hoang
-;; Created: Wed Feb 11 21:25:51 2015 (+0700)
-;; Version: 0.3
-;; Package-Requires: ((emacs "24.4"))
-;; Last-Updated: Wed Feb 11 21:25:51 2015 (+0700)
-;;           By: Tu, Do Hoang
-;;     Update #: 1
-;; URL:
-;; Doc URL:
-;; Keywords: c, languages, tools
-;; Compatibility: GNU Emacs: 24.3+
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Commentary:
-;;
-;; Semantic is a package that provides a framework for writing
-;; parsers. Parsing is a process of analyzing source code based on
-;; programming language syntax. This package relies on Semantic for
-;; analyzing source code and uses its results to perform smart code
-;; refactoring that based on code structure of the analyzed language,
-;; instead of plain text structure.
-;;
-;; To use this package, user only needs to use this single command:
-;; `srefactor-refactor-at-point'
-;;
-;; This package includes the following features:
-;;
-;; - Context-sensitive menu: when user runs the command, a menu
-;; appears and offer refactoring choices based on current scope of
-;; semantic tag. For example, if the cursor is inside a class, the
-;; menu lists choices such as generate function implementations for
-;; the class, generate class getters/setters... Each menu item also
-;; includes its own set of options, such as perform a refactoring
-;; option in current file or other file.
-;;
-;; - Generate class implementation: From the header file, all function
-;; prototypes of a class can be generated into corresponding empty
-;; function implementation in a source file. The generated function
-;; implementations also include all of their (nested) parents as
-;; prefix in the names, if any. If the class is a template, then the
-;; generated functions also includes all templates declarations and in
-;; the parent prefix properly.
-;;
-;; - Generate function implementation: Since all function
-;; implementations can be generated a class, this feature should be
-;; present.
-;;
-;; - Generate function prototype: When the cursor is in a function
-;; implementation, a function prototype can be generated and placed in
-;; a selected file. When the prototype is moved into, its prefix is
-;; stripped.
-;;
-;; - Convert function to function pointer: Any function can be
-;; converted to a function pointer with typedef. The converted
-;; function pointer can also be placed as a parameter of a function.
-;; In this case, all the parameter names of the function pointer is
-;; stripped.
-;;
-;; - Move semantic units: any meaningful tags recognized by Semantic
-;; (class, function, variable, namespace...) can be moved relative to
-;; other tags in current file or any other file.
-;;
-;; - Extract function: select a region and turn it into a function,
-;; with relevant variables turned into function parameters and
-;; preserve full type information.
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or (at
-;; your option) any later version.
-;;
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;;; Code:
-
-(require 'cl-lib)
-(require 'cc-mode)
-(require 'semantic)
-(require 'semantic/tag-ls)
-(require 'semantic/bovine/c)
-(require 'semantic/format)
-(require 'semantic/doc)
-(require 'srecode/semantic)
-(require 'srefactor-ui)
-
-(if (not (version< emacs-version "24.4"))
-    (require 'subr-x)
-  (defun string-empty-p (string)
-    "Check whether STRING is empty."
-    (string= string ""))
-
-  (defun string-trim-left (string)
-    "Remove leading whitespace from STRING."
-    (if (string-match "\\`[ \t\n\r]+" string)
-        (replace-match "" t t string)
-      string))
-
-  (defun string-trim-right (string)
-    "Remove trailing whitespace from STRING."
-    (if (string-match "[ \t\n\r]+\\'" string)
-        (replace-match "" t t string)
-      string)))
-
-(when (version< emacs-version "25")
-  (defalias 'semantic-documentation-comment-preceding-tag 'semantic-documentation-comment-preceeding-tag))
-
-(defvar srefactor--current-local-var nil
-  "Current local variable at point")
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; User options
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(defcustom srefactor--getter-prefix "get_"
-  "Prefix for inserting getter."
-  :group 'srefactor)
-
-(defcustom srefactor--setter-prefix "set_"
-  "Prefix for inserting getter."
-  :group 'srefactor)
-
-(defcustom srefactor--getter-setter-removal-prefix ""
-  "Prefix for removing getter and setter."
-  :group 'srefactor)
-
-(defcustom srefactor--getter-setter-capitalize-p nil
-  "Whether getter and setter should be capitalized."
-  :group 'srefactor
-  :type 'boolean)
-
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Developer Options
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defvar srefactor-use-srecode-p nil
-  "Use experimental SRecode tag insertion ")
-
-;; MACROS
-(defmacro srefactor--is-proto (type)
-  `(eq ,type 'gen-func-proto))
-
-(defmacro srefactor--add-menu-item (label operation-type file-options)
-  `(add-to-list 'menu-item-list (list ,label
-                                      ',operation-type
-                                      ,file-options)))
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Commands - only one currently
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-;;;###autoload
-(defun srefactor-refactor-at-point ()
-  "Offer contextual menu with actions based on current tag in scope.
-
-Each menu item added returns a token for what type of refactoring
-to perform."
-  (interactive)
-  (let* ((semanticdb-find-default-throttle '(file))
-         (refresh (semantic-parse-changes-default))
-         (srefactor--file-options (srefactor-ui--return-option-list 'file))
-         (tag (srefactor--copy-tag))
-         (menu (make-instance 'srefactor-ui-menu :name "menu"))
-         menu-item-list)
-    (setq srefactor--current-local-var (srefactor--menu-add-rename-local-p))
-    (when (srefactor--menu-add-function-implementation-p tag)
-      (srefactor--add-menu-item "Generate Function Implementation (Other file)"
-                                gen-func-impl
-                                srefactor--file-options))
-    (when (srefactor--menu-add-function-proto-p tag)
-      (srefactor--add-menu-item  "Generate Function Prototype (Other file)"
-                                 gen-func-proto
-                                 srefactor--file-options))
-    (when (srefactor--menu-add-function-pointer-p tag)
-      (srefactor--add-menu-item "Generate Function Pointer (Current file)"
-                                gen-func-ptr
-                                srefactor--file-options))
-    (when (srefactor--menu-add-getters-setters-p tag)
-      (srefactor--add-menu-item  "Generate Getters and Setters (Current file)"
-                                 gen-getters-setters
-                                 srefactor--file-options))
-    (when (srefactor--menu-add-getter-setter-p tag)
-      (srefactor--add-menu-item  "Generate Setter (Current file)"
-                                 gen-setter
-                                 srefactor--file-options)
-      (srefactor--add-menu-item  "Generate Getter (Current file)"
-                                 gen-getter
-                                 srefactor--file-options)
-      (srefactor--add-menu-item  "Generate Getter and Setter (Current file)"
-                                 gen-getter-setter
-                                 srefactor--file-options))
-    (when srefactor--current-local-var
-      (setq tag srefactor--current-local-var)
-      (srefactor--add-menu-item  "Rename local variable (Current file)"
-                                 rename-local-var
-                                 '("(Current file)")))
-    (when (srefactor--menu-add-move-p)
-      (srefactor--add-menu-item  "Move (Current file)"
-                                 move
-                                 srefactor--file-options))
-    (when (region-active-p)
-      (srefactor--add-menu-item  "Extract function (Current file)"
-                                 extract-function
-                                 nil))
-    (oset menu :items menu-item-list)
-    (oset menu :action #'srefactor-ui--refactor-action)
-    (oset menu :context tag)
-    (oset menu :shortcut-p t)
-    (srefactor-ui-create-menu menu)))
-
-(defun srefactor--tag-filter (predicate tag-classes-or-names tags)
-  "Filter TAGS based on PREDICATE that satisfies TAG-CLASSES-OR-NAMES.
-
-TAG-CLASSES-OR-NAMES can be a list of Semantic tag classes, or a
-list of Semantic tag names, but not both.
-
-Based on the type of list passed above, either use
-`semantic-tag-class' or `semantic-tag-name' as PREDICATE."
-  (let (l)
-    (dolist (tag tags l)
-      (when (member (funcall predicate tag) tag-classes-or-names)
-        (setq l (cons tag l))))))
-
-(defun srefactor--c-tag-start-with-comment (tag)
-  (save-excursion
-    (goto-char (semantic-tag-start tag))
-    (if (and (search-backward-regexp "/\\*" nil t)
-             (semantic-documentation-comment-preceding-tag tag)
-             (looking-at "^[ ]*\\/\\*"))
-        (progn
-          (beginning-of-line)
-          (point))
-      (semantic-tag-start tag))))
-
-(defun srefactor--copy-tag ()
-  "Take the current tag, and place it in the tag ring."
-  (semantic-fetch-tags)
-  (let ((ft (semantic-current-tag)))
-    (when ft
-      (ring-insert senator-tag-ring ft)
-      (semantic-tag-set-bounds ft
-                               (srefactor--c-tag-start-with-comment ft)
-                               (semantic-tag-end ft))
-      (kill-ring-save (semantic-tag-start ft)
-                      (semantic-tag-end ft))
-      (when (called-interactively-p 'interactive)
-        (message "Use C-y to yank text.  \
-Use `senator-yank-tag' for prototype insert.")))
-    ft))
-
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; High level functions that select action to make
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(defun srefactor--refactor-based-on-tag-class (operation &optional file-option)
-  "Refactor based on current tag in context.
-
-OPERATION is a refactoring type user selected from the menu.
-FILE-OPTION is a file destination associated with OPERATION."
-  (let* ((refactor-tag (srefactor--copy-tag))
-         (class (semantic-tag-class refactor-tag)))
-    (cond
-     ((eq class 'function)
-      (cond
-       ((eq operation 'extract-function)
-        (srefactor--extract-region 'function))
-       ((eq operation 'rename-local-var)
-        (let* ((local-var (srefactor--tag-at-point))
-               (function-tag (semantic-current-tag))
-               (search-start (semantic-tag-start function-tag))
-               (search-end (semantic-tag-end function-tag))
-               prompt)
-          (unwind-protect
-              (condition-case nil
-                  (let ((tag-occurrences (srefactor--collect-tag-occurrences local-var
-                                                                             search-start
-                                                                             search-end)))
-                    (srefactor--highlight-tag local-var tag-occurrences refactor-tag 'match)
-                    (setq prompt (format "Replace (%s) with: " (semantic-tag-name local-var)))
-                    (srefactor--rename-local-var local-var
-                                                 tag-occurrences
-                                                 refactor-tag
-                                                 (read-from-minibuffer prompt)))
-                (error nil))
-            (remove-overlays))))
-       (t
-        (let ((other-file (srefactor--select-file file-option)))
-          (srefactor--refactor-tag (srefactor--contextual-open-file other-file)
-                                   refactor-tag
-                                   operation
-                                   t)))))
-     ((eq class 'type)
-      (cond
-       ((eq operation 'gen-getters-setters)
-        (srefactor-insert-class-getters-setters refactor-tag file-option)
-        (message "Getter and setter generated."))
-       ((eq operation 'move)
-        (let ((other-file (srefactor--select-file file-option)))
-          (srefactor--refactor-tag (srefactor--contextual-open-file other-file)
-                                   refactor-tag
-                                   operation
-                                   t)))
-       (t (srefactor--refactor-type (srefactor--contextual-open-file
-                                     (srefactor--select-file file-option))
-                                    refactor-tag))))
-     ((eq class 'variable)
-      (cond
-       ((eq operation 'gen-getter-setter)
-        (let ((buffer (srefactor--contextual-open-file (srefactor--select-file file-option))))
-          (srefactor--variable-insert-getter-setter t t refactor-tag buffer))
-        (message "Getter and setter generated."))
-       ((eq operation 'gen-getter)
-        (let ((buffer (srefactor--contextual-open-file (srefactor--select-file file-option))))
-          (srefactor--variable-insert-getter-setter t nil refactor-tag buffer))
-        (message "Getter generated."))
-       ((eq operation 'gen-setter)
-        (let ((buffer (srefactor--contextual-open-file (srefactor--select-file file-option))))
-          (srefactor--variable-insert-getter-setter nil t refactor-tag buffer))
-        (message "Setter generated."))
-       ((eq operation 'move)
-        (let ((other-file (srefactor--select-file file-option)))
-          (srefactor--refactor-tag (srefactor--contextual-open-file other-file)
-                                   refactor-tag
-                                   operation
-                                   t)))
-       (t nil)))
-     ((eq class 'package)
-      (message "FIXME: 'package refactoring is not yet implemented."))
-     ((eq class 'include)
-      (message "FIXME: 'include refactoring is not yet implemented."))
-     ((eq class 'label)
-      (message "FIXME: 'label refactoring is not yet implemented."))
-     (t))))
-
-(defun srefactor--select-file (option)
-  "Return a file based on OPTION selected by a user."
-  (let ((projectile-func-list '(projectile-get-other-files
-                                projectile-current-project-files
-                                projectile-project-root
-                                projectile-find-file))
-        other-files file l)
-    (when (and (featurep 'projectile)
-             (cl-reduce (lambda (acc f)
-                          (and (fboundp f) acc))
-                        projectile-func-list
-                        :initial-value t))
-        (cond
-         ((string-equal option "(Other file)")
-          (condition-case nil
-              (progn
-                (setq other-files (projectile-get-other-files (buffer-file-name)
-                                                              (projectile-current-project-files)
-                                                              nil))
-                (setq l (length other-files))
-                (setq file (concat (projectile-project-root)
-                                   (cond ((> l 1)
-                                          (completing-read "Select a file: "
-                                                           other-files))
-                                         ((= l 1)
-                                          (car other-files))
-                                         (t (projectile-find-file))))))
-            (error nil)))
-         ((and (string-equal option "(Project file)")
-               (featurep 'projectile))
-          (setq file (concat (projectile-project-root)
-                             (completing-read "Select a file: "
-                                              (projectile-current-project-files)))))
-         ))
-
-    (when (string-equal option "(Current file)")
-      (setq file (buffer-file-name (current-buffer))))
-
-    (when (string-equal option "(File)")
-      (setq file (with-current-buffer (call-interactively 'find-file-other-window)
-                   (buffer-file-name (current-buffer)))))
-    file))
-
-(defun srefactor--tag-persistent-action ()
-  "Move to a tag when executed."
-  (back-to-indentation)
-  (when srefactor-ui--current-active-tag-overlay
-    (delete-overlay srefactor-ui--current-active-tag-overlay))
-  (let (link tag)
-    (save-excursion
-      (if (search-forward ":" (line-end-position) t)
-          (setq link (get-pos-property (point) 'button))
-        (setq link (get-pos-property (point) 'button))))
-    (when (and link
-               (listp (widget-value link))
-               (semantic-tag-p (car (widget-value link))))
-      (with-selected-window srefactor-ui--current-active-window
-        (setq tag (car (widget-value link)))
-        (when (car (widget-value link))
-          (semantic-go-to-tag tag)
-          (let ((o (make-overlay (semantic-tag-start tag)
-                                 (semantic-tag-end tag))))
-            (setq srefactor-ui--current-active-tag-overlay o)
-            (overlay-put o 'face 'region)))))))
-
-(defun srefactor--refactor-tag (buffer refactor-tag func-type &optional ask-place-p)
-  "Refactor a tag.
-
-BUFFER is a buffer from opening selected file chosen from the menu.
-
-REFACTOR-TAG is selected tag to be refactored.
-
-FUNC-TYPE is a refactoring action to be performed.
-
-ASK-PLACE-P, if true, asks user to select a tag in BUFFER to insert next to it."
-  (let (dest-tag
-        (tag-list (nreverse (srefactor--fetch-candidates))))
-    (setq srefactor-ui--func-type func-type)
-    (with-current-buffer buffer
-      (if (and ask-place-p tag-list)
-          (progn
-            (oset srefactor-ui--current-active-menu :items tag-list)
-            (oset srefactor-ui--current-active-menu :action #'srefactor-ui--tag-action)
-            (oset srefactor-ui--current-active-menu :shortcut-p nil)
-            (oset srefactor-ui--current-active-menu :persistent-action 'srefactor--tag-persistent-action)
-            (oset srefactor-ui--current-active-menu :post-handler
-                  (lambda ()
-                    (let ((tag (context srefactor-ui--current-active-menu))
-                          tag-string)
-                      (with-temp-buffer
-                        (setq major-mode 'c++-mode)
-                        (setq tag-string (semantic-format-tag-summarize tag nil nil)))
-                      (search-forward-regexp (regexp-quote tag-string) (point-max) t)
-                      (back-to-indentation))))
-            (oset srefactor-ui--current-active-menu :keymap
-                  (lambda ()
-                    (cl-flet ((next (key)
-                                    (define-key srefactor-ui-menu-mode-map key
-                                      (lambda ()
-                                        (interactive)
-                                        (widget-forward 1)
-                                        (srefactor--tag-persistent-action))))
-                              (previous (key)
-                                        (define-key srefactor-ui-menu-mode-map key
-                                          (lambda ()
-                                            (interactive)
-                                            (widget-backward 1)
-                                            (srefactor--tag-persistent-action)))))
-                      (next "n")
-                      (next "j")
-                      (previous "p")
-                      (previous "k"))))
-            (srefactor-ui-create-menu srefactor-ui--current-active-menu))
-        (srefactor--insert-tag refactor-tag nil func-type)))))
-
-(defun srefactor--refactor-type (dest-buffer refactor-tag)
-  "Generate function implementations for all functions in a
-class, including functions in nested classes.
-
-DEST-BUFFER is the destination buffer to insert generated code.
-REFACTOR-TAG is a Semantic tag that holds information of a C++ class."
-  (let* ((members (semantic-tag-type-members refactor-tag))
-         (dest-buffer-tags (with-current-buffer dest-buffer
-                             (semantic-fetch-tags)))
-         (diff (set-difference members
-                               dest-buffer-tags
-                               :test #'semantic-equivalent-tag-p))
-         )
-    (dolist (tag diff)
-      (cond
-       ((and (eq (semantic-tag-class tag) 'function)
-             (semantic-tag-prototype-p tag))
-        (srefactor--refactor-tag dest-buffer tag 'gen-func-impl))
-       ((eq (semantic-tag-class tag) 'type)
-        (srefactor--refactor-type dest-buffer tag))
-       (t)))))
-
-(defun srefactor--insert-tag (refactor-tag dest-tag insert-type &optional pos)
-  "Insert a Semantic TAG to current buffer.
-
-REFACTOR-TAG is selected Semantic tag to be refactored.
-
-DEST-TAG is destination tag for refactored tag to be inserted
-next to it. If nil, insert at the end of file.
-
-POS is specific relative position to be inserted. POS is one of
-the option \"Before|Inside|After\" that appears when a
-destination tag can have its own members, such as a class or a
-namespace.
-"
-  (let* ((parent-is-func-p (eq (semantic-tag-class (semantic-tag-calculate-parent dest-tag))
-                               'function))
-         (class (semantic-tag-class refactor-tag))
-         beg end)
-
-    ;; if  refactor-tag dest-tag is nil, just insert at end of file
-    (if dest-tag
-        (progn
-          (semantic-go-to-tag dest-tag)
-
-          (if parent-is-func-p
-              (srefactor--insert-function-as-parameter refactor-tag)
-
-            ;; Handle selected position
-            (cond
-             ((string-equal pos "(Before)")
-              (open-line 1))
-             ((string-equal pos "(Inside)")
-              (search-forward "{")
-              (newline 1))
-             (t (goto-char (semantic-tag-end dest-tag))
-                (forward-line 1)))
-
-            ;; handle insert type
-            (cond
-             ((eq insert-type 'gen-func-ptr)
-              (srefactor--insert-function-pointer refactor-tag)
-              (newline-and-indent)
-              (recenter))
-             ((or (eq insert-type 'gen-func-impl) (eq insert-type 'gen-func-proto))
-              (if (region-active-p)
-                  (mapc (lambda (f-t)
-                          (srefactor--insert-function f-t insert-type))
-                        (semantic-parse-region (region-beginning) (region-end)))
-                (srefactor--insert-function refactor-tag insert-type)))
-             ((srefactor--tag-pointer refactor-tag)
-              (semantic-insert-foreign-tag (srefactor--function-pointer-to-function refactor-tag)))
-             ((eq insert-type 'move)
-              (with-current-buffer (semantic-tag-buffer refactor-tag)
-                (save-excursion
-                  (goto-char (semantic-tag-start refactor-tag))
-                  (delete-region (semantic-tag-start refactor-tag)
-                                 (semantic-tag-end refactor-tag))
-                  (delete-blank-lines)))
-              (if (and (or (srefactor--tag-struct-p dest-tag)
-                           (srefactor--tag-struct-p
-                            (srefactor--calculate-parent-tag dest-tag)))
-                       (eq class 'function)
-                       (eq major-mode 'c-mode))
-                  (progn
-                    (insert (srefactor--function-to-function-pointer refactor-tag))
-                    (insert ";"))
-                (delete-trailing-whitespace)
-                (if (eq class 'function)
-                    (srefactor--insert-function refactor-tag (if (semantic-tag-prototype-p refactor-tag)
-                                                                 'gen-func-proto
-                                                               'gen-func-proto))
-                  (setq beg (point))
-                  (yank)
-                  (insert "\n")
-                  (setq end (point))
-                  (indent-region beg end))))
-             (t (senator-yank-tag)))))
-      (goto-char (point-max))
-      (cond
-       ((eq insert-type 'gen-func-ptr)
-        (srefactor--insert-function-pointer refactor-tag))
-       ((eq insert-type 'gen-func-impl)
-        (srefactor--insert-function refactor-tag 'gen-func-impl))
-       ((eq insert-type 'gen-func-proto)
-        (srefactor--insert-function refactor-tag 'gen-func-proto))
-       ((semantic-tag-get-attribute refactor-tag :function-pointer)
-        (semantic-insert-foreign-tag (srefactor--function-pointer-to-function refactor-tag)))
-       (t (senator-yank-tag))))
-
-    ;; indent after inserting refactor-tag
-    (indent-according-to-mode)
-    ))
-
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Functions - IO
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(defun srefactor--contextual-open-file (other-file)
-  "If the current buffer is also the selected file, don't open
-the file in another window but use the current buffer and window
-instead.
-
-OTHER-FILE is the selected file from the menu."
-  (if other-file
-      (cond
-       ((srefactor--switch-to-window other-file)
-        (current-buffer))
-       ((equal other-file (buffer-file-name (current-buffer)))
-        (find-file other-file))
-       (t (find-file-other-window other-file)
-          (current-buffer)))
-    ;; use ff-find-other-file when no file is chosen,
-    ;; it means that user selected (Other file) option, but
-    ;; does not install Projectile so he cannot use its function to
-    ;; return the filename of other file. In this case, he simply gets
-    ;; nil, which mean it's the job for `ff-find-other-file'. This needs
-    ;; fixing in the future
-    (ff-find-other-file t t)
-
-    ;; `ff-find-other-file' does not return a buffer but switching to
-    ;; the opened buffer instantly. We must return a buffer from this
-    ;; function otherwise things go wrong
-    (current-buffer)))
-
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Functions that insert actual text or modify text
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-;;
-;; CLASS
-;;
-(defun srefactor-insert-class-getters-setters (tag file-option)
-  "Insert getter-setter of a class TAG into file specified in FILE-OPTION."
-  (semantic-fetch-tags-fast)
-  (let ((tag (semantic-current-tag))
-        (buffer (srefactor--contextual-open-file (srefactor--select-file file-option))))
-    (when (eq (semantic-tag-class tag) 'type)
-      (when (eq (semantic-tag-class tag) 'type)
-        (let* ((members (srefactor--tag-filter 'semantic-tag-class
-                                               '(variable label)
-                                               (semantic-tag-type-members tag)))
-               (variables (srefactor--tag-filter 'semantic-tag-class '(variable) members))
-               (tag-start (semantic-tag-start tag)))
-          (dolist (v variables)
-            (when (srefactor--tag-private-p v)
-              (srefactor--variable-insert-getter-setter t t v buffer)))
-          (recenter))))))
-
-(defun srefactor--insert-getter (tag &optional newline-before newline-after prototype-p)
-  "Insert getter for TAG.
-Add NEWLINE-BEFORE and NEWLINE-AFTER if t."
-  (let ((tag-type (srefactor--tag-type-string tag))
-        (tag-buffer (semantic-tag-buffer tag))
-        (tag-parent-string "")
-        tag-name beg)
-    (setq beg (point))
-    (unless (eq tag-buffer (current-buffer))
-      (setq tag-parent-string (srefactor--tag-parents-string tag)))
-    (when newline-before
-      (newline newline-before))
-    (when (and (or (listp (semantic-tag-type tag))
-                   (semantic-tag-get-attribute tag :pointer))
-               (not (semantic-tag-get-attribute tag :constant-flag)))
-      (insert "const "))
-    (insert tag-type)
-    (setq tag-name (replace-regexp-in-string srefactor--getter-setter-removal-prefix
-                                             ""
-                                             (semantic-tag-name tag)))
-    (insert (concat " "
-                    tag-parent-string
-                    srefactor--getter-prefix
-                    (if srefactor--getter-setter-capitalize-p
-                        (capitalize tag-name)
-                      tag-name)))
-    (insert "() const")
-    (if prototype-p
-        (insert ";")
-      (insert " {")
-      (srefactor--indent-and-newline 1)
-      (insert (concat "return"
-                      " "
-                      (semantic-tag-name tag) ";"))
-      (srefactor--indent-and-newline 1)
-      (insert "}")
-      (indent-according-to-mode)
-      (when newline-after
-        (newline newline-after)))
-    (indent-region beg (point))))
-
-(defun srefactor--insert-setter (tag newline-before newline-after &optional prototype-p)
-  "Insert setter for TAG.
-Add NEWLINE-BEFORE and NEWLINE-AFTER if t."
-  (when newline-before
-    (newline newline-before))
-  (let ((tag-type (srefactor--tag-type-string tag))
-        (tag-type (srefactor--tag-type-string tag))
-        (tag-pointer (srefactor--tag-pointer tag))
-        (tag-name (semantic-tag-name tag))
-        (tag-type-string (srefactor--tag-type-string tag))
-        (tag-buffer (semantic-tag-buffer tag))
-        tag-parent-string modified-tag-name beg)
-    (setq beg (point))
-    (unless (eq tag-buffer (current-buffer))
-      (setq tag-parent-string (srefactor--tag-parents-string tag)))
-    (insert "void")
-    (setq modified-tag-name (replace-regexp-in-string srefactor--getter-setter-removal-prefix
-                                                      ""
-                                                      (semantic-tag-name tag)))
-    (insert (concat " "
-                    tag-parent-string
-                    srefactor--setter-prefix
-                    (if srefactor--getter-setter-capitalize-p
-                        (capitalize modified-tag-name)
-                      modified-tag-name)))
-    (insert (concat (insert "(")
-                    (unless (semantic-tag-variable-constant-p tag)
-                      "const ")
-                    tag-type
-                    (when (and (listp tag-type)
-                               ;; (srefactor--tag-reference tag)
-                               (not tag-pointer))
-                      "&")
-                    " "
-                    tag-name
-                    ")"))
-    (if prototype-p
-        (insert ";")
-      (insert " {")
-      (srefactor--indent-and-newline 1)
-      (insert (concat "this->" tag-name " = " tag-name ";"))
-      (srefactor--indent-and-newline 1)
-      (insert "}")
-      (indent-according-to-mode)
-      (when newline-after
-        (newline newline-after)))
-    (indent-region beg (point))))
-
-(defun srefactor--jump-or-insert-public-label (tag)
-  "Check if TAG is a class or struct.
-If so, check if any public label exists, jump to it.
-Otherwise, insert one."
-  (when (eq (semantic-tag-class tag) 'type)
-    (goto-char (semantic-tag-start tag))
-    (let* (label-pos
-           (members (srefactor--tag-filter 'semantic-tag-class
-                                           '(variable label)
-                                           (semantic-tag-type-members tag)))
-           (public-label (car (srefactor--tag-filter 'semantic-tag-name
-                                                     '("public")
-                                                     members))))
-      (if public-label
-          (progn
-            (if (semantic-overlay-start (semantic-tag-overlay public-label))
-                (progn
-                  (goto-char (semantic-tag-end public-label))
-                  (setq label-pos (semantic-tag-start public-label)))
-              (search-forward "public:")
-              (setq label-pos (point))))
-        (goto-char (semantic-tag-end tag))
-        (search-backward "}")
-        (open-line 1)
-        (insert "public:")
-        (setq label-pos (point)))
-      label-pos)))
-
-(defun srefactor--variable-insert-getter-setter (insert-getter-p insert-setter-p tag buffer)
-  "Insert getter if INSERT-GETTER-P is t, insert setter if INSERT-SETTER-P is t.
-TAG is the current variable at point.
-BUFFER is the destination buffer from file user selects from contextual menu."
-  (with-current-buffer buffer
-    (unless (srefactor--jump-or-insert-public-label (save-excursion
-                                                      (goto-char (semantic-tag-start tag))
-                                                      (semantic-current-tag-parent)))
-      (goto-char (point-max)))
-    (unless (eq buffer (semantic-tag-buffer tag))
-      (with-current-buffer (semantic-tag-buffer tag)
-        (srefactor--jump-or-insert-public-label (save-excursion
-                                                  (goto-char (semantic-tag-start tag))
-                                                  (semantic-current-tag-parent)))
-        (when insert-getter-p (srefactor--insert-getter tag 1 1 t))
-        (when insert-setter-p (srefactor--insert-setter tag 1 1 t))))
-    (when insert-getter-p (srefactor--insert-getter tag 1 1))
-    (when insert-setter-p (srefactor--insert-setter tag 1 1))))
-
-;;
-;; FUNCTION
-;;
-(defun srefactor--insert-with-srecode (func-tag)
-  "Insert a tag using srecode"
-  (let* ((copy (semantic-tag-copy func-tag))
-         ;; (parent (semantic-tag-calculate-parent func-tag))
-         ;; TODO - below srefactor fcn should be a part of semantic or srecode.
-         (parentstring1 (srefactor--tag-parents-string func-tag))
-         (parentstring (substring parentstring1 0 (- (length parentstring1) 2)))
-         (endofinsert nil))
-    ;; Copied this line from original
-    (semantic-tag-put-attribute func-tag :typemodifiers nil)
-    (semantic-tag-put-attribute func-tag :parent parentstring)
-    ;; Insert the tag
-    (require 'srecode/semantic)
-    ;; TODO - does it need any special dictionary entries?
-    (setq endofinsert
-          (srecode-semantic-insert-tag
-           func-tag
-           nil ;; Style
-           (lambda (localtag)
-             (srefactor--insert-initial-content-based-on-return-type
-              (if (or (srefactor--tag-function-constructor copy)
-                      (srefactor--tag-function-destructor copy))
-                  ""
-                (semantic-tag-type copy)))
-             ) ;; Callbck for function body.
-           ;; Dictionary entries go here.
-           ))
-    (goto-char endofinsert)
-    (insert "\n\n")))
-
-(defun srefactor--insert-function (func-tag type)
-  "Insert function implementations for FUNC-TAG at point, a tag that is a function.
-`type' is the operation to be done, not the type of the tag."
-  (newline)
-  (left-char)
-  (if srefactor-use-srecode-p
-      ;; Try using SRecode as the mechanism for inserting a tag.
-      (srefactor--insert-with-srecode func-tag)
-    ;; official routine
-    ;; add 2 newlines before insert the function
-    ;; (newline-and-indent)
-    (unless (srefactor--is-proto type)
-      (newline-and-indent))
-
-    (let ((func-tag-name (srefactor--tag-name func-tag))
-          (parent (srefactor--calculate-parent-tag func-tag)))
-      ;; insert const if return a const value
-      (when (semantic-tag-get-attribute func-tag :constant-flag)
-        (insert "const "))
-
-      (when (srefactor--tag-function-modifiers func-tag)
-        (semantic-tag-put-attribute func-tag :typemodifiers nil))
-      (save-excursion
-        (when (and (eq major-mode 'c++-mode)
-                   parent)
-          (insert (srefactor--tag-templates-declaration-string parent)))
-        (insert (srefactor--tag-function-string func-tag))
-
-        ;; insert const modifer for method
-        (when (semantic-tag-get-attribute func-tag :methodconst-flag)
-          (insert " const"))
-
-        (when (srefactor--is-proto type)
-          (insert ";\n")))
-      (unless (eq major-mode 'c-mode)
-        (search-forward-regexp (regexp-quote func-tag-name) (line-end-position) t)
-        (search-backward-regexp (regexp-quote func-tag-name) (line-beginning-position) t)
-
-        (when (srefactor--tag-function-destructor func-tag)
-          (forward-char -1))
-
-        ;; insert tag parent if any
-        (unless (or (srefactor--tag-friend-p func-tag)
-                    (eq type 'gen-func-proto)
-                    ;; check if parent exists for a tag
-                    (null (srefactor--calculate-parent-tag func-tag)))
-          (insert (srefactor--tag-parents-string func-tag)))
-
-        (when (srefactor--tag-function-constructor func-tag)
-          (let ((variables (srefactor--tag-filter #'semantic-tag-class
-                                                  '(variable)
-                                                  (semantic-tag-type-members parent))))
-            (setq variables
-                  (remove-if-not (lambda (v)
-                                   (string-match "const" (srefactor--tag-type-string v)))
-                                 variables))
-            (when variables
-              (goto-char (line-end-position))
-              (insert ":")
-              (mapc (lambda (v)
-                      (when (string-match "const" (srefactor--tag-type-string v))
-                        (insert (semantic-tag-name v))
-                        (insert "()")))
-                    variables)))))))
-
-  ;; post content insertion based on context
-  (unless (srefactor--is-proto type)
-    (end-of-line)
-    (insert " {")
-    (newline 1)
-    (save-excursion
-      (srefactor--insert-initial-content-based-on-return-type
-       (if (or (srefactor--tag-function-constructor func-tag)
-               (srefactor--tag-function-destructor func-tag))
-           ""
-         (semantic-tag-type func-tag)))
-      (insert "}")
-      (indent-according-to-mode))
-    (goto-char (line-end-position))))
-
-(defun srefactor--insert-function-pointer (tag)
-  "Insert function pointer definition for TAG."
-  (insert (concat "typedef "
-                  (srefactor--tag-type-string tag)
-                  " "
-                  "("
-                  (srefactor--tag-parents-string tag)
-                  "*"
-                  (semantic-tag-name tag)
-                  ")"
-                  "("))
-  (let ((param-str (mapconcat
-                    (lambda (tag)
-                      (let ((ptr-level (srefactor--tag-pointer tag))
-                            (ref-level (srefactor--tag-reference tag)))
-                        (srefactor--tag-type-string tag)))
-                    (semantic-tag-function-arguments tag)
-                    ", ")))
-    (insert param-str)
-    (insert ");")))
-
-(defun srefactor--insert-function-as-parameter (tag)
-  "Insert TAG that is a function as a function parameter.
-This means, the function is converted into a function pointer."
-  (insert (srefactor--function-to-function-pointer tag))
-  (insert ", "))
-
-(defun srefactor--insert-new-function-from-region ()
-  "Extract function from region."
-  (semantic-force-refresh)
-  (push-mark (region-beginning))
-  (let ((reg-diff (- (region-end) (region-beginning)))
-        (region (buffer-substring-no-properties (region-beginning) (region-end)))
-        (tag (semantic-current-tag))
-        (local-vars (semantic-get-all-local-variables))
-        l orig p1 p2 name has-error)
-    (unwind-protect
-        (condition-case e
-            (progn
-              (setq orig (point))
-              (setq region (with-temp-buffer
-                             (let (p1 p2)
-                               (insert (concat "void" " " "new_function"))
-                               (insert "()")
-                               (insert " {")
-                               (newline 1)
-                               (setq p1 (point))
-                               (insert region)
-                               (setq p2 (point))
-                               (newline 1)
-                               (insert "}")
-                               (c-beginning-of-defun-1)
-                               (search-forward "(" (point-max) t)
-                               (dolist (v local-vars l)
-                                 (when (srefactor--var-in-region-p v p1 p2)
-                                   (push v l)))
-                               (insert (srefactor--tag-function-parameters-string l))
-                               (buffer-substring-no-properties (point-min) (point-max)))))
-              (beginning-of-defun-raw)
-              (recenter-top-bottom)
-              (setq p1 (point))
-              (insert region)
-              (open-line 2)
-              (setq p2 (point))
-              (re-search-backward "new_function" nil t)
-              (forward-char 1)
-              (srefactor--mark-symbol-at-point)
-              (setq name (read-from-minibuffer "Enter function name: "))
-              (when (re-search-backward "new_function" nil t)
-                (replace-match name))
-              (indent-region (progn
-                               (c-beginning-of-defun)
-                               (point))
-                             (progn
-                               (c-end-of-defun)
-                               (point))))
-          (error "malform"
-                 (setq has-error t)
-                 (message "%s" "The selected region is malformed."))))
-    (when has-error
-      (unless (and (null p1) (null p2))
-        (delete-region p1 p2))
-      (kill-line 2)
-      (goto-char orig)
-      (pop-mark))
-    (goto-char (car mark-ring))
-    (delete-region (car mark-ring) (+ (car mark-ring) reg-diff))
-    (setq p1 (point))
-    (insert name)
-    (insert "(")
-    (dolist (v l)
-      (insert (concat (semantic-tag-name v) ", ")))
-    (insert ");")
-    (indent-region p1 (point))
-    (when (re-search-backward ", " nil t)
-      (replace-match ""))
-    (pop-mark)))
-
-(defun srefactor--insert-initial-content-based-on-return-type (tag-type)
-  "Insert initial content of function implementations.
-
-TAG-TYPE is the return type such as int, long, float, double..."
-  (cond
-   ((listp tag-type)
-    (insert (semantic-tag-name tag-type) " b;" )
-    (indent-according-to-mode)
-    (newline 2)
-    (insert "return b;")
-    (indent-according-to-mode))
-   ((or (string-match "int" tag-type)
-        (string-match "short" tag-type)
-        (string-match "long" tag-type))
-    (insert "return 0;"))
-   ((or (string-match "double" tag-type)
-        (string-match "float" tag-type))
-    (insert "return 0.0;"))
-   ((string-match "bool" tag-type)
-    (insert "return true;"))
-   ((string-match "char" tag-type)
-    (insert "return 'a';"))
-   (t))
-  (srefactor--indent-and-newline 1))
-
-;; TODO: work on this in next release
-(defun srefactor--insert-new-macro-from-region ()
-  "Assume region is marked."
-  (let* ((region (buffer-substring (region-beginning) (region-end)))
-         (beg (region-beginning))
-         (end (region-end))
-         (multiline-p (> (count-lines beg end) 1))
-         (name (read-from-minibuffer "Enter a macro name: ")))
-    (filter-buffer-substring beg end t)
-    (insert (concat name "()"))
-    (goto-char (semantic-tag-start (semantic-current-tag)))
-    (search-backward-regexp "^$")
-    (newline 1)
-    (open-line 1)
-    ;; (setq mark-active nil)
-    (setq beg (point))
-    (insert (concat "#define " name (if multiline-p "\n" " ")))
-    (insert region)
-    (forward-line 2)
-    (setq end (point))
-    (goto-char beg)
-    (set-mark-command nil )
-    (goto-char end)
-    (setq deactivate-mark nil)
-    (recenter)
-    (when multiline-p
-      (call-interactively 'c-backslash-region))
-    (setq end (point))
-    (indent-region beg end)
-    (setq mark-active nil)))
-
-;;
-;; VARIABLE
-;;
-(defun srefactor--rename-local-var (tag tag-occurrences function-tag new-name)
-  "Rename the variable instances in TAG-OCCURRENCES in FUNCTION-TAG to NEW-NAME."
-  (save-excursion
-    (goto-char (semantic-tag-start function-tag))
-    (let* ((distance (- (length new-name)
-                        (length (semantic-tag-name tag))))
-           (var-list (loop for v in tag-occurrences
-                           for i from 0 upto (1- (length tag-occurrences))
-                           collect (if (consp v)
-                                       (cons (+ (car v) (* 14 i)) (cdr v))
-                                     (+ v (* distance i))))))
-      (mapc (lambda (c)
-              (goto-char c)
-              (search-forward-regexp (srefactor--local-var-regexp tag)
-                                     (semantic-tag-end function-tag)
-                                     t)
-              (replace-match new-name t t nil 1))
-            var-list)
-      (message (format "Renamed %d occurrences of %s to %s" (length var-list) (semantic-tag-name tag) new-name)))))
-
-;;
-;; GENERAL
-;;
-
-(defun srefactor--indent-and-newline (&optional number)
-  "Indent than insert a NUMBER of newline."
-  (indent-according-to-mode)
-  (newline (if number number 1)))
-
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Functions that operate on a Semantic tag and return information
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(defun srefactor--get-all-parents (tag)
-  "Return a list of parent tags of a TAG.
-The closer to the end of the list, the higher the parents."
-  (let* ((tag-buffer (semantic-tag-buffer tag))
-         (parents (cdr (nreverse
-                        (semantic-find-tag-by-overlay (semantic-tag-start tag)
-                                                      (if tag-buffer
-                                                          tag-buffer
-                                                        (current-buffer)))))))
-    parents))
-
-(defun srefactor--tag-parents-string (tag)
-  "Return parent prefix string of a TAG.
-
-It is used for prepending to function or variable name defined
-outside of a scope."
-  (let* ((parents (srefactor--get-all-parents tag))
-         (parents-at-point (semantic-find-tag-by-overlay))
-         (parents-str-lst (mapcar (lambda (tag)
-                                    (concat (semantic-tag-name tag)
-                                            (srefactor--tag-templates-parameters-string tag)))
-                                  parents))
-         (parents-at-point-str-lst (mapcar (lambda (tag)
-                                             (concat (semantic-tag-name tag)
-                                                     (srefactor--tag-templates-parameters-string tag)))
-                                           parents-at-point))
-         (diff (set-difference parents-str-lst
-                               parents-at-point-str-lst
-                               :test #'string-equal)))
-    (concat (mapconcat #'identity (nreverse diff) "::") "::")))
-
-(defun srefactor--tag-function-parameters-string (members)
-  "Return function parameter string of a function.
-
-MEMBERS is a list of tags that are parameters of a function.  The
-parameters are retrieved by the function `semantic-tag-function-arguments'.
-
-The returned string is formatted as \"param1, param2, param3,...\"."
-  (string-trim-right
-   (mapconcat (lambda (m)
-                (concat (srefactor--tag-type-string m)
-                        " "
-                        (semantic-tag-name m)
-                        ))
-              members
-              ", ")))
-
-(defun srefactor--tag-function-string (tag)
-  "Return a complete string representation of a TAG that is a function."
-  (let ((return-type (srefactor--tag-type-string tag))
-        (members (semantic-tag-function-arguments tag))
-        (is-constructor (srefactor--tag-function-constructor tag))
-        (is-destructor (srefactor--tag-function-destructor tag)))
-    (string-trim-left (concat (unless (or is-destructor is-constructor)
-                                (concat return-type " "))
-                              (when is-destructor "~")
-                              (srefactor--tag-name tag)
-                              "("
-                              (srefactor--tag-function-parameters-string members)
-                              ")"))))
-
-(defun srefactor--tag-template-string-list (tag)
-  "Return a list of templates as a list of strings from a TAG."
-  (let ((templates (semantic-c-tag-template tag)))
-    (unless templates
-      (setq templates (semantic-c-tag-template (srefactor--calculate-parent-tag tag))))
-    (when templates
-      (mapcar #'car templates))))
-
-(defun srefactor--calculate-parent-tag (tag)
-  "An alternative version of `semantic-tag-calculate-parent'.
-
-It is the same except does not check if a TAG is in current
-buffer.  If such check is performed, even if a TAG has parent, nil
-is returned."
-  (let ((tag-buffer (semantic-tag-buffer tag)))
-    (with-current-buffer (if tag-buffer
-                             tag-buffer
-                           (current-buffer))
-      (save-excursion
-        (goto-char (semantic-tag-start tag))
-        (semantic-current-tag-parent)))))
-
-(defun srefactor--tag-templates-parameters-string (tag)
-  "Return a string with all template parameters from a TAG.
-
-The returned string is formatted as \"<class T1, class T2, ...>\"."
-  (let ((tmpl-list (srefactor--tag-template-string-list tag)))
-    (if tmpl-list
-        (concat "<"
-                (mapconcat #'identity tmpl-list ", ")
-                ">")
-      ""))
-  )
-
-(defun srefactor--tag-templates-declaration-string (tag)
-  "Return a string with all template declarations from a TAG.
-
-The returned string is formatted as:
-
-\"template <class T1, class T2>\"
-\"template <class T3>\"
-\"....\"."
-  (let* ((parent (condition-case nil
-                     (srefactor--calculate-parent-tag tag)
-                   (error nil)))
-         (tmpl-list (srefactor--tag-template-string-list tag)))
-    (if tmpl-list
-        (concat (if parent
-                    (srefactor--tag-templates-declaration-string parent)
-                  "")
-                (concat "template <"
-                        (mapconcat (lambda (T)
-                                     (concat "class " T))
-                                   tmpl-list
-                                   ", ")
-                        ">"
-                        "\n"))
-      "")))
-
-(defun srefactor--function-pointer-to-function (tag)
-  "Convert a function pointer from a function TAG."
-  (let* ((new-tag (semantic-tag-copy tag))
-         (args (semantic-tag-function-arguments new-tag))
-         (i 1))
-    (mapc (lambda (arg)
-            (semantic-tag-set-name arg (concat "a" (number-to-string i)))
-            (setq i (+ i 1)))
-          args)
-    (semantic-tag-set-name new-tag (semantic-tag-name new-tag))
-    (semantic--tag-put-property new-tag :foreign-flag t)
-    (semantic-tag-put-attribute new-tag :function-pointer nil)
-    new-tag))
-
-(defun srefactor--function-to-function-pointer (tag)
-  "Convert a function to function pointer from a TAG"
-  (let* ((type-string (srefactor--tag-type-string tag))
-         (tag-name (concat "(*" (semantic-tag-name tag) ")"))
-         (args (semantic-tag-function-arguments tag)))
-    (concat type-string
-            " "
-            tag-name
-            " "
-            "("
-            (mapconcat (lambda (arg)
-                         (srefactor--tag-type-string arg))
-                       args
-                       ", ")
-            ")")))
-
-(defun srefactor--tag-function-modifiers (tag)
-  "Return `:typemodifiers' attribute of a TAG."
-  (semantic-tag-get-attribute tag :typemodifiers))
-
-(defun srefactor--tag-function-destructor (tag)
-  "Return `:destructor-flag' attribute of a TAG, that is either t or nil."
-  (semantic-tag-get-attribute tag :destructor-flag))
-
-(defun srefactor--tag-function-constructor (tag)
-  "Return `:constructor-flag' attribute of a TAG, that is either t or nil."
-  (semantic-tag-get-attribute tag :constructor-flag))
-
-(defun srefactor--local-var-regexp (tag)
-  "Return regexp for seraching local variable TAG."
-  (format (concat "\\(\\_\<%s\\)[ ]*\\([^[:alnum:]_"
-                  ;; (unless (srefactor--tag-lambda-p tag) "(")
-                  "]\\)")
-          (regexp-quote (semantic-tag-name tag))))
-
-(defun srefactor--tag-pointer (tag)
-  "Return `:pointer' attribute of a TAG."
-  (semantic-tag-get-attribute tag :pointer))
-
-(defun srefactor--tag-typedef (tag)
-  "Return `:typedef' attribute of a TAG."
-  (semantic-tag-get-attribute tag :typedef))
-
-(defun srefactor--tag-reference (tag)
-  "Return `:reference' attribute of a TAG.
-
-If it does not exist, perform additional check to make sure it
-does not, since the actual text in buffer has it but for some
-complicated language construct, Semantic cannot retrieve it."
-  (let ((reference (semantic-tag-get-attribute tag :reference))
-        (tag-buffer (semantic-tag-buffer tag))
-        (tag-start (semantic-tag-start tag))
-        (tag-end (semantic-tag-end tag))
-        ref-start ref-end
-        statement-beg)
-    (if reference
-        reference
-      (save-excursion
-        (with-current-buffer (if tag-buffer
-                                 tag-buffer
-                               ;; only tag in current buffer does not
-                               ;; carry buffer information
-                               (current-buffer))
-          (goto-char tag-end)
-          (setq statement-beg (save-excursion
-                                (c-beginning-of-statement-1)
-                                (point)))
-          (goto-char statement-beg)
-          (setq ref-start (re-search-forward "&"
-                                             tag-end
-                                             t))
-          (goto-char statement-beg)
-          (setq ref-end (re-search-forward "[&]+"
-                                           tag-end
-                                           t))
-          (when (and ref-end ref-start)
-            (1+ (- ref-end ref-start))))))))
-
-(defun srefactor--tag-name (tag)
-  "Return TAG name and handle edge cases."
-  (let ((tag-name (semantic-tag-name tag)))
-    (with-current-buffer (semantic-tag-buffer tag)
-      (if (not (string-empty-p tag-name))
-          (if (semantic-tag-get-attribute tag :operator-flag)
-              (concat "operator " tag-name)
-            tag-name)
-        ""))))
-
-(defun srefactor--tag-type-string (tag)
-  "Return a complete return type of a TAG as string."
-  (let* ((ptr-level (srefactor--tag-pointer tag))
-         (ref-level (srefactor--tag-reference tag))
-         (ptr-string (if ptr-level
-                         (make-string ptr-level ?\*)
-                       ""))
-         (ref-string (if ref-level
-                         (make-string ref-level ?\&)
-                       ""))
-         (tag-type (semantic-tag-type tag))
-         (const-p (semantic-tag-variable-constant-p tag))
-         (template-specifier (when (semantic-tag-p tag-type)
-                               (semantic-c-tag-template-specifier tag-type))))
-    (cond
-     ((semantic-tag-function-constructor-p tag)
-      "")
-     (template-specifier
-      (replace-regexp-in-string ",>" ">"
-                                (concat (when (semantic-tag-variable-constant-p tag)
-                                          "const ")
-                                        (when (srefactor--tag-struct-p tag)
-                                          "struct ")
-                                        (car (semantic-tag-type tag))
-                                        "<"
-                                        (srefactor--tag-type-string-inner-template-list template-specifier)
-                                        ">"
-                                        (cond
-                                         (ptr-level
-                                          ptr-string)
-                                         (ref-level
-                                          ref-string)
-                                         (t "")))))
-     (t
-      (if (listp tag-type)
-          (concat (when const-p
-                    "const ")
-                  (when (srefactor--tag-struct-p tag)
-                    "struct ")
-                  (car tag-type)
-                  (cond
-                   (ref-level
-                    ref-string)
-                   (ptr-level
-                    ptr-string)))
-        tag-type)))))
-
-(defun srefactor--tag-type-string-inner-template-list (tmpl-spec-list)
-  (mapconcat (lambda (tmpl)
-               (let* ((templates (semantic-c-tag-template-specifier tmpl)))
-                 (concat (if (listp tmpl)
-                             (car tmpl)
-                           tmpl)
-                         (if (and (not (null templates)) (listp templates))
-                             (concat "<"  (srefactor--tag-type-string-inner-template-list templates)) ",")
-                         (when templates "> "))))
-             tmpl-spec-list
-             ""))
-
-(defun srefactor--extract-region (extract-type)
-  "Extract region based on type.
-
-EXTRACT-TYPE can be 'function or 'macro."
-  (if (region-active-p)
-      (unwind-protect
-          (progn
-            ;; (narrow-to-region (region-beginning) (region-end))
-            ;; (when (semantic-parse-region (region-beginning) (region-end))
-            ;;   (error "Please select a region that is not a declaration or an implementation."))
-            (save-excursion
-              (narrow-to-region (region-beginning) (region-end))
-              (c-beginning-of-defun)
-              (c-end-of-defun))
-            (widen)
-            (cond
-             ((eq extract-type 'function)
-              (srefactor--insert-new-function-from-region))
-             ((eq extract-type 'macro)
-              (srefactor--insert-new-macro-from-region))
-             (t)))
-        (widen))
-    (error "No active region.")))
-
-(defun srefactor--mark-symbol-at-point ()
-  "Activate mark for a symbol at point."
-  (interactive)
-  (forward-sexp -1)
-  (set-mark-command nil)
-  (forward-sexp 1)
-  (setq deactivate-mark nil))
-
-(defun srefactor--fetch-candidates ()
-  "Return a list of candidates in current buffer.
-
-Each candidate is a list '(DISPLAY TAG OPTIONS).  This is a
-wrapper for `srefactor--fetch-candidates-helper'.  See
-`srefactor--fetch-candidates-helper' for more details."
-  (srefactor--fetch-candidates-helper (semantic-fetch-tags) 0 nil))
-
-(defun srefactor--fetch-candidates-helper (tags depth &optional class)
-  "Return a list of lists '(DISPLAY TAG OPTIONS).
-
-This function is intended to be used with `srefactor-ui-create-menu' to
-be displayed as a list of menu items.
-
-DISPLAY is the string to bepresented to user, TAG is a semantic
-tag and OPTIONS is a list of possible choices for each menu item.
-
- TAGS are collection of Semantic tags in current buffer.
- DEPTH is current recursion depth.
- CLASS is the parent class."
-  (let ((spaces (make-string (* depth 3) ?\s))
-        (srefactor--tag-options (srefactor-ui--return-option-list 'tag))
-        (dashes (make-string 1 ?\-))
-        (class class)
-        cur-type display tag-list)
-    (cl-dolist (tag tags)
-      (when (listp tag)
-        (cl-case (setq cur-type (semantic-tag-class tag))
-          ((function type)
-           (let ((type-p (eq cur-type 'type)))
-             (unless (and (> depth 0) (not type-p))
-               (setq class nil))
-             (setq display (concat (if (null class)
-                                       spaces
-                                     (format "%s|%s%s" spaces dashes "►"))
-                                   (semantic-format-tag-summarize tag nil t)
-                                   (if (eq cur-type 'type)
-                                       " (Inside)")))
-             (and type-p
-                  (setq class (car tag)))
-             ;; Recurse to children
-             (push (list display tag (if (eq cur-type 'type)
-                                         srefactor--tag-options
-                                       nil)) tag-list)
-             (setq tag-list (append (srefactor--fetch-candidates-helper (semantic-tag-components tag)
-                                                                        (1+ depth)
-                                                                        class)
-                                    tag-list))))
-
-          ((package include label variable)
-           (let* ((parent-tag (semantic-tag-calculate-parent tag))
-                  (display (concat (if parent-tag
-                                       (format "%s|%s%s" spaces dashes "►")
-                                     spaces)
-                                   (semantic-format-tag-summarize tag nil t))))
-             (push (list display tag nil) tag-list)))
-          ;; Catch-all
-          (t))))
-    tag-list))
-
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Functions - Predicates
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(defun srefactor--menu-add-function-proto-p (tag)
-  "Check whether to add generate function prototype menu item for a TAG."
-  (let ((class (semantic-tag-class tag)))
-    (and (eq class 'function)
-         (not (semantic-tag-prototype-p tag))
-         (and (not (srefactor--tag-function-constructor tag))
-              (not (srefactor--tag-function-destructor tag)))
-         (not (region-active-p))
-         (null srefactor--current-local-var) )))
-
-(defun srefactor--menu-add-function-implementation-p (tag)
-  "Check whether to add generate function implementation menu item for a TAG."
-  (let ((class (semantic-tag-class tag)))
-    (and (or (eq class 'type)
-             (and (eq class 'function)
-                  (semantic-tag-prototype-p tag)))
-         (not (region-active-p))
-         (null srefactor--current-local-var))))
-
-(defun srefactor--menu-add-rename-local-p ()
-  "Check whether to add rename menu item."
-  (let* ((local-var (srefactor--tag-at-point))
-         (cur-tag (semantic-current-tag))
-         cur-tag-start cur-tag-end tag-name)
-    (when (and local-var
-               (eq (semantic-tag-class cur-tag) 'function)
-               (not (equal (car (nreverse (semantic-ctxt-current-symbol)))
-                           (semantic-tag-name cur-tag)))
-               (not (semantic-tag-prototype-p cur-tag))
-               (not (region-active-p)))
-      local-var)))
-
-(defun srefactor--menu-add-function-pointer-p (tag)
-  "Check whether to add generate function pointer menu item for a TAG."
-  (and (eq (semantic-tag-class tag) 'function)
-       (not (semantic-tag-get-attribute tag :pointer))
-       (and (not (srefactor--tag-function-constructor tag))
-            (not (srefactor--tag-function-destructor tag)))
-       (not (region-active-p))
-       (null srefactor--current-local-var)))
-
-(defun srefactor--menu-add-getters-setters-p (tag)
-  "Check whether to add generate getters and setters menu item for a TAG."
-  (and (eq (semantic-tag-class tag) 'type)
-       (srefactor--tag-filter 'semantic-tag-class '(variable) (semantic-tag-type-members tag))
-       (not (region-active-p))))
-
-(defun srefactor--menu-add-getter-setter-p (tag)
-  "Check whether to add generate getter and setter menu item for a TAG."
-  (and (eq (semantic-tag-class tag) 'variable)
-       (eq (semantic-tag-class (semantic-current-tag-parent)) 'type)
-       (not (region-active-p))))
-
-(defun srefactor--menu-add-move-p ()
-  "Check whether to add move menu."
-  (and (semantic-current-tag)
-       (not (region-active-p))))
-
-(defun srefactor--tag-at-point ()
-  "Retrieve current variable tag at piont."
-  (let* ((ctxt (semantic-analyze-current-context (point)))
-         (pf (when ctxt
-               ;; The CTXT is an EIEIO object.  The below
-               ;; method will attempt to pick the most interesting
-               ;; tag associated with the current context.
-               (semantic-analyze-interesting-tag ctxt))))
-    pf))
-
-(defun srefactor--activate-region (beg end)
-  "Activate a region from BEG to END."
-  (interactive)
-  (goto-char beg)
-  (set-mark-command nil)
-  (goto-char end)
-  (setq deactivate-mark nil))
-
-(defun srefactor--menu-for-region-p ()
-  "Check whether to add exclusive menu item for a region."
-  (region-active-p))
-
-(defun srefactor--var-in-region-p (tag beg end)
-  "Check if a local variable TAG is in a region from BEG to END."
-  (save-excursion
-    (goto-char beg)
-    (search-forward-regexp (srefactor--local-var-regexp tag)
-                           end t)))
-
-(defun srefactor--tag-struct-p (tag)
-  "Check if TAG is a C struct."
-  (condition-case nil
-      (let* ((type-tag (semantic-tag-type tag))
-             (typedef-tag (srefactor--tag-typedef tag))
-             type-type-tag struct-p)
-        (when typedef-tag
-          (setq struct-p (semantic-tag-type typedef-tag)))
-        (unless struct-p
-          (setq type-type-tag (semantic-tag-type type-tag))
-          (setq struct-p (and (stringp type-type-tag)
-                              (string-equal type-type-tag "struct"))))
-        struct-p)
-    (error nil)))
-
-(defun srefactor--tag-private-p (tag)
-  "Check whether a TAG is a private variable."
-  (let* ((members (srefactor--tag-filter 'semantic-tag-class
-                                         '(variable label)
-                                         (semantic-tag-type-members (semantic-tag-calculate-parent tag))))
-         (labels (srefactor--tag-filter 'semantic-tag-class
-                                        '(label)
-                                        members))
-         (public-label (car (srefactor--tag-filter 'semantic-tag-name
-                                                   '("public")
-                                                   labels)))
-         (private-label (car (srefactor--tag-filter 'semantic-tag-name
-                                                    '("private")
-                                                    labels)))
-         (tag-start (when tag (semantic-tag-start tag)))
-         (private-pos (when private-label (semantic-tag-start private-label)))
-         (public-pos (when public-label (semantic-tag-start public-label))))
-    (when (and private-label public-label)
-      (or (and private-label (> tag-start private-pos)
-               public-label (< tag-start public-pos))
-          (and public-label (> tag-start public-pos)
-               private-label (> tag-start private-pos)
-               (> private-pos public-pos))))))
-
-(defun srefactor--tag-auto-p (tag)
-  "Check whether a TAG is an auto variable."
-  (let ((type (semantic-tag-type tag)))
-    (and (listp type)
-         (string-equal "auto" (car type)))))
-
-(defun srefactor--tag-lambda-p (tag)
-  "Check whether TAG is a lambda function."
-  (condition-case nil
-      (save-excursion
-        (goto-char (semantic-tag-start tag))
-        (and (srefactor--tag-auto-p tag)
-             (search-forward-regexp "=[ ]*\\[.*\\][ ]*(.*)[ ]*"  (semantic-tag-end tag) t)))
-    (error nil)))
-
-(defun srefactor--tag-friend-p (tag)
-  "Check whether a TAG is a friend to everyone."
-  (condition-case nil
-      (let ((tag-start (semantic-tag-start tag))
-            (tag-end (semantic-tag-end tag))
-            (tag-buffer (semantic-tag-buffer tag)))
-        (with-current-buffer tag-buffer
-          (save-excursion
-            (goto-char tag-start)
-            (search-forward-regexp "friend" tag-end t))))
-    (error nil)))
-
-(defun srefactor--unknown-symbol-at-point-p ()
-  "Check whether a symbol at point is an unknown variable."
-  (unless (and (semantic-ctxt-current-symbol)
-               (srefactor--tag-at-point))
-    t))
-
-(defun srefactor--introduce-variable-at-point ()
-  (save-excursion
-    ;;
-    (let ((var (save-excursion
-                 (c-end-of-statement)
-                 (semantic-ctxt-current-assignment)))
-          var-string)
-      (unless var
-        (setq var (semantic-ctxt-current-symbol)))
-      (setq var-string (read-from-minibuffer "New variable: " var))
-      (goto-char (semantic-tag-end (car (last (semantic-get-all-local-variables)))))
-      (newline-and-indent)
-      (insert (concat var-string ";")))))
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Functions - Utilities
-;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-(defun srefactor--collect-tag-occurrences (tag beg end &optional with-content)
-  "Collect all TAG occurrences.
-PARENT-TAG is the tag that contains TAG, such as a function or a class or a namespace."
-  (save-excursion
-    (let ((local-var-regexp (srefactor--local-var-regexp tag))
-          p positions)
-      (goto-char beg)
-      (while (re-search-forward local-var-regexp end t)
-        (setq p (match-beginning 0))
-        ;; must compare tag to avoid tags with the same name but are
-        ;; different types and/or different scopes
-        (save-excursion
-          (goto-char p)
-          (when (or (semantic-equivalent-tag-p tag (srefactor--tag-at-point))
-                    (semantic-equivalent-tag-p tag (semantic-current-tag)))
-            (push (if with-content
-                      (cons p (buffer-substring-no-properties (line-beginning-position)
-                                                              (line-end-position)))
-                    p)
-                  positions))))
-      (nreverse positions))))
-
-(defun srefactor--highlight-tag (tag tag-occurrences &optional scope-tag face)
-  "Highlight tag in TAG-OCCURRENCES in SCOPE-TAG with FACE."
-  (let (beg end)
-    (mapc (lambda (p)
-            (save-excursion
-              (goto-char p)
-              (let ((overlay (make-overlay p (progn
-                                               (forward-sexp 1)
-                                               (point)))))
-                (overlay-put overlay 'face 'match))))
-          tag-occurrences)))
-
-(defun srefactor--switch-to-window (file-path)
-  "Switch to window that contains FILE-PATH string."
-  (catch 'found
-    (dolist (w (window-list))
-      (when (equal file-path (buffer-file-name (window-buffer w)))
-        (select-window w)
-        (throw 'found "Found window.")))))
-
-(provide 'srefactor)
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;; srefactor.el ends here
-;; Local Variables:
-;; byte-compile-warnings: (not cl-functions)
-;; End:
diff --git a/elpa/srefactor-20180703.1810/srefactor.elc b/elpa/srefactor-20180703.1810/srefactor.elc
deleted file mode 100644
index 34489b3..0000000
--- a/elpa/srefactor-20180703.1810/srefactor.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/treepy-20180724.656/treepy-autoloads.el b/elpa/treepy-20180724.656/treepy-autoloads.el
deleted file mode 100644
index cbc161a..0000000
--- a/elpa/treepy-20180724.656/treepy-autoloads.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; treepy-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "treepy" "treepy.el" (0 0 0 0))
-;;; Generated autoloads from treepy.el
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "treepy" '("treepy-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; treepy-autoloads.el ends here
diff --git a/elpa/treepy-20180724.656/treepy-pkg.el b/elpa/treepy-20180724.656/treepy-pkg.el
deleted file mode 100644
index 6734e3c..0000000
--- a/elpa/treepy-20180724.656/treepy-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "treepy" "20180724.656" "Generic tree traversal tools" '((emacs "25.1")) :commit "b40e6b09eb9be45da67b8c9e4990a5a0d7a2a09d" :keywords '("lisp" "maint" "tools") :authors '(("Daniel Barreto" . "daniel.barreto.n@gmail.com")) :maintainer '("Daniel Barreto" . "daniel.barreto.n@gmail.com") :url "https://github.com/volrath/treepy.el")
diff --git a/elpa/treepy-20180724.656/treepy.el b/elpa/treepy-20180724.656/treepy.el
deleted file mode 100644
index d7df4c4..0000000
--- a/elpa/treepy-20180724.656/treepy.el
+++ /dev/null
@@ -1,484 +0,0 @@
-;;; treepy.el --- Generic tree traversal tools           -*- lexical-binding: t -*-
-;;
-;; Filename: treepy.el
-;; 
-;; Copyright (C) 2017 Daniel Barreto
-;;
-;; Description: Generic Tree Traversing Tools
-;; Author: Daniel Barreto <daniel.barreto.n@gmail.com>
-;; Keywords: lisp, maint, tools
-;; Package-Version: 20180724.656
-;; Created: Mon Jul 10 15:17:36 2017 (+0200)
-;; Version: 0.1.1
-;; Package-Requires: ((emacs "25.1"))
-;; URL: https://github.com/volrath/treepy.el
-;; 
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; 
-;;; Commentary:
-;; 
-;; Generic tools for recursive and iterative tree traversal based on
-;; clojure.walk and clojure.zip respectively.  Depends on `map', a map
-;; manipulation library built in Emacs 25.1.  All functions are prefixed
-;; with "treepy-"
-;; 
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; 
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or (at
-;; your option) any later version.
-;; 
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-;; 
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-;; 
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; 
-;;; Code:
-
-(require 'map)
-
-;;; Walk (recursive tree traversal)
-
-(defun treepy-walk (inner outer form)
-  "Using INNER and OUTER, traverse FORM, an arbitrary data structure.
-INNER and OUTER are functions.  Apply INNER to each element of
-FORM, building up a data structure of the same type, then apply
-OUTER to the result.  Recognize cons, lists, alists, vectors and
-hash tables."
-  (cond
-   ((and (listp form) (cdr form) (atom (cdr form))) (funcall outer (cons (funcall inner (car form))
-                                                                         (funcall inner (cdr form)))))
-   ((listp form) (funcall outer (mapcar inner form)))
-   ((vectorp form) (funcall outer (apply #'vector (mapcar inner form))))
-   ((hash-table-p form) (funcall outer (map-apply (lambda (k v) (funcall inner (cons k v))) form)))
-   (t (funcall outer form))))
-
-(defun treepy-postwalk (f form)
-  "Perform a depth-first, post-order traversal of F applied to FORM.
-Call F on each sub-form, use F's return value in place of the
-original.  Recognize cons, lists, alists, vectors and
-hash tables."
-  (treepy-walk (apply-partially #'treepy-postwalk f) f form))
-
-(defun treepy-prewalk (f form)
-  "Perform a depth-first, pre-order traversal of F applied to FORM.
-Like `treepy-postwalk'."
-  (treepy-walk (apply-partially #'treepy-prewalk f) #'identity (funcall f form)))
-
-(defun treepy-postwalk-demo (form)
-  "Demonstrate the behavior of `treepy-postwalk' for FORM.
-Return a list of each form as it is walked."
-  (let ((walk nil))
-    (treepy-postwalk (lambda (x) (push x walk) x)
-                     form)
-    (reverse walk)))
-
-(defun treepy-prewalk-demo (form)
-  "Demonstrate the behavior of `treepy-prewalk' for FORM.
-Return a list of each form as it is walked."
-  (let ((walk nil))
-    (treepy-prewalk (lambda (x) (push x walk) x)
-                    form)
-    (reverse walk)))
-
-(defun treepy-postwalk-replace (smap form &optional testfn)
-  "Use SMAP to transform FORM by doing replacing operations.
-Recursively replace in FORM keys in SMAP with their values.  Does
-replacement at the leaves of the tree first.  The optional TESTFN
-parameter is the function to be used by `map-contains-key'."
-  (treepy-postwalk (lambda (x) (if (map-contains-key smap x testfn) (map-elt smap x) x))
-                   form))
-
-(defun treepy-prewalk-replace (smap form &optional testfn)
-  "Use SMAP to transform FORM by doing replacing operations.
-Recursively replace in FORM keys in SMAP with their values.  Does
-replacement at the root of the tree first.  The optional TESTFN
-parameter is the function to be used by `map-contains-key'."
-  (treepy-prewalk (lambda (x) (if (map-contains-key smap x testfn) (map-elt smap x) x))
-                  form))
-
-
-;;; Zipper (iterative tree traversal)
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-(defun treepy--context (loc &optional key)
-  "Return context for this LOC.
-If KEY is given, only return this key's value in context."
-  (let ((context (cdr (car loc))))
-    (if (and context key)
-        (map-elt context key)
-      context)))
-
-(defun treepy--context-assoc-1 (context k v)
-  "Assoc in CONTEXT a key K with a value V."
-  (if (map-contains-key context k)
-      (mapcar (lambda (entry)
-                (if (equal (car entry) k)
-                    (cons k v)
-                  entry))
-              context)
-    (cons (cons k v) context)))
-
-(defun treepy--context-assoc (context &rest kvs)
-  "Immutable map association in CONTEXT using KVS."
-  (seq-reduce (lambda (context kv)
-                (seq-let [k v] kv
-                  (treepy--context-assoc-1 context k v)))
-              (seq-partition kvs 2) context))
-
-(defun treepy--meta (loc &optional key)
-  "Return meta information for this LOC.
-If KEY is given, only return this key's value in meta
-information."
-  (let ((meta (cdr loc)))
-    (if key
-        (map-elt meta key)
-      meta)))
-
-(defun treepy--with-meta (obj meta)
-  "Bind OBJ with some META information."
-  (cons obj meta))
-
-(defun treepy--join-children (left-children right-children)
-  "Return a joining of LEFT-CHILDREN and RIGHT-CHILDREN.
-Reverses LEFT-CHILDREN so that they are correctly ordered as in
-the tree."
-  (append (reverse left-children) right-children))
-
-(defmacro treepy--with-loc (loc vars &rest body)
-  "Create a lexical context using LOC VARS.
-Execute BODY in this context."
-  (declare (indent defun))
-  (let ((lex-ctx (mapcar (lambda (v)
-                           (cl-case v
-                             ('node    `(node (treepy-node ,loc)))
-                             ('context `(context (treepy--context ,loc)))
-                             (t        `(,v (treepy--context ,loc (quote ,(intern (concat ":" (symbol-name v)))))))))
-                         vars)))
-    `(let* (,@lex-ctx) ,@body)))
-
-;;;; Construction
-
-(defun treepy-zipper (branchp children make-node root)
-  "Create a new zipper structure.
-
-BRANCHP is a function that, given a node, returns t if it can
-have children, even if it currently doesn't.
-
-CHILDREN is a function that, given a branch node, returns a seq
-of its children.
-
-MAKE-NODE is a function that, given an existing node and a seq of
-children, returns a new branch node with the supplied children.
-
-ROOT is the root node."
-  (treepy--with-meta
-   (cons root nil)
-   `((:branchp . ,branchp) (:children . ,children) (:make-node . ,make-node))))
-
-(defun treepy-list-zip (root)
-  "Return a zipper for nested lists, given a ROOT list."
-  (let ((make-node (lambda (_ children) children)))
-    (treepy-zipper #'listp #'identity make-node root)))
-
-(defun treepy-vector-zip (root)
-  "Return a zipper for nested vectors, given a ROOT vector."
-  (let ((make-node (lambda (_ children) (apply #'vector children)))
-        (children (lambda (cs) (seq-into cs 'list))))
-    (treepy-zipper #'vectorp children make-node root)))
-
-;;;; Context
-
-(defun treepy-node (loc)
-  "Return the node at LOC."
-  (caar loc))
-
-(defun treepy-branch-p (loc)
-  "Return t if the node at LOC is a branch."
-  (funcall (treepy--meta loc ':branchp) (treepy-node loc)))
-
-(defun treepy-children (loc)
-  "Return a children list of the node at LOC, which must be a branch."
-  (if (treepy-branch-p loc)
-      (funcall (treepy--meta loc ':children) (treepy-node loc))
-    (error "Called children on a leaf node")))
-
-(defun treepy-make-node (loc node children)
-  "Return a new branch node.
-Given an existing LOC, NODE and new CHILDREN, creates a new LOC
-with them.  The LOC is only used to supply the constructor."
-  (funcall (treepy--meta loc ':make-node) node children))
-
-(defun treepy-path (loc)
-  "Return a list of nodes leading to the given LOC."
-  (reverse (treepy--context loc ':pnodes)))
-
-(defun treepy-lefts (loc)
-  "Return a list of the left siblings of this LOC."
-  (reverse (treepy--context loc ':l)))
-
-(defun treepy-rights (loc)
-  "Return a list of the right siblings of this LOC."
-  (treepy--context loc ':r))
-
-;;;; Navigation
-
-(defun treepy-down (loc)
-  "Return the loc of the leftmost child of the node at this LOC.
-nil if no children."
-  (when (treepy-branch-p loc)
-    (let ((children (treepy-children loc)))
-      (treepy--with-loc loc (node context pnodes)
-        (seq-let [c &rest cs] children
-          (when children
-            (treepy--with-meta
-             `(,c . ((:l . ,nil)
-                     (:pnodes . ,(if context (cons node pnodes) (list node)))
-                     (:ppath . ,context)
-                     (:r . ,cs)))
-             (treepy--meta loc))))))))
-
-(defun treepy-up (loc)
-  "Return the loc of the parent of the node at this LOC.
-nil if at the top."
-  (treepy--with-loc loc (node pnodes ppath changed? l r)
-    (when pnodes
-      (let ((pnode (car pnodes)))
-        (treepy--with-meta
-         (if changed?
-             (cons (treepy-make-node loc pnode (treepy--join-children l (cons node r)))
-                   (and ppath (treepy--context-assoc ppath ':changed? t)))
-           (cons pnode ppath))
-         (treepy--meta loc))))))
-
-(defun treepy-root (loc)
-  "Zip from LOC all the way up and return the root node.
-Reflect any alterations to the tree."
-  (if (equal :end (treepy--context loc))
-      (treepy-node loc)
-    (let ((p loc))
-      (while (setq p (treepy-up p))
-        (setq loc p))
-      (treepy-node loc))))
-
-(defun treepy-right (loc)
-  "Return the loc of the right sibling of the node at this LOC.
-nil if there's no more right sibilings."
-  (treepy--with-loc loc (node context l r)
-    (let ((r (if (listp r)
-                 r
-               ;; If `r' is not a list (or nil), then we're dealing with a non
-               ;; nil cdr ending list.
-               (cons r nil))))
-      (seq-let [cr &rest rnext] r
-        (when (and context r)
-          (treepy--with-meta
-           (cons cr
-                 (treepy--context-assoc context
-                                        ':l (cons node l)
-                                        ':r rnext))
-           (treepy--meta loc)))))))
-
-
-(defun treepy-rightmost (loc)
-  "Return the loc of the rightmost sibling of the node at this LOC.
-If LOC is already the rightmost sibiling, return self."
-  (treepy--with-loc loc (node context l r)
-    (if (and context r)
-        (treepy--with-meta
-         (cons (car (last r))
-               (treepy--context-assoc context
-                                      ':l (treepy--join-children l (cons node (butlast r)))
-                                      ':r nil))
-         (treepy--meta loc))
-      loc)))
-
-(defun treepy-left (loc)
-  "Return the loc of the left sibling of the node at this LOC.
-nil if no more left sibilings."
-  (treepy--with-loc loc (node context l r)
-    (when (and context l)
-      (seq-let [cl &rest lnext] l
-        (treepy--with-meta
-         (cons cl
-               (treepy--context-assoc context
-                                      ':l lnext
-                                      ':r (cons node r)))
-         (treepy--meta loc))))))
-
-(defun treepy-leftmost (loc)
-  "Return the loc of the leftmost sibling of the node at this LOC.
-If LOC is already the leftmost sibiling, return self."
-  (treepy--with-loc loc (node context l r)
-    (if (and context l)
-        (treepy--with-meta
-         (cons (car (last l))
-               (treepy--context-assoc context
-                                      ':l []
-                                      ':r (treepy--join-children (butlast l) (cons node r))))
-         (treepy--meta loc))
-      loc)))
-
-(defun treepy-leftmost-descendant (loc)
-  "Return the leftmost descendant of the given LOC.
-\(ie, down repeatedly)."
-  (while (treepy-branch-p loc)
-    (setq loc (treepy-down loc)))
-  loc)
-
-;;;; Modification
-
-(defun treepy-insert-left (loc item)
-  "Insert as the left sibiling of this LOC'S node the ITEM.
-Return same loc with sibilings updated."
-  (treepy--with-loc loc (node context l)
-    (if (not context)
-        (error "Insert at top")
-      (treepy--with-meta
-       (cons node
-             (treepy--context-assoc context
-                                    ':l (cons item l)
-                                    ':changed? t))
-       (treepy--meta loc)))))
-
-(defun treepy-insert-right (loc item)
-  "Insert as the right sibling of this LOC's node the ITEM.
-Return same loc with sibilings updated."
-  (treepy--with-loc loc (node context r)
-    (if (not context)
-        (error "Insert at top")
-      (treepy--with-meta
-       (cons node
-             (treepy--context-assoc context
-                                    ':r (cons item r)
-                                    ':changed? t))
-       (treepy--meta loc)))))
-
-(defun treepy-replace (loc node)
-  "Replace the node in this LOC with the given NODE, without moving."
-  (let ((context (treepy--context loc)))
-    (treepy--with-meta
-     (cons node
-           (treepy--context-assoc context
-                                  ':changed? t))
-     (treepy--meta loc))))
-
-(defun treepy-edit (loc f &rest args)
-  "Replace the node at this LOC with the value of (F node ARGS)."
-  (treepy-replace loc (apply f (treepy-node loc) args)))
-
-(defun treepy-insert-child (loc item)
-  "Insert as the leftmost child of this LOC's node the ITEM.
-Return same loc with children updated."
-  (treepy-replace loc (treepy-make-node loc (treepy-node loc) (cons item (treepy-children loc)))))
-
-(defun treepy-append-child (loc item)
-  "Insert as the rightmost child of this LOC'S node the ITEM.
-Return same loc with children updated."
-  (treepy-replace loc (treepy-make-node loc (treepy-node loc) (append (treepy-children loc) `(,item)))))  ;; TODO: check performance
-
-(defun treepy-remove (loc)
-  "Remove the node at LOC.
-Return the loc that would have preceded it in a depth-first
-walk."
-  (treepy--with-loc loc (context pnodes ppath l r)
-    (if (not context)
-        (error "Remove at top")
-      (if (> (length l) 0)
-          (let ((nloc (treepy--with-meta (cons (car l)
-                                               (treepy--context-assoc context
-                                                                      ':l (cdr l)
-                                                                      ':changed? t))
-                                         (treepy--meta loc)))
-                (child nil))
-            (while (setq child (and (treepy-branch-p nloc) (treepy-children nloc)))
-              (setq nloc (treepy-rightmost child)))
-            nloc)
-        (treepy--with-meta
-         (cons (treepy-make-node loc (car pnodes) r)
-               (and ppath (treepy--context-assoc context ':changed? t)))
-         (treepy--meta loc))))))
-
-;;;; Enumeration
-
-(defun treepy--preorder-next (loc)
-  "Move to the next LOC in the hierarchy, depth-first in preorder.
-When reaching the end, returns a distinguished loc detectable via
-`treepy-end-p'.  If already at the end, stays there."
-  (if (equal :end (treepy--context loc))
-      loc
-    (let ((cloc loc))
-      (or
-       (and (treepy-branch-p cloc) (treepy-down cloc))
-       (treepy-right cloc)
-       (let ((p cloc)
-             (pr nil))
-         (while (and (treepy-up p) (not (setq pr (treepy-right (treepy-up p)))))
-           (setq p (treepy-up p)))
-         (or pr (cons (cons (treepy-node p) :end) nil)))))))
-
-(defun treepy--postorder-next (loc)
-  "Move to the next LOC in the hierarchy, depth-first in postorder.
-When reaching the end, returns a distinguished loc detectable via
-`treepy-end-p'.  If already at the end, stays there."
-  (if (equal :end (treepy--context loc))
-      loc
-    (if (null (treepy-up loc))
-        (cons (cons (treepy-node loc) :end) nil)
-      (or (let ((rloc (treepy-right loc)))
-            (and rloc (treepy-leftmost-descendant rloc)))
-          (treepy-up loc)))))
-
-(defun treepy-next (loc &optional order)
-  "Move to the next LOC in the hierarchy, depth-first.
-Use ORDER if given.  Possible values for ORDER are `:preorder' and
-`:postorder', defaults to the former."
-  (cl-case (or order ':preorder)
-    (':preorder (treepy--preorder-next loc))
-    (':postorder (treepy--postorder-next loc))
-    (t (error "Unrecognized order"))))
-
-(defun treepy--preorder-prev (loc)
-  "Move to the previous LOC in the hierarchy, depth-first preorder.
-If already at the root, returns nil."
-  (let ((lloc (treepy-left loc))
-        (child nil))
-    (if lloc
-        (progn
-          (while (setq child (and (treepy-branch-p lloc) (treepy-children lloc)))
-            (setq lloc (treepy-rightmost child)))
-          lloc)
-      (treepy-up loc))))
-
-(defun treepy--postorder-prev (loc)
-  "Move to the previous LOC in the hierarchy, depth-first postorder.
-If already at the root, returns nil."
-  (if (treepy-branch-p loc)
-      (treepy-rightmost (treepy-down loc))
-    (progn
-      (while (not (treepy-left loc))
-        (setq loc (treepy-up loc)))
-      (treepy-left loc))))
-
-(defun treepy-prev (loc &optional order)
-  "Move to the previous LOC in the hierarchy, depth-first.
-Use ORDER if given.  Possible values for ORDER are `:preorder' and `:postorder',
-defaults to the former."
-  (cl-case (or order ':preorder)
-    (':preorder (treepy--preorder-prev loc))
-    (':postorder (treepy--postorder-prev loc))
-    (t (error "Unrecognized order"))))
-
-(defun treepy-end-p (loc)
-  "Return t if LOC represents the end of a depth-first walk."
-  (equal :end (treepy--context loc)))
-
-(provide 'treepy)
-
-;;; treepy.el ends here
diff --git a/elpa/treepy-20180724.656/treepy.elc b/elpa/treepy-20180724.656/treepy.elc
deleted file mode 100644
index 09c0bdb..0000000
--- a/elpa/treepy-20180724.656/treepy.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/undo-tree-0.6.5/undo-tree-autoloads.el b/elpa/undo-tree-0.6.5/undo-tree-autoloads.el
deleted file mode 100644
index b2cf8c7..0000000
--- a/elpa/undo-tree-0.6.5/undo-tree-autoloads.el
+++ /dev/null
@@ -1,64 +0,0 @@
-;;; undo-tree-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "undo-tree" "undo-tree.el" (0 0 0 0))
-;;; Generated autoloads from undo-tree.el
-
-(autoload 'undo-tree-mode "undo-tree" "\
-Toggle undo-tree mode.
-With no argument, this command toggles the mode.
-A positive prefix argument turns the mode on.
-A negative prefix argument turns it off.
-
-Undo-tree-mode replaces Emacs' standard undo feature with a more
-powerful yet easier to use version, that treats the undo history
-as what it is: a tree.
-
-The following keys are available in `undo-tree-mode':
-
-  \\{undo-tree-map}
-
-Within the undo-tree visualizer, the following keys are available:
-
-  \\{undo-tree-visualizer-mode-map}
-
-\(fn &optional ARG)" t nil)
-
-(defvar global-undo-tree-mode nil "\
-Non-nil if Global Undo-Tree mode is enabled.
-See the `global-undo-tree-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `global-undo-tree-mode'.")
-
-(custom-autoload 'global-undo-tree-mode "undo-tree" nil)
-
-(autoload 'global-undo-tree-mode "undo-tree" "\
-Toggle Undo-Tree mode in all buffers.
-With prefix ARG, enable Global Undo-Tree mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Undo-Tree mode is enabled in all buffers where
-`turn-on-undo-tree-mode' would do it.
-See `undo-tree-mode' for more information on Undo-Tree mode.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "undo-tree" '("undo-" "turn-on-undo-tree-mode" "*undo-tree-id-counter*" "buffer-undo-tree")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; undo-tree-autoloads.el ends here
diff --git a/elpa/undo-tree-0.6.5/undo-tree-pkg.el b/elpa/undo-tree-0.6.5/undo-tree-pkg.el
deleted file mode 100644
index d9081a7..0000000
--- a/elpa/undo-tree-0.6.5/undo-tree-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "undo-tree" "0.6.5" "Treat undo history as a tree" 'nil :url "http://www.dr-qubit.org/emacs.php" :keywords '("convenience" "files" "undo" "redo" "history" "tree"))
diff --git a/elpa/undo-tree-0.6.5/undo-tree.el b/elpa/undo-tree-0.6.5/undo-tree.el
deleted file mode 100644
index 3e45b84..0000000
--- a/elpa/undo-tree-0.6.5/undo-tree.el
+++ /dev/null
@@ -1,4418 +0,0 @@
-;;; undo-tree.el --- Treat undo history as a tree  -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2009-2013  Free Software Foundation, Inc
-
-;; Author: Toby Cubitt <toby-undo-tree@dr-qubit.org>
-;; Version: 0.6.5
-;; Keywords: convenience, files, undo, redo, history, tree
-;; URL: http://www.dr-qubit.org/emacs.php
-;; Repository: http://www.dr-qubit.org/git/undo-tree.git
-
-;; This file is part of Emacs.
-;;
-;; This file is free software: you can redistribute it and/or modify it under
-;; the terms of the GNU General Public License as published by the Free
-;; Software Foundation, either version 3 of the License, or (at your option)
-;; any later version.
-;;
-;; This program is distributed in the hope that it will be useful, but WITHOUT
-;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-;; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
-;; more details.
-;;
-;; You should have received a copy of the GNU General Public License along
-;; with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-
-;;; Commentary:
-;;
-;; Emacs has a powerful undo system. Unlike the standard undo/redo system in
-;; most software, it allows you to recover *any* past state of a buffer
-;; (whereas the standard undo/redo system can lose past states as soon as you
-;; redo). However, this power comes at a price: many people find Emacs' undo
-;; system confusing and difficult to use, spawning a number of packages that
-;; replace it with the less powerful but more intuitive undo/redo system.
-;;
-;; Both the loss of data with standard undo/redo, and the confusion of Emacs'
-;; undo, stem from trying to treat undo history as a linear sequence of
-;; changes. It's not. The `undo-tree-mode' provided by this package replaces
-;; Emacs' undo system with a system that treats undo history as what it is: a
-;; branching tree of changes. This simple idea allows the more intuitive
-;; behaviour of the standard undo/redo system to be combined with the power of
-;; never losing any history. An added side bonus is that undo history can in
-;; some cases be stored more efficiently, allowing more changes to accumulate
-;; before Emacs starts discarding history.
-;;
-;; The only downside to this more advanced yet simpler undo system is that it
-;; was inspired by Vim. But, after all, most successful religions steal the
-;; best ideas from their competitors!
-;;
-;;
-;; Installation
-;; ============
-;;
-;; This package has only been tested with Emacs versions 24 and CVS. It should
-;; work in Emacs versions 22 and 23 too, but will not work without
-;; modifications in earlier versions of Emacs.
-;;
-;; To install `undo-tree-mode', make sure this file is saved in a directory in
-;; your `load-path', and add the line:
-;;
-;;   (require 'undo-tree)
-;;
-;; to your .emacs file. Byte-compiling undo-tree.el is recommended (e.g. using
-;; "M-x byte-compile-file" from within emacs).
-;;
-;; If you want to replace the standard Emacs' undo system with the
-;; `undo-tree-mode' system in all buffers, you can enable it globally by
-;; adding:
-;;
-;;   (global-undo-tree-mode)
-;;
-;; to your .emacs file.
-;;
-;;
-;; Quick-Start
-;; ===========
-;;
-;; If you're the kind of person who likes to jump in the car and drive,
-;; without bothering to first figure out whether the button on the left dips
-;; the headlights or operates the ejector seat (after all, you'll soon figure
-;; it out when you push it), then here's the minimum you need to know:
-;;
-;; `undo-tree-mode' and `global-undo-tree-mode'
-;;   Enable undo-tree mode (either in the current buffer or globally).
-;;
-;; C-_  C-/  (`undo-tree-undo')
-;;   Undo changes.
-;;
-;; M-_  C-?  (`undo-tree-redo')
-;;   Redo changes.
-;;
-;; `undo-tree-switch-branch'
-;;   Switch undo-tree branch.
-;;   (What does this mean? Better press the button and see!)
-;;
-;; C-x u  (`undo-tree-visualize')
-;;   Visualize the undo tree.
-;;   (Better try pressing this button too!)
-;;
-;; C-x r u  (`undo-tree-save-state-to-register')
-;;   Save current buffer state to register.
-;;
-;; C-x r U  (`undo-tree-restore-state-from-register')
-;;   Restore buffer state from register.
-;;
-;;
-;;
-;; In the undo-tree visualizer:
-;;
-;; <up>  p  C-p  (`undo-tree-visualize-undo')
-;;   Undo changes.
-;;
-;; <down>  n  C-n  (`undo-tree-visualize-redo')
-;;   Redo changes.
-;;
-;; <left>  b  C-b  (`undo-tree-visualize-switch-branch-left')
-;;   Switch to previous undo-tree branch.
-;;
-;; <right>  f  C-f  (`undo-tree-visualize-switch-branch-right')
-;;   Switch to next undo-tree branch.
-;;
-;; C-<up>  M-{  (`undo-tree-visualize-undo-to-x')
-;;   Undo changes up to last branch point.
-;;
-;; C-<down>  M-}  (`undo-tree-visualize-redo-to-x')
-;;   Redo changes down to next branch point.
-;;
-;; <down>  n  C-n  (`undo-tree-visualize-redo')
-;;   Redo changes.
-;;
-;; <mouse-1>  (`undo-tree-visualizer-mouse-set')
-;;   Set state to node at mouse click.
-;;
-;; t  (`undo-tree-visualizer-toggle-timestamps')
-;;   Toggle display of time-stamps.
-;;
-;; d  (`undo-tree-visualizer-toggle-diff')
-;;   Toggle diff display.
-;;
-;; s  (`undo-tree-visualizer-selection-mode')
-;;   Toggle keyboard selection mode.
-;;
-;; q  (`undo-tree-visualizer-quit')
-;;   Quit undo-tree-visualizer.
-;;
-;; C-q  (`undo-tree-visualizer-abort')
-;;   Abort undo-tree-visualizer.
-;;
-;; ,  <
-;;   Scroll left.
-;;
-;; .  >
-;;   Scroll right.
-;;
-;; <pgup>  M-v
-;;   Scroll up.
-;;
-;; <pgdown>  C-v
-;;   Scroll down.
-;;
-;;
-;;
-;; In visualizer selection mode:
-;;
-;; <up>  p  C-p  (`undo-tree-visualizer-select-previous')
-;;   Select previous node.
-;;
-;; <down>  n  C-n  (`undo-tree-visualizer-select-next')
-;;   Select next node.
-;;
-;; <left>  b  C-b  (`undo-tree-visualizer-select-left')
-;;   Select left sibling node.
-;;
-;; <right>  f  C-f  (`undo-tree-visualizer-select-right')
-;;   Select right sibling node.
-;;
-;; <pgup>  M-v
-;;   Select node 10 above.
-;;
-;; <pgdown>  C-v
-;;   Select node 10 below.
-;;
-;; <enter>  (`undo-tree-visualizer-set')
-;;   Set state to selected node and exit selection mode.
-;;
-;; s  (`undo-tree-visualizer-mode')
-;;   Exit selection mode.
-;;
-;; t  (`undo-tree-visualizer-toggle-timestamps')
-;;   Toggle display of time-stamps.
-;;
-;; d  (`undo-tree-visualizer-toggle-diff')
-;;   Toggle diff display.
-;;
-;; q  (`undo-tree-visualizer-quit')
-;;   Quit undo-tree-visualizer.
-;;
-;; C-q  (`undo-tree-visualizer-abort')
-;;   Abort undo-tree-visualizer.
-;;
-;; ,  <
-;;   Scroll left.
-;;
-;; .  >
-;;   Scroll right.
-;;
-;;
-;;
-;; Persistent undo history:
-;;
-;; Note: Requires Emacs version 24.3 or higher.
-;;
-;; `undo-tree-auto-save-history' (variable)
-;;    automatically save and restore undo-tree history along with buffer
-;;    (disabled by default)
-;;
-;; `undo-tree-save-history' (command)
-;;    manually save undo history to file
-;;
-;; `undo-tree-load-history' (command)
-;;    manually load undo history from file
-;;
-;;
-;;
-;; Compressing undo history:
-;;
-;;   Undo history files cannot grow beyond the maximum undo tree size, which
-;;   is limited by `undo-limit', `undo-strong-limit' and
-;;   `undo-outer-limit'. Nevertheless, undo history files can grow quite
-;;   large. If you want to automatically compress undo history, add the
-;;   following advice to your .emacs file (replacing ".gz" with the filename
-;;   extension of your favourite compression algorithm):
-;;
-;;   (defadvice undo-tree-make-history-save-file-name
-;;     (after undo-tree activate)
-;;     (setq ad-return-value (concat ad-return-value ".gz")))
-;;
-;;
-;;
-;;
-;; Undo Systems
-;; ============
-;;
-;; To understand the different undo systems, it's easiest to consider an
-;; example. Imagine you make a few edits in a buffer. As you edit, you
-;; accumulate a history of changes, which we might visualize as a string of
-;; past buffer states, growing downwards:
-;;
-;;                                o  (initial buffer state)
-;;                                |
-;;                                |
-;;                                o  (first edit)
-;;                                |
-;;                                |
-;;                                o  (second edit)
-;;                                |
-;;                                |
-;;                                x  (current buffer state)
-;;
-;;
-;; Now imagine that you undo the last two changes. We can visualize this as
-;; rewinding the current state back two steps:
-;;
-;;                                o  (initial buffer state)
-;;                                |
-;;                                |
-;;                                x  (current buffer state)
-;;                                |
-;;                                |
-;;                                o
-;;                                |
-;;                                |
-;;                                o
-;;
-;;
-;; However, this isn't a good representation of what Emacs' undo system
-;; does. Instead, it treats the undos as *new* changes to the buffer, and adds
-;; them to the history:
-;;
-;;                                o  (initial buffer state)
-;;                                |
-;;                                |
-;;                                o  (first edit)
-;;                                |
-;;                                |
-;;                                o  (second edit)
-;;                                |
-;;                                |
-;;                                x  (buffer state before undo)
-;;                                |
-;;                                |
-;;                                o  (first undo)
-;;                                |
-;;                                |
-;;                                x  (second undo)
-;;
-;;
-;; Actually, since the buffer returns to a previous state after an undo,
-;; perhaps a better way to visualize it is to imagine the string of changes
-;; turning back on itself:
-;;
-;;        (initial buffer state)  o
-;;                                |
-;;                                |
-;;                  (first edit)  o  x  (second undo)
-;;                                |  |
-;;                                |  |
-;;                 (second edit)  o  o  (first undo)
-;;                                | /
-;;                                |/
-;;                                o  (buffer state before undo)
-;;
-;; Treating undos as new changes might seem a strange thing to do. But the
-;; advantage becomes clear as soon as we imagine what happens when you edit
-;; the buffer again. Since you've undone a couple of changes, new edits will
-;; branch off from the buffer state that you've rewound to. Conceptually, it
-;; looks like this:
-;;
-;;                                o  (initial buffer state)
-;;                                |
-;;                                |
-;;                                o
-;;                                |\
-;;                                | \
-;;                                o  x  (new edit)
-;;                                |
-;;                                |
-;;                                o
-;;
-;; The standard undo/redo system only lets you go backwards and forwards
-;; linearly. So as soon as you make that new edit, it discards the old
-;; branch. Emacs' undo just keeps adding changes to the end of the string. So
-;; the undo history in the two systems now looks like this:
-;;
-;;            Undo/Redo:                      Emacs' undo
-;;
-;;               o                                o
-;;               |                                |
-;;               |                                |
-;;               o                                o  o
-;;               .\                               |  |\
-;;               . \                              |  | \
-;;               .  x  (new edit)                 o  o  |
-;;   (discarded  .                                | /   |
-;;     branch)   .                                |/    |
-;;               .                                o     |
-;;                                                      |
-;;                                                      |
-;;                                                      x  (new edit)
-;;
-;; Now, what if you change your mind about those undos, and decide you did
-;; like those other changes you'd made after all? With the standard undo/redo
-;; system, you're lost. There's no way to recover them, because that branch
-;; was discarded when you made the new edit.
-;;
-;; However, in Emacs' undo system, those old buffer states are still there in
-;; the undo history. You just have to rewind back through the new edit, and
-;; back through the changes made by the undos, until you reach them. Of
-;; course, since Emacs treats undos (even undos of undos!) as new changes,
-;; you're really weaving backwards and forwards through the history, all the
-;; time adding new changes to the end of the string as you go:
-;;
-;;                       o
-;;                       |
-;;                       |
-;;                       o  o     o  (undo new edit)
-;;                       |  |\    |\
-;;                       |  | \   | \
-;;                       o  o  |  |  o  (undo the undo)
-;;                       | /   |  |  |
-;;                       |/    |  |  |
-;;      (trying to get   o     |  |  x  (undo the undo)
-;;       to this state)        | /
-;;                             |/
-;;                             o
-;;
-;; So far, this is still reasonably intuitive to use. It doesn't behave so
-;; differently to standard undo/redo, except that by going back far enough you
-;; can access changes that would be lost in standard undo/redo.
-;;
-;; However, imagine that after undoing as just described, you decide you
-;; actually want to rewind right back to the initial state. If you're lucky,
-;; and haven't invoked any command since the last undo, you can just keep on
-;; undoing until you get back to the start:
-;;
-;;      (trying to get   o              x  (got there!)
-;;       to this state)  |              |
-;;                       |              |
-;;                       o  o     o     o  (keep undoing)
-;;                       |  |\    |\    |
-;;                       |  | \   | \   |
-;;                       o  o  |  |  o  o  (keep undoing)
-;;                       | /   |  |  | /
-;;                       |/    |  |  |/
-;;      (already undid   o     |  |  o  (got this far)
-;;       to this state)        | /
-;;                             |/
-;;                             o
-;;
-;; But if you're unlucky, and you happen to have moved the point (say) after
-;; getting to the state labelled "got this far", then you've "broken the undo
-;; chain". Hold on to something solid, because things are about to get
-;; hairy. If you try to undo now, Emacs thinks you're trying to undo the
-;; undos! So to get back to the initial state you now have to rewind through
-;; *all* the changes, including the undos you just did:
-;;
-;;      (trying to get   o                          x  (finally got there!)
-;;       to this state)  |                          |
-;;                       |                          |
-;;                       o  o     o     o     o     o
-;;                       |  |\    |\    |\    |\    |
-;;                       |  | \   | \   | \   | \   |
-;;                       o  o  |  |  o  o  o  |  o  o
-;;                       | /   |  |  | /   |  |  | /
-;;                       |/    |  |  |/    |  |  |/
-;;      (already undid   o     |  |  o<.   |  |  o
-;;       to this state)        | /     :   | /
-;;                             |/      :   |/
-;;                             o       :   o
-;;                                     :
-;;                             (got this far, but
-;;                              broke the undo chain)
-;;
-;; Confused?
-;;
-;; In practice you can just hold down the undo key until you reach the buffer
-;; state that you want. But whatever you do, don't move around in the buffer
-;; to *check* that you've got back to where you want! Because you'll break the
-;; undo chain, and then you'll have to traverse the entire string of undos
-;; again, just to get back to the point at which you broke the
-;; chain. Undo-in-region and commands such as `undo-only' help to make using
-;; Emacs' undo a little easier, but nonetheless it remains confusing for many
-;; people.
-;;
-;;
-;; So what does `undo-tree-mode' do? Remember the diagram we drew to represent
-;; the history we've been discussing (make a few edits, undo a couple of them,
-;; and edit again)? The diagram that conceptually represented our undo
-;; history, before we started discussing specific undo systems? It looked like
-;; this:
-;;
-;;                                o  (initial buffer state)
-;;                                |
-;;                                |
-;;                                o
-;;                                |\
-;;                                | \
-;;                                o  x  (current state)
-;;                                |
-;;                                |
-;;                                o
-;;
-;; Well, that's *exactly* what the undo history looks like to
-;; `undo-tree-mode'.  It doesn't discard the old branch (as standard undo/redo
-;; does), nor does it treat undos as new changes to be added to the end of a
-;; linear string of buffer states (as Emacs' undo does). It just keeps track
-;; of the tree of branching changes that make up the entire undo history.
-;;
-;; If you undo from this point, you'll rewind back up the tree to the previous
-;; state:
-;;
-;;                                o
-;;                                |
-;;                                |
-;;                                x  (undo)
-;;                                |\
-;;                                | \
-;;                                o  o
-;;                                |
-;;                                |
-;;                                o
-;;
-;; If you were to undo again, you'd rewind back to the initial state. If on
-;; the other hand you redo the change, you'll end up back at the bottom of the
-;; most recent branch:
-;;
-;;                                o  (undo takes you here)
-;;                                |
-;;                                |
-;;                                o  (start here)
-;;                                |\
-;;                                | \
-;;                                o  x  (redo takes you here)
-;;                                |
-;;                                |
-;;                                o
-;;
-;; So far, this is just like the standard undo/redo system. But what if you
-;; want to return to a buffer state located on a previous branch of the
-;; history? Since `undo-tree-mode' keeps the entire history, you simply need
-;; to tell it to switch to a different branch, and then redo the changes you
-;; want:
-;;
-;;                                o
-;;                                |
-;;                                |
-;;                                o  (start here, but switch
-;;                                |\  to the other branch)
-;;                                | \
-;;                        (redo)  o  o
-;;                                |
-;;                                |
-;;                        (redo)  x
-;;
-;; Now you're on the other branch, if you undo and redo changes you'll stay on
-;; that branch, moving up and down through the buffer states located on that
-;; branch. Until you decide to switch branches again, of course.
-;;
-;; Real undo trees might have multiple branches and sub-branches:
-;;
-;;                                o
-;;                            ____|______
-;;                           /           \
-;;                          o             o
-;;                      ____|__         __|
-;;                     /    |  \       /   \
-;;                    o     o   o     o     x
-;;                    |               |
-;;                   / \             / \
-;;                  o   o           o   o
-;;
-;; Trying to imagine what Emacs' undo would do as you move about such a tree
-;; will likely frazzle your brain circuits! But in `undo-tree-mode', you're
-;; just moving around this undo history tree. Most of the time, you'll
-;; probably only need to stay on the most recent branch, in which case it
-;; behaves like standard undo/redo, and is just as simple to understand. But
-;; if you ever need to recover a buffer state on a different branch, the
-;; possibility of switching between branches and accessing the full undo
-;; history is still there.
-;;
-;;
-;;
-;; The Undo-Tree Visualizer
-;; ========================
-;;
-;; Actually, it gets better. You don't have to imagine all these tree
-;; diagrams, because `undo-tree-mode' includes an undo-tree visualizer which
-;; draws them for you! In fact, it draws even better diagrams: it highlights
-;; the node representing the current buffer state, it highlights the current
-;; branch, and you can toggle the display of time-stamps (by hitting "t") and
-;; a diff of the undo changes (by hitting "d"). (There's one other tiny
-;; difference: the visualizer puts the most recent branch on the left rather
-;; than the right.)
-;;
-;; Bring up the undo tree visualizer whenever you want by hitting "C-x u".
-;;
-;; In the visualizer, the usual keys for moving up and down a buffer instead
-;; move up and down the undo history tree (e.g. the up and down arrow keys, or
-;; "C-n" and "C-p"). The state of the "parent" buffer (the buffer whose undo
-;; history you are visualizing) is updated as you move around the undo tree in
-;; the visualizer. If you reach a branch point in the visualizer, the usual
-;; keys for moving forward and backward in a buffer instead switch branch
-;; (e.g. the left and right arrow keys, or "C-f" and "C-b").
-;;
-;; Clicking with the mouse on any node in the visualizer will take you
-;; directly to that node, resetting the state of the parent buffer to the
-;; state represented by that node.
-;;
-;; You can also select nodes directly using the keyboard, by hitting "s" to
-;; toggle selection mode. The usual motion keys now allow you to move around
-;; the tree without changing the parent buffer. Hitting <enter> will reset the
-;; state of the parent buffer to the state represented by the currently
-;; selected node.
-;;
-;; It can be useful to see how long ago the parent buffer was in the state
-;; represented by a particular node in the visualizer. Hitting "t" in the
-;; visualizer toggles the display of time-stamps for all the nodes. (Note
-;; that, because of the way `undo-tree-mode' works, these time-stamps may be
-;; somewhat later than the true times, especially if it's been a long time
-;; since you last undid any changes.)
-;;
-;; To get some idea of what changes are represented by a given node in the
-;; tree, it can be useful to see a diff of the changes. Hit "d" in the
-;; visualizer to toggle a diff display. This normally displays a diff between
-;; the current state and the previous one, i.e. it shows you the changes that
-;; will be applied if you undo (move up the tree). However, the diff display
-;; really comes into its own in the visualizer's selection mode (see above),
-;; where it instead shows a diff between the current state and the currently
-;; selected state, i.e. it shows you the changes that will be applied if you
-;; reset to the selected state.
-;;
-;; (Note that the diff is generated by the Emacs `diff' command, and is
-;; displayed using `diff-mode'. See the corresponding customization groups if
-;; you want to customize the diff display.)
-;;
-;; Finally, hitting "q" will quit the visualizer, leaving the parent buffer in
-;; whatever state you ended at. Hitting "C-q" will abort the visualizer,
-;; returning the parent buffer to whatever state it was originally in when the
-;; visualizer was .
-;;
-;;
-;;
-;; Undo-in-Region
-;; ==============
-;;
-;; Emacs allows a very useful and powerful method of undoing only selected
-;; changes: when a region is active, only changes that affect the text within
-;; that region will be undone. With the standard Emacs undo system, changes
-;; produced by undoing-in-region naturally get added onto the end of the
-;; linear undo history:
-;;
-;;                       o
-;;                       |
-;;                       |  x  (second undo-in-region)
-;;                       o  |
-;;                       |  |
-;;                       |  o  (first undo-in-region)
-;;                       o  |
-;;                       | /
-;;                       |/
-;;                       o
-;;
-;; You can of course redo these undos-in-region as usual, by undoing the
-;; undos:
-;;
-;;                       o
-;;                       |
-;;                       |  o_
-;;                       o  | \
-;;                       |  |  |
-;;                       |  o  o  (undo the undo-in-region)
-;;                       o  |  |
-;;                       | /   |
-;;                       |/    |
-;;                       o     x  (undo the undo-in-region)
-;;
-;;
-;; In `undo-tree-mode', undo-in-region works similarly: when there's an active
-;; region, undoing only undoes changes that affect that region. However, the
-;; way these undos-in-region are recorded in the undo history is quite
-;; different. In `undo-tree-mode', undo-in-region creates a new branch in the
-;; undo history. The new branch consists of an undo step that undoes some of
-;; the changes that affect the current region, and another step that undoes
-;; the remaining changes needed to rejoin the previous undo history.
-;;
-;;      Previous undo history                Undo-in-region
-;;
-;;               o                                o
-;;               |                                |
-;;               |                                |
-;;               o                                o
-;;               |                                |\
-;;               |                                | \
-;;               o                                o  x  (undo-in-region)
-;;               |                                |  |
-;;               |                                |  |
-;;               x                                o  o
-;;
-;; As long as you don't change the active region after undoing-in-region,
-;; continuing to undo-in-region extends the new branch, pulling more changes
-;; that affect the current region into an undo step immediately above your
-;; current location in the undo tree, and pushing the point at which the new
-;; branch is attached further up the tree:
-;;
-;;      First undo-in-region                 Second undo-in-region
-;;
-;;               o                                o
-;;               |                                |\
-;;               |                                | \
-;;               o                                o  x  (undo-in-region)
-;;               |\                               |  |
-;;               | \                              |  |
-;;               o  x                             o  o
-;;               |  |                             |  |
-;;               |  |                             |  |
-;;               o  o                             o  o
-;;
-;; Redoing takes you back down the undo tree, as usual (as long as you haven't
-;; changed the active region after undoing-in-region, it doesn't matter if it
-;; is still active):
-;;
-;;                       o
-;;			 |\
-;;			 | \
-;;			 o  o
-;;			 |  |
-;;			 |  |
-;;			 o  o  (redo)
-;;			 |  |
-;;			 |  |
-;;			 o  x  (redo)
-;;
-;;
-;; What about redo-in-region? Obviously, this only makes sense if you have
-;; already undone some changes, so that there are some changes to redo!
-;; Redoing-in-region splits off a new branch of the undo history below your
-;; current location in the undo tree. This time, the new branch consists of a
-;; redo step that redoes some of the redo changes that affect the current
-;; region, followed by all the remaining redo changes.
-;;
-;;      Previous undo history                Redo-in-region
-;;
-;;               o                                o
-;;               |                                |
-;;               |                                |
-;;               x                                o
-;;               |                                |\
-;;               |                                | \
-;;               o                                o  x  (redo-in-region)
-;;               |                                |  |
-;;               |                                |  |
-;;               o                                o  o
-;;
-;; As long as you don't change the active region after redoing-in-region,
-;; continuing to redo-in-region extends the new branch, pulling more redo
-;; changes into a redo step immediately below your current location in the
-;; undo tree.
-;;
-;;      First redo-in-region                 Second redo-in-region
-;;
-;;          o                                     o
-;;          |                                     |
-;;          |                                     |
-;;          o                                     o
-;;          |\                                    |\
-;;          | \                                   | \
-;;          o  x  (redo-in-region)                o  o
-;;          |  |                                  |  |
-;;          |  |                                  |  |
-;;          o  o                                  o  x  (redo-in-region)
-;;                                                   |
-;;                                                   |
-;;                                                   o
-;;
-;; Note that undo-in-region and redo-in-region only ever add new changes to
-;; the undo tree, they *never* modify existing undo history. So you can always
-;; return to previous buffer states by switching to a previous branch of the
-;; tree.
-
-
-
-;;; Code:
-
-(eval-when-compile (require 'cl))
-(require 'diff)
-
-
-
-;;; =====================================================================
-;;;              Compatibility hacks for older Emacsen
-
-;; `characterp' isn't defined in Emacs versions < 23
-(unless (fboundp 'characterp)
-  (defalias 'characterp 'char-valid-p))
-
-;; `region-active-p' isn't defined in Emacs versions < 23
-(unless (fboundp 'region-active-p)
-  (defun region-active-p () (and transient-mark-mode mark-active)))
-
-
-;; `registerv' defstruct isn't defined in Emacs versions < 24
-(unless (fboundp 'registerv-make)
-  (defmacro registerv-make (data &rest _dummy) data))
-
-(unless (fboundp 'registerv-data)
-  (defmacro registerv-data (data) data))
-
-
-;; `diff-no-select' and `diff-file-local-copy' aren't defined in Emacs
-;; versions < 24 (copied and adapted from Emacs 24)
-(unless (fboundp 'diff-no-select)
-  (defun diff-no-select (old new &optional switches no-async buf)
-    ;; Noninteractive helper for creating and reverting diff buffers
-    (unless (bufferp new) (setq new (expand-file-name new)))
-    (unless (bufferp old) (setq old (expand-file-name old)))
-    (or switches (setq switches diff-switches)) ; If not specified, use default.
-    (unless (listp switches) (setq switches (list switches)))
-    (or buf (setq buf (get-buffer-create "*Diff*")))
-    (let* ((old-alt (diff-file-local-copy old))
-	   (new-alt (diff-file-local-copy new))
-	   (command
-	    (mapconcat 'identity
-		       `(,diff-command
-			 ;; Use explicitly specified switches
-			 ,@switches
-			 ,@(mapcar #'shell-quote-argument
-				   (nconc
-				    (when (or old-alt new-alt)
-				      (list "-L" (if (stringp old)
-						     old (prin1-to-string old))
-					    "-L" (if (stringp new)
-						     new (prin1-to-string new))))
-				    (list (or old-alt old)
-					  (or new-alt new)))))
-		       " "))
-	   (thisdir default-directory))
-      (with-current-buffer buf
-	(setq buffer-read-only t)
-	(buffer-disable-undo (current-buffer))
-	(let ((inhibit-read-only t))
-	  (erase-buffer))
-	(buffer-enable-undo (current-buffer))
-	(diff-mode)
-	(set (make-local-variable 'revert-buffer-function)
-	     (lambda (_ignore-auto _noconfirm)
-	       (diff-no-select old new switches no-async (current-buffer))))
-	(setq default-directory thisdir)
-	(let ((inhibit-read-only t))
-	  (insert command "\n"))
-	(if (and (not no-async) (fboundp 'start-process))
-	    (let ((proc (start-process "Diff" buf shell-file-name
-				       shell-command-switch command)))
-	      (set-process-filter proc 'diff-process-filter)
-	      (set-process-sentinel
-	       proc (lambda (proc _msg)
-		      (with-current-buffer (process-buffer proc)
-			(diff-sentinel (process-exit-status proc))
-			(if old-alt (delete-file old-alt))
-			(if new-alt (delete-file new-alt))))))
-	  ;; Async processes aren't available.
-	  (let ((inhibit-read-only t))
-	    (diff-sentinel
-	     (call-process shell-file-name nil buf nil
-			   shell-command-switch command))
-	    (if old-alt (delete-file old-alt))
-	    (if new-alt (delete-file new-alt)))))
-      buf)))
-
-(unless (fboundp 'diff-file-local-copy)
-  (defun diff-file-local-copy (file-or-buf)
-    (if (bufferp file-or-buf)
-	(with-current-buffer file-or-buf
-	  (let ((tempfile (make-temp-file "buffer-content-")))
-	    (write-region nil nil tempfile nil 'nomessage)
-	    tempfile))
-      (file-local-copy file-or-buf))))
-
-
-;; `user-error' isn't defined in Emacs < 24.3
-(unless (fboundp 'user-error)
-  (defalias 'user-error 'error)
-  ;; prevent debugger being called on user errors
-  (add-to-list 'debug-ignored-errors "^No further undo information")
-  (add-to-list 'debug-ignored-errors "^No further redo information")
-  (add-to-list 'debug-ignored-errors "^No further redo information for region"))
-
-
-
-
-
-;;; =====================================================================
-;;;              Global variables and customization options
-
-(defvar buffer-undo-tree nil
-  "Tree of undo entries in current buffer.")
-(put 'buffer-undo-tree 'permanent-local t)
-(make-variable-buffer-local 'buffer-undo-tree)
-
-
-(defgroup undo-tree nil
-  "Tree undo/redo."
-  :group 'undo)
-
-(defcustom undo-tree-mode-lighter " Undo-Tree"
-  "Lighter displayed in mode line
-when `undo-tree-mode' is enabled."
-  :group 'undo-tree
-  :type 'string)
-
-
-(defcustom undo-tree-incompatible-major-modes '(term-mode)
-  "List of major-modes in which `undo-tree-mode' should not be enabled.
-\(See `turn-on-undo-tree-mode'.\)"
-  :group 'undo-tree
-  :type '(repeat symbol))
-
-
-(defcustom undo-tree-enable-undo-in-region t
-  "When non-nil, enable undo-in-region.
-
-When undo-in-region is enabled, undoing or redoing when the
-region is active (in `transient-mark-mode') or with a prefix
-argument (not in `transient-mark-mode') only undoes changes
-within the current region."
-  :group 'undo-tree
-  :type 'boolean)
-
-
-(defcustom undo-tree-auto-save-history nil
-  "When non-nil, `undo-tree-mode' will save undo history to file
-when a buffer is saved to file.
-
-It will automatically load undo history when a buffer is loaded
-from file, if an undo save file exists.
-
-By default, undo-tree history is saved to a file called
-\".<buffer-file-name>.~undo-tree~\" in the same directory as the
-file itself. To save under a different directory, customize
-`undo-tree-history-directory-alist' (see the documentation for
-that variable for details).
-
-WARNING! `undo-tree-auto-save-history' will not work properly in
-Emacs versions prior to 24.3, so it cannot be enabled via
-the customization interface in versions earlier than that one. To
-ignore this warning and enable it regardless, set
-`undo-tree-auto-save-history' to a non-nil value outside of
-customize."
-  :group 'undo-tree
-  :type (if (version-list-< (version-to-list emacs-version) '(24 3))
-	    '(choice (const :tag "<disabled>" nil))
-	  'boolean))
-
-
-(defcustom undo-tree-history-directory-alist nil
-  "Alist of filename patterns and undo history directory names.
-Each element looks like (REGEXP . DIRECTORY).  Undo history for
-files with names matching REGEXP will be saved in DIRECTORY.
-DIRECTORY may be relative or absolute.  If it is absolute, so
-that all matching files are backed up into the same directory,
-the file names in this directory will be the full name of the
-file backed up with all directory separators changed to `!' to
-prevent clashes.  This will not work correctly if your filesystem
-truncates the resulting name.
-
-For the common case of all backups going into one directory, the
-alist should contain a single element pairing \".\" with the
-appropriate directory name.
-
-If this variable is nil, or it fails to match a filename, the
-backup is made in the original file's directory.
-
-On MS-DOS filesystems without long names this variable is always
-ignored."
-  :group 'undo-tree
-  :type '(repeat (cons (regexp :tag "Regexp matching filename")
-		       (directory :tag "Undo history directory name"))))
-
-
-
-(defcustom undo-tree-visualizer-relative-timestamps t
-  "When non-nil, display times relative to current time
-when displaying time stamps in visualizer.
-
-Otherwise, display absolute times."
-  :group 'undo-tree
-  :type 'boolean)
-
-
-(defcustom undo-tree-visualizer-timestamps nil
-  "When non-nil, display time-stamps by default
-in undo-tree visualizer.
-
-\\<undo-tree-visualizer-mode-map>You can always toggle time-stamps on and off \
-using \\[undo-tree-visualizer-toggle-timestamps], regardless of the
-setting of this variable."
-  :group 'undo-tree
-  :type 'boolean)
-
-
-(defcustom undo-tree-visualizer-diff nil
-  "When non-nil, display diff by default in undo-tree visualizer.
-
-\\<undo-tree-visualizer-mode-map>You can always toggle the diff display \
-using \\[undo-tree-visualizer-toggle-diff], regardless of the
-setting of this variable."
-  :group 'undo-tree
-  :type 'boolean)
-
-
-(defcustom undo-tree-visualizer-lazy-drawing 100
-  "When non-nil, use lazy undo-tree drawing in visualizer.
-
-Setting this to a number causes the visualizer to switch to lazy
-drawing when the number of nodes in the tree is larger than this
-value.
-
-Lazy drawing means that only the visible portion of the tree will
-be drawn initially, and the tree will be extended later as
-needed. For the most part, the only visible effect of this is to
-significantly speed up displaying the visualizer for very large
-trees.
-
-There is one potential negative effect of lazy drawing. Other
-branches of the tree will only be drawn once the node from which
-they branch off becomes visible. So it can happen that certain
-portions of the tree that would be shown with lazy drawing
-disabled, will not be drawn immediately when it is
-enabled. However, this effect is quite rare in practice."
-  :group 'undo-tree
-  :type '(choice (const :tag "never" nil)
-		 (const :tag "always" t)
-		 (integer :tag "> size")))
-
-
-(defface undo-tree-visualizer-default-face
-  '((((class color)) :foreground "gray"))
-  "Face used to draw undo-tree in visualizer."
-  :group 'undo-tree)
-
-(defface undo-tree-visualizer-current-face
-  '((((class color)) :foreground "red"))
-  "Face used to highlight current undo-tree node in visualizer."
-  :group 'undo-tree)
-
-(defface undo-tree-visualizer-active-branch-face
-  '((((class color) (background dark))
-     (:foreground "white" :weight bold))
-    (((class color) (background light))
-     (:foreground "black" :weight bold)))
-  "Face used to highlight active undo-tree branch in visualizer."
-  :group 'undo-tree)
-
-(defface undo-tree-visualizer-register-face
-  '((((class color)) :foreground "yellow"))
-  "Face used to highlight undo-tree nodes saved to a register
-in visualizer."
-  :group 'undo-tree)
-
-(defface undo-tree-visualizer-unmodified-face
-  '((((class color)) :foreground "cyan"))
-  "Face used to highlight nodes corresponding to unmodified buffers
-in visualizer."
-  :group 'undo-tree)
-
-
-(defvar undo-tree-visualizer-parent-buffer nil
-  "Parent buffer in visualizer.")
-(put 'undo-tree-visualizer-parent-buffer 'permanent-local t)
-(make-variable-buffer-local 'undo-tree-visualizer-parent-buffer)
-
-;; stores modification time of parent buffer's file, if any
-(defvar undo-tree-visualizer-parent-mtime nil)
-(put 'undo-tree-visualizer-parent-mtime 'permanent-local t)
-(make-variable-buffer-local 'undo-tree-visualizer-parent-mtime)
-
-;; stores current horizontal spacing needed for drawing undo-tree
-(defvar undo-tree-visualizer-spacing nil)
-(put 'undo-tree-visualizer-spacing 'permanent-local t)
-(make-variable-buffer-local 'undo-tree-visualizer-spacing)
-
-;; calculate horizontal spacing required for drawing tree with current
-;; settings
-(defsubst undo-tree-visualizer-calculate-spacing ()
-  (if undo-tree-visualizer-timestamps
-      (if undo-tree-visualizer-relative-timestamps 9 13)
-    3))
-
-;; holds node that was current when visualizer was invoked
-(defvar undo-tree-visualizer-initial-node nil)
-(put 'undo-tree-visualizer-initial-node 'permanent-local t)
-(make-variable-buffer-local 'undo-tree-visualizer-initial-node)
-
-;; holds currently selected node in visualizer selection mode
-(defvar undo-tree-visualizer-selected-node nil)
-(put 'undo-tree-visualizer-selected-node 'permanent-local t)
-(make-variable-buffer-local 'undo-tree-visualizer-selected)
-
-;; used to store nodes at edge of currently drawn portion of tree
-(defvar undo-tree-visualizer-needs-extending-down nil)
-(put 'undo-tree-visualizer-needs-extending-down 'permanent-local t)
-(make-variable-buffer-local 'undo-tree-visualizer-needs-extending-down)
-(defvar undo-tree-visualizer-needs-extending-up nil)
-(put 'undo-tree-visualizer-needs-extending-up 'permanent-local t)
-(make-variable-buffer-local 'undo-tree-visualizer-needs-extending-up)
-
-;; dynamically bound to t when undoing from visualizer, to inhibit
-;; `undo-tree-kill-visualizer' hook function in parent buffer
-(defvar undo-tree-inhibit-kill-visualizer nil)
-
-;; can be let-bound to a face name, used in drawing functions
-(defvar undo-tree-insert-face nil)
-
-;; visualizer buffer names
-(defconst undo-tree-visualizer-buffer-name " *undo-tree*")
-(defconst undo-tree-diff-buffer-name "*undo-tree Diff*")
-
-;; install history-auto-save hooks
-(add-hook 'write-file-functions 'undo-tree-save-history-hook)
-(add-hook 'find-file-hook 'undo-tree-load-history-hook)
-
-
-
-
-;;; =================================================================
-;;;                          Default keymaps
-
-(defvar undo-tree-map nil
-  "Keymap used in undo-tree-mode.")
-
-(unless undo-tree-map
-  (let ((map (make-sparse-keymap)))
-    ;; remap `undo' and `undo-only' to `undo-tree-undo'
-    (define-key map [remap undo] 'undo-tree-undo)
-    (define-key map [remap undo-only] 'undo-tree-undo)
-    ;; bind standard undo bindings (since these match redo counterparts)
-    (define-key map (kbd "C-/") 'undo-tree-undo)
-    (define-key map "\C-_" 'undo-tree-undo)
-    ;; redo doesn't exist normally, so define our own keybindings
-    (define-key map (kbd "C-?") 'undo-tree-redo)
-    (define-key map (kbd "M-_") 'undo-tree-redo)
-    ;; just in case something has defined `redo'...
-    (define-key map [remap redo] 'undo-tree-redo)
-    ;; we use "C-x u" for the undo-tree visualizer
-    (define-key map (kbd "\C-x u") 'undo-tree-visualize)
-    ;; bind register commands
-    (define-key map (kbd "C-x r u") 'undo-tree-save-state-to-register)
-    (define-key map (kbd "C-x r U") 'undo-tree-restore-state-from-register)
-    ;; set keymap
-    (setq undo-tree-map map)))
-
-
-(defvar undo-tree-visualizer-mode-map nil
-  "Keymap used in undo-tree visualizer.")
-
-(unless undo-tree-visualizer-mode-map
-  (let ((map (make-sparse-keymap)))
-    ;; vertical motion keys undo/redo
-    (define-key map [remap previous-line] 'undo-tree-visualize-undo)
-    (define-key map [remap next-line] 'undo-tree-visualize-redo)
-    (define-key map [up] 'undo-tree-visualize-undo)
-    (define-key map "p" 'undo-tree-visualize-undo)
-    (define-key map "\C-p" 'undo-tree-visualize-undo)
-    (define-key map [down] 'undo-tree-visualize-redo)
-    (define-key map "n" 'undo-tree-visualize-redo)
-    (define-key map "\C-n" 'undo-tree-visualize-redo)
-    ;; horizontal motion keys switch branch
-    (define-key map [remap forward-char]
-      'undo-tree-visualize-switch-branch-right)
-    (define-key map [remap backward-char]
-      'undo-tree-visualize-switch-branch-left)
-    (define-key map [right] 'undo-tree-visualize-switch-branch-right)
-    (define-key map "f" 'undo-tree-visualize-switch-branch-right)
-    (define-key map "\C-f" 'undo-tree-visualize-switch-branch-right)
-    (define-key map [left] 'undo-tree-visualize-switch-branch-left)
-    (define-key map "b" 'undo-tree-visualize-switch-branch-left)
-    (define-key map "\C-b" 'undo-tree-visualize-switch-branch-left)
-    ;; paragraph motion keys undo/redo to significant points in tree
-    (define-key map [remap backward-paragraph] 'undo-tree-visualize-undo-to-x)
-    (define-key map [remap forward-paragraph] 'undo-tree-visualize-redo-to-x)
-    (define-key map "\M-{" 'undo-tree-visualize-undo-to-x)
-    (define-key map "\M-}" 'undo-tree-visualize-redo-to-x)
-    (define-key map [C-up] 'undo-tree-visualize-undo-to-x)
-    (define-key map [C-down] 'undo-tree-visualize-redo-to-x)
-    ;; mouse sets buffer state to node at click
-    (define-key map [mouse-1] 'undo-tree-visualizer-mouse-set)
-    ;; toggle timestamps
-    (define-key map "t" 'undo-tree-visualizer-toggle-timestamps)
-    ;; toggle diff
-    (define-key map "d" 'undo-tree-visualizer-toggle-diff)
-    ;; toggle selection mode
-    (define-key map "s" 'undo-tree-visualizer-selection-mode)
-    ;; horizontal scrolling may be needed if the tree is very wide
-    (define-key map "," 'undo-tree-visualizer-scroll-left)
-    (define-key map "." 'undo-tree-visualizer-scroll-right)
-    (define-key map "<" 'undo-tree-visualizer-scroll-left)
-    (define-key map ">" 'undo-tree-visualizer-scroll-right)
-    ;; vertical scrolling may be needed if the tree is very tall
-    (define-key map [next] 'undo-tree-visualizer-scroll-up)
-    (define-key map [prior] 'undo-tree-visualizer-scroll-down)
-    ;; quit/abort visualizer
-    (define-key map "q" 'undo-tree-visualizer-quit)
-    (define-key map "\C-q" 'undo-tree-visualizer-abort)
-    ;; set keymap
-    (setq undo-tree-visualizer-mode-map map)))
-
-
-(defvar undo-tree-visualizer-selection-mode-map nil
-  "Keymap used in undo-tree visualizer selection mode.")
-
-(unless undo-tree-visualizer-selection-mode-map
-  (let ((map (make-sparse-keymap)))
-    ;; vertical motion keys move up and down tree
-    (define-key map [remap previous-line]
-      'undo-tree-visualizer-select-previous)
-    (define-key map [remap next-line]
-      'undo-tree-visualizer-select-next)
-    (define-key map [up] 'undo-tree-visualizer-select-previous)
-    (define-key map "p" 'undo-tree-visualizer-select-previous)
-    (define-key map "\C-p" 'undo-tree-visualizer-select-previous)
-    (define-key map [down] 'undo-tree-visualizer-select-next)
-    (define-key map "n" 'undo-tree-visualizer-select-next)
-    (define-key map "\C-n" 'undo-tree-visualizer-select-next)
-    ;; vertical scroll keys move up and down quickly
-    (define-key map [next]
-      (lambda () (interactive) (undo-tree-visualizer-select-next 10)))
-    (define-key map [prior]
-      (lambda () (interactive) (undo-tree-visualizer-select-previous 10)))
-    ;; horizontal motion keys move to left and right siblings
-    (define-key map [remap forward-char] 'undo-tree-visualizer-select-right)
-    (define-key map [remap backward-char] 'undo-tree-visualizer-select-left)
-    (define-key map [right] 'undo-tree-visualizer-select-right)
-    (define-key map "f" 'undo-tree-visualizer-select-right)
-    (define-key map "\C-f" 'undo-tree-visualizer-select-right)
-    (define-key map [left] 'undo-tree-visualizer-select-left)
-    (define-key map "b" 'undo-tree-visualizer-select-left)
-    (define-key map "\C-b" 'undo-tree-visualizer-select-left)
-    ;; horizontal scroll keys move left or right quickly
-    (define-key map ","
-      (lambda () (interactive) (undo-tree-visualizer-select-left 10)))
-    (define-key map "."
-      (lambda () (interactive) (undo-tree-visualizer-select-right 10)))
-    (define-key map "<"
-      (lambda () (interactive) (undo-tree-visualizer-select-left 10)))
-    (define-key map ">"
-      (lambda () (interactive) (undo-tree-visualizer-select-right 10)))
-    ;; <enter> sets buffer state to node at point
-    (define-key map "\r" 'undo-tree-visualizer-set)
-    ;; mouse selects node at click
-    (define-key map [mouse-1] 'undo-tree-visualizer-mouse-select)
-    ;; toggle diff
-    (define-key map "d" 'undo-tree-visualizer-selection-toggle-diff)
-    ;; set keymap
-    (setq undo-tree-visualizer-selection-mode-map map)))
-
-
-(defvar undo-tree-old-undo-menu-item nil)
-
-(defun undo-tree-update-menu-bar ()
-  "Update `undo-tree-mode' Edit menu items."
-  (if undo-tree-mode
-      (progn
-	;; save old undo menu item, and install undo/redo menu items
-	(setq undo-tree-old-undo-menu-item
-	      (cdr (assq 'undo (lookup-key global-map [menu-bar edit]))))
-	(define-key (lookup-key global-map [menu-bar edit])
-	  [undo] '(menu-item "Undo" undo-tree-undo
-			     :enable (and undo-tree-mode
-					  (not buffer-read-only)
-					  (not (eq t buffer-undo-list))
-					  (undo-tree-node-previous
-					   (undo-tree-current buffer-undo-tree)))
-			     :help "Undo last operation"))
-	(define-key-after (lookup-key global-map [menu-bar edit])
-	  [redo] '(menu-item "Redo" undo-tree-redo
-			     :enable (and undo-tree-mode
-					  (not buffer-read-only)
-					  (not (eq t buffer-undo-list))
-					  (undo-tree-node-next
-					   (undo-tree-current buffer-undo-tree)))
-			     :help "Redo last operation")
-	  'undo))
-    ;; uninstall undo/redo menu items
-    (define-key (lookup-key global-map [menu-bar edit])
-      [undo] undo-tree-old-undo-menu-item)
-    (define-key (lookup-key global-map [menu-bar edit])
-      [redo] nil)))
-
-(add-hook 'menu-bar-update-hook 'undo-tree-update-menu-bar)
-
-
-
-
-
-;;; =====================================================================
-;;;                     Undo-tree data structure
-
-(defstruct
-  (undo-tree
-   :named
-   (:constructor nil)
-   (:constructor make-undo-tree
-                 (&aux
-                  (root (undo-tree-make-node nil nil))
-                  (current root)
-                  (size 0)
-		  (count 0)
-		  (object-pool (make-hash-table :test 'eq :weakness 'value))))
-   ;;(:copier nil)
-   )
-  root current size count object-pool)
-
-
-
-(defstruct
-  (undo-tree-node
-   (:type vector)   ; create unnamed struct
-   (:constructor nil)
-   (:constructor undo-tree-make-node
-                 (previous undo
-		  &optional redo
-                  &aux
-                  (timestamp (current-time))
-                  (branch 0)))
-   (:constructor undo-tree-make-node-backwards
-                 (next-node undo
-		  &optional redo
-                  &aux
-                  (next (list next-node))
-                  (timestamp (current-time))
-                  (branch 0)))
-   (:copier nil))
-  previous next undo redo timestamp branch meta-data)
-
-
-(defmacro undo-tree-node-p (n)
-  (let ((len (length (undo-tree-make-node nil nil))))
-    `(and (vectorp ,n) (= (length ,n) ,len))))
-
-
-
-(defstruct
-  (undo-tree-region-data
-   (:type vector)   ; create unnamed struct
-   (:constructor nil)
-   (:constructor undo-tree-make-region-data
-		 (&optional undo-beginning undo-end
-			     redo-beginning redo-end))
-   (:constructor undo-tree-make-undo-region-data
-		 (undo-beginning undo-end))
-   (:constructor undo-tree-make-redo-region-data
-		 (redo-beginning redo-end))
-   (:copier nil))
-  undo-beginning undo-end redo-beginning redo-end)
-
-
-(defmacro undo-tree-region-data-p (r)
-  (let ((len (length (undo-tree-make-region-data))))
-    `(and (vectorp ,r) (= (length ,r) ,len))))
-
-(defmacro undo-tree-node-clear-region-data (node)
-  `(setf (undo-tree-node-meta-data ,node)
-	 (delq nil
-	       (delq :region
-		     (plist-put (undo-tree-node-meta-data ,node)
-				:region nil)))))
-
-
-(defmacro undo-tree-node-undo-beginning (node)
-  `(let ((r (plist-get (undo-tree-node-meta-data ,node) :region)))
-     (when (undo-tree-region-data-p r)
-       (undo-tree-region-data-undo-beginning r))))
-
-(defmacro undo-tree-node-undo-end (node)
-  `(let ((r (plist-get (undo-tree-node-meta-data ,node) :region)))
-     (when (undo-tree-region-data-p r)
-       (undo-tree-region-data-undo-end r))))
-
-(defmacro undo-tree-node-redo-beginning (node)
-  `(let ((r (plist-get (undo-tree-node-meta-data ,node) :region)))
-     (when (undo-tree-region-data-p r)
-       (undo-tree-region-data-redo-beginning r))))
-
-(defmacro undo-tree-node-redo-end (node)
-  `(let ((r (plist-get (undo-tree-node-meta-data ,node) :region)))
-     (when (undo-tree-region-data-p r)
-       (undo-tree-region-data-redo-end r))))
-
-
-(defsetf undo-tree-node-undo-beginning (node) (val)
-  `(let ((r (plist-get (undo-tree-node-meta-data ,node) :region)))
-     (unless (undo-tree-region-data-p r)
-       (setf (undo-tree-node-meta-data ,node)
-	     (plist-put (undo-tree-node-meta-data ,node) :region
-			(setq r (undo-tree-make-region-data)))))
-     (setf (undo-tree-region-data-undo-beginning r) ,val)))
-
-(defsetf undo-tree-node-undo-end (node) (val)
-  `(let ((r (plist-get (undo-tree-node-meta-data ,node) :region)))
-     (unless (undo-tree-region-data-p r)
-       (setf (undo-tree-node-meta-data ,node)
-	     (plist-put (undo-tree-node-meta-data ,node) :region
-			(setq r (undo-tree-make-region-data)))))
-     (setf (undo-tree-region-data-undo-end r) ,val)))
-
-(defsetf undo-tree-node-redo-beginning (node) (val)
-  `(let ((r (plist-get (undo-tree-node-meta-data ,node) :region)))
-     (unless (undo-tree-region-data-p r)
-       (setf (undo-tree-node-meta-data ,node)
-	     (plist-put (undo-tree-node-meta-data ,node) :region
-			(setq r (undo-tree-make-region-data)))))
-     (setf (undo-tree-region-data-redo-beginning r) ,val)))
-
-(defsetf undo-tree-node-redo-end (node) (val)
-  `(let ((r (plist-get (undo-tree-node-meta-data ,node) :region)))
-     (unless (undo-tree-region-data-p r)
-       (setf (undo-tree-node-meta-data ,node)
-	     (plist-put (undo-tree-node-meta-data ,node) :region
-			(setq r (undo-tree-make-region-data)))))
-     (setf (undo-tree-region-data-redo-end r) ,val)))
-
-
-
-(defstruct
-  (undo-tree-visualizer-data
-   (:type vector)   ; create unnamed struct
-   (:constructor nil)
-   (:constructor undo-tree-make-visualizer-data
-		 (&optional lwidth cwidth rwidth marker))
-   (:copier nil))
-  lwidth cwidth rwidth marker)
-
-
-(defmacro undo-tree-visualizer-data-p (v)
-  (let ((len (length (undo-tree-make-visualizer-data))))
-    `(and (vectorp ,v) (= (length ,v) ,len))))
-
-(defun undo-tree-node-clear-visualizer-data (node)
-  (let ((plist (undo-tree-node-meta-data node)))
-    (if (eq (car plist) :visualizer)
-	(setf (undo-tree-node-meta-data node) (nthcdr 2 plist))
-      (while (and plist (not (eq (cadr plist) :visualizer)))
-	(setq plist (cdr plist)))
-      (if plist (setcdr plist (nthcdr 3 plist))))))
-
-(defmacro undo-tree-node-lwidth (node)
-  `(let ((v (plist-get (undo-tree-node-meta-data ,node) :visualizer)))
-     (when (undo-tree-visualizer-data-p v)
-       (undo-tree-visualizer-data-lwidth v))))
-
-(defmacro undo-tree-node-cwidth (node)
-  `(let ((v (plist-get (undo-tree-node-meta-data ,node) :visualizer)))
-     (when (undo-tree-visualizer-data-p v)
-       (undo-tree-visualizer-data-cwidth v))))
-
-(defmacro undo-tree-node-rwidth (node)
-  `(let ((v (plist-get (undo-tree-node-meta-data ,node) :visualizer)))
-     (when (undo-tree-visualizer-data-p v)
-       (undo-tree-visualizer-data-rwidth v))))
-
-(defmacro undo-tree-node-marker (node)
-  `(let ((v (plist-get (undo-tree-node-meta-data ,node) :visualizer)))
-     (when (undo-tree-visualizer-data-p v)
-       (undo-tree-visualizer-data-marker v))))
-
-
-(defsetf undo-tree-node-lwidth (node) (val)
-  `(let ((v (plist-get (undo-tree-node-meta-data ,node) :visualizer)))
-     (unless (undo-tree-visualizer-data-p v)
-       (setf (undo-tree-node-meta-data ,node)
-	     (plist-put (undo-tree-node-meta-data ,node) :visualizer
-			(setq v (undo-tree-make-visualizer-data)))))
-     (setf (undo-tree-visualizer-data-lwidth v) ,val)))
-
-(defsetf undo-tree-node-cwidth (node) (val)
-  `(let ((v (plist-get (undo-tree-node-meta-data ,node) :visualizer)))
-     (unless (undo-tree-visualizer-data-p v)
-       (setf (undo-tree-node-meta-data ,node)
-	     (plist-put (undo-tree-node-meta-data ,node) :visualizer
-			(setq v (undo-tree-make-visualizer-data)))))
-     (setf (undo-tree-visualizer-data-cwidth v) ,val)))
-
-(defsetf undo-tree-node-rwidth (node) (val)
-  `(let ((v (plist-get (undo-tree-node-meta-data ,node) :visualizer)))
-     (unless (undo-tree-visualizer-data-p v)
-       (setf (undo-tree-node-meta-data ,node)
-	     (plist-put (undo-tree-node-meta-data ,node) :visualizer
-			(setq v (undo-tree-make-visualizer-data)))))
-     (setf (undo-tree-visualizer-data-rwidth v) ,val)))
-
-(defsetf undo-tree-node-marker (node) (val)
-  `(let ((v (plist-get (undo-tree-node-meta-data ,node) :visualizer)))
-     (unless (undo-tree-visualizer-data-p v)
-       (setf (undo-tree-node-meta-data ,node)
-	     (plist-put (undo-tree-node-meta-data ,node) :visualizer
-			(setq v (undo-tree-make-visualizer-data)))))
-     (setf (undo-tree-visualizer-data-marker v) ,val)))
-
-
-
-(defstruct
-  (undo-tree-register-data
-   (:type vector)
-   (:constructor nil)
-   (:constructor undo-tree-make-register-data (buffer node)))
-  buffer node)
-
-(defun undo-tree-register-data-p (data)
-  (and (vectorp data)
-       (= (length data) 2)
-       (undo-tree-node-p (undo-tree-register-data-node data))))
-
-(defun undo-tree-register-data-print-func (data)
-  (princ (format "an undo-tree state for buffer %s"
-		 (undo-tree-register-data-buffer data))))
-
-(defmacro undo-tree-node-register (node)
-  `(plist-get (undo-tree-node-meta-data ,node) :register))
-
-(defsetf undo-tree-node-register (node) (val)
-  `(setf (undo-tree-node-meta-data ,node)
-	 (plist-put (undo-tree-node-meta-data ,node) :register ,val)))
-
-
-
-
-;;; =====================================================================
-;;;              Basic undo-tree data structure functions
-
-(defun undo-tree-grow (undo)
-  "Add an UNDO node to current branch of `buffer-undo-tree'."
-  (let* ((current (undo-tree-current buffer-undo-tree))
-         (new (undo-tree-make-node current undo)))
-    (push new (undo-tree-node-next current))
-    (setf (undo-tree-current buffer-undo-tree) new)))
-
-
-(defun undo-tree-grow-backwards (node undo &optional redo)
-  "Add new node *above* undo-tree NODE, and return new node.
-Note that this will overwrite NODE's \"previous\" link, so should
-only be used on a detached NODE, never on nodes that are already
-part of `buffer-undo-tree'."
-  (let ((new (undo-tree-make-node-backwards node undo redo)))
-    (setf (undo-tree-node-previous node) new)
-    new))
-
-
-(defun undo-tree-splice-node (node splice)
-  "Splice NODE into undo tree, below node SPLICE.
-Note that this will overwrite NODE's \"next\" and \"previous\"
-links, so should only be used on a detached NODE, never on nodes
-that are already part of `buffer-undo-tree'."
-  (setf (undo-tree-node-next node) (undo-tree-node-next splice)
-	(undo-tree-node-branch node) (undo-tree-node-branch splice)
-	(undo-tree-node-previous node) splice
-	(undo-tree-node-next splice) (list node)
-	(undo-tree-node-branch splice) 0)
-  (dolist (n (undo-tree-node-next node))
-    (setf (undo-tree-node-previous n) node)))
-
-
-(defun undo-tree-snip-node (node)
-  "Snip NODE out of undo tree."
-  (let* ((parent (undo-tree-node-previous node))
-	 position p)
-    ;; if NODE is only child, replace parent's next links with NODE's
-    (if (= (length (undo-tree-node-next parent)) 0)
-	(setf (undo-tree-node-next parent) (undo-tree-node-next node)
-	      (undo-tree-node-branch parent) (undo-tree-node-branch node))
-      ;; otherwise...
-      (setq position (undo-tree-position node (undo-tree-node-next parent)))
-      (cond
-       ;; if active branch used do go via NODE, set parent's branch to active
-       ;; branch of NODE
-       ((= (undo-tree-node-branch parent) position)
-	(setf (undo-tree-node-branch parent)
-	      (+ position (undo-tree-node-branch node))))
-       ;; if active branch didn't go via NODE, update parent's branch to point
-       ;; to same node as before
-       ((> (undo-tree-node-branch parent) position)
-	(incf (undo-tree-node-branch parent)
-	      (1- (length (undo-tree-node-next node))))))
-      ;; replace NODE in parent's next list with NODE's entire next list
-      (if (= position 0)
-	  (setf (undo-tree-node-next parent)
-		(nconc (undo-tree-node-next node)
-		       (cdr (undo-tree-node-next parent))))
-	(setq p (nthcdr (1- position) (undo-tree-node-next parent)))
-	(setcdr p (nconc (undo-tree-node-next node) (cddr p)))))
-    ;; update previous links of NODE's children
-    (dolist (n (undo-tree-node-next node))
-      (setf (undo-tree-node-previous n) parent))))
-
-
-(defun undo-tree-mapc (--undo-tree-mapc-function-- node)
-  ;; Apply FUNCTION to NODE and to each node below it.
-  (let ((stack (list node))
-	n)
-    (while stack
-      (setq n (pop stack))
-      (funcall --undo-tree-mapc-function-- n)
-      (setq stack (append (undo-tree-node-next n) stack)))))
-
-
-(defmacro undo-tree-num-branches ()
-  "Return number of branches at current undo tree node."
-  '(length (undo-tree-node-next (undo-tree-current buffer-undo-tree))))
-
-
-(defun undo-tree-position (node list)
-  "Find the first occurrence of NODE in LIST.
-Return the index of the matching item, or nil of not found.
-Comparison is done with `eq'."
-  (let ((i 0))
-    (catch 'found
-      (while (progn
-               (when (eq node (car list)) (throw 'found i))
-               (incf i)
-               (setq list (cdr list))))
-      nil)))
-
-
-(defvar *undo-tree-id-counter* 0)
-(make-variable-buffer-local '*undo-tree-id-counter*)
-
-(defmacro undo-tree-generate-id ()
-  ;; Generate a new, unique id (uninterned symbol).
-  ;; The name is made by appending a number to "undo-tree-id".
-  ;; (Copied from CL package `gensym'.)
-  `(let ((num (prog1 *undo-tree-id-counter* (incf *undo-tree-id-counter*))))
-     (make-symbol (format "undo-tree-id%d" num))))
-
-
-(defun undo-tree-decircle (undo-tree)
-  ;; Nullify PREVIOUS links of UNDO-TREE nodes, to make UNDO-TREE data
-  ;; structure non-circular.
-  (undo-tree-mapc
-   (lambda (node)
-     (dolist (n (undo-tree-node-next node))
-       (setf (undo-tree-node-previous n) nil)))
-   (undo-tree-root undo-tree)))
-
-
-(defun undo-tree-recircle (undo-tree)
-  ;; Recreate PREVIOUS links of UNDO-TREE nodes, to restore circular UNDO-TREE
-  ;; data structure.
-  (undo-tree-mapc
-   (lambda (node)
-     (dolist (n (undo-tree-node-next node))
-       (setf (undo-tree-node-previous n) node)))
-   (undo-tree-root undo-tree)))
-
-
-
-
-;;; =====================================================================
-;;;             Undo list and undo changeset utility functions
-
-(defmacro undo-list-marker-elt-p (elt)
-  `(markerp (car-safe ,elt)))
-
-(defmacro undo-list-GCd-marker-elt-p (elt)
-  ;; Return t if ELT is a marker element whose marker has been moved to the
-  ;; object-pool, so may potentially have been garbage-collected.
-  ;; Note: Valid marker undo elements should be uniquely identified as cons
-  ;; cells with a symbol in the car (replacing the marker), and a number in
-  ;; the cdr. However, to guard against future changes to undo element
-  ;; formats, we perform an additional redundant check on the symbol name.
-  `(and (car-safe ,elt)
-	(symbolp (car ,elt))
-	(let ((str (symbol-name (car ,elt))))
-	  (and (> (length str) 12)
-	       (string= (substring str 0 12) "undo-tree-id")))
-	(numberp (cdr-safe ,elt))))
-
-
-(defun undo-tree-move-GC-elts-to-pool (elt)
-  ;; Move elements that can be garbage-collected into `buffer-undo-tree'
-  ;; object pool, substituting a unique id that can be used to retrieve them
-  ;; later. (Only markers require this treatment currently.)
-  (when (undo-list-marker-elt-p elt)
-    (let ((id (undo-tree-generate-id)))
-      (puthash id (car elt) (undo-tree-object-pool buffer-undo-tree))
-      (setcar elt id))))
-
-
-(defun undo-tree-restore-GC-elts-from-pool (elt)
-  ;; Replace object id's in ELT with corresponding objects from
-  ;; `buffer-undo-tree' object pool and return modified ELT, or return nil if
-  ;; any object in ELT has been garbage-collected.
-  (if (undo-list-GCd-marker-elt-p elt)
-      (when (setcar elt (gethash (car elt)
-				 (undo-tree-object-pool buffer-undo-tree)))
-	elt)
-    elt))
-
-
-(defun undo-list-clean-GCd-elts (undo-list)
-  ;; Remove object id's from UNDO-LIST that refer to elements that have been
-  ;; garbage-collected. UNDO-LIST is modified by side-effect.
-  (while (undo-list-GCd-marker-elt-p (car undo-list))
-    (unless (gethash (caar undo-list)
-		     (undo-tree-object-pool buffer-undo-tree))
-      (setq undo-list (cdr undo-list))))
-  (let ((p undo-list))
-    (while (cdr p)
-      (when (and (undo-list-GCd-marker-elt-p (cadr p))
-		 (null (gethash (car (cadr p))
-				(undo-tree-object-pool buffer-undo-tree))))
-	(setcdr p (cddr p)))
-      (setq p (cdr p))))
-  undo-list)
-
-
-(defun undo-list-pop-changeset (&optional discard-pos)
-  ;; Pop changeset from `buffer-undo-list'. If DISCARD-POS is non-nil, discard
-  ;; any position entries from changeset.
-
-  ;; discard undo boundaries and (if DISCARD-POS is non-nil) position entries
-  ;; at head of undo list
-  (while (or (null (car buffer-undo-list))
-	     (and discard-pos (integerp (car buffer-undo-list))))
-    (setq buffer-undo-list (cdr buffer-undo-list)))
-  ;; pop elements up to next undo boundary, discarding position entries if
-  ;; DISCARD-POS is non-nil
-  (if (eq (car buffer-undo-list) 'undo-tree-canary)
-      (push nil buffer-undo-list)
-    (let* ((changeset (list (pop buffer-undo-list)))
-           (p changeset))
-      (while (progn
-	       (undo-tree-move-GC-elts-to-pool (car p))
-	       (while (and discard-pos (integerp (car buffer-undo-list)))
-		 (setq buffer-undo-list (cdr buffer-undo-list)))
-	       (and (car buffer-undo-list)
-		    (not (eq (car buffer-undo-list) 'undo-tree-canary))))
-        (setcdr p (list (pop buffer-undo-list)))
-	(setq p (cdr p)))
-      changeset)))
-
-
-(defun undo-tree-copy-list (undo-list)
-  ;; Return a deep copy of first changeset in `undo-list'. Object id's are
-  ;; replaced by corresponding objects from `buffer-undo-tree' object-pool.
-  (when undo-list
-    (let (copy p)
-      ;; if first element contains an object id, replace it with object from
-      ;; pool, discarding element entirely if it's been GC'd
-      (while (null copy)
-	(setq copy
-	      (undo-tree-restore-GC-elts-from-pool (pop undo-list))))
-      (setq copy (list copy)
-	    p copy)
-      ;; copy remaining elements, replacing object id's with objects from
-      ;; pool, or discarding them entirely if they've been GC'd
-      (while undo-list
-	(when (setcdr p (undo-tree-restore-GC-elts-from-pool
-			 (undo-copy-list-1 (pop undo-list))))
-	  (setcdr p (list (cdr p)))
-	  (setq p (cdr p))))
-      copy)))
-
-
-
-(defun undo-list-transfer-to-tree ()
-  ;; Transfer entries accumulated in `buffer-undo-list' to `buffer-undo-tree'.
-
-  ;; `undo-list-transfer-to-tree' should never be called when undo is disabled
-  ;; (i.e. `buffer-undo-tree' is t)
-  (assert (not (eq buffer-undo-tree t)))
-
-  ;; if `buffer-undo-tree' is empty, create initial undo-tree
-  (when (null buffer-undo-tree) (setq buffer-undo-tree (make-undo-tree)))
-  ;; make sure there's a canary at end of `buffer-undo-list'
-  (when (null buffer-undo-list)
-    (setq buffer-undo-list '(nil undo-tree-canary)))
-
-  (unless (or (eq (cadr buffer-undo-list) 'undo-tree-canary)
-	      (eq (car buffer-undo-list) 'undo-tree-canary))
-    ;; create new node from first changeset in `buffer-undo-list', save old
-    ;; `buffer-undo-tree' current node, and make new node the current node
-    (let* ((node (undo-tree-make-node nil (undo-list-pop-changeset)))
-	   (splice (undo-tree-current buffer-undo-tree))
-	   (size (undo-list-byte-size (undo-tree-node-undo node)))
-	   (count 1))
-      (setf (undo-tree-current buffer-undo-tree) node)
-      ;; grow tree fragment backwards using `buffer-undo-list' changesets
-      (while (and buffer-undo-list
-		  (not (eq (cadr buffer-undo-list) 'undo-tree-canary)))
-	(setq node
-	      (undo-tree-grow-backwards node (undo-list-pop-changeset)))
-	(incf size (undo-list-byte-size (undo-tree-node-undo node)))
-	(incf count))
-      ;; if no undo history has been discarded from `buffer-undo-list' since
-      ;; last transfer, splice new tree fragment onto end of old
-      ;; `buffer-undo-tree' current node
-      (if (or (eq (cadr buffer-undo-list) 'undo-tree-canary)
-	      (eq (car buffer-undo-list) 'undo-tree-canary))
-	  (progn
-	    (setf (undo-tree-node-previous node) splice)
-	    (push node (undo-tree-node-next splice))
-	    (setf (undo-tree-node-branch splice) 0)
-	    (incf (undo-tree-size buffer-undo-tree) size)
-	    (incf (undo-tree-count buffer-undo-tree) count))
-	;; if undo history has been discarded, replace entire
-	;; `buffer-undo-tree' with new tree fragment
-	(setq node (undo-tree-grow-backwards node nil))
-	(setf (undo-tree-root buffer-undo-tree) node)
-	(setq buffer-undo-list '(nil undo-tree-canary))
-	(setf (undo-tree-size buffer-undo-tree) size)
-	(setf (undo-tree-count buffer-undo-tree) count)
-	(setq buffer-undo-list '(nil undo-tree-canary))))
-    ;; discard undo history if necessary
-    (undo-tree-discard-history)))
-
-
-(defun undo-list-byte-size (undo-list)
-  ;; Return size (in bytes) of UNDO-LIST
-  (let ((size 0) (p undo-list))
-    (while p
-      (incf size 8)  ; cons cells use up 8 bytes
-      (when (and (consp (car p)) (stringp (caar p)))
-        (incf size (string-bytes (caar p))))
-      (setq p (cdr p)))
-    size))
-
-
-
-(defun undo-list-rebuild-from-tree ()
-  "Rebuild `buffer-undo-list' from information in `buffer-undo-tree'."
-  (unless (eq buffer-undo-list t)
-    (undo-list-transfer-to-tree)
-    (setq buffer-undo-list nil)
-    (when buffer-undo-tree
-      (let ((stack (list (list (undo-tree-root buffer-undo-tree)))))
-	(push (sort (mapcar 'identity (undo-tree-node-next (caar stack)))
-		    (lambda (a b)
-		      (time-less-p (undo-tree-node-timestamp a)
-				   (undo-tree-node-timestamp b))))
-	      stack)
-	;; Traverse tree in depth-and-oldest-first order, but add undo records
-	;; on the way down, and redo records on the way up.
-	(while (or (car stack)
-		   (not (eq (car (nth 1 stack))
-			    (undo-tree-current buffer-undo-tree))))
-	  (if (car stack)
-	      (progn
-		(setq buffer-undo-list
-		      (append (undo-tree-node-undo (caar stack))
-			      buffer-undo-list))
-		(undo-boundary)
-		(push (sort (mapcar 'identity
-				    (undo-tree-node-next (caar stack)))
-			    (lambda (a b)
-			      (time-less-p (undo-tree-node-timestamp a)
-					   (undo-tree-node-timestamp b))))
-		      stack))
-	    (pop stack)
-	    (setq buffer-undo-list
-		  (append (undo-tree-node-redo (caar stack))
-			  buffer-undo-list))
-	    (undo-boundary)
-	    (pop (car stack))))))))
-
-
-
-
-;;; =====================================================================
-;;;                History discarding utility functions
-
-(defun undo-tree-oldest-leaf (node)
-  ;; Return oldest leaf node below NODE.
-  (while (undo-tree-node-next node)
-    (setq node
-          (car (sort (mapcar 'identity (undo-tree-node-next node))
-                     (lambda (a b)
-                       (time-less-p (undo-tree-node-timestamp a)
-                                    (undo-tree-node-timestamp b)))))))
-  node)
-
-
-(defun undo-tree-discard-node (node)
-  ;; Discard NODE from `buffer-undo-tree', and return next in line for
-  ;; discarding.
-
-  ;; don't discard current node
-  (unless (eq node (undo-tree-current buffer-undo-tree))
-
-    ;; discarding root node...
-    (if (eq node (undo-tree-root buffer-undo-tree))
-        (cond
-         ;; should always discard branches before root
-         ((> (length (undo-tree-node-next node)) 1)
-          (error "Trying to discard undo-tree root which still\
- has multiple branches"))
-         ;; don't discard root if current node is only child
-         ((eq (car (undo-tree-node-next node))
-              (undo-tree-current buffer-undo-tree))
-	  nil)
-	 ;; discard root
-         (t
-	  ;; clear any register referring to root
-	  (let ((r (undo-tree-node-register node)))
-	    (when (and r (eq (get-register r) node))
-	      (set-register r nil)))
-          ;; make child of root into new root
-          (setq node (setf (undo-tree-root buffer-undo-tree)
-                           (car (undo-tree-node-next node))))
-	  ;; update undo-tree size
-	  (decf (undo-tree-size buffer-undo-tree)
-		(+ (undo-list-byte-size (undo-tree-node-undo node))
-		   (undo-list-byte-size (undo-tree-node-redo node))))
-	  (decf (undo-tree-count buffer-undo-tree))
-	  ;; discard new root's undo data and PREVIOUS link
-	  (setf (undo-tree-node-undo node) nil
-		(undo-tree-node-redo node) nil
-		(undo-tree-node-previous node) nil)
-          ;; if new root has branches, or new root is current node, next node
-          ;; to discard is oldest leaf, otherwise it's new root
-          (if (or (> (length (undo-tree-node-next node)) 1)
-                  (eq (car (undo-tree-node-next node))
-                      (undo-tree-current buffer-undo-tree)))
-              (undo-tree-oldest-leaf node)
-            node)))
-
-      ;; discarding leaf node...
-      (let* ((parent (undo-tree-node-previous node))
-             (current (nth (undo-tree-node-branch parent)
-                           (undo-tree-node-next parent))))
-	;; clear any register referring to the discarded node
-	(let ((r (undo-tree-node-register node)))
-	  (when (and r (eq (get-register r) node))
-	    (set-register r nil)))
-	;; update undo-tree size
-	(decf (undo-tree-size buffer-undo-tree)
-	      (+ (undo-list-byte-size (undo-tree-node-undo node))
-		 (undo-list-byte-size (undo-tree-node-redo node))))
-	(decf (undo-tree-count buffer-undo-tree))
-	;; discard leaf
-        (setf (undo-tree-node-next parent)
-                (delq node (undo-tree-node-next parent))
-              (undo-tree-node-branch parent)
-                (undo-tree-position current (undo-tree-node-next parent)))
-        ;; if parent has branches, or parent is current node, next node to
-        ;; discard is oldest leaf, otherwise it's the parent itself
-        (if (or (eq parent (undo-tree-current buffer-undo-tree))
-                (and (undo-tree-node-next parent)
-                     (or (not (eq parent (undo-tree-root buffer-undo-tree)))
-                         (> (length (undo-tree-node-next parent)) 1))))
-            (undo-tree-oldest-leaf parent)
-          parent)))))
-
-
-
-(defun undo-tree-discard-history ()
-  "Discard undo history until we're within memory usage limits
-set by `undo-limit', `undo-strong-limit' and `undo-outer-limit'."
-
-  (when (> (undo-tree-size buffer-undo-tree) undo-limit)
-    ;; if there are no branches off root, first node to discard is root;
-    ;; otherwise it's leaf node at botom of oldest branch
-    (let ((node (if (> (length (undo-tree-node-next
-                                (undo-tree-root buffer-undo-tree))) 1)
-                    (undo-tree-oldest-leaf (undo-tree-root buffer-undo-tree))
-                  (undo-tree-root buffer-undo-tree))))
-
-      ;; discard nodes until memory use is within `undo-strong-limit'
-      (while (and node
-                  (> (undo-tree-size buffer-undo-tree) undo-strong-limit))
-        (setq node (undo-tree-discard-node node)))
-
-      ;; discard nodes until next node to discard would bring memory use
-      ;; within `undo-limit'
-      (while (and node
-		  ;; check first if last discard has brought us within
-		  ;; `undo-limit', in case we can avoid more expensive
-		  ;; `undo-strong-limit' calculation
-		  ;; Note: this assumes undo-strong-limit > undo-limit;
-		  ;;       if not, effectively undo-strong-limit = undo-limit
-		  (> (undo-tree-size buffer-undo-tree) undo-limit)
-                  (> (- (undo-tree-size buffer-undo-tree)
-			;; if next node to discard is root, the memory we
-			;; free-up comes from discarding changesets from its
-			;; only child...
-			(if (eq node (undo-tree-root buffer-undo-tree))
-			    (+ (undo-list-byte-size
-				(undo-tree-node-undo
-				 (car (undo-tree-node-next node))))
-			       (undo-list-byte-size
-				(undo-tree-node-redo
-				 (car (undo-tree-node-next node)))))
-			  ;; ...otherwise, it comes from discarding changesets
-			  ;; from along with the node itself
-			  (+ (undo-list-byte-size (undo-tree-node-undo node))
-			     (undo-list-byte-size (undo-tree-node-redo node)))
-			  ))
-                     undo-limit))
-        (setq node (undo-tree-discard-node node)))
-
-      ;; if we're still over the `undo-outer-limit', discard entire history
-      (when (> (undo-tree-size buffer-undo-tree) undo-outer-limit)
-        ;; query first if `undo-ask-before-discard' is set
-        (if undo-ask-before-discard
-            (when (yes-or-no-p
-                   (format
-                    "Buffer `%s' undo info is %d bytes long;  discard it? "
-                    (buffer-name) (undo-tree-size buffer-undo-tree)))
-              (setq buffer-undo-tree nil))
-          ;; otherwise, discard and display warning
-          (display-warning
-           '(undo discard-info)
-           (concat
-            (format "Buffer `%s' undo info was %d bytes long.\n"
-                    (buffer-name) (undo-tree-size buffer-undo-tree))
-            "The undo info was discarded because it exceeded\
- `undo-outer-limit'.
-
-This is normal if you executed a command that made a huge change
-to the buffer. In that case, to prevent similar problems in the
-future, set `undo-outer-limit' to a value that is large enough to
-cover the maximum size of normal changes you expect a single
-command to make, but not so large that it might exceed the
-maximum memory allotted to Emacs.
-
-If you did not execute any such command, the situation is
-probably due to a bug and you should report it.
-
-You can disable the popping up of this buffer by adding the entry
-\(undo discard-info) to the user option `warning-suppress-types',
-which is defined in the `warnings' library.\n")
-           :warning)
-          (setq buffer-undo-tree nil)))
-      )))
-
-
-
-
-;;; =====================================================================
-;;;                   Visualizer utility functions
-
-(defun undo-tree-compute-widths (node)
-  "Recursively compute widths for nodes below NODE."
-  (let ((stack (list node))
-        res)
-    (while stack
-      ;; try to compute widths for node at top of stack
-      (if (undo-tree-node-p
-           (setq res (undo-tree-node-compute-widths (car stack))))
-          ;; if computation fails, it returns a node whose widths still need
-          ;; computing, which we push onto the stack
-          (push res stack)
-        ;; otherwise, store widths and remove it from stack
-        (setf (undo-tree-node-lwidth (car stack)) (aref res 0)
-              (undo-tree-node-cwidth (car stack)) (aref res 1)
-              (undo-tree-node-rwidth (car stack)) (aref res 2))
-        (pop stack)))))
-
-
-(defun undo-tree-node-compute-widths (node)
-  ;; Compute NODE's left-, centre-, and right-subtree widths. Returns widths
-  ;; (in a vector) if successful. Otherwise, returns a node whose widths need
-  ;; calculating before NODE's can be calculated.
-  (let ((num-children (length (undo-tree-node-next node)))
-        (lwidth 0) (cwidth 0) (rwidth 0) p)
-    (catch 'need-widths
-      (cond
-       ;; leaf nodes have 0 width
-       ((= 0 num-children)
-        (setf cwidth 1
-              (undo-tree-node-lwidth node) 0
-              (undo-tree-node-cwidth node) 1
-              (undo-tree-node-rwidth node) 0))
-
-       ;; odd number of children
-       ((= (mod num-children 2) 1)
-        (setq p (undo-tree-node-next node))
-        ;; compute left-width
-        (dotimes (i (/ num-children 2))
-          (if (undo-tree-node-lwidth (car p))
-              (incf lwidth (+ (undo-tree-node-lwidth (car p))
-                              (undo-tree-node-cwidth (car p))
-                              (undo-tree-node-rwidth (car p))))
-            ;; if child's widths haven't been computed, return that child
-            (throw 'need-widths (car p)))
-          (setq p (cdr p)))
-        (if (undo-tree-node-lwidth (car p))
-            (incf lwidth (undo-tree-node-lwidth (car p)))
-          (throw 'need-widths (car p)))
-        ;; centre-width is inherited from middle child
-        (setf cwidth (undo-tree-node-cwidth (car p)))
-        ;; compute right-width
-        (incf rwidth (undo-tree-node-rwidth (car p)))
-        (setq p (cdr p))
-        (dotimes (i (/ num-children 2))
-          (if (undo-tree-node-lwidth (car p))
-              (incf rwidth (+ (undo-tree-node-lwidth (car p))
-                              (undo-tree-node-cwidth (car p))
-                              (undo-tree-node-rwidth (car p))))
-            (throw 'need-widths (car p)))
-          (setq p (cdr p))))
-
-       ;; even number of children
-       (t
-        (setq p (undo-tree-node-next node))
-        ;; compute left-width
-        (dotimes (i (/ num-children 2))
-          (if (undo-tree-node-lwidth (car p))
-              (incf lwidth (+ (undo-tree-node-lwidth (car p))
-                              (undo-tree-node-cwidth (car p))
-                              (undo-tree-node-rwidth (car p))))
-            (throw 'need-widths (car p)))
-          (setq p (cdr p)))
-        ;; centre-width is 0 when number of children is even
-        (setq cwidth 0)
-        ;; compute right-width
-        (dotimes (i (/ num-children 2))
-          (if (undo-tree-node-lwidth (car p))
-              (incf rwidth (+ (undo-tree-node-lwidth (car p))
-                              (undo-tree-node-cwidth (car p))
-                              (undo-tree-node-rwidth (car p))))
-            (throw 'need-widths (car p)))
-          (setq p (cdr p)))))
-
-      ;; return left-, centre- and right-widths
-      (vector lwidth cwidth rwidth))))
-
-
-(defun undo-tree-clear-visualizer-data (tree)
-  ;; Clear visualizer data below NODE.
-  (undo-tree-mapc
-   (lambda (n) (undo-tree-node-clear-visualizer-data n))
-   (undo-tree-root tree)))
-
-
-(defun undo-tree-node-unmodified-p (node &optional mtime)
-  ;; Return non-nil if NODE corresponds to a buffer state that once upon a
-  ;; time was unmodified. If a file modification time MTIME is specified,
-  ;; return non-nil if the corresponding buffer state really is unmodified.
-  (let (changeset ntime)
-    (setq changeset
-	  (or (undo-tree-node-redo node)
-	      (and (setq changeset (car (undo-tree-node-next node)))
-		   (undo-tree-node-undo changeset)))
-	  ntime
-	  (catch 'found
-	    (dolist (elt changeset)
-	      (when (and (consp elt) (eq (car elt) t) (consp (cdr elt))
-			 (throw 'found (cdr elt)))))))
-    (and ntime
-	 (or (null mtime)
-	     ;; high-precision timestamps
-	     (if (listp (cdr ntime))
-		 (equal ntime mtime)
-	       ;; old-style timestamps
-	       (and (= (car ntime) (car mtime))
-		    (= (cdr ntime) (cadr mtime))))))))
-
-
-
-
-;;; =====================================================================
-;;;                  Undo-in-region utility functions
-
-;; `undo-elt-in-region' uses this as a dynamically-scoped variable
-(defvar undo-adjusted-markers nil)
-
-
-(defun undo-tree-pull-undo-in-region-branch (start end)
-  ;; Pull out entries from undo changesets to create a new undo-in-region
-  ;; branch, which undoes changeset entries lying between START and END first,
-  ;; followed by remaining entries from the changesets, before rejoining the
-  ;; existing undo tree history. Repeated calls will, if appropriate, extend
-  ;; the current undo-in-region branch rather than creating a new one.
-
-  ;; if we're just reverting the last redo-in-region, we don't need to
-  ;; manipulate the undo tree at all
-  (if (undo-tree-reverting-redo-in-region-p start end)
-      t  ; return t to indicate success
-
-    ;; We build the `region-changeset' and `delta-list' lists forwards, using
-    ;; pointers `r' and `d' to the penultimate element of the list. So that we
-    ;; don't have to treat the first element differently, we prepend a dummy
-    ;; leading nil to the lists, and have the pointers point to that
-    ;; initially.
-    ;; Note: using '(nil) instead of (list nil) in the `let*' results in
-    ;;       bizarre errors when the code is byte-compiled, where parts of the
-    ;;       lists appear to survive across different calls to this function.
-    ;;       An obscure byte-compiler bug, perhaps?
-    (let* ((region-changeset (list nil))
-	   (r region-changeset)
-	   (delta-list (list nil))
-	   (d delta-list)
-	   (node (undo-tree-current buffer-undo-tree))
-	   (repeated-undo-in-region
-	    (undo-tree-repeated-undo-in-region-p start end))
-	   undo-adjusted-markers  ; `undo-elt-in-region' expects this
-	   fragment splice original-fragment original-splice original-current
-	   got-visible-elt undo-list elt)
-
-      ;; --- initialisation ---
-      (cond
-       ;; if this is a repeated undo in the same region, start pulling changes
-       ;; from NODE at which undo-in-region branch iss attached, and detatch
-       ;; the branch, using it as initial FRAGMENT of branch being constructed
-       (repeated-undo-in-region
-	(setq original-current node
-	      fragment (car (undo-tree-node-next node))
-	      splice node)
-	;; undo up to node at which undo-in-region branch is attached
-	;; (recognizable as first node with more than one branch)
-	(let ((mark-active nil))
-	  (while (= (length (undo-tree-node-next node)) 1)
-	    (undo-tree-undo-1)
-	    (setq fragment node
-		  node (undo-tree-current buffer-undo-tree))))
-	(when (eq splice node) (setq splice nil))
-	;; detatch undo-in-region branch
-	(setf (undo-tree-node-next node)
-	      (delq fragment (undo-tree-node-next node))
-	      (undo-tree-node-previous fragment) nil
-	      original-fragment fragment
-	      original-splice node))
-
-       ;; if this is a new undo-in-region, initial FRAGMENT is a copy of all
-       ;; nodes below the current one in the active branch
-       ((undo-tree-node-next node)
-	(setq fragment (undo-tree-make-node nil nil)
-	      splice fragment)
-	(while (setq node (nth (undo-tree-node-branch node)
-			       (undo-tree-node-next node)))
-	  (push (undo-tree-make-node
-		 splice
-		 (undo-copy-list (undo-tree-node-undo node))
-		 (undo-copy-list (undo-tree-node-redo node)))
-		(undo-tree-node-next splice))
-	  (setq splice (car (undo-tree-node-next splice))))
-	(setq fragment (car (undo-tree-node-next fragment))
-	      splice nil
-	      node (undo-tree-current buffer-undo-tree))))
-
-
-      ;; --- pull undo-in-region elements into branch ---
-      ;; work backwards up tree, pulling out undo elements within region until
-      ;; we've got one that undoes a visible change (insertion or deletion)
-      (catch 'abort
-	(while (and (not got-visible-elt) node (undo-tree-node-undo node))
-	  ;; we cons a dummy nil element on the front of the changeset so that
-	  ;; we can conveniently remove the first (real) element from the
-	  ;; changeset if we need to; the leading nil is removed once we're
-	  ;; done with this changeset
-	  (setq undo-list (cons nil (undo-copy-list (undo-tree-node-undo node)))
-		elt (cadr undo-list))
-	  (if fragment
-	      (progn
-		(setq fragment (undo-tree-grow-backwards fragment undo-list))
-		(unless splice (setq splice fragment)))
-	    (setq fragment (undo-tree-make-node nil undo-list))
-	    (setq splice fragment))
-
-	  (while elt
-	    (cond
-	     ;; keep elements within region
-	     ((undo-elt-in-region elt start end)
-	      ;; set flag if kept element is visible (insertion or deletion)
-	      (when (and (consp elt)
-			 (or (stringp (car elt)) (integerp (car elt))))
-		(setq got-visible-elt t))
-	      ;; adjust buffer positions in elements previously undone before
-	      ;; kept element, as kept element will now be undone first
-	      (undo-tree-adjust-elements-to-elt splice elt)
-	      ;; move kept element to undo-in-region changeset, adjusting its
-	      ;; buffer position as it will now be undone first
-	      (setcdr r (list (undo-tree-apply-deltas elt (cdr delta-list))))
-	      (setq r (cdr r))
-	      (setcdr undo-list (cddr undo-list)))
-
-	     ;; discard "was unmodified" elements
-	     ;; FIXME: deal properly with these
-	     ((and (consp elt) (eq (car elt) t))
-	      (setcdr undo-list (cddr undo-list)))
-
-	     ;; if element crosses region, we can't pull any more elements
-	     ((undo-elt-crosses-region elt start end)
-	      ;; if we've found a visible element, it must be earlier in
-	      ;; current node's changeset; stop pulling elements (null
-	      ;; `undo-list' and non-nil `got-visible-elt' cause loop to exit)
-	      (if got-visible-elt
-		  (setq undo-list nil)
-		;; if we haven't found a visible element yet, pulling
-		;; undo-in-region branch has failed
-		(setq region-changeset nil)
-		(throw 'abort t)))
-
-	     ;; if rejecting element, add its delta (if any) to the list
-	     (t
-	      (let ((delta (undo-delta elt)))
-		(when (/= 0 (cdr delta))
-		  (setcdr d (list delta))
-		  (setq d (cdr d))))
-	      (setq undo-list (cdr undo-list))))
-
-	    ;; process next element of current changeset
-	    (setq elt (cadr undo-list)))
-
-	  ;; if there are remaining elements in changeset, remove dummy nil
-	  ;; from front
-	  (if (cadr (undo-tree-node-undo fragment))
-	      (pop (undo-tree-node-undo fragment))
-	    ;; otherwise, if we've kept all elements in changeset, discard
-	    ;; empty changeset
-	    (when (eq splice fragment) (setq splice nil))
-	    (setq fragment (car (undo-tree-node-next fragment))))
-	  ;; process changeset from next node up the tree
-	  (setq node (undo-tree-node-previous node))))
-
-      ;; pop dummy nil from front of `region-changeset'
-      (setq region-changeset (cdr region-changeset))
-
-
-      ;; --- integrate branch into tree ---
-      ;; if no undo-in-region elements were found, restore undo tree
-      (if (null region-changeset)
-	  (when original-current
-	    (push original-fragment (undo-tree-node-next original-splice))
-	    (setf (undo-tree-node-branch original-splice) 0
-		  (undo-tree-node-previous original-fragment) original-splice)
-	    (let ((mark-active nil))
-	      (while (not (eq (undo-tree-current buffer-undo-tree)
-			      original-current))
-		(undo-tree-redo-1)))
-	    nil)  ; return nil to indicate failure
-
-	;; otherwise...
-	;; need to undo up to node where new branch will be attached, to
-	;; ensure redo entries are populated, and then redo back to where we
-	;; started
-	(let ((mark-active nil)
-	      (current (undo-tree-current buffer-undo-tree)))
-	  (while (not (eq (undo-tree-current buffer-undo-tree) node))
-	    (undo-tree-undo-1))
-	  (while (not (eq (undo-tree-current buffer-undo-tree) current))
-	    (undo-tree-redo-1)))
-
-	(cond
-	 ;; if there's no remaining fragment, just create undo-in-region node
-	 ;; and attach it to parent of last node from which elements were
-	 ;; pulled
-	 ((null fragment)
-	  (setq fragment (undo-tree-make-node node region-changeset))
-	  (push fragment (undo-tree-node-next node))
-	  (setf (undo-tree-node-branch node) 0)
-	  ;; set current node to undo-in-region node
-	  (setf (undo-tree-current buffer-undo-tree) fragment))
-
-	 ;; if no splice point has been set, add undo-in-region node to top of
-	 ;; fragment and attach it to parent of last node from which elements
-	 ;; were pulled
-	 ((null splice)
-	  (setq fragment (undo-tree-grow-backwards fragment region-changeset))
-	  (push fragment (undo-tree-node-next node))
-	  (setf (undo-tree-node-branch node) 0
-		(undo-tree-node-previous fragment) node)
-	  ;; set current node to undo-in-region node
-	  (setf (undo-tree-current buffer-undo-tree) fragment))
-
-	 ;; if fragment contains nodes, attach fragment to parent of last node
-	 ;; from which elements were pulled, and splice in undo-in-region node
-	 (t
-	  (setf (undo-tree-node-previous fragment) node)
-	  (push fragment (undo-tree-node-next node))
-	  (setf (undo-tree-node-branch node) 0)
-	  ;; if this is a repeated undo-in-region, then we've left the current
-	  ;; node at the original splice-point; we need to set the current
-	  ;; node to the equivalent node on the undo-in-region branch and redo
-	  ;; back to where we started
-	  (when repeated-undo-in-region
-	    (setf (undo-tree-current buffer-undo-tree)
-		  (undo-tree-node-previous original-fragment))
-	    (let ((mark-active nil))
-	      (while (not (eq (undo-tree-current buffer-undo-tree) splice))
-		(undo-tree-redo-1 nil 'preserve-undo))))
-	  ;; splice new undo-in-region node into fragment
-	  (setq node (undo-tree-make-node nil region-changeset))
-	  (undo-tree-splice-node node splice)
-	  ;; set current node to undo-in-region node
-	  (setf (undo-tree-current buffer-undo-tree) node)))
-
-	;; update undo-tree size
-	(setq node (undo-tree-node-previous fragment))
-	(while (progn
-		 (and (setq node (car (undo-tree-node-next node)))
-		      (not (eq node original-fragment))
-		      (incf (undo-tree-count buffer-undo-tree))
-		      (incf (undo-tree-size buffer-undo-tree)
-			    (+ (undo-list-byte-size (undo-tree-node-undo node))
-			       (undo-list-byte-size (undo-tree-node-redo node)))))))
-	t)  ; indicate undo-in-region branch was successfully pulled
-      )))
-
-
-
-(defun undo-tree-pull-redo-in-region-branch (start end)
-  ;; Pull out entries from redo changesets to create a new redo-in-region
-  ;; branch, which redoes changeset entries lying between START and END first,
-  ;; followed by remaining entries from the changesets. Repeated calls will,
-  ;; if appropriate, extend the current redo-in-region branch rather than
-  ;; creating a new one.
-
-  ;; if we're just reverting the last undo-in-region, we don't need to
-  ;; manipulate the undo tree at all
-  (if (undo-tree-reverting-undo-in-region-p start end)
-      t  ; return t to indicate success
-
-    ;; We build the `region-changeset' and `delta-list' lists forwards, using
-    ;; pointers `r' and `d' to the penultimate element of the list. So that we
-    ;; don't have to treat the first element differently, we prepend a dummy
-    ;; leading nil to the lists, and have the pointers point to that
-    ;; initially.
-    ;; Note: using '(nil) instead of (list nil) in the `let*' causes bizarre
-    ;;       errors when the code is byte-compiled, where parts of the lists
-    ;;       appear to survive across different calls to this function.  An
-    ;;       obscure byte-compiler bug, perhaps?
-    (let* ((region-changeset (list nil))
-	   (r region-changeset)
-	   (delta-list (list nil))
-	   (d delta-list)
-	   (node (undo-tree-current buffer-undo-tree))
-	   (repeated-redo-in-region
-	    (undo-tree-repeated-redo-in-region-p start end))
-	   undo-adjusted-markers  ; `undo-elt-in-region' expects this
-	   fragment splice got-visible-elt redo-list elt)
-
-      ;; --- inisitalisation ---
-      (cond
-       ;; if this is a repeated redo-in-region, detach fragment below current
-       ;; node
-       (repeated-redo-in-region
-	(when (setq fragment (car (undo-tree-node-next node)))
-	  (setf (undo-tree-node-previous fragment) nil
-		(undo-tree-node-next node)
-		(delq fragment (undo-tree-node-next node)))))
-       ;; if this is a new redo-in-region, initial fragment is a copy of all
-       ;; nodes below the current one in the active branch
-       ((undo-tree-node-next node)
-	(setq fragment (undo-tree-make-node nil nil)
-	      splice fragment)
-	(while (setq node (nth (undo-tree-node-branch node)
-			       (undo-tree-node-next node)))
-	  (push (undo-tree-make-node
-		 splice nil
-		 (undo-copy-list (undo-tree-node-redo node)))
-		(undo-tree-node-next splice))
-	  (setq splice (car (undo-tree-node-next splice))))
-	(setq fragment (car (undo-tree-node-next fragment)))))
-
-
-      ;; --- pull redo-in-region elements into branch ---
-      ;; work down fragment, pulling out redo elements within region until
-      ;; we've got one that redoes a visible change (insertion or deletion)
-      (setq node fragment)
-      (catch 'abort
-	(while (and (not got-visible-elt) node (undo-tree-node-redo node))
-	  ;; we cons a dummy nil element on the front of the changeset so that
-	  ;; we can conveniently remove the first (real) element from the
-	  ;; changeset if we need to; the leading nil is removed once we're
-	  ;; done with this changeset
-	  (setq redo-list (push nil (undo-tree-node-redo node))
-		elt (cadr redo-list))
-	  (while elt
-	    (cond
-	     ;; keep elements within region
-	     ((undo-elt-in-region elt start end)
-	      ;; set flag if kept element is visible (insertion or deletion)
-	      (when (and (consp elt)
-			 (or (stringp (car elt)) (integerp (car elt))))
-		(setq got-visible-elt t))
-	      ;; adjust buffer positions in elements previously redone before
-	      ;; kept element, as kept element will now be redone first
-	      (undo-tree-adjust-elements-to-elt fragment elt t)
-	      ;; move kept element to redo-in-region changeset, adjusting its
-	      ;; buffer position as it will now be redone first
-	      (setcdr r (list (undo-tree-apply-deltas elt (cdr delta-list) -1)))
-	      (setq r (cdr r))
-	      (setcdr redo-list (cddr redo-list)))
-
-	     ;; discard "was unmodified" elements
-	     ;; FIXME: deal properly with these
-	     ((and (consp elt) (eq (car elt) t))
-	      (setcdr redo-list (cddr redo-list)))
-
-	     ;; if element crosses region, we can't pull any more elements
-	     ((undo-elt-crosses-region elt start end)
-	      ;; if we've found a visible element, it must be earlier in
-	      ;; current node's changeset; stop pulling elements (null
-	      ;; `redo-list' and non-nil `got-visible-elt' cause loop to exit)
-	      (if got-visible-elt
-		  (setq redo-list nil)
-		;; if we haven't found a visible element yet, pulling
-		;; redo-in-region branch has failed
-		(setq region-changeset nil)
-		(throw 'abort t)))
-
-	     ;; if rejecting element, add its delta (if any) to the list
-	     (t
-	      (let ((delta (undo-delta elt)))
-		(when (/= 0 (cdr delta))
-		  (setcdr d (list delta))
-		  (setq d (cdr d))))
-	      (setq redo-list (cdr redo-list))))
-
-	    ;; process next element of current changeset
-	    (setq elt (cadr redo-list)))
-
-	  ;; if there are remaining elements in changeset, remove dummy nil
-	  ;; from front
-	  (if (cadr (undo-tree-node-redo node))
-	      (pop (undo-tree-node-undo node))
-	    ;; otherwise, if we've kept all elements in changeset, discard
-	    ;; empty changeset
-	    (if (eq fragment node)
-		(setq fragment (car (undo-tree-node-next fragment)))
-	      (undo-tree-snip-node node)))
-	  ;; process changeset from next node in fragment
-	  (setq node (car (undo-tree-node-next node)))))
-
-      ;; pop dummy nil from front of `region-changeset'
-      (setq region-changeset (cdr region-changeset))
-
-
-      ;; --- integrate branch into tree ---
-      (setq node (undo-tree-current buffer-undo-tree))
-      ;; if no redo-in-region elements were found, restore undo tree
-      (if (null (car region-changeset))
-	  (when (and repeated-redo-in-region fragment)
-	    (push fragment (undo-tree-node-next node))
-	    (setf (undo-tree-node-branch node) 0
-		  (undo-tree-node-previous fragment) node)
-	    nil)  ; return nil to indicate failure
-
-	;; otherwise, add redo-in-region node to top of fragment, and attach
-	;; it below current node
-	(setq fragment
-	      (if fragment
-		  (undo-tree-grow-backwards fragment nil region-changeset)
-		(undo-tree-make-node nil nil region-changeset)))
-	(push fragment (undo-tree-node-next node))
-	(setf (undo-tree-node-branch node) 0
-	      (undo-tree-node-previous fragment) node)
-	;; update undo-tree size
-	(unless repeated-redo-in-region
-	  (setq node fragment)
-	  (while (and (setq node (car (undo-tree-node-next node)))
-		      (incf (undo-tree-count buffer-undo-tree))
-		      (incf (undo-tree-size buffer-undo-tree)
-			    (undo-list-byte-size
-			     (undo-tree-node-redo node))))))
-	(incf (undo-tree-size buffer-undo-tree)
-	      (undo-list-byte-size (undo-tree-node-redo fragment)))
-	t)  ; indicate redo-in-region branch was successfully pulled
-      )))
-
-
-
-(defun undo-tree-adjust-elements-to-elt (node undo-elt &optional below)
-  "Adjust buffer positions of undo elements, starting at NODE's
-and going up the tree (or down the active branch if BELOW is
-non-nil) and through the nodes' undo elements until we reach
-UNDO-ELT.  UNDO-ELT must appear somewhere in the undo changeset
-of either NODE itself or some node above it in the tree."
-  (let ((delta (list (undo-delta undo-elt)))
-	(undo-list (undo-tree-node-undo node)))
-    ;; adjust elements until we reach UNDO-ELT
-    (while (and (car undo-list)
-		(not (eq (car undo-list) undo-elt)))
-      (setcar undo-list
-	      (undo-tree-apply-deltas (car undo-list) delta -1))
-      ;; move to next undo element in list, or to next node if we've run out
-      ;; of elements
-      (unless (car (setq undo-list (cdr undo-list)))
-	(if below
-	    (setq node (nth (undo-tree-node-branch node)
-			    (undo-tree-node-next node)))
-	  (setq node (undo-tree-node-previous node)))
-	(setq undo-list (undo-tree-node-undo node))))))
-
-
-
-(defun undo-tree-apply-deltas (undo-elt deltas &optional sgn)
-  ;; Apply DELTAS in order to UNDO-ELT, multiplying deltas by SGN
-  ;; (only useful value for SGN is -1).
-  (let (position offset)
-    (dolist (delta deltas)
-      (setq position (car delta)
-	    offset (* (cdr delta) (or sgn 1)))
-      (cond
-       ;; POSITION
-       ((integerp undo-elt)
-	(when (>= undo-elt position)
-	  (setq undo-elt (- undo-elt offset))))
-       ;; nil (or any other atom)
-       ((atom undo-elt))
-       ;; (TEXT . POSITION)
-       ((stringp (car undo-elt))
-	(let ((text-pos (abs (cdr undo-elt)))
-	      (point-at-end (< (cdr undo-elt) 0)))
-	  (if (>= text-pos position)
-	      (setcdr undo-elt (* (if point-at-end -1 1)
-				  (- text-pos offset))))))
-       ;; (BEGIN . END)
-       ((integerp (car undo-elt))
-	(when (>= (car undo-elt) position)
-	  (setcar undo-elt (- (car undo-elt) offset))
-	  (setcdr undo-elt (- (cdr undo-elt) offset))))
-       ;; (nil PROPERTY VALUE BEG . END)
-       ((null (car undo-elt))
-	(let ((tail (nthcdr 3 undo-elt)))
-	  (when (>= (car tail) position)
-	    (setcar tail (- (car tail) offset))
-	    (setcdr tail (- (cdr tail) offset)))))
-       ))
-    undo-elt))
-
-
-
-(defun undo-tree-repeated-undo-in-region-p (start end)
-  ;; Return non-nil if undo-in-region between START and END is a repeated
-  ;; undo-in-region
-  (let ((node (undo-tree-current buffer-undo-tree)))
-    (and (setq node
-	       (nth (undo-tree-node-branch node) (undo-tree-node-next node)))
-	 (eq (undo-tree-node-undo-beginning node) start)
-	 (eq (undo-tree-node-undo-end node) end))))
-
-
-(defun undo-tree-repeated-redo-in-region-p (start end)
-  ;; Return non-nil if undo-in-region between START and END is a repeated
-  ;; undo-in-region
-  (let ((node (undo-tree-current buffer-undo-tree)))
-    (and (eq (undo-tree-node-redo-beginning node) start)
-	 (eq (undo-tree-node-redo-end node) end))))
-
-
-;; Return non-nil if undo-in-region between START and END is simply
-;; reverting the last redo-in-region
-(defalias 'undo-tree-reverting-undo-in-region-p
-  'undo-tree-repeated-undo-in-region-p)
-
-
-;; Return non-nil if redo-in-region between START and END is simply
-;; reverting the last undo-in-region
-(defalias 'undo-tree-reverting-redo-in-region-p
-  'undo-tree-repeated-redo-in-region-p)
-
-
-
-
-;;; =====================================================================
-;;;                        Undo-tree commands
-
-;;;###autoload
-(define-minor-mode undo-tree-mode
-  "Toggle undo-tree mode.
-With no argument, this command toggles the mode.
-A positive prefix argument turns the mode on.
-A negative prefix argument turns it off.
-
-Undo-tree-mode replaces Emacs' standard undo feature with a more
-powerful yet easier to use version, that treats the undo history
-as what it is: a tree.
-
-The following keys are available in `undo-tree-mode':
-
-  \\{undo-tree-map}
-
-Within the undo-tree visualizer, the following keys are available:
-
-  \\{undo-tree-visualizer-mode-map}"
-
-  nil                       ; init value
-  undo-tree-mode-lighter    ; lighter
-  undo-tree-map             ; keymap
-
-  ;; if disabling `undo-tree-mode', rebuild `buffer-undo-list' from tree so
-  ;; Emacs undo can work
-  (when (not undo-tree-mode)
-    (undo-list-rebuild-from-tree)
-    (setq buffer-undo-tree nil)))
-
-
-(defun turn-on-undo-tree-mode (&optional print-message)
-  "Enable `undo-tree-mode' in the current buffer, when appropriate.
-Some major modes implement their own undo system, which should
-not normally be overridden by `undo-tree-mode'. This command does
-not enable `undo-tree-mode' in such buffers. If you want to force
-`undo-tree-mode' to be enabled regardless, use (undo-tree-mode 1)
-instead.
-
-The heuristic used to detect major modes in which
-`undo-tree-mode' should not be used is to check whether either
-the `undo' command has been remapped, or the default undo
-keybindings (C-/ and C-_) have been overridden somewhere other
-than in the global map. In addition, `undo-tree-mode' will not be
-enabled if the buffer's `major-mode' appears in
-`undo-tree-incompatible-major-modes'."
-  (interactive "p")
-  (if (or (key-binding [remap undo])
-	  (undo-tree-overridden-undo-bindings-p)
-	  (memq major-mode undo-tree-incompatible-major-modes))
-      (when print-message
-	(message "Buffer does not support undo-tree-mode;\
- undo-tree-mode NOT enabled"))
-    (undo-tree-mode 1)))
-
-
-(defun undo-tree-overridden-undo-bindings-p ()
-  "Returns t if default undo bindings are overridden, nil otherwise.
-Checks if either of the default undo key bindings (\"C-/\" or
-\"C-_\") are overridden in the current buffer by any keymap other
-than the global one. (So global redefinitions of the default undo
-key bindings do not count.)"
-  (let ((binding1 (lookup-key (current-global-map) [?\C-/]))
-	(binding2 (lookup-key (current-global-map) [?\C-_])))
-    (global-set-key [?\C-/] 'undo)
-    (global-set-key [?\C-_] 'undo)
-    (unwind-protect
-	(or (and (key-binding [?\C-/])
-		 (not (eq (key-binding [?\C-/]) 'undo)))
-	    (and (key-binding [?\C-_])
-		 (not (eq (key-binding [?\C-_]) 'undo))))
-      (global-set-key [?\C-/] binding1)
-      (global-set-key [?\C-_] binding2))))
-
-
-;;;###autoload
-(define-globalized-minor-mode global-undo-tree-mode
-  undo-tree-mode turn-on-undo-tree-mode)
-
-
-
-(defun undo-tree-undo (&optional arg)
-  "Undo changes.
-Repeat this command to undo more changes.
-A numeric ARG serves as a repeat count.
-
-In Transient Mark mode when the mark is active, only undo changes
-within the current region. Similarly, when not in Transient Mark
-mode, just \\[universal-argument] as an argument limits undo to
-changes within the current region."
-  (interactive "*P")
-  ;; throw error if undo is disabled in buffer
-  (when (eq buffer-undo-list t)
-    (user-error "No undo information in this buffer"))
-  (undo-tree-undo-1 arg)
-  ;; inform user if at branch point
-  (when (> (undo-tree-num-branches) 1) (message "Undo branch point!")))
-
-
-(defun undo-tree-undo-1 (&optional arg preserve-redo preserve-timestamps)
-  ;; Internal undo function. An active mark in `transient-mark-mode', or
-  ;; non-nil ARG otherwise, enables undo-in-region. Non-nil PRESERVE-REDO
-  ;; causes the existing redo record to be preserved, rather than replacing it
-  ;; with the new one generated by undoing. Non-nil PRESERVE-TIMESTAMPS
-  ;; disables updating of timestamps in visited undo-tree nodes. (This latter
-  ;; should *only* be used when temporarily visiting another undo state and
-  ;; immediately returning to the original state afterwards. Otherwise, it
-  ;; could cause history-discarding errors.)
-  (let ((undo-in-progress t)
-	(undo-in-region (and undo-tree-enable-undo-in-region
-			     (or (region-active-p)
-				 (and arg (not (numberp arg))))))
-	pos current)
-    ;; transfer entries accumulated in `buffer-undo-list' to
-    ;; `buffer-undo-tree'
-    (undo-list-transfer-to-tree)
-
-    (dotimes (i (or (and (numberp arg) (prefix-numeric-value arg)) 1))
-      ;; check if at top of undo tree
-      (unless (undo-tree-node-previous (undo-tree-current buffer-undo-tree))
-	(user-error "No further undo information"))
-
-      ;; if region is active, or a non-numeric prefix argument was supplied,
-      ;; try to pull out a new branch of changes affecting the region
-      (when (and undo-in-region
-		 (not (undo-tree-pull-undo-in-region-branch
-		       (region-beginning) (region-end))))
-	(user-error "No further undo information for region"))
-
-      ;; remove any GC'd elements from node's undo list
-      (setq current (undo-tree-current buffer-undo-tree))
-      (decf (undo-tree-size buffer-undo-tree)
-	    (undo-list-byte-size (undo-tree-node-undo current)))
-      (setf (undo-tree-node-undo current)
-	    (undo-list-clean-GCd-elts (undo-tree-node-undo current)))
-      (incf (undo-tree-size buffer-undo-tree)
-	    (undo-list-byte-size (undo-tree-node-undo current)))
-      ;; undo one record from undo tree
-      (when undo-in-region
-	(setq pos (set-marker (make-marker) (point)))
-	(set-marker-insertion-type pos t))
-      (primitive-undo 1 (undo-tree-copy-list (undo-tree-node-undo current)))
-      (undo-boundary)
-
-      ;; if preserving old redo record, discard new redo entries that
-      ;; `primitive-undo' has added to `buffer-undo-list', and remove any GC'd
-      ;; elements from node's redo list
-      (if preserve-redo
-	  (progn
-	    (undo-list-pop-changeset)
-	    (decf (undo-tree-size buffer-undo-tree)
-		  (undo-list-byte-size (undo-tree-node-redo current)))
-	    (setf (undo-tree-node-redo current)
-		  (undo-list-clean-GCd-elts (undo-tree-node-redo current)))
-	    (incf (undo-tree-size buffer-undo-tree)
-		  (undo-list-byte-size (undo-tree-node-redo current))))
-	;; otherwise, record redo entries that `primitive-undo' has added to
-	;; `buffer-undo-list' in current node's redo record, replacing
-	;; existing entry if one already exists
-	(decf (undo-tree-size buffer-undo-tree)
-	      (undo-list-byte-size (undo-tree-node-redo current)))
-	(setf (undo-tree-node-redo current)
-	      (undo-list-pop-changeset 'discard-pos))
-	(incf (undo-tree-size buffer-undo-tree)
-	      (undo-list-byte-size (undo-tree-node-redo current))))
-
-      ;; rewind current node and update timestamp
-      (setf (undo-tree-current buffer-undo-tree)
-	    (undo-tree-node-previous (undo-tree-current buffer-undo-tree)))
-      (unless preserve-timestamps
-	(setf (undo-tree-node-timestamp (undo-tree-current buffer-undo-tree))
-	      (current-time)))
-
-      ;; if undoing-in-region, record current node, region and direction so we
-      ;; can tell if undo-in-region is repeated, and re-activate mark if in
-      ;; `transient-mark-mode'; if not, erase any leftover data
-      (if (not undo-in-region)
-	  (undo-tree-node-clear-region-data current)
-	(goto-char pos)
-	;; note: we deliberately want to store the region information in the
-	;; node *below* the now current one
-	(setf (undo-tree-node-undo-beginning current) (region-beginning)
-	      (undo-tree-node-undo-end current) (region-end))
-	(set-marker pos nil)))
-
-    ;; undo deactivates mark unless undoing-in-region
-    (setq deactivate-mark (not undo-in-region))))
-
-
-
-(defun undo-tree-redo (&optional arg)
-  "Redo changes. A numeric ARG serves as a repeat count.
-
-In Transient Mark mode when the mark is active, only redo changes
-within the current region. Similarly, when not in Transient Mark
-mode, just \\[universal-argument] as an argument limits redo to
-changes within the current region."
-  (interactive "*P")
-  ;; throw error if undo is disabled in buffer
-  (when (eq buffer-undo-list t)
-    (user-error "No undo information in this buffer"))
-  (undo-tree-redo-1 arg)
-  ;; inform user if at branch point
-  (when (> (undo-tree-num-branches) 1) (message "Undo branch point!")))
-
-
-(defun undo-tree-redo-1 (&optional arg preserve-undo preserve-timestamps)
-  ;; Internal redo function. An active mark in `transient-mark-mode', or
-  ;; non-nil ARG otherwise, enables undo-in-region. Non-nil PRESERVE-UNDO
-  ;; causes the existing redo record to be preserved, rather than replacing it
-  ;; with the new one generated by undoing. Non-nil PRESERVE-TIMESTAMPS
-  ;; disables updating of timestamps in visited undo-tree nodes. (This latter
-  ;; should *only* be used when temporarily visiting another undo state and
-  ;; immediately returning to the original state afterwards. Otherwise, it
-  ;; could cause history-discarding errors.)
-  (let ((undo-in-progress t)
-	(redo-in-region (and undo-tree-enable-undo-in-region
-			     (or (region-active-p)
-				 (and arg (not (numberp arg))))))
-	pos current)
-    ;; transfer entries accumulated in `buffer-undo-list' to
-    ;; `buffer-undo-tree'
-    (undo-list-transfer-to-tree)
-
-    (dotimes (i (or (and (numberp arg) (prefix-numeric-value arg)) 1))
-      ;; check if at bottom of undo tree
-      (when (null (undo-tree-node-next (undo-tree-current buffer-undo-tree)))
-	(user-error "No further redo information"))
-
-      ;; if region is active, or a non-numeric prefix argument was supplied,
-      ;; try to pull out a new branch of changes affecting the region
-      (when (and redo-in-region
-		 (not (undo-tree-pull-redo-in-region-branch
-		       (region-beginning) (region-end))))
-	(user-error "No further redo information for region"))
-
-      ;; get next node (but DON'T advance current node in tree yet, in case
-      ;; redoing fails)
-      (setq current (undo-tree-current buffer-undo-tree)
-	    current (nth (undo-tree-node-branch current)
-			 (undo-tree-node-next current)))
-      ;; remove any GC'd elements from node's redo list
-      (decf (undo-tree-size buffer-undo-tree)
-	    (undo-list-byte-size (undo-tree-node-redo current)))
-      (setf (undo-tree-node-redo current)
-	    (undo-list-clean-GCd-elts (undo-tree-node-redo current)))
-      (incf (undo-tree-size buffer-undo-tree)
-	    (undo-list-byte-size (undo-tree-node-redo current)))
-      ;; redo one record from undo tree
-      (when redo-in-region
-	(setq pos (set-marker (make-marker) (point)))
-	(set-marker-insertion-type pos t))
-      (primitive-undo 1 (undo-tree-copy-list (undo-tree-node-redo current)))
-      (undo-boundary)
-      ;; advance current node in tree
-      (setf (undo-tree-current buffer-undo-tree) current)
-
-      ;; if preserving old undo record, discard new undo entries that
-      ;; `primitive-undo' has added to `buffer-undo-list', and remove any GC'd
-      ;; elements from node's redo list
-      (if preserve-undo
-	  (progn
-	    (undo-list-pop-changeset)
-	    (decf (undo-tree-size buffer-undo-tree)
-		  (undo-list-byte-size (undo-tree-node-undo current)))
-	    (setf (undo-tree-node-undo current)
-		  (undo-list-clean-GCd-elts (undo-tree-node-undo current)))
-	    (incf (undo-tree-size buffer-undo-tree)
-		  (undo-list-byte-size (undo-tree-node-undo current))))
-	;; otherwise, record undo entries that `primitive-undo' has added to
-	;; `buffer-undo-list' in current node's undo record, replacing
-	;; existing entry if one already exists
-	(decf (undo-tree-size buffer-undo-tree)
-	      (undo-list-byte-size (undo-tree-node-undo current)))
-	(setf (undo-tree-node-undo current)
-	      (undo-list-pop-changeset 'discard-pos))
-	(incf (undo-tree-size buffer-undo-tree)
-	      (undo-list-byte-size (undo-tree-node-undo current))))
-
-      ;; update timestamp
-      (unless preserve-timestamps
-	(setf (undo-tree-node-timestamp current) (current-time)))
-
-      ;; if redoing-in-region, record current node, region and direction so we
-      ;; can tell if redo-in-region is repeated, and re-activate mark if in
-      ;; `transient-mark-mode'
-      (if (not redo-in-region)
-	  (undo-tree-node-clear-region-data current)
-	(goto-char pos)
-	(setf (undo-tree-node-redo-beginning current) (region-beginning)
-	      (undo-tree-node-redo-end current) (region-end))
-	(set-marker pos nil)))
-
-    ;; redo deactivates the mark unless redoing-in-region
-    (setq deactivate-mark (not redo-in-region))))
-
-
-
-(defun undo-tree-switch-branch (branch)
-  "Switch to a different BRANCH of the undo tree.
-This will affect which branch to descend when *redoing* changes
-using `undo-tree-redo'."
-  (interactive (list (or (and prefix-arg (prefix-numeric-value prefix-arg))
-                         (and (not (eq buffer-undo-list t))
-			      (or (undo-list-transfer-to-tree) t)
-			      (let ((b (undo-tree-node-branch
-					(undo-tree-current
-					 buffer-undo-tree))))
-				(cond
-				 ;; switch to other branch if only 2
-				 ((= (undo-tree-num-branches) 2) (- 1 b))
-				 ;; prompt if more than 2
-				 ((> (undo-tree-num-branches) 2)
-				  (read-number
-				   (format "Branch (0-%d, on %d): "
-					   (1- (undo-tree-num-branches)) b)))
-				 ))))))
-  ;; throw error if undo is disabled in buffer
-  (when (eq buffer-undo-list t)
-    (user-error "No undo information in this buffer"))
-  ;; sanity check branch number
-  (when (<= (undo-tree-num-branches) 1)
-    (user-error "Not at undo branch point"))
-  (when (or (< branch 0) (> branch (1- (undo-tree-num-branches))))
-    (user-error "Invalid branch number"))
-  ;; transfer entries accumulated in `buffer-undo-list' to `buffer-undo-tree'
-  (undo-list-transfer-to-tree)
-  ;; switch branch
-  (setf (undo-tree-node-branch (undo-tree-current buffer-undo-tree))
-	branch)
-  (message "Switched to branch %d" branch))
-
-
-(defun undo-tree-set (node &optional preserve-timestamps)
-  ;; Set buffer to state corresponding to NODE. Returns intersection point
-  ;; between path back from current node and path back from selected NODE.
-  ;; Non-nil PRESERVE-TIMESTAMPS disables updating of timestamps in visited
-  ;; undo-tree nodes. (This should *only* be used when temporarily visiting
-  ;; another undo state and immediately returning to the original state
-  ;; afterwards. Otherwise, it could cause history-discarding errors.)
-  (let ((path (make-hash-table :test 'eq))
-        (n node))
-    (puthash (undo-tree-root buffer-undo-tree) t path)
-    ;; build list of nodes leading back from selected node to root, updating
-    ;; branches as we go to point down to selected node
-    (while (progn
-             (puthash n t path)
-             (when (undo-tree-node-previous n)
-               (setf (undo-tree-node-branch (undo-tree-node-previous n))
-                     (undo-tree-position
-                      n (undo-tree-node-next (undo-tree-node-previous n))))
-               (setq n (undo-tree-node-previous n)))))
-    ;; work backwards from current node until we intersect path back from
-    ;; selected node
-    (setq n (undo-tree-current buffer-undo-tree))
-    (while (not (gethash n path))
-      (setq n (undo-tree-node-previous n)))
-    ;; ascend tree until intersection node
-    (while (not (eq (undo-tree-current buffer-undo-tree) n))
-      (undo-tree-undo-1 nil nil preserve-timestamps))
-    ;; descend tree until selected node
-    (while (not (eq (undo-tree-current buffer-undo-tree) node))
-      (undo-tree-redo-1 nil nil preserve-timestamps))
-    n))  ; return intersection node
-
-
-
-(defun undo-tree-save-state-to-register (register)
-  "Store current undo-tree state to REGISTER.
-The saved state can be restored using
-`undo-tree-restore-state-from-register'.
-Argument is a character, naming the register."
-  (interactive "cUndo-tree state to register: ")
-  ;; throw error if undo is disabled in buffer
-  (when (eq buffer-undo-list t)
-    (user-error "No undo information in this buffer"))
-  ;; transfer entries accumulated in `buffer-undo-list' to `buffer-undo-tree'
-  (undo-list-transfer-to-tree)
-  ;; save current node to REGISTER
-  (set-register
-   register (registerv-make
-	     (undo-tree-make-register-data
-	      (current-buffer) (undo-tree-current buffer-undo-tree))
-	     :print-func 'undo-tree-register-data-print-func))
-  ;; record REGISTER in current node, for visualizer
-  (setf (undo-tree-node-register (undo-tree-current buffer-undo-tree))
-	register))
-
-
-
-(defun undo-tree-restore-state-from-register (register)
-  "Restore undo-tree state from REGISTER.
-The state must be saved using `undo-tree-save-state-to-register'.
-Argument is a character, naming the register."
-  (interactive "*cRestore undo-tree state from register: ")
-  ;; throw error if undo is disabled in buffer, or if register doesn't contain
-  ;; an undo-tree node
-  (let ((data (registerv-data (get-register register))))
-    (cond
-     ((eq buffer-undo-list t)
-      (user-error "No undo information in this buffer"))
-     ((not (undo-tree-register-data-p data))
-      (user-error "Register doesn't contain undo-tree state"))
-     ((not (eq (current-buffer) (undo-tree-register-data-buffer data)))
-      (user-error "Register contains undo-tree state for a different buffer")))
-    ;; transfer entries accumulated in `buffer-undo-list' to `buffer-undo-tree'
-    (undo-list-transfer-to-tree)
-    ;; restore buffer state corresponding to saved node
-    (undo-tree-set (undo-tree-register-data-node data))))
-
-
-
-
-;;; =====================================================================
-;;;                    Persistent storage commands
-
-(defun undo-tree-make-history-save-file-name (file)
-  "Create the undo history file name for FILE.
-Normally this is the file's name with \".\" prepended and
-\".~undo-tree~\" appended.
-
-A match for FILE is sought in `undo-tree-history-directory-alist'
-\(see the documentation of that variable for details\). If the
-directory for the backup doesn't exist, it is created."
-  (let* ((backup-directory-alist undo-tree-history-directory-alist)
-	 (name (make-backup-file-name-1 file)))
-    (concat (file-name-directory name) "." (file-name-nondirectory name)
-	    ".~undo-tree~")))
-
-
-(defun undo-tree-save-history (&optional filename overwrite)
-  "Store undo-tree history to file.
-
-If optional argument FILENAME is omitted, default save file is
-\".<buffer-file-name>.~undo-tree\" if buffer is visiting a file.
-Otherwise, prompt for one.
-
-If OVERWRITE is non-nil, any existing file will be overwritten
-without asking for confirmation."
-  (interactive)
-  (when (eq buffer-undo-list t)
-    (user-error "No undo information in this buffer"))
-  (undo-list-transfer-to-tree)
-  (when (and buffer-undo-tree (not (eq buffer-undo-tree t)))
-    (condition-case nil
-	(undo-tree-kill-visualizer)
-      (error (undo-tree-clear-visualizer-data buffer-undo-tree)))
-    (let ((buff (current-buffer))
-	  tree)
-      ;; get filename
-      (unless filename
-	(setq filename
-	      (if buffer-file-name
-		  (undo-tree-make-history-save-file-name buffer-file-name)
-		(expand-file-name (read-file-name "File to save in: ") nil))))
-      (when (or (not (file-exists-p filename))
-		overwrite
-		(yes-or-no-p (format "Overwrite \"%s\"? " filename)))
-	(unwind-protect
-	    (progn
-	      ;; transform undo-tree into non-circular structure, and make
-	      ;; temporary copy
-	      (undo-tree-decircle buffer-undo-tree)
-	      (setq tree (copy-undo-tree buffer-undo-tree))
-	      ;; discard undo-tree object pool before saving
-	      (setf (undo-tree-object-pool tree) nil)
-	      ;; print undo-tree to file
-	      ;; NOTE: We use `with-temp-buffer' instead of `with-temp-file'
-	      ;;       to allow `auto-compression-mode' to take effect, in
-	      ;;       case user has overridden or advised the default
-	      ;;       `undo-tree-make-history-save-file-name' to add a
-	      ;;       compressed file extension.
-	      (with-auto-compression-mode
-		(with-temp-buffer
-		  (prin1 (sha1 buff) (current-buffer))
-		  (terpri (current-buffer))
-		  (let ((print-circle t)) (prin1 tree (current-buffer)))
-		  (write-region nil nil filename))))
-	  ;; restore circular undo-tree data structure
-	  (undo-tree-recircle buffer-undo-tree))
-	))))
-
-
-
-(defun undo-tree-load-history (&optional filename noerror)
-  "Load undo-tree history from file.
-
-If optional argument FILENAME is null, default load file is
-\".<buffer-file-name>.~undo-tree\" if buffer is visiting a file.
-Otherwise, prompt for one.
-
-If optional argument NOERROR is non-nil, return nil instead of
-signaling an error if file is not found."
-  (interactive)
-  ;; get filename
-  (unless filename
-    (setq filename
-	  (if buffer-file-name
-	      (undo-tree-make-history-save-file-name buffer-file-name)
-	    (expand-file-name (read-file-name "File to load from: ") nil))))
-
-  ;; attempt to read undo-tree from FILENAME
-  (catch 'load-error
-    (unless (file-exists-p filename)
-      (if noerror
-	  (throw 'load-error nil)
-	(error "File \"%s\" does not exist; could not load undo-tree history"
-	       filename)))
-    (let (buff hash tree)
-      (setq buff (current-buffer))
-      (with-auto-compression-mode
-	(with-temp-buffer
-	  (insert-file-contents filename)
-	  (goto-char (point-min))
-	  (condition-case nil
-	      (setq hash (read (current-buffer)))
-	    (error
-	     (kill-buffer nil)
-	     (funcall (if noerror 'message 'user-error)
-		      "Error reading undo-tree history from \"%s\"" filename)
-	     (throw 'load-error nil)))
-	  (unless (string= (sha1 buff) hash)
-	    (kill-buffer nil)
-	    (funcall (if noerror 'message 'user-error)
-		     "Buffer has been modified; could not load undo-tree history")
-	    (throw 'load-error nil))
-	  (condition-case nil
-	      (setq tree (read (current-buffer)))
-	    (error
-	     (kill-buffer nil)
-	     (funcall (if noerror 'message 'error)
-		      "Error reading undo-tree history from \"%s\"" filename)
-	     (throw 'load-error nil)))
-	  (kill-buffer nil)))
-      ;; initialise empty undo-tree object pool
-      (setf (undo-tree-object-pool tree)
-	    (make-hash-table :test 'eq :weakness 'value))
-      ;; restore circular undo-tree data structure
-      (undo-tree-recircle tree)
-      (setq buffer-undo-tree tree))))
-
-
-
-;; Versions of save/load functions for use in hooks
-(defun undo-tree-save-history-hook ()
-  (when (and undo-tree-mode undo-tree-auto-save-history
-	     (not (eq buffer-undo-list t)))
-    (undo-tree-save-history nil t) nil))
-
-(defun undo-tree-load-history-hook ()
-  (when (and undo-tree-mode undo-tree-auto-save-history
-	     (not (eq buffer-undo-list t))
-	     (not revert-buffer-in-progress-p))
-    (undo-tree-load-history nil t)))
-
-
-
-
-;;; =====================================================================
-;;;                    Visualizer drawing functions
-
-(defun undo-tree-visualize ()
-  "Visualize the current buffer's undo tree."
-  (interactive "*")
-  (deactivate-mark)
-  ;; throw error if undo is disabled in buffer
-  (when (eq buffer-undo-list t)
-    (user-error "No undo information in this buffer"))
-  ;; transfer entries accumulated in `buffer-undo-list' to `buffer-undo-tree'
-  (undo-list-transfer-to-tree)
-  ;; add hook to kill visualizer buffer if original buffer is changed
-  (add-hook 'before-change-functions 'undo-tree-kill-visualizer nil t)
-  ;; prepare *undo-tree* buffer, then draw tree in it
-  (let ((undo-tree buffer-undo-tree)
-        (buff (current-buffer))
-	(display-buffer-mark-dedicated 'soft))
-    (switch-to-buffer-other-window
-     (get-buffer-create undo-tree-visualizer-buffer-name))
-    (setq undo-tree-visualizer-parent-buffer buff)
-    (setq undo-tree-visualizer-parent-mtime
-	  (and (buffer-file-name buff)
-	       (nth 5 (file-attributes (buffer-file-name buff)))))
-    (setq undo-tree-visualizer-initial-node (undo-tree-current undo-tree))
-    (setq undo-tree-visualizer-spacing
-	  (undo-tree-visualizer-calculate-spacing))
-    (make-local-variable 'undo-tree-visualizer-timestamps)
-    (make-local-variable 'undo-tree-visualizer-diff)
-    (setq buffer-undo-tree undo-tree)
-    (undo-tree-visualizer-mode)
-    ;; FIXME; don't know why `undo-tree-visualizer-mode' clears this
-    (setq buffer-undo-tree undo-tree)
-    (set (make-local-variable 'undo-tree-visualizer-lazy-drawing)
-	 (or (eq undo-tree-visualizer-lazy-drawing t)
-	     (and (numberp undo-tree-visualizer-lazy-drawing)
-		  (>= (undo-tree-count undo-tree)
-		      undo-tree-visualizer-lazy-drawing))))
-    (when undo-tree-visualizer-diff (undo-tree-visualizer-show-diff))
-    (let ((inhibit-read-only t)) (undo-tree-draw-tree undo-tree))))
-
-
-(defun undo-tree-kill-visualizer (&rest _dummy)
-  ;; Kill visualizer. Added to `before-change-functions' hook of original
-  ;; buffer when visualizer is invoked.
-  (unless (or undo-tree-inhibit-kill-visualizer
-	      (null (get-buffer undo-tree-visualizer-buffer-name)))
-    (with-current-buffer undo-tree-visualizer-buffer-name
-      (undo-tree-visualizer-quit))))
-
-
-
-(defun undo-tree-draw-tree (undo-tree)
-  ;; Draw undo-tree in current buffer starting from NODE (or root if nil).
-  (let ((node (if undo-tree-visualizer-lazy-drawing
-		  (undo-tree-current undo-tree)
-		(undo-tree-root undo-tree))))
-    (erase-buffer)
-    (setq undo-tree-visualizer-needs-extending-down nil
-	  undo-tree-visualizer-needs-extending-up nil)
-    (undo-tree-clear-visualizer-data undo-tree)
-    (undo-tree-compute-widths node)
-    ;; lazy drawing starts vertically centred and displaced horizontally to
-    ;; the left (window-width/4), since trees will typically grow right
-    (if undo-tree-visualizer-lazy-drawing
-	(progn
-	  (undo-tree-move-down (/ (window-height) 2))
-	  (undo-tree-move-forward (max 2 (/ (window-width) 4)))) ; left margin
-      ;; non-lazy drawing starts in centre at top of buffer
-      (undo-tree-move-down 1)  ; top margin
-      (undo-tree-move-forward
-       (max (/ (window-width) 2)
-	    (+ (undo-tree-node-char-lwidth node)
-	       ;; add space for left part of left-most time-stamp
-	       (if undo-tree-visualizer-timestamps
-		   (/ (- undo-tree-visualizer-spacing 4) 2)
-		 0)
-	       2))))  ; left margin
-    ;; link starting node to its representation in visualizer
-    (setf (undo-tree-node-marker node) (make-marker))
-    (set-marker-insertion-type (undo-tree-node-marker node) nil)
-    (move-marker (undo-tree-node-marker node) (point))
-    ;; draw undo-tree
-    (let ((undo-tree-insert-face 'undo-tree-visualizer-default-face)
-	  node-list)
-      (if (not undo-tree-visualizer-lazy-drawing)
-	  (undo-tree-extend-down node t)
-	(undo-tree-extend-down node)
-	(undo-tree-extend-up node)
-	(setq node-list undo-tree-visualizer-needs-extending-down
-	      undo-tree-visualizer-needs-extending-down nil)
-	(while node-list (undo-tree-extend-down (pop node-list)))))
-    ;; highlight active branch
-    (let ((undo-tree-insert-face 'undo-tree-visualizer-active-branch-face))
-      (undo-tree-highlight-active-branch
-       (or undo-tree-visualizer-needs-extending-up
-	   (undo-tree-root undo-tree))))
-    ;; highlight current node
-    (undo-tree-draw-node (undo-tree-current undo-tree) 'current)))
-
-
-(defun undo-tree-extend-down (node &optional bottom)
-  ;; Extend tree downwards starting from NODE and point. If BOTTOM is t,
-  ;; extend all the way down to the leaves. If BOTTOM is a node, extend down
-  ;; as far as that node. If BOTTOM is an integer, extend down as far as that
-  ;; line. Otherwise, only extend visible portion of tree. NODE is assumed to
-  ;; already have a node marker. Returns non-nil if anything was actually
-  ;; extended.
-  (let ((extended nil)
-	(cur-stack (list node))
-	next-stack)
-    ;; don't bother extending if BOTTOM specifies an already-drawn node
-    (unless (and (undo-tree-node-p bottom) (undo-tree-node-marker bottom))
-      ;; draw nodes layer by layer
-      (while (or cur-stack
-		 (prog1 (setq cur-stack next-stack)
-		   (setq next-stack nil)))
-	(setq node (pop cur-stack))
-	;; if node is within range being drawn...
-	(if (or (eq bottom t)
-		(and (undo-tree-node-p bottom)
-		     (not (eq (undo-tree-node-previous node) bottom)))
-		(and (integerp bottom)
-		     (>= bottom (line-number-at-pos
-				 (undo-tree-node-marker node))))
-		(and (null bottom)
-		     (pos-visible-in-window-p (undo-tree-node-marker node)
-					      nil t)))
-	    ;; ...draw one layer of node's subtree (if not already drawn)
-	    (progn
-	      (unless (and (undo-tree-node-next node)
-			   (undo-tree-node-marker
-			    (nth (undo-tree-node-branch node)
-				 (undo-tree-node-next node))))
-		(goto-char (undo-tree-node-marker node))
-		(undo-tree-draw-subtree node)
-		(setq extended t))
-	      (setq next-stack
-		    (append (undo-tree-node-next node) next-stack)))
-	  ;; ...otherwise, postpone drawing until later
-	  (push node undo-tree-visualizer-needs-extending-down))))
-    extended))
-
-
-(defun undo-tree-extend-up (node &optional top)
-  ;; Extend tree upwards starting from NODE. If TOP is t, extend all the way
-  ;; to root. If TOP is a node, extend up as far as that node. If TOP is an
-  ;; integer, extend up as far as that line. Otherwise, only extend visible
-  ;; portion of tree. NODE is assumed to already have a node marker. Returns
-  ;; non-nil if anything was actually extended.
-  (let ((extended nil) parent)
-    ;; don't bother extending if TOP specifies an already-drawn node
-    (unless (and (undo-tree-node-p top) (undo-tree-node-marker top))
-      (while node
-	(setq parent (undo-tree-node-previous node))
-	;; if we haven't reached root...
-	(if parent
-	    ;; ...and node is within range being drawn...
-	    (if (or (eq top t)
-		    (and (undo-tree-node-p top) (not (eq node top)))
-		    (and (integerp top)
-			 (< top (line-number-at-pos
-				 (undo-tree-node-marker node))))
-		    (and (null top)
-			 ;; NOTE: we check point in case window-start is outdated
-			 (< (min (line-number-at-pos (point))
-				 (line-number-at-pos (window-start)))
-			    (line-number-at-pos
-			     (undo-tree-node-marker node)))))
-		;; ...and it hasn't already been drawn
-		(when (not (undo-tree-node-marker parent))
-		  ;; link parent node to its representation in visualizer
-		  (undo-tree-compute-widths parent)
-		  (undo-tree-move-to-parent node)
-		  (setf (undo-tree-node-marker parent) (make-marker))
-		  (set-marker-insertion-type
-		   (undo-tree-node-marker parent) nil)
-		  (move-marker (undo-tree-node-marker parent) (point))
-		  ;; draw subtree beneath parent
-		  (setq undo-tree-visualizer-needs-extending-down
-			(nconc (delq node (undo-tree-draw-subtree parent))
-			       undo-tree-visualizer-needs-extending-down))
-		  (setq extended t))
-	      ;; ...otherwise, postpone drawing for later and exit
-	      (setq undo-tree-visualizer-needs-extending-up (when parent node)
-		    parent nil))
-
-	  ;; if we've reached root, stop extending and add top margin
-	  (setq undo-tree-visualizer-needs-extending-up nil)
-	  (goto-char (undo-tree-node-marker node))
-	  (undo-tree-move-up 1)  ; top margin
-	  (delete-region (point-min) (line-beginning-position)))
-	;; next iteration
-	(setq node parent)))
-    extended))
-
-
-(defun undo-tree-expand-down (from &optional to)
-  ;; Expand tree downwards. FROM is the node to start expanding from. Stop
-  ;; expanding at TO if specified. Otherwise, just expand visible portion of
-  ;; tree and highlight active branch from FROM.
-  (when undo-tree-visualizer-needs-extending-down
-    (let ((inhibit-read-only t)
-	  node-list extended)
-      ;; extend down as far as TO node
-      (when to
-	(setq extended (undo-tree-extend-down from to))
-	(goto-char (undo-tree-node-marker to))
-	(redisplay t))  ; force redisplay to scroll buffer if necessary
-      ;; extend visible portion of tree downwards
-      (setq node-list undo-tree-visualizer-needs-extending-down
-	    undo-tree-visualizer-needs-extending-down nil)
-      (when node-list
-	(dolist (n node-list)
-	  (when (undo-tree-extend-down n) (setq extended t)))
-	;; highlight active branch in newly-extended-down portion, if any
-	(when extended
-	  (let ((undo-tree-insert-face
-		 'undo-tree-visualizer-active-branch-face))
-	    (undo-tree-highlight-active-branch from)))))))
-
-
-(defun undo-tree-expand-up (from &optional to)
-  ;; Expand tree upwards. FROM is the node to start expanding from, TO is the
-  ;; node to stop expanding at. If TO node isn't specified, just expand visible
-  ;; portion of tree and highlight active branch down to FROM.
-  (when undo-tree-visualizer-needs-extending-up
-    (let ((inhibit-read-only t)
-	  extended node-list)
-      ;; extend up as far as TO node
-      (when to
-	(setq extended (undo-tree-extend-up from to))
-	(goto-char (undo-tree-node-marker to))
-	;; simulate auto-scrolling if close to top of buffer
-	(when (<= (line-number-at-pos (point)) scroll-margin)
-	  (undo-tree-move-up (if (= scroll-conservatively 0)
-				 (/ (window-height) 2) 3))
-	  (when (undo-tree-extend-up to) (setq extended t))
-	  (goto-char (undo-tree-node-marker to))
-	  (unless (= scroll-conservatively 0) (recenter scroll-margin))))
-      ;; extend visible portion of tree upwards
-      (and undo-tree-visualizer-needs-extending-up
-	   (undo-tree-extend-up undo-tree-visualizer-needs-extending-up)
-	   (setq extended t))
-      ;; extend visible portion of tree downwards
-      (setq node-list undo-tree-visualizer-needs-extending-down
-	    undo-tree-visualizer-needs-extending-down nil)
-      (dolist (n node-list) (undo-tree-extend-down n))
-      ;; highlight active branch in newly-extended-up portion, if any
-      (when extended
-	(let ((undo-tree-insert-face
-	       'undo-tree-visualizer-active-branch-face))
-	  (undo-tree-highlight-active-branch
-	   (or undo-tree-visualizer-needs-extending-up
-	       (undo-tree-root buffer-undo-tree))
-	   from))))))
-
-
-
-(defun undo-tree-highlight-active-branch (node &optional end)
-  ;; Draw highlighted active branch below NODE in current buffer. Stop
-  ;; highlighting at END node if specified.
-  (let ((stack (list node)))
-    ;; draw active branch
-    (while stack
-      (setq node (pop stack))
-      (unless (or (eq node end)
-		  (memq node undo-tree-visualizer-needs-extending-down))
-	(goto-char (undo-tree-node-marker node))
-	(setq node (undo-tree-draw-subtree node 'active)
-	      stack (nconc stack node))))))
-
-
-(defun undo-tree-draw-node (node &optional current)
-  ;; Draw symbol representing NODE in visualizer. If CURRENT is non-nil, node
-  ;; is current node.
-  (goto-char (undo-tree-node-marker node))
-  (when undo-tree-visualizer-timestamps
-    (undo-tree-move-backward (/ undo-tree-visualizer-spacing 2)))
-
-  (let* ((undo-tree-insert-face (and undo-tree-insert-face
-				     (or (and (consp undo-tree-insert-face)
-					      undo-tree-insert-face)
-					 (list undo-tree-insert-face))))
-	 (register (undo-tree-node-register node))
-	 (unmodified (if undo-tree-visualizer-parent-mtime
-			 (undo-tree-node-unmodified-p
-			  node undo-tree-visualizer-parent-mtime)
-		       (undo-tree-node-unmodified-p node)))
-	node-string)
-    ;; check node's register (if any) still stores appropriate undo-tree state
-    (unless (and register
-		 (undo-tree-register-data-p
-		  (registerv-data (get-register register)))
-		 (eq node (undo-tree-register-data-node
-			   (registerv-data (get-register register)))))
-      (setq register nil))
-    ;; represent node by different symbols, depending on whether it's the
-    ;; current node, is saved in a register, or corresponds to an unmodified
-    ;; buffer
-    (setq node-string
-	    (cond
-	     (undo-tree-visualizer-timestamps
-	        (undo-tree-timestamp-to-string
-	         (undo-tree-node-timestamp node)
-		 undo-tree-visualizer-relative-timestamps
-		 current register))
-	     (register (char-to-string register))
-	     (unmodified "s")
-	     (current "x")
-	     (t "o"))
-	  undo-tree-insert-face
-	    (nconc
-	     (cond
-	      (current    '(undo-tree-visualizer-current-face))
-	      (unmodified '(undo-tree-visualizer-unmodified-face))
-	      (register   '(undo-tree-visualizer-register-face)))
-	     undo-tree-insert-face))
-    ;; draw node and link it to its representation in visualizer
-    (undo-tree-insert node-string)
-    (undo-tree-move-backward (if undo-tree-visualizer-timestamps
-				 (1+ (/ undo-tree-visualizer-spacing 2))
-			       1))
-    (move-marker (undo-tree-node-marker node) (point))
-    (put-text-property (point) (1+ (point)) 'undo-tree-node node)))
-
-
-(defun undo-tree-draw-subtree (node &optional active-branch)
-  ;; Draw subtree rooted at NODE. The subtree will start from point.
-  ;; If ACTIVE-BRANCH is non-nil, just draw active branch below NODE. Returns
-  ;; list of nodes below NODE.
-  (let ((num-children (length (undo-tree-node-next node)))
-        node-list pos trunk-pos n)
-    ;; draw node itself
-    (undo-tree-draw-node node)
-
-    (cond
-     ;; if we're at a leaf node, we're done
-     ((= num-children 0))
-
-     ;; if node has only one child, draw it (not strictly necessary to deal
-     ;; with this case separately, but as it's by far the most common case
-     ;; this makes the code clearer and more efficient)
-     ((= num-children 1)
-      (undo-tree-move-down 1)
-      (undo-tree-insert ?|)
-      (undo-tree-move-backward 1)
-      (undo-tree-move-down 1)
-      (undo-tree-insert ?|)
-      (undo-tree-move-backward 1)
-      (undo-tree-move-down 1)
-      (setq n (car (undo-tree-node-next node)))
-      ;; link next node to its representation in visualizer
-      (unless (markerp (undo-tree-node-marker n))
-        (setf (undo-tree-node-marker n) (make-marker))
-        (set-marker-insertion-type (undo-tree-node-marker n) nil))
-      (move-marker (undo-tree-node-marker n) (point))
-      ;; add next node to list of nodes to draw next
-      (push n node-list))
-
-     ;; if node has multiple children, draw branches
-     (t
-      (undo-tree-move-down 1)
-      (undo-tree-insert ?|)
-      (undo-tree-move-backward 1)
-      (move-marker (setq trunk-pos (make-marker)) (point))
-      ;; left subtrees
-      (undo-tree-move-backward
-       (- (undo-tree-node-char-lwidth node)
-          (undo-tree-node-char-lwidth
-           (car (undo-tree-node-next node)))))
-      (move-marker (setq pos (make-marker)) (point))
-      (setq n (cons nil (undo-tree-node-next node)))
-      (dotimes (i (/ num-children 2))
-        (setq n (cdr n))
-        (when (or (null active-branch)
-                  (eq (car n)
-                      (nth (undo-tree-node-branch node)
-                           (undo-tree-node-next node))))
-          (undo-tree-move-forward 2)
-          (undo-tree-insert ?_ (- trunk-pos pos 2))
-          (goto-char pos)
-          (undo-tree-move-forward 1)
-          (undo-tree-move-down 1)
-          (undo-tree-insert ?/)
-          (undo-tree-move-backward 2)
-          (undo-tree-move-down 1)
-          ;; link node to its representation in visualizer
-          (unless (markerp (undo-tree-node-marker (car n)))
-            (setf (undo-tree-node-marker (car n)) (make-marker))
-            (set-marker-insertion-type (undo-tree-node-marker (car n)) nil))
-          (move-marker (undo-tree-node-marker (car n)) (point))
-          ;; add node to list of nodes to draw next
-          (push (car n) node-list))
-        (goto-char pos)
-        (undo-tree-move-forward
-         (+ (undo-tree-node-char-rwidth (car n))
-            (undo-tree-node-char-lwidth (cadr n))
-            undo-tree-visualizer-spacing 1))
-        (move-marker pos (point)))
-      ;; middle subtree (only when number of children is odd)
-      (when (= (mod num-children 2) 1)
-        (setq n (cdr n))
-        (when (or (null active-branch)
-                  (eq (car n)
-                      (nth (undo-tree-node-branch node)
-                           (undo-tree-node-next node))))
-          (undo-tree-move-down 1)
-          (undo-tree-insert ?|)
-          (undo-tree-move-backward 1)
-          (undo-tree-move-down 1)
-          ;; link node to its representation in visualizer
-          (unless (markerp (undo-tree-node-marker (car n)))
-            (setf (undo-tree-node-marker (car n)) (make-marker))
-            (set-marker-insertion-type (undo-tree-node-marker (car n)) nil))
-          (move-marker (undo-tree-node-marker (car n)) (point))
-          ;; add node to list of nodes to draw next
-          (push (car n) node-list))
-        (goto-char pos)
-        (undo-tree-move-forward
-         (+ (undo-tree-node-char-rwidth (car n))
-            (if (cadr n) (undo-tree-node-char-lwidth (cadr n)) 0)
-            undo-tree-visualizer-spacing 1))
-        (move-marker pos (point)))
-      ;; right subtrees
-      (move-marker trunk-pos (1+ trunk-pos))
-      (dotimes (i (/ num-children 2))
-        (setq n (cdr n))
-        (when (or (null active-branch)
-                  (eq (car n)
-                      (nth (undo-tree-node-branch node)
-                           (undo-tree-node-next node))))
-          (goto-char trunk-pos)
-          (undo-tree-insert ?_ (- pos trunk-pos 1))
-          (goto-char pos)
-          (undo-tree-move-backward 1)
-          (undo-tree-move-down 1)
-          (undo-tree-insert ?\\)
-          (undo-tree-move-down 1)
-          ;; link node to its representation in visualizer
-          (unless (markerp (undo-tree-node-marker (car n)))
-            (setf (undo-tree-node-marker (car n)) (make-marker))
-            (set-marker-insertion-type (undo-tree-node-marker (car n)) nil))
-          (move-marker (undo-tree-node-marker (car n)) (point))
-          ;; add node to list of nodes to draw next
-          (push (car n) node-list))
-        (when (cdr n)
-          (goto-char pos)
-          (undo-tree-move-forward
-           (+ (undo-tree-node-char-rwidth (car n))
-              (if (cadr n) (undo-tree-node-char-lwidth (cadr n)) 0)
-              undo-tree-visualizer-spacing 1))
-          (move-marker pos (point))))
-      ))
-    ;; return list of nodes to draw next
-    (nreverse node-list)))
-
-
-(defun undo-tree-node-char-lwidth (node)
-  ;; Return left-width of NODE measured in characters.
-  (if (= (length (undo-tree-node-next node)) 0) 0
-    (- (* (+ undo-tree-visualizer-spacing 1) (undo-tree-node-lwidth node))
-       (if (= (undo-tree-node-cwidth node) 0)
-           (1+ (/ undo-tree-visualizer-spacing 2)) 0))))
-
-
-(defun undo-tree-node-char-rwidth (node)
-  ;; Return right-width of NODE measured in characters.
-  (if (= (length (undo-tree-node-next node)) 0) 0
-    (- (* (+ undo-tree-visualizer-spacing 1) (undo-tree-node-rwidth node))
-       (if (= (undo-tree-node-cwidth node) 0)
-           (1+ (/ undo-tree-visualizer-spacing 2)) 0))))
-
-
-(defun undo-tree-insert (str &optional arg)
-  ;; Insert character or string STR ARG times, overwriting, and using
-  ;; `undo-tree-insert-face'.
-  (unless arg (setq arg 1))
-  (when (characterp str)
-    (setq str (make-string arg str))
-    (setq arg 1))
-  (dotimes (i arg) (insert str))
-  (setq arg (* arg (length str)))
-  (undo-tree-move-forward arg)
-  ;; make sure mark isn't active, otherwise `backward-delete-char' might
-  ;; delete region instead of single char if transient-mark-mode is enabled
-  (setq mark-active nil)
-  (backward-delete-char arg)
-  (when undo-tree-insert-face
-    (put-text-property (- (point) arg) (point) 'face undo-tree-insert-face)))
-
-
-(defun undo-tree-move-down (&optional arg)
-  ;; Move down, extending buffer if necessary.
-  (let ((row (line-number-at-pos))
-        (col (current-column))
-        line)
-    (unless arg (setq arg 1))
-    (forward-line arg)
-    (setq line (line-number-at-pos))
-    ;; if buffer doesn't have enough lines, add some
-    (when (/= line (+ row arg))
-      (cond
-       ((< arg 0)
-	(insert (make-string (- line row arg) ?\n))
-	(forward-line (+ arg (- row line))))
-       (t (insert (make-string (- arg (- line row)) ?\n)))))
-    (undo-tree-move-forward col)))
-
-
-(defun undo-tree-move-up (&optional arg)
-  ;; Move up, extending buffer if necessary.
-  (unless arg (setq arg 1))
-  (undo-tree-move-down (- arg)))
-
-
-(defun undo-tree-move-forward (&optional arg)
-  ;; Move forward, extending buffer if necessary.
-  (unless arg (setq arg 1))
-  (let (n)
-    (cond
-     ((>= arg 0)
-      (setq n (- (line-end-position) (point)))
-      (if (> n arg)
-	  (forward-char arg)
-	(end-of-line)
-	(insert (make-string (- arg n) ? ))))
-     ((< arg 0)
-      (setq arg (- arg))
-      (setq n (- (point) (line-beginning-position)))
-      (when (< (- n 2) arg)  ; -2 to create left-margin
-	;; no space left - shift entire buffer contents right!
-	(let ((pos (move-marker (make-marker) (point))))
-	  (set-marker-insertion-type pos t)
-	  (goto-char (point-min))
-	  (while (not (eobp))
-	    (insert-before-markers (make-string (- arg -2 n) ? ))
-	    (forward-line 1))
-	  (goto-char pos)))
-      (backward-char arg)))))
-
-
-(defun undo-tree-move-backward (&optional arg)
-  ;; Move backward, extending buffer if necessary.
-  (unless arg (setq arg 1))
-  (undo-tree-move-forward (- arg)))
-
-
-(defun undo-tree-move-to-parent (node)
-  ;; Move to position of parent of NODE, extending buffer if necessary.
-  (let* ((parent (undo-tree-node-previous node))
-	 (n (undo-tree-node-next parent))
-	 (l (length n)) p)
-    (goto-char (undo-tree-node-marker node))
-    (unless (= l 1)
-      ;; move horizontally
-      (setq p (undo-tree-position node n))
-      (cond
-       ;; node in centre subtree: no horizontal movement
-       ((and (= (mod l 2) 1) (= p (/ l 2))))
-       ;; node in left subtree: move right
-       ((< p (/ l 2))
-	(setq n (nthcdr p n))
-	(undo-tree-move-forward
-	 (+ (undo-tree-node-char-rwidth (car n))
-	    (/ undo-tree-visualizer-spacing 2) 1))
-	(dotimes (i (- (/ l 2) p 1))
-	  (setq n (cdr n))
-	  (undo-tree-move-forward
-	   (+ (undo-tree-node-char-lwidth (car n))
-	      (undo-tree-node-char-rwidth (car n))
-	      undo-tree-visualizer-spacing 1)))
-	(when (= (mod l 2) 1)
-	  (setq n (cdr n))
-	  (undo-tree-move-forward
-	   (+ (undo-tree-node-char-lwidth (car n))
-	      (/ undo-tree-visualizer-spacing 2) 1))))
-       (t ;; node in right subtree: move left
-	(setq n (nthcdr (/ l 2) n))
-	(when (= (mod l 2) 1)
-	  (undo-tree-move-backward
-	   (+ (undo-tree-node-char-rwidth (car n))
-	      (/ undo-tree-visualizer-spacing 2) 1))
-	  (setq n (cdr n)))
-	(dotimes (i (- p (/ l 2) (mod l 2)))
-	  (undo-tree-move-backward
-	   (+ (undo-tree-node-char-lwidth (car n))
-	      (undo-tree-node-char-rwidth (car n))
-	      undo-tree-visualizer-spacing 1))
-	  (setq n (cdr n)))
-	(undo-tree-move-backward
-	 (+ (undo-tree-node-char-lwidth (car n))
-	    (/ undo-tree-visualizer-spacing 2) 1)))))
-    ;; move vertically
-    (undo-tree-move-up 3)))
-
-
-(defun undo-tree-timestamp-to-string
-  (timestamp &optional relative current register)
-  ;; Convert TIMESTAMP to string (either absolute or RELATVE time), indicating
-  ;; if it's the CURRENT node and/or has an associated REGISTER.
-  (if relative
-      ;; relative time
-      (let ((time (floor (float-time
-			  (subtract-time (current-time) timestamp))))
-	    n)
-	(setq time
-	      ;; years
-	      (if (> (setq n (/ time 315360000)) 0)
-		  (if (> n 999) "-ages" (format "-%dy" n))
-		(setq time (% time 315360000))
-		;; days
-		(if (> (setq n (/ time 86400)) 0)
-		    (format "-%dd" n)
-		  (setq time (% time 86400))
-		  ;; hours
-		  (if (> (setq n (/ time 3600)) 0)
-		      (format "-%dh" n)
-		    (setq time (% time 3600))
-		    ;; mins
-		    (if (> (setq n (/ time 60)) 0)
-			(format "-%dm" n)
-		      ;; secs
-		      (format "-%ds" (% time 60)))))))
-	(setq time (concat
-		    (if current "*" " ")
-		    time
-		    (if register (concat "[" (char-to-string register) "]")
-		      "   ")))
-	(setq n (length time))
-	(if (< n 9)
-	    (concat (make-string (- 9 n) ? ) time)
-	  time))
-    ;; absolute time
-    (concat (if current " *" "  ")
-	    (format-time-string "%H:%M:%S" timestamp)
-	    (if register
-		(concat "[" (char-to-string register) "]")
-	      "   "))))
-
-
-
-
-;;; =====================================================================
-;;;                        Visualizer commands
-
-(define-derived-mode
-  undo-tree-visualizer-mode special-mode "undo-tree-visualizer"
-  "Major mode used in undo-tree visualizer.
-
-The undo-tree visualizer can only be invoked from a buffer in
-which `undo-tree-mode' is enabled. The visualizer displays the
-undo history tree graphically, and allows you to browse around
-the undo history, undoing or redoing the corresponding changes in
-the parent buffer.
-
-Within the undo-tree visualizer, the following keys are available:
-
-  \\{undo-tree-visualizer-mode-map}"
-  :syntax-table nil
-  :abbrev-table nil
-  (setq truncate-lines t)
-  (setq cursor-type nil)
-  (setq undo-tree-visualizer-selected-node nil))
-
-
-
-(defun undo-tree-visualize-undo (&optional arg)
-  "Undo changes. A numeric ARG serves as a repeat count."
-  (interactive "p")
-  (let ((old (undo-tree-current buffer-undo-tree))
-	current)
-    ;; unhighlight old current node
-    (let ((undo-tree-insert-face 'undo-tree-visualizer-active-branch-face)
-	  (inhibit-read-only t))
-      (undo-tree-draw-node old))
-    ;; undo in parent buffer
-    (switch-to-buffer-other-window undo-tree-visualizer-parent-buffer)
-    (deactivate-mark)
-    (unwind-protect
-	(let ((undo-tree-inhibit-kill-visualizer t)) (undo-tree-undo-1 arg))
-      (setq current (undo-tree-current buffer-undo-tree))
-      (switch-to-buffer-other-window undo-tree-visualizer-buffer-name)
-      ;; when using lazy drawing, extend tree upwards as required
-      (when undo-tree-visualizer-lazy-drawing
-	(undo-tree-expand-up old current))
-      ;; highlight new current node
-      (let ((inhibit-read-only t)) (undo-tree-draw-node current 'current))
-      ;; update diff display, if any
-      (when undo-tree-visualizer-diff (undo-tree-visualizer-update-diff)))))
-
-
-(defun undo-tree-visualize-redo (&optional arg)
-  "Redo changes. A numeric ARG serves as a repeat count."
-  (interactive "p")
-  (let ((old (undo-tree-current buffer-undo-tree))
-	current)
-    ;; unhighlight old current node
-    (let ((undo-tree-insert-face 'undo-tree-visualizer-active-branch-face)
-	  (inhibit-read-only t))
-      (undo-tree-draw-node (undo-tree-current buffer-undo-tree)))
-    ;; redo in parent buffer
-    (switch-to-buffer-other-window undo-tree-visualizer-parent-buffer)
-    (deactivate-mark)
-    (unwind-protect
-	(let ((undo-tree-inhibit-kill-visualizer t)) (undo-tree-redo-1 arg))
-      (setq current (undo-tree-current buffer-undo-tree))
-      (switch-to-buffer-other-window undo-tree-visualizer-buffer-name)
-      ;; when using lazy drawing, extend tree downwards as required
-      (when undo-tree-visualizer-lazy-drawing
-	(undo-tree-expand-down old current))
-      ;; highlight new current node
-      (let ((inhibit-read-only t)) (undo-tree-draw-node current 'current))
-      ;; update diff display, if any
-      (when undo-tree-visualizer-diff (undo-tree-visualizer-update-diff)))))
-
-
-(defun undo-tree-visualize-switch-branch-right (arg)
-  "Switch to next branch of the undo tree.
-This will affect which branch to descend when *redoing* changes
-using `undo-tree-redo' or `undo-tree-visualizer-redo'."
-  (interactive "p")
-  ;; un-highlight old active branch below current node
-  (goto-char (undo-tree-node-marker (undo-tree-current buffer-undo-tree)))
-  (let ((undo-tree-insert-face 'undo-tree-visualizer-default-face)
-	(inhibit-read-only t))
-    (undo-tree-highlight-active-branch (undo-tree-current buffer-undo-tree)))
-  ;; increment branch
-  (let ((branch (undo-tree-node-branch (undo-tree-current buffer-undo-tree))))
-  (setf (undo-tree-node-branch (undo-tree-current buffer-undo-tree))
-        (cond
-         ((>= (+ branch arg) (undo-tree-num-branches))
-          (1- (undo-tree-num-branches)))
-         ((<= (+ branch arg) 0) 0)
-         (t (+ branch arg))))
-  (let ((inhibit-read-only t))
-    ;; highlight new active branch below current node
-    (goto-char (undo-tree-node-marker (undo-tree-current buffer-undo-tree)))
-    (let ((undo-tree-insert-face 'undo-tree-visualizer-active-branch-face))
-      (undo-tree-highlight-active-branch (undo-tree-current buffer-undo-tree)))
-    ;; re-highlight current node
-    (undo-tree-draw-node (undo-tree-current buffer-undo-tree) 'current))))
-
-
-(defun undo-tree-visualize-switch-branch-left (arg)
-  "Switch to previous branch of the undo tree.
-This will affect which branch to descend when *redoing* changes
-using `undo-tree-redo' or `undo-tree-visualizer-redo'."
-  (interactive "p")
-  (undo-tree-visualize-switch-branch-right (- arg)))
-
-
-(defun undo-tree-visualizer-quit ()
-  "Quit the undo-tree visualizer."
-  (interactive)
-  (undo-tree-clear-visualizer-data buffer-undo-tree)
-  ;; remove kill visualizer hook from parent buffer
-  (unwind-protect
-      (with-current-buffer undo-tree-visualizer-parent-buffer
-	(remove-hook 'before-change-functions 'undo-tree-kill-visualizer t))
-    ;; kill diff buffer, if any
-    (when undo-tree-visualizer-diff (undo-tree-visualizer-hide-diff))
-    (let ((parent undo-tree-visualizer-parent-buffer)
-	  window)
-      ;; kill visualizer buffer
-      (kill-buffer nil)
-      ;; switch back to parent buffer
-      (unwind-protect
-	  (if (setq window (get-buffer-window parent))
-	      (select-window window)
-	    (switch-to-buffer parent))))))
-
-
-(defun undo-tree-visualizer-abort ()
-  "Quit the undo-tree visualizer and return buffer to original state."
-  (interactive)
-  (let ((node undo-tree-visualizer-initial-node))
-    (undo-tree-visualizer-quit)
-    (undo-tree-set node)))
-
-
-(defun undo-tree-visualizer-set (&optional pos)
-  "Set buffer to state corresponding to undo tree node
-at POS, or point if POS is nil."
-  (interactive)
-  (unless pos (setq pos (point)))
-  (let ((node (get-text-property pos 'undo-tree-node)))
-    (when node
-      ;; set parent buffer to state corresponding to node at POS
-      (switch-to-buffer-other-window undo-tree-visualizer-parent-buffer)
-      (let ((undo-tree-inhibit-kill-visualizer t)) (undo-tree-set node))
-      (switch-to-buffer-other-window undo-tree-visualizer-buffer-name)
-      ;; re-draw undo tree
-      (let ((inhibit-read-only t)) (undo-tree-draw-tree buffer-undo-tree))
-      (when undo-tree-visualizer-diff (undo-tree-visualizer-update-diff)))))
-
-
-(defun undo-tree-visualizer-mouse-set (pos)
-  "Set buffer to state corresponding to undo tree node
-at mouse event POS."
-  (interactive "@e")
-  (undo-tree-visualizer-set (event-start (nth 1 pos))))
-
-
-(defun undo-tree-visualize-undo-to-x (&optional x)
-  "Undo to last branch point, register, or saved state.
-If X is the symbol `branch', undo to last branch point. If X is
-the symbol `register', undo to last register. If X is the sumbol
-`saved', undo to last saved state. If X is null, undo to first of
-these that's encountered.
-
-Interactively, a single \\[universal-argument] specifies
-`branch', a double \\[universal-argument] \\[universal-argument]
-specifies `saved', and a negative prefix argument specifies
-`register'."
-  (interactive "P")
-  (when (and (called-interactively-p 'any) x)
-    (setq x (prefix-numeric-value x)
-	  x (cond
-	     ((< x 0)  'register)
-	     ((<= x 4) 'branch)
-	     (t        'saved))))
-  (let ((current (if undo-tree-visualizer-selection-mode
-		     undo-tree-visualizer-selected-node
-		   (undo-tree-current buffer-undo-tree)))
-	(diff undo-tree-visualizer-diff)
-	r)
-    (undo-tree-visualizer-hide-diff)
-    (while (and (undo-tree-node-previous current)
-		(or (if undo-tree-visualizer-selection-mode
-			(progn
-			  (undo-tree-visualizer-select-previous)
-			  (setq current undo-tree-visualizer-selected-node))
-		      (undo-tree-visualize-undo)
-		      (setq current (undo-tree-current buffer-undo-tree)))
-		    t)
-		         ;; branch point
-		(not (or (and (or (null x) (eq x 'branch))
-			      (> (undo-tree-num-branches) 1))
-			 ;; register
-			 (and (or (null x) (eq x 'register))
-			      (setq r (undo-tree-node-register current))
-			      (undo-tree-register-data-p
-			       (setq r (registerv-data (get-register r))))
-			      (eq current (undo-tree-register-data-node r)))
-			 ;; saved state
-			 (and (or (null x) (eq x 'saved))
-			      (undo-tree-node-unmodified-p current))
-			 ))))
-    ;; update diff display, if any
-    (when diff
-      (undo-tree-visualizer-show-diff
-       (when undo-tree-visualizer-selection-mode
-	 undo-tree-visualizer-selected-node)))))
-
-
-(defun undo-tree-visualize-redo-to-x (&optional x)
-  "Redo to last branch point, register, or saved state.
-If X is the symbol `branch', redo to last branch point. If X is
-the symbol `register', redo to last register. If X is the sumbol
-`saved', redo to last saved state. If X is null, redo to first of
-these that's encountered.
-
-Interactively, a single \\[universal-argument] specifies
-`branch', a double \\[universal-argument] \\[universal-argument]
-specifies `saved', and a negative prefix argument specifies
-`register'."
-  (interactive "P")
-  (when (and (called-interactively-p 'any) x)
-    (setq x (prefix-numeric-value x)
-	  x (cond
-	     ((< x 0)  'register)
-	     ((<= x 4) 'branch)
-	     (t        'saved))))
-  (let ((current (if undo-tree-visualizer-selection-mode
-		     undo-tree-visualizer-selected-node
-		   (undo-tree-current buffer-undo-tree)))
-	(diff undo-tree-visualizer-diff)
-	r)
-    (undo-tree-visualizer-hide-diff)
-    (while (and (undo-tree-node-next current)
-		(or (if undo-tree-visualizer-selection-mode
-			(progn
-			  (undo-tree-visualizer-select-next)
-			  (setq current undo-tree-visualizer-selected-node))
-		      (undo-tree-visualize-redo)
-		      (setq current (undo-tree-current buffer-undo-tree)))
-		    t)
-		         ;; branch point
-		(not (or (and (or (null x) (eq x 'branch))
-			      (> (undo-tree-num-branches) 1))
-			 ;; register
-			 (and (or (null x) (eq x 'register))
-			      (setq r (undo-tree-node-register current))
-			      (undo-tree-register-data-p
-			       (setq r (registerv-data (get-register r))))
-			      (eq current (undo-tree-register-data-node r)))
-			 ;; saved state
-			 (and (or (null x) (eq x 'saved))
-			      (undo-tree-node-unmodified-p current))
-			 ))))
-    ;; update diff display, if any
-    (when diff
-      (undo-tree-visualizer-show-diff
-       (when undo-tree-visualizer-selection-mode
-	 undo-tree-visualizer-selected-node)))))
-
-
-(defun undo-tree-visualizer-toggle-timestamps ()
-  "Toggle display of time-stamps."
-  (interactive)
-  (setq undo-tree-visualizer-timestamps (not undo-tree-visualizer-timestamps))
-  (setq undo-tree-visualizer-spacing (undo-tree-visualizer-calculate-spacing))
-  ;; redraw tree
-  (let ((inhibit-read-only t)) (undo-tree-draw-tree buffer-undo-tree)))
-
-
-(defun undo-tree-visualizer-scroll-left (&optional arg)
-  (interactive "p")
-  (scroll-left (or arg 1) t))
-
-
-(defun undo-tree-visualizer-scroll-right (&optional arg)
-  (interactive "p")
-  (scroll-right (or arg 1) t))
-
-
-(defun undo-tree-visualizer-scroll-up (&optional arg)
-  (interactive "P")
-  (if (or (and (numberp arg) (< arg 0)) (eq arg '-))
-      (undo-tree-visualizer-scroll-down arg)
-    ;; scroll up and expand newly-visible portion of tree
-    (unwind-protect
-	(scroll-up-command arg)
-      (undo-tree-expand-down
-       (nth (undo-tree-node-branch (undo-tree-current buffer-undo-tree))
-	    (undo-tree-node-next (undo-tree-current buffer-undo-tree)))))
-    ;; signal error if at eob
-    (when (and (not undo-tree-visualizer-needs-extending-down) (eobp))
-      (scroll-up))))
-
-
-(defun undo-tree-visualizer-scroll-down (&optional arg)
-  (interactive "P")
-  (if (or (and (numberp arg) (< arg 0)) (eq arg '-))
-      (undo-tree-visualizer-scroll-up arg)
-    ;; ensure there's enough room at top of buffer to scroll
-    (let ((scroll-lines
-	   (or arg (- (window-height) next-screen-context-lines)))
-	  (window-line (1- (line-number-at-pos (window-start)))))
-      (when (and undo-tree-visualizer-needs-extending-up
-		 (< window-line scroll-lines))
-	(let ((inhibit-read-only t))
-	  (goto-char (point-min))
-	  (undo-tree-move-up (- scroll-lines window-line)))))
-    ;; scroll down and expand newly-visible portion of tree
-    (unwind-protect
-	(scroll-down-command arg)
-      (undo-tree-expand-up
-       (undo-tree-node-previous (undo-tree-current buffer-undo-tree))))
-    ;; signal error if at bob
-    (when (and (not undo-tree-visualizer-needs-extending-down) (bobp))
-      (scroll-down))))
-
-
-
-
-;;; =====================================================================
-;;;                    Visualizer selection mode
-
-(define-minor-mode undo-tree-visualizer-selection-mode
-  "Toggle mode to select nodes in undo-tree visualizer."
-  :lighter "Select"
-  :keymap undo-tree-visualizer-selection-mode-map
-  :group undo-tree
-  (cond
-   ;; enable selection mode
-   (undo-tree-visualizer-selection-mode
-    (setq cursor-type 'box)
-    (setq undo-tree-visualizer-selected-node
-	  (undo-tree-current buffer-undo-tree))
-    ;; erase diff (if any), as initially selected node is identical to current
-    (when undo-tree-visualizer-diff
-      (let ((buff (get-buffer undo-tree-diff-buffer-name))
-	    (inhibit-read-only t))
-	(when buff (with-current-buffer buff (erase-buffer))))))
-   (t ;; disable selection mode
-    (setq cursor-type nil)
-    (setq undo-tree-visualizer-selected-node nil)
-    (goto-char (undo-tree-node-marker (undo-tree-current buffer-undo-tree)))
-    (when undo-tree-visualizer-diff (undo-tree-visualizer-update-diff)))
-   ))
-
-
-(defun undo-tree-visualizer-select-previous (&optional arg)
-  "Move to previous node."
-  (interactive "p")
-  (let ((node undo-tree-visualizer-selected-node))
-    (catch 'top
-      (dotimes (i (or arg 1))
-	(unless (undo-tree-node-previous node) (throw 'top t))
-	(setq node (undo-tree-node-previous node))))
-    ;; when using lazy drawing, extend tree upwards as required
-    (when undo-tree-visualizer-lazy-drawing
-      (undo-tree-expand-up undo-tree-visualizer-selected-node node))
-    ;; update diff display, if any
-    (when (and undo-tree-visualizer-diff
-	       (not (eq node undo-tree-visualizer-selected-node)))
-      (undo-tree-visualizer-update-diff node))
-    ;; move to selected node
-    (goto-char (undo-tree-node-marker node))
-    (setq undo-tree-visualizer-selected-node node)))
-
-
-(defun undo-tree-visualizer-select-next (&optional arg)
-  "Move to next node."
-  (interactive "p")
-  (let ((node undo-tree-visualizer-selected-node))
-    (catch 'bottom
-      (dotimes (i (or arg 1))
-	(unless (nth (undo-tree-node-branch node) (undo-tree-node-next node))
-	  (throw 'bottom t))
-	(setq node
-	      (nth (undo-tree-node-branch node) (undo-tree-node-next node)))))
-    ;; when using lazy drawing, extend tree downwards as required
-    (when undo-tree-visualizer-lazy-drawing
-      (undo-tree-expand-down undo-tree-visualizer-selected-node node))
-    ;; update diff display, if any
-    (when (and undo-tree-visualizer-diff
-	       (not (eq node undo-tree-visualizer-selected-node)))
-      (undo-tree-visualizer-update-diff node))
-    ;; move to selected node
-    (goto-char (undo-tree-node-marker node))
-    (setq undo-tree-visualizer-selected-node node)))
-
-
-(defun undo-tree-visualizer-select-right (&optional arg)
-  "Move right to a sibling node."
-  (interactive "p")
-  (let ((node undo-tree-visualizer-selected-node)
-	end)
-    (goto-char (undo-tree-node-marker undo-tree-visualizer-selected-node))
-    (setq end (line-end-position))
-    (catch 'end
-      (dotimes (i arg)
-	(while (or (null node) (eq node undo-tree-visualizer-selected-node))
-	  (forward-char)
-	  (setq node (get-text-property (point) 'undo-tree-node))
-	  (when (= (point) end) (throw 'end t)))))
-    (goto-char (undo-tree-node-marker
-		(or node undo-tree-visualizer-selected-node)))
-    (when (and undo-tree-visualizer-diff node
-	       (not (eq node undo-tree-visualizer-selected-node)))
-      (undo-tree-visualizer-update-diff node))
-    (when node (setq undo-tree-visualizer-selected-node node))))
-
-
-(defun undo-tree-visualizer-select-left (&optional arg)
-  "Move left to a sibling node."
-  (interactive "p")
-  (let ((node (get-text-property (point) 'undo-tree-node))
-	beg)
-    (goto-char (undo-tree-node-marker undo-tree-visualizer-selected-node))
-    (setq beg (line-beginning-position))
-    (catch 'beg
-      (dotimes (i arg)
-	(while (or (null node) (eq node undo-tree-visualizer-selected-node))
-	  (backward-char)
-	  (setq node (get-text-property (point) 'undo-tree-node))
-	  (when (= (point) beg) (throw 'beg t)))))
-    (goto-char (undo-tree-node-marker
-		(or node undo-tree-visualizer-selected-node)))
-    (when (and undo-tree-visualizer-diff node
-	       (not (eq node undo-tree-visualizer-selected-node)))
-      (undo-tree-visualizer-update-diff node))
-    (when node (setq undo-tree-visualizer-selected-node node))))
-
-
-(defun undo-tree-visualizer-select (pos)
-  (let ((node (get-text-property pos 'undo-tree-node)))
-    (when node
-      ;; select node at POS
-      (goto-char (undo-tree-node-marker node))
-      ;; when using lazy drawing, extend tree up and down as required
-      (when undo-tree-visualizer-lazy-drawing
-	(undo-tree-expand-up undo-tree-visualizer-selected-node node)
-	(undo-tree-expand-down undo-tree-visualizer-selected-node node))
-      ;; update diff display, if any
-      (when (and undo-tree-visualizer-diff
-		 (not (eq node undo-tree-visualizer-selected-node)))
-	(undo-tree-visualizer-update-diff node))
-      ;; update selected node
-      (setq undo-tree-visualizer-selected-node node)
-      )))
-
-
-(defun undo-tree-visualizer-mouse-select (pos)
-  "Select undo tree node at mouse event POS."
-  (interactive "@e")
-  (undo-tree-visualizer-select (event-start (nth 1 pos))))
-
-
-
-
-;;; =====================================================================
-;;;                      Visualizer diff display
-
-(defun undo-tree-visualizer-toggle-diff ()
-  "Toggle diff display in undo-tree visualizer."
-  (interactive)
-  (if undo-tree-visualizer-diff
-      (undo-tree-visualizer-hide-diff)
-    (undo-tree-visualizer-show-diff)))
-
-
-(defun undo-tree-visualizer-selection-toggle-diff ()
-  "Toggle diff display in undo-tree visualizer selection mode."
-  (interactive)
-  (if undo-tree-visualizer-diff
-      (undo-tree-visualizer-hide-diff)
-    (let ((node (get-text-property (point) 'undo-tree-node)))
-      (when node (undo-tree-visualizer-show-diff node)))))
-
-
-(defun undo-tree-visualizer-show-diff (&optional node)
-  ;; show visualizer diff display
-  (setq undo-tree-visualizer-diff t)
-  (let ((buff (with-current-buffer undo-tree-visualizer-parent-buffer
-		(undo-tree-diff node)))
-	(display-buffer-mark-dedicated 'soft)
-	win)
-    (setq win (split-window))
-    (set-window-buffer win buff)
-    (shrink-window-if-larger-than-buffer win)))
-
-
-(defun undo-tree-visualizer-hide-diff ()
-  ;; hide visualizer diff display
-  (setq undo-tree-visualizer-diff nil)
-  (let ((win (get-buffer-window undo-tree-diff-buffer-name)))
-    (when win (with-selected-window win (kill-buffer-and-window)))))
-
-
-(defun undo-tree-diff (&optional node)
-  ;; Create diff between NODE and current state (or previous state and current
-  ;; state, if NODE is null). Returns buffer containing diff.
-  (let (tmpfile buff)
-    ;; generate diff
-    (let ((undo-tree-inhibit-kill-visualizer t)
-	  (current (undo-tree-current buffer-undo-tree)))
-      (undo-tree-set (or node (undo-tree-node-previous current) current)
-		     'preserve-timestamps)
-      (setq tmpfile (diff-file-local-copy (current-buffer)))
-      (undo-tree-set current 'preserve-timestamps))
-    (setq buff (diff-no-select
-		tmpfile (current-buffer) nil 'noasync
-		(get-buffer-create undo-tree-diff-buffer-name)))
-    ;; delete process messages and useless headers from diff buffer
-    (let ((inhibit-read-only t))
-      (with-current-buffer buff
-	(goto-char (point-min))
-	(delete-region (point) (1+ (line-end-position 3)))
-	(goto-char (point-max))
-	(forward-line -2)
-	(delete-region (point) (point-max))
-	(setq cursor-type nil)
-	(setq buffer-read-only t)))
-    buff))
-
-
-(defun undo-tree-visualizer-update-diff (&optional node)
-  ;; update visualizer diff display to show diff between current state and
-  ;; NODE (or previous state, if NODE is null)
-  (with-current-buffer undo-tree-visualizer-parent-buffer
-    (undo-tree-diff node))
-  (let ((win (get-buffer-window undo-tree-diff-buffer-name)))
-    (when win
-      (balance-windows)
-      (shrink-window-if-larger-than-buffer win))))
-
-;;;; ChangeLog:
-
-;; 2013-12-28  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	* undo-tree: Update to version 0.6.5.
-;; 
-;; 2012-12-05  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	Update undo-tree to version 0.6.3
-;; 
-;; 	* undo-tree.el: Implement lazy tree drawing to significantly speed up 
-;; 	visualization of large trees + various more minor improvements.
-;; 
-;; 2012-09-25  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	Updated undo-tree package to version 0.5.5.
-;; 
-;; 	Small bug-fix to avoid hooks triggering an error when trying to save
-;; 	undo history in a buffer where undo is disabled.
-;; 
-;; 2012-09-11  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	Updated undo-tree package to version 0.5.4
-;; 
-;; 	Bug-fixes and improvements to persistent history storage.
-;; 
-;; 2012-07-18  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	Update undo-tree to version 0.5.3
-;; 
-;; 	* undo-tree.el: Cope gracefully with undo boundaries being deleted
-;; 	 (cf. bug#11774). Allow customization of directory to which undo
-;; 	history is
-;; 	 saved.
-;; 
-;; 2012-05-24  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	updated undo-tree package to version 0.5.2
-;; 
-;; 	* undo-tree.el: add diff view feature in undo-tree visualizer.
-;; 
-;; 2012-05-02  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	undo-tree.el: Update package to version 0.4
-;; 
-;; 2012-04-20  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	undo-tree.el: Update package to version 0.3.4
-;; 
-;; 	* undo-tree.el (undo-list-pop-changeset): fix pernicious bug causing
-;; 	undo history to be lost.
-;; 	(buffer-undo-tree): set permanent-local property.
-;; 	(undo-tree-enable-undo-in-region): add new customization option
-;; 	allowing undo-in-region to be disabled.
-;; 
-;; 2012-01-26  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	undo-tree.el: Fixed copyright attribution and Emacs status.
-;; 
-;; 2012-01-26  Toby S. Cubitt  <tsc25@cantab.net>
-;; 
-;; 	undo-tree.el: Update package to version 0.3.3
-;; 
-;; 2011-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
-;; 
-;; 	Add undo-tree.el
-;; 
-
-
-
-
-(provide 'undo-tree)
-
-;;; undo-tree.el ends here
diff --git a/elpa/undo-tree-0.6.5/undo-tree.elc b/elpa/undo-tree-0.6.5/undo-tree.elc
deleted file mode 100644
index 7c5b3bb..0000000
--- a/elpa/undo-tree-0.6.5/undo-tree.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/volatile-highlights-20160612.155/volatile-highlights-autoloads.el b/elpa/volatile-highlights-20160612.155/volatile-highlights-autoloads.el
deleted file mode 100644
index 52ddec5..0000000
--- a/elpa/volatile-highlights-20160612.155/volatile-highlights-autoloads.el
+++ /dev/null
@@ -1,38 +0,0 @@
-;;; volatile-highlights-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "volatile-highlights" "volatile-highlights.el"
-;;;;;;  (0 0 0 0))
-;;; Generated autoloads from volatile-highlights.el
-
-(defvar volatile-highlights-mode nil "\
-Non-nil if Volatile-Highlights mode is enabled.
-See the `volatile-highlights-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `volatile-highlights-mode'.")
-
-(custom-autoload 'volatile-highlights-mode "volatile-highlights" nil)
-
-(autoload 'volatile-highlights-mode "volatile-highlights" "\
-Minor mode for visual feedback on some operations.
-
-\(fn &optional ARG)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "volatile-highlights" '("vhl/" "Vhl/highlight-zero-width-ranges")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; volatile-highlights-autoloads.el ends here
diff --git a/elpa/volatile-highlights-20160612.155/volatile-highlights-pkg.el b/elpa/volatile-highlights-20160612.155/volatile-highlights-pkg.el
deleted file mode 100644
index 16c8b35..0000000
--- a/elpa/volatile-highlights-20160612.155/volatile-highlights-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "volatile-highlights" "20160612.155" "Minor mode for visual feedback on some operations." 'nil :commit "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392" :keywords '("emulations" "convenience" "wp") :authors '(("K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>")) :maintainer '("K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>") :url "http://www.emacswiki.org/emacs/download/volatile-highlights.el")
diff --git a/elpa/volatile-highlights-20160612.155/volatile-highlights.el b/elpa/volatile-highlights-20160612.155/volatile-highlights.el
deleted file mode 100644
index 1751a27..0000000
--- a/elpa/volatile-highlights-20160612.155/volatile-highlights.el
+++ /dev/null
@@ -1,872 +0,0 @@
-;;; volatile-highlights.el --- Minor mode for visual feedback on some operations.
-
-;; Copyright (C) 2001, 2010-2016 K-talo Miyazaki, all rights reserved.
-
-;; Author: K-talo Miyazaki <Keitaro dot Miyazaki at gmail dot com>
-;; Created: 03 October 2001. (as utility functions in my `.emacs' file.)
-;;          14 March   2010. (re-written as library `volatile-highlights.el')
-;; Keywords: emulations convenience wp
-;; Package-Version: 20160612.155
-;; Revision: $Id: cb468976642bf1d30cbb2070ee846c4736ee077d $
-;; URL: http://www.emacswiki.org/emacs/download/volatile-highlights.el
-;; GitHub: http://github.com/k-talo/volatile-highlights.el
-;; Version: 1.15
-;; Contributed by: Ryan Thompson and Le Wang.
-
-;; This file is not part of GNU Emacs.
-
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;; Overview
-;; ========
-;; This library provides minor mode `volatile-highlights-mode', which
-;; brings visual feedback to some operations by highlighting portions
-;; relating to the operations.
-;;
-;; All of highlights made by this library will be removed
-;; when any new operation is executed.
-;;
-;;
-;; INSTALLING
-;; ==========
-;; To install this library, save this file to a directory in your
-;; `load-path' (you can view the current `load-path' using "C-h v
-;; load-path" within Emacs), then add the following line to your
-;; .emacs start up file:
-;;
-;;    (require 'volatile-highlights)
-;;    (volatile-highlights-mode t)
-;;
-;;
-;; USING
-;; =====
-;; To toggle volatile highlighting, type `M-x volatile-highlights-mode <RET>'.
-;;
-;; While this minor mode is on, a string `VHL' will be displayed on the modeline.
-;;
-;; Currently, operations listed below will be highlighted While the minor mode
-;; `volatile-highlights-mode' is on:
-;;
-;;    - `undo':
-;;      Volatile highlights will be put on the text inserted by `undo'.
-;;
-;;    - `yank' and `yank-pop':
-;;      Volatile highlights will be put on the text inserted by `yank'
-;;      or `yank-pop'.
-;;
-;;    - `kill-region', `kill-line', any other killing function:
-;;      Volatile highlights will be put at the positions where the
-;;      killed text used to be.
-;;
-;;    - `delete-region':
-;;      Same as `kill-region', but not as reliable since
-;;      `delete-region' is an inline function.
-;;
-;;    - `find-tag':
-;;      Volatile highlights will be put on the tag name which was found
-;;      by `find-tag'.
-;;
-;;    - `occur-mode-goto-occurrence' and `occur-mode-display-occurrence':
-;;      Volatile highlights will be put on the occurrence which is selected
-;;      by `occur-mode-goto-occurrence' or `occur-mode-display-occurrence'.
-;;
-;;    - Non incremental search operations:
-;;      Volatile highlights will be put on the the text found by
-;;      commands listed below:
-;;
-;;        `nonincremental-search-forward'
-;;        `nonincremental-search-backward'
-;;        `nonincremental-re-search-forward'
-;;        `nonincremental-re-search-backward'
-;;        `nonincremental-repeat-search-forward'
-;;        `nonincremental-repeat-search-backwar'
-;;
-;; Highlighting support for each operations can be turned on/off individually
-;; via customization. Also check out the customization group
-;;
-;;   `M-x customize-group RET volatile-highlights RET'
-;;
-;;
-;; EXAMPLE SNIPPETS FOR USING VOLATILE HIGHLIGHTS WITH OTHER PACKAGES
-;; ==================================================================
-;;
-;; - vip-mode
-;;
-;;   (vhl/define-extension 'vip 'vip-yank)
-;;   (vhl/install-extension 'vip)
-;;   
-;; - evil-mode
-;;
-;;   (vhl/define-extension 'evil 'evil-paste-after 'evil-paste-before
-;;                         'evil-paste-pop 'evil-move)
-;;   (vhl/install-extension 'evil)
-;;
-;; - undo-tree
-;;
-;;   (vhl/define-extension 'undo-tree 'undo-tree-yank 'undo-tree-move)
-;;   (vhl/install-extension 'undo-tree)
-
-
-;;; Change Log:
-;;
-;; v1.15 Sun Jun 12 10:40:31 2016 JST
-;;   - Update documents, example snippets for other packages,
-;;     regarding #14.
-;;
-;; v1.14 Sun Jun 12 10:12:30 2016 JST
-;;   - Update documents, especially supporting `evil-mode',
-;;     regarding #13.
-;;   - Fixed a bug #14, an extension won't be loaded properly
-;;     when it was installed by `vhl/install-extension'.
-;;
-;; v1.13 Sat May 21 11:02:36 2016 JST
-;;   - Fixed a bug that highlighting was not working with nested volatile
-;;     highlighting aware operations like `yak-pop'.
-;;
-;; v1.12  Sun Feb 21 19:09:29 2016 JST
-;;   - Added autoload cookie.
-;;
-;; v1.11  Sun Oct  5 13:05:38 2014 JST
-;;   - Fixed an error "Symbol's function definition is void: return",
-;;     that occurs when highlight being created with `hideshow' commands.
-;;
-;; v1.10  Thu Mar 21 22:37:27 2013 JST
-;;   - Use inherit in face definition when detected.
-;;   - Suppress compiler warnings regarding to emacs/xemacs private
-;;     functions by file local variable.
-;;
-;; v1.9  Tue Mar  5 00:52:35 2013 JST
-;;   - Fixed errors in shell caused by dummy functions.
-;;
-;; v1.8  Wed Feb 15 00:08:14 2012 JST
-;;   - Added "Contributed by: " line in header.
-;;   - Added extension for hideshow.
-;;
-;; v1.7  Mon Feb 13 23:31:18 2012 JST
-;;   - Fixed a bug required features are not loaded.
-;;
-;; v1.6  Thu Feb  2 06:59:48 2012 JST
-;;   - Removed extensions for non standard features.
-;;   - Suppress compiler warning "function `vhl/.make-list-string'
-;;     defined multiple times".
-;;   - Fixed compiler error "Symbol's function definition is void:
-;;     vhl/.make-list-string".
-;;
-;;  v1.5  Tue Jan 31 22:19:04 2012 JST
-;;   - Added extension for highlighting the position where text was
-;;     killed from.
-;;   - Added extension for highlighting the position where text was
-;;     deleted from.
-;;   - Provide a macro `vhl/define-extension' for easily defining new
-;;     simple extensions with a single line of code. For usage
-;;     examples, see the definitions of the undo, yank, kill, and
-;;     delete extensions.
-;;
-;;  v1.4  Sun Jan 15 20:23:58 2012 JST
-;;   - Suppress compiler warnings regarding to emacs/xemacs private
-;;     functions.
-;;   - Fixed bugs which occurs to xemacs.
-;;
-;;  v1.3, Sat Dec 18 16:44:14 2010 JST
-;;   - Added extension for non-incremental search operations.
-;;   - Fixed a bug that highlights won't be appear when
-;;     occurrences is in folded line.
-;;
-;;  v1.2, Tue Nov 30 01:07:48 2010 JST
-;;   - In `vhl/ext/occur', highlight all occurrences.
-;;
-;;  v1.1, Tue Nov  9 20:36:09 2010 JST
-;;   - Fixed a bug that mode toggling feature was not working.
-
-;;; Code:
-
-(defconst vhl/version "1.8")
-
-(eval-when-compile
-  (require 'cl)
-  (require 'easy-mmode)
-  (require 'advice))
-
-(provide 'volatile-highlights)
-
-
-;;;============================================================================
-;;;
-;;;  Private Variables.
-;;;
-;;;============================================================================
-
-(eval-and-compile
-  (defconst vhl/.xemacsp (string-match "XEmacs" emacs-version)
-    "A flag if the emacs is xemacs or not."))
-
-(defvar vhl/.hl-lst nil
-  "List of volatile highlights.")
-
-
-;;;============================================================================
-;;;
-;;;  Faces.
-;;;
-;;;============================================================================
-
-(defgroup volatile-highlights nil
-  "Visual feedback on operations."
-  :group 'editing)
-
-
-;; Borrowed from `slime.el'.
-(defun vhl/.face-inheritance-possible-p ()
-  "Return true if the :inherit face attribute is supported."
-  (assq :inherit custom-face-attributes))
-
-(defface vhl/default-face
-  (cond
-   ((or vhl/.xemacsp
-        (not (vhl/.face-inheritance-possible-p)))
-    '((((class color) (background light))
-       (:background "yellow1"))
-      (((class color) (background dark))
-       (:background "SkyBlue4"))
-      (t :inverse-video t)))
-   (t
-    '((t
-       :inherit secondary-selection
-       ))))
-    "Face used for volatile highlights."
-    :group 'volatile-highlights)
-
-
-;;;============================================================================
-;;;
-;;;  Minor Mode Definition.
-;;;
-;;;============================================================================
-;;;###autoload
-(easy-mmode-define-minor-mode
- volatile-highlights-mode "Minor mode for visual feedback on some operations."
- :global t
- :init-value nil
- :lighter " VHl"
- (if volatile-highlights-mode
-     (vhl/load-extensions)
-   (vhl/unload-extensions)))
-
-
-(defcustom Vhl/highlight-zero-width-ranges nil
-  "If t, highlight the positions of zero-width ranges.
-
-For example, if a deletion is highlighted, then the position
-where the deleted text used to be would be highlighted."
-  :type 'boolean
-  :group 'volatile-highlights)
-
-
-;;;============================================================================
-;;;
-;;;  Public Functions/Commands.
-;;;
-;;;============================================================================
-
-;;-----------------------------------------------------------------------------
-;; (vhl/add-range BEG END &OPTIONAL BUF FACE) => VOID
-;;-----------------------------------------------------------------------------
-(defun vhl/add-range (beg end &optional buf face)
-  "Add a volatile highlight to the buffer `BUF' at the position
-specified by `BEG' and `END' using the face `FACE'.
-
-When the buffer `BUF' is not specified or its value is `nil',
-volatile highlight will be added to current buffer.
-
-When the face `FACE' is not specified or its value is `nil',
-the default face `vhl/default-face' will
-be used as the value."
-  (let* ((face (or face 'vhl/default-face))
-		 (hl (vhl/.make-hl beg end buf face)))
-	(setq vhl/.hl-lst
-		  (cons hl vhl/.hl-lst))
-	(add-hook 'pre-command-hook 'vhl/clear-all)))
-(define-obsolete-function-alias 'vhl/add 'vhl/add-range "1.5")
-
-;;-----------------------------------------------------------------------------
-;; (vhl/add-position POS &OPTIONAL BUF FACE) => VOID
-;;-----------------------------------------------------------------------------
-(defun vhl/add-position (pos &rest other-args)
-  "Highlight buffer position POS as a change.
-
-If Vhl/highlight-zero-width-ranges is nil, do nothing.
-
-Optional args are the same as `vhl/add-range'."
-  (when (and Vhl/highlight-zero-width-ranges (not (zerop (buffer-size))))
-    (when (> pos (buffer-size))
-        (setq pos (- pos 1)))
-    (apply 'vhl/add-range pos (+ pos 1) other-args)))
-
-;;-----------------------------------------------------------------------------
-;; (vhl/clear-all) => VOID
-;;-----------------------------------------------------------------------------
-(defun vhl/clear-all ()
-  "Clear all volatile highlights."
-  (interactive)
-  (while vhl/.hl-lst
-	(vhl/.clear-hl (car vhl/.hl-lst))
-	(setq vhl/.hl-lst
-		  (cdr vhl/.hl-lst)))
-	  (remove-hook 'pre-command-hook 'vhl/clear-all))
-
-;;-----------------------------------------------------------------------------
-;; (vhl/force-clear-all) => VOID
-;;-----------------------------------------------------------------------------
-(defun vhl/force-clear-all ()
-  "Force clear all volatile highlights in current buffer."
-  (interactive)
-  (vhl/.force-clear-all-hl))
-
-
-;;;============================================================================
-;;;
-;;;  Private Functions.
-;;;
-;;;============================================================================
-
-;;-----------------------------------------------------------------------------
-;; (vhl/.make-hl BEG END BUF FACE) => HIGHLIGHT
-;;-----------------------------------------------------------------------------
-(defun vhl/.make-hl (beg end buf face)
-  "Make a volatile highlight at the position specified by `BEG' and `END'."
-  (let (hl)
-	(cond
-	 (vhl/.xemacsp
-	  ;; XEmacs
-	  (setq hl (make-extent beg end buf))
-	  (set-extent-face hl face)
-	  (highlight-extent hl t)
-	  (set-extent-property hl 'volatile-highlights t))
-	 (t
-	  ;; GNU Emacs
-	  (setq hl (make-overlay beg end buf))
-	  (overlay-put hl 'face face)
-	  (overlay-put hl 'priority 1)
-	  (overlay-put hl 'volatile-highlights t)))
-	 hl))
-
-;;-----------------------------------------------------------------------------
-;; (vhl/.clear-hl HIGHLIGHT) => VOID
-;;-----------------------------------------------------------------------------
-(defun vhl/.clear-hl (hl)
-  "Clear one highlight."
-  (cond
-   ;; XEmacs (not tested!)
-   (vhl/.xemacsp
-	(and (extentp hl)
-		 (delete-extent hl)))
-   ;; GNU Emacs
-   (t
-	(and (overlayp hl)
-		 (delete-overlay hl)))))
-
-;;-----------------------------------------------------------------------------
-;; (vhl/.force-clear-all-hl) => VOID
-;;-----------------------------------------------------------------------------
-(defun vhl/.force-clear-all-hl ()
-  "Force clear all volatile highlights in current buffer."
-  (cond
-   ;; XEmacs (not tested!)
-   (vhl/.xemacsp
-      (map-extents (lambda (hl maparg)
-                     (and (extent-property hl 'volatile-highlights)
-						  (vhl/.clear-hl hl)))))
-   ;; GNU Emacs
-   (t
-	(save-restriction
-	  (widen)
-	  (mapcar (lambda (hl)
-				(and (overlay-get hl 'volatile-highlights)
-					 (vhl/.clear-hl hl)))
-			  (overlays-in (point-min) (point-max)))))))
-
-
-;;;============================================================================
-;;;
-;;;  Functions to manage extensions.
-;;;
-;;;============================================================================
-(defvar vhl/.installed-extensions nil)
-
-(defun vhl/install-extension (sym)
-  (let ((fn-on  (intern (format "vhl/ext/%s/on" sym)))
-        (fn-off (intern (format "vhl/ext/%s/off" sym)))
-        (cust-name (intern (format "vhl/use-%s-extension-p" sym))))
-    (pushnew sym vhl/.installed-extensions)
-    (eval `(defcustom ,cust-name t
-             ,(format "A flag if highlighting support for `%s' is on or not." sym)
-             :type 'boolean
-             :group 'volatile-highlights
-             :set (lambda (sym-to-set val)
-                    (set-default sym-to-set val)
-                    (if val
-                        (when volatile-highlights-mode
-                          (vhl/load-extension (quote ,sym)))
-                      (vhl/unload-extension (quote ,sym))))))))
-
-(defun vhl/load-extension (sym)
-  (let ((fn-on  (intern (format "vhl/ext/%s/on" sym)))
-        (cust-name (intern (format "vhl/use-%s-extension-p" sym))))
-    (if (functionp fn-on)
-        (when (and (boundp cust-name)
-                   (eval cust-name))
-          (apply fn-on nil))
-      (message "[vhl] No load function for extension  `%s'" sym))))
-
-(defun vhl/unload-extension (sym)
-  (let ((fn-off (intern (format "vhl/ext/%s/off" sym))))
-    (if (functionp fn-off)
-        (apply fn-off nil)
-      (message "[vhl] No unload function for extension  `%s'" sym))))
-
-(defun vhl/load-extensions ()
-  (dolist (sym vhl/.installed-extensions)
-    (vhl/load-extension sym)))
-
-(defun vhl/unload-extensions ()
-  (dolist (sym vhl/.installed-extensions)
-    (vhl/unload-extension sym)))
-
-
-;;;============================================================================
-;;;
-;;;  Utility functions/macros for extensions.
-;;;
-;;;============================================================================
-(defvar vhl/.after-change-hook-depth 0)
-
-(defun vhl/.push-to-after-change-hook (fn-name)
-  ;; Debug
-  ;; (if (zerop vhl/.after-change-hook-depth)
-  ;;     (message "vlh: push: %s" fn-name)
-  ;;   (message "vlh: skip push: %s" fn-name))
-  (when (zerop vhl/.after-change-hook-depth)
-    (add-hook 'after-change-functions
-              'vhl/.make-vhl-on-change))
-  (setq vhl/.after-change-hook-depth
-        (1+ vhl/.after-change-hook-depth)))
-
-(defun vhl/.pop-from-after-change-hook (fn-name)
-  (setq vhl/.after-change-hook-depth
-        (1- vhl/.after-change-hook-depth))
-  ;; Debug
-  ;; (if (zerop vhl/.after-change-hook-depth)
-  ;;     (message "vlh: pop: %s" fn-name)
-  ;;   (message "vlh: skip pop: %s" fn-name))
-  (when (zerop vhl/.after-change-hook-depth)
-    (remove-hook 'after-change-functions
-                 'vhl/.make-vhl-on-change)))
-
-(defun vhl/advice-defined-p (fn-name class ad-name)
-  (and (ad-is-advised fn-name)
-       (assq ad-name
-             (ad-get-advice-info-field fn-name class))))
-
-(defun vhl/disable-advice-if-defined (fn-name class ad-name)
-  (when (vhl/advice-defined-p fn-name class ad-name)
-	(ad-disable-advice fn-name class ad-name)
-	(ad-activate fn-name)))
-
-(defun vhl/.make-vhl-on-change (beg end len-removed)
-  (let ((insert-p (zerop len-removed)))
-    (if insert-p
-        ;; Highlight the insertion
-        (vhl/add-range beg end)
-      ;; Highlight the position of the deletion
-      (vhl/add-position beg))))
-
-(defmacro vhl/give-advice-to-make-vhl-on-changes (fn-name)
-  (let* ((ad-name (intern (concat "vhl/make-vhl-on-"
-                                 (format "%s" fn-name)))))
-    (or (symbolp fn-name)
-        (error "vhl/give-advice-to-make-vhl-on-changes: `%s' is not type of symbol." fn-name))
-    `(progn
-       (defadvice ,fn-name (around
-                              ,ad-name
-                              (&rest args))
-         (vhl/.push-to-after-change-hook (quote ,fn-name))
-         (unwind-protect
-             ad-do-it
-           (vhl/.pop-from-after-change-hook (quote ,fn-name))))
-       ;; Enable advice.
-       (ad-enable-advice (quote ,fn-name) 'around (quote ,ad-name))
-       (ad-activate (quote ,fn-name)))))
-
-(defmacro vhl/cancel-advice-to-make-vhl-on-changes (fn-name)
-  (let ((ad-name (intern (concat "vhl/make-vhl-on-"
-                                 (format "%s" fn-name)))))
-    `(vhl/disable-advice-if-defined (quote ,fn-name) 'around (quote ,ad-name))))
-
-(defun vhl/require-noerror (feature &optional filename)
-  (condition-case c
-      (require feature)
-    (file-error nil)))
-
-(eval-and-compile
-;; Utility function by Ryan Thompson.
-(defun vhl/.make-list-string (items)
-  "Makes an English-style list from a list of strings.
-
-Converts a list of strings into a string that lists the items
-separated by commas, as well as the word `and' before the last
-item. In other words, returns a string of the way those items
-would be listed in english.
-
-This is included as a private support function for generating
-lists of symbols to be included docstrings of auto-generated
-extensions."
-  (assert (listp items))
-  (cond ((null items)
-         ;; Zero items
-         "")
-        ((null (cdr items))
-         ;; One item
-         (assert (stringp (first items)))
-         (format "%s" (first items)))
-        ((null (cddr items))
-         ;; Two items
-         (assert (stringp (first items)))
-         (assert (stringp (second items)))
-         (apply 'format "%s and %s" items))
-        ((null (cdddr items))
-         ;; Three items
-         (assert (stringp (first items)))
-         (assert (stringp (second items)))
-         (assert (stringp (third items)))
-         (apply 'format "%s, %s, and %s" items))
-        (t
-         ;; 4 or more items
-         (format "%s, %s" (first items) (vhl/.make-list-string (rest items)))))))
-
-;; The following makes it trivial to define simple vhl extensions
-(defmacro vhl/define-extension (name &rest functions)
-  "Define a VHL extension called NAME that applies standard VHL
-  advice to each of FUNCTIONS."
-  (assert (first functions))
-  (let* ((name-string (symbol-name (eval name)))
-         (function-list-string (vhl/.make-list-string
-                                (mapcar (lambda (f) (format "`%s'" (symbol-name (eval f))))
-                                        functions)))
-         (on-function-name (intern (format "vhl/ext/%s/on" name-string)))
-         (on-body-form (cons
-                        'progn
-                        (mapcar (lambda (f)
-                                  `(vhl/give-advice-to-make-vhl-on-changes ,(eval f)))
-                                functions)))
-         (on-doc-string (format "Turn on volatile highlighting for %s." function-list-string))
-
-         (off-function-name (intern (format "vhl/ext/%s/off" name-string)))
-         (off-body-form (cons
-                         'progn
-                         (mapcar (lambda (f)
-                                   `(vhl/cancel-advice-to-make-vhl-on-changes ,(eval f)))
-                                 functions)))
-         (off-doc-string (format "Turn off volatile highlighting for %s." function-list-string)))
-    `(progn
-       (defun ,on-function-name ()
-         ,on-doc-string
-         (interactive)
-         ,on-body-form)
-       (defun ,off-function-name ()
-         ,off-doc-string
-         (interactive)
-         ,off-body-form)
-       nil)))
-
-
-;;;============================================================================
-;;;
-;;;  Extensions.
-;;;
-;;;============================================================================
-
-;;-----------------------------------------------------------------------------
-;; Extension for supporting undo.
-;;   -- Put volatile highlights on the text inserted by `undo'.
-;;      (and may be `redo'...)
-;;-----------------------------------------------------------------------------
-
-(vhl/define-extension 'undo 'primitive-undo)
-(vhl/install-extension 'undo)
-
-
-;;-----------------------------------------------------------------------------
-;; Extension for supporting yank/yank-pop.
-;;   -- Put volatile highlights on the text inserted by `yank' or `yank-pop'.
-;;-----------------------------------------------------------------------------
-
-(vhl/define-extension 'yank 'yank 'yank-pop)
-(vhl/install-extension 'yank)
-
-;;-----------------------------------------------------------------------------
-;; Extension for supporting kill.
-;;   -- Put volatile highlights on the positions where killed text
-;;      used to be.
-;;-----------------------------------------------------------------------------
-
-(vhl/define-extension 'kill 'kill-region)
-(vhl/install-extension 'kill)
-
-;;-----------------------------------------------------------------------------
-;; Extension for supporting `delete-region'.
-;;   -- Put volatile highlights on the positions where deleted text
-;;      used to be. This is not so reliable since `delete-region' is
-;;      an inline function and is pre-compiled sans advice into many
-;;      other deletion functions.
-;;-----------------------------------------------------------------------------
-
-(vhl/define-extension 'delete 'delete-region)
-(vhl/install-extension 'delete)
-
-
-;;-----------------------------------------------------------------------------
-;; Extension for supporting etags.
-;;   -- Put volatile highlights on the tag name which was found by `find-tag'.
-;;-----------------------------------------------------------------------------
-(defun vhl/ext/etags/on ()
-  "Turn on volatile highlighting for `etags'."
-  (interactive)
-  (require 'etags)
-
-  (defadvice find-tag (after vhl/ext/etags/make-vhl-after-find-tag (tagname &optional next-p regexp-p))
-    (let ((pos (point))
-          (len (length tagname)))
-      (save-excursion
-        (search-forward tagname)
-        (vhl/add-range (- (point) len) (point)))))
-  (ad-activate 'find-tag))
-
-(defun vhl/ext/etags/off ()
-  "Turn off volatile highlighting for `etags'."
-  (interactive)
-  (vhl/disable-advice-if-defined
-   'find-tag 'after 'vhl/ext/etags/make-vhl-after-find-tag))
-
-(vhl/install-extension 'etags)
-
-
-;;-----------------------------------------------------------------------------
-;; Extension for supporting occur.
-;;   -- Put volatile highlights on occurrence which is selected by
-;;      `occur-mode-goto-occurrence' or `occur-mode-display-occurrence'.
-;;-----------------------------------------------------------------------------
-(defun vhl/ext/occur/on ()
-  "Turn on volatile highlighting for `occur'."
-  (interactive)
-
-  (lexical-let ((*occur-str* nil)) ;; Text in current line.
-    (defun vhl/ext/occur/.pre-hook-fn ()
-      (save-excursion
-        (let* ((bol (progn (beginning-of-line) (point)))
-               (eol (progn (end-of-line) (point)))
-               (bos (text-property-any bol eol 'occur-match t)))
-          (setq *occur-str* (and bos eol
-                                 (buffer-substring bos eol))))))
-
-    (defun vhl/ext/occur/.post-hook-fn ()
-      (let ((marker (and *occur-str*
-                         (get-text-property 0 'occur-target *occur-str*)))
-            (len (length *occur-str*))
-            (ptr 0)
-            (be-lst nil))
-        (when marker
-          ;; Detect position of each occurrence by scanning face
-          ;; `list-matching-lines-face' put on them.
-          (while (and ptr
-                      (setq ptr (text-property-any ptr len
-                                                   'face
-                                                   list-matching-lines-face
-                                                   *occur-str*)))
-            (let ((beg ptr)
-                  (end (or (setq ptr
-                                 (next-single-property-change
-                                  ptr 'face *occur-str*))
-                           ;; Occurrence ends at eol.
-                           len)))
-              (push (list beg end)
-                    be-lst)))
-          ;; Put volatile highlights on occurrences.
-          (with-current-buffer (marker-buffer marker)
-            (let* ((bol (marker-position marker)))
-              (dolist (be be-lst)
-                (let ((pt-beg (+ bol (nth 0 be)))
-                      (pt-end (+ bol (nth 1 be))))
-                  ;; When the occurrence is in folded line,
-                  ;; put highlight over whole line which
-                  ;; contains folded part.
-                  (dolist (ov (overlays-at pt-beg))
-                    (when (overlay-get ov 'invisible)
-                      ;;(message "INVISIBLE: %s" ov)
-                      (save-excursion
-                        (goto-char (overlay-start ov))
-                        (beginning-of-line)
-                        (setq pt-beg (min pt-beg (point)))
-                        (goto-char (overlay-end ov))
-                        (end-of-line)
-                        (setq pt-end (max pt-end (point))))))
-
-                  (vhl/add-range pt-beg
-                                 pt-end
-                                 nil
-                                 list-matching-lines-face))))))))
-
-
-    (defadvice occur-mode-goto-occurrence (before vhl/ext/occur/pre-hook (&optional event))
-      (vhl/ext/occur/.pre-hook-fn))
-    (defadvice occur-mode-goto-occurrence (after vhl/ext/occur/post-hook (&optional event))
-      (vhl/ext/occur/.post-hook-fn))
-
-    (defadvice occur-mode-display-occurrence (before vhl/ext/occur/pre-hook ())
-      (vhl/ext/occur/.pre-hook-fn))
-    (defadvice occur-mode-display-occurrence (after vhl/ext/occur/post-hook ())
-      (vhl/ext/occur/.post-hook-fn))
-
-    (defadvice occur-mode-goto-occurrence-other-window (before vhl/ext/occur/pre-hook ())
-      (vhl/ext/occur/.pre-hook-fn))
-    (defadvice occur-mode-goto-occurrence-other-window (after vhl/ext/occur/post-hook ())
-      (vhl/ext/occur/.post-hook-fn))
-
-    (ad-activate 'occur-mode-goto-occurrence)
-    (ad-activate 'occur-mode-display-occurrence)
-    (ad-activate 'occur-mode-goto-occurrence-other-window)))
-
-(defun vhl/ext/occur/off ()
-  "Turn off volatile highlighting for `occur'."
-  (interactive)
-
-  (vhl/disable-advice-if-defined
-   'occur-mode-goto-occurrence 'before 'vhl/ext/occur/pre-hook)
-  (vhl/disable-advice-if-defined
-   'occur-mode-goto-occurrence 'after 'vhl/ext/occur/post-hook)
-
-  (vhl/disable-advice-if-defined
-   'occur-mode-display-occurrence 'before 'vhl/ext/occur/pre-hook)
-  (vhl/disable-advice-if-defined
-   'occur-mode-display-occurrence 'after 'vhl/ext/occur/post-hook)
-
-  (vhl/disable-advice-if-defined
-   'occur-mode-goto-occurrence-other-window 'before 'vhl/ext/occur/pre-hook)
-  (vhl/disable-advice-if-defined
-   'occur-mode-goto-occurrence-other-window 'after 'vhl/ext/occur/post-hook))
-
-(vhl/install-extension 'occur)
-
-
-;;-----------------------------------------------------------------------------
-;; Extension for non-incremental search operations.
-;;   -- Put volatile highlights on the text found by non-incremental search
-;;      operations.
-;;-----------------------------------------------------------------------------
-
-(defmacro vhl/ext/nonincremental-search/.advice-to-vhl (fn)
-  `(when (fboundp (quote ,fn))
-      (defadvice ,fn (after
-                      ,(intern (format "vhl/ext/nonincremental-search/%s"
-                                       fn))
-                      (&rest args))
-        (when ad-return-value
-          (vhl/add-range (match-beginning 0) (match-end 0) nil 'match)))
-      (ad-activate (quote ,fn))))
-
-(defmacro vhl/ext/nonincremental-search/.disable-advice-to-vhl (fn)
-  `(vhl/disable-advice-if-defined
-    (quote ,fn)
-    'after
-    (quote ,(intern (format "vhl/ext/nonincremental-search/%s" fn)))))
-
-(defun vhl/ext/nonincremental-search/on ()
-  "Turn on volatile highlighting for non-incremental search operations."
-  (interactive)
-  (when (vhl/require-noerror 'menu-bar nil)
-    (vhl/ext/nonincremental-search/.advice-to-vhl nonincremental-search-forward)
-    (vhl/ext/nonincremental-search/.advice-to-vhl nonincremental-search-backward)
-    (vhl/ext/nonincremental-search/.advice-to-vhl nonincremental-re-search-forward)
-    (vhl/ext/nonincremental-search/.advice-to-vhl nonincremental-re-search-backward)
-    (vhl/ext/nonincremental-search/.advice-to-vhl nonincremental-repeat-search-forward)
-    (vhl/ext/nonincremental-search/.advice-to-vhl nonincremental-repeat-search-backward)))
-
-(defun vhl/ext/nonincremental-search/off ()
-  "Turn off volatile highlighting for  non-incremental search operations."
-  (interactive)
-  (when (vhl/require-noerror 'menu-bar nil)
-    (vhl/ext/nonincremental-search/.disable-advice-to-vhl nonincremental-search-forward)
-    (vhl/ext/nonincremental-search/.disable-advice-to-vhl nonincremental-search-backward)
-    (vhl/ext/nonincremental-search/.disable-advice-to-vhl nonincremental-re-search-forward)
-    (vhl/ext/nonincremental-search/.disable-advice-to-vhl nonincremental-re-search-backward)
-    (vhl/ext/nonincremental-search/.disable-advice-to-vhl nonincremental-repeat-search-forward)
-    (vhl/ext/nonincremental-search/.disable-advice-to-vhl nonincremental-repeat-search-backward)))
-
-(vhl/install-extension 'nonincremental-search)
-
-
-;;-----------------------------------------------------------------------------
-;; Extension for hideshow.
-;;   -- Put volatile highlights on the text blocks which are shown/hidden
-;;      by hideshow.
-;;-----------------------------------------------------------------------------
-
-(defun vhl/ext/hideshow/.activate ()
-  (defadvice hs-show-block (around vhl/ext/hideshow/vhl/around-hook (&optional end))
-    (let* ((bol (save-excursion (progn (beginning-of-line) (point))))
-           (eol (save-excursion (progn (end-of-line) (point))))
-           (ov-folded (car (delq nil 
-                                 (mapcar #'(lambda (ov)
-                                             (and (overlay-get ov 'hs)
-                                                  ov))
-                                         (overlays-in bol (1+ eol))))))
-           (boov (and ov-folded (overlay-start ov-folded)))
-           (eoov (and ov-folded (overlay-end ov-folded))))
-    
-      ad-do-it
-    
-      (when (and boov eoov)
-        (vhl/add-range boov eoov))))
-  (ad-activate 'hs-show-block))
-
-(defun vhl/ext/hideshow/on ()
-  "Turn on volatile highlighting for `hideshow'."
-  (interactive)
-  
-  (cond
-   ((featurep 'hideshow)
-    (vhl/ext/hideshow/.activate))
-   (t
-    (eval-after-load "hideshow" '(vhl/ext/hideshow/.activate)))))
-
-(defun vhl/ext/hideshow/off ()
-  (vhl/disable-advice-if-defined 'hs-show-block
-                                 'after
-                                 'vhl/ext/hideshow/vhl/around-hook))
-
-(vhl/install-extension 'hideshow)
-
-
-;;;============================================================================
-;;;
-;;;  Suppress compiler warnings regarding to emacs/xemacs private functions.
-;;;
-;;;============================================================================
-
-;; Local variables:
-;; byte-compile-warnings: (not unresolved)
-;; End:
-
-;;; volatile-highlights.el ends here
diff --git a/elpa/volatile-highlights-20160612.155/volatile-highlights.elc b/elpa/volatile-highlights-20160612.155/volatile-highlights.elc
deleted file mode 100644
index 8079c92..0000000
--- a/elpa/volatile-highlights-20160612.155/volatile-highlights.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/volatile-highlights-readme.txt b/elpa/volatile-highlights-readme.txt
deleted file mode 100644
index dbce51f..0000000
--- a/elpa/volatile-highlights-readme.txt
+++ /dev/null
@@ -1,88 +0,0 @@
-Overview
-========
-This library provides minor mode `volatile-highlights-mode', which
-brings visual feedback to some operations by highlighting portions
-relating to the operations.
-
-All of highlights made by this library will be removed
-when any new operation is executed.
-
-
-INSTALLING
-==========
-To install this library, save this file to a directory in your
-`load-path' (you can view the current `load-path' using "C-h v
-load-path" within Emacs), then add the following line to your
-.emacs start up file:
-
-   (require 'volatile-highlights)
-   (volatile-highlights-mode t)
-
-
-USING
-=====
-To toggle volatile highlighting, type `M-x volatile-highlights-mode <RET>'.
-
-While this minor mode is on, a string `VHL' will be displayed on the modeline.
-
-Currently, operations listed below will be highlighted While the minor mode
-`volatile-highlights-mode' is on:
-
-   - `undo':
-     Volatile highlights will be put on the text inserted by `undo'.
-
-   - `yank' and `yank-pop':
-     Volatile highlights will be put on the text inserted by `yank'
-     or `yank-pop'.
-
-   - `kill-region', `kill-line', any other killing function:
-     Volatile highlights will be put at the positions where the
-     killed text used to be.
-
-   - `delete-region':
-     Same as `kill-region', but not as reliable since
-     `delete-region' is an inline function.
-
-   - `find-tag':
-     Volatile highlights will be put on the tag name which was found
-     by `find-tag'.
-
-   - `occur-mode-goto-occurrence' and `occur-mode-display-occurrence':
-     Volatile highlights will be put on the occurrence which is selected
-     by `occur-mode-goto-occurrence' or `occur-mode-display-occurrence'.
-
-   - Non incremental search operations:
-     Volatile highlights will be put on the the text found by
-     commands listed below:
-
-       `nonincremental-search-forward'
-       `nonincremental-search-backward'
-       `nonincremental-re-search-forward'
-       `nonincremental-re-search-backward'
-       `nonincremental-repeat-search-forward'
-       `nonincremental-repeat-search-backwar'
-
-Highlighting support for each operations can be turned on/off individually
-via customization. Also check out the customization group
-
-  `M-x customize-group RET volatile-highlights RET'
-
-
-EXAMPLE SNIPPETS FOR USING VOLATILE HIGHLIGHTS WITH OTHER PACKAGES
-==================================================================
-
-- vip-mode
-
-  (vhl/define-extension 'vip 'vip-yank)
-  (vhl/install-extension 'vip)
-
-- evil-mode
-
-  (vhl/define-extension 'evil 'evil-paste-after 'evil-paste-before
-                        'evil-paste-pop 'evil-move)
-  (vhl/install-extension 'evil)
-
-- undo-tree
-
-  (vhl/define-extension 'undo-tree 'undo-tree-yank 'undo-tree-move)
-  (vhl/install-extension 'undo-tree)
diff --git a/elpa/with-editor-20181113.1845/dir b/elpa/with-editor-20181113.1845/dir
deleted file mode 100644
index c5810e0..0000000
--- a/elpa/with-editor-20181113.1845/dir
+++ /dev/null
@@ -1,18 +0,0 @@
-This is the file .../info/dir, which contains the
-topmost node of the Info hierarchy, called (dir)Top.
-The first time you invoke Info you start off looking at this node.
-
-File: dir,	Node: Top	This is the top of the INFO tree
-
-  This (the Directory node) gives a menu of major topics.
-  Typing "q" exits, "H" lists all Info commands, "d" returns here,
-  "h" gives a primer for first-timers,
-  "mEmacs<Return>" visits the Emacs manual, etc.
-
-  In Emacs, you can click mouse button 2 on a menu item or cross reference
-  to select it.
-
-* Menu:
-
-Emacs
-* With-Editor: (with-editor).   Using the Emacsclient as $EDITOR.
diff --git a/elpa/with-editor-20181113.1845/with-editor-autoloads.el b/elpa/with-editor-20181113.1845/with-editor-autoloads.el
deleted file mode 100644
index cdfafa8..0000000
--- a/elpa/with-editor-20181113.1845/with-editor-autoloads.el
+++ /dev/null
@@ -1,99 +0,0 @@
-;;; with-editor-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "with-editor" "with-editor.el" (0 0 0 0))
-;;; Generated autoloads from with-editor.el
-
-(autoload 'with-editor-export-editor "with-editor" "\
-Teach subsequent commands to use current Emacs instance as editor.
-
-Set and export the environment variable ENVVAR, by default
-\"EDITOR\".  The value is automatically generated to teach
-commands to use the current Emacs instance as \"the editor\".
-
-This works in `shell-mode', `term-mode' and `eshell-mode'.
-
-\(fn &optional (ENVVAR \"EDITOR\"))" t nil)
-
-(autoload 'with-editor-export-git-editor "with-editor" "\
-Like `with-editor-export-editor' but always set `$GIT_EDITOR'.
-
-\(fn)" t nil)
-
-(autoload 'with-editor-export-hg-editor "with-editor" "\
-Like `with-editor-export-editor' but always set `$HG_EDITOR'.
-
-\(fn)" t nil)
-
-(defvar shell-command-with-editor-mode nil "\
-Non-nil if Shell-Command-With-Editor mode is enabled.
-See the `shell-command-with-editor-mode' command
-for a description of this minor mode.")
-
-(custom-autoload 'shell-command-with-editor-mode "with-editor" nil)
-
-(autoload 'shell-command-with-editor-mode "with-editor" "\
-Teach `shell-command' to use current Emacs instance as editor.
-
-Teach `shell-command', and all commands that ultimately call that
-command, to use the current Emacs instance as editor by executing
-\"EDITOR=CLIENT COMMAND&\" instead of just \"COMMAND&\".
-
-CLIENT is automatically generated; EDITOR=CLIENT instructs
-COMMAND to use to the current Emacs instance as \"the editor\",
-assuming no other variable overrides the effect of \"$EDITOR\".
-CLIENT may be the path to an appropriate emacsclient executable
-with arguments, or a script which also works over Tramp.
-
-Alternatively you can use the `with-editor-async-shell-command',
-which also allows the use of another variable instead of
-\"EDITOR\".
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'with-editor-async-shell-command "with-editor" "\
-Like `async-shell-command' but with `$EDITOR' set.
-
-Execute string \"ENVVAR=CLIENT COMMAND\" in an inferior shell;
-display output, if any.  With a prefix argument prompt for an
-environment variable, otherwise the default \"EDITOR\" variable
-is used.  With a negative prefix argument additionally insert
-the COMMAND's output at point.
-
-CLIENT is automatically generated; ENVVAR=CLIENT instructs
-COMMAND to use to the current Emacs instance as \"the editor\",
-assuming it respects ENVVAR as an \"EDITOR\"-like variable.
-CLIENT may be the path to an appropriate emacsclient executable
-with arguments, or a script which also works over Tramp.
-
-Also see `async-shell-command' and `shell-command'.
-
-\(fn COMMAND &optional OUTPUT-BUFFER ERROR-BUFFER ENVVAR)" t nil)
-
-(autoload 'with-editor-shell-command "with-editor" "\
-Like `shell-command' or `with-editor-async-shell-command'.
-If COMMAND ends with \"&\" behave like the latter,
-else like the former.
-
-\(fn COMMAND &optional OUTPUT-BUFFER ERROR-BUFFER ENVVAR)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "with-editor" '("with-editor" "start-file-process--with-editor-process-filter" "server-" "shell-command--shell-command-with-editor-mode")))
-
-;;;***
-
-;;;### (autoloads nil nil ("with-editor-pkg.el") (0 0 0 0))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; with-editor-autoloads.el ends here
diff --git a/elpa/with-editor-20181113.1845/with-editor-pkg.el b/elpa/with-editor-20181113.1845/with-editor-pkg.el
deleted file mode 100644
index b74275f..0000000
--- a/elpa/with-editor-20181113.1845/with-editor-pkg.el
+++ /dev/null
@@ -1,13 +0,0 @@
-(define-package "with-editor" "20181113.1845" "Use the Emacsclient as $EDITOR"
-  '((emacs "24.4")
-    (async "1.9"))
-  :keywords
-  '("tools")
-  :authors
-  '(("Jonas Bernoulli" . "jonas@bernoul.li"))
-  :maintainer
-  '("Jonas Bernoulli" . "jonas@bernoul.li")
-  :url "https://github.com/magit/with-editor")
-;; Local Variables:
-;; no-byte-compile: t
-;; End:
diff --git a/elpa/with-editor-20181113.1845/with-editor.el b/elpa/with-editor-20181113.1845/with-editor.el
deleted file mode 100644
index 80929d5..0000000
--- a/elpa/with-editor-20181113.1845/with-editor.el
+++ /dev/null
@@ -1,852 +0,0 @@
-;;; with-editor.el --- Use the Emacsclient as $EDITOR -*- lexical-binding: t -*-
-
-;; Copyright (C) 2014-2018  The Magit Project Contributors
-;;
-;; You should have received a copy of the AUTHORS.md file.  If not,
-;; see https://github.com/magit/with-editor/blob/master/AUTHORS.md.
-
-;; Author: Jonas Bernoulli <jonas@bernoul.li>
-;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
-
-;; Package-Requires: ((emacs "24.4") (async "1.9"))
-;; Keywords: tools
-;; Homepage: https://github.com/magit/with-editor
-
-;; This file is not part of GNU Emacs.
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with Magit.  If not, see http://www.gnu.org/licenses.
-
-;;; Commentary:
-
-;; This library makes it possible to reliably use the Emacsclient as
-;; the `$EDITOR' of child processes.  It makes sure that they know how
-;; to call home.  For remote processes a substitute is provided, which
-;; communicates with Emacs on standard output/input instead of using a
-;; socket as the Emacsclient does.
-
-;; It provides the commands `with-editor-async-shell-command' and
-;; `with-editor-shell-command', which are intended as replacements
-;; for `async-shell-command' and `shell-command'.  They automatically
-;; export `$EDITOR' making sure the executed command uses the current
-;; Emacs instance as "the editor".  With a prefix argument these
-;; commands prompt for an alternative environment variable such as
-;; `$GIT_EDITOR'.  To always use these variants add this to your init
-;; file:
-;;
-;;   (define-key (current-global-map)
-;;     [remap async-shell-command] 'with-editor-async-shell-command)
-;;   (define-key (current-global-map)
-;;     [remap shell-command] 'with-editor-shell-command)
-
-;; Alternatively use the global `shell-command-with-editor-mode',
-;; which always sets `$EDITOR' for all Emacs commands which ultimately
-;; use `shell-command' to asynchronously run some shell command.
-
-;; The command `with-editor-export-editor' exports `$EDITOR' or
-;; another such environment variable in `shell-mode', `term-mode' and
-;; `eshell-mode' buffers.  Use this Emacs command before executing a
-;; shell command which needs the editor set, or always arrange for the
-;; current Emacs instance to be used as editor by adding it to the
-;; appropriate mode hooks:
-;;
-;;   (add-hook 'shell-mode-hook  'with-editor-export-editor)
-;;   (add-hook 'term-exec-hook   'with-editor-export-editor)
-;;   (add-hook 'eshell-mode-hook 'with-editor-export-editor)
-
-;; Some variants of this function exist, these two forms are
-;; equivalent:
-;;
-;;   (add-hook 'shell-mode-hook
-;;             (apply-partially 'with-editor-export-editor "GIT_EDITOR"))
-;;   (add-hook 'shell-mode-hook 'with-editor-export-git-editor)
-
-;; This library can also be used by other packages which need to use
-;; the current Emacs instance as editor.  In fact this library was
-;; written for Magit and its `git-commit-mode' and `git-rebase-mode'.
-;; Consult `git-rebase.el' and the related code in `magit-sequence.el'
-;; for a simple example.
-
-;;; Code:
-
-(require 'cl-lib)
-;; `pcase-dolist' is not autoloaded on Emacs 24.
-(eval-when-compile (require 'pcase))
-(require 'server)
-(require 'shell)
-
-(and (require 'async-bytecomp nil t)
-     (memq 'magit (bound-and-true-p async-bytecomp-allowed-packages))
-     (fboundp 'async-bytecomp-package-mode)
-     (async-bytecomp-package-mode 1))
-
-(eval-when-compile
-  (progn (require 'dired nil t)
-         (require 'eshell nil t)
-         (require 'term nil t)
-         (require 'warnings nil t)))
-(declare-function dired-get-filename 'dired)
-(declare-function term-emulate-terminal 'term)
-(defvar eshell-preoutput-filter-functions)
-
-;;; Options
-
-(defgroup with-editor nil
-  "Use the Emacsclient as $EDITOR."
-  :group 'external
-  :group 'server)
-
-(defun with-editor-locate-emacsclient ()
-  "Search for a suitable Emacsclient executable."
-  (or (with-editor-locate-emacsclient-1
-       (with-editor-emacsclient-path)
-       (length (split-string emacs-version "\\.")))
-      (prog1 nil (display-warning 'with-editor "\
-Cannot determine a suitable Emacsclient
-
-Determining an Emacsclient executable suitable for the
-current Emacs instance failed.  For more information
-please see https://github.com/magit/magit/wiki/Emacsclient."))))
-
-(defun with-editor-locate-emacsclient-1 (path depth)
-  (let* ((version-lst (cl-subseq (split-string emacs-version "\\.") 0 depth))
-         (version-reg (concat "^" (mapconcat #'identity version-lst "\\."))))
-    (or (locate-file-internal
-         (if (equal (downcase invocation-name) "remacs")
-             "remacsclient"
-           "emacsclient")
-         path
-         (cl-mapcan
-          (lambda (v) (cl-mapcar (lambda (e) (concat v e)) exec-suffixes))
-          (nconc (and (boundp 'debian-emacs-flavor)
-                      (list (format ".%s" debian-emacs-flavor)))
-                 (cl-mapcon (lambda (v)
-                              (setq v (mapconcat #'identity (reverse v) "."))
-                              (list v (concat "-" v) (concat ".emacs" v)))
-                            (reverse version-lst))
-                 (list "" "-snapshot" ".emacs-snapshot")))
-         (lambda (exec)
-           (ignore-errors
-             (string-match-p version-reg
-                             (with-editor-emacsclient-version exec)))))
-        (and (> depth 1)
-             (with-editor-locate-emacsclient-1 path (1- depth))))))
-
-(defun with-editor-emacsclient-version (exec)
-  (let ((default-directory (file-name-directory exec)))
-    (ignore-errors
-      (cadr (split-string (car (process-lines exec "--version")))))))
-
-(defun with-editor-emacsclient-path ()
-  (let ((path exec-path))
-    (when invocation-directory
-      (push (directory-file-name invocation-directory) path)
-      (let* ((linkname (expand-file-name invocation-name invocation-directory))
-             (truename (file-chase-links linkname)))
-        (unless (equal truename linkname)
-          (push (directory-file-name (file-name-directory truename)) path)))
-      (when (eq system-type 'darwin)
-        (let ((dir (expand-file-name "bin" invocation-directory)))
-          (when (file-directory-p dir)
-            (push dir path)))
-        (when (string-match-p "Cellar" invocation-directory)
-          (let ((dir (expand-file-name "../../../bin" invocation-directory)))
-            (when (file-directory-p dir)
-              (push dir path))))))
-    (cl-remove-duplicates path :test 'equal)))
-
-(defcustom with-editor-emacsclient-executable (with-editor-locate-emacsclient)
-  "The Emacsclient executable used by the `with-editor' macro."
-  :group 'with-editor
-  :type '(choice (string :tag "Executable")
-                 (const  :tag "Don't use Emacsclient" nil)))
-
-(defcustom with-editor-sleeping-editor "\
-sh -c '\
-echo \"WITH-EDITOR: $$ OPEN $0 IN $(pwd)\"; \
-sleep 604800 & sleep=$!; \
-trap \"kill $sleep; exit 0\" USR1; \
-trap \"kill $sleep; exit 1\" USR2; \
-wait $sleep'"
-  "The sleeping editor, used when the Emacsclient cannot be used.
-
-This fallback is used for asynchronous processes started inside
-the macro `with-editor', when the process runs on a remote machine
-or for local processes when `with-editor-emacsclient-executable'
-is nil (i.e. when no suitable Emacsclient was found, or the user
-decided not to use it).
-
-Where the latter uses a socket to communicate with Emacs' server,
-this substitute prints edit requests to its standard output on
-which a process filter listens for such requests.  As such it is
-not a complete substitute for a proper Emacsclient, it can only
-be used as $EDITOR of child process of the current Emacs instance.
-
-Some shells do not execute traps immediately when waiting for a
-child process, but by default we do use such a blocking child
-process.
-
-If you use such a shell (e.g. `csh' on FreeBSD, but not Debian),
-then you have to edit this option.  You can either replace \"sh\"
-with \"bash\" (and install that), or you can use the older, less
-performant implementation:
-
-  \"sh -c '\\
-  echo \\\"WITH-EDITOR: $$ OPEN $0 IN $(pwd)\\\"; \\
-  trap \\\"exit 0\\\" USR1; \\
-  trap \\\"exit 1\" USR2; \\
-  while true; do sleep 1; done'\"
-
-Note that the unit seperator character () right after the file
-name ($0) is required.
-
-Also note that using this alternative implementation leads to a
-delay of up to a second.  The delay can be shortened by replacing
-\"sleep 1\" with \"sleep 0.01\", or if your implementation does
-not support floats, then by using \"nanosleep\" instead."
-  :package-version '(with-editor . "2.8.0")
-  :group 'with-editor
-  :type 'string)
-
-(defcustom with-editor-finish-query-functions nil
-  "List of functions called to query before finishing session.
-
-The buffer in question is current while the functions are called.
-If any of them returns nil, then the session is not finished and
-the buffer is not killed.  The user should then fix the issue and
-try again.  The functions are called with one argument.  If it is
-non-nil then that indicates that the user used a prefix argument
-to force finishing the session despite issues.  Functions should
-usually honor that and return non-nil."
-  :group 'with-editor
-  :type 'hook)
-(put 'with-editor-finish-query-functions 'permanent-local t)
-
-(defcustom with-editor-cancel-query-functions nil
-  "List of functions called to query before canceling session.
-
-The buffer in question is current while the functions are called.
-If any of them returns nil, then the session is not canceled and
-the buffer is not killed.  The user should then fix the issue and
-try again.  The functions are called with one argument.  If it is
-non-nil then that indicates that the user used a prefix argument
-to force canceling the session despite issues.  Functions should
-usually honor that and return non-nil."
-  :group 'with-editor
-  :type 'hook)
-(put 'with-editor-cancel-query-functions 'permanent-local t)
-
-(defcustom with-editor-mode-lighter " WE"
-  "The mode-line lighter of the With-Editor mode."
-  :group 'with-editor
-  :type '(choice (const :tag "No lighter" "") string))
-
-(defvar with-editor-server-window-alist nil
-  "Alist of filename patterns vs corresponding `server-window'.
-
-Each element looks like (REGEXP . FUNCTION).  Files matching
-REGEXP are selected using FUNCTION instead of the default in
-`server-window'.
-
-Note that when a package adds an entry here then it probably
-has a reason to disrespect `server-window' and it likely is
-not a good idea to change such entries.")
-
-(defvar with-editor-file-name-history-exclude nil
-  "List of regexps for filenames `server-visit' should not remember.
-When a filename matches any of the regexps, then `server-visit'
-does not add it to the variable `file-name-history', which is
-used when reading a filename in the minibuffer.")
-
-(defcustom with-editor-shell-command-use-emacsclient t
-  "Whether to use the emacsclient when running shell commands.
-
-This affects `with-editor-shell-command-async' and, if the input
-ends with \"&\" `with-editor-shell-command' .
-
-If `shell-command-with-editor-mode' is enabled, then it also
-affects `shell-command-async' and, if the input ends with \"&\"
-`shell-command'.
-
-This is a temporary kludge that lets you choose between two
-possible defects, the ones described in the issues #23 and #40.
-
-When t, then use the emacsclient.  This has the disadvantage that
-`with-editor-mode' won't be enabled because we don't know whether
-this package was involved at all in the call to the emacsclient,
-and when it is not, then we really should.  The problem is that
-the emacsclient doesn't pass a long any environment variables to
-the server.  This will hopefully be fixed in Emacs eventually.
-
-When nil, then use the sleeping editor.  Because in this case we
-know that this package is involved, we can enable the mode.  But
-this makes it necessary that you invoke $EDITOR in shell scripts
-like so:
-
-  eval \"$EDITOR\" file
-
-And some tools that do not handle $EDITOR properly also break."
-  :package-version '(with-editor . "2.7.1")
-  :group 'with-editor
-  :type 'boolean)
-
-;;; Mode Commands
-
-(defvar with-editor-pre-finish-hook nil)
-(defvar with-editor-pre-cancel-hook nil)
-(defvar with-editor-post-finish-hook nil)
-(defvar with-editor-post-finish-hook-1 nil)
-(defvar with-editor-post-cancel-hook nil)
-(defvar with-editor-post-cancel-hook-1 nil)
-(defvar with-editor-cancel-alist nil)
-(put 'with-editor-pre-finish-hook 'permanent-local t)
-(put 'with-editor-pre-cancel-hook 'permanent-local t)
-(put 'with-editor-post-finish-hook 'permanent-local t)
-(put 'with-editor-post-cancel-hook 'permanent-local t)
-
-(defvar with-editor-show-usage t)
-(defvar with-editor-cancel-message nil)
-(defvar with-editor-previous-winconf nil)
-(make-variable-buffer-local 'with-editor-show-usage)
-(make-variable-buffer-local 'with-editor-cancel-message)
-(make-variable-buffer-local 'with-editor-previous-winconf)
-(put 'with-editor-cancel-message 'permanent-local t)
-(put 'with-editor-previous-winconf 'permanent-local t)
-
-(defvar-local with-editor--pid nil "For internal use.")
-(put 'with-editor--pid 'permanent-local t)
-
-(defun with-editor-finish (force)
-  "Finish the current edit session."
-  (interactive "P")
-  (when (run-hook-with-args-until-failure
-         'with-editor-finish-query-functions force)
-    (let ((post-finish-hook with-editor-post-finish-hook)
-          (post-commit-hook (bound-and-true-p git-commit-post-finish-hook))
-          (dir default-directory))
-      (run-hooks 'with-editor-pre-finish-hook)
-      (with-editor-return nil)
-      (accept-process-output nil 0.1)
-      (with-temp-buffer
-        (setq default-directory dir)
-        (setq-local with-editor-post-finish-hook post-finish-hook)
-        (when (bound-and-true-p git-commit-post-finish-hook)
-          (setq-local git-commit-post-finish-hook post-commit-hook))
-        (run-hooks 'with-editor-post-finish-hook)))))
-
-(defun with-editor-cancel (force)
-  "Cancel the current edit session."
-  (interactive "P")
-  (when (run-hook-with-args-until-failure
-         'with-editor-cancel-query-functions force)
-    (let ((message with-editor-cancel-message))
-      (when (functionp message)
-        (setq message (funcall message)))
-      (let ((post-cancel-hook with-editor-post-cancel-hook)
-            (with-editor-cancel-alist nil)
-            (dir default-directory))
-        (run-hooks 'with-editor-pre-cancel-hook)
-        (with-editor-return t)
-        (accept-process-output nil 0.1)
-        (with-temp-buffer
-          (setq default-directory dir)
-          (setq-local with-editor-post-cancel-hook post-cancel-hook)
-          (run-hooks 'with-editor-post-cancel-hook)))
-      (message (or message "Canceled by user")))))
-
-(defun with-editor-return (cancel)
-  (let ((winconf with-editor-previous-winconf)
-        (clients server-buffer-clients)
-        (dir default-directory)
-        (pid with-editor--pid))
-    (remove-hook 'kill-buffer-query-functions
-                 'with-editor-kill-buffer-noop t)
-    (cond (cancel
-           (save-buffer)
-           (if clients
-               (dolist (client clients)
-                 (ignore-errors
-                   (server-send-string client "-error Canceled by user"))
-                 (delete-process client))
-             ;; Fallback for when emacs was used as $EDITOR
-             ;; instead of emacsclient or the sleeping editor.
-             ;; See https://github.com/magit/magit/issues/2258.
-             (ignore-errors (delete-file buffer-file-name))
-             (kill-buffer)))
-          (t
-           (save-buffer)
-           (if clients
-               ;; Don't use `server-edit' because we do not want to
-               ;; show another buffer belonging to another client.
-               ;; See https://github.com/magit/magit/issues/2197.
-               (server-done)
-             (kill-buffer))))
-    (when pid
-      (let ((default-directory dir))
-        (process-file "kill" nil nil nil
-                      "-s" (if cancel "USR2" "USR1") pid)))
-    (when (and winconf (eq (window-configuration-frame winconf)
-                           (selected-frame)))
-      (set-window-configuration winconf))))
-
-;;; Mode
-
-(defvar with-editor-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map "\C-c\C-c"                           'with-editor-finish)
-    (define-key map [remap server-edit]                  'with-editor-finish)
-    (define-key map [remap evil-save-and-close]          'with-editor-finish)
-    (define-key map [remap evil-save-modified-and-close] 'with-editor-finish)
-    (define-key map "\C-c\C-k"                           'with-editor-cancel)
-    (define-key map [remap kill-buffer]                  'with-editor-cancel)
-    (define-key map [remap ido-kill-buffer]              'with-editor-cancel)
-    (define-key map [remap iswitchb-kill-buffer]         'with-editor-cancel)
-    (define-key map [remap evil-quit]                    'with-editor-cancel)
-    map))
-
-(define-minor-mode with-editor-mode
-  "Edit a file as the $EDITOR of an external process."
-  :lighter with-editor-mode-lighter
-  ;; Protect the user from killing the buffer without using
-  ;; either `with-editor-finish' or `with-editor-cancel',
-  ;; and from removing the key bindings for these commands.
-  (unless with-editor-mode
-    (user-error "With-Editor mode cannot be turned off"))
-  (add-hook 'kill-buffer-query-functions
-            'with-editor-kill-buffer-noop nil t)
-  ;; `server-execute' displays a message which is not
-  ;; correct when using this mode.
-  (when with-editor-show-usage
-    (with-editor-usage-message)))
-
-(put 'with-editor-mode 'permanent-local t)
-
-(defun with-editor-kill-buffer-noop ()
-  (user-error (substitute-command-keys "\
-Don't kill this buffer.  Instead cancel using \\[with-editor-cancel]")))
-
-(defun with-editor-usage-message ()
-  ;; Run after `server-execute', which is run using
-  ;; a timer which starts immediately.
-  (run-with-timer
-   0.01 nil `(lambda ()
-               (with-current-buffer ,(current-buffer)
-                 (message (substitute-command-keys "\
-Type \\[with-editor-finish] to finish, \
-or \\[with-editor-cancel] to cancel"))))))
-
-;;; Wrappers
-
-(defvar with-editor--envvar nil "For internal use.")
-
-(defmacro with-editor (&rest body)
-  "Use the Emacsclient as $EDITOR while evaluating BODY.
-Modify the `process-environment' for processes started in BODY,
-instructing them to use the Emacsclient as $EDITOR.  If optional
-ENVVAR is a literal string then bind that environment variable
-instead.
-\n(fn [ENVVAR] BODY...)"
-  (declare (indent defun) (debug (body)))
-  `(let ((with-editor--envvar ,(if (stringp (car body))
-                                   (pop body)
-                                 '(or with-editor--envvar "EDITOR")))
-         (process-environment process-environment))
-     (with-editor--setup)
-     ,@body))
-
-(defmacro with-editor* (envvar &rest body)
-  "Use the Emacsclient as the editor while evaluating BODY.
-Modify the `process-environment' for processes started in BODY,
-instructing them to use the Emacsclient as editor.  ENVVAR is the
-environment variable that is exported to do so, it is evaluated
-at run-time.
-\n(fn [ENVVAR] BODY...)"
-  (declare (indent defun) (debug (sexp body)))
-  `(let ((with-editor--envvar ,envvar)
-         (process-environment process-environment))
-     (with-editor--setup)
-     ,@body))
-
-(defun with-editor--setup ()
-  (if (or (not with-editor-emacsclient-executable)
-          (file-remote-p default-directory))
-      (push (concat with-editor--envvar "=" with-editor-sleeping-editor)
-            process-environment)
-    ;; Make sure server-use-tcp's value is valid.
-    (unless (featurep 'make-network-process '(:family local))
-      (setq server-use-tcp t))
-    ;; Make sure the server is running.
-    (unless (process-live-p server-process)
-      (when (server-running-p server-name)
-        (setq server-name (format "server%s" (emacs-pid)))
-        (when (server-running-p server-name)
-          (server-force-delete server-name)))
-      (server-start))
-    ;; Tell $EDITOR to use the Emacsclient.
-    (push (concat with-editor--envvar "="
-                  (shell-quote-argument with-editor-emacsclient-executable)
-                  ;; Tell the process where the server file is.
-                  (and (not server-use-tcp)
-                       (concat " --socket-name="
-                               (shell-quote-argument
-                                (expand-file-name server-name
-                                                  server-socket-dir)))))
-          process-environment)
-    (when server-use-tcp
-      (push (concat "EMACS_SERVER_FILE="
-                    (expand-file-name server-name server-auth-dir))
-            process-environment))
-    ;; As last resort fallback to the sleeping editor.
-    (push (concat "ALTERNATE_EDITOR=" with-editor-sleeping-editor)
-          process-environment)))
-
-(defun with-editor-server-window ()
-  (or (and buffer-file-name
-           (cdr (cl-find-if (lambda (cons)
-                              (string-match-p (car cons) buffer-file-name))
-                            with-editor-server-window-alist)))
-      server-window))
-
-(defun server-switch-buffer--with-editor-server-window-alist
-    (fn &optional next-buffer killed-one filepos)
-  "Honor `with-editor-server-window-alist' (which see)."
-  (let ((server-window (with-current-buffer
-                           (or next-buffer (current-buffer))
-                         (when with-editor-mode
-                           (setq with-editor-previous-winconf
-                                 (current-window-configuration)))
-                         (with-editor-server-window))))
-    (funcall fn next-buffer killed-one filepos)))
-
-(advice-add 'server-switch-buffer :around
-            'server-switch-buffer--with-editor-server-window-alist)
-
-(defun start-file-process--with-editor-process-filter
-    (fn name buffer program &rest program-args)
-  "When called inside a `with-editor' form and the Emacsclient
-cannot be used, then give the process the filter function
-`with-editor-process-filter'.  To avoid overriding the filter
-being added here you should use `with-editor-set-process-filter'
-instead of `set-process-filter' inside `with-editor' forms.
-
-When the `default-directory' is located on a remote machine,
-then also manipulate PROGRAM and PROGRAM-ARGS in order to set
-the appropriate editor environment variable."
-  (if (not with-editor--envvar)
-      (apply fn name buffer program program-args)
-    (when (file-remote-p default-directory)
-      (unless (equal program "env")
-        (push program program-args)
-        (setq program "env"))
-      (push (concat with-editor--envvar "=" with-editor-sleeping-editor)
-            program-args))
-    (let ((process (apply fn name buffer program program-args)))
-      (set-process-filter process 'with-editor-process-filter)
-      (process-put process 'default-dir default-directory)
-      process)))
-
-(advice-add 'start-file-process :around
-            'start-file-process--with-editor-process-filter)
-
-(defun with-editor-set-process-filter (process filter)
-  "Like `set-process-filter' but keep `with-editor-process-filter'.
-Give PROCESS the new FILTER but keep `with-editor-process-filter'
-if that was added earlier by the adviced `start-file-process'.
-
-Do so by wrapping the two filter functions using a lambda, which
-becomes the actual filter.  It calls `with-editor-process-filter'
-first, passing t as NO-STANDARD-FILTER.  Then it calls FILTER,
-which may or may not insert the text into the PROCESS' buffer."
-  (set-process-filter
-   process
-   (if (eq (process-filter process) 'with-editor-process-filter)
-       `(lambda (proc str)
-          (,filter proc str)
-          (with-editor-process-filter proc str t))
-     filter)))
-
-(defvar with-editor-filter-visit-hook nil)
-
-(defun with-editor-output-filter (string)
-  (save-match-data
-    (if (string-match "^WITH-EDITOR: \
-\\([0-9]+\\) OPEN \\([^]+?\\)\
-\\(?: IN \\([^\r]+?\\)\\)?\r?$" string)
-        (let ((pid  (match-string 1 string))
-              (file (match-string 2 string))
-              (dir  (match-string 3 string)))
-          (unless (file-name-absolute-p file)
-            (setq file (expand-file-name file dir)))
-          (when default-directory
-            (setq file (concat (file-remote-p default-directory) file)))
-          (with-current-buffer (find-file-noselect file)
-            (with-editor-mode 1)
-            (setq with-editor--pid pid)
-            (run-hooks 'with-editor-filter-visit-hook)
-            (funcall (or (with-editor-server-window) 'switch-to-buffer)
-                     (current-buffer))
-            (kill-local-variable 'server-window))
-          nil)
-      string)))
-
-(defun with-editor-process-filter
-    (process string &optional no-default-filter)
-  "Listen for edit requests by child processes."
-  (let ((default-directory (process-get process 'default-dir)))
-    (with-editor-output-filter string))
-  (unless no-default-filter
-    (internal-default-process-filter process string)))
-
-(advice-add 'server-visit-files :after
-            'server-visit-files--with-editor-file-name-history-exclude)
-
-(defun server-visit-files--with-editor-file-name-history-exclude
-    (files _proc &optional _nowait)
-  (pcase-dolist (`(,file . ,_) files)
-    (when (cl-find-if (lambda (regexp)
-                        (string-match-p regexp file))
-                      with-editor-file-name-history-exclude)
-      (setq file-name-history (delete file file-name-history)))))
-
-;;; Augmentations
-
-;;;###autoload
-(cl-defun with-editor-export-editor (&optional (envvar "EDITOR"))
-  "Teach subsequent commands to use current Emacs instance as editor.
-
-Set and export the environment variable ENVVAR, by default
-\"EDITOR\".  The value is automatically generated to teach
-commands to use the current Emacs instance as \"the editor\".
-
-This works in `shell-mode', `term-mode' and `eshell-mode'."
-  (interactive (list (with-editor-read-envvar)))
-  (cond
-   ((derived-mode-p 'comint-mode 'term-mode)
-    (let ((process (get-buffer-process (current-buffer))))
-      (goto-char (process-mark process))
-      (process-send-string
-       process (format " export %s=%s\n" envvar
-                       (shell-quote-argument with-editor-sleeping-editor)))
-      (while (accept-process-output process 0.1))
-      (if (derived-mode-p 'term-mode)
-          (with-editor-set-process-filter process 'with-editor-emulate-terminal)
-        (add-hook 'comint-output-filter-functions 'with-editor-output-filter
-                  nil t))))
-   ((derived-mode-p 'eshell-mode)
-    (add-to-list 'eshell-preoutput-filter-functions
-                 'with-editor-output-filter)
-    (setenv envvar with-editor-sleeping-editor))
-   (t
-    (error "Cannot export environment variables in this buffer")))
-  (message "Successfully exported %s" envvar))
-
-;;;###autoload
-(defun with-editor-export-git-editor ()
-  "Like `with-editor-export-editor' but always set `$GIT_EDITOR'."
-  (interactive)
-  (with-editor-export-editor "GIT_EDITOR"))
-
-;;;###autoload
-(defun with-editor-export-hg-editor ()
-  "Like `with-editor-export-editor' but always set `$HG_EDITOR'."
-  (interactive)
-  (with-editor-export-editor "HG_EDITOR"))
-
-(defun with-editor-emulate-terminal (process string)
-  "Like `term-emulate-terminal' but also handle edit requests."
-  (when (with-editor-output-filter string)
-    (term-emulate-terminal process string)))
-
-(defvar with-editor-envvars '("EDITOR" "GIT_EDITOR" "HG_EDITOR"))
-
-(cl-defun with-editor-read-envvar
-    (&optional (prompt  "Set environment variable")
-               (default "EDITOR"))
-  (let ((reply (completing-read (if default
-                                    (format "%s (%s): " prompt default)
-                                  (concat prompt ": "))
-                                with-editor-envvars nil nil nil nil default)))
-    (if (string= reply "") (user-error "Nothing selected") reply)))
-
-;;;###autoload
-(define-minor-mode shell-command-with-editor-mode
-  "Teach `shell-command' to use current Emacs instance as editor.
-
-Teach `shell-command', and all commands that ultimately call that
-command, to use the current Emacs instance as editor by executing
-\"EDITOR=CLIENT COMMAND&\" instead of just \"COMMAND&\".
-
-CLIENT is automatically generated; EDITOR=CLIENT instructs
-COMMAND to use to the current Emacs instance as \"the editor\",
-assuming no other variable overrides the effect of \"$EDITOR\".
-CLIENT may be the path to an appropriate emacsclient executable
-with arguments, or a script which also works over Tramp.
-
-Alternatively you can use the `with-editor-async-shell-command',
-which also allows the use of another variable instead of
-\"EDITOR\"."
-  :global t)
-
-;;;###autoload
-(defun with-editor-async-shell-command
-    (command &optional output-buffer error-buffer envvar)
-  "Like `async-shell-command' but with `$EDITOR' set.
-
-Execute string \"ENVVAR=CLIENT COMMAND\" in an inferior shell;
-display output, if any.  With a prefix argument prompt for an
-environment variable, otherwise the default \"EDITOR\" variable
-is used.  With a negative prefix argument additionally insert
-the COMMAND's output at point.
-
-CLIENT is automatically generated; ENVVAR=CLIENT instructs
-COMMAND to use to the current Emacs instance as \"the editor\",
-assuming it respects ENVVAR as an \"EDITOR\"-like variable.
-CLIENT may be the path to an appropriate emacsclient executable
-with arguments, or a script which also works over Tramp.
-
-Also see `async-shell-command' and `shell-command'."
-  (interactive (with-editor-shell-command-read-args "Async shell command: " t))
-  (let ((with-editor--envvar envvar))
-    (with-editor
-      (async-shell-command command output-buffer error-buffer))))
-
-;;;###autoload
-(defun with-editor-shell-command
-    (command &optional output-buffer error-buffer envvar)
-  "Like `shell-command' or `with-editor-async-shell-command'.
-If COMMAND ends with \"&\" behave like the latter,
-else like the former."
-  (interactive (with-editor-shell-command-read-args "Shell command: "))
-  (if (string-match "&[ \t]*\\'" command)
-      (with-editor-async-shell-command
-       command output-buffer error-buffer envvar)
-    (shell-command command output-buffer error-buffer)))
-
-(defun with-editor-shell-command-read-args (prompt &optional async)
-  (let ((command (read-shell-command
-                  prompt nil nil
-                  (let ((filename (or buffer-file-name
-                                      (and (eq major-mode 'dired-mode)
-                                           (dired-get-filename nil t)))))
-                    (and filename (file-relative-name filename))))))
-    (list command
-          (if (or async (setq async (string-match-p "&[ \t]*\\'" command)))
-              (< (prefix-numeric-value current-prefix-arg) 0)
-            current-prefix-arg)
-          shell-command-default-error-buffer
-          (and async current-prefix-arg (with-editor-read-envvar)))))
-
-(defun shell-command--shell-command-with-editor-mode
-    (fn command &optional output-buffer error-buffer)
-  ;; `shell-mode' and its hook are intended for buffers in which an
-  ;; interactive shell is running, but `shell-command' also turns on
-  ;; that mode, even though it only runs the shell to run a single
-  ;; command.  The `with-editor-export-editor' hook function is only
-  ;; intended to be used in buffers in which an interactive shell is
-  ;; running, so it has to be remove here.
-  (let ((shell-mode-hook (remove 'with-editor-export-editor shell-mode-hook)))
-    (cond ((or (not (or with-editor--envvar shell-command-with-editor-mode))
-               (not (string-match-p "&\\'" command)))
-           (funcall fn command output-buffer error-buffer))
-          ((and with-editor-shell-command-use-emacsclient
-                with-editor-emacsclient-executable
-                (not (file-remote-p default-directory)))
-           (with-editor (funcall fn command output-buffer error-buffer)))
-          (t
-           (apply fn (format "%s=%s %s"
-                             (or with-editor--envvar "EDITOR")
-                             (shell-quote-argument with-editor-sleeping-editor)
-                             command)
-                  output-buffer error-buffer)
-           (ignore-errors
-             (let ((process (get-buffer-process
-                             (or output-buffer
-                                 (get-buffer "*Async Shell Command*")))))
-               (set-process-filter
-                process (lambda (proc str)
-                          (comint-output-filter proc str)
-                          (with-editor-process-filter proc str t)))
-               process))))))
-
-(advice-add 'shell-command :around
-            'shell-command--shell-command-with-editor-mode)
-
-;;; _
-
-(defun with-editor-debug ()
-  "Debug configuration issues.
-See info node `(with-editor)Debugging' for instructions."
-  (interactive)
-  (with-current-buffer (get-buffer-create "*with-editor-debug*")
-    (pop-to-buffer (current-buffer))
-    (erase-buffer)
-    (ignore-errors (with-editor))
-    (insert
-     (format "with-editor: %s\n" (locate-library "with-editor.el"))
-     (format "emacs: %s (%s)\n"
-             (expand-file-name invocation-name invocation-directory)
-             emacs-version)
-     "system:\n"
-     (format "  system-type: %s\n" system-type)
-     (format "  system-configuration: %s\n" system-configuration)
-     (format "  system-configuration-options: %s\n" system-configuration-options)
-     "server:\n"
-     (format "  server-running-p: %s\n" (server-running-p))
-     (format "  server-process: %S\n" server-process)
-     (format "  server-use-tcp: %s\n" server-use-tcp)
-     (format "  server-name: %s\n" server-name)
-     (format "  server-socket-dir: %s\n" server-socket-dir))
-    (if (and server-socket-dir (file-accessible-directory-p server-socket-dir))
-        (dolist (file (directory-files server-socket-dir nil "^[^.]"))
-          (insert (format "    %s\n" file)))
-      (insert (format "    %s: not an accessible directory\n"
-                      (if server-use-tcp "WARNING" "ERROR"))))
-    (insert (format "  server-auth-dir: %s\n" server-auth-dir))
-    (if (file-accessible-directory-p server-auth-dir)
-        (dolist (file (directory-files server-auth-dir nil "^[^.]"))
-          (insert (format "    %s\n" file)))
-      (insert (format "    %s: not an accessible directory\n"
-                      (if server-use-tcp "ERROR" "WARNING"))))
-    (let ((val with-editor-emacsclient-executable)
-          (def (default-value 'with-editor-emacsclient-executable))
-          (fun (let ((warning-minimum-level :error)
-                     (warning-minimum-log-level :error))
-                 (with-editor-locate-emacsclient))))
-      (insert "with-editor-emacsclient-executable:\n"
-              (format " value:   %s (%s)\n" val
-                      (and val (with-editor-emacsclient-version val)))
-              (format " default: %s (%s)\n" def
-                      (and def (with-editor-emacsclient-version def)))
-              (format " funcall: %s (%s)\n" fun
-                      (and fun (with-editor-emacsclient-version fun)))))
-    (insert "path:\n"
-            (format "  $PATH: %S\n" (getenv "PATH"))
-            (format "  exec-path: %s\n" exec-path))
-    (insert (format "  with-editor-emacsclient-path:\n"))
-    (dolist (dir (with-editor-emacsclient-path))
-      (insert (format "    %s (%s)\n" dir (car (file-attributes dir))))
-      (when (file-directory-p dir)
-        ;; Don't match emacsclientw.exe, it makes popup windows.
-        (dolist (exec (directory-files dir t "emacsclient\\(?:[^w]\\|\\'\\)"))
-          (insert (format "      %s (%s)\n" exec
-                          (with-editor-emacsclient-version exec))))))))
-
-(defconst with-editor-font-lock-keywords
-  '(("(\\(with-\\(?:git-\\)?editor\\)\\_>" (1 'font-lock-keyword-face))))
-(font-lock-add-keywords 'emacs-lisp-mode with-editor-font-lock-keywords)
-
-(provide 'with-editor)
-;; Local Variables:
-;; indent-tabs-mode: nil
-;; End:
-;;; with-editor.el ends here
diff --git a/elpa/with-editor-20181113.1845/with-editor.elc b/elpa/with-editor-20181113.1845/with-editor.elc
deleted file mode 100644
index ec44451..0000000
--- a/elpa/with-editor-20181113.1845/with-editor.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/with-editor-20181113.1845/with-editor.info b/elpa/with-editor-20181113.1845/with-editor.info
deleted file mode 100644
index 157b4ce..0000000
--- a/elpa/with-editor-20181113.1845/with-editor.info
+++ /dev/null
@@ -1,343 +0,0 @@
-This is with-editor.info, produced by makeinfo version 6.5 from
-with-editor.texi.
-
-     Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-INFO-DIR-SECTION Emacs
-START-INFO-DIR-ENTRY
-* With-Editor: (with-editor). Using the Emacsclient as $EDITOR.
-END-INFO-DIR-ENTRY
-
-
-File: with-editor.info,  Node: Top,  Next: Using the With-Editor package,  Up: (dir)
-
-With-Editor User Manual
-***********************
-
-The library ‘with-editor’ makes it easy to use the Emacsclient as the
-‘$EDITOR’ of child processes, making sure they know how to call home.
-For remote processes a substitute is provided, which communicates with
-Emacs on standard output instead of using a socket as the Emacsclient
-does.
-
-   This library was written because Magit has to be able to do the above
-to allow the user to edit commit messages gracefully and to edit rebase
-sequences, which wouldn’t be possible at all otherwise.
-
-   Because other packages can benefit from such functionality, this
-library is made available as a separate package.  It also defines some
-additional functionality which makes it useful even for end-users, who
-don’t use Magit or another package which uses it internally.
-
-This manual is for With-Editor version 2.8.0 (v2.8.0-2-g87c96b3+1).
-
-     Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
-
-     You can redistribute this document and/or modify it under the terms
-     of the GNU General Public License as published by the Free Software
-     Foundation, either version 3 of the License, or (at your option)
-     any later version.
-
-     This document is distributed in the hope that it will be useful,
-     but WITHOUT ANY WARRANTY; without even the implied warranty of
-     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-     General Public License for more details.
-
-* Menu:
-
-* Using the With-Editor package::
-* Using With-Editor as a library::
-* Debugging::
-
-— The Detailed Node Listing —
-
-Using the With-Editor package
-
-* Configuring With-Editor::
-* Using With-Editor commands::
-
-
-
-File: with-editor.info,  Node: Using the With-Editor package,  Next: Using With-Editor as a library,  Prev: Top,  Up: Top
-
-1 Using the With-Editor package
-*******************************
-
-The ‘With-Editor’ package is used internally by Magit when editing
-commit messages and rebase sequences.  It also provides some commands
-and features which are useful by themselves, even if you don’t use
-Magit.
-
-   For information about using this library in you own package, see
-*note Using With-Editor as a library::.
-
-* Menu:
-
-* Configuring With-Editor::
-* Using With-Editor commands::
-
-
-File: with-editor.info,  Node: Configuring With-Editor,  Next: Using With-Editor commands,  Up: Using the With-Editor package
-
-1.1 Configuring With-Editor
-===========================
-
-With-Editor tries very hard to locate a suitable ‘emacsclient’
-executable, so ideally you should never have to customize the option
-‘with-editor-emacsclient-executable’.  When it fails to do so, then the
-most likely reason is that someone found yet another way to package
-Emacs (most likely on macOS) without putting the executable on ‘$PATH’,
-and we have to add another kludge to find it anyway.
-
- -- User Option: with-editor-emacsclient-executable
-
-     The ‘emacsclient’ executable used as the editor by child process of
-     this Emacs instance.  By using this executable, child processes can
-     call home to their parent process.
-
-     This option is automatically set at startup by looking in
-     ‘exec-path’, and other places where the executable could be
-     installed, to find the ‘emacsclient’ executable most suitable for
-     the current Emacs instance.
-
-     You should *not* customize this option permanently.  If you have to
-     do it, then you should consider that a temporary kludge and inform
-     the Magit maintainer as described in *note Debugging::.
-
-     If With-Editor fails to find a suitable ‘emacsclient’ on you
-     system, then this should be fixed for all users at once, by
-     teaching ‘with-editor-locate-emacsclient’ how to do so on your
-     system and system like yours.  Doing it this way has the advantage,
-     that you won’t have do it again every time you update Emacs, and
-     that other users who have installed Emacs the same way as you have,
-     won’t have to go through the same trouble.
-
-     Note that there also is a nuclear option; setting this variable to
-     ‘nil’ causes the "sleeping editor" described below to be used even
-     for local child processes.  Obviously we don’t recommend that you
-     use this except in "emergencies", i.e.  before we had a change to
-     add a kludge appropriate for you setup.
-
- -- Function: with-editor-locate-emacsclient
-
-     The function used to set the initial value of the option
-     ‘with-editor-emacsclient-executable’.  There’s a lot of voodoo
-     here.
-
-   The ‘emacsclient’ cannot be used when using Tramp to run a process on
-a remote machine.  (Theoretically it could, but that would be hard to
-setup, very fragile, and rather insecure).
-
-   With-Editor provides an alternative "editor" which can be used by
-remote processes in much the same way as local processes use an
-‘emacsclient’ executable.  This alternative is known as the "sleeping
-editor" because it is implemented as a shell script which sleeps until
-it receives a signal.
-
- -- User Option: with-editor-sleeping-editor
-
-     The sleeping editor is a shell script used as the editor of child
-     processes when the ‘emacsclient’ executable cannot be used.
-
-     This fallback is used for asynchronous process started inside the
-     macro ‘with-editor’, when the process runs on a remote machine or
-     for local processes when ‘with-editor-emacsclient-executable’ is
-     ‘nil’.
-
-     Where the latter uses a socket to communicate with Emacs’ server,
-     this substitute prints edit requests to its standard output on
-     which a process filter listens for such requests.  As such it is
-     not a complete substitute for a proper ‘emacsclient’, it can only
-     be used as ‘$EDITOR’ of child process of the current Emacs
-     instance.
-
-     Some shells do not execute traps immediately when waiting for a
-     child process, but by default we do use such a blocking child
-     process.
-
-     If you use such a shell (e.g.  ‘csh’ on FreeBSD, but not Debian),
-     then you have to edit this option.  You can either replace ‘sh’
-     with ‘bash’ (and install that), or you can use the older, less
-     performant implementation:
-
-          "sh -c '\
-          echo \"WITH-EDITOR: $$ OPEN $0 IN $(pwd)\"; \
-          trap \"exit 0\" USR1; \
-          trap \"exit 1\" USR2; \
-          while true; do sleep 1; done'"
-
-     Note that the unit seperator character () right after the file name
-     ($0) is required.
-
-     Also note that using this alternative implementation leads to a
-     delay of up to a second.  The delay can be shortened by replacing
-     ‘sleep 1’ with ‘sleep 0.01’, or if your implementation does not
-     support floats, then by using ‘nanosleep’ instead.
-
-
-File: with-editor.info,  Node: Using With-Editor commands,  Prev: Configuring With-Editor,  Up: Using the With-Editor package
-
-1.2 Using With-Editor commands
-==============================
-
-This section describes how to use the ‘with-editor’ library _outside_ of
-Magit.  You don’t need to know any of this just to create commits using
-Magit.
-
-   The commands ‘with-editor-async-shell-command’ and
-‘with-editor-shell-command’ are intended as drop in replacements for
-‘async-shell-command’ and ‘shell-command’.  They automatically export
-‘$EDITOR’ making sure the executed command uses the current Emacs
-instance as "the editor".  With a prefix argument these commands prompt
-for an alternative environment variable such as ‘$GIT_EDITOR’.
-
- -- Command: with-editor-async-shell-command
-
-     This command is like ‘async-shell-command’, but it runs the shell
-     command with the current Emacs instance exported as ‘$EDITOR’.
-
- -- Command: with-editor-shell-command
-
-     This command is like ‘shell-command’, but if the shell command ends
-     with ‘&’ and is therefore run asynchronously, then the current
-     Emacs instance is exported as ‘$EDITOR’.
-
-   To always use these variants add this to you init file:
-
-     (define-key (current-global-map)
-       [remap async-shell-command] 'with-editor-async-shell-command)
-     (define-key (current-global-map)
-       [remap shell-command] 'with-editor-shell-command)
-
-   Alternatively use the global ‘shell-command-with-editor-mode’.
-
- -- Variable: shell-command-with-editor-mode
-
-     When this mode is active, then ‘$EDITOR’ is exported whenever
-     ultimately ‘shell-command’ is called to asynchronously run some
-     shell command.  This affects most variants of that command, whether
-     they are defined in Emacs or in some third-party package.
-
-   The command ‘with-editor-export-editor’ exports ‘$EDITOR’ or another
-such environment variable in ‘shell-mode’, ‘term-mode’ and ‘eshell-mode’
-buffers.  Use this Emacs command before executing a shell command which
-needs the editor set, or always arrange for the current Emacs instance
-to be used as editor by adding it to the appropriate mode hooks:
-
-     (add-hook 'shell-mode-hook  'with-editor-export-editor)
-     (add-hook 'term-exec-hook   'with-editor-export-editor)
-     (add-hook 'eshell-mode-hook 'with-editor-export-editor)
-
-   Some variants of this function exist; these two forms are equivalent:
-
-     (add-hook 'shell-mode-hook
-               (apply-partially 'with-editor-export-editor "GIT_EDITOR"))
-     (add-hook 'shell-mode-hook 'with-editor-export-git-editor)
-
- -- Command: with-editor-export-editor
-
-     When invoked in a ‘shell-mode’, ‘term-mode’, or ‘eshell-mode’
-     buffer, this command teaches shell commands to use the current
-     Emacs instance as the editor, by exporting ‘$EDITOR’.
-
- -- Command: with-editor-export-git-editor
-
-     This command is like ‘with-editor-export-editor’ but exports
-     ‘$GIT_EDITOR’.
-
- -- Command: with-editor-export-hg-editor
-
-     This command is like ‘with-editor-export-editor’ but exports
-     ‘$HG_EDITOR’.
-
-
-File: with-editor.info,  Node: Using With-Editor as a library,  Next: Debugging,  Prev: Using the With-Editor package,  Up: Top
-
-2 Using With-Editor as a library
-********************************
-
-This section describes how to use the ‘with-editor’ library _outside_ of
-Magit to teach another package how to have its child processes call
-home, just like Magit does.  You don’t need to know any of this just to
-create commits using Magit.  You can also ignore this if you use
-‘with-editor’ outside of Magit, but only as an end-user.
-
-   For information about interactive use and options that affect both
-interactive and non-interactive use, see *note Using the With-Editor
-package::.
-
- -- Macro: with-editor &rest body
-
-     This macro arranges for the ‘emacsclient’ or the sleeping editor to
-     be used as the editor of child processes, effectively teaching them
-     to call home to the current Emacs instance when they require that
-     the user edits a file.
-
-     This is done by establishing a local binding for
-     ‘process-environment’ and changing the value of the ‘EDITOR’
-     environment variable in that scope.  This affects all
-     (asynchronous) processes started by forms (dynamically) inside
-     BODY.
-
-     If BODY begins with a literal string, then that variable is set
-     instead of ‘EDITOR’.
-
- -- Macro: with-editor envvar &rest body
-
-     This macro is like ‘with-editor’ instead that the ENVVAR argument
-     is required and that it is evaluated at run-time.
-
- -- Function: with-editor-set-process-filter process filter
-
-     This function is like ‘set-process-filter’ but ensures that adding
-     the new FILTER does not remove the ‘with-editor-process-filter’.
-     This is done by wrapping the two filter functions using a lambda,
-     which becomes the actual filter.  It calls
-     ‘with-editor-process-filter’ first, passing ‘t’ as
-     NO-STANDARD-FILTER.  Then it calls FILTER.
-
-
-File: with-editor.info,  Node: Debugging,  Prev: Using With-Editor as a library,  Up: Top
-
-3 Debugging
-***********
-
-With-Editor tries very hard to locate a suitable ‘emacsclient’
-executable, and then sets option ‘with-editor-emacsclient-executable’
-accordingly.  In very rare cases this fails.  When it does fail, then
-the most likely reason is that someone found yet another way to package
-Emacs (most likely on macOS) without putting the executable on ‘$PATH’,
-and we have to add another kludge to find it anyway.
-
-   If you are having problems using ‘with-editor’, e.g.  you cannot
-commit in Magit, then please open a new issue at
-<https://github.com/magit/with-editor/issues> and provide information
-about your Emacs installation.  Most importantly how did you install
-Emacs and what is the output of ‘M-x with-editor-debug RET’.
-
-
-
-Tag Table:
-Node: Top773
-Node: Using the With-Editor package2535
-Node: Configuring With-Editor3121
-Node: Using With-Editor commands7670
-Node: Using With-Editor as a library10865
-Node: Debugging12828
-
-End Tag Table
-
-
-Local Variables:
-coding: utf-8
-End:
diff --git a/elpa/workgroups2-20141102.1922/workgroups2-autoloads.el b/elpa/workgroups2-20141102.1922/workgroups2-autoloads.el
deleted file mode 100644
index 3c687e4..0000000
--- a/elpa/workgroups2-20141102.1922/workgroups2-autoloads.el
+++ /dev/null
@@ -1,39 +0,0 @@
-;;; workgroups2-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "workgroups2" "workgroups2.el" (0 0 0 0))
-;;; Generated autoloads from workgroups2.el
-
-(autoload 'workgroups-mode "workgroups2" "\
-Turn `workgroups-mode' on and off.
-ARG is nil - toggle
-ARG >= 1   - turn on
-ARG == 0   - turn off
-ARG is anything else, turn on `workgroups-mode'.
-
-\(fn &optional ARG)" t nil)
-
-(autoload 'wg-help "workgroups2" "\
-Just call `apropos-command' on \"^wg-\".
-There used to be a bunch of help-buffer construction stuff here,
-including a `wg-help' variable that basically duplicated every
-command's docstring;  But why, when there's `apropos-command'?
-
-\(fn)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "workgroups2" '("workgroups-mode" "wg-" "buffer-list")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; workgroups2-autoloads.el ends here
diff --git a/elpa/workgroups2-20141102.1922/workgroups2-pkg.el b/elpa/workgroups2-20141102.1922/workgroups2-pkg.el
deleted file mode 100644
index c9ab39d..0000000
--- a/elpa/workgroups2-20141102.1922/workgroups2-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "workgroups2" "20141102.1922" "New workspaces for Emacs" '((cl-lib "0.4") (dash "2.8.0") (anaphora "1.0.0") (f "0.17")) :commit "928d509157ec8a4a2e343b6115dff034c3243a7a" :keywords '("session" "management" "window-configuration" "persistence") :authors '(("Sergey Pashinin <sergey at pashinin dot com>")) :maintainer '("Sergey Pashinin <sergey at pashinin dot com>") :url "https://github.com/pashinin/workgroups2")
diff --git a/elpa/workgroups2-20141102.1922/workgroups2.el b/elpa/workgroups2-20141102.1922/workgroups2.el
deleted file mode 100644
index cf9f725..0000000
--- a/elpa/workgroups2-20141102.1922/workgroups2.el
+++ /dev/null
@@ -1,4613 +0,0 @@
-;;; workgroups2.el --- New workspaces for Emacs
-;;; -*- coding: utf-8; lexical-binding: t -*-
-;;
-;; Copyright (C) 2013-2014 Sergey Pashinin
-;; Copyright (C) 2010-2011 tlh
-;;
-;; Author: Sergey Pashinin <sergey at pashinin dot com>
-;; Keywords: session management window-configuration persistence
-;; Package-Version: 20141102.1922
-;; Homepage: https://github.com/pashinin/workgroups2
-;; Version: 1.2.0
-;; Package-Requires: ((cl-lib "0.4") (dash "2.8.0") (anaphora "1.0.0") (f "0.17"))
-;;
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 2 of the License, or (at
-;; your option) any later version.
-;;
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-;;
-;; You should have received a copy of the GNU General Public License
-;; along with this program; if not, write to the Free Software
-;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-;; USA
-;;
-;;; Commentary:
-;;
-;; Workgroups2 is an Emacs session manager. It is based on the
-;; experimental branch of the original "workgroups" extension.
-;;
-;; If you find a bug - please post it here:
-;; https://github.com/pashinin/workgroups2/issues
-;;
-;;
-;; Install
-;; ----------------------
-;; See the README.md file at: https://github.com/pashinin/workgroups2
-;; Add the lines below to your .emacs configuration.
-;;
-;; (require 'workgroups2)
-;;
-;; <settings here>
-;;
-;; (workgroups-mode 1)  ; put this one at the bottom of .emacs
-;;
-;;
-;; Configure
-;; ----------------------
-;; ;; Change prefix key (before activating WG)
-;; (setq wg-prefix-key (kbd "C-c z"))
-;;
-;; ;; Change workgroups session file
-;; (setq wg-session-file "~/.emacs.d/.emacs_workgroups"
-;;
-;; ;; Set your own keyboard shortcuts to reload/save/switch WG:
-;; (global-set-key (kbd "<pause>")     'wg-reload-session)
-;; (global-set-key (kbd "C-S-<pause>") 'wg-save-session)
-;; (global-set-key (kbd "s-z")         'wg-switch-to-workgroup)
-;; (global-set-key (kbd "s-/")         'wg-switch-to-previous-workgroup)
-;;
-;;
-;; Use
-;; ----------------------
-;; Most commands start with prefix `wg-prefix-key'.
-;; You can change it before activating workgroups.
-;; By default prefix is: "C-c z"
-;;
-;; <prefix> <key>
-;;
-;; <prefix> c    - create workgroup
-;; <prefix> A    - rename workgroup
-;; <prefix> k    - kill workgroup
-;; <prefix> v    - switch to workgroup
-;; <prefix> C-s  - save session
-;; <prefix> C-f  - load session
-;;
-;;
-;; Help
-;; ----------------------
-;; Type "<prefix> ?" for more help
-;;
-;; See also: https://github.com/pashinin/workgroups2/wiki
-;;
-;;; Code:
-
-(require 'cl-lib)
-(require 'f)
-(require 'dash)
-(require 'ring)
-(require 'anaphora)
-
-
-(defconst wg-version "1.2.0" "Current version of Workgroups.")
-
-(defgroup workgroups nil
-  "Workgroups for Emacs -- Emacs session manager"
-  :group 'convenience)
-
-(defcustom wg-session-file "~/.emacs_workgroups"
-  "Default filename to be used to save workgroups."
-  :type 'file
-  :group 'workgroups)
-(defvaralias 'wg-default-session-file 'wg-session-file)
-
-(defcustom wg-prefix-key (kbd "C-c z")
-  "Workgroups' prefix key.
-Setting this variable requires that `workgroups-mode' be turned
-off and then on again to take effect."
-  :type 'string
-  :group 'workgroups)
-
-(defvar workgroups-mode-map nil "Workgroups Mode's keymap.")
-
-(defvar wg-incorrectly-restored-bufs nil
-  "FIXME: docstring this.")
-;; TODO: check it on switching WG
-
-(defvar wg-record-incorrectly-restored-bufs nil
-  "FIXME: docstring this.")
-
-(defvar wg-log-level 1
-  "Use later.
-0 means no messages at all (for tests)")
-
-(defcustom wg-emacs-exit-save-behavior 'save
-  "Determines save behavior on Emacs exit.
-
-`ask'           Ask the user whether to save if there are unsaved changes
-`save'          Call `wg-save-session' when there are unsaved changes
-Anything else   Exit Emacs without saving changes"
-  :type 'symbol
-  :group 'workgroups)
-
-(defcustom wg-workgroups-mode-exit-save-behavior 'save
-  "Determines save behavior on `workgroups-mode' exit.
-
-`ask'           Ask the user whether to saveif there are unsaved changes
-`save'          Call `wg-save-session' when there are unsaved changes
-Anything else   Exit `workgroups-mode' without saving changes"
-  :type 'symbol
-  :group 'workgroups)
-
-(defcustom wg-session-load-on-start (not (daemonp))
-  "Load a session file on Workgroups start.
-Don't do it with Emacs --daemon option."
-  :type 'boolean
-  :group 'workgroups)
-(defvaralias 'wg-use-default-session-file 'wg-session-load-on-start)
-
-(defcustom workgroups-mode nil
-  "Non-nil if Workgroups mode is enabled."
-  :set 'custom-set-minor-mode
-  :initialize 'custom-initialize-default
-  :group 'workgroups
-  :type 'boolean)
-
-(defcustom wg-first-wg-name "First workgroup"
-  "Title of the first workgroup created."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-modeline-string " wg"
-  "Appears in modeline."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-display-on (not (featurep 'powerline))
-  "Toggles Workgroups' mode-line display."
-  :type 'boolean
-  :group 'workgroups
-  :set (lambda (sym val)
-         (custom-set-default sym val)
-         (force-mode-line-update)))
-
-(defcustom wg-mode-line-use-faces nil
-  "Non-nil means use faces in the mode-line display.
-It can be tricky to choose faces that are visible in both active
-and inactive mode-lines, so this feature defaults to off."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-left-brace "("
-  "String displayed at the left of the mode-line display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-right-brace ")"
-  "String displayed at the right of the mode-line display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-divider ":"
-  "String displayed between elements of the mode-line display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-window-dedicated
-  #("#" 0 1 (help-echo "This window is dedicated to its buffer."))
-  "Indicates that the window is dedicated to its buffer."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-window-undedicated
-  #("-" 0 1 (help-echo "This window is not dedicated to its buffer."))
-  "Indicates that the window is not dedicated to its buffer."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-session-modified
-  #("*" 0 1 (help-echo "The session is modified"))
-  "Indicates that the session is modified."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-session-unmodified
-  #("-" 0 1 (help-echo "The session is unmodified"))
-  "Indicates that the session is unmodified."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-workgroup-modified
-  #("*" 0 1 (help-echo "The current workgroup is modified"))
-  "Indicates that the current workgroup is modified."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-mode-line-decor-workgroup-unmodified
-  #("-" 0 1 (help-echo "The current workgroup is unmodified"))
-  "Indicates that the current workgroup is unmodified."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-load-last-workgroup t
-  "Load last active (not first) workgroup from all your workgroups if it exists."
-  :group 'workgroups
-  :type 'boolean)
-
-(defcustom wg-control-frames t
-  "Save/restore frames."
-  :group 'workgroups
-  :type 'boolean)
-
-(defcustom workgroups-mode-hook nil
-  "Hook run when `workgroups-mode' is turned on."
-  :type 'hook
-  :group 'workgroups)
-
-(defcustom workgroups-mode-exit-hook nil
-  "Hook run when `workgroups-mode' is turned off."
-  :type 'hook
-  :group 'workgroups)
-
-(defcustom wg-before-switch-to-workgroup-hook nil
-  "Hook run by `wg-switch-to-workgroup'."
-  :type 'hook
-  :group 'workgroups)
-
-(defcustom wg-after-switch-to-workgroup-hook nil
-  "Hook run by `wg-switch-to-workgroup'."
-  :type 'hook
-  :group 'workgroups)
-(define-obsolete-variable-alias 'wg-switch-to-workgroup-hook 'wg-after-switch-to-workgroup-hook)
-
-(defcustom wg-pre-window-configuration-change-hook nil
-  "Hook run before any function that triggers `window-configuration-change-hook'."
-  :type 'hook
-  :group 'workgroups)
-
-(defcustom wg-open-this-wg nil
-  "Try to open this workgroup on start.
-If nil - nothing happens."
-  :type 'string
-  :group 'workgroups)
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
-;; FIXME:
-;;
-;; Only set `wg-workgroup-base-wconfig' on `wg-save-session-as' or
-;; `delete-frame' and only with the most recently changed working-wconfig.
-;; Then, since it's not overwritten on every call to
-;; `wg-workgroup-working-wconfig', its restoration can be retried after manually
-;; recreating buffers that couldn't be restored.  So it takes over the
-;; 'incorrect restoration' portion of the base wconfig's duty.  All that leaves
-;; to base wconfigs is that they're a saved wconfig the user felt was important.
-;; So why not allow more of of them?  A workgroup could stash an unlimited
-;; number of wconfigs.
-;;
-;; TODO:
-;;
-;;   * Write new commands for restoring stashed wconfigs
-;;
-;;   * Add this message on improper restoration of `base-wconfig':
-;;
-;;       "Unable to restore 'buf1', 'buf2'... Hit C-whatever to retry after
-;;        manually recreating these buffers."
-;;
-;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-
-;; TODO: possibly add `buffer-file-coding-system', `text-scale-mode-amount'
-(defcustom wg-buffer-local-variables-alist
-  `((major-mode nil wg-deserialize-buffer-major-mode)
-    (mark-ring wg-serialize-buffer-mark-ring wg-deserialize-buffer-mark-ring)
-    (left-fringe-width nil nil)
-    (right-fringe-width nil nil)
-    (fringes-outside-margins nil nil)
-    (left-margin-width nil nil)
-    (right-margin-width nil nil)
-    (vertical-scroll-bar nil nil))
-  "Alist mapping buffer-local variable symbols to serdes functions.
-
-The `car' of each entry should be a buffer-local variable symbol.
-
-The `cadr' of the entry should be either nil or a function of no
-arguments.  If nil, the variable's value is used as-is, and
-should have a readable printed representation.  If a function,
-`funcall'ing it should yield a serialization of the value of the
-variable.
-
-The `caddr' of the entry should be either nil or a function of
-one argument.  If nil, the serialized value from above is
-assigned to the variable as-is.  It a function, `funcall'ing it
-on the serialized value from above should do whatever is
-necessary to properly restore the original value of the variable.
-For example, in the case of `major-mode' it should funcall the
-value (a major-mode function symbol) rather than just assigning
-it to `major-mode'."
-  :type 'alist
-  :group 'workgroups)
-
-
-(defcustom wg-nowg-string "No workgroups"
-  "Display this string if there are no workgroups and
-`wg-display-nowg' is t."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-display-nowg nil
-  "Display something if there are no workgroups."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-remote-buffers t
-  "Restore buffers that get \"t\" with `file-remote-p'."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-frame-position t
-  "Non-nil means restore frame position on workgroup restore."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-scroll-bars t
-  "Non-nil means restore scroll-bar settings on workgroup restore."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-fringes t
-  "Non-nil means restore fringe settings on workgroup restore."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-margins t
-  "Non-nil means restore margin settings on workgroup restore."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-point t
-  "Non-nil means restore `point' on workgroup restore.
-This is included mainly so point restoration can be suspended
-during `wg-morph' -- you probably want this non-nil."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-point-max t
-  "Controls point restoration when point is at `point-max'.
-If `point' is at `point-max' when a wconfig is created, put
-`point' back at `point-max' when the wconfig is restored, even if
-`point-max' has increased in the meantime.  This is useful in,
-say, irc buffers where `point-max' is constantly increasing."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-mark t
-  "Non-nil means restore mark data on workgroup restore."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-restore-window-dedicated-p t
-  "Non-nil means restore `window-dedicated-p' on workgroup restore."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-remember-frame-for-each-wg nil
-  "When switching workgroups - restore frame parameters for each workgroup.
-
-When nil - save/restore frame parameters to/from the first workgroup."
-  :type 'boolean
-  :group 'workgroups)
-
-
-(defcustom wg-wconfig-undo-list-max 20
-  "Number of past window configs to retain for undo."
-  :type 'integer
-  :group 'workgroups)
-
-(defcustom wg-wconfig-kill-ring-max 20
-  "Maximum length of the `wg-wconfig-kill-ring'."
-  :type 'integer
-  :group 'workgroups)
-
-(defvar wg-wconfig-kill-ring nil
-  "Ring of killed or kill-ring-saved wconfigs.")
-
-(defvar wg-buffer-uid nil
-  "Symbol for the current buffer's wg-buf's uid.
-Every Workgroups buffer object (wg-buf) has a uid.  When
-Workgroups creates or encounters an Emacs buffer object
-corresponding to a wg-buf, it tags it with the wg-buf's uid to
-unambiguously pair the two.")
-(make-variable-buffer-local 'wg-buffer-uid)
-
-(defcustom wg-flag-modified t
-  "Show \"modified\" flags in modeline."
-  :type 'boolean
-  :group 'workgroups
-  :set (lambda (sym val)
-         (custom-set-default sym val)
-         (force-mode-line-update)))
-
-
-
-(defvar wg-window-configuration-changed nil
-  "Flag set by `window-configuration-change-hook'.")
-
-(defvar wg-already-updated-working-wconfig nil
-  "Flag set by `wg-update-working-wconfig-hook'.")
-
-(defvar wg-undoify-window-configuration-change t
-  "Should windows undo info be updated or not.
-When you change window configuration.")
-
-(defvar wg-current-workgroup nil "Bound to the current workgroup.")
-
-(defvar wg-window-min-width 2
-  "Bound to `window-min-width' when restoring wtrees.")
-
-(defvar wg-window-min-height 1
-  "Bound to `window-min-height' when restoring wtrees.")
-
-(defvar wg-window-min-pad 2
-  "Added to `wg-window-min-foo' to produce the actual minimum window size.")
-
-(defvar wg-actual-min-width (+ wg-window-min-width wg-window-min-pad)
-  "Actual minimum window width when creating windows.")
-
-(defvar wg-actual-min-height (+ wg-window-min-height wg-window-min-pad)
-  "Actual minimum window height when creating windows.")
-
-(defvar wg-min-edges `(0 0 ,wg-actual-min-width ,wg-actual-min-height)
-  "Smallest allowable edge list of windows created by Workgroups.")
-
-(defvar wg-null-edges '(0 0 0 0) "Null edge list.")
-
-(defvar wg-window-tree-selected-window nil
-  "Used during wconfig restoration to hold the selected window.")
-
-(defvar wg-buffer-workgroup nil
-  "A workgroup in which this buffer most recently appeared.
-Buffer-local.")
-(make-variable-buffer-local 'wg-buffer-workgroup)
-
-(defcustom wg-default-buffer "*scratch*"
-  "Show this in case everything else fails.
-When a buffer can't be restored, when creating a blank wg."
-  :type 'string
-  :group 'workgroups)
-
-
-;;
-;; Crazy stuff...
-;;
-(defcustom wg-associate-blacklist (list "*helm mini*" "*Messages*" "*scratch*"
-                                        "*helm action*")
-  "Do not autoassociate these buffers."
-  :type 'list
-  :group 'workgroups)
-
-(defconst wg-buffer-list-original (symbol-function 'buffer-list))
-(fset 'wg-buffer-list-emacs wg-buffer-list-original)
-
-(defun buffer-list (&optional frame)
-  "Redefinition of `buffer-list'.
-Pass FRAME to it.
-Remove file and dired buffers that are not associated with workgroup."
-  (let ((res (wg-buffer-list-emacs frame))
-        (wg-buf-uids (wg-workgroup-associated-buf-uids)))
-    (--remove (and (or (buffer-file-name it)
-                       (eq (buffer-local-value 'major-mode it) 'dired-mode))
-                   ;;(not (member b wg-buffers))
-                   (not (member (wg-buffer-uid-or-add it) wg-buf-uids)))
-              res)))
-
-(defconst wg-buffer-list-function (symbol-function 'buffer-list))
-(fset 'buffer-list wg-buffer-list-original)
-
-;; locate-dominating-file
-(defcustom wg-mess-with-buffer-list nil
-  "Redefine `buffer-list' to show buffers for each workgroup.
-
-Crazy stuff that allows to reduce amount of code, gives new
-features but is fucking unstable, so disabled by default"
-  :type 'boolean
-  :group 'workgroups
-  :set (lambda (sym val)
-         (custom-set-default sym val)
-         (if (and workgroups-mode val)
-             (fset 'buffer-list wg-buffer-list-function)
-           (fset 'buffer-list wg-buffer-list-original))))
-(fset 'buffer-list wg-buffer-list-original)
-
-(defcustom wg-use-faces t
-  "Non-nil means use faces in various messages."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-list-display-decor-left-brace "( "
-  "String displayed to the left of the list display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-list-display-decor-right-brace " )"
-  "String displayed to the right of the list display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-list-display-decor-divider " | "
-  "String displayed between elements of the list display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-list-display-decor-current-left "-<{ "
-  "String displayed to the left of the current element of the list display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-list-display-decor-current-right " }>-"
-  "String displayed to the right of the current element of the list display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-list-display-decor-previous-left "< "
-  "String displayed to the left of the previous element of the list display."
-  :type 'string
-  :group 'workgroups)
-
-(defcustom wg-list-display-decor-previous-right " >"
-  "String displayed to the right of the previous element of the list display."
-  :type 'string
-  :group 'workgroups)
-
-
-(defvar wg-face-abbrevs nil
-  "Assoc list mapping face abbreviations to face names.")
-
-(defmacro wg-defface (face key spec doc &rest args)
-  "`defface' wrapper adding a lookup key used by `wg-fontify'."
-  (declare (indent 2))
-  `(progn
-     (cl-pushnew (cons ,key ',face) wg-face-abbrevs :test #'equal)
-     (defface ,face ,spec ,doc ,@args)))
-
-(wg-defface wg-current-workgroup-face :cur
-  '((t :inherit font-lock-constant-face :bold nil))
-  "Face used for current elements in list displays."
-  :group 'workgroups)
-
-(wg-defface wg-previous-workgroup-face :prev
-  '((t :inherit font-lock-keyword-face :bold nil))
-  "Face used for the name of the previous workgroup in the list display."
-  :group 'workgroups)
-
-(wg-defface wg-other-workgroup-face :other
-  '((t :inherit font-lock-string-face :bold nil))
-  "Face used for the names of other workgroups in the list display."
-  :group 'workgroups)
-
-(wg-defface wg-command-face :cmd
-  '((t :inherit font-lock-function-name-face :bold nil))
-  "Face used for command/operation strings."
-  :group 'workgroups)
-
-(wg-defface wg-divider-face :div
-  '((t :inherit font-lock-builtin-face :bold nil))
-  "Face used for dividers."
-  :group 'workgroups)
-
-(wg-defface wg-brace-face :brace
-  '((t :inherit font-lock-builtin-face :bold nil))
-  "Face used for left and right braces."
-  :group 'workgroups)
-
-(wg-defface wg-message-face :msg
-  '((t :inherit font-lock-string-face :bold nil))
-  "Face used for messages."
-  :group 'workgroups)
-
-(wg-defface wg-mode-line-face :mode
-  '((t :inherit font-lock-doc-face :bold nil))
-  "Face used for workgroup position and name in the mode-line display."
-  :group 'workgroups)
-
-(wg-defface wg-filename-face :file
-  '((t :inherit font-lock-keyword-face :bold nil))
-  "Face used for filenames."
-  :group 'workgroups)
-
-
-;;; fancy displays
-
-(defun wg-element-display (elt elt-string &optional current-elt-p previous-elt-p)
-  "Return display string for ELT."
-  (cond ((and current-elt-p (funcall current-elt-p elt))
-         (wg-fontify (:cur (concat wg-list-display-decor-current-left
-                                   elt-string
-                                   wg-list-display-decor-current-right))))
-        ((and previous-elt-p (funcall previous-elt-p elt))
-         (wg-fontify (:prev (concat wg-list-display-decor-previous-left
-                                    elt-string
-                                    wg-list-display-decor-previous-right))))
-        (t (wg-fontify (:other elt-string)))))
-
-(defun wg-workgroup-display (workgroup index)
-  "Return display string for WORKGROUP at INDEX."
-  (if (not workgroup) wg-nowg-string
-    (wg-element-display
-     workgroup
-     (format "%d: %s" index (wg-workgroup-name workgroup))
-     'wg-current-workgroup-p
-     'wg-previous-workgroup-p)))
-
-(defun wg-buffer-display (buffer index)
-  "Return display string for BUFFER.  INDEX is ignored."
-  (if (not buffer) "No buffers"
-    (wg-element-display
-     (wg-get-buffer buffer)
-     (format "%s" (wg-buffer-name buffer))
-     'wg-current-buffer-p)))
-
-(defun wg-message (format-string &rest args)
-  "Call `message' with FORMAT-STRING and ARGS."
-  (if (> wg-log-level 0) (apply #'message format-string args)))
-
-(defmacro wg-fontified-message (&rest format)
-  "`wg-fontify' FORMAT and call `wg-message' on it."
-  (declare (indent defun))
-  `(wg-message (wg-fontify ,@format)))
-
-(defun wg-add-face (facekey string)
-  "Return a copy of STRING fontified according to FACEKEY.
-FACEKEY must be a key in `wg-face-abbrevs'."
-  (let ((face (wg-aget wg-face-abbrevs facekey))
-        (string  (copy-sequence string)))
-    (unless face (error "No face with key %s" facekey))
-    (if (not wg-use-faces) string
-      (put-text-property 0 (length string) 'face face string)
-      string)))
-
-(defmacro wg-fontify (&rest specs)
-  "A small fontification DSL.
-The results of all SPECS are `concat'd together.
-If a spec is a cons with a keyword car, apply `wg-add-face' to it.
-Other conses get evaluated, and should produce a strings.
-If a spec is a string it is used unmodified.
-Anything else is formatted with %s to produce a string."
-  (declare (indent defun))
-  `(concat
-    ,@(wg-docar (spec specs)
-        (cond ((and (consp spec)
-                    (keywordp (car spec)))
-               `(wg-add-face ,@spec))
-              ;;((listp spec) (cdr (eval spec)))
-              ;;((listp spec)
-              ;; ;;(prin1-to-string (nth 1 (eval spec)))
-              ;; )
-              ((consp spec) spec)
-              ((stringp spec) spec)
-              (t `(format "%s" ,spec))))))
-
-(defmacro wg-with-gensyms (syms &rest body)
-  "Bind all symbols in SYMS to `gensym's, and eval BODY."
-  (declare (indent 1))
-  `(let (,@(mapcar (lambda (sym) `(,sym (cl-gensym))) syms)) ,@body))
-
-(defmacro wg-dbind (args expr &rest body)
-  "Bind the variables in ARGS to the result of EXPR and execute BODY.
-Abbreviation of `destructuring-bind'."
-  (declare (indent 2))
-  `(cl-destructuring-bind ,args ,expr ,@body))
-
-(defun wg-partition (list &optional n step)
-  "Take LIST, return a list of N length sublists, offset by STEP.
-N defaults to 2, and STEP defaults to N.
-Iterative to prevent stack overflow."
-  (let* ((n (or n 2)) (step (or step n)) acc)
-    (while list
-      (push (-take n list) acc)
-      (setq list (nthcdr step list)))
-    (nreverse acc)))
-
-(defmacro wg-when-boundp (symbols &rest body)
-  "When all SYMBOLS are bound, `eval' BODY."
-  (declare (indent 1))
-  `(when (and ,@(mapcar (lambda (sym) `(boundp ',sym)) symbols))
-     ,@body))
-
-(defmacro wg-docar (spec &rest body)
-  "do-style wrapper for `mapcar'.
-
-\(fn (VAR LIST) BODY...)"
-  (declare (indent 1))
-  `(mapcar (lambda (,(car spec)) ,@body) ,(cadr spec)))
-
-(defmacro wg-dohash (spec &rest body)
-  "do-style wrapper for `maphash'.
-
-\(fn (KEY VALUE TABLE [RESULT]) BODY...)"
-  (declare (indent 1))
-  (wg-dbind (key val table &optional result) spec
-    `(progn (maphash (lambda (,key ,val) ,@body) ,table) ,result)))
-
-(defmacro wg-doconcat (spec &rest body)
-  "do-style wrapper for `mapconcat'.
-
-\(fn (VAR SEQ [SEPARATOR]) BODY...)"
-  (declare (indent 1))
-  (wg-dbind (elt seq &optional sep) spec
-    `(mapconcat (lambda (,elt) ,@body) ,seq (or ,sep ""))))
-
-(defmacro wg-asetf (&rest places-and-values)
-  "Anaphoric `setf'."
-  `(progn ,@(mapcar (lambda (pv) `(let ((it ,(car pv))) (setf ,@pv)))
-                    (wg-partition places-and-values 2))))
-
-(defmacro wg-destructuring-dolist (spec &rest body)
-  "Loop over a list.
-Evaluate BODY, destructuring LIST into SPEC, then evaluate RESULT
-to get a return value, defaulting to nil.  The only hitch is that
-spec must end in dotted style, collecting the rest of the list
-into a var, like so: (a (b c) . rest)
-
-\(fn (SPEC LIST [RESULT]) BODY...)"
-  (declare (indent 1))
-  (wg-dbind (loopspec list &optional result) spec
-    (let ((rest (cdr (last loopspec))))
-      (wg-with-gensyms (list-sym)
-        `(let ((,list-sym ,list))
-           (while ,list-sym
-             (wg-dbind ,loopspec ,list-sym
-               ,@body
-               (setq ,list-sym ,rest)))
-           ,result)))))
-
-
-;;; numbers
-
-(defun wg-step-to (n m step)
-  "Increment or decrement N toward M by STEP.
-Return M when the difference between N and M is less than STEP."
-  (cond ((= n m) n)
-        ((< n m) (min (+ n step) m))
-        ((> n m) (max (- n step) m))))
-
-(defun wg-within (num lo hi &optional hi-inclusive)
-  "Return t when NUM is within bounds LO and HI.
-HI-INCLUSIVE non-nil means the HI bound is inclusive."
-  (and (>= num lo) (if hi-inclusive (<= num hi) (< num hi))))
-
-(defun wg-int-to-b36-one-digit (i)
-  "Return a character in 0..9 or A..Z from I, and integer 0<=I<32.
-Cribbed from `org-id-int-to-b36-one-digit'."
-  (cond ((not (wg-within i 0 36))
-         (error "%s out of range" i))
-        ((< i 10) (+ ?0 i))
-        ((< i 36) (+ ?A i -10))))
-
-(defun wg-b36-to-int-one-digit (i)
-  "Turn a character 0..9, A..Z, a..z into a number 0..61.
-The input I may be a character, or a single-letter string.
-Cribbed from `org-id-b36-to-int-one-digit'."
-  (and (stringp i) (setq i (string-to-char i)))
-  (cond ((and (>= i ?0) (<= i ?9)) (- i ?0))
-        ((and (>= i ?A) (<= i ?Z)) (+ (- i ?A) 10))
-        (t (error "Invalid b36 character"))))
-
-(defun wg-int-to-b36 (i &optional length)
-  "Return a base 36 string from I."
-  (let ((base 36) b36)
-    (cl-labels ((add-digit () (push (wg-int-to-b36-one-digit (mod i base)) b36)
-                           (setq i (/ i base))))
-      (add-digit)
-      (while (> i 0) (add-digit))
-      (setq b36 (cl-map 'string 'identity b36))
-      (if (not length) b36
-        (concat (make-string (max 0 (- length (length b36))) ?0) b36)))))
-
-(defun wg-b36-to-int (str)
-  "Convert STR, a base-36 string, into the corresponding integer.
-Cribbed from `org-id-b36-to-int'."
-  (let ((result 0))
-    (mapc (lambda (i)
-            (setq result (+ (* result 36)
-                            (wg-b36-to-int-one-digit i))))
-          str)
-    result))
-
-
-
-;;; lists
-
-(defmacro wg-removef-p (item seq-place &rest keys)
-  "If ITEM is a `member*' of SEQ-PLACE, remove it from SEQ-PLACE and return t.
-Otherwise return nil.  KEYS can be any keywords accepted by `remove*'."
-  `(> (length ,seq-place)
-      (length (setf ,seq-place (cl-remove ,item ,seq-place ,@keys)))))
-
-(defmacro wg-pushnew-p (item seq-place &rest keys)
-  "If ITEM is not a `member' of SEQ-PLACE, push it to SEQ-PLACE and return t.
-Otherwise return nil.  KEYS can be any keyword args accepted by `pushnew'."
-  `(< (length ,seq-place)
-      (length (cl-pushnew ,item ,seq-place ,@keys))))
-
-(defun wg-range (start end)
-  "Return a list of integers from START up to but not including END."
-  (let (accum)
-    (dotimes (i (- end start) (nreverse accum))
-      (push (+ start i) accum))))
-
-(defun wg-insert-before (elt list index)
-  "Insert ELT into LIST before INDEX."
-  (if (zerop index) (cons elt list)
-    (-insert-at index elt list)))
-
-(defun wg-move-elt (elt list index &rest keys)
-  "Move ELT before INDEX in LIST.
-KEYS is passed to `remove*'."
-  (wg-insert-before elt (apply 'cl-remove elt list keys) index))
-
-(defun wg-cyclic-nth (list n)
-  "Return the Nth element of LIST, modded by the length of list."
-  (nth (mod n (length list)) list))
-
-(defun wg-cyclic-offset-elt (elt list n)
-  "Cyclically offset ELT's position in LIST by N."
-  (-when-let (pos (cl-position elt list))
-    (wg-move-elt elt list (mod (+ n pos) (length list)))))
-
-(defun wg-cyclic-nth-from-elt (elt list n &rest keys)
-  "Return the elt in LIST N places cyclically from ELT.
-If ELT is not present is LIST, return nil.
-KEYS is passed to `position'."
-  (-when-let (pos (apply 'cl-position elt list keys))
-    (wg-cyclic-nth list (+ pos n))))
-
-(defun wg-util-swap (elt1 elt2 list)
-  "Return a copy of LIST with ELT1 and ELT2 swapped.
-Return nil when ELT1 and ELT2 aren't both present."
-  (-when-let* ((p1 (cl-position elt1 list))
-               (p2 (cl-position elt2 list)))
-    (wg-move-elt elt1 (wg-move-elt elt2 list p1) p2)))
-
-(defun wg-dups-p (list &rest keys)
-  "Return non-nil when LIST contains duplicate elements.
-
-Keywords supported: :test :key
-
-\(fn LIST [KEYWORD VALUE]...)"
-  (let ((test (or (plist-get keys :test) 'eq))
-        (key (or (plist-get keys :key) 'identity)))
-    (cl-loop for (elt . rest) on list
-             for elt = (funcall key elt)
-             when (cl-find elt rest :test test :key key) return elt)))
-
-(defun wg-string-list-union (&optional list1 list2)
-  "Return the `union' of LIST1 and LIST2, using `string=' as the test.
-This only exists to get rid of duplicate lambdas in a few reductions."
-  (cl-union list1 list2 :test 'string=))
-
-
-
-;;; alists
-
-(defun wg-aget (alist key &optional default)
-  "Return the value of KEY in ALIST. Uses `assq'.
-If PARAM is not found, return DEFAULT which defaults to nil."
-  (aif (assq key alist) (cdr it) default))
-
-(defun wg-aput (alist key value)
-  "Return a new alist from ALIST with KEY's value set to VALUE."
-  (let* ((found nil)
-         (new (wg-docar (kvp alist)
-                (if (not (eq key (car kvp))) kvp
-                  (setq found (cons key value))))))
-    (if found new (cons (cons key value) new))))
-
-(defun wg-aremove (alist key)
-  "`remove' KEY's key-value-pair from ALIST."
-  (remove (assoc key alist) alist))
-
-
-;;; symbols and strings
-
-(defun wg-toggle (symbol)
-  "Toggle SYMBOL's truthiness."
-  (set symbol (not (symbol-value symbol))))
-
-(defun wg-get-buffer (buffer-or-name)
-  "Return BUFFER-OR-NAME's buffer, or error."
-  (or (get-buffer buffer-or-name)
-      (error "%S does not identify a buffer" buffer-or-name)))
-
-(defun wg-buffer-name (buffer-or-name)
-  "Return BUFFER-OR-NAME's `buffer-name', or error."
-  (buffer-name (wg-get-buffer buffer-or-name)))
-
-(defun wg-buffer-major-mode (buffer-or-name)
-  "Return BUFFER's major-mode."
-  (with-current-buffer buffer-or-name major-mode))
-
-(defun wg-current-buffer-p (buffer-or-name)
-  "Return t if BUFFER-OR-NAME is the current buffer, nil otherwise."
-  (eq (wg-get-buffer buffer-or-name) (current-buffer)))
-
-(defun wg-symcat (&rest symbols-and-strings)
-  "Return a new interned symbol by concatenating SYMBOLS-AND-STRINGS."
-  (intern (mapconcat (lambda (obj) (if (symbolp obj) (symbol-name obj) obj))
-                     symbols-and-strings "")))
-
-(defmacro wg-defstruct (prefix name-form &rest slot-defs)
-  "`defstruct' wrapper that namespace-prefixes all generated functions.
-Note: this doesn't yet work with :conc-name, and possibly other
-options."
-  (declare (indent 2))
-  (let* ((name (if (consp name-form) (car name-form) name-form))
-         (prefixed-name (wg-symcat prefix "-" name)))
-    (cl-labels ((rebind (opstr)
-                        (let ((oldfnsym (wg-symcat opstr "-" prefix "-" name)))
-                          `((fset ',(wg-symcat prefix "-" opstr "-" name)
-                                  (symbol-function ',oldfnsym))
-                            (fmakunbound ',oldfnsym)))))
-      ;; `eval-and-compile' gets rid of byte-comp warnings ("function `foo' not
-      ;; known to be defined").  We can accomplish this with `declare-function'
-      ;; too, but it annoyingly requires inclusion of the function's arglist,
-      ;; which gets ugly.
-      `(eval-and-compile
-         (cl-defstruct ,(if (symbolp name-form) prefixed-name
-                          `(,prefixed-name ,@(cdr name-form)))
-           ,@slot-defs)
-         ,@(rebind "make")
-         ,@(rebind "copy")
-         ',prefixed-name))))
-
-(wg-defstruct wg session
-  (uid (wg-generate-uid))
-  (name)
-  (modified)
-  (parameters)
-  (file-name)
-  (version wg-version)
-  (workgroup-list)
-  (buf-list))
-
-(wg-defstruct wg workgroup
-  (uid (wg-generate-uid))
-  (name)
-  (modified)
-  (parameters)
-  (base-wconfig)
-  (selected-frame-wconfig)
-  (saved-wconfigs)
-  (strong-buf-uids)
-  (weak-buf-uids))
-
-(wg-defstruct wg workgroup-state
-  (undo-pointer)
-  (undo-list))
-
-(wg-defstruct wg wconfig
-  (uid (wg-generate-uid))
-  (name)
-  (parameters)
-  (left)
-  (top)
-  (width)
-  (height)
-  (vertical-scroll-bars)
-  (scroll-bar-width)
-  (wtree))
-
-(wg-defstruct wg wtree
-  (uid)
-  (dir)
-  (edges)
-  (wlist))
-
-(wg-defstruct wg win
-  (uid)
-  (parameters)
-  (edges)
-  (point)
-  (start)
-  (hscroll)
-  (dedicated)
-  (selected)
-  (minibuffer-scroll)
-  (buf-uid))
-
-(wg-defstruct wg buf
-  (uid (wg-generate-uid))
-  (name)
-  (file-name)
-  (point)
-  (mark)
-  (local-vars)
-  (special-data)
-  ;; This may be used later:
-  (gc))
-
-
-(defmacro wg-with-slots (obj slot-bindings &rest body)
-  "Bind OBJ's slot values to symbols in BINDS, then eval BODY.
-The car of each element of SLOT-BINDINGS is the bound symbol, and
-the cadr as the accessor function."
-  (declare (indent 2))
-  (wg-with-gensyms (objsym)
-    `(let* ((,objsym ,obj)
-            ,@(wg-docar (slot slot-bindings)
-                `(,(car slot) (,(cadr slot) ,objsym))))
-       ,@body)))
-
-(defun wg-add-or-remove-hooks (remove &rest pairs)
-  "Add FUNCTION to or remove it from HOOK, depending on REMOVE."
-  (dolist (pair (wg-partition pairs 2))
-    (funcall (if remove 'remove-hook 'add-hook)
-             (car pair) (cadr pair))))
-
-(defmacro wg-set-parameter (place parameter value)
-  "Set PARAMETER to VALUE at PLACE.
-This needs to be a macro to allow specification of a setf'able place."
-  (wg-with-gensyms (p v)
-    `(let ((,p ,parameter) (,v ,value))
-       (wg-pickelable-or-error ,p)
-       (wg-pickelable-or-error ,v)
-       (setf ,place (wg-aput ,place ,p ,v))
-       ,v)))
-
-(defun wg-time-to-b36 ()
-  "Convert `current-time' into a b36 string."
-  (apply 'concat (wg-docar (time (current-time))
-                   (wg-int-to-b36 time 4))))
-
-(defun wg-b36-to-time (b36)
-  "Parse the time in B36 string from UID."
-  (cl-loop for i from 0 to 8 by 4
-           collect (wg-b36-to-int (cl-subseq b36 i (+ i 4)))))
-(defalias 'wg-uid-to-time 'wg-b36-to-time)
-
-(defun wg-generate-uid (&optional prefix)
-  "Return a new uid, optionally prefixed by PREFIX."
-  (concat prefix (wg-time-to-b36) "-" (wg-int-to-b36 string-chars-consed)))
-
-(defun wg-uid-to-seconds (uid)
-  "Return the `float-time' parsed from UID with `wg-uid-to-time'."
-  (float-time (wg-uid-to-time uid)))
-
-
-(defun wg-get-value (arg)
-  "Get a value of ARG if it exists."
-  (if (boundp `,arg) arg))
-
-(defmacro wg-support (mode pkg params)
-  "Macro to create (de)serialization functions for a buffer.
-You need to save/restore a specific MODE which is loaded from a
-package PKG.  In PARAMS you give local variables to save and a
-deserialization function."
-  (declare (indent 2))
-  `(let ((mode-str (symbol-name ,mode))
-         (args ,params))
-
-     (eval `(defun ,(intern (format "wg-deserialize-%s-buffer" mode-str)) (buffer)
-              "DeSerialization function created with `wg-support'.
-Gets saved variables and runs code to restore a BUFFER."
-              (when (require ',,pkg nil 'noerror)
-                (wg-dbind (this-function variables) (wg-buf-special-data buffer)
-                  (let ((default-directory (car variables))
-                        (df (cdr (assoc 'deserialize ',,params)))
-                        (user-vars (cadr variables)))
-                    (if df
-                        (funcall df buffer user-vars)
-                      (get-buffer-create wg-default-buffer))
-                    )))))
-
-     (eval `(defun ,(intern (format "wg-serialize-%s-buffer" mode-str)) (buffer)
-              "Serialization function created with `wg-support'.
-Saves some variables to restore a BUFFER later."
-              (when (get-buffer buffer)
-                (with-current-buffer buffer
-                  (when (eq major-mode ',,mode)
-                    (let ((sf (cdr (assoc 'serialize ',,params)))
-                          (save (cdr (assoc 'save ',,params))))
-                      (list ',(intern (format "wg-deserialize-%s-buffer" mode-str))
-                            (list default-directory
-                                  (if sf
-                                      (funcall sf buffer)
-                                    (if save (mapcar 'wg-get-value save)))
-                                  ))))))))
-     ;; Maybe change a docstring for functions
-     ;;(put (intern (format "wg-serialize-%s-buffer" (symbol-name mode)))
-     ;;     'function-documentation
-     ;;     (format "A function created by `wg-support'."))
-
-     ;; Add function to `wg-special-buffer-serdes-functions' variable
-     (eval `(add-to-list 'wg-special-buffer-serdes-functions
-                         ',(intern (format "wg-serialize-%s-buffer" mode-str)) t))
-     ))
-
-(defconst wg-font-lock-keywords
-  '(("(\\(wg-support\\|wg-support\\)[ \t]*"
-     (1 font-lock-keyword-face)
-     ;;(2 font-lock-keyword-face)
-     )))
-(font-lock-add-keywords 'emacs-lisp-mode wg-font-lock-keywords)
-
-(defvar wg-current-session nil "Current session object.")
-(defun wg-current-session (&optional noerror)
-  "Return `wg-current-session' or error unless NOERROR."
-  (or wg-current-session
-      (if workgroups-mode
-          (unless noerror (error "No session is defined"))
-        (unless noerror
-          (error "Activate workgroups with (workgroups-mode 1)")))))
-
-;; locate-dominating-file
-(defun wg-get-first-existing-dir (&optional dir)
-  "Test if DIR exists and return it.
-If not - try to go to the parent dir and do the same."
-  (let* ((d (or dir default-directory)))
-    (if (file-directory-p d) d
-      (let* ((cur d) (parent (file-name-directory (directory-file-name cur))))
-        (while (and (> (length cur) (length parent))
-                    (not (file-directory-p parent)))
-          (message "Test %s" parent)
-          (setq cur parent)
-          (setq parent (file-name-directory (directory-file-name cur))))
-        parent))))
-
-
-(defvar wg-pickel-identifier '~pickel!~
-  "Symbol identifying a stream as a pickel.")
-
-(defvar wg-pickel-pickelable-types
-  '(integer
-    float
-    symbol
-    string
-    cons
-    vector
-    hash-table
-    buffer
-    marker
-    ;;window-configuration
-    ;;frame
-    ;;window
-    ;;process
-    )
-  "Types pickel can serialize.")
-
-(defvar wg-pickel-object-serializers
-  '((integer    . identity)
-    (float      . identity)
-    (string     . identity)
-    (symbol     . wg-pickel-symbol-serializer)
-    (cons       . wg-pickel-cons-serializer)
-    (vector     . wg-pickel-vector-serializer)
-    (hash-table . wg-pickel-hash-table-serializer)
-    (buffer     . wg-pickel-buffer-serializer)
-    (marker     . wg-pickel-marker-serializer)
-    ;;(window-configuration   . wg-pickel-window-configuration-serializer)
-    )
-  "Alist mapping types to object serialization functions.")
-(defvar wg-pickel-object-deserializers
-  '((s . wg-pickel-deserialize-uninterned-symbol)
-    (c . wg-pickel-deserialize-cons)
-    (v . wg-pickel-deserialize-vector)
-    (h . wg-pickel-deserialize-hash-table)
-    (b . wg-pickel-deserialize-buffer)
-    (m . wg-pickel-deserialize-marker)
-    ;;(f . wg-pickel-deserialize-frame)
-    )
-  "Alist mapping type keys to object deserialization functions.")
-
-(defvar wg-pickel-link-serializers
-  '((cons       . wg-pickel-cons-link-serializer)
-    (vector     . wg-pickel-vector-link-serializer)
-    (hash-table . wg-pickel-hash-table-link-serializer))
-  "Alist mapping types to link serialization functions.")
-(defvar wg-pickel-link-deserializers
-  `((c . wg-pickel-cons-link-deserializer)
-    (v . wg-pickel-vector-link-deserializer)
-    (h . wg-pickel-hash-table-link-deserializer))
-  "Alist mapping type keys to link deserialization functions.")
-
-
-
-;;; errors and predicates
-
-(put 'wg-pickel-unpickelable-type-error
-     'error-conditions
-     '(error wg-pickel-errors wg-pickel-unpickelable-type-error))
-
-(put 'wg-pickel-unpickelable-type-error
-     'error-message
-     "Attemp to pickel unpickelable type")
-
-(defun wg-pickelable-or-error (obj)
-  "Error when OBJ isn't pickelable."
-  (unless (memq (type-of obj) wg-pickel-pickelable-types)
-    (signal 'wg-pickel-unpickelable-type-error
-            (format "Can't pickel objects of type: %S" (type-of obj))))
-  (cl-typecase obj
-    (cons
-     (wg-pickelable-or-error (car obj))
-     (wg-pickelable-or-error (cdr obj)))
-    (vector
-     (cl-map nil 'wg-pickelable-or-error obj))
-    (hash-table
-     (wg-dohash (key value obj)
-       (wg-pickelable-or-error key)
-       (wg-pickelable-or-error value)))))
-
-(defun wg-pickelable-p (obj)
-  (condition-case err
-      (progn (wg-pickelable-or-error obj) t)
-    (wg-pickel-unpickelable-type-error nil)))
-
-(defun wg-pickel-p (obj)
-  "Return t when OBJ is a pickel, nil otherwise."
-  (and (consp obj) (eq (car obj) wg-pickel-identifier)))
-
-
-
-;; accessor functions
-
-(defun wg-pickel-object-serializer (obj)
-  "Return the object serializer for the `type-of' OBJ."
-  (or (wg-aget wg-pickel-object-serializers (type-of obj))
-      (error "Invalid type: %S" (type-of obj))))
-
-(defun wg-pickel-link-serializer (obj)
-  "Return the link serializer for the `type-of' OBJ."
-  (wg-aget wg-pickel-link-serializers (type-of obj)))
-
-(defun wg-pickel-object-deserializer (key)
-  "Return the object deserializer for type key KEY, or error."
-  (or (wg-aget wg-pickel-object-deserializers key)
-      (error "Invalid object deserializer key: %S" key)))
-
-(defun wg-pickel-link-deserializer (key)
-  "Return the link deserializer for type key KEY, or error."
-  (or (wg-aget wg-pickel-link-deserializers key)
-      (error "Invalid link deserializer key: %S" key)))
-
-
-
-;;; bindings
-
-(defun wg-pickel-make-bindings-table (obj)
-  "Return a table binding unique subobjects of OBJ to ids."
-  (let ((binds (make-hash-table :test 'eq))
-        (id -1))
-    (cl-labels
-        ((inner (obj)
-                (unless (gethash obj binds)
-                  (puthash obj (cl-incf id) binds)
-                  (cl-case (type-of obj)
-                    (cons
-                     (inner (car obj))
-                     (inner (cdr obj)))
-                    (vector
-                     (dotimes (idx (length obj))
-                       (inner (aref obj idx))))
-                    (hash-table
-                     (wg-dohash (key val obj)
-                       (inner key)
-                       (inner val)))))))
-      (inner obj)
-      binds)))
-
-
-
-;;; Objects
-(defun wg-pickel-symbol-serializer (symbol)
-  "Return SYMBOL's serialization."
-  (cond ((eq symbol t) t)
-        ((eq symbol nil) nil)
-        ((intern-soft symbol) symbol)
-        (t (list 's (symbol-name symbol)))))
-(defun wg-pickel-deserialize-uninterned-symbol (name)
-  "Return a new uninterned symbol from NAME."
-  (make-symbol name))
-
-
-;; buffer
-(defun wg-pickel-buffer-serializer (buffer)
-  "Return BUFFER's UID in workgroups buffer list."
-  (list 'b (wg-add-buffer-to-buf-list buffer)))
-(defun wg-pickel-deserialize-buffer (uid)
-  "Return a restored buffer from it's UID."
-  (wg-restore-buffer (wg-find-buf-by-uid uid)))
-
-
-;; marker
-(defun wg-pickel-marker-serializer (marker)
-  "Return MARKER's data."
-  (list 'm (list (marker-position marker)
-                 (wg-add-buffer-to-buf-list (marker-buffer marker)))))
-(defun wg-pickel-deserialize-marker (data)
-  "Return marker from it's DATA."
-  (let ((m (make-marker)))
-    (set-marker m (car data) (wg-pickel-deserialize-buffer (car (cdr data))))))
-
-
-;; cons - http://www.gnu.org/software/emacs/manual/html_node/eintr/cons.html
-(defun wg-pickel-cons-serializer (cons)
-  "Return CONS's serialization."
-  (list 'c))
-(defun wg-pickel-deserialize-cons ()
-  "Return a new cons cell initialized to nil."
-  (cons nil nil))
-(defun wg-pickel-cons-link-serializer (cons binds)
-  "Return the serialization of CONS's links in BINDS."
-  (list 'c
-        (gethash cons binds)
-        (gethash (car cons) binds)
-        (gethash (cdr cons) binds)))
-(defun wg-pickel-cons-link-deserializer (cons-id car-id cdr-id binds)
-  "Relink a cons cell with its car and cdr in BINDS."
-  (let ((cons (gethash cons-id binds)))
-    (setcar cons (gethash car-id binds))
-    (setcdr cons (gethash cdr-id binds))))
-
-
-
-;; vector - http://www.gnu.org/software/emacs/manual/html_node/elisp/Vector-Functions.html
-;; (wg-unpickel (wg-pickel (make-vector 9 'Z)))
-;;
-(defun wg-pickel-vector-serializer (vector)
-  "Return VECTOR's serialization."
-  (list 'v (length vector)))
-(defun wg-pickel-deserialize-vector (length)
-  "Return a new vector of length LENGTH."
-  (make-vector length nil))
-(defun wg-pickel-vector-link-serializer (vector binds)
-  "Return the serialization of VECTOR's links in BINDS."
-  (let (result)
-    (dotimes (i (length vector) result)
-      (setq result
-            (nconc (list 'v
-                         (gethash vector binds)
-                         i
-                         (gethash (aref vector i) binds))
-                   result)))))
-(defun wg-pickel-vector-link-deserializer (vector-id index value-id binds)
-  "Relink a vector with its elements in BINDS."
-  (aset (gethash vector-id binds) index (gethash value-id binds)))
-
-
-;; hash table - http://www.gnu.org/software/emacs/manual/html_node/elisp/Hash-Tables.html
-(defun wg-pickel-hash-table-serializer (table)
-  "Return HASH-TABLE's serialization."
-  (list 'h
-        (hash-table-test table)
-        (hash-table-size table)
-        (hash-table-rehash-size table)
-        (hash-table-rehash-threshold table)
-        (hash-table-weakness table)))
-(defun wg-pickel-deserialize-hash-table (test size rsize rthresh weakness)
-  "Return a new hash-table with the specified properties."
-  (make-hash-table :test test :size size :rehash-size rsize
-                   :rehash-threshold rthresh :weakness weakness))
-(defun wg-pickel-hash-table-link-serializer (table binds)
-  "Return the serialization of TABLE's links in BINDS."
-  (let (result)
-    (wg-dohash (key value table result)
-      (setq result
-            (nconc (list 'h
-                         (gethash key binds)
-                         (gethash value binds)
-                         (gethash table binds))
-                   result)))))
-(defun wg-pickel-hash-table-link-deserializer (key-id value-id table-id binds)
-  "Relink a hash-table with its keys and values in BINDS."
-  (puthash (gethash key-id binds)
-           (gethash value-id binds)
-           (gethash table-id binds)))
-
-
-;; TODO
-(defun wg-pickel-window-configuration-serializer (wc)
-  "Return Window configuration WC's serialization."
-  (list 'wc 1))
-
-
-(defun wg-pickel-serialize-objects (binds)
-  "Return a list of serializations of the objects in BINDS."
-  (let (result)
-    (wg-dohash (obj id binds result)
-      (setq result
-            (nconc (list id (funcall (wg-pickel-object-serializer obj) obj))
-                   result)))))
-(defun wg-pickel-deserialize-objects (serial-objects)
-  "Return a hash-table of objects deserialized from SERIAL-OBJECTS."
-  (let ((binds (make-hash-table)))
-    (wg-destructuring-dolist ((id obj . rest) serial-objects binds)
-      (puthash id
-               (if (atom obj) obj
-                 (wg-dbind (key . data) obj
-                   (apply (wg-pickel-object-deserializer key) data)))
-               binds))))
-
-
-
-(defun wg-pickel-serialize-links (binds)
-  "Return a list of serializations of the links between objects in BINDS."
-  (let (result)
-    (wg-dohash (obj id binds result)
-      (awhen (wg-pickel-link-serializer obj)
-        (setq result (nconc (funcall it obj binds) result))))))
-(defun wg-pickel-deserialize-links (serial-links binds)
-  "Return BINDS after relinking all its objects according to SERIAL-LINKS."
-  (wg-destructuring-dolist ((key arg1 arg2 arg3 . rest) serial-links binds)
-    (funcall (wg-pickel-link-deserializer key) arg1 arg2 arg3 binds)))
-
-(defun wg-pickel (obj)
-  "Return the serialization of OBJ."
-  (wg-pickelable-or-error obj)
-  (let ((binds (wg-pickel-make-bindings-table obj)))
-    (list wg-pickel-identifier
-          (wg-pickel-serialize-objects binds)
-          (wg-pickel-serialize-links binds)
-          (gethash obj binds))))
-
-(defun wg-pickel-to-string (obj)
-  "Serialize OBJ to a string and return the string."
-  (format "%S" (wg-pickel obj)))
-
-(defun wg-unpickel (pickel)
-  "Return the deserialization of PICKEL."
-  (unless (wg-pickel-p pickel)
-    (error "Attempt to unpickel a non-pickel."))
-  (wg-dbind (id serial-objects serial-links result) pickel
-    (gethash
-     result
-     (wg-pickel-deserialize-links
-      serial-links
-      (wg-pickel-deserialize-objects serial-objects)))))
-
-;; `wg-pre-window-configuration-change-hook' implementation advice
-(cl-macrolet ((define-p-w-c-c-h-advice
-                (fn)
-                `(defadvice ,fn (before wg-pre-window-configuration-change-hook)
-                   "Call `wg-update-working-wconfig-hook' before this
-function to save up-to-date undo information before the
-window-configuration changes."
-                   (run-hooks 'wg-pre-window-configuration-change-hook))))
-  (define-p-w-c-c-h-advice split-window)
-  (define-p-w-c-c-h-advice enlarge-window)
-  (define-p-w-c-c-h-advice delete-window)
-  (define-p-w-c-c-h-advice delete-other-windows)
-  (define-p-w-c-c-h-advice delete-windows-on)
-  (define-p-w-c-c-h-advice switch-to-buffer)
-  (define-p-w-c-c-h-advice set-window-buffer))
-
-
-(defadvice save-buffers-kill-emacs (around wg-freeze-wconfig)
-  "`save-buffers-kill-emacs' calls `list-processes' when active
-processes exist, screwing up the window config right before
-Workgroups saves it.  This advice freezes `wg-current-wconfig' in
-its correct state, prior to any window-config changes caused by
-`s-b-k-e'."
-  (wg-with-current-wconfig nil (wg-frame-to-wconfig)
-    ad-do-it))
-
-(defadvice select-frame (before wg-update-current-workgroup-working-wconfig)
-  "Update `selected-frame's current workgroup's working-wconfig.
-Before selecting a new frame."
-  (wg-update-current-workgroup-working-wconfig))
-
-(defun wg-enable-all-advice ()
-  "Enable and activate all of Workgroups' advice."
-  ;; switch-to-buffer
-  (ad-enable-advice 'switch-to-buffer 'after 'wg-auto-associate-buffer)
-  (ad-enable-advice 'switch-to-buffer 'before 'wg-pre-window-configuration-change-hook)
-  (ad-activate 'switch-to-buffer)
-
-  ;; set-window-buffer
-  (ad-enable-advice 'set-window-buffer 'after 'wg-auto-associate-buffer)
-  (ad-enable-advice 'set-window-buffer 'before 'wg-pre-window-configuration-change-hook)
-  (ad-activate 'set-window-buffer)
-
-  ;; split-window
-  (ad-enable-advice 'split-window 'before 'wg-pre-window-configuration-change-hook)
-  (ad-activate 'split-window)
-
-  ;; enlarge-window
-  (ad-enable-advice 'enlarge-window 'before 'wg-pre-window-configuration-change-hook)
-  (ad-activate 'enlarge-window)
-
-  ;; delete-window
-  (ad-enable-advice 'delete-window 'before 'wg-pre-window-configuration-change-hook)
-  (ad-activate 'delete-window)
-
-  ;; delete-other-windows
-  (ad-enable-advice 'delete-other-windows 'before 'wg-pre-window-configuration-change-hook)
-  (ad-activate 'delete-other-windows)
-
-  ;; delete-windows-on
-  (ad-enable-advice 'delete-windows-on 'before 'wg-pre-window-configuration-change-hook)
-  (ad-activate 'delete-windows-on)
-
-  ;; save-buffers-kill-emacs
-  (ad-enable-advice 'save-buffers-kill-emacs 'around 'wg-freeze-wconfig)
-  (ad-activate 'save-buffers-kill-emacs)
-
-  ;; select-frame
-  ;;(ad-enable-advice 'select-frame 'before
-  ;;                  'wg-update-current-workgroup-working-wconfig)
-  ;;(ad-activate 'select-frame)
-  )
-
-
-;; disable all advice
-;; (wg-disable-all-advice)
-(defun wg-disable-all-advice ()
-  "Disable and deactivate all of Workgroups' advice."
-  ;; switch-to-buffer
-  (ad-disable-advice 'switch-to-buffer 'after  'wg-auto-associate-buffer)
-  (ad-disable-advice 'switch-to-buffer 'before 'wg-pre-window-configuration-change-hook)
-  (ad-deactivate 'switch-to-buffer)
-
-  ;; set-window-buffer
-  (ad-disable-advice 'set-window-buffer 'after  'wg-auto-associate-buffer)
-  (ad-disable-advice 'set-window-buffer 'before 'wg-pre-window-configuration-change-hook)
-  (ad-deactivate 'set-window-buffer)
-
-  ;; split-window
-  (ad-disable-advice 'split-window 'before 'wg-pre-window-configuration-change-hook)
-  (ad-deactivate 'split-window)
-
-  ;; enlarge-window
-  (ad-disable-advice 'enlarge-window 'before 'wg-pre-window-configuration-change-hook)
-  (ad-deactivate 'enlarge-window)
-
-  ;; delete-window
-  (ad-disable-advice 'delete-window 'before 'wg-pre-window-configuration-change-hook)
-  (ad-deactivate 'delete-window)
-
-  ;; delete-other-windows
-  (ad-disable-advice 'delete-other-windows 'before 'wg-pre-window-configuration-change-hook)
-  (ad-deactivate 'delete-other-windows)
-
-  ;; delete-windows-on
-  (ad-disable-advice 'delete-windows-on    'before 'wg-pre-window-configuration-change-hook)
-  (ad-deactivate 'delete-windows-on)
-
-  ;; save-buffers-kill-emacs
-  (ad-disable-advice 'save-buffers-kill-emacs 'around 'wg-freeze-wconfig)
-  (ad-deactivate 'save-buffers-kill-emacs)
-
-  ;; select-frame
-  ;;(ad-disable-advice 'select-frame 'before
-  ;;                   'wg-update-current-workgroup-working-wconfig)
-  ;;(ad-deactivate 'select-frame)
-  )
-
-
-;; buffer auto-association advice
-
-(defcustom wg-buffer-auto-association-on t
-  "Non-nil means buffer auto-association is on.
--nil means it's off.  See `wg-buffer-auto-association'."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-buffer-auto-association 'weak
-  "Specifies the behavior for auto-associating buffers with workgroups.
-
-When a buffer is made visible in a window it can be automatically
-associated with the current workgroup in the window's frame.
-This setting determines whether and how that happens.
-
-Allowable values:
-
-`weak' - weakly associate the buffer with the workgroup
-`strong' - strongly associate the buffer with the workgroup
-
-A function (a function-symbol or a lambda) - `funcall' the function to
-determine whether and how to associate the buffer with the
-workgroup.  The function should accept two arguments -- the
-buffer and the workgroup -- and should return one of the
-allowable values for this variable.
-
-`nil' or any other value - don't associate the buffer with the
-workgroup.
-
-Becomes workgroup-local when set with `wg-set-workgroup-parameter'.
-Becomes session-local when set with `wg-set-session-parameter'."
-  :type 'sexp
-  :group 'workgroups)
-
-(defcustom wg-dissociate-buffer-on-kill-buffer t
-  "Non-nil means dissociate buffers killed with `kill-buffer'."
-  :type 'boolean
-  :group 'workgroups)
-
-(defun wg-auto-associate-buffer-helper (workgroup buffer assoc)
-  "Associate BUFFER with WORKGROUP based on ASSOC.
-See `wg-buffer-auto-association' for allowable values of ASSOC."
-  (cond ((memq assoc '(weak strong))
-         (wg-workgroup-associate-bufobj workgroup buffer (eq assoc 'weak)))
-        ((functionp assoc)
-         (wg-auto-associate-buffer-helper
-          workgroup buffer (funcall assoc workgroup buffer)))
-        (t nil)))
-
-(defun wg-auto-associate-buffer (buffer &optional frame)
-  "Conditionally associate BUFFER with the current workgroup in FRAME.
-Frame defaults to `selected-frame'.  See `wg-buffer-auto-association'."
-  (when wg-buffer-auto-association-on
-    (-when-let* ((wg (wg-current-workgroup t frame))
-                 (b (get-buffer buffer)))
-      (unless (or (wg-workgroup-bufobj-association-type wg buffer)
-                  (member wg wg-deactivation-list)
-                  (member (buffer-name b) wg-associate-blacklist)
-                  (not (or (buffer-file-name b)
-                           (eq (buffer-local-value 'major-mode b) 'dired-mode))))
-        (wg-auto-associate-buffer-helper
-         wg buffer (wg-local-value 'wg-buffer-auto-association wg))))))
-
-(defadvice switch-to-buffer (after wg-auto-associate-buffer)
-  "Automatically associate the buffer with the current workgroup."
-  (wg-auto-associate-buffer ad-return-value))
-
-(defadvice set-window-buffer (after wg-auto-associate-buffer)
-  "Automatically associate the buffer with the current workgroup."
-  (wg-auto-associate-buffer
-   (ad-get-arg 1)
-   (window-frame (or (ad-get-arg 0) (selected-window)))))
-
-(defun wg-mode-line-string ()
-  "Return the string to be displayed in the mode-line."
-  (let ((wg (wg-current-workgroup t))
-        (wg-use-faces wg-mode-line-use-faces))
-    (cond (wg (wg-fontify " "
-                (:brace wg-mode-line-decor-left-brace)
-                (:mode (wg-workgroup-name wg))
-                (if wg-flag-modified
-                    (concat
-                     (wg-add-face :div wg-mode-line-decor-divider)
-                     ;;(if (window-dedicated-p)
-                     ;;    wg-mode-line-decor-window-dedicated
-                     ;;  wg-mode-line-decor-window-undedicated)
-                     ;;(wg-add-face :div wg-mode-line-decor-divider)
-                     (if (wg-session-modified (wg-current-session))
-                         wg-mode-line-decor-session-modified
-                       wg-mode-line-decor-session-unmodified)
-                     (if (wg-workgroup-modified wg)
-                         wg-mode-line-decor-workgroup-modified
-                       wg-mode-line-decor-workgroup-unmodified)))
-                (:brace wg-mode-line-decor-right-brace)))
-          (t (if wg-display-nowg
-                 (wg-fontify " "
-                   (:brace wg-mode-line-decor-left-brace)
-                   (:mode wg-nowg-string)
-                   (:brace wg-mode-line-decor-right-brace))
-               "")))))
-
-(defun wg-change-modeline ()
-  "Add Workgroups' mode-line format to `mode-line-format'."
-  (unless (assq 'wg-mode-line-display-on mode-line-format)
-    (let ((format '(wg-mode-line-display-on (:eval (wg-mode-line-string))))
-          (pos (or (cl-position 'mode-line-position mode-line-format) 10)))
-      (set-default 'mode-line-format (-insert-at (1+ pos) format mode-line-format))
-      (force-mode-line-update))))
-
-(defun wg-remove-mode-line-display ()
-  "Remove Workgroups' mode-line format from `mode-line-format'."
-  (awhen (assq 'wg-mode-line-display-on mode-line-format)
-    (set-default 'mode-line-format (remove it mode-line-format))
-    (force-mode-line-update)))
-
-(defun wg-add-workgroups-mode-minor-mode-entries ()
-  "Add Workgroups' minor-mode entries.
-Adds entries to `minor-mode-list', `minor-mode-alist' and
-`minor-mode-map-alist'."
-  (cl-pushnew 'workgroups-mode minor-mode-list)
-  (cl-pushnew '(workgroups-mode wg-modeline-string) minor-mode-alist :test 'equal)
-  (setq minor-mode-map-alist
-        (cons (cons 'workgroups-mode (wg-make-workgroups-mode-map))
-              (delete (assoc 'workgroups-mode minor-mode-map-alist)
-                      minor-mode-map-alist))))
-
-(defun wg-fill-keymap (keymap &rest binds)
-  "Return KEYMAP after defining in it all keybindings in BINDS."
-  (while binds
-    (define-key keymap (car binds) (cadr binds))
-    (setq binds (cddr binds)))
-  keymap)
-
-(defvar wg-prefixed-map
-  (wg-fill-keymap
-   (make-sparse-keymap)
-
-   ;; workgroups
-   (kbd "C-c")        'wg-create-workgroup
-   (kbd "c")          'wg-create-workgroup
-   (kbd "C")          'wg-clone-workgroup
-   (kbd "A")          'wg-rename-workgroup
-   (kbd "C-'")        'wg-switch-to-workgroup
-   (kbd "'")          'wg-switch-to-workgroup
-   (kbd "C-v")        'wg-switch-to-workgroup
-   (kbd "v")          'wg-switch-to-workgroup
-
-   ;; session
-   (kbd "C-s")        'wg-save-session
-   (kbd "C-w")        'wg-save-session-as
-   (kbd "C-f")        'wg-open-session
-
-   ;; killing and yanking
-   (kbd "C-k")        'wg-kill-workgroup
-   (kbd "k")          'wg-kill-workgroup
-   (kbd "M-W")        'wg-kill-ring-save-base-wconfig
-   (kbd "M-w")        'wg-kill-ring-save-working-wconfig
-   (kbd "C-y")        'wg-yank-wconfig
-   (kbd "y")          'wg-yank-wconfig
-   (kbd "M-k")        'wg-kill-workgroup-and-buffers
-   (kbd "K")          'wg-delete-other-workgroups
-
-
-   ;; workgroup switching
-   (kbd "C-j")        'wg-switch-to-workgroup-at-index
-   (kbd "j")          'wg-switch-to-workgroup-at-index
-   (kbd "0")          'wg-switch-to-workgroup-at-index-0
-   (kbd "1")          'wg-switch-to-workgroup-at-index-1
-   (kbd "2")          'wg-switch-to-workgroup-at-index-2
-   (kbd "3")          'wg-switch-to-workgroup-at-index-3
-   (kbd "4")          'wg-switch-to-workgroup-at-index-4
-   (kbd "5")          'wg-switch-to-workgroup-at-index-5
-   (kbd "6")          'wg-switch-to-workgroup-at-index-6
-   (kbd "7")          'wg-switch-to-workgroup-at-index-7
-   (kbd "8")          'wg-switch-to-workgroup-at-index-8
-   (kbd "9")          'wg-switch-to-workgroup-at-index-9
-   (kbd "C-p")        'wg-switch-to-workgroup-left
-   (kbd "p")          'wg-switch-to-workgroup-left
-   (kbd "C-n")        'wg-switch-to-workgroup-right
-   (kbd "n")          'wg-switch-to-workgroup-right
-   (kbd "C-a")        'wg-switch-to-previous-workgroup
-   (kbd "a")          'wg-switch-to-previous-workgroup
-
-
-   ;; updating and reverting
-   ;; wconfig undo/redo
-   (kbd "C-r")        'wg-revert-workgroup
-   (kbd "r")          'wg-revert-workgroup
-   (kbd "C-S-r")      'wg-revert-all-workgroups
-   (kbd "R")          'wg-revert-all-workgroups
-   (kbd "<left>")     'wg-undo-wconfig-change
-   (kbd "<right>")    'wg-redo-wconfig-change
-   (kbd "[")          'wg-undo-wconfig-change
-   (kbd "]")          'wg-redo-wconfig-change
-   (kbd "{")          'wg-undo-once-all-workgroups
-   (kbd "}")          'wg-redo-once-all-workgroups
-
-
-   ;; wconfig save/restore
-   (kbd "C-d C-s")    'wg-save-wconfig
-   (kbd "C-d C-'")    'wg-restore-saved-wconfig
-   (kbd "C-d C-k")    'wg-kill-saved-wconfig
-
-
-   ;; workgroup movement
-   (kbd "C-x")        'wg-swap-workgroups
-   (kbd "C-,")        'wg-offset-workgroup-left
-   (kbd "C-.")        'wg-offset-workgroup-right
-
-
-   ;; window moving and frame reversal
-   (kbd "|")          'wg-reverse-frame-horizontally
-   (kbd "\\")         'wg-reverse-frame-vertically
-   (kbd "/")          'wg-reverse-frame-horizontally-and-vertically
-
-
-   ;; toggling
-   (kbd "C-t C-m")    'wg-toggle-mode-line-display
-   (kbd "C-t C-d")    'wg-toggle-window-dedicated-p
-
-
-   ;; misc
-   (kbd "!")          'wg-reset
-   (kbd "?")          'wg-help
-
-   )
-  "The keymap that sits on `wg-prefix-key'.")
-
-(defun wg-make-workgroups-mode-map ()
-  "Return Workgroups' minor-mode-map.
-This map includes `wg-prefixed-map' on `wg-prefix-key', as well
-as Workgroups' command remappings."
-  (let ((map (make-sparse-keymap)))
-    (define-key map wg-prefix-key
-      wg-prefixed-map)
-    (when (and (fboundp 'winner-undo)
-               (fboundp 'winner-redo))
-      (define-key map [remap winner-undo] 'wg-undo-wconfig-change)
-      (define-key map [remap winner-redo] 'wg-redo-wconfig-change))
-    (setq workgroups-mode-map map)))
-
-
-(defun wg-min-size (dir)
-  "Return the minimum window size in split direction DIR."
-  (if dir wg-window-min-height wg-window-min-width))
-
-(defun wg-actual-min-size (dir)
-  "Return the actual minimum window size in split direction DIR."
-  (if dir wg-actual-min-height wg-actual-min-width))
-
-(defmacro wg-with-edges (w spec &rest body)
-  "Bind W's edge list to SPEC and eval BODY."
-  (declare (indent 2))
-  `(wg-dbind ,spec (wg-w-edges ,w) ,@body))
-
-(defmacro wg-with-bounds (wtree dir spec &rest body)
-  "Bind SPEC to W's bounds in DIR, and eval BODY.
-\"bounds\" are a direction-independent way of dealing with edge lists."
-  (declare (indent 3))
-  (wg-with-gensyms (dir-sym l1 t1 r1 b1)
-    (wg-dbind (ls1 hs1 lb1 hb1) spec
-      `(wg-with-edges ,wtree (,l1 ,t1 ,r1 ,b1)
-         (cond (,dir (let ((,ls1 ,l1) (,hs1 ,r1) (,lb1 ,t1) (,hb1 ,b1))
-                       ,@body))
-               (t    (let ((,ls1 ,t1) (,hs1 ,b1) (,lb1 ,l1) (,hb1 ,r1))
-                       ,@body)))))))
-
-(defun wg-set-bounds (w dir ls hs lb hb)
-  "Set W's edges in DIR with bounds LS HS LB and HB."
-  (wg-set-edges w (if dir (list ls lb hs hb) (list lb ls hb hs))))
-
-(defun wg-step-edges (edges1 edges2 hstep vstep)
-  "Return W1's edges stepped once toward W2's by HSTEP and VSTEP."
-  (wg-dbind (l1 t1 r1 b1) edges1
-    (wg-dbind (l2 t2 r2 b2) edges2
-      (let ((left (wg-step-to l1 l2 hstep))
-            (top  (wg-step-to t1 t2 vstep)))
-        (list left top
-              (+ left (wg-step-to (- r1 l1) (- r2 l2) hstep))
-              (+ top  (wg-step-to (- b1 t1) (- b2 t2) vstep)))))))
-
-(defun wg-w-edge-operation (w edges op)
-  "Return a copy of W with its edges mapped against EDGES through OP."
-  (wg-set-edges w (cl-mapcar op (wg-w-edges w) edges)))
-
-(defun wg-first-win (w)
-  "Return the first actual window in W."
-  (if (wg-win-p w) w
-    (wg-first-win (car (wg-wtree-wlist w)))))
-
-(defun wg-last-win (w)
-  "Return the last actual window in W."
-  (if (wg-win-p w) w
-    (wg-last-win (-last-item (wg-wtree-wlist w)))))
-
-(defun wg-minify-win (w)
-  "Set W's edges to the smallest allowable."
-  (let* ((edges (wg-w-edges w))
-         (left (car edges))
-         (top (cadr edges)))
-    (wg-set-edges w (list left top
-                          (+ left wg-actual-min-width)
-                          (+ top  wg-actual-min-height)))))
-
-(defun wg-minified-copy-of-last-win (w)
-  "Minify a copy of the last actual window in W."
-  (wg-minify-win (wg-copy-win (wg-last-win w))))
-
-(defun wg-w-size (w &optional height)
-  "Return the width or height of W, calculated from its edge list."
-  (wg-with-edges w (l1 t1 r1 b1)
-    (if height (- b1 t1) (- r1 l1))))
-
-(defun wg-adjust-w-size (w width-fn height-fn &optional new-left new-top)
-  "Adjust W's width and height with WIDTH-FN and HEIGHT-FN."
-  (wg-with-edges w (left top right bottom)
-    (let ((left (or new-left left)) (top (or new-top top)))
-      (wg-set-edges (wg-copy-w w)
-                    (list left
-                          top
-                          (+ left (funcall width-fn  (- right  left)))
-                          (+ top  (funcall height-fn (- bottom top))))))))
-
-(defun wg-scale-w-size (w width-scale height-scale)
-  "Scale W's size by WIDTH-SCALE and HEIGHT-SCALE."
-  (cl-labels
-      ((wscale (width)  (truncate (* width  width-scale)))
-       (hscale (height) (truncate (* height height-scale))))
-    (wg-adjust-w-size w #'wscale #'hscale)))
-
-(defun wg-restore-window (win)
-  "Restore WIN in `selected-window'."
-  (let ((selwin (selected-window))
-        (buf (wg-find-buf-by-uid (wg-win-buf-uid win))))
-    (if (not buf)
-        (wg-restore-default-buffer)
-      (when (wg-restore-buffer buf t)
-
-        ;; Restore various positions in WINDOW from their values in WIN
-        ;; (wg-restore-window-positions win selwin)
-        (let ((window (or selwin (selected-window))))
-          (wg-with-slots win
-              ((win-point wg-win-point)
-               (win-start wg-win-start)
-               (win-hscroll wg-win-hscroll))
-            (set-window-start window win-start t)
-            (set-window-hscroll window win-hscroll)
-            (set-window-point
-             window
-             (cond ((not wg-restore-point) win-start)
-                   ((eq win-point :max) (point-max))
-                   (t win-point)))
-            (when (>= win-start (point-max)) (recenter))))
-
-        (when wg-restore-window-dedicated-p
-          (set-window-dedicated-p selwin (wg-win-dedicated win)))))
-    (ignore-errors
-      (set-window-prev-buffers
-       selwin (wg-unpickel (wg-win-parameter win 'prev-buffers)))
-      (set-window-next-buffers
-       selwin (wg-unpickel (wg-win-parameter win 'next-buffers)))
-      )))
-
-
-(defun wg-window-point (ewin)
-  "Return `point' or :max.  See `wg-restore-point-max'.
-EWIN should be an Emacs window object."
-  (let ((p (window-point ewin)))
-    (if (and wg-restore-point-max (= p (point-max))) :max p)))
-
-(defun wg-win-parameter (win parameter &optional default)
-  "Return WIN's value for PARAMETER.
-If PARAMETER is not found, return DEFAULT which defaults to nil.
-SESSION nil defaults to the current session."
-  (wg-aget (wg-win-parameters win) parameter default))
-
-(defun wg-set-win-parameter (win parameter value)
-  "Set WIN's value of PARAMETER to VALUE.
-SESSION nil means use the current session.
-Return value."
-  (wg-set-parameter (wg-win-parameters win) parameter value)
-  value)
-;; (wg-win-parameters (wg-window-to-win (selected-window)))
-
-(defun wg-remove-win-parameter (win parameter)
-  "Remove parameter PARAMETER from WIN's parameters."
-  (wg-asetf (wg-win-parameters win) (wg-aremove it parameter)))
-
-(defun wg-window-to-win (&optional window)
-  "Return the serialization (a wg-win) of Emacs window WINDOW."
-  (let ((window (or window (selected-window)))
-        (selected (eq window (selected-window)))
-        win)
-    (with-selected-window window
-      (setq win
-            (wg-make-win
-             :edges              (window-edges window)
-             :point              (wg-window-point window)
-             :start              (window-start window)
-             :hscroll            (window-hscroll window)
-             :selected           selected
-             :minibuffer-scroll  (eq window minibuffer-scroll-window)
-             :dedicated          (window-dedicated-p window)
-             :buf-uid            (wg-buffer-uid-or-add (window-buffer window))))
-      (unless (version< emacs-version "24")
-        ;; To solve: https://github.com/pashinin/workgroups2/issues/51
-        ;; shouldn't ignore here
-        (ignore-errors
-          (wg-set-win-parameter
-           win 'next-buffers (wg-pickel (remove nil (cl-subseq (window-next-buffers window) 0 4))))
-          (wg-set-win-parameter
-           win 'prev-buffers (wg-pickel (remove nil (cl-subseq (window-prev-buffers window) 0 4)))))))
-    win))
-
-(defun wg-toggle-window-dedicated-p ()
-  "Toggle `window-dedicated-p' in `selected-window'."
-  (interactive)
-  (set-window-dedicated-p nil (not (window-dedicated-p)))
-  (force-mode-line-update t)
-  (wg-fontified-message
-    (:cmd "Window:")
-    (:cur (concat (unless (window-dedicated-p) " not") " dedicated"))))
-
-(defun wg-w-edges (w)
-  "Return W's edge list."
-  (cl-etypecase w
-    (wg-win (wg-win-edges w))
-    (wg-wtree (wg-wtree-edges w))))
-
-(defun wg-copy-w (w)
-  "Return a copy of W.  W should be a wg-win or a wg-wtree."
-  (cl-etypecase w
-    (wg-win (wg-copy-win w))
-    (wg-wtree (wg-copy-wtree w))))
-
-(defun wg-set-edges (w edges)
-  "Set W's EDGES list, and return W."
-  (cl-etypecase w
-    (wg-win (setf (wg-win-edges w) edges))
-    (wg-wtree (setf (wg-wtree-edges w) edges)))
-  w)
-
-(defun wg-equal-wtrees (w1 w2)
-  "Return t when W1 and W2 have equal structure."
-  (cond ((and (wg-win-p w1) (wg-win-p w2))
-         (equal (wg-w-edges w1) (wg-w-edges w2)))
-        ((and (wg-wtree-p w1) (wg-wtree-p w2))
-         (and (eq (wg-wtree-dir w1) (wg-wtree-dir w2))
-              (equal (wg-wtree-edges w1) (wg-wtree-edges w2))
-              (cl-every #'wg-equal-wtrees
-                        (wg-wtree-wlist w1)
-                        (wg-wtree-wlist w2))))))
-
-(defun wg-normalize-wtree (wtree)
-  "Clean up and return a new wtree from WTREE.
-Recalculate the edge lists of all subwins, and remove subwins
-outside of WTREE's bounds.  If there's only one element in the
-new wlist, return it instead of a new wtree."
-  (if (wg-win-p wtree) wtree
-    (wg-with-slots wtree ((dir wg-wtree-dir)
-                          (wlist wg-wtree-wlist))
-      (wg-with-bounds wtree dir (ls1 hs1 lb1 hb1)
-        (let* ((min-size (wg-min-size dir))
-               (max (- hb1 1 min-size))
-               (lastw (-last-item wlist)))
-          (cl-labels
-              ((mapwl
-                (wl)
-                (wg-dbind (sw . rest) wl
-                  (cons (wg-normalize-wtree
-                         (wg-set-bounds
-                          sw dir ls1 hs1 lb1
-                          (setq lb1 (if (eq sw lastw) hb1
-                                      (let ((hb2 (+ lb1 (wg-w-size sw dir))))
-                                        (if (>= hb2 max) hb1 hb2))))))
-                        (when (< lb1 max) (mapwl rest))))))
-            (let ((new (mapwl wlist)))
-              (if (not (cdr new)) (car new)
-                (setf (wg-wtree-wlist wtree) new)
-                wtree))))))))
-
-(defun wg-scale-wtree (wtree wscale hscale)
-  "Return a copy of WTREE with its dimensions scaled by WSCALE and HSCALE.
-All WTREE's subwins are scaled as well."
-  (let ((scaled (wg-scale-w-size wtree wscale hscale)))
-    (if (wg-win-p wtree) scaled
-      (wg-asetf (wg-wtree-wlist scaled)
-                (wg-docar (sw it) (wg-scale-wtree sw wscale hscale)))
-      scaled)))
-
-
-(defun wg-resize-frame-scale-wtree (wconfig)
-  "Set FRAME's size to WCONFIG's, returning a possibly scaled wtree.
-If the frame size was set correctly, return WCONFIG's wtree
-unchanged.  If it wasn't, return a copy of WCONFIG's wtree scaled
-with `wg-scale-wconfigs-wtree' to fit the frame as it exists."
-  (let ((frame (selected-frame)))
-    (wg-with-slots wconfig ((wcwidth wg-wconfig-width)
-                            (wcheight wg-wconfig-height))
-      (when window-system (set-frame-size frame wcwidth wcheight))
-      (let ((fwidth  (frame-parameter frame 'width))
-            (fheight (frame-parameter frame 'height)))
-        (if (and (= wcwidth fwidth) (= wcheight fheight))
-            (wg-wconfig-wtree wconfig)
-          (wg-scale-wconfigs-wtree wconfig fwidth fheight))))))
-
-(defun wg-wtree-buf-uids (wtree)
-  "Return a new list of the buf uids of all wins in WTREE."
-  (if (not wtree)
-      (error "WTREE is nil in `wg-wtree-buf-uids'!"))
-  (wg-flatten-wtree wtree 'wg-win-buf-uid))
-
-
-(defun wg-wtree-unique-buf-uids (wtree)
-  "Return a list of the unique buf uids of all wins in WTREE."
-  (cl-remove-duplicates (wg-wtree-buf-uids wtree) :test 'string=))
-
-
-(defun wg-reset-window-tree ()
-  "Delete all but one window in `selected-frame', and reset
-various parameters of that window in preparation for restoring
-a wtree."
-  (delete-other-windows)
-  (set-window-dedicated-p nil nil))
-
-(defun wg-restore-window-tree-helper (w)
-  "Recursion helper for `wg-restore-window-tree' W."
-  (if (wg-wtree-p w)
-      (cl-loop with dir = (wg-wtree-dir w)
-               for (win . rest) on (wg-wtree-wlist w)
-               do (when rest (split-window nil (wg-w-size win dir) (not dir)))
-               do (wg-restore-window-tree-helper win))
-    (wg-restore-window w)
-    (when (wg-win-selected w)
-      (setq wg-window-tree-selected-window (selected-window)))
-    (when (wg-win-minibuffer-scroll w)
-      (setq minibuffer-scroll-window (selected-window)))
-    (other-window 1)))
-
-(defun wg-restore-window-tree (wtree)
-  "Restore WTREE in `selected-frame'."
-  (let ((window-min-width wg-window-min-width)
-        (window-min-height wg-window-min-height)
-        (wg-window-tree-selected-window nil))
-    (wg-reset-window-tree)
-    (wg-restore-window-tree-helper wtree)
-    (awhen wg-window-tree-selected-window (select-window it))))
-
-(defun wg-window-tree-to-wtree (&optional window-tree)
-  "Return the serialization (a wg-wtree) of Emacs window tree WINDOW-TREE."
-  (wg-barf-on-active-minibuffer)
-  (unless window-tree
-    (setq window-tree (window-tree)))
-  (cl-labels
-      ((inner (w) (if (windowp w) (wg-window-to-win w)
-                    (wg-dbind (dir edges . wins) w
-                      (wg-make-wtree
-                       :dir    dir
-                       :edges  edges
-                       :wlist  (mapcar #'inner wins))))))
-    (let ((w (car window-tree)))
-      (when (and (windowp w) (window-minibuffer-p w))
-        (error "Workgroups can't operate on minibuffer-only frames."))
-      (inner w))))
-
-
-(defun wg-flatten-wtree (wtree &optional key)
-  "Return a new list by flattening WTREE.
-KEY non returns returns a list of WTREE's wins.
-KEY non-nil returns a list of the results of calling KEY on each win."
-  (cl-labels
-      ((inner (w) (if (wg-win-p w) (list (if key (funcall key w) w))
-                    (cl-mapcan #'inner (wg-wtree-wlist w)))))
-    (inner wtree)))
-
-(defun wg-reverse-wlist (w &optional dir)
-  "Reverse W's wlist and those of all its sub-wtrees in direction DIR.
-If DIR is nil, reverse WTREE horizontally.
-If DIR is 'both, reverse WTREE both horizontally and vertically.
-Otherwise, reverse WTREE vertically."
-  (cl-labels
-      ((inner (w) (if (wg-win-p w) w
-                    (wg-with-slots w ((d1 wg-wtree-dir))
-                      (wg-make-wtree
-                       :dir d1
-                       :edges (wg-wtree-edges w)
-                       :wlist (let ((wl2 (mapcar #'inner (wg-wtree-wlist w))))
-                                (if (or (eq dir 'both) (eq dir d1))
-                                    (nreverse wl2)
-                                  wl2)))))))
-    (wg-normalize-wtree (inner w))))
-
-(defun wg-wtree-move-window (wtree offset)
-  "Offset `selected-window' OFFSET places in WTREE."
-  (cl-labels
-      ((inner (w) (if (wg-win-p w) w
-                    (wg-with-slots w ((wlist wg-wtree-wlist))
-                      (wg-make-wtree
-                       :dir (wg-wtree-dir w)
-                       :edges (wg-wtree-edges w)
-                       :wlist (aif (cl-find t wlist :key 'wg-win-selected)
-                                  (wg-cyclic-offset-elt it wlist offset)
-                                (mapcar #'inner wlist)))))))
-    (wg-normalize-wtree (inner wtree))))
-
-(defun wg-frame-to-wconfig (&optional frame)
-  "Return the serialization (a wg-wconfig) of Emacs frame FRAME.
-FRAME nil defaults to `selected-frame'."
-  (let* ((frame (or frame (selected-frame)))
-         (fullscrn (frame-parameter frame 'fullscreen)))
-    (wg-make-wconfig
-     :left                  (frame-parameter frame 'left)
-     :top                   (frame-parameter frame 'top)
-     :width                 (frame-parameter frame 'width)
-     :height                (frame-parameter frame 'height)
-     :parameters            `((fullscreen . ,fullscrn))
-     :vertical-scroll-bars  (frame-parameter frame 'vertical-scroll-bars)
-     :scroll-bar-width      (frame-parameter frame 'scroll-bar-width)
-     :wtree                 (wg-window-tree-to-wtree (window-tree frame))
-     )))
-
-(defun wg-current-wconfig ()
-  "Return the current wconfig.
-If `wg-current-wconfig' is non-nil, return it.  Otherwise return
-`wg-frame-to-wconfig'."
-  (or (frame-parameter nil 'wg-current-wconfig)
-      (wg-frame-to-wconfig)))
-
-(defmacro wg-with-current-wconfig (frame wconfig &rest body)
-  "Eval BODY with WCONFIG current in FRAME.
-FRAME nil defaults to `selected-frame'."
-  (declare (indent 2))
-  (wg-with-gensyms (frame-sym old-value)
-    `(let* ((,frame-sym (or ,frame (selected-frame)))
-            (,old-value (frame-parameter ,frame-sym 'wg-current-wconfig)))
-       (unwind-protect
-           (progn
-             (set-frame-parameter ,frame-sym 'wg-current-wconfig ,wconfig)
-             ,@body)
-         (when (frame-live-p ,frame-sym)
-           (set-frame-parameter ,frame-sym 'wg-current-wconfig ,old-value))))))
-
-(defun wg-make-blank-wconfig (&optional buffer)
-  "Return a new blank wconfig.
-BUFFER or `wg-default-buffer' is visible in the only window."
-  (save-window-excursion
-    (delete-other-windows)
-    (switch-to-buffer (or buffer wg-default-buffer))
-    (wg-frame-to-wconfig)))
-
-(defun wg-wconfig-move-window (wconfig offset)
-  "Offset `selected-window' OFFSET places in WCONFIG."
-  (wg-asetf (wg-wconfig-wtree wconfig) (wg-wtree-move-window it offset))
-  wconfig)
-
-
-;;; base wconfig updating
-
-(defun wg-update-working-wconfig-on-delete-frame (frame)
-  "Update FRAME's current workgroup's working-wconfig before
-FRAME is deleted, so we don't lose its state."
-  (wg-flag-session-modified)
-  (with-selected-frame frame
-    (wg-update-current-workgroup-working-wconfig)))
-
-(defun wg-update-working-wconfig-on-make-frame (frame)
-  "Update FRAME's current workgroup's working-wconfig before
-FRAME is deleted, so we don't lose its state."
-  (if (> (length (frame-list)) 1)
-      (wg-flag-session-modified))
-  ;;(with-selected-frame frame
-  ;;  (wg-update-current-workgroup-working-wconfig))
-  )
-
-(defun wg-wconfig-buf-uids (wconfig)
-  "Return WCONFIG's wtree's `wg-wtree-buf-uids'."
-  (if (not (wg-wconfig-wtree wconfig))
-      (error "WTREE is nil in `wg-wconfig-buf-uids'!"))
-  (wg-wtree-unique-buf-uids (wg-wconfig-wtree wconfig)))
-
-
-
-
-
-(defun wg-wconfig-restore-frame-position (wconfig &optional frame)
-  "Use WCONFIG to restore FRAME's position.
-If frame is nil then `selected-frame'."
-  (-when-let* ((left (wg-wconfig-left wconfig))
-               (top (wg-wconfig-top wconfig)))
-    ;; Check that arguments are integers
-    ;; Problem: https://github.com/pashinin/workgroups2/issues/15
-    (if (and (integerp left)
-             (integerp top))
-        (set-frame-position frame left top))))
-
-(defun wg-wconfig-restore-scroll-bars (wconfig)
-  "Restore `selected-frame's scroll-bar settings from WCONFIG."
-  (set-frame-parameter
-   nil 'vertical-scroll-bars (wg-wconfig-vertical-scroll-bars wconfig))
-  (set-frame-parameter
-   nil 'scroll-bar-width (wg-wconfig-scroll-bar-width wconfig)))
-
-;;(defun wg-wconfig-restore-fullscreen (wconfig)
-;;  "Restore `selected-frame's fullscreen settings from WCONFIG."
-;;  (set-frame-parameter
-;;   nil 'fullscreen (wg-wconfig-parameters wconfig))
-;;  )
-
-(defun wg-scale-wconfigs-wtree (wconfig new-width new-height)
-  "Scale WCONFIG's wtree with NEW-WIDTH and NEW-HEIGHT.
-Return a copy WCONFIG's wtree scaled with `wg-scale-wtree' by the
-ratio or NEW-WIDTH to WCONFIG's width, and NEW-HEIGHT to
-WCONFIG's height."
-  (wg-normalize-wtree
-   (wg-scale-wtree
-    (wg-wconfig-wtree wconfig)
-    (/ (float new-width)  (wg-wconfig-width wconfig))
-    (/ (float new-height) (wg-wconfig-height wconfig)))))
-
-(defun wg-scale-wconfig-to-frame (wconfig)
-  "Scale WCONFIG buffers to fit current frame size.
-Return a scaled copy of WCONFIG."
-  (interactive)
-  (wg-scale-wconfigs-wtree wconfig
-                           (frame-parameter nil 'width)
-                           (frame-parameter nil 'height)))
-
-(defun wg-frame-resize-and-position (wconfig &optional frame)
-  "Apply WCONFIG's size and position to a FRAME."
-  (interactive)
-  (unless frame (setq frame (selected-frame)))
-  (let* ((params (wg-wconfig-parameters wconfig))
-         fullscreen)
-    (set-frame-parameter frame 'fullscreen (if (assoc 'fullscreen params)
-                                               (cdr (assoc 'fullscreen params))
-                                             nil))
-    (when (and wg-restore-frame-position
-               (not (frame-parameter frame 'fullscreen)))
-      (wg-wconfig-restore-frame-position wconfig frame))
-    ))
-
-(defun wg-restore-frame-size-position (wconfig &optional fs)
-  "Smart-restore of frame size and position.
-
-Depending on `wg-remember-frame-for-each-wg' frame parameters may
-be restored for each workgroup.
-
-If `wg-remember-frame-for-each-wg' is nil (by default) then
-current frame parameters are saved/restored to/from first
-workgroup. And frame parameters for all other workgroups are just
-ignored.
-"
-  (interactive)
-  (let* ((params (wg-wconfig-parameters wconfig))
-         fullscreen)
-    ;; Frame maximized / fullscreen / none
-    (unless wg-remember-frame-for-each-wg
-      (setq params (wg-wconfig-parameters (wg-workgroup-working-wconfig (wg-first-workgroup)))))
-    (setq fullscreen (if (assoc 'fullscreen params)
-                         (cdr (assoc 'fullscreen params))
-                       nil))
-    (when (and fs
-               fullscreen
-               (or wg-remember-frame-for-each-wg
-                   (null (wg-current-workgroup t))))
-      (set-frame-parameter nil 'fullscreen fullscreen)
-      ;; I had bugs restoring maximized frame:
-      ;; Frame could be maximized but buffers are not scaled to fit it.
-      ;;
-      ;; Maybe because of `set-frame-parameter' takes some time to finish and is async.
-      ;; So I tried this and it helped
-      (sleep-for 0 100))
-
-    ;; Position
-    (when (and wg-restore-frame-position
-               wg-remember-frame-for-each-wg
-               (not (frame-parameter nil 'fullscreen)))
-      (wg-wconfig-restore-frame-position wconfig))
-    ))
-
-
-(defun wg-restore-frames ()
-  "Try to recreate opened frames, take info from session's 'frame-list parameter."
-  (interactive)
-  (delete-other-frames)
-  (awhen (wg-current-session t)
-    (let ((fl (wg-session-parameter 'frame-list nil it))
-          (frame (selected-frame)))
-      (mapc (lambda (wconfig)
-              (with-selected-frame (make-frame)
-                ;;(wg-frame-resize-and-position wconfig)
-                ;;(wg-restore-frame-size-position wconfig)
-                ;;(wg-wconfig-restore-frame-position wconfig)
-                (wg-restore-wconfig wconfig)
-                )) fl)
-      (select-frame-set-input-focus frame))))
-
-;; FIXME: throw a specific error if the restoration was unsuccessful
-(defun wg-restore-wconfig (wconfig &optional frame)
-  "Restore a workgroup configuration WCONFIG in a FRAME.
-Runs each time you're switching workgroups."
-  (unless frame (setq frame (selected-frame)))
-  (let ((wg-record-incorrectly-restored-bufs t)
-        (wg-incorrectly-restored-bufs nil)
-        (params (wg-wconfig-parameters wconfig))
-        fullscreen)
-    (wg-barf-on-active-minibuffer)
-    (when wg-restore-scroll-bars
-      (wg-wconfig-restore-scroll-bars wconfig))
-
-    (when (null (wg-current-workgroup t))
-      (set-frame-parameter frame 'fullscreen (if (assoc 'fullscreen params)
-                                                 (cdr (assoc 'fullscreen params))
-                                               nil)))
-
-    ;; Restore frame position
-    (when (and wg-restore-frame-position
-               (not (frame-parameter nil 'fullscreen))
-               (null (wg-current-workgroup t)))
-      (wg-wconfig-restore-frame-position wconfig frame))
-
-    ;; Restore buffers
-    (wg-restore-window-tree (wg-scale-wconfig-to-frame wconfig))
-
-    (when wg-incorrectly-restored-bufs
-      (message "Unable to restore these buffers: %S\
-If you want, restore them manually and try again."
-               (mapcar 'wg-buf-name wg-incorrectly-restored-bufs)))))
-
-
-;;; saved wconfig commands
-
-(defun wg-save-wconfig ()
-  "Save the current wconfig to the current workgroup's saved wconfigs."
-  (interactive)
-  (let* ((workgroup (wg-current-workgroup))
-         (name (wg-read-saved-wconfig-name workgroup))
-         (wconfig (wg-current-wconfig)))
-    (setf (wg-wconfig-name wconfig) name)
-    (wg-workgroup-save-wconfig wconfig workgroup)
-    (wg-fontified-message
-      (:cmd "Saved: ")
-      (:cur name))))
-
-(defun wg-restore-saved-wconfig ()
-  "Restore one of the current workgroup's saved wconfigs in `selected-frame'."
-  (interactive)
-  (let ((workgroup (wg-current-workgroup)))
-    (wg-restore-wconfig-undoably
-     (wg-workgroup-get-saved-wconfig
-      (wg-completing-read "Saved wconfig: "
-                          (mapcar 'wg-wconfig-name (wg-workgroup-saved-wconfigs workgroup))
-                          nil t)
-      workgroup))))
-
-(defun wg-kill-saved-wconfig ()
-  "Kill one of the current workgroup's saved wconfigs.
-Also add it to the wconfig kill-ring."
-  (interactive)
-  (let* ((workgroup (wg-current-workgroup))
-         (wconfig (wg-read-saved-wconfig workgroup)))
-    (wg-workgroup-kill-saved-wconfig workgroup wconfig)
-    (wg-add-to-wconfig-kill-ring wconfig)
-    (wg-fontified-message
-      (:cmd "Deleted: ")
-      (:cur (wg-wconfig-name wconfig)))))
-
-
-(defun wg-reverse-wconfig (wconfig &optional dir)
-  "Reverse WCONFIG's wtree's wlist in direction DIR."
-  (wg-asetf (wg-wconfig-wtree wconfig) (wg-reverse-wlist it dir))
-  wconfig)
-
-
-;; specialbufs
-(defcustom wg-special-buffer-serdes-functions
-  '(wg-serialize-comint-buffer
-    )
-  "Functions providing serialization/deserialization for complex buffers.
-
-Use `wg-support' macro and this variable will be filled
-automatically.
-
-An entry should be either a function symbol or a lambda, and should
-accept a single Emacs buffer object as an argument.
-
-When a buffer is to be serialized, it is passed to each of these
-functions in turn until one returns non-nil, or the list ends.  A
-return value of nil indicates that the function can't handle
-buffers of that type.  A non-nil return value indicates that it
-can.  The first non-nil return value becomes the buffer's special
-serialization data.  The return value should be a cons, with a
-deserialization function (a function symbol or a lambda) as the car,
-and any other serialization data as the cdr.
-
-When it comes time to deserialize the buffer, the deserialization
-function (the car of the cons mentioned above) is passed the
-wg-buf object, from which it should restore the buffer.  The
-special serialization data itself can be accessed
-with (cdr (wg-buf-special-data <wg-buf>)).  The deserialization
-function must return the restored Emacs buffer object.
-
-See the definitions of the functions in this list for examples of
-how to write your own."
-  :type 'alist
-  :group 'workgroups)
-
-;; Dired
-(wg-support 'dired-mode 'dired
-  `((deserialize . ,(lambda (buffer vars)
-                      (when (or wg-restore-remote-buffers
-                                (not (file-remote-p default-directory)))
-                        (let ((d (wg-get-first-existing-dir)))
-                          (if (file-directory-p d) (dired d))))))))
-
-;; `Info-mode'     C-h i
-(wg-support 'Info-mode 'info
-  `((save . (Info-current-file Info-current-node))
-    (deserialize . ,(lambda (buffer vars)
-                      ;;(with-current-buffer
-                      ;;    (get-buffer-create (wg-buf-name buffer))
-                      (aif vars
-                          (if (fboundp 'Info-find-node)
-                              (apply #'Info-find-node it))
-                        (info)
-                        (get-buffer (wg-buf-name buffer)))))))
-
-;; `help-mode'
-;; Bug: https://github.com/pashinin/workgroups2/issues/29
-;; bug in wg-get-value
-(wg-support 'help-mode 'help-mode
-  `((save . (help-xref-stack-item help-xref-stack help-xref-forward-stack))
-    (deserialize . ,(lambda (buffer vars)
-                      (wg-dbind (item stack forward-stack) vars
-                        (condition-case err
-                            (apply (car item) (cdr item))
-                          (error (message "%s" err)))
-                        (awhen (get-buffer "*Help*")
-                          (set-buffer it)
-                          (wg-when-boundp (help-xref-stack help-xref-forward-stack)
-                            (setq help-xref-stack stack
-                                  help-xref-forward-stack forward-stack))))))))
-
-;; ielm
-(wg-support 'inferior-emacs-lisp-mode 'ielm
-  `((deserialize . ,(lambda (buffer vars)
-                      (ielm) (get-buffer "*ielm*")))))
-
-;; Magit status
-(wg-support 'magit-status-mode 'magit
-  `((deserialize . ,(lambda (buffer vars)
-                      (if (file-directory-p default-directory)
-                          (magit-status default-directory)
-                        (let ((d (wg-get-first-existing-dir)))
-                          (if (file-directory-p d) (dired d))))))))
-
-;; Shell
-(wg-support 'shell-mode 'shell
-  `((deserialize . ,(lambda (buffer vars)
-                      (shell (wg-buf-name buffer))))))
-
-;; org-agenda buffer
-(defun wg-get-org-agenda-view-commands ()
-  "Return commands to restore the state of Agenda buffer.
-Can be restored using \"(eval commands)\"."
-  (interactive)
-  (when (boundp 'org-agenda-buffer-name)
-    (if (get-buffer org-agenda-buffer-name)
-        (with-current-buffer org-agenda-buffer-name
-          (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
-                 (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
-            (if series-redo-cmd
-                (get-text-property p 'org-series-redo-cmd)
-              (get-text-property p 'org-redo-cmd)))))))
-
-(defun wg-run-agenda-cmd (f)
-  "Run commands F in Agenda buffer.
-You can get these commands using `wg-get-org-agenda-view-commands'."
-  (when (and (boundp 'org-agenda-buffer-name)
-             (fboundp 'org-current-line)
-             (fboundp 'org-goto-line))
-    (if (get-buffer org-agenda-buffer-name)
-        (save-window-excursion
-          (with-current-buffer org-agenda-buffer-name
-            (let* ((line (org-current-line)))
-              (if f (eval f))
-              (org-goto-line line)))))))
-
-(wg-support 'org-agenda-mode 'org-agenda
-  '((serialize . (lambda (buffer)
-                   (wg-get-org-agenda-view-commands)))
-    (deserialize . (lambda (buffer vars)
-                     (org-agenda-list)
-                     (awhen (get-buffer org-agenda-buffer-name)
-                       (with-current-buffer it
-                         (wg-run-agenda-cmd vars))
-                       it)))))
-
-;; eshell
-(wg-support 'eshell-mode 'esh-mode
-  '((deserialize . (lambda (buffer vars)
-                     (prog1 (eshell t)
-                       (rename-buffer (wg-buf-name buffer) t))))))
-
-;; term-mode
-;;
-;; This should work for `ansi-term's, too, as there doesn't seem to
-;; be any difference between the two except how the name of the
-;; buffer is generated.
-;;
-(wg-support 'term-mode 'term
-  `((serialize . ,(lambda (buffer)
-                    (if (get-buffer-process buffer)
-                        (-last-item (process-command (get-buffer-process buffer)))
-                      "/bin/bash")))
-    (deserialize . ,(lambda (buffer vars)
-                      (cl-labels ((term-window-width () 80)
-                                  (window-height () 24))
-                        (prog1 (term vars)
-                          (rename-buffer (wg-buf-name buffer) t)))))))
-
-;; `inferior-python-mode'
-(wg-support 'inferior-python-mode 'python
-  `((save . (python-shell-interpreter python-shell-interpreter-args))
-    (deserialize . ,(lambda (buffer vars)
-                      (wg-dbind (pythoncmd pythonargs) vars
-                        (run-python (concat pythoncmd " " pythonargs))
-                        (awhen (get-buffer (process-buffer
-                                            (python-shell-get-or-create-process)))
-                          (with-current-buffer it (goto-char (point-max)))
-                          it))))))
-
-
-;; Sage shell ;;
-(wg-support 'inferior-sage-mode 'sage-mode
-  `((deserialize . ,(lambda (buffer vars)
-                      (save-window-excursion
-                        (if (boundp' sage-command)
-                            (run-sage t sage-command t)))
-                      (if (boundp 'sage-buffer)
-                          (awhen sage-buffer
-                            (set-buffer it)
-                            (switch-to-buffer sage-buffer)
-                            (goto-char (point-max))))))))
-
-;; `inferior-ess-mode'     M-x R
-(wg-support 'inferior-ess-mode 'ess-inf
-  `((save . (inferior-ess-program))
-    (deserialize . ,(lambda (buffer vars)
-                      (wg-dbind (cmd) vars
-                        (let ((ess-ask-about-transfile nil)
-                              (ess-ask-for-ess-directory nil)
-                              (ess-history-file nil))
-                          (R)
-                          (get-buffer (wg-buf-name buffer))))))))
-
-;; `inferior-octave-mode'
-(wg-support 'inferior-octave-mode 'octave
-  `((deserialize . ,(lambda (buffer vars)
-                      (prog1 (run-octave)
-                        (rename-buffer (wg-buf-name buffer) t))))))
-
-;; `prolog-inferior-mode'
-(wg-support 'prolog-inferior-mode 'prolog
-  `((deserialize . ,(lambda (buffer vars)
-                      (save-window-excursion
-                        (run-prolog nil))
-                      (switch-to-buffer "*prolog*")
-                      (goto-char (point-max))))))
-
-;; `ensime-inf-mode'
-(wg-support 'ensime-inf-mode 'ensime
-  `((deserialize . ,(lambda (buffer vars)
-                      (save-window-excursion
-                        (ensime-inf-switch))
-                      (when (boundp 'ensime-inf-buffer-name)
-                        (switch-to-buffer ensime-inf-buffer-name)
-                        (goto-char (point-max)))))))
-
-;; compilation-mode
-;;
-;; I think it's not a good idea to compile a program just to switch
-;; workgroups. So just restoring a buffer name.
-(wg-support 'compilation-mode 'compile
-  `((serialize . ,(lambda (buffer)
-                    (if (boundp' compilation-arguments) compilation-arguments)))
-    (deserialize . ,(lambda (buffer vars)
-                      (save-window-excursion
-                        (get-buffer-create (wg-buf-name buffer)))
-                      (with-current-buffer (wg-buf-name buffer)
-                        (when (boundp' compilation-arguments)
-                          (make-local-variable 'compilation-arguments)
-                          (setq compilation-arguments vars)))
-                      (switch-to-buffer (wg-buf-name buffer))
-                      (goto-char (point-max))))))
-
-;; grep-mode
-;; see grep.el - `compilation-start' - it is just a compilation buffer
-;; local variables:
-;; `compilation-arguments' == (cmd mode nil nil)
-(wg-support 'grep-mode 'grep
-  `((serialize . ,(lambda (buffer)
-                    (if (boundp' compilation-arguments) compilation-arguments)))
-    (deserialize . ,(lambda (buffer vars)
-                      (compilation-start (car vars) (nth 1 vars))
-                      (switch-to-buffer "*grep*")))))
-
-
-;; `speedbar-mode' (has bugs)
-;; only from sr-speedbar.el
-;;(wg-support 'speedbar-mode 'sr-speedbar
-;;  `((deserialize . ,(lambda (buffer vars)
-;;                      ;;(with-current-buffer (get-buffer-create "*SPEEDBAR*")
-;;                        (with-no-warnings
-;;                          (setq speedbar-buffer (get-buffer-create "*SPEEDBAR*"))
-;;                          (setq speedbar-frame (selected-frame)
-;;                                dframe-attached-frame (selected-frame)
-;;                                speedbar-select-frame-method 'attached
-;;                                speedbar-verbosity-level 0
-;;                                speedbar-last-selected-file nil)
-;;                          (set-buffer speedbar-buffer)
-;;                          (speedbar-mode)
-;;                          (speedbar-reconfigure-keymaps)
-;;                          (speedbar-update-contents)
-;;                          (speedbar-set-timer 1)
-;;                          (aif (get-buffer-window "*SPEEDBAR*")
-;;                              (set-window-dedicated-p it t))
-;;                          (get-buffer-create "*SPEEDBAR*"))))))
-
-
-(defun wg-deserialize-slime-buffer (buf)
-  "Deserialize `slime' buffer BUF."
-  (when (require 'slime nil 'noerror)
-    (wg-dbind (this-function args) (wg-buf-special-data buf)
-      (let ((default-directory (car args))
-            (arguments (nth 1 args)))
-        (when (and (fboundp 'slime-start*)
-                   (fboundp 'slime-process))
-          (save-window-excursion
-            (slime-start* arguments))
-          (switch-to-buffer (process-buffer (slime-process)))
-          (current-buffer))))))
-
-;; `comint-mode'  (general mode for all shells)
-;;
-;; It may have different shells. So we need to determine which shell is
-;; now in `comint-mode' and how to restore it.
-;;
-;; Just executing `comint-exec' may be not enough because we can miss
-;; some hooks or any other stuff that is executed when you run a
-;; specific shell.
-(defun wg-serialize-comint-buffer (buffer)
-  "Serialize comint BUFFER."
-  (with-current-buffer buffer
-    (if (fboundp 'comint-mode)
-        (when (eq major-mode 'comint-mode)
-          ;; `slime-inferior-lisp-args' var is used when in `slime'
-          (when (and (boundp 'slime-inferior-lisp-args)
-                     slime-inferior-lisp-args)
-            (list 'wg-deserialize-slime-buffer
-                  (list default-directory slime-inferior-lisp-args)
-                  ))))))
-
-;; inf-mongo
-;; https://github.com/tobiassvn/inf-mongo
-;; `mongo-command' - command used to start inferior mongo
-(wg-support 'inf-mongo-mode 'inf-mongo
-  `((serialize . ,(lambda (buffer)
-                    (if (boundp 'inf-mongo-command) inf-mongo-command)))
-    (deserialize . ,(lambda (buffer vars)
-                      (save-window-excursion
-                        (when (fboundp 'inf-mongo)
-                          (inf-mongo vars)))
-                      (when (get-buffer "*mongo*")
-                        (switch-to-buffer "*mongo*")
-                        (goto-char (point-max)))))))
-
-(defun wg-temporarily-rename-buffer-if-exists (buffer)
-  "Rename BUFFER if it exists."
-  (when (get-buffer buffer)
-    (with-current-buffer buffer
-      (rename-buffer "*wg--temp-buffer*" t))))
-
-;; SML shell
-;; Functions to serialize deserialize inferior sml buffer
-;; `inf-sml-program' is the program run as inferior sml, is the
-;; `inf-sml-args' are the extra parameters passed, `inf-sml-host'
-;; is the host on which sml was running when serialized
-(wg-support 'inferior-sml-mode 'sml-mode
-  `((serialize . ,(lambda (buffer)
-                    (list (if (boundp 'sml-program-name) sml-program-name)
-                          (if (boundp 'sml-default-arg) sml-default-arg)
-                          (if (boundp 'sml-host-name) sml-host-name))))
-    (deserialize . ,(lambda (buffer vars)
-                      (wg-dbind (program args host) vars
-                        (save-window-excursion
-                          ;; If a inf-sml buffer already exists rename it temporarily
-                          ;; otherwise `run-sml' will simply switch to the existing
-                          ;; buffer, however we want to create a separate buffer with
-                          ;; the serialized name
-                          (let* ((inf-sml-buffer-name (concat "*"
-                                                              (file-name-nondirectory program)
-                                                              "*"))
-                                 (existing-sml-buf (wg-temporarily-rename-buffer-if-exists
-                                                    inf-sml-buffer-name)))
-                            (with-current-buffer (run-sml program args host)
-                              ;; Rename the buffer
-                              (rename-buffer (wg-buf-name buffer) t)
-
-                              ;; Now we can re-rename the previously renamed buffer
-                              (when existing-sml-buf
-                                (with-current-buffer existing-sml-buf
-                                  (rename-buffer inf-sml-buffer-name t))))))
-                        (switch-to-buffer (wg-buf-name buffer))
-                        (goto-char (point-max)))))))
-
-;; Geiser repls
-;; http://www.nongnu.org/geiser/
-(wg-support 'geiser-repl-mode 'geiser
-  `((save . (geiser-impl--implementation))
-    (deserialize . ,(lambda (buffer vars)
-                      (when (fboundp 'run-geiser)
-                        (wg-dbind (impl) vars
-                          (run-geiser impl)
-                          (goto-char (point-max))))
-                      (switch-to-buffer (wg-buf-name buffer))))))
-
-;; w3m-mode
-(wg-support 'w3m-mode 'w3m
-  `((save . (w3m-current-url))
-    (deserialize . ,(lambda (buffer vars)
-                      (wg-dbind (url) vars
-                        (w3m-goto-url url))))))
-
-;; notmuch
-(wg-support 'notmuch-hello-mode 'notmuch
-  `((deserialize . ,(lambda (buffer vars)
-                      (notmuch)
-                      (get-buffer (wg-buf-name buffer))))))
-
-;; Wanderlust modes:
-;; WL - folders
-;;(defun wg-deserialize-wl-folders-buffer (buf)
-;;  ""
-;;  (if (fboundp 'wl)
-;;      (wg-dbind (this-function) (wg-buf-special-data buf)
-;;        ;;(when (not (eq major-mode 'wl-folder-mode))
-;;        (wl)
-;;        (goto-char (point-max))
-;;        (current-buffer)
-;;        )))
-;;
-;;(defun wg-serialize-wl-folders-buffer (buffer)
-;;  ""
-;;  (if (fboundp 'wl)
-;;      (with-current-buffer buffer
-;;        (when (eq major-mode 'wl-folder-mode)
-;;          (list 'wg-deserialize-wl-folders-buffer
-;;                )))))
-
-;; WL - summary mode (list of mails)
-;;(defun wg-deserialize-wl-summary-buffer (buf)
-;;  ""
-;;  (interactive)
-;;  (if (fboundp 'wl)
-;;      (wg-dbind (this-function param-list) (wg-buf-special-data buf)
-;;        (when (not (eq major-mode 'wl-summary-mode))
-;;          (let ((fld-name (car param-list)))
-;;            ;;(switch-to-buffer "*scratch*")
-;;            ;;(wl)
-;;            ;;(wl-folder-jump-folder fld-name)
-;;            ;;(message fld-name)
-;;            ;;(goto-char (point-max))
-;;            ;;(insert fld-name)
-;;            (current-buffer)
-;;          )))))
-;;
-;;(defun wg-serialize-wl-summary-buffer (buffer)
-;;  ""
-;;  (if (fboundp 'wl)
-;;      (with-current-buffer buffer
-;;        (when (eq major-mode 'wl-summary-mode)
-;;          (list 'wg-deserialize-wl-summary-buffer
-;;                (wg-take-until-unreadable (list wl-summary-buffer-folder-name))
-;;                )))))
-;;
-;;
-;;;; mime-view-mode
-;;
-;;(defun wg-deserialize-mime-view-buffer (buf)
-;;  ""
-;;  (wg-dbind (this-function) (wg-buf-special-data buf)
-;;    (when (not (eq major-mode 'mime-view-mode))
-;;      ;;(wl-summary-enter-handler 3570)     ; only in wl-summary-mode
-;;      ;;(wl-summary-enter-handler)     ; only in wl-summary-mode
-;;      (current-buffer)
-;;      )))
-;;
-;;(defun wg-serialize-mime-view-buffer (buffer)
-;;  ""
-;;  (with-current-buffer buffer
-;;    (when (eq major-mode 'mime-view-mode)
-;;      (list 'wg-deserialize-mime-view-buffer
-;;            ))))
-
-
-;; emms-playlist-mode
-;;
-;; Help me on this one:
-;; 1. How to start emms without any user interaction?
-;;
-;;(defun wg-deserialize-emms-buffer (buf)
-;;  "Deserialize emms-playlist buffer BUF."
-;;  (when (require 'emms-setup nil 'noerror)
-;;    (require 'emms-player-mplayer)
-;;    (emms-standard)
-;;    (emms-default-players)
-;;    (if (fboundp 'emms-playlist-mode)
-;;        (wg-dbind (this-function args) (wg-buf-special-data buf)
-;;          (let ((default-directory (car args)))
-;;            (save-window-excursion
-;;              ;;(emms)
-;;              (if (or (null emms-playlist-buffer)
-;;                      (not (buffer-live-p emms-playlist-buffer)))
-;;                  ;;(call-interactively 'emms-add-file)
-;;                  (emms-source-directory "/usr/data/disk_3/Music/SORT/")
-;;                ))
-;;            ;; (emms)
-;;            ;;(with-current-buffer emms-playlist-buffer-name
-;;            ;;(emms-source-playlist-directory-tree "/usr/data/disk_3/Music/SORT/")
-;;            ;;(emms-source-directory "/usr/data/disk_3/Music/SORT")
-;;            ;;(switch-to-buffer emms-playlist-buffer-name)
-;;            (emms-playlist-mode-go)
-;;            (current-buffer)
-;;            )))))
-;;
-;;(defun wg-serialize-emms-buffer (buffer)
-;;  "Serialize emms BUFFER."
-;;  (with-current-buffer buffer
-;;    (if (fboundp 'emms-playlist-mode)
-;;        (when (eq major-mode 'emms-playlist-mode)
-;;          (list 'wg-deserialize-emms-buffer
-;;                (wg-take-until-unreadable (list default-directory))
-;;                )))))
-
-
-;;; buffer-local variable serdes
-
-(defun wg-serialize-buffer-mark-ring ()
-  "Return a new list of the positions of the marks in `mark-ring'."
-  (mapcar 'marker-position mark-ring))
-
-(defun wg-deserialize-buffer-mark-ring (positions)
-  "Set `mark-ring' to a new list of markers created from POSITIONS."
-  (setq mark-ring
-        (mapcar (lambda (pos) (set-marker (make-marker) pos))
-                positions)))
-
-(defun wg-deserialize-buffer-major-mode (major-mode-symbol)
-  "Conditionally retore MAJOR-MODE-SYMBOL in `current-buffer'."
-  (and (fboundp major-mode-symbol)
-       (not (eq major-mode-symbol major-mode))
-       (funcall major-mode-symbol)))
-
-(defun wg-deserialize-buffer-local-variables (buf)
-  "Restore BUF's buffer local variables in `current-buffer'."
-  (cl-loop for ((var . val) . rest) on (wg-buf-local-vars buf)
-           do (awhen (assq var wg-buffer-local-variables-alist)
-                (wg-dbind (var ser des) it
-                  (if des (funcall des val)
-                    (set var val))))))
-
-(defmacro wg-workgroup-list ()
-  "Setf'able `wg-current-session' modified slot accessor."
-  `(wg-session-workgroup-list (wg-current-session)))
-
-(defmacro wg-buf-list ()
-  "Setf'able `wg-current-session' buf-list slot accessor."
-  `(wg-session-buf-list (wg-current-session)))
-
-(defun wg-restore-default-buffer (&optional switch)
-  "Return `wg-default-buffer' and maybe SWITCH to it."
-  (if switch
-      (switch-to-buffer wg-default-buffer t)
-    (get-buffer-create wg-default-buffer)))
-
-(defun wg-restore-existing-buffer (buf &optional switch)
-  "Return existing buffer from BUF and maybe SWITCH to it."
-  (-when-let (b (wg-find-buf-in-buffer-list buf (wg-buffer-list-emacs)))
-    (if switch (switch-to-buffer b t))
-    (with-current-buffer b
-      (wg-set-buffer-uid-or-error (wg-buf-uid buf))
-      b)))
-
-(defun wg-restore-file-buffer (buf &optional switch)
-  "Restore BUF by finding its file and maybe SWITCH to it.
-Return the created buffer.
-If BUF's file doesn't exist, call `wg-restore-default-buffer'"
-  ;;(-when-let ((file-name (wg-buf-file-name buf)))
-  (let ((file-name (wg-buf-file-name buf)))
-    (when (and file-name
-               (or wg-restore-remote-buffers
-                   (not (file-remote-p file-name))))
-      (cond ((file-exists-p file-name)
-             ;; jit ignore errors
-             ;;(ignore-errors
-             (condition-case err
-                 (let ((b (find-file-noselect file-name nil nil nil)))
-                   (with-current-buffer b
-                     (rename-buffer (wg-buf-name buf) t)
-                     (wg-set-buffer-uid-or-error (wg-buf-uid buf))
-                     (when wg-restore-mark
-                       (set-mark (wg-buf-mark buf))
-                       (deactivate-mark))
-                     (wg-deserialize-buffer-local-variables buf)
-                     )
-                   (if switch (switch-to-buffer b))
-                   b)
-               (error
-                (message "Error while restoring a file %s:\n  %s" file-name (error-message-string err))
-                nil)))
-            (t
-             ;; try directory
-             (if (file-directory-p (file-name-directory file-name))
-                 (dired (file-name-directory file-name))
-               (progn
-                 (message "Attempt to restore nonexistent file: %S" file-name)
-                 nil))
-             )))))
-
-(defun wg-restore-special-buffer (buf &optional switch)
-  "Restore a buffer BUF with DESERIALIZER-FN and maybe SWITCH to it."
-  (-when-let*
-      ((special-data (wg-buf-special-data buf))
-       (buffer (save-window-excursion
-                 (condition-case err
-                     (funcall (car special-data) buf)
-                   (error (message "Error deserializing %S: %S" (wg-buf-name buf) err)
-                          nil)))))
-    (if switch (switch-to-buffer buffer t))
-    (with-current-buffer buffer
-      (wg-set-buffer-uid-or-error (wg-buf-uid buf)))
-    buffer))
-
-(defun wg-restore-buffer (buf &optional switch)
-  "Restore BUF, return it and maybe SWITCH to it."
-  (when buf
-  (fset 'buffer-list wg-buffer-list-original)
-  (prog1
-      (or (wg-restore-existing-buffer buf switch)
-          (wg-restore-special-buffer buf switch)  ;; non existent dired problem
-          (wg-restore-file-buffer buf switch)
-          (progn (wg-restore-default-buffer switch) nil))
-    (if wg-mess-with-buffer-list
-        (fset 'buffer-list wg-buffer-list-function)))))
-
-
-
-;;; buffer object utils
-
-(defun wg-completing-read (prompt choices &optional pred require-match initial-input history default)
-  "Do a completing read.  Use `ido-mode` if enabled."
-  (if ido-mode
-      (ido-completing-read prompt choices pred require-match
-                           initial-input history default)
-    (completing-read prompt choices pred require-match
-                     initial-input history default)))
-
-(defun wg-buffer-uid (buffer-or-name)
-  "Return BUFFER-OR-NAME's buffer-local value of `wg-buffer-uid'."
-  (buffer-local-value 'wg-buffer-uid (wg-get-buffer buffer-or-name)))
-
-(defun wg-bufobj-uid (bufobj)
-  "Return BUFOBJ's uid."
-  (cl-etypecase bufobj
-    (buffer (wg-buffer-uid bufobj))
-    (wg-buf (wg-buf-uid bufobj))
-    (string (wg-bufobj-uid (wg-get-buffer bufobj)))))
-
-(defun wg-bufobj-name (bufobj)
-  "Return BUFOBJ's buffer name."
-  (cl-etypecase bufobj
-    (buffer (buffer-name bufobj))
-    (wg-buf (wg-buf-name bufobj))
-    (string (wg-buffer-name bufobj))))
-
-(defun wg-bufobj-file-name (bufobj)
-  "Return BUFOBJ's filename."
-  (cl-etypecase bufobj
-    (buffer (buffer-file-name bufobj))
-    (wg-buf (wg-buf-file-name bufobj))
-    (string (wg-bufobj-file-name (wg-get-buffer bufobj)))))
-
-(defun wg-buf-major-mode (buf)
-  "Return BUF's `major-mode'.
-It's stored in BUF's local-vars list, since it's a local variable."
-  (wg-aget (wg-buf-local-vars buf) 'major-mode))
-
-(defun wg-buffer-major-mode (bufobj)
-  "Return BUFOBJ's `major-mode'.
-It works with Emacs buffer, Workgroups buffer object and a simple string."
-  (cl-etypecase bufobj
-    (buffer (wg-buffer-major-mode bufobj))
-    (wg-buf (wg-buf-major-mode bufobj))
-    (string (wg-buffer-major-mode bufobj))))
-
-;; `wg-equal-bufobjs' and `wg-find-bufobj' may need to be made a lot smarter
-(defun wg-equal-bufobjs (bufobj1 bufobj2)
-  "Return t if BUFOBJ1 is \"equal\" to BUFOBJ2."
-  (let ((fname1 (wg-bufobj-file-name bufobj1))
-        (fname2 (wg-bufobj-file-name bufobj2)))
-    (cond ((and fname1 fname2) (string= fname1 fname2))
-          ((or fname1 fname2) nil)
-          ((string= (wg-bufobj-name bufobj1) (wg-bufobj-name bufobj2)) t))))
-
-(defun wg-find-bufobj (bufobj bufobj-list)
-  "Find BUFOBJ in BUFOBJ-LIST, testing with `wg-equal-bufobjs'."
-  (cl-find bufobj bufobj-list :test 'wg-equal-bufobjs))
-
-(defun wg-find-bufobj-by-uid (uid bufobj-list)
-  "Find the bufobj in BUFOBJ-LIST with uid UID."
-  (cl-find uid bufobj-list :test 'string= :key 'wg-bufobj-uid))
-
-(defun wg-find-buffer-in-buf-list (buffer-or-name buf-list)
-  "Find BUFFER-OR-NAME in BUF-LIST."
-  (aif (wg-buffer-uid buffer-or-name)
-      (wg-find-bufobj-by-uid it buf-list)
-    (wg-find-bufobj buffer-or-name buf-list)))
-
-(defun wg-find-buf-in-buffer-list (buf buffer-list)
-  "Find BUF in BUFFER-LIST."
-  (or (wg-find-bufobj-by-uid (wg-buf-uid buf) buffer-list)
-      (wg-find-bufobj buf buffer-list)))
-
-(defun wg-find-buf-by-uid (uid)
-  "Find a buf in `wg-buf-list' by UID."
-  (when uid
-    (wg-find-bufobj-by-uid uid (wg-buf-list))))
-
-(defun wg-set-buffer-uid-or-error (uid &optional buffer)
-  "Change UID value of a BUFFER's local var `wg-buffer-uid'.
-If BUFFER already has a buffer local value of `wg-buffer-uid',
-and it's not equal to UID, error."
-  (if wg-buffer-uid
-      ;;(if (string= wg-buffer-uid uid) uid
-      ;;  (error "uids don't match %S and %S" uid wg-buffer-uid))
-      (setq wg-buffer-uid uid)))
-
-
-(defun wg-buffer-special-data (buffer)
-  "Return BUFFER's auxiliary serialization, or nil."
-  (cl-some (lambda (fn) (funcall fn buffer)) wg-special-buffer-serdes-functions))
-
-
-(defun wg-serialize-buffer-local-variables ()
-  "Return an alist of buffer-local variable symbols and their values.
-See `wg-buffer-local-variables-alist' for details."
-  (wg-docar (entry wg-buffer-local-variables-alist)
-    (wg-dbind (var ser des) entry
-      (when (local-variable-p var)
-        (cons var (if ser (funcall ser) (symbol-value var)))))))
-
-(defun wg-buffer-to-buf (buffer)
-  "Return the serialization (a wg-buf) of Emacs buffer BUFFER."
-  (with-current-buffer buffer
-    (wg-make-buf
-     :name           (buffer-name)
-     :file-name      (buffer-file-name)
-     :point          (point)
-     :mark           (mark)
-     :local-vars     (wg-serialize-buffer-local-variables)
-     :special-data   (wg-buffer-special-data buffer))))
-
-(defun wg-add-buffer-to-buf-list (buffer)
-  "Make a buf from BUFFER, and add it to `wg-buf-list' if necessary.
-If there isn't already a buf corresponding to BUFFER in
-`wg-buf-list', make one and add it.  Return BUFFER's uid
-in either case."
-  (when buffer
-  (with-current-buffer buffer
-    (setq wg-buffer-uid
-          (aif (wg-find-buffer-in-buf-list buffer (wg-buf-list))
-              (wg-buf-uid it)
-            (let ((buf (wg-buffer-to-buf buffer)))
-              (push buf (wg-buf-list))
-              (wg-buf-uid buf)))))))
-
-(defun wg-buffer-uid-or-add (buffer)
-  "Return BUFFER's uid.
-If there isn't already a buf corresponding to BUFFER in
-`wg-buf-list', make one and add it."
-  (or (wg-buffer-uid buffer) (wg-add-buffer-to-buf-list buffer)))
-
-(defun wg-bufobj-uid-or-add (bufobj)
-  "If BUFOBJ is a wg-buf, return its uid.
-If BUFOBJ is a buffer or a buffer name, see `wg-buffer-uid-or-add'."
-  (cl-etypecase bufobj
-    (wg-buf (wg-buf-uid bufobj)) ;; possibly also add to `wg-buf-list'
-    (buffer (wg-buffer-uid-or-add bufobj))
-    (string (wg-bufobj-uid-or-add (wg-get-buffer bufobj)))))
-
-(defun wg-reset-buffer (buffer)
-  "Return BUFFER.
-Currently only sets BUFFER's `wg-buffer-uid' to nil."
-  (with-current-buffer buffer (setq wg-buffer-uid nil)))
-
-(defun wg-update-buffer-in-buf-list (&optional buffer)
-  "Update BUFFER's corresponding buf in `wg-buf-list'.
-BUFFER nil defaults to `current-buffer'."
-  (let ((buffer (or buffer (current-buffer))))
-    (-when-let* ((uid (wg-buffer-uid buffer))
-                 (old-buf (wg-find-buf-by-uid uid))
-                 (new-buf (wg-buffer-to-buf buffer)))
-      (setf (wg-buf-uid new-buf) (wg-buf-uid old-buf))
-      (wg-asetf (wg-buf-list) (cons new-buf (remove old-buf it))))))
-
-(defvar wg-just-exited-minibuffer nil
-  "Flag set by `minibuffer-exit-hook'.
-To exempt from undoification those window-configuration changes
-caused by exiting the minibuffer.  This is ugly, but necessary.
-It may seem like we could just null out
-`wg-undoify-window-configuration-change' in
-`minibuffer-exit-hook', but that also prevents undoification of
-window configuration changes triggered by commands called with
-`execute-extended-command' -- i.e. it's just too coarse.")
-
-(defcustom wg-no-confirm-on-destructive-operation nil
-  "Do not request confirmation before various destructive operations."
-  :type 'boolean
-  :group 'workgroups)
-
-(defcustom wg-minibuffer-message-timeout 0.75
-  "Bound to `minibuffer-message-timeout' when messaging while the
-minibuffer is active."
-  :type 'float
-  :group 'workgroups)
-
-(defun wg-read-object (prompt test warning &optional initial-contents keymap
-                              read hist default-value inherit-input-method)
-  "PROMPT for an object that satisfies TEST.  WARNING if necessary.
-INITIAL-CONTENTS KEYMAP READ HIST DEFAULT-VALUE
-INHERIT-INPUT-METHOD are `read-from-minibuffer's args."
-  (cl-labels ((read () (read-from-minibuffer
-                        prompt initial-contents keymap read hist
-                        default-value inherit-input-method)))
-    (let ((obj (read)))
-      (when (and (equal obj "") default-value) (setq obj default-value))
-      (while (not (funcall test obj))
-        (message warning)
-        (sit-for wg-minibuffer-message-timeout)
-        (setq obj (read)))
-      obj)))
-
-(defun wg-read-new-workgroup-name (&optional prompt)
-  "Read a non-empty name string from the minibuffer.
-Print PROMPT"
-  (let ((default (wg-new-default-workgroup-name)))
-    (wg-read-object
-     (or prompt (format "Name (default: %S): " default))
-     (lambda (new) (and (stringp new)
-                        (not (equal new ""))
-                        (wg-unique-workgroup-name-p new)))
-     "Please enter a unique, non-empty name"
-     nil nil nil nil default)))
-
-(defun wg-read-workgroup-index ()
-  "Prompt for the index of a workgroup."
-  (let ((max (1- (length (wg-workgroup-list-or-error)))))
-    (wg-read-object
-     (format "%s\n\nEnter [0-%d]: " (wg-workgroup-list-display) max)
-     (lambda (obj) (and (integerp obj) (wg-within obj 0 max t)))
-     (format "Please enter an integer [%d-%d]" 0 max)
-     nil nil t)))
-
-(defun wg-minibuffer-inactive-p ()
-  "Return t when `minibuffer-depth' is zero, nil otherwise."
-  (zerop (minibuffer-depth)))
-
-(defun wg-barf-on-active-minibuffer ()
-  "Throw an error when the minibuffer is active."
-  (when (not (wg-minibuffer-inactive-p))
-    (error "Exit minibuffer to use workgroups functions!")))
-
-(defvar wg-deactivation-list nil
-  "A stack of workgroups that are currently being switched away from.
-Used to avoid associating the old workgroup's buffers with the
-new workgroup during a switch.")
-
-(defun wg-flag-session-modified (&optional session)
-  "Set SESSION's modified flag."
-  (when (and wg-flag-modified
-             (or session (wg-current-session t)))
-    (setf (wg-session-modified (or session (wg-current-session t))) t)))
-
-(defun wg-flag-workgroup-modified (&optional workgroup)
-  "Set WORKGROUP's and the current session's modified flags."
-  (unless workgroup
-    (setq workgroup (wg-get-workgroup nil t)))
-  (when (and wg-flag-modified workgroup)
-    (setf (wg-workgroup-modified workgroup) t)
-    (wg-flag-session-modified)))
-
-(defun wg-current-workgroup (&optional noerror frame)
-  "Return current workgroup in frame.
-Error unless NOERROR, in FRAME if specified."
-  (or wg-current-workgroup
-      (aif (frame-parameter frame 'wg-current-workgroup-uid)
-          (wg-find-workgroup-by :uid it noerror)
-        (unless noerror (error "No current workgroup in this frame")))))
-
-(defun wg-previous-workgroup (&optional noerror frame)
-  "Return the previous workgroup in FRAME, or error unless NOERROR."
-  (aif (frame-parameter frame 'wg-previous-workgroup-uid)
-      (wg-find-workgroup-by :uid it noerror)
-    (unless noerror (error "No previous workgroup in this frame"))))
-
-(defun wg-set-current-workgroup (workgroup &optional frame)
-  "Set the current workgroup to WORKGROUP in FRAME.
-WORKGROUP should be a workgroup or nil."
-  (set-frame-parameter frame 'wg-current-workgroup-uid
-                       (when workgroup (wg-workgroup-uid workgroup))))
-
-(defun wg-set-previous-workgroup (workgroup &optional frame)
-  "Set the previous workgroup to WORKGROUP in FRAME.
-WORKGROUP should be a workgroup or nil."
-  (set-frame-parameter frame 'wg-previous-workgroup-uid
-                       (when workgroup (wg-workgroup-uid workgroup))))
-
-(defun wg-current-workgroup-p (workgroup &optional frame)
-  "Return t when WORKGROUP is the current workgroup, nil otherwise."
-  (awhen (wg-current-workgroup t frame)
-    (eq workgroup it)))
-
-(defun wg-previous-workgroup-p (workgroup &optional frame)
-  "Return t when WORKGROUP is the previous workgroup, nil otherwise."
-  (awhen (wg-previous-workgroup t frame)
-    (eq workgroup it)))
-
-(defun wg-get-workgroup (obj &optional noerror)
-  "Return a workgroup from OBJ.
-If OBJ is a workgroup, return it.
-If OBJ is a string, return the workgroup named OBJ, or error unless NOERROR.
-If OBJ is nil, return the current workgroup, or error unless NOERROR."
-  (cond ((wg-workgroup-p obj) obj)
-        ((stringp obj) (wg-find-workgroup-by :name obj noerror))
-        ((null obj) (wg-current-workgroup noerror))
-        (t (error "Can't get workgroup from type:: %S" (type-of obj)))))
-
-
-;;; workgroup parameters
-;;
-;; Quick test:
-;; (wg-workgroup-parameters (wg-current-workgroup))
-;; (wg-set-workgroup-parameter (wg-current-workgroup) 'test1 t)
-;; (wg-workgroup-parameter (wg-current-workgroup) 'test1)
-(defun wg-workgroup-parameter (workgroup parameter &optional default)
-  "Return WORKGROUP's value for PARAMETER.
-If PARAMETER is not found, return DEFAULT which defaults to nil.
-WORKGROUP should be accepted by `wg-get-workgroup'."
-  (wg-aget (wg-workgroup-parameters (wg-get-workgroup workgroup))
-           parameter default))
-
-(defun wg-set-workgroup-parameter (parameter value &optional workgroup)
-  "Set PARAMETER to VALUE in a WORKGROUP.
-WORKGROUP should be a value accepted by `wg-get-workgroup'.
-Return VALUE."
-  (-when-let (workgroup (wg-get-workgroup (or workgroup (wg-current-workgroup t)) t))
-    (wg-set-parameter (wg-workgroup-parameters workgroup) parameter value)
-    (wg-flag-workgroup-modified workgroup)
-    value))
-
-(defun wg-remove-workgroup-parameter (parameter &optional workgroup)
-  "Remove PARAMETER from WORKGROUP's parameters."
-  (-when-let (workgroup (wg-get-workgroup workgroup t))
-    (wg-flag-workgroup-modified workgroup)
-    (wg-asetf (wg-workgroup-parameters workgroup) (wg-aremove it parameter))))
-
-(defun wg-workgroup-local-value (variable &optional workgroup)
-  "Return the value of VARIABLE in WORKGROUP.
-WORKGROUP nil defaults to the current workgroup.  If there is no
-current workgroup, or if VARIABLE does not have a workgroup-local
-binding in WORKGROUP, resolve VARIABLE with `wg-session-local-value'."
-  (let ((workgroup (wg-get-workgroup workgroup t)))
-    (if (not workgroup) (wg-session-local-value variable)
-      (let* ((undefined (cl-gensym))
-             (value (wg-workgroup-parameter workgroup variable undefined)))
-        (if (not (eq value undefined)) value
-          (wg-session-local-value variable))))))
-(defalias 'wg-local-value 'wg-workgroup-local-value)
-
-
-(defun wg-workgroup-saved-wconfig-names (workgroup)
-  "Return a new list of the names of all WORKGROUP's saved wconfigs."
-  (mapcar 'wg-wconfig-name (wg-workgroup-saved-wconfigs workgroup)))
-
-(defun wg-workgroup-get-saved-wconfig (wconfig-or-name &optional workgroup)
-  "Return the wconfig by WCONFIG-OR-NAME from WORKGROUP's saved wconfigs.
-WCONFIG-OR-NAME must be either a string or a wconfig.  If
-WCONFIG-OR-NAME is a string and there is no saved wconfig with
-that name, return nil.  If WCONFIG-OR-NAME is a wconfig, and it
-is a member of WORKGROUP's saved wconfigs, return is as given.
-Otherwise return nil."
-  (let ((wconfigs (wg-workgroup-saved-wconfigs (or workgroup (wg-current-workgroup)))))
-    (cl-etypecase wconfig-or-name
-      (wg-wconfig (car (memq wconfig-or-name wconfigs)))
-      (string (cl-find wconfig-or-name wconfigs
-                       :key 'wg-wconfig-name
-                       :test 'string=)))))
-
-(defun wg-workgroup-save-wconfig (wconfig &optional workgroup)
-  "Add WCONFIG to WORKGROUP's saved wconfigs.
-WCONFIG must have a name.  If there's already a wconfig with the
-same name in WORKGROUP's saved wconfigs, replace it."
-  (let ((name (wg-wconfig-name wconfig)))
-    (unless name (error "Attempt to save a nameless wconfig"))
-    (setf (wg-workgroup-modified workgroup) t)
-    (wg-asetf (wg-workgroup-saved-wconfigs workgroup)
-              (cons wconfig (cl-remove name it
-                                       :key 'wg-wconfig-name
-                                       :test 'string=)))))
-
-(defun wg-workgroup-kill-saved-wconfig (workgroup wconfig-or-name)
-  "Delete WCONFIG-OR-NAME from WORKGROUP's saved wconfigs.
-WCONFIG-OR-NAME is resolved with `wg-workgroup-get-saved-wconfig'."
-  (-when-let (wconfig (wg-workgroup-get-saved-wconfig
-                       workgroup wconfig-or-name))
-    (wg-asetf (wg-workgroup-saved-wconfigs workgroup) (remq wconfig it)
-              (wg-workgroup-modified workgroup) t)))
-
-
-
-(defun wg-workgroup-base-wconfig-buf-uids (workgroup)
-  "Return a new list of all unique buf uids in WORKGROUP's working wconfig."
-  (wg-wconfig-buf-uids (wg-workgroup-base-wconfig workgroup)))
-
-(defun wg-workgroup-saved-wconfigs-buf-uids (workgroup)
-  "Return a new list of all unique buf uids in WORKGROUP's base wconfig."
-  (cl-reduce 'wg-string-list-union
-             (wg-workgroup-saved-wconfigs workgroup)
-             :key 'wg-wconfig-buf-uids))
-
-(defun wg-workgroup-all-wconfig-buf-uids (workgroup)
-  "Return a new list of all unique buf uids in WORKGROUP's wconfigs."
-  (cl-union (wg-workgroup-base-wconfig-buf-uids workgroup)
-            (wg-workgroup-saved-wconfigs-buf-uids workgroup)
-            :test 'string=))
-
-(defun wg-workgroup-all-buf-uids (workgroup)
-  "Return a new list of all unique buf uids in WORKGROUP."
-  (cl-reduce 'wg-string-list-union
-             (list (wg-workgroup-base-wconfig-buf-uids workgroup)
-                   (wg-workgroup-saved-wconfigs-buf-uids workgroup))))
-
-(defun wg-restore-workgroup (workgroup)
-  "Restore WORKGROUP in `selected-frame'."
-  (let (wg-flag-modified)
-    (wg-restore-wconfig-undoably (wg-workgroup-working-wconfig workgroup) t)))
-
-(defun wg-workgroup-list-or-error (&optional noerror)
-  "Return the value of `wg-current-session's :workgroup-list slot.
-Or scream unless NOERROR."
-  (aif (wg-current-session noerror)
-      (or (wg-session-workgroup-list it)
-          (unless noerror (error "No workgroups are defined.")))
-    (unless noerror (error "Current session is nil. No workgroups are defined"))))
-
-(defun wg-find-workgroup-by (slotkey value &optional noerror)
-  "Return the workgroup on which ACCESSOR returns VALUE or error."
-  (let ((accessor (cl-ecase slotkey
-                    (:name 'wg-workgroup-name)
-                    (:uid  'wg-workgroup-uid))))
-    (or (cl-find value (wg-workgroup-list-or-error noerror) :test 'equal :key accessor)
-        (unless noerror
-          (error "There are no workgroups with a %S of %S"
-                 accessor value)))))
-
-(defun wg-cyclic-nth-from-workgroup (workgroup &optional n)
-  "Return the workgroup N places from WORKGROUP in `wg-workgroup-list'."
-  (wg-cyclic-nth-from-elt workgroup (wg-workgroup-list-or-error) (or n 1)))
-
-(defun wg-workgroup-names (&optional noerror)
-  "Return a list of workgroup names or scream unless NOERROR."
-  (mapcar 'wg-workgroup-name (wg-workgroup-list-or-error noerror)))
-
-(defun wg-read-workgroup-name (&optional require-match)
-  "Read a workgroup name from `wg-workgroup-names'.
-REQUIRE-MATCH to match."
-  (wg-completing-read "Workgroup: " (wg-workgroup-names) nil require-match nil nil
-                      (awhen (wg-current-workgroup t) (wg-workgroup-name it))))
-
-(defun wg-new-default-workgroup-name ()
-  "Return a new, unique, default workgroup name."
-  (let ((names (wg-workgroup-names t)) (index -1) result)
-    (while (not result)
-      (let ((new-name (format "wg%s" (cl-incf index))))
-        (unless (member new-name names)
-          (setq result new-name))))
-    result))
-
-(defun wg-unique-workgroup-name-p (new-name)
-  "Return t if NEW-NAME is unique in `wg-workgroup-list', nil otherwise."
-  (cl-every (lambda (existing-name) (not (equal new-name existing-name)))
-            (wg-workgroup-names t)))
-
-(defun wg-read-saved-wconfig-name (workgroup &optional prompt require-match)
-  "Read the name of a saved wconfig, completing on the names of
-WORKGROUP's saved wconfigs."
-  (wg-completing-read (or prompt "Saved wconfig name: ")
-                      (wg-workgroup-saved-wconfig-names workgroup)
-                      nil require-match))
-
-(defun wg-read-saved-wconfig (workgroup)
-  "Read the name of and return one of WORKGROUP's saved wconfigs."
-  (wg-workgroup-get-saved-wconfig
-   workgroup (wg-read-saved-wconfig-name workgroup nil t)))
-
-
-;;; workgroup-list reorganization commands
-
-(defun wg-swap-workgroups ()
-  "Swap the previous and current workgroups."
-  (interactive)
-  (wg-swap-workgroups-in-workgroup-list
-   (wg-current-workgroup) (wg-previous-workgroup))
-  (wg-fontified-message
-    (:cmd "Swapped:  ")
-    (wg-workgroup-list-display)))
-
-(defun wg-offset-workgroup-left (&optional workgroup n)
-  "Offset WORKGROUP leftward in `wg-workgroup-list' cyclically."
-  (interactive (list nil current-prefix-arg))
-  (wg-cyclic-offset-workgroup (wg-get-workgroup workgroup) (or n -1))
-  (wg-fontified-message
-    (:cmd "Offset left: ")
-    (wg-workgroup-list-display)))
-
-(defun wg-offset-workgroup-right (&optional workgroup n)
-  "Offset WORKGROUP rightward in `wg-workgroup-list' cyclically."
-  (interactive (list nil current-prefix-arg))
-  (wg-cyclic-offset-workgroup (wg-get-workgroup workgroup) (or n 1))
-  (wg-fontified-message
-    (:cmd "Offset right: ")
-    (wg-workgroup-list-display)))
-
-
-;;; undo/redo commands
-
-(defun wg-undo-wconfig-change (&optional workgroup)
-  "Undo a change to the current workgroup's window-configuration."
-  (interactive)
-  (let* ((workgroup (wg-get-workgroup workgroup))
-         (undid? (wg-workgroup-offset-position-in-undo-list workgroup 1)))
-    (wg-fontified-message
-      (:cmd "Undo")
-      (:cur (if undid? "" "  No more undo info")))))
-
-(defun wg-redo-wconfig-change (&optional workgroup)
-  "Redo a change to the current workgroup's window-configuration."
-  (interactive)
-  (let* ((workgroup (wg-get-workgroup workgroup))
-         (redid? (wg-workgroup-offset-position-in-undo-list workgroup -1)))
-    (wg-fontified-message
-      (:cmd "Redo")
-      (:cur (if redid? "" "  No more redo info")))))
-
-(defun wg-undo-once-all-workgroups ()
-  "Do what the name says.  Useful for instance when you
-accidentally call `wg-revert-all-workgroups' and want to return
-all workgroups to their un-reverted state."
-  (interactive)
-  (mapc 'wg-undo-wconfig-change (wg-workgroup-list-or-error))
-  (wg-message "Undid once on all workgroups."))
-
-(defun wg-redo-once-all-workgroups ()
-  "Do what the name says.  Probably useless.  Included for
-symetry with `wg-undo-once-all-workgroups'."
-  (interactive)
-  (mapc 'wg-redo-wconfig-change (wg-workgroup-list-or-error))
-  (wg-message "Redid once on all workgroups."))
-
-
-
-;;; window-tree commands
-;;
-;; TODO: These are half-hearted.  Clean them up; allow specification of the
-;; window-tree depth at which to operate; add complex window creation commands;
-;; and add window splitting, deletion and locking commands.
-
-(defun wg-reverse-frame-horizontally (&optional workgroup)
-  "Reverse the order of all horizontally split wtrees."
-  (interactive)
-  (wg-restore-wconfig-undoably
-   (wg-reverse-wconfig
-    (wg-workgroup-working-wconfig
-     (wg-get-workgroup workgroup)))))
-
-(defun wg-reverse-frame-vertically (&optional workgroup)
-  "Reverse the order of all vertically split wtrees."
-  (interactive)
-  (wg-restore-wconfig-undoably
-   (wg-reverse-wconfig
-    (wg-workgroup-working-wconfig
-     (wg-get-workgroup workgroup))
-    t)))
-
-(defun wg-reverse-frame-horizontally-and-vertically (&optional workgroup)
-  "Reverse the order of all wtrees."
-  (interactive)
-  (wg-restore-wconfig-undoably
-   (wg-reverse-wconfig
-    (wg-workgroup-working-wconfig
-     (wg-get-workgroup workgroup))
-    'both)))
-
-(defun wg-rename-workgroup (newname &optional workgroup)
-  "Set NEWNAME to WORKGROUP's name."
-  (interactive (list (wg-read-new-workgroup-name "New name: ") nil))
-  (-when-let (workgroup (wg-get-workgroup workgroup))
-    (let* ((oldname (wg-workgroup-name workgroup)))
-      (setf (wg-workgroup-name workgroup) newname)
-      (wg-flag-workgroup-modified workgroup)
-      (wg-fontified-message
-        (:cmd "Renamed: ")
-        (:cur oldname)
-        (:msg " to ")
-        (:cur (wg-workgroup-name workgroup))))))
-
-(defun wg-reset (&optional force)
-  "Reset Workgroups.
-Resets all frame parameters, buffer-local vars, the current
-Workgroups session object, etc."
-  (interactive "P")
-  (unless (or force wg-no-confirm-on-destructive-operation
-              (y-or-n-p "Really reset Workgroups? "))
-    (error "Canceled"))
-  (wg-reset-internal)
-  (wg-fontified-message (:cmd "Reset: ") (:msg "Workgroups")))
-
-(defun wg-query-and-save-if-modified ()
-  "Query for save when `wg-modified-p'."
-  (or (not (wg-modified-p))
-      (when (y-or-n-p "Save modified workgroups? ")
-        (wg-save-session))))
-
-(defun wg-create-workgroup (name &optional blank)
-  "Create and add a workgroup named NAME.
-Optional argument BLANK non-nil (set interactively with a prefix
-arg) means use a blank, one window window-config.  Otherwise use
-the current window-configuration.  Keep in mind that even though
-the current window-config may be used, other parameters of the
-current workgroup are not copied to the created workgroup.  For
-that, use `wg-clone-workgroup'."
-  (interactive (list (wg-read-new-workgroup-name) current-prefix-arg))
-  (wg-switch-to-workgroup (wg-make-and-add-workgroup name blank))
-  (wg-fontified-message
-    (:cmd "Created: ") (:cur name) "  " (wg-workgroup-list-display)))
-
-(defun wg-clone-workgroup (workgroup name)
-  "Create and add a clone of WORKGROUP named NAME.
-Keep in mind that only WORKGROUP's top level alist structure is
-copied, so destructive operations on the keys or values of
-WORKGROUP will be reflected in the clone, and vice-versa.  Be
-safe -- don't mutate them."
-  (interactive (list nil (wg-read-new-workgroup-name)))
-  (let* ((workgroup (wg-get-workgroup workgroup))
-         (clone (wg-copy-workgroup workgroup)))
-    (setf (wg-workgroup-name clone) name
-          (wg-workgroup-uid clone) (wg-generate-uid))
-    (when (wg-check-and-add-workgroup clone)
-      (wg-flag-workgroup-modified clone))
-    (wg-set-workgroup-working-wconfig
-     clone (wg-workgroup-working-wconfig workgroup))
-    (wg-switch-to-workgroup clone)
-    (wg-fontified-message
-      (:cmd "Cloned: ")
-      (:cur (wg-workgroup-name workgroup))
-      (:msg " to ")
-      (:cur name) "  "
-      (wg-workgroup-list-display))))
-
-(defun wg-switch-to-workgroup (workgroup &optional noerror)
-  "Switch to WORKGROUP.
-NOERROR means fail silently."
-  (interactive (list (wg-read-workgroup-name)))
-  (fset 'buffer-list wg-buffer-list-original)
-  (let ((workgroup (wg-get-workgroup-create workgroup))
-        (current (wg-current-workgroup t)))
-    (when (and (eq workgroup current) (not noerror))
-      (error "Already on: %s" (wg-workgroup-name current)))
-    (when current (push current wg-deactivation-list))
-    (unwind-protect
-        (progn
-          ;; Before switch
-          (run-hooks 'wg-before-switch-to-workgroup-hook)
-          ;; Save info about some hard-to-work-with libraries
-          (let (wg-flag-modified)
-            (wg-set-workgroup-parameter 'ecb (and (boundp 'ecb-minor-mode)
-                                                  ecb-minor-mode)))
-          ;;(wg-set-workgroup-parameter (wg-current-workgroup t) 'ecb-win-config (ecb-current-window-configuration))
-          ;; (type-of (ecb-current-window-configuration))
-          ;; (type-of (car (ecb-current-window-configuration)))
-          ;; (type-of (car (nthcdr 3 (ecb-current-window-configuration))))
-          ;; (wg-pickelable-or-error (ecb-current-window-configuration))
-          ;;(ecb-current-window-configuration)
-          ;;)
-
-          ;; Before switching - turn off ECB
-          ;; https://github.com/pashinin/workgroups2/issues/34
-          (if (and (boundp 'ecb-minor-mode)
-                   (boundp 'ecb-frame)
-                   (fboundp 'ecb-deactivate)
-                   ecb-minor-mode
-                   (equal ecb-frame (selected-frame)))
-              (let ((ecb-split-edit-window-after-start 'before-deactivation))
-                (ecb-deactivate)))
-
-          ;; Switch
-          (wg-restore-workgroup workgroup)
-          (wg-set-previous-workgroup current)
-          (wg-set-current-workgroup workgroup)
-
-          ;; After switch
-          ;; Save "last-workgroup" to the session params
-          (let (wg-flag-modified)
-            (awhen (wg-current-workgroup t)
-              (wg-set-session-parameter 'last-workgroup (wg-workgroup-name it)))
-            (awhen (wg-previous-workgroup t)
-              (wg-set-session-parameter 'prev-workgroup (wg-workgroup-name it))))
-
-          ;; If a workgroup had ECB - turn it on
-          (if (and (boundp 'ecb-minor-mode)
-                   (not ecb-minor-mode)
-                   (fboundp 'ecb-activate)
-                   (wg-workgroup-parameter (wg-current-workgroup t) 'ecb nil))
-              (let ((ecb-split-edit-window-after-start 'before-deactivation))
-                (ecb-activate)))
-          ;;(ecb-last-window-config-before-deactivation
-          ;; (wg-workgroup-parameter (wg-current-workgroup t) 'ecb-win-config nil)))
-
-          ;; `sr-speedbar'
-          ;; if *SPEEDBAR* buffer is visible - set some variables
-          (let* ((buffers (mapcar 'window-buffer (window-list)))
-                 (buffer-names (mapcar 'buffer-name buffers)))
-            (when (and (featurep 'sr-speedbar)
-                       (member sr-speedbar-buffer-name buffer-names))
-              (setq sr-speedbar-window (get-buffer-window sr-speedbar-buffer-name))))
-
-          ;; Finally
-          (if wg-mess-with-buffer-list
-              (fset 'buffer-list wg-buffer-list-function))
-          (wg-fontified-message (:cmd "Switched: ") (wg-workgroup-name (wg-current-workgroup t)))
-          (run-hooks 'wg-after-switch-to-workgroup-hook))
-      (when current (pop wg-deactivation-list)))))
-
-(defun wg-switch-to-workgroup-at-index (index)
-  "Switch to the workgroup at INDEX in `wg-workgroup-list'."
-  (interactive (list (or current-prefix-arg (wg-read-workgroup-index))))
-  (let ((wl (wg-workgroup-list-or-error)))
-    (wg-switch-to-workgroup
-     (or (nth index wl) (error "There are only %d workgroups" (length wl))))))
-
-(cl-macrolet
-    ((define-range-of-switch-to-workgroup-at-index (num)
-       `(progn
-          ,@(wg-docar (i (wg-range 0 num))
-              `(defun ,(intern (format "wg-switch-to-workgroup-at-index-%d" i)) ()
-                 ,(format "Switch to the workgroup at index %d." i)
-                 (interactive)
-                 (wg-switch-to-workgroup-at-index ,i))))))
-  (define-range-of-switch-to-workgroup-at-index 10))
-
-(defun wg-switch-to-cyclic-nth-from-workgroup (workgroup n)
-  "Switch N workgroups cyclically from WORKGROUP in `wg-workgroup-list.'"
-  (let ((workgroup-list (wg-workgroup-list-or-error))
-        (workgroup (wg-get-workgroup workgroup t)))
-    (wg-switch-to-workgroup
-     (cond ((not workgroup) (car workgroup-list))
-           ((= 1 (length workgroup-list)) (error "There's only one workgroup"))
-           (t (wg-cyclic-nth-from-workgroup workgroup n))))))
-
-(defun wg-switch-to-workgroup-left (&optional workgroup n)
-  "Switch to WORKGROUP that is (- N) places away from WORKGROUP in `wg-workgroup-list'.
-Use `current-prefix-arg' for N if non-nil.  Otherwise N defaults to 1."
-  (interactive (list nil current-prefix-arg))
-  (wg-switch-to-cyclic-nth-from-workgroup workgroup (- (or n 1))))
-
-(defun wg-switch-to-workgroup-right (&optional workgroup n)
-  "Switch to the workgroup N places from WORKGROUP in `wg-workgroup-list'.
-Use `current-prefix-arg' for N if non-nil.  Otherwise N defaults to 1."
-  (interactive (list nil current-prefix-arg))
-  (wg-switch-to-cyclic-nth-from-workgroup workgroup (or n 1)))
-
-(defun wg-switch-to-previous-workgroup ()
-  "Switch to the previous workgroup."
-  (interactive)
-  (wg-switch-to-workgroup (wg-previous-workgroup)))
-
-(defun wg-wconfig-kill-ring ()
-  "Return `wg-wconfig-kill-ring', creating it first if necessary."
-  (or wg-wconfig-kill-ring
-      (setq wg-wconfig-kill-ring (make-ring wg-wconfig-kill-ring-max))))
-
-(defun wg-add-to-wconfig-kill-ring (wconfig)
-  "Add WCONFIG to `wg-wconfig-kill-ring'."
-  (ring-insert (wg-wconfig-kill-ring) wconfig))
-
-(defun wg-kill-workgroup (&optional workgroup)
-  "Kill WORKGROUP, saving its working-wconfig to the kill ring."
-  (interactive)
-  (let* ((workgroup (wg-get-workgroup workgroup))
-         (to (or (wg-previous-workgroup t)
-                 (wg-cyclic-nth-from-workgroup workgroup))))
-    (wg-add-to-wconfig-kill-ring (wg-workgroup-working-wconfig workgroup))
-    (wg-delete-workgroup workgroup)
-    (if (eq workgroup to) (wg-restore-wconfig (wg-make-blank-wconfig))
-      (wg-switch-to-workgroup to))
-    (wg-fontified-message
-      (:cmd "Killed: ")
-      (:cur (wg-workgroup-name workgroup)) "  "
-      (wg-workgroup-list-display))))
-
-(defun wg-kill-ring-save-base-wconfig (&optional workgroup)
-  "Save WORKGROUP's base wconfig to the kill ring."
-  (interactive)
-  (let ((workgroup (wg-get-workgroup workgroup)))
-    (wg-add-to-wconfig-kill-ring (wg-workgroup-base-wconfig workgroup))
-    (wg-fontified-message
-      (:cmd "Saved: ") (:cur (wg-workgroup-name workgroup))
-      (:cur "'s ") (:msg "base wconfig to the kill ring"))))
-
-(defun wg-kill-ring-save-working-wconfig (&optional workgroup)
-  "Save WORKGROUP's working-wconfig to `wg-wconfig-kill-ring'."
-  (interactive)
-  (let ((workgroup (wg-get-workgroup workgroup)))
-    (wg-add-to-wconfig-kill-ring (wg-workgroup-working-wconfig workgroup))
-    (wg-fontified-message
-      (:cmd "Saved: ") (:cur (wg-workgroup-name workgroup))
-      (:cur "'s ") (:msg "working-wconfig to the kill ring"))))
-
-(defun wg-yank-wconfig ()
-  "Restore a wconfig from `wg-wconfig-kill-ring'.
-Successive yanks restore wconfigs sequentially from the kill
-ring, starting at the front."
-  (interactive)
-  (when (zerop (ring-length (wg-wconfig-kill-ring)))
-    (error "The kill-ring is empty"))
-  (let ((pos (if (not (eq real-last-command 'wg-yank-wconfig)) 0
-               (1+ (or (get 'wg-yank-wconfig :position) 0)))))
-    (put 'wg-yank-wconfig :position pos)
-    (wg-restore-wconfig-undoably (ring-ref (wg-wconfig-kill-ring) pos))
-    (wg-fontified-message
-      (:cmd "Yanked: ")
-      (:msg (format "%S" pos)) "  "
-      (wg-workgroup-list-display))))
-
-(defun wg-kill-workgroup-and-buffers (&optional workgroup)
-  "Kill WORKGROUP and the buffers in its working-wconfig."
-  (interactive)
-  (let* ((workgroup (wg-get-workgroup workgroup))
-         (bufs (save-window-excursion
-                 (wg-restore-workgroup workgroup)
-                 (mapcar #'window-buffer (window-list)))))
-    (wg-kill-workgroup workgroup)
-    (mapc #'kill-buffer bufs)
-    (wg-fontified-message
-      (:cmd "Killed: ")
-      (:cur (wg-workgroup-name workgroup))
-      (:msg " and its buffers ") "\n"
-      (wg-workgroup-list-display))))
-
-(defun wg-delete-other-workgroups (&optional workgroup)
-  "Delete all workgroups but WORKGROUP."
-  (interactive)
-  (let ((workgroup (wg-get-workgroup workgroup)))
-    (unless (or wg-no-confirm-on-destructive-operation
-                (y-or-n-p "Really delete all other workgroups? "))
-      (error "Cancelled"))
-    (dolist (w (wg-workgroup-list-or-error))
-      (unless (eq w workgroup)
-        (wg-delete-workgroup w)))
-    (unless (wg-current-workgroup-p workgroup)
-      (wg-switch-to-workgroup workgroup))
-    (wg-fontified-message
-      (:cmd "Deleted: ")
-      (:msg "All workgroups but ")
-      (:cur (wg-workgroup-name workgroup)))))
-
-(defun wg-revert-workgroup (&optional workgroup)
-  "Restore WORKGROUP's window configuration to its state at the last save."
-  (interactive)
-  (let* ((workgroup (wg-get-workgroup workgroup))
-         (base-wconfig (wg-workgroup-base-wconfig workgroup)))
-    (if (wg-current-workgroup-p workgroup)
-        (wg-restore-wconfig-undoably base-wconfig)
-      (wg-add-wconfig-to-undo-list workgroup base-wconfig))
-    (wg-fontified-message
-      (:cmd "Reverted: ")
-      (:cur (wg-workgroup-name workgroup)))))
-
-(defun wg-revert-all-workgroups ()
-  "Revert all workgroups to their base wconfigs.
-Only workgroups' working-wconfigs in `selected-frame' are
-reverted."
-  (interactive)
-  (mapc #'wg-revert-workgroup (wg-workgroup-list-or-error))
-  (wg-fontified-message
-    (:cmd "Reverted: ")
-    (:msg "All")))
-
-(defun wg-workgroup-state-table (&optional frame)
-  "Return FRAME's workgroup table, creating it first if necessary."
-  (or (frame-parameter frame 'wg-workgroup-state-table)
-      (let ((wtree (make-hash-table :test 'equal)))
-        (set-frame-parameter frame 'wg-workgroup-state-table wtree)
-        wtree)))
-
-(defun wg-get-workgroup-state (workgroup &optional frame)
-  "Return WORKGROUP's state table in a FRAME."
-  (let ((uid (wg-workgroup-uid workgroup))
-        (state-table (wg-workgroup-state-table frame)))
-    (or (gethash uid state-table)
-        (let ((wgs (wg-make-workgroup-state
-                    :undo-pointer 0
-                    :undo-list
-                    (list (or (wg-workgroup-selected-frame-wconfig workgroup)
-                              (wg-workgroup-base-wconfig workgroup))))))
-          (puthash uid wgs state-table)
-          wgs))))
-
-(defmacro wg-with-undo (workgroup spec &rest body)
-  "Bind WORKGROUP's undo state to SPEC and eval BODY."
-  (declare (indent 2))
-  (wg-dbind (state undo-pointer undo-list) spec
-    `(let* ((,state (wg-get-workgroup-state ,workgroup))
-            (,undo-pointer (wg-workgroup-state-undo-pointer ,state))
-            (,undo-list (wg-workgroup-state-undo-list ,state)))
-       ,@body)))
-
-(defun wg-flag-just-exited-minibuffer ()
-  "Added to `minibuffer-exit-hook'."
-  (setq wg-just-exited-minibuffer t))
-
-(defun wg-flag-window-configuration-changed ()
-  "Set `wg-window-configuration-changed' to t.
-But only if not the minibuffer was just exited.  Added to
-`window-configuration-change-hook'."
-  (if wg-just-exited-minibuffer
-      (setq wg-just-exited-minibuffer nil)
-    (progn
-      (wg-flag-workgroup-modified)
-      (setq wg-window-configuration-changed t))))
-
-(defun wg-unflag-undoify-window-configuration-change ()
-  "Set `wg-undoify-window-configuration-change' to nil, exempting
-from undoification any window-configuration changes caused by the
-current command."
-  (setq wg-undoify-window-configuration-change nil))
-
-(defun wg-set-workgroup-working-wconfig (workgroup wconfig)
-  "Set the working-wconfig of WORKGROUP to WCONFIG."
-  (wg-flag-workgroup-modified workgroup)
-  (setf (wg-workgroup-selected-frame-wconfig workgroup) wconfig)
-  (wg-with-undo workgroup (state undo-pointer undo-list)
-    (setcar (nthcdr undo-pointer undo-list) wconfig)))
-
-(defun wg-add-wconfig-to-undo-list (workgroup wconfig)
-  "Add WCONFIG to WORKGROUP's undo list, truncating its future if necessary."
-  (wg-with-undo workgroup (state undo-pointer undo-list)
-    (let ((undo-list (cons nil (nthcdr undo-pointer undo-list))))
-      (awhen (nthcdr wg-wconfig-undo-list-max undo-list) (setcdr it nil))
-      (setf (wg-workgroup-state-undo-list state) undo-list))
-    (setf (wg-workgroup-state-undo-pointer state) 0))
-  (wg-set-workgroup-working-wconfig workgroup wconfig))
-
-(defun wg-workgroup-working-wconfig (workgroup &optional noupdate)
-  "Return WORKGROUP's working-wconfig.
-If WORKGROUP is the current workgroup in `selected-frame', and
-NOUPDATE is nil, set its working wconfig in `selected-frame' to
-`wg-current-wconfig' and return the updated wconfig.  Otherwise
-return WORKGROUP's current undo state."
-  (if (and (not noupdate) (wg-current-workgroup-p workgroup))
-      (wg-set-workgroup-working-wconfig workgroup (wg-current-wconfig))
-    (wg-with-undo workgroup (state undo-pointer undo-list)
-      (nth undo-pointer undo-list))))
-
-(defun wg-update-current-workgroup-working-wconfig ()
-  "Update `selected-frame's current workgroup's working-wconfig with `wg-current-wconfig'."
-  (awhen (wg-current-workgroup t)
-    (wg-set-workgroup-working-wconfig it (wg-current-wconfig))))
-
-(defun wg-restore-wconfig-undoably (wconfig &optional noundo)
-  "Restore WCONFIG in `selected-frame', saving undo information.
-Skip undo when NOUNDO."
-  (when noundo (wg-unflag-undoify-window-configuration-change))
-  (wg-update-current-workgroup-working-wconfig)
-  (wg-restore-wconfig wconfig))
-
-(defun wg-workgroup-offset-position-in-undo-list (workgroup increment)
-  "Increment WORKGROUP's undo-pointer by INCREMENT.
-Also restore the wconfig at the incremented undo-pointer if
-WORKGROUP is current."
-  (wg-with-undo workgroup (state undo-pointer undo-list)
-    (let ((new-pointer (+ undo-pointer increment)))
-      (when (wg-within new-pointer 0 (length undo-list))
-        (when (wg-current-workgroup-p workgroup)
-          (wg-restore-wconfig-undoably (nth new-pointer undo-list) t))
-        (setf (wg-workgroup-state-undo-pointer state) new-pointer)))))
-
-(defun wg-undoify-window-configuration-change ()
-  "Conditionally `wg-add-wconfig-to-undo-list'.
-Added to `post-command-hook'."
-  (when (and wg-window-configuration-changed         ;; When the window config has changed,
-             wg-undoify-window-configuration-change  ;; and undoification is still on for the current command
-             (wg-minibuffer-inactive-p))             ;; and the change didn't occur while the minibuffer is active,
-    (-when-let (workgroup (wg-current-workgroup t))  ;; and there's a current workgroup,
-      ;; add the current wconfig to that workgroup's undo list:
-      (wg-add-wconfig-to-undo-list workgroup (wg-current-wconfig))))
-  ;; Reset all flags no matter what:
-  (setq wg-window-configuration-changed nil
-        wg-undoify-window-configuration-change t
-        wg-already-updated-working-wconfig nil))
-
-(defun wg-update-working-wconfig-hook ()
-  "Used in before advice on all functions that trigger `window-configuration-change-hook'.
-To save up to date undo info before the change."
-  (when (and (not wg-already-updated-working-wconfig)
-             (wg-minibuffer-inactive-p))
-    (wg-update-current-workgroup-working-wconfig)
-    (setq wg-already-updated-working-wconfig t)))
-
-(defun wg-workgroup-gc-buf-uids (workgroup)
-  "Remove buf uids from WORKGROUP that have no referent in `wg-buf-list'."
-  (wg-asetf (wg-workgroup-strong-buf-uids workgroup)
-            (cl-remove-if-not 'wg-find-buf-by-uid it)
-            (wg-workgroup-weak-buf-uids workgroup)
-            (cl-remove-if-not 'wg-find-buf-by-uid it)))
-
-(defun wg-display-internal (elt-fn list)
-  "Return display string built by calling ELT-FN on each element of LIST."
-  (let ((div (wg-add-face :div wg-list-display-decor-divider))
-        (wwidth (window-width (minibuffer-window)))
-        (i -1)
-        (str))
-    (setq str
-          (wg-fontify
-            (:brace wg-list-display-decor-left-brace)
-            (if (not list) (funcall elt-fn nil nil)
-              (wg-doconcat (elt list div) (funcall elt-fn elt (cl-incf i))))
-            (:brace wg-list-display-decor-right-brace)))
-    ;; (subseq str 0 wwidth)
-    ))
-
-(defun wg-workgroup-list-display (&optional workgroup-list)
-  "Return the WORKGROUP-LIST display string.
-The string contains the names of all workgroups in `wg-workgroup-list',
-decorated with faces, dividers and strings identifying the
-current and previous workgroups."
-  (if (wg-current-session t)
-      (wg-display-internal 'wg-workgroup-display
-                           (or workgroup-list (wg-workgroup-list)))))
-
-(defun wg-create-first-wg ()
-  "Create a first workgroup if needed."
-  (when (and workgroups-mode
-             wg-session-load-on-start
-             (= (length (wg-workgroup-list)) 0))
-    (wg-create-workgroup wg-first-wg-name)
-    (wg-mark-everything-unmodified)))
-
-(defun wg-pickel-workgroup-parameters (workgroup)
-  "Return a copy of WORKGROUP after pickeling its parameters.
-If WORKGROUP's parameters are non-nil, otherwise return
-WORKGROUP."
-  (if (not (wg-workgroup-parameters workgroup)) workgroup
-    (let ((copy (wg-copy-workgroup workgroup)))
-      (wg-asetf (wg-workgroup-parameters copy) (wg-pickel it))
-      copy)))
-
-(defun wg-unpickel-workgroup-parameters (workgroup)
-  "If WORKGROUP's parameters are non-nil, return a copy of
-WORKGROUP after unpickeling its parameters. Otherwise return
-WORKGROUP."
-  (if (not (wg-workgroup-parameters workgroup)) workgroup
-    (let ((copy (wg-copy-workgroup workgroup)))
-      (wg-asetf (wg-workgroup-parameters copy) (wg-unpickel it))
-      copy)))
-
-(defun wg-delete-workgroup (workgroup)
-  "Remove WORKGROUP from `wg-workgroup-list'.
-Also delete all references to it by `wg-workgroup-state-table',
-`wg-current-workgroup' and `wg-previous-workgroup'."
-  (dolist (frame (frame-list))
-    (remhash (wg-workgroup-uid workgroup) (wg-workgroup-state-table frame))
-    (when (wg-current-workgroup-p workgroup frame)
-      (wg-set-current-workgroup nil frame))
-    (when (wg-previous-workgroup-p workgroup frame)
-      (wg-set-previous-workgroup nil frame)))
-  (setf (wg-workgroup-list) (remove workgroup (wg-workgroup-list-or-error)))
-  (wg-flag-session-modified)
-  workgroup)
-
-(defun wg-add-workgroup (workgroup &optional index)
-  "Add WORKGROUP to `wg-workgroup-list' at INDEX or the end.
-If a workgroup with the same name exists, overwrite it."
-  (awhen (wg-find-workgroup-by :name (wg-workgroup-name workgroup) t)
-    (unless index (setq index (cl-position it (wg-workgroup-list-or-error))))
-    (wg-delete-workgroup it))
-  (wg-asetf (wg-workgroup-list)
-            (wg-insert-before workgroup it (or index (length it))))
-  (wg-flag-session-modified)
-  workgroup)
-
-(defun wg-check-and-add-workgroup (workgroup)
-  "Add WORKGROUP to `wg-workgroup-list'.
-Ask to overwrite if a workgroup with the same name exists."
-  (let ((name (wg-workgroup-name workgroup))
-        (uid (wg-workgroup-uid workgroup)))
-    (when (wg-find-workgroup-by :uid uid t)
-      (error "A workgroup with uid %S already exists" uid))
-    (when (wg-find-workgroup-by :name name t)
-      (unless (or wg-no-confirm-on-destructive-operation
-                  (y-or-n-p (format "%S exists. Overwrite? " name)))
-        (error "Cancelled"))))
-  (wg-add-workgroup workgroup))
-
-(defun wg-make-and-add-workgroup (name &optional blank)
-  "Create a workgroup named NAME with current `window-tree'.
-If BLANK - then just scratch buffer.
-Add it with `wg-check-and-add-workgroup'."
-  (wg-check-and-add-workgroup
-   (wg-make-workgroup
-    :name name
-    :base-wconfig (if blank (wg-make-blank-wconfig)
-                    (wg-current-wconfig)))))
-
-(defun wg-get-workgroup-create (workgroup)
-  "Return the workgroup specified by WORKGROUP, creating a new one if needed.
-If `wg-get-workgroup' on WORKGROUP returns a workgroup, return it.
-Otherwise, if WORKGROUP is a string, create a new workgroup with
-that name and return it.  Otherwise error."
-  (or (wg-get-workgroup workgroup t)
-      (if (stringp workgroup)
-          (wg-make-and-add-workgroup workgroup)
-        (wg-get-workgroup workgroup))))  ; Call this again for its error message
-
-(defun wg-cyclic-offset-workgroup (workgroup n)
-  "Offset WORKGROUP's position in `wg-workgroup-list' by N."
-  (let ((workgroup-list (wg-workgroup-list-or-error)))
-    (unless (member workgroup workgroup-list)
-      (error "Workgroup isn't present in `wg-workgroup-list'."))
-    (setf (wg-workgroup-list) (wg-cyclic-offset-elt workgroup workgroup-list n)
-          (wg-session-modified (wg-current-session)) t)))
-
-(defun wg-swap-workgroups-in-workgroup-list (workgroup1 workgroup2)
-  "Swap the positions of WORKGROUP1 and WORKGROUP2 in `wg-workgroup-list'."
-  (let ((workgroup-list (wg-workgroup-list-or-error)))
-    (when (eq workgroup1 workgroup2)
-      (error "Can't swap a workgroup with itself"))
-    (unless (and (memq workgroup1 workgroup-list)
-                 (memq workgroup2 workgroup-list))
-      (error "Both workgroups aren't present in `wg-workgroup-list'."))
-    (setf (wg-workgroup-list) (wg-util-swap workgroup1 workgroup2 workgroup-list)
-          (wg-session-modified (wg-current-session)) t)))
-
-(defun wg-session-uids-consistent-p ()
-  "Return t if there are no duplicate bufs or buf uids in the wrong places.
-nil otherwise."
-  (and (not (wg-dups-p (wg-buf-list) :key 'wg-buf-uid :test 'string=))
-       (not (wg-dups-p (wg-workgroup-list) :key 'wg-workgroup-uid :test 'string=))))
-
-(defun wg-open-session (filename)
-  "Load a session visiting FILENAME, creating one if none already exists."
-  (interactive "FFind session file: ")
-  (cond ((file-exists-p filename)
-         ;; TODO: handle errors when reading object
-         (let ((session (read (f-read-text filename))))
-           (unless (wg-session-p session)
-             (error "%S is not a Workgroups session file." filename))
-           (setf (wg-session-file-name session) filename)
-           (wg-reset-internal (wg-unpickel-session-parameters session)))
-
-         (if wg-control-frames (wg-restore-frames))
-
-         (awhen (wg-workgroup-list)
-           (if (and wg-open-this-wg
-                    (member wg-open-this-wg (wg-workgroup-names)))
-               (wg-switch-to-workgroup wg-open-this-wg)
-             (if (and wg-load-last-workgroup
-                      (member (wg-session-parameter 'last-workgroup) (wg-workgroup-names)))
-                 (wg-switch-to-workgroup (wg-session-parameter 'last-workgroup))
-               (wg-switch-to-workgroup (car it))))
-           (awhen (wg-session-parameter 'prev-workgroup)
-             (when (and (member it (wg-workgroup-names))
-                        (wg-get-workgroup it t))
-               (wg-set-previous-workgroup (wg-get-workgroup it t)))))
-         (wg-fontified-message (:cmd "Loaded: ") (:file filename))
-         (wg-mark-everything-unmodified))
-        (t
-         (wg-query-and-save-if-modified)
-         (wg-reset-internal (wg-make-session :file-name filename))
-         (wg-fontified-message (:cmd "(New Workgroups session file)")))))
-(defalias 'wg-find-session-file 'wg-open-session)
-
-(defun wg-write-sexp-to-file (sexp file)
-  "Write the printable representation of SEXP to FILE."
-  (with-temp-buffer
-    (let ((print-level nil)  (print-length nil))
-      (insert (format "%S" sexp)))
-    (write-file file)))
-
-;; FIXME: Duplicate buf names probably shouldn't be allowed.  An unrelated error
-;; causes two *scratch* buffers to be present, triggering the "uids don't match"
-;; error.  Write something to remove bufs with duplicate names.
-(defun wg-perform-session-maintenance ()
-  "Perform various maintenance operations on the current Workgroups session."
-  (wg-update-current-workgroup-working-wconfig)
-
-  ;; Update every workgroup's base wconfig with `wg-workgroup-update-base-wconfig'
-  (dolist (workgroup (wg-workgroup-list))
-    (awhen (wg-workgroup-selected-frame-wconfig workgroup)
-      (setf (wg-workgroup-base-wconfig workgroup) it
-            (wg-workgroup-selected-frame-wconfig workgroup) nil)))
-
-  ;; Garbage collection
-
-  ;; Commenting this will cause a constantly growing session file:
-  ;; (tried to comment this block to solve https://github.com/pashinin/workgroups2/issues/48)
-  (let ((all-buf-uids (wg-all-buf-uids)))
-    (wg-asetf (wg-buf-list)
-              (cl-remove-if-not (lambda (uid) (member uid all-buf-uids)) it
-                                :key 'wg-buf-uid)))
-
-  (mapc 'wg-workgroup-gc-buf-uids (wg-workgroup-list))  ; Remove buf uids that have no referent in `wg-buf-list'
-  (mapc 'wg-update-buffer-in-buf-list (wg-buffer-list-emacs)))
-
-(defun wg-save-session-as (filename &optional confirm)
-  "Write the current session into file FILENAME.
-This makes the session visit that file, and marks it as not modified.
-
-If optional second arg CONFIRM is non-nil, this function asks for
-confirmation before overwriting an existing file.  Interactively,
-confirmation is required unless you supply a prefix argument."
-  (interactive (list (read-file-name "Save session as: ")
-                     (not current-prefix-arg)))
-  (when (and confirm (file-exists-p filename))
-    (unless (y-or-n-p (format "File `%s' exists; overwrite? " filename))
-      (error "Cancelled")))
-  (unless (file-writable-p filename)
-    (error "File %s can't be written to" filename))
-  (wg-perform-session-maintenance)
-  (setf (wg-session-file-name (wg-current-session)) filename)
-  (setf (wg-session-version (wg-current-session)) wg-version)
-
-  ;; Save opened frames as a session parameter "frame-list".
-  ;; Exclude `selected-frame' and daemon one (if any).
-  ;; http://stackoverflow.com/questions/21151992/why-emacs-as-daemon-gives-1-more-frame-than-is-opened
-  (if wg-control-frames
-      (let ((fl (frame-list)))
-        ;; TODO: remove using dash
-        (mapc (lambda (frame)
-                (if (string-equal "initial_terminal" (terminal-name frame))
-                    (delete frame fl))) fl)
-        (setq fl (delete (selected-frame) fl))
-        (let (wg-flag-modified)
-          (wg-set-session-parameter 'frame-list (mapcar 'wg-frame-to-wconfig fl)))))
-  (wg-write-sexp-to-file (wg-pickel-all-session-parameters) filename)
-  (wg-fontified-message (:cmd "Wrote: ") (:file filename))
-  (wg-mark-everything-unmodified))
-(defalias 'wg-write-session-file 'wg-save-session-as)
-
-(defun wg-get-session-file ()
-  "Return the filename in which to save the session."
-  (or (aif (wg-current-session t) (wg-session-file-name it))
-      wg-session-file))
-;;(read-file-name (format "Save session as [%s]: " wg-session-file))
-
-(defun wg-save-session (&optional force)
-  "Save the current Workgroups session if it's been modified.
-When FORCE - save session regardless of whether it's been modified."
-  (interactive "P")
-  ;;(if (and (not (wg-modified-p)) (not force))
-  ;;    (wg-message "(The session is unmodified)")
-  (wg-save-session-as (wg-get-session-file)))
-
-(defun wg-reset-internal (&optional session)
-  "Reset Workgroups, setting `wg-current-session' to SESSION.
-Resets all frame parameters, buffer-local vars, current session
-object, etc.  SESSION nil defaults to a new, blank session."
-  (mapc 'wg-reset-frame (frame-list))
-  (mapc 'wg-reset-buffer (wg-buffer-list-emacs))
-  (setq wg-wconfig-kill-ring nil)
-  (setq wg-current-session (or session (wg-make-session))))
-
-(defun wg-all-buf-uids (&optional session buffer-list)
-  "Return the union of all SESSION buf-uids and BUFFER-LIST uids."
-  (cl-union (cl-reduce 'wg-string-list-union  ; (wg-session-all-buf-uids session)
-                       (wg-session-workgroup-list (or session (wg-current-session)))
-                       :key 'wg-workgroup-all-buf-uids)
-            ;; (wg-buffer-list-all-uids buffer-list)
-            (delq nil (mapcar 'wg-buffer-uid (or buffer-list (wg-buffer-list-emacs))))
-            :test 'string=))
-
-(defun wg-modified-p ()
-  "Return t when the current session or any of its workgroups are modified."
-  (aif (wg-current-session t)
-      (or (wg-session-modified it)
-          (cl-some 'wg-workgroup-modified (wg-workgroup-list)))))
-
-(defun wg-mark-everything-unmodified ()
-  "Mark the session and all workgroups as unmodified."
-  (let (wg-undoify-window-configuration-change)    ; to skip WG's `post-command-hook' that marks "modified" again
-    (-when-let (session (wg-current-session t))
-      (setf (wg-session-modified session) nil))
-    (dolist (workgroup (wg-workgroup-list))
-      (setf (wg-workgroup-modified workgroup) nil))))
-
-(defun wg-session-parameter (parameter &optional default session)
-  "Return session's value for PARAMETER.
-If PARAMETER is not found, return DEFAULT which defaults to nil.
-SESSION nil defaults to the current session."
-  (wg-aget (wg-session-parameters (or session (wg-current-session)))
-           parameter default))
-
-(defun wg-set-session-parameter (parameter value &optional session)
-  "Set PARAMETER to VALUE in SESSION.
-SESSION nil means use the current session.  Return value."
-  (-when-let (session (or session (wg-current-session t)))
-    (wg-set-parameter (wg-session-parameters session) parameter value)
-    (wg-flag-session-modified session)
-    value))
-
-(defun wg-remove-session-parameter (parameter &optional session)
-  "Remove parameter PARAMETER from SESSION's parameters."
-  (let ((session (or session (wg-current-session))))
-    (wg-asetf (wg-session-parameters session) (wg-aremove it parameter))
-    (wg-flag-session-modified session)))
-
-(defun wg-session-local-value (variable &optional session)
-  "Return the value of VARIABLE in SESSION.
-SESSION nil defaults to the current session.  If VARIABLE does
-not have a session-local binding in SESSION, the value is
-resolved by Emacs."
-  (let* ((undefined (cl-gensym))
-         (value (wg-session-parameter variable undefined session)))
-    (if (not (eq value undefined)) value
-      (symbol-value variable))))
-
-(defun wg-reset-frame (frame)
-  "Reset Workgroups' `frame-parameters' in FRAME to nil."
-  (set-frame-parameter frame 'wg-workgroup-state-table nil)
-  (set-frame-parameter frame 'wg-current-workgroup-uid nil)
-  (set-frame-parameter frame 'wg-previous-workgroup-uid nil))
-
-(defun wg-save-session-on-exit (behavior)
-  "Perform session-saving operations based on BEHAVIOR."
-  (cl-case behavior
-    (ask (wg-query-and-save-if-modified))
-    (save (wg-save-session))))
-
-(defun wg-reload-session ()
-  "Reload current workgroups session."
-  (interactive)
-  (let* ((file (wg-get-session-file))
-         (exists (file-exists-p file)))
-    (condition-case err
-        (wg-open-session file)
-      (progn
-        (wg-create-first-wg)
-        (message "Error loading session-file: %s" err))))
-        ;; TODO: print what exactly happened
-  (wg-create-first-wg))
-
-(defun wg-save-session-on-emacs-exit ()
-  "Call `wg-save-session-on-exit' with `wg-emacs-exit-save-behavior'.
-Added to `kill-emacs-query-functions'."
-  (wg-save-session-on-exit wg-emacs-exit-save-behavior) t)
-
-(defun wg-save-session-on-workgroups-mode-exit ()
-  "Call `wg-save-session-on-exit' with `wg-workgroups-mode-exit-save-behavior'.
-Called when `workgroups-mode' is turned off."
-  (wg-save-session-on-exit wg-workgroups-mode-exit-save-behavior) t)
-
-(defun wg-pickel-all-session-parameters (&optional session)
-  "Return a copy of SESSION after pickeling its parameters.
-And the parameters of all its workgroups."
-  (let ((copy (wg-copy-session (or session (wg-current-session)))))
-    (when (wg-session-parameters copy)
-      (wg-asetf (wg-session-parameters copy) (wg-pickel it)))
-    (wg-asetf (wg-session-workgroup-list copy)
-              (cl-mapcar 'wg-pickel-workgroup-parameters it))
-    copy))
-
-(defun wg-unpickel-session-parameters (session)
-  "Return a copy of SESSION after unpickeling its parameters.
-And the parameters of all its workgroups."
-  (let ((copy (wg-copy-session session)))
-    (when (wg-session-parameters copy)
-      (wg-asetf (wg-session-parameters copy) (wg-unpickel it)))
-    (wg-asetf (wg-session-workgroup-list copy)
-              (cl-mapcar 'wg-unpickel-workgroup-parameters it))
-    copy))
-
-(defvar wg-buffer-workgroup nil
-  "Associating each buffer with the workgroup.
-In which it most recently appeared.")
-(make-variable-buffer-local 'wg-buffer-workgroup)
-
-(defun wg-workgroup-associated-buf-uids (&optional workgroup)
-  "Return a new list containing all of WORKGROUP's associated buf uids."
-  (awhen (or workgroup (wg-current-workgroup t))
-    (append (wg-workgroup-strong-buf-uids it)
-            (wg-workgroup-weak-buf-uids it))))
-
-(defun wg-workgroup-associated-bufs (workgroup)
-  "Return a new list containing all of WORKGROUP's associated bufs."
-  (delete nil (mapcar 'wg-find-buf-by-uid
-                      (wg-workgroup-associated-buf-uids workgroup))))
-
-(defun wg-workgroup-associated-buffers (workgroup)
-  "Return a new list containing all of WORKGROUP's associated buffer objects."
-  (delete nil (mapcar 'wg-restore-buffer
-                      (wg-workgroup-associated-bufs workgroup))))
-
-(defun wg-workgroup-strongly-associate-bufobj (workgroup bufobj)
-  "Strongly associate BUFOBJ with WORKGROUP."
-  (let* ((uid (wg-bufobj-uid-or-add bufobj))
-         (remp (wg-removef-p uid (wg-workgroup-weak-buf-uids workgroup)
-                             :test 'string=))
-         (addp (wg-pushnew-p uid (wg-workgroup-strong-buf-uids workgroup)
-                             :test 'string=)))
-    (when (or remp addp)
-      (wg-flag-workgroup-modified workgroup)
-      bufobj)))
-
-(defun wg-workgroup-weakly-associate-bufobj (workgroup bufobj)
-  "Weakly associate BUFOBJ with WORKGROUP."
-  (let* ((uid (wg-bufobj-uid-or-add bufobj))
-         (remp (wg-removef-p uid (wg-workgroup-strong-buf-uids workgroup)
-                             :test 'string=))
-         (addp (wg-pushnew-p uid (wg-workgroup-weak-buf-uids workgroup)
-                             :test 'string=)))
-    (when (or remp addp)
-      (wg-flag-workgroup-modified workgroup)
-      bufobj)))
-
-(defun wg-workgroup-associate-bufobj (workgroup bufobj &optional weak)
-  "Associate BUFOBJ with WORKGROUP.
-WEAK non-nil means weakly associate it.  Otherwise strongly associate it."
-  (if weak (wg-workgroup-weakly-associate-bufobj workgroup bufobj)
-    (wg-workgroup-strongly-associate-bufobj workgroup bufobj)))
-
-(defun wg-workgroup-dissociate-bufobj (workgroup bufobj)
-  "Dissociate BUFOBJ from WORKGROUP."
-  (let* ((uid (wg-bufobj-uid-or-add bufobj))
-         (rem1p (wg-removef-p uid (wg-workgroup-strong-buf-uids workgroup)
-                              :test 'string=))
-         (rem2p (wg-removef-p uid (wg-workgroup-weak-buf-uids workgroup)
-                              :test 'string=)))
-    (when (or rem1p rem2p)
-      (wg-flag-workgroup-modified workgroup)
-      bufobj)))
-
-(defun wg-workgroup-dissociate-weakly-associated-buffers (workgroup)
-  "Dissociate from WORKGROUP all weakly associated buffers."
-  (when (wg-workgroup-weak-buf-uids workgroup)
-    (wg-flag-workgroup-modified workgroup)
-    (setf (wg-workgroup-weak-buf-uids workgroup) nil)))
-
-(defun wg-workgroup-dissociate-strongly-associated-buffers (workgroup)
-  "Dissociate from WORKGROUP all strongly associated buffers."
-  (when (wg-workgroup-strong-buf-uids workgroup)
-    (wg-flag-workgroup-modified workgroup)
-    (setf (wg-workgroup-strong-buf-uids workgroup) nil)))
-
-(defun wg-workgroup-dissociate-all-buffers (workgroup)
-  "Dissociate from WORKGROUP all its associated buffers."
-  (wg-workgroup-dissociate-weakly-associated-buffers workgroup)
-  (wg-workgroup-dissociate-strongly-associated-buffers workgroup))
-
-(defun wg-auto-dissociate-buffer-hook ()
-  "`kill-buffer-hook' that automatically dissociates buffers from workgroups."
-  (when wg-dissociate-buffer-on-kill-buffer
-    (awhen (wg-current-workgroup t)
-      (wg-workgroup-dissociate-bufobj it (current-buffer)))))
-
-(defun wg-associate-buffer-with-workgroup (&optional workgroup buffer weak)
-  "Associate BUFFER with WORKGROUP.
-WEAK non-nil means weakly associate BUFFER."
-  (interactive (list nil nil current-prefix-arg))
-  (let* ((workgroup (wg-get-workgroup workgroup))
-         (buffer (or buffer (current-buffer)))
-         (bname (buffer-name buffer))
-         (wgname (wg-workgroup-name workgroup)))
-    (if (wg-workgroup-associate-bufobj workgroup buffer weak)
-        (wg-message "%s-associated %S with %s"
-                    (if weak "Weakly" "Strongly") bname wgname)
-      (wg-message "%S is already associated with %s" bname wgname))))
-
-(defun wg-associate-visible-buffers-with-workgroup (&optional workgroup weak)
-  "Associate all buffers visible in `selected-frame' with WORKGROUP.
-WEAK non-nil means weakly associate them.  Otherwise strongly
-associate them."
-  (interactive (list nil current-prefix-arg))
-  (let ((workgroup (wg-get-workgroup workgroup))
-        (buffers (mapcar 'window-buffer (window-list))))
-    (dolist (buffer buffers)
-      (wg-workgroup-associate-bufobj workgroup buffer weak))
-    (wg-fontified-message
-      (:cmd (format "%s associated: " (if weak "Weakly" "Strongly")))
-      (wg-display-internal 'wg-buffer-display buffers))))
-
-(defun wg-dissociate-buffer-from-workgroup (&optional workgroup buffer)
-  "Dissociate BUFFER from WORKGROUP."
-  (interactive (list nil nil))
-  (let ((workgroup (wg-get-workgroup workgroup))
-        (buffer (or buffer (current-buffer))))
-    (wg-message
-     (if (wg-workgroup-dissociate-bufobj workgroup buffer)
-         "Dissociated %S from %s" "%S isn't associated with %s")
-     (wg-buffer-name buffer)
-     (wg-workgroup-name workgroup))))
-
-(defun wg-associate-buffers (workgroup window-or-emacs-window-tree)
-  "Associate the buffers visible in window elements of
-WINDOW-OR-EMACS-WINDOW-TREE with the given WORKGROUP.
-WINDOW-OR-EMACS-WINDOW-TREE must be either a window or a tree of
-the form produced by `(car (window-tree))'."
-  (if (windowp window-or-emacs-window-tree)
-      (with-current-buffer (window-buffer window-or-emacs-window-tree)
-        (setq wg-buffer-workgroup workgroup))
-    (dolist (w (cddr window-or-emacs-window-tree))
-      (when w (wg-associate-buffers workgroup w)))))
-
-(defun wg-workgroup-bufobj-association-type (workgroup bufobj)
-  "Return BUFOBJ's association-type in WORKGROUP, or nil if unassociated."
-  (let ((uid (wg-bufobj-uid-or-add bufobj)))
-    (or (and (member uid (wg-workgroup-strong-buf-uids workgroup)) 'strong)
-        (and (member uid (wg-workgroup-weak-buf-uids workgroup)) 'weak))))
-
-(defun wg-associate-frame-buffers ()
-  "Associate visible buffers with the current workgroup.
-Unless it is currently being deactivated."
-  (awhen (wg-current-workgroup :noerror)
-    (unless (member it wg-deactivation-list)
-      (wg-associate-buffers it (car (window-tree))))))
-
-(defun wg-add-or-remove-workgroups-hooks (remove)
-  "Add or remove all of Workgroups' hooks, depending on REMOVE."
-  (wg-add-or-remove-hooks
-   remove
-   'kill-emacs-query-functions       'wg-save-session-on-emacs-exit
-   'delete-frame-hook                'wg-update-working-wconfig-on-delete-frame
-   'after-make-frame-functions       'wg-update-working-wconfig-on-make-frame
-   'wg-pre-window-configuration-change-hook 'wg-update-working-wconfig-hook
-   'window-configuration-change-hook 'wg-flag-window-configuration-changed
-   'post-command-hook                'wg-undoify-window-configuration-change
-   'minibuffer-exit-hook             'wg-flag-just-exited-minibuffer
-   'kill-buffer-hook                 'wg-update-buffer-in-buf-list
-   'kill-buffer-hook                 'wg-auto-dissociate-buffer-hook
-   ;;'window-configuration-change-hook 'wg-associate-frame-buffers
-   ))
-
-;;;###autoload
-(defun workgroups-mode (&optional arg)
-  "Turn `workgroups-mode' on and off.
-ARG is nil - toggle
-ARG >= 1   - turn on
-ARG == 0   - turn off
-ARG is anything else, turn on `workgroups-mode'."
-  (interactive (list current-prefix-arg))
-  (setq workgroups-mode
-        (cond ((not arg) (not workgroups-mode))
-              ((integerp arg) (if (> arg 0) t nil))
-              (t)))
-  (cond
-   (workgroups-mode
-    (if (boundp 'desktop-restore-frames)
-        (setq desktop-restore-frames nil))
-    (wg-reset-internal)                              ; creates a new `wg-current-session'
-    (wg-add-workgroups-mode-minor-mode-entries)
-    (wg-enable-all-advice)
-    (wg-add-or-remove-workgroups-hooks nil)
-    (wg-change-modeline)
-
-    ;; some sr-speedbar hooks can harm
-    (when (featurep 'sr-speedbar)
-      (ad-disable-advice 'delete-other-windows 'around 'sr-speedbar-delete-other-window-advice)
-      (ad-disable-advice 'delete-window 'before 'sr-speedbar-delete-window-advice))
-
-    ;; Load session
-    (when (and wg-session-load-on-start
-               (file-exists-p wg-session-file))
-      (condition-case err
-          (wg-open-session wg-session-file)
-        (error (message "Error finding `wg-session-file': %s" err))))
-    (run-hooks 'workgroups-mode-hook))
-   (t
-    (wg-save-session-on-workgroups-mode-exit)
-    (wg-disable-all-advice)
-    (wg-add-or-remove-workgroups-hooks t)
-    (wg-remove-mode-line-display)
-    (run-hooks 'workgroups-mode-exit-hook)))
-  (wg-fontified-message
-    (:cmd "Workgroups Mode: ") (:msg (if workgroups-mode "on" "off")))
-  (wg-create-first-wg)
-  workgroups-mode)
-
-;;;###autoload
-(defun wg-help ()
-  "Just call `apropos-command' on \"^wg-\".
-There used to be a bunch of help-buffer construction stuff here,
-including a `wg-help' variable that basically duplicated every
-command's docstring;  But why, when there's `apropos-command'?"
-  (interactive)
-  (apropos-command "^wg-"))
-
-;; Remove after some time
-(defalias 'wg-switch-to-buffer 'switch-to-buffer)
-
-(provide 'workgroups2)
-;;; workgroups2.el ends here
diff --git a/elpa/x86-lookup-20180528.1635/x86-lookup-autoloads.el b/elpa/x86-lookup-20180528.1635/x86-lookup-autoloads.el
deleted file mode 100644
index 0e2d731..0000000
--- a/elpa/x86-lookup-20180528.1635/x86-lookup-autoloads.el
+++ /dev/null
@@ -1,28 +0,0 @@
-;;; x86-lookup-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "x86-lookup" "x86-lookup.el" (0 0 0 0))
-;;; Generated autoloads from x86-lookup.el
-
-(autoload 'x86-lookup "x86-lookup" "\
-Jump to the PDF documentation for MNEMONIC.
-Defaults to the mnemonic under point.
-
-\(fn MNEMONIC)" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "x86-lookup" '("x86-lookup-")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; x86-lookup-autoloads.el ends here
diff --git a/elpa/x86-lookup-20180528.1635/x86-lookup-pkg.el b/elpa/x86-lookup-20180528.1635/x86-lookup-pkg.el
deleted file mode 100644
index 20236da..0000000
--- a/elpa/x86-lookup-20180528.1635/x86-lookup-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "x86-lookup" "20180528.1635" "jump to x86 instruction documentation" '((emacs "24.3") (cl-lib "0.3")) :commit "609b2ba70dc5a246ac9b4b5f89eb5ef4331519bf" :authors '(("Christopher Wellons" . "wellons@nullprogram.com")) :maintainer '("Christopher Wellons" . "wellons@nullprogram.com") :url "https://github.com/skeeto/x86-lookup")
diff --git a/elpa/x86-lookup-20180528.1635/x86-lookup.el b/elpa/x86-lookup-20180528.1635/x86-lookup.el
deleted file mode 100644
index de6497b..0000000
--- a/elpa/x86-lookup-20180528.1635/x86-lookup.el
+++ /dev/null
@@ -1,311 +0,0 @@
-;;; x86-lookup.el --- jump to x86 instruction documentation -*- lexical-binding: t; -*-
-
-;; This is free and unencumbered software released into the public domain.
-
-;; Author: Christopher Wellons <wellons@nullprogram.com>
-;; URL: https://github.com/skeeto/x86-lookup
-;; Package-Version: 20180528.1635
-;; Version: 1.2.0
-;; Package-Requires: ((emacs "24.3") (cl-lib "0.3"))
-
-;;; Commentary:
-
-;; Requires the following:
-;; * pdftotext command line program from Poppler
-;; * Intel 64 and IA-32 Architecture Software Developer Manual PDF
-
-;; http://www.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html
-
-;; Building the index specifically requires Poppler's pdftotext, not
-;; just any PDF to text converter. It has a critical feature over the
-;; others: conventional line feed characters (U+000C) are output
-;; between pages, allowing precise tracking of page numbers. These are
-;; the markers Emacs uses for `forward-page' and `backward-page'.
-
-;; Your copy of the manual must contain the full instruction set
-;; reference in a single PDF. Set `x86-lookup-pdf' to this file name.
-;; Intel optionally offers the instruction set reference in two
-;; separate volumes, but don't use that.
-
-;; Choose a PDF viewer by setting `x86-lookup-browse-pdf-function'. If
-;; you provide a custom function, your PDF viewer should support
-;; linking to a specific page (e.g. not supported by xdg-open,
-;; unfortunately). Otherwise there's no reason to use this package.
-
-;; Once configured, the main entrypoint is `x86-lookup'. You may want
-;; to bind this to a key. The interactive prompt will default to the
-;; mnemonic under the point. Here's a suggestion:
-
-;;   (global-set-key (kbd "C-h x") #'x86-lookup)
-
-;; This package pairs well with `nasm-mode'!
-
-;;; Code
-
-(require 'cl-lib)
-(require 'doc-view)
-
-(defgroup x86-lookup ()
-  "Options for x86 instruction set lookup."
-  :group 'extensions)
-
-(defcustom x86-lookup-pdf nil
-  "Path to Intel's manual containing the instruction set reference."
-  :group 'x86-lookup
-  :type '(choice (const nil)
-                 (file :must-match t)))
-
-(defcustom x86-lookup-pdftotext-program "pdftotext"
-  "Path to pdftotext, part of Popper."
-  :group 'x86-lookup
-  :type 'string)
-
-(defcustom x86-lookup-browse-pdf-function #'x86-lookup-browse-pdf-any
-  "A function that launches a PDF viewer at a specific page.
-This function accepts two arguments: filename and page number."
-  :group 'x86-lookup
-  :type '(choice (function-item :tag "First suitable PDF reader" :value
-                                x86-lookup-browse-pdf-any)
-                 (function-item :tag "Evince" :value
-                                x86-lookup-browse-pdf-evince)
-                 (function-item :tag "Xpdf" :value
-                                x86-lookup-browse-pdf-xpdf)
-                 (function-item :tag "Okular" :value
-                                x86-lookup-browse-pdf-okular)
-                 (function-item :tag "gv" :value
-                                x86-lookup-browse-pdf-gv)
-                 (function-item :tag "zathura" :value
-                                x86-lookup-browse-pdf-zathura)
-                 (function-item :tag "MuPDF" :value
-                                x86-lookup-browse-pdf-mupdf)
-                 (function-item :tag "Sumatra PDF" :value
-                                x86-lookup-browse-pdf-sumatrapdf)
-                 (function-item :tag "browse-url"
-                                :value x86-lookup-browse-pdf-browser)
-                 (function :tag "Your own function")))
-
-(defcustom x86-lookup-cache-directory
-  (let ((base (or (getenv "XDG_CACHE_HOME")
-                  (getenv "LocalAppData")
-                  "~/.cache")))
-    (expand-file-name "x86-lookup" base))
-  "Directory where the PDF mnemonic index with be cached."
-  :type 'string)
-
-(defvar x86-lookup-index nil
-  "Alist mapping instructions to page numbers.")
-
-(defvar x86-lookup--expansions
-  '(("^PREFETCH\\(h\\)$"
-     "" "nta" "t0" "t1" "t2")
-    ("^J\\(cc\\)$"
-     "a" "ae" "b" "be" "c" "cxz" "e" "ecxz" "g" "ge" "l" "le" "na" "nae" "nb"
-     "nbe" "nc" "ne" "ng" "nge" "nl" "nle" "no" "np" "ns" "nz" "o" "p" "pe"
-     "po" "rcxz" "s" "z")
-    ("^SET\\(cc\\)$"
-     "a" "ae" "b" "be" "c" "e" "g" "ge" "l" "le" "na" "nae" "nb" "nbe" "nc"
-     "ne" "ng" "nge" "nl" "nle" "no" "np" "ns" "nz" "o" "p" "pe" "po" "s" "z")
-    ("^CMOV\\(cc\\)$"
-     "a" "ae" "b" "be" "c" "e" "g" "ge" "l" "le" "na" "nae" "nb" "nbe" "nc"
-     "ne" "ng" "nge" "nl" "nle" "no" "np" "ns" "nz" "o" "p" "pe" "po" "s" "z")
-    ("^FCMOV\\(cc\\)$"
-     "b" "e" "be" "u" "nb" "ne" "nbe" "nu")
-    ("^LOOP\\(cc\\)$"
-     "e" "ne")
-    ("^VBROADCAST\\(\\)$"
-     "" "ss" "sd" "f128")
-    ("^VMASKMOV\\(\\)$"
-     "" "ps" "pd")
-    ("^VPBROADCAST\\(\\)$"
-     "" "b" "w" "d" "q" "I128")
-    ("^VPMASKMOV\\(\\)$"
-     "" "d" "q")
-    ("\\(\\)" ; fallback "match"
-     ""))
-  "How to expand mnemonics into multiple mnemonics.")
-
-(defun x86-lookup--expand (names page)
-  "Expand string of PDF-sourced mnemonics into user-friendly mnemonics."
-  (let ((case-fold-search nil)
-        (rev-string-match-p (lambda (s re) (string-match re s))))
-    (save-match-data
-      (cl-loop for mnemonic-raw in (split-string names " */ *")
-               ;; Collapse "int 3" and "int n" into "int"
-               for mnemonic = (replace-regexp-in-string " .+$" "" mnemonic-raw)
-               for (_ . tails) = (cl-assoc mnemonic x86-lookup--expansions
-                                           :test rev-string-match-p)
-               nconc (cl-loop for tail in tails
-                              for rep = (replace-match tail nil nil mnemonic 1)
-                              collect (cons (downcase rep) page))))))
-
-(cl-defun x86-lookup-create-index (&optional (pdf x86-lookup-pdf))
-  "Create an index alist from PDF mapping mnemonics to page numbers.
-This function requires the pdftotext command line program."
-  (let ((mnemonic (concat "\\(?:.*\n\n?\\)?"
-                          "\\([[:alnum:]/[:blank:]]+\\)[[:blank:]]*"
-                          "\\(?:--\\|—\\)\\(?:.*\n\n?\\)\\{1,3\\}"
-                          "[[:blank:]]*Opcode"))
-        (coding-system-for-read 'utf-8)
-        (coding-system-for-write 'utf-8)
-        (case-fold-search t))
-    (with-temp-buffer
-      (call-process x86-lookup-pdftotext-program nil t nil
-                    (file-truename pdf) "-")
-      (setf (point) (point-min))
-      (cl-loop for page upfrom 1
-               while (< (point) (point-max))
-               when (looking-at mnemonic)
-               nconc (x86-lookup--expand (match-string 1) page) into index
-               do (forward-page)
-               finally (cl-return
-                        (cl-remove-duplicates
-                         index :key #'car :test #'string= :from-end t))))))
-
-(defun x86-lookup--index-file (pdf)
-  "Return index filename from PDF filename."
-  (concat (sha1 pdf) "_v3"))
-
-(defun x86-lookup--save-index (pdf index)
-  "Save INDEX for PDF in `x86-lookup-cache-directory'."
-  (let* ((index-file (x86-lookup--index-file pdf))
-         (cache-path (expand-file-name index-file x86-lookup-cache-directory)))
-    (mkdir x86-lookup-cache-directory t)
-    (with-temp-file cache-path
-      (prin1 index (current-buffer)))
-    index))
-
-(defun x86-lookup--load-index (pdf)
-  "Return index PDF from `x86-lookup-cache-directory'."
-  (let* ((index-file (x86-lookup--index-file pdf))
-         (cache-path (expand-file-name index-file x86-lookup-cache-directory)))
-    (when (file-exists-p cache-path)
-      (with-temp-buffer
-        (insert-file-contents cache-path)
-        (setf (point) (point-min))
-        (ignore-errors (read (current-buffer)))))))
-
-(defun x86-lookup-ensure-index ()
-  "Ensure the PDF index has been created, returning the index."
-  (when (null x86-lookup-index)
-    (cond
-     ((null x86-lookup-pdf)
-      (error "No PDF available. Set `x86-lookup-pdf'."))
-     ((not (file-exists-p x86-lookup-pdf))
-      (error "PDF not found. Check `x86-lookup-pdf'."))
-     ((setf x86-lookup-index (x86-lookup--load-index x86-lookup-pdf))
-      x86-lookup-index)
-     ((progn
-        (message "Generating mnemonic index ...")
-        (setf x86-lookup-index (x86-lookup-create-index))
-        (x86-lookup--save-index x86-lookup-pdf x86-lookup-index)))))
-  x86-lookup-index)
-
-(defun x86-lookup-ensure-and-update-index ()
-  "Ensure the PDF index has been created and (unconditionally) updated.
-Useful for forcibly syncing the index with the current PDF without resorting
-to manual deletion of index file on filesystem."
-  (interactive)
-  (cond
-   ((null x86-lookup-pdf)
-    (error "No PDF available. Set `x86-lookup-pdf'."))
-   ((not (file-exists-p x86-lookup-pdf))
-    (error "PDF not found. Check `x86-lookup-pdf'."))
-   ((message "Generating mnemonic index ...")
-    (setf x86-lookup-index (x86-lookup-create-index))
-    (x86-lookup--save-index x86-lookup-pdf x86-lookup-index)
-    (message "Finished generating mnemonic index."))))
-
-(defun x86-lookup-browse-pdf (pdf page)
-  "Launch a PDF viewer using `x86-lookup-browse-pdf-function'."
-  (funcall x86-lookup-browse-pdf-function pdf page))
-
-;;;###autoload
-(defun x86-lookup (mnemonic)
-  "Jump to the PDF documentation for MNEMONIC.
-Defaults to the mnemonic under point."
-  (interactive
-   (progn
-     (x86-lookup-ensure-index)
-     (let* ((mnemonics (mapcar #'car x86-lookup-index))
-            (thing (thing-at-point 'word))
-            (mnemonic (if (member thing mnemonics) thing nil))
-            (prompt (if mnemonic
-                        (format "Mnemonic (default %s): " mnemonic)
-                      "Mnemonic: ")))
-       (list
-        (completing-read prompt mnemonics nil t nil nil mnemonic)))))
-  (let ((page (cdr (assoc mnemonic x86-lookup-index))))
-    (x86-lookup-browse-pdf (file-truename x86-lookup-pdf) page)))
-
-;; PDF viewers:
-
-(defun x86-lookup-browse-pdf-pdf-tools (pdf page)
-  "View PDF at PAGE using Emacs' `pdf-view-mode' and `display-buffer'."
-  (require 'pdf-tools)
-  (prog1 t
-    (with-selected-window (display-buffer (find-file-noselect pdf :nowarn))
-      (with-no-warnings
-        (pdf-view-goto-page page)))))
-
-(defun x86-lookup-browse-pdf-doc-view (pdf page)
-  "View PDF at PAGE using Emacs' `doc-view-mode' and `display-buffer'."
-  (prog1 t
-    (unless (doc-view-mode-p 'pdf)
-      (error "doc-view not available for PDF"))
-    (with-selected-window (display-buffer (find-file-noselect pdf :nowarn))
-      (doc-view-goto-page page))))
-
-(defun x86-lookup-browse-pdf-xpdf (pdf page)
-  "View PDF at PAGE using xpdf."
-  (start-process "xpdf" nil "xpdf" "--" pdf (format "%d" page)))
-
-(defun x86-lookup-browse-pdf-evince (pdf page)
-  "View PDF at PAGE using Evince."
-  (start-process "evince" nil "evince" "-p" (format "%d" page) "--" pdf))
-
-(defun x86-lookup-browse-pdf-okular (pdf page)
-  "View PDF at PAGE file using Okular."
-  (start-process "okular" nil "okular" "-p" (format "%d" page) "--" pdf))
-
-(defun x86-lookup-browse-pdf-gv (pdf page)
-  "View PDF at PAGE using gv."
-  (start-process "gv" nil "gv" "-nocenter" (format "-page=%d" page) "--" pdf))
-
-(defun x86-lookup-browse-pdf-zathura (pdf page)
-  "View PDF at PAGE using zathura."
-  (start-process "zathura" nil "zathura" "-P" (format "%d" page) "--" pdf))
-
-(defun x86-lookup-browse-pdf-sumatrapdf (pdf page)
-  "View PDF at PAGE using Sumatra PDF."
-  (start-process "sumatrapdf" nil "sumatrapdf" "-page" (format "%d" page) pdf))
-
-(defun x86-lookup-browse-pdf-mupdf (pdf page)
-  "View PDF at PAGE using MuPDF."
-  ;; MuPDF doesn't have a consistent name across platforms.
-  ;; Furthermore, Debian ships with a broken "mupdf" wrapper shell
-  ;; script and must be avoided. Here we use `executable-find' to
-  ;; avoid calling it as mupdf-x11 on non-X11 platforms.
-  (let ((exe (or (executable-find "mupdf-x11") "mupdf")))
-    (start-process "mupdf" nil exe "--" pdf (format "%d" page))))
-
-(defun x86-lookup-browse-pdf-browser (pdf page)
-  "Visit PDF using `browse-url' with a fragment for the PAGE."
-  (browse-url (format "file://%s#%d" pdf page)))
-
-(defun x86-lookup-browse-pdf-any (pdf page)
-  "Try visiting PDF using the first viewer found."
-  (or (ignore-errors (x86-lookup-browse-pdf-pdf-tools pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-doc-view pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-evince pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-xpdf pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-okular pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-gv pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-zathura pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-mupdf pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-sumatrapdf pdf page))
-      (ignore-errors (x86-lookup-browse-pdf-browser pdf page))
-      (error "Could not find a PDF viewer.")))
-
-(provide 'x86-lookup)
-
-;;; x86-lookup.el ends here
diff --git a/elpa/x86-lookup-20180528.1635/x86-lookup.elc b/elpa/x86-lookup-20180528.1635/x86-lookup.elc
deleted file mode 100644
index dcaab0f..0000000
--- a/elpa/x86-lookup-20180528.1635/x86-lookup.elc
+++ /dev/null
Binary files differ
diff --git a/elpa/yasnippet-20181015.1212/yasnippet-autoloads.el b/elpa/yasnippet-20181015.1212/yasnippet-autoloads.el
deleted file mode 100644
index 2659fe8..0000000
--- a/elpa/yasnippet-20181015.1212/yasnippet-autoloads.el
+++ /dev/null
@@ -1,61 +0,0 @@
-;;; yasnippet-autoloads.el --- automatically extracted autoloads
-;;
-;;; Code:
-
-(add-to-list 'load-path (directory-file-name
-                         (or (file-name-directory #$) (car load-path))))
-
-
-;;;### (autoloads nil "yasnippet" "yasnippet.el" (0 0 0 0))
-;;; Generated autoloads from yasnippet.el
-
-(autoload 'yas-minor-mode "yasnippet" "\
-Toggle YASnippet mode.
-
-When YASnippet mode is enabled, `yas-expand', normally bound to
-the TAB key, expands snippets of code depending on the major
-mode.
-
-With no argument, this command toggles the mode.
-positive prefix argument turns on the mode.
-Negative prefix argument turns off the mode.
-
-Key bindings:
-\\{yas-minor-mode-map}
-
-\(fn &optional ARG)" t nil)
-
-(defvar yas-global-mode nil "\
-Non-nil if Yas-Global mode is enabled.
-See the `yas-global-mode' command
-for a description of this minor mode.
-Setting this variable directly does not take effect;
-either customize it (see the info node `Easy Customization')
-or call the function `yas-global-mode'.")
-
-(custom-autoload 'yas-global-mode "yasnippet" nil)
-
-(autoload 'yas-global-mode "yasnippet" "\
-Toggle Yas minor mode in all buffers.
-With prefix ARG, enable Yas-Global mode if ARG is positive;
-otherwise, disable it.  If called from Lisp, enable the mode if
-ARG is omitted or nil.
-
-Yas minor mode is enabled in all buffers where
-`yas-minor-mode-on' would do it.
-See `yas-minor-mode' for more information on Yas minor mode.
-
-\(fn &optional ARG)" t nil)
-(autoload 'snippet-mode "yasnippet" "A mode for editing yasnippets" t nil)
-
-(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "yasnippet" '("yas" "help-snippet-def" "snippet-mode-map")))
-
-;;;***
-
-;; Local Variables:
-;; version-control: never
-;; no-byte-compile: t
-;; no-update-autoloads: t
-;; coding: utf-8
-;; End:
-;;; yasnippet-autoloads.el ends here
diff --git a/elpa/yasnippet-20181015.1212/yasnippet-pkg.el b/elpa/yasnippet-20181015.1212/yasnippet-pkg.el
deleted file mode 100644
index 47a293b..0000000
--- a/elpa/yasnippet-20181015.1212/yasnippet-pkg.el
+++ /dev/null
@@ -1,2 +0,0 @@
-;;; -*- no-byte-compile: t -*-
-(define-package "yasnippet" "20181015.1212" "Yet another snippet extension for Emacs." '((cl-lib "0.5")) :commit "1d96da2e08664c31ff7f6f7441da1f4fa5680b1f" :keywords '("convenience" "emulation") :maintainer '("Noam Postavsky" . "npostavs@gmail.com") :url "http://github.com/joaotavora/yasnippet")
diff --git a/elpa/yasnippet-20181015.1212/yasnippet.el b/elpa/yasnippet-20181015.1212/yasnippet.el
deleted file mode 100644
index 58ff8fd..0000000
--- a/elpa/yasnippet-20181015.1212/yasnippet.el
+++ /dev/null
@@ -1,5160 +0,0 @@
-;;; yasnippet.el --- Yet another snippet extension for Emacs.
-
-;; Copyright (C) 2008-2018 Free Software Foundation, Inc.
-;; Authors: pluskid <pluskid@gmail.com>,
-;;          João Távora <joaotavora@gmail.com>,
-;;          Noam Postavsky <npostavs@gmail.com>
-;; Maintainer: Noam Postavsky <npostavs@gmail.com>
-;; Version: 0.13.0
-;; Package-Version: 20181015.1212
-;; X-URL: http://github.com/joaotavora/yasnippet
-;; Keywords: convenience, emulation
-;; URL: http://github.com/joaotavora/yasnippet
-;; Package-Requires: ((cl-lib "0.5"))
-;; EmacsWiki: YaSnippetMode
-
-;; This program is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-;;
-;;   Basic steps to setup:
-;;
-;;    (add-to-list 'load-path
-;;                 "~/path-to-yasnippet")
-;;    (require 'yasnippet)
-;;    (yas-global-mode 1)
-;;
-;;
-;;   Interesting variables are:
-;;
-;;       `yas-snippet-dirs'
-;;
-;;           The directory where user-created snippets are to be
-;;           stored.  Can also be a list of directories.  In that case,
-;;           when used for bulk (re)loading of snippets (at startup or
-;;           via `yas-reload-all'), directories appearing earlier in
-;;           the list override other dir's snippets.  Also, the first
-;;           directory is taken as the default for storing the user's
-;;           new snippets.
-;;
-;;           The deprecated `yas/root-directory' aliases this variable
-;;           for backward-compatibility.
-;;
-;;
-;;   Major commands are:
-;;
-;;       M-x yas-expand
-;;
-;;           Try to expand snippets before point.  In `yas-minor-mode',
-;;           this is normally bound to TAB, but you can customize it in
-;;           `yas-minor-mode-map'.
-;;
-;;       M-x yas-load-directory
-;;
-;;           Prompts you for a directory hierarchy of snippets to load.
-;;
-;;       M-x yas-activate-extra-mode
-;;
-;;           Prompts you for an extra mode to add snippets for in the
-;;           current buffer.
-;;
-;;       M-x yas-insert-snippet
-;;
-;;           Prompts you for possible snippet expansion if that is
-;;           possible according to buffer-local and snippet-local
-;;           expansion conditions.  With prefix argument, ignore these
-;;           conditions.
-;;
-;;       M-x yas-visit-snippet-file
-;;
-;;           Prompts you for possible snippet expansions like
-;;           `yas-insert-snippet', but instead of expanding it, takes
-;;           you directly to the snippet definition's file, if it
-;;           exists.
-;;
-;;       M-x yas-new-snippet
-;;
-;;           Lets you create a new snippet file in the correct
-;;           subdirectory of `yas-snippet-dirs', according to the
-;;           active major mode.
-;;
-;;       M-x yas-load-snippet-buffer
-;;
-;;           When editing a snippet, this loads the snippet.  This is
-;;           bound to "C-c C-c" while in the `snippet-mode' editing
-;;           mode.
-;;
-;;       M-x yas-tryout-snippet
-;;
-;;           When editing a snippet, this opens a new empty buffer,
-;;           sets it to the appropriate major mode and inserts the
-;;           snippet there, so you can see what it looks like.  This is
-;;           bound to "C-c C-t" while in `snippet-mode'.
-;;
-;;       M-x yas-describe-tables
-;;
-;;           Lists known snippets in a separate buffer.  User is
-;;           prompted as to whether only the currently active tables
-;;           are to be displayed, or all the tables for all major
-;;           modes.
-;;
-;;   If you have `dropdown-list' installed, you can optionally use it
-;;   as the preferred "prompting method", putting in your .emacs file,
-;;   for example:
-;;
-;;       (require 'dropdown-list)
-;;       (setq yas-prompt-functions '(yas-dropdown-prompt
-;;                                    yas-ido-prompt
-;;                                    yas-completing-prompt))
-;;
-;;   Also check out the customization group
-;;
-;;        M-x customize-group RET yasnippet RET
-;;
-;;   If you use the customization group to set variables
-;;   `yas-snippet-dirs' or `yas-global-mode', make sure the path to
-;;   "yasnippet.el" is present in the `load-path' *before* the
-;;   `custom-set-variables' is executed in your .emacs file.
-;;
-;;   For more information and detailed usage, refer to the project page:
-;;      http://github.com/joaotavora/yasnippet
-
-;;; Code:
-
-(require 'cl-lib)
-(require 'eldoc) ; Needed for 24.
-(declare-function cl-progv-after "cl-extra") ; Needed for 23.4.
-(require 'easymenu)
-(require 'help-mode)
-
-(defvar yas--editing-template)
-(defvar yas--guessed-modes)
-(defvar yas--indent-original-column)
-(defvar yas--scheduled-jit-loads)
-(defvar yas-keymap)
-(defvar yas-selected-text)
-(defvar yas-verbosity)
-(defvar yas--current-template)
-
-
-;;; User customizable variables
-
-(defgroup yasnippet nil
-  "Yet Another Snippet extension"
-  :prefix "yas-"
-  :group 'editing)
-
-(defconst yas--loaddir
-  (file-name-directory (or load-file-name buffer-file-name))
-  "Directory that yasnippet was loaded from.")
-
-(defconst yas-installed-snippets-dir (expand-file-name "snippets" yas--loaddir))
-(make-obsolete-variable 'yas-installed-snippets-dir "\
-Yasnippet no longer comes with installed snippets" "0.13")
-
-(defconst yas--default-user-snippets-dir
-  (expand-file-name "snippets" user-emacs-directory))
-
-(defcustom yas-snippet-dirs (list yas--default-user-snippets-dir)
-  "List of top-level snippet directories.
-
-Each element, a string or a symbol whose value is a string,
-designates a top-level directory where per-mode snippet
-directories can be found.
-
-Elements appearing earlier in the list override later elements'
-snippets.
-
-The first directory is taken as the default for storing snippet's
-created with `yas-new-snippet'. "
-  :type '(choice (directory :tag "Single directory")
-                 (repeat :tag "List of directories"
-                         (choice (directory) (variable))))
-  :set #'(lambda (symbol new)
-           (let ((old (and (boundp symbol)
-                           (symbol-value symbol))))
-             (set-default symbol new)
-             (unless (or (not (fboundp 'yas-reload-all))
-                         (equal old new))
-               (yas-reload-all)))))
-
-(defun yas-snippet-dirs ()
-  "Return variable `yas-snippet-dirs' as list of strings."
-  (cl-loop for e in (if (listp yas-snippet-dirs)
-                        yas-snippet-dirs
-                      (list yas-snippet-dirs))
-           collect
-           (cond ((stringp e) e)
-                 ((and (symbolp e)
-                       (boundp e)
-                       (stringp (symbol-value e)))
-                  (symbol-value e))
-                 (t
-                  (error "[yas] invalid element %s in `yas-snippet-dirs'" e)))))
-
-(defcustom yas-new-snippet-default "\
-# -*- mode: snippet -*-
-# name: $1
-# key: ${2:${1:$(yas--key-from-desc yas-text)}}
-# --
-$0`(yas-escape-text yas-selected-text)`"
-  "Default snippet to use when creating a new snippet.
-If nil, don't use any snippet."
-  :type 'string)
-
-(defcustom yas-prompt-functions '(yas-dropdown-prompt
-                                  yas-completing-prompt
-                                  yas-maybe-ido-prompt
-                                  yas-no-prompt)
-  "Functions to prompt for keys, templates, etc interactively.
-
-These functions are called with the following arguments:
-
-- PROMPT: A string to prompt the user
-
-- CHOICES: a list of strings or objects.
-
-- optional DISPLAY-FN : A function that, when applied to each of
-the objects in CHOICES will return a string.
-
-The return value of any function you put here should be one of
-the objects in CHOICES, properly formatted with DISPLAY-FN (if
-that is passed).
-
-- To signal that your particular style of prompting is
-unavailable at the moment, you can also have the function return
-nil.
-
-- To signal that the user quit the prompting process, you can
-signal `quit' with
-
-    (signal \\='quit \"user quit!\")"
-  :type '(repeat function))
-
-(defcustom yas-indent-line 'auto
-  "Controls indenting applied to a recent snippet expansion.
-
-The following values are possible:
-
-- `fixed' Indent the snippet to the current column;
-
-- `auto' Indent each line of the snippet with `indent-according-to-mode'
-
-Every other value means don't apply any snippet-side indentation
-after expansion (the manual per-line \"$>\" indentation still
-applies)."
-  :type '(choice (const :tag "Nothing"  nothing)
-                 (const :tag "Fixed"    fixed)
-                 (const :tag "Auto"     auto)))
-
-(defcustom yas-also-auto-indent-first-line nil
-  "Non-nil means also auto indent first line according to mode.
-
-Naturally this is only valid when `yas-indent-line' is `auto'."
-  :type 'boolean)
-
-(defcustom yas-also-indent-empty-lines nil
-  "Non-nil means also indent empty lines according to mode."
-  :type 'boolean)
-
-(defcustom yas-snippet-revival t
-  "Non-nil means re-activate snippet fields after undo/redo."
-  :type 'boolean)
-
-(defcustom yas-triggers-in-field nil
-  "If non-nil, allow stacked expansions (snippets inside snippets).
-
-Otherwise `yas-next-field-or-maybe-expand' just moves on to the
-next field"
-  :type 'boolean)
-
-(defcustom yas-fallback-behavior 'return-nil
-  "This option is obsolete.
-Now that the conditional keybinding `yas-maybe-expand' is
-available, there's no more need for it."
-  :type '(choice (const :tag "Call previous command"  call-other-command)
-                 (const :tag "Do nothing"             return-nil)))
-
-(make-obsolete-variable
- 'yas-fallback-behavior
- "For `call-other-command' behavior bind to the conditional
-command value `yas-maybe-expand', for `return-nil' behavior bind
-directly to `yas-expand'."
- "0.12")
-
-(defcustom yas-choose-keys-first nil
-  "If non-nil, prompt for snippet key first, then for template.
-
-Otherwise prompts for all possible snippet names.
-
-This affects `yas-insert-snippet' and `yas-visit-snippet-file'."
-  :type 'boolean)
-
-(defcustom yas-choose-tables-first nil
-  "If non-nil, and multiple eligible snippet tables, prompts user for tables first.
-
-Otherwise, user chooses between the merging together of all
-eligible tables.
-
-This affects `yas-insert-snippet', `yas-visit-snippet-file'"
-  :type 'boolean)
-
-(defcustom yas-use-menu 'abbreviate
-  "Display a YASnippet menu in the menu bar.
-
-When non-nil, submenus for each snippet table will be listed
-under the menu \"Yasnippet\".
-
-- If set to `abbreviate', only the current major-mode
-menu and the modes set in `yas--extra-modes' are listed.
-
-- If set to `full', every submenu is listed
-
-- If set to nil, hide the menu.
-
-Any other non-nil value, every submenu is listed."
-  :type '(choice (const :tag "Full"  full)
-                 (const :tag "Abbreviate" abbreviate)
-                 (const :tag "No menu" nil)))
-
-(defcustom yas-trigger-symbol (or (and (eq window-system 'mac)
-                                       (ignore-errors
-                                         (char-to-string ?\x21E5))) ;; little ->| sign
-                                  " =>")
-  "The text that will be used in menu to represent the trigger."
-  :type 'string)
-
-(defcustom yas-wrap-around-region nil
-  "What to insert for snippet's $0 field.
-
-If set to a character, insert contents of corresponding register.
-If non-nil insert region contents.  This can be overridden on a
-per-snippet basis.  A value of `cua' is considered equivalent to
-`?0' for backwards compatibility."
-  :type '(choice (character :tag "Insert from register")
-                 (const t :tag "Insert region contents")
-                 (const nil :tag "Don't insert anything")
-                 (const cua))) ; backwards compat
-
-(defcustom yas-good-grace t
-  "If non-nil, don't raise errors in elisp evaluation.
-
-This affects both the inline elisp in snippets and the hook
-variables such as `yas-after-exit-snippet-hook'.
-
-If this variable's value is `inline', an error string \"[yas]
-error\" is returned instead of raising the error.  If this
-variable's value is `hooks', a message is output to according to
-`yas-verbosity-level'.  If this variable's value is t, both are
-active."
-  :type 'boolean)
-
-(defcustom yas-visit-from-menu nil
-  "If non-nil visit snippets's files from menu, instead of expanding them.
-
-This can only work when snippets are loaded from files."
-  :type 'boolean)
-
-(defcustom yas-expand-only-for-last-commands nil
-  "List of `last-command' values to restrict tab-triggering to, or nil.
-
-Leave this set at nil (the default) to be able to trigger an
-expansion simply by placing the cursor after a valid tab trigger,
-using whichever commands.
-
-Optionally, set this to something like (self-insert-command) if
-you to wish restrict expansion to only happen when the last
-letter of the snippet tab trigger was typed immediately before
-the trigger key itself."
-  :type '(repeat function))
-
-(defcustom yas-alias-to-yas/prefix-p t
-  "If non-nil make aliases for the old style yas/ prefixed symbols.
-It must be set to nil before loading yasnippet to take effect."
-  :type 'boolean
-  :group 'yasnippet)
-
-;; Only two faces, and one of them shouldn't even be used...
-;;
-(defface yas-field-highlight-face
-  '((t (:inherit 'region)))
-  "The face used to highlight the currently active field of a snippet")
-
-(defface yas--field-debug-face
-  '()
-  "The face used for debugging some overlays normally hidden")
-
-
-;;; User-visible variables
-
-(defconst yas-maybe-skip-and-clear-field
-  '(menu-item "" yas-skip-and-clear-field
-              :filter yas--maybe-clear-field-filter)
-  "A conditional key definition.
-This can be used as a key definition in keymaps to bind a key to
-`yas-skip-and-clear-field' only when at the beginning of an
-unmodified snippet field.")
-
-(defconst yas-maybe-clear-field
-    '(menu-item "" yas-clear-field
-                :filter yas--maybe-clear-field-filter)
-    "A conditional key definition.
-This can be used as a key definition in keymaps to bind a key to
-`yas-clear-field' only when at the beginning of an
-unmodified snippet field.")
-
-(defvar yas-keymap  (let ((map (make-sparse-keymap)))
-                      (define-key map [(tab)]       'yas-next-field-or-maybe-expand)
-                      (define-key map (kbd "TAB")   'yas-next-field-or-maybe-expand)
-                      (define-key map [(shift tab)] 'yas-prev-field)
-                      (define-key map [backtab]     'yas-prev-field)
-                      (define-key map (kbd "C-g")   'yas-abort-snippet)
-                      (define-key map (kbd "C-d")   yas-maybe-skip-and-clear-field)
-                      (define-key map (kbd "DEL")   yas-maybe-clear-field)
-                      map)
-  "The active keymap while a snippet expansion is in progress.")
-
-(defvar yas-key-syntaxes (list #'yas-try-key-from-whitespace
-                               "w_.()" "w_." "w_" "w")
-  "Syntaxes and functions to help look for trigger keys before point.
-
-Each element in this list specifies how to skip buffer positions
-backwards and look for the start of a trigger key.
-
-Each element can be either a string or a function receiving the
-original point as an argument. A string element is simply passed
-to `skip-syntax-backward' whereas a function element is called
-with no arguments and should also place point before the original
-position.
-
-The string between the resulting buffer position and the original
-point is matched against the trigger keys in the active snippet
-tables.
-
-If no expandable snippets are found, the next element is the list
-is tried, unless a function element returned the symbol `again',
-in which case it is called again from the previous position and
-may once more reposition point.
-
-For example, if `yas-key-syntaxes' has the value (\"w\" \"w_\"),
-trigger keys composed exclusively of \"word\"-syntax characters
-are looked for first. Failing that, longer keys composed of
-\"word\" or \"symbol\" syntax are looked for. Therefore,
-triggering after
-
-foo-barbaz
-
-will, according to the \"w\" element first try \"barbaz\". If
-that isn't a trigger key, \"foo-barbaz\" is tried, respecting the
-second \"w_\" element. Notice that even if \"baz\" is a trigger
-key for an active snippet, it won't be expanded, unless a
-function is added to `yas-key-syntaxes' that eventually places
-point between \"bar\" and \"baz\".
-
-See also Info node `(elisp) Syntax Descriptors'.")
-
-(defvar yas-after-exit-snippet-hook
-  '()
-  "Hooks to run after a snippet exited.
-
-The hooks will be run in an environment where some variables bound to
-proper values:
-
-`yas-snippet-beg' : The beginning of the region of the snippet.
-
-`yas-snippet-end' : Similar to beg.
-
-Attention: These hooks are not run when exiting nested/stacked snippet expansion!")
-
-(defvar yas-before-expand-snippet-hook
-  '()
-  "Hooks to run just before expanding a snippet.")
-
-(defconst yas-not-string-or-comment-condition
-  '(if (and (let ((ppss (syntax-ppss)))
-              (or (nth 3 ppss) (nth 4 ppss)))
-            (memq this-command '(yas-expand yas-expand-from-trigger-key
-                                            yas-expand-from-keymap)))
-       '(require-snippet-condition . force-in-comment)
-     t)
-  "Disables snippet expansion in strings and comments.
-To use, set `yas-buffer-local-condition' to this value.")
-
-(defcustom yas-buffer-local-condition t
-  "Snippet expanding condition.
-
-This variable is a Lisp form which is evaluated every time a
-snippet expansion is attempted:
-
-    * If it evaluates to nil, no snippets can be expanded.
-
-    * If it evaluates to the a cons (require-snippet-condition
-      . REQUIREMENT)
-
-       * Snippets bearing no \"# condition:\" directive are not
-         considered
-
-       * Snippets bearing conditions that evaluate to nil (or
-         produce an error) won't be considered.
-
-       * If the snippet has a condition that evaluates to non-nil
-         RESULT:
-
-          * If REQUIREMENT is t, the snippet is considered
-
-          * If REQUIREMENT is `eq' RESULT, the snippet is
-            considered
-
-          * Otherwise, the snippet is not considered.
-
-    * If it evaluates to the symbol `always', all snippets are
-      considered for expansion, regardless of any conditions.
-
-    * If it evaluates to t or some other non-nil value
-
-       * Snippet bearing no conditions, or conditions that
-         evaluate to non-nil, are considered for expansion.
-
-       * Otherwise, the snippet is not considered.
-
-Here's an example preventing snippets from being expanded from
-inside comments, in `python-mode' only, with the exception of
-snippets returning the symbol `force-in-comment' in their
-conditions.
-
- (add-hook \\='python-mode-hook
-           (lambda ()
-              (setq yas-buffer-local-condition
-                    \\='(if (python-syntax-comment-or-string-p)
-                         \\='(require-snippet-condition . force-in-comment)
-                       t))))"
-  :type
-  `(choice
-    (const :tag "Disable snippet expansion inside strings and comments"
-           ,yas-not-string-or-comment-condition)
-    (const :tag "Expand all snippets regardless of conditions" always)
-    (const :tag "Expand snippets unless their condition is nil" t)
-    (const :tag "Disable all snippet expansion" nil)
-    sexp))
-
-(defcustom yas-overlay-priority 100
-  "Priority to use for yasnippets overlays.
-This is useful to control whether snippet navigation bindings
-override bindings from other packages (e.g., `company-mode')."
-  :type 'integer)
-
-
-;;; Internal variables
-
-(defconst yas--version "0.13.0")
-
-(defvar yas--menu-table (make-hash-table)
-  "A hash table of MAJOR-MODE symbols to menu keymaps.")
-
-(defvar yas--escaped-characters
-  '(?\\ ?` ?\" ?' ?$ ?} ?{ ?\( ?\))
-  "List of characters which *might* need to be escaped.")
-
-(defconst yas--field-regexp
-  "${\\([0-9]+:\\)?\\([^}]*\\)}"
-  "A regexp to *almost* recognize a field.")
-
-(defconst yas--multi-dollar-lisp-expression-regexp
-  "$+[ \t\n]*\\(([^)]*)\\)"
-  "A regexp to *almost* recognize a \"$(...)\" expression.")
-
-(defconst yas--backquote-lisp-expression-regexp
-  "`\\([^`]*\\)`"
-  "A regexp to recognize a \"\\=`lisp-expression\\=`\" expression." )
-
-(defconst yas--transform-mirror-regexp
-  "${\\(?:\\([0-9]+\\):\\)?$\\([ \t\n]*([^}]*\\)"
-  "A regexp to *almost* recognize a mirror with a transform.")
-
-(defconst yas--simple-mirror-regexp
-  "$\\([0-9]+\\)"
-  "A regexp to recognize a simple mirror.")
-
-(defvar yas--snippet-id-seed 0
-  "Contains the next id for a snippet.")
-
-(defvar yas--original-auto-fill-function nil
-  "The original value of `auto-fill-function'.")
-(make-variable-buffer-local 'yas--original-auto-fill-function)
-
-(defvar yas--watch-auto-fill-backtrace nil)
-
-(defun yas--watch-auto-fill (sym newval op _where)
-  (when (and (or (and (eq sym 'yas--original-auto-fill-function)
-                      (null newval)
-                      (eq auto-fill-function 'yas--auto-fill))
-                 (and (eq sym 'auto-fill-function)
-                      (eq newval 'yas--auto-fill)
-                      (null yas--original-auto-fill-function)))
-             (null yas--watch-auto-fill-backtrace)
-             (fboundp 'backtrace-frames) ; Suppress compiler warning.
-             ;; If we're about to change `auto-fill-function' too,
-             ;; it's okay (probably).
-             (not (and (eq op 'makunbound)
-                       (not (eq (default-value 'auto-fill-function) 'yas--auto-fill))
-                       (cl-member 'kill-all-local-variables
-                                  (backtrace-frames 'yas--watch-auto-fill)
-                                  :key (lambda (frame) (nth 1 frame))))))
-    (setq yas--watch-auto-fill-backtrace
-          (backtrace-frames 'yas--watch-auto-fill))))
-
-;; Try to get more info on #873/919 (this only works for Emacs 26+).
-(when (fboundp 'add-variable-watcher)
-  (add-variable-watcher 'yas--original-auto-fill-function
-                        #'yas--watch-auto-fill)
-  (add-variable-watcher 'auto-fill-function
-                        #'yas--watch-auto-fill))
-
-(defun yas--snippet-next-id ()
-  (let ((id yas--snippet-id-seed))
-    (cl-incf yas--snippet-id-seed)
-    id))
-
-
-;;; Minor mode stuff
-
-(defvar yas--minor-mode-menu nil
-  "Holds the YASnippet menu.")
-
-(defvar yas--condition-cache-timestamp nil)
-
-(defun yas-maybe-expand-abbrev-key-filter (cmd)
-  "Return CMD if there is an expandable snippet at point.
-This function is useful as a `:filter' to a conditional key
-definition."
-  (when (let ((yas--condition-cache-timestamp (current-time)))
-          (yas--templates-for-key-at-point))
-    cmd))
-
-(define-obsolete-function-alias 'yas--maybe-expand-key-filter
-  #'yas-maybe-expand-abbrev-key-filter "0.14")
-
-(defconst yas-maybe-expand
-  '(menu-item "" yas-expand :filter yas-maybe-expand-abbrev-key-filter)
-  "A conditional key definition.
-This can be used as a key definition in keymaps to bind a key to
-`yas-expand' only when there is a snippet available to be
-expanded.")
-
-(defvar yas-minor-mode-map
-  (let ((map (make-sparse-keymap)))
-    (define-key map [(tab)]     yas-maybe-expand)
-    (define-key map (kbd "TAB") yas-maybe-expand)
-    (define-key map "\C-c&\C-s" 'yas-insert-snippet)
-    (define-key map "\C-c&\C-n" 'yas-new-snippet)
-    (define-key map "\C-c&\C-v" 'yas-visit-snippet-file)
-    map)
-  "The keymap used when `yas-minor-mode' is active.")
-
-(easy-menu-define yas--minor-mode-menu
-      yas-minor-mode-map
-      "Menu used when `yas-minor-mode' is active."
-  '("YASnippet" :visible yas-use-menu
-    "----"
-    ["Expand trigger" yas-expand
-     :help "Possibly expand tab trigger before point"]
-    ["Insert at point..." yas-insert-snippet
-     :help "Prompt for an expandable snippet and expand it at point"]
-    ["New snippet..." yas-new-snippet
-     :help "Create a new snippet in an appropriate directory"]
-    ["Visit snippet file..." yas-visit-snippet-file
-     :help "Prompt for an expandable snippet and find its file"]
-    "----"
-    ("Snippet menu behaviour"
-     ["Visit snippets" (setq yas-visit-from-menu t)
-      :help "Visit snippets from the menu"
-      :active t :style radio   :selected yas-visit-from-menu]
-     ["Expand snippets" (setq yas-visit-from-menu nil)
-      :help "Expand snippets from the menu"
-      :active t :style radio :selected (not yas-visit-from-menu)]
-     "----"
-     ["Show all known modes" (setq yas-use-menu 'full)
-      :help "Show one snippet submenu for each loaded table"
-      :active t :style radio   :selected (eq yas-use-menu 'full)]
-     ["Abbreviate according to current mode" (setq yas-use-menu 'abbreviate)
-      :help "Show only snippet submenus for the current active modes"
-      :active t :style radio   :selected (eq yas-use-menu 'abbreviate)])
-    ("Indenting"
-     ["Auto" (setq yas-indent-line 'auto)
-      :help "Indent each line of the snippet with `indent-according-to-mode'"
-      :active t :style radio   :selected (eq yas-indent-line 'auto)]
-     ["Fixed" (setq yas-indent-line 'fixed)
-      :help "Indent the snippet to the current column"
-      :active t :style radio   :selected (eq yas-indent-line 'fixed)]
-     ["None" (setq yas-indent-line 'none)
-      :help "Don't apply any particular snippet indentation after expansion"
-      :active t :style radio   :selected (not (member yas-indent-line '(fixed auto)))]
-     "----"
-     ["Also auto indent first line" (setq yas-also-auto-indent-first-line
-                                          (not yas-also-auto-indent-first-line))
-      :help "When auto-indenting also, auto indent the first line menu"
-      :active (eq yas-indent-line 'auto)
-      :style toggle :selected yas-also-auto-indent-first-line]
-     )
-    ("Prompting method"
-     ["System X-widget" (setq yas-prompt-functions
-                              (cons #'yas-x-prompt
-                                    (remove #'yas-x-prompt
-                                            yas-prompt-functions)))
-      :help "Use your windowing system's (gtk, mac, windows, etc...) default menu"
-      :active t :style radio   :selected (eq (car yas-prompt-functions)
-                                             #'yas-x-prompt)]
-     ["Dropdown-list" (setq yas-prompt-functions
-                            (cons #'yas-dropdown-prompt
-                                  (remove #'yas-dropdown-prompt
-                                          yas-prompt-functions)))
-      :help "Use a special dropdown list"
-      :active t :style radio   :selected (eq (car yas-prompt-functions)
-                                             #'yas-dropdown-prompt)]
-     ["Ido" (setq yas-prompt-functions
-                  (cons #'yas-ido-prompt
-                        (remove #'yas-ido-prompt
-                                yas-prompt-functions)))
-      :help "Use an ido-style minibuffer prompt"
-      :active t :style radio   :selected (eq (car yas-prompt-functions)
-                                             #'yas-ido-prompt)]
-     ["Completing read" (setq yas-prompt-functions
-                              (cons #'yas-completing-prompt
-                                    (remove #'yas-completing-prompt
-                                            yas-prompt-functions)))
-      :help "Use a normal minibuffer prompt"
-      :active t :style radio   :selected (eq (car yas-prompt-functions)
-                                             #'yas-completing-prompt)]
-     )
-    ("Misc"
-     ["Wrap region in exit marker"
-      (setq yas-wrap-around-region
-            (not yas-wrap-around-region))
-      :help "If non-nil automatically wrap the selected text in the $0 snippet exit"
-      :style toggle :selected yas-wrap-around-region]
-     ["Allow stacked expansions "
-      (setq yas-triggers-in-field
-            (not yas-triggers-in-field))
-      :help "If non-nil allow snippets to be triggered inside other snippet fields"
-      :style toggle :selected yas-triggers-in-field]
-     ["Revive snippets on undo "
-      (setq yas-snippet-revival
-            (not yas-snippet-revival))
-      :help "If non-nil allow snippets to become active again after undo"
-      :style toggle :selected yas-snippet-revival]
-     ["Good grace "
-      (setq yas-good-grace
-            (not yas-good-grace))
-      :help "If non-nil don't raise errors in bad embedded elisp in snippets"
-      :style toggle :selected yas-good-grace]
-     )
-    "----"
-    ["Load snippets..."  yas-load-directory
-     :help "Load snippets from a specific directory"]
-    ["Reload everything" yas-reload-all
-     :help "Cleanup stuff, reload snippets, rebuild menus"]
-    ["About"            yas-about
-     :help "Display some information about YASnippet"]))
-
-(defvar yas--extra-modes nil
-  "An internal list of modes for which to also lookup snippets.
-
-This variable probably makes more sense as buffer-local, so
-ensure your use `make-local-variable' when you set it.")
-(define-obsolete-variable-alias 'yas-extra-modes 'yas--extra-modes "0.9.1")
-
-(defvar yas--tables (make-hash-table)
-  "A hash table of mode symbols to `yas--table' objects.")
-
-(defvar yas--parents (make-hash-table)
-  "A hash table of mode symbols do lists of direct parent mode symbols.
-
-This list is populated when reading the \".yas-parents\" files
-found when traversing snippet directories with
-`yas-load-directory'.
-
-There might be additional parenting information stored in the
-`derived-mode-parent' property of some mode symbols, but that is
-not recorded here.")
-
-(defvar yas--direct-keymaps (list)
-  "Keymap alist supporting direct snippet keybindings.
-
-This variable is placed in `emulation-mode-map-alists'.
-
-Its elements looks like (TABLE-NAME . KEYMAP).  They're
-instantiated on `yas-reload-all' but KEYMAP is added to only when
-loading snippets.  `yas--direct-TABLE-NAME' is then a variable
-set buffer-locally when entering `yas-minor-mode'.  KEYMAP binds
-all defined direct keybindings to `yas-maybe-expand-from-keymap'
-which decides on the snippet to expand.")
-
-(defun yas-direct-keymaps-reload ()
-  "Force reload the direct keybinding for active snippet tables."
-  (interactive)
-  (setq yas--direct-keymaps nil)
-  (maphash #'(lambda (name table)
-               (push (cons (intern (format "yas--direct-%s" name))
-                           (yas--table-direct-keymap table))
-                     yas--direct-keymaps))
-           yas--tables))
-
-(defun yas--modes-to-activate (&optional mode)
-  "Compute list of mode symbols that are active for `yas-expand' and friends."
-  (defvar yas--dfs)        ;We rely on dynbind.  We could use `letrec' instead!
-  (let* ((explored (if mode (list mode) ; Building up list in reverse.
-                     (cons major-mode (reverse yas--extra-modes))))
-         (yas--dfs
-          (lambda (mode)
-            (cl-loop for neighbour
-                     in (cl-list* (or (get mode 'derived-mode-parent)
-                                      ;; Consider `fundamental-mode'
-                                      ;; as ultimate ancestor.
-                                      'fundamental-mode)
-                                  ;; NOTE: `fboundp' check is redundant
-                                  ;; since Emacs 24.4.
-                                  (and (fboundp mode) (symbol-function mode))
-                                  (gethash mode yas--parents))
-                     when (and neighbour
-                               (not (memq neighbour explored))
-                               (symbolp neighbour))
-                     do (push neighbour explored)
-                     (funcall yas--dfs neighbour)))))
-    (mapc yas--dfs explored)
-    (nreverse explored)))
-
-(defvar yas-minor-mode-hook nil
-  "Hook run when `yas-minor-mode' is turned on.")
-
-(defun yas--auto-fill-wrapper ()
-  (when (and auto-fill-function
-             (not (eq auto-fill-function #'yas--auto-fill)))
-    (setq yas--original-auto-fill-function auto-fill-function)
-    (setq auto-fill-function #'yas--auto-fill)))
-
-;;;###autoload
-(define-minor-mode yas-minor-mode
-  "Toggle YASnippet mode.
-
-When YASnippet mode is enabled, `yas-expand', normally bound to
-the TAB key, expands snippets of code depending on the major
-mode.
-
-With no argument, this command toggles the mode.
-positive prefix argument turns on the mode.
-Negative prefix argument turns off the mode.
-
-Key bindings:
-\\{yas-minor-mode-map}"
-  :lighter " yas" ;; The indicator for the mode line.
-  (cond ((and yas-minor-mode (featurep 'yasnippet))
-         ;; Install the direct keymaps in `emulation-mode-map-alists'
-         ;; (we use `add-hook' even though it's not technically a hook,
-         ;; but it works). Then define variables named after modes to
-         ;; index `yas--direct-keymaps'.
-         ;;
-         ;; Also install the post-command-hook.
-         ;;
-         (cl-pushnew 'yas--direct-keymaps emulation-mode-map-alists)
-         (add-hook 'post-command-hook #'yas--post-command-handler nil t)
-         ;; Set the `yas--direct-%s' vars for direct keymap expansion
-         ;;
-         (dolist (mode (yas--modes-to-activate))
-           (let ((name (intern (format "yas--direct-%s" mode))))
-             (set-default name nil)
-             (set (make-local-variable name) t)))
-         ;; Perform JIT loads
-         (yas--load-pending-jits)
-         ;; Install auto-fill handler.
-         (yas--auto-fill-wrapper)       ; Now...
-         (add-hook 'auto-fill-mode-hook #'yas--auto-fill-wrapper)) ; or later.
-        (t
-         ;; Uninstall the direct keymaps, post-command hook, and
-         ;; auto-fill handler.
-         (remove-hook 'post-command-hook #'yas--post-command-handler t)
-         (remove-hook 'auto-fill-mode-hook #'yas--auto-fill-wrapper)
-         (when (local-variable-p 'yas--original-auto-fill-function)
-           (setq auto-fill-function yas--original-auto-fill-function))
-         (setq emulation-mode-map-alists
-               (remove 'yas--direct-keymaps emulation-mode-map-alists)))))
-
-(defun yas-activate-extra-mode (mode)
-  "Activates the snippets for the given `mode' in the buffer.
-
-The function can be called in the hook of a minor mode to
-activate snippets associated with that mode."
-  (interactive
-   (let (modes
-         symbol)
-     (maphash (lambda (k _)
-                (setq modes (cons (list k) modes)))
-              yas--parents)
-     (setq symbol (completing-read
-                   "Activate mode: " modes nil t))
-     (list
-      (when (not (string= "" symbol))
-        (intern symbol)))))
-  (when mode
-    (add-to-list (make-local-variable 'yas--extra-modes) mode)
-    (yas--load-pending-jits)))
-
-(defun yas-deactivate-extra-mode (mode)
-  "Deactivates the snippets for the given `mode' in the buffer."
-  (interactive
-   (list (intern
-          (completing-read
-           "Deactivate mode: " (mapcar #'list yas--extra-modes) nil t))))
-  (set (make-local-variable 'yas--extra-modes)
-       (remove mode
-               yas--extra-modes)))
-
-(define-obsolete-variable-alias 'yas-dont-activate
-  'yas-dont-activate-functions "0.9.2")
-(defvar yas-dont-activate-functions (list #'minibufferp)
-  "Special hook to control which buffers `yas-global-mode' affects.
-Functions are called with no argument, and should return non-nil to prevent
-`yas-global-mode' from enabling yasnippet in this buffer.
-
-In Emacsen < 24, this variable is buffer-local.  Because
-`yas-minor-mode-on' is called by `yas-global-mode' after
-executing the buffer's major mode hook, setting this variable
-there is an effective way to define exceptions to the \"global\"
-activation behaviour.
-
-In Emacsen >= 24, only the global value is used.  To define
-per-mode exceptions to the \"global\" activation behaviour, call
-`yas-minor-mode' with a negative argument directily in the major
-mode's hook.")
-(unless (> emacs-major-version 23)
-  (with-no-warnings
-    (make-variable-buffer-local 'yas-dont-activate)))
-
-
-(defun yas-minor-mode-on ()
-  "Turn on YASnippet minor mode.
-
-Honour `yas-dont-activate-functions', which see."
-  (interactive)
-  (unless (or
-           ;; The old behavior used for Emacs<24 was to set
-           ;; `yas-dont-activate-functions' to t buffer-locally.
-           (not (or (listp yas-dont-activate-functions)
-                    (functionp yas-dont-activate-functions)))
-           (run-hook-with-args-until-success 'yas-dont-activate-functions))
-    (yas-minor-mode 1)))
-
-;;;###autoload
-(define-globalized-minor-mode yas-global-mode yas-minor-mode yas-minor-mode-on)
-
-(defun yas--global-mode-reload-with-jit-maybe ()
-  "Run `yas-reload-all' when `yas-global-mode' is on."
-  (when yas-global-mode (yas-reload-all)))
-
-(add-hook 'yas-global-mode-hook #'yas--global-mode-reload-with-jit-maybe)
-
-
-;;; Major mode stuff
-
-(defvar yas--font-lock-keywords
-  (append '(("^#.*$" . font-lock-comment-face))
-          (with-temp-buffer
-            (let ((prog-mode-hook nil)
-                  (emacs-lisp-mode-hook nil))
-              (ignore-errors (emacs-lisp-mode)))
-            (font-lock-set-defaults)
-            (if (eq t (car-safe font-lock-keywords))
-                ;; They're "compiled", so extract the source.
-                (cadr font-lock-keywords)
-              font-lock-keywords))
-          '(("\\$\\([0-9]+\\)"
-             (0 font-lock-keyword-face)
-             (1 font-lock-string-face t))
-            ("\\${\\([0-9]+\\):?"
-             (0 font-lock-keyword-face)
-             (1 font-lock-warning-face t))
-            ("\\(\\$(\\)" 1 font-lock-preprocessor-face)
-            ("}"
-             (0 font-lock-keyword-face)))))
-
-(defvar snippet-mode-map
-  (let ((map (make-sparse-keymap)))
-    (easy-menu-define nil
-      map
-      "Menu used when snippet-mode is active."
-      (cons "Snippet"
-            (mapcar #'(lambda (ent)
-                        (when (nth 2 ent)
-                          (define-key map (nth 2 ent) (nth 1 ent)))
-                        (vector (nth 0 ent) (nth 1 ent) t))
-                    '(("Load this snippet" yas-load-snippet-buffer "\C-c\C-l")
-                      ("Load and quit window" yas-load-snippet-buffer-and-close "\C-c\C-c")
-                      ("Try out this snippet" yas-tryout-snippet "\C-c\C-t")))))
-    map)
-  "The keymap used when `snippet-mode' is active.")
-
-
-
-;;;###autoload(autoload 'snippet-mode "yasnippet" "A mode for editing yasnippets" t nil)
-(eval-and-compile
-  (if (fboundp 'prog-mode)
-      ;; `prog-mode' is new in 24.1.
-      (define-derived-mode snippet-mode prog-mode "Snippet"
-        "A mode for editing yasnippets"
-        (setq font-lock-defaults '(yas--font-lock-keywords))
-        (set (make-local-variable 'require-final-newline) nil)
-        (set (make-local-variable 'comment-start) "#")
-        (set (make-local-variable 'comment-start-skip) "#+[\t ]*")
-        (add-hook 'after-save-hook #'yas-maybe-load-snippet-buffer nil t))
-    (define-derived-mode snippet-mode fundamental-mode "Snippet"
-      "A mode for editing yasnippets"
-      (setq font-lock-defaults '(yas--font-lock-keywords))
-      (set (make-local-variable 'require-final-newline) nil)
-      (set (make-local-variable 'comment-start) "#")
-      (set (make-local-variable 'comment-start-skip) "#+[\t ]*")
-      (add-hook 'after-save-hook #'yas-maybe-load-snippet-buffer nil t))))
-
-(defun yas-snippet-mode-buffer-p ()
-  "Return non-nil if current buffer should be in `snippet-mode'.
-Meaning it's visiting a file under one of the mode directories in
-`yas-snippet-dirs'."
-  (when buffer-file-name
-    (cl-member buffer-file-name (yas-snippet-dirs)
-               :test #'file-in-directory-p)))
-
-;; We're abusing `magic-fallback-mode-alist' here because
-;; `auto-mode-alist' doesn't support function matchers.
-(add-to-list 'magic-fallback-mode-alist
-             `(yas-snippet-mode-buffer-p . snippet-mode))
-
-
-;;; Internal structs for template management
-
-(cl-defstruct (yas--template
-               (:constructor yas--make-template)
-               ;; Handles `yas-define-snippets' format, plus the
-               ;; initial TABLE argument.
-               (:constructor
-                yas--define-snippets-2
-                (table
-                 key content
-                 &optional xname condition group
-                 expand-env load-file xkeybinding xuuid save-file
-                 &aux
-                 (name (or xname
-                           ;; A little redundant: we always get a name
-                           ;; from `yas--parse-template' except when
-                           ;; there isn't a file.
-                           (and load-file (file-name-nondirectory load-file))
-                           (and save-file (file-name-nondirectory save-file))
-                           key))
-                 (keybinding (yas--read-keybinding xkeybinding))
-                 (uuid (or xuuid name))
-                 (old (gethash uuid (yas--table-uuidhash table)))
-                 (menu-binding-pair
-                  (and old (yas--template-menu-binding-pair old)))
-                 (perm-group
-                  (and old (yas--template-perm-group old))))))
-  "A template for a snippet."
-  key
-  content
-  name
-  condition
-  expand-env
-  load-file
-  save-file
-  keybinding
-  uuid
-  menu-binding-pair
-  group      ;; as dictated by the #group: directive or .yas-make-groups
-  perm-group ;; as dictated by `yas-define-menu'
-  table
-  )
-
-(cl-defstruct (yas--table (:constructor yas--make-snippet-table (name)))
-  "A table to store snippets for a particular mode.
-
-Has the following fields:
-
-`yas--table-name'
-
-  A symbol name normally corresponding to a major mode, but can
-  also be a pseudo major-mode to be used in
-  `yas-activate-extra-mode', for example.
-
-`yas--table-hash'
-
-  A hash table (KEY . NAMEHASH), known as the \"keyhash\". KEY is
-  a string or a vector, where the former is the snippet's trigger
-  and the latter means it's a direct keybinding. NAMEHASH is yet
-  another hash of (NAME . TEMPLATE) where NAME is the snippet's
-  name and TEMPLATE is a `yas--template' object.
-
-`yas--table-direct-keymap'
-
-  A keymap for the snippets in this table that have direct
-  keybindings. This is kept in sync with the keyhash, i.e., all
-  the elements of the keyhash that are vectors appear here as
-  bindings to `yas-maybe-expand-from-keymap'.
-
-`yas--table-uuidhash'
-
-  A hash table mapping snippets uuid's to the same `yas--template'
-  objects. A snippet uuid defaults to the snippet's name."
-  name
-  (hash (make-hash-table :test 'equal))
-  (uuidhash (make-hash-table :test 'equal))
-  (parents nil)
-  (direct-keymap (make-sparse-keymap)))
-
-(defun yas--get-template-by-uuid (mode uuid)
-  "Find the snippet template in MODE by its UUID."
-  (let* ((table (gethash mode yas--tables mode)))
-    (when table
-      (gethash uuid (yas--table-uuidhash table)))))
-
-;; Apropos storing/updating in TABLE, this works in two steps:
-;;
-;; 1. `yas--remove-template-by-uuid' removes any
-;;    keyhash-namehash-template mappings from TABLE, grabbing the
-;;    snippet by its uuid. Also removes mappings from TABLE's
-;;    `yas--table-direct-keymap' (FIXME: and should probably take care
-;;    of potentially stale menu bindings right?.)
-;;
-;; 2. `yas--add-template' adds this all over again.
-;;
-;;    Create a new or add to an existing keyhash-namehash mapping.
-;;
-;;  For reference on understanding this, consider three snippet
-;;  definitions:
-;;
-;;  A:   # name: The Foo
-;;       # key: foo
-;;       # binding: C-c M-l
-;;
-;;  B:   # name: Mrs Foo
-;;       # key: foo
-;;
-;;  C:   # name: The Bar
-;;       # binding: C-c M-l
-;;
-;;  D:   # name: Baz
-;;       # key: baz
-;;
-;;  keyhash       namehashes(3)      yas--template structs(4)
-;;  -----------------------------------------------------
-;;                                            __________
-;;                                           /          \
-;;  "foo"      --->  "The Foo" --->  [yas--template A]   |
-;;                   "Mrs Foo" --->  [yas--template B]   |
-;;                                                      |
-;;  [C-c M-l]  --->  "The Foo" -------------------------/
-;;                   "The Bar" --->  [yas--template C]
-;;
-;;  "baz"      --->  "Baz"     --->  [yas--template D]
-;;
-;; Additionally, since uuid defaults to the name, we have a
-;; `yas--table-uuidhash' for TABLE
-;;
-;; uuidhash       yas--template structs
-;; -------------------------------
-;; "The Foo" ---> [yas--template A]
-;; "Mrs Foo" ---> [yas--template B]
-;; "The Bar" ---> [yas--template C]
-;; "Baz"     ---> [yas--template D]
-;;
-;; FIXME: the more I look at this data-structure the more I think I'm
-;; stupid. There has to be an easier way (but beware lots of code
-;; depends on this).
-;;
-(defun yas--remove-template-by-uuid (table uuid)
-  "Remove from TABLE a template identified by UUID."
-  (let ((template (gethash uuid (yas--table-uuidhash table))))
-    (when template
-      (let* ((name                (yas--template-name template))
-             (empty-keys          nil))
-        ;; Remove the name from each of the targeted namehashes
-        ;;
-        (maphash #'(lambda (k v)
-                     (let ((template (gethash name v)))
-                       (when (and template
-                                  (equal uuid (yas--template-uuid template)))
-                         (remhash name v)
-                         (when (zerop (hash-table-count v))
-                           (push k empty-keys)))))
-                 (yas--table-hash table))
-        ;; Remove the namehash themselves if they've become empty
-        ;;
-        (dolist (key empty-keys)
-          (when (vectorp key)
-            (define-key (yas--table-direct-keymap table) key nil))
-          (remhash key (yas--table-hash table)))
-
-        ;; Finally, remove the uuid from the uuidhash
-        ;;
-        (remhash uuid (yas--table-uuidhash table))))))
-
-(defconst yas-maybe-expand-from-keymap
-  '(menu-item "" yas-expand-from-keymap
-              :filter yas--maybe-expand-from-keymap-filter))
-
-(defun yas--add-template (table template)
-  "Store in TABLE the snippet template TEMPLATE.
-
-KEY can be a string (trigger key) of a vector (direct
-keybinding)."
-  (let ((name (yas--template-name template))
-        (key (yas--template-key template))
-        (keybinding (yas--template-keybinding template))
-        (_menu-binding-pair (yas--template-menu-binding-pair-get-create template)))
-    (dolist (k (remove nil (list key keybinding)))
-      (puthash name
-               template
-               (or (gethash k
-                            (yas--table-hash table))
-                   (puthash k
-                            (make-hash-table :test 'equal)
-                            (yas--table-hash table))))
-      (when (vectorp k)
-        (define-key (yas--table-direct-keymap table) k yas-maybe-expand-from-keymap)))
-
-    ;; Update TABLE's `yas--table-uuidhash'
-    (puthash (yas--template-uuid template)
-             template
-             (yas--table-uuidhash table))))
-
-(defun yas--update-template (table template)
-  "Add or update TEMPLATE in TABLE.
-
-Also takes care of adding and updating to the associated menu.
-Return TEMPLATE."
-  ;; Remove from table by uuid
-  ;;
-  (yas--remove-template-by-uuid table (yas--template-uuid template))
-  ;; Add to table again
-  ;;
-  (yas--add-template table template)
-  ;; Take care of the menu
-  ;;
-  (yas--update-template-menu table template)
-  template)
-
-(defun yas--update-template-menu (table template)
-  "Update every menu-related for TEMPLATE."
-  (let ((menu-binding-pair (yas--template-menu-binding-pair-get-create template))
-        (key (yas--template-key template))
-        (keybinding (yas--template-keybinding template)))
-    ;; The snippet might have changed name or keys, so update
-    ;; user-visible strings
-    ;;
-    (unless (eq (cdr menu-binding-pair) :none)
-      ;; the menu item name
-      ;;
-      (setf (cl-cadar menu-binding-pair) (yas--template-name template))
-      ;; the :keys information (also visible to the user)
-      (setf (cl-getf (cdr (car menu-binding-pair)) :keys)
-            (or (and keybinding (key-description keybinding))
-                (and key (concat key yas-trigger-symbol))))))
-  (unless (yas--template-menu-managed-by-yas-define-menu template)
-    (let ((menu-keymap
-           (yas--menu-keymap-get-create (yas--table-mode table)
-                                        (mapcar #'yas--table-mode
-                                                (yas--table-parents table))))
-          (group (yas--template-group template)))
-      ;; Remove from menu keymap
-      ;;
-      (cl-assert menu-keymap)
-      (yas--delete-from-keymap menu-keymap (yas--template-uuid template))
-
-      ;; Add necessary subgroups as necessary.
-      ;;
-      (dolist (subgroup group)
-        (let ((subgroup-keymap (lookup-key menu-keymap (vector (make-symbol subgroup)))))
-          (unless (and subgroup-keymap
-                       (keymapp subgroup-keymap))
-            (setq subgroup-keymap (make-sparse-keymap))
-            (define-key menu-keymap (vector (make-symbol subgroup))
-              `(menu-item ,subgroup ,subgroup-keymap)))
-          (setq menu-keymap subgroup-keymap)))
-
-      ;; Add this entry to the keymap
-      ;;
-      (define-key menu-keymap
-        (vector (make-symbol (yas--template-uuid template)))
-        (car (yas--template-menu-binding-pair template))))))
-
-(defun yas--namehash-templates-alist (namehash)
-  "Return NAMEHASH as an alist."
-  (let (alist)
-    (maphash #'(lambda (k v)
-                 (push (cons k v) alist))
-             namehash)
-    alist))
-
-(defun yas--fetch (table key)
-  "Fetch templates in TABLE by KEY.
-
-Return a list of cons (NAME . TEMPLATE) where NAME is a
-string and TEMPLATE is a `yas--template' structure."
-  (let* ((keyhash (yas--table-hash table))
-         (namehash (and keyhash (gethash key keyhash))))
-    (when namehash
-      (yas--filter-templates-by-condition (yas--namehash-templates-alist namehash)))))
-
-
-;;; Filtering/condition logic
-
-(defun yas--eval-condition (condition)
-  (condition-case err
-      (save-excursion
-        (save-restriction
-          (save-match-data
-            (eval condition))))
-    (error (progn
-             (yas--message 1 "Error in condition evaluation: %s" (error-message-string err))
-             nil))))
-
-
-(defun yas--filter-templates-by-condition (templates)
-  "Filter the templates using the applicable condition.
-
-TEMPLATES is a list of cons (NAME . TEMPLATE) where NAME is a
-string and TEMPLATE is a `yas--template' structure.
-
-This function implements the rules described in
-`yas-buffer-local-condition'.  See that variables documentation."
-  (let ((requirement (yas--require-template-specific-condition-p)))
-    (if (eq requirement 'always)
-        templates
-      (cl-remove-if-not (lambda (pair)
-                          (yas--template-can-expand-p
-                           (yas--template-condition (cdr pair)) requirement))
-                        templates))))
-
-(defun yas--require-template-specific-condition-p ()
-  "Decide if this buffer requests/requires snippet-specific
-conditions to filter out potential expansions."
-  (if (eq 'always yas-buffer-local-condition)
-      'always
-    (let ((local-condition (or (and (consp yas-buffer-local-condition)
-                                    (yas--eval-condition yas-buffer-local-condition))
-                               yas-buffer-local-condition)))
-      (when local-condition
-        (if (eq local-condition t)
-            t
-          (and (consp local-condition)
-               (eq 'require-snippet-condition (car local-condition))
-               (symbolp (cdr local-condition))
-               (cdr local-condition)))))))
-
-(defun yas--template-can-expand-p (condition requirement)
-  "Evaluate CONDITION and REQUIREMENT and return a boolean."
-  (let* ((result (or (null condition)
-                     (yas--eval-condition condition))))
-    (cond ((eq requirement t)
-           result)
-          (t
-           (eq requirement result)))))
-
-(defun yas--table-templates (table)
-  (when table
-    (let ((acc (list)))
-      (maphash #'(lambda (_key namehash)
-                   (maphash #'(lambda (name template)
-                                (push (cons name template) acc))
-                            namehash))
-               (yas--table-hash table))
-      (yas--filter-templates-by-condition acc))))
-
-(defun yas--templates-for-key-at-point ()
-  "Find `yas--template' objects for any trigger keys preceding point.
-Returns (TEMPLATES START END). This function respects
-`yas-key-syntaxes', which see."
-  (save-excursion
-    (let ((original (point))
-          (methods yas-key-syntaxes)
-          (templates)
-          (method))
-      (while (and methods
-                  (not templates))
-        (unless (eq method (car methods))
-          ;; TRICKY: `eq'-ness test means we can only be here if
-          ;; `method' is a function that returned `again', and hence
-          ;; don't revert back to original position as per
-          ;; `yas-key-syntaxes'.
-          (goto-char original))
-        (setq method (car methods))
-        (cond ((stringp method)
-               (skip-syntax-backward method)
-               (setq methods (cdr methods)))
-              ((functionp method)
-               (unless (eq (funcall method original)
-                           'again)
-                 (setq methods (cdr methods))))
-              (t
-               (setq methods (cdr methods))
-               (yas--warning "Invalid element `%s' in `yas-key-syntaxes'" method)))
-        (let ((possible-key (buffer-substring-no-properties (point) original)))
-          (save-excursion
-            (goto-char original)
-            (setq templates
-                  (cl-mapcan (lambda (table)
-                               (yas--fetch table possible-key))
-                             (yas--get-snippet-tables))))))
-      (when templates
-        (list templates (point) original)))))
-
-(defun yas--table-all-keys (table)
-  "Get trigger keys of all active snippets in TABLE."
-  (let ((acc))
-    (maphash #'(lambda (key namehash)
-                 (when (yas--filter-templates-by-condition (yas--namehash-templates-alist namehash))
-                   (push key acc)))
-             (yas--table-hash table))
-    acc))
-
-(defun yas--table-mode (table)
-  (intern (yas--table-name table)))
-
-
-;;; Internal functions and macros:
-
-(defun yas--remove-misc-free-from-undo (old-undo-list)
-  "Tries to work around Emacs Bug#30931.
-Helper function for `yas--save-restriction-and-widen'."
-  ;; If Bug#30931 is unfixed, we get (#<Lisp_Misc_Free> . INTEGER)
-  ;; entries in the undo list.  If we call `type-of' on the
-  ;; Lisp_Misc_Free object then Emacs aborts, so try to find it by
-  ;; checking that its type is none of the expected ones.
-  (when (consp buffer-undo-list)
-    (let* ((prev buffer-undo-list)
-           (undo-list prev))
-      (while (and (consp undo-list)
-                  ;; Only check new entries.
-                  (not (eq undo-list old-undo-list)))
-        (let ((entry (pop undo-list)))
-          (when (consp entry)
-            (let ((head (car entry)))
-              (unless (or (stringp head)
-                          (markerp head)
-                          (integerp head)
-                          (symbolp head)
-                          (not (integerp (cdr entry))))
-                ;; (message "removing misc free %S" entry)
-                (setcdr prev undo-list)))))
-        (setq prev undo-list)))))
-
-(defmacro yas--save-restriction-and-widen (&rest body)
-  "Equivalent to (save-restriction (widen) BODY).
-Also tries to work around Emacs Bug#30931."
-  (declare (debug (body)) (indent 0))
-  ;; Disable garbage collection, since it could cause an abort.
-  `(let ((gc-cons-threshold most-positive-fixnum)
-         (old-undo-list buffer-undo-list))
-     (prog1 (save-restriction
-              (widen)
-              ,@body)
-       (yas--remove-misc-free-from-undo old-undo-list))))
-
-(defun yas--eval-for-string (form)
-  "Evaluate FORM and convert the result to string."
-  (let ((debug-on-error (and (not (memq yas-good-grace '(t inline)))
-                             debug-on-error)))
-    (condition-case oops
-        (save-excursion
-          (yas--save-restriction-and-widen
-            (save-match-data
-              (let ((result (eval form)))
-                (when result
-                  (format "%s" result))))))
-      ((debug error) (cdr oops)))))
-
-(defun yas--eval-for-effect (form)
-  (yas--safely-call-fun (apply-partially #'eval form)))
-
-(defun yas--read-lisp (string &optional nil-on-error)
-  "Read STRING as a elisp expression and return it.
-
-In case STRING in an invalid expression and NIL-ON-ERROR is nil,
-return an expression that when evaluated will issue an error."
-  (condition-case err
-      (read string)
-    (error (and (not nil-on-error)
-                `(error (error-message-string ,err))))))
-
-(defun yas--read-keybinding (keybinding)
-  "Read KEYBINDING as a snippet keybinding, return a vector."
-  (when (and keybinding
-             (not (string-match "keybinding" keybinding)))
-    (condition-case err
-        (let ((res (or (and (string-match "^\\[.*\\]$" keybinding)
-                            (read keybinding))
-                       (read-kbd-macro keybinding 'need-vector))))
-          res)
-      (error
-       (yas--message 2 "warning: keybinding \"%s\" invalid since %s."
-                keybinding (error-message-string err))
-       nil))))
-
-(defun yas--table-get-create (mode)
-  "Get or create the snippet table corresponding to MODE."
-  (let ((table (gethash mode
-                        yas--tables)))
-    (unless table
-      (setq table (yas--make-snippet-table (symbol-name mode)))
-      (puthash mode table yas--tables)
-      (push (cons (intern (format "yas--direct-%s" mode))
-                  (yas--table-direct-keymap table))
-            yas--direct-keymaps))
-    table))
-
-(defun yas--get-snippet-tables (&optional mode)
-  "Get snippet tables for MODE.
-
-MODE defaults to the current buffer's `major-mode'.
-
-Return a list of `yas--table' objects.  The list of modes to
-consider is returned by `yas--modes-to-activate'"
-  (remove nil
-          (mapcar #'(lambda (name)
-                      (gethash name yas--tables))
-                  (yas--modes-to-activate mode))))
-
-(defun yas--menu-keymap-get-create (mode &optional parents)
-  "Get or create the menu keymap for MODE and its PARENTS.
-
-This may very well create a plethora of menu keymaps and arrange
-them all in `yas--menu-table'"
-  (let* ((menu-keymap (or (gethash mode yas--menu-table)
-                          (puthash mode (make-sparse-keymap) yas--menu-table))))
-    (mapc #'yas--menu-keymap-get-create parents)
-    (define-key yas--minor-mode-menu (vector mode)
-        `(menu-item ,(symbol-name mode) ,menu-keymap
-                    :visible (yas--show-menu-p ',mode)))
-    menu-keymap))
-
-
-;;; Template-related and snippet loading functions
-
-(defun yas--parse-template (&optional file)
-  "Parse the template in the current buffer.
-
-Optional FILE is the absolute file name of the file being
-parsed.
-
-Optional GROUP is the group where the template is to go,
-otherwise we attempt to calculate it from FILE.
-
-Return a snippet-definition, i.e. a list
-
- (KEY TEMPLATE NAME CONDITION GROUP VARS LOAD-FILE KEYBINDING UUID)
-
-If the buffer contains a line of \"# --\" then the contents above
-this line are ignored. Directives can set most of these with the syntax:
-
-# directive-name : directive-value
-
-Here's a list of currently recognized directives:
-
- * type
- * name
- * contributor
- * condition
- * group
- * key
- * expand-env
- * binding
- * uuid"
-  (goto-char (point-min))
-  (let* ((type 'snippet)
-         (name (and file
-                    (file-name-nondirectory file)))
-         (key nil)
-         template
-         bound
-         condition
-         (group (and file
-                     (yas--calculate-group file)))
-         expand-env
-         binding
-         uuid)
-    (if (re-search-forward "^# --\\s-*\n" nil t)
-        (progn (setq template
-                     (buffer-substring-no-properties (point)
-                                                     (point-max)))
-               (setq bound (point))
-               (goto-char (point-min))
-               (while (re-search-forward "^# *\\([^ ]+?\\) *: *\\(.*?\\)[[:space:]]*$" bound t)
-                 (when (string= "uuid" (match-string-no-properties 1))
-                   (setq uuid (match-string-no-properties 2)))
-                 (when (string= "type" (match-string-no-properties 1))
-                   (setq type (if (string= "command" (match-string-no-properties 2))
-                                  'command
-                                'snippet)))
-                 (when (string= "key" (match-string-no-properties 1))
-                   (setq key (match-string-no-properties 2)))
-                 (when (string= "name" (match-string-no-properties 1))
-                   (setq name (match-string-no-properties 2)))
-                 (when (string= "condition" (match-string-no-properties 1))
-                   (setq condition (yas--read-lisp (match-string-no-properties 2))))
-                 (when (string= "group" (match-string-no-properties 1))
-                   (setq group (match-string-no-properties 2)))
-                 (when (string= "expand-env" (match-string-no-properties 1))
-                   (setq expand-env (yas--read-lisp (match-string-no-properties 2)
-                                                   'nil-on-error)))
-                 (when (string= "binding" (match-string-no-properties 1))
-                   (setq binding (match-string-no-properties 2)))))
-      (setq template
-            (buffer-substring-no-properties (point-min) (point-max))))
-    (unless (or key binding)
-      (setq key (and file (file-name-nondirectory file))))
-    (when (eq type 'command)
-      (setq template (yas--read-lisp (concat "(progn" template ")"))))
-    (when group
-      (setq group (split-string group "\\.")))
-    (list key template name condition group expand-env file binding uuid)))
-
-(defun yas--calculate-group (file)
-  "Calculate the group for snippet file path FILE."
-  (let* ((dominating-dir (locate-dominating-file file
-                                                 ".yas-make-groups"))
-         (extra-path (and dominating-dir
-                          (file-relative-name file dominating-dir)))
-         (extra-dir (and extra-path
-                         (file-name-directory extra-path)))
-         (group (and extra-dir
-                     (replace-regexp-in-string "/"
-                                               "."
-                                               (directory-file-name extra-dir)))))
-    group))
-
-(defun yas--subdirs (directory &optional filep)
-  "Return subdirs or files of DIRECTORY according to FILEP."
-  (cl-remove-if (lambda (file)
-                  (or (string-match "\\`\\."
-                                    (file-name-nondirectory file))
-                      (string-match "\\`#.*#\\'"
-                                    (file-name-nondirectory file))
-                      (string-match "~\\'"
-                                    (file-name-nondirectory file))
-                      (if filep
-                          (file-directory-p file)
-                        (not (file-directory-p file)))))
-                (directory-files directory t)))
-
-(defun yas--make-menu-binding (template)
-  (let ((mode (yas--table-mode (yas--template-table template))))
-    `(lambda () (interactive) (yas--expand-or-visit-from-menu ',mode ,(yas--template-uuid template)))))
-
-(defun yas--expand-or-visit-from-menu (mode uuid)
-  (let* ((table (yas--table-get-create mode))
-         (yas--current-template (and table
-                                    (gethash uuid (yas--table-uuidhash table)))))
-    (when yas--current-template
-      (if yas-visit-from-menu
-          (yas--visit-snippet-file-1 yas--current-template)
-        (let ((where (if (region-active-p)
-                         (cons (region-beginning) (region-end))
-                       (cons (point) (point)))))
-          (yas-expand-snippet (yas--template-content yas--current-template)
-                              (car where)
-                              (cdr where)
-                              (yas--template-expand-env yas--current-template)))))))
-
-(defun yas--key-from-desc (text)
-  "Return a yasnippet key from a description string TEXT."
-  (replace-regexp-in-string "\\(\\w+\\).*" "\\1" text))
-
-
-;;; Popping up for keys and templates
-
-(defun yas--prompt-for-template (templates &optional prompt)
-  "Interactively choose a template from the list TEMPLATES.
-
-TEMPLATES is a list of `yas--template'.
-
-Optional PROMPT sets the prompt to use."
-  (when templates
-    (setq templates
-          (sort templates #'(lambda (t1 t2)
-                              (< (length (yas--template-name t1))
-                                 (length (yas--template-name t2))))))
-    (cl-some (lambda (fn)
-               (funcall fn (or prompt "Choose a snippet: ")
-                        templates
-                        #'yas--template-name))
-             yas-prompt-functions)))
-
-(defun yas--prompt-for-keys (keys &optional prompt)
-  "Interactively choose a template key from the list KEYS.
-
-Optional PROMPT sets the prompt to use."
-  (when keys
-    (cl-some (lambda (fn)
-               (funcall fn (or prompt "Choose a snippet key: ") keys))
-             yas-prompt-functions)))
-
-(defun yas--prompt-for-table (tables &optional prompt)
-  "Interactively choose a table from the list TABLES.
-
-Optional PROMPT sets the prompt to use."
-  (when tables
-    (cl-some (lambda (fn)
-               (funcall fn (or prompt "Choose a snippet table: ")
-                        tables
-                        #'yas--table-name))
-             yas-prompt-functions)))
-
-(defun yas-x-prompt (prompt choices &optional display-fn)
-  "Display choices in a x-window prompt."
-  (when (and window-system choices)
-    ;; Let window position be recalculated to ensure that
-    ;; `posn-at-point' returns non-nil.
-    (redisplay)
-    (or
-     (x-popup-menu
-      (if (fboundp 'posn-at-point)
-          (let ((x-y (posn-x-y (posn-at-point (point)))))
-            (list (list (+ (car x-y) 10)
-                        (+ (cdr x-y) 20))
-                  (selected-window)))
-        t)
-      `(,prompt ("title"
-                 ,@(cl-mapcar (lambda (c d) `(,(concat "   " d) . ,c))
-                              choices
-                              (if display-fn (mapcar display-fn choices)
-                                choices)))))
-     (keyboard-quit))))
-
-(defun yas-maybe-ido-prompt (prompt choices &optional display-fn)
-  (when (bound-and-true-p ido-mode)
-    (yas-ido-prompt prompt choices display-fn)))
-
-(defun yas-ido-prompt (prompt choices &optional display-fn)
-  (require 'ido)
-  (yas-completing-prompt prompt choices display-fn #'ido-completing-read))
-
-(defun yas-dropdown-prompt (_prompt choices &optional display-fn)
-  (when (fboundp 'dropdown-list)
-    (let* ((formatted-choices
-            (if display-fn (mapcar display-fn choices) choices))
-           (n (dropdown-list formatted-choices)))
-      (if n (nth n choices)
-        (keyboard-quit)))))
-
-(defun yas-completing-prompt (prompt choices &optional display-fn completion-fn)
-  (let* ((formatted-choices
-          (if display-fn (mapcar display-fn choices) choices))
-         (chosen (funcall (or completion-fn #'completing-read)
-                          prompt formatted-choices
-                          nil 'require-match nil nil)))
-    (if (eq choices formatted-choices)
-        chosen
-      (nth (or (cl-position chosen formatted-choices :test #'string=) 0)
-           choices))))
-
-(defun yas-no-prompt (_prompt choices &optional _display-fn)
-  (cl-first choices))
-
-
-;;; Defining snippets
-;; This consists of creating and registering `yas--template' objects in the
-;; correct tables.
-;;
-
-(defvar yas--creating-compiled-snippets nil)
-
-(defun yas--define-snippets-1 (snippet snippet-table)
-  "Helper for `yas-define-snippets'."
-  ;; Update the appropriate table.  Also takes care of adding the
-  ;; key indicators in the templates menu entry, if any.
-  (yas--update-template
-   snippet-table (apply #'yas--define-snippets-2 snippet-table snippet)))
-
-(defun yas-define-snippets (mode snippets)
-  "Define SNIPPETS for MODE.
-
-SNIPPETS is a list of snippet definitions, each taking the
-following form
-
- (KEY TEMPLATE NAME CONDITION GROUP EXPAND-ENV LOAD-FILE KEYBINDING UUID SAVE-FILE)
-
-Within these, only KEY and TEMPLATE are actually mandatory.
-
-TEMPLATE might be a Lisp form or a string, depending on whether
-this is a snippet or a snippet-command.
-
-CONDITION, EXPAND-ENV and KEYBINDING are Lisp forms, they have
-been `yas--read-lisp'-ed and will eventually be
-`yas--eval-for-string'-ed.
-
-The remaining elements are strings.
-
-FILE is probably of very little use if you're programatically
-defining snippets.
-
-UUID is the snippet's \"unique-id\". Loading a second snippet
-file with the same uuid would replace the previous snippet.
-
-You can use `yas--parse-template' to return such lists based on
-the current buffers contents."
-  (if yas--creating-compiled-snippets
-      (let ((print-length nil))
-        (insert ";;; Snippet definitions:\n;;;\n")
-        (dolist (snippet snippets)
-          ;; Fill in missing elements with nil.
-          (setq snippet (append snippet (make-list (- 10 (length snippet)) nil)))
-          ;; Move LOAD-FILE to SAVE-FILE because we will load from the
-          ;; compiled file, not LOAD-FILE.
-          (let ((load-file (nth 6 snippet)))
-            (setcar (nthcdr 6 snippet) nil)
-            (setcar (nthcdr 9 snippet) load-file)))
-        (insert (pp-to-string
-                 `(yas-define-snippets ',mode ',snippets)))
-        (insert "\n\n"))
-    ;; Normal case.
-    (let ((snippet-table (yas--table-get-create mode))
-          (template nil))
-      (dolist (snippet snippets)
-        (setq template (yas--define-snippets-1 snippet
-                                               snippet-table)))
-      template)))
-
-
-;;; Loading snippets from files
-
-(defun yas--template-get-file (template)
-  "Return TEMPLATE's LOAD-FILE or SAVE-FILE."
-  (or (yas--template-load-file template)
-      (let ((file (yas--template-save-file template)))
-        (when file
-          (yas--message 3 "%s has no load file, using save file, %s, instead."
-                        (yas--template-name template) file))
-        file)))
-
-(defun yas--load-yas-setup-file (file)
-  (if (not yas--creating-compiled-snippets)
-      ;; Normal case.
-      (load file 'noerror (<= yas-verbosity 4))
-    (let ((elfile (concat file ".el")))
-      (when (file-exists-p elfile)
-        (insert ";;; contents of the .yas-setup.el support file:\n;;;\n")
-        (insert-file-contents elfile)
-        (goto-char (point-max))))))
-
-(defun yas--define-parents (mode parents)
-  "Add PARENTS to the list of MODE's parents."
-  (puthash mode (cl-remove-duplicates
-                 (append parents
-                         (gethash mode yas--parents)))
-           yas--parents))
-
-(defun yas-load-directory (top-level-dir &optional use-jit interactive)
-  "Load snippets in directory hierarchy TOP-LEVEL-DIR.
-
-Below TOP-LEVEL-DIR each directory should be a mode name.
-
-With prefix argument USE-JIT do jit-loading of snippets."
-  (interactive
-   (list (read-directory-name "Select the root directory: " nil nil t)
-         current-prefix-arg t))
-  (unless yas-snippet-dirs
-    (setq yas-snippet-dirs top-level-dir))
-  (let ((impatient-buffers))
-    (dolist (dir (yas--subdirs top-level-dir))
-      (let* ((major-mode-and-parents (yas--compute-major-mode-and-parents
-                                      (concat dir "/dummy")))
-             (mode-sym (car major-mode-and-parents))
-             (parents (cdr major-mode-and-parents)))
-        ;; Attention: The parents and the menus are already defined
-        ;; here, even if the snippets are later jit-loaded.
-        ;;
-        ;; * We need to know the parents at this point since entering a
-        ;;   given mode should jit load for its parents
-        ;;   immediately. This could be reviewed, the parents could be
-        ;;   discovered just-in-time-as well
-        ;;
-        ;; * We need to create the menus here to support the `full'
-        ;;   option to `yas-use-menu' (all known snippet menus are shown to the user)
-        ;;
-        (yas--define-parents mode-sym parents)
-        (yas--menu-keymap-get-create mode-sym)
-        (let ((fun (apply-partially #'yas--load-directory-1 dir mode-sym)))
-          (if use-jit
-              (yas--schedule-jit mode-sym fun)
-            (funcall fun)))
-        ;; Look for buffers that are already in `mode-sym', and so
-        ;; need the new snippets immediately...
-        ;;
-        (when use-jit
-          (cl-loop for buffer in (buffer-list)
-                   do (with-current-buffer buffer
-                        (when (eq major-mode mode-sym)
-                          (yas--message 4 "Discovered there was already %s in %s" buffer mode-sym)
-                          (push buffer impatient-buffers)))))))
-    ;; ...after TOP-LEVEL-DIR has been completely loaded, call
-    ;; `yas--load-pending-jits' in these impatient buffers.
-    ;;
-    (cl-loop for buffer in impatient-buffers
-             do (with-current-buffer buffer (yas--load-pending-jits))))
-  (when interactive
-    (yas--message 3 "Loaded snippets from %s." top-level-dir)))
-
-(defun yas--load-directory-1 (directory mode-sym)
-  "Recursively load snippet templates from DIRECTORY."
-  (if yas--creating-compiled-snippets
-      (let ((output-file (expand-file-name ".yas-compiled-snippets.el"
-                                           directory)))
-        (with-temp-file output-file
-          (insert (format ";;; Compiled snippets and support files for `%s'\n"
-                          mode-sym))
-          (yas--load-directory-2 directory mode-sym)
-          (insert (format ";;; Do not edit! File generated at %s\n"
-                          (current-time-string)))))
-    ;; Normal case.
-    (unless (file-exists-p (expand-file-name ".yas-skip" directory))
-      (unless (and (load (expand-file-name ".yas-compiled-snippets" directory) 'noerror (<= yas-verbosity 3))
-                   (progn (yas--message 4 "Loaded compiled snippets from %s" directory) t))
-        (yas--message 4 "Loading snippet files from %s" directory)
-        (yas--load-directory-2 directory mode-sym)))))
-
-(defun yas--load-directory-2 (directory mode-sym)
-  ;; Load .yas-setup.el files wherever we find them
-  ;;
-  (yas--load-yas-setup-file (expand-file-name ".yas-setup" directory))
-  (let* ((default-directory directory)
-         (snippet-defs nil))
-    ;; load the snippet files
-    ;;
-    (with-temp-buffer
-      (dolist (file (yas--subdirs directory 'no-subdirs-just-files))
-        (when (file-readable-p file)
-          ;; Erase the buffer instead of passing non-nil REPLACE to
-          ;; `insert-file-contents' (avoids Emacs bug #23659).
-          (erase-buffer)
-          (insert-file-contents file)
-          (push (yas--parse-template file)
-                snippet-defs))))
-    (when snippet-defs
-      (yas-define-snippets mode-sym
-                           snippet-defs))
-    ;; now recurse to a lower level
-    ;;
-    (dolist (subdir (yas--subdirs directory))
-      (yas--load-directory-2 subdir
-                            mode-sym))))
-
-(defun yas--load-snippet-dirs (&optional nojit)
-  "Reload the directories listed in `yas-snippet-dirs' or
-prompt the user to select one."
-  (let (errors)
-    (if (null yas-snippet-dirs)
-        (call-interactively 'yas-load-directory)
-      (when (member yas--default-user-snippets-dir yas-snippet-dirs)
-        (make-directory yas--default-user-snippets-dir t))
-      (dolist (directory (reverse (yas-snippet-dirs)))
-        (cond ((file-directory-p directory)
-               (yas-load-directory directory (not nojit))
-               (if nojit
-                   (yas--message 4 "Loaded %s" directory)
-                 (yas--message 4 "Prepared just-in-time loading for %s" directory)))
-              (t
-               (push (yas--message 1 "Check your `yas-snippet-dirs': %s is not a directory" directory) errors)))))
-    errors))
-
-(defun yas-reload-all (&optional no-jit interactive)
-  "Reload all snippets and rebuild the YASnippet menu.
-
-When NO-JIT is non-nil force immediate reload of all known
-snippets under `yas-snippet-dirs', otherwise use just-in-time
-loading.
-
-When called interactively, use just-in-time loading when given a
-prefix argument."
-  (interactive (list (not current-prefix-arg) t))
-  (catch 'abort
-    (let ((errors)
-          (snippet-editing-buffers
-           (cl-remove-if-not (lambda (buffer)
-                               (with-current-buffer buffer
-                                 yas--editing-template))
-                             (buffer-list))))
-      ;; Warn if there are buffers visiting snippets, since reloading will break
-      ;; any on-line editing of those buffers.
-      ;;
-      (when snippet-editing-buffers
-          (if interactive
-              (if (y-or-n-p "Some buffers editing live snippets, close them and proceed with reload? ")
-                  (mapc #'kill-buffer snippet-editing-buffers)
-                (yas--message 1 "Aborted reload...")
-                (throw 'abort nil))
-            ;; in a non-interactive use, at least set
-            ;; `yas--editing-template' to nil, make it guess it next time around
-            (mapc #'(lambda (buffer)
-                      (with-current-buffer buffer
-                        (kill-local-variable 'yas--editing-template)))
-                  (buffer-list))))
-
-      ;; Empty all snippet tables and parenting info
-      ;;
-      (setq yas--tables (make-hash-table))
-      (setq yas--parents (make-hash-table))
-
-      ;; Before killing `yas--menu-table' use its keys to cleanup the
-      ;; mode menu parts of `yas--minor-mode-menu' (thus also cleaning
-      ;; up `yas-minor-mode-map', which points to it)
-      ;;
-      (maphash #'(lambda (menu-symbol _keymap)
-                   (define-key yas--minor-mode-menu (vector menu-symbol) nil))
-               yas--menu-table)
-      ;; Now empty `yas--menu-table' as well
-      (setq yas--menu-table (make-hash-table))
-
-      ;; Cancel all pending 'yas--scheduled-jit-loads'
-      ;;
-      (setq yas--scheduled-jit-loads (make-hash-table))
-
-      ;; Reload the directories listed in `yas-snippet-dirs' or prompt
-      ;; the user to select one.
-      ;;
-      (setq errors (yas--load-snippet-dirs no-jit))
-      ;; Reload the direct keybindings
-      ;;
-      (yas-direct-keymaps-reload)
-
-      (run-hooks 'yas-after-reload-hook)
-      (let ((no-snippets
-             (cl-every (lambda (table) (= (hash-table-count table) 0))
-                       (list yas--scheduled-jit-loads
-                             yas--parents yas--tables))))
-        (yas--message (if (or no-snippets errors) 2 3)
-                      (if no-jit "Snippets loaded %s."
-                        "Prepared just-in-time loading of snippets %s.")
-                      (cond (errors
-                             "with some errors.  Check *Messages*")
-                            (no-snippets
-                             "(but no snippets found)")
-                            (t
-                             "successfully")))))))
-
-(defvar yas-after-reload-hook nil
-  "Hooks run after `yas-reload-all'.")
-
-(defun yas--load-pending-jits ()
-  (dolist (mode (yas--modes-to-activate))
-    (let ((funs (reverse (gethash mode yas--scheduled-jit-loads))))
-      ;; must reverse to maintain coherence with `yas-snippet-dirs'
-      (dolist (fun funs)
-        (yas--message 4 "Loading for `%s', just-in-time: %s!" mode fun)
-        (funcall fun))
-      (remhash mode yas--scheduled-jit-loads))))
-
-(defun yas-escape-text (text)
-  "Escape TEXT for snippet."
-  (when text
-    (replace-regexp-in-string "[\\$]" "\\\\\\&" text)))
-
-
-;;; Snippet compilation function
-
-(defun yas-compile-directory (top-level-dir)
-  "Create .yas-compiled-snippets.el files under subdirs of TOP-LEVEL-DIR.
-
-This works by stubbing a few functions, then calling
-`yas-load-directory'."
-  (interactive "DTop level snippet directory?")
-  (let ((yas--creating-compiled-snippets t))
-    (yas-load-directory top-level-dir nil)))
-
-(defun yas-recompile-all ()
-  "Compile every dir in `yas-snippet-dirs'."
-  (interactive)
-  (mapc #'yas-compile-directory (yas-snippet-dirs)))
-
-
-;;; JIT loading
-;;;
-
-(defvar yas--scheduled-jit-loads (make-hash-table)
-  "Alist of mode-symbols to forms to be evaled when `yas-minor-mode' kicks in.")
-
-(defun yas--schedule-jit (mode fun)
-  (push fun (gethash mode yas--scheduled-jit-loads)))
-
-
-
-;;; Some user level functions
-
-(defun yas-about ()
-  (interactive)
-  (message "yasnippet (version %s) -- pluskid/joaotavora/npostavs"
-           (or (ignore-errors (car (let ((default-directory yas--loaddir))
-                                     (process-lines "git" "describe"
-                                                    "--tags" "--dirty"))))
-               (when (and (featurep 'package)
-                          (fboundp 'package-desc-version)
-                          (fboundp 'package-version-join))
-                 (defvar package-alist)
-                 (ignore-errors
-                   (let* ((yas-pkg (cdr (assq 'yasnippet package-alist)))
-                          (version (package-version-join
-                                    (package-desc-version (car yas-pkg)))))
-                     ;; Special case for MELPA's bogus version numbers.
-                     (if (string-match "\\`20..[01][0-9][0-3][0-9][.][0-9]\\{3,4\\}\\'"
-                                       version)
-                         (concat yas--version "-snapshot" version)
-                       version))))
-               yas--version)))
-
-
-;;; Apropos snippet menu:
-;;
-;; The snippet menu keymaps are stored by mode in hash table called
-;; `yas--menu-table'. They are linked to the main menu in
-;; `yas--menu-keymap-get-create' and are initially created empty,
-;; reflecting the table hierarchy.
-;;
-;; They can be populated in two mutually exclusive ways: (1) by
-;; reading `yas--template-group', which in turn is populated by the "#
-;; group:" directives of the snippets or the ".yas-make-groups" file
-;; or (2) by using a separate `yas-define-menu' call, which declares a
-;; menu structure based on snippets uuids.
-;;
-;; Both situations are handled in `yas--update-template-menu', which
-;; uses the predicate `yas--template-menu-managed-by-yas-define-menu'
-;; that can tell between the two situations.
-;;
-;; Note:
-;;
-;; * if `yas-define-menu' is used it must run before
-;;   `yas-define-snippets' and the UUIDS must match, otherwise we get
-;;   duplicate entries. The `yas--template' objects are created in
-;;   `yas-define-menu', holding nothing but the menu entry,
-;;   represented by a pair of ((menu-item NAME :keys KEYS) TYPE) and
-;;   stored in `yas--template-menu-binding-pair'.  The (menu-item ...)
-;;   part is then stored in the menu keymap itself which make the item
-;;   appear to the user.  These limitations could probably be revised.
-;;
-;; * The `yas--template-perm-group' slot is only used in
-;;   `yas-describe-tables'.
-;;
-(defun yas--template-menu-binding-pair-get-create (template &optional type)
-  "Get TEMPLATE's menu binding or assign it a new one.
-
-TYPE may be `:stay', signaling this menu binding should be
-static in the menu."
-  (or (yas--template-menu-binding-pair template)
-      (let (;; (key (yas--template-key template))
-            ;; (keybinding (yas--template-keybinding template))
-            )
-        (setf (yas--template-menu-binding-pair template)
-              (cons `(menu-item ,(or (yas--template-name template)
-                                     (yas--template-uuid template))
-                                ,(yas--make-menu-binding template)
-                                :keys ,nil)
-                    type)))))
-(defun yas--template-menu-managed-by-yas-define-menu (template)
-  "Non-nil if TEMPLATE's menu entry was included in a `yas-define-menu' call."
-  (cdr (yas--template-menu-binding-pair template)))
-
-
-(defun yas--show-menu-p (mode)
-  (cond ((eq yas-use-menu 'abbreviate)
-         (cl-find mode
-                  (mapcar #'yas--table-mode
-                          (yas--get-snippet-tables))))
-        (yas-use-menu t)))
-
-(defun yas--delete-from-keymap (keymap uuid)
-  "Recursively delete items with UUID from KEYMAP and its submenus."
-
-  ;; XXX: This used to skip any submenus named \"parent mode\"
-  ;;
-  ;; First of all, recursively enter submenus, i.e. the tree is
-  ;; searched depth first so that stale submenus can be found in the
-  ;; higher passes.
-  ;;
-  (mapc #'(lambda (item)
-            (when (and (consp (cdr-safe item))
-                       (keymapp (nth 2 (cdr item))))
-              (yas--delete-from-keymap (nth 2 (cdr item)) uuid)))
-        (cdr keymap))
-  ;; Set the uuid entry to nil
-  ;;
-  (define-key keymap (vector (make-symbol uuid)) nil)
-  ;; Destructively modify keymap
-  ;;
-  (setcdr keymap (cl-delete-if (lambda (item)
-                                 (cond ((not (listp item)) nil)
-                                       ((null (cdr item)))
-                                       ((and (keymapp (nth 2 (cdr item)))
-                                             (null (cdr (nth 2 (cdr item))))))))
-                               (cdr keymap))))
-
-(defun yas-define-menu (mode menu &optional omit-items)
-  "Define a snippet menu for MODE according to MENU, omitting OMIT-ITEMS.
-
-MENU is a list, its elements can be:
-
-- (yas-item UUID) : Creates an entry the snippet identified with
-  UUID.  The menu entry for a snippet thus identified is
-  permanent, i.e. it will never move (be reordered) in the menu.
-
-- (yas-separator) : Creates a separator
-
-- (yas-submenu NAME SUBMENU) : Creates a submenu with NAME,
-  SUBMENU has the same form as MENU.  NAME is also added to the
-  list of groups of the snippets defined thereafter.
-
-OMIT-ITEMS is a list of snippet uuids that will always be
-omitted from MODE's menu, even if they're manually loaded."
-  (let* ((table (yas--table-get-create mode))
-         (hash (yas--table-uuidhash table)))
-    (yas--define-menu-1 table
-                        (yas--menu-keymap-get-create mode)
-                        menu
-                        hash)
-    (dolist (uuid omit-items)
-      (let ((template (or (gethash uuid hash)
-                          (puthash uuid
-                                   (yas--make-template :table table
-                                                       :uuid uuid)
-                                   hash))))
-        (setf (yas--template-menu-binding-pair template) (cons nil :none))))))
-
-(defun yas--define-menu-1 (table menu-keymap menu uuidhash &optional group-list)
-  "Helper for `yas-define-menu'."
-  (cl-loop
-   for (type name submenu) in (reverse menu)
-   collect (cond
-            ((or (eq type 'yas-item)
-                 (and yas-alias-to-yas/prefix-p
-                      (eq type 'yas/item)))
-             (let ((template (or (gethash name uuidhash)
-                                 (puthash name
-                                          (yas--make-template
-                                           :table table
-                                           :perm-group group-list
-                                           :uuid name)
-                                          uuidhash))))
-               (car (yas--template-menu-binding-pair-get-create
-                     template :stay))))
-            ((or (eq type 'yas-submenu)
-                 (and yas-alias-to-yas/prefix-p
-                      (eq type 'yas/submenu)))
-             (let ((subkeymap (make-sparse-keymap)))
-               (yas--define-menu-1 table subkeymap submenu uuidhash
-                                   (append group-list (list name)))
-               `(menu-item ,name ,subkeymap)))
-            ((or (eq type 'yas-separator)
-                 (and yas-alias-to-yas/prefix-p
-                      (eq type 'yas/separator)))
-             '(menu-item "----"))
-            (t (yas--message 1 "Don't know anything about menu entry %s" type)
-               nil))
-   into menu-entries
-   finally do (push (apply #'vector menu-entries) (cdr menu-keymap))))
-
-(defun yas--define (mode key template &optional name condition group)
-  "Define a snippet.  Expanding KEY into TEMPLATE.
-
-NAME is a description to this template.  Also update the menu if
-`yas-use-menu' is t.  CONDITION is the condition attached to
-this snippet.  If you attach a condition to a snippet, then it
-will only be expanded when the condition evaluated to non-nil."
-  (yas-define-snippets mode
-                       (list (list key template name condition group))))
-
-(defun yas-hippie-try-expand (first-time?)
-  "Integrate with hippie expand.
-
-Just put this function in `hippie-expand-try-functions-list'."
-  (when yas-minor-mode
-    (if (not first-time?)
-        (let ((yas-fallback-behavior 'return-nil))
-          (yas-expand))
-      (undo 1)
-      nil)))
-
-
-;;; Apropos condition-cache:
-;;;
-;;;
-;;;
-;;;
-(defmacro yas-define-condition-cache (func doc &rest body)
-  "Define a function FUNC with doc DOC and body BODY.
-BODY is executed at most once every snippet expansion attempt, to check
-expansion conditions.
-
-It doesn't make any sense to call FUNC programatically."
-  `(defun ,func () ,(if (and doc
-                             (stringp doc))
-                        (concat doc
-"\n\nFor use in snippets' conditions. Within each
-snippet-expansion routine like `yas-expand', computes actual
-value for the first time then always returns a cached value.")
-                      (setq body (cons doc body))
-                      nil)
-     (let ((timestamp-and-value (get ',func 'yas--condition-cache)))
-       (if (equal (car timestamp-and-value) yas--condition-cache-timestamp)
-           (cdr timestamp-and-value)
-         (let ((new-value (progn
-                            ,@body
-                            )))
-           (put ',func 'yas--condition-cache (cons yas--condition-cache-timestamp new-value))
-           new-value)))))
-
-(defalias 'yas-expand 'yas-expand-from-trigger-key)
-(defun yas-expand-from-trigger-key (&optional field)
-  "Expand a snippet before point.
-
-If no snippet expansion is possible, fall back to the behaviour
-defined in `yas-fallback-behavior'.
-
-Optional argument FIELD is for non-interactive use and is an
-object satisfying `yas--field-p' to restrict the expansion to."
-  (interactive)
-  (setq yas--condition-cache-timestamp (current-time))
-  (let (templates-and-pos)
-    (unless (and yas-expand-only-for-last-commands
-                 (not (member last-command yas-expand-only-for-last-commands)))
-      (setq templates-and-pos (if field
-                                  (save-restriction
-                                    (narrow-to-region (yas--field-start field)
-                                                      (yas--field-end field))
-                                    (yas--templates-for-key-at-point))
-                                (yas--templates-for-key-at-point))))
-    (if templates-and-pos
-        (yas--expand-or-prompt-for-template
-         (nth 0 templates-and-pos)
-         ;; Delete snippet key and active region when expanding.
-         (min (if (use-region-p) (region-beginning) most-positive-fixnum)
-              (nth 1 templates-and-pos))
-         (max (if (use-region-p) (region-end) most-negative-fixnum)
-              (nth 2 templates-and-pos)))
-      (yas--fallback))))
-
-(defun yas--maybe-expand-from-keymap-filter (cmd)
-  (let* ((yas--condition-cache-timestamp (current-time))
-         (vec (cl-subseq (this-command-keys-vector)
-                         (if current-prefix-arg
-                             (length (this-command-keys))
-                           0)))
-         (templates (cl-mapcan (lambda (table)
-                                 (yas--fetch table vec))
-                               (yas--get-snippet-tables))))
-    (if templates (or cmd templates))))
-
-(defun yas-expand-from-keymap ()
-  "Directly expand some snippets, searching `yas--direct-keymaps'."
-  (interactive)
-  (setq yas--condition-cache-timestamp (current-time))
-  (let* ((templates (yas--maybe-expand-from-keymap-filter nil)))
-    (when templates
-      (yas--expand-or-prompt-for-template templates))))
-
-(defun yas--expand-or-prompt-for-template (templates &optional start end)
-  "Expand one of TEMPLATES from START to END.
-
-Prompt the user if TEMPLATES has more than one element, else
-expand immediately.  Common gateway for
-`yas-expand-from-trigger-key' and `yas-expand-from-keymap'."
-  (let ((yas--current-template (or (and (cl-rest templates) ;; more than one
-                                        (yas--prompt-for-template (mapcar #'cdr templates)))
-                                   (cdar templates))))
-    (when yas--current-template
-      (yas-expand-snippet (yas--template-content yas--current-template)
-                          start
-                          end
-                          (yas--template-expand-env yas--current-template)))))
-
-;; Apropos the trigger key and the fallback binding:
-;;
-;; When `yas-minor-mode-map' binds <tab>, that correctly overrides
-;; org-mode's <tab>, for example and searching for fallbacks correctly
-;; returns `org-cycle'. However, most other modes bind "TAB". TODO,
-;; improve this explanation.
-;;
-(defun yas--fallback ()
-  "Fallback after expansion has failed.
-
-Common gateway for `yas-expand-from-trigger-key' and
-`yas-expand-from-keymap'."
-  (cond ((eq yas-fallback-behavior 'return-nil)
-         ;; return nil
-         nil)
-        ((eq yas-fallback-behavior 'yas--fallback)
-         (error (concat "yasnippet fallback loop!\n"
-                        "This can happen when you bind `yas-expand' "
-                        "outside of the `yas-minor-mode-map'.")))
-        ((eq yas-fallback-behavior 'call-other-command)
-         (let* ((yas-fallback-behavior 'yas--fallback)
-                ;; Also bind `yas-minor-mode' to prevent fallback
-                ;; loops when other extensions use mechanisms similar
-                ;; to `yas--keybinding-beyond-yasnippet'. (github #525
-                ;; and #526)
-                ;;
-                (yas-minor-mode nil)
-                (beyond-yasnippet (yas--keybinding-beyond-yasnippet)))
-           (yas--message 4 "Falling back to %s"  beyond-yasnippet)
-           (cl-assert (or (null beyond-yasnippet) (commandp beyond-yasnippet)))
-           (setq this-command beyond-yasnippet)
-           (when beyond-yasnippet
-             (call-interactively beyond-yasnippet))))
-        ((and (listp yas-fallback-behavior)
-              (cdr yas-fallback-behavior)
-              (eq 'apply (car yas-fallback-behavior)))
-         (let ((command-or-fn (cadr yas-fallback-behavior))
-               (args (cddr yas-fallback-behavior))
-               (yas-fallback-behavior 'yas--fallback)
-               (yas-minor-mode nil))
-           (if args
-               (apply command-or-fn args)
-             (when (commandp command-or-fn)
-               (setq this-command command-or-fn)
-               (call-interactively command-or-fn)))))
-        (t
-         ;; also return nil if all the other fallbacks have failed
-         nil)))
-
-(defun yas--keybinding-beyond-yasnippet ()
-  "Get current keys's binding as if YASsnippet didn't exist."
-  (let* ((yas-minor-mode nil)
-         (yas--direct-keymaps nil)
-         (keys (this-single-command-keys)))
-    (or (key-binding keys t)
-        (key-binding (yas--fallback-translate-input keys) t))))
-
-(defun yas--fallback-translate-input (keys)
-  "Emulate `read-key-sequence', at least what I think it does.
-
-Keys should be an untranslated key vector.  Returns a translated
-vector of keys.  FIXME not thoroughly tested."
-  (let ((retval [])
-        (i 0))
-    (while (< i (length keys))
-      (let ((j i)
-            (translated local-function-key-map))
-        (while (and (< j (length keys))
-                    translated
-                    (keymapp translated))
-          (setq translated (cdr (assoc (aref keys j) (remove 'keymap translated)))
-                j (1+ j)))
-        (setq retval (vconcat retval (cond ((symbolp translated)
-                                            `[,translated])
-                                           ((vectorp translated)
-                                            translated)
-                                           (t
-                                            (substring keys i j)))))
-        (setq i j)))
-    retval))
-
-
-;;; Utils for snippet development:
-
-(defun yas--all-templates (tables)
-  "Get `yas--template' objects in TABLES, applicable for buffer and point.
-
-Honours `yas-choose-tables-first', `yas-choose-keys-first' and
-`yas-buffer-local-condition'"
-  (when yas-choose-tables-first
-    (setq tables (list (yas--prompt-for-table tables))))
-  (mapcar #'cdr
-          (if yas-choose-keys-first
-              (let ((key (yas--prompt-for-keys
-                          (cl-mapcan #'yas--table-all-keys tables))))
-                (when key
-                  (cl-mapcan (lambda (table)
-                               (yas--fetch table key))
-                             tables)))
-            (cl-remove-duplicates (cl-mapcan #'yas--table-templates tables)
-                                  :test #'equal))))
-
-(defun yas--lookup-snippet-1 (name mode)
-  "Get the snippet called NAME in MODE's tables."
-  (let ((yas-choose-tables-first nil)   ; avoid prompts
-        (yas-choose-keys-first nil))
-    (cl-find name (yas--all-templates
-                   (yas--get-snippet-tables mode))
-             :key #'yas--template-name :test #'string=)))
-
-(defun yas-lookup-snippet (name &optional mode noerror)
-  "Get the snippet named NAME in MODE's tables.
-
-MODE defaults to the current buffer's `major-mode'.  If NOERROR
-is non-nil, then don't signal an error if there isn't any snippet
-called NAME.
-
-Honours `yas-buffer-local-condition'."
-  (cond
-   ((yas--lookup-snippet-1 name mode))
-   (noerror nil)
-   (t (error "No snippet named: %s" name))))
-
-(defun yas-insert-snippet (&optional no-condition)
-  "Choose a snippet to expand, pop-up a list of choices according
-to `yas-prompt-functions'.
-
-With prefix argument NO-CONDITION, bypass filtering of snippets
-by condition."
-  (interactive "P")
-  (setq yas--condition-cache-timestamp (current-time))
-  (let* ((yas-buffer-local-condition (or (and no-condition
-                                              'always)
-                                         yas-buffer-local-condition))
-         (templates (yas--all-templates (yas--get-snippet-tables)))
-         (yas--current-template (and templates
-                                    (or (and (cl-rest templates) ;; more than one template for same key
-                                             (yas--prompt-for-template templates))
-                                        (car templates))))
-         (where (if (region-active-p)
-                    (cons (region-beginning) (region-end))
-                  (cons (point) (point)))))
-    (if yas--current-template
-        (yas-expand-snippet (yas--template-content yas--current-template)
-                            (car where)
-                            (cdr where)
-                            (yas--template-expand-env yas--current-template))
-      (yas--message 1 "No snippets can be inserted here!"))))
-
-(defun yas-visit-snippet-file ()
-  "Choose a snippet to edit, selection like `yas-insert-snippet'.
-
-Only success if selected snippet was loaded from a file.  Put the
-visited file in `snippet-mode'."
-  (interactive)
-  (let* ((yas-buffer-local-condition 'always)
-         (templates (yas--all-templates (yas--get-snippet-tables)))
-         (template (and templates
-                        (or (yas--prompt-for-template templates
-                                                     "Choose a snippet template to edit: ")
-                            (car templates)))))
-
-    (if template
-        (yas--visit-snippet-file-1 template)
-      (message "No snippets tables active!"))))
-
-(defun yas--visit-snippet-file-1 (template)
-  "Helper for `yas-visit-snippet-file'."
-  (let ((file (yas--template-get-file template)))
-    (cond ((and file (file-readable-p file))
-           (find-file-other-window file)
-           (snippet-mode)
-           (set (make-local-variable 'yas--editing-template) template))
-          (file
-           (message "Original file %s no longer exists!" file))
-          (t
-           (switch-to-buffer (format "*%s*"(yas--template-name template)))
-           (let ((type 'snippet))
-             (when (listp (yas--template-content template))
-               (insert (format "# type: command\n"))
-               (setq type 'command))
-             (insert (format "# key: %s\n" (yas--template-key template)))
-             (insert (format "# name: %s\n" (yas--template-name template)))
-             (when (yas--template-keybinding template)
-               (insert (format "# binding: %s\n" (yas--template-keybinding template))))
-             (when (yas--template-expand-env template)
-               (insert (format "# expand-env: %s\n" (yas--template-expand-env template))))
-             (when (yas--template-condition template)
-               (insert (format "# condition: %s\n" (yas--template-condition template))))
-             (insert "# --\n")
-             (insert (if (eq type 'command)
-                         (pp-to-string (yas--template-content template))
-                       (yas--template-content template))))
-           (snippet-mode)
-           (set (make-local-variable 'yas--editing-template) template)
-           (set (make-local-variable 'default-directory)
-                (car (cdr (car (yas--guess-snippet-directories (yas--template-table template))))))))))
-
-(defun yas--guess-snippet-directories-1 (table)
-  "Guess possible snippet subdirectories for TABLE."
-  (cons (file-name-as-directory (yas--table-name table))
-        (cl-mapcan #'yas--guess-snippet-directories-1
-                   (yas--table-parents table))))
-
-(defun yas--guess-snippet-directories (&optional table)
-  "Try to guess suitable directories based on the current active
-tables (or optional TABLE).
-
-Returns a list of elements (TABLE . DIRS) where TABLE is a
-`yas--table' object and DIRS is a list of all possible directories
-where snippets of table might exist."
-  (let ((main-dir (car (or (yas-snippet-dirs)
-                           (setq yas-snippet-dirs
-                                 (list yas--default-user-snippets-dir)))))
-        (tables (if table (list table)
-                  (yas--get-snippet-tables))))
-    ;; HACK! the snippet table created here is actually registered!
-    (unless table
-      ;; The major mode is probably the best guess, put it first.
-      (let ((major-mode-table (yas--table-get-create major-mode)))
-        (cl-callf2 delq major-mode-table tables)
-        (push major-mode-table tables)))
-
-    (mapcar #'(lambda (table)
-                (cons table
-                      (mapcar #'(lambda (subdir)
-                                  (expand-file-name subdir main-dir))
-                              (yas--guess-snippet-directories-1 table))))
-            tables)))
-
-(defun yas--make-directory-maybe (table-and-dirs &optional main-table-string)
-  "Return a dir inside TABLE-AND-DIRS, prompts for creation if none exists."
-  (or (cl-some (lambda (dir) (when (file-directory-p dir) dir))
-               (cdr table-and-dirs))
-      (let ((candidate (cl-first (cdr table-and-dirs))))
-        (unless (file-writable-p (file-name-directory candidate))
-          (error (yas--format "%s is not writable." candidate)))
-        (if (y-or-n-p (format "Guessed directory (%s) for%s%s table \"%s\" does not exist! Create? "
-                              candidate
-                              (if (gethash (yas--table-mode (car table-and-dirs))
-                                           yas--tables)
-                                  ""
-                                " brand new")
-                              (or main-table-string
-                                  "")
-                              (yas--table-name (car table-and-dirs))))
-            (progn
-              (make-directory candidate 'also-make-parents)
-              ;; create the .yas-parents file here...
-              candidate)))))
-
-;; NOTE: Using the traditional "*new snippet*" stops whitespace mode
-;; from activating (it doesn't like the leading "*").
-(defconst yas-new-snippet-buffer-name "+new-snippet+")
-
-(defun yas-new-snippet (&optional no-template)
-  "Pops a new buffer for writing a snippet.
-
-Expands a snippet-writing snippet, unless the optional prefix arg
-NO-TEMPLATE is non-nil."
-  (interactive "P")
-  (let ((guessed-directories (yas--guess-snippet-directories))
-        (yas-selected-text (or yas-selected-text
-                               (and (region-active-p)
-                                    (buffer-substring-no-properties
-                                     (region-beginning) (region-end))))))
-
-    (switch-to-buffer yas-new-snippet-buffer-name)
-    (erase-buffer)
-    (kill-all-local-variables)
-    (snippet-mode)
-    (yas-minor-mode 1)
-    (set (make-local-variable 'yas--guessed-modes)
-         (mapcar (lambda (d) (yas--table-mode (car d)))
-                 guessed-directories))
-    (set (make-local-variable 'default-directory)
-         (car (cdr (car guessed-directories))))
-    (if (and (not no-template) yas-new-snippet-default)
-        (yas-expand-snippet yas-new-snippet-default))))
-
-(defun yas--compute-major-mode-and-parents (file)
-  "Given FILE, find the nearest snippet directory for a given mode.
-
-Returns a list (MODE-SYM PARENTS), the mode's symbol and a list
-representing one or more of the mode's parents.
-
-Note that MODE-SYM need not be the symbol of a real major mode,
-neither do the elements of PARENTS."
-  (let* ((file-dir (and file
-                        (directory-file-name
-                         (or (cl-some (lambda (special)
-                                        (locate-dominating-file file special))
-                                      '(".yas-setup.el"
-                                        ".yas-make-groups"
-                                        ".yas-parents"))
-                             (directory-file-name (file-name-directory file))))))
-         (parents-file-name (concat file-dir "/.yas-parents"))
-         (major-mode-name (and file-dir
-                               (file-name-nondirectory file-dir)))
-         (major-mode-sym (or (and major-mode-name
-                                  (intern major-mode-name))))
-         (parents (when (file-readable-p parents-file-name)
-                         (mapcar #'intern
-                                 (split-string
-                                  (with-temp-buffer
-                                    (insert-file-contents parents-file-name)
-                                    (buffer-substring-no-properties (point-min)
-                                                                    (point-max))))))))
-    (when major-mode-sym
-      (cons major-mode-sym (remove major-mode-sym parents)))))
-
-(defvar yas--editing-template nil
-  "Supporting variable for `yas-load-snippet-buffer' and `yas--visit-snippet'.")
-
-(defvar yas--current-template nil
-  "Holds the current template being expanded into a snippet.")
-
-(defvar yas--guessed-modes nil
-  "List of guessed modes supporting `yas-load-snippet-buffer'.")
-
-(defun yas--read-table ()
-  "Ask user for a snippet table, help with some guessing."
-  (let ((prompt (if (and (featurep 'ido)
-                         ido-mode)
-                    'ido-completing-read 'completing-read)))
-    (unless yas--guessed-modes
-      (set (make-local-variable 'yas--guessed-modes)
-           (or (yas--compute-major-mode-and-parents buffer-file-name))))
-    (intern
-     (funcall prompt (format "Choose or enter a table (yas guesses %s): "
-                             (if yas--guessed-modes
-                                 (cl-first yas--guessed-modes)
-                               "nothing"))
-              (mapcar #'symbol-name yas--guessed-modes)
-              nil
-              nil
-              nil
-              nil
-              (if (cl-first yas--guessed-modes)
-                  (symbol-name (cl-first yas--guessed-modes)))))))
-
-(defun yas-load-snippet-buffer (table &optional interactive)
-  "Parse and load current buffer's snippet definition into TABLE.
-TABLE is a symbol name passed to `yas--table-get-create'.  When
-called interactively, prompt for the table name.
-Return the `yas--template' object created"
-  (interactive (list (yas--read-table) t))
-  (cond
-   ;;  We have `yas--editing-template', this buffer's content comes from a
-   ;;  template which is already loaded and neatly positioned,...
-   ;;
-   (yas--editing-template
-    (yas--define-snippets-1 (yas--parse-template (yas--template-load-file yas--editing-template))
-                           (yas--template-table yas--editing-template)))
-   ;; Try to use `yas--guessed-modes'. If we don't have that use the
-   ;; value from `yas--compute-major-mode-and-parents'
-   ;;
-   (t
-    (unless yas--guessed-modes
-      (set (make-local-variable 'yas--guessed-modes) (or (yas--compute-major-mode-and-parents buffer-file-name))))
-    (let* ((table (yas--table-get-create table)))
-      (set (make-local-variable 'yas--editing-template)
-           (yas--define-snippets-1 (yas--parse-template buffer-file-name)
-                                  table)))))
-  (when interactive
-    (yas--message 3 "Snippet \"%s\" loaded for %s."
-                  (yas--template-name yas--editing-template)
-                  (yas--table-name (yas--template-table yas--editing-template))))
-  yas--editing-template)
-
-(defun yas-maybe-load-snippet-buffer ()
-  "Added to `after-save-hook' in `snippet-mode'."
-  (let* ((mode (intern (file-name-sans-extension
-                        (file-name-nondirectory
-                         (directory-file-name default-directory)))))
-         (current-snippet
-          (apply #'yas--define-snippets-2 (yas--table-get-create mode)
-                 (yas--parse-template buffer-file-name)))
-         (uuid (yas--template-uuid current-snippet)))
-    (unless (equal current-snippet
-                   (if uuid (yas--get-template-by-uuid mode uuid)
-                     (yas--lookup-snippet-1
-                      (yas--template-name current-snippet) mode)))
-      (yas-load-snippet-buffer mode t))))
-
-(defun yas-load-snippet-buffer-and-close (table &optional kill)
-  "Load and save the snippet, then `quit-window' if saved.
-Loading is performed by `yas-load-snippet-buffer'.  If the
-snippet is new, ask the user whether (and where) to save it.  If
-the snippet already has a file, just save it.
-
-The prefix argument KILL is passed to `quit-window'.
-
-Don't use this from a Lisp program, call `yas-load-snippet-buffer'
-and `kill-buffer' instead."
-  (interactive (list (yas--read-table) current-prefix-arg))
-  (let ((template (yas-load-snippet-buffer table t)))
-    (when (and (buffer-modified-p)
-               (y-or-n-p
-                (format "[yas] Loaded for %s. Also save snippet buffer?"
-                        (yas--table-name (yas--template-table template)))))
-      (let ((default-directory (car (cdr (car (yas--guess-snippet-directories
-                                               (yas--template-table template))))))
-            (default-file-name (yas--template-name template)))
-        (unless (or buffer-file-name (not default-file-name))
-          (setq buffer-file-name
-                (read-file-name "File to save snippet in: "
-                                nil nil nil default-file-name))
-          (rename-buffer (file-name-nondirectory buffer-file-name) t))
-        (save-buffer)))
-    (quit-window kill)))
-
-(declare-function yas-debug-snippets "yasnippet-debug")
-
-(defun yas-tryout-snippet (&optional debug)
-  "Test current buffer's snippet template in other buffer.
-DEBUG is for debugging the YASnippet engine itself."
-  (interactive "P")
-  (let* ((major-mode-and-parent (yas--compute-major-mode-and-parents buffer-file-name))
-         (parsed (yas--parse-template))
-         (test-mode (or (and (car major-mode-and-parent)
-                             (fboundp (car major-mode-and-parent))
-                             (car major-mode-and-parent))
-                        (cl-first yas--guessed-modes)
-                        (intern (read-from-minibuffer (yas--format "Please input a mode: ")))))
-         (yas--current-template
-          (and parsed
-               (fboundp test-mode)
-               (yas--make-template :table       nil ;; no tables for ephemeral snippets
-                                   :key         (nth 0 parsed)
-                                   :content     (nth 1 parsed)
-                                   :name        (nth 2 parsed)
-                                   :expand-env  (nth 5 parsed)))))
-    (cond (yas--current-template
-           (let ((buffer-name (format "*testing snippet: %s*" (yas--template-name yas--current-template))))
-             (kill-buffer (get-buffer-create buffer-name))
-             (switch-to-buffer (get-buffer-create buffer-name))
-             (setq buffer-undo-list nil)
-             (condition-case nil (funcall test-mode) (error nil))
-	     (yas-minor-mode 1)
-             (setq buffer-read-only nil)
-             (yas-expand-snippet (yas--template-content yas--current-template)
-                                 (point-min)
-                                 (point-max)
-                                 (yas--template-expand-env yas--current-template))
-             (when (and debug
-                        (require 'yasnippet-debug nil t))
-               (yas-debug-snippets "*YASnippet trace*" 'snippet-navigation)
-               (display-buffer "*YASnippet trace*"))))
-          (t
-           (yas--message 1 "Cannot test snippet for unknown major mode")))))
-
-(defun yas-active-keys ()
-  "Return all active trigger keys for current buffer and point."
-  (cl-remove-duplicates
-   (cl-remove-if-not #'stringp (cl-mapcan #'yas--table-all-keys
-                                          (yas--get-snippet-tables)))
-   :test #'string=))
-
-(defun yas--template-fine-group (template)
-  (car (last (or (yas--template-group template)
-                 (yas--template-perm-group template)))))
-
-(defun yas-describe-table-by-namehash ()
-  "Display snippet tables by NAMEHASH."
-  (interactive)
-  (with-current-buffer (get-buffer-create "*YASnippet Tables by NAMEHASH*")
-    (let ((inhibit-read-only t))
-      (erase-buffer)
-      (insert "YASnippet tables by NAMEHASH: \n")
-      (maphash
-       (lambda (_mode table)
-         (insert (format "\nSnippet table `%s':\n\n" (yas--table-name table)))
-         (maphash
-          (lambda (key _v)
-            (insert (format "   key %s maps snippets: %s\n" key
-                            (let ((names))
-                              (maphash #'(lambda (k _v)
-                                           (push k names))
-                                       (gethash key (yas--table-hash table)))
-                              names))))
-          (yas--table-hash table)))
-       yas--tables))
-    (view-mode +1)
-    (goto-char 1)
-    (display-buffer (current-buffer))))
-
-(defun yas-describe-tables (&optional with-nonactive)
-  "Display snippets for each table."
-  (interactive "P")
-  (let ((original-buffer (current-buffer))
-        (tables (yas--get-snippet-tables)))
-   (with-current-buffer (get-buffer-create "*YASnippet Tables*")
-     (let ((inhibit-read-only t))
-       (when with-nonactive
-         (maphash #'(lambda (_k v)
-                      (cl-pushnew v tables))
-                  yas--tables))
-       (erase-buffer)
-       (insert "YASnippet tables:\n")
-       (dolist (table tables)
-         (yas--describe-pretty-table table original-buffer))
-       (yas--create-snippet-xrefs))
-     (help-mode)
-     (goto-char 1)
-     (display-buffer (current-buffer)))))
-
-(defun yas--describe-pretty-table (table &optional original-buffer)
-  (insert (format "\nSnippet table `%s'"
-                  (yas--table-name table)))
-  (if (yas--table-parents table)
-      (insert (format " parents: %s\n"
-                      (mapcar #'yas--table-name
-                              (yas--table-parents table))))
-    (insert "\n"))
-  (insert (make-string 100 ?-) "\n")
-  (insert "group                   state name                                    key             binding\n")
-  (let ((groups-hash (make-hash-table :test #'equal)))
-    (maphash #'(lambda (_k v)
-                 (let ((group (or (yas--template-fine-group v)
-                                  "(top level)")))
-                   (when (yas--template-name v)
-                     (puthash group
-                              (cons v (gethash group groups-hash))
-                              groups-hash))))
-             (yas--table-uuidhash table))
-    (maphash
-     #'(lambda (group templates)
-         (setq group (truncate-string-to-width group 25 0 ?  "..."))
-         (insert (make-string 100 ?-) "\n")
-         (dolist (p templates)
-           (let* ((name (truncate-string-to-width (propertize (format "\\\\snippet `%s'" (yas--template-name p))
-                                                              'yasnippet p)
-                                                  50 0 ? "..."))
-                  (group (prog1 group
-                           (setq group (make-string (length group) ? ))))
-                  (condition-string (let ((condition (yas--template-condition p)))
-                                      (if (and condition
-                                               original-buffer)
-                                          (with-current-buffer original-buffer
-                                            (if (yas--eval-condition condition)
-                                                "(y)"
-                                              "(s)"))
-                                        "(a)")))
-                  (key-description-string (key-description (yas--template-keybinding p)))
-                  (template-key-padding (if (string= key-description-string "") nil ? )))
-             (insert group " "
-                     condition-string " "
-                     name (if (string-match "\\.\\.\\.$" name)
-                              "'" " ")
-                     " "
-                     (truncate-string-to-width (or (yas--template-key p) "")
-                                               15 0 template-key-padding "...")
-                     (or template-key-padding "")
-                     (truncate-string-to-width key-description-string
-                                               15 0 nil "...")
-                     "\n"))))
-     groups-hash)))
-
-
-
-;;; User convenience functions, for using in `yas-key-syntaxes'
-
-(defun yas-try-key-from-whitespace (_start-point)
-  "As `yas-key-syntaxes' element, look for whitespace delimited key.
-
-A newline will be considered whitespace even if the mode syntax
-marks it as something else (typically comment ender)."
-  (skip-chars-backward "^[:space:]\n"))
-
-(defun yas-shortest-key-until-whitespace (_start-point)
-  "Like `yas-longest-key-from-whitespace' but take the shortest key."
-  (when (/= (skip-chars-backward "^[:space:]\n" (1- (point))) 0)
-    'again))
-
-(defun yas-longest-key-from-whitespace (start-point)
-  "As `yas-key-syntaxes' element, look for longest key between point and whitespace.
-
-A newline will be considered whitespace even if the mode syntax
-marks it as something else (typically comment ender)."
-  (if (= (point) start-point)
-      (yas-try-key-from-whitespace start-point)
-    (forward-char))
-  (unless (<= start-point (1+ (point)))
-    'again))
-
-
-
-;;; User convenience functions, for using in snippet definitions
-
-(defvar yas-modified-p nil
-  "Non-nil if field has been modified by user or transformation.")
-
-(defvar yas-moving-away-p nil
-  "Non-nil if user is about to exit field.")
-
-(defvar yas-text nil
-  "Contains current field text.")
-
-(defun yas-substr (str pattern &optional subexp)
-  "Search PATTERN in STR and return SUBEXPth match.
-
-If found, the content of subexp group SUBEXP (default 0) is
-  returned, or else the original STR will be returned."
-  (let ((grp (or subexp 0)))
-    (save-match-data
-      (if (string-match pattern str)
-          (match-string-no-properties grp str)
-        str))))
-
-(defun yas-choose-value (&rest possibilities)
-  "Prompt for a string in POSSIBILITIES and return it.
-
-The last element of POSSIBILITIES may be a list of strings."
-  (unless (or yas-moving-away-p
-              yas-modified-p)
-    (let* ((last-link (last possibilities))
-           (last-elem (car last-link)))
-      (when (listp last-elem)
-        (setcar last-link (car last-elem))
-        (setcdr last-link (cdr last-elem))))
-    (cl-some (lambda (fn)
-               (funcall fn "Choose: " possibilities))
-             yas-prompt-functions)))
-
-(defun yas-completing-read (&rest args)
-  "A snippet-aware version of `completing-read'.
-This can be used to query the user for the initial value of a
-snippet field.  The arguments are the same as `completing-read'.
-
-\(fn PROMPT COLLECTION &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)"
-  (unless (or yas-moving-away-p
-              yas-modified-p)
-    (apply #'completing-read args)))
-
-(defun yas--auto-next ()
-  "Helper for `yas-auto-next'."
-  (remove-hook 'post-command-hook #'yas--auto-next t)
-  (yas-next-field))
-
-(defmacro yas-auto-next (&rest body)
-  "Automatically advance to next field after eval'ing BODY."
-  (declare (indent 0) (debug t))
-  `(unless yas-moving-away-p
-     (prog1 ,@body
-       (add-hook 'post-command-hook #'yas--auto-next nil t))))
-
-(defun yas-key-to-value (alist)
-  (unless (or yas-moving-away-p
-              yas-modified-p)
-    (let ((key (read-key-sequence "")))
-      (when (stringp key)
-        (or (cdr (cl-find key alist :key #'car :test #'string=))
-            key)))))
-
-(defun yas-throw (text)
-  "Signal `yas-exception' with TEXT as the reason."
-  (signal 'yas-exception (list text)))
-(put 'yas-exception 'error-conditions '(error yas-exception))
-(put 'yas-exception 'error-message "[yas] Exception")
-
-(defun yas-verify-value (possibilities)
-  "Verify that the current field value is in POSSIBILITIES.
-Otherwise signal `yas-exception'."
-  (when (and yas-moving-away-p (not (member yas-text possibilities)))
-    (yas-throw (format "Field only allows %s" possibilities))))
-
-(defun yas-field-value (number)
-  "Get the string for field with NUMBER.
-
-Use this in primary and mirror transformations to get the text of
-other fields."
-  (let* ((snippet (car (yas-active-snippets)))
-         (field (and snippet
-                     (yas--snippet-find-field snippet number))))
-    (when field
-      (yas--field-text-for-display field))))
-
-(defun yas-text ()
-  "Return `yas-text' if that exists and is non-empty, else nil."
-  (if (and yas-text
-           (not (string= "" yas-text)))
-      yas-text))
-
-(defun yas-selected-text ()
-  "Return `yas-selected-text' if that exists and is non-empty, else nil."
-  (if (and yas-selected-text
-           (not (string= "" yas-selected-text)))
-      yas-selected-text))
-
-(defun yas--get-field-once (number &optional transform-fn)
-  (unless yas-modified-p
-    (if transform-fn
-        (funcall transform-fn (yas-field-value number))
-      (yas-field-value number))))
-
-(defun yas-default-from-field (number)
-  (unless yas-modified-p
-    (yas-field-value number)))
-
-(defun yas-inside-string ()
-  "Return non-nil if the point is inside a string according to font-lock."
-  (equal 'font-lock-string-face (get-char-property (1- (point)) 'face)))
-
-(defun yas-unimplemented (&optional missing-feature)
-  (if yas--current-template
-      (if (y-or-n-p (format "This snippet is unimplemented (missing %s) Visit the snippet definition? "
-                            (or missing-feature
-                                "something")))
-          (yas--visit-snippet-file-1 yas--current-template))
-    (message "No implementation. Missing %s" (or missing-feature "something"))))
-
-
-;;; Snippet expansion and field management
-
-(defvar yas--active-field-overlay nil
-  "Overlays the currently active field.")
-
-(defvar yas--active-snippets nil
-  "List of currently active snippets")
-(make-variable-buffer-local 'yas--active-snippets)
-
-(defvar yas--field-protection-overlays nil
-  "Two overlays protect the current active field.")
-
-(defvar yas-selected-text nil
-  "The selected region deleted on the last snippet expansion.")
-
-(defvar yas--start-column nil
-  "The column where the snippet expansion started.")
-
-(make-variable-buffer-local 'yas--active-field-overlay)
-(make-variable-buffer-local 'yas--field-protection-overlays)
-(put 'yas--active-field-overlay 'permanent-local t)
-(put 'yas--field-protection-overlays 'permanent-local t)
-
-(cl-defstruct (yas--snippet (:constructor yas--make-snippet (expand-env)))
-  "A snippet.
-
-..."
-  expand-env
-  (fields '())
-  (exit nil)
-  (id (yas--snippet-next-id) :read-only t)
-  (control-overlay nil)
-  active-field
-  ;; stacked expansion: the `previous-active-field' slot saves the
-  ;; active field where the child expansion took place
-  previous-active-field
-  force-exit)
-
-(cl-defstruct (yas--field (:constructor yas--make-field (number start end parent-field)))
-  "A field.
-
-NUMBER is the field number.
-START and END are mostly buffer markers, but see \"apropos markers-to-points\".
-PARENT-FIELD is a `yas--field' this field is nested under, or nil.
-MIRRORS is a list of `yas--mirror's
-TRANSFORM is a lisp form.
-MODIFIED-P is a boolean set to true once user inputs text.
-NEXT is another `yas--field' or `yas--mirror' or `yas--exit'.
-"
-  number
-  start end
-  parent-field
-  (mirrors '())
-  (transform nil)
-  (modified-p nil)
-  next)
-
-
-(cl-defstruct (yas--mirror (:constructor yas--make-mirror (start end transform)))
-  "A mirror.
-
-START and END are mostly buffer markers, but see \"apropos markers-to-points\".
-TRANSFORM is a lisp form.
-PARENT-FIELD is a `yas--field' this mirror is nested under, or nil.
-NEXT is another `yas--field' or `yas--mirror' or `yas--exit'
-DEPTH is a count of how many nested mirrors can affect this mirror"
-  start end
-  (transform nil)
-  parent-field
-  next
-  depth)
-
-(cl-defstruct (yas--exit (:constructor yas--make-exit (marker)))
-  marker
-  next)
-
-(defmacro yas--letenv (env &rest body)
-  "Evaluate BODY with bindings from ENV.
-ENV is a lisp expression that evaluates to list of elements with
-the form (VAR FORM), where VAR is a symbol and FORM is a lisp
-expression that evaluates to its value."
-  (declare (debug (form body)) (indent 1))
-  (let ((envvar (make-symbol "envvar")))
-    `(let ((,envvar ,env))
-       (cl-progv
-           (mapcar #'car ,envvar)
-           (mapcar (lambda (v-f) (eval (cadr v-f))) ,envvar)
-         ,@body))))
-
-(defun yas--snippet-map-markers (fun snippet)
-  "Apply FUN to all marker (sub)fields in SNIPPET.
-Update each field with the result of calling FUN."
-  (dolist (field (yas--snippet-fields snippet))
-    (setf (yas--field-start field) (funcall fun (yas--field-start field)))
-    (setf (yas--field-end field)   (funcall fun (yas--field-end field)))
-    (dolist (mirror (yas--field-mirrors field))
-      (setf (yas--mirror-start mirror) (funcall fun (yas--mirror-start mirror)))
-      (setf (yas--mirror-end mirror)   (funcall fun (yas--mirror-end mirror)))))
-  (let ((snippet-exit (yas--snippet-exit snippet)))
-    (when snippet-exit
-      (setf (yas--exit-marker snippet-exit)
-            (funcall fun (yas--exit-marker snippet-exit))))))
-
-(defun yas--snippet-live-p (snippet)
-  "Return non-nil if SNIPPET hasn't been committed."
-  (catch 'live
-    (yas--snippet-map-markers (lambda (m)
-                                (if (markerp m) m
-                                  (throw 'live nil)))
-                              snippet)
-    t))
-
-(defun yas--apply-transform (field-or-mirror field &optional empty-on-nil-p)
-  "Calculate transformed string for FIELD-OR-MIRROR from FIELD.
-
-If there is no transform for ht field, return nil.
-
-If there is a transform but it returns nil, return the empty
-string iff EMPTY-ON-NIL-P is true."
-  (let* ((yas-text (yas--field-text-for-display field))
-         (yas-modified-p (yas--field-modified-p field))
-         (transform (if (yas--mirror-p field-or-mirror)
-                        (yas--mirror-transform field-or-mirror)
-                      (yas--field-transform field-or-mirror)))
-         (start-point (if (yas--mirror-p field-or-mirror)
-                          (yas--mirror-start field-or-mirror)
-                        (yas--field-start field-or-mirror)))
-         (transformed (and transform
-                           (save-excursion
-                             (goto-char start-point)
-                             (let ((ret (yas--eval-for-string transform)))
-                               (or ret (and empty-on-nil-p "")))))))
-    transformed))
-
-(defsubst yas--replace-all (from to &optional text)
-  "Replace all occurrences from FROM to TO.
-
-With optional string TEXT do it in that string."
-  (if text
-      (replace-regexp-in-string (regexp-quote from) to text t t)
-    (goto-char (point-min))
-    (while (search-forward from nil t)
-      (replace-match to t t text))))
-
-(defun yas--snippet-find-field (snippet number)
-  (cl-find-if (lambda (field)
-                (eq number (yas--field-number field)))
-              (yas--snippet-fields snippet)))
-
-(defun yas--snippet-sort-fields (snippet)
-  "Sort the fields of SNIPPET in navigation order."
-  (setf (yas--snippet-fields snippet)
-        (sort (yas--snippet-fields snippet)
-              #'yas--snippet-field-compare)))
-
-(defun yas--snippet-field-compare (field1 field2)
-  "Compare FIELD1 and FIELD2.
-
-The field with a number is sorted first.  If they both have a
-number, compare through the number.  If neither have, compare
-through the field's start point"
-  (let ((n1 (yas--field-number field1))
-        (n2 (yas--field-number field2)))
-    (if n1
-        (if n2
-            (or (zerop n2) (and (not (zerop n1))
-                                (< n1 n2)))
-          (not (zerop n1)))
-      (if n2
-          (zerop n2)
-        (< (yas--field-start field1)
-           (yas--field-start field2))))))
-
-(defun yas--field-probably-deleted-p (snippet field)
-  "Guess if SNIPPET's FIELD should be skipped."
-  (and
-   ;; field must be zero length
-   ;;
-   (zerop (- (yas--field-start field) (yas--field-end field)))
-   ;; field must have been modified
-   ;;
-   (yas--field-modified-p field)
-   ;; either:
-   (or
-    ;;  1) it's a nested field
-    ;;
-    (yas--field-parent-field field)
-    ;;  2) ends just before the snippet end
-    ;;
-    (and (eq field (car (last (yas--snippet-fields snippet))))
-         (= (yas--field-start field) (overlay-end (yas--snippet-control-overlay snippet)))))
-   ;; the field numbered 0, just before the exit marker, should
-   ;; never be skipped
-   ;;
-   (not (and (yas--field-number field)
-             (zerop (yas--field-number field))))))
-
-(defun yas-active-snippets (&optional beg end)
-  "Return a sorted list of active snippets.
-The most recently-inserted snippets are returned first.
-
-Only snippets overlapping the region BEG ... END are returned.
-Overlapping has the same meaning as described in `overlays-in'.
-If END is omitted, it defaults to (1+ BEG).  If BEG is omitted,
-it defaults to point.  A non-nil, non-buffer position BEG is
-equivalent to a range covering the whole buffer."
-  (unless beg
-    (setq beg (point)))
-  (cond ((not (or (integerp beg) (markerp beg)))
-         (setq beg (point-min) end (point-max)))
-        ((not end)
-         (setq end (1+ beg))))
-  (if (and (eq beg (point-min))
-           (eq end (point-max)))
-      yas--active-snippets
-    ;; Note: don't use `mapcar' here, since it would allocate in
-    ;; proportion to the amount of overlays, even though the list of
-    ;; active snippets should be very small.
-    (let ((snippets nil))
-      (dolist (ov (overlays-in beg end))
-        (let ((snippet (overlay-get ov 'yas--snippet)))
-          ;; Snippets have multiple overlays, so check for dups.
-          (when (and snippet (not (memq snippet snippets)))
-            (push snippet snippets))))
-      (cl-sort snippets #'>= :key #'yas--snippet-id))))
-
-(define-obsolete-function-alias 'yas--snippets-at-point
-  'yas-active-snippets "0.12")
-
-(defun yas-next-field-or-maybe-expand ()
-  "Try to expand a snippet at a key before point.
-
-Otherwise delegate to `yas-next-field'."
-  (interactive)
-  (if yas-triggers-in-field
-      (let ((yas-fallback-behavior 'return-nil)
-            (active-field (overlay-get yas--active-field-overlay 'yas--field)))
-        (when active-field
-          (unless (yas-expand-from-trigger-key active-field)
-            (yas-next-field))))
-    (yas-next-field)))
-
-(defun yas-next-field-will-exit-p (&optional arg)
-  "Return non-nil if (yas-next-field ARG) would exit the current snippet."
-  (let ((snippet (car (yas-active-snippets)))
-        (active (overlay-get yas--active-field-overlay 'yas--field)))
-    (when snippet
-      (not (yas--find-next-field arg snippet active)))))
-
-(defun yas--find-next-field (n snippet active)
-  "Return the Nth field after the ACTIVE one in SNIPPET."
-  (let ((live-fields (cl-remove-if
-                      (lambda (field)
-                        (and (not (eq field active))
-                             (yas--field-probably-deleted-p snippet field)))
-                      (yas--snippet-fields snippet))))
-    (nth (abs n) (memq active (if (>= n 0) live-fields (reverse live-fields))))))
-
-(defun yas-next-field (&optional arg)
-  "Navigate to the ARGth next field.
-
-If there's none, exit the snippet."
-  (interactive)
-  (unless arg (setq arg 1))
-  (let* ((active-field (overlay-get yas--active-field-overlay 'yas--field))
-         (snippet (car (yas-active-snippets (yas--field-start active-field)
-                                            (yas--field-end active-field))))
-         (target-field (yas--find-next-field arg snippet active-field)))
-    (yas--letenv (yas--snippet-expand-env snippet)
-      ;; Apply transform to active field.
-      (when active-field
-        (let ((yas-moving-away-p t))
-          (when (yas--field-update-display active-field)
-            (yas--update-mirrors snippet))))
-      ;; Now actually move...
-      (if target-field
-          (yas--move-to-field snippet target-field)
-        (yas-exit-snippet snippet)))))
-
-(defun yas--place-overlays (snippet field)
-  "Correctly place overlays for SNIPPET's FIELD."
-  (yas--make-move-field-protection-overlays snippet field)
-  ;; Only move active field overlays if this is field is from the
-  ;; innermost snippet.
-  (when (eq snippet (car (yas-active-snippets (1- (yas--field-start field))
-                                              (1+ (yas--field-end field)))))
-    (yas--make-move-active-field-overlay snippet field)))
-
-(defun yas--move-to-field (snippet field)
-  "Update SNIPPET to move to field FIELD.
-
-Also create some protection overlays"
-  (goto-char (yas--field-start field))
-  (yas--place-overlays snippet field)
-  (overlay-put yas--active-field-overlay 'yas--snippet snippet)
-  (overlay-put yas--active-field-overlay 'yas--field field)
-  (let ((number (yas--field-number field)))
-    ;; check for the special ${0: ...} field
-    (if (and number (zerop number))
-        (progn
-          (set-mark (yas--field-end field))
-          (setf (yas--snippet-force-exit snippet)
-                (or (yas--field-transform field)
-                    t)))
-      ;; make this field active
-      (setf (yas--snippet-active-field snippet) field)
-      ;; primary field transform: first call to snippet transform
-      (unless (yas--field-modified-p field)
-        (if (yas--field-update-display field)
-            (yas--update-mirrors snippet)
-          (setf (yas--field-modified-p field) nil))))))
-
-(defun yas-prev-field ()
-  "Navigate to prev field.  If there's none, exit the snippet."
-  (interactive)
-  (yas-next-field -1))
-
-(defun yas-abort-snippet (&optional snippet)
-  (interactive)
-  (let ((snippet (or snippet
-                     (car (yas-active-snippets)))))
-    (when snippet
-      (setf (yas--snippet-force-exit snippet) t))))
-
-(defun yas-exit-snippet (snippet)
-  "Goto exit-marker of SNIPPET."
-  (interactive (list (cl-first (yas-active-snippets))))
-  (when snippet
-    (setf (yas--snippet-force-exit snippet) t)
-    (goto-char (if (yas--snippet-exit snippet)
-                   (yas--exit-marker (yas--snippet-exit snippet))
-                 (overlay-end (yas--snippet-control-overlay snippet))))))
-
-(defun yas-exit-all-snippets ()
-  "Exit all snippets."
-  (interactive)
-  (mapc #'(lambda (snippet)
-            (yas-exit-snippet snippet)
-            (yas--check-commit-snippet))
-        (yas-active-snippets 'all)))
-
-
-;;; Some low level snippet-routines:
-
-(defvar yas--inhibit-overlay-hooks nil
-  "Bind this temporarily to non-nil to prevent running `yas--on-*-modification'.")
-
-(defvar yas-snippet-beg nil "Beginning position of the last snippet committed.")
-(defvar yas-snippet-end nil "End position of the last snippet committed.")
-
-(defun yas--commit-snippet (snippet)
-  "Commit SNIPPET, but leave point as it is.
-
-This renders the snippet as ordinary text."
-
-  (let ((control-overlay (yas--snippet-control-overlay snippet)))
-    ;;
-    ;; Save the end of the moribund snippet in case we need to revive it
-    ;; its original expansion.
-    ;;
-    (when (and control-overlay
-               (overlay-buffer control-overlay))
-      (setq yas-snippet-beg (overlay-start control-overlay))
-      (setq yas-snippet-end (overlay-end control-overlay))
-      (delete-overlay control-overlay)
-      (setf (yas--snippet-control-overlay snippet) nil))
-
-    (let ((yas--inhibit-overlay-hooks t))
-      (when yas--active-field-overlay
-        (delete-overlay yas--active-field-overlay))
-      (when yas--field-protection-overlays
-        (mapc #'delete-overlay yas--field-protection-overlays)))
-
-    ;; stacked expansion: if the original expansion took place from a
-    ;; field, make sure we advance it here at least to
-    ;; `yas-snippet-end'...
-    ;;
-    (let ((previous-field (yas--snippet-previous-active-field snippet)))
-      (when (and yas-snippet-end previous-field)
-        (yas--advance-end-maybe previous-field yas-snippet-end)))
-
-    ;; Convert all markers to points,
-    ;;
-    (yas--markers-to-points snippet)
-
-    ;; It's no longer an active snippet.
-    (cl-callf2 delq snippet yas--active-snippets)
-
-    ;; Take care of snippet revival on undo.
-    (if (and yas-snippet-revival (listp buffer-undo-list))
-        (push `(apply yas--snippet-revive ,yas-snippet-beg ,yas-snippet-end ,snippet)
-              buffer-undo-list)
-      ;; Dismember the snippet... this is useful if we get called
-      ;; again from `yas--take-care-of-redo'....
-      (setf (yas--snippet-fields snippet) nil)))
-
-  (yas--message 4 "Snippet %s exited." (yas--snippet-id snippet)))
-
-(defvar yas--snippets-to-move nil)
-(make-variable-buffer-local 'yas--snippets-to-move)
-
-(defun yas--prepare-snippets-for-move (beg end buf pos)
-  "Gather snippets in BEG..END for moving to POS in BUF."
-  (let ((to-move nil)
-        (snippets (yas-active-snippets beg end))
-        (dst-base-line (with-current-buffer buf
-                         (count-lines (point-min) pos))))
-    (when snippets
-      (dolist (snippet snippets)
-        (yas--snippet-map-markers
-         (lambda (m)
-           (goto-char m)
-           (beginning-of-line)
-           (prog1 (cons (count-lines (point-min) (point))
-                        (yas--snapshot-marker-location m))
-             (set-marker m nil)))
-         snippet)
-        (let ((ctrl-ov (yas--snapshot-overlay-line-location
-                        (yas--snippet-control-overlay snippet))))
-          (push (list ctrl-ov dst-base-line snippet) to-move)
-          (delete-overlay (car ctrl-ov))))
-      (with-current-buffer buf
-        (setq yas--snippets-to-move (nconc to-move yas--snippets-to-move))))))
-
-(defun yas--on-buffer-kill ()
-  ;; Org mode uses temp buffers for fontification and "native tab",
-  ;; move all the snippets to the original org-mode buffer when it's
-  ;; killed.
-  (let ((org-marker nil))
-    (when (and yas-minor-mode
-               (or (bound-and-true-p org-edit-src-from-org-mode)
-                   (bound-and-true-p org-src--from-org-mode))
-               (markerp
-                (setq org-marker
-                      (or (bound-and-true-p org-edit-src-beg-marker)
-                          (bound-and-true-p org-src--beg-marker)))))
-      (yas--prepare-snippets-for-move
-       (point-min) (point-max)
-       (marker-buffer org-marker) org-marker))))
-
-(add-hook 'kill-buffer-hook #'yas--on-buffer-kill)
-
-(defun yas--finish-moving-snippets ()
-  "Finish job started in `yas--prepare-snippets-for-move'."
-  (cl-loop for (ctrl-ov base-line snippet) in yas--snippets-to-move
-           for base-pos = (progn (goto-char (point-min))
-                                 (forward-line base-line) (point))
-           do (yas--snippet-map-markers
-               (lambda (l-m-r-w)
-                 (goto-char base-pos)
-                 (forward-line (nth 0 l-m-r-w))
-                 (save-restriction
-                   (narrow-to-region (line-beginning-position)
-                                     (line-end-position))
-                   (yas--restore-marker-location (cdr l-m-r-w)))
-                 (nth 1 l-m-r-w))
-               snippet)
-           (goto-char base-pos)
-           (yas--restore-overlay-location ctrl-ov)
-           (yas--maybe-move-to-active-field snippet))
-  (setq yas--snippets-to-move nil))
-
-(defun yas--safely-call-fun (fun)
-  "Call FUN and catch any errors."
-  (condition-case error
-      (funcall fun)
-    ((debug error)
-     (yas--message 2 "Error running %s: %s" fun
-                   (error-message-string error)))))
-
-(defun yas--safely-run-hook (hook)
-  "Call HOOK's functions.
-HOOK should be a symbol, a hook variable, as in `run-hooks'."
-  (let ((debug-on-error (and (not (memq yas-good-grace '(t hooks)))
-                             debug-on-error)))
-    (yas--safely-call-fun (apply-partially #'run-hooks hook))))
-
-(defun yas--check-commit-snippet ()
-  "Check if point exited the currently active field of the snippet.
-
-If so cleans up the whole snippet up."
-  (let* ((snippet-exit-transform nil)
-         (exited-snippets-p nil)
-         ;; Record the custom snippet `yas-after-exit-snippet-hook'
-         ;; set in the expand-env field.
-         (snippet-exit-hook yas-after-exit-snippet-hook))
-    (dolist (snippet yas--active-snippets)
-      (let ((active-field (yas--snippet-active-field snippet)))
-        (yas--letenv (yas--snippet-expand-env snippet)
-          ;; Note: the `force-exit' field could be a transform in case of
-          ;; ${0: ...}, see `yas--move-to-field'.
-          (setq snippet-exit-transform (yas--snippet-force-exit snippet))
-          (cond ((or snippet-exit-transform
-                     (not (and active-field (yas--field-contains-point-p active-field))))
-                 (setf (yas--snippet-force-exit snippet) nil)
-                 (setq snippet-exit-hook yas-after-exit-snippet-hook)
-                 (yas--commit-snippet snippet)
-                 (setq exited-snippets-p t))
-                ((and active-field
-                      (or (not yas--active-field-overlay)
-                          (not (overlay-buffer yas--active-field-overlay))))
-                 ;;
-                 ;; stacked expansion: this case is mainly for recent
-                 ;; snippet exits that place us back int the field of
-                 ;; another snippet
-                 ;;
-                 (save-excursion
-                   (yas--move-to-field snippet active-field)
-                   (yas--update-mirrors snippet)))
-                (t
-                 nil)))))
-    (unless (or yas--active-snippets (not exited-snippets-p))
-      (when snippet-exit-transform
-        (yas--eval-for-effect snippet-exit-transform))
-      (let ((yas-after-exit-snippet-hook snippet-exit-hook))
-        (yas--safely-run-hook 'yas-after-exit-snippet-hook)))))
-
-;; Apropos markers-to-points:
-;;
-;; This was found useful for performance reasons, so that an excessive
-;; number of live markers aren't kept around in the
-;; `buffer-undo-list'.  We don't reuse the original marker object
-;; because that leaves an unreadable object in the history list and
-;; undo-tree persistence has trouble with that.
-;;
-;; This shouldn't bring horrible problems with undo/redo, but you
-;; never know.
-;;
-(defun yas--markers-to-points (snippet)
-  "Save all markers of SNIPPET as positions."
-  (yas--snippet-map-markers (lambda (m)
-                              (prog1 (marker-position m)
-                                (set-marker m nil)))
-                            snippet))
-
-(defun yas--points-to-markers (snippet)
-  "Restore SNIPPET's marker positions, saved by `yas--markers-to-points'."
-  (yas--snippet-map-markers #'copy-marker snippet))
-
-(defun yas--maybe-move-to-active-field (snippet)
-  "Try to move to SNIPPET's active (or first) field and return it if found."
-  (let ((target-field (or (yas--snippet-active-field snippet)
-                          (car (yas--snippet-fields snippet)))))
-    (when target-field
-      (yas--move-to-field snippet target-field)
-      target-field)))
-
-(defun yas--field-contains-point-p (field &optional point)
-  (let ((point (or point
-                   (point))))
-    (and (>= point (yas--field-start field))
-         (<= point (yas--field-end field)))))
-
-(defun yas--field-text-for-display (field)
-  "Return the propertized display text for field FIELD."
-  (buffer-substring (yas--field-start field) (yas--field-end field)))
-
-(defun yas--undo-in-progress ()
-  "True if some kind of undo is in progress."
-  (or undo-in-progress
-      (eq this-command 'undo)
-      (eq this-command 'redo)))
-
-(defun yas--make-control-overlay (snippet start end)
-  "Create the control overlay that surrounds the snippet and
-holds the keymap."
-  (let ((overlay (make-overlay start
-                               end
-                               nil
-                               nil
-                               t)))
-    (overlay-put overlay 'keymap yas-keymap)
-    (overlay-put overlay 'priority yas-overlay-priority)
-    (overlay-put overlay 'yas--snippet snippet)
-    overlay))
-
-(defun yas-current-field ()
-  "Return the currently active field."
-  (and yas--active-field-overlay
-       (overlay-buffer yas--active-field-overlay)
-       (overlay-get yas--active-field-overlay 'yas--field)))
-
-(defun yas--maybe-clear-field-filter (cmd)
-  "Return CMD if at start of unmodified snippet field.
-Use as a `:filter' argument for a conditional keybinding."
-  (let ((field (yas-current-field)))
-    (when (and field
-               (not (yas--field-modified-p field))
-               (eq (point) (marker-position (yas--field-start field))))
-      cmd)))
-
-(defun yas-skip-and-clear-field (&optional field)
-  "Clears unmodified FIELD if at field start, skips to next tab."
-  (interactive)
-  (yas--skip-and-clear (or field (yas-current-field)))
-  (yas-next-field 1))
-
-(defun yas-clear-field (&optional field)
-  "Clears unmodified FIELD if at field start."
-  (interactive)
-  (yas--skip-and-clear (or field (yas-current-field))))
-
-(defun yas-skip-and-clear-or-delete-char (&optional field)
-  "Clears unmodified field if at field start, skips to next tab.
-
-Otherwise deletes a character normally by calling `delete-char'."
-  (interactive)
-  (declare (obsolete "Bind to `yas-maybe-skip-and-clear-field' instead." "0.13"))
-  (cond ((yas--maybe-clear-field-filter t)
-         (yas--skip-and-clear (or field (yas-current-field)))
-         (yas-next-field 1))
-        (t (call-interactively 'delete-char))))
-
-(defun yas--skip-and-clear (field &optional from)
-  "Deletes the region of FIELD and sets it's modified state to t.
-If given, FROM indicates position to start at instead of FIELD's beginning."
-  ;; Just before skipping-and-clearing the field, mark its children
-  ;; fields as modified, too. If the children have mirrors-in-fields
-  ;; this prevents them from updating erroneously (we're skipping and
-  ;; deleting!).
-  ;;
-  (yas--mark-this-and-children-modified field)
-  (unless (= (yas--field-start field) (yas--field-end field))
-    (delete-region (or from (yas--field-start field)) (yas--field-end field))))
-
-(defun yas--mark-this-and-children-modified (field)
-  (setf (yas--field-modified-p field) t)
-  (let ((fom (yas--field-next field)))
-    (while (and fom
-                (yas--fom-parent-field fom))
-      (when (and (eq (yas--fom-parent-field fom) field)
-                 (yas--field-p fom))
-        (yas--mark-this-and-children-modified fom))
-      (setq fom (yas--fom-next fom)))))
-
-(defun yas--make-move-active-field-overlay (snippet field)
-  "Place the active field overlay in SNIPPET's FIELD.
-
-Move the overlay, or create it if it does not exit."
-  (if (and yas--active-field-overlay
-           (overlay-buffer yas--active-field-overlay))
-      (move-overlay yas--active-field-overlay
-                    (yas--field-start field)
-                    (yas--field-end field))
-    (setq yas--active-field-overlay
-          (make-overlay (yas--field-start field)
-                        (yas--field-end field)
-                        nil nil t))
-    (overlay-put yas--active-field-overlay 'priority yas-overlay-priority)
-    (overlay-put yas--active-field-overlay 'face 'yas-field-highlight-face)
-    (overlay-put yas--active-field-overlay 'yas--snippet snippet)
-    (overlay-put yas--active-field-overlay 'modification-hooks '(yas--on-field-overlay-modification))
-    (overlay-put yas--active-field-overlay 'insert-in-front-hooks
-                 '(yas--on-field-overlay-modification))
-    (overlay-put yas--active-field-overlay 'insert-behind-hooks
-                 '(yas--on-field-overlay-modification))))
-
-(defun yas--skip-and-clear-field-p (field beg _end length)
-  "Tell if newly modified FIELD should be cleared and skipped.
-BEG, END and LENGTH like overlay modification hooks."
-  (and (= length 0) ; A 0 pre-change length indicates insertion.
-       (= beg (yas--field-start field)) ; Insertion at field start?
-       (not (yas--field-modified-p field))))
-
-(defun yas--on-field-overlay-modification (overlay after? beg end &optional length)
-  "Clears the field and updates mirrors, conditionally.
-
-Only clears the field if it hasn't been modified and point is at
-field start.  This hook does nothing if an undo is in progress."
-  (unless (or (not after?)
-              yas--inhibit-overlay-hooks
-              (not (overlayp yas--active-field-overlay)) ; Avoid Emacs bug #21824.
-              ;; If a single change hits multiple overlays of the same
-              ;; snippet, then we delete the snippet the first time,
-              ;; and then subsequent calls get a deleted overlay.
-              ;; Don't delete the snippet again!
-              (not (overlay-buffer overlay))
-              (yas--undo-in-progress))
-    (let* ((inhibit-modification-hooks nil)
-           (yas--inhibit-overlay-hooks t)
-           (field (overlay-get overlay 'yas--field))
-           (snippet (overlay-get yas--active-field-overlay 'yas--snippet)))
-      (if (yas--snippet-live-p snippet)
-          (save-match-data
-            (yas--letenv (yas--snippet-expand-env snippet)
-              (when (yas--skip-and-clear-field-p field beg end length)
-                ;; We delete text starting from the END of insertion.
-                (yas--skip-and-clear field end))
-              (setf (yas--field-modified-p field) t)
-              ;; Adjust any pending active fields in case of stacked
-              ;; expansion.
-              (let ((pfield field)
-                    (psnippets (yas-active-snippets beg end)))
-                (while (and pfield psnippets)
-                  (let ((psnippet (pop psnippets)))
-                    (cl-assert (memq pfield (yas--snippet-fields psnippet)))
-                    (yas--advance-end-maybe pfield (overlay-end overlay))
-                    (setq pfield (yas--snippet-previous-active-field psnippet)))))
-              (save-excursion
-                (yas--field-update-display field))
-              (yas--update-mirrors snippet)))
-        (lwarn '(yasnippet zombie) :warning "Killing zombie snippet!")
-        (delete-overlay overlay)))))
-
-(defun yas--auto-fill ()
-  (let* ((orig-point (point))
-         (end (progn (forward-paragraph) (point)))
-         (beg (progn (backward-paragraph) (point)))
-         (snippets (yas-active-snippets beg end))
-         (remarkers nil)
-         (reoverlays nil))
-    (dolist (snippet snippets)
-      (dolist (m (yas--collect-snippet-markers snippet))
-        (when (and (<= beg m) (<= m end))
-          (push (yas--snapshot-marker-location m beg end) remarkers)))
-      (push (yas--snapshot-overlay-location
-             (yas--snippet-control-overlay snippet) beg end)
-            reoverlays))
-    (goto-char orig-point)
-    (let ((yas--inhibit-overlay-hooks t))
-      (if (null yas--original-auto-fill-function)
-          ;; Try to get more info on #873/919.
-          (let ((yas--fill-fun-values `((t ,(default-value 'yas--original-auto-fill-function))))
-                (fill-fun-values `((t ,(default-value 'auto-fill-function))))
-                ;; Listing 2 buffers with the same value is enough
-                (print-length 3))
-            (save-current-buffer
-              (dolist (buf (let ((bufs (buffer-list)))
-                             ;; List the current buffer first.
-                             (setq bufs (cons (current-buffer)
-                                              (remq (current-buffer) bufs)))))
-                (set-buffer buf)
-                (let* ((yf-cell (assq yas--original-auto-fill-function
-                                      yas--fill-fun-values))
-                       (af-cell (assq auto-fill-function fill-fun-values)))
-                  (when (local-variable-p 'yas--original-auto-fill-function)
-                    (if yf-cell (setcdr yf-cell (cons buf (cdr yf-cell)))
-                      (push (list yas--original-auto-fill-function buf) yas--fill-fun-values)))
-                  (when (local-variable-p 'auto-fill-function)
-                    (if af-cell (setcdr af-cell (cons buf (cdr af-cell)))
-                      (push (list auto-fill-function buf) fill-fun-values))))))
-                 (lwarn '(yasnippet auto-fill bug) :error
-                        "`yas--original-auto-fill-function' unexpectedly nil in %S!  Disabling auto-fill.
-  %S
-  `auto-fill-function': %S\n%s"
-                        (current-buffer) yas--fill-fun-values fill-fun-values
-                        (if (fboundp 'backtrace--print-frame)
-                            (with-output-to-string
-                              (mapc (lambda (frame)
-                                      (apply #'backtrace--print-frame frame))
-                                    yas--watch-auto-fill-backtrace))
-                          ""))
-                 ;; Try to avoid repeated triggering of this bug.
-                 (auto-fill-mode -1)
-                 ;; Don't pop up more than once in a session (still log though).
-                 (defvar warning-suppress-types) ; `warnings' is autoloaded by `lwarn'.
-                 (add-to-list 'warning-suppress-types '(yasnippet auto-fill bug)))
-        (funcall yas--original-auto-fill-function)))
-    (save-excursion
-      (setq end (progn (forward-paragraph) (point)))
-      (setq beg (progn (backward-paragraph) (point))))
-    (save-excursion
-      (save-restriction
-        (narrow-to-region beg end)
-        (mapc #'yas--restore-marker-location remarkers)
-        (mapc #'yas--restore-overlay-location reoverlays))
-      (mapc (lambda (snippet)
-              (yas--letenv (yas--snippet-expand-env snippet)
-                (yas--update-mirrors snippet)))
-            snippets))))
-
-
-;;; Apropos protection overlays:
-;;
-;; These exist for nasty users who will try to delete parts of the
-;; snippet outside the active field. Actual protection happens in
-;; `yas--on-protection-overlay-modification'.
-;;
-;; As of github #537 this no longer inhibits the command by issuing an
-;; error: all the snippets at point, including nested snippets, are
-;; automatically commited and the current command can proceed.
-;;
-(defun yas--make-move-field-protection-overlays (snippet field)
-  "Place protection overlays surrounding SNIPPET's FIELD.
-
-Move the overlays, or create them if they do not exit."
-  (let ((start (yas--field-start field))
-        (end (yas--field-end field)))
-    ;; First check if the (1+ end) is contained in the buffer,
-    ;; otherwise we'll have to do a bit of cheating and silently
-    ;; insert a newline. the `(1+ (buffer-size))' should prevent this
-    ;; when using stacked expansion
-    ;;
-    (when (< (buffer-size) end)
-      (save-excursion
-        (let ((yas--inhibit-overlay-hooks t))
-          (goto-char (point-max))
-          (newline))))
-    ;; go on to normal overlay creation/moving
-    ;;
-    (cond ((and yas--field-protection-overlays
-                (cl-every #'overlay-buffer yas--field-protection-overlays))
-           (move-overlay (nth 0 yas--field-protection-overlays)
-                         (1- start) start)
-           (move-overlay (nth 1 yas--field-protection-overlays) end (1+ end)))
-          (t
-           (setq yas--field-protection-overlays
-                 (list (make-overlay (1- start) start nil t nil)
-                       (make-overlay end (1+ end) nil t nil)))
-           (dolist (ov yas--field-protection-overlays)
-             (overlay-put ov 'face 'yas--field-debug-face)
-             (overlay-put ov 'yas--snippet snippet)
-             ;; (overlay-put ov 'evaporate t)
-             (overlay-put ov 'modification-hooks '(yas--on-protection-overlay-modification)))))))
-
-(defun yas--on-protection-overlay-modification (_overlay after? beg end &optional length)
-  "Commit the snippet if the protection overlay is being killed."
-  (unless (or yas--inhibit-overlay-hooks
-              (not after?)
-              (= length (- end beg)) ; deletion or insertion
-              (yas--undo-in-progress))
-    (let ((snippets (yas-active-snippets)))
-      (yas--message 2 "Committing snippets. Action would destroy a protection overlay.")
-      (cl-loop for snippet in snippets
-               do (yas--commit-snippet snippet)))))
-
-(add-to-list 'debug-ignored-errors "^Exit the snippet first!$")
-
-
-;;; Snippet expansion and "stacked" expansion:
-;;
-;; Stacked expansion is when you try to expand a snippet when already
-;; inside a snippet expansion.
-;;
-;; The parent snippet does not run its fields modification hooks
-;; (`yas--on-field-overlay-modification' and
-;; `yas--on-protection-overlay-modification') while the child snippet
-;; is active. This means, among other things, that the mirrors of the
-;; parent snippet are not updated, this only happening when one exits
-;; the child snippet.
-;;
-;; Unfortunately, this also puts some ugly (and not fully-tested)
-;; bits of code in `yas-expand-snippet' and
-;; `yas--commit-snippet'. I've tried to mark them with "stacked
-;; expansion:".
-;;
-;; This was thought to be safer in an undo/redo perspective, but
-;; maybe the correct implementation is to make the globals
-;; `yas--active-field-overlay' and `yas--field-protection-overlays' be
-;; snippet-local and be active even while the child snippet is
-;; running. This would mean a lot of overlay modification hooks
-;; running, but if managed correctly (including overlay priorities)
-;; they should account for all situations...
-
-(defun yas-expand-snippet (snippet &optional start end expand-env)
-  "Expand SNIPPET at current point.
-
-Text between START and END will be deleted before inserting
-template.  EXPAND-ENV is a list of (SYM VALUE) let-style dynamic
-bindings considered when expanding the snippet.  If omitted, use
-SNIPPET's expand-env field.
-
-SNIPPET may be a snippet structure (e.g., as returned by
-`yas-lookup-snippet'), or just a snippet body (which is a string
-for normal snippets, and a list for command snippets)."
-  (cl-assert (and yas-minor-mode
-                  (memq 'yas--post-command-handler post-command-hook))
-             nil
-             "[yas] `yas-expand-snippet' needs properly setup `yas-minor-mode'")
-  (run-hooks 'yas-before-expand-snippet-hook)
-
-  (let* ((clear-field
-          (let ((field (and yas--active-field-overlay
-                            (overlay-buffer yas--active-field-overlay)
-                            (overlay-get yas--active-field-overlay 'yas--field))))
-            (and field (yas--skip-and-clear-field-p
-                        field (point) (point) 0)
-                 field)))
-         (start (cond (start)
-                      ((region-active-p)
-                       (region-beginning))
-                      (clear-field
-                       (yas--field-start clear-field))
-                      (t (point))))
-         (end (cond (end)
-                    ((region-active-p)
-                     (region-end))
-                    (clear-field
-                     (yas--field-end clear-field))
-                    (t (point))))
-         (to-delete (and (> end start)
-                         (buffer-substring-no-properties start end)))
-         (yas-selected-text
-          (cond (yas-selected-text)
-                ((and (region-active-p)
-                      (not clear-field))
-                 to-delete))))
-    (goto-char start)
-    (setq yas--indent-original-column (current-column))
-    ;; Delete the region to delete, this *does* get undo-recorded.
-    (when to-delete
-      (delete-region start end))
-
-    (let ((content (if (yas--template-p snippet)
-                       (yas--template-content snippet)
-                     snippet)))
-      (when (and (not expand-env) (yas--template-p snippet))
-        (setq expand-env (yas--template-expand-env snippet)))
-      (cond ((listp content)
-             ;; x) This is a snippet-command.
-             (yas--eval-for-effect content))
-            (t
-             ;; x) This is a snippet-snippet :-)
-             (setq yas--start-column (current-column))
-             ;; Stacked expansion: also shoosh the overlay modification hooks.
-             (let ((yas--inhibit-overlay-hooks t))
-               (setq snippet
-                     (yas--snippet-create content expand-env start (point))))
-
-             ;; Stacked-expansion: This checks for stacked expansion, save the
-             ;; `yas--previous-active-field' and advance its boundary.
-             (let ((existing-field (and yas--active-field-overlay
-                                        (overlay-buffer yas--active-field-overlay)
-                                        (overlay-get yas--active-field-overlay 'yas--field))))
-               (when existing-field
-                 (setf (yas--snippet-previous-active-field snippet) existing-field)
-                 (yas--advance-end-maybe existing-field (overlay-end yas--active-field-overlay))))
-
-             ;; Exit the snippet immediately if no fields.
-             (unless (yas--snippet-fields snippet)
-               (yas-exit-snippet snippet))
-
-             ;; Now, schedule a move to the first field.
-             (let ((first-field (car (yas--snippet-fields snippet))))
-               (when first-field
-                 (sit-for 0) ;; fix issue 125
-                 (yas--letenv (yas--snippet-expand-env snippet)
-                   (yas--move-to-field snippet first-field))
-                 (when (and (eq (yas--field-number first-field) 0)
-                            (> (length (yas--field-text-for-display
-                                        first-field))
-                               0))
-                   ;; Keep region for ${0:exit text}.
-                   (setq deactivate-mark nil))))
-             (yas--message 4 "snippet %d expanded." (yas--snippet-id snippet))
-             t)))))
-
-(defun yas--take-care-of-redo (snippet)
-  "Commits SNIPPET, which in turn pushes an undo action for reviving it.
-
-Meant to exit in the `buffer-undo-list'."
-  ;; slightly optimize: this action is only needed for snippets with
-  ;; at least one field
-  (when (yas--snippet-fields snippet)
-    (yas--commit-snippet snippet)))
-
-(defun yas--snippet-revive (beg end snippet)
-  "Revives SNIPPET and creates a control overlay from BEG to END.
-
-BEG and END are, we hope, the original snippets boundaries.
-All the markers/points exiting existing inside SNIPPET should point
-to their correct locations *at the time the snippet is revived*.
-
-After revival, push the `yas--take-care-of-redo' in the
-`buffer-undo-list'"
-  ;; Reconvert all the points to markers
-  (yas--points-to-markers snippet)
-  ;; When at least one editable field existed in the zombie snippet,
-  ;; try to revive the whole thing...
-  (when (yas--maybe-move-to-active-field snippet)
-    (setf (yas--snippet-control-overlay snippet) (yas--make-control-overlay snippet beg end))
-    (overlay-put (yas--snippet-control-overlay snippet) 'yas--snippet snippet)
-    (when (listp buffer-undo-list)
-      (push `(apply yas--take-care-of-redo ,snippet)
-            buffer-undo-list))))
-
-(defun yas--snippet-create (content expand-env begin end)
-  "Create a snippet from a template inserted at BEGIN to END.
-
-Returns the newly created snippet."
-  (save-restriction
-    (let ((snippet (yas--make-snippet expand-env)))
-      (yas--letenv expand-env
-        ;; Put a single undo action for the expanded snippet's
-        ;; content.
-        (let ((buffer-undo-list t)
-              (inhibit-modification-hooks t))
-          ;; Some versions of cc-mode fail when inserting snippet
-          ;; content in a narrowed buffer, so make sure to insert
-          ;; before narrowing.  Furthermore, call before and after
-          ;; change functions manually, otherwise cc-mode's cache can
-          ;; get messed up.
-          (goto-char begin)
-          (run-hook-with-args 'before-change-functions begin begin)
-          (insert content)
-          (setq end (+ end (length content)))
-          (narrow-to-region begin end)
-          (goto-char (point-min))
-          (yas--snippet-parse-create snippet)
-          (run-hook-with-args 'after-change-functions (point-min) (point-max) 0))
-        (when (listp buffer-undo-list)
-          (push (cons (point-min) (point-max))
-                buffer-undo-list))
-
-        ;; Indent, collecting undo information normally.
-        (yas--indent snippet)
-
-        ;; Follow up with `yas--take-care-of-redo' on the newly
-        ;; inserted snippet boundaries.
-        (when (listp buffer-undo-list)
-          (push `(apply yas--take-care-of-redo ,snippet)
-                buffer-undo-list))
-
-        ;; Sort and link each field
-        (yas--snippet-sort-fields snippet)
-
-        ;; Create keymap overlay for snippet
-        (setf (yas--snippet-control-overlay snippet)
-              (yas--make-control-overlay snippet (point-min) (point-max)))
-
-        ;; Move to end
-        (goto-char (point-max))
-
-        (push snippet yas--active-snippets)
-        snippet))))
-
-
-;;; Apropos adjacencies and "fom's":
-;;
-;; Once the $-constructs bits like "$n" and "${:n" are deleted in the
-;; recently expanded snippet, we might actually have many fields,
-;; mirrors (and the snippet exit) in the very same position in the
-;; buffer. Therefore we need to single-link the
-;; fields-or-mirrors-or-exit (which I have abbreviated to "fom")
-;; according to their original positions in the buffer.
-;;
-;; Then we have operation `yas--advance-end-maybe' and
-;; `yas--advance-start-maybe', which conditionally push the starts and
-;; ends of these foms down the chain.
-;;
-;; This allows for like the printf with the magic ",":
-;;
-;;   printf ("${1:%s}\\n"${1:$(if (string-match "%" text) "," "\);")}  \
-;;   $2${1:$(if (string-match "%" text) "\);" "")}$0
-;;
-(defun yas--fom-start (fom)
-  (cond ((yas--field-p fom)
-         (yas--field-start fom))
-        ((yas--mirror-p fom)
-         (yas--mirror-start fom))
-        (t
-         (yas--exit-marker fom))))
-
-(defun yas--fom-end (fom)
-  (cond ((yas--field-p fom)
-         (yas--field-end fom))
-        ((yas--mirror-p fom)
-         (yas--mirror-end fom))
-        (t
-         (yas--exit-marker fom))))
-
-(defun yas--fom-next (fom)
-  (cond ((yas--field-p fom)
-         (yas--field-next fom))
-        ((yas--mirror-p fom)
-         (yas--mirror-next fom))
-        (t
-         (yas--exit-next fom))))
-
-(defun yas--fom-parent-field (fom)
-  (cond ((yas--field-p fom)
-         (yas--field-parent-field fom))
-        ((yas--mirror-p fom)
-         (yas--mirror-parent-field fom))
-        (t
-         nil)))
-
-(defun yas--calculate-adjacencies (snippet)
-  "Calculate adjacencies for fields or mirrors of SNIPPET.
-
-This is according to their relative positions in the buffer, and
-has to be called before the $-constructs are deleted."
-  (let* ((fom-set-next-fom
-         (lambda (fom nextfom)
-           (cond ((yas--field-p fom)
-                  (setf (yas--field-next fom) nextfom))
-                 ((yas--mirror-p fom)
-                  (setf (yas--mirror-next fom) nextfom))
-                 (t
-                  (setf (yas--exit-next fom) nextfom)))))
-        (compare-fom-begs
-         (lambda (fom1 fom2)
-           (if (= (yas--fom-start fom2) (yas--fom-start fom1))
-               (yas--mirror-p fom2)
-             (>= (yas--fom-start fom2) (yas--fom-start fom1)))))
-        (link-foms fom-set-next-fom))
-    ;; make some yas--field, yas--mirror and yas--exit soup
-    (let ((soup))
-      (when (yas--snippet-exit snippet)
-        (push (yas--snippet-exit snippet) soup))
-      (dolist (field (yas--snippet-fields snippet))
-        (push field soup)
-        (dolist (mirror (yas--field-mirrors field))
-          (push mirror soup)))
-      (setq soup
-            (sort soup compare-fom-begs))
-      (when soup
-        (cl-reduce link-foms soup)))))
-
-(defun yas--calculate-simple-fom-parentage (snippet fom)
-  "Discover if FOM is parented by some field in SNIPPET.
-
-Use the tightest containing field if more than one field contains
-the mirror.  Intended to be called *before* the dollar-regions are
-deleted."
-  (let ((min (point-min))
-        (max (point-max)))
-    (dolist (field (remq fom (yas--snippet-fields snippet)))
-      (when (and (<= (yas--field-start field) (yas--fom-start fom))
-                 (<= (yas--fom-end fom) (yas--field-end field))
-               (< min (yas--field-start field))
-               (< (yas--field-end field) max))
-          (setq min (yas--field-start field)
-                max (yas--field-end field))
-          (cond ((yas--field-p fom)
-                 (setf (yas--field-parent-field fom) field))
-                ((yas--mirror-p fom)
-                 (setf (yas--mirror-parent-field fom) field))
-                (t ; it's an exit, so noop
-                 nil ))))))
-
-(defun yas--advance-end-maybe (fom newend)
-  "Maybe advance FOM's end to NEWEND if it needs it.
-
-If it does, also:
-
-* call `yas--advance-start-maybe' on FOM's next fom.
-
-* in case FOM is field call `yas--advance-end-maybe' on its parent
-  field
-
-Also, if FOM is an exit-marker, always call
-`yas--advance-start-maybe' on its next fom.  This is because
-exit-marker have identical start and end markers."
-  (cond ((and fom (< (yas--fom-end fom) newend))
-         (set-marker (yas--fom-end fom) newend)
-         (yas--advance-start-maybe (yas--fom-next fom) newend)
-         (yas--advance-end-of-parents-maybe (yas--fom-parent-field fom) newend))
-        ((yas--exit-p fom)
-         (yas--advance-start-maybe (yas--fom-next fom) newend))))
-
-(defun yas--advance-start-maybe (fom newstart)
-  "Maybe advance FOM's start to NEWSTART if it needs it.
-
-If it does, also call `yas--advance-end-maybe' on FOM."
-  (when (and fom (< (yas--fom-start fom) newstart))
-    (set-marker (yas--fom-start fom) newstart)
-    (yas--advance-end-maybe fom newstart)))
-
-(defun yas--advance-end-of-parents-maybe (field newend)
-  "Like `yas--advance-end-maybe' but for parent fields.
-
-Only works for fields and doesn't care about the start of the
-next FOM.  Works its way up recursively for parents of parents."
-  (when (and field
-             (< (yas--field-end field) newend))
-    (set-marker (yas--field-end field) newend)
-    (yas--advance-end-of-parents-maybe (yas--field-parent-field field) newend)))
-
-(defvar yas--dollar-regions nil
-  "When expanding the snippet the \"parse-create\" functions add
-cons cells to this var.")
-
-(defvar yas--indent-markers nil
-  "List of markers for manual indentation.")
-
-(defun yas--snippet-parse-create (snippet)
-  "Parse a recently inserted snippet template, creating all
-necessary fields, mirrors and exit points.
-
-Meant to be called in a narrowed buffer, does various passes"
-  (let ((saved-quotes nil)
-        (parse-start (point)))
-    ;; Avoid major-mode's syntax propertizing function, since we
-    ;; change the syntax-table while calling `scan-sexps'.
-    (let ((syntax-propertize-function nil))
-      (setq yas--dollar-regions nil)  ; Reset the yas--dollar-regions.
-      (yas--protect-escapes nil '(?`))  ; Protect just the backquotes.
-      (goto-char parse-start)
-      (setq saved-quotes (yas--save-backquotes)) ; `expressions`.
-      (yas--protect-escapes)            ; Protect escaped characters.
-      (goto-char parse-start)
-      (yas--indent-parse-create)        ; Parse indent markers: `$>'.
-      (goto-char parse-start)
-      (yas--field-parse-create snippet) ; Parse fields with {}.
-      (goto-char parse-start)
-      (yas--simple-fom-create snippet) ; Parse simple mirrors & fields.
-      (goto-char parse-start)
-      (yas--transform-mirror-parse-create snippet) ; Parse mirror transforms.
-      ;; Invalidate any syntax-propertizing done while
-      ;; `syntax-propertize-function' was nil.
-      (syntax-ppss-flush-cache parse-start))
-    ;; Set "next" links of fields & mirrors.
-    (yas--calculate-adjacencies snippet)
-    (yas--save-restriction-and-widen    ; Delete $-constructs.
-      (yas--delete-regions yas--dollar-regions))
-    ;; Make sure to do this insertion *after* deleting the dollar
-    ;; regions, otherwise we invalidate the calculated positions of
-    ;; all the fields following $0.
-    (let ((exit (yas--snippet-exit snippet)))
-      (goto-char (if exit (yas--exit-marker exit) (point-max))))
-    (when (eq yas-wrap-around-region 'cua)
-      (setq yas-wrap-around-region ?0))
-    (cond ((and yas-wrap-around-region yas-selected-text)
-           (insert yas-selected-text))
-          ((and (characterp yas-wrap-around-region)
-                (get-register yas-wrap-around-region))
-           (insert (prog1 (get-register yas-wrap-around-region)
-                     (set-register yas-wrap-around-region nil)))))
-    (yas--restore-backquotes saved-quotes)  ; Restore `expression` values.
-    (goto-char parse-start)
-    (yas--restore-escapes)        ; Restore escapes.
-    (yas--update-mirrors snippet) ; Update mirrors for the first time.
-    (goto-char parse-start)))
-
-;; HACK: Some implementations of `indent-line-function' (called via
-;; `indent-according-to-mode') delete text before they insert (like
-;; cc-mode), some make complicated regexp replacements (looking at
-;; you, org-mode).  To find place where the marker "should" go after
-;; indentation, we create a regexp based on what the line looks like
-;; before, putting a capture group where the marker is.  The regexp
-;; matches any whitespace with [[:space:]]* to allow for the
-;; indentation changing whitespace.  Additionally, we try to preserve
-;; the amount of whitespace *following* the marker, because
-;; indentation generally affects whitespace at the beginning, not the
-;; end.
-;;
-;; Two other cases where we apply a similar strategy:
-;;
-;; 1. Handling `auto-fill-mode', in this case we need to use the
-;; current paragraph instead of line.
-;;
-;; 2. Moving snippets from an `org-src' temp buffer into the main org
-;; buffer, in this case we need to count the line offsets (because org
-;; may add indentation on each line making character positions
-;; unreliable).
-;;
-;; This is all best-effort heuristic stuff, but it should cover 99% of
-;; use-cases.
-
-(defun yas--snapshot-marker-location (marker &optional beg end)
-  "Returns info for restoring MARKER's location after indent.
-The returned value is a list of the form (MARKER REGEXP WS-COUNT)."
-  (unless beg (setq beg (line-beginning-position)))
-  (unless end (setq end (line-end-position)))
-  (let ((before (split-string (buffer-substring-no-properties beg marker)
-                              "[[:space:]\n]+" t))
-        (after (split-string (buffer-substring-no-properties marker end)
-                             "[[:space:]\n]+" t)))
-    (list marker
-          (concat "[[:space:]\n]*"
-                  (mapconcat (lambda (s)
-                               (if (eq s marker) "\\(\\)"
-                                 (regexp-quote s)))
-                             (nconc before (list marker) after)
-                             "[[:space:]\n]*"))
-          (progn (goto-char marker)
-                 (skip-chars-forward "[:space:]\n" end)
-                 (- (point) marker)))))
-
-(defun yas--snapshot-overlay-location (overlay beg end)
-  "Like `yas--snapshot-marker-location' for overlays.
-The returned format is (OVERLAY (RE WS) (RE WS)).  Either of
-the (RE WS) lists may be nil if the start or end, respectively,
-of the overlay is outside the range BEG .. END."
-  (let ((obeg (overlay-start overlay))
-        (oend (overlay-end overlay)))
-    (list overlay
-          (when (and (<= beg obeg) (< obeg end))
-            (cdr (yas--snapshot-marker-location obeg beg end)))
-          (when (and (<= beg oend) (< oend end))
-            (cdr (yas--snapshot-marker-location oend beg end))))))
-
-(defun yas--snapshot-overlay-line-location (overlay)
-  "Return info for restoring OVERLAY's line based location.
-The returned format is (OVERLAY (LINE RE WS) (LINE RE WS))."
-  (let ((loc-beg (progn (goto-char (overlay-start overlay))
-                        (yas--snapshot-marker-location (point))))
-        (loc-end (progn (goto-char (overlay-end overlay))
-                        (yas--snapshot-marker-location (point)))))
-    (setcar loc-beg (count-lines (point-min) (progn (goto-char (car loc-beg))
-                                                    (line-beginning-position))))
-    (setcar loc-end (count-lines (point-min) (progn (goto-char (car loc-end))
-                                                    (line-beginning-position))))
-    (list overlay loc-beg loc-end)))
-
-(defun yas--goto-saved-location (regexp ws-count)
-  "Move point to location saved by `yas--snapshot-marker-location'.
-Buffer must be narrowed to BEG..END used to create the snapshot info."
-  (goto-char (point-min))
-  (if (not (looking-at regexp))
-      (lwarn '(yasnippet re-marker) :warning
-             "Couldn't find: %S" regexp)
-    (goto-char (match-beginning 1))
-    (skip-chars-forward "[:space:]\n")
-    (skip-chars-backward "[:space:]\n" (- (point) ws-count))))
-
-(defun yas--restore-marker-location (re-marker)
-  "Restores marker based on info from `yas--snapshot-marker-location'.
-Buffer must be narrowed to BEG..END used to create the snapshot info."
-  (apply #'yas--goto-saved-location (cdr re-marker))
-  (set-marker (car re-marker) (point)))
-
-(defun yas--restore-overlay-location (ov-locations)
-  "Restores marker based on info from `yas--snapshot-marker-location'.
-Buffer must be narrowed to BEG..END used to create the snapshot info."
-  (cl-destructuring-bind (overlay loc-beg loc-end) ov-locations
-    (move-overlay overlay
-                  (if (not loc-beg) (overlay-start overlay)
-                    (apply #'yas--goto-saved-location loc-beg)
-                    (point))
-                  (if (not loc-end) (overlay-end overlay)
-                    (apply #'yas--goto-saved-location loc-end)
-                    (point)))))
-
-
-(defun yas--restore-overlay-line-location (ov-locations)
-  "Restores overlay based on info from `yas--snapshot-overlay-line-location'."
-  (save-restriction
-    (move-overlay (car ov-locations)
-                  (save-excursion
-                    (forward-line (car (nth 1 ov-locations)))
-                    (narrow-to-region (line-beginning-position) (line-end-position))
-                    (apply #'yas--goto-saved-location (cdr (nth 1 ov-locations)))
-                    (point))
-                  (save-excursion
-                    (forward-line (car (nth 2 ov-locations)))
-                    (narrow-to-region (line-beginning-position) (line-end-position))
-                    (apply #'yas--goto-saved-location (cdr (nth 2 ov-locations)))
-                    (point)))))
-
-(defun yas--indent-region (from to snippet)
-  "Indent the lines between FROM and TO with `indent-according-to-mode'.
-The SNIPPET's markers are preserved."
-  (save-excursion
-    (yas--save-restriction-and-widen
-      (let* ((snippet-markers (yas--collect-snippet-markers snippet))
-             (to (set-marker (make-marker) to)))
-        (goto-char from)
-        (cl-loop for bol = (line-beginning-position)
-                 for eol = (line-end-position)
-                 if (or yas-also-indent-empty-lines
-                        (/= bol eol))
-                 do
-                 ;; Indent each non-empty line.
-                 (let ((remarkers nil))
-                   (dolist (m snippet-markers)
-                     (when (and (<= bol m) (<= m eol))
-                       (push (yas--snapshot-marker-location m bol eol)
-                             remarkers)))
-                   (unwind-protect
-                       (progn (back-to-indentation)
-                              (indent-according-to-mode))
-                     (save-restriction
-                       (narrow-to-region bol (line-end-position))
-                       (mapc #'yas--restore-marker-location remarkers))))
-                 while (and (zerop (forward-line 1))
-                            (< (point) to)))))))
-
-(defvar yas--indent-original-column nil)
-(defun yas--indent (snippet)
-  ;; Indent lines that had indent markers (`$>') on them.
-  (save-excursion
-    (dolist (marker yas--indent-markers)
-      (unless (eq yas-indent-line 'auto)
-        (goto-char marker)
-        (yas--indent-region (line-beginning-position)
-                            (line-end-position)
-                            snippet))
-      ;; Finished with this marker.
-      (set-marker marker nil))
-    (setq yas--indent-markers nil))
-  ;; Now do stuff for `fixed' and `auto'.
-  (save-excursion
-    ;; We need to be at end of line, so that `forward-line' will only
-    ;; report 0 if it actually moves over a newline.
-    (end-of-line)
-    (cond ((eq yas-indent-line 'fixed)
-           (when (= (forward-line 1) 0)
-             (let ((indent-line-function
-                    (lambda ()
-                      ;; We need to be at beginning of line in order to
-                      ;; indent existing whitespace correctly.
-                      (beginning-of-line)
-                      (indent-to-column yas--indent-original-column))))
-               (yas--indent-region (line-beginning-position)
-                                   (point-max)
-                                   snippet))))
-          ((eq yas-indent-line 'auto)
-           (when (or yas-also-auto-indent-first-line
-                     (= (forward-line 1) 0))
-             (yas--indent-region (line-beginning-position)
-                                 (point-max)
-                                 snippet))))))
-
-(defun yas--collect-snippet-markers (snippet)
-  "Make a list of all the markers used by SNIPPET."
-  (let (markers)
-    (yas--snippet-map-markers (lambda (m) (push m markers) m) snippet)
-    markers))
-
-(defun yas--escape-string (escaped)
-  (concat "YASESCAPE" (format "%d" escaped) "PROTECTGUARD"))
-
-(defun yas--protect-escapes (&optional text escaped)
-  "Protect all escaped characters with their numeric ASCII value.
-
-With optional string TEXT do it in string instead of buffer."
-  (let ((changed-text text)
-        (text-provided-p text))
-    (mapc #'(lambda (escaped)
-              (setq changed-text
-                    (yas--replace-all (concat "\\" (char-to-string escaped))
-                                     (yas--escape-string escaped)
-                                     (when text-provided-p changed-text))))
-          (or escaped yas--escaped-characters))
-    changed-text))
-
-(defun yas--restore-escapes (&optional text escaped)
-  "Restore all escaped characters from their numeric ASCII value.
-
-With optional string TEXT do it in string instead of the buffer."
-  (let ((changed-text text)
-        (text-provided-p text))
-    (mapc #'(lambda (escaped)
-              (setq changed-text
-                    (yas--replace-all (yas--escape-string escaped)
-                                     (char-to-string escaped)
-                                     (when text-provided-p changed-text))))
-          (or escaped yas--escaped-characters))
-    changed-text))
-
-(defun yas--save-backquotes ()
-  "Save all \"\\=`(lisp-expression)\\=`\"-style expressions.
-Return a list of (MARKER . STRING) entires for each backquoted
-Lisp expression."
-  (let* ((saved-quotes nil)
-         (yas--snippet-buffer (current-buffer))
-         (yas--change-detected nil)
-         (detect-change (lambda (_beg _end)
-                          (when (eq (current-buffer) yas--snippet-buffer)
-                            (setq yas--change-detected t)))))
-    (while (re-search-forward yas--backquote-lisp-expression-regexp nil t)
-      (let ((current-string (match-string-no-properties 1)) transformed)
-        (yas--save-restriction-and-widen
-          (delete-region (match-beginning 0) (match-end 0)))
-        (let ((before-change-functions
-               (cons detect-change before-change-functions)))
-          (setq transformed (yas--eval-for-string (yas--read-lisp
-                                                   (yas--restore-escapes
-                                                    current-string '(?`))))))
-        (goto-char (match-beginning 0))
-        (when transformed
-          (let ((marker (make-marker)))
-            (yas--save-restriction-and-widen
-              (insert "Y") ;; quite horrendous, I love it :)
-              (set-marker marker (point))
-              (insert "Y"))
-            (push (cons marker transformed) saved-quotes)))))
-    (when yas--change-detected
-      (lwarn '(yasnippet backquote-change) :warning
-             "`%s' modified buffer in a backquote expression.
-  To hide this warning, add (yasnippet backquote-change) to `warning-suppress-types'."
-             (if yas--current-template
-                 (yas--template-name yas--current-template)
-               "Snippet")))
-    saved-quotes))
-
-(defun yas--restore-backquotes (saved-quotes)
-  "Replace markers in SAVED-QUOTES with their values.
-SAVED-QUOTES is the in format returned by `yas--save-backquotes'."
-  (cl-loop for (marker . string) in saved-quotes do
-           (save-excursion
-             (goto-char marker)
-             (yas--save-restriction-and-widen
-               (delete-char -1)
-               (insert string)
-               (delete-char 1))
-             (set-marker marker nil))))
-
-(defun yas--scan-sexps (from count)
-  (ignore-errors
-    (save-match-data ; `scan-sexps' may modify match data.
-      (with-syntax-table (standard-syntax-table)
-        (let ((parse-sexp-lookup-properties nil))
-          (scan-sexps from count))))))
-
-(defun yas--make-marker (pos)
-  "Create a marker at POS with nil `marker-insertion-type'."
-  (let ((marker (set-marker (make-marker) pos)))
-    (set-marker-insertion-type marker nil)
-    marker))
-
-(defun yas--indent-parse-create ()
-  "Parse the \"$>\" indentation markers just inserted."
-  (setq yas--indent-markers ())
-  (while (search-forward "$>" nil t)
-    (delete-region (match-beginning 0) (match-end 0))
-    ;; Mark the beginning of the line.
-    (push (yas--make-marker (line-beginning-position))
-          yas--indent-markers))
-  (setq yas--indent-markers (nreverse yas--indent-markers)))
-
-(defun yas--field-parse-create (snippet &optional parent-field)
-  "Parse most field expressions in SNIPPET, except for the simple one \"$n\".
-
-The following count as a field:
-
-* \"${n: text}\", for a numbered field with default text, as long as N is not 0;
-
-* \"${n: text$(expression)}, the same with a Lisp expression;
-  this is caught with the curiously named `yas--multi-dollar-lisp-expression-regexp'
-
-* the same as above but unnumbered, (no N:) and number is calculated automatically.
-
-When multiple expressions are found, only the last one counts."
-  ;;
-  (save-excursion
-    (while (re-search-forward yas--field-regexp nil t)
-      (let* ((real-match-end-0 (yas--scan-sexps (1+ (match-beginning 0)) 1))
-             (number (and (match-string-no-properties 1)
-                          (string-to-number (match-string-no-properties 1))))
-             (brand-new-field (and real-match-end-0
-                                   ;; break if on "$(" immediately
-                                   ;; after the ":", this will be
-                                   ;; caught as a mirror with
-                                   ;; transform later.
-                                   (not (string-match-p "\\`\\$[ \t\n]*("
-                                                        (match-string-no-properties 2)))
-                                   ;; allow ${0: some exit text}
-                                   ;; (not (and number (zerop number)))
-                                   (yas--make-field number
-                                                   (yas--make-marker (match-beginning 2))
-                                                   (yas--make-marker (1- real-match-end-0))
-                                                   parent-field))))
-        (when brand-new-field
-          (goto-char real-match-end-0)
-          (push (cons (1- real-match-end-0) real-match-end-0)
-                yas--dollar-regions)
-          (push (cons (match-beginning 0) (match-beginning 2))
-                yas--dollar-regions)
-          (push brand-new-field (yas--snippet-fields snippet))
-          (save-excursion
-            (save-restriction
-              (narrow-to-region (yas--field-start brand-new-field) (yas--field-end brand-new-field))
-              (goto-char (point-min))
-              (yas--field-parse-create snippet brand-new-field)))))))
-  ;; if we entered from a parent field, now search for the
-  ;; `yas--multi-dollar-lisp-expression-regexp'. This is used for
-  ;; primary field transformations
-  ;;
-  (when parent-field
-    (save-excursion
-      (while (re-search-forward yas--multi-dollar-lisp-expression-regexp nil t)
-        (let* ((real-match-end-1 (yas--scan-sexps (match-beginning 1) 1)))
-          ;; commit the primary field transformation if:
-          ;;
-          ;; 1. we don't find it in yas--dollar-regions (a subnested
-          ;; field) might have already caught it.
-          ;;
-          ;; 2. we really make sure we have either two '$' or some
-          ;; text and a '$' after the colon ':'. This is a FIXME: work
-          ;; my regular expressions and end these ugly hacks.
-          ;;
-          (when (and real-match-end-1
-                     (not (member (cons (match-beginning 0)
-                                        real-match-end-1)
-                                  yas--dollar-regions))
-                     (not (eq ?:
-                              (char-before (1- (match-beginning 1))))))
-            (let ((lisp-expression-string (buffer-substring-no-properties (match-beginning 1)
-                                                                          real-match-end-1)))
-              (setf (yas--field-transform parent-field)
-                    (yas--read-lisp (yas--restore-escapes lisp-expression-string))))
-            (push (cons (match-beginning 0) real-match-end-1)
-                  yas--dollar-regions)))))))
-
-(defun yas--transform-mirror-parse-create (snippet)
-  "Parse the \"${n:$(lisp-expression)}\" mirror transformations in SNIPPET."
-  (while (re-search-forward yas--transform-mirror-regexp nil t)
-    (let* ((real-match-end-0 (yas--scan-sexps (1+ (match-beginning 0)) 1))
-           (number (string-to-number (match-string-no-properties 1)))
-           (field (and number
-                       (not (zerop number))
-                       (yas--snippet-find-field snippet number)))
-           (brand-new-mirror
-            (and real-match-end-0
-                 field
-                 (yas--make-mirror (yas--make-marker (match-beginning 0))
-                                  (yas--make-marker (match-beginning 0))
-                                  (yas--read-lisp
-                                   (yas--restore-escapes
-                                    (buffer-substring-no-properties (match-beginning 2)
-                                                                    (1- real-match-end-0))))))))
-      (when brand-new-mirror
-        (push brand-new-mirror
-              (yas--field-mirrors field))
-        (yas--calculate-simple-fom-parentage snippet brand-new-mirror)
-        (push (cons (match-beginning 0) real-match-end-0) yas--dollar-regions)))))
-
-(defun yas--simple-fom-create (snippet)
-  "Parse the simple \"$n\" fields/mirrors/exitmarkers in SNIPPET."
-  (while (re-search-forward yas--simple-mirror-regexp nil t)
-    (let ((number (string-to-number (match-string-no-properties 1))))
-      (cond ((zerop number)
-             (setf (yas--snippet-exit snippet)
-                   (yas--make-exit (yas--make-marker (match-end 0))))
-             (push (cons (match-beginning 0) (yas--exit-marker (yas--snippet-exit snippet)))
-                   yas--dollar-regions))
-            (t
-             (let ((field (yas--snippet-find-field snippet number))
-                   (fom))
-               (if field
-                   (push
-                    (setq fom (yas--make-mirror
-                               (yas--make-marker (match-beginning 0))
-                               (yas--make-marker (match-beginning 0))
-                               nil))
-                    (yas--field-mirrors field))
-                 (push
-                  (setq fom (yas--make-field number
-                                             (yas--make-marker (match-beginning 0))
-                                             (yas--make-marker (match-beginning 0))
-                                             nil))
-                  (yas--snippet-fields snippet)))
-               (yas--calculate-simple-fom-parentage snippet fom))
-             (push (cons (match-beginning 0) (match-end 0))
-                   yas--dollar-regions))))))
-
-(defun yas--delete-regions (regions)
-  "Sort disjuct REGIONS by start point, then delete from the back."
-  (mapc #'(lambda (reg)
-            (delete-region (car reg) (cdr reg)))
-        (sort regions
-              #'(lambda (r1 r2)
-                  (>= (car r1) (car r2))))))
-
-(defun yas--calculate-mirror-depth (mirror &optional traversed)
-  (let* ((parent (yas--mirror-parent-field mirror))
-         (parents-mirrors (and parent
-                               (yas--field-mirrors parent))))
-    (or (yas--mirror-depth mirror)
-        (setf (yas--mirror-depth mirror)
-              (cond ((memq mirror traversed) 0)
-                    ((and parent parents-mirrors)
-                     (1+ (cl-reduce
-                          #'max parents-mirrors
-                          :key (lambda (m)
-                                 (yas--calculate-mirror-depth
-                                  m (cons mirror traversed))))))
-                    (parent 1)
-                    (t 0))))))
-
-(defun yas--update-mirrors (snippet)
-  "Update all the mirrors of SNIPPET."
-  (yas--save-restriction-and-widen
-    (save-excursion
-      (cl-loop
-       for (field . mirror)
-       in (cl-sort
-           ;; Make a list of (FIELD . MIRROR).
-           (cl-mapcan (lambda (field)
-                        (mapcar (lambda (mirror)
-                                  (cons field mirror))
-                                (yas--field-mirrors field)))
-                      (yas--snippet-fields snippet))
-           ;; Then sort this list so that entries with mirrors with
-           ;; parent fields appear before.  This was important for
-           ;; fixing #290, and also handles the case where a mirror in
-           ;; a field causes another mirror to need reupdating.
-           #'> :key (lambda (fm) (yas--calculate-mirror-depth (cdr fm))))
-       ;; Before updating a mirror with a parent-field, maybe advance
-       ;; its start (#290).
-       do (let ((parent-field (yas--mirror-parent-field mirror)))
-            (when parent-field
-              (yas--advance-start-maybe mirror (yas--fom-start parent-field))))
-       ;; Update this mirror.
-       do (yas--mirror-update-display mirror field)
-       ;; Delay indenting until we're done all mirrors.  We must do
-       ;; this to avoid losing whitespace between fields that are
-       ;; still empty (i.e., they will be non-empty after updating).
-       when (eq yas-indent-line 'auto)
-       collect (cons (yas--mirror-start mirror) (yas--mirror-end mirror))
-       into indent-regions
-       ;; `yas--place-overlays' is needed since the active field and
-       ;; protected overlays might have been changed because of insertions
-       ;; in `yas--mirror-update-display'.
-       do (let ((active-field (yas--snippet-active-field snippet)))
-            (when active-field (yas--place-overlays snippet active-field)))
-       finally do
-       (let ((yas--inhibit-overlay-hooks t))
-         (cl-loop for (beg . end) in (cl-sort indent-regions #'< :key #'car)
-                  do (yas--indent-region beg end snippet)))))))
-
-(defun yas--mirror-update-display (mirror field)
-  "Update MIRROR according to FIELD (and mirror transform)."
-
-  (let* ((mirror-parent-field (yas--mirror-parent-field mirror))
-         (reflection (and (not (and mirror-parent-field
-                                    (yas--field-modified-p mirror-parent-field)))
-                          (or (yas--apply-transform mirror field 'empty-on-nil)
-                              (yas--field-text-for-display field)))))
-    (when (and reflection
-               (not (string= reflection (buffer-substring-no-properties (yas--mirror-start mirror)
-                                                                        (yas--mirror-end mirror)))))
-      (goto-char (yas--mirror-start mirror))
-      (let ((yas--inhibit-overlay-hooks t))
-        (insert reflection))
-      (if (> (yas--mirror-end mirror) (point))
-          (delete-region (point) (yas--mirror-end mirror))
-        (set-marker (yas--mirror-end mirror) (point))
-        (yas--advance-start-maybe (yas--mirror-next mirror) (point))
-        ;; super-special advance
-        (yas--advance-end-of-parents-maybe mirror-parent-field (point))))))
-
-(defun yas--field-update-display (field)
-  "Much like `yas--mirror-update-display', but for fields."
-  (when (yas--field-transform field)
-    (let ((transformed (and (not (eq (yas--field-number field) 0))
-                            (yas--apply-transform field field))))
-      (when (and transformed
-                 (not (string= transformed (buffer-substring-no-properties (yas--field-start field)
-                                                                           (yas--field-end field)))))
-        (setf (yas--field-modified-p field) t)
-        (goto-char (yas--field-start field))
-        (let ((yas--inhibit-overlay-hooks t))
-          (insert transformed)
-          (if (> (yas--field-end field) (point))
-              (delete-region (point) (yas--field-end field))
-            (set-marker (yas--field-end field) (point))
-            (yas--advance-start-maybe (yas--field-next field) (point)))
-          t)))))
-
-
-;;; Post-command hook:
-;;
-(defun yas--post-command-handler ()
-  "Handles various yasnippet conditions after each command."
-  (when (and yas--watch-auto-fill-backtrace
-             (fboundp 'backtrace--print-frame)
-             (null yas--original-auto-fill-function)
-             (eq auto-fill-function 'yas--auto-fill))
-    (lwarn '(yasnippet auto-fill bug) :error
-           "`yas--original-auto-fill-function' unexpectedly nil! Please report this backtrace\n%S"
-           (with-output-to-string
-             (mapc #'backtrace--print-frame
-                     yas--watch-auto-fill-backtrace)))
-    ;; Don't pop up more than once in a session (still log though).
-    (defvar warning-suppress-types) ; `warnings' is autoloaded by `lwarn'.
-    (add-to-list 'warning-suppress-types '(yasnippet auto-fill bug)))
-  (condition-case err
-      (progn (yas--finish-moving-snippets)
-             (cond ((eq 'undo this-command)
-                    ;;
-                    ;; After undo revival the correct field is sometimes not
-                    ;; restored correctly, this condition handles that
-                    ;;
-                    (let* ((snippet (car (yas-active-snippets)))
-                           (target-field
-                            (and snippet
-                                 (cl-find-if-not
-                                  (lambda (field)
-                                    (yas--field-probably-deleted-p snippet field))
-                                  (remq nil
-                                        (cons (yas--snippet-active-field snippet)
-                                              (yas--snippet-fields snippet)))))))
-                      (when target-field
-                        (yas--move-to-field snippet target-field))))
-                   ((not (yas--undo-in-progress))
-                    ;; When not in an undo, check if we must commit the snippet
-                    ;; (user exited it).
-                    (yas--check-commit-snippet))))
-    ((debug error) (signal (car err) (cdr err)))))
-
-;;; Fancy docs:
-;;
-;; The docstrings for some functions are generated dynamically
-;; depending on the context.
-;;
-(put 'yas-expand  'function-documentation
-     '(yas--expand-from-trigger-key-doc t))
-(defun yas--expand-from-trigger-key-doc (context)
-  "A doc synthesizer for `yas--expand-from-trigger-key-doc'."
-  (let* ((yas-fallback-behavior (and context yas-fallback-behavior))
-         (fallback-description
-          (cond ((eq yas-fallback-behavior 'call-other-command)
-                 (let* ((fallback (yas--keybinding-beyond-yasnippet)))
-                   (or (and fallback
-                            (format "call command `%s'."
-                                    (pp-to-string fallback)))
-                       "do nothing (`yas-expand' doesn't override\nanything).")))
-                ((eq yas-fallback-behavior 'return-nil)
-                 "do nothing.")
-                (t "defer to `yas-fallback-behavior' (which see)."))))
-    (concat "Expand a snippet before point. If no snippet
-expansion is possible, "
-            fallback-description
-            "\n\nOptional argument FIELD is for non-interactive use and is an
-object satisfying `yas--field-p' to restrict the expansion to.")))
-
-(put 'yas-expand-from-keymap 'function-documentation
-     '(yas--expand-from-keymap-doc t))
-(defun yas--expand-from-keymap-doc (context)
-  "A doc synthesizer for `yas--expand-from-keymap-doc'."
-  (add-hook 'temp-buffer-show-hook #'yas--snippet-description-finish-runonce)
-  (concat "Expand/run snippets from keymaps, possibly falling back to original binding.\n"
-          (when (and context (eq this-command 'describe-key))
-            (let* ((vec (this-single-command-keys))
-                   (templates (cl-mapcan (lambda (table)
-                                           (yas--fetch table vec))
-                                         (yas--get-snippet-tables)))
-                   (yas--direct-keymaps nil)
-                   (fallback (key-binding vec)))
-              (concat "In this case, "
-                      (when templates
-                        (concat "these snippets are bound to this key:\n"
-                                (yas--template-pretty-list templates)
-                                "\n\nIf none of these expands, "))
-                      (or (and fallback
-                               (format "fallback `%s' will be called." (pp-to-string fallback)))
-                          "no fallback keybinding is called."))))))
-
-(defun yas--template-pretty-list (templates)
-  (let ((acc)
-        (yas-buffer-local-condition 'always))
-    (dolist (plate templates)
-      (setq acc (concat acc "\n*) "
-                        (propertize (concat "\\\\snippet `" (car plate) "'")
-                                    'yasnippet (cdr plate)))))
-    acc))
-
-(define-button-type 'help-snippet-def
-  :supertype 'help-xref
-  'help-function (lambda (template) (yas--visit-snippet-file-1 template))
-  'help-echo (purecopy "mouse-2, RET: find snippets's definition"))
-
-(defun yas--snippet-description-finish-runonce ()
-  "Final adjustments for the help buffer when snippets are concerned."
-  (yas--create-snippet-xrefs)
-  (remove-hook 'temp-buffer-show-hook
-               #'yas--snippet-description-finish-runonce))
-
-(defun yas--create-snippet-xrefs ()
-  (save-excursion
-    (goto-char (point-min))
-    (while (search-forward-regexp "\\\\\\\\snippet[ \s\t]+`\\([^']+\\)'" nil t)
-      (let ((template (get-text-property (match-beginning 1)
-                                         'yasnippet)))
-        (when template
-          (help-xref-button 1 'help-snippet-def template)
-          (delete-region (match-end 1) (match-end 0))
-          (delete-region (match-beginning 0) (match-beginning 1)))))))
-
-;;; Eldoc configuration.
-(eldoc-add-command 'yas-next-field-or-maybe-expand
-                   'yas-next-field 'yas-prev-field
-                   'yas-expand 'yas-expand-from-keymap
-                   'yas-expand-from-trigger-key)
-
-;;; Utils
-
-(defvar yas-verbosity 3
-  "Log level for `yas--message' 4 means trace most anything, 0 means nothing.")
-
-(defun yas--message (level message &rest args)
-  "When LEVEL is at or below `yas-verbosity', log MESSAGE and ARGS."
-  (when (>= yas-verbosity level)
-    (message "%s" (apply #'yas--format message args))))
-
-(defun yas--warning (format-control &rest format-args)
-  (let ((msg (apply #'format format-control format-args)))
-    (display-warning 'yasnippet msg :warning)
-    (yas--message 1 msg)))
-
-(defun yas--format (format-control &rest format-args)
-  (apply #'format (concat "[yas] " format-control) format-args))
-
-
-;;; Unloading
-
-(defvar unload-function-defs-list) ; loadhist.el
-
-(defun yasnippet-unload-function ()
-  "Disable minor modes when calling `unload-feature'."
-  ;; Disable `yas-minor-mode' everywhere it's enabled.
-  (yas-global-mode -1)
-  (save-current-buffer
-    (dolist (buffer (buffer-list))
-      (set-buffer buffer)
-      (when yas-minor-mode
-        (yas-minor-mode -1))))
-  ;; Remove symbol properties of all our functions, this avoids
-  ;; Bug#25088 in Emacs 25.1, where the compiler macro on
-  ;; `cl-defstruct' created functions hang around in the symbol plist
-  ;; and cause errors when loading again (we don't *need* to clean
-  ;; *all* symbol plists, but it's easier than being precise).
-  (dolist (def unload-function-defs-list)
-    (when (eq (car-safe def) 'defun)
-      (setplist (cdr def) nil)))
-  ;; Return nil so that `unload-feature' will take of undefining
-  ;; functions, and changing any buffers using `snippet-mode'.
-  nil)
-
-
-;;; Backward compatibility to yasnippet <= 0.7
-
-(defun yas-initialize ()
-  "For backward compatibility, enable `yas-minor-mode' globally."
-  (declare (obsolete "Use (yas-global-mode 1) instead." "0.8"))
-  (yas-global-mode 1))
-
-(defvar yas--backported-syms '(;; `defcustom's
-                             ;;
-                             yas-snippet-dirs
-                             yas-prompt-functions
-                             yas-indent-line
-                             yas-also-auto-indent-first-line
-                             yas-snippet-revival
-                             yas-triggers-in-field
-                             yas-fallback-behavior
-                             yas-choose-keys-first
-                             yas-choose-tables-first
-                             yas-use-menu
-                             yas-trigger-symbol
-                             yas-wrap-around-region
-                             yas-good-grace
-                             yas-visit-from-menu
-                             yas-expand-only-for-last-commands
-                             yas-field-highlight-face
-
-                             ;; these vars can be customized as well
-                             ;;
-                             yas-keymap
-                             yas-verbosity
-                             yas-extra-modes
-                             yas-key-syntaxes
-                             yas-after-exit-snippet-hook
-                             yas-before-expand-snippet-hook
-                             yas-buffer-local-condition
-                             yas-dont-activate
-
-                             ;; prompting functions
-                             ;;
-                             yas-x-prompt
-                             yas-ido-prompt
-                             yas-no-prompt
-                             yas-completing-prompt
-                             yas-dropdown-prompt
-
-                             ;; interactive functions
-                             ;;
-                             yas-expand
-                             yas-minor-mode
-                             yas-global-mode
-                             yas-direct-keymaps-reload
-                             yas-minor-mode-on
-                             yas-load-directory
-                             yas-reload-all
-                             yas-compile-directory
-                             yas-recompile-all
-                             yas-about
-                             yas-expand-from-trigger-key
-                             yas-expand-from-keymap
-                             yas-insert-snippet
-                             yas-visit-snippet-file
-                             yas-new-snippet
-                             yas-load-snippet-buffer
-                             yas-tryout-snippet
-                             yas-describe-tables
-                             yas-next-field-or-maybe-expand
-                             yas-next-field
-                             yas-prev-field
-                             yas-abort-snippet
-                             yas-exit-snippet
-                             yas-exit-all-snippets
-                             yas-skip-and-clear-or-delete-char
-                             yas-initialize
-
-                             ;; symbols that I "exported" for use
-                             ;; in snippets and hookage
-                             ;;
-                             yas-expand-snippet
-                             yas-define-snippets
-                             yas-define-menu
-                             yas-snippet-beg
-                             yas-snippet-end
-                             yas-modified-p
-                             yas-moving-away-p
-                             yas-substr
-                             yas-choose-value
-                             yas-key-to-value
-                             yas-throw
-                             yas-verify-value
-                             yas-field-value
-                             yas-text
-                             yas-selected-text
-                             yas-default-from-field
-                             yas-inside-string
-                             yas-unimplemented
-                             yas-define-condition-cache
-                             yas-hippie-try-expand
-
-                             ;; debug definitions
-                             ;; yas-debug-snippet-vars
-                             ;; yas-exterminate-package
-                             ;; yas-debug-test
-
-                             ;; testing definitions
-                             ;; yas-should-expand
-                             ;; yas-should-not-expand
-                             ;; yas-mock-insert
-                             ;; yas-make-file-or-dirs
-                             ;; yas-variables
-                             ;; yas-saving-variables
-                             ;; yas-call-with-snippet-dirs
-                             ;; yas-with-snippet-dirs
-)
-  "Backported yasnippet symbols.
-
-They are mapped to \"yas/*\" variants.")
-
-(when yas-alias-to-yas/prefix-p
-  (dolist (sym yas--backported-syms)
-    (let ((backported (intern (replace-regexp-in-string "\\`yas-" "yas/" (symbol-name sym)))))
-      (when (boundp sym)
-        (make-obsolete-variable backported sym "yasnippet 0.8")
-        (defvaralias backported sym))
-      (when (fboundp sym)
-        (make-obsolete backported sym "yasnippet 0.8")
-        (defalias backported sym))))
-  (make-obsolete 'yas/root-directory 'yas-snippet-dirs "yasnippet 0.8")
-  (defvaralias 'yas/root-directory 'yas-snippet-dirs))
-
-(defvar yas--exported-syms
-  (let (exported)
-    (mapatoms (lambda (atom)
-                (if (and (or (and (boundp atom)
-                                  (not (get atom 'byte-obsolete-variable)))
-                             (and (fboundp atom)
-                                  (not (get atom 'byte-obsolete-info))))
-                         (string-match-p "\\`yas-[^-]" (symbol-name atom)))
-                    (push atom exported))))
-    exported)
-  "Exported yasnippet symbols.
-
-i.e. the ones with \"yas-\" single dash prefix. I will try to
-keep them in future yasnippet versions and other elisp libraries
-can more or less safely rely upon them.")
-
-
-(provide 'yasnippet)
-;; Local Variables:
-;; coding: utf-8
-;; indent-tabs-mode: nil
-;; End:
-;;; yasnippet.el ends here
diff --git a/elpa/yasnippet-20181015.1212/yasnippet.elc b/elpa/yasnippet-20181015.1212/yasnippet.elc
deleted file mode 100644
index 8c2562c..0000000
--- a/elpa/yasnippet-20181015.1212/yasnippet.elc
+++ /dev/null
Binary files differ
diff --git a/init.el~ b/init.el~
deleted file mode 100644
index 07e7a1c..0000000
--- a/init.el~
+++ /dev/null
@@ -1,380 +0,0 @@
-(provide 'init)
-
-;; set paths for executable
-(add-to-list 'exec-path "C:/msys64/usr/bin")
-(add-to-list 'exec-path "C:/msys64/mingw64/bin")
-(add-to-list 'exec-path "c:/Program Files/Racket")
-(setenv "PATH" (mapconcat #'identity exec-path path-separator))
-
-;; adding modules to load path
-(add-to-list 'load-path "~/.emacs.d/custom/")
-(add-to-list 'load-path "~/.emacs.d/elpa/")
-
-;; load your modules
-(require 'setup-applications)
-(require 'setup-communication)
-(require 'setup-convenience)
-(require 'setup-data)
-(require 'setup-development)
-(require 'setup-editing)
-(require 'setup-environment)
-(require 'setup-external)
-(require 'setup-faces)
-(require 'setup-files)
-(require 'setup-help)
-(require 'setup-programming)
-(require 'setup-text)
-(require 'setup-local)
-
-;; setting up aspell
-(require 'ispell)
-(setq-default ispell-program-name "aspell")
-
-;; Repos
-(require 'package)
-(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
-;; (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
-(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/"))
-
-;; use-package
-(package-initialize)
-(unless (package-installed-p 'use-package)
-  (package-refresh-contents)
-  (package-install 'use-package))
-
-(eval-when-compile
-  (require 'use-package))
-
-
-;; auto-package-update
-(use-package auto-package-update
-  :config
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; zenburn theme
-(use-package zenburn-theme
-  :ensure t
-  :config
-  (load-theme 'zenburn)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; helm
-(use-package helm-config
-  :ensure helm
-  :bind (("M-x" . helm-M-x)
-	 ("C-x C-f" . helm-find-files)
-	 ("M-y" . helm-show-kill-ring)
-	 ("C-x b" . helm-mini)
-	 ("C-c h o" . helm-occur))
-  :config
-  (setq helm-M-x-fuzzy-match t)
-  (setq helm-buffers-fuzzy-matching t
-	helm-recentf-fuzzy-match    t)
-  (setq helm-split-window-in-side-p           t ; open helm buffer inside current window, not occupy whole other window
-	helm-move-to-line-cycle-in-source     t ; move to end or beginning of source when reaching top or bottom of source.
-	helm-ff-search-library-in-sexp        t ; search for library in `require' and `declare-function' sexp.
-	helm-scroll-amount                    8 ; scroll 8 lines other window using M-<next>/M-<prior>
-	helm-ff-file-name-history-use-recentf t
-	helm-echo-input-in-header-line t)
-  (defun spacemacs//helm-hide-minibuffer-maybe ()
-    "Hide minibuffer in Helm session if we use the header line as input field."
-    (when (with-helm-buffer helm-echo-input-in-header-line)
-      (let ((ov (make-overlay (point-min) (point-max) nil nil t)))
-	(overlay-put ov 'window (selected-window))
-	(overlay-put ov 'face
-                     (let ((bg-color (face-background 'default nil)))
-                       `(:background ,bg-color :foreground ,bg-color)))
-	(setq-local cursor-type nil))))
-  (add-hook 'helm-minibuffer-set-up-hook
-            'spacemacs//helm-hide-minibuffer-maybe)
-  (helm-mode 1)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; undo-tree
-(use-package undo-tree
-  :ensure t
-  :config
-  (global-undo-tree-mode)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; volatile highlights
-(use-package volatile-highlights
-  :ensure t
-  :config
-  (volatile-highlights-mode t)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; yasnippet
-(use-package yasnippet
-  :ensure t
-  :config
-  (yas-global-mode 1)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; ggtags
-(use-package ggtags
-  :ensure t
-  :config
-  (add-hook 'c-mode-common-hook
-            (lambda
-	      (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
-		(ggtags-mode 1))))
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; workgroups2
-(use-package workgroups
-  :ensure t
-  :config
-  (workgroups-mode 1)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; smartparens
-(use-package smartparens
-  :ensure t
-  :diminish smartparens-mode
-  :config
-  (progn
-    (require 'smartparens-config)
-    (smartparens-global-mode 1))
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; clean-aindent-mode
-(use-package clean-aindent-mode
-  :ensure t
-  :hook prog-mode
-  :config
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; company config
-(use-package company
-  :ensure t
-  :init (global-company-mode)
-  :config
-  (add-to-list 'company-backends 'company-c-headers)
-  (add-hook 'c-mode-common-hook
-	    (lambda ()
-	      (define-key c-mode-base-map  [(tab)] 'company-complete)))
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; projectile config
-(use-package projectile
-  :ensure t
-  :bind (("C-c p" . projectile-command-map))
-  :config
-  (projectile-global-mode)
-  (setq projectile-completion-system 'helm)
-  (setq projectile-indexing-method 'alien)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-(use-package helm-projectile
-  :ensure t
-  :config
-  (helm-projectile-on)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; magit config
-(use-package magit
-  :commands magit-get-top-dir
-  :bind (("C-x g s" . magit-status)
-         ("C-x g f" . magit-file-log)
-         ("C-x g h" . magit-log)
-	 ("C-x g c" . magit-branch)
-	 ("C-x g t" . magit-tag))
-  :init
-  (progn
-
-    ;; we no longer need vc-git
-    (delete 'Git vc-handled-backends)
-    ;; make magit status go full-screen but remember previous window
-    ;; settings
-    ;; from: http://whattheemacsd.com/setup-magit.el-01.html
-    (defadvice magit-status (around magit-fullscreen activate)
-      (window-configuration-to-register :magit-fullscreen)
-      ad-do-it
-      (delete-other-windows))
-
-    ;; Close popup when commiting - this stops the commit window
-    ;; hanging around
-    ;; From: http://git.io/rPBE0Q
-    (defadvice git-commit-commit (after delete-window activate)
-      (delete-window))
-
-    (defadvice git-commit-abort (after delete-window activate)
-      (delete-window))
-
-    ;; these two force a new line to be inserted into a commit window,
-    ;; which stops the invalid style showing up.
-    ;; From: http://git.io/rPBE0Q
-    (defun magit-commit-mode-init ()
-      (when (looking-at "\n")
-        (open-line 1)))
-
-    (add-hook 'git-commit-mode-hook 'magit-commit-mode-init))
-  :config
-  (progn
-    ;; restore previously hidden windows
-    (defadvice magit-quit-window (around magit-restore-screen activate)
-      (let ((current-mode major-mode))
-        ad-do-it
-        ;; we only want to jump to register when the last seen buffer
-        ;; was a magit-status buffer.
-        (when (eq 'magit-status-mode current-mode)
-          (jump-to-register :magit-fullscreen))))
-
-    (defun magit-maybe-commit (&optional show-options)
-      "Runs magit-commit unless prefix is passed"
-      (interactive "P")
-      (if show-options
-          (magit-key-mode-popup-committing)
-        (magit-commit)))
-
-    (define-key magit-mode-map "c" 'magit-maybe-commit)
-
-    ;; major mode for editing `git rebase -i` files
-    (use-package rebase-mode)
-
-    ;; magit settings
-    (setq
-     ;; use ido to look for branches
-     magit-completing-read-function 'magit-ido-completing-read
-     ;; don't put "origin-" in front of new branch names by default
-     magit-default-tracking-name-function 'magit-default-tracking-name-branch-only
-     ;; open magit status in same window as current buffer
-     magit-status-buffer-switch-function 'switch-to-buffer
-     ;; highlight word/letter changes in hunk diffs
-     magit-diff-refine-hunk t
-     ;; ask me if I want to include a revision when rewriting
-     magit-rewrite-inclusive 'ask
-     ;; ask me to save buffers
-     magit-save-some-buffers t
-     ;; pop the process buffer if we're taking a while to complete
-     magit-process-popup-time 10
-     ;; ask me if I want a tracking upstream
-     magit-set-upstream-on-push 'askifnotset
-     )
-    (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe)))
-
-;; flycheck
-(use-package flycheck
-  :ensure t
-  :init (global-flycheck-mode)
-  :config
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-(use-package flycheck-pos-tip
-  :ensure t
-  :after flycheck
-  :config
-  (flycheck-pos-tip-mode)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; nyan mode
-(use-package nyan-mode
-  :if window-system
-  :ensure t
-  :config
-  (nyan-mode))
-
-;; semantic refactor
-(use-package srefactor
-  :ensure t
-  :config
-  (semantic-mode 1)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; guide-key
-(use-package guide-key
-  :ensure t
-  :config
-  (setq guide-key/guide-key-sequence '("C-x" "C-c" "M-g" "C-h"))
-  (setq guide-key/recursive-key-sequence-flag t)
-  (setq guide-key/popup-window-position 'bottom)
-  (guide-key-mode 1)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; x86 lookup
-(use-package x86-lookup
-  :ensure t
-  :init
-  (setq x86-lookup-pdf "D:/Coding/x86-instructions.pdf")
-  :bind ("C-h x" . x86-lookup)
-  :config
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; org-bullets
-(use-package org-bullets
-  :ensure t
-  :hook org-mode
-  :config
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-;; pdf-tools
-(use-package pdf-tools
-  :ensure t
-  :config
-  (pdf-tools-install)
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-(use-package org
-  :ensure t
-  :config
-  (setq auto-package-update-delete-old-versions t)
-  (setq auto-package-update-hide-results t)
-  (auto-package-update-maybe))
-
-(custom-set-variables
- ;; custom-set-variables was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- '(package-selected-packages
-   (quote
-    (zenburn-theme org flycheck-pos-tip flycheck rtags racket-mode geiser auto-package-update use-package pdf-tools org-bullets x86-lookup ztree yasnippet workgroups2 volatile-highlights undo-tree srefactor smartparens nyan-mode magit ibuffer-vc helm-projectile guide-key ggtags diff-hl company-c-headers clean-aindent-mode))))
-(custom-set-faces
- ;; custom-set-faces was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- )
diff --git a/projectile-bookmarks.eld b/projectile-bookmarks.eld
deleted file mode 100644
index ac339ae..0000000
--- a/projectile-bookmarks.eld
+++ /dev/null
@@ -1 +0,0 @@
-("~/.emacs.d/")
\ No newline at end of file
diff --git a/projectile.cache b/projectile.cache
deleted file mode 100644
index c1321b1..0000000
--- a/projectile.cache
+++ /dev/null
@@ -1 +0,0 @@
-#s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8125 data ("c:/Users/joelg/.emacs.d/" ("elpa/zenburn-theme-20181014.1555/zenburn-theme-autoloads.el" "elpa/flycheck-pos-tip-20180610.1615/flycheck-pos-tip-autoloads.el" "elpa/flycheck-20181018.1021/flycheck-autoloads.el" "elpa/rtags-20181120.756/rtags-autoloads.el" "elpa/helm-20181120.1326/helm-autoloads.el" "elpa/use-package-20181119.2350/use-package-autoloads.el" "elpa/flycheck-clang-analyzer-readme.txt" "elpa/tablist-20170220.335/tablist.el" "elpa/tablist-20170220.335/tablist-filter.el" "elpa/geiser-20181117.650/geiser-reload.el" "elpa/geiser-20181117.650/geiser-version.el" "elpa/geiser-20181117.650/geiser-popup.el" "elpa/geiser-20181117.650/geiser-image.el" "elpa/geiser-20181117.650/geiser-chez.el" "elpa/geiser-20181117.650/geiser-custom.el" "elpa/geiser-20181117.650/geiser-mit.el" "elpa/geiser-20181117.650/geiser-racket.el" "elpa/geiser-20181117.650/geiser-syntax.el" "elpa/geiser-20181117.650/geiser-edit.el" "elpa/geiser-20181117.650/geiser-chibi.el" "elpa/geiser-20181117.650/geiser-guile.el" "elpa/geiser-20181117.650/geiser-base.el" "elpa/geiser-20181117.650/geiser-compile.el" "elpa/geiser-20181117.650/geiser-connection.el" "elpa/geiser-20181117.650/geiser-debug.el" "elpa/geiser-20181117.650/geiser-chicken.el" "elpa/geiser-20181117.650/geiser-mode.el" "elpa/geiser-20181117.650/geiser-log.el" "elpa/geiser-20181117.650/geiser.el" "elpa/geiser-20181117.650/geiser-autodoc.el" "elpa/geiser-20181117.650/geiser-eval.el" "elpa/geiser-20181117.650/geiser-completion.el" "elpa/geiser-20181117.650/geiser-xref.el" "elpa/geiser-20181117.650/geiser-doc.el" "elpa/geiser-20181117.650/geiser-menu.el" "elpa/geiser-20181117.650/geiser-repl.el" "elpa/geiser-20181117.650/geiser-company.el" "elpa/geiser-20181117.650/geiser-impl.el" "elpa/faceup-20170925.1946/faceup.el" "elpa/helm-core-20181119.2038/helm-multi-match.el" "elpa/helm-core-20181119.2038/helm-source.el" "elpa/helm-core-20181119.2038/helm-lib.el" "elpa/helm-core-20181119.2038/helm.el" "elpa/pdf-tools-20181118.2051/pdf-annot.el" "elpa/org-9.1.14/org-irc.el" "elpa/org-9.1.14/org-indent.el" "elpa/org-9.1.14/org-version.el" "elpa/org-9.1.14/org-mobile.el" "elpa/org-9.1.14/ox-org.el" "elpa/org-9.1.14/org-bbdb.el" "elpa/org-9.1.14/ob-lob.el" "elpa/org-9.1.14/org-plot.el" "elpa/org-9.1.14/ob-keys.el" "elpa/org-bullets-20180208.2343/org-bullets.el" "elpa/org-9.1.14/org-capture.el" "elpa/org-9.1.14/org-colview.el" "elpa/org-9.1.14/ox-beamer.el" "elpa/org-9.1.14/org-duration.el" "elpa/org-9.1.14/org-attach.el" "elpa/org-9.1.14/ox-html.el" "elpa/org-9.1.14/ox.el" "elpa/org-9.1.14/ox-odt.el" "elpa/org-9.1.14/org-pcomplete.el" "elpa/org-9.1.14/ob-exp.el" "elpa/org-9.1.14/org-faces.el" "elpa/org-9.1.14/ox-icalendar.el" "elpa/org-9.1.14/org-timer.el" "elpa/org-9.1.14/org-lint.el" "elpa/org-9.1.14/org-entities.el" "elpa/org-9.1.14/org-archive.el" "elpa/org-9.1.14/ox-ascii.el" "elpa/org-9.1.14/ob-tangle.el" "elpa/org-9.1.14/org-macro.el" "elpa/org-9.1.14/org-id.el" "elpa/org-9.1.14/org-datetree.el" "elpa/org-9.1.14/org-feed.el" "elpa/org-9.1.14/ob-ref.el" "elpa/org-9.1.14/org-macs.el" "elpa/org-9.1.14/ox-texinfo.el" "elpa/org-9.1.14/org-table.el" "elpa/org-9.1.14/ob-emacs-lisp.el" "elpa/org-9.1.14/ob-table.el" "elpa/org-9.1.14/org-clock.el" "elpa/org-9.1.14/ob-comint.el" "elpa/org-9.1.14/ox-md.el" "elpa/org-9.1.14/org-element.el" "elpa/org-9.1.14/org-agenda.el" "elpa/org-9.1.14/ox-latex.el" "elpa/org-9.1.14/org-list.el" "elpa/org-9.1.14/ox-publish.el" "elpa/org-9.1.14/org-src.el" "elpa/org-9.1.14/ob-eval.el" "elpa/org-9.1.14/org-footnote.el" "elpa/org-9.1.14/org-compat.el" "elpa/org-9.1.14/ob-core.el" "elpa/org-9.1.14/org.el" "elpa/bind-key-20180513.430/bind-key.el" "elpa/racket-mode-20181117.229/racket-mode-autoloads.el" "elpa/faceup-20170925.1946/faceup-autoloads.el" "elpa/chicken-scheme-20141116.1939/chicken-scheme-autoloads.el" "elpa/geiser-20181117.650/geiser-autoloads.el" "elpa/auto-package-update-20180712.2045/auto-package-update.el" "elpa/helm-core-20181119.2038/helm-core-autoloads.el" "elpa/auto-package-update-20180712.2045/auto-package-update-autoloads.el" "elpa/bind-key-20180513.430/bind-key-autoloads.el" "elpa/pdf-tools-20181118.2051/pdf-loader.el" "elpa/pdf-tools-20181118.2051/pdf-sync.el" "elpa/pdf-tools-20181118.2051/pdf-occur.el" "elpa/pdf-tools-20181118.2051/pdf-virtual.el" "elpa/pdf-tools-20181118.2051/pdf-links.el" "elpa/pdf-tools-20181118.2051/pdf-misc.el" "elpa/pdf-tools-20181118.2051/pdf-tools.el" "elpa/pdf-tools-20181118.2051/pdf-view.el" "elpa/pdf-tools-20181118.2051/pdf-util.el" "elpa/pdf-tools-20181118.2051/pdf-history.el" "elpa/pdf-tools-20181118.2051/pdf-outline.el" "elpa/pdf-tools-20181118.2051/pdf-isearch.el" "elpa/pdf-tools-20181118.2051/pdf-info.el" "elpa/pdf-tools-20181118.2051/pdf-cache.el" "elpa/pdf-tools-20181118.2051/pdf-tools-autoloads.el" "elpa/tablist-20170220.335/tablist-autoloads.el" "elpa/org-9.1.14/org-loaddefs.el" "elpa/org-9.1.14/org-autoloads.el" "elpa/org-bullets-20180208.2343/org-bullets-autoloads.el" "elpa/x86-lookup-20180528.1635/x86-lookup.el" "elpa/x86-lookup-20180528.1635/x86-lookup-autoloads.el" "tramp" "auto-save-list/.saves-6756-JOEL-PC~" "semanticdb/!drive_c!Users!joelg!.emacs.d!semantic.cache" "bookmarks" "custom/setup-applications.el" "custom/setup-applications.el~" "custom/setup-communication.el" "custom/setup-communication.el~" "custom/setup-convenience.el" "custom/setup-convenience.el~" "custom/setup-data.el" "custom/setup-data.el~" "custom/setup-development.el" "custom/setup-development.el~" "custom/setup-editing.el" "custom/setup-editing.el~" "custom/setup-environment.el" "custom/setup-environment.el~" "custom/setup-external.el" "custom/setup-external.el~" "custom/setup-faces.el" "custom/setup-faces.el~" "custom/setup-files.el" "custom/setup-files.el~" "custom/setup-help.el" "custom/setup-help.el~" "custom/setup-local.el" "custom/setup-local.el~" "custom/setup-multimedia.el" "custom/setup-multimedia.el~" "custom/setup-programming.el" "custom/setup-programming.el~" "custom/setup-text.el" "custom/setup-text.el~" "elpa/anaphora-20180618.2200/anaphora-autoloads.el" "elpa/anaphora-20180618.2200/anaphora-pkg.el" "elpa/anaphora-20180618.2200/anaphora.el" "elpa/anaphora-20180618.2200/anaphora.elc" "elpa/archives/gnu/archive-contents" "elpa/archives/melpa/archive-contents" "elpa/async-20180527.1730/async-autoloads.el" "elpa/async-20180527.1730/async-bytecomp.el" "elpa/async-20180527.1730/async-bytecomp.elc" "elpa/async-20180527.1730/async-pkg.el" "elpa/async-20180527.1730/async.el" "elpa/async-20180527.1730/async.elc" "elpa/async-20180527.1730/dired-async.el" "elpa/async-20180527.1730/dired-async.elc" "elpa/async-20180527.1730/smtpmail-async.el" "elpa/async-20180527.1730/smtpmail-async.elc" "elpa/auctex-readme.txt" "elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode-autoloads.el" "elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode-pkg.el" "elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode.el" "elpa/clean-aindent-mode-20171017.2043/clean-aindent-mode.elc" "elpa/company-20181105.2312/company-abbrev.el" "elpa/company-20181105.2312/company-abbrev.elc" "elpa/company-20181105.2312/company-autoloads.el" "elpa/company-20181105.2312/company-bbdb.el" "elpa/company-20181105.2312/company-bbdb.elc" "elpa/company-20181105.2312/company-capf.el" "elpa/company-20181105.2312/company-capf.elc" "elpa/company-20181105.2312/company-clang.el" "elpa/company-20181105.2312/company-clang.elc" "elpa/company-20181105.2312/company-cmake.el" "elpa/company-20181105.2312/company-cmake.elc" "elpa/company-20181105.2312/company-css.el" "elpa/company-20181105.2312/company-css.elc" "elpa/company-20181105.2312/company-dabbrev-code.el" "elpa/company-20181105.2312/company-dabbrev-code.elc" "elpa/company-20181105.2312/company-dabbrev.el" "elpa/company-20181105.2312/company-dabbrev.elc" "elpa/company-20181105.2312/company-eclim.el" "elpa/company-20181105.2312/company-eclim.elc" "elpa/company-20181105.2312/company-elisp.el" "elpa/company-20181105.2312/company-elisp.elc" "elpa/company-20181105.2312/company-etags.el" "elpa/company-20181105.2312/company-etags.elc" "elpa/company-20181105.2312/company-files.el" "elpa/company-20181105.2312/company-files.elc" "elpa/company-20181105.2312/company-gtags.el" "elpa/company-20181105.2312/company-gtags.elc" "elpa/company-20181105.2312/company-ispell.el" "elpa/company-20181105.2312/company-ispell.elc" "elpa/company-20181105.2312/company-keywords.el" "elpa/company-20181105.2312/company-keywords.elc" "elpa/company-20181105.2312/company-nxml.el" "elpa/company-20181105.2312/company-nxml.elc" "elpa/company-20181105.2312/company-oddmuse.el" "elpa/company-20181105.2312/company-oddmuse.elc" "elpa/company-20181105.2312/company-pkg.el" "elpa/company-20181105.2312/company-semantic.el" "elpa/company-20181105.2312/company-semantic.elc" "elpa/company-20181105.2312/company-template.el" "elpa/company-20181105.2312/company-template.elc" "elpa/company-20181105.2312/company-tempo.el" "elpa/company-20181105.2312/company-tempo.elc" "elpa/company-20181105.2312/company-tng.el" "elpa/company-20181105.2312/company-tng.elc" "elpa/company-20181105.2312/company-xcode.el" "elpa/company-20181105.2312/company-xcode.elc" "elpa/company-20181105.2312/company-yasnippet.el" "elpa/company-20181105.2312/company-yasnippet.elc" "elpa/company-20181105.2312/company.el" "elpa/company-20181105.2312/company.elc" "elpa/company-c-headers-20180814.1730/company-c-headers-autoloads.el" "elpa/company-c-headers-20180814.1730/company-c-headers-pkg.el" "elpa/company-c-headers-20180814.1730/company-c-headers.el" "elpa/company-c-headers-20180814.1730/company-c-headers.elc" "elpa/dash-20180910.1856/dash-autoloads.el" "elpa/dash-20180910.1856/dash-pkg.el" "elpa/dash-20180910.1856/dash.el" "elpa/dash-20180910.1856/dash.elc" "elpa/epl-20180205.2049/epl-autoloads.el" "elpa/epl-20180205.2049/epl-pkg.el" "elpa/epl-20180205.2049/epl.el" "elpa/epl-20180205.2049/epl.elc" "elpa/f-20180106.922/f-autoloads.el" "elpa/f-20180106.922/f-pkg.el" "elpa/f-20180106.922/f.el" "elpa/f-20180106.922/f.elc" "elpa/flycheck-readme.txt" "elpa/ggtags-20181031.1803/ggtags-autoloads.el" "elpa/ggtags-20181031.1803/ggtags-pkg.el" "elpa/ggtags-20181031.1803/ggtags.el" "elpa/ggtags-20181031.1803/ggtags.elc" "elpa/ghub-20181112.1755/buck.el" "elpa/ghub-20181112.1755/buck.elc" "elpa/ghub-20181112.1755/dir" "elpa/ghub-20181112.1755/ghub-autoloads.el" "elpa/ghub-20181112.1755/ghub-graphql.el" "elpa/ghub-20181112.1755/ghub-graphql.elc" "elpa/ghub-20181112.1755/ghub-pkg.el" "elpa/ghub-20181112.1755/ghub.el" "elpa/ghub-20181112.1755/ghub.elc" "elpa/ghub-20181112.1755/ghub.info" "elpa/ghub-20181112.1755/glab.el" "elpa/ghub-20181112.1755/glab.elc" "elpa/ghub-20181112.1755/gogs.el" "elpa/ghub-20181112.1755/gogs.elc" "elpa/ghub-20181112.1755/gtea.el" "elpa/ghub-20181112.1755/gtea.elc" "elpa/git-commit-20181116.1408/git-commit-autoloads.el" "elpa/git-commit-20181116.1408/git-commit-pkg.el" "elpa/git-commit-20181116.1408/git-commit.el" "elpa/git-commit-20181116.1408/git-commit.elc" "elpa/graphql-20180912.31/graphql-autoloads.el" "elpa/graphql-20180912.31/graphql-pkg.el" "elpa/graphql-20180912.31/graphql.el" "elpa/graphql-20180912.31/graphql.elc" "elpa/guide-key-20150108.635/guide-key-autoloads.el" "elpa/guide-key-20150108.635/guide-key-pkg.el" "elpa/guide-key-20150108.635/guide-key.el" "elpa/guide-key-20150108.635/guide-key.elc" "elpa/helm-projectile-20180815.1514/helm-projectile-autoloads.el" "elpa/helm-projectile-20180815.1514/helm-projectile-pkg.el" "elpa/helm-projectile-20180815.1514/helm-projectile.el" "elpa/helm-projectile-20180815.1514/helm-projectile.elc" "elpa/magit-20181116.1412/AUTHORS.md" "elpa/magit-20181116.1412/LICENSE" "elpa/magit-20181116.1412/dir" "elpa/magit-20181116.1412/git-rebase.el" "elpa/magit-20181116.1412/git-rebase.elc" "elpa/magit-20181116.1412/magit-apply.el" "elpa/magit-20181116.1412/magit-apply.elc" "elpa/magit-20181116.1412/magit-autoloads.el" "elpa/magit-20181116.1412/magit-autorevert.el" "elpa/magit-20181116.1412/magit-autorevert.elc" "elpa/magit-20181116.1412/magit-bisect.el" "elpa/magit-20181116.1412/magit-bisect.elc" "elpa/magit-20181116.1412/magit-blame.el" "elpa/magit-20181116.1412/magit-blame.elc" "elpa/magit-20181116.1412/magit-bookmark.el" "elpa/magit-20181116.1412/magit-bookmark.elc" "elpa/magit-20181116.1412/magit-branch.el" "elpa/magit-20181116.1412/magit-branch.elc" "elpa/magit-20181116.1412/magit-clone.el" "elpa/magit-20181116.1412/magit-clone.elc" "elpa/magit-20181116.1412/magit-collab.el" "elpa/magit-20181116.1412/magit-collab.elc" "elpa/magit-20181116.1412/magit-commit.el" "elpa/magit-20181116.1412/magit-commit.elc" "elpa/magit-20181116.1412/magit-core.el" "elpa/magit-20181116.1412/magit-core.elc" "elpa/magit-20181116.1412/magit-diff.el" "elpa/magit-20181116.1412/magit-diff.elc" "elpa/magit-20181116.1412/magit-ediff.el" "elpa/magit-20181116.1412/magit-ediff.elc" "elpa/magit-20181116.1412/magit-extras.el" "elpa/magit-20181116.1412/magit-extras.elc" "elpa/magit-20181116.1412/magit-fetch.el" "elpa/magit-20181116.1412/magit-fetch.elc" "elpa/magit-20181116.1412/magit-files.el" "elpa/magit-20181116.1412/magit-files.elc" "elpa/magit-20181116.1412/magit-git.el" "elpa/magit-20181116.1412/magit-git.elc" "elpa/magit-20181116.1412/magit-gitignore.el" "elpa/magit-20181116.1412/magit-gitignore.elc" "elpa/magit-20181116.1412/magit-imenu.el" "elpa/magit-20181116.1412/magit-imenu.elc" "elpa/magit-20181116.1412/magit-log.el" "elpa/magit-20181116.1412/magit-log.elc" "elpa/magit-20181116.1412/magit-margin.el" "elpa/magit-20181116.1412/magit-margin.elc" "elpa/magit-20181116.1412/magit-merge.el" "elpa/magit-20181116.1412/magit-merge.elc" "elpa/magit-20181116.1412/magit-mode.el" "elpa/magit-20181116.1412/magit-mode.elc" "elpa/magit-20181116.1412/magit-notes.el" "elpa/magit-20181116.1412/magit-notes.elc" "elpa/magit-20181116.1412/magit-obsolete.el" "elpa/magit-20181116.1412/magit-obsolete.elc" "elpa/magit-20181116.1412/magit-patch.el" "elpa/magit-20181116.1412/magit-patch.elc" "elpa/magit-20181116.1412/magit-pkg.el" "elpa/magit-20181116.1412/magit-process.el" "elpa/magit-20181116.1412/magit-process.elc" "elpa/magit-20181116.1412/magit-pull.el" "elpa/magit-20181116.1412/magit-pull.elc" "elpa/magit-20181116.1412/magit-push.el" "elpa/magit-20181116.1412/magit-push.elc" "elpa/magit-20181116.1412/magit-refs.el" "elpa/magit-20181116.1412/magit-refs.elc" "elpa/magit-20181116.1412/magit-remote.el" "elpa/magit-20181116.1412/magit-remote.elc" "elpa/magit-20181116.1412/magit-repos.el" "elpa/magit-20181116.1412/magit-repos.elc" "elpa/magit-20181116.1412/magit-reset.el" "elpa/magit-20181116.1412/magit-reset.elc" "elpa/magit-20181116.1412/magit-section.el" "elpa/magit-20181116.1412/magit-section.elc" "elpa/magit-20181116.1412/magit-sequence.el" "elpa/magit-20181116.1412/magit-sequence.elc" "elpa/magit-20181116.1412/magit-stash.el" "elpa/magit-20181116.1412/magit-stash.elc" "elpa/magit-20181116.1412/magit-status.el" "elpa/magit-20181116.1412/magit-status.elc" "elpa/magit-20181116.1412/magit-submodule.el" "elpa/magit-20181116.1412/magit-submodule.elc" "elpa/magit-20181116.1412/magit-subtree.el" "elpa/magit-20181116.1412/magit-subtree.elc" "elpa/magit-20181116.1412/magit-tag.el" "elpa/magit-20181116.1412/magit-tag.elc" "elpa/magit-20181116.1412/magit-utils.el" "elpa/magit-20181116.1412/magit-utils.elc" "elpa/magit-20181116.1412/magit-wip.el" "elpa/magit-20181116.1412/magit-wip.elc" "elpa/magit-20181116.1412/magit-worktree.el" "elpa/magit-20181116.1412/magit-worktree.elc" "elpa/magit-20181116.1412/magit.el" "elpa/magit-20181116.1412/magit.elc" "elpa/magit-20181116.1412/magit.info" "elpa/magit-20181116.1412/magit.info-1" "elpa/magit-20181116.1412/magit.info-2" "elpa/magit-popup-20181003.921/dir" "elpa/magit-popup-20181003.921/magit-popup-autoloads.el" "elpa/magit-popup-20181003.921/magit-popup-pkg.el" "elpa/magit-popup-20181003.921/magit-popup.el" "elpa/magit-popup-20181003.921/magit-popup.elc" "elpa/magit-popup-20181003.921/magit-popup.info" "elpa/nyan-mode-20170423.740/img/nyan-frame-1.xpm" "elpa/nyan-mode-20170423.740/img/nyan-frame-2.xpm" "elpa/nyan-mode-20170423.740/img/nyan-frame-3.xpm" "elpa/nyan-mode-20170423.740/img/nyan-frame-4.xpm" "elpa/nyan-mode-20170423.740/img/nyan-frame-5.xpm" "elpa/nyan-mode-20170423.740/img/nyan-frame-6.xpm" "elpa/nyan-mode-20170423.740/img/nyan.xpm" "elpa/nyan-mode-20170423.740/img/outerspace.xpm" "elpa/nyan-mode-20170423.740/img/rainbow.xpm" "elpa/nyan-mode-20170423.740/mus/nyanlooped.mp3" "elpa/nyan-mode-20170423.740/nyan-mode-autoloads.el" "elpa/nyan-mode-20170423.740/nyan-mode-pkg.el" "elpa/nyan-mode-20170423.740/nyan-mode.el" "elpa/nyan-mode-20170423.740/nyan-mode.elc" "elpa/pkg-info-20150517.1143/pkg-info-autoloads.el" "elpa/pkg-info-20150517.1143/pkg-info-pkg.el" "elpa/pkg-info-20150517.1143/pkg-info.el" "elpa/pkg-info-20150517.1143/pkg-info.elc" "elpa/popup-20160709.1429/popup-autoloads.el" "elpa/popup-20160709.1429/popup-pkg.el" "elpa/popup-20160709.1429/popup.el" "elpa/popup-20160709.1429/popup.elc" "elpa/popwin-20150315.1300/popwin-autoloads.el" "elpa/popwin-20150315.1300/popwin-pkg.el" "elpa/popwin-20150315.1300/popwin.el" "elpa/popwin-20150315.1300/popwin.elc" "elpa/pos-tip-20150318.1513/pos-tip-autoloads.el" "elpa/pos-tip-20150318.1513/pos-tip-pkg.el" "elpa/pos-tip-20150318.1513/pos-tip.el" "elpa/pos-tip-20150318.1513/pos-tip.elc" "elpa/projectile-20181106.1631/projectile-autoloads.el" "elpa/projectile-20181106.1631/projectile-pkg.el" "elpa/projectile-20181106.1631/projectile.el" "elpa/projectile-20181106.1631/projectile.elc" "elpa/pydoc-info-readme.txt" "elpa/s-20180406.808/s-autoloads.el" "elpa/s-20180406.808/s-pkg.el" "elpa/s-20180406.808/s.el" "elpa/s-20180406.808/s.elc" "elpa/smartparens-20181028.1005/smartparens-autoloads.el" "elpa/smartparens-20181028.1005/smartparens-clojure.el" "elpa/smartparens-20181028.1005/smartparens-clojure.elc" "elpa/smartparens-20181028.1005/smartparens-config.el" "elpa/smartparens-20181028.1005/smartparens-config.elc" "elpa/smartparens-20181028.1005/smartparens-crystal.el" "elpa/smartparens-20181028.1005/smartparens-crystal.elc" "elpa/smartparens-20181028.1005/smartparens-elixir.el" "elpa/smartparens-20181028.1005/smartparens-elixir.elc" "elpa/smartparens-20181028.1005/smartparens-ess.el" "elpa/smartparens-20181028.1005/smartparens-ess.elc" "elpa/smartparens-20181028.1005/smartparens-haskell.el" "elpa/smartparens-20181028.1005/smartparens-haskell.elc" "elpa/smartparens-20181028.1005/smartparens-html.el" "elpa/smartparens-20181028.1005/smartparens-html.elc" "elpa/smartparens-20181028.1005/smartparens-javascript.el" "elpa/smartparens-20181028.1005/smartparens-javascript.elc" "elpa/smartparens-20181028.1005/smartparens-latex.el" "elpa/smartparens-20181028.1005/smartparens-latex.elc" "elpa/smartparens-20181028.1005/smartparens-lua.el" "elpa/smartparens-20181028.1005/smartparens-lua.elc" "elpa/smartparens-20181028.1005/smartparens-markdown.el" "elpa/smartparens-20181028.1005/smartparens-markdown.elc" "elpa/smartparens-20181028.1005/smartparens-ml.el" "elpa/smartparens-20181028.1005/smartparens-ml.elc" "elpa/smartparens-20181028.1005/smartparens-org.el" "elpa/smartparens-20181028.1005/smartparens-org.elc" "elpa/smartparens-20181028.1005/smartparens-pkg.el" "elpa/smartparens-20181028.1005/smartparens-python.el" "elpa/smartparens-20181028.1005/smartparens-python.elc" "elpa/smartparens-20181028.1005/smartparens-racket.el" "elpa/smartparens-20181028.1005/smartparens-racket.elc" "elpa/smartparens-20181028.1005/smartparens-ruby.el" "elpa/smartparens-20181028.1005/smartparens-ruby.elc" "elpa/smartparens-20181028.1005/smartparens-rust.el" "elpa/smartparens-20181028.1005/smartparens-rust.elc" "elpa/smartparens-20181028.1005/smartparens-scala.el" "elpa/smartparens-20181028.1005/smartparens-scala.elc" "elpa/smartparens-20181028.1005/smartparens-text.el" "elpa/smartparens-20181028.1005/smartparens-text.elc" "elpa/smartparens-20181028.1005/smartparens.el" "elpa/smartparens-20181028.1005/smartparens.elc" "elpa/srefactor-20180703.1810/srefactor-autoloads.el" "elpa/srefactor-20180703.1810/srefactor-lisp.el" "elpa/srefactor-20180703.1810/srefactor-lisp.elc" "elpa/srefactor-20180703.1810/srefactor-pkg.el" "elpa/srefactor-20180703.1810/srefactor-ui.el" "elpa/srefactor-20180703.1810/srefactor-ui.elc" "elpa/srefactor-20180703.1810/srefactor.el" "elpa/srefactor-20180703.1810/srefactor.elc" "elpa/treepy-20180724.656/treepy-autoloads.el" "elpa/treepy-20180724.656/treepy-pkg.el" "elpa/treepy-20180724.656/treepy.el" "elpa/treepy-20180724.656/treepy.elc" "elpa/undo-tree-0.6.5/undo-tree-autoloads.el" "elpa/undo-tree-0.6.5/undo-tree-pkg.el" "elpa/undo-tree-0.6.5/undo-tree.el" "elpa/undo-tree-0.6.5/undo-tree.elc" "elpa/volatile-highlights-20160612.155/volatile-highlights-autoloads.el" "elpa/volatile-highlights-20160612.155/volatile-highlights-pkg.el" "elpa/volatile-highlights-20160612.155/volatile-highlights.el" "elpa/volatile-highlights-20160612.155/volatile-highlights.elc" "elpa/volatile-highlights-readme.txt" "elpa/with-editor-20181113.1845/dir" "elpa/with-editor-20181113.1845/with-editor-autoloads.el" "elpa/with-editor-20181113.1845/with-editor-pkg.el" "elpa/with-editor-20181113.1845/with-editor.el" "elpa/with-editor-20181113.1845/with-editor.elc" "elpa/with-editor-20181113.1845/with-editor.info" "elpa/workgroups2-20141102.1922/workgroups2-autoloads.el" "elpa/workgroups2-20141102.1922/workgroups2-pkg.el" "elpa/workgroups2-20141102.1922/workgroups2.el" "elpa/yasnippet-20181015.1212/yasnippet-autoloads.el" "elpa/yasnippet-20181015.1212/yasnippet-pkg.el" "elpa/yasnippet-20181015.1212/yasnippet.el" "elpa/yasnippet-20181015.1212/yasnippet.elc" "init.el" "projectile-bookmarks.eld" "recentf" "recentf~" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!semantic!decorate!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!semantic!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!srecode!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!emacs-lisp!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!gnus!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!image!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!international!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!language!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!net!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!play!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!progmodes!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!semantic.cache" "semanticdb/!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!term!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!custom!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!company-20181105.2312!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!diff-hl-20180201.1155!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!flycheck-20181018.1021!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!ggtags-20181031.1803!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!ghub-20181112.1755!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!git-commit-20181110.1201!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!git-commit-20181116.1408!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!graphql-20180912.31!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!guide-key-20150108.635!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!magit-20181116.1412!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!popwin-20150315.1300!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!undo-tree-0.6.5!semantic.cache" "semanticdb/!drive_c!Users!joelg!.emacs.d!elpa!zenburn-theme-20181014.1555!semantic.cache" "srecode-map.el" "themes/zenburn-theme.el" "tmpiKD57q")))
\ No newline at end of file
diff --git a/recentf b/recentf
deleted file mode 100644
index 64a1f91..0000000
--- a/recentf
+++ /dev/null
@@ -1,32 +0,0 @@
-;;; Automatically generated by ‘recentf’ on Wed Nov 21 23:01:25 2018.
-
-(setq recentf-list
-      '(
-        "d:/Coding/zzz code/C/CPUt.c"
-        "c:/Users/joelg/.emacs.d/init.el"
-        "c:/Users/joelg/.emacs.d/elpa/helm-20181120.1326/helm-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/use-package-20181119.2350/use-package-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/flycheck-clang-analyzer-20180917.1425/flycheck-clang-analyzer-autoloads.el"
-        "c:/Users/joelg/.emacs_workgroups"
-        "c:/Users/joelg/.emacs.d/elpa/racket-mode-20181117.229/racket-mode-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/faceup-20170925.1946/faceup-autoloads.el"
-        "c:/Users/joelg/.emacs.d/custom/setup-development.el"
-        "c:/Users/joelg/.emacs.d/custom/setup-editing.el"
-        "d:/Coding/zzz code/Lisp/fibb.scm"
-        "c:/Users/joelg/.emacs.d/elpa/geiser-20181117.650/geiser-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/use-package-20181110.1758/use-package-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/bind-key-20180513.430/bind-key-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/org-bullets-20180208.2343/org-bullets-autoloads.el"
-        "c:/Users/joelg/OneDrive - The University of Melbourne/INFO20003/Exams/SampleAnswers.org"
-        "c:/Users/joelg/OneDrive - The University of Melbourne/INFO20003/Exams/SampleAnswers.tex"
-        "c:/Users/joelg/OneDrive - The University of Melbourne/SWEN20003/Exams/2018code.org"
-        "c:/Users/joelg/.emacs.d/custom/setup-files.el"
-        "c:/Users/joelg/.emacs.d/custom/setup-environment.el"
-        ))
-
-(setq recentf-filter-changer-current 'nil)
-
-
-;; Local Variables:
-;; coding: utf-8-emacs
-;; End:
diff --git a/recentf~ b/recentf~
deleted file mode 100644
index 31dac4a..0000000
--- a/recentf~
+++ /dev/null
@@ -1,29 +0,0 @@
-;;; Automatically generated by ‘recentf’ on Wed Nov 21 22:04:41 2018.
-
-(setq recentf-list
-      '(
-        "c:/Users/joelg/.emacs.d/init.el"
-        "c:/Users/joelg/.emacs.d/elpa/flycheck-clang-analyzer-20180917.1425/flycheck-clang-analyzer-autoloads.el"
-        "c:/Users/joelg/.emacs_workgroups"
-        "c:/Users/joelg/.emacs.d/elpa/racket-mode-20181117.229/racket-mode-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/faceup-20170925.1946/faceup-autoloads.el"
-        "c:/Users/joelg/.emacs.d/custom/setup-development.el"
-        "c:/Users/joelg/.emacs.d/custom/setup-editing.el"
-        "d:/Coding/zzz code/Lisp/fibb.scm"
-        "c:/Users/joelg/.emacs.d/elpa/geiser-20181117.650/geiser-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/use-package-20181110.1758/use-package-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/bind-key-20180513.430/bind-key-autoloads.el"
-        "c:/Users/joelg/.emacs.d/elpa/org-bullets-20180208.2343/org-bullets-autoloads.el"
-        "c:/Users/joelg/OneDrive - The University of Melbourne/INFO20003/Exams/SampleAnswers.org"
-        "c:/Users/joelg/OneDrive - The University of Melbourne/INFO20003/Exams/SampleAnswers.tex"
-        "c:/Users/joelg/OneDrive - The University of Melbourne/SWEN20003/Exams/2018code.org"
-        "c:/Users/joelg/.emacs.d/custom/setup-files.el"
-        "c:/Users/joelg/.emacs.d/custom/setup-environment.el"
-        ))
-
-(setq recentf-filter-changer-current 'nil)
-
-
-;; Local Variables:
-;; coding: utf-8-emacs
-;; End:
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041ede\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041ede\041semantic.cache"
deleted file mode 100644
index d392336..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041ede\041semantic.cache"
+++ /dev/null
@@ -1,701 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ede" include nil nil [1240 1254])
-            ("declare-function" code nil nil [1256 1311])
-            ("declare-function" code nil nil [1312 1371])
-            ("declare-function" code nil nil [1372 1430])
-            ("declare-function" code nil nil [1431 1484])
-            ("ede--disable-inode" variable nil nil [1486 1571])
-            ("ede-find-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [1598 2030])
-            ("ede-flush-project-hash" function (:user-visible-flag t) nil [2032 2274])
-            ("cl-defmethod" code nil nil [2340 2534])
-            ("cl-defmethod" code nil nil [2536 2953])
-            ("ede-inode-directory-hash" variable (:default-value (make-hash-table :test (quote equal))) nil [3185 3357])
-            ("ede--put-inode-dir-hash" function (:arguments ("dir" "inode")) nil [3359 3548])
-            ("ede--get-inode-dir-hash" function (:arguments ("dir")) nil [3550 3719])
-            ("ede--inode-for-dir" function (:arguments ("dir")) nil [3721 4044])
-            ("cl-defmethod" code nil nil [4046 4299])
-            ("ede--inode-get-toplevel-open-project" function (:arguments ("inode")) nil [4301 4716])
-            ("ede-directory-get-open-project" function (:arguments ("dir" "rootreturn")) nil [4953 5868])
-            ("ede-directory-get-toplevel-open-project" function (:arguments ("dir" "exact")) nil [5963 7965])
-            ("cl-defmethod" code nil nil [7967 8777])
-            ("ede-project-directory-hash" variable (:default-value (make-hash-table :test (quote equal))) nil [9002 9196])
-            ("ede-flush-directory-hash" function (:user-visible-flag t) nil [9198 9612])
-            ("ede-project-directory-remove-hash" function (:arguments ("dir")) nil [9614 10218])
-            ("ede--directory-project-from-hash" function (:arguments ("dir")) nil [10220 10457])
-            ("ede--directory-project-add-description-to-hash" function (:arguments ("dir" "desc")) nil [10459 10707])
-            ("ede-directory-project-p" function (:arguments ("dir" "force")) nil [10944 11727])
-            ("ede-directory-project-cons" function (:arguments ("dir" "force")) nil [11729 12590])
-            ("ede-toplevel-project" function (:arguments ("dir")) nil [12792 13460])
-            ("defalias" code nil nil [13462 13523])
-            ("cl-defmethod" code nil nil [13559 14117])
-            ("cl-defmethod" code nil nil [14119 14850])
-            ("ede-get-locator-object" function (:arguments ("proj")) nil [14878 15315])
-            ("cl-defmethod" code nil nil [15317 17681])
-            ("cl-defmethod" code nil nil [17683 18471])
-            ("cl-defmethod" code nil nil [18473 18892])
-            ("cl-defmethod" code nil nil [18894 19450])
-            ("cl-defmethod" code nil nil [19452 19828])
-            ("ede-up-directory" function (:arguments ("dir")) nil [19848 20167])
-            ("ede/files" package nil nil [20170 20190]))          
-      :file "files.el"
-      :pointmax 20335
-      :fsize 20334
-      :lastmodtime '(23525 29529 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eieio" include nil nil [924 940])
-            ("cl-generic" include nil nil [941 962])
-            ("eieio-speedbar" include nil nil [963 988])
-            ("ede/auto" include nil nil [989 1008])
-            ("ede-projects" variable nil nil [1032 1053])
-            ("ede-object" variable nil nil [1054 1073])
-            ("ede-object-root-project" variable nil nil [1074 1106])
-            ("declare-function" code nil nil [1108 1161])
-            ("declare-function" code nil nil [1162 1229])
-            ("declare-function" code nil nil [1230 1289])
-            ("declare-function" code nil nil [1290 1350])
-            ("ede-target" type
-               (:superclasses "eieio-speedbar-directory-button"
-                :members 
-                  ( ("buttonface" variable (:default-value "speedbar-file-face") nil nil)
-                    ("name" variable
-                       (:documentation "Name of this target."
-                        :type "string")
-                        nil nil)
-                    ("path" variable
-                       (:documentation "The path to the sources of this target.
-Relative to the path of the project it belongs to."
-                        :type "string")
-                        nil nil)
-                    ("source" variable
-                       (:documentation "Source files in this target."
-                        :default-value "nil"
-                        :type "list")
-                        nil nil)
-                    ("versionsource" variable
-                       (:documentation "Source files with a version string in them.
-These files are checked for a version string whenever the EDE version
-of the master project is changed.  When strings are found, the version
-previously there is updated."
-                        :default-value "nil"
-                        :type "list")
-                        nil nil)
-                    ("sourcetype" variable
-                       (:documentation "A list of `ede-sourcecode' objects this class will handle.
-This is used to match target objects with the compilers they can use, and
-which files this object is interested in."
-                        :static-flag t
-                        :type "list")
-                        nil nil)
-                    ("keybindings" variable
-                       (:documentation "Keybindings specialized to this type of target."
-                        :static-flag t
-                        :default-value "((\"D\" . ede-debug-target))")
-                        nil nil)
-                    ("menu" variable
-                       (:documentation "Menu specialized to this type of target."
-                        :static-flag t
-                        :default-value "([\"Debug target\" ede-debug-target (ede-buffer-belongs-to-target-p)] [\"Run target\" ede-run-target (ede-buffer-belongs-to-target-p)])")
-                        nil nil))                  
-                :type "class")
-                nil [1462 3742])
-            ("ede-project-placeholder" type
-               (:superclasses "eieio-speedbar-directory-button"
-                :members 
-                  ( ("name" variable
-                       (:documentation "The name used when generating distribution files."
-                        :default-value "Untitled"
-                        :type "string")
-                        nil nil)
-                    ("version" variable
-                       (:documentation "The version number used when distributing files."
-                        :default-value "1.0"
-                        :type "string")
-                        nil nil)
-                    ("directory" variable
-                       (:documentation "Directory this project is associated with."
-                        :type "string")
-                        nil nil)
-                    ("dirinode" variable (:documentation "The inode id for :directory.") nil nil)
-                    ("file" variable
-                       (:documentation "The File uniquely tagging this project instance.
-For some project types, this will be the file that stores the project configuration.
-In other projects types, this file is merely a unique identifier to this type of project."
-                        :type "string")
-                        nil nil)
-                    ("rootproject" variable
-                       (:documentation "Pointer to our root project."
-                        :default-value "nil"
-                        :type "(or null ede-project-placeholder-child)")
-                        nil nil))                  
-                :type "class")
-                nil [3980 5287])
-            ("unless" code nil nil [5721 5814])
-            ("ede-project" type
-               (:superclasses "ede-project-placeholder"
-                :members 
-                  ( ("subproj" variable
-                       (:documentation "Sub projects controlled by this project.
-For Automake based projects, each directory is treated as a project."
-                        :default-value "nil"
-                        :type "list")
-                        nil nil)
-                    ("targets" variable
-                       (:documentation "List of top level targets in this project."
-                        :type "ede-target-list")
-                        nil nil)
-                    ("locate-obj" variable
-                       (:documentation "A locate object to use as a backup to `ede-expand-filename'."
-                        :type "(or null ede-locate-base-child)")
-                        nil nil)
-                    ("tool-cache" variable
-                       (:documentation "List of tool cache configurations in this project.
-This allows any tool to create, manage, and persist project-specific settings."
-                        :type "list")
-                        nil nil)
-                    ("mailinglist" variable
-                       (:documentation "An email address where users might send email for help."
-                        :type "string")
-                        nil nil)
-                    ("web-site-url" variable
-                       (:documentation "URL to this projects web site.
-This is a URL to be sent to a web site for documentation."
-                        :type "string")
-                        nil nil)
-                    ("web-site-directory" variable (:documentation "A directory where web pages can be found by Emacs.
-For remote locations use a path compatible with ange-ftp or EFS.
-You can also use TRAMP for use with rcp & scp.") nil nil)
-                    ("web-site-file" variable (:documentation "A file which contains the home page for this project.
-This file can be relative to slot `web-site-directory'.
-This can be a local file, use ange-ftp, EFS, or TRAMP.") nil nil)
-                    ("ftp-site" variable
-                       (:documentation "FTP site where this project's distribution can be found.
-This FTP site should be in Emacs form, as needed by `ange-ftp', but can
-also be of a form used by TRAMP for use with scp, or rcp."
-                        :type "string")
-                        nil nil)
-                    ("ftp-upload-site" variable
-                       (:documentation "FTP Site to upload new distributions to.
-This FTP site should be in Emacs form as needed by `ange-ftp'.
-If this slot is nil, then use `ftp-site' instead."
-                        :type "string")
-                        nil nil)
-                    ("configurations" variable
-                       (:documentation "List of available configuration types.
-Individual target/project types can form associations between a configuration,
-and target specific elements such as build variables."
-                        :default-value "(\"debug\" \"release\")"
-                        :type "list")
-                        nil nil)
-                    ("configuration-default" variable
-                       (:documentation "The default configuration."
-                        :default-value "debug")
-                        nil nil)
-                    ("local-variables" variable
-                       (:documentation "Project local variables"
-                        :default-value "nil")
-                        nil nil)
-                    ("keybindings" variable
-                       (:documentation "Keybindings specialized to this type of target."
-                        :static-flag t
-                        :default-value "((\"D\" . ede-debug-target) (\"R\" . ede-run-target))")
-                        nil nil)
-                    ("menu" variable
-                       (:documentation "Menu specialized to this type of target."
-                        :static-flag t
-                        :default-value "([\"Update Version\" ede-update-version ede-object] [\"Version Control Status\" ede-vc-project-directory ede-object] [\"Edit Project Homepage\" ede-edit-web-page (and ede-object (oref (ede-toplevel) web-site-file))] [\"Browse Project URL\" ede-web-browse-home (and ede-object (not (string= \"\" (oref (ede-toplevel) web-site-url))))] \"--\" [\"Rescan Project Files\" ede-rescan-toplevel t] [\"Edit Projectfile\" ede-edit-file-target (ede-buffer-belongs-to-project-p)])")
-                        nil nil))                  
-                :type "class")
-                nil [5816 10357])
-            ("ede-with-projectfile" function (:arguments ("obj" "forms")) nil [10403 10975])
-            ("ede-project-placeholder-cache-file" variable (:default-value (locate-user-emacs-file "ede-projects.el" ".projects.ede")) nil [11168 11404])
-            ("ede-project-cache-files" variable nil nil [11406 11489])
-            ("ede-save-cache" function (:user-visible-flag t) nil [11491 12531])
-            ("ede-load-cache" function nil nil [12533 13437])
-            ("cl-defmethod" code nil nil [14048 14574])
-            ("cl-defmethod" code nil nil [14576 14800])
-            ("cl-defmethod" code nil nil [15011 15109])
-            ("cl-defmethod" code nil nil [15111 15259])
-            ("cl-defmethod" code nil nil [15261 15420])
-            ("cl-defmethod" code nil nil [15422 15671])
-            ("cl-defmethod" code nil nil [15673 15881])
-            ("ede-header-file" function nil nil [16156 16380])
-            ("cl-defmethod" code nil nil [16382 16503])
-            ("cl-defmethod" code nil nil [16505 17042])
-            ("ede-documentation-files" function nil nil [17044 17370])
-            ("cl-defmethod" code nil nil [17372 17559])
-            ("cl-defmethod" code nil nil [17561 18060])
-            ("cl-defmethod" code nil nil [18062 18558])
-            ("cl-defmethod" code nil nil [18560 18767])
-            ("ede-html-documentation-files" function nil nil [18769 18929])
-            ("cl-defmethod" code nil nil [18931 19051])
-            ("cl-defmethod" code nil nil [19203 19522])
-            ("cl-defmethod" code nil nil [19524 19857])
-            ("cl-defmethod" code nil nil [19859 20123])
-            ("ede-adebug-project" function (:user-visible-flag t) nil [20145 20445])
-            ("ede-adebug-project-parent" function (:user-visible-flag t) nil [20447 20759])
-            ("ede-adebug-project-root" function (:user-visible-flag t) nil [20761 21059])
-            ("ede-toplevel" function (:arguments ("subproj")) nil [21193 21639])
-            ("ede-normalize-file/directory" function (:arguments ("this" "project-file-name")) nil [21669 22367])
-            ("ede/base" package nil nil [22594 22613]))          
-      :file "base.el"
-      :pointmax 22756
-      :fsize 22755
-      :lastmodtime '(23525 29528 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eieio" include nil nil [1091 1107])
-            ("cl-generic" include nil nil [1108 1129])
-            ("declare-function" code nil nil [1131 1176])
-            ("declare-function" code nil nil [1177 1232])
-            ("ede-project-autoload-dirmatch" type
-               (:members 
-                  ( ("fromconfig" variable
-                       (:documentation "A config file within which the match pattern lives."
-                        :default-value "nil")
-                        nil nil)
-                    ("configregex" variable
-                       (:documentation "A regexp to identify the dirmatch pattern."
-                        :default-value "nil")
-                        nil nil)
-                    ("configregexidx" variable
-                       (:documentation "An index into the match-data of `configregex'."
-                        :default-value "nil")
-                        nil nil)
-                    ("subdir-only" variable
-                       (:documentation "Non-nil means an exact match to the found directory is a non-match.
-This implies projects exist only in subdirectories of the configuration path.
-If `:subdir-only' is nil, then the directory from the configuration file is the project."
-                        :default-value "t")
-                        nil nil)
-                    ("configdatastash" variable (:documentation "Save discovered match string.") nil nil))                  
-                :type "class")
-                nil [1234 2360])
-            ("cl-defmethod" code nil nil [2362 2795])
-            ("cl-defmethod" code nil nil [2798 4813])
-            ("declare-function" code nil nil [4815 4860])
-            ("declare-function" code nil nil [4861 4916])
-            ("ede-project-autoload" type
-               (:members 
-                  ( ("name" variable (:documentation "Name of this project type") nil nil)
-                    ("file" variable (:documentation "The lisp file belonging to this class.") nil nil)
-                    ("proj-file" variable (:documentation "Name of a project file of this type.") nil nil)
-                    ("root-only" variable
-                       (:documentation "Non-nil if project detection only finds proj-file @ project root."
-                        :default-value "t")
-                        nil nil)
-                    ("proj-root-dirmatch" variable
-                       (:documentation "To avoid loading a project, check if the directory matches this.
-Specifying this matcher object will allow EDE to perform a complex
-check without loading the project.
-
-NOTE: If you use dirmatch, you may need to set :root-only to nil.
-While it may be a root based project, all subdirs will happen to return
-true for the dirmatch, so for scanning purposes, set it to nil."
-                        :default-value "nil"
-                        :type "(or null string ede-project-autoload-dirmatch)")
-                        nil nil)
-                    ("proj-root" variable
-                       (:documentation "A function symbol to call for the project root.
-This function takes no arguments, and returns the current directories
-root, if available.  Leave blank to use the EDE directory walking
-routine instead."
-                        :type "function")
-                        nil nil)
-                    ("initializers" variable
-                       (:documentation "Initializers passed to the project object.
-These are used so there can be multiple types of projects
-associated with a single object class, based on the initializers used."
-                        :default-value "nil")
-                        nil nil)
-                    ("load-type" variable (:documentation "Fn symbol used to load this project file.") nil nil)
-                    ("class-sym" variable (:documentation "Symbol representing the project class to use.") nil nil)
-                    ("generic-p" variable
-                       (:documentation "Generic projects are added to the project list at the end.
-The add routine will set this to non-nil so that future non-generic placement will
-be successful."
-                        :default-value "nil")
-                        nil nil)
-                    ("new-p" variable
-                       (:documentation "Non-nil if this is an option when a user creates a project."
-                        :default-value "t")
-                        nil nil)
-                    ("safe-p" variable
-                       (:documentation "Non-nil if the project load files are \"safe\".
-An unsafe project is one that loads project variables via Emacs
-Lisp code.  A safe project is one that loads project variables by
-scanning files without loading Lisp code from them."
-                        :default-value "t")
-                        nil nil))                  
-                :type "class")
-                nil [4918 7513])
-            ("ede-project-class-files" variable (:default-value (list (ede-project-autoload :name "Make" :file (quote ede/proj) :proj-file "Project.ede" :root-only nil :load-type (quote ede-proj-load) :class-sym (quote ede-proj-project) :safe-p nil) (ede-project-autoload :name "Automake" :file (quote ede/proj) :proj-file "Project.ede" :root-only nil :initializers (quote (:makefile-type Makefile\.am)) :load-type (quote ede-proj-load) :class-sym (quote ede-proj-project) :safe-p nil) (ede-project-autoload :name "automake" :file (quote ede/project-am) :proj-file "Makefile.am" :root-only nil :load-type (quote project-am-load) :class-sym (quote project-am-makefile) :new-p nil :safe-p t))) nil [7515 8261])
-            ("put" code nil nil [8263 8317])
-            ("ede-show-supported-projects" function (:user-visible-flag t) nil [8319 8675])
-            ("ede-add-project-autoload" function (:arguments ("projauto" "flag")) nil [8677 10349])
-            ("cl-defmethod" code nil nil [10414 11055])
-            ("cl-defmethod" code nil nil [11057 11856])
-            ("cl-defmethod" code nil nil [11972 12143])
-            ("cl-defmethod" code nil nil [12194 12289])
-            ("ede/auto" package nil nil [12291 12310]))          
-      :file "auto.el"
-      :pointmax 12338
-      :fsize 12337
-      :lastmodtime '(23525 29528 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ede" include nil nil [1072 1086])
-            ("ede-web-browse-home" function (:user-visible-flag t) nil [1138 1465])
-            ("ede-edit-web-page" function (:user-visible-flag t) nil [1482 2031])
-            ("ede-upload-distribution" function (:user-visible-flag t) nil [2048 3218])
-            ("ede-upload-html-documentation" function (:user-visible-flag t) nil [3235 4317])
-            ("ede-vc-project-directory" function (:user-visible-flag t) nil [4412 4589])
-            ("ede/system" package nil nil [4591 4612]))          
-      :file "system.el"
-      :pointmax 4759
-      :fsize 4758
-      :lastmodtime '(23525 29530 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eieio-base" include nil nil [1058 1079])
-            ("ede-sourcecode" type
-               (:superclasses "eieio-instance-inheritor"
-                :members 
-                  ( ("name" variable
-                       (:documentation "The name of this type of source code.
-Such as \"C\" or \"Emacs Lisp\""
-                        :type "string")
-                        nil nil)
-                    ("sourcepattern" variable
-                       (:documentation "Emacs regexp matching sourcecode this target accepts."
-                        :default-value ".*"
-                        :type "string")
-                        nil nil)
-                    ("auxsourcepattern" variable
-                       (:documentation "Emacs regexp matching auxiliary source code this target accepts.
-Aux source are source code files needed for compilation, which are not compiled
-themselves."
-                        :default-value "nil"
-                        :type "(or null string)")
-                        nil nil)
-                    ("enable-subdirectories" variable
-                       (:documentation "Non nil if this sourcecode type uses subdirectories.
-If sourcecode always lives near the target creating it, this should be nil.
-If sourcecode can, or typically lives in a subdirectory of the owning
-target, set this to t."
-                        :default-value "nil"
-                        :type "boolean")
-                        nil nil)
-                    ("garbagepattern" variable
-                       (:documentation "Shell file regexp matching files considered as garbage.
-This is a list of items added to an `rm' command when executing a `clean'
-type directive."
-                        :default-value "nil"
-                        :type "list")
-                        nil nil))                  
-                :type "class")
-                nil [1091 2465])
-            ("ede-sourcecode-list" variable nil nil [2467 2541])
-            ("cl-defmethod" code nil nil [2558 3062])
-            ("cl-defmethod" code nil nil [3064 3290])
-            ("cl-defmethod" code nil nil [3292 3513])
-            ("cl-defmethod" code nil nil [3515 3818])
-            ("cl-defmethod" code nil nil [3820 4097])
-            ("cl-defmethod" code nil nil [4099 4379])
-            ("cl-defmethod" code nil nil [4381 4637])
-            ("cl-defmethod" code nil nil [4639 5082])
-            ("when" code nil nil [5109 5591])
-            ("ede-source-scheme" variable (:default-value (ede-sourcecode "ede-source-scheme" :name "Scheme" :sourcepattern "\\.scm$")) nil [5698 5846])
-            ("ede/source" package nil nil [6017 6038]))          
-      :file "source.el"
-      :pointmax 6068
-      :fsize 6067
-      :lastmodtime '(23525 29530 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ede/auto" include nil nil [1185 1204])
-            ("when" code nil nil [1228 1578])
-            ("ede--detect-stop-scan-p" function (:arguments ("dir")) nil [1607 1780])
-            ("ede--detect-found-project" variable nil nil [1843 1943])
-            ("ede--detect-ldf-predicate" function (:arguments ("dir")) nil [1945 2475])
-            ("ede--detect-scan-directory-for-project" function (:arguments ("directory")) nil [2477 2943])
-            ("ede--detect-ldf-rootonly-predicate" function (:arguments ("dir")) nil [3159 3745])
-            ("ede--detect-scan-directory-for-rootonly-project" function (:arguments ("directory")) nil [3747 4231])
-            ("ede--detect-nomatch-auto" variable nil nil [4361 4447])
-            ("ede--detect-ldf-root-predicate" function (:arguments ("dir")) nil [4449 4980])
-            ("ede--detect-scan-directory-for-project-root" function (:arguments ("directory" "auto")) nil [4982 5458])
-            ("ede-detect-directory-for-project" function (:arguments ("directory")) nil [5530 6569])
-            ("ede-detect-qtest" function (:user-visible-flag t) nil [6619 7025])
-            ("ede/detect" package nil nil [7028 7049]))          
-      :file "detect.el"
-      :pointmax 7079
-      :fsize 7078
-      :lastmodtime '(23525 29528 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ede" include nil nil [1087 1101])
-            ("ede-update-version" function
-               (:user-visible-flag t
-                :arguments ("newversion"))
-                nil [1168 1785])
-            ("cl-defmethod" code nil nil [1787 2006])
-            ("cl-defmethod" code nil nil [2008 2320])
-            ("cl-defmethod" code nil nil [2322 3050])
-            ("ede-make-buffer-writable" function (:arguments ("buffer")) nil [3175 3403])
-            ("ede/util" package nil nil [3405 3424]))          
-      :file "util.el"
-      :pointmax 3567
-      :fsize 3566
-      :lastmodtime '(23525 29530 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [990 1003])
-            ("speedbar" include nil nil [1005 1024])
-            ("eieio-speedbar" include nil nil [1025 1050])
-            ("ede" include nil nil [1051 1065])
-            ("ede-speedbar-key-map" variable nil nil [1096 1181])
-            ("ede-speedbar-make-map" function nil nil [1183 2178])
-            ("ede-speedbar-menu" variable (:default-value (quote (["Compile" ede-speedbar-compile-line t] ["Compile Project" ede-speedbar-compile-project (ede-project-child-p (speedbar-line-token))] "---" ["Edit File/Tag" speedbar-edit-line (not (eieio-object-p (speedbar-line-token)))] ["Expand" speedbar-expand-line (save-excursion (beginning-of-line) (looking-at "[0-9]+: *.\\+. "))] ["Contract" speedbar-contract-line (save-excursion (beginning-of-line) (looking-at "[0-9]+: *.-. "))] "---" ["Remove File from Target" ede-speedbar-remove-file-from-target (stringp (speedbar-line-token))] ["Customize Project/Target" eieio-speedbar-customize-line (eieio-object-p (speedbar-line-token))] ["Edit Project File" ede-speedbar-edit-projectfile t] ["Make Distribution" ede-speedbar-make-distribution (ede-project-child-p (speedbar-line-token))]))) nil [2180 3176])
-            ("eieio-speedbar-create" code nil nil [3178 3342])
-            ("ede-speedbar" function (:user-visible-flag t) nil [3345 3551])
-            ("ede-speedbar-toplevel-buttons" function (:arguments ("dir")) nil [3553 3739])
-            ("ede-speedbar-remove-file-from-target" function (:user-visible-flag t) nil [3784 3987])
-            ("ede-speedbar-compile-line" function (:user-visible-flag t) nil [3989 4396])
-            ("ede-speedbar-get-top-project-for-line" function (:user-visible-flag t) nil [4398 4820])
-            ("ede-speedbar-compile-project" function (:user-visible-flag t) nil [4822 4997])
-            ("ede-speedbar-compile-file-project" function (:user-visible-flag t) nil [4999 5417])
-            ("ede-speedbar-make-distribution" function (:user-visible-flag t) nil [5419 5584])
-            ("ede-speedbar-edit-projectfile" function (:user-visible-flag t) nil [5586 5757])
-            ("ede-find-nearest-file-line" function nil nil [5791 6170])
-            ("cl-defmethod" code nil nil [6172 6366])
-            ("cl-defmethod" code nil nil [6368 6969])
-            ("cl-defmethod" code nil nil [6971 7100])
-            ("cl-defmethod" code nil nil [7102 7230])
-            ("cl-defmethod" code nil nil [7232 7500])
-            ("cl-defmethod" code nil nil [7502 7748])
-            ("cl-defmethod" code nil nil [7750 7899])
-            ("cl-defmethod" code nil nil [7901 8133])
-            ("cl-defmethod" code nil nil [8135 8280])
-            ("cl-defmethod" code nil nil [8282 8681])
-            ("ede-file-find" function (:arguments ("text" "token" "indent")) nil [8726 8980])
-            ("ede-create-tag-buttons" function (:arguments ("filename" "indent")) nil [8982 9452])
-            ("ede-tag-expand" function (:arguments ("text" "token" "indent")) nil [9454 10220])
-            ("ede-tag-find" function (:arguments ("text" "token" "indent")) nil [10222 10828])
-            ("ede-speedbar-file-menu-additions" variable (:default-value (quote ("----" ["Create EDE Target" ede-new-target (ede-current-project)] ["Add to project" ede-speedbar-file-add-to-project (ede-current-project)] ["Compile project" ede-speedbar-compile-project (ede-current-project)] ["Compile file target" ede-speedbar-compile-file-target (ede-current-project)] ["Make distribution" ede-make-dist (ede-current-project)]))) nil [10964 11444])
-            ("ede-speedbar-file-keymap" variable (:default-value (let ((km (make-sparse-keymap))) (define-key km "a" (quote ede-speedbar-file-add-to-project)) (define-key km "t" (quote ede-new-target)) (define-key km "s" (quote ede-speedbar)) (define-key km "C" (quote ede-speedbar-compile-project)) (define-key km "c" (quote ede-speedbar-compile-file-target)) (define-key km "d" (quote ede-make-dist)) km)) nil [11446 11854])
-            ("ede-speedbar-file-setup" function nil nil [11871 12414])
-            ("ede/speedbar" package nil nil [12416 12439]))          
-      :file "speedbar.el"
-      :pointmax 12590
-      :fsize 12589
-      :lastmodtime '(23525 29530 0 0)
-      :unmatched-syntax '((close-paren 1003 . 1004) (symbol 972 . 989) (open-paren 971 . 972)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1180 1193])
-            ("ede" include nil nil [1196 1210])
-            ("ede/make" include nil nil [1211 1230])
-            ("declare-function" code nil nil [1232 1293])
-            ("declare-function" code nil nil [1294 1353])
-            ("declare-function" code nil nil [1354 1411])
-            ("project-linux" customgroup (:user-visible-flag t) nil [1423 1531])
-            ("project-linux-build-directory-default" variable (:default-value (quote ask)) nil [1533 1762])
-            ("project-linux-architecture-default" variable (:default-value (quote ask)) nil [1764 2016])
-            ("project-linux-compile-target-command" variable (:default-value (concat ede-make-command " -k -C %s SUBDIRS=%s")) nil [2019 2202])
-            ("project-linux-compile-project-command" variable (:default-value (concat ede-make-command " -k -C %s")) nil [2204 2378])
-            ("ede-linux-version" function (:arguments ("dir")) nil [2380 3058])
-            ("ede-linux-project" type
-               (:superclasses "ede-project"
-                :members 
-                  ( ("build-directory" variable
-                       (:documentation "Build directory."
-                        :type "string")
-                        nil nil)
-                    ("architecture" variable
-                       (:documentation "Target architecture."
-                        :type "string")
-                        nil nil)
-                    ("include-path" variable
-                       (:documentation "Include directories.
-Contains both common and target architecture-specific directories."
-                        :type "list")
-                        nil nil))                  
-                :type "class")
-                nil [3060 3638])
-            ("ede-linux--get-build-directory" function (:arguments ("dir")) nil [3641 4102])
-            ("ede-linux--get-archs" function (:arguments ("dir")) nil [4105 4716])
-            ("ede-linux--detect-architecture" function (:arguments ("dir")) nil [4719 5517])
-            ("ede-linux--get-architecture" function (:arguments ("dir" "bdir")) nil [5519 5972])
-            ("ede-linux--include-path" function (:arguments ("dir" "bdir" "arch")) nil [5975 6673])
-            ("ede-linux-load" function (:arguments ("dir" "_rootproj")) nil [6690 7417])
-            ("ede-add-project-autoload" code nil nil [7434 7765])
-            ("ede-linux-target-c" type
-               (:superclasses "ede-target"
-                :type "class")
-                nil [7767 7897])
-            ("ede-linux-target-misc" type
-               (:superclasses "ede-target"
-                :type "class")
-                nil [7899 8036])
-            ("cl-defmethod" code nil nil [8038 8281])
-            ("cl-defmethod" code nil nil [8301 8541])
-            ("cl-defmethod" code nil nil [8543 8628])
-            ("cl-defmethod" code nil nil [8630 8819])
-            ("ede-linux-find-matching-target" function (:arguments ("class" "dir" "targets")) nil [8846 9134])
-            ("cl-defmethod" code nil nil [9136 9849])
-            ("cl-defmethod" code nil nil [9877 10542])
-            ("ede-linux-file-exists-name" function (:arguments ("name" "root" "subdir")) nil [10544 10770])
-            ("cl-defmethod" code nil nil [10772 11747])
-            ("cl-defmethod" code nil nil [11772 12284])
-            ("cl-defmethod" code nil nil [12286 12890])
-            ("cl-defmethod" code nil nil [12892 13361])
-            ("ede/linux" package nil nil [13363 13383]))          
-      :file "linux.el"
-      :pointmax 13528
-      :fsize 13527
-      :lastmodtime '(23525 29529 0 0)
-      :unmatched-syntax '((close-paren 1193 . 1194) (symbol 1162 . 1179) (open-paren 1161 . 1162)))
-    (semanticdb-table "semanticdb-table"
-      :file "make.el"
-      :fsize 3591
-      :lastmodtime '(23525 29529 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ede" include nil nil [6133 6147])
-            ("semantic-lex-spp-project-macro-symbol-obarray" variable nil nil [6149 6203])
-            ("declare-function" code nil nil [6204 6269])
-            ("declare-function" code nil nil [6270 6331])
-            ("declare-function" code nil nil [6332 6391])
-            ("declare-function" code nil nil [6392 6449])
-            ("ede-cpp-root-project-list" variable nil nil [6687 6788])
-            ("ede-cpp-root-target" type
-               (:superclasses "ede-target"
-                :members 
-                  ( ("project" variable (:default-value "nil") nil nil))                  
-                :type "class")
-                nil [7473 7642])
-            ("ede-cpp-root-project" type
-               (:interfaces ("eieio-instance-tracker")
-                :superclasses "ede-project"
-                :members 
-                  ( ("tracking-symbol" variable (:default-value "(quote ede-cpp-root-project-list)") nil nil)
-                    ("include-path" variable
-                       (:documentation "The default locate function expands filenames within a project.
-If a header file (.h, .hh, etc) name is expanded, and
-the :locate-fcn slot is nil, then the include path is checked
-first, and other directories are ignored.  For very large
-projects, this optimization can save a lot of time.
-
-Directory names in the path can be relative to the current
-buffer's `default-directory' (not starting with a /).  Directories
-that are relative to the project's root should start with a /, such
-as  \"/include\", meaning the directory `include' off the project root
-directory."
-                        :default-value "(quote (\"/include\" \"../include/\"))"
-                        :type "list")
-                        nil nil)
-                    ("system-include-path" variable
-                       (:documentation "The system include path for files in this project.
-C files initialized in an ede-cpp-root-project have their semantic
-system include path set to this value.  If this is nil, then the
-semantic path is not modified."
-                        :default-value "nil"
-                        :type "list")
-                        nil nil)
-                    ("spp-table" variable
-                       (:documentation "C Preprocessor macros for your files.
-Preprocessor symbols will be used while parsing your files.
-These macros might be passed in through the command line compiler, or
-are critical symbols derived from header files.  Providing header files
-macro values through this slot improves accuracy and performance.
-Use `:spp-files' to use these files directly."
-                        :default-value "nil"
-                        :type "list")
-                        nil nil)
-                    ("spp-files" variable
-                       (:documentation "C header file with Preprocessor macros for your files.
-The PreProcessor symbols appearing in these files will be used while
-parsing files in this project.
-See `semantic-lex-c-preprocessor-symbol-map' for more on how this works."
-                        :default-value "nil"
-                        :type "list")
-                        nil nil)
-                    ("header-match-regexp" variable
-                       (:documentation "Regexp used to identify C/C++ header files."
-                        :default-value "\\.\\(h\\(h\\|xx\\|pp\\|\\+\\+\\)?\\|H\\)$\\|\\<\\w+$"
-                        :type "string")
-                        nil nil)
-                    ("locate-fcn" variable
-                       (:documentation "The locate function can be used in place of
-`ede-expand-filename' so you can quickly customize your custom target
-to use specialized local routines instead of the EDE routines.
-The function symbol must take two arguments:
-  NAME - The name of the file to find.
-  DIR - The directory root for this cpp-root project.
-
-It should return the fully qualified file name passed in from NAME.  If that file does not
-exist, it should return nil."
-                        :default-value "nil"
-                        :type "(or null function)")
-                        nil nil)
-                    ("compile-command" variable
-                       (:documentation "Compilation command that will be used for this project.
-It could be string or function that will accept proj argument and should return string.
-The string will be passed to `compile' function that will be issued in root
-directory of project."
-                        :default-value "nil"
-                        :type "(or null string function)")
-                        nil nil))                  
-                :type "class")
-                nil [7659 10837])
-            ("cl-defmethod" code nil nil [11078 12290])
-            ("cl-defmethod" code nil nil [12448 12601])
-            ("cl-defmethod" code nil nil [12778 13304])
-            ("cl-defmethod" code nil nil [13605 14679])
-            ("cl-defmethod" code nil nil [14681 14769])
-            ("cl-defmethod" code nil nil [14771 14886])
-            ("cl-defmethod" code nil nil [15028 15234])
-            ("cl-defmethod" code nil nil [15236 15844])
-            ("cl-defmethod" code nil nil [15846 16002])
-            ("cl-defmethod" code nil nil [16004 16971])
-            ("cl-defmethod" code nil nil [16973 17146])
-            ("cl-defmethod" code nil nil [17148 17311])
-            ("cl-defmethod" code nil nil [17313 17949])
-            ("cl-defmethod" code nil nil [17951 18222])
-            ("cl-defmethod" code nil nil [18225 18378])
-            ("ede-create-lots-of-projects-under-dir" function (:arguments ("dir" "projfile" "attributes")) nil [18395 18972])
-            ("ede/cpp-root" package nil nil [18974 18997]))          
-      :file "cpp-root.el"
-      :pointmax 19148
-      :fsize 19147
-      :lastmodtime '(23525 29528 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!ede!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic\041decorate\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic\041decorate\041semantic.cache"
deleted file mode 100644
index 1343d31..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic\041decorate\041semantic.cache"
+++ /dev/null
@@ -1,84 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1373 1386])
-            ("semantic" include nil nil [1388 1407])
-            ("semantic/decorate" include nil nil [1408 1436])
-            ("semantic/tag-ls" include nil nil [1437 1463])
-            ("semantic/util-modes" include nil nil [1464 1494])
-            ("semantic-decoration-styles" variable nil nil [1515 1916])
-            ("semantic-decorate-style-predicate" function (:arguments ("style")) nil [1931 2059])
-            ("semantic-decorate-style-highlighter" function (:arguments ("style")) nil [2061 2201])
-            ("semantic-decorate-style-predicate-default" function (:arguments ("style")) nil [2203 2347])
-            ("semantic-decorate-style-highlighter-default" function (:arguments ("style")) nil [2349 2505])
-            ("semantic-decoration-p" function (:arguments ("object")) nil [2534 2719])
-            ("semantic-decoration-set-property" function (:arguments ("deco" "property" "value")) nil [2721 2940])
-            ("semantic-decoration-get-property" function (:arguments ("deco" "property")) nil [2942 3129])
-            ("semantic-decoration-set-face" function (:arguments ("deco" "face")) nil [3131 3297])
-            ("semantic-decoration-face" function (:arguments ("deco")) nil [3299 3433])
-            ("semantic-decoration-set-priority" function (:arguments ("deco" "priority")) nil [3435 3655])
-            ("semantic-decoration-priority" function (:arguments ("deco")) nil [3657 3803])
-            ("semantic-decoration-move" function (:arguments ("deco" "begin" "end")) nil [3805 4024])
-            ("semantic-decorate-tag" function (:arguments ("tag" "begin" "end" "face")) nil [4049 4639])
-            ("semantic-decorate-clear-tag" function (:arguments ("tag" "deco")) nil [4641 5170])
-            ("semantic-decorate-tag-decoration" function (:arguments ("tag")) nil [5172 5318])
-            ("semantic-decorate-flush-decorations" function (:arguments ("buffer")) nil [5363 5807])
-            ("semantic-decorate-clear-decorations" function (:arguments ("tag-list")) nil [5809 6097])
-            ("semantic-decorate-add-decorations" function (:arguments ("tag-list")) nil [6099 7224])
-            ("semantic-decorate-pending-decoration-hook" variable nil nil [7516 7629])
-            ("semantic-varalias-obsolete" code nil nil [7631 7760])
-            ("semantic-decorate-add-pending-decoration" function (:arguments ("fcn" "buffer")) nil [7762 8178])
-            ("semantic-decorate-flush-pending-decorations" function (:arguments ("buffer")) nil [8180 8565])
-            ("define-minor-mode" code nil nil [8676 9131])
-            ("semantic-decoration-mode-hook" variable nil nil [9133 9275])
-            ("define-minor-mode" code nil nil [9277 11414])
-            ("semantic-add-minor-mode" code nil nil [11416 11495])
-            ("semantic-decorate-tags-after-full-reparse" function (:arguments ("tag-list")) nil [11497 11953])
-            ("semantic-decorate-tags-after-partial-reparse" function (:arguments ("tag-list")) nil [11955 12295])
-            ("semantic-decoration-style-enabled-p" function (:arguments ("style")) nil [12330 12571])
-            ("semantic-toggle-decoration-style" function
-               (:user-visible-flag t
-                :arguments ("name" "arg"))
-                nil [12573 13797])
-            ("semantic-decoration-menu-cache" variable nil nil [13799 13876])
-            ("semantic-decoration-build-style-menu" function (:arguments ("style")) nil [13878 14198])
-            ("semantic-build-decoration-mode-menu" function (:arguments ("ignore")) nil [14200 14535])
-            ("define-semantic-decoration-style" function (:arguments ("name" "doc" "flags")) nil [14573 17476])
-            ("define-semantic-decoration-style" code nil nil [17551 17699])
-            ("semantic-tag-boundary-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:overline "cyan")) (((class color) (background light)) (:overline "blue"))))
-                :type "face")
-                nil [17701 17979])
-            ("semantic-tag-boundary-p-default" function (:arguments ("tag")) nil [17981 18559])
-            ("semantic-tag-boundary-highlight-default" function (:arguments ("tag")) nil [18561 18983])
-            ("define-semantic-decoration-style" code nil nil [19020 19175])
-            ("semantic-decoration-on-private-members-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:background "#200000")) (((class color) (background light)) (:background "#8fffff"))))
-                :type "face")
-                nil [19177 19515])
-            ("semantic-decoration-on-private-members-highlight-default" function (:arguments ("tag")) nil [19517 19747])
-            ("semantic-decoration-on-private-members-p-default" function (:arguments ("tag")) nil [19749 19971])
-            ("semantic-decoration-on-protected-members-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:background "#000020")) (((class color) (background light)) (:background "#fffff8"))))
-                :type "face")
-                nil [20010 20352])
-            ("define-semantic-decoration-style" code nil nil [20354 20513])
-            ("semantic-decoration-on-protected-members-p-default" function (:arguments ("tag")) nil [20515 20743])
-            ("semantic-decoration-on-protected-members-highlight-default" function (:arguments ("tag")) nil [20745 20981])
-            ("declare-function" code nil nil [21022 21114])
-            ("declare-function" code nil nil [21115 21215])
-            ("define-semantic-decoration-style" code nil nil [21216 21444])
-            ("semantic/decorate/mode" package nil nil [21448 21481]))          
-      :file "mode.el"
-      :pointmax 21655
-      :fsize 21654
-      :lastmodtime '(23525 29535 0 0)
-      :unmatched-syntax '((close-paren 1386 . 1387) (symbol 1355 . 1372) (open-paren 1354 . 1355))))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!semantic!decorate!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic\041semantic.cache"
deleted file mode 100644
index 8d3ebe7..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic\041semantic.cache"
+++ /dev/null
@@ -1,357 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("semantic" include nil nil [1156 1175])
-            ("semantic-modes" customgroup (:user-visible-flag t) nil [1220 1327])
-            ("semantic-update-mode-line" variable (:default-value t) nil [1371 1807])
-            ("semantic-mode-line-prefix" variable (:default-value (propertize "S" (quote face) (quote bold))) nil [1809 2045])
-            ("semantic-minor-modes-format" variable nil nil [2047 2198])
-            ("put" code nil nil [2199 2257])
-            ("semantic-minor-mode-alist" variable nil nil [2259 2399])
-            ("semantic-mode-line-update" function nil nil [2401 4477])
-            ("semantic-desktop-ignore-this-minor-mode" function (:arguments ("buffer")) nil [4479 4666])
-            ("semantic-add-minor-mode" function (:arguments ("toggle" "name")) nil [4668 5734])
-            ("semantic-toggle-minor-mode-globally" function (:arguments ("mode" "arg")) nil [5736 6884])
-            ("define-minor-mode" code nil nil [6967 7327])
-            ("semantic-highlight-edits-mode-hook" variable nil nil [7329 7481])
-            ("semantic-highlight-edits-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:background "gray20")) (((class color) (background light)) (:background "gray90"))))
-                :type "face")
-                nil [7483 7814])
-            ("semantic-highlight-edits-new-change-hook-fcn" function (:arguments ("overlay")) nil [7816 8122])
-            ("semantic-highlight-edits-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) km)) nil [8124 8252])
-            ("define-minor-mode" code nil nil [8269 9438])
-            ("semantic-add-minor-mode" code nil nil [9440 9525])
-            ("define-minor-mode" code nil nil [9604 10072])
-            ("semantic-show-unmatched-syntax-mode-hook" variable nil nil [10074 10238])
-            ("semantic-unmatched-syntax-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:underline "red")) (((class color) (background light)) (:underline "red"))))
-                :type "face")
-                nil [10240 10537])
-            ("semantic-unmatched-syntax-overlay-p" function (:arguments ("overlay")) nil [10539 10712])
-            ("semantic-showing-unmatched-syntax-p" function nil nil [10714 11043])
-            ("semantic-show-unmatched-lex-tokens-fetch" function nil nil [11045 11587])
-            ("semantic-clean-unmatched-syntax-in-region" function (:arguments ("beg" "end")) nil [11589 11892])
-            ("semantic-clean-unmatched-syntax-in-buffer" function nil nil [11894 12088])
-            ("semantic-clean-token-of-unmatched-syntax" function (:arguments ("token")) nil [12090 12315])
-            ("semantic-show-unmatched-syntax" function (:arguments ("syntax")) nil [12317 13256])
-            ("semantic-next-unmatched-syntax" function (:arguments ("point" "bound")) nil [13258 13956])
-            ("semantic-show-unmatched-syntax-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) (define-key km ",`" (quote semantic-show-unmatched-syntax-next)) km)) nil [13958 14177])
-            ("define-minor-mode" code nil nil [14194 16052])
-            ("semantic-add-minor-mode" code nil nil [16054 16145])
-            ("semantic-show-unmatched-syntax-next" function (:user-visible-flag t) nil [16147 16376])
-            ("define-minor-mode" code nil nil [16467 16896])
-            ("semantic-show-parser-state-mode-hook" variable nil nil [16898 17054])
-            ("semantic-show-parser-state-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) km)) nil [17056 17188])
-            ("define-minor-mode" code nil nil [17205 20915])
-            ("semantic-add-minor-mode" code nil nil [20917 21003])
-            ("semantic-show-parser-state-string" variable nil nil [21005 21157])
-            ("make-variable-buffer-local" code nil nil [21158 21221])
-            ("semantic-show-parser-state-marker" function (:arguments ("ignore")) nil [21223 22043])
-            ("semantic-show-parser-state-auto-marker" function nil nil [22045 22363])
-            ("define-minor-mode" code nil nil [22440 22861])
-            ("semantic-stickyfunc-mode-hook" variable nil nil [22863 23005])
-            ("semantic-stickyfunc-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) (define-key km [header-line down-mouse-1] (quote semantic-stickyfunc-menu)) km)) nil [23007 23200])
-            ("semantic-stickyfunc-popup-menu" variable nil nil [23202 23322])
-            ("easy-menu-define" code nil nil [23324 24471])
-            ("semantic-stickyfunc-indent-string" variable (:default-value (if (and window-system (not (featurep (quote xemacs)))) (concat (condition-case nil (let ((charwidth (frame-char-width)) (scrollpos (frame-parameter (selected-frame) (quote vertical-scroll-bars)))) (if (or (eq scrollpos (quote left)) (eq scrollpos t)) (let ((w (when (boundp (quote scroll-bar-width)) (symbol-value (quote scroll-bar-width))))) (if (not w) (setq w (frame-parameter (selected-frame) (quote scroll-bar-width)))) (if (not w) (setq w (+ (get (quote scroll-bar-width) (quote x-frame-parameter)) 1))) (if (not w) "  " (setq w (+ 2 w)) (make-string (/ w charwidth) 32))) "")) (error "")) (condition-case nil (let* ((f (window-fringes)) (fw (car f)) (numspace (/ fw (frame-char-width)))) (make-string numspace 32)) (error (condition-case nil (if (get (quote fringe) (quote face)) " " "") (error ""))))) "")) nil [24473 26624])
-            ("semantic-stickyfunc-old-hlf" variable nil nil [26626 26726])
-            ("semantic-stickyfunc-header-line-format" variable
-               (:constant-flag t
-                :default-value (cond ((featurep (quote xemacs)) nil) (t (quote (:eval (list (propertize " " (quote display) (quote ((space :align-to 0)))) (semantic-stickyfunc-fetch-stickyline)))))))
-                nil [26728 27023])
-            ("define-minor-mode" code nil nil [27040 29024])
-            ("semantic-stickyfunc-sticky-classes" variable (:default-value (quote (function type))) nil [29026 29162])
-            ("make-variable-buffer-local" code nil nil [29163 29227])
-            ("semantic-stickyfunc-show-only-functions-p" variable nil nil [29229 29507])
-            ("semantic-stickyfunc-tag-to-stick" function nil nil [29509 29876])
-            ("semantic-stickyfunc-fetch-stickyline" function nil nil [29878 31698])
-            ("semantic-stickyfunc-menu" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [31700 32170])
-            ("semantic-add-minor-mode" code nil nil [32173 32252])
-            ("define-minor-mode" code nil nil [32506 32946])
-            ("semantic-highlight-func-mode-hook" variable nil nil [32948 33098])
-            ("semantic-highlight-func-mode-map" variable (:default-value (let ((km (make-sparse-keymap)) (m3 (if (featurep (quote xemacs)) [button3] [mouse-3]))) (define-key km m3 (quote semantic-highlight-func-menu)) km)) nil [33100 33336])
-            ("semantic-highlight-func-popup-menu" variable nil nil [33338 33477])
-            ("easy-menu-define" code nil nil [33479 34534])
-            ("semantic-highlight-func-menu" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [34536 35052])
-            ("semantic-highlight-func-ct-overlay" variable nil nil [35054 35157])
-            ("make-variable-buffer-local" code nil nil [35158 35222])
-            ("semantic-highlight-func-current-tag-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:background "gray20")) (((class color) (background light)) (:background "gray90"))))
-                :type "face")
-                nil [35224 35546])
-            ("define-minor-mode" code nil nil [35563 36916])
-            ("semantic-highlight-func-highlight-current-tag" function (:arguments ("disable")) nil [36918 38583])
-            ("semantic-add-minor-mode" code nil nil [38585 38668])
-            ("semantic/util-modes" package nil nil [38715 38745]))          
-      :file "util-modes.el"
-      :pointmax 38910
-      :fsize 38909
-      :lastmodtime '(23525 29534 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("semantic" include nil nil [1509 1528])
-            ("semantic/ctxt" include nil nil [1529 1553])
-            ("semantic/format" include nil nil [1554 1580])
-            ("semantic/tag" include nil nil [1581 1604])
-            ("timer" include nil nil [1605 1621])
-            ("semantic/find" include nil nil [1708 1732])
-            ("eldoc-last-message" variable nil nil [1735 1762])
-            ("declare-function" code nil nil [1763 1803])
-            ("declare-function" code nil nil [1804 1874])
-            ("declare-function" code nil nil [1875 1946])
-            ("declare-function" code nil nil [1947 2023])
-            ("declare-function" code nil nil [2024 2095])
-            ("declare-function" code nil nil [2096 2156])
-            ("declare-function" code nil nil [2157 2239])
-            ("declare-function" code nil nil [2240 2331])
-            ("declare-function" code nil nil [2332 2391])
-            ("declare-function" code nil nil [2392 2452])
-            ("declare-function" code nil nil [2453 2527])
-            ("semantic-idle-scheduler-timer" variable nil nil [2571 2660])
-            ("semantic-idle-scheduler-work-timer" variable nil nil [2662 2778])
-            ("semantic-idle-scheduler-verbose-flag" variable nil nil [2780 2984])
-            ("semantic-idle-scheduler-idle-time" variable (:default-value 1) nil [2986 3493])
-            ("semantic-idle-scheduler-work-idle-time" variable (:default-value 60) nil [3495 4041])
-            ("semantic-idle-scheduler-setup-timers" function nil nil [4043 4653])
-            ("semantic-idle-scheduler-kill-timer" function nil nil [4655 4876])
-            ("semantic-idle-scheduler-mode-hook" variable nil nil [5026 5180])
-            ("semantic-idle-scheduler-mode" variable nil nil [5182 5348])
-            ("make-variable-buffer-local" code nil nil [5349 5407])
-            ("semantic-idle-scheduler-max-buffer-size" variable nil nil [5409 5676])
-            ("semantic-idle-scheduler-enabled-p" function nil nil [5678 6516])
-            ("define-minor-mode" code nil nil [6533 7526])
-            ("semantic-add-minor-mode" code nil nil [7528 7614])
-            ("semantic-idle-scheduler-queue" variable nil nil [7695 7977])
-            ("semantic-idle-scheduler-add" function (:arguments ("function")) nil [7979 8130])
-            ("semantic-idle-scheduler-remove" function (:arguments ("function")) nil [8132 8320])
-            ("semantic-idle-core-handler" function nil nil [8343 11162])
-            ("semantic-debug-idle-function" function (:user-visible-flag t) nil [11164 11347])
-            ("semantic-idle-scheduler-function" function nil nil [11349 11710])
-            ("semantic-idle-work-parse-neighboring-files-flag" variable nil nil [11840 12070])
-            ("semantic-idle-work-update-headers-flag" variable nil nil [12072 12338])
-            ("semantic-idle-work-for-one-buffer" function (:arguments ("buffer")) nil [12340 13368])
-            ("semantic-idle-work-core-handler" function nil nil [13370 15456])
-            ("semantic-debug-idle-work-function" function (:user-visible-flag t) nil [15458 15656])
-            ("semantic-idle-scheduler-work-function" function nil nil [15658 16214])
-            ("semantic-idle-scheduler-work-parse-neighboring-files" function nil nil [16216 17242])
-            ("semantic-before-idle-scheduler-reparse-hook" variable nil nil [17385 17627])
-            ("semantic-after-idle-scheduler-reparse-hook" variable nil nil [17629 17865])
-            ("semantic-varalias-obsolete" code nil nil [17867 18000])
-            ("semantic-varalias-obsolete" code nil nil [18001 18132])
-            ("semantic-idle-scheduler-refresh-tags" function nil nil [18134 20982])
-            ("define-semantic-idle-service" function (:arguments ("name" "doc" "forms")) nil [21361 23453])
-            ("put" code nil nil [23454 23513])
-            ("add-hook" code nil nil [23514 23656])
-            ("semantic-idle-truncate-long-summaries" variable (:default-value t) nil [23721 23926])
-            ("semantic-idle-summary-function" variable (:default-value (quote semantic-format-tag-summarize-with-file)) nil [23928 24304])
-            ("semantic-idle-summary-find-current-symbol-tag" function (:arguments ("sym")) nil [24306 24757])
-            ("semantic-idle-summary-current-symbol-info-brutish" function nil nil [24759 25138])
-            ("semantic-idle-summary-current-symbol-keyword" function nil nil [25140 25466])
-            ("semantic-idle-summary-current-symbol-info-context" function nil nil [25468 25861])
-            ("semantic-idle-summary-current-symbol-info-default" function nil nil [25863 26361])
-            ("semantic-idle-summary-out-of-context-faces" variable (:default-value (quote (font-lock-comment-face font-lock-string-face font-lock-doc-string-face font-lock-doc-face))) nil [26363 27203])
-            ("semantic-idle-summary-useful-context-p" function nil nil [27205 27587])
-            ("semantic-idle-summary-current-symbol-info" function (:overloadable t) nil [27589 27724])
-            ("make-obsolete-overload" code nil nil [27726 27884])
-            ("semantic-idle-summary-mode-hook" variable nil nil [27886 28018])
-            ("semantic-idle-summary-idle-function" function nil nil [28020 29228])
-            ("define-minor-mode" code nil nil [29230 30191])
-            ("semantic-idle-summary-refresh-echo-area" function nil nil [30193 30564])
-            ("semantic-add-minor-mode" code nil nil [30566 30622])
-            ("define-minor-mode" code nil nil [30624 31096])
-            ("semantic-idle-symbol-highlight" variable
-               (:default-value (quote ((t :inherit region)))
-                :type "face")
-                nil [31311 31447])
-            ("semantic-idle-symbol-highlight-face" variable (:default-value (quote semantic-idle-symbol-highlight)) nil [31448 31570])
-            ("make-obsolete-variable" code nil nil [31571 31710])
-            ("semantic-idle-symbol-maybe-highlight" function (:arguments ("tag")) nil [31712 33608])
-            ("define-semantic-idle-service" code nil nil [33610 34921])
-            ("define-minor-mode" code nil nil [34940 35688])
-            ("semantic-idle-completions-end-of-symbol-p" function nil nil [35935 36171])
-            ("semantic-idle-completion-list-default" function nil nil [36173 36875])
-            ("define-semantic-idle-service" code nil nil [36877 37766])
-            ("semantic-idle-breadcrumbs-display-function" variable (:default-value (function semantic-idle-breadcrumbs--display-in-header-line)) nil [37933 38650])
-            ("semantic-idle-breadcrumbs-format-tag-list-function" variable (:default-value (function semantic-idle-breadcrumbs--format-linear)) nil [38652 39595])
-            ("semantic-idle-breadcrumbs-format-tag-function" variable (:default-value (function semantic-format-tag-abbreviate)) nil [39597 39967])
-            ("semantic-idle-breadcrumbs-separator" variable (:default-value (quote mode-specific)) nil [39969 40367])
-            ("semantic-idle-breadcrumbs-header-line-prefix" variable (:default-value semantic-stickyfunc-indent-string) nil [40369 40639])
-            ("semantic-idle-breadcrumbs-popup-menu" variable nil nil [40641 40773])
-            ("semantic-idle-breadcrumbs--popup-menu" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [40775 41195])
-            ("semantic-idle-breadcrumbs--tag-function" function (:arguments ("function")) nil [41197 41740])
-            ("semantic-idle-breadcrumbs-popup-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [header-line mouse-1] (semantic-idle-breadcrumbs--tag-function semantic-go-to-tag)) (define-key map [header-line mouse-3] (quote semantic-idle-breadcrumbs--popup-menu)) map)) nil [41785 42221])
-            ("easy-menu-define" code nil nil [42223 44142])
-            ("define-semantic-idle-service" code nil nil [44144 44686])
-            ("semantic-idle-breadcrumbs--display-in-header-line" function (:arguments ("tag-list")) nil [44688 45544])
-            ("semantic-idle-breadcrumbs--display-in-mode-line" function (:arguments ("tag-list")) nil [45546 46087])
-            ("semantic-idle-breadcrumbs--format-tag-list" function (:arguments ("tag-list" "max-length")) nil [46089 46804])
-            ("semantic-idle-breadcrumbs--format-linear" function (:arguments ("tag-list" "max-length")) nil [46806 47582])
-            ("semantic-idle-breadcrumbs--format-innermost-first" function (:arguments ("tag-list" "max-length")) nil [47584 48877])
-            ("semantic-idle-breadcrumbs--format-tag" function (:arguments ("tag" "format-function")) nil [48879 49607])
-            ("semantic/idle" package nil nil [49610 49634]))          
-      :file "idle.el"
-      :pointmax 49787
-      :fsize 49786
-      :lastmodtime '(23525 29532 0 0)
-      :unmatched-syntax '((close-paren 1732 . 1733) (symbol 1690 . 1707) (open-paren 1689 . 1690)))
-    (semanticdb-table "semanticdb-table"
-      :file "ctxt.el"
-      :fsize 25497
-      :lastmodtime '(23525 29531 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "format.el"
-      :fsize 27613
-      :lastmodtime '(23525 29532 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "tag.el"
-      :fsize 51800
-      :lastmodtime '(23525 29533 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "find.el"
-      :fsize 27564
-      :lastmodtime '(23525 29532 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("semantic/db" include nil nil [925 947])
-            ("declare-function" code nil nil [949 1021])
-            ("semanticdb-hooks" variable (:default-value (quote ((semanticdb-semantic-init-hook-fcn semantic-init-db-hook) (semanticdb-synchronize-table semantic-after-toplevel-cache-change-hook) (semanticdb-partial-synchronize-table semantic-after-partial-cache-change-hook) (semanticdb-revert-hook before-revert-hook) (semanticdb-kill-hook kill-buffer-hook) (semanticdb-kill-hook change-major-mode-hook) (semanticdb-kill-emacs-hook kill-emacs-hook)))) nil [1054 1622])
-            ("semanticdb-minor-mode-p" function nil nil [1662 1846])
-            ("define-minor-mode" code nil nil [1863 2370])
-            ("defvaralias" code nil nil [2372 2442])
-            ("defvaralias" code nil nil [2443 2510])
-            ("semantic-varalias-obsolete" code nil nil [2511 2611])
-            ("semanticdb-toggle-global-mode" function (:user-visible-flag t) nil [2614 2976])
-            ("semanticdb-semantic-init-hook-fcn" function nil nil [3061 4974])
-            ("semanticdb-revert-hook" function nil nil [4976 5355])
-            ("semanticdb-kill-hook" function nil nil [5357 6787])
-            ("semanticdb-kill-emacs-hook" function nil nil [6789 6919])
-            ("semanticdb-synchronize-table" function (:arguments ("new-table")) nil [6950 7173])
-            ("semanticdb-partial-synchronize-table" function (:arguments ("new-table")) nil [7175 7414])
-            ("semantic/db-mode" package nil nil [7417 7444]))          
-      :file "db-mode.el"
-      :pointmax 7603
-      :fsize 7602
-      :lastmodtime '(23525 29531 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "db.el"
-      :fsize 40338
-      :lastmodtime '(23525 29531 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1578 1591])
-            ("semantic" include nil nil [1593 1612])
-            ("eieio-base" include nil nil [1613 1634])
-            ("ring" include nil nil [1635 1650])
-            ("declare-function" code nil nil [1652 1705])
-            ("declare-function" code nil nil [1706 1773])
-            ("declare-function" code nil nil [1774 1845])
-            ("declare-function" code nil nil [1846 1905])
-            ("semantic-bookmark" type
-               (:superclasses "eieio-named"
-                :members 
-                  ( ("tag" variable
-                       (:documentation "The TAG this bookmark belongs to."
-                        :type "semantic-tag")
-                        nil nil)
-                    ("parent" variable
-                       (:documentation "The tag that is the parent of :tag."
-                        :type "(or semantic-tag null)")
-                        nil nil)
-                    ("offset" variable
-                       (:documentation "The offset from `tag' start that is
-somehow interesting."
-                        :type "number")
-                        nil nil)
-                    ("filename" variable
-                       (:documentation "String the tag belongs to.
-Set this when the tag gets unlinked from the buffer it belongs to."
-                        :type "string")
-                        nil nil)
-                    ("frequency" variable
-                       (:documentation "Track the frequency this tag is visited."
-                        :default-value "0"
-                        :type "number")
-                        nil nil)
-                    ("reason" variable
-                       (:documentation "The reason this tag is interesting.
-Nice values are 'edit, 'read, 'jump, and 'mark.
- edit - created because the tag text was edited.
- read - created because point lingered in tag text.
- jump - jumped to another tag from this tag.
- mark - created a regular mark in this tag."
-                        :default-value "t"
-                        :type "symbol")
-                        nil nil))                  
-                :type "class")
-                nil [1978 2938])
-            ("cl-defmethod" code nil nil [2940 3320])
-            ("cl-defmethod" code nil nil [3322 4011])
-            ("cl-defmethod" code nil nil [4013 4491])
-            ("cl-defmethod" code nil nil [4493 5062])
-            ("semantic-bookmark-ring" type
-               (:members 
-                  ( ("ring" variable
-                       (:documentation "List of `semantic-bookmark' objects.
-This list is maintained as a list with the first item
-being the current location, and the rest being a list of
-items that were recently visited."
-                        :type "ring")
-                        nil nil)
-                    ("current-index" variable
-                       (:documentation "The current index into RING for some operation.
-User commands use this to move through the ring, or reset."
-                        :default-value "0"
-                        :type "number")
-                        nil nil))                  
-                :type "class")
-                nil [5064 5698])
-            ("semantic-mru-bookmark-ring" variable (:default-value (semantic-bookmark-ring "Ring" :ring (make-ring 20))) nil [5700 5889])
-            ("semantic-mrub-find-nearby-tag" function (:arguments ("point")) nil [5891 6418])
-            ("cl-defmethod" code nil nil [6420 7245])
-            ("semantic-mrub-cache-flush-fcn" function nil nil [7247 7600])
-            ("add-hook" code nil nil [7602 7689])
-            ("semantic-mrub-last-overlay" variable nil nil [7711 7822])
-            ("semantic-mru-bookmark-change-hook-fcn" function (:arguments ("overlay")) nil [7824 8229])
-            ("global-semantic-mru-bookmark-mode" variable nil nil [8274 8743])
-            ("define-minor-mode" code nil nil [8760 9189])
-            ("semantic-mru-bookmark-mode-hook" variable nil nil [9191 9337])
-            ("semantic-mru-bookmark-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) (define-key km "B" (quote semantic-mrub-switch-tags)) km)) nil [9339 9516])
-            ("define-minor-mode" code nil nil [9518 10909])
-            ("semantic-add-minor-mode" code nil nil [10911 10993])
-            ("semantic-mrub-read-history" function nil nil [11058 11144])
-            ("semantic-mrub-ring-to-assoc-list" function (:arguments ("ring")) nil [11146 11472])
-            ("semantic-mrub-completing-read" function (:arguments ("prompt")) nil [11474 13001])
-            ("semantic-mrub-switch-tags" function
-               (:user-visible-flag t
-                :arguments ("tagmark"))
-                nil [13003 13447])
-            ("semantic-adebug-mrub" function (:user-visible-flag t) nil [13466 13775])
-            ("semantic/mru-bookmark" package nil nil [13778 13810]))          
-      :file "mru-bookmark.el"
-      :pointmax 13979
-      :fsize 13978
-      :lastmodtime '(23525 29533 0 0)
-      :unmatched-syntax '((close-paren 1591 . 1592) (symbol 1560 . 1577) (open-paren 1559 . 1560))))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!semantic!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic.cache"
deleted file mode 100644
index 1fe6984..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041semantic.cache"
+++ /dev/null
@@ -1,480 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cedet" include nil nil [1480 1496])
-            ("cl-lib" include nil nil [1497 1514])
-            ("eieio" include nil nil [1515 1531])
-            ("cl-generic" include nil nil [1532 1553])
-            ("eieio-speedbar" include nil nil [1554 1579])
-            ("ede/source" include nil nil [1580 1601])
-            ("ede/base" include nil nil [1602 1621])
-            ("ede/auto" include nil nil [1622 1641])
-            ("ede/detect" include nil nil [1642 1663])
-            ("load" code nil nil [1685 1721])
-            ("declare-function" code nil nil [1724 1774])
-            ("declare-function" code nil nil [1775 1822])
-            ("declare-function" code nil nil [1823 1884])
-            ("declare-function" code nil nil [1885 1955])
-            ("declare-function" code nil nil [1956 2010])
-            ("declare-function" code nil nil [2011 2075])
-            ("declare-function" code nil nil [2076 2140])
-            ("declare-function" code nil nil [2141 2183])
-            ("declare-function" code nil nil [2184 2235])
-            ("declare-function" code nil nil [2236 2283])
-            ("declare-function" code nil nil [2284 2349])
-            ("ede-version" variable
-               (:constant-flag t
-                :default-value "2.0")
-                nil [2351 2417])
-            ("ede-version" function (:user-visible-flag t) nil [2429 2546])
-            ("ede" customgroup (:user-visible-flag t) nil [2548 2638])
-            ("ede-auto-add-method" variable (:default-value (quote ask)) nil [2640 3393])
-            ("ede-debug-program-function" variable (:default-value (quote gdb)) nil [3395 3520])
-            ("ede-project-directories" variable nil nil [3564 4385])
-            ("ede-directory-safe-p" function (:arguments ("dir")) nil [4387 5051])
-            ("ede-projects" variable nil nil [5081 5167])
-            ("ede-object-root-project" variable nil nil [5169 5348])
-            ("make-variable-buffer-local" code nil nil [5349 5402])
-            ("ede-object-project" variable nil nil [5404 5582])
-            ("make-variable-buffer-local" code nil nil [5583 5631])
-            ("ede-object" variable nil nil [5633 5767])
-            ("make-variable-buffer-local" code nil nil [5768 5808])
-            ("ede-selected-object" variable nil nil [5810 5960])
-            ("ede-constructing" variable nil nil [5962 6146])
-            ("ede-deep-rescan" variable nil nil [6148 6311])
-            ("ede-singular-object" function (:arguments ("prompt")) nil [6332 6519])
-            ("ede-choose-object" function (:arguments ("prompt" "list-o-o")) nil [6521 6834])
-            ("ede-minor-mode-map" variable (:default-value (let ((map (make-sparse-keymap)) (pmap (make-sparse-keymap))) (define-key pmap "e" (quote ede-edit-file-target)) (define-key pmap "a" (quote ede-add-file)) (define-key pmap "d" (quote ede-remove-file)) (define-key pmap "t" (quote ede-new-target)) (define-key pmap "g" (quote ede-rescan-toplevel)) (define-key pmap "s" (quote ede-speedbar)) (define-key pmap "f" (quote ede-find-file)) (define-key pmap "C" (quote ede-compile-project)) (define-key pmap "c" (quote ede-compile-target)) (define-key pmap "" (quote ede-compile-selected)) (define-key pmap "D" (quote ede-debug-target)) (define-key pmap "R" (quote ede-run-target)) (define-key map "." pmap) map)) nil [6858 7595])
-            ("global-ede-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [menu-bar cedet-menu] (cons "Development" cedet-menu-map)) map)) nil [7597 7793])
-            ("define-key" code nil nil [7840 7989])
-            ("define-key" code nil nil [7990 8131])
-            ("define-key" code nil nil [8132 8231])
-            ("define-key" code nil nil [8232 8373])
-            ("define-key" code nil nil [8374 8542])
-            ("define-key" code nil nil [8543 8715])
-            ("define-key" code nil nil [8716 8912])
-            ("ede-buffer-belongs-to-target-p" function nil nil [8914 9138])
-            ("ede-buffer-belongs-to-project-p" function nil nil [9140 9355])
-            ("ede-menu-obj-of-class-p" function (:arguments ("class")) nil [9357 9596])
-            ("ede-build-forms-menu" function (:arguments ("_menu-def")) nil [9598 11046])
-            ("ede-target-forms-menu" function (:arguments ("_menu-def")) nil [11048 11702])
-            ("ede-project-forms-menu" function (:arguments ("_menu-def")) nil [11704 12559])
-            ("ede-configuration-forms-menu" function (:arguments ("_menu-def")) nil [12561 13282])
-            ("ede-project-configurations-set" function
-               (:user-visible-flag t
-                :arguments ("newconfig"))
-                nil [13284 13883])
-            ("ede-customize-forms-menu" function (:arguments ("_menu-def")) nil [13885 14603])
-            ("ede-apply-object-keymap" function (:arguments ("_default")) nil [14606 15329])
-            ("cl-defmethod" code nil nil [15373 15759])
-            ("cl-defmethod" code nil nil [15761 16134])
-            ("ede-apply-target-options" function nil nil [16163 16414])
-            ("ede-turn-on-hook" function nil nil [16416 16806])
-            ("define-minor-mode" code nil nil [16808 17549])
-            ("ede-initialize-state-current-buffer" function nil nil [17551 19664])
-            ("ede-reset-all-buffers" function (:user-visible-flag t) nil [19666 20087])
-            ("define-minor-mode" code nil nil [20104 21686])
-            ("ede-ignored-file-alist" variable (:default-value (quote ("\\.cvsignore$" "\\.#" "~$"))) nil [21688 21830])
-            ("ede-ignore-file" function (:arguments ("filename")) nil [21832 22065])
-            ("ede-auto-add-to-target" function nil nil [22067 23608])
-            ("ede" function
-               (:user-visible-flag t
-                :arguments ("dir"))
-                nil [23650 25301])
-            ("ede-check-project-query-fcn" variable (:default-value (quote y-or-n-p)) nil [25303 25488])
-            ("ede-check-project-directory" function (:arguments ("dir")) nil [25490 26607])
-            ("ede-new" function
-               (:user-visible-flag t
-                :arguments ("type" "name"))
-                nil [26609 29501])
-            ("cl-defmethod" code nil nil [29503 29670])
-            ("ede-invoke-method" function (:arguments ("sym" "args")) nil [29672 30077])
-            ("ede-rescan-toplevel" function (:user-visible-flag t) nil [30079 30420])
-            ("ede-new-target" function
-               (:user-visible-flag t
-                :arguments ("args"))
-                nil [30422 30993])
-            ("ede-new-target-custom" function (:user-visible-flag t) nil [30995 31158])
-            ("ede-delete-target" function
-               (:user-visible-flag t
-                :arguments ("target"))
-                nil [31160 31808])
-            ("ede-add-file" function
-               (:user-visible-flag t
-                :arguments ("target"))
-                nil [31810 32635])
-            ("ede-remove-file" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [32637 33299])
-            ("ede-edit-file-target" function (:user-visible-flag t) nil [33301 33465])
-            ("ede-compile-project" function (:user-visible-flag t) nil [33500 33841])
-            ("ede-compile-selected" function
-               (:user-visible-flag t
-                :arguments ("target"))
-                nil [33843 34072])
-            ("ede-compile-target" function (:user-visible-flag t) nil [34074 34217])
-            ("ede-debug-target" function (:user-visible-flag t) nil [34219 34356])
-            ("ede-run-target" function (:user-visible-flag t) nil [34358 34489])
-            ("ede-make-dist" function (:user-visible-flag t) nil [34491 34664])
-            ("cl-defmethod" code nil nil [35056 35309])
-            ("cl-defmethod" code nil nil [35311 35643])
-            ("cl-defmethod" code nil nil [35645 35858])
-            ("cl-defmethod" code nil nil [35860 36064])
-            ("cl-defmethod" code nil nil [36066 36275])
-            ("cl-defmethod" code nil nil [36277 36433])
-            ("cl-defmethod" code nil nil [36435 36641])
-            ("cl-defmethod" code nil nil [36643 36851])
-            ("cl-defmethod" code nil nil [36853 37029])
-            ("cl-defmethod" code nil nil [37031 37279])
-            ("cl-defmethod" code nil nil [37281 37528])
-            ("cl-defmethod" code nil nil [37530 37707])
-            ("cl-defmethod" code nil nil [37709 37868])
-            ("cl-defmethod" code nil nil [37870 38054])
-            ("cl-defmethod" code nil nil [38056 38256])
-            ("cl-defmethod" code nil nil [38258 38422])
-            ("ede-ecb-project-paths" function nil nil [38424 38701])
-            ("ede-add-project-to-global-list" function (:arguments ("proj")) nil [38735 39222])
-            ("ede-delete-project-from-global-list" function (:arguments ("proj")) nil [39224 39381])
-            ("ede-flush-deleted-projects" function (:user-visible-flag t) nil [39383 39743])
-            ("ede--disable-inode" variable nil nil [39745 39772])
-            ("ede-global-list-sanity-check" function (:user-visible-flag t) nil [39812 40490])
-            ("ede-load-project-file" function (:arguments ("dir" "detectin" "rootreturn")) nil [40492 42313])
-            ("ede-parent-project" function (:arguments ("obj")) nil [42426 43505])
-            ("ede-current-project" function (:arguments ("dir")) nil [43507 43988])
-            ("ede-buffer-object" function (:arguments ("buffer" "projsym")) nil [43990 45251])
-            ("cl-defmethod" code nil nil [45253 45666])
-            ("ede-target-parent" function (:arguments ("target")) nil [45668 46118])
-            ("cl-defmethod" code nil nil [46120 46923])
-            ("cl-defmethod" code nil nil [46925 47167])
-            ("cl-defmethod" code nil nil [47169 47303])
-            ("cl-defmethod" code nil nil [47305 47577])
-            ("ede-project-buffers" function (:arguments ("project")) nil [47604 47985])
-            ("ede-target-buffers" function (:arguments ("target")) nil [47987 48326])
-            ("ede-buffers" function nil nil [48328 48586])
-            ("ede-map-buffers" function (:arguments ("proc")) nil [48588 48699])
-            ("cl-defmethod" code nil nil [48701 48869])
-            ("cl-defmethod" code nil nil [48871 49036])
-            ("cl-defmethod" code nil nil [49064 49312])
-            ("cl-defmethod" code nil nil [49314 49675])
-            ("cl-defmethod" code nil nil [49775 49917])
-            ("cl-defmethod" code nil nil [49919 50139])
-            ("cl-defmethod" code nil nil [50303 50423])
-            ("cl-defmethod" code nil nil [50425 50544])
-            ("cl-defmethod" code nil nil [50546 50770])
-            ("ede-apply-preprocessor-map" function nil nil [50781 51605])
-            ("cl-defmethod" code nil nil [51607 51727])
-            ("cl-defmethod" code nil nil [51729 51840])
-            ("cl-defmethod" code nil nil [51842 51952])
-            ("cl-defmethod" code nil nil [51962 52108])
-            ("ede-set" function
-               (:user-visible-flag t
-                :arguments ("variable" "value" "proj"))
-                nil [52141 52807])
-            ("ede-apply-project-local-variables" function (:arguments ("buffer")) nil [52809 53257])
-            ("ede-make-project-local-variable" function (:arguments ("variable" "project")) nil [53259 53581])
-            ("ede-set-project-local-variable" function (:arguments ("variable" "value" "project")) nil [53583 54105])
-            ("cl-defmethod" code nil nil [54107 54428])
-            ("cl-defmethod" code nil nil [54430 54545])
-            ("project-try-ede" function (:arguments ("dir")) nil [54580 54841])
-            ("cl-defmethod" code nil nil [54843 54941])
-            ("add-hook" code nil nil [54943 54995])
-            ("ede" package nil nil [54997 55011])
-            ("ede/files" include nil nil [55061 55081])
-            ("if" code nil nil [55167 55280]))          
-      :file "ede.el"
-      :pointmax 55303
-      :fsize 55302
-      :lastmodtime '(23525 29528 0 0)
-      :unmatched-syntax '((close-paren 1721 . 1722) (symbol 1666 . 1682) (open-paren 1665 . 1666)))
-    (semanticdb-table "semanticdb-table"
-      :file "cedet.el"
-      :fsize 4928
-      :lastmodtime '(23525 29527 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1799 1812])
-            ("find-func" include nil nil [1815 1835])
-            ("mode-local-map-file-buffers" function (:arguments ("function" "predicate" "buffers")) nil [2187 2861])
-            ("get-mode-local-parent" function (:arguments ("mode")) nil [2863 3062])
-            ("mode-local-equivalent-mode-p" function (:arguments ("mode")) nil [3198 3442])
-            ("mode-local-map-mode-buffers" function (:arguments ("function" "modes")) nil [3444 3914])
-            ("mode-local-init-hook" variable nil nil [3939 4074])
-            ("mode-local-changed-mode-buffers" variable nil nil [4076 4181])
-            ("mode-local--init-mode" variable nil nil [4183 4217])
-            ("mode-local-initialized-p" function nil nil [4219 4479])
-            ("mode-local-post-major-mode-change" function nil nil [4481 5087])
-            ("mode-local-on-major-mode-change" function nil nil [5089 5319])
-            ("set-mode-local-parent" function (:arguments ("mode" "parent")) nil [5342 5837])
-            ("define-child-mode" function (:arguments ("mode" "parent" "docstring")) nil [5839 6123])
-            ("mode-local-use-bindings-p" function (:arguments ("this-mode" "desired-mode")) nil [6125 6417])
-            ("mode-local-symbol-table" variable nil nil [6446 6653])
-            ("make-variable-buffer-local" code nil nil [6654 6707])
-            ("mode-local-active-mode" variable nil nil [6709 6789])
-            ("new-mode-local-bindings" function nil nil [6791 6900])
-            ("mode-local-bind" function (:arguments ("bindings" "plist" "mode")) nil [6902 10015])
-            ("mode-local-symbol" function (:arguments ("symbol" "mode")) nil [10017 10901])
-            ("mode-local-symbol-value" function (:arguments ("symbol" "mode" "property")) nil [10903 11477])
-            ("activate-mode-local-bindings" function (:arguments ("mode")) nil [11508 13252])
-            ("deactivate-mode-local-bindings" function (:arguments ("mode")) nil [13254 13930])
-            ("with-mode-local-symbol" function (:arguments ("mode" "body")) nil [13932 15328])
-            ("put" code nil nil [15329 15382])
-            ("with-mode-local" function (:arguments ("mode" "body")) nil [15384 15767])
-            ("put" code nil nil [15768 15814])
-            ("mode-local-value" function (:arguments ("mode" "sym")) nil [15817 16013])
-            ("setq-mode-local" function (:arguments ("mode" "args")) nil [16015 17180])
-            ("defvar-mode-local" function (:arguments ("mode" "sym" "val" "docstring")) nil [17182 17469])
-            ("put" code nil nil [17470 17523])
-            ("defconst-mode-local" function (:arguments ("mode" "sym" "val" "docstring")) nil [17525 17912])
-            ("put" code nil nil [17913 17968])
-            ("make-obsolete-overload" function (:arguments ("old" "new" "when")) nil [17999 18322])
-            ("overload-obsoleted-by" function (:arguments ("overload")) nil [18324 18502])
-            ("overload-that-obsolete" function (:arguments ("overload")) nil [18504 18704])
-            ("fetch-overload" function (:arguments ("overload")) nil [18706 19195])
-            ("mode-local--override" function (:arguments ("name" "args" "body")) nil [19197 19875])
-            ("mode-local--expand-overrides" function (:arguments ("name" "args" "body")) nil [19877 20776])
-            ("mode-local--overload-body" function (:arguments ("name" "args" "body")) nil [20778 21171])
-            ("put" code nil nil [21188 21241])
-            ("define-overloadable-function" function (:arguments ("name" "args" "docstring" "body")) nil [21243 22553])
-            ("put" code nil nil [22554 22603])
-            ("defalias" code nil nil [22605 22662])
-            ("function-overload-p" function (:arguments ("symbol")) nil [22664 22837])
-            ("define-mode-local-override" function (:arguments ("name" "mode" "args" "docstring" "body")) nil [22839 23897])
-            ("mode-local-read-function" function (:arguments ("prompt" "initial" "hist" "default")) nil [23923 24209])
-            ("overload-docstring-extension" function (:arguments ("overload")) nil [24232 24880])
-            ("mode-local-augment-function-help" function (:arguments ("symbol")) nil [24882 25453])
-            ("describe-function-orig-buffer" variable nil nil [25534 25572])
-            ("describe-mode-local-overload" function (:arguments ("symbol")) nil [25574 26698])
-            ("add-hook" code nil nil [26700 26778])
-            ("declare-function" code nil nil [26780 26833])
-            ("xref-mode-local--override-present" function (:arguments ("sym" "xrefs")) nil [26835 27105])
-            ("xref-mode-local-overload" function (:arguments ("symbol")) nil [27107 29343])
-            ("add-hook" code nil nil [29345 29412])
-            ("xref-mode-local-find-overloadable-regexp" variable
-               (:constant-flag t
-                :default-value "(\\(\\(define-overloadable-function\\)\\|\\(define-overload\\)\\) +%s")
-                nil [29414 29650])
-            ("xref-mode-local-find-override" function (:arguments ("meta-name")) nil [29652 30124])
-            ("add-to-list" code nil nil [30126 30242])
-            ("add-to-list" code nil nil [30243 30351])
-            ("mode-local-print-binding" function (:arguments ("symbol")) nil [30386 30797])
-            ("mode-local-print-bindings" function (:arguments ("table")) nil [30799 32028])
-            ("mode-local-describe-bindings-2" function (:arguments ("buffer-or-mode")) nil [32030 32966])
-            ("mode-local-describe-bindings-1" function (:arguments ("buffer-or-mode" "interactive-p")) nil [32968 33885])
-            ("describe-mode-local-bindings" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [33887 34119])
-            ("describe-mode-local-bindings-in-mode" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [34121 34508])
-            ("mode-local-setup-edebug-specs" function nil nil [34533 35140])
-            ("add-hook" code nil nil [35142 35202])
-            ("add-hook" code nil nil [35204 35265])
-            ("add-hook" code nil nil [35266 35333])
-            ("mode-local" package nil nil [35335 35356]))          
-      :file "mode-local.el"
-      :pointmax 35386
-      :fsize 35393
-      :lastmodtime '(23525 29528 0 0)
-      :unmatched-syntax '((close-paren 1812 . 1813) (symbol 1781 . 1798) (open-paren 1780 . 1781)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cedet" include nil nil [1380 1396])
-            ("semantic/tag" include nil nil [1397 1420])
-            ("semantic/lex" include nil nil [1421 1444])
-            ("cl-lib" include nil nil [1445 1462])
-            ("semantic-version" variable (:default-value "2.2") nil [1464 1528])
-            ("declare-function" code nil nil [1530 1575])
-            ("declare-function" code nil nil [1576 1647])
-            ("semantic-require-version" function (:arguments ("major" "minor" "beta")) nil [1649 2227])
-            ("semantic" customgroup (:user-visible-flag t) nil [2229 2311])
-            ("semantic-faces" customgroup (:user-visible-flag t) nil [2313 2404])
-            ("semantic/fw" include nil nil [2406 2428])
-            ("semantic--parse-table" variable nil nil [2479 2674])
-            ("make-variable-buffer-local" code nil nil [2675 2726])
-            ("semantic-varalias-obsolete" code nil nil [2727 2824])
-            ("semantic-symbol->name-assoc-list" variable (:default-value (quote ((type . "Types") (variable . "Variables") (function . "Functions") (include . "Dependencies") (package . "Provides")))) nil [2826 3365])
-            ("make-variable-buffer-local" code nil nil [3366 3428])
-            ("semantic-symbol->name-assoc-list-for-type-parts" variable nil nil [3430 3864])
-            ("make-variable-buffer-local" code nil nil [3865 3942])
-            ("semantic-case-fold" variable nil nil [3944 4022])
-            ("make-variable-buffer-local" code nil nil [4023 4071])
-            ("semantic-expand-nonterminal" variable nil nil [4073 4565])
-            ("make-variable-buffer-local" code nil nil [4566 4623])
-            ("semantic--buffer-cache" variable nil nil [4625 5038])
-            ("make-variable-buffer-local" code nil nil [5039 5091])
-            ("semantic-varalias-obsolete" code nil nil [5092 5190])
-            ("semantic-unmatched-syntax-cache" variable nil nil [5192 5282])
-            ("make-variable-buffer-local" code nil nil [5283 5344])
-            ("semantic-unmatched-syntax-cache-check" variable nil nil [5346 5503])
-            ("make-variable-buffer-local" code nil nil [5504 5571])
-            ("semantic-edits-are-safe" variable nil nil [5573 5923])
-            ("semantic-unmatched-syntax-hook" variable nil nil [5925 6550])
-            ("semantic--before-fetch-tags-hook" variable nil nil [6552 6850])
-            ("semantic-varalias-obsolete" code nil nil [6851 6969])
-            ("semantic-after-toplevel-bovinate-hook" variable nil nil [6971 7330])
-            ("make-obsolete-variable" code nil nil [7331 7405])
-            ("semantic-after-toplevel-cache-change-hook" variable nil nil [7407 7847])
-            ("semantic-before-toplevel-cache-flush-hook" variable nil nil [7849 8199])
-            ("semantic-dump-parse" variable nil nil [8201 8316])
-            ("semantic-parser-name" variable (:default-value "LL") nil [8318 8412])
-            ("make-variable-buffer-local" code nil nil [8413 8463])
-            ("semantic--completion-cache" variable nil nil [8465 8562])
-            ("make-variable-buffer-local" code nil nil [8563 8619])
-            ("semantic-parse-tree-state" variable (:default-value (quote needs-rebuild)) nil [8661 8747])
-            ("make-variable-buffer-local" code nil nil [8748 8803])
-            ("semantic-parse-tree-unparseable" function nil nil [8805 9088])
-            ("semantic-parse-tree-unparseable-p" function nil nil [9090 9254])
-            ("semantic-parse-tree-set-needs-update" function nil nil [9256 9477])
-            ("semantic-parse-tree-needs-update-p" function nil nil [9479 9641])
-            ("semantic-parse-tree-set-needs-rebuild" function nil nil [9643 9866])
-            ("semantic-parse-tree-needs-rebuild-p" function nil nil [9868 10032])
-            ("semantic-parse-tree-set-up-to-date" function nil nil [10034 10178])
-            ("semantic-parse-tree-up-to-date-p" function nil nil [10180 10322])
-            ("semantic-inhibit-functions" variable nil nil [10359 10600])
-            ("semantic-new-buffer-setup-functions" variable (:default-value (quote ((c-mode . semantic-default-c-setup) (c++-mode . semantic-default-c-setup) (html-mode . semantic-default-html-setup) (java-mode . wisent-java-default-setup) (js-mode . wisent-javascript-setup-parser) (python-mode . wisent-python-default-setup) (scheme-mode . semantic-default-scheme-setup) (srecode-template-mode . srecode-template-setup-parser) (texinfo-mode . semantic-default-texi-setup) (makefile-automake-mode . semantic-default-make-setup) (makefile-gmake-mode . semantic-default-make-setup) (makefile-makepp-mode . semantic-default-make-setup) (makefile-bsdmake-mode . semantic-default-make-setup) (makefile-imake-mode . semantic-default-make-setup) (makefile-mode . semantic-default-make-setup)))) nil [10602 11833])
-            ("semantic-init-hook" variable nil nil [11835 11930])
-            ("semantic-init-mode-hook" variable nil nil [11932 12032])
-            ("make-variable-buffer-local" code nil nil [12033 12086])
-            ("semantic-init-db-hook" variable nil nil [12088 12358])
-            ("semantic-varalias-obsolete" code nil nil [12360 12443])
-            ("semantic-varalias-obsolete" code nil nil [12444 12537])
-            ("semantic-varalias-obsolete" code nil nil [12538 12627])
-            ("semantic-error-if-unparsed" function nil nil [12629 12826])
-            ("semantic--umatched-syntax-needs-refresh-p" function nil nil [12828 13113])
-            ("semantic-new-buffer-fcn" function nil nil [13115 14752])
-            ("semantic-fetch-tags-fast" function nil nil [14754 14998])
-            ("condition-case" code nil nil [15046 15092])
-            ("semantic-edebug" variable nil nil [15095 15234])
-            ("semantic-elapsed-time" function (:arguments ("start" "end")) nil [15236 15427])
-            ("bovinate" function
-               (:user-visible-flag t
-                :arguments ("clear"))
-                nil [15429 16185])
-            ("semantic-parse-stream" function
-               (:overloadable t
-                :arguments ("stream" "nonterminal"))
-                nil [16294 16880])
-            ("semantic-parse-changes" function (:overloadable t) nil [16882 17129])
-            ("semantic-parse-region" function
-               (:overloadable t
-                :arguments ("start" "end" "nonterminal" "depth" "returnonerror"))
-                nil [17131 17961])
-            ("semantic-parse-region-default" function (:arguments ("start" "end" "nonterminal" "depth" "returnonerror")) nil [17963 19015])
-            ("semantic-set-unmatched-syntax-cache" function (:arguments ("unmatched-syntax")) nil [19043 19590])
-            ("semantic-clear-unmatched-syntax-cache" function nil nil [19592 19781])
-            ("semantic-unmatched-syntax-tokens" function nil nil [19783 20406])
-            ("semantic-clear-toplevel-cache" function (:user-visible-flag t) nil [20408 21422])
-            ("semantic-bovinate-nonterminal-check-obarray" variable nil nil [21424 21476])
-            ("semantic--set-buffer-cache" function (:arguments ("tagtable")) nil [21478 22369])
-            ("semantic-working-type" variable (:default-value (quote percent)) nil [22371 22573])
-            ("semantic-varalias-obsolete" code nil nil [22574 22673])
-            ("semantic-minimum-working-buffer-size" variable (:default-value (* 1024 5)) nil [22675 22914])
-            ("semantic-parser-working-message" function (:arguments ("arg")) nil [22916 23231])
-            ("semantic-parser-warnings" variable nil nil [23453 23486])
-            ("semantic-fetch-tags" function nil nil [23488 26616])
-            ("semantic-refresh-tags-safe" function nil nil [26618 27927])
-            ("semantic-bovinate-toplevel" function (:arguments ("ignored")) nil [27929 28044])
-            ("make-obsolete" code nil nil [28045 28116])
-            ("semantic-fetch-available-tags" function nil nil [28377 28817])
-            ("semantic-repeat-parse-whole-stream" function (:arguments ("stream" "nonterm" "returnonerror")) nil [29090 31313])
-            ("semantic-parser-warnings" variable nil nil [31589 31685])
-            ("make-variable-buffer-local" code nil nil [31686 31740])
-            ("semantic-clear-parser-warnings" function nil nil [31742 31884])
-            ("semantic-push-parser-warning" function (:arguments ("warning" "start" "end")) nil [31886 32109])
-            ("semantic-dump-parser-warnings" function (:user-visible-flag t) nil [32111 32430])
-            ("semantic-bovinate-region-until-error" function (:arguments ("start" "end" "nonterm" "depth")) nil [32622 33231])
-            ("make-obsolete" code nil nil [33232 33330])
-            ("semantic-bovinate-from-nonterminal" function (:arguments ("start" "end" "nonterm" "depth" "length")) nil [33332 33877])
-            ("semantic-bovinate-from-nonterminal-full" function (:arguments ("start" "end" "nonterm" "depth")) nil [33879 34455])
-            ("make-obsolete" code nil nil [34456 34557])
-            ("semantic-force-refresh" function (:user-visible-flag t) nil [34579 34832])
-            ("semantic-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map ",j" (quote semantic-complete-jump-local)) (define-key map ",J" (quote semantic-complete-jump)) (define-key map ",m" (quote semantic-complete-jump-local-members)) (define-key map ",g" (quote semantic-symref-symbol)) (define-key map ",G" (quote semantic-symref)) (define-key map ",p" (quote senator-previous-tag)) (define-key map ",n" (quote senator-next-tag)) (define-key map ",u" (quote senator-go-to-up-reference)) (define-key map ", " (quote semantic-complete-analyze-inline)) (define-key map "," (quote senator-kill-tag)) (define-key map ",\367" (quote senator-copy-tag)) (define-key map "," (quote senator-yank-tag)) (define-key map ",r" (quote senator-copy-tag-to-register)) (define-key map ",," (quote semantic-force-refresh)) (define-key map [3 44 up] (quote senator-transpose-tags-up)) (define-key map [3 44 down] (quote senator-transpose-tags-down)) (define-key map ",l" (quote semantic-analyze-possible-completions)) (define-key map [menu-bar cedet-menu] (list (quote menu-item) "Development" cedet-menu-map :enable (quote (not (and menu-bar-mode (bound-and-true-p global-ede-mode)))))) map)) nil [34834 36448])
-            ("let" code nil nil [36499 42986])
-            ("semantic-load-system-cache-loaded" variable nil nil [43139 43301])
-            ("semantic-submode-list" variable
-               (:constant-flag t
-                :default-value (quote (global-semantic-highlight-func-mode global-semantic-decoration-mode global-semantic-stickyfunc-mode global-semantic-idle-completions-mode global-semantic-idle-scheduler-mode global-semanticdb-minor-mode global-semantic-idle-summary-mode global-semantic-mru-bookmark-mode global-cedet-m3-minor-mode global-semantic-idle-local-symbol-highlight-mode global-semantic-highlight-edits-mode global-semantic-show-unmatched-syntax-mode global-semantic-show-parser-state-mode)))
-                nil [43303 43913])
-            ("semantic-default-submodes" variable (:default-value (quote (global-semantic-idle-scheduler-mode global-semanticdb-minor-mode))) nil [43930 45583])
-            ("define-minor-mode" code nil nil [45600 48800])
-            ("semantic-analyze-completion-at-point-function" function nil nil [48836 49487])
-            ("semantic-analyze-notc-completion-at-point-function" function nil nil [49489 50138])
-            ("semantic-analyze-nolongprefix-completion-at-point-function" function nil nil [50140 50864])
-            ("global-semantic-idle-completions-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [50929 51143])
-            ("semantic-idle-completions-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51145 51555])
-            ("global-semantic-idle-summary-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51557 51763])
-            ("semantic-idle-summary-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51765 52280])
-            ("global-semantic-idle-local-symbol-highlight-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52282 52570])
-            ("srecode-template-setup-parser" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52572 52700])
-            ("semantic" package nil nil [52702 52721])
-            ("semantic/util" include nil nil [52823 52847]))          
-      :file "semantic.el"
-      :pointmax 52904
-      :fsize 52903
-      :lastmodtime '(23525 29528 0 0)
-      :unmatched-syntax '((close-paren 15092 . 15093) (symbol 15026 . 15043) (open-paren 15025 . 15026)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pulse-available-p" function nil nil [1939 2156])
-            ("pulse-flag" variable (:default-value (pulse-available-p)) nil [2158 2643])
-            ("pulse-highlight-start-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:background "#AAAA33")) (((class color) (background light)) (:background "#FFFFAA"))))
-                :type "face")
-                nil [2645 2880])
-            ("pulse-highlight-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:background "#AAAA33")) (((class color) (background light)) (:background "#FFFFAA"))))
-                :type "face")
-                nil [2882 3187])
-            ("pulse-int-to-hex" function (:arguments ("int" "nb-digits")) nil [3202 3881])
-            ("pulse-color-values-to-hex" function (:arguments ("values")) nil [3883 4373])
-            ("pulse-iterations" variable (:default-value 10) nil [4382 4492])
-            ("pulse-delay" variable (:default-value 0.03) nil [4493 4598])
-            ("pulse-lighten-highlight" function nil nil [4600 5726])
-            ("pulse-reset-face" function (:arguments ("face")) nil [5728 6094])
-            ("pulse-momentary-overlay" variable nil nil [6125 6194])
-            ("pulse-momentary-timer" variable nil nil [6196 6261])
-            ("pulse-momentary-highlight-overlay" function (:arguments ("o" "face")) nil [6263 7398])
-            ("pulse-tick" function (:arguments ("stop-time")) nil [7400 7542])
-            ("pulse-momentary-unhighlight" function nil nil [7544 8253])
-            ("pulse-momentary-highlight-one-line" function (:arguments ("point" "face")) nil [8270 8768])
-            ("pulse-momentary-highlight-region" function (:arguments ("start" "end" "face")) nil [8785 9141])
-            ("pulse-command-advice-flag" variable nil nil [9184 9222])
-            ("pulse-line-hook-function" function nil nil [9224 9461])
-            ("pulse" package nil nil [9463 9479]))          
-      :file "pulse.el"
-      :pointmax 9504
-      :fsize 9503
-      :lastmodtime '(23525 29528 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041srecode\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041srecode\041semantic.cache"
deleted file mode 100644
index 54cb458..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041cedet\041srecode\041semantic.cache"
+++ /dev/null
@@ -1,153 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("mode-local" include nil nil [998 1019])
-            ("srecode" include nil nil [1020 1038])
-            ("srecode/insert" include nil nil [1039 1064])
-            ("srecode/find" include nil nil [1065 1088])
-            ("srecode/map" include nil nil [1089 1111])
-            ("semantic/decorate" include nil nil [1112 1140])
-            ("semantic/wisent" include nil nil [1141 1167])
-            ("semantic/senator" include nil nil [1168 1195])
-            ("semantic/wisent" include nil nil [1196 1222])
-            ("semantic/find" include nil nil [1245 1269])
-            ("srecode-minor-mode-hook" variable nil nil [1283 1416])
-            ("srecode-prefix-key" variable (:default-value [(control 99) 47]) nil [1539 1633])
-            ("srecode-prefix-map" variable (:default-value (let ((km (make-sparse-keymap))) (define-key km "/" (quote srecode-insert)) (define-key km [insert] (quote srecode-insert)) (define-key km "." (quote srecode-insert-again)) (define-key km "E" (quote srecode-edit)) (let ((k 97)) (while (<= k 122) (define-key km (format "%c" k) (quote srecode-bind-insert)) (setq k (1+ k)))) km)) nil [1635 2118])
-            ("srecode-menu-bar" variable (:default-value (list "SRecoder" (semantic-menu-item ["Insert Template" srecode-insert :active t :help "Insert a template by name."]) (semantic-menu-item ["Insert Template Again" srecode-insert-again :active t :help "Run the same template as last time again."]) (semantic-menu-item ["Edit Template" srecode-edit :active t :help "Edit a template for this language by name."]) "---" (quote ("Insert ..." :filter srecode-minor-mode-templates-menu)) (\` ("Generate ..." :filter srecode-minor-mode-generate-menu)) "---" (semantic-menu-item ["Customize..." (customize-group "srecode") :active t :help "Customize SRecode options"]) (list "Debugging Tools..." (semantic-menu-item ["Dump Template MAP" srecode-get-maps :active t :help "Calculate (if needed) and display the current template file map."]) (semantic-menu-item ["Dump Tables" srecode-dump-templates :active t :help "Dump the current template table."]) (semantic-menu-item ["Dump Dictionary" srecode-dictionary-dump :active t :help "Calculate and dump a dictionary for point."]) (semantic-menu-item ["Show Macro Help" srecode-macro-help :active t :help "Display the different types of macros available."])))) nil [2120 3603])
-            ("srecode-minor-menu" variable nil nil [3605 3683])
-            ("srecode-takeover-INS-key" variable nil nil [3685 3808])
-            ("srecode-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) (define-key km srecode-prefix-key srecode-prefix-map) (easy-menu-define srecode-minor-menu km "Srecode Minor Mode Menu" srecode-menu-bar) (when srecode-takeover-INS-key (define-key km [insert] srecode-prefix-map)) km)) nil [3810 4167])
-            ("define-minor-mode" code nil nil [4184 5106])
-            ("define-minor-mode" code nil nil [5123 5480])
-            ("semantic-add-minor-mode" code nil nil [5526 5574])
-            ("srecode-minor-mode-templates-menu" function (:arguments ("menu-def")) nil [5596 7605])
-            ("srecode-minor-mode-generators" variable nil nil [7607 7715])
-            ("srecode-minor-mode-generate-menu" function (:arguments ("menu-def")) nil [7717 8324])
-            ("srecode-bind-insert" function (:user-visible-flag t) nil [8353 8895])
-            ("srecode-edit" function
-               (:user-visible-flag t
-                :arguments ("template-name"))
-                nil [8897 10446])
-            ("srecode-add-code-generator" function (:arguments ("function" "name" "binding")) nil [10448 12192])
-            ("srecode-add-code-generator" code nil nil [12226 12302])
-            ("srecode-add-code-generator" code nil nil [12303 12368])
-            ("srecode/mode" package nil nil [12370 12393]))          
-      :file "mode.el"
-      :pointmax 12544
-      :fsize 12543
-      :lastmodtime '(23525 29537 0 0)
-      :unmatched-syntax '((close-paren 1269 . 1270) (symbol 1225 . 1242) (open-paren 1224 . 1225)))
-    (semanticdb-table "semanticdb-table"
-      :file "insert.el"
-      :fsize 39156
-      :lastmodtime '(23525 29537 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "find.el"
-      :fsize 10440
-      :lastmodtime '(23525 29537 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "map.el"
-      :fsize 13549
-      :lastmodtime '(23525 29537 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eieio" include nil nil [961 977])
-            ("cl-generic" include nil nil [978 999])
-            ("eieio-base" include nil nil [1000 1021])
-            ("mode-local" include nil nil [1022 1043])
-            ("srecode" include nil nil [1044 1062])
-            ("declare-function" code nil nil [1064 1126])
-            ("declare-function" code nil nil [1127 1196])
-            ("srecode-template-table" type
-               (:members 
-                  ( ("file" variable
-                       (:documentation "The name of the file this table was built from."
-                        :type "string")
-                        nil nil)
-                    ("filesize" variable
-                       (:documentation "The size of the file when it was parsed."
-                        :type "number")
-                        nil nil)
-                    ("filedate" variable
-                       (:documentation "Date from the inode of the file when it was last edited.
-Format is from the `file-attributes' function."
-                        :type "cons")
-                        nil nil)
-                    ("major-mode" variable (:documentation "The major mode this table of templates is associated with.") nil nil)
-                    ("application" variable
-                       (:documentation "Tracks the name of the application these templates belong to.
-If this is nil, then this template table belongs to a set of generic
-templates that can be used with no additional dictionary values.
-When it is non-nil, it is assumed the template macros need specialized
-Emacs Lisp code to fill in the dictionary."
-                        :type "symbol")
-                        nil nil)
-                    ("framework" variable
-                       (:documentation "Tracks the name of the framework these templates belong to.
-If nil, then this template table belongs to any framework, or can be
-considered generic for all files of this language.
-A framework might be a specific library or build environment for which
-special templates are desired.  OpenGL might be a framework that
-exists for multiple languages."
-                        :type "symbol")
-                        nil nil)
-                    ("priority" variable
-                       (:documentation "For file of this Major Mode, what is the priority of this file.
-When there are multiple template files with similar names, templates with
-the highest priority are scanned last, allowing them to override values in
-previous template files."
-                        :type "number")
-                        nil nil)
-                    ("project" variable
-                       (:documentation "Scope some project files to a specific project.
-The value is a directory which forms the root of a particular project,
-or a subset of a particular project."
-                        :type "(or null string)")
-                        nil nil)
-                    ("templates" variable
-                       (:documentation "The list of templates compiled into this table."
-                        :type "list")
-                        nil nil)
-                    ("namehash" variable (:documentation "Hash table containing the names of all the templates.") nil nil)
-                    ("contexthash" variable nil nil nil)
-                    ("variables" variable (:documentation "AList of variables.
-These variables are used to initialize dictionaries.") nil nil))                  
-                :type "class")
-                nil [1231 3904])
-            ("srecode-mode-table-list" variable nil nil [3924 4029])
-            ("srecode-mode-table" type
-               (:superclasses "eieio-instance-tracker"
-                :members 
-                  ( ("tracking-symbol" variable (:default-value "(quote srecode-mode-table-list)") nil nil)
-                    ("major-mode" variable (:documentation "Table of template tables for this major-mode.") nil nil)
-                    ("modetables" variable (:documentation "All that tables unique to this major mode.") nil nil)
-                    ("tables" variable (:documentation "All the tables that can be used for this major mode.") nil nil))                  
-                :type "class")
-                nil [4031 4579])
-            ("srecode-get-mode-table" function (:arguments ("mode")) nil [4581 5451])
-            ("srecode-make-mode-table" function (:arguments ("mode")) nil [5453 5948])
-            ("cl-defmethod" code nil nil [5950 6160])
-            ("srecode-mode-table-new" function (:arguments ("mode" "file" "init")) nil [6162 7184])
-            ("object-sort-list" function (:arguments ("object" "slot" "predicate")) nil [7186 7477])
-            ("srecode-dump-templates" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [7566 8132])
-            ("cl-defmethod" code nil nil [8134 8559])
-            ("cl-defmethod" code nil nil [8561 9695])
-            ("srecode/table" package nil nil [9698 9722]))          
-      :file "table.el"
-      :pointmax 9755
-      :fsize 9754
-      :lastmodtime '(23525 29537 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!cedet!srecode!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041emacs-lisp\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041emacs-lisp\041semantic.cache"
deleted file mode 100644
index 167be4e..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041emacs-lisp\041semantic.cache"
+++ /dev/null
@@ -1,2762 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("macroexp" include nil nil [3159 3178])
-            ("define-error" code nil nil [3420 3489])
-            ("gv-get" function (:arguments ("place" "do")) nil [3506 5369])
-            ("gv-setter" function (:arguments ("name")) nil [5371 5807])
-            ("gv-letplace" function (:arguments ("vars" "place" "body")) nil [5824 6475])
-            ("gv-define-expander" function (:arguments ("name" "handler")) nil [6545 6929])
-            ("gv--defun-declaration" function (:arguments ("symbol" "name" "args" "handler" "fix")) nil [6946 7778])
-            ("or" code nil nil [7795 8026])
-            ("or" code nil nil [8042 8195])
-            ("gv--defsetter" function (:arguments ("name" "setter" "do" "args" "vars")) nil [8716 9399])
-            ("gv-define-setter" function (:arguments ("name" "arglist" "body")) nil [9416 10251])
-            ("gv-define-simple-setter" function (:arguments ("name" "setter" "fix-return")) nil [10268 11232])
-            ("setf" function (:arguments ("args")) nil [11299 12101])
-            ("put" code nil nil [13323 13375])
-            ("put" code nil nil [13481 13680])
-            ("gv-define-simple-setter" code nil nil [13721 13756])
-            ("gv-define-simple-setter" code nil nil [13757 13793])
-            ("gv-define-simple-setter" code nil nil [13794 13830])
-            ("gv-define-setter" code nil nil [13881 13936])
-            ("gv-define-setter" code nil nil [13937 13992])
-            ("gv-define-setter" code nil nil [13993 14048])
-            ("gv-define-setter" code nil nil [14049 14104])
-            ("gv-define-setter" code nil nil [14105 14222])
-            ("gv-define-simple-setter" code nil nil [14223 14256])
-            ("gv-define-setter" code nil nil [14257 14328])
-            ("put" code nil nil [14403 14565])
-            ("gv-define-simple-setter" code nil nil [14566 14612])
-            ("gv-define-simple-setter" code nil nil [14613 14660])
-            ("gv-define-simple-setter" code nil nil [14661 14703])
-            ("put" code nil nil [14705 15023])
-            ("gv-define-simple-setter" code nil nil [15068 15119])
-            ("gv-define-simple-setter" code nil nil [15120 15186])
-            ("gv-define-simple-setter" code nil nil [15187 15254])
-            ("gv-define-simple-setter" code nil nil [15255 15312])
-            ("gv-define-simple-setter" code nil nil [15313 15369])
-            ("gv-define-simple-setter" code nil nil [15370 15419])
-            ("gv-define-setter" code nil nil [15420 15525])
-            ("gv-define-setter" code nil nil [15526 15631])
-            ("gv-define-simple-setter" code nil nil [15632 15691])
-            ("gv-define-simple-setter" code nil nil [15692 15751])
-            ("gv-define-simple-setter" code nil nil [15752 15815])
-            ("gv-define-simple-setter" code nil nil [15816 15865])
-            ("gv-define-simple-setter" code nil nil [15866 15929])
-            ("gv-define-setter" code nil nil [15930 16046])
-            ("gv-define-setter" code nil nil [16047 16177])
-            ("gv-define-setter" code nil nil [16178 16265])
-            ("gv-define-setter" code nil nil [16266 16343])
-            ("gv-define-setter" code nil nil [16344 16417])
-            ("gv-define-setter" code nil nil [16418 16491])
-            ("gv-define-setter" code nil nil [16493 16640])
-            ("gv-define-expander" code nil nil [16642 18103])
-            ("put" code nil nil [18335 18553])
-            ("let" code nil nil [18555 18887])
-            ("put" code nil nil [18889 19925])
-            ("put" code nil nil [19927 21600])
-            ("gv-synthetic-place" function (:arguments ("getter" "setter")) nil [21602 21971])
-            ("gv-delay-error" function (:arguments ("place")) nil [21973 22579])
-            ("put" code nil nil [22618 22979])
-            ("put" code nil nil [22981 23428])
-            ("gv-ref" function (:arguments ("place")) nil [23461 24369])
-            ("gv-deref" function (:arguments ("ref")) nil [24371 24574])
-            ("gv-define-setter" code nil nil [24818 24878])
-            ("gv" package nil nil [25240 25253]))          
-      :file "gv.el"
-      :pointmax 25274
-      :fsize 25279
-      :lastmodtime '(23525 29542 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "macroexp.el"
-      :fsize 23127
-      :lastmodtime '(23525 29542 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "cl-lib.el"
-      :fsize 26211
-      :lastmodtime '(23525 29539 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "easy-mmode.el"
-      :fsize 26213
-      :lastmodtime '(23525 29540 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("macroexp" include nil nil [2468 2487])
-            ("pcase--memoize" variable
-               (:constant-flag t
-                :default-value (make-hash-table :weakness (quote key) :test (quote eq)))
-                nil [2933 3001])
-            ("pcase--dontcare-upats" variable
-               (:constant-flag t
-                :default-value (quote (t _ pcase--dontcare)))
-                nil [3139 3194])
-            ("pcase--dontwarn-upats" variable (:default-value (quote (pcase--dontcare))) nil [3196 3245])
-            ("def-edebug-spec" code nil nil [3247 3497])
-            ("def-edebug-spec" code nil nil [3499 3630])
-            ("put" code nil nil [3649 3712])
-            ("declare-function" code nil nil [3742 3794])
-            ("declare-function" code nil nil [3795 3850])
-            ("pcase--edebug-match-macro" function (:arguments ("cursor")) nil [3852 4135])
-            ("pcase" function (:arguments ("exp" "cases")) nil [4152 8041])
-            ("declare-function" code nil nil [8043 8155])
-            ("put" code nil nil [8276 8337])
-            ("pcase--make-docstring" function nil nil [8338 9205])
-            ("pcase-exhaustive" function (:arguments ("exp" "cases")) nil [9222 9679])
-            ("pcase-lambda" function (:arguments ("lambda-list" "body")) nil [9696 10764])
-            ("pcase--let*" function (:arguments ("bindings" "body")) nil [10766 11467])
-            ("pcase-let*" function (:arguments ("bindings" "body")) nil [11484 12055])
-            ("pcase-let" function (:arguments ("bindings" "body")) nil [12072 13104])
-            ("pcase-dolist" function (:arguments ("spec" "body")) nil [13121 13521])
-            ("pcase--trivial-upat-p" function (:arguments ("upat")) nil [13524 13623])
-            ("pcase--expand" function (:arguments ("exp" "cases")) nil [13625 17393])
-            ("pcase--macroexpand" function (:arguments ("pat")) nil [17395 18202])
-            ("pcase-defmacro" function (:arguments ("name" "args" "body")) nil [18219 18925])
-            ("pcase--match" function (:arguments ("val" "upat")) nil [18927 19276])
-            ("pcase-codegen" function (:arguments ("code" "vars")) nil [19278 19640])
-            ("pcase--small-branch-p" function (:arguments ("code")) nil [19642 19875])
-            ("pcase--if" function (:arguments ("test" "then" "else")) nil [19983 20174])
-            ("pcase--u" function (:arguments ("branches")) nil [21275 21884])
-            ("pcase--and" function (:arguments ("match" "matches")) nil [21886 21965])
-            ("pcase-mutually-exclusive-predicates" variable
-               (:constant-flag t
-                :default-value (quote ((symbolp . integerp) (symbolp . numberp) (symbolp . consp) (symbolp . arrayp) (symbolp . vectorp) (symbolp . stringp) (symbolp . byte-code-function-p) (symbolp . recordp) (integerp . consp) (integerp . arrayp) (integerp . vectorp) (integerp . stringp) (integerp . byte-code-function-p) (integerp . recordp) (numberp . consp) (numberp . arrayp) (numberp . vectorp) (numberp . stringp) (numberp . byte-code-function-p) (numberp . recordp) (consp . arrayp) (consp . atom) (consp . vectorp) (consp . stringp) (consp . byte-code-function-p) (consp . recordp) (arrayp . byte-code-function-p) (vectorp . byte-code-function-p) (vectorp . recordp) (stringp . vectorp) (stringp . recordp) (stringp . byte-code-function-p))))
-                nil [21967 22854])
-            ("pcase--mutually-exclusive-p" function (:arguments ("pred1" "pred2")) nil [22856 23074])
-            ("pcase--split-match" function (:arguments ("sym" "splitter" "match")) nil [23076 24486])
-            ("pcase--split-rest" function (:arguments ("sym" "splitter" "rest")) nil [24488 25018])
-            ("pcase--split-equal" function (:arguments ("elem" "pat")) nil [25020 25658])
-            ("pcase--split-member" function (:arguments ("elems" "pat")) nil [25660 26627])
-            ("pcase--split-pred" function (:arguments ("vars" "upat" "pat")) nil [26629 28304])
-            ("pcase--fgrep" function (:arguments ("vars" "sexp")) nil [28306 28607])
-            ("pcase--self-quoting-p" function (:arguments ("upat")) nil [28609 28699])
-            ("pcase--app-subst-match" function (:arguments ("match" "sym" "fun" "nsym")) nil [28701 29264])
-            ("pcase--app-subst-rest" function (:arguments ("rest" "sym" "fun" "nsym")) nil [29266 29455])
-            ("pcase--mark-used" function (:arguments ("sym")) nil [29457 29612])
-            ("pcase--flip" function (:arguments ("fun" "arg1" "arg2")) nil [29614 29780])
-            ("pcase--funcall" function (:arguments ("fun" "arg" "vars")) nil [29782 30745])
-            ("pcase--eval" function (:arguments ("exp" "vars")) nil [30747 31090])
-            ("pcase--u1" function (:arguments ("matches" "code" "vars" "rest")) nil [31190 38583])
-            ("def-edebug-spec" code nil nil [38585 38818])
-            ("pcase-defmacro" code nil nil [38820 39930])
-            ("pcase" package nil nil [39932 39948]))          
-      :file "pcase.el"
-      :pointmax 39972
-      :fsize 39971
-      :lastmodtime '(23525 29543 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1074 1091])
-            ("cl-defstruct" code nil nil [1094 1846])
-            ("timerp" function (:arguments ("object")) nil [1848 1953])
-            ("timer--check" function (:arguments ("timer")) nil [1955 2060])
-            ("timer--time-setter" function (:arguments ("timer" "time")) nil [2062 2496])
-            ("timer--time" function (:arguments ("timer")) nil [2522 2708])
-            ("timer-set-time" function (:arguments ("timer" "time" "delta")) nil [2710 3105])
-            ("timer-set-idle-time" function (:arguments ("timer" "secs" "repeat")) nil [3107 3606])
-            ("timer-next-integral-multiple-of-time" function (:arguments ("time" "secs")) nil [3608 4613])
-            ("timer-relative-time" function (:arguments ("time" "secs" "usecs" "psecs")) nil [4615 4968])
-            ("timer--time-less-p" function (:arguments ("t1" "t2")) nil [4970 5112])
-            ("timer-inc-time" function (:arguments ("timer" "secs" "usecs" "psecs")) nil [5114 5446])
-            ("timer-set-time-with-usecs" function (:arguments ("timer" "time" "usecs" "delta")) nil [5448 6101])
-            ("timer-set-function" function (:arguments ("timer" "function" "args")) nil [6103 6333])
-            ("timer--activate" function (:arguments ("timer" "triggered-p" "reuse-cell" "idle")) nil [6336 7335])
-            ("timer-activate" function (:arguments ("timer" "triggered-p" "reuse-cell")) nil [7337 7853])
-            ("timer-activate-when-idle" function (:arguments ("timer" "dont-wait" "reuse-cell")) nil [7855 8732])
-            ("defalias" code nil nil [8734 8775])
-            ("cancel-timer" function (:arguments ("timer")) nil [8777 8981])
-            ("cancel-timer-internal" function (:arguments ("timer")) nil [8983 9405])
-            ("cancel-function-timers" function
-               (:user-visible-flag t
-                :arguments ("function"))
-                nil [9407 9945])
-            ("timer-event-last" variable nil nil [9994 10052])
-            ("timer-event-last-1" variable nil nil [10053 10121])
-            ("timer-event-last-2" variable nil nil [10122 10191])
-            ("timer-max-repeats" variable (:default-value 10) nil [10193 10570])
-            ("timer-until" function (:arguments ("timer" "time")) nil [10572 10829])
-            ("timer-event-handler" function (:arguments ("timer")) nil [10831 13779])
-            ("timeout-event-p" function (:arguments ("event")) nil [13842 13966])
-            ("declare-function" code nil nil [13970 14021])
-            ("run-at-time" function
-               (:user-visible-flag t
-                :arguments ("time" "repeat" "function" "args"))
-                nil [14023 16444])
-            ("run-with-timer" function
-               (:user-visible-flag t
-                :arguments ("secs" "repeat" "function" "args"))
-                nil [16446 16932])
-            ("add-timeout" function (:arguments ("secs" "function" "object" "repeat")) nil [16934 17313])
-            ("run-with-idle-timer" function
-               (:user-visible-flag t
-                :arguments ("secs" "repeat" "function" "args"))
-                nil [17315 18466])
-            ("with-timeout-timers" variable nil nil [18469 18572])
-            ("with-timeout" function (:arguments ("list" "body")) nil [18574 20053])
-            ("with-timeout-suspend" function nil nil [20055 20507])
-            ("with-timeout-unsuspend" function (:arguments ("timer-spec-list")) nil [20509 20841])
-            ("y-or-n-p-with-timeout" function (:arguments ("prompt" "seconds" "default-value")) nil [20843 21083])
-            ("timer-duration-words" variable
-               (:constant-flag t
-                :default-value (list (cons "microsec" 1e-006) (cons "microsecond" 1e-006) (cons "millisec" 0.001) (cons "millisecond" 0.001) (cons "sec" 1) (cons "second" 1) (cons "min" 60) (cons "minute" 60) (cons "hour" (* 60 60)) (cons "day" (* 24 60 60)) (cons "week" (* 7 24 60 60)) (cons "fortnight" (* 14 24 60 60)) (cons "month" (* 30 24 60 60)) (cons "year" (* 365.25 24 60 60))))
-                nil [21086 21602])
-            ("timer-duration" function (:arguments ("string")) nil [21604 22306])
-            ("internal-timer-start-idle" function nil nil [22308 22535])
-            ("timer" package nil nil [22538 22554]))          
-      :file "timer.el"
-      :pointmax 22579
-      :fsize 22578
-      :lastmodtime '(23525 29544 0 0)
-      :unmatched-syntax '((close-paren 1091 . 1092) (symbol 1056 . 1073) (open-paren 1055 . 1056)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eldoc" customgroup (:user-visible-flag t) nil [2006 2124])
-            ("eldoc-idle-delay" variable (:default-value 0.5) nil [2126 2427])
-            ("eldoc-print-after-edit" variable nil nil [2429 2605])
-            ("eldoc-minor-mode-string" variable (:default-value (purecopy " ElDoc")) nil [2622 2819])
-            ("eldoc-argument-case" variable (:default-value (function identity)) nil [2821 3300])
-            ("make-obsolete-variable" code nil nil [3301 3357])
-            ("eldoc-echo-area-use-multiline-p" variable (:default-value (quote truncate-sym-name-if-fit)) nil [3359 4458])
-            ("eldoc-highlight-function-argument" variable
-               (:default-value (quote ((t (:inherit bold))))
-                :type "face")
-                nil [4460 4714])
-            ("eldoc-message-commands-table-size" variable (:default-value 31) nil [4749 5126])
-            ("eldoc-message-commands" variable (:default-value (make-vector eldoc-message-commands-table-size 0)) nil [5128 5774])
-            ("eldoc-last-data" variable (:default-value (make-vector 3 nil)) nil [5795 6201])
-            ("make-obsolete-variable" code nil nil [6202 6273])
-            ("eldoc-last-message" variable nil nil [6275 6306])
-            ("eldoc-timer" variable nil nil [6308 6356])
-            ("eldoc-current-idle-delay" variable (:default-value eldoc-idle-delay) nil [6358 6527])
-            ("eldoc-message-function" variable (:default-value (function eldoc-minibuffer-message)) nil [6529 6700])
-            ("eldoc-edit-message-commands" function nil nil [6702 7172])
-            ("define-minor-mode" code nil nil [7191 8574])
-            ("define-globalized-minor-mode" code nil nil [8591 8740])
-            ("turn-on-eldoc-mode" function nil nil [8757 8953])
-            ("eldoc--supported-p" function nil nil [8955 9099])
-            ("eldoc-schedule-timer" function nil nil [9103 9876])
-            ("eldoc-mode-line-string" variable nil nil [9878 9913])
-            ("put" code nil nil [9914 9967])
-            ("eldoc-minibuffer-message" function (:arguments ("format-string" "args")) nil [9969 10966])
-            ("eldoc-message" function (:arguments ("string")) nil [10968 11626])
-            ("eldoc--message-command-p" function (:arguments ("command")) nil [11628 11824])
-            ("eldoc-pre-command-refresh-echo-area" function nil nil [12247 12777])
-            ("eldoc-display-message-p" function nil nil [12838 13292])
-            ("eldoc-display-message-no-interference-p" function nil nil [13431 13612])
-            ("eldoc-documentation-function" variable (:default-value (function ignore)) nil [13631 14600])
-            ("eldoc-print-current-symbol-info" function nil nil [14602 15134])
-            ("eldoc-docstring-format-sym-doc" function (:arguments ("prefix" "doc" "face")) nil [15299 16674])
-            ("eldoc-add-command" function (:arguments ("cmds")) nil [17009 17246])
-            ("eldoc-add-command-completions" function (:arguments ("names")) nil [17248 17462])
-            ("eldoc-remove-command" function (:arguments ("cmds")) nil [17464 17703])
-            ("eldoc-remove-command-completions" function (:arguments ("names")) nil [17705 17944])
-            ("eldoc-add-command-completions" code nil nil [17975 18458])
-            ("eldoc" package nil nil [18460 18476]))          
-      :file "eldoc.el"
-      :pointmax 18501
-      :fsize 18500
-      :lastmodtime '(23525 29541 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pcase" include nil nil [3550 3566])
-            ("define-obsolete-variable-alias" code nil nil [3714 3811])
-            ("generic-font-lock-keywords" variable nil nil [3812 3908])
-            ("make-variable-buffer-local" code nil nil [3909 3965])
-            ("generic-mode-list" variable nil nil [3982 4146])
-            ("define-generic-mode" function (:arguments ("mode" "comment-list" "keyword-list" "font-lock-list" "auto-mode-list" "function-list" "docstring")) nil [4299 6772])
-            ("generic-mode-internal" function (:arguments ("mode" "comment-list" "keyword-list" "font-lock-list" "function-list")) nil [6789 7717])
-            ("generic-mode" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [7734 8215])
-            ("generic--normalize-comments" function (:arguments ("comment-list")) nil [8244 8699])
-            ("generic-set-comment-syntax" function (:arguments ("st" "comment-list")) nil [8701 10463])
-            ("generic-set-comment-vars" function (:arguments ("comment-list")) nil [10465 10963])
-            ("generic-mode-set-comments" function (:arguments ("comment-list")) nil [10965 11284])
-            ("generic-bracket-support" function nil nil [11286 11507])
-            ("generic-make-keywords-list" function (:arguments ("keyword-list" "face" "prefix" "suffix")) nil [11524 12246])
-            ("generic" package nil nil [12248 12266]))          
-      :file "generic.el"
-      :pointmax 12293
-      :fsize 12292
-      :lastmodtime '(23525 29542 0 0)
-      :unmatched-syntax '((close-paren 3566 . 3567) (symbol 3532 . 3549) (open-paren 3531 . 3532)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1048 1065])
-            ("macroexp" include nil nil [1066 1085])
-            ("gv" include nil nil [1086 1099])
-            ("cl-unload-function" function nil nil [3595 3753])
-            ("dolist" code nil nil [3790 4503])
-            ("dolist" code nil nil [4505 9132])
-            ("cl--wrap-in-nil-block" function (:arguments ("fun" "args")) nil [9134 9216])
-            ("advice-add" code nil nil [9217 9269])
-            ("advice-add" code nil nil [9270 9323])
-            ("cl--pass-args-to-cl-declare" function (:arguments ("specs")) nil [9325 9413])
-            ("advice-add" code nil nil [9414 9472])
-            ("cl-closure-vars" variable nil nil [9632 9660])
-            ("cl--function-convert-cache" variable nil nil [9661 9700])
-            ("cl--function-convert" function (:arguments ("f")) nil [9702 11817])
-            ("lexical-let" function (:arguments ("bindings" "body")) nil [11819 13830])
-            ("lexical-let*" function (:arguments ("bindings" "body")) nil [13832 14362])
-            ("flet" function (:arguments ("bindings" "body")) nil [14441 16195])
-            ("labels" function (:arguments ("bindings" "body")) nil [16197 17141])
-            ("cl--gv-adapt" function (:arguments ("cl-gv" "do")) nil [17337 18227])
-            ("define-setf-expander" function (:arguments ("name" "arglist" "body")) nil [18229 19132])
-            ("defsetf" function (:arguments ("name" "arg1" "args")) nil [19134 20752])
-            ("make-obsolete" code nil nil [22666 22718])
-            ("declare-function" code nil nil [22720 22772])
-            ("define-modify-macro" function (:arguments ("name" "arglist" "func" "doc")) nil [22774 23596])
-            ("define-obsolete-function-alias" code nil nil [23698 23766])
-            ("define-obsolete-variable-alias" code nil nil [23767 23859])
-            ("define-obsolete-function-alias" code nil nil [23860 23936])
-            ("cl-not-hash-table" function (:arguments ("x" "y" "_z")) nil [24074 24223])
-            ("cl-builtin-gethash" variable (:default-value (symbol-function (quote gethash))) nil [24225 24279])
-            ("make-obsolete-variable" code nil nil [24280 24335])
-            ("cl-builtin-remhash" variable (:default-value (symbol-function (quote remhash))) nil [24336 24390])
-            ("make-obsolete-variable" code nil nil [24391 24446])
-            ("cl-builtin-clrhash" variable (:default-value (symbol-function (quote clrhash))) nil [24447 24501])
-            ("make-obsolete-variable" code nil nil [24502 24557])
-            ("cl-builtin-maphash" variable (:default-value (symbol-function (quote maphash))) nil [24558 24612])
-            ("make-obsolete-variable" code nil nil [24614 24669])
-            ("define-obsolete-function-alias" code nil nil [24670 24736])
-            ("define-obsolete-function-alias" code nil nil [24737 24801])
-            ("define-obsolete-function-alias" code nil nil [24802 24862])
-            ("define-obsolete-function-alias" code nil nil [24863 24923])
-            ("define-obsolete-function-alias" code nil nil [24924 24984])
-            ("define-obsolete-function-alias" code nil nil [24985 25045])
-            ("define-obsolete-function-alias" code nil nil [25046 25106])
-            ("define-obsolete-function-alias" code nil nil [25107 25183])
-            ("define-obsolete-function-alias" code nil nil [25184 25254])
-            ("define-obsolete-function-alias" code nil nil [25255 25333])
-            ("define-obsolete-function-alias" code nil nil [25335 25431])
-            ("define-obsolete-function-alias" code nil nil [25432 25508])
-            ("define-obsolete-function-alias" code nil nil [25509 25582])
-            ("define-obsolete-function-alias" code nil nil [25583 25649])
-            ("cl-maclisp-member" function (:arguments ("item" "list")) nil [25651 25806])
-            ("cl-struct-setf-expander" function (:arguments ("x" "name" "accessor" "pred-form" "pos")) nil [25857 26791])
-            ("cl" package nil nil [26793 26806])
-            ("run-hooks" code nil nil [26808 26833]))          
-      :file "cl.el"
-      :pointmax 26855
-      :fsize 26856
-      :lastmodtime '(23525 29540 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eieio-core" include nil nil [1922 1943])
-            ("cl-generic" include nil nil [1944 1965])
-            ("put" code nil nil [1967 2047])
-            ("eieio--defalias" function (:arguments ("name" "body")) nil [2100 2618])
-            ("defgeneric" function (:arguments ("method" "args" "doc-string")) nil [2635 3342])
-            ("defmethod" function (:arguments ("method" "args")) nil [3359 5452])
-            ("eieio--generic-static-symbol-specializers" function (:arguments ("tag" "_")) nil [5454 5849])
-            ("cl-generic-define-generalizer" code nil nil [5851 6180])
-            ("cl-generic-define-generalizer" code nil nil [6181 6877])
-            ("cl-defmethod" code nil nil [6879 7054])
-            ("eieio--defgeneric-init-form" function (:arguments ("method" "doc-string")) nil [7071 7443])
-            ("eieio--defmethod" function (:arguments ("method" "kind" "argclass" "code")) nil [7460 10210])
-            ("push" code nil nil [10291 10368])
-            ("generic-p" function (:arguments ("fname")) nil [10370 10428])
-            ("no-next-method" function (:arguments ("args")) nil [10430 10561])
-            ("no-applicable-method" function (:arguments ("object" "method" "args")) nil [10563 10727])
-            ("define-obsolete-function-alias" code nil nil [10729 10807])
-            ("next-method-p" function nil nil [10808 11045])
-            ("eieio-defmethod" function (:arguments ("method" "args")) nil [11062 11255])
-            ("eieio-defgeneric" function (:arguments ("method" "doc-string")) nil [11272 11529])
-            ("eieio-defclass" function (:arguments ("cname" "superclasses" "slots" "options")) nil [11546 11716])
-            ("eieio-compat" package nil nil [11796 11819]))          
-      :file "eieio-compat.el"
-      :pointmax 11851
-      :fsize 11850
-      :lastmodtime '(23525 29540 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1200 1217])
-            ("eieio-loaddefs" include nil nil [1218 1249])
-            ("declare-function" code nil nil [1344 1383])
-            ("declare-function" code nil nil [1384 1423])
-            ("declare-function" code nil nil [1424 1467])
-            ("declare-function" code nil nil [1468 1507])
-            ("declare-function" code nil nil [1508 1552])
-            ("eieio-hook" variable nil nil [1589 1684])
-            ("eieio-error-unsupported-class-tags" variable nil nil [1686 1920])
-            ("eieio-skip-typecheck" variable nil nil [1922 2181])
-            ("eieio-optimize-primary-methods-flag" variable (:default-value t) nil [2183 2299])
-            ("eieio-backward-compatibility" variable (:default-value t) nil [2301 2606])
-            ("eieio-unbound" variable
-               (:constant-flag t
-                :default-value (if (and (boundp (quote eieio-unbound)) (symbolp eieio-unbound)) eieio-unbound (make-symbol "unbound")))
-                nil [2608 2806])
-            ("eieio-default-superclass" variable nil nil [2913 2950])
-            ("progn" code nil nil [2952 4276])
-            ("eieio--object-num-slots" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [4299 4335])
-            ("eieio--object-class-tag" function (:arguments ("obj")) nil [4338 4393])
-            ("eieio--object-class" function (:arguments ("obj")) nil [4395 4463])
-            ("cl-macs" include nil nil [4515 4533])
-            ("eieio--class-object" function (:arguments ("class")) nil [4557 4768])
-            ("class-p" function (:arguments ("x")) nil [4770 4922])
-            ("eieio--class-print-name" function (:arguments ("class")) nil [4924 5059])
-            ("eieio-class-name" function (:arguments ("class")) nil [5061 5247])
-            ("define-obsolete-function-alias" code nil nil [5248 5318])
-            ("defalias" code nil nil [5320 5428])
-            ("eieio--class-option-assoc" function (:arguments ("list" "option")) nil [5430 5588])
-            ("eieio--class-option" function (:arguments ("class" "option")) nil [5590 5789])
-            ("eieio-object-p" function (:arguments ("obj")) nil [5791 5941])
-            ("define-obsolete-function-alias" code nil nil [5943 6008])
-            ("class-abstract-p" function (:arguments ("class")) nil [6010 6181])
-            ("eieio--class-method-invocation-order" function (:arguments ("class")) nil [6183 6402])
-            ("eieio-defclass-autoload-map" variable (:default-value (make-hash-table)) nil [6430 6537])
-            ("eieio-defclass-autoload" function (:arguments ("cname" "_superclasses" "filename" "doc")) nil [6612 8528])
-            ("eieio-class-un-autoload" function (:arguments ("cname")) nil [8530 8676])
-            ("cl-deftype" code nil nil [8686 8880])
-            ("eieio-make-class-predicate" function (:arguments ("class")) nil [8883 9124])
-            ("eieio-make-child-predicate" function (:arguments ("class")) nil [9126 9372])
-            ("eieio--known-slot-names" variable nil nil [9374 9410])
-            ("eieio-defclass-internal" function (:arguments ("cname" "superclasses" "slots" "options")) nil [9412 19960])
-            ("eieio-eval-default-p" function (:arguments ("val")) nil [19962 20122])
-            ("eieio--perform-slot-validation-for-default" function (:arguments ("slot" "skipnil")) nil [20124 20718])
-            ("eieio--slot-override" function (:arguments ("old" "new" "skipnil")) nil [20720 23084])
-            ("eieio--add-new-slot" function (:arguments ("newc" "slot" "init" "alloc" "defaultoverride" "skipnil")) nil [23086 25881])
-            ("eieio-copy-parents-into-subclass" function (:arguments ("newc")) nil [25883 26958])
-            ("eieio--perform-slot-validation" function (:arguments ("spec" "value")) nil [27169 27392])
-            ("eieio--validate-slot-value" function (:arguments ("class" "slot-idx" "value" "slot")) nil [27394 28098])
-            ("eieio--validate-class-slot-value" function (:arguments ("class" "slot-idx" "value" "slot")) nil [28100 28676])
-            ("eieio-barf-if-slot-unbound" function (:arguments ("value" "instance" "slotname" "fn")) nil [28678 29116])
-            ("eieio-oref" function (:arguments ("obj" "slot")) nil [29153 30676])
-            ("eieio-oref-default" function (:arguments ("obj" "slot")) nil [30679 31687])
-            ("eieio-default-eval-maybe" function (:arguments ("val")) nil [31689 32180])
-            ("eieio-oset" function (:arguments ("obj" "slot" "value")) nil [32182 32952])
-            ("eieio-oset-default" function (:arguments ("class" "slot" "value")) nil [32954 34914])
-            ("eieio--slot-name-index" function (:arguments ("class" "slot")) nil [34957 35782])
-            ("eieio--class-slot-name-index" function (:arguments ("class" "slot")) nil [35784 36371])
-            ("eieio-set-defaults" function (:arguments ("obj" "set-all")) nil [36487 37017])
-            ("eieio--initarg-to-attribute" function (:arguments ("class" "initarg")) nil [37019 37344])
-            ("eieio--c3-candidate" function (:arguments ("class" "remaining-inputs")) nil [37381 37823])
-            ("eieio--c3-merge-lists" function (:arguments ("reversed-partial-result" "remaining-inputs")) nil [37825 39159])
-            ("eieio--class/struct-parents" function (:arguments ("class")) nil [39161 39278])
-            ("eieio--class-precedence-c3" function (:arguments ("class")) nil [39280 39602])
-            ("eieio--class-precedence-dfs" function (:arguments ("class")) nil [39648 40183])
-            ("eieio--class-precedence-bfs" function (:arguments ("class")) nil [40231 40660])
-            ("eieio--class-precedence-list" function (:arguments ("class")) nil [40694 41337])
-            ("define-obsolete-function-alias" code nil nil [41338 41432])
-            ("define-error" code nil nil [41481 41534])
-            ("define-error" code nil nil [41535 41588])
-            ("define-error" code nil nil [41589 41632])
-            ("define-error" code nil nil [41633 41708])
-            ("cl-generic" include nil nil [41740 41761])
-            ("cl-generic-define-generalizer" code nil nil [41832 42277])
-            ("cl-defmethod" code nil nil [42279 42737])
-            ("eieio--generic-subclass-specializers" function (:arguments ("tag" "_")) nil [43131 43349])
-            ("cl-generic-define-generalizer" code nil nil [43351 43534])
-            ("cl-defmethod" code nil nil [43536 43763])
-            ("eieio-core" package nil nil [43765 43786]))          
-      :file "eieio-core.el"
-      :pointmax 43816
-      :fsize 43815
-      :lastmodtime '(23525 29541 0 0)
-      :unmatched-syntax '((close-paren 4335 . 4336) (symbol 4280 . 4296) (open-paren 4279 . 4280)))
-    (semanticdb-table "semanticdb-table"
-      :file "cl-generic.el"
-      :fsize 57837
-      :lastmodtime '(23525 29539 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("defalias" code nil nil [1121 1571])
-            ("function-put" code nil nil [1572 1614])
-            ("function-put" code nil nil [1615 1663])
-            ("macro-declaration-function" variable (:default-value (function macro-declaration-function)) nil [1784 2116])
-            ("defalias" code nil nil [2118 3260])
-            ("defun-declarations-alist" variable (:default-value (list (list (quote advertised-calling-convention) (function (lambda (f _args arglist when) (list (quote set-advertised-calling-convention) (list (quote quote) f) (list (quote quote) arglist) (list (quote quote) when))))) (list (quote obsolete) (function (lambda (f _args new-name when) (list (quote make-obsolete) (list (quote quote) f) (list (quote quote) new-name) (list (quote quote) when))))) (list (quote interactive-only) (function (lambda (f _args instead) (list (quote function-put) (list (quote quote) f) (quote (quote interactive-only)) (list (quote quote) instead))))) (list (quote pure) (function (lambda (f _args val) (list (quote function-put) (list (quote quote) f) (quote (quote pure)) (list (quote quote) val)))) "If non-nil, the compiler can replace calls with their return value.
-This may shift errors from run-time to compile-time.") (list (quote side-effect-free) (function (lambda (f _args val) (list (quote function-put) (list (quote quote) f) (quote (quote side-effect-free)) (list (quote quote) val)))) "If non-nil, calls can be ignored if their value is unused.
-If `error-free', drop calls even if `byte-compile-delete-errors' is nil.") (list (quote compiler-macro) (function (lambda (f args compiler-function) (if (not (eq (car-safe compiler-function) (quote lambda))) (\` (eval-and-compile (function-put (quote (\, f)) (quote compiler-macro) (function (\, compiler-function))))) (let ((cfname (intern (concat (symbol-name f) "--anon-cmacro")))) (\` (progn (eval-and-compile (function-put (quote (\, f)) (quote compiler-macro) (function (\, cfname)))) :autoload-end (eval-and-compile (defun (\, cfname) ((\,@ (cadr compiler-function)) (\,@ args)) (\,@ (cddr compiler-function))))))))))) (list (quote doc-string) (function (lambda (f _args pos) (list (quote function-put) (list (quote quote) f) (quote (quote doc-string-elt)) (list (quote quote) pos))))) (list (quote indent) (function (lambda (f _args val) (list (quote function-put) (list (quote quote) f) (quote (quote lisp-indent-function)) (list (quote quote) val))))))) nil [3516 6460])
-            ("macro-declarations-alist" variable (:default-value (cons (list (quote debug) (function (lambda (name _args spec) (list (quote progn) :autoload-end (list (quote put) (list (quote quote) name) (quote (quote edebug-form-spec)) (list (quote quote) spec)))))) (cons (list (quote no-font-lock-keyword) (function (lambda (name _args val) (list (quote function-put) (list (quote quote) name) (quote (quote no-font-lock-keyword)) (list (quote quote) val))))) defun-declarations-alist))) nil [6462 7237])
-            ("defalias" code nil nil [7239 9492])
-            ("defun" function (:arguments ("name" "arglist" "docstring" "body")) nil [9541 12124])
-            ("defalias" code nil nil [12206 12392])
-            ("defsubst" function (:arguments ("name" "arglist" "body")) nil [13403 13875])
-            ("advertised-signature-table" variable (:default-value (make-hash-table :test (quote eq) :weakness (quote key))) nil [13877 13955])
-            ("set-advertised-calling-convention" function (:arguments ("function" "signature" "_when")) nil [13957 14327])
-            ("make-obsolete" function (:arguments ("obsolete-name" "current-name" "when")) nil [14329 15222])
-            ("define-obsolete-function-alias" function (:arguments ("obsolete-name" "current-name" "when" "docstring")) nil [15224 16191])
-            ("make-obsolete-variable" function (:arguments ("obsolete-name" "current-name" "when" "access-type")) nil [16193 17024])
-            ("define-obsolete-variable-alias" function (:arguments ("obsolete-name" "current-name" "when" "docstring")) nil [17027 18868])
-            ("define-obsolete-face-alias" function (:arguments ("obsolete-face" "current-face" "when")) nil [19198 19634])
-            ("dont-compile" function (:arguments ("body")) nil [19636 19945])
-            ("eval-when-compile" function (:arguments ("body")) nil [20188 20681])
-            ("eval-and-compile" function (:arguments ("body")) nil [20683 21269])
-            ("with-no-warnings" function (:arguments ("body")) nil [21271 21479])
-            ("make-obsolete-variable" code nil nil [22774 22883])
-            ("make-obsolete" code nil nil [22884 22975]))          
-      :file "byte-run.el"
-      :pointmax 23003
-      :fsize 23002
-      :lastmodtime '(23525 29538 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eieio-version" variable (:default-value "1.4") nil [1798 1856])
-            ("eieio-version" function (:user-visible-flag t) nil [1858 1966])
-            ("eieio-core" include nil nil [1968 1989])
-            ("defclass" function (:arguments ("name" "superclasses" "slots" "options-and-doc")) nil [2021 11671])
-            ("oref" function (:arguments ("obj" "slot")) nil [11709 11967])
-            ("defalias" code nil nil [11969 12003])
-            ("defalias" code nil nil [12004 12042])
-            ("make-obsolete" code nil nil [12043 12121])
-            ("oref-default" function (:arguments ("obj" "slot")) nil [12123 12463])
-            ("with-slots" function (:arguments ("spec-list" "object" "body")) nil [12490 13709])
-            ("eieio-pcase-slot-index-table" function (:arguments ("obj")) nil [13822 13995])
-            ("eieio-pcase-slot-index-from-index-table" function (:arguments ("index-table" "slot")) nil [13997 14247])
-            ("pcase-defmacro" code nil nil [14249 15538])
-            ("define-obsolete-function-alias" code nil nil [15647 15728])
-            ("cl-defgeneric" code nil nil [15730 15859])
-            ("eieio-object-name" function (:arguments ("obj" "extra")) nil [15861 16163])
-            ("define-obsolete-function-alias" code nil nil [16164 16236])
-            ("eieio--object-names" variable
-               (:constant-flag t
-                :default-value (make-hash-table :test (function eq) :weakness (quote key)))
-                nil [16238 16312])
-            ("cl-defmethod" code nil nil [16564 16695])
-            ("define-obsolete-function-alias" code nil nil [16696 16784])
-            ("cl-defmethod" code nil nil [16786 17000])
-            ("define-obsolete-function-alias" code nil nil [17001 17096])
-            ("eieio-object-class" function (:arguments ("obj")) nil [17098 17327])
-            ("define-obsolete-function-alias" code nil nil [17328 17402])
-            ("define-obsolete-function-alias" code nil nil [17424 17494])
-            ("eieio-object-class-name" function (:arguments ("obj")) nil [17496 17667])
-            ("define-obsolete-function-alias" code nil nil [17668 17753])
-            ("eieio-class-parents" function (:arguments ("class")) nil [17755 17980])
-            ("define-obsolete-function-alias" code nil nil [17982 18058])
-            ("eieio-class-children" function (:arguments ("class")) nil [18060 18283])
-            ("define-obsolete-function-alias" code nil nil [18284 18364])
-            ("define-obsolete-function-alias" code nil nil [18394 18484])
-            ("define-obsolete-function-alias" code nil nil [18485 18574])
-            ("eieio-class-parent" function (:arguments ("class")) nil [18576 18716])
-            ("define-obsolete-function-alias" code nil nil [18717 18790])
-            ("same-class-p" function (:arguments ("obj" "class")) nil [18792 19022])
-            ("object-of-class-p" function (:arguments ("obj" "class")) nil [19024 19263])
-            ("defalias" code nil nil [19291 19336])
-            ("child-of-class-p" function (:arguments ("child" "class")) nil [19338 19950])
-            ("eieio-slot-descriptor-name" function (:arguments ("slot")) nil [19952 20027])
-            ("eieio-class-slots" function (:arguments ("class")) nil [20029 20340])
-            ("object-slots" function (:arguments ("obj")) nil [20342 20586])
-            ("eieio--class-slot-initarg" function (:arguments ("class" "slot")) nil [20588 20893])
-            ("oset" function (:arguments ("obj" "slot" "value")) nil [20920 21209])
-            ("oset-default" function (:arguments ("class" "slot" "value")) nil [21211 21562])
-            ("slot-boundp" function (:arguments ("object" "slot")) nil [21607 22192])
-            ("slot-makeunbound" function (:arguments ("object" "slot")) nil [22194 22307])
-            ("slot-exists-p" function (:arguments ("object-or-class" "slot")) nil [22309 22993])
-            ("find-class" function (:arguments ("symbol" "errorp")) nil [22995 23353])
-            ("object-assoc" function (:arguments ("key" "slot" "list")) nil [23414 23952])
-            ("object-assoc-list" function (:arguments ("slot" "list")) nil [23954 24412])
-            ("object-assoc-list-safe" function (:arguments ("slot" "list")) nil [24414 24953])
-            ("object-add-to-list" function (:arguments ("object" "slot" "item" "append")) nil [24955 25760])
-            ("object-remove-from-list" function (:arguments ("object" "slot" "item")) nil [25762 26112])
-            ("gv-define-simple-setter" code nil nil [26392 26439])
-            ("eieio-default-superclass" type (:type "class") nil [26824 27091])
-            ("setq" code nil nil [27093 27167])
-            ("define-obsolete-function-alias" code nil nil [27169 27252])
-            ("cl-defgeneric" code nil nil [27254 27549])
-            ("define-obsolete-function-alias" code nil nil [27551 27619])
-            ("cl-defmethod" code nil nil [27621 28613])
-            ("cl-defgeneric" code nil nil [28661 28812])
-            ("cl-defmethod" code nil nil [28814 29301])
-            ("cl-defgeneric" code nil nil [29349 29457])
-            ("cl-defmethod" code nil nil [29459 31015])
-            ("cl-defgeneric" code nil nil [31017 31572])
-            ("cl-defgeneric" code nil nil [31574 31706])
-            ("cl-defmethod" code nil nil [31708 32514])
-            ("cl-defgeneric" code nil nil [32516 32779])
-            ("cl-defmethod" code nil nil [32781 33156])
-            ("cl-defgeneric" code nil nil [33158 33334])
-            ("cl-defgeneric" code nil nil [33336 33661])
-            ("cl-defmethod" code nil nil [33663 34281])
-            ("cl-defmethod" code nil nil [34284 34476])
-            ("eieio-print-depth" variable nil nil [34478 34570])
-            ("cl-defgeneric" code nil nil [34572 34741])
-            ("cl-defmethod" code nil nil [34743 37068])
-            ("eieio-override-prin1" function (:arguments ("thing")) nil [37070 37836])
-            ("eieio-list-prin1" function (:arguments ("list")) nil [37838 38355])
-            ("eieio-change-class" function (:arguments ("_obj" "_class")) nil [38400 38613])
-            ("define-obsolete-function-alias" code nil nil [38614 38687])
-            ("add-hook" code nil nil [38907 38979])
-            ("eieio" package nil nil [38981 38997]))          
-      :file "eieio.el"
-      :pointmax 39019
-      :fsize 39018
-      :lastmodtime '(23525 29541 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1327 1344])
-            ("internal--thread-argument" function (:arguments ("first?" "forms")) nil [1348 1830])
-            ("thread-first" function (:arguments ("forms")) nil [1832 2265])
-            ("thread-last" function (:arguments ("forms")) nil [2267 2656])
-            ("internal--listify" function (:arguments ("elt")) nil [2658 2916])
-            ("internal--check-binding" function (:arguments ("binding")) nil [2918 3133])
-            ("internal--build-binding-value-form" function (:arguments ("binding" "prev-var")) nil [3135 3338])
-            ("internal--build-binding" function (:arguments ("binding" "prev-var")) nil [3340 3573])
-            ("internal--build-bindings" function (:arguments ("bindings")) nil [3575 3897])
-            ("if-let*" function (:arguments ("varlist" "then" "else")) nil [3899 4392])
-            ("when-let*" function (:arguments ("varlist" "body")) nil [4394 4687])
-            ("and-let*" function (:arguments ("varlist" "body")) nil [4689 5231])
-            ("if-let" function (:arguments ("spec" "then" "else")) nil [5233 6395])
-            ("when-let" function (:arguments ("spec" "body")) nil [6397 6786])
-            ("hash-table-empty-p" function (:arguments ("hash-table")) nil [6788 6926])
-            ("hash-table-keys" function (:arguments ("hash-table")) nil [6928 7070])
-            ("hash-table-values" function (:arguments ("hash-table")) nil [7072 7220])
-            ("string-empty-p" function (:arguments ("string")) nil [7222 7313])
-            ("string-join" function (:arguments ("strings" "separator")) nil [7315 7447])
-            ("define-obsolete-function-alias" code nil nil [7449 7513])
-            ("string-trim-left" function (:arguments ("string" "regexp")) nil [7515 7785])
-            ("string-trim-right" function (:arguments ("string" "regexp")) nil [7787 8060])
-            ("string-trim" function (:arguments ("string" "trim-left" "trim-right")) nil [8062 8332])
-            ("string-blank-p" function (:arguments ("string")) nil [8334 8474])
-            ("string-remove-prefix" function (:arguments ("prefix" "string")) nil [8476 8656])
-            ("string-remove-suffix" function (:arguments ("suffix" "string")) nil [8658 8860])
-            ("subr-x" package nil nil [8862 8879]))          
-      :file "subr-x.el"
-      :pointmax 8905
-      :fsize 8904
-      :lastmodtime '(23525 29544 0 0)
-      :unmatched-syntax '((close-paren 1344 . 1345) (symbol 1309 . 1326) (open-paren 1308 . 1309)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("lisp-mode" include nil nil [1212 1232])
-            ("lisp-mnt" include nil nil [1269 1288])
-            ("cl-lib" include nil nil [1308 1325])
-            ("generated-autoload-file" variable nil nil [1328 1850])
-            ("put" code nil nil [1866 1926])
-            ("generated-autoload-load-name" variable nil nil [1928 2242])
-            ("put" code nil nil [2258 2323])
-            ("generate-autoload-cookie" variable (:default-value ";;;###autoload") nil [2466 2969])
-            ("autoload-excludes" variable nil nil [2971 3072])
-            ("generate-autoload-section-header" variable
-               (:constant-flag t
-                :default-value "
-;;;### ")
-                nil [3074 3209])
-            ("generate-autoload-section-trailer" variable
-               (:constant-flag t
-                :default-value "
-;;;***
-")
-                nil [3211 3343])
-            ("generate-autoload-section-continuation" variable
-               (:constant-flag t
-                :default-value ";;;;;; ")
-                nil [3345 3471])
-            ("autoload--non-timestamp" variable
-               (:constant-flag t
-                :default-value (quote (0 0 0 0)))
-                nil [3670 3770])
-            ("autoload-timestamps" variable nil nil [3772 4730])
-            ("autoload-modified-buffers" variable nil nil [4732 4766])
-            ("make-autoload" function (:arguments ("form" "file" "expansion")) nil [4798 11261])
-            ("autoload-find-generated-file" function nil nil [11471 12062])
-            ("autoload-generated-file" function nil nil [12064 12635])
-            ("autoload-read-section-header" function nil nil [12638 13344])
-            ("autoload-print-form-outbuf" variable nil nil [13346 13444])
-            ("autoload-print-form" function (:arguments ("form")) nil [13446 15134])
-            ("autoload-rubric" function (:arguments ("file" "type" "feature")) nil [15136 16432])
-            ("autoload-ensure-writable" variable nil nil [16434 16550])
-            ("put" code nil nil [16654 16709])
-            ("autoload-ensure-file-writeable" function (:arguments ("file")) nil [16711 17242])
-            ("autoload-insert-section-header" function (:arguments ("outbuf" "autoloads" "load-name" "file" "time")) nil [17244 18315])
-            ("autoload-find-file" function (:arguments ("file")) nil [18317 18925])
-            ("no-update-autoloads" variable nil nil [18927 19035])
-            ("autoload-file-load-name" function (:arguments ("file")) nil [19037 20363])
-            ("generate-file-autoloads" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [20365 20873])
-            ("autoload-compute-prefixes" variable (:default-value t) nil [20875 21194])
-            ("put" code nil nil [21195 21244])
-            ("autoload-def-prefixes-max-entries" variable
-               (:constant-flag t
-                :default-value 5)
-                nil [21246 21600])
-            ("autoload-def-prefixes-max-length" variable
-               (:constant-flag t
-                :default-value 12)
-                nil [21602 21751])
-            ("radix-tree" include nil nil [21753 21774])
-            ("autoload--make-defs-autoload" function (:arguments ("defs" "file")) nil [21776 26249])
-            ("autoload--setup-output" function (:arguments ("otherbuf" "outbuf" "absfile" "load-name")) nil [26251 26909])
-            ("autoload--print-cookie-text" function (:arguments ("output-start" "load-name" "file")) nil [26911 28199])
-            ("autoload-builtin-package-versions" variable nil nil [28201 28247])
-            ("autoload-generate-file-autoloads" function (:arguments ("file" "outbuf" "outfile")) nil [28600 40594])
-            ("autoload--save-buffer" function nil nil [40674 41507])
-            ("autoload-save-buffers" function nil nil [41509 41665])
-            ("update-file-autoloads" function
-               (:user-visible-flag t
-                :arguments ("file" "save-after" "outfile"))
-                nil [41766 42996])
-            ("autoload-find-destination" function (:arguments ("file" "load-name")) nil [42998 47206])
-            ("autoload-remove-section" function (:arguments ("begin")) nil [47208 47352])
-            ("update-directory-autoloads" function
-               (:user-visible-flag t
-                :arguments ("dirs"))
-                nil [47369 53005])
-            ("define-obsolete-function-alias" code nil nil [53007 53113])
-            ("batch-update-autoloads" function nil nil [53130 54182])
-            ("autoload" package nil nil [54184 54203]))          
-      :file "autoload.el"
-      :pointmax 54231
-      :fsize 54230
-      :lastmodtime '(23525 29538 0 0)
-      :unmatched-syntax '((close-paren 1325 . 1326) (symbol 1290 . 1307) (open-paren 1289 . 1290)))
-    (semanticdb-table "semanticdb-table"
-      :file "lisp-mode.el"
-      :fsize 58398
-      :lastmodtime '(23525 29542 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "lisp-mnt.el"
-      :fsize 22292
-      :lastmodtime '(23525 29542 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "radix-tree.el"
-      :fsize 9319
-      :lastmodtime '(23525 29543 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "seq.el"
-      :fsize 19314
-      :lastmodtime '(23525 29544 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("backquote" include nil nil [5172 5192])
-            ("macroexp" include nil nil [5193 5212])
-            ("cconv" include nil nil [5213 5229])
-            ("cl-lib" include nil nil [5230 5247])
-            ("or" code nil nil [5441 5489])
-            ("or" code nil nil [5491 5584])
-            ("bytecomp" customgroup (:user-visible-flag t) nil [5717 5785])
-            ("emacs-lisp-file-regexp" variable (:default-value "\\.el\\'") nil [5787 6129])
-            ("byte-compile-dest-file-function" variable nil nil [6131 6624])
-            ("byte-compiler-base-file-name" function (:arguments ("filename")) nil [6777 7004])
-            ("if" code nil nil [7081 8047])
-            ("byte-compile-inline-expand" function (:prototype-flag t) nil [8106 8155])
-            ("byte-optimize-form" function (:prototype-flag t) nil [8216 8257])
-            ("byte-optimize-lapcode" function (:prototype-flag t) nil [8317 8361])
-            ("byte-compile-unfold-lambda" function (:prototype-flag t) nil [8362 8411])
-            ("byte-decompile-bytecode" function (:prototype-flag t) nil [8635 8681])
-            ("byte-compile-verbose" variable (:default-value (and (not noninteractive) (> baud-rate search-slow-speed))) nil [8683 8883])
-            ("byte-optimize" variable (:default-value t) nil [8885 9284])
-            ("byte-compile-delete-errors" variable nil nil [9286 9509])
-            ("byte-compile-cond-use-jump-table" variable (:default-value t) nil [9511 9691])
-            ("byte-compile-dynamic" variable nil nil [9693 10191])
-            ("byte-compile-disable-print-circle" variable nil nil [10266 10385])
-            ("make-obsolete-variable" code nil nil [10386 10456])
-            ("byte-compile-dynamic-docstrings" variable (:default-value t) nil [10544 11259])
-            ("byte-compile-log-buffer" variable
-               (:constant-flag t
-                :default-value "*Compile-Log*")
-                nil [11345 11439])
-            ("byte-optimize-log" variable nil nil [11441 11891])
-            ("byte-compile-error-on-warn" variable nil nil [11893 12033])
-            ("byte-compile-warning-types" variable
-               (:constant-flag t
-                :default-value (quote (redefine callargs free-vars unresolved obsolete noruntime cl-functions interactive-only make-local mapcar constants suspicious lexical)))
-                nil [12397 12656])
-            ("byte-compile-warnings" variable (:default-value t) nil [12657 14213])
-            ("put" code nil nil [14230 14392])
-            ("byte-compile-warning-enabled-p" function (:arguments ("warning")) nil [14394 14705])
-            ("byte-compile-disable-warning" function (:arguments ("warning")) nil [14722 15465])
-            ("byte-compile-enable-warning" function (:arguments ("warning")) nil [15482 16183])
-            ("byte-compile-interactive-only-functions" variable nil nil [16185 16301])
-            ("make-obsolete-variable" code nil nil [16302 16434])
-            ("byte-compile-not-obsolete-vars" variable nil nil [16436 16541])
-            ("byte-compile-global-not-obsolete-vars" variable nil nil [16542 16661])
-            ("byte-compile-not-obsolete-funcs" variable nil nil [16663 16769])
-            ("byte-compile-generate-call-tree" variable nil nil [16771 17573])
-            ("byte-compile-call-tree" variable nil nil [17575 17854])
-            ("byte-compile-call-tree-sort" variable (:default-value (quote name)) nil [17856 18146])
-            ("byte-compile-debug" variable nil nil [18148 18260])
-            ("byte-compile-jump-tables" variable nil nil [18261 18364])
-            ("byte-compile-constants" variable nil nil [18365 18471])
-            ("byte-compile-variables" variable nil nil [18472 18578])
-            ("byte-compile-bound-variables" variable nil nil [18579 18729])
-            ("byte-compile-lexical-variables" variable nil nil [18730 18897])
-            ("byte-compile-const-variables" variable nil nil [18898 19016])
-            ("byte-compile-free-references" variable nil nil [19017 19054])
-            ("byte-compile-free-assignments" variable nil nil [19055 19093])
-            ("byte-compiler-error-flag" variable nil nil [19095 19128])
-            ("byte-compile-recurse-toplevel" function (:arguments ("form" "non-toplevel-case")) nil [19130 19918])
-            ("byte-compile-initial-macro-environment" variable
-               (:constant-flag t
-                :default-value (\` ((declare-function . byte-compile-macroexpand-declare-function) (eval-when-compile \, (lambda (&rest body) (let ((result nil)) (byte-compile-recurse-toplevel (macroexp-progn body) (lambda (form) (let ((byte-compile-unresolved-functions byte-compile-unresolved-functions) (byte-compile-new-defuns byte-compile-new-defuns)) (setf result (byte-compile-eval (byte-compile-top-level (byte-compile-preprocess form))))))) (list (quote quote) result)))) (eval-and-compile \, (lambda (&rest body) (byte-compile-recurse-toplevel (macroexp-progn body) (lambda (form) (let ((expanded (macroexpand-all form macroexpand-all-environment))) (eval expanded lexical-binding) expanded))))))))
-                nil [19920 22311])
-            ("byte-compile-macro-environment" variable (:default-value byte-compile-initial-macro-environment) nil [22313 22564])
-            ("byte-compile-function-environment" variable nil nil [22566 23017])
-            ("byte-compile-unresolved-functions" variable nil nil [23019 23304])
-            ("byte-compile-noruntime-functions" variable nil nil [23306 23581])
-            ("byte-compile-new-defuns" variable nil nil [23583 23823])
-            ("byte-compile--lexical-environment" variable nil nil [23858 23941])
-            ("byte-compile-tag-number" variable nil nil [23943 23977])
-            ("byte-compile-output" variable nil nil [23978 24100])
-            ("byte-compile-depth" variable nil nil [24101 24166])
-            ("byte-compile-maxdepth" variable nil nil [24167 24235])
-            ("byte-code-vector" variable nil nil [24305 24403])
-            ("byte-stack+-info" variable nil nil [24405 24493])
-            ("byte-defop" function (:arguments ("opcode" "stack-adjust" "opname" "docstring")) nil [24495 25522])
-            ("byte-extrude-byte-code-vectors" function nil nil [25524 25856])
-            ("byte-defop" code nil nil [25949 26005])
-            ("byte-defop" code nil nil [26006 26062])
-            ("byte-defop" code nil nil [26063 26119])
-            ("byte-defop" code nil nil [26120 26177])
-            ("byte-defop" code nil nil [26178 26232])
-            ("byte-defop" code nil nil [26233 26297])
-            ("byte-defop" code nil nil [26479 26514])
-            ("byte-defop" code nil nil [26515 26549])
-            ("byte-defop" code nil nil [26550 26592])
-            ("byte-defop" code nil nil [26612 26640])
-            ("byte-defop" code nil nil [26641 26673])
-            ("byte-defop" code nil nil [26674 26704])
-            ("byte-defop" code nil nil [26705 26737])
-            ("byte-defop" code nil nil [26738 26768])
-            ("byte-defop" code nil nil [26769 26796])
-            ("byte-defop" code nil nil [26797 26826])
-            ("byte-defop" code nil nil [26827 26855])
-            ("byte-defop" code nil nil [26856 26884])
-            ("byte-defop" code nil nil [26885 26913])
-            ("byte-defop" code nil nil [26914 26943])
-            ("byte-defop" code nil nil [26944 26974])
-            ("byte-defop" code nil nil [26975 27005])
-            ("byte-defop" code nil nil [27006 27036])
-            ("byte-defop" code nil nil [27037 27067])
-            ("byte-defop" code nil nil [27068 27099])
-            ("byte-defop" code nil nil [27100 27129])
-            ("byte-defop" code nil nil [27130 27159])
-            ("byte-defop" code nil nil [27160 27197])
-            ("byte-defop" code nil nil [27198 27238])
-            ("byte-defop" code nil nil [27264 27292])
-            ("byte-defop" code nil nil [27293 27322])
-            ("byte-defop" code nil nil [27348 27376])
-            ("byte-defop" code nil nil [27377 27411])
-            ("byte-defop" code nil nil [27412 27444])
-            ("byte-defop" code nil nil [27445 27477])
-            ("byte-defop" code nil nil [27478 27510])
-            ("byte-defop" code nil nil [27511 27540])
-            ("byte-defop" code nil nil [27541 27570])
-            ("byte-defop" code nil nil [27571 27603])
-            ("byte-defop" code nil nil [27604 27632])
-            ("byte-defop" code nil nil [27633 27661])
-            ("byte-defop" code nil nil [27662 27690])
-            ("byte-defop" code nil nil [27691 27719])
-            ("byte-defop" code nil nil [27720 27749])
-            ("byte-defop" code nil nil [27750 27781])
-            ("byte-defop" code nil nil [27782 27811])
-            ("byte-defop" code nil nil [27812 27840])
-            ("byte-defop" code nil nil [27841 27869])
-            ("byte-defop" code nil nil [27870 27899])
-            ("byte-defop" code nil nil [27911 27941])
-            ("byte-defop" code nil nil [27942 27976])
-            ("byte-defop" code nil nil [27977 28008])
-            ("byte-defop" code nil nil [28009 28043])
-            ("byte-defop" code nil nil [28044 28078])
-            ("byte-defop" code nil nil [28079 28114])
-            ("byte-defop" code nil nil [28115 28154])
-            ("byte-defop" code nil nil [28155 28194])
-            ("byte-defop" code nil nil [28195 28234])
-            ("byte-defop" code nil nil [28235 28269])
-            ("byte-defop" code nil nil [28270 28315])
-            ("byte-defop" code nil nil [28348 28377])
-            ("byte-defop" code nil nil [28378 28407])
-            ("byte-defop" code nil nil [28408 28437])
-            ("byte-defop" code nil nil [28438 28467])
-            ("byte-defop" code nil nil [28468 28507])
-            ("byte-defop" code nil nil [28508 28543])
-            ("byte-defop" code nil nil [28544 28639])
-            ("byte-defop" code nil nil [28640 28682])
-            ("byte-defop" code nil nil [28683 28730])
-            ("byte-defop" code nil nil [28760 28797])
-            ("byte-defop" code nil nil [28798 28835])
-            ("byte-defop" code nil nil [28836 28879])
-            ("byte-defop" code nil nil [28880 28924])
-            ("byte-defop" code nil nil [28925 28962])
-            ("byte-defop" code nil nil [28963 28999])
-            ("byte-defop" code nil nil [29000 29041])
-            ("byte-defop" code nil nil [29042 29080])
-            ("byte-defop" code nil nil [29081 29122])
-            ("byte-defop" code nil nil [29123 29153])
-            ("byte-defop" code nil nil [29154 29190])
-            ("byte-defop" code nil nil [29260 29368])
-            ("byte-defop" code nil nil [29369 29423])
-            ("byte-defop" code nil nil [29424 29496])
-            ("byte-defop" code nil nil [29497 29577])
-            ("byte-defop" code nil nil [29578 29704])
-            ("byte-defop" code nil nil [29705 29839])
-            ("byte-defop" code nil nil [29841 29920])
-            ("byte-defop" code nil nil [29921 29987])
-            ("byte-defop" code nil nil [29988 30056])
-            ("byte-defop" code nil nil [30058 30156])
-            ("byte-defop" code nil nil [30157 30272])
-            ("byte-defop" code nil nil [30273 30387])
-            ("byte-defop" code nil nil [30388 30490])
-            ("byte-defop" code nil nil [30491 30608])
-            ("byte-defop" code nil nil [30727 30766])
-            ("byte-defop" code nil nil [30768 30826])
-            ("byte-defop" code nil nil [30827 30884])
-            ("byte-defop" code nil nil [31033 31068])
-            ("byte-defop" code nil nil [31098 31133])
-            ("byte-defop" code nil nil [31134 31174])
-            ("byte-defop" code nil nil [31175 31209])
-            ("byte-defop" code nil nil [31210 31241])
-            ("byte-defop" code nil nil [31242 31275])
-            ("byte-defop" code nil nil [31276 31308])
-            ("byte-defop" code nil nil [31309 31341])
-            ("byte-defop" code nil nil [31342 31372])
-            ("byte-defop" code nil nil [31373 31404])
-            ("byte-defop" code nil nil [31405 31433])
-            ("byte-defop" code nil nil [31434 31465])
-            ("byte-defop" code nil nil [31466 31495])
-            ("byte-defop" code nil nil [31496 31529])
-            ("byte-defop" code nil nil [31530 31561])
-            ("byte-defop" code nil nil [31562 31593])
-            ("byte-defop" code nil nil [31594 31627])
-            ("byte-defop" code nil nil [31628 31661])
-            ("byte-defop" code nil nil [31662 31692])
-            ("byte-defop" code nil nil [31693 31721])
-            ("byte-defop" code nil nil [31722 31750])
-            ("byte-defop" code nil nil [31751 31783])
-            ("byte-defop" code nil nil [31784 31817])
-            ("byte-defop" code nil nil [31838 31869])
-            ("byte-defop" code nil nil [31870 31903])
-            ("byte-defop" code nil nil [31904 31937])
-            ("byte-defop" code nil nil [31939 31973])
-            ("byte-defop" code nil nil [32012 32047])
-            ("byte-defop" code nil nil [32328 32362])
-            ("byte-discardN-preserve-tos" variable
-               (:constant-flag t
-                :default-value byte-discardN)
-                nil [32520 32571])
-            ("byte-defop" code nil nil [32573 32707])
-            ("byte-defop" code nil nil [32729 32792])
-            ("byte-constant-limit" variable
-               (:constant-flag t
-                :default-value 64)
-                nil [32841 32940])
-            ("byte-goto-ops" variable
-               (:constant-flag t
-                :default-value (quote (byte-goto byte-goto-if-nil byte-goto-if-not-nil byte-goto-if-nil-else-pop byte-goto-if-not-nil-else-pop byte-pushcatch byte-pushconditioncase)))
-                nil [32942 33192])
-            ("byte-goto-always-pop-ops" variable
-               (:constant-flag t
-                :default-value (quote (byte-goto-if-nil byte-goto-if-not-nil)))
-                nil [33194 33270])
-            ("byte-extrude-byte-code-vectors" code nil nil [33272 33304])
-            ("byte-compile-push-bytecodes" function (:arguments ("args")) nil [34883 35551])
-            ("byte-compile-push-bytecode-const2" function (:arguments ("opcode" "const2" "bytes" "pc")) nil [35553 35834])
-            ("byte-compile-lapcode" function (:arguments ("lap")) nil [35836 40865])
-            ("byte-compile-cl-file-p" function (:arguments ("file")) nil [40898 41072])
-            ("byte-compile-eval" function (:arguments ("form")) nil [41074 43031])
-            ("byte-compile-eval-before-compile" function (:arguments ("form")) nil [43033 43589])
-            ("byte-compile-current-form" variable nil nil [43620 43658])
-            ("byte-compile-dest-file" variable nil nil [43659 43694])
-            ("byte-compile-current-file" variable nil nil [43695 43733])
-            ("byte-compile-current-group" variable nil nil [43734 43773])
-            ("byte-compile-current-buffer" variable nil nil [43774 43814])
-            ("byte-compile-log" function (:arguments ("format-string" "args")) nil [43855 44204])
-            ("byte-compile-log-1" function (:arguments ("string")) nil [44245 44542])
-            ("byte-compile-read-position" variable nil nil [44544 44637])
-            ("byte-compile-last-position" variable nil nil [44638 44725])
-            ("byte-compile-delete-first" function (:arguments ("elt" "list")) nil [44755 45020])
-            ("byte-compile-set-symbol-position" function (:arguments ("sym" "allow-previous")) nil [46080 46746])
-            ("byte-compile-last-warned-form" variable nil nil [46748 46790])
-            ("byte-compile-last-logged-file" variable nil nil [46791 46833])
-            ("byte-compile-root-dir" variable nil nil [46834 46942])
-            ("byte-compile-abbreviate-file" function (:arguments ("file" "dir")) nil [47068 47254])
-            ("byte-compile-warning-prefix" function (:arguments ("level" "entry")) nil [47365 49066])
-            ("byte-compile-warning-series" function (:arguments ("_ignore")) nil [49220 49277])
-            ("declare-function" code nil nil [49327 49384])
-            ("byte-compile-log-file" function nil nil [49564 51029])
-            ("byte-compile-log-warning-function" variable (:default-value (function byte-compile--log-warning-for-byte-compile)) nil [51031 51484])
-            ("byte-compile-log-warning" function (:arguments ("string" "fill" "level")) nil [51486 51799])
-            ("byte-compile--log-warning-for-byte-compile" function (:arguments ("string" "_position" "fill" "level")) nil [51801 52598])
-            ("byte-compile-warn" function (:arguments ("format" "args")) nil [52600 52932])
-            ("byte-compile-warn-obsolete" function (:arguments ("symbol")) nil [52934 53430])
-            ("byte-compile-report-error" function (:arguments ("error-info" "fill")) nil [53432 53870])
-            ("byte-compile-fdefinition" function (:arguments ("name" "macro-p")) nil [53903 55283])
-            ("byte-compile-arglist-signature" function (:arguments ("arglist")) nil [55285 55913])
-            ("byte-compile--function-signature" function (:arguments ("f")) nil [55915 56495])
-            ("byte-compile-arglist-signatures-congruent-p" function (:arguments ("old" "new")) nil [56497 56795])
-            ("byte-compile-arglist-signature-string" function (:arguments ("signature")) nil [56797 57046])
-            ("byte-compile-function-warn" function (:arguments ("f" "nargs" "def")) nil [57048 57905])
-            ("byte-compile-callargs-warn" function (:arguments ("form")) nil [57985 58811])
-            ("byte-compile-format-warn" function (:arguments ("form")) nil [58813 59927])
-            ("dolist" code nil nil [59929 60007])
-            ("byte-compile-nogroup-warn" function (:arguments ("form")) nil [60075 61135])
-            ("byte-compile-arglist-warn" function (:arguments ("name" "arglist" "macrop")) nil [61230 63601])
-            ("byte-compile-cl-functions" variable nil nil [63603 63678])
-            ("byte-compile-find-cl-functions" function nil nil [63801 64143])
-            ("byte-compile-cl-warn" function (:arguments ("form")) nil [64145 65106])
-            ("byte-compile-print-syms" function (:arguments ("str1" "strn" "syms")) nil [65108 65744])
-            ("byte-compile-warn-about-unresolved-functions" function nil nil [65931 66880])
-            ("byte-compile--outbuffer" variable nil nil [66975 67007])
-            ("byte-compile-close-variables" function (:arguments ("body")) nil [67009 68310])
-            ("displaying-byte-compile-warnings" function (:arguments ("body")) nil [68312 69711])
-            ("byte-force-recompile" function
-               (:user-visible-flag t
-                :arguments ("directory"))
-                nil [69729 70001])
-            ("byte-recompile-directory" function
-               (:user-visible-flag t
-                :arguments ("directory" "arg" "force"))
-                nil [70018 73604])
-            ("no-byte-compile" variable nil nil [73606 73822])
-            ("byte-recompile-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "force" "arg" "load"))
-                nil [73921 75940])
-            ("byte-compile-level" variable nil nil [75942 76027])
-            ("byte-compile-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "load"))
-                nil [76044 83751])
-            ("compile-defun" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [83800 84853])
-            ("byte-compile-from-buffer" function (:arguments ("inbuffer")) nil [84855 88523])
-            ("byte-compile-fix-header" function (:arguments ("_filename")) nil [88525 90181])
-            ("byte-compile-insert-header" function (:arguments ("_filename" "outbuffer")) nil [90183 92206])
-            ("byte-compile-output-file-form" function (:arguments ("form")) nil [92208 93420])
-            ("byte-compile--for-effect" variable nil nil [93422 93455])
-            ("byte-compile-output-docform" function (:arguments ("preface" "name" "info" "form" "specindex" "quoted")) nil [93457 98012])
-            ("byte-compile-keep-pending" function (:arguments ("form" "handler")) nil [98014 98554])
-            ("byte-compile-flush-pending" function nil nil [98556 99033])
-            ("byte-compile-force-lexical-warnings" variable nil nil [99035 99083])
-            ("byte-compile-preprocess" function (:arguments ("form" "_for-effect")) nil [99085 99683])
-            ("byte-compile-toplevel-file-form" function (:arguments ("top-level-form")) nil [99725 99994])
-            ("byte-compile-file-form" function (:arguments ("form")) nil [100033 100376])
-            ("put" code nil nil [100539 100606])
-            ("byte-compile-file-form-autoload" function (:arguments ("form")) nil [100607 102371])
-            ("put" code nil nil [102373 102438])
-            ("put" code nil nil [102439 102504])
-            ("byte-compile--declare-var" function (:arguments ("sym")) nil [102506 103043])
-            ("byte-compile-file-form-defvar" function (:arguments ("form")) nil [103045 103553])
-            ("put" code nil nil [103555 103645])
-            ("put" code nil nil [103646 103723])
-            ("byte-compile-file-form-defvar-function" function (:arguments ("form")) nil [103725 103919])
-            ("put" code nil nil [103921 104023])
-            ("byte-compile-file-form-custom-declare-variable" function (:arguments ("form")) nil [104024 104222])
-            ("put" code nil nil [104224 104289])
-            ("byte-compile-file-form-require" function (:arguments ("form")) nil [104290 105628])
-            ("put" code nil nil [105630 105691])
-            ("put" code nil nil [105692 105753])
-            ("put" code nil nil [105754 105815])
-            ("byte-compile-file-form-progn" function (:arguments ("form")) nil [105816 105960])
-            ("put" code nil nil [105962 106050])
-            ("byte-compile-file-form-with-no-warnings" function (:arguments ("form")) nil [106051 106229])
-            ("put" code nil nil [106338 106397])
-            ("byte-compile-file-form-eval" function (:arguments ("form")) nil [106398 106547])
-            ("byte-compile-file-form-defmumble" function (:arguments ("name" "macro" "arglist" "body" "rest")) nil [106549 112269])
-            ("byte-compile-output-as-comment" function (:arguments ("exp" "quoted")) nil [112271 113749])
-            ("byte-compile--reify-function" function (:arguments ("fun")) nil [113751 114963])
-            ("byte-compile" function (:arguments ("form")) nil [114981 116370])
-            ("byte-compile-sexp" function (:arguments ("sexp")) nil [116372 116564])
-            ("byte-compile-check-lambda-list" function (:arguments ("list")) nil [116566 117515])
-            ("byte-compile-arglist-vars" function (:arguments ("arglist")) nil [117518 117675])
-            ("byte-compile-make-lambda-lexenv" function (:arguments ("args")) nil [117677 118028])
-            ("byte-compile-make-args-desc" function (:arguments ("arglist")) nil [118030 118729])
-            ("byte-compile-lambda" function (:arguments ("fun" "add-lambda" "reserved-csts")) nil [118732 122764])
-            ("byte-compile-reserved-constants" variable nil nil [122766 122808])
-            ("byte-compile-constants-vector" function nil nil [122810 124375])
-            ("byte-compile-top-level" function (:arguments ("form" "for-effect" "output-type" "lexenv" "reserved-csts")) nil [124502 126044])
-            ("byte-compile-out-toplevel" function (:arguments ("for-effect" "output-type")) nil [126046 130423])
-            ("byte-compile-top-level-body" function (:arguments ("body" "for-effect")) nil [130474 130683])
-            ("byte-compile-macroexpand-declare-function" function (:arguments ("fn" "file" "args")) nil [130741 131725])
-            ("byte-compile-form" function (:arguments ("form" "for-effect")) nil [132453 135716])
-            ("byte-compile-normal-call" function (:arguments ("form")) nil [135718 136570])
-            ("byte-compile-inline-lapcode" function (:arguments ("lap" "end-depth")) nil [136842 139853])
-            ("byte-compile-unfold-bcf" function (:arguments ("form")) nil [139855 142318])
-            ("byte-compile-check-variable" function (:arguments ("var" "access-type")) nil [142320 143261])
-            ("byte-compile-dynamic-variable-op" function (:arguments ("base-op" "var")) nil [143263 143490])
-            ("byte-compile-dynamic-variable-bind" function (:arguments ("var")) nil [143492 143761])
-            ("byte-compile-variable-ref" function (:arguments ("var")) nil [143763 144454])
-            ("byte-compile-variable-set" function (:arguments ("var")) nil [144456 145150])
-            ("byte-compile-get-constant" function (:arguments ("const")) nil [145152 145576])
-            ("byte-compile-constant" function (:arguments ("const")) nil [145670 145829])
-            ("byte-compile-push-constant" function (:arguments ("const")) nil [145946 146128])
-            ("byte-defop-compiler" function (:arguments ("function" "compile-handler")) nil [146227 147701])
-            ("byte-defop-compiler-1" function (:arguments ("function" "compile-handler")) nil [147703 147838])
-            ("put" code nil nil [147842 147887])
-            ("put" code nil nil [147888 147931])
-            ("put" code nil nil [147932 147975])
-            ("put" code nil nil [147976 148019])
-            ("put" code nil nil [148020 148063])
-            ("put" code nil nil [148064 148107])
-            ("put" code nil nil [148108 148155])
-            ("put" code nil nil [148156 148203])
-            ("put" code nil nil [148204 148251])
-            ("put" code nil nil [148252 148299])
-            ("put" code nil nil [148300 148347])
-            ("byte-defop-compiler" code nil nil [148349 148379])
-            ("byte-defop-compiler" code nil nil [148424 148458])
-            ("byte-defop-compiler" code nil nil [148459 148493])
-            ("byte-defop-compiler" code nil nil [148494 148532])
-            ("byte-defop-compiler" code nil nil [148533 148571])
-            ("byte-defop-compiler" code nil nil [148572 148610])
-            ("byte-defop-compiler" code nil nil [148611 148640])
-            ("byte-defop-compiler" code nil nil [148641 148670])
-            ("byte-defop-compiler" code nil nil [148671 148700])
-            ("byte-defop-compiler" code nil nil [148701 148730])
-            ("byte-defop-compiler" code nil nil [148731 148769])
-            ("byte-defop-compiler" code nil nil [148872 148902])
-            ("byte-defop-compiler" code nil nil [148903 148943])
-            ("byte-defop-compiler" code nil nil [148944 148984])
-            ("byte-defop-compiler" code nil nil [148985 149025])
-            ("byte-defop-compiler" code nil nil [149026 149058])
-            ("byte-defop-compiler" code nil nil [149059 149089])
-            ("byte-defop-compiler" code nil nil [149090 149122])
-            ("byte-defop-compiler" code nil nil [149123 149153])
-            ("byte-defop-compiler" code nil nil [149154 149182])
-            ("byte-defop-compiler" code nil nil [149183 149222])
-            ("byte-defop-compiler" code nil nil [149223 149251])
-            ("byte-defop-compiler" code nil nil [149252 149280])
-            ("byte-defop-compiler" code nil nil [149281 149312])
-            ("byte-defop-compiler" code nil nil [149313 149349])
-            ("byte-defop-compiler" code nil nil [149350 149389])
-            ("byte-defop-compiler" code nil nil [149390 149428])
-            ("byte-defop-compiler" code nil nil [149429 149467])
-            ("byte-defop-compiler" code nil nil [149468 149502])
-            ("byte-defop-compiler" code nil nil [149503 149540])
-            ("byte-defop-compiler" code nil nil [149541 149576])
-            ("byte-defop-compiler" code nil nil [149625 149663])
-            ("byte-defop-compiler" code nil nil [149664 149699])
-            ("byte-defop-compiler" code nil nil [149700 149733])
-            ("byte-defop-compiler" code nil nil [149734 149767])
-            ("byte-defop-compiler" code nil nil [149768 149801])
-            ("byte-defop-compiler" code nil nil [149802 149834])
-            ("byte-defop-compiler" code nil nil [149835 149868])
-            ("byte-defop-compiler" code nil nil [149869 149917])
-            ("byte-defop-compiler" code nil nil [149918 149966])
-            ("byte-defop-compiler" code nil nil [149967 149996])
-            ("byte-defop-compiler" code nil nil [149997 150026])
-            ("byte-defop-compiler" code nil nil [150027 150056])
-            ("byte-defop-compiler" code nil nil [150057 150086])
-            ("byte-defop-compiler" code nil nil [150087 150115])
-            ("byte-defop-compiler" code nil nil [150116 150160])
-            ("byte-defop-compiler" code nil nil [150161 150201])
-            ("byte-defop-compiler" code nil nil [150202 150242])
-            ("byte-defop-compiler" code nil nil [150243 150284])
-            ("byte-defop-compiler" code nil nil [150285 150326])
-            ("byte-defop-compiler" code nil nil [150327 150355])
-            ("byte-defop-compiler" code nil nil [150356 150384])
-            ("byte-defop-compiler" code nil nil [150385 150421])
-            ("byte-defop-compiler" code nil nil [150422 150477])
-            ("byte-defop-compiler" code nil nil [150478 150514])
-            ("byte-defop-compiler" code nil nil [150515 150554])
-            ("byte-defop-compiler" code nil nil [150555 150588])
-            ("byte-defop-compiler" code nil nil [150589 150620])
-            ("byte-defop-compiler" code nil nil [150621 150654])
-            ("byte-defop-compiler" code nil nil [150655 150687])
-            ("byte-defop-compiler" code nil nil [150688 150720])
-            ("byte-defop-compiler" code nil nil [150721 150772])
-            ("byte-defop-compiler" code nil nil [150773 150824])
-            ("byte-defop-compiler" code nil nil [150825 150855])
-            ("byte-defop-compiler" code nil nil [150856 150887])
-            ("byte-defop-compiler" code nil nil [150888 150916])
-            ("byte-defop-compiler" code nil nil [150917 150948])
-            ("byte-defop-compiler" code nil nil [150949 150978])
-            ("byte-defop-compiler" code nil nil [150979 151023])
-            ("byte-defop-compiler" code nil nil [151024 151068])
-            ("byte-defop-compiler" code nil nil [151069 151100])
-            ("byte-defop-compiler" code nil nil [151101 151132])
-            ("byte-defop-compiler" code nil nil [151133 151173])
-            ("byte-defop-compiler" code nil nil [151174 151211])
-            ("byte-defop-compiler" code nil nil [151212 151252])
-            ("byte-defop-compiler" code nil nil [151253 151289])
-            ("byte-defop-compiler" code nil nil [151290 151319])
-            ("byte-defop-compiler" code nil nil [151321 151372])
-            ("byte-defop-compiler" code nil nil [151373 151424])
-            ("byte-defop-compiler" code nil nil [151425 151485])
-            ("byte-defop-compiler" code nil nil [151486 151546])
-            ("byte-defop-compiler-1" code nil nil [151593 151646])
-            ("byte-compile-subr-wrong-args" function (:arguments ("form" "n")) nil [151650 151975])
-            ("byte-compile-no-args" function (:arguments ("form")) nil [151977 152149])
-            ("byte-compile-one-arg" function (:arguments ("form")) nil [152151 152381])
-            ("byte-compile-two-args" function (:arguments ("form")) nil [152383 152652])
-            ("byte-compile-and-folded" function (:arguments ("form")) nil [152654 153153])
-            ("byte-compile-three-args" function (:arguments ("form")) nil [153155 153463])
-            ("byte-compile-zero-or-one-arg" function (:arguments ("form")) nil [153465 153697])
-            ("byte-compile-one-or-two-args" function (:arguments ("form")) nil [153699 153933])
-            ("byte-compile-two-or-three-args" function (:arguments ("form")) nil [153935 154175])
-            ("byte-compile-noop" function (:arguments ("_form")) nil [154177 154240])
-            ("byte-compile-discard" function (:arguments ("num" "preserve-tos")) nil [154242 155169])
-            ("byte-compile-stack-ref" function (:arguments ("stack-pos")) nil [155171 155496])
-            ("byte-compile-stack-set" function (:arguments ("stack-pos")) nil [155498 155689])
-            ("byte-defop-compiler-1" code nil nil [155691 155762])
-            ("byte-defop-compiler-1" code nil nil [155763 155838])
-            ("byte-compile-make-closure" function (:arguments ("form")) nil [155840 156877])
-            ("byte-compile-get-closed-var" function (:arguments ("form")) nil [156879 157101])
-            ("byte-compile-associative" function (:arguments ("form")) nil [157421 158097])
-            ("byte-defop-compiler" code nil nil [158138 158171])
-            ("byte-defop-compiler" code nil nil [158172 158207])
-            ("byte-defop-compiler" code nil nil [158208 158243])
-            ("byte-defop-compiler" code nil nil [158244 158270])
-            ("byte-defop-compiler" code nil nil [158271 158299])
-            ("byte-defop-compiler" code nil nil [158300 158326])
-            ("byte-defop-compiler" code nil nil [158327 158405])
-            ("byte-defop-compiler" code nil nil [158406 158437])
-            ("byte-defop-compiler" code nil nil [158438 158466])
-            ("byte-defop-compiler-1" code nil nil [158467 158526])
-            ("byte-defop-compiler-1" code nil nil [158527 158571])
-            ("byte-defop-compiler" code nil nil [158572 158623])
-            ("byte-defop-compiler" code nil nil [158624 158651])
-            ("byte-compile-char-before" function (:arguments ("form")) nil [158717 159104])
-            ("byte-compile-backward-char" function (:arguments ("form")) nil [159229 159600])
-            ("byte-compile-backward-word" function (:arguments ("form")) nil [159602 159973])
-            ("byte-compile-list" function (:arguments ("form")) nil [159975 160394])
-            ("byte-compile-concat" function (:arguments ("form")) nil [160396 160894])
-            ("byte-compile-minus" function (:arguments ("form")) nil [160896 161403])
-            ("byte-compile-quo" function (:arguments ("form")) nil [161405 161751])
-            ("byte-compile-nconc" function (:arguments ("form")) nil [161753 162160])
-            ("byte-compile-fset" function (:arguments ("form")) nil [162162 162928])
-            ("byte-compile-function-form" function (:arguments ("form")) nil [163123 163496])
-            ("byte-compile-indent-to" function (:arguments ("form")) nil [163498 163807])
-            ("byte-compile-insert" function (:arguments ("form")) nil [163809 164401])
-            ("byte-defop-compiler-1" code nil nil [164405 164433])
-            ("byte-defop-compiler-1" code nil nil [164434 164470])
-            ("byte-defop-compiler-1" code nil nil [164471 164500])
-            ("byte-compile-setq" function (:arguments ("form")) nil [164502 165322])
-            ("byte-compile-setq-default" function (:arguments ("form")) nil [165324 166049])
-            ("byte-defop-compiler-1" code nil nil [166051 166086])
-            ("byte-compile-set-default" function (:arguments ("form")) nil [166087 166493])
-            ("byte-compile-quote" function (:arguments ("form")) nil [166495 166571])
-            ("byte-compile-body" function (:arguments ("body" "for-effect")) nil [166598 166780])
-            ("byte-compile-body-do-effect" function (:arguments ("body")) nil [166782 166917])
-            ("byte-compile-form-do-effect" function (:arguments ("form")) nil [166919 167054])
-            ("byte-defop-compiler-1" code nil nil [167056 167105])
-            ("byte-defop-compiler-1" code nil nil [167106 167135])
-            ("byte-defop-compiler-1" code nil nil [167136 167165])
-            ("byte-defop-compiler-1" code nil nil [167166 167195])
-            ("byte-defop-compiler-1" code nil nil [167196 167222])
-            ("byte-defop-compiler-1" code nil nil [167223 167251])
-            ("byte-defop-compiler-1" code nil nil [167252 167279])
-            ("byte-defop-compiler-1" code nil nil [167280 167306])
-            ("byte-defop-compiler-1" code nil nil [167307 167336])
-            ("byte-defop-compiler-1" code nil nil [167337 167368])
-            ("byte-defop-compiler-1" code nil nil [167369 167396])
-            ("byte-defop-compiler-1" code nil nil [167397 167442])
-            ("byte-compile-progn" function (:arguments ("form")) nil [167444 167520])
-            ("byte-compile-prog1" function (:arguments ("form")) nil [167522 167645])
-            ("byte-compile-prog2" function (:arguments ("form")) nil [167647 167809])
-            ("byte-compile-goto-if" function (:arguments ("cond" "discard" "tag")) nil [167811 168041])
-            ("byte-compile-find-bound-condition" function (:arguments ("condition-param" "pred-list" "only-if-not-present")) nil [168170 168949])
-            ("byte-compile-maybe-guarded" function (:arguments ("condition" "body")) nil [168951 170833])
-            ("byte-compile-if" function (:arguments ("form")) nil [170835 171821])
-            ("byte-compile-cond-vars" function (:arguments ("obj1" "obj2")) nil [171823 172182])
-            ("byte-compile-cond-jump-table-info" function (:arguments ("clauses")) nil [172184 173847])
-            ("byte-compile-cond-jump-table" function (:arguments ("clauses")) nil [173849 177226])
-            ("byte-compile-cond" function (:arguments ("clauses")) nil [177228 178796])
-            ("byte-compile-and" function (:arguments ("form")) nil [178798 178994])
-            ("byte-compile-and-recursion" function (:arguments ("rest" "failtag")) nil [179113 179459])
-            ("byte-compile-or" function (:arguments ("form")) nil [179461 179655])
-            ("byte-compile-or-recursion" function (:arguments ("rest" "wintag")) nil [179773 180123])
-            ("byte-compile-while" function (:arguments ("form")) nil [180125 180535])
-            ("byte-compile-funcall" function (:arguments ("form")) nil [180537 180926])
-            ("byte-compile-push-binding-init" function (:arguments ("clause")) nil [180946 181438])
-            ("byte-compile-not-lexical-var-p" function (:arguments ("var")) nil [181440 181635])
-            ("byte-compile-bind" function (:arguments ("var" "init-lexenv")) nil [181637 183376])
-            ("byte-compile-unbind" function (:arguments ("clauses" "init-lexenv" "preserve-body-value")) nil [183378 184521])
-            ("byte-compile-let" function (:arguments ("form")) nil [184523 185991])
-            ("byte-defop-compiler-1" code nil nil [185996 186043])
-            ("byte-defop-compiler-1" code nil nil [186044 186093])
-            ("byte-defop-compiler-1" code nil nil [186094 186145])
-            ("put" code nil nil [186147 186184])
-            ("put" code nil nil [186185 186228])
-            ("put" code nil nil [186229 186274])
-            ("byte-compile-negated" function (:arguments ("form")) nil [186276 186382])
-            ("byte-compile-negation-optimizer" function (:arguments ("form")) nil [186452 186818])
-            ("byte-defop-compiler-1" code nil nil [186864 186893])
-            ("byte-defop-compiler-1" code nil nil [186894 186932])
-            ("byte-defop-compiler-1" code nil nil [186933 186971])
-            ("byte-defop-compiler-1" code nil nil [186972 187010])
-            ("byte-defop-compiler-1" code nil nil [187011 187054])
-            ("byte-defop-compiler-1" code nil nil [187055 187095])
-            ("byte-compile--use-old-handlers" variable nil nil [187253 187353])
-            ("byte-compile-catch" function (:arguments ("form")) nil [187355 187953])
-            ("byte-compile-unwind-protect" function (:arguments ("form")) nil [187955 188464])
-            ("byte-compile-condition-case" function (:arguments ("form")) nil [188466 188636])
-            ("byte-compile-condition-case--old" function (:arguments ("form")) nil [188638 191007])
-            ("byte-compile-condition-case--new" function (:arguments ("form")) nil [191009 193370])
-            ("byte-compile-save-excursion" function (:arguments ("form")) nil [193372 193755])
-            ("byte-compile-save-restriction" function (:arguments ("form")) nil [193757 193926])
-            ("byte-compile-save-current-buffer" function (:arguments ("form")) nil [193928 194103])
-            ("byte-defop-compiler-1" code nil nil [194137 194167])
-            ("byte-defop-compiler-1" code nil nil [194168 194220])
-            ("byte-defop-compiler-1" code nil nil [194221 194253])
-            ("byte-defop-compiler-1" code nil nil [194254 194309])
-            ("byte-defop-compiler-1" code nil nil [194657 194703])
-            ("byte-compile-make-obsolete-variable" function (:arguments ("form")) nil [194704 194903])
-            ("byte-compile-tmp-var" variable
-               (:constant-flag t
-                :default-value (make-symbol "def-tmp-var"))
-                nil [194905 194964])
-            ("byte-compile-defvar" function (:arguments ("form")) nil [194966 196546])
-            ("byte-compile-autoload" function (:arguments ("form")) nil [196548 197022])
-            ("byte-compile-lambda-form" function (:arguments ("_form")) nil [197133 197272])
-            ("put" code nil nil [197350 197417])
-            ("byte-compile-file-form-defalias" function (:arguments ("form")) nil [197455 200338])
-            ("byte-defop-compiler-1" code nil nil [200340 200405])
-            ("byte-compile-no-warnings" function (:arguments ("form")) nil [200406 200526])
-            ("byte-defop-compiler-1" code nil nil [200581 200694])
-            ("byte-compile-make-variable-buffer-local" function (:arguments ("form")) nil [200695 200989])
-            ("put" code nil nil [200990 201093])
-            ("byte-compile-form-make-variable-buffer-local" function (:arguments ("form")) nil [201094 201214])
-            ("put" code nil nil [201216 201287])
-            ("put" code nil nil [201288 201365])
-            ("byte-compile-define-symbol-prop" function (:arguments ("form")) nil [201366 202417])
-            ("byte-compile-make-tag" function nil nil [202604 202710])
-            ("byte-compile-out-tag" function (:arguments ("tag")) nil [202713 203125])
-            ("byte-compile-goto" function (:arguments ("opcode" "tag")) nil [203127 203422])
-            ("byte-compile-stack-adjustment" function (:arguments ("op" "operand")) nil [203424 204106])
-            ("byte-compile-out" function (:arguments ("op" "operand")) nil [204108 204640])
-            ("byte-compile-annotate-call-tree" function (:arguments ("form")) nil [204664 205459])
-            ("display-call-tree" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [205584 210423])
-            ("batch-byte-compile-if-not-done" function nil nil [210442 210668])
-            ("batch-byte-compile" function (:arguments ("noforce")) nil [210748 212728])
-            ("batch-byte-compile-file" function (:arguments ("file")) nil [212730 213712])
-            ("byte-compile-refresh-preloaded" function nil nil [213714 215095])
-            ("batch-byte-recompile-directory" function (:arguments ("arg")) nil [215112 216206])
-            ("put" code nil nil [216235 216529])
-            ("byte-compile" package nil nil [216531 216554])
-            ("bytecomp" package nil nil [216555 216574])
-            ("byte-code-meter" variable nil nil [216629 216653])
-            ("byte-compile-report-ops" function nil nil [216654 217486])
-            ("or" code nil nil [217668 218258])
-            ("run-hooks" code nil nil [218267 218298]))          
-      :file "bytecomp.el"
-      :pointmax 218326
-      :fsize 218325
-      :lastmodtime '(23525 29538 0 0)
-      :unmatched-syntax '((close-paren 218264 . 218265) (symbol 218261 . 218264) (symbol 217648 . 217665) (open-paren 217647 . 217648)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("backquote" package nil nil [1392 1412])
-            ("backquote-list*-function" function (:arguments ("first" "list")) nil [1465 2060])
-            ("backquote-list*-macro" function (:arguments ("first" "list")) nil [2062 2724])
-            ("defalias" code nil nil [2726 2794])
-            ("backquote-backquote-symbol" variable
-               (:constant-flag t
-                :default-value (quote \`))
-                nil [2925 3028])
-            ("backquote-unquote-symbol" variable
-               (:constant-flag t
-                :default-value (quote \,))
-                nil [3030 3129])
-            ("backquote-splice-symbol" variable
-               (:constant-flag t
-                :default-value (quote \,@))
-                nil [3131 3228])
-            ("backquote" function (:arguments ("structure")) nil [3230 3806])
-            ("defalias" code nil nil [3843 3886])
-            ("backquote-delay-process" function (:arguments ("s" "level")) nil [4132 4459])
-            ("backquote-process" function (:arguments ("s" "level")) nil [4461 8238])
-            ("backquote-listify" function (:arguments ("list" "old-tail")) nil [8422 9197])
-            ("put" code nil nil [9276 9364])
-            ("put" code nil nil [9365 9394])
-            ("put" code nil nil [9396 9471])
-            ("put" code nil nil [9472 9502]))          
-      :file "backquote.el"
-      :pointmax 9531
-      :fsize 9530
-      :lastmodtime '(23525 29538 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "cconv.el"
-      :fsize 33700
-      :lastmodtime '(23525 29539 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("font-lock-verbose" variable nil nil [914 940])
-            ("pp" customgroup (:user-visible-flag t) nil [942 1025])
-            ("pp-escape-newlines" variable (:default-value t) nil [1027 1150])
-            ("pp-to-string" function (:arguments ("object")) nil [1167 1667])
-            ("pp-buffer" function nil nil [1684 2463])
-            ("pp" function (:arguments ("object" "stream")) nil [2480 2824])
-            ("pp-display-expression" function (:arguments ("expression" "out-buffer-name")) nil [2826 4258])
-            ("pp-eval-expression" function
-               (:user-visible-flag t
-                :arguments ("expression"))
-                nil [4275 4626])
-            ("pp-macroexpand-expression" function
-               (:user-visible-flag t
-                :arguments ("expression"))
-                nil [4643 4884])
-            ("pp-last-sexp" function nil nil [4886 5635])
-            ("pp-eval-last-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5652 5965])
-            ("pp-macroexpand-last-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5982 6309])
-            ("pp" package nil nil [6311 6324]))          
-      :file "pp.el"
-      :pointmax 6374
-      :fsize 6373
-      :lastmodtime '(23525 29543 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("bytecomp" include nil nil [8026 8045])
-            ("cl-lib" include nil nil [8065 8082])
-            ("macroexp" include nil nil [8084 8103])
-            ("subr-x" include nil nil [8123 8140])
-            ("byte-compile-log-lap-1" function (:arguments ("format" "args")) nil [8143 9288])
-            ("byte-compile-log-lap" function (:arguments ("format-string" "args")) nil [9290 9440])
-            ("put" code nil nil [9493 9552])
-            ("byte-optimize-inline-handler" function (:arguments ("form")) nil [9554 10063])
-            ("byte-compile-inline-expand" function (:arguments ("form")) nil [10065 12369])
-            ("byte-compile-unfold-lambda" function (:arguments ("form" "name")) nil [12393 15448])
-            ("byte-optimize-form-code-walker" function (:arguments ("form" "for-effect")) nil [15494 23083])
-            ("byte-optimize-all-constp" function (:arguments ("list")) nil [23085 23351])
-            ("byte-optimize-form" function (:arguments ("form" "for-effect")) nil [23353 24407])
-            ("byte-optimize-body" function (:arguments ("forms" "all-for-effect")) nil [24410 25037])
-            ("byte-compile-trueconstp" function (:arguments ("form")) nil [25438 25918])
-            ("byte-compile-nilconstp" function (:arguments ("form")) nil [25920 26379])
-            ("byte-optimize-associative-math" function (:arguments ("form")) nil [26567 27046])
-            ("byte-optimize-nonassociative-math" function (:arguments ("form")) nil [27291 27690])
-            ("byte-optimize-approx-equal" function (:arguments ("x" "y")) nil [28079 28162])
-            ("byte-optimize-delay-constants-math" function (:arguments ("form" "start" "fun")) nil [28601 29712])
-            ("byte-compile-butlast" function (:arguments ("form")) nil [29714 29786])
-            ("byte-optimize-plus" function (:arguments ("form")) nil [29788 30748])
-            ("byte-optimize-minus" function (:arguments ("form")) nil [30750 31893])
-            ("byte-optimize-multiply" function (:arguments ("form")) nil [31895 32587])
-            ("byte-optimize-divide" function (:arguments ("form")) nil [32589 33483])
-            ("byte-optimize-logmumble" function (:arguments ("form")) nil [33485 33857])
-            ("byte-optimize-binary-predicate" function (:arguments ("form")) nil [33860 34250])
-            ("byte-optimize-predicate" function (:arguments ("form")) nil [34252 34505])
-            ("byte-optimize-identity" function (:arguments ("form")) nil [34507 34768])
-            ("put" code nil nil [34770 34825])
-            ("put" code nil nil [34827 34873])
-            ("put" code nil nil [34874 34924])
-            ("put" code nil nil [34925 34972])
-            ("put" code nil nil [34973 35021])
-            ("put" code nil nil [35022 35080])
-            ("put" code nil nil [35081 35139])
-            ("put" code nil nil [35141 35199])
-            ("put" code nil nil [35200 35258])
-            ("put" code nil nil [35259 35321])
-            ("put" code nil nil [35322 35384])
-            ("put" code nil nil [35385 35452])
-            ("put" code nil nil [35454 35505])
-            ("put" code nil nil [35506 35557])
-            ("put" code nil nil [35558 35609])
-            ("put" code nil nil [35610 35661])
-            ("put" code nil nil [35662 35713])
-            ("put" code nil nil [35714 35765])
-            ("put" code nil nil [35766 35817])
-            ("put" code nil nil [35818 35871])
-            ("put" code nil nil [35872 35925])
-            ("put" code nil nil [35926 35979])
-            ("put" code nil nil [35980 36033])
-            ("put" code nil nil [36034 36089])
-            ("put" code nil nil [36090 36145])
-            ("put" code nil nil [36146 36201])
-            ("put" code nil nil [36202 36262])
-            ("put" code nil nil [36264 36318])
-            ("put" code nil nil [36319 36373])
-            ("put" code nil nil [36374 36428])
-            ("put" code nil nil [36429 36483])
-            ("put" code nil nil [36485 36536])
-            ("put" code nil nil [36537 36588])
-            ("put" code nil nil [36589 36645])
-            ("put" code nil nil [36646 36702])
-            ("put" code nil nil [36953 37002])
-            ("byte-optimize-quote" function (:arguments ("form")) nil [37003 37176])
-            ("byte-optimize-and" function (:arguments ("form")) nil [37178 37682])
-            ("byte-optimize-or" function (:arguments ("form")) nil [37684 38214])
-            ("byte-optimize-cond" function (:arguments ("form")) nil [38216 39611])
-            ("byte-optimize-if" function (:arguments ("form")) nil [39613 41141])
-            ("byte-optimize-while" function (:arguments ("form")) nil [41143 41293])
-            ("put" code nil nil [41295 41342])
-            ("put" code nil nil [41343 41389])
-            ("put" code nil nil [41390 41438])
-            ("put" code nil nil [41439 41485])
-            ("put" code nil nil [41486 41535])
-            ("put" code nil nil [41593 41651])
-            ("put" code nil nil [41652 41712])
-            ("put" code nil nil [41713 41775])
-            ("byte-optimize-funcall" function (:arguments ("form")) nil [41778 42029])
-            ("byte-optimize-apply" function (:arguments ("form")) nil [42031 42696])
-            ("put" code nil nil [42698 42751])
-            ("put" code nil nil [42752 42803])
-            ("put" code nil nil [42806 42852])
-            ("put" code nil nil [42853 42900])
-            ("byte-optimize-letX" function (:arguments ("form")) nil [42901 43294])
-            ("put" code nil nil [43297 43342])
-            ("byte-optimize-nth" function (:arguments ("form")) nil [43343 43578])
-            ("put" code nil nil [43580 43631])
-            ("byte-optimize-nthcdr" function (:arguments ("form")) nil [43632 43932])
-            ("put" code nil nil [44104 44149])
-            ("byte-optimize-set" function (:arguments ("form")) nil [44150 44544])
-            ("let" code nil nil [45521 50115])
-            ("let" code nil nil [50356 50537])
-            ("byte-constref-ops" variable
-               (:constant-flag t
-                :default-value (quote (byte-constant byte-constant2 byte-varref byte-varset byte-varbind)))
-                nil [50540 50639])
-            ("bytedecomp-op" variable nil nil [50699 50721])
-            ("bytedecomp-ptr" variable nil nil [50722 50745])
-            ("disassemble-offset" function (:arguments ("bytes")) nil [50879 52389])
-            ("byte-compile-tag-number" variable nil nil [52391 52423])
-            ("byte-decompile-bytecode" function (:arguments ("bytes" "constvec")) nil [52608 52856])
-            ("byte-decompile-bytecode-1" function (:arguments ("bytes" "constvec" "make-spliceable")) nil [53262 57420])
-            ("byte-tagref-ops" variable
-               (:constant-flag t
-                :default-value (cons (quote TAG) byte-goto-ops))
-                nil [57448 57500])
-            ("byte-conditional-ops" variable
-               (:constant-flag t
-                :default-value (quote (byte-goto-if-nil byte-goto-if-not-nil byte-goto-if-nil-else-pop byte-goto-if-not-nil-else-pop)))
-                nil [57502 57636])
-            ("byte-after-unbind-ops" variable
-               (:constant-flag t
-                :default-value (quote (byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp byte-eq byte-not byte-cons byte-list1 byte-list2 byte-interactive-p)))
-                nil [57638 58258])
-            ("byte-compile-side-effect-and-error-free-ops" variable
-               (:constant-flag t
-                :default-value (quote (byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp byte-integerp byte-numberp byte-eq byte-equal byte-not byte-car-safe byte-cdr-safe byte-cons byte-list1 byte-list2 byte-point byte-point-max byte-point-min byte-following-char byte-preceding-char byte-current-column byte-eolp byte-eobp byte-bolp byte-bobp byte-current-buffer byte-stack-ref)))
-                nil [58260 58701])
-            ("byte-compile-side-effect-free-ops" variable
-               (:constant-flag t
-                :default-value (nconc (quote (byte-varref byte-nth byte-memq byte-car byte-cdr byte-length byte-aref byte-symbol-value byte-get byte-concat2 byte-concat3 byte-sub1 byte-add1 byte-eqlsign byte-gtr byte-lss byte-leq byte-geq byte-diff byte-negate byte-plus byte-max byte-min byte-mult byte-char-after byte-char-syntax byte-buffer-substring byte-string= byte-string< byte-nthcdr byte-elt byte-member byte-assq byte-quo byte-rem)) byte-compile-side-effect-and-error-free-ops))
-                nil [58703 59230])
-            ("byte-optimize-lapcode" function (:arguments ("lap" "_for-effect")) nil [60088 84929])
-            ("byte-opt" package nil nil [84931 84950])
-            ("or" code nil nil [85133 85753]))          
-      :file "byte-opt.el"
-      :pointmax 85787
-      :fsize 85786
-      :lastmodtime '(23525 29538 0 0)
-      :unmatched-syntax '((close-paren 85758 . 85759) (symbol 85755 . 85758) (symbol 85114 . 85131) (open-paren 85113 . 85114) (close-paren 8140 . 8141) (symbol 8105 . 8122) (open-paren 8104 . 8105) (close-paren 8082 . 8083) (symbol 8047 . 8064) (open-paren 8046 . 8047)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("defvar-local" code nil nil [1683 2714])
-            ("put" code nil nil [2715 2762])
-            ("defvar-local" code nil nil [2764 2875])
-            ("defvar-local" code nil nil [2877 3759])
-            ("put" code nil nil [3760 3808])
-            ("defvar-local" code nil nil [3810 4028])
-            ("put" code nil nil [4029 4077])
-            ("tabulated-list-revert-hook" variable nil nil [4079 4234])
-            ("defvar-local" code nil nil [4236 4538])
-            ("tabulated-list--near-rows" variable nil nil [4540 4574])
-            ("defvar-local" code nil nil [4576 4990])
-            ("put" code nil nil [4991 5040])
-            ("tabulated-list-get-id" function (:arguments ("pos")) nil [5042 5316])
-            ("tabulated-list-get-entry" function (:arguments ("pos")) nil [5318 5599])
-            ("tabulated-list-put-tag" function (:arguments ("tag" "advance")) nil [5601 6508])
-            ("tabulated-list-mode-map" variable (:default-value (let ((map (copy-keymap special-mode-map))) (set-keymap-parent map button-buffer-map) (define-key map "n" (quote next-line)) (define-key map "p" (quote previous-line)) (define-key map "S" (quote tabulated-list-sort)) (define-key map [follow-link] (quote mouse-face)) (define-key map [mouse-2] (quote mouse-select-window)) map)) nil [6510 6916])
-            ("tabulated-list-sort-button-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [header-line mouse-1] (quote tabulated-list-col-sort)) (define-key map [header-line mouse-2] (quote tabulated-list-col-sort)) (define-key map [mouse-1] (quote tabulated-list-col-sort)) (define-key map [mouse-2] (quote tabulated-list-col-sort)) (define-key map "
" (quote tabulated-list-sort)) (define-key map [follow-link] (quote mouse-face)) map)) nil [6918 7403])
-            ("tabulated-list-glyphless-char-display" variable (:default-value (let ((table (make-char-table (quote glyphless-char-display) nil))) (set-char-table-parent table glyphless-char-display) (aset table 9650 (cons nil "^")) (aset table 9660 (cons nil "v")) table)) nil [7405 7792])
-            ("tabulated-list--header-string" variable nil nil [7794 7944])
-            ("tabulated-list--header-overlay" variable nil nil [7945 7988])
-            ("tabulated-list-line-number-width" function nil nil [7990 8518])
-            ("tabulated-list-init-header" function nil nil [8520 10748])
-            ("tabulated-list-print-fake-header" function nil nil [10750 11368])
-            ("tabulated-list-header-overlay-p" function (:arguments ("pos")) nil [11370 11607])
-            ("tabulated-list-revert" function
-               (:user-visible-flag t
-                :arguments ("ignored"))
-                nil [11609 11984])
-            ("tabulated-list--column-number" function (:arguments ("name")) nil [11986 12283])
-            ("tabulated-list--get-sorter" function nil nil [12285 13264])
-            ("tabulated-list--col-local-max-widths" function (:arguments ("col")) nil [13266 13653])
-            ("tabulated-list-print" function (:arguments ("remember-pos" "update")) nil [13655 17414])
-            ("tabulated-list-print-entry" function (:arguments ("id" "cols")) nil [17416 18397])
-            ("tabulated-list-print-col" function (:arguments ("n" "col-desc" "x")) nil [18399 21174])
-            ("tabulated-list-delete-entry" function nil nil [21176 21817])
-            ("tabulated-list-set-col" function (:arguments ("col" "desc" "change-entry-data")) nil [21819 23677])
-            ("tabulated-list-col-sort" function
-               (:user-visible-flag t
-                :arguments ("e"))
-                nil [23679 24086])
-            ("tabulated-list-sort" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [24088 24550])
-            ("tabulated-list--sort-by-column-name" function (:arguments ("name")) nil [24552 24945])
-            ("tabulated-list--current-lnum-width" variable nil nil [24947 24994])
-            ("tabulated-list-watch-line-number-width" function (:arguments ("_window")) nil [24995 25320])
-            ("tabulated-list-window-scroll-function" function (:arguments ("window" "_start")) nil [25322 25712])
-            ("define-derived-mode" code nil nil [25740 28317])
-            ("put" code nil nil [28319 28366])
-            ("tabulated-list" package nil nil [28368 28393]))          
-      :file "tabulated-list.el"
-      :pointmax 28427
-      :fsize 28430
-      :lastmodtime '(23525 29544 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("benchmark-elapse" function (:arguments ("forms")) nil [1262 1604])
-            ("benchmark-run" function (:arguments ("repetitions" "forms")) nil [1621 2575])
-            ("benchmark-run-compiled" function (:arguments ("repetitions" "forms")) nil [2592 3575])
-            ("benchmark" function
-               (:user-visible-flag t
-                :arguments ("repetitions" "form"))
-                nil [3592 4146])
-            ("benchmark" package nil nil [4148 4168]))          
-      :file "benchmark.el"
-      :pointmax 4197
-      :fsize 4196
-      :lastmodtime '(23525 29538 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("defun-prompt-regexp" variable nil nil [1098 1347])
-            ("make-variable-buffer-local" code nil nil [1348 1397])
-            ("parens-require-spaces" variable (:default-value t) nil [1399 1588])
-            ("forward-sexp-function" variable nil nil [1590 2091])
-            ("forward-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2093 2823])
-            ("backward-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2825 3183])
-            ("mark-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg" "allow-extend"))
-                nil [3185 4010])
-            ("forward-list" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [4012 4478])
-            ("backward-list" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [4480 4909])
-            ("down-list" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [4911 5457])
-            ("backward-up-list" function
-               (:user-visible-flag t
-                :arguments ("arg" "escape-strings" "no-syntax-crossing"))
-                nil [5459 6200])
-            ("up-list" function
-               (:user-visible-flag t
-                :arguments ("arg" "escape-strings" "no-syntax-crossing"))
-                nil [6202 9555])
-            ("kill-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [9557 9908])
-            ("backward-kill-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [9910 10209])
-            ("kill-backward-up-list" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [10227 10725])
-            ("beginning-of-defun-function" variable nil nil [10728 11297])
-            ("beginning-of-defun" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [11299 12625])
-            ("beginning-of-defun-raw" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [12627 15980])
-            ("beginning-of-defun--in-emptyish-line-p" function nil nil [15982 16541])
-            ("beginning-of-defun-comments" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [16543 17508])
-            ("end-of-defun-function" variable (:default-value (lambda nil (forward-sexp 1))) nil [17510 17878])
-            ("buffer-end" function (:arguments ("arg")) nil [17880 18111])
-            ("end-of-defun" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [18113 20419])
-            ("mark-defun" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [20421 23165])
-            ("narrow-to-defun-include-comments" variable nil nil [23167 23291])
-            ("narrow-to-defun" function
-               (:user-visible-flag t
-                :arguments ("include-comments"))
-                nil [23293 25385])
-            ("insert-pair-alist" variable (:default-value (quote ((40 41) (91 93) (123 125) (60 62) (34 34) (39 39) (96 39)))) nil [25387 25932])
-            ("insert-pair" function
-               (:user-visible-flag t
-                :arguments ("arg" "open" "close"))
-                nil [25934 28203])
-            ("insert-parentheses" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [28205 28769])
-            ("delete-pair" function (:user-visible-flag t) nil [28771 28951])
-            ("raise-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [28953 29409])
-            ("move-past-close-and-reindent" function (:user-visible-flag t) nil [29411 30408])
-            ("check-parens" function (:user-visible-flag t) nil [30410 31323])
-            ("field-complete" function (:arguments ("table" "predicate")) nil [31326 31870])
-            ("lisp-complete-symbol" function (:arguments ("_predicate")) nil [31872 32859]))          
-      :file "lisp.el"
-      :pointmax 32883
-      :fsize 32882
-      :lastmodtime '(23525 29542 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "eieio-loaddefs.el"
-      :fsize 4056
-      :lastmodtime '(23525 29541 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "cl-macs.el"
-      :fsize 134299
-      :lastmodtime '(23525 29539 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("subr-x" include nil nil [6316 6333])
-            ("cl-lib" include nil nil [6354 6371])
-            ("epg" include nil nil [6392 6406])
-            ("seq" include nil nil [6434 6448])
-            ("tabulated-list" include nil nil [6450 6475])
-            ("macroexp" include nil nil [6476 6495])
-            ("url-handlers" include nil nil [6496 6519])
-            ("package" customgroup (:user-visible-flag t) nil [6521 6621])
-            ("package-enable-at-startup" variable (:default-value t) nil [6666 7091])
-            ("package-load-list" variable (:default-value (quote (all))) nil [7093 8189])
-            ("package-archives" variable (:default-value (\` (("gnu" \, (format "http%s://elpa.gnu.org/packages/" (if (gnutls-available-p) "s" "")))))) nil [8191 9047])
-            ("package-menu-hide-low-priority" variable (:default-value (quote archive)) nil [9084 10066])
-            ("package-archive-priorities" variable nil nil [10068 10688])
-            ("package-pinned-packages" variable nil nil [10690 11801])
-            ("package-user-dir" variable (:default-value (locate-user-emacs-file "elpa")) nil [11803 12105])
-            ("package-directory-list" variable (:default-value (let (result) (dolist (f load-path) (and (stringp f) (equal (file-name-nondirectory f) "site-lisp") (push (expand-file-name "elpa" f) result))) (nreverse result))) nil [12107 12698])
-            ("declare-function" code nil nil [12700 12816])
-            ("package-gnupghome-dir" variable (:default-value (expand-file-name "gnupg" package-user-dir)) nil [12818 13517])
-            ("package-check-signature" variable (:default-value (if (and (require (quote epg-config)) (epg-find-configuration (quote OpenPGP))) (quote allow-unsigned))) nil [13519 14076])
-            ("package-unsigned-archives" variable nil nil [14078 14262])
-            ("package-selected-packages" variable nil nil [14264 14821])
-            ("package-menu-async" variable (:default-value t) nil [14823 15097])
-            ("package--default-summary" variable (:default-value "No description available.") nil [15492 15553])
-            ("cl-defstruct" code nil nil [15555 18323])
-            ("package--from-builtin" function (:arguments ("bi-desc")) nil [18325 18579])
-            ("package-version-join" function (:arguments ("vlist")) nil [18599 19731])
-            ("package-desc-full-name" function (:arguments ("pkg-desc")) nil [19733 19897])
-            ("package-desc-suffix" function (:arguments ("pkg-desc")) nil [19899 20079])
-            ("package-desc--keywords" function (:arguments ("pkg-desc")) nil [20081 20279])
-            ("package-desc-priority" function (:arguments ("p")) nil [20281 20433])
-            ("cl-defstruct" code nil nil [20509 20668])
-            ("package--builtins" variable nil nil [20986 21332])
-            ("put" code nil nil [21333 21381])
-            ("package-alist" variable nil nil [21383 21816])
-            ("put" code nil nil [21817 21861])
-            ("package-activated-list" variable nil nil [21863 22018])
-            ("put" code nil nil [22019 22072])
-            ("package-process-define-package" function (:arguments ("exp")) nil [22269 23132])
-            ("package-load-descriptor" function (:arguments ("pkg-dir")) nil [23134 23895])
-            ("package-load-all-descriptors" function nil nil [23897 24650])
-            ("define-package" function (:arguments ("_name-string" "_version-string" "_docstring" "_requirements" "_extra-properties")) nil [24652 25300])
-            ("package-disabled-p" function (:arguments ("pkg-name" "version")) nil [25391 26120])
-            ("package-built-in-p" function (:arguments ("package" "min-version")) nil [26122 26729])
-            ("package--autoloads-file-name" function (:arguments ("pkg-desc")) nil [26731 26991])
-            ("package--activate-autoloads-and-load-path" function (:arguments ("pkg-desc")) nil [26993 27683])
-            ("Info-directory-list" variable nil nil [27685 27713])
-            ("declare-function" code nil nil [27714 27758])
-            ("package--load-files-for-activation" function (:arguments ("pkg-desc" "reload")) nil [27760 28967])
-            ("package-activate-1" function (:arguments ("pkg-desc" "reload" "deps")) nil [28969 30418])
-            ("declare-function" code nil nil [30420 30478])
-            ("package--list-loaded-files" function (:arguments ("dir")) nil [30480 32230])
-            ("package-activate" function (:arguments ("package" "force")) nil [32426 33434])
-            ("tar-parse-info" variable nil nil [33705 33728])
-            ("declare-function" code nil nil [33729 33778])
-            ("declare-function" code nil nil [33779 33839])
-            ("declare-function" code nil nil [33840 33905])
-            ("package-untar-buffer" function (:arguments ("dir")) nil [33907 34777])
-            ("package--alist-to-plist-args" function (:arguments ("alist")) nil [34779 34953])
-            ("package-unpack" function (:arguments ("pkg-desc")) nil [34954 37485])
-            ("package-generate-description-file" function (:arguments ("pkg-desc" "pkg-file")) nil [37487 38554])
-            ("declare-function" code nil nil [38570 38645])
-            ("package-autoload-ensure-default-file" function (:arguments ("file")) nil [38647 38909])
-            ("generated-autoload-file" variable nil nil [38911 38943])
-            ("autoload-timestamps" variable nil nil [38944 38972])
-            ("version-control" variable nil nil [38973 38997])
-            ("package-generate-autoloads" function (:arguments ("name" "pkg-dir")) nil [38999 39714])
-            ("package--make-autoloads-and-stuff" function (:arguments ("pkg-desc" "pkg-dir")) nil [39716 40208])
-            ("warning-minimum-level" variable nil nil [40227 40257])
-            ("package--compile" function (:arguments ("pkg-desc")) nil [40258 40595])
-            ("package-read-from-string" function (:arguments ("str")) nil [40640 41181])
-            ("package--prepare-dependencies" function (:arguments ("deps")) nil [41183 41875])
-            ("declare-function" code nil nil [41877 41925])
-            ("declare-function" code nil nil [41926 41984])
-            ("declare-function" code nil nil [41985 42045])
-            ("declare-function" code nil nil [42046 42103])
-            ("package-buffer-info" function nil nil [42105 43780])
-            ("package--read-pkg-desc" function (:arguments ("kind")) nil [43782 44301])
-            ("declare-function" code nil nil [44303 44363])
-            ("declare-function" code nil nil [44364 44419])
-            ("package-tar-file-info" function nil nil [44421 45140])
-            ("package-dir-info" function nil nil [45142 46118])
-            ("package--write-file-no-coding" function (:arguments ("file-name")) nil [46243 46410])
-            ("declare-function" code nil nil [46412 46470])
-            ("package--archive-file-exists-p" function (:arguments ("location" "file")) nil [46472 46753])
-            ("declare-function" code nil nil [46755 47004])
-            ("declare-function" code nil nil [47005 47140])
-            ("declare-function" code nil nil [47141 47203])
-            ("declare-function" code nil nil [47204 47263])
-            ("declare-function" code nil nil [47264 47324])
-            ("package--display-verify-error" function (:arguments ("context" "sig-file")) nil [47326 47971])
-            ("package--with-work-buffer" function (:arguments ("location" "file" "body")) nil [47973 48923])
-            ("cl-defmacro" code nil nil [48925 52390])
-            ("define-error" code nil nil [52392 52450])
-            ("package--check-signature-content" function (:arguments ("content" "string" "sig-file")) nil [52452 53875])
-            ("package--check-signature" function (:arguments ("location" "file" "string" "async" "callback" "unwind")) nil [53877 55723])
-            ("package-archive-version" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [56115 56287])
-            ("package-archive-contents" variable nil nil [56352 56548])
-            ("put" code nil nil [56549 56604])
-            ("package--compatibility-table" variable nil nil [56606 57157])
-            ("package--build-compatibility-table" function nil nil [57159 57483])
-            ("package--add-to-compatibility-table" function (:arguments ("pkg")) nil [57485 58097])
-            ("cl-defstruct" code nil nil [58261 58474])
-            ("package--append-to-alist" function (:arguments ("pkg-desc" "alist")) nil [58476 59430])
-            ("package--add-to-archive-contents" function (:arguments ("package" "archive")) nil [59432 60626])
-            ("package--read-archive-file" function (:arguments ("file")) nil [60628 61311])
-            ("package-read-archive-contents" function (:arguments ("archive")) nil [61313 61852])
-            ("package--old-archive-priorities" variable nil nil [61854 62152])
-            ("package-read-all-archive-contents" function nil nil [62154 62485])
-            ("package--initialized" variable nil nil [62669 62702])
-            ("package--init-file-ensured" variable nil nil [62704 62801])
-            ("package-initialize" function
-               (:user-visible-flag t
-                :arguments ("no-activate"))
-                nil [62818 64330])
-            ("package--downloads-in-progress" variable nil nil [64507 64598])
-            ("declare-function" code nil nil [64600 64665])
-            ("package-import-keyring" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [64682 65223])
-            ("package--post-download-archives-hook" variable nil nil [65225 65435])
-            ("put" code nil nil [65436 65503])
-            ("package--update-downloads-in-progress" function (:arguments ("entry")) nil [65505 66167])
-            ("package--download-one-archive" function (:arguments ("archive" "file" "async")) nil [66169 67932])
-            ("package--download-and-read-archives" function (:arguments ("async")) nil [67934 68633])
-            ("package-refresh-contents" function
-               (:user-visible-flag t
-                :arguments ("async"))
-                nil [68650 69558])
-            ("package-compute-transaction" function (:arguments ("packages" "requirements" "seen")) nil [69817 74028])
-            ("package--find-non-dependencies" function nil nil [74030 74592])
-            ("package--save-selected-packages" function (:arguments ("value")) nil [74594 74986])
-            ("package--user-selected-p" function (:arguments ("pkg")) nil [74988 75357])
-            ("package--get-deps" function (:arguments ("pkg" "only")) nil [75359 76096])
-            ("package--removable-packages" function nil nil [76098 76658])
-            ("package--used-elsewhere-p" function (:arguments ("pkg-desc" "pkg-list" "all")) nil [76660 77534])
-            ("package--sort-deps-in-alist" function (:arguments ("package" "only")) nil [77536 78195])
-            ("package--sort-by-dependence" function (:arguments ("package-list")) nil [78197 79050])
-            ("package-archive-base" function (:arguments ("desc")) nil [79444 79592])
-            ("package-install-from-archive" function (:arguments ("pkg-desc")) nil [79594 81812])
-            ("package-installed-p" function (:arguments ("package" "min-version")) nil [81814 82599])
-            ("package-download-transaction" function (:arguments ("packages")) nil [82601 82944])
-            ("package--ensure-init-file" function nil nil [82946 85606])
-            ("package-install" function
-               (:user-visible-flag t
-                :arguments ("pkg" "dont-select"))
-                nil [85623 87457])
-            ("package-strip-rcs-id" function (:arguments ("str")) nil [87459 87808])
-            ("declare-function" code nil nil [87810 87868])
-            ("package-install-from-buffer" function (:user-visible-flag t) nil [87885 89384])
-            ("package-install-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [89401 89848])
-            ("package-install-selected-packages" function (:user-visible-flag t) nil [89865 91141])
-            ("package--newest-p" function (:arguments ("pkg")) nil [91166 91335])
-            ("package-delete" function
-               (:user-visible-flag t
-                :arguments ("pkg-desc" "force" "nosave"))
-                nil [91337 94881])
-            ("package-reinstall" function
-               (:user-visible-flag t
-                :arguments ("pkg"))
-                nil [94898 95394])
-            ("package-autoremove" function (:user-visible-flag t) nil [95411 96414])
-            ("describe-package" function
-               (:user-visible-flag t
-                :arguments ("package"))
-                nil [96467 97906])
-            ("package-help-section-name" variable
-               (:default-value (quote ((t :inherit (bold font-lock-function-name-face))))
-                :type "face")
-                nil [97908 98078])
-            ("package--print-help-section" function (:arguments ("name" "strings")) nil [98080 98527])
-            ("declare-function" code nil nil [98529 98589])
-            ("describe-package-1" function (:arguments ("pkg")) nil [98591 108074])
-            ("package-install-button-action" function (:arguments ("button")) nil [108076 108406])
-            ("package-delete-button-action" function (:arguments ("button")) nil [108408 108731])
-            ("package-keyword-button-action" function (:arguments ("button")) nil [108733 108893])
-            ("package-make-button" function (:arguments ("text" "props")) nil [108895 109364])
-            ("package-menu-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map tabulated-list-mode-map) (define-key map "
" (quote package-menu-describe-package)) (define-key map "u" (quote package-menu-mark-unmark)) (define-key map "" (quote package-menu-backup-unmark)) (define-key map "d" (quote package-menu-mark-delete)) (define-key map "i" (quote package-menu-mark-install)) (define-key map "U" (quote package-menu-mark-upgrades)) (define-key map "r" (quote package-menu-refresh)) (define-key map "f" (quote package-menu-filter)) (define-key map "~" (quote package-menu-mark-obsolete-for-deletion)) (define-key map "x" (quote package-menu-execute)) (define-key map "h" (quote package-menu-quick-help)) (define-key map "H" (function package-menu-hide-package)) (define-key map "?" (quote package-menu-describe-package)) (define-key map "(" (function package-menu-toggle-hiding)) map)) nil [109393 110311])
-            ("easy-menu-define" code nil nil [110313 112125])
-            ("package-menu--new-package-list" variable nil nil [112127 112246])
-            ("package-menu--transaction-status" variable nil nil [112248 112346])
-            ("define-derived-mode" code nil nil [112348 113280])
-            ("package--push" function (:arguments ("pkg-desc" "status" "listname")) nil [113282 113650])
-            ("package-list-unversioned" variable nil nil [113652 113766])
-            ("package-list-unsigned" variable nil nil [113768 113883])
-            ("package--emacs-version-list" variable (:default-value (version-to-list emacs-version)) nil [113885 113985])
-            ("package--incompatible-p" function (:arguments ("pkg" "shallow")) nil [113987 115157])
-            ("package-desc-status" function (:arguments ("pkg-desc")) nil [115159 116821])
-            ("package-menu--hide-packages" variable (:default-value t) nil [116823 117047])
-            ("package-menu-toggle-hiding" function (:user-visible-flag t) nil [117049 117538])
-            ("package--remove-hidden" function (:arguments ("pkg-list")) nil [117540 119516])
-            ("package-hidden-regexps" variable nil nil [119518 119946])
-            ("package-menu--refresh" function (:arguments ("packages" "keywords")) nil [119948 122143])
-            ("package-all-keywords" function nil nil [122145 122408])
-            ("package--mapc" function (:arguments ("function" "packages")) nil [122410 123669])
-            ("package--has-keyword-p" function (:arguments ("desc" "keywords")) nil [123671 124261])
-            ("package-menu--generate" function (:arguments ("remember-pos" "packages" "keywords")) nil [124263 125063])
-            ("package-menu--print-info" function (:arguments ("pkg")) nil [125065 125298])
-            ("make-obsolete" code nil nil [125299 125395])
-            ("package-name" variable
-               (:default-value (quote ((t :inherit link)))
-                :type "face")
-                nil [125422 125537])
-            ("package-description" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [125539 125680])
-            ("package-status-built-in" variable
-               (:default-value (quote ((t :inherit font-lock-builtin-face)))
-                :type "face")
-                nil [125758 125912])
-            ("package-status-external" variable
-               (:default-value (quote ((t :inherit package-status-built-in)))
-                :type "face")
-                nil [125914 126069])
-            ("package-status-available" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [126071 126212])
-            ("package-status-new" variable
-               (:default-value (quote ((t :inherit (bold package-status-available))))
-                :type "face")
-                nil [126214 126367])
-            ("package-status-held" variable
-               (:default-value (quote ((t :inherit font-lock-constant-face)))
-                :type "face")
-                nil [126369 126516])
-            ("package-status-disabled" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [126518 126672])
-            ("package-status-installed" variable
-               (:default-value (quote ((t :inherit font-lock-comment-face)))
-                :type "face")
-                nil [126674 126830])
-            ("package-status-dependency" variable
-               (:default-value (quote ((t :inherit package-status-installed)))
-                :type "face")
-                nil [126832 126992])
-            ("package-status-unsigned" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [126994 127148])
-            ("package-status-incompat" variable
-               (:default-value (quote ((t :inherit error)))
-                :type "face")
-                nil [127150 127287])
-            ("package-status-avail-obso" variable
-               (:default-value (quote ((t :inherit package-status-incompat)))
-                :type "face")
-                nil [127289 127448])
-            ("package-menu--print-info-simple" function (:arguments ("pkg")) nil [127478 129176])
-            ("package-menu--old-archive-contents" variable nil nil [129178 129283])
-            ("package-menu-refresh" function (:user-visible-flag t) nil [129285 129757])
-            ("package-menu-hide-package" function (:user-visible-flag t) nil [129759 130921])
-            ("package-menu-describe-package" function
-               (:user-visible-flag t
-                :arguments ("button"))
-                nil [130923 131299])
-            ("package-menu-mark-delete" function
-               (:user-visible-flag t
-                :arguments ("_num"))
-                nil [131327 131617])
-            ("package-menu-mark-install" function
-               (:user-visible-flag t
-                :arguments ("_num"))
-                nil [131619 131897])
-            ("package-menu-mark-unmark" function
-               (:user-visible-flag t
-                :arguments ("_num"))
-                nil [131899 132061])
-            ("package-menu-backup-unmark" function (:user-visible-flag t) nil [132063 132225])
-            ("package-menu-mark-obsolete-for-deletion" function (:user-visible-flag t) nil [132227 132532])
-            ("package--quick-help-keys" variable (:default-value (quote (("install," "delete," "unmark," ("execute" . 1)) ("next," "previous") ("Hide-package," "(-toggle-hidden") ("refresh-contents," "g-redisplay," "filter," "help")))) nil [132534 132744])
-            ("package--prettify-quick-help-key" function (:arguments ("desc")) nil [132746 133247])
-            ("package-menu-quick-help" function (:user-visible-flag t) nil [133249 133527])
-            ("define-obsolete-function-alias" code nil nil [133529 133631])
-            ("package-menu-get-status" function nil nil [133633 133821])
-            ("package-archive-priority" function (:arguments ("archive")) nil [133823 134084])
-            ("package-desc-priority-version" function (:arguments ("pkg-desc")) nil [134086 134424])
-            ("package-menu--find-upgrades" function nil nil [134426 135427])
-            ("package-menu--mark-upgrades-pending" variable nil nil [135429 135539])
-            ("package-menu--mark-upgrades-1" function nil nil [135541 136539])
-            ("package-menu-mark-upgrades" function (:user-visible-flag t) nil [136541 137193])
-            ("package-menu--list-to-prompt" function (:arguments ("packages")) nil [137195 137777])
-            ("package-menu--prompt-transaction-p" function (:arguments ("delete" "install" "upgrade")) nil [137779 138369])
-            ("package-menu--partition-transaction" function (:arguments ("install" "delete")) nil [138371 139074])
-            ("package-menu--perform-transaction" function (:arguments ("install-list" "delete-list")) nil [139076 140176])
-            ("package--update-selected-packages" function (:arguments ("add" "remove")) nil [140178 140846])
-            ("package-menu-execute" function
-               (:user-visible-flag t
-                :arguments ("noquery"))
-                nil [140848 143193])
-            ("package-menu--version-predicate" function (:arguments ("A" "B")) nil [143195 143429])
-            ("package-menu--status-predicate" function (:arguments ("A" "B")) nil [143431 144530])
-            ("package-menu--description-predicate" function (:arguments ("A" "B")) nil [144532 144735])
-            ("package-menu--name-predicate" function (:arguments ("A" "B")) nil [144737 144886])
-            ("package-menu--archive-predicate" function (:arguments ("A" "B")) nil [144888 145034])
-            ("package-menu--populate-new-package-list" function nil nil [145036 145500])
-            ("package-menu--find-and-notify-upgrades" function nil nil [145502 145912])
-            ("package-menu--post-refresh" function nil nil [145914 146642])
-            ("package-menu--mark-or-notify-upgrades" function nil nil [146644 147265])
-            ("list-packages" function
-               (:user-visible-flag t
-                :arguments ("no-fetch"))
-                nil [147282 148546])
-            ("defalias" code nil nil [148563 148611])
-            ("package-show-package-list" function
-               (:user-visible-flag t
-                :arguments ("packages" "keywords"))
-                nil [148634 149305])
-            ("package-menu-filter" function
-               (:user-visible-flag t
-                :arguments ("keyword"))
-                nil [149420 150046])
-            ("package-list-packages-no-fetch" function (:user-visible-flag t) nil [150048 150274])
-            ("package" package nil nil [150276 150294]))          
-      :file "package.el"
-      :pointmax 150321
-      :fsize 150320
-      :lastmodtime '(23525 29543 0 0)
-      :unmatched-syntax '((close-paren 6406 . 6407) (symbol 6374 . 6391) (open-paren 6373 . 6374) (close-paren 6371 . 6372) (symbol 6336 . 6353) (open-paren 6335 . 6336) (close-paren 6333 . 6334) (symbol 6298 . 6315) (open-paren 6297 . 6298)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("float-pi" variable
-               (:constant-flag t
-                :default-value (* 4 (atan 1)))
-                nil [1068 1136])
-            ("pi" variable
-               (:constant-flag t
-                :default-value float-pi)
-                nil [1137 1215])
-            ("internal-make-var-non-special" code nil nil [1216 1251])
-            ("float-e" variable
-               (:constant-flag t
-                :default-value (exp 1))
-                nil [1253 1312])
-            ("degrees-to-radians" variable
-               (:constant-flag t
-                :default-value (/ float-pi 180.0))
-                nil [1314 1405])
-            ("radians-to-degrees" variable
-               (:constant-flag t
-                :default-value (/ 180.0 float-pi))
-                nil [1406 1496])
-            ("degrees-to-radians" function (:arguments ("x")) nil [1567 1672])
-            ("radians-to-degrees" function (:arguments ("x")) nil [1673 1778])
-            ("lisp-float-type" package nil nil [1780 1806]))          
-      :file "float-sup.el"
-      :pointmax 1835
-      :fsize 1834
-      :lastmodtime '(23525 29542 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "easymenu.el"
-      :fsize 28289
-      :lastmodtime '(23525 29540 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1632 1649])
-            ("find-function" customgroup (:user-visible-flag t) nil [1673 1807])
-            ("find-function-space-re" variable
-               (:constant-flag t
-                :default-value "\\(?:\\s-\\|
-\\|;.*
-\\)+")
-                nil [1809 1871])
-            ("find-function-regexp" variable (:default-value (concat "^\\s-*(\\(def\\(ine-skeleton\\|ine-generic-mode\\|ine-derived-mode\\|ine\\(?:-global\\)?-minor-mode\\|ine-compilation-mode\\|un-cvs-mode\\|foo\\|\\(?:[^icfgv]\\|g[^r]\\)\\(\\w\\|\\s_\\)+\\*?\\)\\|easy-mmode-define-[a-z-]+\\|easy-menu-define\\|menu-bar-make-toggle\\)" find-function-space-re "\\('\\|(quote \\)?%s\\(\\s-\\|$\\|[()]\\)")) nil [1873 2801])
-            ("find-variable-regexp" variable (:default-value (concat "^\\s-*(\\(def[^fumag]\\(\\w\\|\\s_\\)+\\*?\\|easy-mmode-def\\(map\\|syntax\\)\\|easy-menu-define\\)" find-function-space-re "%s\\(\\s-\\|$\\)")) nil [2803 3374])
-            ("find-face-regexp" variable (:default-value (concat "^\\s-*(defface" find-function-space-re "%s\\(\\s-\\|$\\)")) nil [3376 3739])
-            ("find-feature-regexp" variable (:default-value (concat ";;; Code:")) nil [3741 4274])
-            ("find-alias-regexp" variable (:default-value "(defalias +'%s") nil [4276 4543])
-            ("find-function-regexp-alist" variable (:default-value (quote ((nil . find-function-regexp) (defvar . find-variable-regexp) (defface . find-face-regexp) (feature . find-feature-regexp) (defalias . find-alias-regexp)))) nil [4545 5127])
-            ("put" code nil nil [5128 5185])
-            ("find-function-source-path" variable nil nil [5187 5427])
-            ("find-function-recenter-line" variable (:default-value 1) nil [5429 5750])
-            ("find-function-after-hook" variable nil nil [5752 5950])
-            ("find-library-suffixes" function nil nil [5968 6153])
-            ("find-library--load-name" function (:arguments ("library")) nil [6155 6475])
-            ("find-library-name" function (:arguments ("library")) nil [6477 7580])
-            ("find-library--from-load-history" function (:arguments ("library")) nil [7582 8189])
-            ("find-function-C-source-directory" variable (:default-value (let ((dir (expand-file-name "src" source-directory))) (if (file-accessible-directory-p dir) dir))) nil [8191 8483])
-            ("declare-function" code nil nil [8485 8542])
-            ("find-function-advised-original" function (:arguments ("func")) nil [8544 8990])
-            ("find-function-C-source" function (:arguments ("fun-or-var" "file" "type")) nil [8992 10265])
-            ("find-library" function
-               (:user-visible-flag t
-                :arguments ("library"))
-                nil [10282 10591])
-            ("read-library-name" function nil nil [10593 11959])
-            ("find-library-other-window" function
-               (:user-visible-flag t
-                :arguments ("library"))
-                nil [11976 12338])
-            ("find-library-other-frame" function
-               (:user-visible-flag t
-                :arguments ("library"))
-                nil [12355 12713])
-            ("find-function-search-for-symbol" function (:arguments ("symbol" "type" "library")) nil [12730 15837])
-            ("find-function-library" function (:arguments ("function" "lisp-only" "verbose")) nil [15839 17659])
-            ("find-function-noselect" function (:arguments ("function" "lisp-only")) nil [17676 18536])
-            ("find-function-read" function (:arguments ("type")) nil [18538 19764])
-            ("find-function-do-it" function (:arguments ("symbol" "type" "switch-fn")) nil [19766 20652])
-            ("find-function" function
-               (:user-visible-flag t
-                :arguments ("function"))
-                nil [20669 21265])
-            ("find-function-other-window" function
-               (:user-visible-flag t
-                :arguments ("function"))
-                nil [21282 21539])
-            ("find-function-other-frame" function
-               (:user-visible-flag t
-                :arguments ("function"))
-                nil [21556 21810])
-            ("find-variable-noselect" function (:arguments ("variable" "file")) nil [21827 22575])
-            ("find-variable" function
-               (:user-visible-flag t
-                :arguments ("variable"))
-                nil [22592 23198])
-            ("find-variable-other-window" function
-               (:user-visible-flag t
-                :arguments ("variable"))
-                nil [23215 23484])
-            ("find-variable-other-frame" function
-               (:user-visible-flag t
-                :arguments ("variable"))
-                nil [23501 23767])
-            ("find-definition-noselect" function (:arguments ("symbol" "type" "file")) nil [23784 24590])
-            ("find-face-definition" function
-               (:user-visible-flag t
-                :arguments ("face"))
-                nil [24741 25363])
-            ("find-function-on-key-do-it" function (:arguments ("key" "find-fn")) nil [25365 26445])
-            ("find-function-on-key" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [26462 26702])
-            ("find-function-on-key-other-window" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [26719 26962])
-            ("find-function-on-key-other-frame" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [26979 27219])
-            ("find-function-at-point" function (:user-visible-flag t) nil [27236 27446])
-            ("find-variable-at-point" function (:user-visible-flag t) nil [27463 27693])
-            ("find-function-setup-keys" function nil nil [27710 28321])
-            ("find-func" package nil nil [28323 28343]))          
-      :file "find-func.el"
-      :pointmax 28372
-      :fsize 28371
-      :lastmodtime '(23525 29542 0 0)
-      :unmatched-syntax '((close-paren 1649 . 1650) (symbol 1614 . 1631) (open-paren 1613 . 1614)))
-    (semanticdb-table "semanticdb-table"
-      :file "syntax.el"
-      :fsize 28594
-      :lastmodtime '(23525 29544 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("macroexp" include nil nil [1937 1956])
-            ("cl-lib" include nil nil [1957 1974])
-            ("pcase" include nil nil [1994 2010])
-            ("edebug" customgroup (:user-visible-flag t) nil [2026 2106])
-            ("edebug-setup-hook" variable nil nil [2109 2464])
-            ("edebug-all-defs" variable nil nil [2686 3190])
-            ("edebug-all-forms" variable nil nil [3412 3683])
-            ("edebug-eval-macro-args" variable nil nil [3685 4132])
-            ("edebug-max-depth" variable (:default-value 150) nil [4134 4659])
-            ("edebug-save-windows" variable (:default-value t) nil [4661 5101])
-            ("edebug-save-displayed-buffer-points" variable nil nil [5103 5662])
-            ("edebug-initial-mode" variable (:default-value (quote step)) nil [5664 6129])
-            ("edebug-trace" variable nil nil [6131 6491])
-            ("edebug-test-coverage" variable nil nil [6493 6882])
-            ("edebug-continue-kbd-macro" variable nil nil [6884 7074])
-            ("edebug-print-length" variable (:default-value 50) nil [7077 7225])
-            ("edebug-print-level" variable (:default-value 50) nil [7226 7372])
-            ("edebug-print-circle" variable (:default-value t) nil [7373 7520])
-            ("edebug-unwrap-results" variable nil nil [7522 7912])
-            ("edebug-on-error" variable (:default-value t) nil [7914 8545])
-            ("edebug-on-quit" variable (:default-value t) nil [8547 8668])
-            ("edebug-global-break-condition" variable nil nil [8670 8879])
-            ("edebug-sit-for-seconds" variable (:default-value 1) nil [8881 9027])
-            ("edebug-sit-on-break" variable (:default-value t) nil [9029 9192])
-            ("get-edebug-spec" function (:arguments ("symbol")) nil [9220 9606])
-            ("edebug-basic-spec" function (:arguments ("spec")) nil [9623 10045])
-            ("edebug-lambda-list-keywordp" function (:arguments ("object")) nil [10062 10280])
-            ("edebug-last-sexp" function nil nil [10283 10538])
-            ("edebug-window-list" function nil nil [10540 10762])
-            ("edebug-two-window-p" function nil nil [10778 10938])
-            ("edebug-sort-alist" function (:arguments ("alist" "function")) nil [10940 11189])
-            ("edebug-save-restriction" function (:arguments ("body")) nil [11205 11841])
-            ("edebug-trace-buffer" variable
-               (:constant-flag t
-                :default-value "*edebug-trace*")
-                nil [11856 11948])
-            ("edebug-pop-to-buffer" function (:arguments ("buffer" "window")) nil [11950 13271])
-            ("edebug-get-displayed-buffer-points" function nil nil [13293 13578])
-            ("edebug-set-buffer-points" function (:arguments ("buffer-points")) nil [13581 13891])
-            ("edebug-current-windows" function (:arguments ("which-windows")) nil [13893 14409])
-            ("edebug-set-windows" function (:arguments ("window-info")) nil [14411 15231])
-            ("edebug--read" function (:arguments ("orig" "stream")) nil [15393 16342])
-            ("edebug-result" variable nil nil [16344 16366])
-            ("edebug-eval-defun" function
-               (:user-visible-flag t
-                :arguments ("edebug-it"))
-                nil [16525 19039])
-            ("defalias" code nil nil [19057 19109])
-            ("edebug-eval-top-level-form" function (:user-visible-flag t) nil [19126 20257])
-            ("edebug-read-top-level-form" function nil nil [20260 20511])
-            ("defalias" code nil nil [20550 20596])
-            ("edebug-all-defs" function (:user-visible-flag t) nil [20613 20828])
-            ("edebug-all-forms" function (:user-visible-flag t) nil [20846 21053])
-            ("edebug-install-read-eval-functions" function nil nil [21056 21233])
-            ("edebug-uninstall-read-eval-functions" function nil nil [21235 21401])
-            ("defvar-local" code nil nil [21541 22060])
-            ("cl-defstruct" code nil nil [22062 22361])
-            ("edebug-set-form-data-entry" function (:arguments ("entry" "name" "begin" "end")) nil [22363 22598])
-            ("edebug-get-form-data-entry" function (:arguments ("pnt" "end-point")) nil [22600 23310])
-            ("edebug-form-data-symbol" function nil nil [23421 23695])
-            ("edebug-make-top-form-data-entry" function (:arguments ("new-entry")) nil [23697 23897])
-            ("edebug-clear-form-data-entry" function (:arguments ("entry")) nil [23899 24410])
-            ("edebug-syntax-error" function (:arguments ("args")) nil [24434 24557])
-            ("edebug-read-syntax-table" variable
-               (:constant-flag t
-                :default-value (let ((table (make-char-table (quote syntax-table) (quote symbol))) (i 0)) (while (< i 33) (aset table i (quote space)) (setq i (1+ i))) (aset table 40 (quote lparen)) (aset table 41 (quote rparen)) (aset table 39 (quote quote)) (aset table 96 (quote backquote)) (aset table 44 (quote comma)) (aset table 34 (quote string)) (aset table 63 (quote char)) (aset table 91 (quote lbracket)) (aset table 93 (quote rbracket)) (aset table 46 (quote dot)) (aset table 35 (quote hash)) table))
-                nil [24560 25340])
-            ("edebug-next-token-class" function nil nil [25342 25872])
-            ("edebug-skip-whitespace" function nil nil [25875 26141])
-            ("edebug-read-sexp" function nil nil [26196 27118])
-            ("edebug-offsets" variable nil nil [27467 27494])
-            ("edebug-offsets-stack" variable nil nil [27607 27640])
-            ("edebug-current-offset" variable nil nil [27641 27675])
-            ("edebug-read-objects" variable nil nil [27907 27939])
-            ("edebug-read-dotted-list" variable nil nil [28108 28144])
-            ("edebug-initialize-offsets" function nil nil [28146 28256])
-            ("edebug-store-before-offset" function (:arguments ("point")) nil [28258 28835])
-            ("edebug-store-after-offset" function (:arguments ("point")) nil [28837 29769])
-            ("edebug-ignore-offset" function nil nil [29771 29911])
-            ("edebug-storing-offsets" function (:arguments ("point" "body")) nil [29913 30131])
-            ("edebug-read-alist" variable
-               (:constant-flag t
-                :default-value (quote ((symbol . edebug-read-symbol) (lparen . edebug-read-list) (string . edebug-read-string) (quote . edebug-read-quote) (backquote . edebug-read-backquote) (comma . edebug-read-comma) (lbracket . edebug-read-vector) (hash . edebug-read-special))))
-                nil [30231 30538])
-            ("edebug-read-storing-offsets" function (:arguments ("stream")) nil [30540 30833])
-            ("defalias" code nil nil [30835 30872])
-            ("defalias" code nil nil [30873 30910])
-            ("edebug-read-quote" function (:arguments ("stream")) nil [30912 31098])
-            ("edebug-read-backquote" function (:arguments ("stream")) nil [31100 31284])
-            ("edebug-read-comma" function (:arguments ("stream")) nil [31286 31855])
-            ("edebug-read-special" function (:arguments ("stream")) nil [31857 33707])
-            ("edebug-read-list" function (:arguments ("stream")) nil [33709 34391])
-            ("edebug-read-vector" function (:arguments ("stream")) nil [34393 34682])
-            ("edebug-dotted-spec" variable nil nil [34753 34848])
-            ("edebug-new-cursor" function (:arguments ("expressions" "offsets")) nil [34850 35060])
-            ("edebug-set-cursor" function (:arguments ("cursor" "expressions" "offsets")) nil [35062 35268])
-            ("edebug-copy-cursor" function (:arguments ("cursor")) nil [35270 35396])
-            ("edebug-cursor-expressions" function (:arguments ("cursor")) nil [35398 35458])
-            ("edebug-cursor-offsets" function (:arguments ("cursor")) nil [35459 35515])
-            ("edebug-empty-cursor" function (:arguments ("cursor")) nil [35517 35645])
-            ("edebug-top-element" function (:arguments ("cursor")) nil [35647 35773])
-            ("edebug-top-element-required" function (:arguments ("cursor" "error")) nil [35775 36125])
-            ("edebug-top-offset" function (:arguments ("cursor")) nil [36127 36251])
-            ("edebug-move-cursor" function (:arguments ("cursor")) nil [36253 36729])
-            ("edebug-before-offset" function (:arguments ("cursor")) nil [36732 37060])
-            ("edebug-after-offset" function (:arguments ("cursor")) nil [37062 37266])
-            ("edebug-top-window-data" variable nil nil [38461 38492])
-            ("edebug-&optional" variable nil nil [38494 38519])
-            ("edebug-&rest" variable nil nil [38520 38541])
-            ("edebug-gate" variable nil nil [38542 38566])
-            ("edebug-def-name" variable nil nil [38605 38633])
-            ("edebug-old-def-name" variable nil nil [38681 38713])
-            ("edebug-error-point" variable nil nil [38757 38788])
-            ("edebug-best-error" variable nil nil [38789 38819])
-            ("edebug-read-and-maybe-wrap-form" function nil nil [38822 39797])
-            ("edebug-read-and-maybe-wrap-form1" function nil nil [39800 42094])
-            ("edebug-def-args" variable nil nil [42097 42121])
-            ("edebug-def-interactive" variable nil nil [42147 42178])
-            ("edebug-inside-func" variable nil nil [42218 42245])
-            ("edebug-interactive-p-name" function nil nil [42355 42564])
-            ("edebug-wrap-def-body" function (:arguments ("forms")) nil [42567 42818])
-            ("edebug-make-enter-wrapper" function (:arguments ("forms")) nil [42821 43549])
-            ("edebug-form-begin-marker" variable nil nil [43552 43585])
-            ("edebug-offset-index" variable nil nil [43625 43653])
-            ("edebug-offset-list" variable nil nil [43689 43716])
-            ("edebug-inc-offset" function (:arguments ("offset")) nil [43750 44073])
-            ("edebug-make-before-and-after-form" function (:arguments ("before-index" "form" "after-index")) nil [44076 44445])
-            ("edebug-make-after-form" function (:arguments ("form" "after-index")) nil [44447 44596])
-            ("edebug-unwrap" function (:arguments ("sexp")) nil [44599 45099])
-            ("edebug-unwrap*" function (:arguments ("sexp")) nil [45101 45391])
-            ("edebug-defining-form" function (:arguments ("cursor" "form-begin" "form-end" "speclist")) nil [45394 45850])
-            ("edebug-make-form-wrapper" function (:arguments ("cursor" "form-begin" "form-end" "speclist")) nil [45852 49169])
-            ("edebug-clear-frequency-count" function (:arguments ("name")) nil [49172 49420])
-            ("edebug-clear-coverage" function (:arguments ("name")) nil [49423 49657])
-            ("edebug-form" function (:arguments ("cursor")) nil [49660 51162])
-            ("edebug-forms" function (:arguments ("cursor")) nil [51165 51234])
-            ("edebug-sexps" function (:arguments ("cursor")) nil [51235 51304])
-            ("edebug-list-form-args" function (:arguments ("head" "cursor")) nil [51306 52119])
-            ("edebug-list-form" function (:arguments ("cursor")) nil [52122 53692])
-            ("edebug-matching-depth" variable nil nil [53718 53750])
-            ("edebug-no-match" function (:arguments ("cursor" "args")) nil [53975 54479])
-            ("edebug-match" function (:arguments ("cursor" "specs")) nil [54482 54802])
-            ("edebug-match-one-spec" function (:arguments ("cursor" "spec")) nil [54805 55131])
-            ("edebug-match-specs" function (:arguments ("cursor" "specs" "remainder-handler")) nil [55134 57643])
-            ("dolist" code nil nil [57926 58750])
-            ("edebug-match-symbol" function (:arguments ("cursor" "symbol")) nil [58752 59642])
-            ("edebug-match-sexp" function (:arguments ("cursor")) nil [59645 59780])
-            ("edebug-match-form" function (:arguments ("cursor")) nil [59782 59846])
-            ("defalias" code nil nil [59848 59897])
-            ("edebug-match-body" function (:arguments ("cursor")) nil [60003 60062])
-            ("edebug-match-&optional" function (:arguments ("cursor" "specs")) nil [60064 60218])
-            ("edebug-&optional-wrapper" function (:arguments ("cursor" "specs" "remainder-handler")) nil [60220 60748])
-            ("edebug-&rest-wrapper" function (:arguments ("cursor" "specs" "remainder-handler")) nil [60751 60987])
-            ("edebug-match-&rest" function (:arguments ("cursor" "specs")) nil [60989 61221])
-            ("edebug-match-&or" function (:arguments ("cursor" "specs")) nil [61224 62098])
-            ("edebug-match-&not" function (:arguments ("cursor" "specs")) nil [62101 62463])
-            ("def-edebug-spec" code nil nil [62488 62528])
-            ("edebug-match-&key" function (:arguments ("cursor" "specs")) nil [62530 62948])
-            ("edebug-match-gate" function (:arguments ("_cursor")) nil [62951 63079])
-            ("edebug-match-list" function (:arguments ("cursor" "specs")) nil [63082 64669])
-            ("edebug-match-sublist" function (:arguments ("cursor" "specs")) nil [64672 65206])
-            ("edebug-match-string" function (:arguments ("cursor" "spec")) nil [65209 65563])
-            ("edebug-match-nil" function (:arguments ("cursor")) nil [65565 65751])
-            ("edebug-match-function" function (:arguments ("_cursor")) nil [65754 65858])
-            ("edebug-match-&define" function (:arguments ("cursor" "specs")) nil [65860 66387])
-            ("edebug-match-lambda-expr" function (:arguments ("cursor")) nil [66389 67372])
-            ("edebug-match-name" function (:arguments ("cursor")) nil [67375 67909])
-            ("edebug-match-colon-name" function (:arguments ("_cursor" "spec")) nil [67911 68172])
-            ("edebug-match-cl-generic-method-args" function (:arguments ("cursor")) nil [68174 68558])
-            ("edebug-match-arg" function (:arguments ("cursor")) nil [68560 68980])
-            ("edebug-match-def-form" function (:arguments ("cursor")) nil [68982 69364])
-            ("edebug-match-def-body" function (:arguments ("cursor")) nil [69366 69858])
-            ("edebug-spec-p" function (:arguments ("object")) nil [69997 70166])
-            ("def-edebug-spec" code nil nil [70168 70339])
-            ("def-edebug-spec" code nil nil [70341 70480])
-            ("def-edebug-spec" code nil nil [70482 70852])
-            ("def-edebug-spec" code nil nil [70968 70996])
-            ("def-edebug-spec" code nil nil [71030 71063])
-            ("def-edebug-spec" code nil nil [71064 71121])
-            ("def-edebug-spec" code nil nil [71123 71289])
-            ("def-edebug-spec" code nil nil [71290 71503])
-            ("def-edebug-spec" code nil nil [71505 71542])
-            ("def-edebug-spec" code nil nil [71578 71702])
-            ("def-edebug-spec" code nil nil [71704 71814])
-            ("def-edebug-spec" code nil nil [71816 71880])
-            ("def-edebug-spec" code nil nil [72022 72234])
-            ("def-edebug-spec" code nil nil [72329 72381])
-            ("def-edebug-spec" code nil nil [72452 72515])
-            ("def-edebug-spec" code nil nil [72824 72902])
-            ("def-edebug-spec" code nil nil [72904 72930])
-            ("def-edebug-spec" code nil nil [72932 72975])
-            ("def-edebug-spec" code nil nil [72976 73011])
-            ("def-edebug-spec" code nil nil [73013 73056])
-            ("def-edebug-spec" code nil nil [73058 73156])
-            ("def-edebug-spec" code nil nil [73159 73196])
-            ("def-edebug-spec" code nil nil [73282 73994])
-            ("defalias" code nil nil [74618 74643])
-            ("def-edebug-spec" code nil nil [74681 74719])
-            ("def-edebug-spec" code nil nil [74796 74851])
-            ("def-edebug-spec" code nil nil [74852 74958])
-            ("def-edebug-spec" code nil nil [74983 75023])
-            ("def-edebug-spec" code nil nil [75024 75063])
-            ("edebug-active" variable nil nil [75109 75135])
-            ("edebug-stack" variable nil nil [75171 75196])
-            ("edebug-stack-depth" variable (:default-value -1) nil [75284 75314])
-            ("edebug-offset-indices" variable nil nil [75352 75386])
-            ("edebug-entered" variable nil nil [75538 75690])
-            ("edebug-debugger" variable
-               (:constant-flag t
-                :default-value (quote edebug))
-                nil [75720 75880])
-            ("edebug-function" variable nil nil [75951 75975])
-            ("edebug-data" variable nil nil [76021 76041])
-            ("edebug-def-mark" variable nil nil [76077 76101])
-            ("edebug-freq-count" variable nil nil [76132 76158])
-            ("edebug-coverage" variable nil nil [76193 76217])
-            ("edebug-buffer" variable nil nil [76274 76296])
-            ("edebug-execution-mode" variable (:default-value (quote step)) nil [76333 76369])
-            ("edebug-next-execution-mode" variable nil nil [76405 76444])
-            ("edebug-outside-debug-on-error" variable nil nil [76482 76520])
-            ("edebug-outside-debug-on-quit" variable nil nil [76559 76596])
-            ("edebug-signal" function (:arguments ("signal-name" "signal-data")) nil [76657 77730])
-            ("edebug-enter" function (:arguments ("function" "args" "body")) nil [77753 80259])
-            ("edebug-var-status" function (:arguments ("var")) nil [80261 80733])
-            ("edebug-restore-status" function (:arguments ("var" "status")) nil [80735 81140])
-            ("edebug--enter-trace" function (:arguments ("function" "args" "body")) nil [81142 81470])
-            ("def-edebug-spec" code nil nil [81472 81516])
-            ("edebug-tracing" function (:arguments ("msg" "body")) nil [81518 81900])
-            ("edebug-print-trace-before" function (:arguments ("msg")) nil [81902 82140])
-            ("edebug-print-trace-after" function (:arguments ("msg")) nil [82142 82378])
-            ("edebug-slow-before" function (:arguments ("before-index")) nil [82382 82925])
-            ("edebug-fast-before" function (:arguments ("_before-index")) nil [82927 82989])
-            ("edebug-slow-after" function (:arguments ("_before-index" "after-index" "value")) nil [82991 83650])
-            ("edebug-fast-after" function (:arguments ("_before-index" "_after-index" "value")) nil [83652 83758])
-            ("edebug-run-slow" function nil nil [83760 83880])
-            ("edebug-run-fast" function nil nil [83908 84028])
-            ("edebug-run-slow" code nil nil [84030 84047])
-            ("edebug--update-coverage" function (:arguments ("after-index" "value")) nil [84050 84410])
-            ("edebug-breakpoints" variable nil nil [84456 84483])
-            ("edebug-break-data" variable nil nil [84484 84510])
-            ("edebug-break" variable nil nil [84546 84567])
-            ("edebug-global-break" variable nil nil [84596 84624])
-            ("edebug-break-condition" variable nil nil [84660 84691])
-            ("edebug-break-result" variable nil nil [84734 84766])
-            ("edebug-global-break-result" variable nil nil [84767 84806])
-            ("edebug-debugger" function (:arguments ("offset-index" "arg-mode" "value")) nil [84809 86393])
-            ("edebug-point" variable nil nil [86765 86786])
-            ("edebug-outside-buffer" variable nil nil [86816 86846])
-            ("edebug-outside-point" variable nil nil [86886 86915])
-            ("edebug-outside-mark" variable nil nil [86946 86974])
-            ("edebug-window-data" variable nil nil [87004 87031])
-            ("edebug-outside-windows" variable nil nil [87080 87111])
-            ("edebug-eval-buffer" variable nil nil [87143 87170])
-            ("edebug-outside-d-c-i-n-s-w" variable nil nil [87198 87233])
-            ("edebug-eval-list" variable nil nil [87284 87313])
-            ("edebug-previous-result" variable nil nil [87351 87386])
-            ("defalias" code nil nil [87462 87505])
-            ("edebug--display" function (:arguments ("value" "offset-index" "arg-mode")) nil [87507 87784])
-            ("edebug--display-1" function (:arguments ("value" "offset-index" "arg-mode")) nil [87786 98237])
-            ("edebug-number-of-recursions" variable nil nil [98240 98278])
-            ("edebug-recursion-depth" variable nil nil [98361 98394])
-            ("edebug-outside-match-data" variable nil nil [98485 98519])
-            ("edebug-backtrace-buffer" variable nil nil [98551 98583])
-            ("edebug-inside-windows" variable nil nil [98619 98649])
-            ("edebug-interactive-p" variable nil nil [98650 98679])
-            ("edebug--recursive-edit" function (:arguments ("arg-mode")) nil [98681 101803])
-            ("edebug-arrow-alist" variable
-               (:constant-flag t
-                :default-value (quote ((Continue-fast . "=") (Trace-fast . "-") (continue . ">") (trace . "->") (step . "=>") (next . "=>") (go . "<>") (Go-nonstop . ".."))))
-                nil [101837 102090])
-            ("edebug-overlay-arrow" function nil nil [102092 102522])
-            ("edebug-toggle-save-all-windows" function (:user-visible-flag t) nil [102525 103056])
-            ("edebug-changing-windows" function (:arguments ("body")) nil [103058 103506])
-            ("edebug-toggle-save-selected-window" function (:user-visible-flag t) nil [103508 104516])
-            ("edebug-toggle-save-windows" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [104518 104802])
-            ("edebug-where" function (:user-visible-flag t) nil [104804 105229])
-            ("edebug-view-outside" function (:user-visible-flag t) nil [105231 105710])
-            ("edebug-bounce-point" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [105713 106486])
-            ("edebug-display-buffer-list" variable nil nil [106635 106738])
-            ("edebug-display-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [106741 107168])
-            ("edebug-find-stop-point" function nil nil [107204 108358])
-            ("edebug-next-breakpoint" function (:user-visible-flag t) nil [108361 109581])
-            ("edebug-modify-breakpoint" function (:arguments ("flag" "condition" "temporary")) nil [109584 111014])
-            ("edebug-set-breakpoint" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [111016 111204])
-            ("edebug-unset-breakpoint" function (:user-visible-flag t) nil [111206 111331])
-            ("edebug-set-global-break-condition" function
-               (:user-visible-flag t
-                :arguments ("expression"))
-                nil [111334 111831])
-            ("edebug-set-mode" function (:arguments ("mode" "shortmsg" "msg")) nil [111864 112274])
-            ("defalias" code nil nil [112277 112331])
-            ("edebug-step-mode" function (:user-visible-flag t) nil [112333 112476])
-            ("edebug-next-mode" function (:user-visible-flag t) nil [112478 112626])
-            ("edebug-go-mode" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [112628 112875])
-            ("edebug-Go-nonstop-mode" function (:user-visible-flag t) nil [112877 113111])
-            ("edebug-trace-mode" function (:user-visible-flag t) nil [113114 113308])
-            ("edebug-Trace-fast-mode" function (:user-visible-flag t) nil [113310 113544])
-            ("edebug-continue-mode" function (:user-visible-flag t) nil [113546 113760])
-            ("edebug-Continue-fast-mode" function (:user-visible-flag t) nil [113762 114013])
-            ("edebug-goto-here" function (:user-visible-flag t) nil [114146 114281])
-            ("edebug-stop" function (:user-visible-flag t) nil [114284 114429])
-            ("edebug-forward" function (:user-visible-flag t) nil [114433 114637])
-            ("edebug-forward-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [114640 115030])
-            ("edebug-step-out" function (:user-visible-flag t) nil [115032 115748])
-            ("edebug-instrument-function" function (:arguments ("func")) nil [115750 117357])
-            ("edebug-instrument-callee" function (:user-visible-flag t) nil [117359 118158])
-            ("edebug-step-in" function (:user-visible-flag t) nil [118161 118589])
-            ("edebug-on-entry" function
-               (:user-visible-flag t
-                :arguments ("function" "flag"))
-                nil [118591 118949])
-            ("cancel-edebug-on-entry" function (:arguments ("function")) nil [118951 119070])
-            ("advice-add" code nil nil [119074 119134])
-            ("edebug--debug-on-entry" function (:arguments ("orig" "function")) nil [119202 119474])
-            ("edebug-top-level-nonstop" function (:user-visible-flag t) nil [119477 119710])
-            ("edebug-initial-mode-alist" variable
-               (:constant-flag t
-                :default-value (quote ((edebug-step-mode . step) (edebug-next-mode . next) (edebug-trace-mode . trace) (edebug-Trace-fast-mode . Trace-fast) (edebug-go-mode . go) (edebug-continue-mode . continue) (edebug-Continue-fast-mode . Continue-fast) (edebug-Go-nonstop-mode . Go-nonstop))))
-                nil [119844 120231])
-            ("edebug-mode-map" variable nil nil [120233 120257])
-            ("edebug-set-initial-mode" function (:user-visible-flag t) nil [120291 121027])
-            ("edebug-outside-excursion" function (:arguments ("body")) nil [121060 122902])
-            ("edebug-eval" function (:arguments ("expr")) nil [122904 122970])
-            ("edebug-safe-eval" function (:arguments ("expr")) nil [122972 123273])
-            ("edebug-report-error" function (:arguments ("value")) nil [123290 123790])
-            ("print-readably" variable nil nil [123792 123815])
-            ("edebug-safe-prin1-to-string" function (:arguments ("value")) nil [123950 124265])
-            ("edebug-compute-previous-result" function (:arguments ("previous-value")) nil [124267 124564])
-            ("edebug-previous-result" function (:user-visible-flag t) nil [124566 124686])
-            ("defalias" code nil nil [124714 124769])
-            ("defalias" code nil nil [124770 124812])
-            ("defalias" code nil nil [124813 124849])
-            ("edebug-eval-expression" function
-               (:user-visible-flag t
-                :arguments ("expr"))
-                nil [124851 125339])
-            ("edebug-eval-last-sexp" function (:user-visible-flag t) nil [125341 125521])
-            ("edebug-eval-print-last-sexp" function (:user-visible-flag t) nil [125523 125980])
-            ("edebug-inhibit-emacs-lisp-mode-bindings" variable nil nil [126005 126222])
-            ("define-obsolete-variable-alias" code nil nil [126224 126335])
-            ("unless" code nil nil [126393 126822])
-            ("edebug-mode-map" variable (:default-value (let ((map (copy-keymap emacs-lisp-mode-map))) (define-key map " " (quote edebug-step-mode)) (define-key map "n" (quote edebug-next-mode)) (define-key map "g" (quote edebug-go-mode)) (define-key map "G" (quote edebug-Go-nonstop-mode)) (define-key map "t" (quote edebug-trace-mode)) (define-key map "T" (quote edebug-Trace-fast-mode)) (define-key map "c" (quote edebug-continue-mode)) (define-key map "C" (quote edebug-Continue-fast-mode)) (define-key map "f" (quote edebug-forward-sexp)) (define-key map "h" (quote edebug-goto-here)) (define-key map "I" (quote edebug-instrument-callee)) (define-key map "i" (quote edebug-step-in)) (define-key map "o" (quote edebug-step-out)) (define-key map "q" (quote top-level)) (define-key map "Q" (quote edebug-top-level-nonstop)) (define-key map "a" (quote abort-recursive-edit)) (define-key map "S" (quote edebug-stop)) (define-key map "b" (quote edebug-set-breakpoint)) (define-key map "u" (quote edebug-unset-breakpoint)) (define-key map "B" (quote edebug-next-breakpoint)) (define-key map "x" (quote edebug-set-conditional-breakpoint)) (define-key map "X" (quote edebug-set-global-break-condition)) (define-key map "r" (quote edebug-previous-result)) (define-key map "e" (quote edebug-eval-expression)) (define-key map "" (quote edebug-eval-last-sexp)) (define-key map "E" (quote edebug-visit-eval-list)) (define-key map "w" (quote edebug-where)) (define-key map "v" (quote edebug-view-outside)) (define-key map "p" (quote edebug-bounce-point)) (define-key map "P" (quote edebug-view-outside)) (define-key map "W" (quote edebug-toggle-save-windows)) (define-key map "?" (quote edebug-help)) (define-key map "d" (quote edebug-backtrace)) (define-key map "-" (quote negative-argument)) (define-key map "=" (quote edebug-temp-display-freq-count)) (define-key map "" (quote edebug-step-mode)) (define-key map "" (quote edebug-next-mode)) (define-key map "" (quote edebug-go-mode)) (define-key map " " (quote edebug-set-breakpoint)) (define-key map "" (quote edebug-unset-breakpoint)) (define-key map "" (lambda nil (interactive) (edebug-set-breakpoint t))) (define-key map "" (quote edebug-where)) map)) nil [126824 129190])
-            ("global-edebug-prefix" variable (:default-value "X") nil [129331 129437])
-            ("global-edebug-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map " " (quote edebug-step-mode)) (define-key map "g" (quote edebug-go-mode)) (define-key map "G" (quote edebug-Go-nonstop-mode)) (define-key map "t" (quote edebug-trace-mode)) (define-key map "T" (quote edebug-Trace-fast-mode)) (define-key map "c" (quote edebug-continue-mode)) (define-key map "C" (quote edebug-Continue-fast-mode)) (define-key map "b" (quote edebug-set-breakpoint)) (define-key map "u" (quote edebug-unset-breakpoint)) (define-key map "x" (quote edebug-set-conditional-breakpoint)) (define-key map "X" (quote edebug-set-global-break-condition)) (define-key map "w" (quote edebug-where)) (define-key map "W" (quote edebug-toggle-save-windows)) (define-key map "q" (quote top-level)) (define-key map "Q" (quote edebug-top-level-nonstop)) (define-key map "a" (quote abort-recursive-edit)) (define-key map "=" (quote edebug-display-freq-count)) map)) nil [129439 130464])
-            ("global-unset-key" code nil nil [130466 130505])
-            ("global-set-key" code nil nil [130506 130561])
-            ("edebug-help" function (:user-visible-flag t) nil [130564 130665])
-            ("edebug--mode-saved-vars" variable nil nil [130667 130703])
-            ("define-minor-mode" code nil nil [130705 132637])
-            ("edebug-kill-buffer" function nil nil [132639 132787])
-            ("edebug-eval-result-list" function nil nil [132890 133169])
-            ("edebug-eval-display-list" function (:arguments ("eval-result-list")) nil [133171 133638])
-            ("edebug-create-eval-buffer" function nil nil [133640 133842])
-            ("edebug-eval-display" function (:arguments ("eval-result-list")) nil [133964 134233])
-            ("edebug-eval-redisplay" function nil nil [134235 134491])
-            ("edebug-visit-eval-list" function (:user-visible-flag t) nil [134493 134667])
-            ("edebug-update-eval-list" function (:user-visible-flag t) nil [134670 135363])
-            ("edebug-delete-eval-item" function (:user-visible-flag t) nil [135366 135705])
-            ("edebug-eval-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map lisp-interaction-mode-map) (define-key map "" (quote edebug-where)) (define-key map "" (quote edebug-delete-eval-item)) (define-key map "" (quote edebug-update-eval-list)) (define-key map "" (quote edebug-eval-last-sexp)) (define-key map "
-" (quote edebug-eval-print-last-sexp)) map)) nil [135709 136178])
-            ("put" code nil nil [136180 136224])
-            ("define-derived-mode" code nil nil [136226 136743])
-            ("edebug" function (:arguments ("arg-mode" "args")) nil [137072 138068])
-            ("edebug-backtrace" function (:user-visible-flag t) nil [138071 139427])
-            ("edebug-trace-display" function (:arguments ("buf-name" "fmt" "args")) nil [139450 140533])
-            ("edebug-trace" function (:arguments ("fmt" "args")) nil [140536 140711])
-            ("edebug-display-freq-count" function (:user-visible-flag t) nil [140892 143285])
-            ("edebug-temp-display-freq-count" function (:user-visible-flag t) nil [143426 143906])
-            ("edebug-toggle" function (:arguments ("variable")) nil [143921 144054])
-            ("easymenu" include nil nil [144173 144192])
-            ("edebug-mode-menus" variable
-               (:constant-flag t
-                :default-value (quote ("Edebug" ["Stop" edebug-stop t] ["Step" edebug-step-mode t] ["Next" edebug-next-mode t] ["Trace" edebug-trace-mode t] ["Trace Fast" edebug-Trace-fast-mode t] ["Continue" edebug-continue-mode t] ["Continue Fast" edebug-Continue-fast-mode t] ["Go" edebug-go-mode t] ["Go Nonstop" edebug-Go-nonstop-mode t] "----" ["Help" edebug-help t] ["Abort" abort-recursive-edit t] ["Quit to Top Level" top-level t] ["Quit Nonstop" edebug-top-level-nonstop t] "----" ("Jumps" ["Forward Sexp" edebug-forward-sexp t] ["Step In" edebug-step-in t] ["Step Out" edebug-step-out t] ["Goto Here" edebug-goto-here t]) ("Breaks" ["Set Breakpoint" edebug-set-breakpoint t] ["Unset Breakpoint" edebug-unset-breakpoint t] ["Set Conditional Breakpoint" edebug-set-conditional-breakpoint t] ["Set Global Break Condition" edebug-set-global-break-condition t] ["Show Next Breakpoint" edebug-next-breakpoint t]) ("Views" ["Where am I?" edebug-where t] ["Bounce to Current Point" edebug-bounce-point t] ["View Outside Windows" edebug-view-outside t] ["Previous Result" edebug-previous-result t] ["Show Backtrace" edebug-backtrace t] ["Display Freq Count" edebug-display-freq-count t]) ("Eval" ["Expression" edebug-eval-expression t] ["Last Sexp" edebug-eval-last-sexp t] ["Visit Eval List" edebug-visit-eval-list t]) ("Options" ["Edebug All Defs" edebug-all-defs :style toggle :selected edebug-all-defs] ["Edebug All Forms" edebug-all-forms :style toggle :selected edebug-all-forms] "----" ["Tracing" (edebug-toggle (quote edebug-trace)) :style toggle :selected edebug-trace] ["Test Coverage" (edebug-toggle (quote edebug-test-coverage)) :style toggle :selected edebug-test-coverage] ["Save Windows" edebug-toggle-save-windows :style toggle :selected edebug-save-windows] ["Save Point" (edebug-toggle (quote edebug-save-displayed-buffer-points)) :style toggle :selected edebug-save-displayed-buffer-points]))))
-                nil [144194 146375])
-            ("defalias" code nil nil [146412 146459])
-            ("edebug-mark" function nil nil [146461 146494])
-            ("edebug-set-conditional-breakpoint" function
-               (:user-visible-flag t
-                :arguments ("arg" "condition"))
-                nil [146496 147589])
-            ("easy-menu-define" code nil nil [147591 147670])
-            ("edebug--require-cl-read" function nil nil [147781 147843])
-            ("if" code nil nil [147845 148068])
-            ("add-hook" code nil nil [148324 148414])
-            ("edebug--called-interactively-skip" function (:arguments ("i" "frame1" "frame2")) nil [148415 148784])
-            ("edebug-install-read-eval-functions" code nil nil [148938 148974])
-            ("edebug-unload-function" function nil nil [148976 149532])
-            ("edebug" package nil nil [149534 149551]))          
-      :file "edebug.el"
-      :pointmax 149576
-      :fsize 149575
-      :lastmodtime '(23525 29540 0 0)
-      :unmatched-syntax '((punctuation 119201 . 119202) (punctuation 119073 . 119074) (punctuation 114432 . 114433) (punctuation 106740 . 106741) (punctuation 106634 . 106635) (punctuation 11204 . 11205) (punctuation 10777 . 10778) (close-paren 2010 . 2011) (symbol 1976 . 1993) (open-paren 1975 . 1976)))
-    (semanticdb-table "semanticdb-table"
-      :file "ring.el"
-      :fsize 8343
-      :lastmodtime '(23525 29543 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("trace" customgroup (:user-visible-flag t) nil [4199 4300])
-            ("trace-buffer" variable (:default-value "*trace-output*") nil [4317 4426])
-            ("trace-level" variable nil nil [4476 4498])
-            ("trace-advice-name" variable (:default-value (quote trace-function\ )) nil [4555 4599])
-            ("trace-separator" variable (:default-value (format "%s
-" (make-string 70 61))) nil [4665 4725])
-            ("inhibit-trace" variable nil nil [4727 4807])
-            ("trace-values" function (:arguments ("values")) nil [4824 5156])
-            ("trace-entry-message" function (:arguments ("function" "level" "args" "context")) nil [5158 5817])
-            ("trace-exit-message" function (:arguments ("function" "level" "value" "context")) nil [5819 6387])
-            ("trace--timer" variable nil nil [6389 6414])
-            ("trace--display-buffer" function (:arguments ("buf")) nil [6416 6742])
-            ("trace-make-advice" function (:arguments ("function" "buffer" "background" "context")) nil [6745 8381])
-            ("trace-function-internal" function (:arguments ("function" "buffer" "background" "context")) nil [8383 8688])
-            ("trace-is-traced" function (:arguments ("function")) nil [8690 8771])
-            ("trace--read-args" function (:arguments ("prompt")) nil [8773 10056])
-            ("trace-function-foreground" function
-               (:user-visible-flag t
-                :arguments ("function" "buffer" "context"))
-                nil [10073 11044])
-            ("trace-function-background" function
-               (:user-visible-flag t
-                :arguments ("function" "buffer" "context"))
-                nil [11061 11420])
-            ("defalias" code nil nil [11437 11490])
-            ("untrace-function" function
-               (:user-visible-flag t
-                :arguments ("function"))
-                nil [11492 11955])
-            ("untrace-all" function (:user-visible-flag t) nil [11957 12072])
-            ("trace" package nil nil [12074 12090]))          
-      :file "trace.el"
-      :pointmax 12115
-      :fsize 12114
-      :lastmodtime '(23525 29544 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tq-queue" function (:arguments ("tq")) nil [2131 2175])
-            ("tq-process" function (:arguments ("tq")) nil [2176 2226])
-            ("tq-buffer" function (:arguments ("tq")) nil [2227 2277])
-            ("tq-queue-head-question" function (:arguments ("tq")) nil [2426 2487])
-            ("tq-queue-head-regexp" function (:arguments ("tq")) nil [2573 2640])
-            ("tq-queue-head-closure" function (:arguments ("tq")) nil [2693 2766])
-            ("tq-queue-head-fn" function (:arguments ("tq")) nil [2846 2919])
-            ("tq-queue-empty" function (:arguments ("tq")) nil [2957 3012])
-            ("tq-create" function (:arguments ("process")) nil [3053 3580])
-            ("tq-queue-add" function (:arguments ("tq" "question" "re" "closure" "fn")) nil [3582 3733])
-            ("tq-queue-pop" function (:arguments ("tq")) nil [3735 3947])
-            ("tq-enqueue" function (:arguments ("tq" "question" "regexp" "closure" "fn" "delay-question")) nil [3949 4796])
-            ("tq-close" function (:arguments ("tq")) nil [4798 4946])
-            ("tq-filter" function (:arguments ("tq" "string")) nil [4948 5211])
-            ("tq-process-buffer" function (:arguments ("tq")) nil [5213 6154])
-            ("tq" package nil nil [6156 6169]))          
-      :file "tq.el"
-      :pointmax 6191
-      :fsize 6190
-      :lastmodtime '(23525 29544 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("edebug" include nil nil [3214 3231])
-            ("testcover" package nil nil [3232 3252])
-            ("testcover" customgroup (:user-visible-flag t) nil [3429 3535])
-            ("testcover-constants" variable (:default-value (quote (nil t emacs-build-time emacs-version emacs-major-version emacs-minor-version))) nil [3537 3812])
-            ("testcover-1value-functions" variable (:default-value (quote (backward-char barf-if-buffer-read-only beginning-of-line buffer-disable-undo buffer-enable-undo current-global-map deactivate-mark delete-backward-char delete-char delete-region ding forward-char function* insert insert-and-inherit kill-all-local-variables kill-line kill-paragraph kill-region kill-sexp lambda minibuffer-complete-and-exit narrow-to-region next-line push-mark put-text-property run-hooks set-match-data signal substitute-key-definition suppress-keymap undo use-local-map while widen yank))) nil [3814 4751])
-            ("testcover-noreturn-functions" variable (:default-value (quote (error noreturn throw signal))) nil [4753 5000])
-            ("testcover-compose-functions" variable (:default-value (quote (+ - * / = append length list make-keymap make-sparse-keymap mapcar message propertize replace-regexp-in-string run-with-idle-timer set-buffer-modified-p))) nil [5002 5517])
-            ("testcover-progn-functions" variable (:default-value (quote (define-key fset function goto-char mapc overlay-put progn save-current-buffer save-excursion save-match-data save-restriction save-selected-window save-window-excursion set set-default set-marker-insertion-type setq setq-default with-current-buffer with-output-to-temp-buffer with-syntax-table with-temp-buffer with-temp-file with-temp-message with-timeout))) nil [5519 6213])
-            ("testcover-prog1-functions" variable (:default-value (quote (prog1 unwind-protect))) nil [6215 6520])
-            ("testcover-potentially-1value-functions" variable (:default-value (quote (add-hook and beep or remove-hook unless when))) nil [6522 6787])
-            ("testcover-nohits" variable
-               (:default-value (quote ((t (:background "DeepPink2"))))
-                :type "face")
-                nil [6789 6927])
-            ("testcover-1value" variable
-               (:default-value (quote ((t (:background "Wheat2"))))
-                :type "face")
-                nil [6929 7083])
-            ("testcover-module-constants" variable nil nil [7261 7384])
-            ("testcover-module-1value-functions" variable nil nil [7386 7566])
-            ("testcover-module-potentially-1value-functions" variable nil nil [7568 7759])
-            ("testcover-vector" variable nil nil [7761 7853])
-            ("testcover-start" function
-               (:user-visible-flag t
-                :arguments ("filename" "byte-compile"))
-                nil [8065 8932])
-            ("testcover-this-defun" function (:user-visible-flag t) nil [8949 9167])
-            ("testcover--read" function (:arguments ("orig" "stream")) nil [9169 9555])
-            ("testcover-reinstrument" function (:arguments ("form")) nil [9557 16568])
-            ("testcover-reinstrument-list" function (:arguments ("list")) nil [16570 16996])
-            ("testcover-reinstrument-compose" function (:arguments ("list" "fun")) nil [16998 17586])
-            ("testcover-end" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [17588 17798])
-            ("testcover-enter" function (:arguments ("testcover-sym" "testcover-fun")) nil [17985 18315])
-            ("testcover-after" function (:arguments ("idx" "val")) nil [18317 19138])
-            ("testcover-1value" function (:arguments ("idx" "val")) nil [19140 19810])
-            ("testcover-mark" function (:arguments ("def")) nil [20032 21526])
-            ("testcover-mark-all" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [21528 21891])
-            ("testcover-unmark-all" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [21893 22141])
-            ("testcover-next-mark" function (:user-visible-flag t) nil [22176 22349]))          
-      :file "testcover.el"
-      :pointmax 22378
-      :fsize 22377
-      :lastmodtime '(23525 29544 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!emacs-lisp!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041erc\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041erc\041semantic.cache"
deleted file mode 100644
index be99690..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041erc\041semantic.cache"
+++ /dev/null
@@ -1,310 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("erc" include nil nil [923 937])
-            ("erc-ezbounce" customgroup (:user-visible-flag t) nil [939 1045])
-            ("erc-ezb-regexp" variable (:default-value "^ezbounce!srv$") nil [1047 1194])
-            ("erc-ezb-login-alist" variable (:default-value (quote nil)) nil [1196 1579])
-            ("erc-ezb-action-alist" variable (:default-value (quote (("^\\[awaiting login/pass command\\]$" . erc-ezb-identify) ("^\\[use /quote CONN <server> to connect\\]$" . erc-ezb-select) ("^ID +IRC NICK +TO +TIME$" . erc-ezb-init-session-list) ("^$" . erc-ezb-end-of-session-list) (".*" . erc-ezb-add-session)))) nil [1581 2002])
-            ("erc-ezb-session-list" variable (:default-value (quote nil)) nil [2005 2078])
-            ("make-variable-buffer-local" code nil nil [2079 2129])
-            ("erc-ezb-inside-session-listing" variable nil nil [2131 2252])
-            ("erc-cmd-ezb" function (:arguments ("line" "force")) nil [2269 2401])
-            ("put" code nil nil [2402 2441])
-            ("erc-ezb-get-login" function (:arguments ("server" "port")) nil [2458 3094])
-            ("erc-ezb-lookup-action" function (:arguments ("message")) nil [3111 3452])
-            ("erc-ezb-notice-autodetect" function (:arguments ("proc" "parsed")) nil [3469 3804])
-            ("erc-ezb-identify" function (:arguments ("message")) nil [3821 4130])
-            ("erc-ezb-init-session-list" function (:arguments ("message")) nil [4147 4310])
-            ("erc-ezb-end-of-session-list" function (:arguments ("message")) nil [4327 4470])
-            ("erc-ezb-add-session" function (:arguments ("message")) nil [4487 4883])
-            ("erc-ezb-select" function (:arguments ("message")) nil [4900 5336])
-            ("erc-ezb-select-session" function nil nil [5354 5632])
-            ("erc-ezb-initialize" function nil nil [5650 5796])
-            ("erc-ezbounce" package nil nil [5798 5821]))          
-      :file "erc-ezbounce.el"
-      :pointmax 5853
-      :fsize 5852
-      :lastmodtime '(23525 29546 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "erc.el"
-      :fsize 258462
-      :lastmodtime '(23525 29548 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("erc" include nil nil [1056 1070])
-            ("erc-networks" include nil nil [1071 1094])
-            ("pcomplete" include nil nil [1114 1134])
-            ("erc-notify" customgroup (:user-visible-flag t) nil [1166 1251])
-            ("erc-notify-list" variable nil nil [1253 1412])
-            ("erc-notify-interval" variable (:default-value 60) nil [1414 1564])
-            ("erc-notify-signon-hook" variable nil nil [1566 1807])
-            ("erc-notify-signoff-hook" variable nil nil [1809 2053])
-            ("erc-notify-signon" function (:arguments ("server" "nick")) nil [2055 2139])
-            ("erc-notify-signoff" function (:arguments ("server" "nick")) nil [2141 2229])
-            ("erc-last-ison" variable nil nil [2256 2345])
-            ("make-variable-buffer-local" code nil nil [2346 2389])
-            ("erc-last-ison-time" variable nil nil [2391 2485])
-            ("make-variable-buffer-local" code nil nil [2486 2534])
-            ("erc-notify-install-message-catalogs" function nil nil [2548 2842])
-            ("define-erc-module" code nil nil [2906 3476])
-            ("erc-notify-timer" function (:arguments ("now")) nil [3498 4727])
-            ("erc-notify-JOIN" function (:arguments ("proc" "parsed")) nil [4729 5433])
-            ("erc-notify-NICK" function (:arguments ("proc" "parsed")) nil [5435 6116])
-            ("erc-notify-QUIT" function (:arguments ("proc" "parsed")) nil [6118 6952])
-            ("erc-cmd-NOTIFY" function (:arguments ("args")) nil [6994 8424])
-            ("pcomplete-erc-all-nicks" function (:prototype-flag t) nil [8426 8477])
-            ("declare-function" code nil nil [8502 8591])
-            ("pcomplete/erc-mode/NOTIFY" function nil nil [8608 8712])
-            ("erc-notify-install-message-catalogs" code nil nil [8714 8751])
-            ("erc-notify" package nil nil [8753 8774]))          
-      :file "erc-notify.el"
-      :pointmax 8874
-      :fsize 8873
-      :lastmodtime '(23525 29548 0 0)
-      :unmatched-syntax '((close-paren 1134 . 1135) (symbol 1096 . 1113) (open-paren 1095 . 1096)))
-    (semanticdb-table "semanticdb-table"
-      :file "erc-networks.el"
-      :fsize 42299
-      :lastmodtime '(23525 29547 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("erc" include nil nil [1931 1945])
-            ("pcomplete" include nil nil [1965 1985])
-            ("define-erc-module" code nil nil [2038 2247])
-            ("erc-dcc" customgroup (:user-visible-flag t) nil [2249 2617])
-            ("erc-dcc-verbose" variable nil nil [2619 2742])
-            ("erc-dcc-connection-types" variable
-               (:constant-flag t
-                :default-value (quote ("CHAT" "GET" "SEND")))
-                nil [2744 2894])
-            ("erc-dcc-list" variable nil nil [2896 4096])
-            ("erc-dcc-list-add" function (:arguments ("type" "nick" "peer" "parent" "args")) nil [4098 4372])
-            ("erc-dcc-connect-function" variable (:default-value (quote erc-dcc-open-network-stream)) nil [4520 4582])
-            ("erc-dcc-open-network-stream" function (:arguments ("procname" "buffer" "addr" "port" "entry")) nil [4584 4908])
-            ("erc-define-catalog" code nil nil [4910 6665])
-            ("erc-dcc-member" function (:arguments ("args")) nil [6706 8319])
-            ("erc-pack-int" function (:arguments ("value")) nil [8321 8977])
-            ("erc-most-positive-int-bytes" variable
-               (:constant-flag t
-                :default-value (ceiling (/ (ceiling (/ (log most-positive-fixnum) (log 2))) 8.0)))
-                nil [8979 9128])
-            ("erc-most-positive-int-msb" variable
-               (:constant-flag t
-                :default-value (lsh most-positive-fixnum (- 0 (* 8 (1- erc-most-positive-int-bytes)))))
-                nil [9130 9306])
-            ("erc-unpack-int" function (:arguments ("str")) nil [9308 10152])
-            ("erc-dcc-ipv4-regexp" variable
-               (:constant-flag t
-                :default-value (concat "^" (mapconcat (function identity) (make-list 4 "\\([0-9]\\{1,3\\}\\)") "\\.") "$"))
-                nil [10154 10289])
-            ("erc-ip-to-decimal" function
-               (:user-visible-flag t
-                :arguments ("ip"))
-                nil [10291 11124])
-            ("erc-decimal-to-ip" function (:arguments ("dec")) nil [11126 11714])
-            ("erc-dcc-listen-host" variable nil nil [11733 12107])
-            ("erc-dcc-public-host" variable nil nil [12109 12469])
-            ("erc-dcc-send-request" variable (:default-value (quote ask)) nil [12471 12897])
-            ("erc-dcc-get-host" function (:arguments ("proc")) nil [12899 13048])
-            ("erc-dcc-host" function nil nil [13050 13340])
-            ("erc-dcc-port-range" variable nil nil [13342 13726])
-            ("erc-dcc-auto-masks" variable nil nil [13728 14070])
-            ("erc-dcc-server" function (:arguments ("name" "filter" "sentinel")) nil [14072 15736])
-            ("erc-dcc-server-accept" function (:arguments ("server" "client" "message")) nil [15738 16408])
-            ("erc-dcc-get-default-directory" variable nil nil [16444 16698])
-            ("erc-cmd-DCC" function (:arguments ("cmd" "args")) nil [16715 17288])
-            ("pcomplete-erc-all-nicks" function (:prototype-flag t) nil [17290 17341])
-            ("pcomplete/erc-mode/DCC" function nil nil [17358 19053])
-            ("erc-dcc-do-CHAT-command" function (:arguments ("proc" "nick")) nil [19055 19707])
-            ("erc-dcc-do-CLOSE-command" function (:arguments ("proc" "type" "nick")) nil [19709 21163])
-            ("erc-dcc-do-GET-command" function (:arguments ("proc" "nick" "file")) nil [21165 22658])
-            ("erc-dcc-byte-count" variable nil nil [22660 22691])
-            ("make-variable-buffer-local" code nil nil [22692 22740])
-            ("erc-dcc-do-LIST-command" function (:arguments ("proc")) nil [22742 24563])
-            ("erc-dcc-do-SEND-command" function (:arguments ("proc" "nick" "file")) nil [24565 25074])
-            ("erc-ctcp-query-DCC-hook" variable (:default-value (quote (erc-ctcp-query-DCC))) nil [25154 25248])
-            ("erc-dcc-query-handler-alist" variable (:default-value (quote (("SEND" . erc-dcc-handle-ctcp-send) ("CHAT" . erc-dcc-handle-ctcp-chat)))) nil [25250 25367])
-            ("erc-ctcp-query-DCC" function (:arguments ("proc" "nick" "login" "host" "to" "query")) nil [25384 25977])
-            ("erc-dcc-ctcp-query-send-regexp" variable
-               (:constant-flag t
-                :default-value (concat "^DCC SEND \\(" "\"\\(\\(.*?\\(\\\\\"\\)?\\)+?\\)\"\\|\\([^ ]+\\)" "\\) \\([0-9]+\\) \\([0-9]+\\) *\\([0-9]*\\)"))
-                nil [25979 26344])
-            ("erc-dcc-unquote-filename" function (:arguments ("filename")) nil [26346 26535])
-            ("erc-dcc-handle-ctcp-send" function (:arguments ("proc" "query" "nick" "login" "host" "to")) nil [26537 28341])
-            ("erc-dcc-auto-mask-p" function (:arguments ("spec")) nil [28343 28716])
-            ("erc-dcc-ctcp-query-chat-regexp" variable
-               (:constant-flag t
-                :default-value "^DCC CHAT +chat +\\([0-9]+\\) +\\([0-9]+\\)")
-                nil [28718 28807])
-            ("erc-dcc-chat-request" variable (:default-value (quote ask)) nil [28809 29170])
-            ("erc-dcc-handle-ctcp-chat" function (:arguments ("proc" "query" "nick" "login" "host" "to")) nil [29172 30989])
-            ("erc-dcc-entry-data" variable nil nil [30992 31083])
-            ("make-variable-buffer-local" code nil nil [31084 31132])
-            ("erc-dcc-block-size" variable (:default-value 1024) nil [31153 31268])
-            ("erc-dcc-pump-bytes" variable nil nil [31270 31443])
-            ("erc-dcc-get-parent" function (:arguments ("proc")) nil [31445 31531])
-            ("erc-dcc-send-block" function (:arguments ("proc")) nil [31533 32442])
-            ("erc-dcc-send-filter" function (:arguments ("proc" "string")) nil [32444 33905])
-            ("erc-dcc-display-send" function (:arguments ("proc")) nil [33907 34114])
-            ("erc-dcc-send-connect-hook" variable (:default-value (quote (erc-dcc-display-send erc-dcc-send-block))) nil [34116 34321])
-            ("erc-dcc-nick" function (:arguments ("plist")) nil [34323 34467])
-            ("erc-dcc-send-sentinel" function (:arguments ("proc" "event")) nil [34469 34867])
-            ("erc-dcc-find-file" function (:arguments ("file")) nil [34869 35073])
-            ("erc-dcc-file-to-name" function (:arguments ("file")) nil [35075 35253])
-            ("erc-dcc-send-file" function
-               (:user-visible-flag t
-                :arguments ("nick" "file" "pproc"))
-                nil [35255 36604])
-            ("erc-dcc-receive-cache" variable (:default-value (* 1024 512)) nil [36624 36776])
-            ("erc-dcc-file-name" variable nil nil [36778 36808])
-            ("make-variable-buffer-local" code nil nil [36809 36856])
-            ("erc-dcc-get-file" function (:arguments ("entry" "file" "parent-proc")) nil [36858 38775])
-            ("erc-dcc-append-contents" function (:arguments ("buffer" "file")) nil [38777 39387])
-            ("erc-dcc-get-filter" function (:arguments ("proc" "str")) nil [39389 40794])
-            ("erc-dcc-get-sentinel" function (:arguments ("proc" "event")) nil [40797 41655])
-            ("erc-dcc-chat-buffer-name-format" variable (:default-value "DCC-CHAT-%s") nil [41676 41812])
-            ("erc-dcc-chat-mode-hook" variable nil nil [41814 41956])
-            ("erc-dcc-chat-connect-hook" variable nil nil [41958 42036])
-            ("erc-dcc-chat-exit-hook" variable nil nil [42038 42113])
-            ("erc-cmd-CREQ" function (:arguments ("line" "force")) nil [42115 42731])
-            ("erc-cmd-SREQ" function (:arguments ("line" "force")) nil [42733 43349])
-            ("pcomplete/erc-mode/CREQ" function nil nil [43351 43429])
-            ("defalias" code nil nil [43430 43490])
-            ("erc-dcc-chat-filter-functions" variable (:default-value (quote (erc-dcc-chat-parse-output))) nil [43492 43720])
-            ("define-obsolete-variable-alias" code nil nil [43722 43820])
-            ("erc-dcc-chat-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map (kbd "RET") (quote erc-send-current-line)) (define-key map "	" (quote completion-at-point)) map)) nil [43822 44031])
-            ("define-derived-mode" code nil nil [44033 44365])
-            ("erc-dcc-chat-send-input-line" function (:arguments ("recipient" "line" "force")) nil [44367 44777])
-            ("erc-dcc-chat" function
-               (:user-visible-flag t
-                :arguments ("nick" "pproc"))
-                nil [44779 45534])
-            ("erc-dcc-from" variable nil nil [45536 45557])
-            ("make-variable-buffer-local" code nil nil [45558 45600])
-            ("erc-dcc-unprocessed-output" variable nil nil [45602 45637])
-            ("make-variable-buffer-local" code nil nil [45638 45694])
-            ("erc-dcc-chat-setup" function (:arguments ("entry")) nil [45696 46584])
-            ("erc-dcc-chat-accept" function (:arguments ("entry" "parent-proc")) nil [46586 47312])
-            ("erc-dcc-chat-filter" function (:arguments ("proc" "str")) nil [47314 47730])
-            ("erc-dcc-chat-parse-output" function (:arguments ("proc" "str")) nil [47732 48236])
-            ("erc-dcc-chat-buffer-killed" function nil nil [48238 48314])
-            ("erc-dcc-chat-close" function (:arguments ("event")) nil [48316 48903])
-            ("erc-dcc-chat-sentinel" function (:arguments ("proc" "event")) nil [48905 49349])
-            ("erc-dcc-no-such-nick" function (:arguments ("proc" "parsed")) nil [49351 49991])
-            ("erc-dcc" package nil nil [49993 50011]))          
-      :file "erc-dcc.el"
-      :pointmax 50094
-      :fsize 50093
-      :lastmodtime '(23525 29546 0 0)
-      :unmatched-syntax '((close-paren 1985 . 1986) (symbol 1947 . 1964) (open-paren 1946 . 1947)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("erc-dcc" include nil nil [994 1012])
-            ("erc-xdcc-files" variable nil nil [1014 1190])
-            ("erc-xdcc-verbose-flag" variable (:default-value t) nil [1192 1314])
-            ("erc-xdcc-handler-alist" variable (:default-value (quote (("help" . erc-xdcc-help) ("list" . erc-xdcc-list) ("send" . erc-xdcc-send)))) nil [1316 1585])
-            ("erc-xdcc-help-text" variable (:default-value (quote (("Hey " nick ", wondering how this works?  Pretty easy.") ("Available commands: XDCC [" (mapconcat (quote car) erc-xdcc-handler-alist "|") "]") ("Type \"/ctcp " (erc-current-nick) " XDCC list\" to see the list of offered files, then type \"/ctcp " (erc-current-nick) " XDCC send #\" to get a particular file number.")))) nil [1587 2209])
-            ("define-erc-module" code nil nil [2263 2333])
-            ("erc-xdcc-add-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [2350 2532])
-            ("erc-xdcc-reply" function (:arguments ("proc" "nick" "msg")) nil [2534 2641])
-            ("erc-ctcp-query-XDCC-hook" variable (:default-value (quote (erc-xdcc))) nil [2667 2770])
-            ("erc-xdcc" function (:arguments ("proc" "nick" "login" "host" "to" "query")) nil [2772 3360])
-            ("erc-xdcc-help" function (:arguments ("proc" "nick" "login" "host" "args")) nil [3362 3607])
-            ("erc-xdcc-list" function (:arguments ("proc" "nick" "login" "host" "args")) nil [3609 4064])
-            ("erc-xdcc-send" function (:arguments ("proc" "nick" "login" "host" "args")) nil [4066 4461])
-            ("erc-xdcc" package nil nil [4463 4482]))          
-      :file "erc-xdcc.el"
-      :pointmax 4580
-      :fsize 4579
-      :lastmodtime '(23525 29548 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("erc" include nil nil [1063 1077])
-            ("define-erc-module" code nil nil [1131 1216])
-            ("erc-define-catalog-entry" code nil nil [1218 1291])
-            ("erc-page" customgroup (:user-visible-flag t) nil [1293 1363])
-            ("erc-page-function" variable nil nil [1365 1860])
-            ("erc-ctcp-query-PAGE-hook" variable (:default-value (quote (erc-ctcp-query-PAGE))) nil [1862 2295])
-            ("erc-ctcp-query-PAGE" function (:arguments ("proc" "nick" "login" "host" "to" "msg")) nil [2297 3172])
-            ("erc-cmd-PAGE" function (:arguments ("line" "force")) nil [3174 3557])
-            ("put" code nil nil [3559 3599])
-            ("erc-page" package nil nil [3601 3620]))          
-      :file "erc-page.el"
-      :pointmax 3718
-      :fsize 3717
-      :lastmodtime '(23525 29548 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("erc" include nil nil [1020 1034])
-            ("xml" include nil nil [1035 1049])
-            ("notifications" include nil nil [1050 1074])
-            ("erc-match" include nil nil [1075 1095])
-            ("dbus" include nil nil [1096 1111])
-            ("erc-notifications" customgroup (:user-visible-flag t) nil [1113 1224])
-            ("erc-notifications-last-notification" variable nil nil [1226 1300])
-            ("erc-notifications-icon" variable nil nil [1302 1452])
-            ("erc-notifications-bus" variable (:default-value :session) nil [1454 1642])
-            ("dbus-debug" variable nil nil [1644 1663])
-            ("erc-notifications-notify" function (:arguments ("nick" "msg")) nil [1716 2234])
-            ("erc-notifications-PRIVMSG" function (:arguments ("proc" "parsed")) nil [2236 2770])
-            ("erc-notifications-notify-on-match" function (:arguments ("match-type" "nickuserhost" "msg")) nil [2772 3141])
-            ("define-erc-module" code nil nil [3225 3647])
-            ("erc-desktop-notifications" package nil nil [3649 3685]))          
-      :file "erc-desktop-notifications.el"
-      :pointmax 3730
-      :fsize 3729
-      :lastmodtime '(23525 29546 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "erc-match.el"
-      :fsize 21205
-      :lastmodtime '(23525 29547 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("erc" include nil nil [1168 1182])
-            ("erc-stamp" include nil nil [1183 1203])
-            ("erc-fill" customgroup (:user-visible-flag t) nil [1230 1327])
-            ("erc-define-minor-mode" code nil nil [1387 1818])
-            ("erc-fill-enable" function (:user-visible-flag t) nil [1820 1991])
-            ("erc-fill-disable" function (:user-visible-flag t) nil [1993 2178])
-            ("erc-fill-prefix" variable nil nil [2180 2390])
-            ("erc-fill-function" variable (:default-value (quote erc-fill-variable)) nil [2392 3349])
-            ("erc-fill-static-center" variable (:default-value 27) nil [3351 3651])
-            ("erc-fill-variable-maximum-indentation" variable (:default-value 17) nil [3653 3847])
-            ("erc-fill-column" variable (:default-value 78) nil [3849 3969])
-            ("erc-fill" function nil nil [3986 4575])
-            ("erc-fill-static" function nil nil [4577 5176])
-            ("erc-fill-variable" function nil nil [5178 6295])
-            ("erc-fill-regarding-timestamp" function nil nil [6297 6563])
-            ("erc-timestamp-offset" function nil nil [6565 6891])
-            ("erc-fill" package nil nil [6893 6912]))          
-      :file "erc-fill.el"
-      :pointmax 6993
-      :fsize 6992
-      :lastmodtime '(23525 29546 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "erc-stamp.el"
-      :fsize 15795
-      :lastmodtime '(23525 29548 0 0)))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!erc!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041eshell\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041eshell\041semantic.cache"
deleted file mode 100644
index e3107d9..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041eshell\041semantic.cache"
+++ /dev/null
@@ -1,652 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("esh-mode" package nil nil [2495 2514])
-            ("esh-util" include nil nil [2516 2535])
-            ("esh-module" include nil nil [2536 2557])
-            ("esh-cmd" include nil nil [2558 2576])
-            ("esh-io" include nil nil [2577 2594])
-            ("esh-var" include nil nil [2595 2613])
-            ("eshell-mode" customgroup (:user-visible-flag t) nil [2615 2746])
-            ("eshell-mode-unload-hook" variable nil nil [2769 2901])
-            ("eshell-mode-hook" variable nil nil [2903 3027])
-            ("eshell-first-time-mode-hook" variable nil nil [3029 3230])
-            ("eshell-exit-hook" variable nil nil [3232 3490])
-            ("eshell-kill-on-exit" variable (:default-value t) nil [3492 3671])
-            ("eshell-input-filter-functions" variable nil nil [3673 3899])
-            ("eshell-send-direct-to-subprocesses" variable nil nil [3901 4044])
-            ("eshell-expand-input-functions" variable nil nil [4046 4263])
-            ("eshell-scroll-to-bottom-on-input" variable nil nil [4265 4745])
-            ("eshell-scroll-to-bottom-on-output" variable nil nil [4747 5415])
-            ("eshell-scroll-show-maximum-output" variable (:default-value t) nil [5417 5735])
-            ("eshell-buffer-maximum-lines" variable (:default-value 1024) nil [5737 6028])
-            ("eshell-output-filter-functions" variable (:default-value (quote (eshell-postoutput-scroll-to-bottom eshell-handle-control-codes eshell-handle-ansi-color eshell-watch-for-password-prompt))) nil [6030 6412])
-            ("eshell-preoutput-filter-functions" variable nil nil [6414 6693])
-            ("eshell-password-prompt-regexp" variable (:default-value (format "\\(%s\\).*:\\s *\\'" (regexp-opt password-word-equivalents))) nil [6695 6965])
-            ("eshell-skip-prompt-function" variable nil nil [6967 7136])
-            ("define-obsolete-variable-alias" code nil nil [7138 7234])
-            ("eshell-status-in-mode-line" variable (:default-value t) nil [7236 7388])
-            ("eshell-first-time-p" variable (:default-value t) nil [7390 7485])
-            ("eshell-mode" variable nil nil [7640 7664])
-            ("eshell-mode-map" variable nil nil [7665 7693])
-            ("eshell-command-running-string" variable (:default-value "--") nil [7694 7737])
-            ("eshell-command-map" variable nil nil [7738 7769])
-            ("eshell-command-prefix" variable nil nil [7770 7804])
-            ("eshell-last-input-start" variable nil nil [7805 7841])
-            ("eshell-last-input-end" variable nil nil [7842 7876])
-            ("eshell-last-output-start" variable nil nil [7877 7914])
-            ("eshell-last-output-block-begin" variable nil nil [7915 7958])
-            ("eshell-last-output-end" variable nil nil [7959 7994])
-            ("eshell-currently-handling-window" variable nil nil [7996 8041])
-            ("define-abbrev-table" code nil nil [8043 8093])
-            ("eshell-mode-syntax-table" variable (:default-value (let ((st (make-syntax-table)) (i 0)) (while (< i 48) (modify-syntax-entry i "_   " st) (setq i (1+ i))) (setq i (1+ 57)) (while (< i 65) (modify-syntax-entry i "_   " st) (setq i (1+ i))) (setq i (1+ 90)) (while (< i 97) (modify-syntax-entry i "_   " st) (setq i (1+ i))) (setq i (1+ 122)) (while (< i 128) (modify-syntax-entry i "_   " st) (setq i (1+ i))) (modify-syntax-entry 32 "    " st) (modify-syntax-entry 9 "    " st) (modify-syntax-entry 12 "    " st) (modify-syntax-entry 10 ">   " st) (modify-syntax-entry 13 ">   " st) (modify-syntax-entry 96 "'   " st) (modify-syntax-entry 39 "'   " st) (modify-syntax-entry 44 "'   " st) (modify-syntax-entry 46 "_   " st) (modify-syntax-entry 45 "_   " st) (modify-syntax-entry 124 ".   " st) (modify-syntax-entry 35 "'   " st) (modify-syntax-entry 34 "\"    " st) (modify-syntax-entry 92 "/   " st) (modify-syntax-entry 40 "()  " st) (modify-syntax-entry 41 ")(  " st) (modify-syntax-entry 123 "(}  " st) (modify-syntax-entry 125 "){  " st) (modify-syntax-entry 91 "(]  " st) (modify-syntax-entry 93 ")[  " st) (map-char-table (if (featurep (quote xemacs)) (lambda (key _val) (and (characterp key) (>= (char-int key) 256) (/= (char-syntax key) 119) (modify-syntax-entry key "_   " st))) (lambda (key _val) (and (if (consp key) (and (>= (car key) 128) (/= (char-syntax (car key)) 119)) (and (>= key 256) (/= (char-syntax key) 119))) (modify-syntax-entry key "_   " st)))) (standard-syntax-table)) st)) nil [8095 10162])
-            ("eshell-kill-buffer-function" function nil nil [10185 10679])
-            ("define-derived-mode" code nil nil [10696 16674])
-            ("put" code nil nil [16676 16715])
-            ("eshell-command-started" function nil nil [16717 16879])
-            ("eshell-command-finished" function nil nil [16881 17045])
-            ("eshell-toggle-direct-send" function nil nil [17072 17496])
-            ("eshell-self-insert-command" function nil nil [17498 17738])
-            ("eshell-intercept-commands" function nil nil [17740 18542])
-            ("declare-function" code nil nil [18544 18621])
-            ("eshell-find-tag" function
-               (:user-visible-flag t
-                :arguments ("tagname" "next-p" "regexp-p"))
-                nil [18623 18998])
-            ("eshell-move-argument" function (:arguments ("limit" "func" "property" "arg")) nil [19000 19550])
-            ("eshell-forward-argument" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [19552 19715])
-            ("eshell-backward-argument" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [19717 19885])
-            ("eshell-repeat-argument" function (:arguments ("arg")) nil [19887 20079])
-            ("eshell-bol" function (:user-visible-flag t) nil [20081 20292])
-            ("eshell-push-command-mark" function nil nil [20294 20426])
-            ("custom-add-option" code nil nil [20428 20498])
-            ("eshell-goto-input-start" function nil nil [20500 20708])
-            ("custom-add-option" code nil nil [20710 20780])
-            ("eshell-interactive-print" function (:arguments ("string")) nil [20782 20909])
-            ("eshell-begin-on-new-line" function nil nil [20911 21121])
-            ("eshell-reset" function (:arguments ("no-hooks")) nil [21123 21651])
-            ("eshell-parse-command-input" function (:arguments ("beg" "end" "args")) nil [21653 22418])
-            ("eshell-update-markers" function (:arguments ("pmark")) nil [22420 22662])
-            ("eshell-queue-input" function
-               (:user-visible-flag t
-                :arguments ("use-region"))
-                nil [22664 22916])
-            ("eshell-send-input" function
-               (:user-visible-flag t
-                :arguments ("use-region" "queue-p" "no-newline"))
-                nil [22918 25895])
-            ("eshell-kill-new" function nil nil [25897 26037])
-            ("custom-add-option" code nil nil [26039 26106])
-            ("eshell-output-filter" function (:arguments ("process" "string")) nil [26108 27779])
-            ("eshell-run-output-filters" function nil nil [27781 28039])
-            ("eshell-preinput-scroll-to-bottom" function nil nil [28082 29041])
-            ("eshell-postoutput-scroll-to-bottom" function nil nil [29084 30422])
-            ("eshell-beginning-of-input" function nil nil [30424 30546])
-            ("eshell-beginning-of-output" function nil nil [30548 30674])
-            ("eshell-end-of-output" function nil nil [30676 30874])
-            ("eshell-kill-output" function (:user-visible-flag t) nil [30876 31159])
-            ("eshell-show-output" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [31161 31719])
-            ("eshell-mark-output" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [31721 32015])
-            ("eshell-kill-input" function (:user-visible-flag t) nil [32017 32299])
-            ("eshell-show-maximum-output" function
-               (:user-visible-flag t
-                :arguments ("interactive"))
-                nil [32301 32561])
-            ("eshell/clear" function
-               (:user-visible-flag t
-                :arguments ("scrollback"))
-                nil [32563 32992])
-            ("eshell/clear-scrollback" function nil nil [32994 33134])
-            ("eshell-get-old-input" function (:arguments ("use-current-region")) nil [33136 33545])
-            ("eshell-copy-old-input" function (:user-visible-flag t) nil [33547 33776])
-            ("eshell/exit" function nil nil [33778 33902])
-            ("eshell-life-is-too-much" function (:user-visible-flag t) nil [33904 34102])
-            ("eshell-truncate-buffer" function (:user-visible-flag t) nil [34104 34849])
-            ("custom-add-option" code nil nil [34851 34931])
-            ("eshell-send-invisible" function (:user-visible-flag t) nil [34933 35401])
-            ("eshell-watch-for-password-prompt" function nil nil [35403 36039])
-            ("custom-add-option" code nil nil [36041 36131])
-            ("eshell-handle-control-codes" function nil nil [36133 37076])
-            ("custom-add-option" code nil nil [37078 37163])
-            ("ansi-color-apply-on-region" function (:prototype-flag t) nil [37165 37216])
-            ("eshell-handle-ansi-color" function nil nil [37218 37391])
-            ("custom-add-option" code nil nil [37393 37475]))          
-      :file "esh-mode.el"
-      :pointmax 37503
-      :fsize 37502
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [885 902])
-            ("eshell-util" customgroup (:user-visible-flag t) nil [905 1041])
-            ("eshell-stringify-t" variable (:default-value t) nil [1064 1396])
-            ("eshell-group-file" variable (:default-value "/etc/group") nil [1398 1577])
-            ("eshell-passwd-file" variable (:default-value "/etc/passwd") nil [1579 1762])
-            ("eshell-hosts-file" variable (:default-value "/etc/hosts") nil [1764 1921])
-            ("eshell-handle-errors" variable (:default-value t) nil [1923 2106])
-            ("eshell-private-file-modes" variable (:default-value 384) nil [2108 2264])
-            ("eshell-private-directory-modes" variable (:default-value 448) nil [2266 2433])
-            ("eshell-tar-regexp" variable (:default-value "\\.t\\(ar\\(\\.\\(gz\\|bz2\\|xz\\|Z\\)\\)?\\|gz\\|a[zZ]\\|z2\\)\\'") nil [2435 2657])
-            ("eshell-convert-numeric-arguments" variable (:default-value t) nil [2659 3364])
-            ("eshell-number-regexp" variable (:default-value "-?\\([0-9]*\\.\\)?[0-9]+\\(e[-0-9.]+\\)?") nil [3366 3700])
-            ("eshell-ange-ls-uids" variable nil nil [3702 4034])
-            ("eshell-group-names" variable nil nil [4061 4133])
-            ("eshell-group-timestamp" variable nil nil [4135 4219])
-            ("eshell-user-names" variable nil nil [4221 4291])
-            ("eshell-user-timestamp" variable nil nil [4293 4375])
-            ("eshell-host-names" variable nil nil [4377 4459])
-            ("eshell-host-timestamp" variable nil nil [4461 4544])
-            ("eshell-under-windows-p" function nil nil [4562 4699])
-            ("eshell-condition-case" function (:arguments ("tag" "form" "handlers")) nil [4701 5033])
-            ("eshell-find-delimiter" function (:arguments ("open" "close" "bound" "reverse-p" "backslash-p")) nil [5035 6611])
-            ("eshell-convert" function (:arguments ("string")) nil [6613 7147])
-            ("eshell-sublist" function (:arguments ("l" "n" "m")) nil [7149 7463])
-            ("eshell-path-env" variable (:default-value (getenv "PATH")) nil [7465 7624])
-            ("make-variable-buffer-local" code nil nil [7625 7670])
-            ("eshell-parse-colon-path" function (:arguments ("path-env")) nil [7672 7994])
-            ("eshell-split-path" function (:arguments ("path")) nil [7996 8713])
-            ("eshell-to-flat-string" function (:arguments ("value")) nil [8715 9041])
-            ("eshell-for" function (:arguments ("for-var" "for-list" "forms")) nil [9043 9331])
-            ("eshell-flatten-list" function (:arguments ("args")) nil [9333 9626])
-            ("eshell-uniqify-list" function (:arguments ("l")) nil [9628 9873])
-            ("eshell-stringify" function (:arguments ("object")) nil [9875 10275])
-            ("eshell-stringify-list" function (:arguments ("args")) nil [10277 10404])
-            ("eshell-flatten-and-stringify" function (:arguments ("args")) nil [10406 10585])
-            ("eshell-directory-files" function (:arguments ("regexp" "directory")) nil [10587 10791])
-            ("eshell-regexp-arg" function (:arguments ("prompt")) nil [10793 11243])
-            ("eshell-printable-size" function (:arguments ("filesize" "human-readable" "block-size" "use-colors")) nil [11245 12338])
-            ("eshell-winnow-list" function (:arguments ("entries" "exclude" "predicates")) nil [12340 13083])
-            ("eshell-redisplay" function nil nil [13085 13440])
-            ("eshell-read-passwd-file" function (:arguments ("file")) nil [13442 14046])
-            ("eshell-read-passwd" function (:arguments ("file" "result-var" "timestamp-var")) nil [14048 14453])
-            ("eshell-read-group-names" function nil nil [14455 14661])
-            ("eshell-group-id" function (:arguments ("name")) nil [14663 14782])
-            ("eshell-group-name" function (:arguments ("gid")) nil [14784 14909])
-            ("eshell-read-user-names" function nil nil [14911 15116])
-            ("eshell-user-id" function (:arguments ("name")) nil [15118 15235])
-            ("defalias" code nil nil [15237 15282])
-            ("eshell-read-hosts-file" function (:arguments ("filename")) nil [15284 15897])
-            ("eshell-read-hosts" function (:arguments ("file" "result-var" "timestamp-var")) nil [15899 16302])
-            ("eshell-read-host-names" function nil nil [16304 16504])
-            ("and" code nil nil [16506 16995])
-            ("eshell-copy-environment" function nil nil [16997 17128])
-            ("eshell-subgroups" function (:arguments ("groupsym")) nil [17130 17447])
-            ("eshell-with-file-modes" function (:arguments ("modes" "forms")) nil [17449 17645])
-            ("eshell-with-private-file-modes" function (:arguments ("forms")) nil [17647 17806])
-            ("eshell-make-private-directory" function (:arguments ("dir" "parents")) nil [17808 18026])
-            ("eshell-substring" function (:arguments ("string" "sublen")) nil [18028 18218])
-            ("ange-cache" variable nil nil [18220 18239])
-            ("and" code nil nil [18350 19198])
-            ("eshell-directory-files-and-attributes" function (:arguments ("dir" "full" "match" "nosort" "id-format")) nil [19200 19698])
-            ("eshell-current-ange-uids" function nil nil [19700 20050])
-            ("if" code nil nil [20093 20217])
-            ("ange-ftp" include nil nil [20240 20265])
-            ("tramp-file-name-structure" variable nil nil [20295 20329])
-            ("declare-function" code nil nil [20330 20423])
-            ("declare-function" code nil nil [20424 20482])
-            ("eshell-parse-ange-ls" function (:arguments ("dir")) nil [20484 22541])
-            ("eshell-file-attributes" function (:arguments ("file" "id-format")) nil [22543 23524])
-            ("defalias" code nil nil [23526 23565])
-            ("eshell-processp" function (:arguments ("proc")) nil [23567 23714])
-            ("esh-util" package nil nil [25976 25995]))          
-      :file "esh-util.el"
-      :pointmax 26023
-      :fsize 26022
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax '((close-paren 20265 . 20266) (symbol 20220 . 20237) (open-paren 20219 . 20220) (close-paren 902 . 903) (symbol 867 . 884) (open-paren 866 . 867)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("esh-module" package nil nil [882 903])
-            ("eshell" include nil nil [905 922])
-            ("esh-util" include nil nil [923 942])
-            ("eshell-module" customgroup (:user-visible-flag t) nil [944 1199])
-            ("load" code nil nil [1499 1533])
-            ("eshell-module-unload-hook" variable (:default-value (quote (eshell-unload-extension-modules))) nil [1556 1717])
-            ("eshell-modules-list" variable (:default-value (quote (eshell-alias eshell-banner eshell-basic eshell-cmpl eshell-dirs eshell-glob eshell-hist eshell-ls eshell-pred eshell-prompt eshell-script eshell-term eshell-unix))) nil [1719 2620])
-            ("eshell-using-module" function (:arguments ("module")) nil [2633 2888])
-            ("eshell-unload-extension-modules" function nil nil [2890 3215]))          
-      :file "esh-module.el"
-      :pointmax 3245
-      :fsize 3244
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("esh-util" include nil nil [3447 3466])
-            ("unless" code nil nil [3467 3513])
-            ("esh-arg" include nil nil [3514 3532])
-            ("esh-proc" include nil nil [3533 3552])
-            ("esh-ext" include nil nil [3553 3571])
-            ("pcomplete" include nil nil [3614 3634])
-            ("cl-lib" include nil nil [3594 3611])
-            ("eshell-cmd" customgroup (:user-visible-flag t) nil [3638 3899])
-            ("eshell-prefer-lisp-functions" variable nil nil [3901 4043])
-            ("eshell-lisp-regexp" variable (:default-value "\\([(`]\\|#'\\)") nil [4045 4263])
-            ("eshell-pre-command-hook" variable nil nil [4265 4398])
-            ("eshell-post-command-hook" variable nil nil [4400 4533])
-            ("eshell-prepare-command-hook" variable nil nil [4535 4932])
-            ("eshell-named-command-hook" variable nil nil [4934 5866])
-            ("eshell-pre-rewrite-command-hook" variable (:default-value (quote (eshell-no-command-conversion eshell-subcommand-arg-values))) nil [5868 6186])
-            ("eshell-rewrite-command-hook" variable (:default-value (quote (eshell-rewrite-for-command eshell-rewrite-while-command eshell-rewrite-if-command eshell-rewrite-sexp-command eshell-rewrite-initial-subcommand eshell-rewrite-named-command))) nil [6188 7005])
-            ("eshell-post-rewrite-command-function" variable (:default-value (function identity)) nil [7007 7218])
-            ("eshell-post-rewrite-command-hook" variable nil nil [7219 7447])
-            ("make-obsolete-variable" code nil nil [7448 7575])
-            ("eshell-complex-commands" variable (:default-value (quote ("ls"))) nil [7577 8201])
-            ("eshell-cmd-load-hook" variable nil nil [8224 8407])
-            ("eshell-debug-command" variable nil nil [8409 8814])
-            ("eshell-deferrable-commands" variable (:default-value (quote (eshell-named-command eshell-lisp-command eshell-process-identity))) nil [8816 9196])
-            ("eshell-subcommand-bindings" variable (:default-value (quote ((eshell-in-subcommand-p t) (default-directory default-directory) (process-environment (eshell-copy-environment))))) nil [9198 9455])
-            ("put" code nil nil [9457 9514])
-            ("eshell-ensure-newline-p" variable nil nil [9516 9703])
-            ("eshell-current-command" variable nil nil [9730 9765])
-            ("eshell-command-name" variable nil nil [9766 9798])
-            ("eshell-command-arguments" variable nil nil [9799 9836])
-            ("eshell-in-pipeline-p" variable nil nil [9837 10015])
-            ("eshell-in-subcommand-p" variable nil nil [10016 10051])
-            ("eshell-last-arguments" variable nil nil [10052 10086])
-            ("eshell-last-command-name" variable nil nil [10087 10124])
-            ("eshell-last-async-proc" variable nil nil [10125 10231])
-            ("eshell-interactive-process" function nil nil [10249 10373])
-            ("eshell-cmd-initialize" function nil nil [10375 11589])
-            ("eshell-complete-lisp-symbols" function nil nil [11591 11967])
-            ("eshell--sep-terms" variable nil nil [11989 12015])
-            ("eshell-parse-command" function (:arguments ("command" "args" "toplevel")) nil [12017 13856])
-            ("eshell-debug-command" function (:arguments ("tag" "subform")) nil [13858 14234])
-            ("eshell-debug-show-parsed-args" function (:arguments ("terms")) nil [14236 14426])
-            ("eshell-no-command-conversion" function (:arguments ("terms")) nil [14428 14637])
-            ("eshell-subcommand-arg-values" function (:arguments ("terms")) nil [14639 15035])
-            ("eshell-rewrite-sexp-command" function (:arguments ("terms")) nil [15037 15305])
-            ("eshell-rewrite-initial-subcommand" function (:arguments ("terms")) nil [15307 15516])
-            ("eshell-rewrite-named-command" function (:arguments ("terms")) nil [15518 15845])
-            ("eshell-command-body" variable nil nil [15847 15875])
-            ("eshell-test-body" variable nil nil [15876 15901])
-            ("eshell-invokify-arg" function (:arguments ("arg" "share-output" "silent")) nil [15903 16936])
-            ("eshell-last-command-status" variable nil nil [16938 16973])
-            ("eshell--local-vars" variable nil nil [17000 17105])
-            ("eshell-rewrite-for-command" function (:arguments ("terms")) nil [17107 18229])
-            ("eshell-structure-basic-command" function (:arguments ("func" "names" "keyword" "test" "body" "else")) nil [18231 19514])
-            ("eshell-rewrite-while-command" function (:arguments ("terms")) nil [19516 20110])
-            ("eshell-rewrite-if-command" function (:arguments ("terms")) nil [20112 20862])
-            ("eshell-last-command-result" variable nil nil [20864 20899])
-            ("eshell-exit-success-p" function nil nil [20928 21080])
-            ("eshell--cmd" variable nil nil [21082 21102])
-            ("eshell-parse-pipeline" function (:arguments ("terms")) nil [21104 22691])
-            ("eshell-parse-subcommand-argument" function nil nil [22693 23260])
-            ("eshell-parse-lisp-argument" function nil nil [23262 23760])
-            ("eshell-separate-commands" function (:arguments ("terms" "separator" "reversed" "last-terms-sym")) nil [23762 24916])
-            ("eshell-do-subjob" function (:arguments ("object")) nil [25624 25847])
-            ("eshell-commands" function (:arguments ("object" "silent")) nil [25849 26095])
-            ("eshell-trap-errors" function (:arguments ("object")) nil [26097 26790])
-            ("eshell-output-handle" variable nil nil [26792 26821])
-            ("eshell-error-handle" variable nil nil [26855 26883])
-            ("eshell-copy-handles" function (:arguments ("object")) nil [26919 27249])
-            ("eshell-protect" function (:arguments ("object")) nil [27251 27436])
-            ("eshell-do-pipelines" function (:arguments ("pipeline" "notfirst")) nil [27438 28714])
-            ("eshell-do-pipelines-synchronously" function (:arguments ("pipeline")) nil [28716 30333])
-            ("defalias" code nil nil [30335 30380])
-            ("eshell-execute-pipeline" function (:arguments ("pipeline")) nil [30382 30922])
-            ("eshell-as-subcommand" function (:arguments ("command")) nil [30924 31202])
-            ("eshell-do-command-to-value" function (:arguments ("object")) nil [31204 31482])
-            ("eshell-command-to-value" function (:arguments ("object")) nil [31484 31737])
-            ("eshell/eshell-debug" function (:arguments ("args")) nil [32461 33335])
-            ("pcomplete/eshell-mode/eshell-debug" function nil nil [33337 33472])
-            ("eshell-invoke-directly" function (:arguments ("command")) nil [33474 34004])
-            ("eshell-eval-command" function (:arguments ("command" "input")) nil [34006 35160])
-            ("eshell-resume-command" function (:arguments ("proc" "status")) nil [35162 35460])
-            ("eshell-resume-eval" function nil nil [35462 35950])
-            ("eshell-manipulate" function (:arguments ("tag" "commands")) nil [35952 36418])
-            ("eshell-do-eval" function (:arguments ("form" "synchronous-p")) nil [36420 42405])
-            ("declare-function" code nil nil [42430 42496])
-            ("eshell/which" function (:arguments ("command" "names")) nil [42498 43736])
-            ("put" code nil nil [43738 43790])
-            ("eshell-named-command" function (:arguments ("command" "args")) nil [43792 44391])
-            ("defalias" code nil nil [44393 44448])
-            ("eshell-find-alias-function" function (:arguments ("name")) nil [44450 45220])
-            ("eshell-plain-command" function (:arguments ("command" "args")) nil [45222 45698])
-            ("eshell-exec-lisp" function (:arguments ("printer" "errprint" "func-or-form" "args" "form-p")) nil [45700 46679])
-            ("eshell-apply*" function (:arguments ("printer" "errprint" "func" "args")) nil [46681 46940])
-            ("eshell-funcall*" function (:arguments ("printer" "errprint" "func" "args")) nil [46942 47117])
-            ("eshell-eval*" function (:arguments ("printer" "errprint" "form")) nil [47119 47270])
-            ("eshell-apply" function (:arguments ("func" "args")) nil [47272 47517])
-            ("eshell-funcall" function (:arguments ("func" "args")) nil [47519 47658])
-            ("eshell-eval" function (:arguments ("form")) nil [47660 47794])
-            ("eshell-applyn" function (:arguments ("func" "args")) nil [47796 48044])
-            ("eshell-funcalln" function (:arguments ("func" "args")) nil [48046 48187])
-            ("eshell-evaln" function (:arguments ("form")) nil [48189 48326])
-            ("eshell-last-output-end" variable nil nil [48328 48359])
-            ("eshell-lisp-command" function (:arguments ("object" "args")) nil [48394 49581])
-            ("defalias" code nil nil [49583 49636])
-            ("esh-cmd" package nil nil [49638 49656]))          
-      :file "esh-cmd.el"
-      :pointmax 49683
-      :fsize 49682
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax '((close-paren 3634 . 3635) (symbol 3574 . 3591) (open-paren 3573 . 3574)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("esh-io" package nil nil [2402 2419])
-            ("esh-arg" include nil nil [2421 2439])
-            ("esh-util" include nil nil [2440 2459])
-            ("cl-lib" include nil nil [2482 2499])
-            ("eshell-io" customgroup (:user-visible-flag t) nil [2502 2726])
-            ("eshell-io-load-hook" variable nil nil [2749 2922])
-            ("eshell-number-of-handles" variable (:default-value 3) nil [2924 3272])
-            ("eshell-output-handle" variable (:default-value 1) nil [3274 3390])
-            ("eshell-error-handle" variable (:default-value 2) nil [3392 3506])
-            ("eshell-print-queue-size" variable (:default-value 5) nil [3508 3759])
-            ("eshell-virtual-targets" variable (:default-value (quote (("/dev/eshell" eshell-interactive-print nil) ("/dev/kill" (lambda (mode) (if (eq mode (quote overwrite)) (kill-new "")) (quote eshell-kill-append)) t) ("/dev/clip" (lambda (mode) (if (eq mode (quote overwrite)) (let ((select-enable-clipboard t)) (kill-new ""))) (quote eshell-clipboard-append)) t)))) nil [3761 5032])
-            ("put" code nil nil [5034 5087])
-            ("eshell-current-handles" variable nil nil [5114 5149])
-            ("eshell-last-command-status" variable nil nil [5151 5247])
-            ("eshell-last-command-result" variable nil nil [5249 5349])
-            ("eshell-output-file-buffer" variable nil nil [5351 5449])
-            ("eshell-print-count" variable nil nil [5451 5478])
-            ("eshell-current-redirections" variable nil nil [5479 5515])
-            ("eshell-io-initialize" function nil nil [5533 5941])
-            ("eshell-parse-redirection" function nil nil [5943 6610])
-            ("eshell-strip-redirections" function (:arguments ("terms")) nil [6612 7209])
-            ("eshell--apply-redirections" function (:arguments ("cmd")) nil [7211 7422])
-            ("eshell-create-handles" function (:arguments ("stdout" "output-mode" "stderr" "error-mode")) nil [7424 8127])
-            ("eshell-protect-handles" function (:arguments ("handles")) nil [8129 8419])
-            ("eshell-close-target" function (:arguments ("target" "status")) nil [8421 9650])
-            ("eshell-close-handles" function (:arguments ("exit-code" "result" "handles")) nil [9652 10743])
-            ("eshell-kill-append" function (:arguments ("string")) nil [10745 10897])
-            ("eshell-clipboard-append" function (:arguments ("string")) nil [10899 11093])
-            ("eshell-get-target" function (:arguments ("target" "mode")) nil [11095 12455])
-            ("grep-null-device" variable nil nil [12457 12482])
-            ("eshell-set-output-handle" function (:arguments ("index" "mode" "target")) nil [12484 13293])
-            ("eshell-interactive-output-p" function nil nil [13295 13564])
-            ("eshell-print-queue" variable nil nil [13566 13597])
-            ("eshell-print-queue-count" variable (:default-value -1) nil [13598 13634])
-            ("eshell-print" function (:arguments ("object")) nil [13636 13770])
-            ("eshell-flush" function (:arguments ("reset-p")) nil [13772 14174])
-            ("eshell-init-print-buffer" function nil nil [14176 14275])
-            ("eshell-buffered-print" function (:arguments ("strings")) nil [14277 14714])
-            ("eshell-error" function (:arguments ("object")) nil [14716 14848])
-            ("eshell-errorn" function (:arguments ("object")) nil [14850 14999])
-            ("eshell-printn" function (:arguments ("object")) nil [15001 15151])
-            ("eshell-output-filter" function (:prototype-flag t) nil [15153 15196])
-            ("eshell-output-object-to-target" function (:arguments ("object" "target")) nil [15198 16471])
-            ("eshell-output-object" function (:arguments ("object" "handle-index" "handles")) nil [16473 16901]))          
-      :file "esh-io.el"
-      :pointmax 16927
-      :fsize 16926
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax '((close-paren 2499 . 2500) (symbol 2462 . 2479) (open-paren 2461 . 2462)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("esh-var" package nil nil [3427 3445])
-            ("esh-util" include nil nil [3447 3466])
-            ("esh-cmd" include nil nil [3467 3485])
-            ("esh-opt" include nil nil [3486 3504])
-            ("pcomplete" include nil nil [3506 3526])
-            ("env" include nil nil [3527 3541])
-            ("ring" include nil nil [3542 3557])
-            ("eshell-var" customgroup (:user-visible-flag t) nil [3559 3887])
-            ("eshell-var-load-hook" variable nil nil [3910 4092])
-            ("eshell-prefer-lisp-variables" variable nil nil [4094 4240])
-            ("eshell-complete-export-definition" variable (:default-value t) nil [4242 4399])
-            ("eshell-modify-global-environment" variable nil nil [4401 4554])
-            ("eshell-variable-name-regexp" variable (:default-value "[A-Za-z0-9_-]+") nil [4556 4893])
-            ("eshell-variable-aliases-list" variable (:default-value (quote (("COLUMNS" (lambda (indices) (window-width)) t) ("LINES" (lambda (indices) (window-height)) t) ("_" (lambda (indices) (if (not indices) (car (last eshell-last-arguments)) (eshell-apply-indices eshell-last-arguments indices)))) ("?" eshell-last-command-status) ("$" eshell-last-command-result) ("0" eshell-command-name) ("1" (lambda (indices) (nth 0 eshell-command-arguments))) ("2" (lambda (indices) (nth 1 eshell-command-arguments))) ("3" (lambda (indices) (nth 2 eshell-command-arguments))) ("4" (lambda (indices) (nth 3 eshell-command-arguments))) ("5" (lambda (indices) (nth 4 eshell-command-arguments))) ("6" (lambda (indices) (nth 5 eshell-command-arguments))) ("7" (lambda (indices) (nth 6 eshell-command-arguments))) ("8" (lambda (indices) (nth 7 eshell-command-arguments))) ("9" (lambda (indices) (nth 8 eshell-command-arguments))) ("*" (lambda (indices) (if (not indices) eshell-command-arguments (eshell-apply-indices eshell-command-arguments indices))))))) nil [4895 6936])
-            ("put" code nil nil [6938 6997])
-            ("eshell-var-initialize" function nil nil [7015 8042])
-            ("eshell-handle-local-variables" function nil nil [8044 9722])
-            ("eshell-interpolate-variable" function nil nil [9724 10016])
-            ("eshell/define" function (:arguments ("var-alias" "definition")) nil [10018 10698])
-            ("eshell/export" function (:arguments ("sets")) nil [10700 11008])
-            ("pcomplete/eshell-mode/export" function nil nil [11010 11219])
-            ("eshell/unset" function (:arguments ("args")) nil [11221 11388])
-            ("pcomplete/eshell-mode/unset" function nil nil [11390 11523])
-            ("eshell/setq" function (:arguments ("args")) nil [11525 11767])
-            ("pcomplete/eshell-mode/setq" function nil nil [11769 11969])
-            ("eshell/env" function (:arguments ("args")) nil [11971 12347])
-            ("eshell-insert-envvar" function
-               (:user-visible-flag t
-                :arguments ("envvar-name"))
-                nil [12349 12567])
-            ("eshell-envvar-names" function (:arguments ("environment")) nil [12569 12809])
-            ("eshell-environment-variables" function nil nil [12811 13289])
-            ("eshell-parse-variable" function nil nil [13291 13977])
-            ("eshell-parse-variable-ref" function nil nil [13979 16745])
-            ("eshell-glob-function" variable nil nil [16747 16776])
-            ("eshell-parse-indices" function nil nil [16778 17186])
-            ("eshell-get-variable" function (:arguments ("name" "indices")) nil [17188 17839])
-            ("eshell-apply-indices" function (:arguments ("value" "indices")) nil [17841 19432])
-            ("eshell-index-value" function (:arguments ("value" "index")) nil [19434 20118])
-            ("eshell-complete-variable-reference" function nil nil [20152 20517])
-            ("eshell-variables-list" function nil nil [20519 21191])
-            ("eshell-complete-variable-assignment" function nil nil [21193 21639]))          
-      :file "esh-var.el"
-      :pointmax 21666
-      :fsize 21665
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("esh-arg" package nil nil [1054 1072])
-            ("esh-mode" include nil nil [1074 1093])
-            ("eshell-arg" customgroup (:user-visible-flag t) nil [1095 1328])
-            ("eshell-parse-argument-hook" variable (:default-value (list (quote eshell-parse-special-reference) (function (lambda nil (when (and (not eshell-current-argument) (not eshell-current-quoted) (looking-at eshell-number-regexp) (eshell-arg-delimiter (match-end 0))) (goto-char (match-end 0)) (let ((str (match-string 0))) (if (> (length str) 0) (add-text-properties 0 (length str) (quote (number t)) str)) str)))) (function (lambda nil (unless eshell-inside-quote-regexp (setq eshell-inside-quote-regexp (format "[^%s]+" (apply (quote string) eshell-special-chars-inside-quoting)))) (unless eshell-outside-quote-regexp (setq eshell-outside-quote-regexp (format "[^%s]+" (apply (quote string) eshell-special-chars-outside-quoting)))) (when (looking-at (if eshell-current-quoted eshell-inside-quote-regexp eshell-outside-quote-regexp)) (goto-char (match-end 0)) (let ((str (match-string 0))) (if str (set-text-properties 0 (length str) nil str)) str)))) (function (lambda nil (let (comment-p) (when (or (looking-at "[ 	]+") (and (not eshell-current-argument) (looking-at "#\\([^<'].*\\|$\\)") (setq comment-p t))) (if comment-p (add-text-properties (match-beginning 0) (match-end 0) (quote (comment t)))) (goto-char (match-end 0)) (eshell-finish-arg))))) (quote eshell-parse-backslash) (quote eshell-parse-literal-quote) (quote eshell-parse-double-quote) (quote eshell-parse-delimiter))) nil [1330 3818])
-            ("eshell-arg-load-hook" variable nil nil [3852 4035])
-            ("eshell-delimiter-argument-list" variable (:default-value (quote (59 38 124 62 32 9 10))) nil [4037 4218])
-            ("eshell-special-chars-inside-quoting" variable (:default-value (quote (92 34))) nil [4220 4388])
-            ("eshell-special-chars-outside-quoting" variable (:default-value (append eshell-delimiter-argument-list (quote (35 33 92 34 39)))) nil [4390 4682])
-            ("eshell-current-argument" variable nil nil [4709 4745])
-            ("eshell-current-modifiers" variable nil nil [4746 4783])
-            ("eshell-arg-listified" variable nil nil [4784 4817])
-            ("eshell-nested-argument" variable nil nil [4818 4853])
-            ("eshell-current-quoted" variable nil nil [4854 4888])
-            ("eshell-inside-quote-regexp" variable nil nil [4889 4928])
-            ("eshell-outside-quote-regexp" variable nil nil [4929 4969])
-            ("eshell-arg-initialize" function nil nil [4987 5259])
-            ("eshell-insert-buffer-name" function
-               (:user-visible-flag t
-                :arguments ("buffer-name"))
-                nil [5261 5452])
-            ("eshell-escape-arg" function (:arguments ("string")) nil [5454 5643])
-            ("eshell-resolve-current-argument" function nil nil [5645 6403])
-            ("eshell-finish-arg" function (:arguments ("argument")) nil [6405 6591])
-            ("eshell-arg-delimiter" function (:arguments ("pos")) nil [6593 6859])
-            ("eshell-quote-argument" function (:arguments ("string")) nil [6861 7205])
-            ("eshell-parse-arguments" function (:arguments ("beg" "end")) nil [7228 8407])
-            ("eshell-parse-argument" function nil nil [8409 9527])
-            ("eshell-operator" function (:arguments ("_args")) nil [9529 9691])
-            ("eshell-looking-at-backslash-return" function (:arguments ("pos")) nil [9693 9944])
-            ("eshell-quote-backslash" function (:arguments ("string" "index")) nil [9946 10536])
-            ("eshell-parse-backslash" function nil nil [10538 11651])
-            ("eshell-parse-literal-quote" function nil nil [11653 12116])
-            ("eshell-parse-double-quote" function nil nil [12118 12631])
-            ("eshell-parse-special-reference" function nil nil [12633 13775])
-            ("eshell-parse-delimiter" function nil nil [13777 14484]))          
-      :file "esh-arg.el"
-      :pointmax 14511
-      :fsize 14510
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("esh-proc" package nil nil [867 886])
-            ("esh-cmd" include nil nil [888 906])
-            ("eshell-proc" customgroup (:user-visible-flag t) nil [908 1119])
-            ("eshell-proc-load-hook" variable nil nil [1142 1323])
-            ("eshell-process-wait-seconds" variable nil nil [1325 1475])
-            ("eshell-process-wait-milliseconds" variable (:default-value 50) nil [1477 1638])
-            ("eshell-done-messages-in-minibuffer" variable (:default-value t) nil [1640 1796])
-            ("eshell-delete-exited-processes" variable (:default-value t) nil [1798 2626])
-            ("eshell-reset-signals" variable (:default-value "^\\(interrupt\\|killed\\|quit\\|stopped\\)") nil [2628 2822])
-            ("eshell-exec-hook" variable nil nil [2824 3263])
-            ("eshell-kill-hook" variable nil nil [3265 3757])
-            ("eshell-current-subjob-p" variable nil nil [3784 3820])
-            ("eshell-process-list" variable nil nil [3822 3904])
-            ("eshell-kill-process-function" function (:arguments ("proc" "status")) nil [3922 4403])
-            ("eshell-proc-initialize" function nil nil [4405 5102])
-            ("eshell-reset-after-proc" function (:arguments ("status")) nil [5104 5390])
-            ("eshell-wait-for-process" function (:arguments ("procs")) nil [5392 5821])
-            ("defalias" code nil nil [5823 5871])
-            ("eshell/jobs" function (:arguments ("args")) nil [5873 6021])
-            ("eshell/kill" function (:arguments ("args")) nil [6023 7219])
-            ("eshell-read-process-name" function (:arguments ("prompt")) nil [7221 7512])
-            ("eshell-insert-process" function
-               (:user-visible-flag t
-                :arguments ("process"))
-                nil [7514 7771])
-            ("eshell-record-process-object" function (:arguments ("object")) nil [7773 8163])
-            ("eshell-remove-process-entry" function (:arguments ("entry")) nil [8165 8517])
-            ("eshell-scratch-buffer" variable (:default-value " *eshell-scratch*") nil [8519 8623])
-            ("eshell-last-sync-output-start" variable nil nil [8624 8801])
-            ("eshell-needs-pipe" variable (:default-value (quote ("bc"))) nil [8803 9112])
-            ("eshell-needs-pipe-p" function (:arguments ("command")) nil [9114 9645])
-            ("eshell-gather-process-output" function (:arguments ("command" "args")) nil [9647 13431])
-            ("eshell-insertion-filter" function (:arguments ("proc" "string")) nil [13433 14107])
-            ("eshell-sentinel" function (:arguments ("proc" "string")) nil [14109 15676])
-            ("eshell-process-interact" function (:arguments ("func" "all" "query")) nil [15678 16663])
-            ("eshell-kill-process-wait-time" variable (:default-value 5) nil [16665 16820])
-            ("eshell-kill-process-signals" variable (:default-value (quote (SIGINT SIGQUIT SIGKILL))) nil [16822 17233])
-            ("eshell-kill-processes-on-exit" variable nil nil [17235 18143])
-            ("eshell-round-robin-kill" function (:arguments ("query")) nil [18145 18640])
-            ("eshell-query-kill-processes" function nil nil [18642 19298])
-            ("eshell-interrupt-process" function (:user-visible-flag t) nil [19300 19483])
-            ("eshell-kill-process" function (:user-visible-flag t) nil [19485 19650])
-            ("eshell-quit-process" function (:user-visible-flag t) nil [19652 19828])
-            ("eshell-send-eof-to-process" function (:user-visible-flag t) nil [20371 20527]))          
-      :file "esh-proc.el"
-      :pointmax 20555
-      :fsize 20554
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("esh-ext" package nil nil [1223 1241])
-            ("esh-util" include nil nil [1243 1262])
-            ("esh-cmd" include nil nil [1325 1343])
-            ("esh-io" include nil nil [1305 1322])
-            ("cl-lib" include nil nil [1285 1302])
-            ("esh-arg" include nil nil [1345 1363])
-            ("esh-opt" include nil nil [1364 1382])
-            ("esh-proc" include nil nil [1383 1402])
-            ("eshell-ext" customgroup (:user-visible-flag t) nil [1404 1595])
-            ("eshell-ext-load-hook" variable nil nil [1618 1795])
-            ("eshell-binary-suffixes" variable (:default-value exec-suffixes) nil [1797 1956])
-            ("eshell-force-execution" variable (:default-value (not (null (memq system-type (quote (windows-nt ms-dos)))))) nil [1958 2573])
-            ("eshell-search-path" function (:arguments ("name")) nil [2575 3249])
-            ("declare-function" code nil nil [3400 3454])
-            ("eshell-windows-shell-file" variable (:default-value (if (eshell-under-windows-p) (if (string-match "\\(cmdproxy\\|sh\\)\\.\\(com\\|exe\\)" shell-file-name) (or (eshell-search-path "cmd.exe") (eshell-search-path "command.com")) shell-file-name))) nil [3456 3918])
-            ("eshell-parse-command" function (:prototype-flag t) nil [3920 3962])
-            ("eshell-invoke-batch-file" function (:arguments ("args")) nil [3964 4336])
-            ("eshell-interpreter-alist" variable (:default-value (if (eshell-under-windows-p) (quote (("\\.\\(bat\\|cmd\\)\\'" . eshell-invoke-batch-file))))) nil [4338 5417])
-            ("eshell-alternate-command-hook" variable nil nil [5419 5985])
-            ("eshell-command-interpreter-max-length" variable (:default-value 256) nil [5987 6147])
-            ("eshell-explicit-command-char" variable (:default-value 42) nil [6149 6384])
-            ("eshell-ext-initialize" function nil nil [6402 6556])
-            ("eshell-explicit-command" function (:arguments ("command" "args")) nil [6558 7051])
-            ("eshell-close-handles" function (:prototype-flag t) nil [7053 7094])
-            ("eshell-remote-command" function (:arguments ("command" "args")) nil [7096 8067])
-            ("eshell-external-command" function (:arguments ("command" "args")) nil [8069 8781])
-            ("eshell/addpath" function (:arguments ("args")) nil [8783 9453])
-            ("put" code nil nil [9455 9509])
-            ("eshell-script-interpreter" function (:arguments ("file")) nil [9511 10075])
-            ("eshell-find-interpreter" function (:arguments ("file" "args" "no-examine-p")) nil [10077 12235]))          
-      :file "esh-ext.el"
-      :pointmax 12262
-      :fsize 12261
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax '((close-paren 1343 . 1344) (symbol 1265 . 1282) (open-paren 1264 . 1265)))
-    (semanticdb-table "semanticdb-table"
-      :file "esh-opt.el"
-      :fsize 10032
-      :lastmodtime '(23525 29550 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [7787 7804])
-            ("esh-util" include nil nil [7806 7825])
-            ("esh-mode" include nil nil [7826 7845])
-            ("eshell" customgroup (:user-visible-flag t) nil [7847 8162])
-            ("eshell-buffer-name" variable nil nil [8255 8282])
-            ("eshell-add-to-window-buffer-names" function nil nil [8284 8483])
-            ("eshell-remove-from-window-buffer-names" function nil nil [8485 8721])
-            ("eshell-load-hook" variable nil nil [8723 8830])
-            ("eshell-unload-hook" variable (:default-value (quote (eshell-unload-all-modules))) nil [8832 8974])
-            ("eshell-buffer-name" variable (:default-value "*eshell*") nil [8976 9092])
-            ("eshell-directory-name" variable (:default-value (locate-user-emacs-file "eshell/" ".eshell/")) nil [9094 9272])
-            ("eshell" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [9478 10438])
-            ("eshell-return-exits-minibuffer" function nil nil [10440 10864])
-            ("eshell-non-interactive-p" variable nil nil [10866 11100])
-            ("declare-function" code nil nil [11102 11166])
-            ("eshell-command" function
-               (:user-visible-flag t
-                :arguments ("command" "arg"))
-                nil [11183 13863])
-            ("eshell-command-result" function (:arguments ("command" "status-var")) nil [13880 14765])
-            ("define-obsolete-function-alias" code nil nil [15006 15082])
-            ("eshell-unload-all-modules" function nil nil [15095 16083])
-            ("run-hooks" code nil nil [16085 16114])
-            ("eshell" package nil nil [16116 16133]))          
-      :file "eshell.el"
-      :pointmax 16159
-      :fsize 16158
-      :lastmodtime '(23525 29550 0 0)
-      :unmatched-syntax '((close-paren 7804 . 7805) (symbol 7767 . 7784) (open-paren 7766 . 7767)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eshell" include nil nil [3767 3784])
-            ("progn" code nil nil [3801 4004])
-            ("eshell-aliases-file" variable (:default-value (expand-file-name "alias" eshell-directory-name)) nil [4006 4459])
-            ("eshell-bad-command-tolerance" variable (:default-value 3) nil [4461 4683])
-            ("eshell-alias-load-hook" variable nil nil [4685 4870])
-            ("eshell-command-aliases-list" variable nil nil [4872 5380])
-            ("put" code nil nil [5382 5440])
-            ("eshell-failed-commands-alist" variable nil nil [5442 5522])
-            ("eshell-alias-initialize" function nil nil [5524 5945])
-            ("eshell-command-aliased-p" function (:arguments ("name")) nil [5947 6029])
-            ("eshell/alias" function (:arguments ("alias" "definition")) nil [6031 6882])
-            ("pcomplete-stub" variable nil nil [6884 6907])
-            ("pcomplete-here" function (:prototype-flag t) nil [6908 6946])
-            ("pcomplete/eshell-mode/alias" function nil nil [6948 7101])
-            ("eshell-read-aliases-list" function nil nil [7103 7690])
-            ("eshell-write-aliases-list" function nil nil [7692 7999])
-            ("eshell-lookup-alias" function (:arguments ("name")) nil [8001 8151])
-            ("eshell-prevent-alias-expansion" variable nil nil [8153 8196])
-            ("eshell-maybe-replace-by-alias" function (:arguments ("command" "_args")) nil [8198 8832])
-            ("eshell-alias-completions" function (:arguments ("name")) nil [8834 9170])
-            ("eshell-fix-bad-commands" function (:arguments ("name")) nil [9172 10118])
-            ("em-alias" package nil nil [10120 10139]))          
-      :file "em-alias.el"
-      :pointmax 10240
-      :fsize 10239
-      :lastmodtime '(23525 29548 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!eshell!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041gnus\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041gnus\041semantic.cache"
deleted file mode 100644
index c631303..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041gnus\041semantic.cache"
+++ /dev/null
@@ -1,7705 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1222 1235])
-            ("time-date" include nil nil [1238 1258])
-            ("gnus-completing-read-function" variable (:default-value (quote gnus-emacs-completing-read)) nil [1260 1753])
-            ("gnus-completion-styles" variable (:default-value (append (when (and (assq (quote substring) completion-styles-alist) (not (memq (quote substring) completion-styles))) (list (quote substring))) completion-styles)) nil [1755 2068])
-            ("nnmail-pathname-coding-system" variable nil nil [2125 2163])
-            ("nnmail-active-file-coding-system" variable nil nil [2164 2205])
-            ("gnus-emphasize-whitespace-regexp" variable nil nil [2259 2300])
-            ("gnus-original-article-buffer" variable nil nil [2301 2338])
-            ("gnus-user-agent" variable nil nil [2339 2363])
-            ("gnus-get-buffer-window" function (:prototype-flag t) nil [2365 2410])
-            ("nnheader-narrow-to-headers" function (:prototype-flag t) nil [2411 2460])
-            ("nnheader-replace-chars-in-string" function (:prototype-flag t) nil [2461 2516])
-            ("mail-header-remove-comments" function (:prototype-flag t) nil [2517 2569])
-            ("gnus-replace-in-string" function (:arguments ("string" "regexp" "newtext" "literal")) nil [2571 2977])
-            ("gnus-eval-in-buffer-window" function (:arguments ("buffer" "forms")) nil [2979 3524])
-            ("put" code nil nil [3526 3583])
-            ("put" code nil nil [3584 3648])
-            ("gnus-intern-safe" function (:arguments ("string" "hashtable")) nil [3650 3858])
-            ("gnus-goto-char" function (:arguments ("point")) nil [3860 3925])
-            ("gnus-buffer-exists-p" function (:arguments ("buffer")) nil [3927 4087])
-            ("gnus-delete-first" function (:arguments ("elt" "list")) nil [4089 4424])
-            ("gnus-delete-line" function (:arguments ("n")) nil [4477 4597])
-            ("gnus-extract-address-components" function (:arguments ("from")) nil [4599 6403])
-            ("declare-function" code nil nil [6405 6480])
-            ("gnus-fetch-field" function (:arguments ("field")) nil [6482 6742])
-            ("gnus-fetch-original-field" function (:arguments ("field")) nil [6744 6933])
-            ("gnus-goto-colon" function nil nil [6936 7137])
-            ("declare-function" code nil nil [7139 7214])
-            ("declare-function" code nil nil [7215 7286])
-            ("declare-function" code nil nil [7287 7357])
-            ("declare-function" code nil nil [7414 7513])
-            ("gnus-decode-newsgroups" function (:arguments ("newsgroups" "group" "method")) nil [7515 7840])
-            ("gnus-remove-text-with-property" function (:arguments ("prop")) nil [7842 8301])
-            ("gnus-find-text-property-region" function (:arguments ("start" "end" "prop")) nil [8303 8929])
-            ("gnus-newsgroup-directory-form" function (:arguments ("newsgroup")) nil [8931 9319])
-            ("gnus-newsgroup-savable-name" function (:arguments ("group")) nil [9321 9500])
-            ("gnus-string>" function (:arguments ("s1" "s2")) nil [9502 9579])
-            ("gnus-string<" function (:arguments ("s1" "s2")) nil [9581 9984])
-            ("gnus-file-newer-than" function (:arguments ("file" "date")) nil [10007 10203])
-            ("gnus-local-set-keys" function (:arguments ("plist")) nil [10225 10370])
-            ("gnus-define-keys" function (:arguments ("keymap" "plist")) nil [10372 10515])
-            ("gnus-define-keys-safe" function (:arguments ("keymap" "plist")) nil [10517 10708])
-            ("put" code nil nil [10710 10757])
-            ("put" code nil nil [10758 10810])
-            ("put" code nil nil [10811 10861])
-            ("gnus-define-keymap" function (:arguments ("keymap" "plist")) nil [10863 11000])
-            ("put" code nil nil [11002 11051])
-            ("gnus-define-keys-1" function (:arguments ("keymap" "plist" "safe")) nil [11053 11697])
-            ("gnus-y-or-n-p" function (:arguments ("prompt")) nil [11699 11780])
-            ("gnus-yes-or-no-p" function (:arguments ("prompt")) nil [11781 11868])
-            ("gnus-seconds-today" function nil nil [12100 12277])
-            ("gnus-seconds-month" function nil nil [12279 12507])
-            ("gnus-seconds-year" function nil nil [12509 12817])
-            ("gnus-date-get-time" function (:arguments ("date")) nil [12819 13258])
-            ("gnus-dd-mmm" function (:arguments ("messy-date")) nil [13260 13459])
-            ("gnus-time-iso8601" function (:arguments ("time")) nil [13461 13595])
-            ("gnus-date-iso8601" function (:arguments ("date")) nil [13597 13759])
-            ("gnus-mode-string-quote" function (:arguments ("string")) nil [13761 13878])
-            ("gnus-make-hashtable" function (:arguments ("hashsize")) nil [13992 14119])
-            ("gnus-create-hash-size" function (:arguments ("min")) nil [14534 14636])
-            ("gnus-verbose" variable (:default-value 6) nil [14638 14994])
-            ("gnus-add-timestamp-to-message" variable nil nil [14996 15599])
-            ("gnus-message-with-timestamp-1" function (:arguments ("format-string" "args")) nil [15622 16759])
-            ("gnus-action-message-log" variable nil nil [16762 16798])
-            ("gnus-message-with-timestamp" function (:arguments ("format-string" "args")) nil [16800 17076])
-            ("gnus-message" function (:arguments ("level" "args")) nil [17078 17854])
-            ("gnus-final-warning" function nil nil [17856 18097])
-            ("gnus-error" function (:arguments ("level" "args")) nil [18099 18457])
-            ("gnus-split-references" function (:arguments ("references")) nil [18459 18802])
-            ("gnus-extract-references" function (:arguments ("references")) nil [18804 19126])
-            ("gnus-parent-id" function (:arguments ("references" "n")) nil [19128 19622])
-            ("gnus-buffer-live-p" function (:arguments ("buffer")) nil [19624 19753])
-            ("gnus-horizontal-recenter" function nil nil [19755 20639])
-            ("gnus-read-event-char" function (:arguments ("prompt")) nil [20641 20795])
-            ("gnus-copy-file" function
-               (:user-visible-flag t
-                :arguments ("file" "to"))
-                nil [20797 21091])
-            ("gnus-work-buffer" variable (:default-value " *gnus work*") nil [21093 21133])
-            ("declare-function" code nil nil [21135 21190])
-            ("declare-function" code nil nil [21220 21268])
-            ("gnus-set-work-buffer" function nil nil [21270 21560])
-            ("gnus-group-real-name" function (:arguments ("group")) nil [21562 21762])
-            ("gnus-group-server" function (:arguments ("group")) nil [21764 22194])
-            ("gnus-make-sort-function" function (:arguments ("funs")) nil [22196 22644])
-            ("gnus-make-sort-function-1" function (:arguments ("funs")) nil [22646 23251])
-            ("gnus-turn-off-edit-menu" function (:arguments ("type")) nil [23253 23442])
-            ("gnus-bind-print-variables" function (:arguments ("forms")) nil [23444 24082])
-            ("gnus-prin1" function (:arguments ("form")) nil [24084 24347])
-            ("gnus-prin1-to-string" function (:arguments ("form")) nil [24349 24593])
-            ("gnus-pp" function (:arguments ("form" "stream")) nil [24595 24878])
-            ("gnus-pp-to-string" function (:arguments ("form")) nil [24880 25125])
-            ("gnus-make-directory" function (:arguments ("directory")) nil [25127 25420])
-            ("gnus-write-buffer" function (:arguments ("file")) nil [25422 25767])
-            ("gnus-delete-file" function (:arguments ("file")) nil [25769 25883])
-            ("gnus-delete-duplicates" function (:arguments ("list")) nil [25885 26109])
-            ("gnus-delete-directory" function (:arguments ("directory")) nil [26111 26651])
-            ("gnus-strip-whitespace" function (:arguments ("string")) nil [26653 26839])
-            ("gnus-put-text-property-excluding-newlines" function (:arguments ("beg" "end" "prop" "val")) nil [26841 27279])
-            ("gnus-put-overlay-excluding-newlines" function (:arguments ("beg" "end" "prop" "val")) nil [27281 27731])
-            ("gnus-put-text-property-excluding-characters-with-faces" function (:arguments ("beg" "end" "prop" "val")) nil [27733 28327])
-            ("gnus-get-text-property-excluding-characters-with-faces" function (:arguments ("pos" "prop")) nil [28329 28732])
-            ("gnus-faces-at" function (:arguments ("position")) nil [28734 28989])
-            ("gnus-atomic-be-safe" variable (:default-value t) nil [29321 29424])
-            ("gnus-atomic-progn" function (:arguments ("forms")) nil [29426 29987])
-            ("put" code nil nil [29989 30037])
-            ("gnus-atomic-progn-assign" function (:arguments ("protect" "forms")) nil [30039 31306])
-            ("put" code nil nil [31308 31363])
-            ("gnus-atomic-setq" function (:arguments ("pairs")) nil [31429 31965])
-            ("rmail" include nil nil [32067 32083])
-            ("rmail-update-summary" function (:prototype-flag t) nil [32084 32127])
-            ("mm-text-coding-system" variable nil nil [32129 32159])
-            ("declare-function" code nil nil [32161 32272])
-            ("declare-function" code nil nil [32273 32327])
-            ("declare-function" code nil nil [32328 32390])
-            ("declare-function" code nil nil [32391 32460])
-            ("declare-function" code nil nil [32461 32511])
-            ("declare-function" code nil nil [32512 32582])
-            ("declare-function" code nil nil [32626 32679])
-            ("declare-function" code nil nil [32680 32739])
-            ("declare-function" code nil nil [32740 32797])
-            ("gnus-output-to-rmail" function (:arguments ("filename" "ask")) nil [32799 36740])
-            ("gnus-output-to-mail" function (:arguments ("filename" "ask")) nil [36742 38654])
-            ("gnus-convert-article-to-rmail" function nil nil [38656 39077])
-            ("gnus-map-function" function (:arguments ("funs" "arg")) nil [39079 39290])
-            ("gnus-run-hooks" function (:arguments ("funcs")) nil [39292 39445])
-            ("gnus-run-hook-with-args" function (:arguments ("hook" "args")) nil [39447 39635])
-            ("gnus-run-mode-hooks" function (:arguments ("funcs")) nil [39637 39785])
-            ("gnus-group-buffer" variable nil nil [39800 39826])
-            ("gnus-alive-p" function nil nil [39849 40068])
-            ("gnus-remove-if" function (:arguments ("predicate" "sequence" "hash-table-p")) nil [40070 40713])
-            ("gnus-remove-if-not" function (:arguments ("predicate" "sequence" "hash-table-p")) nil [40715 41362])
-            ("gnus-grep-in-list" function (:arguments ("word" "list")) nil [41364 41588])
-            ("gnus-alist-pull" function (:arguments ("key" "alist" "assoc-p")) nil [41590 41840])
-            ("gnus-globalify-regexp" function (:arguments ("re")) nil [41842 42051])
-            ("gnus-set-window-start" function (:arguments ("point")) nil [42053 42277])
-            ("gnus-annotation-in-region-p" function (:arguments ("b" "e")) nil [42279 42451])
-            ("gnus-or" function (:arguments ("elems")) nil [42453 42615])
-            ("gnus-and" function (:arguments ("elems")) nil [42617 42790])
-            ("declare-function" code nil nil [42821 42870])
-            ("gnus-write-active-file" function (:arguments ("file" "hashtb" "full-names")) nil [42872 43705])
-            ("gnus-with-output-to-file" function (:arguments ("file" "body")) nil [43759 44547])
-            ("put" code nil nil [44549 44604])
-            ("put" code nil nil [44605 44667])
-            ("gnus-add-text-properties-when" function (:arguments ("property" "value" "start" "end" "properties" "object")) nil [44669 45190])
-            ("gnus-remove-text-properties-when" function (:arguments ("property" "value" "start" "end" "properties" "object")) nil [45192 45685])
-            ("gnus-string-remove-all-properties" function (:arguments ("string")) nil [45687 45858])
-            ("gnus-string-equal" function (:arguments ("x" "y")) nil [46027 46232])
-            ("gnus-use-byte-compile" variable (:default-value t) nil [46234 46460])
-            ("gnus-byte-compile" function (:arguments ("form")) nil [46462 46800])
-            ("gnus-remassoc" function (:arguments ("key" "alist")) nil [46802 47274])
-            ("gnus-update-alist-soft" function (:arguments ("key" "value" "alist")) nil [47276 47423])
-            ("gnus-create-info-command" function (:arguments ("node")) nil [47425 47709])
-            ("gnus-not-ignore" function (:arguments ("args")) nil [47711 47751])
-            ("gnus-directory-sep-char-regexp" variable (:default-value "/") nil [47753 47944])
-            ("gnus-url-unhex" function (:arguments ("x")) nil [47946 48058])
-            ("gnus-url-unhex-string" function (:arguments ("str" "allow-newlines")) nil [48085 48908])
-            ("gnus-make-predicate" function (:arguments ("spec")) nil [48910 49183])
-            ("gnus-make-predicate-1" function (:arguments ("spec")) nil [49185 49441])
-            ("gnus-completing-read" function (:arguments ("prompt" "collection" "require-match" "initial-input" "history" "def")) nil [49443 49843])
-            ("gnus-emacs-completing-read" function (:arguments ("prompt" "collection" "require-match" "initial-input" "history" "def")) nil [49845 50195])
-            ("ido-completing-read" function (:prototype-flag t) nil [50197 50234])
-            ("gnus-ido-completing-read" function (:arguments ("prompt" "collection" "require-match" "initial-input" "history" "def")) nil [50235 50513])
-            ("declare-function" code nil nil [50516 50645])
-            ("iswitchb-temp-buflist" variable nil nil [50646 50676])
-            ("iswitchb-mode" variable nil nil [50677 50699])
-            ("gnus-iswitchb-completing-read" function (:arguments ("prompt" "collection" "require-match" "initial-input" "history" "def")) nil [50701 51837])
-            ("put" code nil nil [51839 51894])
-            ("put" code nil nil [51895 51952])
-            ("gnus-parse-without-error" function (:arguments ("body")) nil [51954 52280])
-            ("gnus-cache-file-contents" function (:arguments ("file" "variable" "function")) nil [52282 52741])
-            ("gnus-multiple-choice" function (:arguments ("prompt" "choice" "idx")) nil [52743 54295])
-            ("gnus-frame-or-window-display-name" function (:arguments ("object")) nil [54297 54743])
-            ("tool-bar-mode" variable nil nil [54745 54767])
-            ("gnus-tool-bar-update" function (:arguments ("ignore")) nil [54769 55189])
-            ("gnus-mapcar" function (:arguments ("function" "seq1" "seqs2_n")) nil [55264 56566])
-            ("gnus-emacs-version" function nil nil [56568 57099])
-            ("gnus-rename-file" function (:arguments ("old-path" "new-path" "trim")) nil [57101 57866])
-            ("gnus-set-file-modes" function (:arguments ("filename" "mode")) nil [57868 57996])
-            ("declare-function" code nil nil [57998 58067])
-            ("gnus-rescale-image" function (:arguments ("image" "size")) nil [58069 58872])
-            ("gnus-recursive-directory-files" function (:arguments ("dir")) nil [58874 59500])
-            ("gnus-list-memq-of-list" function (:arguments ("elements" "list")) nil [59502 59730])
-            ("gnus-test-list" function (:arguments ("list" "predicate")) nil [59732 60013])
-            ("gnus-subsetp" function (:arguments ("list1" "list2")) nil [60015 60326])
-            ("gnus-setdiff" function (:arguments ("list1" "list2")) nil [60328 60598])
-            ("gnus-image-type-available-p" function (:arguments ("type")) nil [60622 60728])
-            ("gnus-create-image" function (:arguments ("file" "type" "data-p" "props")) nil [60730 61068])
-            ("gnus-put-image" function (:arguments ("glyph" "string" "category")) nil [61070 61371])
-            ("gnus-remove-image" function (:arguments ("image" "category")) nil [61373 62154])
-            ("gnus-kill-all-overlays" function nil nil [62156 62423])
-            ("gnus-util" package nil nil [62425 62445]))          
-      :file "gnus-util.el"
-      :pointmax 62474
-      :fsize 62473
-      :lastmodtime '(23525 29554 0 0)
-      :unmatched-syntax '((close-paren 16759 . 16760) (symbol 15602 . 15619) (open-paren 15601 . 15602) (close-paren 1235 . 1236) (symbol 1202 . 1219) (open-paren 1201 . 1202)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus" include nil nil [880 895])
-            ("gnus-win" include nil nil [896 915])
-            ("gnus-int" include nil nil [916 935])
-            ("gnus-spec" include nil nil [936 956])
-            ("gnus-range" include nil nil [957 978])
-            ("gnus-util" include nil nil [979 999])
-            ("gnus-cloud" include nil nil [1000 1021])
-            ("message-make-date" function (:prototype-flag t) nil [1022 1061])
-            ("gnus-agent-read-servers-validate" function (:prototype-flag t) nil [1062 1119])
-            ("gnus-agent-save-local" function (:prototype-flag t) nil [1120 1166])
-            ("gnus-agent-possibly-alter-active" function (:prototype-flag t) nil [1167 1224])
-            ("cl" include nil nil [1247 1260])
-            ("gnus-agent-covered-methods" variable nil nil [1263 1298])
-            ("gnus-agent-file-loading-local" variable nil nil [1299 1337])
-            ("gnus-agent-file-loading-cache" variable nil nil [1338 1376])
-            ("gnus-startup-file" variable (:default-value (nnheader-concat gnus-home-directory ".newsrc")) nil [1378 1569])
-            ("gnus-backup-startup-file" variable (:default-value (quote never)) nil [1571 1901])
-            ("gnus-save-startup-file-via-temp-buffer" variable (:default-value t) nil [1903 2336])
-            ("gnus-init-file" variable (:default-value (nnheader-concat gnus-home-directory ".gnus")) nil [2338 2566])
-            ("gnus-site-init-file" variable (:default-value (condition-case nil (concat (file-name-directory (directory-file-name installation-directory)) "site-lisp/gnus-init") (error nil))) nil [2568 2959])
-            ("gnus-use-dribble-file" variable (:default-value t) nil [2961 3232])
-            ("gnus-dribble-directory" variable nil nil [3234 3480])
-            ("gnus-check-new-newsgroups" variable (:default-value (quote ask-server)) nil [3482 5058])
-            ("gnus-check-bogus-newsgroups" variable nil nil [5060 5382])
-            ("gnus-read-active-file" variable (:default-value (quote some)) nil [5384 6146])
-            ("gnus-level-subscribed" variable
-               (:constant-flag t
-                :default-value 5)
-                nil [6148 6257])
-            ("gnus-level-unsubscribed" variable
-               (:constant-flag t
-                :default-value 7)
-                nil [6259 6697])
-            ("gnus-level-zombie" variable
-               (:constant-flag t
-                :default-value 8)
-                nil [6699 6775])
-            ("gnus-level-killed" variable
-               (:constant-flag t
-                :default-value 9)
-                nil [6777 6846])
-            ("gnus-level-default-subscribed" variable (:default-value 3) nil [6848 6996])
-            ("gnus-level-default-unsubscribed" variable (:default-value 6) nil [6998 7152])
-            ("gnus-activate-level" variable (:default-value (1+ gnus-level-subscribed)) nil [7154 7442])
-            ("gnus-activate-foreign-newsgroups" variable (:default-value 4) nil [7444 8144])
-            ("gnus-read-newsrc-file" variable (:default-value t) nil [8146 8566])
-            ("gnus-save-newsrc-file" variable (:default-value t) nil [8568 8969])
-            ("gnus-save-killed-list" variable (:default-value t) nil [8971 9783])
-            ("gnus-ignored-newsgroups" variable (:default-value (mapconcat (quote identity) (quote ("^to\\." "^[0-9. 	]+\\( \\|$\\)" "^[\"][\"#'()]")) "\\|")) nil [9785 10287])
-            ("gnus-subscribe-newsgroup-method" variable (:default-value (quote gnus-subscribe-zombies)) nil [10289 11329])
-            ("define-obsolete-variable-alias" code nil nil [11331 11440])
-            ("gnus-subscribe-newsgroup-functions" variable nil nil [11441 11658])
-            ("gnus-subscribe-options-newsgroup-method" variable (:default-value (quote gnus-subscribe-alphabetically)) nil [11660 12486])
-            ("gnus-subscribe-hierarchical-interactive" variable nil nil [12488 12933])
-            ("gnus-auto-subscribed-categories" variable (:default-value (quote (mail post-mail))) nil [12935 13321])
-            ("gnus-auto-subscribed-groups" variable (:default-value "^nnml\\|^nnfolder\\|^nnmbox\\|^nnmh\\|^nnbabyl\\|^nnmaildir\\|^nnimap") nil [13323 13825])
-            ("gnus-options-subscribe" variable nil nil [13827 14297])
-            ("gnus-options-not-subscribe" variable nil nil [14299 14599])
-            ("gnus-modtime-botch" variable nil nil [14601 14807])
-            ("gnus-check-bogus-groups-hook" variable nil nil [14809 14939])
-            ("gnus-startup-hook" variable nil nil [14941 15103])
-            ("gnus-before-startup-hook" variable nil nil [15105 15311])
-            ("gnus-before-resume-hook" variable nil nil [15313 15573])
-            ("gnus-started-hook" variable nil nil [15575 15694])
-            ("gnus-setup-news-hook" variable nil nil [15696 15844])
-            ("gnus-get-top-new-news-hook" variable nil nil [15846 16007])
-            ("gnus-get-new-news-hook" variable nil nil [16009 16139])
-            ("gnus-after-getting-new-news-hook" variable (:default-value (quote (gnus-display-time-event-handler))) nil [16141 16355])
-            ("gnus-read-newsrc-el-hook" variable nil nil [16357 16487])
-            ("gnus-save-newsrc-hook" variable nil nil [16489 16619])
-            ("gnus-save-quick-newsrc-hook" variable nil nil [16621 16807])
-            ("gnus-save-standard-newsrc-hook" variable nil nil [16809 17001])
-            ("gnus-group-mode-hook" variable nil nil [17003 17142])
-            ("gnus-always-read-dribble-file" variable nil nil [17144 17271])
-            ("gnus-ding-file-coding-system" variable (:default-value mm-universal-coding-system) nil [17383 17480])
-            ("gnus-newsrc-file-version" variable nil nil [17482 17519])
-            ("gnus-override-subscribe-method" variable nil nil [17520 17563])
-            ("gnus-dribble-buffer" variable nil nil [17564 17596])
-            ("gnus-newsrc-options" variable nil nil [17597 17667])
-            ("gnus-newsrc-options-n" variable nil nil [17669 17785])
-            ("gnus-newsrc-last-checked-date" variable nil nil [17787 17881])
-            ("gnus-current-startup-file" variable nil nil [17883 17960])
-            ("gnus-group-line-format" variable nil nil [17988 18019])
-            ("gnus-init-inhibit" variable nil nil [18072 18102])
-            ("gnus-read-init-file" function (:arguments ("inhibit-next")) nil [18103 18617])
-            ("gnus-subscribe-hierarchical-interactive" function (:arguments ("groups")) nil [18653 21252])
-            ("gnus-subscribe-randomly" function (:arguments ("newsgroup")) nil [21254 21398])
-            ("gnus-subscribe-alphabetically" function (:arguments ("newgroup")) nil [21400 21751])
-            ("gnus-subscribe-hierarchically" function (:arguments ("newgroup")) nil [21753 22635])
-            ("gnus-subscribe-interactively" function (:arguments ("group")) nil [22637 22956])
-            ("gnus-subscribe-zombies" function (:arguments ("group")) nil [22958 23072])
-            ("gnus-subscribe-killed" function (:arguments ("group")) nil [23074 23182])
-            ("gnus-subscribe-newsgroup" function (:arguments ("newsgroup" "next")) nil [23184 23814])
-            ("gnus-read-active-file-p" function nil nil [23816 23978])
-            ("gnus-current-headers" variable nil nil [24048 24077])
-            ("gnus-thread-indent-array" variable nil nil [24078 24111])
-            ("gnus-newsgroup-name" variable nil nil [24112 24140])
-            ("gnus-newsgroup-headers" variable nil nil [24141 24172])
-            ("gnus-group-list-mode" variable nil nil [24173 24202])
-            ("gnus-group-mark-positions" variable nil nil [24203 24237])
-            ("gnus-newsgroup-data" variable nil nil [24238 24266])
-            ("gnus-newsgroup-unreads" variable nil nil [24267 24298])
-            ("nnoo-state-alist" variable nil nil [24299 24324])
-            ("gnus-current-select-method" variable nil nil [24325 24360])
-            ("mail-sources" variable nil nil [24361 24382])
-            ("nnmail-scan-directory-mail-source-once" variable nil nil [24383 24430])
-            ("nnmail-split-history" variable nil nil [24431 24460])
-            ("nnmail-spool-file" variable nil nil [24461 24487])
-            ("gnus-close-all-servers" function (:user-visible-flag t) nil [24489 24638])
-            ("gnus-clear-system" function nil nil [24640 26556])
-            ("gnus-no-server-1" function
-               (:user-visible-flag t
-                :arguments ("arg" "slave"))
-                nil [26558 27187])
-            ("gnus-1" function
-               (:user-visible-flag t
-                :arguments ("arg" "dont-connect" "slave"))
-                nil [27189 29181])
-            ("gnus-start-draft-setup" function (:user-visible-flag t) nil [29183 29718])
-            ("gnus-dribble-ignore" variable nil nil [29748 29780])
-            ("gnus-dribble-eval-file" variable nil nil [29781 29816])
-            ("gnus-dribble-file-name" function nil nil [29818 30114])
-            ("gnus-dribble-enter" function (:arguments ("string" "regexp")) nil [30116 31034])
-            ("gnus-dribble-touch" function nil nil [31036 31121])
-            ("gnus-dribble-read-file" function nil nil [31123 33110])
-            ("gnus-dribble-eval-file" function nil nil [33112 33340])
-            ("gnus-dribble-delete-file" function nil nil [33342 33689])
-            ("gnus-dribble-save" function nil nil [33691 33888])
-            ("gnus-dribble-clear" function nil nil [33890 34117])
-            ("gnus-setup-news" function (:arguments ("rawfile" "level" "dont-connect")) nil [34164 37737])
-            ("gnus-call-subscribe-functions" function (:arguments ("method" "group")) nil [37739 38143])
-            ("gnus-find-new-newsgroups" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [38145 41069])
-            ("gnus-matches-options-n" function (:arguments ("group")) nil [41071 42243])
-            ("gnus-ask-server-for-new-groups" function nil nil [42245 44736])
-            ("gnus-subscribe-group" function (:arguments ("group" "previous" "method")) nil [44738 45034])
-            ("gnus-group-change-level" function (:arguments ("entry" "level" "oldlevel" "previous" "fromkilled")) nil [45959 49994])
-            ("gnus-check-bogus-newsgroups" function (:arguments ("confirm")) nil [49996 52170])
-            ("gnus-check-duplicate-killed-groups" function (:user-visible-flag t) nil [52172 52476])
-            ("gnus-cache-active-hashtb" variable nil nil [52545 52578])
-            ("gnus-cache-possibly-alter-active" function (:arguments ("group" "active")) nil [52600 53035])
-            ("gnus-activate-group" function (:arguments ("group" "scan" "dont-check" "method" "dont-sub-check")) nil [53038 55134])
-            ("gnus-get-unread-articles-in-group" function (:arguments ("info" "active" "update")) nil [55136 58558])
-            ("gnus-get-unread-articles" function (:arguments ("level" "dont-connect" "one-level")) nil [58696 65342])
-            ("gnus-method-rank" function (:arguments ("type" "method")) nil [65344 65861])
-            ("gnus-read-active-for-groups" function (:arguments ("method" "infos" "early-data")) nil [65863 67209])
-            ("gnus-make-hashtable-from-newsrc-alist" function nil nil [67314 68602])
-            ("gnus-make-hashtable-from-killed" function nil nil [68604 69019])
-            ("gnus-parse-active" function nil nil [69021 69391])
-            ("gnus-make-articles-unread" function (:arguments ("group" "articles")) nil [69393 70175])
-            ("gnus-make-ascending-articles-unread" function (:arguments ("group" "articles")) nil [70177 73494])
-            ("gnus-update-active-hashtb-from-killed" function nil nil [73538 73906])
-            ("gnus-get-killed-groups" function nil nil [73908 74810])
-            ("gnus-read-active-file" function (:arguments ("force" "not-native")) nil [74859 76197])
-            ("gnus-read-active-file-1" function (:arguments ("method" "force")) nil [76199 77762])
-            ("gnus-read-active-file-2" function (:arguments ("groups" "method")) nil [77764 78338])
-            ("gnus-active-to-gnus-format" function (:arguments ("method" "hashtb" "ignore-errors" "real-active")) nil [78410 81633])
-            ("gnus-groups-to-gnus-format" function (:arguments ("method" "hashtb" "real-active")) nil [81635 83359])
-            ("gnus-read-newsrc-file" function (:arguments ("force")) nil [83361 85091])
-            ("gnus-clean-old-newsrc" function (:arguments ("force")) nil [85093 85171])
-            ("gnus-convert-old-newsrc" function nil nil [85173 88948])
-            ("gnus-convert-mark-converter-prompt" function (:arguments ("converter" "no-prompt")) nil [88950 89303])
-            ("gnus-convert-converter-needs-prompt" function (:arguments ("converter")) nil [89305 89503])
-            ("gnus-convert-old-ticks" function (:arguments ("converting-to")) nil [89505 89983])
-            ("gnus-load" function (:arguments ("file")) nil [89985 90492])
-            ("gnus-read-newsrc-el-file" function (:arguments ("file")) nil [90494 91648])
-            ("gnus-read-old-newsrc-el-file" function (:arguments ("file")) nil [91692 93654])
-            ("gnus-make-newsrc-file" function (:arguments ("file")) nil [93656 94029])
-            ("gnus-newsrc-to-gnus-format" function nil nil [94031 100546])
-            ("gnus-newsrc-parse-options" function (:arguments ("options")) nil [101184 102766])
-            ("defalias" code nil nil [102788 102911])
-            ("gnus-save-newsrc-file-last-timestamp" variable nil nil [102914 102963])
-            ("gnus-save-newsrc-file" function (:arguments ("force")) nil [102964 108147])
-            ("gnus-gnus-to-quick-newsrc-format" function (:arguments ("minimal" "name" "specific-variables")) nil [108149 109828])
-            ("gnus-strip-killed-list" function nil nil [109830 110125])
-            ("gnus-gnus-to-newsrc-format" function (:arguments ("foreign-ok")) nil [110127 112599])
-            ("gnus-slave-mode" variable nil nil [112633 112661])
-            ("gnus-slave-mode" function nil nil [112663 112956])
-            ("gnus-slave-save-newsrc" function nil nil [112958 113373])
-            ("gnus-master-read-slave-newsrc" function nil nil [113375 114580])
-            ("gnus-read-all-descriptions-files" function nil nil [114616 114929])
-            ("gnus-read-descriptions-file" function (:arguments ("method")) nil [114931 117631])
-            ("gnus-group-get-description" function (:arguments ("group")) nil [117633 117935])
-            ("gnus-declare-backend" function (:arguments ("name" "abilities")) nil [117952 118217])
-            ("gnus-set-default-directory" function nil nil [118219 118578])
-            ("gnus-display-time-event-handler" function nil nil [118580 118750])
-            ("gnus-check-reasonable-setup" function nil nil [118752 119404])
-            ("gnus-start" package nil nil [119406 119427]))          
-      :file "gnus-start.el"
-      :pointmax 119457
-      :fsize 119456
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 102911 . 102912) (symbol 102769 . 102785) (open-paren 102768 . 102769) (close-paren 53035 . 53036) (symbol 52580 . 52597) (open-paren 52579 . 52580) (close-paren 1260 . 1261) (symbol 1227 . 1244) (open-paren 1226 . 1227)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("run-hooks" code nil nil [973 1000])
-            ("cl" include nil nil [1021 1034])
-            ("wid-edit" include nil nil [1036 1055])
-            ("mm-util" include nil nil [1056 1074])
-            ("nnheader" include nil nil [1075 1094])
-            ("gnus-ham-process-destinations" variable nil nil [1161 1199])
-            ("gnus-parameter-ham-marks-alist" variable nil nil [1200 1239])
-            ("gnus-parameter-spam-marks-alist" variable nil nil [1240 1280])
-            ("gnus-spam-autodetect" variable nil nil [1281 1310])
-            ("gnus-spam-autodetect-methods" variable nil nil [1311 1348])
-            ("gnus-spam-newsgroup-contents" variable nil nil [1349 1386])
-            ("gnus-spam-process-destinations" variable nil nil [1387 1426])
-            ("gnus-spam-resend-to" variable nil nil [1427 1455])
-            ("gnus-ham-resend-to" variable nil nil [1456 1483])
-            ("gnus-spam-process-newsgroups" variable nil nil [1484 1521])
-            ("gnus" customgroup (:user-visible-flag t) nil [1524 1648])
-            ("gnus-start" customgroup (:user-visible-flag t) nil [1650 1729])
-            ("gnus-format" customgroup (:user-visible-flag t) nil [1731 1808])
-            ("gnus-charset" customgroup (:user-visible-flag t) nil [1810 1944])
-            ("gnus-cache" customgroup (:user-visible-flag t) nil [1946 2056])
-            ("gnus-registry" customgroup (:user-visible-flag t) nil [2058 2123])
-            ("gnus-start-server" customgroup (:user-visible-flag t) nil [2125 2209])
-            ("gnus-group" customgroup (:user-visible-flag t) nil [2245 2350])
-            ("gnus-group-foreign" customgroup (:user-visible-flag t) nil [2352 2474])
-            ("gnus-group-new" customgroup (:user-visible-flag t) nil [2476 2568])
-            ("gnus-group-levels" customgroup (:user-visible-flag t) nil [2570 2687])
-            ("gnus-group-select" customgroup (:user-visible-flag t) nil [2689 2816])
-            ("gnus-group-listing" customgroup (:user-visible-flag t) nil [2818 2958])
-            ("gnus-group-visual" customgroup (:user-visible-flag t) nil [2960 3118])
-            ("gnus-group-various" customgroup (:user-visible-flag t) nil [3120 3256])
-            ("gnus-summary" customgroup (:user-visible-flag t) nil [3290 3401])
-            ("gnus-summary-exit" customgroup (:user-visible-flag t) nil [3403 3547])
-            ("gnus-summary-marks" customgroup (:user-visible-flag t) nil [3549 3690])
-            ("gnus-thread" customgroup (:user-visible-flag t) nil [3692 3828])
-            ("gnus-summary-format" customgroup (:user-visible-flag t) nil [3830 3980])
-            ("gnus-summary-choose" customgroup (:user-visible-flag t) nil [3982 4113])
-            ("gnus-summary-maneuvering" customgroup (:user-visible-flag t) nil [4115 4261])
-            ("gnus-picon" customgroup (:user-visible-flag t) nil [4263 4364])
-            ("gnus-summary-mail" customgroup (:user-visible-flag t) nil [4366 4499])
-            ("gnus-summary-sort" customgroup (:user-visible-flag t) nil [4501 4648])
-            ("gnus-summary-visual" customgroup (:user-visible-flag t) nil [4650 4833])
-            ("gnus-summary-various" customgroup (:user-visible-flag t) nil [4835 4984])
-            ("gnus-summary-pick" customgroup (:user-visible-flag t) nil [4986 5148])
-            ("gnus-summary-tree" customgroup (:user-visible-flag t) nil [5150 5325])
-            ("gnus-extract-view" customgroup (:user-visible-flag t) nil [5352 5483])
-            ("gnus-score" customgroup (:user-visible-flag t) nil [5513 5587])
-            ("gnus-score-kill" customgroup (:user-visible-flag t) nil [5589 5656])
-            ("gnus-score-adapt" customgroup (:user-visible-flag t) nil [5658 5736])
-            ("gnus-score-default" customgroup (:user-visible-flag t) nil [5738 5828])
-            ("gnus-score-expire" customgroup (:user-visible-flag t) nil [5830 5909])
-            ("gnus-score-decay" customgroup (:user-visible-flag t) nil [5911 5989])
-            ("gnus-score-files" customgroup (:user-visible-flag t) nil [5991 6095])
-            ("gnus-score-various" customgroup (:user-visible-flag t) nil [6097 6192])
-            ("gnus-visual" customgroup (:user-visible-flag t) nil [6203 6302])
-            ("gnus-agent" customgroup (:user-visible-flag t) nil [6304 6374])
-            ("gnus-files" customgroup (:user-visible-flag t) nil [6376 6440])
-            ("gnus-dribble-file" customgroup (:user-visible-flag t) nil [6442 6558])
-            ("gnus-newsrc" customgroup (:user-visible-flag t) nil [6560 6631])
-            ("gnus-server" customgroup (:user-visible-flag t) nil [6633 6741])
-            ("gnus-server-visual" customgroup (:user-visible-flag t) nil [6743 6869])
-            ("gnus-message" customgroup
-               (:user-visible-flag t
-                :value (quote ((message custom-group))))
-                nil [6871 6980])
-            ("gnus-meta" customgroup (:user-visible-flag t) nil [6982 7184])
-            ("gnus-various" customgroup (:user-visible-flag t) nil [7186 7301])
-            ("gnus-exit" customgroup (:user-visible-flag t) nil [7303 7406])
-            ("gnus-fun" customgroup (:user-visible-flag t) nil [7408 7523])
-            ("gnus-version-number" variable
-               (:constant-flag t
-                :default-value "5.13")
-                nil [7525 7607])
-            ("gnus-version" variable
-               (:constant-flag t
-                :default-value (format "Gnus v%s" gnus-version-number))
-                nil [7609 7717])
-            ("gnus-inhibit-startup-message" variable nil nil [7719 7952])
-            ("gnus-mode-line-image-cache" variable (:default-value t) nil [7954 7991])
-            ("if" code nil nil [8013 8817])
-            ("gnus-group-news-1" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "PaleTurquoise" :bold t)) (((class color) (background light)) (:foreground "ForestGreen" :bold t)) (t nil)))
-                :type "face")
-                nil [8920 9190])
-            ("put" code nil nil [9223 9283])
-            ("put" code nil nil [9284 9335])
-            ("gnus-group-news-1-empty" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "PaleTurquoise")) (((class color) (background light)) (:foreground "ForestGreen")) (t nil)))
-                :type "face")
-                nil [9337 9603])
-            ("put" code nil nil [9636 9708])
-            ("put" code nil nil [9709 9766])
-            ("gnus-group-news-2" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "turquoise" :bold t)) (((class color) (background light)) (:foreground "CadetBlue4" :bold t)) (t nil)))
-                :type "face")
-                nil [9768 10033])
-            ("put" code nil nil [10066 10126])
-            ("put" code nil nil [10127 10178])
-            ("gnus-group-news-2-empty" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "turquoise")) (((class color) (background light)) (:foreground "CadetBlue4")) (t nil)))
-                :type "face")
-                nil [10180 10441])
-            ("put" code nil nil [10474 10546])
-            ("put" code nil nil [10547 10604])
-            ("gnus-group-news-3" variable
-               (:default-value (quote ((((class color) (background dark)) (:bold t)) (((class color) (background light)) (:bold t)) (t nil)))
-                :type "face")
-                nil [10606 10822])
-            ("put" code nil nil [10855 10915])
-            ("put" code nil nil [10916 10967])
-            ("gnus-group-news-3-empty" variable
-               (:default-value (quote ((((class color) (background dark)) nil) (((class color) (background light)) nil) (t nil)))
-                :type "face")
-                nil [10969 11183])
-            ("put" code nil nil [11216 11288])
-            ("put" code nil nil [11289 11346])
-            ("gnus-group-news-4" variable
-               (:default-value (quote ((((class color) (background dark)) (:bold t)) (((class color) (background light)) (:bold t)) (t nil)))
-                :type "face")
-                nil [11348 11564])
-            ("put" code nil nil [11597 11657])
-            ("put" code nil nil [11658 11709])
-            ("gnus-group-news-4-empty" variable
-               (:default-value (quote ((((class color) (background dark)) nil) (((class color) (background light)) nil) (t nil)))
-                :type "face")
-                nil [11711 11925])
-            ("put" code nil nil [11958 12030])
-            ("put" code nil nil [12031 12088])
-            ("gnus-group-news-5" variable
-               (:default-value (quote ((((class color) (background dark)) (:bold t)) (((class color) (background light)) (:bold t)) (t nil)))
-                :type "face")
-                nil [12090 12306])
-            ("put" code nil nil [12339 12399])
-            ("put" code nil nil [12400 12451])
-            ("gnus-group-news-5-empty" variable
-               (:default-value (quote ((((class color) (background dark)) nil) (((class color) (background light)) nil) (t nil)))
-                :type "face")
-                nil [12453 12667])
-            ("put" code nil nil [12700 12772])
-            ("put" code nil nil [12773 12830])
-            ("gnus-group-news-6" variable
-               (:default-value (quote ((((class color) (background dark)) (:bold t)) (((class color) (background light)) (:bold t)) (t nil)))
-                :type "face")
-                nil [12832 13048])
-            ("put" code nil nil [13081 13141])
-            ("put" code nil nil [13142 13193])
-            ("gnus-group-news-6-empty" variable
-               (:default-value (quote ((((class color) (background dark)) nil) (((class color) (background light)) nil) (t nil)))
-                :type "face")
-                nil [13195 13409])
-            ("put" code nil nil [13442 13514])
-            ("put" code nil nil [13515 13572])
-            ("gnus-group-news-low" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "DarkTurquoise" :bold t)) (((class color) (background light)) (:foreground "DarkGreen" :bold t)) (t nil)))
-                :type "face")
-                nil [13574 13846])
-            ("put" code nil nil [13879 13943])
-            ("put" code nil nil [13944 13997])
-            ("gnus-group-news-low-empty" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "DarkTurquoise")) (((class color) (background light)) (:foreground "DarkGreen")) (t nil)))
-                :type "face")
-                nil [13999 14267])
-            ("put" code nil nil [14300 14376])
-            ("put" code nil nil [14377 14436])
-            ("gnus-group-mail-1" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "#e1ffe1" :bold t)) (((class color) (background light)) (:foreground "DeepPink3" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [14438 14707])
-            ("put" code nil nil [14740 14800])
-            ("put" code nil nil [14801 14852])
-            ("gnus-group-mail-1-empty" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "#e1ffe1")) (((class color) (background light)) (:foreground "DeepPink3")) (t (:italic t :bold t))))
-                :type "face")
-                nil [14854 15129])
-            ("put" code nil nil [15162 15234])
-            ("put" code nil nil [15235 15292])
-            ("gnus-group-mail-2" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "DarkSeaGreen1" :bold t)) (((class color) (background light)) (:foreground "HotPink3" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [15294 15568])
-            ("put" code nil nil [15601 15661])
-            ("put" code nil nil [15662 15713])
-            ("gnus-group-mail-2-empty" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "DarkSeaGreen1")) (((class color) (background light)) (:foreground "HotPink3")) (t (:bold t))))
-                :type "face")
-                nil [15715 15985])
-            ("put" code nil nil [16018 16090])
-            ("put" code nil nil [16091 16148])
-            ("gnus-group-mail-3" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "aquamarine1" :bold t)) (((class color) (background light)) (:foreground "magenta4" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [16150 16422])
-            ("put" code nil nil [16455 16515])
-            ("put" code nil nil [16516 16567])
-            ("gnus-group-mail-3-empty" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "aquamarine1")) (((class color) (background light)) (:foreground "magenta4")) (t nil)))
-                :type "face")
-                nil [16569 16830])
-            ("put" code nil nil [16863 16935])
-            ("put" code nil nil [16936 16993])
-            ("gnus-group-mail-low" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "aquamarine2" :bold t)) (((class color) (background light)) (:foreground "DeepPink4" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [16995 17272])
-            ("put" code nil nil [17305 17369])
-            ("put" code nil nil [17370 17423])
-            ("gnus-group-mail-low-empty" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "aquamarine2")) (((class color) (background light)) (:foreground "DeepPink4")) (t (:bold t))))
-                :type "face")
-                nil [17425 17698])
-            ("put" code nil nil [17731 17807])
-            ("put" code nil nil [17808 17867])
-            ("gnus-summary-selected" variable
-               (:default-value (quote ((t (:underline t))))
-                :type "face")
-                nil [17893 18006])
-            ("put" code nil nil [18039 18107])
-            ("put" code nil nil [18108 18163])
-            ("gnus-summary-cancelled" variable
-               (:default-value (quote ((((class color)) (:foreground "yellow" :background "black"))))
-                :type "face")
-                nil [18165 18328])
-            ("put" code nil nil [18361 18431])
-            ("put" code nil nil [18432 18488])
-            ("gnus-summary-high-ticked" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "pink" :bold t)) (((class color) (background light)) (:foreground "firebrick" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [18490 18786])
-            ("put" code nil nil [18819 18893])
-            ("put" code nil nil [18894 18952])
-            ("gnus-summary-low-ticked" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "pink" :italic t)) (((class color) (background light)) (:foreground "firebrick" :italic t)) (t (:italic t))))
-                :type "face")
-                nil [18954 19254])
-            ("put" code nil nil [19287 19359])
-            ("put" code nil nil [19360 19417])
-            ("gnus-summary-normal-ticked" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "pink")) (((class color) (background light)) (:foreground "firebrick")) (t nil)))
-                :type "face")
-                nil [19419 19696])
-            ("put" code nil nil [19729 19807])
-            ("put" code nil nil [19808 19868])
-            ("gnus-summary-high-ancient" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "SkyBlue" :bold t)) (((class color) (background light)) (:foreground "RoyalBlue" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [19870 20171])
-            ("put" code nil nil [20204 20280])
-            ("put" code nil nil [20281 20340])
-            ("gnus-summary-low-ancient" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "SkyBlue" :italic t)) (((class color) (background light)) (:foreground "RoyalBlue" :italic t)) (t (:italic t))))
-                :type "face")
-                nil [20342 20647])
-            ("put" code nil nil [20680 20754])
-            ("put" code nil nil [20755 20813])
-            ("gnus-summary-normal-ancient" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "SkyBlue")) (((class color) (background light)) (:foreground "RoyalBlue")) (t nil)))
-                :type "face")
-                nil [20815 21097])
-            ("put" code nil nil [21130 21210])
-            ("put" code nil nil [21211 21272])
-            ("gnus-summary-high-undownloaded" variable
-               (:default-value (quote ((((class color) (background light)) (:bold t :foreground "cyan4")) (((class color) (background dark)) (:bold t :foreground "LightGray")) (t (:inverse-video t :bold t))))
-                :type "face")
-                nil [21274 21591])
-            ("put" code nil nil [21624 21710])
-            ("put" code nil nil [21711 21775])
-            ("gnus-summary-low-undownloaded" variable
-               (:default-value (quote ((((class color) (background light)) (:italic t :foreground "cyan4" :bold nil)) (((class color) (background dark)) (:italic t :foreground "LightGray" :bold nil)) (t (:inverse-video t :italic t))))
-                :type "face")
-                nil [21777 22118])
-            ("put" code nil nil [22151 22235])
-            ("put" code nil nil [22236 22299])
-            ("gnus-summary-normal-undownloaded" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "cyan4" :bold nil)) (((class color) (background dark)) (:foreground "LightGray" :bold nil)) (t (:inverse-video t))))
-                :type "face")
-                nil [22301 22618])
-            ("put" code nil nil [22651 22741])
-            ("put" code nil nil [22742 22808])
-            ("gnus-summary-high-unread" variable
-               (:default-value (quote ((t (:bold t))))
-                :type "face")
-                nil [22810 22940])
-            ("put" code nil nil [22973 23047])
-            ("put" code nil nil [23048 23106])
-            ("gnus-summary-low-unread" variable
-               (:default-value (quote ((t (:italic t))))
-                :type "face")
-                nil [23108 23238])
-            ("put" code nil nil [23271 23343])
-            ("put" code nil nil [23344 23401])
-            ("gnus-summary-normal-unread" variable
-               (:default-value (quote ((t nil)))
-                :type "face")
-                nil [23403 23530])
-            ("put" code nil nil [23563 23641])
-            ("put" code nil nil [23642 23702])
-            ("gnus-summary-high-read" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "PaleGreen" :bold t)) (((class color) (background light)) (:foreground "DarkGreen" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [23704 24009])
-            ("put" code nil nil [24042 24112])
-            ("put" code nil nil [24113 24169])
-            ("gnus-summary-low-read" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "PaleGreen" :italic t)) (((class color) (background light)) (:foreground "DarkGreen" :italic t)) (t (:italic t))))
-                :type "face")
-                nil [24171 24480])
-            ("put" code nil nil [24513 24581])
-            ("put" code nil nil [24582 24637])
-            ("gnus-summary-normal-read" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "PaleGreen")) (((class color) (background light)) (:foreground "DarkGreen")) (t nil)))
-                :type "face")
-                nil [24639 24917])
-            ("put" code nil nil [24950 25024])
-            ("put" code nil nil [25025 25083])
-            ("gnus-buffers" variable nil nil [25112 25174])
-            ("gnus-get-buffer-create" function (:arguments ("name")) nil [25176 25365])
-            ("gnus-add-buffer" function nil nil [25367 25511])
-            ("gnus-kill-buffer" function (:arguments ("buffer")) nil [25513 25724])
-            ("gnus-prune-buffers" function nil nil [25726 25870])
-            ("gnus-buffers" function nil nil [25872 26197])
-            ("gnus-group-buffer" variable (:default-value "*Group*") nil [26219 26290])
-            ("gnus-splash" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "#cccccc")) (((class color) (background light)) (:foreground "#888888")) (t nil)))
-                :type "face")
-                nil [26292 26534])
-            ("put" code nil nil [26567 26615])
-            ("put" code nil nil [26616 26661])
-            ("gnus-splash" function nil nil [26663 26913])
-            ("gnus-indent-rigidly" function (:arguments ("start" "end" "arg")) nil [26915 27321])
-            ("gnus-logo-color-alist" variable (:default-value (quote ((flame "#cc3300" "#ff2200") (pine "#c0cc93" "#f8ffb8") (moss "#a1cc93" "#d2ffb8") (irish "#04cc90" "#05ff97") (sky "#049acc" "#05deff") (tin "#6886cc" "#82b6ff") (velvet "#7c68cc" "#8c82ff") (grape "#b264cc" "#cf7df") (labia "#cc64c2" "#fd7dff") (berry "#cc6485" "#ff7db5") (dino "#724214" "#1e3f03") (oort "#cccccc" "#888888") (storm "#666699" "#99ccff") (pdino "#9999cc" "#99ccff") (purp "#9999cc" "#666699") (no "#ff0000" "#ffff00") (neutral "#b4b4b4" "#878787") (ma "#2020e0" "#8080ff") (september "#bf9900" "#ffcc00")))) nil [27369 28039])
-            ("gnus-logo-color-style" variable (:default-value (quote ma)) nil [28041 28237])
-            ("gnus-logo-colors" variable (:default-value (cdr (assq gnus-logo-color-style gnus-logo-color-alist))) nil [28239 28358])
-            ("declare-function" code nil nil [28360 28429])
-            ("gnus-group-startup-message" function (:arguments ("x" "y")) nil [28431 31984])
-            ("gnus-splash-svg-color-symbols" function (:arguments ("list")) nil [31986 32698])
-            ("eval-when" code nil nil [32700 32920])
-            ("gnus-util" include nil nil [32940 32960])
-            ("nnheader" include nil nil [32961 32980])
-            ("gnus-parameters" variable nil nil [32982 33462])
-            ("gnus-parameters-case-fold-search" variable (:default-value (quote default)) nil [33464 33904])
-            ("gnus-group-parameters-more" variable nil nil [33906 33945])
-            ("gnus-define-group-parameter" function (:arguments ("param" "rest")) nil [33947 36737])
-            ("gnus-home-directory" variable (:default-value "~/") nil [36739 37208])
-            ("gnus-directory" variable (:default-value (or (getenv "SAVEDIR") (nnheader-concat gnus-home-directory "News/"))) nil [37210 37682])
-            ("gnus-default-directory" variable nil nil [37684 37845])
-            ("gnus-default-nntp-server" variable nil nil [37905 38274])
-            ("gnus-nntpserver-file" variable (:default-value "/etc/nntpserver") nil [38276 38439])
-            ("gnus-getenv-nntpserver" function nil nil [38441 38814])
-            ("gnus-select-method" variable (:default-value (list (quote nntp) (or (gnus-getenv-nntpserver) (when (and gnus-default-nntp-server (not (string= gnus-default-nntp-server ""))) gnus-default-nntp-server) "news"))) nil [39035 40083])
-            ("gnus-message-archive-method" variable (:default-value "archive") nil [40085 40397])
-            ("gnus-update-message-archive-method" variable nil nil [40399 41142])
-            ("gnus-message-archive-group" variable (:default-value (quote ((format-time-string "sent.%Y-%m")))) nil [41144 42347])
-            ("gnus-secondary-servers" variable nil nil [42349 42617])
-            ("make-obsolete-variable" code nil nil [42618 42693])
-            ("gnus-secondary-select-methods" variable nil nil [42695 43113])
-            ("gnus-local-domain" variable nil nil [43115 43440])
-            ("make-obsolete-variable" code nil nil [43441 43501])
-            ("gnus-refer-article-method" variable (:default-value (quote current)) nil [43531 44415])
-            ("gnus-use-cross-reference" variable (:default-value t) nil [44417 44812])
-            ("gnus-process-mark" variable (:default-value 35) nil [44814 44940])
-            ("gnus-large-newsgroup" variable (:default-value 200) nil [44942 45335])
-            ("gnus-use-long-file-name" variable (:default-value (not (memq system-type (quote (usg-unix-v))))) nil [45337 46336])
-            ("gnus-kill-files-directory" variable (:default-value gnus-directory) nil [46338 46542])
-            ("gnus-save-score" variable nil nil [46544 46683])
-            ("gnus-use-undo" variable (:default-value t) nil [46685 46807])
-            ("gnus-use-adaptive-scoring" variable nil nil [46809 47180])
-            ("gnus-use-cache" variable (:default-value (quote passive)) nil [47182 47567])
-            ("gnus-use-trees" variable nil nil [47569 47682])
-            ("gnus-keep-backlog" variable (:default-value 20) nil [47684 48067])
-            ("gnus-suppress-duplicates" variable nil nil [48069 48223])
-            ("gnus-use-scoring" variable (:default-value t) nil [48225 48324])
-            ("gnus-summary-prepare-exit-hook" variable (:default-value (quote (gnus-summary-expire-articles))) nil [48326 48562])
-            ("gnus-novice-user" variable (:default-value t) nil [48564 48760])
-            ("gnus-expert-user" variable nil nil [48762 49014])
-            ("gnus-interactive-catchup" variable (:default-value t) nil [49016 49167])
-            ("gnus-interactive-exit" variable (:default-value t) nil [49169 49410])
-            ("gnus-extract-address-components" variable (:default-value (quote gnus-extract-address-components)) nil [49412 49935])
-            ("gnus-shell-command-separator" variable (:default-value ";") nil [49937 50062])
-            ("gnus-valid-select-methods" variable (:default-value (quote (("nntp" post address prompt-address physical-address cloud) ("nnspool" post address) ("nnvirtual" post-mail virtual prompt-address) ("nnmbox" mail respool address) ("nnml" post-mail respool address) ("nnmh" mail respool address) ("nndir" post-mail prompt-address physical-address) ("nneething" none address prompt-address physical-address) ("nndoc" none address prompt-address) ("nnbabyl" mail address respool) ("nndraft" post-mail) ("nnfolder" mail respool address) ("nngateway" post-mail address prompt-address physical-address) ("nnweb" none) ("nnrss" none global) ("nnagent" post-mail) ("nnimap" post-mail address prompt-address physical-address respool server-marks cloud) ("nnmaildir" mail respool address server-marks) ("nnnil" none)))) nil [50064 51850])
-            ("gnus-redefine-select-method-widget" function nil nil [51852 52458])
-            ("gnus-redefine-select-method-widget" code nil nil [52460 52496])
-            ("gnus-updated-mode-lines" variable (:default-value (quote (group article summary tree))) nil [52498 52988])
-            ("gnus-mode-non-string-length" variable (:default-value 30) nil [52990 53256])
-            ("define-widget" code nil nil [53306 53371])
-            ("gnus-define-group-parameter" code nil nil [53373 54533])
-            ("gnus-define-group-parameter" code nil nil [54535 55140])
-            ("gnus-define-group-parameter" code nil nil [55142 55688])
-            ("gnus-define-group-parameter" code nil nil [55690 56356])
-            ("gnus-define-group-parameter" code nil nil [56358 57164])
-            ("gnus-define-group-parameter" code nil nil [57166 58323])
-            ("gnus-define-group-parameter" code nil nil [58325 58917])
-            ("gnus-define-group-parameter" code nil nil [58919 59566])
-            ("gnus-define-group-parameter" code nil nil [59606 60334])
-            ("gnus-install-group-spam-parameters" variable (:default-value t) nil [60417 60661])
-            ("when" code nil nil [60663 78941])
-            ("gnus-group-uncollapsed-levels" variable (:default-value 1) nil [78943 79112])
-            ("gnus-group-use-permanent-levels" variable nil nil [79114 79270])
-            ("gnus-load-hook" variable nil nil [79283 79385])
-            ("gnus-apply-kill-hook" variable (:default-value (quote (gnus-apply-kill-file))) nil [79387 80158])
-            ("gnus-group-change-level-function" variable nil nil [80160 80391])
-            ("gnus-visual" variable (:default-value (quote (summary-highlight group-highlight article-highlight mouse-face summary-menu group-menu article-menu tree-highlight menu highlight browse-menu server-menu page-marker tree-menu binary-menu pick-menu))) nil [80413 81824])
-            ("gnus-visual" variable nil nil [81852 81872])
-            ("gnus-visual-p" function (:arguments ("type" "class")) nil [81925 82218])
-            ("gnus-mouse-face" variable (:default-value (condition-case nil (if (gnus-visual-p (quote mouse-face) (quote highlight)) (if (boundp (quote gnus-mouse-face)) (or gnus-mouse-face (quote highlight)) (quote highlight)) (quote default)) (error (quote highlight)))) nil [82220 82610])
-            ("gnus-article-save-directory" variable (:default-value gnus-directory) nil [82612 82789])
-            ("gnus-plugged" variable (:default-value t) nil [82791 82850])
-            ("gnus-agent-cache" variable (:default-value t) nil [82852 83160])
-            ("gnus-default-charset" variable (:default-value (quote undecided)) nil [83162 83472])
-            ("gnus-agent" variable (:default-value t) nil [83508 83833])
-            ("gnus-other-frame-function" variable (:default-value (quote gnus)) nil [83835 84116])
-            ("gnus-other-frame-resume-function" variable (:default-value (quote gnus-group-get-new-news)) nil [84118 84486])
-            ("gnus-other-frame-parameters" variable nil nil [84488 84726])
-            ("gnus-user-agent" variable (:default-value (quote (emacs gnus type))) nil [84728 85546])
-            ("when" code nil nil [85598 86237])
-            ("gnus-agent-gcc-header" variable (:default-value "X-Gnus-Agent-Gcc") nil [86265 86314])
-            ("gnus-agent-meta-information-header" variable (:default-value "X-Gnus-Agent-Meta-Information") nil [86315 86390])
-            ("gnus-agent-method-p-cache" variable nil nil [86391 86552])
-            ("gnus-agent-target-move-group-header" variable (:default-value "X-Gnus-Agent-Move-To") nil [86553 86620])
-            ("gnus-draft-meta-information-header" variable (:default-value "X-Draft-From") nil [86621 86679])
-            ("gnus-group-get-parameter-function" variable (:default-value (quote gnus-group-get-parameter)) nil [86680 86748])
-            ("gnus-original-article-buffer" variable (:default-value " *Original Article*") nil [86749 86808])
-            ("gnus-newsgroup-name" variable nil nil [86809 86841])
-            ("gnus-ephemeral-servers" variable nil nil [86842 86877])
-            ("gnus-server-method-cache" variable nil nil [86878 86915])
-            ("gnus-extended-servers" variable nil nil [86916 86950])
-            ("gnus-carpal" variable nil nil [87045 87069])
-            ("make-obsolete-variable" code nil nil [87070 87124])
-            ("gnus-agent-fetching" variable nil nil [87126 87202])
-            ("gnus-agent-covered-methods" variable nil nil [87204 87327])
-            ("gnus-command-method" variable nil nil [87329 87432])
-            ("gnus-current-select-method" variable nil nil [87434 87523])
-            ("gnus-tree-buffer" variable (:default-value "*Tree*") nil [87525 87609])
-            ("gnus-method-history" variable nil nil [87671 87703])
-            ("gnus-mail-method-history" variable nil nil [87770 87807])
-            ("gnus-group-history" variable nil nil [87868 87899])
-            ("gnus-server-alist" variable nil nil [87901 87962])
-            ("gnus-cache-directory" variable (:default-value (nnheader-concat gnus-directory "cache/")) nil [87964 88136])
-            ("gnus-predefined-server-alist" variable (:default-value (\` (("cache" nnspool "cache" (nnspool-spool-directory (\, gnus-cache-directory)) (nnspool-nov-directory (\, gnus-cache-directory)) (nnspool-active-file (\, (nnheader-concat gnus-cache-directory "active"))))))) nil [88138 88443])
-            ("gnus-article-mark-lists" variable
-               (:constant-flag t
-                :default-value (quote ((marked . tick) (replied . reply) (expirable . expire) (killed . killed) (bookmarks . bookmark) (dormant . dormant) (scored . score) (saved . save) (cached . cache) (downloadable . download) (unsendable . unsend) (forwarded . forward) (seen . seen) (unexist . unexist))))
-                nil [88445 88777])
-            ("gnus-article-special-mark-lists" variable
-               (:constant-flag t
-                :default-value (quote ((seen range) (unexist range) (killed range) (bookmark tuple) (uid tuple) (active tuple) (score tuple))))
-                nil [88779 88952])
-            ("gnus-article-unpropagated-mark-lists" variable
-               (:constant-flag t
-                :default-value (quote (seen cache download unsend score bookmark unexist)))
-                nil [89328 89673])
-            ("gnus-headers-retrieved-by" variable nil nil [89675 89713])
-            ("gnus-article-reply" variable nil nil [89714 89745])
-            ("gnus-override-method" variable nil nil [89746 89779])
-            ("gnus-opened-servers" variable nil nil [89780 89812])
-            ("gnus-current-kill-article" variable nil nil [89814 89852])
-            ("gnus-have-read-active-file" variable nil nil [89854 89893])
-            ("gnus-maintainer" variable
-               (:constant-flag t
-                :default-value "submit@debbugs.gnu.org (The Gnus Bugfixing Girls + Boys)")
-                nil [89895 90028])
-            ("gnus-bug-package" variable
-               (:constant-flag t
-                :default-value "emacs,gnus")
-                nil [90030 90118])
-            ("gnus-info-nodes" variable (:default-value (quote ((gnus-group-mode "(gnus)Group Buffer") (gnus-summary-mode "(gnus)Summary Buffer") (gnus-article-mode "(gnus)Article Buffer") (gnus-server-mode "(gnus)Server Buffer") (gnus-browse-mode "(gnus)Browse Foreign Server") (gnus-tree-mode "(gnus)Tree Display")))) nil [90120 90471])
-            ("gnus-summary-buffer" variable (:default-value "*Summary*") nil [90473 90513])
-            ("gnus-article-buffer" variable (:default-value "*Article*") nil [90514 90554])
-            ("gnus-server-buffer" variable (:default-value "*Server*") nil [90555 90593])
-            ("gnus-slave" variable nil nil [90595 90659])
-            ("gnus-batch-mode" variable nil nil [90661 90744])
-            ("gnus-variable-list" variable (:default-value (quote (gnus-newsrc-options gnus-newsrc-options-n gnus-newsrc-last-checked-date gnus-newsrc-alist gnus-server-alist gnus-killed-list gnus-zombie-list gnus-topic-topology gnus-topic-alist gnus-cloud-sequence gnus-cloud-covered-servers gnus-cloud-file-timestamps))) nil [90746 91104])
-            ("gnus-newsrc-alist" variable nil nil [91106 91245])
-            ("gnus-registry-alist" variable nil nil [91247 91364])
-            ("gnus-newsrc-hashtb" variable nil nil [91366 91435])
-            ("gnus-killed-list" variable nil nil [91437 91497])
-            ("gnus-killed-hashtb" variable nil nil [91499 91579])
-            ("gnus-zombie-list" variable nil nil [91581 91646])
-            ("gnus-description-hashtb" variable nil nil [91648 91716])
-            ("gnus-list-of-killed-groups" variable nil nil [91718 91824])
-            ("gnus-active-hashtb" variable nil nil [91826 91891])
-            ("gnus-moderated-hashtb" variable nil nil [91893 91966])
-            ("gnus-prev-winconf" variable nil nil [91998 92028])
-            ("gnus-reffed-article-number" variable nil nil [92030 92069])
-            ("gnus-dead-summary" variable nil nil [92071 92101])
-            ("gnus-invalid-group-regexp" variable (:default-value "[: `'\"/]\\|^$") nil [92103 92190])
-            ("gnus-other-frame-object" variable nil nil [92192 92292])
-            ("mapc" code nil nil [92504 102174])
-            ("gnus-summary-line-format" variable (:default-value "%U%R%z%I%(%[%4L: %-23,23f%]%) %s
-") nil [102204 105895])
-            ("gnus-suppress-keymap" function (:arguments ("keymap")) nil [105927 106110])
-            ("gnus-article-mode-map" variable (:default-value (let ((keymap (make-sparse-keymap))) (gnus-suppress-keymap keymap) keymap)) nil [106112 106227])
-            ("gnus-summary-mode-map" variable (:default-value (let ((keymap (make-keymap))) (gnus-suppress-keymap keymap) keymap)) nil [106228 106336])
-            ("gnus-group-mode-map" variable (:default-value (let ((keymap (make-keymap))) (gnus-suppress-keymap keymap) keymap)) nil [106337 106443])
-            ("defalias" code nil nil [106624 106680])
-            ("defalias" code nil nil [106681 106735])
-            ("gnus-header-from" function (:arguments ("header")) nil [106769 106830])
-            ("gnus-gethash" function (:arguments ("string" "hashtable")) nil [106832 106968])
-            ("gnus-gethash-safe" function (:arguments ("string" "hashtable")) nil [106970 107180])
-            ("gnus-sethash" function (:arguments ("string" "value" "hashtable")) nil [107182 107339])
-            ("put" code nil nil [107340 107395])
-            ("gnus-group-unread" function (:arguments ("group")) nil [107397 107550])
-            ("gnus-group-entry" function (:arguments ("group")) nil [107552 107667])
-            ("gnus-active" function (:arguments ("group")) nil [107669 107773])
-            ("gnus-set-active" function (:arguments ("group" "active")) nil [107775 107897])
-            ("gnus-info-group" function (:arguments ("info")) nil [107923 107973])
-            ("gnus-info-rank" function (:arguments ("info")) nil [107974 108023])
-            ("gnus-info-read" function (:arguments ("info")) nil [108024 108073])
-            ("gnus-info-marks" function (:arguments ("info")) nil [108074 108124])
-            ("gnus-info-method" function (:arguments ("info")) nil [108125 108176])
-            ("gnus-info-params" function (:arguments ("info")) nil [108177 108228])
-            ("gnus-info-level" function (:arguments ("info")) nil [108230 108352])
-            ("gnus-info-score" function (:arguments ("info")) nil [108353 108469])
-            ("gnus-info-set-group" function (:arguments ("info" "group")) nil [108471 108539])
-            ("gnus-info-set-rank" function (:arguments ("info" "rank")) nil [108540 108616])
-            ("gnus-info-set-read" function (:arguments ("info" "read")) nil [108617 108693])
-            ("gnus-info-set-marks" function (:arguments ("info" "marks" "extend")) nil [108694 108850])
-            ("gnus-info-set-method" function (:arguments ("info" "method" "extend")) nil [108851 109011])
-            ("gnus-info-set-params" function (:arguments ("info" "params" "extend")) nil [109012 109172])
-            ("gnus-info-set-entry" function (:arguments ("info" "entry" "number")) nil [109174 109395])
-            ("gnus-info-set-level" function (:arguments ("info" "level")) nil [109397 109556])
-            ("gnus-info-set-score" function (:arguments ("info" "score")) nil [109557 109734])
-            ("gnus-get-info" function (:arguments ("group")) nil [109736 109820])
-            ("gnus-set-info" function (:arguments ("group" "info")) nil [109822 109926])
-            ("gnus-shutdown-alist" variable nil nil [109952 109984])
-            ("gnus-add-shutdown" function (:arguments ("function" "symbols")) nil [109986 110144])
-            ("gnus-shutdown" function (:arguments ("symbol")) nil [110146 110328])
-            ("gnus-find-subscribed-addresses" function nil nil [110368 111019])
-            ("gnus-string-or" function (:arguments ("strings")) nil [111021 111217])
-            ("gnus-string-or-1" function (:arguments ("strings")) nil [111219 111420])
-            ("gnus-version" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [111422 111630])
-            ("gnus-continuum-version" function (:arguments ("version")) nil [111632 112678])
-            ("gnus-info-find-node" function
-               (:user-visible-flag t
-                :arguments ("nodename"))
-                nil [112680 113000])
-            ("gnus-current-prefix-symbol" variable nil nil [113032 113098])
-            ("gnus-current-prefix-symbols" variable nil nil [113100 113176])
-            ("gnus-interactive" function (:arguments ("string" "params")) nil [113178 115505])
-            ("gnus-symbolic-argument" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [115507 116146])
-            ("gnus-check-backend-function" function (:arguments ("func" "group")) nil [116177 116566])
-            ("gnus-group-read-only-p" function (:arguments ("group")) nil [116568 116914])
-            ("gnus-virtual-group-p" function (:arguments ("group")) nil [116916 117103])
-            ("gnus-news-group-p" function (:arguments ("group" "article")) nil [117105 117780])
-            ("gnus-use-long-file-name" function (:arguments ("symbol")) nil [117832 118163])
-            ("gnus-generate-new-group-name" function (:arguments ("leaf")) nil [118202 118397])
-            ("gnus-ephemeral-group-p" function (:arguments ("group")) nil [118399 118530])
-            ("gnus-group-quit-config" function (:arguments ("group")) nil [118532 118657])
-            ("gnus-kill-ephemeral-group" function (:arguments ("group")) nil [118659 118799])
-            ("gnus-simplify-mode-line" function nil nil [118801 119139])
-            ("gnus-server-add-address" function (:arguments ("method")) nil [119166 119596])
-            ("gnus-method-to-server" function (:arguments ("method" "nocache" "no-enter-cache")) nil [119598 120725])
-            ("gnus-server-to-method" function (:arguments ("server")) nil [120727 122543])
-            ("gnus-server-get-method" function (:arguments ("group" "method")) nil [122545 123028])
-            ("gnus-method-equal" function (:arguments ("ss1" "ss2")) nil [123030 123290])
-            ("gnus-methods-equal-p" function (:arguments ("m1" "m2")) nil [123292 123588])
-            ("gnus-sloppily-equal-method-parameters" function (:arguments ("m1" "m2")) nil [123590 124434])
-            ("gnus-method-ephemeral-p" function (:arguments ("method")) nil [124436 124642])
-            ("gnus-methods-sloppily-equal" function (:arguments ("m1" "m2")) nil [124644 124875])
-            ("gnus-server-equal" function (:arguments ("m1" "m2")) nil [124877 125190])
-            ("gnus-servers-using-backend" function (:arguments ("backend")) nil [125192 125443])
-            ("gnus-archive-server-wanted-p" function nil nil [125445 125856])
-            ("gnus-method-to-server-name" function (:arguments ("method")) nil [125858 126191])
-            ("gnus-method-to-full-server-name" function (:arguments ("method")) nil [126193 126291])
-            ("gnus-group-prefixed-name" function (:arguments ("group" "method" "full")) nil [126293 126802])
-            ("gnus-group-full-name" function (:arguments ("group" "method")) nil [126804 126969])
-            ("gnus-group-guess-full-name-from-command-method" function (:arguments ("group")) nil [126971 127201])
-            ("gnus-group-real-prefix" function (:arguments ("group")) nil [127203 127404])
-            ("gnus-group-short-name" function (:arguments ("group")) nil [127406 127608])
-            ("gnus-group-prefixed-p" function (:arguments ("group")) nil [127610 127744])
-            ("declare-function" code nil nil [127746 127810])
-            ("gnus-summary-buffer-name" function (:arguments ("group")) nil [127812 127956])
-            ("gnus-group-method" function (:arguments ("group")) nil [127958 128874])
-            ("gnus-native-method-p" function (:arguments ("method")) nil [128876 129019])
-            ("gnus-secondary-method-p" function (:arguments ("method")) nil [129021 129403])
-            ("gnus-method-simplify" function (:arguments ("method")) nil [129405 129691])
-            ("gnus-groups-from-server" function (:arguments ("server")) nil [129693 130015])
-            ("gnus-group-foreign-p" function (:arguments ("group")) nil [130017 130182])
-            ("gnus-group-native-p" function (:arguments ("group")) nil [130184 130296])
-            ("gnus-group-secondary-p" function (:arguments ("group")) nil [130298 130446])
-            ("gnus-parameters-get-parameter" function (:arguments ("group")) nil [130448 130937])
-            ("gnus-expand-group-parameter" function (:arguments ("match" "value" "group")) nil [130939 131310])
-            ("gnus-expand-group-parameters" function (:arguments ("match" "parameters" "group")) nil [131312 132432])
-            ("gnus-group-fast-parameter" function (:arguments ("group" "symbol" "allow-list")) nil [132434 134312])
-            ("gnus-group-find-parameter" function (:arguments ("group" "symbol" "allow-list")) nil [134314 134922])
-            ("gnus-group-get-parameter" function (:arguments ("group" "symbol" "allow-list")) nil [134924 135388])
-            ("gnus-group-parameter-value" function (:arguments ("params" "symbol" "allow-list" "present-p")) nil [135390 136050])
-            ("gnus-group-add-parameter" function (:arguments ("group" "param")) nil [136052 136406])
-            ("gnus-group-set-parameter" function (:arguments ("group" "name" "value")) nil [136408 137109])
-            ("gnus-group-remove-parameter" function (:arguments ("group" "name")) nil [137111 137521])
-            ("gnus-group-add-score" function (:arguments ("group" "score")) nil [137523 137783])
-            ("gnus-short-group-name" function (:arguments ("group" "levels")) nil [137785 139399])
-            ("gnus-narrow-to-body" function nil nil [139401 139599])
-            ("gnus-apply-kill-file" function nil nil [139636 139931])
-            ("gnus-kill-save-kill-buffer" function nil nil [139933 140196])
-            ("gnus-kill-file-name" variable (:default-value "KILL") nil [140198 140335])
-            ("gnus-newsgroup-kill-file" function (:arguments ("newsgroup")) nil [140337 141124])
-            ("gnus-member-of-valid" function (:arguments ("symbol" "group")) nil [141146 141362])
-            ("gnus-method-option-p" function (:arguments ("method" "option")) nil [141364 141631])
-            ("gnus-similar-server-opened" function (:arguments ("method")) nil [141633 142182])
-            ("gnus-server-extend-method" function (:arguments ("group" "method")) nil [142184 142941])
-            ("gnus-server-status" function (:arguments ("method")) nil [142943 143056])
-            ("gnus-group-name-to-method" function (:arguments ("group")) nil [143058 143421])
-            ("gnus-server-string" function (:arguments ("server")) nil [143423 143726])
-            ("gnus-same-method-different-name" function (:arguments ("method")) nil [143728 144207])
-            ("gnus-find-method-for-group" function (:arguments ("group" "info")) nil [144209 145288])
-            ("gnus-methods-using" function (:arguments ("feature")) nil [145290 145545])
-            ("message-y-or-n-p" function (:prototype-flag t) nil [145547 145600])
-            ("gnus-read-group" function (:arguments ("prompt" "default")) nil [145602 146740])
-            ("gnus-read-method" function (:arguments ("prompt")) nil [146742 147868])
-            ("gnus-agent-method-p" function (:arguments ("method-or-server")) nil [147891 148369])
-            ("gnus-online" function (:arguments ("method")) nil [148371 148525])
-            ("gnus-slave-no-server" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [148568 148731])
-            ("gnus-no-server" function
-               (:user-visible-flag t
-                :arguments ("arg" "slave"))
-                nil [148748 149168])
-            ("gnus-slave" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [149185 149289])
-            ("gnus-delete-gnus-frame" function nil nil [149291 149593])
-            ("gnus-other-frame" function
-               (:user-visible-flag t
-                :arguments ("arg" "display"))
-                nil [149610 151712])
-            ("gnus" function
-               (:user-visible-flag t
-                :arguments ("arg" "dont-connect" "slave"))
-                nil [151729 152394])
-            ("declare-function" code nil nil [152396 152504])
-            ("gnus-list-debbugs" function (:user-visible-flag t) nil [152506 152638])
-            ("gnus" package nil nil [152640 152655]))          
-      :file "gnus.el"
-      :pointmax 152679
-      :fsize 152678
-      :lastmodtime '(23525 29554 0 0)
-      :unmatched-syntax '((close-paren 102174 . 102175) (symbol 92368 . 92384) (open-paren 92367 . 92368) (close-paren 8817 . 8818) (symbol 7994 . 8010) (open-paren 7993 . 7994) (close-paren 1034 . 1035) (symbol 1003 . 1020) (open-paren 1002 . 1003)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [910 923])
-            ("gnus" include nil nil [926 941])
-            ("gnus-util" include nil nil [942 962])
-            ("gnus-windows" customgroup (:user-visible-flag t) nil [964 1032])
-            ("gnus-use-full-window" variable (:default-value t) nil [1034 1153])
-            ("gnus-window-min-width" variable (:default-value 2) nil [1155 1265])
-            ("gnus-window-min-height" variable (:default-value 1) nil [1267 1379])
-            ("gnus-always-force-window-configuration" variable nil nil [1381 1536])
-            ("gnus-use-frames-on-any-display" variable nil nil [1538 1818])
-            ("gnus-buffer-configuration" variable (:default-value (quote ((group (vertical 1.0 (group 1.0 point))) (summary (vertical 1.0 (summary 1.0 point))) (article (cond (gnus-use-trees (quote (vertical 1.0 (summary 0.25 point) (tree 0.25) (article 1.0)))) (t (quote (vertical 1.0 (summary 0.25 point) (article 1.0)))))) (server (vertical 1.0 (server 1.0 point))) (browse (vertical 1.0 (browse 1.0 point))) (message (vertical 1.0 (message 1.0 point))) (pick (vertical 1.0 (article 1.0 point))) (info (vertical 1.0 (info 1.0 point))) (summary-faq (vertical 1.0 (summary 0.25) (faq 1.0 point))) (only-article (vertical 1.0 (article 1.0 point))) (edit-article (vertical 1.0 (article 1.0 point))) (edit-form (vertical 1.0 (group 0.5) (edit-form 1.0 point))) (edit-score (vertical 1.0 (summary 0.25) (edit-score 1.0 point))) (edit-server (vertical 1.0 (server 0.5) (edit-form 1.0 point))) (post (vertical 1.0 (post 1.0 point))) (reply (vertical 1.0 (article 0.5) (message 1.0 point))) (forward (vertical 1.0 (message 1.0 point))) (reply-yank (vertical 1.0 (message 1.0 point))) (mail-bounce (vertical 1.0 (article 0.5) (message 1.0 point))) (pipe (vertical 1.0 (summary 0.25 point) ("*Shell Command Output*" 1.0))) (bug (vertical 1.0 (if gnus-bug-create-help-buffer (quote ("*Gnus Help Bug*" 0.5))) ("*Gnus Bug*" 1.0 point))) (score-trace (vertical 1.0 (summary 0.5 point) ("*Score Trace*" 1.0))) (score-words (vertical 1.0 (summary 0.5 point) ("*Score Words*" 1.0))) (split-trace (vertical 1.0 (summary 0.5 point) ("*Split Trace*" 1.0))) (category (vertical 1.0 (category 1.0))) (compose-bounce (vertical 1.0 (article 0.5) (message 1.0 point))) (display-term (vertical 1.0 ("*display*" 1.0))) (mml-preview (vertical 1.0 (message 0.5) (mml-preview 1.0 point)))))) nil [1820 4254])
-            ("gnus-window-to-buffer" variable (:default-value (quote ((group . gnus-group-buffer) (summary . gnus-summary-buffer) (article . gnus-article-buffer) (server . gnus-server-buffer) (browse . "*Gnus Browse Server*") (edit-group . gnus-group-edit-buffer) (edit-form . gnus-edit-form-buffer) (edit-server . gnus-server-edit-buffer) (edit-score . gnus-score-edit-buffer) (message . gnus-message-buffer) (mail . gnus-message-buffer) (post-news . gnus-message-buffer) (faq . gnus-faq-buffer) (tree . gnus-tree-buffer) (score-trace . "*Score Trace*") (split-trace . "*Split Trace*") (info . gnus-info-buffer) (category . gnus-category-buffer) (article-copy . gnus-article-copy) (draft . gnus-draft-buffer) (mml-preview . mml-preview-buffer)))) nil [4256 5114])
-            ("gnus-configure-windows-hook" variable nil nil [5116 5258])
-            ("gnus-current-window-configuration" variable nil nil [5285 5379])
-            ("gnus-created-frames" variable nil nil [5381 5413])
-            ("gnus-window-frame-focus" variable nil nil [5414 5450])
-            ("gnus-kill-gnus-frames" function nil nil [5452 5843])
-            ("gnus-add-configuration" function (:arguments ("conf")) nil [5860 6096])
-            ("gnus-frame-list" variable nil nil [6098 6126])
-            ("gnus-window-to-buffer-helper" function (:arguments ("obj")) nil [6128 6288])
-            ("gnus-configure-frame" function (:arguments ("split" "window")) nil [6290 11350])
-            ("gnus-frame-split-p" variable nil nil [11352 11383])
-            ("gnus-configure-windows" function (:arguments ("setting" "force")) nil [11385 13549])
-            ("gnus-delete-windows-in-gnusey-frames" function nil nil [13551 14055])
-            ("gnus-all-windows-visible-p" function (:arguments ("split")) nil [14057 15376])
-            ("gnus-window-top-edge" function (:arguments ("window")) nil [15378 15498])
-            ("gnus-remove-some-windows" function nil nil [15500 16079])
-            ("gnus-get-buffer-window" function (:arguments ("buffer" "frame")) nil [16081 16455])
-            ("gnus-win" package nil nil [16457 16476]))          
-      :file "gnus-win.el"
-      :pointmax 16504
-      :fsize 16503
-      :lastmodtime '(23525 29554 0 0)
-      :unmatched-syntax '((close-paren 923 . 924) (symbol 892 . 909) (open-paren 891 . 892)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [907 920])
-            ("gnus" include nil nil [923 938])
-            ("message" include nil nil [939 957])
-            ("gnus-range" include nil nil [958 979])
-            ("gnus-run-hook-with-args" function (:prototype-flag t) nil [981 1028])
-            ("gnus-agent-expire" function (:prototype-flag t) nil [1029 1071])
-            ("gnus-agent-regenerate-group" function (:prototype-flag t) nil [1072 1124])
-            ("gnus-agent-read-servers-validate-native" function (:prototype-flag t) nil [1125 1189])
-            ("gnus-agent-possibly-synchronize-flags-server" function (:prototype-flag t) nil [1190 1259])
-            ("gnus-open-server-hook" variable nil nil [1261 1400])
-            ("gnus-after-set-mark-hook" variable nil nil [1402 1548])
-            ("gnus-before-update-mark-hook" variable nil nil [1550 1705])
-            ("gnus-server-unopen-status" variable nil nil [1707 2177])
-            ("gnus-nntp-server" variable nil nil [2179 2338])
-            ("make-obsolete-variable" code nil nil [2339 2408])
-            ("gnus-internal-registry-spool-current-method" variable nil nil [2410 2508])
-            ("gnus-server-opened" function (:arguments ("gnus-command-method")) nil [2511 2932])
-            ("gnus-status-message" function (:arguments ("gnus-command-method")) nil [2934 3407])
-            ("gnus-start-news-server" function (:arguments ("confirm")) nil [3443 5884])
-            ("gnus-check-group" function (:arguments ("group")) nil [5886 6102])
-            ("gnus-check-server" function (:arguments ("method" "silent")) nil [6104 7126])
-            ("gnus-get-function" function (:arguments ("method" "function" "noerror")) nil [7128 8253])
-            ("gnus-method-denied-p" function (:arguments ("method")) nil [8307 8408])
-            ("gnus-backend-trace" variable nil nil [8410 8441])
-            ("gnus-backend-trace-elapsed" variable nil nil [8442 8481])
-            ("gnus-backend-trace" function (:arguments ("type" "form")) nil [8483 8923])
-            ("gnus-open-server" function (:arguments ("gnus-command-method")) nil [8925 11934])
-            ("gnus-close-server" function (:arguments ("gnus-command-method")) nil [11936 12244])
-            ("gnus-request-list" function (:arguments ("gnus-command-method")) nil [12246 12559])
-            ("gnus-finish-retrieve-group-infos" function (:arguments ("gnus-command-method" "infos" "data")) nil [12561 13065])
-            ("gnus-retrieve-group-data-early" function (:arguments ("gnus-command-method" "infos")) nil [13067 13434])
-            ("gnus-request-list-newsgroups" function (:arguments ("gnus-command-method")) nil [13436 13775])
-            ("gnus-request-newgroups" function (:arguments ("date" "gnus-command-method")) nil [13777 14160])
-            ("gnus-request-regenerate" function (:arguments ("gnus-command-method")) nil [14162 14489])
-            ("gnus-request-compact-group" function (:arguments ("group")) nil [14491 14796])
-            ("gnus-request-compact" function (:arguments ("gnus-command-method")) nil [14798 15119])
-            ("gnus-request-group" function (:arguments ("group" "dont-check" "gnus-command-method" "info")) nil [15121 15668])
-            ("gnus-request-group-description" function (:arguments ("group")) nil [15670 16032])
-            ("gnus-request-group-scan" function (:arguments ("group" "info")) nil [16034 16402])
-            ("gnus-close-group" function (:arguments ("group")) nil [16404 16675])
-            ("gnus-retrieve-headers" function (:arguments ("articles" "group" "fetch-old")) nil [16677 17392])
-            ("gnus-retrieve-articles" function (:arguments ("articles" "group")) nil [17394 17690])
-            ("gnus-retrieve-groups" function (:arguments ("groups" "gnus-command-method")) nil [17692 18038])
-            ("gnus-request-type" function (:arguments ("group" "article")) nil [18040 18438])
-            ("gnus-request-update-group-status" function (:arguments ("group" "status")) nil [18440 18932])
-            ("gnus-request-set-mark" function (:arguments ("group" "action")) nil [18934 19416])
-            ("gnus-request-update-mark" function (:arguments ("group" "article" "mark")) nil [19418 19929])
-            ("gnus-request-article" function (:arguments ("article" "group" "buffer")) nil [19931 20359])
-            ("gnus-request-thread" function (:arguments ("header" "group")) nil [20361 20670])
-            ("gnus-select-group-with-message-id" function (:arguments ("group" "message-id")) nil [20672 22448])
-            ("gnus-simplify-group-name" function (:arguments ("group")) nil [22450 22698])
-            ("gnus-warp-to-article" function (:user-visible-flag t) nil [22700 23306])
-            ("gnus-request-head" function (:arguments ("article" "group")) nil [23308 24400])
-            ("gnus-request-body" function (:arguments ("article" "group")) nil [24402 25400])
-            ("gnus-request-post" function (:arguments ("gnus-command-method")) nil [25402 25716])
-            ("gnus-request-expunge-group" function (:arguments ("group" "gnus-command-method")) nil [25718 26114])
-            ("gnus-request-scan" function (:arguments ("group" "gnus-command-method")) nil [26116 26779])
-            ("gnus-request-update-info" function (:arguments ("info" "gnus-command-method")) nil [26781 27212])
-            ("gnus-request-marks" function (:arguments ("info" "gnus-command-method")) nil [27214 28174])
-            ("gnus-request-expire-articles" function (:arguments ("articles" "group" "force")) nil [28176 28963])
-            ("gnus-request-move-article" function (:arguments ("article" "group" "server" "accept-function" "last" "move-is-internal")) nil [28965 29508])
-            ("gnus-request-accept-article" function (:arguments ("group" "gnus-command-method" "last" "no-encode")) nil [29510 30725])
-            ("gnus-request-replace-article" function (:arguments ("article" "group" "buffer" "no-encode")) nil [30727 31358])
-            ("gnus-request-restore-buffer" function (:arguments ("article" "group")) nil [31360 31692])
-            ("gnus-request-create-group" function (:arguments ("group" "gnus-command-method" "args")) nil [31694 32122])
-            ("gnus-request-delete-group" function (:arguments ("group" "force")) nil [32124 32508])
-            ("gnus-request-rename-group" function (:arguments ("group" "new-name")) nil [32510 32936])
-            ("gnus-close-backends" function nil nil [32938 33311])
-            ("gnus-asynchronous-p" function (:arguments ("gnus-command-method")) nil [33313 33484])
-            ("gnus-remove-denial" function (:arguments ("gnus-command-method")) nil [33486 33907])
-            ("gnus-int" package nil nil [33909 33928]))          
-      :file "gnus-int.el"
-      :pointmax 33956
-      :fsize 33955
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax '((close-paren 920 . 921) (symbol 889 . 906) (open-paren 888 . 889)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [902 915])
-            ("gnus-newsrc-file-version" variable nil nil [917 950])
-            ("gnus" include nil nil [952 967])
-            ("gnus-summary-mark-positions" variable nil nil [994 1034])
-            ("gnus-group-mark-positions" variable nil nil [1035 1073])
-            ("gnus-group-indentation" variable nil nil [1074 1108])
-            ("gnus-tmp-unread" variable nil nil [1538 1562])
-            ("gnus-tmp-replied" variable nil nil [1563 1588])
-            ("gnus-tmp-score-char" variable nil nil [1589 1617])
-            ("gnus-tmp-indentation" variable nil nil [1618 1647])
-            ("gnus-tmp-opening-bracket" variable nil nil [1648 1681])
-            ("gnus-tmp-lines" variable nil nil [1682 1705])
-            ("gnus-tmp-name" variable nil nil [1706 1728])
-            ("gnus-tmp-closing-bracket" variable nil nil [1729 1762])
-            ("gnus-tmp-subject-or-nil" variable nil nil [1763 1795])
-            ("gnus-tmp-subject" variable nil nil [1796 1821])
-            ("gnus-tmp-marked" variable nil nil [1822 1846])
-            ("gnus-tmp-marked-mark" variable nil nil [1847 1876])
-            ("gnus-tmp-subscribed" variable nil nil [1877 1905])
-            ("gnus-tmp-process-marked" variable nil nil [1906 1938])
-            ("gnus-tmp-number-of-unread" variable nil nil [1939 1973])
-            ("gnus-tmp-group-name" variable nil nil [1974 2002])
-            ("gnus-tmp-group" variable nil nil [2003 2026])
-            ("gnus-tmp-article-number" variable nil nil [2027 2059])
-            ("gnus-tmp-unread-and-unselected" variable nil nil [2060 2099])
-            ("gnus-tmp-news-method" variable nil nil [2100 2129])
-            ("gnus-tmp-news-server" variable nil nil [2130 2159])
-            ("gnus-mouse-face" variable nil nil [2160 2184])
-            ("gnus-tmp-header" variable nil nil [2185 2209])
-            ("gnus-tmp-from" variable nil nil [2210 2232])
-            ("declare-function" code nil nil [2234 2342])
-            ("gnus-lrm-string-p" function (:arguments ("string")) nil [2344 2521])
-            ("gnus-lrm-string" variable (:default-value (if (ignore-errors (string 8206)) (propertize (string 8206) (quote invisible) t) "")) nil [2523 2637])
-            ("gnus-summary-line-format-spec" variable nil nil [2639 2681])
-            ("gnus-summary-dummy-line-format-spec" variable nil nil [2682 2730])
-            ("gnus-group-line-format-spec" variable nil nil [2731 2771])
-            ("gnus-format-specs" variable (:default-value (\` ((version \, emacs-version) (gnus-version \, (gnus-continuum-version))))) nil [2773 2905])
-            ("gnus-default-format-specs" variable (:default-value gnus-format-specs) nil [2907 2959])
-            ("gnus-article-mode-line-format-spec" variable nil nil [2961 3008])
-            ("gnus-summary-mode-line-format-spec" variable nil nil [3009 3056])
-            ("gnus-group-mode-line-format-spec" variable nil nil [3057 3102])
-            ("gnus-update-format" function
-               (:user-visible-flag t
-                :arguments ("var"))
-                nil [3173 4203])
-            ("gnus-update-format-specifications" function (:arguments ("force" "types")) nil [4205 6229])
-            ("gnus-mouse-face-0" variable (:default-value (quote highlight)) nil [6231 6335])
-            ("gnus-mouse-face-1" variable (:default-value (quote highlight)) nil [6337 6442])
-            ("gnus-mouse-face-2" variable (:default-value (quote highlight)) nil [6444 6549])
-            ("gnus-mouse-face-3" variable (:default-value (quote highlight)) nil [6551 6656])
-            ("gnus-mouse-face-4" variable (:default-value (quote highlight)) nil [6658 6763])
-            ("gnus-mouse-face-function" function (:arguments ("form" "type")) nil [6765 7003])
-            ("gnus-face-0" variable (:default-value (quote bold)) nil [7005 7098])
-            ("gnus-face-1" variable (:default-value (quote italic)) nil [7100 7196])
-            ("gnus-face-2" variable (:default-value (quote bold-italic)) nil [7198 7299])
-            ("gnus-face-3" variable (:default-value (quote bold)) nil [7301 7395])
-            ("gnus-face-4" variable (:default-value (quote bold)) nil [7397 7491])
-            ("gnus-face-face-function" function (:arguments ("form" "type")) nil [7493 7945])
-            ("gnus-balloon-face-function" function (:arguments ("form" "type")) nil [7947 8113])
-            ("gnus-spec-tab" function (:arguments ("column")) nil [8115 8524])
-            ("gnus-correct-length" function (:arguments ("string")) nil [8526 8645])
-            ("gnus-correct-substring" function (:arguments ("string" "start" "end")) nil [8647 9224])
-            ("gnus-tilde-max-form" function (:arguments ("el" "max-width")) nil [9226 9967])
-            ("gnus-tilde-cut-form" function (:arguments ("el" "cut-width")) nil [9969 10490])
-            ("gnus-tilde-ignore-form" function (:arguments ("el" "ignore-value")) nil [10492 10745])
-            ("gnus-pad-form" function (:arguments ("el" "pad-width")) nil [10747 11448])
-            ("gnus-parse-format" function (:arguments ("format" "spec-alist" "insert")) nil [11450 12205])
-            ("gnus-parse-complex-format" function (:arguments ("format" "spec-alist")) nil [12207 13866])
-            ("gnus-complex-form-to-spec" function (:arguments ("form" "spec-alist")) nil [13868 14346])
-            ("gnus-parse-simple-format" function (:arguments ("format" "spec-alist" "insert")) nil [14348 19902])
-            ("gnus-eval-format" function (:arguments ("format" "alist" "props")) nil [19904 20192])
-            ("gnus-set-format" function (:arguments ("type" "insertable")) nil [20194 20470])
-            ("gnus-summary-line-format-spec" function nil nil [20477 20984])
-            ("gnus-spec" package nil nil [20986 21006]))          
-      :file "gnus-spec.el"
-      :pointmax 21081
-      :fsize 21085
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 915 . 916) (symbol 884 . 901) (open-paren 883 . 884)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [910 923])
-            ("gnus-range-normalize" function (:arguments ("range")) nil [956 1136])
-            ("gnus-last-element" function (:arguments ("list")) nil [1138 1264])
-            ("gnus-copy-sequence" function (:arguments ("list")) nil [1266 1542])
-            ("gnus-set-difference" function (:arguments ("list1" "list2")) nil [1544 1889])
-            ("gnus-range-nconcat" function (:arguments ("ranges")) nil [1891 2954])
-            ("gnus-range-difference" function (:arguments ("range1" "range2")) nil [2956 4538])
-            ("gnus-sorted-difference" function (:arguments ("list1" "list2")) nil [4557 5059])
-            ("gnus-sorted-ndifference" function (:arguments ("list1" "list2")) nil [5076 5587])
-            ("gnus-sorted-complement" function (:arguments ("list1" "list2")) nil [5604 6200])
-            ("gnus-intersection" function (:arguments ("list1" "list2")) nil [6217 6418])
-            ("gnus-sorted-intersection" function (:arguments ("list1" "list2")) nil [6435 6865])
-            ("gnus-sorted-range-intersection" function (:arguments ("range1" "range2")) nil [6882 8907])
-            ("defalias" code nil nil [8924 8991])
-            ("gnus-sorted-nintersection" function (:arguments ("list1" "list2")) nil [9008 9540])
-            ("gnus-sorted-union" function (:arguments ("list1" "list2")) nil [9557 10199])
-            ("gnus-sorted-nunion" function (:arguments ("list1" "list2")) nil [10216 10891])
-            ("gnus-compress-sequence" function (:arguments ("numbers" "always-list")) nil [10893 11812])
-            ("defalias" code nil nil [11814 11873])
-            ("gnus-uncompress-range" function (:arguments ("ranges")) nil [11874 12676])
-            ("gnus-add-to-range" function (:arguments ("ranges" "list")) nil [12678 14560])
-            ("gnus-remove-from-range" function (:arguments ("range1" "range2")) nil [14562 17329])
-            ("gnus-member-of-range" function (:arguments ("number" "ranges")) nil [17331 17840])
-            ("gnus-list-range-intersection" function (:arguments ("list" "ranges")) nil [17842 18450])
-            ("defalias" code nil nil [18452 18528])
-            ("gnus-list-range-difference" function (:arguments ("list" "ranges")) nil [18530 19151])
-            ("gnus-range-length" function (:arguments ("range")) nil [19153 19464])
-            ("gnus-range-add" function (:arguments ("range1" "range2")) nil [19466 21155])
-            ("gnus-add-to-sorted-list" function (:arguments ("list" "num")) nil [21172 21474])
-            ("gnus-range-map" function (:arguments ("func" "range")) nil [21476 21877])
-            ("gnus-range" package nil nil [21879 21900]))          
-      :file "gnus-range.el"
-      :pointmax 21930
-      :fsize 21929
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 923 . 924) (symbol 892 . 909) (open-paren 891 . 892)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1117 1130])
-            ("parse-time" include nil nil [1132 1153])
-            ("nnimap" include nil nil [1154 1171])
-            ("epg" include nil nil [1192 1206])
-            ("epg-make-context" function (:prototype-flag t) nil [1247 1281])
-            ("epg-context-set-passphrase-callback" function (:prototype-flag t) nil [1282 1335])
-            ("epg-decrypt-string" function (:prototype-flag t) nil [1336 1372])
-            ("epg-encrypt-string" function (:prototype-flag t) nil [1373 1409])
-            ("gnus-cloud" customgroup (:user-visible-flag t) nil [1411 1501])
-            ("gnus-cloud-synced-files" variable (:default-value (quote ("~/.authinfo.gpg" "~/.gnus.el" (:directory "~/News" :match ".*.SCORE\\'")))) nil [1503 2072])
-            ("gnus-cloud-storage-method" variable (:default-value (if (featurep (quote epg)) (quote epg) (quote base64-gzip))) nil [2074 2448])
-            ("gnus-cloud-interactive" variable (:default-value t) nil [2450 2594])
-            ("gnus-cloud-group-name" variable (:default-value "Emacs-Cloud") nil [2596 2640])
-            ("gnus-cloud-covered-servers" variable nil nil [2641 2680])
-            ("gnus-cloud-version" variable (:default-value 1) nil [2682 2711])
-            ("gnus-cloud-sequence" variable (:default-value 1) nil [2712 2742])
-            ("gnus-cloud-method" variable nil nil [2744 3076])
-            ("gnus-cloud-make-chunk" function (:arguments ("elems")) nil [3078 3267])
-            ("gnus-cloud-insert-data" function (:arguments ("elems")) nil [3269 4290])
-            ("gnus-cloud-encode-data" function nil nil [4292 5409])
-            ("gnus-cloud-decode-data" function nil nil [5411 6301])
-            ("gnus-cloud-parse-chunk" function nil nil [6303 6889])
-            ("gnus-cloud-parse-version-1" function nil nil [6891 7755])
-            ("gnus-cloud-update-all" function (:arguments ("elems")) nil [7757 8123])
-            ("gnus-cloud-update-newsrc-data" function (:arguments ("group" "elem" "force-older")) nil [8125 9625])
-            ("gnus-cloud-update-file" function (:arguments ("elem" "op")) nil [9627 11181])
-            ("gnus-cloud-replace-file" function (:arguments ("file-name" "date" "new-contents")) nil [11183 11521])
-            ("gnus-cloud-file-covered-p" function (:arguments ("file-name")) nil [11523 12190])
-            ("gnus-cloud-all-files" function nil nil [12192 12730])
-            ("gnus-cloud-file-timestamps" variable nil nil [12732 12771])
-            ("gnus-cloud-files-to-upload" function (:arguments ("full")) nil [12773 13219])
-            ("gnus-cloud-timestamp" function (:arguments ("time")) nil [13221 13342])
-            ("gnus-cloud-file-new-p" function (:arguments ("file" "full")) nil [13344 13622])
-            ("declare-function" code nil nil [13624 13749])
-            ("declare-function" code nil nil [13750 13854])
-            ("gnus-cloud-ensure-cloud-group" function nil nil [13856 14440])
-            ("gnus-cloud-upload-all-data" function (:user-visible-flag t) nil [14442 14582])
-            ("gnus-cloud-upload-data" function
-               (:user-visible-flag t
-                :arguments ("full"))
-                nil [14584 15849])
-            ("gnus-cloud-add-timestamps" function (:arguments ("elems")) nil [15851 16239])
-            ("gnus-cloud-available-chunks" function nil nil [16241 16957])
-            ("gnus-cloud-chunk-sequence" function (:arguments ("string")) nil [16959 17110])
-            ("gnus-cloud-prune-old-chunks" function (:arguments ("headers")) nil [17130 17699])
-            ("gnus-cloud-download-all-data" function (:user-visible-flag t) nil [17701 17885])
-            ("gnus-cloud-download-data" function (:arguments ("update" "sequence-override")) nil [17887 19339])
-            ("gnus-cloud-server-p" function (:arguments ("server")) nil [19341 19422])
-            ("gnus-cloud-host-server-p" function (:arguments ("server")) nil [19424 19500])
-            ("gnus-cloud-host-acceptable-method-p" function (:arguments ("server")) nil [19502 19611])
-            ("gnus-cloud-collect-full-newsrc" function nil nil [19613 20081])
-            ("gnus-cloud" package nil nil [20083 20104]))          
-      :file "gnus-cloud.el"
-      :pointmax 20134
-      :fsize 20133
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 1206 . 1207) (symbol 1174 . 1191) (open-paren 1173 . 1174) (close-paren 1130 . 1131) (symbol 1099 . 1116) (open-paren 1098 . 1099)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [925 938])
-            ("gnus" include nil nil [940 955])
-            ("gnus-sum" include nil nil [956 975])
-            ("gnus-group" include nil nil [976 997])
-            ("nnmail" include nil nil [998 1015])
-            ("gnus-group-split-updated-hook" variable nil nil [1017 1148])
-            ("gnus-group-split-default-catch-all-group" variable (:default-value "mail.misc") nil [1150 1409])
-            ("gnus-group-split-setup" function
-               (:user-visible-flag t
-                :arguments ("auto-update" "catch-all"))
-                nil [1426 2804])
-            ("gnus-group-split-update" function
-               (:user-visible-flag t
-                :arguments ("catch-all"))
-                nil [2821 3343])
-            ("gnus-group-split" function nil nil [3360 3653])
-            ("gnus-group-split-fancy" function (:arguments ("groups" "no-crosspost" "catch-all")) nil [3670 8784])
-            ("gnus-mlspl" package nil nil [8786 8807]))          
-      :file "gnus-mlspl.el"
-      :pointmax 8837
-      :fsize 8836
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 938 . 939) (symbol 907 . 924) (open-paren 906 . 907)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [901 914])
-            ("tool-bar-mode" variable nil nil [917 939])
-            ("gnus-tmp-header" variable nil nil [940 964])
-            ("gnus" include nil nil [966 981])
-            ("gnus-group" include nil nil [982 1003])
-            ("gnus-spec" include nil nil [1004 1024])
-            ("gnus-range" include nil nil [1025 1046])
-            ("gnus-int" include nil nil [1047 1066])
-            ("gnus-undo" include nil nil [1067 1087])
-            ("gnus-util" include nil nil [1088 1108])
-            ("gmm-utils" include nil nil [1109 1129])
-            ("mm-decode" include nil nil [1130 1150])
-            ("nnoo" include nil nil [1151 1166])
-            ("gnus-summary-limit-include-cached" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1168 1232])
-            ("gnus-cache-write-active" function (:prototype-flag t) nil [1233 1281])
-            ("gnus-mailing-list-insinuate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1282 1337])
-            ("turn-on-gnus-mailing-list-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1338 1396])
-            ("gnus-pick-line-number" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1397 1448])
-            ("mm-uu-dissect" function (:prototype-flag t) nil [1449 1482])
-            ("gnus-article-outlook-deuglify-article" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1483 1609])
-            ("gnus-article-outlook-unwrap-lines" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1610 1672])
-            ("gnus-article-outlook-repair-attribution" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1673 1741])
-            ("gnus-article-outlook-rearrange-citation" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1742 1810])
-            ("nnir-article-rsv" function (:prototype-flag t) nil [1811 1861])
-            ("nnir-article-group" function (:prototype-flag t) nil [1862 1914])
-            ("gnus-kill-summary-on-exit" variable (:default-value t) nil [1916 2162])
-            ("gnus-summary-next-group-on-exit" variable (:default-value t) nil [2164 2429])
-            ("gnus-summary-stop-at-end-of-message" variable nil nil [2431 2667])
-            ("gnus-fetch-old-headers" variable nil nil [2669 3866])
-            ("gnus-refer-thread-limit" variable (:default-value 500) nil [3868 4133])
-            ("gnus-refer-thread-use-nnir" variable nil nil [4135 4377])
-            ("gnus-refer-thread-limit-to-thread" variable nil nil [4379 4640])
-            ("gnus-summary-make-false-root" variable (:default-value (quote adopt)) nil [4642 5854])
-            ("gnus-summary-make-false-root-always" variable nil nil [5856 6000])
-            ("gnus-summary-gather-exclude-subject" variable (:default-value "^ *$\\|^(none)$") nil [6002 6365])
-            ("gnus-summary-gather-subject-limit" variable nil nil [6367 6993])
-            ("gnus-simplify-subject-functions" variable nil nil [6995 7371])
-            ("gnus-simplify-ignored-prefixes" variable nil nil [7373 7572])
-            ("gnus-build-sparse-threads" variable nil nil [7574 7991])
-            ("gnus-summary-thread-gathering-function" variable (:default-value (quote gnus-gather-threads-by-subject)) nil [7993 8517])
-            ("gnus-summary-same-subject" variable nil nil [8519 8781])
-            ("gnus-summary-goto-unread" variable nil nil [8783 9446])
-            ("gnus-summary-default-score" variable nil nil [9448 9722])
-            ("gnus-summary-default-high-score" variable nil nil [9724 9969])
-            ("gnus-summary-default-low-score" variable nil nil [9971 10213])
-            ("gnus-summary-zcore-fuzz" variable nil nil [10215 10447])
-            ("gnus-simplify-subject-fuzzy-regexp" variable nil nil [10449 10756])
-            ("gnus-show-threads" variable (:default-value t) nil [10758 10877])
-            ("gnus-thread-hide-subtree" variable nil nil [10879 11364])
-            ("gnus-thread-hide-killed" variable (:default-value t) nil [11366 11493])
-            ("gnus-thread-ignore-subject" variable (:default-value t) nil [11495 11774])
-            ("gnus-thread-operation-ignore-subject" variable (:default-value t) nil [11776 12317])
-            ("gnus-thread-indent-level" variable (:default-value 4) nil [12319 12462])
-            ("gnus-auto-extend-newsgroup" variable (:default-value t) nil [12464 12621])
-            ("gnus-auto-select-first" variable (:default-value t) nil [12623 13432])
-            ("gnus-auto-select-subject" variable (:default-value (quote unseen-or-unread)) nil [13434 14288])
-            ("gnus-auto-select-next" variable (:default-value t) nil [14290 15213])
-            ("gnus-auto-select-same" variable nil nil [15215 15452])
-            ("gnus-auto-select-on-ephemeral-exit" variable (:default-value (quote next-noselect)) nil [15454 16218])
-            ("gnus-auto-goto-ignores" variable (:default-value (quote unfetched)) nil [16220 17074])
-            ("gnus-summary-check-current" variable nil nil [17076 17322])
-            ("gnus-auto-center-summary" variable (:default-value (max (or (bound-and-true-p scroll-margin) 0) 2)) nil [17324 17757])
-            ("gnus-auto-center-group" variable (:default-value t) nil [17759 17895])
-            ("gnus-show-all-headers" variable nil nil [17897 18052])
-            ("gnus-summary-ignore-duplicates" variable nil nil [18054 18207])
-            ("gnus-single-article-buffer" variable nil nil [18209 18426])
-            ("gnus-widen-article-window" variable nil nil [18428 18618])
-            ("gnus-break-pages" variable (:default-value t) nil [18620 18815])
-            ("gnus-move-split-methods" variable nil nil [18817 19245])
-            ("gnus-move-group-prefix-function" variable (:default-value (quote gnus-group-real-prefix)) nil [19247 19539])
-            ("gnus-unread-mark" variable (:default-value 32) nil [19689 19824])
-            ("gnus-ticked-mark" variable (:default-value 33) nil [19826 19940])
-            ("gnus-dormant-mark" variable (:default-value 63) nil [19942 20058])
-            ("gnus-del-mark" variable (:default-value 114) nil [20060 20170])
-            ("gnus-read-mark" variable (:default-value 82) nil [20172 20282])
-            ("gnus-expirable-mark" variable (:default-value 69) nil [20284 20404])
-            ("gnus-killed-mark" variable (:default-value 75) nil [20406 20520])
-            ("gnus-spam-mark" variable (:default-value 36) nil [20522 20650])
-            ("gnus-kill-file-mark" variable (:default-value 88) nil [20652 20783])
-            ("gnus-low-score-mark" variable (:default-value 89) nil [20785 20912])
-            ("gnus-catchup-mark" variable (:default-value 67) nil [20914 21041])
-            ("gnus-replied-mark" variable (:default-value 65) nil [21043 21177])
-            ("gnus-forwarded-mark" variable (:default-value 70) nil [21179 21332])
-            ("gnus-recent-mark" variable (:default-value 78) nil [21334 21475])
-            ("gnus-cached-mark" variable (:default-value 42) nil [21477 21606])
-            ("gnus-saved-mark" variable (:default-value 83) nil [21608 21735])
-            ("gnus-unseen-mark" variable (:default-value 46) nil [21737 21885])
-            ("gnus-no-mark" variable (:default-value 32) nil [21887 22067])
-            ("gnus-ancient-mark" variable (:default-value 79) nil [22069 22185])
-            ("gnus-sparse-mark" variable (:default-value 81) nil [22187 22310])
-            ("gnus-canceled-mark" variable (:default-value 71) nil [22312 22430])
-            ("gnus-duplicate-mark" variable (:default-value 77) nil [22432 22552])
-            ("gnus-undownloaded-mark" variable (:default-value 45) nil [22554 22709])
-            ("gnus-downloaded-mark" variable (:default-value 43) nil [22711 22843])
-            ("gnus-downloadable-mark" variable (:default-value 37) nil [22845 22984])
-            ("gnus-unsendable-mark" variable (:default-value 61) nil [22986 23116])
-            ("gnus-score-over-mark" variable (:default-value 43) nil [23118 23252])
-            ("gnus-score-below-mark" variable (:default-value 45) nil [23254 23388])
-            ("gnus-empty-thread-mark" variable (:default-value 32) nil [23390 23532])
-            ("gnus-not-empty-thread-mark" variable (:default-value 61) nil [23534 23664])
-            ("gnus-view-pseudo-asynchronously" variable nil nil [23666 23821])
-            ("gnus-auto-expirable-marks" variable (:default-value (list gnus-killed-mark gnus-del-mark gnus-catchup-mark gnus-low-score-mark gnus-ancient-mark gnus-read-mark gnus-duplicate-mark)) nil [23823 24140])
-            ("gnus-inhibit-user-auto-expire" variable (:default-value t) nil [24142 24365])
-            ("gnus-mark-copied-or-moved-articles-as-expirable" variable nil nil [24367 24881])
-            ("gnus-view-pseudos" variable nil nil [24883 25206])
-            ("gnus-view-pseudos-separately" variable (:default-value t) nil [25208 25481])
-            ("gnus-insert-pseudo-articles" variable (:default-value t) nil [25483 25632])
-            ("gnus-summary-dummy-line-format" variable (:default-value "   %(:                             :%) %S
-") nil [25634 26077])
-            ("gnus-summary-mode-line-format" variable (:default-value "Gnus: %g [%A] %Z") nil [26079 26844])
-            ("gnus-list-identifiers" variable nil nil [26846 27165])
-            ("gnus-summary-mark-below" variable nil nil [27167 27395])
-            ("gnus-widget-reversible-match" function (:arguments ("widget" "value")) nil [27397 27745])
-            ("gnus-widget-reversible-to-internal" function (:arguments ("widget" "value")) nil [27747 28086])
-            ("gnus-widget-reversible-to-external" function (:arguments ("widget" "value")) nil [28088 28434])
-            ("define-widget" code nil nil [28436 28670])
-            ("gnus-article-sort-functions" variable (:default-value (quote (gnus-article-sort-by-number))) nil [28672 30362])
-            ("gnus-thread-sort-functions" variable (:default-value (quote (gnus-thread-sort-by-number))) nil [30364 32703])
-            ("gnus-subthread-sort-functions" variable (:default-value (quote gnus-thread-sort-functions)) nil [32705 33735])
-            ("gnus-thread-score-function" variable (:default-value (quote +)) nil [33737 34063])
-            ("gnus-summary-expunge-below" variable nil nil [34065 34312])
-            ("gnus-thread-expunge-below" variable nil nil [34314 34674])
-            ("gnus-summary-mode-hook" variable nil nil [34676 34922])
-            ("gnus-summary-menu-hook" variable nil nil [34924 35064])
-            ("gnus-summary-exit-hook" variable nil nil [35066 35247])
-            ("gnus-summary-prepare-hook" variable nil nil [35249 35463])
-            ("gnus-summary-prepared-hook" variable nil nil [35465 35633])
-            ("gnus-summary-generate-hook" variable nil nil [35635 35854])
-            ("gnus-select-group-hook" variable nil nil [35856 36340])
-            ("gnus-select-article-hook" variable nil nil [36342 36521])
-            ("gnus-visual-mark-article-hook" variable (:default-value (list (quote gnus-highlight-selected-summary))) nil [36523 36818])
-            ("gnus-parse-headers-hook" variable nil nil [36820 36942])
-            ("gnus-exit-group-hook" variable nil nil [36944 37132])
-            ("gnus-summary-update-hook" variable nil nil [37134 37449])
-            ("gnus-mark-article-hook" variable (:default-value (quote (gnus-summary-mark-read-and-unread-as-read))) nil [37451 37735])
-            ("gnus-group-no-more-groups-hook" variable nil nil [37737 37901])
-            ("gnus-ps-print-hook" variable nil nil [37903 38029])
-            ("gnus-summary-article-move-hook" variable nil nil [38031 38212])
-            ("gnus-summary-article-delete-hook" variable nil nil [38214 38364])
-            ("gnus-summary-article-expire-hook" variable nil nil [38366 38516])
-            ("gnus-summary-display-arrow" variable (:default-value (display-graphic-p)) nil [38518 38701])
-            ("gnus-summary-selected-face" variable (:default-value (quote gnus-summary-selected)) nil [38703 38882])
-            ("gnus-tmp-downloaded" variable nil nil [38884 38916])
-            ("gnus-summary-highlight" variable (:default-value (quote (((eq mark gnus-canceled-mark) . gnus-summary-cancelled) ((and uncached (> score default-high)) . gnus-summary-high-undownloaded) ((and uncached (< score default-low)) . gnus-summary-low-undownloaded) (uncached . gnus-summary-normal-undownloaded) ((and (> score default-high) (or (eq mark gnus-dormant-mark) (eq mark gnus-ticked-mark))) . gnus-summary-high-ticked) ((and (< score default-low) (or (eq mark gnus-dormant-mark) (eq mark gnus-ticked-mark))) . gnus-summary-low-ticked) ((or (eq mark gnus-dormant-mark) (eq mark gnus-ticked-mark)) . gnus-summary-normal-ticked) ((and (> score default-high) (eq mark gnus-ancient-mark)) . gnus-summary-high-ancient) ((and (< score default-low) (eq mark gnus-ancient-mark)) . gnus-summary-low-ancient) ((eq mark gnus-ancient-mark) . gnus-summary-normal-ancient) ((and (> score default-high) (eq mark gnus-unread-mark)) . gnus-summary-high-unread) ((and (< score default-low) (eq mark gnus-unread-mark)) . gnus-summary-low-unread) ((eq mark gnus-unread-mark) . gnus-summary-normal-unread) ((> score default-high) . gnus-summary-high-read) ((< score default-low) . gnus-summary-low-read) (t . gnus-summary-normal-read)))) nil [38918 41026])
-            ("put" code nil nil [41027 41080])
-            ("gnus-alter-header-function" variable nil nil [41082 41372])
-            ("gnus-decode-encoded-word-function" variable (:default-value (quote mail-decode-encoded-word-string)) nil [41374 41506])
-            ("gnus-decode-encoded-address-function" variable (:default-value (quote mail-decode-encoded-address-string)) nil [41508 41649])
-            ("gnus-extra-headers" variable (:default-value (quote (To Cc Keywords Gcc Newsgroups X-GM-LABELS))) nil [41651 41820])
-            ("gnus-ignored-from-addresses" variable (:default-value (and user-mail-address (not (string= user-mail-address "")) (regexp-quote user-mail-address))) nil [41822 42279])
-            ("gnus-ignored-from-addresses" function nil nil [42281 42470])
-            ("gnus-summary-to-prefix" variable (:default-value "-> ") nil [42472 42667])
-            ("gnus-summary-newsgroup-prefix" variable (:default-value "=> ") nil [42669 42889])
-            ("gnus-newsgroup-ignored-charsets" variable (:default-value (quote (unknown-8bit x-unknown))) nil [42891 43172])
-            ("gnus-newsgroup-maximum-articles" variable nil nil [43174 43598])
-            ("gnus-define-group-parameter" code nil nil [43600 44400])
-            ("gnus-group-highlight-words-alist" variable nil nil [44402 44885])
-            ("gnus-summary-show-article-charset-alist" variable nil nil [44887 45230])
-            ("gnus-preserve-marks" variable (:default-value t) nil [45232 45407])
-            ("gnus-alter-articles-to-read-function" variable nil nil [45409 45595])
-            ("gnus-orphan-score" variable nil nil [45597 45762])
-            ("gnus-summary-save-parts-default-mime" variable (:default-value "image/.*") nil [45764 46115])
-            ("gnus-read-all-available-headers" variable nil nil [46117 46439])
-            ("gnus-summary-pipe-output-default-command" variable nil nil [46441 46889])
-            ("gnus-summary-muttprint-program" variable (:default-value "muttprint") nil [46891 47158])
-            ("gnus-article-loose-mime" variable (:default-value t) nil [47160 47560])
-            ("gnus-article-emulate-mime" variable (:default-value t) nil [47562 47895])
-            ("gnus-summary-display-cache" variable nil nil [47921 47960])
-            ("gnus-article-mime-handles" variable nil nil [47961 47999])
-            ("gnus-article-decoded-p" variable nil nil [48000 48035])
-            ("gnus-article-charset" variable nil nil [48036 48069])
-            ("gnus-article-ignored-charsets" variable nil nil [48070 48112])
-            ("gnus-scores-exclude-files" variable nil nil [48113 48151])
-            ("gnus-page-broken" variable nil nil [48152 48181])
-            ("gnus-original-article" variable nil nil [48183 48217])
-            ("gnus-article-internal-prepare-hook" variable nil nil [48218 48265])
-            ("gnus-newsgroup-process-stack" variable nil nil [48266 48307])
-            ("gnus-thread-indent-array" variable nil nil [48309 48346])
-            ("gnus-thread-indent-array-level" variable (:default-value gnus-thread-indent-level) nil [48347 48411])
-            ("gnus-sort-gathered-threads-function" variable (:default-value (quote gnus-thread-sort-by-number)) nil [48412 48578])
-            ("gnus-summary-save-parts-type-history" variable nil nil [48580 48629])
-            ("gnus-summary-save-parts-last-directory" variable (:default-value mm-default-directory) nil [48630 48698])
-            ("gnus-summary-inhibit-highlight" variable nil nil [48737 48780])
-            ("gnus-newsgroup-selected-overlay" variable nil nil [48781 48825])
-            ("gnus-inhibit-limiting" variable nil nil [48826 48860])
-            ("gnus-newsgroup-adaptive-score-file" variable nil nil [48861 48908])
-            ("gnus-current-score-file" variable nil nil [48909 48945])
-            ("gnus-current-move-group" variable nil nil [48946 48982])
-            ("gnus-current-copy-group" variable nil nil [48983 49019])
-            ("gnus-current-crosspost-group" variable nil nil [49020 49061])
-            ("gnus-newsgroup-display" variable nil nil [49062 49097])
-            ("gnus-newsgroup-dependencies" variable nil nil [49099 49139])
-            ("gnus-newsgroup-adaptive" variable nil nil [49140 49176])
-            ("gnus-summary-display-article-function" variable nil nil [49177 49227])
-            ("gnus-summary-highlight-line-function" variable nil nil [49228 49332])
-            ("gnus-summary-line-format-alist" variable (:default-value (\` ((78 (\, (macroexpand (quote (mail-header-number gnus-tmp-header)))) 100) (83 (\, (macroexpand (quote (mail-header-subject gnus-tmp-header)))) 115) (115 gnus-tmp-subject-or-nil 115) (110 gnus-tmp-name 115) (65 (car (cdr (funcall gnus-extract-address-components gnus-tmp-from))) 115) (97 (or (car (funcall gnus-extract-address-components gnus-tmp-from)) gnus-tmp-from) 115) (70 gnus-tmp-from 115) (120 (\, (macroexpand (quote (mail-header-xref gnus-tmp-header)))) 115) (68 (\, (macroexpand (quote (mail-header-date gnus-tmp-header)))) 115) (100 (gnus-dd-mmm (mail-header-date gnus-tmp-header)) 115) (111 (gnus-date-iso8601 (mail-header-date gnus-tmp-header)) 115) (77 (\, (macroexpand (quote (mail-header-id gnus-tmp-header)))) 115) (114 (\, (macroexpand (quote (mail-header-references gnus-tmp-header)))) 115) (99 (or (mail-header-chars gnus-tmp-header) 0) 100) (107 (gnus-summary-line-message-size gnus-tmp-header) 115) (76 gnus-tmp-lines 115) (90 (or (nnir-article-rsv (mail-header-number gnus-tmp-header)) 0) 100) (71 (or (nnir-article-group (mail-header-number gnus-tmp-header)) "") 115) (103 (or (gnus-group-short-name (nnir-article-group (mail-header-number gnus-tmp-header))) "") 115) (79 gnus-tmp-downloaded 99) (73 gnus-tmp-indentation 115) (84 (if (= gnus-tmp-level 0) "" (make-string (frame-width) 32)) 115) (82 gnus-tmp-replied 99) (91 gnus-tmp-opening-bracket 99) (93 gnus-tmp-closing-bracket 99) (62 (make-string gnus-tmp-level 32) 115) (60 (make-string (max 0 (- 20 gnus-tmp-level)) 32) 115) (105 gnus-tmp-score 100) (122 gnus-tmp-score-char 99) (86 (gnus-thread-total-score (and (boundp (quote thread)) (car thread))) 100) (85 gnus-tmp-unread 99) (102 (gnus-summary-from-or-to-or-newsgroups gnus-tmp-header gnus-tmp-from) 115) (116 (gnus-summary-number-of-articles-in-thread (and (boundp (quote thread)) (car thread)) gnus-tmp-level) 100) (101 (gnus-summary-number-of-articles-in-thread (and (boundp (quote thread)) (car thread)) gnus-tmp-level t) 99) (117 gnus-tmp-user-defined 115) (80 (gnus-pick-line-number) 100) (66 gnus-tmp-thread-tree-header-string 115) (user-date (gnus-user-date (\, (macroexpand (quote (mail-header-date gnus-tmp-header))))) 115)))) nil [49334 51796])
-            ("gnus-summary-dummy-line-format-alist" variable (:default-value (\` ((83 gnus-tmp-subject 115) (78 gnus-tmp-number 100) (117 gnus-tmp-user-defined 115)))) nil [51798 51935])
-            ("gnus-summary-mode-line-format-alist" variable (:default-value (\` ((71 gnus-tmp-group-name 115) (103 (gnus-short-group-name gnus-tmp-group-name) 115) (112 (gnus-group-real-name gnus-tmp-group-name) 115) (65 gnus-tmp-article-number 100) (90 gnus-tmp-unread-and-unselected 115) (86 gnus-version 115) (85 gnus-tmp-unread-and-unticked 100) (83 gnus-tmp-subject 115) (101 gnus-tmp-unselected 100) (117 gnus-tmp-user-defined 115) (100 (length gnus-newsgroup-dormant) 100) (116 (length gnus-newsgroup-marked) 100) (104 (length gnus-newsgroup-spam-marked) 100) (114 (length gnus-newsgroup-reads) 100) (122 (gnus-summary-article-score gnus-tmp-article-number) 100) (69 gnus-newsgroup-expunged-tally 100) (115 (gnus-current-score-file-nondirectory) 115)))) nil [51937 52700])
-            ("gnus-article-mode-line-format-alist" variable (:default-value (nconc (quote ((119 (gnus-article-wash-status) 115) (109 (gnus-article-mime-part-status) 115))) gnus-summary-mode-line-format-alist)) nil [52767 52941])
-            ("gnus-last-search-regexp" variable nil nil [52943 53026])
-            ("gnus-last-shell-command" variable nil nil [53028 53102])
-            ("gnus-newsgroup-agentized" variable nil nil [53104 53233])
-            ("gnus-newsgroup-begin" variable nil nil [53234 53267])
-            ("gnus-newsgroup-end" variable nil nil [53268 53299])
-            ("gnus-newsgroup-last-rmail" variable nil nil [53300 53338])
-            ("gnus-newsgroup-last-mail" variable nil nil [53339 53376])
-            ("gnus-newsgroup-last-folder" variable nil nil [53377 53416])
-            ("gnus-newsgroup-last-file" variable nil nil [53417 53454])
-            ("gnus-newsgroup-last-directory" variable nil nil [53455 53497])
-            ("gnus-newsgroup-auto-expire" variable nil nil [53498 53537])
-            ("gnus-newsgroup-active" variable nil nil [53538 53572])
-            ("gnus-newsgroup-highest" variable nil nil [53573 53608])
-            ("gnus-newsgroup-data" variable nil nil [53610 53642])
-            ("gnus-newsgroup-data-reverse" variable nil nil [53643 53683])
-            ("gnus-newsgroup-limit" variable nil nil [53684 53717])
-            ("gnus-newsgroup-limits" variable nil nil [53718 53752])
-            ("gnus-summary-use-undownloaded-faces" variable nil nil [53753 53801])
-            ("gnus-newsgroup-unreads" variable nil nil [53803 53899])
-            ("gnus-newsgroup-unselected" variable nil nil [53901 54011])
-            ("gnus-newsgroup-reads" variable nil nil [54013 54117])
-            ("gnus-newsgroup-expunged-tally" variable nil nil [54119 54161])
-            ("gnus-newsgroup-marked" variable nil nil [54163 54283])
-            ("gnus-newsgroup-spam-marked" variable nil nil [54285 54386])
-            ("gnus-newsgroup-killed" variable nil nil [54388 54497])
-            ("gnus-newsgroup-cached" variable nil nil [54499 54595])
-            ("gnus-newsgroup-saved" variable nil nil [54597 54673])
-            ("gnus-newsgroup-kill-headers" variable nil nil [54675 54715])
-            ("gnus-newsgroup-replied" variable nil nil [54717 54825])
-            ("gnus-newsgroup-forwarded" variable nil nil [54827 54936])
-            ("gnus-newsgroup-expirable" variable nil nil [54938 55049])
-            ("gnus-newsgroup-processable" variable nil nil [55051 55159])
-            ("gnus-newsgroup-downloadable" variable nil nil [55161 55277])
-            ("gnus-newsgroup-unfetched" variable nil nil [55279 55488])
-            ("gnus-newsgroup-undownloaded" variable nil nil [55490 55606])
-            ("gnus-newsgroup-unsendable" variable nil nil [55608 55712])
-            ("gnus-newsgroup-bookmarks" variable nil nil [55714 55818])
-            ("gnus-newsgroup-dormant" variable nil nil [55820 55917])
-            ("gnus-newsgroup-unseen" variable nil nil [55919 56007])
-            ("gnus-newsgroup-seen" variable nil nil [56009 56094])
-            ("gnus-newsgroup-unexist" variable nil nil [56096 56190])
-            ("gnus-newsgroup-articles" variable nil nil [56192 56275])
-            ("gnus-newsgroup-scored" variable nil nil [56277 56365])
-            ("gnus-newsgroup-headers" variable nil nil [56367 56456])
-            ("gnus-newsgroup-threads" variable nil nil [56458 56493])
-            ("gnus-newsgroup-prepared" variable nil nil [56495 56589])
-            ("gnus-newsgroup-ancient" variable nil nil [56591 56698])
-            ("gnus-newsgroup-sparse" variable nil nil [56700 56734])
-            ("gnus-current-article" variable nil nil [56736 56769])
-            ("gnus-article-current" variable nil nil [56770 56803])
-            ("gnus-current-headers" variable nil nil [56804 56837])
-            ("gnus-have-all-headers" variable nil nil [56838 56872])
-            ("gnus-last-article" variable nil nil [56873 56903])
-            ("gnus-newsgroup-history" variable nil nil [56904 56939])
-            ("gnus-newsgroup-charset" variable nil nil [56940 56975])
-            ("gnus-newsgroup-ephemeral-charset" variable nil nil [56976 57021])
-            ("gnus-newsgroup-ephemeral-ignored-charsets" variable nil nil [57022 57076])
-            ("gnus-article-before-search" variable nil nil [57078 57117])
-            ("gnus-summary-local-variables" variable (:default-value (quote (gnus-newsgroup-name gnus-newsgroup-unreads gnus-newsgroup-unselected gnus-newsgroup-marked gnus-newsgroup-spam-marked gnus-newsgroup-reads gnus-newsgroup-saved gnus-newsgroup-replied gnus-newsgroup-forwarded gnus-newsgroup-expirable gnus-newsgroup-killed gnus-newsgroup-unseen gnus-newsgroup-seen gnus-newsgroup-unexist gnus-newsgroup-cached gnus-newsgroup-downloadable gnus-newsgroup-undownloaded gnus-newsgroup-unsendable gnus-newsgroup-begin gnus-newsgroup-end gnus-newsgroup-last-rmail gnus-newsgroup-last-mail gnus-newsgroup-last-folder gnus-newsgroup-last-file gnus-newsgroup-last-directory gnus-newsgroup-auto-expire gnus-newsgroup-processable gnus-newsgroup-unfetched gnus-newsgroup-articles gnus-newsgroup-bookmarks gnus-newsgroup-dormant gnus-newsgroup-headers gnus-newsgroup-threads gnus-newsgroup-prepared gnus-summary-highlight-line-function gnus-current-article gnus-current-headers gnus-have-all-headers gnus-last-article gnus-article-internal-prepare-hook (gnus-summary-article-delete-hook . global) (gnus-summary-article-move-hook . global) gnus-newsgroup-dependencies gnus-newsgroup-selected-overlay gnus-newsgroup-scored gnus-newsgroup-kill-headers gnus-thread-expunge-below gnus-score-alist gnus-current-score-file (gnus-summary-expunge-below . global) (gnus-summary-mark-below . global) (gnus-orphan-score . global) gnus-newsgroup-active gnus-scores-exclude-files gnus-newsgroup-highest gnus-newsgroup-history gnus-newsgroup-ancient gnus-newsgroup-sparse gnus-newsgroup-process-stack (gnus-newsgroup-adaptive . gnus-use-adaptive-scoring) gnus-newsgroup-adaptive-score-file (gnus-reffed-article-number . -1) (gnus-newsgroup-expunged-tally . 0) gnus-cache-removable-articles gnus-newsgroup-data gnus-newsgroup-data-reverse gnus-newsgroup-limit gnus-newsgroup-limits gnus-newsgroup-charset gnus-newsgroup-display gnus-summary-use-undownloaded-faces))) nil [57119 59313])
-            ("gnus-newsgroup-variables" variable nil nil [59315 60262])
-            ("let" code nil nil [60404 60472])
-            ("gnus-decode-encoded-word-methods" variable (:default-value (quote (mail-decode-encoded-word-string))) nil [60491 61000])
-            ("gnus-decode-encoded-word-methods-cache" variable nil nil [61002 61053])
-            ("gnus-multi-decode-encoded-word-string" function (:arguments ("string")) nil [61055 61815])
-            ("gnus-simplify-whitespace" function (:arguments ("str")) nil [61845 62315])
-            ("gnus-simplify-all-whitespace" function (:arguments ("str")) nil [62317 62487])
-            ("gnus-simplify-subject-re" function (:arguments ("subject")) nil [62489 62681])
-            ("gnus-simplify-subject" function (:arguments ("subject" "re-only")) nil [62683 63524])
-            ("gnus-simplify-buffer-fuzzy-step" function (:arguments ("regexp" "newtext")) nil [63616 63790])
-            ("gnus-simplify-buffer-fuzzy" function (:arguments ("regexp")) nil [63792 64948])
-            ("gnus-simplify-subject-fuzzy" function (:arguments ("subject")) nil [64950 65491])
-            ("gnus-simplify-subject-fully" function (:arguments ("subject")) nil [65493 66086])
-            ("gnus-subject-equal" function (:arguments ("s1" "s2" "simple-first")) nil [66088 66443])
-            ("gnus-summary-bubble-group" function nil nil [66445 66677])
-            ("put" code nil nil [66712 66757])
-            ("gnus-article-commands-menu" variable nil nil [66759 66794])
-            ("gnus-define-keys" code nil nil [66820 71348])
-            ("gnus-define-keys" code nil nil [71379 72225])
-            ("gnus-define-keys" code nil nil [72227 72418])
-            ("gnus-define-keys" code nil nil [72420 73551])
-            ("gnus-define-keys" code nil nil [73553 74138])
-            ("gnus-define-keys" code nil nil [74140 74826])
-            ("gnus-define-keys" code nil nil [74828 75052])
-            ("gnus-define-keys" code nil nil [75054 75539])
-            ("gnus-define-keys" code nil nil [75541 76527])
-            ("gnus-define-keys" code nil nil [76529 77606])
-            ("gnus-define-keys" code nil nil [77608 77887])
-            ("gnus-define-keys" code nil nil [77916 78340])
-            ("gnus-define-keys" code nil nil [78342 78563])
-            ("gnus-define-keys" code nil nil [78565 78759])
-            ("gnus-define-keys" code nil nil [78761 79143])
-            ("gnus-define-keys" code nil nil [79145 79397])
-            ("gnus-define-keys" code nil nil [79399 79713])
-            ("gnus-define-keys" code nil nil [79715 80129])
-            ("gnus-define-keys" code nil nil [80131 80314])
-            ("gnus-define-keys" code nil nil [80316 80923])
-            ("gnus-define-keys" code nil nil [80925 81394])
-            ("gnus-define-keys" code nil nil [81396 82007])
-            ("gnus-define-keys" code nil nil [82009 82631])
-            ("gnus-define-keys" code nil nil [82633 83086])
-            ("gnus-define-keys" code nil nil [83088 83514])
-            ("gnus-article-post-menu" variable nil nil [83516 83551])
-            ("gnus-summary-menu-maxlen" variable
-               (:constant-flag t
-                :default-value 20)
-                nil [83553 83591])
-            ("gnus-summary-menu-split" function (:arguments ("menu")) nil [83593 84367])
-            ("gnus-summary-make-menu-bar" function nil nil [84369 106226])
-            ("gnus-summary-tool-bar-map" variable nil nil [106228 106266])
-            ("gnus-summary-tool-bar-update" function (:arguments ("symbol" "value")) nil [106471 106865])
-            ("gnus-summary-tool-bar" variable (:default-value (if (eq gmm-tool-bar-style (quote gnome)) (quote gnus-summary-tool-bar-gnome) (quote gnus-summary-tool-bar-retro))) nil [106867 107638])
-            ("gnus-summary-tool-bar-gnome" variable (:default-value (quote ((gnus-summary-post-news "mail/compose" nil) (gnus-summary-insert-new-articles "mail/inbox" nil :visible (or (not gnus-agent) gnus-plugged)) (gnus-summary-reply-with-original "mail/reply") (gnus-summary-reply "mail/reply" nil :visible nil) (gnus-summary-followup-with-original "mail/reply-all") (gnus-summary-followup "mail/reply-all" nil :visible nil) (gnus-summary-mail-forward "mail/forward") (gnus-summary-save-article "mail/save") (gnus-summary-search-article-forward "search" nil :visible nil) (gnus-summary-print-article "print") (gnus-summary-tick-article-forward "flag-followup" nil :visible nil) (gnus-summary-save-newsrc "save" nil :visible nil) (gnus-summary-prev-article "left-arrow") (gnus-summary-next-article "right-arrow") (gnus-summary-next-page "next-page") (gnus-summary-mark-as-expirable "delete" nil :visible (gnus-check-backend-function (quote request-expire-articles) gnus-newsgroup-name)) (gnus-summary-mark-as-spam "mail/spam" t :visible (and (fboundp (quote spam-group-ham-contents-p)) (spam-group-ham-contents-p gnus-newsgroup-name)) :help "Mark as spam") (gnus-summary-mark-as-read-forward "mail/not-spam" nil :visible (and (fboundp (quote spam-group-spam-contents-p)) (spam-group-spam-contents-p gnus-newsgroup-name))) (gnus-summary-exit "exit") (gmm-customize-mode "preferences" t :help "Edit mode preferences") (gnus-info-find-node "help")))) nil [107640 109868])
-            ("gnus-summary-tool-bar-retro" variable (:default-value (quote ((gnus-summary-prev-unread-article "gnus/prev-ur") (gnus-summary-next-unread-article "gnus/next-ur") (gnus-summary-post-news "gnus/post") (gnus-summary-followup-with-original "gnus/fuwo") (gnus-summary-followup "gnus/followup") (gnus-summary-reply-with-original "gnus/reply-wo") (gnus-summary-reply "gnus/reply") (gnus-summary-caesar-message "gnus/rot13") (gnus-uu-decode-uu "gnus/uu-decode") (gnus-summary-save-article-file "gnus/save-aif") (gnus-summary-save-article "gnus/save-art") (gnus-uu-post-news "gnus/uu-post") (gnus-summary-catchup "gnus/catchup") (gnus-summary-catchup-and-exit "gnus/cu-exit") (gnus-summary-exit "gnus/exit-summ") (gnus-summary-print-article "gnus/print" nil :visible nil) (gnus-summary-mark-as-expirable "gnus/close" nil :visible nil) (gnus-summary-save-newsrc "gnus/save" nil :visible nil) (gnus-summary-search-article-forward "gnus/search" nil :visible nil) (gnus-info-find-node "gnus/help" nil :visible nil)))) nil [109870 111496])
-            ("gnus-summary-tool-bar-zap-list" variable (:default-value t) nil [111498 111875])
-            ("image-load-path" variable nil nil [111877 111901])
-            ("tool-bar-map" variable nil nil [111902 111923])
-            ("gnus-summary-make-tool-bar" function (:arguments ("force")) nil [111925 112677])
-            ("gnus-make-score-map" function (:arguments ("type")) nil [112679 114546])
-            ("declare-function" code nil nil [114549 114611])
-            ("bookmark-make-record-function" variable nil nil [114612 114650])
-            ("bidi-paragraph-direction" variable nil nil [114653 114686])
-            ("gnus-summary-mode" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [114688 116999])
-            ("gnus-summary-make-local-variables" function nil nil [117001 117527])
-            ("gnus-data-number" function (:arguments ("data")) nil [117557 117606])
-            ("gnus-data-set-number" function (:arguments ("data" "number")) nil [117608 117679])
-            ("gnus-data-mark" function (:arguments ("data")) nil [117681 117730])
-            ("gnus-data-set-mark" function (:arguments ("data" "mark")) nil [117732 117808])
-            ("gnus-data-pos" function (:arguments ("data")) nil [117810 117858])
-            ("gnus-data-set-pos" function (:arguments ("data" "pos")) nil [117860 117933])
-            ("gnus-data-header" function (:arguments ("data")) nil [117935 117986])
-            ("gnus-data-set-header" function (:arguments ("data" "header")) nil [117988 118065])
-            ("gnus-data-level" function (:arguments ("data")) nil [118067 118117])
-            ("gnus-data-unread-p" function (:arguments ("data")) nil [118119 118193])
-            ("gnus-data-read-p" function (:arguments ("data")) nil [118195 118268])
-            ("gnus-data-pseudo-p" function (:arguments ("data")) nil [118270 118331])
-            ("gnus-data-find" function (:arguments ("number")) nil [118333 118405])
-            ("gnus-data-find-list" function (:arguments ("number" "data")) nil [118407 118555])
-            ("gnus-data-make" function (:arguments ("number" "mark" "pos" "header" "level")) nil [118557 118657])
-            ("gnus-data-enter" function (:arguments ("after-article" "number" "mark" "pos" "header" "level" "offset")) nil [118659 119036])
-            ("gnus-data-enter-list" function (:arguments ("after-article" "list" "offset")) nil [119038 119859])
-            ("gnus-data-remove" function (:arguments ("article" "offset")) nil [119861 120418])
-            ("gnus-data-list" function (:arguments ("backward")) nil [120420 120611])
-            ("gnus-data-update-list" function (:arguments ("data" "offset")) nil [120613 120859])
-            ("gnus-summary-article-pseudo-p" function (:arguments ("article")) nil [120861 121027])
-            ("gnus-summary-article-sparse-p" function (:arguments ("article")) nil [121029 121177])
-            ("gnus-summary-article-ancient-p" function (:arguments ("article")) nil [121179 121329])
-            ("gnus-article-children" function (:arguments ("number")) nil [121331 121701])
-            ("gnus-summary-skip-intangible" function nil nil [121703 121927])
-            ("gnus-summary-article-intangible-p" function nil nil [121929 122075])
-            ("gnus-summary-article-number" function nil nil [122107 122417])
-            ("gnus-summary-article-header" function (:arguments ("number")) nil [122419 122608])
-            ("gnus-summary-thread-level" function (:arguments ("number")) nil [122610 122936])
-            ("gnus-summary-article-mark" function (:arguments ("number")) nil [122938 123119])
-            ("gnus-summary-article-pos" function (:arguments ("number")) nil [123121 123315])
-            ("defalias" code nil nil [123317 123386])
-            ("gnus-summary-article-subject" function (:arguments ("number")) nil [123387 123764])
-            ("gnus-summary-article-score" function (:arguments ("number")) nil [123766 123983])
-            ("gnus-summary-article-children" function (:arguments ("number")) nil [123985 124446])
-            ("gnus-summary-article-parent" function (:arguments ("number")) nil [124448 125023])
-            ("gnus-unread-mark-p" function (:arguments ("mark")) nil [125025 125127])
-            ("gnus-read-mark-p" function (:arguments ("mark")) nil [125129 125446])
-            ("gnus-article-mark" function (:arguments ("number")) nil [125448 126269])
-            ("gnus-save-hidden-threads" function (:arguments ("forms")) nil [126298 126630])
-            ("put" code nil nil [126631 126686])
-            ("put" code nil nil [126687 126744])
-            ("gnus-data-compute-positions" function nil nil [126746 127203])
-            ("gnus-hidden-threads-configuration" function nil nil [127205 127577])
-            ("gnus-restore-hidden-threads-configuration" function (:arguments ("config")) nil [127579 127851])
-            ("gnus-mouse-pick-article" function (:arguments ("e")) nil [127901 128011])
-            ("gnus-summary-set-display-table" function nil nil [128013 129049])
-            ("gnus-summary-set-article-display-arrow" function (:arguments ("pos")) nil [129051 129604])
-            ("gnus-summary-setup-buffer" function (:arguments ("group")) nil [129606 130693])
-            ("gnus-set-global-variables" function nil nil [130695 132455])
-            ("gnus-summary-article-unread-p" function (:arguments ("article")) nil [132457 132586])
-            ("gnus-summary-first-article-p" function (:arguments ("article")) nil [132588 132832])
-            ("gnus-summary-last-article-p" function (:arguments ("article")) nil [132834 133137])
-            ("gnus-make-thread-indent-array" function (:arguments ("n")) nil [133139 133594])
-            ("gnus-update-summary-mark-positions" function nil nil [133596 135573])
-            ("gnus-summary-insert-dummy-line" function (:arguments ("gnus-tmp-subject" "gnus-tmp-number")) nil [135575 135883])
-            ("gnus-summary-extract-address-component" function (:arguments ("from")) nil [135885 136009])
-            ("gnus-summary-from-or-to-or-newsgroups" function (:arguments ("header" "gnus-tmp-from")) nil [136011 137398])
-            ("gnus-summary-insert-line" function (:arguments ("gnus-tmp-header" "gnus-tmp-level" "gnus-tmp-current" "undownloaded" "gnus-tmp-unread" "gnus-tmp-replied" "gnus-tmp-expirable" "gnus-tmp-subject-or-nil" "gnus-tmp-dummy" "gnus-tmp-score" "gnus-tmp-process")) nil [137400 140345])
-            ("gnus-summary-update-line" function (:arguments ("dont-update")) nil [140347 141729])
-            ("gnus-tmp-new-adopts" variable nil nil [141731 141763])
-            ("gnus-summary-number-of-articles-in-thread" function (:arguments ("thread" "level" "char")) nil [141765 142635])
-            ("gnus-summary-line-message-size" function (:arguments ("head")) nil [142637 143123])
-            ("gnus-user-date-format-alist" variable (:default-value (quote (((gnus-seconds-today) . "Today, %H:%M") ((+ 86400 (gnus-seconds-today)) . "Yesterday, %H:%M") (604800 . "%A %H:%M") ((gnus-seconds-month) . "%A %d") ((gnus-seconds-year) . "%B %d") (t . "%b %d %Y")))) nil [143125 144473])
-            ("gnus-user-date" function (:arguments ("messy-date")) nil [144475 145376])
-            ("gnus-summary-set-local-parameters" function (:arguments ("group")) nil [145378 146264])
-            ("gnus-summary-read-group" function (:arguments ("group" "show-all" "no-article" "kill-buffer" "no-display" "backward" "select-articles")) nil [146266 147560])
-            ("gnus-summary-read-group-1" function (:arguments ("group" "show-all" "no-article" "kill-buffer" "no-display" "select-articles")) nil [147562 153639])
-            ("gnus-summary-auto-select-subject" function nil nil [153641 154267])
-            ("gnus-summary-prepare" function (:user-visible-flag t) nil [154269 155098])
-            ("gnus-general-simplify-subject" function (:arguments ("subject")) nil [155100 156010])
-            ("gnus-summary-simplify-subject-query" function (:user-visible-flag t) nil [156012 156248])
-            ("gnus-gather-threads-by-subject" function (:arguments ("threads")) nil [156250 157528])
-            ("gnus-gather-threads-by-references" function (:arguments ("threads")) nil [157530 158933])
-            ("gnus-sort-gathered-threads" function (:arguments ("threads")) nil [158935 159284])
-            ("gnus-thread-loop-p" function (:arguments ("root" "thread")) nil [159286 160000])
-            ("gnus-make-threads" function nil nil [160002 160753])
-            ("gnus-dependencies-add-header" function (:arguments ("header" "dependencies" "force-new")) nil [160781 163800])
-            ("gnus-extract-message-id-from-in-reply-to" function (:arguments ("string")) nil [163802 163965])
-            ("gnus-build-sparse-threads" function nil nil [163967 165824])
-            ("gnus-build-old-threads" function nil nil [165826 166592])
-            ("gnus-remove-odd-characters" function (:arguments ("string")) nil [166594 166796])
-            ("gnus-nov-parse-line" function (:arguments ("number" "dependencies" "force-new")) nil [166901 168446])
-            ("gnus-build-get-header" function (:arguments ("id")) nil [168448 169700])
-            ("gnus-build-all-threads" function nil nil [169702 170621])
-            ("gnus-summary-update-article-line" function (:arguments ("article" "header")) nil [170623 172851])
-            ("gnus-summary-update-article" function (:arguments ("article" "iheader")) nil [172853 173692])
-            ("gnus-rebuild-thread" function (:arguments ("id" "line")) nil [173694 175730])
-            ("gnus-number-to-header" function (:arguments ("number")) nil [175732 175994])
-            ("gnus-parent-headers" function (:arguments ("in-headers" "generation")) nil [175996 176540])
-            ("gnus-id-to-thread" function (:arguments ("id")) nil [176542 176666])
-            ("gnus-id-to-article" function (:arguments ("id")) nil [176668 176863])
-            ("gnus-id-to-header" function (:arguments ("id")) nil [176865 176964])
-            ("gnus-article-displayed-root-p" function (:arguments ("article")) nil [176966 177462])
-            ("gnus-root-id" function (:arguments ("id")) nil [177464 177727])
-            ("gnus-articles-in-thread" function (:arguments ("thread")) nil [177729 177903])
-            ("gnus-remove-thread" function (:arguments ("id" "dont-remove")) nil [177905 179892])
-            ("gnus-remove-thread-1" function (:arguments ("thread")) nil [179894 180365])
-            ("gnus-sort-threads-recursive" function (:arguments ("threads" "func")) nil [180367 180850])
-            ("gnus-sort-subthreads-recursive" function (:arguments ("threads" "func")) nil [180852 181102])
-            ("gnus-sort-threads-loop" function (:arguments ("threads" "func")) nil [181104 181648])
-            ("gnus-sort-threads" function (:arguments ("threads")) nil [181650 182410])
-            ("gnus-sort-articles" function (:arguments ("articles")) nil [182412 182726])
-            ("gnus-thread-header" function (:arguments ("thread")) nil [182790 183207])
-            ("gnus-article-sort-by-number" function (:arguments ("h1" "h2")) nil [183209 183351])
-            ("gnus-thread-sort-by-number" function (:arguments ("h1" "h2")) nil [183353 183519])
-            ("gnus-article-sort-by-random" function (:arguments ("h1" "h2")) nil [183521 183616])
-            ("gnus-thread-sort-by-random" function (:arguments ("h1" "h2")) nil [183618 183770])
-            ("gnus-article-sort-by-lines" function (:arguments ("h1" "h2")) nil [183772 183917])
-            ("gnus-thread-sort-by-lines" function (:arguments ("h1" "h2")) nil [183919 184089])
-            ("gnus-article-sort-by-chars" function (:arguments ("h1" "h2")) nil [184091 184228])
-            ("gnus-thread-sort-by-chars" function (:arguments ("h1" "h2")) nil [184230 184400])
-            ("gnus-article-sort-by-marks" function (:arguments ("h1" "h2")) nil [184402 184581])
-            ("gnus-thread-sort-by-marks" function (:arguments ("h1" "h2")) nil [184583 184753])
-            ("gnus-article-sort-by-author" function (:arguments ("h1" "h2")) nil [184755 185126])
-            ("gnus-thread-sort-by-author" function (:arguments ("h1" "h2")) nil [185128 185287])
-            ("gnus-article-sort-by-recipient" function (:arguments ("h1" "h2")) nil [185289 185707])
-            ("gnus-thread-sort-by-recipient" function (:arguments ("h1" "h2")) nil [185709 185876])
-            ("gnus-article-sort-by-subject" function (:arguments ("h1" "h2")) nil [185878 186109])
-            ("gnus-thread-sort-by-subject" function (:arguments ("h1" "h2")) nil [186111 186272])
-            ("gnus-article-sort-by-date" function (:arguments ("h1" "h2")) nil [186274 186466])
-            ("gnus-thread-sort-by-date" function (:arguments ("h1" "h2")) nil [186468 186628])
-            ("gnus-article-sort-by-score" function (:arguments ("h1" "h2")) nil [186630 186990])
-            ("gnus-thread-sort-by-score" function (:arguments ("h1" "h2")) nil [186992 187155])
-            ("gnus-thread-sort-by-total-score" function (:arguments ("h1" "h2")) nil [187157 187386])
-            ("gnus-thread-total-score" function (:arguments ("thread")) nil [187388 187754])
-            ("gnus-article-sort-by-most-recent-number" function (:arguments ("h1" "h2")) nil [187756 187878])
-            ("gnus-thread-sort-by-most-recent-number" function (:arguments ("h1" "h2")) nil [187880 188094])
-            ("gnus-thread-highest-number" function (:arguments ("thread")) nil [188096 188299])
-            ("gnus-article-sort-by-most-recent-date" function (:arguments ("h1" "h2")) nil [188301 188419])
-            ("gnus-thread-sort-by-most-recent-date" function (:arguments ("h1" "h2")) nil [188421 188625])
-            ("gnus-thread-latest-date" function (:arguments ("thread")) nil [188900 189139])
-            ("gnus-thread-total-score-1" function (:arguments ("root")) nil [189141 189637])
-            ("gnus-tmp-prev-subject" variable nil nil [189688 189722])
-            ("gnus-tmp-false-parent" variable nil nil [189723 189757])
-            ("gnus-tmp-root-expunged" variable nil nil [189758 189793])
-            ("gnus-tmp-dummy-line" variable nil nil [189794 189826])
-            ("gnus-extra-header" function (:arguments ("type" "header")) nil [189828 189996])
-            ("gnus-tmp-thread-tree-header-string" variable nil nil [189998 190044])
-            ("gnus-sum-thread-tree-root" variable (:default-value "> ") nil [190046 190257])
-            ("gnus-sum-thread-tree-false-root" variable (:default-value "> ") nil [190259 190480])
-            ("gnus-sum-thread-tree-single-indent" variable nil nil [190482 190710])
-            ("gnus-sum-thread-tree-vertical" variable (:default-value "| ") nil [190712 190866])
-            ("gnus-sum-thread-tree-indent" variable (:default-value "  ") nil [190868 191006])
-            ("gnus-sum-thread-tree-leaf-with-other" variable (:default-value "+-> ") nil [191008 191168])
-            ("gnus-sum-thread-tree-single-leaf" variable (:default-value "\\-> ") nil [191170 191330])
-            ("gnus-summary-display-while-building" variable nil nil [191332 191711])
-            ("gnus-summary-prepare-threads" function (:arguments ("threads")) nil [191713 202449])
-            ("gnus-summary-prepare-unthreaded" function (:arguments ("headers")) nil [202451 203710])
-            ("declare-function" code nil nil [203712 203781])
-            ("gnus-group-get-list-identifiers" function (:arguments ("group")) nil [203783 204051])
-            ("gnus-summary-remove-list-identifiers" function nil nil [204053 204886])
-            ("gnus-fetch-headers" function (:arguments ("articles" "limit" "force-new" "dependencies")) nil [204888 205751])
-            ("gnus-select-newsgroup" function (:arguments ("group" "read-all" "select-articles")) nil [205753 212060])
-            ("gnus-compute-unseen-list" function nil nil [212062 212357])
-            ("declare-function" code nil nil [212359 212421])
-            ("gnus-summary-display-make-predicate" function (:arguments ("display")) nil [212423 213048])
-            ("gnus-number" variable nil nil [213104 213124])
-            ("gnus-article-marked-p" function (:arguments ("type" "article")) nil [213125 214437])
-            ("gnus-articles-to-read" function (:arguments ("group" "read-all")) nil [214439 218290])
-            ("gnus-killed-articles" function (:arguments ("killed" "articles")) nil [218292 218512])
-            ("gnus-article-mark-to-type" function (:arguments ("mark")) nil [218514 218653])
-            ("gnus-article-unpropagatable-p" function (:arguments ("mark")) nil [218655 218808])
-            ("gnus-adjust-marked-articles" function (:arguments ("info")) nil [218810 221691])
-            ("gnus-update-missing-marks" function (:arguments ("missing")) nil [221693 222251])
-            ("gnus-update-marks" function nil nil [222253 225106])
-            ("gnus-set-mode-line" function (:arguments ("where")) nil [225108 227591])
-            ("gnus-create-xref-hashtb" function (:arguments ("from-newsgroup" "headers" "unreads")) nil [227593 228743])
-            ("gnus-mark-xrefs-as-read" function (:arguments ("from-newsgroup" "headers" "unreads")) nil [228745 230147])
-            ("gnus-compute-read-articles" function (:arguments ("group" "articles")) nil [230149 231535])
-            ("gnus-group-make-articles-read" function (:arguments ("group" "articles")) nil [231537 233452])
-            ("gnus-get-newsgroup-headers" function (:arguments ("dependencies" "force-new")) nil [233454 238334])
-            ("gnus-get-newsgroup-headers-xover" function (:arguments ("sequence" "force-new" "dependencies" "group" "also-fetch-heads")) nil [238398 240713])
-            ("gnus-article-get-xrefs" function nil nil [240715 241524])
-            ("gnus-summary-insert-subject" function (:arguments ("id" "old-header" "use-old-header")) nil [241526 243945])
-            ("gnus-summary-work-articles" function (:arguments ("n")) nil [243989 245460])
-            ("gnus-summary-iterate" function (:arguments ("arg" "forms")) nil [245462 245923])
-            ("put" code nil nil [245925 245976])
-            ("put" code nil nil [245977 246035])
-            ("gnus-summary-save-process-mark" function (:user-visible-flag t) nil [246037 246242])
-            ("gnus-summary-kill-process-mark" function (:user-visible-flag t) nil [246244 246453])
-            ("gnus-summary-yank-process-mark" function (:user-visible-flag t) nil [246455 246718])
-            ("gnus-summary-process-mark-set" function (:arguments ("set")) nil [246720 246902])
-            ("gnus-summary-search-group" function (:arguments ("backward" "use-level")) nil [246929 247270])
-            ("gnus-summary-best-group" function (:arguments ("exclude-group")) nil [247272 247530])
-            ("gnus-summary-find-next" function (:arguments ("unread" "article" "backward")) nil [247532 248787])
-            ("gnus-summary-find-prev" function (:arguments ("unread" "article")) nil [248789 249966])
-            ("gnus-summary-find-subject" function (:arguments ("subject" "unread" "backward" "article")) nil [249968 250783])
-            ("gnus-summary-search-forward" function (:arguments ("unread" "subject" "backward")) nil [250785 251169])
-            ("gnus-recenter" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [251171 251455])
-            ("put" code nil nil [251457 251495])
-            ("gnus-forward-line-ignore-invisible" function (:arguments ("n")) nil [251497 252229])
-            ("gnus-summary-recenter" function (:user-visible-flag t) nil [252231 254437])
-            ("gnus-summary-jump-to-group" function (:arguments ("newsgroup")) nil [254439 255063])
-            ("gnus-list-of-unread-articles" function (:arguments ("group")) nil [255230 256726])
-            ("gnus-list-of-read-articles" function (:arguments ("group")) nil [256728 257374])
-            ("gnus-sequence-of-unread-articles" function (:arguments ("group")) nil [257545 258976])
-            ("gnus-summary-select-article-buffer" function (:user-visible-flag t) nil [259007 259609])
-            ("gnus-summary-universal-argument" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [259611 260276])
-            ("define-obsolete-function-alias" code nil nil [260278 260376])
-            ("gnus-summary-find-for-reselect" function nil nil [260378 261237])
-            ("gnus-summary-reselect-current-group" function
-               (:user-visible-flag t
-                :arguments ("all" "rescan"))
-                nil [261239 262038])
-            ("gnus-summary-rescan-group" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [262040 262386])
-            ("gnus-summary-update-info" function (:arguments ("non-destructive")) nil [262388 263973])
-            ("gnus-summary-save-newsrc" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [263975 264311])
-            ("declare-function" code nil nil [264313 264386])
-            ("declare-function" code nil nil [264387 264448])
-            ("gnus-summary-exit" function
-               (:user-visible-flag t
-                :arguments ("temporary" "leave-hidden"))
-                nil [264450 268346])
-            ("declare-function" code nil nil [268348 268400])
-            ("defalias" code nil nil [268402 268460])
-            ("gnus-summary-exit-no-update" function
-               (:user-visible-flag t
-                :arguments ("no-questions"))
-                nil [268461 270436])
-            ("gnus-handle-ephemeral-exit" function (:arguments ("quit-config")) nil [270438 272512])
-            ("gnus-dead-summary-mode-map" variable (:default-value (let ((map (make-keymap))) (suppress-keymap map) (substitute-key-definition (quote undefined) (quote gnus-summary-wake-up-the-dead) map) (dolist (key (quote ("" "
" "" [delete]))) (define-key map key (quote gnus-summary-wake-up-the-dead))) (dolist (key (quote ("q" "Q"))) (define-key map key (quote bury-buffer))) map)) nil [272535 272890])
-            ("define-minor-mode" code nil nil [272892 273114])
-            ("gnus-deaden-summary" function nil nil [273116 273782])
-            ("gnus-kill-or-deaden-summary" function (:arguments ("buffer")) nil [273784 274430])
-            ("gnus-summary-wake-up-the-dead" function
-               (:user-visible-flag t
-                :arguments ("args"))
-                nil [274432 274818])
-            ("gnus-summary-describe-group" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [274873 275038])
-            ("gnus-summary-describe-briefly" function (:user-visible-flag t) nil [275040 275451])
-            ("gnus-summary-next-group" function
-               (:user-visible-flag t
-                :arguments ("no-article" "target-group" "backward"))
-                nil [275509 277415])
-            ("gnus-summary-prev-group" function
-               (:user-visible-flag t
-                :arguments ("no-article"))
-                nil [277417 277682])
-            ("gnus-summary-first-subject" function
-               (:user-visible-flag t
-                :arguments ("unread" "undownloaded" "unseen"))
-                nil [277718 280041])
-            ("gnus-summary-next-subject" function
-               (:user-visible-flag t
-                :arguments ("n" "unread" "dont-display"))
-                nil [280043 280770])
-            ("gnus-summary-next-unread-subject" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [280772 280911])
-            ("gnus-summary-prev-subject" function
-               (:user-visible-flag t
-                :arguments ("n" "unread"))
-                nil [280913 281141])
-            ("gnus-summary-prev-unread-subject" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [281143 281290])
-            ("gnus-summary-goto-subjects" function (:arguments ("articles")) nil [281292 281592])
-            ("gnus-summary-goto-subject" function
-               (:user-visible-flag t
-                :arguments ("article" "force" "silent"))
-                nil [281594 282420])
-            ("gnus-summary-expand-window" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [282481 282776])
-            ("gnus-summary-display-article" function (:arguments ("article" "all-header")) nil [282778 283964])
-            ("gnus-summary-select-article" function (:arguments ("all-headers" "force" "pseudo" "article")) nil [283966 285750])
-            ("gnus-summary-force-verify-and-decrypt" function (:user-visible-flag t) nil [285752 286159])
-            ("gnus-summary-next-article" function
-               (:user-visible-flag t
-                :arguments ("unread" "subject" "backward" "push"))
-                nil [286161 288887])
-            ("gnus-summary-walk-group-buffer" function (:arguments ("from-group" "cmd" "unread" "backward" "start")) nil [288889 290469])
-            ("gnus-summary-next-unread-article" function (:user-visible-flag t) nil [290471 290786])
-            ("gnus-summary-prev-article" function
-               (:user-visible-flag t
-                :arguments ("unread" "subject"))
-                nil [290788 291019])
-            ("gnus-summary-prev-unread-article" function (:user-visible-flag t) nil [291021 291338])
-            ("declare-function" code nil nil [291340 291399])
-            ("gnus-summary-next-page" function
-               (:user-visible-flag t
-                :arguments ("lines" "circular" "stop"))
-                nil [291401 293378])
-            ("gnus-summary-prev-page" function
-               (:user-visible-flag t
-                :arguments ("lines" "move"))
-                nil [293380 294540])
-            ("gnus-summary-prev-page-or-article" function
-               (:user-visible-flag t
-                :arguments ("lines"))
-                nil [294542 294812])
-            ("gnus-summary-scroll-up" function
-               (:user-visible-flag t
-                :arguments ("lines"))
-                nil [294814 295484])
-            ("gnus-summary-scroll-down" function
-               (:user-visible-flag t
-                :arguments ("lines"))
-                nil [295486 295781])
-            ("gnus-summary-next-same-subject" function (:user-visible-flag t) nil [295783 295972])
-            ("gnus-summary-prev-same-subject" function (:user-visible-flag t) nil [295974 296167])
-            ("gnus-summary-next-unread-same-subject" function (:user-visible-flag t) nil [296169 296370])
-            ("gnus-summary-prev-unread-same-subject" function (:user-visible-flag t) nil [296372 296577])
-            ("gnus-summary-first-unread-article" function (:user-visible-flag t) nil [296579 296930])
-            ("gnus-summary-first-unread-subject" function (:user-visible-flag t) nil [296932 297253])
-            ("gnus-summary-first-unseen-subject" function (:user-visible-flag t) nil [297255 297592])
-            ("gnus-summary-first-unseen-or-unread-subject" function (:user-visible-flag t) nil [297594 298102])
-            ("gnus-summary-first-article" function (:user-visible-flag t) nil [298104 298430])
-            ("gnus-summary-best-unread-article" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [298432 298871])
-            ("gnus-summary-best-unread-subject" function (:user-visible-flag t) nil [298873 299413])
-            ("gnus-summary-better-unread-subject" function (:user-visible-flag t) nil [299415 299928])
-            ("gnus-summary-last-subject" function nil nil [299930 300147])
-            ("gnus-summary-goto-article" function
-               (:user-visible-flag t
-                :arguments ("article" "all-headers" "force"))
-                nil [300149 301045])
-            ("gnus-summary-goto-last-article" function (:user-visible-flag t) nil [301047 301271])
-            ("gnus-summary-pop-article" function
-               (:user-visible-flag t
-                :arguments ("number"))
-                nil [301273 301661])
-            ("gnus-summary-limit-to-articles" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [301731 302080])
-            ("gnus-summary-pop-limit" function
-               (:user-visible-flag t
-                :arguments ("total"))
-                nil [302082 302492])
-            ("gnus-summary-limit-to-subject" function
-               (:user-visible-flag t
-                :arguments ("subject" "header" "not-matching"))
-                nil [302494 303230])
-            ("gnus-summary-limit-to-author" function
-               (:user-visible-flag t
-                :arguments ("from" "not-matching"))
-                nil [303232 303915])
-            ("gnus-summary-limit-to-recipient" function
-               (:user-visible-flag t
-                :arguments ("recipient" "not-matching"))
-                nil [303917 305300])
-            ("gnus-summary-limit-to-address" function
-               (:user-visible-flag t
-                :arguments ("address" "not-matching"))
-                nil [305302 306989])
-            ("gnus-summary-limit-strange-charsets-predicate" function (:arguments ("header")) nil [306991 307353])
-            ("gnus-summary-limit-to-predicate" function (:arguments ("predicate")) nil [307355 307752])
-            ("gnus-summary-limit-to-age" function
-               (:user-visible-flag t
-                :arguments ("age" "younger-p"))
-                nil [307754 309158])
-            ("gnus-summary-limit-to-extra" function
-               (:user-visible-flag t
-                :arguments ("header" "regexp" "not-matching"))
-                nil [309160 310025])
-            ("gnus-summary-limit-to-display-predicate" function (:user-visible-flag t) nil [310027 310471])
-            ("gnus-summary-limit-to-unread" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [310473 311133])
-            ("gnus-summary-limit-to-headers" function
-               (:user-visible-flag t
-                :arguments ("match" "reverse"))
-                nil [311135 311432])
-            ("declare-function" code nil nil [311434 311484])
-            ("gnus-summary-limit-to-bodies" function
-               (:user-visible-flag t
-                :arguments ("match" "reverse" "headersp"))
-                nil [311486 312650])
-            ("gnus-summary-limit-to-singletons" function
-               (:user-visible-flag t
-                :arguments ("threadsp"))
-                nil [312652 313486])
-            ("gnus-summary-limit-to-replied" function
-               (:user-visible-flag t
-                :arguments ("unreplied"))
-                nil [313488 313874])
-            ("gnus-summary-limit-exclude-marks" function
-               (:user-visible-flag t
-                :arguments ("marks" "reverse"))
-                nil [313876 314248])
-            ("gnus-summary-limit-to-marks" function
-               (:user-visible-flag t
-                :arguments ("marks" "reverse"))
-                nil [314250 315038])
-            ("gnus-summary-limit-to-score" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [315040 315501])
-            ("gnus-summary-limit-to-unseen" function (:user-visible-flag t) nil [315503 315681])
-            ("gnus-summary-limit-include-thread" function
-               (:user-visible-flag t
-                :arguments ("id" "thread-only"))
-                nil [315683 317073])
-            ("gnus-summary-limit-include-matching-articles" function
-               (:user-visible-flag t
-                :arguments ("header" "regexp"))
-                nil [317075 317478])
-            ("gnus-summary-insert-dormant-articles" function (:user-visible-flag t) nil [317480 317816])
-            ("gnus-summary-insert-ticked-articles" function (:user-visible-flag t) nil [317818 318141])
-            ("gnus-summary-limit-include-dormant" function (:user-visible-flag t) nil [318143 318580])
-            ("gnus-summary-include-articles" function (:arguments ("articles")) nil [318582 319099])
-            ("gnus-summary-limit-exclude-dormant" function (:user-visible-flag t) nil [319101 319307])
-            ("gnus-summary-limit-exclude-childless-dormant" function (:user-visible-flag t) nil [319309 320043])
-            ("gnus-summary-limit-mark-excluded-as-read" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [320045 321016])
-            ("gnus-summary-limit" function (:arguments ("articles" "pop")) nil [321018 322531])
-            ("gnus-invisible-cut-children" function (:arguments ("threads")) nil [322533 322742])
-            ("gnus-cut-thread" function (:arguments ("thread")) nil [322744 323804])
-            ("gnus-cut-threads" function (:arguments ("threads")) nil [323806 324278])
-            ("gnus-summary-initial-limit" function (:arguments ("show-if-empty")) nil [324280 325837])
-            ("gnus-summary-limit-children" function (:arguments ("thread")) nil [325839 328499])
-            ("gnus-expunge-thread" function (:arguments ("thread")) nil [328501 329037])
-            ("gnus-summary-refer-parent-article" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [329077 330629])
-            ("gnus-summary-refer-references" function (:user-visible-flag t) nil [330631 331326])
-            ("gnus-delete-duplicate-headers" function (:arguments ("headers")) nil [331328 331790])
-            ("gnus-summary-refer-thread" function
-               (:user-visible-flag t
-                :arguments ("limit"))
-                nil [331792 334438])
-            ("gnus-summary-open-group-with-article" function
-               (:user-visible-flag t
-                :arguments ("message-id"))
-                nil [334440 335762])
-            ("gnus-summary-refer-article" function
-               (:user-visible-flag t
-                :arguments ("message-id"))
-                nil [335764 337495])
-            ("gnus-refer-article-methods" function nil nil [337497 338375])
-            ("gnus-summary-edit-parameters" function (:user-visible-flag t) nil [338377 338538])
-            ("gnus-summary-customize-parameters" function (:user-visible-flag t) nil [338540 338702])
-            ("gnus-summary-enter-digest-group" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [338704 341941])
-            ("gnus-summary-read-document" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [341943 343816])
-            ("gnus-summary-widget-forward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [343818 344141])
-            ("gnus-summary-widget-backward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [344143 344531])
-            ("gnus-summary-isearch-article" function
-               (:user-visible-flag t
-                :arguments ("regexp-p"))
-                nil [344533 344913])
-            ("gnus-summary-repeat-search-article-forward" function (:user-visible-flag t) nil [344915 345157])
-            ("gnus-summary-repeat-search-article-backward" function (:user-visible-flag t) nil [345159 345405])
-            ("gnus-summary-search-article-forward" function
-               (:user-visible-flag t
-                :arguments ("regexp" "backward"))
-                nil [345407 346276])
-            ("gnus-summary-search-article-backward" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [346278 346629])
-            ("gnus-summary-search-article" function (:arguments ("regexp" "backward")) nil [346631 349122])
-            ("gnus-find-matching-articles" function (:arguments ("header" "regexp")) nil [349124 349691])
-            ("gnus-summary-find-matching" function (:arguments ("header" "regexp" "backward" "unread" "not-case-fold" "not-matching")) nil [349693 351230])
-            ("gnus-summary-execute-command" function
-               (:user-visible-flag t
-                :arguments ("header" "regexp" "command" "backward"))
-                nil [351232 352706])
-            ("gnus-summary-beginning-of-article" function (:user-visible-flag t) nil [352708 353029])
-            ("gnus-summary-end-of-article" function (:user-visible-flag t) nil [353031 353356])
-            ("gnus-summary-print-truncate-and-quote" function (:arguments ("string" "len")) nil [353358 353616])
-            ("gnus-summary-print-article" function
-               (:user-visible-flag t
-                :arguments ("filename" "n"))
-                nil [353618 354703])
-            ("gnus-print-buffer" function nil nil [354705 355267])
-            ("declare-function" code nil nil [355269 355336])
-            ("gnus-summary-show-complete-article" function (:user-visible-flag t) nil [355338 355955])
-            ("gnus-summary-show-article" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [355957 359137])
-            ("gnus-summary-show-raw-article" function (:user-visible-flag t) nil [359139 359303])
-            ("gnus-summary-verbose-headers" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [359305 359708])
-            ("declare-function" code nil nil [359710 359765])
-            ("declare-function" code nil nil [359766 359829])
-            ("declare-function" code nil nil [359830 359888])
-            ("declare-function" code nil nil [359889 359988])
-            ("gnus-summary-toggle-header" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [359990 361755])
-            ("gnus-summary-show-all-headers" function (:user-visible-flag t) nil [361757 361881])
-            ("gnus-summary-caesar-message" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [361883 362573])
-            ("gnus-summary-idna-message" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [362575 363376])
-            ("gnus-summary-morse-message" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [363378 364036])
-            ("gnus-summary-stop-page-breaking" function (:user-visible-flag t) nil [364038 364438])
-            ("gnus-summary-move-article" function
-               (:user-visible-flag t
-                :arguments ("n" "to-newsgroup" "select-method" "action"))
-                nil [364440 376101])
-            ("gnus-summary-push-marks-to-backend" function (:arguments ("article")) nil [376103 376661])
-            ("gnus-summary-copy-article" function
-               (:user-visible-flag t
-                :arguments ("n" "to-newsgroup" "select-method"))
-                nil [376663 377186])
-            ("gnus-summary-crosspost-article" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [377188 377366])
-            ("gnus-summary-respool-default-method" variable nil nil [377368 377559])
-            ("gnus-summary-respool-article" function
-               (:user-visible-flag t
-                :arguments ("n" "method"))
-                nil [377561 379298])
-            ("gnus-summary-import-article" function
-               (:user-visible-flag t
-                :arguments ("file" "edit"))
-                nil [379300 380994])
-            ("gnus-summary-create-article" function (:user-visible-flag t) nil [380996 381956])
-            ("gnus-summary-article-posted-p" function (:user-visible-flag t) nil [381958 382514])
-            ("gnus-summary-expire-articles" function
-               (:user-visible-flag t
-                :arguments ("now"))
-                nil [382516 385100])
-            ("gnus-summary-expire-articles-now" function (:user-visible-flag t) nil [385102 385501])
-            ("gnus-summary-delete-article" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [385561 387576])
-            ("gnus-summary-edit-article" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [387578 390565])
-            ("defalias" code nil nil [390567 390637])
-            ("gnus-summary-edit-article-done" function
-               (:user-visible-flag t
-                :arguments ("references" "read-only" "buffer" "no-highlight"))
-                nil [390639 394035])
-            ("gnus-summary-edit-wash" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [394037 394366])
-            ("nnimap-split-fancy" variable nil nil [394384 394411])
-            ("nnimap-split-methods" variable nil nil [394412 394441])
-            ("gnus-summary-respool-query" function
-               (:user-visible-flag t
-                :arguments ("silent" "trace"))
-                nil [394443 395426])
-            ("gnus-summary-respool-trace" function (:user-visible-flag t) nil [395428 395649])
-            ("gnus-summary-kill-same-subject-and-select" function
-               (:user-visible-flag t
-                :arguments ("unmark"))
-                nil [395681 396427])
-            ("gnus-summary-kill-same-subject" function
-               (:user-visible-flag t
-                :arguments ("unmark"))
-                nil [396429 397046])
-            ("gnus-summary-mark-same-subject" function (:arguments ("subject" "unmark")) nil [397048 398124])
-            ("gnus-summary-mark-as-processable" function
-               (:user-visible-flag t
-                :arguments ("n" "unmark"))
-                nil [398126 399054])
-            ("gnus-summary-unmark-as-processable" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [399056 399342])
-            ("gnus-summary-unmark-all-processable" function (:user-visible-flag t) nil [399344 399617])
-            ("gnus-summary-add-mark" function (:arguments ("article" "type")) nil [399619 400196])
-            ("gnus-summary-mark-as-expirable" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [400198 400475])
-            ("gnus-summary-mark-as-spam" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [400477 400739])
-            ("gnus-summary-mark-article-as-replied" function
-               (:user-visible-flag t
-                :arguments ("article"))
-                nil [400741 401294])
-            ("gnus-summary-mark-article-as-forwarded" function (:arguments ("article")) nil [401296 401728])
-            ("gnus-summary-set-bookmark" function
-               (:user-visible-flag t
-                :arguments ("article"))
-                nil [401730 402555])
-            ("gnus-summary-remove-bookmark" function
-               (:user-visible-flag t
-                :arguments ("article"))
-                nil [402557 402953])
-            ("gnus-summary-mark-as-dormant" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [403006 403277])
-            ("gnus-summary-set-process-mark" function (:arguments ("article")) nil [403279 403657])
-            ("gnus-summary-remove-process-mark" function (:arguments ("articles")) nil [403659 404074])
-            ("gnus-summary-set-saved-mark" function (:arguments ("article")) nil [404076 404318])
-            ("gnus-summary-mark-forward" function
-               (:user-visible-flag t
-                :arguments ("n" "mark" "no-expire"))
-                nil [404320 405395])
-            ("gnus-summary-mark-article-as-read" function (:arguments ("mark")) nil [405397 406564])
-            ("gnus-summary-mark-article-as-unread" function (:arguments ("mark")) nil [406566 408454])
-            ("gnus-summary-mark-article" function (:arguments ("article" "mark" "no-expire")) nil [408456 410309])
-            ("gnus-summary-update-secondary-mark" function (:arguments ("article")) nil [410311 411003])
-            ("gnus-summary-update-download-mark" function (:arguments ("article")) nil [411005 411354])
-            ("gnus-summary-update-mark" function (:arguments ("mark" "type")) nil [411356 412206])
-            ("gnus-mark-article-as-read" function (:arguments ("article" "mark")) nil [412208 413114])
-            ("gnus-mark-article-as-unread" function (:arguments ("article" "mark")) nil [413116 414426])
-            ("gnus-summary-tick-article-forward" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [414428 414686])
-            ("gnus-summary-tick-article-backward" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [414688 414910])
-            ("gnus-summary-tick-article" function
-               (:user-visible-flag t
-                :arguments ("article" "clear-mark"))
-                nil [414912 415265])
-            ("gnus-summary-mark-as-read-forward" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [415267 415567])
-            ("gnus-summary-mark-as-read-backward" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [415569 415840])
-            ("gnus-summary-mark-as-read" function (:arguments ("article" "mark")) nil [415842 416098])
-            ("gnus-summary-clear-mark-forward" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [416100 416365])
-            ("gnus-summary-clear-mark-backward" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [416367 416596])
-            ("gnus-summary-mark-unread-as-read" function nil nil [416598 416822])
-            ("gnus-summary-mark-read-and-unread-as-read" function (:arguments ("new-mark")) nil [416824 417154])
-            ("gnus-summary-mark-current-read-and-unread-as-read" function (:arguments ("new-mark")) nil [417156 417503])
-            ("gnus-summary-mark-unread-as-ticked" function nil nil [417505 417733])
-            ("gnus-summary-mark-region-as-read" function
-               (:user-visible-flag t
-                :arguments ("point" "mark" "all"))
-                nil [417735 418315])
-            ("gnus-summary-mark-below" function
-               (:user-visible-flag t
-                :arguments ("score" "mark"))
-                nil [418317 418755])
-            ("gnus-summary-kill-below" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [418757 418927])
-            ("gnus-summary-clear-above" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [418929 419108])
-            ("gnus-summary-tick-above" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [419110 419276])
-            ("gnus-summary-mark-above" function
-               (:user-visible-flag t
-                :arguments ("score" "mark"))
-                nil [419278 419721])
-            ("defalias" code nil nil [419774 419853])
-            ("gnus-summary-limit-include-expunged" function
-               (:user-visible-flag t
-                :arguments ("no-error"))
-                nil [419854 420754])
-            ("gnus-summary-catchup" function
-               (:user-visible-flag t
-                :arguments ("all" "quietly" "to-here" "not-mark" "reverse"))
-                nil [420756 422893])
-            ("gnus-summary-catchup-to-here" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [422895 423329])
-            ("gnus-summary-catchup-from-here" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [423331 423788])
-            ("gnus-summary-catchup-all" function
-               (:user-visible-flag t
-                :arguments ("quietly"))
-                nil [423790 424069])
-            ("gnus-summary-catchup-and-exit" function
-               (:user-visible-flag t
-                :arguments ("all" "quietly"))
-                nil [424071 424591])
-            ("gnus-summary-catchup-all-and-exit" function
-               (:user-visible-flag t
-                :arguments ("quietly"))
-                nil [424593 424914])
-            ("gnus-summary-catchup-and-goto-next-group" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [424916 425222])
-            ("gnus-summary-catchup-and-goto-prev-group" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [425224 425544])
-            ("gnus-with-article" function (:arguments ("article" "forms")) nil [425572 426549])
-            ("put" code nil nil [426551 426599])
-            ("put" code nil nil [426600 426655])
-            ("gnus-summary-articles-in-thread" function (:arguments ("article")) nil [426684 428113])
-            ("gnus-summary-rethread-current" function (:user-visible-flag t) nil [428115 428560])
-            ("gnus-summary-reparent-thread" function (:user-visible-flag t) nil [428562 429433])
-            ("gnus-summary-reparent-children" function
-               (:user-visible-flag t
-                :arguments ("parent" "children"))
-                nil [429435 430814])
-            ("gnus-summary-toggle-threads" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [430816 431355])
-            ("gnus-summary-show-all-threads" function (:user-visible-flag t) nil [431357 431532])
-            ("gnus-summary--inv" function (:arguments ("p")) nil [431534 431624])
-            ("gnus-summary-show-thread" function (:user-visible-flag t) nil [431626 432171])
-            ("gnus-summary-maybe-hide-threads" function nil nil [432173 432524])
-            ("gnus-article-unread-p" function (:arguments ("header")) nil [432550 432648])
-            ("gnus-article-unseen-p" function (:arguments ("header")) nil [432650 432747])
-            ("gnus-map-articles" function (:arguments ("predicate" "articles")) nil [432749 433005])
-            ("gnus-summary-hide-all-threads" function
-               (:user-visible-flag t
-                :arguments ("predicate"))
-                nil [433007 433642])
-            ("gnus-summary-hide-thread" function (:user-visible-flag t) nil [433644 434755])
-            ("gnus-summary-go-to-next-thread" function (:arguments ("previous")) nil [434757 435334])
-            ("gnus-summary-next-thread" function
-               (:user-visible-flag t
-                :arguments ("n" "silent"))
-                nil [435336 435871])
-            ("gnus-summary-prev-thread" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [435873 436083])
-            ("gnus-summary-go-down-thread" function nil nil [436085 436290])
-            ("gnus-summary-go-up-thread" function nil nil [436292 436479])
-            ("gnus-summary-down-thread" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [436481 436930])
-            ("gnus-summary-up-thread" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [436932 437156])
-            ("gnus-summary-top-thread" function (:user-visible-flag t) nil [437158 437311])
-            ("gnus-summary-expire-thread" function (:user-visible-flag t) nil [437313 437448])
-            ("gnus-summary-kill-thread" function
-               (:user-visible-flag t
-                :arguments ("unmark"))
-                nil [437450 438732])
-            ("gnus-summary-sort-by-number" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [438763 438961])
-            ("gnus-summary-sort-by-most-recent-number" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [438963 439197])
-            ("gnus-summary-sort-by-random" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [439199 439413])
-            ("gnus-summary-sort-by-author" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [439415 439687])
-            ("gnus-summary-sort-by-recipient" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [439689 439970])
-            ("gnus-summary-sort-by-subject" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [439972 440263])
-            ("gnus-summary-sort-by-date" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [440265 440449])
-            ("gnus-summary-sort-by-most-recent-date" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [440451 440671])
-            ("gnus-summary-sort-by-score" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [440673 440860])
-            ("gnus-summary-sort-by-lines" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [440862 441063])
-            ("gnus-summary-sort-by-chars" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [441065 441261])
-            ("gnus-summary-sort-by-mark" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [441263 441457])
-            ("gnus-summary-sort-by-original" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [441459 441856])
-            ("gnus-summary-sort" function (:arguments ("predicate" "reverse")) nil [441858 442622])
-            ("gnus-summary-save-article" function
-               (:user-visible-flag t
-                :arguments ("n" "not-saved"))
-                nil [442653 444860])
-            ("declare-function" code nil nil [444862 444941])
-            ("gnus-summary-pipe-output" function
-               (:user-visible-flag t
-                :arguments ("n" "sym"))
-                nil [444943 447618])
-            ("gnus-summary-save-article-mail" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [447620 448082])
-            ("gnus-summary-save-article-rmail" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [448084 448541])
-            ("gnus-summary-save-article-file" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [448543 448991])
-            ("gnus-summary-write-article-file" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [448993 449470])
-            ("gnus-summary-save-article-body-file" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [449472 449935])
-            ("gnus-summary-write-article-body-file" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [449937 450429])
-            ("gnus-summary-muttprint" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [450431 450883])
-            ("gnus-summary-pipe-message" function
-               (:user-visible-flag t
-                :arguments ("program"))
-                nil [450885 451323])
-            ("gnus-get-split-value" function (:arguments ("methods")) nil [451325 452366])
-            ("gnus-valid-move-group-p" function (:arguments ("group")) nil [452368 452616])
-            ("gnus-read-move-group-name" function (:arguments ("prompt" "default" "articles" "prefix")) nil [452618 454367])
-            ("gnus-summary-save-parts-counter" variable nil nil [454369 454409])
-            ("declare-function" code nil nil [454410 454481])
-            ("gnus-summary-save-parts" function
-               (:user-visible-flag t
-                :arguments ("type" "dir" "n" "reverse"))
-                nil [454483 455744])
-            ("gnus-summary-save-parts-1" function (:arguments ("type" "dir" "handle" "reverse")) nil [455746 456510])
-            ("gnus-summary-insert-pseudos" function (:arguments ("pslist" "not-view")) nil [456541 458850])
-            ("gnus-pseudos<" function (:arguments ("p1" "p2")) nil [458852 458982])
-            ("gnus-request-pseudo-article" function (:arguments ("props")) nil [458984 459221])
-            ("gnus-execute-command" function (:arguments ("command" "automatic")) nil [459223 459774])
-            ("gnus-summary-edit-global-kill" function
-               (:user-visible-flag t
-                :arguments ("article"))
-                nil [459803 459978])
-            ("gnus-summary-edit-local-kill" function (:user-visible-flag t) nil [459980 460240])
-            ("gnus-read-header" function (:arguments ("id" "header")) nil [460263 462825])
-            ("gnus-remove-header" function (:arguments ("number")) nil [462827 463265])
-            ("gnus-highlight-selected-summary" function nil nil [463299 464353])
-            ("gnus-summary-highlight-line-cached" variable nil nil [464355 464402])
-            ("gnus-summary-highlight-line-trigger" variable nil nil [464403 464451])
-            ("gnus-summary-highlight-line-0" function nil nil [464453 465137])
-            ("gnus-summary-highlight-line" function nil nil [465139 466257])
-            ("gnus-update-read-articles" function (:arguments ("group" "unread" "compute")) nil [466259 468813])
-            ("gnus-offer-save-summaries" function nil nil [468815 469795])
-            ("gnus-summary-setup-default-charset" function nil nil [469797 470484])
-            ("gnus-summary-display-buttonized" function
-               (:user-visible-flag t
-                :arguments ("show-all-parts"))
-                nil [470513 470912])
-            ("gnus-summary-repair-multipart" function
-               (:user-visible-flag t
-                :arguments ("article"))
-                nil [470914 471632])
-            ("gnus-summary-toggle-display-buttonized" function (:user-visible-flag t) nil [471634 471970])
-            ("gnus-summary-marking-alist" variable (:default-value (quote ((read gnus-del-mark "d") (unread gnus-unread-mark "u") (ticked gnus-ticked-mark "!") (dormant gnus-dormant-mark "?") (expirable gnus-expirable-mark "e")))) nil [472018 472267])
-            ("gnus-summary-generic-mark-map" variable (:default-value (make-sparse-keymap)) nil [472269 472328])
-            ("gnus-summary-mark-map" variable nil nil [472329 472359])
-            ("gnus-summary-make-all-marking-commands" function nil nil [472361 472578])
-            ("gnus-summary-make-marking-command" function (:arguments ("name" "mark" "keystroke")) nil [472580 473110])
-            ("gnus-summary-make-marking-command-1" function (:arguments ("mark" "way" "lway" "name")) nil [473112 473667])
-            ("gnus-summary-generic-mark" function (:arguments ("n" "mark" "move" "unread")) nil [473669 474418])
-            ("gnus-summary-insert-articles" function (:arguments ("articles")) nil [474420 476318])
-            ("gnus-summary-insert-old-articles" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [476320 478621])
-            ("gnus-summary-insert-new-articles" function (:user-visible-flag t) nil [478623 479453])
-            ("declare-function" code nil nil [479486 479544])
-            ("declare-function" code nil nil [479545 479657])
-            ("declare-function" code nil nil [479658 479721])
-            ("declare-function" code nil nil [479722 479782])
-            ("declare-function" code nil nil [479783 479847])
-            ("bookmark-yank-point" variable nil nil [479848 479876])
-            ("bookmark-current-buffer" variable nil nil [479877 479909])
-            ("gnus-summary-bookmark-make-record" function nil nil [479911 481188])
-            ("gnus-summary-bookmark-jump" function (:arguments ("bookmark")) nil [481205 482228])
-            ("gnus-summary-make-all-marking-commands" code nil nil [482230 482270])
-            ("gnus-sum" package nil nil [482272 482291])
-            ("run-hooks" code nil nil [482293 482324]))          
-      :file "gnus-sum.el"
-      :pointmax 482398
-      :fsize 482398
-      :lastmodtime '(23525 29554 0 0)
-      :unmatched-syntax '((close-paren 60472 . 60473) (symbol 60265 . 60282) (open-paren 60264 . 60265) (close-paren 914 . 915) (symbol 883 . 900) (open-paren 882 . 883)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [903 916])
-            ("tool-bar-mode" variable nil nil [918 940])
-            ("gnus" include nil nil [942 957])
-            ("gnus-start" include nil nil [958 979])
-            ("nnmail" include nil nil [980 997])
-            ("gnus-spec" include nil nil [998 1018])
-            ("gnus-int" include nil nil [1019 1038])
-            ("gnus-range" include nil nil [1039 1060])
-            ("gnus-win" include nil nil [1061 1080])
-            ("gnus-undo" include nil nil [1081 1101])
-            ("gmm-utils" include nil nil [1102 1122])
-            ("time-date" include nil nil [1123 1143])
-            ("unless" code nil nil [1259 1344])
-            ("let" code nil nil [1186 1256])
-            ("mm-url" include nil nil [1166 1183])
-            ("gnus-agent-total-fetched-for" function (:prototype-flag t) nil [1347 1400])
-            ("gnus-cache-total-fetched-for" function (:prototype-flag t) nil [1401 1454])
-            ("gnus-group-make-nnir-group" function (:prototype-flag t) nil [1456 1501])
-            ("gnus-cloud-upload-all-data" function (:prototype-flag t) nil [1503 1554])
-            ("gnus-cloud-download-all-data" function (:prototype-flag t) nil [1555 1608])
-            ("gnus-no-groups-message" variable (:default-value "No news is good news") nil [1610 1764])
-            ("gnus-keep-same-level" variable nil nil [1766 2506])
-            ("gnus-group-goto-unread" variable (:default-value t) nil [2508 2724])
-            ("gnus-goto-next-group-when-activating" variable (:default-value t) nil [2726 3005])
-            ("gnus-permanently-visible-groups" variable nil nil [3007 3337])
-            ("gnus-safe-html-newsgroups" variable (:default-value "\\`nnrss[+:]") nil [3339 3862])
-            ("gnus-list-groups-with-ticked-articles" variable (:default-value t) nil [3864 4073])
-            ("gnus-group-default-list-level" variable (:default-value gnus-level-subscribed) nil [4075 4352])
-            ("gnus-group-list-inactive-groups" variable (:default-value t) nil [4354 4521])
-            ("gnus-group-sort-function" variable (:default-value (quote gnus-group-sort-by-alphabet)) nil [4523 5853])
-            ("gnus-group-line-format" variable (:default-value "%M%S%p%P%5y:%B%(%g%)
-") nil [5855 8526])
-            ("gnus-group-mode-line-format" variable (:default-value "Gnus: %%b {%M%:%S}") nil [8528 8868])
-            ("gnus-group-menu-hook" variable nil nil [8870 9005])
-            ("gnus-group-catchup-group-hook" variable nil nil [9007 9200])
-            ("gnus-group-update-group-hook" variable nil nil [9202 9331])
-            ("gnus-group-prepare-function" variable (:default-value (quote gnus-group-prepare-flat)) nil [9333 9886])
-            ("gnus-group-prepare-hook" variable nil nil [9888 10092])
-            ("gnus-suspend-gnus-hook" variable nil nil [10094 10218])
-            ("gnus-exit-gnus-hook" variable nil nil [10220 10324])
-            ("gnus-after-exiting-gnus-hook" variable nil nil [10326 10440])
-            ("gnus-group-update-hook" variable nil nil [10442 10586])
-            ("gnus-useful-groups" variable (:default-value (quote (("(ding) mailing list mirrored at gmane.org" "gmane.emacs.gnus.general" (nntp "Gmane" (nntp-address "news.gmane.org"))) ("Gnus bug archive" "gnus.gnus-bug" (nntp "news.gnus.org" (nntp-address "news.gnus.org"))) ("Local Gnus help group" "gnus-help" (nndoc "gnus-help" (nndoc-article-type mbox) (eval (\` (nndoc-address (\, (let ((file (nnheader-find-etc-directory "gnus-tut.txt" t))) (unless file (error "Couldn't find doc group")) file)))))))))) nil [10588 11330])
-            ("gnus-group-highlight" variable (:default-value (quote (((and mailp (= unread 0) (eq level 1)) . gnus-group-mail-1-empty) ((and mailp (eq level 1)) . gnus-group-mail-1) ((and mailp (= unread 0) (eq level 2)) . gnus-group-mail-2-empty) ((and mailp (eq level 2)) . gnus-group-mail-2) ((and mailp (= unread 0) (eq level 3)) . gnus-group-mail-3-empty) ((and mailp (eq level 3)) . gnus-group-mail-3) ((and mailp (= unread 0)) . gnus-group-mail-low-empty) ((and mailp) . gnus-group-mail-low) ((and (= unread 0) (eq level 1)) . gnus-group-news-1-empty) ((and (eq level 1)) . gnus-group-news-1) ((and (= unread 0) (eq level 2)) . gnus-group-news-2-empty) ((and (eq level 2)) . gnus-group-news-2) ((and (= unread 0) (eq level 3)) . gnus-group-news-3-empty) ((and (eq level 3)) . gnus-group-news-3) ((and (= unread 0) (eq level 4)) . gnus-group-news-4-empty) ((and (eq level 4)) . gnus-group-news-4) ((and (= unread 0) (eq level 5)) . gnus-group-news-5-empty) ((and (eq level 5)) . gnus-group-news-5) ((and (= unread 0) (eq level 6)) . gnus-group-news-6-empty) ((and (eq level 6)) . gnus-group-news-6) ((and (= unread 0)) . gnus-group-news-low-empty) (t . gnus-group-news-low)))) nil [11332 13598])
-            ("put" code nil nil [13599 13650])
-            ("gnus-new-mail-mark" variable (:default-value 37) nil [13652 13772])
-            ("gnus-group-icons" customgroup (:user-visible-flag t) nil [13774 13869])
-            ("gnus-group-icon-list" variable nil nil [13871 14924])
-            ("put" code nil nil [14925 14976])
-            ("gnus-group-name-charset-method-alist" variable nil nil [14978 15252])
-            ("gnus-group-name-charset-group-alist" variable (:default-value (if (mm-coding-system-p (quote utf-8)) (quote ((".*" . utf-8))) nil)) nil [15254 15573])
-            ("gnus-group-jump-to-group-prompt" variable nil nil [15575 16286])
-            ("gnus-group-listing-limit" variable (:default-value 1000) nil [16288 16505])
-            ("gnus-group-is-exiting-p" variable nil nil [16531 16567])
-            ("gnus-group-is-exiting-without-update-p" variable nil nil [16568 16619])
-            ("gnus-group-sort-alist-function" variable (:default-value (quote gnus-group-sort-flat)) nil [16620 16724])
-            ("gnus-group-sort-selected-function" variable (:default-value (quote gnus-group-sort-selected-flat)) nil [16726 16865])
-            ("gnus-group-indentation-function" variable nil nil [16867 16911])
-            ("gnus-goto-missing-group-function" variable nil nil [16912 16957])
-            ("gnus-group-update-group-function" variable nil nil [16958 17003])
-            ("gnus-group-goto-next-group-function" variable nil nil [17004 17122])
-            ("gnus-group-edit-buffer" variable nil nil [17124 17159])
-            ("gnus-tmp-news-method" variable nil nil [17161 17190])
-            ("gnus-tmp-colon" variable nil nil [17191 17214])
-            ("gnus-tmp-news-server" variable nil nil [17215 17244])
-            ("gnus-tmp-decoded-group" variable nil nil [17245 17276])
-            ("gnus-tmp-header" variable nil nil [17277 17301])
-            ("gnus-tmp-process-marked" variable nil nil [17302 17334])
-            ("gnus-tmp-summary-live" variable nil nil [17335 17365])
-            ("gnus-tmp-news-method-string" variable nil nil [17366 17402])
-            ("gnus-tmp-group-icon" variable nil nil [17403 17431])
-            ("gnus-tmp-moderated-string" variable nil nil [17432 17466])
-            ("gnus-tmp-newsgroup-description" variable nil nil [17467 17506])
-            ("gnus-tmp-comment" variable nil nil [17507 17532])
-            ("gnus-tmp-qualified-group" variable nil nil [17533 17566])
-            ("gnus-tmp-subscribed" variable nil nil [17567 17595])
-            ("gnus-tmp-number-of-read" variable nil nil [17596 17628])
-            ("gnus-inhibit-demon" variable nil nil [17629 17656])
-            ("gnus-pick-mode" variable nil nil [17657 17680])
-            ("gnus-tmp-marked-mark" variable nil nil [17681 17710])
-            ("gnus-tmp-number-of-unread" variable nil nil [17711 17745])
-            ("gnus-group-line-format-alist" variable (:default-value (\` ((77 gnus-tmp-marked-mark 99) (83 gnus-tmp-subscribed 99) (76 gnus-tmp-level 100) (78 (cond ((eq number t) "*") ((numberp number) (int-to-string (+ number (gnus-range-length (cdr (assq (quote dormant) gnus-tmp-marked))) (gnus-range-length (cdr (assq (quote tick) gnus-tmp-marked)))))) (t number)) 115) (82 gnus-tmp-number-of-read 115) (85 (if (gnus-active gnus-tmp-group) (gnus-number-of-unseen-articles-in-group gnus-tmp-group) "*") 115) (116 gnus-tmp-number-total 100) (121 gnus-tmp-number-of-unread 115) (73 (gnus-range-length (cdr (assq (quote dormant) gnus-tmp-marked))) 100) (84 (gnus-range-length (cdr (assq (quote tick) gnus-tmp-marked))) 100) (105 (+ (gnus-range-length (cdr (assq (quote dormant) gnus-tmp-marked))) (gnus-range-length (cdr (assq (quote tick) gnus-tmp-marked)))) 100) (103 (if (boundp (quote gnus-tmp-decoded-group)) gnus-tmp-decoded-group gnus-tmp-group) 115) (71 gnus-tmp-qualified-group 115) (99 (gnus-short-group-name (if (boundp (quote gnus-tmp-decoded-group)) gnus-tmp-decoded-group gnus-tmp-group)) 115) (67 gnus-tmp-comment 115) (68 gnus-tmp-newsgroup-description 115) (111 gnus-tmp-moderated 99) (79 gnus-tmp-moderated-string 115) (112 gnus-tmp-process-marked 99) (115 gnus-tmp-news-server 115) (110 gnus-tmp-news-method 115) (80 gnus-group-indentation 115) (69 gnus-tmp-group-icon 115) (66 gnus-tmp-summary-live 99) (122 gnus-tmp-news-method-string 115) (109 (gnus-group-new-mail gnus-tmp-group) 99) (100 (gnus-group-timestamp-string gnus-tmp-group) 115) (117 gnus-tmp-user-defined 115) (70 (gnus-total-fetched-for gnus-tmp-group) 115)))) nil [17747 19455])
-            ("gnus-group-mode-line-format-alist" variable (:default-value (\` ((83 gnus-tmp-news-server 115) (77 gnus-tmp-news-method 115) (117 gnus-tmp-user-defined 115) (58 gnus-tmp-colon 115)))) nil [19457 19627])
-            ("gnus-topic-topology" variable nil nil [19629 19695])
-            ("gnus-topic-alist" variable nil nil [19697 19762])
-            ("gnus-group-marked" variable nil nil [19764 19794])
-            ("gnus-group-list-mode" variable nil nil [19796 19829])
-            ("gnus-group-listed-groups" variable nil nil [19832 19869])
-            ("gnus-group-list-option" variable nil nil [19870 19905])
-            ("put" code nil nil [19936 19979])
-            ("gnus-define-keys" code nil nil [19981 22273])
-            ("gnus-define-keys" code nil nil [22275 22477])
-            ("gnus-define-keys" code nil nil [22479 22723])
-            ("gnus-define-keys" code nil nil [22725 22840])
-            ("gnus-define-keys" code nil nil [22842 23631])
-            ("gnus-define-keys" code nil nil [23633 24001])
-            ("gnus-define-keys" code nil nil [24003 24452])
-            ("gnus-define-keys" code nil nil [24454 24912])
-            ("gnus-define-keys" code nil nil [24914 25303])
-            ("gnus-define-keys" code nil nil [25305 25694])
-            ("gnus-define-keys" code nil nil [25696 26073])
-            ("gnus-define-keys" code nil nil [26075 26201])
-            ("gnus-define-keys" code nil nil [26203 26318])
-            ("gnus-define-keys" code nil nil [26320 26646])
-            ("gnus-topic-mode-p" function nil nil [26648 26790])
-            ("gnus-group-make-menu-bar" function nil nil [26792 35869])
-            ("gnus-group-tool-bar-map" variable nil nil [35872 35908])
-            ("gnus-group-tool-bar-update" function (:arguments ("symbol" "value")) nil [35910 36279])
-            ("gnus-group-tool-bar" variable (:default-value (if (eq gmm-tool-bar-style (quote gnome)) (quote gnus-group-tool-bar-gnome) (quote gnus-group-tool-bar-retro))) nil [36281 37025])
-            ("gnus-group-tool-bar-gnome" variable (:default-value (quote ((gnus-group-post-news "mail/compose") (gnus-agent-toggle-plugged "unplugged" t :help "Gnus is currently unplugged.  Click to work online." :visible (and gnus-agent (not gnus-plugged))) (gnus-agent-toggle-plugged "plugged" t :help "Gnus is currently plugged.  Click to work offline." :visible (and gnus-agent gnus-plugged)) (gnus-group-send-queue "mail/outbox" t :visible (and gnus-agent gnus-plugged) :help "Send articles from the queue group") (gnus-group-get-new-news "mail/inbox" nil :visible (or (not gnus-agent) gnus-plugged)) (gnus-topic-read-group "open" nil :visible (and (boundp (quote gnus-topic-mode)) gnus-topic-mode)) (gnus-group-read-group "open" nil :visible (not (and (boundp (quote gnus-topic-mode)) gnus-topic-mode))) (gnus-group-save-newsrc "save") (gnus-group-describe-group "describe") (gnus-group-unsubscribe-current-group "gnus/toggle-subscription") (gnus-group-prev-unread-group "left-arrow") (gnus-group-next-unread-group "right-arrow") (gnus-group-exit "exit") (gmm-customize-mode "preferences" t :help "Edit mode preferences") (gnus-info-find-node "help")))) nil [37027 38914])
-            ("gnus-group-tool-bar-retro" variable (:default-value (quote ((gnus-group-get-new-news "gnus/get-news") (gnus-group-get-new-news-this-group "gnus/gnntg") (gnus-group-catchup-current "gnus/catchup") (gnus-group-describe-group "gnus/describe-group") (gnus-group-subscribe "gnus/subscribe" t :help "Subscribe to the current group") (gnus-group-unsubscribe "gnus/unsubscribe" t :help "Unsubscribe from the current group") (gnus-group-exit "gnus/exit-gnus" gnus-group-mode-map)))) nil [38916 39684])
-            ("gnus-group-tool-bar-zap-list" variable (:default-value t) nil [39686 40055])
-            ("image-load-path" variable nil nil [40057 40081])
-            ("tool-bar-map" variable nil nil [40082 40103])
-            ("gnus-group-make-tool-bar" function (:arguments ("force")) nil [40105 40770])
-            ("define-derived-mode" code nil nil [40772 41981])
-            ("gnus-update-group-mark-positions" function nil nil [41983 42539])
-            ("gnus-mouse-pick-group" function
-               (:user-visible-flag t
-                :arguments ("e"))
-                nil [42541 42691])
-            ("gnus-group-default-list-level" function nil nil [42693 42925])
-            ("gnus-group-default-level" function (:arguments ("level" "number-or-nil")) nil [43136 43631])
-            ("gnus-group-setup-buffer" function nil nil [43633 43792])
-            ("gnus-group-name-charset" function (:arguments ("method" "group")) nil [43794 44543])
-            ("gnus-group-name-decode" function (:arguments ("string" "charset")) nil [44545 44717])
-            ("gnus-group-decoded-name" function (:arguments ("string")) nil [44719 44860])
-            ("gnus-group-list-groups" function
-               (:user-visible-flag t
-                :arguments ("level" "unread" "lowest"))
-                nil [44862 47215])
-            ("gnus-group-list-level" function
-               (:user-visible-flag t
-                :arguments ("level" "all"))
-                nil [47217 47450])
-            ("gnus-group-prepare-logic" function (:arguments ("group" "test")) nil [47452 47845])
-            ("gnus-group-prepare-flat" function (:arguments ("level" "predicate" "lowest" "regexp")) nil [47847 50910])
-            ("gnus-group-prepare-flat-list-dead" function (:arguments ("groups" "level" "mark" "regexp")) nil [50912 52237])
-            ("gnus-group-update-group-line" function nil nil [52239 52927])
-            ("gnus-group-insert-group-line-info" function (:arguments ("group")) nil [52929 53715])
-            ("gnus-number-of-unseen-articles-in-group" function (:arguments ("group")) nil [53717 54088])
-            ("gnus-group-update-tool-bar" variable (:default-value (and (boundp (quote tool-bar-mode)) tool-bar-mode)) nil [54764 55225])
-            ("gnus-group-insert-group-line" function (:arguments ("gnus-tmp-group" "gnus-tmp-level" "gnus-tmp-marked" "number" "gnus-tmp-method")) nil [55227 58429])
-            ("gnus-group--setup-tool-bar-update" function (:arguments ("beg" "end")) nil [58431 58987])
-            ("gnus-group-update-eval-form" function (:arguments ("group" "list")) nil [58989 60167])
-            ("gnus-group-highlight-line" function (:arguments ("group" "beg" "end")) nil [60169 60767])
-            ("gnus-group-get-icon" function (:arguments ("group")) nil [60769 61261])
-            ("gnus-group-refresh-group" function (:arguments ("group")) nil [61264 61457])
-            ("gnus-group-update-group" function (:arguments ("group" "visible-only" "info-unchanged")) nil [61459 64315])
-            ("gnus-group-set-mode-line" function nil nil [64317 65599])
-            ("gnus-group-group-name" function nil nil [65601 65827])
-            ("gnus-group-group-level" function nil nil [65829 65967])
-            ("gnus-group-group-indentation" function nil nil [65969 66229])
-            ("gnus-group-group-unread" function nil nil [66231 66391])
-            ("gnus-group-new-mail" function (:arguments ("group")) nil [66393 66516])
-            ("gnus-group-level" function (:arguments ("group")) nil [66518 66724])
-            ("gnus-group-search-forward" function (:arguments ("backward" "all" "level" "first-too")) nil [66726 68057])
-            ("gnus-total-fetched-for" function (:arguments ("group")) nil [68059 68462])
-            ("gnus-group-mark-line-p" function nil nil [68513 68703])
-            ("gnus-group-mark-group" function
-               (:user-visible-flag t
-                :arguments ("n" "unmark" "no-advance"))
-                nil [68705 69425])
-            ("gnus-group-unmark-group" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [69427 69592])
-            ("gnus-group-unmark-all-groups" function (:user-visible-flag t) nil [69594 69774])
-            ("gnus-group-mark-region" function
-               (:user-visible-flag t
-                :arguments ("unmark" "beg" "end"))
-                nil [69776 70056])
-            ("gnus-group-mark-buffer" function
-               (:user-visible-flag t
-                :arguments ("unmark"))
-                nil [70058 70256])
-            ("gnus-group-mark-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [70258 70636])
-            ("gnus-group-remove-mark" function (:arguments ("group" "test-marked")) nil [70638 70989])
-            ("gnus-group-set-mark" function (:arguments ("group")) nil [70991 71229])
-            ("gnus-group-universal-argument" function
-               (:user-visible-flag t
-                :arguments ("arg" "groups" "func"))
-                nil [71231 71730])
-            ("gnus-group-process-prefix" function (:arguments ("n")) nil [71732 72881])
-            ("let" code nil nil [73024 73783])
-            ("put" code nil nil [73786 73835])
-            ("gnus-group-read-group" function
-               (:user-visible-flag t
-                :arguments ("all" "no-article" "group" "select-articles"))
-                nil [73859 75216])
-            ("gnus-group-select-group" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [75218 75740])
-            ("gnus-group-quick-select-group" function
-               (:user-visible-flag t
-                :arguments ("all" "group"))
-                nil [75742 76307])
-            ("gnus-group-visible-select-group" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [76309 76512])
-            ("gnus-group-select-group-ephemerally" function (:user-visible-flag t) nil [76514 77180])
-            ("gnus-group-name-at-point" function nil nil [77182 78744])
-            ("gnus-group-completing-read" function (:arguments ("prompt" "collection" "require-match" "initial-input" "hist" "def")) nil [78746 80103])
-            ("gnus-fetch-group" function
-               (:user-visible-flag t
-                :arguments ("group" "articles"))
-                nil [80120 80522])
-            ("gnus-fetch-group-other-frame" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [80539 80876])
-            ("gnus-large-ephemeral-newsgroup" variable (:default-value 200) nil [80878 81339])
-            ("gnus-fetch-old-ephemeral-headers" variable nil nil [81341 81604])
-            ("gnus-group-read-ephemeral-group" function
-               (:user-visible-flag t
-                :arguments ("group" "method" "activate" "quit-config" "request-only" "select-articles" "parameters" "number"))
-                nil [81709 84551])
-            ("gnus-gmane-group-download-format" variable (:default-value "http://download.gmane.org/%s/%s/%s") nil [84553 84862])
-            ("url-insert-file-contents" function (:prototype-flag t) nil [84864 84915])
-            ("gnus-read-ephemeral-gmane-group" function
-               (:user-visible-flag t
-                :arguments ("group" "start" "range"))
-                nil [84975 86258])
-            ("gnus-read-ephemeral-gmane-group-url" function
-               (:user-visible-flag t
-                :arguments ("url"))
-                nil [86260 88257])
-            ("gnus-bug-group-download-format-alist" variable (:default-value (quote ((emacs . "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=%s;mboxmaint=yes;mboxstat=yes") (debian . "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s&mbox=yes;mboxmaint=yes")))) nil [88259 88977])
-            ("gnus-read-ephemeral-bug-group" function
-               (:user-visible-flag t
-                :arguments ("ids" "mbox-url" "window-conf"))
-                nil [88979 91062])
-            ("gnus-read-ephemeral-debian-bug-group" function
-               (:user-visible-flag t
-                :arguments ("number"))
-                nil [91064 91363])
-            ("debbugs-gnu-bug-number" variable nil nil [91365 91396])
-            ("gnus-read-ephemeral-emacs-bug-group" function
-               (:user-visible-flag t
-                :arguments ("ids" "window-conf"))
-                nil [91413 92087])
-            ("gnus-group-jump-to-group" function
-               (:user-visible-flag t
-                :arguments ("group" "prompt"))
-                nil [92089 93054])
-            ("gnus-group-goto-group" function (:arguments ("group" "far" "test-marked")) nil [93056 94714])
-            ("gnus-group-next-group" function
-               (:user-visible-flag t
-                :arguments ("n" "silent"))
-                nil [94716 94980])
-            ("gnus-group-next-unread-group" function
-               (:user-visible-flag t
-                :arguments ("n" "all" "level" "silent"))
-                nil [94982 95767])
-            ("gnus-group-prev-group" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [95769 95970])
-            ("gnus-group-prev-unread-group" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [95972 96185])
-            ("gnus-group-next-unread-group-same-level" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [96187 96521])
-            ("gnus-group-prev-unread-group-same-level" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [96523 96818])
-            ("gnus-group-best-unread-group" function
-               (:user-visible-flag t
-                :arguments ("exclude-group"))
-                nil [96820 97623])
-            ("gnus-group-first-unread-group" function (:user-visible-flag t) nil [98207 98721])
-            ("gnus-group-enter-server-mode" function (:user-visible-flag t) nil [98723 98838])
-            ("gnus-group-make-group-simple" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [98840 99107])
-            ("gnus-group-make-group" function
-               (:user-visible-flag t
-                :arguments ("name" "method" "address" "args" "encoded"))
-                nil [99109 101371])
-            ("gnus-group-delete-groups" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [101373 101778])
-            ("gnus-group-delete-articles" function
-               (:user-visible-flag t
-                :arguments ("group" "oldp"))
-                nil [101780 102412])
-            ("gnus-group-delete-group" function
-               (:user-visible-flag t
-                :arguments ("group" "force" "no-prompt"))
-                nil [102414 103781])
-            ("gnus-group-rename-group" function
-               (:user-visible-flag t
-                :arguments ("group" "new-name"))
-                nil [103783 106142])
-            ("gnus-group-edit-group" function
-               (:user-visible-flag t
-                :arguments ("group" "part"))
-                nil [106144 107266])
-            ("gnus-group-edit-group-method" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [107268 107436])
-            ("gnus-group-edit-group-parameters" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [107438 107613])
-            ("gnus-group-edit-group-done" function (:arguments ("part" "group" "form")) nil [107615 108809])
-            ("gnus-group-make-useful-group" function
-               (:user-visible-flag t
-                :arguments ("group" "method"))
-                nil [108811 109507])
-            ("gnus-group-make-help-group" function
-               (:user-visible-flag t
-                :arguments ("noerror"))
-                nil [109509 110471])
-            ("gnus-group-make-doc-group" function
-               (:user-visible-flag t
-                :arguments ("file" "type"))
-                nil [110473 111686])
-            ("nnweb-type-definition" variable nil nil [111688 111718])
-            ("gnus-group-web-type-history" variable nil nil [111719 111759])
-            ("gnus-group-web-search-history" variable nil nil [111760 111802])
-            ("gnus-group-make-web-group" function
-               (:user-visible-flag t
-                :arguments ("solid"))
-                nil [111803 112913])
-            ("nnrss-group-alist" variable nil nil [112915 112941])
-            ("nnrss-save-server-data" function (:arguments ("_arg")) nil [113000 113037])
-            ("nnrss-discover-feed" function (:arguments ("_arg")) nil [112963 112997])
-            ("gnus-group-make-rss-group" function
-               (:user-visible-flag t
-                :arguments ("url"))
-                nil [113039 114274])
-            ("gnus-group-make-directory-group" function
-               (:user-visible-flag t
-                :arguments ("dir"))
-                nil [114276 115130])
-            ("gnus-group-add-to-virtual" function
-               (:user-visible-flag t
-                :arguments ("n" "vgroup"))
-                nil [115132 115853])
-            ("gnus-group-make-empty-virtual" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [115855 116441])
-            ("gnus-group-enter-directory" function
-               (:user-visible-flag t
-                :arguments ("dir"))
-                nil [116443 116978])
-            ("gnus-group-expunge-group" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [116980 117365])
-            ("nnimap-acl-get" function (:prototype-flag t) nil [117367 117402])
-            ("nnimap-acl-edit" function (:prototype-flag t) nil [117403 117439])
-            ("gnus-group-nnimap-edit-acl" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [117441 119362])
-            ("gnus-group-sort-groups" function
-               (:user-visible-flag t
-                :arguments ("func" "reverse"))
-                nil [119450 119952])
-            ("gnus-group-sort-flat" function (:arguments ("func" "reverse")) nil [119954 120407])
-            ("gnus-group-sort-groups-by-alphabet" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [120409 120646])
-            ("gnus-group-sort-groups-by-real-name" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [120648 120905])
-            ("gnus-group-sort-groups-by-unread" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [120907 121140])
-            ("gnus-group-sort-groups-by-level" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [121142 121359])
-            ("gnus-group-sort-groups-by-score" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [121361 121578])
-            ("gnus-group-sort-groups-by-rank" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [121580 121794])
-            ("gnus-group-sort-groups-by-method" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [121796 122032])
-            ("gnus-group-sort-groups-by-server" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [122034 122268])
-            ("gnus-group-sort-selected-groups" function
-               (:user-visible-flag t
-                :arguments ("n" "func" "reverse"))
-                nil [122299 122708])
-            ("gnus-group-sort-selected-flat" function (:arguments ("groups" "func" "reverse")) nil [122710 123383])
-            ("gnus-group-sort-selected-groups-by-alphabet" function
-               (:user-visible-flag t
-                :arguments ("n" "reverse"))
-                nil [123385 123726])
-            ("gnus-group-sort-selected-groups-by-real-name" function
-               (:user-visible-flag t
-                :arguments ("n" "reverse"))
-                nil [123728 124076])
-            ("gnus-group-sort-selected-groups-by-unread" function
-               (:user-visible-flag t
-                :arguments ("n" "reverse"))
-                nil [124078 124415])
-            ("gnus-group-sort-selected-groups-by-level" function
-               (:user-visible-flag t
-                :arguments ("n" "reverse"))
-                nil [124417 124738])
-            ("gnus-group-sort-selected-groups-by-score" function
-               (:user-visible-flag t
-                :arguments ("n" "reverse"))
-                nil [124740 125061])
-            ("gnus-group-sort-selected-groups-by-rank" function
-               (:user-visible-flag t
-                :arguments ("n" "reverse"))
-                nil [125063 125381])
-            ("gnus-group-sort-selected-groups-by-method" function
-               (:user-visible-flag t
-                :arguments ("n" "reverse"))
-                nil [125383 125723])
-            ("gnus-group-sort-by-alphabet" function (:arguments ("info1" "info2")) nil [125750 125884])
-            ("gnus-group-sort-by-real-name" function (:arguments ("info1" "info2")) nil [125886 126098])
-            ("gnus-group-sort-by-unread" function (:arguments ("info1" "info2")) nil [126100 126368])
-            ("gnus-group-sort-by-level" function (:arguments ("info1" "info2")) nil [126370 126489])
-            ("gnus-group-sort-by-method" function (:arguments ("info1" "info2")) nil [126491 126732])
-            ("gnus-group-sort-by-server" function (:arguments ("info1" "info2")) nil [126734 127045])
-            ("gnus-group-sort-by-score" function (:arguments ("info1" "info2")) nil [127047 127172])
-            ("gnus-group-sort-by-rank" function (:arguments ("info1" "info2")) nil [127174 127435])
-            ("gnus-group-clear-data" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [127456 127933])
-            ("gnus-group-clear-data-on-native-groups" function (:user-visible-flag t) nil [127935 128507])
-            ("gnus-info-clear-data" function (:arguments ("info")) nil [128509 129357])
-            ("gnus-group-catchup-current" function
-               (:user-visible-flag t
-                :arguments ("n" "all"))
-                nil [129382 130913])
-            ("gnus-group-catchup-current-all" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [130915 131134])
-            ("declare-function" code nil nil [131136 131206])
-            ("gnus-group-catchup" function (:arguments ("group" "all")) nil [131208 132880])
-            ("gnus-group-expire-articles" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [132882 133337])
-            ("gnus-group-expire-articles-1" function (:arguments ("group")) nil [133339 134704])
-            ("gnus-group-expire-all-groups" function (:user-visible-flag t) nil [134706 135087])
-            ("gnus-group-set-current-level" function
-               (:user-visible-flag t
-                :arguments ("n" "level"))
-                nil [135089 136134])
-            ("gnus-group-unsubscribe" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [136136 136291])
-            ("gnus-group-subscribe" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [136293 136442])
-            ("gnus-group-unsubscribe-current-group" function
-               (:user-visible-flag t
-                :arguments ("n" "do-sub"))
-                nil [136444 137126])
-            ("gnus-group-unsubscribe-group" function
-               (:user-visible-flag t
-                :arguments ("group" "level" "silent"))
-                nil [137128 138379])
-            ("gnus-group-transpose-groups" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [138381 138799])
-            ("gnus-group-kill-all-zombies" function
-               (:user-visible-flag t
-                :arguments ("dummy"))
-                nil [138801 139176])
-            ("gnus-group-kill-region" function
-               (:user-visible-flag t
-                :arguments ("begin" "end"))
-                nil [139178 139676])
-            ("gnus-group-kill-group" function
-               (:user-visible-flag t
-                :arguments ("n" "discard"))
-                nil [139678 141940])
-            ("gnus-group-yank-group" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [141942 143255])
-            ("gnus-group-kill-level" function
-               (:user-visible-flag t
-                :arguments ("level"))
-                nil [143257 144144])
-            ("gnus-group-list-all-groups" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [144146 144422])
-            ("gnus-group-list-killed" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [144547 145117])
-            ("gnus-group-list-zombies" function (:user-visible-flag t) nil [145119 145474])
-            ("gnus-group-list-active" function (:user-visible-flag t) nil [145476 146506])
-            ("gnus-activate-all-groups" function
-               (:user-visible-flag t
-                :arguments ("level"))
-                nil [146508 146741])
-            ("gnus-group-get-new-news" function
-               (:user-visible-flag t
-                :arguments ("arg" "one-level"))
-                nil [146743 147927])
-            ("gnus-group-get-new-news-this-group" function
-               (:user-visible-flag t
-                :arguments ("n" "dont-scan"))
-                nil [147929 149668])
-            ("gnus-group-describe-group" function
-               (:user-visible-flag t
-                :arguments ("force" "group"))
-                nil [149670 150526])
-            ("gnus-group-describe-all-groups" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [150581 151594])
-            ("gnus-group-apropos" function
-               (:user-visible-flag t
-                :arguments ("regexp" "search-description"))
-                nil [151647 153156])
-            ("gnus-group-description-apropos" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [153158 153498])
-            ("gnus-group-list-matching" function
-               (:user-visible-flag t
-                :arguments ("level" "regexp" "all" "lowest"))
-                nil [153553 154302])
-            ("gnus-group-list-all-matching" function
-               (:user-visible-flag t
-                :arguments ("level" "regexp" "lowest"))
-                nil [154304 154757])
-            ("gnus-group-save-newsrc" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [154817 155005])
-            ("gnus-group-restart" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [155007 155254])
-            ("gnus-group-read-init-file" function (:user-visible-flag t) nil [155256 155411])
-            ("gnus-group-check-bogus-groups" function
-               (:user-visible-flag t
-                :arguments ("silent"))
-                nil [155413 155695])
-            ("gnus-group-find-new-groups" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [155697 156376])
-            ("gnus-group-edit-global-kill" function
-               (:user-visible-flag t
-                :arguments ("article" "group"))
-                nil [156378 156759])
-            ("gnus-group-edit-local-kill" function
-               (:user-visible-flag t
-                :arguments ("article" "group"))
-                nil [156761 156936])
-            ("gnus-group-force-update" function (:user-visible-flag t) nil [156938 157041])
-            ("gnus-backlog-articles" variable nil nil [157043 157073])
-            ("gnus-group-suspend" function (:user-visible-flag t) nil [157075 158057])
-            ("gnus-group-clear-dribble" function (:user-visible-flag t) nil [158059 158228])
-            ("gnus-group-exit" function (:user-visible-flag t) nil [158230 158990])
-            ("gnus-group-quit" function (:user-visible-flag t) nil [158992 160032])
-            ("gnus-group-describe-briefly" function (:user-visible-flag t) nil [160034 160444])
-            ("gnus-group-browse-foreign-server" function
-               (:user-visible-flag t
-                :arguments ("method"))
-                nil [160446 161614])
-            ("gnus-group-set-info" function (:arguments ("info" "method-only-group" "part")) nil [161616 163661])
-            ("gnus-import-other-newsrc-file" function (:arguments ("file")) nil [163768 164165])
-            ("gnus-add-marked-articles" function (:arguments ("group" "type" "articles" "info" "force")) nil [164167 165132])
-            ("declare-function" code nil nil [165134 165200])
-            ("gnus-add-mark" function (:arguments ("group" "mark" "article")) nil [165202 165592])
-            ("gnus-group-set-timestamp" function nil nil [165624 165989])
-            ("gnus-group-timestamp" function (:arguments ("group")) nil [165991 166114])
-            ("gnus-group-timestamp-delta" function (:arguments ("group")) nil [166116 166438])
-            ("gnus-group-timestamp-string" function (:arguments ("group")) nil [166440 166632])
-            ("gnus-group-list-cached" function
-               (:user-visible-flag t
-                :arguments ("level" "lowest"))
-                nil [166634 167606])
-            ("gnus-group-list-dormant" function
-               (:user-visible-flag t
-                :arguments ("level" "lowest"))
-                nil [167608 168317])
-            ("gnus-group-list-ticked" function
-               (:user-visible-flag t
-                :arguments ("level" "lowest"))
-                nil [168319 169023])
-            ("gnus-group-listed-groups" function nil nil [169025 169373])
-            ("gnus-group-list-plus" function
-               (:user-visible-flag t
-                :arguments ("args"))
-                nil [169375 169906])
-            ("gnus-group-list-flush" function
-               (:user-visible-flag t
-                :arguments ("args"))
-                nil [169908 170093])
-            ("gnus-group-list-limit" function
-               (:user-visible-flag t
-                :arguments ("args"))
-                nil [170095 170613])
-            ("declare-function" code nil nil [170615 170695])
-            ("declare-function" code nil nil [170696 170772])
-            ("gnus-group-mark-article-read" function (:arguments ("group" "article")) nil [170774 171992])
-            ("gnus-group-compact-group" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [172033 173315])
-            ("gnus-group" package nil nil [173317 173338]))          
-      :file "gnus-group.el"
-      :pointmax 173368
-      :fsize 173367
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax '((close-paren 113037 . 113038) (symbol 112943 . 112960) (open-paren 112942 . 112943) (close-paren 73783 . 73784) (symbol 73005 . 73021) (open-paren 73004 . 73005) (close-paren 1344 . 1345) (symbol 1146 . 1163) (open-paren 1145 . 1146) (close-paren 916 . 917) (symbol 883 . 900) (open-paren 882 . 883)))
-    (semanticdb-table "semanticdb-table"
-      :file "nnmail.el"
-      :fsize 72406
-      :lastmodtime '(23525 29557 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [918 931])
-            ("mm-util" include nil nil [934 952])
-            ("gnus-util" include nil nil [953 973])
-            ("gnus" include nil nil [974 989])
-            ("gnus-face-properties-alist" variable nil nil [991 1026])
-            ("gnus-x-face-directory" variable (:default-value (expand-file-name "x-faces" gnus-directory)) nil [1028 1210])
-            ("gnus-x-face-omit-files" variable nil nil [1212 1392])
-            ("gnus-face-directory" variable (:default-value (expand-file-name "faces" gnus-directory)) nil [1394 1570])
-            ("gnus-face-omit-files" variable nil nil [1572 1748])
-            ("gnus-convert-pbm-to-x-face-command" variable (:default-value "pbmtoxbm %s | compface") nil [1750 1921])
-            ("gnus-convert-image-to-x-face-command" variable (:default-value "convert -scale 48x48! %s xbm:- | xbm2xface.pl") nil [1923 2483])
-            ("gnus-convert-image-to-face-command" variable (:default-value "convert -scale 48x48! %s -colors %d png:-") nil [2485 3097])
-            ("gnus-shell-command-to-string" function (:arguments ("command")) nil [3099 3336])
-            ("gnus--random-face-with-type" function (:arguments ("dir" "ext" "omit" "fun")) nil [3353 3813])
-            ("message-goto-eoh" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [3830 3874])
-            ("message-insert-header" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [3875 3924])
-            ("gnus--insert-random-face-with-type" function (:arguments ("fun" "type")) nil [3926 4358])
-            ("gnus-random-x-face" function (:user-visible-flag t) nil [4377 4881])
-            ("gnus-insert-random-x-face-header" function (:user-visible-flag t) nil [4898 5088])
-            ("gnus-x-face-from-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [5105 5491])
-            ("gnus-face-from-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [5508 6344])
-            ("gnus-face-encode" function nil nil [6346 6705])
-            ("gnus-convert-face-to-png" function (:arguments ("face")) nil [6722 6985])
-            ("gnus-convert-png-to-face" function (:arguments ("file")) nil [7002 7344])
-            ("gnus-random-face" function (:user-visible-flag t) nil [7361 7682])
-            ("gnus-insert-random-face-header" function nil nil [7699 7863])
-            ("gnus-x-face" variable
-               (:default-value (quote ((t (:foreground "black" :background "white"))))
-                :type "face")
-                nil [7865 8092])
-            ("declare-function" code nil nil [8094 8151])
-            ("declare-function" code nil nil [8152 8215])
-            ("declare-function" code nil nil [8216 8287])
-            ("declare-function" code nil nil [8288 8349])
-            ("gnus-display-x-face-in-from" function (:arguments ("data")) nil [8351 9163])
-            ("gnus-grab-cam-x-face" function (:user-visible-flag t) nil [9165 9812])
-            ("gnus-grab-cam-face" function (:user-visible-flag t) nil [9814 10649])
-            ("gnus-fun-ppm-change-string" function nil nil [10651 10998])
-            ("gnus-funcall-no-warning" function (:arguments ("function" "args")) nil [11000 11107])
-            ("gnus-fun" package nil nil [11109 11128]))          
-      :file "gnus-fun.el"
-      :pointmax 11156
-      :fsize 11155
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax '((close-paren 931 . 932) (symbol 898 . 915) (open-paren 897 . 898)))
-    (semanticdb-table "semanticdb-table"
-      :file "mm-util.el"
-      :fsize 33311
-      :lastmodtime '(23525 29555 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [954 967])
-            ("gnus" include nil nil [970 985])
-            ("message" include nil nil [986 1004])
-            ("gnus-art" include nil nil [1005 1024])
-            ("gnus-util" include nil nil [1025 1045])
-            ("gnus-post-method" variable (:default-value (quote current)) nil [1047 1828])
-            ("gnus-outgoing-message-group" variable nil nil [1830 2464])
-            ("make-obsolete-variable" code nil nil [2466 2554])
-            ("gnus-mailing-list-groups" variable nil nil [2556 2875])
-            ("gnus-add-to-list" variable nil nil [2877 3006])
-            ("gnus-crosspost-complaint" variable (:default-value "Hi,
-
-You posted the article below with the following Newsgroups header:
-
-Newsgroups: %s
-
-The %s group, at least, was an inappropriate recipient
-of this message.  Please trim your Newsgroups header to exclude this
-group before posting in the future.
-
-Thank you.
-
-") nil [3008 3514])
-            ("gnus-message-setup-hook" variable nil nil [3516 3687])
-            ("gnus-bug-create-help-buffer" variable (:default-value t) nil [3689 3819])
-            ("gnus-posting-styles" variable nil nil [3821 4504])
-            ("gnus-gcc-mark-as-read" variable nil nil [4506 4658])
-            ("make-obsolete-variable" code nil nil [4660 4752])
-            ("gnus-gcc-externalize-attachments" variable nil nil [4754 5178])
-            ("gnus-gcc-self-resent-messages" variable (:default-value (quote no-gcc-self)) nil [5180 5977])
-            ("gnus-define-group-parameter" code nil nil [5979 7769])
-            ("gnus-debug-files" variable (:default-value (quote ("gnus.el" "gnus-sum.el" "gnus-group.el" "gnus-art.el" "gnus-start.el" "gnus-async.el" "gnus-msg.el" "gnus-score.el" "gnus-win.el" "gnus-topic.el" "gnus-agent.el" "gnus-cache.el" "gnus-srvr.el" "mm-util.el" "mm-decode.el" "nnmail.el" "message.el"))) nil [7771 8204])
-            ("gnus-debug-exclude-variables" variable (:default-value (quote (mm-mime-mule-charset-alist nnmail-split-fancy message-minibuffer-local-map))) nil [8206 8471])
-            ("gnus-discouraged-post-methods" variable (:default-value (quote (nndraft nnml nnimap nnmaildir nnmh nnfolder nndir))) nil [8473 8790])
-            ("gnus-message-replysign" variable nil nil [8792 8972])
-            ("gnus-message-replyencrypt" variable (:default-value t) nil [8974 9180])
-            ("gnus-message-replysignencrypted" variable (:default-value t) nil [9182 9345])
-            ("gnus-confirm-mail-reply-to-news" variable (:default-value (and gnus-novice-user (not gnus-expert-user))) nil [9347 10038])
-            ("gnus-confirm-treat-mail-like-news" variable nil nil [10040 10387])
-            ("gnus-summary-resend-default-address" variable (:default-value t) nil [10389 10659])
-            ("gnus-message-highlight-citation" variable (:default-value t) nil [10661 10924])
-            ("gnus-gcc-pre-body-encode-hook" variable nil nil [10926 11282])
-            ("gnus-gcc-post-body-encode-hook" variable nil nil [11284 11642])
-            ("gnus-message-citation-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [11644 11700])
-            ("gnus-inhibit-posting-styles" variable nil nil [11727 11806])
-            ("gnus-article-yanked-articles" variable nil nil [11808 11849])
-            ("gnus-message-buffer" variable (:default-value "*Mail Gnus*") nil [11850 11892])
-            ("gnus-article-copy" variable nil nil [11893 11923])
-            ("gnus-check-before-posting" variable nil nil [11924 11962])
-            ("gnus-last-posting-server" variable nil nil [11963 12000])
-            ("gnus-message-group-art" variable nil nil [12001 12036])
-            ("gnus-msg-force-broken-reply-to" variable nil nil [12038 12081])
-            ("gnus-bug-message" variable
-               (:constant-flag t
-                :default-value "Sending a bug report to the Gnus Towers.
-========================================
-
-The buffer below is a mail buffer.  When you press `C-c C-c', it will
-be sent to the Gnus Bug Exterminators.
-
-The thing near the bottom of the buffer is how the environment
-settings will be included in the mail.  Please do not delete that.
-They will tell the Bug People what your environment is, so that it
-will be easier to locate the bugs.
-
-If you have found a bug that makes Emacs go \"beep\", set
-debug-on-error to t (`M-x set-variable RET debug-on-error RET t RET')
-and include the backtrace in your bug report.
-
-Please describe the bug in annoying, painstaking detail.
-
-Thank you for your help in stamping out bugs.
-")
-                nil [12083 12820])
-            ("gnus-uu-post-news" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [12822 12867])
-            ("gnus-define-keys" code nil nil [12907 13911])
-            ("gnus-define-keys" code nil nil [13913 14125])
-            ("gnus-inews-make-draft" function (:arguments ("articles")) nil [14152 14317])
-            ("nnir-article-number" function (:prototype-flag t) nil [14319 14372])
-            ("nnir-article-group" function (:prototype-flag t) nil [14373 14425])
-            ("gnus-nnir-group-p" function (:prototype-flag t) nil [14426 14462])
-            ("gnus-article-reply" variable nil nil [14465 14496])
-            ("gnus-setup-message" function (:arguments ("config" "forms")) nil [14497 18334])
-            ("gnus-inews-make-draft-meta-information" function (:arguments ("group" "articles")) nil [18336 18688])
-            ("gnus-msg-mail" function
-               (:user-visible-flag t
-                :arguments ("to" "subject" "other-headers" "continue" "switch-action" "yank-action" "send-actions" "return-action"))
-                nil [18705 19890])
-            ("gnus-button-mailto" function (:arguments ("address")) nil [19907 20066])
-            ("gnus-button-reply" function
-               (:user-visible-flag t
-                :arguments ("to-address" "wide"))
-                nil [20083 20246])
-            ("define-mail-user-agent" code nil nil [20263 20386])
-            ("gnus-setup-posting-charset" function (:arguments ("group")) nil [20388 20840])
-            ("gnus-inews-add-send-actions" function (:arguments ("winconf" "buffer" "article" "config" "yanked" "winconf-name")) nil [20842 21943])
-            ("put" code nil nil [21945 21994])
-            ("put" code nil nil [21995 22051])
-            ("gnus-group-mail" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [22113 22996])
-            ("gnus-group-news" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [22998 24101])
-            ("gnus-group-post-news" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [24103 24840])
-            ("gnus-summary-mail-other-window" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [24842 25757])
-            ("gnus-summary-news-other-window" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25759 27110])
-            ("gnus-summary-post-news" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [27112 27804])
-            ("gnus-summary-followup" function
-               (:user-visible-flag t
-                :arguments ("yank" "force-news"))
-                nil [27807 28649])
-            ("gnus-summary-followup-with-original" function
-               (:user-visible-flag t
-                :arguments ("n" "force-news"))
-                nil [28651 28981])
-            ("gnus-summary-followup-to-mail" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [28983 29208])
-            ("gnus-summary-followup-to-mail-with-original" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [29210 29409])
-            ("gnus-inews-yank-articles" function (:arguments ("articles")) nil [29411 30275])
-            ("gnus-summary-cancel-article" function
-               (:user-visible-flag t
-                :arguments ("n" "symp"))
-                nil [30277 31586])
-            ("gnus-summary-supersede-article" function (:user-visible-flag t) nil [31588 32413])
-            ("gnus-copy-article-buffer" function (:arguments ("article-buffer" "yank-string")) nil [32418 35062])
-            ("gnus-post-news" function (:arguments ("post" "group" "header" "article-buffer" "yank" "subject" "force-news")) nil [35064 37248])
-            ("gnus-msg-treat-broken-reply-to" function (:arguments ("force")) nil [37250 37548])
-            ("gnus-post-method" function (:arguments ("arg" "group" "silent")) nil [37550 40275])
-            ("gnus-extended-version" function (:user-visible-flag t) nil [40280 40873])
-            ("gnus-summary-reply" function
-               (:user-visible-flag t
-                :arguments ("yank" "wide" "very-wide"))
-                nil [40956 43152])
-            ("gnus-summary-handle-replysign" function nil nil [43154 43810])
-            ("gnus-summary-reply-with-original" function
-               (:user-visible-flag t
-                :arguments ("n" "wide"))
-                nil [43812 44044])
-            ("gnus-summary-reply-to-list-with-original" function
-               (:user-visible-flag t
-                :arguments ("n" "wide"))
-                nil [44046 44429])
-            ("gnus-summary-reply-broken-reply-to" function
-               (:user-visible-flag t
-                :arguments ("yank" "wide" "very-wide"))
-                nil [44431 44894])
-            ("gnus-summary-reply-broken-reply-to-with-original" function
-               (:user-visible-flag t
-                :arguments ("n" "wide"))
-                nil [44896 45179])
-            ("gnus-summary-wide-reply" function
-               (:user-visible-flag t
-                :arguments ("yank"))
-                nil [45181 45492])
-            ("gnus-summary-wide-reply-with-original" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [45494 45739])
-            ("gnus-summary-very-wide-reply" function
-               (:user-visible-flag t
-                :arguments ("yank"))
-                nil [45741 46096])
-            ("gnus-summary-very-wide-reply-with-original" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [46098 46366])
-            ("gnus-summary-mail-forward" function
-               (:user-visible-flag t
-                :arguments ("arg" "post"))
-                nil [46368 48285])
-            ("gnus-summary-resend-message-insert-gcc" function nil nil [48287 49502])
-            ("gnus-summary-resend-message" function
-               (:user-visible-flag t
-                :arguments ("address" "n"))
-                nil [49504 51584])
-            ("gnus-summary-resend-message-edit" function (:user-visible-flag t) nil [51631 52702])
-            ("gnus-summary-post-forward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [52704 52898])
-            ("gnus-summary-mail-crosspost-complaint" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [52900 54129])
-            ("gnus-inews-add-to-address" function (:arguments ("group")) nil [54131 54519])
-            ("gnus-article-mail" function
-               (:user-visible-flag t
-                :arguments ("yank"))
-                nil [54521 54976])
-            ("nntp-server-type" variable nil nil [54978 55003])
-            ("gnus-bug" function (:user-visible-flag t) nil [55004 56210])
-            ("gnus-bug-kill-buffer" function nil nil [56212 56319])
-            ("gnus-summary-yank-message" function
-               (:user-visible-flag t
-                :arguments ("buffer" "n"))
-                nil [56321 56701])
-            ("gnus-summary-resend-bounced-mail" function
-               (:user-visible-flag t
-                :arguments ("fetch"))
-                nil [56758 57905])
-            ("gnus-inews-group-method" function (:arguments ("group")) nil [57926 58441])
-            ("gnus-inews-do-gcc" function (:arguments ("gcc")) nil [58508 62294])
-            ("gnus-inews-insert-gcc" function (:arguments ("group")) nil [62296 64916])
-            ("gnus-mailing-list-followup-to" function nil nil [64918 65327])
-            ("gnus-configure-posting-styles" function (:arguments ("group-name")) nil [65350 71119])
-            ("gnus-msg" package nil nil [71121 71140]))          
-      :file "gnus-msg.el"
-      :pointmax 71168
-      :fsize 71167
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 967 . 968) (symbol 936 . 953) (open-paren 935 . 936)))
-    (semanticdb-table "semanticdb-table"
-      :file "message.el"
-      :fsize 301678
-      :lastmodtime '(23525 29555 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [903 916])
-            ("tool-bar-map" variable nil nil [918 939])
-            ("w3m-minor-mode-map" variable nil nil [940 967])
-            ("gnus" include nil nil [969 984])
-            ("gnus-sum" include nil nil [985 1004])
-            ("gnus-spec" include nil nil [1005 1025])
-            ("gnus-int" include nil nil [1026 1045])
-            ("gnus-win" include nil nil [1046 1065])
-            ("mm-bodies" include nil nil [1066 1086])
-            ("mail-parse" include nil nil [1087 1108])
-            ("mm-decode" include nil nil [1109 1129])
-            ("mm-view" include nil nil [1130 1148])
-            ("wid-edit" include nil nil [1149 1168])
-            ("mm-uu" include nil nil [1169 1185])
-            ("message" include nil nil [1186 1204])
-            ("mouse" include nil nil [1205 1221])
-            ("gnus-msg-mail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1223 1265])
-            ("gnus-button-mailto" function (:prototype-flag t) nil [1266 1307])
-            ("gnus-button-reply" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1308 1354])
-            ("parse-time-string" function (:prototype-flag t) nil [1355 1405])
-            ("ansi-color-apply-on-region" function (:prototype-flag t) nil [1406 1457])
-            ("mm-url-insert-file-contents-external" function (:prototype-flag t) nil [1458 1515])
-            ("mm-extern-cache-contents" function (:prototype-flag t) nil [1516 1564])
-            ("url-expand-file-name" function (:prototype-flag t) nil [1565 1610])
-            ("gnus-article" customgroup (:user-visible-flag t) nil [1612 1723])
-            ("gnus-article-treat" customgroup (:user-visible-flag t) nil [1725 1857])
-            ("gnus-article-hiding" customgroup (:user-visible-flag t) nil [1859 1990])
-            ("gnus-article-highlight" customgroup (:user-visible-flag t) nil [1992 2154])
-            ("gnus-article-signature" customgroup (:user-visible-flag t) nil [2156 2291])
-            ("gnus-article-headers" customgroup (:user-visible-flag t) nil [2293 2420])
-            ("gnus-article-washing" customgroup (:user-visible-flag t) nil [2422 2563])
-            ("gnus-article-emphasis" customgroup (:user-visible-flag t) nil [2565 2703])
-            ("gnus-article-saving" customgroup (:user-visible-flag t) nil [2705 2832])
-            ("gnus-article-mime" customgroup (:user-visible-flag t) nil [2834 2965])
-            ("gnus-article-buttons" customgroup (:user-visible-flag t) nil [2967 3118])
-            ("gnus-article-various" customgroup (:user-visible-flag t) nil [3120 3251])
-            ("gnus-ignored-headers" variable (:default-value (mapcar (lambda (header) (concat "^" header ":")) (quote ("Path" "Expires" "Date-Received" "References" "Xref" "Lines" "Relay-Version" "Message-ID" "Approved" "Sender" "Received" "X-UIDL" "MIME-Version" "Return-Path" "In-Reply-To" "Content-Type" "Content-Transfer-Encoding" "X-WebTV-Signature" "X-MimeOLE" "X-MSMail-Priority" "X-Priority" "X-Loop" "X-Authentication-Warning" "X-MIME-Autoconverted" "X-Face" "X-Attribution" "X-Originating-IP" "Delivered-To" "NNTP-[-A-Za-z]+" "Distribution" "X-no-archive" "X-Trace" "X-Complaints-To" "X-NNTP-Posting-Host" "X-Orig.*" "Abuse-Reports-To" "Cache-Post-Path" "X-Article-Creation-Date" "X-Poster" "X-Mail2News-Path" "X-Server-Date" "X-Cache" "Originator" "X-Problems-To" "X-Auth-User" "X-Post-Time" "X-Admin" "X-UID" "Resent-[-A-Za-z]+" "X-Mailing-List" "Precedence" "Original-[-A-Za-z]+" "X-filename" "X-Orcpt" "Old-Received" "X-Pgp" "X-Auth" "X-From-Line" "X-Gnus-Article-Number" "X-Majordomo" "X-Url" "X-Sender" "MBOX-Line" "Priority" "X400-[-A-Za-z]+" "Status" "X-Gnus-Mail-Source" "Cancel-Lock" "X-FTN" "X-EXP32-SerialNo" "Encoding" "Importance" "Autoforwarded" "Original-Encoded-Information-Types" "X-Ya-Pop3" "X-Face-Version" "X-Vms-To" "X-ML-NAME" "X-ML-COUNT" "Mailing-List" "X-finfo" "X-md5sum" "X-md5sum-Origin" "X-Sun-Charset" "X-Accept-Language" "X-Envelope-Sender" "List-[A-Za-z]+" "X-Listprocessor-Version" "X-Received" "X-Distribute" "X-Sequence" "X-Juno-Line-Breaks" "X-Notes-Item" "X-MS-TNEF-Correlator" "x-uunet-gateway" "X-Received" "Content-length" "X-precedence" "X-Authenticated-User" "X-Comment" "X-Report" "X-Abuse-Info" "X-HTTP-Proxy" "X-Mydeja-Info" "X-Copyright" "X-No-Markup" "X-Abuse-Info" "X-From_" "X-Accept-Language" "Errors-To" "X-BeenThere" "X-Mailman-Version" "List-Help" "List-Post" "List-Subscribe" "List-Id" "List-Unsubscribe" "List-Archive" "X-Content-length" "X-Posting-Agent" "Original-Received" "X-Request-PGP" "X-Fingerprint" "X-WRIEnvto" "X-WRIEnvfrom" "X-Virus-Scanned" "X-Delivery-Agent" "Posted-Date" "X-Gateway" "X-Local-Origin" "X-Local-Destination" "X-UserInfo1" "X-Received-Date" "X-Hashcash" "Face" "X-DMCA-Notifications" "X-Abuse-and-DMCA-Info" "X-Postfilter" "X-Gpg-.*" "X-Disclaimer" "Envelope-To" "X-Spam-Score" "System-Type" "X-Injected-Via-Gmane" "X-Gmane-NNTP-Posting-Host" "Jabber-ID" "Archived-At" "Envelope-Sender" "Envelope-Recipients")))) nil [3253 6110])
-            ("gnus-visible-headers" variable (:default-value "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^[BGF]?Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Mail-Followup-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-From:") nil [6112 6921])
-            ("gnus-sorted-header-list" variable (:default-value (quote ("^From:" "^Subject:" "^Summary:" "^Keywords:" "^Newsgroups:" "^Followup-To:" "^To:" "^Cc:" "^Date:" "^Organization:"))) nil [6923 7335])
-            ("gnus-boring-article-headers" variable (:default-value (quote (empty followup-to reply-to))) nil [7337 8623])
-            ("gnus-article-skip-boring" variable nil nil [8625 8993])
-            ("gnus-signature-separator" variable (:default-value (quote ("^-- $" "^-- *$"))) nil [8995 9397])
-            ("gnus-signature-limit" variable nil nil [9399 10221])
-            ("gnus-hidden-properties" variable (:default-value (quote (invisible t))) nil [10223 10578])
-            ("gnus-article-x-face-command" variable (:default-value (if (gnus-image-type-available-p (quote pbm)) (quote gnus-display-x-face-in-from) "{ echo '/* Format_version=1, Width=48, Height=48, Depth=1, Valid_bits_per_item=16 */'; uncompface; } | icontopbm | display -")) nil [10679 11282])
-            ("gnus-article-x-face-too-ugly" variable nil nil [11284 11469])
-            ("gnus-article-banner-alist" variable nil nil [11471 11775])
-            ("gnus-define-group-parameter" code nil nil [11777 12477])
-            ("gnus-article-address-banner-alist" variable nil nil [12479 13265])
-            ("gnus-emphasis-custom-with-format" function (:arguments ("body")) nil [13267 13499])
-            ("gnus-emphasis-custom-value-to-external" function (:arguments ("value")) nil [13501 13754])
-            ("gnus-emphasis-custom-value-to-internal" function (:arguments ("value")) nil [13756 14160])
-            ("gnus-emphasis-alist" variable (:default-value (let ((types (quote (("\\*" "\\*" bold nil 2) ("_" "_" underline) ("/" "/" italic) ("_/" "/_" underline-italic) ("_\\*" "\\*_" underline-bold) ("\\*/" "/\\*" bold-italic) ("_\\*/" "/\\*_" underline-bold-italic))))) (nconc (gnus-emphasis-custom-with-format (mapcar (lambda (spec) (list (format format (car spec) (cadr spec)) (or (nth 3 spec) 2) (or (nth 4 spec) 3) (intern (format "gnus-emphasis-%s" (nth 2 spec))))) types)) (quote (("\\(\\s-\\|^\\)\\(_\\(\\(\\w\\|_[^_]\\)+\\)_\\)\\(\\s-\\|[?!.,;]\\)" 2 3 gnus-emphasis-underline)))))) nil [14162 16743])
-            ("gnus-emphasize-whitespace-regexp" variable (:default-value "^[ 	]+\\|[ 	]*
-") nil [16745 17146])
-            ("gnus-emphasis-bold" variable
-               (:default-value (quote ((t (:bold t))))
-                :type "face")
-                nil [17148 17287])
-            ("gnus-emphasis-italic" variable
-               (:default-value (quote ((t (:italic t))))
-                :type "face")
-                nil [17289 17432])
-            ("gnus-emphasis-underline" variable
-               (:default-value (quote ((t (:underline t))))
-                :type "face")
-                nil [17434 17587])
-            ("gnus-emphasis-underline-bold" variable
-               (:default-value (quote ((t (:bold t :underline t))))
-                :type "face")
-                nil [17589 17762])
-            ("gnus-emphasis-underline-italic" variable
-               (:default-value (quote ((t (:italic t :underline t))))
-                :type "face")
-                nil [17764 17943])
-            ("gnus-emphasis-bold-italic" variable
-               (:default-value (quote ((t (:bold t :italic t))))
-                :type "face")
-                nil [17945 18108])
-            ("gnus-emphasis-underline-bold-italic" variable
-               (:default-value (quote ((t (:bold t :italic t :underline t))))
-                :type "face")
-                nil [18110 18321])
-            ("gnus-emphasis-strikethru" variable
-               (:default-value (quote ((t (:strike-through t))))
-                :type "face")
-                nil [18323 18475])
-            ("gnus-emphasis-highlight-words" variable
-               (:default-value (quote ((t (:background "black" :foreground "yellow"))))
-                :type "face")
-                nil [18477 18648])
-            ("gnus-article-time-format" variable (:default-value "%a, %d %b %Y %T %Z") nil [18650 19101])
-            ("gnus-save-all-headers" variable (:default-value t) nil [19103 19395])
-            ("gnus-prompt-before-saving" variable (:default-value (quote always)) nil [19397 20035])
-            ("gnus-article-show-cursor" variable nil nil [20037 20213])
-            ("gnus-saved-headers" variable (:default-value gnus-visible-headers) nil [20215 20748])
-            ("gnus-default-article-saver" variable (:default-value (quote gnus-summary-save-in-rmail)) nil [20820 22903])
-            ("gnus-article-save-coding-system" variable (:default-value (or (and (mm-coding-system-p (quote utf-8)) (quote utf-8)) (and (mm-coding-system-p (quote iso-2022-7bit)) (quote iso-2022-7bit)) (and (mm-coding-system-p (quote emacs-mule)) (quote emacs-mule)) (and (mm-coding-system-p (quote escape-quoted)) (quote escape-quoted)))) nil [22905 24419])
-            ("gnus-rmail-save-name" variable (:default-value (quote gnus-plain-save-name)) nil [24421 24667])
-            ("gnus-mail-save-name" variable (:default-value (quote gnus-plain-save-name)) nil [24669 24918])
-            ("gnus-folder-save-name" variable (:default-value (quote gnus-folder-save-name)) nil [24920 25167])
-            ("gnus-file-save-name" variable (:default-value (quote gnus-numeric-save-name)) nil [25169 25418])
-            ("gnus-split-methods" variable (:default-value (quote ((gnus-article-archive-name) (gnus-article-nndoc-name)))) nil [25420 26600])
-            ("gnus-page-delimiter" variable (:default-value "^") nil [26602 26833])
-            ("gnus-article-mode-line-format" variable (:default-value "Gnus: %g %S%m") nil [26835 27200])
-            ("gnus-article-mode-hook" variable nil nil [27202 27319])
-            ("gnus-article-menu-hook" variable nil nil [27321 27462])
-            ("gnus-article-prepare-hook" variable nil nil [27464 27626])
-            ("gnus-copy-article-ignored-headers" variable nil nil [27628 27859])
-            ("make-obsolete-variable" code nil nil [27861 27945])
-            ("gnus-button" variable
-               (:default-value (quote ((t (:weight bold))))
-                :type "face")
-                nil [27947 28086])
-            ("gnus-article-button-face" variable (:default-value (quote gnus-button)) nil [28088 28345])
-            ("gnus-article-mouse-face" variable (:default-value (quote highlight)) nil [28347 28577])
-            ("gnus-signature-face" variable (:default-value (quote gnus-signature)) nil [28579 28840])
-            ("gnus-signature" variable
-               (:default-value (quote ((t (:italic t))))
-                :type "face")
-                nil [28842 29024])
-            ("put" code nil nil [29057 29111])
-            ("put" code nil nil [29112 29160])
-            ("gnus-header-from" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "PaleGreen1")) (((class color) (background light)) (:foreground "red3")) (t (:italic t))))
-                :type "face")
-                nil [29162 29472])
-            ("put" code nil nil [29505 29563])
-            ("put" code nil nil [29564 29614])
-            ("gnus-header-subject" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "SeaGreen1")) (((class color) (background light)) (:foreground "red4")) (t (:bold t :italic t))))
-                :type "face")
-                nil [29616 29939])
-            ("put" code nil nil [29972 30036])
-            ("put" code nil nil [30037 30090])
-            ("gnus-header-newsgroups" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "yellow" :italic t)) (((class color) (background light)) (:foreground "MidnightBlue" :italic t)) (t (:italic t))))
-                :type "face")
-                nil [30092 30508])
-            ("put" code nil nil [30541 30611])
-            ("put" code nil nil [30612 30668])
-            ("gnus-header-name" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "SpringGreen2")) (((class color) (background light)) (:foreground "maroon")) (t (:bold t))))
-                :type "face")
-                nil [30670 30982])
-            ("put" code nil nil [31015 31073])
-            ("put" code nil nil [31074 31124])
-            ("gnus-header-content" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "SpringGreen1" :italic t)) (((class color) (background light)) (:foreground "indianred4" :italic t)) (t (:italic t))))
-                :type "face")
-                nil [31126 31468])
-            ("put" code nil nil [31501 31565])
-            ("put" code nil nil [31566 31619])
-            ("gnus-header-face-alist" variable (:default-value (quote (("From" nil gnus-header-from) ("Subject" nil gnus-header-subject) ("Newsgroups:.*," nil gnus-header-newsgroups) ("" gnus-header-name gnus-header-content)))) nil [31621 32596])
-            ("gnus-face-properties-alist" variable (:default-value (quote ((pbm :face gnus-x-face) (png)))) nil [32598 33379])
-            ("gnus-article-decode-hook" variable (:default-value (quote (article-decode-charset article-decode-encoded-words article-decode-group-name article-decode-idna-rhs))) nil [33381 33620])
-            ("gnus-display-mime-function" variable (:default-value (quote gnus-display-mime)) nil [33622 33764])
-            ("gnus-decode-header-function" variable (:default-value (quote mail-decode-encoded-word-region)) nil [33766 33872])
-            ("gnus-decode-address-function" variable (:default-value (quote mail-decode-encoded-address-region)) nil [33874 33986])
-            ("gnus-article-dumbquotes-map" variable (:default-value (quote ((128 "EUR") (130 ",") (131 "f") (132 ",,") (133 "...") (139 "<") (140 "OE") (145 "`") (146 "'") (147 "``") (148 "\"") (149 "*") (150 "-") (151 "--") (152 "~") (153 "(TM)") (155 ">") (156 "oe") (180 "'")))) nil [33988 34382])
-            ("gnus-ignored-mime-types" variable nil nil [34384 34549])
-            ("gnus-unbuttonized-mime-types" variable (:default-value (quote (".*/.*"))) nil [34551 34897])
-            ("gnus-buttonized-mime-types" variable nil nil [34899 35495])
-            ("gnus-inhibit-mime-unbuttonizing" variable nil nil [35497 35817])
-            ("gnus-body-boundary-delimiter" variable (:default-value "_") nil [35819 36129])
-            ("gnus-picon-databases" variable (:default-value (quote ("/usr/lib/picon" "/usr/local/faces" "/usr/share/picons"))) nil [36131 36596])
-            ("gnus-picons-installed-p" function nil nil [36598 36829])
-            ("gnus-article-mime-part-function" variable nil nil [36831 37129])
-            ("gnus-mime-multipart-functions" variable nil nil [37131 37352])
-            ("gnus-article-date-headers" variable (:default-value (quote (combined-lapsed))) nil [37354 38393])
-            ("gnus-article-update-date-headers" variable nil nil [38395 38667])
-            ("gnus-article-mime-match-handle-function" variable (:default-value (quote undisplayed-alternative)) nil [38669 39356])
-            ("gnus-mime-action-alist" variable (:default-value (quote (("save to file" . gnus-mime-save-part) ("save and strip" . gnus-mime-save-part-and-strip) ("replace with file" . gnus-mime-replace-part) ("delete part" . gnus-mime-delete-part) ("display as text" . gnus-mime-inline-part) ("view the part" . gnus-mime-view-part) ("pipe to command" . gnus-mime-pipe-part) ("toggle display" . gnus-article-press-button) ("toggle display" . gnus-article-view-part-as-charset) ("view as type" . gnus-mime-view-part-as-type) ("view internally" . gnus-mime-view-part-internally) ("view externally" . gnus-mime-view-part-externally)))) nil [39358 40150])
-            ("gnus-auto-select-part" variable (:default-value 1) nil [40152 40603])
-            ("gnus-part-display-hook" variable nil nil [40642 40733])
-            ("gnus-article-treat-custom" variable (:default-value (quote (choice (const :tag "Off" nil) (const :tag "On" t) (const :tag "Header" head) (const :tag "First" first) (const :tag "Last" last) (integer :tag "Less") (repeat :tag "Groups" regexp) (sexp :tag "Predicate")))) nil [40735 41007])
-            ("gnus-article-treat-head-custom" variable (:default-value (quote (choice (const :tag "Off" nil) (const :tag "Header" head)))) nil [41009 41114])
-            ("gnus-article-treat-types" variable (:default-value (quote ("text/plain" "text/x-verbatim" "text/x-patch" "text/html"))) nil [41116 41256])
-            ("gnus-inhibit-treatment" variable nil nil [41258 41327])
-            ("gnus-treat-highlight-signature" variable (:default-value (quote (or t (typep "text/x-vcard")))) nil [41329 41670])
-            ("put" code nil nil [41671 41721])
-            ("gnus-treat-buttonize" variable (:default-value (quote (and 100000 (typep "text/plain")))) nil [41723 42046])
-            ("put" code nil nil [42047 42087])
-            ("gnus-treat-buttonize-head" variable (:default-value (quote head)) nil [42089 42405])
-            ("put" code nil nil [42406 42451])
-            ("gnus-treat-date" variable (:default-value (quote head)) nil [42453 42821])
-            ("gnus-treat-emphasize" variable (:default-value 50000) nil [42823 43120])
-            ("put" code nil nil [43121 43161])
-            ("gnus-treat-strip-cr" variable nil nil [43163 43484])
-            ("gnus-treat-unsplit-urls" variable nil nil [43486 43820])
-            ("gnus-treat-leading-whitespace" variable nil nil [43822 44166])
-            ("gnus-treat-hide-headers" variable (:default-value (quote head)) nil [44168 44471])
-            ("gnus-treat-hide-boring-headers" variable nil nil [44473 44788])
-            ("gnus-treat-hide-signature" variable nil nil [44790 45094])
-            ("gnus-treat-fill-article" variable nil nil [45096 45396])
-            ("gnus-treat-hide-citation" variable nil nil [45398 45782])
-            ("gnus-treat-hide-citation-maybe" variable nil nil [45784 46219])
-            ("gnus-treat-strip-list-identifiers" variable (:default-value (quote head)) nil [46221 46586])
-            ("gnus-define-group-parameter" code nil nil [46588 47168])
-            ("make-obsolete-variable" code nil nil [47170 47248])
-            ("gnus-treat-strip-pem" variable nil nil [47250 47551])
-            ("gnus-treat-strip-banner" variable (:default-value t) nil [47553 47934])
-            ("gnus-treat-highlight-headers" variable (:default-value (quote head)) nil [47936 48253])
-            ("put" code nil nil [48254 48302])
-            ("gnus-treat-highlight-citation" variable (:default-value t) nil [48304 48612])
-            ("put" code nil nil [48613 48662])
-            ("gnus-treat-strip-headers-in-body" variable (:default-value t) nil [48664 49038])
-            ("gnus-treat-strip-trailing-blank-lines" variable nil nil [49040 49462])
-            ("gnus-treat-strip-leading-blank-lines" variable nil nil [49464 49852])
-            ("gnus-treat-strip-multiple-blank-lines" variable nil nil [49854 50178])
-            ("gnus-treat-unfold-headers" variable (:default-value (quote head)) nil [50180 50512])
-            ("gnus-article-unfold-long-headers" variable nil nil [50514 50937])
-            ("gnus-treat-fold-headers" variable nil nil [50939 51253])
-            ("gnus-treat-fold-newsgroups" variable (:default-value (quote head)) nil [51255 51605])
-            ("gnus-treat-overstrike" variable (:default-value t) nil [51607 51916])
-            ("put" code nil nil [51917 51958])
-            ("gnus-treat-ansi-sequences" variable (:default-value t) nil [51960 52276])
-            ("make-obsolete-variable" code nil nil [52278 52371])
-            ("gnus-treat-display-x-face" variable (:default-value (and (not noninteractive) (gnus-image-type-available-p (quote xbm)) (condition-case nil (and (string-match "^0x" (shell-command-to-string "uncompface")) (executable-find "icontopbm")) (error nil)) (quote head))) nil [52373 53611])
-            ("put" code nil nil [53612 53657])
-            ("gnus-treat-display-face" variable (:default-value (and (not noninteractive) (gnus-image-type-available-p (quote png)) (quote head))) nil [53659 54145])
-            ("put" code nil nil [54146 54189])
-            ("gnus-treat-display-smileys" variable (:default-value (gnus-image-type-available-p (quote xpm))) nil [54191 54625])
-            ("put" code nil nil [54626 54672])
-            ("gnus-treat-from-picon" variable (:default-value (if (and (gnus-image-type-available-p (quote xpm)) (gnus-picons-installed-p)) (quote head) nil)) nil [54674 55204])
-            ("put" code nil nil [55205 55246])
-            ("gnus-treat-mail-picon" variable (:default-value (if (and (gnus-image-type-available-p (quote xpm)) (gnus-picons-installed-p)) (quote head) nil)) nil [55248 55780])
-            ("put" code nil nil [55781 55822])
-            ("gnus-treat-newsgroups-picon" variable (:default-value (if (and (gnus-image-type-available-p (quote xpm)) (gnus-picons-installed-p)) (quote head) nil)) nil [55824 56383])
-            ("put" code nil nil [56384 56431])
-            ("gnus-treat-from-gravatar" variable nil nil [56433 56888])
-            ("put" code nil nil [56889 56933])
-            ("gnus-treat-mail-gravatar" variable nil nil [56935 57392])
-            ("put" code nil nil [57393 57437])
-            ("gnus-treat-body-boundary" variable (:default-value (if (or gnus-treat-newsgroups-picon gnus-treat-mail-picon gnus-treat-from-picon gnus-treat-from-gravatar gnus-treat-mail-gravatar) (quote head) nil)) nil [57439 58002])
-            ("gnus-treat-capitalize-sentences" variable nil nil [58004 58348])
-            ("gnus-treat-wash-html" variable nil nil [58350 58663])
-            ("gnus-treat-fill-long-lines" variable (:default-value (quote (typep "text/plain"))) nil [58665 59003])
-            ("gnus-treat-x-pgp-sig" variable nil nil [59005 59394])
-            ("gnus-article-encrypt-protocol-alist" variable (:default-value (quote (("PGP" . mml2015-self-encrypt)))) nil [59396 59476])
-            ("gnus-article-encrypt-protocol" variable (:default-value "PGP") nil [59567 59767])
-            ("gnus-use-idna" variable (:default-value t) nil [59769 59930])
-            ("gnus-article-over-scroll" variable nil nil [59932 60111])
-            ("gnus-inhibit-images" variable nil nil [60113 60281])
-            ("gnus-blocked-images" variable (:default-value (quote gnus-block-private-groups)) nil [60283 61159])
-            ("gnus-english-month-names" variable (:default-value (quote ("January" "February" "March" "April" "May" "June" "July" "August" "September" "October" "November" "December"))) nil [61185 61337])
-            ("article-goto-body-goes-to-point-min-p" variable nil nil [61339 61389])
-            ("gnus-article-wash-types" variable nil nil [61390 61426])
-            ("gnus-article-emphasis-alist" variable nil nil [61427 61467])
-            ("gnus-article-image-alist" variable nil nil [61468 61505])
-            ("gnus-article-mime-handle-alist-1" variable nil nil [61507 61552])
-            ("gnus-treatment-function-alist" variable (:default-value (quote ((gnus-treat-strip-cr gnus-article-remove-cr) (gnus-treat-x-pgp-sig gnus-article-verify-x-pgp-sig) (gnus-treat-strip-banner gnus-article-strip-banner) (gnus-treat-strip-headers-in-body gnus-article-strip-headers-in-body) (gnus-treat-highlight-signature gnus-article-highlight-signature) (gnus-treat-buttonize gnus-article-add-buttons) (gnus-treat-fill-article gnus-article-fill-cited-article) (gnus-treat-fill-long-lines gnus-article-fill-cited-long-lines) (gnus-treat-unsplit-urls gnus-article-unsplit-urls) (gnus-treat-display-x-face gnus-article-display-x-face) (gnus-treat-display-face gnus-article-display-face) (gnus-treat-hide-headers gnus-article-maybe-hide-headers) (gnus-treat-hide-boring-headers gnus-article-hide-boring-headers) (gnus-treat-hide-signature gnus-article-hide-signature) (gnus-treat-strip-list-identifiers gnus-article-hide-list-identifiers) (gnus-treat-leading-whitespace gnus-article-remove-leading-whitespace) (gnus-treat-from-picon gnus-treat-from-picon) (gnus-treat-mail-picon gnus-treat-mail-picon) (gnus-treat-newsgroups-picon gnus-treat-newsgroups-picon) (gnus-treat-strip-pem gnus-article-hide-pem) (gnus-treat-date gnus-article-treat-date) (gnus-treat-from-gravatar gnus-treat-from-gravatar) (gnus-treat-mail-gravatar gnus-treat-mail-gravatar) (gnus-treat-highlight-headers gnus-article-highlight-headers) (gnus-treat-highlight-signature gnus-article-highlight-signature) (gnus-treat-strip-trailing-blank-lines gnus-article-remove-trailing-blank-lines) (gnus-treat-strip-leading-blank-lines gnus-article-strip-leading-blank-lines) (gnus-treat-strip-multiple-blank-lines gnus-article-strip-multiple-blank-lines) (gnus-treat-overstrike gnus-article-treat-overstrike) (gnus-treat-ansi-sequences gnus-article-treat-ansi-sequences) (gnus-treat-unfold-headers gnus-article-treat-unfold-headers) (gnus-treat-fold-newsgroups gnus-article-treat-fold-newsgroups) (gnus-treat-fold-headers gnus-article-treat-fold-headers) (gnus-treat-buttonize-head gnus-article-add-buttons-to-head) (gnus-treat-display-smileys gnus-treat-smiley) (gnus-treat-capitalize-sentences gnus-article-capitalize-sentences) (gnus-treat-wash-html gnus-article-wash-html) (gnus-treat-emphasize gnus-article-emphasize) (gnus-treat-hide-citation gnus-article-hide-citation) (gnus-treat-hide-citation-maybe gnus-article-hide-citation-maybe) (gnus-treat-highlight-citation gnus-article-highlight-citation) (gnus-treat-body-boundary gnus-article-treat-body-boundary)))) nil [61553 64233])
-            ("gnus-article-mime-handle-alist" variable nil nil [64235 64278])
-            ("article-lapsed-timer" variable nil nil [64279 64312])
-            ("gnus-article-current-summary" variable nil nil [64313 64354])
-            ("gnus-article-mode-syntax-table" variable (:default-value (let ((table (copy-syntax-table text-mode-syntax-table))) (modify-syntax-entry 62 ")<" table) (modify-syntax-entry 60 "(>" table) (modify-syntax-entry 39 "'" table) (modify-syntax-entry 96 "'" table) table)) nil [64356 64925])
-            ("gnus-save-article-buffer" variable nil nil [64927 64964])
-            ("gnus-number-of-articles-to-be-saved" variable nil nil [64966 65014])
-            ("gnus-inhibit-hiding" variable nil nil [65016 65048])
-            ("gnus-article-edit-mode" variable nil nil [65050 65085])
-            ("gnus-with-article-headers" function (:arguments ("forms")) nil [65136 65393])
-            ("put" code nil nil [65395 65451])
-            ("put" code nil nil [65452 65510])
-            ("gnus-with-article-buffer" function (:arguments ("forms")) nil [65512 65721])
-            ("put" code nil nil [65723 65778])
-            ("put" code nil nil [65779 65836])
-            ("gnus-article-goto-header" function (:arguments ("header")) nil [65838 65986])
-            ("gnus-article-hide-text" function (:arguments ("b" "e" "props")) nil [65988 66136])
-            ("gnus-article-unhide-text" function (:arguments ("b" "e")) nil [66138 66296])
-            ("gnus-article-hide-text-type" function (:arguments ("b" "e" "type")) nil [66298 66501])
-            ("gnus-article-unhide-text-type" function (:arguments ("b" "e" "type")) nil [66503 66713])
-            ("gnus-article-delete-text-of-type" function (:arguments ("type")) nil [66715 67507])
-            ("gnus-article-delete-invisible-text" function nil nil [67509 67821])
-            ("gnus-article-header-rank" function nil nil [67823 68100])
-            ("article-hide-headers" function
-               (:user-visible-flag t
-                :arguments ("_arg" "_delete"))
-                nil [68102 70431])
-            ("article-hide-boring-headers" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [70433 75219])
-            ("gnus-article-hide-header" function (:arguments ("header")) nil [75221 75567])
-            ("gnus-article-normalized-header-length" variable (:default-value 40) nil [75569 75652])
-            ("article-normalize-headers" function (:user-visible-flag t) nil [75654 76371])
-            ("article-treat-dumbquotes" function (:user-visible-flag t) nil [76373 76931])
-            ("org-entities" variable nil nil [76933 76954])
-            ("article-treat-non-ascii" function (:user-visible-flag t) nil [76956 77706])
-            ("article-translate-strings" function (:arguments ("map")) nil [77708 78288])
-            ("article-treat-overstrike" function (:user-visible-flag t) nil [78290 79238])
-            ("article-treat-ansi-sequences" function (:user-visible-flag t) nil [79240 79498])
-            ("gnus-article-treat-unfold-headers" function (:user-visible-flag t) nil [79500 80397])
-            ("gnus-article-treat-fold-headers" function (:user-visible-flag t) nil [80399 80645])
-            ("gnus-treat-smiley" function (:user-visible-flag t) nil [80647 81073])
-            ("gnus-article-remove-images" function (:user-visible-flag t) nil [81075 81321])
-            ("w3m-toggle-inline-images" function (:prototype-flag t) nil [81323 81365])
-            ("gnus-article-show-images" function (:user-visible-flag t) nil [81367 81905])
-            ("gnus-article-treat-fold-newsgroups" function (:user-visible-flag t) nil [81907 82349])
-            ("gnus-article-truncate-lines" variable (:default-value (default-value (quote truncate-lines))) nil [82351 82724])
-            ("gnus-article-toggle-truncate-lines" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [82726 83448])
-            ("gnus-article-treat-body-boundary" function (:user-visible-flag t) nil [83450 84094])
-            ("article-fill-long-lines" function (:user-visible-flag t) nil [84096 84756])
-            ("article-capitalize-sentences" function (:user-visible-flag t) nil [84758 85040])
-            ("article-remove-cr" function (:user-visible-flag t) nil [85042 85405])
-            ("article-remove-trailing-blank-lines" function (:user-visible-flag t) nil [85407 85841])
-            ("gnus-face-properties-alist" variable nil nil [85843 85878])
-            ("article-display-face" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [85880 87690])
-            ("article-display-x-face" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [87692 90159])
-            ("article-decode-mime-words" function (:user-visible-flag t) nil [90161 90563])
-            ("article-decode-charset" function
-               (:user-visible-flag t
-                :arguments ("prompt"))
-                nil [90565 92116])
-            ("article-decode-encoded-words" function nil nil [92118 93060])
-            ("article-decode-group-name" function nil nil [93062 94097])
-            ("article-decode-idna-rhs" function nil nil [94099 94924])
-            ("article-de-quoted-unreadable" function
-               (:user-visible-flag t
-                :arguments ("force" "read-charset"))
-                nil [94926 96099])
-            ("article-de-base64-unreadable" function
-               (:user-visible-flag t
-                :arguments ("force" "read-charset"))
-                nil [96101 97347])
-            ("declare-function" code nil nil [97349 97409])
-            ("article-decode-HZ" function (:user-visible-flag t) nil [97411 97619])
-            ("article-unsplit-urls" function (:user-visible-flag t) nil [97621 98014])
-            ("article-wash-html" function (:user-visible-flag t) nil [98016 98418])
-            ("gnus-article-browse-html-temp-list" variable nil nil [98420 98559])
-            ("gnus-article-browse-delete-temp" variable (:default-value (quote ask)) nil [98561 99090])
-            ("gnus-article-browse-delete-temp-files" function (:arguments ("how")) nil [99167 100391])
-            ("gnus-article-browse-html-save-cid-content" function (:arguments ("cid" "handles" "directory")) nil [100393 101480])
-            ("gnus-article-browse-html-parts" function (:arguments ("list" "header")) nil [101482 109483])
-            ("gnus-article-browse-html-article" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [109485 111556])
-            ("article-hide-list-identifiers" function (:user-visible-flag t) nil [111558 112302])
-            ("article-hide-pem" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [112304 113212])
-            ("article-strip-banner" function (:user-visible-flag t) nil [113214 114186])
-            ("article-really-strip-banner" function (:arguments ("banner")) nil [114188 114913])
-            ("article-babel" function (:user-visible-flag t) nil [114915 115326])
-            ("article-hide-signature" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [115328 115834])
-            ("article-strip-headers-in-body" function (:user-visible-flag t) nil [115836 116071])
-            ("article-strip-leading-blank-lines" function (:user-visible-flag t) nil [116073 116394])
-            ("article-narrow-to-head" function nil nil [116396 116828])
-            ("article-goto-body" function nil nil [116830 117152])
-            ("article-strip-multiple-blank-lines" function (:user-visible-flag t) nil [117154 117865])
-            ("article-strip-leading-space" function (:user-visible-flag t) nil [117867 118183])
-            ("article-strip-trailing-space" function (:user-visible-flag t) nil [118185 118496])
-            ("article-strip-blank-lines" function (:user-visible-flag t) nil [118498 118721])
-            ("article-strip-all-blank-lines" function (:user-visible-flag t) nil [118723 118995])
-            ("gnus-article-narrow-to-signature" function nil nil [118997 119906])
-            ("gnus-article-search-signature" function nil nil [119908 120397])
-            ("gnus-article-hidden-arg" function nil nil [120399 120584])
-            ("gnus-article-check-hidden-text" function (:arguments ("type" "arg")) nil [120586 121076])
-            ("gnus-article-hidden-text-p" function (:arguments ("type")) nil [121078 121496])
-            ("gnus-article-show-hidden-text" function (:arguments ("type" "_dummy")) nil [121498 121898])
-            ("article-time-units" variable
-               (:constant-flag t
-                :default-value (\` ((year \, (* 365.25 24 60 60)) (week \, (* 7 24 60 60)) (day \, (* 24 60 60)) (hour \, (* 60 60)) (minute . 60) (second . 1))))
-                nil [121900 122118])
-            ("gnus-article-forward-header" function nil nil [122120 122433])
-            ("article-treat-date" function nil nil [122435 122651])
-            ("article-date-ut" function
-               (:user-visible-flag t
-                :arguments ("type" "_highlight" "date-position"))
-                nil [122653 125521])
-            ("article-transform-date" function (:arguments ("date" "type" "bface" "eface")) nil [125523 127221])
-            ("article-make-date-line" function (:arguments ("date" "type")) nil [127223 130089])
-            ("article-lapsed-string" function (:arguments ("time" "max-segments")) nil [130091 131557])
-            ("article-date-local" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [131559 131729])
-            ("article-date-english" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [131731 131919])
-            ("article-date-original" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [131921 132227])
-            ("article-date-lapsed" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [132229 132412])
-            ("article-date-combined-lapsed" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [132414 132615])
-            ("article-update-date-lapsed" function nil nil [132617 134011])
-            ("gnus-start-date-timer" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [134013 134353])
-            ("gnus-stop-date-timer" function (:user-visible-flag t) nil [134355 134542])
-            ("article-date-user" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [134544 134792])
-            ("article-date-iso8601" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [134794 134957])
-            ("gnus-article-save-original-date" function (:arguments ("forms")) nil [134959 135705])
-            ("article-remove-leading-whitespace" function (:user-visible-flag t) nil [135928 136279])
-            ("article-emphasize" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [136281 137512])
-            ("gnus-article-setup-highlight-words" function (:arguments ("highlight-words")) nil [137514 138294])
-            ("gnus-summary-article-menu" variable nil nil [138296 138330])
-            ("gnus-summary-post-menu" variable nil nil [138331 138362])
-            ("gnus-article-save" function (:arguments ("save-buffer" "file" "num")) nil [138387 139730])
-            ("gnus-read-save-file-name" function (:arguments ("prompt" "filename" "function" "group" "headers" "variable" "dir-var")) nil [139732 142698])
-            ("gnus-article-archive-name" function (:arguments ("_group")) nil [142700 143004])
-            ("gnus-article-nndoc-name" function (:arguments ("group")) nil [143006 143233])
-            ("gnus-summary-save-in-rmail" function (:arguments ("filename")) nil [143235 143912])
-            ("gnus-summary-save-in-mail" function (:arguments ("filename")) nil [143914 144592])
-            ("put" code nil nil [144594 144636])
-            ("put" code nil nil [144637 144698])
-            ("gnus-summary-save-in-file" function (:arguments ("filename" "overwrite")) nil [144699 145308])
-            ("put" code nil nil [145310 145353])
-            ("put" code nil nil [145354 145424])
-            ("put" code nil nil [145425 145487])
-            ("gnus-summary-write-to-file" function (:arguments ("filename")) nil [145488 145949])
-            ("put" code nil nil [145951 145998])
-            ("gnus-summary-save-body-in-file" function (:arguments ("filename" "overwrite")) nil [145999 146697])
-            ("put" code nil nil [146699 146747])
-            ("put" code nil nil [146748 146833])
-            ("gnus-summary-write-body-to-file" function (:arguments ("filename")) nil [146834 147315])
-            ("put" code nil nil [147317 147359])
-            ("put" code nil nil [147360 147421])
-            ("gnus-summary-save-in-pipe" function (:arguments ("command" "raw")) nil [147422 149574])
-            ("gnus-summary-pipe-to-muttprint" function (:arguments ("command")) nil [149576 150016])
-            ("gnus-capitalize-newsgroup" function (:arguments ("newsgroup")) nil [150055 150260])
-            ("gnus-Numeric-save-name" function (:arguments ("newsgroup" "headers" "last-file")) nil [150262 151025])
-            ("gnus-numeric-save-name" function (:arguments ("newsgroup" "headers" "last-file")) nil [151027 151763])
-            ("gnus-plain-save-name" function (:arguments ("newsgroup" "_headers" "last-file")) nil [151765 152282])
-            ("gnus-sender-save-name" function (:arguments ("_newsgroup" "headers" "_last-file")) nil [152284 152588])
-            ("article-verify-x-pgp-sig" function (:user-visible-flag t) nil [152590 155195])
-            ("article-verify-cancel-lock" function (:user-visible-flag t) nil [155197 155390])
-            ("mapc" code nil nil [155412 157313])
-            ("put" code nil nil [157348 157393])
-            ("set-keymap-parent" code nil nil [157395 157450])
-            ("gnus-define-keys" code nil nil [157452 158350])
-            ("substitute-key-definition" code nil nil [158352 158445])
-            ("gnus-article-send-map" variable nil nil [158447 158477])
-            ("gnus-define-keys" code nil nil [158478 158632])
-            ("gnus-article-make-menu-bar" function nil nil [158634 160297])
-            ("bookmark-make-record-function" variable nil nil [160299 160337])
-            ("shr-put-image-function" variable nil nil [160338 160369])
-            ("define-derived-mode" code nil nil [160371 162550])
-            ("gnus-article-setup-buffer" function nil nil [162552 165014])
-            ("gnus-article-stop-animations" function nil nil [165016 165210])
-            ("gnus-stop-downloads" function nil nil [165212 165314])
-            ("gnus-article-set-window-start" function (:arguments ("line")) nil [165420 165843])
-            ("gnus-tmp-internal-hook" variable nil nil [165845 165876])
-            ("gnus-article-prepare" function (:arguments ("article" "all-headers" "_header")) nil [165878 170185])
-            ("gnus-mime-display-attachment-buttons-in-header" variable nil nil [170187 170242])
-            ("gnus-article-prepare-display" function nil nil [170259 170997])
-            ("define-derived-mode" code nil nil [171037 171774])
-            ("gnus-sticky-article" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [171776 173268])
-            ("gnus-kill-sticky-article-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [173270 173650])
-            ("gnus-kill-sticky-article-buffers" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [173652 174064])
-            ("gnus-mime-button-line-format" variable (:default-value "%{%([%p. %d%T]%)%}%e
-") nil [174107 174534])
-            ("gnus-tmp-type" variable nil nil [174536 174558])
-            ("gnus-tmp-type-long" variable nil nil [174559 174586])
-            ("gnus-tmp-name" variable nil nil [174587 174609])
-            ("gnus-tmp-description" variable nil nil [174610 174639])
-            ("gnus-tmp-id" variable nil nil [174640 174660])
-            ("gnus-tmp-length" variable nil nil [174661 174685])
-            ("gnus-tmp-dots" variable nil nil [174686 174708])
-            ("gnus-tmp-info" variable nil nil [174709 174731])
-            ("gnus-tmp-pressed-details" variable nil nil [174732 174765])
-            ("gnus-mime-button-line-format-alist" variable (:default-value (quote ((116 gnus-tmp-type 115) (84 gnus-tmp-type-long 115) (110 gnus-tmp-name 115) (100 gnus-tmp-description 115) (112 gnus-tmp-id 115) (108 gnus-tmp-length 100) (101 gnus-tmp-dots 115)))) nil [174767 175005])
-            ("gnus-mime-button-commands" variable (:default-value (quote ((gnus-article-press-button "
" "Toggle Display") (gnus-mime-view-part "v" "View Interactively...") (gnus-mime-view-part-as-type "t" "View As Type...") (gnus-mime-view-part-as-charset "C" "View As charset...") (gnus-mime-save-part "o" "Save...") (gnus-mime-save-part-and-strip "" "Save and Strip") (gnus-mime-replace-part "r" "Replace part") (gnus-mime-delete-part "d" "Delete part") (gnus-mime-copy-part "c" "View As Text, In Other Buffer") (gnus-mime-inline-part "i" "View As Text, In This Buffer") (gnus-mime-view-part-internally "E" "View Internally") (gnus-mime-view-part-externally "e" "View Externally") (gnus-mime-print-part "p" "Print") (gnus-mime-pipe-part "|" "Pipe To Command...") (gnus-mime-action-on-part "." "Take action on the part...")))) nil [175007 175871])
-            ("gnus-article-mime-part-status" function nil nil [175873 176101])
-            ("gnus-mime-button-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mouse-2] (quote gnus-article-push-button)) (define-key map [down-mouse-3] (quote gnus-mime-button-menu)) (dolist (c gnus-mime-button-commands) (define-key map (cadr c) (car c))) map)) nil [176103 176376])
-            ("easy-menu-define" code nil nil [176378 176578])
-            ("gnus-url-button-commands" variable (:default-value (quote ((gnus-article-copy-string "u" "Copy URL to kill ring")))) nil [176580 176673])
-            ("gnus-url-button-map" variable (:default-value (let ((map (make-sparse-keymap))) (dolist (c gnus-url-button-commands) (define-key map (cadr c) (car c))) map)) nil [176675 176830])
-            ("easy-menu-define" code nil nil [176832 177029])
-            ("gnus-bind-mm-vars" function (:arguments ("body")) nil [177031 178022])
-            ("gnus-mime-button-menu" function
-               (:user-visible-flag t
-                :arguments ("event" "prefix"))
-                nil [178024 178365])
-            ("gnus-mime-view-all-parts" function
-               (:user-visible-flag t
-                :arguments ("handles"))
-                nil [178367 178980])
-            ("gnus-article-jump-to-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [178982 179882])
-            ("gnus-mime-buttonized-part-id" variable nil nil [179884 180043])
-            ("gnus-article-edit-part" function (:arguments ("handles" "current-id")) nil [180066 182392])
-            ("gnus-mime-replace-part" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [182395 182750])
-            ("gnus-mime-save-part-and-strip" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [182752 184202])
-            ("gnus-mime-delete-part" function (:user-visible-flag t) nil [184328 186030])
-            ("gnus-mime-save-part" function (:user-visible-flag t) nil [186032 186242])
-            ("gnus-mime-pipe-part" function
-               (:user-visible-flag t
-                :arguments ("cmd"))
-                nil [186244 186508])
-            ("gnus-mime-view-part" function (:user-visible-flag t) nil [186510 186899])
-            ("gnus-mime-view-part-as-type-internal" function nil nil [186901 187486])
-            ("gnus-mime-view-part-as-type" function
-               (:user-visible-flag t
-                :arguments ("mime-type" "pred"))
-                nil [187488 188810])
-            ("gnus-mime-copy-part" function
-               (:user-visible-flag t
-                :arguments ("handle" "arg"))
-                nil [188812 190813])
-            ("gnus-mime-print-part" function
-               (:user-visible-flag t
-                :arguments ("handle" "filename"))
-                nil [190815 191659])
-            ("gnus-mime-inline-part" function
-               (:user-visible-flag t
-                :arguments ("handle" "arg"))
-                nil [191661 194165])
-            ("gnus-mime-set-charset-parameters" function (:arguments ("handle" "charset")) nil [194167 194891])
-            ("gnus-mime-view-part-as-charset" function
-               (:user-visible-flag t
-                :arguments ("handle" "arg"))
-                nil [194893 196334])
-            ("gnus-mime-view-part-externally" function
-               (:user-visible-flag t
-                :arguments ("handle"))
-                nil [196336 197062])
-            ("gnus-mime-view-part-internally" function
-               (:user-visible-flag t
-                :arguments ("handle"))
-                nil [197064 197807])
-            ("gnus-mime-action-on-part" function
-               (:user-visible-flag t
-                :arguments ("action"))
-                nil [197809 198153])
-            ("gnus-article-part-wrapper" function (:arguments ("n" "function" "no-handle" "interactive")) nil [198155 201282])
-            ("gnus-article-pipe-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [201284 201437])
-            ("gnus-article-save-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [201439 201592])
-            ("gnus-article-interactively-view-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [201594 201789])
-            ("gnus-article-copy-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [201791 201951])
-            ("gnus-article-view-part-as-charset" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [201953 202157])
-            ("gnus-article-view-part-externally" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [202159 202352])
-            ("gnus-article-inline-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [202354 202520])
-            ("gnus-article-save-part-and-strip" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [202522 202737])
-            ("gnus-article-replace-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [202739 202930])
-            ("gnus-article-delete-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [202932 203144])
-            ("gnus-article-view-part-as-type" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [203146 203353])
-            ("gnus-article-mime-match-handle-first" function (:arguments ("condition")) nil [203355 204005])
-            ("gnus-article-view-part" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [204007 204790])
-            ("gnus-article-mime-total-parts" function nil nil [204792 204951])
-            ("gnus-mm-display-part" function (:arguments ("handle")) nil [204953 207880])
-            ("gnus-article-goto-part" function (:arguments ("n")) nil [207882 209140])
-            ("gnus-insert-mime-button" function (:arguments ("handle" "id" "displayed")) nil [209142 210896])
-            ("gnus-widget-press-button" function (:arguments ("elems" "_el")) nil [210898 211011])
-            ("gnus-displaying-mime" variable nil nil [211013 211046])
-            ("gnus-display-mime" function (:arguments ("ihandles")) nil [211048 212980])
-            ("gnus-mime-display-multipart-as-mixed" variable nil nil [212982 213273])
-            ("gnus-mime-display-multipart-alternative-as-mixed" variable nil nil [213275 213471])
-            ("gnus-mime-display-multipart-related-as-mixed" variable nil nil [213473 213850])
-            ("gnus-mime-display-attachment-buttons-in-header" variable (:default-value t) nil [213852 214296])
-            ("gnus-mime-display-part" function (:arguments ("handle")) nil [214298 215605])
-            ("gnus-mime-part-function" function (:arguments ("handles")) nil [215607 215787])
-            ("gnus-mime-display-mixed" function (:arguments ("handles")) nil [215789 215873])
-            ("gnus-mime-display-single" function (:arguments ("handle")) nil [215875 218946])
-            ("gnus-unbuttonized-mime-type-p" function (:arguments ("type")) nil [218948 219400])
-            ("gnus-article-insert-newline" function nil nil [219402 219570])
-            ("gnus-mime-display-alternative" function (:arguments ("handles" "preferred" "ibegend" "id")) nil [219572 222639])
-            ("gnus-article-wash-status-strings" variable
-               (:constant-flag t
-                :default-value (let ((alist (quote ((cite "c" "Possible hidden citation text" " " "All citation text visible") (headers "h" "Hidden headers" " " "All headers visible.") (pgp "p" "Encrypted or signed message status hidden" " " "No hidden encryption nor digital signature status") (signature "s" "Signature has been hidden" " " "Signature is visible") (overstrike "o" "Overstrike (^H) characters applied" " " "No overstrike characters applied") (emphasis "e" "/*_Emphasis_*/ characters applied" " " "No /*_emphasis_*/ characters applied")))) result) (dolist (entry alist result) (let ((key (nth 0 entry)) (on (copy-sequence (nth 1 entry))) (on-help (nth 2 entry)) (off (copy-sequence (nth 3 entry))) (off-help (nth 4 entry))) (put-text-property 0 1 (quote help-echo) on-help on) (put-text-property 0 1 (quote help-echo) off-help off) (push (list key on off) result)))))
-                nil [222641 223916])
-            ("gnus-article-wash-status-entry" function (:arguments ("key" "value")) nil [223918 224074])
-            ("gnus-article-wash-status" function nil nil [224076 225146])
-            ("gnus-add-wash-type" function (:arguments ("type")) nil [225148 225276])
-            ("gnus-delete-wash-type" function (:arguments ("type")) nil [225278 225432])
-            ("gnus-add-image" function (:arguments ("category" "image")) nil [225434 225720])
-            ("gnus-delete-images" function (:arguments ("category")) nil [225722 226038])
-            ("defalias" code nil nil [226040 226120])
-            ("gnus-article-maybe-hide-headers" function nil nil [226122 226465])
-            ("declare-function" code nil nil [226467 226532])
-            ("gnus-shr-put-image" function (:arguments ("data" "alt" "flags")) nil [226534 226992])
-            ("gnus-article-mime-handles" function (:arguments ("alist" "id" "all")) nil [226994 228286])
-            ("gnus-mime-buttonize-attachments-in-header" function
-               (:user-visible-flag t
-                :arguments ("interactive"))
-                nil [228288 230273])
-            ("gnus-output-to-file" function (:arguments ("file-name")) nil [230296 232173])
-            ("gnus-narrow-to-page" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [232175 233936])
-            ("gnus-article-goto-next-page" function (:user-visible-flag t) nil [233964 234163])
-            ("gnus-article-goto-prev-page" function (:user-visible-flag t) nil [234166 234412])
-            ("gnus-article-next-page" function
-               (:user-visible-flag t
-                :arguments ("lines"))
-                nil [234857 235822])
-            ("gnus-article-beginning-of-window" function nil nil [235824 236405])
-            ("scroll-in-place" variable nil nil [236407 236431])
-            ("gnus-article-next-page-1" function (:arguments ("lines")) nil [236433 236720])
-            ("gnus-article-prev-page" function
-               (:user-visible-flag t
-                :arguments ("lines"))
-                nil [236722 237431])
-            ("gnus-article-only-boring-p" function nil nil [237433 238117])
-            ("gnus-article-refer-article" function (:user-visible-flag t) nil [238119 238591])
-            ("gnus-article-show-summary" function (:user-visible-flag t) nil [238593 238970])
-            ("gnus-article-describe-briefly" function (:user-visible-flag t) nil [238972 239357])
-            ("gnus-article-check-buffer" function nil nil [239359 239543])
-            ("gnus-pick-mode" variable nil nil [239545 239568])
-            ("gnus-article-read-summary-keys" function
-               (:user-visible-flag t
-                :arguments ("_arg" "key" "not-restore-window"))
-                nil [239570 243553])
-            ("gnus-article-read-summary-send-keys" function nil nil [243555 243698])
-            ("gnus-article-describe-key" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [243700 244444])
-            ("gnus-article-describe-key-briefly" function
-               (:user-visible-flag t
-                :arguments ("key" "insert"))
-                nil [244446 245271])
-            ("gnus-agent-summary-mode" variable nil nil [245326 245358])
-            ("gnus-draft-mode" variable nil nil [245359 245383])
-            ("help-xref-stack-item" variable nil nil [245384 245413])
-            ("help-xref-following" variable nil nil [245414 245442])
-            ("gnus-article-describe-bindings" function
-               (:user-visible-flag t
-                :arguments ("prefix"))
-                nil [245444 247695])
-            ("gnus-article-reply-with-original" function
-               (:user-visible-flag t
-                :arguments ("wide"))
-                nil [247697 248393])
-            ("gnus-article-wide-reply-with-original" function (:user-visible-flag t) nil [248395 248663])
-            ("gnus-article-followup-with-original" function (:user-visible-flag t) nil [248665 249328])
-            ("gnus-article-hide" function
-               (:user-visible-flag t
-                :arguments ("arg" "force"))
-                nil [249330 249790])
-            ("gnus-check-group-server" function nil nil [249792 250085])
-            ("declare-function" code nil nil [250087 250146])
-            ("gnus-request-article-this-buffer" function (:arguments ("article" "group")) nil [250148 256773])
-            ("gnus-block-private-groups" function (:arguments ("group")) nil [256775 257070])
-            ("gnus-blocked-images" function nil nil [257072 257221])
-            ("gnus-article-edit-mode-hook" variable nil nil [257252 257383])
-            ("gnus-article-edit-done-function" variable nil nil [257385 257429])
-            ("gnus-article-edit-mode-map" variable nil nil [257431 257470])
-            ("unless" code nil nil [257515 259051])
-            ("easy-menu-define" code nil nil [259053 259776])
-            ("define-derived-mode" code nil nil [259778 260386])
-            ("gnus-article-edit" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [260388 261042])
-            ("gnus-article-edit-article" function (:arguments ("start-func" "exit-func" "quiet")) nil [261044 261663])
-            ("gnus-article-edit-done" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [261665 262753])
-            ("gnus-flush-original-article-buffer" function nil nil [262755 262945])
-            ("gnus-article-edit-exit" function (:user-visible-flag t) nil [262947 263721])
-            ("gnus-article-edit-full-stops" function (:user-visible-flag t) nil [263723 264027])
-            ("gnus-button-url-regexp" variable (:default-value (concat "\\b\\(\\(www\\.\\|\\(s?https?\\|ftp\\|file\\|gopher\\|" "nntp\\|news\\|telnet\\|wais\\|mailto\\|info\\):\\)" "\\(//[-a-z0-9_.]+:[0-9]*\\)?" (let ((chars "-a-z0-9_=#$@~%&*+\\/[:word:]") (punct "!?:;.,")) (concat "\\(?:" "[" chars punct "]+" "(" "[" chars punct "]+" "[" chars "]*)" "\\(?:" "[" chars punct "]+" "[" chars "]" "\\)?" "\\|" "[" chars punct "]+" "[" chars "]" "\\)")) "\\)")) nil [264139 264855])
-            ("gnus-button-valid-fqdn-regexp" variable (:default-value "\\([-A-Za-z0-9]+\\.\\)+[A-Za-z]+") nil [264857 265048])
-            ("gnus-button-valid-localpart-regexp" variable (:default-value "[a-z0-9$%(*-=?[_][^<>\")!;:,{}
-	 @]*") nil [265122 265351])
-            ("gnus-button-man-handler" variable (:default-value (quote manual-entry)) nil [265353 265700])
-            ("gnus-button-mid-or-mail-regexp" variable (:default-value (concat "\\b\\(<?" gnus-button-valid-localpart-regexp "@" gnus-button-valid-fqdn-regexp ">?\\)\\b")) nil [265702 265985])
-            ("gnus-button-prefer-mid-or-mail" variable (:default-value (quote gnus-button-mid-or-mail-heuristic)) nil [265987 266766])
-            ("gnus-button-mid-or-mail-heuristic-alist" variable (:default-value (quote ((-10.0 . ".+\\$.+@") (-10.0 . "#") (-10.0 . "\\*") (-5.0 . "\\+[^+]*\\+.*@") (-5.0 . "@[Nn][Ee][Ww][Ss]") (-5.0 . "@.*[Dd][Ii][Aa][Ll][Uu][Pp]") (-1.0 . "^[^a-z]+@") (-5.0 . "\\.[0-9][0-9]+.*@") (-5.0 . "[a-z].*[A-Z].*[a-z].*[A-Z].*@") (-3.0 . "[A-Z][A-Z][a-z][a-z].*@") (-5.0 . "\\...?.?@") (-2.0 . "^[0-9]") (-1.0 . "^[0-9][0-9]") (-3.0 . "^[0-9][0-9a-fA-F][0-9a-fA-F][^0-9a-fA-F]") (-5.0 . "^[0-9][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][^0-9a-fA-F]") (-3.0 . "[0-9][0-9][0-9][0-9][0-9][^0-9].*@") (-3.0 . "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][^0-9].*@") (-3.0 . "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9].*@") (25.0 . "-dated-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]+.*@") (-20.0 . "\\.fsf@") (-20.0 . "^slrn") (-20.0 . "^Pine") (-20.0 . "^alpine\\.") (-20.0 . "_-_") (-20.0 . "\\.ln@") (-30.0 . "@ID-[0-9]+\\.[a-zA-Z]+\\.dfncis\\.de") (-30.0 . "@4[Aa][Xx]\\.com") (10.0 . "^[^0-9]+@") (3.0 . "^[^0-9]+[0-9][0-9]?[0-9]?@") (3.0 . "@stud") (2.0 . "[a-z][a-z][._-][A-Z][a-z].*@") (0.5 . "^[A-Z][a-z]") (0.5 . "^[A-Z][a-z][a-z]") (1.5 . "^[A-Z][a-z][A-Z][a-z][^a-z]") (2.0 . "^[A-Z][a-z][A-Z][a-z][a-z][^a-z]")))) nil [266768 269077])
-            ("gnus-button-mid-or-mail-heuristic" function (:arguments ("mid-or-mail")) nil [269079 271738])
-            ("gnus-button-handle-mid-or-mail" function (:arguments ("mid-or-mail")) nil [271740 272711])
-            ("gnus-button-handle-custom" function (:arguments ("fun" "arg")) nil [272713 272985])
-            ("gnus-button-handle-describe-prefix" variable (:default-value "^\\(C-h\\|<?[Ff]1>?\\)") nil [272987 273055])
-            ("gnus-button-handle-describe-function" function (:arguments ("url")) nil [273057 273286])
-            ("gnus-button-handle-describe-variable" function (:arguments ("url")) nil [273288 273517])
-            ("gnus-button-handle-symbol" function (:arguments ("url")) nil [273519 273851])
-            ("gnus-button-handle-describe-key" function (:arguments ("url")) nil [273853 274218])
-            ("gnus-button-handle-apropos" function (:arguments ("url")) nil [274220 274403])
-            ("gnus-button-handle-apropos-command" function (:arguments ("url")) nil [274405 274607])
-            ("gnus-button-handle-apropos-variable" function (:arguments ("url")) nil [274609 274813])
-            ("gnus-button-handle-apropos-documentation" function (:arguments ("url")) nil [274815 275029])
-            ("gnus-button-handle-library" function (:arguments ("url")) nil [275031 275379])
-            ("gnus-button-man-level" variable (:default-value 5) nil [275381 275934])
-            ("gnus-button-emacs-level" variable (:default-value 5) nil [275936 276511])
-            ("gnus-button-message-level" variable (:default-value 5) nil [276513 276837])
-            ("gnus-button-browse-level" variable (:default-value 5) nil [276839 277168])
-            ("gnus-button-alist" variable (:default-value (quote (("<\\(url:[>
-	 ]*?\\)?\\(nntp\\|news\\):[>
-	 ]*\\([^>
-	 ]*@[^>
-	 ]*\\)>" 0 (>= gnus-button-message-level 0) gnus-button-handle-news 3) ((concat "\\b\\(nntp\\|news\\):\\(" gnus-button-valid-localpart-regexp "@[a-z0-9.-]+[a-z]\\)") 0 t gnus-button-handle-news 2) ("\\(\\b<\\(url:[>
-	 ]*\\)?\\(nntp\\|news\\):[>
-	 ]*\\(//\\)?\\([^>
-	 ]*\\)>\\)" 1 (>= gnus-button-message-level 0) gnus-button-fetch-group 5) ("\\b\\(nntp\\|news\\):\\(//\\)?\\([^'\">
-	 ]+\\)" 0 (>= gnus-button-message-level 0) gnus-button-fetch-group 3) ("\\bmid:\\(//\\)?\\([^'\">
-	 ]+@[^'\">
-	 /]+\\)" 0 (>= gnus-button-message-level 0) gnus-button-message-id 2) ("\\bin\\( +article\\| +message\\)? +\\(<\\([^
- @<>]+@[^
- @<>]+\\)>\\)" 2 (>= gnus-button-message-level 0) gnus-button-message-id 3) ("\\b\\(mid\\|message-id\\):? +\\(<\\([^
- @<>]+@[^
- @<>]+\\)>\\)" 2 (>= gnus-button-message-level 0) gnus-button-message-id 3) ("\\(<URL: *\\)mailto: *\\([^> 
-	]+\\)>" 0 (>= gnus-button-message-level 0) gnus-url-mailto 2) ("\\bmailto:\\([-a-z.@_+0-9%=?&/]+\\)" 0 (>= gnus-button-message-level 0) gnus-url-mailto 1) ("\\bmailto:\\([^ 
-	]+\\)" 0 (>= gnus-button-message-level 0) gnus-url-mailto 1) ("\\binfo://?\\([^'\">
-	]+\\)" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-info-url 1) ("\\binfo://\\([^'\">
-	 ]+\\)" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-info-url 1) ("\\binfo:\\([^('
-	
 \"><][^'
-	
 \"><]*\\)" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-info-url-gnome 1) ("<\\(info:\\(([^)]+)[^>
-
]*\\)\\)>" 1 (>= gnus-button-emacs-level 1) gnus-button-handle-info-url-kde 2) ("\\((Info-goto-node\\|(info\\)[ 	
-]*\\(\"[^\"]*\"\\))" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-info-url 2) ("\\b\\(C-h\\|<?[Ff]1>?\\)[ 	
-]+i[ 	
-]+d?[ 	
-]?m[ 	
-]+[^ ]+ ?[^ ]+[ 	
-]+RET\\([ 	
-]+i[ 	
-]+[^ ]+ ?[^ ]+[ 	
-]+RET\\([ 	
-,]*\\)\\)?" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-info-keystrokes 0) ("M-x[ 	
-]\\(customize-[^ ]+\\)[ 	
-]RET[ 	
-]\\([^ ]+\\)[ 	
-]RET\\>" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-custom 1 2) ("M-x[ 	
-]+apropos[ 	
-]+RET[ 	
-]+\\([^ 	
-]+\\)[ 	
-]+RET\\>" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-apropos 1) ("M-x[ 	
-]+apropos-command[ 	
-]+RET[ 	
-]+\\([^ 	
-]+\\)[ 	
-]+RET\\>" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-apropos-command 1) ("M-x[ 	
-]+apropos-variable[ 	
-]+RET[ 	
-]+\\([^ 	
-]+\\)[ 	
-]+RET\\>" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-apropos-variable 1) ("M-x[ 	
-]+apropos-documentation[ 	
-]+RET[ 	
-]+\\([^ 	
-]+\\)[ 	
-]+RET\\>" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-apropos-documentation 1) ("/\\([a-z][-a-z0-9]+\\.el\\)\\>[^.?]" 1 (>= gnus-button-emacs-level 8) gnus-button-handle-library 1) ("['`‘]\\([a-z][-a-z0-9]+\\.el\\)['’]" 1 (>= gnus-button-emacs-level 8) gnus-button-handle-library 1) ("['`‘]\\([a-z][a-z0-9]+-[a-z0-9]+-[-a-z0-9]*[a-z]\\|\\(gnus\\|message\\)-[-a-z]+\\)['’]" 0 (>= gnus-button-emacs-level 8) gnus-button-handle-symbol 1) ("['`‘]\\([a-z][a-z0-9]+-[a-z]+\\)['’]" 0 (>= gnus-button-emacs-level 9) gnus-button-handle-symbol 1) ("(setq[ 	
-]+\\([a-z][a-z0-9]+-[-a-z0-9]+\\)[ 	
-]+.+)" 1 (>= gnus-button-emacs-level 7) gnus-button-handle-describe-variable 1) ("\\bM-x[ 	
-]+\\([^ 	
-]+\\)[ 	
-]+RET\\>" 1 (>= gnus-button-emacs-level 7) gnus-button-handle-describe-function 1) ("\\b\\(C-h\\|<?[Ff]1>?\\)[ 	
-]+f[ 	
-]+\\([^ 	
-]+\\)[ 	
-]+RET\\>" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-function 2) ("\\b\\(C-h\\|<?[Ff]1>?\\)[ 	
-]+v[ 	
-]+\\([^ 	
-]+\\)[ 	
-]+RET\\>" 0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-variable 2) ("['`‘]\\(\\(C-h\\|<?[Ff]1>?\\)[ 	
-]+k[ 	
-]+\\([^'’]+\\)\\)['’]" 1 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-key 3) ("<URL: *\\([^
-<>]*\\)>" 1 (>= gnus-button-browse-level 0) gnus-button-embedded-url 1) ("\"URL: *\\([^
-\"]*\\)\"" 1 (>= gnus-button-browse-level 0) gnus-button-embedded-url 1) (gnus-button-url-regexp 0 (>= gnus-button-browse-level 0) browse-url 0) ("\\b\\([a-z][a-z]+([1-9])\\)\\W" 0 (and (>= gnus-button-man-level 1) (< gnus-button-man-level 3)) gnus-button-handle-man 1) ("\\b\\([a-z][-_.a-z0-9]+([1-9])\\)\\W" 0 (and (>= gnus-button-man-level 3) (< gnus-button-man-level 5)) gnus-button-handle-man 1) ("\\b\\(\\(?:[a-z][-+_.:a-z0-9]+([1-9][X1a-z]*)\\)\\|\\b\\(?:X([1-9])\\)\\)\\W" 0 (>= gnus-button-man-level 5) gnus-button-handle-man 1) ("^--- \\([^ .]+\\.el\\).*
-.*
-@@ -?\\([0-9]+\\)" 1 (>= gnus-button-message-level 4) gnus-button-patch 1 2) ("^\\*\\*\\* \\([^ .]+\\.el\\).*
-.*
-\\*+
-\\*\\*\\* \\([0-9]+\\)" 1 (>= gnus-button-message-level 4) gnus-button-patch 1 2) (gnus-button-mid-or-mail-regexp 0 (>= gnus-button-message-level 5) gnus-button-handle-mid-or-mail 1)))) nil [277170 284985])
-            ("put" code nil nil [284986 285034])
-            ("gnus-header-button-alist" variable (:default-value (quote (("^\\(References\\|Message-I[Dd]\\|^In-Reply-To\\):" "<[^<>]+>" 0 (>= gnus-button-message-level 0) gnus-button-message-id 0) ("^\\(From\\|Reply-To\\):" ": *\\(.+\\)$" 1 (>= gnus-button-message-level 0) gnus-button-reply 1) ("^\\(Cc\\|To\\):" "[^ 	
-<>,()\"]+@[^ 	
-<>,()\"]+" 0 (>= gnus-button-message-level 0) gnus-msg-mail 0) ("^X-[Uu][Rr][Ll]:" gnus-button-url-regexp 0 (>= gnus-button-browse-level 0) browse-url 0) ("^Subject:" gnus-button-url-regexp 0 (>= gnus-button-browse-level 0) browse-url 0) ("^[^:]+:" gnus-button-url-regexp 0 (>= gnus-button-browse-level 0) browse-url 0) ("^OpenPGP:.*url=" gnus-button-url-regexp 0 (>= gnus-button-browse-level 0) gnus-button-openpgp 0) ("^[^:]+:" "\\bmailto:\\([-a-z.@_+0-9%=?&/]+\\)" 0 (>= gnus-button-message-level 0) gnus-url-mailto 1) ("^[^:]+:" "\\(<\\(url: \\)?\\(nntp\\|news\\):\\([^>
- ]*\\)>\\)" 1 (>= gnus-button-message-level 0) gnus-button-message-id 4)))) nil [285036 286731])
-            ("put" code nil nil [286732 286787])
-            ("gnus-article-push-button" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [286804 287319])
-            ("gnus-article-press-button" function (:user-visible-flag t) nil [287321 287678])
-            ("gnus-article-highlight" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [287680 288193])
-            ("gnus-article-highlight-some" function
-               (:user-visible-flag t
-                :arguments ("_force"))
-                nil [288195 288600])
-            ("gnus-article-highlight-headers" function (:user-visible-flag t) nil [288602 289662])
-            ("gnus-article-highlight-signature" function (:user-visible-flag t) nil [289664 290361])
-            ("gnus-button-in-region-p" function (:arguments ("b" "e" "prop")) nil [290363 290487])
-            ("gnus-article-add-buttons" function (:user-visible-flag t) nil [290489 291725])
-            ("gnus-article-extend-url-button" function (:arguments ("beg" "start" "end")) nil [291727 293839])
-            ("gnus-article-add-buttons-to-head" function (:user-visible-flag t) nil [293883 294829])
-            ("gnus-article-add-button" function (:arguments ("from" "to" "fun" "data" "text")) nil [294856 295451])
-            ("gnus-article-copy-string" function (:user-visible-flag t) nil [295453 295775])
-            ("gnus-article-set-globals" function nil nil [295802 295913])
-            ("gnus-signature-toggle" function (:arguments ("end")) nil [295915 296598])
-            ("gnus-button-push" function (:arguments ("marker-and-entry")) nil [296600 297987])
-            ("gnus-parse-news-url" function (:arguments ("url")) nil [297989 298881])
-            ("nntp-port-number" variable nil nil [298883 298908])
-            ("gnus-button-handle-news" function (:arguments ("url")) nil [298910 299544])
-            ("gnus-button-patch" function
-               (:user-visible-flag t
-                :arguments ("library" "line"))
-                nil [299546 299887])
-            ("gnus-button-handle-man" function (:arguments ("url")) nil [299889 300222])
-            ("gnus-button-handle-info-url" function (:arguments ("url")) nil [300224 300768])
-            ("gnus-button-handle-info-url-gnome" function (:arguments ("url")) nil [300770 301170])
-            ("gnus-button-handle-info-url-kde" function (:arguments ("url")) nil [301172 301299])
-            ("declare-function" code nil nil [301333 301395])
-            ("declare-function" code nil nil [301396 301443])
-            ("gnus-button-handle-info-keystrokes" function (:arguments ("url")) nil [301445 302539])
-            ("pgg-snarf-keys-region" function (:prototype-flag t) nil [302541 302580])
-            ("declare-function" code nil nil [302644 302713])
-            ("gnus-button-openpgp" function (:arguments ("url")) nil [302715 302982])
-            ("gnus-button-message-id" function (:arguments ("message-id")) nil [302984 303137])
-            ("gnus-button-fetch-group" function (:arguments ("address" "_ignore")) nil [303139 304121])
-            ("gnus-url-parse-query-string" function (:arguments ("query" "downcase")) nil [304123 304741])
-            ("gnus-url-mailto" function (:arguments ("url")) nil [304743 305706])
-            ("gnus-button-embedded-url" function (:arguments ("address")) nil [305708 305837])
-            ("gnus-next-page-line-format" variable (:default-value "%{%(Next page...%)%}
-") nil [305885 305945])
-            ("gnus-prev-page-line-format" variable (:default-value "%{%(Previous page...%)%}
-") nil [305946 306010])
-            ("gnus-prev-page-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mouse-2] (quote gnus-button-prev-page)) (define-key map "
" (quote gnus-button-prev-page)) map)) nil [306012 306187])
-            ("gnus-next-page-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mouse-2] (quote gnus-button-next-page)) (define-key map "
" (quote gnus-button-next-page)) map)) nil [306189 306364])
-            ("gnus-insert-prev-page-button" function nil nil [306366 306961])
-            ("gnus-button-next-page" function
-               (:user-visible-flag t
-                :arguments ("_args" "_more-args"))
-                nil [306963 307216])
-            ("gnus-button-prev-page" function
-               (:user-visible-flag t
-                :arguments ("_args" "_more-args"))
-                nil [307218 307471])
-            ("gnus-insert-next-page-button" function nil nil [307473 308138])
-            ("gnus-article-button-next-page" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [308140 308383])
-            ("gnus-article-button-prev-page" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [308385 308628])
-            ("gnus-decode-header-methods" variable (:default-value (quote (mail-decode-encoded-word-region))) nil [308630 309128])
-            ("gnus-decode-header-methods-cache" variable nil nil [309130 309175])
-            ("gnus-multi-decode-header" function (:arguments ("start" "end")) nil [309177 309944])
-            ("gnus-inhibit-article-treatments" variable nil nil [309989 310033])
-            ("part-number" variable nil nil [310057 310077])
-            ("total-parts" variable nil nil [310129 310149])
-            ("gnus-treat-type" variable nil nil [310201 310225])
-            ("gnus-treat-condition" variable nil nil [310226 310255])
-            ("gnus-treat-length" variable nil nil [310256 310282])
-            ("gnus-treat-article" function (:arguments ("condition" "part-num" "total" "type")) nil [310284 311389])
-            ("gnus-treat-predicate" function (:arguments ("val")) nil [311391 312354])
-            ("gnus-article-encrypt-body" function
-               (:user-visible-flag t
-                :arguments ("protocol" "n"))
-                nil [312356 315139])
-            ("gnus-mime-security-button-line-format" variable (:default-value "%{%([[%t:%i]%D]%)%}
-") nil [315141 315340])
-            ("gnus-mime-security-button-end-line-format" variable (:default-value "%{%([[End of %t]%D]%)%}
-") nil [315342 315549])
-            ("gnus-mime-security-button-line-format-alist" variable (:default-value (quote ((116 gnus-tmp-type 115) (105 gnus-tmp-info 115) (100 gnus-tmp-details 115) (68 gnus-tmp-pressed-details 115)))) nil [315551 315722])
-            ("gnus-mime-security-button-commands" variable (:default-value (quote ((gnus-article-press-button "
" "Show Detail") (undefined "v") (undefined "t") (undefined "C") (gnus-mime-security-save-part "o" "Save...") (undefined "") (undefined "r") (undefined "d") (undefined "c") (undefined "i") (undefined "E") (undefined "e") (undefined "p") (gnus-mime-security-pipe-part "|" "Pipe To Command...") (undefined ".")))) nil [315724 316171])
-            ("gnus-mime-security-button-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mouse-2] (quote gnus-article-push-button)) (define-key map [down-mouse-3] (quote gnus-mime-security-button-menu)) (dolist (c gnus-mime-security-button-commands) (define-key map (cadr c) (car c))) map)) nil [316173 316473])
-            ("easy-menu-define" code nil nil [316475 316769])
-            ("gnus-mime-security-button-menu" function
-               (:user-visible-flag t
-                :arguments ("event" "prefix"))
-                nil [316771 317142])
-            ("gnus-mime-security-details-buffer" variable nil nil [317144 317190])
-            ("gnus-mime-security-button-pressed" variable nil nil [317192 317238])
-            ("gnus-mime-security-show-details-inline" variable (:default-value t) nil [317240 317341])
-            ("gnus-mime-security-verify-or-decrypt" function (:arguments ("handle")) nil [317343 318103])
-            ("gnus-mime-security-show-details" function (:arguments ("handle")) nil [318105 319443])
-            ("gnus-mime-security-press-button" function (:arguments ("handle")) nil [319445 319669])
-            ("gnus-insert-mime-security-button" function (:arguments ("handle" "_displayed")) nil [319671 321384])
-            ("gnus-mime-display-security" function (:arguments ("handle")) nil [321386 322019])
-            ("gnus-mime-security-run-function" function (:arguments ("function")) nil [322021 322703])
-            ("gnus-mime-security-save-part" function (:user-visible-flag t) nil [322705 322850])
-            ("gnus-mime-security-pipe-part" function (:user-visible-flag t) nil [322852 323010])
-            ("gnus-art" package nil nil [323012 323031])
-            ("run-hooks" code nil nil [323033 323064]))          
-      :file "gnus-art.el"
-      :pointmax 323092
-      :fsize 323109
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 182392 . 182393) (symbol 180046 . 180063) (open-paren 180045 . 180046) (close-paren 157313 . 157314) (symbol 155393 . 155409) (open-paren 155392 . 155393) (close-paren 916 . 917) (symbol 883 . 900) (open-paren 882 . 883)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus" include nil nil [861 876])
-            ("gnus-cache" include nil nil [877 898])
-            ("nnmail" include nil nil [899 916])
-            ("nnvirtual" include nil nil [917 937])
-            ("gnus-sum" include nil nil [938 957])
-            ("gnus-score" include nil nil [958 979])
-            ("gnus-srvr" include nil nil [980 1000])
-            ("gnus-util" include nil nil [1001 1021])
-            ("timer" include nil nil [1022 1038])
-            ("cl" include nil nil [1060 1073])
-            ("gnus-server-update-server" function (:prototype-flag t) nil [1076 1125])
-            ("gnus-agent-customize-category" function (:prototype-flag t) nil [1126 1178])
-            ("gnus-agent-directory" variable (:default-value (nnheader-concat gnus-directory "agent/")) nil [1180 1341])
-            ("gnus-agent-plugged-hook" variable nil nil [1343 1462])
-            ("gnus-agent-unplugged-hook" variable nil nil [1464 1587])
-            ("gnus-agent-fetched-hook" variable nil nil [1589 1727])
-            ("gnus-agent-handle-level" variable (:default-value gnus-level-subscribed) nil [1729 1901])
-            ("gnus-agent-expire-days" variable (:default-value 7) nil [1903 2116])
-            ("gnus-agent-expire-all" variable nil nil [2118 2302])
-            ("gnus-agent-group-mode-hook" variable nil nil [2304 2422])
-            ("gnus-agent-summary-mode-hook" variable nil nil [2424 2546])
-            ("gnus-agent-server-mode-hook" variable nil nil [2548 2669])
-            ("gnus-agent-confirmation-function" variable (:default-value (quote y-or-n-p)) nil [2671 2826])
-            ("gnus-agent-synchronize-flags" variable nil nil [2828 3265])
-            ("gnus-agent-go-online" variable (:default-value (quote ask)) nil [3267 3546])
-            ("gnus-agent-mark-unread-after-downloaded" variable (:default-value t) nil [3548 3720])
-            ("gnus-agent-download-marks" variable (:default-value (quote (download))) nil [3722 3876])
-            ("gnus-agent-consider-all-articles" variable nil nil [3878 4438])
-            ("gnus-agent-max-fetch-size" variable (:default-value 10000000) nil [4440 4679])
-            ("gnus-agent-enable-expiration" variable (:default-value (quote ENABLE)) nil [4681 5250])
-            ("gnus-agent-expire-unagentized-dirs" variable (:default-value t) nil [5252 5570])
-            ("gnus-agent-auto-agentize-methods" variable nil nil [5572 5880])
-            ("gnus-agent-queue-mail" variable (:default-value t) nil [5882 6249])
-            ("gnus-agent-prompt-send-queue" variable nil nil [6251 6429])
-            ("gnus-agent-article-alist-save-format" variable (:default-value 1) nil [6431 6925])
-            ("gnus-agent-history-buffers" variable nil nil [6951 6990])
-            ("gnus-agent-buffer-alist" variable nil nil [6991 7027])
-            ("gnus-agent-article-alist" variable nil nil [7028 7719])
-            ("gnus-agent-group-alist" variable nil nil [7720 7755])
-            ("gnus-category-alist" variable nil nil [7756 7788])
-            ("gnus-agent-current-history" variable nil nil [7789 7828])
-            ("gnus-agent-overview-buffer" variable nil nil [7829 7868])
-            ("gnus-category-predicate-cache" variable nil nil [7869 7911])
-            ("gnus-category-group-cache" variable nil nil [7912 7950])
-            ("gnus-agent-spam-hashtb" variable nil nil [7951 7986])
-            ("gnus-agent-file-name" variable nil nil [7987 8020])
-            ("gnus-agent-file-coding-system" variable (:default-value (quote raw-text)) nil [8021 8069])
-            ("gnus-agent-file-loading-cache" variable nil nil [8070 8112])
-            ("gnus-agent-total-fetched-hashtb" variable nil nil [8113 8157])
-            ("gnus-agent-inhibit-update-total-fetched-for" variable nil nil [8158 8214])
-            ("gnus-agent-need-update-total-fetched-for" variable nil nil [8215 8268])
-            ("gnus-headers" variable nil nil [8291 8312])
-            ("gnus-score" variable nil nil [8313 8332])
-            ("gnus-open-agent" function nil nil [8353 8640])
-            ("gnus-agent-create-buffer" function nil nil [8642 8920])
-            ("gnus-add-shutdown" code nil nil [8922 8965])
-            ("gnus-close-agent" function nil nil [8967 9144])
-            ("gnus-agent-with-refreshed-group" function (:arguments ("group" "body")) nil [9177 9685])
-            ("gnus-agent-read-file" function (:arguments ("file")) nil [9687 9903])
-            ("gnus-agent-method" function nil nil [9905 10086])
-            ("gnus-agent-directory" function nil nil [10088 10266])
-            ("gnus-agent-lib-file" function (:arguments ("file")) nil [10268 10470])
-            ("gnus-agent-cat-set-property" function (:arguments ("category" "property" "value")) nil [10472 10985])
-            ("gnus-agent-cat-defaccessor" function (:arguments ("name" "prop-name")) nil [11008 11636])
-            ("gnus-agent-cat-name" function (:arguments ("category")) nil [11642 11702])
-            ("gnus-agent-cat-defaccessor" code nil nil [11704 11796])
-            ("gnus-agent-cat-defaccessor" code nil nil [11797 11892])
-            ("gnus-agent-cat-defaccessor" code nil nil [11893 11977])
-            ("gnus-agent-cat-defaccessor" code nil nil [11978 12066])
-            ("gnus-agent-cat-defaccessor" code nil nil [12067 12157])
-            ("gnus-agent-cat-defaccessor" code nil nil [12158 12249])
-            ("gnus-agent-cat-defaccessor" code nil nil [12250 12337])
-            ("gnus-agent-cat-defaccessor" code nil nil [12338 12425])
-            ("gnus-agent-cat-defaccessor" code nil nil [12426 12509])
-            ("gnus-agent-cat-defaccessor" code nil nil [12510 12613])
-            ("defsetf" code nil nil [12813 12870])
-            ("gnus-agent-set-cat-groups" function (:arguments ("category" "groups")) nil [12872 14353])
-            ("gnus-agent-cat-make" function (:arguments ("name" "default-agent-predicate")) nil [14355 14498])
-            ("gnus-agent-read-group" function nil nil [14500 14772])
-            ("gnus-agent-start-fetch" function nil nil [14805 14922])
-            ("gnus-agent-stop-fetch" function nil nil [14924 15090])
-            ("gnus-agent-with-fetch" function (:arguments ("forms")) nil [15092 15284])
-            ("put" code nil nil [15286 15338])
-            ("put" code nil nil [15339 15393])
-            ("gnus-agent-append-to-list" function (:arguments ("tail" "value")) nil [15395 15493])
-            ("gnus-agent-message" function (:arguments ("level" "args")) nil [15495 15600])
-            ("gnus-agent-mode-hook" variable nil nil [15632 15706])
-            ("gnus-agent-mode" variable nil nil [15708 15736])
-            ("gnus-agent-mode-status" variable (:default-value (quote (gnus-agent-mode " Plugged"))) nil [15737 15798])
-            ("gnus-agent-mode" function nil nil [15800 17110])
-            ("gnus-agent-group-mode-map" variable (:default-value (make-sparse-keymap)) nil [17112 17167])
-            ("gnus-define-keys" code nil nil [17168 17505])
-            ("gnus-agent-group-make-menu-bar" function nil nil [17507 18238])
-            ("gnus-agent-summary-mode-map" variable (:default-value (make-sparse-keymap)) nil [18240 18297])
-            ("gnus-define-keys" code nil nil [18298 18606])
-            ("gnus-agent-summary-make-menu-bar" function nil nil [18608 19133])
-            ("gnus-agent-server-mode-map" variable (:default-value (make-sparse-keymap)) nil [19135 19191])
-            ("gnus-define-keys" code nil nil [19192 19331])
-            ("gnus-agent-server-make-menu-bar" function nil nil [19333 19654])
-            ("gnus-agent-make-mode-line-string" function (:arguments ("string" "mouse-button" "mouse-func")) nil [19656 19860])
-            ("gnus-agent-toggle-plugged" function
-               (:user-visible-flag t
-                :arguments ("set-to"))
-                nil [19862 20864])
-            ("gnus-agent-while-plugged" function (:arguments ("body")) nil [20866 21107])
-            ("put" code nil nil [21109 21164])
-            ("put" code nil nil [21165 21222])
-            ("gnus-agent-close-connections" function nil nil [21224 21421])
-            ("gnus-unplugged" function (:user-visible-flag t) nil [21438 21540])
-            ("gnus-plugged" function (:user-visible-flag t) nil [21557 21653])
-            ("gnus-slave-unplugged" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [21670 21820])
-            ("gnus-agentize" function (:user-visible-flag t) nil [21837 23058])
-            ("gnus-agent-queue-setup" function (:arguments ("group-name")) nil [23060 23643])
-            ("gnus-agent-send-mail" function nil nil [23645 24105])
-            ("gnus-agent-insert-meta-information" function (:arguments ("type" "method")) nil [24107 24657])
-            ("gnus-agent-restore-gcc" function nil nil [24659 24917])
-            ("gnus-agent-any-covered-gcc" function nil nil [24919 25348])
-            ("gnus-agent-possibly-save-gcc" function nil nil [25365 25696])
-            ("gnus-agent-possibly-do-gcc" function nil nil [25698 25852])
-            ("gnus-agent-fetch-groups" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [25887 26139])
-            ("gnus-agent-fetch-group" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [26141 26724])
-            ("gnus-agent-add-group" function
-               (:user-visible-flag t
-                :arguments ("category" "arg"))
-                nil [26726 27435])
-            ("gnus-agent-remove-group" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [27437 27808])
-            ("gnus-agent-synchronize-flags" function (:user-visible-flag t) nil [27810 28112])
-            ("gnus-agent-possibly-synchronize-flags" function (:user-visible-flag t) nil [28114 28459])
-            ("gnus-agent-synchronize-flags-server" function (:arguments ("method")) nil [28461 29622])
-            ("gnus-agent-possibly-synchronize-flags-server" function (:arguments ("method")) nil [29624 30127])
-            ("gnus-agent-rename-group" function (:arguments ("old-group" "new-group")) nil [30144 31633])
-            ("gnus-agent-delete-group" function (:arguments ("group")) nil [31650 32582])
-            ("gnus-agent-add-server" function (:user-visible-flag t) nil [32618 33289])
-            ("gnus-agent-remove-server" function (:user-visible-flag t) nil [33291 33929])
-            ("gnus-agent-read-servers" function nil nil [33931 34455])
-            ("gnus-agent-read-servers-validate" function nil nil [34457 35162])
-            ("gnus-agent-read-servers-validate-native" function (:arguments ("native-method")) nil [35164 35479])
-            ("gnus-agent-write-servers" function nil nil [35481 35884])
-            ("gnus-agent-mark-article" function
-               (:user-visible-flag t
-                :arguments ("n" "unmark"))
-                nil [35916 36591])
-            ("gnus-agent-unmark-article" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [36593 36866])
-            ("gnus-agent-toggle-mark" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [36868 37143])
-            ("gnus-summary-set-agent-mark" function (:arguments ("article" "unmark")) nil [37145 37953])
-            ("gnus-agent-get-undownloaded-list" function nil nil [37970 40236])
-            ("gnus-agent-catchup" function (:user-visible-flag t) nil [40238 40867])
-            ("gnus-agent-summary-fetch-series" function (:user-visible-flag t) nil [40869 41956])
-            ("gnus-agent-summary-fetch-group" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [41958 43485])
-            ("gnus-agent-fetch-selected-article" function nil nil [43487 44060])
-            ("gnus-agent-synchronize-group-flags" function (:arguments ("group" "actions" "server")) nil [44094 45871])
-            ("gnus-agent-save-active" function (:arguments ("method" "groups-p")) nil [45873 46646])
-            ("gnus-agent-write-active" function (:arguments ("file" "new")) nil [46648 47049])
-            ("gnus-agent-possibly-alter-active" function (:arguments ("group" "active" "info")) nil [47066 49313])
-            ("gnus-agent-save-group-info" function (:arguments ("method" "group" "active")) nil [49315 50581])
-            ("gnus-agent-get-group-info" function (:arguments ("method" "group")) nil [50583 51579])
-            ("gnus-agent-decoded-group-names" variable nil nil [51581 51677])
-            ("gnus-agent-decoded-group-name" function (:arguments ("group")) nil [51679 52008])
-            ("gnus-agent-group-path" function (:arguments ("group")) nil [52010 52695])
-            ("gnus-agent-group-pathname" function (:arguments ("group")) nil [52697 53174])
-            ("gnus-agent-get-function" function (:arguments ("method")) nil [53176 53299])
-            ("gnus-agent-covered-methods" function nil nil [53301 53475])
-            ("gnus-agent-history-buffer" function nil nil [53500 53599])
-            ("gnus-agent-open-history" function nil nil [53601 54107])
-            ("gnus-agent-close-history" function nil nil [54109 54378])
-            ("gnus-agent-fetch-articles" function (:arguments ("group" "articles")) nil [54402 60693])
-            ("gnus-agent-unfetch-articles" function (:arguments ("group" "articles")) nil [60695 61978])
-            ("gnus-agent-crosspost" function (:arguments ("crosses" "article" "date")) nil [61980 63216])
-            ("gnus-agent-backup-overview-buffer" function nil nil [63218 63707])
-            ("gnus-agent-check-overview-buffer" function (:arguments ("buffer")) nil [63709 65118])
-            ("gnus-agent-flush-server" function (:arguments ("server-or-method")) nil [65120 65699])
-            ("gnus-agent-flush-group" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [65701 66796])
-            ("gnus-agent-flush-cache" function (:user-visible-flag t) nil [66798 67883])
-            ("gnus-agent-find-parameter" function (:arguments ("group" "symbol")) nil [67900 68767])
-            ("gnus-agent-fetch-headers" function (:arguments ("group")) nil [68769 74173])
-            ("gnus-agent-read-article-number" function nil nil [74175 74987])
-            ("gnus-agent-copy-nov-line" function (:arguments ("article")) nil [74989 75590])
-            ("gnus-agent-braid-nov" function (:arguments ("articles" "file")) nil [75592 78347])
-            ("gnus-agent-read-agentview" variable nil nil [78441 78475])
-            ("gnus-agent-load-alist" function (:arguments ("group")) nil [78477 78968])
-            ("gnus-agent-read-agentview" function (:arguments ("file")) nil [78970 81134])
-            ("gnus-agent-save-alist" function (:arguments ("group" "articles" "state")) nil [81136 83111])
-            ("gnus-agent-article-local" variable nil nil [83113 83150])
-            ("gnus-agent-article-local-times" variable nil nil [83151 83194])
-            ("gnus-agent-file-loading-local" variable nil nil [83195 83237])
-            ("gnus-agent-load-local" function (:arguments ("method")) nil [83239 83998])
-            ("gnus-agent-read-and-cache-local" function (:arguments ("file")) nil [84000 84403])
-            ("gnus-agent-read-local" function (:arguments ("file")) nil [84405 85893])
-            ("gnus-agent-save-local" function (:arguments ("force")) nil [85895 87107])
-            ("gnus-agent-get-local" function (:arguments ("group" "gmane" "method")) nil [87109 88041])
-            ("gnus-agent-set-local" function (:arguments ("group" "min" "max" "gmane" "method" "local")) nil [88043 88854])
-            ("gnus-agent-article-name" function (:arguments ("article" "group")) nil [88856 89018])
-            ("gnus-agent-batch-confirmation" function (:arguments ("msg")) nil [89020 89132])
-            ("gnus-agent-batch-fetch" function (:user-visible-flag t) nil [89149 89368])
-            ("gnus-agent-fetch-session" function (:user-visible-flag t) nil [89370 91089])
-            ("gnus-agent-short-article" variable (:default-value 500) nil [91091 91184])
-            ("gnus-agent-long-article" variable (:default-value 1000) nil [91186 91277])
-            ("gnus-agent-low-score" variable nil nil [91279 91375])
-            ("gnus-agent-high-score" variable nil nil [91377 91476])
-            ("gnus-agent-fetch-group-1" function (:arguments ("group" "method")) nil [91478 99963])
-            ("gnus-category-mode-hook" variable nil nil [99998 100080])
-            ("gnus-category-line-format" variable (:default-value "     %(%20c%): %g
-") nil [100082 100357])
-            ("gnus-category-mode-line-format" variable (:default-value "Gnus: %%b") nil [100359 100467])
-            ("gnus-agent-predicate" variable (:default-value (quote false)) nil [100469 100573])
-            ("gnus-category-buffer" variable (:default-value "*Agent Category*") nil [100601 100649])
-            ("gnus-tmp-name" variable nil nil [100651 100673])
-            ("gnus-tmp-groups" variable nil nil [100674 100698])
-            ("gnus-category-line-format-alist" variable (:default-value (\` ((99 gnus-tmp-name 115) (103 gnus-tmp-groups 100)))) nil [100700 100795])
-            ("gnus-category-mode-line-format-alist" variable (:default-value (\` ((117 user-defined 115)))) nil [100797 100868])
-            ("gnus-category-line-format-spec" variable nil nil [100870 100913])
-            ("gnus-category-mode-line-format-spec" variable nil nil [100914 100962])
-            ("gnus-category-mode-map" variable nil nil [100964 100999])
-            ("put" code nil nil [101000 101046])
-            ("unless" code nil nil [101048 101556])
-            ("gnus-category-menu-hook" variable nil nil [101558 101677])
-            ("gnus-category-make-menu-bar" function nil nil [101679 102296])
-            ("define-derived-mode" code nil nil [102298 102902])
-            ("defalias" code nil nil [102904 102961])
-            ("gnus-category-insert-line" function (:arguments ("category")) nil [102963 103327])
-            ("gnus-enter-category-buffer" function (:user-visible-flag t) nil [103329 103507])
-            ("gnus-category-setup-buffer" function nil nil [103509 103690])
-            ("gnus-category-prepare" function nil nil [103692 103999])
-            ("gnus-category-name" function nil nil [104001 104144])
-            ("gnus-category-read" function nil nil [104146 105537])
-            ("gnus-category-write" function nil nil [105539 106280])
-            ("gnus-category-edit-predicate" function
-               (:user-visible-flag t
-                :arguments ("category"))
-                nil [106282 107001])
-            ("gnus-category-edit-score" function
-               (:user-visible-flag t
-                :arguments ("category"))
-                nil [107003 107731])
-            ("gnus-category-edit-groups" function
-               (:user-visible-flag t
-                :arguments ("category"))
-                nil [107733 108408])
-            ("gnus-category-kill" function
-               (:user-visible-flag t
-                :arguments ("category"))
-                nil [108410 108711])
-            ("gnus-category-copy" function
-               (:user-visible-flag t
-                :arguments ("category" "to"))
-                nil [108713 109169])
-            ("gnus-category-add" function
-               (:user-visible-flag t
-                :arguments ("category"))
-                nil [109171 109472])
-            ("gnus-category-list" function (:user-visible-flag t) nil [109474 109570])
-            ("gnus-category-exit" function (:user-visible-flag t) nil [109572 109718])
-            ("gnus-category-not" variable (:default-value (list (quote !) (quote not) (intern (format "%c" 172)))) nil [109776 109844])
-            ("gnus-category-predicate-alist" variable (:default-value (quote ((spam . gnus-agent-spam-p) (short . gnus-agent-short-p) (long . gnus-agent-long-p) (low . gnus-agent-low-scored-p) (high . gnus-agent-high-scored-p) (read . gnus-agent-read-p) (true . gnus-agent-true) (false . gnus-agent-false)))) nil [109846 110216])
-            ("gnus-agent-spam-p" function nil nil [110218 110646])
-            ("gnus-agent-short-p" function nil nil [110648 110785])
-            ("gnus-agent-long-p" function nil nil [110787 110921])
-            ("gnus-agent-low-scored-p" function nil nil [110923 111046])
-            ("gnus-agent-high-scored-p" function nil nil [111048 111174])
-            ("gnus-agent-read-p" function nil nil [111176 111362])
-            ("gnus-category-make-function" function (:arguments ("predicate")) nil [111364 111625])
-            ("gnus-agent-true" function nil nil [111627 111671])
-            ("gnus-agent-false" function nil nil [111673 111722])
-            ("gnus-category-make-function-1" function (:arguments ("predicate")) nil [111724 112315])
-            ("gnus-get-predicate" function (:arguments ("predicate")) nil [112317 112591])
-            ("gnus-predicate-implies-unread" function (:arguments ("predicate")) nil [112593 112961])
-            ("gnus-function-implies-unread-1" function (:arguments ("function")) nil [112963 115391])
-            ("gnus-group-category" function (:arguments ("group")) nil [115393 115872])
-            ("gnus-agent-expire-current-dirs" variable nil nil [115874 115913])
-            ("gnus-agent-expire-stats" variable nil nil [115914 115946])
-            ("gnus-agent-expire-group" function
-               (:user-visible-flag t
-                :arguments ("group" "articles" "force"))
-                nil [115948 117845])
-            ("gnus-agent-expire-group-1" function (:arguments ("group" "overview" "active" "articles" "force")) nil [117847 130680])
-            ("gnus-agent-expire" function
-               (:user-visible-flag t
-                :arguments ("articles" "group" "force"))
-                nil [130682 133108])
-            ("gnus-agent-expire-done-message" function nil nil [133110 133689])
-            ("gnus-agent-expire-unagentized-dirs" function nil nil [133691 137362])
-            ("gnus-agent-batch" function (:user-visible-flag t) nil [137379 137679])
-            ("gnus-agent-unread-articles" function (:arguments ("group")) nil [137681 138652])
-            ("gnus-agent-uncached-articles" function (:arguments ("articles" "group" "cached-header")) nil [138654 140165])
-            ("gnus-agent-retrieve-headers" function (:arguments ("articles" "group" "fetch-old")) nil [140167 145872])
-            ("gnus-agent-request-article" function (:arguments ("article" "group")) nil [145874 146609])
-            ("gnus-agent-store-article" function (:arguments ("article" "group")) nil [146611 147282])
-            ("gnus-agent-regenerate-group" function
-               (:user-visible-flag t
-                :arguments ("group" "reread"))
-                nil [147284 155245])
-            ("gnus-agent-regenerate" function
-               (:user-visible-flag t
-                :arguments ("_clean" "reread"))
-                nil [155262 155809])
-            ("gnus-agent-go-online" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [155811 156195])
-            ("gnus-agent-toggle-group-plugged" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [156197 156775])
-            ("gnus-agent-group-covered-p" function (:arguments ("group")) nil [156777 156869])
-            ("gnus-agent-update-files-total-fetched-for" function (:arguments ("group" "delta" "method" "path")) nil [156871 158165])
-            ("gnus-agent-update-view-total-fetched-for" function (:arguments ("group" "agent-over" "method" "path")) nil [158167 159133])
-            ("gnus-agent-total-fetched-for" function (:arguments ("group" "method" "no-inhibit")) nil [159135 159959])
-            ("gnus-agent" package nil nil [159961 159982]))          
-      :file "gnus-agent.el"
-      :pointmax 160012
-      :fsize 160011
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 11639 . 11640) (symbol 10988 . 11005) (open-paren 10987 . 10988) (close-paren 1073 . 1074) (symbol 1040 . 1057) (open-paren 1039 . 1040)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [897 910])
-            ("gnus" include nil nil [913 928])
-            ("gnus-sum" include nil nil [929 948])
-            ("unless" code nil nil [971 1054])
-            ("gnus-cache-active-file" variable (:default-value (expand-file-name "active" gnus-cache-directory)) nil [1057 1204])
-            ("gnus-cache-enter-articles" variable (:default-value (quote (ticked dormant))) nil [1206 1405])
-            ("gnus-cache-remove-articles" variable (:default-value (quote (read))) nil [1407 1598])
-            ("gnus-cacheable-groups" variable nil nil [1600 1938])
-            ("gnus-uncacheable-groups" variable nil nil [1940 2287])
-            ("gnus-cache-overview-coding-system" variable (:default-value (quote raw-text)) nil [2289 2385])
-            ("gnus-cache-coding-system" variable (:default-value (quote raw-text)) nil [2387 2474])
-            ("gnus-cache-removable-articles" variable nil nil [2504 2546])
-            ("gnus-cache-buffer" variable nil nil [2547 2577])
-            ("gnus-cache-active-hashtb" variable nil nil [2578 2615])
-            ("gnus-cache-active-altered" variable nil nil [2616 2654])
-            ("gnus-cache-total-fetched-hashtb" variable nil nil [2655 2699])
-            ("declare-function" code nil nil [2701 2772])
-            ("nnml-generate-nov-databases-directory" function (:prototype-flag t) nil [2774 2830])
-            ("nnvirtual-find-group-art" function (:prototype-flag t) nil [2831 2879])
-            ("gnus-cache-open" function nil nil [2917 3113])
-            ("ignore-errors" code nil nil [3184 3245])
-            ("gnus-cache-close" function nil nil [3247 3393])
-            ("gnus-cache-save-buffers" function nil nil [3395 4780])
-            ("gnus-cache-possibly-enter-article" function (:arguments ("group" "article" "ticked" "dormant" "unread" "force")) nil [4782 7443])
-            ("gnus-cache-enter-remove-article" function (:arguments ("article")) nil [7445 7605])
-            ("gnus-cache-possibly-remove-articles" function nil nil [7607 8165])
-            ("gnus-cache-possibly-remove-articles-1" function nil nil [8167 8995])
-            ("gnus-cache-request-article" function (:arguments ("article" "group")) nil [8997 9413])
-            ("gnus-cache-possibly-alter-active" function (:arguments ("group" "active")) nil [9415 9841])
-            ("gnus-cache-retrieve-headers" function (:arguments ("articles" "group" "fetch-old")) nil [9843 11457])
-            ("gnus-cache-enter-article" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [11459 12266])
-            ("gnus-cache-remove-article" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [12268 13241])
-            ("gnus-cached-article-p" function (:arguments ("article")) nil [13243 13377])
-            ("gnus-summary-insert-cached-articles" function (:user-visible-flag t) nil [13379 13898])
-            ("gnus-summary-limit-include-cached" function (:user-visible-flag t) nil [13900 14242])
-            ("gnus-cache-change-buffer" function (:arguments ("group")) nil [14269 15209])
-            ("gnus-cache-member-of-class" function (:arguments ("class" "ticked" "dormant" "unread")) nil [15264 15522])
-            ("gnus-cache-decoded-group-names" variable nil nil [15524 15737])
-            ("gnus-cache-unified-group-names" variable nil nil [15739 16350])
-            ("gnus-cache-decoded-group-name" function (:arguments ("group")) nil [16352 16880])
-            ("gnus-cache-file-name" function (:arguments ("group" "article")) nil [16882 17611])
-            ("gnus-cache-update-article" function (:arguments ("group" "article")) nil [17613 17955])
-            ("gnus-cache-possibly-remove-article" function (:arguments ("article" "ticked" "dormant" "unread" "force")) nil [17957 19245])
-            ("gnus-cache-articles-in-group" function (:arguments ("group")) nil [19247 20011])
-            ("gnus-cache-braid-nov" function (:arguments ("group" "cached" "file")) nil [20013 21099])
-            ("gnus-cache-braid-heads" function (:arguments ("group" "cached")) nil [21101 22185])
-            ("gnus-jog-cache" function (:user-visible-flag t) nil [22202 22933])
-            ("gnus-cache-read-active" function (:arguments ("force")) nil [22935 23613])
-            ("gnus-cache-write-active" function (:arguments ("force")) nil [23615 23961])
-            ("gnus-cache-possibly-update-active" function (:arguments ("group" "active")) nil [23963 24648])
-            ("gnus-cache-update-active" function (:arguments ("group" "number" "low")) nil [24650 25215])
-            ("gnus-cache-generate-active" function
-               (:user-visible-flag t
-                :arguments ("directory"))
-                nil [25232 27249])
-            ("gnus-cache-generate-nov-databases" function
-               (:user-visible-flag t
-                :arguments ("dir"))
-                nil [27266 27597])
-            ("gnus-cache-move-cache" function
-               (:user-visible-flag t
-                :arguments ("dir"))
-                nil [27599 27762])
-            ("gnus-cache-fully-p" function (:arguments ("group")) nil [27764 28234])
-            ("gnus-cache-rename-group" function (:arguments ("old-group" "new-group")) nil [28251 29388])
-            ("gnus-cache-delete-group" function (:arguments ("group")) nil [29405 30228])
-            ("gnus-cache-inhibit-update-total-fetched-for" variable nil nil [30230 30286])
-            ("gnus-cache-need-update-total-fetched-for" variable nil nil [30287 30340])
-            ("gnus-cache-with-refreshed-group" function (:arguments ("group" "body")) nil [30342 30727])
-            ("gnus-cache-update-file-total-fetched-for" function (:arguments ("group" "file" "subtract")) nil [30729 31587])
-            ("gnus-cache-update-overview-total-fetched-for" function (:arguments ("group" "file")) nil [31589 32181])
-            ("gnus-cache-rename-group-total-fetched-for" function (:arguments ("old-group" "new-group")) nil [32183 32582])
-            ("gnus-cache-delete-group-total-fetched-for" function (:arguments ("group")) nil [32584 32806])
-            ("gnus-cache-total-fetched-for" function (:arguments ("group" "no-inhibit")) nil [32808 33410])
-            ("gnus-cache" package nil nil [33412 33433]))          
-      :file "gnus-cache.el"
-      :pointmax 33463
-      :fsize 33462
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 1054 . 1055) (symbol 951 . 968) (open-paren 950 . 951) (close-paren 910 . 911) (symbol 879 . 896) (open-paren 878 . 879)))
-    (semanticdb-table "semanticdb-table"
-      :file "nnvirtual.el"
-      :fsize 27793
-      :lastmodtime '(23525 29557 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [933 946])
-            ("gnus" include nil nil [949 964])
-            ("gnus-sum" include nil nil [965 984])
-            ("gnus-art" include nil nil [985 1004])
-            ("gnus-range" include nil nil [1005 1026])
-            ("gnus-win" include nil nil [1027 1046])
-            ("message" include nil nil [1047 1065])
-            ("score-mode" include nil nil [1066 1087])
-            ("gmm-utils" include nil nil [1088 1108])
-            ("gnus-global-score-files" variable nil nil [1110 1746])
-            ("gnus-score-file-single-match-alist" variable nil nil [1748 2385])
-            ("gnus-score-file-multiple-match-alist" variable nil nil [2387 3051])
-            ("gnus-score-file-suffix" variable (:default-value "SCORE") nil [3053 3169])
-            ("gnus-adaptive-file-suffix" variable (:default-value "ADAPT") nil [3171 3326])
-            ("gnus-score-find-score-files-function" variable (:default-value (quote gnus-score-find-bnews)) nil [3328 4667])
-            ("gnus-score-interactive-default-score" variable (:default-value 1000) nil [4669 4849])
-            ("gnus-score-expiry-days" variable (:default-value 7) nil [4851 5097])
-            ("gnus-update-score-entry-dates" variable (:default-value t) nil [5099 5358])
-            ("gnus-decay-scores" variable nil nil [5360 5696])
-            ("gnus-decay-score-function" variable (:default-value (quote gnus-decay-score)) nil [5698 5954])
-            ("gnus-score-decay-constant" variable (:default-value 3) nil [5956 6088])
-            ("gnus-score-decay-scale" variable (:default-value 0.05) nil [6090 6218])
-            ("gnus-home-score-file" variable nil nil [6220 7431])
-            ("gnus-home-adapt-file" variable nil nil [7433 7767])
-            ("gnus-default-adaptive-score-alist" variable (:default-value (\` ((gnus-kill-file-mark) (gnus-unread-mark) (gnus-read-mark (from (\, (+ 2 gnus-score-decay-constant))) (subject (\, (+ 27 gnus-score-decay-constant)))) (gnus-catchup-mark (subject (\, (+ -7 (* -1 gnus-score-decay-constant))))) (gnus-killed-mark (from (\, (- -1 gnus-score-decay-constant))) (subject (\, (+ -17 (* -1 gnus-score-decay-constant))))) (gnus-del-mark (from (\, (- -1 gnus-score-decay-constant))) (subject (\, (+ -12 (* -1 gnus-score-decay-constant)))))))) nil [7769 8675])
-            ("gnus-adaptive-word-length-limit" variable nil nil [8677 8950])
-            ("gnus-ignored-adaptive-words" variable nil nil [8952 9113])
-            ("gnus-default-ignored-adaptive-words" variable (:default-value (quote ("a" "i" "the" "to" "of" "and" "in" "is" "it" "for" "that" "if" "you" "this" "be" "on" "with" "not" "have" "are" "or" "as" "from" "can" "but" "by" "at" "an" "will" "no" "all" "was" "do" "there" "my" "one" "so" "we" "they" "what" "would" "any" "which" "about" "get" "your" "use" "some" "me" "then" "name" "like" "out" "when" "up" "time" "other" "more" "only" "just" "end" "also" "know" "how" "new" "should" "been" "than" "them" "he" "who" "make" "may" "people" "these" "now" "their" "here" "into" "first" "could" "way" "had" "see" "work" "well" "were" "two" "very" "where" "while" "us" "because" "good" "same" "even" "much" "most" "many" "such" "long" "his" "over" "last" "since" "right" "before" "our" "without" "too" "those" "why" "must" "part" "being" "current" "back" "still" "go" "point" "value" "each" "did" "both" "true" "off" "say" "another" "state" "might" "under" "start" "try" "re"))) nil [9115 10236])
-            ("gnus-default-adaptive-word-score-alist" variable (:default-value (\` (((\, gnus-read-mark) . 30) ((\, gnus-catchup-mark) . -10) ((\, gnus-killed-mark) . -20) ((\, gnus-del-mark) . -15)))) nil [10238 10543])
-            ("gnus-adaptive-word-minimum" variable nil nil [10545 10733])
-            ("gnus-adaptive-word-no-group-words" variable nil nil [10735 10895])
-            ("gnus-score-mimic-keymap" variable nil nil [10897 11049])
-            ("gnus-score-exact-adapt-limit" variable (:default-value 10) nil [11051 11557])
-            ("gnus-score-uncacheable-files" variable (:default-value "ADAPT$") nil [11559 11741])
-            ("gnus-adaptive-pretty-print" variable nil nil [11743 11947])
-            ("gnus-score-default-header" variable nil nil [11949 12635])
-            ("gnus-score-default-type" variable nil nil [12637 13401])
-            ("gnus-score-default-fold" variable nil nil [13403 13551])
-            ("gnus-score-default-duration" variable nil nil [13553 13945])
-            ("gnus-score-after-write-file-function" variable nil nil [13947 14139])
-            ("gnus-score-thread-simplify" variable nil nil [14141 14287])
-            ("gnus-inhibit-slow-scoring" variable nil nil [14289 14679])
-            ("gnus-score-use-all-scores" variable (:default-value t) nil [14708 14809])
-            ("gnus-adaptive-word-syntax-table" variable (:default-value (let ((table (copy-syntax-table (standard-syntax-table))) (numbers (quote (48 49 50 51 52 53 54 55 56 57)))) (while numbers (modify-syntax-entry (pop numbers) " " table)) (modify-syntax-entry 39 "w" table) table)) nil [14811 15134])
-            ("gnus-scores-exclude-files" variable nil nil [15136 15174])
-            ("gnus-internal-global-score-files" variable nil nil [15175 15220])
-            ("gnus-score-file-list" variable nil nil [15221 15254])
-            ("gnus-short-name-score-file-cache" variable nil nil [15256 15301])
-            ("gnus-score-help-winconf" variable nil nil [15303 15339])
-            ("gnus-adaptive-score-alist" variable (:default-value gnus-default-adaptive-score-alist) nil [15340 15408])
-            ("gnus-adaptive-word-score-alist" variable (:default-value gnus-default-adaptive-word-score-alist) nil [15409 15487])
-            ("gnus-score-trace" variable nil nil [15488 15517])
-            ("gnus-score-edit-buffer" variable nil nil [15518 15553])
-            ("gnus-score-alist" variable nil nil [15555 16270])
-            ("gnus-score-cache" variable nil nil [16272 16301])
-            ("gnus-scores-articles" variable nil nil [16302 16335])
-            ("gnus-score-index" variable nil nil [16336 16365])
-            ("gnus-header-index" variable
-               (:constant-flag t
-                :default-value (quote (("number" 0 gnus-score-integer) ("subject" 1 gnus-score-string) ("from" 2 gnus-score-string) ("date" 3 gnus-score-date) ("message-id" 4 gnus-score-string) ("references" 5 gnus-score-string) ("chars" 6 gnus-score-integer) ("lines" 7 gnus-score-integer) ("xref" 8 gnus-score-string) ("extra" 9 gnus-score-string) ("head" -1 gnus-score-body) ("body" -1 gnus-score-body) ("all" -1 gnus-score-body) ("followup" 2 gnus-score-followup) ("thread" 5 gnus-score-thread))))
-                nil [16368 16943])
-            ("gnus-define-keys" code nil nil [16975 17421])
-            ("gnus-summary-lower-score" function
-               (:user-visible-flag t
-                :arguments ("score" "symp"))
-                nil [17589 18090])
-            ("gnus-score-kill-help-buffer" function nil nil [18092 18292])
-            ("gnus-summary-increase-score" function
-               (:user-visible-flag t
-                :arguments ("score" "symp"))
-                nil [18294 25382])
-            ("appt-select-lowest-window" function (:prototype-flag t) nil [25384 25428])
-            ("gnus-score-insert-help" function (:arguments ("string" "alist" "idx")) nil [25430 26910])
-            ("gnus-summary-header" function (:arguments ("header" "no-err" "extra")) nil [26912 27485])
-            ("gnus-newsgroup-score-alist" function nil nil [27487 27769])
-            ("gnus-score-get" function (:arguments ("symbol" "alist")) nil [27771 27955])
-            ("gnus-summary-score-entry" function (:arguments ("header" "match" "type" "score" "date" "prompt" "silent" "extra")) nil [27957 31198])
-            ("gnus-summary-score-effect" function
-               (:user-visible-flag t
-                :arguments ("header" "match" "type" "score" "extra"))
-                nil [31200 32735])
-            ("gnus-score-set-mark-below" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [32836 33286])
-            ("gnus-score-update-lines" function nil nil [33288 33494])
-            ("gnus-score-update-all-lines" function nil nil [33496 33911])
-            ("gnus-score-set-expunge-below" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [33913 34304])
-            ("gnus-score-followup-article" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [34306 34834])
-            ("gnus-score-followup-thread" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [34836 35346])
-            ("gnus-score-set" function (:arguments ("symbol" "value" "alist" "warn")) nil [35348 35904])
-            ("gnus-summary-raise-score" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [35906 36124])
-            ("gnus-summary-set-score" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [36126 36756])
-            ("gnus-summary-current-score" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [36758 37115])
-            ("gnus-score-change-score-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [37117 37348])
-            ("gnus-score-edit-exit-function" variable nil nil [37350 37388])
-            ("gnus-score-edit-current-scores" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [37389 38171])
-            ("gnus-score-edit-all-score" function (:user-visible-flag t) nil [38173 38496])
-            ("gnus-score-edit-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [38498 39201])
-            ("gnus-score-edit-file-at-point" function (:arguments ("format")) nil [39203 40334])
-            ("gnus-score-load-file" function (:arguments ("file")) nil [40336 44602])
-            ("gnus-score-load" function (:arguments ("file")) nil [44604 44977])
-            ("gnus-score-remove-from-cache" function (:arguments ("file")) nil [44979 45103])
-            ("gnus-score-load-score-alist" function (:arguments ("file")) nil [45105 46122])
-            ("gnus-score-check-syntax" function (:arguments ("alist" "file")) nil [46124 47414])
-            ("gnus-score-transform-old-to-new" function (:arguments ("alist")) nil [47416 48100])
-            ("gnus-score-save" function nil nil [48102 49858])
-            ("gnus-score-load-files" function (:arguments ("score-files")) nil [49860 50742])
-            ("gnus-score-headers" function (:arguments ("score-files" "trace")) nil [50744 54300])
-            ("gnus-score-lower-thread" function (:arguments ("thread" "score-adjust")) nil [54302 55155])
-            ("gnus-score-orphans" function (:arguments ("score")) nil [55157 56134])
-            ("gnus-score-integer" function (:arguments ("scores" "header" "now" "expire" "trace")) nil [56136 57917])
-            ("gnus-score-date" function (:arguments ("scores" "header" "now" "expire" "trace")) nil [57919 59981])
-            ("gnus-score-decode-text-parts" function nil nil [59983 60922])
-            ("gnus-score-body" function (:arguments ("scores" "header" "now" "expire" "trace")) nil [60924 66476])
-            ("gnus-score-thread" function (:arguments ("scores" "header" "now" "expire" "trace")) nil [66478 66603])
-            ("gnus-score-followup" function (:arguments ("scores" "header" "now" "expire" "trace" "thread")) nil [66605 70258])
-            ("gnus-score-add-followups" function (:arguments ("header" "score" "scores" "thread")) nil [70260 70873])
-            ("gnus-score-string" function (:arguments ("score-list" "header" "now" "expire" "trace")) nil [70875 80114])
-            ("gnus-enter-score-words-into-hashtb" function (:arguments ("hashtb")) nil [80116 80980])
-            ("gnus-score-string<" function (:arguments ("a1" "a2")) nil [80982 81213])
-            ("gnus-current-score-file-nondirectory" function (:arguments ("score-file")) nil [81215 81439])
-            ("gnus-score-adaptive" function nil nil [81441 85787])
-            ("gnus-score-edit-done" function nil nil [85789 86083])
-            ("gnus-score-find-trace" function (:user-visible-flag t) nil [86085 88476])
-            ("gnus-score-find-favourite-words" function (:user-visible-flag t) nil [88478 89767])
-            ("gnus-summary-rescore" function (:user-visible-flag t) nil [89769 90025])
-            ("gnus-score-flush-cache" function (:user-visible-flag t) nil [90027 90274])
-            ("gnus-add-shutdown" code nil nil [90276 90319])
-            ("gnus-score-file-alist-cache" variable nil nil [90321 90361])
-            ("gnus-score-close" function nil nil [90363 90557])
-            ("gnus-summary-raise-same-subject-and-select" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [90595 90960])
-            ("gnus-summary-raise-same-subject" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [90962 91298])
-            ("gnus-score-delta-default" function (:arguments ("level")) nil [91300 91423])
-            ("gnus-summary-raise-thread" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [91425 92066])
-            ("gnus-summary-lower-same-subject-and-select" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [92068 92281])
-            ("gnus-summary-lower-same-subject" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [92283 92454])
-            ("gnus-summary-lower-thread" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [92456 92656])
-            ("gnus-score-score-files" function (:arguments ("group")) nil [92684 94146])
-            ("gnus-score-score-files-1" function (:arguments ("dir")) nil [94148 94982])
-            ("gnus-score-file-regexp" function nil nil [94984 95180])
-            ("gnus-score-find-bnews" function (:arguments ("group")) nil [95182 98426])
-            ("gnus-score-find-single" function (:arguments ("group")) nil [98428 98658])
-            ("gnus-score-find-hierarchical" function (:arguments ("group")) nil [98660 99467])
-            ("gnus-score-file-rank" function (:arguments ("file")) nil [99469 100113])
-            ("gnus-sort-score-files" function (:arguments ("files")) nil [100115 100404])
-            ("gnus-score-find-alist" function (:arguments ("group")) nil [100406 101589])
-            ("gnus-all-score-files" function (:arguments ("group")) nil [101591 103773])
-            ("gnus-possibly-score-headers" function (:arguments ("trace")) nil [103775 103982])
-            ("gnus-score-file-name" function (:arguments ("newsgroup" "suffix")) nil [103984 104856])
-            ("gnus-score-search-global-directories" function
-               (:user-visible-flag t
-                :arguments ("files"))
-                nil [104858 105426])
-            ("gnus-score-default-fold-toggle" function (:user-visible-flag t) nil [105428 105770])
-            ("gnus-home-score-file" function (:arguments ("group" "adapt")) nil [105794 106708])
-            ("gnus-hierarchial-home-score-file" function (:arguments ("group")) nil [106710 107055])
-            ("gnus-hierarchial-home-adapt-file" function (:arguments ("group")) nil [107057 107408])
-            ("gnus-current-home-score-file" function (:arguments ("group")) nil [107410 107539])
-            ("gnus-decay-score" function (:arguments ("score")) nil [107567 107851])
-            ("gnus-decay-scores" function (:arguments ("alist" "day")) nil [107853 108582])
-            ("gnus-score" package nil nil [108584 108605]))          
-      :file "gnus-score.el"
-      :pointmax 108635
-      :fsize 108634
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 946 . 947) (symbol 915 . 932) (open-paren 914 . 915)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [903 916])
-            ("gnus" include nil nil [919 934])
-            ("gnus-start" include nil nil [935 956])
-            ("gnus-spec" include nil nil [957 977])
-            ("gnus-group" include nil nil [978 999])
-            ("gnus-int" include nil nil [1000 1019])
-            ("gnus-range" include nil nil [1020 1041])
-            ("gnus-cloud" include nil nil [1042 1063])
-            ("gnus-group-make-nnir-group" function (:prototype-flag t) nil [1065 1110])
-            ("gnus-server-mode-hook" variable nil nil [1112 1229])
-            ("gnus-server-exit-hook" variable nil nil [1231 1349])
-            ("gnus-server-line-format" variable (:default-value "     {%(%h:%w%)} %s%a%c
-") nil [1351 1816])
-            ("gnus-server-mode-line-format" variable (:default-value "Gnus: %%b") nil [1818 1970])
-            ("gnus-server-browse-in-group-buffer" variable nil nil [1972 2215])
-            ("gnus-tmp-how" variable nil nil [2242 2263])
-            ("gnus-tmp-name" variable nil nil [2264 2286])
-            ("gnus-tmp-where" variable nil nil [2287 2310])
-            ("gnus-tmp-status" variable nil nil [2311 2335])
-            ("gnus-tmp-agent" variable nil nil [2336 2359])
-            ("gnus-tmp-cloud" variable nil nil [2360 2383])
-            ("gnus-tmp-news-server" variable nil nil [2384 2413])
-            ("gnus-tmp-news-method" variable nil nil [2414 2443])
-            ("gnus-tmp-user-defined" variable nil nil [2444 2474])
-            ("gnus-inserted-opened-servers" variable nil nil [2476 2517])
-            ("gnus-server-line-format-alist" variable (:default-value (\` ((104 gnus-tmp-how 115) (110 gnus-tmp-name 115) (119 gnus-tmp-where 115) (115 gnus-tmp-status 115) (97 gnus-tmp-agent 115) (99 gnus-tmp-cloud 115)))) nil [2519 2718])
-            ("gnus-server-mode-line-format-alist" variable (:default-value (\` ((83 gnus-tmp-news-server 115) (77 gnus-tmp-news-method 115) (117 gnus-tmp-user-defined 115)))) nil [2720 2864])
-            ("gnus-server-line-format-spec" variable nil nil [2866 2907])
-            ("gnus-server-mode-line-format-spec" variable nil nil [2908 2954])
-            ("gnus-server-killed-servers" variable nil nil [2955 2994])
-            ("gnus-server-mode-map" variable nil nil [2996 3025])
-            ("gnus-server-menu-hook" variable nil nil [3027 3157])
-            ("gnus-server-make-menu-bar" function nil nil [3159 4534])
-            ("gnus-server-mode-map" variable nil nil [4536 4569])
-            ("put" code nil nil [4570 4614])
-            ("unless" code nil nil [4616 5730])
-            ("gnus-server-agent" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "PaleTurquoise" :bold t)) (((class color) (background dark)) (:foreground "PaleTurquoise" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [5732 6011])
-            ("put" code nil nil [6044 6104])
-            ("put" code nil nil [6105 6156])
-            ("gnus-server-cloud" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "ForestGreen" :bold t)) (((class color) (background dark)) (:foreground "PaleGreen" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [6158 6434])
-            ("gnus-server-cloud-host" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "ForestGreen" :inverse-video t :italic t)) (((class color) (background dark)) (:foreground "PaleGreen" :inverse-video t :italic t)) (t (:inverse-video t :italic t))))
-                :type "face")
-                nil [6436 6768])
-            ("gnus-server-opened" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Green3" :bold t)) (((class color) (background dark)) (:foreground "Green1" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [6770 7033])
-            ("put" code nil nil [7066 7128])
-            ("put" code nil nil [7129 7181])
-            ("gnus-server-closed" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Steel Blue" :italic t)) (((class color) (background dark)) (:foreground "LightBlue" :italic t)) (t (:italic t))))
-                :type "face")
-                nil [7183 7464])
-            ("put" code nil nil [7497 7559])
-            ("put" code nil nil [7560 7612])
-            ("gnus-server-denied" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Red" :bold t)) (((class color) (background dark)) (:foreground "Pink" :bold t)) (t (:inverse-video t :bold t))))
-                :type "face")
-                nil [7614 7889])
-            ("put" code nil nil [7922 7984])
-            ("put" code nil nil [7985 8037])
-            ("gnus-server-offline" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Orange" :bold t)) (((class color) (background dark)) (:foreground "Yellow" :bold t)) (t (:inverse-video t :bold t))))
-                :type "face")
-                nil [8039 8321])
-            ("put" code nil nil [8354 8418])
-            ("put" code nil nil [8419 8472])
-            ("gnus-server-font-lock-keywords" variable (:default-value (quote (("(\\(agent\\))" 1 (quote gnus-server-agent)) ("(\\(cloud[-]sync\\))" 1 (quote gnus-server-cloud)) ("(\\(CLOUD[-]HOST\\))" 1 (quote gnus-server-cloud-host)) ("(\\(opened\\))" 1 (quote gnus-server-opened)) ("(\\(closed\\))" 1 (quote gnus-server-closed)) ("(\\(offline\\))" 1 (quote gnus-server-offline)) ("(\\(denied\\))" 1 (quote gnus-server-denied))))) nil [8474 8844])
-            ("gnus-server-mode" function (:user-visible-flag t) nil [8846 9719])
-            ("gnus-server-insert-server-line" function (:arguments ("name" "method")) nil [9721 10878])
-            ("gnus-enter-server-buffer" function nil nil [10880 11371])
-            ("gnus-server-setup-buffer" function nil nil [11373 11580])
-            ("gnus-server-prepare" function nil nil [11582 12653])
-            ("gnus-server-server-name" function nil nil [12655 12794])
-            ("gnus-server-named-server" function nil nil [12796 13034])
-            ("defalias" code nil nil [13036 13091])
-            ("gnus-server-edit-buffer" variable
-               (:constant-flag t
-                :default-value "*Gnus edit server*")
-                nil [13093 13148])
-            ("gnus-server-update-server" function (:arguments ("server")) nil [13150 13976])
-            ("gnus-server-set-info" function (:arguments ("server" "info")) nil [13978 14907])
-            ("gnus-server-kill-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [14944 15986])
-            ("gnus-server-yank-server" function (:user-visible-flag t) nil [15988 16798])
-            ("gnus-server-exit" function (:user-visible-flag t) nil [16800 16991])
-            ("gnus-server-list-servers" function (:user-visible-flag t) nil [16993 17274])
-            ("gnus-server-set-status" function (:arguments ("method" "status")) nil [17276 17502])
-            ("gnus-opened-servers-remove" function (:arguments ("method")) nil [17504 17695])
-            ("gnus-server-open-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [17697 18082])
-            ("gnus-server-open-all-servers" function (:user-visible-flag t) nil [18084 18253])
-            ("gnus-server-close-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [18255 18635])
-            ("gnus-server-offline-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [18637 19031])
-            ("gnus-server-close-all-servers" function (:user-visible-flag t) nil [19033 19287])
-            ("gnus-server-deny-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [19289 19659])
-            ("gnus-server-remove-denials" function (:user-visible-flag t) nil [19661 19912])
-            ("gnus-server-copy-server" function
-               (:user-visible-flag t
-                :arguments ("from" "to"))
-                nil [19914 20643])
-            ("gnus-server-add-server" function (:arguments ("how" "where")) nil [20645 21092])
-            ("gnus-server-goto-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [21094 21426])
-            ("gnus-server-edit-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [21428 21975])
-            ("gnus-server-show-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [21977 22354])
-            ("gnus-server-scan-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [22356 22775])
-            ("gnus-server-read-server-in-server-buffer" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [22777 23003])
-            ("gnus-server-read-server" function
-               (:user-visible-flag t
-                :arguments ("server"))
-                nil [23005 23318])
-            ("gnus-server-pick-server" function (:arguments ("e")) nil [23320 23451])
-            ("gnus-browse-menu-hook" variable nil nil [23487 23617])
-            ("gnus-browse-subscribe-newsgroup-method" variable (:default-value (quote gnus-subscribe-alphabetically)) nil [23619 24696])
-            ("gnus-browse-mode-hook" variable nil nil [24698 24732])
-            ("gnus-browse-mode-map" variable nil nil [24733 24766])
-            ("put" code nil nil [24767 24811])
-            ("unless" code nil nil [24813 25684])
-            ("gnus-browse-make-menu-bar" function nil nil [25686 26239])
-            ("gnus-browse-current-method" variable nil nil [26241 26280])
-            ("gnus-browse-return-buffer" variable nil nil [26281 26319])
-            ("gnus-browse-buffer" variable (:default-value "*Gnus Browse Server*") nil [26321 26371])
-            ("gnus-browse-foreign-server" function (:arguments ("server" "return-buffer")) nil [26373 30427])
-            ("define-derived-mode" code nil nil [30429 31178])
-            ("gnus-browse-read-group" function
-               (:user-visible-flag t
-                :arguments ("no-article" "number"))
-                nil [31180 31737])
-            ("gnus-browse-select-group" function
-               (:user-visible-flag t
-                :arguments ("number"))
-                nil [31739 31920])
-            ("gnus-browse-next-group" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [31922 32067])
-            ("gnus-browse-prev-group" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [32069 32182])
-            ("gnus-browse-unsubscribe-current-group" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [32184 32765])
-            ("gnus-browse-group-name" function nil nil [32767 33085])
-            ("gnus-browse-describe-group" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [33087 33249])
-            ("gnus-browse-delete-group" function
-               (:user-visible-flag t
-                :arguments ("group" "force"))
-                nil [33251 33709])
-            ("gnus-browse-unsubscribe-group" function nil nil [33711 35193])
-            ("gnus-browse-exit" function (:user-visible-flag t) nil [35195 35630])
-            ("gnus-browse-describe-briefly" function (:user-visible-flag t) nil [35632 36000])
-            ("gnus-server-regenerate-server" function (:user-visible-flag t) nil [36002 36712])
-            ("gnus-server-compact-server" function (:user-visible-flag t) nil [36848 37946])
-            ("gnus-server-toggle-cloud-server" function (:user-visible-flag t) nil [37948 38675])
-            ("gnus-server-toggle-cloud-method-server" function (:user-visible-flag t) nil [38677 39552])
-            ("gnus-srvr" package nil nil [39554 39574]))          
-      :file "gnus-srvr.el"
-      :pointmax 39603
-      :fsize 39602
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 916 . 917) (symbol 885 . 902) (open-paren 884 . 885)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gmm" customgroup (:user-visible-flag t) nil [1082 1214])
-            ("gmm-verbose" variable (:default-value 7) nil [1295 1609])
-            ("gmm-regexp-concat" function (:arguments ("regexp")) nil [1626 1921])
-            ("gmm-message" function (:arguments ("level" "args")) nil [1938 2480])
-            ("gmm-error" function (:arguments ("level" "args")) nil [2497 2852])
-            ("gmm-widget-p" function (:arguments ("symbol")) nil [2869 2961])
-            ("widget-create-child-value" function (:prototype-flag t) nil [2963 3011])
-            ("widget-convert" function (:prototype-flag t) nil [3012 3049])
-            ("widget-default-get" function (:prototype-flag t) nil [3050 3091])
-            ("define-widget" code nil nil [3889 4438])
-            ("define-widget" code nil nil [4440 5282])
-            ("gmm-tool-bar-style" variable (:default-value (if (and (boundp (quote tool-bar-mode)) tool-bar-mode (memq (display-visual-class) (list (quote static-gray) (quote gray-scale) (quote static-color) (quote pseudo-color)))) (quote gnome) (quote retro))) nil [5284 5630])
-            ("tool-bar-map" variable nil nil [5632 5653])
-            ("gmm-tool-bar-from-list" function (:arguments ("icon-list" "zap-list" "default-map")) nil [5670 7887])
-            ("defun-gmm" function (:arguments ("name" "function" "arg-list" "body")) nil [7889 8224])
-            ("gmm-customize-mode" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [8226 8540])
-            ("define-obsolete-function-alias" code nil nil [8542 8627])
-            ("gmm-utils" package nil nil [8629 8649]))          
-      :file "gmm-utils.el"
-      :pointmax 8678
-      :fsize 8677
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [918 931])
-            ("mm-util" include nil nil [933 951])
-            ("gnus-util" include nil nil [987 1007])
-            ("gnus-score-edit-done-hook" variable nil nil [1046 1175])
-            ("gnus-score-mode-hook" variable nil nil [1177 1284])
-            ("gnus-score-menu-hook" variable nil nil [1286 1406])
-            ("gnus-score-edit-exit-function" variable nil nil [1408 1498])
-            ("gnus-score-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map emacs-lisp-mode-map) (define-key map "" (quote gnus-score-edit-exit)) (define-key map "" (quote gnus-score-edit-insert-date)) (define-key map "" (quote gnus-score-pretty-print)) map)) nil [1500 1793])
-            ("score-mode-syntax-table" variable (:default-value (let ((table (copy-syntax-table lisp-mode-syntax-table))) (modify-syntax-entry 124 "w" table) table)) nil [1795 1982])
-            ("score-mode-coding-system" variable (:default-value mm-universal-coding-system) nil [2032 2092])
-            ("define-derived-mode" code nil nil [2109 2360])
-            ("gnus-score-make-menu-bar" function nil nil [2362 2691])
-            ("gnus-score-edit-insert-date" function (:user-visible-flag t) nil [2693 2841])
-            ("gnus-score-pretty-print" function (:user-visible-flag t) nil [2843 3128])
-            ("gnus-score-edit-exit" function (:user-visible-flag t) nil [3130 3668])
-            ("score-mode" package nil nil [3670 3691]))          
-      :file "score-mode.el"
-      :pointmax 3721
-      :fsize 3720
-      :lastmodtime '(23525 29558 0 0)
-      :unmatched-syntax '((close-paren 931 . 932) (symbol 900 . 917) (open-paren 899 . 900)))
-    (semanticdb-table "semanticdb-table"
-      :file "mm-bodies.el"
-      :fsize 9974
-      :lastmodtime '(23525 29555 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "mm-decode.el"
-      :fsize 65543
-      :lastmodtime '(23525 29555 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "mm-view.el"
-      :fsize 20267
-      :lastmodtime '(23525 29555 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "mm-uu.el"
-      :fsize 24148
-      :lastmodtime '(23525 29555 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1806 1819])
-            ("gnus-util" include nil nil [1822 1842])
-            ("gnus" include nil nil [1843 1858])
-            ("gnus-undo" customgroup (:user-visible-flag t) nil [1860 1928])
-            ("gnus-undo-limit" variable (:default-value 2000) nil [1930 2044])
-            ("gnus-undo-mode" variable nil nil [2046 2403])
-            ("gnus-undo-mode-hook" variable nil nil [2405 2523])
-            ("gnus-undo-actions" variable nil nil [2550 2580])
-            ("gnus-undo-boundary" variable (:default-value t) nil [2581 2610])
-            ("gnus-undo-last" variable nil nil [2611 2638])
-            ("gnus-undo-boundary-inhibit" variable nil nil [2639 2678])
-            ("gnus-undo-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (gnus-define-keys map "\237" gnus-undo "" gnus-undo "u" gnus-undo [(control /)] gnus-undo) map)) nil [2708 3001])
-            ("gnus-undo-make-menu-bar" function nil nil [3003 3231])
-            ("define-minor-mode" code nil nil [3233 3662])
-            ("gnus-disable-undo" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [3690 3880])
-            ("gnus-undo-boundary" function nil nil [3882 4049])
-            ("gnus-undo-force-boundary" function nil nil [4051 4176])
-            ("gnus-undo-register" function (:arguments ("form")) nil [4178 4390])
-            ("put" code nil nil [4392 4441])
-            ("put" code nil nil [4442 4493])
-            ("gnus-undo-register-1" function (:arguments ("function")) nil [4495 5253])
-            ("gnus-undo" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [5255 5878])
-            ("gnus-undo" package nil nil [5880 5900]))          
-      :file "gnus-undo.el"
-      :pointmax 5929
-      :fsize 5928
-      :lastmodtime '(23525 29554 0 0)
-      :unmatched-syntax '((close-paren 1819 . 1820) (symbol 1788 . 1805) (open-paren 1787 . 1788)))
-    (semanticdb-table "semanticdb-table"
-      :file "nnoo.el"
-      :fsize 10637
-      :lastmodtime '(23525 29557 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1380 1393])
-            ("gnus" include nil nil [1396 1411])
-            ("gnus-art" include nil nil [1412 1431])
-            ("gnus-picon-news-directories" variable (:default-value (quote ("news"))) nil [1454 1605])
-            ("gnus-picon-user-directories" variable (:default-value (quote ("users" "usenix" "local" "misc"))) nil [1607 1777])
-            ("gnus-picon-domain-directories" variable (:default-value (quote ("domains"))) nil [1779 1985])
-            ("gnus-picon-file-types" variable (:default-value (let ((types (list "xbm"))) (when (gnus-image-type-available-p (quote gif)) (push "gif" types)) (when (gnus-image-type-available-p (quote xpm)) (push "xpm" types)) types)) nil [1987 2298])
-            ("gnus-picon-properties" variable (:default-value (quote (:color-symbols (("None" . "white"))))) nil [2300 2474])
-            ("gnus-picon-style" variable (:default-value (quote inline)) nil [2476 2739])
-            ("gnus-picon-inhibit-top-level-domains" variable (:default-value t) nil [2741 2935])
-            ("gnus-picon-glyph-alist" variable nil nil [2962 3091])
-            ("gnus-picon-cache" variable nil nil [3092 3121])
-            ("gnus-picon-split-address" function (:arguments ("address")) nil [3139 3392])
-            ("gnus-picon-find-face" function (:arguments ("address" "directories" "exact")) nil [3394 4258])
-            ("gnus-picon-find-image" function (:arguments ("directory")) nil [4260 4524])
-            ("gnus-picon-insert-glyph" function (:arguments ("glyph" "category" "nostring")) nil [4526 5001])
-            ("gnus-picon-create-glyph" function (:arguments ("file")) nil [5003 5227])
-            ("declare-function" code nil nil [5277 5346])
-            ("gnus-picon-transform-address" function (:arguments ("header" "category")) nil [5348 7754])
-            ("gnus-picon-transform-newsgroups" function (:arguments ("header")) nil [7756 8836])
-            ("gnus-treat-from-picon" function (:user-visible-flag t) nil [8986 9356])
-            ("gnus-treat-mail-picon" function (:user-visible-flag t) nil [9373 9802])
-            ("gnus-treat-newsgroups-picon" function (:user-visible-flag t) nil [9819 10282])
-            ("gnus-picon" package nil nil [10284 10305]))          
-      :file "gnus-picon.el"
-      :pointmax 10335
-      :fsize 10334
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 1393 . 1394) (symbol 1362 . 1379) (open-paren 1361 . 1362)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [993 1006])
-            ("nnmail-extra-headers" variable nil nil [1009 1038])
-            ("gnus-newsgroup-name" variable nil nil [1039 1067])
-            ("nnheader-file-coding-system" variable nil nil [1068 1104])
-            ("jka-compr-compression-info-list" variable nil nil [1105 1145])
-            ("mail-utils" include nil nil [1303 1324])
-            ("mm-util" include nil nil [1325 1343])
-            ("gnus-util" include nil nil [1344 1364])
-            ("gnus-range-add" function (:prototype-flag t) nil [1365 1404])
-            ("gnus-remove-from-range" function (:prototype-flag t) nil [1405 1452])
-            ("gnus-sorted-intersection" function (:prototype-flag t) nil [1510 1559])
-            ("gnus-intersection" function (:prototype-flag t) nil [1560 1602])
-            ("gnus-sorted-complement" function (:prototype-flag t) nil [1603 1650])
-            ("gnus-sorted-difference" function (:prototype-flag t) nil [1651 1698])
-            ("gnus-verbose-backends" variable (:default-value 7) nil [1700 2086])
-            ("gnus-nov-is-evil" variable nil nil [2088 2234])
-            ("nnheader-max-head-length" variable (:default-value 8192) nil [2236 2758])
-            ("nnheader-head-chop-length" variable (:default-value 2048) nil [2760 2929])
-            ("nnheader-read-timeout" variable (:default-value (if (memq system-type (quote (windows-nt cygwin))) 1.0 0.01)) nil [2931 3988])
-            ("nnheader-file-name-translation-alist" variable (:default-value (if (memq system-type (quote (windows-nt cygwin))) (mapcar (lambda (c) (cons c 95)) (quote (58 42 34 60 62 63))))) nil [3990 4486])
-            ("nnheader-directory-separator-character" variable (:default-value (string-to-char (substring (file-name-as-directory ".") -1))) nil [4488 4708])
-            ("nnmail-message-id" function (:prototype-flag t) nil [4710 4748])
-            ("mail-position-on-field" function (:prototype-flag t) nil [4749 4794])
-            ("gnus-buffer-live-p" function (:prototype-flag t) nil [4795 4837])
-            ("mail-header-number" function (:arguments ("header")) nil [5342 5437])
-            ("mail-header-set-number" function (:arguments ("header" "number")) nil [5439 5560])
-            ("mail-header-subject" function (:arguments ("header")) nil [5562 5658])
-            ("mail-header-set-subject" function (:arguments ("header" "subject")) nil [5660 5786])
-            ("mail-header-from" function (:arguments ("header")) nil [5788 5880])
-            ("mail-header-set-from" function (:arguments ("header" "from")) nil [5882 5995])
-            ("mail-header-date" function (:arguments ("header")) nil [5997 6080])
-            ("mail-header-set-date" function (:arguments ("header" "date")) nil [6082 6193])
-            ("defalias" code nil nil [6195 6245])
-            ("mail-header-id" function (:arguments ("header")) nil [6246 6325])
-            ("defalias" code nil nil [6327 6385])
-            ("mail-header-set-id" function (:arguments ("header" "id")) nil [6386 6487])
-            ("mail-header-references" function (:arguments ("header")) nil [6489 6584])
-            ("mail-header-set-references" function (:arguments ("header" "ref")) nil [6586 6706])
-            ("mail-header-chars" function (:arguments ("header")) nil [6708 6814])
-            ("mail-header-set-chars" function (:arguments ("header" "chars")) nil [6816 6945])
-            ("mail-header-lines" function (:arguments ("header")) nil [6947 7032])
-            ("mail-header-set-lines" function (:arguments ("header" "lines")) nil [7034 7150])
-            ("mail-header-xref" function (:arguments ("header")) nil [7152 7242])
-            ("mail-header-set-xref" function (:arguments ("header" "xref")) nil [7244 7355])
-            ("mail-header-extra" function (:arguments ("header")) nil [7357 7454])
-            ("mail-header-set-extra" function (:arguments ("header" "extra")) nil [7456 7570])
-            ("make-mail-header" function (:arguments ("init")) nil [7572 7702])
-            ("make-full-mail-header" function (:arguments ("number" "subject" "from" "date" "id" "references" "chars" "lines" "xref" "extra")) nil [7704 7977])
-            ("nnheader-fake-message-id" variable (:default-value 1) nil [8026 8061])
-            ("nnheader-generate-fake-message-id" function (:arguments ("number")) nil [8063 8319])
-            ("nnheader-fake-message-id-p" function (:arguments ("id")) nil [8321 8479])
-            ("nnheader-remove-cr-followed-by-lf" function nil nil [8516 8650])
-            ("nnheader-header-value" function nil nil [8652 8760])
-            ("ietf-drums-unfold-fws" function (:prototype-flag t) nil [8762 8808])
-            ("nnheader-parse-naked-head" function (:arguments ("number")) nil [8810 11848])
-            ("nnheader-parse-head" function (:arguments ("naked")) nil [11850 12418])
-            ("nnheader-nov-skip-field" function nil nil [12420 12492])
-            ("nnheader-nov-field" function nil nil [12494 12604])
-            ("nnheader-nov-read-integer" function nil nil [12606 12843])
-            ("nnheader-nov-parse-extra" function nil nil [12845 13161])
-            ("nnheader-uniquify-message-id" variable nil nil [13183 13224])
-            ("nnheader-nov-read-message-id" function (:arguments ("number")) nil [13227 13598])
-            ("nnheader-parse-nov" function nil nil [13600 14174])
-            ("nnheader-insert-nov" function (:arguments ("header")) nil [14184 15266])
-            ("nnheader-parse-overview-file" function (:arguments ("file")) nil [15268 15579])
-            ("nnheader-write-overview-file" function (:arguments ("file" "headers")) nil [15581 15725])
-            ("nnheader-insert-header" function (:arguments ("header")) nil [15727 16177])
-            ("nnheader-insert-article-line" function (:arguments ("article")) nil [16179 16448])
-            ("nnheader-nov-delete-outside-range" function (:arguments ("beg" "end")) nil [16450 16813])
-            ("nnheader-find-nov-line" function (:arguments ("article")) nil [16815 18207])
-            ("nntp-server-buffer" variable nil nil [18270 18301])
-            ("nntp-process-response" variable nil nil [18302 18336])
-            ("nnheader-callback-function" variable nil nil [18338 18377])
-            ("nnheader-init-server-buffer" function nil nil [18379 18819])
-            ("nnheader-file-error" function (:arguments ("file")) nil [18862 19154])
-            ("nnheader-insert-head" function (:arguments ("file")) nil [19156 20265])
-            ("nnheader-article-p" function nil nil [20267 20651])
-            ("nnheader-insert-references" function (:arguments ("references" "message-id")) nil [20653 21389])
-            ("declare-function" code nil nil [21391 21488])
-            ("nnheader-replace-header" function (:arguments ("header" "new-value")) nil [21490 21792])
-            ("nnheader-narrow-to-headers" function nil nil [21794 22028])
-            ("nnheader-get-lines-and-char" function nil nil [22030 22294])
-            ("nnheader-remove-body" function nil nil [22296 22498])
-            ("nnheader-set-temp-buffer" function (:arguments ("name" "noerase")) nil [22500 22759])
-            ("nnheader-numerical-files" variable (:default-value (if (boundp (quote jka-compr-compression-info-list)) (concat "\\([0-9]+\\)\\(" (mapconcat (lambda (i) (aref i 0)) jka-compr-compression-info-list "\\|") "\\)?") "[0-9]+$")) nil [22761 23028])
-            ("nnheader-numerical-short-files" variable (:default-value (concat "^" nnheader-numerical-files)) nil [23030 23153])
-            ("nnheader-numerical-full-files" variable (:default-value (concat "/" nnheader-numerical-files)) nil [23155 23282])
-            ("nnheader-file-to-number" function (:arguments ("file")) nil [23284 23566])
-            ("nnheader-directory-files-is-safe" variable (:default-value (not (eq system-type (quote windows-nt)))) nil [23568 23877])
-            ("nnheader-directory-files-safe" function (:arguments ("args")) nil [23879 24148])
-            ("nnheader-directory-articles" function (:arguments ("dir")) nil [24150 24483])
-            ("nnheader-article-to-file-alist" function (:arguments ("dir")) nil [24485 24848])
-            ("nnheader-fold-continuation-lines" function nil nil [24850 24997])
-            ("nnheader-translate-file-chars" function (:arguments ("file" "full")) nil [24999 25821])
-            ("nnheader-report" function (:arguments ("backend" "args")) nil [25823 26083])
-            ("nnheader-get-report-string" function (:arguments ("backend")) nil [26085 26298])
-            ("nnheader-get-report" function (:arguments ("backend")) nil [26300 26442])
-            ("nnheader-insert" function (:arguments ("format" "args")) nil [26444 26827])
-            ("nnheader-replace-chars-in-string" function (:arguments ("string" "from" "to")) nil [26829 26929])
-            ("nnheader-replace-duplicate-chars-in-string" function (:arguments ("string" "from" "to")) nil [26931 27397])
-            ("nnheader-file-to-group" function (:arguments ("file" "top")) nil [27399 27768])
-            ("nnheader-message" function (:arguments ("level" "args")) nil [27770 28081])
-            ("nnheader-be-verbose" function (:arguments ("level")) nil [28083 28262])
-            ("nnheader-pathname-coding-system" variable (:default-value (quote iso-8859-1)) nil [28264 28416])
-            ("nnheader-group-pathname" function (:arguments ("group" "dir" "file")) nil [28418 29012])
-            ("nnheader-concat" function (:arguments ("dir" "files")) nil [29014 29146])
-            ("nnheader-ms-strip-cr" function nil nil [29148 29278])
-            ("nnheader-file-size" function (:arguments ("file")) nil [29280 29392])
-            ("nnheader-find-etc-directory" function (:arguments ("package" "file" "first")) nil [29394 30472])
-            ("ange-ftp-path-format" variable nil nil [30474 30503])
-            ("efs-path-regexp" variable nil nil [30504 30528])
-            ("nnheader-re-read-dir" function (:arguments ("path")) nil [30529 30930])
-            ("nnheader-file-coding-system" variable (:default-value (quote raw-text)) nil [30932 31027])
-            ("nnheader-insert-file-contents" function (:arguments ("filename" "visit" "beg" "end" "replace")) nil [31029 31543])
-            ("nnheader-insert-nov-file" function (:arguments ("file" "first")) nil [31545 32401])
-            ("nnheader-find-file-noselect" function (:arguments ("args")) nil [32403 32952])
-            ("nnheader-directory-regular-files" function (:arguments ("dir")) nil [32954 33215])
-            ("nnheader-directory-files" function (:arguments ("args")) nil [33217 33526])
-            ("nnheader-skeleton-replace" function (:arguments ("from" "to" "regexp")) nil [33528 34227])
-            ("nnheader-replace-string" function (:arguments ("from" "to")) nil [34229 34375])
-            ("nnheader-replace-regexp" function (:arguments ("from" "to")) nil [34377 34532])
-            ("nnheader-strip-cr" function nil nil [34534 34641])
-            ("defalias" code nil nil [34643 34690])
-            ("defalias" code nil nil [34691 34758])
-            ("nnheader-accept-process-output" function (:arguments ("process")) nil [34851 35061])
-            ("nnheader-update-marks-actions" function (:arguments ("backend-marks" "actions")) nil [35063 35583])
-            ("nnheader-insert-buffer-substring" function (:arguments ("buffer" "start" "end")) nil [35585 36011])
-            ("nnheader-last-message-time" variable (:default-value (quote (0 0))) nil [36013 36055])
-            ("nnheader-message-maybe" function (:arguments ("args")) nil [36056 36288])
-            ("run-hooks" code nil nil [36290 36321])
-            ("nnheader" package nil nil [36323 36342]))          
-      :file "nnheader.el"
-      :pointmax 36370
-      :fsize 36369
-      :lastmodtime '(23525 29556 0 0)
-      :unmatched-syntax '((close-paren 13224 . 13225) (symbol 13164 . 13180) (open-paren 13163 . 13164) (close-paren 1006 . 1007) (symbol 975 . 992) (open-paren 974 . 975)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus-sum" include nil nil [1767 1786])
-            ("gnus-bookmark" customgroup (:user-visible-flag t) nil [2386 2484])
-            ("gnus-bookmark-default-file" variable (:default-value (cond ((file-exists-p "~/.gnus.bmk") "~/.gnus.bmk") (t (nnheader-concat gnus-directory "bookmarks.el")))) nil [2486 2767])
-            ("gnus-bookmark-file-coding-system" variable (:default-value (if (mm-coding-system-p (quote iso-2022-7bit)) (quote iso-2022-7bit))) nil [2769 2996])
-            ("gnus-bookmark-sort-flag" variable (:default-value t) nil [2998 3255])
-            ("gnus-bookmark-bmenu-toggle-infos" variable (:default-value t) nil [3257 3625])
-            ("gnus-bookmark-bmenu-file-column" variable (:default-value 30) nil [3627 3905])
-            ("gnus-bookmark-use-annotations" variable nil nil [3907 4056])
-            ("gnus-bookmark-bookmark-inline-details" variable (:default-value (quote (author))) nil [4058 4487])
-            ("gnus-bookmark-bookmark-details" variable (:default-value (quote (author subject date group annotation))) nil [4489 5015])
-            ("gnus-bookmark-menu-heading" variable
-               (:default-value (quote ((t (:inherit font-lock-type-face))))
-                :type "face")
-                nil [5017 5216])
-            ("gnus-bookmark-end-of-version-stamp-marker" variable
-               (:constant-flag t
-                :default-value "-*- End Of Bookmark File Format Version Stamp -*-
-")
-                nil [5218 5402])
-            ("gnus-bookmark-file-format-version" variable (:constant-flag t) nil [5404 5550])
-            ("gnus-bookmark-alist" variable nil nil [5552 5908])
-            ("gnus-bookmark-set" function (:user-visible-flag t) nil [5925 7052])
-            ("gnus-bookmark-make-record" function (:arguments ("group" "message-id" "author" "date" "subject" "annotation")) nil [7054 7589])
-            ("gnus-bookmark-set-bookmark-name" function (:arguments ("group" "author" "subject")) nil [7591 8247])
-            ("gnus-bookmark-write-file" function (:user-visible-flag t) nil [8249 9103])
-            ("gnus-bookmark-insert-file-format-version-stamp" function nil nil [9105 9709])
-            ("gnus-bookmark-jump" function
-               (:user-visible-flag t
-                :arguments ("bmk-name"))
-                nil [9726 10663])
-            ("gnus-bookmark-already-loaded" variable nil nil [10665 10706])
-            ("gnus-bookmark-alist-from-buffer" function nil nil [10708 11205])
-            ("gnus-bookmark-load" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [11207 11964])
-            ("gnus-bookmark-maybe-load-default-file" function nil nil [11966 12273])
-            ("gnus-bookmark-maybe-sort-alist" function nil nil [12275 12616])
-            ("gnus-bookmark-bmenu-list" function (:user-visible-flag t) nil [12633 14262])
-            ("gnus-bookmark-bmenu-surreptitiously-rebuild-list" function nil nil [14264 14538])
-            ("gnus-bookmark-get-annotation" function (:arguments ("bookmark")) nil [14540 14719])
-            ("gnus-bookmark-get-bookmark" function (:arguments ("bookmark")) nil [14721 14946])
-            ("gnus-bookmark-get-bookmark-record" function (:arguments ("bookmark")) nil [14948 15168])
-            ("gnus-bookmark-name-from-full-record" function (:arguments ("full-record")) nil [15170 15318])
-            ("gnus-bookmark-bmenu-bookmark-column" variable nil nil [15320 15368])
-            ("gnus-bookmark-bmenu-hidden-bookmarks" variable nil nil [15369 15417])
-            ("gnus-bookmark-bmenu-mode-map" variable nil nil [15418 15459])
-            ("if" code nil nil [15461 17036])
-            ("put" code nil nil [17117 17169])
-            ("defalias" code nil nil [17216 17278])
-            ("define-derived-mode" code nil nil [17280 19089])
-            ("gnus-bookmark-bmenu-toggle-infos" variable nil nil [19121 19166])
-            ("gnus-bookmark-bmenu-toggle-infos" function
-               (:user-visible-flag t
-                :arguments ("show"))
-                nil [19168 19724])
-            ("gnus-bookmark-bmenu-show-infos" function (:arguments ("force")) nil [19726 20835])
-            ("gnus-bookmark-insert-details" function (:arguments ("bmk-name")) nil [20837 21336])
-            ("gnus-bookmark-kill-line" function (:arguments ("newline-too")) nil [21338 21630])
-            ("gnus-bookmark-get-details" function (:arguments ("bmk-name" "details-list")) nil [21632 21911])
-            ("gnus-bookmark-bmenu-hide-infos" function (:arguments ("force")) nil [21913 23324])
-            ("gnus-bookmark-bmenu-check-position" function nil nil [23326 23789])
-            ("gnus-bookmark-bmenu-bookmark" function nil nil [23791 24693])
-            ("gnus-bookmark-show-details" function (:arguments ("bookmark")) nil [24695 25281])
-            ("gnus-bookmark-bmenu-show-details" function (:user-visible-flag t) nil [25283 25547])
-            ("gnus-bookmark-bmenu-mark" function (:user-visible-flag t) nil [25549 25930])
-            ("gnus-bookmark-bmenu-unmark" function
-               (:user-visible-flag t
-                :arguments ("backup"))
-                nil [25932 26565])
-            ("gnus-bookmark-bmenu-backup-unmark" function (:user-visible-flag t) nil [26567 26888])
-            ("gnus-bookmark-bmenu-delete" function (:user-visible-flag t) nil [26890 27336])
-            ("gnus-bookmark-bmenu-delete-backwards" function (:user-visible-flag t) nil [27338 27753])
-            ("gnus-bookmark-bmenu-select" function (:user-visible-flag t) nil [27755 28239])
-            ("gnus-bookmark-bmenu-select-by-mouse" function (:arguments ("event")) nil [28241 28369])
-            ("gnus-bookmark-bmenu-load" function (:user-visible-flag t) nil [28371 28697])
-            ("gnus-bookmark-bmenu-execute-deletions" function (:user-visible-flag t) nil [28699 30017])
-            ("gnus-bookmark-delete" function (:arguments ("bookmark" "batch")) nil [30019 30754])
-            ("gnus-bookmark" package nil nil [30756 30780]))          
-      :file "gnus-bookmark.el"
-      :pointmax 30813
-      :fsize 30812
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus-art" include nil nil [8177 8196])
-            ("gnus-sum" include nil nil [8197 8216])
-            ("gnus-outlook-deuglify-version" variable
-               (:constant-flag t
-                :default-value "1.5 Gnus version")
-                nil [8218 8315])
-            ("gnus-outlook-deuglify" customgroup (:user-visible-flag t) nil [8351 8501])
-            ("gnus-outlook-deuglify-unwrap-min" variable (:default-value 45) nil [8503 8689])
-            ("gnus-outlook-deuglify-unwrap-max" variable (:default-value 95) nil [8691 8860])
-            ("gnus-outlook-deuglify-cite-marks" variable (:default-value ">|#%") nil [8862 9021])
-            ("gnus-outlook-deuglify-unwrap-stop-chars" variable nil nil [9023 9329])
-            ("gnus-outlook-deuglify-no-wrap-chars" variable (:default-value "`") nil [9331 9543])
-            ("gnus-outlook-deuglify-attrib-cut-regexp" variable (:default-value "\\(On \\|Am \\)?\\(Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\|Sun\\),[^,]+, ") nil [9545 9830])
-            ("gnus-outlook-deuglify-attrib-verb-regexp" variable (:default-value "wrote\\|writes\\|says\\|schrieb\\|schreibt\\|meinte\\|skrev\\|a écrit\\|schreef\\|escribió") nil [9832 10115])
-            ("gnus-outlook-deuglify-attrib-end-regexp" variable (:default-value ": *\\|\\.\\.\\.") nil [10117 10319])
-            ("gnus-outlook-display-hook" variable nil nil [10321 10535])
-            ("gnus-outlook-display-article-buffer" function nil nil [10551 11077])
-            ("gnus-article-outlook-unwrap-lines" function
-               (:user-visible-flag t
-                :arguments ("nodisplay"))
-                nil [11094 12342])
-            ("gnus-outlook-rearrange-article" function (:arguments ("attr-start")) nil [12344 13406])
-            ("gnus-outlook-repair-attribution-outlook" function nil nil [13507 14093])
-            ("gnus-outlook-repair-attribution-block" function nil nil [14283 14802])
-            ("gnus-outlook-repair-attribution-other" function nil nil [14883 15541])
-            ("gnus-article-outlook-repair-attribution" function
-               (:user-visible-flag t
-                :arguments ("nodisplay"))
-                nil [15558 15987])
-            ("gnus-article-outlook-rearrange-citation" function
-               (:user-visible-flag t
-                :arguments ("nodisplay"))
-                nil [15989 16444])
-            ("gnus-outlook-deuglify-article" function
-               (:user-visible-flag t
-                :arguments ("nodisplay"))
-                nil [16461 17051])
-            ("gnus-article-outlook-deuglify-article" function (:user-visible-flag t) nil [17068 17232])
-            ("deuglify" package nil nil [17234 17253]))          
-      :file "deuglify.el"
-      :pointmax 17327
-      :fsize 17328
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "mm-url.el"
-      :fsize 13612
-      :lastmodtime '(23525 29555 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("nndiary" include nil nil [1240 1258])
-            ("message" include nil nil [1259 1277])
-            ("gnus-art" include nil nil [1278 1297])
-            ("gnus-diary" customgroup (:user-visible-flag t) nil [1299 1412])
-            ("gnus-diary-summary-line-format" variable (:default-value "%U%R%z %uD: %(%s%) (%ud)
-") nil [1414 1596])
-            ("gnus-diary-time-format" variable (:default-value "%a, %b %e %y, %H:%M") nil [1598 1832])
-            ("gnus-diary-delay-format-function" variable (:default-value (quote gnus-diary-delay-format-english)) nil [1834 2585])
-            ("gnus-diary-version" variable
-               (:constant-flag t
-                :default-value nndiary-version)
-                nil [2587 2668])
-            ("gnus-diary-kill-entire-line" function nil nil [2750 2856])
-            ("gnus-diary-delay-format-french" function (:arguments ("past" "delay")) nil [2938 3674])
-            ("gnus-diary-delay-format-english" function (:arguments ("past" "delay")) nil [3677 4143])
-            ("gnus-diary-header-schedule" function (:arguments ("headers")) nil [4146 4482])
-            ("gnus-user-format-function-d" function (:arguments ("header")) nil [4670 5941])
-            ("gnus-user-format-function-D" function (:arguments ("header")) nil [6129 6455])
-            ("gnus-article-sort-by-schedule" function (:arguments ("h1" "h2")) nil [6537 6972])
-            ("gnus-thread-sort-by-schedule" function (:arguments ("h1" "h2")) nil [6975 7106])
-            ("gnus-summary-sort-by-schedule" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [7108 7354])
-            ("gnus-summary-misc-menu" variable nil nil [7356 7387])
-            ("add-hook" code nil nil [7420 7704])
-            ("gnus-diary-update-group-parameters" function (:arguments ("group")) nil [7787 9231])
-            ("gnus-diary-maybe-update-group-parameters" function (:arguments ("group")) nil [9450 9617])
-            ("add-hook" code nil nil [9619 9708])
-            ("add-hook" code nil nil [9837 9925])
-            ("add-hook" code nil nil [9926 10017])
-            ("gnus-diary-header-value-history" variable nil nil [10099 10195])
-            ("gnus-diary-narrow-to-headers" function nil nil [10197 10623])
-            ("gnus-diary-add-header" function (:arguments ("str")) nil [10625 11008])
-            ("gnus-diary-check-message" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [11010 13118])
-            ("add-hook" code nil nil [13120 13218])
-            ("define-key" code nil nil [13220 13287])
-            ("define-key" code nil nil [13288 13365])
-            ("gnus-diary-version" function (:user-visible-flag t) nil [13447 13577])
-            ("gnus-diary" package nil nil [13579 13600]))          
-      :file "gnus-diary.el"
-      :pointmax 13630
-      :fsize 13629
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "nndiary.el"
-      :fsize 55666
-      :lastmodtime '(23525 29556 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [2907 2920])
-            ("gnus" include nil nil [2923 2938])
-            ("gnus-int" include nil nil [2939 2958])
-            ("gnus-sum" include nil nil [2959 2978])
-            ("gnus-art" include nil nil [2979 2998])
-            ("gnus-util" include nil nil [2999 3019])
-            ("nnmail" include nil nil [3020 3037])
-            ("easymenu" include nil nil [3038 3057])
-            ("registry" include nil nil [3058 3077])
-            ("gnus-adaptive-word-syntax-table" variable nil nil [3079 3119])
-            ("gnus-registry-dirty" variable (:default-value t) nil [3121 3202])
-            ("gnus-registry" customgroup (:user-visible-flag t) nil [3204 3288])
-            ("gnus-registry-marks" variable (:default-value (quote ((Important :char 105 :image "summary_important") (Work :char 119 :image "summary_work") (Personal :char 112 :image "summary_personal") (To-Do :char 116 :image "summary_todo") (Later :char 108 :image "summary_later")))) nil [3290 3903])
-            ("gnus-registry-default-mark" variable (:default-value (quote To-Do)) nil [3905 4062])
-            ("gnus-registry-unfollowed-addresses" variable (:default-value (list (regexp-quote user-mail-address))) nil [4064 4433])
-            ("gnus-registry-unfollowed-groups" variable (:default-value (quote ("delayed$" "drafts$" "queue$" "INBOX$" "^nnmairix:" "archive"))) nil [4435 4939])
-            ("gnus-registry-install" variable (:default-value (quote ask)) nil [4941 5192])
-            ("gnus-registry-enabled" variable nil nil [5194 5228])
-            ("gnus-summary-misc-menu" variable nil nil [5230 5261])
-            ("gnus-registry-misc-menus" variable nil nil [5295 5332])
-            ("make-obsolete-variable" code nil nil [5365 5427])
-            ("make-obsolete-variable" code nil nil [5428 5499])
-            ("make-obsolete-variable" code nil nil [5500 5567])
-            ("make-obsolete-variable" code nil nil [5568 5632])
-            ("make-obsolete-variable" code nil nil [5633 5712])
-            ("make-obsolete-variable" code nil nil [5745 5814])
-            ("gnus-registry-track-extra" variable (:default-value (quote (subject sender recipient))) nil [5816 6301])
-            ("gnus-registry-split-strategy" variable nil nil [6303 7311])
-            ("gnus-registry-minimum-subject-length" variable (:default-value 5) nil [7313 7474])
-            ("gnus-registry-extra-entries-precious" variable (:default-value (quote (mark))) nil [7476 7884])
-            ("gnus-registry-cache-file" variable (:default-value (nnheader-concat (or gnus-dribble-directory gnus-home-directory "~/") ".gnus.registry.eieio")) nil [7886 8111])
-            ("gnus-registry-max-entries" variable nil nil [8113 8349])
-            ("gnus-registry-prune-factor" variable (:default-value 0.1) nil [8351 8925])
-            ("gnus-registry-default-sort-function" variable (:default-value (function gnus-registry-sort-by-creation-time)) nil [8927 9289])
-            ("gnus-registry-sort-by-creation-time" function (:arguments ("l" "r")) nil [9291 9513])
-            ("gnus-registry-fixup-registry" function (:arguments ("db")) nil [9515 10193])
-            ("gnus-registry-make-db" function (:arguments ("file")) nil [10195 10658])
-            ("gnus-registry-db" variable (:default-value (gnus-registry-make-db)) nil [10660 10769])
-            ("gnus-registry-remake-db" function
-               (:user-visible-flag t
-                :arguments ("forsure"))
-                nil [10809 11170])
-            ("gnus-registry-load" function (:user-visible-flag t) nil [11172 12070])
-            ("gnus-registry-read" function (:arguments ("file")) nil [12072 12567])
-            ("gnus-registry-save" function
-               (:user-visible-flag t
-                :arguments ("file" "db"))
-                nil [12569 13146])
-            ("gnus-registry-remove-ignored" function nil nil [13148 13683])
-            ("gnus-registry-action" function (:arguments ("action" "data-header" "from" "to" "method")) nil [13727 14684])
-            ("gnus-registry-spool-action" function (:arguments ("id" "group" "subject" "sender" "recipients")) nil [14686 15435])
-            ("gnus-registry-handle-action" function (:arguments ("id" "from" "to" "subject" "sender" "recipients")) nil [15437 17041])
-            ("gnus-registry-split-fancy-with-parent" function nil nil [17169 19291])
-            ("gnus-registry--split-fancy-with-parent-internal" function (:arguments ("spec" "references" "refstr" "sender" "subject" "recipients" "log-agent")) nil [19293 24507])
-            ("gnus-registry-post-process-groups" function (:arguments ("mode" "key" "groups")) nil [24509 27737])
-            ("gnus-registry-follow-group-p" function (:arguments ("group")) nil [27739 28174])
-            ("gnus-registry-ignore-group-p" function (:arguments ("group")) nil [28425 29448])
-            ("gnus-registry-wash-for-keywords" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [29450 30456])
-            ("gnus-registry-keywords" function nil nil [30458 30643])
-            ("gnus-registry-find-keywords" function (:arguments ("keyword")) nil [30645 30860])
-            ("gnus-registry-register-message-ids" function nil nil [30862 31633])
-            ("gnus-registry-fetch-message-id-fast" function (:arguments ("article")) nil [31661 31958])
-            ("gnus-registry-extract-addresses" function (:arguments ("text")) nil [31960 32627])
-            ("gnus-registry-sort-addresses" function (:arguments ("addresses")) nil [32629 32812])
-            ("gnus-registry-simplify-subject" function (:arguments ("subject")) nil [32814 32933])
-            ("gnus-registry-fetch-simplified-message-subject-fast" function (:arguments ("article")) nil [32935 33364])
-            ("gnus-registry-fetch-sender-fast" function (:arguments ("article")) nil [33366 33466])
-            ("gnus-registry-fetch-recipients-fast" function (:arguments ("article")) nil [33468 33702])
-            ("gnus-registry-fetch-header-fast" function (:arguments ("article" "header")) nil [33704 34072])
-            ("gnus-registry-do-marks" function (:arguments ("type" "function")) nil [34097 34515])
-            ("gnus-registry--set/remove-mark" function (:arguments ("mark" "remove" "articles")) nil [34620 35713])
-            ("gnus-registry-install-shortcuts" function nil nil [35775 38364])
-            ("make-obsolete" code nil nil [38366 38479])
-            ("defalias" code nil nil [38483 38571])
-            ("gnus-registry-article-marks-to-chars" function (:arguments ("headers")) nil [38672 39043])
-            ("gnus-registry-article-marks-to-names" function (:arguments ("headers")) nil [39144 39414])
-            ("gnus-registry-read-mark" function nil nil [39416 39765])
-            ("gnus-registry-set-article-mark" function
-               (:user-visible-flag t
-                :arguments ("articles"))
-                nil [39767 40059])
-            ("gnus-registry-remove-article-mark" function
-               (:user-visible-flag t
-                :arguments ("articles"))
-                nil [40061 40357])
-            ("gnus-registry-set-article-mark-internal" function (:arguments ("mark" "articles" "remove" "show-message")) nil [40359 41150])
-            ("gnus-registry-get-article-marks" function
-               (:user-visible-flag t
-                :arguments ("articles"))
-                nil [41152 41682])
-            ("gnus-registry-group-count" function (:arguments ("id")) nil [41684 41838])
-            ("gnus-registry-get-or-make-entry" function (:arguments ("id")) nil [41840 42257])
-            ("gnus-registry-delete-entries" function (:arguments ("idlist")) nil [42259 42352])
-            ("gnus-registry-get-id-key" function (:arguments ("id" "key")) nil [42354 42456])
-            ("gnus-registry-set-id-key" function (:arguments ("id" "key" "vals")) nil [42458 42747])
-            ("gnus-registry-insert" function (:arguments ("db" "id" "entry")) nil [42749 43048])
-            ("gnus-registry-import-eld" function (:arguments ("file")) nil [43050 44879])
-            ("gnus-registry-initialize" function (:user-visible-flag t) nil [44896 45119])
-            ("gnus-registry-install-hooks" function (:user-visible-flag t) nil [45174 45751])
-            ("gnus-registry-unload-hook" function (:user-visible-flag t) nil [45753 46353])
-            ("add-hook" code nil nil [46355 46419])
-            ("gnus-registry-install-p" function (:user-visible-flag t) nil [46421 47082])
-            ("gnus-try-warping-via-registry" function (:user-visible-flag t) nil [47125 49117])
-            ("gnus-registry-remove-extra-data" function
-               (:user-visible-flag t
-                :arguments ("extra"))
-                nil [49119 49978])
-            ("gnus-registry" package nil nil [50003 50027]))          
-      :file "gnus-registry.el"
-      :pointmax 50060
-      :fsize 50059
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((symbol 38480 . 38481) (close-paren 2920 . 2921) (symbol 2889 . 2906) (open-paren 2888 . 2889)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gravatar" include nil nil [872 891])
-            ("gnus-art" include nil nil [892 911])
-            ("mail-extr" include nil nil [912 932])
-            ("gnus-gravatar" customgroup (:user-visible-flag t) nil [984 1053])
-            ("gnus-gravatar-size" variable nil nil [1055 1248])
-            ("gnus-gravatar-properties" variable (:default-value (quote (:ascent center :relief 1))) nil [1250 1428])
-            ("gnus-gravatar-too-ugly" variable (:default-value gnus-article-x-face-too-ugly) nil [1430 1647])
-            ("gnus-gravatar-transform-address" function (:arguments ("header" "category" "force")) nil [1649 2538])
-            ("gnus-gravatar-insert" function (:arguments ("gravatar" "header" "address" "category")) nil [2540 4197])
-            ("gnus-treat-from-gravatar" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [4214 4585])
-            ("gnus-treat-mail-gravatar" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [4602 5051])
-            ("gnus-gravatar" package nil nil [5053 5077]))          
-      :file "gnus-gravatar.el"
-      :pointmax 5110
-      :fsize 5109
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [945 958])
-            ("gnus" include nil nil [961 976])
-            ("gnus-art" include nil nil [977 996])
-            ("gnus-range" include nil nil [997 1018])
-            ("gnus-kill-file-mode-hook" variable nil nil [1020 1134])
-            ("gnus-kill-expiry-days" variable (:default-value 7) nil [1136 1303])
-            ("gnus-kill-save-kill-file" variable nil nil [1305 1448])
-            ("gnus-winconf-kill-file" variable nil nil [1450 1533])
-            ("gnus-kill-killed" variable (:default-value t) nil [1535 1831])
-            ("gnus-raise" function (:arguments ("field" "expression" "level")) nil [1836 1970])
-            ("gnus-lower" function (:arguments ("field" "expression" "level")) nil [1972 2110])
-            ("gnus-kill-file-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map emacs-lisp-mode-map) (gnus-define-keymap map "" gnus-kill-file-kill-by-subject "" gnus-kill-file-kill-by-author "" gnus-kill-file-kill-by-thread "" gnus-kill-file-kill-by-xref "" gnus-kill-file-apply-buffer "" gnus-kill-file-apply-last-sexp "" gnus-kill-file-exit) map)) nil [2145 2632])
-            ("define-derived-mode" code nil nil [2634 5526])
-            ("gnus-kill-file-edit-file" function
-               (:user-visible-flag t
-                :arguments ("newsgroup"))
-                nil [5528 6582])
-            ("gnus-kill-set-kill-buffer" function nil nil [6637 6850])
-            ("gnus-kill-file-enter-kill" function (:arguments ("field" "regexp" "dont-move")) nil [6852 7335])
-            ("gnus-kill-file-kill-by-subject" function (:user-visible-flag t) nil [7337 7600])
-            ("gnus-kill-file-kill-by-author" function (:user-visible-flag t) nil [7602 7829])
-            ("gnus-kill-file-kill-by-thread" function (:user-visible-flag t) nil [7831 8060])
-            ("gnus-kill-file-kill-by-xref" function (:user-visible-flag t) nil [8062 8613])
-            ("gnus-kill-file-raise-followups-to-author" function
-               (:user-visible-flag t
-                :arguments ("level"))
-                nil [8615 9304])
-            ("gnus-kill-file-apply-buffer" function (:user-visible-flag t) nil [9306 9630])
-            ("gnus-kill-file-apply-string" function
-               (:user-visible-flag t
-                :arguments ("string"))
-                nil [9632 9912])
-            ("gnus-kill-file-apply-last-sexp" function (:user-visible-flag t) nil [9914 10446])
-            ("gnus-kill-file-exit" function (:user-visible-flag t) nil [10448 11084])
-            ("gnus-expunge" function (:arguments ("marks")) nil [11105 11262])
-            ("gnus-apply-kill-file-unless-scored" function nil nil [11264 11811])
-            ("gnus-apply-kill-file-internal" function nil nil [11813 13837])
-            ("gnus-kill-parse-gnus-kill-file" function nil nil [13865 14540])
-            ("gnus-kill-parse-rn-kill-file" function nil nil [14567 15626])
-            ("gnus-kill" function (:arguments ("field" "regexp" "exe-command" "all" "silent")) nil [15729 18125])
-            ("gnus-pp-gnus-kill" function (:arguments ("object")) nil [18127 19102])
-            ("gnus-execute-1" function (:arguments ("function" "regexp" "form" "header")) nil [19104 20447])
-            ("gnus-execute" function (:arguments ("field" "regexp" "form" "backward" "unread")) nil [20449 22256])
-            ("defalias" code nil nil [22273 22318])
-            ("gnus-batch-score" function (:user-visible-flag t) nil [22334 23571])
-            ("gnus-kill" package nil nil [23573 23593]))          
-      :file "gnus-kill.el"
-      :pointmax 23622
-      :fsize 23621
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax '((close-paren 958 . 959) (symbol 927 . 944) (open-paren 926 . 927)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("nndraft" include nil nil [1209 1227])
-            ("gnus-draft" include nil nil [1228 1249])
-            ("parse-time-string" function (:prototype-flag t) nil [1250 1300])
-            ("gnus-delay" customgroup (:user-visible-flag t) nil [1302 1400])
-            ("gnus-delay-group" variable (:default-value "delayed") nil [1402 1522])
-            ("gnus-delay-header" variable (:default-value "X-Gnus-Delayed") nil [1524 1664])
-            ("gnus-delay-default-delay" variable (:default-value "3d") nil [1666 1773])
-            ("gnus-delay-default-hour" variable (:default-value 8) nil [1775 1932])
-            ("gnus-delay-article" function
-               (:user-visible-flag t
-                :arguments ("delay"))
-                nil [1949 4940])
-            ("gnus-delay-send-queue" function (:user-visible-flag t) nil [4957 6115])
-            ("gnus-delay-initialize" function (:arguments ("no-keymap" "no-check")) nil [6132 6561])
-            ("gnus-delay" package nil nil [6563 6584]))          
-      :file "gnus-delay.el"
-      :pointmax 6660
-      :fsize 6660
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "nndraft.el"
-      :fsize 11905
-      :lastmodtime '(23525 29556 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus" include nil nil [884 899])
-            ("gnus-sum" include nil nil [900 919])
-            ("message" include nil nil [920 938])
-            ("gnus-msg" include nil nil [939 958])
-            ("nndraft" include nil nil [959 977])
-            ("gnus-agent" include nil nil [978 999])
-            ("cl" include nil nil [1019 1032])
-            ("gnus-draft-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (gnus-define-keys map "Dt" gnus-draft-toggle-sending "e" gnus-draft-edit-message "De" gnus-draft-edit-message "Ds" gnus-draft-send-message "DS" gnus-draft-send-all-messages) map)) nil [1057 1379])
-            ("gnus-draft-make-menu-bar" function nil nil [1381 1817])
-            ("define-minor-mode" code nil nil [1819 2262])
-            ("gnus-draft-toggle-sending" function
-               (:user-visible-flag t
-                :arguments ("article"))
-                nil [2278 2751])
-            ("gnus-draft-edit-message" function (:user-visible-flag t) nil [2753 3675])
-            ("gnus-draft-send-message" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [3677 4336])
-            ("gnus-draft-send" function (:arguments ("article" "group" "interactive")) nil [4338 6943])
-            ("gnus-draft-send-all-messages" function (:user-visible-flag t) nil [6945 7164])
-            ("gnus-group-send-queue" function (:user-visible-flag t) nil [7166 8040])
-            ("gnus-draft-reminder" function (:user-visible-flag t) nil [8057 8478])
-            ("gnus-draft-setup-hook" variable nil nil [8480 8629])
-            ("gnus-draft-setup" function (:arguments ("narticle" "group" "restore" "dont-pop")) nil [8632 10558])
-            ("gnus-draft-article-sendable-p" function (:arguments ("article")) nil [10560 10693])
-            ("gnus-draft-check-draft-articles" function (:arguments ("articles")) nil [10695 11622])
-            ("gnus-draft-clear-marks" function nil nil [11624 11761])
-            ("gnus-draft" package nil nil [11763 11784]))          
-      :file "gnus-draft.el"
-      :pointmax 11814
-      :fsize 11813
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax '((close-paren 1032 . 1033) (symbol 1001 . 1018) (open-paren 1000 . 1001)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ignore-errors" code nil nil [1115 1157])
-            ("gnus-sum" include nil nil [1158 1177])
-            ("gnus-group" include nil nil [1178 1199])
-            ("gnus-int" include nil nil [1200 1219])
-            ("gnus-art" include nil nil [1220 1239])
-            ("gnus-util" include nil nil [1240 1260])
-            ("ignore-errors" code nil nil [1261 1305])
-            ("gnus-fun" include nil nil [1324 1343])
-            ("gnus-notifications" customgroup (:user-visible-flag t) nil [1345 1458])
-            ("gnus-notifications-use-google-contacts" variable (:default-value t) nil [1460 1601])
-            ("gnus-notifications-use-gravatar" variable (:default-value t) nil [1603 1730])
-            ("gnus-notifications-minimum-level" variable (:default-value 1) nil [1732 1974])
-            ("gnus-notifications-timeout" variable nil nil [1976 2214])
-            ("gnus-notifications-sent" variable nil nil [2216 2284])
-            ("gnus-notifications-id-to-msg" variable nil nil [2286 2366])
-            ("gnus-notifications-action" function (:arguments ("id" "key")) nil [2368 3009])
-            ("gnus-notifications-notify" function (:arguments ("from" "subject" "photo-file")) nil [3011 3723])
-            ("declare-function" code nil nil [3725 3808])
-            ("gnus-notifications-get-photo" function (:arguments ("mail-address")) nil [3810 4481])
-            ("gnus-notifications-get-photo-file" function (:arguments ("mail-address")) nil [4483 4975])
-            ("gnus-notifications" function nil nil [4992 8196])
-            ("gnus-notifications" package nil nil [8198 8227]))          
-      :file "gnus-notifications.el"
-      :pointmax 8265
-      :fsize 8264
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus" include nil nil [922 937])
-            ("gnus-msg" include nil nil [938 957])
-            ("cl" include nil nil [977 990])
-            ("gnus-mailing-list-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (gnus-define-keys map "h" gnus-mailing-list-help "s" gnus-mailing-list-subscribe "u" gnus-mailing-list-unsubscribe "p" gnus-mailing-list-post "o" gnus-mailing-list-owner "a" gnus-mailing-list-archive) map)) nil [1022 1391])
-            ("gnus-mailing-list-menu" variable nil nil [1393 1424])
-            ("gnus-mailing-list-make-menu-bar" function nil nil [1426 1924])
-            ("turn-on-gnus-mailing-list-mode" function nil nil [1941 2079])
-            ("gnus-mailing-list-insinuate" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [2096 2794])
-            ("define-minor-mode" code nil nil [2811 3239])
-            ("gnus-mailing-list-help" function (:user-visible-flag t) nil [3255 3567])
-            ("gnus-mailing-list-subscribe" function (:user-visible-flag t) nil [3569 3903])
-            ("gnus-mailing-list-unsubscribe" function (:user-visible-flag t) nil [3905 4255])
-            ("gnus-mailing-list-post" function (:user-visible-flag t) nil [4257 4565])
-            ("gnus-mailing-list-owner" function (:user-visible-flag t) nil [4567 4882])
-            ("gnus-mailing-list-archive" function (:user-visible-flag t) nil [4884 5319])
-            ("gnus-mailing-list-message" function (:arguments ("address")) nil [5344 5643])
-            ("gnus-ml" package nil nil [5645 5663]))          
-      :file "gnus-ml.el"
-      :pointmax 5690
-      :fsize 5689
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 990 . 991) (symbol 959 . 976) (open-paren 958 . 959)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1077 1090])
-            ("gnus-art" include nil nil [1093 1112])
-            ("mm-decode" include nil nil [1132 1152])
-            ("mm-url" include nil nil [1155 1172])
-            ("url" include nil nil [1173 1187])
-            ("url-cache" include nil nil [1188 1208])
-            ("xml" include nil nil [1209 1223])
-            ("browse-url" include nil nil [1224 1245])
-            ("mm-util" include nil nil [1246 1264])
-            ("help-fns" include nil nil [1265 1284])
-            ("url-queue" include nil nil [1285 1305])
-            ("gnus-html-image-cache-ttl" variable (:default-value (days-to-time 7)) nil [1307 1708])
-            ("gnus-html-image-automatic-caching" variable (:default-value t) nil [1710 1860])
-            ("gnus-html-frame-width" variable (:default-value 70) nil [1862 1995])
-            ("gnus-max-image-proportion" variable (:default-value 0.9) nil [1997 2375])
-            ("gnus-html-image-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "u" (quote gnus-article-copy-string)) (define-key map "i" (quote gnus-html-insert-image)) (define-key map "v" (quote gnus-html-browse-url)) map)) nil [2377 2597])
-            ("gnus-html-displayed-image-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "a" (quote gnus-html-show-alt-text)) (define-key map "i" (quote gnus-html-browse-image)) (define-key map "
" (quote gnus-html-browse-url)) (define-key map "u" (quote gnus-article-copy-string)) (define-key map [tab] (quote widget-forward)) map)) nil [2599 2923])
-            ("gnus-html-encode-url" function (:arguments ("url")) nil [2925 3019])
-            ("gnus-html-cache-expired" function (:arguments ("url" "ttl")) nil [3021 3447])
-            ("gnus-article-html" function (:arguments ("handle")) nil [3464 4664])
-            ("gnus-article-mouse-face" variable nil nil [4666 4698])
-            ("gnus-html-pre-wash" function nil nil [4700 4955])
-            ("gnus-html-wash-images" function nil nil [4957 8145])
-            ("gnus-html-display-image" function (:arguments ("url" "start" "end" "alt-text")) nil [8147 8880])
-            ("gnus-html-wash-tags" function nil nil [8882 12175])
-            ("gnus-html-insert-image" function
-               (:user-visible-flag t
-                :arguments ("args"))
-                nil [12177 12355])
-            ("gnus-html-show-alt-text" function (:user-visible-flag t) nil [12357 12515])
-            ("gnus-html-browse-image" function (:user-visible-flag t) nil [12517 12654])
-            ("gnus-html-browse-url" function (:user-visible-flag t) nil [12656 12957])
-            ("gnus-html-schedule-image-fetching" function (:arguments ("buffer" "image")) nil [12959 13277])
-            ("gnus-html-image-fetched" function (:arguments ("status" "buffer" "image")) nil [13279 13889])
-            ("gnus-html-get-image-data" function (:arguments ("url")) nil [13891 14233])
-            ("gnus-html-maximum-image-size" function nil nil [14235 14720])
-            ("declare-function" code nil nil [14756 14825])
-            ("gnus-html-put-image" function (:arguments ("data" "url" "alt-text")) nil [14827 17106])
-            ("gnus-html-image-url-blocked-p" function (:arguments ("url" "blocked-images")) nil [17108 17562])
-            ("gnus-html-prefetch-images" function (:arguments ("summary")) nil [17579 18297])
-            ("gnus-html" package nil nil [18299 18319]))          
-      :file "gnus-html.el"
-      :pointmax 18348
-      :fsize 18347
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax '((close-paren 1152 . 1153) (symbol 1114 . 1131) (open-paren 1113 . 1114) (close-paren 1090 . 1091) (symbol 1059 . 1076) (open-paren 1058 . 1059)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus" include nil nil [1017 1032])
-            ("gnus-sum" include nil nil [1033 1052])
-            ("format-spec" include nil nil [1053 1075])
-            ("sieve-mode" function (:prototype-flag t) nil [1076 1111])
-            ("sieve" include nil nil [1133 1149])
-            ("gnus-sieve" customgroup (:user-visible-flag t) nil [1166 1240])
-            ("gnus-sieve-file" variable (:default-value "~/.sieve") nil [1242 1346])
-            ("gnus-sieve-region-start" variable (:default-value "
-## Begin Gnus Sieve Script
-") nil [1348 1533])
-            ("gnus-sieve-region-end" variable (:default-value "
-## End Gnus Sieve Script
-") nil [1535 1714])
-            ("gnus-sieve-select-method" variable nil nil [1716 1936])
-            ("gnus-sieve-crosspost" variable (:default-value t) nil [1938 2073])
-            ("gnus-sieve-update-shell-command" variable (:default-value "echo put %f | sieveshell %s") nil [2075 2395])
-            ("gnus-sieve-update" function (:user-visible-flag t) nil [2412 3011])
-            ("gnus-sieve-generate" function (:user-visible-flag t) nil [3028 3791])
-            ("gnus-sieve-guess-rule-for-article" function nil nil [3793 4037])
-            ("gnus-sieve-article-add-rule" function nil nil [4054 4519])
-            ("gnus-sieve-string-list" function (:arguments ("list")) nil [4572 4820])
-            ("gnus-sieve-test-list" function (:arguments ("list")) nil [4822 5144])
-            ("gnus-sieve-test-token" function (:arguments ("token")) nil [5174 5833])
-            ("gnus-sieve-test" function (:arguments ("test")) nil [5835 6320])
-            ("gnus-sieve-script" function (:arguments ("method" "crosspost")) nil [6322 7684])
-            ("gnus-sieve" package nil nil [7686 7707]))          
-      :file "gnus-sieve.el"
-      :pointmax 7737
-      :fsize 7736
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 1149 . 1150) (symbol 1113 . 1130) (open-paren 1112 . 1113)))
-    (semanticdb-table "semanticdb-table"
-      :file "nnimap.el"
-      :fsize 75819
-      :lastmodtime '(23525 29556 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [895 908])
-            ("gnus" include nil nil [911 926])
-            ("gnus-int" include nil nil [927 946])
-            ("nnheader" include nil nil [947 966])
-            ("nntp" include nil nil [967 982])
-            ("nnmail" include nil nil [983 1000])
-            ("gnus-demon" customgroup (:user-visible-flag t) nil [1002 1064])
-            ("gnus-demon-handlers" variable nil nil [1066 2036])
-            ("gnus-demon-timestep" variable (:default-value 60) nil [2038 2156])
-            ("gnus-demon-timers" variable nil nil [2183 2257])
-            ("gnus-inhibit-demon" variable nil nil [2258 2339])
-            ("gnus-demon-add-handler" function (:arguments ("function" "time" "idle")) nil [2357 2665])
-            ("gnus-demon-remove-handler" function (:arguments ("function" "no-init")) nil [2667 2878])
-            ("gnus-demon-idle-since" function nil nil [2880 3020])
-            ("gnus-demon-run-callback" function (:arguments ("func" "idle" "time" "special")) nil [3022 4133])
-            ("gnus-demon-init" function (:user-visible-flag t) nil [4135 5591])
-            ("gnus-demon-time-to-step" function (:arguments ("time")) nil [5593 6749])
-            ("gnus-add-shutdown" code nil nil [6751 6795])
-            ("gnus-demon-cancel" function (:user-visible-flag t) nil [6797 7015])
-            ("gnus-demon-add-disconnection" function nil nil [7017 7167])
-            ("gnus-demon-close-connections" function nil nil [7169 7260])
-            ("gnus-demon-add-nntp-close-connection" function nil nil [7262 7522])
-            ("gnus-demon-nntp-close-connection" function nil nil [7524 7689])
-            ("gnus-demon-add-scanmail" function nil nil [7691 7839])
-            ("gnus-demon-scan-mail" function nil nil [7841 8204])
-            ("gnus-demon-add-rescan" function nil nil [8206 8355])
-            ("gnus-demon-scan-news" function nil nil [8357 8621])
-            ("gnus-demon-add-scan-timestamps" function nil nil [8623 8786])
-            ("gnus-demon-scan-timestamps" function nil nil [8788 9337])
-            ("gnus-demon" package nil nil [9339 9360]))          
-      :file "gnus-demon.el"
-      :pointmax 9390
-      :fsize 9389
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 908 . 909) (symbol 877 . 894) (open-paren 876 . 877)))
-    (semanticdb-table "semanticdb-table"
-      :file "nntp.el"
-      :fsize 75891
-      :lastmodtime '(23525 29557 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [950 963])
-            ("gnus" include nil nil [966 981])
-            ("gnus-art" include nil nil [982 1001])
-            ("message" include nil nil [1002 1020])
-            ("gnus-msg" include nil nil [1021 1040])
-            ("mm-decode" include nil nil [1041 1061])
-            ("yenc" include nil nil [1062 1077])
-            ("gnus-extract" customgroup (:user-visible-flag t) nil [1079 1172])
-            ("gnus-extract-view" customgroup (:user-visible-flag t) nil [1174 1258])
-            ("gnus-extract-archive" customgroup (:user-visible-flag t) nil [1260 1351])
-            ("gnus-extract-post" customgroup (:user-visible-flag t) nil [1353 1466])
-            ("gnus-uu-default-view-rules" variable (:default-value (quote (("\\.te?xt$\\|\\.doc$\\|read.*me\\|\\.c?$\\|\\.h$\\|\\.bat$\\|\\.asm$\\|makefile" "cat %s | sed 's/
$//'") ("\\.pas$" "cat %s | sed 's/
$//'") ("\\.[1-9]$" "groff -mandoc -Tascii %s | sed s/.//g") ("\\.\\(jpe?g\\|gif\\|tiff?\\|p[pgb]m\\|xwd\\|xbm\\|pcx\\)$" "display") ("\\.tga$" "tgatoppm %s | ee -") ("\\.\\(wav\\|aiff\\|hcom\\|u[blw]\\|s[bfw]\\|voc\\|smp\\)$" "sox -v .5 %s -t .au -u - > /dev/audio") ("\\.au$" "cat %s > /dev/audio") ("\\.midi?$" "playmidi -f") ("\\.mod$" "str32") ("\\.ps$" "ghostview") ("\\.dvi$" "xdvi") ("\\.html$" "xmosaic") ("\\.mpe?g$" "mpeg_play") ("\\.\\(flc\\|fli\\|rle\\|iff\\|pfx\\|avi\\|sme\\|rpza\\|dl\\|qt\\|rsrc\\|mov\\)$" "xanim") ("\\.\\(tar\\|arj\\|zip\\|zoo\\|arc\\|gz\\|Z\\|lzh\\|ar\\|lha\\)$" "gnus-uu-archive")))) nil [1501 3686])
-            ("gnus-uu-user-view-rules" variable nil nil [3688 3941])
-            ("gnus-uu-user-view-rules-end" variable (:default-value (quote (("" "file")))) nil [3943 4231])
-            ("gnus-uu-default-archive-rules" variable (:default-value (quote (("\\.tar$" "tar xf") ("\\.zip$" "unzip -o") ("\\.ar$" "ar x") ("\\.arj$" "unarj x") ("\\.zoo$" "zoo -e") ("\\.\\(lzh\\|lha\\)$" "lha x") ("\\.Z$" "uncompress") ("\\.gz$" "gunzip") ("\\.arc$" "arc -x")))) nil [4264 4669])
-            ("gnus-uu-destructive-archivers" variable (:default-value (list "uncompress" "gunzip")) nil [4671 4740])
-            ("gnus-uu-user-archive-rules" variable nil nil [4742 5159])
-            ("gnus-uu-ignore-files-by-name" variable nil nil [5161 5639])
-            ("gnus-uu-ignore-files-by-type" variable nil nil [5641 6140])
-            ("gnus-uu-ext-to-mime-list" variable
-               (:constant-flag t
-                :default-value (quote (("\\.gif$" "image/gif") ("\\.jpe?g$" "image/jpeg") ("\\.tiff?$" "image/tiff") ("\\.xwd$" "image/xwd") ("\\.pbm$" "image/pbm") ("\\.pgm$" "image/pgm") ("\\.ppm$" "image/ppm") ("\\.xbm$" "image/xbm") ("\\.pcx$" "image/pcx") ("\\.tga$" "image/tga") ("\\.ps$" "image/postscript") ("\\.fli$" "video/fli") ("\\.wav$" "audio/wav") ("\\.aiff$" "audio/aiff") ("\\.hcom$" "audio/hcom") ("\\.voc$" "audio/voc") ("\\.smp$" "audio/smp") ("\\.mod$" "audio/mod") ("\\.dvi$" "image/dvi") ("\\.mpe?g$" "video/mpeg") ("\\.au$" "audio/basic") ("\\.\\(te?xt\\|doc\\|c\\|h\\)$" "text/plain") ("\\.\\(c\\|h\\)$" "text/source") ("read.*me" "text/plain") ("\\.html$" "text/html") ("\\.bat$" "text/bat") ("\\.[1-6]$" "text/man") ("\\.flc$" "video/flc") ("\\.rle$" "video/rle") ("\\.pfx$" "video/pfx") ("\\.avi$" "video/avi") ("\\.sme$" "video/sme") ("\\.rpza$" "video/prza") ("\\.dl$" "video/dl") ("\\.qt$" "video/qt") ("\\.rsrc$" "video/rsrc") ("\\..*$" "unknown/unknown"))))
-                nil [6166 7299])
-            ("gnus-uu-tmp-dir" variable (:default-value temporary-file-directory) nil [7337 7506])
-            ("gnus-uu-do-not-unpack-archives" variable nil nil [7508 7706])
-            ("gnus-uu-ignore-default-view-rules" variable nil nil [7708 7936])
-            ("gnus-uu-grabbed-file-functions" variable nil nil [7938 8283])
-            ("gnus-uu-ignore-default-archive-rules" variable nil nil [8285 8537])
-            ("gnus-uu-kill-carriage-return" variable (:default-value t) nil [8539 8713])
-            ("gnus-uu-view-with-metamail" variable nil nil [8715 8996])
-            ("gnus-uu-unmark-articles-not-decoded" variable nil nil [8998 9199])
-            ("gnus-uu-correct-stripped-uucode" variable nil nil [9201 9408])
-            ("gnus-uu-save-in-digest" variable nil nil [9410 9821])
-            ("gnus-uu-pre-uudecode-hook" variable nil nil [9823 9952])
-            ("gnus-uu-digest-headers" variable (:default-value (quote ("^Date:" "^From:" "^To:" "^Cc:" "^Subject:" "^Message-ID:" "^Keywords:" "^Summary:" "^References:" "^Content-Type:" "^Content-Transfer-Encoding:" "^MIME-Version:" "^Content-Disposition:" "^Content-Description:" "^Content-ID:"))) nil [9954 10439])
-            ("gnus-uu-save-separate-articles" variable nil nil [10441 10596])
-            ("gnus-uu-be-dangerous" variable (:default-value (quote ask)) nil [10598 10968])
-            ("gnus-uu-saved-article-name" variable nil nil [10993 11032])
-            ("gnus-uu-begin-string" variable (:default-value "^begin[ 	]+0?[0-7][0-7][0-7][ 	]+\\(.*\\)$") nil [11034 11110])
-            ("gnus-uu-end-string" variable (:default-value "^end[ 	]*$") nil [11111 11152])
-            ("gnus-uu-body-line" variable (:default-value "^M") nil [11154 11185])
-            ("let" code nil nil [11186 11357])
-            ("gnus-uu-shar-begin-string" variable (:default-value "^#! */bin/sh") nil [11429 11478])
-            ("gnus-uu-shar-name-marker" variable (:default-value "begin 0?[0-7][0-7][0-7][ 	]+\\(\\(\\w\\|[.\\:]\\)*\\b\\)") nil [11480 11575])
-            ("gnus-uu-postscript-begin-string" variable (:default-value "^%!PS-") nil [11577 11626])
-            ("gnus-uu-postscript-end-string" variable (:default-value "^%%EOF$") nil [11627 11675])
-            ("gnus-uu-file-name" variable nil nil [11677 11707])
-            ("gnus-uu-uudecode-process" variable nil nil [11708 11745])
-            ("gnus-uu-binhex-article-name" variable nil nil [11746 11786])
-            ("gnus-uu-yenc-article-name" variable nil nil [11787 11825])
-            ("gnus-uu-work-dir" variable nil nil [11827 11856])
-            ("gnus-uu-output-buffer-name" variable (:default-value " *Gnus UU Output*") nil [11858 11913])
-            ("gnus-uu-default-dir" variable (:default-value gnus-article-save-directory) nil [11915 11971])
-            ("gnus-uu-digest-from-subject" variable nil nil [11972 12012])
-            ("gnus-uu-digest-buffer" variable nil nil [12013 12047])
-            ("gnus-uu-decode-uu" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [12063 12215])
-            ("gnus-uu-decode-uu-and-save" function
-               (:user-visible-flag t
-                :arguments ("n" "dir"))
-                nil [12217 12551])
-            ("gnus-uu-decode-unshar" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [12553 12722])
-            ("gnus-uu-decode-unshar-and-save" function
-               (:user-visible-flag t
-                :arguments ("n" "dir"))
-                nil [12724 13062])
-            ("gnus-uu-decode-save" function
-               (:user-visible-flag t
-                :arguments ("n" "file"))
-                nil [13064 13507])
-            ("gnus-uu-decode-binhex" function
-               (:user-visible-flag t
-                :arguments ("n" "dir"))
-                nil [13509 13942])
-            ("gnus-uu-decode-yenc" function
-               (:user-visible-flag t
-                :arguments ("n" "dir"))
-                nil [13944 14307])
-            ("gnus-uu-decode-uu-view" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [14309 14508])
-            ("gnus-uu-decode-uu-and-save-view" function
-               (:user-visible-flag t
-                :arguments ("n" "dir"))
-                nil [14510 14858])
-            ("gnus-uu-decode-unshar-view" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [14860 15065])
-            ("gnus-uu-decode-unshar-and-save-view" function
-               (:user-visible-flag t
-                :arguments ("n" "dir"))
-                nil [15067 15415])
-            ("gnus-uu-decode-save-view" function
-               (:user-visible-flag t
-                :arguments ("n" "file"))
-                nil [15417 15871])
-            ("gnus-uu-decode-binhex-view" function
-               (:user-visible-flag t
-                :arguments ("n" "file"))
-                nil [15873 16327])
-            ("gnus-uu-digest-mail-forward" function
-               (:user-visible-flag t
-                :arguments ("n" "post"))
-                nil [16362 18836])
-            ("gnus-uu-digest-post-forward" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [18838 18982])
-            ("gnus-message-process-mark" function (:arguments ("unmarkp" "new-marked")) nil [19005 19481])
-            ("gnus-new-processable" function (:arguments ("unmarkp" "articles")) nil [19483 19669])
-            ("gnus-uu-mark-by-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp" "unmark"))
-                nil [19671 20295])
-            ("gnus-uu-unmark-by-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [20297 20528])
-            ("gnus-uu-mark-series" function
-               (:user-visible-flag t
-                :arguments ("silent"))
-                nil [20530 20939])
-            ("gnus-uu-mark-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "unmark"))
-                nil [20941 21351])
-            ("gnus-uu-unmark-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [21353 21516])
-            ("gnus-uu-mark-buffer" function (:user-visible-flag t) nil [21518 21668])
-            ("gnus-uu-unmark-buffer" function (:user-visible-flag t) nil [21670 21827])
-            ("gnus-uu-mark-thread" function (:user-visible-flag t) nil [21829 22203])
-            ("gnus-uu-unmark-thread" function (:user-visible-flag t) nil [22205 22535])
-            ("gnus-uu-invert-processable" function (:user-visible-flag t) nil [22537 22932])
-            ("gnus-uu-mark-over" function
-               (:user-visible-flag t
-                :arguments ("score"))
-                nil [22934 23419])
-            ("gnus-uu-mark-sparse" function (:user-visible-flag t) nil [23421 24300])
-            ("gnus-uu-mark-all" function (:user-visible-flag t) nil [24302 24874])
-            ("gnus-uu-decode-postscript" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [24956 25135])
-            ("gnus-uu-decode-postscript-view" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [25137 25347])
-            ("gnus-uu-decode-postscript-and-save" function
-               (:user-visible-flag t
-                :arguments ("n" "dir"))
-                nil [25349 25710])
-            ("gnus-uu-decode-postscript-and-save-view" function
-               (:user-visible-flag t
-                :arguments ("n" "dir"))
-                nil [25712 26083])
-            ("gnus-uu-decode-with-method" function (:arguments ("method" "n" "save" "not-insert" "scan" "cdir")) nil [26110 26954])
-            ("gnus-uu-scan-directory" function (:arguments ("dir" "rec")) nil [26956 27418])
-            ("gnus-uu-save-files" function (:arguments ("files" "dir")) nil [27420 28143])
-            ("gnus-uu-save-article" function (:arguments ("buffer" "in-state")) nil [28294 33821])
-            ("gnus-uu-binhex-body-line" variable (:default-value "^[^:]...............................................................$") nil [33865 33972])
-            ("gnus-uu-binhex-begin-line" variable (:default-value "^:...............................................................$") nil [33973 34078])
-            ("gnus-uu-binhex-end-line" variable (:default-value ":$") nil [34079 34118])
-            ("gnus-uu-binhex-article" function (:arguments ("buffer" "in-state")) nil [34120 35238])
-            ("gnus-uu-yenc-article" function (:arguments ("buffer" "in-state")) nil [35249 36165])
-            ("gnus-uu-decode-postscript-article" function (:arguments ("process-buffer" "in-state")) nil [36182 36994])
-            ("gnus-uu-get-actions" function (:arguments ("files")) nil [37015 37474])
-            ("gnus-uu-get-action" function (:arguments ("file-name")) nil [37476 38009])
-            ("gnus-uu-reginize-string" function (:arguments ("string")) nil [38071 39127])
-            ("gnus-uu-get-list-of-articles" function (:arguments ("n")) nil [39129 39914])
-            ("gnus-uu-string<" function (:arguments ("l1" "l2")) nil [39916 39977])
-            ("gnus-uu-find-articles-matching" function (:arguments ("subject" "only-unread" "do-not-translate")) nil [39979 41216])
-            ("gnus-uu-expand-numbers" function (:arguments ("string-list" "translate")) nil [41218 42515])
-            ("gnus-uu-has-been-grabbed" variable nil nil [43616 43653])
-            ("gnus-uu-unmark-list-of-grabbed" function (:arguments ("dont-unmark-last-article")) nil [43655 44226])
-            ("gnus-uu-grab-articles" function (:arguments ("articles" "process-function" "sloppy" "limit" "no-errors")) nil [44457 49015])
-            ("gnus-uu-grab-view" function (:arguments ("file")) nil [49017 49294])
-            ("gnus-uu-grab-move" function (:arguments ("file")) nil [49296 49601])
-            ("gnus-uu-part-number" function (:arguments ("article")) nil [49603 50136])
-            ("gnus-uu-uudecode-sentinel" function (:arguments ("process" "event")) nil [50138 50228])
-            ("gnus-uu-uustrip-article" function (:arguments ("process-buffer" "in-state")) nil [50230 53667])
-            ("gnus-uu-unshar-warning" variable (:default-value "*** WARNING ***
-
-Shell archives are an archaic method of bundling files for distribution
-across computer networks.  During the unpacking process, arbitrary commands
-are executed on your system, and all kinds of nasty things can happen.
-Please examine the archive very carefully before you instruct Emacs to
-unpack it.  You can browse the archive buffer using \\[scroll-other-window].
-
-If you are unsure what to do, please answer \"no\".") nil [53669 54316])
-            ("gnus-uu-unshar-article" function (:arguments ("process-buffer" "in-state")) nil [54401 55515])
-            ("gnus-uu-choose-action" function (:arguments ("file-name" "file-action-list" "no-ignore")) nil [55730 56463])
-            ("gnus-uu-treat-archive" function (:arguments ("file-path")) nil [56465 57732])
-            ("gnus-uu-dir-files" function (:arguments ("dir")) nil [57734 58023])
-            ("gnus-uu-unpack-files" function (:arguments ("files" "ignore")) nil [58025 58945])
-            ("gnus-uu-ls-r" function (:arguments ("dir")) nil [58947 59246])
-            ("gnus-uu-directory-files" function (:arguments ("dir" "full")) nil [59266 59587])
-            ("gnus-uu-check-correct-stripped-uucode" function (:arguments ("start" "end")) nil [59589 60356])
-            ("gnus-uu-tmp-alist" variable nil nil [60358 60388])
-            ("gnus-uu-initialize" function (:arguments ("scan")) nil [60390 61317])
-            ("gnus-uu-clean-up" function nil nil [61381 61672])
-            ("gnus-uu-command" function (:arguments ("action" "file")) nil [61847 62039])
-            ("gnus-uu-delete-work-dir" function (:arguments ("dir")) nil [62041 62892])
-            ("add-hook" code nil nil [62911 62971])
-            ("add-hook" code nil nil [62972 63039])
-            ("gnus-uu-post-encode-method" variable (:default-value (quote gnus-uu-post-encode-uuencode)) nil [63323 63948])
-            ("gnus-uu-post-include-before-composing" variable nil nil [63950 64306])
-            ("gnus-uu-post-length" variable (:default-value 990) nil [64308 64510])
-            ("gnus-uu-post-threaded" variable nil nil [64512 64905])
-            ("gnus-uu-post-separate-description" variable (:default-value t) nil [64907 65287])
-            ("gnus-uu-post-binary-separator" variable (:default-value "--binary follows this line--") nil [65289 65358])
-            ("gnus-uu-post-message-id" variable nil nil [65359 65395])
-            ("gnus-uu-post-inserted-file-name" variable nil nil [65396 65440])
-            ("gnus-uu-winconf-post-news" variable nil nil [65441 65479])
-            ("gnus-uu-post-news" function (:user-visible-flag t) nil [65481 66204])
-            ("gnus-uu-post-insert-binary-in-article" function (:user-visible-flag t) nil [66206 66444])
-            ("gnus-uu-post-encode-uuencode" function (:arguments ("path" "file-name")) nil [66514 66749])
-            ("gnus-uu-post-encode-mime-uuencode" function (:arguments ("path" "file-name")) nil [66799 66965])
-            ("gnus-uu-post-encode-mime" function (:arguments ("path" "file-name")) nil [67012 67249])
-            ("gnus-uu-post-make-mime" function (:arguments ("file-name" "encoding")) nil [67273 67885])
-            ("gnus-uu-post-encode-file" function (:arguments ("command" "path" "file-name")) nil [67969 68148])
-            ("gnus-uu-post-news-inews" function (:user-visible-flag t) nil [68150 68681])
-            ("gnus-uu-post-insert-binary" function nil nil [68811 69798])
-            ("gnus-uu-post-encoded" function (:arguments ("file-name" "threaded")) nil [69850 73446])
-            ("gnus-uu" package nil nil [73448 73466]))          
-      :file "gnus-uu.el"
-      :pointmax 73493
-      :fsize 73492
-      :lastmodtime '(23525 29554 0 0)
-      :unmatched-syntax '((close-paren 963 . 964) (symbol 932 . 949) (open-paren 931 . 932)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus" include nil nil [1157 1172])
-            ("mh-e" include nil nil [1173 1188])
-            ("mh-comp" include nil nil [1189 1207])
-            ("gnus-msg" include nil nil [1208 1227])
-            ("gnus-sum" include nil nil [1228 1247])
-            ("mh-lib-progs" variable nil nil [1249 1270])
-            ("gnus-rcvstore-options" variable nil nil [1272 1477])
-            ("gnus-summary-save-article-folder" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [1479 1937])
-            ("gnus-summary-save-in-folder" function (:arguments ("folder")) nil [1939 3209])
-            ("gnus-Folder-save-name" function (:arguments ("newsgroup" "headers" "last-folder")) nil [3211 3618])
-            ("gnus-folder-save-name" function (:arguments ("newsgroup" "headers" "last-folder")) nil [3620 3999])
-            ("gnus-mh" package nil nil [4001 4019]))          
-      :file "gnus-mh.el"
-      :pointmax 4046
-      :fsize 4045
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [866 879])
-            ("gnus" include nil nil [882 897])
-            ("gnus-range" include nil nil [898 919])
-            ("gnus-art" include nil nil [920 939])
-            ("message" include nil nil [940 958])
-            ("gnus-cite" customgroup (:user-visible-flag t) nil [1013 1151])
-            ("gnus-cited-opened-text-button-line-format" variable (:default-value "%(%{[-]%}%)
-") nil [1153 1299])
-            ("gnus-cited-closed-text-button-line-format" variable (:default-value "%(%{[+]%}%)
-") nil [1301 1447])
-            ("gnus-cited-lines-visible" variable nil nil [1449 1800])
-            ("gnus-cite-parse-max-size" variable (:default-value 25000) nil [1802 2025])
-            ("gnus-cite-max-prefix" variable (:default-value 20) nil [2027 2150])
-            ("gnus-supercite-regexp" variable (:default-value (concat "^\\(" message-cite-prefix-regexp "\\)? *" ">>>>> +\"\\([^\"
-]+\\)\" +==")) nil [2152 2430])
-            ("gnus-supercite-secondary-regexp" variable (:default-value "^.*\"\\([^\"
-]+\\)\" +==") nil [2432 2659])
-            ("gnus-cite-minimum-match-count" variable (:default-value 2) nil [2661 2817])
-            ("gnus-cite-attribution-prefix" variable (:default-value "In article\\|in <\\|On \\(Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\|Sun\\),\\|----- ?Original Message ?-----") nil [3356 3597])
-            ("gnus-cite-attribution-suffix" variable (:default-value "\\(\\(wrote\\|writes\\|said\\|says\\|>\\)\\(:\\|\\.\\.\\.\\)\\|----- ?Original Message ?-----\\)[ 	]*$") nil [3599 3898])
-            ("gnus-cite-unsightly-citation-regexp" variable (:default-value "^-----Original Message-----
-From: \\(.+
-\\)+
-") nil [3900 4116])
-            ("gnus-cite-ignore-quoted-from" variable (:default-value t) nil [4118 4386])
-            ("gnus-cite-attribution" variable
-               (:default-value (quote ((t (:italic t))))
-                :type "face")
-                nil [4388 4495])
-            ("put" code nil nil [4528 4596])
-            ("put" code nil nil [4597 4652])
-            ("gnus-cite-attribution-face" variable (:default-value (quote gnus-cite-attribution)) nil [4654 4880])
-            ("gnus-cite-1" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "light blue")) (((class color) (background light)) (:foreground "MidnightBlue")) (t (:italic t))))
-                :type "face")
-                nil [4882 5125])
-            ("put" code nil nil [5158 5206])
-            ("put" code nil nil [5207 5252])
-            ("gnus-cite-2" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "light cyan")) (((class color) (background light)) (:foreground "firebrick")) (t (:italic t))))
-                :type "face")
-                nil [5254 5494])
-            ("put" code nil nil [5527 5575])
-            ("put" code nil nil [5576 5621])
-            ("gnus-cite-3" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "light yellow")) (((class color) (background light)) (:foreground "dark green")) (t (:italic t))))
-                :type "face")
-                nil [5623 5866])
-            ("put" code nil nil [5899 5947])
-            ("put" code nil nil [5948 5993])
-            ("gnus-cite-4" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "light pink")) (((class color) (background light)) (:foreground "OrangeRed")) (t (:italic t))))
-                :type "face")
-                nil [5995 6235])
-            ("put" code nil nil [6268 6316])
-            ("put" code nil nil [6317 6362])
-            ("gnus-cite-5" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "pale green")) (((class color) (background light)) (:foreground "dark khaki")) (t (:italic t))))
-                :type "face")
-                nil [6364 6605])
-            ("put" code nil nil [6638 6686])
-            ("put" code nil nil [6687 6732])
-            ("gnus-cite-6" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "beige")) (((class color) (background light)) (:foreground "dark violet")) (t (:italic t))))
-                :type "face")
-                nil [6734 6971])
-            ("put" code nil nil [7004 7052])
-            ("put" code nil nil [7053 7098])
-            ("gnus-cite-7" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "orange")) (((class color) (background light)) (:foreground "SteelBlue4")) (t (:italic t))))
-                :type "face")
-                nil [7100 7337])
-            ("put" code nil nil [7370 7418])
-            ("put" code nil nil [7419 7464])
-            ("gnus-cite-8" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "magenta")) (((class color) (background light)) (:foreground "magenta")) (t (:italic t))))
-                :type "face")
-                nil [7466 7701])
-            ("put" code nil nil [7734 7782])
-            ("put" code nil nil [7783 7828])
-            ("gnus-cite-9" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "violet")) (((class color) (background light)) (:foreground "violet")) (t (:italic t))))
-                :type "face")
-                nil [7830 8063])
-            ("put" code nil nil [8096 8144])
-            ("put" code nil nil [8145 8190])
-            ("gnus-cite-10" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "plum1")) (((class color) (background light)) (:foreground "medium purple")) (t (:italic t))))
-                :type "face")
-                nil [8192 8425])
-            ("put" code nil nil [8458 8508])
-            ("put" code nil nil [8509 8555])
-            ("gnus-cite-11" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "turquoise")) (((class color) (background light)) (:foreground "turquoise")) (t (:italic t))))
-                :type "face")
-                nil [8557 8790])
-            ("put" code nil nil [8823 8873])
-            ("put" code nil nil [8874 8920])
-            ("gnus-cite-face-list" variable (:default-value (quote (gnus-cite-1 gnus-cite-2 gnus-cite-3 gnus-cite-4 gnus-cite-5 gnus-cite-6 gnus-cite-7 gnus-cite-8 gnus-cite-9 gnus-cite-10 gnus-cite-11))) nil [8922 9900])
-            ("gnus-cite-hide-percentage" variable (:default-value 50) nil [9902 10046])
-            ("gnus-cite-hide-absolute" variable (:default-value 10) nil [10048 10196])
-            ("gnus-cite-blank-line-after-header" variable (:default-value t) nil [10198 10359])
-            ("gnus-article-boring-faces" variable (:default-value (cons (quote gnus-signature) gnus-cite-face-list)) nil [10445 10812])
-            ("gnus-cite-article" variable nil nil [10839 10869])
-            ("gnus-cite-overlay-list" variable nil nil [10870 10905])
-            ("gnus-cite-prefix-alist" variable nil nil [10907 10942])
-            ("gnus-cite-attribution-alist" variable nil nil [11023 11063])
-            ("gnus-cite-loose-prefix-alist" variable nil nil [11189 11230])
-            ("gnus-cite-loose-attribution-alist" variable nil nil [11345 11391])
-            ("gnus-cited-opened-text-button-line-format-alist" variable (:default-value (\` ((98 (marker-position beg) 100) (101 (marker-position end) 100) (110 (count-lines beg end) 100) (108 (- end beg) 100)))) nil [11735 11918])
-            ("gnus-cited-opened-text-button-line-format-spec" variable nil nil [11919 11978])
-            ("gnus-cited-closed-text-button-line-format-alist" variable (:default-value gnus-cited-opened-text-button-line-format-alist) nil [11979 12085])
-            ("gnus-cited-closed-text-button-line-format-spec" variable nil nil [12086 12145])
-            ("gnus-article-highlight-citation" function
-               (:user-visible-flag t
-                :arguments ("force" "same-buffer"))
-                nil [12163 14612])
-            ("gnus-dissect-cited-text" function nil nil [14614 16443])
-            ("gnus-article-fill-cited-long-lines" function nil nil [16445 16532])
-            ("gnus-article-fill-cited-article" function
-               (:user-visible-flag t
-                :arguments ("width" "long-lines"))
-                nil [16534 18290])
-            ("gnus-article-foldable-buffer" function (:arguments ("prefix")) nil [18292 19010])
-            ("gnus-article-hide-citation" function
-               (:user-visible-flag t
-                :arguments ("arg" "force"))
-                nil [19012 22186])
-            ("gnus-article-toggle-cited-text" function (:arguments ("args" "arg")) nil [22188 23638])
-            ("gnus-article-hide-citation-maybe" function
-               (:user-visible-flag t
-                :arguments ("arg" "force"))
-                nil [23640 24976])
-            ("gnus-article-hide-citation-in-followups" function (:user-visible-flag t) nil [24978 25308])
-            ("gnus-cite-parse-maybe" function (:arguments ("force" "no-overlay")) nil [25335 25920])
-            ("gnus-cite-delete-overlays" function nil nil [25922 26277])
-            ("gnus-cite-parse-wrapper" function nil nil [26279 26574])
-            ("gnus-cite-parse" function nil nil [26576 30224])
-            ("gnus-cite-parse-attributions" function nil nil [30226 31411])
-            ("gnus-cite-connect-attributions" function nil nil [31413 33228])
-            ("gnus-cite-match-attributions" function (:arguments ("sort" "after" "fun")) nil [33230 35900])
-            ("gnus-cite-find-loose" function (:arguments ("prefix")) nil [35902 36253])
-            ("gnus-cite-add-face" function (:arguments ("number" "prefix" "face")) nil [36255 36848])
-            ("gnus-cite-toggle" function (:arguments ("prefix")) nil [36850 37854])
-            ("gnus-cite-find-prefix" function (:arguments ("line")) nil [37856 38138])
-            ("gnus-cite-localize" function nil nil [38140 38467])
-            ("gnus-message-max-citation-depth" variable (:default-value (length gnus-cite-face-list)) nil [38596 38708])
-            ("gnus-message-cite-prefix-regexp" variable (:default-value (concat "^\\(?:" message-cite-prefix-regexp "\\)")) nil [38710 38803])
-            ("gnus-message-search-citation-line" function (:arguments ("limit")) nil [38805 39551])
-            ("gnus-message-citation-keywords" variable (:default-value (\` ((gnus-message-search-citation-line (\,@ (let ((list nil) (count 1)) (dolist (face gnus-cite-face-list (nreverse list)) (push (list count (list (quote quote) face) (quote prepend) t) list) (setq count (1+ count))))))))) nil [39553 39962])
-            ("font-lock-defaults-computed" variable nil nil [39964 40000])
-            ("font-lock-keywords" variable nil nil [40001 40028])
-            ("font-lock-set-defaults" variable nil nil [40029 40060])
-            ("font-lock-set-defaults" function (:prototype-flag t) nil [40062 40108])
-            ("define-minor-mode" code nil nil [40110 41361])
-            ("turn-on-gnus-message-citation-mode" function nil nil [41363 41483])
-            ("turn-off-gnus-message-citation-mode" function nil nil [41484 41607])
-            ("gnus-cite" package nil nil [41609 41629]))          
-      :file "gnus-cite.el"
-      :pointmax 41704
-      :fsize 41703
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 879 . 880) (symbol 848 . 865) (open-paren 847 . 848)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1127 1140])
-            ("gnus" include nil nil [1143 1158])
-            ("gnus-art" include nil nil [1159 1178])
-            ("gnus-duplicate" customgroup (:user-visible-flag t) nil [1180 1263])
-            ("gnus-save-duplicate-list" variable nil nil [1265 1497])
-            ("gnus-duplicate-list-length" variable (:default-value 10000) nil [1499 1658])
-            ("gnus-duplicate-file" variable (:default-value (nnheader-concat gnus-directory "suppression")) nil [1660 1843])
-            ("gnus-dup-list" variable nil nil [1869 1895])
-            ("gnus-dup-hashtb" variable nil nil [1896 1924])
-            ("gnus-dup-list-dirty" variable nil nil [1926 1958])
-            ("gnus-add-shutdown" code nil nil [1995 2036])
-            ("gnus-dup-close" function nil nil [2038 2232])
-            ("gnus-dup-open" function nil nil [2234 2606])
-            ("gnus-dup-read" function nil nil [2608 2782])
-            ("gnus-dup-save" function nil nil [2784 3046])
-            ("gnus-dup-enter-articles" function nil nil [3081 4066])
-            ("gnus-dup-suppress-articles" function nil nil [4068 4889])
-            ("gnus-dup-unsuppress-article" function (:arguments ("article")) nil [4891 5220])
-            ("gnus-dup" package nil nil [5222 5241]))          
-      :file "gnus-dup.el"
-      :pointmax 5269
-      :fsize 5268
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax '((close-paren 1140 . 1141) (symbol 1109 . 1126) (open-paren 1108 . 1109)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [953 966])
-            ("gnus" include nil nil [969 984])
-            ("gnus-group" include nil nil [985 1006])
-            ("gnus-start" include nil nil [1007 1028])
-            ("gnus-util" include nil nil [1029 1049])
-            ("gnus-topic" customgroup (:user-visible-flag t) nil [1051 1115])
-            ("gnus-topic-mode" variable nil nil [1117 1184])
-            ("gnus-topic-mode-hook" variable nil nil [1186 1293])
-            ("gnus-topic-line-format" variable (:default-value "%i[ %(%{%n%}%) -- %A ]%v
-") nil [1295 1935])
-            ("gnus-topic-indent-level" variable (:default-value 2) nil [1937 2059])
-            ("gnus-topic-display-empty-topics" variable (:default-value t) nil [2061 2229])
-            ("gnus-topic-active-topology" variable nil nil [2255 2294])
-            ("gnus-topic-active-alist" variable nil nil [2295 2331])
-            ("gnus-topic-unreads" variable nil nil [2332 2363])
-            ("gnus-topology-checked-p" variable nil nil [2365 2460])
-            ("gnus-topic-killed-topics" variable nil nil [2462 2499])
-            ("gnus-topic-inhibit-change-level" variable nil nil [2500 2544])
-            ("gnus-topic-line-format-alist" variable
-               (:constant-flag t
-                :default-value (\` ((110 name 115) (118 visible 115) (105 indentation 115) (103 number-of-groups 100) (97 (gnus-topic-articles-in-topic entries) 100) (65 total-number-of-articles 100) (108 level 100))))
-                nil [2546 2782])
-            ("gnus-topic-line-format-spec" variable nil nil [2784 2824])
-            ("gnus-group-topic-name" function nil nil [2849 3029])
-            ("gnus-group-topic-level" function nil nil [3031 3167])
-            ("gnus-group-topic-unread" function nil nil [3169 3323])
-            ("gnus-topic-unread" function (:arguments ("topic")) nil [3325 3463])
-            ("gnus-group-topic-p" function nil nil [3465 3571])
-            ("gnus-topic-visible-p" function nil nil [3573 3713])
-            ("gnus-topic-articles-in-topic" function (:arguments ("entries")) nil [3715 3897])
-            ("gnus-group-topic" function (:arguments ("group")) nil [3899 4154])
-            ("gnus-topic-goto-topic" function (:arguments ("topic")) nil [4156 4311])
-            ("gnus-topic-jump-to-topic" function
-               (:user-visible-flag t
-                :arguments ("topic"))
-                nil [4313 4692])
-            ("gnus-current-topic" function nil nil [4694 5073])
-            ("gnus-current-topics" function (:arguments ("topic")) nil [5075 5396])
-            ("gnus-group-active-topic-p" function nil nil [5398 5548])
-            ("gnus-topic-find-groups" function (:arguments ("topic" "level" "all" "lowest" "recursive")) nil [5550 7514])
-            ("gnus-topic-goto-previous-topic" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [7516 7650])
-            ("gnus-topic-goto-next-topic" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [7652 8072])
-            ("gnus-topic-previous-topic" function (:arguments ("topic")) nil [8074 8397])
-            ("gnus-topic-parent-topic" function (:arguments ("topic" "topology")) nil [8399 8830])
-            ("gnus-topic-next-topic" function (:arguments ("topic" "previous")) nil [8832 9193])
-            ("gnus-topic-forward-topic" function (:arguments ("num")) nil [9195 9618])
-            ("gnus-topic-find-topology" function (:arguments ("topic" "topology" "level" "remove")) nil [9620 10185])
-            ("gnus-tmp-topics" variable nil nil [10187 10215])
-            ("gnus-topic-list" function (:arguments ("topology")) nil [10216 10492])
-            ("gnus-topic-parameters" function (:arguments ("topic")) nil [10520 10683])
-            ("gnus-topic-set-parameters" function (:arguments ("topic" "parameters")) nil [10685 11259])
-            ("gnus-group-topic-parameters" function (:arguments ("group")) nil [11261 12012])
-            ("gnus-topic-hierarchical-parameters" function (:arguments ("topic" "group-params-list")) nil [12014 13207])
-            ("gnus-topic-enter-dribble" function nil nil [13240 13363])
-            ("gnus-group-prepare-topics" function (:arguments ("level" "predicate" "lowest" "regexp" "list-topic" "topic-level")) nil [13395 15616])
-            ("gnus-topic-prepare-topic" function (:arguments ("topicl" "level" "list-level" "predicate" "silent" "lowest" "regexp")) nil [15618 18946])
-            ("gnus-topic-remove-topic" function (:arguments ("insert" "total-remove" "_hide" "in-level")) nil [18948 19919])
-            ("gnus-topic-insert-topic" function (:arguments ("topic" "level")) nil [19921 20104])
-            ("gnus-topic-fold" function (:arguments ("insert" "topic")) nil [20106 20663])
-            ("gnus-tmp-header" variable nil nil [20665 20689])
-            ("gnus-topic-insert-topic-line" function (:arguments ("name" "visiblep" "shownp" "level" "entries" "unread")) nil [20691 21429])
-            ("gnus-topic-update-unreads" function (:arguments ("topic" "unreads")) nil [21431 21621])
-            ("gnus-topic-update-topics-containing-group" function (:arguments ("group")) nil [21623 22233])
-            ("gnus-topic-update-topic" function nil nil [22235 22699])
-            ("gnus-topic-goto-missing-group" function (:arguments ("group")) nil [22701 23431])
-            ("gnus-topic-display-missing-topic" function (:arguments ("topic")) nil [23433 24412])
-            ("gnus-topic-goto-missing-topic" function (:arguments ("topic")) nil [24414 25019])
-            ("gnus-topic-update-topic-line" function (:arguments ("topic-name" "reads")) nil [25021 26261])
-            ("gnus-topic-group-indentation" function nil nil [26263 26491])
-            ("gnus-add-shutdown" code nil nil [26513 26556])
-            ("gnus-topic-close" function nil nil [26558 26713])
-            ("gnus-topic-check-topology" function nil nil [26715 28306])
-            ("gnus-topic-init-alist" function nil nil [28308 28711])
-            ("gnus-topic-clean-alist" function nil nil [28730 29355])
-            ("gnus-topic-change-level" function (:arguments ("group" "level" "oldlevel" "previous")) nil [29357 31342])
-            ("gnus-topic-goto-next-group" function (:arguments ("group" "props")) nil [31344 32630])
-            ("gnus-topic-grok-active" function (:arguments ("force")) nil [32660 33540])
-            ("gnus-topic-grok-active-1" function (:arguments ("topology" "groups")) nil [33542 34655])
-            ("gnus-topic-mode-map" variable nil nil [34695 34727])
-            ("gnus-group-topic-map" variable nil nil [34728 34761])
-            ("unless" code nil nil [34763 36602])
-            ("gnus-topic-make-menu-bar" function nil nil [36604 37626])
-            ("define-minor-mode" code nil nil [37628 39564])
-            ("gnus-topic-select-group" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [39566 40331])
-            ("gnus-mouse-pick-topic" function
-               (:user-visible-flag t
-                :arguments ("e"))
-                nil [40333 40493])
-            ("gnus-topic-expire-articles" function
-               (:user-visible-flag t
-                :arguments ("topic"))
-                nil [40495 41033])
-            ("gnus-topic-catchup-articles" function
-               (:user-visible-flag t
-                :arguments ("topic"))
-                nil [41035 41644])
-            ("gnus-topic-read-group" function
-               (:user-visible-flag t
-                :arguments ("all" "no-article" "group"))
-                nil [41646 42491])
-            ("gnus-topic-create-topic" function
-               (:user-visible-flag t
-                :arguments ("topic" "parent" "previous" "full-topic"))
-                nil [42493 43505])
-            ("gnus-topic-history" variable nil nil [43758 43789])
-            ("gnus-topic-move-group" function
-               (:user-visible-flag t
-                :arguments ("n" "topic" "copyp"))
-                nil [43791 44862])
-            ("gnus-topic-remove-group" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [44864 45490])
-            ("gnus-topic-copy-group" function
-               (:user-visible-flag t
-                :arguments ("n" "topic"))
-                nil [45492 45728])
-            ("gnus-topic-kill-group" function
-               (:user-visible-flag t
-                :arguments ("n" "discard"))
-                nil [45730 46394])
-            ("gnus-topic-yank-group" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [46396 47889])
-            ("gnus-topic-hide-topic" function
-               (:user-visible-flag t
-                :arguments ("permanent"))
-                nil [47891 48281])
-            ("gnus-topic-show-topic" function
-               (:user-visible-flag t
-                :arguments ("permanent"))
-                nil [48283 48799])
-            ("gnus-topic-mark-topic" function
-               (:user-visible-flag t
-                :arguments ("topic" "unmark" "non-recursive"))
-                nil [48801 49415])
-            ("gnus-topic-unmark-topic" function
-               (:user-visible-flag t
-                :arguments ("topic" "_dummy" "non-recursive"))
-                nil [49417 49831])
-            ("gnus-topic-get-new-news-this-topic" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [49833 50293])
-            ("gnus-topic-move-matching" function
-               (:user-visible-flag t
-                :arguments ("regexp" "topic" "copyp"))
-                nil [50295 50742])
-            ("gnus-topic-copy-matching" function
-               (:user-visible-flag t
-                :arguments ("regexp" "topic" "_copyp"))
-                nil [50744 51151])
-            ("gnus-topic-delete" function
-               (:user-visible-flag t
-                :arguments ("topic"))
-                nil [51153 51717])
-            ("gnus-topic-rename" function
-               (:user-visible-flag t
-                :arguments ("old-name" "new-name"))
-                nil [51719 52514])
-            ("gnus-topic-indent" function
-               (:user-visible-flag t
-                :arguments ("unindent"))
-                nil [52516 53227])
-            ("gnus-topic-unindent" function (:user-visible-flag t) nil [53229 53853])
-            ("gnus-topic-list-active" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [53855 54301])
-            ("gnus-topic-toggle-display-empty-topics" function (:user-visible-flag t) nil [54303 54624])
-            ("gnus-topic-edit-parameters" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [54655 55228])
-            ("gnus-group-sort-topic" function (:arguments ("func" "reverse")) nil [55230 55635])
-            ("gnus-topic-sort-topic" function (:arguments ("topic" "func" "reverse")) nil [55637 56179])
-            ("gnus-topic-sort-groups" function
-               (:user-visible-flag t
-                :arguments ("func" "reverse"))
-                nil [56181 56559])
-            ("gnus-topic-sort-groups-by-alphabet" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [56561 56799])
-            ("gnus-topic-sort-groups-by-unread" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [56801 57035])
-            ("gnus-topic-sort-groups-by-level" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [57037 57255])
-            ("gnus-topic-sort-groups-by-score" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [57257 57475])
-            ("gnus-topic-sort-groups-by-rank" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [57477 57692])
-            ("gnus-topic-sort-groups-by-method" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [57694 57930])
-            ("gnus-topic-sort-groups-by-server" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [57932 58167])
-            ("gnus-topic-sort-topics-1" function (:arguments ("top" "reverse")) nil [58169 58505])
-            ("gnus-topic-sort-topics" function
-               (:user-visible-flag t
-                :arguments ("topic" "reverse"))
-                nil [58507 59118])
-            ("gnus-topic-move" function
-               (:user-visible-flag t
-                :arguments ("current" "to"))
-                nil [59120 59947])
-            ("gnus-subscribe-topics" function (:arguments ("newsgroup")) nil [59949 60689])
-            ("gnus-topic" package nil nil [60691 60712]))          
-      :file "gnus-topic.el"
-      :pointmax 60742
-      :fsize 60741
-      :lastmodtime '(23525 29554 0 0)
-      :unmatched-syntax '((close-paren 966 . 967) (symbol 935 . 952) (open-paren 934 . 935)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [902 915])
-            ("gnus" include nil nil [918 933])
-            ("gnus-sum" include nil nil [934 953])
-            ("nntp" include nil nil [954 969])
-            ("gnus-asynchronous" customgroup (:user-visible-flag t) nil [971 1059])
-            ("gnus-use-article-prefetch" variable (:default-value 30) nil [1061 1382])
-            ("gnus-asynchronous" variable nil nil [1384 1561])
-            ("gnus-prefetched-article-deletion-strategy" variable (:default-value (quote (read exit))) nil [1563 1974])
-            ("gnus-use-header-prefetch" variable nil nil [1976 2117])
-            ("gnus-async-prefetch-article-p" variable (:default-value (quote gnus-async-unread-p)) nil [2119 2426])
-            ("gnus-async-post-fetch-function" variable nil nil [2428 2701])
-            ("gnus-async-prefetch-article-buffer" variable (:default-value " *Async Prefetch Article*") nil [2728 2799])
-            ("gnus-async-article-alist" variable nil nil [2800 2837])
-            ("gnus-async-article-semaphore" variable (:default-value (quote (nil))) nil [2838 2882])
-            ("gnus-async-fetch-list" variable nil nil [2883 2917])
-            ("gnus-async-hashtb" variable nil nil [2918 2948])
-            ("gnus-async-current-prefetch-group" variable nil nil [2949 2995])
-            ("gnus-async-current-prefetch-article" variable nil nil [2996 3044])
-            ("gnus-async-timer" variable nil nil [3045 3074])
-            ("gnus-async-prefetch-headers-buffer" variable (:default-value " *Async Prefetch Headers*") nil [3076 3147])
-            ("gnus-async-header-prefetched" variable nil nil [3148 3189])
-            ("gnus-group-asynchronous-p" function (:arguments ("group")) nil [3215 3392])
-            ("gnus-async-get-semaphore" function (:arguments ("semaphore")) nil [3426 3596])
-            ("gnus-async-release-semaphore" function (:arguments ("semaphore")) nil [3598 3709])
-            ("gnus-async-with-semaphore" function (:arguments ("forms")) nil [3711 3931])
-            ("put" code nil nil [3933 3989])
-            ("put" code nil nil [3990 4048])
-            ("gnus-add-shutdown" code nil nil [4080 4123])
-            ("gnus-async-close" function nil nil [4124 4358])
-            ("gnus-async-set-buffer" function nil nil [4360 4543])
-            ("gnus-async-halt-prefetch" function nil nil [4545 4637])
-            ("gnus-async-prefetch-next" function (:arguments ("group" "article" "summary")) nil [4639 5211])
-            ("gnus-async-prefetch-article" function (:arguments ("group" "article" "summary" "next")) nil [5213 7336])
-            ("gnus-make-async-article-function" function (:arguments ("group" "article" "mark" "summary" "next")) nil [7338 7538])
-            ("gnus-async-article-callback" function (:arguments ("arg" "group" "article" "mark" "summary" "next")) nil [7540 8760])
-            ("gnus-async-unread-p" function (:arguments ("data")) nil [8762 8881])
-            ("gnus-async-request-fetched-article" function (:arguments ("group" "article" "buffer")) nil [8883 9570])
-            ("gnus-async-wait-for-article" function (:arguments ("article")) nil [9572 10696])
-            ("gnus-async-delete-prefetched-entry" function (:arguments ("entry")) nil [10698 11074])
-            ("gnus-async-prefetch-remove-group" function (:arguments ("group")) nil [11076 11484])
-            ("gnus-async-prefetched-article-entry" function (:arguments ("group" "article")) nil [11486 12091])
-            ("gnus-async-prefetch-headers" function (:arguments ("group")) nil [12122 12833])
-            ("gnus-async-retrieve-fetched-headers" function (:arguments ("articles" "group")) nil [12835 13432])
-            ("gnus-async" package nil nil [13434 13455]))          
-      :file "gnus-async.el"
-      :pointmax 13485
-      :fsize 13484
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 915 . 916) (symbol 884 . 901) (open-paren 883 . 884)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [925 938])
-            ("gnus" include nil nil [941 956])
-            ("gnus-sum" include nil nil [957 976])
-            ("gnus-win" include nil nil [977 996])
-            ("gnus-pick-display-summary" variable nil nil [1026 1147])
-            ("gnus-pick-mode-hook" variable nil nil [1149 1269])
-            ("gnus-mark-unpicked-articles-as-read" variable nil nil [1271 1419])
-            ("gnus-pick-elegant-flow" variable (:default-value t) nil [1421 1611])
-            ("gnus-summary-pick-line-format" variable (:default-value "%-5P %U%R%z%I%(%[%4L: %-23,23n%]%) %s
-") nil [1613 1880])
-            ("gnus-pick-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (gnus-define-keys map " " gnus-pick-next-page "u" gnus-pick-unmark-article-or-thread "." gnus-pick-article-or-thread [down-mouse-2] gnus-pick-mouse-pick-region "
" gnus-pick-start-reading) map)) nil [1907 2203])
-            ("gnus-pick-make-menu-bar" function nil nil [2205 2888])
-            ("define-minor-mode" code nil nil [2890 3988])
-            ("gnus-pick-setup-message" function nil nil [3990 4322])
-            ("gnus-pick-line-number" variable (:default-value 1) nil [4324 4356])
-            ("gnus-pick-line-number" function nil nil [4357 4456])
-            ("gnus-pick-start-reading" function
-               (:user-visible-flag t
-                :arguments ("catch-up"))
-                nil [4458 5211])
-            ("gnus-pick-goto-article" function (:arguments ("arg")) nil [5213 5593])
-            ("gnus-pick-article" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5595 5830])
-            ("gnus-pick-article-or-thread" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5832 6281])
-            ("gnus-pick-unmark-article-or-thread" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [6283 6708])
-            ("gnus-pick-mouse-pick" function (:arguments ("e")) nil [6710 6844])
-            ("gnus-pick-mouse-pick-region" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [6846 10500])
-            ("scroll-in-place" variable nil nil [10502 10526])
-            ("gnus-pick-next-page" function (:user-visible-flag t) nil [10528 10771])
-            ("gnus-binary-mode-hook" variable nil nil [10803 10882])
-            ("gnus-binary-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (gnus-define-keys map "g" gnus-binary-show-article) map)) nil [10884 11020])
-            ("gnus-binary-make-menu-bar" function nil nil [11022 11229])
-            ("define-minor-mode" code nil nil [11231 11906])
-            ("gnus-binary-display-article" function (:arguments ("article" "_all-header")) nil [11908 12165])
-            ("gnus-binary-show-article" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [12167 12373])
-            ("gnus-tree-line-format" variable (:default-value "%(%[%3,3n%]%)") nil [12403 12525])
-            ("gnus-tree-minimize-window" variable (:default-value t) nil [12527 12758])
-            ("gnus-selected-tree-face" variable (:default-value (quote mode-line)) nil [12760 12917])
-            ("gnus-tree-brackets" variable (:default-value (quote ((91 . 93) (40 . 41) (123 . 125) (60 . 62)))) nil [12919 13036])
-            ("gnus-tree-parent-child-edges" variable (:default-value (quote (45 92 124))) nil [13038 13142])
-            ("gnus-tree-mode-line-format" variable (:default-value "Gnus: %%b %S %Z") nil [13144 13297])
-            ("gnus-generate-tree-function" variable (:default-value (quote gnus-generate-vertical-tree)) nil [13299 13684])
-            ("gnus-tree-mode-hook" variable nil nil [13686 13798])
-            ("gnus-tmp-name" variable nil nil [13825 13847])
-            ("gnus-tmp-from" variable nil nil [13848 13870])
-            ("gnus-tmp-number" variable nil nil [13871 13895])
-            ("gnus-tmp-open-bracket" variable nil nil [13896 13926])
-            ("gnus-tmp-close-bracket" variable nil nil [13927 13958])
-            ("gnus-tmp-subject" variable nil nil [13959 13984])
-            ("gnus-tree-line-format-alist" variable (:default-value (\` ((110 gnus-tmp-name 115) (102 gnus-tmp-from 115) (78 gnus-tmp-number 100) (91 gnus-tmp-open-bracket 99) (93 gnus-tmp-close-bracket 99) (115 gnus-tmp-subject 115)))) nil [13986 14203])
-            ("gnus-tree-mode-line-format-alist" variable (:default-value gnus-summary-mode-line-format-alist) nil [14205 14282])
-            ("gnus-tree-mode-line-format-spec" variable nil nil [14284 14328])
-            ("gnus-tree-line-format-spec" variable nil nil [14329 14368])
-            ("gnus-tree-node-length" variable nil nil [14370 14404])
-            ("gnus-selected-tree-overlay" variable nil nil [14405 14444])
-            ("gnus-tree-displayed-thread" variable nil nil [14446 14485])
-            ("gnus-tree-inhibit" variable nil nil [14486 14516])
-            ("gnus-tree-mode-map" variable (:default-value (let ((map (make-keymap))) (suppress-keymap map) (gnus-define-keys map "
" gnus-tree-select-article [mouse-2] gnus-tree-pick-article "" gnus-tree-read-summary-keys "h" gnus-tree-show-summary "	" gnus-info-find-node) (substitute-key-definition (quote undefined) (quote gnus-tree-read-summary-keys) map) map)) nil [14518 14913])
-            ("put" code nil nil [14915 14957])
-            ("gnus-tree-make-menu-bar" function nil nil [14959 15158])
-            ("define-derived-mode" code nil nil [15160 15652])
-            ("gnus-tree-read-summary-keys" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [15654 16153])
-            ("gnus-tree-show-summary" function (:user-visible-flag t) nil [16155 16461])
-            ("gnus-tree-select-article" function
-               (:user-visible-flag t
-                :arguments ("article"))
-                nil [16463 16782])
-            ("gnus-tree-pick-article" function
-               (:user-visible-flag t
-                :arguments ("e"))
-                nil [16784 16964])
-            ("gnus-tree-article-number" function nil nil [16966 17044])
-            ("gnus-tree-article-region" function (:arguments ("article")) nil [17046 17313])
-            ("gnus-tree-recenter" function nil nil [17315 18165])
-            ("gnus-get-tree-buffer" function nil nil [18167 18403])
-            ("gnus-tree-minimize" function nil nil [18405 19277])
-            ("gnus-tree-node-insert" function (:arguments ("header" "sparse" "adopted")) nil [19305 21014])
-            ("gnus--let-eval" function (:arguments ("bindings" "evalsym" "body")) nil [21016 21792])
-            ("gnus-tree-highlight-node" function (:arguments ("article" "beg" "end")) nil [21794 22938])
-            ("gnus-tree-indent" function (:arguments ("level")) nil [22940 23042])
-            ("gnus-tmp-limit" variable nil nil [23044 23067])
-            ("gnus-tmp-sparse" variable nil nil [23068 23092])
-            ("gnus-tmp-indent" variable nil nil [23093 23117])
-            ("gnus-generate-tree" function (:arguments ("thread")) nil [23119 23731])
-            ("gnus-generate-horizontal-tree" function (:arguments ("thread" "level" "dummyp" "adopted")) nil [23733 25056])
-            ("gnus-tree-indent-vertical" function nil nil [25058 25250])
-            ("gnus-tree-forward-line" function (:arguments ("n")) nil [25252 25409])
-            ("gnus-generate-vertical-tree" function (:arguments ("thread" "level" "dummyp" "adopted")) nil [25411 27113])
-            ("gnus-possibly-generate-tree" function (:arguments ("article" "force")) nil [27141 27865])
-            ("gnus-tree-open" function nil nil [27867 27917])
-            ("gnus-tree-close" function nil nil [27919 27983])
-            ("gnus-tree-perhaps-minimize" function nil nil [27985 28169])
-            ("gnus-highlight-selected-tree" function (:arguments ("article")) nil [28171 29244])
-            ("gnus-tree-highlight-article" function (:arguments ("article" "face")) nil [29246 29716])
-            ("gnus-salt" package nil nil [29718 29738]))          
-      :file "gnus-salt.el"
-      :pointmax 29767
-      :fsize 29766
-      :lastmodtime '(23525 29553 0 0)
-      :unmatched-syntax '((close-paren 938 . 939) (symbol 907 . 924) (open-paren 906 . 907)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("wid-edit" include nil nil [885 904])
-            ("gnus" include nil nil [905 920])
-            ("gnus-agent" include nil nil [921 942])
-            ("gnus-score" include nil nil [943 964])
-            ("gnus-topic" include nil nil [965 986])
-            ("gnus-art" include nil nil [987 1006])
-            ("define-derived-mode" code nil nil [1022 2226])
-            ("gnus-group-parameters" variable
-               (:constant-flag t
-                :default-value (quote ((extra-aliases (choice :tag "Extra Aliases" (list :tag "List" (editable-list :inline t (gnus-email-address :tag "Address"))) (gnus-email-address :tag "Address")) "Store messages posted from or to this address in this group.
-
-You must be using gnus-group-split for this to work.  The VALUE of the
-nnmail-split-fancy SPLIT generated for this group will match these
-addresses.") (split-regexp (regexp :tag "gnus-group-split Regular Expression") "Like gnus-group-split Address, but expects a regular expression.") (split-exclude (list :tag "gnus-group-split Restricts" (editable-list :inline t (regexp :tag "Restrict"))) "Regular expression that cancels gnus-group-split matches.
-
-Each entry is added to the nnmail-split-fancy SPLIT as a separate
-RESTRICT clause.") (split-spec (choice :tag "gnus-group-split Overrider" (sexp :tag "Fancy Split") (const :tag "Catch All" catch-all) (const :tag "Ignore" nil)) "Override all other gnus-group-split fields.
-
-In `Fancy Split', you can enter any nnmail-split-fancy SPLIT.  Note
-that the name of this group won't be automatically assumed, you have
-to add it to the SPLITs yourself.  This means you can use such splits
-to split messages to other groups too.
-
-If you select `Catch All', this group will get postings for any
-messages not matched in any other group.  It overrides the variable
-gnus-group-split-default-catch-all-group.
-
-Selecting `Ignore' forces no SPLIT to be generated for this group,
-disabling all other gnus-group-split fields.") (broken-reply-to (const :tag "Broken Reply To" t) "Ignore `Reply-To' headers in this group.
-
-That can be useful if you're reading a mailing list group where the
-listserv has inserted `Reply-To' headers that point back to the
-listserv itself.  This is broken behavior.  So there!") (to-group (string :tag "To Group") "All posts will be sent to the specified group.") (gcc-self (choice :tag "GCC" :value t (const :tag "To current group" t) (const none) (string :format "%v" :hide-front-space t)) "Specify default value for GCC header.
-
-If this symbol is present in the group parameter list and set to t,
-new composed messages will be `Gcc''d to the current group.  If it is
-present and set to `none', no `Gcc:' header will be generated, if it
-is present and a string, this string will be inserted literally as a
-`gcc' header (this symbol takes precedence over any default `Gcc'
-rules as described later).") (expiry-wait (choice :tag "Expire Wait" :value never (const never) (const immediate) (number :hide-front-space t :format "%v")) "When to expire.
-
-Overrides any `nnmail-expiry-wait' and `nnmail-expiry-wait-function'
-when expiring expirable messages.  The value can either be a number of
-days (not necessarily an integer) or the symbols `never' or
-`immediate'.") (expiry-target (choice :tag "Expiry Target" :value delete (const delete) (function :format "%v" nnmail-) string) "Where expired messages end up.
-
-Overrides `nnmail-expiry-target'.") (score-file (file :tag "Score File") "Make the specified file into the current score file.
-This means that all score commands you issue will end up in this file.") (adapt-file (file :tag "Adapt File") "Make the specified file into the current adaptive file.
-All adaptive score entries will be put into this file.") (admin-address (gnus-email-address :tag "Admin Address") "Administration address for a mailing list.
-
-When unsubscribing to a mailing list you should never send the
-unsubscription notice to the mailing list itself.  Instead, you'd
-send messages to the administrative address.  This parameter allows
-you to put the admin address somewhere convenient.") (display (choice :tag "Display" :value default (const all) (integer) (const default) (sexp :tag "Other")) "Which articles to display on entering the group.
-
-`all'
-     Display all articles, both read and unread.
-
-`integer'
-     Display the last NUMBER articles in the group.  This is the same as
-     entering the group with C-u NUMBER.
-
-`default'
-     Display the default visible articles, which normally includes
-     unread and ticked articles.
-
-`Other'
-     Display the articles that satisfy the S-expression. The S-expression
-     should be in an array form.") (comment (string :tag "Comment") "An arbitrary comment on the group.") (visible (const :tag "Permanently visible" t) "Always display this group, even when there are no unread articles in it.") (highlight-words (choice :tag "Highlight words" :value nil (repeat (list (regexp :tag "Highlight regexp") (number :tag "Group for entire word" 0) (number :tag "Group for displayed part" 0) (symbol :tag "Face" gnus-emphasis-highlight-words)))) "highlight regexps.
-See `gnus-emphasis-alist'.") (posting-style (choice :tag "Posting style" :value nil (repeat (list (choice :tag "Type" :value nil (const signature) (const signature-file) (const organization) (const address) (const x-face-file) (const name) (const body) (symbol) (string :tag "Header")) (string :format "%v")))) "post style.
-See `gnus-posting-styles'."))))
-                nil [2254 7967])
-            ("gnus-extra-topic-parameters" variable
-               (:constant-flag t
-                :default-value (quote ((subscribe (regexp :tag "Subscribe") "If `gnus-subscribe-newsgroup-method' or
-`gnus-subscribe-options-newsgroup-method' is set to
-`gnus-subscribe-topics', new groups that matches this regexp will
-automatically be subscribed to this topic") (subscribe-level (integer :tag "Subscribe Level" :value 1) "If this topic parameter is set, when new groups are subscribed
-automatically under this topic (via the `subscribe' topic parameter)
-assign this level to the group, rather than the default level
-set in `gnus-level-default-subscribed'"))))
-                nil [7969 8808])
-            ("gnus-extra-group-parameters" variable
-               (:constant-flag t
-                :default-value (quote ((uidvalidity (string :tag "IMAP uidvalidity") "Server-assigned value attached to IMAP groups, used to maintain consistency."))))
-                nil [8810 9234])
-            ("gnus-agent-parameters" variable
-               (:constant-flag t
-                :default-value (quote ((agent-predicate (sexp :tag "Selection Predicate" :value false) "Predicate used to automatically select articles for downloading." gnus-agent-cat-predicate) (agent-score (choice :tag "Score File" :value nil (const file :tag "Use group's score files") (repeat (list (string :format "%v" :tag "File name")))) "Which score files to use when using score to select articles to fetch.
-
-    nil
-         All articles will be scored to zero (0).
-
-    `file'
-         The group's score files will be used to score the articles.
-
-    `List'
-         A list of score file names." gnus-agent-cat-score-file) (agent-short-article (integer :tag "Max Length of Short Article" :value "") "The SHORT predicate will evaluate to true when the article is
-shorter than this length." gnus-agent-cat-length-when-short) (agent-long-article (integer :tag "Min Length of Long Article" :value "") "The LONG predicate will evaluate to true when the article is
-longer than this length." gnus-agent-cat-length-when-long) (agent-low-score (integer :tag "Low Score Limit" :value "") "The LOW predicate will evaluate to true when the article scores
-lower than this limit." gnus-agent-cat-low-score) (agent-high-score (integer :tag "High Score Limit" :value "") "The HIGH predicate will evaluate to true when the article scores
-higher than this limit." gnus-agent-cat-high-score) (agent-days-until-old (integer :tag "Days Until Old" :value "") "The OLD predicate will evaluate to true when the fetched article
-has been stored locally for at least this many days." gnus-agent-cat-days-until-old) (agent-enable-expiration (radio :tag "Expire in this Group or Topic" :value nil (const :format "Enable " ENABLE) (const :format "Disable " DISABLE)) "
-Enable, or disable, agent expiration in this group or topic." gnus-agent-cat-enable-expiration) (agent-enable-undownloaded-faces (boolean :tag "Enable Agent Faces") "Have the summary buffer use the agent's undownloaded faces.
-These faces, when enabled, act as a warning that an article has not
-been fetched into either the agent nor the cache.  This is of most use
-to users who use the agent as a cache (i.e. they only operate on
-articles that have been downloaded).  Leave disabled to display normal
-article faces even when the article hasn't been downloaded." gnus-agent-cat-enable-undownloaded-faces))))
-                nil [9256 12223])
-            ("gnus-custom-params" variable nil nil [12226 12253])
-            ("gnus-custom-method" variable nil nil [12254 12281])
-            ("gnus-custom-group" variable nil nil [12282 12308])
-            ("gnus-custom-topic" variable nil nil [12309 12335])
-            ("gnus-group-customize" function
-               (:user-visible-flag t
-                :arguments ("group" "topic"))
-                nil [12337 18838])
-            ("gnus-group-customize-done" function
-               (:user-visible-flag t
-                :arguments ("ignore"))
-                nil [18840 19464])
-            ("gnus-score-parameters" variable
-               (:constant-flag t
-                :default-value (quote ((mark (number :tag "Mark") "The value of this entry should be a number.
-Any articles with a score lower than this number will be marked as read.") (expunge (number :tag "Expunge") "The value of this entry should be a number.
-Any articles with a score lower than this number will be removed from
-the summary buffer.") (mark-and-expunge (number :tag "Mark-and-expunge") "The value of this entry should be a number.
-Any articles with a score lower than this number will be marked as
-read and removed from the summary buffer.") (thread-mark-and-expunge (number :tag "Thread-mark-and-expunge") "The value of this entry should be a number.
-All articles that belong to a thread that has a total score below this
-number will be marked as read and removed from the summary buffer.
-`gnus-thread-score-function' says how to compute the total score
-for a thread.") (files (repeat :inline t :tag "Files" file) "The value of this entry should be any number of file names.
-These files are assumed to be score files as well, and will be loaded
-the same way this one was.") (exclude-files (repeat :inline t :tag "Exclude-files" file) "The clue of this entry should be any number of files.
-These files will not be loaded, even though they would normally be so,
-for some reason or other.") (eval (sexp :tag "Eval" :value nil) "The value of this entry will be `eval'uated.
-This element will be ignored when handling global score files.") (read-only (boolean :tag "Read-only" :value t) "Read-only score files will not be updated or saved.
-Global score files should feature this atom.") (orphan (number :tag "Orphan") "The value of this entry should be a number.
-Articles that do not have parents will get this number added to their
-scores.  Imagine you follow some high-volume newsgroup, like
-`comp.lang.c'.  Most likely you will only follow a few of the threads,
-also want to see any new threads.
-
-You can do this with the following two score file entries:
-
-     (orphan -500)
-     (mark-and-expunge -100)
-
-When you enter the group the first time, you will only see the new
-threads.  You then raise the score of the threads that you find
-interesting (with `I T' or `I S'), and ignore (`C y') the rest.
-Next time you enter the group, you will see new articles in the
-interesting threads, plus any new threads.
-
-I.e.---the orphan score atom is for high-volume groups where there
-exist a few interesting threads which can't be found automatically
-by ordinary scoring rules.") (adapt (choice :tag "Adapt" (const t) (const ignore) (sexp :format "%v" :hide-front-space t)) "This entry controls the adaptive scoring.
-If it is t, the default adaptive scoring rules will be used.  If it
-is `ignore', no adaptive scoring will be performed on this group.  If
-it is a list, this list will be used as the adaptive scoring rules.
-If it isn't present, or is something other than t or `ignore', the
-default adaptive scoring rules will be used.  If you want to use
-adaptive scoring on most groups, you'd set `gnus-use-adaptive-scoring'
-to t, and insert an `(adapt ignore)' in the groups where you do not
-want adaptive scoring.  If you only want adaptive scoring in a few
-groups, you'd set `gnus-use-adaptive-scoring' to nil, and insert
-`(adapt t)' in the score files of the groups where you want it.") (adapt-file (file :tag "Adapt-file") "All adaptive score entries will go to the file named by this entry.
-It will also be applied when entering the group.  This atom might
-be handy if you want to adapt on several groups at once, using the
-same adaptive file for a number of groups.") (local (repeat :tag "Local" (group :value (nil nil) (symbol :tag "Variable") (sexp :tag "Value"))) "The value of this entry should be a list of `(VAR VALUE)' pairs.
-Each VAR will be made buffer-local to the current summary buffer,
-and set to the value specified.  This is a convenient, if somewhat
-strange, way of setting variables in some groups if you don't like
-hooks much.") (touched (sexp :format "Touched
-") "Internal variable."))))
-                nil [19492 23865])
-            ("define-widget" code nil nil [23867 24003])
-            ("gnus-score-string-convert" function (:arguments ("widget")) nil [24005 26535])
-            ("define-widget" code nil nil [26537 26676])
-            ("gnus-score-integer-convert" function (:arguments ("widget")) nil [26678 27576])
-            ("define-widget" code nil nil [27578 27708])
-            ("gnus-score-date-convert" function (:arguments ("widget")) nil [27710 29636])
-            ("define-widget" code nil nil [29638 29764])
-            ("gnus-score-extra-convert" function (:arguments ("widget")) nil [29766 31474])
-            ("gnus-custom-scores" variable nil nil [31476 31503])
-            ("gnus-custom-score-alist" variable nil nil [31504 31536])
-            ("gnus-score-customize" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [31538 35435])
-            ("gnus-score-customize-done" function (:arguments ("ignore")) nil [35437 35739])
-            ("category-fields" variable nil nil [35741 35769])
-            ("gnus-agent-cat-name" variable nil nil [35770 35798])
-            ("gnus-agent-cat-score-file" variable nil nil [35799 35833])
-            ("gnus-agent-cat-length-when-short" variable nil nil [35834 35875])
-            ("gnus-agent-cat-length-when-long" variable nil nil [35876 35916])
-            ("gnus-agent-cat-low-score" variable nil nil [35917 35950])
-            ("gnus-agent-cat-high-score" variable nil nil [35951 35985])
-            ("gnus-agent-cat-enable-expiration" variable nil nil [35986 36027])
-            ("gnus-agent-cat-days-until-old" variable nil nil [36028 36066])
-            ("gnus-agent-cat-predicate" variable nil nil [36067 36100])
-            ("gnus-agent-cat-groups" variable nil nil [36101 36131])
-            ("gnus-agent-cat-enable-undownloaded-faces" variable nil nil [36132 36181])
-            ("gnus-trim-whitespace" function (:arguments ("s")) nil [36183 36389])
-            ("gnus-agent-cat-prepare-category-field" function (:arguments ("parameter")) nil [36391 37875])
-            ("gnus-agent-customize-category" function
-               (:user-visible-flag t
-                :arguments ("category"))
-                nil [37877 42275])
-            ("gnus-cus" package nil nil [42291 42310]))          
-      :file "gnus-cus.el"
-      :pointmax 42338
-      :fsize 42337
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 12223 . 12224) (symbol 9237 . 9253) (open-paren 9236 . 9237)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [899 912])
-            ("gnus" include nil nil [915 930])
-            ("gnus-backlog-buffer" variable (:default-value " *Gnus Backlog*") nil [973 1019])
-            ("gnus-backlog-articles" variable nil nil [1020 1054])
-            ("gnus-backlog-hashtb" variable nil nil [1055 1087])
-            ("gnus-backlog-buffer" function nil nil [1089 1347])
-            ("gnus-backlog-setup" function nil nil [1349 1501])
-            ("gnus-add-shutdown" code nil nil [1503 1551])
-            ("gnus-backlog-shutdown" function (:user-visible-flag t) nil [1553 1791])
-            ("gnus-backlog-enter-article" function (:arguments ("group" "number" "buffer")) nil [1793 2769])
-            ("gnus-backlog-remove-oldest-article" function nil nil [2771 3301])
-            ("gnus-backlog-remove-article" function (:arguments ("group" "number")) nil [3303 4127])
-            ("gnus-backlog-request-article" function (:arguments ("group" "number" "buffer")) nil [4129 5101])
-            ("gnus-bcklg" package nil nil [5103 5124]))          
-      :file "gnus-bcklg.el"
-      :pointmax 5154
-      :fsize 5153
-      :lastmodtime '(23525 29551 0 0)
-      :unmatched-syntax '((close-paren 912 . 913) (symbol 881 . 898) (open-paren 880 . 881)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnus" include nil nil [887 902])
-            ("gnus-win" include nil nil [903 922])
-            ("gnus-edit-form" customgroup (:user-visible-flag t) nil [951 1025])
-            ("gnus-edit-form-mode-hook" variable nil nil [1027 1153])
-            ("gnus-edit-form-menu-hook" variable nil nil [1155 1301])
-            ("gnus-edit-form-buffer" variable (:default-value "*Gnus edit form*") nil [1327 1376])
-            ("gnus-edit-form-done-function" variable nil nil [1377 1418])
-            ("gnus-edit-form-mode-map" variable nil nil [1420 1456])
-            ("unless" code nil nil [1457 1724])
-            ("gnus-edit-form-make-menu-bar" function nil nil [1726 2041])
-            ("define-derived-mode" code nil nil [2043 2394])
-            ("gnus-edit-form" function (:arguments ("form" "documentation" "exit-func" "layout")) nil [2396 3302])
-            ("gnus-edit-form-done" function (:user-visible-flag t) nil [3304 3597])
-            ("gnus-edit-form-exit" function (:user-visible-flag t) nil [3599 3786])
-            ("gnus-eform" package nil nil [3788 3809]))          
-      :file "gnus-eform.el"
-      :pointmax 3839
-      :fsize 3838
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("sendmail" include nil nil [1004 1023])
-            ("message" include nil nil [1024 1042])
-            ("gnus" include nil nil [1043 1058])
-            ("gnus-msg" include nil nil [1059 1078])
-            ("cl" include nil nil [1101 1114])
-            ("vm-mode" function (:prototype-flag t) nil [1117 1141])
-            ("vm-save-message" function (:prototype-flag t) nil [1142 1174])
-            ("gnus-vm-inhibit-window-system" variable nil nil [1176 1313])
-            ("unless" code nil nil [1315 1420])
-            ("gnus-vm-make-folder" function (:arguments ("buffer")) nil [1422 2129])
-            ("gnus-summary-save-article-vm" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2131 2580])
-            ("gnus-summary-save-in-vm" function (:arguments ("folder")) nil [2582 3045])
-            ("gnus-vm" package nil nil [3047 3065]))          
-      :file "gnus-vm.el"
-      :pointmax 3092
-      :fsize 3091
-      :lastmodtime '(23525 29554 0 0)
-      :unmatched-syntax '((close-paren 1114 . 1115) (symbol 1081 . 1098) (open-paren 1080 . 1081)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("nnoo" include nil nil [7624 7639])
-            ("gnus-group" include nil nil [7640 7661])
-            ("message" include nil nil [7662 7680])
-            ("gnus-util" include nil nil [7681 7701])
-            ("cl-lib" include nil nil [7721 7738])
-            ("nnir-memo-query" variable nil nil [7766 7830])
-            ("nnir-memo-server" variable nil nil [7832 7898])
-            ("nnir-artlist" variable nil nil [7900 7961])
-            ("nnir-search-history" variable nil nil [7963 8056])
-            ("nnir-tmp-buffer" variable
-               (:constant-flag t
-                :default-value " *nnir*")
-                nil [8058 8126])
-            ("nnir-imap-search-arguments" variable (:default-value (quote (("whole message" . "TEXT") ("subject" . "SUBJECT") ("to" . "TO") ("from" . "FROM") ("body" . "BODY") ("imap" . "")))) nil [8148 8396])
-            ("nnir-imap-search-other" variable (:default-value "HEADER %S") nil [8398 8584])
-            ("nnir-imap-search-argument-history" variable nil nil [8586 8683])
-            ("nnir-artlist-length" function (:arguments ("artlist")) nil [8732 8836])
-            ("nnir-artlist-article" function (:arguments ("artlist" "n")) nil [8838 8995])
-            ("nnir-artitem-group" function (:arguments ("artitem")) nil [8997 9096])
-            ("nnir-artitem-number" function (:arguments ("artitem")) nil [9098 9199])
-            ("nnir-artitem-rsv" function (:arguments ("artitem")) nil [9201 9328])
-            ("nnir-article-group" function (:arguments ("article")) nil [9330 9472])
-            ("nnir-article-number" function (:arguments ("article")) nil [9474 9619])
-            ("nnir-article-rsv" function (:arguments ("article")) nil [9621 9757])
-            ("nnir-article-ids" function (:arguments ("article")) nil [9759 9897])
-            ("nnir-categorize" function (:arguments ("sequence" "keyfunc" "valuefunc")) nil [9899 10596])
-            ("gnus-sum" include nil nil [10617 10636])
-            ("nnoo-declare" code nil nil [10638 10657])
-            ("nnoo-define-basics" code nil nil [10658 10683])
-            ("gnus-declare-backend" code nil nil [10685 10729])
-            ("nnir" customgroup (:user-visible-flag t) nil [10766 10856])
-            ("nnir-ignored-newsgroups" variable nil nil [10858 11040])
-            ("nnir-summary-line-format" variable nil nil [11042 11563])
-            ("nnir-retrieve-headers-override-function" variable nil nil [11565 12065])
-            ("nnir-imap-default-search-key" variable (:default-value "whole message") nil [12067 12429])
-            ("nnir-swish++-configuration-file" variable (:default-value (expand-file-name "~/Mail/swish++.conf")) nil [12431 12584])
-            ("nnir-swish++-program" variable (:default-value "search") nil [12586 12699])
-            ("nnir-swish++-additional-switches" variable (:default-value (quote nil)) nil [12701 13074])
-            ("nnir-swish++-remove-prefix" variable (:default-value (concat (getenv "HOME") "/Mail/")) nil [13076 13442])
-            ("make-obsolete-variable" code nil nil [13590 13681])
-            ("nnir-swish-e-index-file" variable (:default-value (expand-file-name "~/Mail/index.swish-e")) nil [13682 13960])
-            ("nnir-swish-e-index-files" variable (:default-value (list nnir-swish-e-index-file)) nil [13962 14142])
-            ("nnir-swish-e-program" variable (:default-value "swish-e") nil [14144 14293])
-            ("nnir-swish-e-additional-switches" variable (:default-value (quote nil)) nil [14295 14703])
-            ("nnir-swish-e-remove-prefix" variable (:default-value (concat (getenv "HOME") "/Mail/")) nil [14705 15106])
-            ("nnir-hyrex-program" variable (:default-value "nnir-search") nil [15171 15288])
-            ("nnir-hyrex-additional-switches" variable (:default-value (quote nil)) nil [15290 15700])
-            ("nnir-hyrex-index-directory" variable (:default-value (getenv "HOME")) nil [15702 15823])
-            ("nnir-hyrex-remove-prefix" variable (:default-value (concat (getenv "HOME") "/Mail/")) nil [15825 16437])
-            ("nnir-namazu-program" variable (:default-value "namazu") nil [16491 16602])
-            ("nnir-namazu-index-directory" variable (:default-value (expand-file-name "~/Mail/namazu/")) nil [16604 16747])
-            ("nnir-namazu-additional-switches" variable (:default-value (quote nil)) nil [16749 17225])
-            ("nnir-namazu-remove-prefix" variable (:default-value (concat (getenv "HOME") "/Mail/")) nil [17227 17843])
-            ("nnir-notmuch-program" variable (:default-value "notmuch") nil [17845 17977])
-            ("nnir-notmuch-additional-switches" variable (:default-value (quote nil)) nil [17979 18370])
-            ("nnir-notmuch-remove-prefix" variable (:default-value (concat (getenv "HOME") "/Mail/")) nil [18372 18756])
-            ("nnir-engines" variable (:default-value (\` ((imap nnir-run-imap ((criteria "Imap Search in" (\, (mapcar (quote car) nnir-imap-search-arguments)) nil nil nnir-imap-search-argument-history (\, nnir-imap-default-search-key)))) (gmane nnir-run-gmane ((gmane-author . "Gmane Author: "))) (swish++ nnir-run-swish++ ((swish++-group . "Swish++ Group spec (regexp): "))) (swish-e nnir-run-swish-e ((swish-e-group . "Swish-e Group spec (regexp): "))) (namazu nnir-run-namazu nil) (notmuch nnir-run-notmuch nil) (hyrex nnir-run-hyrex ((hyrex-group . "Hyrex Group spec (regexp): "))) (find-grep nnir-run-find-grep ((grep-options . "Grep options: ")))))) nil [18793 20603])
-            ("nnir-method-default-engines" variable (:default-value (quote ((nnimap . imap) (nntp . gmane)))) nil [20605 21096])
-            ("declare-function" code nil nil [21113 21169])
-            ("gnus-group-make-nnir-group" function
-               (:user-visible-flag t
-                :arguments ("nnir-extra-parms" "specs"))
-                nil [21171 22815])
-            ("gnus-summary-make-nnir-group" function
-               (:user-visible-flag t
-                :arguments ("nnir-extra-parms"))
-                nil [22817 23170])
-            ("deffoo" code nil nil [23211 23544])
-            ("deffoo" code nil nil [23546 24572])
-            ("deffoo" code nil nil [24574 26367])
-            ("deffoo" code nil nil [26369 27907])
-            ("deffoo" code nil nil [27909 28746])
-            ("deffoo" code nil nil [28748 29653])
-            ("deffoo" code nil nil [29655 30618])
-            ("deffoo" code nil nil [30620 30870])
-            ("deffoo" code nil nil [30872 31614])
-            ("deffoo" code nil nil [31617 32875])
-            ("deffoo" code nil nil [32878 33405])
-            ("nnir-add-result" function (:arguments ("dirnam" "artno" "score" "prefix" "server" "artlist")) nil [33534 33846])
-            ("nnmaildir-base-name-to-article-number" function (:prototype-flag t) nil [33848 33909])
-            ("nnir-compose-result" function (:arguments ("dirnam" "article" "score" "prefix" "server")) nil [34026 35150])
-            ("nnimap-change-group" function (:prototype-flag t) nil [35183 35223])
-            ("declare-function" code nil nil [35224 35268])
-            ("declare-function" code nil nil [35269 35324])
-            ("nnir-run-imap" function (:arguments ("query" "srv" "groups")) nil [35344 37604])
-            ("nnir-imap-make-query" function (:arguments ("criteria" "qstring")) nil [37606 38944])
-            ("nnir-imap-query-to-imap" function (:arguments ("criteria" "query")) nil [38947 39266])
-            ("nnir-imap-expr-to-imap" function (:arguments ("criteria" "expr")) nil [39269 40089])
-            ("nnir-imap-parse-query" function (:arguments ("string")) nil [40092 40646])
-            ("nnir-imap-next-expr" function (:arguments ("count")) nil [40649 41016])
-            ("nnir-imap-next-term" function (:arguments ("count")) nil [41019 41375])
-            ("nnir-imap-peek-symbol" function nil nil [41378 41531])
-            ("nnir-imap-next-symbol" function (:arguments ("count")) nil [41533 42961])
-            ("nnir-imap-delimited-string" function (:arguments ("delimiter")) nil [42963 43437])
-            ("nnir-imap-end-of-input" function nil nil [43439 43560])
-            ("nnir-run-swish++" function (:arguments ("query" "server" "group")) nil [43699 47201])
-            ("nnir-run-swish-e" function (:arguments ("query" "server" "group")) nil [47225 50648])
-            ("nnir-run-hyrex" function (:arguments ("query" "server" "group")) nil [50669 53579])
-            ("nnir-run-namazu" function (:arguments ("query" "server" "group")) nil [53601 56444])
-            ("nnir-run-notmuch" function (:arguments ("query" "server" "group")) nil [56446 59271])
-            ("nnir-run-find-grep" function (:arguments ("query" "server" "grouplist")) nil [59273 61877])
-            ("declare-function" code nil nil [61879 61951])
-            ("declare-function" code nil nil [61952 62021])
-            ("nnir-run-gmane" function (:arguments ("query" "srv" "groups")) nil [62042 63677])
-            ("gnus-nnir-group-p" function (:arguments ("group")) nil [63695 63906])
-            ("nnir-read-parms" function (:arguments ("nnir-search-engine")) nil [63908 64128])
-            ("nnir-read-parm" function (:arguments ("parmspec")) nil [64130 64601])
-            ("nnir-run-query" function (:arguments ("specs")) nil [64603 65049])
-            ("nnir-server-to-search-engine" function (:arguments ("server")) nil [65051 65245])
-            ("nnir-read-server-parm" function (:arguments ("key" "server" "not-global")) nil [65247 65709])
-            ("nnir-possibly-change-group" function (:arguments ("group" "server")) nil [65711 66028])
-            ("nnir-server-opened" function (:arguments ("server")) nil [66030 66186])
-            ("nnimap-make-thread-query" function (:prototype-flag t) nil [66188 66233])
-            ("declare-function" code nil nil [66234 66302])
-            ("nnir-search-thread" function (:arguments ("header")) nil [66304 67325])
-            ("nnir-get-active" function (:arguments ("srv")) nil [67327 68535])
-            ("declare-function" code nil nil [68575 68694])
-            ("nnir-registry-action" function (:arguments ("action" "data-header" "from" "to" "method")) nil [68696 68958])
-            ("nnir-mode" function nil nil [68960 69662])
-            ("gnus-summary-create-nnir-group" function nil nil [69665 70070])
-            ("deffoo" code nil nil [70073 70990])
-            ("deffoo" code nil nil [70992 71061])
-            ("deffoo" code nil nil [71063 71112])
-            ("deffoo" code nil nil [71114 71159])
-            ("deffoo" code nil nil [71161 71195])
-            ("nnoo-define-skeleton" code nil nil [71197 71224])
-            ("nnir" package nil nil [71238 71253]))          
-      :file "nnir.el"
-      :pointmax 71277
-      :fsize 71277
-      :lastmodtime '(23525 29556 0 0)
-      :unmatched-syntax '((close-paren 7738 . 7739) (symbol 7703 . 7720) (open-paren 7702 . 7703)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [903 916])
-            ("gnus" include nil nil [919 934])
-            ("gnus-score" include nil nil [935 956])
-            ("gnus-util" include nil nil [957 977])
-            ("gnus-advanced-headers" variable nil nil [1004 1038])
-            ("gnus-advanced-not" variable (:default-value (intern (format "%c" 172))) nil [1096 1149])
-            ("gnus-advanced-index" variable
-               (:constant-flag t
-                :default-value (quote (("number" 0 gnus-advanced-integer) ("subject" 1 gnus-advanced-string) ("from" 2 gnus-advanced-string) ("date" 3 gnus-advanced-date) ("message-id" 4 gnus-advanced-string) ("references" 5 gnus-advanced-string) ("chars" 6 gnus-advanced-integer) ("lines" 7 gnus-advanced-integer) ("xref" 8 gnus-advanced-string) ("head" nil gnus-advanced-body) ("body" nil gnus-advanced-body) ("all" nil gnus-advanced-body))))
-                nil [1151 1659])
-            ("parse-time-string" function (:prototype-flag t) nil [1661 1703])
-            ("gnus-score-advanced" function (:arguments ("rule" "trace")) nil [1705 2596])
-            ("gnus-advanced-score-rule" function (:arguments ("rule")) nil [2598 4128])
-            ("gnus-advanced-score-article" function (:arguments ("rule")) nil [4130 4553])
-            ("gnus-advanced-string" function (:arguments ("index" "match" "type")) nil [4555 5279])
-            ("gnus-advanced-integer" function (:arguments ("index" "match" "type")) nil [5281 5488])
-            ("gnus-advanced-date" function (:arguments ("index" "match" "type")) nil [5490 5917])
-            ("gnus-advanced-body" function (:arguments ("header" "match" "type")) nil [5919 8253])
-            ("gnus-logic" package nil nil [8255 8276]))          
-      :file "gnus-logic.el"
-      :pointmax 8306
-      :fsize 8305
-      :lastmodtime '(23525 29552 0 0)
-      :unmatched-syntax '((close-paren 916 . 917) (symbol 885 . 902) (open-paren 884 . 885))))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!gnus!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041image\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041image\041semantic.cache"
deleted file mode 100644
index a68c03f..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041image\041semantic.cache"
+++ /dev/null
@@ -1,38 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("url" include nil nil [859 873])
-            ("url-cache" include nil nil [874 894])
-            ("image" include nil nil [895 911])
-            ("gravatar" customgroup (:user-visible-flag t) nil [913 983])
-            ("gravatar-automatic-caching" variable (:default-value t) nil [985 1103])
-            ("gravatar-cache-ttl" variable (:default-value (days-to-time 30)) nil [1175 1313])
-            ("gravatar-rating" variable (:default-value "g") nil [1368 1467])
-            ("gravatar-size" variable (:default-value 32) nil [1469 1575])
-            ("gravatar-base-url" variable
-               (:constant-flag t
-                :default-value "http://www.gravatar.com/avatar")
-                nil [1577 1676])
-            ("gravatar-hash" function (:arguments ("mail-address")) nil [1678 1783])
-            ("gravatar-build-url" function (:arguments ("mail-address")) nil [1785 2030])
-            ("gravatar-cache-expired" function (:arguments ("url")) nil [2032 2485])
-            ("gravatar-get-data" function nil nil [2487 2760])
-            ("gravatar-data->image" function nil nil [2762 2974])
-            ("help-function-arglist" function (:prototype-flag t) nil [2976 3020])
-            ("gravatar-retrieve" function (:arguments ("mail-address" "cb" "cbargs")) nil [3037 3854])
-            ("gravatar-retrieve-synchronously" function (:arguments ("mail-address")) nil [3871 4473])
-            ("gravatar-retrieved" function (:arguments ("status" "cb" "cbargs")) nil [4476 4848])
-            ("gravatar" package nil nil [4850 4869]))          
-      :file "gravatar.el"
-      :pointmax 4897
-      :fsize 4896
-      :lastmodtime '(23525 29558 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!image!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041international\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041international\041semantic.cache"
deleted file mode 100644
index ec7ca29..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041international\041semantic.cache"
+++ /dev/null
@@ -1,1055 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("mule-version" variable
-               (:constant-flag t
-                :default-value "6.0 (HANACHIRUSATO)")
-                nil [1316 1441])
-            ("mule-version-date" variable
-               (:constant-flag t
-                :default-value "2003.9.1")
-                nil [1443 1556])
-            ("private-char-area-1-min" variable (:default-value 983040) nil [1638 1678])
-            ("private-char-area-1-max" variable (:default-value 1048574) nil [1679 1719])
-            ("private-char-area-2-min" variable (:default-value 1048576) nil [1720 1761])
-            ("private-char-area-2-max" variable (:default-value 1114110) nil [1762 1803])
-            ("emacs-mule-charset-table" variable (:default-value (make-vector 256 nil)) nil [1869 1924])
-            ("aset" code nil nil [1925 1965])
-            ("convert-define-charset-argument" function (:arguments ("emacs-mule-id" "info-vector")) nil [2226 3604])
-            ("define-charset" function (:arguments ("name" "docstring" "props")) nil [3606 10440])
-            ("load-with-code-conversion" function (:arguments ("fullname" "file" "noerror" "nomessage")) nil [10443 12942])
-            ("charset-info" function (:arguments ("charset")) nil [12944 14478])
-            ("charset-id" function (:arguments ("_charset")) nil [14649 14783])
-            ("charset-bytes" function (:arguments ("_charset")) nil [14785 14925])
-            ("get-charset-property" function (:arguments ("charset" "propname")) nil [14927 15157])
-            ("put-charset-property" function (:arguments ("charset" "propname" "value")) nil [15159 15477])
-            ("charset-description" function (:arguments ("charset")) nil [15479 15607])
-            ("charset-dimension" function (:arguments ("charset")) nil [15609 15726])
-            ("charset-chars" function (:arguments ("charset" "dimension")) nil [15728 16096])
-            ("charset-iso-final-char" function (:arguments ("charset")) nil [16098 16298])
-            ("charset-short-name" function (:arguments ("charset")) nil [16300 16423])
-            ("charset-long-name" function (:arguments ("charset")) nil [16425 16545])
-            ("charset-list" function nil nil [16547 16674])
-            ("define-obsolete-function-alias" code nil nil [16692 16757])
-            ("generic-char-p" function (:arguments ("_char")) nil [16759 16898])
-            ("make-char-internal" function (:arguments ("charset-id" "code1" "code2")) nil [16900 17133])
-            ("ascii-case-table" variable (:default-value (let ((tbl (copy-sequence (standard-case-table))) (up (char-table-extra-slot (standard-case-table) 0))) (if up (set-char-table-extra-slot tbl 0 (copy-sequence up))) (set-char-table-extra-slot tbl 1 nil) (set-char-table-extra-slot tbl 2 nil) tbl)) nil [17342 17748])
-            ("coding-system-iso-2022-flags" variable
-               (:constant-flag t
-                :default-value (quote (long-form ascii-at-eol ascii-at-cntl 7-bit locking-shift single-shift designation revision direction init-at-bol designate-at-bol safe latin-extra composition euc-tw-shift use-roman use-oldjis 8-bit-level-4)))
-                nil [17870 20840])
-            ("define-coding-system" function (:arguments ("name" "docstring" "props")) nil [20842 33014])
-            ("coding-system-doc-string" function (:arguments ("coding-system")) nil [33016 33180])
-            ("coding-system-mnemonic" function (:arguments ("coding-system")) nil [33182 33471])
-            ("coding-system-type" function (:arguments ("coding-system")) nil [33473 33755])
-            ("coding-system-charset-list" function (:arguments ("coding-system")) nil [33757 34067])
-            ("coding-system-category" function (:arguments ("coding-system")) nil [34069 34222])
-            ("coding-system-get" function (:arguments ("coding-system" "prop")) nil [34224 34840])
-            ("coding-system-eol-type-mnemonic" function (:arguments ("coding-system")) nil [34842 35249])
-            ("coding-system-lessp" function (:arguments ("x" "y")) nil [35251 35634])
-            ("coding-system-equal" function (:arguments ("coding-system-1" "coding-system-2")) nil [35636 36224])
-            ("add-to-coding-system-list" function (:arguments ("coding-system")) nil [36226 36838])
-            ("coding-system-list" function (:arguments ("base-only")) nil [36840 37488])
-            ("char-coding-system-table" variable (:constant-flag t) nil [37490 37605])
-            ("make-obsolete-variable" code nil nil [37606 37667])
-            ("transform-make-coding-system-args" function (:arguments ("name" "type" "doc-string" "props")) nil [37669 40644])
-            ("make-coding-system" function (:arguments ("coding-system" "type" "mnemonic" "doc-string" "flags" "properties" "eol-type")) nil [40646 43996])
-            ("merge-coding-systems" function (:arguments ("first" "second")) nil [43998 44677])
-            ("autoload-coding-system" function (:arguments ("symbol" "form")) nil [44679 45206])
-            ("buffer-file-coding-system-explicit" variable nil nil [45930 46153])
-            ("make-variable-buffer-local" code nil nil [46154 46218])
-            ("put" code nil nil [46219 46279])
-            ("read-buffer-file-coding-system" function nil nil [46281 49116])
-            ("set-buffer-file-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system" "force" "nomodify"))
-                nil [49118 51248])
-            ("revert-buffer-with-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system" "force"))
-                nil [51250 52177])
-            ("set-file-name-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system"))
-                nil [52179 52769])
-            ("default-terminal-coding-system" variable nil nil [52771 52984])
-            ("set-terminal-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system" "terminal"))
-                nil [52986 54074])
-            ("default-keyboard-coding-system" variable nil nil [54076 54288])
-            ("set-keyboard-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system" "terminal"))
-                nil [54290 56832])
-            ("keyboard-coding-system" variable nil nil [56834 57696])
-            ("set-buffer-process-coding-system" function
-               (:user-visible-flag t
-                :arguments ("decoding" "encoding"))
-                nil [57698 58416])
-            ("defalias" code nil nil [58418 58486])
-            ("set-selection-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system"))
-                nil [58488 58865])
-            ("last-next-selection-coding-system" variable nil nil [58953 58999])
-            ("set-next-selection-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system"))
-                nil [59001 59711])
-            ("set-coding-priority" function (:arguments ("arg")) nil [59713 60055])
-            ("ctext-non-standard-encodings-alist" variable (:default-value (mapcar (quote purecopy) (quote (("big5-0" big5 2 big5) ("ISO8859-14" iso-8859-14 1 latin-iso8859-14) ("ISO8859-15" iso-8859-15 1 latin-iso8859-15) ("gbk-0" gbk 2 chinese-gbk) ("koi8-r" koi8-r 1 koi8-r) ("microsoft-cp1251" windows-1251 1 windows-1251))))) nil [60075 61400])
-            ("ctext-non-standard-encodings" variable nil nil [61402 61630])
-            ("ctext-non-standard-encodings-regexp" variable (:default-value (purecopy (string-to-multibyte (concat "\\(%/[0-4][\200-\377][\200-\377]\\([^]+\\)\\)" "\\|" "\\(%G[^]*%@\\)")))) nil [61632 61886])
-            ("ctext-post-read-conversion" function (:arguments ("len")) nil [62127 63771])
-            ("ctext-standard-encodings" variable (:default-value (quote (ascii latin-jisx0201 katakana-jisx0201 latin-iso8859-1 latin-iso8859-2 latin-iso8859-3 latin-iso8859-4 greek-iso8859-7 arabic-iso8859-6 hebrew-iso8859-8 cyrillic-iso8859-5 latin-iso8859-9 chinese-gb2312 japanese-jisx0208 korean-ksc5601))) nil [63773 64503])
-            ("ctext-non-standard-encodings-table" function nil nil [65081 65801])
-            ("ctext-pre-write-conversion" function (:arguments ("from" "to")) nil [65803 68388])
-            ("auto-coding-alist" variable (:default-value (mapcar (lambda (arg) (cons (purecopy (car arg)) (cdr arg))) (quote (("\\.\\(arc\\|zip\\|lzh\\|lha\\|zoo\\|[jew]ar\\|xpi\\|rar\\|7z\\|ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|7Z\\)\\'" . no-conversion-multibyte) ("\\.\\(exe\\|EXE\\)\\'" . no-conversion) ("\\.\\(sx[dmicw]\\|odt\\|tar\\|t[bg]z\\)\\'" . no-conversion) ("\\.\\(gz\\|Z\\|bz\\|bz2\\|xz\\|gpg\\)\\'" . no-conversion) ("\\.\\(jpe?g\\|png\\|gif\\|tiff?\\|p[bpgn]m\\)\\'" . no-conversion) ("\\.pdf\\'" . no-conversion) ("/#[^/]+#\\'" . utf-8-emacs-unix))))) nil [68484 69698])
-            ("auto-coding-regexp-alist" variable (:default-value (mapcar (lambda (arg) (cons (purecopy (car arg)) (cdr arg))) (quote (("\\`BABYL OPTIONS:[ 	]*-\\*-[ 	]*rmail[ 	]*-\\*-" . no-conversion) ("\\`\376\377" . utf-16be-with-signature) ("\\`\377\376" . utf-16le-with-signature) ("\\`\357\273\277" . utf-8-with-signature) ("\\`;ELC���" . emacs-mule))))) nil [69700 70534])
-            ("auto-coding-regexp-alist-lookup" function (:arguments ("from" "to")) nil [70536 71147])
-            ("auto-coding-functions" variable (:default-value (quote (sgml-xml-auto-coding-function sgml-html-meta-auto-coding-function))) nil [71216 71997])
-            ("set-auto-coding-for-load" variable nil nil [71999 72190])
-            ("auto-coding-alist-lookup" function (:arguments ("filename")) nil [72192 72605])
-            ("put" code nil nil [72607 72661])
-            ("put" code nil nil [72662 72728])
-            ("find-auto-coding" function (:arguments ("filename" "size")) nil [72730 79063])
-            ("set-auto-coding" function (:arguments ("filename" "size")) nil [79065 79495])
-            ("setq" code nil nil [79497 79545])
-            ("after-insert-file-set-coding" function (:arguments ("inserted" "visit")) nil [79547 80414])
-            ("find-new-buffer-file-coding-system" function (:arguments ("coding")) nil [80604 82639])
-            ("modify-coding-system-alist" function (:arguments ("target-type" "regexp" "coding-system")) nil [82641 84927])
-            ("decode-coding-inserted-region" function (:arguments ("from" "to" "filename" "visit" "beg" "end" "replace")) nil [84929 86926])
-            ("recode-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "new-coding" "coding"))
-                nil [86928 87737])
-            ("make-translation-table" function (:arguments ("args")) nil [87739 89226])
-            ("make-translation-table-from-vector" function (:arguments ("vec")) nil [89228 89843])
-            ("make-translation-table-from-alist" function (:arguments ("alist")) nil [89845 91583])
-            ("define-translation-table" function (:arguments ("symbol" "args")) nil [91585 92980])
-            ("translate-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "table"))
-                nil [92982 94018])
-            ("with-category-table" function (:arguments ("table" "body")) nil [94020 94659])
-            ("define-translation-hash-table" function (:arguments ("symbol" "table")) nil [94661 95615])
-            ("put" code nil nil [95649 95700])
-            ("setq" code nil nil [95701 95764])
-            ("put" code nil nil [95765 95825])
-            ("setq" code nil nil [95826 95913])
-            ("sgml-xml-auto-coding-function" function (:arguments ("size")) nil [95952 98131])
-            ("sgml-html-meta-auto-coding-function" function (:arguments ("size")) nil [98133 99332])
-            ("xml-find-file-coding-system" function (:arguments ("args")) nil [99334 100664])
-            ("mule" package nil nil [100670 100685]))          
-      :file "mule.el"
-      :pointmax 100709
-      :fsize 100708
-      :lastmodtime '(23525 29560 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("setq" code nil nil [1273 4295])
-            ("font-encoding-charset-alist" variable nil nil [4297 4333])
-            ("setq" code nil nil [4335 5044])
-            ("setq" code nil nil [5046 7390])
-            ("otf-script-alist" variable nil nil [7392 7417])
-            ("setq" code nil nil [7552 10732])
-            ("declare-function" code nil nil [11644 11702])
-            ("declare-function" code nil nil [11703 11798])
-            ("build-default-fontset-data" function nil nil [12286 14270])
-            ("setup-default-fontset" function nil nil [14274 29162])
-            ("create-default-fontset" function nil nil [29164 29463])
-            ("set-font-encoding" function (:arguments ("pattern" "charset")) nil [34815 35092])
-            ("x-pixel-size-width-font-regexp" variable nil nil [35094 35133])
-            ("vertical-centering-font-regexp" variable nil nil [35134 35173])
-            ("setq" code nil nil [35231 35349])
-            ("setq" code nil nil [35394 35523])
-            ("put" code nil nil [35524 35620])
-            ("setq" code nil nil [35682 35757])
-            ("x-font-name-charset-alist" variable nil nil [35759 35874])
-            ("xlfd-regexp-family-subnum" variable (:constant-flag t) nil [35983 36021])
-            ("xlfd-regexp-weight-subnum" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [36044 36082])
-            ("xlfd-regexp-slant-subnum" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [36098 36135])
-            ("xlfd-regexp-swidth-subnum" variable
-               (:constant-flag t
-                :default-value 3)
-                nil [36145 36183])
-            ("xlfd-regexp-adstyle-subnum" variable
-               (:constant-flag t
-                :default-value 4)
-                nil [36201 36240])
-            ("xlfd-regexp-pixelsize-subnum" variable
-               (:constant-flag t
-                :default-value 5)
-                nil [36259 36300])
-            ("xlfd-regexp-pointsize-subnum" variable
-               (:constant-flag t
-                :default-value 6)
-                nil [36314 36355])
-            ("xlfd-regexp-resx-subnum" variable
-               (:constant-flag t
-                :default-value 7)
-                nil [36369 36405])
-            ("xlfd-regexp-resy-subnum" variable
-               (:constant-flag t
-                :default-value 8)
-                nil [36422 36458])
-            ("xlfd-regexp-spacing-subnum" variable
-               (:constant-flag t
-                :default-value 8)
-                nil [36475 36514])
-            ("xlfd-regexp-avgwidth-subnum" variable
-               (:constant-flag t
-                :default-value 10)
-                nil [36526 36567])
-            ("xlfd-regexp-registry-subnum" variable
-               (:constant-flag t
-                :default-value 11)
-                nil [36584 36625])
-            ("xlfd-tight-regexp" variable
-               (:constant-flag t
-                :default-value "^-\\([^-]*-[^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*-[^-]*\\)$")
-                nil [36845 37042])
-            ("xlfd-style-regexp" variable
-               (:constant-flag t
-                :default-value "^-\\([^-]*-[^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-\\([^-]*\\)-.*-\\([^-]*-[^-]*\\)$")
-                nil [37289 37415])
-            ("xlfd-regexp-numeric-subnums" variable
-               (:constant-flag t
-                :default-value (list xlfd-regexp-pixelsize-subnum xlfd-regexp-pointsize-subnum xlfd-regexp-resx-subnum xlfd-regexp-resy-subnum xlfd-regexp-avgwidth-subnum))
-                nil [37476 37681])
-            ("x-decompose-font-name" function (:arguments ("pattern")) nil [37683 38352])
-            ("x-compose-font-name" function (:arguments ("fields" "_reduce")) nil [38354 38696])
-            ("x-must-resolve-font-name" function (:arguments ("xlfd-fields")) nil [38699 39493])
-            ("x-complement-fontset-spec" function (:arguments ("default-spec" "fontlist")) nil [39496 40166])
-            ("fontset-name-p" function (:arguments ("fontset")) nil [40168 40738])
-            ("declare-function" code nil nil [40740 40786])
-            ("generate-fontset-menu" function nil nil [40788 41197])
-            ("declare-function" code nil nil [41199 41271])
-            ("fontset-plain-name" function (:arguments ("fontset")) nil [41273 42791])
-            ("charset-script-alist" variable (:default-value (quote ((ascii . latin) (latin-iso8859-1 . latin) (latin-iso8859-2 . latin) (latin-iso8859-3 . latin) (latin-iso8859-4 . latin) (latin-iso8859-9 . latin) (latin-iso8859-10 . latin) (latin-iso8859-13 . latin) (latin-iso8859-14 . latin) (latin-iso8859-15 . latin) (latin-iso8859-16 . latin) (latin-jisx0201 . latin) (thai-tis620 . thai) (cyrillic-iso8859-5 . cyrillic) (arabic-iso8859-6 . arabic) (greek-iso8859-7 . latin) (hebrew-iso8859-8 . latin) (katakana-jisx0201 . kana) (chinese-gb2312 . han) (chinese-gbk . han) (gb18030-2-byte . han) (gb18030-4-byte-bmp . han) (gb18030-4-byte-ext-1 . han) (gb18030-4-byte-ext-2 . han) (gb18030-4-byte-smp . han) (chinese-big5-1 . han) (chinese-big5-2 . han) (chinese-cns11643-1 . han) (chinese-cns11643-2 . han) (chinese-cns11643-3 . han) (chinese-cns11643-4 . han) (chinese-cns11643-5 . han) (chinese-cns11643-6 . han) (chinese-cns11643-7 . han) (japanese-jisx0208 . han) (japanese-jisx0208-1978 . han) (japanese-jisx0212 . han) (japanese-jisx0213-1 . han) (japanese-jisx0213-2 . han) (korean-ksc5601 . hangul) (chinese-sisheng . bopomofo) (vietnamese-viscii-lower . latin) (vietnamese-viscii-upper . latin) (arabic-digit . arabic) (arabic-1-column . arabic) (arabic-2-column . arabic) (indian-is13194 . devanagari) (indian-glyph . devanagari) (indian-1-column . devanagari) (indian-2-column . devanagari) (tibetan-1-column . tibetan)))) nil [42793 44564])
-            ("create-fontset-from-fontset-spec" function (:arguments ("fontset-spec" "_style-variant" "_noerror")) nil [44566 46647])
-            ("create-fontset-from-ascii-font" function (:arguments ("font" "resolved-font" "fontset-name")) nil [46649 47843])
-            ("standard-fontset-spec" variable (:default-value (purecopy "-*-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-standard")) nil [48072 48417])
-            ("declare-function" code nil nil [48623 48717])
-            ("create-fontset-from-x-resource" function nil nil [48719 49131])
-            ("fontset" package nil nil [49136 49154]))          
-      :file "fontset.el"
-      :pointmax 49181
-      :fsize 49180
-      :lastmodtime '(23525 29559 0 0)
-      :unmatched-syntax '((close-paren 14271 . 14272) (symbol 11801 . 11818) (open-paren 11800 . 11801)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1259 1276])
-            ("dos-codepage" variable nil nil [1279 1300])
-            ("widget-value" function (:prototype-flag t) nil [1301 1336])
-            ("mule-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "f" (quote set-buffer-file-coding-system)) (define-key map "r" (quote revert-buffer-with-coding-system)) (define-key map "F" (quote set-file-name-coding-system)) (define-key map "t" (quote set-terminal-coding-system)) (define-key map "k" (quote set-keyboard-coding-system)) (define-key map "p" (quote set-buffer-process-coding-system)) (define-key map "x" (quote set-selection-coding-system)) (define-key map "X" (quote set-next-selection-coding-system)) (define-key map "" (quote set-input-method)) (define-key map "c" (quote universal-coding-system-argument)) (define-key map "l" (quote set-language-environment)) map)) nil [1380 2115])
-            ("define-key" code nil nil [2167 2208])
-            ("describe-language-environment-map" variable (:default-value (let ((map (make-sparse-keymap "Describe Language Environment"))) (bindings--define-key map [Default] (quote (menu-item "Default" describe-specified-language-support))) map)) nil [2210 2435])
-            ("setup-language-environment-map" variable (:default-value (let ((map (make-sparse-keymap "Set Language Environment"))) (bindings--define-key map [Default] (quote (menu-item "Default" setup-specified-language-environment))) map)) nil [2437 2655])
-            ("set-coding-system-map" variable (:default-value (let ((map (make-sparse-keymap "Set Coding System"))) (bindings--define-key map [set-buffer-process-coding-system] (quote (menu-item "For I/O with Subprocess" set-buffer-process-coding-system :visible (fboundp (quote make-process)) :enable (get-buffer-process (current-buffer)) :help "How to en/decode I/O from/to subprocess connected to this buffer"))) (bindings--define-key map [set-next-selection-coding-system] (quote (menu-item "For Next X Selection" set-next-selection-coding-system :visible (display-selections-p) :help "How to en/decode next selection/clipboard operation"))) (bindings--define-key map [set-selection-coding-system] (quote (menu-item "For X Selections/Clipboard" set-selection-coding-system :visible (display-selections-p) :help "How to en/decode data to/from selection/clipboard"))) (bindings--define-key map [separator-3] menu-bar-separator) (bindings--define-key map [set-terminal-coding-system] (quote (menu-item "For Terminal" set-terminal-coding-system :enable (null (memq initial-window-system (quote (x w32 ns)))) :help "How to encode terminal output"))) (bindings--define-key map [set-keyboard-coding-system] (quote (menu-item "For Keyboard" set-keyboard-coding-system :help "How to decode keyboard input"))) (bindings--define-key map [separator-2] menu-bar-separator) (bindings--define-key map [set-file-name-coding-system] (quote (menu-item "For File Name" set-file-name-coding-system :help "How to decode/encode file names"))) (bindings--define-key map [revert-buffer-with-coding-system] (quote (menu-item "For Reverting This File Now" revert-buffer-with-coding-system :enable buffer-file-name :help "Revisit this file immediately using specified coding system"))) (bindings--define-key map [set-buffer-file-coding-system] (quote (menu-item "For Saving This Buffer" set-buffer-file-coding-system :help "How to encode this buffer when saved"))) (bindings--define-key map [separator-1] menu-bar-separator) (bindings--define-key map [universal-coding-system-argument] (quote (menu-item "For Next Command" universal-coding-system-argument :help "Coding system to be used by next command"))) map)) nil [2657 4976])
-            ("mule-menu-keymap" variable (:default-value (let ((map (make-sparse-keymap "Mule (Multilingual Environment)"))) (bindings--define-key map [mule-diag] (quote (menu-item "Show All Multilingual Settings" mule-diag :help "Display multilingual environment settings"))) (bindings--define-key map [list-character-sets] (quote (menu-item "List Character Sets" list-character-sets :help "Show table of available character sets"))) (bindings--define-key map [describe-coding-system] (quote (menu-item "Describe Coding System..." describe-coding-system))) (bindings--define-key map [describe-input-method] (quote (menu-item "Describe Input Method..." describe-input-method :help "Keyboard layout for a specific input method"))) (bindings--define-key map [describe-language-environment] (\` (menu-item "Describe Language Environment" (\, describe-language-environment-map) :help "Show multilingual settings for a specific language"))) (bindings--define-key map [separator-coding-system] menu-bar-separator) (bindings--define-key map [view-hello-file] (quote (menu-item "Show Multilingual Sample Text" view-hello-file :enable (file-readable-p (expand-file-name "HELLO" data-directory)) :help "Demonstrate various character sets"))) (bindings--define-key map [set-various-coding-system] (\` (menu-item "Set Coding Systems" (\, set-coding-system-map) :enable (default-value (quote enable-multibyte-characters))))) (bindings--define-key map [separator-input-method] menu-bar-separator) (bindings--define-key map [describe-input-method] (quote (menu-item "Describe Input Method" describe-input-method))) (bindings--define-key map [set-input-method] (quote (menu-item "Select Input Method..." set-input-method))) (bindings--define-key map [toggle-input-method] (quote (menu-item "Toggle Input Method" toggle-input-method))) (bindings--define-key map [separator-mule] menu-bar-separator) (bindings--define-key map [set-language-environment] (\` (menu-item "Set Language Environment" (\, setup-language-environment-map)))) map)) nil [4978 7169])
-            ("define-key" code nil nil [7551 7603])
-            ("help-xref-mule-regexp-template" variable
-               (:constant-flag t
-                :default-value (purecopy (concat "\\(\\<\\(" "\\(coding system\\)\\|" "\\(input method\\)\\|" "\\(character set\\)\\|" "\\(charset\\)" "\\)\\s-+\\)?" "['`\342\200\230]\\(\\sw\\(\\sw\\|\\s_\\)+\\)['\342\200\231]")))
-                nil [7846 8153])
-            ("coding-system-change-eol-conversion" function (:arguments ("coding-system" "eol-type")) nil [8155 9394])
-            ("coding-system-change-text-conversion" function (:arguments ("coding-system" "coding")) nil [9396 9946])
-            ("canonicalize-coding-system-name" function (:arguments ("name")) nil [10096 10869])
-            ("coding-system-from-name" function (:arguments ("name")) nil [10871 11608])
-            ("toggle-enable-multibyte-characters" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [11610 12413])
-            ("view-hello-file" function (:user-visible-flag t) nil [12415 12688])
-            ("universal-coding-system-argument" function
-               (:user-visible-flag t
-                :arguments ("coding-system"))
-                nil [12690 14622])
-            ("set-default-coding-systems" function (:arguments ("coding-system")) nil [14624 16540])
-            ("prefer-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system"))
-                nil [16542 18461])
-            ("sort-coding-systems-predicate" variable nil nil [18463 18715])
-            ("sort-coding-systems" function (:arguments ("codings")) nil [18717 21402])
-            ("find-coding-systems-region" function (:arguments ("from" "to")) nil [21404 22090])
-            ("find-coding-systems-string" function (:arguments ("string")) nil [22092 22415])
-            ("find-coding-systems-for-charsets" function (:arguments ("charsets")) nil [22417 23667])
-            ("find-multibyte-characters" function (:arguments ("from" "to" "maxcount" "excludes")) nil [23669 25420])
-            ("search-unencodable-char" function
-               (:user-visible-flag t
-                :arguments ("coding-system"))
-                nil [25422 26172])
-            ("last-coding-system-specified" variable nil nil [26174 26567])
-            ("select-safe-coding-system-accept-default-p" variable nil nil [26569 26857])
-            ("sanitize-coding-system-list" function (:arguments ("codings")) nil [26859 28027])
-            ("select-safe-coding-system-interactively" function (:arguments ("from" "to" "codings" "unsafe" "rejected" "default")) nil [28029 33249])
-            ("select-safe-coding-system" function (:arguments ("from" "to" "default-coding-system" "accept-default-p" "file")) nil [33251 42938])
-            ("setq" code nil nil [42940 43008])
-            ("select-message-coding-system" function nil nil [43010 44104])
-            ("language-info-alist" variable nil nil [44136 46451])
-            ("get-language-info" function (:arguments ("lang-env" "key")) nil [46453 46893])
-            ("set-language-info" function (:arguments ("lang-env" "key" "info")) nil [46895 48043])
-            ("set-language-info-internal" function (:arguments ("lang-env" "key" "info")) nil [48045 48893])
-            ("set-language-info-alist" function (:arguments ("lang-env" "alist" "parents")) nil [48895 51359])
-            ("read-language-name" function (:arguments ("key" "prompt" "default")) nil [51361 51956])
-            ("leim" customgroup (:user-visible-flag t) nil [51991 52069])
-            ("leim-list-file-name" variable
-               (:constant-flag t
-                :default-value "leim-list.el")
-                nil [52071 52320])
-            ("leim-list-header" variable
-               (:constant-flag t
-                :default-value (format-message ";;; %s -- list of LEIM (Library of Emacs Input Method) -*-coding: utf-8;-*-

-;;

-;; This file is automatically generated.

-;;

-;; This file contains a list of LEIM (Library of Emacs Input Method)

-;; methods in the same directory as this file.  Loading this file

-;; registers all the input methods in Emacs.

-;;

-;; Each entry has the form:

-;;   (register-input-method

-;;    INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC

-;;    TITLE DESCRIPTION

-;;    ARG ...)

-;; See the function `register-input-method' for the meanings of the arguments.

-;;

-;; If this directory is included in `load-path', Emacs automatically

-;; loads this file at startup time.

-

-" leim-list-file-name))
-                nil [52322 53075])
-            ("leim-list-entry-regexp" variable
-               (:constant-flag t
-                :default-value "^(register-input-method")
-                nil [53077 53236])
-            ("update-leim-list-functions" variable (:default-value (quote (quail-update-leim-list-file))) nil [53238 53421])
-            ("update-leim-list-file" function (:arguments ("dirs")) nil [53423 53587])
-            ("current-input-method" variable nil nil [53589 53727])
-            ("make-variable-buffer-local" code nil nil [53728 53778])
-            ("put" code nil nil [53779 53825])
-            ("current-input-method-title" variable nil nil [53827 53931])
-            ("make-variable-buffer-local" code nil nil [53932 53988])
-            ("put" code nil nil [53989 54041])
-            ("define-widget" code nil nil [54043 54337])
-            ("default-input-method" variable nil nil [54339 54728])
-            ("put" code nil nil [54730 54777])
-            ("input-method-history" variable nil nil [54779 54967])
-            ("make-variable-buffer-local" code nil nil [54968 55018])
-            ("put" code nil nil [55019 55065])
-            ("define-obsolete-variable-alias" code nil nil [55067 55194])
-            ("deactivate-current-input-method-function" variable nil nil [55195 55561])
-            ("make-variable-buffer-local" code nil nil [55562 55632])
-            ("put" code nil nil [55633 55699])
-            ("describe-current-input-method-function" variable nil nil [55701 55856])
-            ("make-variable-buffer-local" code nil nil [55857 55925])
-            ("put" code nil nil [55926 55990])
-            ("input-method-alist" variable nil nil [55992 56248])
-            ("put" code nil nil [56264 56313])
-            ("register-input-method" function (:arguments ("input-method" "lang-env" "args")) nil [56315 58037])
-            ("read-input-method-name" function (:arguments ("prompt" "default" "inhibit-null")) nil [58039 59211])
-            ("activate-input-method" function (:arguments ("input-method")) nil [59213 60478])
-            ("deactivate-input-method" function nil nil [60480 61143])
-            ("define-obsolete-function-alias" code nil nil [61145 61238])
-            ("set-input-method" function
-               (:user-visible-flag t
-                :arguments ("input-method" "interactive"))
-                nil [61240 62309])
-            ("toggle-input-method-active" variable nil nil [62311 62392])
-            ("toggle-input-method" function
-               (:user-visible-flag t
-                :arguments ("arg" "interactive"))
-                nil [62394 64118])
-            ("help-buffer" function (:prototype-flag t) nil [64120 64155])
-            ("describe-input-method" function
-               (:user-visible-flag t
-                :arguments ("input-method"))
-                nil [64157 65275])
-            ("describe-current-input-method" function nil nil [65277 65759])
-            ("read-multilingual-string" function (:arguments ("prompt" "initial-input" "input-method")) nil [65761 66685])
-            ("input-method-verbose-flag" variable (:default-value (quote default)) nil [66794 67723])
-            ("input-method-highlight-flag" variable (:default-value t) nil [67725 68132])
-            ("input-method-activate-hook" variable nil nil [68134 68347])
-            ("define-obsolete-variable-alias" code nil nil [68349 68452])
-            ("input-method-deactivate-hook" variable nil nil [68454 68697])
-            ("input-method-after-insert-chunk-hook" variable nil nil [68699 68854])
-            ("input-method-exit-on-first-char" variable nil nil [68856 69233])
-            ("input-method-use-echo-area" variable nil nil [69235 69611])
-            ("input-method-exit-on-invalid-key" variable nil nil [69613 70009])
-            ("set-language-environment-hook" variable nil nil [70013 70374])
-            ("exit-language-environment-hook" variable nil nil [70376 70740])
-            ("put" code nil nil [70742 70804])
-            ("setup-specified-language-environment" function (:user-visible-flag t) nil [70806 71284])
-            ("current-language-environment" variable (:default-value "English") nil [71286 72176])
-            ("reset-language-environment" function (:user-visible-flag t) nil [72178 74981])
-            ("reset-language-environment" code nil nil [74983 75011])
-            ("set-display-table-and-terminal-coding-system" function (:arguments ("language-name" "coding-system" "display")) nil [75013 75796])
-            ("set-language-environment" function
-               (:user-visible-flag t
-                :arguments ("language-name"))
-                nil [75798 78047])
-            ("define-widget" code nil nil [78049 78528])
-            ("language-info-custom-alist" variable nil nil [78530 80333])
-            ("declare-function" code nil nil [80335 80399])
-            ("declare-function" code nil nil [80400 80465])
-            ("standard-display-european-internal" function nil nil [80467 81830])
-            ("set-language-environment-coding-systems" function (:arguments ("language-name")) nil [81832 83314])
-            ("set-language-environment-input-method" function (:arguments ("language-name")) nil [83316 83732])
-            ("set-language-environment-nonascii-translation" function (:arguments ("language-name")) nil [83734 84489])
-            ("set-language-environment-charset" function (:arguments ("language-name")) nil [84491 85064])
-            ("set-language-environment-unibyte" function (:arguments ("language-name")) nil [85066 85260])
-            ("princ-list" function (:arguments ("args")) nil [85262 85448])
-            ("put" code nil nil [85450 85511])
-            ("describe-specified-language-support" function (:user-visible-flag t) nil [85800 86267])
-            ("describe-language-environment" function
-               (:user-visible-flag t
-                :arguments ("language-name"))
-                nil [86269 89745])
-            ("locale-translation-file-name" variable nil nil [89762 89879])
-            ("locale-language-names" variable
-               (:constant-flag t
-                :default-value (purecopy (quote (("aa_DJ" . "Latin-1") ("aa" . "UTF-8") ("af" . "Latin-1") ("am" "Ethiopic" utf-8) ("an" . "Latin-9") ("ar" . "Arabic") ("az" . "UTF-8") ("be" "Belarusian" cp1251) ("bg" "Bulgarian" cp1251) ("bn" . "UTF-8") ("bo" . "Tibetan") ("br" . "Latin-1") ("bs" . "Latin-2") ("byn" . "UTF-8") ("ca" "Catalan" iso-8859-1) ("cs" "Czech" iso-8859-2) ("cy" "Welsh" iso-8859-14) ("da" . "Latin-1") ("de" "German" iso-8859-1) ("el" "Greek" iso-8859-7) ("en_IN" "English" utf-8) ("en" "English" iso-8859-1) ("eo" . "Esperanto") ("es" "Spanish" iso-8859-1) ("et" . "Latin-1") ("eu" . "Latin-1") ("fa" . "UTF-8") ("fi" . "Latin-1") ("fj" . "Latin-1") ("fo" . "Latin-1") ("fr" "French" iso-8859-1) ("fy" . "Latin-1") ("ga" . "Latin-1") ("gd" . "Latin-9") ("gez" "Ethiopic" utf-8) ("gl" . "Latin-1") ("gu" . "UTF-8") ("gv" . "Latin-1") ("he" "Hebrew" iso-8859-8) ("hi" "Devanagari" utf-8) ("hr" "Croatian" iso-8859-2) ("hu" . "Latin-2") ("id" . "Latin-1") ("is" . "Latin-1") ("it" "Italian" iso-8859-1) ("iw" "Hebrew" iso-8859-8) ("ja" "Japanese" euc-jp) ("ka" "Georgian" georgian-ps) ("kl" . "Latin-1") ("kn" "Kannada" utf-8) ("ko" "Korean" euc-kr) ("kw" . "Latin-1") ("la" . "Latin-1") ("lb" . "Latin-1") ("lg" . "Laint-6") ("lo" "Lao" utf-8) ("lt" "Lithuanian" iso-8859-13) ("lv" . "Latvian") ("mi" . "Latin-7") ("mk" "Cyrillic-ISO" iso-8859-5) ("ml" "Malayalam" utf-8) ("mn" . "UTF-8") ("mr" "Devanagari" utf-8) ("ms" . "Latin-1") ("mt" . "Latin-3") ("nb" . "Latin-1") ("ne" "Devanagari" utf-8) ("nl" "Dutch" iso-8859-1) ("no" . "Latin-1") ("oc" . "Latin-1") ("om_ET" . "UTF-8") ("om" . "Latin-1") ("pa" . "UTF-8") ("pl" . "Latin-2") ("pt" . "Latin-1") ("rm" . "Latin-1") ("ro" "Romanian" iso-8859-2) ("ru_RU" "Russian" iso-8859-5) ("ru_UA" "Russian" koi8-u) ("sa" . "Devanagari") ("se" . "UTF-8") ("sh" . "Latin-2") ("sid" . "UTF-8") ("sk" "Slovak" iso-8859-2) ("sl" "Slovenian" iso-8859-2) ("so_ET" "UTF-8") ("so" "Latin-1") ("sq" . "Latin-1") ("sr" . "Latin-2") ("st" . "Latin-1") ("sv" "Swedish" iso-8859-1) ("sw" . "Latin-1") ("ta" "Tamil" utf-8) ("te" . "UTF-8") ("tg" "Tajik" koi8-t) ("th" "Thai" tis-620) ("ti" "Ethiopic" utf-8) ("tig_ER" . "UTF-8") ("tl" . "Latin-1") ("tr" "Turkish" iso-8859-9) ("tt" . "UTF-8") ("uk" "Ukrainian" koi8-u) ("ur" . "UTF-8") ("uz_UZ@cyrillic" . "UTF-8") ("uz" . "Latin-1") ("vi" "Vietnamese" utf-8) ("wa" . "Latin-1") ("xh" . "Latin-1") ("yi" . "Windows-1255") ("zh_HK" . "Chinese-Big5") ("zh_TW" . "Chinese-Big5") ("zh_CN.GB2312" "Chinese-GB") ("zh_CN.GBK" "Chinese-GBK") ("zh_CN.GB18030" "Chinese-GB18030") ("zh_CN.UTF-8" . "Chinese-GBK") ("zh_CN" . "Chinese-GB") ("zh" . "Chinese-GB") ("zu" . "Latin-1") ("c$" . "ASCII") ("posix$" . "ASCII") ("ipa$" . "IPA") ("cz" . "Czech") ("ee" . "Latin-4") ("iw" . "Hebrew") ("sp" . "Cyrillic-ISO") ("su" . "Latin-1") ("jp" . "Japanese") ("chs" . "Chinese-GBK") ("cht" . "Chinese-BIG5") ("gbz" . "UTF-8") ("div" . "UTF-8") ("wee" . "Latin-2") ("wen" . "Latin-2")))))
-                nil [90071 97657])
-            ("locale-charset-language-names" variable
-               (:constant-flag t
-                :default-value (purecopy (quote ((".*8859[-_]?1\\>" . "Latin-1") (".*8859[-_]?2\\>" . "Latin-2") (".*8859[-_]?3\\>" . "Latin-3") (".*8859[-_]?4\\>" . "Latin-4") (".*8859[-_]?9\\>" . "Latin-5") (".*8859[-_]?14\\>" . "Latin-8") (".*8859[-_]?15\\>" . "Latin-9") (".*utf\\(?:-?8\\)?\\>" . "UTF-8") (".*@euro\\>" . "Latin-9")))))
-                nil [97659 98459])
-            ("locale-preferred-coding-systems" variable
-               (:constant-flag t
-                :default-value (purecopy (quote ((".*8859[-_]?1\\>" . iso-8859-1) (".*8859[-_]?2\\>" . iso-8859-2) (".*8859[-_]?3\\>" . iso-8859-3) (".*8859[-_]?4\\>" . iso-8859-4) (".*8859[-_]?9\\>" . iso-8859-9) (".*8859[-_]?14\\>" . iso-8859-14) (".*8859[-_]?15\\>" . iso-8859-15) (".*utf\\(?:-?8\\)?" . utf-8) (".*@euro" . iso-8859-15) ("koi8-?r" . koi8-r) ("koi8-?u" . koi8-u) ("tcvn" . tcvn) ("big5[-_]?hkscs" . big5-hkscs) ("big5" . big5) ("euc-?tw" . euc-tw) ("euc-?cn" . euc-cn) ("gb2312" . gb2312) ("gbk" . gbk) ("gb18030" . gb18030) ("ja.*[._]euc" . japanese-iso-8bit) ("ja.*[._]jis7" . iso-2022-jp) ("ja.*[._]pck" . japanese-shift-jis) ("ja.*[._]sjis" . japanese-shift-jis) ("jpn" . japanese-shift-jis)))))
-                nil [98461 99737])
-            ("locale-name-match" function (:arguments ("key" "alist")) nil [99739 100173])
-            ("locale-charset-match-p" function (:arguments ("charset1" "charset2")) nil [100175 100626])
-            ("locale-charset-alist" variable nil nil [100628 100764])
-            ("locale-charset-to-coding-system" function (:arguments ("charset")) nil [100766 101554])
-            ("declare-function" code nil nil [101723 101781])
-            ("declare-function" code nil nil [101782 101847])
-            ("locale-translate" function (:arguments ("locale")) nil [101849 102360])
-            ("set-locale-environment" function
-               (:user-visible-flag t
-                :arguments ("locale-name" "frame"))
-                nil [102362 111653])
-            ("put" code nil nil [111680 111737])
-            ("define-char-code-property" function (:arguments ("name" "table" "docstring")) nil [111739 113377])
-            ("char-code-property-table" variable (:default-value (make-char-table (quote char-code-property-table))) nil [113379 113685])
-            ("get-char-code-property" function (:arguments ("char" "propname")) nil [113687 114095])
-            ("put-char-code-property" function (:arguments ("char" "propname" "value")) nil [114097 114681])
-            ("char-code-property-description" function (:arguments ("prop" "value")) nil [114683 115037])
-            ("iso-2022-control-alist" variable
-               (:constant-flag t
-                :default-value (quote ((27 . "ESC") (14 . "SO") (15 . "SI") (142 . "SS2") (143 . "SS3") (155 . "CSI"))))
-                nil [115154 115306])
-            ("encoded-string-description" function (:arguments ("str" "coding-system")) nil [115308 115796])
-            ("encode-coding-char" function (:arguments ("char" "coding-system" "charset")) nil [115798 117263])
-            ("define-minor-mode" code nil nil [117363 117482])
-            ("make-obsolete" code nil nil [117550 117617])
-            ("define-minor-mode" code nil nil [117619 117738])
-            ("make-obsolete" code nil nil [117806 117873])
-            ("nonascii-insert-offset" variable nil nil [117875 117908])
-            ("make-obsolete-variable" code nil nil [117909 117981])
-            ("nonascii-translation-table" variable nil nil [117982 118021])
-            ("make-obsolete-variable" code nil nil [118022 118098])
-            ("ucs-names" variable nil nil [118100 118183])
-            ("ucs-names" function nil nil [118185 120216])
-            ("mule--ucs-names-annotation" function (:arguments ("name")) nil [120218 120574])
-            ("char-from-name" function (:arguments ("string" "ignore-case")) nil [120576 121715])
-            ("read-char-by-name" function (:arguments ("prompt")) nil [121717 123282])
-            ("define-obsolete-function-alias" code nil nil [123284 123348])
-            ("define-key" code nil nil [123349 123390]))          
-      :file "mule-cmds.el"
-      :pointmax 123419
-      :fsize 123422
-      :lastmodtime '(23525 29559 0 0)
-      :unmatched-syntax '((close-paren 1276 . 1277) (symbol 1241 . 1258) (open-paren 1240 . 1241)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("define-category" code nil nil [1329 1412])
-            ("define-category" code nil nil [1413 1441])
-            ("define-category" code nil nil [1442 1469])
-            ("define-category" code nil nil [1470 1498])
-            ("define-category" code nil nil [1499 1528])
-            ("define-category" code nil nil [1529 1558])
-            ("define-category" code nil nil [1559 1590])
-            ("define-category" code nil nil [1591 1640])
-            ("define-category" code nil nil [1641 1684])
-            ("define-category" code nil nil [1685 1715])
-            ("define-category" code nil nil [1716 1747])
-            ("define-category" code nil nil [1748 1777])
-            ("define-category" code nil nil [1778 1826])
-            ("define-category" code nil nil [1827 1865])
-            ("define-category" code nil nil [1866 1895])
-            ("define-category" code nil nil [1896 1922])
-            ("define-category" code nil nil [1923 1953])
-            ("define-category" code nil nil [2006 2091])
-            ("define-category" code nil nil [2092 2175])
-            ("define-category" code nil nil [2176 2253])
-            ("define-category" code nil nil [2254 2346])
-            ("define-category" code nil nil [2347 2439])
-            ("define-category" code nil nil [2440 2526])
-            ("define-category" code nil nil [2527 2610])
-            ("define-category" code nil nil [2611 2647])
-            ("define-category" code nil nil [2683 2715])
-            ("define-category" code nil nil [2716 2774])
-            ("define-category" code nil nil [2775 2860])
-            ("define-category" code nil nil [2861 2946])
-            ("define-category" code nil nil [2947 3004])
-            ("define-category" code nil nil [3005 3034])
-            ("define-category" code nil nil [3035 3063])
-            ("define-category" code nil nil [3064 3135])
-            ("define-category" code nil nil [3136 3170])
-            ("define-category" code nil nil [3171 3209])
-            ("define-category" code nil nil [3227 3318])
-            ("define-category" code nil nil [3352 3453])
-            ("define-category" code nil nil [3535 3624])
-            ("define-category" code nil nil [3625 3708])
-            ("define-category" code nil nil [3732 3813])
-            ("define-category" code nil nil [3814 3903])
-            ("define-category" code nil nil [3919 4079])
-            ("define-category" code nil nil [4081 4237])
-            ("modify-category-entry" code nil nil [4356 4394])
-            ("modify-category-entry" code nil nil [4395 4433])
-            ("modify-category-entry" code nil nil [4684 4729])
-            ("modify-category-entry" code nil nil [4730 4775])
-            ("modify-category-entry" code nil nil [4776 4821])
-            ("modify-category-entry" code nil nil [4822 4867])
-            ("modify-category-entry" code nil nil [4868 4913])
-            ("modify-category-entry" code nil nil [4914 4959])
-            ("modify-category-entry" code nil nil [4960 5005])
-            ("modify-category-entry" code nil nil [5006 5051])
-            ("modify-category-entry" code nil nil [5052 5097])
-            ("modify-category-entry" code nil nil [5098 5145])
-            ("modify-category-entry" code nil nil [5146 5193])
-            ("modify-category-entry" code nil nil [5194 5241])
-            ("modify-category-entry" code nil nil [5242 5289])
-            ("map-charset-chars" code nil nil [5327 5402])
-            ("map-charset-chars" code nil nil [5403 5478])
-            ("map-charset-chars" code nil nil [5479 5554])
-            ("map-charset-chars" code nil nil [5556 5618])
-            ("map-charset-chars" code nil nil [5619 5695])
-            ("map-charset-chars" code nil nil [5696 5772])
-            ("map-charset-chars" code nil nil [5773 5849])
-            ("map-charset-chars" code nil nil [5850 5926])
-            ("map-charset-chars" code nil nil [5927 6003])
-            ("map-charset-chars" code nil nil [6004 6080])
-            ("map-charset-chars" code nil nil [6081 6157])
-            ("map-charset-chars" code nil nil [6158 6234])
-            ("map-charset-chars" code nil nil [6269 6321])
-            ("map-charset-chars" code nil nil [6322 6388])
-            ("map-charset-chars" code nil nil [6389 6455])
-            ("map-charset-chars" code nil nil [6456 6522])
-            ("dolist" code nil nil [6561 6928])
-            ("map-charset-chars" code nil nil [6998 7063])
-            ("map-charset-chars" code nil nil [7065 7127])
-            ("dolist" code nil nil [7129 7378])
-            ("modify-category-entry" code nil nil [7404 7450])
-            ("let" code nil nil [7492 7633])
-            ("modify-category-entry" code nil nil [7653 7698])
-            ("modify-category-entry" code nil nil [7699 7744])
-            ("modify-category-entry" code nil nil [7745 7790])
-            ("modify-category-entry" code nil nil [7791 7837])
-            ("modify-category-entry" code nil nil [7838 7872])
-            ("modify-category-entry" code nil nil [7892 7937])
-            ("modify-category-entry" code nil nil [7938 7984])
-            ("modify-category-entry" code nil nil [7985 8019])
-            ("modify-category-entry" code nil nil [8020 8053])
-            ("modify-category-entry" code nil nil [8054 8087])
-            ("modify-category-entry" code nil nil [8089 8136])
-            ("map-charset-chars" code nil nil [8151 8229])
-            ("map-charset-chars" code nil nil [8230 8308])
-            ("let" code nil nil [8309 8420])
-            ("map-charset-chars" code nil nil [8422 8501])
-            ("map-charset-chars" code nil nil [8502 8581])
-            ("map-charset-chars" code nil nil [8582 8661])
-            ("map-charset-chars" code nil nil [8662 8741])
-            ("map-charset-chars" code nil nil [8742 8821])
-            ("map-charset-chars" code nil nil [8822 8901])
-            ("let" code nil nil [8902 9020])
-            ("map-charset-chars" code nil nil [9035 9113])
-            ("let" code nil nil [9133 9247])
-            ("modify-syntax-entry" code nil nil [9249 9279])
-            ("modify-syntax-entry" code nil nil [9280 9310])
-            ("map-charset-chars" code nil nil [9347 9409])
-            ("map-charset-chars" code nil nil [9411 9486])
-            ("map-charset-chars" code nil nil [9487 9562])
-            ("map-charset-chars" code nil nil [9563 9638])
-            ("map-charset-chars" code nil nil [9639 9714])
-            ("map-charset-chars" code nil nil [9715 9791])
-            ("map-charset-chars" code nil nil [9792 9868])
-            ("map-charset-chars" code nil nil [9869 9945])
-            ("map-charset-chars" code nil nil [9946 10022])
-            ("map-charset-chars" code nil nil [10023 10099])
-            ("map-charset-chars" code nil nil [10100 10176])
-            ("map-charset-chars" code nil nil [10177 10253])
-            ("let" code nil nil [10294 10617])
-            ("let" code nil nil [10644 10859])
-            ("modify-category-entry" code nil nil [10860 10903])
-            ("modify-category-entry" code nil nil [10904 10947])
-            ("modify-category-entry" code nil nil [10948 10993])
-            ("modify-category-entry" code nil nil [10994 11039])
-            ("modify-syntax-entry" code nil nil [11081 11109])
-            ("modify-category-entry" code nil nil [11138 11183])
-            ("modify-category-entry" code nil nil [11184 11229])
-            ("let" code nil nil [11230 11359])
-            ("map-charset-chars" code nil nil [11360 11416])
-            ("modify-syntax-entry" code nil nil [11456 11487])
-            ("modify-syntax-entry" code nil nil [11496 11527])
-            ("modify-syntax-entry" code nil nil [11536 11567])
-            ("modify-syntax-entry" code nil nil [11580 11611])
-            ("modify-syntax-entry" code nil nil [11621 11652])
-            ("modify-category-entry" code nil nil [11743 11786])
-            ("map-charset-chars" code nil nil [11787 11849])
-            ("map-charset-chars" code nil nil [11850 11913])
-            ("modify-category-entry" code nil nil [11937 11980])
-            ("map-charset-chars" code nil nil [11981 12032])
-            ("let" code nil nil [12034 12844])
-            ("modify-category-entry" code nil nil [12878 12921])
-            ("map-charset-chars" code nil nil [12922 12981])
-            ("let" code nil nil [12983 13796])
-            ("modify-category-entry" code nil nil [13824 13867])
-            ("map-charset-chars" code nil nil [13868 13923])
-            ("map-charset-chars" code nil nil [13924 13988])
-            ("let" code nil nil [13990 15138])
-            ("map-charset-chars" code nil nil [15209 15280])
-            ("map-charset-chars" code nil nil [15281 15352])
-            ("map-charset-chars" code nil nil [15354 15425])
-            ("map-charset-chars" code nil nil [15426 15497])
-            ("let" code nil nil [15499 15942])
-            ("let" code nil nil [15956 16622])
-            ("let" code nil nil [16717 17001])
-            ("unicode-property-table-internal" code nil nil [17324 17368])
-            ("unicode-property-table-internal" code nil nil [17369 17416])
-            ("modify-category-entry" code nil nil [17428 17471])
-            ("let" code nil nil [17473 25185])
-            ("let" code nil nil [25187 26718])
-            ("let" code nil nil [26891 28825])
-            ("set-char-table-range" code nil nil [28939 28998])
-            ("set-char-table-range" code nil nil [28999 29058])
-            ("set-char-table-range" code nil nil [29059 29118])
-            ("set-char-table-range" code nil nil [29119 29178])
-            ("set-char-table-range" code nil nil [29179 29238])
-            ("set-char-table-range" code nil nil [29239 29300])
-            ("let" code nil nil [29453 35654])
-            ("let" code nil nil [35705 37864])
-            ("map-charset-chars" code nil nil [38109 38220])
-            ("map-charset-chars" code nil nil [38221 38332])
-            ("cjk-char-width-table-list" variable (:default-value (quote ((ja_JP nil (japanese-jisx0208 (8481 . 10366)) (cp932-2-byte (33088 . 34719))) (zh_CN nil (chinese-gb2312 (8481 . 10622))) (zh_HK nil (big5-hkscs (41280 . 41982) (50848 . 51454))) (zh_TW nil (big5 (41280 . 41982)) (chinese-cns11643-1 (8481 . 17022))) (ko_KR nil (korean-ksc5601 (8481 . 11390)))))) nil [38764 39149])
-            ("use-cjk-char-width-table" function (:arguments ("locale-name")) nil [39281 40086])
-            ("use-default-char-width-table" function nil nil [40088 40331])
-            ("optimize-char-table" code nil nil [40333 40376])
-            ("optimize-char-table" code nil nil [40377 40422])
-            ("if" code nil nil [40456 40624])
-            ("map-charset-chars" code nil nil [40626 40744])
-            ("when" code nil nil [40785 41177])
-            ("optimize-char-table" code nil nil [41179 41226])
-            ("char-acronym-table" variable (:default-value (make-char-table (quote char-acronym-table) nil)) nil [41267 41393])
-            ("let" code nil nil [41395 41740])
-            ("let" code nil nil [41742 42101])
-            ("aset" code nil nil [42103 42143])
-            ("aset" code nil nil [42172 42212])
-            ("aset" code nil nil [42241 42280])
-            ("aset" code nil nil [42303 42342])
-            ("aset" code nil nil [42370 42408])
-            ("aset" code nil nil [42432 42470])
-            ("aset" code nil nil [42495 42533])
-            ("aset" code nil nil [42558 42596])
-            ("aset" code nil nil [42626 42664])
-            ("aset" code nil nil [42694 42732])
-            ("aset" code nil nil [42765 42803])
-            ("aset" code nil nil [42832 42870])
-            ("aset" code nil nil [42899 42936])
-            ("aset" code nil nil [42954 42992])
-            ("aset" code nil nil [43025 43063])
-            ("aset" code nil nil [43097 43136])
-            ("aset" code nil nil [43170 43209])
-            ("aset" code nil nil [43244 43283])
-            ("aset" code nil nil [43311 43350])
-            ("aset" code nil nil [43377 43418])
-            ("aset" code nil nil [43448 43486])
-            ("aset" code nil nil [43522 43560])
-            ("aset" code nil nil [43600 43638])
-            ("aset" code nil nil [43679 43720])
-            ("aset" code nil nil [43750 43791])
-            ("aset" code nil nil [43819 43861])
-            ("aset" code nil nil [43889 43928])
-            ("aset" code nil nil [43957 43999])
-            ("aset" code nil nil [44028 44070])
-            ("aset" code nil nil [44097 44139])
-            ("aset" code nil nil [44170 44212])
-            ("aset" code nil nil [44241 44283])
-            ("aset" code nil nil [44299 44341])
-            ("dotimes" code nil nil [44354 44440])
-            ("aset" code nil nil [44441 44483])
-            ("update-glyphless-char-display" function (:arguments ("variable" "value")) nil [44498 46248])
-            ("glyphless-set-char-table-range" function (:arguments ("chartable" "from" "to" "method")) nil [46250 46529])
-            ("glyphless-char-display-control" variable (:default-value (quote ((format-control . thin-space) (no-font . hex-code)))) nil [46579 49471])
-            ("setq" code nil nil [49503 49589])
-            ("setq" code nil nil [49591 49696]))          
-      :file "characters.el"
-      :pointmax 49772
-      :fsize 50486
-      :lastmodtime '(23525 29558 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("store-substring" function (:arguments ("string" "idx" "obj")) nil [1364 1644])
-            ("truncate-string-ellipsis" variable (:default-value "...") nil [1646 1809])
-            ("truncate-string-to-width" function (:arguments ("str" "end-column" "start-column" "padding" "ellipsis")) nil [1826 4523])
-            ("nested-alist-p" function (:arguments ("obj")) nil [4632 5089])
-            ("set-nested-alist" function (:arguments ("keyseq" "entry" "alist" "len" "branches")) nil [5106 7003])
-            ("lookup-nested-alist" function (:arguments ("keyseq" "alist" "len" "start" "nil-for-too-long")) nil [7020 8760])
-            ("coding-system-post-read-conversion" function (:arguments ("coding-system")) nil [8816 9005])
-            ("coding-system-pre-write-conversion" function (:arguments ("coding-system")) nil [9022 9211])
-            ("coding-system-translation-table-for-decode" function (:arguments ("coding-system")) nil [9228 9433])
-            ("coding-system-translation-table-for-encode" function (:arguments ("coding-system")) nil [9450 9655])
-            ("with-coding-priority" function (:arguments ("coding-systems" "body")) nil [9672 10259])
-            ("put" code nil nil [10326 10373])
-            ("detect-coding-with-priority" function (:arguments ("from" "to" "priority-list")) nil [10390 10780])
-            ("detect-coding-with-language-environment" function (:arguments ("from" "to" "lang-env")) nil [10797 11219])
-            ("declare-function" code nil nil [11221 11291])
-            ("char-displayable-p" function (:arguments ("char")) nil [11308 13222])
-            ("filepos-to-bufferpos--dos" function (:arguments ("byte" "f")) nil [13224 14144])
-            ("filepos-to-bufferpos" function (:arguments ("byte" "quality" "coding-system")) nil [14161 17906])
-            ("bufferpos-to-filepos" function (:arguments ("position" "quality" "coding-system")) nil [17922 21273])
-            ("mule-util" package nil nil [21276 21296]))          
-      :file "mule-util.el"
-      :pointmax 21371
-      :fsize 21372
-      :lastmodtime '(23525 29560 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("quail" include nil nil [2522 2538])
-            ("tit-encode-list" variable (:default-value (quote (("GB" euc-china "Chinese-GB") ("BIG5" cn-big5 "Chinese-BIG5") ("JIS" euc-japan "Japanese") ("KS" euc-kr "Korean")))) nil [2651 2806])
-            ("quail-cxterm-package-ext-info" variable (:default-value (quote (("chinese-4corner" "四角") ("chinese-array30" "30") ("chinese-ccdospy" "缩拼" "Pinyin base input method for Chinese charset GB2312 (`chinese-gb2312').
-
-Pinyin is the standard Roman transliteration method for Chinese.
-For the detail of Pinyin system, see the documentation of the input
-method `chinese-py'.
-
-This input method works almost the same way as `chinese-py'.  The
-difference is that you type a single key for these Pinyin spelling.
-    Pinyin:  zh  en  eng ang ch  an  ao  ai  ong sh  ing  yu(ü)
-    keyseq:   a   f   g   h   i   j   k   l   s   u   y   v
-For example:
-    Chinese:  啊    果    中    文    光    玉    全
-    Pinyin:   a    guo   zhong  wen  guang  yu   quan
-    Keyseq:   a1   guo4   as1   wf4  guh1  yu..6 qvj6
-
-\\<quail-translation-docstring>
-
-For double-width GB2312 characters corresponding to ASCII, use the
-input method `chinese-qj'.") ("chinese-ecdict" "英漢" "In this input method, you enter a Chinese (Big5) character or word
-by typing the corresponding English word.  For example, if you type
-\"computer\", \"電腦\" is input.
-
-\\<quail-translation-docstring>") ("chinese-etzy" "倚注" "Zhuyin base input method for Chinese Big5 characters (`chinese-big5-1',
-`chinese-big5-2').
-
-Zhuyin is a kind of phonetic symbol.  One to three Zhuyin symbols
-compose one Chinese character.
-
-In this input method, you enter a Chinese character by first typing
-keys corresponding to Zhuyin symbols (see the above table) followed by
-SPC, 1, 2, 3, or 4 specifying a tone (SPC:陰平, 1:輕聲, 2:陽平, 3: 上聲,
-4:去聲).
-
-\\<quail-translation-docstring>") ("chinese-punct-b5" "標B" "Input method for Chinese punctuation and symbols of Big5
-(`chinese-big5-1' and `chinese-big5-2').") ("chinese-punct" "标G" "Input method for Chinese punctuation and symbols of GB2312
-(`chinese-gb2312').") ("chinese-py-b5" "拼B" "Pinyin base input method for Chinese Big5 characters
-(`chinese-big5-1', `chinese-big5-2').
-
-This input method works almost the same way as `chinese-py' (which
-see).
-
-This input method supports only Han characters.  The more convenient
-method is `chinese-py-punct-b5', which is the combination of this
-method and `chinese-punct-b5' and which supports both Han characters
-and punctuation/symbols.
-
-For double-width Big5 characters corresponding to ASCII, use the input
-method `chinese-qj-b5'.
-
-The input method `chinese-py' and `chinese-tonepy' are also Pinyin
-based, but for the character set GB2312 (`chinese-gb2312').") ("chinese-qj-b5" "全B") ("chinese-qj" "全G") ("chinese-sw" "首尾" "Radical base input method for Chinese charset GB2312 (`chinese-gb2312').
-
-In this input method, you enter a Chinese character by typing two
-keys.  The first key corresponds to the first (首) radical, the second
-key corresponds to the last (尾) radical.  The correspondence of keys
-and radicals is as below:
-
- first radical:
- a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z
- 心 冖 尸 丶 火 口 扌 氵 讠 艹 亻 木 礻 饣 月 纟 石 王 八 丿 日 辶 犭 竹 一 人
- last radical:
- a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z
- 又 山 土 刀 阝 口 衣 疋 大 丁 厶 灬 十 歹 冂 门 今 丨 女 乙 囗 小 厂 虫 弋 卜
-
-\\<quail-translation-docstring>") ("chinese-tonepy" "调拼" "Pinyin base input method for Chinese charset GB2312 (`chinese-gb2312').
-
-Pinyin is the standard roman transliteration method for Chinese.
-For the details of Pinyin system, see the documentation of the input
-method `chinese-py'.
-
-This input method works almost the same way as `chinese-py'.  The
-difference is that you must type 1..5 after each Pinyin spelling to
-specify a tone (1:阴平, 2:阳平, 3:上声, 4下声, 5:轻声).
-
-\\<quail-translation-docstring>
-
-For instance, to input 你, you type \"n i 3 3\", the first \"n i\" is
-a Pinyin, the next \"3\" specifies tone, and the last \"3\" selects
-the third character from the candidate list.
-
-For double-width GB2312 characters corresponding to ASCII, use the
-input method `chinese-qj'.") ("chinese-zozy" "零注" "Zhuyin base input method for Chinese Big5 characters (`chinese-big5-1',
-`chinese-big5-2').
-
-Zhuyin is a kind of a phonetic symbol.  One to three Zhuyin symbols
-compose a Chinese character.
-
-In this input method, you enter a Chinese character by first typing
-keys corresponding to Zhuyin symbols (see the above table) followed by
-SPC, 6, 3, 4, or 7 specifying a tone (SPC:陰平, 6:陽平, 3:上聲, 4:去聲,
-7:輕聲).
-
-\\<quail-translation-docstring>")))) nil [3422 7866])
-            ("tit-read-key-value" function nil nil [7918 8051])
-            ("tit-make-quail-package-file-name" function (:arguments ("filename" "dirname")) nil [8189 8359])
-            ("tit-dictionary" variable (:default-value t) nil [8422 8447])
-            ("tit-encode" variable nil nil [8448 8471])
-            ("tit-default-encode" variable (:default-value "GB") nil [8472 8504])
-            ("tit-generate-key-bindings" function (:arguments ("keys" "function-symbol")) nil [8634 9213])
-            ("tit-process-header" function (:arguments ("filename")) nil [9325 14195])
-            ("tit-flush-translations" function (:arguments ("key" "translations")) nil [14197 14866])
-            ("tit-process-body" function nil nil [14951 16404])
-            ("titdic-convert" function
-               (:user-visible-flag t
-                :arguments ("filename" "dirname"))
-                nil [16421 18727])
-            ("batch-titdic-convert" function (:arguments ("force")) nil [18744 20657])
-            ("quail-misc-package-ext-info" variable (:default-value (quote (("chinese-b5-tsangchi" "倉B" "cangjie-table.b5" big5 "tsang-b5.el" tsang-b5-converter ";; # Copyright 2001 Christian Wittern <wittern@iis.sinica.edu.tw>
-;; #
-;; # Permission to copy and distribute both modified and
-;; # unmodified versions is granted without royalty provided
-;; # this notice is preserved.") ("chinese-b5-quick" "簡B" "cangjie-table.b5" big5 "quick-b5.el" quick-b5-converter ";; # Copyright 2001 Christian Wittern <wittern@iis.sinica.edu.tw>
-;; #
-;; # Permission to copy and distribute both modified and
-;; # unmodified versions is granted without royalty provided
-;; # this notice is preserved.") ("chinese-cns-tsangchi" "倉C" "cangjie-table.cns" iso-2022-cn-ext "tsang-cns.el" tsang-cns-converter ";; # Copyright 2001 Christian Wittern <wittern@iis.sinica.edu.tw>
-;; #
-;; # Permission to copy and distribute both modified and
-;; # unmodified versions is granted without royalty provided
-;; # this notice is preserved.") ("chinese-cns-quick" "簡C" "cangjie-table.cns" iso-2022-cn-ext "quick-cns.el" quick-cns-converter ";; # Copyright 2001 Christian Wittern <wittern@iis.sinica.edu.tw>
-;; #
-;; # Permission to copy and distribute both modified and
-;; # unmodified versions is granted without royalty provided
-;; # this notice is preserved.") ("chinese-py" "拼G" "pinyin.map" cn-gb-2312 "PY.el" py-converter ";; \"pinyin.map\" is included in a free package called CCE.  It is
-;; available at:
-;;	http://ftp.debian.org/debian/dists/potato/main
-;;		/source/utils/cce_0.36.orig.tar.gz
-;; This package contains the following copyright notice.
-;;
-;;
-;;             Copyright (C) 1999, Rui He, herui@cs.duke.edu
-;;
-;;
-;;                  CCE(Console Chinese Environment) 0.32
-;;
-;; CCE is free software; you can redistribute it and/or modify it under the
-;; terms of the GNU General Public License as published by the Free Software
-;; Foundation; either version 1, or (at your option) any later version.
-;;
-;; CCE is distributed in the hope that it will be useful, but WITHOUT ANY
-;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-;; FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
-;; details.
-;;
-;; You should have received a copy of the GNU General Public License along with
-;; CCE.  If not, see <https://www.gnu.org/licenses/>.") ("chinese-ziranma" "自然" "ziranma.cin" cn-gb-2312 "ZIRANMA.el" ziranma-converter ";; \"ziranma.cin\" is included in a free package called CCE.  It is
-;; available at:
-;;	http://ftp.debian.org/debian/dists/potato/main
-;;		/source/utils/cce_0.36.orig.tar.gz
-;; This package contains the following copyright notice.
-;;
-;;
-;;             Copyright (C) 1999, Rui He, herui@cs.duke.edu
-;;
-;;
-;;                  CCE(Console Chinese Environment) 0.32
-;;
-;; CCE is free software; you can redistribute it and/or modify it under the
-;; terms of the GNU General Public License as published by the Free Software
-;; Foundation; either version 1, or (at your option) any later version.
-;;
-;; CCE is distributed in the hope that it will be useful, but WITHOUT ANY
-;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-;; FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
-;; details.
-;;
-;; You should have received a copy of the GNU General Public License along with
-;; CCE.  If not, see <https://www.gnu.org/licenses/>.") ("chinese-ctlau" "刘粤" "CTLau.html" cn-gb-2312 "CTLau.el" ctlau-gb-converter ";; \"CTLau.html\" is available at:
-;;
-;;   http://umunhum.stanford.edu/~lee/chicomp/CTLau.html
-;;
-;; It contains the following copyright notice:
-;;
-;; # Copyright (C) 1988-2001  Fung Fung Lee (lee@umunhum.stanford.edu)
-;; #
-;; # This program is free software; you can redistribute it and/or
-;; # modify it under the terms of the GNU General Public License
-;; # as published by the Free Software Foundation; either version 2
-;; # of the License, or any later version.
-;; #
-;; # This program is distributed in the hope that it will be useful,
-;; # but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; # GNU General Public License for more details.
-;; #
-;; # You should have received a copy of the GNU General Public License
-;; # along with this program.  If not, see <https://www.gnu.org/licenses/>.") ("chinese-ctlaub" "劉粵" "CTLau-b5.html" big5 "CTLau-b5.el" ctlau-b5-converter ";; \"CTLau-b5.html\" is available at:
-;;
-;;   http://umunhum.stanford.edu/~lee/chicomp/CTLau-b5.html
-;;
-;; It contains the following copyright notice:
-;;
-;; # Copyright (C) 1988-2001  Fung Fung Lee (lee@umunhum.stanford.edu)
-;; #
-;; # This program is free software; you can redistribute it and/or
-;; # modify it under the terms of the GNU General Public License
-;; # as published by the Free Software Foundation; either version 2
-;; # of the License, or any later version.
-;; #
-;; # This program is distributed in the hope that it will be useful,
-;; # but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; # GNU General Public License for more details.
-;; #
-;; # You should have received a copy of the GNU General Public License
-;; # along with this program.  If not, see <https://www.gnu.org/licenses/>.")))) nil [21245 26722])
-            ("tsang-quick-converter" function (:arguments ("dicbuf" "name" "title" "tsang-p" "big5-p")) nil [27160 29956])
-            ("tsang-b5-converter" function (:arguments ("dicbuf" "name" "title")) nil [29958 30052])
-            ("quick-b5-converter" function (:arguments ("dicbuf" "name" "title")) nil [30054 30150])
-            ("tsang-cns-converter" function (:arguments ("dicbuf" "name" "title")) nil [30152 30249])
-            ("quick-cns-converter" function (:arguments ("dicbuf" "name" "title")) nil [30251 30350])
-            ("py-converter" function (:arguments ("dicbuf" "name" "title")) nil [30548 33080])
-            ("ziranma-converter" function (:arguments ("dicbuf" "name" "title")) nil [33279 37252])
-            ("ctlau-converter" function (:arguments ("dicbuf" "name" "title" "description")) nil [37528 39309])
-            ("ctlau-gb-converter" function (:arguments ("dicbuf" "name" "title")) nil [39311 39808])
-            ("ctlau-b5-converter" function (:arguments ("dicbuf" "name" "title")) nil [39810 40304])
-            ("declare-function" code nil nil [40306 40365])
-            ("miscdic-convert" function
-               (:user-visible-flag t
-                :arguments ("filename" "dirname"))
-                nil [40367 43250])
-            ("batch-miscdic-convert" function nil nil [43252 44341]))          
-      :file "titdic-cnv.el"
-      :pointmax 44426
-      :fsize 47651
-      :lastmodtime '(23525 29560 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "quail.el"
-      :fsize 118692
-      :lastmodtime '(23525 29560 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("help-mode" include nil nil [1339 1359])
-            ("print-list" function (:arguments ("args")) nil [1391 1572])
-            ("define-button-type" code nil nil [1587 1805])
-            ("define-button-type" code nil nil [1807 1986])
-            ("list-character-sets" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2003 3647])
-            ("sort-listed-character-sets" function (:arguments ("sort-key")) nil [3649 3913])
-            ("list-character-sets-1" function (:arguments ("sort-key")) nil [3915 5941])
-            ("list-character-sets-2" function nil nil [6015 6856])
-            ("non-iso-charset-alist" variable nil nil [6858 6906])
-            ("make-obsolete-variable" code nil nil [6907 6983])
-            ("charset-history" variable nil nil [7030 7058])
-            ("read-charset" function (:arguments ("prompt" "default-value" "initial-input")) nil [7076 7812])
-            ("list-block-of-chars" function (:arguments ("charset" "row" "min" "max")) nil [8089 8866])
-            ("list-charset-chars" function
-               (:user-visible-flag t
-                :arguments ("charset"))
-                nil [8883 10415])
-            ("describe-character-set" function
-               (:user-visible-flag t
-                :arguments ("charset"))
-                nil [10433 12770])
-            ("graphic-register" variable nil nil [12792 12817])
-            ("print-designation" function (:arguments ("designations")) nil [13061 14137])
-            ("describe-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system"))
-                nil [14154 17391])
-            ("describe-current-coding-system-briefly" function (:user-visible-flag t) nil [17408 19854])
-            ("print-coding-system-briefly" function (:arguments ("coding-system" "doc-string")) nil [19856 21308])
-            ("describe-current-coding-system" function (:user-visible-flag t) nil [21325 25340])
-            ("print-coding-system" function (:arguments ("coding-system")) nil [25342 27216])
-            ("list-coding-systems" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [27233 27604])
-            ("list-coding-systems-1" function (:arguments ("arg")) nil [27606 28997])
-            ("list-coding-categories" function nil nil [29032 29406])
-            ("declare-function" code nil nil [29419 29479])
-            ("describe-font-internal" function (:arguments ("font-info" "ignored")) nil [29481 30511])
-            ("describe-font" function
-               (:user-visible-flag t
-                :arguments ("fontname"))
-                nil [30528 31558])
-            ("print-fontset-element" function (:arguments ("val")) nil [31560 33744])
-            ("declare-function" code nil nil [33746 33818])
-            ("declare-function" code nil nil [33819 33888])
-            ("print-fontset" function (:arguments ("fontset" "print-opened")) nil [33890 36182])
-            ("fontset-alias-alist" variable nil nil [36184 36212])
-            ("declare-function" code nil nil [36213 36259])
-            ("describe-fontset" function
-               (:user-visible-flag t
-                :arguments ("fontset"))
-                nil [36276 37101])
-            ("declare-function" code nil nil [37103 37160])
-            ("list-fontsets" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [37177 38074])
-            ("list-input-methods" function (:user-visible-flag t) nil [38092 38610])
-            ("list-input-methods-1" function nil nil [38612 39764])
-            ("insert-section" function (:arguments ("section-number" "title")) nil [39845 40058])
-            ("mule-diag" function (:user-visible-flag t) nil [40075 42831])
-            ("font-show-log" function
-               (:user-visible-flag t
-                :arguments ("limit"))
-                nil [42848 43683])
-            ("mule-diag" package nil nil [43686 43706]))          
-      :file "mule-diag.el"
-      :pointmax 43735
-      :fsize 43734
-      :lastmodtime '(23525 29559 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!international!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041language\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041language\041semantic.cache"
deleted file mode 100644
index c6b4f34..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041language\041semantic.cache"
+++ /dev/null
@@ -1,451 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("define-coding-system" code nil nil [1278 1632])
-            ("define-coding-system-alias" code nil nil [1634 1697])
-            ("set-language-info-alist" code nil nil [1699 1987])
-            ("set-language-info-alist" code nil nil [1989 2289])
-            ("set-language-info-alist" code nil nil [2291 2564])
-            ("set-language-info-alist" code nil nil [2566 2842])
-            ("set-language-info-alist" code nil nil [2844 3148])
-            ("set-language-info-alist" code nil nil [3150 3405])
-            ("set-language-info-alist" code nil nil [3407 3669])
-            ("set-language-info-alist" code nil nil [3671 3996])
-            ("set-language-info-alist" code nil nil [3998 4281])
-            ("indian-compose-regexp" function (:arguments ("regexp" "table")) nil [4410 4601])
-            ("devanagari-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("a" . "[ऀ-ं]") ("A" . "ः") ("V" . "[ऄ-औॠ-ॡॲ]") ("C" . "[क-हक़-य़ॹ-ॿ]") ("R" . "र") ("n" . "़") ("v" . "[ा-ौॎॕॢ-ॣ]") ("H" . "्") ("s" . "[॑-॒]") ("t" . "[॓-॔]") ("N" . "‌") ("J" . "‍") ("X" . "[ऀ-ॿ]"))))) (indian-compose-regexp (concat "\\(?:RH\\)?Vn?\\(?:J?HR\\)?v*n?a?s?t?A?\\|" "Cn?\\(?:J?HJ?Cn?\\)*\\(?:H[NJ]?\\|v*n?a?s?t?A?\\)\\|" "JHR\\|" "X") table)))
-                nil [4603 5663])
-            ("bengali-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("a" . "ঁ") ("A" . "[ং-ঃ]") ("V" . "[অ-ঔৠ-ৡ]") ("C" . "[ক-হড়-য়ৱ]") ("B" . "[বয-রৰ]") ("R" . "[রৰ]") ("n" . "়") ("v" . "[া-ৌৗৢ-ৣ]") ("H" . "্") ("T" . "ৎ") ("N" . "‌") ("J" . "‍") ("X" . "[ঀ-৿]"))))) (indian-compose-regexp (concat "\\(?:RH\\)?Vn?\\(?:J?HB\\)?v*n?a?A?\\|" "Cn?\\(?:J?HJ?Cn?\\)*\\(?:H[NJ]?\\|v*[NJ]?v?a?A?\\)\\|" "\\(?:RH\\)?T\\|" "JHB\\|" "X") table)))
-                nil [5665 6790])
-            ("gurmukhi-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("a" . "[ਁ-ਂੰ]") ("A" . "ਃ") ("V" . "[ਅ-ਔ]") ("C" . "[ਕ-ਹਖ਼-ਫ਼]") ("Y" . "[ਯ-u0A30ਵਹ]") ("n" . "਼") ("v" . "[ਾ-ੌ]") ("H" . "੍") ("N" . "‌") ("J" . "‍") ("X" . "[਀-੿]"))))) (indian-compose-regexp (concat "Cn?\\(?:J?HJ?Cn?\\)*\\(?:H[NJ]?\\|v*n?a?A?\\)\\|" "Vn?\\(?:J?HY\\)?v*n?a?A?\\|" "JHY\\|" "X") table)))
-                nil [6792 7726])
-            ("gujarati-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("a" . "[ઁ-ં]") ("A" . "ઃ") ("V" . "[અ-ઔૠ-ૡ]") ("C" . "[ક-હ]") ("R" . "ર") ("n" . "઼") ("v" . "[ા-ૌૢ-ૣ]") ("H" . "્") ("N" . "‌") ("J" . "‍") ("X" . "[઀-૿]"))))) (indian-compose-regexp (concat "\\(?:RH\\)?Vn?\\(?:J?HR\\)?v*n?a?A?\\|" "Cn?\\(?:J?HJ?Cn?\\)*\\(?:H[NJ]?\\|v*n?a?A?\\)\\|" "JHR\\|" "X") table)))
-                nil [7728 8646])
-            ("oriya-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("a" . "ଁ") ("A" . "[ଂ-ଃ]") ("V" . "[ଅ-ଔୠ-ୡ]") ("C" . "[କ-ହଡ଼-ଢ଼ୱ]") ("B" . "[କ-ଗଛ-ଝଟ-ଡଣ-ତଧ-ରଲ-ଵସ-ହ]") ("R" . "ର") ("n" . "଼") ("v" . "[ା-ୌୖ-ୗୢ-ୣ]") ("H" . "୍") ("N" . "‌") ("J" . "‍") ("X" . "[଀-୿]"))))) (indian-compose-regexp (concat "\\(?:RH\\)?Vn?\\(?:J?HB\\)?v*n?a?A?\\|" "Cn?\\(?:J?HJ?Cn?\\)*\\(?:H[NJ]?\\|v*n?a?A?\\)\\|" "JHB\\|" "X") table)))
-                nil [8648 9728])
-            ("tamil-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("a" . "ஂ") ("V" . "[அ-ஔ]") ("C" . "[க-ஹ]") ("v" . "[ா-ௌௗ]") ("H" . "்") ("N" . "‌") ("J" . "‍") ("X" . "[஀-௿]"))))) (indian-compose-regexp (concat "C\\(?:J?HJ?C\\)*\\(?:H[NJ]?\\|v*a?\\)\\|" "Vv*a?\\|" "X") table)))
-                nil [9730 10416])
-            ("telugu-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("a" . "[ఁ-ః]") ("V" . "[అ-ఔౠ-ౡ]") ("C" . "[క-హౘ-ౙ]") ("v" . "[ా-ౌౕ-ౖౢ-ౣ]") ("H" . "్") ("N" . "‌") ("J" . "‍") ("X" . "[ఀ-౿]"))))) (indian-compose-regexp (concat "C\\(?:J?HJ?C\\)*\\(?:H[NJ]?\\|v*a?\\)\\|" "V\\(?:J?HC\\)?v*a?\\|" "JHC\\|" "X") table)))
-                nil [10418 11238])
-            ("kannada-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("A" . "[ಂ-ಃ]") ("V" . "[ಅ-ಔೠ-ೡ]") ("C" . "[ಕ-ಹೞ]") ("R" . "ರ") ("n" . "಼") ("v" . "[ಾ-ೌೕ-ೖೢ-ೣ]") ("H" . "್") ("N" . "‌") ("J" . "‍") ("X" . "[ಀ-೿]"))))) (indian-compose-regexp (concat "\\(?:RH\\)?Vn?\\(?:J?HC\\)?v?A?\\|" "Cn?\\(?:J?HJ?Cn?\\)*\\(?:H[NJ]?\\|v*n?A?\\)\\|" "JHC\\|" "X") table)))
-                nil [11240 12130])
-            ("malayalam-composable-pattern" variable
-               (:constant-flag t
-                :default-value (let ((table (quote (("A" . "[ം-ഃ]") ("V" . "[അ-ഔൠ-ൡ]") ("C" . "[ക-ഹ]") ("Y" . "[യ-രലവ]") ("v" . "[ാ-ൌൗൢ-ൣ]") ("H" . "്") ("N" . "‌") ("J" . "‍") ("X" . "[ഀ-ൿ]"))))) (indian-compose-regexp (concat "C\\(?:J?HJ?C\\)*\\(?:H[NJ]?\\|v?A?\\)\\|" "V\\(?:J?HY\\)?v*?A?\\|" "JHY\\|" "X") table)))
-                nil [12132 13020])
-            ("let" code nil nil [13022 13693])
-            ("indian" package nil nil [13695 13712]))          
-      :file "indian.el"
-      :pointmax 13738
-      :fsize 13761
-      :lastmodtime '(23525 29562 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("setup-japanese-environment-internal" function nil nil [1129 1483])
-            ("japanese-kana-table" variable
-               (:constant-flag t
-                :default-value (quote ((12354 12450 65393) (12356 12452 65394) (12358 12454 65395) (12360 12456 65396) (12362 12458 65397) (12363 12459 65398) (12365 12461 65399) (12367 12463 65400) (12369 12465 65401) (12371 12467 65402) (12373 12469 65403) (12375 12471 65404) (12377 12473 65405) (12379 12475 65406) (12381 12477 65407) (12383 12479 65408) (12385 12481 65409) (12388 12484 65410) (12390 12486 65411) (12392 12488 65412) (12394 12490 65413) (12395 12491 65414) (12396 12492 65415) (12397 12493 65416) (12398 12494 65417) (12399 12495 65418) (12402 12498 65419) (12405 12501 65420) (12408 12504 65421) (12411 12507 65422) (12414 12510 65423) (12415 12511 65424) (12416 12512 65425) (12417 12513 65426) (12418 12514 65427) (12420 12516 65428) (12422 12518 65429) (12424 12520 65430) (12425 12521 65431) (12426 12522 65432) (12427 12523 65433) (12428 12524 65434) (12429 12525 65435) (12431 12527 65436) (12432 12528 "イ") (12433 12529 "エ") (12434 12530 65382) (12435 12531 65437) (12364 12460 "ガ") (12366 12462 "ギ") (12368 12464 "グ") (12370 12466 "ゲ") (12372 12468 "ゴ") (12374 12470 "ザ") (12376 12472 "ジ") (12378 12474 "ズ") (12380 12476 "ゼ") (12382 12478 "ゾ") (12384 12480 "ダ") (12386 12482 "ヂ") (12389 12485 "ヅ") (12391 12487 "デ") (12393 12489 "ド") (12400 12496 "バ") (12403 12499 "ビ") (12406 12502 "ブ") (12409 12505 "ベ") (12412 12508 "ボ") (12401 12497 "パ") (12404 12500 "ピ") (12407 12503 "プ") (12410 12506 "ペ") (12413 12509 "ポ") (12353 12449 65383) (12355 12451 65384) (12357 12453 65385) (12359 12455 65386) (12361 12457 65387) (12387 12483 65391) (12419 12515 65388) (12421 12517 65389) (12423 12519 65390) (12430 12526 "ワ") (12445 12541) (12446 12542) ("う゛" 12532 "ヴ") (nil 12533 "カ") (nil 12534 "ケ"))))
-                nil [1485 2850])
-            ("let" code nil nil [2968 4116])
-            ("japanese-symbol-table" variable
-               (:constant-flag t
-                :default-value (quote ((12288 32) (65292 44 65380) (65294 46 65377) (12289 44 65380) (12290 46 65377) (12539 nil 65381) (65306 58) (65307 59) (65311 63) (65281 33) (12443 nil 65438) (12444 nil 65439) (180 39) (65344 96) (65342 94) (65343 95) (12540 45 65392) (8212 45) (8208 45) (65295 47) (65340 92) (12316 126) (65372 124) (8216 96) (8217 39) (8220 34) (8221 34) (65288 40) (65289 41) (65339 91) (65341 93) (65371 123) (65373 125) (12296 60) (12297 62) (12300 nil 65378) (12301 nil 65379) (65291 43) (8722 45) (65309 61) (65308 60) (65310 62) (8242 39) (8243 34) (65509 92) (65284 36) (65285 37) (65283 35) (65286 38) (65290 42) (65312 64) (8213 45) (65374 126) (65293 45))))
-                nil [4118 4954])
-            ("let" code nil nil [5082 5637])
-            ("japanese-alpha-numeric-table" variable
-               (:constant-flag t
-                :default-value (quote ((65296 . 48) (65297 . 49) (65298 . 50) (65299 . 51) (65300 . 52) (65301 . 53) (65302 . 54) (65303 . 55) (65304 . 56) (65305 . 57) (65313 . 65) (65314 . 66) (65315 . 67) (65316 . 68) (65317 . 69) (65318 . 70) (65319 . 71) (65320 . 72) (65321 . 73) (65322 . 74) (65323 . 75) (65324 . 76) (65325 . 77) (65326 . 78) (65327 . 79) (65328 . 80) (65329 . 81) (65330 . 82) (65331 . 83) (65332 . 84) (65333 . 85) (65334 . 86) (65335 . 87) (65336 . 88) (65337 . 89) (65338 . 90) (65345 . 97) (65346 . 98) (65347 . 99) (65348 . 100) (65349 . 101) (65350 . 102) (65351 . 103) (65352 . 104) (65353 . 105) (65354 . 106) (65355 . 107) (65356 . 108) (65357 . 109) (65358 . 110) (65359 . 111) (65360 . 112) (65361 . 113) (65362 . 114) (65363 . 115) (65364 . 116) (65365 . 117) (65366 . 118) (65367 . 119) (65368 . 120) (65369 . 121) (65370 . 122))))
-                nil [5639 6531])
-            ("let" code nil nil [6656 6916])
-            ("japanese-string-conversion" function (:arguments ("str" "func" "args")) nil [6979 7216])
-            ("japanese-katakana" function (:arguments ("obj" "hankaku")) nil [7233 7848])
-            ("japanese-hiragana" function (:arguments ("obj")) nil [7865 8216])
-            ("japanese-hankaku" function (:arguments ("obj" "ascii-only")) nil [8233 8756])
-            ("japanese-zenkaku" function (:arguments ("obj")) nil [8773 9123])
-            ("japanese-replace-region" function (:arguments ("from" "to" "string")) nil [9125 9297])
-            ("japanese-katakana-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "hankaku"))
-                nil [9314 10238])
-            ("japanese-hiragana-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to"))
-                nil [10256 11020])
-            ("japanese-hankaku-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "ascii-only"))
-                nil [11037 11806])
-            ("japanese-zenkaku-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "katakana-only"))
-                nil [11823 12867])
-            ("read-hiragana-string" function (:arguments ("prompt" "initial-input")) nil [12884 13168])
-            ("japan-util" package nil nil [13173 13194]))          
-      :file "japan-util.el"
-      :pointmax 13224
-      :fsize 15809
-      :lastmodtime '(23525 29562 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("robin" include nil nil [1300 1316])
-            ("exit-ethiopic-environment-data" variable nil nil [1367 1410])
-            ("setup-ethiopic-environment-internal" function nil nil [1427 2538])
-            ("exit-ethiopic-environment" function nil nil [2540 3008])
-            ("ethio-primary-language" variable (:default-value (quote tigrigna)) nil [3453 3633])
-            ("ethio-secondary-language" variable (:default-value (quote english)) nil [3635 3818])
-            ("ethio-use-colon-for-colon" variable nil nil [3820 4067])
-            ("ethio-use-three-dot-question" variable nil nil [4069 4358])
-            ("ethio-quote-vowel-always" variable nil nil [4360 4603])
-            ("ethio-W-sixth-always" variable nil nil [4605 4757])
-            ("ethio-numeric-reduction" variable nil nil [4759 5125])
-            ("ethio-java-save-lowercase" variable nil nil [5127 5272])
-            ("ethio-prefer-amharic-p" function nil nil [5274 5450])
-            ("ethio-prefer-amharic" function (:arguments ("arg")) nil [5452 5907])
-            ("ethio-use-colon-for-colon" function (:arguments ("arg")) nil [5909 6222])
-            ("ethio-use-three-dot-question" function (:arguments ("arg")) nil [6224 6487])
-            ("ethio-adjust-robin" function nil nil [6489 6686])
-            ("add-hook" code nil nil [6688 6739])
-            ("ethio-sera-to-fidel-buffer" function
-               (:user-visible-flag t
-                :arguments ("secondary" "force"))
-                nil [6780 7462])
-            ("ethio-sera-being-called-by-w3" variable nil nil [7534 7572])
-            ("sera-being-called-by-w3" variable nil nil [7633 7665])
-            ("ethio-sera-to-fidel-region" function
-               (:user-visible-flag t
-                :arguments ("begin" "end" "secondary" "force"))
-                nil [7682 9604])
-            ("ethio-sera-to-fidel-region-noethio" function nil nil [9606 10427])
-            ("ethio-sera-to-fidel-region-ethio" function (:arguments ("lang")) nil [10429 12405])
-            ("ethio-process-language-flag" function nil nil [12407 13781])
-            ("ethio-flag-to-language" function (:arguments ("flag")) nil [13783 14021])
-            ("ethio-process-digits" function nil nil [14023 14755])
-            ("ethio-sera-to-fidel-marker" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [14772 15434])
-            ("ethio-language-to-flag" function (:arguments ("lang")) nil [15460 15607])
-            ("ethio-fidel-to-sera-buffer" function
-               (:user-visible-flag t
-                :arguments ("secondary" "force"))
-                nil [15624 16396])
-            ("ethio-fidel-to-sera-region" function
-               (:user-visible-flag t
-                :arguments ("begin" "end" "secondary" "force"))
-                nil [16413 19920])
-            ("ethio-fidel-to-sera-marker" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [19937 20538])
-            ("ethio-modify-vowel" function (:user-visible-flag t) nil [20584 21138])
-            ("ethio-get-consonant" function (:arguments ("ch")) nil [21140 21571])
-            ("ethio-replace-space" function
-               (:user-visible-flag t
-                :arguments ("ch" "begin" "end"))
-                nil [21616 23537])
-            ("ethio-input-special-character" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [23610 23940])
-            ("ethio-fidel-to-tex-buffer" function (:user-visible-flag t) nil [23979 25206])
-            ("ethio-tex-to-fidel-buffer" function (:user-visible-flag t) nil [25223 25869])
-            ("ethio-fidel-to-java-buffer" function nil nil [25909 26443])
-            ("ethio-java-to-fidel-buffer" function nil nil [26460 26880])
-            ("ethio-find-file" function nil nil [26922 27845])
-            ("ethio-write-file" function nil nil [27862 28914])
-            ("ethio-record-user-preference" function nil nil [28916 29070])
-            ("ethio-prefer-ascii-space" variable (:default-value t) nil [29122 29157])
-            ("make-variable-buffer-local" code nil nil [29158 29212])
-            ("ethio-toggle-space" function (:user-visible-flag t) nil [29214 29392])
-            ("ethio-insert-space" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [29394 30273])
-            ("ethio-insert-ethio-space" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [30290 30478])
-            ("ethio-composition-function" function (:arguments ("pos" "to" "font-object" "string")) nil [30516 30957])
-            ("ethio-gemination" function (:user-visible-flag t) nil [30998 31485])
-            ("robin-define-package" code nil nil [31515 39574])
-            ("register-input-method" code nil nil [39576 39684])
-            ("robin-define-package" code nil nil [39686 48257])
-            ("ethio-util" package nil nil [48389 48410]))          
-      :file "ethio-util.el"
-      :pointmax 48440
-      :fsize 51016
-      :lastmodtime '(23525 29561 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("default-korean-keyboard" variable (:default-value (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" ""))) nil [1094 1304])
-            ("toggle-korean-input-method" function (:user-visible-flag t) nil [1349 1614])
-            ("quail-hangul-switch-symbol-ksc" function
-               (:user-visible-flag t
-                :arguments ("ignore"))
-                nil [1616 1949])
-            ("quail-hangul-switch-hanja" function
-               (:user-visible-flag t
-                :arguments ("ignore"))
-                nil [1951 2314])
-            ("isearch-toggle-korean-input-method" function nil nil [2378 2665])
-            ("isearch-hangul-switch-symbol-ksc" function nil nil [2667 2956])
-            ("isearch-hangul-switch-hanja" function nil nil [2958 3237])
-            ("korean-key-bindings" variable (:default-value (\` ((global [33554464] toggle-korean-input-method nil) (global [Hangul] toggle-korean-input-method nil) (global [C-f9] quail-hangul-switch-symbol-ksc nil) (global [f9] hangul-to-hanja-conversion nil) (global [Hangul_Hanja] hangul-to-hanja-conversion nil) ((\, isearch-mode-map) [33554464] isearch-toggle-korean-input-method nil) ((\, isearch-mode-map) [Hangul] isearch-toggle-korean-input-method nil) ((\, isearch-mode-map) [C-f9] isearch-hangul-switch-symbol-ksc nil) ((\, isearch-mode-map) [f9] isearch-hangul-switch-hanja nil)))) nil [3298 3867])
-            ("setup-korean-environment-internal" function nil nil [3884 4433])
-            ("exit-korean-environment" function nil nil [4435 4980])
-            ("korea-util" package nil nil [4985 5006]))          
-      :file "korea-util.el"
-      :pointmax 5036
-      :fsize 5035
-      :lastmodtime '(23525 29562 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("set-language-info-alist" code nil nil [1115 1309])
-            ("burmese-composable-pattern" variable (:default-value (let ((table (quote (("K" . "[ငၚ]်္") ("C" . "[က-ဪဿ၁-၉၎ၚ-ၝၡၥ-ၦၮၱၵႁႎꩠ-ꩯꩱ-ꩶ]") ("V" . "္") ("A" . "်") ("S" . "[က-မလသဠအၚ]") ("M" . "[ျ-ှEE-F0]") ("v" . "[ါ-်ြ-ှၢ-ၤၧ-ၭၱ-ၴႂ-ႍႏႚႜꩰ]")))) (regexp "\\(K\\)?C\\(VS\\)?\\(VS\\)?A?M*v*")) (let ((case-fold-search nil)) (dolist (elt table) (setq regexp (replace-regexp-in-string (car elt) (cdr elt) regexp t t)))) regexp)) nil [1311 2131])
-            ("let" code nil nil [2133 2399]))          
-      :file "burmese.el"
-      :pointmax 2400
-      :fsize 2433
-      :lastmodtime '(23525 29561 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("iso2022-gb-designation" variable (:default-value "$A") nil [2183 2221])
-            ("hz-gb-designation" variable (:default-value "~{") nil [2265 2296])
-            ("iso2022-ascii-designation" variable (:default-value "(B") nil [2345 2386])
-            ("hz-ascii-designation" variable (:default-value "~}") nil [2429 2463])
-            ("zw-start-gb" variable (:default-value "^zW") nil [2506 2532])
-            ("hz/zw-start-gb" variable (:default-value (concat hz-gb-designation "\\|" zw-start-gb "\\|[^�-]")) nil [2600 2686])
-            ("decode-hz-line-continuation" variable nil nil [2688 2799])
-            ("hz-set-msb-table" variable
-               (:constant-flag t
-                :default-value (eval-when-compile (let ((chars nil) (i 0)) (while (< i 33) (push i chars) (setq i (1+ i))) (while (< i 127) (push (decode-char (quote eight-bit) (+ i 128)) chars) (setq i (1+ i))) (apply (quote string) (nreverse chars)))))
-                nil [2801 3068])
-            ("decode-hz-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [3085 4101])
-            ("decode-hz-buffer" function (:user-visible-flag t) nil [4118 4259])
-            ("hz-category-table" variable nil nil [4261 4291])
-            ("encode-hz-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [4308 5992])
-            ("encode-hz-buffer" function (:user-visible-flag t) nil [6009 6146])
-            ("post-read-decode-hz" function (:arguments ("len")) nil [6163 6382])
-            ("pre-write-encode-hz" function (:arguments ("from" "to")) nil [6399 6684])
-            ("china-util" package nil nil [6688 6709]))          
-      :file "china-util.el"
-      :pointmax 6739
-      :fsize 6738
-      :lastmodtime '(23525 29561 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("define-coding-system" code nil nil [1369 1569])
-            ("define-coding-system-alias" code nil nil [1571 1628])
-            ("define-coding-system-alias" code nil nil [1724 1783])
-            ("define-coding-system-alias" code nil nil [1784 1843])
-            ("set-language-info-alist" code nil nil [1845 2240])
-            ("set-language-info-alist" code nil nil [2242 2465])
-            ("define-coding-system" code nil nil [2467 2660])
-            ("define-coding-system-alias" code nil nil [2661 2711])
-            ("define-coding-system" code nil nil [2713 2859])
-            ("define-coding-system-alias" code nil nil [2860 2903])
-            ("hebrew-font-get-precomposed" function (:arguments ("font-object")) nil [3006 4523])
-            ("hebrew-shape-gstring" function (:arguments ("gstring")) nil [5087 9050])
-            ("let*" code nil nil [9052 9796])
-            ("hebrew" package nil nil [9798 9815]))          
-      :file "hebrew.el"
-      :pointmax 9841
-      :fsize 9844
-      :lastmodtime '(23525 29562 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("define-coding-system" code nil nil [3787 3997])
-            ("define-coding-system-alias" code nil nil [3999 4054])
-            ("set-language-info-alist" code nil nil [4056 4405])
-            ("tibetan-composable-pattern" variable
-               (:constant-flag t
-                :default-value "[ཀ-ཀྵཪ][ྐ-ྐྵྺྻྼ]*[཰����ཱི-྄ཱཽྀྀ]*[ཾྂྃ྆-ྋ༙༵༷]*")
-                nil [4788 4934])
-            ("tibetan-consonant-transcription-alist" variable
-               (:constant-flag t
-                :default-value (quote (("tsh" . "ཚ") ("dzh" . "ཛྷ") ("kSH" . "ཀྵ") ("kh" . "ཁ") ("gh" . "གྷ") ("ng" . "ང") ("ch" . "ཆ") ("ny" . "ཉ") ("TH" . "ཋ") ("DH" . "ཌྷ") ("th" . "ཐ") ("dh" . "དྷ") ("ph" . "ཕ") ("bh" . "བྷ") ("ts" . "ཙ") ("dz" . "ཛ") ("zh" . "ཞ") ("sh" . "ཤ") ("SH" . "ཥ") ("k" . "ཀ") ("g" . "ག") ("c" . "ཅ") ("j" . "ཇ") ("T" . "ཊ") ("D" . "ཌ") ("N" . "ཎ") ("t" . "ཏ") ("d" . "ད") ("n" . "ན") ("p" . "པ") ("b" . "བ") ("m" . "མ") ("w" . "ཝ") ("z" . "ཟ") ("'" . "འ") ("y" . "ཡ") ("r" . "ར") ("l" . "ལ") ("s" . "ས") ("h" . "ཧ") ("H" . "ཧ") ("A" . "ཨ") ("R" . "ཪ"))))
-                nil [5082 5900])
-            ("tibetan-vowel-transcription-alist" variable
-               (:constant-flag t
-                :default-value (quote (("frr" . "ཷ") ("fll" . "ཹ") ("fa" . "ཱ") ("fi" . "ཱི") ("fu" . "ཱུ") ("fr" . "ྲྀ") ("fl" . "ླྀ") ("fI" . "ཱྀ") ("ai" . "ཻ") ("au" . "ཽ") ("ee" . "ཻ") ("oo" . "ཽ") ("a" . "����") ("i" . "ི") ("u" . "ུ") ("e" . "ེ") ("o" . "ོ") ("E" . "ཻ") ("O" . "ཽ") ("I" . "ྀ") ("," . "྄"))))
-                nil [5903 6434])
-            ("tibetan-modifier-transcription-alist" variable
-               (:constant-flag t
-                :default-value (quote (("M" . "ཾ") ("~" . "ྂ") ("`" . "ྃ") ("x" . "ྈ") ("X" . "ྉ") ("v" . "྆") ("V" . "྇") ("q" . "ྊ") ("Q" . "ྋ") ("_/" . "༙") ("_o" . "༷") ("_O" . "༵"))))
-                nil [6436 6679])
-            ("tibetan-precomposed-transcription-alist" variable
-               (:constant-flag t
-                :default-value (quote (("phyw" . "����") ("tshw" . "����") ("rtsw" . "����") ("khw" . "����") ("nyw" . "����") ("tsw" . "����") ("zhw" . "����") ("shw" . "����") ("khy" . "����") ("phy" . "����") ("khr" . "����") ("thr" . "����") ("phr" . "����") ("shr" . "����") ("dzr" . "����") ("grw" . "����") ("rng" . "����") ("rny" . "����") ("rts" . "����") ("rdz" . "����") ("rgw" . "����") ("rky" . "����") ("rgy" . "����") ("rmy" . "����") ("lng" . "����") ("sng" . "����") ("sny" . "����") ("sts" . "����") ("sky" . "����") ("sgy" . "����") ("spy" . "����") ("sby" . "����") ("smy" . "����") ("skr" . "����") ("sgr" . "����") ("snr" . "����") ("spr" . "����") ("sbr" . "����") ("smr" . "����") ("kw" . "����") ("gw" . "����") ("cw" . "����") ("tw" . "����") ("dw" . "����") ("zw" . "����") ("rw" . "����") ("lw" . "����") ("sw" . "����") ("hw" . "����") ("ky" . "����") ("gy" . "����") ("py" . "����") ("by" . "����") ("my" . "����") ("kr" . "����") ("gr" . "����") ("tr" . "����") ("dr" . "����") ("pr" . "����") ("brk" . "བ����") ("brg" . "བ����") ("brng" . "བ����") ("brj" . "བ����") ("brny" . "བ����") ("brt" . "བ����") ("brd" . "བ����") ("brn" . "བ����") ("brts" . "བ����") ("brdz" . "བ����") ("brl" . "བ����") ("br" . "����") ("mr" . "����") ("sr" . "����") ("hr" . "����") ("jr" . "����") ("kl" . "����") ("gl" . "����") ("blt" . "བ����") ("bld" . "བ����") ("bl" . "����") ("zl" . "����") ("rl" . "����") ("sl" . "����") ("rk" . "����") ("rg" . "����") ("rj" . "����") ("rt" . "����") ("rd" . "����") ("rn" . "����") ("rb" . "����") ("rm" . "����") ("lk" . "����") ("lg" . "����") ("lc" . "����") ("lj" . "����") ("lt" . "����") ("ld" . "����") ("ln" . "����") ("lp" . "����") ("lb" . "����") ("lh" . "����") ("sk" . "����") ("sg" . "����") ("st" . "����") ("sd" . "����") ("sn" . "����") ("sp" . "����") ("sb" . "����") ("sm" . "����"))))
-                nil [6681 8678])
-            ("tibetan-subjoined-transcription-alist" variable
-               (:constant-flag t
-                :default-value (sort (quote (("+k" . "ྐ") ("+kh" . "ྑ") ("+g" . "ྒ") ("+gh" . "ྒྷ") ("+ng" . "ྔ") ("+c" . "ྕ") ("+ch" . "ྖ") ("+j" . "ྗ") ("+ny" . "ྙ") ("+T" . "ྚ") ("+TH" . "ྛ") ("+D" . "ྜ") ("+DH" . "ྜྷ") ("+N" . "ྞ") ("+t" . "ྟ") ("+th" . "ྠ") ("+d" . "ྡ") ("+dh" . "ྡྷ") ("+n" . "ྣ") ("+p" . "ྤ") ("+ph" . "ྥ") ("+b" . "ྦ") ("+bh" . "ྦྷ") ("+m" . "ྨ") ("+ts" . "ྩ") ("+tsh" . "ྪ") ("+dz" . "ྫ") ("+dzh" . "ྫྷ") ("+w" . "ྭ") ("+zh" . "ྮ") ("+z" . "ྯ") ("+'" . "ྰ") ("+y" . "ྱ") ("+r" . "ྲ") ("+l" . "ླ") ("+sh" . "ྴ") ("+SH" . "ྵ") ("+s" . "ྶ") ("+h" . "ྷ") ("+A" . "ྸ") ("+kSH" . "ྐྵ") ("+W" . "ྺ") ("+Y" . "ྻ") ("+R" . "ྼ"))) (lambda (x y) (> (length (car x)) (length (car y))))))
-                nil [8681 9665])
-            ("tibetan-base-to-subjoined-alist" variable
-               (:constant-flag t
-                :default-value (quote (("ཀ" . "ྐ") ("ཁ" . "ྑ") ("ག" . "ྒ") ("གྷ" . "ྒྷ") ("ང" . "ྔ") ("ཅ" . "ྕ") ("ཆ" . "ྖ") ("ཇ" . "ྗ") ("ཉ" . "ྙ") ("ཊ" . "ྚ") ("ཋ" . "ྛ") ("ཌ" . "ྜ") ("ཌྷ" . "ྜྷ") ("ཎ" . "ྞ") ("ཏ" . "ྟ") ("ཐ" . "ྠ") ("ད" . "ྡ") ("དྷ" . "ྡྷ") ("ན" . "ྣ") ("པ" . "ྤ") ("ཕ" . "ྥ") ("བ" . "ྦ") ("བྷ" . "ྦྷ") ("མ" . "ྨ") ("ཙ" . "ྩ") ("ཚ" . "ྪ") ("ཛ" . "ྫ") ("ཛྷ" . "ྫྷ") ("ཝ" . "ྭ") ("ཞ" . "ྮ") ("ཟ" . "ྯ") ("འ" . "ྰ") ("ཡ" . "ྱ") ("ར" . "ྲ") ("ལ" . "ླ") ("ཤ" . "ྴ") ("ཥ" . "ྵ") ("ས" . "ྶ") ("ཧ" . "ྷ") ("ཨ" . "ྸ") ("ཀྵ" . "ྐྵ") ("ཪ" . "ྼ"))))
-                nil [9748 10535])
-            ("tibetan-composite-vowel-alist" variable
-               (:constant-flag t
-                :default-value (quote (("ཱི" 3953 (tc . bc) 3954) ("ཱུ" 3953 (bc . tc) 3956) ("ྲྀ" 4018 (tc . bc) 3968) ("ཷ" 4018 (bc . tc) 3953 (tc . bc) 3968) ("ླྀ" 4019 (tc . bc) 3968) ("ཹ" 4019 (bc . tc) 3953 (tc . bc) 3968) ("ཱྀ" 3953 (tc . bc) 3968))))
-                nil [10652 11106])
-            ("tibetan-precomposition-rule-alist" variable
-               (:constant-flag t
-                :default-value (\` (("ཕྱྭ" . "����") ("གྲྭ" . "����") ("ཚྭ" . "����") ("རྩྭ" . "����") ("རྒྭ" . "����") ("རྐྱ" . "����") ("རྒྱ" . "����") ("རྨྱ" . "����") ("སྐྱ" . "����") ("སྒྱ" . "����") ("སྤྱ" . "����") ("སྦྱ" . "����") ("སྨྱ" . "����") ("སྐྲ" . "����") ("སྒྲ" . "����") ("སྣྲ" . "����") ("སྤྲ" . "����") ("སྦྲ" . "����") ("སྨྲ" . "����") ("ཁྭ" . "����") ("ཉྭ" . "����") ("ཙྭ" . "����") ("ཞྭ" . "����") ("ཤྭ" . "����") ("ཁྱ" . "����") ("ཕྱ" . "����") ("ཁྲ" . "����") ("ཐྲ" . "����") ("ཕྲ" . "����") ("ཤྲ" . "����") ("ཛྲ" . "����") ("རྔ" . "����") ("རྙ" . "����") ("རྩ" . "����") ("རྫ" . "����") ("ལྔ" . "����") ("སྔ" . "����") ("སྙ" . "����") ("སྩ" . "����") ("ཀྭ" . "����") ("གྭ" . "����") ("ཅྭ" . "����") ("ཏྭ" . "����") ("དྭ" . "����") ("ཟྭ" . "����") ("རྭ" . "����") ("ལྭ" . "����") ("སྭ" . "����") ("ཧྭ" . "����") ("ཀྱ" . "����") ("གྱ" . "����") ("པྱ" . "����") ("བྱ" . "����") ("མྱ" . "����") ("ཀྲ" . "����") ("གྲ" . "����") ("ཏྲ" . "����") ("དྲ" . "����") ("པྲ" . "����") ("བྲ" . "����") ("མྲ" . "����") ("སྲ" . "����") ("ཧྲ" . "����") ("ཇྲ" . "����") ("ཀླ" . "����") ("གླ" . "����") ("བླ" . "����") ("ཟླ" . "����") ("རླ" . "����") ("སླ" . "����") ("རྐ" . "����") ("རྒ" . "����") ("རྗ" . "����") ("རྟ" . "����") ("རྡ" . "����") ("རྣ" . "����") ("རྦ" . "����") ("རྨ" . "����") ("ལྐ" . "����") ("ལྒ" . "����") ("ལྣ" . "����") ("ལྕ" . "����") ("ལྗ" . "����") ("ལྟ" . "����") ("ལྡ" . "����") ("ལྤ" . "����") ("ལྦ" . "����") ("ལྷ" . "����") ("སྐ" . "����") ("སྒ" . "����") ("སྟ" . "����") ("སྡ" . "����") ("སྣ" . "����") ("སྤ" . "����") ("སྦ" . "����") ("སྨ" . "����"))))
-                nil [11246 12997])
-            ("tibetan-regexp" variable
-               (:constant-flag t
-                :default-value (let ((l (list tibetan-precomposed-transcription-alist tibetan-consonant-transcription-alist tibetan-vowel-transcription-alist tibetan-modifier-transcription-alist tibetan-subjoined-transcription-alist)) (separator "\\|") tail pattern) (while l (setq tail (car l) l (cdr l)) (while tail (setq pattern (cons separator (cons (car (car tail)) pattern)) tail (cdr tail)))) (apply (quote concat) (nreverse (cdr pattern)))))
-                nil [12999 13695])
-            ("tibetan-precomposed-regexp" variable (:default-value (purecopy (let ((l tibetan-precomposed-transcription-alist) temp) (setq temp "^\\(") (setq temp (concat temp (car (car l)))) (setq l (cdr l)) (while l (setq temp (concat temp "\\|" (car (car l)))) (setq l (cdr l))) (concat temp "\\)")))) nil [13697 14230])
-            ("tibetan-precomposition-rule-regexp" variable (:default-value (purecopy (let ((l tibetan-precomposition-rule-alist) temp) (setq temp "\\(") (setq temp (concat temp (car (car l)))) (setq l (cdr l)) (while l (setq temp (concat temp "\\|" (car (car l)))) (setq l (cdr l))) (concat temp "\\)")))) nil [14232 14884])
-            ("tibetan-decomposed" variable nil nil [14886 14917])
-            ("tibetan-decomposed-temp" variable nil nil [14918 14954])
-            ("set-char-table-range" code nil nil [14986 15119])
-            ("tibetan" package nil nil [15121 15139]))          
-      :file "tibetan.el"
-      :pointmax 15166
-      :fsize 18065
-      :lastmodtime '(23525 29563 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tibetan-obsolete-glyphs" variable
-               (:constant-flag t
-                :default-value (\` (("།" . "།") ("༏" . "༏") ("༐" . "༐") ("༑" . "༑") ("ཿ" . "ཿ") ("་" . "་") ("༔" . "༔") ("༎ ༎" \, (compose-string "༎ ༎" 0 3 [3854 (Br . Bl) 32 (Br . Bl) 3854])) ("༄༅༅" \, (compose-string "࿁࿂࿂࿂" 0 4 [4033 (Br . Bl) 4034 (Br . Bl) 4034 (Br . Bl) 4034])) ("༄༅" \, (compose-string "࿁࿂࿂" 0 3 [4033 (Br . Bl) 4034 (Br . Bl) 4034])) ("༆" \, (compose-string "࿁࿂༙" 0 3 [4033 (Br . Bl) 4034 (br . tr) 3865])) ("༄" \, (compose-string "࿁࿂" 0 2 [4033 (Br . Bl) 4034])))))
-                nil [1397 1970])
-            ("tibetan-char-p" function (:arguments ("ch")) nil [1987 2170])
-            ("tibetan-tibetan-to-transcription" function (:arguments ("str")) nil [2241 3174])
-            ("tibetan-transcription-to-tibetan" function (:arguments ("str")) nil [3191 4540])
-            ("tibetan-add-components" function (:arguments ("components" "char")) nil [5673 7816])
-            ("tibetan-compose-string" function (:arguments ("str")) nil [7833 8672])
-            ("tibetan-compose-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [8689 9719])
-            ("tibetan-decompose-precomposition-alist" variable (:default-value (mapcar (function (lambda (x) (cons (string-to-char (cdr x)) (car x)))) tibetan-precomposition-rule-alist)) nil [9721 9880])
-            ("tibetan-decompose-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to"))
-                nil [9897 10474])
-            ("tibetan-decompose-string" function (:arguments ("str")) nil [10492 10977])
-            ("setq-default" code nil nil [11046 11083])
-            ("tibetan-decompose-buffer" function (:user-visible-flag t) nil [11100 11456])
-            ("tibetan-compose-buffer" function (:user-visible-flag t) nil [11473 11765])
-            ("tibetan-post-read-conversion" function (:arguments ("len")) nil [11782 12160])
-            ("tibetan-pre-write-conversion" function (:arguments ("from" "to")) nil [12178 12589])
-            ("tibetan-canonicalize-for-unicode-alist" variable (:default-value (quote (("����" . "") ("ཱི" . "ཱི") ("ཱུ" . "ཱུ") ("ྲྀ" . "ྲྀ") ("ཷ" . "ྲཱྀ") ("ླྀ" . "ླྀ") ("ཹ" . "ླཱྀ") ("ཱྀ" . "ཱྀ")))) nil [12635 12958])
-            ("tibetan-canonicalize-for-unicode-regexp" variable (:default-value "[����ཱཱིུྲྀཷླྀཹཱྀ]") nil [12960 13085])
-            ("tibetan-canonicalize-for-unicode-region" function (:arguments ("from" "to")) nil [13087 13580])
-            ("tibetan-strict-unicode" variable (:default-value t) nil [13582 13875])
-            ("tibetan-pre-write-canonicalize-for-unicode" function (:arguments ("from" "to")) nil [13892 14306])
-            ("tibet-util" package nil nil [14308 14329]))          
-      :file "tibet-util.el"
-      :pointmax 14359
-      :fsize 14643
-      :lastmodtime '(23525 29563 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("thai-auto-composition-mode" variable nil nil [1103 1138])
-            ("thai-category-table" variable
-               (:constant-flag t
-                :default-value (make-category-table))
-                nil [1184 1236])
-            ("define-category" code nil nil [1237 1294])
-            ("define-category" code nil nil [1295 1360])
-            ("define-category" code nil nil [1361 1418])
-            ("define-category" code nil nil [1419 1491])
-            ("define-category" code nil nil [1492 1556])
-            ("define-category" code nil nil [1557 1626])
-            ("thai-composition-pattern" variable (:default-value "\\cc\\(\\cu\\|\\cI\\cU\\|\\cv\\ct?\\)\\|\\cv\\ct\\|\\cI\\cU") nil [2026 2182])
-            ("let" code nil nil [2184 5439])
-            ("thai-compose-syllable" function (:arguments ("beg" "end" "category-set" "string")) nil [5441 6058])
-            ("thai-compose-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [6075 6708])
-            ("thai-compose-string" function (:arguments ("string")) nil [6725 7061])
-            ("thai-compose-buffer" function (:user-visible-flag t) nil [7078 7223])
-            ("thai-composition-function" function (:arguments ("gstring")) nil [7240 7764])
-            ("thai-word" include nil nil [7831 7851])
-            ("thai-word-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [remap forward-word] (quote thai-forward-word)) (define-key map [remap backward-word] (quote thai-backward-word)) (define-key map [remap kill-word] (quote thai-kill-word)) (define-key map [remap backward-kill-word] (quote thai-backward-kill-word)) (define-key map [remap transpose-words] (quote thai-transpose-words)) map)) nil [7853 8277])
-            ("define-minor-mode" code nil nil [8279 9150])
-            ("setup-thai-language-environment-internal" function nil nil [9215 9287])
-            ("exit-thai-language-environment-internal" function nil nil [9351 9423])
-            ("thai-util" package nil nil [9428 9448]))          
-      :file "thai-util.el"
-      :pointmax 9477
-      :fsize 9674
-      :lastmodtime '(23525 29563 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "thai-word.el"
-      :fsize 223494
-      :lastmodtime '(23525 29563 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tai-viet-re" variable
-               (:constant-flag t
-                :default-value "[ꪀ-ꫂꫛ-꫟]+")
-                nil [1008 1062])
-            ("tai-viet-glyph-info" variable
-               (:constant-flag t
-                :default-value (let ((table (make-char-table nil)) (specials (quote ((right-overhang . "ꪊꪋꪌꪍꪏꪓꪖꪜꪞꪡꪤꪨ") (left-overhang . "ꫂ") (combining-vowel . "ꪴꪰꪲꪳꪷꪸꪾ") (combining-tone . "꪿꫁") (misc . "-"))))) (set-char-table-range table (cons 43648 43714) t) (set-char-table-range table (cons 43739 43743) t) (dolist (elt specials) (let ((category (car elt)) (chars (cdr elt))) (dotimes (i (length chars)) (aset table (aref chars i) category)))) table))
-                nil [1134 1728])
-            ("tai-viet-compose-string" function (:arguments ("from" "to" "string")) nil [1730 2472])
-            ("tai-viet-compose-region" function (:arguments ("from" "to")) nil [2474 4425])
-            ("tai-viet-composition-function" function (:arguments ("from" "to" "font-object" "string")) nil [4443 4729])
-            ("tai-viet-util" package nil nil [4734 4758]))          
-      :file "tv-util.el"
-      :pointmax 4759
-      :fsize 4802
-      :lastmodtime '(23525 29563 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!language!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041net\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041net\041semantic.cache"
deleted file mode 100644
index 37d6c92..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041net\041semantic.cache"
+++ /dev/null
@@ -1,2247 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("thingatpt" include nil nil [2323 2343])
-            ("browse-url-url-at-point" function (:prototype-flag t) nil [2344 2392])
-            ("unless" code nil nil [2437 2489])
-            ("unless" code nil nil [2490 2585])
-            ("unless" code nil nil [2586 2669])
-            ("unless" code nil nil [2670 2771])
-            ("goto-address" customgroup (:user-visible-flag t) nil [2773 2885])
-            ("goto-address-fontify-p" variable (:default-value t) nil [2954 3155])
-            ("goto-address-highlight-p" variable (:default-value t) nil [3157 3306])
-            ("goto-address-fontify-maximum-size" variable (:default-value 30000) nil [3308 3594])
-            ("goto-address-mail-regexp" variable (:default-value "[-a-zA-Z0-9=._+]+@\\([-a-zA-z0-9_]+\\.\\)+[a-zA-Z0-9]+") nil [3596 3827])
-            ("goto-address-url-regexp" variable (:default-value (concat "\\<\\(" (mapconcat (quote identity) (delete "mailto:" (delete "data:" (copy-sequence thing-at-point-uri-schemes))) "\\|") "\\)" thing-at-point-url-path-regexp)) nil [3829 4541])
-            ("goto-address-highlight-keymap" variable (:default-value (let ((m (make-sparse-keymap))) (define-key m (if (featurep (quote xemacs)) (kbd "<button2>") (kbd "<mouse-2>")) (quote goto-address-at-point)) (define-key m (kbd "C-c RET") (quote goto-address-at-point)) m)) nil [4543 4858])
-            ("goto-address-url-face" variable (:default-value (quote link)) nil [4860 4962])
-            ("goto-address-url-mouse-face" variable (:default-value (quote highlight)) nil [4964 5103])
-            ("goto-address-mail-face" variable (:default-value (quote italic)) nil [5105 5222])
-            ("goto-address-mail-mouse-face" variable (:default-value (quote secondary-selection)) nil [5224 5386])
-            ("goto-address-unfontify" function (:arguments ("start" "end")) nil [5388 5609])
-            ("goto-address-prog-mode" variable nil nil [5611 5642])
-            ("goto-address-fontify" function (:arguments ("start" "end")) nil [5644 7858])
-            ("goto-address-fontify-region" function (:arguments ("start" "end")) nil [7860 8172])
-            ("define-obsolete-function-alias" code nil nil [8288 8375])
-            ("goto-address-at-point" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [8392 9209])
-            ("goto-address-find-address-at-point" function nil nil [9211 9725])
-            ("goto-address" function (:user-visible-flag t) nil [9742 10227])
-            ("define-minor-mode" code nil nil [10306 10820])
-            ("define-minor-mode" code nil nil [10837 11195])
-            ("goto-addr" package nil nil [11197 11217]))          
-      :file "goto-addr.el"
-      :pointmax 11246
-      :fsize 11245
-      :lastmodtime '(23525 29575 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1385 1402])
-            ("gnutls" customgroup (:user-visible-flag t) nil [1404 1521])
-            ("gnutls-algorithm-priority" variable nil nil [1523 1792])
-            ("gnutls-verify-error" variable nil nil [1794 3095])
-            ("gnutls-trustfiles" variable (:default-value (quote ("/etc/ssl/certs/ca-certificates.crt" "/etc/pki/tls/certs/ca-bundle.crt" "/etc/ssl/ca-bundle.pem" "/usr/ssl/certs/ca-bundle.crt" "/usr/local/share/certs/ca-root-nss.crt" "/etc/ssl/cert.pem"))) nil [3097 3862])
-            ("gnutls-min-prime-bits" variable (:default-value 256) nil [3879 4538])
-            ("open-gnutls-stream" function (:arguments ("name" "buffer" "host" "service" "nowait")) nil [4540 6485])
-            ("define-error" code nil nil [6487 6530])
-            ("declare-function" code nil nil [6532 6594])
-            ("declare-function" code nil nil [6595 6646])
-            ("gnutls-log-level" variable nil nil [6647 6672])
-            ("cl-defun" code nil nil [6699 8264])
-            ("cl-defun" code nil nil [8266 12866])
-            ("gnutls-trustfiles" function nil nil [12868 13142])
-            ("declare-function" code nil nil [13144 13201])
-            ("gnutls-message-maybe" function (:arguments ("doit" "format" "params")) nil [13203 13579])
-            ("gnutls" package nil nil [13581 13598]))          
-      :file "gnutls.el"
-      :pointmax 13624
-      :fsize 13623
-      :lastmodtime '(23525 29575 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("browse-url" customgroup (:user-visible-flag t) nil [5262 5431])
-            ("browse-url-browser-function" variable (:default-value (quote browse-url-default-browser)) nil [5448 7347])
-            ("browse-url-mailto-function" variable (:default-value (quote browse-url-mail)) nil [7349 7767])
-            ("browse-url-man-function" variable (:default-value (quote browse-url-man)) nil [7769 8054])
-            ("browse-url-netscape-program" variable (:default-value "netscape") nil [8056 8517])
-            ("make-obsolete-variable" code nil nil [8519 8583])
-            ("browse-url-netscape-arguments" variable nil nil [8585 8750])
-            ("make-obsolete-variable" code nil nil [8752 8818])
-            ("browse-url-netscape-startup-arguments" variable (:default-value browse-url-netscape-arguments) nil [8820 9118])
-            ("make-obsolete-variable" code nil nil [9120 9194])
-            ("browse-url-browser-display" variable nil nil [9196 9378])
-            ("browse-url-mozilla-program" variable (:default-value "mozilla") nil [9380 9506])
-            ("browse-url-mozilla-arguments" variable nil nil [9508 9671])
-            ("browse-url-mozilla-startup-arguments" variable (:default-value browse-url-mozilla-arguments) nil [9673 9966])
-            ("browse-url-firefox-program" variable (:default-value (let ((candidates (quote ("icecat" "iceweasel" "firefox")))) (while (and candidates (not (executable-find (car candidates)))) (setq candidates (cdr candidates))) (or (car candidates) "firefox"))) nil [9968 10307])
-            ("browse-url-firefox-arguments" variable nil nil [10309 10485])
-            ("browse-url-firefox-startup-arguments" variable (:default-value browse-url-firefox-arguments) nil [10487 10793])
-            ("make-obsolete-variable" code nil nil [10795 10919])
-            ("browse-url-chrome-program" variable (:default-value (let ((candidates (quote ("google-chrome-stable" "google-chrome")))) (while (and candidates (not (executable-find (car candidates)))) (setq candidates (cdr candidates))) (or (car candidates) "chromium"))) nil [10921 11278])
-            ("browse-url-chrome-arguments" variable nil nil [11280 11466])
-            ("browse-url-chromium-program" variable (:default-value (let ((candidates (quote ("chromium" "chromium-browser")))) (while (and candidates (not (executable-find (car candidates)))) (setq candidates (cdr candidates))) (or (car candidates) "chromium"))) nil [11468 11808])
-            ("browse-url-chromium-arguments" variable nil nil [11810 11993])
-            ("browse-url-galeon-program" variable (:default-value "galeon") nil [11995 12118])
-            ("make-obsolete-variable" code nil nil [12120 12182])
-            ("browse-url-galeon-arguments" variable nil nil [12184 12345])
-            ("make-obsolete-variable" code nil nil [12347 12411])
-            ("browse-url-galeon-startup-arguments" variable (:default-value browse-url-galeon-arguments) nil [12413 12702])
-            ("make-obsolete-variable" code nil nil [12704 12776])
-            ("browse-url-epiphany-program" variable (:default-value "epiphany") nil [12778 12907])
-            ("browse-url-epiphany-arguments" variable nil nil [12909 13074])
-            ("browse-url-epiphany-startup-arguments" variable (:default-value browse-url-epiphany-arguments) nil [13076 13373])
-            ("browse-url-gnome-moz-program" variable (:default-value "gnome-moz-remote") nil [13430 13486])
-            ("make-obsolete-variable" code nil nil [13488 13553])
-            ("browse-url-gnome-moz-arguments" variable (:default-value (quote nil)) nil [13555 13754])
-            ("make-obsolete-variable" code nil nil [13756 13823])
-            ("browse-url-mozilla-new-window-is-tab" variable nil nil [13825 14105])
-            ("browse-url-firefox-new-window-is-tab" variable nil nil [14107 14387])
-            ("browse-url-conkeror-new-window-is-buffer" variable nil nil [14389 14698])
-            ("browse-url-galeon-new-window-is-tab" variable nil nil [14700 14978])
-            ("make-obsolete-variable" code nil nil [14980 15052])
-            ("browse-url-epiphany-new-window-is-tab" variable nil nil [15054 15336])
-            ("browse-url-netscape-new-window-is-tab" variable nil nil [15338 15620])
-            ("make-obsolete-variable" code nil nil [15622 15696])
-            ("browse-url-new-window-flag" variable nil nil [15698 15974])
-            ("browse-url-mosaic-program" variable (:default-value "xmosaic") nil [15976 16131])
-            ("make-obsolete-variable" code nil nil [16133 16195])
-            ("browse-url-mosaic-arguments" variable nil nil [16197 16358])
-            ("make-obsolete-variable" code nil nil [16360 16424])
-            ("browse-url-mosaic-pidfile" variable (:default-value "~/.mosaicpid") nil [16426 16562])
-            ("make-obsolete-variable" code nil nil [16564 16626])
-            ("browse-url-conkeror-program" variable (:default-value "conkeror") nil [16628 16775])
-            ("browse-url-conkeror-arguments" variable nil nil [16777 16960])
-            ("browse-url-filename-alist" variable (:default-value (\` (("^/\\(ftp@\\|anonymous@\\)?\\([^:/]+\\):/*" . "ftp://\\2/") ("^/\\([^:@/]+@\\)?\\([^:/]+\\):/*" . "ftp://\\1\\2/") (\,@ (if (memq system-type (quote (windows-nt ms-dos))) (quote (("^\\([a-zA-Z]:\\)[\\/]" . "file:///\\1/") ("^[\\/][\\/]+" . "file://"))))) ("^/+" . "file:///")))) nil [16962 18419])
-            ("browse-url-save-file" variable nil nil [18421 18597])
-            ("browse-url-of-file-hook" variable nil nil [18599 18749])
-            ("browse-url-CCI-port" variable (:default-value 3003) nil [18751 18960])
-            ("make-obsolete-variable" code nil nil [18962 19018])
-            ("browse-url-CCI-host" variable (:default-value "localhost") nil [19020 19271])
-            ("make-obsolete-variable" code nil nil [19273 19329])
-            ("browse-url-temp-file-name" variable nil nil [19331 19369])
-            ("make-variable-buffer-local" code nil nil [19370 19425])
-            ("browse-url-xterm-program" variable (:default-value "xterm") nil [19427 19643])
-            ("browse-url-xterm-args" variable nil nil [19645 19857])
-            ("browse-url-gnudoit-program" variable (:default-value "gnudoit") nil [19859 20015])
-            ("browse-url-gnudoit-args" variable (:default-value (quote ("-q"))) nil [20017 20237])
-            ("browse-url-generic-program" variable nil nil [20239 20417])
-            ("browse-url-generic-args" variable nil nil [20419 20595])
-            ("browse-url-temp-dir" variable (:default-value temporary-file-directory) nil [20597 20912])
-            ("browse-url-netscape-version" variable (:default-value 3) nil [20914 21124])
-            ("make-obsolete-variable" code nil nil [21126 21190])
-            ("browse-url-text-browser" variable (:default-value "lynx") nil [21192 21333])
-            ("browse-url-text-emacs-args" variable (:default-value (and (not window-system) (quote ("-show_cursor")))) nil [21335 21780])
-            ("browse-url-text-input-field" variable (:default-value (quote avoid)) nil [21782 22521])
-            ("browse-url-text-input-attempts" variable (:default-value 10) nil [22523 22707])
-            ("browse-url-text-input-delay" variable (:default-value 0.2) nil [22709 22886])
-            ("browse-url-kde-program" variable (:default-value "kfmclient") nil [22888 23042])
-            ("browse-url-kde-args" variable (:default-value (quote ("openURL"))) nil [23044 23221])
-            ("browse-url-elinks-wrapper" variable (:default-value (quote ("xterm" "-e"))) nil [23223 23397])
-            ("browse-url-url-encode-chars" function (:arguments ("text" "chars")) nil [23483 23926])
-            ("browse-url-encode-url" function (:arguments ("url")) nil [23928 24344])
-            ("browse-url-url-at-point" function nil nil [24427 24648])
-            ("browse-url-interactive-arg" function (:arguments ("prompt")) nil [24821 25673])
-            ("browse-url-maybe-new-window" function (:arguments ("arg")) nil [25873 26025])
-            ("browse-url-of-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [26135 26852])
-            ("browse-url-file-url" function (:arguments ("file")) nil [26854 27539])
-            ("browse-url-of-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [27556 28419])
-            ("browse-url-delete-temp-file" function (:arguments ("temp-file-name")) nil [28421 28752])
-            ("add-hook" code nil nil [28754 28811])
-            ("declare-function" code nil nil [28813 28903])
-            ("browse-url-of-dired-file" function (:user-visible-flag t) nil [28920 29179])
-            ("browse-url-of-region" function
-               (:user-visible-flag t
-                :arguments ("min" "max"))
-                nil [29196 29411])
-            ("browse-url" function
-               (:user-visible-flag t
-                :arguments ("url" "args"))
-                nil [29598 31871])
-            ("browse-url-at-point" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [31888 32357])
-            ("browse-url-at-mouse" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [32374 32807])
-            ("dos-windows-version" variable nil nil [32945 32973])
-            ("declare-function" code nil nil [32974 33021])
-            ("browse-url-default-windows-browser" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [33043 34391])
-            ("browse-url-default-macosx-browser" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [34393 34665])
-            ("browse-url-process-environment" function nil nil [34688 35175])
-            ("browse-url-emacs-display" function nil nil [35177 35571])
-            ("browse-url-default-browser" function (:arguments ("url" "args")) nil [35573 37251])
-            ("browse-url-can-use-xdg-open" function nil nil [37253 37857])
-            ("browse-url-xdg-open" function
-               (:user-visible-flag t
-                :arguments ("url" "ignored"))
-                nil [37874 38188])
-            ("browse-url-netscape" function (:arguments ("url" "new-window")) nil [38205 39766])
-            ("browse-url-netscape-sentinel" function (:arguments ("process" "url")) nil [39768 40276])
-            ("browse-url-netscape-reload" function nil nil [40278 40667])
-            ("browse-url-netscape-send" function (:arguments ("command")) nil [40669 41033])
-            ("browse-url-mozilla" function
-               (:user-visible-flag t
-                :arguments ("url" "new-window"))
-                nil [41050 42463])
-            ("browse-url-mozilla-sentinel" function (:arguments ("process" "url")) nil [42465 42936])
-            ("browse-url-firefox" function
-               (:user-visible-flag t
-                :arguments ("url" "new-window"))
-                nil [42953 44153])
-            ("browse-url-chromium" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [44170 44762])
-            ("browse-url-chrome" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [44764 45363])
-            ("browse-url-galeon" function (:arguments ("url" "new-window")) nil [45380 46871])
-            ("browse-url-galeon-sentinel" function (:arguments ("process" "url")) nil [46873 47371])
-            ("browse-url-epiphany" function
-               (:user-visible-flag t
-                :arguments ("url" "new-window"))
-                nil [47373 48850])
-            ("browse-url-epiphany-sentinel" function (:arguments ("process" "url")) nil [48852 49330])
-            ("url-handler-regexp" variable nil nil [49332 49359])
-            ("browse-url-emacs" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [49376 49999])
-            ("browse-url-gnome-moz" function (:arguments ("url" "new-window")) nil [50016 50953])
-            ("browse-url-mosaic" function (:arguments ("url" "new-window")) nil [50989 53071])
-            ("browse-url-cci" function (:arguments ("url" "new-window")) nil [53117 54336])
-            ("browse-url-conkeror" function
-               (:user-visible-flag t
-                :arguments ("url" "new-window"))
-                nil [54373 55689])
-            ("declare-function" code nil nil [55718 55784])
-            ("declare-function" code nil nil [55785 55858])
-            ("browse-url-w3" function
-               (:user-visible-flag t
-                :arguments ("url" "new-window"))
-                nil [55875 56545])
-            ("browse-url-w3-gnudoit" function (:arguments ("url" "_new-window")) nil [56562 57137])
-            ("browse-url-text-xterm" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [57183 57840])
-            ("declare-function" code nil nil [57885 57928])
-            ("declare-function" code nil nil [57929 57972])
-            ("declare-function" code nil nil [57973 58026])
-            ("browse-url-text-emacs" function
-               (:user-visible-flag t
-                :arguments ("url" "new-buffer"))
-                nil [58043 60751])
-            ("rfc2368-parse-mailto-url" function (:prototype-flag t) nil [60772 60818])
-            ("browse-url-mail" function
-               (:user-visible-flag t
-                :arguments ("url" "new-window"))
-                nil [60835 62473])
-            ("manual-program" variable nil nil [62491 62514])
-            ("browse-url-man" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [62516 62847])
-            ("browse-url-generic" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [62891 63557])
-            ("browse-url-kde" function
-               (:user-visible-flag t
-                :arguments ("url" "_new-window"))
-                nil [63574 63962])
-            ("browse-url-elinks-new-window" function (:arguments ("url")) nil [63964 64266])
-            ("browse-url-elinks" function
-               (:user-visible-flag t
-                :arguments ("url" "new-window"))
-                nil [64283 65074])
-            ("browse-url-elinks-sentinel" function (:arguments ("process" "url")) nil [65076 65786])
-            ("browse-url" package nil nil [65788 65809]))          
-      :file "browse-url.el"
-      :pointmax 65839
-      :fsize 65838
-      :lastmodtime '(23525 29574 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gnutls" include nil nil [1541 1558])
-            ("format-spec" function (:prototype-flag t) nil [1560 1597])
-            ("format-spec-make" function (:prototype-flag t) nil [1598 1640])
-            ("tls" customgroup (:user-visible-flag t) nil [1642 1722])
-            ("tls-end-of-info" variable (:default-value (concat "\\(" "^    Verify return code: .+
----
-\\|" "^- Simple Client Mode:
-" "\\(
-\\|" "^\\*\\*\\* Starting TLS handshake
-\\)*" "\\)")) nil [1724 2633])
-            ("tls-program" variable (:default-value (quote ("gnutls-cli --x509cafile %t -p %p %h" "gnutls-cli --x509cafile %t -p %p %h --protocols ssl3"))) nil [2635 4010])
-            ("tls-process-connection-type" variable nil nil [4012 4178])
-            ("tls-success" variable (:default-value "- Handshake was completed\\|SSL handshake has read ") nil [4180 4455])
-            ("tls-checktrust" variable nil nil [4457 5168])
-            ("tls-untrusted" variable (:default-value "- Peer's certificate is NOT trusted\\|Verify return code: \\([^0] \\|.[^ ]\\)") nil [5170 5543])
-            ("tls-hostmismatch" variable (:default-value "# The hostname in the certificate does NOT match") nil [5545 6005])
-            ("tls-certtool-program" variable (:default-value "certtool") nil [6007 6166])
-            ("defalias" code nil nil [6168 6331])
-            ("tls-certificate-information" function (:arguments ("der")) nil [6333 7138])
-            ("open-tls-stream" function (:arguments ("name" "buffer" "host" "port")) nil [7140 10834])
-            ("tls" package nil nil [10836 10850]))          
-      :file "tls.el"
-      :pointmax 10873
-      :fsize 10872
-      :lastmodtime '(23525 29578 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tls" include nil nil [1521 1535])
-            ("starttls" include nil nil [1536 1555])
-            ("auth-source" include nil nil [1556 1578])
-            ("nsm" include nil nil [1579 1593])
-            ("puny" include nil nil [1594 1609])
-            ("gnutls-negotiate" function (:prototype-flag t) nil [1611 1648])
-            ("open-gnutls-stream" function (:prototype-flag t) nil [1649 1688])
-            ("open-network-stream" function (:arguments ("name" "buffer" "host" "service" "parameters")) nil [1705 7756])
-            ("network-stream-certificate" function (:arguments ("host" "service" "parameters")) nil [7758 8231])
-            ("defalias" code nil nil [8248 8301])
-            ("define-obsolete-function-alias" code nil nil [8302 8386])
-            ("network-stream-open-plain" function (:arguments ("name" "buffer" "host" "service" "parameters")) nil [8388 8977])
-            ("network-stream-open-starttls" function (:arguments ("name" "buffer" "host" "service" "parameters")) nil [8979 14602])
-            ("network-stream-command" function (:arguments ("stream" "command" "eoc")) nil [14604 14846])
-            ("network-stream-get-response" function (:arguments ("stream" "start" "end-of-command")) nil [14848 15325])
-            ("network-stream-open-tls" function (:arguments ("name" "buffer" "host" "service" "parameters")) nil [15327 16865])
-            ("network-stream-open-shell" function (:arguments ("name" "buffer" "host" "service" "parameters")) nil [16867 17589])
-            ("network-stream" package nil nil [17591 17616]))          
-      :file "network-stream.el"
-      :pointmax 17650
-      :fsize 17649
-      :lastmodtime '(23525 29576 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "starttls.el"
-      :fsize 11399
-      :lastmodtime '(23525 29578 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "nsm.el"
-      :fsize 17389
-      :lastmodtime '(23525 29576 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("seq" include nil nil [1044 1058])
-            ("puny-encode-domain" function (:arguments ("domain")) nil [1060 1460])
-            ("puny-encode-string" function (:arguments ("string")) nil [1462 2001])
-            ("puny-decode-domain" function (:arguments ("domain")) nil [2003 2213])
-            ("puny-decode-string" function (:arguments ("string")) nil [2215 2447])
-            ("puny-initial-n" variable
-               (:constant-flag t
-                :default-value 128)
-                nil [2449 2478])
-            ("puny-initial-bias" variable
-               (:constant-flag t
-                :default-value 72)
-                nil [2479 2510])
-            ("puny-base" variable
-               (:constant-flag t
-                :default-value 36)
-                nil [2511 2534])
-            ("puny-damp" variable
-               (:constant-flag t
-                :default-value 700)
-                nil [2535 2559])
-            ("puny-tmin" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [2560 2582])
-            ("puny-tmax" variable
-               (:constant-flag t
-                :default-value 26)
-                nil [2583 2606])
-            ("puny-skew" variable
-               (:constant-flag t
-                :default-value 28)
-                nil [2607 2630])
-            ("puny-encode-digit" function (:arguments ("d")) nil [2658 2738])
-            ("puny-adapt" function (:arguments ("delta" "num-points" "first-time")) nil [2740 3235])
-            ("puny-encode-complex" function (:arguments ("insertion-points" "string")) nil [3237 4950])
-            ("puny-decode-digit" function (:arguments ("cp")) nil [4952 5109])
-            ("puny-decode-string-internal" function (:arguments ("string")) nil [5111 6705])
-            ("puny-highly-restrictive-string-p" function (:arguments ("string")) nil [6872 9019])
-            ("puny-highly-restrictive-domain-p" function (:arguments ("domain")) nil [9021 9284])
-            ("puny" package nil nil [9286 9301]))          
-      :file "puny.el"
-      :pointmax 9325
-      :fsize 9328
-      :lastmodtime '(23525 29576 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [1246 1259])
-            ("mail-utils" include nil nil [1262 1283])
-            ("parse-time-months" variable nil nil [1284 1310])
-            ("pop3" customgroup (:user-visible-flag t) nil [1312 1394])
-            ("pop3-maildrop" variable (:default-value (or (user-login-name) (getenv "LOGNAME") (getenv "USER"))) nil [1396 1576])
-            ("pop3-mailhost" variable (:default-value (or (getenv "MAILHOST") "pop3")) nil [1578 1743])
-            ("pop3-port" variable (:default-value 110) nil [1745 1847])
-            ("pop3-password-required" variable (:default-value t) nil [1849 2017])
-            ("pop3-password" variable nil nil [2051 2183])
-            ("pop3-authentication-scheme" variable (:default-value (quote pass)) nil [2185 2491])
-            ("pop3-stream-length" variable (:default-value 100) nil [2493 2772])
-            ("pop3-leave-mail-on-server" variable nil nil [2774 3806])
-            ("pop3-uidl-file" variable (:default-value "~/.pop3-uidl") nil [3808 3924])
-            ("pop3-uidl-file-backup" variable (:default-value (quote (0 9))) nil [3926 4811])
-            ("pop3-timestamp" variable nil nil [4813 4937])
-            ("pop3-read-point" variable nil nil [4939 4967])
-            ("pop3-debug" variable nil nil [4968 4991])
-            ("if" code nil nil [5140 5799])
-            ("pop3-uidl" variable nil nil [5802 5820])
-            ("pop3-uidl-saved" variable nil nil [5918 5942])
-            ("pop3-movemail" function (:arguments ("file")) nil [6493 7718])
-            ("pop3-send-streaming-command" function (:arguments ("process" "command" "messages" "total-size")) nil [7720 8358])
-            ("pop3-wait-for-messages" function (:arguments ("process" "count" "total-size" "start-point")) nil [8360 9209])
-            ("pop3-write-to-file" function (:arguments ("file" "messages")) nil [9211 10308])
-            ("pop3-logon" function (:arguments ("process")) nil [10310 10890])
-            ("pop3-get-message-count" function nil nil [10892 11693])
-            ("pop3-uidl-stat" function (:arguments ("process")) nil [11695 13285])
-            ("pop3-uidl-dele" function (:arguments ("process")) nil [13287 15195])
-            ("pop3-uidl-load" function nil nil [15197 15564])
-            ("pop3-uidl-save" function nil nil [15566 16650])
-            ("pop3-uidl-add-xheader" function (:arguments ("start" "msgno")) nil [16652 17166])
-            ("pop3-stream-type" variable nil nil [17168 17641])
-            ("pop3-open-server" function (:arguments ("mailhost" "port")) nil [17643 18965])
-            ("pop3-send-command" function (:arguments ("process" "command")) nil [18989 19317])
-            ("pop3-read-response" function (:arguments ("process" "return")) nil [19319 20120])
-            ("pop3-clean-region" function (:arguments ("start" "end")) nil [20122 20501])
-            ("pop3-make-date" function (:arguments ("now")) nil [20537 21089])
-            ("pop3-munge-message-separator" function (:arguments ("start" "end")) nil [21091 22865])
-            ("pop3-user" function (:arguments ("process" "user")) nil [22911 23185])
-            ("pop3-pass" function (:arguments ("process")) nil [23187 23461])
-            ("pop3-apop" function (:arguments ("process" "user")) nil [23463 23998])
-            ("pop3-stat" function (:arguments ("process")) nil [24022 24342])
-            ("pop3-list" function (:arguments ("process" "msg")) nil [24344 25223])
-            ("pop3-retr" function (:arguments ("process" "msg" "crashbuf")) nil [25225 26333])
-            ("pop3-dele" function (:arguments ("process" "msg")) nil [26335 26486])
-            ("pop3-noop" function (:arguments ("process" "msg")) nil [26488 26605])
-            ("pop3-last" function (:arguments ("process")) nil [26607 26850])
-            ("pop3-rset" function (:arguments ("process")) nil [26852 26998])
-            ("pop3-quit" function (:arguments ("process")) nil [27011 27365])
-            ("pop3" package nil nil [29593 29608]))          
-      :file "pop3.el"
-      :pointmax 29632
-      :fsize 29631
-      :lastmodtime '(23525 29576 0 0)
-      :unmatched-syntax '((close-paren 5799 . 5800) (symbol 5121 . 5137) (open-paren 5120 . 5121) (close-paren 1259 . 1260) (symbol 1228 . 1245) (open-paren 1227 . 1228)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("net-utils--executable-find-sbin" function (:arguments ("command")) nil [1692 1901])
-            ("net-utils" customgroup (:user-visible-flag t) nil [2053 2164])
-            ("traceroute-program" variable (:default-value (if (eq system-type (quote windows-nt)) "tracert" "traceroute")) nil [2166 2354])
-            ("traceroute-program-options" variable nil nil [2356 2484])
-            ("ping-program" variable (:default-value "ping") nil [2486 2606])
-            ("ping-program-options" variable (:default-value (and (eq system-type (quote gnu/linux)) (list "-c" "4"))) nil [2720 2961])
-            ("define-obsolete-variable-alias" code nil nil [2963 3038])
-            ("ifconfig-program" variable (:default-value (cond ((eq system-type (quote windows-nt)) "ipconfig") ((executable-find "ifconfig") "ifconfig") ((net-utils--executable-find-sbin "ifconfig")) ((net-utils--executable-find-sbin "ip")) (t "ip"))) nil [3040 3432])
-            ("define-obsolete-variable-alias" code nil nil [3434 3527])
-            ("ifconfig-program-options" variable (:default-value (cond ((string-match "ipconfig\\'" ifconfig-program) (quote ("/all"))) ((string-match "ifconfig\\'" ifconfig-program) (quote ("-a"))) ((string-match "ip\\'" ifconfig-program) (quote ("addr"))))) nil [3529 3891])
-            ("iwconfig-program" variable (:default-value (cond ((executable-find "iwconfig") "iwconfig") ((net-utils--executable-find-sbin "iw") "iw") (t "iw"))) nil [3893 4162])
-            ("iwconfig-program-options" variable (:default-value (cond ((string-match-p "iw\\'" iwconfig-program) (list "dev")) (t nil))) nil [4164 4379])
-            ("netstat-program" variable (:default-value (cond ((executable-find "netstat") "netstat") ((net-utils--executable-find-sbin "ss")) (t "ss"))) nil [4381 4619])
-            ("netstat-program-options" variable (:default-value (list "-a")) nil [4621 4753])
-            ("arp-program" variable (:default-value (or (net-utils--executable-find-sbin "arp") "arp")) nil [4755 4921])
-            ("arp-program-options" variable (:default-value (list "-a")) nil [4923 5047])
-            ("route-program" variable (:default-value (cond ((eq system-type (quote windows-nt)) "route") ((executable-find "netstat") "netstat") ((net-utils--executable-find-sbin "netstat")) ((executable-find "ip") "ip") ((net-utils--executable-find-sbin "ip")) (t "ip"))) nil [5049 5420])
-            ("route-program-options" variable (:default-value (cond ((eq system-type (quote windows-nt)) (list "print")) ((string-match-p "netstat\\'" route-program) (list "-r")) (t (list "route")))) nil [5422 5702])
-            ("nslookup-program" variable (:default-value "nslookup") nil [5704 5832])
-            ("nslookup-program-options" variable nil nil [5834 5958])
-            ("nslookup-prompt-regexp" variable (:default-value "^> ") nil [5960 6161])
-            ("dig-program" variable (:default-value "dig") nil [6163 6267])
-            ("dig-program-options" variable nil nil [6269 6400])
-            ("ftp-program" variable (:default-value "ftp") nil [6402 6508])
-            ("ftp-program-options" variable nil nil [6510 6624])
-            ("ftp-prompt-regexp" variable (:default-value "^ftp>") nil [6626 6834])
-            ("smbclient-program" variable (:default-value "smbclient") nil [6836 6937])
-            ("smbclient-program-options" variable nil nil [6939 7065])
-            ("smbclient-prompt-regexp" variable (:default-value "^smb: >") nil [7067 7289])
-            ("dns-lookup-program" variable (:default-value "host") nil [7291 7417])
-            ("dns-lookup-program-options" variable nil nil [7419 7547])
-            ("network-connection-service" variable nil nil [7571 7610])
-            ("network-connection-host" variable nil nil [7611 7650])
-            ("nslookup-font-lock-keywords" variable (:default-value (list (list "^[A-Za-z0-9 _]+:" 0 (quote font-lock-type-face)) (list "\\<\\(SOA\\|NS\\|MX\\|A\\|CNAME\\)\\>" 1 (quote font-lock-keyword-face)) (list (mapconcat (quote identity) (make-list 4 "[0-9]+") "\\.") 0 (quote font-lock-variable-name-face)) (list (let ((host-expression "[-A-Za-z0-9]+")) (concat (mapconcat (quote identity) (make-list 2 host-expression) "\\.") "\\(\\." host-expression "\\)*")) 0 (quote font-lock-variable-name-face)))) nil [7795 8434])
-            ("net-utils-font-lock-keywords" variable (:default-value (list (list (mapconcat (quote identity) (make-list 4 "[0-9]+") "\\.") 0 (quote font-lock-variable-name-face)) (list (concat "\\( \\([[:xdigit:]]+\\(:\\|::\\)\\)+[[:xdigit:]]+\\)" "\\|" "\\(::[[:xdigit:]]+\\)") 0 (quote font-lock-variable-name-face)) (list (let ((host-expression "[-A-Za-z0-9]+")) (concat (mapconcat (quote identity) (make-list 2 host-expression) "\\.") "\\(\\." host-expression "\\)*")) 0 (quote font-lock-variable-name-face)))) nil [8593 9227])
-            ("define-derived-mode" code nil nil [9229 9515])
-            ("net-utils-machine-at-point" function nil nil [9779 10071])
-            ("net-utils-url-at-point" function nil nil [10073 10426])
-            ("net-utils-remove-ctrl-m-filter" function (:arguments ("process" "output-string")) nil [10428 10999])
-            ("declare-function" code nil nil [11001 11066])
-            ("net-utils-run-program" function (:arguments ("name" "header" "program" "args")) nil [11068 11775])
-            ("net-utils--revert-cmd" variable nil nil [11991 12025])
-            ("net-utils-run-simple" function (:arguments ("buffer" "program-name" "args" "nodisplay")) nil [12027 13184])
-            ("net-utils--revert-function" function (:arguments ("ignore-auto" "noconfirm")) nil [13186 13623])
-            ("ifconfig" function (:user-visible-flag t) nil [13640 13842])
-            ("defalias" code nil nil [13844 13874])
-            ("iwconfig" function (:user-visible-flag t) nil [13891 14093])
-            ("netstat" function (:user-visible-flag t) nil [14110 14307])
-            ("arp" function (:user-visible-flag t) nil [14324 14501])
-            ("route" function (:user-visible-flag t) nil [14518 14705])
-            ("traceroute" function
-               (:user-visible-flag t
-                :arguments ("target"))
-                nil [14887 15213])
-            ("ping" function
-               (:user-visible-flag t
-                :arguments ("host"))
-                nil [15230 15705])
-            ("nslookup-host" function
-               (:user-visible-flag t
-                :arguments ("host" "name-server"))
-                nil [15986 16791])
-            ("nslookup" function (:user-visible-flag t) nil [16808 16952])
-            ("comint-prompt-regexp" variable nil nil [16954 16983])
-            ("comint-input-autoexpand" variable nil nil [16984 17016])
-            ("comint-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [17018 17056])
-            ("nslookup-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "	" (quote completion-at-point)) map)) nil [17058 17176])
-            ("define-derived-mode" code nil nil [17232 17525])
-            ("dns-lookup-host" function
-               (:user-visible-flag t
-                :arguments ("host" "name-server"))
-                nil [17542 18381])
-            ("run-dig" function
-               (:user-visible-flag t
-                :arguments ("host" "name-server"))
-                nil [18398 19176])
-            ("comint-exec" function (:prototype-flag t) nil [19178 19210])
-            ("ftp" function
-               (:user-visible-flag t
-                :arguments ("host"))
-                nil [19282 19721])
-            ("ftp-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "	" (quote completion-at-point)) map)) nil [19723 19863])
-            ("define-derived-mode" code nil nil [19865 20604])
-            ("smbclient" function
-               (:user-visible-flag t
-                :arguments ("host" "service"))
-                nil [20606 21285])
-            ("smbclient-list-shares" function
-               (:user-visible-flag t
-                :arguments ("host"))
-                nil [21287 21740])
-            ("define-derived-mode" code nil nil [21742 22505])
-            ("network-connection-service-alist" variable (:default-value (list (cons (quote echo) 7) (cons (quote active-users) 11) (cons (quote daytime) 13) (cons (quote chargen) 19) (cons (quote ftp) 21) (cons (quote telnet) 23) (cons (quote smtp) 25) (cons (quote time) 37) (cons (quote whois) 43) (cons (quote gopher) 70) (cons (quote finger) 79) (cons (quote www) 80) (cons (quote pop2) 109) (cons (quote pop3) 110) (cons (quote sun-rpc) 111) (cons (quote nntp) 119) (cons (quote ntp) 123) (cons (quote netbios-name) 137) (cons (quote netbios-data) 139) (cons (quote irc) 194) (cons (quote https) 443) (cons (quote rlogin) 513))) nil [22732 23407])
-            ("run-network-program" function (:arguments ("process-name" "host" "port" "initial-string")) nil [23430 24047])
-            ("finger-X.500-host-regexps" variable nil nil [24192 24545])
-            ("finger" function
-               (:user-visible-flag t
-                :arguments ("user" "host"))
-                nil [24581 25765])
-            ("whois-server-name" variable (:default-value "rs.internic.net") nil [25767 25896])
-            ("whois-server-list" variable (:default-value (quote (("whois.arin.net") ("rs.internic.net") ("whois.publicinterestregistry.net") ("whois.abuse.net") ("whois.apnic.net") ("nic.ddn.mil") ("whois.nic.mil") ("whois.nic.gov") ("whois.ripe.net")))) nil [25898 26326])
-            ("whois-server-tld" variable (:default-value (quote (("rs.internic.net" . "com") ("whois.publicinterestregistry.net" . "org") ("whois.ripe.net" . "be") ("whois.ripe.net" . "de") ("whois.ripe.net" . "dk") ("whois.ripe.net" . "it") ("whois.ripe.net" . "fi") ("whois.ripe.net" . "fr") ("whois.ripe.net" . "uk") ("whois.apnic.net" . "au") ("whois.apnic.net" . "ch") ("whois.apnic.net" . "hk") ("whois.apnic.net" . "jp") ("whois.nic.gov" . "gov") ("whois.nic.mil" . "mil")))) nil [26503 27119])
-            ("whois-guess-server" variable (:default-value t) nil [27121 27387])
-            ("whois-get-tld" function (:arguments ("host")) nil [27389 27705])
-            ("whois" function
-               (:user-visible-flag t
-                :arguments ("arg" "search-string"))
-                nil [27740 28562])
-            ("whois-reverse-lookup-server" variable (:default-value "whois.arin.net") nil [28564 28704])
-            ("whois-reverse-lookup" function nil nil [28721 28858])
-            ("define-derived-mode" code nil nil [29068 29216])
-            ("network-connection-mode-setup" function (:arguments ("host" "service")) nil [29218 29453])
-            ("network-connection-to-service" function
-               (:user-visible-flag t
-                :arguments ("host" "service"))
-                nil [29470 29995])
-            ("network-connection" function
-               (:user-visible-flag t
-                :arguments ("host" "port"))
-                nil [30012 30192])
-            ("network-service-connection" function (:arguments ("host" "service")) nil [30194 30773])
-            ("comint-input-ring" variable nil nil [30775 30801])
-            ("network-connection-reconnect" function (:user-visible-flag t) nil [30803 31571])
-            ("net-utils" package nil nil [31573 31593]))          
-      :file "net-utils.el"
-      :pointmax 31622
-      :fsize 31621
-      :lastmodtime '(23525 29576 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tramp" include nil nil [1228 1244])
-            ("tramp-adb-program" variable (:default-value "adb") nil [1267 1416])
-            ("tramp-adb-connect-if-not-connected" variable nil nil [1439 1665])
-            ("tramp-adb-method" variable
-               (:constant-flag t
-                :default-value "adb")
-                nil [1688 1799])
-            ("tramp-adb-prompt" variable (:default-value "^\\(?:[[:digit:]]*|?\\)?\\(?:[[:alnum:];[]*@?[[:alnum:]]*[^#\\$]*\\)?[#\\$][[:space:]]") nil [1822 2056])
-            ("tramp-adb-ls-date-regexp" variable
-               (:constant-flag t
-                :default-value "[[:space:]][0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9][[:space:]][0-9][0-9]:[0-9][0-9][[:space:]]")
-                nil [2058 2227])
-            ("tramp-adb-ls-toolbox-regexp" variable
-               (:constant-flag t
-                :default-value (concat "^[[:space:]]*\\([-[:alpha:]]+\\)" "\\(?:[[:space:]]+[[:digit:]]+\\)?" "[[:space:]]*\\([^[:space:]]+\\)" "[[:space:]]+\\([^[:space:]]+\\)" "[[:space:]]+\\([[:digit:]]+\\)" "[[:space:]]+\\([-[:digit:]]+[[:space:]][:[:digit:]]+\\)" "[[:space:]]\\(.*\\)$"))
-                nil [2229 2683])
-            ("add-to-list" code nil nil [2706 2843])
-            ("add-to-list" code nil nil [2866 2933])
-            ("eval-after-load" code nil nil [2956 3073])
-            ("tramp-adb-file-name-handler-alist" variable
-               (:constant-flag t
-                :default-value (quote ((access-file . ignore) (add-name-to-file . tramp-handle-add-name-to-file) (copy-file . tramp-adb-handle-copy-file) (delete-directory . tramp-adb-handle-delete-directory) (delete-file . tramp-adb-handle-delete-file) (directory-file-name . tramp-handle-directory-file-name) (directory-files . tramp-handle-directory-files) (directory-files-and-attributes . tramp-adb-handle-directory-files-and-attributes) (dired-compress-file . ignore) (dired-uncache . tramp-handle-dired-uncache) (expand-file-name . tramp-adb-handle-expand-file-name) (file-accessible-directory-p . tramp-handle-file-accessible-directory-p) (file-acl . ignore) (file-attributes . tramp-adb-handle-file-attributes) (file-directory-p . tramp-adb-handle-file-directory-p) (file-equal-p . tramp-handle-file-equal-p) (file-executable-p . tramp-handle-file-exists-p) (file-exists-p . tramp-handle-file-exists-p) (file-in-directory-p . tramp-handle-file-in-directory-p) (file-local-copy . tramp-adb-handle-file-local-copy) (file-modes . tramp-handle-file-modes) (file-name-all-completions . tramp-adb-handle-file-name-all-completions) (file-name-as-directory . tramp-handle-file-name-as-directory) (file-name-case-insensitive-p . tramp-handle-file-name-case-insensitive-p) (file-name-completion . tramp-handle-file-name-completion) (file-name-directory . tramp-handle-file-name-directory) (file-name-nondirectory . tramp-handle-file-name-nondirectory) (file-newer-than-file-p . tramp-handle-file-newer-than-file-p) (file-notify-add-watch . tramp-handle-file-notify-add-watch) (file-notify-rm-watch . tramp-handle-file-notify-rm-watch) (file-notify-valid-p . tramp-handle-file-notify-valid-p) (file-ownership-preserved-p . ignore) (file-readable-p . tramp-handle-file-exists-p) (file-regular-p . tramp-handle-file-regular-p) (file-remote-p . tramp-handle-file-remote-p) (file-selinux-context . tramp-handle-file-selinux-context) (file-symlink-p . tramp-handle-file-symlink-p) (file-system-info . tramp-adb-handle-file-system-info) (file-truename . tramp-adb-handle-file-truename) (file-writable-p . tramp-adb-handle-file-writable-p) (find-backup-file-name . tramp-handle-find-backup-file-name) (insert-directory . tramp-handle-insert-directory) (insert-file-contents . tramp-handle-insert-file-contents) (load . tramp-handle-load) (make-auto-save-file-name . tramp-handle-make-auto-save-file-name) (make-directory . tramp-adb-handle-make-directory) (make-directory-internal . ignore) (make-nearby-temp-file . tramp-handle-make-nearby-temp-file) (make-symbolic-link . tramp-handle-make-symbolic-link) (process-file . tramp-adb-handle-process-file) (rename-file . tramp-adb-handle-rename-file) (set-file-acl . ignore) (set-file-modes . tramp-adb-handle-set-file-modes) (set-file-selinux-context . ignore) (set-file-times . tramp-adb-handle-set-file-times) (set-visited-file-modtime . tramp-handle-set-visited-file-modtime) (shell-command . tramp-adb-handle-shell-command) (start-file-process . tramp-adb-handle-start-file-process) (substitute-in-file-name . tramp-handle-substitute-in-file-name) (temporary-file-directory . tramp-handle-temporary-file-directory) (unhandled-file-name-directory . ignore) (vc-registered . ignore) (verify-visited-file-modtime . tramp-handle-verify-visited-file-modtime) (write-region . tramp-adb-handle-write-region))))
-                nil [3096 7156])
-            ("tramp-adb-file-name-p" function (:arguments ("filename")) nil [7315 7503])
-            ("tramp-adb-file-name-handler" function (:arguments ("operation" "args")) nil [7526 7887])
-            ("tramp-register-foreign-file-name-handler" code nil nil [7910 8005])
-            ("tramp-adb-parse-device-names" function (:arguments ("_ignore")) nil [8028 9132])
-            ("tramp-adb-handle-expand-file-name" function (:arguments ("name" "dir")) nil [9134 10258])
-            ("tramp-adb-handle-file-directory-p" function (:arguments ("filename")) nil [10260 10457])
-            ("tramp-adb-handle-file-system-info" function (:arguments ("filename")) nil [10459 11502])
-            ("tramp-adb-handle-file-truename" function (:arguments ("filename")) nil [11597 14676])
-            ("tramp-adb-handle-file-attributes" function (:arguments ("filename" "id-format")) nil [14678 15287])
-            ("tramp-do-parse-file-attributes-with-ls" function (:arguments ("vec" "id-format")) nil [15289 16466])
-            ("tramp-adb-handle-directory-files-and-attributes" function (:arguments ("directory" "full" "match" "nosort" "id-format")) nil [16468 18139])
-            ("tramp-adb-get-ls-command" function (:arguments ("vec")) nil [18141 18806])
-            ("tramp-adb--gnu-switches-to-ash" function (:arguments ("switches")) nil [18808 19320])
-            ("tramp-adb-sh-fix-ls-output" function (:arguments ("sort-by-time")) nil [19322 20297])
-            ("tramp-adb-ls-output-time-less-p" function (:arguments ("a" "b")) nil [20299 20692])
-            ("tramp-adb-ls-output-name-less-p" function (:arguments ("a" "b")) nil [20694 21040])
-            ("tramp-adb-handle-make-directory" function (:arguments ("dir" "parents")) nil [21042 21694])
-            ("tramp-adb-handle-delete-directory" function (:arguments ("directory" "recursive" "_trash")) nil [21696 22386])
-            ("tramp-adb-handle-delete-file" function (:arguments ("filename" "_trash")) nil [22388 22824])
-            ("tramp-adb-handle-file-name-all-completions" function (:arguments ("filename" "directory")) nil [22826 23821])
-            ("tramp-adb-handle-file-local-copy" function (:arguments ("filename")) nil [23823 24726])
-            ("tramp-adb-handle-file-writable-p" function (:arguments ("filename")) nil [24728 25614])
-            ("tramp-adb-handle-write-region" function (:arguments ("start" "end" "filename" "append" "visit" "lockname" "mustbenew")) nil [25616 27246])
-            ("tramp-adb-handle-set-file-modes" function (:arguments ("filename" "mode")) nil [27248 27580])
-            ("tramp-adb-handle-set-file-times" function (:arguments ("filename" "time")) nil [27582 28168])
-            ("tramp-adb-handle-copy-file" function (:arguments ("filename" "newname" "ok-if-already-exists" "keep-date" "_preserve-uid-gid" "_preserve-extended-attributes")) nil [28170 30807])
-            ("tramp-adb-handle-rename-file" function (:arguments ("filename" "newname" "ok-if-already-exists")) nil [30809 32355])
-            ("tramp-adb-handle-process-file" function (:arguments ("program" "infile" "destination" "display" "args")) nil [32357 36113])
-            ("tramp-adb-handle-shell-command" function (:arguments ("command" "output-buffer" "error-buffer")) nil [36115 38698])
-            ("tramp-adb-handle-start-file-process" function (:arguments ("name" "buffer" "program" "args")) nil [38863 41670])
-            ("tramp-adb-get-device" function (:arguments ("vec")) nil [41672 43431])
-            ("tramp-adb-execute-adb-command" function (:arguments ("vec" "args")) nil [43433 43984])
-            ("tramp-adb-find-test-command" function (:arguments ("vec")) nil [43986 44221])
-            ("tramp-adb-send-command" function (:arguments ("vec" "command")) nil [44248 45055])
-            ("tramp-adb-send-command-and-check" function (:arguments ("vec" "command")) nil [45057 45855])
-            ("tramp-adb-barf-unless-okay" function (:arguments ("vec" "command" "fmt" "args")) nil [45857 46137])
-            ("tramp-adb-wait-for-output" function (:arguments ("proc" "timeout")) nil [46139 47505])
-            ("tramp-adb-maybe-open-connection" function (:arguments ("vec")) nil [47507 51630])
-            ("add-hook" code nil nil [51632 51716])
-            ("tramp-adb" package nil nil [51718 51738]))          
-      :file "tramp-adb.el"
-      :pointmax 51767
-      :fsize 51768
-      :lastmodtime '(23525 29578 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tramp-compat" include nil nil [2135 2158])
-            ("cl-lib" include nil nil [2185 2202])
-            ("auto-save-file-name-transforms" variable nil nil [2203 2242])
-            ("eshell-path-env" variable nil nil [2243 2267])
-            ("ls-lisp-use-insert-directory-program" variable nil nil [2268 2313])
-            ("outline-regexp" variable nil nil [2314 2337])
-            ("tramp" customgroup (:user-visible-flag t) nil [2382 2548])
-            ("tramp-mode" variable (:default-value t) nil [2629 2797])
-            ("tramp-verbose" variable (:default-value 3) nil [2799 3236])
-            ("tramp-backup-directory-alist" variable nil nil [3238 3908])
-            ("tramp-auto-save-directory" variable nil nil [3910 4267])
-            ("tramp-encoding-shell" variable (:default-value (or (tramp-compat-funcall (quote w32-shell-name)) "/bin/sh")) nil [4269 5238])
-            ("tramp-encoding-command-switch" variable (:default-value (if (tramp-compat-funcall (quote w32-shell-dos-semantics)) "/c" "-c")) nil [5240 5535])
-            ("tramp-encoding-command-interactive" variable (:default-value (unless (tramp-compat-funcall (quote w32-shell-dos-semantics)) "-i")) nil [5537 5879])
-            ("tramp-methods" variable nil nil [5902 12041])
-            ("tramp-default-method" variable (:default-value (cond ((and (eq system-type (quote windows-nt)) (executable-find "pscp")) "pscp") ((executable-find "scp") "scp") (t "ftp"))) nil [12043 13150])
-            ("tramp-default-method-alist" variable nil nil [13173 13972])
-            ("tramp-default-method-marker" variable
-               (:constant-flag t
-                :default-value "-")
-                nil [13974 14068])
-            ("tramp-default-user" variable nil nil [14070 14436])
-            ("tramp-default-user-alist" variable nil nil [14459 15201])
-            ("tramp-default-host" variable (:default-value (system-name)) nil [15203 15384])
-            ("tramp-default-host-alist" variable nil nil [15407 16167])
-            ("tramp-default-proxies-alist" variable nil nil [16169 17116])
-            ("tramp-save-ad-hoc-proxies" variable nil nil [17118 17277])
-            ("tramp-restricted-shell-hosts-alist" variable (:default-value (when (memq system-type (quote (windows-nt))) (list (concat "\\`" (regexp-quote (system-name)) "\\'")))) nil [17279 17834])
-            ("tramp-local-host-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\`" (regexp-opt (list "localhost" "localhost6" (system-name) "127.0.0.1" "::1") t) "\\'"))
-                nil [17857 18055])
-            ("tramp-completion-function-alist" variable nil nil [18057 19137])
-            ("tramp-echo-mark-marker" variable
-               (:constant-flag t
-                :default-value "_echo")
-                nil [19139 19227])
-            ("tramp-echo-mark-marker-length" variable
-               (:constant-flag t
-                :default-value (length tramp-echo-mark-marker))
-                nil [19229 19348])
-            ("tramp-echo-mark" variable
-               (:constant-flag t
-                :default-value (concat tramp-echo-mark-marker (make-string tramp-echo-mark-marker-length 8)))
-                nil [19350 19901])
-            ("tramp-echoed-echo-mark-regexp" variable
-               (:constant-flag t
-                :default-value (format "%s\\(\\( \\)?\\)\\{%d\\}" tramp-echo-mark-marker tramp-echo-mark-marker-length))
-                nil [19903 20123])
-            ("tramp-local-end-of-line" variable (:default-value (if (memq system-type (quote (windows-nt))) "

-" "
-")) nil [20125 20332])
-            ("tramp-rsh-end-of-line" variable (:default-value "
-") nil [20334 20574])
-            ("tramp-login-prompt-regexp" variable (:default-value ".*\\(user\\|login\\)\\( .*\\)?: *") nil [20576 20845])
-            ("tramp-shell-prompt-pattern" variable (:default-value (concat "\\(?:^\\|
\\)" "[^]#$%>
-]*#?[]#$%>] *\\(\\[[0-9;]*[a-zA-Z] *\\)*")) nil [20847 21908])
-            ("tramp-password-prompt-regexp" variable (:default-value (format "^.*\\(%s\\).*:�? *" (regexp-opt (or (bound-and-true-p password-word-equivalents) (quote ("password" "passphrase")))))) nil [21910 22406])
-            ("tramp-wrong-passwd-regexp" variable (:default-value (concat "^.*" (regexp-opt (quote ("Permission denied" "Login incorrect" "Login Incorrect" "Connection refused" "Connection closed" "Timeout, server not responding." "Sorry, try again." "Name or service not known" "Host key verification failed." "No supported authentication methods left to try!")) t) ".*" "\\|" "^.*\\(" "Received signal [0-9]+" "\\).*")) nil [22408 23086])
-            ("tramp-yesno-prompt-regexp" variable (:default-value (concat (regexp-opt (quote ("Are you sure you want to continue connecting (yes/no)?")) t) "\\s-*")) nil [23088 23479])
-            ("tramp-yn-prompt-regexp" variable (:default-value (concat (regexp-opt (quote ("Store key in cache? (y/n)" "Update cached key? (y/n, Return cancels connection)")) t) "\\s-*")) nil [23481 23909])
-            ("tramp-terminal-prompt-regexp" variable (:default-value (concat "\\(" "TERM = (.*)" "\\|" "Terminal type\\? \\[.*\\]" "\\)\\s-*")) nil [23911 24260])
-            ("tramp-operation-not-permitted-regexp" variable (:default-value (concat "\\(" "preserving times.*" "\\|" "set mode" "\\)" ":\\s-*" (regexp-opt (quote ("Operation not permitted")) t))) nil [24262 24637])
-            ("tramp-copy-failed-regexp" variable (:default-value (concat "\\(.+: " (regexp-opt (quote ("Permission denied" "not a regular file" "is a directory" "No such file or directory")) t) "\\)\\s-*")) nil [24639 25042])
-            ("tramp-process-alive-regexp" variable nil nil [25044 25420])
-            ("tramp-temp-name-prefix" variable
-               (:constant-flag t
-                :default-value "tramp.")
-                nil [25422 25786])
-            ("tramp-temp-buffer-name" variable
-               (:constant-flag t
-                :default-value " *tramp temp*")
-                nil [25788 25942])
-            ("tramp-temp-buffer-file-name" variable nil nil [25944 26071])
-            ("make-variable-buffer-local" code nil nil [26072 26129])
-            ("put" code nil nil [26130 26183])
-            ("tramp-syntax" variable (:default-value (quote default)) nil [26206 26824])
-            ("tramp-set-syntax" function (:arguments ("symbol" "value")) nil [26826 28389])
-            ("eval-after-load" code nil nil [28658 28746])
-            ("tramp-syntax-values" function nil nil [28748 28960])
-            ("tramp-lookup-syntax" function (:arguments ("alist")) nil [28962 29228])
-            ("tramp-prefix-format-alist" variable
-               (:constant-flag t
-                :default-value (quote ((default . "/") (simplified . "/") (separate . "/["))))
-                nil [29230 29407])
-            ("tramp-build-prefix-format" function nil nil [29409 29495])
-            ("tramp-prefix-format" variable (:default-value (tramp-build-prefix-format)) nil [29497 29651])
-            ("tramp-build-prefix-regexp" function nil nil [29653 29739])
-            ("tramp-prefix-regexp" variable (:default-value (tramp-build-prefix-regexp)) nil [29741 29925])
-            ("tramp-method-regexp-alist" variable
-               (:constant-flag t
-                :default-value (quote ((default . "[a-zA-Z0-9-]+") (simplified . "") (separate . "[a-zA-Z0-9-]*"))))
-                nil [29927 30128])
-            ("tramp-build-method-regexp" function nil nil [30130 30216])
-            ("tramp-method-regexp" variable (:default-value (tramp-build-method-regexp)) nil [30218 30358])
-            ("tramp-postfix-method-format-alist" variable
-               (:constant-flag t
-                :default-value (quote ((default . ":") (simplified . "") (separate . "/"))))
-                nil [30360 30539])
-            ("tramp-build-postfix-method-format" function nil nil [30541 30643])
-            ("tramp-postfix-method-format" variable (:default-value (tramp-build-postfix-method-format)) nil [30645 30867])
-            ("tramp-build-postfix-method-regexp" function nil nil [30869 30958])
-            ("tramp-postfix-method-regexp" variable (:default-value (tramp-build-postfix-method-regexp)) nil [30960 31145])
-            ("tramp-user-regexp" variable
-               (:constant-flag t
-                :default-value "[^/|: 	]+")
-                nil [31147 31220])
-            ("tramp-prefix-domain-format" variable
-               (:constant-flag t
-                :default-value "%")
-                nil [31243 31345])
-            ("tramp-prefix-domain-regexp" variable
-               (:constant-flag t
-                :default-value (regexp-quote tramp-prefix-domain-format))
-                nil [31368 31551])
-            ("tramp-domain-regexp" variable
-               (:constant-flag t
-                :default-value "[a-zA-Z0-9_.-]+")
-                nil [31553 31635])
-            ("tramp-user-with-domain-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(" tramp-user-regexp "\\)" tramp-prefix-domain-regexp "\\(" tramp-domain-regexp "\\)"))
-                nil [31637 31839])
-            ("tramp-postfix-user-format" variable
-               (:constant-flag t
-                :default-value "@")
-                nil [31841 31978])
-            ("tramp-postfix-user-regexp" variable
-               (:constant-flag t
-                :default-value (regexp-quote tramp-postfix-user-format))
-                nil [31980 32158])
-            ("tramp-host-regexp" variable
-               (:constant-flag t
-                :default-value "[a-zA-Z0-9_.%-]+")
-                nil [32160 32239])
-            ("tramp-prefix-ipv6-format-alist" variable
-               (:constant-flag t
-                :default-value (quote ((default . "[") (simplified . "[") (separate . ""))))
-                nil [32241 32419])
-            ("tramp-build-prefix-ipv6-format" function nil nil [32421 32517])
-            ("tramp-prefix-ipv6-format" variable (:default-value (tramp-build-prefix-ipv6-format)) nil [32519 32677])
-            ("tramp-build-prefix-ipv6-regexp" function nil nil [32679 32762])
-            ("tramp-prefix-ipv6-regexp" variable (:default-value (tramp-build-prefix-ipv6-regexp)) nil [32764 32925])
-            ("tramp-ipv6-regexp" variable
-               (:constant-flag t
-                :default-value "\\(?:\\(?:[a-zA-Z0-9]+\\)?:\\)+[a-zA-Z0-9.]+")
-                nil [33082 33193])
-            ("tramp-postfix-ipv6-format-alist" variable
-               (:constant-flag t
-                :default-value (quote ((default . "]") (simplified . "]") (separate . ""))))
-                nil [33195 33367])
-            ("tramp-build-postfix-ipv6-format" function nil nil [33369 33467])
-            ("tramp-postfix-ipv6-format" variable (:default-value (tramp-build-postfix-ipv6-format)) nil [33469 33630])
-            ("tramp-build-postfix-ipv6-regexp" function nil nil [33632 33717])
-            ("tramp-postfix-ipv6-regexp" variable (:default-value (tramp-build-postfix-ipv6-regexp)) nil [33719 33884])
-            ("tramp-prefix-port-format" variable
-               (:constant-flag t
-                :default-value "#")
-                nil [33886 33992])
-            ("tramp-prefix-port-regexp" variable
-               (:constant-flag t
-                :default-value (regexp-quote tramp-prefix-port-format))
-                nil [33994 34177])
-            ("tramp-port-regexp" variable
-               (:constant-flag t
-                :default-value "[0-9]+")
-                nil [34179 34250])
-            ("tramp-host-with-port-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(" tramp-host-regexp "\\)" tramp-prefix-port-regexp "\\(" tramp-port-regexp "\\)"))
-                nil [34252 34448])
-            ("tramp-postfix-hop-format" variable
-               (:constant-flag t
-                :default-value "|")
-                nil [34450 34549])
-            ("tramp-postfix-hop-regexp" variable
-               (:constant-flag t
-                :default-value (regexp-quote tramp-postfix-hop-format))
-                nil [34551 34727])
-            ("tramp-postfix-host-format-alist" variable
-               (:constant-flag t
-                :default-value (quote ((default . ":") (simplified . ":") (separate . "]"))))
-                nil [34729 34913])
-            ("tramp-build-postfix-host-format" function nil nil [34915 35013])
-            ("tramp-postfix-host-format" variable (:default-value (tramp-build-postfix-host-format)) nil [35015 35186])
-            ("tramp-build-postfix-host-regexp" function nil nil [35188 35273])
-            ("tramp-postfix-host-regexp" variable (:default-value (tramp-build-postfix-host-regexp)) nil [35275 35450])
-            ("tramp-localname-regexp" variable
-               (:constant-flag t
-                :default-value ".*$")
-                nil [35452 35523])
-            ("tramp-unknown-id-string" variable
-               (:constant-flag t
-                :default-value "UNKNOWN")
-                nil [35525 35620])
-            ("tramp-unknown-id-integer" variable
-               (:constant-flag t
-                :default-value -1)
-                nil [35622 35712])
-            ("tramp-build-remote-file-name-spec-regexp" function nil nil [35737 36308])
-            ("tramp-remote-file-name-spec-regexp" variable (:default-value (tramp-build-remote-file-name-spec-regexp)) nil [36310 36476])
-            ("tramp-build-file-name-structure" function nil nil [36478 36947])
-            ("tramp-file-name-structure" variable (:default-value (tramp-build-file-name-structure)) nil [36949 37843])
-            ("tramp-build-file-name-regexp" function nil nil [37845 37918])
-            ("tramp-initial-file-name-regexp" variable
-               (:constant-flag t
-                :default-value "\\`/.+:.*:")
-                nil [37935 38093])
-            ("tramp-file-name-regexp" variable (:default-value tramp-initial-file-name-regexp) nil [38110 38427])
-            ("tramp-completion-file-name-regexp-default" variable
-               (:constant-flag t
-                :default-value (concat "\\`/\\(" "\\([^/|:]+:[^/|:]*|\\)*" (if (memq system-type (quote (cygwin windows-nt))) "\\(-\\|[^/|:]\\{2,\\}\\)" "[^/|:]+") "\\(:[^/|:]*\\)?" "\\)?\\'"))
-                nil [38429 39042])
-            ("tramp-completion-file-name-regexp-simplified" variable
-               (:constant-flag t
-                :default-value (concat "\\`/\\(" "\\([^/|:]*|\\)*" (if (memq system-type (quote (cygwin windows-nt))) "[^/|:]\\{2,\\}" "[^/|:]+") "\\)?\\'"))
-                nil [39044 39541])
-            ("tramp-completion-file-name-regexp-separate" variable
-               (:constant-flag t
-                :default-value "\\`/\\(\\[[^]]*\\)?\\'")
-                nil [39543 39751])
-            ("tramp-completion-file-name-regexp-alist" variable
-               (:constant-flag t
-                :default-value (\` ((default \, tramp-completion-file-name-regexp-default) (simplified \, tramp-completion-file-name-regexp-simplified) (separate \, tramp-completion-file-name-regexp-separate))))
-                nil [39753 40041])
-            ("tramp-build-completion-file-name-regexp" function nil nil [40043 40157])
-            ("tramp-completion-file-name-regexp" variable (:default-value (tramp-build-completion-file-name-regexp)) nil [40159 40670])
-            ("tramp-autoload-file-name-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\`/" (if (memq system-type (quote (cygwin windows-nt))) "\\(-\\|[^/|:]\\{2,\\}\\)" "[^/|:]+") ":"))
-                nil [40687 41185])
-            ("tramp-chunksize" variable (:default-value (when (memq system-type (quote (hpux))) 500)) nil [41541 44413])
-            ("tramp-process-connection-type" variable (:default-value t) nil [44664 44969])
-            ("tramp-connection-timeout" variable (:default-value 60) nil [44971 45290])
-            ("tramp-connection-min-time-diff" variable (:default-value 5) nil [45292 45883])
-            ("tramp-completion-reread-directory-timeout" variable (:default-value 10) nil [45885 46547])
-            ("tramp-current-method" variable nil nil [46574 46654])
-            ("tramp-current-user" variable nil nil [46656 46734])
-            ("tramp-current-domain" variable nil nil [46736 46817])
-            ("tramp-current-host" variable nil nil [46819 46891])
-            ("tramp-current-port" variable nil nil [46893 46965])
-            ("tramp-current-connection" variable nil nil [46967 47035])
-            ("tramp-completion-file-name-handler-alist" variable
-               (:constant-flag t
-                :default-value (quote ((file-name-all-completions . tramp-completion-handle-file-name-all-completions) (file-name-completion . tramp-completion-handle-file-name-completion))))
-                nil [47037 47478])
-            ("tramp-foreign-file-name-handler-alist" variable nil nil [47574 47800])
-            ("cl-defstruct" code nil nil [48112 48209])
-            ("tramp-file-name-user-domain" function (:arguments ("vec")) nil [48211 48512])
-            ("tramp-file-name-host-port" function (:arguments ("vec")) nil [48514 48803])
-            ("tramp-file-name-port-or-default" function (:arguments ("vec")) nil [48805 49014])
-            ("tramp-file-name-equal-p" function (:arguments ("vec1" "vec2")) nil [49016 49468])
-            ("tramp-get-method-parameter" function (:arguments ("vec" "param")) nil [49470 50128])
-            ("tramp-file-name-unquote-localname" function (:arguments ("vec")) nil [50187 50349])
-            ("tramp-tramp-file-p" function (:arguments ("name")) nil [50372 50749])
-            ("tramp-find-method" function (:arguments ("method" "user" "host")) nil [50751 51577])
-            ("tramp-find-user" function (:arguments ("method" "user" "host")) nil [51579 52252])
-            ("tramp-find-host" function (:arguments ("method" "user" "host")) nil [52254 52761])
-            ("tramp-dissect-file-name" function (:arguments ("name" "nodefault")) nil [52763 54487])
-            ("tramp-buffer-name" function (:arguments ("vec")) nil [54489 54854])
-            ("tramp-make-tramp-file-name" function (:arguments ("method" "user" "domain" "host" "port" "localname" "hop")) nil [54856 55703])
-            ("tramp-completion-make-tramp-file-name" function (:arguments ("method" "user" "host" "localname")) nil [55705 56513])
-            ("tramp-get-buffer" function (:arguments ("vec")) nil [56515 57240])
-            ("tramp-get-connection-buffer" function (:arguments ("vec")) nil [57242 57529])
-            ("tramp-get-connection-name" function (:arguments ("vec")) nil [57531 57810])
-            ("tramp-get-connection-process" function (:arguments ("vec")) nil [57812 58083])
-            ("tramp-set-connection-local-variables" function (:arguments ("vec")) nil [58085 58693])
-            ("tramp-set-connection-local-variables-for-buffer" function nil nil [58695 59307])
-            ("tramp-debug-buffer-name" function (:arguments ("vec")) nil [59309 59691])
-            ("tramp-debug-outline-regexp" variable
-               (:constant-flag t
-                :default-value "[0-9]+:[0-9]+:[0-9]+\\.[0-9]+ [a-z0-9-]+ (\\([0-9]+\\)) #")
-                nil [59693 59857])
-            ("tramp-debug-outline-level" function nil nil [59859 60122])
-            ("tramp-get-debug-buffer" function (:arguments ("vec")) nil [60124 61075])
-            ("tramp-debug-message" function (:arguments ("vec" "fmt-string" "arguments")) nil [61077 63069])
-            ("tramp-message-show-message" variable (:default-value t) nil [63071 63273])
-            ("tramp-message" function (:arguments ("vec-or-proc" "level" "fmt-string" "arguments")) nil [63275 64992])
-            ("tramp-backtrace" function (:arguments ("vec-or-proc")) nil [64994 65381])
-            ("tramp-error" function (:arguments ("vec-or-proc" "signal" "fmt-string" "arguments")) nil [65383 66240])
-            ("tramp-error-with-buffer" function (:arguments ("buf" "vec-or-proc" "signal" "fmt-string" "arguments")) nil [66242 67676])
-            ("tramp-with-demoted-errors" function (:arguments ("vec-or-proc" "format" "body")) nil [67678 68197])
-            ("with-parsed-tramp-file-name" function (:arguments ("filename" "var" "body")) nil [68199 69658])
-            ("put" code nil nil [69660 69718])
-            ("put" code nil nil [69719 69792])
-            ("font-lock-add-keywords" code nil nil [69793 69873])
-            ("tramp-progress-reporter-update" function (:arguments ("reporter" "value")) nil [69875 70166])
-            ("with-tramp-progress-reporter" function (:arguments ("vec" "level" "message" "body")) nil [70168 71176])
-            ("font-lock-add-keywords" code nil nil [71178 71260])
-            ("with-tramp-file-property" function (:arguments ("vec" "file" "property" "body")) nil [71262 71837])
-            ("put" code nil nil [71839 71894])
-            ("put" code nil nil [71895 71946])
-            ("font-lock-add-keywords" code nil nil [71947 72024])
-            ("with-tramp-connection-property" function (:arguments ("key" "property" "body")) nil [72026 72509])
-            ("put" code nil nil [72511 72572])
-            ("put" code nil nil [72573 72630])
-            ("font-lock-add-keywords" code nil nil [72631 72715])
-            ("tramp-drop-volume-letter" function (:arguments ("name")) nil [72717 73345])
-            ("tramp-set-completion-function" function (:arguments ("method" "function-list")) nil [73404 74920])
-            ("tramp-get-completion-function" function (:arguments ("method")) nil [74922 75382])
-            ("tramp-rfn-eshadow-overlay" variable nil nil [75425 75459])
-            ("make-variable-buffer-local" code nil nil [75460 75515])
-            ("tramp-rfn-eshadow-setup-minibuffer" function nil nil [75517 76254])
-            ("add-hook" code nil nil [76256 76340])
-            ("add-hook" code nil nil [76341 76479])
-            ("tramp-rfn-eshadow-update-overlay-regexp" function nil nil [76481 76590])
-            ("tramp-rfn-eshadow-update-overlay" function nil nil [76592 77675])
-            ("add-hook" code nil nil [77677 77757])
-            ("add-hook" code nil nil [77758 77892])
-            ("tramp-inodes" variable nil nil [78175 78232])
-            ("tramp-devices" variable nil nil [78604 78662])
-            ("tramp-default-file-modes" function (:arguments ("filename")) nil [78664 78969])
-            ("tramp-replace-environment-variables" function (:arguments ("filename")) nil [78971 79669])
-            ("tramp-find-file-name-coding-system-alist" function (:arguments ("filename" "tmpname")) nil [79671 80391])
-            ("tramp-run-real-handler" function (:arguments ("operation" "args")) nil [80393 80969])
-            ("tramp-file-name-for-operation" function (:arguments ("operation" "args")) nil [81410 84425])
-            ("tramp-find-foreign-file-name-handler" function (:arguments ("filename" "_operation")) nil [84427 84823])
-            ("tramp-debug-on-error" variable nil nil [84825 84909])
-            ("tramp-condition-case-unless-debug" function (:arguments ("var" "bodyform" "handlers")) nil [84911 85164])
-            ("tramp-locked" variable nil nil [86219 86393])
-            ("tramp-locker" variable nil nil [86395 86571])
-            ("tramp-file-name-handler" function (:arguments ("operation" "args")) nil [86591 90420])
-            ("tramp-completion-file-name-handler" function (:arguments ("operation" "args")) nil [90422 90801])
-            ("progn" code nil nil [90818 91122])
-            ("progn" code nil nil [91332 91657])
-            ("tramp-use-absolute-autoload-file-names" function nil nil [91720 92524])
-            ("eval-after-load" code nil nil [92526 92591])
-            ("tramp-register-file-name-handlers" function nil nil [92593 94073])
-            ("eval-after-load" code nil nil [94075 94135])
-            ("progn" code nil nil [94158 94857])
-            ("tramp-exists-file-name-handler" function (:arguments ("operation" "args")) nil [94859 95602])
-            ("progn" code nil nil [95619 95979])
-            ("add-hook" code nil nil [95981 96043])
-            ("tramp-completion-mode" variable nil nil [96114 96228])
-            ("make-obsolete-variable" code nil nil [96229 96298])
-            ("tramp-completion-mode-p" function nil nil [96300 96534])
-            ("tramp-connectable-p" function (:arguments ("filename")) nil [96536 96959])
-            ("tramp-completion-handle-file-name-all-completions" function (:arguments ("filename" "directory")) nil [97151 99183])
-            ("tramp-completion-handle-file-name-completion" function (:arguments ("filename" "directory" "predicate")) nil [99243 99651])
-            ("tramp-completion-dissect-file-name" function (:arguments ("name")) nil [100334 102756])
-            ("tramp-completion-dissect-file-name1" function (:arguments ("structure" "name")) nil [102758 103327])
-            ("tramp-get-completion-methods" function (:arguments ("partial-method")) nil [103428 103747])
-            ("tramp-get-completion-user-host" function (:arguments ("method" "partial-user" "partial-host" "user" "host")) nil [103816 104735])
-            ("tramp-parse-default-user-host" function (:arguments ("method")) nil [104737 105061])
-            ("tramp-parse-group" function (:arguments ("regexp" "match-level" "skip-regexp")) nil [105084 105436])
-            ("tramp-parse-file" function (:arguments ("filename" "function")) nil [105459 105928])
-            ("tramp-parse-rhosts" function (:arguments ("filename")) nil [105951 106135])
-            ("tramp-parse-rhosts-group" function nil nil [106137 106547])
-            ("tramp-parse-shosts" function (:arguments ("filename")) nil [106570 106742])
-            ("tramp-parse-shosts-group" function nil nil [106744 106919])
-            ("tramp-parse-sconfig" function (:arguments ("filename")) nil [106942 107116])
-            ("tramp-parse-sconfig-group" function nil nil [107118 107317])
-            ("tramp-parse-shostkeys-sknownhosts" function (:arguments ("dirname" "regexp")) nil [107340 107860])
-            ("tramp-parse-shostkeys" function (:arguments ("dirname")) nil [107883 108108])
-            ("tramp-parse-sknownhosts" function (:arguments ("dirname")) nil [108131 108372])
-            ("tramp-parse-hosts" function (:arguments ("filename")) nil [108395 108565])
-            ("tramp-parse-hosts-group" function nil nil [108567 108771])
-            ("tramp-parse-passwd" function (:arguments ("filename")) nil [108794 109269])
-            ("tramp-parse-passwd-group" function nil nil [109271 109606])
-            ("tramp-parse-etc-group" function (:arguments ("filename")) nil [109629 110109])
-            ("tramp-parse-etc-group-group" function nil nil [110111 110488])
-            ("tramp-parse-netrc" function (:arguments ("filename")) nil [110511 110678])
-            ("tramp-parse-netrc-group" function nil nil [110680 111098])
-            ("tramp-parse-putty" function (:arguments ("registry-or-dirname")) nil [111121 111702])
-            ("tramp-parse-putty-group" function (:arguments ("registry")) nil [111704 112035])
-            ("tramp-handle-file-local-copy-hook" variable nil nil [112101 112221])
-            ("tramp-handle-write-region-hook" variable nil nil [112223 112337])
-            ("tramp-handle-add-name-to-file" function (:arguments ("filename" "newname" "ok-if-already-exists")) nil [112339 113365])
-            ("tramp-handle-directory-file-name" function (:arguments ("directory")) nil [113367 113882])
-            ("tramp-handle-directory-files" function (:arguments ("directory" "full" "match" "nosort")) nil [113884 114427])
-            ("tramp-handle-directory-files-and-attributes" function (:arguments ("directory" "full" "match" "nosort" "id-format")) nil [114429 114759])
-            ("tramp-handle-dired-uncache" function (:arguments ("dir")) nil [114761 114992])
-            ("tramp-handle-file-accessible-directory-p" function (:arguments ("filename")) nil [114994 115179])
-            ("tramp-handle-file-equal-p" function (:arguments ("filename1" "filename2")) nil [115181 115653])
-            ("tramp-handle-file-exists-p" function (:arguments ("filename")) nil [115655 115784])
-            ("tramp-handle-file-in-directory-p" function (:arguments ("filename" "directory")) nil [115786 116280])
-            ("tramp-handle-file-modes" function (:arguments ("filename")) nil [116282 116562])
-            ("tramp-handle-file-name-as-directory" function (:arguments ("file")) nil [116630 117407])
-            ("tramp-handle-file-name-case-insensitive-p" function (:arguments ("filename")) nil [117409 119606])
-            ("tramp-handle-file-name-completion" function (:arguments ("filename" "directory" "predicate")) nil [119608 120428])
-            ("tramp-handle-file-name-directory" function (:arguments ("file")) nil [120430 121186])
-            ("tramp-handle-file-name-nondirectory" function (:arguments ("file")) nil [121188 121409])
-            ("tramp-handle-file-newer-than-file-p" function (:arguments ("file1" "file2")) nil [121411 121782])
-            ("tramp-handle-file-regular-p" function (:arguments ("filename")) nil [121784 122000])
-            ("tramp-handle-file-remote-p" function (:arguments ("filename" "identification" "connected")) nil [122002 123000])
-            ("tramp-handle-file-selinux-context" function (:arguments ("_filename")) nil [123002 123150])
-            ("tramp-handle-file-symlink-p" function (:arguments ("filename")) nil [123152 123341])
-            ("tramp-handle-file-truename" function (:arguments ("filename")) nil [123343 124867])
-            ("tramp-handle-find-backup-file-name" function (:arguments ("filename")) nil [124869 125489])
-            ("tramp-handle-insert-directory" function (:arguments ("filename" "switches" "wildcard" "full-directory-p")) nil [125491 126697])
-            ("tramp-handle-insert-file-contents" function (:arguments ("filename" "visit" "beg" "end" "replace")) nil [126699 130745])
-            ("tramp-handle-load" function (:arguments ("file" "noerror" "nomessage" "nosuffix" "must-suffix")) nil [130747 131883])
-            ("tramp-handle-make-symbolic-link" function (:arguments ("target" "linkname" "ok-if-already-exists")) nil [131885 132502])
-            ("tramp-handle-shell-command" function (:arguments ("command" "output-buffer" "error-buffer")) nil [132504 135494])
-            ("tramp-handle-substitute-in-file-name" function (:arguments ("filename")) nil [135496 136510])
-            ("tramp-handle-set-visited-file-modtime" function (:arguments ("time-list")) nil [136512 137163])
-            ("tramp-handle-verify-visited-file-modtime" function (:arguments ("buf")) nil [137165 138700])
-            ("tramp-handle-file-notify-add-watch" function (:arguments ("filename" "_flags" "_callback")) nil [138702 139099])
-            ("tramp-handle-file-notify-rm-watch" function (:arguments ("proc")) nil [139101 139410])
-            ("tramp-handle-file-notify-valid-p" function (:arguments ("proc")) nil [139412 139816])
-            ("tramp-action-login" function (:arguments ("_proc" "vec")) nil [140047 140651])
-            ("tramp-action-password" function (:arguments ("proc" "vec")) nil [140653 141580])
-            ("tramp-action-succeed" function (:arguments ("_proc" "_vec")) nil [141582 141695])
-            ("tramp-action-permission-denied" function (:arguments ("proc" "_vec")) nil [141697 141842])
-            ("tramp-action-yesno" function (:arguments ("proc" "vec")) nil [141844 142460])
-            ("tramp-action-yn" function (:arguments ("proc" "vec")) nil [142462 143068])
-            ("tramp-action-terminal" function (:arguments ("_proc" "vec")) nil [143070 143491])
-            ("tramp-action-process-alive" function (:arguments ("proc" "_vec")) nil [143493 143655])
-            ("tramp-action-out-of-band" function (:arguments ("proc" "vec")) nil [143657 144656])
-            ("tramp-process-one-action" function (:arguments ("proc" "vec" "actions")) nil [144701 145450])
-            ("tramp-process-actions" function (:arguments ("proc" "vec" "pos" "actions" "timeout")) nil [145452 147567])
-            ("tramp-accept-process-output" function (:arguments ("proc" "timeout")) nil [147593 148325])
-            ("tramp-check-for-regexp" function (:arguments ("proc" "regexp")) nil [148327 149901])
-            ("tramp-wait-for-regexp" function (:arguments ("proc" "timeout" "regexp")) nil [149903 151083])
-            ("tramp-send-string" function (:arguments ("vec" "string")) nil [151335 152912])
-            ("tramp-get-inode" function (:arguments ("vec")) nil [152914 153137])
-            ("tramp-get-device" function (:arguments ("vec")) nil [153139 153382])
-            ("tramp-equal-remote" function (:arguments ("file1" "file2")) nil [153384 154034])
-            ("tramp-mode-string-to-int" function (:arguments ("mode-string")) nil [154057 156779])
-            ("tramp-file-mode-type-map" variable
-               (:constant-flag t
-                :default-value (quote ((0 . "-") (1 . "p") (2 . "c") (3 . "m") (4 . "d") (5 . "?") (6 . "b") (7 . "?") (8 . "-") (9 . "n") (10 . "l") (11 . "?") (12 . "s") (13 . "D") (14 . "w"))))
-                nil [156781 157511])
-            ("tramp-file-mode-from-int" function (:arguments ("mode")) nil [157534 158174])
-            ("tramp-file-mode-permissions" function (:arguments ("perm" "suid" "suid-text")) nil [158176 158601])
-            ("tramp-get-local-uid" function (:arguments ("id-format")) nil [158632 158830])
-            ("tramp-get-local-gid" function (:arguments ("id-format")) nil [158853 159219])
-            ("tramp-get-local-locale" function (:arguments ("vec")) nil [159221 160069])
-            ("tramp-check-cached-permissions" function (:arguments ("vec" "access")) nil [160092 162358])
-            ("tramp-local-host-p" function (:arguments ("vec")) nil [162381 163465])
-            ("tramp-get-remote-tmpdir" function (:arguments ("vec")) nil [163467 164094])
-            ("tramp-make-tramp-temp-file" function (:arguments ("vec")) nil [164117 164912])
-            ("tramp-delete-temp-file-function" function nil nil [164914 165119])
-            ("add-hook" code nil nil [165121 165182])
-            ("add-hook" code nil nil [165183 165301])
-            ("tramp-handle-make-auto-save-file-name" function nil nil [165303 166535])
-            ("tramp-subst-strs-in-string" function (:arguments ("alist" "string")) nil [166537 166974])
-            ("tramp-handle-temporary-file-directory" function nil nil [166976 167363])
-            ("tramp-handle-make-nearby-temp-file" function (:arguments ("prefix" "dir-flag" "suffix")) nil [167365 167624])
-            ("tramp-call-process" function (:arguments ("vec" "program" "infile" "destination" "display" "args")) nil [167664 169002])
-            ("tramp-call-process-region" function (:arguments ("vec" "start" "end" "program" "delete" "buffer" "display" "args")) nil [169004 170333])
-            ("tramp-read-passwd" function (:arguments ("proc" "prompt")) nil [170356 172439])
-            ("tramp-clear-passwd" function (:arguments ("vec")) nil [172462 173336])
-            ("tramp-half-a-year" variable
-               (:constant-flag t
-                :default-value (quote (241 17024)))
-                nil [173374 173454])
-            ("tramp-time-diff" function (:arguments ("t1" "t2")) nil [173477 173775])
-            ("tramp-unquote-shell-quote-argument" function (:arguments ("s")) nil [173777 173962])
-            ("tramp-shell-quote-argument" function (:arguments ("s")) nil [175089 175658])
-            ("tramp-interrupt-process" function (:arguments ("process" "_current-group")) nil [175770 177049])
-            ("when" code nil nil [177109 177343])
-            ("tramp-eshell-directory-change" function nil nil [177497 178082])
-            ("eval-after-load" code nil nil [178084 178498])
-            ("tramp-unload-tramp" function (:user-visible-flag t) nil [178726 178989])
-            ("tramp" package nil nil [178991 179007]))          
-      :file "tramp.el"
-      :pointmax 180116
-      :fsize 180116
-      :lastmodtime '(23525 29579 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("auth-source" include nil nil [1091 1113])
-            ("advice" include nil nil [1114 1131])
-            ("cl-lib" include nil nil [1132 1149])
-            ("custom" include nil nil [1150 1167])
-            ("format-spec" include nil nil [1168 1190])
-            ("parse-time" include nil nil [1191 1212])
-            ("password-cache" include nil nil [1213 1238])
-            ("shell" include nil nil [1239 1255])
-            ("timer" include nil nil [1256 1272])
-            ("ucs-normalize" include nil nil [1273 1297])
-            ("trampver" include nil nil [1299 1318])
-            ("tramp-loaddefs" include nil nil [1319 1344])
-            ("tramp-compat-funcall" function (:arguments ("function" "arguments")) nil [1527 1738])
-            ("tramp-compat-temporary-file-directory" function nil nil [1740 2051])
-            ("tramp-compat-make-temp-file" function (:arguments ("f" "dir-flag")) nil [2053 2443])
-            ("defalias" code nil nil [2518 2694])
-            ("tramp-compat-process-running-p" function (:arguments ("process-name")) nil [2696 3814])
-            ("tramp-compat-user-error" function (:arguments ("vec-or-proc" "format" "args")) nil [3860 4051])
-            ("unless" code nil nil [4114 4207])
-            ("if" code nil nil [4262 4603])
-            ("if" code nil nil [4605 4904])
-            ("if" code nil nil [4906 5307])
-            ("if" code nil nil [5309 5714])
-            ("if" code nil nil [5716 6178])
-            ("if" code nil nil [6180 6511])
-            ("if" code nil nil [6513 6825])
-            ("unless" code nil nil [6869 6940])
-            ("if" code nil nil [6986 7431])
-            ("tramp-file-missing" variable
-               (:constant-flag t
-                :default-value (if (get (quote file-missing) (quote error-conditions)) (quote file-missing) (quote file-error)))
-                nil [7480 7631])
-            ("add-hook" code nil nil [7633 7765])
-            ("if" code nil nil [8635 9205])
-            ("if" code nil nil [8228 8631])
-            ("if" code nil nil [7885 8224])
-            ("tramp-compat-tramp-syntax" function nil nil [9298 9477])
-            ("tramp-compat-tramp-file-name-slots" function nil nil [9539 9756])
-            ("tramp-compat" package nil nil [9758 9781]))          
-      :file "tramp-compat.el"
-      :pointmax 9824
-      :fsize 9823
-      :lastmodtime '(23525 29578 0 0)
-      :unmatched-syntax '((close-paren 9205 . 9206) (symbol 7866 . 7882) (open-paren 7865 . 7866)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tramp" include nil nil [1125 1141])
-            ("dired" include nil nil [1189 1205])
-            ("declare-function" code nil nil [1208 1256])
-            ("dired-compress-file-suffixes" variable nil nil [1257 1294])
-            ("vc-handled-backends" variable nil nil [1295 1323])
-            ("vc-bzr-program" variable nil nil [1324 1347])
-            ("vc-git-program" variable nil nil [1348 1371])
-            ("vc-hg-program" variable nil nil [1372 1394])
-            ("tramp-inline-compress-start-size" variable (:default-value 4096) nil [1417 1773])
-            ("tramp-copy-size-limit" variable (:default-value 10240) nil [1796 2064])
-            ("tramp-terminal-type" variable (:default-value "dumb") nil [2087 2464])
-            ("tramp-histfile-override" variable (:default-value "~/.tramp_history") nil [2487 3251])
-            ("tramp-display-escape-sequence-regexp" variable
-               (:constant-flag t
-                :default-value "[[;0-9]+m")
-                nil [3274 3397])
-            ("tramp-device-escape-sequence-regexp" variable
-               (:constant-flag t
-                :default-value "[[0-9]+n")
-                nil [3420 3536])
-            ("tramp-end-of-output" variable (:default-value (format "///%s#$" (md5 (concat (prin1-to-string process-environment) (current-time-string))))) nil [3740 4039])
-            ("tramp-initial-end-of-output" variable
-               (:constant-flag t
-                :default-value "#$ ")
-                nil [4062 4149])
-            ("tramp-end-of-heredoc" variable
-               (:constant-flag t
-                :default-value (md5 tramp-end-of-output))
-                nil [4151 4261])
-            ("tramp-use-ssh-controlmaster-options" variable (:default-value t) nil [4284 4456])
-            ("tramp-ssh-controlmaster-options" variable nil nil [4458 4977])
-            ("add-to-list" code nil nil [5058 5476])
-            ("add-to-list" code nil nil [5498 5878])
-            ("add-to-list" code nil nil [5900 6424])
-            ("add-to-list" code nil nil [6446 7000])
-            ("add-to-list" code nil nil [7022 7642])
-            ("add-to-list" code nil nil [7664 7919])
-            ("add-to-list" code nil nil [7941 8200])
-            ("add-to-list" code nil nil [8222 8557])
-            ("add-to-list" code nil nil [8579 8939])
-            ("add-to-list" code nil nil [8961 9233])
-            ("add-to-list" code nil nil [9255 9980])
-            ("add-to-list" code nil nil [10002 10285])
-            ("add-to-list" code nil nil [10307 10545])
-            ("add-to-list" code nil nil [10567 11206])
-            ("add-to-list" code nil nil [11228 11481])
-            ("add-to-list" code nil nil [11503 11789])
-            ("add-to-list" code nil nil [11811 12081])
-            ("add-to-list" code nil nil [12103 12630])
-            ("add-to-list" code nil nil [12652 13080])
-            ("add-to-list" code nil nil [13102 13765])
-            ("add-to-list" code nil nil [13787 14410])
-            ("add-to-list" code nil nil [14432 14827])
-            ("add-to-list" code nil nil [14850 14943])
-            ("add-to-list" code nil nil [14966 15096])
-            ("add-to-list" code nil nil [15269 15449])
-            ("tramp-completion-function-alist-rsh" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-parse-rhosts "/etc/hosts.equiv") (tramp-parse-rhosts "~/.rhosts"))))
-                nil [15472 15674])
-            ("tramp-completion-function-alist-ssh" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-parse-rhosts "/etc/hosts.equiv") (tramp-parse-rhosts "/etc/shosts.equiv") (tramp-parse-shosts "/etc/ssh_known_hosts") (tramp-parse-sconfig "/etc/ssh_config") (tramp-parse-shostkeys "/etc/ssh2/hostkeys") (tramp-parse-sknownhosts "/etc/ssh2/knownhosts") (tramp-parse-rhosts "~/.rhosts") (tramp-parse-rhosts "~/.shosts") (tramp-parse-shosts "~/.ssh/known_hosts") (tramp-parse-sconfig "~/.ssh/config") (tramp-parse-shostkeys "~/.ssh2/hostkeys") (tramp-parse-sknownhosts "~/.ssh2/knownhosts"))))
-                nil [15697 16403])
-            ("tramp-completion-function-alist-telnet" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-parse-hosts "/etc/hosts"))))
-                nil [16426 16590])
-            ("tramp-completion-function-alist-su" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-parse-passwd "/etc/passwd"))))
-                nil [16613 16771])
-            ("tramp-completion-function-alist-sg" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-parse-etc-group "/etc/group"))))
-                nil [16794 16954])
-            ("tramp-completion-function-alist-putty" variable
-               (:constant-flag t
-                :default-value (\` ((tramp-parse-putty (\, (if (memq system-type (quote (windows-nt))) "HKEY_CURRENT_USER\\Software\\SimonTatham\\PuTTY\\Sessions" "~/.putty/sessions"))))))
-                nil [16977 17258])
-            ("eval-after-load" code nil nil [17281 19097])
-            ("tramp-remote-path" variable (:default-value (quote (tramp-default-remote-path "/bin" "/usr/bin" "/sbin" "/usr/sbin" "/usr/local/bin" "/usr/local/sbin" "/local/bin" "/local/freeware/bin" "/local/gnu/bin" "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin" "/opt/bin" "/opt/sbin" "/opt/local/bin"))) nil [19488 20941])
-            ("tramp-remote-process-environment" variable (:default-value (quote ("ENV=''" "TMOUT=0" "LC_CTYPE=''" "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" "PAGER=cat" "autocorrect=" "correct="))) nil [20964 21846])
-            ("tramp-sh-extra-args" variable (:default-value (quote (("/bash\\'" . "-norc -noprofile")))) nil [21869 22407])
-            ("tramp-actions-before-shell" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-login-prompt-regexp tramp-action-login) (tramp-password-prompt-regexp tramp-action-password) (tramp-wrong-passwd-regexp tramp-action-permission-denied) (shell-prompt-pattern tramp-action-succeed) (tramp-shell-prompt-pattern tramp-action-succeed) (tramp-yesno-prompt-regexp tramp-action-yesno) (tramp-yn-prompt-regexp tramp-action-yn) (tramp-terminal-prompt-regexp tramp-action-terminal) (tramp-process-alive-regexp tramp-action-process-alive))))
-                nil [22409 23412])
-            ("tramp-actions-copy-out-of-band" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-password-prompt-regexp tramp-action-password) (tramp-wrong-passwd-regexp tramp-action-permission-denied) (tramp-copy-failed-regexp tramp-action-permission-denied) (tramp-process-alive-regexp tramp-action-out-of-band))))
-                nil [23414 23844])
-            ("tramp-uudecode" variable
-               (:constant-flag t
-                :default-value "(echo begin 600 %t; tail -n +2) | uudecode
-cat %t
-rm -f %t")
-                nil [23846 24156])
-            ("tramp-perl-file-truename" variable
-               (:constant-flag t
-                :default-value "%s -e '
-use File::Spec;
-use Cwd \"realpath\";
-
-sub myrealpath {
-    my ($file) = @_;
-    return realpath($file) if (-e $file || -l $file);
-}
-
-sub recursive {
-    my ($volume, @dirs) = @_;
-    my $real = myrealpath(File::Spec->catpath(
-                   $volume, File::Spec->catdir(@dirs), \"\"));
-    if ($real) {
-        my ($vol, $dir) = File::Spec->splitpath($real, 1);
-        return ($vol, File::Spec->splitdir($dir));
-    }
-    else {
-        my $last = pop(@dirs);
-        ($volume, @dirs) = recursive($volume, @dirs);
-        push(@dirs, $last);
-        return ($volume, @dirs);
-    }
-}
-
-$result = myrealpath($ARGV[0]);
-if (!$result) {
-    my ($vol, $dir) = File::Spec->splitpath($ARGV[0], 1);
-    ($vol, @dirs) = recursive($vol, File::Spec->splitdir($dir));
-
-    $result = File::Spec->catpath($vol, File::Spec->catdir(@dirs), \"\");
-}
-
-$result =~ s/\"/\\\\\"/g;
-print \"\\\"$result\\\"\\n\";
-' \"$1\" 2>/dev/null")
-                nil [24158 25353])
-            ("tramp-perl-file-name-all-completions" variable
-               (:constant-flag t
-                :default-value "%s -e '
-opendir(d, $ARGV[0]) || die(\"$ARGV[0]: $!\\nfail\\n\");
-@files = readdir(d); closedir(d);
-foreach $f (@files) {
- if (-d \"$ARGV[0]/$f\") {
-  print \"$f/\\n\";
- }
- else {
-  print \"$f\\n\";
- }
-}
-print \"ok\\n\"
-' \"$1\" 2>/dev/null")
-                nil [25355 25893])
-            ("tramp-perl-file-attributes" variable
-               (:constant-flag t
-                :default-value "%s -e '
-@stat = lstat($ARGV[0]);
-if (!@stat) {
-    print \"nil\\n\";
-    exit 0;
-}
-if (($stat[2] & 0170000) == 0120000)
-{
-    $type = readlink($ARGV[0]);
-    $type =~ s/\"/\\\\\"/g;
-    $type = \"\\\"$type\\\"\";
-}
-elsif (($stat[2] & 0170000) == 040000)
-{
-    $type = \"t\";
-}
-else
-{
-    $type = \"nil\"
-};
-$uid = ($ARGV[1] eq \"integer\") ? $stat[4] : \"\\\"\" . getpwuid($stat[4]) . \"\\\"\";
-$gid = ($ARGV[1] eq \"integer\") ? $stat[5] : \"\\\"\" . getgrgid($stat[5]) . \"\\\"\";
-printf(
-    \"(%%s %%u %%s %%s (%%u %%u) (%%u %%u) (%%u %%u) %%u.0 %%u t (%%u . %%u) -1)\\n\",
-    $type,
-    $stat[3],
-    $uid,
-    $gid,
-    $stat[8] >> 16 & 0xffff,
-    $stat[8] & 0xffff,
-    $stat[9] >> 16 & 0xffff,
-    $stat[9] & 0xffff,
-    $stat[10] >> 16 & 0xffff,
-    $stat[10] & 0xffff,
-    $stat[7],
-    $stat[2],
-    $stat[1] >> 16 & 0xffff,
-    $stat[1] & 0xffff
-);' \"$1\" \"$2\" 2>/dev/null")
-                nil [26241 27407])
-            ("tramp-perl-directory-files-and-attributes" variable
-               (:constant-flag t
-                :default-value "%s -e '
-chdir($ARGV[0]) or printf(\"\\\"Cannot change to $ARGV[0]: $''!''\\\"\\n\"), exit();
-opendir(DIR,\".\") or printf(\"\\\"Cannot open directory $ARGV[0]: $''!''\\\"\\n\"), exit();
-@list = readdir(DIR);
-closedir(DIR);
-$n = scalar(@list);
-printf(\"(\\n\");
-for($i = 0; $i < $n; $i++)
-{
-    $filename = $list[$i];
-    @stat = lstat($filename);
-    if (($stat[2] & 0170000) == 0120000)
-    {
-        $type = readlink($filename);
-        $type =~ s/\"/\\\\\"/g;
-        $type = \"\\\"$type\\\"\";
-    }
-    elsif (($stat[2] & 0170000) == 040000)
-    {
-        $type = \"t\";
-    }
-    else
-    {
-        $type = \"nil\"
-    };
-    $uid = ($ARGV[1] eq \"integer\") ? $stat[4] : \"\\\"\" . getpwuid($stat[4]) . \"\\\"\";
-    $gid = ($ARGV[1] eq \"integer\") ? $stat[5] : \"\\\"\" . getgrgid($stat[5]) . \"\\\"\";
-    $filename =~ s/\"/\\\\\"/g;
-    printf(
-        \"(\\\"%%s\\\" %%s %%u %%s %%s (%%u %%u) (%%u %%u) (%%u %%u) %%u.0 %%u t (%%u . %%u) (%%u . %%u))\\n\",
-        $filename,
-        $type,
-        $stat[3],
-        $uid,
-        $gid,
-        $stat[8] >> 16 & 0xffff,
-        $stat[8] & 0xffff,
-        $stat[9] >> 16 & 0xffff,
-        $stat[9] & 0xffff,
-        $stat[10] >> 16 & 0xffff,
-        $stat[10] & 0xffff,
-        $stat[7],
-        $stat[2],
-        $stat[1] >> 16 & 0xffff,
-        $stat[1] & 0xffff,
-        $stat[0] >> 16 & 0xffff,
-        $stat[0] & 0xffff);
-}
-printf(\")\\n\");' \"$1\" \"$2\" 2>/dev/null")
-                nil [27409 29118])
-            ("tramp-perl-encode-with-module" variable
-               (:constant-flag t
-                :default-value "%s -MMIME::Base64 -0777 -ne 'print encode_base64($_)' 2>/dev/null")
-                nil [29154 29537])
-            ("tramp-perl-decode-with-module" variable
-               (:constant-flag t
-                :default-value "%s -MMIME::Base64 -0777 -ne 'print decode_base64($_)' 2>/dev/null")
-                nil [29539 29922])
-            ("tramp-perl-encode" variable
-               (:constant-flag t
-                :default-value "%s -e '
-# This script contributed by Juanma Barranquero <lektu@terra.es>.
-# Copyright (C) 2002-2018 Free Software Foundation, Inc.
-use strict;
-
-my %%trans = do {
-    my $i = 0;
-    map {(substr(unpack(q(B8), chr $i++), 2, 6), $_)}
-      split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/);
-};
-my $data;
-
-# We read in chunks of 54 bytes, to generate output lines
-# of 72 chars (plus end of line)
-while (read STDIN, $data, 54) {
-    my $pad = q();
-
-    # Only for the last chunk, and only if did not fill the last three-byte packet
-    if (eof) {
-        my $mod = length($data) %% 3;
-        $pad = q(=) x (3 - $mod) if $mod;
-    }
-
-    # Not the fastest method, but it is simple: unpack to binary string, split
-    # by groups of 6 bits and convert back from binary to byte; then map into
-    # the translation table
-    print
-      join q(),
-        map($trans{$_},
-            (substr(unpack(q(B*), $data) . q(00000), 0, 432) =~ /....../g)),
-              $pad,
-                qq(\\n);
-}' 2>/dev/null")
-                nil [29924 31165])
-            ("tramp-perl-decode" variable
-               (:constant-flag t
-                :default-value "%s -e '
-# This script contributed by Juanma Barranquero <lektu@terra.es>.
-# Copyright (C) 2002-2018 Free Software Foundation, Inc.
-use strict;
-
-my %%trans = do {
-    my $i = 0;
-    map {($_, substr(unpack(q(B8), chr $i++), 2, 6))}
-      split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/)
-};
-
-my %%bytes = map {(unpack(q(B8), chr $_), chr $_)} 0 .. 255;
-
-binmode(\\*STDOUT);
-
-# We are going to accumulate into $pending to accept any line length
-# (we do not check they are <= 76 chars as the RFC says)
-my $pending = q();
-
-while (my $data = <STDIN>) {
-    chomp $data;
-
-    # If we find one or two =, we have reached the end and
-    # any following data is to be discarded
-    my $finished = $data =~ s/(==?).*/$1/;
-    $pending .= $data;
-
-    my $len = length($pending);
-    my $chunk = substr($pending, 0, $len & ~3);
-    $pending = substr($pending, $len & ~3 + 1);
-
-    # Easy method: translate from chars to (pregenerated) six-bit packets, join,
-    # split in 8-bit chunks and convert back to char.
-    print join q(),
-      map $bytes{$_},
-        ((join q(), map {$trans{$_} || q()} split //, $chunk) =~ /......../g);
-
-    last if $finished;
-}' 2>/dev/null")
-                nil [31167 32567])
-            ("tramp-perl-pack" variable
-               (:constant-flag t
-                :default-value "%s -e 'binmode STDIN; binmode STDOUT; print pack(q{u*}, join q{}, <>)'")
-                nil [32569 32772])
-            ("tramp-perl-unpack" variable
-               (:constant-flag t
-                :default-value "%s -e 'binmode STDIN; binmode STDOUT; print unpack(q{u*}, join q{}, <>)'")
-                nil [32774 32981])
-            ("tramp-awk-encode" variable
-               (:constant-flag t
-                :default-value "od -v -t x1 -A n | busybox awk '\\
-BEGIN {
-  b64 = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\"
-  b16 = \"0123456789abcdef\"
-}
-{
-  for (c=1; c<=length($0); c++) {
-    d=index(b16, substr($0,c,1))
-    if (d--) {
-      for (b=1; b<=4; b++) {
-        o=o*2+int(d/8); d=(d*2)%%16
-        if (++obc==6) {
-          printf substr(b64,o+1,1)
-          if (++rc>75) { printf \"\\n\"; rc=0 }
-          obc=0; o=0
-        }
-      }
-    }
-  }
-}
-END {
-  if (obc) {
-    tail=(obc==2) ? \"==\\n\" : \"=\\n\"
-    while (obc++<6) { o=o*2 }
-    printf \"%%c\", substr(b64,o+1,1)
-  } else {
-    tail=\"\\n\"
-  }
-  printf tail
-}'")
-                nil [32983 33770])
-            ("tramp-awk-decode" variable
-               (:constant-flag t
-                :default-value "busybox awk '\\
-BEGIN {
-  b64 = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\"
-}
-{
-  for (i=1; i<=length($0); i++) {
-    c=index(b64, substr($0,i,1))
-    if(c--) {
-      for(b=0; b<6; b++) {
-        o=o*2+int(c/32); c=(c*2)%%64
-        if(++obc==8) {
-          if (o) {
-            printf \"%%c\", o
-          } else {
-            system(\"dd if=/dev/zero bs=1 count=1 2>/dev/null\")
-          }
-          obc=0; o=0
-        }
-      }
-    }
-  }
-}'")
-                nil [33772 34394])
-            ("tramp-awk-coding-test" variable
-               (:constant-flag t
-                :default-value "test -c /dev/zero && od -v -t x1 -A n </dev/null && busybox awk '{}' </dev/null")
-                nil [34396 34589])
-            ("tramp-stat-marker" variable
-               (:constant-flag t
-                :default-value "/////")
-                nil [34591 34676])
-            ("tramp-stat-quoted-marker" variable
-               (:constant-flag t
-                :default-value "\\/\\/\\/\\/\\/")
-                nil [34678 34787])
-            ("tramp-vc-registered-read-file-names" variable
-               (:constant-flag t
-                :default-value "echo \"(\"
-while read file; do
-    if %s \"$file\"; then
-	echo \"(\\\"$file\\\" \\\"file-exists-p\\\" t)\"
-    else
-	echo \"(\\\"$file\\\" \\\"file-exists-p\\\" nil)\"
-    fi
-    if %s \"$file\"; then
-	echo \"(\\\"$file\\\" \\\"file-readable-p\\\" t)\"
-    else
-	echo \"(\\\"$file\\\" \\\"file-readable-p\\\" nil)\"
-    fi
-done
-echo \")\"")
-                nil [34789 35432])
-            ("tramp-sh-file-name-handler-alist" variable
-               (:constant-flag t
-                :default-value (quote ((add-name-to-file . tramp-sh-handle-add-name-to-file) (copy-directory . tramp-sh-handle-copy-directory) (copy-file . tramp-sh-handle-copy-file) (delete-directory . tramp-sh-handle-delete-directory) (delete-file . tramp-sh-handle-delete-file) (directory-file-name . tramp-handle-directory-file-name) (directory-files . tramp-handle-directory-files) (directory-files-and-attributes . tramp-sh-handle-directory-files-and-attributes) (dired-compress-file . tramp-sh-handle-dired-compress-file) (dired-uncache . tramp-handle-dired-uncache) (expand-file-name . tramp-sh-handle-expand-file-name) (file-accessible-directory-p . tramp-handle-file-accessible-directory-p) (file-acl . tramp-sh-handle-file-acl) (file-attributes . tramp-sh-handle-file-attributes) (file-directory-p . tramp-sh-handle-file-directory-p) (file-equal-p . tramp-handle-file-equal-p) (file-executable-p . tramp-sh-handle-file-executable-p) (file-exists-p . tramp-sh-handle-file-exists-p) (file-in-directory-p . tramp-handle-file-in-directory-p) (file-local-copy . tramp-sh-handle-file-local-copy) (file-modes . tramp-handle-file-modes) (file-name-all-completions . tramp-sh-handle-file-name-all-completions) (file-name-as-directory . tramp-handle-file-name-as-directory) (file-name-case-insensitive-p . tramp-handle-file-name-case-insensitive-p) (file-name-completion . tramp-handle-file-name-completion) (file-name-directory . tramp-handle-file-name-directory) (file-name-nondirectory . tramp-handle-file-name-nondirectory) (file-newer-than-file-p . tramp-sh-handle-file-newer-than-file-p) (file-notify-add-watch . tramp-sh-handle-file-notify-add-watch) (file-notify-rm-watch . tramp-handle-file-notify-rm-watch) (file-notify-valid-p . tramp-handle-file-notify-valid-p) (file-ownership-preserved-p . tramp-sh-handle-file-ownership-preserved-p) (file-readable-p . tramp-sh-handle-file-readable-p) (file-regular-p . tramp-handle-file-regular-p) (file-remote-p . tramp-handle-file-remote-p) (file-selinux-context . tramp-sh-handle-file-selinux-context) (file-symlink-p . tramp-handle-file-symlink-p) (file-system-info . tramp-sh-handle-file-system-info) (file-truename . tramp-sh-handle-file-truename) (file-writable-p . tramp-sh-handle-file-writable-p) (find-backup-file-name . tramp-handle-find-backup-file-name) (insert-directory . tramp-sh-handle-insert-directory) (insert-file-contents . tramp-handle-insert-file-contents) (load . tramp-handle-load) (make-auto-save-file-name . tramp-handle-make-auto-save-file-name) (make-directory . tramp-sh-handle-make-directory) (make-nearby-temp-file . tramp-handle-make-nearby-temp-file) (make-symbolic-link . tramp-sh-handle-make-symbolic-link) (process-file . tramp-sh-handle-process-file) (rename-file . tramp-sh-handle-rename-file) (set-file-acl . tramp-sh-handle-set-file-acl) (set-file-modes . tramp-sh-handle-set-file-modes) (set-file-selinux-context . tramp-sh-handle-set-file-selinux-context) (set-file-times . tramp-sh-handle-set-file-times) (set-visited-file-modtime . tramp-sh-handle-set-visited-file-modtime) (shell-command . tramp-handle-shell-command) (start-file-process . tramp-sh-handle-start-file-process) (substitute-in-file-name . tramp-handle-substitute-in-file-name) (temporary-file-directory . tramp-handle-temporary-file-directory) (unhandled-file-name-directory . ignore) (vc-registered . tramp-sh-handle-vc-registered) (verify-visited-file-modtime . tramp-sh-handle-verify-visited-file-modtime) (write-region . tramp-sh-handle-write-region))))
-                nil [35493 39800])
-            ("tramp-sh-handle-make-symbolic-link" function (:arguments ("target" "linkname" "ok-if-already-exists")) nil [39836 42370])
-            ("tramp-sh-handle-file-truename" function (:arguments ("filename")) nil [42372 46235])
-            ("tramp-sh-handle-file-exists-p" function (:arguments ("filename")) nil [46258 46827])
-            ("tramp-sh-handle-file-attributes" function (:arguments ("filename" "id-format")) nil [46829 47713])
-            ("tramp-do-file-attributes-with-ls" function (:arguments ("vec" "localname" "id-format")) nil [47715 51942])
-            ("tramp-do-file-attributes-with-perl" function (:arguments ("vec" "localname" "id-format")) nil [51944 52389])
-            ("tramp-do-file-attributes-with-stat" function (:arguments ("vec" "localname" "id-format")) nil [52391 53672])
-            ("tramp-sh-handle-set-visited-file-modtime" function (:arguments ("time-list")) nil [53674 54965])
-            ("tramp-sh-handle-verify-visited-file-modtime" function (:arguments ("buf")) nil [55060 56958])
-            ("tramp-sh-handle-set-file-modes" function (:arguments ("filename" "mode")) nil [56960 57431])
-            ("tramp-sh-handle-set-file-times" function (:arguments ("filename" "time")) nil [57433 58113])
-            ("tramp-set-file-uid-gid" function (:arguments ("filename" "uid" "gid")) nil [58115 59703])
-            ("tramp-remote-selinux-p" function (:arguments ("vec")) nil [59705 59937])
-            ("tramp-sh-handle-file-selinux-context" function (:arguments ("filename")) nil [59939 60783])
-            ("tramp-sh-handle-set-file-selinux-context" function (:arguments ("filename" "context")) nil [60785 61775])
-            ("tramp-remote-acl-p" function (:arguments ("vec")) nil [61777 61992])
-            ("tramp-sh-handle-file-acl" function (:arguments ("filename")) nil [61994 62525])
-            ("tramp-sh-handle-set-file-acl" function (:arguments ("filename" "acl-string")) nil [62527 63217])
-            ("tramp-sh-handle-file-executable-p" function (:arguments ("filename")) nil [63266 63666])
-            ("tramp-sh-handle-file-readable-p" function (:arguments ("filename")) nil [63668 64062])
-            ("tramp-sh-handle-file-newer-than-file-p" function (:arguments ("file1" "file2")) nil [64375 65889])
-            ("tramp-sh-handle-file-directory-p" function (:arguments ("filename")) nil [65950 66480])
-            ("tramp-sh-handle-file-writable-p" function (:arguments ("filename")) nil [66482 67092])
-            ("tramp-sh-handle-file-ownership-preserved-p" function (:arguments ("filename" "group")) nil [67094 67778])
-            ("tramp-sh-handle-directory-files-and-attributes" function (:arguments ("directory" "full" "match" "nosort" "id-format")) nil [67804 69179])
-            ("tramp-do-directory-files-and-attributes-with-perl" function (:arguments ("vec" "localname" "id-format")) nil [69181 69814])
-            ("tramp-do-directory-files-and-attributes-with-stat" function (:arguments ("vec" "localname" "id-format")) nil [69816 71399])
-            ("tramp-sh-handle-file-name-all-completions" function (:arguments ("filename" "directory")) nil [71479 73701])
-            ("tramp-sh-handle-add-name-to-file" function (:arguments ("filename" "newname" "ok-if-already-exists")) nil [73721 75012])
-            ("tramp-sh-handle-copy-file" function (:arguments ("filename" "newname" "ok-if-already-exists" "keep-date" "preserve-uid-gid" "preserve-extended-attributes")) nil [75014 75658])
-            ("tramp-sh-handle-copy-directory" function (:arguments ("dirname" "newname" "keep-date" "parents" "copy-contents")) nil [75660 77455])
-            ("tramp-sh-handle-rename-file" function (:arguments ("filename" "newname" "ok-if-already-exists")) nil [77457 78120])
-            ("tramp-do-copy-or-rename-file" function (:arguments ("op" "filename" "newname" "ok-if-already-exists" "keep-date" "preserve-uid-gid" "preserve-extended-attributes")) nil [78122 82647])
-            ("tramp-do-copy-or-rename-file-via-buffer" function (:arguments ("op" "filename" "newname" "keep-date")) nil [82649 84397])
-            ("tramp-do-copy-or-rename-file-directly" function (:arguments ("op" "filename" "newname" "ok-if-already-exists" "keep-date" "preserve-uid-gid")) nil [84399 89792])
-            ("tramp-do-copy-or-rename-file-out-of-band" function (:arguments ("op" "filename" "newname" "keep-date")) nil [89794 97766])
-            ("tramp-sh-handle-make-directory" function (:arguments ("dir" "parents")) nil [97768 98215])
-            ("tramp-sh-handle-delete-directory" function (:arguments ("directory" "recursive" "trash")) nil [98217 98782])
-            ("tramp-sh-handle-delete-file" function (:arguments ("filename" "trash")) nil [98784 99282])
-            ("tramp-sh-handle-dired-compress-file" function (:arguments ("file")) nil [99295 100770])
-            ("tramp-sh-handle-insert-directory" function (:arguments ("filename" "switches" "wildcard" "full-directory-p")) nil [100772 105554])
-            ("tramp-sh-handle-expand-file-name" function (:arguments ("name" "dir")) nil [105592 108296])
-            ("tramp-process-sentinel" function (:arguments ("proc" "event")) nil [108320 108662])
-            ("tramp-sh-handle-start-file-process" function (:arguments ("name" "buffer" "program" "args")) nil [108826 114156])
-            ("tramp-sh-handle-process-file" function (:arguments ("program" "infile" "destination" "display" "args")) nil [114158 118690])
-            ("tramp-sh-handle-file-local-copy" function (:arguments ("filename")) nil [118692 121583])
-            ("tramp-sh-handle-write-region" function (:arguments ("start" "end" "filename" "append" "visit" "lockname" "mustbenew")) nil [121606 130872])
-            ("tramp-vc-registered-file-names" variable nil nil [130874 130996])
-            ("tramp-sh-handle-vc-registered" function (:arguments ("file")) nil [131832 135266])
-            ("tramp-sh-file-name-handler" function (:arguments ("operation" "args")) nil [135289 135626])
-            ("tramp-register-foreign-file-name-handler" code nil nil [135716 135805])
-            ("tramp-vc-file-name-handler" function (:arguments ("operation" "args")) nil [135807 137005])
-            ("tramp-sh-handle-file-notify-add-watch" function (:arguments ("file-name" "flags" "_callback")) nil [137007 139720])
-            ("tramp-sh-gvfs-monitor-dir-process-filter" function (:arguments ("proc" "string")) nil [139722 141895])
-            ("tramp-sh-inotifywait-process-filter" function (:arguments ("proc" "string")) nil [141897 143152])
-            ("tramp-sh-handle-file-system-info" function (:arguments ("filename")) nil [143154 144127])
-            ("tramp-maybe-send-script" function (:arguments ("vec" "script" "name")) nil [144154 145339])
-            ("tramp-run-test" function (:arguments ("switch" "filename")) nil [145341 145703])
-            ("tramp-run-test2" function (:arguments ("format-string" "file1" "file2")) nil [145705 146489])
-            ("tramp-find-executable" function (:arguments ("vec" "progname" "dirlist" "ignore-tilde" "ignore-path")) nil [146491 148563])
-            ("tramp-set-remote-path" function (:arguments ("vec")) nil [148565 148984])
-            ("tramp-find-file-exists-command" function (:arguments ("vec")) nil [149158 151711])
-            ("tramp-open-shell" function (:arguments ("vec" "shell")) nil [151713 154378])
-            ("tramp-find-shell" function (:arguments ("vec")) nil [154380 155814])
-            ("tramp-barf-if-no-shell-prompt" function (:arguments ("proc" "timeout" "error-args")) nil [155839 156463])
-            ("tramp-open-connection-setup-interactive-shell" function (:arguments ("proc" "vec")) nil [156465 163322])
-            ("uudecode-decode-region" function (:prototype-flag t) nil [163957 164002])
-            ("tramp-local-coding-commands" variable
-               (:constant-flag t
-                :default-value (\` ((b64 base64-encode-region base64-decode-region) (uu tramp-uuencode-region uudecode-decode-region) (pack (\, (format tramp-perl-pack "perl")) (\, (format tramp-perl-unpack "perl"))))))
-                nil [164004 165031])
-            ("tramp-remote-coding-commands" variable
-               (:constant-flag t
-                :default-value (\` ((b64 "base64" "base64 -d -i") (b64 "base64" "base64 -d") (b64 "openssl enc -base64" "openssl enc -d -base64") (b64 "mimencode -b" "mimencode -u -b") (b64 "mmencode -b" "mmencode -u -b") (b64 "recode data..base64" "recode base64..data") (b64 tramp-perl-encode-with-module tramp-perl-decode-with-module) (b64 tramp-perl-encode tramp-perl-decode) (b64 tramp-awk-encode tramp-awk-decode (\, tramp-awk-coding-test)) (uu "uuencode xxx" "uudecode -o /dev/stdout" "test -c /dev/stdout") (uu "uuencode xxx" "uudecode -o -") (uu "uuencode xxx" "uudecode -p") (uu "uuencode xxx" tramp-uudecode) (pack tramp-perl-pack tramp-perl-unpack))))
-                nil [165033 166992])
-            ("tramp-find-inline-encoding" function (:arguments ("vec")) nil [166994 171971])
-            ("tramp-call-local-coding-command" function (:arguments ("cmd" "input" "output")) nil [171973 172687])
-            ("tramp-inline-compress-commands" variable
-               (:constant-flag t
-                :default-value (quote (("gzip" "gzip -d") ("bzip2" "bzip2 -d") ("xz" "xz -d") ("compress" "compress -d"))))
-                nil [172689 173027])
-            ("tramp-find-inline-compress" function (:arguments ("vec")) nil [173029 174968])
-            ("tramp-compute-multi-hops" function (:arguments ("vec")) nil [174970 178081])
-            ("tramp-ssh-controlmaster-options" function (:arguments ("vec")) nil [178083 179912])
-            ("tramp-maybe-open-connection" function (:arguments ("vec")) nil [179914 188983])
-            ("tramp-send-command" function (:arguments ("vec" "command" "neveropen" "nooutput")) nil [188985 190569])
-            ("tramp-wait-for-output" function (:arguments ("proc" "timeout")) nil [190571 192253])
-            ("tramp-send-command-and-check" function (:arguments ("vec" "command" "subshell" "dont-suppress-err")) nil [192255 193331])
-            ("tramp-barf-unless-okay" function (:arguments ("vec" "command" "fmt" "args")) nil [193333 193682])
-            ("tramp-send-command-and-read" function (:arguments ("vec" "command" "noerror" "marker")) nil [193684 194814])
-            ("tramp-convert-file-attributes" function (:arguments ("vec" "attr")) nil [194816 198649])
-            ("tramp-shell-case-fold" function (:arguments ("string")) nil [198651 198908])
-            ("tramp-make-copy-program-file-name" function (:arguments ("vec")) nil [198910 199681])
-            ("tramp-method-out-of-band-p" function (:arguments ("vec" "size")) nil [199683 200226])
-            ("tramp-get-remote-path" function (:arguments ("vec")) nil [200263 203024])
-            ("tramp-get-remote-locale" function (:arguments ("vec")) nil [203026 203665])
-            ("tramp-get-ls-command" function (:arguments ("vec")) nil [203667 204786])
-            ("tramp-get-ls-command-with-dired" function (:arguments ("vec")) nil [204788 205321])
-            ("tramp-get-ls-command-with-quoting-style" function (:arguments ("vec")) nil [205323 205747])
-            ("tramp-get-ls-command-with-w-option" function (:arguments ("vec")) nil [205749 206289])
-            ("tramp-get-test-command" function (:arguments ("vec")) nil [206291 206602])
-            ("tramp-get-test-nt-command" function (:arguments ("vec")) nil [206604 207429])
-            ("tramp-get-file-exists-command" function (:arguments ("vec")) nil [207431 207690])
-            ("tramp-get-remote-ln" function (:arguments ("vec")) nil [207692 207929])
-            ("tramp-get-remote-perl" function (:arguments ("vec")) nil [207931 208815])
-            ("tramp-get-remote-stat" function (:arguments ("vec")) nil [208817 209792])
-            ("tramp-get-remote-readlink" function (:arguments ("vec")) nil [209794 210205])
-            ("tramp-get-remote-trash" function (:arguments ("vec")) nil [210207 210567])
-            ("tramp-get-remote-touch" function (:arguments ("vec")) nil [210569 211361])
-            ("tramp-get-remote-df" function (:arguments ("vec")) nil [211363 211763])
-            ("tramp-get-remote-gvfs-monitor-dir" function (:arguments ("vec")) nil [211765 212353])
-            ("tramp-get-remote-inotifywait" function (:arguments ("vec")) nil [212355 212641])
-            ("tramp-get-remote-id" function (:arguments ("vec")) nil [212643 213154])
-            ("tramp-get-remote-uid-with-id" function (:arguments ("vec" "id-format")) nil [213156 213493])
-            ("tramp-get-remote-uid-with-perl" function (:arguments ("vec" "id-format")) nil [213495 213829])
-            ("tramp-get-remote-python" function (:arguments ("vec")) nil [213831 214241])
-            ("tramp-get-remote-uid-with-python" function (:arguments ("vec" "id-format")) nil [214243 214624])
-            ("tramp-get-remote-uid" function (:arguments ("vec" "id-format")) nil [214626 215415])
-            ("tramp-get-remote-gid-with-id" function (:arguments ("vec" "id-format")) nil [215417 215754])
-            ("tramp-get-remote-gid-with-perl" function (:arguments ("vec" "id-format")) nil [215756 216102])
-            ("tramp-get-remote-gid-with-python" function (:arguments ("vec" "id-format")) nil [216104 216485])
-            ("tramp-get-remote-gid" function (:arguments ("vec" "id-format")) nil [216487 217276])
-            ("tramp-get-env-with-u-option" function (:arguments ("vec")) nil [217278 217639])
-            ("tramp-get-inline-compress" function (:arguments ("vec" "prop" "size")) nil [217683 218255])
-            ("tramp-get-inline-coding" function (:arguments ("vec" "prop" "size")) nil [218257 221393])
-            ("add-hook" code nil nil [221395 221478])
-            ("tramp-sh" package nil nil [221480 221499]))          
-      :file "tramp-sh.el"
-      :pointmax 225842
-      :fsize 225846
-      :lastmodtime '(23525 29579 0 0)
-      :unmatched-syntax '((close-paren 1205 . 1206) (symbol 1169 . 1186) (open-paren 1168 . 1169)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tramp" include nil nil [2298 2314])
-            ("time-stamp-string" function (:prototype-flag t) nil [2315 2357])
-            ("tramp-cache-data" variable (:default-value (make-hash-table :test (quote equal))) nil [2397 2497])
-            ("tramp-connection-properties" variable nil nil [2520 3113])
-            ("tramp-persistency-file-name" variable (:default-value (expand-file-name (locate-user-emacs-file "tramp"))) nil [3136 3340])
-            ("tramp-cache-data-changed" variable nil nil [3342 3432])
-            ("tramp-get-hash-table" function (:arguments ("key")) nil [3434 4140])
-            ("tramp-get-file-property" function (:arguments ("key" "file" "property" "default")) nil [4163 5591])
-            ("tramp-set-file-property" function (:arguments ("key" "file" "property" "value")) nil [5614 6500])
-            ("tramp-flush-file-property" function (:arguments ("key" "file")) nil [6523 7277])
-            ("tramp-flush-directory-property" function (:arguments ("key" "directory")) nil [7300 8212])
-            ("tramp-flush-file-function" function nil nil [8548 9040])
-            ("add-hook" code nil nil [9042 9099])
-            ("add-hook" code nil nil [9100 9162])
-            ("add-hook" code nil nil [9163 9218])
-            ("add-hook" code nil nil [9219 9482])
-            ("tramp-get-connection-property" function (:arguments ("key" "property" "default")) nil [9527 10525])
-            ("tramp-set-connection-property" function (:arguments ("key" "property" "value")) nil [10548 11372])
-            ("tramp-connection-property-p" function (:arguments ("key" "property")) nil [11395 11757])
-            ("tramp-flush-connection-property" function (:arguments ("key")) nil [11780 12630])
-            ("tramp-cache-print" function (:arguments ("table")) nil [12653 13999])
-            ("tramp-list-connections" function nil nil [14022 14416])
-            ("tramp-dump-connection-properties" function nil nil [14418 16150])
-            ("unless" code nil nil [16152 16239])
-            ("add-hook" code nil nil [16240 16364])
-            ("tramp-parse-connection-properties" function (:arguments ("method")) nil [16387 16950])
-            ("tramp-cache-read-persistent-data" variable (:default-value (or init-file-user site-run-file)) nil [17122 17250])
-            ("when" code nil nil [17291 18370])
-            ("add-hook" code nil nil [18372 18458])
-            ("tramp-cache" package nil nil [18460 18482]))          
-      :file "tramp-cache.el"
-      :pointmax 18513
-      :fsize 18512
-      :lastmodtime '(23525 29578 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "ange-ftp.el"
-      :fsize 241276
-      :lastmodtime '(23525 29574 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("declare-function" code nil nil [4025 4077])
-            ("tramp" include nil nil [4079 4095])
-            ("dbus" include nil nil [4097 4112])
-            ("url-parse" include nil nil [4113 4133])
-            ("url-util" include nil nil [4134 4153])
-            ("zeroconf" include nil nil [4154 4173])
-            ("custom" include nil nil [4221 4238])
-            ("tramp-gvfs-methods" variable (:default-value (quote ("afp" "dav" "davs" "gdrive" "obex" "sftp" "synce"))) nil [4262 4650])
-            ("when" code nil nil [4752 5063])
-            ("add-to-list" code nil nil [5085 5149])
-            ("tramp-gvfs-zeroconf-domain" variable (:default-value "local") nil [5172 5360])
-            ("when" code nil nil [5466 5618])
-            ("tramp-gvfs-path-tramp" variable
-               (:constant-flag t
-                :default-value (concat dbus-path-emacs "/Tramp"))
-                nil [5620 5733])
-            ("tramp-gvfs-service-daemon" variable
-               (:constant-flag t
-                :default-value "org.gtk.vfs.Daemon")
-                nil [5735 5836])
-            ("tramp-gvfs-enabled" variable
-               (:constant-flag t
-                :default-value (ignore-errors (and (featurep (quote dbusbind)) (tramp-compat-funcall (quote dbus-get-unique-name) :system) (tramp-compat-funcall (quote dbus-get-unique-name) :session) (or (tramp-compat-process-running-p "gvfs-fuse-daemon") (tramp-compat-process-running-p "gvfsd-fuse")))))
-                nil [5901 6237])
-            ("tramp-gvfs-path-mounttracker" variable
-               (:constant-flag t
-                :default-value "/org/gtk/vfs/mounttracker")
-                nil [6239 6346])
-            ("tramp-gvfs-interface-mounttracker" variable
-               (:constant-flag t
-                :default-value "org.gtk.vfs.MountTracker")
-                nil [6348 6472])
-            ("tramp-gvfs-methods-mounttracker" variable
-               (:constant-flag t
-                :default-value (and tramp-gvfs-enabled (dbus-introspect-get-method-names :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker tramp-gvfs-interface-mounttracker)))
-                nil [6582 6860])
-            ("tramp-gvfs-listmounts" variable
-               (:constant-flag t
-                :default-value (if (member "ListMounts" tramp-gvfs-methods-mounttracker) "ListMounts" "listMounts"))
-                nil [6862 7068])
-            ("tramp-gvfs-mountlocation" variable
-               (:constant-flag t
-                :default-value (if (member "MountLocation" tramp-gvfs-methods-mounttracker) "MountLocation" "mountLocation"))
-                nil [7070 7291])
-            ("tramp-gvfs-mountlocation-signature" variable
-               (:constant-flag t
-                :default-value (and tramp-gvfs-enabled (dbus-introspect-get-signature :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker tramp-gvfs-interface-mounttracker tramp-gvfs-mountlocation)))
-                nil [7293 7620])
-            ("tramp-gvfs-interface-mountoperation" variable
-               (:constant-flag t
-                :default-value "org.gtk.vfs.MountOperation")
-                nil [8985 9125])
-            ("tramp-gvfs-password-need-password" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [10342 10423])
-            ("tramp-gvfs-password-need-username" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [10425 10506])
-            ("tramp-gvfs-password-need-domain" variable
-               (:constant-flag t
-                :default-value 4)
-                nil [10508 10585])
-            ("tramp-gvfs-password-saving-supported" variable
-               (:constant-flag t
-                :default-value 8)
-                nil [10587 10676])
-            ("tramp-gvfs-password-anonymous-supported" variable
-               (:constant-flag t
-                :default-value 16)
-                nil [10678 10771])
-            ("tramp-bluez-service" variable
-               (:constant-flag t
-                :default-value "org.bluez")
-                nil [10773 10861])
-            ("tramp-bluez-interface-manager" variable
-               (:constant-flag t
-                :default-value "org.bluez.Manager")
-                nil [10863 10970])
-            ("tramp-bluez-interface-adapter" variable
-               (:constant-flag t
-                :default-value "org.bluez.Adapter")
-                nil [11560 11667])
-            ("tramp-bluez-discover-devices-timeout" variable (:default-value 60) nil [13594 13952])
-            ("tramp-bluez-discovery" variable nil nil [13954 14086])
-            ("tramp-bluez-devices" variable nil nil [14088 14199])
-            ("tramp-hal-service" variable
-               (:constant-flag t
-                :default-value "org.freedesktop.Hal")
-                nil [14201 14295])
-            ("tramp-hal-path-manager" variable
-               (:constant-flag t
-                :default-value "/org/freedesktop/Hal/Manager")
-                nil [14297 14408])
-            ("tramp-hal-interface-manager" variable
-               (:constant-flag t
-                :default-value "org.freedesktop.Hal.Manager")
-                nil [14410 14523])
-            ("tramp-hal-interface-device" variable
-               (:constant-flag t
-                :default-value "org.freedesktop.Hal.Device")
-                nil [14525 14635])
-            ("tramp-gvfs-gio-mapping" variable
-               (:constant-flag t
-                :default-value (quote (("gvfs-copy" . "copy") ("gvfs-info" . "info") ("gvfs-ls" . "list") ("gvfs-mkdir" . "mkdir") ("gvfs-monitor-file" . "monitor") ("gvfs-move" . "move") ("gvfs-rm" . "remove") ("gvfs-trash" . "trash"))))
-                nil [14750 15086])
-            ("tramp-gvfs-file-attributes" variable
-               (:constant-flag t
-                :default-value (quote ("name" "type" "standard::display-name" "standard::symlink-target" "unix::nlink" "unix::uid" "owner::user" "unix::gid" "owner::group" "time::access" "time::modified" "time::changed" "standard::size" "unix::mode" "access::can-read" "access::can-write" "access::can-execute" "unix::inode" "unix::device")))
-                nil [15088 15529])
-            ("tramp-gvfs-file-attributes-with-gvfs-ls-regexp" variable
-               (:constant-flag t
-                :default-value (concat "[[:blank:]]" (regexp-opt tramp-gvfs-file-attributes t) "=\\(.+?\\)"))
-                nil [15531 15725])
-            ("tramp-gvfs-file-attributes-with-gvfs-info-regexp" variable
-               (:constant-flag t
-                :default-value (concat "^[[:blank:]]*" (regexp-opt tramp-gvfs-file-attributes t) ":[[:blank:]]+\\(.*\\)$"))
-                nil [15727 15945])
-            ("tramp-gvfs-file-system-attributes" variable
-               (:constant-flag t
-                :default-value (quote ("filesystem::free" "filesystem::size" "filesystem::used")))
-                nil [15947 16094])
-            ("tramp-gvfs-file-system-attributes-regexp" variable
-               (:constant-flag t
-                :default-value (concat "^[[:blank:]]*" (regexp-opt tramp-gvfs-file-system-attributes t) ":[[:blank:]]+\\(.*\\)$"))
-                nil [16096 16320])
-            ("tramp-gvfs-file-name-handler-alist" variable
-               (:constant-flag t
-                :default-value (quote ((access-file . ignore) (add-name-to-file . tramp-handle-add-name-to-file) (copy-file . tramp-gvfs-handle-copy-file) (delete-directory . tramp-gvfs-handle-delete-directory) (delete-file . tramp-gvfs-handle-delete-file) (directory-file-name . tramp-handle-directory-file-name) (directory-files . tramp-handle-directory-files) (directory-files-and-attributes . tramp-handle-directory-files-and-attributes) (dired-compress-file . ignore) (dired-uncache . tramp-handle-dired-uncache) (expand-file-name . tramp-gvfs-handle-expand-file-name) (file-accessible-directory-p . tramp-handle-file-accessible-directory-p) (file-acl . ignore) (file-attributes . tramp-gvfs-handle-file-attributes) (file-directory-p . tramp-gvfs-handle-file-directory-p) (file-equal-p . tramp-handle-file-equal-p) (file-executable-p . tramp-gvfs-handle-file-executable-p) (file-exists-p . tramp-handle-file-exists-p) (file-in-directory-p . tramp-handle-file-in-directory-p) (file-local-copy . tramp-gvfs-handle-file-local-copy) (file-modes . tramp-handle-file-modes) (file-name-all-completions . tramp-gvfs-handle-file-name-all-completions) (file-name-as-directory . tramp-handle-file-name-as-directory) (file-name-case-insensitive-p . tramp-handle-file-name-case-insensitive-p) (file-name-completion . tramp-handle-file-name-completion) (file-name-directory . tramp-handle-file-name-directory) (file-name-nondirectory . tramp-handle-file-name-nondirectory) (file-newer-than-file-p . tramp-handle-file-newer-than-file-p) (file-notify-add-watch . tramp-gvfs-handle-file-notify-add-watch) (file-notify-rm-watch . tramp-handle-file-notify-rm-watch) (file-notify-valid-p . tramp-handle-file-notify-valid-p) (file-ownership-preserved-p . ignore) (file-readable-p . tramp-gvfs-handle-file-readable-p) (file-regular-p . tramp-handle-file-regular-p) (file-remote-p . tramp-handle-file-remote-p) (file-selinux-context . tramp-handle-file-selinux-context) (file-symlink-p . tramp-handle-file-symlink-p) (file-system-info . tramp-gvfs-handle-file-system-info) (file-truename . tramp-handle-file-truename) (file-writable-p . tramp-gvfs-handle-file-writable-p) (find-backup-file-name . tramp-handle-find-backup-file-name) (insert-directory . tramp-handle-insert-directory) (insert-file-contents . tramp-handle-insert-file-contents) (load . tramp-handle-load) (make-auto-save-file-name . tramp-handle-make-auto-save-file-name) (make-directory . tramp-gvfs-handle-make-directory) (make-directory-internal . ignore) (make-nearby-temp-file . tramp-handle-make-nearby-temp-file) (make-symbolic-link . tramp-handle-make-symbolic-link) (process-file . ignore) (rename-file . tramp-gvfs-handle-rename-file) (set-file-acl . ignore) (set-file-modes . ignore) (set-file-selinux-context . ignore) (set-file-times . ignore) (set-visited-file-modtime . tramp-handle-set-visited-file-modtime) (shell-command . ignore) (start-file-process . ignore) (substitute-in-file-name . tramp-handle-substitute-in-file-name) (temporary-file-directory . tramp-handle-temporary-file-directory) (unhandled-file-name-directory . ignore) (vc-registered . ignore) (verify-visited-file-modtime . tramp-handle-verify-visited-file-modtime) (write-region . tramp-gvfs-handle-write-region))))
-                nil [16383 20390])
-            ("tramp-gvfs-file-name-p" function (:arguments ("filename")) nil [20549 20839])
-            ("tramp-gvfs-file-name-handler" function (:arguments ("operation" "args")) nil [20862 21323])
-            ("when" code nil nil [21346 21475])
-            ("tramp-gvfs-dbus-string-to-byte-array" function (:arguments ("string")) nil [21506 21770])
-            ("tramp-gvfs-dbus-byte-array-to-string" function (:arguments ("byte-array")) nil [21772 22253])
-            ("tramp-gvfs-stringify-dbus-message" function (:arguments ("message")) nil [22255 22648])
-            ("with-tramp-dbus-call-method" function (:arguments ("vec" "synchronous" "bus" "service" "path" "interface" "method" "args")) nil [22650 23494])
-            ("put" code nil nil [23496 23554])
-            ("put" code nil nil [23555 23628])
-            ("font-lock-add-keywords" code nil nil [23629 23709])
-            ("tramp-gvfs-dbus-event-vector" variable nil nil [23711 23913])
-            ("tramp-gvfs-dbus-event-error" function (:arguments ("event" "err")) nil [23915 24219])
-            ("add-hook" code nil nil [24316 24456])
-            ("tramp-gvfs-do-copy-or-rename-file" function (:arguments ("op" "filename" "newname" "ok-if-already-exists" "keep-date" "preserve-uid-gid" "preserve-extended-attributes")) nil [24486 28052])
-            ("tramp-gvfs-handle-copy-file" function (:arguments ("filename" "newname" "ok-if-already-exists" "keep-date" "preserve-uid-gid" "preserve-extended-attributes")) nil [28054 28750])
-            ("tramp-gvfs-handle-delete-directory" function (:arguments ("directory" "recursive" "trash")) nil [28752 29854])
-            ("tramp-gvfs-handle-delete-file" function (:arguments ("filename" "trash")) nil [29856 30455])
-            ("tramp-gvfs-handle-expand-file-name" function (:arguments ("name" "dir")) nil [30457 32481])
-            ("tramp-gvfs-get-directory-attributes" function (:arguments ("directory")) nil [32483 34011])
-            ("tramp-gvfs-get-root-attributes" function (:arguments ("filename" "file-system")) nil [34013 35189])
-            ("tramp-gvfs-get-file-attributes" function (:arguments ("filename")) nil [35191 35798])
-            ("tramp-gvfs-handle-file-attributes" function (:arguments ("filename" "id-format")) nil [35800 39234])
-            ("tramp-gvfs-handle-file-directory-p" function (:arguments ("filename")) nil [39236 39423])
-            ("tramp-gvfs-handle-file-executable-p" function (:arguments ("filename")) nil [39425 39677])
-            ("tramp-gvfs-handle-file-local-copy" function (:arguments ("filename")) nil [39679 40116])
-            ("tramp-gvfs-handle-file-name-all-completions" function (:arguments ("filename" "directory")) nil [40118 40795])
-            ("tramp-gvfs-handle-file-notify-add-watch" function (:arguments ("file-name" "flags" "_callback")) nil [40797 42664])
-            ("tramp-gvfs-monitor-file-process-filter" function (:arguments ("proc" "string")) nil [42666 44544])
-            ("tramp-gvfs-handle-file-readable-p" function (:arguments ("filename")) nil [44546 44792])
-            ("tramp-gvfs-handle-file-system-info" function (:arguments ("filename")) nil [44794 45581])
-            ("tramp-gvfs-handle-file-writable-p" function (:arguments ("filename")) nil [45583 46033])
-            ("tramp-gvfs-handle-make-directory" function (:arguments ("dir" "parents")) nil [46035 46807])
-            ("tramp-gvfs-handle-rename-file" function (:arguments ("filename" "newname" "ok-if-already-exists")) nil [46809 47479])
-            ("tramp-gvfs-handle-write-region" function (:arguments ("start" "end" "filename" "append" "visit" "lockname" "mustbenew")) nil [47481 49059])
-            ("tramp-gvfs-url-file-name" function (:arguments ("filename")) nil [49090 50137])
-            ("tramp-gvfs-object-path" function (:arguments ("filename")) nil [50139 50306])
-            ("tramp-gvfs-file-name" function (:arguments ("object-path")) nil [50308 50498])
-            ("tramp-bluez-address" function (:arguments ("device")) nil [50500 50763])
-            ("tramp-bluez-device" function (:arguments ("address")) nil [50765 51216])
-            ("tramp-gvfs-handler-askpassword" function (:arguments ("message" "user" "domain" "flags")) nil [51246 52996])
-            ("tramp-gvfs-handler-askquestion" function (:arguments ("message" "choices")) nil [52998 54495])
-            ("tramp-gvfs-handler-mounted-unmounted" function (:arguments ("mount-info")) nil [54497 57053])
-            ("when" code nil nil [57055 57717])
-            ("tramp-gvfs-connection-mounted-p" function (:arguments ("vec")) nil [57719 60617])
-            ("tramp-gvfs-mount-spec-entry" function (:arguments ("key" "value")) nil [60619 61010])
-            ("tramp-gvfs-mount-spec" function (:arguments ("vec")) nil [61012 63440])
-            ("tramp-gvfs-get-remote-uid" function (:arguments ("vec" "id-format")) nil [63470 64319])
-            ("tramp-gvfs-get-remote-gid" function (:arguments ("vec" "id-format")) nil [64321 65120])
-            ("tramp-gvfs-get-remote-uid-gid-in-progress" variable nil nil [65122 65246])
-            ("tramp-gvfs-maybe-open-connection" function (:arguments ("vec")) nil [65248 70268])
-            ("tramp-gvfs-gio-tool-p" function (:arguments ("vec")) nil [70270 70466])
-            ("tramp-gvfs-send-command" function (:arguments ("vec" "command" "args")) nil [70468 71436])
-            ("tramp-bluez-list-devices" function nil nil [71467 72776])
-            ("tramp-bluez-property-changed" function (:arguments ("property" "value")) nil [72778 73400])
-            ("when" code nil nil [73402 73552])
-            ("tramp-bluez-device-found" function (:arguments ("device" "args")) nil [73554 74029])
-            ("when" code nil nil [74031 74173])
-            ("tramp-bluez-parse-device-names" function (:arguments ("_ignore")) nil [74175 74357])
-            ("when" code nil nil [74403 74582])
-            ("tramp-zeroconf-parse-device-names" function (:arguments ("service")) nil [74616 75223])
-            ("tramp-gvfs-parse-device-names" function (:arguments ("service")) nil [75362 76173])
-            ("when" code nil nil [76245 77649])
-            ("tramp-synce-list-devices" function nil nil [77680 78586])
-            ("tramp-synce-parse-device-names" function (:arguments ("_ignore")) nil [78588 78764])
-            ("when" code nil nil [78811 78920])
-            ("add-hook" code nil nil [78922 79007])
-            ("tramp-gvfs" package nil nil [79009 79030]))          
-      :file "tramp-gvfs.el"
-      :pointmax 79414
-      :fsize 79413
-      :lastmodtime '(23525 29578 0 0)
-      :unmatched-syntax '((close-paren 4238 . 4239) (symbol 4201 . 4218) (open-paren 4200 . 4201)))
-    (semanticdb-table "semanticdb-table"
-      :file "dbus.el"
-      :fsize 68851
-      :lastmodtime '(23525 29574 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "zeroconf.el"
-      :fsize 24976
-      :lastmodtime '(23525 29579 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tramp-version" variable
-               (:constant-flag t
-                :default-value "2.3.3.26.1")
-                nil [1408 1472])
-            ("tramp-bug-report-address" variable
-               (:constant-flag t
-                :default-value "tramp-devel@gnu.org")
-                nil [1495 1594])
-            ("tramp-repository-get-version" function nil nil [1596 2073])
-            ("let" code nil nil [2103 2344])
-            ("add-to-list" code nil nil [2387 2837])
-            ("add-hook" code nil nil [2839 2922])
-            ("trampver" package nil nil [2924 2943]))          
-      :file "trampver.el"
-      :pointmax 3037
-      :fsize 3037
-      :lastmodtime '(23525 29579 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "tramp-loaddefs.el"
-      :fsize 57247
-      :lastmodtime '(23525 29579 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tramp" include nil nil [1022 1038])
-            ("declare-function" code nil nil [1065 1098])
-            ("declare-function" code nil nil [1099 1144])
-            ("declare-function" code nil nil [1145 1197])
-            ("reporter-eval-buffer" variable nil nil [1198 1227])
-            ("reporter-prompt-for-summary-p" variable nil nil [1228 1266])
-            ("tramp-change-syntax" function
-               (:user-visible-flag t
-                :arguments ("syntax"))
-                nil [1289 1744])
-            ("tramp-list-tramp-buffers" function nil nil [1746 2019])
-            ("tramp-list-remote-buffers" function nil nil [2021 2262])
-            ("tramp-cleanup-connection" function
-               (:user-visible-flag t
-                :arguments ("vec" "keep-debug" "keep-password"))
-                nil [2285 4371])
-            ("tramp-cleanup-this-connection" function (:user-visible-flag t) nil [4394 4663])
-            ("tramp-cleanup-all-connections" function (:user-visible-flag t) nil [4686 5135])
-            ("tramp-cleanup-all-buffers" function (:user-visible-flag t) nil [5158 5479])
-            ("tramp-version" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5557 5732])
-            ("reporter-submit-bug-report" function (:prototype-flag t) nil [5857 5906])
-            ("tramp-bug" function (:user-visible-flag t) nil [5929 7763])
-            ("tramp-reporter-dump-variable" function (:arguments ("varsym" "mailbuf")) nil [7765 9173])
-            ("tramp-load-report-modules" function nil nil [9175 9282])
-            ("tramp-append-tramp-buffers" function nil nil [9284 12706])
-            ("defalias" code nil nil [12708 12747])
-            ("add-hook" code nil nil [12749 12829])
-            ("tramp-cmds" package nil nil [12831 12852]))          
-      :file "tramp-cmds.el"
-      :pointmax 13337
-      :fsize 13336
-      :lastmodtime '(23525 29578 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("comint" include nil nil [2115 2132])
-            ("telnet-host-properties" variable nil nil [2134 2471])
-            ("telnet-new-line" variable (:default-value "
") nil [2473 2502])
-            ("telnet-mode-map" variable (:default-value (let ((map (nconc (make-sparse-keymap) comint-mode-map))) (define-key map "
" (quote telnet-send-input)) (define-key map "" (quote send-process-next-char)) (define-key map "" (quote telnet-interrupt-subjob)) (define-key map "" (quote telnet-c-z)) map)) nil [2503 2850])
-            ("telnet-prompt-pattern" variable (:default-value "^[^#$%>
-]*[#$%>] *") nil [2852 2904])
-            ("telnet-replace-c-g" variable nil nil [2905 2936])
-            ("make-variable-buffer-local" code nil nil [2937 3047])
-            ("make-variable-buffer-local" code nil nil [3048 3139])
-            ("telnet-count" variable nil nil [3141 3241])
-            ("make-variable-buffer-local" code nil nil [3242 3284])
-            ("telnet-program" variable (:default-value "telnet") nil [3286 3366])
-            ("telnet-initial-count" variable (:default-value -50) nil [3368 3551])
-            ("telnet-maximum-count" variable (:default-value 4) nil [3553 3824])
-            ("telnet-interrupt-subjob" function (:user-visible-flag t) nil [3826 3997])
-            ("telnet-c-z" function nil nil [3999 4071])
-            ("send-process-next-char" function nil nil [4073 4334])
-            ("telnet-check-software-type-initialize" function (:arguments ("string")) nil [4388 4992])
-            ("telnet-initial-filter" function (:arguments ("proc" "string")) nil [4994 5846])
-            ("telnet-simple-send" function (:arguments ("proc" "string")) nil [5941 6164])
-            ("telnet-filter" function (:arguments ("proc" "string")) nil [6166 7212])
-            ("telnet-send-input" function nil nil [7214 7443])
-            ("telnet" function
-               (:user-visible-flag t
-                :arguments ("host" "port"))
-                nil [7460 9496])
-            ("put" code nil nil [9498 9537])
-            ("define-derived-mode" code nil nil [9539 10088])
-            ("rsh" function
-               (:user-visible-flag t
-                :arguments ("host"))
-                nil [10105 10605])
-            ("telnet" package nil nil [10607 10624]))          
-      :file "telnet.el"
-      :pointmax 10650
-      :fsize 10649
-      :lastmodtime '(23525 29578 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tramp" include nil nil [1053 1069])
-            ("custom" include nil nil [1117 1134])
-            ("ange-ftp-ftp-name-arg" variable nil nil [1136 1166])
-            ("ange-ftp-ftp-name-res" variable nil nil [1167 1197])
-            ("ange-ftp-name-format" variable nil nil [1198 1227])
-            ("tramp-disable-ange-ftp" function nil nil [1279 1917])
-            ("eval-after-load" code nil nil [1919 2023])
-            ("tramp-ftp-enable-ange-ftp" function nil nil [2040 3207])
-            ("add-hook" code nil nil [3209 3269])
-            ("tramp-ftp-method" variable
-               (:constant-flag t
-                :default-value "ftp")
-                nil [3317 3416])
-            ("add-to-list" code nil nil [3477 3533])
-            ("add-to-list" code nil nil [3611 3698])
-            ("add-to-list" code nil nil [3720 3825])
-            ("eval-after-load" code nil nil [3891 4011])
-            ("tramp-ftp-file-name-handler" function (:arguments ("operation" "args")) nil [4034 6959])
-            ("tramp-ftp-file-name-p" function (:arguments ("filename")) nil [7118 7321])
-            ("add-to-list" code nil nil [7344 7461])
-            ("add-hook" code nil nil [7463 7547])
-            ("tramp-ftp" package nil nil [7549 7569]))          
-      :file "tramp-ftp.el"
-      :pointmax 7655
-      :fsize 7654
-      :lastmodtime '(23525 29578 0 0)
-      :unmatched-syntax '((close-paren 1134 . 1135) (symbol 1097 . 1114) (open-paren 1096 . 1097)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tramp" include nil nil [1021 1037])
-            ("tramp-smb-method" variable
-               (:constant-flag t
-                :default-value "smb")
-                nil [1085 1166])
-            ("unless" code nil nil [1227 1797])
-            ("add-to-list" code nil nil [1928 2023])
-            ("eval-after-load" code nil nil [2089 2207])
-            ("tramp-smb-program" variable (:default-value "smbclient") nil [2230 2352])
-            ("tramp-smb-acl-program" variable (:default-value "smbcacls") nil [2375 2516])
-            ("tramp-smb-conf" variable (:default-value "/dev/null") nil [2539 2810])
-            ("tramp-smb-version" variable nil nil [2812 2880])
-            ("tramp-smb-server-version" variable
-               (:constant-flag t
-                :default-value "Domain=\\[[^]]*\\] OS=\\[[^]]*\\] Server=\\[[^]]*\\]")
-                nil [2882 3015])
-            ("tramp-smb-prompt" variable
-               (:constant-flag t
-                :default-value "^\\(smb:\\|PS\\) .+> \\|^\\s-+Server\\s-+Comment$")
-                nil [3017 3150])
-            ("tramp-smb-wrong-passwd-regexp" variable
-               (:constant-flag t
-                :default-value (regexp-opt (quote ("NT_STATUS_LOGON_FAILURE" "NT_STATUS_WRONG_PASSWORD"))))
-                nil [3152 3322])
-            ("tramp-smb-errors" variable
-               (:constant-flag t
-                :default-value (mapconcat (quote identity) (\` ("Connection\\( to \\S-+\\)? failed" "Read from server failed, maybe it closed the connection" "Call timed out: server did not respond" "\\S-+: command not found" "Server doesn't support UNIX CIFS calls" (\, (regexp-opt (quote ("ERRDOS" "ERRHRD" "ERRSRV" "ERRbadfile" "ERRbadpw" "ERRfilexists" "ERRnoaccess" "ERRnomem" "ERRnosuchshare" "NT_STATUS_ACCESS_DENIED" "NT_STATUS_ACCOUNT_LOCKED_OUT" "NT_STATUS_BAD_NETWORK_NAME" "NT_STATUS_CANNOT_DELETE" "NT_STATUS_CONNECTION_DISCONNECTED" "NT_STATUS_CONNECTION_REFUSED" "NT_STATUS_DIRECTORY_NOT_EMPTY" "NT_STATUS_DUPLICATE_NAME" "NT_STATUS_FILE_IS_A_DIRECTORY" "NT_STATUS_HOST_UNREACHABLE" "NT_STATUS_IMAGE_ALREADY_LOADED" "NT_STATUS_INVALID_LEVEL" "NT_STATUS_INVALID_PARAMETER_MIX" "NT_STATUS_IO_TIMEOUT" "NT_STATUS_LOGON_FAILURE" "NT_STATUS_NETWORK_ACCESS_DENIED" "NT_STATUS_NOT_IMPLEMENTED" "NT_STATUS_NO_LOGON_SERVERS" "NT_STATUS_NO_SUCH_FILE" "NT_STATUS_NO_SUCH_USER" "NT_STATUS_OBJECT_NAME_COLLISION" "NT_STATUS_OBJECT_NAME_INVALID" "NT_STATUS_OBJECT_NAME_NOT_FOUND" "NT_STATUS_OBJECT_PATH_SYNTAX_BAD" "NT_STATUS_PASSWORD_MUST_CHANGE" "NT_STATUS_SHARING_VIOLATION" "NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE" "NT_STATUS_UNSUCCESSFUL" "NT_STATUS_WRONG_PASSWORD")))))) "\\|"))
-                nil [3324 5107])
-            ("tramp-smb-actions-with-share" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-smb-prompt tramp-action-succeed) (tramp-password-prompt-regexp tramp-action-password) (tramp-wrong-passwd-regexp tramp-action-permission-denied) (tramp-smb-errors tramp-action-permission-denied) (tramp-process-alive-regexp tramp-action-process-alive))))
-                nil [5109 5554])
-            ("tramp-smb-actions-without-share" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-password-prompt-regexp tramp-action-password) (tramp-wrong-passwd-regexp tramp-action-permission-denied) (tramp-smb-errors tramp-action-permission-denied) (tramp-process-alive-regexp tramp-action-out-of-band))))
-                nil [5556 5958])
-            ("tramp-smb-actions-with-tar" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-password-prompt-regexp tramp-action-password) (tramp-wrong-passwd-regexp tramp-action-permission-denied) (tramp-smb-errors tramp-action-permission-denied) (tramp-process-alive-regexp tramp-smb-action-with-tar))))
-                nil [5960 6366])
-            ("tramp-smb-actions-get-acl" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-password-prompt-regexp tramp-action-password) (tramp-wrong-passwd-regexp tramp-action-permission-denied) (tramp-smb-errors tramp-action-permission-denied) (tramp-process-alive-regexp tramp-smb-action-get-acl))))
-                nil [6368 6760])
-            ("tramp-smb-actions-set-acl" variable
-               (:constant-flag t
-                :default-value (quote ((tramp-password-prompt-regexp tramp-action-password) (tramp-wrong-passwd-regexp tramp-action-permission-denied) (tramp-smb-errors tramp-action-permission-denied) (tramp-process-alive-regexp tramp-smb-action-set-acl))))
-                nil [6762 7154])
-            ("tramp-smb-file-name-handler-alist" variable
-               (:constant-flag t
-                :default-value (quote ((add-name-to-file . tramp-smb-handle-add-name-to-file) (copy-directory . tramp-smb-handle-copy-directory) (copy-file . tramp-smb-handle-copy-file) (delete-directory . tramp-smb-handle-delete-directory) (delete-file . tramp-smb-handle-delete-file) (directory-file-name . tramp-handle-directory-file-name) (directory-files . tramp-smb-handle-directory-files) (directory-files-and-attributes . tramp-handle-directory-files-and-attributes) (dired-compress-file . ignore) (dired-uncache . tramp-handle-dired-uncache) (expand-file-name . tramp-smb-handle-expand-file-name) (file-accessible-directory-p . tramp-smb-handle-file-directory-p) (file-acl . tramp-smb-handle-file-acl) (file-attributes . tramp-smb-handle-file-attributes) (file-directory-p . tramp-smb-handle-file-directory-p) (file-file-equal-p . tramp-handle-file-equal-p) (file-executable-p . tramp-handle-file-exists-p) (file-exists-p . tramp-handle-file-exists-p) (file-in-directory-p . tramp-handle-file-in-directory-p) (file-local-copy . tramp-smb-handle-file-local-copy) (file-modes . tramp-handle-file-modes) (file-name-all-completions . tramp-smb-handle-file-name-all-completions) (file-name-as-directory . tramp-handle-file-name-as-directory) (file-name-case-insensitive-p . tramp-handle-file-name-case-insensitive-p) (file-name-completion . tramp-handle-file-name-completion) (file-name-directory . tramp-handle-file-name-directory) (file-name-nondirectory . tramp-handle-file-name-nondirectory) (file-newer-than-file-p . tramp-handle-file-newer-than-file-p) (file-notify-add-watch . tramp-handle-file-notify-add-watch) (file-notify-rm-watch . tramp-handle-file-notify-rm-watch) (file-notify-valid-p . tramp-handle-file-notify-valid-p) (file-ownership-preserved-p . ignore) (file-readable-p . tramp-handle-file-exists-p) (file-regular-p . tramp-handle-file-regular-p) (file-remote-p . tramp-handle-file-remote-p) (file-selinux-context . tramp-handle-file-selinux-context) (file-symlink-p . tramp-handle-file-symlink-p) (file-system-info . tramp-smb-handle-file-system-info) (file-truename . tramp-handle-file-truename) (file-writable-p . tramp-smb-handle-file-writable-p) (find-backup-file-name . tramp-handle-find-backup-file-name) (insert-directory . tramp-smb-handle-insert-directory) (insert-file-contents . tramp-handle-insert-file-contents) (load . tramp-handle-load) (make-auto-save-file-name . tramp-handle-make-auto-save-file-name) (make-directory . tramp-smb-handle-make-directory) (make-directory-internal . tramp-smb-handle-make-directory-internal) (make-nearby-temp-file . tramp-handle-make-nearby-temp-file) (make-symbolic-link . tramp-smb-handle-make-symbolic-link) (process-file . tramp-smb-handle-process-file) (rename-file . tramp-smb-handle-rename-file) (set-file-acl . tramp-smb-handle-set-file-acl) (set-file-modes . tramp-smb-handle-set-file-modes) (set-file-selinux-context . ignore) (set-file-times . ignore) (set-visited-file-modtime . tramp-handle-set-visited-file-modtime) (shell-command . tramp-handle-shell-command) (start-file-process . tramp-smb-handle-start-file-process) (substitute-in-file-name . tramp-smb-handle-substitute-in-file-name) (temporary-file-directory . tramp-handle-temporary-file-directory) (unhandled-file-name-directory . ignore) (vc-registered . ignore) (verify-visited-file-modtime . tramp-handle-verify-visited-file-modtime) (write-region . tramp-smb-handle-write-region))))
-                nil [7215 11403])
-            ("tramp-smb-winexe-program" variable (:default-value "winexe") nil [11470 11737])
-            ("tramp-smb-winexe-shell-command" variable (:default-value "powershell.exe") nil [11760 11981])
-            ("tramp-smb-winexe-shell-command-switch" variable (:default-value "-file -") nil [12004 12241])
-            ("tramp-smb-file-name-p" function (:arguments ("filename")) nil [12400 12582])
-            ("tramp-smb-file-name-handler" function (:arguments ("operation" "args")) nil [12605 12962])
-            ("unless" code nil nil [12985 13133])
-            ("tramp-smb-handle-add-name-to-file" function (:arguments ("filename" "newname" "ok-if-already-exists")) nil [13161 14765])
-            ("tramp-smb-action-with-tar" function (:arguments ("proc" "vec")) nil [14767 15277])
-            ("tramp-smb-handle-copy-directory" function (:arguments ("dirname" "newname" "keep-date" "parents" "copy-contents")) nil [15279 20830])
-            ("tramp-smb-handle-copy-file" function (:arguments ("filename" "newname" "ok-if-already-exists" "keep-date" "_preserve-uid-gid" "_preserve-extended-attributes")) nil [20832 22940])
-            ("tramp-smb-handle-delete-directory" function (:arguments ("directory" "recursive" "_trash")) nil [22942 24126])
-            ("tramp-smb-handle-delete-file" function (:arguments ("filename" "_trash")) nil [24128 24979])
-            ("tramp-smb-handle-directory-files" function (:arguments ("directory" "full" "match" "nosort")) nil [24981 25602])
-            ("tramp-smb-handle-expand-file-name" function (:arguments ("name" "dir")) nil [25604 26929])
-            ("tramp-smb-action-get-acl" function (:arguments ("proc" "vec")) nil [26931 27600])
-            ("tramp-smb-handle-file-acl" function (:arguments ("filename")) nil [27602 29729])
-            ("tramp-smb-handle-file-attributes" function (:arguments ("filename" "id-format")) nil [29731 31235])
-            ("tramp-smb-do-file-attributes-with-stat" function (:arguments ("vec" "id-format")) nil [31260 34521])
-            ("tramp-smb-handle-file-directory-p" function (:arguments ("filename")) nil [34523 34747])
-            ("tramp-smb-handle-file-local-copy" function (:arguments ("filename")) nil [34749 35507])
-            ("tramp-smb-handle-file-name-all-completions" function (:arguments ("filename" "directory")) nil [35587 36100])
-            ("tramp-smb-handle-file-system-info" function (:arguments ("filename")) nil [36102 37439])
-            ("tramp-smb-handle-file-writable-p" function (:arguments ("filename")) nil [37441 37785])
-            ("tramp-smb-handle-insert-directory" function (:arguments ("filename" "switches" "wildcard" "full-directory-p")) nil [37787 41968])
-            ("tramp-smb-handle-make-directory" function (:arguments ("dir" "parents")) nil [41970 42669])
-            ("tramp-smb-handle-make-directory-internal" function (:arguments ("directory")) nil [42671 43658])
-            ("tramp-smb-handle-make-symbolic-link" function (:arguments ("target" "linkname" "ok-if-already-exists")) nil [43660 45713])
-            ("tramp-smb-handle-process-file" function (:arguments ("program" "infile" "destination" "display" "args")) nil [45715 49574])
-            ("tramp-smb-handle-rename-file" function (:arguments ("filename" "newname" "ok-if-already-exists")) nil [49576 51467])
-            ("tramp-smb-action-set-acl" function (:arguments ("proc" "vec")) nil [51469 51812])
-            ("tramp-smb-handle-set-file-acl" function (:arguments ("filename" "acl-string")) nil [51814 54564])
-            ("tramp-smb-handle-set-file-modes" function (:arguments ("filename" "mode")) nil [54566 54990])
-            ("tramp-smb-handle-start-file-process" function (:arguments ("name" "buffer" "program" "args")) nil [55154 56931])
-            ("tramp-smb-handle-substitute-in-file-name" function (:arguments ("filename")) nil [56933 57709])
-            ("tramp-smb-handle-write-region" function (:arguments ("start" "end" "filename" "append" "visit" "lockname" "mustbenew")) nil [57711 59398])
-            ("tramp-smb-get-share" function (:arguments ("vec")) nil [59435 59677])
-            ("tramp-smb-get-localname" function (:arguments ("vec")) nil [59679 60548])
-            ("tramp-smb-get-file-entries" function (:arguments ("directory")) nil [60655 62304])
-            ("tramp-smb-read-file-entry" function (:arguments ("share")) nil [64412 67157])
-            ("tramp-smb-get-cifs-capabilities" function (:arguments ("vec")) nil [67159 67808])
-            ("tramp-smb-get-stat-capability" function (:arguments ("vec")) nil [67810 68198])
-            ("tramp-smb-send-command" function (:arguments ("vec" "command")) nil [68227 68519])
-            ("tramp-smb-maybe-open-connection" function (:arguments ("vec" "argument")) nil [68521 74861])
-            ("tramp-smb-wait-for-output" function (:arguments ("vec")) nil [74931 76470])
-            ("tramp-smb-kill-winexe-function" function nil nil [76472 76698])
-            ("tramp-smb-call-winexe" function (:arguments ("vec")) nil [76700 77982])
-            ("tramp-smb-shell-quote-argument" function (:arguments ("s")) nil [77984 78169])
-            ("add-hook" code nil nil [78171 78255])
-            ("tramp-smb" package nil nil [78257 78277]))          
-      :file "tramp-smb.el"
-      :pointmax 78555
-      :fsize 78554
-      :lastmodtime '(23525 29579 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!net!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041nxml\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041nxml\041semantic.cache"
deleted file mode 100644
index 913aa50..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041nxml\041semantic.cache"
+++ /dev/null
@@ -1,132 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("xmltok-type" variable nil nil [3998 4022])
-            ("xmltok-start" variable nil nil [4023 4048])
-            ("xmltok-name-colon" variable nil nil [4049 4079])
-            ("xmltok-name-end" variable nil nil [4080 4108])
-            ("xmltok-replacement" variable nil nil [4109 4211])
-            ("xmltok-attributes" variable nil nil [4213 4623])
-            ("xmltok-namespace-attributes" variable nil nil [4625 4778])
-            ("xmltok-dtd" variable nil nil [4780 6027])
-            ("xmltok-errors" variable nil nil [6030 6434])
-            ("xmltok-save" function (:arguments ("body")) nil [6436 6679])
-            ("xmltok-attribute-name-start" function (:arguments ("att")) nil [6681 6740])
-            ("xmltok-attribute-name-colon" function (:arguments ("att")) nil [6742 6801])
-            ("xmltok-attribute-name-end" function (:arguments ("att")) nil [6803 6860])
-            ("xmltok-attribute-value-start" function (:arguments ("att")) nil [6862 6922])
-            ("xmltok-attribute-value-end" function (:arguments ("att")) nil [6924 6982])
-            ("xmltok-attribute-raw-normalized-value" function (:arguments ("att")) nil [6984 7308])
-            ("xmltok-attribute-refs" function (:arguments ("att")) nil [7310 7643])
-            ("xmltok-attribute-prefix" function (:arguments ("att")) nil [7645 7831])
-            ("xmltok-attribute-local-name" function (:arguments ("att")) nil [7833 8074])
-            ("xmltok-attribute-value" function (:arguments ("att")) nil [8076 8330])
-            ("xmltok-start-tag-prefix" function nil nil [8332 8479])
-            ("xmltok-start-tag-local-name" function nil nil [8481 8624])
-            ("xmltok-end-tag-prefix" function nil nil [8626 8772])
-            ("xmltok-end-tag-local-name" function nil nil [8774 8950])
-            ("xmltok-start-tag-qname" function nil nil [8952 9055])
-            ("xmltok-end-tag-qname" function nil nil [9057 9158])
-            ("xmltok-make-attribute" function (:arguments ("name-begin" "name-colon" "name-end" "value-begin" "value-end" "raw-normalized-value")) nil [9160 9611])
-            ("xmltok-error-message" function (:arguments ("err")) nil [9613 9665])
-            ("xmltok-error-start" function (:arguments ("err")) nil [9667 9717])
-            ("xmltok-error-end" function (:arguments ("err")) nil [9719 9767])
-            ("xmltok-make-error" function (:arguments ("message" "start" "end")) nil [9769 9846])
-            ("xmltok-add-error" function (:arguments ("message" "start" "end")) nil [9848 10056])
-            ("xmltok-forward" function nil nil [10058 11143])
-            ("xmltok+" function (:arguments ("args")) nil [11497 11839])
-            ("xmltok-r" function (:arguments ("str")) nil [11392 11433])
-            ("xmltok-defregexp" function (:arguments ("sym" "r")) nil [13062 13751])
-            ("xmltok-get-index" function (:arguments ("elem" "list")) nil [12378 12707])
-            ("xmltok-p" function (:arguments ("r")) nil [12232 12319])
-            ("xmltok-g" function (:arguments ("name" "r")) nil [11975 12228])
-            ("let*" code nil nil [13776 19784])
-            ("xmltok-ncname-regexp" variable
-               (:constant-flag t
-                :default-value (xmltok-ncname regexp))
-                nil [19787 19841])
-            ("xmltok-scan-after-lt" function nil nil [19843 23640])
-            ("xmltok-scan-after-processing-instruction-open" function nil nil [23805 25014])
-            ("xmltok-scan-after-comment-open" function nil nil [25016 25250])
-            ("xmltok-scan-attributes" function nil nil [25252 27832])
-            ("xmltok-add-attribute" function nil nil [27834 28760])
-            ("xmltok-normalize-attribute" function (:arguments ("att")) nil [28762 30034])
-            ("xmltok-scan-after-amp" function (:arguments ("entity-handler")) nil [30036 31019])
-            ("xmltok-entity-error-messages" variable
-               (:constant-flag t
-                :default-value (quote ((unparsed . "Referenced entity is unparsed") (not-well-formed . "Referenced entity is not well-formed") (external nil . "Referenced entity is external") (element nil . "Referenced entity contains <"))))
-                nil [31021 31277])
-            ("xmltok-handle-entity" function (:arguments ("start" "end" "attributep")) nil [31279 32055])
-            ("xmltok-scan-char-ref" function (:arguments ("start" "end" "base")) nil [32057 32431])
-            ("xmltok-char-number" function (:arguments ("start" "end")) nil [32433 32719])
-            ("xmltok-valid-char-p" function (:arguments ("n")) nil [32721 32965])
-            ("xmltok-unicode-to-char" function (:arguments ("n")) nil [32967 33126])
-            ("xmltok-contains-doctype" variable nil nil [33148 33184])
-            ("xmltok-doctype-external-subset-flag" variable nil nil [33185 33233])
-            ("xmltok-internal-subset-start" variable nil nil [33234 33275])
-            ("xmltok-had-param-entity-ref" variable nil nil [33276 33316])
-            ("xmltok-prolog-regions" variable nil nil [33317 33351])
-            ("xmltok-standalone" variable nil nil [33352 33457])
-            ("xmltok-markup-declaration-doctype-flag" variable nil nil [33458 33509])
-            ("xmltok-predefined-entity-alist" variable
-               (:constant-flag t
-                :default-value (quote (("lt" "<" . "<") ("gt" ">" . ">") ("amp" "&" . "&") ("apos" "'" . "'") ("quot" "\"" . "\""))))
-                nil [33511 33665])
-            ("xmltok-forward-prolog" function nil nil [33667 35033])
-            ("xmltok-bad-xml-decl-regexp" variable
-               (:constant-flag t
-                :default-value "[ 	

-]*<\\?xml\\(?:[ 	

-]\\|\\?>\\)")
-                nil [35035 35118])
-            ("xmltok-get-declared-encoding-position" function (:arguments ("limit")) nil [35135 36213])
-            ("xmltok-scan-xml-declaration" function nil nil [36215 37963])
-            ("xmltok-markup-declaration-alist" variable
-               (:constant-flag t
-                :default-value (quote (("ELEMENT" . xmltok-parse-element-declaration) ("ATTLIST" . xmltok-parse-attlist-declaration) ("ENTITY" . xmltok-parse-entity-declaration) ("NOTATION" . xmltok-parse-notation-declaration))))
-                nil [37965 38212])
-            ("xmltok-parse-prolog-item" function nil nil [38214 40160])
-            ("xmltok-parse-doctype" function nil nil [40162 40990])
-            ("xmltok-parse-attlist-declaration" function nil nil [40992 41781])
-            ("xmltok-parse-nmtoken-group" function nil nil [41783 41963])
-            ("xmltok-parse-element-declaration" function nil nil [41965 42563])
-            ("xmltok-parse-model-group" function nil nil [42565 43060])
-            ("xmltok-parse-model-group-member" function nil nil [43062 43267])
-            ("xmltok-parse-entity-declaration" function nil nil [43269 44097])
-            ("xmltok-define-entity" function (:arguments ("name" "value")) nil [44099 44312])
-            ("xmltok-parse-entity-value" function nil nil [44314 45454])
-            ("xmltok-parse-notation-declaration" function nil nil [45456 45867])
-            ("xmltok-parse-external-id" function nil nil [45869 46148])
-            ("xmltok-require-next-token" function (:arguments ("types")) nil [46150 46264])
-            ("xmltok-require-token" function (:arguments ("types")) nil [46266 46893])
-            ("xmltok-current-token-string" function nil nil [46895 46989])
-            ("define-error" code nil nil [46991 47083])
-            ("xmltok-markup-declaration-parse-error" function nil nil [47085 47187])
-            ("xmltok-skip-markup-declaration" function nil nil [47189 47762])
-            ("xmltok-prolog-region-type" function (:arguments ("required")) nil [47764 48044])
-            ("xmltok-next-prolog-token" function nil nil [48073 51723])
-            ("xmltok-scan-prolog-literal" function nil nil [51725 52346])
-            ("xmltok-scan-prolog-after-processing-instruction-open" function nil nil [52348 54691])
-            ("xmltok-parse-entities" function nil nil [54693 55005])
-            ("xmltok-parse-entity" function (:arguments ("name-def")) nil [55007 55567])
-            ("xmltok-parse-entity-replacement" function nil nil [55569 57382])
-            ("xmltok-handle-nested-entity" function (:arguments ("start" "end")) nil [57384 57810])
-            ("xmltok-append-entity-def" function (:arguments ("d1" "d2")) nil [57812 58187])
-            ("xmltok-add-prolog-region" function (:arguments ("type" "start" "end")) nil [58189 58330])
-            ("xmltok-merge-attributes" function nil nil [58332 59291])
-            ("xmltok-forward-test" function nil nil [59306 59449])
-            ("xmltok-next-prolog-token-test" function nil nil [59451 59683])
-            ("xmltok" package nil nil [59685 59702]))          
-      :file "xmltok.el"
-      :pointmax 59728
-      :fsize 59727
-      :lastmodtime '(23525 29581 0 0)
-      :unmatched-syntax '((close-paren 19784 . 19785) (symbol 13756 . 13773) (open-paren 13755 . 13756) (close-paren 13751 . 13752) (symbol 11843 . 11860) (open-paren 11842 . 11843) (close-paren 11839 . 11840) (symbol 11146 . 11163) (open-paren 11145 . 11146))))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!nxml!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041org\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041org\041semantic.cache"
deleted file mode 100644
index 117ce64..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041org\041semantic.cache"
+++ /dev/null
@@ -1,8819 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1926 1943])
-            ("org" include nil nil [1944 1958])
-            ("org-macs" include nil nil [1959 1978])
-            ("declare-function" code nil nil [1980 2105])
-            ("declare-function" code nil nil [2106 2174])
-            ("declare-function" code nil nil [2175 2253])
-            ("declare-function" code nil nil [2254 2332])
-            ("declare-function" code nil nil [2333 2411])
-            ("declare-function" code nil nil [2412 2490])
-            ("declare-function" code nil nil [2491 2569])
-            ("declare-function" code nil nil [2570 2648])
-            ("declare-function" code nil nil [2649 2717])
-            ("declare-function" code nil nil [2718 2796])
-            ("declare-function" code nil nil [2797 2875])
-            ("declare-function" code nil nil [2876 2954])
-            ("declare-function" code nil nil [2955 3023])
-            ("declare-function" code nil nil [3024 3102])
-            ("declare-function" code nil nil [3103 3181])
-            ("declare-function" code nil nil [3182 3260])
-            ("declare-function" code nil nil [3261 3327])
-            ("declare-function" code nil nil [3329 3392])
-            ("declare-function" code nil nil [3393 3494])
-            ("declare-function" code nil nil [3495 3560])
-            ("declare-function" code nil nil [3561 3639])
-            ("declare-function" code nil nil [3640 3713])
-            ("declare-function" code nil nil [3714 3801])
-            ("declare-function" code nil nil [3802 3863])
-            ("declare-function" code nil nil [3864 3931])
-            ("declare-function" code nil nil [3932 4010])
-            ("declare-function" code nil nil [4011 4065])
-            ("declare-function" code nil nil [4066 4128])
-            ("declare-function" code nil nil [4129 4195])
-            ("calendar-mode-map" variable nil nil [4197 4223])
-            ("org-clock-current-task" variable nil nil [4224 4255])
-            ("org-current-tag-alist" variable nil nil [4256 4286])
-            ("org-mobile-force-id-on-agenda-items" variable nil nil [4287 4331])
-            ("org-habit-show-habits" variable nil nil [4332 4362])
-            ("org-habit-show-habits-only-for-today" variable nil nil [4363 4408])
-            ("org-habit-show-all-today" variable nil nil [4409 4442])
-            ("org-agenda-buffer-name" variable (:default-value "*Org Agenda*") nil [4507 4553])
-            ("org-agenda-overriding-header" variable nil nil [4554 4595])
-            ("org-agenda-title-append" variable nil nil [4596 4632])
-            ("with-no-warnings" code nil nil [4633 4666])
-            ("with-no-warnings" code nil nil [4699 4731])
-            ("original-date" variable nil nil [4765 4787])
-            ("org-agenda-undo-list" variable nil nil [4839 4938])
-            ("org-agenda-pending-undo-list" variable nil nil [4939 5056])
-            ("org-agenda-confirm-kill" variable (:default-value 1) nil [5058 5456])
-            ("org-agenda-compact-blocks" variable nil nil [5458 5700])
-            ("org-agenda-block-separator" variable (:default-value 61) nil [5702 6173])
-            ("org-agenda-export" customgroup (:user-visible-flag t) nil [6175 6314])
-            ("org-agenda-with-colors" variable (:default-value t) nil [6316 6443])
-            ("org-agenda-exporter-settings" variable nil nil [6445 6991])
-            ("org-agenda-before-write-hook" variable (:default-value (quote (org-agenda-add-entry-text))) nil [6993 7288])
-            ("org-agenda-add-entry-text-maxlines" variable nil nil [7290 7924])
-            ("org-agenda-add-entry-text-descriptive-links" variable (:default-value t) nil [7926 8267])
-            ("org-agenda-export-html-style" variable nil nil [8269 9627])
-            ("org-agenda-persistent-filter" variable nil nil [9629 9772])
-            ("org-agenda-custom-commands" customgroup (:user-visible-flag t) nil [9774 9921])
-            ("org-sorting-choice" variable
-               (:constant-flag t
-                :default-value (quote (choice (const time-up) (const time-down) (const timestamp-up) (const timestamp-down) (const scheduled-up) (const scheduled-down) (const deadline-up) (const deadline-down) (const ts-up) (const ts-down) (const tsia-up) (const tsia-down) (const category-keep) (const category-up) (const category-down) (const tag-down) (const tag-up) (const priority-up) (const priority-down) (const todo-state-up) (const todo-state-down) (const effort-up) (const effort-down) (const habit-up) (const habit-down) (const alpha-up) (const alpha-down) (const user-defined-up) (const user-defined-down))))
-                nil [9923 10614])
-            ("defvaralias" code nil nil [10737 10806])
-            ("defvaralias" code nil nil [10807 10862])
-            ("org-agenda-entry-types" variable (:default-value (quote (:deadline :scheduled :timestamp :sexp))) nil [10864 12560])
-            ("org-agenda-custom-commands-local-options" variable
-               (:constant-flag t
-                :default-value (\` (repeat :tag "Local settings for this command.  Remember to quote values" (choice :tag "Setting" (list :tag "Heading for this block" (const org-agenda-overriding-header) (string :tag "Headline")) (list :tag "Files to be searched" (const org-agenda-files) (list (const :format "" quote) (repeat (file)))) (list :tag "Sorting strategy" (const org-agenda-sorting-strategy) (list (const :format "" quote) (repeat (\, org-sorting-choice)))) (list :tag "Prefix format" (const org-agenda-prefix-format :value "  %-12:c%?-12t% s") (string)) (list :tag "Number of days in agenda" (const org-agenda-span) (list (const :format "" quote) (choice (const :tag "Day" day) (const :tag "Week" week) (const :tag "Fortnight" fortnight) (const :tag "Month" month) (const :tag "Year" year) (integer :tag "Custom")))) (list :tag "Fixed starting date" (const org-agenda-start-day) (string :value "2007-11-01")) (list :tag "Start on day of week" (const org-agenda-start-on-weekday) (choice :value 1 (const :tag "Today" nil) (integer :tag "Weekday No."))) (list :tag "Include data from diary" (const org-agenda-include-diary) (boolean)) (list :tag "Deadline Warning days" (const org-deadline-warning-days) (integer :value 1)) (list :tag "Category filter preset" (const org-agenda-category-filter-preset) (list (const :format "" quote) (repeat (string :tag "+category or -category")))) (list :tag "Tags filter preset" (const org-agenda-tag-filter-preset) (list (const :format "" quote) (repeat (string :tag "+tag or -tag")))) (list :tag "Effort filter preset" (const org-agenda-effort-filter-preset) (list (const :format "" quote) (repeat (string :tag "+=10 or -=10 or +<10 or ->10")))) (list :tag "Regexp filter preset" (const org-agenda-regexp-filter-preset) (list (const :format "" quote) (repeat (string :tag "+regexp or -regexp")))) (list :tag "Set daily/weekly entry types" (const org-agenda-entry-types) (list (const :format "" quote) (set :greedy t :value (\, org-agenda-entry-types) (const :deadline) (const :scheduled) (const :deadline*) (const :scheduled*) (const :timestamp) (const :sexp)))) (list :tag "Standard skipping condition" :value (org-agenda-skip-function (quote (org-agenda-skip-entry-if))) (const org-agenda-skip-function) (list (const :format "" quote) (list (choice :tag "Skipping range" (const :tag "Skip entry" org-agenda-skip-entry-if) (const :tag "Skip subtree" org-agenda-skip-subtree-if)) (repeat :inline t :tag "Conditions for skipping" (choice :tag "Condition type" (list :tag "Regexp matches" :inline t (const :format "" regexp) (regexp)) (list :tag "Regexp does not match" :inline t (const :format "" notregexp) (regexp)) (list :tag "TODO state is" :inline t (const todo) (choice (const :tag "Any not-done state" todo) (const :tag "Any done state" done) (const :tag "Any state" any) (list :tag "Keyword list" (const :format "" quote) (repeat (string :tag "Keyword"))))) (list :tag "TODO state is not" :inline t (const nottodo) (choice (const :tag "Any not-done state" todo) (const :tag "Any done state" done) (const :tag "Any state" any) (list :tag "Keyword list" (const :format "" quote) (repeat (string :tag "Keyword"))))) (const :tag "scheduled" scheduled) (const :tag "not scheduled" notscheduled) (const :tag "deadline" deadline) (const :tag "no deadline" notdeadline) (const :tag "timestamp" timestamp) (const :tag "no timestamp" nottimestamp)))))) (list :tag "Non-standard skipping condition" :value (org-agenda-skip-function) (const org-agenda-skip-function) (sexp :tag "Function or form (quoted!)")) (list :tag "Any variable" (variable :tag "Variable") (sexp :tag "Value (sexp)"))))))
-                nil [12562 17062])
-            ("org-agenda-custom-commands" variable (:default-value (quote (("n" "Agenda and all TODOs" ((agenda "") (alltodo "")))))) nil [17065 23181])
-            ("org-agenda-query-register" variable (:default-value 111) nil [23183 23453])
-            ("org-stuck-projects" variable (:default-value (quote ("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil ""))) nil [23455 25412])
-            ("org-agenda-skip" customgroup (:user-visible-flag t) nil [25414 25545])
-            ("org-agenda-skip-function-global" variable nil nil [25547 26317])
-            ("org-agenda-daily/weekly" customgroup (:user-visible-flag t) nil [26319 26459])
-            ("org-agenda-todo-list" customgroup (:user-visible-flag t) nil [26460 26603])
-            ("org-agenda-match-view" customgroup (:user-visible-flag t) nil [26604 26765])
-            ("org-agenda-search-view" customgroup (:user-visible-flag t) nil [26766 26903])
-            ("org-agenda-archives-mode" variable nil nil [26905 27240])
-            ("org-agenda-restriction-lock-highlight-subtree" variable (:default-value t) nil [27242 27550])
-            ("org-agenda-skip-comment-trees" variable (:default-value t) nil [27552 27763])
-            ("org-agenda-todo-list-sublevels" variable (:default-value t) nil [27765 28067])
-            ("org-agenda-todo-ignore-with-date" variable nil nil [28069 28630])
-            ("org-agenda-todo-ignore-timestamp" variable nil nil [28632 30281])
-            ("org-agenda-todo-ignore-scheduled" variable nil nil [30283 31649])
-            ("org-agenda-todo-ignore-deadlines" variable nil nil [31651 33402])
-            ("org-agenda-todo-ignore-time-comparison-use-seconds" variable nil nil [33404 34086])
-            ("org-agenda-tags-todo-honor-ignore-options" variable nil nil [34088 34745])
-            ("org-agenda-skip-scheduled-if-done" variable nil nil [34747 35170])
-            ("org-agenda-skip-scheduled-if-deadline-is-shown" variable nil nil [35172 36140])
-            ("org-agenda-skip-timestamp-if-deadline-is-shown" variable nil nil [36142 36764])
-            ("org-agenda-skip-deadline-if-done" variable nil nil [36766 37237])
-            ("org-agenda-skip-deadline-prewarning-if-scheduled" variable nil nil [37239 38378])
-            ("org-agenda-skip-scheduled-delay-if-deadline" variable nil nil [38380 39165])
-            ("org-agenda-skip-additional-timestamps-same-entry" variable nil nil [39167 39474])
-            ("org-agenda-skip-timestamp-if-done" variable nil nil [39476 39676])
-            ("org-agenda-dim-blocked-tasks" variable (:default-value t) nil [39678 40747])
-            ("org-agenda-startup" customgroup (:user-visible-flag t) nil [40749 40898])
-            ("org-agenda-menu-show-matcher" variable (:default-value t) nil [40900 41345])
-            ("org-agenda-menu-two-columns" variable nil nil [41347 41605])
-            ("org-agenda-finalize-hook" variable nil nil [41607 41980])
-            ("org-agenda-mouse-1-follows-link" variable nil nil [41982 42232])
-            ("org-agenda-start-with-follow-mode" variable nil nil [42234 42400])
-            ("org-agenda-follow-indirect" variable nil nil [42402 42605])
-            ("org-agenda-show-outline-path" variable (:default-value t) nil [42607 42763])
-            ("org-agenda-start-with-entry-text-mode" variable nil nil [42765 42939])
-            ("org-agenda-entry-text-maxlines" variable (:default-value 5) nil [42941 43260])
-            ("org-agenda-entry-text-exclude-regexps" variable nil nil [43262 43546])
-            ("org-agenda-entry-text-leaders" variable (:default-value "    > ") nil [43548 43743])
-            ("org-agenda-entry-text-cleanup-hook" variable nil nil [43745 44181])
-            ("org-agenda-include-inactive-timestamps" variable nil nil [44183 44312])
-            ("org-agenda-windows" customgroup (:user-visible-flag t) nil [44314 44463])
-            ("org-agenda-window-setup" variable (:default-value (quote reorganize-frame)) nil [44465 45302])
-            ("org-agenda-window-frame-fractions" variable (:default-value (quote (0.5 . 0.75))) nil [45304 45678])
-            ("org-agenda-restore-windows-after-quit" variable nil nil [45680 46133])
-            ("org-agenda-span" variable (:default-value (quote week)) nil [46135 46561])
-            ("org-agenda-start-on-weekday" variable (:default-value 1) nil [46563 46929])
-            ("org-agenda-show-all-dates" variable (:default-value t) nil [46931 47154])
-            ("org-agenda-format-date" variable (:default-value (quote org-agenda-format-date-aligned)) nil [47156 47641])
-            ("org-agenda-format-date-aligned" function (:arguments ("date")) nil [47643 48416])
-            ("org-agenda-time-leading-zero" variable nil nil [48418 48654])
-            ("org-agenda-timegrid-use-ampm" variable nil nil [48656 48815])
-            ("org-agenda-time-of-day-to-ampm" function (:arguments ("time")) nil [48817 49376])
-            ("org-agenda-time-of-day-to-ampm-maybe" function (:arguments ("time")) nil [49378 49606])
-            ("org-agenda-weekend-days" variable (:default-value (quote (6 0))) nil [49608 50035])
-            ("org-agenda-move-date-from-past-immediately-to-today" variable (:default-value t) nil [50037 50468])
-            ("org-agenda-include-diary" variable nil nil [50470 50702])
-            ("org-agenda-include-deadlines" variable (:default-value t) nil [50704 50947])
-            ("org-agenda-show-future-repeats" variable (:default-value t) nil [50949 51398])
-            ("org-agenda-prefer-last-repeat" variable nil nil [51400 52421])
-            ("org-scheduled-past-days" variable (:default-value 10000) nil [52423 52761])
-            ("org-deadline-past-days" variable (:default-value 10000) nil [52763 53142])
-            ("org-agenda-log-mode-items" variable (:default-value (quote (closed clock))) nil [53144 53779])
-            ("org-agenda-clock-consistency-checks" variable (:default-value (quote (:max-duration "10:00" :min-duration 0 :max-gap "0:05" :gap-ok-around ("4:00") :default-face ((:background "DarkRed") (:foreground "white")) :overlap-face nil :gap-face nil :no-end-time-face nil :long-face nil :short-face nil))) nil [53781 55832])
-            ("org-agenda-log-mode-add-notes" variable (:default-value t) nil [55834 56159])
-            ("org-agenda-start-with-log-mode" variable nil nil [56161 56845])
-            ("org-agenda-start-with-clockreport-mode" variable nil nil [56847 57057])
-            ("org-agenda-clockreport-parameter-plist" variable (:default-value (quote (:link t :maxlevel 2))) nil [57059 57622])
-            ("org-agenda-search-view-always-boolean" variable nil nil [57624 58878])
-            ("defvaralias" code nil nil [58880 58976])
-            ("org-agenda-search-view-force-full-words" variable nil nil [58978 59214])
-            ("org-agenda-search-view-max-outline-level" variable nil nil [59216 59583])
-            ("org-agenda-time-grid" customgroup (:user-visible-flag t) nil [59585 59727])
-            ("org-agenda-search-headline-for-time" variable (:default-value t) nil [59729 60249])
-            ("org-agenda-use-time-grid" variable (:default-value t) nil [60251 60692])
-            ("org-agenda-time-grid" variable (:default-value (quote ((daily today require-timed) (800 1000 1200 1400 1600 1800 2000) "......" "----------------"))) nil [60694 62208])
-            ("org-agenda-show-current-time-in-grid" variable (:default-value t) nil [62210 62384])
-            ("org-agenda-current-time-string" variable (:default-value "now - - - - - - - - - - - - - - - - - - - - - - - - -") nil [62386 62609])
-            ("org-agenda-sorting" customgroup (:user-visible-flag t) nil [62611 62743])
-            ("org-agenda-sorting-strategy" variable (:default-value (quote ((agenda habit-down time-up priority-down category-keep) (todo priority-down category-keep) (tags priority-down category-keep) (search category-keep)))) nil [62745 66475])
-            ("org-agenda-cmp-user-defined" variable nil nil [66477 66900])
-            ("org-sort-agenda-notime-is-late" variable (:default-value t) nil [66902 67374])
-            ("org-sort-agenda-noeffort-is-high" variable (:default-value t) nil [67376 67767])
-            ("org-agenda-line-format" customgroup (:user-visible-flag t) nil [67769 67926])
-            ("org-agenda-prefix-format" variable (:default-value (quote ((agenda . " %i %-12:c%?-12t% s") (todo . " %i %-12:c") (tags . " %i %-12:c") (search . " %i %-12:c")))) nil [67928 70993])
-            ("org-prefix-format-compiled" variable nil nil [70995 71258])
-            ("org-agenda-todo-keyword-format" variable (:default-value "%-1s") nil [71260 71521])
-            ("org-agenda-diary-sexp-prefix" variable nil nil [71523 71892])
-            ("org-agenda-timerange-leaders" variable (:default-value (quote ("" "(%d/%d): "))) nil [71894 72491])
-            ("org-agenda-scheduled-leaders" variable (:default-value (quote ("Scheduled: " "Sched.%2dx: "))) nil [72493 73221])
-            ("org-agenda-inactive-leader" variable (:default-value "[") nil [73223 73463])
-            ("org-agenda-deadline-leaders" variable (:default-value (quote ("Deadline:  " "In %3d d.: " "%2d d. ago: "))) nil [73465 74095])
-            ("org-agenda-remove-times-when-in-prefix" variable (:default-value t) nil [74097 74932])
-            ("org-agenda-remove-timeranges-from-blocks" variable nil nil [74934 75153])
-            ("org-agenda-default-appointment-duration" variable nil nil [75155 75519])
-            ("org-agenda-show-inherited-tags" variable (:default-value t) nil [75521 76475])
-            ("org-agenda-use-tag-inheritance" variable (:default-value (quote (todo search agenda))) nil [76477 77464])
-            ("org-agenda-hide-tags-regexp" variable nil nil [77466 77865])
-            ("org-agenda-remove-tags" variable nil nil [77867 78249])
-            ("defvaralias" code nil nil [78251 78329])
-            ("org-agenda-tags-column" variable (:default-value (quote auto)) nil [78331 78922])
-            ("defvaralias" code nil nil [78924 78994])
-            ("org-agenda-fontify-priorities" variable (:default-value (quote cookies)) nil [78996 80080])
-            ("org-agenda-day-face-function" variable nil nil [80082 80449])
-            ("org-agenda-category-icon-alist" variable nil nil [80451 81748])
-            ("org-agenda-column-view" customgroup (:user-visible-flag t) nil [81750 81890])
-            ("org-agenda-view-columns-initially" variable nil nil [81892 82136])
-            ("org-agenda-columns-show-summaries" variable (:default-value t) nil [82138 82310])
-            ("org-agenda-columns-compute-summary-properties" variable (:default-value t) nil [82312 82835])
-            ("org-agenda-columns-add-appointments-to-effort-sum" variable nil nil [82837 83334])
-            ("org-agenda-auto-exclude-function" variable nil nil [83336 83985])
-            ("org-agenda-bulk-custom-functions" variable nil nil [83987 84488])
-            ("org-agenda-with-point-at-orig-entry" function (:arguments ("string" "body")) nil [84490 85041])
-            ("def-edebug-spec" code nil nil [85042 85107])
-            ("org-add-agenda-custom-command" function (:arguments ("entry")) nil [85109 85511])
-            ("org-agenda-mode-map" variable (:default-value (make-sparse-keymap)) nil [85545 85628])
-            ("defvaralias" code nil nil [85629 85682])
-            ("org-agenda-menu" variable nil nil [85684 85708])
-            ("org-agenda-restrict" variable nil nil [85739 85771])
-            ("org-agenda-follow-mode" variable nil nil [85802 85837])
-            ("org-agenda-entry-text-mode" variable nil nil [85838 85877])
-            ("org-agenda-clockreport-mode" variable nil nil [85878 85918])
-            ("org-agenda-show-log" variable nil nil [85919 86080])
-            ("org-agenda-redo-command" variable nil nil [86081 86117])
-            ("org-agenda-query-string" variable nil nil [86118 86154])
-            ("org-agenda-mode-hook" variable nil nil [86155 86294])
-            ("org-agenda-type" variable nil nil [86295 86323])
-            ("org-agenda-force-single-file" variable nil nil [86324 86365])
-            ("org-agenda-bulk-marked-entries" variable nil nil [86366 86473])
-            ("org-agenda-current-date" variable nil nil [86474 86552])
-            ("org-agenda-sticky" variable nil nil [86591 86866])
-            ("org-toggle-sticky-agenda" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [86885 87495])
-            ("org-agenda-buffer" variable nil nil [87497 87572])
-            ("org-agenda-last-prefix-arg" variable nil nil [87574 87613])
-            ("org-agenda-this-buffer-name" variable nil nil [87614 87654])
-            ("org-agenda-doing-sticky-redo" variable nil nil [87655 87696])
-            ("org-agenda-this-buffer-is-sticky" variable nil nil [87697 87742])
-            ("org-agenda-last-indirect-buffer" variable nil nil [87743 87851])
-            ("org-agenda-local-vars" variable
-               (:constant-flag t
-                :default-value (quote (org-agenda-this-buffer-name org-agenda-undo-list org-agenda-pending-undo-list org-agenda-follow-mode org-agenda-entry-text-mode org-agenda-clockreport-mode org-agenda-show-log org-agenda-redo-command org-agenda-query-string org-agenda-type org-agenda-bulk-marked-entries org-agenda-undo-has-started-in org-agenda-info org-agenda-pre-window-conf org-agenda-columns-active org-agenda-tag-filter org-agenda-category-filter org-agenda-top-headline-filter org-agenda-regexp-filter org-agenda-effort-filter org-agenda-markers org-agenda-last-search-view-search-was-boolean org-agenda-last-indirect-buffer org-agenda-filtered-by-category org-agenda-filter-form org-agenda-cycle-counter org-agenda-last-prefix-arg)))
-                nil [87853 88778])
-            ("org-agenda-mode" function (:user-visible-flag t) nil [88780 91511])
-            ("substitute-key-definition" code nil nil [91513 91600])
-            ("org-defkey" code nil nil [91601 91661])
-            ("org-defkey" code nil nil [91662 91722])
-            ("org-defkey" code nil nil [91723 91788])
-            ("org-defkey" code nil nil [91789 91849])
-            ("org-defkey" code nil nil [91850 91912])
-            ("org-defkey" code nil nil [91913 91989])
-            ("org-defkey" code nil nil [91990 92065])
-            ("org-defkey" code nil nil [92066 92131])
-            ("org-defkey" code nil nil [92132 92199])
-            ("org-defkey" code nil nil [92200 92269])
-            ("org-defkey" code nil nil [92270 92341])
-            ("org-defkey" code nil nil [92342 92415])
-            ("org-defkey" code nil nil [92416 92488])
-            ("org-defkey" code nil nil [92489 92556])
-            ("org-defkey" code nil nil [92557 92628])
-            ("org-defkey" code nil nil [92629 92696])
-            ("org-defkey" code nil nil [92697 92760])
-            ("org-defkey" code nil nil [92761 92830])
-            ("org-defkey" code nil nil [92831 92887])
-            ("org-defkey" code nil nil [92888 92963])
-            ("org-defkey" code nil nil [92964 93042])
-            ("org-defkey" code nil nil [93043 93129])
-            ("org-defkey" code nil nil [93130 93197])
-            ("org-defkey" code nil nil [93198 93265])
-            ("org-defkey" code nil nil [93266 93329])
-            ("org-defkey" code nil nil [93330 93395])
-            ("org-defkey" code nil nil [93396 93470])
-            ("org-defkey" code nil nil [93471 93544])
-            ("org-defkey" code nil nil [93545 93611])
-            ("org-defkey" code nil nil [93612 93693])
-            ("org-defkey" code nil nil [93694 93779])
-            ("org-defkey" code nil nil [93780 93860])
-            ("org-defkey" code nil nil [93861 93926])
-            ("org-defkey" code nil nil [93927 93991])
-            ("org-defkey" code nil nil [93992 94052])
-            ("org-defkey" code nil nil [94053 94113])
-            ("org-defkey" code nil nil [94114 94203])
-            ("org-defkey" code nil nil [94204 94268])
-            ("org-defkey" code nil nil [94269 94333])
-            ("org-defkey" code nil nil [94334 94400])
-            ("org-defkey" code nil nil [94401 94466])
-            ("org-defkey" code nil nil [94467 94531])
-            ("org-defkey" code nil nil [94532 94597])
-            ("org-defkey" code nil nil [94598 94663])
-            ("org-defkey" code nil nil [94664 94728])
-            ("org-defkey" code nil nil [94729 94793])
-            ("org-defkey" code nil nil [94794 94868])
-            ("org-defkey" code nil nil [94869 94944])
-            ("org-defkey" code nil nil [94945 95025])
-            ("org-defkey" code nil nil [95026 95107])
-            ("org-defkey" code nil nil [95109 95169])
-            ("org-defkey" code nil nil [95170 95234])
-            ("org-defkey" code nil nil [95235 95299])
-            ("let" code nil nil [95300 95428])
-            ("org-defkey" code nil nil [95430 95490])
-            ("org-defkey" code nil nil [95491 95556])
-            ("org-defkey" code nil nil [95557 95621])
-            ("org-defkey" code nil nil [95622 95679])
-            ("org-defkey" code nil nil [95680 95747])
-            ("org-defkey" code nil nil [95748 95809])
-            ("org-defkey" code nil nil [95810 95875])
-            ("org-defkey" code nil nil [95876 95941])
-            ("org-defkey" code nil nil [95942 95995])
-            ("org-defkey" code nil nil [95996 96053])
-            ("org-defkey" code nil nil [96054 96113])
-            ("org-defkey" code nil nil [96114 96181])
-            ("org-defkey" code nil nil [96182 96268])
-            ("org-defkey" code nil nil [96269 96338])
-            ("org-defkey" code nil nil [96339 96392])
-            ("org-defkey" code nil nil [96393 96446])
-            ("org-defkey" code nil nil [96447 96500])
-            ("org-defkey" code nil nil [96501 96562])
-            ("org-defkey" code nil nil [96563 96632])
-            ("org-defkey" code nil nil [96633 96695])
-            ("org-defkey" code nil nil [96696 96754])
-            ("org-defkey" code nil nil [96755 96813])
-            ("org-defkey" code nil nil [96814 96876])
-            ("org-defkey" code nil nil [96877 96935])
-            ("org-defkey" code nil nil [96936 96998])
-            ("substitute-key-definition" code nil nil [96999 97096])
-            ("substitute-key-definition" code nil nil [97097 97202])
-            ("org-defkey" code nil nil [97203 97258])
-            ("org-defkey" code nil nil [97259 97329])
-            ("org-defkey" code nil nil [97330 97404])
-            ("org-defkey" code nil nil [97405 97466])
-            ("org-defkey" code nil nil [97467 97524])
-            ("org-defkey" code nil nil [97525 97585])
-            ("org-defkey" code nil nil [97586 97648])
-            ("org-defkey" code nil nil [97649 97710])
-            ("org-defkey" code nil nil [97711 97774])
-            ("org-defkey" code nil nil [97775 97838])
-            ("org-defkey" code nil nil [97839 97896])
-            ("org-defkey" code nil nil [97897 97954])
-            ("org-defkey" code nil nil [97955 98023])
-            ("org-defkey" code nil nil [98024 98081])
-            ("org-defkey" code nil nil [98082 98151])
-            ("org-defkey" code nil nil [98152 98210])
-            ("org-defkey" code nil nil [98211 98283])
-            ("org-defkey" code nil nil [98284 98345])
-            ("org-defkey" code nil nil [98346 98409])
-            ("org-defkey" code nil nil [98410 98469])
-            ("org-defkey" code nil nil [98470 98530])
-            ("org-defkey" code nil nil [98531 98593])
-            ("org-defkey" code nil nil [98594 98663])
-            ("org-defkey" code nil nil [98664 98737])
-            ("org-defkey" code nil nil [98738 98813])
-            ("org-defkey" code nil nil [98814 98893])
-            ("org-defkey" code nil nil [98894 98948])
-            ("org-defkey" code nil nil [98949 99005])
-            ("org-defkey" code nil nil [99006 99073])
-            ("org-defkey" code nil nil [99074 99154])
-            ("org-defkey" code nil nil [99155 99244])
-            ("org-defkey" code nil nil [99246 99315])
-            ("org-defkey" code nil nil [99316 99390])
-            ("org-defkey" code nil nil [99391 99463])
-            ("org-defkey" code nil nil [99464 99541])
-            ("org-defkey" code nil nil [99542 99604])
-            ("org-defkey" code nil nil [99605 99670])
-            ("org-defkey" code nil nil [99671 99736])
-            ("org-defkey" code nil nil [99737 99803])
-            ("org-defkey" code nil nil [99804 99872])
-            ("org-defkey" code nil nil [99873 99940])
-            ("org-defkey" code nil nil [99941 100012])
-            ("org-defkey" code nil nil [100013 100070])
-            ("org-defkey" code nil nil [100071 100131])
-            ("define-key" code nil nil [100132 100203])
-            ("org-defkey" code nil nil [100204 100272])
-            ("org-defkey" code nil nil [100273 100341])
-            ("org-defkey" code nil nil [100343 100408])
-            ("org-defkey" code nil nil [100409 100474])
-            ("define-key" code nil nil [100476 100560])
-            ("define-key" code nil nil [100561 100647])
-            ("when" code nil nil [100649 100748])
-            ("easy-menu-define" code nil nil [100749 107864])
-            ("org-agenda-allow-remote-undo" variable (:default-value t) nil [107883 107982])
-            ("org-agenda-undo-has-started-in" variable nil nil [107983 108104])
-            ("org-agenda-undo" function (:user-visible-flag t) nil [108106 109425])
-            ("org-verify-change-for-undo" function (:arguments ("l1" "l2")) nil [109427 109671])
-            ("org-agenda-restrict-begin" variable (:default-value (make-marker)) nil [109694 109742])
-            ("org-agenda-restrict-end" variable (:default-value (make-marker)) nil [109743 109789])
-            ("org-agenda-last-dispatch-buffer" variable nil nil [109790 109834])
-            ("org-agenda-overriding-restriction" variable nil nil [109835 109881])
-            ("org-agenda-custom-commands-contexts" variable nil nil [109883 111685])
-            ("org-agenda-max-entries" variable nil nil [111687 112254])
-            ("org-agenda-max-todos" variable nil nil [112256 112815])
-            ("org-agenda-max-tags" variable nil nil [112817 113402])
-            ("org-agenda-max-effort" variable nil nil [113404 114003])
-            ("org-agenda-keep-restricted-file-list" variable nil nil [114005 114054])
-            ("org-keys" variable nil nil [114055 114076])
-            ("org-match" variable nil nil [114077 114099])
-            ("org-agenda" function
-               (:user-visible-flag t
-                :arguments ("arg" "org-keys" "restriction"))
-                nil [114115 121968])
-            ("org-agenda-multi" variable nil nil [121970 121995])
-            ("org-agenda-append-agenda" function (:user-visible-flag t) nil [121997 122479])
-            ("org-agenda-normalize-custom-commands" function (:arguments ("cmds")) nil [122481 122770])
-            ("org-agenda-get-restriction-and-command" function (:arguments ("prefix-descriptions")) nil [122772 129359])
-            ("org-agenda-fit-window-to-buffer" function nil nil [129361 129859])
-            ("org-cmd" variable nil nil [129861 129881])
-            ("org-agenda-overriding-cmd" variable nil nil [129882 129920])
-            ("org-agenda-overriding-arguments" variable nil nil [129921 129965])
-            ("org-agenda-overriding-cmd-arguments" variable nil nil [129966 130014])
-            ("org-agenda-run-series" function (:arguments ("name" "series")) nil [130015 132068])
-            ("org-batch-agenda" function (:arguments ("cmd-key" "parameters")) nil [132085 132749])
-            ("org-agenda-info" variable nil nil [132751 132779])
-            ("org-batch-agenda-csv" function (:arguments ("cmd-key" "parameters")) nil [132796 135246])
-            ("org-fix-agenda-info" function (:arguments ("props")) nil [135248 136692])
-            ("org-agenda-export-csv-mapper" function (:arguments ("prop")) nil [136694 136944])
-            ("org-store-agenda-views" function
-               (:user-visible-flag t
-                :arguments ("parameters"))
-                nil [136961 137096])
-            ("org-batch-store-agenda-views" function (:arguments ("parameters")) nil [137113 138404])
-            ("org-agenda-current-span" variable nil nil [138406 138488])
-            ("org-agenda-mark-header-line" function (:arguments ("pos")) nil [138527 138902])
-            ("org-mobile-creating-agendas" variable nil nil [138904 138940])
-            ("org-agenda-write-buffer-name" variable (:default-value "Agenda View") nil [138968 139019])
-            ("org-agenda-write" function
-               (:user-visible-flag t
-                :arguments ("file" "open" "nosettings" "agenda-bufname"))
-                nil [139020 143056])
-            ("org-agenda-remove-marked-text" function (:arguments ("property" "value")) nil [143058 143426])
-            ("org-agenda-add-entry-text" function nil nil [143428 144181])
-            ("org-agenda-get-some-entry-text" function (:arguments ("marker" "n-lines" "indent" "keep")) nil [144183 147252])
-            ("org-check-for-org-mode" function nil nil [147254 147464])
-            ("org-agenda-multi" variable nil nil [147499 147528])
-            ("org-agenda-pre-window-conf" variable nil nil [147551 147590])
-            ("org-agenda-columns-active" variable nil nil [147591 147629])
-            ("org-agenda-name" variable nil nil [147630 147658])
-            ("org-agenda-tag-filter" variable nil nil [147659 147693])
-            ("org-agenda-category-filter" variable nil nil [147694 147733])
-            ("org-agenda-regexp-filter" variable nil nil [147734 147771])
-            ("org-agenda-effort-filter" variable nil nil [147772 147809])
-            ("org-agenda-top-headline-filter" variable nil nil [147810 147853])
-            ("org-agenda-tag-filter-preset" variable nil nil [147854 148418])
-            ("org-agenda-category-filter-preset" variable nil nil [148420 148998])
-            ("org-agenda-regexp-filter-preset" variable nil nil [149000 149572])
-            ("org-agenda-effort-filter-preset" variable nil nil [149574 150149])
-            ("org-agenda-use-sticky-p" function nil nil [150151 150892])
-            ("org-agenda-prepare-window" function (:arguments ("abuf" "filter-alist")) nil [150894 152374])
-            ("org-agenda-prepare" function (:arguments ("name")) nil [152376 154978])
-            ("org-agenda-overriding-columns-format" variable nil nil [154980 155025])
-            ("org-agenda-finalize" function nil nil [155049 158330])
-            ("org-agenda-mark-clocking-task" function nil nil [158332 159210])
-            ("org-agenda-unmark-clocking-task" function nil nil [159212 159435])
-            ("org-agenda-fontify-priorities" function (:user-visible-flag t) nil [159437 160699])
-            ("org-depend-tag-blocked" variable nil nil [160701 160732])
-            ("org-agenda-dim-blocked-tasks" function
-               (:user-visible-flag t
-                :arguments ("invisible"))
-                nil [160734 161870])
-            ("org-agenda--mark-blocked-entry" function (:arguments ("entry")) nil [161872 162975])
-            ("org-agenda-skip-function" variable nil nil [162977 163709])
-            ("org-agenda-skip" function nil nil [163711 164437])
-            ("org-agenda-skip-eval" function (:arguments ("form")) nil [164439 164888])
-            ("org-agenda-markers" variable nil nil [164890 164987])
-            ("org-agenda-last-marker-time" variable (:default-value (float-time)) nil [164988 165082])
-            ("org-agenda-new-marker" function (:arguments ("pos")) nil [165084 165528])
-            ("org-agenda-reset-markers" function nil nil [165530 165684])
-            ("org-agenda-save-markers-for-cut-and-paste" function (:arguments ("beg" "end")) nil [165686 166057])
-            ("org-agenda-entry-text-show-here" function nil nil [166080 166733])
-            ("org-agenda-entry-text-show" function (:user-visible-flag t) nil [166735 167038])
-            ("org-agenda-entry-text-hide" function nil nil [167040 167301])
-            ("org-agenda-get-day-face" function (:arguments ("date")) nil [167303 167664])
-            ("org-agenda-show-log-scoped" variable nil nil [167666 167701])
-            ("org-agenda-start-day" variable nil nil [167728 168067])
-            ("org-starting-day" variable nil nil [168068 168097])
-            ("org-arg-loc" variable nil nil [168136 168160])
-            ("org-agenda-buffer-tmp-name" variable nil nil [168179 168218])
-            ("org-agenda-list" function
-               (:user-visible-flag t
-                :arguments ("arg" "start-day" "span" "with-hour"))
-                nil [168234 176183])
-            ("org-agenda-ndays-to-span" function (:arguments ("n")) nil [176185 176378])
-            ("org-agenda-span-to-ndays" function (:arguments ("span" "start-day")) nil [176380 176914])
-            ("org-agenda-span-name" function (:arguments ("span")) nil [176916 177090])
-            ("org-agenda-search-history" variable nil nil [177116 177154])
-            ("org-search-syntax-table" variable nil nil [177156 177374])
-            ("org-mode-syntax-table" variable nil nil [177376 177406])
-            ("org-search-syntax-table" function nil nil [177421 177707])
-            ("org-agenda-last-search-view-search-was-boolean" variable nil nil [177709 177768])
-            ("org-search-view" function
-               (:user-visible-flag t
-                :arguments ("todo-only" "string" "edit-at"))
-                nil [177785 189554])
-            ("org-agenda-propertize-selected-todo-keywords" function (:arguments ("keywords")) nil [189578 189955])
-            ("org-select-this-todo-keyword" variable nil nil [189957 189998])
-            ("org-last-arg" variable nil nil [189999 190024])
-            ("org-todo-list" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [190041 193391])
-            ("org-tags-view" function
-               (:user-visible-flag t
-                :arguments ("todo-only" "match"))
-                nil [193431 197006])
-            ("org-agenda-skip-regexp" variable nil nil [197043 197280])
-            ("org-agenda-overriding-header" variable nil nil [197282 197496])
-            ("org-agenda-skip-entry-if" function (:arguments ("conditions")) nil [197498 197670])
-            ("org-agenda-skip-subtree-if" function (:arguments ("conditions")) nil [197672 197846])
-            ("org-agenda-skip-if" function (:arguments ("subtree" "conditions")) nil [197848 200948])
-            ("org-agenda-skip-if-todo" function (:arguments ("args" "end")) nil [200950 202337])
-            ("org-agenda-list-stuck-projects" function
-               (:user-visible-flag t
-                :arguments ("ignore"))
-                nil [202354 204463])
-            ("org-disable-agenda-to-diary" variable nil nil [204488 204528])
-            ("diary-list-entries-hook" variable nil nil [204565 204597])
-            ("diary-time-regexp" variable nil nil [204598 204624])
-            ("org-get-entries-from-diary" function (:arguments ("date")) nil [204625 206539])
-            ("org-agenda-cleanup-fancy-diary-hook" variable nil nil [206541 206645])
-            ("org-agenda-cleanup-fancy-diary" function nil nil [206647 207519])
-            ("eval-after-load" code nil nil [207589 208076])
-            ("org-modify-diary-entry-string" function (:arguments ("string")) nil [208078 208468])
-            ("org-diary-default-entry" function nil nil [208470 208868])
-            ("org-add-to-diary-list" function (:arguments ("args")) nil [208870 209022])
-            ("org-diary-last-run-time" variable nil nil [209024 209060])
-            ("org-diary" function (:arguments ("args")) nil [209077 211439])
-            ("org-agenda--timestamp-to-absolute" function (:arguments ("args")) nil [211467 211837])
-            ("org-agenda-get-day-entries" function (:arguments ("file" "date" "args")) nil [211839 214424])
-            ("org-em" function (:arguments ("x" "y" "list")) nil [214426 214521])
-            ("org-heading-keyword-regexp-format" variable nil nil [214523 214565])
-            ("org-agenda-sorting-strategy-selected" variable nil nil [214586 214635])
-            ("org-agenda-entry-get-agenda-timestamp" function (:arguments ("pom")) nil [214637 216024])
-            ("org-agenda-get-todos" function nil nil [216026 218864])
-            ("org-agenda-todo-custom-ignore-p" function (:arguments ("time" "n")) nil [218866 219294])
-            ("org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item" function (:arguments ("end")) nil [219311 222304])
-            ("org-agenda-get-timestamps" function (:arguments ("deadlines")) nil [222306 227780])
-            ("org-agenda-get-sexps" function nil nil [227782 229915])
-            ("org-anniversary" function (:arguments ("year" "month" "day" "mark")) nil [230009 230241])
-            ("org-cyclic" function (:arguments ("N" "year" "month" "day" "mark")) nil [230242 230463])
-            ("org-block" function (:arguments ("Y1" "M1" "D1" "Y2" "M2" "D2" "mark")) nil [230464 230684])
-            ("org-date" function (:arguments ("year" "month" "day" "mark")) nil [230685 230896])
-            ("org-class" function (:arguments ("y1" "m1" "d1" "y2" "m2" "d2" "dayname" "skip-weeks")) nil [230933 232034])
-            ("defalias" code nil nil [232036 232087])
-            ("org-agenda-get-progress" function nil nil [232088 236237])
-            ("org-agenda-show-clocking-issues" function (:user-visible-flag t) nil [236239 239330])
-            ("org-agenda-check-clock-gap" function (:arguments ("t1" "t2" "ok-list")) nil [239332 240565])
-            ("org-agenda-get-deadlines" function (:arguments ("with-hour")) nil [240567 246667])
-            ("org-agenda-deadline-face" function (:arguments ("fraction")) nil [246669 246884])
-            ("org-agenda-get-scheduled" function (:arguments ("deadlines" "with-hour")) nil [246886 254223])
-            ("org-agenda-get-blocks" function nil nil [254225 257614])
-            ("org-prefix-has-time" variable nil nil [257653 257799])
-            ("org-prefix-has-tag" variable nil nil [257800 257945])
-            ("org-prefix-has-effort" variable nil nil [257946 258094])
-            ("org-prefix-has-breadcrumbs" variable nil nil [258095 258248])
-            ("org-prefix-category-length" variable nil nil [258249 258366])
-            ("org-prefix-category-max-length" variable nil nil [258367 258488])
-            ("org-agenda-get-category-icon" function (:arguments ("category")) nil [258490 258827])
-            ("org-agenda-format-item" function (:arguments ("extra" "txt" "level" "category" "tags" "dotime" "remove-re" "habitp")) nil [258829 265696])
-            ("org-agenda-fix-displayed-tags" function (:arguments ("txt" "tags" "add-inherited" "hide-re")) nil [265698 266689])
-            ("org-downcase-keep-props" function (:arguments ("s")) nil [266691 266848])
-            ("org-agenda-sorting-strategy" variable nil nil [266850 266886])
-            ("org-agenda-add-time-grid-maybe" function (:arguments ("list" "ndays" "todayp")) nil [266924 268622])
-            ("org-compile-prefix-format" function (:arguments ("key")) nil [268624 271191])
-            ("org-set-sorting-strategy" function (:arguments ("key")) nil [271193 271587])
-            ("org-get-time-of-day" function (:arguments ("s" "string" "mod24")) nil [271589 272818])
-            ("org-agenda-before-sorting-filter-function" variable nil nil [272820 273763])
-            ("org-agenda-finalize-entries" function (:arguments ("list" "type")) nil [273765 275334])
-            ("org-agenda-limit-entries" function (:arguments ("list" "prop" "limit" "fn")) nil [275336 275838])
-            ("org-agenda-limit-interactively" function
-               (:user-visible-flag t
-                :arguments ("remove"))
-                nil [275840 276880])
-            ("org-agenda-highlight-todo" function (:arguments ("x")) nil [276882 278804])
-            ("org-cmp-values" function (:arguments ("a" "b" "property")) nil [278806 279086])
-            ("org-cmp-effort" function (:arguments ("a" "b")) nil [279088 279575])
-            ("org-cmp-category" function (:arguments ("a" "b")) nil [279577 279881])
-            ("org-cmp-todo-state" function (:arguments ("a" "b")) nil [279883 280764])
-            ("org-cmp-alpha" function (:arguments ("a" "b")) nil [280766 281609])
-            ("org-cmp-tag" function (:arguments ("a" "b")) nil [281611 281906])
-            ("org-cmp-time" function (:arguments ("a" "b")) nil [281908 282203])
-            ("org-cmp-ts" function (:arguments ("a" "b" "type")) nil [282205 282858])
-            ("org-cmp-habit-p" function (:arguments ("a" "b")) nil [282860 283095])
-            ("org-entries-lessp" function (:arguments ("a" "b")) nil [283097 285999])
-            ("org-agenda-restriction-lock-overlay" variable (:default-value (make-overlay 1 1)) nil [286030 286167])
-            ("overlay-put" code nil nil [286168 286258])
-            ("overlay-put" code nil nil [286259 286374])
-            ("delete-overlay" code nil nil [286375 286427])
-            ("org-agenda-set-restriction-lock-from-agenda" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [286429 287089])
-            ("org-agenda-set-restriction-lock" function
-               (:user-visible-flag t
-                :arguments ("type"))
-                nil [287106 288745])
-            ("org-agenda-remove-restriction-lock" function
-               (:user-visible-flag t
-                :arguments ("noupdate"))
-                nil [288747 289314])
-            ("org-agenda-maybe-redo" function nil nil [289316 289814])
-            ("org-agenda-check-type" function (:arguments ("error" "types")) nil [289837 290245])
-            ("org-agenda-Quit" function (:user-visible-flag t) nil [290247 290444])
-            ("org-agenda-quit" function (:user-visible-flag t) nil [290446 290804])
-            ("org-agenda--quit" function (:arguments ("bury")) nil [290806 292076])
-            ("org-agenda-exit" function (:user-visible-flag t) nil [292078 292538])
-            ("org-agenda-kill-all-agenda-buffers" function (:user-visible-flag t) nil [292540 292856])
-            ("org-agenda-execute" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [292858 293128])
-            ("org-agenda-redo" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [293130 296213])
-            ("org-agenda-redo-all" function
-               (:user-visible-flag t
-                :arguments ("exhaustive"))
-                nil [296215 296590])
-            ("org-global-tags-completion-table" variable nil nil [296592 296637])
-            ("org-agenda-filter-form" variable nil nil [296638 296673])
-            ("org-agenda-filtered-by-category" variable nil nil [296674 296718])
-            ("org-agenda-filter-by-category" function
-               (:user-visible-flag t
-                :arguments ("strip"))
-                nil [296720 297522])
-            ("org-find-top-headline" function (:arguments ("pos")) nil [297524 297962])
-            ("org-agenda-filtered-by-top-headline" variable nil nil [297964 298012])
-            ("org-agenda-filter-by-top-headline" function
-               (:user-visible-flag t
-                :arguments ("strip"))
-                nil [298013 298595])
-            ("org-agenda-regexp-filter" variable nil nil [298597 298634])
-            ("org-agenda-filter-by-regexp" function
-               (:user-visible-flag t
-                :arguments ("strip"))
-                nil [298635 299373])
-            ("org-agenda-effort-filter" variable nil nil [299375 299412])
-            ("org-agenda-filter-by-effort" function
-               (:user-visible-flag t
-                :arguments ("strip"))
-                nil [299413 300995])
-            ("org-agenda-filter-remove-all" function (:user-visible-flag t) nil [300997 301500])
-            ("org-agenda-filter-by-tag" function
-               (:user-visible-flag t
-                :arguments ("arg" "char" "exclude"))
-                nil [301502 304597])
-            ("org-agenda-get-represented-tags" function nil nil [304599 304948])
-            ("org-agenda-filter-make-matcher" function (:arguments ("filter" "type" "expand")) nil [304951 306592])
-            ("org-agenda-filter-make-matcher-tag-exp" function (:arguments ("tags" "op")) nil [306594 307367])
-            ("org-agenda-filter-effort-form" function (:arguments ("e")) nil [307369 307796])
-            ("org-agenda-compare-effort" function (:arguments ("op" "value")) nil [307798 308258])
-            ("org-agenda-filter-expand-tags" function (:arguments ("filter" "no-operator")) nil [308260 308854])
-            ("org-agenda-filter-apply" function (:arguments ("filter" "type" "expand")) nil [308856 310084])
-            ("org-agenda-filter-top-headline-apply" function (:arguments ("hl" "negative")) nil [310086 310730])
-            ("org-agenda-filter-hide-line" function (:arguments ("type")) nil [310732 311016])
-            ("org-agenda-remove-filter" function (:arguments ("type")) nil [311018 311627])
-            ("org-agenda-filter-show-all-tag" function nil nil [311629 311705])
-            ("org-agenda-filter-show-all-re" function nil nil [311706 311784])
-            ("org-agenda-filter-show-all-effort" function nil nil [311785 311867])
-            ("org-agenda-filter-show-all-cat" function nil nil [311868 311949])
-            ("org-agenda-filter-show-all-top-filter" function nil nil [311950 312042])
-            ("org-agenda-manipulate-query-add" function (:user-visible-flag t) nil [312044 312289])
-            ("org-agenda-manipulate-query-subtract" function (:user-visible-flag t) nil [312290 312540])
-            ("org-agenda-manipulate-query-add-re" function (:user-visible-flag t) nil [312541 312788])
-            ("org-agenda-manipulate-query-subtract-re" function (:user-visible-flag t) nil [312789 313041])
-            ("org-agenda-manipulate-query" function (:arguments ("char")) nil [313042 314022])
-            ("org-add-to-string" function (:arguments ("var" "string")) nil [314024 314109])
-            ("org-agenda-goto-date" function
-               (:user-visible-flag t
-                :arguments ("span"))
-                nil [314111 315374])
-            ("org-agenda-goto-today" function (:user-visible-flag t) nil [315376 316026])
-            ("org-agenda-find-same-or-today-or-agenda" function (:arguments ("cnt")) nil [316028 316452])
-            ("org-agenda-backward-block" function (:user-visible-flag t) nil [316454 316584])
-            ("org-agenda-forward-block" function
-               (:user-visible-flag t
-                :arguments ("backward"))
-                nil [316586 317630])
-            ("org-agenda-later" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [317632 319188])
-            ("org-agenda-earlier" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [319190 319379])
-            ("org-agenda-view-mode-dispatch" function (:user-visible-flag t) nil [319381 320930])
-            ("org-agenda-reset-view" function (:user-visible-flag t) nil [320932 321067])
-            ("org-agenda-day-view" function
-               (:user-visible-flag t
-                :arguments ("day-of-month"))
-                nil [321069 321289])
-            ("org-agenda-week-view" function
-               (:user-visible-flag t
-                :arguments ("iso-week"))
-                nil [321291 321753])
-            ("org-agenda-fortnight-view" function
-               (:user-visible-flag t
-                :arguments ("iso-week"))
-                nil [321755 322232])
-            ("org-agenda-month-view" function
-               (:user-visible-flag t
-                :arguments ("month"))
-                nil [322234 322670])
-            ("org-agenda-year-view" function
-               (:user-visible-flag t
-                :arguments ("year"))
-                nil [322672 323125])
-            ("org-agenda-change-time-span" function (:arguments ("span" "n")) nil [323127 323966])
-            ("org-agenda-compute-starting-span" function (:arguments ("sd" "span" "n")) nil [323968 325313])
-            ("org-agenda-next-date-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [325315 325799])
-            ("org-agenda-previous-date-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [325801 326117])
-            ("org-hl" variable (:default-value (make-overlay 1 1)) nil [326147 326181])
-            ("overlay-put" code nil nil [326182 326219])
-            ("org-highlight" function (:arguments ("begin" "end" "buffer")) nil [326221 326371])
-            ("org-unhighlight" function nil nil [326373 326451])
-            ("org-unhighlight-once" function nil nil [326453 326637])
-            ("org-agenda-pre-follow-window-conf" variable nil nil [326639 326685])
-            ("org-agenda-follow-mode" function (:user-visible-flag t) nil [326686 327189])
-            ("org-agenda-entry-text-mode" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [327191 328079])
-            ("org-agenda-clockreport-mode" function (:user-visible-flag t) nil [328081 328423])
-            ("org-agenda-log-mode" function
-               (:user-visible-flag t
-                :arguments ("special"))
-                nil [328425 329132])
-            ("org-agenda-archives-mode" function
-               (:user-visible-flag t
-                :arguments ("with-files"))
-                nil [329134 329833])
-            ("org-agenda-toggle-diary" function (:user-visible-flag t) nil [329835 330168])
-            ("org-agenda-toggle-deadlines" function (:user-visible-flag t) nil [330170 330544])
-            ("org-agenda-toggle-time-grid" function (:user-visible-flag t) nil [330546 330871])
-            ("org-agenda-set-mode-name" function nil nil [330873 333533])
-            ("org-agenda-update-agenda-type" function nil nil [333535 333771])
-            ("org-agenda-next-line" function (:user-visible-flag t) nil [333773 333956])
-            ("org-agenda-previous-line" function (:user-visible-flag t) nil [333958 334153])
-            ("org-agenda-next-item" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [334155 334514])
-            ("org-agenda-previous-item" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [334516 334869])
-            ("org-agenda-do-context-action" function nil nil [334871 335294])
-            ("org-agenda-show-tags" function (:user-visible-flag t) nil [335296 335581])
-            ("org-agenda-goto" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [335583 336325])
-            ("org-agenda-after-show-hook" variable nil nil [336327 336482])
-            ("org-agenda-kill" function (:user-visible-flag t) nil [336484 337832])
-            ("org-archive-default-command" variable nil nil [337834 337870])
-            ("org-agenda-archive-default" function (:user-visible-flag t) nil [337899 338105])
-            ("org-agenda-archive-default-with-confirmation" function (:user-visible-flag t) nil [338107 338340])
-            ("org-agenda-archive" function (:user-visible-flag t) nil [338342 338508])
-            ("org-agenda-archive-to-archive-sibling" function (:user-visible-flag t) nil [338510 338677])
-            ("org-agenda-archive-with" function
-               (:user-visible-flag t
-                :arguments ("cmd" "confirm"))
-                nil [338679 339468])
-            ("org-remove-subtree-entries-from-agenda" function (:arguments ("buf" "beg" "end")) nil [339470 340368])
-            ("org-agenda-refile" function
-               (:user-visible-flag t
-                :arguments ("goto" "rfloc" "no-update"))
-                nil [340370 341570])
-            ("org-agenda-open-link" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [341572 343101])
-            ("org-agenda-copy-local-variable" function (:arguments ("var")) nil [343103 343415])
-            ("org-agenda-switch-to" function
-               (:user-visible-flag t
-                :arguments ("delete-other-windows"))
-                nil [343417 344298])
-            ("org-agenda-goto-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [344300 344464])
-            ("org-agenda-show" function
-               (:user-visible-flag t
-                :arguments ("full-entry"))
-                nil [344466 344808])
-            ("org-agenda-show-window" variable nil nil [344810 344845])
-            ("org-agenda-show-and-scroll-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [344846 345579])
-            ("org-agenda-show-scroll-down" function (:user-visible-flag t) nil [345581 345873])
-            ("org-agenda-show-1" function
-               (:user-visible-flag t
-                :arguments ("more"))
-                nil [345875 347483])
-            ("org-agenda-cycle-counter" variable nil nil [347485 347522])
-            ("org-agenda-cycle-show" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [347523 348431])
-            ("org-agenda-recenter" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [348433 348659])
-            ("org-agenda-show-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [348661 348827])
-            ("org-agenda-check-no-diary" function nil nil [348829 348994])
-            ("org-agenda-error" function nil nil [348996 349137])
-            ("org-agenda-tree-to-indirect-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [349139 350501])
-            ("org-agenda-do-tree-to-indirect-buffer" function (:arguments ("arg")) nil [350503 350920])
-            ("org-last-heading-marker" variable (:default-value (make-marker)) nil [350922 351074])
-            ("org-agenda-todo-nextset" function (:user-visible-flag t) nil [351076 351195])
-            ("org-agenda-todo-previousset" function (:user-visible-flag t) nil [351197 351328])
-            ("org-agenda-todo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [351330 352952])
-            ("org-agenda-add-note" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [352954 353437])
-            ("org-agenda-change-all-lines" function (:arguments ("newhead" "hdmarker" "fixface" "just-this")) nil [353439 356218])
-            ("org-agenda-align-tags" function (:arguments ("line")) nil [356220 357445])
-            ("org-agenda-priority-up" function (:user-visible-flag t) nil [357447 357586])
-            ("org-agenda-priority-down" function (:user-visible-flag t) nil [357588 357731])
-            ("org-agenda-priority" function
-               (:user-visible-flag t
-                :arguments ("force-direction"))
-                nil [357733 358840])
-            ("org-agenda-set-tags" function
-               (:user-visible-flag t
-                :arguments ("tag" "onoff"))
-                nil [358901 359688])
-            ("org-agenda-set-property" function (:user-visible-flag t) nil [359690 360170])
-            ("org-agenda-set-effort" function (:user-visible-flag t) nil [360172 360761])
-            ("org-agenda-toggle-archive-tag" function (:user-visible-flag t) nil [360763 361406])
-            ("org-agenda-do-date-later" function (:arguments ("arg")) nil [361408 361956])
-            ("org-agenda-do-date-earlier" function (:arguments ("arg")) nil [361958 362518])
-            ("org-agenda-date-later" function
-               (:user-visible-flag t
-                :arguments ("arg" "what"))
-                nil [362520 363944])
-            ("org-agenda-date-earlier" function
-               (:user-visible-flag t
-                :arguments ("arg" "what"))
-                nil [363946 364113])
-            ("org-agenda-date-later-minutes" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364115 364357])
-            ("org-agenda-date-earlier-minutes" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364359 364605])
-            ("org-agenda-date-later-hours" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364607 364753])
-            ("org-agenda-date-earlier-hours" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364755 364905])
-            ("org-agenda-show-new-time" function (:arguments ("marker" "stamp" "prefix")) nil [364907 365609])
-            ("org-agenda-date-prompt" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [365611 366455])
-            ("org-agenda-schedule" function
-               (:user-visible-flag t
-                :arguments ("arg" "time"))
-                nil [366457 367117])
-            ("org-agenda-deadline" function
-               (:user-visible-flag t
-                :arguments ("arg" "time"))
-                nil [367119 367698])
-            ("org-agenda-clock-in" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [367700 368451])
-            ("org-agenda-clock-out" function (:user-visible-flag t) nil [368453 369108])
-            ("org-agenda-clock-cancel" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [369110 369378])
-            ("org-agenda-clock-goto" function (:user-visible-flag t) nil [369380 370082])
-            ("org-agenda-diary-entry-in-org-file" function nil nil [370084 371997])
-            ("org-agenda-insert-diary-strategy" variable (:default-value (quote date-tree)) nil [371999 372520])
-            ("org-agenda-insert-diary-extract-time" variable nil nil [372522 372701])
-            ("org-agenda-bulk-mark-char" variable (:default-value ">") nil [372703 372858])
-            ("org-agenda-add-entry-to-org-agenda-diary-file" function (:arguments ("type" "text" "d1" "d2")) nil [372860 375815])
-            ("org-agenda-insert-diary-as-top-level" function (:arguments ("text")) nil [375817 376261])
-            ("org-agenda-insert-diary-make-new-entry" function (:arguments ("text")) nil [376263 377139])
-            ("org-agenda-diary-entry" function (:user-visible-flag t) nil [377141 379035])
-            ("org-agenda-execute-calendar-command" function (:arguments ("cmd")) nil [379037 379880])
-            ("org-agenda-phases-of-moon" function (:user-visible-flag t) nil [379882 380073])
-            ("org-agenda-holidays" function (:user-visible-flag t) nil [380075 380251])
-            ("calendar-longitude" variable nil nil [380253 380280])
-            ("calendar-latitude" variable nil nil [380311 380337])
-            ("calendar-location-name" variable nil nil [380369 380400])
-            ("org-agenda-sunrise-sunset" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [380428 381010])
-            ("org-agenda-goto-calendar" function (:user-visible-flag t) nil [381012 381504])
-            ("org-calendar-goto-agenda" function (:user-visible-flag t) nil [381521 381991])
-            ("org-agenda-convert-date" function nil nil [381993 383357])
-            ("org-agenda-bulk-marked-p" function nil nil [383378 383551])
-            ("org-agenda-bulk-mark" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [383553 384504])
-            ("org-agenda-bulk-mark-all" function (:user-visible-flag t) nil [384506 384645])
-            ("org-agenda-bulk-mark-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [384647 385366])
-            ("org-agenda-bulk-unmark" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [385368 386149])
-            ("org-agenda-bulk-toggle-all" function (:user-visible-flag t) nil [386151 386419])
-            ("org-agenda-bulk-toggle" function (:user-visible-flag t) nil [386421 386608])
-            ("org-agenda-bulk-remove-overlays" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [386610 387084])
-            ("org-agenda-bulk-unmark-all" function (:user-visible-flag t) nil [387086 387419])
-            ("org-agenda-persistent-marks" variable nil nil [387421 387670])
-            ("org-agenda-bulk-action" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [387672 394100])
-            ("org-agenda-capture" function
-               (:user-visible-flag t
-                :arguments ("with-time"))
-                nil [394102 394543])
-            ("org-agenda-reapply-filters" function nil nil [394589 395150])
-            ("org-agenda-drag-line-forward" function
-               (:user-visible-flag t
-                :arguments ("arg" "backward"))
-                nil [395152 395983])
-            ("org-agenda-drag-line-backward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [395985 396134])
-            ("org-agenda-show-the-flagging-note" function (:user-visible-flag t) nil [396156 397385])
-            ("org-agenda-remove-flag" function (:arguments ("marker")) nil [397387 397743])
-            ("org-agenda-get-any-marker" function (:arguments ("pos")) nil [397745 397922])
-            ("appt-time-msg-list" variable nil nil [397951 397978])
-            ("org-agenda-to-appt" function
-               (:user-visible-flag t
-                :arguments ("refresh" "filter" "args"))
-                nil [398016 402148])
-            ("org-agenda-today-p" function (:arguments ("date")) nil [402150 402514])
-            ("org-agenda-todo-yesterday" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [402516 402821])
-            ("org-agenda" package nil nil [402823 402844]))          
-      :file "org-agenda.el"
-      :pointmax 402874
-      :fsize 402877
-      :lastmodtime '(23525 29589 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-inhibit-highlight-removal" variable nil nil [2832 2874])
-            ("defvar-local" code nil nil [2902 3006])
-            ("cl-lib" include nil nil [3037 3054])
-            ("gnus-sum" include nil nil [3075 3094])
-            ("calendar" include nil nil [3097 3116])
-            ("find-func" include nil nil [3117 3137])
-            ("format-spec" include nil nil [3138 3160])
-            ("or" code nil nil [3162 3557])
-            ("org-macs" include nil nil [3559 3578])
-            ("org-compat" include nil nil [3579 3600])
-            ("org-outline-regexp" variable (:default-value "\\*+ ") nil [3975 4045])
-            ("org-outline-regexp-bol" variable (:default-value "^\\*+ ") nil [4047 4232])
-            ("org-heading-regexp" variable (:default-value "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ 	]*$") nil [4234 4420])
-            ("declare-function" code nil nil [4422 4482])
-            ("declare-function" code nil nil [4483 4554])
-            ("declare-function" code nil nil [4555 4628])
-            ("declare-function" code nil nil [4629 4691])
-            ("declare-function" code nil nil [4692 4767])
-            ("declare-function" code nil nil [4768 4856])
-            ("declare-function" code nil nil [4857 4920])
-            ("declare-function" code nil nil [4921 4992])
-            ("declare-function" code nil nil [4993 5079])
-            ("declare-function" code nil nil [5080 5147])
-            ("declare-function" code nil nil [5148 5215])
-            ("declare-function" code nil nil [5216 5309])
-            ("declare-function" code nil nil [5310 5395])
-            ("declare-function" code nil nil [5396 5489])
-            ("declare-function" code nil nil [5490 5566])
-            ("declare-function" code nil nil [5567 5637])
-            ("declare-function" code nil nil [5638 5706])
-            ("declare-function" code nil nil [5707 5768])
-            ("declare-function" code nil nil [5769 5822])
-            ("declare-function" code nil nil [5823 5882])
-            ("declare-function" code nil nil [5883 5977])
-            ("declare-function" code nil nil [5978 6034])
-            ("declare-function" code nil nil [6035 6099])
-            ("declare-function" code nil nil [6100 6172])
-            ("declare-function" code nil nil [6173 6236])
-            ("declare-function" code nil nil [6237 6309])
-            ("declare-function" code nil nil [6310 6367])
-            ("declare-function" code nil nil [6368 6434])
-            ("declare-function" code nil nil [6435 6520])
-            ("declare-function" code nil nil [6521 6580])
-            ("declare-function" code nil nil [6581 6650])
-            ("declare-function" code nil nil [6651 6745])
-            ("declare-function" code nil nil [6746 6818])
-            ("declare-function" code nil nil [6819 6901])
-            ("declare-function" code nil nil [6902 6971])
-            ("declare-function" code nil nil [6972 7031])
-            ("declare-function" code nil nil [7032 7093])
-            ("declare-function" code nil nil [7094 7146])
-            ("declare-function" code nil nil [7147 7210])
-            ("declare-function" code nil nil [7211 7274])
-            ("declare-function" code nil nil [7275 7343])
-            ("declare-function" code nil nil [7344 7415])
-            ("declare-function" code nil nil [7416 7481])
-            ("declare-function" code nil nil [7482 7531])
-            ("declare-function" code nil nil [7532 7601])
-            ("declare-function" code nil nil [7602 7675])
-            ("declare-function" code nil nil [7676 7731])
-            ("declare-function" code nil nil [7732 7807])
-            ("declare-function" code nil nil [7808 7884])
-            ("declare-function" code nil nil [7885 7946])
-            ("declare-function" code nil nil [7947 8004])
-            ("declare-function" code nil nil [8005 8072])
-            ("declare-function" code nil nil [8073 8140])
-            ("declare-function" code nil nil [8141 8208])
-            ("declare-function" code nil nil [8209 8285])
-            ("declare-function" code nil nil [8286 8348])
-            ("declare-function" code nil nil [8349 8415])
-            ("declare-function" code nil nil [8416 8468])
-            ("declare-function" code nil nil [8469 8528])
-            ("declare-function" code nil nil [8529 8605])
-            ("declare-function" code nil nil [8606 8732])
-            ("declare-function" code nil nil [8733 8791])
-            ("declare-function" code nil nil [8792 8865])
-            ("declare-function" code nil nil [8866 8930])
-            ("declare-function" code nil nil [8931 8989])
-            ("declare-function" code nil nil [8990 9043])
-            ("declare-function" code nil nil [9044 9133])
-            ("declare-function" code nil nil [9134 9222])
-            ("ffap-url-regexp" variable nil nil [9224 9248])
-            ("org-element-paragraph-separate" variable nil nil [9249 9288])
-            ("org-uniquify" function (:arguments ("list")) nil [9290 9434])
-            ("org-get-at-bol" function (:arguments ("property")) nil [9436 9575])
-            ("org-trim" function (:arguments ("s" "keep-lead")) nil [9577 9956])
-            ("org-babel-load-languages" variable nil nil [10021 10054])
-            ("org-babel-do-load-languages" function (:arguments ("sym" "value")) nil [10071 10519])
-            ("declare-function" code nil nil [10521 10607])
-            ("org-babel-load-file" function
-               (:user-visible-flag t
-                :arguments ("file" "compile"))
-                nil [10623 11829])
-            ("org-babel-load-languages" variable (:default-value (quote ((emacs-lisp . t)))) nil [11831 14040])
-            ("org-clone-delete-id" variable nil nil [14071 14339])
-            ("org-check-version" code nil nil [14353 14372])
-            ("org-version" function
-               (:user-visible-flag t
-                :arguments ("here" "full" "message"))
-                nil [14389 15689])
-            ("org-version" variable
-               (:constant-flag t
-                :default-value (org-version))
-                nil [15691 15727])
-            ("org-block-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*#\\+begin_?\\([^ 
-]+\\)\\(\\([^
-]+\\)\\)?
-\\([^�]+?\\)#\\+end_?\\1[ 	]*$")
-                nil [15765 15925])
-            ("org-dblock-start-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*#\\+\\(?:BEGIN\\|begin\\):[ 	]+\\(\\S-+\\)\\([ 	]+\\(.*\\)\\)?")
-                nil [15927 16097])
-            ("org-dblock-end-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*#\\+\\(?:END\\|end\\)\\([: 	

-]\\|$\\)")
-                nil [16099 16218])
-            ("org-clock-string" variable
-               (:constant-flag t
-                :default-value "CLOCK:")
-                nil [16245 16354])
-            ("org-closed-string" variable (:default-value "CLOSED:") nil [16356 16467])
-            ("org-deadline-string" variable (:default-value "DEADLINE:") nil [16469 16735])
-            ("org-scheduled-string" variable (:default-value "SCHEDULED:") nil [16737 17011])
-            ("org-ds-keyword-length" variable
-               (:constant-flag t
-                :default-value (+ 2 (apply (function max) (mapcar (function length) (list org-deadline-string org-scheduled-string org-clock-string org-closed-string)))))
-                nil [17013 17248])
-            ("org-planning-line-re" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*" (regexp-opt (list org-closed-string org-deadline-string org-scheduled-string) t)))
-                nil [17250 17464])
-            ("org-clock-line-re" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*" org-clock-string))
-                nil [17466 17568])
-            ("org-deadline-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-deadline-string))
-                nil [17570 17669])
-            ("org-deadline-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
-                nil [17671 17822])
-            ("org-deadline-time-hour-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-deadline-string " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy 	.]*\\)>"))
-                nil [17824 18037])
-            ("org-deadline-line-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<\\(" org-deadline-string "\\).*"))
-                nil [18039 18181])
-            ("org-scheduled-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-scheduled-string))
-                nil [18183 18285])
-            ("org-scheduled-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
-                nil [18287 18441])
-            ("org-scheduled-time-hour-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-scheduled-string " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy 	.]*\\)>"))
-                nil [18443 18659])
-            ("org-closed-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]"))
-                nil [18661 18810])
-            ("org-keyword-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" (regexp-opt (list org-scheduled-string org-deadline-string org-closed-string org-clock-string) t) " *[[<]\\([^]>]+\\)[]>]"))
-                nil [18812 19068])
-            ("org-keyword-time-not-clock-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" (regexp-opt (list org-scheduled-string org-deadline-string org-closed-string) t) " *[[<]\\([^]>]+\\)[]>]"))
-                nil [19070 19315])
-            ("org-maybe-keyword-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\<" (regexp-opt (list org-scheduled-string org-deadline-string org-closed-string org-clock-string) t) "\\)?" " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]

->]*?[]>]" "\\|" "<%%([^

->]*>\\)"))
-                nil [19317 19658])
-            ("org-all-time-keywords" variable
-               (:constant-flag t
-                :default-value (mapcar (lambda (w) (substring w 0 -1)) (list org-scheduled-string org-deadline-string org-clock-string org-closed-string)))
-                nil [19660 19850])
-            ("org-drawer-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ 	]*$")
-                nil [19865 20030])
-            ("org-property-start-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:PROPERTIES:[ 	]*$")
-                nil [20032 20162])
-            ("org-property-end-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:END:[ 	]*$")
-                nil [20164 20284])
-            ("org-clock-drawer-start-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:CLOCK:[ 	]*$")
-                nil [20286 20412])
-            ("org-clock-drawer-end-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:END:[ 	]*$")
-                nil [20414 20535])
-            ("org-property-drawer-re" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*:PROPERTIES:[ 	]*
-" "\\(?:[ 	]*:\\S-+:\\(?: .*\\)?[ 	]*
-\\)*?" "[ 	]*:END:[ 	]*$"))
-                nil [20537 20723])
-            ("org-clock-drawer-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(" org-clock-drawer-start-re "\\)[^�]*?\\(" org-clock-drawer-end-re "\\)
-?"))
-                nil [20725 20888])
-            ("org-heading-keyword-regexp-format" variable
-               (:constant-flag t
-                :default-value "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ 	]*$")
-                nil [20905 21255])
-            ("org-heading-keyword-maybe-regexp-format" variable
-               (:constant-flag t
-                :default-value "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ 	]*$")
-                nil [21257 21604])
-            ("org-archive-tag" variable
-               (:constant-flag t
-                :default-value "ARCHIVE")
-                nil [21606 21797])
-            ("org-comment-string" variable
-               (:constant-flag t
-                :default-value "COMMENT")
-                nil [21819 22022])
-            ("org-latex-regexps" variable
-               (:constant-flag t
-                :default-value (quote (("begin" "^[ 	]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^�]+?\\\\end{\\2}\\)" 1 t) ("$1" "\\([^$]\\|^\\)\\(\\$[^ 	

-,;.$]\\$\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|�\\|'\\|$\\)" 2 nil) ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ 	
-,;.$][^$
-
]*?\\(
-[^$
-
]*?\\)\\{0,2\\}[^ 	
-,.$]\\)\\$\\)\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|�\\|'\\|$\\)" 2 nil) ("\\(" "\\\\([^�]*?\\\\)" 0 nil) ("\\[" "\\\\\\[[^�]*?\\\\\\]" 0 nil) ("$$" "\\$\\$[^�]*?\\$\\$" 0 nil))))
-                nil [22065 22858])
-            ("org-effort-property" variable
-               (:constant-flag t
-                :default-value "Effort")
-                nil [22880 23060])
-            ("org-table-any-line-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*\\(|\\|\\+-[-+]\\)")
-                nil [23074 23182])
-            ("org-table-line-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*|")
-                nil [23184 23262])
-            ("org-table-dataline-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*|[^-]")
-                nil [23264 23350])
-            ("org-table-hline-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*|-")
-                nil [23352 23433])
-            ("org-table1-hline-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*\\+-[-+]")
-                nil [23435 23524])
-            ("org-table-any-border-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*[^|+ 	]")
-                nil [23526 23688])
-            ("org-TBLFM-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*#\\+TBLFM: ")
-                nil [23690 23765])
-            ("org-ts-regexp" variable
-               (:constant-flag t
-                :default-value "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^

->]*?\\)>")
-                nil [23783 23921])
-            ("org-ts-regexp-inactive" variable
-               (:constant-flag t
-                :default-value "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^

->]*?\\)\\]")
-                nil [23923 24085])
-            ("org-ts-regexp-both" variable
-               (:constant-flag t
-                :default-value "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]

->]*?\\)[]>]")
-                nil [24087 24237])
-            ("org-ts-regexp0" variable
-               (:constant-flag t
-                :default-value "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>

- -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)")
-                nil [24239 24589])
-            ("org-ts-regexp1" variable
-               (:constant-flag t
-                :default-value "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>

- -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)")
-                nil [24591 24811])
-            ("org-ts-regexp2" variable
-               (:constant-flag t
-                :default-value (concat "<" org-ts-regexp1 "[^>
-]\\{0,16\\}>"))
-                nil [24813 24944])
-            ("org-ts-regexp3" variable
-               (:constant-flag t
-                :default-value (concat "[[<]" org-ts-regexp1 "[^]>
-]\\{0,16\\}[]>]"))
-                nil [24946 25096])
-            ("org-tr-regexp" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp "--?-?" org-ts-regexp))
-                nil [25098 25219])
-            ("org-tr-regexp-both" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp-both "--?-?" org-ts-regexp-both))
-                nil [25221 25359])
-            ("org-tsr-regexp" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp "\\(--?-?" org-ts-regexp "\\)?"))
-                nil [25361 25512])
-            ("org-tsr-regexp-both" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp-both "\\(--?-?" org-ts-regexp-both "\\)?"))
-                nil [25514 25730])
-            ("org-repeat-re" variable
-               (:constant-flag t
-                :default-value "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>
-]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)")
-                nil [25732 25963])
-            ("org-time-stamp-formats" variable
-               (:constant-flag t
-                :default-value (quote ("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")))
-                nil [25965 26110])
-            ("org" customgroup (:user-visible-flag t) nil [26140 26259])
-            ("org-mode-hook" variable nil nil [26261 26380])
-            ("org-load-hook" variable nil nil [26382 26490])
-            ("org-log-buffer-setup-hook" variable nil nil [26492 26636])
-            ("org-modules" variable nil nil [26638 26658])
-            ("org-modules-loaded" variable nil nil [26676 26749])
-            ("org-load-modules-maybe" function (:arguments ("force")) nil [26751 27065])
-            ("org-set-modules" function (:arguments ("var" "value")) nil [27067 27292])
-            ("org-modules" variable (:default-value (quote (org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail))) nil [27294 32693])
-            ("org-export-registered-backends" variable nil nil [32695 32734])
-            ("declare-function" code nil nil [32749 32826])
-            ("declare-function" code nil nil [32827 32886])
-            ("org-export-backends" variable (:default-value (quote (ascii html icalendar latex odt))) nil [32887 37127])
-            ("eval-after-load" code nil nil [37129 37357])
-            ("org-support-shift-select" variable nil nil [37359 39485])
-            ("org-loop-over-headlines-in-active-region" variable nil nil [39487 40576])
-            ("org-startup" customgroup (:user-visible-flag t) nil [40578 40683])
-            ("org-startup-folded" variable (:default-value t) nil [40685 41436])
-            ("org-startup-truncated" variable (:default-value t) nil [41438 42208])
-            ("org-startup-indented" variable nil nil [42210 42586])
-            ("org-use-sub-superscripts" variable (:default-value t) nil [42588 44020])
-            ("org-startup-with-beamer-mode" variable nil nil [44022 44310])
-            ("org-startup-align-all-tables" variable nil nil [44312 44756])
-            ("org-startup-with-inline-images" variable nil nil [44758 45092])
-            ("org-startup-with-latex-preview" variable nil nil [45094 45468])
-            ("org-insert-mode-line-in-empty-file" variable nil nil [45470 45938])
-            ("org-replace-disputed-keys" variable nil nil [45940 46666])
-            ("org-use-extra-keys" variable nil nil [46668 46953])
-            ("defvaralias" code nil nil [46955 47015])
-            ("org-disputed-keys" variable (:default-value (quote (([(shift up)] . [(meta p)]) ([(shift down)] . [(meta n)]) ([(shift left)] . [(meta -)]) ([(shift right)] . [(meta +)]) ([(control shift right)] . [(meta shift +)]) ([(control shift left)] . [(meta shift -)])))) nil [47017 47701])
-            ("org-key" function (:arguments ("key")) nil [47703 48060])
-            ("org-defkey" function (:arguments ("keymap" "key" "def")) nil [48062 48202])
-            ("org-ellipsis" variable nil nil [48204 48711])
-            ("org-display-table" variable nil nil [48713 48814])
-            ("org-keywords" customgroup (:user-visible-flag t) nil [48816 48905])
-            ("org-closed-keep-when-no-todo" variable nil nil [48907 49133])
-            ("org-structure" customgroup (:user-visible-flag t) nil [49135 49259])
-            ("org-reveal-location" customgroup (:user-visible-flag t) nil [49261 49409])
-            ("org-show-context-detail" variable (:default-value (quote ((agenda . local) (bookmark-jump . lineage) (isearch . lineage) (default . ancestors)))) nil [49411 52266])
-            ("org-indirect-buffer-display" variable (:default-value (quote other-window)) nil [52268 53162])
-            ("org-use-speed-commands" variable nil nil [53164 53752])
-            ("org-speed-commands-user" variable nil nil [53754 54715])
-            ("org-bookmark-names-plist" variable (:default-value (quote (:last-capture "org-capture-last-stored" :last-refile "org-refile-last-stored" :last-capture-marker "org-capture-last-stored-marker"))) nil [54717 55275])
-            ("org-cycle" customgroup (:user-visible-flag t) nil [55277 55399])
-            ("org-cycle-skip-children-state-if-no-children" variable (:default-value t) nil [55401 55566])
-            ("org-cycle-max-level" variable nil nil [55568 56224])
-            ("org-hide-block-startup" variable nil nil [56226 56475])
-            ("org-cycle-global-at-bob" variable nil nil [56477 57075])
-            ("org-cycle-level-after-item/entry-creation" variable (:default-value t) nil [57077 57796])
-            ("org-cycle-emulate-tab" variable (:default-value t) nil [57798 58504])
-            ("org-cycle-separator-lines" variable (:default-value 2) nil [58506 59268])
-            ("put" code nil nil [59269 59332])
-            ("org-pre-cycle-hook" variable nil nil [59334 59803])
-            ("org-cycle-hook" variable (:default-value (quote (org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-show-empty-lines org-optimize-window-after-visibility-change))) nil [59805 60486])
-            ("org-edit-structure" customgroup (:user-visible-flag t) nil [60488 60627])
-            ("org-odd-levels-only" variable nil nil [60629 61223])
-            ("org-adapt-indentation" variable (:default-value t) nil [61225 62307])
-            ("org-special-ctrl-a/e" variable nil nil [62309 63929])
-            ("defvaralias" code nil nil [63930 63985])
-            ("org-special-ctrl-k" variable nil nil [63987 64506])
-            ("org-ctrl-k-protect-subtree" variable nil nil [64508 65121])
-            ("org-special-ctrl-o" variable (:default-value t) nil [65123 65255])
-            ("org-catch-invisible-edits" variable nil nil [65257 66422])
-            ("org-yank-folded-subtrees" variable (:default-value t) nil [66424 66846])
-            ("org-yank-adjusted-subtrees" variable nil nil [66848 67096])
-            ("org-M-RET-may-split-line" variable (:default-value (quote ((default . t)))) nil [67098 67873])
-            ("org-insert-heading-respect-content" variable nil nil [67876 68280])
-            ("org-blank-before-new-entry" variable (:default-value (quote ((heading . auto) (plain-list-item . auto)))) nil [68282 69009])
-            ("org-insert-heading-hook" variable nil nil [69011 69143])
-            ("org-enable-fixed-width-editor" variable (:default-value t) nil [69145 69419])
-            ("org-goto-auto-isearch" variable (:default-value t) nil [69421 69873])
-            ("org-sparse-trees" customgroup (:user-visible-flag t) nil [69875 70005])
-            ("org-highlight-sparse-tree-matches" variable (:default-value t) nil [70007 70265])
-            ("org-remove-highlights-with-change" variable (:default-value t) nil [70267 70736])
-            ("org-occur-case-fold-search" variable (:default-value t) nil [70738 71150])
-            ("org-occur-hook" variable (:default-value (quote (org-first-headline-recenter))) nil [71152 71406])
-            ("org-imenu-and-speedbar" customgroup (:user-visible-flag t) nil [71408 71556])
-            ("org-imenu-depth" variable (:default-value 2) nil [71558 71733])
-            ("org-table" customgroup (:user-visible-flag t) nil [71735 71835])
-            ("org-self-insert-cluster-for-undo" variable nil nil [71837 72172])
-            ("org-table-tab-recognizes-table.el" variable (:default-value t) nil [72174 72434])
-            ("org-link" customgroup (:user-visible-flag t) nil [72436 72533])
-            ("defvar-local" code nil nil [72535 72695])
-            ("org-link-parameters" variable (:default-value (quote (("doi" :follow org--open-doi-link) ("elisp" :follow org--open-elisp-link) ("file" :complete org-file-complete-link) ("ftp" :follow (lambda (path) (browse-url (concat "ftp:" path)))) ("help" :follow org--open-help-link) ("http" :follow (lambda (path) (browse-url (concat "http:" path)))) ("https" :follow (lambda (path) (browse-url (concat "https:" path)))) ("mailto" :follow (lambda (path) (browse-url (concat "mailto:" path)))) ("news" :follow (lambda (path) (browse-url (concat "news:" path)))) ("shell" :follow org--open-shell-link)))) nil [72697 74725])
-            ("org-link-get-parameter" function (:arguments ("type" "key")) nil [74727 74912])
-            ("org-link-set-parameters" function (:arguments ("type" "parameters")) nil [74914 75293])
-            ("org-link-types" function nil nil [75295 75396])
-            ("org-link-abbrev-alist" variable nil nil [75398 76617])
-            ("org-descriptive-links" variable (:default-value t) nil [76619 77074])
-            ("org-link-file-path-type" variable (:default-value (quote adaptive)) nil [77076 77701])
-            ("defvaralias" code nil nil [77703 77757])
-            ("org-highlight-links" variable (:default-value (quote (bracket angle plain radio tag date footnote))) nil [77758 79161])
-            ("org-make-link-description-function" variable nil nil [79163 79523])
-            ("org-link-store" customgroup (:user-visible-flag t) nil [79525 79647])
-            ("org-url-hexify-p" variable (:default-value t) nil [79649 79790])
-            ("org-email-link-description-format" variable (:default-value "Email %c: %.30s") nil [79792 80593])
-            ("org-from-is-user-regexp" variable (:default-value (let (r1 r2) (when (and user-mail-address (not (string= user-mail-address ""))) (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>"))) (when (and user-full-name (not (string= user-full-name ""))) (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>"))) (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))) nil [80595 81155])
-            ("org-context-in-file-links" variable (:default-value t) nil [81157 81838])
-            ("org-keep-stored-link-after-insertion" variable nil nil [81840 82443])
-            ("org-link-follow" customgroup (:user-visible-flag t) nil [82445 82571])
-            ("org-link-translation-function" variable nil nil [82573 83281])
-            ("org-follow-link-hook" variable nil nil [83283 83412])
-            ("org-tab-follows-link" variable nil nil [83414 83674])
-            ("org-return-follows-link" variable nil nil [83676 83866])
-            ("org-mouse-1-follows-link" variable (:default-value (if (boundp (quote mouse-1-click-follows-link)) mouse-1-click-follows-link t)) nil [83868 84421])
-            ("org-mark-ring-length" variable (:default-value 4) nil [84423 84623])
-            ("org-link-search-must-match-exact-headline" variable (:default-value (quote query-to-create)) nil [84625 85266])
-            ("org-link-frame-setup" variable (:default-value (quote ((vm . vm-visit-folder-other-frame) (vm-imap . vm-visit-imap-folder-other-frame) (gnus . org-gnus-no-new-news) (file . find-file-other-window) (wl . wl-other-frame)))) nil [85268 86841])
-            ("org-display-internal-link-with-indirect-buffer" variable nil nil [86843 87434])
-            ("org-open-non-existing-files" variable nil nil [87436 87805])
-            ("org-open-directory-means-index-dot-org" variable nil nil [87807 88075])
-            ("org-confirm-shell-link-function" variable (:default-value (quote yes-or-no-p)) nil [88077 88786])
-            ("put" code nil nil [88787 88904])
-            ("org-confirm-shell-link-not-regexp" variable nil nil [88906 89065])
-            ("org-confirm-elisp-link-function" variable (:default-value (quote yes-or-no-p)) nil [89067 89801])
-            ("put" code nil nil [89802 89919])
-            ("org-confirm-elisp-link-not-regexp" variable nil nil [89921 90080])
-            ("org-file-apps-defaults-gnu" variable
-               (:constant-flag t
-                :default-value (quote ((remote . emacs) (system . mailcap) (t . mailcap))))
-                nil [90082 90264])
-            ("org-file-apps-defaults-macosx" variable
-               (:constant-flag t
-                :default-value (quote ((remote . emacs) (system . "open %s") ("ps.gz" . "gv %s") ("eps.gz" . "gv %s") ("dvi" . "xdvi %s") ("fig" . "xfig %s") (t . "open %s"))))
-                nil [90266 90680])
-            ("org-file-apps-defaults-windowsnt" variable
-               (:constant-flag t
-                :default-value (list (quote (remote . emacs)) (cons (quote system) (lambda (file _path) (with-no-warnings (w32-shell-execute "open" file)))) (cons t (lambda (file _path) (with-no-warnings (w32-shell-execute "open" file))))))
-                nil [90682 91050])
-            ("org-file-apps" variable (:default-value (quote ((auto-mode . emacs) ("\\.mm\\'" . default) ("\\.x?html?\\'" . default) ("\\.pdf\\'" . default)))) nil [91052 95976])
-            ("org-doi-server-url" variable (:default-value "http://dx.doi.org/") nil [95978 96120])
-            ("org-refile" customgroup (:user-visible-flag t) nil [96122 96234])
-            ("org-directory" variable (:default-value "~/org") nil [96236 96823])
-            ("org-default-notes-file" variable (:default-value (convert-standard-filename "~/.notes")) nil [96825 97087])
-            ("org-goto-interface" variable (:default-value (quote outline)) nil [97089 97762])
-            ("org-goto-max-level" variable (:default-value 5) nil [97764 97906])
-            ("org-reverse-note-order" variable nil nil [97908 98391])
-            ("org-log-refile" variable nil nil [98393 99204])
-            ("org-refile-targets" variable nil nil [99206 101530])
-            ("org-refile-target-verify-function" variable nil nil [101532 102218])
-            ("org-refile-use-cache" variable nil nil [102220 102849])
-            ("org-refile-use-outline-path" variable nil nil [102851 103557])
-            ("org-outline-path-complete-in-steps" variable (:default-value t) nil [103559 104152])
-            ("org-refile-allow-creating-parent-nodes" variable nil nil [104154 104875])
-            ("org-refile-active-region-within-subtree" variable nil nil [104877 105281])
-            ("org-todo" customgroup (:user-visible-flag t) nil [105283 105385])
-            ("org-progress" customgroup (:user-visible-flag t) nil [105387 105508])
-            ("org-todo-interpretation-widgets" variable (:default-value (quote ((:tag "Sequence (cycling hits every state)" sequence) (:tag "Type     (cycling directly to DONE)" type)))) nil [105510 105787])
-            ("org-todo-keywords" variable (:default-value (quote ((sequence "TODO" "DONE")))) nil [105789 108603])
-            ("defvar-local" code nil nil [108605 108694])
-            ("org-todo-keywords-for-agenda" variable nil nil [108695 108736])
-            ("org-done-keywords-for-agenda" variable nil nil [108737 108778])
-            ("org-todo-keyword-alist-for-agenda" variable nil nil [108779 108825])
-            ("org-tag-alist-for-agenda" variable nil nil [108826 108908])
-            ("org-tag-groups-alist-for-agenda" variable nil nil [108909 109013])
-            ("defvar-local" code nil nil [109014 109053])
-            ("org-agenda-contributing-files" variable nil nil [109054 109096])
-            ("defvar-local" code nil nil [109097 109300])
-            ("defvar-local" code nil nil [109301 109341])
-            ("defvar-local" code nil nil [109342 109378])
-            ("defvar-local" code nil nil [109379 109412])
-            ("defvar-local" code nil nil [109413 109445])
-            ("defvar-local" code nil nil [109446 109484])
-            ("defvar-local" code nil nil [109485 109522])
-            ("defvar-local" code nil nil [109523 109560])
-            ("defvar-local" code nil nil [109561 109600])
-            ("org-todo-interpretation" variable (:default-value (quote sequence)) nil [109602 109997])
-            ("org-use-fast-todo-selection" variable (:default-value t) nil [109999 110982])
-            ("org-provide-todo-statistics" variable (:default-value t) nil [110984 111976])
-            ("org-hierarchical-todo-statistics" variable (:default-value t) nil [111978 112365])
-            ("org-after-todo-state-change-hook" variable nil nil [112367 112614])
-            ("org-blocker-hook" variable nil nil [112616 112964])
-            ("org-trigger-hook" variable nil nil [112966 113566])
-            ("org-enforce-todo-dependencies" variable nil nil [113568 114200])
-            ("org-enforce-todo-checkbox-dependencies" variable nil nil [114202 114961])
-            ("org-treat-insert-todo-heading-as-state-change" variable nil nil [114963 115326])
-            ("org-treat-S-cursor-todo-selection-as-state-change" variable (:default-value t) nil [115328 115657])
-            ("org-todo-state-tags-triggers" variable nil nil [115659 116375])
-            ("org-log-done" variable nil nil [116377 117102])
-            ("cond" code nil nil [117143 117282])
-            ("org-log-reschedule" variable nil nil [117284 117911])
-            ("org-log-redeadline" variable nil nil [117913 118655])
-            ("org-log-note-clock-out" variable nil nil [118657 118990])
-            ("org-log-done-with-time" variable (:default-value t) nil [118992 119178])
-            ("org-log-note-headings" variable (:default-value (quote ((done . "CLOSING NOTE %t") (state . "State %-12s from %-12S %t") (note . "Note taken on %t") (reschedule . "Rescheduled from %S on %t") (delschedule . "Not scheduled, was %S on %t") (redeadline . "New deadline from %S on %t") (deldeadline . "Removed deadline, was %S on %t") (refile . "Refiled on %t") (clock-out . "")))) nil [119180 121075])
-            ("unless" code nil nil [121077 121166])
-            ("org-log-into-drawer" variable nil nil [121168 122203])
-            ("defvaralias" code nil nil [122205 122272])
-            ("org-log-into-drawer" function nil nil [122274 122769])
-            ("org-log-state-notes-insert-after-drawers" variable nil nil [122771 123232])
-            ("org-log-states-order-reversed" variable (:default-value t) nil [123234 123602])
-            ("org-todo-repeat-to-state" variable nil nil [123604 124041])
-            ("org-log-repeat" variable (:default-value (quote time)) nil [124043 125089])
-            ("org-priorities" customgroup (:user-visible-flag t) nil [125092 125192])
-            ("org-enable-priority-commands" variable (:default-value t) nil [125194 125416])
-            ("org-highest-priority" variable (:default-value 65) nil [125418 125628])
-            ("org-lowest-priority" variable (:default-value 67) nil [125630 125838])
-            ("org-default-priority" variable (:default-value 66) nil [125840 126519])
-            ("org-priority-start-cycle-with-default" variable (:default-value t) nil [126521 126850])
-            ("org-get-priority-function" variable nil nil [126852 127353])
-            ("org-time" customgroup (:user-visible-flag t) nil [127355 127472])
-            ("org-time-stamp-rounding-minutes" variable (:default-value (quote (0 5))) nil [127474 128533])
-            ("when" code nil nil [128585 128754])
-            ("org-display-custom-times" variable nil nil [128756 129081])
-            ("make-variable-buffer-local" code nil nil [129082 129136])
-            ("org-time-stamp-custom-formats" variable (:default-value (quote ("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>"))) nil [129138 129620])
-            ("org-time-stamp-format" function (:arguments ("long" "inactive")) nil [129622 129872])
-            ("org-deadline-warning-days" variable (:default-value 14) nil [129874 130332])
-            ("org-scheduled-delay-days" variable nil nil [130334 130888])
-            ("org-read-date-prefer-future" variable (:default-value t) nil [130890 131971])
-            ("org-agenda-jump-prefer-future" variable (:default-value (quote org-read-date-prefer-future)) nil [131973 132517])
-            ("org-read-date-force-compatible-dates" variable (:default-value t) nil [132519 133935])
-            ("org-read-date-display-live" variable (:default-value t) nil [133937 134138])
-            ("org-read-date-popup-calendar" variable (:default-value t) nil [134140 134475])
-            ("defvaralias" code nil nil [134476 134557])
-            ("org-extend-today-until" variable nil nil [134559 135298])
-            ("org-use-effective-time" variable nil nil [135300 135635])
-            ("org-use-last-clock-out-time-as-effective-time" variable nil nil [135637 135965])
-            ("org-edit-timestamp-down-means-later" variable nil nil [135967 136149])
-            ("org-calendar-follow-timestamp-change" variable (:default-value t) nil [136151 136405])
-            ("org-tags" customgroup (:user-visible-flag t) nil [136407 136503])
-            ("org-tag-alist" variable nil nil [136505 137762])
-            ("org-tag-persistent-alist" variable nil nil [137764 138993])
-            ("org-complete-tags-always-offer-all-agenda-tags" variable nil nil [138995 139514])
-            ("org-file-tags" variable nil nil [139516 139749])
-            ("org-use-fast-tag-selection" variable (:default-value (quote auto)) nil [139751 140410])
-            ("org-fast-tag-selection-single-key" variable nil nil [140412 140895])
-            ("org-fast-tag-selection-include-todo" variable nil nil [140897 141082])
-            ("org-tags-column" variable (:default-value -77) nil [141084 141491])
-            ("org-auto-align-tags" variable (:default-value t) nil [141493 141824])
-            ("org-use-tag-inheritance" variable (:default-value t) nil [141826 142811])
-            ("org-tags-exclude-from-inheritance" variable nil nil [142813 143144])
-            ("org-tag-inherit-p" function (:arguments ("tag")) nil [143146 143595])
-            ("org-tags-match-list-sublevels" variable (:default-value t) nil [143597 144580])
-            ("org-tags-sort-function" variable nil nil [144582 144884])
-            ("org-tags-history" variable nil nil [144886 144957])
-            ("org-last-tags-completion-table" variable nil nil [144958 145046])
-            ("org-after-tags-change-hook" variable nil nil [145047 145146])
-            ("org-properties" customgroup (:user-visible-flag t) nil [145148 145262])
-            ("org-property-format" variable (:default-value "%-10s %s") nil [145264 145592])
-            ("org-properties-postprocess-alist" variable nil nil [145594 146563])
-            ("org-use-property-inheritance" variable nil nil [146565 147871])
-            ("org-property-inherit-p" function (:arguments ("property")) nil [147873 148343])
-            ("org-columns-default-format" variable (:default-value "%25ITEM %TODO %3PRIORITY %TAGS") nil [148345 148618])
-            ("org-columns-ellipses" variable (:default-value "..") nil [148620 149128])
-            ("org-global-properties-fixed" variable
-               (:constant-flag t
-                :default-value (quote (("VISIBILITY_ALL" . "folded children content all") ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))))
-                nil [149130 149703])
-            ("org-global-properties" variable nil nil [149705 150242])
-            ("defvar-local" code nil nil [150244 150431])
-            ("org-agenda" customgroup (:user-visible-flag t) nil [150433 150541])
-            ("defvar-local" code nil nil [150543 150875])
-            ("put" code nil nil [150876 150958])
-            ("org-agenda-files" variable nil nil [150960 151743])
-            ("org-agenda-file-regexp" variable (:default-value "\\`[^.].*\\.org\\'") nil [151745 152080])
-            ("org-agenda-text-search-extra-files" variable nil nil [152082 152906])
-            ("defvaralias" code nil nil [152908 152995])
-            ("org-agenda-skip-unavailable-files" variable nil nil [152997 153222])
-            ("org-calendar-to-agenda-key" variable (:default-value [99]) nil [153224 153565])
-            ("org-calendar-insert-diary-entry-key" variable (:default-value [105]) nil [153567 154091])
-            ("org-agenda-diary-file" variable (:default-value (quote diary-file)) nil [154093 154569])
-            ("eval-after-load" code nil nil [154571 154919])
-            ("org-latex" customgroup (:user-visible-flag t) nil [154921 155030])
-            ("org-format-latex-options" variable (:default-value (quote (:foreground default :background default :scale 1.0 :html-foreground "Black" :html-background "Transparent" :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\[")))) nil [155032 156481])
-            ("org-format-latex-signal-error" variable (:default-value t) nil [156483 156695])
-            ("org-latex-to-mathml-jar-file" variable nil nil [156697 157078])
-            ("org-latex-to-mathml-convert-command" variable nil nil [157080 157873])
-            ("org-preview-latex-default-process" variable (:default-value (quote dvipng)) nil [157875 158190])
-            ("org-preview-latex-process-alist" variable (:default-value (quote ((dvipng :programs ("latex" "dvipng") :description "dvi > png" :message "you need to install the programs: latex and dvipng." :image-input-type "dvi" :image-output-type "png" :image-size-adjust (1.0 . 1.0) :latex-compiler ("latex -interaction nonstopmode -output-directory %o %f") :image-converter ("dvipng -fg %F -bg %B -D %D -T tight -o %O %f")) (dvisvgm :programs ("latex" "dvisvgm") :description "dvi > svg" :message "you need to install the programs: latex and dvisvgm." :use-xcolor t :image-input-type "dvi" :image-output-type "svg" :image-size-adjust (1.7 . 1.5) :latex-compiler ("latex -interaction nonstopmode -output-directory %o %f") :image-converter ("dvisvgm %f -n -b min -c %S -o %O")) (imagemagick :programs ("latex" "convert") :description "pdf > png" :message "you need to install the programs: latex and imagemagick." :use-xcolor t :image-input-type "pdf" :image-output-type "png" :image-size-adjust (1.0 . 1.0) :latex-compiler ("pdflatex -interaction nonstopmode -output-directory %o %f") :image-converter ("convert -density %D -trim -antialias %f -quality 100 %O"))))) nil [158192 162677])
-            ("org-preview-latex-image-directory" variable (:default-value "ltximg/") nil [162679 163012])
-            ("org-format-latex-mathml-available-p" function nil nil [163014 163515])
-            ("org-format-latex-header" variable (:default-value "\\documentclass{article}
-\\usepackage[usenames]{color}
-[PACKAGES]
-[DEFAULT-PACKAGES]
-\\pagestyle{empty}             % do not remove
-% The settings below are copied from fullpage.sty
-\\setlength{\\textwidth}{\\paperwidth}
-\\addtolength{\\textwidth}{-3cm}
-\\setlength{\\oddsidemargin}{1.5cm}
-\\addtolength{\\oddsidemargin}{-2.54cm}
-\\setlength{\\evensidemargin}{\\oddsidemargin}
-\\setlength{\\textheight}{\\paperheight}
-\\addtolength{\\textheight}{-\\headheight}
-\\addtolength{\\textheight}{-\\headsep}
-\\addtolength{\\textheight}{-\\footskip}
-\\addtolength{\\textheight}{-3cm}
-\\setlength{\\topmargin}{1.5cm}
-\\addtolength{\\topmargin}{-2.54cm}") nil [163517 164579])
-            ("org-set-packages-alist" function (:arguments ("var" "val")) nil [164581 164821])
-            ("org-get-packages-alist" function (:arguments ("var")) nil [164823 165057])
-            ("org-latex-default-packages-alist" variable (:default-value (quote (("AUTO" "inputenc" t ("pdflatex")) ("T1" "fontenc" t ("pdflatex")) ("" "graphicx" t) ("" "grffile" t) ("" "longtable" nil) ("" "wrapfig" nil) ("" "rotating" nil) ("normalem" "ulem" t) ("" "amsmath" t) ("" "textcomp" t) ("" "amssymb" t) ("" "capt-of" nil) ("" "hyperref" nil)))) nil [165059 167584])
-            ("org-latex-packages-alist" variable nil nil [167586 168608])
-            ("org-appearance" customgroup (:user-visible-flag t) nil [168610 168715])
-            ("org-level-color-stars-only" variable nil nil [168717 169008])
-            ("org-hide-leading-stars" variable nil nil [169010 169595])
-            ("org-hidden-keywords" variable nil nil [169597 170039])
-            ("org-custom-properties" variable nil nil [170041 170374])
-            ("org-fontify-done-headline" variable nil nil [170376 170717])
-            ("org-fontify-emphasized-text" variable (:default-value t) nil [170719 170935])
-            ("org-fontify-whole-heading-line" variable nil nil [170937 171154])
-            ("org-highlight-latex-and-related" variable nil nil [171156 171815])
-            ("org-hide-emphasis-markers" variable nil nil [171817 171971])
-            ("org-hide-macro-markers" variable nil nil [171973 172126])
-            ("org-pretty-entities" variable nil nil [172128 172324])
-            ("org-pretty-entities-include-sub-superscripts" variable (:default-value t) nil [172326 172523])
-            ("org-emph-re" variable nil nil [172525 173094])
-            ("org-verbatim-re" variable nil nil [173096 173175])
-            ("org-emphasis-regexp-components" variable nil nil [173177 173216])
-            ("org-emphasis-alist" variable nil nil [173238 173265])
-            ("org-set-emph-re" function (:arguments ("var" "val")) nil [173287 174014])
-            ("org-emphasis-regexp-components" variable (:default-value (quote ("- 	('\"{" "- 	.,:!?;'\")}\\[" " 	

-" "." 1))) nil [174202 175188])
-            ("org-emphasis-alist" variable (:default-value (quote (("*" bold) ("/" italic) ("_" underline) ("=" org-verbatim verbatim) ("~" org-code verbatim) ("+" (:strike-through t))))) nil [175190 175995])
-            ("org-protecting-blocks" variable (:default-value (quote ("src" "example" "export"))) nil [175997 176170])
-            ("mark-active" variable nil nil [176265 176285])
-            ("declare-function" code nil nil [176307 176379])
-            ("declare-function" code nil nil [176380 176436])
-            ("declare-function" code nil nil [176437 176492])
-            ("declare-function" code nil nil [176493 176545])
-            ("declare-function" code nil nil [176546 176608])
-            ("declare-function" code nil nil [176609 176669])
-            ("declare-function" code nil nil [176670 176728])
-            ("declare-function" code nil nil [176729 176776])
-            ("declare-function" code nil nil [176777 176871])
-            ("declare-function" code nil nil [176872 177005])
-            ("declare-function" code nil nil [177006 177120])
-            ("declare-function" code nil nil [177121 177237])
-            ("declare-function" code nil nil [177238 177306])
-            ("declare-function" code nil nil [177307 177439])
-            ("declare-function" code nil nil [177440 177496])
-            ("declare-function" code nil nil [177497 177566])
-            ("declare-function" code nil nil [177567 177658])
-            ("declare-function" code nil nil [177659 177739])
-            ("declare-function" code nil nil [177740 177790])
-            ("declare-function" code nil nil [177791 177862])
-            ("declare-function" code nil nil [177863 177939])
-            ("declare-function" code nil nil [177940 178003])
-            ("declare-function" code nil nil [178004 178072])
-            ("declare-function" code nil nil [178073 178135])
-            ("declare-function" code nil nil [178136 178199])
-            ("declare-function" code nil nil [178200 178270])
-            ("declare-function" code nil nil [178271 178337])
-            ("declare-function" code nil nil [178338 178396])
-            ("declare-function" code nil nil [178397 178468])
-            ("align-mode-rules-list" variable nil nil [178470 178500])
-            ("calc-embedded-close-formula" variable nil nil [178501 178537])
-            ("calc-embedded-open-formula" variable nil nil [178538 178573])
-            ("calc-embedded-open-mode" variable nil nil [178574 178606])
-            ("font-lock-unfontify-region-function" variable nil nil [178607 178651])
-            ("iswitchb-temp-buflist" variable nil nil [178652 178682])
-            ("org-agenda-tags-todo-honor-ignore-options" variable nil nil [178683 178733])
-            ("remember-data-file" variable nil nil [178734 178761])
-            ("texmathp-why" variable nil nil [178762 178783])
-            ("turn-on-orgtbl" function nil nil [178800 178909])
-            ("org-at-table-p" function (:arguments ("table-type")) nil [178911 179324])
-            ("org-at-table.el-p" function nil nil [179326 179593])
-            ("org-at-table-hline-p" function nil nil [179595 179757])
-            ("org-table-map-tables" function (:arguments ("function" "quietly")) nil [179759 180528])
-            ("declare-function" code nil nil [180530 180611])
-            ("declare-function" code nil nil [180612 180672])
-            ("declare-function" code nil nil [180673 180776])
-            ("org-at-TBLFM-p" function (:arguments ("pos")) nil [180778 181069])
-            ("org-clock-start-time" variable nil nil [181071 181100])
-            ("org-clock-marker" variable (:default-value (make-marker)) nil [181101 181180])
-            ("org-clock-hd-marker" variable (:default-value (make-marker)) nil [181181 181290])
-            ("org-clock-heading" variable nil nil [181291 181364])
-            ("org-clock-is-active" function nil nil [181365 181525])
-            ("org-check-running-clock" function nil nil [181527 181940])
-            ("org-clocktable-try-shift" function (:arguments ("dir" "n")) nil [181942 182155])
-            ("org-clock-persistence-insinuate" function nil nil [182172 182367])
-            ("org-archive" customgroup (:user-visible-flag t) nil [182369 182486])
-            ("org-archive-location" variable (:default-value "%s_archive::") nil [182488 184897])
-            ("org-agenda-skip-archived-trees" variable (:default-value t) nil [184899 185295])
-            ("org-columns-skip-archived-trees" variable (:default-value t) nil [185297 185473])
-            ("org-cycle-open-archived-trees" variable nil nil [185475 185840])
-            ("org-sparse-tree-open-archived-trees" variable nil nil [185842 186128])
-            ("org-sparse-tree-default-date-type" variable nil nil [186130 186960])
-            ("org-cycle-hide-archived-subtrees" function (:arguments ("state")) nil [186962 187712])
-            ("org-force-cycle-archived" function (:user-visible-flag t) nil [187714 187920])
-            ("org-hide-archived-subtrees" function (:arguments ("beg" "end")) nil [187922 188417])
-            ("declare-function" code nil nil [188419 188473])
-            ("declare-function" code nil nil [188474 188537])
-            ("org-flag-subtree" function (:arguments ("flag")) nil [188538 188731])
-            ("defalias" code nil nil [188733 188796])
-            ("declare-function" code nil nil [188827 188899])
-            ("declare-function" code nil nil [188900 188963])
-            ("declare-function" code nil nil [188985 189030])
-            ("declare-function" code nil nil [189031 189080])
-            ("declare-function" code nil nil [189081 189130])
-            ("org-id-track-globally" variable nil nil [189131 189161])
-            ("defvar-local" code nil nil [189233 189436])
-            ("defvar-local" code nil nil [189438 189665])
-            ("defvar-local" code nil nil [189667 189884])
-            ("defvar-local" code nil nil [189886 190118])
-            ("defvar-local" code nil nil [190120 190458])
-            ("defvar-local" code nil nil [190460 190732])
-            ("defvar-local" code nil nil [190734 190894])
-            ("org-plain-time-of-day-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\<[012]?[0-9]" "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)" "\\(--?" "\\(\\<[012]?[0-9]" "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)" "\\)?"))
-                nil [190896 191428])
-            ("org-plain-time-extension-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\<[012]?[0-9]" "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)" "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?"))
-                nil [191430 191878])
-            ("org-stamp-time-of-day-regexp" variable
-               (:constant-flag t
-                :default-value (concat "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)" "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^
-
>]*?\\)>" "\\(--?" "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?"))
-                nil [191880 192427])
-            ("org-startup-options" variable
-               (:constant-flag t
-                :default-value (quote (("fold" org-startup-folded t) ("overview" org-startup-folded t) ("nofold" org-startup-folded nil) ("showall" org-startup-folded nil) ("showeverything" org-startup-folded showeverything) ("content" org-startup-folded content) ("indent" org-startup-indented t) ("noindent" org-startup-indented nil) ("hidestars" org-hide-leading-stars t) ("showstars" org-hide-leading-stars nil) ("odd" org-odd-levels-only t) ("oddeven" org-odd-levels-only nil) ("align" org-startup-align-all-tables t) ("noalign" org-startup-align-all-tables nil) ("inlineimages" org-startup-with-inline-images t) ("noinlineimages" org-startup-with-inline-images nil) ("latexpreview" org-startup-with-latex-preview t) ("nolatexpreview" org-startup-with-latex-preview nil) ("customtime" org-display-custom-times t) ("logdone" org-log-done time) ("lognotedone" org-log-done note) ("nologdone" org-log-done nil) ("lognoteclock-out" org-log-note-clock-out t) ("nolognoteclock-out" org-log-note-clock-out nil) ("logrepeat" org-log-repeat state) ("lognoterepeat" org-log-repeat note) ("logdrawer" org-log-into-drawer t) ("nologdrawer" org-log-into-drawer nil) ("logstatesreversed" org-log-states-order-reversed t) ("nologstatesreversed" org-log-states-order-reversed nil) ("nologrepeat" org-log-repeat nil) ("logreschedule" org-log-reschedule time) ("lognotereschedule" org-log-reschedule note) ("nologreschedule" org-log-reschedule nil) ("logredeadline" org-log-redeadline time) ("lognoteredeadline" org-log-redeadline note) ("nologredeadline" org-log-redeadline nil) ("logrefile" org-log-refile time) ("lognoterefile" org-log-refile note) ("nologrefile" org-log-refile nil) ("fninline" org-footnote-define-inline t) ("nofninline" org-footnote-define-inline nil) ("fnlocal" org-footnote-section nil) ("fnauto" org-footnote-auto-label t) ("fnprompt" org-footnote-auto-label nil) ("fnconfirm" org-footnote-auto-label confirm) ("fnplain" org-footnote-auto-label plain) ("fnadjust" org-footnote-auto-adjust t) ("nofnadjust" org-footnote-auto-adjust nil) ("constcgs" constants-unit-system cgs) ("constSI" constants-unit-system SI) ("noptag" org-tag-persistent-alist nil) ("hideblocks" org-hide-block-startup t) ("nohideblocks" org-hide-block-startup nil) ("beamer" org-startup-with-beamer-mode t) ("entitiespretty" org-pretty-entities t) ("entitiesplain" org-pretty-entities nil))))
-                nil [192429 195350])
-            ("org-group-tags" variable (:default-value t) nil [195352 195546])
-            ("org-inhibit-startup" variable nil nil [195548 195580])
-            ("org-toggle-tags-groups" function (:user-visible-flag t) nil [195617 196100])
-            ("org-tag-add-to-alist" function (:arguments ("alist1" "alist2")) nil [196102 196466])
-            ("org-set-regexps-and-options" function (:arguments ("tags-only")) nil [196468 202890])
-            ("org--setup-collect-keywords" function (:arguments ("regexp" "files" "alist")) nil [202892 207169])
-            ("org-tag-string-to-alist" function (:arguments ("s")) nil [207171 208521])
-            ("org-tag-alist-to-string" function (:arguments ("alist" "skip-key")) nil [208523 209342])
-            ("org-tag-alist-to-groups" function (:arguments ("alist")) nil [209344 210210])
-            ("org--file-cache" variable (:default-value (make-hash-table :test (function equal))) nil [210212 210395])
-            ("org-reset-file-cache" function nil nil [210397 210520])
-            ("org-file-url-p" function (:arguments ("file")) nil [210522 210639])
-            ("org-file-contents" function (:arguments ("file" "noerror" "nocache")) nil [210641 212176])
-            ("org-extract-log-state-settings" function (:arguments ("x")) nil [212178 212706])
-            ("org-remove-keyword-keys" function (:arguments ("list")) nil [212708 212928])
-            ("org-assign-fast-keys" function (:arguments ("alist")) nil [212930 213575])
-            ("org-window-configuration" variable nil nil [213620 213717])
-            ("org-selected-window" variable nil nil [213718 213810])
-            ("org-finish-function" variable nil nil [213811 213950])
-            ("org-last-state" variable nil nil [213951 213974])
-            ("org-entities" variable nil nil [214039 214060])
-            ("org-struct-menu" variable nil nil [214095 214119])
-            ("org-org-menu" variable nil nil [214120 214141])
-            ("org-tbl-menu" variable nil nil [214142 214163])
-            ("org-table-may-need-update" variable (:default-value t) nil [214271 214449])
-            ("org-before-change-function" function (:arguments ("_beg" "_end")) nil [214450 214595])
-            ("org-mode-map" variable nil nil [214596 214617])
-            ("org-inhibit-startup-visibility-stuff" variable nil nil [214618 214667])
-            ("org-agenda-keep-modes" variable nil nil [214696 214730])
-            ("org-inhibit-logging" variable nil nil [214764 214796])
-            ("org-inhibit-blocking" variable nil nil [214832 214865])
-            ("org-table-buffer-is-an" variable nil nil [214900 214935])
-            ("bidi-paragraph-direction" variable nil nil [214937 214970])
-            ("buffer-face-mode-face" variable nil nil [214971 215001])
-            ("outline" include nil nil [215003 215021])
-            ("time-date" include nil nil [215047 215067])
-            ("unless" code nil nil [215068 215142])
-            ("easymenu" include nil nil [215143 215162])
-            ("easy-menu-add" function (:prototype-flag t) nil [215163 215199])
-            ("overlay" include nil nil [215200 215218])
-            ("org-entities" include nil nil [215295 215318])
-            ("org-faces" include nil nil [215396 215416])
-            ("org-list" include nil nil [215417 215436])
-            ("org-pcomplete" include nil nil [215437 215461])
-            ("org-src" include nil nil [215462 215480])
-            ("org-footnote" include nil nil [215481 215504])
-            ("org-macro" include nil nil [215505 215525])
-            ("ob" include nil nil [215536 215549])
-            ("define-derived-mode" code nil nil [215566 221455])
-            ("add-to-list" code nil nil [221507 221723])
-            ("org-mode-transpose-word-syntax-table" variable (:default-value (let ((st (make-syntax-table text-mode-syntax-table))) (dolist (c org-emphasis-alist st) (modify-syntax-entry (string-to-char (car c)) "w p" st)))) nil [221725 221929])
-            ("when" code nil nil [221931 222053])
-            ("org-find-invisible-foreground" function nil nil [222055 222536])
-            ("org-current-time" function (:arguments ("rounding-minutes" "past")) nil [222538 223259])
-            ("org-today" function nil nil [223261 223440])
-            ("org-mouse-map" variable (:default-value (make-sparse-keymap)) nil [223490 223533])
-            ("org-defkey" code nil nil [223534 223589])
-            ("org-defkey" code nil nil [223590 223650])
-            ("when" code nil nil [223651 223737])
-            ("when" code nil nil [223738 223876])
-            ("font-lock" include nil nil [223878 223898])
-            ("org-non-link-chars" variable
-               (:constant-flag t
-                :default-value "]	
-
<>")
-                nil [223900 223941])
-            ("org-link-types-re" variable nil nil [223942 224033])
-            ("org-link-re-with-space" variable nil nil [224034 224138])
-            ("org-link-re-with-space2" variable nil nil [224139 224244])
-            ("org-link-re-with-space3" variable nil nil [224245 224354])
-            ("org-angle-link-re" variable nil nil [224355 224445])
-            ("org-plain-link-re" variable nil nil [224446 224516])
-            ("org-bracket-link-regexp" variable nil nil [224517 224592])
-            ("org-bracket-link-analytic-regexp" variable nil nil [224593 224780])
-            ("org-bracket-link-analytic-regexp++" variable nil nil [224781 224908])
-            ("org-any-link-re" variable nil nil [224909 224979])
-            ("org-match-sexp-depth" variable
-               (:constant-flag t
-                :default-value 3)
-                nil [224981 225073])
-            ("org-create-multibrace-regexp" function (:arguments ("left" "right" "n")) nil [225075 225876])
-            ("org-match-substring-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\S-\\)\\([_^]\\)\\(" "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)" "\\|" "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)" "\\|" "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)"))
-                nil [225878 226241])
-            ("org-match-substring-with-braces-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\S-\\)\\([_^]\\)" "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"))
-                nil [226243 226479])
-            ("org-make-link-regexps" function nil nil [226481 228042])
-            ("org-make-link-regexps" code nil nil [228044 228067])
-            ("org-emph-face" variable nil nil [228069 228095])
-            ("org-do-emphasis-faces" function (:arguments ("limit")) nil [228097 229961])
-            ("org-emphasize" function
-               (:user-visible-flag t
-                :arguments ("char"))
-                nil [229963 231645])
-            ("org-nonsticky-props" variable
-               (:constant-flag t
-                :default-value (quote (mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link)))
-                nil [231647 231770])
-            ("org-rear-nonsticky-at" function (:arguments ("pos")) nil [231772 231890])
-            ("org-activate-links" function (:arguments ("limit")) nil [231892 234567])
-            ("org-activate-code" function (:arguments ("limit")) nil [234569 234860])
-            ("org-src-fontify-natively" variable (:default-value t) nil [234862 235092])
-            ("org-allow-promoting-top-level-subtree" variable nil nil [235094 235330])
-            ("org-fontify-meta-lines-and-blocks" function (:arguments ("limit")) nil [235332 235569])
-            ("org-fontify-meta-lines-and-blocks-1" function (:arguments ("limit")) nil [235571 239811])
-            ("org-fontify-drawers" function (:arguments ("limit")) nil [239813 240122])
-            ("org-fontify-macros" function (:arguments ("limit")) nil [240124 240800])
-            ("org-activate-footnote-links" function (:arguments ("limit")) nil [240802 241546])
-            ("org-activate-dates" function (:arguments ("limit")) nil [241548 242242])
-            ("defvar-local" code nil nil [242244 242346])
-            ("org-target-regexp" variable
-               (:constant-flag t
-                :default-value (let ((border "[^<>
-
 	]")) (format "<<\\(%s\\|%s[^<>
-
]*%s\\)>>" border border border)))
-                nil [242348 242536])
-            ("org-radio-target-regexp" variable
-               (:constant-flag t
-                :default-value (format "<%s>" org-target-regexp))
-                nil [242538 242654])
-            ("org-any-target-regexp" variable
-               (:constant-flag t
-                :default-value (format "%s\\|%s" org-radio-target-regexp org-target-regexp))
-                nil [242656 242795])
-            ("org-activate-target-links" function (:arguments ("limit")) nil [242797 243310])
-            ("org-update-radio-target-regexp" function (:user-visible-flag t) nil [243312 244909])
-            ("org-hide-wide-columns" function (:arguments ("limit")) nil [244911 245206])
-            ("org-latex-and-related-regexp" variable nil nil [245208 245326])
-            ("org-compute-latex-and-related-regexp" function nil nil [245328 246313])
-            ("org-do-latex-and-related" function (:arguments ("limit")) nil [246315 247298])
-            ("org-restart-font-lock" function nil nil [247300 247490])
-            ("org-activate-tags" function (:arguments ("limit")) nil [247492 247857])
-            ("org-outline-level" function nil nil [247859 248325])
-            ("org-font-lock-keywords" variable nil nil [248327 248362])
-            ("org-re-property" function (:arguments ("property" "literal" "allow-null" "value")) nil [248364 249308])
-            ("org-property-re" variable
-               (:constant-flag t
-                :default-value (org-re-property "\\S-+" (quote literal) t))
-                nil [249310 249673])
-            ("org-font-lock-hook" variable nil nil [249675 249762])
-            ("org-font-lock-extra-keywords" variable nil nil [249764 249805])
-            ("org-font-lock-set-keywords-hook" variable nil nil [249828 250158])
-            ("org-font-lock-hook" function (:arguments ("limit")) nil [250160 250286])
-            ("org-set-font-lock-defaults" function nil nil [250288 254310])
-            ("org-toggle-pretty-entities" function (:user-visible-flag t) nil [254312 254755])
-            ("defvar-local" code nil nil [254757 254855])
-            ("org-toggle-custom-properties-visibility" function (:user-visible-flag t) nil [254857 256099])
-            ("org-fontify-entities" function (:arguments ("limit")) nil [256101 256985])
-            ("org-fontify-like-in-org-mode" function (:arguments ("s" "odd-levels")) nil [256987 257236])
-            ("org-m" variable nil nil [257238 257256])
-            ("org-l" variable nil nil [257257 257275])
-            ("org-f" variable nil nil [257276 257294])
-            ("org-get-level-face" function (:arguments ("n")) nil [257295 257823])
-            ("org-face-from-face-or-color" function (:arguments ("context" "inherit" "face-or-color")) nil [257825 258172])
-            ("org-get-todo-face" function (:arguments ("kwd")) nil [258174 258530])
-            ("org-get-priority-face" function (:arguments ("priority")) nil [258532 258763])
-            ("org-get-tag-face" function (:arguments ("tag")) nil [258765 259039])
-            ("org-font-lock-add-priority-faces" function (:arguments ("limit")) nil [259041 259363])
-            ("org-font-lock-add-tag-faces" function (:arguments ("limit")) nil [259365 259714])
-            ("org-unfontify-region" function (:arguments ("beg" "end" "_maybe_loudly")) nil [259716 260286])
-            ("org-script-display" variable
-               (:constant-flag t
-                :default-value (quote (((raise -0.3) (height 0.7)) ((raise 0.3) (height 0.7)) ((raise -0.5)) ((raise 0.5)))))
-                nil [260288 260482])
-            ("org-remove-font-lock-display-properties" function (:arguments ("beg" "end")) nil [260484 260970])
-            ("org-raise-scripts" function (:arguments ("limit")) nil [260972 262440])
-            ("defvar-local" code nil nil [262520 262562])
-            ("put" code nil nil [262563 262606])
-            ("defvar-local" code nil nil [262607 262650])
-            ("put" code nil nil [262651 262695])
-            ("org-inlinetask-min-level" variable nil nil [262697 262730])
-            ("org-unlogged-message" function (:arguments ("args")) nil [262732 262901])
-            ("org-cycle" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [262918 269285])
-            ("org-cycle-internal-global" function nil nil [269287 270666])
-            ("org-called-with-limited-levels" variable nil nil [270668 270775])
-            ("org-invisible-p" function (:arguments ("pos")) nil [270777 270955])
-            ("org-cycle-internal-local" function nil nil [270957 275206])
-            ("org-global-cycle" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [275223 275898])
-            ("org-set-startup-visibility" function nil nil [275900 276499])
-            ("org-set-visibility-according-to-property" function
-               (:user-visible-flag t
-                :arguments ("no-cleanup"))
-                nil [276501 277498])
-            ("org-overview" function (:user-visible-flag t) nil [277681 278285])
-            ("org-content" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [278287 278923])
-            ("org-optimize-window-after-visibility-change" function (:arguments ("state")) nil [278925 279410])
-            ("org-remove-empty-overlays-at" function (:arguments ("pos")) nil [279412 279718])
-            ("org-clean-visibility-after-subtree-move" function nil nil [279720 280712])
-            ("org-cycle-show-empty-lines" function (:arguments ("state")) nil [280714 282353])
-            ("org-show-empty-lines-in-parent" function nil nil [282355 282600])
-            ("org-files-list" function nil nil [282602 283066])
-            ("org-entry-beginning-position" function nil nil [283068 283217])
-            ("org-entry-end-position" function nil nil [283219 283355])
-            ("org-cycle-hide-drawers" function (:arguments ("state" "exceptions")) nil [283357 284511])
-            ("org-flag-drawer" function (:arguments ("flag" "element")) nil [284513 285445])
-            ("org-subtree-end-visible-p" function nil nil [285447 285609])
-            ("org-first-headline-recenter" function nil nil [285611 285934])
-            ("org-outline-overlay-data" function (:arguments ("use-markers")) nil [285973 286694])
-            ("org-set-outline-overlay-data" function (:arguments ("data")) nil [286696 286963])
-            ("defvar-local" code nil nil [286988 287058])
-            ("org-block-map" function (:arguments ("function" "start" "end")) nil [287060 287565])
-            ("org-hide-block-toggle-all" function nil nil [287567 287707])
-            ("org-hide-block-all" function (:user-visible-flag t) nil [287709 287867])
-            ("org-show-block-all" function (:user-visible-flag t) nil [287869 288046])
-            ("org-hide-block-toggle-maybe" function (:user-visible-flag t) nil [288048 288312])
-            ("org-hide-block-toggle" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [288314 290481])
-            ("add-hook" code nil nil [290527 290647])
-            ("org-goto-window-configuration" variable nil nil [290663 290705])
-            ("org-goto-marker" variable nil nil [290706 290734])
-            ("org-goto-map" variable nil nil [290735 290756])
-            ("org-goto-map" function nil nil [290757 292331])
-            ("org-goto-help" variable
-               (:constant-flag t
-                :default-value "Browse buffer copy, to find location or copy text.%s
-RET=jump to location             C-g=quit and return to previous location
-[Up]/[Down]=next/prev headline   TAB=cycle visibility   [/] org-occur")
-                nil [292333 292559])
-            ("org-goto-start-pos" variable nil nil [292561 292588])
-            ("org-goto" function
-               (:user-visible-flag t
-                :arguments ("alternative-interface"))
-                nil [292621 294404])
-            ("org-goto-selected-point" variable nil nil [294406 294442])
-            ("org-goto-exit-command" variable nil nil [294474 294508])
-            ("org-goto-local-auto-isearch-map" variable nil nil [294540 294580])
-            ("org-get-location" function (:arguments ("_buf" "help")) nil [294598 296246])
-            ("org-goto-local-auto-isearch-map" variable (:default-value (make-sparse-keymap)) nil [296248 296309])
-            ("set-keymap-parent" code nil nil [296310 296378])
-            ("if" code nil nil [296438 296840])
-            ("org-goto-local-search-headings" function (:arguments ("string" "bound" "noerror")) nil [296842 297356])
-            ("org-goto-local-auto-isearch" function (:user-visible-flag t) nil [297358 297649])
-            ("org-goto-ret" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [297651 297860])
-            ("org-goto-left" function (:user-visible-flag t) nil [297862 298147])
-            ("org-goto-right" function (:user-visible-flag t) nil [298149 298413])
-            ("org-goto-quit" function (:user-visible-flag t) nil [298415 298594])
-            ("org-indirect-dedicated-frame" variable nil nil [298637 298738])
-            ("org-last-indirect-buffer" variable nil nil [298739 298776])
-            ("org-tree-to-indirect-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [298778 301453])
-            ("org-get-indirect-buffer" function (:arguments ("buffer" "heading")) nil [301455 301934])
-            ("org-set-frame-title" function (:arguments ("title")) nil [301936 302102])
-            ("org--line-empty-p" function (:arguments ("n")) nil [302153 302425])
-            ("org-previous-line-empty-p" function nil nil [302427 302577])
-            ("org-next-line-empty-p" function nil nil [302579 302725])
-            ("org--blank-before-heading-p" function (:arguments ("parent")) nil [302727 303568])
-            ("org-insert-heading" function
-               (:user-visible-flag t
-                :arguments ("arg" "invisible-ok" "top"))
-                nil [303570 307474])
-            ("org-N-empty-lines-before-current" function (:arguments ("n")) nil [307476 307912])
-            ("org-get-heading" function (:arguments ("no-tags" "no-todo" "no-priority" "no-comment")) nil [307914 308855])
-            ("orgstruct-mode" variable nil nil [308857 308880])
-            ("org-heading-components" function nil nil [308900 309889])
-            ("org-get-entry" function nil nil [309891 310080])
-            ("org-edit-headline" function
-               (:user-visible-flag t
-                :arguments ("heading"))
-                nil [310082 310723])
-            ("org-insert-heading-after-current" function (:user-visible-flag t) nil [310725 310951])
-            ("org-insert-heading-respect-content" function
-               (:user-visible-flag t
-                :arguments ("invisible-ok"))
-                nil [310953 311148])
-            ("org-insert-todo-heading-respect-content" function
-               (:user-visible-flag t
-                :arguments ("force-state"))
-                nil [311150 311358])
-            ("org-insert-todo-heading" function
-               (:user-visible-flag t
-                :arguments ("arg" "force-heading"))
-                nil [311360 312712])
-            ("org-insert-subheading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [312714 312981])
-            ("org-insert-todo-subheading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [312983 313290])
-            ("org-after-demote-entry-hook" variable nil nil [313320 313528])
-            ("org-after-promote-entry-hook" variable nil nil [313530 313741])
-            ("org-promote-subtree" function (:user-visible-flag t) nil [313743 313957])
-            ("org-demote-subtree" function (:user-visible-flag t) nil [313959 314182])
-            ("org-do-promote" function (:user-visible-flag t) nil [314184 314531])
-            ("org-do-demote" function (:user-visible-flag t) nil [314533 314876])
-            ("org-fix-position-after-promote" function nil nil [314878 315299])
-            ("org-current-level" function nil nil [315301 315702])
-            ("org-get-previous-line-level" function nil nil [315704 316059])
-            ("org-reduced-level" function (:arguments ("l")) nil [316061 316279])
-            ("org-level-increment" function nil nil [316281 316495])
-            ("org-get-valid-level" function (:arguments ("level" "change")) nil [316497 317119])
-            ("org-promote" function nil nil [317121 317983])
-            ("org-demote" function nil nil [317985 318602])
-            ("org-cycle-level" function (:user-visible-flag t) nil [318604 320120])
-            ("org-map-tree" function (:arguments ("fun")) nil [320122 320445])
-            ("org-map-region" function (:arguments ("fun" "beg" "end")) nil [320447 320858])
-            ("org-fixup-indentation" function (:arguments ("diff")) nil [320860 324857])
-            ("org-convert-to-odd-levels" function (:user-visible-flag t) nil [324859 325436])
-            ("org-convert-to-oddeven-levels" function (:user-visible-flag t) nil [325438 326427])
-            ("org-tr-level" function (:arguments ("n")) nil [326429 326523])
-            ("org-move-subtree-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [326584 326774])
-            ("org-move-subtree-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [326776 329511])
-            ("org-subtree-clip" variable nil nil [329513 329733])
-            ("org-subtree-clip-folded" variable nil nil [329735 329861])
-            ("org-cut-subtree" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [329863 330116])
-            ("org-copy-subtree" function
-               (:user-visible-flag t
-                :arguments ("n" "cut" "force-store-markers" "nosubtrees"))
-                nil [330118 331730])
-            ("org-paste-subtree" function
-               (:user-visible-flag t
-                :arguments ("level" "tree" "for-yank" "remove"))
-                nil [331732 335953])
-            ("org-kill-is-subtree-p" function (:arguments ("txt")) nil [335955 336963])
-            ("org-markers-to-move" variable nil nil [336965 337154])
-            ("org-save-markers-in-region" function (:arguments ("beg" "end")) nil [337156 337799])
-            ("org-check-and-save-marker" function (:arguments ("marker" "beg" "end")) nil [337801 338137])
-            ("org-reinstall-markers-in-region" function (:arguments ("beg")) nil [338139 338361])
-            ("org-narrow-to-subtree" function (:user-visible-flag t) nil [338363 338714])
-            ("org-narrow-to-block" function (:user-visible-flag t) nil [338716 339014])
-            ("org-clone-subtree-with-time-shift" function
-               (:user-visible-flag t
-                :arguments ("n" "shift"))
-                nil [339016 343308])
-            ("org-sort" function
-               (:user-visible-flag t
-                :arguments ("with-case"))
-                nil [343331 343666])
-            ("org-sort-remove-invisible" function (:arguments ("s")) nil [343668 344064])
-            ("org-priority-regexp" variable nil nil [344066 344094])
-            ("org-after-sorting-entries-or-items-hook" variable nil nil [344124 344443])
-            ("org-sort-entries" function
-               (:user-visible-flag t
-                :arguments ("with-case" "sorting-type" "getkey-func" "compare-func" "property" "interactive?"))
-                nil [344445 353106])
-            ("orgstruct-heading-prefix-regexp" variable nil nil [354089 354299])
-            ("orgstruct-setup-hook" variable nil nil [354384 354549])
-            ("orgstruct-initialized" variable nil nil [354551 354585])
-            ("org-local-vars" variable nil nil [354587 354672])
-            ("define-minor-mode" code nil nil [354689 355287])
-            ("turn-on-orgstruct" function nil nil [355304 355399])
-            ("defvar-local" code nil nil [355401 355496])
-            ("defvar-local" code nil nil [355497 355527])
-            ("orgstruct++-mode" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [355528 356665])
-            ("turn-on-orgstruct++" function nil nil [356682 356783])
-            ("orgstruct-error" function (:user-visible-flag t) nil [356785 357021])
-            ("orgstruct-setup" function nil nil [357023 359038])
-            ("orgstruct-make-binding" function (:arguments ("fun" "key" "disable-when-heading-prefix")) nil [359040 361908])
-            ("org-contextualize-keys" function (:arguments ("alist" "contexts")) nil [361910 363377])
-            ("org-contextualize-validate-key" function (:arguments ("key" "contexts")) nil [363379 364293])
-            ("org-context-p" function (:arguments ("contexts")) nil [364295 364840])
-            ("org-run-like-in-org-mode" function (:arguments ("cmd")) nil [364857 365494])
-            ("org-get-category" function (:arguments ("pos" "force-refresh")) nil [365496 365846])
-            ("org-refresh-properties" function (:arguments ("dprop" "tprop")) nil [365872 366867])
-            ("org-refresh-property" function (:arguments ("tprop" "p" "inherit")) nil [366869 367610])
-            ("org-refresh-category-properties" function nil nil [367612 369096])
-            ("org-refresh-stats-properties" function nil nil [369098 369769])
-            ("org-refresh-effort-properties" function nil nil [369771 369965])
-            ("org-link-expand-abbrev" function (:arguments ("link")) nil [370008 370811])
-            ("org-insert-link-history" variable nil nil [370846 370948])
-            ("org-stored-links" variable nil nil [370950 371032])
-            ("org-store-link-plist" variable nil nil [371034 371147])
-            ("org-store-link-functions" function nil nil [371149 372356])
-            ("org-agenda-buffer-name" variable nil nil [372358 372389])
-            ("org-id-link-to-org-use-id" variable nil nil [372417 372451])
-            ("org-store-link" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [372491 381290])
-            ("org-store-link-props" function (:arguments ("plist")) nil [381292 382501])
-            ("org-add-link-props" function (:arguments ("plist")) nil [382503 382762])
-            ("org-email-link-description" function (:arguments ("fmt")) nil [382764 383880])
-            ("org-make-org-heading-search-string" function (:arguments ("string")) nil [383882 384675])
-            ("org-link-escape-chars" variable
-               (:constant-flag t
-                :default-value (quote (32 91 93 37)))
-                nil [384677 384878])
-            ("org-make-link-string" function (:arguments ("link" "description")) nil [384880 385790])
-            ("org-link-escape" function (:arguments ("text" "table" "merge")) nil [385792 386611])
-            ("org-link-unescape" function (:arguments ("str")) nil [386613 386935])
-            ("org-link-unescape-compound" function (:arguments ("hex")) nil [386937 388012])
-            ("org-link-unescape-single-byte-sequence" function (:arguments ("hex")) nil [388014 388244])
-            ("org-xor" function (:arguments ("a" "b")) nil [388246 388304])
-            ("org-fixup-message-id-for-http" function (:arguments ("s")) nil [388306 388791])
-            ("org-link-prettify" function (:arguments ("link")) nil [388793 389120])
-            ("org-insert-link-global" function (:user-visible-flag t) nil [389137 389368])
-            ("org-insert-all-links" function
-               (:user-visible-flag t
-                :arguments ("arg" "pre" "post"))
-                nil [389370 390162])
-            ("org-insert-last-stored-link" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [390164 390317])
-            ("org-link-fontify-links-to-this-file" function nil nil [390319 391079])
-            ("org--links-history" variable nil nil [391081 391112])
-            ("org-insert-link" function
-               (:user-visible-flag t
-                :arguments ("complete-file" "link-location" "default-description"))
-                nil [391113 399305])
-            ("org-link-try-special-completion" function (:arguments ("type")) nil [399307 399585])
-            ("org-file-complete-link" function (:arguments ("arg")) nil [399587 400276])
-            ("org-completing-read" function (:arguments ("args")) nil [400278 400774])
-            ("org-link-search-failed" variable nil nil [400806 400841])
-            ("org-open-link-functions" variable nil nil [400843 401656])
-            ("org-next-link" function
-               (:user-visible-flag t
-                :arguments ("search-backward"))
-                nil [401658 402579])
-            ("org-previous-link" function (:user-visible-flag t) nil [402581 402736])
-            ("org-translate-link" function (:arguments ("s")) nil [402738 402953])
-            ("org-translate-link-from-planner" function (:arguments ("type" "path")) nil [402955 403896])
-            ("org-find-file-at-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [403898 404044])
-            ("org-open-at-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [404046 404335])
-            ("org-window-config-before-follow-link" variable nil nil [404337 404493])
-            ("org-open-at-point-global" function (:user-visible-flag t) nil [404510 405114])
-            ("org-open-link-from-string" function
-               (:user-visible-flag t
-                :arguments ("s" "arg" "reference-buffer"))
-                nil [405131 405664])
-            ("org-open-at-point-functions" variable nil nil [405666 405915])
-            ("org-link-search-inhibit-query" variable nil nil [405917 405959])
-            ("clean-buffer-list-kill-buffer-names" variable nil nil [405960 406004])
-            ("org--open-doi-link" function (:arguments ("path")) nil [406029 406204])
-            ("org--open-elisp-link" function (:arguments ("path")) nil [406206 406809])
-            ("org--open-help-link" function (:arguments ("path")) nil [406811 407129])
-            ("org--open-shell-link" function (:arguments ("path")) nil [407131 407887])
-            ("org-open-at-point" function
-               (:user-visible-flag t
-                :arguments ("arg" "reference-buffer"))
-                nil [407889 414555])
-            ("org-offer-links-in-entry" function (:arguments ("buffer" "marker" "nth" "zero")) nil [414557 416714])
-            ("org-open-file-with-system" function (:arguments ("path")) nil [416844 416973])
-            ("org-open-file-with-emacs" function (:arguments ("path")) nil [416974 417075])
-            ("org-create-file-search-functions" variable nil nil [417095 418182])
-            ("org-execute-file-search-functions" variable nil nil [418184 419236])
-            ("org-search-radio-target" function (:arguments ("target")) nil [419238 419939])
-            ("org-link-search" function (:arguments ("s" "avoid-pos" "stealth")) nil [419941 426451])
-            ("org-get-buffer-for-internal-link" function (:arguments ("buffer")) nil [426453 427103])
-            ("org-do-occur" function (:arguments ("regexp" "cleanup")) nil [427105 427828])
-            ("org-mark-ring" variable nil nil [427865 427945])
-            ("org-mark-ring-last-goto" variable nil nil [427946 428034])
-            ("setq" code nil nil [428062 428114])
-            ("dotimes" code nil nil [428143 428214])
-            ("setcdr" code nil nil [428215 428287])
-            ("org-mark-ring-push" function
-               (:user-visible-flag t
-                :arguments ("pos" "buffer"))
-                nil [428289 428748])
-            ("org-mark-ring-goto" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [428750 429493])
-            ("org-add-angle-brackets" function (:arguments ("s")) nil [429495 429662])
-            ("org-agenda-buffer-tmp-name" variable nil nil [429694 429729])
-            ("org-agenda-start-on-weekday" variable nil nil [429730 429766])
-            ("org-follow-timestamp-link" function nil nil [429767 430602])
-            ("declare-function" code nil nil [430630 430704])
-            ("declare-function" code nil nil [430705 430766])
-            ("declare-function" code nil nil [430767 430854])
-            ("org-wait" variable nil nil [430855 430876])
-            ("org-open-file" function (:arguments ("path" "in-emacs" "line" "search")) nil [430877 437081])
-            ("org-file-apps-entry-match-against-dlink-p" function (:arguments ("entry")) nil [437083 437747])
-            ("org-default-apps" function nil nil [437749 438017])
-            ("org-apps-regexp-alist" function (:arguments ("list" "add-auto-mode")) nil [438019 438674])
-            ("ange-ftp-name-format" variable nil nil [438676 438705])
-            ("org-file-remote-p" function (:arguments ("file")) nil [438706 439225])
-            ("org-get-org-file" function nil nil [439243 439514])
-            ("org-notes-order-reversed-p" function nil nil [439516 439914])
-            ("org-refile-target-table" variable nil nil [439916 440009])
-            ("org-agenda-new-buffers" variable nil nil [440011 440089])
-            ("org-refile-cache" variable nil nil [440091 440150])
-            ("org-refile-markers" variable nil nil [440152 440238])
-            ("org-refile-marker" function (:arguments ("pos")) nil [440240 440473])
-            ("org-refile-cache-clear" function nil nil [440475 440724])
-            ("org-refile-cache-check-set" function (:arguments ("set")) nil [440726 441153])
-            ("org-refile-cache-put" function (:arguments ("set" "identifiers")) nil [441155 441447])
-            ("org-refile-cache-get" function (:arguments ("identifiers")) nil [441449 441822])
-            ("org-outline-path-cache" variable nil nil [441824 442111])
-            ("org-refile-get-targets" function (:arguments ("default-buffer")) nil [442113 445819])
-            ("org--get-outline-path-1" function (:arguments ("use-cache")) nil [445821 447011])
-            ("org-get-outline-path" function (:arguments ("with-self" "use-cache")) nil [447013 447976])
-            ("org-format-outline-path" function (:arguments ("path" "width" "prefix" "separator")) nil [447978 449107])
-            ("org-display-outline-path" function
-               (:user-visible-flag t
-                :arguments ("file" "current" "separator" "just-return-string"))
-                nil [449109 450187])
-            ("org-refile-history" variable nil nil [450189 450257])
-            ("org-after-refile-insert-hook" variable nil nil [450259 450460])
-            ("org-capture-last-stored-marker" variable nil nil [450462 450501])
-            ("org-refile-keep" variable nil nil [450502 450590])
-            ("org-copy" function (:user-visible-flag t) nil [450592 450735])
-            ("org-refile" function
-               (:user-visible-flag t
-                :arguments ("arg" "default-buffer" "rfloc" "msg"))
-                nil [450737 457223])
-            ("org-refile-goto-last-stored" function (:user-visible-flag t) nil [457225 457458])
-            ("org-refile--get-location" function (:arguments ("refloc" "tbl")) nil [457460 457826])
-            ("org-refile-get-location" function (:arguments ("prompt" "default-buffer" "new-nodes")) nil [457828 460520])
-            ("declare-function" code nil nil [460522 460571])
-            ("org-refile-check-position" function (:arguments ("refile-pointer")) nil [460572 461320])
-            ("org-refile-new-child" function (:arguments ("parent-target" "child")) nil [461322 462147])
-            ("org-olpath-completing-read" function (:arguments ("prompt" "collection" "args")) nil [462149 462872])
-            ("org-find-dblock" function (:arguments ("name")) nil [462895 463314])
-            ("org-create-dblock" function (:arguments ("plist")) nil [463316 463906])
-            ("org-prepare-dblock" function nil nil [463908 464846])
-            ("org-map-dblocks" function (:arguments ("command")) nil [464848 465445])
-            ("org-dblock-update" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [465447 465783])
-            ("org-update-dblock" function (:user-visible-flag t) nil [465785 466818])
-            ("org-beginning-of-dblock" function nil nil [466820 467254])
-            ("org-update-all-dblocks" function (:user-visible-flag t) nil [467256 467464])
-            ("declare-function" code nil nil [467484 467543])
-            ("org-get-export-keywords" function nil nil [467544 468139])
-            ("org-options-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:" "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:" "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:" "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:" "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:")))
-                nil [468141 468536])
-            ("org-structure-template-alist" variable (:default-value (quote (("s" "#+BEGIN_SRC ?
-
-#+END_SRC") ("e" "#+BEGIN_EXAMPLE
-?
-#+END_EXAMPLE") ("q" "#+BEGIN_QUOTE
-?
-#+END_QUOTE") ("v" "#+BEGIN_VERSE
-?
-#+END_VERSE") ("V" "#+BEGIN_VERBATIM
-?
-#+END_VERBATIM") ("c" "#+BEGIN_CENTER
-?
-#+END_CENTER") ("C" "#+BEGIN_COMMENT
-?
-#+END_COMMENT") ("l" "#+BEGIN_EXPORT latex
-?
-#+END_EXPORT") ("L" "#+LaTeX: ") ("h" "#+BEGIN_EXPORT html
-?
-#+END_EXPORT") ("H" "#+HTML: ") ("a" "#+BEGIN_EXPORT ascii
-?
-#+END_EXPORT") ("A" "#+ASCII: ") ("i" "#+INDEX: ?") ("I" "#+INCLUDE: %file ?")))) nil [468538 469937])
-            ("org-try-structure-completion" function nil nil [469939 470443])
-            ("org-complete-expand-structure-template" function (:arguments ("start" "cell")) nil [470445 471223])
-            ("org-toggle-comment" function (:user-visible-flag t) nil [471256 471872])
-            ("org-last-todo-state-is-todo" variable nil nil [471874 472066])
-            ("org-setting-tags" variable nil nil [472068 472097])
-            ("org-todo-setup-filter-hook" variable nil nil [472121 472312])
-            ("org-todo-get-default-hook" variable nil nil [472314 472525])
-            ("org-agenda-headline-snapshot-before-repeat" variable nil nil [472527 472578])
-            ("org-current-effective-time" function nil nil [472580 473029])
-            ("org-todo-yesterday" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [473031 473401])
-            ("org-block-entry-blocking" variable nil nil [473403 473489])
-            ("org-cancel-repeater" function (:user-visible-flag t) nil [473491 474028])
-            ("org-state" variable nil nil [474030 474048])
-            ("org-blocked-by-checkboxes" variable nil nil [474049 474083])
-            ("org-todo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [474084 484140])
-            ("org-block-todo-from-children-or-siblings-or-parent" function (:arguments ("change-plist")) nil [484142 487092])
-            ("org-track-ordered-property-with-tag" variable nil nil [487127 487968])
-            ("org-toggle-ordered-property" function (:user-visible-flag t) nil [487970 488670])
-            ("org-block-todo-from-checkboxes" function (:arguments ("change-plist")) nil [488672 489926])
-            ("org-entry-blocked-p" function nil nil [489943 490292])
-            ("org-update-statistics-cookies" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [490294 491718])
-            ("org-entry-property-inherited-from" variable nil nil [491720 491762])
-            ("org-update-parent-todo-statistics" function nil nil [491780 495537])
-            ("org-after-todo-statistics-hook" variable nil nil [495539 496270])
-            ("org-todo-statistics-hook" variable nil nil [496272 496509])
-            ("org-todo-trigger-tag-changes" function (:arguments ("state")) nil [496511 497176])
-            ("org-local-logging" function (:arguments ("value")) nil [497178 497761])
-            ("org-get-todo-sequence-head" function (:arguments ("kwd")) nil [497763 498331])
-            ("org-fast-todo-selection" function nil nil [498333 500371])
-            ("org-entry-is-todo-p" function nil nil [500373 500457])
-            ("org-entry-is-done-p" function nil nil [500459 500539])
-            ("org-get-todo-state" function nil nil [500541 500779])
-            ("org-at-date-range-p" function
-               (:user-visible-flag t
-                :arguments ("inactive-ok"))
-                nil [500781 501559])
-            ("org-get-repeat" function (:arguments ("timestamp")) nil [501561 502332])
-            ("org-last-changed-timestamp" variable nil nil [502334 502369])
-            ("org-last-inserted-timestamp" variable nil nil [502370 502406])
-            ("org-log-post-message" variable nil nil [502407 502436])
-            ("org-log-note-purpose" variable nil nil [502437 502466])
-            ("org-log-note-how" variable nil nil [502467 502496])
-            ("org-log-note-extra" variable nil nil [502497 502524])
-            ("org-auto-repeat-maybe" function (:arguments ("done-word")) nil [502525 507236])
-            ("org-show-todo-tree" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [507238 508253])
-            ("org--deadline-or-schedule" function (:arguments ("arg" "type" "time")) nil [508255 511211])
-            ("org-deadline" function
-               (:user-visible-flag t
-                :arguments ("arg" "time"))
-                nil [511213 512028])
-            ("org-schedule" function
-               (:user-visible-flag t
-                :arguments ("arg" "time"))
-                nil [512030 512848])
-            ("org-get-scheduled-time" function (:arguments ("pom" "inherit")) nil [512850 513172])
-            ("org-get-deadline-time" function (:arguments ("pom" "inherit")) nil [513174 513488])
-            ("org-remove-timestamp-with-keyword" function (:arguments ("keyword")) nil [513490 514157])
-            ("org-time-was-given" variable nil nil [514159 514186])
-            ("org-end-time-was-given" variable nil nil [514218 514249])
-            ("org-at-planning-p" function nil nil [514282 514799])
-            ("org-add-planning-info" function (:arguments ("what" "time" "remove")) nil [514801 518384])
-            ("org-log-note-marker" variable (:default-value (make-marker)) nil [518386 518495])
-            ("org-log-note-purpose" variable nil nil [518496 518529])
-            ("org-log-note-state" variable nil nil [518530 518561])
-            ("org-log-note-previous-state" variable nil nil [518562 518602])
-            ("org-log-note-extra" variable nil nil [518603 518634])
-            ("org-log-note-window-configuration" variable nil nil [518635 518681])
-            ("org-log-note-return-to" variable (:default-value (make-marker)) nil [518682 518727])
-            ("org-log-note-effective-time" variable nil nil [518728 518887])
-            ("org-log-post-message" variable nil nil [518889 519013])
-            ("org-add-note" function (:user-visible-flag t) nil [519015 519179])
-            ("org-log-beginning" function (:arguments ("create")) nil [519181 520672])
-            ("org-add-log-setup" function (:arguments ("purpose" "state" "prev-state" "how" "extra")) nil [520674 521309])
-            ("org-skip-over-state-notes" function nil nil [521311 522082])
-            ("org-add-log-note" function (:arguments ("_purpose")) nil [522084 523714])
-            ("org-note-abort" variable nil nil [523716 523743])
-            ("org-store-log-note" function nil nil [523765 527477])
-            ("org-remove-empty-drawer-at" function (:arguments ("pos")) nil [527479 528095])
-            ("org-ts-type" variable nil nil [528097 528121])
-            ("org-sparse-tree" function
-               (:user-visible-flag t
-                :arguments ("arg" "type"))
-                nil [528122 530496])
-            ("defvar-local" code nil nil [530498 530582])
-            ("defvar-local" code nil nil [530583 531142])
-            ("org-occur" function
-               (:user-visible-flag t
-                :arguments ("regexp" "keep-previous" "callback"))
-                nil [531144 533103])
-            ("org-occur-next-match" function (:arguments ("n" "_reset")) nil [533105 533943])
-            ("org-show-context" function (:arguments ("key")) nil [533945 534354])
-            ("org-show-set-visibility" function (:arguments ("detail")) nil [534356 535644])
-            ("org-reveal-start-hook" variable nil nil [535646 535722])
-            ("org-reveal" function
-               (:user-visible-flag t
-                :arguments ("siblings"))
-                nil [535724 536569])
-            ("org-highlight-new-match" function (:arguments ("beg" "end")) nil [536571 536850])
-            ("org-remove-occur-highlights" function
-               (:user-visible-flag t
-                :arguments ("_beg" "_end" "noremove"))
-                nil [536852 537378])
-            ("org-priority-regexp" variable (:default-value ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)") nil [537397 537516])
-            ("org-remove-priority-next-time" variable nil nil [537518 537560])
-            ("org-priority-up" function (:user-visible-flag t) nil [537562 537672])
-            ("org-priority-down" function (:user-visible-flag t) nil [537674 537788])
-            ("org-priority" function
-               (:user-visible-flag t
-                :arguments ("action" "_show"))
-                nil [537790 540745])
-            ("org-show-priority" function (:user-visible-flag t) nil [540747 541268])
-            ("org-get-priority" function (:arguments ("s")) nil [541270 541634])
-            ("org-agenda-archives-mode" variable nil nil [541647 541680])
-            ("org-map-continue-from" variable nil nil [541681 541840])
-            ("org-scanner-tags" variable nil nil [541842 541931])
-            ("org-trust-scanner-tags" variable nil nil [541933 542511])
-            ("org--matcher-tags-todo-only" variable nil nil [542513 542553])
-            ("org-scan-tags" function (:arguments ("action" "matcher" "todo-only" "start-level")) nil [542555 548699])
-            ("org-remove-uninherited-tags" function (:arguments ("tags")) nil [548701 549366])
-            ("org-match-sparse-tree" function
-               (:user-visible-flag t
-                :arguments ("todo-only" "match"))
-                nil [549368 550023])
-            ("defalias" code nil nil [550025 550080])
-            ("org-cached-props" variable nil nil [550082 550111])
-            ("org-cached-entry-get" function (:arguments ("pom" "property")) nil [550112 550756])
-            ("org-global-tags-completion-table" function (:arguments ("files")) nil [550758 551363])
-            ("org-make-tags-matcher" function (:arguments ("match")) nil [551365 557063])
-            ("org-tags-expand" function (:arguments ("match" "single-as-list" "downcased" "tags-already-expanded")) nil [557065 562083])
-            ("org-op-to-function" function (:arguments ("op" "stringp")) nil [562085 562629])
-            ("org<>" function (:arguments ("a" "b")) nil [562631 562664])
-            ("org-string<=" function (:arguments ("a" "b")) nil [562665 562724])
-            ("org-string>=" function (:arguments ("a" "b")) nil [562725 562771])
-            ("org-string>" function (:arguments ("a" "b")) nil [562772 562844])
-            ("org-string<>" function (:arguments ("a" "b")) nil [562845 562891])
-            ("org-time=" function (:arguments ("a" "b")) nil [562892 562985])
-            ("org-time<" function (:arguments ("a" "b")) nil [562986 563079])
-            ("org-time<=" function (:arguments ("a" "b")) nil [563080 563173])
-            ("org-time>" function (:arguments ("a" "b")) nil [563174 563267])
-            ("org-time>=" function (:arguments ("a" "b")) nil [563268 563361])
-            ("org-time<>" function (:arguments ("a" "b")) nil [563362 563455])
-            ("org-2ft" function (:arguments ("s")) nil [563456 563821])
-            ("org-time-today" function nil nil [563823 564073])
-            ("org-matcher-time" function (:arguments ("s")) nil [564075 564658])
-            ("org-match-any-p" function (:arguments ("re" "list")) nil [564660 564811])
-            ("org-add-colon-after-tag-completion" variable nil nil [564813 564860])
-            ("org-tags-overlay" variable (:default-value (make-overlay 1 1)) nil [564890 564934])
-            ("delete-overlay" code nil nil [564935 564968])
-            ("org-get-local-tags-at" function (:arguments ("pos")) nil [564970 565102])
-            ("org-get-local-tags" function nil nil [565104 565220])
-            ("org-get-tags-at" function
-               (:user-visible-flag t
-                :arguments ("pos" "local"))
-                nil [565222 566703])
-            ("org-add-prop-inherited" function (:arguments ("s")) nil [566705 566797])
-            ("org-toggle-tag" function (:arguments ("tag" "onoff")) nil [566799 567807])
-            ("org--align-tags-here" function (:arguments ("to-col")) nil [567809 568513])
-            ("org-set-tags-command" function
-               (:user-visible-flag t
-                :arguments ("arg" "just-align"))
-                nil [568515 568920])
-            ("org-set-tags-to" function
-               (:user-visible-flag t
-                :arguments ("data"))
-                nil [568922 569873])
-            ("org-align-all-tags" function (:user-visible-flag t) nil [569875 570124])
-            ("org-indent-indentation-per-level" variable nil nil [570126 570167])
-            ("org-set-tags" function
-               (:user-visible-flag t
-                :arguments ("arg" "just-align"))
-                nil [570168 574167])
-            ("org-change-tag-in-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "tag" "off"))
-                nil [574169 575702])
-            ("org-tags-completion-function" function (:arguments ("string" "_predicate" "flag")) nil [575704 576519])
-            ("org-fast-tag-insert" function (:arguments ("kwd" "tags" "face" "end")) nil [576521 576777])
-            ("org-fast-tag-show-exit" function (:arguments ("flag")) nil [576779 577120])
-            ("org-set-current-tags-overlay" function (:arguments ("current" "prefix")) nil [577122 577424])
-            ("org-last-tag-selection-key" variable nil nil [577426 577465])
-            ("org-fast-tag-selection" function (:arguments ("current" "inherited" "table" "todo-table")) nil [577466 584535])
-            ("org-get-tags-string" function nil nil [584537 584834])
-            ("org-get-tags" function nil nil [584836 584966])
-            ("org-get-buffer-tags" function nil nil [584968 585433])
-            ("org-agenda-skip-comment-trees" variable nil nil [585457 585495])
-            ("org-agenda-skip-function" variable nil nil [585496 585529])
-            ("org-map-entries" function (:arguments ("func" "match" "scope" "skip")) nil [585530 591024])
-            ("org-special-properties" variable
-               (:constant-flag t
-                :default-value (quote ("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE" "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")))
-                nil [591046 591365])
-            ("org-default-properties" variable
-               (:constant-flag t
-                :default-value (quote ("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID" "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY" "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE" "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME" "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED" "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE" "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")))
-                nil [591367 591943])
-            ("org--valid-property-p" function (:arguments ("property")) nil [591945 592120])
-            ("org--update-property-plist" function (:arguments ("key" "val" "props")) nil [592122 592534])
-            ("org-get-property-block" function (:arguments ("beg" "force")) nil [592536 593598])
-            ("org-at-property-p" function nil nil [593600 593985])
-            ("org-property-action" function (:user-visible-flag t) nil [593987 594489])
-            ("org-inc-effort" function (:user-visible-flag t) nil [594491 594626])
-            ("org-clock-effort" variable nil nil [594628 594653])
-            ("org-clock-current-task" variable nil nil [594687 594718])
-            ("org-set-effort" function
-               (:user-visible-flag t
-                :arguments ("value" "increment"))
-                nil [594746 596606])
-            ("org-entry-properties" function (:arguments ("pom" "which")) nil [596608 604593])
-            ("org--property-local-values" function (:arguments ("property" "literal-nil")) nil [604595 605575])
-            ("org--property-global-value" function (:arguments ("property" "literal-nil")) nil [605577 606072])
-            ("org-entry-get" function (:arguments ("pom" "property" "inherit" "literal-nil")) nil [606074 607556])
-            ("org-property-or-variable-value" function (:arguments ("var" "inherit")) nil [607558 607919])
-            ("org-entry-delete" function (:arguments ("pom" "property")) nil [607921 608720])
-            ("org-entry-add-to-multivalued-property" function (:arguments ("pom" "property" "value")) nil [608866 609296])
-            ("org-entry-remove-from-multivalued-property" function (:arguments ("pom" "property" "value")) nil [609298 609725])
-            ("org-entry-member-in-multivalued-property" function (:arguments ("pom" "property" "value")) nil [609727 610036])
-            ("org-entry-get-multivalued-property" function (:arguments ("pom" "property")) nil [610038 610288])
-            ("org-entry-put-multivalued-property" function (:arguments ("pom" "property" "values")) nil [610290 610704])
-            ("org-entry-protect-space" function (:arguments ("s")) nil [610706 610934])
-            ("org-entry-restore-space" function (:arguments ("s")) nil [610936 611164])
-            ("org-entry-property-inherited-from" variable (:default-value (make-marker)) nil [611166 611561])
-            ("org-entry-get-with-inheritance" function (:arguments ("property" "literal-nil")) nil [611563 612754])
-            ("org-property-changed-functions" variable nil nil [612756 612949])
-            ("org-entry-put" function (:arguments ("pom" "property" "value")) nil [612951 616006])
-            ("org-buffer-property-keys" function (:arguments ("specials" "defaults" "columns" "ignore-malformed")) nil [616008 618783])
-            ("org-property-values" function (:arguments ("key")) nil [618785 619120])
-            ("org-insert-property-drawer" function nil nil [619122 619909])
-            ("org-insert-drawer" function
-               (:user-visible-flag t
-                :arguments ("arg" "drawer"))
-                nil [619911 621965])
-            ("org-property-set-functions-alist" variable nil nil [621967 622202])
-            ("org-set-property-function" function (:arguments ("property")) nil [622204 622462])
-            ("org-read-property-value" function (:arguments ("property")) nil [622464 623124])
-            ("org-last-set-property" variable nil nil [623126 623160])
-            ("org-last-set-property-value" variable nil nil [623161 623201])
-            ("org-read-property-name" function nil nil [623202 623623])
-            ("org-set-property-and-value" function
-               (:user-visible-flag t
-                :arguments ("use-last"))
-                nil [623625 624254])
-            ("org-set-property" function
-               (:user-visible-flag t
-                :arguments ("property" "value"))
-                nil [624256 625545])
-            ("org-find-property" function (:arguments ("property" "value")) nil [625547 626319])
-            ("org-delete-property" function
-               (:user-visible-flag t
-                :arguments ("property"))
-                nil [626321 626914])
-            ("org-delete-property-globally" function
-               (:user-visible-flag t
-                :arguments ("property"))
-                nil [626916 627552])
-            ("org-columns-current-fmt-compiled" variable nil nil [627554 627595])
-            ("org-compute-property-at-point" function (:user-visible-flag t) nil [627625 628175])
-            ("org-property-allowed-value-functions" variable nil nil [628177 628637])
-            ("org-property-get-allowed-values" function (:arguments ("pom" "property" "table")) nil [628639 629861])
-            ("org-property-previous-allowed-value" function
-               (:user-visible-flag t
-                :arguments ("_previous"))
-                nil [629863 630038])
-            ("org-property-next-allowed-value" function
-               (:user-visible-flag t
-                :arguments ("previous"))
-                nil [630040 631443])
-            ("org-find-olp" function (:arguments ("path" "this-buffer")) nil [631445 633079])
-            ("org-find-exact-headline-in-buffer" function (:arguments ("heading" "buffer" "pos-only")) nil [633081 633796])
-            ("org-find-exact-heading-in-directory" function (:arguments ("heading" "dir")) nil [633798 634507])
-            ("org-find-entry-with-id" function
-               (:user-visible-flag t
-                :arguments ("ident"))
-                nil [634509 635103])
-            ("org-last-changed-timestamp" variable nil nil [635122 635161])
-            ("org-last-inserted-timestamp" variable nil nil [635162 635265])
-            ("org-time-stamp" function
-               (:user-visible-flag t
-                :arguments ("arg" "inactive"))
-                nil [635267 637927])
-            ("org-get-compact-tod" function (:arguments ("s")) nil [638008 638642])
-            ("org-time-stamp-inactive" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [638644 639378])
-            ("org-date-ovl" variable (:default-value (make-overlay 1 1)) nil [639380 639420])
-            ("overlay-put" code nil nil [639421 639472])
-            ("delete-overlay" code nil nil [639473 639502])
-            ("org-ans1" variable nil nil [639504 639521])
-            ("org-ans2" variable nil nil [639553 639570])
-            ("org-plain-time-of-day-regexp" variable nil nil [639603 639640])
-            ("org-overriding-default-time" variable nil nil [639658 639698])
-            ("org-read-date-overlay" variable nil nil [639720 639754])
-            ("org-dcst" variable nil nil [639755 639776])
-            ("org-read-date-history" variable nil nil [639798 639832])
-            ("org-read-date-final-answer" variable nil nil [639833 639872])
-            ("org-read-date-analyze-futurep" variable nil nil [639873 639915])
-            ("org-read-date-analyze-forced-year" variable nil nil [639916 639962])
-            ("org-read-date-inactive" variable nil nil [639963 639994])
-            ("org-read-date-minibuffer-local-map" variable (:default-value (let* ((map (make-sparse-keymap))) (set-keymap-parent map minibuffer-local-map) (org-defkey map (kbd ".") (lambda nil (interactive) (if (looking-back "^[^:]+: " (let ((inhibit-field-text-motion t)) (line-beginning-position))) (org-eval-in-calendar (quote (calendar-goto-today))) (insert ".")))) (org-defkey map (kbd "C-.") (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-goto-today))))) (org-defkey map [(meta shift left)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-month 1))))) (org-defkey map [(meta shift right)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-month 1))))) (org-defkey map [(meta shift up)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-year 1))))) (org-defkey map [(meta shift down)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-year 1))))) (org-defkey map [27 (shift left)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-month 1))))) (org-defkey map [27 (shift right)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-month 1))))) (org-defkey map [27 (shift up)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-year 1))))) (org-defkey map [27 (shift down)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-year 1))))) (org-defkey map [(shift up)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-week 1))))) (org-defkey map [(shift down)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-week 1))))) (org-defkey map [(shift left)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-day 1))))) (org-defkey map [(shift right)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-day 1))))) (org-defkey map "!" (lambda nil (interactive) (org-eval-in-calendar (quote (diary-view-entries))) (message ""))) (org-defkey map ">" (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-scroll-left 1))))) (org-defkey map "<" (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-scroll-right 1))))) (org-defkey map "" (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-scroll-left-three-months 1))))) (org-defkey map "\366" (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-scroll-right-three-months 1))))) map)) nil [639996 643193])
-            ("org-def" variable nil nil [643195 643211])
-            ("org-defdecode" variable nil nil [643212 643234])
-            ("org-with-time" variable nil nil [643235 643257])
-            ("calendar-setup" variable nil nil [643259 643282])
-            ("org-read-date" function (:arguments ("with-time" "to-time" "from-string" "prompt" "default-time" "default-input" "inactive")) nil [643307 649940])
-            ("org-read-date-display" function nil nil [649942 651408])
-            ("org-read-date-analyze" function (:arguments ("ans" "def" "defdecode")) nil [651410 660513])
-            ("parse-time-weekdays" variable nil nil [660515 660543])
-            ("org-read-date-get-relative" function (:arguments ("s" "today" "default")) nil [660544 662084])
-            ("org-order-calendar-date-args" function (:arguments ("arg1" "arg2" "arg3")) nil [662086 662551])
-            ("org-eval-in-calendar" function (:arguments ("form" "keepdate")) nil [662553 663235])
-            ("org-calendar-select" function (:user-visible-flag t) nil [663237 663692])
-            ("org-insert-time-stamp" function (:arguments ("time" "with-hm" "inactive" "pre" "post" "extra")) nil [663694 664929])
-            ("org-toggle-time-stamp-overlays" function (:user-visible-flag t) nil [664931 665685])
-            ("org-display-custom-time" function (:arguments ("beg" "end")) nil [665687 666456])
-            ("org-fix-decoded-time" function (:arguments ("time")) nil [666458 666659])
-            ("org-time-stamp-to-now" function (:arguments ("timestamp-string" "seconds")) nil [666661 667005])
-            ("org-deadline-close-p" function (:arguments ("timestamp-string" "ndays")) nil [667007 667287])
-            ("org-get-wdays" function (:arguments ("ts" "delay" "zero-delay")) nil [667289 668237])
-            ("org-calendar-select-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [668239 668729])
-            ("org-check-deadlines" function
-               (:user-visible-flag t
-                :arguments ("ndays"))
-                nil [668731 669594])
-            ("org-re-timestamp" function (:arguments ("type")) nil [669596 670392])
-            ("org-check-before-date" function
-               (:user-visible-flag t
-                :arguments ("d"))
-                nil [670394 671087])
-            ("org-check-after-date" function
-               (:user-visible-flag t
-                :arguments ("d"))
-                nil [671089 671781])
-            ("org-check-dates-range" function
-               (:user-visible-flag t
-                :arguments ("start-date" "end-date"))
-                nil [671783 672688])
-            ("org-evaluate-time-range" function
-               (:user-visible-flag t
-                :arguments ("to-buffer"))
-                nil [672690 674988])
-            ("org-make-tdiff-string" function (:arguments ("y" "d" "h" "m")) nil [674990 675496])
-            ("org-time-string-to-time" function (:arguments ("s")) nil [675498 675634])
-            ("org-time-string-to-seconds" function (:arguments ("s")) nil [675636 675776])
-            ("org-define-error" code nil nil [675778 675850])
-            ("org-time-string-to-absolute" function (:arguments ("s" "daynr" "prefer" "buffer" "pos")) nil [675852 677104])
-            ("org-days-to-iso-week" function (:arguments ("days")) nil [677106 677236])
-            ("org-small-year-to-year" function (:arguments ("year")) nil [677238 677772])
-            ("org-time-from-absolute" function (:arguments ("d")) nil [677774 678045])
-            ("org-agenda-current-date" variable nil nil [678047 678079])
-            ("org-calendar-holiday" function nil nil [678080 678295])
-            ("org-diary-sexp-entry" function (:arguments ("sexp" "entry" "d")) nil [678297 679073])
-            ("org-diary-to-ical-string" function (:arguments ("frombuf")) nil [679075 679865])
-            ("org-closest-date" function (:arguments ("start" "current" "prefer")) nil [679867 683213])
-            ("org-date-to-gregorian" function (:arguments ("d")) nil [683215 683570])
-            ("org-parse-time-string" function (:arguments ("s" "nodefault")) nil [683572 684631])
-            ("org-timestamp-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [684633 684955])
-            ("org-timestamp-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [684957 685285])
-            ("org-timestamp-up-day" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [685287 685599])
-            ("org-timestamp-down-day" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [685601 685921])
-            ("org-at-timestamp-p" function (:arguments ("extended")) nil [685923 688432])
-            ("org-toggle-timestamp-type" function (:user-visible-flag t) nil [688434 688954])
-            ("org-at-clock-log-p" function nil nil [688956 689152])
-            ("org-clock-history" variable nil nil [689154 689180])
-            ("org-clock-adjust-closest" variable nil nil [689227 689264])
-            ("org-timestamp-change" function (:arguments ("n" "what" "updown" "suppress-tmp-delay")) nil [689300 695368])
-            ("org-modify-ts-extra" function (:arguments ("s" "pos" "n" "dm")) nil [695370 696892])
-            ("org-recenter-calendar" function (:arguments ("d")) nil [696894 697200])
-            ("org-goto-calendar" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [697202 697891])
-            ("org-get-date-from-calendar" function nil nil [697893 698086])
-            ("org-date-from-calendar" function (:user-visible-flag t) nil [698088 698510])
-            ("org-effort-durations" variable (:default-value (\` (("min" . 1) ("h" . 60) ("d" \, (* 60 8)) ("w" \, (* 60 8 5)) ("m" \, (* 60 8 5 4)) ("y" \, (* 60 8 5 40))))) nil [698512 699205])
-            ("org-image-actual-width" variable (:default-value t) nil [699207 700115])
-            ("org-agenda-inhibit-startup" variable nil nil [700117 700424])
-            ("org-agenda-ignore-properties" variable nil nil [700426 701037])
-            ("org-save-all-org-buffers" function (:user-visible-flag t) nil [701051 701354])
-            ("org-revert-all-org-buffers" function (:user-visible-flag t) nil [701356 702342])
-            ("org-switchb" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [702378 702894])
-            ("org-buffer-list" function (:arguments ("predicate" "exclude-tmp")) nil [702896 704130])
-            ("org-agenda-files" function (:arguments ("unrestricted" "archives")) nil [704132 705260])
-            ("org-agenda-file-p" function (:arguments ("file")) nil [705262 705586])
-            ("org-edit-agenda-file-list" function (:user-visible-flag t) nil [705588 706510])
-            ("org-store-new-agenda-file-list" function (:arguments ("list")) nil [706512 707173])
-            ("org-read-agenda-file-list" function (:arguments ("pair-with-expansion")) nil [707175 707893])
-            ("org-cycle-agenda-files" function (:user-visible-flag t) nil [707910 708541])
-            ("org-agenda-file-to-front" function
-               (:user-visible-flag t
-                :arguments ("to-end"))
-                nil [708543 709567])
-            ("org-remove-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [709569 710469])
-            ("org-file-menu-entry" function (:arguments ("file")) nil [710471 710546])
-            ("org-check-agenda-file" function (:arguments ("file")) nil [710548 710945])
-            ("org-get-agenda-file-buffer" function (:arguments ("file")) nil [710947 711359])
-            ("org-release-buffers" function (:arguments ("blist")) nil [711361 711832])
-            ("org-agenda-prepare-buffers" function
-               (:user-visible-flag t
-                :arguments ("files"))
-                nil [711834 714592])
-            ("org-cdlatex-mode-map" variable (:default-value (make-sparse-keymap)) nil [714621 714716])
-            ("org-defkey" code nil nil [714718 714785])
-            ("org-defkey" code nil nil [714786 714853])
-            ("org-defkey" code nil nil [714854 714912])
-            ("org-defkey" code nil nil [714913 714975])
-            ("org-defkey" code nil nil [714976 715049])
-            ("org-cdlatex-texmathp-advice-is-done" variable nil nil [715051 715171])
-            ("define-minor-mode" code nil nil [715173 716379])
-            ("turn-on-org-cdlatex" function nil nil [716381 716482])
-            ("org-try-cdlatex-tab" function nil nil [716484 717276])
-            ("org-cdlatex-underscore-caret" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [717278 717654])
-            ("org-cdlatex-math-modify" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [717656 718019])
-            ("org-cdlatex-environment-indent" function
-               (:user-visible-flag t
-                :arguments ("environment" "item"))
-                nil [718021 720039])
-            ("org-inside-LaTeX-fragment-p" function nil nil [720065 721989])
-            ("org-inside-latex-macro-p" function nil nil [721991 722191])
-            ("org--format-latex-make-overlay" function (:arguments ("beg" "end" "image" "imagetype")) nil [722193 722809])
-            ("org--list-latex-overlays" function (:arguments ("beg" "end")) nil [722811 723131])
-            ("org-remove-latex-fragment-image-overlays" function (:arguments ("beg" "end")) nil [723133 723540])
-            ("org-toggle-latex-fragment" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [723542 726218])
-            ("org-format-latex" function (:arguments ("prefix" "beg" "end" "dir" "overlays" "msg" "forbuffer" "processing-type")) nil [726220 730803])
-            ("org-create-math-formula" function
-               (:user-visible-flag t
-                :arguments ("latex-frag" "mathml-file"))
-                nil [730805 733273])
-            ("org-format-latex-as-mathml" function (:arguments ("latex-frag" "latex-frag-type" "prefix" "dir")) nil [733275 734410])
-            ("org--get-display-dpi" function nil nil [734412 734748])
-            ("org-create-formula-image" function (:arguments ("string" "tofile" "options" "buffer" "processing-type")) nil [734750 738982])
-            ("org-splice-latex-header" function (:arguments ("tpl" "def-pkg" "pkg" "snippets-p" "extra")) nil [738984 740804])
-            ("org-latex-packages-to-string" function (:arguments ("pkg" "snippets-p" "newline")) nil [740806 741330])
-            ("org-dvipng-color" function (:arguments ("attr")) nil [741332 741475])
-            ("org-dvipng-color-format" function (:arguments ("color-name")) nil [741477 741672])
-            ("org-latex-color" function (:arguments ("attr")) nil [741674 741818])
-            ("org-latex-color-format" function (:arguments ("color-name")) nil [741820 741999])
-            ("org-normalize-color" function (:arguments ("value")) nil [742001 742136])
-            ("defvar-local" code nil nil [742159 742203])
-            ("org-toggle-inline-images" function
-               (:user-visible-flag t
-                :arguments ("include-linked"))
-                nil [742205 742810])
-            ("org-redisplay-inline-images" function (:user-visible-flag t) nil [742812 743042])
-            ("org-display-inline-images" function
-               (:user-visible-flag t
-                :arguments ("include-linked" "refresh" "beg" "end"))
-                nil [743044 747014])
-            ("org-display-inline-remove-overlay" function (:arguments ("ov" "after" "_beg" "_end" "_len")) nil [747016 747303])
-            ("org-remove-inline-images" function (:user-visible-flag t) nil [747305 747484])
-            ("org-remap" function (:arguments ("map" "commands")) nil [747505 747794])
-            ("define-key" code nil nil [747880 747952])
-            ("define-key" code nil nil [747953 748025])
-            ("define-key" code nil nil [748026 748120])
-            ("define-key" code nil nil [748121 748217])
-            ("define-key" code nil nil [748218 748307])
-            ("define-key" code nil nil [748308 748378])
-            ("define-key" code nil nil [748379 748447])
-            ("define-key" code nil nil [748448 748520])
-            ("define-key" code nil nil [748521 748611])
-            ("define-key" code nil nil [748612 748710])
-            ("define-key" code nil nil [748711 748777])
-            ("org-defkey" code nil nil [750453 750510])
-            ("org-defkey" code nil nil [750538 750587])
-            ("org-defkey" code nil nil [750588 750637])
-            ("org-defkey" code nil nil [750638 750705])
-            ("org-defkey" code nil nil [750706 750751])
-            ("org-defkey" code nil nil [750809 750865])
-            ("org-defkey" code nil nil [750866 750922])
-            ("define-key" code nil nil [750923 750972])
-            ("org-defkey" code nil nil [750974 751039])
-            ("org-defkey" code nil nil [751040 751112])
-            ("org-defkey" code nil nil [751113 751170])
-            ("org-defkey" code nil nil [751202 751256])
-            ("org-defkey" code nil nil [751257 751312])
-            ("org-defkey" code nil nil [751313 751365])
-            ("org-defkey" code nil nil [751366 751420])
-            ("org-defkey" code nil nil [751422 751506])
-            ("org-defkey" code nil nil [751507 751590])
-            ("org-defkey" code nil nil [751591 751657])
-            ("org-defkey" code nil nil [751658 751725])
-            ("org-defkey" code nil nil [751726 751790])
-            ("org-defkey" code nil nil [751791 751857])
-            ("org-defkey" code nil nil [751859 751919])
-            ("org-defkey" code nil nil [751920 751982])
-            ("org-defkey" code nil nil [751983 752045])
-            ("org-defkey" code nil nil [752046 752109])
-            ("org-defkey" code nil nil [752111 752183])
-            ("org-defkey" code nil nil [752184 752255])
-            ("org-defkey" code nil nil [752256 752322])
-            ("org-defkey" code nil nil [752323 752394])
-            ("define-key" code nil nil [752410 752470])
-            ("dolist" code nil nil [752471 752560])
-            ("when" code nil nil [752693 754472])
-            ("org-remap" code nil nil [754496 754656])
-            ("org-defkey" code nil nil [754657 754709])
-            ("org-defkey" code nil nil [754711 754765])
-            ("org-defkey" code nil nil [754794 754842])
-            ("if" code nil nil [754843 754983])
-            ("if" code nil nil [754984 755120])
-            ("if" code nil nil [755121 755261])
-            ("org-defkey" code nil nil [755262 755321])
-            ("org-defkey" code nil nil [755322 755379])
-            ("org-defkey" code nil nil [755380 755438])
-            ("org-defkey" code nil nil [755439 755491])
-            ("org-defkey" code nil nil [755492 755546])
-            ("org-defkey" code nil nil [755547 755615])
-            ("org-defkey" code nil nil [755616 755685])
-            ("org-defkey" code nil nil [755686 755738])
-            ("org-defkey" code nil nil [755739 755795])
-            ("org-defkey" code nil nil [755796 755853])
-            ("org-defkey" code nil nil [755854 755915])
-            ("org-defkey" code nil nil [755916 755985])
-            ("org-defkey" code nil nil [755986 756042])
-            ("org-defkey" code nil nil [756043 756104])
-            ("org-defkey" code nil nil [756105 756174])
-            ("org-defkey" code nil nil [756175 756241])
-            ("org-defkey" code nil nil [756242 756303])
-            ("org-defkey" code nil nil [756304 756350])
-            ("org-defkey" code nil nil [756351 756397])
-            ("org-defkey" code nil nil [756398 756456])
-            ("org-defkey" code nil nil [756457 756507])
-            ("org-defkey" code nil nil [756508 756558])
-            ("org-defkey" code nil nil [756559 756615])
-            ("org-defkey" code nil nil [756616 756664])
-            ("org-defkey" code nil nil [756665 756711])
-            ("org-defkey" code nil nil [756712 756765])
-            ("org-defkey" code nil nil [756790 756849])
-            ("org-defkey" code nil nil [756868 756920])
-            ("org-defkey" code nil nil [756921 756993])
-            ("org-defkey" code nil nil [756994 757049])
-            ("org-defkey" code nil nil [757050 757130])
-            ("org-defkey" code nil nil [757131 757222])
-            ("org-defkey" code nil nil [757223 757278])
-            ("org-defkey" code nil nil [757279 757338])
-            ("org-defkey" code nil nil [757339 757392])
-            ("org-defkey" code nil nil [757393 757458])
-            ("org-defkey" code nil nil [757459 757520])
-            ("org-defkey" code nil nil [757521 757576])
-            ("org-defkey" code nil nil [757577 757633])
-            ("org-defkey" code nil nil [757634 757690])
-            ("org-defkey" code nil nil [757691 757741])
-            ("org-defkey" code nil nil [757765 757817])
-            ("org-defkey" code nil nil [757841 757902])
-            ("org-defkey" code nil nil [757919 757969])
-            ("org-defkey" code nil nil [757995 758056])
-            ("org-defkey" code nil nil [758057 758112])
-            ("org-defkey" code nil nil [758113 758173])
-            ("org-defkey" code nil nil [758174 758242])
-            ("org-defkey" code nil nil [758243 758312])
-            ("org-defkey" code nil nil [758313 758375])
-            ("org-defkey" code nil nil [758376 758429])
-            ("org-defkey" code nil nil [758430 758500])
-            ("org-defkey" code nil nil [758501 758574])
-            ("org-defkey" code nil nil [758575 758629])
-            ("org-defkey" code nil nil [758630 758683])
-            ("org-defkey" code nil nil [758684 758730])
-            ("org-defkey" code nil nil [758731 758786])
-            ("org-defkey" code nil nil [758787 758855])
-            ("org-defkey" code nil nil [758856 758923])
-            ("org-defkey" code nil nil [758924 758982])
-            ("org-defkey" code nil nil [758983 759047])
-            ("org-defkey" code nil nil [759048 759122])
-            ("org-defkey" code nil nil [759123 759199])
-            ("org-defkey" code nil nil [759200 759260])
-            ("org-defkey" code nil nil [759261 759309])
-            ("org-defkey" code nil nil [759310 759365])
-            ("org-defkey" code nil nil [759366 759424])
-            ("org-defkey" code nil nil [759425 759484])
-            ("org-defkey" code nil nil [759485 759536])
-            ("org-defkey" code nil nil [759537 759597])
-            ("org-defkey" code nil nil [759598 759652])
-            ("org-defkey" code nil nil [759653 759711])
-            ("org-defkey" code nil nil [759712 759767])
-            ("org-defkey" code nil nil [759768 759822])
-            ("org-defkey" code nil nil [759823 759900])
-            ("org-defkey" code nil nil [759901 759972])
-            ("org-defkey" code nil nil [759973 760041])
-            ("org-defkey" code nil nil [760042 760090])
-            ("org-defkey" code nil nil [760091 760165])
-            ("org-defkey" code nil nil [760166 760237])
-            ("org-defkey" code nil nil [760238 760295])
-            ("org-defkey" code nil nil [760296 760356])
-            ("org-defkey" code nil nil [760357 760412])
-            ("org-defkey" code nil nil [760413 760474])
-            ("org-defkey" code nil nil [760475 760536])
-            ("org-defkey" code nil nil [760537 760598])
-            ("org-defkey" code nil nil [760599 760650])
-            ("org-defkey" code nil nil [760651 760701])
-            ("org-defkey" code nil nil [760702 760771])
-            ("org-defkey" code nil nil [760855 760912])
-            ("org-defkey" code nil nil [760913 760971])
-            ("org-defkey" code nil nil [760972 761031])
-            ("org-defkey" code nil nil [761033 761105])
-            ("org-defkey" code nil nil [761106 761160])
-            ("org-defkey" code nil nil [761161 761220])
-            ("org-defkey" code nil nil [761221 761281])
-            ("org-defkey" code nil nil [761282 761337])
-            ("org-defkey" code nil nil [761338 761394])
-            ("org-defkey" code nil nil [761395 761453])
-            ("org-defkey" code nil nil [761454 761513])
-            ("org-defkey" code nil nil [761514 761572])
-            ("org-defkey" code nil nil [761573 761632])
-            ("org-defkey" code nil nil [761633 761700])
-            ("org-defkey" code nil nil [761701 761767])
-            ("org-defkey" code nil nil [761768 761840])
-            ("org-defkey" code nil nil [761841 761909])
-            ("org-defkey" code nil nil [761910 761971])
-            ("org-defkey" code nil nil [761972 762030])
-            ("org-defkey" code nil nil [762031 762099])
-            ("org-defkey" code nil nil [762100 762156])
-            ("org-defkey" code nil nil [762157 762213])
-            ("org-defkey" code nil nil [762214 762283])
-            ("org-defkey" code nil nil [762284 762351])
-            ("org-defkey" code nil nil [762352 762430])
-            ("org-defkey" code nil nil [762432 762483])
-            ("org-defkey" code nil nil [762484 762540])
-            ("org-defkey" code nil nil [762541 762598])
-            ("org-defkey" code nil nil [762599 762655])
-            ("org-defkey" code nil nil [762656 762725])
-            ("define-key" code nil nil [762727 762780])
-            ("define-key" code nil nil [762782 762831])
-            ("define-key" code nil nil [762833 762891])
-            ("define-key" code nil nil [762892 762950])
-            ("define-key" code nil nil [762952 763010])
-            ("org-speed-commands-default" variable
-               (:constant-flag t
-                :default-value (quote (("Outline Navigation") ("n" org-speed-move-safe (quote org-next-visible-heading)) ("p" org-speed-move-safe (quote org-previous-visible-heading)) ("f" org-speed-move-safe (quote org-forward-heading-same-level)) ("b" org-speed-move-safe (quote org-backward-heading-same-level)) ("F" . org-next-block) ("B" . org-previous-block) ("u" org-speed-move-safe (quote outline-up-heading)) ("j" . org-goto) ("g" org-refile t) ("Outline Visibility") ("c" . org-cycle) ("C" . org-shifttab) (" " . org-display-outline-path) ("s" . org-narrow-to-subtree) ("=" . org-columns) ("Outline Structure Editing") ("U" . org-metaup) ("D" . org-metadown) ("r" . org-metaright) ("l" . org-metaleft) ("R" . org-shiftmetaright) ("L" . org-shiftmetaleft) ("i" progn (forward-char 1) (call-interactively (quote org-insert-heading-respect-content))) ("^" . org-sort) ("w" . org-refile) ("a" . org-archive-subtree-default-with-confirmation) ("@" . org-mark-subtree) ("#" . org-toggle-comment) ("Clock Commands") ("I" . org-clock-in) ("O" . org-clock-out) ("Meta Data Editing") ("t" . org-todo) ("," org-priority) ("0" org-priority 32) ("1" org-priority 65) ("2" org-priority 66) ("3" org-priority 67) (":" . org-set-tags-command) ("e" . org-set-effort) ("E" . org-inc-effort) ("W" lambda (m) (interactive "sMinutes before warning: ") (org-entry-put (point) "APPT_WARNTIME" m)) ("Agenda Views etc") ("v" . org-agenda) ("/" . org-sparse-tree) ("Misc") ("o" . org-open-at-point) ("?" . org-speed-command-help) ("<" org-agenda-set-restriction-lock (quote subtree)) (">" org-agenda-remove-restriction-lock))))
-                nil [763013 764892])
-            ("org-print-speed-command" function (:arguments ("e")) nil [764894 765210])
-            ("org-speed-command-help" function (:user-visible-flag t) nil [765212 765823])
-            ("org-speed-move-safe" function
-               (:user-visible-flag t
-                :arguments ("cmd"))
-                nil [765825 766187])
-            ("org-self-insert-command-undo-counter" variable nil nil [766189 766236])
-            ("org-table-auto-blank-field" variable nil nil [766238 766273])
-            ("org-speed-command" variable nil nil [766300 766330])
-            ("org-speed-command-activate" function (:arguments ("keys")) nil [766332 766778])
-            ("org-babel-speed-command-activate" function (:arguments ("keys")) nil [766780 766994])
-            ("org-speed-command-hook" variable (:default-value (quote (org-speed-command-activate org-babel-speed-command-activate))) nil [766996 767716])
-            ("org-self-insert-command" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [767718 770108])
-            ("org-check-before-invisible-edit" function (:arguments ("kind")) nil [770110 773156])
-            ("org-fix-tags-on-the-fly" function nil nil [773158 773481])
-            ("org-delete-backward-char" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [773483 774614])
-            ("org-delete-char" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [774616 775673])
-            ("put" code nil nil [775742 775903])
-            ("put" code nil nil [775904 776068])
-            ("put" code nil nil [776069 776120])
-            ("put" code nil nil [776121 776181])
-            ("put" code nil nil [776182 776221])
-            ("put" code nil nil [776273 776323])
-            ("put" code nil nil [776324 776377])
-            ("put" code nil nil [776378 776420])
-            ("put" code nil nil [776421 776472])
-            ("put" code nil nil [776526 776588])
-            ("put" code nil nil [776589 776654])
-            ("org-transpose-words" function (:user-visible-flag t) nil [776656 776973])
-            ("org-remap" code nil nil [776974 777036])
-            ("org-ctrl-c-ctrl-c-hook" variable nil nil [777038 777591])
-            ("org-ctrl-c-ctrl-c-final-hook" variable nil nil [777593 778147])
-            ("org-tab-first-hook" variable nil nil [778149 778618])
-            ("org-tab-after-check-for-table-hook" variable nil nil [778620 779034])
-            ("org-tab-after-check-for-cycling-hook" variable nil nil [779036 779396])
-            ("org-tab-before-tab-emulation-hook" variable nil nil [779398 779670])
-            ("org-metaleft-hook" variable nil nil [779672 779810])
-            ("org-metaright-hook" variable nil nil [779811 779951])
-            ("org-metaup-hook" variable nil nil [779952 780086])
-            ("org-metadown-hook" variable nil nil [780087 780225])
-            ("org-shiftmetaleft-hook" variable nil nil [780226 780371])
-            ("org-shiftmetaright-hook" variable nil nil [780372 780519])
-            ("org-shiftmetaup-hook" variable nil nil [780520 780661])
-            ("org-shiftmetadown-hook" variable nil nil [780662 780807])
-            ("org-metareturn-hook" variable nil nil [780808 780947])
-            ("org-shiftup-hook" variable nil nil [780948 781083])
-            ("org-shiftup-final-hook" variable nil nil [781084 781303])
-            ("org-shiftdown-hook" variable nil nil [781304 781443])
-            ("org-shiftdown-final-hook" variable nil nil [781444 781667])
-            ("org-shiftleft-hook" variable nil nil [781668 781807])
-            ("org-shiftleft-final-hook" variable nil nil [781808 782031])
-            ("org-shiftright-hook" variable nil nil [782032 782173])
-            ("org-shiftright-final-hook" variable nil nil [782174 782399])
-            ("org-modifier-cursor-error" function nil nil [782401 782604])
-            ("org-shiftselect-error" function nil nil [782606 782962])
-            ("org-call-for-shift-select" function (:arguments ("cmd")) nil [782964 783081])
-            ("org-shifttab" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [783083 783755])
-            ("org-shiftmetaleft" function (:user-visible-flag t) nil [783757 784424])
-            ("org-shiftmetaright" function (:user-visible-flag t) nil [784426 785090])
-            ("org-shiftmetaup" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [785092 785689])
-            ("org-shiftmetadown" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [785691 786320])
-            ("org-hidden-tree-error" function nil nil [786322 786449])
-            ("org-metaleft" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [786451 787697])
-            ("org-metaright" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [787699 789161])
-            ("org-check-for-hidden" function (:arguments ("what")) nil [789163 790117])
-            ("org-metaup" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [790119 790996])
-            ("org-metadown" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [790998 791887])
-            ("org-shiftup" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [791889 792938])
-            ("org-shiftdown" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [792940 793986])
-            ("org-shiftright" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [793988 795583])
-            ("org-shiftleft" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [795585 797197])
-            ("org-shiftcontrolright" function (:user-visible-flag t) nil [797199 797615])
-            ("org-shiftcontrolleft" function (:user-visible-flag t) nil [797617 798042])
-            ("org-shiftcontrolup" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [798044 798385])
-            ("org-shiftcontroldown" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [798387 798734])
-            ("org-increase-number-at-point" function
-               (:user-visible-flag t
-                :arguments ("inc"))
-                nil [798736 799426])
-            ("org-decrease-number-at-point" function
-               (:user-visible-flag t
-                :arguments ("inc"))
-                nil [799428 799665])
-            ("org-ctrl-c-ret" function (:user-visible-flag t) nil [799667 799911])
-            ("org-find-visible" function nil nil [799913 800076])
-            ("org-find-invisible" function nil nil [800077 800248])
-            ("org-copy-visible" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [800250 800688])
-            ("org-copy-special" function (:user-visible-flag t) nil [800690 801000])
-            ("org-cut-special" function (:user-visible-flag t) nil [801002 801305])
-            ("org-paste-special" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [801307 801650])
-            ("org-edit-special" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [801652 804544])
-            ("org-table-coordinate-overlays" variable nil nil [804546 804584])
-            ("org-ctrl-c-ctrl-c" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [804611 814180])
-            ("org-mode-restart" function nil nil [814182 814502])
-            ("org-kill-note-or-show-branches" function (:user-visible-flag t) nil [814504 814923])
-            ("org-delete-indentation" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [814925 816099])
-            ("org-open-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [816101 816495])
-            ("org-return" function
-               (:user-visible-flag t
-                :arguments ("indent"))
-                nil [816497 819611])
-            ("org-return-indent" function (:user-visible-flag t) nil [819613 819855])
-            ("org-ctrl-c-star" function (:user-visible-flag t) nil [819857 820210])
-            ("org-ctrl-c-minus" function (:user-visible-flag t) nil [820212 820753])
-            ("org-toggle-heading" function
-               (:user-visible-flag t
-                :arguments ("nstars"))
-                nil [820755 824430])
-            ("org-meta-return" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [824432 824999])
-            ("org-in-subtree-not-table-p" function nil nil [825019 825176])
-            ("easy-menu-define" code nil nil [825207 828175])
-            ("easy-menu-define" code nil nil [828177 836730])
-            ("org-info" function
-               (:user-visible-flag t
-                :arguments ("node"))
-                nil [836732 836919])
-            ("org-submit-bug-report" function (:user-visible-flag t) nil [836936 839360])
-            ("org-install-agenda-files-menu" function nil nil [839363 840089])
-            ("org-require-autoloaded-modules" function nil nil [840111 840281])
-            ("org-reload" function
-               (:user-visible-flag t
-                :arguments ("uncompiled"))
-                nil [840298 842154])
-            ("org-customize" function (:user-visible-flag t) nil [842171 842353])
-            ("org-create-customize-menu" function (:user-visible-flag t) nil [842355 843060])
-            ("org-get-at-eol" function (:arguments ("property" "n")) nil [843120 843276])
-            ("org-find-text-property-in-string" function (:arguments ("prop" "s")) nil [843278 843511])
-            ("org-display-warning" function (:arguments ("message")) nil [843513 843636])
-            ("org-eval" function (:arguments ("form")) nil [843638 843781])
-            ("org-in-clocktable-p" function nil nil [843783 844129])
-            ("org-in-verbatim-emphasis" function nil nil [844131 844294])
-            ("org-overlay-display" function (:arguments ("ovl" "text" "face" "evap")) nil [844296 844522])
-            ("org-overlay-before-string" function (:arguments ("ovl" "text" "face" "evap")) nil [844524 844769])
-            ("org-find-overlays" function (:arguments ("prop" "pos" "delete")) nil [844771 845101])
-            ("org-goto-marker-or-bmk" function (:arguments ("marker" "bookmark")) nil [845103 845592])
-            ("org-quote-csv-field" function (:arguments ("s")) nil [845594 845786])
-            ("org-force-self-insert" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [845788 845918])
-            ("org-shorten-string" function (:arguments ("s" "maxlength")) nil [845920 846738])
-            ("org-get-indentation" function (:arguments ("line")) nil [846740 847114])
-            ("org-get-string-indentation" function (:arguments ("s")) nil [847116 847474])
-            ("org-remove-tabs" function (:arguments ("s" "width")) nil [847476 847836])
-            ("org-fix-indentation" function (:arguments ("line" "ind")) nil [847838 848299])
-            ("org-remove-indentation" function (:arguments ("code" "n")) nil [848301 848608])
-            ("org-do-remove-indentation" function (:arguments ("n")) nil [848610 849603])
-            ("org-fill-template" function (:arguments ("template" "alist")) nil [849605 850016])
-            ("org-base-buffer" function (:arguments ("buffer")) nil [850018 850206])
-            ("org-wrap" function (:arguments ("string" "width" "lines")) nil [850208 851144])
-            ("org-do-wrap" function (:arguments ("words" "width")) nil [851146 851502])
-            ("org-quote-vert" function (:arguments ("s")) nil [851504 851644])
-            ("org-uuidgen-p" function (:arguments ("s")) nil [851646 851825])
-            ("org-in-src-block-p" function (:arguments ("inside")) nil [851827 852255])
-            ("org-context" function nil nil [852257 856803])
-            ("org-in-regexp" function (:arguments ("regexp" "nlines" "visually")) nil [856805 857688])
-            ("org-between-regexps-p" function (:arguments ("start-re" "end-re" "lim-up" "lim-down")) nil [857690 858923])
-            ("org-in-block-p" function (:arguments ("names")) nil [858925 859634])
-            ("org-occur-in-agenda-files" function
-               (:user-visible-flag t
-                :arguments ("regexp" "_nlines"))
-                nil [859636 860522])
-            ("add-hook" code nil nil [860524 860629])
-            ("org-occur-link-in-agenda-files" function (:user-visible-flag t) nil [860631 860988])
-            ("org-reverse-string" function (:arguments ("string")) nil [860990 861111])
-            ("org-uniquify-alist" function (:arguments ("alist")) nil [861172 861665])
-            ("org-delete-all" function (:arguments ("elts" "list")) nil [861667 861928])
-            ("org-back-over-empty-lines" function nil nil [861930 862332])
-            ("org-skip-whitespace" function nil nil [862334 862397])
-            ("org-point-in-group" function (:arguments ("point" "group" "context")) nil [862399 862853])
-            ("org-switch-to-buffer-other-window" function (:arguments ("args")) nil [862855 863113])
-            ("org-combine-plists" function (:arguments ("plists")) nil [863115 863600])
-            ("org-replace-escapes" function (:arguments ("string" "table")) nil [863602 864880])
-            ("org-find-base-buffer-visiting" function (:arguments ("file")) nil [864882 865153])
-            ("org-file-image-p" function (:arguments ("file")) nil [865265 865405])
-            ("org-get-cursor-date" function (:arguments ("with-time")) nil [865407 866555])
-            ("org-mark-subtree" function
-               (:user-visible-flag t
-                :arguments ("up"))
-                nil [866557 867197])
-            ("org-file-newer-than-p" function (:arguments ("file" "time")) nil [867199 867733])
-            ("org-compile-file" function (:arguments ("source" "process" "ext" "err-msg" "log-buf" "spec")) nil [867735 870174])
-            ("org-element-greater-elements" variable nil nil [870193 870230])
-            ("org--get-expected-indentation" function (:arguments ("element" "contentsp")) nil [870231 874415])
-            ("org--align-node-property" function nil nil [874417 874779])
-            ("org-indent-line" function (:user-visible-flag t) nil [874781 878069])
-            ("org-indent-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [878071 882890])
-            ("org-indent-drawer" function (:user-visible-flag t) nil [882892 883415])
-            ("org-indent-block" function (:user-visible-flag t) nil [883417 884093])
-            ("org-setup-filling" function nil nil [884679 885545])
-            ("org-fill-line-break-nobreak-p" function nil nil [885547 885787])
-            ("org-fill-paragraph-with-timestamp-nobreak-p" function nil nil [885789 885984])
-            ("org-fill-n-macro-as-item-nobreak-p" function nil nil [885986 886285])
-            ("declare-function" code nil nil [886287 886336])
-            ("orgtbl-line-start-regexp" variable nil nil [886337 886370])
-            ("org-adaptive-fill-function" function nil nil [886391 888949])
-            ("declare-function" code nil nil [888951 889000])
-            ("message-cite-prefix-regexp" variable nil nil [889001 889036])
-            ("org-fill-element" function (:arguments ("justify")) nil [889056 893690])
-            ("org-fill-paragraph" function
-               (:user-visible-flag t
-                :arguments ("justify" "region"))
-                nil [893692 895625])
-            ("org-remap" code nil nil [895626 895686])
-            ("org-auto-fill-function" function nil nil [895688 896114])
-            ("org-comment-line-break-function" function (:arguments ("soft")) nil [896116 896577])
-            ("org-toggle-fixed-width" function (:user-visible-flag t) nil [896603 901687])
-            ("org-setup-comments-handling" function nil nil [902444 902840])
-            ("org-insert-comment" function nil nil [902842 903660])
-            ("comment-empty-lines" variable nil nil [903662 903690])
-            ("org-comment-or-uncomment-region" function (:arguments ("beg" "end" "_")) nil [903714 906382])
-            ("org-comment-dwim" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [906384 906637])
-            ("org-timestamp--to-internal-time" function (:arguments ("timestamp" "end")) nil [906772 907204])
-            ("org-timestamp-has-time-p" function (:arguments ("timestamp")) nil [907206 907346])
-            ("org-timestamp-format" function (:arguments ("timestamp" "format" "end" "utc")) nil [907348 907794])
-            ("org-timestamp-split-range" function (:arguments ("timestamp" "end")) nil [907796 908987])
-            ("org-timestamp-translate" function (:arguments ("timestamp" "boundary")) nil [908989 909999])
-            ("reftex-docstruct-symbol" variable nil nil [910021 910053])
-            ("org--rds" variable nil nil [910054 910071])
-            ("org-reftex-citation" function (:user-visible-flag t) nil [910073 911061])
-            ("org-beginning-of-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [911111 913576])
-            ("org-end-of-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [913578 915556])
-            ("define-key" code nil nil [915558 915613])
-            ("define-key" code nil nil [915614 915663])
-            ("org-backward-sentence" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [915665 916464])
-            ("org-forward-sentence" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [916466 917745])
-            ("define-key" code nil nil [917747 917802])
-            ("define-key" code nil nil [917803 917857])
-            ("org-kill-line" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [917859 918618])
-            ("define-key" code nil nil [918620 918667])
-            ("org-yank" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [918669 919951])
-            ("org-yank-generic" function (:arguments ("command" "arg")) nil [919953 921707])
-            ("org-yank-folding-would-swallow-text" function (:arguments ("beg" "end")) nil [921709 922226])
-            ("define-key" code nil nil [922228 922270])
-            ("org-truely-invisible-p" function nil nil [922272 922512])
-            ("org-invisible-p2" function nil nil [922514 922821])
-            ("org-back-to-heading" function (:arguments ("invisible-ok")) nil [922823 923116])
-            ("org-before-first-heading-p" function nil nil [923118 923279])
-            ("org-at-heading-p" function (:arguments ("ignored")) nil [923281 923352])
-            ("org-in-commented-heading-p" function (:arguments ("no-inheritance")) nil [923354 923936])
-            ("org-at-comment-p" function nil nil [923938 924099])
-            ("org-at-drawer-p" function nil nil [924101 924248])
-            ("org-at-block-p" function nil nil [924250 924394])
-            ("org-point-at-end-of-empty-headline" function nil nil [924396 924795])
-            ("org-at-heading-or-item-p" function nil nil [924797 924874])
-            ("org-at-target-p" function nil nil [924876 924989])
-            ("defalias" code nil nil [925040 925084])
-            ("org-up-heading-all" function (:arguments ("arg")) nil [925086 925320])
-            ("org-up-heading-safe" function nil nil [925322 925978])
-            ("org-first-sibling-p" function (:user-visible-flag t) nil [925980 926358])
-            ("org-goto-sibling" function (:arguments ("previous")) nil [926360 927090])
-            ("org-show-siblings" function nil nil [927092 927329])
-            ("org-goto-first-child" function nil nil [927331 927795])
-            ("org-show-hidden-entry" function nil nil [927797 927921])
-            ("org-flag-heading" function (:arguments ("flag" "entry")) nil [927923 928427])
-            ("org-get-next-sibling" function nil nil [928429 928865])
-            ("org-get-last-sibling" function nil nil [928867 929322])
-            ("org-end-of-subtree" function (:arguments ("invisible-ok" "to-heading")) nil [929324 930779])
-            ("org-end-of-meta-data" function (:arguments ("full")) nil [930781 931624])
-            ("org-forward-heading-same-level" function
-               (:user-visible-flag t
-                :arguments ("arg" "invisible-ok"))
-                nil [931626 932792])
-            ("org-backward-heading-same-level" function
-               (:user-visible-flag t
-                :arguments ("arg" "invisible-ok"))
-                nil [932794 933082])
-            ("org-next-visible-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [933084 933416])
-            ("org-previous-visible-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [933418 933766])
-            ("org-next-block" function
-               (:user-visible-flag t
-                :arguments ("arg" "backward" "block-regexp"))
-                nil [933768 935212])
-            ("org-previous-block" function
-               (:user-visible-flag t
-                :arguments ("arg" "block-regexp"))
-                nil [935214 935487])
-            ("org-forward-paragraph" function (:user-visible-flag t) nil [935489 939018])
-            ("org-backward-paragraph" function (:user-visible-flag t) nil [939020 941908])
-            ("org-forward-element" function (:user-visible-flag t) nil [941910 942702])
-            ("org-backward-element" function (:user-visible-flag t) nil [942704 943984])
-            ("org-up-element" function (:user-visible-flag t) nil [943986 944495])
-            ("org-down-element" function (:user-visible-flag t) nil [944497 945116])
-            ("org-drag-element-backward" function (:user-visible-flag t) nil [945118 946357])
-            ("org-drag-element-forward" function (:user-visible-flag t) nil [946359 947795])
-            ("org-drag-line-forward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [947797 948142])
-            ("org-drag-line-backward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [948144 948281])
-            ("org-mark-element" function (:user-visible-flag t) nil [948283 948991])
-            ("org-narrow-to-element" function (:user-visible-flag t) nil [948993 949565])
-            ("org-transpose-element" function (:user-visible-flag t) nil [949567 949868])
-            ("org-unindent-buffer" function (:user-visible-flag t) nil [949870 950679])
-            ("org-show-children" function
-               (:user-visible-flag t
-                :arguments ("level"))
-                nil [950681 952195])
-            ("org-show-subtree" function (:user-visible-flag t) nil [952197 952389])
-            ("org-show-entry" function (:user-visible-flag t) nil [952391 952874])
-            ("org-make-options-regexp" function (:arguments ("kwds" "extra")) nil [952876 953216])
-            ("defvar-local" code nil nil [953289 953366])
-            ("org-imenu-new-marker" function (:arguments ("pos")) nil [953368 953581])
-            ("org-imenu-get-tree" function nil nil [953583 954581])
-            ("eval-after-load" code nil nil [954583 954749])
-            ("org-link-display-format" function (:arguments ("s")) nil [954751 955103])
-            ("org-toggle-link-display" function (:user-visible-flag t) nil [955105 955485])
-            ("org-speedbar-restriction-lock-overlay" variable (:default-value (make-overlay 1 1)) nil [955508 955634])
-            ("overlay-put" code nil nil [955635 955727])
-            ("overlay-put" code nil nil [955728 955842])
-            ("delete-overlay" code nil nil [955843 955897])
-            ("org-speedbar-set-agenda-restriction" function (:user-visible-flag t) nil [955899 957265])
-            ("speedbar-file-key-map" variable nil nil [957267 957297])
-            ("declare-function" code nil nil [957298 957372])
-            ("eval-after-load" code nil nil [957373 957923])
-            ("org--flyspell-object-check-p" function (:arguments ("element")) nil [957979 958823])
-            ("org-mode-flyspell-verify" function nil nil [958825 961207])
-            ("put" code nil nil [961208 961274])
-            ("org-remove-flyspell-overlays-in" function (:arguments ("beg" "end")) nil [961276 961505])
-            ("flyspell-delayed-commands" variable nil nil [961507 961541])
-            ("eval-after-load" code nil nil [961542 961639])
-            ("eval-after-load" code nil nil [961707 962052])
-            ("eval-after-load" code nil nil [962113 962283])
-            ("eval-after-load" code nil nil [962338 962577])
-            ("org-bookmark-jump-unhide" function nil nil [962579 962872])
-            ("org-mark-jump-unhide" function nil nil [962874 963083])
-            ("eval-after-load" code nil nil [963085 963263])
-            ("eval-after-load" code nil nil [963265 963447])
-            ("eval-after-load" code nil nil [963449 963623])
-            ("session-globals-exclude" variable nil nil [963673 963705])
-            ("eval-after-load" code nil nil [963706 963790])
-            ("org" package nil nil [963808 963822])
-            ("run-hooks" code nil nil [963824 963850]))          
-      :file "org.el"
-      :pointmax 963873
-      :fsize 963872
-      :lastmodtime '(23525 29592 0 0)
-      :unmatched-syntax '((close-paren 22022 . 22023) (symbol 21800 . 21816) (open-paren 21799 . 21800) (close-paren 3094 . 3095) (symbol 3057 . 3074) (open-paren 3056 . 3057)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-with-gensyms" function (:arguments ("symbols" "body")) nil [1299 1516])
-            ("org-string-nw-p" function (:arguments ("s")) nil [1518 1700])
-            ("org-split-string" function (:arguments ("string" "separators")) nil [1702 2299])
-            ("org-string-display" function (:arguments ("string")) nil [2301 4672])
-            ("org-string-width" function (:arguments ("string")) nil [4674 4922])
-            ("org-not-nil" function (:arguments ("v")) nil [4924 5069])
-            ("org-preserve-lc" function (:arguments ("body")) nil [5071 5332])
-            ("org-unmodified" function (:arguments ("body")) nil [5458 5829])
-            ("org-without-partial-completion" function (:arguments ("body")) nil [5831 6155])
-            ("org-with-point-at" function (:arguments ("pom" "body")) nil [6157 6528])
-            ("org-with-remote-undo" function (:arguments ("buffer" "body")) nil [6530 7515])
-            ("org-no-read-only" function (:arguments ("body")) nil [7517 7656])
-            ("org-rm-props" variable
-               (:constant-flag t
-                :default-value (quote (invisible t face t keymap t intangible t mouse-face t rear-nonsticky t mouse-map t fontified t org-emphasis t)))
-                nil [7658 7877])
-            ("org-no-properties" function (:arguments ("s" "restricted")) nil [7879 8179])
-            ("org-get-alist-option" function (:arguments ("option" "key")) nil [8181 8397])
-            ("org-check-external-command" function (:arguments ("cmd" "use" "no-error")) nil [8399 8912])
-            ("org-last" function (:arguments ("list")) nil [8914 8997])
-            ("org-let" function (:arguments ("list" "body")) nil [8999 9070])
-            ("put" code nil nil [9071 9109])
-            ("org-let2" function (:arguments ("list1" "list2" "body")) nil [9111 9223])
-            ("put" code nil nil [9224 9263])
-            ("org-call-with-arg" function (:arguments ("command" "arg")) nil [9265 9435])
-            ("org-current-line" function (:arguments ("pos")) nil [9437 9652])
-            ("org-goto-line" function (:arguments ("N")) nil [9654 9769])
-            ("org-current-line-string" function (:arguments ("to-here")) nil [9771 9897])
-            ("org-pos-in-match-range" function (:arguments ("pos" "n")) nil [9899 10034])
-            ("org-match-line" function (:arguments ("regexp")) nil [10036 10189])
-            ("org-plist-delete" function (:arguments ("plist" "property")) nil [10191 10474])
-            ("org-save-outline-visibility" function (:arguments ("use-markers" "body")) nil [10476 11223])
-            ("org-with-wide-buffer" function (:arguments ("body")) nil [11225 11425])
-            ("org-with-limited-levels" function (:arguments ("body")) nil [11427 11958])
-            ("org-outline-regexp" variable nil nil [11960 11987])
-            ("org-odd-levels-only" variable nil nil [12008 12036])
-            ("org-inlinetask-min-level" variable nil nil [12057 12090])
-            ("org-get-limited-outline-regexp" function nil nil [12122 12583])
-            ("org-eval-in-environment" function (:arguments ("environment" "form")) nil [12585 12723])
-            ("org-make-parameter-alist" function (:arguments ("flat")) nil [12725 13039])
-            ("org-load-noerror-mustsuffix" function (:arguments ("file")) nil [13056 13208])
-            ("org-unbracket-string" function (:arguments ("pre" "post" "string")) nil [13210 13527])
-            ("org-read-function" function (:arguments ("prompt" "allow-empty?")) nil [13529 13897])
-            ("org-unique-local-variables" variable
-               (:constant-flag t
-                :default-value (quote (org-element--cache org-element--cache-objects org-element--cache-sync-keys org-element--cache-sync-requests org-element--cache-sync-timer)))
-                nil [13899 14169])
-            ("org-get-local-variables" function nil nil [14171 14741])
-            ("org-clone-local-variables" function (:arguments ("from-buffer" "regexp")) nil [14743 15217])
-            ("org-macs" package nil nil [15220 15239]))          
-      :file "org-macs.el"
-      :pointmax 15267
-      :fsize 15266
-      :lastmodtime '(23525 29591 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1159 1176])
-            ("org-macs" include nil nil [1177 1196])
-            ("declare-function" code nil nil [1198 1243])
-            ("declare-function" code nil nil [1244 1300])
-            ("declare-function" code nil nil [1301 1360])
-            ("declare-function" code nil nil [1361 1440])
-            ("declare-function" code nil nil [1441 1507])
-            ("declare-function" code nil nil [1508 1575])
-            ("declare-function" code nil nil [1576 1628])
-            ("declare-function" code nil nil [1629 1710])
-            ("org-table-any-border-regexp" variable nil nil [1712 1748])
-            ("org-table-dataline-regexp" variable nil nil [1749 1783])
-            ("org-table-tab-recognizes-table.el" variable nil nil [1784 1826])
-            ("org-table1-hline-regexp" variable nil nil [1827 1859])
-            ("when" code nil nil [1893 2442])
-            ("unless" code nil nil [2444 2785])
-            ("define-obsolete-function-alias" code nil nil [2895 2961])
-            ("define-obsolete-function-alias" code nil nil [2962 3028])
-            ("define-obsolete-function-alias" code nil nil [3029 3111])
-            ("define-obsolete-function-alias" code nil nil [3112 3194])
-            ("define-obsolete-function-alias" code nil nil [3195 3267])
-            ("define-obsolete-function-alias" code nil nil [3268 3346])
-            ("define-obsolete-function-alias" code nil nil [3347 3421])
-            ("define-obsolete-function-alias" code nil nil [3422 3492])
-            ("define-obsolete-function-alias" code nil nil [3493 3571])
-            ("define-obsolete-function-alias" code nil nil [3572 3654])
-            ("define-obsolete-function-alias" code nil nil [3655 3729])
-            ("define-obsolete-function-alias" code nil nil [3730 3804])
-            ("define-obsolete-function-alias" code nil nil [3805 3907])
-            ("define-obsolete-function-alias" code nil nil [3908 3978])
-            ("define-obsolete-function-alias" code nil nil [3979 4085])
-            ("org-re" function (:arguments ("s")) nil [4087 4250])
-            ("define-obsolete-function-alias" code nil nil [4328 4391])
-            ("define-obsolete-function-alias" code nil nil [4392 4455])
-            ("define-obsolete-function-alias" code nil nil [4456 4523])
-            ("define-obsolete-function-alias" code nil nil [4524 4589])
-            ("define-obsolete-function-alias" code nil nil [4590 4661])
-            ("define-obsolete-function-alias" code nil nil [4662 4741])
-            ("define-obsolete-function-alias" code nil nil [4742 4803])
-            ("define-obsolete-function-alias" code nil nil [4804 4868])
-            ("org-sublist" function (:arguments ("list" "start" "end")) nil [4870 5011])
-            ("make-obsolete" code nil nil [5012 5125])
-            ("define-obsolete-function-alias" code nil nil [5170 5254])
-            ("define-obsolete-function-alias" code nil nil [5255 5349])
-            ("define-obsolete-function-alias" code nil nil [5350 5428])
-            ("define-obsolete-function-alias" code nil nil [5429 5511])
-            ("define-obsolete-function-alias" code nil nil [5512 5590])
-            ("define-obsolete-function-alias" code nil nil [5591 5674])
-            ("define-obsolete-function-alias" code nil nil [5675 5752])
-            ("define-obsolete-function-alias" code nil nil [5753 5833])
-            ("define-obsolete-function-alias" code nil nil [5834 5934])
-            ("define-obsolete-function-alias" code nil nil [5935 6013])
-            ("define-obsolete-function-alias" code nil nil [6081 6181])
-            ("define-obsolete-variable-alias" code nil nil [6182 6301])
-            ("define-obsolete-variable-alias" code nil nil [6302 6417])
-            ("define-obsolete-function-alias" code nil nil [6418 6489])
-            ("define-obsolete-function-alias" code nil nil [6490 6568])
-            ("define-obsolete-function-alias" code nil nil [6569 6643])
-            ("define-obsolete-function-alias" code nil nil [6644 6740])
-            ("define-obsolete-function-alias" code nil nil [6741 6828])
-            ("define-obsolete-function-alias" code nil nil [6829 6912])
-            ("define-obsolete-function-alias" code nil nil [6913 6992])
-            ("define-obsolete-function-alias" code nil nil [6993 7078])
-            ("define-obsolete-variable-alias" code nil nil [7079 7190])
-            ("define-obsolete-function-alias" code nil nil [7191 7290])
-            ("define-obsolete-function-alias" code nil nil [7291 7382])
-            ("define-obsolete-variable-alias" code nil nil [7383 7481])
-            ("define-obsolete-variable-alias" code nil nil [7482 7562])
-            ("define-obsolete-variable-alias" code nil nil [7563 7666])
-            ("define-obsolete-function-alias" code nil nil [7667 7748])
-            ("define-obsolete-function-alias" code nil nil [7749 7832])
-            ("define-obsolete-function-alias" code nil nil [7833 7933])
-            ("define-obsolete-variable-alias" code nil nil [7934 8060])
-            ("define-obsolete-function-alias" code nil nil [8062 8130])
-            ("define-obsolete-variable-alias" code nil nil [8131 8201])
-            ("define-obsolete-function-alias" code nil nil [8202 8300])
-            ("define-obsolete-variable-alias" code nil nil [8301 8394])
-            ("define-obsolete-function-alias" code nil nil [8395 8487])
-            ("define-obsolete-function-alias" code nil nil [8488 8564])
-            ("define-obsolete-function-alias" code nil nil [8565 8641])
-            ("org-in-fixed-width-region-p" function nil nil [8643 8811])
-            ("make-obsolete" code nil nil [8812 8924])
-            ("org-compatible-face" function (:arguments ("inherits" "specs")) nil [8926 9272])
-            ("make-obsolete" code nil nil [9273 9340])
-            ("org-add-link-type" function (:arguments ("type" "follow" "export")) nil [9342 10665])
-            ("make-obsolete" code nil nil [10667 10752])
-            ("org-table-recognize-table.el" function nil nil [10754 11502])
-            ("make-obsolete" code nil nil [11561 11709])
-            ("org-remove-angle-brackets" function (:arguments ("s")) nil [11711 11783])
-            ("make-obsolete" code nil nil [11784 11858])
-            ("org-remove-double-quotes" function (:arguments ("s")) nil [11860 11933])
-            ("make-obsolete" code nil nil [11934 12007])
-            ("org-publish-sitemap-file-entry-format" variable (:default-value "%t") nil [12009 12318])
-            ("make-obsolete-variable" code nil nil [12319 12465])
-            ("org-agenda-skip-regexp" variable nil nil [12467 12498])
-            ("org-agenda-skip-entry-when-regexp-matches" function nil nil [12499 13099])
-            ("org-agenda-skip-subtree-when-regexp-matches" function nil nil [13101 13666])
-            ("org-agenda-skip-entry-when-regexp-matches-in-subtree" function nil nil [13668 14441])
-            ("define-obsolete-function-alias" code nil nil [14443 14546])
-            ("define-obsolete-function-alias" code nil nil [14548 14646])
-            ("define-obsolete-function-alias" code nil nil [14648 14749])
-            ("make-obsolete-variable" code nil nil [14751 14850])
-            ("make-obsolete-variable" code nil nil [14852 14959])
-            ("make-obsolete-variable" code nil nil [14961 15071])
-            ("make-obsolete-variable" code nil nil [15073 15185])
-            ("define-obsolete-function-alias" code nil nil [15187 15280])
-            ("define-obsolete-variable-alias" code nil nil [15282 15385])
-            ("define-obsolete-variable-alias" code nil nil [15387 15495])
-            ("make-obsolete" code nil nil [15618 15750])
-            ("eval-after-load" code nil nil [15779 15913])
-            ("org-version-check" function (:arguments ("version" "feature" "level")) nil [15962 16832])
-            ("org-get-x-clipboard" function (:arguments ("value")) nil [16834 17398])
-            ("org-add-props" function (:arguments ("string" "plist" "props")) nil [17400 17758])
-            ("put" code nil nil [17759 17803])
-            ("org-fit-window-to-buffer" function (:arguments ("window" "max-height" "min-height" "shrink-only")) nil [17805 18711])
-            ("defalias" code nil nil [18761 18886])
-            ("org-ignore-region" variable nil nil [18914 19001])
-            ("org-region-active-p" function nil nil [19003 19189])
-            ("org-cursor-to-region-beginning" function nil nil [19191 19343])
-            ("org-remove-from-invisibility-spec" function (:arguments ("arg")) nil [19377 19701])
-            ("org-in-invisibility-spec-p" function (:arguments ("arg")) nil [19703 19878])
-            ("org-move-to-column" function (:arguments ("column" "force" "_buffer")) nil [19880 20226])
-            ("org-find-library-dir" function (:arguments ("library")) nil [20228 20328])
-            ("org-count-lines" function (:arguments ("s")) nil [20330 20592])
-            ("org-kill-new" function (:arguments ("string" "args")) nil [20594 20775])
-            ("defalias" code nil nil [20833 21012])
-            ("defalias" code nil nil [21060 21271])
-            ("org-no-popups" function (:arguments ("body")) nil [21273 21701])
-            ("org-check-version" function nil nil [21718 22502])
-            ("org-with-silent-modifications" function (:arguments ("body")) nil [22504 22672])
-            ("def-edebug-spec" code nil nil [22673 22727])
-            ("org-define-error" function (:arguments ("name" "message")) nil [22773 23186])
-            ("unless" code nil nil [23188 23670])
-            ("org-compat" package nil nil [23672 23693]))          
-      :file "org-compat.el"
-      :pointmax 23723
-      :fsize 23722
-      :lastmodtime '(23525 29590 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("declare-function" code nil nil [1102 1162])
-            ("declare-function" code nil nil [1163 1223])
-            ("org-entities" customgroup (:user-visible-flag t) nil [1225 1333])
-            ("org-entities--user-safe-p" function (:arguments ("v")) nil [1335 1675])
-            ("org-entities-user" variable nil nil [1677 3031])
-            ("org-entities" variable
-               (:constant-flag t
-                :default-value (append (quote ("* Letters" "** Latin" ("Agrave" "\\`{A}" nil "&Agrave;" "A" "À" "À") ("agrave" "\\`{a}" nil "&agrave;" "a" "à" "à") ("Aacute" "\\'{A}" nil "&Aacute;" "A" "Á" "Á") ("aacute" "\\'{a}" nil "&aacute;" "a" "á" "á") ("Acirc" "\\^{A}" nil "&Acirc;" "A" "Â" "Â") ("acirc" "\\^{a}" nil "&acirc;" "a" "â" "â") ("Amacr" "\\bar{A}" nil "&Amacr;" "A" "Ã" "Ã") ("amacr" "\\bar{a}" nil "&amacr;" "a" "ã" "ã") ("Atilde" "\\~{A}" nil "&Atilde;" "A" "Ã" "Ã") ("atilde" "\\~{a}" nil "&atilde;" "a" "ã" "ã") ("Auml" "\\\"{A}" nil "&Auml;" "Ae" "Ä" "Ä") ("auml" "\\\"{a}" nil "&auml;" "ae" "ä" "ä") ("Aring" "\\AA{}" nil "&Aring;" "A" "Å" "Å") ("AA" "\\AA{}" nil "&Aring;" "A" "Å" "Å") ("aring" "\\aa{}" nil "&aring;" "a" "å" "å") ("AElig" "\\AE{}" nil "&AElig;" "AE" "Æ" "Æ") ("aelig" "\\ae{}" nil "&aelig;" "ae" "æ" "æ") ("Ccedil" "\\c{C}" nil "&Ccedil;" "C" "Ç" "Ç") ("ccedil" "\\c{c}" nil "&ccedil;" "c" "ç" "ç") ("Egrave" "\\`{E}" nil "&Egrave;" "E" "È" "È") ("egrave" "\\`{e}" nil "&egrave;" "e" "è" "è") ("Eacute" "\\'{E}" nil "&Eacute;" "E" "É" "É") ("eacute" "\\'{e}" nil "&eacute;" "e" "é" "é") ("Ecirc" "\\^{E}" nil "&Ecirc;" "E" "Ê" "Ê") ("ecirc" "\\^{e}" nil "&ecirc;" "e" "ê" "ê") ("Euml" "\\\"{E}" nil "&Euml;" "E" "Ë" "Ë") ("euml" "\\\"{e}" nil "&euml;" "e" "ë" "ë") ("Igrave" "\\`{I}" nil "&Igrave;" "I" "Ì" "Ì") ("igrave" "\\`{i}" nil "&igrave;" "i" "ì" "ì") ("Iacute" "\\'{I}" nil "&Iacute;" "I" "Í" "Í") ("iacute" "\\'{i}" nil "&iacute;" "i" "í" "í") ("Icirc" "\\^{I}" nil "&Icirc;" "I" "Î" "Î") ("icirc" "\\^{i}" nil "&icirc;" "i" "î" "î") ("Iuml" "\\\"{I}" nil "&Iuml;" "I" "Ï" "Ï") ("iuml" "\\\"{i}" nil "&iuml;" "i" "ï" "ï") ("Ntilde" "\\~{N}" nil "&Ntilde;" "N" "Ñ" "Ñ") ("ntilde" "\\~{n}" nil "&ntilde;" "n" "ñ" "ñ") ("Ograve" "\\`{O}" nil "&Ograve;" "O" "Ò" "Ò") ("ograve" "\\`{o}" nil "&ograve;" "o" "ò" "ò") ("Oacute" "\\'{O}" nil "&Oacute;" "O" "Ó" "Ó") ("oacute" "\\'{o}" nil "&oacute;" "o" "ó" "ó") ("Ocirc" "\\^{O}" nil "&Ocirc;" "O" "Ô" "Ô") ("ocirc" "\\^{o}" nil "&ocirc;" "o" "ô" "ô") ("Otilde" "\\~{O}" nil "&Otilde;" "O" "Õ" "Õ") ("otilde" "\\~{o}" nil "&otilde;" "o" "õ" "õ") ("Ouml" "\\\"{O}" nil "&Ouml;" "Oe" "Ö" "Ö") ("ouml" "\\\"{o}" nil "&ouml;" "oe" "ö" "ö") ("Oslash" "\\O" nil "&Oslash;" "O" "Ø" "Ø") ("oslash" "\\o{}" nil "&oslash;" "o" "ø" "ø") ("OElig" "\\OE{}" nil "&OElig;" "OE" "OE" "Œ") ("oelig" "\\oe{}" nil "&oelig;" "oe" "oe" "œ") ("Scaron" "\\v{S}" nil "&Scaron;" "S" "S" "Š") ("scaron" "\\v{s}" nil "&scaron;" "s" "s" "š") ("szlig" "\\ss{}" nil "&szlig;" "ss" "ß" "ß") ("Ugrave" "\\`{U}" nil "&Ugrave;" "U" "Ù" "Ù") ("ugrave" "\\`{u}" nil "&ugrave;" "u" "ù" "ù") ("Uacute" "\\'{U}" nil "&Uacute;" "U" "Ú" "Ú") ("uacute" "\\'{u}" nil "&uacute;" "u" "ú" "ú") ("Ucirc" "\\^{U}" nil "&Ucirc;" "U" "Û" "Û") ("ucirc" "\\^{u}" nil "&ucirc;" "u" "û" "û") ("Uuml" "\\\"{U}" nil "&Uuml;" "Ue" "Ü" "Ü") ("uuml" "\\\"{u}" nil "&uuml;" "ue" "ü" "ü") ("Yacute" "\\'{Y}" nil "&Yacute;" "Y" "Ý" "Ý") ("yacute" "\\'{y}" nil "&yacute;" "y" "ý" "ý") ("Yuml" "\\\"{Y}" nil "&Yuml;" "Y" "Y" "Ÿ") ("yuml" "\\\"{y}" nil "&yuml;" "y" "ÿ" "ÿ") "** Latin (special face)" ("fnof" "\\textit{f}" nil "&fnof;" "f" "f" "ƒ") ("real" "\\Re" t "&real;" "R" "R" "ℜ") ("image" "\\Im" t "&image;" "I" "I" "ℑ") ("weierp" "\\wp" t "&weierp;" "P" "P" "℘") ("ell" "\\ell" t "&ell;" "ell" "ell" "ℓ") ("imath" "\\imath" t "&imath;" "[dotless i]" "dotless i" "ı") ("jmath" "\\jmath" t "&jmath;" "[dotless j]" "dotless j" "ȷ") "** Greek" ("Alpha" "A" nil "&Alpha;" "Alpha" "Alpha" "Α") ("alpha" "\\alpha" t "&alpha;" "alpha" "alpha" "α") ("Beta" "B" nil "&Beta;" "Beta" "Beta" "Β") ("beta" "\\beta" t "&beta;" "beta" "beta" "β") ("Gamma" "\\Gamma" t "&Gamma;" "Gamma" "Gamma" "Γ") ("gamma" "\\gamma" t "&gamma;" "gamma" "gamma" "γ") ("Delta" "\\Delta" t "&Delta;" "Delta" "Delta" "Δ") ("delta" "\\delta" t "&delta;" "delta" "delta" "δ") ("Epsilon" "E" nil "&Epsilon;" "Epsilon" "Epsilon" "Ε") ("epsilon" "\\epsilon" t "&epsilon;" "epsilon" "epsilon" "ε") ("varepsilon" "\\varepsilon" t "&epsilon;" "varepsilon" "varepsilon" "ε") ("Zeta" "Z" nil "&Zeta;" "Zeta" "Zeta" "Ζ") ("zeta" "\\zeta" t "&zeta;" "zeta" "zeta" "ζ") ("Eta" "H" nil "&Eta;" "Eta" "Eta" "Η") ("eta" "\\eta" t "&eta;" "eta" "eta" "η") ("Theta" "\\Theta" t "&Theta;" "Theta" "Theta" "Θ") ("theta" "\\theta" t "&theta;" "theta" "theta" "θ") ("thetasym" "\\vartheta" t "&thetasym;" "theta" "theta" "ϑ") ("vartheta" "\\vartheta" t "&thetasym;" "theta" "theta" "ϑ") ("Iota" "I" nil "&Iota;" "Iota" "Iota" "Ι") ("iota" "\\iota" t "&iota;" "iota" "iota" "ι") ("Kappa" "K" nil "&Kappa;" "Kappa" "Kappa" "Κ") ("kappa" "\\kappa" t "&kappa;" "kappa" "kappa" "κ") ("Lambda" "\\Lambda" t "&Lambda;" "Lambda" "Lambda" "Λ") ("lambda" "\\lambda" t "&lambda;" "lambda" "lambda" "λ") ("Mu" "M" nil "&Mu;" "Mu" "Mu" "Μ") ("mu" "\\mu" t "&mu;" "mu" "mu" "μ") ("nu" "\\nu" t "&nu;" "nu" "nu" "ν") ("Nu" "N" nil "&Nu;" "Nu" "Nu" "Ν") ("Xi" "\\Xi" t "&Xi;" "Xi" "Xi" "Ξ") ("xi" "\\xi" t "&xi;" "xi" "xi" "ξ") ("Omicron" "O" nil "&Omicron;" "Omicron" "Omicron" "Ο") ("omicron" "\\textit{o}" nil "&omicron;" "omicron" "omicron" "ο") ("Pi" "\\Pi" t "&Pi;" "Pi" "Pi" "Π") ("pi" "\\pi" t "&pi;" "pi" "pi" "π") ("Rho" "P" nil "&Rho;" "Rho" "Rho" "Ρ") ("rho" "\\rho" t "&rho;" "rho" "rho" "ρ") ("Sigma" "\\Sigma" t "&Sigma;" "Sigma" "Sigma" "Σ") ("sigma" "\\sigma" t "&sigma;" "sigma" "sigma" "σ") ("sigmaf" "\\varsigma" t "&sigmaf;" "sigmaf" "sigmaf" "ς") ("varsigma" "\\varsigma" t "&sigmaf;" "varsigma" "varsigma" "ς") ("Tau" "T" nil "&Tau;" "Tau" "Tau" "Τ") ("Upsilon" "\\Upsilon" t "&Upsilon;" "Upsilon" "Upsilon" "Υ") ("upsih" "\\Upsilon" t "&upsih;" "upsilon" "upsilon" "ϒ") ("upsilon" "\\upsilon" t "&upsilon;" "upsilon" "upsilon" "υ") ("Phi" "\\Phi" t "&Phi;" "Phi" "Phi" "Φ") ("phi" "\\phi" t "&phi;" "phi" "phi" "ɸ") ("varphi" "\\varphi" t "&varphi;" "varphi" "varphi" "φ") ("Chi" "X" nil "&Chi;" "Chi" "Chi" "Χ") ("chi" "\\chi" t "&chi;" "chi" "chi" "χ") ("acutex" "\\acute x" t "&acute;x" "'x" "'x" "𝑥́") ("Psi" "\\Psi" t "&Psi;" "Psi" "Psi" "Ψ") ("psi" "\\psi" t "&psi;" "psi" "psi" "ψ") ("tau" "\\tau" t "&tau;" "tau" "tau" "τ") ("Omega" "\\Omega" t "&Omega;" "Omega" "Omega" "Ω") ("omega" "\\omega" t "&omega;" "omega" "omega" "ω") ("piv" "\\varpi" t "&piv;" "omega-pi" "omega-pi" "ϖ") ("varpi" "\\varpi" t "&piv;" "omega-pi" "omega-pi" "ϖ") ("partial" "\\partial" t "&part;" "[partial differential]" "[partial differential]" "∂") "** Hebrew" ("alefsym" "\\aleph" t "&alefsym;" "aleph" "aleph" "ℵ") ("aleph" "\\aleph" t "&aleph;" "aleph" "aleph" "ℵ") ("gimel" "\\gimel" t "&gimel;" "gimel" "gimel" "ℷ") ("beth" "\\beth" t "&beth;" "beth" "beth" "ב") ("dalet" "\\daleth" t "&daleth;" "dalet" "dalet" "ד") "** Dead languages" ("ETH" "\\DH{}" nil "&ETH;" "D" "Ð" "Ð") ("eth" "\\dh{}" nil "&eth;" "dh" "ð" "ð") ("THORN" "\\TH{}" nil "&THORN;" "TH" "Þ" "Þ") ("thorn" "\\th{}" nil "&thorn;" "th" "þ" "þ") "* Punctuation" "** Dots and Marks" ("dots" "\\dots{}" nil "&hellip;" "..." "..." "…") ("cdots" "\\cdots{}" t "&ctdot;" "..." "..." "⋯") ("hellip" "\\dots{}" nil "&hellip;" "..." "..." "…") ("middot" "\\textperiodcentered{}" nil "&middot;" "." "·" "·") ("iexcl" "!`" nil "&iexcl;" "!" "¡" "¡") ("iquest" "?`" nil "&iquest;" "?" "¿" "¿") "** Dash-like" ("shy" "\\-" nil "&shy;" "" "" "") ("ndash" "--" nil "&ndash;" "-" "-" "–") ("mdash" "---" nil "&mdash;" "--" "--" "—") "** Quotations" ("quot" "\\textquotedbl{}" nil "&quot;" "\"" "\"" "\"") ("acute" "\\textasciiacute{}" nil "&acute;" "'" "´" "´") ("ldquo" "\\textquotedblleft{}" nil "&ldquo;" "\"" "\"" "“") ("rdquo" "\\textquotedblright{}" nil "&rdquo;" "\"" "\"" "”") ("bdquo" "\\quotedblbase{}" nil "&bdquo;" "\"" "\"" "„") ("lsquo" "\\textquoteleft{}" nil "&lsquo;" "`" "`" "‘") ("rsquo" "\\textquoteright{}" nil "&rsquo;" "'" "'" "’") ("sbquo" "\\quotesinglbase{}" nil "&sbquo;" "," "," "‚") ("laquo" "\\guillemotleft{}" nil "&laquo;" "<<" "«" "«") ("raquo" "\\guillemotright{}" nil "&raquo;" ">>" "»" "»") ("lsaquo" "\\guilsinglleft{}" nil "&lsaquo;" "<" "<" "‹") ("rsaquo" "\\guilsinglright{}" nil "&rsaquo;" ">" ">" "›") "* Other" "** Misc. (often used)" ("circ" "\\^{}" nil "&circ;" "^" "^" "∘") ("vert" "\\vert{}" t "&vert;" "|" "|" "|") ("vbar" "|" nil "|" "|" "|" "|") ("brvbar" "\\textbrokenbar{}" nil "&brvbar;" "|" "¦" "¦") ("S" "\\S" nil "&sect;" "paragraph" "§" "§") ("sect" "\\S" nil "&sect;" "paragraph" "§" "§") ("amp" "\\&" nil "&amp;" "&" "&" "&") ("lt" "\\textless{}" nil "&lt;" "<" "<" "<") ("gt" "\\textgreater{}" nil "&gt;" ">" ">" ">") ("tilde" "\\textasciitilde{}" nil "~" "~" "~" "~") ("slash" "/" nil "/" "/" "/" "/") ("plus" "+" nil "+" "+" "+" "+") ("under" "\\_" nil "_" "_" "_" "_") ("equal" "=" nil "=" "=" "=" "=") ("asciicirc" "\\textasciicircum{}" nil "^" "^" "^" "^") ("dagger" "\\textdagger{}" nil "&dagger;" "[dagger]" "[dagger]" "†") ("dag" "\\dag{}" nil "&dagger;" "[dagger]" "[dagger]" "†") ("Dagger" "\\textdaggerdbl{}" nil "&Dagger;" "[doubledagger]" "[doubledagger]" "‡") ("ddag" "\\ddag{}" nil "&Dagger;" "[doubledagger]" "[doubledagger]" "‡") "** Whitespace" ("nbsp" "~" nil "&nbsp;" " " " " " ") ("ensp" "\\hspace*{.5em}" nil "&ensp;" " " " " " ") ("emsp" "\\hspace*{1em}" nil "&emsp;" " " " " " ") ("thinsp" "\\hspace*{.2em}" nil "&thinsp;" " " " " " ") "** Currency" ("curren" "\\textcurrency{}" nil "&curren;" "curr." "¤" "¤") ("cent" "\\textcent{}" nil "&cent;" "cent" "¢" "¢") ("pound" "\\pounds{}" nil "&pound;" "pound" "£" "£") ("yen" "\\textyen{}" nil "&yen;" "yen" "¥" "¥") ("euro" "\\texteuro{}" nil "&euro;" "EUR" "EUR" "€") ("EUR" "\\texteuro{}" nil "&euro;" "EUR" "EUR" "€") ("dollar" "\\$" nil "$" "$" "$" "$") ("USD" "\\$" nil "$" "$" "$" "$") "** Property Marks" ("copy" "\\textcopyright{}" nil "&copy;" "(c)" "©" "©") ("reg" "\\textregistered{}" nil "&reg;" "(r)" "®" "®") ("trade" "\\texttrademark{}" nil "&trade;" "TM" "TM" "™") "** Science et al." ("minus" "\\minus" t "&minus;" "-" "-" "−") ("pm" "\\textpm{}" nil "&plusmn;" "+-" "±" "±") ("plusmn" "\\textpm{}" nil "&plusmn;" "+-" "±" "±") ("times" "\\texttimes{}" nil "&times;" "*" "×" "×") ("frasl" "/" nil "&frasl;" "/" "/" "⁄") ("colon" "\\colon" t ":" ":" ":" ":") ("div" "\\textdiv{}" nil "&divide;" "/" "÷" "÷") ("frac12" "\\textonehalf{}" nil "&frac12;" "1/2" "½" "½") ("frac14" "\\textonequarter{}" nil "&frac14;" "1/4" "¼" "¼") ("frac34" "\\textthreequarters{}" nil "&frac34;" "3/4" "¾" "¾") ("permil" "\\textperthousand{}" nil "&permil;" "per thousand" "per thousand" "‰") ("sup1" "\\textonesuperior{}" nil "&sup1;" "^1" "¹" "¹") ("sup2" "\\texttwosuperior{}" nil "&sup2;" "^2" "²" "²") ("sup3" "\\textthreesuperior{}" nil "&sup3;" "^3" "³" "³") ("radic" "\\sqrt{\\,}" t "&radic;" "[square root]" "[square root]" "√") ("sum" "\\sum" t "&sum;" "[sum]" "[sum]" "∑") ("prod" "\\prod" t "&prod;" "[product]" "[n-ary product]" "∏") ("micro" "\\textmu{}" nil "&micro;" "micro" "µ" "µ") ("macr" "\\textasciimacron{}" nil "&macr;" "[macron]" "¯" "¯") ("deg" "\\textdegree{}" nil "&deg;" "degree" "°" "°") ("prime" "\\prime" t "&prime;" "'" "'" "′") ("Prime" "\\prime{}\\prime" t "&Prime;" "''" "''" "″") ("infin" "\\infty" t "&infin;" "[infinity]" "[infinity]" "∞") ("infty" "\\infty" t "&infin;" "[infinity]" "[infinity]" "∞") ("prop" "\\propto" t "&prop;" "[proportional to]" "[proportional to]" "∝") ("propto" "\\propto" t "&prop;" "[proportional to]" "[proportional to]" "∝") ("not" "\\textlnot{}" nil "&not;" "[angled dash]" "¬" "¬") ("neg" "\\neg{}" t "&not;" "[angled dash]" "¬" "¬") ("land" "\\land" t "&and;" "[logical and]" "[logical and]" "∧") ("wedge" "\\wedge" t "&and;" "[logical and]" "[logical and]" "∧") ("lor" "\\lor" t "&or;" "[logical or]" "[logical or]" "∨") ("vee" "\\vee" t "&or;" "[logical or]" "[logical or]" "∨") ("cap" "\\cap" t "&cap;" "[intersection]" "[intersection]" "∩") ("cup" "\\cup" t "&cup;" "[union]" "[union]" "∪") ("smile" "\\smile" t "&smile;" "[cup product]" "[cup product]" "⌣") ("frown" "\\frown" t "&frown;" "[Cap product]" "[cap product]" "⌢") ("int" "\\int" t "&int;" "[integral]" "[integral]" "∫") ("therefore" "\\therefore" t "&there4;" "[therefore]" "[therefore]" "∴") ("there4" "\\therefore" t "&there4;" "[therefore]" "[therefore]" "∴") ("because" "\\because" t "&because;" "[because]" "[because]" "∵") ("sim" "\\sim" t "&sim;" "~" "~" "∼") ("cong" "\\cong" t "&cong;" "[approx. equal to]" "[approx. equal to]" "≅") ("simeq" "\\simeq" t "&cong;" "[approx. equal to]" "[approx. equal to]" "≅") ("asymp" "\\asymp" t "&asymp;" "[almost equal to]" "[almost equal to]" "≈") ("approx" "\\approx" t "&asymp;" "[almost equal to]" "[almost equal to]" "≈") ("ne" "\\ne" t "&ne;" "[not equal to]" "[not equal to]" "≠") ("neq" "\\neq" t "&ne;" "[not equal to]" "[not equal to]" "≠") ("equiv" "\\equiv" t "&equiv;" "[identical to]" "[identical to]" "≡") ("triangleq" "\\triangleq" t "&triangleq;" "[defined to]" "[defined to]" "≜") ("le" "\\le" t "&le;" "<=" "<=" "≤") ("leq" "\\le" t "&le;" "<=" "<=" "≤") ("ge" "\\ge" t "&ge;" ">=" ">=" "≥") ("geq" "\\ge" t "&ge;" ">=" ">=" "≥") ("lessgtr" "\\lessgtr" t "&lessgtr;" "[less than or greater than]" "[less than or greater than]" "≶") ("lesseqgtr" "\\lesseqgtr" t "&lesseqgtr;" "[less than or equal or greater than or equal]" "[less than or equal or greater than or equal]" "⋚") ("ll" "\\ll" t "&Lt;" "<<" "<<" "≪") ("Ll" "\\lll" t "&Ll;" "<<<" "<<<" "⋘") ("lll" "\\lll" t "&Ll;" "<<<" "<<<" "⋘") ("gg" "\\gg" t "&Gt;" ">>" ">>" "≫") ("Gg" "\\ggg" t "&Gg;" ">>>" ">>>" "⋙") ("ggg" "\\ggg" t "&Gg;" ">>>" ">>>" "⋙") ("prec" "\\prec" t "&pr;" "[precedes]" "[precedes]" "≺") ("preceq" "\\preceq" t "&prcue;" "[precedes or equal]" "[precedes or equal]" "≼") ("preccurlyeq" "\\preccurlyeq" t "&prcue;" "[precedes or equal]" "[precedes or equal]" "≼") ("succ" "\\succ" t "&sc;" "[succeeds]" "[succeeds]" "≻") ("succeq" "\\succeq" t "&sccue;" "[succeeds or equal]" "[succeeds or equal]" "≽") ("succcurlyeq" "\\succcurlyeq" t "&sccue;" "[succeeds or equal]" "[succeeds or equal]" "≽") ("sub" "\\subset" t "&sub;" "[subset of]" "[subset of]" "⊂") ("subset" "\\subset" t "&sub;" "[subset of]" "[subset of]" "⊂") ("sup" "\\supset" t "&sup;" "[superset of]" "[superset of]" "⊃") ("supset" "\\supset" t "&sup;" "[superset of]" "[superset of]" "⊃") ("nsub" "\\not\\subset" t "&nsub;" "[not a subset of]" "[not a subset of" "⊄") ("sube" "\\subseteq" t "&sube;" "[subset of or equal to]" "[subset of or equal to]" "⊆") ("nsup" "\\not\\supset" t "&nsup;" "[not a superset of]" "[not a superset of]" "⊅") ("supe" "\\supseteq" t "&supe;" "[superset of or equal to]" "[superset of or equal to]" "⊇") ("setminus" "\\setminus" t "&setminus;" "\" " \" "⧵") ("forall" "\\forall" t "&forall;" "[for all]" "[for all]" "∀") ("exist" "\\exists" t "&exist;" "[there exists]" "[there exists]" "∃") ("exists" "\\exists" t "&exist;" "[there exists]" "[there exists]" "∃") ("nexist" "\\nexists" t "&exist;" "[there does not exists]" "[there does not  exists]" "∄") ("nexists" "\\nexists" t "&exist;" "[there does not exists]" "[there does not  exists]" "∄") ("empty" "\\empty" t "&empty;" "[empty set]" "[empty set]" "∅") ("emptyset" "\\emptyset" t "&empty;" "[empty set]" "[empty set]" "∅") ("isin" "\\in" t "&isin;" "[element of]" "[element of]" "∈") ("in" "\\in" t "&isin;" "[element of]" "[element of]" "∈") ("notin" "\\notin" t "&notin;" "[not an element of]" "[not an element of]" "∉") ("ni" "\\ni" t "&ni;" "[contains as member]" "[contains as member]" "∋") ("nabla" "\\nabla" t "&nabla;" "[nabla]" "[nabla]" "∇") ("ang" "\\angle" t "&ang;" "[angle]" "[angle]" "∠") ("angle" "\\angle" t "&ang;" "[angle]" "[angle]" "∠") ("perp" "\\perp" t "&perp;" "[up tack]" "[up tack]" "⊥") ("parallel" "\\parallel" t "&parallel;" "||" "||" "∥") ("sdot" "\\cdot" t "&sdot;" "[dot]" "[dot]" "⋅") ("cdot" "\\cdot" t "&sdot;" "[dot]" "[dot]" "⋅") ("lceil" "\\lceil" t "&lceil;" "[left ceiling]" "[left ceiling]" "⌈") ("rceil" "\\rceil" t "&rceil;" "[right ceiling]" "[right ceiling]" "⌉") ("lfloor" "\\lfloor" t "&lfloor;" "[left floor]" "[left floor]" "⌊") ("rfloor" "\\rfloor" t "&rfloor;" "[right floor]" "[right floor]" "⌋") ("lang" "\\langle" t "&lang;" "<" "<" "⟨") ("rang" "\\rangle" t "&rang;" ">" ">" "⟩") ("langle" "\\langle" t "&lang;" "<" "<" "⟨") ("rangle" "\\rangle" t "&rang;" ">" ">" "⟩") ("hbar" "\\hbar" t "&hbar;" "hbar" "hbar" "ℏ") ("mho" "\\mho" t "&mho;" "mho" "mho" "℧") "** Arrows" ("larr" "\\leftarrow" t "&larr;" "<-" "<-" "←") ("leftarrow" "\\leftarrow" t "&larr;" "<-" "<-" "←") ("gets" "\\gets" t "&larr;" "<-" "<-" "←") ("lArr" "\\Leftarrow" t "&lArr;" "<=" "<=" "⇐") ("Leftarrow" "\\Leftarrow" t "&lArr;" "<=" "<=" "⇐") ("uarr" "\\uparrow" t "&uarr;" "[uparrow]" "[uparrow]" "↑") ("uparrow" "\\uparrow" t "&uarr;" "[uparrow]" "[uparrow]" "↑") ("uArr" "\\Uparrow" t "&uArr;" "[dbluparrow]" "[dbluparrow]" "⇑") ("Uparrow" "\\Uparrow" t "&uArr;" "[dbluparrow]" "[dbluparrow]" "⇑") ("rarr" "\\rightarrow" t "&rarr;" "->" "->" "→") ("to" "\\to" t "&rarr;" "->" "->" "→") ("rightarrow" "\\rightarrow" t "&rarr;" "->" "->" "→") ("rArr" "\\Rightarrow" t "&rArr;" "=>" "=>" "⇒") ("Rightarrow" "\\Rightarrow" t "&rArr;" "=>" "=>" "⇒") ("darr" "\\downarrow" t "&darr;" "[downarrow]" "[downarrow]" "↓") ("downarrow" "\\downarrow" t "&darr;" "[downarrow]" "[downarrow]" "↓") ("dArr" "\\Downarrow" t "&dArr;" "[dbldownarrow]" "[dbldownarrow]" "⇓") ("Downarrow" "\\Downarrow" t "&dArr;" "[dbldownarrow]" "[dbldownarrow]" "⇓") ("harr" "\\leftrightarrow" t "&harr;" "<->" "<->" "↔") ("leftrightarrow" "\\leftrightarrow" t "&harr;" "<->" "<->" "↔") ("hArr" "\\Leftrightarrow" t "&hArr;" "<=>" "<=>" "⇔") ("Leftrightarrow" "\\Leftrightarrow" t "&hArr;" "<=>" "<=>" "⇔") ("crarr" "\\hookleftarrow" t "&crarr;" "<-'" "<-'" "↵") ("hookleftarrow" "\\hookleftarrow" t "&crarr;" "<-'" "<-'" "↵") "** Function names" ("arccos" "\\arccos" t "arccos" "arccos" "arccos" "arccos") ("arcsin" "\\arcsin" t "arcsin" "arcsin" "arcsin" "arcsin") ("arctan" "\\arctan" t "arctan" "arctan" "arctan" "arctan") ("arg" "\\arg" t "arg" "arg" "arg" "arg") ("cos" "\\cos" t "cos" "cos" "cos" "cos") ("cosh" "\\cosh" t "cosh" "cosh" "cosh" "cosh") ("cot" "\\cot" t "cot" "cot" "cot" "cot") ("coth" "\\coth" t "coth" "coth" "coth" "coth") ("csc" "\\csc" t "csc" "csc" "csc" "csc") ("deg" "\\deg" t "&deg;" "deg" "deg" "deg") ("det" "\\det" t "det" "det" "det" "det") ("dim" "\\dim" t "dim" "dim" "dim" "dim") ("exp" "\\exp" t "exp" "exp" "exp" "exp") ("gcd" "\\gcd" t "gcd" "gcd" "gcd" "gcd") ("hom" "\\hom" t "hom" "hom" "hom" "hom") ("inf" "\\inf" t "inf" "inf" "inf" "inf") ("ker" "\\ker" t "ker" "ker" "ker" "ker") ("lg" "\\lg" t "lg" "lg" "lg" "lg") ("lim" "\\lim" t "lim" "lim" "lim" "lim") ("liminf" "\\liminf" t "liminf" "liminf" "liminf" "liminf") ("limsup" "\\limsup" t "limsup" "limsup" "limsup" "limsup") ("ln" "\\ln" t "ln" "ln" "ln" "ln") ("log" "\\log" t "log" "log" "log" "log") ("max" "\\max" t "max" "max" "max" "max") ("min" "\\min" t "min" "min" "min" "min") ("Pr" "\\Pr" t "Pr" "Pr" "Pr" "Pr") ("sec" "\\sec" t "sec" "sec" "sec" "sec") ("sin" "\\sin" t "sin" "sin" "sin" "sin") ("sinh" "\\sinh" t "sinh" "sinh" "sinh" "sinh") ("sup" "\\sup" t "&sup;" "sup" "sup" "sup") ("tan" "\\tan" t "tan" "tan" "tan" "tan") ("tanh" "\\tanh" t "tanh" "tanh" "tanh" "tanh") "** Signs & Symbols" ("bull" "\\textbullet{}" nil "&bull;" "*" "*" "•") ("bullet" "\\textbullet{}" nil "&bull;" "*" "*" "•") ("star" "\\star" t "*" "*" "*" "⋆") ("lowast" "\\ast" t "&lowast;" "*" "*" "∗") ("ast" "\\ast" t "&lowast;" "*" "*" "*") ("odot" "\\odot" t "o" "[circled dot]" "[circled dot]" "ʘ") ("oplus" "\\oplus" t "&oplus;" "[circled plus]" "[circled plus]" "⊕") ("otimes" "\\otimes" t "&otimes;" "[circled times]" "[circled times]" "⊗") ("check" "\\checkmark" t "&checkmark;" "[checkmark]" "[checkmark]" "✓") ("checkmark" "\\checkmark" t "&check;" "[checkmark]" "[checkmark]" "✓") "** Miscellaneous (seldom used)" ("para" "\\P{}" nil "&para;" "[pilcrow]" "¶" "¶") ("ordf" "\\textordfeminine{}" nil "&ordf;" "_a_" "ª" "ª") ("ordm" "\\textordmasculine{}" nil "&ordm;" "_o_" "º" "º") ("cedil" "\\c{}" nil "&cedil;" "[cedilla]" "¸" "¸") ("oline" "\\overline{~}" t "&oline;" "[overline]" "¯" "‾") ("uml" "\\textasciidieresis{}" nil "&uml;" "[diaeresis]" "¨" "¨") ("zwnj" "\\/{}" nil "&zwnj;" "" "" "‌") ("zwj" "" nil "&zwj;" "" "" "‍") ("lrm" "" nil "&lrm;" "" "" "‎") ("rlm" "" nil "&rlm;" "" "" "‏") "** Smilies" ("smiley" "\\ddot\\smile" t "&#9786;" ":-)" ":-)" "☺") ("blacksmile" "\\ddot\\smile" t "&#9787;" ":-)" ":-)" "☻") ("sad" "\\ddot\\frown" t "&#9785;" ":-(" ":-(" "☹") ("frowny" "\\ddot\\frown" t "&#9785;" ":-(" ":-(" "☹") "** Suits" ("clubs" "\\clubsuit" t "&clubs;" "[clubs]" "[clubs]" "♣") ("clubsuit" "\\clubsuit" t "&clubs;" "[clubs]" "[clubs]" "♣") ("spades" "\\spadesuit" t "&spades;" "[spades]" "[spades]" "♠") ("spadesuit" "\\spadesuit" t "&spades;" "[spades]" "[spades]" "♠") ("hearts" "\\heartsuit" t "&hearts;" "[hearts]" "[hearts]" "♥") ("heartsuit" "\\heartsuit" t "&heartsuit;" "[hearts]" "[hearts]" "♥") ("diams" "\\diamondsuit" t "&diams;" "[diamonds]" "[diamonds]" "◆") ("diamondsuit" "\\diamondsuit" t "&diams;" "[diamonds]" "[diamonds]" "◆") ("diamond" "\\diamondsuit" t "&diamond;" "[diamond]" "[diamond]" "◆") ("Diamond" "\\diamondsuit" t "&diamond;" "[diamond]" "[diamond]" "◆") ("loz" "\\lozenge" t "&loz;" "[lozenge]" "[lozenge]" "⧫"))) (let (space-entities html-spaces (entity "_")) (dolist (n (number-sequence 1 20) (nreverse space-entities)) (let ((spaces (make-string n 32))) (push (list (setq entity (concat entity " ")) (format "\\hspace*{%sem}" (* n 0.5)) nil (setq html-spaces (concat "&ensp;" html-spaces)) spaces spaces (make-string n 8194)) space-entities))))))
-                nil [3033 26939])
-            ("org-entity-get" function (:arguments ("name")) nil [26941 27163])
-            ("org-entities-create-table" function (:user-visible-flag t) nil [27238 27994])
-            ("org-pretty-entities" variable nil nil [27996 28024])
-            ("org-entities-help" function (:user-visible-flag t) nil [28055 29069])
-            ("org-entities" package nil nil [29072 29095]))          
-      :file "org-entities.el"
-      :pointmax 29173
-      :fsize 29789
-      :lastmodtime '(23525 29590 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-faces" customgroup (:user-visible-flag t) nil [1101 1192])
-            ("org-default" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [1194 1291])
-            ("org-hide" variable
-               (:default-value (quote ((((background light)) (:foreground "white")) (((background dark)) (:foreground "black"))))
-                :type "face")
-                nil [1293 1567])
-            ("org-level-1" variable
-               (:default-value (quote ((t :inherit outline-1)))
-                :type "face")
-                nil [1569 1673])
-            ("org-level-2" variable
-               (:default-value (quote ((t :inherit outline-2)))
-                :type "face")
-                nil [1675 1779])
-            ("org-level-3" variable
-               (:default-value (quote ((t :inherit outline-3)))
-                :type "face")
-                nil [1781 1885])
-            ("org-level-4" variable
-               (:default-value (quote ((t :inherit outline-4)))
-                :type "face")
-                nil [1887 1991])
-            ("org-level-5" variable
-               (:default-value (quote ((t :inherit outline-5)))
-                :type "face")
-                nil [1993 2097])
-            ("org-level-6" variable
-               (:default-value (quote ((t :inherit outline-6)))
-                :type "face")
-                nil [2099 2203])
-            ("org-level-7" variable
-               (:default-value (quote ((t :inherit outline-7)))
-                :type "face")
-                nil [2205 2309])
-            ("org-level-8" variable
-               (:default-value (quote ((t :inherit outline-8)))
-                :type "face")
-                nil [2311 2415])
-            ("org-special-keyword" variable
-               (:default-value (quote ((t :inherit font-lock-keyword-face)))
-                :type "face")
-                nil [2417 2541])
-            ("org-drawer" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8)) (:foreground "blue" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [2543 3069])
-            ("org-property-value" variable (:type "face") nil [3071 3166])
-            ("org-column" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:background "grey90" :weight normal :slant normal :strike-through nil :underline nil)) (((class color) (min-colors 16) (background dark)) (:background "grey30" :weight normal :slant normal :strike-through nil :underline nil)) (((class color) (min-colors 8)) (:background "cyan" :foreground "black" :weight normal :slant normal :strike-through nil :underline nil)) (t (:inverse-video t))))
-                :type "face")
-                nil [3168 4715])
-            ("org-column-title" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:background "grey90" :underline t :weight bold)) (((class color) (min-colors 16) (background dark)) (:background "grey30" :underline t :weight bold)) (((class color) (min-colors 8)) (:background "cyan" :foreground "black" :underline t :weight bold)) (t (:inverse-video t))))
-                :type "face")
-                nil [4717 5170])
-            ("org-agenda-column-dateline" variable
-               (:default-value (quote ((t :inherit org-column)))
-                :type "face")
-                nil [5172 5321])
-            ("org-warning" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [5323 5445])
-            ("org-archived" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [5447 5556])
-            ("org-link" variable
-               (:default-value (quote ((t :inherit link)))
-                :type "face")
-                nil [5558 5637])
-            ("org-footnote" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Purple" :underline t)) (((class color) (background dark)) (:foreground "Cyan" :underline t)) (t (:underline t))))
-                :type "face")
-                nil [5639 5880])
-            ("org-ellipsis" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "DarkGoldenrod" :underline t)) (((class color) (background dark)) (:foreground "LightGoldenrod" :underline t)) (t (:strike-through t))))
-                :type "face")
-                nil [5882 6163])
-            ("org-target" variable
-               (:default-value (quote ((((class color) (background light)) (:underline t)) (((class color) (background dark)) (:underline t)) (t (:underline t))))
-                :type "face")
-                nil [6165 6367])
-            ("org-date" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Purple" :underline t)) (((class color) (background dark)) (:foreground "Cyan" :underline t)) (t (:underline t))))
-                :type "face")
-                nil [6369 6613])
-            ("org-date-selected" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "Red1" :inverse-video t)) (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :inverse-video t)) (((class color) (min-colors 8) (background light)) (:foreground "red" :inverse-video t)) (((class color) (min-colors 8) (background dark)) (:foreground "red" :inverse-video t)) (t (:inverse-video t))))
-                :type "face")
-                nil [6615 7221])
-            ("org-sexp-date" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Purple")) (((class color) (background dark)) (:foreground "Cyan")) (t (:underline t))))
-                :type "face")
-                nil [7223 7465])
-            ("org-tag" variable
-               (:default-value (quote ((t (:bold t))))
-                :type "face")
-                nil [7467 7640])
-            ("org-list-dt" variable
-               (:default-value (quote ((t (:bold t))))
-                :type "face")
-                nil [7642 7748])
-            ("org-todo" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "Red1" :bold t)) (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :bold t)) (((class color) (min-colors 8) (background light)) (:foreground "red" :bold t)) (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t)) (t (:inverse-video t :bold t))))
-                :type "face")
-                nil [7750 8236])
-            ("org-done" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen" :bold t)) (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen" :bold t)) (((class color) (min-colors 8)) (:foreground "green")) (t (:bold t))))
-                :type "face")
-                nil [8238 8635])
-            ("org-agenda-done" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen")) (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen")) (((class color) (min-colors 8)) (:foreground "green")) (t (:bold nil))))
-                :type "face")
-                nil [8637 9352])
-            ("org-headline-done" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon")) (((class color) (min-colors 8) (background light)) (:bold nil))))
-                :type "face")
-                nil [9354 9854])
-            ("org-faces-easy-properties" variable (:default-value (quote ((todo . :foreground) (tag . :foreground) (priority . :foreground)))) nil [9856 10402])
-            ("org-todo-keyword-faces" variable nil nil [10404 11061])
-            ("org-priority" variable
-               (:default-value (quote ((t :inherit font-lock-keyword-face)))
-                :type "face")
-                nil [11063 11180])
-            ("org-priority-faces" variable nil nil [11182 11789])
-            ("org-tags-special-faces-re" variable nil nil [11791 11829])
-            ("org-set-tag-faces" function (:arguments ("var" "value")) nil [11830 12039])
-            ("org-checkbox" variable
-               (:default-value (quote ((t :inherit bold)))
-                :type "face")
-                nil [12041 12129])
-            ("org-checkbox-statistics-todo" variable
-               (:default-value (quote ((t (:inherit org-todo))))
-                :type "face")
-                nil [12131 12266])
-            ("org-checkbox-statistics-done" variable
-               (:default-value (quote ((t (:inherit org-done))))
-                :type "face")
-                nil [12268 12401])
-            ("org-tag-faces" variable nil nil [12403 13131])
-            ("org-table" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8) (background light)) (:foreground "blue")) (((class color) (min-colors 8) (background dark)))))
-                :type "face")
-                nil [13133 13707])
-            ("org-formula" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Firebrick")) (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1")) (((class color) (min-colors 8) (background light)) (:foreground "red")) (((class color) (min-colors 8) (background dark)) (:foreground "red")) (t (:bold t :italic t))))
-                :type "face")
-                nil [13709 14121])
-            ("org-code" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [14123 14252])
-            ("org-meta-line" variable
-               (:default-value (quote ((t :inherit font-lock-comment-face)))
-                :type "face")
-                nil [14254 14400])
-            ("org-document-title" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "midnight blue" :weight bold)) (((class color) (background dark)) (:foreground "pale turquoise" :weight bold)) (t (:weight bold))))
-                :type "face")
-                nil [14402 14717])
-            ("org-document-info" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "midnight blue")) (((class color) (background dark)) (:foreground "pale turquoise")) (t nil)))
-                :type "face")
-                nil [14719 15033])
-            ("org-document-info-keyword" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [15035 15178])
-            ("org-block" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [15180 15408])
-            ("org-block-begin-line" variable
-               (:default-value (quote ((t (:inherit org-meta-line))))
-                :type "face")
-                nil [15410 15558])
-            ("org-block-end-line" variable
-               (:default-value (quote ((t (:inherit org-block-begin-line))))
-                :type "face")
-                nil [15560 15711])
-            ("org-verbatim" variable
-               (:default-value (quote ((t (:inherit shadow))))
-                :type "face")
-                nil [15713 15846])
-            ("org-quote" variable
-               (:default-value (quote ((t (:inherit org-block))))
-                :type "face")
-                nil [15848 15966])
-            ("org-verse" variable
-               (:default-value (quote ((t (:inherit org-block))))
-                :type "face")
-                nil [15968 16086])
-            ("org-fontify-quote-and-verse-blocks" variable nil nil [16088 16406])
-            ("org-clock-overlay" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:background "LightGray" :foreground "black")) (((class color) (min-colors 88) (background dark)) (:background "SkyBlue4" :foreground "white")) (((class color) (min-colors 16) (background light)) (:background "gray" :foreground "black")) (((class color) (min-colors 16) (background dark)) (:background "SkyBlue4" :foreground "white")) (((class color) (min-colors 8)) (:background "cyan" :foreground "black")) (t (:inverse-video t))))
-                :type "face")
-                nil [16408 17083])
-            ("org-agenda-structure" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8)) (:foreground "blue" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [17085 17639])
-            ("org-agenda-date" variable
-               (:default-value (quote ((t (:inherit org-agenda-structure))))
-                :type "face")
-                nil [17641 17766])
-            ("org-agenda-date-today" variable
-               (:default-value (quote ((t (:inherit org-agenda-date :weight bold :italic t))))
-                :type "face")
-                nil [17768 17913])
-            ("org-agenda-clocking" variable
-               (:default-value (quote ((t (:inherit secondary-selection))))
-                :type "face")
-                nil [17915 18057])
-            ("org-agenda-date-weekend" variable
-               (:default-value (quote ((t (:inherit org-agenda-date :weight bold))))
-                :type "face")
-                nil [18059 18299])
-            ("org-scheduled" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "DarkGreen")) (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen")) (((class color) (min-colors 8)) (:foreground "green")) (t (:bold t :italic t))))
-                :type "face")
-                nil [18301 18645])
-            ("org-scheduled-today" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "DarkGreen")) (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen")) (((class color) (min-colors 8)) (:foreground "green")) (t (:bold t :italic t))))
-                :type "face")
-                nil [18647 18997])
-            ("org-agenda-dimmed-todo-face" variable
-               (:default-value (quote ((((background light)) (:foreground "grey50")) (((background dark)) (:foreground "grey50"))))
-                :type "face")
-                nil [18999 19206])
-            ("org-scheduled-previously" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Firebrick")) (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1")) (((class color) (min-colors 8) (background light)) (:foreground "red")) (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [19208 19667])
-            ("org-upcoming-deadline" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Firebrick")) (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1")) (((class color) (min-colors 8) (background light)) (:foreground "red")) (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [19669 20125])
-            ("org-agenda-deadline-faces" variable (:default-value (quote ((1.0 . org-warning) (0.5 . org-upcoming-deadline) (0.0 . default)))) nil [20127 21122])
-            ("org-agenda-restriction-lock" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:background "#eeeeee")) (((class color) (min-colors 88) (background dark)) (:background "#1C1C1C")) (((class color) (min-colors 16) (background light)) (:background "#eeeeee")) (((class color) (min-colors 16) (background dark)) (:background "#1C1C1C")) (((class color) (min-colors 8)) (:background "cyan" :foreground "black")) (t (:inverse-video t))))
-                :type "face")
-                nil [21124 21661])
-            ("org-agenda-filter-tags" variable
-               (:default-value (quote ((t :inherit mode-line)))
-                :type "face")
-                nil [21663 21805])
-            ("org-agenda-filter-regexp" variable
-               (:default-value (quote ((t :inherit mode-line)))
-                :type "face")
-                nil [21807 21954])
-            ("org-agenda-filter-category" variable
-               (:default-value (quote ((t :inherit mode-line)))
-                :type "face")
-                nil [21956 22106])
-            ("org-agenda-filter-effort" variable
-               (:default-value (quote ((t :inherit mode-line)))
-                :type "face")
-                nil [22108 22252])
-            ("org-time-grid" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod")) (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod")) (((class color) (min-colors 8)) (:foreground "yellow" :weight light))))
-                :type "face")
-                nil [22254 22623])
-            ("org-agenda-current-time" variable
-               (:default-value (quote ((t (:inherit org-time-grid))))
-                :type "face")
-                nil [22625 22767])
-            ("org-agenda-diary" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [22769 22904])
-            ("org-agenda-calendar-event" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [22906 23046])
-            ("org-agenda-calendar-sexp" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [23048 23185])
-            ("org-level-faces" variable
-               (:constant-flag t
-                :default-value (quote (org-level-1 org-level-2 org-level-3 org-level-4 org-level-5 org-level-6 org-level-7 org-level-8)))
-                nil [23187 23316])
-            ("org-n-level-faces" variable (:default-value (length org-level-faces)) nil [23318 23611])
-            ("org-cycle-level-faces" variable (:default-value t) nil [23613 23940])
-            ("org-latex-and-related" variable
-               (:default-value (let ((font (cond ((assq :inherit custom-face-attributes) (quote (:inherit underline))) (t (quote (:underline t)))))) (\` ((((class grayscale) (background light)) (:foreground "DimGray" (\,@ font))) (((class grayscale) (background dark)) (:foreground "LightGray" (\,@ font))) (((class color) (background light)) (:foreground "SaddleBrown")) (((class color) (background dark)) (:foreground "burlywood")) (t ((\,@ font))))))
-                :type "face")
-                nil [23942 24578])
-            ("org-macro" variable
-               (:default-value (quote ((t :inherit org-latex-and-related)))
-                :type "face")
-                nil [24580 24730])
-            ("org-tag-group" variable
-               (:default-value (quote ((t :inherit org-tag)))
-                :type "face")
-                nil [24732 24876])
-            ("org-mode-line-clock" variable
-               (:default-value (quote ((t (:inherit mode-line))))
-                :type "face")
-                nil [24878 25001])
-            ("org-mode-line-clock-overrun" variable
-               (:default-value (quote ((t (:inherit mode-line :background "red"))))
-                :type "face")
-                nil [25003 25172])
-            ("org-faces" package nil nil [25174 25194]))          
-      :file "org-faces.el"
-      :pointmax 25223
-      :fsize 25222
-      :lastmodtime '(23525 29590 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [3192 3209])
-            ("org-macs" include nil nil [3210 3229])
-            ("org-compat" include nil nil [3230 3251])
-            ("org-M-RET-may-split-line" variable nil nil [3253 3286])
-            ("org-auto-align-tags" variable nil nil [3287 3315])
-            ("org-blank-before-new-entry" variable nil nil [3316 3351])
-            ("org-clock-string" variable nil nil [3352 3377])
-            ("org-closed-string" variable nil nil [3378 3404])
-            ("org-deadline-string" variable nil nil [3405 3433])
-            ("org-description-max-indent" variable nil nil [3434 3469])
-            ("org-done-keywords" variable nil nil [3470 3496])
-            ("org-drawer-regexp" variable nil nil [3497 3523])
-            ("org-element-all-objects" variable nil nil [3524 3556])
-            ("org-inhibit-startup" variable nil nil [3557 3585])
-            ("org-odd-levels-only" variable nil nil [3586 3614])
-            ("org-outline-regexp-bol" variable nil nil [3615 3646])
-            ("org-scheduled-string" variable nil nil [3647 3676])
-            ("org-todo-line-regexp" variable nil nil [3677 3706])
-            ("org-ts-regexp" variable nil nil [3707 3729])
-            ("org-ts-regexp-both" variable nil nil [3730 3757])
-            ("declare-function" code nil nil [3759 3825])
-            ("declare-function" code nil nil [3826 3895])
-            ("declare-function" code nil nil [3896 3950])
-            ("declare-function" code nil nil [3951 4009])
-            ("declare-function" code nil nil [4010 4055])
-            ("declare-function" code nil nil [4056 4112])
-            ("declare-function" code nil nil [4113 4185])
-            ("declare-function" code nil nil [4186 4252])
-            ("declare-function" code nil nil [4253 4339])
-            ("declare-function" code nil nil [4340 4413])
-            ("declare-function" code nil nil [4414 4537])
-            ("declare-function" code nil nil [4538 4603])
-            ("declare-function" code nil nil [4604 4702])
-            ("declare-function" code nil nil [4703 4775])
-            ("declare-function" code nil nil [4776 4862])
-            ("declare-function" code nil nil [4863 4929])
-            ("declare-function" code nil nil [4930 4989])
-            ("declare-function" code nil nil [4990 5051])
-            ("declare-function" code nil nil [5052 5114])
-            ("declare-function" code nil nil [5115 5202])
-            ("declare-function" code nil nil [5203 5267])
-            ("declare-function" code nil nil [5268 5340])
-            ("declare-function" code nil nil [5341 5394])
-            ("declare-function" code nil nil [5395 5488])
-            ("declare-function" code nil nil [5489 5568])
-            ("declare-function" code nil nil [5569 5659])
-            ("declare-function" code nil nil [5660 5711])
-            ("declare-function" code nil nil [5712 5773])
-            ("declare-function" code nil nil [5774 5820])
-            ("declare-function" code nil nil [5821 5868])
-            ("declare-function" code nil nil [5869 5938])
-            ("declare-function" code nil nil [5939 6007])
-            ("declare-function" code nil nil [6008 6070])
-            ("declare-function" code nil nil [6071 6134])
-            ("declare-function" code nil nil [6135 6203])
-            ("declare-function" code nil nil [6204 6251])
-            ("declare-function" code nil nil [6252 6301])
-            ("declare-function" code nil nil [6302 6347])
-            ("declare-function" code nil nil [6348 6401])
-            ("declare-function" code nil nil [6402 6448])
-            ("declare-function" code nil nil [6449 6515])
-            ("declare-function" code nil nil [6516 6560])
-            ("declare-function" code nil nil [6561 6615])
-            ("declare-function" code nil nil [6616 6671])
-            ("declare-function" code nil nil [6672 6730])
-            ("declare-function" code nil nil [6731 6792])
-            ("declare-function" code nil nil [6793 6850])
-            ("declare-function" code nil nil [6851 6895])
-            ("declare-function" code nil nil [6896 6952])
-            ("declare-function" code nil nil [6953 7016])
-            ("declare-function" code nil nil [7017 7069])
-            ("declare-function" code nil nil [7070 7126])
-            ("org-plain-lists" customgroup (:user-visible-flag t) nil [7160 7287])
-            ("org-cycle-include-plain-lists" variable (:default-value t) nil [7289 8303])
-            ("org-list-demote-modify-bullet" variable nil nil [8305 9245])
-            ("org-plain-list-ordered-item-terminator" variable (:default-value t) nil [9247 9907])
-            ("org-list-allow-alphabetical" variable nil nil [9909 10569])
-            ("org-list-two-spaces-after-bullet-regexp" variable nil nil [10571 11100])
-            ("org-list-automatic-rules" variable (:default-value (quote ((checkbox . t) (indent . t)))) nil [11102 12177])
-            ("org-list-use-circular-motion" variable nil nil [12179 12625])
-            ("org-checkbox-statistics-hook" variable nil nil [12627 12917])
-            ("org-checkbox-hierarchical-statistics" variable (:default-value t) nil [12919 13256])
-            ("org-list-description-max-indent" variable (:default-value 20) nil [13258 13499])
-            ("org-list-indent-offset" variable nil nil [13501 13755])
-            ("org-list-radio-list-templates" variable (:default-value (quote ((latex-mode "% BEGIN RECEIVE ORGLST %n
-% END RECEIVE ORGLST %n
-\\begin{comment}
-#+ORGLST: SEND %n org-list-to-latex
--
-\\end{comment}
-") (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
-@c END RECEIVE ORGLST %n
-@ignore
-#+ORGLST: SEND %n org-list-to-texinfo
--
-@end ignore
-") (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
-<!-- END RECEIVE ORGLST %n -->
-<!--
-#+ORGLST: SEND %n org-list-to-html
--
--->
-")))) nil [13757 14479])
-            ("org-list-forbidden-blocks" variable (:default-value (quote ("example" "verse" "src" "export"))) nil [14481 14629])
-            ("org-list-export-context" variable (:default-value (quote (block inlinetask))) nil [14631 14893])
-            ("org-list-end-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*
-[ 	]*
-")
-                nil [14926 15016])
-            ("org-list-full-item-re" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*\\(\\(?:[-+*]\\|\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\)\\(?:[ 	]+\\|$\\)\\)" "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ 	]*\\)?" "\\(?:\\(\\[[ X-]\\]\\)\\(?:[ 	]+\\|$\\)\\)?" "\\(?:\\(.*\\)[ 	]+::\\(?:[ 	]+\\|$\\)\\)?"))
-                nil [15018 15438])
-            ("org-item-re" function nil nil [15440 15918])
-            ("org-item-beginning-re" function nil nil [15920 16040])
-            ("org-list-at-regexp-after-bullet-p" function (:arguments ("regexp")) nil [16042 16510])
-            ("org-list-in-valid-context-p" function nil nil [16512 16652])
-            ("org-in-item-p" function nil nil [16654 19153])
-            ("org-at-item-p" function nil nil [19155 19344])
-            ("org-at-item-bullet-p" function nil nil [19346 19529])
-            ("org-at-item-timer-p" function nil nil [19531 19709])
-            ("org-at-item-description-p" function nil nil [19711 19865])
-            ("org-at-item-checkbox-p" function nil nil [19867 20031])
-            ("org-at-item-counter-p" function nil nil [20033 20221])
-            ("org-list-context" function nil nil [20263 22797])
-            ("org-list-struct" function nil nil [22799 29562])
-            ("org-list-struct-assoc-end" function (:arguments ("struct" "end-list")) nil [29564 30239])
-            ("org-list-prevs-alist" function (:arguments ("struct")) nil [30241 30541])
-            ("org-list-parents-alist" function (:arguments ("struct")) nil [30543 32146])
-            ("org-list-get-nth" function (:arguments ("n" "key" "struct")) nil [32166 32279])
-            ("org-list-set-nth" function (:arguments ("n" "key" "struct" "new")) nil [32281 32448])
-            ("org-list-get-ind" function (:arguments ("item" "struct")) nil [32450 32568])
-            ("org-list-set-ind" function (:arguments ("item" "struct" "ind")) nil [32570 32730])
-            ("org-list-get-bullet" function (:arguments ("item" "struct")) nil [32732 32848])
-            ("org-list-set-bullet" function (:arguments ("item" "struct" "bullet")) nil [32850 33017])
-            ("org-list-get-counter" function (:arguments ("item" "struct")) nil [33019 33137])
-            ("org-list-get-checkbox" function (:arguments ("item" "struct")) nil [33139 33266])
-            ("org-list-set-checkbox" function (:arguments ("item" "struct" "checkbox")) nil [33268 33445])
-            ("org-list-get-tag" function (:arguments ("item" "struct")) nil [33447 33566])
-            ("org-list-get-item-end" function (:arguments ("item" "struct")) nil [33568 33689])
-            ("org-list-get-item-end-before-blank" function (:arguments ("item" "struct")) nil [33691 33973])
-            ("org-list-get-parent" function (:arguments ("item" "struct" "parents")) nil [33975 34258])
-            ("org-list-has-child-p" function (:arguments ("item" "struct")) nil [34260 34638])
-            ("org-list-get-next-item" function (:arguments ("item" "_struct" "prevs")) nil [34640 34881])
-            ("org-list-get-prev-item" function (:arguments ("item" "_struct" "prevs")) nil [34883 35127])
-            ("org-list-get-subtree" function (:arguments ("item" "struct")) nil [35129 35559])
-            ("org-list-get-all-items" function (:arguments ("item" "struct" "prevs")) nil [35561 36119])
-            ("org-list-get-children" function (:arguments ("item" "_struct" "parents")) nil [36121 36496])
-            ("org-list-get-top-point" function (:arguments ("struct")) nil [36498 36622])
-            ("org-list-get-bottom-point" function (:arguments ("struct")) nil [36624 36818])
-            ("org-list-get-list-begin" function (:arguments ("item" "struct" "prevs")) nil [36820 37200])
-            ("defalias" code nil nil [37202 37262])
-            ("org-list-get-last-item" function (:arguments ("item" "struct" "prevs")) nil [37264 37639])
-            ("org-list-get-list-end" function (:arguments ("item" "struct" "prevs")) nil [37641 37924])
-            ("org-list-get-list-type" function (:arguments ("item" "struct" "prevs")) nil [37926 38491])
-            ("org-list-get-item-number" function (:arguments ("item" "struct" "prevs" "parents")) nil [38493 39871])
-            ("org-list-search-generic" function (:arguments ("search" "re" "bound" "noerr")) nil [39891 40475])
-            ("org-list-search-backward" function (:arguments ("regexp" "bound" "noerror")) nil [40477 40794])
-            ("org-list-search-forward" function (:arguments ("regexp" "bound" "noerror")) nil [40796 41109])
-            ("org-list-bullet-string" function (:arguments ("bullet")) nil [41141 41642])
-            ("org-list-swap-items" function (:arguments ("beg-A" "beg-B" "struct")) nil [41644 45028])
-            ("org-list-separating-blank-lines-number" function (:arguments ("pos" "struct" "prevs")) nil [45030 47037])
-            ("org-list-insert-item" function (:arguments ("pos" "struct" "prevs" "checkbox" "after-bullet")) nil [47039 52173])
-            ("org-list-delete-item" function (:arguments ("item" "struct")) nil [52175 53289])
-            ("org-list-send-item" function (:arguments ("item" "dest" "struct")) nil [53291 57536])
-            ("org-list-struct-outdent" function (:arguments ("start" "end" "struct" "parents")) nil [57538 58616])
-            ("org-list-struct-indent" function (:arguments ("start" "end" "struct" "parents" "prevs")) nil [58618 60757])
-            ("org-list-use-alpha-bul-p" function (:arguments ("first" "struct" "prevs")) nil [60788 61740])
-            ("org-list-inc-bullet-maybe" function (:arguments ("bullet")) nil [61742 62296])
-            ("org-list-struct-fix-bul" function (:arguments ("struct" "prevs")) nil [62298 64936])
-            ("org-list-struct-fix-ind" function (:arguments ("struct" "parents" "bullet-size")) nil [64938 65982])
-            ("org-list-struct-fix-box" function (:arguments ("struct" "parents" "prevs" "ordered")) nil [65984 68484])
-            ("org-list-struct-fix-item-end" function (:arguments ("struct")) nil [68486 69468])
-            ("org-list-struct-apply-struct" function (:arguments ("struct" "old-struct")) nil [69470 74968])
-            ("org-list-write-struct" function (:arguments ("struct" "parents" "old-struct")) nil [74970 76327])
-            ("org-apply-on-list" function (:arguments ("function" "init-value" "args")) nil [76348 77252])
-            ("org-list-set-item-visibility" function (:arguments ("item" "struct" "view")) nil [77254 78174])
-            ("org-list-item-body-column" function (:arguments ("item")) nil [78176 79003])
-            ("defalias" code nil nil [79035 79085])
-            ("org-beginning-of-item" function (:user-visible-flag t) nil [79087 79307])
-            ("org-beginning-of-item-list" function (:user-visible-flag t) nil [79309 79707])
-            ("org-end-of-item-list" function (:user-visible-flag t) nil [79709 80088])
-            ("org-end-of-item" function (:user-visible-flag t) nil [80090 80402])
-            ("org-previous-item" function (:user-visible-flag t) nil [80404 81024])
-            ("org-next-item" function (:user-visible-flag t) nil [81026 81637])
-            ("org-move-item-down" function (:user-visible-flag t) nil [81639 82547])
-            ("org-move-item-up" function (:user-visible-flag t) nil [82549 83356])
-            ("org-insert-item" function
-               (:user-visible-flag t
-                :arguments ("checkbox"))
-                nil [83358 84824])
-            ("org-list-repair" function (:user-visible-flag t) nil [84826 85115])
-            ("org-cycle-list-bullet" function
-               (:user-visible-flag t
-                :arguments ("which"))
-                nil [85117 87784])
-            ("org-toggle-checkbox" function
-               (:user-visible-flag t
-                :arguments ("toggle-presence"))
-                nil [87786 91663])
-            ("org-reset-checkbox-state-subtree" function (:user-visible-flag t) nil [91665 92157])
-            ("org-update-checkbox-count" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [92159 96826])
-            ("org-get-checkbox-statistics-face" function nil nil [96828 97310])
-            ("org-update-checkbox-count-maybe" function (:arguments ("all")) nil [97312 97626])
-            ("org-last-indent-begin-marker" variable (:default-value (make-marker)) nil [97628 97679])
-            ("org-last-indent-end-marker" variable (:default-value (make-marker)) nil [97680 97729])
-            ("org-list-indent-item-generic" function (:arguments ("arg" "no-subtree" "struct")) nil [97730 101175])
-            ("org-outdent-item" function (:user-visible-flag t) nil [101177 101786])
-            ("org-indent-item" function (:user-visible-flag t) nil [101788 102394])
-            ("org-outdent-item-tree" function (:user-visible-flag t) nil [102396 103013])
-            ("org-indent-item-tree" function (:user-visible-flag t) nil [103015 103629])
-            ("org-tab-ind-state" variable nil nil [103631 103657])
-            ("org-adapt-indentation" variable nil nil [103658 103688])
-            ("org-cycle-item-indentation" function nil nil [103689 105613])
-            ("org-sort-list" function
-               (:user-visible-flag t
-                :arguments ("with-case" "sorting-type" "getkey-func" "compare-func" "interactive?"))
-                nil [105615 110052])
-            ("org-toggle-item" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [110054 115488])
-            ("org-list-to-lisp" function (:arguments ("delete")) nil [115520 118307])
-            ("org-list-make-subtree" function (:user-visible-flag t) nil [118309 118595])
-            ("org-list-insert-radio-list" function (:user-visible-flag t) nil [118597 119108])
-            ("org-list-send-list" function
-               (:user-visible-flag t
-                :arguments ("maybe"))
-                nil [119110 121158])
-            ("org-list-to-generic" function (:arguments ("list" "params")) nil [121160 125666])
-            ("org-list--depth" function (:arguments ("element")) nil [125668 125928])
-            ("org-list--trailing-newlines" function (:arguments ("string")) nil [125930 126161])
-            ("org-list--generic-eval" function (:arguments ("value" "args")) nil [126163 126484])
-            ("org-list--to-generic-plain-list" function (:arguments ("params")) nil [126486 127803])
-            ("org-list--to-generic-item" function (:arguments ("params")) nil [127805 130469])
-            ("org-list-to-latex" function (:arguments ("list" "params")) nil [130471 130833])
-            ("org-list-to-html" function (:arguments ("list" "params")) nil [130835 131193])
-            ("org-list-to-texinfo" function (:arguments ("list" "params")) nil [131195 131565])
-            ("org-list-to-org" function (:arguments ("list" "params")) nil [131567 132213])
-            ("org-list-to-subtree" function (:arguments ("list" "params")) nil [132215 133284])
-            ("org-list" package nil nil [133286 133305]))          
-      :file "org-list.el"
-      :pointmax 133333
-      :fsize 133332
-      :lastmodtime '(23525 29591 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-macs" include nil nil [1122 1141])
-            ("org-compat" include nil nil [1142 1163])
-            ("pcomplete" include nil nil [1164 1184])
-            ("declare-function" code nil nil [1186 1264])
-            ("declare-function" code nil nil [1265 1312])
-            ("declare-function" code nil nil [1313 1353])
-            ("declare-function" code nil nil [1354 1462])
-            ("declare-function" code nil nil [1463 1530])
-            ("declare-function" code nil nil [1531 1606])
-            ("org-drawer-regexp" variable nil nil [1638 1664])
-            ("org-property-re" variable nil nil [1665 1689])
-            ("org-current-tag-alist" variable nil nil [1690 1720])
-            ("org-thing-at-point" function nil nil [1722 3619])
-            ("org-command-at-point" function nil nil [3621 4112])
-            ("org-parse-arguments" function nil nil [4114 4660])
-            ("org-pcomplete-initial" function nil nil [4662 4902])
-            ("org-options-keywords" variable nil nil [4904 4933])
-            ("org-element-affiliated-keywords" variable nil nil [4950 4990])
-            ("declare-function" code nil nil [5013 5064])
-            ("pcomplete/org-mode/file-option" function nil nil [5065 5985])
-            ("pcomplete/org-mode/file-option/author" function nil nil [5987 6129])
-            ("org-time-stamp-formats" variable nil nil [6131 6162])
-            ("pcomplete/org-mode/file-option/date" function nil nil [6163 6336])
-            ("pcomplete/org-mode/file-option/email" function nil nil [6338 6481])
-            ("org-export-exclude-tags" variable nil nil [6483 6515])
-            ("pcomplete/org-mode/file-option/exclude_tags" function nil nil [6516 6755])
-            ("org-file-tags" variable nil nil [6757 6779])
-            ("pcomplete/org-mode/file-option/filetags" function nil nil [6780 6964])
-            ("org-export-default-language" variable nil nil [6966 7002])
-            ("pcomplete/org-mode/file-option/language" function nil nil [7003 7215])
-            ("org-default-priority" variable nil nil [7217 7246])
-            ("org-highest-priority" variable nil nil [7247 7276])
-            ("org-lowest-priority" variable nil nil [7277 7305])
-            ("pcomplete/org-mode/file-option/priorities" function nil nil [7306 7535])
-            ("org-export-select-tags" variable nil nil [7537 7568])
-            ("pcomplete/org-mode/file-option/select_tags" function nil nil [7569 7804])
-            ("org-startup-options" variable nil nil [7806 7834])
-            ("pcomplete/org-mode/file-option/startup" function nil nil [7835 8323])
-            ("pcomplete/org-mode/file-option/tags" function nil nil [8325 8499])
-            ("pcomplete/org-mode/file-option/title" function nil nil [8501 8842])
-            ("declare-function" code nil nil [8845 8904])
-            ("pcomplete/org-mode/file-option/options" function nil nil [8905 9657])
-            ("pcomplete/org-mode/file-option/infojs_opt" function nil nil [9659 9929])
-            ("pcomplete/org-mode/file-option/bind" function nil nil [9931 10184])
-            ("org-link-abbrev-alist-local" variable nil nil [10186 10222])
-            ("org-link-abbrev-alist" variable nil nil [10223 10253])
-            ("pcomplete/org-mode/link" function nil nil [10254 10499])
-            ("org-entities" variable nil nil [10501 10522])
-            ("pcomplete/org-mode/tex" function nil nil [10523 10764])
-            ("org-todo-keywords-1" variable nil nil [10766 10794])
-            ("pcomplete/org-mode/todo" function nil nil [10795 10951])
-            ("org-todo-line-regexp" variable nil nil [10953 10982])
-            ("pcomplete/org-mode/searchhead" function nil nil [10983 11492])
-            ("pcomplete/org-mode/tag" function nil nil [11494 12022])
-            ("pcomplete/org-mode/prop" function nil nil [12024 12422])
-            ("pcomplete/org-mode/block-option/src" function nil nil [12424 13034])
-            ("pcomplete/org-mode/block-option/clocktable" function nil nil [13036 13413])
-            ("org-pcomplete-case-double" function (:arguments ("list")) nil [13415 13659])
-            ("org-pcomplete" package nil nil [13677 13701]))          
-      :file "org-pcomplete.el"
-      :pointmax 13734
-      :fsize 13733
-      :lastmodtime '(23525 29592 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1247 1264])
-            ("org-macs" include nil nil [1265 1284])
-            ("org-compat" include nil nil [1285 1306])
-            ("ob-keys" include nil nil [1307 1325])
-            ("ob-comint" include nil nil [1326 1346])
-            ("declare-function" code nil nil [1348 1397])
-            ("declare-function" code nil nil [1398 1462])
-            ("declare-function" code nil nil [1463 1519])
-            ("declare-function" code nil nil [1520 1595])
-            ("declare-function" code nil nil [1596 1668])
-            ("declare-function" code nil nil [1669 1758])
-            ("declare-function" code nil nil [1759 1831])
-            ("declare-function" code nil nil [1832 1891])
-            ("declare-function" code nil nil [1892 1985])
-            ("declare-function" code nil nil [1986 2047])
-            ("declare-function" code nil nil [2048 2119])
-            ("declare-function" code nil nil [2120 2177])
-            ("org-inhibit-startup" variable nil nil [2179 2207])
-            ("org-edit-src-turn-on-auto-save" variable nil nil [2209 2695])
-            ("org-edit-src-auto-save-idle-delay" variable nil nil [2697 3131])
-            ("org-coderef-label-format" variable (:default-value "(ref:%s)") nil [3133 3818])
-            ("org-edit-fixed-width-region-mode" variable (:default-value (quote artist-mode)) nil [3820 4157])
-            ("org-src-preserve-indentation" variable nil nil [4159 4766])
-            ("org-edit-src-content-indentation" variable (:default-value 2) nil [4768 5166])
-            ("org-edit-src-persistent-message" variable (:default-value t) nil [5168 5462])
-            ("org-src-ask-before-returning-to-edit-buffer" variable (:default-value t) nil [5464 5904])
-            ("org-src-window-setup" variable (:default-value (quote reorganize-frame)) nil [5906 6719])
-            ("org-src-mode-hook" variable nil nil [6721 7207])
-            ("org-src-lang-modes" variable (:default-value (quote (("ocaml" . tuareg) ("elisp" . emacs-lisp) ("ditaa" . artist) ("asymptote" . asy) ("dot" . fundamental) ("sqlite" . sql) ("calc" . fundamental) ("C" . c) ("cpp" . c++) ("C++" . c++) ("screen" . shell-script) ("shell" . sh) ("bash" . sh)))) nil [7209 7993])
-            ("org-src-block-faces" variable nil nil [7995 8710])
-            ("org-src-tab-acts-natively" variable nil nil [8712 8917])
-            ("org-src--allow-write-back" variable (:default-value t) nil [8960 8996])
-            ("org-src--auto-save-timer" variable nil nil [8997 9034])
-            ("org-src--babel-info" variable nil nil [9035 9067])
-            ("org-src--beg-marker" variable nil nil [9068 9100])
-            ("org-src--block-indentation" variable nil nil [9101 9140])
-            ("org-src--end-marker" variable nil nil [9141 9173])
-            ("org-src--from-org-mode" variable nil nil [9174 9209])
-            ("org-src--overlay" variable nil nil [9210 9239])
-            ("org-src--preserve-indentation" variable nil nil [9240 9282])
-            ("org-src--remote" variable nil nil [9283 9311])
-            ("org-src--saved-temp-window-config" variable nil nil [9312 9358])
-            ("org-src--source-type" variable nil nil [9359 9439])
-            ("org-src--tab-width" variable nil nil [9440 9596])
-            ("org-src--construct-edit-buffer-name" function (:arguments ("org-buffer-name" "lang")) nil [9598 9778])
-            ("org-src--edit-buffer" function (:arguments ("beg" "end")) nil [9780 10241])
-            ("org-src--source-buffer" function nil nil [10243 10509])
-            ("org-src--get-lang-mode" function (:arguments ("lang")) nil [10511 10799])
-            ("org-src--coordinates" function (:arguments ("pos" "beg" "end")) nil [10801 11386])
-            ("org-src--goto-coordinates" function (:arguments ("coord" "beg" "end")) nil [11388 11949])
-            ("org-src--contents-area" function (:arguments ("datum")) nil [11951 13904])
-            ("org-src--make-source-overlay" function (:arguments ("beg" "end" "edit-buffer")) nil [13906 14872])
-            ("org-src--remove-overlay" function nil nil [14874 15026])
-            ("org-src--on-datum-p" function (:arguments ("datum")) nil [15028 15477])
-            ("org-src--contents-for-write-back" function nil nil [15479 16876])
-            ("org-src--edit-element" function (:arguments ("datum" "name" "initialize" "write-back" "contents" "remote")) nil [16878 20997])
-            ("org-src-font-lock-fontify-block" function (:arguments ("lang" "start" "end")) nil [21038 22668])
-            ("org-escape-code-in-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [22693 23070])
-            ("org-escape-code-in-string" function (:arguments ("s")) nil [23072 23332])
-            ("org-unescape-code-in-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [23334 23721])
-            ("org-unescape-code-in-string" function (:arguments ("s")) nil [23723 23989])
-            ("org-src-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "'" (quote org-edit-src-exit)) (define-key map "" (quote org-edit-src-abort)) (define-key map "" (quote org-edit-src-save)) map)) nil [24018 24239])
-            ("define-minor-mode" code nil nil [24241 25751])
-            ("org-src-mode-configure-edit-buffer" function nil nil [25753 26224])
-            ("add-hook" code nil nil [26226 26292])
-            ("org-src-associate-babel-session" function
-               (:user-visible-flag t
-                :arguments ("info"))
-                nil [26326 26742])
-            ("org-src-babel-configure-edit-buffer" function nil nil [26744 26877])
-            ("add-hook" code nil nil [26879 26946])
-            ("org-src-do-at-code-block" function (:arguments ("body")) nil [26966 27259])
-            ("org-src-do-key-sequence-at-code-block" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [27261 28257])
-            ("org-src-edit-buffer-p" function (:arguments ("buffer")) nil [28259 28603])
-            ("org-src-switch-to-buffer" function (:arguments ("buffer" "context")) nil [28605 29453])
-            ("org-src-coderef-format" function (:arguments ("element")) nil [29455 30024])
-            ("org-src-coderef-regexp" function (:arguments ("fmt" "label")) nil [30026 30644])
-            ("org-edit-footnote-reference" function (:user-visible-flag t) nil [30646 32978])
-            ("org-edit-table.el" function (:user-visible-flag t) nil [32980 33811])
-            ("org-edit-latex-environment" function (:user-visible-flag t) nil [33813 34584])
-            ("org-edit-export-block" function (:user-visible-flag t) nil [34586 35671])
-            ("org-edit-src-code" function
-               (:user-visible-flag t
-                :arguments ("code" "edit-buffer-name"))
-                nil [35673 37637])
-            ("org-edit-inline-src-code" function (:user-visible-flag t) nil [37639 38945])
-            ("org-edit-fixed-width-region" function (:user-visible-flag t) nil [38947 39899])
-            ("org-edit-src-abort" function (:user-visible-flag t) nil [39901 40066])
-            ("org-edit-src-continue" function
-               (:user-visible-flag t
-                :arguments ("e"))
-                nil [40068 40421])
-            ("org-edit-src-save" function (:user-visible-flag t) nil [40423 41339])
-            ("org-edit-src-exit" function (:user-visible-flag t) nil [41341 43261])
-            ("org-src" package nil nil [43264 43282]))          
-      :file "org-src.el"
-      :pointmax 43309
-      :fsize 43308
-      :lastmodtime '(23525 29592 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1154 1171])
-            ("org-macs" include nil nil [1172 1191])
-            ("org-compat" include nil nil [1192 1213])
-            ("declare-function" code nil nil [1215 1259])
-            ("declare-function" code nil nil [1260 1321])
-            ("declare-function" code nil nil [1322 1375])
-            ("declare-function" code nil nil [1376 1435])
-            ("declare-function" code nil nil [1436 1492])
-            ("declare-function" code nil nil [1493 1568])
-            ("declare-function" code nil nil [1569 1641])
-            ("declare-function" code nil nil [1642 1727])
-            ("declare-function" code nil nil [1728 1800])
-            ("declare-function" code nil nil [1801 1860])
-            ("declare-function" code nil nil [1861 1941])
-            ("declare-function" code nil nil [1942 2012])
-            ("declare-function" code nil nil [2013 2060])
-            ("declare-function" code nil nil [2061 2130])
-            ("declare-function" code nil nil [2131 2183])
-            ("declare-function" code nil nil [2184 2239])
-            ("declare-function" code nil nil [2240 2292])
-            ("declare-function" code nil nil [2293 2359])
-            ("declare-function" code nil nil [2360 2417])
-            ("declare-function" code nil nil [2418 2475])
-            ("declare-function" code nil nil [2476 2525])
-            ("electric-indent-mode" variable nil nil [2527 2556])
-            ("org-blank-before-new-entry" variable nil nil [2557 2592])
-            ("org-bracket-link-regexp" variable nil nil [2613 2645])
-            ("org-complex-heading-regexp" variable nil nil [2666 2701])
-            ("org-odd-levels-only" variable nil nil [2722 2750])
-            ("org-outline-regexp" variable nil nil [2772 2799])
-            ("org-outline-regexp-bol" variable nil nil [2821 2852])
-            ("org-footnote-re" variable
-               (:constant-flag t
-                :default-value "\\[fn:\\(?:\\(?1:[-_[:word:]]+\\)?\\(:\\)\\|\\(?1:[-_[:word:]]+\\)\\]\\)")
-                nil [2893 3214])
-            ("org-footnote-definition-re" variable
-               (:constant-flag t
-                :default-value "^\\[fn:\\([-_[:word:]]+\\)\\]")
-                nil [3216 3390])
-            ("org-footnote-forbidden-blocks" variable
-               (:constant-flag t
-                :default-value (quote ("comment" "example" "export" "src")))
-                nil [3392 3523])
-            ("org-footnote" customgroup (:user-visible-flag t) nil [3547 3637])
-            ("org-footnote-section" variable (:default-value "Footnotes") nil [3639 4686])
-            ("org-footnote-define-inline" variable nil nil [4688 5030])
-            ("org-footnote-auto-label" variable (:default-value t) nil [5032 5713])
-            ("org-footnote-auto-adjust" variable nil nil [5715 6353])
-            ("org-footnote-fill-after-inline-note-extraction" variable nil nil [6355 6699])
-            ("org-footnote-in-valid-context-p" function nil nil [6720 7146])
-            ("org-footnote-at-reference-p" function nil nil [7148 8591])
-            ("org-footnote-at-definition-p" function nil nil [8593 9887])
-            ("org-footnote--allow-reference-p" function nil nil [9916 12156])
-            ("org-footnote--clear-footnote-section" function nil nil [12158 13096])
-            ("org-footnote--set-label" function (:arguments ("label")) nil [13098 13413])
-            ("org-footnote--collect-references" function (:arguments ("anonymous")) nil [13415 15932])
-            ("org-footnote--collect-definitions" function (:arguments ("delete")) nil [15934 17218])
-            ("org-footnote--goto-local-insertion-point" function nil nil [17220 17773])
-            ("org-footnote-get-next-reference" function (:arguments ("label" "backward" "limit")) nil [17794 18580])
-            ("org-footnote-next-reference-or-definition" function (:arguments ("limit")) nil [18582 19545])
-            ("org-footnote-goto-definition" function
-               (:user-visible-flag t
-                :arguments ("label" "location"))
-                nil [19547 20674])
-            ("org-footnote-goto-previous-reference" function
-               (:user-visible-flag t
-                :arguments ("label"))
-                nil [20676 21342])
-            ("org-footnote-normalize-label" function (:arguments ("label")) nil [21360 21642])
-            ("org-footnote-get-definition" function (:arguments ("label")) nil [21644 22558])
-            ("org-footnote-all-labels" function nil nil [22560 23107])
-            ("org-footnote-unique-label" function (:arguments ("current")) nil [23109 23522])
-            ("org-footnote-new" function (:user-visible-flag t) nil [23559 25364])
-            ("org-footnote-create-definition" function (:arguments ("label")) nil [25366 26211])
-            ("org-footnote-delete-references" function (:arguments ("label")) nil [26213 26575])
-            ("org-footnote-delete-definitions" function (:arguments ("label")) nil [26577 27319])
-            ("org-footnote-delete" function (:arguments ("label")) nil [27321 28594])
-            ("org-footnote-renumber-fn:N" function (:user-visible-flag t) nil [28638 29630])
-            ("org-footnote-sort" function nil nil [29632 31407])
-            ("org-footnote-normalize" function (:user-visible-flag t) nil [31409 34606])
-            ("org-footnote-auto-adjust-maybe" function nil nil [34608 35110])
-            ("org-footnote-action" function
-               (:user-visible-flag t
-                :arguments ("special"))
-                nil [35154 37294])
-            ("org-footnote" package nil nil [37297 37320]))          
-      :file "org-footnote.el"
-      :pointmax 37427
-      :fsize 37426
-      :lastmodtime '(23525 29590 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1896 1913])
-            ("org-macs" include nil nil [1914 1933])
-            ("org-compat" include nil nil [1934 1955])
-            ("declare-function" code nil nil [1957 2013])
-            ("declare-function" code nil nil [2014 2086])
-            ("declare-function" code nil nil [2087 2147])
-            ("declare-function" code nil nil [2148 2220])
-            ("declare-function" code nil nil [2221 2280])
-            ("declare-function" code nil nil [2281 2356])
-            ("declare-function" code nil nil [2357 2403])
-            ("declare-function" code nil nil [2404 2482])
-            ("declare-function" code nil nil [2483 2519])
-            ("declare-function" code nil nil [2520 2577])
-            ("declare-function" code nil nil [2578 2622])
-            ("declare-function" code nil nil [2623 2684])
-            ("declare-function" code nil nil [2685 2740])
-            ("defvar-local" code nil nil [2757 3093])
-            ("org-macro--collect-macros" function nil nil [3110 4879])
-            ("org-macro-initialize-templates" function nil nil [4881 6805])
-            ("org-macro-expand" function (:arguments ("macro" "templates")) nil [6807 7874])
-            ("org-macro-replace-all" function (:arguments ("templates" "finalize" "keywords")) nil [7876 10169])
-            ("org-macro-escape-arguments" function (:arguments ("args")) nil [10171 10961])
-            ("org-macro-extract-arguments" function (:arguments ("s")) nil [10963 11520])
-            ("org-macro--vc-modified-time" function (:arguments ("file")) nil [11580 12310])
-            ("org-macro--counter-table" variable nil nil [12312 12399])
-            ("org-macro--counter-initialize" function nil nil [12401 12550])
-            ("org-macro--counter-increment" function (:arguments ("name" "action")) nil [12552 13560])
-            ("org-macro" package nil nil [13563 13583]))          
-      :file "org-macro.el"
-      :pointmax 13611
-      :fsize 13610
-      :lastmodtime '(23525 29591 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "ob.el"
-      :fsize 1264
-      :lastmodtime '(23525 29589 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [4260 4277])
-            ("org-element" include nil nil [4278 4300])
-            ("org-macro" include nil nil [4301 4321])
-            ("ox" include nil nil [4322 4335])
-            ("ob" include nil nil [4336 4349])
-            ("cl-defstruct" code nil nil [4367 4506])
-            ("org-lint-missing-checker-name" function (:arguments ("_")) nil [4528 4656])
-            ("org-lint--checkers" variable
-               (:constant-flag t
-                :default-value (list (make-org-lint-checker :name (quote duplicate-custom-id) :description "Report duplicates CUSTOM_ID properties" :categories (quote (link))) (make-org-lint-checker :name (quote duplicate-name) :description "Report duplicate NAME values" :categories (quote (babel link))) (make-org-lint-checker :name (quote duplicate-target) :description "Report duplicate targets" :categories (quote (link))) (make-org-lint-checker :name (quote duplicate-footnote-definition) :description "Report duplicate footnote definitions" :categories (quote (footnote))) (make-org-lint-checker :name (quote orphaned-affiliated-keywords) :description "Report orphaned affiliated keywords" :trust (quote low)) (make-org-lint-checker :name (quote obsolete-affiliated-keywords) :description "Report obsolete affiliated keywords" :categories (quote (obsolete))) (make-org-lint-checker :name (quote deprecated-export-blocks) :description "Report deprecated export block syntax" :categories (quote (obsolete export)) :trust (quote low)) (make-org-lint-checker :name (quote deprecated-header-syntax) :description "Report deprecated Babel header syntax" :categories (quote (obsolete babel)) :trust (quote low)) (make-org-lint-checker :name (quote missing-language-in-src-block) :description "Report missing language in src blocks" :categories (quote (babel))) (make-org-lint-checker :name (quote missing-backend-in-export-block) :description "Report missing back-end in export blocks" :categories (quote (export))) (make-org-lint-checker :name (quote invalid-babel-call-block) :description "Report invalid Babel call blocks" :categories (quote (babel))) (make-org-lint-checker :name (quote colon-in-name) :description "Report NAME values with a colon" :categories (quote (babel))) (make-org-lint-checker :name (quote wrong-header-argument) :description "Report wrong babel headers" :categories (quote (babel))) (make-org-lint-checker :name (quote wrong-header-value) :description "Report invalid value in babel headers" :categories (quote (babel)) :trust (quote low)) (make-org-lint-checker :name (quote deprecated-category-setup) :description "Report misuse of CATEGORY keyword" :categories (quote (obsolete))) (make-org-lint-checker :name (quote invalid-coderef-link) :description "Report \"coderef\" links with unknown destination" :categories (quote (link))) (make-org-lint-checker :name (quote invalid-custom-id-link) :description "Report \"custom-id\" links with unknown destination" :categories (quote (link))) (make-org-lint-checker :name (quote invalid-fuzzy-link) :description "Report \"fuzzy\" links with unknown destination" :categories (quote (link))) (make-org-lint-checker :name (quote invalid-id-link) :description "Report \"id\" links with unknown destination" :categories (quote (link))) (make-org-lint-checker :name (quote link-to-local-file) :description "Report links to non-existent local files" :categories (quote (link)) :trust (quote low)) (make-org-lint-checker :name (quote non-existent-setupfile-parameter) :description "Report SETUPFILE keywords with non-existent file parameter" :trust (quote low)) (make-org-lint-checker :name (quote wrong-include-link-parameter) :description "Report INCLUDE keywords with misleading link parameter" :categories (quote (export)) :trust (quote low)) (make-org-lint-checker :name (quote obsolete-include-markup) :description "Report obsolete markup in INCLUDE keyword" :categories (quote (obsolete export)) :trust (quote low)) (make-org-lint-checker :name (quote unknown-options-item) :description "Report unknown items in OPTIONS keyword" :categories (quote (export)) :trust (quote low)) (make-org-lint-checker :name (quote invalid-macro-argument-and-template) :description "Report spurious macro arguments or invalid macro templates" :categories (quote (export)) :trust (quote low)) (make-org-lint-checker :name (quote special-property-in-properties-drawer) :description "Report special properties in properties drawers" :categories (quote (properties))) (make-org-lint-checker :name (quote obsolete-properties-drawer) :description "Report obsolete syntax for properties drawers" :categories (quote (obsolete properties))) (make-org-lint-checker :name (quote invalid-effort-property) :description "Report invalid duration in EFFORT property" :categories (quote (properties))) (make-org-lint-checker :name (quote undefined-footnote-reference) :description "Report missing definition for footnote references" :categories (quote (footnote))) (make-org-lint-checker :name (quote unreferenced-footnote-definition) :description "Report missing reference for footnote definitions" :categories (quote (footnote))) (make-org-lint-checker :name (quote extraneous-element-in-footnote-section) :description "Report non-footnote definitions in footnote section" :categories (quote (footnote))) (make-org-lint-checker :name (quote invalid-keyword-syntax) :description "Report probable invalid keywords" :trust (quote low)) (make-org-lint-checker :name (quote invalid-block) :description "Report invalid blocks" :trust (quote low)) (make-org-lint-checker :name (quote misplaced-planning-info) :description "Report misplaced planning info line" :trust (quote low)) (make-org-lint-checker :name (quote incomplete-drawer) :description "Report probable incomplete drawers" :trust (quote low)) (make-org-lint-checker :name (quote indented-diary-sexp) :description "Report probable indented diary-sexps" :trust (quote low)) (make-org-lint-checker :name (quote quote-section) :description "Report obsolete QUOTE section" :categories (quote (obsolete)) :trust (quote low)) (make-org-lint-checker :name (quote file-application) :description "Report obsolete \"file+application\" link" :categories (quote (link obsolete))) (make-org-lint-checker :name (quote empty-headline-with-tags) :description "Report ambiguous empty headlines with tags" :categories (quote (headline)) :trust (quote low))))
-                nil [4658 10638])
-            ("org-lint--collect-duplicates" function (:arguments ("ast" "type" "extract-key" "extract-position" "build-message")) nil [10640 11733])
-            ("org-lint-duplicate-custom-id" function (:arguments ("ast")) nil [11735 12163])
-            ("org-lint-duplicate-name" function (:arguments ("ast")) nil [12165 12574])
-            ("org-lint-duplicate-target" function (:arguments ("ast")) nil [12576 12888])
-            ("org-lint-duplicate-footnote-definition" function (:arguments ("ast")) nil [12890 13221])
-            ("org-lint-orphaned-affiliated-keywords" function (:arguments ("ast")) nil [13223 13848])
-            ("org-lint-obsolete-affiliated-keywords" function (:arguments ("_")) nil [13850 14497])
-            ("org-lint-deprecated-export-blocks" function (:arguments ("ast")) nil [14499 14977])
-            ("org-lint-deprecated-header-syntax" function (:arguments ("ast")) nil [14979 15948])
-            ("org-lint-missing-language-in-src-block" function (:arguments ("ast")) nil [15950 16196])
-            ("org-lint-missing-backend-in-export-block" function (:arguments ("ast")) nil [16198 16445])
-            ("org-lint-invalid-babel-call-block" function (:arguments ("ast")) nil [16447 16921])
-            ("org-lint-deprecated-category-setup" function (:arguments ("ast")) nil [16923 17289])
-            ("org-lint-invalid-coderef-link" function (:arguments ("ast")) nil [17291 17701])
-            ("org-lint-invalid-custom-id-link" function (:arguments ("ast")) nil [17703 18099])
-            ("org-lint-invalid-fuzzy-link" function (:arguments ("ast")) nil [18101 18591])
-            ("org-lint-invalid-id-link" function (:arguments ("ast")) nil [18593 18902])
-            ("org-lint-special-property-in-properties-drawer" function (:arguments ("ast")) nil [18904 19255])
-            ("org-lint-obsolete-properties-drawer" function (:arguments ("ast")) nil [19257 19858])
-            ("org-lint-invalid-effort-property" function (:arguments ("ast")) nil [19860 20247])
-            ("org-lint-link-to-local-file" function (:arguments ("ast")) nil [20249 20766])
-            ("org-lint-non-existent-setupfile-parameter" function (:arguments ("ast")) nil [20768 21203])
-            ("org-lint-wrong-include-link-parameter" function (:arguments ("ast")) nil [21205 22666])
-            ("org-lint-obsolete-include-markup" function (:arguments ("ast")) nil [22668 23348])
-            ("org-lint-unknown-options-item" function (:arguments ("ast")) nil [23350 24165])
-            ("org-lint-invalid-macro-argument-and-template" function (:arguments ("ast")) nil [24167 26520])
-            ("org-lint-undefined-footnote-reference" function (:arguments ("ast")) nil [26522 27020])
-            ("org-lint-unreferenced-footnote-definition" function (:arguments ("ast")) nil [27022 27496])
-            ("org-lint-colon-in-name" function (:arguments ("ast")) nil [27498 27977])
-            ("org-lint-misplaced-planning-info" function (:arguments ("_")) nil [27979 28374])
-            ("org-lint-incomplete-drawer" function (:arguments ("_")) nil [28376 28947])
-            ("org-lint-indented-diary-sexp" function (:arguments ("_")) nil [28949 29312])
-            ("org-lint-invalid-block" function (:arguments ("_")) nil [29314 30151])
-            ("org-lint-invalid-keyword-syntax" function (:arguments ("_")) nil [30153 30804])
-            ("org-lint-extraneous-element-in-footnote-section" function (:arguments ("ast")) nil [30806 31449])
-            ("org-lint-quote-section" function (:arguments ("ast")) nil [31451 31796])
-            ("org-lint-file-application" function (:arguments ("ast")) nil [31798 32051])
-            ("org-lint-wrong-header-argument" function (:arguments ("ast")) nil [32053 34684])
-            ("org-lint-wrong-header-value" function (:arguments ("ast")) nil [34686 37014])
-            ("org-lint-empty-headline-with-tags" function (:arguments ("ast")) nil [37016 37363])
-            ("org-lint--report-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map tabulated-list-mode-map) (define-key map (kbd "RET") (quote org-lint--jump-to-source)) (define-key map (kbd "TAB") (quote org-lint--show-source)) (define-key map (kbd "C-j") (quote org-lint--show-source)) (define-key map (kbd "h") (quote org-lint--hide-checker)) (define-key map (kbd "i") (quote org-lint--ignore-checker)) map)) nil [37383 37851])
-            ("define-derived-mode" code nil nil [37853 38256])
-            ("org-lint--generate-reports" function (:arguments ("buffer" "checkers")) nil [38258 39540])
-            ("defvar-local" code nil nil [39542 39639])
-            ("defvar-local" code nil nil [39641 39735])
-            ("org-lint--refresh-reports" function nil nil [39737 39917])
-            ("org-lint--current-line" function nil nil [39919 40054])
-            ("org-lint--current-checker" function (:arguments ("entry")) nil [40056 40285])
-            ("org-lint--display-reports" function (:arguments ("source" "checkers")) nil [40287 40799])
-            ("org-lint--jump-to-source" function (:user-visible-flag t) nil [40801 41085])
-            ("org-lint--show-source" function (:user-visible-flag t) nil [41087 41302])
-            ("org-lint--hide-checker" function (:user-visible-flag t) nil [41304 41624])
-            ("org-lint--ignore-checker" function (:user-visible-flag t) nil [41626 41929])
-            ("org-lint" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [41969 43553])
-            ("org-lint" package nil nil [43556 43575]))          
-      :file "org-lint.el"
-      :pointmax 43602
-      :fsize 43601
-      :lastmodtime '(23525 29591 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [2464 2478])
-            ("avl-tree" include nil nil [2479 2498])
-            ("cl-lib" include nil nil [2499 2516])
-            ("org-element-paragraph-separate" variable nil nil [2827 3105])
-            ("org-element--object-regexp" variable nil nil [3107 3431])
-            ("org-element--set-regexps" function nil nil [3433 6059])
-            ("org-element--set-regexps" code nil nil [6061 6087])
-            ("org-element-update-syntax" function (:user-visible-flag t) nil [6104 6247])
-            ("org-element-all-elements" variable
-               (:constant-flag t
-                :default-value (quote (babel-call center-block clock comment comment-block diary-sexp drawer dynamic-block example-block export-block fixed-width footnote-definition headline horizontal-rule inlinetask item keyword latex-environment node-property paragraph plain-list planning property-drawer quote-block section special-block src-block table table-row verse-block)))
-                nil [6249 6707])
-            ("org-element-greater-elements" variable
-               (:constant-flag t
-                :default-value (quote (center-block drawer dynamic-block footnote-definition headline inlinetask item plain-list property-drawer quote-block section special-block table)))
-                nil [6709 6963])
-            ("org-element-all-objects" variable
-               (:constant-flag t
-                :default-value (quote (bold code entity export-snippet footnote-reference inline-babel-call inline-src-block italic line-break latex-fragment link macro radio-target statistics-cookie strike-through subscript superscript table-cell target timestamp underline verbatim)))
-                nil [6965 7290])
-            ("org-element-recursive-objects" variable
-               (:constant-flag t
-                :default-value (quote (bold footnote-reference italic link subscript radio-target strike-through superscript table-cell underline)))
-                nil [7292 7482])
-            ("org-element-object-containers" variable
-               (:constant-flag t
-                :default-value (append org-element-recursive-objects (quote (paragraph table-row verse-block))))
-                nil [7484 7671])
-            ("org-element-affiliated-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("CAPTION" "DATA" "HEADER" "HEADERS" "LABEL" "NAME" "PLOT" "RESNAME" "RESULT" "RESULTS" "SOURCE" "SRCNAME" "TBLNAME")))
-                nil [7673 8008])
-            ("org-element-keyword-translation-alist" variable
-               (:constant-flag t
-                :default-value (quote (("DATA" . "NAME") ("LABEL" . "NAME") ("RESNAME" . "NAME") ("SOURCE" . "NAME") ("SRCNAME" . "NAME") ("TBLNAME" . "NAME") ("RESULT" . "RESULTS") ("HEADERS" . "HEADER"))))
-                nil [8010 8410])
-            ("org-element-multiple-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("CAPTION" "HEADER")))
-                nil [8412 8890])
-            ("org-element-parsed-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("CAPTION")))
-                nil [8892 9190])
-            ("org-element--parsed-properties-alist" variable
-               (:constant-flag t
-                :default-value (mapcar (lambda (k) (cons k (intern (concat ":" (downcase k))))) org-element-parsed-keywords))
-                nil [9192 9459])
-            ("org-element-dual-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("CAPTION" "RESULTS")))
-                nil [9461 9900])
-            ("org-element--affiliated-re" variable
-               (:constant-flag t
-                :default-value (format "[ 	]*#\\+\\(?:%s\\):[ 	]*" (concat (format "\\(?1:%s\\)\\(?:\\[\\(.*\\)\\]\\)?" (regexp-opt org-element-dual-keywords)) "\\|" (format "\\(?1:%s\\)" (regexp-opt (cl-remove-if (lambda (k) (member k org-element-dual-keywords)) org-element-affiliated-keywords))) "\\|" "\\(?1:ATTR_[-_A-Za-z0-9]+\\)")))
-                nil [9902 10645])
-            ("org-element-object-restrictions" variable
-               (:constant-flag t
-                :default-value (let* ((standard-set (remq (quote table-cell) org-element-all-objects)) (standard-set-no-line-break (remq (quote line-break) standard-set))) (\` ((bold (\,@ standard-set)) (footnote-reference (\,@ standard-set)) (headline (\,@ standard-set-no-line-break)) (inlinetask (\,@ standard-set-no-line-break)) (italic (\,@ standard-set)) (item (\,@ standard-set-no-line-break)) (keyword (\,@ (remq (quote footnote-reference) standard-set))) (link bold code entity export-snippet inline-babel-call inline-src-block italic latex-fragment macro statistics-cookie strike-through subscript superscript underline verbatim) (paragraph (\,@ standard-set)) (radio-target bold code entity italic latex-fragment strike-through subscript superscript underline superscript) (strike-through (\,@ standard-set)) (subscript (\,@ standard-set)) (superscript (\,@ standard-set)) (table-cell bold code entity export-snippet footnote-reference italic latex-fragment link macro radio-target strike-through subscript superscript target timestamp underline verbatim) (table-row table-cell) (underline (\,@ standard-set)) (verse-block (\,@ standard-set))))))
-                nil [10647 12722])
-            ("org-element-secondary-value-alist" variable
-               (:constant-flag t
-                :default-value (quote ((headline :title) (inlinetask :title) (item :tag))))
-                nil [12724 12898])
-            ("org-element--pair-round-table" variable
-               (:constant-flag t
-                :default-value (let ((table (make-syntax-table))) (modify-syntax-entry 40 "()" table) (modify-syntax-entry 41 ")(" table) (dolist (char (quote (123 125 91 93 60 62)) table) (modify-syntax-entry char " " table))))
-                nil [12900 13249])
-            ("org-element--pair-square-table" variable
-               (:constant-flag t
-                :default-value (let ((table (make-syntax-table))) (modify-syntax-entry 91 "(]" table) (modify-syntax-entry 93 ")[" table) (dolist (char (quote (123 125 40 41 60 62)) table) (modify-syntax-entry char " " table))))
-                nil [13251 13602])
-            ("org-element--pair-curly-table" variable
-               (:constant-flag t
-                :default-value (let ((table (make-syntax-table))) (modify-syntax-entry 123 "(}" table) (modify-syntax-entry 125 "){" table) (dolist (char (quote (91 93 40 41 60 62)) table) (modify-syntax-entry char " " table))))
-                nil [13604 13953])
-            ("org-element--parse-paired-brackets" function (:arguments ("char")) nil [13955 14626])
-            ("org-element-type" function (:arguments ("element")) nil [15505 15918])
-            ("org-element-property" function (:arguments ("property" "element")) nil [15920 16130])
-            ("org-element-contents" function (:arguments ("element")) nil [16132 16307])
-            ("org-element-restriction" function (:arguments ("element")) nil [16309 16599])
-            ("org-element-put-property" function (:arguments ("element" "property" "value")) nil [16601 16874])
-            ("org-element-set-contents" function (:arguments ("element" "contents")) nil [16876 17156])
-            ("org-element-secondary-p" function (:arguments ("object")) nil [17158 17592])
-            ("org-element-class" function (:arguments ("datum" "parent")) nil [17594 18664])
-            ("org-element-adopt-elements" function (:arguments ("parent" "children")) nil [18666 19435])
-            ("org-element-extract-element" function (:arguments ("element")) nil [19437 20065])
-            ("org-element-insert-before" function (:arguments ("element" "location")) nil [20067 21491])
-            ("org-element-set-element" function (:arguments ("old" "new")) nil [21493 22579])
-            ("org-element-create" function (:arguments ("type" "props" "children")) nil [22581 22887])
-            ("org-element-copy" function (:arguments ("datum")) nil [22889 23327])
-            ("org-element-center-block-parser" function (:arguments ("limit" "affiliated")) nil [24781 26334])
-            ("org-element-center-block-interpreter" function (:arguments ("_" "contents")) nil [26336 26539])
-            ("org-element-drawer-parser" function (:arguments ("limit" "affiliated")) nil [26555 28199])
-            ("org-element-drawer-interpreter" function (:arguments ("drawer" "contents")) nil [28201 28427])
-            ("org-element-dynamic-block-parser" function (:arguments ("limit" "affiliated")) nil [28450 30171])
-            ("org-element-dynamic-block-interpreter" function (:arguments ("dynamic-block" "contents")) nil [30173 30538])
-            ("org-element--footnote-separator" variable
-               (:constant-flag t
-                :default-value (concat org-outline-regexp-bol "\\|" org-footnote-definition-re "\\|" "^\\([ 	]*
-\\)\\{2,\\}"))
-                nil [30567 30766])
-            ("org-element-footnote-definition-parser" function (:arguments ("limit" "affiliated")) nil [30768 32787])
-            ("org-element-footnote-definition-interpreter" function (:arguments ("footnote-definition" "contents")) nil [32789 33080])
-            ("org-element--get-node-properties" function nil nil [33098 33820])
-            ("org-element--get-time-properties" function nil nil [33822 34544])
-            ("org-element-headline-parser" function (:arguments ("limit" "raw-secondary-p")) nil [34546 38015])
-            ("org-element-headline-interpreter" function (:arguments ("headline" "contents")) nil [38017 39456])
-            ("org-element-inlinetask-parser" function (:arguments ("limit" "raw-secondary-p")) nil [39476 42679])
-            ("org-element-inlinetask-interpreter" function (:arguments ("inlinetask" "contents")) nil [42681 43931])
-            ("org-element-item-parser" function (:arguments ("_" "struct" "raw-secondary-p")) nil [43945 46437])
-            ("org-element-item-interpreter" function (:arguments ("item" "contents")) nil [46439 47615])
-            ("org-element--list-struct" function (:arguments ("limit")) nil [47635 50436])
-            ("org-element-plain-list-parser" function (:arguments ("limit" "affiliated" "structure")) nil [50438 52024])
-            ("org-element-plain-list-interpreter" function (:arguments ("_" "contents")) nil [52026 52283])
-            ("org-element-property-drawer-parser" function (:arguments ("limit")) nil [52308 53317])
-            ("org-element-property-drawer-interpreter" function (:arguments ("_" "contents")) nil [53319 53522])
-            ("org-element-quote-block-parser" function (:arguments ("limit" "affiliated")) nil [53543 55048])
-            ("org-element-quote-block-interpreter" function (:arguments ("_" "contents")) nil [55050 55247])
-            ("org-element-section-parser" function (:arguments ("_")) nil [55264 56021])
-            ("org-element-section-interpreter" function (:arguments ("_" "contents")) nil [56023 56172])
-            ("org-element-special-block-parser" function (:arguments ("limit" "affiliated")) nil [56195 57862])
-            ("org-element-special-block-interpreter" function (:arguments ("special-block" "contents")) nil [57864 58161])
-            ("org-element-babel-call-parser" function (:arguments ("limit" "affiliated")) nil [58610 60265])
-            ("org-element-babel-call-interpreter" function (:arguments ("babel-call" "_")) nil [60267 60686])
-            ("org-element-clock-parser" function (:arguments ("limit")) nil [60701 61799])
-            ("org-element-clock-interpreter" function (:arguments ("clock" "_")) nil [61801 62177])
-            ("org-element-comment-parser" function (:arguments ("limit" "affiliated")) nil [62194 63588])
-            ("org-element-comment-interpreter" function (:arguments ("comment" "_")) nil [63590 63779])
-            ("org-element-comment-block-parser" function (:arguments ("limit" "affiliated")) nil [63802 65172])
-            ("org-element-comment-block-interpreter" function (:arguments ("comment-block" "_")) nil [65174 65446])
-            ("org-element-diary-sexp-parser" function (:arguments ("limit" "affiliated")) nil [65466 66433])
-            ("org-element-diary-sexp-interpreter" function (:arguments ("diary-sexp" "_")) nil [66435 66575])
-            ("org-element-example-block-parser" function (:arguments ("limit" "affiliated")) nil [66598 69381])
-            ("org-element-example-block-interpreter" function (:arguments ("example-block" "_")) nil [69383 69933])
-            ("org-element-export-block-parser" function (:arguments ("limit" "affiliated")) nil [69955 71595])
-            ("org-element-export-block-interpreter" function (:arguments ("export-block" "_")) nil [71597 71846])
-            ("org-element-fixed-width-parser" function (:arguments ("limit" "affiliated")) nil [71867 73088])
-            ("org-element-fixed-width-interpreter" function (:arguments ("fixed-width" "_")) nil [73090 73381])
-            ("org-element-horizontal-rule-parser" function (:arguments ("limit" "affiliated")) nil [73406 74261])
-            ("org-element-horizontal-rule-interpreter" function (:arguments ("_")) nil [74263 74383])
-            ("org-element-keyword-parser" function (:arguments ("limit" "affiliated")) nil [74400 75665])
-            ("org-element-keyword-interpreter" function (:arguments ("keyword" "_")) nil [75667 75865])
-            ("org-element--latex-begin-environment" variable
-               (:constant-flag t
-                :default-value "^[ 	]*\\\\begin{\\([A-Za-z0-9*]+\\)}")
-                nil [75892 76135])
-            ("org-element--latex-end-environment" variable
-               (:constant-flag t
-                :default-value "\\\\end{%s}[ 	]*$")
-                nil [76137 76316])
-            ("org-element-latex-environment-parser" function (:arguments ("limit" "affiliated")) nil [76318 77674])
-            ("org-element-latex-environment-interpreter" function (:arguments ("latex-environment" "_")) nil [77676 77852])
-            ("org-element-node-property-parser" function (:arguments ("limit")) nil [77875 78571])
-            ("org-element-node-property-interpreter" function (:arguments ("node-property" "_")) nil [78573 78834])
-            ("org-element-paragraph-parser" function (:arguments ("limit" "affiliated")) nil [78853 81266])
-            ("org-element-paragraph-interpreter" function (:arguments ("_" "contents")) nil [81268 81421])
-            ("org-element-planning-parser" function (:arguments ("limit")) nil [81439 82616])
-            ("org-element-planning-interpreter" function (:arguments ("planning" "_")) nil [82618 83305])
-            ("org-element-src-block-parser" function (:arguments ("limit" "affiliated")) nil [83324 86585])
-            ("org-element-src-block-interpreter" function (:arguments ("src-block" "_")) nil [86587 87531])
-            ("org-element-table-parser" function (:arguments ("limit" "affiliated")) nil [87546 89305])
-            ("org-element-table-interpreter" function (:arguments ("table" "contents")) nil [89307 89810])
-            ("org-element-table-row-parser" function (:arguments ("_")) nil [89829 90705])
-            ("org-element-table-row-interpreter" function (:arguments ("table-row" "contents")) nil [90707 90947])
-            ("org-element-verse-block-parser" function (:arguments ("limit" "affiliated")) nil [90968 92326])
-            ("org-element-verse-block-interpreter" function (:arguments ("_" "contents")) nil [92328 92518])
-            ("org-element-bold-parser" function nil nil [93102 93883])
-            ("org-element-bold-interpreter" function (:arguments ("_" "contents")) nil [93885 94042])
-            ("org-element-code-parser" function nil nil [94056 94730])
-            ("org-element-code-interpreter" function (:arguments ("code" "_")) nil [94732 94871])
-            ("org-element-entity-parser" function nil nil [94887 96075])
-            ("org-element-entity-interpreter" function (:arguments ("entity" "_")) nil [96077 96285])
-            ("org-element-export-snippet-parser" function nil nil [96309 97251])
-            ("org-element-export-snippet-interpreter" function (:arguments ("export-snippet" "_")) nil [97253 97491])
-            ("org-element-footnote-reference-parser" function nil nil [97519 98540])
-            ("org-element-footnote-reference-interpreter" function (:arguments ("footnote-reference" "contents")) nil [98542 98851])
-            ("org-element-inline-babel-call-parser" function nil nil [98878 100385])
-            ("org-element-inline-babel-call-interpreter" function (:arguments ("inline-babel-call" "_")) nil [100387 100845])
-            ("org-element-inline-src-block-parser" function nil nil [100871 101973])
-            ("org-element-inline-src-block-interpreter" function (:arguments ("inline-src-block" "_")) nil [101975 102389])
-            ("org-element-italic-parser" function nil nil [102404 103197])
-            ("org-element-italic-interpreter" function (:arguments ("_" "contents")) nil [103199 103360])
-            ("org-element-latex-fragment-parser" function nil nil [103384 104822])
-            ("org-element-latex-fragment-interpreter" function (:arguments ("latex-fragment" "_")) nil [104824 104987])
-            ("org-element-line-break-parser" function nil nil [105006 105473])
-            ("org-element-line-break-interpreter" function (:arguments ("_")) nil [105475 105585])
-            ("org-element-link-parser" function nil nil [105599 110501])
-            ("org-element-link-interpreter" function (:arguments ("link" "contents")) nil [110503 111927])
-            ("org-element-macro-parser" function nil nil [111942 112809])
-            ("org-element-macro-interpreter" function (:arguments ("macro" "_")) nil [112811 112938])
-            ("org-element-radio-target-parser" function nil nil [112960 113793])
-            ("org-element-radio-target-interpreter" function (:arguments ("_" "contents")) nil [113795 113967])
-            ("org-element-statistics-cookie-parser" function nil nil [113994 114740])
-            ("org-element-statistics-cookie-interpreter" function (:arguments ("statistics-cookie" "_")) nil [114742 114917])
-            ("org-element-strike-through-parser" function nil nil [114941 115776])
-            ("org-element-strike-through-interpreter" function (:arguments ("_" "contents")) nil [115778 115955])
-            ("org-element-subscript-parser" function nil nil [115974 116912])
-            ("org-element-subscript-interpreter" function (:arguments ("subscript" "contents")) nil [116914 117156])
-            ("org-element-superscript-parser" function nil nil [117177 118120])
-            ("org-element-superscript-interpreter" function (:arguments ("superscript" "contents")) nil [118122 118372])
-            ("org-element-table-cell-parser" function nil nil [118392 118932])
-            ("org-element-table-cell-interpreter" function (:arguments ("_" "contents")) nil [118934 119113])
-            ("org-element-target-parser" function nil nil [119129 119739])
-            ("org-element-target-interpreter" function (:arguments ("target" "_")) nil [119741 119890])
-            ("org-element--timestamp-regexp" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp-both "\\|" "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>
-]+?\\+[0-9]+[dwmy]>\\)" "\\|" "\\(?:<%%\\(?:([^>
-]+)\\)>\\)"))
-                nil [119909 120138])
-            ("org-element-timestamp-parser" function nil nil [120140 123888])
-            ("org-element-timestamp-interpreter" function (:arguments ("timestamp" "_")) nil [123890 127587])
-            ("org-element-underline-parser" function nil nil [127606 128418])
-            ("org-element-underline-interpreter" function (:arguments ("_" "contents")) nil [128420 128587])
-            ("org-element-verbatim-parser" function nil nil [128605 129304])
-            ("org-element-verbatim-interpreter" function (:arguments ("verbatim" "_")) nil [129306 129461])
-            ("org-element--current-element" function (:arguments ("limit" "granularity" "mode" "structure")) nil [129968 135502])
-            ("org-element--collect-affiliated-keywords" function (:arguments ("limit")) nil [135775 138452])
-            ("org-element-parse-buffer" function (:arguments ("granularity" "visible-only")) nil [139002 141220])
-            ("org-element-parse-secondary-string" function (:arguments ("string" "restriction" "parent")) nil [141222 142070])
-            ("org-element-map" function (:arguments ("data" "types" "fun" "info" "first-match" "no-recursion" "with-affiliated")) nil [142072 148396])
-            ("put" code nil nil [148397 148443])
-            ("org-element--next-mode" function (:arguments ("type" "parentp")) nil [148797 149480])
-            ("org-element--parse-elements" function (:arguments ("beg" "end" "mode" "structure" "granularity" "visible-only" "acc")) nil [149482 152358])
-            ("org-element--object-lex" function (:arguments ("restriction")) nil [152360 156514])
-            ("org-element--parse-objects" function (:arguments ("beg" "end" "acc" "restriction" "parent")) nil [156516 158573])
-            ("org-element-interpret-data" function (:arguments ("data")) nil [158964 161416])
-            ("org-element--interpret-affiliated-keywords" function (:arguments ("element")) nil [161418 162993])
-            ("org-element-normalize-string" function (:arguments ("s")) nil [163498 163895])
-            ("org-element-normalize-contents" function (:arguments ("element" "ignore-first")) nil [163897 167372])
-            ("org-element-use-cache" variable nil nil [169569 169820])
-            ("org-element-cache-sync-idle-time" variable (:default-value 0.6) nil [169822 169926])
-            ("org-element-cache-sync-duration" variable (:default-value (seconds-to-time 0.04)) nil [169928 170189])
-            ("org-element-cache-sync-break" variable (:default-value (seconds-to-time 0.3)) nil [170191 170380])
-            ("org-element--cache" variable nil nil [170404 170617])
-            ("org-element--cache-sync-requests" variable nil nil [170619 171852])
-            ("org-element--cache-sync-timer" variable nil nil [171854 171938])
-            ("org-element--cache-sync-keys" variable nil nil [171940 172090])
-            ("org-element--cache-key" function (:arguments ("element")) nil [172092 173374])
-            ("org-element--cache-generate-key" function (:arguments ("lower" "upper")) nil [173376 175628])
-            ("org-element--cache-key-less-p" function (:arguments ("a" "b")) nil [175630 176363])
-            ("org-element--cache-compare" function (:arguments ("a" "b")) nil [176365 176554])
-            ("org-element--cache-root" function nil nil [176556 176754])
-            ("org-element--cache-active-p" function nil nil [176769 176952])
-            ("org-element--cache-find" function (:arguments ("pos" "side")) nil [176954 178881])
-            ("org-element--cache-put" function (:arguments ("element")) nil [178883 179670])
-            ("org-element--cache-remove" function (:arguments ("element")) nil [179672 179856])
-            ("org-element--cache-set-timer" function (:arguments ("buffer")) nil [179881 180313])
-            ("org-element--cache-interrupt-p" function (:arguments ("time-limit")) nil [180315 180561])
-            ("org-element--cache-shift-positions" function (:arguments ("element" "offset" "props")) nil [180563 181705])
-            ("org-element--cache-sync" function (:arguments ("buffer" "threshold" "future-change")) nil [181707 183427])
-            ("org-element--cache-process-request" function (:arguments ("request" "next" "threshold" "time-limit" "future-change")) nil [183429 190735])
-            ("org-element--parse-to" function (:arguments ("pos" "syncp" "time-limit")) nil [190737 196311])
-            ("org-element--cache-sensitive-re" variable
-               (:constant-flag t
-                :default-value (concat org-outline-regexp-bol "\\|" "\\\\end{[A-Za-z0-9*]+}[ 	]*$" "\\|" "^[ 	]*\\(?:" "#\\+\\(?:BEGIN[:_]\\|END\\(?:_\\|:?[ 	]*$\\)\\)" "\\|" "\\\\begin{[A-Za-z0-9*]+}" "\\|" ":\\(?:\\w\\|[-_]\\)+:[ 	]*$" "\\)"))
-                nil [196343 196902])
-            ("org-element--cache-change-warning" variable nil nil [196904 197052])
-            ("org-element--cache-before-change" function (:arguments ("beg" "end")) nil [197054 197763])
-            ("org-element--cache-after-change" function (:arguments ("beg" "end" "pre")) nil [197765 199347])
-            ("org-element--cache-for-removal" function (:arguments ("beg" "end" "offset")) nil [199349 201259])
-            ("org-element--cache-submit-request" function (:arguments ("beg" "end" "offset")) nil [201261 204299])
-            ("org-element-cache-reset" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [204340 205173])
-            ("org-element-cache-refresh" function (:arguments ("pos")) nil [205190 205456])
-            ("org-element-at-point" function nil nil [206177 207629])
-            ("org-element-context" function (:arguments ("element")) nil [207646 212865])
-            ("org-element-lineage" function (:arguments ("blob" "types" "with-self")) nil [212867 213754])
-            ("org-element-nested-p" function (:arguments ("elem-A" "elem-B")) nil [213756 214135])
-            ("org-element-swap-A-B" function (:arguments ("elem-A" "elem-B")) nil [214137 216923])
-            ("org-element" package nil nil [216926 216948]))          
-      :file "org-element.el"
-      :pointmax 217054
-      :fsize 217053
-      :lastmodtime '(23525 29590 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [2934 2951])
-            ("ob-exp" include nil nil [2952 2969])
-            ("org-element" include nil nil [2970 2992])
-            ("org-macro" include nil nil [2993 3013])
-            ("tabulated-list" include nil nil [3014 3039])
-            ("declare-function" code nil nil [3041 3112])
-            ("declare-function" code nil nil [3113 3186])
-            ("declare-function" code nil nil [3187 3262])
-            ("declare-function" code nil nil [3263 3334])
-            ("declare-function" code nil nil [3335 3415])
-            ("declare-function" code nil nil [3416 3499])
-            ("org-publish-project-alist" variable nil nil [3501 3535])
-            ("org-table-number-fraction" variable nil nil [3536 3570])
-            ("org-table-number-regexp" variable nil nil [3571 3603])
-            ("org-export-max-depth" variable
-               (:constant-flag t
-                :default-value 19)
-                nil [3826 3918])
-            ("org-export-options-alist" variable
-               (:constant-flag t
-                :default-value (quote ((:title "TITLE" nil nil parse) (:date "DATE" nil nil parse) (:author "AUTHOR" nil user-full-name parse) (:email "EMAIL" nil user-mail-address t) (:language "LANGUAGE" nil org-export-default-language t) (:select-tags "SELECT_TAGS" nil org-export-select-tags split) (:exclude-tags "EXCLUDE_TAGS" nil org-export-exclude-tags split) (:creator "CREATOR" nil org-export-creator-string) (:headline-levels nil "H" org-export-headline-levels) (:preserve-breaks nil "\\n" org-export-preserve-breaks) (:section-numbers nil "num" org-export-with-section-numbers) (:time-stamp-file nil "timestamp" org-export-time-stamp-file) (:with-archived-trees nil "arch" org-export-with-archived-trees) (:with-author nil "author" org-export-with-author) (:with-broken-links nil "broken-links" org-export-with-broken-links) (:with-clocks nil "c" org-export-with-clocks) (:with-creator nil "creator" org-export-with-creator) (:with-date nil "date" org-export-with-date) (:with-drawers nil "d" org-export-with-drawers) (:with-email nil "email" org-export-with-email) (:with-emphasize nil "*" org-export-with-emphasize) (:with-entities nil "e" org-export-with-entities) (:with-fixed-width nil ":" org-export-with-fixed-width) (:with-footnotes nil "f" org-export-with-footnotes) (:with-inlinetasks nil "inline" org-export-with-inlinetasks) (:with-latex nil "tex" org-export-with-latex) (:with-planning nil "p" org-export-with-planning) (:with-priority nil "pri" org-export-with-priority) (:with-properties nil "prop" org-export-with-properties) (:with-smart-quotes nil "'" org-export-with-smart-quotes) (:with-special-strings nil "-" org-export-with-special-strings) (:with-statistics-cookies nil "stat" org-export-with-statistics-cookies) (:with-sub-superscript nil "^" org-export-with-sub-superscripts) (:with-toc nil "toc" org-export-with-toc) (:with-tables nil "|" org-export-with-tables) (:with-tags nil "tags" org-export-with-tags) (:with-tasks nil "tasks" org-export-with-tasks) (:with-timestamps nil "<" org-export-with-timestamps) (:with-title nil "title" org-export-with-title) (:with-todo-keywords nil "todo" org-export-with-todo-keywords))))
-                nil [3920 7640])
-            ("org-export-special-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("FILETAGS" "SETUPFILE" "OPTIONS")))
-                nil [7642 7932])
-            ("org-export-filters-alist" variable
-               (:constant-flag t
-                :default-value (quote ((:filter-body . org-export-filter-body-functions) (:filter-bold . org-export-filter-bold-functions) (:filter-babel-call . org-export-filter-babel-call-functions) (:filter-center-block . org-export-filter-center-block-functions) (:filter-clock . org-export-filter-clock-functions) (:filter-code . org-export-filter-code-functions) (:filter-diary-sexp . org-export-filter-diary-sexp-functions) (:filter-drawer . org-export-filter-drawer-functions) (:filter-dynamic-block . org-export-filter-dynamic-block-functions) (:filter-entity . org-export-filter-entity-functions) (:filter-example-block . org-export-filter-example-block-functions) (:filter-export-block . org-export-filter-export-block-functions) (:filter-export-snippet . org-export-filter-export-snippet-functions) (:filter-final-output . org-export-filter-final-output-functions) (:filter-fixed-width . org-export-filter-fixed-width-functions) (:filter-footnote-definition . org-export-filter-footnote-definition-functions) (:filter-footnote-reference . org-export-filter-footnote-reference-functions) (:filter-headline . org-export-filter-headline-functions) (:filter-horizontal-rule . org-export-filter-horizontal-rule-functions) (:filter-inline-babel-call . org-export-filter-inline-babel-call-functions) (:filter-inline-src-block . org-export-filter-inline-src-block-functions) (:filter-inlinetask . org-export-filter-inlinetask-functions) (:filter-italic . org-export-filter-italic-functions) (:filter-item . org-export-filter-item-functions) (:filter-keyword . org-export-filter-keyword-functions) (:filter-latex-environment . org-export-filter-latex-environment-functions) (:filter-latex-fragment . org-export-filter-latex-fragment-functions) (:filter-line-break . org-export-filter-line-break-functions) (:filter-link . org-export-filter-link-functions) (:filter-node-property . org-export-filter-node-property-functions) (:filter-options . org-export-filter-options-functions) (:filter-paragraph . org-export-filter-paragraph-functions) (:filter-parse-tree . org-export-filter-parse-tree-functions) (:filter-plain-list . org-export-filter-plain-list-functions) (:filter-plain-text . org-export-filter-plain-text-functions) (:filter-planning . org-export-filter-planning-functions) (:filter-property-drawer . org-export-filter-property-drawer-functions) (:filter-quote-block . org-export-filter-quote-block-functions) (:filter-radio-target . org-export-filter-radio-target-functions) (:filter-section . org-export-filter-section-functions) (:filter-special-block . org-export-filter-special-block-functions) (:filter-src-block . org-export-filter-src-block-functions) (:filter-statistics-cookie . org-export-filter-statistics-cookie-functions) (:filter-strike-through . org-export-filter-strike-through-functions) (:filter-subscript . org-export-filter-subscript-functions) (:filter-superscript . org-export-filter-superscript-functions) (:filter-table . org-export-filter-table-functions) (:filter-table-cell . org-export-filter-table-cell-functions) (:filter-table-row . org-export-filter-table-row-functions) (:filter-target . org-export-filter-target-functions) (:filter-timestamp . org-export-filter-timestamp-functions) (:filter-underline . org-export-filter-underline-functions) (:filter-verbatim . org-export-filter-verbatim-functions) (:filter-verse-block . org-export-filter-verse-block-functions))))
-                nil [7934 12026])
-            ("org-export-default-inline-image-rule" variable
-               (:constant-flag t
-                :default-value (\` (("file" \, (format "\\.%s\\'" (regexp-opt (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm")) t))))))
-                nil [12028 12597])
-            ("org-export-ignored-local-variables" variable
-               (:constant-flag t
-                :default-value (quote (org-font-lock-keywords org-element--cache org-element--cache-objects org-element--cache-sync-keys org-element--cache-sync-requests org-element--cache-sync-timer)))
-                nil [12599 13105])
-            ("org-export-async-debug" variable nil nil [13107 13472])
-            ("org-export-stack-contents" variable nil nil [13474 13894])
-            ("org-export-registered-backends" variable nil nil [13896 14102])
-            ("org-export-dispatch-last-action" variable nil nil [14104 14299])
-            ("org-export-dispatch-last-position" variable (:default-value (make-marker)) nil [14301 14588])
-            ("org-export-current-backend" variable nil nil [14624 14994])
-            ("org-export" customgroup (:user-visible-flag t) nil [15256 15357])
-            ("org-export-general" customgroup (:user-visible-flag t) nil [15359 15480])
-            ("org-export-with-archived-trees" variable (:default-value (quote headline)) nil [15482 16074])
-            ("org-export-with-author" variable (:default-value t) nil [16076 16313])
-            ("org-export-with-clocks" variable nil nil [16315 16527])
-            ("org-export-with-creator" variable nil nil [16529 16896])
-            ("org-export-with-date" variable (:default-value t) nil [16898 17126])
-            ("org-export-date-timestamp-format" variable nil nil [17128 17602])
-            ("org-export-creator-string" variable (:default-value (format "Emacs %s (Org mode %s)" emacs-version (if (fboundp (quote org-version)) (org-version) "unknown version"))) nil [17604 17952])
-            ("org-export-with-drawers" variable (:default-value (quote (not "LOGBOOK"))) nil [17954 18849])
-            ("org-export-with-email" variable nil nil [18851 19087])
-            ("org-export-with-emphasize" variable (:default-value t) nil [19089 19469])
-            ("org-export-exclude-tags" variable (:default-value (quote ("noexport"))) nil [19471 19933])
-            ("org-export-with-fixed-width" variable (:default-value t) nil [19935 20215])
-            ("org-export-with-footnotes" variable (:default-value t) nil [20217 20443])
-            ("org-export-with-latex" variable (:default-value t) nil [20445 21046])
-            ("org-export-headline-levels" variable (:default-value 3) nil [21048 21394])
-            ("org-export-default-language" variable (:default-value "en") nil [21396 21786])
-            ("org-export-preserve-breaks" variable nil nil [21788 22024])
-            ("org-export-with-entities" variable (:default-value t) nil [22026 22433])
-            ("org-export-with-inlinetasks" variable (:default-value t) nil [22435 22718])
-            ("org-export-with-planning" variable nil nil [22720 23112])
-            ("org-export-with-priority" variable nil nil [23114 23343])
-            ("org-export-with-properties" variable nil nil [23345 23931])
-            ("org-export-with-section-numbers" variable (:default-value t) nil [23933 24295])
-            ("org-export-select-tags" variable (:default-value (quote ("export"))) nil [24297 24818])
-            ("org-export-with-smart-quotes" variable nil nil [24820 25310])
-            ("org-export-with-special-strings" variable (:default-value t) nil [25312 25825])
-            ("org-export-with-statistics-cookies" variable (:default-value t) nil [25827 26120])
-            ("org-export-with-sub-superscripts" variable (:default-value t) nil [26122 27673])
-            ("org-export-with-toc" variable (:default-value t) nil [27675 28442])
-            ("org-export-with-tables" variable (:default-value t) nil [28444 28700])
-            ("org-export-with-tags" variable (:default-value t) nil [28702 29204])
-            ("org-export-with-tasks" variable (:default-value t) nil [29206 30039])
-            ("org-export-with-title" variable (:default-value t) nil [30041 30321])
-            ("org-export-time-stamp-file" variable (:default-value t) nil [30323 30617])
-            ("org-export-with-timestamps" variable (:default-value t) nil [30619 31383])
-            ("org-export-with-todo-keywords" variable (:default-value t) nil [31385 31653])
-            ("org-export-allow-bind-keywords" variable nil nil [31655 31996])
-            ("org-export-with-broken-links" variable nil nil [31998 32663])
-            ("org-export-snippet-translation-alist" variable nil nil [32665 33345])
-            ("org-export-global-macros" variable nil nil [33347 34072])
-            ("org-export-coding-system" variable nil nil [34074 34259])
-            ("org-export-copy-to-kill-ring" variable nil nil [34261 34637])
-            ("org-export-initial-scope" variable (:default-value (quote buffer)) nil [34639 34949])
-            ("org-export-show-temporary-export-buffer" variable (:default-value t) nil [34951 35373])
-            ("org-export-in-background" variable nil nil [35375 35713])
-            ("org-export-async-init-file" variable nil nil [35715 36369])
-            ("org-export-dispatch-use-expert-ui" variable nil nil [36371 37023])
-            ("cl-defstruct" code nil nil [38298 38448])
-            ("org-export-get-backend" function (:arguments ("name")) nil [38465 38717])
-            ("org-export-register-backend" function (:arguments ("backend")) nil [38719 39634])
-            ("org-export-barf-if-invalid-backend" function (:arguments ("backend")) nil [39636 39839])
-            ("org-export-derived-backend-p" function (:arguments ("backend" "backends")) nil [39841 40502])
-            ("org-export-get-all-transcoders" function (:arguments ("backend")) nil [40504 41299])
-            ("org-export-get-all-options" function (:arguments ("backend")) nil [41301 42041])
-            ("org-export-get-all-filters" function (:arguments ("backend")) nil [42043 42771])
-            ("org-export-define-backend" function (:arguments ("backend" "transcoders" "body")) nil [42773 47301])
-            ("org-export-define-derived-backend" function (:arguments ("child" "parent" "body")) nil [47303 49354])
-            ("org-export-get-environment" function (:arguments ("backend" "subtreep" "ext-plist")) nil [50953 52024])
-            ("org-export--parse-option-keyword" function (:arguments ("options" "backend")) nil [52026 52907])
-            ("org-export--get-subtree-options" function (:arguments ("backend")) nil [52909 54964])
-            ("org-export--get-inbuffer-options" function (:arguments ("backend")) nil [54966 59299])
-            ("org-export--get-export-attributes" function (:arguments ("backend" "subtreep" "visible-only" "body-only")) nil [59301 59882])
-            ("org-export--get-buffer-attributes" function nil nil [59884 60103])
-            ("org-export--get-global-options" function (:arguments ("backend")) nil [60105 60924])
-            ("org-export--list-bound-variables" function nil nil [60926 62617])
-            ("org-export-get-parent" function (:arguments ("blob")) nil [62738 62888])
-            ("org-export--collect-tree-properties" function (:arguments ("data" "info")) nil [63553 64973])
-            ("org-export--get-min-level" function (:arguments ("data" "options")) nil [64975 65719])
-            ("org-export--collect-headline-numbering" function (:arguments ("data" "options")) nil [65721 66721])
-            ("org-export--selected-trees" function (:arguments ("data" "info")) nil [66723 68277])
-            ("org-export--skip-p" function (:arguments ("datum" "options" "selected" "excluded")) nil [68279 72627])
-            ("org-export-transcoder" function (:arguments ("blob" "info")) nil [73320 73737])
-            ("org-export-data" function (:arguments ("data" "info")) nil [73739 77530])
-            ("org-export-data-with-backend" function (:arguments ("data" "backend" "info")) nil [77532 78756])
-            ("org-export-expand" function (:arguments ("blob" "contents" "with-affiliated")) nil [78758 79324])
-            ("org-export-before-processing-hook" variable nil nil [81914 82343])
-            ("org-export-before-parsing-hook" variable nil nil [82345 82769])
-            ("org-export-filter-options-functions" variable nil nil [82794 83059])
-            ("org-export-filter-parse-tree-functions" variable nil nil [83061 83389])
-            ("org-export-filter-plain-text-functions" variable nil nil [83391 83673])
-            ("org-export-filter-body-functions" variable nil nil [83675 83956])
-            ("org-export-filter-final-output-functions" variable nil nil [83958 84280])
-            ("org-export-filter-babel-call-functions" variable nil nil [84306 84596])
-            ("org-export-filter-center-block-functions" variable nil nil [84598 84892])
-            ("org-export-filter-clock-functions" variable nil nil [84894 85174])
-            ("org-export-filter-diary-sexp-functions" variable nil nil [85176 85466])
-            ("org-export-filter-drawer-functions" variable nil nil [85468 85750])
-            ("org-export-filter-dynamic-block-functions" variable nil nil [85752 86048])
-            ("org-export-filter-example-block-functions" variable nil nil [86050 86346])
-            ("org-export-filter-export-block-functions" variable nil nil [86348 86642])
-            ("org-export-filter-fixed-width-functions" variable nil nil [86644 86936])
-            ("org-export-filter-footnote-definition-functions" variable nil nil [86938 87246])
-            ("org-export-filter-headline-functions" variable nil nil [87248 87534])
-            ("org-export-filter-horizontal-rule-functions" variable nil nil [87536 87836])
-            ("org-export-filter-inlinetask-functions" variable nil nil [87838 88128])
-            ("org-export-filter-item-functions" variable nil nil [88130 88408])
-            ("org-export-filter-keyword-functions" variable nil nil [88410 88694])
-            ("org-export-filter-latex-environment-functions" variable nil nil [88696 89000])
-            ("org-export-filter-node-property-functions" variable nil nil [89002 89298])
-            ("org-export-filter-paragraph-functions" variable nil nil [89300 89588])
-            ("org-export-filter-plain-list-functions" variable nil nil [89590 89880])
-            ("org-export-filter-planning-functions" variable nil nil [89882 90168])
-            ("org-export-filter-property-drawer-functions" variable nil nil [90170 90470])
-            ("org-export-filter-quote-block-functions" variable nil nil [90472 90770])
-            ("org-export-filter-section-functions" variable nil nil [90772 91056])
-            ("org-export-filter-special-block-functions" variable nil nil [91058 91354])
-            ("org-export-filter-src-block-functions" variable nil nil [91356 91644])
-            ("org-export-filter-table-functions" variable nil nil [91646 91926])
-            ("org-export-filter-table-cell-functions" variable nil nil [91928 92218])
-            ("org-export-filter-table-row-functions" variable nil nil [92220 92508])
-            ("org-export-filter-verse-block-functions" variable nil nil [92510 92802])
-            ("org-export-filter-bold-functions" variable nil nil [92827 93108])
-            ("org-export-filter-code-functions" variable nil nil [93110 93391])
-            ("org-export-filter-entity-functions" variable nil nil [93393 93675])
-            ("org-export-filter-export-snippet-functions" variable nil nil [93677 93975])
-            ("org-export-filter-footnote-reference-functions" variable nil nil [93977 94283])
-            ("org-export-filter-inline-babel-call-functions" variable nil nil [94285 94589])
-            ("org-export-filter-inline-src-block-functions" variable nil nil [94591 94893])
-            ("org-export-filter-italic-functions" variable nil nil [94895 95180])
-            ("org-export-filter-latex-fragment-functions" variable nil nil [95182 95480])
-            ("org-export-filter-line-break-functions" variable nil nil [95482 95772])
-            ("org-export-filter-link-functions" variable nil nil [95774 96052])
-            ("org-export-filter-radio-target-functions" variable nil nil [96054 96348])
-            ("org-export-filter-statistics-cookie-functions" variable nil nil [96350 96654])
-            ("org-export-filter-strike-through-functions" variable nil nil [96656 96957])
-            ("org-export-filter-subscript-functions" variable nil nil [96959 97247])
-            ("org-export-filter-superscript-functions" variable nil nil [97249 97541])
-            ("org-export-filter-target-functions" variable nil nil [97543 97825])
-            ("org-export-filter-timestamp-functions" variable nil nil [97827 98115])
-            ("org-export-filter-underline-functions" variable nil nil [98117 98408])
-            ("org-export-filter-verbatim-functions" variable nil nil [98410 98699])
-            ("org-export-filter-apply-functions" function (:arguments ("filters" "value" "info")) nil [99149 100062])
-            ("org-export-install-filters" function (:arguments ("info")) nil [100064 101242])
-            ("org-export-copy-buffer" function nil nil [102424 102810])
-            ("org-export-with-buffer-copy" function (:arguments ("body")) nil [102812 103468])
-            ("org-export--generate-copy-script" function (:arguments ("buffer")) nil [103470 105686])
-            ("org-export--delete-comment-trees" function nil nil [105688 106228])
-            ("org-export--prune-tree" function (:arguments ("data" "info")) nil [106230 109118])
-            ("org-export--missing-definitions" function (:arguments ("tree" "definitions")) nil [109120 112097])
-            ("org-export--install-footnote-definitions" function (:arguments ("definitions" "tree")) nil [112099 114337])
-            ("org-export--remove-uninterpreted-data" function (:arguments ("data" "info")) nil [114339 116610])
-            ("org-export-as" function (:arguments ("backend" "subtreep" "visible-only" "body-only" "ext-plist")) nil [116627 123496])
-            ("org-export-string-as" function (:arguments ("string" "backend" "body-only" "ext-plist")) nil [123513 124202])
-            ("org-export-replace-region-by" function (:arguments ("backend")) nil [124219 124645])
-            ("org-export-insert-default-template" function
-               (:user-visible-flag t
-                :arguments ("backend" "subtreep"))
-                nil [124662 128023])
-            ("org-export-expand-include-keyword" function (:arguments ("included" "dir" "footnotes")) nil [128025 133270])
-            ("org-export--inclusion-absolute-lines" function (:arguments ("file" "location" "only-contents" "lines")) nil [133272 135624])
-            ("org-export--prepare-file-contents" function (:arguments ("file" "lines" "ind" "minlevel" "id" "footnotes")) nil [135626 140898])
-            ("org-export--copy-to-kill-ring-p" function nil nil [140900 141205])
-            ("org-export-read-attribute" function (:arguments ("attribute" "element" "property")) nil [141817 143209])
-            ("org-export-get-caption" function (:arguments ("element" "shortp")) nil [143211 143721])
-            ("org-export-with-backend" function (:arguments ("backend" "data" "contents" "info")) nil [143991 145367])
-            ("org-export-snippet-backend" function (:arguments ("export-snippet")) nil [145681 146022])
-            ("org-export-get-footnote-definition" function (:arguments ("footnote-reference" "info")) nil [146630 148008])
-            ("org-export--footnote-reference-map" function (:arguments ("function" "data" "info" "body-first")) nil [148010 149874])
-            ("org-export-collect-footnote-definitions" function (:arguments ("info" "data" "body-first")) nil [149876 151010])
-            ("org-export-footnote-first-reference-p" function (:arguments ("footnote-reference" "info" "data" "body-first")) nil [151012 152063])
-            ("org-export-get-footnote-number" function (:arguments ("footnote" "info" "data" "body-first")) nil [152065 153307])
-            ("org-export-get-relative-level" function (:arguments ("headline" "info")) nil [154312 154567])
-            ("org-export-low-level-p" function (:arguments ("headline" "info")) nil [154569 155130])
-            ("org-export-get-headline-number" function (:arguments ("headline" "info")) nil [155132 155416])
-            ("org-export-numbered-headline-p" function (:arguments ("headline" "info")) nil [155418 155838])
-            ("org-export-number-to-roman" function (:arguments ("n")) nil [155840 156306])
-            ("org-export-get-tags" function (:arguments ("element" "info" "tags" "inherited")) nil [156308 157385])
-            ("org-export-get-node-property" function (:arguments ("property" "blob" "inherited")) nil [157387 158124])
-            ("org-export-get-category" function (:arguments ("blob" "info")) nil [158126 158820])
-            ("org-export-get-alt-title" function (:arguments ("headline" "_")) nil [158822 159207])
-            ("org-export-first-sibling-p" function (:arguments ("blob" "info")) nil [159209 159563])
-            ("org-export-last-sibling-p" function (:arguments ("datum" "info")) nil [159565 159961])
-            ("org-export-get-date" function (:arguments ("info" "fmt")) nil [160157 160861])
-            ("org-define-error" code nil nil [161993 162063])
-            ("org-export-custom-protocol-maybe" function (:arguments ("link" "desc" "backend")) nil [162065 162824])
-            ("org-export-get-coderef-format" function (:arguments ("path" "desc")) nil [162826 163131])
-            ("org-export-inline-image-p" function (:arguments ("link" "rules")) nil [163133 163955])
-            ("org-export-insert-image-links" function (:arguments ("data" "info" "rules")) nil [163957 165603])
-            ("org-export-resolve-coderef" function (:arguments ("ref" "info")) nil [165605 166563])
-            ("org-export-search-cells" function (:arguments ("datum")) nil [166565 167901])
-            ("org-export-string-to-search-cell" function (:arguments ("s")) nil [167903 168387])
-            ("org-export-match-search-cell-p" function (:arguments ("datum" "cells")) nil [168389 168723])
-            ("org-export-resolve-fuzzy-link" function (:arguments ("link" "info")) nil [168725 170400])
-            ("org-export-resolve-id-link" function (:arguments ("link" "info")) nil [170402 171211])
-            ("org-export-resolve-radio-link" function (:arguments ("link" "info")) nil [171213 171837])
-            ("org-export-file-uri" function (:arguments ("filename")) nil [171839 172237])
-            ("org-export-new-reference" function (:arguments ("references")) nil [172620 173309])
-            ("org-export-format-reference" function (:arguments ("reference")) nil [173311 173527])
-            ("org-export-get-reference" function (:arguments ("datum" "info")) nil [173529 175541])
-            ("org-export-get-ordinal" function (:arguments ("element" "info" "types" "predicate")) nil [175543 177887])
-            ("org-export-get-loc" function (:arguments ("element" "info")) nil [178895 180051])
-            ("org-export-unravel-code" function (:arguments ("element")) nil [180053 181351])
-            ("org-export-format-code" function (:arguments ("code" "fun" "num-lines" "ref-alist")) nil [181353 182556])
-            ("org-export-format-code-default" function (:arguments ("element" "info")) nil [182558 184243])
-            ("org-export-table-has-special-column-p" function (:arguments ("table")) nil [185395 186228])
-            ("org-export-table-has-header-p" function (:arguments ("table" "info")) nil [186230 187138])
-            ("org-export-table-row-is-special-p" function (:arguments ("table-row" "_")) nil [187140 188470])
-            ("org-export-table-row-group" function (:arguments ("table-row" "info")) nil [188472 189493])
-            ("org-export-table-cell-width" function (:arguments ("table-cell" "info")) nil [189495 190986])
-            ("org-export-table-cell-alignment" function (:arguments ("table-cell" "info")) nil [190988 194013])
-            ("org-export-table-cell-borders" function (:arguments ("table-cell" "info")) nil [194015 197576])
-            ("org-export-table-cell-starts-colgroup-p" function (:arguments ("table-cell" "info")) nil [197578 198106])
-            ("org-export-table-cell-ends-colgroup-p" function (:arguments ("table-cell" "info")) nil [198108 198559])
-            ("org-export-table-row-starts-rowgroup-p" function (:arguments ("table-row" "info")) nil [198561 199017])
-            ("org-export-table-row-ends-rowgroup-p" function (:arguments ("table-row" "info")) nil [199019 199470])
-            ("org-export-table-row-in-header-p" function (:arguments ("table-row" "info")) nil [199472 199841])
-            ("org-export-table-row-starts-header-p" function (:arguments ("table-row" "info")) nil [199843 200134])
-            ("org-export-table-row-ends-header-p" function (:arguments ("table-row" "info")) nil [200136 200422])
-            ("org-export-table-row-number" function (:arguments ("table-row" "info")) nil [200424 201341])
-            ("org-export-table-dimensions" function (:arguments ("table" "info")) nil [201343 202021])
-            ("org-export-table-cell-address" function (:arguments ("table-cell" "info")) nil [202023 202720])
-            ("org-export-get-table-cell-at" function (:arguments ("address" "table" "info")) nil [202722 203575])
-            ("org-export-collect-headlines" function (:arguments ("info" "n" "scope")) nil [204167 205639])
-            ("org-export-collect-elements" function (:arguments ("type" "info" "predicate")) nil [205641 206377])
-            ("org-export-collect-tables" function (:arguments ("info")) nil [206379 206589])
-            ("org-export-collect-figures" function (:arguments ("info" "predicate")) nil [206591 207149])
-            ("org-export-collect-listings" function (:arguments ("info")) nil [207151 207376])
-            ("org-export-toc-entry-backend" function (:arguments ("parent" "transcoders")) nil [207378 208269])
-            ("org-export-smart-quotes-alist" variable
-               (:constant-flag t
-                :default-value (quote (("ar" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‹" :html "&lsaquo;" :latex "\\guilsinglleft{}" :texinfo "@guilsinglleft{}") (secondary-closing :utf-8 "›" :html "&rsaquo;" :latex "\\guilsinglright{}" :texinfo "@guilsinglright{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("da" (primary-opening :utf-8 "»" :html "&raquo;" :latex ">>" :texinfo "@guillemetright{}") (primary-closing :utf-8 "«" :html "&laquo;" :latex "<<" :texinfo "@guillemetleft{}") (secondary-opening :utf-8 "›" :html "&rsaquo;" :latex "\\frq{}" :texinfo "@guilsinglright{}") (secondary-closing :utf-8 "‹" :html "&lsaquo;" :latex "\\flq{}" :texinfo "@guilsingleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("de" (primary-opening :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}") (primary-closing :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}") (secondary-opening :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}") (secondary-closing :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("en" (primary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``") (primary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("es" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``") (secondary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''") (apostrophe :utf-8 "’" :html "&rsquo;")) ("fr" (primary-opening :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og " :texinfo "@guillemetleft{}@tie{}") (primary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") (secondary-opening :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og " :texinfo "@guillemetleft{}@tie{}") (secondary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("is" (primary-opening :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}") (primary-closing :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}") (secondary-opening :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}") (secondary-closing :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("no" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("nb" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("nn" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("ru" (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}") (secondary-closing :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}") (apostrophe :utf-8 "’" :html: "&#39;")) ("sl" (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}") (secondary-closing :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("sv" (primary-opening :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’") (primary-closing :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’") (secondary-opening :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")))))
-                nil [208570 215690])
-            ("org-export--smart-quote-status" function (:arguments ("s" "info")) nil [215692 218531])
-            ("org-export-activate-smart-quotes" function (:arguments ("s" "encoding" "info" "original")) nil [218533 219422])
-            ("org-export-get-parent-headline" function (:arguments ("blob")) nil [219998 220172])
-            ("org-export-get-parent-element" function (:arguments ("object")) nil [220174 220361])
-            ("org-export-get-parent-table" function (:arguments ("object")) nil [220363 220550])
-            ("org-export-get-previous-element" function (:arguments ("blob" "info" "n")) nil [220552 221496])
-            ("org-export-get-next-element" function (:arguments ("blob" "info" "n")) nil [221498 222451])
-            ("org-export-dictionary" variable
-               (:constant-flag t
-                :default-value (quote (("%e %n: %c" ("fr" :default "%e %n : %c" :html "%e&nbsp;%n&nbsp;: %c")) ("Author" ("ar" :default "تأليف") ("ca" :default "Autor") ("cs" :default "Autor") ("da" :default "Forfatter") ("de" :default "Autor") ("eo" :html "A&#365;toro") ("es" :default "Autor") ("et" :default "Autor") ("fi" :html "Tekij&auml;") ("fr" :default "Auteur") ("hu" :default "Szerz&otilde;") ("is" :html "H&ouml;fundur") ("it" :default "Autore") ("ja" :default "著者" :html "&#33879;&#32773;") ("nl" :default "Auteur") ("no" :default "Forfatter") ("nb" :default "Forfatter") ("nn" :default "Forfattar") ("pl" :default "Autor") ("pt_BR" :default "Autor") ("ru" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор") ("sl" :default "Avtor") ("sv" :html "F&ouml;rfattare") ("uk" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор") ("zh-CN" :html "&#20316;&#32773;" :utf-8 "作者") ("zh-TW" :html "&#20316;&#32773;" :utf-8 "作者")) ("Continued from previous page" ("ar" :default "تتمة الصفحة السابقة") ("cs" :default "Pokračování z předchozí strany") ("de" :default "Fortsetzung von vorheriger Seite") ("es" :html "Contin&uacute;a de la p&aacute;gina anterior" :ascii "Continua de la pagina anterior" :default "Continúa de la página anterior") ("fr" :default "Suite de la page précédente") ("it" :default "Continua da pagina precedente") ("ja" :default "前ページからの続き") ("nl" :default "Vervolg van vorige pagina") ("pt" :default "Continuação da página anterior") ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077;)" :utf-8 "(Продолжение)") ("sl" :default "Nadaljevanje s prejšnje strani")) ("Continued on next page" ("ar" :default "التتمة في الصفحة التالية") ("cs" :default "Pokračuje na další stránce") ("de" :default "Fortsetzung nächste Seite") ("es" :html "Contin&uacute;a en la siguiente p&aacute;gina" :ascii "Continua en la siguiente pagina" :default "Continúa en la siguiente página") ("fr" :default "Suite page suivante") ("it" :default "Continua alla pagina successiva") ("ja" :default "次ページに続く") ("nl" :default "Vervolg op volgende pagina") ("pt" :default "Continua na página seguinte") ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;)" :utf-8 "(Продолжение следует)") ("sl" :default "Nadaljevanje na naslednji strani")) ("Created" ("cs" :default "Vytvořeno") ("sl" :default "Ustvarjeno")) ("Date" ("ar" :default "بتاريخ") ("ca" :default "Data") ("cs" :default "Datum") ("da" :default "Dato") ("de" :default "Datum") ("eo" :default "Dato") ("es" :default "Fecha") ("et" :html "Kuup&#228;ev" :utf-8 "Kuupäev") ("fi" :html "P&auml;iv&auml;m&auml;&auml;r&auml;") ("hu" :html "D&aacute;tum") ("is" :default "Dagsetning") ("it" :default "Data") ("ja" :default "日付" :html "&#26085;&#20184;") ("nl" :default "Datum") ("no" :default "Dato") ("nb" :default "Dato") ("nn" :default "Dato") ("pl" :default "Data") ("pt_BR" :default "Data") ("ru" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата") ("sl" :default "Datum") ("sv" :default "Datum") ("uk" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата") ("zh-CN" :html "&#26085;&#26399;" :utf-8 "日期") ("zh-TW" :html "&#26085;&#26399;" :utf-8 "日期")) ("Equation" ("ar" :default "معادلة") ("cs" :default "Rovnice") ("da" :default "Ligning") ("de" :default "Gleichung") ("es" :ascii "Ecuacion" :html "Ecuaci&oacute;n" :default "Ecuación") ("et" :html "V&#245;rrand" :utf-8 "Võrrand") ("fr" :ascii "Equation" :default "Équation") ("is" :default "Jafna") ("ja" :default "方程式") ("no" :default "Ligning") ("nb" :default "Ligning") ("nn" :default "Likning") ("pt_BR" :html "Equa&ccedil;&atilde;o" :default "Equação" :ascii "Equacao") ("ru" :html "&#1059;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1077;" :utf-8 "Уравнение") ("sl" :default "Enačba") ("sv" :default "Ekvation") ("zh-CN" :html "&#26041;&#31243;" :utf-8 "方程")) ("Figure" ("ar" :default "شكل") ("cs" :default "Obrázek") ("da" :default "Figur") ("de" :default "Abbildung") ("es" :default "Figura") ("et" :default "Joonis") ("is" :default "Mynd") ("ja" :default "図" :html "&#22259;") ("no" :default "Illustrasjon") ("nb" :default "Illustrasjon") ("nn" :default "Illustrasjon") ("pt_BR" :default "Figura") ("ru" :html "&#1056;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;" :utf-8 "Рисунок") ("sv" :default "Illustration") ("zh-CN" :html "&#22270;" :utf-8 "图")) ("Figure %d:" ("ar" :default "شكل %d:") ("cs" :default "Obrázek %d:") ("da" :default "Figur %d") ("de" :default "Abbildung %d:") ("es" :default "Figura %d:") ("et" :default "Joonis %d:") ("fr" :default "Figure %d :" :html "Figure&nbsp;%d&nbsp;:") ("is" :default "Mynd %d") ("ja" :default "図%d: " :html "&#22259;%d: ") ("no" :default "Illustrasjon %d") ("nb" :default "Illustrasjon %d") ("nn" :default "Illustrasjon %d") ("pt_BR" :default "Figura %d:") ("ru" :html "&#1056;&#1080;&#1089;. %d.:" :utf-8 "Рис. %d.:") ("sl" :default "Slika %d") ("sv" :default "Illustration %d") ("zh-CN" :html "&#22270;%d&nbsp;" :utf-8 "图%d ")) ("Footnotes" ("ar" :default "الهوامش") ("ca" :html "Peus de p&agrave;gina") ("cs" :default "Poznámky pod čarou") ("da" :default "Fodnoter") ("de" :html "Fu&szlig;noten" :default "Fußnoten") ("eo" :default "Piednotoj") ("es" :ascii "Nota al pie de pagina" :html "Nota al pie de p&aacute;gina" :default "Nota al pie de página") ("et" :html "Allm&#228;rkused" :utf-8 "Allmärkused") ("fi" :default "Alaviitteet") ("fr" :default "Notes de bas de page") ("hu" :html "L&aacute;bjegyzet") ("is" :html "Aftanm&aacute;lsgreinar") ("it" :html "Note a pi&egrave; di pagina") ("ja" :default "脚注" :html "&#33050;&#27880;") ("nl" :default "Voetnoten") ("no" :default "Fotnoter") ("nb" :default "Fotnoter") ("nn" :default "Fotnotar") ("pl" :default "Przypis") ("pt_BR" :html "Notas de Rodap&eacute;" :default "Notas de Rodapé" :ascii "Notas de Rodape") ("ru" :html "&#1057;&#1085;&#1086;&#1089;&#1082;&#1080;" :utf-8 "Сноски") ("sl" :default "Opombe") ("sv" :default "Fotnoter") ("uk" :html "&#1055;&#1088;&#1080;&#1084;&#1110;&#1090;&#1082;&#1080;" :utf-8 "Примітки") ("zh-CN" :html "&#33050;&#27880;" :utf-8 "脚注") ("zh-TW" :html "&#33139;&#35387;" :utf-8 "腳註")) ("List of Listings" ("ar" :default "قائمة بالبرامج") ("cs" :default "Seznam programů") ("da" :default "Programmer") ("de" :default "Programmauflistungsverzeichnis") ("es" :ascii "Indice de Listados de programas" :html "&Iacute;ndice de Listados de programas" :default "Índice de Listados de programas") ("et" :default "Loendite nimekiri") ("fr" :default "Liste des programmes") ("ja" :default "ソースコード目次") ("no" :default "Dataprogrammer") ("nb" :default "Dataprogrammer") ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1086;&#1082;" :utf-8 "Список распечаток") ("sl" :default "Seznam programskih izpisov") ("zh-CN" :html "&#20195;&#30721;&#30446;&#24405;" :utf-8 "代码目录")) ("List of Tables" ("ar" :default "قائمة بالجداول") ("cs" :default "Seznam tabulek") ("da" :default "Tabeller") ("de" :default "Tabellenverzeichnis") ("es" :ascii "Indice de tablas" :html "&Iacute;ndice de tablas" :default "Índice de tablas") ("et" :default "Tabelite nimekiri") ("fr" :default "Liste des tableaux") ("is" :default "Töfluskrá" :html "T&ouml;fluskr&aacute;") ("ja" :default "表目次") ("no" :default "Tabeller") ("nb" :default "Tabeller") ("nn" :default "Tabeller") ("pt_BR" :default "Índice de Tabelas" :ascii "Indice de Tabelas") ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;" :utf-8 "Список таблиц") ("sl" :default "Seznam tabel") ("sv" :default "Tabeller") ("zh-CN" :html "&#34920;&#26684;&#30446;&#24405;" :utf-8 "表格目录")) ("Listing" ("ar" :default "برنامج") ("cs" :default "Program") ("da" :default "Program") ("de" :default "Programmlisting") ("es" :default "Listado de programa") ("et" :default "Loend") ("fr" :default "Programme" :html "Programme") ("ja" :default "ソースコード") ("no" :default "Dataprogram") ("nb" :default "Dataprogram") ("pt_BR" :default "Listagem") ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072;" :utf-8 "Распечатка") ("sl" :default "Izpis programa") ("zh-CN" :html "&#20195;&#30721;" :utf-8 "代码")) ("Listing %d:" ("ar" :default "برنامج %d:") ("cs" :default "Program %d:") ("da" :default "Program %d") ("de" :default "Programmlisting %d") ("es" :default "Listado de programa %d") ("et" :default "Loend %d") ("fr" :default "Programme %d :" :html "Programme&nbsp;%d&nbsp;:") ("ja" :default "ソースコード%d:") ("no" :default "Dataprogram %d") ("nb" :default "Dataprogram %d") ("pt_BR" :default "Listagem %d") ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072; %d.:" :utf-8 "Распечатка %d.:") ("sl" :default "Izpis programa %d") ("zh-CN" :html "&#20195;&#30721;%d&nbsp;" :utf-8 "代码%d ")) ("References" ("ar" :default "المراجع") ("cs" :default "Reference") ("fr" :ascii "References" :default "Références") ("de" :default "Quellen") ("es" :default "Referencias") ("sl" :default "Reference")) ("See figure %s" ("cs" :default "Viz obrázek %s") ("fr" :default "cf. figure %s" :html "cf.&nbsp;figure&nbsp;%s" :latex "cf.~figure~%s") ("sl" :default "Glej sliko %s")) ("See listing %s" ("cs" :default "Viz program %s") ("fr" :default "cf. programme %s" :html "cf.&nbsp;programme&nbsp;%s" :latex "cf.~programme~%s") ("sl" :default "Glej izpis programa %s")) ("See section %s" ("ar" :default "انظر قسم %s") ("cs" :default "Viz sekce %s") ("da" :default "jævnfør afsnit %s") ("de" :default "siehe Abschnitt %s") ("es" :ascii "Vea seccion %s" :html "Vea secci&oacute;n %s" :default "Vea sección %s") ("et" :html "Vaata peat&#252;kki %s" :utf-8 "Vaata peatükki %s") ("fr" :default "cf. section %s") ("ja" :default "セクション %s を参照") ("pt_BR" :html "Veja a se&ccedil;&atilde;o %s" :default "Veja a seção %s" :ascii "Veja a secao %s") ("ru" :html "&#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; %s" :utf-8 "См. раздел %s") ("sl" :default "Glej poglavje %d") ("zh-CN" :html "&#21442;&#35265;&#31532;%s&#33410;" :utf-8 "参见第%s节")) ("See table %s" ("cs" :default "Viz tabulka %s") ("fr" :default "cf. tableau %s" :html "cf.&nbsp;tableau&nbsp;%s" :latex "cf.~tableau~%s") ("sl" :default "Glej tabelo %s")) ("Table" ("ar" :default "جدول") ("cs" :default "Tabulka") ("de" :default "Tabelle") ("es" :default "Tabla") ("et" :default "Tabel") ("fr" :default "Tableau") ("is" :default "Tafla") ("ja" :default "表" :html "&#34920;") ("pt_BR" :default "Tabela") ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;" :utf-8 "Таблица") ("zh-CN" :html "&#34920;" :utf-8 "表")) ("Table %d:" ("ar" :default "جدول %d:") ("cs" :default "Tabulka %d:") ("da" :default "Tabel %d") ("de" :default "Tabelle %d") ("es" :default "Tabla %d") ("et" :default "Tabel %d") ("fr" :default "Tableau %d :") ("is" :default "Tafla %d") ("ja" :default "表%d:" :html "&#34920;%d:") ("no" :default "Tabell %d") ("nb" :default "Tabell %d") ("nn" :default "Tabell %d") ("pt_BR" :default "Tabela %d") ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; %d.:" :utf-8 "Таблица %d.:") ("sl" :default "Tabela %d") ("sv" :default "Tabell %d") ("zh-CN" :html "&#34920;%d&nbsp;" :utf-8 "表%d ")) ("Table of Contents" ("ar" :default "قائمة المحتويات") ("ca" :html "&Iacute;ndex") ("cs" :default "Obsah") ("da" :default "Indhold") ("de" :default "Inhaltsverzeichnis") ("eo" :default "Enhavo") ("es" :ascii "Indice" :html "&Iacute;ndice" :default "Índice") ("et" :default "Sisukord") ("fi" :html "Sis&auml;llysluettelo") ("fr" :ascii "Sommaire" :default "Table des matières") ("hu" :html "Tartalomjegyz&eacute;k") ("is" :default "Efnisyfirlit") ("it" :default "Indice") ("ja" :default "目次" :html "&#30446;&#27425;") ("nl" :default "Inhoudsopgave") ("no" :default "Innhold") ("nb" :default "Innhold") ("nn" :default "Innhald") ("pl" :html "Spis tre&#x015b;ci") ("pt_BR" :html "&Iacute;ndice" :utf8 "Índice" :ascii "Indice") ("ru" :html "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;" :utf-8 "Содержание") ("sl" :default "Kazalo") ("sv" :html "Inneh&aring;ll") ("uk" :html "&#1047;&#1084;&#1110;&#1089;&#1090;" :utf-8 "Зміст") ("zh-CN" :html "&#30446;&#24405;" :utf-8 "目录") ("zh-TW" :html "&#30446;&#37636;" :utf-8 "目錄")) ("Unknown reference" ("ar" :default "مرجع غير معرّف") ("da" :default "ukendt reference") ("de" :default "Unbekannter Verweis") ("es" :default "Referencia desconocida") ("et" :default "Tundmatu viide") ("fr" :ascii "Destination inconnue" :default "Référence inconnue") ("ja" :default "不明な参照先") ("pt_BR" :default "Referência desconhecida" :ascii "Referencia desconhecida") ("ru" :html "&#1053;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1072;&#1103; &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;" :utf-8 "Неизвестная ссылка") ("sl" :default "Neznana referenca") ("zh-CN" :html "&#26410;&#30693;&#24341;&#29992;" :utf-8 "未知引用")))))
-                nil [222663 237683])
-            ("org-export-translate" function (:arguments ("s" "encoding" "info")) nil [237685 238300])
-            ("org-export-async-start" function (:arguments ("fun" "body")) nil [239518 243680])
-            ("org-export-to-buffer" function (:arguments ("backend" "buffer" "async" "subtreep" "visible-only" "body-only" "ext-plist" "post-process")) nil [243697 246109])
-            ("org-export-to-file" function (:arguments ("backend" "file" "async" "subtreep" "visible-only" "body-only" "ext-plist" "post-process")) nil [246126 248619])
-            ("org-export-output-file-name" function (:arguments ("extension" "subtreep" "pub-dir")) nil [248621 250652])
-            ("org-export-add-to-stack" function (:arguments ("source" "backend" "process")) nil [250654 251153])
-            ("org-export-stack" function (:user-visible-flag t) nil [251155 251492])
-            ("org-export-stack-clear" function (:user-visible-flag t) nil [251494 251624])
-            ("org-export-stack-refresh" function (:user-visible-flag t) nil [251626 251734])
-            ("org-export-stack-remove" function
-               (:user-visible-flag t
-                :arguments ("source"))
-                nil [251736 252098])
-            ("org-export-stack-view" function
-               (:user-visible-flag t
-                :arguments ("in-emacs"))
-                nil [252100 252544])
-            ("org-export-stack-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) (set-keymap-parent km tabulated-list-mode-map) (define-key km " " (quote next-line)) (define-key km "" (quote next-line)) (define-key km [down] (quote next-line)) (define-key km "" (quote previous-line)) (define-key km "" (quote previous-line)) (define-key km [up] (quote previous-line)) (define-key km "C" (quote org-export-stack-clear)) (define-key km "v" (quote org-export-stack-view)) (define-key km (kbd "RET") (quote org-export-stack-view)) (define-key km "d" (quote org-export-stack-remove)) km)) nil [252546 253141])
-            ("define-derived-mode" code nil nil [253143 254150])
-            ("org-export--stack-generate" function nil nil [254152 255267])
-            ("org-export--stack-num-predicate" function (:arguments ("a" "b")) nil [255269 255401])
-            ("org-export--stack-source-at-point" function nil nil [255403 256072])
-            ("org-export-dispatch" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [256363 259262])
-            ("org-export--dispatch-ui" function (:arguments ("options" "first-key" "expertp")) nil [259264 265977])
-            ("org-export--dispatch-action" function (:arguments ("prompt" "allowed-keys" "entries" "options" "first-key" "expertp")) nil [265979 269344])
-            ("ox" package nil nil [269348 269361]))          
-      :file "ox.el"
-      :pointmax 269458
-      :fsize 270217
-      :lastmodtime '(23525 29594 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1937 1954])
-            ("org-macs" include nil nil [1955 1974])
-            ("declare-function" code nil nil [1975 2032])
-            ("org-duration-canonical-units" variable
-               (:constant-flag t
-                :default-value (\` (("min" . 1) ("h" . 60) ("d" \, (* 60 24)))))
-                nil [2058 2225])
-            ("org-duration-units" variable (:default-value (\` (("min" . 1) ("h" . 60) ("d" \, (* 60 24)) ("w" \, (* 60 24 7)) ("m" \, (* 60 24 30)) ("y" \, (* 60 24 365.25))))) nil [2227 3397])
-            ("org-duration-format" variable (:default-value (quote (("d") (special . h:mm)))) nil [3399 6127])
-            ("org-duration--h:mm-re" variable
-               (:constant-flag t
-                :default-value "\\`[ 	]*[0-9]+\\(?::[0-9]\\{2\\}\\)\\{1,2\\}[ 	]*\\'")
-                nil [6169 6424])
-            ("org-duration--h:mm:ss-re" variable
-               (:constant-flag t
-                :default-value "\\`[ 	]*[0-9]+\\(?::[0-9]\\{2\\}\\)\\{2\\}[ 	]*\\'")
-                nil [6426 6669])
-            ("org-duration--unit-re" variable nil nil [6671 6876])
-            ("org-duration--full-re" variable nil nil [6878 7016])
-            ("org-duration--mixed-re" variable nil nil [7018 7266])
-            ("org-duration--modifier" function (:arguments ("unit" "canonical")) nil [7268 7627])
-            ("org-duration-set-regexps" function (:user-visible-flag t) nil [7668 8416])
-            ("org-duration-p" function (:arguments ("s")) nil [8433 8669])
-            ("org-duration-to-minutes" function (:arguments ("duration" "canonical")) nil [8686 10115])
-            ("org-duration-from-minutes" function (:arguments ("minutes" "fmt" "canonical")) nil [10132 14164])
-            ("org-duration-h:mm-only-p" function (:arguments ("times")) nil [14181 14898])
-            ("org-duration-set-regexps" code nil nil [14922 14948])
-            ("org-duration" package nil nil [14950 14973]))          
-      :file "org-duration.el"
-      :pointmax 15004
-      :fsize 15003
-      :lastmodtime '(23525 29590 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1111 1128])
-            ("org" include nil nil [1129 1143])
-            ("declare-function" code nil nil [1145 1208])
-            ("declare-function" code nil nil [1209 1272])
-            ("declare-function" code nil nil [1273 1351])
-            ("declare-function" code nil nil [1352 1422])
-            ("declare-function" code nil nil [1423 1489])
-            ("declare-function" code nil nil [1490 1611])
-            ("declare-function" code nil nil [1612 1717])
-            ("declare-function" code nil nil [1718 1790])
-            ("declare-function" code nil nil [1791 1857])
-            ("declare-function" code nil nil [1858 1917])
-            ("org-agenda-columns-add-appointments-to-effort-sum" variable nil nil [1919 1977])
-            ("org-agenda-columns-compute-summary-properties" variable nil nil [1978 2032])
-            ("org-agenda-columns-show-summaries" variable nil nil [2033 2075])
-            ("org-agenda-view-columns-initially" variable nil nil [2076 2118])
-            ("org-inlinetask-min-level" variable nil nil [2119 2152])
-            ("org-columns-modify-value-for-display-function" variable nil nil [2175 2698])
-            ("org-columns-summary-types" variable nil nil [2700 3664])
-            ("defvar-local" code nil nil [3686 3772])
-            ("defvar-local" code nil nil [3774 3878])
-            ("defvar-local" code nil nil [3880 4037])
-            ("defvar-local" code nil nil [4039 4144])
-            ("defvar-local" code nil nil [4146 4265])
-            ("defvar-local" code nil nil [4267 4378])
-            ("org-columns--time" variable nil nil [4380 4477])
-            ("org-columns-map" variable (:default-value (make-sparse-keymap)) nil [4479 4564])
-            ("org-columns-summary-types-default" variable
-               (:constant-flag t
-                :default-value (quote (("+" . org-columns--summary-sum) ("$" . org-columns--summary-currencies) ("X" . org-columns--summary-checkbox) ("X/" . org-columns--summary-checkbox-count) ("X%" . org-columns--summary-checkbox-percent) ("max" . org-columns--summary-max) ("mean" . org-columns--summary-mean) ("min" . org-columns--summary-min) (":" . org-columns--summary-sum-times) (":max" . org-columns--summary-max-time) (":mean" . org-columns--summary-mean-time) (":min" . org-columns--summary-min-time) ("@max" . org-columns--summary-max-age) ("@mean" . org-columns--summary-mean-age) ("@min" . org-columns--summary-min-age) ("est+" . org-columns--summary-estimate))))
-                nil [4566 5431])
-            ("org-columns-content" function (:user-visible-flag t) nil [5433 5563])
-            ("org-defkey" code nil nil [5565 5618])
-            ("org-defkey" code nil nil [5619 5665])
-            ("org-defkey" code nil nil [5666 5722])
-            ("org-defkey" code nil nil [5723 5780])
-            ("org-defkey" code nil nil [5781 5852])
-            ("org-defkey" code nil nil [5853 5915])
-            ("org-defkey" code nil nil [5916 5972])
-            ("org-defkey" code nil nil [5973 6023])
-            ("org-defkey" code nil nil [6024 6074])
-            ("org-defkey" code nil nil [6075 6125])
-            ("org-defkey" code nil nil [6126 6176])
-            ("org-defkey" code nil nil [6177 6227])
-            ("org-defkey" code nil nil [6228 6286])
-            ("org-defkey" code nil nil [6287 6348])
-            ("org-defkey" code nil nil [6349 6440])
-            ("org-defkey" code nil nil [6441 6533])
-            ("org-defkey" code nil nil [6534 6836])
-            ("org-defkey" code nil nil [6837 7137])
-            ("org-defkey" code nil nil [7138 7214])
-            ("org-defkey" code nil nil [7215 7279])
-            ("org-defkey" code nil nil [7280 7359])
-            ("org-defkey" code nil nil [7360 7428])
-            ("org-defkey" code nil nil [7429 7481])
-            ("org-defkey" code nil nil [7482 7533])
-            ("org-defkey" code nil nil [7534 7601])
-            ("org-defkey" code nil nil [7602 7667])
-            ("org-defkey" code nil nil [7668 7734])
-            ("org-defkey" code nil nil [7735 7803])
-            ("dotimes" code nil nil [7804 7949])
-            ("easy-menu-define" code nil nil [7951 8896])
-            ("org-columns--displayed-value" function (:arguments ("spec" "value")) nil [8898 9749])
-            ("org-columns--collect-values" function (:arguments ("compiled-fmt")) nil [9751 10891])
-            ("org-columns--set-widths" function (:arguments ("cache")) nil [10893 11621])
-            ("org-columns--new-overlay" function (:arguments ("beg" "end" "string" "face")) nil [11623 11922])
-            ("org-columns--summarize" function (:arguments ("operator")) nil [11924 12210])
-            ("org-columns--overlay-text" function (:arguments ("value" "fmt" "width" "property" "original")) nil [12212 12907])
-            ("org-columns--display-here" function (:arguments ("columns" "dateline")) nil [12909 15844])
-            ("org-columns-add-ellipses" function (:arguments ("string" "width")) nil [15846 16195])
-            ("org-columns-full-header-line-format" variable nil nil [16197 16320])
-            ("org-previous-header-line-format" variable nil nil [16321 16426])
-            ("org-columns-inhibit-recalculation" variable nil nil [16427 16532])
-            ("org-columns-flyspell-was-active" variable nil nil [16533 16742])
-            ("header-line-format" variable nil nil [16744 16771])
-            ("org-columns-previous-hscroll" variable nil nil [16772 16811])
-            ("org-columns--display-here-title" function (:user-visible-flag t) nil [16813 17627])
-            ("org-columns-hscroll-title" function nil nil [17629 18129])
-            ("org-colview-initial-truncate-line-value" variable nil nil [18131 18242])
-            ("org-columns-remove-overlays" function (:user-visible-flag t) nil [18259 19236])
-            ("org-columns-compact-links" function (:arguments ("s")) nil [19238 19484])
-            ("org-columns-show-value" function (:user-visible-flag t) nil [19486 19684])
-            ("org-agenda-columns-active" variable nil nil [19686 19720])
-            ("org-columns-quit" function (:user-visible-flag t) nil [19750 20247])
-            ("org-columns-check-computed" function nil nil [20249 20586])
-            ("org-columns-todo" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [20588 20729])
-            ("org-columns-set-tags-or-toggle" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [20731 21041])
-            ("org-agenda-overriding-columns-format" variable nil nil [21043 21211])
-            ("org-columns-edit-value" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [21213 24105])
-            ("org-columns-edit-allowed" function (:user-visible-flag t) nil [24107 24910])
-            ("org-columns--call" function (:arguments ("fun")) nil [24912 25267])
-            ("org-columns-previous-allowed-value" function (:user-visible-flag t) nil [25269 25425])
-            ("org-columns-next-allowed-value" function
-               (:user-visible-flag t
-                :arguments ("previous" "nth"))
-                nil [25427 27882])
-            ("org-colview-construct-allowed-dates" function (:arguments ("s")) nil [27884 28921])
-            ("org-columns-open-link" function (:arguments ("arg")) nil [28923 29095])
-            ("org-columns-get-format-and-top-level" function nil nil [29112 29241])
-            ("org-columns-get-format" function
-               (:user-visible-flag t
-                :arguments ("fmt-string"))
-                nil [29243 30074])
-            ("org-columns-goto-top-level" function nil nil [30076 30556])
-            ("org-columns" function
-               (:user-visible-flag t
-                :arguments ("global" "columns-fmt-string"))
-                nil [30573 32676])
-            ("org-columns-new" function
-               (:user-visible-flag t
-                :arguments ("spec" "attributes"))
-                nil [32678 34174])
-            ("org-columns-delete" function (:user-visible-flag t) nil [34176 34920])
-            ("org-columns-edit-attributes" function (:user-visible-flag t) nil [34922 35099])
-            ("org-columns-widen" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [35101 35504])
-            ("org-columns-narrow" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [35506 35636])
-            ("org-columns-move-right" function (:user-visible-flag t) nil [35638 36692])
-            ("org-columns-move-left" function (:user-visible-flag t) nil [36694 36974])
-            ("org-columns-store-format" function nil nil [36976 38349])
-            ("org-columns-update" function (:arguments ("property")) nil [38351 39403])
-            ("org-columns-redo" function (:user-visible-flag t) nil [39405 39940])
-            ("org-columns-uncompile-format" function (:arguments ("compiled")) nil [39942 40472])
-            ("org-columns-compile-format" function (:arguments ("fmt")) nil [40474 41945])
-            ("org-columns--age-to-minutes" function (:arguments ("s")) nil [41975 42474])
-            ("org-columns--format-age" function (:arguments ("minutes")) nil [42476 42657])
-            ("org-columns--summary-apply-times" function (:arguments ("fun" "times")) nil [42687 43247])
-            ("org-columns--compute-spec" function (:arguments ("spec" "update")) nil [43249 46077])
-            ("org-columns-compute" function
-               (:user-visible-flag t
-                :arguments ("property"))
-                nil [46094 46599])
-            ("org-columns-compute-all" function nil nil [46601 47118])
-            ("org-columns--summary-sum" function (:arguments ("values" "printf")) nil [47120 47327])
-            ("org-columns--summary-currencies" function (:arguments ("values" "_")) nil [47329 47494])
-            ("org-columns--summary-checkbox" function (:arguments ("check-boxes" "_")) nil [47496 47748])
-            ("org-columns--summary-checkbox-count" function (:arguments ("check-boxes" "_")) nil [47750 48026])
-            ("org-columns--summary-checkbox-percent" function (:arguments ("check-boxes" "_")) nil [48028 48285])
-            ("org-columns--summary-min" function (:arguments ("values" "printf")) nil [48287 48503])
-            ("org-columns--summary-max" function (:arguments ("values" "printf")) nil [48505 48721])
-            ("org-columns--summary-mean" function (:arguments ("values" "printf")) nil [48723 48969])
-            ("org-columns--summary-sum-times" function (:arguments ("times" "_")) nil [48971 49081])
-            ("org-columns--summary-min-time" function (:arguments ("times" "_")) nil [49083 49221])
-            ("org-columns--summary-max-time" function (:arguments ("times" "_")) nil [49223 49361])
-            ("org-columns--summary-mean-time" function (:arguments ("times" "_")) nil [49363 49570])
-            ("org-columns--summary-min-age" function (:arguments ("ages" "_")) nil [49572 49747])
-            ("org-columns--summary-max-age" function (:arguments ("ages" "_")) nil [49749 49924])
-            ("org-columns--summary-mean-age" function (:arguments ("ages" "_")) nil [49926 50132])
-            ("org-columns--summary-estimate" function (:arguments ("estimates" "_")) nil [50134 50787])
-            ("org-columns--capture-view" function (:arguments ("maxlevel" "skip-empty" "format" "local")) nil [50827 52458])
-            ("org-columns--clean-item" function (:arguments ("item")) nil [52460 53015])
-            ("org-dblock-write:columnview" function (:arguments ("params")) nil [53032 57492])
-            ("org-columns-insert-dblock" function (:user-visible-flag t) nil [57509 58009])
-            ("org-agenda-columns" function (:user-visible-flag t) nil [58060 60230])
-            ("org-agenda-colview-summarize" function (:arguments ("cache")) nil [60232 62467])
-            ("org-agenda-colview-compute" function (:arguments ("fmt")) nil [62469 63261])
-            ("org-colview" package nil nil [63264 63286]))          
-      :file "org-colview.el"
-      :pointmax 63317
-      :fsize 63316
-      :lastmodtime '(23525 29589 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [2108 2125])
-            ("org" include nil nil [2126 2140])
-            ("declare-function" code nil nil [2142 2200])
-            ("declare-function" code nil nil [2201 2278])
-            ("declare-function" code nil nil [2279 2376])
-            ("declare-function" code nil nil [2377 2428])
-            ("declare-function" code nil nil [2429 2480])
-            ("declare-function" code nil nil [2481 2532])
-            ("declare-function" code nil nil [2533 2590])
-            ("declare-function" code nil nil [2591 2645])
-            ("org-end-time-was-given" variable nil nil [2647 2678])
-            ("org-remember-default-headline" variable nil nil [2679 2717])
-            ("org-remember-templates" variable nil nil [2718 2749])
-            ("org-table-hlines" variable nil nil [2750 2775])
-            ("org-table-current-begin-pos" variable nil nil [2776 2812])
-            ("dired-buffers" variable nil nil [2813 2835])
-            ("org-capture-clock-was-started" variable nil nil [2837 2931])
-            ("org-capture-last-stored-marker" variable (:default-value (make-marker)) nil [2933 3060])
-            ("org-capture-link-is-already-stored" variable nil nil [3191 3238])
-            ("org-capture-is-refiling" variable nil nil [3240 3331])
-            ("org-capture--prompt-history-table" variable (:default-value (make-hash-table :test (function equal))) nil [3333 3456])
-            ("org-capture--prompt-history" variable nil nil [3458 3540])
-            ("org-capture" customgroup (:user-visible-flag t) nil [3542 3649])
-            ("org-capture-upgrade-templates" function (:arguments ("templates")) nil [3651 5100])
-            ("org-capture-templates" variable nil nil [5102 19125])
-            ("org-capture-before-finalize-hook" variable nil nil [19127 19391])
-            ("org-capture-after-finalize-hook" variable nil nil [19393 19588])
-            ("org-capture-prepare-finalize-hook" variable nil nil [19590 19796])
-            ("org-capture-bookmark" variable (:default-value t) nil [19798 19975])
-            ("org-capture-plist" variable nil nil [20050 20159])
-            ("org-capture-current-plist" variable nil nil [20161 20554])
-            ("org-capture-clock-keep" variable nil nil [20556 20728])
-            ("org-capture-put" function (:arguments ("stuff")) nil [20730 20946])
-            ("org-capture-get" function (:arguments ("prop" "local")) nil [20947 21328])
-            ("org-capture-member" function (:arguments ("prop" "local")) nil [21330 21690])
-            ("org-capture-mode-map" variable (:default-value (make-sparse-keymap)) nil [21712 21902])
-            ("org-capture-mode-hook" variable nil nil [21904 21981])
-            ("define-minor-mode" code nil nil [21983 22397])
-            ("define-key" code nil nil [22398 22464])
-            ("define-key" code nil nil [22465 22527])
-            ("define-key" code nil nil [22528 22592])
-            ("org-capture-initial" variable nil nil [22617 22649])
-            ("org-capture-entry" variable nil nil [22650 22680])
-            ("org-capture-string" function
-               (:user-visible-flag t
-                :arguments ("string" "keys"))
-                nil [22697 22951])
-            ("org-capture-templates-contexts" variable nil nil [22953 24747])
-            ("org-capture-use-agenda-date" variable nil nil [24749 25005])
-            ("org-capture" function
-               (:user-visible-flag t
-                :arguments ("goto" "keys"))
-                nil [25022 29236])
-            ("org-capture-get-template" function nil nil [29238 29955])
-            ("org-capture-finalize" function
-               (:user-visible-flag t
-                :arguments ("stay-with-capture"))
-                nil [29957 35061])
-            ("org-capture-refile" function (:user-visible-flag t) nil [35063 36616])
-            ("org-capture-kill" function (:user-visible-flag t) nil [36618 36926])
-            ("org-capture-goto-last-stored" function (:user-visible-flag t) nil [36928 37229])
-            ("org-capture-put-target-region-and-position" function nil nil [37282 37634])
-            ("org-time-was-given" variable nil nil [37636 37663])
-            ("org-capture-set-target-location" function (:arguments ("target")) nil [37695 43118])
-            ("org-capture-expand-file" function (:arguments ("file")) nil [43120 43859])
-            ("org-capture-target-buffer" function (:arguments ("file")) nil [43861 44175])
-            ("org-capture-place-template" function (:arguments ("inhibit-wconf-store")) nil [44177 45106])
-            ("org-capture-place-entry" function nil nil [45108 46463])
-            ("org-capture-place-item" function nil nil [46465 48529])
-            ("org-capture-place-table-line" function nil nil [48531 51561])
-            ("org-capture-place-plain-text" function nil nil [51563 52884])
-            ("org-capture-mark-kill-region" function (:arguments ("beg" "end")) nil [52886 53138])
-            ("org-capture-position-for-last-stored" function (:arguments ("where")) nil [53140 53643])
-            ("org-capture-store-last-position" function nil nil [53645 54400])
-            ("org-capture-narrow" function (:arguments ("beg" "end")) nil [54402 54583])
-            ("org-capture-empty-lines-before" function (:arguments ("n")) nil [54585 54992])
-            ("org-capture-empty-lines-after" function (:arguments ("n")) nil [54994 55426])
-            ("org-clock-marker" variable nil nil [55428 55453])
-            ("org-capture-insert-template-here" function nil nil [55475 56679])
-            ("org-capture-set-plist" function (:arguments ("entry")) nil [56681 57466])
-            ("org-capture-goto-target" function
-               (:user-visible-flag t
-                :arguments ("template-key"))
-                nil [57468 57919])
-            ("org-capture-get-indirect-buffer" function (:arguments ("buffer" "prefix")) nil [57921 58552])
-            ("org-capture-verify-tree" function (:arguments ("tree")) nil [58554 58733])
-            ("org-mks" function (:arguments ("table" "title" "prompt" "specials")) nil [58735 62249])
-            ("org-capture-select-template" function (:arguments ("keys")) nil [62273 62984])
-            ("org-capture--clipboards" variable nil nil [62986 63058])
-            ("org-capture-fill-template" function (:arguments ("template" "initial" "annotation")) nil [63060 72393])
-            ("org-capture-escaped-%" function nil nil [72395 72695])
-            ("org-capture-expand-embedded-elisp" function (:arguments ("mark")) nil [72697 73909])
-            ("org-capture--expand-keyword-in-embedded-elisp" function (:arguments ("attr")) nil [73911 74436])
-            ("org-capture-inside-embedded-elisp-p" function nil nil [74438 74675])
-            ("org-capture-import-remember-templates" function (:user-visible-flag t) nil [74692 76174])
-            ("org-capture" package nil nil [76177 76199]))          
-      :file "org-capture.el"
-      :pointmax 76230
-      :fsize 76229
-      :lastmodtime '(23525 29589 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-release" function nil nil [84 247])
-            ("org-git-version" function nil nil [263 453])
-            ("org-version" package nil nil [456 478]))          
-      :file "org-version.el"
-      :pointmax 603
-      :fsize 602
-      :lastmodtime '(23525 29592 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1450 1467])
-            ("org" include nil nil [1468 1482])
-            ("declare-function" code nil nil [1484 1540])
-            ("declare-function" code nil nil [1541 1604])
-            ("declare-function" code nil nil [1605 1675])
-            ("declare-function" code nil nil [1676 1742])
-            ("declare-function" code nil nil [1743 1832])
-            ("declare-function" code nil nil [1833 1961])
-            ("declare-function" code nil nil [1962 2060])
-            ("declare-function" code nil nil [2061 2133])
-            ("declare-function" code nil nil [2134 2193])
-            ("declare-function" code nil nil [2195 2259])
-            ("declare-function" code nil nil [2260 2332])
-            ("declare-function" code nil nil [2333 2415])
-            ("declare-function" code nil nil [2416 2478])
-            ("declare-function" code nil nil [2479 2532])
-            ("declare-function" code nil nil [2533 2626])
-            ("declare-function" code nil nil [2627 2684])
-            ("declare-function" code nil nil [2685 2754])
-            ("declare-function" code nil nil [2755 2829])
-            ("declare-function" code nil nil [2831 2903])
-            ("constants-unit-system" variable nil nil [2905 2935])
-            ("org-element-use-cache" variable nil nil [2936 2966])
-            ("org-export-filters-alist" variable nil nil [2967 3000])
-            ("org-table-follow-field-mode" variable nil nil [3001 3037])
-            ("orgtbl-mode" variable nil nil [3038 3058])
-            ("orgtbl-mode-menu" variable nil nil [3075 3100])
-            ("sort-fold-case" variable nil nil [3144 3167])
-            ("orgtbl-after-send-table-hook" variable nil nil [3169 3438])
-            ("org-table-TBLFM-begin-regexp" variable (:default-value "^[ 	]*|.*
-[ 	]*#\\+TBLFM: ") nil [3440 3509])
-            ("orgtbl-optimized" variable (:default-value t) nil [3511 4034])
-            ("orgtbl-radio-table-templates" variable (:default-value (quote ((latex-mode "% BEGIN RECEIVE ORGTBL %n
-% END RECEIVE ORGTBL %n
-\\begin{comment}
-#+ORGTBL: SEND %n orgtbl-to-latex :splice nil :skip 0
-| | |
-\\end{comment}
-") (texinfo-mode "@c BEGIN RECEIVE ORGTBL %n
-@c END RECEIVE ORGTBL %n
-@ignore
-#+ORGTBL: SEND %n orgtbl-to-html :splice nil :skip 0
-| | |
-@end ignore
-") (html-mode "<!-- BEGIN RECEIVE ORGTBL %n -->
-<!-- END RECEIVE ORGTBL %n -->
-<!--
-#+ORGTBL: SEND %n orgtbl-to-html :splice nil :skip 0
-| | |
--->
-") (org-mode "#+ BEGIN RECEIVE ORGTBL %n
-#+ END RECEIVE ORGTBL %n
-
-#+ORGTBL: SEND %n orgtbl-to-orgtbl :splice nil :skip 0
-| | |
-")))) nil [4036 5821])
-            ("org-table-settings" customgroup (:user-visible-flag t) nil [5823 5941])
-            ("org-table-default-size" variable (:default-value "5x2") nil [5943 6091])
-            ("org-table-number-regexp" variable (:default-value "^\\([<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%:]*\\|[<>]?[-+]?0[xX][0-9a-fA-F.]+\\|[<>]?[-+]?[0-9]+#[0-9a-zA-Z.]+\\|nan\\|[-+u]?inf\\)$") nil [6093 7703])
-            ("org-table-number-fraction" variable (:default-value 0.5) nil [7705 8034])
-            ("org-table-editing" customgroup (:user-visible-flag t) nil [8036 8166])
-            ("org-table-automatic-realign" variable (:default-value t) nil [8168 8425])
-            ("org-table-auto-blank-field" variable (:default-value t) nil [8427 8685])
-            ("org-table-exit-follow-field-mode-when-leaving-table" variable (:default-value t) nil [8687 9150])
-            ("org-table-fix-formulas-confirm" variable nil nil [9152 9445])
-            ("put" code nil nil [9446 9564])
-            ("org-table-tab-jumps-over-hlines" variable (:default-value t) nil [9566 9957])
-            ("org-table-calculation" customgroup (:user-visible-flag t) nil [9959 10089])
-            ("org-table-use-standard-references" variable (:default-value (quote from)) nil [10091 10603])
-            ("org-table-copy-increment" variable (:default-value t) nil [10605 11018])
-            ("org-calc-default-modes" variable (:default-value (quote (calc-internal-prec 12 calc-float-format (float 8) calc-angle-mode deg calc-prefer-frac nil calc-symbolic-mode nil calc-date-format (YYYY "-" MM "-" DD " " Www (" " hh ":" mm)) calc-display-working-message t))) nil [11020 11663])
-            ("org-table-duration-custom-format" variable (:default-value (quote hours)) nil [11665 12364])
-            ("org-table-duration-hour-zero-padding" variable (:default-value t) nil [12366 12656])
-            ("org-table-formula-field-format" variable (:default-value "%s") nil [12658 12999])
-            ("org-table-formula-evaluate-inline" variable (:default-value t) nil [13001 13536])
-            ("org-table-formula-use-constants" variable (:default-value t) nil [13538 13879])
-            ("org-table-formula-constants" variable nil nil [13881 14526])
-            ("org-table-allow-automatic-line-recalculation" variable (:default-value t) nil [14528 14828])
-            ("org-table-relative-ref-may-cross-hline" variable (:default-value t) nil [14830 15595])
-            ("org-table-formula-create-columns" variable nil nil [15597 16330])
-            ("org-table-import-export" customgroup (:user-visible-flag t) nil [16332 16483])
-            ("org-table-export-default-format" variable (:default-value "orgtbl-to-tsv") nil [16485 16852])
-            ("org-table-convert-region-max-lines" variable (:default-value 999) nil [16854 17175])
-            ("org-table-auto-recalculate-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*| *# *\\(|\\|$\\)")
-                nil [17177 17311])
-            ("org-table-recalculate-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*| *[#*] *\\(|\\|$\\)")
-                nil [17313 17435])
-            ("org-table-calculate-mark-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*| *[!$^_#*] *\\(|\\|$\\)")
-                nil [17437 17564])
-            ("org-table-border-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*[^| 	]")
-                nil [17566 17668])
-            ("org-table-last-highlighted-reference" variable nil nil [17670 17719])
-            ("org-table-formula-history" variable nil nil [17721 17759])
-            ("org-table-column-names" variable nil nil [17761 17907])
-            ("org-table-column-name-regexp" variable nil nil [17909 18063])
-            ("org-table-local-parameters" variable nil nil [18065 18218])
-            ("org-table-named-field-locations" variable nil nil [18220 18578])
-            ("org-table-current-line-types" variable nil nil [18580 18714])
-            ("org-table-current-begin-pos" variable nil nil [18716 18858])
-            ("org-table-current-ncol" variable nil nil [18860 18990])
-            ("org-table-dlines" variable nil nil [18992 19194])
-            ("org-table-hlines" variable nil nil [19196 19394])
-            ("org-table-range-regexp" variable
-               (:constant-flag t
-                :default-value "@\\([-+]?I*[-+]?[0-9]*\\)?\\(\\$[-+]?[0-9]+\\)?\\(\\.\\.@?\\([-+]?I*[-+]?[0-9]*\\)?\\(\\$[-+]?[0-9]+\\)?\\)?")
-                nil [19396 19689])
-            ("org-table-range-regexp2" variable
-               (:constant-flag t
-                :default-value (concat "\\(" "@[-0-9I$&]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\|" "\\$[a-zA-Z0-9]+" "\\)" "\\.\\." "\\(" "@?[-0-9I$&]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\|" "\\$[a-zA-Z0-9]+" "\\)"))
-                nil [19691 19980])
-            ("org-table-translate-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(" "@[-0-9I$]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\)"))
-                nil [19982 20166])
-            ("org-table-save-field" function (:arguments ("body")) nil [20168 20600])
-            ("org-table-create-with-table.el" function (:user-visible-flag t) nil [20617 21109])
-            ("org-table-create-or-convert-from-region" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [21126 21676])
-            ("org-table-create" function
-               (:user-visible-flag t
-                :arguments ("size"))
-                nil [21693 22705])
-            ("org-table-convert-region" function
-               (:user-visible-flag t
-                :arguments ("beg0" "end0" "separator"))
-                nil [22722 25472])
-            ("org-table-import" function
-               (:user-visible-flag t
-                :arguments ("file" "separator"))
-                nil [25489 26412])
-            ("org-table-export" function
-               (:user-visible-flag t
-                :arguments ("file" "format"))
-                nil [26430 29323])
-            ("org-table-aligned-begin-marker" variable (:default-value (make-marker)) nil [29325 29506])
-            ("org-table-aligned-end-marker" variable (:default-value (make-marker)) nil [29507 29680])
-            ("org-table-last-alignment" variable nil nil [29681 29861])
-            ("org-table-last-column-widths" variable nil nil [29862 30022])
-            ("defvar-local" code nil nil [30023 30160])
-            ("defvar-local" code nil nil [30161 30262])
-            ("org-last-recalc-line" variable nil nil [30264 30297])
-            ("org-table-do-narrow" variable (:default-value t) nil [30298 30328])
-            ("org-narrow-column-arrow" variable
-               (:constant-flag t
-                :default-value "=>")
-                nil [30353 30448])
-            ("org-table-align" function (:user-visible-flag t) nil [30465 38676])
-            ("org-table-begin" function (:arguments ("table-type")) nil [38693 39151])
-            ("org-table-end" function (:arguments ("table-type")) nil [39168 40026])
-            ("org-table-justify-field-maybe" function (:arguments ("new")) nil [40043 41627])
-            ("org-table-next-field" function (:user-visible-flag t) nil [41644 42545])
-            ("org-table-previous-field" function (:user-visible-flag t) nil [42562 43287])
-            ("org-table-beginning-of-field" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [43289 43905])
-            ("org-table-end-of-field" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [43907 44493])
-            ("org-table-next-row" function (:user-visible-flag t) nil [44510 45141])
-            ("org-table-copy-down" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [45158 48415])
-            ("org-table-check-inside-data-field" function (:arguments ("noerror")) nil [48417 48879])
-            ("org-table-clip" variable nil nil [48881 48941])
-            ("org-table-get" function (:arguments ("line" "column")) nil [48943 49441])
-            ("org-table-put" function (:arguments ("line" "column" "value" "align")) nil [49443 49848])
-            ("org-table-current-line" function nil nil [49850 50172])
-            ("org-table-goto-line" function (:arguments ("N")) nil [50174 50496])
-            ("org-table-blank-field" function (:user-visible-flag t) nil [50513 51102])
-            ("org-table-get-field" function (:arguments ("n" "replace")) nil [51104 51769])
-            ("org-table-field-info" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [51786 53476])
-            ("org-table-current-column" function (:user-visible-flag t) nil [53478 53719])
-            ("org-table-current-dline" function nil nil [53721 54054])
-            ("org-table-goto-column" function
-               (:user-visible-flag t
-                :arguments ("n" "on-delim" "force"))
-                nil [54071 54851])
-            ("org-table-insert-column" function (:user-visible-flag t) nil [54868 55615])
-            ("org-table-find-dataline" function nil nil [55617 56203])
-            ("org-table-line-to-dline" function (:arguments ("line" "above")) nil [56205 56985])
-            ("org-table-delete-column" function (:user-visible-flag t) nil [57002 57963])
-            ("org-table-move-column-right" function (:user-visible-flag t) nil [57980 58094])
-            ("org-table-move-column-left" function (:user-visible-flag t) nil [58110 58224])
-            ("org-table-move-column" function
-               (:user-visible-flag t
-                :arguments ("left"))
-                nil [58241 59765])
-            ("org-table-move-row-down" function (:user-visible-flag t) nil [59782 59884])
-            ("org-table-move-row-up" function (:user-visible-flag t) nil [59900 59998])
-            ("org-table-move-row" function
-               (:user-visible-flag t
-                :arguments ("up"))
-                nil [60015 61403])
-            ("org-table-insert-row" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [61420 62538])
-            ("org-table-insert-hline" function
-               (:user-visible-flag t
-                :arguments ("above"))
-                nil [62555 63505])
-            ("org-table-hline-and-move" function
-               (:user-visible-flag t
-                :arguments ("same-column"))
-                nil [63522 63975])
-            ("org-table-clean-line" function (:arguments ("s")) nil [63977 64505])
-            ("org-table-kill-row" function (:user-visible-flag t) nil [64522 65219])
-            ("org-table-sort-lines" function
-               (:user-visible-flag t
-                :arguments ("with-case" "sorting-type" "getkey-func" "compare-func" "interactive?"))
-                nil [65236 69857])
-            ("org-table-cut-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [69874 70212])
-            ("org-table-copy-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "cut"))
-                nil [70229 71439])
-            ("org-table-paste-rectangle" function (:user-visible-flag t) nil [71456 72443])
-            ("org-table-convert" function (:user-visible-flag t) nil [72460 74223])
-            ("org-table-transpose-table-at-point" function (:user-visible-flag t) nil [74225 75215])
-            ("org-table-wrap-region" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [75232 77813])
-            ("org-field-marker" variable nil nil [77815 77844])
-            ("org-table-edit-field" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [77861 79994])
-            ("org-table-finish-edit-field" function nil nil [79996 80803])
-            ("define-minor-mode" code nil nil [80805 81606])
-            ("org-table-follow-fields-with-editor" function nil nil [81608 82010])
-            ("org-timecnt" variable nil nil [82012 82032])
-            ("org-table-sum" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "nlast"))
-                nil [82080 84211])
-            ("org-table-get-number-for-summing" function (:arguments ("s")) nil [84213 84979])
-            ("org-table-current-field-formula" function (:arguments ("key" "noerror")) nil [84981 85982])
-            ("org-table-get-formula" function (:arguments ("equation" "named")) nil [85984 87893])
-            ("org-table-store-formulas" function (:arguments ("alist" "location")) nil [87895 88716])
-            ("org-table-formula-make-cmp-string" function (:arguments ("a")) nil [88718 89443])
-            ("org-table-formula-less-p" function (:arguments ("a" "b")) nil [89445 89662])
-            ("org-table-get-stored-formulas" function (:arguments ("noerror" "location")) nil [89679 91169])
-            ("org-table-fix-formulas" function (:arguments ("key" "replace" "limit" "delta" "remove")) nil [91171 92624])
-            ("org-table-maybe-eval-formula" function nil nil [92641 93265])
-            ("org-recalc-commands" variable nil nil [93267 93401])
-            ("org-recalc-marks" variable (:default-value (quote ((" " . "Unmarked: no special line, no automatic recalculation") ("#" . "Automatically recalculate this line upon TAB, RET, and C-c C-c in the line") ("*" . "Recalculate only when entire table is recalculated with `C-u C-c *'") ("!" . "Column name definition line.  Reference in formula as $name.") ("$" . "Parameter definition line name=value.  Reference in formula as $name.") ("_" . "Names for values in row below this one.") ("^" . "Names for values in row above this one.")))) nil [93403 93935])
-            ("org-table-rotate-recalc-marks" function
-               (:user-visible-flag t
-                :arguments ("newchar"))
-                nil [93952 96608])
-            ("org-table-analyze" function nil nil [96625 100757])
-            ("org-table-goto-field" function (:arguments ("ref" "create-column-p")) nil [100759 101982])
-            ("org-table-maybe-recalculate-line" function (:user-visible-flag t) nil [101999 102441])
-            ("org-tbl-calc-modes" variable nil nil [102443 102470])
-            ("org-set-calc-mode" function (:arguments ("var" "value")) nil [102520 102952])
-            ("org-table-eval-formula" function
-               (:user-visible-flag t
-                :arguments ("arg" "equation" "suppress-align" "suppress-const" "suppress-store" "suppress-analysis"))
-                nil [102969 113941])
-            ("org-table-put-field-property" function (:arguments ("prop" "value")) nil [113943 114149])
-            ("org-table-get-range" function (:arguments ("desc" "tbeg" "col" "highlight" "corners-only")) nil [114151 117228])
-            ("org-table--descriptor-line" function (:arguments ("desc" "cline")) nil [117230 118568])
-            ("org-table--row-type" function (:arguments ("type" "n" "i" "backwards" "relative" "desc")) nil [118570 119768])
-            ("org-table--error-on-old-row-references" function (:arguments ("s")) nil [119770 119944])
-            ("org-table-make-reference" function (:arguments ("elements" "keep-empty" "numbers" "lispp")) nil [119946 121807])
-            ("org-table-message-once-per-second" function (:arguments ("t1" "args")) nil [121809 122248])
-            ("org-table-recalculate" function
-               (:user-visible-flag t
-                :arguments ("all" "noalign"))
-                nil [122265 128825])
-            ("org-table-iterate" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [128842 129610])
-            ("org-table-recalculate-buffer-tables" function (:user-visible-flag t) nil [129627 130022])
-            ("org-table-iterate-buffer-tables" function (:user-visible-flag t) nil [130039 130742])
-            ("org-table-calc-current-TBLFM" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [130744 131561])
-            ("org-table-TBLFM-begin" function nil nil [131563 131869])
-            ("org-table-expand-lhs-ranges" function (:arguments ("equations")) nil [131871 133233])
-            ("org-table-formula-handle-first/last-rc" function (:arguments ("s")) nil [133235 134500])
-            ("org-table-formula-substitute-names" function (:arguments ("f")) nil [134502 135556])
-            ("org-table-get-constant" function (:arguments ("const")) nil [135558 136059])
-            ("org-table-fedit-map" variable (:default-value (let ((map (make-sparse-keymap))) (org-defkey map "" (quote org-table-fedit-finish)) (org-defkey map "" (quote org-table-fedit-finish)) (org-defkey map "" (quote org-table-fedit-finish)) (org-defkey map "'" (quote org-table-fedit-finish)) (org-defkey map "" (quote org-table-fedit-abort)) (org-defkey map "?" (quote org-table-show-reference)) (org-defkey map [(meta shift up)] (quote org-table-fedit-line-up)) (org-defkey map [(meta shift down)] (quote org-table-fedit-line-down)) (org-defkey map [(shift up)] (quote org-table-fedit-ref-up)) (org-defkey map [(shift down)] (quote org-table-fedit-ref-down)) (org-defkey map [(shift left)] (quote org-table-fedit-ref-left)) (org-defkey map [(shift right)] (quote org-table-fedit-ref-right)) (org-defkey map [(meta up)] (quote org-table-fedit-scroll-down)) (org-defkey map [(meta down)] (quote org-table-fedit-scroll)) (org-defkey map [(meta tab)] (quote lisp-complete-symbol)) (org-defkey map "\211" (quote lisp-complete-symbol)) (org-defkey map [(tab)] (quote org-table-fedit-lisp-indent)) (org-defkey map "	" (quote org-table-fedit-lisp-indent)) (org-defkey map "" (quote org-table-fedit-toggle-ref-type)) (org-defkey map "}" (quote org-table-fedit-toggle-coordinates)) map)) nil [136061 137385])
-            ("easy-menu-define" code nil nil [137387 138550])
-            ("org-pos" variable nil nil [138552 138568])
-            ("org-table--fedit-source" variable nil nil [138569 138650])
-            ("org-table-edit-formulas" function (:user-visible-flag t) nil [138667 141189])
-            ("org-table-fedit-post-command" function nil nil [141191 141413])
-            ("org-table-formula-to-user" function (:arguments ("s")) nil [141415 141605])
-            ("org-table-formula-from-user" function (:arguments ("s")) nil [141607 141792])
-            ("org-table-convert-refs-to-rc" function (:arguments ("s")) nil [141794 142952])
-            ("org-table-convert-refs-to-an" function (:arguments ("s")) nil [142954 143592])
-            ("org-letters-to-number" function (:arguments ("s")) nil [143594 143874])
-            ("org-number-to-letters" function (:arguments ("n")) nil [143876 144132])
-            ("org-table-time-string-to-seconds" function (:arguments ("s")) nil [144134 145259])
-            ("org-table-time-seconds-to-string" function (:arguments ("secs" "output-format")) nil [145261 146135])
-            ("org-table-fedit-convert-buffer" function (:arguments ("function")) nil [146137 146560])
-            ("org-table-fedit-toggle-ref-type" function (:user-visible-flag t) nil [146562 146986])
-            ("org-table-fedit-ref-up" function (:user-visible-flag t) nil [146988 147128])
-            ("org-table-fedit-ref-down" function (:user-visible-flag t) nil [147129 147275])
-            ("org-table-fedit-ref-left" function (:user-visible-flag t) nil [147276 147425])
-            ("org-table-fedit-ref-right" function (:user-visible-flag t) nil [147426 147578])
-            ("org-table-fedit-shift-reference" function (:arguments ("dir")) nil [147580 148295])
-            ("org-rematch-and-replace" function (:arguments ("n" "decr" "hline")) nil [148297 148675])
-            ("org-table-shift-refpart" function (:arguments ("ref" "decr" "hline")) nil [148677 149787])
-            ("org-table-fedit-toggle-coordinates" function (:user-visible-flag t) nil [149789 150085])
-            ("org-table-fedit-finish" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [150087 151373])
-            ("org-table-fedit-abort" function (:user-visible-flag t) nil [151375 151775])
-            ("org-table-fedit-lisp-indent" function (:user-visible-flag t) nil [151777 153078])
-            ("org-show-positions" variable nil nil [153080 153111])
-            ("org-table-show-reference" function
-               (:user-visible-flag t
-                :arguments ("local"))
-                nil [153113 158224])
-            ("org-table-force-dataline" function nil nil [158226 158781])
-            ("org-table-fedit-line-up" function (:user-visible-flag t) nil [158783 158934])
-            ("org-table-fedit-line-down" function (:user-visible-flag t) nil [158936 159087])
-            ("org-table-fedit-move" function (:arguments ("command")) nil [159089 159665])
-            ("org-table-fedit-scroll" function (:arguments ("N")) nil [159667 159812])
-            ("org-table-fedit-scroll-down" function (:arguments ("N")) nil [159814 159906])
-            ("org-table-rectangle-overlays" variable nil nil [159908 159949])
-            ("org-table-add-rectangle-overlay" function (:arguments ("beg" "end" "face")) nil [159951 160177])
-            ("org-table-highlight-rectangle" function (:arguments ("beg" "end" "face")) nil [160179 161570])
-            ("org-table-remove-rectangle-highlight" function (:arguments ("_ignore")) nil [161572 161889])
-            ("defvar-local" code nil nil [161891 162011])
-            ("org-table-overlay-coordinates" function (:user-visible-flag t) nil [162013 163185])
-            ("org-table-toggle-coordinate-overlays" function (:user-visible-flag t) nil [163202 163731])
-            ("org-table-toggle-formula-debugger" function (:user-visible-flag t) nil [163748 164009])
-            ("orgtbl-mode-map" variable (:default-value (make-keymap)) nil [165499 165567])
-            ("org-old-auto-fill-inhibit-regexp" variable nil nil [165569 165656])
-            ("orgtbl-line-start-regexp" variable
-               (:constant-flag t
-                :default-value "[ 	]*\\(|\\|#\\+\\(tblfm\\|orgtbl\\|tblname\\):\\)")
-                nil [165658 165792])
-            ("orgtbl-extra-font-lock-keywords" variable
-               (:constant-flag t
-                :default-value (list (list (concat "^" orgtbl-line-start-regexp ".*") 0 (quote (quote org-table)) (quote prepend))))
-                nil [165794 166005])
-            ("put" code nil nil [166038 166068])
-            ("put" code nil nil [166069 166114])
-            ("define-minor-mode" code nil nil [166131 167963])
-            ("org-table-cleanup-narrow-column-properties" function nil nil [167965 168568])
-            ("orgtbl-make-binding" function (:arguments ("fun" "n" "keys")) nil [168570 169403])
-            ("orgtbl-error" function (:user-visible-flag t) nil [169405 169561])
-            ("orgtbl-setup" function nil nil [169563 176262])
-            ("orgtbl-ctrl-c-ctrl-c" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [176264 177325])
-            ("orgtbl-create-or-convert-from-region" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [177327 177746])
-            ("orgtbl-tab" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [177748 177945])
-            ("orgtbl-ret" function (:user-visible-flag t) nil [177947 178129])
-            ("orgtbl-self-insert-command" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [178131 179822])
-            ("orgtbl-exp-regexp" variable (:default-value "^\\([-+]?[0-9][0-9.]*\\)[eE]\\([-+]?[0-9]+\\)$") nil [179839 179980])
-            ("orgtbl-gather-send-defs" function nil nil [179982 180612])
-            ("orgtbl-send-replace-tbl" function (:arguments ("name" "text")) nil [180614 181372])
-            ("org-table-to-lisp" function (:arguments ("txt")) nil [181389 182045])
-            ("orgtbl-send-table" function
-               (:user-visible-flag t
-                :arguments ("maybe"))
-                nil [182047 183211])
-            ("org-remove-by-index" function (:arguments ("list" "indices" "i0")) nil [183213 183590])
-            ("orgtbl-toggle-comment" function (:user-visible-flag t) nil [183592 184328])
-            ("orgtbl-insert-radio-table" function (:user-visible-flag t) nil [184330 184847])
-            ("orgtbl-to-generic" function (:arguments ("table" "params")) nil [184864 191686])
-            ("org-table--generic-apply" function (:arguments ("value" "name" "with-cons" "args")) nil [191688 192278])
-            ("org-table--to-generic-table" function (:arguments ("params")) nil [192280 192925])
-            ("org-table--to-generic-row" function (:arguments ("params")) nil [192927 196074])
-            ("org-table--to-generic-cell" function (:arguments ("params")) nil [196076 198809])
-            ("orgtbl-to-tsv" function (:arguments ("table" "params")) nil [198826 198992])
-            ("orgtbl-to-csv" function (:arguments ("table" "params")) nil [199009 199276])
-            ("orgtbl-to-latex" function (:arguments ("table" "params")) nil [199293 200321])
-            ("orgtbl-to-html" function (:arguments ("table" "params")) nil [200338 201340])
-            ("orgtbl-to-texinfo" function (:arguments ("table" "params")) nil [201357 202361])
-            ("orgtbl-to-orgtbl" function (:arguments ("table" "params")) nil [202378 203022])
-            ("orgtbl-to-table.el" function (:arguments ("table" "params")) nil [203024 203586])
-            ("orgtbl-to-unicode" function (:arguments ("table" "params")) nil [203588 204585])
-            ("orgtbl-ascii-draw" function (:arguments ("value" "min" "max" "width" "characters")) nil [204818 205938])
-            ("orgtbl-ascii-plot" function
-               (:user-visible-flag t
-                :arguments ("ask"))
-                nil [205955 207381])
-            ("orgtbl-uc-draw-grid" function (:arguments ("value" "min" "max" "width")) nil [207853 208310])
-            ("orgtbl-uc-draw-cont" function (:arguments ("value" "min" "max" "width")) nil [208312 208669])
-            ("org-table-get-remote-range" function (:arguments ("name-or-id" "form")) nil [208671 211027])
-            ("org-table-remote-reference-indirection" function (:arguments ("form")) nil [211029 211855])
-            ("org-define-lookup-function" function (:arguments ("mode")) nil [211857 212994])
-            ("org-define-lookup-function" code nil nil [212996 213030])
-            ("org-define-lookup-function" code nil nil [213031 213064])
-            ("org-define-lookup-function" code nil nil [213065 213097])
-            ("org-table" package nil nil [213099 213119]))          
-      :file "org-table.el"
-      :pointmax 213223
-      :fsize 213222
-      :lastmodtime '(23525 29592 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [1196 1214])
-            ("org-babel-key-prefix" variable (:default-value "") nil [1216 1470])
-            ("org-babel-map" variable (:default-value (make-sparse-keymap)) nil [1472 1563])
-            ("org-babel-describe-bindings" function (:user-visible-flag t) nil [1580 1737])
-            ("org-babel-key-bindings" variable (:default-value (quote (("p" . org-babel-previous-src-block) ("" . org-babel-previous-src-block) ("n" . org-babel-next-src-block) ("" . org-babel-next-src-block) ("e" . org-babel-execute-maybe) ("" . org-babel-execute-maybe) ("o" . org-babel-open-src-block-result) ("" . org-babel-open-src-block-result) ("" . org-babel-expand-src-block) ("v" . org-babel-expand-src-block) ("u" . org-babel-goto-src-block-head) ("" . org-babel-goto-src-block-head) ("g" . org-babel-goto-named-src-block) ("r" . org-babel-goto-named-result) ("" . org-babel-goto-named-result) ("" . org-babel-execute-buffer) ("b" . org-babel-execute-buffer) ("" . org-babel-execute-subtree) ("s" . org-babel-execute-subtree) ("" . org-babel-demarcate-block) ("d" . org-babel-demarcate-block) ("" . org-babel-tangle) ("t" . org-babel-tangle) ("" . org-babel-tangle-file) ("f" . org-babel-tangle-file) ("" . org-babel-check-src-block) ("c" . org-babel-check-src-block) ("
-" . org-babel-insert-header-arg) ("j" . org-babel-insert-header-arg) ("" . org-babel-load-in-session) ("l" . org-babel-load-in-session) ("	" . org-babel-lob-ingest) ("i" . org-babel-lob-ingest) ("	" . org-babel-view-src-block-info) ("I" . org-babel-view-src-block-info) ("" . org-babel-switch-to-session) ("z" . org-babel-switch-to-session-with-code) ("" . org-babel-sha1-hash) ("a" . org-babel-sha1-hash) ("h" . org-babel-describe-bindings) ("" . org-babel-do-key-sequence-in-edit-buffer) ("x" . org-babel-do-key-sequence-in-edit-buffer) ("k" . org-babel-remove-result-one-or-many) ("\210" . org-babel-mark-block)))) nil [1739 3844])
-            ("ob-keys" package nil nil [3846 3864]))          
-      :file "ob-keys.el"
-      :pointmax 3966
-      :fsize 3965
-      :lastmodtime '(23525 29586 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [1192 1210])
-            ("org-compat" include nil nil [1211 1232])
-            ("comint" include nil nil [1233 1250])
-            ("org-babel-comint-buffer-livep" function (:arguments ("buffer")) nil [1252 1484])
-            ("org-babel-comint-in-buffer" function (:arguments ("buffer" "body")) nil [1486 2021])
-            ("def-edebug-spec" code nil nil [2022 2078])
-            ("org-babel-comint-with-output" function (:arguments ("meta" "body")) nil [2080 4304])
-            ("def-edebug-spec" code nil nil [4305 4363])
-            ("org-babel-comint-input-command" function (:arguments ("buffer" "cmd")) nil [4365 4654])
-            ("org-babel-comint-wait-for-output" function (:arguments ("buffer")) nil [4656 5259])
-            ("org-babel-comint-eval-invisibly-and-wait-for-file" function (:arguments ("buffer" "file" "string" "period")) nil [5261 5859])
-            ("ob-comint" package nil nil [5861 5881]))          
-      :file "ob-comint.el"
-      :pointmax 5912
-      :fsize 5911
-      :lastmodtime '(23525 29585 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1563 1580])
-            ("format-spec" include nil nil [1581 1603])
-            ("ox" include nil nil [1604 1617])
-            ("org-publish-cache" variable nil nil [1710 1852])
-            ("org-publish-after-publishing-hook" variable nil nil [1854 2072])
-            ("org-export-publish" customgroup (:user-visible-flag t) nil [2074 2195])
-            ("org-publish-project-alist" variable nil nil [2197 10673])
-            ("org-publish-use-timestamps-flag" variable (:default-value t) nil [10675 10903])
-            ("org-publish-timestamp-directory" variable (:default-value (convert-standard-filename "~/.org-timestamps/")) nil [10905 11110])
-            ("org-publish-list-skipped-files" variable (:default-value t) nil [11112 11262])
-            ("org-publish-sitemap-sort-files" variable (:default-value (quote alphabetically)) nil [11264 11852])
-            ("org-publish-sitemap-sort-folders" variable (:default-value (quote ignore)) nil [11854 12695])
-            ("org-publish-sitemap-sort-ignore-case" variable nil nil [12697 12960])
-            ("org-publish-timestamp-filename" function (:arguments ("filename" "pub-dir" "pub-func")) nil [12998 13295])
-            ("org-publish-needed-p" function (:arguments ("filename" "pub-dir" "pub-func" "_true-pub-dir" "base-dir")) nil [13297 14140])
-            ("org-publish-update-timestamp" function (:arguments ("filename" "pub-dir" "pub-func" "_base-dir")) nil [14142 14481])
-            ("org-publish-remove-all-timestamps" function nil nil [14483 14781])
-            ("org-publish-property" function (:arguments ("property" "project" "default")) nil [14854 15176])
-            ("org-publish--expand-file-name" function (:arguments ("file" "project")) nil [15178 15479])
-            ("org-publish-expand-projects" function (:arguments ("projects-alist")) nil [15481 16034])
-            ("org-publish-get-base-files" function (:arguments ("project")) nil [16036 18034])
-            ("org-publish-get-project-from-filename" function (:arguments ("filename" "up")) nil [18036 19968])
-            ("org-publish-org-to" function (:arguments ("backend" "filename" "extension" "plist" "pub-dir")) nil [20022 21649])
-            ("org-publish-attachment" function (:arguments ("_plist" "filename" "pub-dir")) nil [21651 22292])
-            ("org-publish-file" function (:arguments ("filename" "project" "no-cache")) nil [22334 24180])
-            ("org-publish-projects" function (:arguments ("projects")) nil [24182 25846])
-            ("org-publish--sitemap-files-to-lisp" function (:arguments ("files" "project" "style" "format-entry")) nil [25875 27553])
-            ("org-publish-sitemap" function (:arguments ("project" "sitemap-filename")) nil [27555 30745])
-            ("org-publish-find-property" function (:arguments ("file" "property" "project" "backend")) nil [30747 31871])
-            ("org-publish-find-title" function (:arguments ("file" "project")) nil [31873 32501])
-            ("org-publish-find-date" function (:arguments ("file" "project")) nil [32503 33457])
-            ("org-publish-sitemap-default-entry" function (:arguments ("entry" "style" "project")) nil [33459 33902])
-            ("org-publish-sitemap-default" function (:arguments ("title" "list")) nil [33904 34219])
-            ("defalias" code nil nil [34276 34320])
-            ("org-publish" function
-               (:user-visible-flag t
-                :arguments ("project" "force" "async"))
-                nil [34337 35617])
-            ("org-publish-all" function
-               (:user-visible-flag t
-                :arguments ("force" "async"))
-                nil [35634 36450])
-            ("org-publish-current-file" function
-               (:user-visible-flag t
-                :arguments ("force" "async"))
-                nil [36468 37129])
-            ("org-publish-current-project" function
-               (:user-visible-flag t
-                :arguments ("force" "async"))
-                nil [37146 37644])
-            ("org-publish-collect-index" function (:arguments ("output" "_backend" "info")) nil [37671 39247])
-            ("org-publish-index-generate-theindex" function (:arguments ("project" "directory")) nil [39249 41958])
-            ("org-publish--store-crossrefs" function (:arguments ("output" "_backend" "info")) nil [42132 42958])
-            ("org-publish-resolve-external-link" function (:arguments ("search" "file")) nil [42960 44464])
-            ("org-publish-file-relative-name" function (:arguments ("filename" "info")) nil [44466 44900])
-            ("org-publish-write-cache-file" function (:arguments ("free-cache")) nil [44928 45708])
-            ("org-publish-initialize-cache" function (:arguments ("project-name")) nil [45710 46877])
-            ("org-publish-reset-cache" function nil nil [46879 47111])
-            ("org-publish-cache-file-needs-publishing" function (:arguments ("filename" "pub-dir" "pub-func" "_base-dir")) nil [47113 48844])
-            ("org-publish-cache-set-file-property" function (:arguments ("filename" "property" "value" "project-name")) nil [48846 49419])
-            ("org-publish-cache-get-file-property" function (:arguments ("filename" "property" "default" "no-create" "project-name")) nil [49421 50116])
-            ("org-publish-cache-get" function (:arguments ("key")) nil [50118 50433])
-            ("org-publish-cache-set" function (:arguments ("key" "value")) nil [50435 50742])
-            ("org-publish-cache-ctime-of-src" function (:arguments ("file")) nil [50744 51072])
-            ("ox-publish" package nil nil [51075 51096]))          
-      :file "ox-publish.el"
-      :pointmax 51201
-      :fsize 51200
-      :lastmodtime '(23525 29594 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [954 971])
-            ("ob-eval" include nil nil [972 990])
-            ("org-macs" include nil nil [991 1010])
-            ("org-compat" include nil nil [1011 1032])
-            ("org-babel-exeext" variable
-               (:constant-flag t
-                :default-value (if (memq system-type (quote (windows-nt cygwin))) ".exe" nil))
-                nil [1034 1129])
-            ("org-babel-library-of-babel" variable nil nil [1131 1166])
-            ("org-edit-src-content-indentation" variable nil nil [1167 1208])
-            ("org-src-lang-modes" variable nil nil [1209 1236])
-            ("org-src-preserve-indentation" variable nil nil [1237 1274])
-            ("declare-function" code nil nil [1276 1322])
-            ("declare-function" code nil nil [1323 1385])
-            ("declare-function" code nil nil [1386 1444])
-            ("declare-function" code nil nil [1445 1508])
-            ("declare-function" code nil nil [1509 1567])
-            ("declare-function" code nil nil [1568 1628])
-            ("declare-function" code nil nil [1629 1684])
-            ("declare-function" code nil nil [1685 1750])
-            ("declare-function" code nil nil [1751 1829])
-            ("declare-function" code nil nil [1830 1887])
-            ("declare-function" code nil nil [1888 1933])
-            ("declare-function" code nil nil [1934 1984])
-            ("declare-function" code nil nil [1985 2049])
-            ("declare-function" code nil nil [2050 2130])
-            ("declare-function" code nil nil [2131 2181])
-            ("declare-function" code nil nil [2182 2238])
-            ("declare-function" code nil nil [2239 2311])
-            ("declare-function" code nil nil [2312 2377])
-            ("declare-function" code nil nil [2378 2450])
-            ("declare-function" code nil nil [2451 2510])
-            ("declare-function" code nil nil [2511 2594])
-            ("declare-function" code nil nil [2595 2659])
-            ("declare-function" code nil nil [2660 2721])
-            ("declare-function" code nil nil [2722 2783])
-            ("declare-function" code nil nil [2784 2857])
-            ("declare-function" code nil nil [2858 2901])
-            ("declare-function" code nil nil [2902 2973])
-            ("declare-function" code nil nil [2974 3033])
-            ("declare-function" code nil nil [3034 3082])
-            ("declare-function" code nil nil [3083 3146])
-            ("declare-function" code nil nil [3147 3212])
-            ("declare-function" code nil nil [3213 3283])
-            ("declare-function" code nil nil [3284 3355])
-            ("declare-function" code nil nil [3356 3422])
-            ("declare-function" code nil nil [3423 3472])
-            ("declare-function" code nil nil [3473 3550])
-            ("declare-function" code nil nil [3551 3631])
-            ("declare-function" code nil nil [3632 3705])
-            ("declare-function" code nil nil [3706 3778])
-            ("declare-function" code nil nil [3779 3845])
-            ("declare-function" code nil nil [3846 3898])
-            ("declare-function" code nil nil [3899 3959])
-            ("declare-function" code nil nil [3960 4017])
-            ("declare-function" code nil nil [4018 4089])
-            ("declare-function" code nil nil [4090 4163])
-            ("declare-function" code nil nil [4164 4213])
-            ("declare-function" code nil nil [4214 4281])
-            ("declare-function" code nil nil [4282 4340])
-            ("declare-function" code nil nil [4341 4405])
-            ("declare-function" code nil nil [4406 4463])
-            ("declare-function" code nil nil [4464 4524])
-            ("declare-function" code nil nil [4525 4569])
-            ("declare-function" code nil nil [4570 4633])
-            ("declare-function" code nil nil [4634 4696])
-            ("declare-function" code nil nil [4697 4745])
-            ("declare-function" code nil nil [4746 4837])
-            ("org-babel" customgroup (:user-visible-flag t) nil [4839 4958])
-            ("org-confirm-babel-evaluate" variable (:default-value t) nil [4960 6031])
-            ("put" code nil nil [6097 6173])
-            ("org-babel-no-eval-on-ctrl-c-ctrl-c" variable nil nil [6175 6377])
-            ("org-babel-results-keyword" variable (:default-value "RESULTS") nil [6379 6750])
-            ("org-babel-noweb-wrap-start" variable (:default-value "<<") nil [6752 6928])
-            ("org-babel-noweb-wrap-end" variable (:default-value ">>") nil [6930 7104])
-            ("org-babel-inline-result-wrap" variable (:default-value "=%s=") nil [7106 7309])
-            ("put" code nil nil [7310 7455])
-            ("org-babel-hash-show-time" variable nil nil [7457 7686])
-            ("org-babel-uppercase-example-markers" variable nil nil [7688 7923])
-            ("org-babel-noweb-wrap" function (:arguments ("regexp")) nil [7925 8090])
-            ("org-babel-src-name-regexp" variable (:default-value "^[ 	]*#\\+name:[ 	]*") nil [8092 8210])
-            ("org-babel-multi-line-header-regexp" variable (:default-value "^[ 	]*#\\+headers?:[ 	]*\\([^
-]*\\)$") nil [8212 8365])
-            ("org-babel-src-block-regexp" variable (:default-value (concat "^\\([ 	]*\\)#\\+begin_src[ 	]+\\([^ 	
-
]+\\)[ 	]*" "\\([^\":
-]*\"[^\"
-*]*\"[^\":
-]*\\|[^\":
-]*\\)" "\\([^
-]*\\)
-" "\\([^�]*?
-\\)??[ 	]*#\\+end_src")) nil [8367 8744])
-            ("org-babel--get-vars" function (:arguments ("params")) nil [8746 9076])
-            ("org-babel-exp-reference-buffer" variable nil nil [9078 9293])
-            ("org-babel-check-confirm-evaluate" function (:arguments ("info")) nil [9295 10202])
-            ("org-babel-check-evaluate" function (:arguments ("info")) nil [10204 10688])
-            ("org-babel-confirm-evaluate-answer-no" variable nil nil [10737 10782])
-            ("org-babel-confirm-evaluate" function (:arguments ("info")) nil [10784 11936])
-            ("org-babel-execute-safely-maybe" function nil nil [11953 12070])
-            ("org-babel-execute-maybe" function nil nil [12087 12216])
-            ("org-babel-when-in-src-block" function (:arguments ("body")) nil [12218 12497])
-            ("org-babel-execute-src-block-maybe" function (:user-visible-flag t) nil [12499 12821])
-            ("org-babel-view-src-block-info" function (:user-visible-flag t) nil [12838 14227])
-            ("org-babel-expand-src-block-maybe" function (:user-visible-flag t) nil [14244 14529])
-            ("org-babel-load-in-session-maybe" function (:user-visible-flag t) nil [14546 14839])
-            ("add-hook" code nil nil [14841 14901])
-            ("org-babel-pop-to-session-maybe" function (:user-visible-flag t) nil [14918 15198])
-            ("add-hook" code nil nil [15200 15261])
-            ("org-babel-common-header-args-w-values" variable
-               (:constant-flag t
-                :default-value (quote ((cache (no yes)) (cmdline . :any) (colnames (nil no yes)) (comments (no link yes org both noweb)) (dir . :any) (eval (yes no no-export strip-export never-export eval never query)) (exports (code results both none)) (epilogue . :any) (file . :any) (file-desc . :any) (file-ext . :any) (hlines (no yes)) (mkdirp (yes no)) (no-expand) (noeval) (noweb (yes no tangle no-export strip-export)) (noweb-ref . :any) (noweb-sep . :any) (output-dir . :any) (padline (yes no)) (post . :any) (prologue . :any) (results (file list vector table scalar verbatim) (raw html latex org code pp drawer) (replace silent none append prepend) (output value)) (rownames (no yes)) (sep . :any) (session . :any) (shebang . :any) (tangle (tangle yes no :any)) (tangle-mode (493 365 292 :any)) (var . :any) (wrap . :any))))
-                nil [15263 16325])
-            ("org-babel-header-arg-names" variable
-               (:constant-flag t
-                :default-value (mapcar (function car) org-babel-common-header-args-w-values))
-                nil [16327 16562])
-            ("org-babel-safe-header-args" variable
-               (:constant-flag t
-                :default-value (quote (:cache :colnames :comments :exports :epilogue :hlines :noeval :noweb :noweb-ref :noweb-sep :padline :prologue :rownames :sep :session :tangle :wrap (:eval "never" "query") (:results lambda (str) (not (string-match "file" str))))))
-                nil [16564 17415])
-            ("org-babel-header-args-safe-fn" function (:arguments ("safe-list")) nil [17417 18045])
-            ("org-babel-default-header-args" variable (:default-value (quote ((:session . "none") (:results . "replace") (:exports . "code") (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no")))) nil [18047 18284])
-            ("put" code nil nil [18285 18406])
-            ("org-babel-default-inline-header-args" variable (:default-value (quote ((:session . "none") (:results . "replace") (:exports . "results") (:hlines . "yes")))) nil [18408 18615])
-            ("put" code nil nil [18616 18744])
-            ("org-babel-name-regexp" variable
-               (:constant-flag t
-                :default-value (format "^[ 	]*#\\+%s:[ 	]*" (regexp-opt (quote ("NAME" "TBLNAME")))))
-                nil [18746 18936])
-            ("org-babel-result-regexp" variable
-               (:constant-flag t
-                :default-value (format "^[ 	]*#\\+%s\\(?:\\[\\(?:%s \\)?\\([[:alnum:]]+\\)\\]\\)?:[ 	]*" org-babel-results-keyword "<\\(?:[0-9]\\{4\\}-[0-1][0-9]-[0-3][0-9] [0-2][0-9]\\(?::[0-5][0-9]\\)\\{2\\}\\)>"))
-                nil [18938 19338])
-            ("org-babel-result-w-name-regexp" variable
-               (:constant-flag t
-                :default-value (concat org-babel-result-regexp "\\(?9:[^ 	
-
]+\\)"))
-                nil [19340 19526])
-            ("org-babel-min-lines-for-block-output" variable (:default-value 10) nil [19528 19923])
-            ("org-babel-noweb-error-all-langs" variable nil nil [19925 20119])
-            ("org-babel-noweb-error-langs" variable nil nil [20121 20456])
-            ("org-babel-hash-show" variable (:default-value 4) nil [20458 20555])
-            ("org-babel-after-execute-hook" variable nil nil [20557 20670])
-            ("org-babel-named-src-block-regexp-for-name" function (:arguments ("name")) nil [20672 21137])
-            ("org-babel-named-data-regexp-for-name" function (:arguments ("name")) nil [21139 21312])
-            ("org-babel--normalize-body" function (:arguments ("datum")) nil [21314 22092])
-            ("org-babel-current-src-block-location" variable nil nil [22108 22437])
-            ("*this*" variable nil nil [22439 22454])
-            ("org-babel-get-src-block-info" function (:arguments ("light" "datum")) nil [22456 24462])
-            ("org-babel-execute-src-block" function
-               (:user-visible-flag t
-                :arguments ("arg" "info" "params"))
-                nil [24479 28482])
-            ("org-babel-expand-body:generic" function (:arguments ("body" "params" "var-lines")) nil [28484 29040])
-            ("org-babel-expand-src-block" function
-               (:user-visible-flag t
-                :arguments ("_arg" "info" "params"))
-                nil [29057 30243])
-            ("org-babel-edit-distance" function (:arguments ("s1" "s2")) nil [30245 31006])
-            ("org-babel-combine-header-arg-lists" function (:arguments ("original" "others")) nil [31008 31409])
-            ("org-babel-check-src-block" function (:user-visible-flag t) nil [31426 32346])
-            ("org-babel-insert-header-arg" function
-               (:user-visible-flag t
-                :arguments ("header-arg" "value"))
-                nil [32363 33634])
-            ("org-babel-header-arg-expand" function nil nil [33711 33965])
-            ("org-babel-enter-header-arg-w-completion" function (:arguments ("lang")) nil [33967 34826])
-            ("add-hook" code nil nil [34828 34887])
-            ("org-babel-load-in-session" function
-               (:user-visible-flag t
-                :arguments ("_arg" "info"))
-                nil [34904 35882])
-            ("org-babel-initiate-session" function
-               (:user-visible-flag t
-                :arguments ("arg" "info"))
-                nil [35899 37177])
-            ("org-babel-switch-to-session" function
-               (:user-visible-flag t
-                :arguments ("arg" "info"))
-                nil [37194 37543])
-            ("defalias" code nil nil [37545 37610])
-            ("org-src-window-setup" variable nil nil [37612 37641])
-            ("org-babel-switch-to-session-with-code" function
-               (:user-visible-flag t
-                :arguments ("arg" "_info"))
-                nil [37658 38235])
-            ("org-babel-do-in-edit-buffer" function (:arguments ("body")) nil [38252 39196])
-            ("org-babel-do-key-sequence-in-edit-buffer" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [39198 39874])
-            ("org-bracket-link-regexp" variable nil nil [39876 39908])
-            ("org-babel-active-location-p" function nil nil [39910 40076])
-            ("org-babel-open-src-block-result" function
-               (:user-visible-flag t
-                :arguments ("re-run"))
-                nil [40093 41112])
-            ("org-babel-map-src-blocks" function (:arguments ("file" "body")) nil [41129 43794])
-            ("def-edebug-spec" code nil nil [43795 43849])
-            ("org-babel-map-inline-src-blocks" function (:arguments ("file" "body")) nil [43866 44915])
-            ("org-babel-map-call-lines" function (:arguments ("file" "body")) nil [44932 46004])
-            ("org-babel-map-executables" function (:arguments ("file" "body")) nil [46021 47168])
-            ("org-babel-execute-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [47185 47659])
-            ("org-babel-execute-subtree" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [47676 47994])
-            ("org-babel-sha1-hash" function
-               (:user-visible-flag t
-                :arguments ("info"))
-                nil [48011 50164])
-            ("org-babel-current-result-hash" function (:arguments ("info")) nil [50166 50480])
-            ("org-babel-set-current-result-hash" function (:arguments ("hash" "info")) nil [50482 50963])
-            ("org-babel-hide-hash" function nil nil [50965 51690])
-            ("org-babel-hide-all-hashes" function nil nil [51692 52135])
-            ("add-hook" code nil nil [52136 52188])
-            ("org-babel-hash-at-point" function
-               (:user-visible-flag t
-                :arguments ("point"))
-                nil [52190 52631])
-            ("org-babel-result-hide-spec" function nil nil [52633 52854])
-            ("add-hook" code nil nil [52855 52908])
-            ("org-babel-hide-result-overlays" variable nil nil [52910 52982])
-            ("org-babel-result-hide-all" function (:user-visible-flag t) nil [52984 53305])
-            ("org-babel-show-result-all" function nil nil [53307 53489])
-            ("org-babel-hide-result-toggle-maybe" function (:user-visible-flag t) nil [53506 53852])
-            ("org-babel-hide-result-toggle" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [53883 55571])
-            ("add-hook" code nil nil [55613 55679])
-            ("add-hook" code nil nil [55724 55846])
-            ("org-file-properties" variable nil nil [55848 55876])
-            ("org-babel-params-from-properties" function (:arguments ("lang")) nil [55877 56571])
-            ("org-babel-balanced-split" function (:arguments ("string" "alts")) nil [56573 59376])
-            ("org-babel-join-splits-near-ch" function (:arguments ("ch" "list")) nil [59378 59834])
-            ("org-babel-parse-header-arguments" function (:arguments ("arg-string")) nil [59836 60464])
-            ("org-babel-parse-multiple-vars" function (:arguments ("header-arguments")) nil [60466 60992])
-            ("org-babel-process-params" function (:arguments ("params")) nil [60994 62387])
-            ("org-babel-del-hlines" function (:arguments ("table")) nil [62413 62507])
-            ("org-babel-get-colnames" function (:arguments ("table")) nil [62509 62824])
-            ("org-babel-get-rownames" function (:arguments ("table")) nil [62826 63328])
-            ("org-babel-put-colnames" function (:arguments ("table" "colnames")) nil [63330 63476])
-            ("org-babel-put-rownames" function (:arguments ("table" "rownames")) nil [63478 63737])
-            ("org-babel-pick-name" function (:arguments ("names" "selector")) nil [63739 64254])
-            ("org-babel-disassemble-tables" function (:arguments ("vars" "hlines" "colnames" "rownames")) nil [64256 65509])
-            ("org-babel-reassemble-table" function (:arguments ("table" "colnames" "rownames")) nil [65511 66092])
-            ("org-babel-where-is-src-block-head" function (:arguments ("src-block")) nil [66094 67004])
-            ("org-babel-goto-src-block-head" function (:user-visible-flag t) nil [67021 67253])
-            ("org-babel-goto-named-src-block" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [67270 68513])
-            ("org-babel-find-named-block" function (:arguments ("name")) nil [68515 69041])
-            ("org-babel-src-block-names" function (:arguments ("file")) nil [69043 69595])
-            ("org-babel-goto-named-result" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [69612 70047])
-            ("org-babel-find-named-result" function (:arguments ("name")) nil [70049 70691])
-            ("org-babel-result-names" function (:arguments ("file")) nil [70693 71060])
-            ("org-babel-next-src-block" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [71077 71306])
-            ("org-babel-previous-src-block" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [71323 71561])
-            ("org-babel-load-languages" variable nil nil [71563 71596])
-            ("org-babel-mark-block" function (:user-visible-flag t) nil [71613 71929])
-            ("org-babel-demarcate-block" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [71931 74287])
-            ("org-babel--insert-results-keyword" function (:arguments ("name" "hash")) nil [74289 75220])
-            ("org-babel--clear-results-maybe" function (:arguments ("hash")) nil [75222 76239])
-            ("org-babel-where-is-src-block-result" function (:arguments ("insert" "_info" "hash")) nil [76241 79636])
-            ("org-babel-read-element" function (:arguments ("element")) nil [79638 81090])
-            ("org-babel-read-result" function nil nil [81092 81315])
-            ("org-babel-read-table" function nil nil [81317 81589])
-            ("org-babel-read-list" function nil nil [81591 81757])
-            ("org-link-types-re" variable nil nil [81759 81785])
-            ("org-babel-read-link" function nil nil [81786 82386])
-            ("org-babel-format-result" function (:arguments ("result" "sep")) nil [82388 82716])
-            ("org-babel-insert-result" function (:arguments ("result" "result-params" "info" "hash" "lang")) nil [82718 93486])
-            ("org-babel-remove-result" function
-               (:user-visible-flag t
-                :arguments ("info" "keep-keyword"))
-                nil [93488 94034])
-            ("org-babel-remove-inline-result" function
-               (:user-visible-flag t
-                :arguments ("datum"))
-                nil [94036 94986])
-            ("org-babel-remove-result-one-or-many" function
-               (:user-visible-flag t
-                :arguments ("x"))
-                nil [94988 95282])
-            ("org-babel-result-end" function nil nil [95284 95957])
-            ("org-babel-result-to-file" function (:arguments ("result" "description")) nil [95959 96550])
-            ("org-babel-examplify-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "results-switches" "inline"))
-                nil [96552 97627])
-            ("org-babel-update-block-body" function (:arguments ("new-body")) nil [97629 98629])
-            ("org-babel-merge-params" function (:arguments ("plists")) nil [98631 102696])
-            ("org-babel-use-quick-and-dirty-noweb-expansion" variable nil nil [102698 103007])
-            ("org-babel-noweb-p" function (:arguments ("params" "context")) nil [103009 103446])
-            ("org-babel-expand-noweb-references" function (:arguments ("info" "parent-buffer")) nil [103448 109925])
-            ("org-babel--script-escape-inner" function (:arguments ("str")) nil [109927 112067])
-            ("org-babel-script-escape" function (:arguments ("str" "force")) nil [112069 113161])
-            ("org-babel-read" function (:arguments ("cell" "inhibit-lisp-eval")) nil [113163 113872])
-            ("org-babel--string-to-number" function (:arguments ("string")) nil [113874 114084])
-            ("org-babel-import-elisp-from-file" function (:arguments ("file-name" "separator")) nil [114086 114832])
-            ("org-babel-string-read" function (:arguments ("cell")) nil [114834 115101])
-            ("org-babel-chomp" function (:arguments ("string" "regexp")) nil [115103 115520])
-            ("org-babel-process-file-name" function (:arguments ("name" "no-quote-p")) nil [115522 116057])
-            ("org-babel-temporary-directory" variable nil nil [116059 116097])
-            ("unless" code nil nil [116098 116533])
-            ("org-babel-remote-temporary-directory" variable (:default-value "/tmp/") nil [116535 116682])
-            ("org-babel-result-cond" function (:arguments ("result-params" "scalar-form" "table-forms")) nil [116684 117386])
-            ("def-edebug-spec" code nil nil [117387 117443])
-            ("org-babel-temp-file" function (:arguments ("prefix" "suffix")) nil [117445 118241])
-            ("org-babel-remove-temporary-directory" function nil nil [118243 119183])
-            ("add-hook" code nil nil [119185 119250])
-            ("org-babel-one-header-arg-safe-p" function (:arguments ("pair" "safe-list")) nil [119252 119817])
-            ("org-babel-generate-file-param" function (:arguments ("src-name" "params")) nil [119819 121253])
-            ("org-babel-graphical-output-file" function (:arguments ("params")) nil [121255 121815])
-            ("org-babel-make-language-alias" function (:arguments ("new" "old")) nil [121817 122741])
-            ("org-babel-strip-quotes" function (:arguments ("string")) nil [122743 122877])
-            ("ob-core" package nil nil [122879 122897]))          
-      :file "ob-core.el"
-      :pointmax 122999
-      :fsize 122998
-      :lastmodtime '(23525 29585 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-macs" include nil nil [1065 1084])
-            ("org-babel-error-buffer-name" variable (:default-value "*Org-Babel Error Output*") nil [1086 1149])
-            ("declare-function" code nil nil [1150 1224])
-            ("org-babel-eval-error-notify" function (:arguments ("exit-code" "stderr")) nil [1226 1608])
-            ("org-babel-eval" function (:arguments ("cmd" "body")) nil [1610 2552])
-            ("org-babel-eval-read-file" function (:arguments ("file")) nil [2554 2709])
-            ("org-babel--shell-command-on-region" function (:arguments ("start" "end" "command" "error-buffer")) nil [2711 5207])
-            ("org-babel-eval-wipe-error-buffer" function nil nil [5209 5517])
-            ("ob-eval" package nil nil [5519 5537]))          
-      :file "ob-eval.el"
-      :pointmax 5566
-      :fsize 5565
-      :lastmodtime '(23525 29586 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ox" include nil nil [1064 1077])
-            ("ox-publish" include nil nil [1078 1099])
-            ("cl-lib" include nil nil [1100 1117])
-            ("declare-function" code nil nil [1119 1172])
-            ("org-export-define-backend" code nil nil [1610 5906])
-            ("org-export-ascii" customgroup (:user-visible-flag t) nil [5944 6073])
-            ("org-ascii-text-width" variable (:default-value 72) nil [6075 6313])
-            ("org-ascii-global-margin" variable nil nil [6315 6503])
-            ("org-ascii-inner-margin" variable (:default-value 2) nil [6505 6740])
-            ("org-ascii-quote-margin" variable (:default-value 6) nil [6742 7053])
-            ("org-ascii-list-margin" variable nil nil [7055 7309])
-            ("org-ascii-inlinetask-width" variable (:default-value 30) nil [7311 7532])
-            ("org-ascii-headline-spacing" variable (:default-value (quote (1 . 2))) nil [7534 8236])
-            ("org-ascii-indented-line-width" variable (:default-value (quote auto)) nil [8238 8811])
-            ("org-ascii-paragraph-spacing" variable (:default-value (quote auto)) nil [8813 9276])
-            ("org-ascii-charset" variable (:default-value (quote ascii)) nil [9278 9709])
-            ("org-ascii-underline" variable (:default-value (quote ((ascii 61 126 45) (latin1 61 126 45) (utf-8 9552 9472 9548 9476 9480)))) nil [9711 10645])
-            ("org-ascii-bullets" variable (:default-value (quote ((ascii 42 43 45) (latin1 167 182) (utf-8 9674)))) nil [10647 11603])
-            ("org-ascii-links-to-notes" variable (:default-value t) nil [11605 11911])
-            ("org-ascii-table-keep-all-vertical-lines" variable nil nil [11913 12209])
-            ("org-ascii-table-widen-columns" variable (:default-value t) nil [12211 12509])
-            ("org-ascii-table-use-ascii-art" variable nil nil [12511 12881])
-            ("org-ascii-caption-above" variable nil nil [12883 13113])
-            ("org-ascii-verbatim-format" variable (:default-value "`%s'") nil [13115 13312])
-            ("org-ascii-format-drawer-function" variable (:default-value (lambda (_name contents _width) contents)) nil [13314 13871])
-            ("org-ascii-format-inlinetask-function" variable (:default-value (quote org-ascii-format-inlinetask-default)) nil [13873 14692])
-            ("org-ascii--fill-string" function (:arguments ("s" "text-width" "info" "justify")) nil [16332 17293])
-            ("org-ascii--justify-lines" function (:arguments ("s" "text-width" "how")) nil [17295 17873])
-            ("org-ascii--justify-element" function (:arguments ("contents" "element" "info")) nil [17875 19471])
-            ("org-ascii--indent-string" function (:arguments ("s" "width")) nil [19473 19701])
-            ("org-ascii--box-string" function (:arguments ("s" "info")) nil [19703 20121])
-            ("org-ascii--current-text-width" function (:arguments ("element" "info")) nil [20123 23724])
-            ("org-ascii--current-justification" function (:arguments ("element")) nil [23726 24341])
-            ("org-ascii--build-title" function (:arguments ("element" "info" "text-width" "underline" "notags" "toc")) nil [24343 26761])
-            ("org-ascii--has-caption-p" function (:arguments ("element" "_info")) nil [26763 27041])
-            ("org-ascii--build-caption" function (:arguments ("element" "info")) nil [27043 27922])
-            ("org-ascii--build-toc" function (:arguments ("info" "n" "keyword" "local")) nil [27924 29265])
-            ("org-ascii--list-listings" function (:arguments ("keyword" "info")) nil [29267 30719])
-            ("org-ascii--list-tables" function (:arguments ("keyword" "info")) nil [30721 32149])
-            ("org-ascii--unique-links" function (:arguments ("element" "info")) nil [32151 33453])
-            ("org-ascii--describe-datum" function (:arguments ("datum" "info")) nil [33455 35015])
-            ("org-ascii--describe-links" function (:arguments ("links" "width" "info")) nil [35017 36515])
-            ("org-ascii--checkbox" function (:arguments ("item" "info")) nil [36517 36870])
-            ("org-ascii-template--document-title" function (:arguments ("info")) nil [36889 40209])
-            ("org-ascii-inner-template" function (:arguments ("contents" "info")) nil [40211 42215])
-            ("org-ascii-template" function (:arguments ("contents" "info")) nil [42217 43185])
-            ("org-ascii--translate" function (:arguments ("s" "info")) nil [43187 43459])
-            ("org-ascii-bold" function (:arguments ("_bold" "contents" "_info")) nil [43500 43698])
-            ("org-ascii-center-block" function (:arguments ("_center-block" "contents" "_info")) nil [43720 44036])
-            ("org-ascii-clock" function (:arguments ("clock" "_contents" "info")) nil [44051 44520])
-            ("org-ascii-code" function (:arguments ("code" "_contents" "info")) nil [44534 44777])
-            ("org-ascii-drawer" function (:arguments ("drawer" "contents" "info")) nil [44793 45181])
-            ("org-ascii-dynamic-block" function (:arguments ("_dynamic-block" "contents" "_info")) nil [45204 45426])
-            ("org-ascii-entity" function (:arguments ("entity" "_contents" "info")) nil [45442 45731])
-            ("org-ascii-example-block" function (:arguments ("example-block" "_contents" "info")) nil [45754 46080])
-            ("org-ascii-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [46104 46406])
-            ("org-ascii-export-block" function (:arguments ("export-block" "_contents" "info")) nil [46428 46778])
-            ("org-ascii-fixed-width" function (:arguments ("fixed-width" "_contents" "info")) nil [46799 47137])
-            ("org-ascii-footnote-reference" function (:arguments ("footnote-reference" "_contents" "info")) nil [47311 47586])
-            ("org-ascii-headline" function (:arguments ("headline" "contents" "info")) nil [47604 49793])
-            ("org-ascii-horizontal-rule" function (:arguments ("horizontal-rule" "_contents" "info")) nil [49818 50411])
-            ("org-ascii-inline-src-block" function (:arguments ("inline-src-block" "_contents" "info")) nil [50437 50757])
-            ("org-ascii-format-inlinetask-default" function (:arguments ("_todo" "_type" "_priority" "_name" "_tags" "contents" "width" "inlinetask" "info")) nil [50777 52110])
-            ("org-ascii-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [52112 53058])
-            ("org-ascii-italic" function (:arguments ("_italic" "contents" "_info")) nil [53074 53280])
-            ("org-ascii-item" function (:arguments ("item" "contents" "info")) nil [53294 55660])
-            ("org-ascii-keyword" function (:arguments ("keyword" "_contents" "info")) nil [55677 56594])
-            ("org-ascii-latex-environment" function (:arguments ("latex-environment" "_contents" "info")) nil [56621 56995])
-            ("org-ascii-latex-fragment" function (:arguments ("latex-fragment" "_contents" "info")) nil [57019 57293])
-            ("org-ascii-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [57313 57506])
-            ("org-ascii-link" function (:arguments ("link" "desc" "info")) nil [57520 59482])
-            ("org-ascii-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [59507 59879])
-            ("org-ascii-paragraph" function (:arguments ("paragraph" "contents" "info")) nil [59898 60601])
-            ("org-ascii-plain-list" function (:arguments ("plain-list" "contents" "info")) nil [60621 61028])
-            ("org-ascii-plain-text" function (:arguments ("text" "info")) nil [61048 61711])
-            ("org-ascii-planning" function (:arguments ("planning" "_contents" "info")) nil [61729 62496])
-            ("org-ascii-property-drawer" function (:arguments ("property-drawer" "contents" "info")) nil [62521 62838])
-            ("org-ascii-quote-block" function (:arguments ("_quote-block" "contents" "info")) nil [62859 63138])
-            ("org-ascii-radio-target" function (:arguments ("_radio-target" "contents" "_info")) nil [63160 63376])
-            ("org-ascii-section" function (:arguments ("section" "contents" "info")) nil [63393 64307])
-            ("org-ascii-special-block" function (:arguments ("_special-block" "contents" "_info")) nil [64330 64699])
-            ("org-ascii-src-block" function (:arguments ("src-block" "_contents" "info")) nil [64718 65338])
-            ("org-ascii-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [65365 65612])
-            ("org-ascii-subscript" function (:arguments ("subscript" "contents" "_info")) nil [65631 65942])
-            ("org-ascii-superscript" function (:arguments ("superscript" "contents" "_info")) nil [65963 66282])
-            ("org-ascii-strike-through" function (:arguments ("_strike-through" "contents" "_info")) nil [66306 66540])
-            ("org-ascii-table" function (:arguments ("table" "contents" "info")) nil [66555 67734])
-            ("org-ascii--table-cell-width" function (:arguments ("table-cell" "info")) nil [67754 69215])
-            ("org-ascii-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [69217 70456])
-            ("org-ascii-table-row" function (:arguments ("table-row" "contents" "info")) nil [70475 72395])
-            ("org-ascii-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [72414 72652])
-            ("org-ascii-underline" function (:arguments ("_underline" "contents" "_info")) nil [72671 72889])
-            ("org-ascii-verbatim" function (:arguments ("verbatim" "_contents" "info")) nil [72907 73166])
-            ("org-ascii-verse-block" function (:arguments ("verse-block" "contents" "info")) nil [73187 73509])
-            ("org-ascii-filter-headline-blank-lines" function (:arguments ("headline" "_backend" "info")) nil [73527 74176])
-            ("org-ascii-filter-paragraph-spacing" function (:arguments ("tree" "_backend" "info")) nil [74178 74819])
-            ("org-ascii-filter-comment-spacing" function (:arguments ("tree" "_backend" "info")) nil [74821 75289])
-            ("org-ascii-export-as-ascii" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [75333 76513])
-            ("org-ascii-export-to-ascii" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [76530 77618])
-            ("org-ascii-publish-to-ascii" function (:arguments ("plist" "filename" "pub-dir")) nil [77635 77991])
-            ("org-ascii-publish-to-latin1" function (:arguments ("plist" "filename" "pub-dir")) nil [78008 78368])
-            ("org-ascii-publish-to-utf8" function (:arguments ("plist" "filename" "pub-dir")) nil [78385 78740])
-            ("ox-ascii" package nil nil [78743 78762]))          
-      :file "ox-ascii.el"
-      :pointmax 78882
-      :fsize 78981
-      :lastmodtime '(23525 29593 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [954 972])
-            ("declare-function" code nil nil [974 1042])
-            ("declare-function" code nil nil [1043 1099])
-            ("declare-function" code nil nil [1100 1172])
-            ("declare-function" code nil nil [1173 1245])
-            ("declare-function" code nil nil [1246 1305])
-            ("declare-function" code nil nil [1306 1364])
-            ("declare-function" code nil nil [1365 1414])
-            ("declare-function" code nil nil [1415 1474])
-            ("declare-function" code nil nil [1475 1536])
-            ("declare-function" code nil nil [1537 1615])
-            ("org-src-preserve-indentation" variable nil nil [1617 1654])
-            ("org-export-use-babel" variable (:default-value t) nil [1656 2105])
-            ("org-babel-exp--at-source" function (:arguments ("body")) nil [2108 2815])
-            ("org-babel-exp-src-block" function (:user-visible-flag t) nil [2817 4320])
-            ("org-babel-exp-call-line-template" variable nil nil [4322 4833])
-            ("org-babel-exp-process-buffer" function (:user-visible-flag t) nil [4835 10428])
-            ("org-babel-exp-do-export" function (:arguments ("info" "type" "hash")) nil [10430 11269])
-            ("org-babel-exp-code-template" variable (:default-value "#+BEGIN_SRC %lang%switches%flags
-%body
-#+END_SRC") nil [11271 12064])
-            ("org-babel-exp-inline-code-template" variable (:default-value "src_%lang[%switches%flags]{%body}") nil [12066 12908])
-            ("org-babel-exp-code" function (:arguments ("info" "type")) nil [12910 13899])
-            ("org-babel-exp-results" function (:arguments ("info" "type" "silent" "hash")) nil [13901 15426])
-            ("ob-exp" package nil nil [15429 15446]))          
-      :file "ob-exp.el"
-      :pointmax 15472
-      :fsize 15471
-      :lastmodtime '(23525 29586 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1130 1147])
-            ("format-spec" include nil nil [1148 1170])
-            ("ox" include nil nil [1171 1184])
-            ("ox-publish" include nil nil [1185 1206])
-            ("table" include nil nil [1207 1223])
-            ("declare-function" code nil nil [1254 1306])
-            ("declare-function" code nil nil [1307 1364])
-            ("declare-function" code nil nil [1365 1418])
-            ("htmlize-css-name-prefix" variable nil nil [1420 1452])
-            ("htmlize-output-type" variable nil nil [1453 1481])
-            ("htmlize-output-type" variable nil nil [1482 1510])
-            ("htmlize-css-name-prefix" variable nil nil [1511 1543])
-            ("org-export-define-backend" code nil nil [1566 8049])
-            ("org-html-format-table-no-css" variable nil nil [8077 8114])
-            ("htmlize-buffer-places" variable nil nil [8115 8145])
-            ("org-html--pre/postamble-class" variable (:default-value "status") nil [8166 8250])
-            ("org-html-doctype-alist" variable
-               (:constant-flag t
-                :default-value (quote (("html4-strict" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\"
-\"http://www.w3.org/TR/html4/strict.dtd\">") ("html4-transitional" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
-\"http://www.w3.org/TR/html4/loose.dtd\">") ("html4-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\"
-\"http://www.w3.org/TR/html4/frameset.dtd\">") ("xhtml-strict" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">") ("xhtml-transitional" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">") ("xhtml-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Frameset//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd\">") ("xhtml-11" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd\">") ("html5" . "<!DOCTYPE html>") ("xhtml5" . "<!DOCTYPE html>"))))
-                nil [8252 9370])
-            ("org-html-html5-elements" variable
-               (:constant-flag t
-                :default-value (quote ("article" "aside" "audio" "canvas" "details" "figcaption" "figure" "footer" "header" "menu" "meter" "nav" "output" "progress" "section" "video")))
-                nil [9372 9689])
-            ("org-html-special-string-regexps" variable
-               (:constant-flag t
-                :default-value (quote (("\\\\-" . "&#x00ad;") ("---\\([^-]\\)" . "&#x2014;\\1") ("--\\([^-]\\)" . "&#x2013;\\1") ("\\.\\.\\." . "&#x2026;"))))
-                nil [9691 9955])
-            ("org-html-scripts" variable
-               (:constant-flag t
-                :default-value "<script type=\"text/javascript\">
-/*
-@licstart  The following is the entire license notice for the
-JavaScript code in this tag.
-
-Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-The JavaScript code in this tag is free software: you can
-redistribute it and/or modify it under the terms of the GNU
-General Public License (GNU GPL) as published by the Free Software
-Foundation, either version 3 of the License, or (at your option)
-any later version.  The code is distributed WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
-
-As additional permission under GNU GPL version 3 section 7, you
-may distribute non-source (e.g., minimized or compacted) forms of
-that code without the copy of the GNU GPL normally required by
-section 4, provided you include this license notice and a URL
-through which recipients can access the Corresponding Source.
-
-
-@licend  The above is the entire license notice
-for the JavaScript code in this tag.
-*/
-<!--/*--><![CDATA[/*><!--*/
- function CodeHighlightOn(elem, id)
- {
-   var target = document.getElementById(id);
-   if(null != target) {
-     elem.cacheClassElem = elem.className;
-     elem.cacheClassTarget = target.className;
-     target.className = \"code-highlighted\";
-     elem.className   = \"code-highlighted\";
-   }
- }
- function CodeHighlightOff(elem, id)
- {
-   var target = document.getElementById(id);
-   if(elem.cacheClassElem)
-     elem.className = elem.cacheClassElem;
-   if(elem.cacheClassTarget)
-     target.className = elem.cacheClassTarget;
- }
-/*]]>*///-->
-</script>")
-                nil [9957 11677])
-            ("org-html-style-default" variable
-               (:constant-flag t
-                :default-value "<style type=\"text/css\">
- <!--/*--><![CDATA[/*><!--*/
-  .title  { text-align: center;
-             margin-bottom: .2em; }
-  .subtitle { text-align: center;
-              font-size: medium;
-              font-weight: bold;
-              margin-top:0; }
-  .todo   { font-family: monospace; color: red; }
-  .done   { font-family: monospace; color: green; }
-  .priority { font-family: monospace; color: orange; }
-  .tag    { background-color: #eee; font-family: monospace;
-            padding: 2px; font-size: 80%; font-weight: normal; }
-  .timestamp { color: #bebebe; }
-  .timestamp-kwd { color: #5f9ea0; }
-  .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
-  .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
-  .org-center { margin-left: auto; margin-right: auto; text-align: center; }
-  .underline { text-decoration: underline; }
-  #postamble p, #preamble p { font-size: 90%; margin: .2em; }
-  p.verse { margin-left: 3%; }
-  pre {
-    border: 1px solid #ccc;
-    box-shadow: 3px 3px 3px #eee;
-    padding: 8pt;
-    font-family: monospace;
-    overflow: auto;
-    margin: 1.2em;
-  }
-  pre.src {
-    position: relative;
-    overflow: visible;
-    padding-top: 1.2em;
-  }
-  pre.src:before {
-    display: none;
-    position: absolute;
-    background-color: white;
-    top: -10px;
-    right: 10px;
-    padding: 3px;
-    border: 1px solid black;
-  }
-  pre.src:hover:before { display: inline;}
-  /* Languages per Org manual */
-  pre.src-asymptote:before { content: 'Asymptote'; }
-  pre.src-awk:before { content: 'Awk'; }
-  pre.src-C:before { content: 'C'; }
-  /* pre.src-C++ doesn't work in CSS */
-  pre.src-clojure:before { content: 'Clojure'; }
-  pre.src-css:before { content: 'CSS'; }
-  pre.src-D:before { content: 'D'; }
-  pre.src-ditaa:before { content: 'ditaa'; }
-  pre.src-dot:before { content: 'Graphviz'; }
-  pre.src-calc:before { content: 'Emacs Calc'; }
-  pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
-  pre.src-fortran:before { content: 'Fortran'; }
-  pre.src-gnuplot:before { content: 'gnuplot'; }
-  pre.src-haskell:before { content: 'Haskell'; }
-  pre.src-hledger:before { content: 'hledger'; }
-  pre.src-java:before { content: 'Java'; }
-  pre.src-js:before { content: 'Javascript'; }
-  pre.src-latex:before { content: 'LaTeX'; }
-  pre.src-ledger:before { content: 'Ledger'; }
-  pre.src-lisp:before { content: 'Lisp'; }
-  pre.src-lilypond:before { content: 'Lilypond'; }
-  pre.src-lua:before { content: 'Lua'; }
-  pre.src-matlab:before { content: 'MATLAB'; }
-  pre.src-mscgen:before { content: 'Mscgen'; }
-  pre.src-ocaml:before { content: 'Objective Caml'; }
-  pre.src-octave:before { content: 'Octave'; }
-  pre.src-org:before { content: 'Org mode'; }
-  pre.src-oz:before { content: 'OZ'; }
-  pre.src-plantuml:before { content: 'Plantuml'; }
-  pre.src-processing:before { content: 'Processing.js'; }
-  pre.src-python:before { content: 'Python'; }
-  pre.src-R:before { content: 'R'; }
-  pre.src-ruby:before { content: 'Ruby'; }
-  pre.src-sass:before { content: 'Sass'; }
-  pre.src-scheme:before { content: 'Scheme'; }
-  pre.src-screen:before { content: 'Gnu Screen'; }
-  pre.src-sed:before { content: 'Sed'; }
-  pre.src-sh:before { content: 'shell'; }
-  pre.src-sql:before { content: 'SQL'; }
-  pre.src-sqlite:before { content: 'SQLite'; }
-  /* additional languages in org.el's org-babel-load-languages alist */
-  pre.src-forth:before { content: 'Forth'; }
-  pre.src-io:before { content: 'IO'; }
-  pre.src-J:before { content: 'J'; }
-  pre.src-makefile:before { content: 'Makefile'; }
-  pre.src-maxima:before { content: 'Maxima'; }
-  pre.src-perl:before { content: 'Perl'; }
-  pre.src-picolisp:before { content: 'Pico Lisp'; }
-  pre.src-scala:before { content: 'Scala'; }
-  pre.src-shell:before { content: 'Shell Script'; }
-  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
-  /* additional language identifiers per \"defun org-babel-execute\"
-       in ob-*.el */
-  pre.src-cpp:before  { content: 'C++'; }
-  pre.src-abc:before  { content: 'ABC'; }
-  pre.src-coq:before  { content: 'Coq'; }
-  pre.src-groovy:before  { content: 'Groovy'; }
-  /* additional language identifiers from org-babel-shell-names in
-     ob-shell.el: ob-shell is the only babel language using a lambda to put
-     the execution function name together. */
-  pre.src-bash:before  { content: 'bash'; }
-  pre.src-csh:before  { content: 'csh'; }
-  pre.src-ash:before  { content: 'ash'; }
-  pre.src-dash:before  { content: 'dash'; }
-  pre.src-ksh:before  { content: 'ksh'; }
-  pre.src-mksh:before  { content: 'mksh'; }
-  pre.src-posh:before  { content: 'posh'; }
-  /* Additional Emacs modes also supported by the LaTeX listings package */
-  pre.src-ada:before { content: 'Ada'; }
-  pre.src-asm:before { content: 'Assembler'; }
-  pre.src-caml:before { content: 'Caml'; }
-  pre.src-delphi:before { content: 'Delphi'; }
-  pre.src-html:before { content: 'HTML'; }
-  pre.src-idl:before { content: 'IDL'; }
-  pre.src-mercury:before { content: 'Mercury'; }
-  pre.src-metapost:before { content: 'MetaPost'; }
-  pre.src-modula-2:before { content: 'Modula-2'; }
-  pre.src-pascal:before { content: 'Pascal'; }
-  pre.src-ps:before { content: 'PostScript'; }
-  pre.src-prolog:before { content: 'Prolog'; }
-  pre.src-simula:before { content: 'Simula'; }
-  pre.src-tcl:before { content: 'tcl'; }
-  pre.src-tex:before { content: 'TeX'; }
-  pre.src-plain-tex:before { content: 'Plain TeX'; }
-  pre.src-verilog:before { content: 'Verilog'; }
-  pre.src-vhdl:before { content: 'VHDL'; }
-  pre.src-xml:before { content: 'XML'; }
-  pre.src-nxml:before { content: 'XML'; }
-  /* add a generic configuration mode; LaTeX export needs an additional
-     (add-to-list 'org-latex-listings-langs '(conf \" \")) in .emacs */
-  pre.src-conf:before { content: 'Configuration File'; }
-
-  table { border-collapse:collapse; }
-  caption.t-above { caption-side: top; }
-  caption.t-bottom { caption-side: bottom; }
-  td, th { vertical-align:top;  }
-  th.org-right  { text-align: center;  }
-  th.org-left   { text-align: center;   }
-  th.org-center { text-align: center; }
-  td.org-right  { text-align: right;  }
-  td.org-left   { text-align: left;   }
-  td.org-center { text-align: center; }
-  dt { font-weight: bold; }
-  .footpara { display: inline; }
-  .footdef  { margin-bottom: 1em; }
-  .figure { padding: 1em; }
-  .figure p { text-align: center; }
-  .inlinetask {
-    padding: 10px;
-    border: 2px solid gray;
-    margin: 10px;
-    background: #ffffcc;
-  }
-  #org-div-home-and-up
-   { text-align: right; font-size: 70%; white-space: nowrap; }
-  textarea { overflow-x: auto; }
-  .linenr { font-size: smaller }
-  .code-highlighted { background-color: #ffff00; }
-  .org-info-js_info-navigation { border-style: none; }
-  #org-info-js_console-label
-    { font-size: 10px; font-weight: bold; white-space: nowrap; }
-  .org-info-js_search-highlight
-    { background-color: #ffff00; color: #000000; font-weight: bold; }
-  .org-svg { width: 90%; }
-  /*]]>*/-->
-</style>")
-                nil [11679 18905])
-            ("org-export-html" customgroup (:user-visible-flag t) nil [18943 19069])
-            ("org-html-infojs-opts-table" variable (:default-value (quote ((path PATH "https://orgmode.org/org-info.js") (view VIEW "info") (toc TOC :with-toc) (ftoc FIXED_TOC "0") (tdepth TOC_DEPTH "max") (sdepth SECTION_DEPTH "max") (mouse MOUSE_HINT "underline") (buttons VIEW_BUTTONS "0") (ltoc LOCAL_TOC "1") (up LINK_UP :html-link-up) (home LINK_HOME :html-link-home)))) nil [19091 19532])
-            ("org-html-use-infojs" variable (:default-value (quote when-configured)) nil [19534 20151])
-            ("org-html-infojs-options" variable (:default-value (mapcar (lambda (x) (cons (car x) (nth 2 x))) org-html-infojs-opts-table)) nil [20153 21013])
-            ("org-html-infojs-template" variable (:default-value "<script type=\"text/javascript\" src=\"%SCRIPT_PATH\">
-/**
- *
- * @source: %SCRIPT_PATH
- *
- * @licstart  The following is the entire license notice for the
- *  JavaScript code in %SCRIPT_PATH.
- *
- * Copyright (C) 2012-2018 Free Software Foundation, Inc.
- *
- *
- * The JavaScript code in this tag is free software: you can
- * redistribute it and/or modify it under the terms of the GNU
- * General Public License (GNU GPL) as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option)
- * any later version.  The code is distributed WITHOUT ANY WARRANTY;
- * without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
- *
- * As additional permission under GNU GPL version 3 section 7, you
- * may distribute non-source (e.g., minimized or compacted) forms of
- * that code without the copy of the GNU GPL normally required by
- * section 4, provided you include this license notice and a URL
- * through which recipients can access the Corresponding Source.
- *
- * @licend  The above is the entire license notice
- * for the JavaScript code in %SCRIPT_PATH.
- *
- */
-</script>
-
-<script type=\"text/javascript\">
-
-/*
-@licstart  The following is the entire license notice for the
-JavaScript code in this tag.
-
-Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-The JavaScript code in this tag is free software: you can
-redistribute it and/or modify it under the terms of the GNU
-General Public License (GNU GPL) as published by the Free Software
-Foundation, either version 3 of the License, or (at your option)
-any later version.  The code is distributed WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
-
-As additional permission under GNU GPL version 3 section 7, you
-may distribute non-source (e.g., minimized or compacted) forms of
-that code without the copy of the GNU GPL normally required by
-section 4, provided you include this license notice and a URL
-through which recipients can access the Corresponding Source.
-
-
-@licend  The above is the entire license notice
-for the JavaScript code in this tag.
-*/
-
-<!--/*--><![CDATA[/*><!--*/
-%MANAGER_OPTIONS
-org_html_manager.setup();  // activate after the parameters are set
-/*]]>*///-->
-</script>") nil [21015 23625])
-            ("org-html-infojs-install-script" function (:arguments ("exp-plist" "_backend")) nil [23627 26918])
-            ("org-html-text-markup-alist" variable (:default-value (quote ((bold . "<b>%s</b>") (code . "<code>%s</code>") (italic . "<i>%s</i>") (strike-through . "<del>%s</del>") (underline . "<span class=\"underline\">%s</span>") (verbatim . "<code>%s</code>")))) nil [26937 27733])
-            ("org-html-indent" variable nil nil [27735 27971])
-            ("org-html-format-drawer-function" variable (:default-value (lambda (_name contents) contents)) nil [27987 28556])
-            ("org-html-footnotes-section" variable (:default-value "<div id=\"footnotes\">
-<h2 class=\"footnotes\">%s: </h2>
-<div id=\"text-footnotes\">
-%s
-</div>
-</div>") nil [28574 28974])
-            ("org-html-footnote-format" variable (:default-value "<sup>%s</sup>") nil [28976 29167])
-            ("org-html-footnote-separator" variable (:default-value "<sup>, </sup>") nil [29169 29303])
-            ("org-html-toplevel-hlevel" variable (:default-value 2) nil [29320 29846])
-            ("org-html-format-headline-function" variable (:default-value (quote org-html-format-headline-default-function)) nil [29848 30460])
-            ("org-html-allow-name-attribute-in-anchors" variable nil nil [30482 30785])
-            ("org-html-format-inlinetask-function" variable (:default-value (quote org-html-format-inlinetask-default-function)) nil [30805 31510])
-            ("org-html-with-latex" variable (:default-value org-export-with-latex) nil [31524 32393])
-            ("org-html-link-org-files-as-html" variable (:default-value t) nil [32418 32957])
-            ("org-html-inline-images" variable (:default-value t) nil [32988 33271])
-            ("org-html-inline-image-rules" variable (:default-value (quote (("file" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'") ("http" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'") ("https" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")))) nil [33273 33858])
-            ("org-html-protect-char-alist" variable (:default-value (quote (("&" . "&amp;") ("<" . "&lt;") (">" . "&gt;")))) nil [33877 34045])
-            ("org-html-htmlize-output-type" variable (:default-value (quote inline-css)) nil [34063 35180])
-            ("org-html-htmlize-font-prefix" variable (:default-value "org-") nil [35182 35339])
-            ("org-html-table-default-attributes" variable (:default-value (quote (:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides"))) nil [35353 35867])
-            ("org-html-table-header-tags" variable (:default-value (quote ("<th scope=\"%s\"%s>" . "</th>"))) nil [35869 36443])
-            ("org-html-table-data-tags" variable (:default-value (quote ("<td%s>" . "</td>"))) nil [36445 36929])
-            ("org-html-table-row-open-tag" variable (:default-value "<tr>") nil [36931 38245])
-            ("org-html-table-row-close-tag" variable (:default-value "</tr>") nil [38247 38679])
-            ("org-html-table-align-individual-fields" variable (:default-value t) nil [38681 39006])
-            ("org-html-table-use-header-tags-for-first-column" variable nil nil [39008 39224])
-            ("org-html-table-caption-above" variable (:default-value t) nil [39226 39415])
-            ("org-html-tag-class-prefix" variable nil nil [39428 39810])
-            ("org-html-extension" variable (:default-value "html") nil [39838 39960])
-            ("org-html-xml-declaration" variable (:default-value (quote (("html" . "<?xml version=\"1.0\" encoding=\"%s\"?>") ("php" . "<?php echo \"<?xml version=\\\"1.0\\\" encoding=\\\"%s\\\" ?>\"; ?>")))) nil [39962 40579])
-            ("org-html-coding-system" variable (:default-value (quote utf-8)) nil [40581 40790])
-            ("org-html-doctype" variable (:default-value "xhtml-strict") nil [40792 41196])
-            ("org-html-html5-fancy" variable nil nil [41198 41701])
-            ("org-html-container-element" variable (:default-value "div") nil [41703 42083])
-            ("org-html-divs" variable (:default-value (quote ((preamble "div" "preamble") (content "div" "content") (postamble "div" "postamble")))) nil [42085 42981])
-            ("org-html-checkbox-types" variable
-               (:constant-flag t
-                :default-value (quote ((unicode (on . "&#x2611;") (off . "&#x2610;") (trans . "&#x2610;")) (ascii (on . "<code>[X]</code>") (off . "<code>[&#xa0;]</code>") (trans . "<code>[-]</code>")) (html (on . "<input type='checkbox' checked='checked' />") (off . "<input type='checkbox' />") (trans . "<input type='checkbox' />")))))
-                nil [42983 43742])
-            ("org-html-checkbox-type" variable (:default-value (quote ascii)) nil [43744 44128])
-            ("org-html-metadata-timestamp-format" variable (:default-value "%Y-%m-%d %a %H:%M") nil [44130 44423])
-            ("org-html-mathjax-options" variable (:default-value (quote ((path "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_HTML") (scale "100") (align "center") (font "TeX") (linebreaks "false") (autonumber "AMS") (indent "0em") (multlinewidth "85%") (tagindent ".8em") (tagside "right")))) nil [44451 47695])
-            ("org-html-mathjax-template" variable (:default-value "<script type=\"text/x-mathjax-config\">
-    MathJax.Hub.Config({
-        displayAlign: \"%ALIGN\",
-        displayIndent: \"%INDENT\",
-
-        \"HTML-CSS\": { scale: %SCALE,
-                        linebreaks: { automatic: \"%LINEBREAKS\" },
-                        webFont: \"%FONT\"
-                       },
-        SVG: {scale: %SCALE,
-              linebreaks: { automatic: \"%LINEBREAKS\" },
-              font: \"%FONT\"},
-        NativeMML: {scale: %SCALE},
-        TeX: { equationNumbers: {autoNumber: \"%AUTONUMBER\"},
-               MultLineWidth: \"%MULTLINEWIDTH\",
-               TagSide: \"%TAGSIDE\",
-               TagIndent: \"%TAGINDENT\"
-             }
-});
-</script>
-<script type=\"text/javascript\"
-        src=\"%PATH\"></script>") nil [47697 48597])
-            ("org-html-postamble" variable (:default-value (quote auto)) nil [48627 49497])
-            ("org-html-postamble-format" variable (:default-value (quote (("en" "<p class=\"author\">Author: %a (%e)</p>
-<p class=\"date\">Date: %d</p>
-<p class=\"creator\">%c</p>
-<p class=\"validation\">%v</p>")))) nil [49499 50548])
-            ("org-html-validation-link" variable (:default-value "<a href=\"http://validator.w3.org/check?uri=referer\">Validate</a>") nil [50550 50736])
-            ("org-html-creator-string" variable (:default-value (format "<a href=\"https://www.gnu.org/software/emacs/\">Emacs</a> %s (<a href=\"https://orgmode.org\">Org</a> mode %s)" emacs-version (if (fboundp (quote org-version)) (org-version) "unknown version"))) nil [50738 51208])
-            ("org-html-preamble" variable (:default-value t) nil [51237 52000])
-            ("org-html-preamble-format" variable (:default-value (quote (("en" "")))) nil [52002 52987])
-            ("org-html-link-up" variable nil nil [52989 53145])
-            ("org-html-link-home" variable nil nil [53147 53307])
-            ("org-html-link-use-abs-url" variable nil nil [53309 53503])
-            ("org-html-home/up-format" variable (:default-value "<div id=\"org-div-home-and-up\">
- <a accesskey=\"h\" href=\"%s\"> UP </a>
- |
- <a accesskey=\"H\" href=\"%s\"> HOME </a>
-</div>") nil [53505 53953])
-            ("org-html-head-include-scripts" variable (:default-value t) nil [53981 54272])
-            ("org-html-head-include-default-style" variable (:default-value t) nil [54299 54651])
-            ("put" code nil nil [54667 54740])
-            ("org-html-head" variable nil nil [54742 55833])
-            ("put" code nil nil [55849 55899])
-            ("org-html-head-extra" variable nil nil [55901 56211])
-            ("put" code nil nil [56227 56283])
-            ("org-html-viewport" variable (:default-value (quote ((width "device-width") (initial-scale "1") (minimum-scale "") (maximum-scale "") (user-scalable "")))) nil [56312 57917])
-            ("org-html-klipsify-src" variable nil nil [57961 58151])
-            ("org-html-klipse-css" variable (:default-value "https://storage.googleapis.com/app.klipse.tech/css/codemirror.css") nil [58153 58391])
-            ("org-html-klipse-js" variable (:default-value "https://storage.googleapis.com/app.klipse.tech/plugin_prod/js/klipse_plugin.min.js") nil [58393 58596])
-            ("org-html-klipse-selection-script" variable (:default-value "window.klipse_settings = {selector_eval_html: '.src-html',
-                             selector_eval_js: '.src-js',
-                             selector_eval_python_client: '.src-python',
-                             selector_eval_scheme: '.src-scheme',
-                             selector: '.src-clojure',
-                             selector_eval_ruby: '.src-ruby'};") nil [58598 59139])
-            ("org-html-todo-kwd-class-prefix" variable nil nil [59154 59554])
-            ("org-html-xhtml-p" function (:arguments ("info")) nil [59581 59701])
-            ("org-html-html5-p" function (:arguments ("info")) nil [59703 59842])
-            ("org-html--html5-fancy-p" function (:arguments ("info")) nil [59844 60074])
-            ("org-html-close-tag" function (:arguments ("tag" "attr" "info")) nil [60076 60351])
-            ("org-html-doctype" function (:arguments ("info")) nil [60353 60717])
-            ("org-html--make-attribute-string" function (:arguments ("attributes")) nil [60719 61391])
-            ("org-html--wrap-image" function (:arguments ("contents" "info" "caption" "label")) nil [61393 62161])
-            ("org-html--format-image" function (:arguments ("source" "attributes" "info")) nil [62163 62900])
-            ("org-html--svg-image" function (:arguments ("source" "attributes" "info")) nil [62902 63948])
-            ("org-html--textarea-block" function (:arguments ("element")) nil [63950 64383])
-            ("org-html--has-caption-p" function (:arguments ("element" "_info")) nil [64385 64724])
-            ("org-html-htmlize-region-for-paste" function (:arguments ("beg" "end")) nil [64738 65330])
-            ("org-html-htmlize-generate-css" function (:user-visible-flag t) nil [65347 66833])
-            ("org-html--make-string" function (:arguments ("n" "string")) nil [66835 66992])
-            ("org-html-fix-class-name" function (:arguments ("kwd")) nil [66994 67214])
-            ("org-html-footnote-section" function (:arguments ("info")) nil [67216 68162])
-            ("org-html--build-meta-info" function (:arguments ("info")) nil [68180 71133])
-            ("org-html--build-head" function (:arguments ("info")) nil [71135 71915])
-            ("org-html--build-mathjax-config" function (:arguments ("info")) nil [71917 72876])
-            ("org-html-format-spec" function (:arguments ("info")) nil [72878 73840])
-            ("org-html--build-pre/postamble" function (:arguments ("type" "info")) nil [73842 76166])
-            ("org-html-inner-template" function (:arguments ("contents" "info")) nil [76168 76582])
-            ("org-html-template" function (:arguments ("contents" "info")) nil [76584 79569])
-            ("org-html--translate" function (:arguments ("s" "info")) nil [79571 79750])
-            ("org-html--anchor" function (:arguments ("id" "desc" "attributes" "info")) nil [79765 80099])
-            ("org-html--todo" function (:arguments ("todo" "info")) nil [80112 80405])
-            ("org-html--priority" function (:arguments ("priority" "_info")) nil [80422 80671])
-            ("org-html--tags" function (:arguments ("tags" "info")) nil [80684 81064])
-            ("org-html-fontify-code" function (:arguments ("code" "lang")) nil [81081 83302])
-            ("org-html-do-format-code" function (:arguments ("code" "lang" "refs" "retain-labels" "num-start")) nil [83304 84564])
-            ("org-html-format-code" function (:arguments ("element" "info")) nil [84566 85201])
-            ("org-html-toc" function (:arguments ("depth" "info" "scope")) nil [85229 86319])
-            ("org-html--toc-text" function (:arguments ("toc-entries")) nil [86321 87131])
-            ("org-html--format-toc-headline" function (:arguments ("headline" "info")) nil [87133 88407])
-            ("org-html-list-of-listings" function (:arguments ("info")) nil [88409 89674])
-            ("org-html-list-of-tables" function (:arguments ("info")) nil [89676 90923])
-            ("org-html-bold" function (:arguments ("_bold" "contents" "info")) nil [90963 91224])
-            ("org-html-center-block" function (:arguments ("_center-block" "contents" "_info")) nil [91245 91510])
-            ("org-html-clock" function (:arguments ("clock" "_contents" "_info")) nil [91524 92041])
-            ("org-html-code" function (:arguments ("code" "_contents" "info")) nil [92054 92348])
-            ("org-html-drawer" function (:arguments ("drawer" "contents" "info")) nil [92363 92667])
-            ("org-html-dynamic-block" function (:arguments ("_dynamic-block" "contents" "_info")) nil [92689 92933])
-            ("org-html-entity" function (:arguments ("entity" "_contents" "_info")) nil [92948 93168])
-            ("org-html-example-block" function (:arguments ("example-block" "_contents" "info")) nil [93190 93903])
-            ("org-html-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [93926 94225])
-            ("org-html-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [94246 94567])
-            ("org-html-fixed-width" function (:arguments ("fixed-width" "_contents" "_info")) nil [94587 94917])
-            ("org-html-footnote-reference" function (:arguments ("footnote-reference" "_contents" "info")) nil [94944 95755])
-            ("org-html-headline" function (:arguments ("headline" "contents" "info")) nil [95772 99722])
-            ("org-html-format-headline-default-function" function (:arguments ("todo" "_todo-type" "priority" "text" "tags" "info")) nil [99724 100160])
-            ("org-html--container" function (:arguments ("headline" "info")) nil [100162 100366])
-            ("org-html-horizontal-rule" function (:arguments ("_horizontal-rule" "_contents" "info")) nil [100390 100618])
-            ("org-html-inline-src-block" function (:arguments ("inline-src-block" "_contents" "info")) nil [100643 101269])
-            ("org-html-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [101288 102110])
-            ("org-html-format-inlinetask-default-function" function (:arguments ("todo" "todo-type" "priority" "text" "tags" "contents" "info")) nil [102112 102518])
-            ("org-html-italic" function (:arguments ("_italic" "contents" "info")) nil [102533 102807])
-            ("org-html-checkbox" function (:arguments ("checkbox" "info")) nil [102820 103104])
-            ("org-html-format-list-item" function (:arguments ("contents" "type" "checkbox" "info" "term-counter-id" "headline")) nil [103106 104451])
-            ("org-html-item" function (:arguments ("item" "contents" "info")) nil [104453 105011])
-            ("org-html-keyword" function (:arguments ("keyword" "_contents" "info")) nil [105027 105783])
-            ("org-html-format-latex" function (:arguments ("latex-frag" "processing-type" "info")) nil [105809 107266])
-            ("org-html-latex-environment" function (:arguments ("latex-environment" "_contents" "info")) nil [107268 108241])
-            ("org-html-latex-fragment" function (:arguments ("latex-fragment" "_contents" "info")) nil [108264 108988])
-            ("org-html-line-break" function (:arguments ("_line-break" "_contents" "info")) nil [109007 109232])
-            ("org-html-image-link-filter" function (:arguments ("data" "_backend" "info")) nil [109245 109372])
-            ("org-html-inline-image-p" function (:arguments ("link" "info")) nil [109374 110271])
-            ("org-html-standalone-image-predicate" variable nil nil [110273 110317])
-            ("org-html-standalone-image-p" function (:arguments ("element" "info")) nil [110318 111677])
-            ("org-html-link" function (:arguments ("link" "desc" "info")) nil [111679 118831])
-            ("org-html-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [118853 119223])
-            ("org-html-paragraph" function (:arguments ("paragraph" "contents" "info")) nil [119241 121068])
-            ("org-html-plain-list" function (:arguments ("plain-list" "contents" "_info")) nil [121087 121808])
-            ("org-html-convert-special-strings" function (:arguments ("string")) nil [121827 122085])
-            ("org-html-encode-plain-text" function (:arguments ("text")) nil [122087 122380])
-            ("org-html-plain-text" function (:arguments ("text" "info")) nil [122382 123318])
-            ("org-html-planning" function (:arguments ("planning" "_contents" "info")) nil [123334 124129])
-            ("org-html-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [124153 124465])
-            ("org-html-quote-block" function (:arguments ("quote-block" "contents" "_info")) nil [124485 125074])
-            ("org-html-section" function (:arguments ("section" "contents" "info")) nil [125090 126032])
-            ("org-html-radio-target" function (:arguments ("radio-target" "text" "info")) nil [126053 126344])
-            ("org-html-special-block" function (:arguments ("special-block" "contents" "info")) nil [126366 127538])
-            ("org-html-src-block" function (:arguments ("src-block" "_contents" "info")) nil [127556 129234])
-            ("org-html-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [129260 129572])
-            ("org-html-strike-through" function (:arguments ("_strike-through" "contents" "info")) nil [129595 129916])
-            ("org-html-subscript" function (:arguments ("_subscript" "contents" "_info")) nil [129934 130164])
-            ("org-html-superscript" function (:arguments ("_superscript" "contents" "_info")) nil [130184 130420])
-            ("org-html-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [130439 131832])
-            ("org-html-table-row" function (:arguments ("table-row" "contents" "info")) nil [131850 133755])
-            ("org-html-table-first-row-data-cells" function (:arguments ("table" "info")) nil [133769 134251])
-            ("org-html-table--table.el-table" function (:arguments ("table" "_info")) nil [134253 134857])
-            ("org-html-table" function (:arguments ("table" "contents" "info")) nil [134859 136994])
-            ("org-html-target" function (:arguments ("target" "_contents" "info")) nil [137009 137265])
-            ("org-html-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [137283 137680])
-            ("org-html-underline" function (:arguments ("_underline" "contents" "info")) nil [137698 137991])
-            ("org-html-verbatim" function (:arguments ("verbatim" "_contents" "info")) nil [138008 138322])
-            ("org-html-verse-block" function (:arguments ("_verse-block" "contents" "info")) nil [138342 139049])
-            ("org-html-final-function" function (:arguments ("contents" "_backend" "info")) nil [139075 139394])
-            ("org-html-export-as-html" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [139437 140633])
-            ("org-html-convert-region-to-html" function (:user-visible-flag t) nil [140650 140962])
-            ("org-html-export-to-html" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [140979 142242])
-            ("org-html-publish-to-html" function (:arguments ("plist" "filename" "pub-dir")) nil [142259 142689])
-            ("ox-html" package nil nil [142692 142710]))          
-      :file "ox-html.el"
-      :pointmax 142812
-      :fsize 142811
-      :lastmodtime '(23525 29593 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [985 1002])
-            ("format-spec" include nil nil [1003 1025])
-            ("ox" include nil nil [1026 1039])
-            ("org-compat" include nil nil [1040 1061])
-            ("table" include nil nil [1062 1091])
-            ("org-export-define-backend" code nil nil [1114 4638])
-            ("declare-function" code nil nil [4730 4785])
-            ("declare-function" code nil nil [4786 4847])
-            ("declare-function" code nil nil [4848 4912])
-            ("declare-function" code nil nil [4913 4996])
-            ("declare-function" code nil nil [4997 5055])
-            ("nxml-auto-insert-xml-declaration-flag" variable nil nil [5057 5103])
-            ("archive-zip-extract" variable nil nil [5119 5147])
-            ("hfy-end-span-handler" variable nil nil [5170 5199])
-            ("hfy-begin-span-handler" variable nil nil [5225 5256])
-            ("hfy-face-to-css" variable nil nil [5282 5306])
-            ("hfy-html-quote-map" variable nil nil [5332 5359])
-            ("hfy-html-quote-regex" variable nil nil [5385 5414])
-            ("org-odt-lib-dir" variable
-               (:constant-flag t
-                :default-value (file-name-directory (or load-file-name (buffer-file-name))))
-                nil [5467 5661])
-            ("org-odt-data-dir" variable (:default-value (expand-file-name "../../etc/" org-odt-lib-dir)) nil [5663 5850])
-            ("org-odt-special-string-regexps" variable
-               (:constant-flag t
-                :default-value (quote (("\\\\-" . "&#x00ad;\\1") ("---\\([^-]\\)" . "&#x2014;\\1") ("--\\([^-]\\)" . "&#x2013;\\1") ("\\.\\.\\." . "&#x2026;"))))
-                nil [5852 6118])
-            ("org-odt-schema-dir-list" variable
-               (:constant-flag t
-                :default-value (list (and org-odt-data-dir (expand-file-name "./schema/" org-odt-data-dir)) (eval-when-compile (and (boundp (quote org-odt-data-dir)) org-odt-data-dir (expand-file-name "./schema/" org-odt-data-dir)))))
-                nil [6120 6645])
-            ("org-odt-styles-dir-list" variable
-               (:constant-flag t
-                :default-value (list (and org-odt-data-dir (expand-file-name "./styles/" org-odt-data-dir)) (eval-when-compile (and (boundp (quote org-odt-data-dir)) org-odt-data-dir (expand-file-name "./styles/" org-odt-data-dir))) (expand-file-name "../etc/styles/" org-odt-lib-dir) (expand-file-name "./etc/styles/" org-odt-lib-dir) (expand-file-name "./org/" data-directory)))
-                nil [6647 7323])
-            ("org-odt-styles-dir" variable
-               (:constant-flag t
-                :default-value (let ((styles-dir (cl-find-if (lambda (dir) (and dir (file-readable-p (expand-file-name "OrgOdtContentTemplate.xml" dir)) (file-readable-p (expand-file-name "OrgOdtStyles.xml" dir)))) org-odt-styles-dir-list))) (unless styles-dir (error "Error (ox-odt): Cannot find factory styles files, aborting")) styles-dir))
-                nil [7325 8245])
-            ("org-odt-bookmark-prefix" variable
-               (:constant-flag t
-                :default-value "OrgXref.")
-                nil [8247 8292])
-            ("org-odt-manifest-file-entry-tag" variable
-               (:constant-flag t
-                :default-value "
-<manifest:file-entry manifest:media-type=\"%s\" manifest:full-path=\"%s\"%s/>")
-                nil [8294 8420])
-            ("org-odt-file-extensions" variable
-               (:constant-flag t
-                :default-value (quote (("odt" . "OpenDocument Text") ("ott" . "OpenDocument Text Template") ("odm" . "OpenDocument Master Document") ("ods" . "OpenDocument Spreadsheet") ("ots" . "OpenDocument Spreadsheet Template") ("odg" . "OpenDocument Drawing (Graphics)") ("otg" . "OpenDocument Drawing Template") ("odp" . "OpenDocument Presentation") ("otp" . "OpenDocument Presentation Template") ("odi" . "OpenDocument Image") ("odf" . "OpenDocument Formula") ("odc" . "OpenDocument Chart"))))
-                nil [8422 8964])
-            ("org-odt-table-style-format" variable
-               (:constant-flag t
-                :default-value "
-<style:style style:name=\"%s\" style:family=\"table\">
-  <style:table-properties style:rel-width=\"%s%%\" fo:margin-top=\"0cm\" fo:margin-bottom=\"0.20cm\" table:align=\"center\"/>
-</style:style>
-")
-                nil [8966 9251])
-            ("org-odt-automatic-styles" variable (:default-value (quote nil)) nil [9253 9840])
-            ("org-odt-object-counters" variable nil nil [9842 10014])
-            ("org-odt-src-block-paragraph-format" variable (:default-value "<style:style style:name=\"OrgSrcBlock\" style:family=\"paragraph\" style:parent-style-name=\"Preformatted_20_Text\">
-   <style:paragraph-properties fo:background-color=\"%s\" fo:padding=\"0.049cm\" fo:border=\"0.51pt solid #000000\" style:shadow=\"none\">
-    <style:background-image/>
-   </style:paragraph-properties>
-   <style:text-properties fo:color=\"%s\"/>
-  </style:style>") nil [10016 10693])
-            ("hfy-optimizations" variable nil nil [10695 10721])
-            ("org-odt-embedded-formulas-count" variable nil nil [10722 10764])
-            ("org-odt-embedded-images-count" variable nil nil [10765 10805])
-            ("org-odt-image-size-probe-method" variable (:default-value (append (and (executable-find "identify") (quote (imagemagick))) (quote (emacs fixed)))) nil [10806 10998])
-            ("org-odt-default-image-sizes-alist" variable (:default-value (quote (("as-char" 5 . 0.4) ("paragraph" 5 . 5)))) nil [11000 11168])
-            ("org-odt-max-image-size" variable (:default-value (quote (17.0 . 20.0))) nil [11321 11414])
-            ("org-odt-label-styles" variable
-               (:constant-flag t
-                :default-value (quote (("math-formula" "%c" "text" "(%n)") ("math-label" "(%n)" "text" "(%n)") ("category-and-value" "%e %n: %c" "category-and-value" "%e %n") ("value" "%e %n: %c" "value" "%n"))))
-                nil [11416 12415])
-            ("org-odt-category-map-alist" variable (:default-value (quote (("__Table__" "Table" "value" "Table" org-odt--enumerable-p) ("__Figure__" "Illustration" "value" "Figure" org-odt--enumerable-image-p) ("__MathFormula__" "Text" "math-formula" "Equation" org-odt--enumerable-formula-p) ("__DvipngImage__" "Equation" "value" "Equation" org-odt--enumerable-latex-image-p) ("__Listing__" "Listing" "value" "Listing" org-odt--enumerable-p)))) nil [12417 13580])
-            ("org-odt-manifest-file-entries" variable nil nil [13582 13624])
-            ("hfy-user-sheet-assoc" variable nil nil [13625 13654])
-            ("org-odt-zip-dir" variable nil nil [13656 13740])
-            ("org-export-odt" customgroup (:user-visible-flag t) nil [13779 13902])
-            ("org-odt-prettify-xml" variable nil nil [13921 14274])
-            ("rng-loc" include nil nil [14299 14317])
-            ("org-odt-schema-dir" variable (:default-value (cl-find-if (lambda (dir) (and dir (file-expand-wildcards (expand-file-name "od-manifest-schema*.rnc" dir)) (file-expand-wildcards (expand-file-name "od-schema*.rnc" dir)) (file-readable-p (expand-file-name "schemas.xml" dir)))) org-odt-schema-dir-list)) nil [14318 16180])
-            ("org-odt-content-template-file" variable nil nil [16205 16551])
-            ("org-odt-styles-file" variable nil nil [16553 18098])
-            ("org-odt-display-outline-level" variable (:default-value 2) nil [18100 18303])
-            ("org-odt-convert-processes" variable (:default-value (quote (("LibreOffice" "soffice --headless --convert-to %f%x --outdir %d %i") ("unoconv" "unoconv -f %f -o %d %i")))) nil [18331 19392])
-            ("org-odt-convert-process" variable (:default-value "LibreOffice") nil [19394 19925])
-            ("org-odt-convert-capabilities" variable (:default-value (quote (("Text" ("odt" "ott" "doc" "rtf" "docx") (("pdf" "pdf") ("odt" "odt") ("rtf" "rtf") ("ott" "ott") ("doc" "doc" ":\"MS Word 97\"") ("docx" "docx") ("html" "html"))) ("Web" ("html") (("pdf" "pdf") ("odt" "odt") ("html" "html"))) ("Spreadsheet" ("ods" "ots" "xls" "csv" "xlsx") (("pdf" "pdf") ("ots" "ots") ("html" "html") ("csv" "csv") ("ods" "ods") ("xls" "xls") ("xlsx" "xlsx"))) ("Presentation" ("odp" "otp" "ppt" "pptx") (("pdf" "pdf") ("swf" "swf") ("odp" "odp") ("otp" "otp") ("ppt" "ppt") ("pptx" "pptx") ("odg" "odg")))))) nil [19927 22525])
-            ("org-odt-preferred-output-format" variable nil nil [22527 23339])
-            ("put" code nil nil [23355 23423])
-            ("org-odt-format-drawer-function" variable (:default-value (lambda (_name contents) contents)) nil [23440 23904])
-            ("org-odt-format-headline-function" variable (:default-value (quote org-odt-format-headline-default-function)) nil [23922 24509])
-            ("org-odt-format-inlinetask-function" variable (:default-value (quote org-odt-format-inlinetask-default-function)) nil [24530 25177])
-            ("org-odt-with-latex" variable (:default-value org-export-with-latex) nil [25192 26298])
-            ("org-odt-inline-formula-rules" variable (:default-value (quote (("file" . "\\.\\(mathml\\|mml\\|odf\\)\\'")))) nil [26313 26773])
-            ("org-odt-inline-image-rules" variable (:default-value (quote (("file" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")))) nil [26775 27241])
-            ("org-odt-pixels-per-inch" variable (:default-value 96.0) nil [27243 27540])
-            ("org-odt-create-custom-styles-for-srcblocks" variable (:default-value t) nil [27559 28295])
-            ("org-odt-fontify-srcblocks" variable (:default-value t) nil [28297 28648])
-            ("org-odt-table-styles" variable (:default-value (quote (("OrgEquation" "OrgEquation" ((use-first-column-styles . t) (use-last-column-styles . t))) ("TableWithHeaderRowAndColumn" "Custom" ((use-first-row-styles . t) (use-first-column-styles . t))) ("TableWithFirstRowandLastRow" "Custom" ((use-first-row-styles . t) (use-last-row-styles . t))) ("GriddedTable" "Custom" nil)))) nil [28663 32646])
-            ("org-odt-use-date-fields" variable nil nil [32665 33964])
-            ("org-odt--format-timestamp" function (:arguments ("timestamp" "end" "iso-date-p")) nil [34004 36112])
-            ("org-odt--frame" function (:arguments ("text" "width" "height" "style" "extra" "anchor-type" "title-and-desc")) nil [36126 36953])
-            ("org-odt--zip-extract" function (:arguments ("archive" "members" "target")) nil [36979 37849])
-            ("org-odt--target" function (:arguments ("text" "id")) nil [37864 38127])
-            ("org-odt--textbox" function (:arguments ("text" "width" "height" "style" "extra" "anchor-type")) nil [38143 38488])
-            ("org-odt--format-toc" function (:arguments ("title" "entries" "depth")) nil [38516 39905])
-            ("cl-defun" code nil nil [39907 40947])
-            ("org-odt-toc" function (:arguments ("depth" "info" "scope")) nil [40949 42417])
-            ("org-odt-add-automatic-style" function (:arguments ("object-type" "object-props")) nil [42442 43543])
-            ("org-odt--checkbox" function (:arguments ("item")) nil [43560 43903])
-            ("org-odt--build-date-styles" function (:arguments ("fmt" "style")) nil [43919 47655])
-            ("org-odt-template" function (:arguments ("contents" "info")) nil [47657 58662])
-            ("org-odt-bold" function (:arguments ("_bold" "contents" "_info")) nil [58703 58951])
-            ("org-odt-center-block" function (:arguments ("_center-block" "contents" "_info")) nil [58973 59195])
-            ("org-odt-clock" function (:arguments ("clock" "contents" "info")) nil [59210 59873])
-            ("org-odt-code" function (:arguments ("code" "_contents" "_info")) nil [59887 60188])
-            ("org-odt-drawer" function (:arguments ("drawer" "contents" "info")) nil [60204 60545])
-            ("org-odt-dynamic-block" function (:arguments ("_dynamic-block" "contents" "_info")) nil [60568 60810])
-            ("org-odt-entity" function (:arguments ("entity" "_contents" "_info")) nil [60826 61045])
-            ("org-odt-example-block" function (:arguments ("example-block" "_contents" "info")) nil [61068 61292])
-            ("org-odt-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [61316 61612])
-            ("org-odt-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [61634 61952])
-            ("org-odt-fixed-width" function (:arguments ("fixed-width" "_contents" "info")) nil [61973 62222])
-            ("org-odt-footnote-reference" function (:arguments ("footnote-reference" "_contents" "info")) nil [62315 64672])
-            ("org-odt-format-headline--wrap" function (:arguments ("headline" "backend" "info" "format-function" "extra-keys")) nil [64690 66326])
-            ("org-odt-headline" function (:arguments ("headline" "contents" "info")) nil [66328 68899])
-            ("org-odt-format-headline-default-function" function (:arguments ("todo" "todo-type" "priority" "text" "tags")) nil [68901 69778])
-            ("org-odt-horizontal-rule" function (:arguments ("_horizontal-rule" "_contents" "_info")) nil [69803 70078])
-            ("org-odt--find-verb-separator" function (:arguments ("s")) nil [70165 70542])
-            ("org-odt-inline-src-block" function (:arguments ("_inline-src-block" "_contents" "_info")) nil [70544 70779])
-            ("org-odt-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [70799 71613])
-            ("org-odt-format-inlinetask-default-function" function (:arguments ("todo" "todo-type" "priority" "name" "tags" "contents")) nil [71615 72177])
-            ("org-odt-italic" function (:arguments ("_italic" "contents" "_info")) nil [72192 72452])
-            ("org-odt-item" function (:arguments ("item" "contents" "info")) nil [72466 73039])
-            ("org-odt-keyword" function (:arguments ("keyword" "_contents" "info")) nil [73055 73867])
-            ("org-odt-latex-environment" function (:arguments ("latex-environment" "_contents" "info")) nil [74274 74617])
-            ("org-odt-latex-fragment" function (:arguments ("latex-fragment" "_contents" "_info")) nil [74808 75181])
-            ("org-odt-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [75201 75397])
-            ("org-odt--enumerate" function (:arguments ("element" "info" "predicate" "n")) nil [75443 76650])
-            ("org-odt-format-label" function (:arguments ("element" "info" "op")) nil [76652 79907])
-            ("org-odt--copy-image-file" function (:arguments ("path")) nil [79939 80649])
-            ("org-odt--image-size" function (:arguments ("file" "info" "user-width" "user-height" "scale" "dpi" "embed-as")) nil [80651 83012])
-            ("org-odt-link--inline-image" function (:arguments ("element" "info")) nil [83014 86085])
-            ("org-odt-link--inline-formula" function (:arguments ("element" "info")) nil [86116 88004])
-            ("org-odt--copy-formula-file" function (:arguments ("src-file")) nil [88006 89170])
-            ("org-odt--render-image/formula" function (:arguments ("cfg-key" "href" "width" "height" "captions" "user-frame-params" "title-and-desc")) nil [89186 93292])
-            ("org-odt--enumerable-p" function (:arguments ("element" "_info")) nil [93294 93474])
-            ("org-odt--enumerable-image-p" function (:arguments ("element" "info")) nil [93476 94060])
-            ("org-odt--enumerable-latex-image-p" function (:arguments ("element" "info")) nil [94062 94643])
-            ("org-odt--enumerable-formula-p" function (:arguments ("element" "info")) nil [94645 95077])
-            ("org-odt--standalone-link-p" function (:arguments ("element" "_info" "paragraph-predicate" "link-predicate")) nil [95079 96405])
-            ("org-odt-link--infer-description" function (:arguments ("destination" "info")) nil [96407 100330])
-            ("org-odt-link" function (:arguments ("link" "desc" "info")) nil [100332 105226])
-            ("org-odt-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [105249 105631])
-            ("org-odt--paragraph-style" function (:arguments ("paragraph")) nil [105649 106039])
-            ("org-odt--format-paragraph" function (:arguments ("paragraph" "contents" "info" "default" "center" "quote")) nil [106041 107003])
-            ("org-odt-paragraph" function (:arguments ("paragraph" "contents" "info")) nil [107005 107366])
-            ("org-odt-plain-list" function (:arguments ("plain-list" "contents" "_info")) nil [107386 108168])
-            ("org-odt--encode-tabs-and-spaces" function (:arguments ("line")) nil [108187 108412])
-            ("org-odt--encode-plain-text" function (:arguments ("text" "no-whitespace-filling")) nil [108414 108705])
-            ("org-odt-plain-text" function (:arguments ("text" "info")) nil [108707 109664])
-            ("org-odt-planning" function (:arguments ("planning" "contents" "info")) nil [109682 110693])
-            ("org-odt-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [110718 111061])
-            ("org-odt-quote-block" function (:arguments ("_quote-block" "contents" "_info")) nil [111082 111294])
-            ("org-odt-format-section" function (:arguments ("text" "style" "name")) nil [111311 111596])
-            ("org-odt-section" function (:arguments ("_section" "contents" "_info")) nil [111599 111809])
-            ("org-odt-radio-target" function (:arguments ("radio-target" "text" "info")) nil [111830 112087])
-            ("org-odt-special-block" function (:arguments ("special-block" "contents" "info")) nil [112110 113542])
-            ("org-odt-hfy-face-to-css" function (:arguments ("fn")) nil [113561 114943])
-            ("org-odt-htmlfontify-string" function (:arguments ("line")) nil [114945 115649])
-            ("org-odt-do-format-code" function (:arguments ("code" "info" "lang" "refs" "retain-labels" "num-start")) nil [115651 117512])
-            ("org-odt-format-code" function (:arguments ("element" "info")) nil [117514 118004])
-            ("org-odt-src-block" function (:arguments ("src-block" "_contents" "info")) nil [118006 118700])
-            ("org-odt-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [118727 119085])
-            ("org-odt-strike-through" function (:arguments ("_strike-through" "contents" "_info")) nil [119109 119406])
-            ("org-odt-subscript" function (:arguments ("_subscript" "contents" "_info")) nil [119425 119706])
-            ("org-odt-superscript" function (:arguments ("_superscript" "contents" "_info")) nil [119727 120016])
-            ("org-odt-table-style-spec" function (:arguments ("element" "info")) nil [120036 120316])
-            ("org-odt-get-table-cell-styles" function (:arguments ("table-cell" "info")) nil [120318 123082])
-            ("org-odt-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [123084 125562])
-            ("org-odt-table-row" function (:arguments ("table-row" "contents" "info")) nil [125581 126824])
-            ("org-odt-table-first-row-data-cells" function (:arguments ("table" "info")) nil [126839 127233])
-            ("org-odt--table" function (:arguments ("table" "contents" "info")) nil [127235 129178])
-            ("org-odt-table" function (:arguments ("table" "contents" "info")) nil [129180 134904])
-            ("org-odt-target" function (:arguments ("target" "_contents" "info")) nil [134920 135141])
-            ("org-odt-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [135160 136833])
-            ("org-odt-underline" function (:arguments ("_underline" "contents" "_info")) nil [136852 137125])
-            ("org-odt-verbatim" function (:arguments ("verbatim" "_contents" "_info")) nil [137143 137460])
-            ("org-odt-verse-block" function (:arguments ("_verse-block" "contents" "_info")) nil [137481 138003])
-            ("org-odt--translate-image-links" function (:arguments ("data" "_backend" "info")) nil [138033 138163])
-            ("org-odt--translate-latex-fragments" function (:arguments ("tree" "_backend" "info")) nil [138187 141998])
-            ("org-odt--translate-description-lists" function (:arguments ("tree" "_backend" "info")) nil [142142 143857])
-            ("org-odt--translate-list-tables" function (:arguments ("tree" "_backend" "info")) nil [145059 146652])
-            ("org-odt-create-manifest-file-entry" function (:arguments ("args")) nil [146683 146782])
-            ("org-odt-write-manifest-file" function nil nil [146784 147588])
-            ("org-odt--export-wrap" function (:arguments ("out-file" "body")) nil [147590 151929])
-            ("org-odt-export-as-odf" function
-               (:user-visible-flag t
-                :arguments ("latex-frag" "odf-file"))
-                nil [151984 153949])
-            ("org-odt-export-as-odf-and-open" function (:user-visible-flag t) nil [153966 154250])
-            ("org-odt-export-to-odt" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "ext-plist"))
-                nil [154302 156781])
-            ("org-odt-reachable-p" function (:arguments ("in-fmt" "out-fmt")) nil [156837 157180])
-            ("org-odt-do-convert" function (:arguments ("in-file" "out-fmt" "open")) nil [157182 158703])
-            ("org-odt-do-reachable-formats" function (:arguments ("in-fmt")) nil [158705 159531])
-            ("org-odt-reachable-formats" function (:arguments ("in-fmt")) nil [159533 159823])
-            ("org-odt-convert-read-params" function nil nil [159825 160472])
-            ("org-odt-convert" function
-               (:user-visible-flag t
-                :arguments ("in-file" "out-fmt" "open"))
-                nil [160489 161005])
-            ("dolist" code nil nil [161036 161230])
-            ("ox-odt" package nil nil [161232 161249]))          
-      :file "ox-odt.el"
-      :pointmax 161350
-      :fsize 161349
-      :lastmodtime '(23525 29593 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1212 1229])
-            ("ox-ascii" include nil nil [1230 1249])
-            ("declare-function" code nil nil [1250 1310])
-            ("org-export-icalendar" customgroup (:user-visible-flag t) nil [1348 1486])
-            ("org-icalendar-combined-agenda-file" variable (:default-value "~/org.ics") nil [1488 1814])
-            ("org-icalendar-alarm-time" variable nil nil [1816 2244])
-            ("org-icalendar-combined-name" variable (:default-value "OrgMode") nil [2246 2418])
-            ("org-icalendar-combined-description" variable nil nil [2420 2588])
-            ("org-icalendar-exclude-tags" variable nil nil [2590 2881])
-            ("org-icalendar-use-deadline" variable (:default-value (quote (event-if-not-todo todo-due))) nil [2883 3619])
-            ("org-icalendar-use-scheduled" variable (:default-value (quote (todo-start))) nil [3621 4514])
-            ("org-icalendar-categories" variable (:default-value (quote (local-tags category))) nil [4516 5177])
-            ("org-icalendar-with-timestamps" variable (:default-value (quote active)) nil [5179 5787])
-            ("org-icalendar-include-todo" variable nil nil [5789 6383])
-            ("org-icalendar-include-bbdb-anniversaries" variable nil nil [6385 6615])
-            ("org-icalendar-include-sexps" variable (:default-value t) nil [6617 6848])
-            ("org-icalendar-include-body" variable (:default-value t) nil [6850 7291])
-            ("org-icalendar-store-UID" variable nil nil [7293 8017])
-            ("org-icalendar-timezone" variable (:default-value (getenv "TZ")) nil [8019 8293])
-            ("org-icalendar-date-time-format" variable (:default-value ":%Y%m%dT%H%M%S") nil [8295 8980])
-            ("org-icalendar-after-save-hook" variable nil nil [8982 9230])
-            ("org-export-define-derived-backend" code nil nil [9256 10913])
-            ("org-icalendar-create-uid" function (:arguments ("file" "bell")) nil [10942 11505])
-            ("org-icalendar-blocked-headline-p" function (:arguments ("headline" "info")) nil [11507 12706])
-            ("org-icalendar-use-UTC-date-time-p" function nil nil [12708 12926])
-            ("org-agenda-default-appointment-duration" variable nil nil [12928 12976])
-            ("org-icalendar-convert-timestamp" function (:arguments ("timestamp" "keyword" "end" "tz")) nil [12999 15699])
-            ("org-icalendar-dtstamp" function nil nil [15701 15829])
-            ("org-icalendar-get-categories" function (:arguments ("entry" "info")) nil [15831 16613])
-            ("org-icalendar-transcode-diary-sexp" function (:arguments ("sexp" "uid" "summary")) nil [16615 17208])
-            ("org-icalendar-cleanup-string" function (:arguments ("s")) nil [17210 17521])
-            ("org-icalendar-fold-string" function (:arguments ("s")) nil [17523 18349])
-            ("org-icalendar-clear-blank-lines" function (:arguments ("headline" "_back-end" "_info")) nil [18367 18626])
-            ("org-icalendar-entry" function (:arguments ("entry" "contents" "info")) nil [19059 24386])
-            ("org-icalendar--vevent" function (:arguments ("entry" "timestamp" "uid" "summary" "location" "description" "categories" "timezone")) nil [24388 26094])
-            ("org-icalendar--vtodo" function (:arguments ("entry" "uid" "summary" "location" "description" "categories" "timezone")) nil [26096 28136])
-            ("org-icalendar--valarm" function (:arguments ("entry" "timestamp" "summary")) nil [28138 29157])
-            ("org-icalendar-template" function (:arguments ("contents" "info")) nil [29175 29904])
-            ("org-icalendar--vcalendar" function (:arguments ("name" "owner" "tz" "description" "contents")) nil [29906 30557])
-            ("org-icalendar-export-to-ics" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only"))
-                nil [30604 31978])
-            ("org-icalendar-export-agenda-files" function
-               (:user-visible-flag t
-                :arguments ("async"))
-                nil [31995 33123])
-            ("org-icalendar-combine-agenda-files" function
-               (:user-visible-flag t
-                :arguments ("async"))
-                nil [33140 33888])
-            ("org-icalendar-export-current-agenda" function (:arguments ("file")) nil [33890 35139])
-            ("org-icalendar--combine-files" function (:arguments ("files")) nil [35141 36675])
-            ("ox-icalendar" package nil nil [36678 36701]))          
-      :file "ox-icalendar.el"
-      :pointmax 36808
-      :fsize 36807
-      :lastmodtime '(23525 29593 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [984 1001])
-            ("ox" include nil nil [1002 1015])
-            ("ox-publish" include nil nil [1016 1037])
-            ("org-latex-default-packages-alist" variable nil nil [1039 1080])
-            ("org-latex-packages-alist" variable nil nil [1081 1114])
-            ("orgtbl-exp-regexp" variable nil nil [1115 1141])
-            ("org-export-define-backend" code nil nil [1167 6856])
-            ("org-latex-babel-language-alist" variable
-               (:constant-flag t
-                :default-value (quote (("af" . "afrikaans") ("bg" . "bulgarian") ("bt-br" . "brazilian") ("ca" . "catalan") ("cs" . "czech") ("cy" . "welsh") ("da" . "danish") ("de" . "germanb") ("de-at" . "naustrian") ("de-de" . "ngerman") ("el" . "greek") ("en" . "english") ("en-au" . "australian") ("en-ca" . "canadian") ("en-gb" . "british") ("en-ie" . "irish") ("en-nz" . "newzealand") ("en-us" . "american") ("es" . "spanish") ("et" . "estonian") ("eu" . "basque") ("fi" . "finnish") ("fr" . "frenchb") ("fr-ca" . "canadien") ("gl" . "galician") ("hr" . "croatian") ("hu" . "hungarian") ("id" . "indonesian") ("is" . "icelandic") ("it" . "italian") ("la" . "latin") ("ms" . "malay") ("nl" . "dutch") ("nb" . "norsk") ("nn" . "nynorsk") ("no" . "norsk") ("pl" . "polish") ("pt" . "portuguese") ("ro" . "romanian") ("ru" . "russian") ("sa" . "sanskrit") ("sb" . "uppersorbian") ("sk" . "slovak") ("sl" . "slovene") ("sq" . "albanian") ("sr" . "serbian") ("sv" . "swedish") ("ta" . "tamil") ("tr" . "turkish") ("uk" . "ukrainian"))))
-                nil [6885 8187])
-            ("org-latex-polyglossia-language-alist" variable
-               (:constant-flag t
-                :default-value (quote (("am" "amharic") ("ast" "asturian") ("ar" "arabic") ("bo" "tibetan") ("bn" "bengali") ("bg" "bulgarian") ("br" "breton") ("bt-br" "brazilian") ("ca" "catalan") ("cop" "coptic") ("cs" "czech") ("cy" "welsh") ("da" "danish") ("de" "german" "german") ("de-at" "german" "austrian") ("de-de" "german" "german") ("dv" "divehi") ("el" "greek") ("en" "english" "usmax") ("en-au" "english" "australian") ("en-gb" "english" "uk") ("en-nz" "english" "newzealand") ("en-us" "english" "usmax") ("eo" "esperanto") ("es" "spanish") ("et" "estonian") ("eu" "basque") ("fa" "farsi") ("fi" "finnish") ("fr" "french") ("fu" "friulan") ("ga" "irish") ("gd" "scottish") ("gl" "galician") ("he" "hebrew") ("hi" "hindi") ("hr" "croatian") ("hu" "magyar") ("hy" "armenian") ("id" "bahasai") ("ia" "interlingua") ("is" "icelandic") ("it" "italian") ("kn" "kannada") ("la" "latin" "modern") ("la-modern" "latin" "modern") ("la-classic" "latin" "classic") ("la-medieval" "latin" "medieval") ("lo" "lao") ("lt" "lithuanian") ("lv" "latvian") ("mr" "maranthi") ("ml" "malayalam") ("nl" "dutch") ("nb" "norsk") ("nn" "nynorsk") ("nko" "nko") ("no" "norsk") ("oc" "occitan") ("pl" "polish") ("pms" "piedmontese") ("pt" "portuges") ("rm" "romansh") ("ro" "romanian") ("ru" "russian") ("sa" "sanskrit") ("hsb" "usorbian") ("dsb" "lsorbian") ("sk" "slovak") ("sl" "slovenian") ("se" "samin") ("sq" "albanian") ("sr" "serbian") ("sv" "swedish") ("syr" "syriac") ("ta" "tamil") ("te" "telugu") ("th" "thai") ("tk" "turkmen") ("tr" "turkish") ("uk" "ukrainian") ("ur" "urdu") ("vi" "vietnamese"))))
-                nil [8189 10197])
-            ("org-latex-table-matrix-macros" variable
-               (:constant-flag t
-                :default-value (quote (("bordermatrix" . "\\cr") ("qbordermatrix" . "\\cr") ("kbordermatrix" . "\\\\"))))
-                nil [10201 10392])
-            ("org-latex-math-environments-re" variable
-               (:constant-flag t
-                :default-value (format "\\`[ 	]*\\\\begin{%s\\*?}" (regexp-opt (quote ("equation" "eqnarray" "math" "displaymath" "align" "gather" "multline" "flalign" "alignat" "xalignat" "xxalignat" "subequations" "dmath" "dseries" "dgroup" "darray" "empheq")))))
-                nil [10394 10777])
-            ("org-export-latex" customgroup (:user-visible-flag t) nil [10814 10943])
-            ("org-latex-caption-above" variable (:default-value (quote (table))) nil [10959 11653])
-            ("org-latex-prefer-user-labels" variable nil nil [11655 13648])
-            ("org-latex-default-class" variable (:default-value "article") nil [13665 13803])
-            ("org-latex-classes" variable (:default-value (quote (("article" "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report" "\\documentclass[11pt]{report}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("book" "\\documentclass[11pt]{book}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))) nil [13805 18808])
-            ("org-latex-inputenc-alist" variable nil nil [18810 19213])
-            ("org-latex-title-command" variable (:default-value "\\maketitle") nil [19215 19854])
-            ("org-latex-subtitle-format" variable (:default-value "\\\\\\medskip
-\\large %s") nil [19856 20185])
-            ("org-latex-subtitle-separate" variable nil nil [20187 20390])
-            ("org-latex-toc-command" variable (:default-value "\\tableofcontents
-
-") nil [20392 20691])
-            ("org-latex-hyperref-template" variable (:default-value "\\hypersetup{
- pdfauthor={%a},
- pdftitle={%t},
- pdfkeywords={%k},
- pdfsubject={%d},
- pdfcreator={%c}, 
- pdflang={%L}}
-") nil [20693 21593])
-            ("org-latex-format-headline-function" variable (:default-value (quote org-latex-format-headline-default-function)) nil [21610 22241])
-            ("org-latex-footnote-separator" variable (:default-value "\\textsuperscript{,}\\,") nil [22260 22406])
-            ("org-latex-footnote-defined-format" variable (:default-value "\\textsuperscript{\\ref{%s}}") nil [22408 22897])
-            ("org-latex-active-timestamp-format" variable (:default-value "\\textit{%s}") nil [22916 23082])
-            ("org-latex-inactive-timestamp-format" variable (:default-value "\\textit{%s}") nil [23084 23254])
-            ("org-latex-diary-timestamp-format" variable (:default-value "\\textit{%s}") nil [23256 23420])
-            ("org-latex-images-centered" variable (:default-value t) nil [23435 23628])
-            ("org-latex-image-default-option" variable nil nil [23630 23801])
-            ("org-latex-image-default-width" variable (:default-value ".9\\linewidth") nil [23803 24038])
-            ("org-latex-image-default-height" variable nil nil [24040 24341])
-            ("org-latex-default-figure-position" variable (:default-value "htbp") nil [24343 24548])
-            ("org-latex-inline-image-rules" variable (:default-value (\` (("file" \, (regexp-opt (quote ("pdf" "jpeg" "jpg" "png" "ps" "eps" "tikz" "pgf" "svg"))))))) nil [24550 25337])
-            ("org-latex-link-with-unknown-path-format" variable (:default-value "\\texttt{%s}") nil [25339 25500])
-            ("org-latex-default-table-environment" variable (:default-value "tabular") nil [25516 25714])
-            ("org-latex-default-table-mode" variable (:default-value (quote table)) nil [25716 26749])
-            ("org-latex-tables-centered" variable (:default-value t) nil [26751 26916])
-            ("org-latex-tables-booktabs" variable nil nil [26918 27335])
-            ("org-latex-table-scientific-notation" variable (:default-value "%s\\,(%s)") nil [27337 27757])
-            ("org-latex-text-markup-alist" variable (:default-value (quote ((bold . "\\textbf{%s}") (code . protectedtexttt) (italic . "\\emph{%s}") (strike-through . "\\sout{%s}") (underline . "\\uline{%s}") (verbatim . protectedtexttt)))) nil [27777 28771])
-            ("org-latex-format-drawer-function" variable (:default-value (lambda (_ contents) contents)) nil [28788 29257])
-            ("org-latex-format-inlinetask-function" variable (:default-value (quote org-latex-format-inlinetask-default-function)) nil [29278 29979])
-            ("org-latex-listings" variable nil nil [29997 31551])
-            ("org-latex-listings-langs" variable (:default-value (quote ((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp") (c "C") (cc "C++") (fortran "fortran") (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby") (html "HTML") (xml "XML") (tex "TeX") (latex "[LaTeX]TeX") (shell-script "bash") (gnuplot "Gnuplot") (ocaml "Caml") (caml "Caml") (sql "SQL") (sqlite "sql") (makefile "make") (R "r")))) nil [31553 32532])
-            ("org-latex-listings-options" variable nil nil [32534 33452])
-            ("org-latex-minted-langs" variable (:default-value (quote ((emacs-lisp "common-lisp") (cc "c++") (cperl "perl") (shell-script "bash") (caml "ocaml")))) nil [33454 34257])
-            ("org-latex-minted-options" variable nil nil [34259 35157])
-            ("org-latex-custom-lang-environments" variable nil nil [35159 36646])
-            ("org-latex-compiler-file-string" variable (:default-value "%% Intended LaTeX compiler: %s
-") nil [36667 37160])
-            ("org-latex-compiler" variable (:default-value "pdflatex") nil [37162 37625])
-            ("org-latex-compilers" variable
-               (:constant-flag t
-                :default-value (quote ("pdflatex" "xelatex" "lualatex")))
-                nil [37627 37750])
-            ("org-latex-bib-compiler" variable (:default-value "bibtex") nil [37752 38180])
-            ("org-latex-pdf-process" variable (:default-value (quote ("%latex -interaction nonstopmode -output-directory %o %f" "%latex -interaction nonstopmode -output-directory %o %f" "%latex -interaction nonstopmode -output-directory %o %f"))) nil [38182 40463])
-            ("org-latex-logfiles-extensions" variable (:default-value (quote ("aux" "bcf" "blg" "fdb_latexmk" "fls" "figlist" "idx" "log" "nav" "out" "ptc" "run.xml" "snm" "toc" "vrb" "xdv"))) nil [40465 40885])
-            ("org-latex-remove-logfiles" variable (:default-value t) nil [40887 41220])
-            ("org-latex-known-warnings" variable (:default-value (quote (("Reference.*?undefined" . "[undefined reference]") ("Runaway argument" . "[runaway argument]") ("Underfull \\hbox" . "[underfull hbox]") ("Overfull \\hbox" . "[overfull hbox]") ("Citation.*?undefined" . "[undefined citation]") ("Undefined control sequence" . "[undefined control sequence]")))) nil [41222 41962])
-            ("org-latex--caption-above-p" function (:arguments ("element" "info")) nil [41991 42336])
-            ("org-latex--label" function (:arguments ("datum" "info" "force" "full")) nil [42338 43555])
-            ("org-latex--caption/label-string" function (:arguments ("element" "info")) nil [43557 45131])
-            ("org-latex-guess-inputenc" function (:arguments ("header")) nil [45133 45836])
-            ("org-latex-guess-babel-language" function (:arguments ("header" "info")) nil [45838 47254])
-            ("org-latex-guess-polyglossia-language" function (:arguments ("header" "info")) nil [47256 48996])
-            ("org-latex--remove-packages" function (:arguments ("pkg-alist" "info")) nil [48998 49715])
-            ("org-latex--find-verb-separator" function (:arguments ("s")) nil [49717 50096])
-            ("org-latex--make-option-string" function (:arguments ("options")) nil [50098 50515])
-            ("org-latex--wrap-label" function (:arguments ("element" "output" "info")) nil [50517 50968])
-            ("org-latex--protect-text" function (:arguments ("text")) nil [50970 51129])
-            ("org-latex--text-markup" function (:arguments ("text" "markup" "info")) nil [51131 52277])
-            ("org-latex--delayed-footnotes-definitions" function (:arguments ("element" "info")) nil [52279 53600])
-            ("org-latex--translate" function (:arguments ("s" "info")) nil [53602 53783])
-            ("org-latex--format-spec" function (:arguments ("info")) nil [53785 54644])
-            ("org-latex--insert-compiler" function (:arguments ("info")) nil [54646 55007])
-            ("org-latex-matrices-tree-filter" function (:arguments ("tree" "_backend" "info")) nil [55024 55128])
-            ("org-latex-math-block-tree-filter" function (:arguments ("tree" "_backend" "info")) nil [55130 55238])
-            ("org-latex-math-block-options-filter" function (:arguments ("info" "_backend")) nil [55240 55442])
-            ("org-latex-clean-invalid-line-breaks" function (:arguments ("data" "_backend" "_info")) nil [55444 55609])
-            ("org-latex-make-preamble" function (:arguments ("info" "template" "snippet?")) nil [55642 57067])
-            ("org-latex-template" function (:arguments ("contents" "info")) nil [57069 59964])
-            ("org-latex-bold" function (:arguments ("_bold" "contents" "info")) nil [60005 60222])
-            ("org-latex-center-block" function (:arguments ("center-block" "contents" "info")) nil [60244 60557])
-            ("org-latex-clock" function (:arguments ("clock" "_contents" "info")) nil [60572 61051])
-            ("org-latex-code" function (:arguments ("code" "_contents" "info")) nil [61065 61296])
-            ("org-latex-drawer" function (:arguments ("drawer" "contents" "info")) nil [61312 61695])
-            ("org-latex-dynamic-block" function (:arguments ("dynamic-block" "contents" "info")) nil [61718 62005])
-            ("org-latex-entity" function (:arguments ("entity" "_contents" "_info")) nil [62021 62244])
-            ("org-latex-example-block" function (:arguments ("example-block" "_contents" "info")) nil [62267 62852])
-            ("org-latex-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [62874 63206])
-            ("org-latex-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [63230 63532])
-            ("org-latex-fixed-width" function (:arguments ("fixed-width" "_contents" "info")) nil [63553 63908])
-            ("org-latex-footnote-reference" function (:arguments ("footnote-reference" "_contents" "info")) nil [63936 65862])
-            ("org-latex-headline" function (:arguments ("headline" "contents" "info")) nil [65880 71298])
-            ("org-latex-format-headline-default-function" function (:arguments ("todo" "_todo-type" "priority" "text" "tags" "_info")) nil [71300 71725])
-            ("org-latex-horizontal-rule" function (:arguments ("horizontal-rule" "_contents" "info")) nil [71750 72573])
-            ("org-latex-inline-src-block" function (:arguments ("inline-src-block" "_contents" "info")) nil [72599 74065])
-            ("org-latex-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [74085 74964])
-            ("org-latex-format-inlinetask-default-function" function (:arguments ("todo" "_todo-type" "priority" "title" "tags" "contents" "_info")) nil [74966 75718])
-            ("org-latex-italic" function (:arguments ("_italic" "contents" "info")) nil [75734 75961])
-            ("org-latex-item" function (:arguments ("item" "contents" "info")) nil [75975 78177])
-            ("org-latex-keyword" function (:arguments ("keyword" "_contents" "info")) nil [78194 79558])
-            ("org-latex--environment-type" function (:arguments ("latex-environment")) nil [79585 80471])
-            ("org-latex-latex-environment" function (:arguments ("latex-environment" "_contents" "info")) nil [80473 81685])
-            ("org-latex-latex-fragment" function (:arguments ("latex-fragment" "_contents" "_info")) nil [81708 82206])
-            ("org-latex-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [82226 82414])
-            ("org-latex-image-link-filter" function (:arguments ("data" "_backend" "info")) nil [82428 82557])
-            ("org-latex--inline-image" function (:arguments ("link" "info")) nil [82559 87898])
-            ("org-latex-link" function (:arguments ("link" "desc" "info")) nil [87900 91135])
-            ("org-latex-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [91158 91530])
-            ("org-latex-paragraph" function (:arguments ("_paragraph" "contents" "_info")) nil [91549 91776])
-            ("org-latex-plain-list" function (:arguments ("plain-list" "contents" "info")) nil [91796 92505])
-            ("org-latex-plain-text" function (:arguments ("text" "info")) nil [92525 93965])
-            ("org-latex-planning" function (:arguments ("planning" "_contents" "info")) nil [93983 94993])
-            ("org-latex-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [95018 95335])
-            ("org-latex--wrap-latex-matrices" function (:arguments ("data" "info")) nil [95516 97651])
-            ("org-latex-matrices" function (:arguments ("matrices" "contents" "_info")) nil [97653 98004])
-            ("org-latex--wrap-latex-math-block" function (:arguments ("data" "info")) nil [98123 100300])
-            ("org-latex-math-block" function (:arguments ("_math-block" "contents" "_info")) nil [100302 100564])
-            ("org-latex-quote-block" function (:arguments ("quote-block" "contents" "info")) nil [100584 100884])
-            ("org-latex-radio-target" function (:arguments ("radio-target" "text" "info")) nil [100906 101174])
-            ("org-latex-section" function (:arguments ("_section" "contents" "_info")) nil [101191 101397])
-            ("org-latex-special-block" function (:arguments ("special-block" "contents" "info")) nil [101420 102068])
-            ("org-latex-src-block" function (:arguments ("src-block" "_contents" "info")) nil [102087 108523])
-            ("org-latex-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [108550 108843])
-            ("org-latex-strike-through" function (:arguments ("_strike-through" "contents" "info")) nil [108867 109134])
-            ("org-latex--script-size" function (:arguments ("object" "info")) nil [109153 110414])
-            ("org-latex-subscript" function (:arguments ("subscript" "_contents" "info")) nil [110416 110653])
-            ("org-latex-superscript" function (:arguments ("superscript" "_contents" "info")) nil [110674 110919])
-            ("org-latex-table" function (:arguments ("table" "contents" "info")) nil [111351 112488])
-            ("org-latex--align-string" function (:arguments ("table" "info" "math?")) nil [112490 113596])
-            ("org-latex--org-table" function (:arguments ("table" "contents" "info")) nil [113598 117648])
-            ("org-latex--table.el-table" function (:arguments ("table" "info")) nil [117650 119189])
-            ("org-latex--math-table" function (:arguments ("table" "info")) nil [119191 120626])
-            ("org-latex-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [120646 121257])
-            ("org-latex-table-row" function (:arguments ("table-row" "contents" "info")) nil [121276 123494])
-            ("org-latex-target" function (:arguments ("target" "_contents" "info")) nil [123510 123729])
-            ("org-latex-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [123748 124269])
-            ("org-latex-underline" function (:arguments ("_underline" "contents" "info")) nil [124288 124530])
-            ("org-latex-verbatim" function (:arguments ("verbatim" "_contents" "info")) nil [124548 124802])
-            ("org-latex-verse-block" function (:arguments ("verse-block" "contents" "info")) nil [124823 125622])
-            ("org-latex-export-as-latex" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [125666 126872])
-            ("org-latex-convert-region-to-latex" function (:user-visible-flag t) nil [126889 127206])
-            ("org-latex-export-to-latex" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [127223 128314])
-            ("org-latex-export-to-pdf" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [128331 129513])
-            ("org-latex-compile" function (:arguments ("texfile" "snippet")) nil [129515 131771])
-            ("org-latex--collect-warnings" function (:arguments ("buffer")) nil [131773 132495])
-            ("org-latex-publish-to-latex" function (:arguments ("plist" "filename" "pub-dir")) nil [132512 132839])
-            ("org-latex-publish-to-pdf" function (:arguments ("plist" "filename" "pub-dir")) nil [132856 133689])
-            ("ox-latex" package nil nil [133692 133711]))          
-      :file "ox-latex.el"
-      :pointmax 133814
-      :fsize 133813
-      :lastmodtime '(23525 29593 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1079 1096])
-            ("ox-html" include nil nil [1097 1115])
-            ("ox-publish" include nil nil [1116 1137])
-            ("org-export-md" customgroup (:user-visible-flag t) nil [1174 1347])
-            ("org-md-headline-style" variable (:default-value (quote atx)) nil [1349 1605])
-            ("org-md-footnotes-section" variable (:default-value "%s%s") nil [1624 1943])
-            ("org-md-footnote-format" variable (:default-value "<sup>%s</sup>") nil [1945 2191])
-            ("org-export-define-derived-backend" code nil nil [2216 3830])
-            ("org-md-separate-elements" function (:arguments ("tree" "_backend" "info")) nil [3847 4875])
-            ("org-md-bold" function (:arguments ("_bold" "contents" "_info")) nil [4916 5126])
-            ("org-md-verbatim" function (:arguments ("verbatim" "_contents" "_info")) nil [5153 5559])
-            ("org-md-example-block" function (:arguments ("example-block" "_contents" "info")) nil [5610 5921])
-            ("org-md-export-block" function (:arguments ("export-block" "contents" "info")) nil [5923 6358])
-            ("org-md-headline" function (:arguments ("headline" "contents" "info")) nil [6376 8327])
-            ("org-md--headline-referred-p" function (:arguments ("headline" "info")) nil [8330 9893])
-            ("org-md--headline-title" function (:arguments ("style" "level" "title" "anchor" "tags")) nil [9895 10744])
-            ("org-md-horizontal-rule" function (:arguments ("_horizontal-rule" "_contents" "_info")) nil [10768 10993])
-            ("org-md-italic" function (:arguments ("_italic" "contents" "_info")) nil [11009 11225])
-            ("org-md-item" function (:arguments ("item" "contents" "info")) nil [11239 12169])
-            ("org-md-keyword" function (:arguments ("keyword" "contents" "info")) nil [12187 12923])
-            ("org-md-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [12943 13128])
-            ("org-md-link" function (:arguments ("link" "contents" "info")) nil [13142 16148])
-            ("org-md-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [16171 16543])
-            ("org-md-paragraph" function (:arguments ("paragraph" "contents" "_info")) nil [16562 16978])
-            ("org-md-plain-list" function (:arguments ("_plain-list" "contents" "_info")) nil [16998 17205])
-            ("org-md-plain-text" function (:arguments ("text" "info")) nil [17225 18309])
-            ("org-md-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [18334 18641])
-            ("org-md-quote-block" function (:arguments ("_quote-block" "contents" "_info")) nil [18662 18953])
-            ("org-md-section" function (:arguments ("_section" "contents" "_info")) nil [18970 19165])
-            ("org-md--build-toc" function (:arguments ("info" "n" "keyword" "local")) nil [19183 20820])
-            ("org-md--footnote-formatted" function (:arguments ("footnote" "info")) nil [20822 21388])
-            ("org-md--footnote-section" function (:arguments ("info")) nil [21390 22134])
-            ("org-md-inner-template" function (:arguments ("contents" "info")) nil [22136 22722])
-            ("org-md-template" function (:arguments ("contents" "_info")) nil [22724 22932])
-            ("org-md-export-as-markdown" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only"))
-                nil [22978 23879])
-            ("org-md-convert-region-to-md" function (:user-visible-flag t) nil [23896 24209])
-            ("org-md-export-to-markdown" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only"))
-                nil [24227 25033])
-            ("org-md-publish-to-md" function (:arguments ("plist" "filename" "pub-dir")) nil [25050 25370])
-            ("ox-md" package nil nil [25372 25388]))          
-      :file "ox-md.el"
-      :pointmax 25488
-      :fsize 25487
-      :lastmodtime '(23525 29593 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1126 1143])
-            ("org" include nil nil [1144 1158])
-            ("declare-function" code nil nil [1160 1220])
-            ("declare-function" code nil nil [1221 1291])
-            ("declare-function" code nil nil [1292 1364])
-            ("declare-function" code nil nil [1365 1424])
-            ("declare-function" code nil nil [1425 1479])
-            ("org-frame-title-format-backup" variable (:default-value frame-title-format) nil [1481 1538])
-            ("org-time-stamp-formats" variable nil nil [1539 1570])
-            ("org-clock" customgroup (:user-visible-flag t) nil [1573 1697])
-            ("org-clock-into-drawer" variable (:default-value t) nil [1699 2639])
-            ("org-clock-into-drawer" function nil nil [2641 3346])
-            ("org-clock-out-when-done" variable (:default-value t) nil [3348 3911])
-            ("org-clock-rounding-minutes" variable nil nil [3913 4657])
-            ("org-clock-out-remove-zero-time-clocks" variable nil nil [4659 4822])
-            ("org-clock-in-switch-to-state" variable nil nil [4824 5276])
-            ("org-clock-out-switch-to-state" variable nil nil [5278 5732])
-            ("org-clock-history-length" variable (:default-value 5) nil [5734 5859])
-            ("org-clock-goto-may-find-recent-task" variable (:default-value t) nil [5861 6024])
-            ("org-clock-heading-function" variable nil nil [6026 6334])
-            ("org-clock-string-limit" variable nil nil [6336 6482])
-            ("org-clock-in-resume" variable nil nil [6484 6740])
-            ("org-clock-persist" variable nil nil [6742 7555])
-            ("org-clock-persist-file" variable (:default-value (convert-standard-filename (concat user-emacs-directory "org-clock-save.el"))) nil [7557 7744])
-            ("org-clock-persist-query-save" variable nil nil [7746 7890])
-            ("org-clock-persist-query-resume" variable (:default-value t) nil [7892 8041])
-            ("org-clock-sound" variable nil nil [8043 8378])
-            ("org-clock-mode-line-total" variable (:default-value (quote auto)) nil [8380 9125])
-            ("defvaralias" code nil nil [9127 9192])
-            ("org-clock-task-overrun-text" variable nil nil [9193 9699])
-            ("org-show-notification-handler" variable nil nil [9701 9988])
-            ("org-clocktable" customgroup (:user-visible-flag t) nil [9990 10116])
-            ("org-clocktable-defaults" variable (:default-value (list :maxlevel 2 :lang (or (bound-and-true-p org-export-default-language) "en") :scope (quote file) :block nil :wstart 1 :mstart 1 :tstart nil :tend nil :step nil :stepskip0 nil :fileskip0 nil :tags nil :emphasize nil :link nil :narrow (quote 40!) :indent t :formula nil :timestamp nil :level nil :tcolumns nil :formatter nil)) nil [10118 10626])
-            ("org-clock-clocktable-formatter" variable (:default-value (quote org-clocktable-write-default)) nil [10628 10868])
-            ("org-clock-clocktable-language-setup" variable (:default-value (quote (("en" "File" "L" "Timestamp" "Headline" "Time" "ALL" "Total time" "File time" "Clock summary at") ("es" "Archivo" "N" "Fecha y hora" "Tarea" "Tiempo" "TODO" "Tiempo total" "Tiempo archivo" "Clock summary at") ("fr" "Fichier" "N" "Horodatage" "En-tête" "Durée" "TOUT" "Durée totale" "Durée fichier" "Horodatage sommaire à") ("nl" "Bestand" "N" "Tijdstip" "Hoofding" "Duur" "ALLES" "Totale duur" "Bestandstijd" "Clock summary at") ("de" "Datei" "E" "Zeitstempel" "Kopfzeile" "Dauer" "GESAMT" "Gesamtdauer" "Dateizeit" "Erstellt am")))) nil [10931 11686])
-            ("org-clock-clocktable-default-properties" variable (:default-value (quote (:maxlevel 2 :scope file))) nil [11688 11939])
-            ("org-clock-idle-time" variable nil nil [11941 12157])
-            ("org-clock-auto-clock-resolution" variable (:default-value (quote when-no-clock-is-running)) nil [12159 12457])
-            ("org-clock-report-include-clocking-task" variable nil nil [12459 12643])
-            ("org-clock-resolve-expert" variable nil nil [12645 12813])
-            ("org-clock-continuously" variable nil nil [12815 12982])
-            ("org-clock-total-time-cell-format" variable (:default-value "*%s*") nil [12984 13133])
-            ("org-clock-file-time-cell-format" variable (:default-value "*%s*") nil [13135 13282])
-            ("org-clock-clocked-in-display" variable (:default-value (quote mode-line)) nil [13284 13844])
-            ("org-clock-frame-title-format" variable (:default-value (quote (t org-mode-line-string))) nil [13846 14318])
-            ("org-clock-x11idle-program-name" variable (:default-value "x11idle") nil [14320 14693])
-            ("org-clock-goto-before-context" variable (:default-value 2) nil [14695 14894])
-            ("org-clock-display-default-range" variable (:default-value (quote thisyear)) nil [14896 15435])
-            ("org-clock-in-prepare-hook" variable nil nil [15437 15657])
-            ("org-clock-in-hook" variable nil nil [15658 15726])
-            ("org-clock-out-hook" variable nil nil [15727 15804])
-            ("org-clock-cancel-hook" variable nil nil [15806 15887])
-            ("org-clock-goto-hook" variable nil nil [15888 15980])
-            ("org-clock-has-been-used" variable nil nil [15981 16079])
-            ("org-clock-stored-history" variable nil nil [16081 16167])
-            ("org-clock-stored-resume-clock" variable nil nil [16168 16257])
-            ("org-mode-line-string" variable nil nil [16299 16331])
-            ("put" code nil nil [16332 16383])
-            ("org-clock-mode-line-timer" variable nil nil [16385 16423])
-            ("org-clock-idle-timer" variable nil nil [16424 16457])
-            ("org-clock-heading" variable nil nil [16458 16484])
-            ("org-clock-start-time" variable nil nil [16505 16537])
-            ("org-clock-leftover-time" variable nil nil [16539 16650])
-            ("org-clock-effort" variable nil nil [16652 16732])
-            ("org-clock-total-time" variable nil nil [16734 16896])
-            ("org-clock-history" variable nil nil [16898 16981])
-            ("org-clock-default-task" variable (:default-value (make-marker)) nil [16983 17177])
-            ("org-clock-interrupted-task" variable (:default-value (make-marker)) nil [17179 17308])
-            ("org-clock-mode-line-map" variable (:default-value (make-sparse-keymap)) nil [17310 17363])
-            ("define-key" code nil nil [17364 17436])
-            ("define-key" code nil nil [17437 17509])
-            ("org-clock--translate" function (:arguments ("s" "language")) nil [17511 17926])
-            ("org-clock--mode-line-heading" function nil nil [17928 18284])
-            ("org-clock-menu" function nil nil [18286 18603])
-            ("org-clock-history-push" function (:arguments ("pos" "buffer")) nil [18605 19334])
-            ("org-clock-save-markers-for-cut-and-paste" function (:arguments ("beg" "end")) nil [19336 19758])
-            ("org-clock-drawer-name" function nil nil [19760 20064])
-            ("org-clocking-buffer" function nil nil [20066 20206])
-            ("org-clocking-p" function nil nil [20208 20310])
-            ("org-clock-before-select-task-hook" variable nil nil [20312 20424])
-            ("org-clock-select-task" function (:arguments ("prompt")) nil [20426 22487])
-            ("org-clock-insert-selection-line" function (:arguments ("i" "marker")) nil [22489 23294])
-            ("org-clock-task-overrun" variable nil nil [23296 23403])
-            ("org-clock-update-period" variable (:default-value 60) nil [23404 23501])
-            ("org-clock-get-clock-string" function nil nil [23503 24467])
-            ("org-clock-get-last-clock-out-time" function nil nil [24469 24792])
-            ("org-clock-update-mode-line" function (:arguments ("refresh")) nil [24794 25928])
-            ("org-clock-get-clocked-time" function nil nil [25930 26275])
-            ("org-clock-modify-effort-estimate" function
-               (:user-visible-flag t
-                :arguments ("value"))
-                nil [26277 27845])
-            ("org-clock-notification-was-shown" variable nil nil [27847 27941])
-            ("org-clock-notify-once-if-expired" function nil nil [27943 28706])
-            ("org-notify" function (:arguments ("notification" "play-sound")) nil [28708 28957])
-            ("org-show-notification" function (:arguments ("notification")) nil [28959 29824])
-            ("org-clock-play-sound" function (:arguments ("clock-sound")) nil [29826 30483])
-            ("org-clock-mode-line-entry" variable nil nil [30485 30582])
-            ("org-find-open-clocks" function (:arguments ("file")) nil [30584 31064])
-            ("org-is-active-clock" function (:arguments ("clock")) nil [31066 31227])
-            ("org-with-clock-position" function (:arguments ("clock" "forms")) nil [31229 31495])
-            ("def-edebug-spec" code nil nil [31496 31549])
-            ("put" code nil nil [31550 31604])
-            ("org-with-clock" function (:arguments ("clock" "forms")) nil [31606 32084])
-            ("def-edebug-spec" code nil nil [32085 32129])
-            ("put" code nil nil [32130 32175])
-            ("org-clock-clock-in" function (:arguments ("clock" "resume" "start-time")) nil [32177 32477])
-            ("org-clock-clock-out" function (:arguments ("clock" "fail-quietly" "at-time")) nil [32479 32852])
-            ("org-clock-clock-cancel" function (:arguments ("clock")) nil [32854 33149])
-            ("org-clock-clocking-in" variable nil nil [33151 33185])
-            ("org-clock-resolving-clocks" variable nil nil [33186 33225])
-            ("org-clock-resolving-clocks-due-to-idleness" variable nil nil [33226 33281])
-            ("org-clock-resolve-clock" function (:arguments ("clock" "resolve-to" "clock-out-time" "close-p" "restart-p" "fail-quietly")) nil [33283 34457])
-            ("org-clock-jump-to-current-clock" function (:arguments ("effective-clock")) nil [34459 35392])
-            ("org-clock-resolve" function (:arguments ("clock" "prompt-fn" "last-valid" "fail-quietly")) nil [35394 39413])
-            ("org-resolve-clocks" function
-               (:user-visible-flag t
-                :arguments ("only-dangling-p" "prompt-fn" "last-valid"))
-                nil [39430 40280])
-            ("org-emacs-idle-seconds" function nil nil [40282 40479])
-            ("org-mac-idle-seconds" function nil nil [40481 40704])
-            ("org-x11idle-exists-p" variable (:default-value (and (eq window-system (quote x)) (eq 0 (call-process-shell-command (format "command -v %s" org-clock-x11idle-program-name))) (eq 0 (call-process-shell-command org-clock-x11idle-program-name)))) nil [40706 41112])
-            ("org-x11-idle-seconds" function nil nil [41114 41281])
-            ("org-user-idle-seconds" function nil nil [41283 41605])
-            ("org-clock-user-idle-seconds" variable nil nil [41607 41643])
-            ("org-resolve-clocks-if-idle" function nil nil [41645 42564])
-            ("org-clock-current-task" variable nil nil [42566 42630])
-            ("org-clock-out-time" variable nil nil [42631 42662])
-            ("org--msg-extra" variable nil nil [42702 42725])
-            ("org-clock-in" function
-               (:user-visible-flag t
-                :arguments ("select" "start-time"))
-                nil [42742 49959])
-            ("org-clock-in-last" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [49976 51450])
-            ("org-clock-mark-default-task" function (:user-visible-flag t) nil [51452 51641])
-            ("org-clock-get-sum-start" function nil nil [51643 53023])
-            ("org-clock-find-position" function (:arguments ("find-unclosed")) nil [53025 56513])
-            ("org-clock-out" function
-               (:user-visible-flag t
-                :arguments ("switch-to-state" "fail-quietly" "at-time"))
-                nil [56530 60189])
-            ("add-hook" code nil nil [60191 60258])
-            ("org-clock-remove-empty-clock-drawer" function nil nil [60260 60737])
-            ("org-clock-timestamps-up" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [60739 60939])
-            ("org-clock-timestamps-down" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [60941 61145])
-            ("org-clock-timestamps-change" function (:arguments ("updown" "n")) nil [61147 62496])
-            ("org-clock-cancel" function (:user-visible-flag t) nil [62513 63594])
-            ("org-clock-goto" function
-               (:user-visible-flag t
-                :arguments ("select"))
-                nil [63611 64634])
-            ("defvar-local" code nil nil [64636 64758])
-            ("org-clock-sum-today" function (:arguments ("headline-filter")) nil [64775 65018])
-            ("org-clock-sum-custom" function (:arguments ("headline-filter" "range" "propname")) nil [65020 65516])
-            ("org-clock-sum" function (:arguments ("tstart" "tend" "headline-filter" "propname")) nil [65533 69070])
-            ("org-clock-sum-current-item" function (:arguments ("tstart")) nil [69072 69312])
-            ("org-clock-display" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [69329 71379])
-            ("defvar-local" code nil nil [71381 71418])
-            ("org-clock-put-overlay" function (:arguments ("time")) nil [71420 72284])
-            ("org-clock-remove-overlays" function
-               (:user-visible-flag t
-                :arguments ("_beg" "_end" "noremove"))
-                nil [72301 72757])
-            ("org-state" variable nil nil [72759 72777])
-            ("org-clock-out-if-current" function nil nil [72819 73773])
-            ("add-hook" code nil nil [73775 73848])
-            ("org-clock-get-clocktable" function (:arguments ("props")) nil [73865 74567])
-            ("org-clock-report" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [74584 75552])
-            ("org-day-of-week" function (:arguments ("day" "month" "year")) nil [75554 75738])
-            ("org-quarter-to-date" function (:arguments ("quarter" "year")) nil [75740 76904])
-            ("org-clock-special-range" function (:arguments ("key" "time" "as-strings" "wstart" "mstart")) nil [76906 83104])
-            ("org-count-quarter" function (:arguments ("n")) nil [83106 83220])
-            ("org-clocktable-shift" function (:arguments ("dir" "n")) nil [83237 86529])
-            ("org-dblock-write:clocktable" function (:arguments ("params")) nil [86546 89309])
-            ("org-clocktable-write-default" function (:arguments ("ipos" "tables" "params")) nil [89311 97709])
-            ("org-clocktable-indent-string" function (:arguments ("level")) nil [97711 97943])
-            ("org-clocktable-steps" function (:arguments ("params")) nil [97945 100286])
-            ("org-clock-get-table-data" function (:arguments ("file" "params")) nil [100288 104559])
-            ("org-clock-loaded" variable nil nil [104594 104654])
-            ("org-clock-update-time-maybe" function (:user-visible-flag t) nil [104671 105954])
-            ("org-clock-save" function nil nil [105956 107480])
-            ("org-clock-load" function nil nil [107482 108619])
-            ("org-defkey" code nil nil [108643 108717])
-            ("org-clock" package nil nil [108719 108739]))          
-      :file "org-clock.el"
-      :pointmax 108860
-      :fsize 108865
-      :lastmodtime '(23525 29589 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [1716 1734])
-            ("declare-function" code nil nil [1736 1793])
-            ("org-babel-table-truncate-at-newline" function (:arguments ("string")) nil [1795 2171])
-            ("org-sbe" function (:arguments ("source-block" "variables")) nil [2173 5329])
-            ("ob-table" package nil nil [5331 5350]))          
-      :file "ob-table.el"
-      :pointmax 5380
-      :fsize 5379
-      :lastmodtime '(23525 29588 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob" include nil nil [1016 1029])
-            ("org-babel-header-args:emacs-lisp" variable
-               (:constant-flag t
-                :default-value (quote ((lexical . :any))))
-                nil [1031 1136])
-            ("org-babel-default-header-args:emacs-lisp" variable (:default-value (quote ((:lexical . "no")))) nil [1138 1476])
-            ("org-babel-expand-body:emacs-lisp" function (:arguments ("body" "params")) nil [1478 1883])
-            ("org-babel-execute:emacs-lisp" function (:arguments ("body" "params")) nil [1885 3079])
-            ("org-babel-make-language-alias" code nil nil [3081 3133])
-            ("ob-emacs-lisp" package nil nil [3135 3159]))          
-      :file "ob-emacs-lisp.el"
-      :pointmax 3194
-      :fsize 3193
-      :lastmodtime '(23525 29586 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1002 1019])
-            ("ox" include nil nil [1020 1033])
-            ("orgtbl-exp-regexp" variable nil nil [1035 1061])
-            ("org-export-define-backend" code nil nil [1087 5204])
-            ("org-export-texinfo" customgroup (:user-visible-flag t) nil [5242 5429])
-            ("org-texinfo-coding-system" variable nil nil [5446 5645])
-            ("org-texinfo-default-class" variable (:default-value "info") nil [5647 5790])
-            ("org-texinfo-classes" variable (:default-value (quote (("info" "@documentencoding AUTO
-@documentlanguage AUTO" ("@chapter %s" "@unnumbered %s" "@appendix %s") ("@section %s" "@unnumberedsec %s" "@appendixsec %s") ("@subsection %s" "@unnumberedsubsec %s" "@appendixsubsec %s") ("@subsubsection %s" "@unnumberedsubsubsec %s" "@appendixsubsubsec %s"))))) nil [5792 7724])
-            ("org-texinfo-format-headline-function" variable (:default-value (quote org-texinfo-format-headline-default-function)) nil [7741 8352])
-            ("org-texinfo-node-description-column" variable (:default-value 32) nil [8380 8647])
-            ("org-texinfo-active-timestamp-format" variable (:default-value "@emph{%s}") nil [8666 8833])
-            ("org-texinfo-inactive-timestamp-format" variable (:default-value "@emph{%s}") nil [8835 9006])
-            ("org-texinfo-diary-timestamp-format" variable (:default-value "@emph{%s}") nil [9008 9173])
-            ("org-texinfo-link-with-unknown-path-format" variable (:default-value "@indicateurl{%s}") nil [9187 9356])
-            ("org-texinfo-tables-verbatim" variable nil nil [9371 9508])
-            ("org-texinfo-table-scientific-notation" variable (:default-value "%s\\,(%s)") nil [9510 9882])
-            ("org-texinfo-table-default-markup" variable (:default-value "@asis") nil [9884 10247])
-            ("org-texinfo-text-markup-alist" variable (:default-value (quote ((bold . "@strong{%s}") (code . code) (italic . "@emph{%s}") (verbatim . samp)))) nil [10267 11172])
-            ("org-texinfo-format-drawer-function" variable (:default-value (lambda (_name contents) contents)) nil [11188 11667])
-            ("org-texinfo-format-inlinetask-function" variable (:default-value (quote org-texinfo-format-inlinetask-default-function)) nil [11687 12307])
-            ("org-texinfo-info-process" variable (:default-value (quote ("makeinfo --no-split %f"))) nil [12327 12945])
-            ("org-texinfo-logfiles-extensions" variable (:default-value (quote ("aux" "toc" "cp" "fn" "ky" "pg" "tp" "vr"))) nil [12947 13248])
-            ("org-texinfo-remove-logfiles" variable (:default-value t) nil [13250 13586])
-            ("org-texinfo-max-toc-depth" variable
-               (:constant-flag t
-                :default-value 4)
-                nil [13603 13831])
-            ("org-texinfo-supported-coding-systems" variable
-               (:constant-flag t
-                :default-value (quote ("US-ASCII" "UTF-8" "ISO-8859-15" "ISO-8859-1" "ISO-8859-2" "koi8-r" "koi8-u")))
-                nil [13833 14212])
-            ("org-texinfo-inline-image-rules" variable
-               (:constant-flag t
-                :default-value (list (cons "file" (regexp-opt (quote ("eps" "pdf" "png" "jpg" "jpeg" "gif" "svg"))))))
-                nil [14214 14402])
-            ("org-texinfo--untabify" function (:arguments ("s" "_backend" "_info")) nil [14430 14581])
-            ("org-texinfo--filter-section-blank-lines" function (:arguments ("headline" "_backend" "_info")) nil [14583 14788])
-            ("org-texinfo--normalize-headlines" function (:arguments ("tree" "_backend" "info")) nil [14790 15599])
-            ("org-texinfo--find-verb-separator" function (:arguments ("s")) nil [15601 15982])
-            ("org-texinfo--text-markup" function (:arguments ("text" "markup" "_info")) nil [15984 16624])
-            ("org-texinfo--get-node" function (:arguments ("datum" "info")) nil [16626 17478])
-            ("org-texinfo--sanitize-node" function (:arguments ("title")) nil [17480 17957])
-            ("org-texinfo--sanitize-title" function (:arguments ("title" "info")) nil [17959 18474])
-            ("org-texinfo--sanitize-content" function (:arguments ("text")) nil [18476 18645])
-            ("org-texinfo--wrap-float" function (:arguments ("value" "info" "type" "label" "caption" "short")) nil [18647 20210])
-            ("org-texinfo-template" function (:arguments ("contents" "info")) nil [20226 25124])
-            ("org-texinfo-bold" function (:arguments ("_bold" "contents" "info")) nil [25165 25388])
-            ("org-texinfo-center-block" function (:arguments ("_center-block" "contents" "_info")) nil [25409 25633])
-            ("org-texinfo-clock" function (:arguments ("clock" "_contents" "info")) nil [25647 26128])
-            ("org-texinfo-code" function (:arguments ("code" "_contents" "info")) nil [26141 26378])
-            ("org-texinfo-drawer" function (:arguments ("drawer" "contents" "info")) nil [26393 26746])
-            ("org-texinfo-dynamic-block" function (:arguments ("_dynamic-block" "contents" "_info")) nil [26768 26994])
-            ("org-texinfo-entity" function (:arguments ("entity" "_contents" "_info")) nil [27009 29000])
-            ("org-texinfo-example-block" function (:arguments ("example-block" "_contents" "info")) nil [29022 29341])
-            ("org-texinfo-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [29361 29691])
-            ("org-texinfo-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [29713 30021])
-            ("org-texinfo-fixed-width" function (:arguments ("fixed-width" "_contents" "_info")) nil [30041 30374])
-            ("org-texinfo-footnote-reference" function (:arguments ("footnote" "_contents" "info")) nil [30401 30754])
-            ("org-texinfo--structuring-command" function (:arguments ("headline" "info")) nil [30771 31948])
-            ("org-texinfo-headline" function (:arguments ("headline" "contents" "info")) nil [31950 33716])
-            ("org-texinfo-format-headline-default-function" function (:arguments ("todo" "_todo-type" "priority" "text" "tags")) nil [33718 34083])
-            ("org-texinfo-inline-src-block" function (:arguments ("inline-src-block" "_contents" "_info")) nil [34108 34441])
-            ("org-texinfo-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [34460 35275])
-            ("org-texinfo-format-inlinetask-default-function" function (:arguments ("todo" "_todo-type" "priority" "title" "tags" "contents")) nil [35277 35728])
-            ("org-texinfo-italic" function (:arguments ("_italic" "contents" "info")) nil [35743 35976])
-            ("org-texinfo-item" function (:arguments ("item" "contents" "info")) nil [35989 36786])
-            ("org-texinfo-keyword" function (:arguments ("keyword" "_contents" "info")) nil [36802 37657])
-            ("org-texinfo-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [37676 37866])
-            ("org-texinfo--@ref" function (:arguments ("datum" "description" "info")) nil [37879 38542])
-            ("org-texinfo-link" function (:arguments ("link" "desc" "info")) nil [38544 40936])
-            ("org-texinfo--inline-image" function (:arguments ("link" "info")) nil [40938 42112])
-            ("org-texinfo-make-menu" function (:arguments ("scope" "info" "master")) nil [42126 43006])
-            ("org-texinfo--build-menu" function (:arguments ("scope" "info" "level")) nil [43008 43795])
-            ("org-texinfo--format-entries" function (:arguments ("entries" "info")) nil [43797 44652])
-            ("org-texinfo--menu-entries" function (:arguments ("scope" "info")) nil [44654 45331])
-            ("org-texinfo-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [45353 45729])
-            ("org-texinfo-paragraph" function (:arguments ("_paragraph" "contents" "_info")) nil [45747 45978])
-            ("org-texinfo-plain-list" function (:arguments ("plain-list" "contents" "info")) nil [45997 46883])
-            ("org-texinfo-plain-text" function (:arguments ("text" "info")) nil [46902 48004])
-            ("org-texinfo-planning" function (:arguments ("planning" "_contents" "info")) nil [48021 49035])
-            ("org-texinfo-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [49059 49370])
-            ("org-texinfo-quote-block" function (:arguments ("quote-block" "contents" "_info")) nil [49390 49800])
-            ("org-texinfo-radio-target" function (:arguments ("radio-target" "text" "info")) nil [49821 50096])
-            ("org-texinfo-section" function (:arguments ("section" "contents" "info")) nil [50112 50499])
-            ("org-texinfo-special-block" function (:arguments ("special-block" "contents" "_info")) nil [50521 50976])
-            ("org-texinfo-src-block" function (:arguments ("src-block" "_contents" "info")) nil [50994 51815])
-            ("org-texinfo-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [51841 52092])
-            ("org-texinfo-strike-through" function (:arguments ("_strike-through" "contents" "info")) nil [52116 52389])
-            ("org-texinfo-subscript" function (:arguments ("_subscript" "contents" "_info")) nil [52407 52640])
-            ("org-texinfo-superscript" function (:arguments ("_superscript" "contents" "_info")) nil [52660 52899])
-            ("org-texinfo-table" function (:arguments ("table" "contents" "info")) nil [52913 53903])
-            ("org-texinfo-table-column-widths" function (:arguments ("table" "info")) nil [53905 54839])
-            ("org-texinfo-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [54858 55483])
-            ("org-texinfo-table-row" function (:arguments ("table-row" "contents" "info")) nil [55501 56117])
-            ("org-texinfo-target" function (:arguments ("target" "_contents" "info")) nil [56132 56360])
-            ("org-texinfo-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [56378 56985])
-            ("org-texinfo-underline" function (:arguments ("_underline" "contents" "info")) nil [57003 57251])
-            ("org-texinfo-verbatim" function (:arguments ("verbatim" "_contents" "info")) nil [57268 57528])
-            ("org-texinfo-verse-block" function (:arguments ("_verse-block" "contents" "_info")) nil [57548 57795])
-            ("org-texinfo-export-to-texinfo" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [57841 59023])
-            ("org-texinfo-export-to-info" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [59040 60364])
-            ("org-texinfo-publish-to-texinfo" function (:arguments ("plist" "filename" "pub-dir")) nil [60381 60717])
-            ("org-texinfo-convert-region-to-texinfo" function (:user-visible-flag t) nil [60734 61061])
-            ("org-texinfo-compile" function (:arguments ("file")) nil [61063 61932])
-            ("ox-texinfo" package nil nil [61935 61956]))          
-      :file "ox-texinfo.el"
-      :pointmax 62061
-      :fsize 62060
-      :lastmodtime '(23525 29594 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [1678 1696])
-            ("cl-lib" include nil nil [1697 1714])
-            ("declare-function" code nil nil [1716 1784])
-            ("declare-function" code nil nil [1785 1841])
-            ("declare-function" code nil nil [1842 1914])
-            ("declare-function" code nil nil [1915 1974])
-            ("declare-function" code nil nil [1975 2037])
-            ("declare-function" code nil nil [2038 2107])
-            ("declare-function" code nil nil [2108 2160])
-            ("declare-function" code nil nil [2161 2239])
-            ("declare-function" code nil nil [2240 2318])
-            ("declare-function" code nil nil [2319 2368])
-            ("declare-function" code nil nil [2369 2426])
-            ("declare-function" code nil nil [2427 2484])
-            ("org-babel-update-intermediate" variable nil nil [2486 2608])
-            ("org-babel-ref-parse" function (:arguments ("assignment")) nil [2610 3653])
-            ("org-babel-ref-goto-headline-id" function (:arguments ("id")) nil [3655 4051])
-            ("org-babel-ref-headline-body" function nil nil [4053 4271])
-            ("org-babel-library-of-babel" variable nil nil [4273 4308])
-            ("org-babel-ref-resolve" function (:arguments ("ref")) nil [4309 7436])
-            ("org-babel-ref-index-list" function (:arguments ("index" "lis")) nil [7438 9069])
-            ("org-babel-ref-split-args" function (:arguments ("arg-string")) nil [9071 9250])
-            ("ob-ref" package nil nil [9253 9270]))          
-      :file "ob-ref.el"
-      :pointmax 9296
-      :fsize 9295
-      :lastmodtime '(23525 29588 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [3474 3488])
-            ("sha1" include nil nil [3489 3504])
-            ("declare-function" code nil nil [3506 3622])
-            ("declare-function" code nil nil [3623 3672])
-            ("declare-function" code nil nil [3673 3732])
-            ("declare-function" code nil nil [3733 3792])
-            ("declare-function" code nil nil [3793 3859])
-            ("declare-function" code nil nil [3860 3916])
-            ("declare-function" code nil nil [3918 3975])
-            ("declare-function" code nil nil [3976 4059])
-            ("declare-function" code nil nil [4060 4131])
-            ("org-feed" customgroup (:user-visible-flag t) nil [4133 4247])
-            ("org-feed-alist" variable nil nil [4249 8849])
-            ("org-feed-drawer" variable (:default-value "FEEDSTATUS") nil [8851 9101])
-            ("org-feed-default-template" variable (:default-value "
-* %h
-  %U
-  %description
-  %a
-") nil [9103 9977])
-            ("org-feed-save-after-adding" variable (:default-value t) nil [9979 10114])
-            ("org-feed-retrieve-method" variable (:default-value (quote url-retrieve-synchronously)) nil [10116 10635])
-            ("org-feed-before-adding-hook" variable nil nil [10637 10862])
-            ("org-feed-after-adding-hook" variable nil nil [10864 11087])
-            ("org-feed-buffer" variable (:default-value "*Org feed*") nil [11089 11166])
-            ("org-feed-update-all" function (:user-visible-flag t) nil [11183 11797])
-            ("org-feed-update" function
-               (:user-visible-flag t
-                :arguments ("feed" "retrieve-only"))
-                nil [11814 16345])
-            ("org-feed-goto-inbox" function
-               (:user-visible-flag t
-                :arguments ("feed"))
-                nil [16362 16777])
-            ("org-feed-show-raw-feed" function
-               (:user-visible-flag t
-                :arguments ("feed"))
-                nil [16794 17235])
-            ("org-feed-goto-inbox-internal" function (:arguments ("file" "heading")) nil [17237 17691])
-            ("org-feed-read-previous-status" function (:arguments ("pos" "drawer")) nil [17693 18085])
-            ("org-feed-write-status" function (:arguments ("pos" "drawer" "status")) nil [18087 18669])
-            ("org-feed-add-items" function (:arguments ("pos" "entries")) nil [18671 19209])
-            ("org-feed-format-entry" function (:arguments ("entry" "template" "formatter")) nil [19211 21888])
-            ("org-feed-make-indented-block" function (:arguments ("s" "n")) nil [21890 22148])
-            ("org-feed-skip-http-headers" function (:arguments ("buffer")) nil [22150 22431])
-            ("org-feed-get-feed" function (:arguments ("url")) nil [22433 23098])
-            ("org-feed-parse-rss-feed" function (:arguments ("buffer")) nil [23100 23921])
-            ("org-feed-parse-rss-entry" function (:arguments ("entry")) nil [23923 24548])
-            ("org-feed-parse-atom-feed" function (:arguments ("buffer")) nil [24550 25184])
-            ("org-feed-parse-atom-entry" function (:arguments ("entry")) nil [25186 26523])
-            ("org-feed" package nil nil [26525 26544]))          
-      :file "org-feed.el"
-      :pointmax 26647
-      :fsize 26646
-      :lastmodtime '(23525 29590 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [1239 1253])
-            ("org-datetree-base-level" variable (:default-value 1) nil [1255 1580])
-            ("org-datetree-add-timestamp" variable nil nil [1582 1946])
-            ("org-datetree-find-date-create" function (:arguments ("d" "keep-restriction")) nil [1963 3425])
-            ("org-datetree-find-iso-week-create" function (:arguments ("d" "keep-restriction")) nil [3442 5404])
-            ("org-datetree--find-create" function (:arguments ("regex" "year" "month" "day" "insert")) nil [5406 6379])
-            ("org-datetree-insert-line" function (:arguments ("year" "month" "day" "text")) nil [6381 7181])
-            ("org-datetree-file-entry-under" function (:arguments ("txt" "d")) nil [7183 7480])
-            ("org-datetree-cleanup" function (:user-visible-flag t) nil [7482 9166])
-            ("org-datetree" package nil nil [9168 9191]))          
-      :file "org-datetree.el"
-      :pointmax 9298
-      :fsize 9297
-      :lastmodtime '(23525 29590 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [2882 2896])
-            ("declare-function" code nil nil [2898 2947])
-            ("org-id" customgroup (:user-visible-flag t) nil [2968 3080])
-            ("org-id-link-to-org-use-id" variable nil nil [3082 4697])
-            ("org-id-uuid-program" variable (:default-value "uuidgen") nil [4699 4798])
-            ("org-id-method" variable (:default-value (quote uuid)) nil [4800 5581])
-            ("org-id-prefix" variable nil nil [5583 5920])
-            ("org-id-include-domain" variable nil nil [5922 6429])
-            ("org-id-track-globally" variable (:default-value t) nil [6431 6954])
-            ("org-id-locations-file" variable (:default-value (convert-standard-filename (concat user-emacs-directory ".org-id-locations"))) nil [6956 7234])
-            ("org-id-locations" variable nil nil [7236 7308])
-            ("org-id-files" variable nil nil [7310 7371])
-            ("org-id-extra-files" variable (:default-value (quote org-agenda-text-search-extra-files)) nil [7373 7982])
-            ("org-id-search-archives" variable (:default-value t) nil [7984 8319])
-            ("org-id-get-create" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [8359 8669])
-            ("org-id-copy" function (:user-visible-flag t) nil [8686 8849])
-            ("org-id-get" function (:arguments ("pom" "create" "prefix")) nil [8866 9533])
-            ("org-id-get-with-outline-path-completion" function (:arguments ("targets")) nil [9550 10300])
-            ("org-id-get-with-outline-drilling" function nil nil [10317 10759])
-            ("org-id-goto" function
-               (:user-visible-flag t
-                :arguments ("id"))
-                nil [10776 11149])
-            ("org-id-find" function (:arguments ("id" "markerp")) nil [11166 11866])
-            ("org-id-new" function (:arguments ("prefix")) nil [11928 13048])
-            ("org-id-uuid" function nil nil [13050 13612])
-            ("org-id-int-to-b36-one-digit" function (:arguments ("i")) nil [13614 13823])
-            ("org-id-b36-to-int-one-digit" function (:arguments ("i")) nil [13825 14162])
-            ("org-id-int-to-b36" function (:arguments ("i" "length")) nil [14164 14561])
-            ("org-id-b36-to-int" function (:arguments ("s")) nil [14563 14758])
-            ("org-id-time-to-b36" function (:arguments ("time")) nil [14760 15104])
-            ("org-id-decode" function (:arguments ("id")) nil [15106 15753])
-            ("org-id-update-id-locations" function
-               (:user-visible-flag t
-                :arguments ("files" "silent"))
-                nil [15803 18726])
-            ("org-id-locations-save" function nil nil [18728 19120])
-            ("org-id-locations-load" function nil nil [19122 19657])
-            ("org-id-add-location" function (:arguments ("id" "file")) nil [19659 20051])
-            ("unless" code nil nil [20053 20129])
-            ("org-id-hash-to-alist" function (:arguments ("hash")) nil [20131 20402])
-            ("org-id-alist-to-hash" function (:arguments ("list")) nil [20404 20718])
-            ("org-id-paste-tracker" function (:arguments ("txt" "buffer-or-file")) nil [20720 21384])
-            ("org-id-find-id-file" function (:arguments ("id")) nil [21439 21820])
-            ("org-id-find-id-in-file" function (:arguments ("id" "file" "markerp")) nil [21822 22463])
-            ("org-id-store-link" function (:user-visible-flag t) nil [22627 23168])
-            ("org-id-open" function (:arguments ("id")) nil [23170 23876])
-            ("org-link-set-parameters" code nil nil [23878 23930])
-            ("org-id" package nil nil [23932 23949]))          
-      :file "org-id.el"
-      :pointmax 24050
-      :fsize 24049
-      :lastmodtime '(23525 29591 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1031 1048])
-            ("org-src" include nil nil [1049 1067])
-            ("org-macs" include nil nil [1068 1087])
-            ("declare-function" code nil nil [1089 1154])
-            ("declare-function" code nil nil [1155 1216])
-            ("declare-function" code nil nil [1217 1284])
-            ("declare-function" code nil nil [1285 1354])
-            ("declare-function" code nil nil [1355 1409])
-            ("declare-function" code nil nil [1410 1466])
-            ("declare-function" code nil nil [1467 1526])
-            ("declare-function" code nil nil [1527 1586])
-            ("declare-function" code nil nil [1587 1637])
-            ("declare-function" code nil nil [1638 1716])
-            ("declare-function" code nil nil [1717 1786])
-            ("declare-function" code nil nil [1787 1872])
-            ("declare-function" code nil nil [1873 1939])
-            ("declare-function" code nil nil [1940 1985])
-            ("declare-function" code nil nil [1986 2043])
-            ("declare-function" code nil nil [2044 2100])
-            ("declare-function" code nil nil [2101 2163])
-            ("org-link-types-re" variable nil nil [2165 2191])
-            ("org-babel-tangle-lang-exts" variable (:default-value (quote (("emacs-lisp" . "el") ("elisp" . "el")))) nil [2193 2693])
-            ("org-babel-tangle-use-relative-file-links" variable (:default-value t) nil [2695 2869])
-            ("org-babel-post-tangle-hook" variable nil nil [2871 3023])
-            ("org-babel-pre-tangle-hook" variable (:default-value (quote (save-buffer))) nil [3025 3182])
-            ("org-babel-tangle-body-hook" variable nil nil [3184 3334])
-            ("org-babel-tangle-comment-format-beg" variable (:default-value "[[%link][%source-name]]") nil [3336 4154])
-            ("org-babel-tangle-comment-format-end" variable (:default-value "%source-name ends here") nil [4156 4973])
-            ("org-babel-tangle-uncomment-comments" variable nil nil [4975 5280])
-            ("org-babel-process-comment-text" variable (:default-value (quote org-remove-indentation)) nil [5282 5642])
-            ("org-babel-find-file-noselect-refresh" function (:arguments ("file")) nil [5644 5888])
-            ("org-babel-with-temp-filebuffer" function (:arguments ("file" "body")) nil [5890 6648])
-            ("def-edebug-spec" code nil nil [6649 6709])
-            ("org-babel-tangle-file" function
-               (:user-visible-flag t
-                :arguments ("file" "target-file" "lang"))
-                nil [6726 7480])
-            ("org-babel-tangle-publish" function (:arguments ("_" "filename" "pub-dir")) nil [7482 7786])
-            ("org-babel-tangle" function
-               (:user-visible-flag t
-                :arguments ("arg" "target-file" "lang"))
-                nil [7803 12504])
-            ("org-babel-tangle-clean" function (:user-visible-flag t) nil [12506 13173])
-            ("org-stored-links" variable nil nil [13175 13200])
-            ("org-bracket-link-regexp" variable nil nil [13201 13233])
-            ("org-babel-spec-to-string" function (:arguments ("spec")) nil [13234 14846])
-            ("org-babel-tangle-collect-blocks" function (:arguments ("language" "tangle-file")) nil [14848 16386])
-            ("org-babel-tangle-single-block" function (:arguments ("block-counter" "only-this-block")) nil [16388 19502])
-            ("org-babel-tangle-comment-links" function (:arguments ("info")) nil [19504 20156])
-            ("org-bracket-link-analytic-regexp" variable nil nil [20183 20224])
-            ("org-babel-detangle" function
-               (:user-visible-flag t
-                :arguments ("source-code-file"))
-                nil [20225 21114])
-            ("org-babel-tangle-jump-to-org" function (:user-visible-flag t) nil [21116 23251])
-            ("ob-tangle" package nil nil [23253 23273]))          
-      :file "ob-tangle.el"
-      :pointmax 23377
-      :fsize 23376
-      :lastmodtime '(23525 29588 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [1116 1130])
-            ("declare-function" code nil nil [1132 1191])
-            ("declare-function" code nil nil [1192 1289])
-            ("declare-function" code nil nil [1290 1360])
-            ("org-archive-default-command" variable (:default-value (quote org-archive-subtree)) nil [1362 1601])
-            ("org-archive-reversed-order" variable nil nil [1603 1783])
-            ("org-archive-sibling-heading" variable (:default-value "Archive") nil [1785 2055])
-            ("org-archive-mark-done" variable nil nil [2057 2422])
-            ("org-archive-stamp-time" variable (:default-value t) nil [2424 2704])
-            ("org-archive-file-header-format" variable (:default-value "
-Archived entries from file %s
-
-") nil [2706 3041])
-            ("org-archive-subtree-add-inherited-tags" variable (:default-value (quote infile)) nil [3043 3347])
-            ("org-archive-save-context-info" variable (:default-value (quote (time file olpath category todo itags))) nil [3349 4727])
-            ("org-archive-hook" variable nil nil [4729 4997])
-            ("org-get-local-archive-location" function nil nil [4999 5449])
-            ("org-add-archive-files" function (:arguments ("files")) nil [5466 5854])
-            ("org-all-archive-files" function nil nil [5856 6633])
-            ("org-extract-archive-file" function (:arguments ("location")) nil [6635 7145])
-            ("org-extract-archive-heading" function (:arguments ("location")) nil [7147 7547])
-            ("org-archive-subtree" function
-               (:user-visible-flag t
-                :arguments ("find-done"))
-                nil [7564 15782])
-            ("org-archive-to-archive-sibling" function (:user-visible-flag t) nil [15799 18177])
-            ("org-archive-all-done" function (:arguments ("tag")) nil [18179 18661])
-            ("org-archive-all-old" function (:arguments ("tag")) nil [18663 19397])
-            ("org-archive-all-matches" function (:arguments ("predicate" "tag")) nil [19399 21248])
-            ("org-toggle-archive-tag" function
-               (:user-visible-flag t
-                :arguments ("find-done"))
-                nil [21265 22196])
-            ("org-archive-set-tag" function (:user-visible-flag t) nil [22198 22689])
-            ("org-archive-subtree-default" function (:user-visible-flag t) nil [22706 22938])
-            ("org-archive-subtree-default-with-confirmation" function (:user-visible-flag t) nil [22955 23281])
-            ("org-archive" package nil nil [23283 23305]))          
-      :file "org-archive.el"
-      :pointmax 23411
-      :fsize 23410
-      :lastmodtime '(23525 29589 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1456 1473])
-            ("org-clock" include nil nil [1474 1494])
-            ("declare-function" code nil nil [1496 1547])
-            ("org-timer-start-time" variable nil nil [1549 1613])
-            ("org-timer-pause-time" variable nil nil [1615 1684])
-            ("org-timer-countdown-timer" variable nil nil [1686 1881])
-            ("org-timer-countdown-timer-title" variable nil nil [1883 1991])
-            ("org-timer-re" variable
-               (:constant-flag t
-                :default-value "\\([-+]?[0-9]+\\):\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)")
-                nil [1993 2125])
-            ("org-timer-format" variable (:default-value "%s ") nil [2127 2342])
-            ("org-timer-default-timer" variable (:default-value "0") nil [2344 2586])
-            ("org-timer-display" variable (:default-value (quote mode-line)) nil [2588 3151])
-            ("org-timer-start-hook" variable nil nil [3153 3232])
-            ("org-timer-stop-hook" variable nil nil [3234 3326])
-            ("org-timer-pause-hook" variable nil nil [3328 3420])
-            ("org-timer-continue-hook" variable nil nil [3422 3519])
-            ("org-timer-set-hook" variable nil nil [3521 3595])
-            ("org-timer-done-hook" variable nil nil [3597 3678])
-            ("org-timer-start" function
-               (:user-visible-flag t
-                :arguments ("offset"))
-                nil [3695 5513])
-            ("org-timer-pause-or-continue" function
-               (:user-visible-flag t
-                :arguments ("stop"))
-                nil [5515 7022])
-            ("org-timer-stop" function (:user-visible-flag t) nil [7024 7451])
-            ("org-timer" function
-               (:user-visible-flag t
-                :arguments ("restart" "no-insert"))
-                nil [7468 8274])
-            ("org-timer-value-string" function nil nil [8276 8428])
-            ("org-timer-seconds" function nil nil [8430 8850])
-            ("org-timer-change-times-in-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "delta"))
-                nil [8867 9758])
-            ("org-timer-item" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [9775 10737])
-            ("org-timer-fix-incomplete" function (:arguments ("hms")) nil [10739 11234])
-            ("org-timer-hms-to-secs" function (:arguments ("hms")) nil [11236 11785])
-            ("org-timer-secs-to-hms" function (:arguments ("s")) nil [11787 12089])
-            ("org-timer-mode-line-timer" variable nil nil [12091 12129])
-            ("org-timer-mode-line-string" variable nil nil [12130 12169])
-            ("org-timer-set-mode-line" function (:arguments ("value")) nil [12171 14396])
-            ("org-timer-update-mode-line" function nil nil [14398 14647])
-            ("org-timer-show-remaining-time" function (:user-visible-flag t) nil [14649 15104])
-            ("org-timer-set-timer" function
-               (:user-visible-flag t
-                :arguments ("opt"))
-                nil [15121 17618])
-            ("org-timer--run-countdown-timer" function (:arguments ("secs" "title")) nil [17620 18072])
-            ("org-timer--get-timer-title" function nil nil [18074 18743])
-            ("org-timer" package nil nil [18745 18765]))          
-      :file "org-timer.el"
-      :pointmax 18869
-      :fsize 18868
-      :lastmodtime '(23525 29592 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1555 1572])
-            ("org" include nil nil [1573 1587])
-            ("org-id" include nil nil [1588 1605])
-            ("vc-git" include nil nil [1606 1623])
-            ("declare-function" code nil nil [1625 1683])
-            ("org-attach" customgroup (:user-visible-flag t) nil [1685 1798])
-            ("org-attach-directory" variable (:default-value "data/") nil [1800 2031])
-            ("org-attach-commit" variable (:default-value t) nil [2033 2256])
-            ("org-attach-git-annex-cutoff" variable (:default-value (* 32 1024)) nil [2258 2527])
-            ("org-attach-auto-tag" variable (:default-value "ATTACH") nil [2529 2736])
-            ("org-attach-file-list-property" variable (:default-value "Attachments") nil [2738 3144])
-            ("org-attach-method" variable (:default-value (quote cp)) nil [3146 3725])
-            ("org-attach-expert" variable nil nil [3727 3874])
-            ("org-attach-allow-inheritance" variable (:default-value t) nil [3876 4017])
-            ("org-attach-inherited" variable nil nil [4019 4128])
-            ("org-attach-store-link-p" variable nil nil [4130 4428])
-            ("org-attach-archive-delete" variable nil nil [4430 4805])
-            ("org-attach-annex-auto-get" variable (:default-value (quote ask)) nil [4807 5227])
-            ("org-attach" function (:user-visible-flag t) nil [5244 8512])
-            ("org-attach-dir" function (:arguments ("create-if-not-exists-p")) nil [8514 10271])
-            ("org-attach-check-absolute-path" function (:arguments ("dir")) nil [10273 10872])
-            ("org-attach-set-directory" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [10874 11915])
-            ("org-attach-set-inherit" function (:user-visible-flag t) nil [11917 12325])
-            ("org-attach-use-annex" function nil nil [12327 12649])
-            ("org-attach-annex-get-maybe" function (:arguments ("path")) nil [12651 13513])
-            ("org-attach-commit" function nil nil [13515 14663])
-            ("org-attach-tag" function (:arguments ("off")) nil [14665 14892])
-            ("org-attach-untag" function nil nil [14894 14971])
-            ("org-attach-store-link" function (:arguments ("file")) nil [14973 15255])
-            ("org-attach-url" function (:arguments ("url")) nil [15257 15360])
-            ("org-attach-attach" function
-               (:user-visible-flag t
-                :arguments ("file" "visit-dir" "method"))
-                nil [15362 16959])
-            ("org-attach-attach-cp" function (:user-visible-flag t) nil [16961 17115])
-            ("org-attach-attach-mv" function (:user-visible-flag t) nil [17116 17280])
-            ("org-attach-attach-ln" function (:user-visible-flag t) nil [17281 17586])
-            ("org-attach-attach-lns" function (:user-visible-flag t) nil [17587 17903])
-            ("org-attach-new" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [17905 18397])
-            ("org-attach-delete-one" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [18399 18941])
-            ("org-attach-delete-all" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [18943 19668])
-            ("org-attach-sync" function (:user-visible-flag t) nil [19670 20366])
-            ("org-attach-file-list" function (:arguments ("dir")) nil [20368 20610])
-            ("org-attach-reveal" function
-               (:user-visible-flag t
-                :arguments ("if-exists"))
-                nil [20612 20906])
-            ("org-attach-reveal-in-emacs" function (:user-visible-flag t) nil [20908 21090])
-            ("org-attach-open" function
-               (:user-visible-flag t
-                :arguments ("in-emacs"))
-                nil [21092 21788])
-            ("org-attach-open-in-emacs" function (:user-visible-flag t) nil [21790 21939])
-            ("org-attach-expand" function (:arguments ("file")) nil [21941 22145])
-            ("org-attach-expand-link" function (:arguments ("file")) nil [22147 22388])
-            ("org-attach-archive-delete-maybe" function nil nil [22390 22752])
-            ("add-hook" code nil nil [22754 22815])
-            ("org-attach" package nil nil [22817 22838]))          
-      :file "org-attach.el"
-      :pointmax 22943
-      :fsize 22942
-      :lastmodtime '(23525 29589 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1176 1193])
-            ("ox-latex" include nil nil [1194 1213])
-            ("unless" code nil nil [1262 1541])
-            ("org-export-beamer" customgroup (:user-visible-flag t) nil [1579 1735])
-            ("org-beamer-frame-level" variable (:default-value 1) nil [1737 2429])
-            ("org-beamer-frame-default-options" variable nil nil [2431 2641])
-            ("org-beamer-column-view-format" variable (:default-value "%45ITEM %10BEAMER_env(Env) %10BEAMER_act(Act) %4BEAMER_col(Col) %8BEAMER_opt(Opt)") nil [2643 3041])
-            ("org-beamer-theme" variable (:default-value "default") nil [3043 3310])
-            ("org-beamer-environments-extra" variable nil nil [3312 4340])
-            ("org-beamer-outline-frame-title" variable (:default-value "Outline") nil [4342 4519])
-            ("org-beamer-outline-frame-options" variable nil nil [4521 4758])
-            ("org-beamer-subtitle-format" variable (:default-value "\\subtitle{%s}") nil [4761 5081])
-            ("org-beamer-column-widths" variable
-               (:constant-flag t
-                :default-value "0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.0 :ETC")
-                nil [5109 5266])
-            ("org-beamer-environments-special" variable
-               (:constant-flag t
-                :default-value (quote (("againframe" "A") ("appendix" "x") ("column" "c") ("columns" "C") ("frame" "f") ("fullframe" "F") ("ignoreheading" "i") ("note" "n") ("noteNH" "N"))))
-                nil [5268 5864])
-            ("org-beamer-environments-default" variable
-               (:constant-flag t
-                :default-value (quote (("block" "b" "\\begin{block}%a{%h}" "\\end{block}") ("alertblock" "a" "\\begin{alertblock}%a{%h}" "\\end{alertblock}") ("verse" "v" "\\begin{verse}%a %% %h" "\\end{verse}") ("quotation" "q" "\\begin{quotation}%a %% %h" "\\end{quotation}") ("quote" "Q" "\\begin{quote}%a %% %h" "\\end{quote}") ("structureenv" "s" "\\begin{structureenv}%a %% %h" "\\end{structureenv}") ("theorem" "t" "\\begin{theorem}%a[%h]" "\\end{theorem}") ("definition" "d" "\\begin{definition}%a[%h]" "\\end{definition}") ("example" "e" "\\begin{example}%a[%h]" "\\end{example}") ("exampleblock" "E" "\\begin{exampleblock}%a{%h}" "\\end{exampleblock}") ("proof" "p" "\\begin{proof}%a[%h]" "\\end{proof}") ("beamercolorbox" "o" "\\begin{beamercolorbox}%o{%h}" "\\end{beamercolorbox}"))))
-                nil [5866 6981])
-            ("org-beamer-verbatim-elements" variable
-               (:constant-flag t
-                :default-value (quote (code example-block fixed-width inline-src-block src-block verbatim)))
-                nil [6983 7241])
-            ("org-beamer--normalize-argument" function (:arguments ("argument" "type")) nil [7270 8006])
-            ("org-beamer--element-has-overlay-p" function (:arguments ("element")) nil [8008 8555])
-            ("org-export-define-derived-backend" code nil nil [8581 10317])
-            ("org-beamer-bold" function (:arguments ("bold" "contents" "_info")) nil [10358 10622])
-            ("org-beamer-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [10644 10981])
-            ("org-beamer-export-snippet" function (:arguments ("export-snippet" "_contents" "info")) nil [11005 11608])
-            ("org-beamer--get-label" function (:arguments ("headline" "info")) nil [12113 12960])
-            ("org-beamer--frame-level" function (:arguments ("headline" "info")) nil [12962 14105])
-            ("org-beamer--format-section" function (:arguments ("headline" "contents" "info")) nil [14107 15349])
-            ("org-beamer--format-frame" function (:arguments ("headline" "contents" "info")) nil [15351 18355])
-            ("org-beamer--format-block" function (:arguments ("headline" "contents" "info")) nil [18357 22575])
-            ("org-beamer-headline" function (:arguments ("headline" "contents" "info")) nil [22577 25662])
-            ("org-beamer-item" function (:arguments ("item" "contents" "info")) nil [25676 26680])
-            ("org-beamer-keyword" function (:arguments ("keyword" "contents" "info")) nil [26697 27602])
-            ("org-beamer-link" function (:arguments ("link" "contents" "info")) nil [27616 28305])
-            ("org-beamer-plain-list" function (:arguments ("plain-list" "contents" "info")) nil [28408 29534])
-            ("org-beamer-radio-target" function (:arguments ("radio-target" "text" "info")) nil [29556 29900])
-            ("org-beamer-template" function (:arguments ("contents" "info")) nil [30043 33626])
-            ("org-beamer-mode-map" variable (:default-value (make-sparse-keymap)) nil [33648 33735])
-            ("define-key" code nil nil [33736 33810])
-            ("define-minor-mode" code nil nil [33827 33951])
-            ("when" code nil nil [33953 34106])
-            ("org-beamer-tag" variable
-               (:default-value (quote ((t (:box (:line-width 1 :color grey40)))))
-                :type "face")
-                nil [34108 34242])
-            ("org-beamer-property-changed" function (:arguments ("property" "value")) nil [34244 34938])
-            ("add-hook" code nil nil [34940 35011])
-            ("org-beamer-allowed-property-values" function (:arguments ("property")) nil [35013 35681])
-            ("add-hook" code nil nil [35683 35770])
-            ("org-beamer-export-as-latex" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [35804 37015])
-            ("org-beamer-export-to-latex" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [37032 38162])
-            ("org-beamer-export-to-pdf" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [38179 39351])
-            ("org-beamer-select-environment" function (:user-visible-flag t) nil [39368 41436])
-            ("org-beamer-publish-to-latex" function (:arguments ("plist" "filename" "pub-dir")) nil [41453 41806])
-            ("org-beamer-publish-to-pdf" function (:arguments ("plist" "filename" "pub-dir")) nil [41823 42682])
-            ("ox-beamer" package nil nil [42685 42705]))          
-      :file "ox-beamer.el"
-      :pointmax 42809
-      :fsize 42808
-      :lastmodtime '(23525 29593 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1126 1143])
-            ("org" include nil nil [1144 1158])
-            ("org-table" include nil nil [1159 1179])
-            ("declare-function" code nil nil [1181 1248])
-            ("declare-function" code nil nil [1249 1297])
-            ("declare-function" code nil nil [1298 1364])
-            ("org-plot/gnuplot-default-options" variable (:default-value (quote ((:plot-type . 2d) (:with . lines) (:ind . 0)))) nil [1366 1524])
-            ("org-plot-timestamp-fmt" variable nil nil [1526 1561])
-            ("org-plot/add-options-to-plist" function (:arguments ("p" "options")) nil [1563 2709])
-            ("org-plot/goto-nearest-table" function (:user-visible-flag t) nil [2711 3004])
-            ("org-plot/collect-options" function
-               (:user-visible-flag t
-                :arguments ("params"))
-                nil [3006 3409])
-            ("org-plot-quote-timestamp-field" function (:arguments ("s")) nil [3411 3598])
-            ("org-plot-quote-tsv-field" function (:arguments ("s")) nil [3600 3880])
-            ("org-plot/gnuplot-to-data" function (:arguments ("table" "data-file" "params")) nil [3882 4347])
-            ("org-plot/gnuplot-to-grid-data" function
-               (:user-visible-flag t
-                :arguments ("table" "data-file" "params"))
-                nil [4349 6307])
-            ("org-plot/gnuplot-script" function (:arguments ("data-file" "num-cols" "params" "preface")) nil [6309 9640])
-            ("org-plot/gnuplot" function
-               (:user-visible-flag t
-                :arguments ("params"))
-                nil [9757 12816])
-            ("org-plot" package nil nil [12818 12837]))          
-      :file "org-plot.el"
-      :pointmax 12940
-      :fsize 12939
-      :lastmodtime '(23525 29592 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [962 979])
-            ("ob-core" include nil nil [980 998])
-            ("ob-table" include nil nil [999 1018])
-            ("declare-function" code nil nil [1020 1085])
-            ("declare-function" code nil nil [1086 1142])
-            ("declare-function" code nil nil [1143 1215])
-            ("declare-function" code nil nil [1216 1288])
-            ("declare-function" code nil nil [1289 1348])
-            ("org-babel-library-of-babel" variable nil nil [1350 1544])
-            ("org-babel-default-lob-header-args" variable (:default-value (quote ((:exports . "results")))) nil [1546 1912])
-            ("org-babel-lob-ingest" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [1914 2710])
-            ("org-babel-lob-execute-maybe" function (:user-visible-flag t) nil [2771 3125])
-            ("org-babel-lob--src-info" function (:arguments ("ref")) nil [3127 4569])
-            ("org-babel-lob-get-info" function (:arguments ("datum")) nil [4586 5981])
-            ("ob-lob" package nil nil [5983 6000]))          
-      :file "ob-lob.el"
-      :pointmax 6101
-      :fsize 6100
-      :lastmodtime '(23525 29587 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [3598 3612])
-            ("cl-lib" include nil nil [3613 3630])
-            ("declare-function" code nil nil [3677 3731])
-            ("declare-function" code nil nil [3732 3794])
-            ("declare-function" code nil nil [3795 3886])
-            ("declare-function" code nil nil [3887 3946])
-            ("declare-function" code nil nil [3947 4044])
-            ("declare-function" code nil nil [4045 4107])
-            ("declare-function" code nil nil [4108 4175])
-            ("declare-function" code nil nil [4176 4231])
-            ("declare-function" code nil nil [4232 4327])
-            ("declare-function" code nil nil [4328 4388])
-            ("declare-function" code nil nil [4389 4444])
-            ("declare-function" code nil nil [4445 4511])
-            ("declare-function" code nil nil [4512 4588])
-            ("declare-function" code nil nil [4589 4673])
-            ("declare-function" code nil nil [4719 4780])
-            ("declare-function" code nil nil [4838 4901])
-            ("declare-function" code nil nil [4903 4960])
-            ("declare-function" code nil nil [4961 5016])
-            ("with-no-warnings" code nil nil [5018 5050])
-            ("org-bbdb-anniversaries" customgroup (:user-visible-flag t) nil [5102 5228])
-            ("org-bbdb-default-anniversary-format" variable (:default-value "birthday") nil [5230 5386])
-            ("org-bbdb-general-anniversary-description-after" variable (:default-value 7) nil [5388 6050])
-            ("org-bbdb-anniversary-format-alist" variable (:default-value (quote (("birthday" lambda (name years suffix) (concat "Birthday: [[bbdb:" name "][" name " (" (format "%s" years) suffix ")]]")) ("wedding" lambda (name years suffix) (concat "[[bbdb:" name "][" name "'s " (format "%s" years) suffix " wedding anniversary]]"))))) nil [6052 7265])
-            ("org-bbdb-anniversary-field" variable (:default-value (quote anniversary)) nil [7267 7839])
-            ("org-bbdb-extract-date-fun" variable (:default-value (quote org-bbdb-anniv-extract-date)) nil [7841 8179])
-            ("org-link-set-parameters" code nil nil [8206 8368])
-            ("org-bbdb-store-link" function nil nil [8388 8944])
-            ("org-bbdb-export" function (:arguments ("path" "desc" "format")) nil [8946 9463])
-            ("org-bbdb-open" function (:arguments ("name")) nil [9465 9685])
-            ("org-bbdb-open-old" function (:arguments ("name")) nil [9687 10495])
-            ("org-bbdb-open-new" function (:arguments ("name")) nil [10497 11343])
-            ("org-bbdb-anniv-extract-date" function (:arguments ("time-str")) nil [11345 11760])
-            ("org-bbdb-anniv-split" function (:arguments ("str")) nil [11762 12050])
-            ("org-bbdb-anniv-hash" variable nil nil [12052 12178])
-            ("org-bbdb-updated-p" variable (:default-value t) nil [12180 12284])
-            ("org-bbdb-make-anniv-hash" function nil nil [12286 13552])
-            ("org-bbdb-updated" function (:arguments ("_rec")) nil [13554 13724])
-            ("add-hook" code nil nil [13726 13778])
-            ("org-bbdb-anniversaries" function nil nil [13795 15757])
-            ("org-bbdb-date-list" function (:arguments ("d" "n")) nil [16056 16330])
-            ("org-bbdb-anniversary-description" function (:arguments ("agenda-date" "anniv-date")) nil [16332 17240])
-            ("org-bbdb-anniversaries-future" function (:arguments ("n")) nil [17243 18865])
-            ("org-bbdb-complete-link" function nil nil [18867 19106])
-            ("org-bbdb-anniv-export-ical" function nil nil [19108 19551])
-            ("org-bbdb-format-vevent" function (:arguments ("key" "recs")) nil [19553 20133])
-            ("org-bbdb" package nil nil [20135 20154]))          
-      :file "org-bbdb.el"
-      :pointmax 20257
-      :fsize 20256
-      :lastmodtime '(23525 29589 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ox" include nil nil [912 925])
-            ("declare-function" code nil nil [926 992])
-            ("htmlize-output-type" variable nil nil [993 1021])
-            ("org-export-org" customgroup (:user-visible-flag t) nil [1023 1198])
-            ("org-org-htmlized-css-url" variable nil nil [1200 1934])
-            ("org-export-define-backend" code nil nil [1936 4091])
-            ("org-org--add-missing-sections" function (:arguments ("tree" "_backend" "_info")) nil [4093 4810])
-            ("org-org-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [4812 5072])
-            ("org-org-identity" function (:arguments ("blob" "contents" "_info")) nil [5074 5402])
-            ("org-org-headline" function (:arguments ("headline" "contents" "info")) nil [5404 6096])
-            ("org-org-keyword" function (:arguments ("keyword" "_contents" "_info")) nil [6098 6425])
-            ("org-org-link" function (:arguments ("link" "contents" "_info")) nil [6427 6740])
-            ("org-org-template" function (:arguments ("contents" "info")) nil [6742 8111])
-            ("org-org-section" function (:arguments ("section" "contents" "info")) nil [8113 9162])
-            ("org-org-export-as-org" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [9179 10338])
-            ("org-org-export-to-org" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [10355 11431])
-            ("org-org-publish-to-org" function (:arguments ("plist" "filename" "pub-dir")) nil [11448 12984])
-            ("ox-org" package nil nil [12987 13004]))          
-      :file "ox-org.el"
-      :pointmax 13105
-      :fsize 13104
-      :lastmodtime '(23525 29594 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [1452 1466])
-            ("org-agenda" include nil nil [1467 1488])
-            ("cl-lib" include nil nil [1489 1506])
-            ("org-agenda-keep-restricted-file-list" variable nil nil [1508 1553])
-            ("org-mobile" customgroup (:user-visible-flag t) nil [1566 1696])
-            ("org-mobile-files" variable (:default-value (quote (org-agenda-files))) nil [1698 2545])
-            ("org-mobile-files-exclude-regexp" variable nil nil [2547 2703])
-            ("org-mobile-directory" variable nil nil [2705 2856])
-            ("org-mobile-allpriorities" variable (:default-value "A B C") nil [2858 3047])
-            ("org-mobile-use-encryption" variable nil nil [3049 3543])
-            ("org-mobile-encryption-tempfile" variable (:default-value "~/orgtmpcrypt") nil [3545 3876])
-            ("org-mobile-encryption-password" variable nil nil [3878 4819])
-            ("org-mobile-encryption-password-session" variable nil nil [4821 4872])
-            ("org-mobile-encryption-password" function nil nil [4874 5134])
-            ("org-mobile-inbox-for-pull" variable (:default-value "~/org/from-mobile.org") nil [5136 5539])
-            ("org-mobile-capture-file" variable
-               (:constant-flag t
-                :default-value "mobileorg.org")
-                nil [5541 5727])
-            ("org-mobile-index-file" variable (:default-value "index.org") nil [5729 5997])
-            ("org-mobile-agendas" variable (:default-value (quote all)) nil [5999 6550])
-            ("org-mobile-force-id-on-agenda-items" variable (:default-value t) nil [6552 6692])
-            ("org-mobile-force-mobile-change" variable nil nil [6694 7366])
-            ("org-mobile-checksum-binary" variable (:default-value (or (executable-find "shasum") (executable-find "sha1sum") (executable-find "md5sum") (executable-find "md5"))) nil [7368 7636])
-            ("org-mobile-pre-push-hook" variable nil nil [7638 7957])
-            ("org-mobile-post-push-hook" variable nil nil [7959 8297])
-            ("org-mobile-pre-pull-hook" variable nil nil [8299 8625])
-            ("org-mobile-post-pull-hook" variable nil nil [8627 8975])
-            ("org-mobile-action-alist" variable
-               (:constant-flag t
-                :default-value (quote (("edit" . org-mobile-edit))))
-                nil [8977 9712])
-            ("org-mobile-last-flagged-files" variable nil nil [9714 9821])
-            ("org-mobile-files-alist" variable nil nil [9823 9858])
-            ("org-mobile-checksum-files" variable nil nil [9859 9897])
-            ("org-mobile-prepare-file-lists" function nil nil [9899 10035])
-            ("org-mobile-files-alist" function nil nil [10037 11760])
-            ("org-mobile-push" function (:user-visible-flag t) nil [11777 12930])
-            ("org-mobile-before-process-capture-hook" variable nil nil [12932 13164])
-            ("org-mobile-pull" function (:user-visible-flag t) nil [13181 14207])
-            ("org-mobile-check-setup" function nil nil [14209 15831])
-            ("org-mobile-create-index-file" function nil nil [15833 18251])
-            ("org-mobile-copy-agenda-files" function nil nil [18253 19760])
-            ("org-mobile-write-checksums" function nil nil [19762 20258])
-            ("org-mobile-sumo-agenda-command" function nil nil [20260 23076])
-            ("org-mobile-creating-agendas" variable nil nil [23078 23118])
-            ("org-mobile-write-agenda-for-mobile" function (:arguments ("file")) nil [23119 25255])
-            ("org-mobile-get-outline-path-link" function (:arguments ("pom")) nil [25257 25585])
-            ("org-mobile-escape-olp" function (:arguments ("s")) nil [25587 25678])
-            ("org-mobile-create-sumo-agenda" function (:user-visible-flag t) nil [25680 26395])
-            ("org-mobile-encrypt-and-move" function (:arguments ("infile" "outfile")) nil [26397 26820])
-            ("org-mobile-encrypt-file" function (:arguments ("infile" "outfile")) nil [26822 27226])
-            ("org-mobile-decrypt-file" function (:arguments ("infile" "outfile")) nil [27228 27635])
-            ("org-mobile-cleanup-encryption-tempfile" function nil nil [27637 27890])
-            ("org-mobile-move-capture" function (:user-visible-flag t) nil [27892 29410])
-            ("org-mobile-update-checksum-for-capture-file" function (:arguments ("buffer-string")) nil [29412 30008])
-            ("org-mobile-apply" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [30010 34155])
-            ("org-mobile-timestamp-buffer" function (:arguments ("buf")) nil [34157 34711])
-            ("org-mobile-smart-read" function nil nil [34713 36141])
-            ("org-mobile-locate-entry" function (:arguments ("link")) nil [36143 37051])
-            ("org-mobile-edit" function (:arguments ("what" "old" "new")) nil [37053 41317])
-            ("org-mobile-tags-same-p" function (:arguments ("list1" "list2")) nil [41319 41474])
-            ("org-mobile-bodies-same-p" function (:arguments ("a" "b")) nil [41476 42071])
-            ("org-mobile" package nil nil [42073 42094]))          
-      :file "org-mobile.el"
-      :pointmax 42199
-      :fsize 42198
-      :lastmodtime '(23525 29591 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-macs" include nil nil [1476 1495])
-            ("org-compat" include nil nil [1496 1517])
-            ("org" include nil nil [1518 1532])
-            ("cl-lib" include nil nil [1534 1551])
-            ("declare-function" code nil nil [1553 1621])
-            ("declare-function" code nil nil [1622 1685])
-            ("declare-function" code nil nil [1686 1748])
-            ("org-inlinetask-show-first-star" variable nil nil [1749 1788])
-            ("org-indent" customgroup (:user-visible-flag t) nil [1790 1909])
-            ("org-indent-inlinetask-first-star" variable (:default-value (org-add-props "*" (quote (face org-warning)))) nil [1911 2043])
-            ("org-indent-agent-timer" variable nil nil [2044 2119])
-            ("org-indent-agentized-buffers" variable nil nil [2120 2214])
-            ("org-indent-agent-resume-timer" variable nil nil [2215 2328])
-            ("org-indent-agent-active-delay" variable (:default-value (quote (0 2 0))) nil [2329 2493])
-            ("org-indent-agent-passive-delay" variable (:default-value (quote (0 0 400000))) nil [2494 2667])
-            ("org-indent-agent-resume-delay" variable (:default-value (quote (0 0 100000))) nil [2668 2794])
-            ("org-indent--initial-marker" variable nil nil [2795 2938])
-            ("org-hide-leading-stars-before-indent-mode" variable nil nil [2939 3011])
-            ("org-indent-modified-headline-flag" variable nil nil [3012 3175])
-            ("org-indent-boundary-char" variable (:default-value 32) nil [3178 3527])
-            ("org-indent-mode-turns-off-org-adapt-indentation" variable (:default-value t) nil [3529 3779])
-            ("org-indent-mode-turns-on-hiding-stars" variable (:default-value t) nil [3781 3968])
-            ("org-indent-indentation-per-level" variable (:default-value 2) nil [3970 4105])
-            ("org-indent" variable
-               (:default-value (quote ((t (:inherit org-hide))))
-                :type "face")
-                nil [4107 4323])
-            ("org-indent--text-line-prefixes" variable nil nil [4325 4430])
-            ("org-indent--heading-line-prefixes" variable nil nil [4432 4535])
-            ("org-indent--inlinetask-line-prefixes" variable nil nil [4537 4646])
-            ("org-indent--deepest-level" variable
-               (:constant-flag t
-                :default-value 50)
-                nil [4648 4727])
-            ("org-indent--compute-prefixes" function nil nil [4729 5997])
-            ("org-indent-remove-properties" function (:arguments ("beg" "end")) nil [5999 6198])
-            ("define-minor-mode" code nil nil [6215 8929])
-            ("org-indent-indent-buffer" function (:user-visible-flag t) nil [8931 9355])
-            ("org-indent-remove-properties-from-string" function (:arguments ("string")) nil [9357 9562])
-            ("org-indent-initialize-agent" function nil nil [9564 10525])
-            ("org-indent-initialize-buffer" function (:arguments ("buffer" "delay")) nil [10527 11372])
-            ("org-indent-set-line-properties" function (:arguments ("level" "indentation" "heading")) nil [11374 12349])
-            ("org-indent-add-properties" function (:arguments ("beg" "end" "delay")) nil [12351 14504])
-            ("org-indent-notify-modified-headline" function (:arguments ("beg" "end")) nil [14506 15130])
-            ("org-indent-refresh-maybe" function (:arguments ("beg" "end" "_")) nil [15132 16099])
-            ("org-indent" package nil nil [16101 16122]))          
-      :file "org-indent.el"
-      :pointmax 16227
-      :fsize 16226
-      :lastmodtime '(23525 29591 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [1911 1925])
-            ("declare-function" code nil nil [1927 1996])
-            ("declare-function" code nil nil [1997 2045])
-            ("declare-function" code nil nil [2046 2107])
-            ("declare-function" code nil nil [2108 2175])
-            ("declare-function" code nil nil [2176 2222])
-            ("declare-function" code nil nil [2223 2279])
-            ("declare-function" code nil nil [2280 2347])
-            ("declare-function" code nil nil [2348 2386])
-            ("declare-function" code nil nil [2387 2458])
-            ("declare-function" code nil nil [2459 2504])
-            ("org-irc-client" variable (:default-value (quote erc)) nil [2506 2564])
-            ("org-irc-link-to-logs" variable nil nil [2566 2677])
-            ("erc-default-port" variable nil nil [2679 2704])
-            ("erc-session-port" variable nil nil [2740 2765])
-            ("erc-session-server" variable nil nil [2809 2836])
-            ("org-link-set-parameters" code nil nil [2941 3024])
-            ("org-irc-visit" function (:arguments ("link")) nil [3026 3297])
-            ("org-irc-parse-link" function (:arguments ("link")) nil [3299 3778])
-            ("org-irc-store-link" function nil nil [3795 3969])
-            ("org-irc-ellipsify-description" function (:arguments ("string" "after")) nil [3971 4537])
-            ("org-irc-erc-get-line-from-log" function (:arguments ("erc-line")) nil [4566 5431])
-            ("org-irc-erc-store-link" function nil nil [5433 6693])
-            ("org-irc-get-erc-link" function nil nil [6695 7270])
-            ("org-irc-get-current-erc-port" function nil nil [7272 7589])
-            ("org-irc-visit-erc" function (:arguments ("link")) nil [7591 9097])
-            ("org-irc" package nil nil [9099 9117]))          
-      :file "org-irc.el"
-      :pointmax 9219
-      :fsize 9218
-      :lastmodtime '(23525 29591 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!org!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041play\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041play\041semantic.cache"
deleted file mode 100644
index 09d4c1b..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041play\041semantic.cache"
+++ /dev/null
@@ -1,1233 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gomoku" customgroup (:user-visible-flag t) nil [2607 2703])
-            ("gomoku-mode-hook" variable nil nil [2740 2940])
-            ("gomoku-buffer-name" variable
-               (:constant-flag t
-                :default-value "*Gomoku*")
-                nil [2975 3046])
-            ("gomoku-square-width" variable
-               (:constant-flag t
-                :default-value 4)
-                nil [3202 3294])
-            ("gomoku-square-height" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [3296 3387])
-            ("gomoku-x-offset" variable
-               (:constant-flag t
-                :default-value 3)
-                nil [3389 3492])
-            ("gomoku-y-offset" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [3494 3594])
-            ("gomoku-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "y" (quote gomoku-move-nw)) (define-key map "u" (quote gomoku-move-ne)) (define-key map "b" (quote gomoku-move-sw)) (define-key map "n" (quote gomoku-move-se)) (define-key map "h" (quote backward-char)) (define-key map "l" (quote forward-char)) (define-key map "j" (quote gomoku-move-down)) (define-key map "k" (quote gomoku-move-up)) (define-key map [kp-7] (quote gomoku-move-nw)) (define-key map [kp-9] (quote gomoku-move-ne)) (define-key map [kp-1] (quote gomoku-move-sw)) (define-key map [kp-3] (quote gomoku-move-se)) (define-key map [kp-4] (quote backward-char)) (define-key map [kp-6] (quote forward-char)) (define-key map [kp-2] (quote gomoku-move-down)) (define-key map [kp-8] (quote gomoku-move-up)) (define-key map "" (quote gomoku-move-down)) (define-key map "" (quote gomoku-move-up)) (define-key map "X" (quote gomoku-human-plays)) (define-key map "x" (quote gomoku-human-plays)) (define-key map " " (quote gomoku-human-plays)) (define-key map "
" (quote gomoku-human-plays)) (define-key map "" (quote gomoku-human-plays)) (define-key map "" (quote gomoku-human-takes-back)) (define-key map "" (quote gomoku-human-resigns)) (define-key map "" (quote gomoku-emacs-plays)) (define-key map [kp-enter] (quote gomoku-human-plays)) (define-key map [insert] (quote gomoku-human-plays)) (define-key map [down-mouse-1] (quote gomoku-click)) (define-key map [drag-mouse-1] (quote gomoku-click)) (define-key map [mouse-1] (quote gomoku-click)) (define-key map [down-mouse-2] (quote gomoku-click)) (define-key map [mouse-2] (quote gomoku-mouse-play)) (define-key map [drag-mouse-2] (quote gomoku-mouse-play)) (define-key map [remap previous-line] (quote gomoku-move-up)) (define-key map [remap next-line] (quote gomoku-move-down)) (define-key map [remap move-beginning-of-line] (quote gomoku-beginning-of-line)) (define-key map [remap move-end-of-line] (quote gomoku-end-of-line)) (define-key map [remap undo] (quote gomoku-human-takes-back)) (define-key map [remap advertised-undo] (quote gomoku-human-takes-back)) map)) nil [3597 5946])
-            ("gomoku-emacs-won" variable nil nil [5949 6038])
-            ("gomoku-O" variable
-               (:default-value (quote ((((class color)) (:foreground "red" :weight bold))))
-                :type "face")
-                nil [6040 6164])
-            ("gomoku-X" variable
-               (:default-value (quote ((((class color)) (:foreground "green" :weight bold))))
-                :type "face")
-                nil [6166 6289])
-            ("gomoku-font-lock-keywords" variable (:default-value (quote (("O" quote gomoku-O) ("X" quote gomoku-X) ("[-|/\\]" 0 (if gomoku-emacs-won (quote gomoku-O) (quote gomoku-X)))))) nil [6291 6462])
-            ("define-derived-mode" code nil nil [6582 7252])
-            ("gomoku-board-width" variable nil nil [7864 7938])
-            ("gomoku-board-height" variable nil nil [7940 8013])
-            ("gomoku-board" variable nil nil [8015 8099])
-            ("gomoku-vector-length" variable nil nil [8101 8171])
-            ("gomoku-draw-limit" variable nil nil [8173 8311])
-            ("gomoku-xy-to-index" function (:arguments ("x" "y")) nil [8314 8453])
-            ("gomoku-index-to-x" function (:arguments ("index")) nil [8455 8573])
-            ("gomoku-index-to-y" function (:arguments ("index")) nil [8575 8693])
-            ("gomoku-init-board" function nil nil [8695 9357])
-            ("gomoku-score-table" variable nil nil [9558 9648])
-            ("gomoku-nil-score" variable
-               (:constant-flag t
-                :default-value 7)
-                nil [11466 11526])
-            ("gomoku-Xscore" variable
-               (:constant-flag t
-                :default-value 15)
-                nil [11527 11594])
-            ("gomoku-XXscore" variable
-               (:constant-flag t
-                :default-value 400)
-                nil [11595 11665])
-            ("gomoku-XXXscore" variable
-               (:constant-flag t
-                :default-value 1800)
-                nil [11666 11744])
-            ("gomoku-XXXXscore" variable
-               (:constant-flag t
-                :default-value 100000)
-                nil [11745 11822])
-            ("gomoku-Oscore" variable
-               (:constant-flag t
-                :default-value 35)
-                nil [11823 11890])
-            ("gomoku-OOscore" variable
-               (:constant-flag t
-                :default-value 800)
-                nil [11891 11961])
-            ("gomoku-OOOscore" variable
-               (:constant-flag t
-                :default-value 15000)
-                nil [11962 12040])
-            ("gomoku-OOOOscore" variable
-               (:constant-flag t
-                :default-value 800000)
-                nil [12041 12118])
-            ("gomoku-score-trans-table" variable
-               (:constant-flag t
-                :default-value (vector gomoku-nil-score gomoku-Xscore gomoku-XXscore gomoku-XXXscore gomoku-XXXXscore 0 gomoku-Oscore 0 0 0 0 0 gomoku-OOscore 0 0 0 0 0 gomoku-OOOscore 0 0 0 0 0 gomoku-OOOOscore 0 0 0 0 0 0))
-                nil [13022 13393])
-            ("gomoku-winning-threshold" variable
-               (:constant-flag t
-                :default-value gomoku-OOOOscore)
-                nil [13817 13928])
-            ("gomoku-losing-threshold" variable
-               (:constant-flag t
-                :default-value gomoku-XXXXscore)
-                nil [13930 14039])
-            ("gomoku-strongest-square" function nil nil [14042 15508])
-            ("gomoku-saved-score-table" variable nil nil [16220 16309])
-            ("gomoku-saved-board-width" variable nil nil [16311 16392])
-            ("gomoku-saved-board-height" variable nil nil [16394 16477])
-            ("gomoku-init-score-table" function nil nil [16480 17891])
-            ("gomoku-nb-qtuples" function (:arguments ("i" "j")) nil [17893 18511])
-            ("gomoku-init-square-score" function (:arguments ("i" "j")) nil [18513 19002])
-            ("gomoku-update-score-table" function (:arguments ("square" "dval")) nil [19375 20536])
-            ("gomoku-update-score-in-direction" function (:arguments ("left" "right" "square" "dx" "dy" "dval")) nil [20538 22258])
-            ("gomoku-game-in-progress" variable nil nil [22551 22625])
-            ("gomoku-game-history" variable nil nil [22627 22728])
-            ("gomoku-number-of-moves" variable nil nil [22730 22817])
-            ("gomoku-number-of-human-moves" variable nil nil [22819 22921])
-            ("gomoku-emacs-played-first" variable nil nil [22923 22996])
-            ("gomoku-human-took-back" variable nil nil [22998 23088])
-            ("gomoku-human-refused-draw" variable nil nil [23090 23180])
-            ("gomoku-emacs-is-computing" variable nil nil [23182 23355])
-            ("gomoku-start-game" function (:arguments ("n" "m")) nil [23358 24115])
-            ("gomoku-play-move" function (:arguments ("square" "val" "dont-update-score")) nil [24117 24938])
-            ("gomoku-take-back" function nil nil [24940 25605])
-            ("gomoku-number-of-emacs-wins" variable nil nil [25638 25723])
-            ("gomoku-number-of-human-wins" variable nil nil [25725 25808])
-            ("gomoku-number-of-draws" variable nil nil [25810 25894])
-            ("gomoku-terminate-game" function (:arguments ("result")) nil [25897 27962])
-            ("gomoku-crash-game" function nil nil [27964 28202])
-            ("gomoku" function
-               (:user-visible-flag t
-                :arguments ("n" "m"))
-                nil [28255 30564])
-            ("gomoku-emacs-plays" function (:user-visible-flag t) nil [30566 31539])
-            ("gomoku-click" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [31679 32480])
-            ("gomoku-mouse-play" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [32482 32630])
-            ("gomoku-human-plays" function (:user-visible-flag t) nil [32632 33723])
-            ("gomoku-human-takes-back" function (:user-visible-flag t) nil [33725 34597])
-            ("gomoku-human-resigns" function (:user-visible-flag t) nil [34599 35087])
-            ("gomoku-prompt-for-move" function nil nil [35147 35367])
-            ("gomoku-prompt-for-other-game" function nil nil [35369 35560])
-            ("gomoku-offer-a-draw" function nil nil [35562 35751])
-            ("gomoku-max-width" function nil nil [35789 35964])
-            ("gomoku-max-height" function nil nil [35966 36212])
-            ("gomoku-point-y" function nil nil [36214 36403])
-            ("gomoku-point-square" function nil nil [36405 36640])
-            ("gomoku-goto-square" function (:arguments ("index")) nil [36642 36786])
-            ("gomoku-goto-xy" function (:arguments ("x" "y")) nil [36788 37022])
-            ("gomoku-plot-square" function (:arguments ("square" "value")) nil [37024 37515])
-            ("gomoku-init-display" function (:arguments ("n" "m")) nil [37531 38966])
-            ("gomoku-display-statistics" function nil nil [39012 39628])
-            ("gomoku-switch-to-window" function (:user-visible-flag t) nil [39630 40052])
-            ("gomoku-find-filled-qtuple" function (:arguments ("square" "value")) nil [40399 40720])
-            ("gomoku-check-filled-qtuple" function (:arguments ("square" "value" "dx" "dy")) nil [40722 41342])
-            ("gomoku-cross-qtuple" function (:arguments ("square1" "square2" "dx" "dy")) nil [41344 42508])
-            ("defvar-local" code nil nil [42556 42589])
-            ("gomoku--intangible-chars" variable
-               (:constant-flag t
-                :default-value "- 	
-|/\\\\")
-                nil [42591 42641])
-            ("gomoku--intangible" function nil nil [42643 43226])
-            ("gomoku-move-down" function (:user-visible-flag t) nil [43301 43553])
-            ("gomoku-move-up" function (:user-visible-flag t) nil [43555 43789])
-            ("gomoku-move-ne" function (:user-visible-flag t) nil [43791 43915])
-            ("gomoku-move-se" function (:user-visible-flag t) nil [43917 44043])
-            ("gomoku-move-nw" function (:user-visible-flag t) nil [44045 44170])
-            ("gomoku-move-sw" function (:user-visible-flag t) nil [44172 44299])
-            ("gomoku-beginning-of-line" function (:user-visible-flag t) nil [44301 44443])
-            ("gomoku-end-of-line" function (:user-visible-flag t) nil [44445 44639])
-            ("gomoku" package nil nil [44641 44658]))          
-      :file "gomoku.el"
-      :pointmax 44684
-      :fsize 44683
-      :lastmodtime '(23525 29595 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("bb-board" variable nil nil [2957 2998])
-            ("bb-x" variable (:default-value -1) nil [3000 3040])
-            ("bb-y" variable (:default-value -1) nil [3042 3082])
-            ("bb-score" variable nil nil [3084 3122])
-            ("bb-detour-count" variable nil nil [3124 3173])
-            ("bb-balls-placed" variable nil nil [3175 3237])
-            ("blackbox-redefine-key" function (:arguments ("map" "oldfun" "newfun")) nil [3485 3653])
-            ("blackbox-mode-map" variable (:default-value (let ((map (make-keymap))) (suppress-keymap map t) (blackbox-redefine-key map (quote backward-char) (quote bb-left)) (blackbox-redefine-key map (quote left-char) (quote bb-left)) (blackbox-redefine-key map (quote forward-char) (quote bb-right)) (blackbox-redefine-key map (quote right-char) (quote bb-right)) (blackbox-redefine-key map (quote previous-line) (quote bb-up)) (blackbox-redefine-key map (quote next-line) (quote bb-down)) (blackbox-redefine-key map (quote move-end-of-line) (quote bb-eol)) (blackbox-redefine-key map (quote move-beginning-of-line) (quote bb-bol)) (define-key map " " (quote bb-romp)) (define-key map "q" (quote bury-buffer)) (define-key map [insert] (quote bb-romp)) (define-key map [return] (quote bb-done)) (blackbox-redefine-key map (quote newline) (quote bb-done)) map)) nil [3656 4394])
-            ("define-derived-mode" code nil nil [4461 4924])
-            ("blackbox" function
-               (:user-visible-flag t
-                :arguments ("num"))
-                nil [4941 10224])
-            ("bb-init-board" function (:arguments ("num-balls")) nil [10226 10470])
-            ("bb-insert-board" function nil nil [10472 10800])
-            ("bb-right" function (:arguments ("count")) nil [10802 10960])
-            ("bb-left" function (:arguments ("count")) nil [10962 11121])
-            ("bb-up" function (:arguments ("count")) nil [11123 11297])
-            ("bb-down" function (:arguments ("count")) nil [11299 11470])
-            ("bb-eol" function nil nil [11472 11550])
-            ("bb-bol" function nil nil [11552 11631])
-            ("bb-romp" function nil nil [11633 11851])
-            ("bb-place-ball" function (:arguments ("x" "y")) nil [11853 12179])
-            ("bb-trace-ray" function (:arguments ("x" "y")) nil [12181 13264])
-            ("bb-trace-ray-2" function (:arguments ("first" "x" "dx" "y" "dy")) nil [13266 13683])
-            ("bb-done" function (:user-visible-flag t) nil [13685 14396])
-            ("bb-show-bogus-balls" function (:arguments ("balls-placed" "board")) nil [14398 14544])
-            ("bb-show-bogus-balls-2" function (:arguments ("list-1" "list-2" "c")) nil [14546 14824])
-            ("bb-outside-box" function (:arguments ("x" "y")) nil [14826 14895])
-            ("bb-goto" function (:arguments ("pos")) nil [14897 14972])
-            ("bb-update-board" function (:arguments ("c")) nil [14974 15136])
-            ("blackbox" package nil nil [15138 15157]))          
-      :file "blackbox.el"
-      :pointmax 15185
-      :fsize 15184
-      :lastmodtime '(23525 29594 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("bubbles-version" variable
-               (:constant-flag t
-                :default-value "0.5")
-                nil [2714 2778])
-            ("gamegrid" include nil nil [2780 2799])
-            ("bubbles-game-theme" variable (:default-value (quote easy)) nil [2903 3300])
-            ("bubbles-set-game-easy" function (:user-visible-flag t) nil [3302 3426])
-            ("bubbles-set-game-medium" function (:user-visible-flag t) nil [3428 3558])
-            ("bubbles-set-game-difficult" function (:user-visible-flag t) nil [3560 3699])
-            ("bubbles-set-game-hard" function (:user-visible-flag t) nil [3701 3825])
-            ("bubbles-set-game-userdefined" function (:user-visible-flag t) nil [3827 3974])
-            ("bubbles" customgroup (:user-visible-flag t) nil [3976 4042])
-            ("bubbles-graphics-theme" variable (:default-value (quote circles)) nil [4044 4516])
-            ("bubbles--grid-small" variable
-               (:constant-flag t
-                :default-value (quote (10 . 10)))
-                nil [4518 4594])
-            ("bubbles--grid-medium" variable
-               (:constant-flag t
-                :default-value (quote (15 . 10)))
-                nil [4596 4674])
-            ("bubbles--grid-large" variable
-               (:constant-flag t
-                :default-value (quote (20 . 15)))
-                nil [4676 4752])
-            ("bubbles--grid-huge" variable
-               (:constant-flag t
-                :default-value (quote (30 . 20)))
-                nil [4754 4828])
-            ("bubbles-grid-size" variable (:default-value bubbles--grid-medium) nil [4830 5293])
-            ("bubbles--colors-2" variable
-               (:constant-flag t
-                :default-value (quote ("orange" "violet")))
-                nil [5295 5395])
-            ("bubbles--colors-3" variable
-               (:constant-flag t
-                :default-value (quote ("lightblue" "palegreen" "pink")))
-                nil [5397 5512])
-            ("bubbles--colors-4" variable
-               (:constant-flag t
-                :default-value (quote ("firebrick" "sea green" "steel blue" "chocolate")))
-                nil [5514 5646])
-            ("bubbles--colors-5" variable
-               (:constant-flag t
-                :default-value (quote ("firebrick" "sea green" "steel blue" "sandy brown" "bisque3")))
-                nil [5648 5822])
-            ("bubbles-colors" variable (:default-value bubbles--colors-3) nil [5824 6372])
-            ("bubbles-chars" variable (:default-value (quote (43 79 35 88 46 42 38 167))) nil [6374 6617])
-            ("bubbles-shift-mode" variable (:default-value (quote default)) nil [6619 6912])
-            ("bubbles-mode-hook" variable nil nil [6914 7009])
-            ("bubbles-customize" function (:user-visible-flag t) nil [7011 7127])
-            ("bubbles--score" variable nil nil [7226 7278])
-            ("bubbles--neighborhood-score" variable nil nil [7280 7360])
-            ("bubbles--faces" variable nil nil [7362 7423])
-            ("bubbles--playing" variable nil nil [7425 7481])
-            ("bubbles--empty-image" variable nil nil [7483 7571])
-            ("bubbles--images" variable nil nil [7573 7633])
-            ("bubbles--images-ok" variable nil nil [7635 7726])
-            ("bubbles--col-offset" variable nil nil [7728 7812])
-            ("bubbles--row-offset" variable nil nil [7814 7896])
-            ("bubbles--save-data" variable nil nil [7898 7991])
-            ("bubbles--image-template-circle" variable
-               (:constant-flag t
-                :default-value "/* XPM */
-static char * dot_xpm[] = {
-\"20 20 2 1\",
-\" 	c None\",
-\".	c #FFFFFF\",
-\"       ......       \",
-\"     ..........     \",
-\"   ..............   \",
-\"  ................  \",
-\"  ................  \",
-\" .................. \",
-\" .................. \",
-\"....................\",
-\"....................\",
-\"....................\",
-\"....................\",
-\"....................\",
-\"....................\",
-\" .................. \",
-\" .................. \",
-\"  ................  \",
-\"  ................  \",
-\"   ..............   \",
-\"     ..........     \",
-\"       ......       \"};")
-                nil [7993 8643])
-            ("bubbles--image-template-square" variable
-               (:constant-flag t
-                :default-value "/* XPM */
-static char * dot_xpm[] = {
-\"20 20 2 1\",
-\"0	c None\",
-\"1	c #FFFFFF\",
-\"00000000000000000000\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"01111111111111111110\",
-\"00000000000000000000\"};")
-                nil [8645 9295])
-            ("bubbles--image-template-diamond" variable
-               (:constant-flag t
-                :default-value "/* XPM */
-static char * dot_xpm[] = {
-\"20 20 2 1\",
-\"0	c None\",
-\"1	c #FFFFFF\",
-\"00000000011000000000\",
-\"00000000111100000000\",
-\"00000001111110000000\",
-\"00000011111111000000\",
-\"00000111111111100000\",
-\"00001111111111110000\",
-\"00011111111111111000\",
-\"00111111111111111100\",
-\"01111111111111111110\",
-\"11111111111111111111\",
-\"01111111111111111110\",
-\"00111111111111111100\",
-\"00011111111111111000\",
-\"00001111111111110000\",
-\"00000111111111100000\",
-\"00000011111111000000\",
-\"00000001111110000000\",
-\"00000000111100000000\",
-\"00000000011000000000\",
-\"00000000000000000000\"};")
-                nil [9297 9948])
-            ("bubbles--image-template-emacs" variable
-               (:constant-flag t
-                :default-value "/* XPM */
-static char * emacs_24_xpm[] = {
-\"24 24 129 2\",
-\"  	c None\",
-\". 	c #837DA4\",
-\"+ 	c #807AA0\",
-\"@ 	c #9894B2\",
-\"# 	c #CCCAD9\",
-\"$ 	c #C2C0D2\",
-\"% 	c #B6B3C9\",
-\"& 	c #A19DB9\",
-\"* 	c #8681A5\",
-\"= 	c #7D779B\",
-\"- 	c #B6B3C7\",
-\"; 	c #ABA7BE\",
-\"> 	c #9792AF\",
-\", 	c #AAA6BD\",
-\"' 	c #CBC9D7\",
-\") 	c #AAA7BE\",
-\"! 	c #908BAA\",
-\"~ 	c #797397\",
-\"{ 	c #948FAC\",
-\"] 	c #9A95B1\",
-\"^ 	c #EBEAEF\",
-\"/ 	c #F1F1F5\",
-\"( 	c #BCB9CB\",
-\"_ 	c #A9A5BD\",
-\": 	c #757093\",
-\"< 	c #918DA9\",
-\"[ 	c #DDDBE4\",
-\"} 	c #FFFFFF\",
-\"| 	c #EAE9EF\",
-\"1 	c #A7A4BA\",
-\"2 	c #716C8F\",
-\"3 	c #8D89A5\",
-\"4 	c #9C98B1\",
-\"5 	c #DBDAE3\",
-\"6 	c #A4A1B7\",
-\"7 	c #6E698A\",
-\"8 	c #8B87A1\",
-\"9 	c #928EA7\",
-\"0 	c #C5C3D1\",
-\"a 	c #F8F8F9\",
-\"b 	c #CCCAD6\",
-\"c 	c #A29FB4\",
-\"d 	c #6A6585\",
-\"e 	c #88849D\",
-\"f 	c #B5B2C2\",
-\"g 	c #F0F0F3\",
-\"h 	c #E1E0E6\",
-\"i 	c #A5A2B5\",
-\"j 	c #A09DB1\",
-\"k 	c #676281\",
-\"l 	c #85819A\",
-\"m 	c #9591A7\",
-\"n 	c #E1E0E5\",
-\"o 	c #F0EFF2\",
-\"p 	c #B3B0C0\",
-\"q 	c #9D9AAE\",
-\"r 	c #635F7C\",
-\"s 	c #827F96\",
-\"t 	c #9997AA\",
-\"u 	c #F7F7F9\",
-\"v 	c #C8C7D1\",
-\"w 	c #89869D\",
-\"x 	c #9B99AB\",
-\"y 	c #5F5B78\",
-\"z 	c #7F7C93\",
-\"A 	c #CFCDD6\",
-\"B 	c #B7B5C2\",
-\"C 	c #9996A9\",
-\"D 	c #5C5873\",
-\"E 	c #7A778D\",
-\"F 	c #F5F5F6\",
-\"G 	c #8E8C9E\",
-\"H 	c #7D798F\",
-\"I 	c #58546F\",
-\"J 	c #6C6981\",
-\"K 	c #D5D4DB\",
-\"L 	c #F5F4F6\",
-\"M 	c #9794A5\",
-\"N 	c #625F78\",
-\"O 	c #79768C\",
-\"P 	c #55516A\",
-\"Q 	c #605C73\",
-\"R 	c #CAC9D1\",
-\"S 	c #EAE9EC\",
-\"T 	c #B4B3BE\",
-\"U 	c #777488\",
-\"V 	c #514E66\",
-\"W 	c #DEDEE2\",
-\"X 	c #F4F4F5\",
-\"Y 	c #9D9BA9\",
-\"Z 	c #747185\",
-\"` 	c #4E4B62\",
-\" .	c #DEDDE1\",
-\"..	c #A6A5B0\",
-\"+.	c #716F81\",
-\"@.	c #4A475D\",
-\"#.	c #A4A3AE\",
-\"$.	c #F4F3F5\",
-\"%.	c #777586\",
-\"&.	c #6E6C7D\",
-\"*.	c #464358\",
-\"=.	c #514E62\",
-\"-.	c #B9B8C0\",
-\";.	c #D1D0D5\",
-\">.	c #747282\",
-\",.	c #6B6979\",
-\"'.	c #434054\",
-\").	c #5A5769\",
-\"!.	c #D0CFD4\",
-\"~.	c #5B5869\",
-\"{.	c #696676\",
-\"].	c #403D50\",
-\"^.	c #DBDADE\",
-\"/.	c #F3F3F4\",
-\"(.	c #646271\",
-\"_.	c #666473\",
-\":.	c #3D3A4C\",
-\"<.	c #555362\",
-\"[.	c #9E9DA6\",
-\"}.	c #9E9CA5\",
-\"|.	c #646170\",
-\"1.	c #393647\",
-\"2.	c #514E5D\",
-\"3.	c #83818C\",
-\"4.	c #A8A7AE\",
-\"5.	c #E6E6E8\",
-\"6.	c #DAD9DC\",
-\"7.	c #353343\",
-\"8.	c #32303E\",
-\"      . . . . . . . . . . . . . . . . . .       \",
-\"  + @ # $ % % % % % % % % % % % % % % & * + +   \",
-\"  = - ; > > > > > > > > , ' ) > > > > > > ! =   \",
-\"~ ~ { { { { { { { { { { { ] ^ / ( { { { { _ ~ ~ \",
-\": : < < < < < < < < < < < < [ } } | < < < 1 : : \",
-\"2 2 3 3 3 3 3 3 3 3 3 3 4 5 } } } 5 3 3 3 6 2 2 \",
-\"7 7 8 8 8 8 8 8 8 8 9 0 a } } } b 8 8 8 8 c 7 7 \",
-\"d d e e e e e e e f g } } } h i e e e e e j d d \",
-\"k k l l l l l m n } } } o p l l l l l l l q k k \",
-\"r r s s s s t u } } } v w s s s s s s s s x r r \",
-\"y y z z z z A } } } B z z z z z z z z z z C y y \",
-\"D D D D D D E F } } G D D D D D D D D D D H D D \",
-\"I I I I I I I J K } L M N I I I I I I I I O I I \",
-\"P P P P P P Q R } } } S T P P P P P P P P U P P \",
-\"V V V V V V W } } X Y V V V V V V V V V V Z V V \",
-\"` ` ` ` ` `  .} } ..` ` ` ` ` ` ` ` ` ` ` +.` ` \",
-\"@.@.@.@.@.@.@.#.$.$.%.@.@.@.@.@.@.@.@.@.@.&.@.@.\",
-\"*.*.*.*.*.*.*.*.=.-.} ;.>.*.*.*.*.*.*.*.*.,.*.*.\",
-\"'.'.'.'.'.'.'.'.'.'.).!.} !.~.'.'.'.'.'.'.{.'.'.\",
-\"].].].].].].].].].].].].^.} /.(.].].].].]._.].].\",
-\":.:.:.:.:.:.:.:.:.:.<.[./.} } }.:.:.:.:.:.|.:.:.\",
-\"  1.1.1.1.1.1.1.1.2.3.4.5.6.3.1.1.1.1.1.1.1.1.  \",
-\"  7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.7.  \",
-\"      8.8.8.8.8.8.8.8.8.8.8.8.8.8.8.8.8.8.      \"};")
-                nil [9950 13670])
-            ("bubbles--image-template-ball" variable
-               (:constant-flag t
-                :default-value "/* XPM */
-static char * dot3d_xpm[] = {
-\"20 20 190 2\",
-\"  	c None\",
-\". 	c #F9F6F6\",
-\"+ 	c #D6D0D0\",
-\"@ 	c #BFBBBB\",
-\"# 	c #AAA4A4\",
-\"$ 	c #ABAAAB\",
-\"% 	c #A8A8A8\",
-\"& 	c #A29D9D\",
-\"* 	c #B5B2B2\",
-\"= 	c #CDC9C9\",
-\"- 	c #D7D0D0\",
-\"; 	c #B3AFAF\",
-\"> 	c #B5B5B5\",
-\", 	c #B7B7B7\",
-\"' 	c #B8B8B8\",
-\") 	c #B6B6B6\",
-\"! 	c #B3B3B3\",
-\"~ 	c #AFAFAF\",
-\"{ 	c #A9A9A9\",
-\"] 	c #A2A2A2\",
-\"^ 	c #9C9A9A\",
-\"/ 	c #C9C5C5\",
-\"( 	c #FDFBFB\",
-\"_ 	c #C3BCBC\",
-\": 	c #BBBBBB\",
-\"< 	c #C0C0C0\",
-\"[ 	c #C3C2C2\",
-\"} 	c #C3C3C3\",
-\"| 	c #C2C2C2\",
-\"1 	c #BEBEBE\",
-\"2 	c #B9B9B9\",
-\"3 	c #B2B2B2\",
-\"4 	c #ABAAAA\",
-\"5 	c #999999\",
-\"6 	c #ACA7A7\",
-\"7 	c #C2BBBB\",
-\"8 	c #C5C5C5\",
-\"9 	c #CACBCB\",
-\"0 	c #CECECE\",
-\"a 	c #CFCFCF\",
-\"b 	c #CDCDCD\",
-\"c 	c #C8C9C9\",
-\"d 	c #9F9F9F\",
-\"e 	c #959595\",
-\"f 	c #A9A5A5\",
-\"g 	c #D5CFCE\",
-\"h 	c #BDBDBD\",
-\"i 	c #C6C6C6\",
-\"j 	c #D5D5D5\",
-\"k 	c #D9D9D9\",
-\"l 	c #DADADA\",
-\"m 	c #D8D8D8\",
-\"n 	c #D2D2D2\",
-\"o 	c #CBCBCB\",
-\"p 	c #A4A4A5\",
-\"q 	c #9A9A9A\",
-\"r 	c #8F8F8F\",
-\"s 	c #C3BFBF\",
-\"t 	c #AFACAB\",
-\"u 	c #CCCCCC\",
-\"v 	c #D6D6D6\",
-\"w 	c #DEDEDE\",
-\"x 	c #E4E4E4\",
-\"y 	c #E5E5E5\",
-\"z 	c #E2E2E2\",
-\"A 	c #DBDBDB\",
-\"B 	c #C9C8C8\",
-\"C 	c #A8A9A8\",
-\"D 	c #9D9E9D\",
-\"E 	c #929292\",
-\"F 	c #8A8888\",
-\"G 	c #D3CECE\",
-\"H 	c #B0B0B0\",
-\"I 	c #D1D1D1\",
-\"J 	c #DCDCDC\",
-\"K 	c #E6E6E6\",
-\"L 	c #EEEEEE\",
-\"M 	c #F1F1F0\",
-\"N 	c #EBEBEB\",
-\"O 	c #D7D7D8\",
-\"P 	c #ABABAB\",
-\"Q 	c #A0A0A0\",
-\"R 	c #949494\",
-\"S 	c #898989\",
-\"T 	c #C0BDBD\",
-\"U 	c #B9B6B6\",
-\"V 	c #B1B1B1\",
-\"W 	c #BCBCBC\",
-\"X 	c #C8C8C8\",
-\"Y 	c #D3D3D3\",
-\"Z 	c #DFDFDE\",
-\"` 	c #EAEAEA\",
-\" .	c #F5F5F5\",
-\"..	c #FAFAFA\",
-\"+.	c #F1F1F1\",
-\"@.	c #CECFCF\",
-\"#.	c #ACACAC\",
-\"$.	c #A1A1A1\",
-\"%.	c #8A8A8A\",
-\"&.	c #9B9999\",
-\"*.	c #C7C7C7\",
-\"=.	c #DDDDDD\",
-\"-.	c #E8E8E8\",
-\";.	c #F2F2F2\",
-\">.	c #898A89\",
-\",.	c #7A7878\",
-\"'.	c #AEAEAE\",
-\").	c #C4C4C4\",
-\"!.	c #CBCBCA\",
-\"~.	c #AAAAAA\",
-\"{.	c #939393\",
-\"].	c #888888\",
-\"^.	c #7C7C7C\",
-\"/.	c #AAAAAB\",
-\"(.	c #BFBFBF\",
-\"_.	c #C9C9C9\",
-\":.	c #DFDEDF\",
-\"<.	c #A6A6A6\",
-\"[.	c #9B9B9B\",
-\"}.	c #909191\",
-\"|.	c #858586\",
-\"1.	c #797979\",
-\"2.	c #989494\",
-\"3.	c #A5A6A5\",
-\"4.	c #B9B9B8\",
-\"5.	c #C1C1C1\",
-\"6.	c #CFCFCE\",
-\"7.	c #979797\",
-\"8.	c #8D8D8D\",
-\"9.	c #828282\",
-\"0.	c #747171\",
-\"a.	c #ADAAAA\",
-\"b.	c #A9A8A9\",
-\"c.	c #B8B9B9\",
-\"d.	c #A5A5A5\",
-\"e.	c #9C9C9C\",
-\"f.	c #7E7E7D\",
-\"g.	c #929191\",
-\"h.	c #C9C4C4\",
-\"i.	c #989898\",
-\"j.	c #ADADAD\",
-\"k.	c #9D9D9D\",
-\"l.	c #8C8C8C\",
-\"m.	c #787878\",
-\"n.	c #B8B6B6\",
-\"o.	c #939191\",
-\"p.	c #A5A5A6\",
-\"q.	c #ABABAA\",
-\"r.	c #A8A8A9\",
-\"s.	c #A3A3A3\",
-\"t.	c #858585\",
-\"u.	c #757474\",
-\"v.	c #C5C1C1\",
-\"w.	c #969696\",
-\"x.	c #9B9B9C\",
-\"y.	c #A4A4A4\",
-\"z.	c #9E9E9E\",
-\"A.	c #939394\",
-\"B.	c #7D7D7D\",
-\"C.	c #747474\",
-\"D.	c #B7B5B5\",
-\"E.	c #A5A1A1\",
-\"F.	c #919191\",
-\"G.	c #9A9999\",
-\"H.	c #838383\",
-\"I.	c #757575\",
-\"J.	c #939090\",
-\"K.	c #A29E9E\",
-\"L.	c #868686\",
-\"M.	c #8D8D8C\",
-\"N.	c #8E8E8E\",
-\"O.	c #8D8D8E\",
-\"P.	c #8B8C8C\",
-\"Q.	c #848485\",
-\"R.	c #7F7F80\",
-\"S.	c #7A7A7A\",
-\"T.	c #737373\",
-\"U.	c #929090\",
-\"V.	c #828080\",
-\"W.	c #818181\",
-\"X.	c #808080\",
-\"Y.	c #7E7E7E\",
-\"Z.	c #737272\",
-\"`.	c #B7B4B4\",
-\" +	c #BCBABA\",
-\".+	c #959494\",
-\"++	c #747172\",
-\"@+	c #767676\",
-\"#+	c #6F6D6D\",
-\"$+	c #8F8E8E\",
-\"          . + @ # $ % & * = .           \",
-\"        - ; > , ' ) ! ~ { ] ^ /         \",
-\"    ( _ > : < [ } | 1 2 3 4 ] 5 6 (     \",
-\"    7 ) 1 8 9 0 a b c | : 3 { d e f     \",
-\"  g ! h i 0 j k l m n o | 2 ~ p q r s   \",
-\". t ' | u v w x y z A n B 1 ! C D E F . \",
-\"G H : i I J K L M N z O b | ) P Q R S T \",
-\"U V W X Y Z `  ...+.y l @.} ' #.$.e %.&.\",
-\"& H W *.n =.-.;. .L x k 0 [ , #.Q e >.,.\",
-\"] '.2 ).a k z -.` K w j !.< > ~.d {.].^.\",
-\"d /.> (._.I k =.:.J v 0 8 : V <.[.}.|.1.\",
-\"2.3.~ 4.5._.6.n Y I u i 1 > P $.7.8.9.0.\",
-\"a.d b.V c.(.).*.X i | h ) '.d.e.E ].f.g.\",
-\"h.i.$.C ~ > 2 W W : ' ! j.d.k.e l.9.m.n.\",
-\". o.i.d p.q.'.H V H j.r.s.k.e 8.t.^.u.. \",
-\"  v.r w.x.Q s.d.d.y.] z.5 A.8.t.B.C.D.  \",
-\"    E.l.F.e i.G.q 5 7.{.r %.H.^.I.J.    \",
-\"    ( K.L.%.M.N.N.O.P.S Q.R.S.T.U.(     \",
-\"        @ V.W.H.H.9.X.Y.S.I.Z.`.        \",
-\"          .  +.+++@+C.#+$+D..           \"};")
-                nil [13672 18110])
-            ("bubbles--grid-width" function nil nil [18200 18570])
-            ("bubbles--grid-height" function nil nil [18572 18944])
-            ("bubbles--colors" function nil nil [18946 19245])
-            ("bubbles--shift-mode" function nil nil [19247 19516])
-            ("bubbles-save-settings" function (:user-visible-flag t) nil [19518 19792])
-            ("bubbles--empty-char" function nil nil [19794 19896])
-            ("bubbles-set-graphics-theme-ascii" function (:user-visible-flag t) nil [19898 20067])
-            ("bubbles-set-graphics-theme-circles" function (:user-visible-flag t) nil [20069 20275])
-            ("bubbles-set-graphics-theme-squares" function (:user-visible-flag t) nil [20277 20483])
-            ("bubbles-set-graphics-theme-diamonds" function (:user-visible-flag t) nil [20485 20694])
-            ("bubbles-set-graphics-theme-balls" function (:user-visible-flag t) nil [20696 20896])
-            ("bubbles-set-graphics-theme-emacs" function (:user-visible-flag t) nil [20898 21098])
-            ("bubbles-game-theme-menu" variable (:default-value (let ((menu (make-sparse-keymap "Game Theme"))) (define-key menu [bubbles-set-game-userdefined] (list (quote menu-item) "User defined" (quote bubbles-set-game-userdefined) :button (quote (:radio eq bubbles-game-theme (quote user-defined))))) (define-key menu [bubbles-set-game-hard] (list (quote menu-item) "Hard" (quote bubbles-set-game-hard) :button (quote (:radio eq bubbles-game-theme (quote hard))))) (define-key menu [bubbles-set-game-difficult] (list (quote menu-item) "Difficult" (quote bubbles-set-game-difficult) :button (quote (:radio eq bubbles-game-theme (quote difficult))))) (define-key menu [bubbles-set-game-medium] (list (quote menu-item) "Medium" (quote bubbles-set-game-medium) :button (quote (:radio eq bubbles-game-theme (quote medium))))) (define-key menu [bubbles-set-game-easy] (list (quote menu-item) "Easy" (quote bubbles-set-game-easy) :button (quote (:radio eq bubbles-game-theme (quote easy))))) menu)) nil [21119 22116])
-            ("bubbles-graphics-theme-menu" variable (:default-value (let ((menu (make-sparse-keymap "Graphics Theme"))) (define-key menu [bubbles-set-graphics-theme-ascii] (list (quote menu-item) "ASCII" (quote bubbles-set-graphics-theme-ascii) :button (quote (:radio eq bubbles-graphics-theme (quote ascii))))) (define-key menu [bubbles-set-graphics-theme-emacs] (list (quote menu-item) "Emacs" (quote bubbles-set-graphics-theme-emacs) :button (quote (:radio eq bubbles-graphics-theme (quote emacs))))) (define-key menu [bubbles-set-graphics-theme-balls] (list (quote menu-item) "Balls" (quote bubbles-set-graphics-theme-balls) :button (quote (:radio eq bubbles-graphics-theme (quote balls))))) (define-key menu [bubbles-set-graphics-theme-diamonds] (list (quote menu-item) "Diamonds" (quote bubbles-set-graphics-theme-diamonds) :button (quote (:radio eq bubbles-graphics-theme (quote diamonds))))) (define-key menu [bubbles-set-graphics-theme-squares] (list (quote menu-item) "Squares" (quote bubbles-set-graphics-theme-squares) :button (quote (:radio eq bubbles-graphics-theme (quote squares))))) (define-key menu [bubbles-set-graphics-theme-circles] (list (quote menu-item) "Circles" (quote bubbles-set-graphics-theme-circles) :button (quote (:radio eq bubbles-graphics-theme (quote circles))))) menu)) nil [22141 23452])
-            ("bubbles-menu" variable (:default-value (let ((menu (make-sparse-keymap "Bubbles"))) (define-key menu [bubbles-quit] (list (quote menu-item) "Quit" (quote bubbles-quit))) (define-key menu [bubbles] (list (quote menu-item) "New game" (quote bubbles))) (define-key menu [bubbles-separator-1] (quote ("--"))) (define-key menu [bubbles-save-settings] (list (quote menu-item) "Save all settings" (quote bubbles-save-settings))) (define-key menu [bubbles-customize] (list (quote menu-item) "Edit all settings" (quote bubbles-customize))) (define-key menu [bubbles-game-theme-menu] (list (quote menu-item) "Game Theme" bubbles-game-theme-menu)) (define-key menu [bubbles-graphics-theme-menu] (list (quote menu-item) "Graphics Theme" bubbles-graphics-theme-menu :enable (quote bubbles--playing))) (define-key menu [bubbles-separator-2] (quote ("--"))) (define-key menu [bubbles-undo] (list (quote menu-item) "Undo last move" (quote bubbles-undo) :enable (quote (and bubbles--playing (listp buffer-undo-list))))) menu)) nil [23462 24487])
-            ("bubbles-mode-map" variable (:default-value (let ((map (make-sparse-keymap (quote bubbles-mode-map)))) (define-key map "q" (quote bubbles-quit)) (define-key map "
-" (quote bubbles-plop)) (define-key map " " (quote bubbles-plop)) (define-key map [double-down-mouse-1] (quote bubbles-plop)) (define-key map [mouse-2] (quote bubbles-plop)) (define-key map "
" (quote bubbles-plop)) (define-key map "u" (quote bubbles-undo)) (define-key map "p" (quote previous-line)) (define-key map "n" (quote next-line)) (define-key map "f" (quote forward-char)) (define-key map "b" (quote backward-char)) (define-key map [down-mouse-3] bubbles-menu) (define-key map [menu-bar Bubbles] (cons "Bubbles" bubbles-menu)) map)) nil [24509 25282])
-            ("define-derived-mode" code nil nil [25284 25583])
-            ("bubbles" function (:user-visible-flag t) nil [25600 26418])
-            ("bubbles-quit" function (:user-visible-flag t) nil [26420 26520])
-            ("declare-function" code nil nil [26522 26591])
-            ("bubbles--compute-offsets" function nil nil [26593 28062])
-            ("bubbles--remove-overlays" function nil nil [28064 28182])
-            ("bubbles--initialize" function nil nil [28184 29651])
-            ("bubbles--initialize-faces" function nil nil [29653 30223])
-            ("bubbles--row" function (:arguments ("pos")) nil [30225 30389])
-            ("bubbles--col" function (:arguments ("pos")) nil [30391 30517])
-            ("bubbles--goto" function (:arguments ("row" "col")) nil [30519 30871])
-            ("bubbles--char-at" function (:arguments ("row" "col")) nil [30873 31042])
-            ("bubbles--mark-direct-neighbors" function (:arguments ("row" "col" "char")) nil [31044 31808])
-            ("bubbles--mark-neighborhood" function (:arguments ("pos")) nil [31810 32860])
-            ("bubbles--neighborhood-available" function nil nil [32862 33353])
-            ("bubbles--count" function nil nil [33355 33684])
-            ("bubbles--reset-score" function nil nil [33686 33832])
-            ("bubbles--update-score" function nil nil [33834 34007])
-            ("bubbles--update-neighborhood-score" function (:arguments ("size")) nil [34009 34273])
-            ("bubbles--show-scores" function nil nil [34275 34901])
-            ("bubbles--game-over" function nil nil [34903 35883])
-            ("bubbles-plop" function (:user-visible-flag t) nil [35885 39391])
-            ("bubbles-undo" function (:user-visible-flag t) nil [39393 39790])
-            ("bubbles--shift" function (:arguments ("from" "row" "col")) nil [39792 40846])
-            ("bubbles--initialize-images" function nil nil [40848 43908])
-            ("bubbles--update-faces-or-images" function nil nil [43910 44060])
-            ("bubbles--set-faces" function nil nil [44062 44884])
-            ("bubbles--show-images" function nil nil [44886 46203])
-            ("bubbles" package nil nil [46205 46223]))          
-      :file "bubbles.el"
-      :pointmax 46250
-      :fsize 46250
-      :lastmodtime '(23525 29594 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("gamegrid-use-glyphs" variable (:default-value t) nil [1029 1104])
-            ("gamegrid-use-color" variable (:default-value t) nil [1106 1179])
-            ("gamegrid-font" variable (:default-value "-*-courier-medium-r-*-*-*-140-100-75-*-*-iso8859-*") nil [1181 1293])
-            ("gamegrid-face" variable nil nil [1295 1365])
-            ("make-variable-buffer-local" code nil nil [1366 1409])
-            ("gamegrid-display-options" variable nil nil [1411 1448])
-            ("gamegrid-buffer-width" variable nil nil [1450 1482])
-            ("gamegrid-buffer-height" variable nil nil [1483 1516])
-            ("gamegrid-blank" variable nil nil [1517 1542])
-            ("gamegrid-timer" variable nil nil [1544 1571])
-            ("gamegrid-display-mode" variable nil nil [1573 1607])
-            ("gamegrid-display-table" variable nil nil [1609 1640])
-            ("gamegrid-face-table" variable nil nil [1642 1674])
-            ("gamegrid-buffer-start" variable (:default-value 1) nil [1676 1708])
-            ("gamegrid-score-file-length" variable (:default-value 50) nil [1710 1783])
-            ("gamegrid-user-score-file-directory" variable (:default-value (locate-user-emacs-file "games/")) nil [1785 2012])
-            ("make-variable-buffer-local" code nil nil [2014 2063])
-            ("make-variable-buffer-local" code nil nil [2064 2112])
-            ("make-variable-buffer-local" code nil nil [2113 2156])
-            ("make-variable-buffer-local" code nil nil [2157 2211])
-            ("make-variable-buffer-local" code nil nil [2212 2263])
-            ("make-variable-buffer-local" code nil nil [2264 2316])
-            ("make-variable-buffer-local" code nil nil [2317 2361])
-            ("make-variable-buffer-local" code nil nil [2362 2406])
-            ("make-variable-buffer-local" code nil nil [2407 2458])
-            ("make-variable-buffer-local" code nil nil [2459 2511])
-            ("make-variable-buffer-local" code nil nil [2512 2561])
-            ("make-variable-buffer-local" code nil nil [2562 2613])
-            ("make-variable-buffer-local" code nil nil [2614 2670])
-            ("gamegrid-grid-x-face" variable nil nil [2752 2785])
-            ("gamegrid-mono-x-face" variable nil nil [2786 2819])
-            ("gamegrid-mono-tty-face" variable nil nil [2820 2855])
-            ("gamegrid-glyph-height" variable
-               (:constant-flag t
-                :default-value 16)
-                nil [2937 2972])
-            ("gamegrid-xpm" variable
-               (:constant-flag t
-                :default-value "/* XPM */
-static char *noname[] = {
-/* width height ncolors chars_per_pixel */
-\"16 16 3 1\",
-/* colors */
-\"+ s col1\",
-\". s col2\",
-\"- s col3\",
-/* pixels */
-\"---------------+\",
-\"--------------++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"--............++\",
-\"-+++++++++++++++\",
-\"++++++++++++++++\"
-};
-")
-                nil [2974 3560])
-            ("gamegrid-xbm" variable (:default-value "/* gamegrid XBM */
-#define gamegrid_width 16
-#define gamegrid_height 16
-static unsigned char gamegrid_bits[] = {
-   0xff, 0xff, 0xff, 0x7f, 0xff, 0x3f, 0xaf, 0x0a, 0x57, 0x15, 0xaf, 0x0a,
-   0x57, 0x15, 0xaf, 0x0a, 0x57, 0x15, 0xaf, 0x0a, 0x57, 0x15, 0xaf, 0x0a,
-   0x57, 0x15, 0x07, 0x00, 0x03, 0x00, 0x01, 0x00 };") nil [3562 3946])
-            ("gamegrid-characterp" function (:arguments ("arg")) nil [4028 4135])
-            ("gamegrid-event-x" function (:arguments ("event")) nil [4137 4263])
-            ("gamegrid-event-y" function (:arguments ("event")) nil [4265 4391])
-            ("gamegrid-color" function (:arguments ("color" "shade")) nil [4473 4662])
-            ("gamegrid-set-font" function (:arguments ("face")) nil [4664 4795])
-            ("gamegrid-setup-face" function (:arguments ("face" "color")) nil [4797 5123])
-            ("gamegrid-make-mono-tty-face" function nil nil [5125 5261])
-            ("gamegrid-make-color-tty-face" function (:arguments ("color")) nil [5263 5520])
-            ("gamegrid-make-grid-x-face" function nil nil [5522 5649])
-            ("gamegrid-make-mono-x-face" function nil nil [5651 5918])
-            ("gamegrid-make-color-x-face" function (:arguments ("color")) nil [5920 6134])
-            ("gamegrid-make-face" function (:arguments ("data-spec-list" "color-spec-list")) nil [6136 6872])
-            ("gamegrid-colorize-glyph" function (:arguments ("color")) nil [6874 7301])
-            ("gamegrid-match-spec" function (:arguments ("spec")) nil [7303 7559])
-            ("gamegrid-match-spec-list" function (:arguments ("spec-list")) nil [7561 7720])
-            ("gamegrid-make-glyph" function (:arguments ("data-spec-list" "color-spec-list")) nil [7722 8126])
-            ("gamegrid-make-image-from-vector" function (:arguments ("vect")) nil [8128 8379])
-            ("gamegrid-display-type" function nil nil [8381 8738])
-            ("gamegrid-set-display-table" function nil nil [8740 9001])
-            ("declare-function" code nil nil [9003 9072])
-            ("gamegrid-setup-default-font" function nil nil [9074 10063])
-            ("gamegrid-initialize-display" function nil nil [10065 10623])
-            ("gamegrid-set-face" function (:arguments ("c")) nil [10626 10913])
-            ("gamegrid-cell-offset" function (:arguments ("x" "y")) nil [10915 11022])
-            ("gamegrid-get-cell" function (:arguments ("x" "y")) nil [11104 11177])
-            ("gamegrid-set-cell" function (:arguments ("x" "y" "c")) nil [11179 11385])
-            ("gamegrid-init-buffer" function (:arguments ("width" "height" "blank")) nil [11387 12055])
-            ("gamegrid-init" function (:arguments ("options")) nil [12057 12257])
-            ("gamegrid-start-timer" function (:arguments ("period" "func")) nil [12339 12604])
-            ("gamegrid-set-timer" function (:arguments ("delay")) nil [12606 12890])
-            ("gamegrid-kill-timer" function nil nil [12892 13081])
-            ("gamegrid-add-score" function (:arguments ("file" "score")) nil [13163 14183])
-            ("gamegrid-shared-game-dir" variable nil nil [15411 15444])
-            ("gamegrid-add-score-with-update-game-score" function (:arguments ("file" "score")) nil [15446 16418])
-            ("gamegrid-add-score-with-update-game-score-1" function (:arguments ("file" "target" "score")) nil [16420 17806])
-            ("gamegrid-add-score-insecure" function (:arguments ("file" "score" "directory")) nil [17808 18575])
-            ("gamegrid" package nil nil [18658 18677]))          
-      :file "gamegrid.el"
-      :pointmax 18705
-      :fsize 18704
-      :lastmodtime '(23525 29595 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [951 968])
-            ("gamegrid" include nil nil [971 990])
-            ("pong" customgroup (:user-visible-flag t) nil [1011 1118])
-            ("pong-buffer-name" variable (:default-value "*Pong*") nil [1120 1227])
-            ("pong-width" variable (:default-value 50) nil [1229 1316])
-            ("pong-height" variable (:default-value (min 30 (- (frame-height) 6))) nil [1318 1434])
-            ("pong-bat-width" variable (:default-value 3) nil [1436 1530])
-            ("pong-blank-color" variable (:default-value "black") nil [1532 1629])
-            ("pong-bat-color" variable (:default-value "yellow") nil [1631 1721])
-            ("pong-ball-color" variable (:default-value "red") nil [1723 1815])
-            ("pong-border-color" variable (:default-value "white") nil [1817 1917])
-            ("pong-left-key" variable (:default-value "4") nil [1919 2099])
-            ("pong-right-key" variable (:default-value "6") nil [2101 2285])
-            ("pong-up-key" variable (:default-value "8") nil [2287 2463])
-            ("pong-down-key" variable (:default-value "2") nil [2465 2647])
-            ("pong-quit-key" variable (:default-value "q") nil [2649 2789])
-            ("pong-pause-key" variable (:default-value "p") nil [2791 2933])
-            ("pong-resume-key" variable (:default-value "p") nil [2935 3079])
-            ("pong-timer-delay" variable (:default-value 0.1) nil [3081 3182])
-            ("pong-blank-options" variable (:default-value (quote (((glyph colorize) (t 32)) ((color-x color-x) (mono-x grid-x) (color-tty color-tty)) (((glyph color-x) [0 0 0]) (color-tty pong-blank-color))))) nil [3231 3435])
-            ("pong-bat-options" variable (:default-value (quote (((glyph colorize) (emacs-tty 79) (t 32)) ((color-x color-x) (mono-x mono-x) (color-tty color-tty) (mono-tty mono-tty)) (((glyph color-x) [1 1 0]) (color-tty pong-bat-color))))) nil [3437 3682])
-            ("pong-ball-options" variable (:default-value (quote (((glyph colorize) (t 42)) ((color-x color-x) (mono-x grid-x) (color-tty color-tty)) (((glyph color-x) [1 0 0]) (color-tty pong-ball-color))))) nil [3684 3884])
-            ("pong-border-options" variable (:default-value (quote (((glyph colorize) (t 43)) ((color-x color-x) (mono-x grid-x) (color-tty color-tty)) (((glyph color-x) [0.5 0.5 0.5]) (color-tty pong-border-color))))) nil [3886 4096])
-            ("pong-blank" variable (:constant-flag t) nil [4098 4121])
-            ("pong-bat" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [4122 4143])
-            ("pong-ball" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [4144 4166])
-            ("pong-border" variable
-               (:constant-flag t
-                :default-value 3)
-                nil [4167 4191])
-            ("pong-xx" variable nil nil [4245 4299])
-            ("pong-yy" variable nil nil [4301 4353])
-            ("pong-x" variable nil nil [4355 4411])
-            ("pong-y" variable nil nil [4413 4467])
-            ("pong-bat-player1" variable nil nil [4469 4530])
-            ("pong-bat-player2" variable nil nil [4532 4593])
-            ("pong-score-player1" variable nil nil [4595 4626])
-            ("pong-score-player2" variable nil nil [4627 4658])
-            ("pong-mode-map" variable (:default-value (let ((map (make-sparse-keymap (quote pong-mode-map)))) (define-key map [left] (quote pong-move-left)) (define-key map [right] (quote pong-move-right)) (define-key map [up] (quote pong-move-up)) (define-key map [down] (quote pong-move-down)) (define-key map pong-left-key (quote pong-move-left)) (define-key map pong-right-key (quote pong-move-right)) (define-key map pong-up-key (quote pong-move-up)) (define-key map pong-down-key (quote pong-move-down)) (define-key map pong-quit-key (quote pong-quit)) (define-key map pong-pause-key (quote pong-pause)) map)) nil [4681 5270])
-            ("pong-null-map" variable (:default-value (make-sparse-keymap (quote pong-null-map))) nil [5272 5358])
-            ("pong-display-options" function nil nil [5389 5936])
-            ("pong-init-buffer" function (:user-visible-flag t) nil [5940 6936])
-            ("pong-move-left" function (:user-visible-flag t) nil [6939 7250])
-            ("pong-move-right" function (:user-visible-flag t) nil [7254 7488])
-            ("pong-move-up" function (:user-visible-flag t) nil [7492 7704])
-            ("pong-move-down" function (:user-visible-flag t) nil [7708 7958])
-            ("pong-update-bat" function (:arguments ("x" "y")) nil [7962 8404])
-            ("pong-init" function nil nil [8408 8941])
-            ("pong-update-game" function (:arguments ("pong-buffer")) nil [8945 10602])
-            ("pong-update-score" function nil nil [10606 10982])
-            ("pong-pause" function (:user-visible-flag t) nil [10986 11335])
-            ("pong-resume" function (:user-visible-flag t) nil [11339 11519])
-            ("pong-quit" function (:user-visible-flag t) nil [11523 11776])
-            ("pong" function (:user-visible-flag t) nil [11795 12114])
-            ("pong" package nil nil [12118 12133]))          
-      :file "pong.el"
-      :pointmax 12157
-      :fsize 12156
-      :lastmodtime '(23525 29595 0 0)
-      :unmatched-syntax '((close-paren 968 . 969) (symbol 933 . 950) (open-paren 932 . 933)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [2718 2735])
-            ("baseward-step" variable nil nil [2757 2779])
-            ("fly-step" variable nil nil [2780 2797])
-            ("fly-row-start" variable nil nil [2798 2820])
-            ("pole-width" variable nil nil [2821 2840])
-            ("pole-char" variable nil nil [2841 2859])
-            ("line-offset" variable nil nil [2860 2880])
-            ("hanoi" customgroup (:user-visible-flag t) nil [2882 2943])
-            ("hanoi-horizontal-flag" variable nil nil [2945 3068])
-            ("hanoi-move-period" variable (:default-value 1.0) nil [3070 3323])
-            ("hanoi-use-faces" variable nil nil [3325 3439])
-            ("hanoi-pole-face" variable (:default-value (quote highlight)) nil [3441 3563])
-            ("hanoi-base-face" variable (:default-value (quote highlight)) nil [3565 3686])
-            ("hanoi-even-ring-face" variable (:default-value (quote region)) nil [3688 3826])
-            ("hanoi-odd-ring-face" variable (:default-value (quote secondary-selection)) nil [3828 3977])
-            ("hanoi" function
-               (:user-visible-flag t
-                :arguments ("nrings"))
-                nil [4045 4351])
-            ("hanoi-unix" function (:user-visible-flag t) nil [4368 4844])
-            ("hanoi-unix-64" function (:user-visible-flag t) nil [4861 5358])
-            ("hanoi-internal" function (:arguments ("nrings" "bits" "start-time")) nil [5360 11795])
-            ("hanoi-put-face" function (:arguments ("start" "end" "value" "object")) nil [11797 12009])
-            ("hanoi-0" function (:arguments ("rings" "from" "to" "work" "start-time")) nil [12283 12505])
-            ("hanoi-n" function (:arguments ("bits" "rings" "from" "to" "work" "start-time")) nil [12622 13117])
-            ("hanoi-insert-ring" function (:arguments ("ring" "pole")) nil [13182 13639])
-            ("hanoi-goto-char" function (:arguments ("pos")) nil [13766 13939])
-            ("hanoi-move-ring" function (:arguments ("ring" "from" "to" "start-time")) nil [14005 16315])
-            ("hanoi-sit-for" function (:arguments ("seconds")) nil [16403 16516])
-            ("hanoi-ring-to-pos" function (:arguments ("ring" "pos")) nil [16581 18273])
-            ("hanoi-pos-on-tower-p" function (:arguments ("pos")) nil [18344 18494])
-            ("hanoi" package nil nil [18496 18512]))          
-      :file "hanoi.el"
-      :pointmax 18537
-      :fsize 18536
-      :lastmodtime '(23525 29595 0 0)
-      :unmatched-syntax '((close-paren 2735 . 2736) (symbol 2700 . 2717) (open-paren 2699 . 2700)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ps-printer-name" variable nil nil [2474 2498])
-            ("ps-lpr-command" variable nil nil [2499 2522])
-            ("ps-lpr-switches" variable nil nil [2523 2547])
-            ("handwrite" customgroup (:user-visible-flag t) nil [2564 2684])
-            ("handwrite-psindex" variable nil nil [2686 2754])
-            ("menu-bar-handwrite-map" variable (:default-value (let ((map (make-sparse-keymap "Handwrite functions."))) (define-key map [numbering] (quote (menu-item "Page numbering" handwrite-set-pagenumber :button (:toggle . handwrite-pagenumbering)))) (define-key map [handwrite-separator2] (quote ("----"))) (define-key map [10pt] (quote (menu-item "10 pt" handwrite-10pt :button (:radio eq handwrite-fontsize 10)))) (define-key map [11pt] (quote (menu-item "11 pt" handwrite-11pt :button (:radio eq handwrite-fontsize 11)))) (define-key map [12pt] (quote (menu-item "12 pt" handwrite-12pt :button (:radio eq handwrite-fontsize 12)))) (define-key map [13pt] (quote (menu-item "13 pt" handwrite-13pt :button (:radio eq handwrite-fontsize 13)))) (define-key map [handwrite-separator1] (quote ("----"))) (define-key map [handwrite] (quote ("Write by hand" . handwrite))) map)) nil [2755 3740])
-            ("fset" code nil nil [3741 3794])
-            ("handwrite-numlines" variable (:default-value 60) nil [3826 3973])
-            ("handwrite-fontsize" variable (:default-value 11) nil [3974 4113])
-            ("handwrite-linespace" variable (:default-value 12) nil [4114 4245])
-            ("handwrite-xstart" variable (:default-value 30) nil [4246 4380])
-            ("handwrite-ystart" variable (:default-value 810) nil [4381 4516])
-            ("handwrite-pagenumbering" variable nil nil [4517 4669])
-            ("handwrite-10pt-numlines" variable (:default-value 65) nil [4670 4814])
-            ("handwrite-11pt-numlines" variable (:default-value 60) nil [4815 4959])
-            ("handwrite-12pt-numlines" variable (:default-value 55) nil [4960 5104])
-            ("handwrite-13pt-numlines" variable (:default-value 50) nil [5105 5249])
-            ("handwrite" function (:user-visible-flag t) nil [5292 9612])
-            ("handwrite-set-pagenumber" function (:user-visible-flag t) nil [9615 9819])
-            ("handwrite-10pt" function (:user-visible-flag t) nil [9821 10189])
-            ("handwrite-11pt" function (:user-visible-flag t) nil [10192 10560])
-            ("handwrite-12pt" function (:user-visible-flag t) nil [10562 10930])
-            ("handwrite-13pt" function (:user-visible-flag t) nil [10932 11300])
-            ("handwrite-insert-header" function (:arguments ("buf-name")) nil [11416 11691])
-            ("handwrite-insert-preamble" function nil nil [11743 13008])
-            ("handwrite-insert-info" function nil nil [13106 13544])
-            ("handwrite-insert-font" function nil nil [13724 62611])
-            ("handwrite-set-pagenumber-off" function nil nil [62639 62748])
-            ("handwrite-set-pagenumber-on" function nil nil [62775 62881])
-            ("handwrite" package nil nil [63147 63167]))          
-      :file "handwrite.el"
-      :pointmax 63197
-      :fsize 63228
-      :lastmodtime '(23525 29595 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("fortune" customgroup (:user-visible-flag t) nil [2462 2590])
-            ("fortune-signature" customgroup (:user-visible-flag t) nil [2591 2704])
-            ("fortune-dir" variable (:default-value "~/docs/ascii/misc/fortunes/") nil [2706 2858])
-            ("fortune-file" variable (:default-value (expand-file-name "usenet" fortune-dir)) nil [2859 3017])
-            ("fortune-database-extension" variable (:default-value ".dat") nil [3018 3202])
-            ("fortune-program" variable (:default-value "fortune") nil [3203 3314])
-            ("fortune-program-options" variable nil nil [3315 3551])
-            ("fortune-strfile" variable (:default-value "strfile") nil [3552 3670])
-            ("fortune-strfile-options" variable nil nil [3671 3798])
-            ("fortune-quiet-strfile-options" variable (:default-value "> /dev/null") nil [3799 4052])
-            ("fortune-always-compile" variable (:default-value t) nil [4054 4243])
-            ("fortune-author-line-prefix" variable (:default-value "                  -- ") nil [4244 4407])
-            ("fortune-fill-column" variable (:default-value fill-column) nil [4408 4531])
-            ("fortune-from-mail" variable (:default-value "private e-mail") nil [4532 4719])
-            ("fortune-sigstart" variable nil nil [4720 4867])
-            ("fortune-sigend" variable nil nil [4868 5012])
-            ("fortune-buffer-name" variable (:default-value "*fortune*") nil [5044 5084])
-            ("fortune-end-sep" variable
-               (:constant-flag t
-                :default-value "
-%
-")
-                nil [5085 5119])
-            ("fortune-append" function (:arguments ("string" "interactive" "file")) nil [5169 5996])
-            ("fortune-ask-file" function nil nil [5998 6156])
-            ("fortune-add-fortune" function
-               (:user-visible-flag t
-                :arguments ("string" "file"))
-                nil [6173 6504])
-            ("fortune-from-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "file"))
-                nil [6521 7882])
-            ("fortune-compile" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [7957 8870])
-            ("fortune-to-signature" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [8937 9707])
-            ("fortune-in-buffer" function (:arguments ("_interactive" "file")) nil [9749 10700])
-            ("fortune-message" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [10717 11209])
-            ("fortune" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [11226 11789])
-            ("fortune" package nil nil [11815 11833]))          
-      :file "fortune.el"
-      :pointmax 11860
-      :fsize 11859
-      :lastmodtime '(23525 29594 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [945 962])
-            ("gamegrid" include nil nil [965 984])
-            ("tetris" customgroup (:user-visible-flag t) nil [1066 1150])
-            ("tetris-use-glyphs" variable (:default-value t) nil [1152 1262])
-            ("tetris-use-color" variable (:default-value t) nil [1264 1372])
-            ("tetris-draw-border-with-glyphs" variable (:default-value t) nil [1374 1508])
-            ("tetris-default-tick-period" variable (:default-value 0.3) nil [1510 1641])
-            ("tetris-update-speed-function" variable (:default-value (quote tetris-default-update-speed-function)) nil [1643 2027])
-            ("tetris-mode-hook" variable nil nil [2029 2127])
-            ("tetris-tty-colors" variable (:default-value ["blue" "white" "yellow" "magenta" "cyan" "green" "red"]) nil [2129 2488])
-            ("tetris-x-colors" variable (:default-value [[0 0 1] [0.7 0 1] [1 1 0] [1 0 1] [0 1 1] [0 1 0] [1 0 0]]) nil [2490 3079])
-            ("tetris-buffer-name" variable (:default-value "*Tetris*") nil [3081 3188])
-            ("tetris-buffer-width" variable (:default-value 30) nil [3190 3294])
-            ("tetris-buffer-height" variable (:default-value 22) nil [3296 3402])
-            ("tetris-width" variable (:default-value 10) nil [3404 3491])
-            ("tetris-height" variable (:default-value 20) nil [3493 3582])
-            ("tetris-top-left-x" variable (:default-value 3) nil [3584 3692])
-            ("tetris-top-left-y" variable (:default-value 1) nil [3694 3802])
-            ("tetris-next-x" variable (:default-value (+ (* 2 tetris-top-left-x) tetris-width)) nil [3804 3897])
-            ("tetris-next-y" variable (:default-value tetris-top-left-y) nil [3899 3969])
-            ("tetris-score-x" variable (:default-value tetris-next-x) nil [3971 4033])
-            ("tetris-score-y" variable (:default-value (+ tetris-next-y 6)) nil [4035 4103])
-            ("tetris-score-file" variable (:default-value "tetris-scores") nil [4233 4443])
-            ("tetris-blank-options" variable (:default-value (quote (((glyph colorize) (t 32)) ((color-x color-x) (mono-x grid-x) (color-tty color-tty)) (((glyph color-x) [0 0 0]) (color-tty "black"))))) nil [4525 4722])
-            ("tetris-cell-options" variable (:default-value (quote (((glyph colorize) (emacs-tty 79) (t 32)) ((color-x color-x) (mono-x mono-x) (color-tty color-tty) (mono-tty mono-tty))))) nil [4724 4990])
-            ("tetris-border-options" variable (:default-value (quote (((glyph colorize) (t 43)) ((color-x color-x) (mono-x grid-x) (color-tty color-tty)) (((glyph color-x) [0.5 0.5 0.5]) (color-tty "white"))))) nil [4992 5194])
-            ("tetris-space-options" variable (:default-value (quote (((t 32)) nil nil))) nil [5196 5258])
-            ("tetris-shapes" variable
-               (:constant-flag t
-                :default-value [[[[0 0] [1 0] [0 1] [1 1]]] [[[0 0] [1 0] [2 0] [2 1]] [[1 -1] [1 0] [1 1] [0 1]] [[0 -1] [0 0] [1 0] [2 0]] [[1 -1] [2 -1] [1 0] [1 1]]] [[[0 0] [1 0] [2 0] [0 1]] [[0 -1] [1 -1] [1 0] [1 1]] [[2 -1] [0 0] [1 0] [2 0]] [[1 -1] [1 0] [1 1] [2 1]]] [[[0 0] [1 0] [1 1] [2 1]] [[1 0] [0 1] [1 1] [0 2]]] [[[1 0] [2 0] [0 1] [1 1]] [[0 0] [0 1] [1 1] [1 2]]] [[[1 0] [0 1] [1 1] [2 1]] [[1 0] [1 1] [2 1] [1 2]] [[0 1] [1 1] [2 1] [1 2]] [[1 0] [0 1] [1 1] [1 2]]] [[[0 0] [1 0] [2 0] [3 0]] [[1 -1] [1 0] [1 1] [1 2]]]])
-                nil [5340 6126])
-            ("tetris-shape-scores" variable
-               (:constant-flag t
-                :default-value [[6] [6 7 6 7] [6 7 6 7] [6 7] [6 7] [5 5 6 5] [5 8]])
-                nil [6232 6319])
-            ("tetris-shape-dimensions" variable
-               (:constant-flag t
-                :default-value [[2 2] [3 2] [3 2] [3 2] [3 2] [3 2] [4 1]])
-                nil [6321 6401])
-            ("tetris-blank" variable
-               (:constant-flag t
-                :default-value 7)
-                nil [6403 6428])
-            ("tetris-border" variable
-               (:constant-flag t
-                :default-value 8)
-                nil [6430 6456])
-            ("tetris-space" variable
-               (:constant-flag t
-                :default-value 9)
-                nil [6458 6483])
-            ("tetris-default-update-speed-function" function (:arguments ("_shapes" "rows")) nil [6485 6569])
-            ("tetris-shape" variable nil nil [6651 6674])
-            ("tetris-rot" variable nil nil [6675 6696])
-            ("tetris-next-shape" variable nil nil [6697 6725])
-            ("tetris-n-shapes" variable nil nil [6726 6752])
-            ("tetris-n-rows" variable nil nil [6753 6777])
-            ("tetris-score" variable nil nil [6778 6801])
-            ("tetris-pos-x" variable nil nil [6802 6825])
-            ("tetris-pos-y" variable nil nil [6826 6849])
-            ("tetris-paused" variable nil nil [6850 6876])
-            ("make-variable-buffer-local" code nil nil [6878 6920])
-            ("make-variable-buffer-local" code nil nil [6921 6961])
-            ("make-variable-buffer-local" code nil nil [6962 7009])
-            ("make-variable-buffer-local" code nil nil [7010 7055])
-            ("make-variable-buffer-local" code nil nil [7056 7099])
-            ("make-variable-buffer-local" code nil nil [7100 7142])
-            ("make-variable-buffer-local" code nil nil [7143 7185])
-            ("make-variable-buffer-local" code nil nil [7186 7228])
-            ("make-variable-buffer-local" code nil nil [7229 7272])
-            ("tetris-mode-map" variable (:default-value (let ((map (make-sparse-keymap (quote tetris-mode-map)))) (define-key map "n" (quote tetris-start-game)) (define-key map "q" (quote tetris-end-game)) (define-key map "p" (quote tetris-pause-game)) (define-key map " " (quote tetris-move-bottom)) (define-key map [left] (quote tetris-move-left)) (define-key map [right] (quote tetris-move-right)) (define-key map [up] (quote tetris-rotate-prev)) (define-key map [down] (quote tetris-move-down)) map)) nil [7354 7806])
-            ("tetris-null-map" variable (:default-value (let ((map (make-sparse-keymap (quote tetris-null-map)))) (define-key map "n" (quote tetris-start-game)) map)) nil [7808 7939])
-            ("tetris-display-options" function nil nil [8021 8647])
-            ("tetris-get-tick-period" function nil nil [8649 8865])
-            ("tetris-get-shape-cell" function (:arguments ("block")) nil [8867 9001])
-            ("tetris-shape-width" function nil nil [9003 9087])
-            ("tetris-shape-rotations" function nil nil [9089 9167])
-            ("tetris-draw-score" function nil nil [9169 9617])
-            ("tetris-update-score" function nil nil [9619 9759])
-            ("tetris-new-shape" function nil nil [9761 10108])
-            ("tetris-draw-next-shape" function nil nil [10110 10649])
-            ("tetris-draw-shape" function nil nil [10651 11032])
-            ("tetris-erase-shape" function nil nil [11034 11416])
-            ("tetris-test-shape" function nil nil [11418 12015])
-            ("tetris-full-row" function (:arguments ("y")) nil [12017 12270])
-            ("tetris-shift-row" function (:arguments ("y")) nil [12272 12707])
-            ("tetris-shift-down" function nil nil [12709 12924])
-            ("tetris-draw-border-p" function nil nil [12926 13041])
-            ("tetris-init-buffer" function nil nil [13043 14037])
-            ("tetris-reset-game" function nil nil [14039 14314])
-            ("tetris-shape-done" function nil nil [14316 14559])
-            ("tetris-update-game" function (:arguments ("tetris-buffer")) nil [14561 14978])
-            ("tetris-move-bottom" function (:user-visible-flag t) nil [14980 15358])
-            ("tetris-move-left" function (:user-visible-flag t) nil [15360 15637])
-            ("tetris-move-right" function (:user-visible-flag t) nil [15639 15911])
-            ("tetris-move-down" function (:user-visible-flag t) nil [15913 16185])
-            ("tetris-rotate-prev" function (:user-visible-flag t) nil [16187 16573])
-            ("tetris-rotate-next" function (:user-visible-flag t) nil [16575 16979])
-            ("tetris-end-game" function (:user-visible-flag t) nil [16981 17167])
-            ("tetris-start-game" function (:user-visible-flag t) nil [17169 17437])
-            ("tetris-pause-game" function (:user-visible-flag t) nil [17439 17632])
-            ("tetris-active-p" function nil nil [17634 17703])
-            ("put" code nil nil [17705 17744])
-            ("define-derived-mode" code nil nil [17746 18438])
-            ("tetris" function (:user-visible-flag t) nil [18455 19377])
-            ("tetris" package nil nil [19379 19396]))          
-      :file "tetris.el"
-      :pointmax 19422
-      :fsize 19421
-      :lastmodtime '(23525 29595 0 0)
-      :unmatched-syntax '((close-paren 962 . 963) (symbol 927 . 944) (open-paren 926 . 927))))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!play!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041progmodes\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041progmodes\041semantic.cache"
deleted file mode 100644
index 903d2ff..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041progmodes\041semantic.cache"
+++ /dev/null
Binary files differ
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041semantic.cache"
deleted file mode 100644
index 974504e..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041semantic.cache"
+++ /dev/null
@@ -1,24075 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("defvar-local" code nil nil [2861 2959])
-            ("defvar-local" code nil nil [2961 3073])
-            ("global-hl-line-overlays" variable nil nil [3075 3277])
-            ("hl-line" customgroup (:user-visible-flag t) nil [3279 3373])
-            ("hl-line" variable
-               (:default-value (quote ((t :inherit highlight)))
-                :type "face")
-                nil [3375 3524])
-            ("hl-line-face" variable (:default-value (quote hl-line)) nil [3526 3955])
-            ("hl-line-sticky-flag" variable (:default-value t) nil [3957 4393])
-            ("global-hl-line-sticky-flag" variable nil nil [4395 4764])
-            ("hl-line-range-function" variable nil nil [4766 5153])
-            ("hl-line-overlay-buffer" variable nil nil [5155 5257])
-            ("define-minor-mode" code nil nil [5274 6700])
-            ("hl-line-make-overlay" function nil nil [6702 6884])
-            ("hl-line-highlight" function nil nil [6886 7324])
-            ("hl-line-unhighlight" function nil nil [7326 7474])
-            ("hl-line-maybe-unhighlight" function nil nil [7476 8181])
-            ("define-minor-mode" code nil nil [8198 9352])
-            ("global-hl-line-highlight" function nil nil [9354 9954])
-            ("global-hl-line-highlight-all" function nil nil [9956 10204])
-            ("global-hl-line-unhighlight" function nil nil [10206 10382])
-            ("global-hl-line-maybe-unhighlight" function nil nil [10384 11051])
-            ("global-hl-line-unhighlight-all" function nil nil [11053 11347])
-            ("hl-line-move" function (:arguments ("overlay")) nil [11349 11891])
-            ("hl-line-unload-function" function nil nil [11893 12155])
-            ("hl-line" package nil nil [12157 12175]))          
-      :file "hl-line.el"
-      :pointmax 12202
-      :fsize 12201
-      :lastmodtime '(23525 29510 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("font-lock-defaults" variable nil nil [1098 2954])
-            ("put" code nil nil [2970 3019])
-            ("make-variable-buffer-local" code nil nil [3020 3068])
-            ("font-lock-function" variable (:default-value (quote font-lock-default-function)) nil [3070 3270])
-            ("font-lock-major-mode" variable nil nil [3337 3366])
-            ("define-minor-mode" code nil nil [3368 6246])
-            ("font-lock-change-mode" function nil nil [6341 6395])
-            ("font-lock-defontify" function nil nil [6397 6831])
-            ("font-lock-set-defaults" variable nil nil [6833 6864])
-            ("font-lock-default-function" function (:arguments ("mode")) nil [6865 7945])
-            ("turn-on-font-lock" function nil nil [7947 8088])
-            ("font-lock-global-modes" variable (:default-value t) nil [11013 11858])
-            ("turn-on-font-lock-if-desired" function nil nil [11860 12174])
-            ("define-globalized-minor-mode" code nil nil [12176 12487])
-            ("font-core" package nil nil [12524 12544]))          
-      :file "font-core.el"
-      :pointmax 12573
-      :fsize 12572
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1052 1069])
-            ("declare-function" code nil nil [1072 1134])
-            ("declare-function" code nil nil [1135 1175])
-            ("compilation-current-error" variable nil nil [1197 1231])
-            ("compilation-context-lines" variable nil nil [1232 1266])
-            ("shell-command-dont-erase-buffer" variable nil nil [1268 1938])
-            ("shell-command-saved-pos" variable nil nil [1940 2294])
-            ("idle-update-delay" variable (:default-value 0.5) nil [2296 2593])
-            ("killing" customgroup (:user-visible-flag t) nil [2595 2669])
-            ("paren-matching" customgroup (:user-visible-flag t) nil [2671 2773])
-            ("next-error" customgroup (:user-visible-flag t) nil [2810 2911])
-            ("next-error" variable
-               (:default-value (quote ((t (:inherit region))))
-                :type "face")
-                nil [2913 3044])
-            ("next-error-highlight" variable (:default-value 0.5) nil [3046 3801])
-            ("next-error-highlight-no-select" variable (:default-value 0.5) nil [3803 4496])
-            ("next-error-recenter" variable nil nil [4498 4860])
-            ("next-error-hook" variable nil nil [4862 5003])
-            ("next-error-highlight-timer" variable nil nil [5005 5044])
-            ("next-error-overlay-arrow-position" variable nil nil [5046 5092])
-            ("put" code nil nil [5093 5171])
-            ("add-to-list" code nil nil [5172 5249])
-            ("next-error-last-buffer" variable nil nil [5251 5478])
-            ("next-error-function" variable nil nil [5480 5938])
-            ("make-variable-buffer-local" code nil nil [5939 5988])
-            ("next-error-move-function" variable nil nil [5990 6303])
-            ("make-variable-buffer-local" code nil nil [6304 6358])
-            ("next-error-buffer-p" function (:arguments ("buffer" "avoid-current" "extra-test-inclusive" "extra-test-exclusive")) nil [6360 7442])
-            ("next-error-find-buffer" function (:arguments ("avoid-current" "extra-test-inclusive" "extra-test-exclusive")) nil [7444 9726])
-            ("next-error" function
-               (:user-visible-flag t
-                :arguments ("arg" "reset"))
-                nil [9728 11497])
-            ("next-error-internal" function nil nil [11499 11920])
-            ("defalias" code nil nil [11922 11961])
-            ("defalias" code nil nil [11962 11996])
-            ("previous-error" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [11998 12315])
-            ("first-error" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [12317 12585])
-            ("next-error-no-select" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [12587 13039])
-            ("previous-error-no-select" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [13041 13419])
-            ("next-error-follow-last-line" variable nil nil [13490 13530])
-            ("define-minor-mode" code nil nil [13532 14240])
-            ("next-error-follow-mode-post-command-hook" function nil nil [14356 14689])
-            ("fundamental-mode" function (:user-visible-flag t) nil [14698 14907])
-            ("special-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (suppress-keymap map) (define-key map "q" (quote quit-window)) (define-key map " " (quote scroll-up-command)) (define-key map [33554464] (quote scroll-down-command)) (define-key map "" (quote scroll-down-command)) (define-key map "?" (quote describe-mode)) (define-key map "h" (quote describe-mode)) (define-key map ">" (quote end-of-buffer)) (define-key map "<" (quote beginning-of-buffer)) (define-key map "g" (quote revert-buffer)) map)) nil [14985 15469])
-            ("put" code nil nil [15471 15511])
-            ("define-derived-mode" code nil nil [15512 15657])
-            ("self-insert-uses-region-functions" variable nil nil [15690 16550])
-            ("hard-newline" variable (:default-value (propertize "



-" (quote hard) t (quote rear-nonsticky) (quote (hard)))) nil [16552 16685])
-            ("newline" function
-               (:user-visible-flag t
-                :arguments ("arg" "interactive"))
-                nil [16687 19491])
-            ("set-hard-newline-properties" function (:arguments ("from" "to")) nil [19493 19841])
-            ("open-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [19843 20620])
-            ("split-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [20622 21423])
-            ("delete-indentation" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [21425 22138])
-            ("defalias" code nil nil [22140 22182])
-            ("delete-blank-lines" function (:user-visible-flag t) nil [22201 23628])
-            ("delete-trailing-lines" variable (:default-value t) nil [23630 23916])
-            ("region-modifiable-p" function (:arguments ("start" "end")) nil [23918 24140])
-            ("delete-trailing-whitespace" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [24142 26084])
-            ("newline-and-indent" function (:user-visible-flag t) nil [26086 26519])
-            ("reindent-then-newline-and-indent" function (:user-visible-flag t) nil [26521 27747])
-            ("read-quoted-char-radix" variable (:default-value 8) nil [27749 27970])
-            ("read-quoted-char" function (:arguments ("prompt")) nil [27972 30821])
-            ("quoted-insert" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [30823 32852])
-            ("forward-to-indentation" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [32854 33047])
-            ("backward-to-indentation" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [33049 33248])
-            ("back-to-indentation" function (:user-visible-flag t) nil [33250 33540])
-            ("fixup-whitespace" function (:user-visible-flag t) nil [33542 33885])
-            ("delete-horizontal-space" function
-               (:user-visible-flag t
-                :arguments ("backward-only"))
-                nil [33887 34325])
-            ("just-one-space" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [34327 34587])
-            ("cycle-spacing--context" variable nil nil [34589 34844])
-            ("cycle-spacing" function
-               (:user-visible-flag t
-                :arguments ("n" "preserve-nl-back" "mode"))
-                nil [34846 37295])
-            ("beginning-of-buffer" function (:arguments ("arg")) nil [37298 38221])
-            ("end-of-buffer" function (:arguments ("arg")) nil [38223 39470])
-            ("delete-active-region" variable (:default-value t) nil [39472 40009])
-            ("region-extract-function" variable (:default-value (lambda (method) (when (region-beginning) (cond ((eq method (quote bounds)) (list (cons (region-beginning) (region-end)))) ((eq method (quote delete-only)) (delete-region (region-beginning) (region-end))) (t (filter-buffer-substring (region-beginning) (region-end) method)))))) nil [40011 40833])
-            ("region-insert-function" variable (:default-value (lambda (lines) (let ((first t)) (while lines (or first (insert 10)) (insert-for-yank (car lines)) (setq lines (cdr lines) first nil))))) nil [40835 41181])
-            ("delete-backward-char" function (:arguments ("n" "killflag")) nil [41183 42820])
-            ("delete-forward-char" function (:arguments ("n" "killflag")) nil [42822 43965])
-            ("mark-whole-buffer" function nil nil [43967 44526])
-            ("goto-line" function (:arguments ("line" "buffer")) nil [44570 46847])
-            ("count-words-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "arg"))
-                nil [46849 47531])
-            ("count-words" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [47533 48326])
-            ("count-words--buffer-message" function nil nil [48328 48481])
-            ("count-words--message" function (:arguments ("str" "start" "end")) nil [48483 48808])
-            ("define-obsolete-function-alias" code nil nil [48810 48889])
-            ("what-line" function (:user-visible-flag t) nil [48891 49242])
-            ("count-lines" function (:arguments ("start" "end")) nil [49244 50081])
-            ("line-number-at-pos" function (:arguments ("pos" "absolute")) nil [50083 50750])
-            ("what-cursor-position" function
-               (:user-visible-flag t
-                :arguments ("detail"))
-                nil [50752 55255])
-            ("read-expression-map" variable (:default-value (let ((m (make-sparse-keymap))) (define-key m "\211" (quote completion-at-point)) (define-key m "	" (quote completion-at-point)) (set-keymap-parent m minibuffer-local-map) m)) nil [55320 55635])
-            ("read-minibuffer" function (:arguments ("prompt" "initial-contents")) nil [55637 56160])
-            ("eval-minibuffer" function (:arguments ("prompt" "initial-contents")) nil [56162 56619])
-            ("minibuffer-completing-symbol" variable nil nil [56621 56724])
-            ("make-obsolete-variable" code nil nil [56725 56795])
-            ("minibuffer-default" variable nil nil [56797 56990])
-            ("eval-expression-print-level" variable (:default-value 4) nil [56992 57222])
-            ("eval-expression-print-length" variable (:default-value 12) nil [57224 57457])
-            ("eval-expression-debug-on-error" variable (:default-value t) nil [57459 57668])
-            ("eval-expression-print-maximum-character" variable (:default-value 127) nil [57670 57919])
-            ("eval-expression-print-format" function (:arguments ("value")) nil [57921 58608])
-            ("eval-expression-minibuffer-setup-hook" variable nil nil [58610 58724])
-            ("read--expression" function (:arguments ("prompt" "initial-contents")) nil [58726 59410])
-            ("eval-expression-get-print-arguments" function (:arguments ("prefix-argument")) nil [59412 60029])
-            ("eval-expression" function
-               (:user-visible-flag t
-                :arguments ("exp" "insert-value" "no-truncate" "char-print-limit"))
-                nil [60159 62681])
-            ("edit-and-eval-command" function (:arguments ("prompt" "command")) nil [62683 63610])
-            ("repeat-complex-command" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [63612 65280])
-            ("extended-command-history" variable nil nil [65283 65320])
-            ("execute-extended-command--last-typed" variable nil nil [65321 65370])
-            ("read-extended-command" function nil nil [65372 67556])
-            ("suggest-key-bindings" variable (:default-value t) nil [67558 67924])
-            ("extended-command-suggest-shorter" variable (:default-value t) nil [67926 68091])
-            ("execute-extended-command--shorter-1" function (:arguments ("name" "length")) nil [68093 68555])
-            ("execute-extended-command--shorter" function (:arguments ("name" "typed")) nil [68557 69467])
-            ("execute-extended-command" function (:arguments ("prefixarg" "command-name" "typed")) nil [69469 73272])
-            ("command-execute" function (:arguments ("cmd" "record-flag" "keys" "special")) nil [73274 75883])
-            ("minibuffer-history" variable nil nil [75886 76139])
-            ("minibuffer-history-sexp-flag" variable nil nil [76140 76455])
-            ("setq" code nil nil [76456 76510])
-            ("setq" code nil nil [76511 76549])
-            ("minibuffer-history-search-history" variable nil nil [76575 76621])
-            ("minibuffer-text-before-history" variable nil nil [76623 76823])
-            ("add-hook" code nil nil [76825 76889])
-            ("minibuffer-history-initialize" function nil nil [76891 76975])
-            ("minibuffer-avoid-prompt" function (:arguments ("_new" "_old")) nil [76977 77192])
-            ("minibuffer-history-case-insensitive-variables" variable nil nil [77194 77584])
-            ("previous-matching-history-element" function
-               (:user-visible-flag t
-                :arguments ("regexp" "n"))
-                nil [77586 80430])
-            ("next-matching-history-element" function
-               (:user-visible-flag t
-                :arguments ("regexp" "n"))
-                nil [80432 81486])
-            ("minibuffer-temporary-goal-position" variable nil nil [81488 81535])
-            ("minibuffer-default-add-function" variable (:default-value (quote minibuffer-default-add-completions)) nil [81537 82177])
-            ("minibuffer-default-add-done" variable nil nil [82179 82502])
-            ("make-variable-buffer-local" code nil nil [82504 82561])
-            ("minibuffer-default-add-completions" function nil nil [82563 83017])
-            ("goto-history-element" function
-               (:user-visible-flag t
-                :arguments ("nabs"))
-                nil [83019 85307])
-            ("next-history-element" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [85309 85560])
-            ("previous-history-element" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [85562 85820])
-            ("next-line-or-history-element" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [85822 87413])
-            ("previous-line-or-history-element" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [87415 89454])
-            ("next-complete-history-element" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [89456 90112])
-            ("previous-complete-history-element" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [90114 90399])
-            ("minibuffer-prompt-width" function nil nil [90458 90747])
-            ("add-hook" code nil nil [90780 90847])
-            ("minibuffer-history-isearch-message-overlay" variable nil nil [90849 90900])
-            ("make-variable-buffer-local" code nil nil [90901 90973])
-            ("minibuffer-history-isearch-setup" function nil nil [90975 91615])
-            ("minibuffer-history-isearch-end" function nil nil [91617 91847])
-            ("minibuffer-history-isearch-search" function nil nil [91849 93754])
-            ("minibuffer-history-isearch-message" function (:arguments ("c-q-hack" "ellipsis")) nil [93756 95153])
-            ("minibuffer-history-isearch-wrap" function nil nil [95155 95772])
-            ("minibuffer-history-isearch-push-state" function nil nil [95774 96105])
-            ("minibuffer-history-isearch-pop-state" function (:arguments ("_cmd" "hist-pos")) nil [96107 96319])
-            ("define-obsolete-function-alias" code nil nil [96397 96459])
-            ("undo-equiv-table" variable
-               (:constant-flag t
-                :default-value (make-hash-table :test (quote eq) :weakness t))
-                nil [96461 96704])
-            ("undo-in-region" variable nil nil [96706 96810])
-            ("undo-no-redo" variable nil nil [96812 96887])
-            ("pending-undo-list" variable nil nil [96889 97040])
-            ("undo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [97042 101663])
-            ("buffer-disable-undo" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [101665 101946])
-            ("undo-only" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [101948 102210])
-            ("undo-in-progress" variable nil nil [102212 102343])
-            ("undo-more" function (:arguments ("n")) nil [102345 103040])
-            ("primitive-undo" function (:arguments ("n" "list")) nil [103042 109676])
-            ("undo-copy-list" function (:arguments ("list")) nil [109701 109799])
-            ("undo-copy-list-1" function (:arguments ("elt")) nil [109801 109910])
-            ("undo-start" function (:arguments ("beg" "end")) nil [109912 110500])
-            ("undo-make-selective-list" function (:arguments ("start" "end")) nil [113498 115784])
-            ("undo-elt-in-region" function (:arguments ("undo-elt" "start" "end")) nil [115786 116825])
-            ("undo-elt-crosses-region" function (:arguments ("undo-elt" "start" "end")) nil [116827 117369])
-            ("undo-adjust-elt" function (:arguments ("elt" "deltas")) nil [117371 118136])
-            ("undo-adjust-beg-end" function (:arguments ("beg" "end" "deltas")) nil [119027 119332])
-            ("undo-adjust-pos" function (:arguments ("pos" "deltas" "use-<")) nil [119334 119806])
-            ("undo-delta" function (:arguments ("undo-elt")) nil [119977 120310])
-            ("defvar-local" code nil nil [120506 121227])
-            ("undo-auto-current-boundary-timer" variable nil nil [121229 121404])
-            ("undo-auto--this-command-amalgamating" variable nil nil [121406 121602])
-            ("undo-auto--needs-boundary-p" function nil nil [121604 121744])
-            ("undo-auto--last-boundary-amalgamating-number" function nil nil [121746 122050])
-            ("undo-auto--ensure-boundary" function (:arguments ("cause")) nil [122052 122680])
-            ("undo-auto--boundaries" function (:arguments ("cause")) nil [122682 123351])
-            ("undo-auto--boundary-timer" function nil nil [123353 123530])
-            ("undo-auto--boundary-ensure-timer" function nil nil [123532 123785])
-            ("undo-auto--undoably-changed-buffers" variable nil nil [123787 124024])
-            ("undo-auto--add-boundary" function nil nil [124026 124305])
-            ("undo-auto-amalgamate" function nil nil [124307 125636])
-            ("undo-auto--undoable-change" function nil nil [125638 125829])
-            ("undo-amalgamate-change-group" function (:arguments ("handle")) nil [125860 127449])
-            ("undo-ask-before-discard" variable nil nil [127452 128218])
-            ("undo-extra-outer-limit" variable nil nil [128220 128496])
-            ("make-variable-buffer-local" code nil nil [128497 128549])
-            ("setq" code nil nil [128834 128893])
-            ("undo-outer-limit-truncate" function (:arguments ("size")) nil [128894 130685])
-            ("password-word-equivalents" variable (:default-value (quote ("password" "passcode" "passphrase" "pass phrase" "\354\225\224\355\230\270" "\343\203\221\343\202\271\343\203\257\343\203\274\343\203\211" "\340\254\252\340\255\215\340\254\260\340\254\254\340\255\207\340\254\266 \340\254\270\340\254\231\340\255\215\340\254\225\340\255\207\340\254\244" "\341\236\226\341\236\266\341\236\200\341\237\222\341\236\231\341\236\237\341\236\230\341\237\222\341\236\204\341\236\266\341\236\217\341\237\213" "adgangskode" "contrase\303\261a" "contrasenya" "geslo" "has\305\202o" "heslo" "iphasiwedi" "jelsz\303\263" "l\303\266senord" "lozinka" "m\341\272\255t kh\341\272\251u" "mot de passe" "parola" "pasahitza" "passord" "passwort" "pasvorto" "salasana" "senha" "slapta\305\276odis" "wachtwoord" "\331\203\331\204\331\205\330\251 \330\247\331\204\330\263\330\261" "\327\241\327\241\327\236\327\224" "\320\273\320\276\320\267\320\270\320\275\320\272\320\260" "\320\277\320\260\321\200\320\276\320\273\321\214" "\340\244\227\340\245\201\340\244\252\340\245\215\340\244\244\340\244\266\340\244\254\340\245\215\340\244\246" "\340\244\266\340\244\254\340\245\215\340\244\246\340\244\225\340\245\202\340\244\237" "\340\252\252\340\252\276\340\252\270\340\252\265\340\252\260\340\253\215\340\252\241" "\340\260\270\340\260\202\340\260\225\340\261\207\340\260\244\340\260\252\340\260\246\340\260\256\340\261\201" "\340\250\252\340\250\276\340\250\270\340\250\265\340\250\260\340\250\241" "\340\262\227\340\263\201\340\262\252\340\263\215\340\262\244\340\262\252\340\262\246" "\340\256\225\340\256\237\340\256\265\340\257\201\340\256\232\340\257\215\340\256\232\340\257\212\340\256\262\340\257\215" "\340\264\205\340\264\237\340\264\257\340\264\276\340\264\263\340\264\265\340\264\276\340\264\225\340\265\215\340\264\225\340\265\215" "\340\246\227\340\247\201\340\246\252\340\247\215\340\246\244\340\246\266\340\246\254\340\247\215\340\246\246" "\340\246\252\340\246\276\340\246\270\340\246\223\340\247\237\340\246\276\340\246\260\340\247\215\340\246\241" "\340\266\273\340\267\204\340\267\203\340\267\212\340\266\264\340\266\257\340\266\272" "\345\257\206\347\240\201" "\345\257\206\347\242\274"))) nil [130688 132077])
-            ("shell-command-history" variable nil nil [132079 132269])
-            ("shell-command-switch" variable (:default-value (purecopy "-c")) nil [132271 132385])
-            ("shell-command-default-error-buffer" variable nil nil [132387 132702])
-            ("declare-function" code nil nil [132704 132770])
-            ("declare-function" code nil nil [132771 132857])
-            ("minibuffer-default-add-shell-commands" function (:user-visible-flag t) nil [132859 133563])
-            ("declare-function" code nil nil [133565 133616])
-            ("minibuffer-local-shell-command-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map minibuffer-local-map) (define-key map "	" (quote completion-at-point)) map)) nil [133618 133863])
-            ("read-shell-command" function (:arguments ("prompt" "initial-contents" "hist" "args")) nil [133865 134494])
-            ("async-shell-command-buffer" variable (:default-value (quote confirm-new-buffer)) nil [134496 135749])
-            ("async-shell-command-display-buffer" variable (:default-value t) nil [135751 136077])
-            ("shell-command--save-pos-or-erase" function nil nil [136079 136810])
-            ("shell-command--set-point-after-cmd" function (:arguments ("buffer")) nil [136812 138057])
-            ("async-shell-command" function
-               (:user-visible-flag t
-                :arguments ("command" "output-buffer" "error-buffer"))
-                nil [138059 139360])
-            ("shell-command" function
-               (:user-visible-flag t
-                :arguments ("command" "output-buffer" "error-buffer"))
-                nil [139362 148190])
-            ("display-message-or-buffer" function (:arguments ("message" "buffer-name" "action" "frame")) nil [148192 150588])
-            ("shell-command-sentinel" function (:arguments ("process" "signal")) nil [150773 151060])
-            ("shell-command-on-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "command" "output-buffer" "replace" "error-buffer" "display-error-buffer" "region-noncontiguous-p"))
-                nil [151062 160637])
-            ("shell-command-to-string" function (:arguments ("command")) nil [160639 160899])
-            ("process-file" function (:arguments ("program" "infile" "buffer" "display" "args")) nil [160901 162351])
-            ("process-file-side-effects" variable (:default-value t) nil [162353 162775])
-            ("start-file-process" function (:arguments ("name" "buffer" "program" "program-args")) nil [162777 163662])
-            ("tabulated-list-format" variable nil nil [163684 163714])
-            ("tabulated-list-entries" variable nil nil [163715 163746])
-            ("tabulated-list-sort-key" variable nil nil [163747 163779])
-            ("declare-function" code nil nil [163780 163846])
-            ("declare-function" code nil nil [163847 163953])
-            ("process-menu-query-only" variable nil nil [163955 163991])
-            ("process-menu-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [100] (quote process-menu-delete-process)) map)) nil [163993 164123])
-            ("define-derived-mode" code nil nil [164125 164617])
-            ("process-menu-delete-process" function (:user-visible-flag t) nil [164619 164924])
-            ("list-processes--refresh" function nil nil [164926 166673])
-            ("process-menu-visit-buffer" function (:arguments ("button")) nil [166675 166772])
-            ("list-processes" function
-               (:user-visible-flag t
-                :arguments ("query-only" "buffer"))
-                nil [166774 167737])
-            ("setq" code nil nil [167762 167801])
-            ("setq" code nil nil [167802 167838])
-            ("internal-echo-keystrokes-prefix" function nil nil [167840 168445])
-            ("prefix-command-echo-keystrokes-functions" variable nil nil [168447 168653])
-            ("prefix-command-update" function nil nil [168655 168822])
-            ("prefix-command-preserve-state-hook" variable nil nil [168824 168936])
-            ("prefix-command-preserve-state" function nil nil [168938 169431])
-            ("reset-this-command-lengths" function nil nil [169433 169536])
-            ("add-hook" code nil nil [169632 169728])
-            ("universal-argument--description" function nil nil [169729 170188])
-            ("add-hook" code nil nil [170190 170277])
-            ("universal-argument--preserve" function nil nil [170278 170356])
-            ("universal-argument-map" variable (:default-value (let ((map (make-sparse-keymap)) (universal-argument-minus (\` (menu-item "" negative-argument :filter (\, (lambda (cmd) (if (integerp prefix-arg) nil cmd))))))) (define-key map [switch-frame] (lambda (e) (interactive "e") (handle-switch-frame e) (universal-argument--mode))) (define-key map [21] (quote universal-argument-more)) (define-key map [45] universal-argument-minus) (define-key map [48] (quote digit-argument)) (define-key map [49] (quote digit-argument)) (define-key map [50] (quote digit-argument)) (define-key map [51] (quote digit-argument)) (define-key map [52] (quote digit-argument)) (define-key map [53] (quote digit-argument)) (define-key map [54] (quote digit-argument)) (define-key map [55] (quote digit-argument)) (define-key map [56] (quote digit-argument)) (define-key map [57] (quote digit-argument)) (define-key map [kp-0] (quote digit-argument)) (define-key map [kp-1] (quote digit-argument)) (define-key map [kp-2] (quote digit-argument)) (define-key map [kp-3] (quote digit-argument)) (define-key map [kp-4] (quote digit-argument)) (define-key map [kp-5] (quote digit-argument)) (define-key map [kp-6] (quote digit-argument)) (define-key map [kp-7] (quote digit-argument)) (define-key map [kp-8] (quote digit-argument)) (define-key map [kp-9] (quote digit-argument)) (define-key map [kp-subtract] universal-argument-minus) map)) nil [170358 171974])
-            ("universal-argument--mode" function nil nil [171976 172086])
-            ("universal-argument" function (:user-visible-flag t) nil [172088 172831])
-            ("universal-argument-more" function (:arguments ("arg")) nil [172833 173305])
-            ("negative-argument" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [173307 173681])
-            ("digit-argument" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [173683 174451])
-            ("filter-buffer-substring-functions" variable nil nil [174455 174632])
-            ("make-obsolete-variable" code nil nil [174633 174757])
-            ("filter-buffer-substring-function" variable (:default-value (function buffer-substring--filter)) nil [174759 175165])
-            ("buffer-substring-filters" variable nil nil [175167 175648])
-            ("make-obsolete-variable" code nil nil [175649 175764])
-            ("filter-buffer-substring" function (:arguments ("beg" "end" "delete")) nil [175766 176622])
-            ("buffer-substring--filter" function (:arguments ("beg" "end" "delete")) nil [176624 177543])
-            ("interprogram-cut-function" variable (:default-value (function gui-select-text)) nil [177587 178138])
-            ("interprogram-paste-function" variable (:default-value (function gui-selection-value)) nil [178140 179579])
-            ("kill-ring" variable nil nil [179620 180075])
-            ("kill-ring-max" variable (:default-value 60) nil [180077 180212])
-            ("kill-ring-yank-pointer" variable nil nil [180214 180315])
-            ("save-interprogram-paste-before-kill" variable nil nil [180317 180714])
-            ("kill-do-not-save-duplicates" variable nil nil [180716 180945])
-            ("kill-new" function (:arguments ("string" "replace")) nil [180947 182972])
-            ("kill-append-merge-undo" variable nil nil [183153 183423])
-            ("kill-append" function (:arguments ("string" "before-p")) nil [183425 184289])
-            ("yank-pop-change-selection" variable nil nil [184291 184639])
-            ("current-kill" function (:arguments ("n" "do-not-move")) nil [184641 186299])
-            ("kill-read-only-ok" variable nil nil [186350 186486])
-            ("kill-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "region"))
-                nil [186488 189364])
-            ("copy-region-as-kill" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "region"))
-                nil [189558 190691])
-            ("kill-ring-save" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "region"))
-                nil [190693 191982])
-            ("indicate-copied-region" function (:arguments ("message-len")) nil [191984 193566])
-            ("append-next-kill" function
-               (:user-visible-flag t
-                :arguments ("interactive"))
-                nil [193568 194388])
-            ("bidi-directional-controls-chars" variable (:default-value "\342\200\252-\342\200\256\342\201\246-\342\201\251") nil [194390 194535])
-            ("bidi-directional-non-controls-chars" variable (:default-value "^\342\200\252-\342\200\256\342\201\246-\342\201\251") nil [194537 194687])
-            ("squeeze-bidi-context-1" function (:arguments ("from" "to" "category" "replacement")) nil [194689 195795])
-            ("squeeze-bidi-context" function (:arguments ("from" "to")) nil [195797 196898])
-            ("line-substring-with-bidi-context" function (:arguments ("start" "end" "no-properties")) nil [196900 198826])
-            ("buffer-substring-with-bidi-context" function (:arguments ("start" "end" "no-properties")) nil [198828 200131])
-            ("yank-handled-properties" variable (:default-value (quote ((font-lock-face . yank-handle-font-lock-face-property) (category . yank-handle-category-property)))) nil [200147 200972])
-            ("yank-excluded-properties" variable (:default-value (quote (category field follow-link fontified font-lock-face help-echo intangible invisible keymap local-map mouse-face read-only yank-handler))) nil [201045 201508])
-            ("yank-window-start" variable nil nil [201510 201540])
-            ("yank-undo-function" variable nil nil [201541 201872])
-            ("yank-pop" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [201874 203590])
-            ("yank" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [203592 206332])
-            ("rotate-yank-pointer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [206334 206524])
-            ("kill-forward-chars" function (:arguments ("arg")) nil [206589 206734])
-            ("kill-backward-chars" function (:arguments ("arg")) nil [206783 206929])
-            ("backward-delete-char-untabify-method" variable (:default-value (quote untabify)) nil [206931 207406])
-            ("backward-delete-char-untabify" function
-               (:user-visible-flag t
-                :arguments ("arg" "killp"))
-                nil [207408 208760])
-            ("zap-to-char" function
-               (:user-visible-flag t
-                :arguments ("arg" "char"))
-                nil [208762 209379])
-            ("kill-whole-line" variable nil nil [209416 209561])
-            ("kill-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [209563 211777])
-            ("kill-whole-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [211779 213408])
-            ("forward-visible-line" function (:arguments ("arg")) nil [213410 215900])
-            ("end-of-visible-line" function nil nil [215902 216668])
-            ("kill-current-buffer" function (:user-visible-flag t) nil [216670 217175])
-            ("insert-buffer" function (:arguments ("buffer")) nil [217179 217732])
-            ("append-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer" "start" "end"))
-                nil [217734 218634])
-            ("prepend-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer" "start" "end"))
-                nil [218636 219178])
-            ("copy-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer" "start" "end"))
-                nil [219180 219749])
-            ("define-error" code nil nil [219752 219821])
-            ("activate-mark-hook" variable nil nil [219823 220012])
-            ("deactivate-mark-hook" variable nil nil [220014 220092])
-            ("mark" function (:arguments ("force")) nil [220094 220718])
-            ("deactivate-mark" function (:arguments ("force")) nil [220753 222843])
-            ("activate-mark" function (:arguments ("no-tmm")) nil [222845 223236])
-            ("set-mark" function (:arguments ("pos")) nil [223238 224462])
-            ("save-mark-and-excursion--save" function nil nil [224464 224613])
-            ("save-mark-and-excursion--restore" function (:arguments ("saved-mark-info")) nil [224615 225565])
-            ("save-mark-and-excursion" function (:arguments ("body")) nil [225567 226022])
-            ("use-empty-active-region" variable nil nil [226024 226523])
-            ("use-region-p" function nil nil [226525 227131])
-            ("region-active-p" function nil nil [227133 227822])
-            ("region-bounds" function nil nil [227824 228013])
-            ("region-noncontiguous-p" function nil nil [228015 228238])
-            ("redisplay-unhighlight-region-function" variable (:default-value (lambda (rol) (when (overlayp rol) (delete-overlay rol)))) nil [228240 228346])
-            ("redisplay-highlight-region-function" variable (:default-value (lambda (start end window rol) (if (not (overlayp rol)) (let ((nrol (make-overlay start end))) (funcall redisplay-unhighlight-region-function rol) (overlay-put nrol (quote window) window) (overlay-put nrol (quote face) (quote region)) (overlay-put nrol (quote priority) (quote (nil . 100))) nrol) (unless (and (eq (overlay-buffer rol) (current-buffer)) (eq (overlay-start rol) start) (eq (overlay-end rol) end)) (move-overlay rol start end (current-buffer))) rol))) nil [228348 229219])
-            ("redisplay--update-region-highlight" function (:arguments ("window")) nil [229221 230057])
-            ("pre-redisplay-functions" variable (:default-value (list (function redisplay--update-region-highlight))) nil [230059 230375])
-            ("redisplay--pre-redisplay-functions" function (:arguments ("windows")) nil [230377 230842])
-            ("add-function" code nil nil [230844 230940])
-            ("defvar-local" code nil nil [230943 231042])
-            ("put" code nil nil [231043 231078])
-            ("mark-ring-max" variable (:default-value 16) nil [231080 231225])
-            ("global-mark-ring" variable nil nil [231227 231311])
-            ("global-mark-ring-max" variable (:default-value 16) nil [231313 231474])
-            ("pop-to-mark-command" function (:user-visible-flag t) nil [231476 231789])
-            ("push-mark-command" function
-               (:user-visible-flag t
-                :arguments ("arg" "nomsg"))
-                nil [231791 232202])
-            ("set-mark-command-repeat-pop" variable nil nil [232204 232663])
-            ("set-mark-command" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [232665 234984])
-            ("push-mark" function (:arguments ("location" "nomsg" "activate")) nil [234986 236540])
-            ("pop-mark" function nil nil [236542 236961])
-            ("define-obsolete-function-alias" code nil nil [236963 237052])
-            ("exchange-point-and-mark" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [237053 237948])
-            ("shift-select-mode" variable (:default-value t) nil [237950 238522])
-            ("handle-shift-selection" function nil nil [238524 239849])
-            ("define-minor-mode" code nil nil [239851 241211])
-            ("widen-automatically" variable (:default-value t) nil [241213 241547])
-            ("non-essential" variable nil nil [241549 241947])
-            ("pop-global-mark" function (:user-visible-flag t) nil [241949 242764])
-            ("next-line-add-newlines" variable nil nil [242767 242941])
-            ("next-line" function (:arguments ("arg" "try-vscroll")) nil [242943 245140])
-            ("previous-line" function (:arguments ("arg" "try-vscroll")) nil [245142 246848])
-            ("track-eol" variable nil nil [246850 247188])
-            ("goal-column" variable nil nil [247190 247457])
-            ("make-variable-buffer-local" code nil nil [247458 247499])
-            ("temporary-goal-column" variable nil nil [247501 248018])
-            ("last--line-number-width" variable nil nil [248020 248151])
-            ("line-move-ignore-invisible" variable (:default-value t) nil [248153 248804])
-            ("line-move-visual" variable (:default-value t) nil [248806 249382])
-            ("declare-function" code nil nil [249419 249479])
-            ("default-font-height" function nil nil [249481 250115])
-            ("default-font-width" function nil nil [250117 250838])
-            ("default-line-height" function nil nil [250840 251302])
-            ("window-screen-lines" function nil nil [251304 251874])
-            ("line-move-partial" function (:arguments ("arg" "noerror" "_to-end")) nil [251921 255695])
-            ("line-move" function (:arguments ("arg" "noerror" "_to-end" "try-vscroll")) nil [256019 257976])
-            ("line-move-visual" function (:arguments ("arg" "noerror")) nil [258124 261606])
-            ("line-move-1" function (:arguments ("arg" "noerror" "_to-end")) nil [261760 266433])
-            ("line-move-finish" function (:arguments ("column" "opoint" "forward")) nil [266435 269936])
-            ("line-move-to-column" function (:arguments ("col")) nil [269938 271520])
-            ("move-end-of-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [271522 272877])
-            ("move-beginning-of-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [272879 274502])
-            ("put" code nil nil [274632 274666])
-            ("set-goal-column" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [274668 275701])
-            ("end-of-visual-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [275769 276333])
-            ("beginning-of-visual-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [276335 277024])
-            ("kill-visual-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [277026 278448])
-            ("next-logical-line" function
-               (:user-visible-flag t
-                :arguments ("arg" "try-vscroll"))
-                nil [278450 278819])
-            ("previous-logical-line" function
-               (:user-visible-flag t
-                :arguments ("arg" "try-vscroll"))
-                nil [278821 279200])
-            ("visual-line" customgroup (:user-visible-flag t) nil [279202 279303])
-            ("visual-line-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [remap kill-line] (quote kill-visual-line)) (define-key map [remap move-beginning-of-line] (quote beginning-of-visual-line)) (define-key map [remap move-end-of-line] (quote end-of-visual-line)) map)) nil [279305 279793])
-            ("visual-line-fringe-indicators" variable (:default-value (quote (nil nil))) nil [279795 280982])
-            ("visual-line--saved-state" variable nil nil [280984 281021])
-            ("define-minor-mode" code nil nil [281023 282849])
-            ("turn-on-visual-line-mode" function nil nil [282851 282909])
-            ("define-globalized-minor-mode" code nil nil [282911 283009])
-            ("transpose-chars" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [283013 283527])
-            ("transpose-words" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [283529 283973])
-            ("transpose-sexps" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [283975 285729])
-            ("transpose-lines" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [285731 286338])
-            ("transpose-subr" function (:arguments ("mover" "arg" "special")) nil [286489 287746])
-            ("transpose-subr-1" function (:arguments ("pos1" "pos2")) nil [287748 288752])
-            ("backward-word" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [288755 289411])
-            ("mark-word" function
-               (:user-visible-flag t
-                :arguments ("arg" "allow-extend"))
-                nil [289413 290165])
-            ("kill-word" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [290167 290379])
-            ("backward-kill-word" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [290381 290572])
-            ("current-word" function (:arguments ("strict" "really-word")) nil [290574 292182])
-            ("fill-prefix" variable nil nil [292185 292351])
-            ("make-variable-buffer-local" code nil nil [292352 292393])
-            ("put" code nil nil [292394 292451])
-            ("auto-fill-inhibit-regexp" variable nil nil [292453 292619])
-            ("do-auto-fill" function nil nil [292621 295977])
-            ("comment-line-break-function" variable (:default-value (quote comment-indent-new-line)) nil [295979 296305])
-            ("default-indent-new-line" function
-               (:user-visible-flag t
-                :arguments ("soft"))
-                nil [296307 297414])
-            ("internal-auto-fill" function nil nil [297416 297670])
-            ("normal-auto-fill-function" variable (:default-value (quote do-auto-fill)) nil [297672 297828])
-            ("put" code nil nil [297830 297892])
-            ("put" code nil nil [298066 298118])
-            ("define-minor-mode" code nil nil [298120 299026])
-            ("auto-fill-function" function nil nil [299093 299200])
-            ("turn-on-auto-fill" function nil nil [299202 299295])
-            ("turn-off-auto-fill" function nil nil [299297 299393])
-            ("custom-add-option" code nil nil [299395 299449])
-            ("set-fill-column" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [299451 300289])
-            ("set-selective-display" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [300292 301082])
-            ("defvaralias" code nil nil [301084 301142])
-            ("toggle-truncate-lines" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [301144 301924])
-            ("toggle-word-wrap" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [301926 302470])
-            ("overwrite-mode-textual" variable (:default-value (purecopy " Ovwrt")) nil [302472 302589])
-            ("overwrite-mode-binary" variable (:default-value (purecopy " Bin Ovwrt")) nil [302590 302717])
-            ("define-minor-mode" code nil nil [302719 303452])
-            ("define-minor-mode" code nil nil [303454 304382])
-            ("define-minor-mode" code nil nil [304384 304860])
-            ("define-minor-mode" code nil nil [304862 305166])
-            ("define-minor-mode" code nil nil [305168 305476])
-            ("define-minor-mode" code nil nil [305478 306474])
-            ("paren-blinking" customgroup (:user-visible-flag t) nil [306477 306608])
-            ("blink-matching-paren" variable (:default-value t) nil [306610 307208])
-            ("blink-matching-paren-on-screen" variable (:default-value t) nil [307210 307626])
-            ("blink-matching-paren-distance" variable (:default-value (* 100 1024)) nil [307628 307953])
-            ("blink-matching-delay" variable (:default-value 1) nil [307955 308091])
-            ("blink-matching-paren-dont-ignore-comments" variable nil nil [308093 308361])
-            ("blink-matching-check-mismatch" function (:arguments ("start" "end")) nil [308363 309348])
-            ("blink-matching-check-function" variable (:default-value (function blink-matching-check-mismatch)) nil [309350 309716])
-            ("blink-matching--overlay" variable (:default-value (let ((ol (make-overlay (point) (point) nil t))) (overlay-put ol (quote face) (quote show-paren-match)) (delete-overlay ol) ol)) nil [309718 309928])
-            ("blink-matching-open" function (:user-visible-flag t) nil [309930 314494])
-            ("blink-paren-function" variable (:default-value (quote blink-matching-open)) nil [314496 314685])
-            ("blink-paren-post-self-insert-function" function nil nil [314687 315334])
-            ("put" code nil nil [315336 315394])
-            ("add-hook" code nil nil [315396 315775])
-            ("keyboard-quit" function (:user-visible-flag t) nil [315962 316680])
-            ("buffer-quit-function" variable nil nil [316682 316932])
-            ("keyboard-escape-quit" function (:user-visible-flag t) nil [316934 317760])
-            ("play-sound-file" function
-               (:user-visible-flag t
-                :arguments ("file" "volume" "device"))
-                nil [317762 318157])
-            ("read-mail-command" variable (:default-value (quote rmail)) nil [318161 318678])
-            ("mail-user-agent" variable (:default-value (quote message-user-agent)) nil [318680 320224])
-            ("compose-mail-user-agent-warnings" variable (:default-value t) nil [320226 320551])
-            ("rfc822-goto-eoh" function nil nil [320553 320957])
-            ("mail-encode-mml" variable nil nil [320999 321138])
-            ("compose-mail" function
-               (:user-visible-flag t
-                :arguments ("to" "subject" "other-headers" "continue" "switch-function" "yank-action" "send-actions" "return-action"))
-                nil [321140 323834])
-            ("compose-mail-other-window" function
-               (:user-visible-flag t
-                :arguments ("to" "subject" "other-headers" "continue" "yank-action" "send-actions" "return-action"))
-                nil [323836 324227])
-            ("compose-mail-other-frame" function
-               (:user-visible-flag t
-                :arguments ("to" "subject" "other-headers" "continue" "yank-action" "send-actions" "return-action"))
-                nil [324229 324617])
-            ("set-variable-value-history" variable nil nil [324621 324806])
-            ("set-variable" function
-               (:user-visible-flag t
-                :arguments ("variable" "value" "make-local"))
-                nil [324808 327904])
-            ("completion-list-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mouse-2] (quote choose-completion)) (define-key map [follow-link] (quote mouse-face)) (define-key map [down-mouse-2] nil) (define-key map "
" (quote choose-completion)) (define-key map "" (quote delete-completion-window)) (define-key map [left] (quote previous-completion)) (define-key map [right] (quote next-completion)) (define-key map [9] (quote next-completion)) (define-key map [backtab] (quote previous-completion)) (define-key map "q" (quote quit-window)) (define-key map "z" (quote kill-current-buffer)) map)) nil [327959 328595])
-            ("put" code nil nil [328663 328711])
-            ("completion-reference-buffer" variable nil nil [328713 328942])
-            ("completion-no-auto-exit" variable nil nil [328944 329125])
-            ("completion-base-position" variable nil nil [329127 329497])
-            ("completion-list-insert-choice-function" variable (:default-value (function completion--replace)) nil [329499 329798])
-            ("completion-base-size" variable nil nil [329800 330255])
-            ("make-obsolete-variable" code nil nil [330256 330335])
-            ("delete-completion-window" function (:user-visible-flag t) nil [330337 330711])
-            ("previous-completion" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [330713 330844])
-            ("next-completion" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [330846 332096])
-            ("choose-completion" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [332098 334057])
-            ("choose-completion-guess-base-position" function (:arguments ("string")) nil [334141 334979])
-            ("choose-completion-delete-max-match" function (:arguments ("string")) nil [334981 335173])
-            ("choose-completion-string-functions" variable nil nil [335175 335814])
-            ("choose-completion-string" function (:arguments ("choice" "buffer" "base-position" "insert-function")) nil [335816 339226])
-            ("define-derived-mode" code nil nil [339228 339600])
-            ("completion-list-mode-finish" function nil nil [339602 339798])
-            ("add-hook" code nil nil [339800 339862])
-            ("completion-show-help" variable (:default-value t) nil [339926 340077])
-            ("completion-setup-function" function nil nil [340208 342190])
-            ("add-hook" code nil nil [342192 342252])
-            ("define-key" code nil nil [342254 342329])
-            ("define-key" code nil nil [342330 342405])
-            ("switch-to-completions" function (:user-visible-flag t) nil [342407 342948])
-            ("event-apply-alt-modifier" function (:arguments ("_ignore-prompt")) nil [343110 343353])
-            ("event-apply-super-modifier" function (:arguments ("_ignore-prompt")) nil [343354 343607])
-            ("event-apply-hyper-modifier" function (:arguments ("_ignore-prompt")) nil [343608 343861])
-            ("event-apply-shift-modifier" function (:arguments ("_ignore-prompt")) nil [343862 344115])
-            ("event-apply-control-modifier" function (:arguments ("_ignore-prompt")) nil [344116 344373])
-            ("event-apply-meta-modifier" function (:arguments ("_ignore-prompt")) nil [344374 344622])
-            ("event-apply-modifier" function (:arguments ("event" "symbol" "lshiftby" "prefix")) nil [344624 345688])
-            ("define-key" code nil nil [345690 345761])
-            ("define-key" code nil nil [345762 345833])
-            ("define-key" code nil nil [345834 345904])
-            ("define-key" code nil nil [345905 345974])
-            ("define-key" code nil nil [345975 346046])
-            ("define-key" code nil nil [346047 346120])
-            ("mapc" code nil nil [346410 347005])
-            ("clone-buffer-hook" variable nil nil [347057 347158])
-            ("clone-indirect-buffer-hook" variable nil nil [347160 347279])
-            ("clone-process" function (:arguments ("process" "newname")) nil [347281 348790])
-            ("clone-buffer" function
-               (:user-visible-flag t
-                :arguments ("newname" "display-flag"))
-                nil [348893 351856])
-            ("clone-indirect-buffer" function
-               (:user-visible-flag t
-                :arguments ("newname" "display-flag" "norecord"))
-                nil [351859 353499])
-            ("clone-indirect-buffer-other-window" function
-               (:user-visible-flag t
-                :arguments ("newname" "display-flag" "norecord"))
-                nil [353502 353985])
-            ("normal-erase-is-backspace" variable (:default-value (quote maybe)) nil [354033 355574])
-            ("normal-erase-is-backspace-setup-frame" function (:arguments ("frame")) nil [355576 356651])
-            ("define-minor-mode" code nil nil [356653 360148])
-            ("vis-mode-saved-buffer-invisibility-spec" variable nil nil [360151 360274])
-            ("define-minor-mode" code nil nil [360276 361429])
-            ("define-minor-mode" code nil nil [361431 362201])
-            ("messages-buffer-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map special-mode-map) (define-key map "g" nil) map)) nil [362204 362387])
-            ("define-derived-mode" code nil nil [362389 362505])
-            ("messages-buffer" function nil nil [362507 362794])
-            ("bad-packages-alist" variable
-               (:constant-flag t
-                :default-value (quote ((semantic semantic-version "\\`2\\.0pre[1-3]\\'" "The version of `semantic' loaded does not work in Emacs 22.



-It can cause constant high CPU load.



-Upgrade to at least Semantic 2.0pre4 (distributed with CEDET 1.0pre4).") (CUA-mode t nil "CUA-mode is now part of the standard GNU Emacs distribution,



-so you can now enable CUA via the Options menu or by customizing `cua-mode'.



-



-You have loaded an older version of CUA-mode which does not work



-correctly with this version of Emacs.  You should remove the old



-version and use the one distributed with Emacs."))))
-                nil [363743 365169])
-            ("bad-package-check" function (:arguments ("package")) nil [365171 365676])
-            ("dolist" code nil nil [365678 365800])
-            ("define-alternatives" function (:arguments ("command" "customizations")) nil [366453 369077])
-            ("upcase-dwim" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [369143 369512])
-            ("downcase-dwim" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [369514 369901])
-            ("capitalize-dwim" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [369903 370304])
-            ("simple" package nil nil [370309 370326]))          
-      :file "simple.el"
-      :pointmax 370352
-      :fsize 370637
-      :lastmodtime '(23525 29518 0 0)
-      :unmatched-syntax '((close-paren 1069 . 1070) (symbol 1034 . 1051) (open-paren 1033 . 1034)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("linum-version" variable
-               (:constant-flag t
-                :default-value "0.9x")
-                nil [1149 1180])
-            ("linum-overlays" variable nil nil [1182 1241])
-            ("linum-available" variable nil nil [1242 1302])
-            ("linum-before-numbering-hook" variable nil nil [1303 1406])
-            ("mapc" code nil nil [1408 1477])
-            ("linum" customgroup (:user-visible-flag t) nil [1479 1563])
-            ("linum-format" variable (:default-value (quote dynamic)) nil [1565 2040])
-            ("linum" variable
-               (:default-value (quote ((t :inherit (shadow default))))
-                :type "face")
-                nil [2042 2168])
-            ("linum-eager" variable (:default-value t) nil [2170 2431])
-            ("linum-delay" variable nil nil [2433 2553])
-            ("define-minor-mode" code nil nil [2570 4412])
-            ("define-globalized-minor-mode" code nil nil [4429 4497])
-            ("linum-on" function nil nil [4499 5161])
-            ("linum-delete-overlays" function nil nil [5163 5901])
-            ("linum-update-current" function nil nil [5903 6016])
-            ("linum-update" function (:arguments ("buffer")) nil [6018 6433])
-            ("declare-function" code nil nil [6469 6529])
-            ("linum--face-width" function (:arguments ("face")) nil [6531 6723])
-            ("linum-update-window" function (:arguments ("win")) nil [6725 9281])
-            ("linum-after-change" function (:arguments ("beg" "end" "_len")) nil [9283 9551])
-            ("linum-after-scroll" function (:arguments ("win" "_start")) nil [9553 9629])
-            ("linum-schedule" function nil nil [9694 9848])
-            ("linum-unload-function" function nil nil [9963 10089])
-            ("linum" package nil nil [10091 10107]))          
-      :file "linum.el"
-      :pointmax 10132
-      :fsize 10131
-      :lastmodtime '(23525 29512 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("make-mode-line-mouse-map" function (:arguments ("mouse" "function")) nil [929 1264])
-            ("mode-line-toggle-read-only" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [1267 1472])
-            ("mode-line-toggle-modified" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [1474 1733])
-            ("mode-line-widen" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [1735 1925])
-            ("mode-line-input-method-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mode-line mouse-2] (lambda (e) (interactive "e") (with-selected-window (posn-window (event-start e)) (toggle-input-method) (force-mode-line-update)))) (define-key map [mode-line mouse-3] (lambda (e) (interactive "e") (with-selected-window (posn-window (event-start e)) (describe-current-input-method)))) (purecopy map))) nil [1927 2372])
-            ("mode-line-coding-system-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mode-line mouse-1] (lambda (e) (interactive "e") (with-selected-window (posn-window (event-start e)) (when (and enable-multibyte-characters buffer-file-coding-system) (describe-coding-system buffer-file-coding-system))))) (define-key map [mode-line mouse-3] (lambda (e) (interactive "e") (with-selected-window (posn-window (event-start e)) (call-interactively (quote set-buffer-file-coding-system))))) (purecopy map))) nil [2374 2982])
-            ("mode-line-change-eol" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [2984 3334])
-            ("mode-line-eol-desc-cache" variable nil nil [3336 3373])
-            ("mode-line-eol-desc" function nil nil [3375 4254])
-            ("mode-line-default-help-echo" variable (:default-value "mouse-1: Select (drag to resize)



-mouse-2: Make current window occupy the whole frame



-mouse-3: Remove current window from display") nil [4282 4822])
-            ("mode-line-front-space" variable (:default-value (quote (:eval (if (display-graphic-p) " " "-")))) nil [4824 5109])
-            ("put" code nil nil [5110 5162])
-            ("mode-line-mule-info-help-echo" function (:arguments ("window" "_object" "_point")) nil [5164 5616])
-            ("mode-line-mule-info" variable (:default-value (\` ("" (current-input-method (:propertize ("" current-input-method-title) help-echo (concat (\, (purecopy "Current input method: ")) current-input-method (\, (purecopy "



-mouse-2: Disable input method



-mouse-3: Describe current input method"))) local-map (\, mode-line-input-method-map) mouse-face mode-line-highlight)) (\, (propertize "%z" (quote help-echo) (quote mode-line-mule-info-help-echo) (quote mouse-face) (quote mode-line-highlight) (quote local-map) mode-line-coding-system-map)) (:eval (mode-line-eol-desc))))) nil [5618 6540])
-            ("put" code nil nil [6556 6606])
-            ("make-variable-buffer-local" code nil nil [6607 6656])
-            ("mode-line-client" variable (:default-value (\` ("" (:propertize ("" (:eval (if (frame-parameter nil (quote client)) "@" ""))) help-echo (\, (purecopy "emacsclient frame")))))) nil [6658 6869])
-            ("put" code nil nil [6885 6932])
-            ("mode-line-read-only-help-echo" function (:arguments ("window" "_object" "_point")) nil [6934 7209])
-            ("mode-line-modified-help-echo" function (:arguments ("window" "_object" "_point")) nil [7211 7471])
-            ("mode-line-modified" variable (:default-value (list (propertize "%1*" (quote help-echo) (quote mode-line-read-only-help-echo) (quote local-map) (purecopy (make-mode-line-mouse-map (quote mouse-1) (function mode-line-toggle-read-only))) (quote mouse-face) (quote mode-line-highlight)) (propertize "%1+" (quote help-echo) (quote mode-line-modified-help-echo) (quote local-map) (purecopy (make-mode-line-mouse-map (quote mouse-1) (function mode-line-toggle-modified))) (quote mouse-face) (quote mode-line-highlight)))) nil [7473 7991])
-            ("put" code nil nil [8007 8056])
-            ("make-variable-buffer-local" code nil nil [8057 8105])
-            ("mode-line-remote" variable (:default-value (list (propertize "%1@" (quote mouse-face) (quote mode-line-highlight) (quote help-echo) (purecopy (lambda (window _object _point) (format "%s" (with-selected-window window (if (stringp default-directory) (concat (if (file-remote-p default-directory) "Current directory is remote: " "Current directory is local: ") default-directory) "Current directory is nil")))))))) nil [8107 8617])
-            ("put" code nil nil [8633 8680])
-            ("make-variable-buffer-local" code nil nil [8681 8727])
-            ("mode-line-frame-control" function nil nil [8797 9034])
-            ("mode-line-frame-identification" variable (:default-value (quote (:eval (mode-line-frame-control)))) nil [9144 9273])
-            ("put" code nil nil [9289 9350])
-            ("mode-line-process" variable nil nil [9352 9511])
-            ("put" code nil nil [9527 9575])
-            ("make-variable-buffer-local" code nil nil [9576 9623])
-            ("bindings--define-key" function (:arguments ("map" "key" "item")) nil [9625 10376])
-            ("mode-line-mode-menu" variable (:default-value (make-sparse-keymap "Minor Modes")) nil [10378 10487])
-            ("mode-line-major-mode-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (bindings--define-key map [mode-line down-mouse-1] (\` (menu-item "Menu Bar" ignore :filter (\, (lambda (_) (mouse-menu-major-mode-map)))))) (define-key map [mode-line mouse-2] (quote describe-mode)) (define-key map [mode-line down-mouse-3] mode-line-mode-menu) map)) nil [10489 10880])
-            ("mode-line-minor-mode-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mode-line down-mouse-1] (quote mouse-minor-mode-menu)) (define-key map [mode-line mouse-2] (quote mode-line-minor-mode-help)) (define-key map [mode-line down-mouse-3] mode-line-mode-menu) (define-key map [header-line down-mouse-3] mode-line-mode-menu) map)) nil [10882 11272])
-            ("mode-line-modes" variable (:default-value (let ((recursive-edit-help-echo "Recursive edit, type C-M-c to get out")) (list (propertize "%[" (quote help-echo) recursive-edit-help-echo) "(" (\` (:propertize ("" mode-name) help-echo "Major mode



-mouse-1: Display major mode menu



-mouse-2: Show help for major mode



-mouse-3: Toggle minor modes" mouse-face mode-line-highlight local-map (\, mode-line-major-mode-keymap))) (quote ("" mode-line-process)) (\` (:propertize ("" minor-mode-alist) mouse-face mode-line-highlight help-echo "Minor mode



-mouse-1: Display minor mode menu



-mouse-2: Show help for minor mode



-mouse-3: Toggle minor modes" local-map (\, mode-line-minor-mode-keymap))) (propertize "%n" (quote help-echo) "mouse-2: Remove narrowing from buffer" (quote mouse-face) (quote mode-line-highlight) (quote local-map) (make-mode-line-mouse-map (quote mouse-2) (function mode-line-widen))) ")" (propertize "%]" (quote help-echo) recursive-edit-help-echo) " "))) nil [11274 12284])
-            ("put" code nil nil [12285 12331])
-            ("mode-line-column-line-number-mode-map" variable (:default-value (let ((map (make-sparse-keymap)) (menu-map (make-sparse-keymap "Toggle Line and Column Number Display"))) (bindings--define-key menu-map [size-indication-mode] (quote (menu-item "Display Size Indication" size-indication-mode :help "Toggle displaying a size indication in the mode-line" :button (:toggle . size-indication-mode)))) (bindings--define-key menu-map [line-number-mode] (quote (menu-item "Display Line Numbers" line-number-mode :help "Toggle displaying line numbers in the mode-line" :button (:toggle . line-number-mode)))) (bindings--define-key menu-map [column-number-mode] (quote (menu-item "Display Column Numbers" column-number-mode :help "Toggle displaying column numbers in the mode-line" :button (:toggle . column-number-mode)))) (define-key map [mode-line down-mouse-1] menu-map) map)) nil [12333 13277])
-            ("column-number-indicator-zero-based" variable (:default-value t) nil [13279 13665])
-            ("mode-line-percent-position" variable (:default-value (quote (-3 "%p"))) nil [13667 14457])
-            ("put" code nil nil [14458 14515])
-            ("mode-line-position" variable (:default-value (\` ((:propertize mode-line-percent-position local-map (\, mode-line-column-line-number-mode-map) mouse-face mode-line-highlight help-echo "Size indication mode



-mouse-1: Display Line and Column Mode Menu") (size-indication-mode (8 (\, (propertize " of %I" (quote local-map) mode-line-column-line-number-mode-map (quote mouse-face) (quote mode-line-highlight) (quote help-echo) "Size indication mode



-mouse-1: Display Line and Column Mode Menu")))) (line-number-mode ((column-number-mode (column-number-indicator-zero-based (10 (\, (propertize " (%l,%c)" (quote local-map) mode-line-column-line-number-mode-map (quote mouse-face) (quote mode-line-highlight) (quote help-echo) "Line number and Column number



-mouse-1: Display Line and Column Mode Menu"))) (10 (\, (propertize " (%l,%C)" (quote local-map) mode-line-column-line-number-mode-map (quote mouse-face) (quote mode-line-highlight) (quote help-echo) "Line number and Column number



-mouse-1: Display Line and Column Mode Menu")))) (6 (\, (propertize " L%l" (quote local-map) mode-line-column-line-number-mode-map (quote mouse-face) (quote mode-line-highlight) (quote help-echo) "Line Number



-mouse-1: Display Line and Column Mode Menu"))))) ((column-number-mode (column-number-indicator-zero-based (5 (\, (propertize " C%c" (quote local-map) mode-line-column-line-number-mode-map (quote mouse-face) (quote mode-line-highlight) (quote help-echo) "Column number



-mouse-1: Display Line and Column Mode Menu"))) (5 (\, (propertize " C%C" (quote local-map) mode-line-column-line-number-mode-map (quote mouse-face) (quote mode-line-highlight) (quote help-echo) "Column number



-mouse-1: Display Line and Column Mode Menu")))))))))) nil [14517 16636])
-            ("put" code nil nil [16637 16686])
-            ("mode-line-buffer-identification-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mode-line mouse-1] (quote mode-line-previous-buffer)) (define-key map [header-line down-mouse-1] (quote ignore)) (define-key map [header-line mouse-1] (quote mode-line-previous-buffer)) (define-key map [mode-line mouse-3] (quote mode-line-next-buffer)) (define-key map [header-line down-mouse-3] (quote ignore)) (define-key map [header-line mouse-3] (quote mode-line-next-buffer)) map)) nil [16688 17421])
-            ("propertized-buffer-identification" function (:arguments ("fmt")) nil [17423 17907])
-            ("mode-line-buffer-identification" variable (:default-value (propertized-buffer-identification "%12b")) nil [17909 18222])
-            ("put" code nil nil [18238 18300])
-            ("make-variable-buffer-local" code nil nil [18301 18362])
-            ("mode-line-misc-info" variable (:default-value (quote ((global-mode-string ("" global-mode-string " "))))) nil [18364 18575])
-            ("put" code nil nil [18576 18626])
-            ("mode-line-end-spaces" variable (:default-value (quote (:eval (unless (display-graphic-p) "-%-")))) nil [18628 18761])
-            ("put" code nil nil [18762 18813])
-            ("let" code nil nil [18878 19443])
-            ("mode-line-unbury-buffer" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [19447 19626])
-            ("mode-line-bury-buffer" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [19628 19825])
-            ("mode-line-other-buffer" function (:user-visible-flag t) nil [19827 19994])
-            ("mode-line-next-buffer" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [19996 20193])
-            ("mode-line-previous-buffer" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [20195 20404])
-            ("bound-and-true-p" function (:arguments ("var")) nil [20406 20536])
-            ("bindings--define-key" code nil nil [20655 20876])
-            ("bindings--define-key" code nil nil [20877 21125])
-            ("bindings--define-key" code nil nil [21126 21391])
-            ("bindings--define-key" code nil nil [21392 21621])
-            ("bindings--define-key" code nil nil [21622 21861])
-            ("bindings--define-key" code nil nil [21862 22036])
-            ("bindings--define-key" code nil nil [22037 22242])
-            ("bindings--define-key" code nil nil [22243 22547])
-            ("bindings--define-key" code nil nil [22548 22788])
-            ("bindings--define-key" code nil nil [22789 22989])
-            ("bindings--define-key" code nil nil [22990 23180])
-            ("mode-line-minor-mode-help" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [23182 23421])
-            ("minor-mode-alist" variable nil nil [23423 23720])
-            ("put" code nil nil [23736 23783])
-            ("setq" code nil nil [23854 24061])
-            ("setq" code nil nil [24346 25608])
-            ("setq" code nil nil [25644 25786])
-            ("setq" code nil nil [25900 26303])
-            ("make-variable-buffer-local" code nil nil [26305 26351])
-            ("mapc" code nil nil [26673 27066])
-            ("base64" package nil nil [27124 27141])
-            ("md5" package nil nil [27142 27156])
-            ("sha1" package nil nil [27157 27172])
-            ("overlay" package nil nil [27173 27221])
-            ("text-properties" package nil nil [27222 27292])
-            ("define-key" code nil nil [27294 27336])
-            ("complete-symbol" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [27338 27717])
-            ("garbage-collect" code nil nil [27835 27852])
-            ("setq" code nil nil [27856 27893])
-            ("make-variable-buffer-local" code nil nil [27895 27956])
-            ("global-set-key" code nil nil [27974 28026])
-            ("global-set-key" code nil nil [28027 28081])
-            ("global-set-key" code nil nil [28277 28329])
-            ("global-set-key" code nil nil [28330 28376])
-            ("global-set-key" code nil nil [28377 28428])
-            ("put" code nil nil [28514 28549])
-            ("visual-order-cursor-movement" variable nil nil [28602 29306])
-            ("right-char" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [29308 30064])
-            ("left-char" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [30066 30821])
-            ("right-word" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [30823 31431])
-            ("left-word" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [31433 32040])
-            ("narrow-map" variable (:default-value (make-sparse-keymap)) nil [32042 32117])
-            ("define-key" code nil nil [32118 32155])
-            ("define-key" code nil nil [32157 32202])
-            ("define-key" code nil nil [32203 32237])
-            ("define-key" code nil nil [32251 32305])
-            ("define-key" code nil nil [32306 32351])
-            ("substitute-key-definition" code nil nil [32460 32528])
-            ("define-key" code nil nil [32530 32569])
-            ("define-key" code nil nil [32570 32611])
-            ("define-key" code nil nil [32612 32651])
-            ("define-key" code nil nil [32652 32697])
-            ("define-key" code nil nil [32698 32742])
-            ("define-key" code nil nil [32743 32793])
-            ("define-key" code nil nil [32794 32839])
-            ("define-key" code nil nil [32840 32889])
-            ("define-key" code nil nil [32890 32930])
-            ("define-key" code nil nil [32931 32968])
-            ("define-key" code nil nil [32969 33013])
-            ("define-key" code nil nil [33014 33062])
-            ("define-key" code nil nil [33063 33104])
-            ("define-key" code nil nil [33178 33222])
-            ("define-key" code nil nil [33289 33342])
-            ("define-key" code nil nil [33376 33429])
-            ("define-key" code nil nil [33430 33462])
-            ("put" code nil nil [33463 33505])
-            ("define-key" code nil nil [33576 33613])
-            ("define-key" code nil nil [33614 33650])
-            ("define-key" code nil nil [33829 33868])
-            ("define-key" code nil nil [33869 33918])
-            ("define-key" code nil nil [33919 33964])
-            ("define-key" code nil nil [33966 34009])
-            ("define-key" code nil nil [34010 34055])
-            ("define-key" code nil nil [34056 34106])
-            ("define-key" code nil nil [34107 34153])
-            ("define-key" code nil nil [34154 34202])
-            ("define-key" code nil nil [34203 34254])
-            ("let" code nil nil [34256 35159])
-            ("define-key" code nil nil [35161 35211])
-            ("let" code nil nil [35212 35326])
-            ("define-key" code nil nil [35327 35370])
-            ("let" code nil nil [35397 35525])
-            ("define-key" code nil nil [35526 35576])
-            ("let" code nil nil [35608 35733])
-            ("define-key" code nil nil [35734 35787])
-            ("define-key" code nil nil [35843 35895])
-            ("define-key" code nil nil [36178 36221])
-            ("define-key" code nil nil [36223 36264])
-            ("define-key" code nil nil [36265 36308])
-            ("define-key" code nil nil [36309 36349])
-            ("define-key" code nil nil [36350 36395])
-            ("define-key" code nil nil [36396 36432])
-            ("define-key" code nil nil [36433 36467])
-            ("define-key" code nil nil [36518 36566])
-            ("define-key" code nil nil [36624 36673])
-            ("put" code nil nil [36674 36725])
-            ("define-key" code nil nil [36727 36781])
-            ("define-key" code nil nil [36782 36828])
-            ("define-key" code nil nil [36829 36876])
-            ("define-key" code nil nil [36877 36924])
-            ("define-key" code nil nil [36926 36967])
-            ("define-key" code nil nil [36968 37013])
-            ("define-key" code nil nil [37014 37060])
-            ("define-key" code nil nil [37061 37115])
-            ("define-key" code nil nil [37116 37164])
-            ("define-key" code nil nil [37166 37204])
-            ("goto-map" variable (:default-value (make-sparse-keymap)) nil [37206 37280])
-            ("define-key" code nil nil [37281 37314])
-            ("define-key" code nil nil [37316 37355])
-            ("define-key" code nil nil [37356 37395])
-            ("define-key" code nil nil [37396 37435])
-            ("define-key" code nil nil [37436 37476])
-            ("define-key" code nil nil [37477 37517])
-            ("define-key" code nil nil [37518 37562])
-            ("define-key" code nil nil [37563 37607])
-            ("define-key" code nil nil [37608 37652])
-            ("search-map" variable (:default-value (make-sparse-keymap)) nil [37654 37734])
-            ("define-key" code nil nil [37735 37770])
-            ("define-key" code nil nil [37772 37809])
-            ("define-key" code nil nil [37810 37858])
-            ("define-key" code nil nil [37859 37907])
-            ("define-key" code nil nil [37908 37956])
-            ("define-key" code nil nil [37957 38020])
-            ("define-key" code nil nil [38021 38078])
-            ("define-key" code nil nil [38079 38129])
-            ("define-key" code nil nil [38130 38183])
-            ("define-key" code nil nil [38184 38250])
-            ("define-key" code nil nil [38360 38416])
-            ("define-key" code nil nil [38417 38463])
-            ("define-key" code nil nil [38660 38717])
-            ("define-key" code nil nil [38718 38773])
-            ("define-key" code nil nil [38774 38828])
-            ("define-key" code nil nil [38829 38896])
-            ("define-key" code nil nil [38897 38962])
-            ("define-key" code nil nil [38963 39005])
-            ("define-key" code nil nil [39006 39050])
-            ("define-key" code nil nil [39051 39095])
-            ("define-key" code nil nil [39096 39138])
-            ("define-key" code nil nil [39139 39192])
-            ("define-key" code nil nil [39193 39243])
-            ("define-key" code nil nil [39244 39295])
-            ("define-key" code nil nil [39296 39348])
-            ("define-key" code nil nil [39349 39396])
-            ("put" code nil nil [39397 39427])
-            ("define-key" code nil nil [39428 39474])
-            ("define-key" code nil nil [39475 39529])
-            ("define-key" code nil nil [39530 39582])
-            ("define-key" code nil nil [39583 39642])
-            ("define-key" code nil nil [39643 39701])
-            ("define-key" code nil nil [39702 39760])
-            ("define-key" code nil nil [39761 39809])
-            ("define-key" code nil nil [39810 39857])
-            ("define-key" code nil nil [39858 39918])
-            ("define-key" code nil nil [39919 39977])
-            ("define-key" code nil nil [39978 40031])
-            ("define-key" code nil nil [40032 40099])
-            ("define-key" code nil nil [40100 40166])
-            ("define-key" code nil nil [40278 40337])
-            ("define-key" code nil nil [40338 40387])
-            ("define-key" code nil nil [40388 40438])
-            ("define-key" code nil nil [40439 40479])
-            ("define-key" code nil nil [40578 40630])
-            ("define-key" code nil nil [40631 40685])
-            ("define-key" code nil nil [40686 40730])
-            ("define-key" code nil nil [40731 40768])
-            ("define-key" code nil nil [40769 40824])
-            ("define-key" code nil nil [40825 40881])
-            ("define-key" code nil nil [40897 40939])
-            ("define-key" code nil nil [41171 41218])
-            ("define-key" code nil nil [41219 41266])
-            ("define-key" code nil nil [41267 41324])
-            ("let" code nil nil [45285 46131])
-            ("define-key" code nil nil [46133 46182])
-            ("define-key" code nil nil [46183 46229])
-            ("define-key" code nil nil [46230 46279])
-            ("define-key" code nil nil [47446 47492])
-            ("define-key" code nil nil [47614 47661])
-            ("define-key" code nil nil [47663 47711])
-            ("define-key" code nil nil [47713 47760])
-            ("define-key" code nil nil [47761 47802])
-            ("define-key" code nil nil [47803 47847])
-            ("define-key" code nil nil [47848 47894])
-            ("define-key" code nil nil [47896 47934])
-            ("define-key" code nil nil [47935 47984])
-            ("define-key" code nil nil [47985 48037])
-            ("define-key" code nil nil [48038 48084])
-            ("define-key" code nil nil [48085 48130])
-            ("define-key" code nil nil [48131 48174])
-            ("define-key" code nil nil [48175 48224])
-            ("define-key" code nil nil [48226 48261])
-            ("define-key" code nil nil [48262 48300])
-            ("define-key" code nil nil [48301 48340])
-            ("define-key" code nil nil [48341 48376])
-            ("define-key" code nil nil [48377 48424])
-            ("define-key" code nil nil [48426 48471])
-            ("define-key" code nil nil [48472 48511])
-            ("define-key" code nil nil [48512 48557])
-            ("define-key" code nil nil [48558 48608])
-            ("defalias" code nil nil [48610 48671])
-            ("mode-specific-map" variable (:default-value (symbol-function (quote mode-specific-command-prefix))) nil [48672 48787])
-            ("define-key" code nil nil [48788 48848])
-            ("global-set-key" code nil nil [48850 48889])
-            ("define-key" code nil nil [48890 48932])
-            ("global-set-key" code nil nil [48933 48971])
-            ("define-key" code nil nil [48972 49014])
-            ("global-set-key" code nil nil [49091 49130])
-            ("global-set-key" code nil nil [49131 49169])
-            ("global-set-key" code nil nil [49229 49267])
-            ("global-set-key" code nil nil [49268 49318])
-            ("global-set-key" code nil nil [49379 49419])
-            ("global-set-key" code nil nil [49421 49466])
-            ("define-key" code nil nil [49467 49512])
-            ("global-set-key" code nil nil [49513 49557])
-            ("define-key" code nil nil [49558 49602])
-            ("global-set-key" code nil nil [49603 49651])
-            ("define-key" code nil nil [49652 49700])
-            ("global-set-key" code nil nil [49701 49742])
-            ("define-key" code nil nil [49743 49784])
-            ("global-set-key" code nil nil [49785 49835])
-            ("define-key" code nil nil [49836 49886])
-            ("global-set-key" code nil nil [49887 49931])
-            ("define-key" code nil nil [49932 49976])
-            ("define-key" code nil nil [49978 50019])
-            ("define-key" code nil nil [50020 50062])
-            ("define-key" code nil nil [50063 50108])
-            ("define-key" code nil nil [50109 50147])
-            ("define-key" code nil nil [50148 50188])
-            ("define-key" code nil nil [50189 50227])
-            ("define-key" code nil nil [50228 50266])
-            ("define-key" code nil nil [50484 50535])
-            ("define-key" code nil nil [50536 50590])
-            ("define-key" code nil nil [50591 50632])
-            ("define-key" code nil nil [50633 50675])
-            ("define-key" code nil nil [50676 50723])
-            ("define-key" code nil nil [50724 50765])
-            ("define-key" code nil nil [50766 50805])
-            ("define-key" code nil nil [50806 50850])
-            ("define-key" code nil nil [50851 50895])
-            ("define-key" code nil nil [50896 50950])
-            ("define-key" code nil nil [50952 50997])
-            ("define-key" code nil nil [50999 51039])
-            ("define-key" code nil nil [51040 51095])
-            ("define-key" code nil nil [51096 51150])
-            ("ctl-x-r-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "c" (quote clear-rectangle)) (define-key map "k" (quote kill-rectangle)) (define-key map "d" (quote delete-rectangle)) (define-key map "y" (quote yank-rectangle)) (define-key map "o" (quote open-rectangle)) (define-key map "t" (quote string-rectangle)) (define-key map "N" (quote rectangle-number-lines)) (define-key map "\367" (quote copy-rectangle-as-kill)) (define-key map "�" (quote point-to-register)) (define-key map [67108896] (quote point-to-register)) (define-key map " " (quote point-to-register)) (define-key map "j" (quote jump-to-register)) (define-key map "s" (quote copy-to-register)) (define-key map "x" (quote copy-to-register)) (define-key map "i" (quote insert-register)) (define-key map "g" (quote insert-register)) (define-key map "r" (quote copy-rectangle-to-register)) (define-key map "n" (quote number-to-register)) (define-key map "+" (quote increment-register)) (define-key map "w" (quote window-configuration-to-register)) (define-key map "f" (quote frameset-to-register)) map)) nil [51154 52210])
-            ("define-key" code nil nil [52211 52249])
-            ("define-key" code nil nil [52251 52291])
-            ("define-key" code nil nil [52292 52335])
-            ("define-key" code nil nil [52338 52382])
-            ("define-key" code nil nil [52383 52426])
-            ("define-key" code nil nil [52427 52467])
-            ("define-key" code nil nil [52468 52511])
-            ("define-key" code nil nil [52512 52554])
-            ("define-key" code nil nil [52555 52594])
-            ("define-key" code nil nil [52595 52648])
-            ("define-key" code nil nil [52650 52691])
-            ("define-key" code nil nil [52692 52732])
-            ("define-key" code nil nil [52733 52773])
-            ("define-key" code nil nil [52774 52818])
-            ("define-key" code nil nil [52819 52862])
-            ("abbrev-map" variable (:default-value (make-sparse-keymap)) nil [52911 52983])
-            ("define-key" code nil nil [52984 53021])
-            ("define-key" code nil nil [53023 53067])
-            ("define-key" code nil nil [53068 53115])
-            ("define-key" code nil nil [53116 53162])
-            ("define-key" code nil nil [53163 53207])
-            ("define-key" code nil nil [53208 53263])
-            ("define-key" code nil nil [53264 53317])
-            ("define-key" code nil nil [53379 53433])
-            ("define-key" code nil nil [53434 53476])
-            ("define-key" code nil nil [53477 53519])
-            ("define-key" code nil nil [53734 53778])
-            ("define-key" code nil nil [53779 53820])
-            ("define-key" code nil nil [53821 53864])
-            ("define-key" code nil nil [53866 53900])
-            ("define-key" code nil nil [53902 53948])
-            ("define-key" code nil nil [53950 54013])
-            ("define-key" code nil nil [54014 54078])
-            ("define-key" code nil nil [54099 54147])
-            ("define-key" code nil nil [54148 54196]))          
-      :file "bindings.el"
-      :pointmax 54328
-      :fsize 54327
-      :lastmodtime '(23525 29503 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("internal--before-save-selected-window" function nil nil [990 2023])
-            ("internal--after-save-selected-window" function (:arguments ("state")) nil [2025 2322])
-            ("save-selected-window" function (:arguments ("body")) nil [2324 3362])
-            ("temp-buffer-window-setup-hook" variable nil nil [3364 3565])
-            ("temp-buffer-window-show-hook" variable nil nil [3567 3788])
-            ("temp-buffer-window-setup" function (:arguments ("buffer-or-name")) nil [3790 4404])
-            ("temp-buffer-window-show" function (:arguments ("buffer" "action")) nil [4406 5650])
-            ("with-temp-buffer-window" function (:arguments ("buffer-or-name" "action" "quit-function" "body")) nil [5652 8234])
-            ("with-current-buffer-window" function (:arguments ("buffer-or-name" "action" "quit-function" "body")) nil [8236 9125])
-            ("with-displayed-buffer-window" function (:arguments ("buffer-or-name" "action" "quit-function" "body")) nil [9127 11455])
-            ("window-right" function (:arguments ("window")) nil [11762 11974])
-            ("window-left" function (:arguments ("window")) nil [11976 12186])
-            ("window-child" function (:arguments ("window")) nil [12188 12343])
-            ("window-child-count" function (:arguments ("window")) nil [12345 12641])
-            ("window-last-child" function (:arguments ("window")) nil [12643 12910])
-            ("window-normalize-buffer" function (:arguments ("buffer-or-name")) nil [12912 13684])
-            ("window-normalize-frame" function (:arguments ("frame")) nil [13686 14116])
-            ("window-normalize-window" function (:arguments ("window" "live-only")) nil [14118 14825])
-            ("frame-char-size" function (:arguments ("window-or-frame" "horizontal")) nil [14864 15636])
-            ("ignore-window-parameters" variable nil nil [15638 15982])
-            ("window-safe-min-height" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [16032 16156])
-            ("window-safe-min-pixel-height" function (:arguments ("window")) nil [16158 16354])
-            ("window-min-height" variable (:default-value 4) nil [16356 17059])
-            ("window-min-pixel-height" function (:arguments ("window")) nil [17061 17248])
-            ("window-safe-min-width" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [17298 17421])
-            ("window-safe-min-pixel-width" function (:arguments ("window")) nil [17423 17618])
-            ("window-min-width" variable (:default-value 10) nil [17620 18319])
-            ("window-min-pixel-width" function (:arguments ("window")) nil [18321 18506])
-            ("window-safe-min-pixel-size" function (:arguments ("window" "horizontal")) nil [18508 18825])
-            ("window-min-pixel-size" function (:arguments ("window" "horizontal")) nil [18827 19111])
-            ("window-combined-p" function (:arguments ("window" "horizontal")) nil [19113 19745])
-            ("window-combination-p" function (:arguments ("window" "horizontal")) nil [19747 20173])
-            ("window-combinations" function (:arguments ("window" "horizontal")) nil [20175 21282])
-            ("walk-window-tree-1" function (:arguments ("fun" "walk-window-tree-window" "any" "sub-only")) nil [21284 21996])
-            ("walk-window-tree" function (:arguments ("fun" "frame" "any" "minibuf")) nil [21998 23221])
-            ("walk-window-subtree" function (:arguments ("fun" "window" "any")) nil [23223 23874])
-            ("window-with-parameter" function (:arguments ("parameter" "value" "frame" "any" "minibuf")) nil [23876 24834])
-            ("window-atom-root" function (:arguments ("window")) nil [24856 25276])
-            ("window-make-atom" function (:arguments ("window")) nil [25278 25666])
-            ("display-buffer-in-atom-window" function (:arguments ("buffer" "alist")) nil [25668 28134])
-            ("window--atom-check-1" function (:arguments ("window")) nil [28136 29024])
-            ("window--atom-check" function (:arguments ("frame")) nil [29026 29414])
-            ("window-sides-vertical" variable nil nil [29433 29729])
-            ("window-sides-reversed" variable nil nil [29731 30632])
-            ("window-sides-slots" variable (:default-value (quote (nil nil nil nil))) nil [30634 32283])
-            ("defvar-local" code nil nil [32285 32734])
-            ("window--sides-inhibit-check" variable nil nil [32736 32830])
-            ("window--sides-reverse-on-frame-p" function (:arguments ("frame")) nil [32832 34401])
-            ("window-main-window" function (:arguments ("frame")) nil [34403 35391])
-            ("window--make-major-side-window-next-to" function (:arguments ("side")) nil [35393 37234])
-            ("window--make-major-side-window" function (:arguments ("buffer" "side" "slot" "alist")) nil [37236 39444])
-            ("display-buffer-in-side-window" function (:arguments ("buffer" "alist")) nil [39446 45933])
-            ("window-toggle-side-windows" function
-               (:user-visible-flag t
-                :arguments ("frame"))
-                nil [45935 47449])
-            ("window--sides-reverse-all" function nil nil [47451 47648])
-            ("window--sides-reverse-frame" function (:arguments ("frame")) nil [47650 48107])
-            ("window--sides-reverse-side" function (:arguments ("frame" "side")) nil [48109 49041])
-            ("window--sides-reverse" function (:arguments ("symbol" "value")) nil [49043 49624])
-            ("window--sides-verticalize-frame" function (:arguments ("frame")) nil [49626 50956])
-            ("window--sides-verticalize" function (:arguments ("symbol" "value")) nil [50958 51172])
-            ("window--sides-check-failed" function (:arguments ("frame")) nil [51174 52876])
-            ("window--sides-check" function (:arguments ("frame")) nil [52878 53814])
-            ("window--check" function (:arguments ("frame")) nil [53816 53996])
-            ("window--dump-window" function (:arguments ("window" "erase")) nil [54032 55876])
-            ("window--dump-frame" function (:arguments ("window-or-frame")) nil [55878 57499])
-            ("window-total-size" function (:arguments ("window" "horizontal" "round")) nil [57519 58467])
-            ("window-size" function (:arguments ("window" "horizontal" "pixelwise" "round")) nil [58469 59273])
-            ("window-size-fixed" variable nil nil [59275 59712])
-            ("make-variable-buffer-local" code nil nil [59713 59760])
-            ("window--preservable-size" function (:arguments ("window" "horizontal")) nil [59762 60188])
-            ("window-preserve-size" function (:arguments ("window" "horizontal" "preserve")) nil [60190 61594])
-            ("window-preserved-size" function (:arguments ("window" "horizontal")) nil [61596 62134])
-            ("window--preserve-size" function (:arguments ("window" "horizontal")) nil [62136 62496])
-            ("window-safe-min-size" function (:arguments ("window" "horizontal" "pixelwise")) nil [62498 63203])
-            ("window-min-size" function (:arguments ("window" "horizontal" "ignore" "pixelwise")) nil [63205 63773])
-            ("window--min-size-ignore-p" function (:arguments ("window" "ignore")) nil [63775 63995])
-            ("window--min-size-1" function (:arguments ("window" "horizontal" "ignore" "pixelwise")) nil [63997 67788])
-            ("window-sizable" function (:arguments ("window" "delta" "horizontal" "ignore" "pixelwise")) nil [67790 69160])
-            ("window-sizable-p" function (:arguments ("window" "delta" "horizontal" "ignore" "pixelwise")) nil [69162 69667])
-            ("window--size-fixed-1" function (:arguments ("window" "horizontal" "ignore")) nil [69669 70994])
-            ("window-size-fixed-p" function (:arguments ("window" "horizontal" "ignore")) nil [70996 71644])
-            ("window--min-delta-1" function (:arguments ("window" "delta" "horizontal" "ignore" "trail" "noup" "pixelwise")) nil [71646 72988])
-            ("window-min-delta" function (:arguments ("window" "horizontal" "ignore" "trail" "noup" "nodown" "pixelwise")) nil [72990 74773])
-            ("frame-windows-min-size" function (:arguments ("frame" "horizontal" "ignore" "pixelwise")) nil [74775 75384])
-            ("window--max-delta-1" function (:arguments ("window" "delta" "horizontal" "ignore" "trail" "noup" "pixelwise")) nil [75386 76686])
-            ("window-max-delta" function (:arguments ("window" "horizontal" "ignore" "trail" "noup" "nodown" "pixelwise")) nil [76688 78134])
-            ("window--resizable" function (:arguments ("window" "delta" "horizontal" "ignore" "trail" "noup" "nodown" "pixelwise")) nil [78182 79991])
-            ("window--resizable-p" function (:arguments ("window" "delta" "horizontal" "ignore" "trail" "noup" "nodown" "pixelwise")) nil [79993 80651])
-            ("window-resizable" function (:arguments ("window" "delta" "horizontal" "ignore" "pixelwise")) nil [80653 82165])
-            ("window-resizable-p" function (:arguments ("window" "delta" "horizontal" "ignore" "pixelwise")) nil [82167 82723])
-            ("defalias" code nil nil [82770 82816])
-            ("defalias" code nil nil [82817 82860])
-            ("window-full-height-p" function (:arguments ("window")) nil [82862 83400])
-            ("window-full-width-p" function (:arguments ("window")) nil [83402 83834])
-            ("window-body-size" function (:arguments ("window" "horizontal" "pixelwise")) nil [83836 84367])
-            ("declare-function" code nil nil [84369 84429])
-            ("window-font-width" function (:arguments ("window" "face")) nil [84431 85061])
-            ("window-font-height" function (:arguments ("window" "face")) nil [85063 85626])
-            ("overflow-newline-into-fringe" variable nil nil [85628 85665])
-            ("window-max-chars-per-line" function (:arguments ("window" "face")) nil [85667 87181])
-            ("window-current-scroll-bars" function (:arguments ("window")) nil [87183 88154])
-            ("walk-windows" function (:arguments ("fun" "minibuf" "all-frames")) nil [88156 90038])
-            ("window-at-side-p" function (:arguments ("window" "side")) nil [90040 90617])
-            ("window-at-side-list" function (:arguments ("frame" "side")) nil [90619 91137])
-            ("window--in-direction-2" function (:arguments ("window" "posn" "horizontal")) nil [91139 91529])
-            ("window-in-direction" function (:arguments ("direction" "window" "ignore" "sign" "wrap" "mini")) nil [91824 97322])
-            ("get-window-with-predicate" function (:arguments ("predicate" "minibuf" "all-frames" "default")) nil [97324 98945])
-            ("defalias" code nil nil [98947 98997])
-            ("get-lru-window" function (:arguments ("all-frames" "dedicated" "not-selected")) nil [98999 100650])
-            ("get-mru-window" function (:arguments ("all-frames" "dedicated" "not-selected")) nil [100652 101922])
-            ("get-largest-window" function (:arguments ("all-frames" "dedicated" "not-selected")) nil [101924 103217])
-            ("get-buffer-window-list" function (:arguments ("buffer-or-name" "minibuf" "all-frames")) nil [103219 104787])
-            ("minibuffer-window-active-p" function (:arguments ("window")) nil [104789 104968])
-            ("count-windows" function (:arguments ("minibuf")) nil [104970 105263])
-            ("window--size-to-pixel" function (:arguments ("window" "size" "horizontal" "pixelwise" "round-maybe")) nil [105288 106238])
-            ("window--pixel-to-total-1" function (:arguments ("window" "horizontal" "char-size")) nil [106240 107864])
-            ("window--pixel-to-total" function (:arguments ("frame" "horizontal")) nil [107866 109781])
-            ("window--resize-reset" function (:arguments ("frame" "horizontal")) nil [109783 110219])
-            ("window--resize-reset-1" function (:arguments ("window" "horizontal")) nil [110221 110743])
-            ("window--resize-mini-window" function (:arguments ("window" "delta")) nil [110745 111969])
-            ("window--resize-apply-p" function (:arguments ("frame" "horizontal")) nil [111971 112377])
-            ("window-resize" function (:arguments ("window" "delta" "horizontal" "ignore" "pixelwise")) nil [112379 116287])
-            ("window-resize-no-error" function (:arguments ("window" "delta" "horizontal" "ignore" "pixelwise")) nil [116289 116766])
-            ("window--resize-child-windows-skip-p" function (:arguments ("window")) nil [116768 116945])
-            ("window--resize-child-windows-normal" function (:arguments ("parent" "horizontal" "window" "this-delta" "trail" "other-delta")) nil [116947 120465])
-            ("window--resize-child-windows" function (:arguments ("parent" "delta" "horizontal" "window" "ignore" "trail" "edge" "char-size")) nil [120467 127079])
-            ("window--resize-siblings" function (:arguments ("window" "delta" "horizontal" "ignore" "trail" "edge" "char-size")) nil [127081 130877])
-            ("window--resize-this-window" function (:arguments ("window" "delta" "horizontal" "ignore" "add" "trail" "edge" "char-size")) nil [130879 132782])
-            ("window--resize-root-window" function (:arguments ("window" "delta" "horizontal" "ignore" "pixelwise")) nil [132784 133617])
-            ("window--resize-root-window-vertically" function (:arguments ("window" "delta" "pixelwise")) nil [133619 135540])
-            ("window--sanitize-window-sizes" function (:arguments ("horizontal")) nil [135542 136507])
-            ("adjust-window-trailing-edge" function (:arguments ("window" "delta" "horizontal" "pixelwise")) nil [136509 143766])
-            ("enlarge-window" function
-               (:user-visible-flag t
-                :arguments ("delta" "horizontal"))
-                nil [143768 145602])
-            ("shrink-window" function
-               (:user-visible-flag t
-                :arguments ("delta" "horizontal"))
-                nil [145604 147455])
-            ("maximize-window" function
-               (:user-visible-flag t
-                :arguments ("window"))
-                nil [147457 148053])
-            ("minimize-window" function
-               (:user-visible-flag t
-                :arguments ("window"))
-                nil [148055 148665])
-            ("window-edges" function (:arguments ("window" "body" "absolute" "pixelwise")) nil [148685 151737])
-            ("window-body-edges" function (:arguments ("window")) nil [151739 151947])
-            ("defalias" code nil nil [151948 151998])
-            ("window-pixel-edges" function (:arguments ("window")) nil [152000 152221])
-            ("window-body-pixel-edges" function (:arguments ("window")) nil [152223 152464])
-            ("defalias" code nil nil [152465 152527])
-            ("window-absolute-pixel-edges" function (:arguments ("window")) nil [152529 152756])
-            ("window-absolute-body-pixel-edges" function (:arguments ("window")) nil [152758 153010])
-            ("defalias" code nil nil [153011 153091])
-            ("window-absolute-pixel-position" function (:arguments ("position" "window")) nil [153093 153993])
-            ("frame-root-window-p" function (:arguments ("window")) nil [153996 154135])
-            ("window--subtree" function (:arguments ("window" "next")) nil [154137 154860])
-            ("window-tree" function (:arguments ("frame")) nil [154862 155757])
-            ("other-window" function
-               (:user-visible-flag t
-                :arguments ("count" "all-frames"))
-                nil [155760 158391])
-            ("one-window-p" function (:arguments ("nomini" "all-frames")) nil [158527 159800])
-            ("window-deletable-p" function (:arguments ("window")) nil [159825 161401])
-            ("window--in-subtree-p" function (:arguments ("window" "root")) nil [161403 161706])
-            ("delete-window" function
-               (:user-visible-flag t
-                :arguments ("window"))
-                nil [161708 165252])
-            ("delete-other-windows" function
-               (:user-visible-flag t
-                :arguments ("window"))
-                nil [165254 169029])
-            ("delete-other-windows-vertically" function
-               (:user-visible-flag t
-                :arguments ("window"))
-                nil [169031 169657])
-            ("record-window-buffer" function (:arguments ("window")) nil [171393 172812])
-            ("unrecord-window-buffer" function (:arguments ("window" "buffer")) nil [172814 173313])
-            ("set-window-buffer-start-and-point" function (:arguments ("window" "buffer" "start" "point")) nil [173315 174242])
-            ("switch-to-visible-buffer" variable (:default-value t) nil [174244 174699])
-            ("switch-to-prev-buffer" function
-               (:user-visible-flag t
-                :arguments ("window" "bury-or-kill"))
-                nil [174701 180549])
-            ("switch-to-next-buffer" function
-               (:user-visible-flag t
-                :arguments ("window"))
-                nil [180551 184376])
-            ("get-next-valid-buffer" function (:arguments ("list" "buffer" "visible-ok" "frame")) nil [184378 185374])
-            ("last-buffer" function (:arguments ("buffer" "visible-ok" "frame")) nil [185376 186103])
-            ("frame-auto-hide-function" variable (:default-value (function iconify-frame)) nil [186105 186691])
-            ("window--delete" function (:arguments ("window" "dedicated-only" "kill")) nil [186693 187675])
-            ("bury-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name"))
-                nil [187677 188810])
-            ("unbury-buffer" function (:user-visible-flag t) nil [188812 188937])
-            ("next-buffer" function (:user-visible-flag t) nil [188939 189241])
-            ("previous-buffer" function (:user-visible-flag t) nil [189243 189553])
-            ("delete-windows-on" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name" "frame"))
-                nil [189555 191309])
-            ("replace-buffer-in-windows" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name"))
-                nil [191311 192343])
-            ("quit-restore-window" function (:arguments ("window" "bury-or-kill")) nil [192345 197188])
-            ("quit-window" function
-               (:user-visible-flag t
-                :arguments ("kill" "window"))
-                nil [197190 197790])
-            ("quit-windows-on" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name" "kill" "frame"))
-                nil [197792 198756])
-            ("split-window" function (:arguments ("window" "size" "side" "pixelwise")) nil [198759 210550])
-            ("split-window-no-error" function (:arguments ("window" "size" "side" "pixelwise")) nil [210552 210919])
-            ("split-window-keep-point" variable (:default-value t) nil [210996 211370])
-            ("split-window-below" function
-               (:user-visible-flag t
-                :arguments ("size"))
-                nil [211372 213626])
-            ("defalias" code nil nil [213628 213683])
-            ("split-window-right" function
-               (:user-visible-flag t
-                :arguments ("size"))
-                nil [213685 214893])
-            ("defalias" code nil nil [214895 214952])
-            ("balance-windows-2" function (:arguments ("window" "horizontal")) nil [215455 218223])
-            ("balance-windows-1" function (:arguments ("window" "horizontal")) nil [218225 218651])
-            ("balance-windows" function
-               (:user-visible-flag t
-                :arguments ("window-or-frame"))
-                nil [218653 219910])
-            ("window-fixed-size-p" function (:arguments ("window" "direction")) nil [219912 220342])
-            ("window-area-factor" variable (:default-value 1) nil [220389 220558])
-            ("make-variable-buffer-local" code nil nil [220559 220607])
-            ("balance-windows-area-adjust" function (:arguments ("window" "delta" "horizontal" "pixelwise")) nil [220609 221263])
-            ("balance-windows-area" function (:user-visible-flag t) nil [221265 225621])
-            ("window--state-get-1" function (:arguments ("window" "writable")) nil [225691 228723])
-            ("window-state-get" function (:arguments ("window" "writable")) nil [228725 230814])
-            ("window-state-put-list" variable nil nil [230816 230894])
-            ("window-state-put-stale-windows" variable nil nil [230896 230983])
-            ("window--state-put-1" function (:arguments ("state" "window" "ignore" "totals" "pixelwise")) nil [230985 233703])
-            ("window--state-put-2" function (:arguments ("ignore" "pixelwise")) nil [233705 237745])
-            ("window-state-put" function (:arguments ("state" "window" "ignore")) nil [237747 241931])
-            ("window-swap-states" function
-               (:user-visible-flag t
-                :arguments ("window-1" "window-2" "size"))
-                nil [241933 245348])
-            ("display-buffer-record-window" function (:arguments ("type" "window" "buffer")) nil [245351 247868])
-            ("display-buffer-function" variable nil nil [247870 248426])
-            ("make-obsolete-variable" code nil nil [248428 248509])
-            ("pop-up-frame-alist" variable nil nil [248690 249306])
-            ("pop-up-frame-function" variable (:default-value (lambda nil (make-frame pop-up-frame-alist))) nil [249308 249637])
-            ("special-display-buffer-names" variable nil nil [249639 252229])
-            ("make-obsolete-variable" code nil nil [252230 252313])
-            ("put" code nil nil [252314 252373])
-            ("special-display-regexps" variable nil nil [252375 255017])
-            ("make-obsolete-variable" code nil nil [255018 255096])
-            ("put" code nil nil [255097 255151])
-            ("special-display-p" function (:arguments ("buffer-name")) nil [255153 256048])
-            ("special-display-frame-alist" variable (:default-value (quote ((height . 14) (width . 80) (unsplittable . t)))) nil [256050 256668])
-            ("make-obsolete-variable" code nil nil [256669 256751])
-            ("special-display-popup-frame" function (:arguments ("buffer" "args")) nil [256753 258773])
-            ("special-display-function" variable (:default-value (quote special-display-popup-frame)) nil [258775 259573])
-            ("make-obsolete-variable" code nil nil [259574 259653])
-            ("same-window-buffer-names" variable nil nil [259655 260227])
-            ("same-window-regexps" variable nil nil [260229 260817])
-            ("same-window-p" function (:arguments ("buffer-name")) nil [260819 261790])
-            ("pop-up-frames" variable nil nil [261792 262204])
-            ("display-buffer-reuse-frames" variable nil nil [262206 262435])
-            ("make-obsolete-variable" code nil nil [262437 262565])
-            ("pop-up-windows" variable (:default-value t) nil [262567 262691])
-            ("split-window-preferred-function" variable (:default-value (quote split-window-sensibly)) nil [262693 264076])
-            ("split-height-threshold" variable (:default-value 80) nil [264078 264641])
-            ("split-width-threshold" variable (:default-value 160) nil [264643 265031])
-            ("window-splittable-p" function (:arguments ("window" "horizontal")) nil [265033 267374])
-            ("split-window-sensibly" function (:arguments ("window")) nil [267376 270247])
-            ("window--try-to-split-window" function (:arguments ("window" "alist")) nil [270249 271359])
-            ("window--frame-usable-p" function (:arguments ("frame")) nil [271361 272303])
-            ("even-window-sizes" variable (:default-value t) nil [272305 272828])
-            ("defvaralias" code nil nil [272829 272882])
-            ("window--even-window-sizes" function (:arguments ("window")) nil [272884 273889])
-            ("window--display-buffer" function (:arguments ("buffer" "window" "type" "alist" "dedicated")) nil [273891 277057])
-            ("window--maybe-raise-frame" function (:arguments ("frame")) nil [277059 277639])
-            ("display-buffer-mark-dedicated" variable nil nil [277978 278187])
-            ("display-buffer--action-function-custom-type" variable
-               (:constant-flag t
-                :default-value (quote (choice :tag "Function" (const :tag "--" ignore) (const display-buffer-reuse-window) (const display-buffer-pop-up-window) (const display-buffer-same-window) (const display-buffer-pop-up-frame) (const display-buffer-in-child-frame) (const display-buffer-below-selected) (const display-buffer-at-bottom) (const display-buffer-in-previous-window) (const display-buffer-use-some-window) (const display-buffer-use-some-frame) (function :tag "Other function"))))
-                nil [278189 278828])
-            ("display-buffer--action-custom-type" variable
-               (:constant-flag t
-                :default-value (\` (cons :tag "Action" (choice :tag "Action functions" (\, display-buffer--action-function-custom-type) (repeat :tag "List of functions" (\, display-buffer--action-function-custom-type))) (alist :tag "Action arguments" :key-type symbol :value-type (sexp :tag "Value")))))
-                nil [278830 279205])
-            ("display-buffer-overriding-action" variable (:default-value (quote (nil))) nil [279207 279542])
-            ("put" code nil nil [279543 279606])
-            ("display-buffer-alist" variable nil nil [279608 280619])
-            ("display-buffer-base-action" variable (:default-value (quote (nil))) nil [280621 281045])
-            ("display-buffer-fallback-action" variable
-               (:constant-flag t
-                :default-value (quote ((display-buffer--maybe-same-window display-buffer-reuse-window display-buffer--maybe-pop-up-frame-or-window display-buffer-in-previous-window display-buffer-use-some-window display-buffer-pop-up-frame))))
-                nil [281047 281631])
-            ("put" code nil nil [281632 281693])
-            ("display-buffer-assq-regexp" function (:arguments ("buffer-name" "alist" "action")) nil [281695 282118])
-            ("display-buffer--same-window-action" variable (:default-value (quote (display-buffer-same-window (inhibit-same-window)))) nil [282120 282292])
-            ("put" code nil nil [282293 282358])
-            ("display-buffer--other-frame-action" variable (:default-value (quote ((display-buffer-reuse-window display-buffer-pop-up-frame) (reusable-frames . 0) (inhibit-same-window . t)))) nil [282360 282590])
-            ("put" code nil nil [282591 282656])
-            ("display-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name" "action" "frame"))
-                nil [282658 288761])
-            ("display-buffer-other-frame" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [288763 289096])
-            ("display-buffer-use-some-frame" function (:arguments ("buffer" "alist")) nil [289138 290633])
-            ("display-buffer-same-window" function (:arguments ("buffer" "alist")) nil [290635 291120])
-            ("display-buffer--maybe-same-window" function (:arguments ("buffer" "alist")) nil [291122 291463])
-            ("display-buffer-reuse-window" function (:arguments ("buffer" "alist")) nil [291465 293111])
-            ("display-buffer-reuse-mode-window" function (:arguments ("buffer" "alist")) nil [293113 295962])
-            ("display-buffer--special-action" function (:arguments ("buffer")) nil [295964 296710])
-            ("display-buffer-pop-up-frame" function (:arguments ("buffer" "alist")) nil [296712 297732])
-            ("display-buffer-pop-up-window" function (:arguments ("buffer" "alist")) nil [297734 299049])
-            ("display-buffer--maybe-pop-up-frame-or-window" function (:arguments ("buffer" "alist")) nil [299051 299636])
-            ("display-buffer-in-child-frame" function (:arguments ("buffer" "alist")) nil [299638 301320])
-            ("display-buffer-below-selected" function (:arguments ("buffer" "alist")) nil [301322 302410])
-            ("display-buffer-at-bottom" function (:arguments ("buffer" "alist")) nil [302412 303893])
-            ("display-buffer-in-previous-window" function (:arguments ("buffer" "alist")) nil [303895 306182])
-            ("display-buffer-use-some-window" function (:arguments ("buffer" "alist")) nil [306184 307925])
-            ("display-buffer-no-window" function (:arguments ("_buffer" "alist")) nil [307927 308382])
-            ("pop-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name" "action" "norecord"))
-                nil [308418 310295])
-            ("pop-to-buffer-same-window" function (:arguments ("buffer" "norecord")) nil [310297 310931])
-            ("read-buffer-to-switch" function (:arguments ("prompt")) nil [310933 312077])
-            ("window-normalize-buffer-to-switch-to" function (:arguments ("buffer-or-name")) nil [312079 312635])
-            ("switch-to-buffer-preserve-window-point" variable (:default-value t) nil [312637 313524])
-            ("switch-to-buffer-in-dedicated-window" variable nil nil [313526 314316])
-            ("switch-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name" "norecord" "force-same-window"))
-                nil [314318 318139])
-            ("switch-to-buffer-other-window" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name" "norecord"))
-                nil [318141 319245])
-            ("switch-to-buffer-other-frame" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name" "norecord"))
-                nil [319247 320331])
-            ("set-window-text-height" function (:arguments ("window" "height")) nil [320334 321307])
-            ("enlarge-window-horizontally" function
-               (:user-visible-flag t
-                :arguments ("delta"))
-                nil [321309 321524])
-            ("shrink-window-horizontally" function
-               (:user-visible-flag t
-                :arguments ("delta"))
-                nil [321526 321745])
-            ("count-screen-lines" function (:arguments ("beg" "end" "count-final-newline" "window")) nil [321747 323148])
-            ("window-buffer-height" function (:arguments ("window")) nil [323150 323628])
-            ("fit-window-to-buffer-horizontally" variable nil nil [323693 324087])
-            ("fit-frame-to-buffer" variable nil nil [324201 324650])
-            ("fit-frame-to-buffer-margins" variable (:default-value (quote (nil nil nil nil))) nil [324652 325866])
-            ("fit-frame-to-buffer-sizes" variable (:default-value (quote (nil nil nil nil))) nil [325868 327157])
-            ("declare-function" code nil nil [327159 327230])
-            ("window--sanitize-margin" function (:arguments ("margin" "left" "right")) nil [327232 327467])
-            ("declare-function" code nil nil [327469 327541])
-            ("fit-frame-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("frame" "max-height" "min-height" "max-width" "min-width" "only"))
-                nil [327543 337470])
-            ("fit-window-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("window" "max-height" "min-height" "max-width" "min-width" "preserve-size"))
-                nil [337472 343951])
-            ("window-safely-shrinkable-p" function (:arguments ("window")) nil [343953 344334])
-            ("shrink-window-if-larger-than-buffer" function
-               (:user-visible-flag t
-                :arguments ("window"))
-                nil [344336 345444])
-            ("window-largest-empty-rectangle--maximums-1" function (:arguments ("quad" "maximums")) nil [345446 345779])
-            ("window-largest-empty-rectangle--maximums" function (:arguments ("quad" "maximums" "count")) nil [345781 346061])
-            ("window-largest-empty-rectangle--disjoint-maximums" function (:arguments ("maximums" "count")) nil [346063 346832])
-            ("window-largest-empty-rectangle" function (:arguments ("window" "count" "min-width" "min-height" "positions" "left")) nil [346834 351595])
-            ("kill-buffer-and-window" function (:user-visible-flag t) nil [351598 352420])
-            ("window-group-start-function" variable nil nil [352840 352880])
-            ("make-variable-buffer-local" code nil nil [352881 352938])
-            ("put" code nil nil [352939 352992])
-            ("window-group-start" function (:arguments ("window")) nil [352993 353492])
-            ("window-group-end-function" variable nil nil [353494 353532])
-            ("make-variable-buffer-local" code nil nil [353533 353588])
-            ("put" code nil nil [353589 353640])
-            ("window-group-end" function (:arguments ("window" "update")) nil [353641 354447])
-            ("set-window-group-start-function" variable nil nil [354449 354493])
-            ("make-variable-buffer-local" code nil nil [354494 354555])
-            ("put" code nil nil [354556 354613])
-            ("set-window-group-start" function (:arguments ("window" "pos" "noforce")) nil [354614 355255])
-            ("recenter-window-group-function" variable nil nil [355257 355300])
-            ("make-variable-buffer-local" code nil nil [355301 355361])
-            ("put" code nil nil [355362 355418])
-            ("recenter-window-group" function (:arguments ("arg")) nil [355419 356589])
-            ("pos-visible-in-window-group-p-function" variable nil nil [356591 356642])
-            ("make-variable-buffer-local" code nil nil [356643 356711])
-            ("put" code nil nil [356712 356776])
-            ("pos-visible-in-window-group-p" function (:arguments ("pos" "window" "partially")) nil [356777 358253])
-            ("selected-window-group-function" variable nil nil [358255 358298])
-            ("make-variable-buffer-local" code nil nil [358299 358359])
-            ("put" code nil nil [358360 358416])
-            ("selected-window-group" function nil nil [358417 358767])
-            ("move-to-window-group-line-function" variable nil nil [358769 358816])
-            ("make-variable-buffer-local" code nil nil [358817 358881])
-            ("put" code nil nil [358882 358942])
-            ("move-to-window-group-line" function (:arguments ("arg")) nil [358943 359537])
-            ("recenter-last-op" variable nil nil [359541 359766])
-            ("recenter-positions" variable (:default-value (quote (middle top bottom))) nil [359768 360628])
-            ("recenter-top-bottom" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [360630 361777])
-            ("define-key" code nil nil [361779 361831])
-            ("move-to-window-line-top-bottom" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [361833 362967])
-            ("define-key" code nil nil [362969 363032])
-            ("scroll-error-top-bottom" variable nil nil [363202 363646])
-            ("scroll-up-command" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [363648 364711])
-            ("put" code nil nil [364713 364755])
-            ("scroll-down-command" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364757 365824])
-            ("put" code nil nil [365826 365870])
-            ("scroll-up-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [365940 366223])
-            ("put" code nil nil [366225 366264])
-            ("scroll-down-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [366266 366551])
-            ("put" code nil nil [366553 366594])
-            ("scroll-other-window-down" function
-               (:user-visible-flag t
-                :arguments ("lines"))
-                nil [366598 366993])
-            ("beginning-of-buffer-other-window" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [366995 367679])
-            ("end-of-buffer-other-window" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [367681 368184])
-            ("mouse-autoselect-window-timer" variable nil nil [368187 368277])
-            ("mouse-autoselect-window-position-1" variable nil nil [368279 368393])
-            ("mouse-autoselect-window-position" variable nil nil [368395 368506])
-            ("mouse-autoselect-window-window" variable nil nil [368508 368609])
-            ("mouse-autoselect-window-state" variable nil nil [368611 368908])
-            ("mouse-autoselect-window-cancel" function (:arguments ("force")) nil [368910 369681])
-            ("mouse-autoselect-window-start" function (:arguments ("mouse-position" "window" "suspend")) nil [369683 370511])
-            ("mouse-autoselect-window-select" function nil nil [370513 374513])
-            ("handle-select-window" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [374515 377025])
-            ("truncated-partial-width-window-p" function (:arguments ("window")) nil [377027 377712])
-            ("window-adjust-process-window-size-function" variable (:default-value (quote window-adjust-process-window-size-smallest)) nil [377781 379223])
-            ("window-adjust-process-window-size" function (:arguments ("reducer" "windows")) nil [379225 379834])
-            ("window-adjust-process-window-size-smallest" function (:arguments ("_process" "windows")) nil [379836 380127])
-            ("window-adjust-process-window-size-largest" function (:arguments ("_process" "windows")) nil [380129 380418])
-            ("window--process-window-list" function nil nil [380420 381633])
-            ("window--adjust-process-windows" function nil nil [381635 382331])
-            ("add-hook" code nil nil [382333 382409])
-            ("define-key" code nil nil [382500 382541])
-            ("define-key" code nil nil [382542 382590])
-            ("define-key" code nil nil [382591 382637])
-            ("define-key" code nil nil [382638 382684])
-            ("define-key" code nil nil [382685 382725])
-            ("define-key" code nil nil [382726 382768])
-            ("define-key" code nil nil [382769 382824])
-            ("define-key" code nil nil [382825 382879])
-            ("define-key" code nil nil [382880 382943])
-            ("define-key" code nil nil [382944 382987])
-            ("define-key" code nil nil [382988 383040]))          
-      :file "window.el"
-      :pointmax 383066
-      :fsize 383069
-      :lastmodtime '(23525 29521 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("declare-function" function (:arguments ("_fn" "_file" "_args")) nil [1193 2722])
-            ("defalias" code nil nil [2751 2772])
-            ("defalias" code nil nil [2773 2805])
-            ("noreturn" function (:arguments ("form")) nil [2807 3011])
-            ("1value" function (:arguments ("form")) nil [3013 3251])
-            ("def-edebug-spec" function (:arguments ("symbol" "spec")) nil [3253 3713])
-            ("lambda" function (:arguments ("cdr")) nil [3715 4837])
-            ("setq-local" function (:arguments ("var" "val")) nil [4839 5086])
-            ("defvar-local" function (:arguments ("var" "val" "docstring")) nil [5088 5529])
-            ("push" function (:arguments ("newelt" "place")) nil [5531 6125])
-            ("pop" function (:arguments ("place")) nil [6127 6984])
-            ("when" function (:arguments ("cond" "body")) nil [6986 7274])
-            ("unless" function (:arguments ("cond" "body")) nil [7276 7562])
-            ("dolist" function (:arguments ("spec" "body")) nil [7564 9024])
-            ("dotimes" function (:arguments ("spec" "body")) nil [9026 10491])
-            ("declare" function (:arguments ("_specs")) nil [10493 11068])
-            ("ignore-errors" function (:arguments ("body")) nil [11070 11377])
-            ("gensym-counter" variable nil nil [11408 11511])
-            ("gensym" function (:arguments ("prefix")) nil [11513 11833])
-            ("ignore" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [11835 11983])
-            ("error" function (:arguments ("args")) nil [12040 12556])
-            ("user-error" function (:arguments ("format" "args")) nil [12558 13218])
-            ("define-error" function (:arguments ("name" "message" "parent")) nil [13220 14133])
-            ("frame-configuration-p" function (:arguments ("object")) nil [14247 14502])
-            ("apply-partially" function (:arguments ("fun" "args")) nil [14504 14881])
-            ("internal--compiler-macro-cXXr" function (:arguments ("form" "x")) nil [15075 15655])
-            ("caar" function (:arguments ("x")) nil [15657 15784])
-            ("cadr" function (:arguments ("x")) nil [15786 15913])
-            ("cdar" function (:arguments ("x")) nil [15915 16042])
-            ("cddr" function (:arguments ("x")) nil [16044 16171])
-            ("caaar" function (:arguments ("x")) nil [16173 16324])
-            ("caadr" function (:arguments ("x")) nil [16326 16477])
-            ("cadar" function (:arguments ("x")) nil [16479 16630])
-            ("caddr" function (:arguments ("x")) nil [16632 16783])
-            ("cdaar" function (:arguments ("x")) nil [16785 16936])
-            ("cdadr" function (:arguments ("x")) nil [16938 17089])
-            ("cddar" function (:arguments ("x")) nil [17091 17242])
-            ("cdddr" function (:arguments ("x")) nil [17244 17395])
-            ("caaaar" function (:arguments ("x")) nil [17397 17568])
-            ("caaadr" function (:arguments ("x")) nil [17570 17741])
-            ("caadar" function (:arguments ("x")) nil [17743 17914])
-            ("caaddr" function (:arguments ("x")) nil [17916 18087])
-            ("cadaar" function (:arguments ("x")) nil [18089 18260])
-            ("cadadr" function (:arguments ("x")) nil [18262 18433])
-            ("caddar" function (:arguments ("x")) nil [18435 18606])
-            ("cadddr" function (:arguments ("x")) nil [18608 18779])
-            ("cdaaar" function (:arguments ("x")) nil [18781 18952])
-            ("cdaadr" function (:arguments ("x")) nil [18954 19125])
-            ("cdadar" function (:arguments ("x")) nil [19127 19298])
-            ("cdaddr" function (:arguments ("x")) nil [19300 19471])
-            ("cddaar" function (:arguments ("x")) nil [19473 19644])
-            ("cddadr" function (:arguments ("x")) nil [19646 19817])
-            ("cdddar" function (:arguments ("x")) nil [19819 19990])
-            ("cddddr" function (:arguments ("x")) nil [19992 20163])
-            ("last" function (:arguments ("list" "n")) nil [20165 20582])
-            ("butlast" function (:arguments ("list" "n")) nil [20584 20812])
-            ("nbutlast" function (:arguments ("list" "n")) nil [20814 21091])
-            ("zerop" function (:arguments ("number")) nil [21093 21323])
-            ("delete-dups" function (:arguments ("list")) nil [21325 22112])
-            ("delete-consecutive-dups" function (:arguments ("list" "circular")) nil [22179 22637])
-            ("number-sequence" function (:arguments ("from" "to" "inc")) nil [22639 24646])
-            ("copy-tree" function (:arguments ("tree" "vecp")) nil [24648 25465])
-            ("assoc-default" function (:arguments ("key" "alist" "test" "default")) nil [25505 26305])
-            ("assoc-ignore-case" function (:arguments ("key" "alist")) nil [26307 26629])
-            ("assoc-ignore-representation" function (:arguments ("key" "alist")) nil [26631 26899])
-            ("member-ignore-case" function (:arguments ("elt" "list")) nil [26901 27336])
-            ("assq-delete-all" function (:arguments ("key" "alist")) nil [27338 27822])
-            ("rassq-delete-all" function (:arguments ("value" "alist")) nil [27824 28317])
-            ("alist-get" function (:arguments ("key" "alist" "default" "remove" "testfn")) nil [28319 28913])
-            ("remove" function (:arguments ("elt" "seq")) nil [28915 29268])
-            ("remq" function (:arguments ("elt" "list")) nil [29270 29601])
-            ("kbd" function (:arguments ("keys")) nil [29626 30066])
-            ("put" code nil nil [30067 30085])
-            ("undefined" function (:user-visible-flag t) nil [30087 30615])
-            ("put" code nil nil [30710 30745])
-            ("suppress-keymap" function (:arguments ("map" "nodigits")) nil [30747 31311])
-            ("make-composed-keymap" function (:arguments ("maps" "parent")) nil [31313 31965])
-            ("define-key-after" function (:arguments ("keymap" "key" "definition" "after")) nil [31967 34028])
-            ("map-keymap-sorted" function (:arguments ("function" "keymap")) nil [34030 34710])
-            ("keymap--menu-item-binding" function (:arguments ("val")) nil [34712 35182])
-            ("keymap--menu-item-with-binding" function (:arguments ("item" "binding")) nil [35236 35836])
-            ("keymap--merge-bindings" function (:arguments ("val1" "val2")) nil [35838 36304])
-            ("keymap-canonicalize" function (:arguments ("map")) nil [36306 38175])
-            ("put" code nil nil [38177 38234])
-            ("keyboard-translate" function (:arguments ("from" "to")) nil [38236 38611])
-            ("global-set-key" function
-               (:user-visible-flag t
-                :arguments ("key" "command"))
-                nil [38642 39562])
-            ("local-set-key" function
-               (:user-visible-flag t
-                :arguments ("key" "command"))
-                nil [39564 40368])
-            ("global-unset-key" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [40370 40566])
-            ("local-unset-key" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [40568 40797])
-            ("key-substitution-in-progress" variable nil nil [40853 40946])
-            ("substitute-key-definition" function (:arguments ("olddef" "newdef" "keymap" "oldmap" "prefix")) nil [40948 42330])
-            ("substitute-key-definition-key" function (:arguments ("defn" "olddef" "newdef" "prefix" "keymap")) nil [42332 43995])
-            ("global-map" variable nil nil [44144 44318])
-            ("esc-map" variable nil nil [44320 44460])
-            ("ctl-x-map" variable nil nil [44462 44597])
-            ("ctl-x-4-map" variable (:default-value (make-sparse-keymap)) nil [44599 44677])
-            ("defalias" code nil nil [44678 44716])
-            ("define-key" code nil nil [44717 44759])
-            ("ctl-x-5-map" variable (:default-value (make-sparse-keymap)) nil [44761 44833])
-            ("defalias" code nil nil [44834 44872])
-            ("define-key" code nil nil [44873 44915])
-            ("listify-key-sequence-1" variable
-               (:constant-flag t
-                :default-value (logior 128 134217728))
-                nil [44955 45010])
-            ("listify-key-sequence" function (:arguments ("key")) nil [45012 45250])
-            ("eventp" function (:arguments ("obj")) nil [45252 45453])
-            ("event-modifiers" function (:arguments ("event")) nil [45455 46749])
-            ("event-basic-type" function (:arguments ("event")) nil [46751 47519])
-            ("mouse-movement-p" function (:arguments ("object")) nil [47521 47654])
-            ("mouse-event-p" function (:arguments ("object")) nil [47656 47874])
-            ("event-start" function (:arguments ("event")) nil [47876 49036])
-            ("event-end" function (:arguments ("event")) nil [49038 49356])
-            ("event-click-count" function (:arguments ("event")) nil [49358 49568])
-            ("event-line-count" function (:arguments ("event")) nil [49570 49769])
-            ("posnp" function (:arguments ("obj")) nil [49826 50474])
-            ("posn-window" function (:arguments ("position")) nil [50508 50690])
-            ("posn-area" function (:arguments ("position")) nil [50692 51016])
-            ("posn-point" function (:arguments ("position")) nil [51018 51484])
-            ("posn-set-point" function (:arguments ("position")) nil [51486 51806])
-            ("posn-x-y" function (:arguments ("position")) nil [51808 52061])
-            ("declare-function" code nil nil [52063 52129])
-            ("posn-col-row" function (:arguments ("position")) nil [52131 53949])
-            ("posn-actual-col-row" function (:arguments ("position")) nil [53951 54539])
-            ("posn-timestamp" function (:arguments ("position")) nil [54541 54729])
-            ("posn-string" function (:arguments ("position")) nil [54731 55090])
-            ("posn-image" function (:arguments ("position")) nil [55092 55332])
-            ("posn-object" function (:arguments ("position")) nil [55334 55703])
-            ("posn-object-x-y" function (:arguments ("position")) nil [55705 55992])
-            ("posn-object-width-height" function (:arguments ("position")) nil [55994 56254])
-            ("make-obsolete" code nil nil [56297 56363])
-            ("make-obsolete" code nil nil [56364 56413])
-            ("make-obsolete" code nil nil [56428 56501])
-            ("make-obsolete" code nil nil [56502 56575])
-            ("make-obsolete" code nil nil [56576 56651])
-            ("make-obsolete" code nil nil [56652 56725])
-            ("make-obsolete" code nil nil [56726 56799])
-            ("make-obsolete" code nil nil [56800 56875])
-            ("log10" function (:arguments ("x")) nil [56877 56986])
-            ("defalias" code nil nil [57034 57068])
-            ("make-obsolete" code nil nil [57069 57123])
-            ("defalias" code nil nil [57124 57160])
-            ("make-obsolete" code nil nil [57161 57217])
-            ("set-advertised-calling-convention" code nil nil [57219 57320])
-            ("set-advertised-calling-convention" code nil nil [57321 57389])
-            ("set-advertised-calling-convention" code nil nil [57390 57461])
-            ("set-advertised-calling-convention" code nil nil [57462 57547])
-            ("make-obsolete-variable" code nil nil [57610 57674])
-            ("make-obsolete-variable" code nil nil [57675 57758])
-            ("make-obsolete-variable" code nil nil [57759 57831])
-            ("make-obsolete-variable" code nil nil [57832 57908])
-            ("make-obsolete-variable" code nil nil [57909 57966])
-            ("make-obsolete" code nil nil [57967 58023])
-            ("make-obsolete" code nil nil [58024 58084])
-            ("make-obsolete" code nil nil [58086 58140])
-            ("make-obsolete" code nil nil [58141 58197])
-            ("make-obsolete-variable" code nil nil [58199 58323])
-            ("define-obsolete-variable-alias" code nil nil [58362 58449])
-            ("define-obsolete-variable-alias" code nil nil [58451 58544])
-            ("define-obsolete-variable-alias" code nil nil [58545 58638])
-            ("make-obsolete-variable" code nil nil [58884 58948])
-            ("make-obsolete-variable" code nil nil [58950 59008])
-            ("defvaralias" code nil nil [59010 59067])
-            ("defalias" code nil nil [59140 59184])
-            ("defalias" code nil nil [59185 59229])
-            ("defalias" code nil nil [59230 59263])
-            ("defalias" code nil nil [59264 59297])
-            ("defalias" code nil nil [59298 59334])
-            ("defalias" code nil nil [59335 59370])
-            ("defalias" code nil nil [59371 59397])
-            ("defalias" code nil nil [59398 59424])
-            ("defalias" code nil nil [59425 59447])
-            ("defalias" code nil nil [59473 59512])
-            ("defalias" code nil nil [59513 59567])
-            ("defalias" code nil nil [59568 59638])
-            ("defalias" code nil nil [59639 59711])
-            ("defalias" code nil nil [59712 59755])
-            ("defalias" code nil nil [59756 59800])
-            ("defalias" code nil nil [59801 59834])
-            ("defalias" code nil nil [59835 59868])
-            ("defalias" code nil nil [59900 59943])
-            ("defalias" code nil nil [59944 59993])
-            ("defalias" code nil nil [59995 60048])
-            ("add-hook" function (:arguments ("hook" "function" "append" "local")) nil [60087 62216])
-            ("remove-hook" function (:arguments ("hook" "function" "local")) nil [62218 63886])
-            ("letrec" function (:arguments ("binders" "body")) nil [63888 64517])
-            ("with-wrapper-hook" function (:arguments ("hook" "args" "body")) nil [64519 65929])
-            ("subr--with-wrapper-hook-no-warnings" function (:arguments ("hook" "args" "body")) nil [65931 67770])
-            ("add-to-list" function (:arguments ("list-var" "element" "append" "compare-fn")) nil [67772 71139])
-            ("add-to-ordered-list" function (:arguments ("list-var" "element" "order")) nil [71142 72461])
-            ("add-to-history" function (:arguments ("history-var" "newelt" "maxelt" "keep-all")) nil [72463 73771])
-            ("delay-mode-hooks" variable nil nil [73793 73887])
-            ("delayed-mode-hooks" variable nil nil [73888 73969])
-            ("make-variable-buffer-local" code nil nil [73970 74018])
-            ("put" code nil nil [74019 74061])
-            ("delayed-after-hook-functions" variable nil nil [74063 74206])
-            ("make-variable-buffer-local" code nil nil [74207 74265])
-            ("change-major-mode-after-body-hook" variable nil nil [74267 74381])
-            ("after-change-major-mode-hook" variable nil nil [74383 74485])
-            ("run-mode-hooks" function (:arguments ("hooks")) nil [74487 75840])
-            ("delay-mode-hooks" function (:arguments ("body")) nil [75842 76241])
-            ("provided-mode-derived-p" function (:arguments ("mode" "modes")) nil [76302 76643])
-            ("derived-mode-p" function (:arguments ("modes")) nil [76645 76876])
-            ("minor-mode-list" variable (:default-value (quote (auto-save-mode auto-fill-mode abbrev-mode overwrite-mode view-mode hs-minor-mode))) nil [77067 77260])
-            ("add-minor-mode" function (:arguments ("toggle" "name" "keymap" "after" "toggle-fun")) nil [77262 79947])
-            ("autoloadp" function (:arguments ("object")) nil [79969 80071])
-            ("define-symbol-prop" function (:arguments ("symbol" "prop" "val")) nil [80555 81318])
-            ("symbol-file" function (:arguments ("symbol" "type")) nil [81320 82816])
-            ("locate-library" function
-               (:user-visible-flag t
-                :arguments ("library" "nosuffix" "path" "interactive-call"))
-                nil [82818 84224])
-            ("start-process" function (:arguments ("name" "buffer" "program" "program-args")) nil [84249 85574])
-            ("process-lines" function (:arguments ("program" "args")) nil [85576 86181])
-            ("process-live-p" function (:arguments ("process")) nil [86183 86496])
-            ("process-kill-without-query" function (:arguments ("process" "_flag")) nil [86516 86986])
-            ("process-kill-buffer-query-function" function nil nil [86988 87407])
-            ("add-hook" code nil nil [87409 87484])
-            ("process-get" function (:arguments ("process" "propname")) nil [87515 87727])
-            ("process-put" function (:arguments ("process" "propname" "value")) nil [87729 87968])
-            ("read-key-empty-map" variable
-               (:constant-flag t
-                :default-value (make-sparse-keymap))
-                nil [88008 88058])
-            ("read-key-delay" variable (:default-value 0.01) nil [88060 88088])
-            ("read-key" function (:arguments ("prompt")) nil [88137 91361])
-            ("read-passwd-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map minibuffer-local-map) (define-key map "" (function delete-minibuffer-contents)) map)) nil [91363 91700])
-            ("read-passwd" function (:arguments ("prompt" "confirm" "default")) nil [91702 94438])
-            ("read-number" function (:arguments ("prompt" "default")) nil [94440 95510])
-            ("read-char-choice" function (:arguments ("prompt" "chars" "inhibit-keyboard-quit")) nil [95512 97251])
-            ("sit-for" function (:arguments ("seconds" "nodisp" "obsolete")) nil [97253 100587])
-            ("declare-function" code nil nil [100627 100706])
-            ("y-or-n-p" function (:arguments ("prompt")) nil [100708 104269])
-            ("atomic-change-group" function (:arguments ("body")) nil [104300 105506])
-            ("prepare-change-group" function (:arguments ("buffer")) nil [105508 106984])
-            ("activate-change-group" function (:arguments ("handle")) nil [106986 107224])
-            ("accept-change-group" function (:arguments ("handle")) nil [107226 107517])
-            ("cancel-change-group" function (:arguments ("handle")) nil [107519 108910])
-            ("define-obsolete-function-alias" code nil nil [108968 109050])
-            ("momentary-string-display" function (:arguments ("string" "pos" "exit-char" "message")) nil [109052 110604])
-            ("copy-overlay" function (:arguments ("o")) nil [110633 111207])
-            ("remove-overlays" function (:arguments ("beg" "end" "name" "val")) nil [111209 112217])
-            ("suspend-hook" variable nil nil [112239 112323])
-            ("suspend-resume-hook" variable nil nil [112325 112423])
-            ("temp-buffer-show-hook" variable nil nil [112425 112641])
-            ("temp-buffer-setup-hook" variable nil nil [112643 112874])
-            ("user-emacs-directory" variable
-               (:constant-flag t
-                :default-value (if (eq system-type (quote ms-dos)) "~/_emacs.d/" "~/.emacs.d/"))
-                nil [112876 113251])
-            ("buffer-narrowed-p" function nil nil [113284 113418])
-            ("find-tag-default-bounds" function nil nil [113420 113674])
-            ("find-tag-default" function nil nil [113676 113942])
-            ("find-tag-default-as-regexp" function nil nil [113944 114379])
-            ("find-tag-default-as-symbol-regexp" function nil nil [114381 114940])
-            ("play-sound" function (:arguments ("sound")) nil [114942 115761])
-            ("declare-function" code nil nil [115763 115819])
-            ("shell-quote-argument" function (:arguments ("argument")) nil [115821 118155])
-            ("string-to-list" function (:arguments ("string")) nil [118157 118256])
-            ("string-to-vector" function (:arguments ("string")) nil [118258 118358])
-            ("string-or-null-p" function (:arguments ("object")) nil [118360 118497])
-            ("booleanp" function (:arguments ("object")) nil [118499 118657])
-            ("special-form-p" function (:arguments ("object")) nil [118659 118902])
-            ("macrop" function (:arguments ("object")) nil [118904 119134])
-            ("field-at-pos" function (:arguments ("pos")) nil [119136 119406])
-            ("sha1" function (:arguments ("object" "start" "end" "binary")) nil [119408 119771])
-            ("function-get" function (:arguments ("f" "prop" "autoload")) nil [119773 120583])
-            ("yank-handled-properties" variable nil nil [120690 120722])
-            ("yank-excluded-properties" variable nil nil [120723 120756])
-            ("remove-yank-excluded-properties" function (:arguments ("start" "end")) nil [120758 121631])
-            ("yank-undo-function" variable nil nil [121633 121660])
-            ("insert-for-yank" function (:arguments ("string")) nil [121662 122143])
-            ("insert-for-yank-1" function (:arguments ("string")) nil [122145 123177])
-            ("insert-buffer-substring-no-properties" function (:arguments ("buffer" "start" "end")) nil [123179 123664])
-            ("insert-buffer-substring-as-yank" function (:arguments ("buffer" "start" "end")) nil [123666 124352])
-            ("yank-handle-font-lock-face-property" function (:arguments ("face" "start" "end")) nil [124354 124666])
-            ("yank-handle-category-property" function (:arguments ("category" "start" "end")) nil [124795 125233])
-            ("start-process-shell-command" function (:arguments ("name" "buffer" "args")) nil [125271 126255])
-            ("start-file-process-shell-command" function (:arguments ("name" "buffer" "args")) nil [126257 126749])
-            ("call-process-shell-command" function (:arguments ("command" "infile" "buffer" "display" "args")) nil [126751 128392])
-            ("process-file-shell-command" function (:arguments ("command" "infile" "buffer" "display" "args")) nil [128394 128943])
-            ("call-shell-region" function (:arguments ("start" "end" "command" "delete" "buffer")) nil [128945 130135])
-            ("track-mouse" function (:arguments ("body")) nil [130190 130496])
-            ("with-current-buffer" function (:arguments ("buffer-or-name" "body")) nil [130498 130886])
-            ("internal--before-with-selected-window" function (:arguments ("window")) nil [130888 131408])
-            ("internal--after-with-selected-window" function (:arguments ("state")) nil [131410 131970])
-            ("with-selected-window" function (:arguments ("window" "body")) nil [131972 133110])
-            ("with-selected-frame" function (:arguments ("frame" "body")) nil [133112 133853])
-            ("save-window-excursion" function (:arguments ("body")) nil [133855 134674])
-            ("internal-temp-output-buffer-show" function (:arguments ("buffer")) nil [134676 136071])
-            ("with-output-to-temp-buffer" function (:arguments ("bufname" "body")) nil [136124 138577])
-            ("with-temp-file" function (:arguments ("file" "body")) nil [138579 139274])
-            ("with-temp-message" function (:arguments ("message" "body")) nil [139276 140203])
-            ("with-temp-buffer" function (:arguments ("body")) nil [140205 140764])
-            ("with-silent-modifications" function (:arguments ("body")) nil [140766 141756])
-            ("with-output-to-string" function (:arguments ("body")) nil [141758 142203])
-            ("with-local-quit" function (:arguments ("body")) nil [142205 142960])
-            ("setq" code nil nil [143022 143154])
-            ("while-no-input" function (:arguments ("body")) nil [143156 143656])
-            ("condition-case-unless-debug" function (:arguments ("var" "bodyform" "handlers")) nil [143658 144211])
-            ("define-obsolete-function-alias" code nil nil [144213 144308])
-            ("with-demoted-errors" function (:arguments ("format" "body")) nil [144310 145247])
-            ("combine-after-change-calls" function (:arguments ("body")) nil [145249 145944])
-            ("with-case-table" function (:arguments ("table" "body")) nil [145946 146467])
-            ("with-file-modes" function (:arguments ("modes" "body")) nil [146469 146894])
-            ("save-match-data-internal" variable nil nil [146928 146961])
-            ("save-match-data" function (:arguments ("body")) nil [147219 147899])
-            ("match-string" function (:arguments ("num" "string")) nil [147901 148546])
-            ("match-string-no-properties" function (:arguments ("num" "string")) nil [148548 149272])
-            ("match-substitute-replacement" function (:arguments ("replacement" "fixedcase" "literal" "string" "subexp")) nil [149275 149924])
-            ("looking-back" function (:arguments ("regexp" "limit" "greedy")) nil [149927 151198])
-            ("looking-at-p" function (:arguments ("regexp")) nil [151200 151378])
-            ("string-match-p" function (:arguments ("regexp" "string" "start")) nil [151380 151600])
-            ("subregexp-context-p" function (:arguments ("regexp" "pos" "start")) nil [151602 153512])
-            ("split-string-default-separators" variable
-               (:constant-flag t
-                :default-value "[ 	



-
]+")
-                nil [153534 153887])
-            ("split-string" function (:arguments ("string" "separators" "omit-nulls" "trim")) nil [154149 157265])
-            ("combine-and-quote-strings" function (:arguments ("strings" "separator")) nil [157267 157947])
-            ("split-string-and-unquote" function (:arguments ("string" "separator")) nil [157949 158585])
-            ("subst-char-in-string" function (:arguments ("fromchar" "tochar" "string" "inplace")) nil [158619 159023])
-            ("replace-regexp-in-string" function (:arguments ("regexp" "rep" "string" "fixedcase" "literal" "subexp" "start")) nil [159025 161706])
-            ("string-prefix-p" function (:arguments ("prefix" "string" "ignore-case")) nil [161709 162104])
-            ("string-suffix-p" function (:arguments ("suffix" "string" "ignore-case")) nil [162106 162515])
-            ("bidi-string-mark-left-to-right" function (:arguments ("str")) nil [162517 163300])
-            ("string-greaterp" function (:arguments ("string1" "string2")) nil [163302 163537])
-            ("load-history-regexp" function (:arguments ("file")) nil [163578 164214])
-            ("load-history-filename-element" function (:arguments ("file-regexp")) nil [164216 164652])
-            ("put" code nil nil [164654 164700])
-            ("eval-after-load" function (:arguments ("file" "form")) nil [164701 168583])
-            ("with-eval-after-load" function (:arguments ("file" "body")) nil [168585 168960])
-            ("after-load-functions" variable nil nil [168962 169135])
-            ("do-after-load-evaluation" function (:arguments ("abs-file")) nil [169137 170704])
-            ("eval-next-after-load" function (:arguments ("file")) nil [170706 171006])
-            ("display-delayed-warnings" function nil nil [171010 171277])
-            ("collapse-delayed-warnings" function nil nil [171279 171958])
-            ("delayed-warnings-hook" variable (:default-value (quote (collapse-delayed-warnings display-delayed-warnings))) nil [172078 172418])
-            ("delay-warning" function (:arguments ("type" "message" "level" "buffer-name")) nil [172420 172675])
-            ("add-to-invisibility-spec" function (:arguments ("element")) nil [172704 173047])
-            ("remove-from-invisibility-spec" function (:arguments ("element")) nil [173049 173294])
-            ("with-syntax-table" function (:arguments ("table" "body")) nil [173318 173954])
-            ("make-syntax-table" function (:arguments ("oldtable")) nil [173956 174276])
-            ("syntax-after" function (:arguments ("pos")) nil [174278 174651])
-            ("syntax-class" function (:arguments ("syntax")) nil [174653 175005])
-            ("word-move-empty-char-table" variable nil nil [175036 175206])
-            ("forward-word-strictly" function (:arguments ("arg")) nil [175208 175946])
-            ("backward-word-strictly" function (:arguments ("arg")) nil [175948 176530])
-            ("forward-whitespace" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [176548 177131])
-            ("forward-symbol" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [177146 177695])
-            ("forward-same-syntax" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [177716 178198])
-            ("text-clone--maintaining" variable nil nil [178220 178256])
-            ("text-clone--maintain" function (:arguments ("ol1" "after" "beg" "end" "_len")) nil [178258 180324])
-            ("text-clone-create" function (:arguments ("start" "end" "spreadp" "syntax")) nil [180326 182574])
-            ("define-mail-user-agent" function (:arguments ("symbol" "composefunc" "sendfunc" "abortfunc" "hookvar")) nil [182682 184260])
-            ("backtrace--print-frame" function (:arguments ("evald" "func" "args" "flags")) nil [184264 184660])
-            ("backtrace" function nil nil [184662 184933])
-            ("backtrace-frames" function (:arguments ("base")) nil [184935 185288])
-            ("backtrace-frame" function (:arguments ("nframes" "base")) nil [185290 186090])
-            ("called-interactively-p-functions" variable nil nil [186094 186511])
-            ("internal--funcall-interactively" variable
-               (:constant-flag t
-                :default-value (symbol-function (quote funcall-interactively)))
-                nil [186513 186598])
-            ("called-interactively-p" function (:arguments ("kind")) nil [186600 190781])
-            ("interactive-p" function nil nil [190783 191866])
-            ("internal-push-keymap" function (:arguments ("keymap" "symbol")) nil [191868 192213])
-            ("internal-pop-keymap" function (:arguments ("keymap" "symbol")) nil [192215 192523])
-            ("define-obsolete-function-alias" code nil nil [192525 192612])
-            ("set-transient-map" function (:arguments ("map" "keep-pred" "on-exit")) nil [192614 195390])
-            ("progress-reporter-update" function (:arguments ("reporter" "value")) nil [195973 196740])
-            ("make-progress-reporter" function (:arguments ("message" "min-value" "max-value" "current-value" "min-change" "min-time")) nil [196742 198481])
-            ("progress-reporter-force-update" function (:arguments ("reporter" "value" "new-message")) nil [198483 198982])
-            ("progress-reporter--pulse-characters" variable (:default-value ["-" "\\" "|" "/"]) nil [198984 199101])
-            ("progress-reporter-do-update" function (:arguments ("reporter" "value")) nil [199103 200779])
-            ("progress-reporter-done" function (:arguments ("reporter")) nil [200781 200936])
-            ("dotimes-with-progress-reporter" function (:arguments ("spec" "message" "body")) nil [200938 202042])
-            ("version-separator" variable
-               (:constant-flag t
-                :default-value ".")
-                nil [202079 202238])
-            ("version-regexp-alist" variable
-               (:constant-flag t
-                :default-value (quote (("^[-._+ ]?snapshot$" . -4) ("^[-._+]$" . -4) ("^[-._+ ]?\\(cvs\\|git\\|bzr\\|svn\\|hg\\|darcs\\)$" . -4) ("^[-._+ ]?alpha$" . -3) ("^[-._+ ]?beta$" . -2) ("^[-._+ ]?\\(pre\\|rc\\)$" . -1))))
-                nil [202241 203775])
-            ("version-to-list" function (:arguments ("ver")) nil [203778 206561])
-            ("version-list-<" function (:arguments ("l1" "l2")) nil [206563 207394])
-            ("version-list-=" function (:arguments ("l1" "l2")) nil [207397 208196])
-            ("version-list-<=" function (:arguments ("l1" "l2")) nil [208199 208984])
-            ("version-list-not-zero" function (:arguments ("lst")) nil [208986 209296])
-            ("version<" function (:arguments ("v1" "v2")) nil [209299 209803])
-            ("version<=" function (:arguments ("v1" "v2")) nil [209805 210323])
-            ("version=" function (:arguments ("v1" "v2")) nil [210325 210819])
-            ("package--builtin-versions" variable (:default-value (purecopy (\` ((emacs \, (version-to-list emacs-version)))))) nil [210821 211198])
-            ("package--description-file" function (:arguments ("dir")) nil [211200 211531])
-            ("with-mutex" function (:arguments ("mutex" "body")) nil [211556 211906])
-            ("definition-prefixes" variable (:default-value (make-hash-table :test (quote equal))) nil [211921 212622])
-            ("register-definition-prefixes" function (:arguments ("file" "prefixes")) nil [212624 212846])
-            ("menu-bar-separator" variable
-               (:constant-flag t
-                :default-value (quote ("--")))
-                nil [212848 212910])
-            ("when" code nil nil [213062 213187])
-            ("unmsys--file-name" function (:arguments ("file")) nil [213320 213807]))          
-      :file "subr.el"
-      :pointmax 213832
-      :fsize 213832
-      :lastmodtime '(23525 29518 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("whitespace" customgroup (:user-visible-flag t) nil [9372 9561])
-            ("whitespace-style" variable (:default-value (quote (face tabs spaces trailing lines space-before-tab newline indentation empty space-after-tab space-mark tab-mark newline-mark))) nil [9564 16115])
-            ("whitespace-space" variable (:default-value (quote whitespace-space)) nil [16117 16259])
-            ("make-obsolete-variable" code nil nil [16260 16333])
-            ("whitespace-space" variable
-               (:default-value (quote ((((class color) (background dark)) :background "grey20" :foreground "darkgray") (((class color) (background light)) :background "LightYellow" :foreground "lightgray") (t :inverse-video t)))
-                :type "face")
-                nil [16336 16633])
-            ("whitespace-hspace" variable (:default-value (quote whitespace-hspace)) nil [16636 16785])
-            ("make-obsolete-variable" code nil nil [16786 16860])
-            ("whitespace-hspace" variable
-               (:default-value (quote ((((class color) (background dark)) :background "grey24" :foreground "darkgray") (((class color) (background light)) :background "LemonChiffon3" :foreground "lightgray") (t :inverse-video t)))
-                :type "face")
-                nil [16862 17187])
-            ("whitespace-tab" variable (:default-value (quote whitespace-tab)) nil [17190 17324])
-            ("make-obsolete-variable" code nil nil [17325 17443])
-            ("whitespace-tab" variable
-               (:default-value (quote ((((class color) (background dark)) :background "grey22" :foreground "darkgray") (((class color) (background light)) :background "beige" :foreground "lightgray") (t :inverse-video t)))
-                :type "face")
-                nil [17445 17728])
-            ("whitespace-newline" variable (:default-value (quote whitespace-newline)) nil [17731 17948])
-            ("make-obsolete-variable" code nil nil [17949 18024])
-            ("whitespace-newline" variable
-               (:default-value (quote ((default :weight normal) (((class color) (background dark)) :foreground "darkgray") (((class color) (min-colors 88) (background light)) :foreground "lightgray") (((class color) (background light)) :foreground "brown") (t :underline t)))
-                :type "face")
-                nil [18026 18549])
-            ("whitespace-trailing" variable (:default-value (quote whitespace-trailing)) nil [18552 18712])
-            ("make-obsolete-variable" code nil nil [18713 18789])
-            ("whitespace-trailing" variable
-               (:default-value (quote ((default :weight bold) (((class mono)) :inverse-video t :underline t) (t :background "red1" :foreground "yellow")))
-                :type "face")
-                nil [18791 19036])
-            ("whitespace-line" variable (:default-value (quote whitespace-line)) nil [19039 19216])
-            ("make-obsolete-variable" code nil nil [19217 19289])
-            ("whitespace-line" variable
-               (:default-value (quote ((((class mono)) :inverse-video t :weight bold :underline t) (t :background "gray20" :foreground "violet")))
-                :type "face")
-                nil [19291 19526])
-            ("whitespace-space-before-tab" variable (:default-value (quote whitespace-space-before-tab)) nil [19529 19715])
-            ("make-obsolete-variable" code nil nil [19716 19824])
-            ("whitespace-space-before-tab" variable
-               (:default-value (quote ((((class mono)) :inverse-video t :weight bold :underline t) (t :background "DarkOrange" :foreground "firebrick")))
-                :type "face")
-                nil [19826 20052])
-            ("whitespace-indentation" variable (:default-value (quote whitespace-indentation)) nil [20055 20257])
-            ("make-obsolete-variable" code nil nil [20258 20337])
-            ("whitespace-indentation" variable
-               (:default-value (quote ((((class mono)) :inverse-video t :weight bold :underline t) (t :background "yellow" :foreground "firebrick")))
-                :type "face")
-                nil [20339 20586])
-            ("whitespace-big-indent" variable
-               (:default-value (quote ((((class mono)) :inverse-video t :weight bold :underline t) (t :background "red" :foreground "firebrick")))
-                :type "face")
-                nil [20588 20799])
-            ("whitespace-empty" variable (:default-value (quote whitespace-empty)) nil [20802 20983])
-            ("make-obsolete-variable" code nil nil [20984 21057])
-            ("whitespace-empty" variable
-               (:default-value (quote ((((class mono)) :inverse-video t :weight bold :underline t) (t :background "yellow" :foreground "firebrick")))
-                :type "face")
-                nil [21059 21298])
-            ("whitespace-space-after-tab" variable (:default-value (quote whitespace-space-after-tab)) nil [21301 21503])
-            ("make-obsolete-variable" code nil nil [21504 21611])
-            ("whitespace-space-after-tab" variable
-               (:default-value (quote ((((class mono)) :inverse-video t :weight bold :underline t) (t :background "yellow" :foreground "firebrick")))
-                :type "face")
-                nil [21613 21853])
-            ("whitespace-hspace-regexp" variable (:default-value "\\(\302\240+\\)") nil [21856 22504])
-            ("whitespace-space-regexp" variable (:default-value "\\( +\\)") nil [22507 23200])
-            ("whitespace-tab-regexp" variable (:default-value "\\(	+\\)") nil [23203 23889])
-            ("whitespace-trailing-regexp" variable (:default-value "\\([	 \302\240]+\\)$") nil [23892 24345])
-            ("whitespace-space-before-tab-regexp" variable (:default-value "\\( +\\)\\(	+\\)") nil [24348 24630])
-            ("whitespace-indentation-regexp" variable (:default-value (quote ("^	*\\(\\( \\{%d\\}\\)+\\)[^



-	]" . "^ *\\(	+\\)[^



-]"))) nil [24633 25140])
-            ("whitespace-empty-at-bob-regexp" variable (:default-value "\\`\\(\\([ 	]*



-\\)+\\)") nil [25143 25400])
-            ("whitespace-empty-at-eob-regexp" variable (:default-value "^\\([ 	



-]+\\)\\'") nil [25403 25642])
-            ("whitespace-space-after-tab-regexp" variable (:default-value (quote ("	+\\(\\( \\{%d,\\}\\)+\\)" . "\\(	+\\) \\{%d,\\}"))) nil [25645 26123])
-            ("whitespace-big-indent-regexp" variable (:default-value "^\\(\\(?:	\\{4,\\}\\| \\{32,\\}\\)[	 ]*\\)") nil [26125 26657])
-            ("whitespace-line-column" variable (:default-value 80) nil [26660 27053])
-            ("whitespace-display-mappings" variable (:default-value (quote ((space-mark 32 [183] [46]) (space-mark 160 [164] [95]) (newline-mark 10 [36 10]) (tab-mark 9 [187 9] [92 9])))) nil [27113 29233])
-            ("whitespace-global-modes" variable (:default-value t) nil [29236 30143])
-            ("whitespace-action" variable nil nil [30146 31386])
-            ("define-minor-mode" code nil nil [31510 32214])
-            ("define-minor-mode" code nil nil [32232 33105])
-            ("define-minor-mode" code nil nil [33230 34526])
-            ("whitespace-enable-predicate" variable (:default-value (lambda nil (and (cond ((eq whitespace-global-modes t)) ((listp whitespace-global-modes) (if (eq (car-safe whitespace-global-modes) (quote not)) (not (memq major-mode (cdr whitespace-global-modes))) (memq major-mode whitespace-global-modes))) (t nil)) (not noninteractive) (not (eq (aref (buffer-name) 0) 32)) (or (not (eq (aref (buffer-name) 0) 42)) (string= (buffer-name) "*scratch*"))))) nil [34528 35546])
-            ("whitespace-turn-on-if-enabled" function nil nil [35548 35660])
-            ("define-minor-mode" code nil nil [35677 36644])
-            ("whitespace-style-value-list" variable
-               (:constant-flag t
-                :default-value (quote (face tabs spaces trailing lines lines-tail newline empty indentation indentation::tab indentation::space big-indent space-after-tab space-after-tab::tab space-after-tab::space space-before-tab space-before-tab::tab space-before-tab::space help-newline tab-mark space-mark newline-mark)))
-                nil [36749 37265])
-            ("whitespace-toggle-option-alist" variable
-               (:constant-flag t
-                :default-value (quote ((102 . face) (116 . tabs) (115 . spaces) (114 . trailing) (108 . lines) (76 . lines-tail) (110 . newline) (101 . empty) (9 . indentation) (73 . indentation::tab) (105 . indentation::space) (20 . big-indent) (1 . space-after-tab) (65 . space-after-tab::tab) (97 . space-after-tab::space) (2 . space-before-tab) (66 . space-before-tab::tab) (98 . space-before-tab::space) (84 . tab-mark) (83 . space-mark) (78 . newline-mark) (120 . whitespace-style))))
-                nil [37268 38131])
-            ("whitespace-active-style" variable nil nil [38134 38221])
-            ("whitespace-point" variable (:default-value (point)) nil [38223 38361])
-            ("defvar-local" code nil nil [38362 38464])
-            ("whitespace-font-lock-refontify" variable nil nil [38466 38626])
-            ("whitespace-bob-marker" variable nil nil [38628 38770])
-            ("whitespace-eob-marker" variable nil nil [38772 38914])
-            ("whitespace-buffer-changed" variable nil nil [38916 39096])
-            ("whitespace-toggle-options" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [39114 42084])
-            ("whitespace-toggle-style" variable nil nil [42087 42179])
-            ("global-whitespace-toggle-options" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [42197 45251])
-            ("whitespace-cleanup" function (:user-visible-flag t) nil [45372 48830])
-            ("whitespace-cleanup-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [48848 53934])
-            ("whitespace-replace-action" function (:arguments ("action" "rstart" "rend" "regexp" "index")) nil [53964 54351])
-            ("whitespace-regexp" function (:arguments ("regexp" "kind")) nil [54455 54737])
-            ("whitespace-indentation-regexp" function (:arguments ("kind")) nil [54740 54918])
-            ("whitespace-space-after-tab-regexp" function (:arguments ("kind")) nil [54921 55111])
-            ("whitespace-report-list" variable
-               (:constant-flag t
-                :default-value (list (cons (quote empty) whitespace-empty-at-bob-regexp) (cons (quote empty) whitespace-empty-at-eob-regexp) (cons (quote trailing) whitespace-trailing-regexp) (cons (quote indentation) nil) (cons (quote indentation::tab) nil) (cons (quote indentation::space) nil) (cons (quote space-before-tab) whitespace-space-before-tab-regexp) (cons (quote space-before-tab::tab) whitespace-space-before-tab-regexp) (cons (quote space-before-tab::space) whitespace-space-before-tab-regexp) (cons (quote space-after-tab) nil) (cons (quote space-after-tab::tab) nil) (cons (quote space-after-tab::space) nil)))
-                nil [55114 55861])
-            ("whitespace-report-text" variable
-               (:constant-flag t
-                :default-value (quote (" Whitespace Report



-



- Current Setting                       Whitespace Problem



-



- empty                    []     []  empty lines at beginning of buffer



- empty                    []     []  empty lines at end of buffer



- trailing                 []     []  SPACEs or TABs at end of line



- indentation              []     []  >= `tab-width' SPACEs at beginning of line



- indentation::tab         []     []  >= `tab-width' SPACEs at beginning of line



- indentation::space       []     []  TABs at beginning of line



- space-before-tab         []     []  SPACEs before TAB



- space-before-tab::tab    []     []  SPACEs before TAB: SPACEs



- space-before-tab::space  []     []  SPACEs before TAB: TABs



- space-after-tab          []     []  >= `tab-width' SPACEs after TAB



- space-after-tab::tab     []     []  >= `tab-width' SPACEs after TAB: SPACEs



- space-after-tab::space   []     []  >= `tab-width' SPACEs after TAB: TABs



-



- indent-tabs-mode =



- tab-width        = 



-



-" . " Whitespace Report



-



- Current Setting                       Whitespace Problem



-



- empty                    []     []  empty lines at beginning of buffer



- empty                    []     []  empty lines at end of buffer



- trailing                 []     []  SPACEs or TABs at end of line



- indentation              []     []  TABs at beginning of line



- indentation::tab         []     []  >= `tab-width' SPACEs at beginning of line



- indentation::space       []     []  TABs at beginning of line



- space-before-tab         []     []  SPACEs before TAB



- space-before-tab::tab    []     []  SPACEs before TAB: SPACEs



- space-before-tab::space  []     []  SPACEs before TAB: TABs



- space-after-tab          []     []  >= `tab-width' SPACEs after TAB



- space-after-tab::tab     []     []  >= `tab-width' SPACEs after TAB: SPACEs



- space-after-tab::space   []     []  >= `tab-width' SPACEs after TAB: TABs



-



- indent-tabs-mode =



- tab-width        = 



-



-")))
-                nil [55864 58074])
-            ("whitespace-report-buffer-name" variable
-               (:constant-flag t
-                :default-value "*Whitespace Report*")
-                nil [58077 58188])
-            ("whitespace-report" function
-               (:user-visible-flag t
-                :arguments ("force" "report-if-bogus"))
-                nil [58206 58495])
-            ("whitespace-report-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "force" "report-if-bogus"))
-                nil [58513 63194])
-            ("whitespace-font-lock-keywords" variable nil nil [63295 63416])
-            ("whitespace-help-text" variable
-               (:constant-flag t
-                :default-value " Whitespace Toggle Options                  | scroll up  :  SPC   or > |



-                                            | scroll down:  M-SPC or < |



- FACES                                      \\__________________________/



- []  f   - toggle face visualization



- []  t   - toggle TAB visualization



- []  s   - toggle SPACE and HARD SPACE visualization



- []  r   - toggle trailing blanks visualization



- []  l   - toggle \"long lines\" visualization



- []  L   - toggle \"long lines\" tail visualization



- []  n   - toggle NEWLINE visualization



- []  e   - toggle empty line at bob and/or eob visualization



- []  C-i - toggle indentation SPACEs visualization (via `indent-tabs-mode')



- []  I   - toggle indentation SPACEs visualization



- []  i   - toggle indentation TABs visualization



- []  C-t - toggle big indentation visualization



- []  C-a - toggle SPACEs after TAB visualization (via `indent-tabs-mode')



- []  A   - toggle SPACEs after TAB: SPACEs visualization



- []  a   - toggle SPACEs after TAB: TABs visualization



- []  C-b - toggle SPACEs before TAB visualization (via `indent-tabs-mode')



- []  B   - toggle SPACEs before TAB: SPACEs visualization



- []  b   - toggle SPACEs before TAB: TABs visualization



-



- DISPLAY TABLE



- []  T - toggle TAB visualization



- []  S - toggle SPACE and HARD SPACE visualization



- []  N - toggle NEWLINE visualization



-



-      x - restore `whitespace-style' value



-



-      ? - display this text



-



-")
-                nil [63419 64905])
-            ("whitespace-help-buffer-name" variable
-               (:constant-flag t
-                :default-value "*Whitespace Toggle Options*")
-                nil [64908 65027])
-            ("whitespace-insert-value" function (:arguments ("value")) nil [65030 65187])
-            ("whitespace-mark-x" function (:arguments ("nchars" "condition")) nil [65190 65362])
-            ("whitespace-insert-option-mark" function (:arguments ("the-list" "the-value")) nil [65365 65683])
-            ("whitespace-help-on" function (:arguments ("style")) nil [65686 66098])
-            ("whitespace-display-window" function (:arguments ("buffer")) nil [66101 66525])
-            ("whitespace-kill-buffer" function (:arguments ("buffer-name")) nil [66528 66751])
-            ("whitespace-help-off" function nil nil [66754 66906])
-            ("whitespace-help-scroll" function (:arguments ("up")) nil [66909 67323])
-            ("whitespace-interactive-char" function (:arguments ("local-p")) nil [67326 69787])
-            ("whitespace-toggle-list" function (:arguments ("local-p" "arg" "the-list")) nil [69824 70723])
-            ("whitespace-display-table" variable nil nil [70726 70803])
-            ("whitespace-display-table-was-local" variable nil nil [70805 70927])
-            ("whitespace-turn-on" function nil nil [70929 71588])
-            ("whitespace-turn-off" function nil nil [71591 71822])
-            ("whitespace-style-face-p" function nil nil [71825 72986])
-            ("whitespace-color-on" function nil nil [72989 78177])
-            ("whitespace-color-off" function nil nil [78180 78583])
-            ("whitespace-point--used" function (:arguments ("start" "end")) nil [78585 78911])
-            ("whitespace-point--flush-used" function (:arguments ("limit")) nil [78913 79445])
-            ("whitespace-trailing-regexp" function (:arguments ("limit")) nil [79447 79879])
-            ("whitespace-empty-at-bob-regexp" function (:arguments ("limit")) nil [79882 81070])
-            ("whitespace-looking-back" function (:arguments ("regexp" "limit")) nil [81073 81261])
-            ("whitespace-empty-at-eob-regexp" function (:arguments ("limit")) nil [81264 82685])
-            ("whitespace-buffer-changed" function (:arguments ("_beg" "_end")) nil [82688 82821])
-            ("whitespace-post-command-hook" function nil nil [82824 85340])
-            ("whitespace-style-mark-p" function nil nil [85473 85724])
-            ("whitespace-char-valid-p" function (:arguments ("char")) nil [85727 85850])
-            ("whitespace-display-vector-p" function (:arguments ("vec")) nil [85853 86107])
-            ("whitespace-display-char-on" function nil nil [86110 87716])
-            ("whitespace-display-char-off" function nil nil [87719 88013])
-            ("whitespace-action-when-on" function nil nil [88100 88343])
-            ("whitespace-write-file-hook" function nil nil [88346 88726])
-            ("whitespace-warn-read-only" function (:arguments ("msg")) nil [88760 88945])
-            ("whitespace-unload-function" function nil nil [89022 89290])
-            ("whitespace" package nil nil [89327 89348])
-            ("run-hooks" code nil nil [89351 89384]))          
-      :file "whitespace.el"
-      :pointmax 89415
-      :fsize 89423
-      :lastmodtime '(23525 29521 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("uniquify-buffer-name-style" variable nil nil [1057 1092])
-            ("cua-enable-cua-keys" variable nil nil [1136 1164])
-            ("or" code nil nil [1278 1388])
-            ("setq" code nil nil [1542 1582])
-            ("global-buffers-menu-map" variable (:default-value (make-sparse-keymap "Buffers")) nil [1710 1773])
-            ("define-obsolete-variable-alias" code nil nil [1841 1923])
-            ("menu-bar-file-menu" variable (:default-value (let ((menu (make-sparse-keymap "File"))) (bindings--define-key menu [exit-emacs] (quote (menu-item "Quit" save-buffers-kill-terminal :help "Save unsaved buffers, then exit"))) (bindings--define-key menu [separator-exit] menu-bar-separator) (bindings--define-key menu [delete-this-frame] (quote (menu-item "Delete Frame" delete-frame :visible (fboundp (quote delete-frame)) :enable (delete-frame-enabled-p) :help "Delete currently selected frame"))) (bindings--define-key menu [make-frame-on-display] (quote (menu-item "New Frame on Display..." make-frame-on-display :visible (fboundp (quote make-frame-on-display)) :help "Open a new frame on another display"))) (bindings--define-key menu [make-frame] (quote (menu-item "New Frame" make-frame-command :visible (fboundp (quote make-frame-command)) :help "Open a new frame"))) (bindings--define-key menu [separator-frame] menu-bar-separator) (bindings--define-key menu [one-window] (quote (menu-item "Remove Other Windows" delete-other-windows :enable (not (one-window-p t nil)) :help "Make selected window fill whole frame"))) (bindings--define-key menu [new-window-on-right] (quote (menu-item "New Window on Right" split-window-right :enable (and (menu-bar-menu-frame-live-and-visible-p) (menu-bar-non-minibuffer-window-p)) :help "Make new window on right of selected one"))) (bindings--define-key menu [new-window-below] (quote (menu-item "New Window Below" split-window-below :enable (and (menu-bar-menu-frame-live-and-visible-p) (menu-bar-non-minibuffer-window-p)) :help "Make new window below selected one"))) (bindings--define-key menu [separator-window] menu-bar-separator) (bindings--define-key menu [ps-print-region] (quote (menu-item "PostScript Print Region (B+W)" ps-print-region :enable mark-active :help "Pretty-print marked region in black and white to PostScript printer"))) (bindings--define-key menu [ps-print-buffer] (quote (menu-item "PostScript Print Buffer (B+W)" ps-print-buffer :enable (menu-bar-menu-frame-live-and-visible-p) :help "Pretty-print current buffer in black and white to PostScript printer"))) (bindings--define-key menu [ps-print-region-faces] (quote (menu-item "PostScript Print Region" ps-print-region-with-faces :enable mark-active :help "Pretty-print marked region to PostScript printer"))) (bindings--define-key menu [ps-print-buffer-faces] (quote (menu-item "PostScript Print Buffer" ps-print-buffer-with-faces :enable (menu-bar-menu-frame-live-and-visible-p) :help "Pretty-print current buffer to PostScript printer"))) (bindings--define-key menu [print-region] (quote (menu-item "Print Region" print-region :enable mark-active :help "Print region between mark and current position"))) (bindings--define-key menu [print-buffer] (quote (menu-item "Print Buffer" print-buffer :enable (menu-bar-menu-frame-live-and-visible-p) :help "Print current buffer with page headings"))) (bindings--define-key menu [separator-print] menu-bar-separator) (bindings--define-key menu [recover-session] (quote (menu-item "Recover Crashed Session" recover-session :enable (and auto-save-list-file-prefix (file-directory-p (file-name-directory auto-save-list-file-prefix)) (directory-files (file-name-directory auto-save-list-file-prefix) nil (concat "\\`" (regexp-quote (file-name-nondirectory auto-save-list-file-prefix))) t)) :help "Recover edits from a crashed session"))) (bindings--define-key menu [revert-buffer] (quote (menu-item "Revert Buffer" revert-buffer :enable (or (not (eq revert-buffer-function (quote revert-buffer--default))) (not (eq revert-buffer-insert-file-contents-function (quote revert-buffer-insert-file-contents--default-function))) (and buffer-file-number (or (buffer-modified-p) (not (verify-visited-file-modtime (current-buffer)))))) :help "Re-read current buffer from its file"))) (bindings--define-key menu [write-file] (quote (menu-item "Save As..." write-file :enable (and (menu-bar-menu-frame-live-and-visible-p) (menu-bar-non-minibuffer-window-p)) :help "Write current buffer to another file"))) (bindings--define-key menu [save-buffer] (quote (menu-item "Save" save-buffer :enable (and (buffer-modified-p) (buffer-file-name) (menu-bar-non-minibuffer-window-p)) :help "Save current buffer to its file"))) (bindings--define-key menu [separator-save] menu-bar-separator) (bindings--define-key menu [kill-buffer] (quote (menu-item "Close" kill-this-buffer :enable (kill-this-buffer-enabled-p) :help "Discard (kill) current buffer"))) (bindings--define-key menu [insert-file] (quote (menu-item "Insert File..." insert-file :enable (menu-bar-non-minibuffer-window-p) :help "Insert another file into current buffer"))) (bindings--define-key menu [dired] (quote (menu-item "Open Directory..." dired :enable (menu-bar-non-minibuffer-window-p) :help "Read a directory, to operate on its files"))) (bindings--define-key menu [open-file] (quote (menu-item "Open File..." menu-find-file-existing :enable (menu-bar-non-minibuffer-window-p) :help "Read an existing file into an Emacs buffer"))) (bindings--define-key menu [new-file] (quote (menu-item "Visit New File..." find-file :enable (menu-bar-non-minibuffer-window-p) :help "Specify a new file's name, to edit the file"))) menu)) nil [1924 8904])
-            ("menu-find-file-existing" function (:user-visible-flag t) nil [8906 9236])
-            ("menu-bar-last-search-type" variable nil nil [9268 9376])
-            ("nonincremental-repeat-search-forward" function (:user-visible-flag t) nil [9378 9771])
-            ("nonincremental-repeat-search-backward" function (:user-visible-flag t) nil [9773 10170])
-            ("nonincremental-search-forward" function
-               (:user-visible-flag t
-                :arguments ("string" "backward"))
-                nil [10172 10767])
-            ("nonincremental-search-backward" function
-               (:user-visible-flag t
-                :arguments ("string"))
-                nil [10769 10989])
-            ("nonincremental-re-search-forward" function
-               (:user-visible-flag t
-                :arguments ("string"))
-                nil [10991 11330])
-            ("nonincremental-re-search-backward" function
-               (:user-visible-flag t
-                :arguments ("string"))
-                nil [11332 11683])
-            ("menu-bar-i-search-menu" variable (:default-value (let ((menu (make-sparse-keymap "Incremental Search"))) (bindings--define-key menu [isearch-backward-regexp] (quote (menu-item "Backward Regexp..." isearch-backward-regexp :help "Search backwards for a regular expression as you type it"))) (bindings--define-key menu [isearch-forward-regexp] (quote (menu-item "Forward Regexp..." isearch-forward-regexp :help "Search forward for a regular expression as you type it"))) (bindings--define-key menu [isearch-backward] (quote (menu-item "Backward String..." isearch-backward :help "Search backwards for a string as you type it"))) (bindings--define-key menu [isearch-forward] (quote (menu-item "Forward String..." isearch-forward :help "Search forward for a string as you type it"))) menu)) nil [11730 12547])
-            ("menu-bar-search-menu" variable (:default-value (let ((menu (make-sparse-keymap "Search"))) (bindings--define-key menu [i-search] (\` (menu-item "Incremental Search" (\, menu-bar-i-search-menu)))) (bindings--define-key menu [separator-tag-isearch] menu-bar-separator) (bindings--define-key menu [tags-continue] (quote (menu-item "Continue Tags Search" tags-loop-continue :help "Continue last tags search operation"))) (bindings--define-key menu [tags-srch] (quote (menu-item "Search Tagged Files..." tags-search :help "Search for a regexp in all tagged files"))) (bindings--define-key menu [separator-tag-search] menu-bar-separator) (bindings--define-key menu [repeat-search-back] (quote (menu-item "Repeat Backwards" nonincremental-repeat-search-backward :enable (or (and (eq menu-bar-last-search-type (quote string)) search-ring) (and (eq menu-bar-last-search-type (quote regexp)) regexp-search-ring)) :help "Repeat last search backwards"))) (bindings--define-key menu [repeat-search-fwd] (quote (menu-item "Repeat Forward" nonincremental-repeat-search-forward :enable (or (and (eq menu-bar-last-search-type (quote string)) search-ring) (and (eq menu-bar-last-search-type (quote regexp)) regexp-search-ring)) :help "Repeat last search forward"))) (bindings--define-key menu [separator-repeat-search] menu-bar-separator) (bindings--define-key menu [re-search-backward] (quote (menu-item "Regexp Backwards..." nonincremental-re-search-backward :help "Search backwards for a regular expression"))) (bindings--define-key menu [re-search-forward] (quote (menu-item "Regexp Forward..." nonincremental-re-search-forward :help "Search forward for a regular expression"))) (bindings--define-key menu [search-backward] (quote (menu-item "String Backwards..." nonincremental-search-backward :help "Search backwards for a string"))) (bindings--define-key menu [search-forward] (quote (menu-item "String Forward..." nonincremental-search-forward :help "Search forward for a string"))) menu)) nil [12549 15013])
-            ("menu-bar-replace-menu" variable (:default-value (let ((menu (make-sparse-keymap "Replace"))) (bindings--define-key menu [tags-repl-continue] (quote (menu-item "Continue Replace" tags-loop-continue :help "Continue last tags replace operation"))) (bindings--define-key menu [tags-repl] (quote (menu-item "Replace in Tagged Files..." tags-query-replace :help "Interactively replace a regexp in all tagged files"))) (bindings--define-key menu [separator-replace-tags] menu-bar-separator) (bindings--define-key menu [query-replace-regexp] (quote (menu-item "Replace Regexp..." query-replace-regexp :enable (not buffer-read-only) :help "Replace regular expression interactively, ask about each occurrence"))) (bindings--define-key menu [query-replace] (quote (menu-item "Replace String..." query-replace :enable (not buffer-read-only) :help "Replace string interactively, ask about each occurrence"))) menu)) nil [15045 16036])
-            ("menu-bar-goto-menu" variable (:default-value (let ((menu (make-sparse-keymap "Go To"))) (bindings--define-key menu [set-tags-name] (quote (menu-item "Set Tags File Name..." visit-tags-table :visible (menu-bar-goto-uses-etags-p) :help "Tell navigation commands which tag table file to use"))) (bindings--define-key menu [separator-tag-file] (quote (menu-item "--" nil :visible (menu-bar-goto-uses-etags-p)))) (bindings--define-key menu [xref-pop] (quote (menu-item "Back" xref-pop-marker-stack :visible (and (featurep (quote xref)) (not (xref-marker-stack-empty-p))) :help "Back to the position of the last search"))) (bindings--define-key menu [xref-apropos] (quote (menu-item "Find Apropos..." xref-find-apropos :help "Find function/variables whose names match regexp"))) (bindings--define-key menu [xref-find-otherw] (quote (menu-item "Find Definition in Other Window..." xref-find-definitions-other-window :help "Find function/variable definition in another window"))) (bindings--define-key menu [xref-find-def] (quote (menu-item "Find Definition..." xref-find-definitions :help "Find definition of function or variable"))) (bindings--define-key menu [separator-xref] menu-bar-separator) (bindings--define-key menu [end-of-buf] (quote (menu-item "Goto End of Buffer" end-of-buffer))) (bindings--define-key menu [beg-of-buf] (quote (menu-item "Goto Beginning of Buffer" beginning-of-buffer))) (bindings--define-key menu [go-to-pos] (quote (menu-item "Goto Buffer Position..." goto-char :help "Read a number N and go to buffer position N"))) (bindings--define-key menu [go-to-line] (quote (menu-item "Goto Line..." goto-line :help "Read a line number and go to that line"))) menu)) nil [16082 18004])
-            ("menu-bar-goto-uses-etags-p" function nil nil [18006 18150])
-            ("yank-menu" variable (:default-value (cons (purecopy "Select Yank") nil)) nil [18152 18206])
-            ("fset" code nil nil [18207 18249])
-            ("menu-bar-edit-menu" variable (:default-value (let ((menu (make-sparse-keymap "Edit"))) (bindings--define-key menu [props] (\` (menu-item "Text Properties" facemenu-menu))) (if (featurep (quote ns)) (bindings--define-key menu [spell] (\` (menu-item "Spell" ispell-menu-map)))) (bindings--define-key menu [fill] (\` (menu-item "Fill" fill-region :enable (and mark-active (not buffer-read-only)) :help "Fill text in region to fit between left and right margin"))) (bindings--define-key menu [separator-bookmark] menu-bar-separator) (bindings--define-key menu [bookmark] (\` (menu-item "Bookmarks" menu-bar-bookmark-map))) (bindings--define-key menu [goto] (\` (menu-item "Go To" (\, menu-bar-goto-menu)))) (bindings--define-key menu [replace] (\` (menu-item "Replace" (\, menu-bar-replace-menu)))) (bindings--define-key menu [search] (\` (menu-item "Search" (\, menu-bar-search-menu)))) (bindings--define-key menu [separator-search] menu-bar-separator) (bindings--define-key menu [mark-whole-buffer] (quote (menu-item "Select All" mark-whole-buffer :help "Mark the whole buffer for a subsequent cut/copy"))) (bindings--define-key menu [clear] (quote (menu-item "Clear" delete-region :enable (and mark-active (not buffer-read-only)) :help "Delete the text in region between mark and current position"))) (bindings--define-key menu (if (featurep (quote ns)) [select-paste] [paste-from-menu]) (\` (menu-item (\, (if (featurep (quote ns)) "Select and Paste" "Paste from Kill Menu")) yank-menu :enable (and (cdr yank-menu) (not buffer-read-only)) :help "Choose a string from the kill ring and paste it"))) (bindings--define-key menu [paste] (\` (menu-item "Paste" yank :enable (funcall (quote (\, (lambda nil (and (or (gui-backend-selection-exists-p (quote CLIPBOARD)) (if (featurep (quote ns)) (cdr yank-menu) kill-ring)) (not buffer-read-only)))))) :help "Paste (yank) text most recently cut/copied"))) (bindings--define-key menu [copy] (\` (menu-item "Copy" (\, (if (featurep (quote ns)) (quote ns-copy-including-secondary) (quote kill-ring-save))) :enable mark-active :help "Copy text in region between mark and current position" :keys (\, (if (featurep (quote ns)) "\\[ns-copy-including-secondary]" "\\[kill-ring-save]"))))) (bindings--define-key menu [cut] (quote (menu-item "Cut" kill-region :enable (and mark-active (not buffer-read-only)) :help "Cut (kill) text in region between mark and current position"))) (if (featurep (quote ns)) (bindings--define-key menu [separator-undo] menu-bar-separator)) (bindings--define-key menu [undo] (quote (menu-item "Undo" undo :enable (and (not buffer-read-only) (not (eq t buffer-undo-list)) (if (eq last-command (quote undo)) (listp pending-undo-list) (consp buffer-undo-list))) :help "Undo last operation"))) menu)) nil [18251 22275])
-            ("define-obsolete-function-alias" code nil nil [22277 22359])
-            ("put" code nil nil [22503 22591])
-            ("put" code nil nil [22592 22649])
-            ("put" code nil nil [22650 22905])
-            ("clipboard-yank" function (:user-visible-flag t) nil [22907 23072])
-            ("clipboard-kill-ring-save" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "region"))
-                nil [23074 23409])
-            ("clipboard-kill-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "region"))
-                nil [23411 23734])
-            ("menu-bar-enable-clipboard" function (:user-visible-flag t) nil [23736 24359])
-            ("menu-bar-custom-menu" variable (:default-value (let ((menu (make-sparse-keymap "Customize"))) (bindings--define-key menu [customize-apropos-faces] (quote (menu-item "Faces Matching..." customize-apropos-faces :help "Browse faces matching a regexp or word list"))) (bindings--define-key menu [customize-apropos-options] (quote (menu-item "Options Matching..." customize-apropos-options :help "Browse options matching a regexp or word list"))) (bindings--define-key menu [customize-apropos] (quote (menu-item "All Settings Matching..." customize-apropos :help "Browse customizable settings matching a regexp or word list"))) (bindings--define-key menu [separator-1] menu-bar-separator) (bindings--define-key menu [customize-group] (quote (menu-item "Specific Group..." customize-group :help "Customize settings of specific group"))) (bindings--define-key menu [customize-face] (quote (menu-item "Specific Face..." customize-face :help "Customize attributes of specific face"))) (bindings--define-key menu [customize-option] (quote (menu-item "Specific Option..." customize-option :help "Customize value of specific option"))) (bindings--define-key menu [separator-2] menu-bar-separator) (bindings--define-key menu [customize-changed-options] (quote (menu-item "New Options..." customize-changed-options :help "Options added or changed in recent Emacs versions"))) (bindings--define-key menu [customize-saved] (quote (menu-item "Saved Options" customize-saved :help "Customize previously saved options"))) (bindings--define-key menu [separator-3] menu-bar-separator) (bindings--define-key menu [customize-browse] (quote (menu-item "Browse Customization Groups" customize-browse :help "Browse all customization groups"))) (bindings--define-key menu [customize] (quote (menu-item "Top-level Customization Group" customize :help "The master group called `Emacs'"))) (bindings--define-key menu [customize-themes] (quote (menu-item "Custom Themes" customize-themes :help "Choose a pre-defined customization theme"))) menu)) nil [24391 26656])
-            ("menu-bar-make-mm-toggle" function (:arguments ("fname" "doc" "help" "props")) nil [26729 27180])
-            ("menu-bar-make-toggle" function (:arguments ("name" "variable" "doc" "message" "help" "body")) nil [27182 28390])
-            ("menu-set-font" function (:user-visible-flag t) nil [28438 28737])
-            ("menu-bar-options-save" function (:user-visible-flag t) nil [28739 30908])
-            ("menu-bar-window-divider-customize" function (:user-visible-flag t) nil [31017 31171])
-            ("menu-bar-bottom-and-right-window-divider" function (:user-visible-flag t) nil [31173 31387])
-            ("menu-bar-right-window-divider" function (:user-visible-flag t) nil [31389 31596])
-            ("menu-bar-bottom-window-divider" function (:user-visible-flag t) nil [31598 31808])
-            ("menu-bar-no-window-divider" function (:user-visible-flag t) nil [31810 31926])
-            ("menu-bar-showhide-window-divider-menu" variable (:default-value (let ((menu (make-sparse-keymap "Window Divider"))) (bindings--define-key menu [customize] (quote (menu-item "Customize" menu-bar-window-divider-customize :help "Customize window dividers" :visible (memq (window-system) (quote (x w32)))))) (bindings--define-key menu [bottom-and-right] (quote (menu-item "Bottom and Right" menu-bar-bottom-and-right-window-divider :help "Display window divider on the bottom and right of each window" :visible (memq (window-system) (quote (x w32))) :button (:radio and (window-divider-width-valid-p (cdr (assq (quote bottom-divider-width) (frame-parameters)))) (window-divider-width-valid-p (cdr (assq (quote right-divider-width) (frame-parameters)))))))) (bindings--define-key menu [right-only] (quote (menu-item "Right Only" menu-bar-right-window-divider :help "Display window divider on the right of each window only" :visible (memq (window-system) (quote (x w32))) :button (:radio and (not (window-divider-width-valid-p (cdr (assq (quote bottom-divider-width) (frame-parameters))))) (window-divider-width-valid-p (cdr (assq (quote right-divider-width) (frame-parameters)))))))) (bindings--define-key menu [bottom-only] (quote (menu-item "Bottom Only" menu-bar-bottom-window-divider :help "Display window divider on the bottom of each window only" :visible (memq (window-system) (quote (x w32))) :button (:radio and (window-divider-width-valid-p (cdr (assq (quote bottom-divider-width) (frame-parameters)))) (not (window-divider-width-valid-p (cdr (assq (quote right-divider-width) (frame-parameters))))))))) (bindings--define-key menu [no-divider] (quote (menu-item "None" menu-bar-no-window-divider :help "Do not display window dividers" :visible (memq (window-system) (quote (x w32))) :button (:radio and (not (window-divider-width-valid-p (cdr (assq (quote bottom-divider-width) (frame-parameters))))) (not (window-divider-width-valid-p (cdr (assq (quote right-divider-width) (frame-parameters))))))))) menu)) nil [32210 34652])
-            ("menu-bar-showhide-fringe-ind-customize" function (:user-visible-flag t) nil [34654 34834])
-            ("menu-bar-showhide-fringe-ind-mixed" function (:user-visible-flag t) nil [34836 35061])
-            ("menu-bar-showhide-fringe-ind-box" function (:user-visible-flag t) nil [35063 35274])
-            ("menu-bar-showhide-fringe-ind-right" function (:user-visible-flag t) nil [35276 35461])
-            ("menu-bar-showhide-fringe-ind-left" function (:user-visible-flag t) nil [35463 35645])
-            ("menu-bar-showhide-fringe-ind-none" function (:user-visible-flag t) nil [35647 35817])
-            ("menu-bar-showhide-fringe-ind-menu" variable (:default-value (let ((menu (make-sparse-keymap "Buffer boundaries"))) (bindings--define-key menu [customize] (quote (menu-item "Other (Customize)" menu-bar-showhide-fringe-ind-customize :help "Additional choices available through Custom buffer" :visible (display-graphic-p) :button (:radio not (member indicate-buffer-boundaries (quote (nil left right ((top . left) (bottom . right)) ((t . right) (top . left))))))))) (bindings--define-key menu [mixed] (quote (menu-item "Opposite, Arrows Right" menu-bar-showhide-fringe-ind-mixed :help "Show top/bottom indicators in opposite fringes, arrows in right" :visible (display-graphic-p) :button (:radio equal indicate-buffer-boundaries (quote ((t . right) (top . left))))))) (bindings--define-key menu [box] (quote (menu-item "Opposite, No Arrows" menu-bar-showhide-fringe-ind-box :help "Show top/bottom indicators in opposite fringes, no arrows" :visible (display-graphic-p) :button (:radio equal indicate-buffer-boundaries (quote ((top . left) (bottom . right))))))) (bindings--define-key menu [right] (quote (menu-item "In Right Fringe" menu-bar-showhide-fringe-ind-right :help "Show buffer boundaries and arrows in right fringe" :visible (display-graphic-p) :button (:radio eq indicate-buffer-boundaries (quote right))))) (bindings--define-key menu [left] (quote (menu-item "In Left Fringe" menu-bar-showhide-fringe-ind-left :help "Show buffer boundaries and arrows in left fringe" :visible (display-graphic-p) :button (:radio eq indicate-buffer-boundaries (quote left))))) (bindings--define-key menu [none] (quote (menu-item "No Indicators" menu-bar-showhide-fringe-ind-none :help "Hide all buffer boundary indicators and arrows" :visible (display-graphic-p) :button (:radio eq indicate-buffer-boundaries nil)))) menu)) nil [35819 38231])
-            ("menu-bar-showhide-fringe-menu-customize" function (:user-visible-flag t) nil [38233 38384])
-            ("menu-bar-showhide-fringe-menu-customize-reset" function (:user-visible-flag t) nil [38386 38572])
-            ("menu-bar-showhide-fringe-menu-customize-right" function (:user-visible-flag t) nil [38574 38771])
-            ("menu-bar-showhide-fringe-menu-customize-left" function (:user-visible-flag t) nil [38773 38968])
-            ("menu-bar-showhide-fringe-menu-customize-disable" function (:user-visible-flag t) nil [38970 39141])
-            ("menu-bar-showhide-fringe-menu" variable (:default-value (let ((menu (make-sparse-keymap "Fringe"))) (bindings--define-key menu [showhide-fringe-ind] (\` (menu-item "Buffer Boundaries" (\, menu-bar-showhide-fringe-ind-menu) :visible (display-graphic-p) :help "Indicate buffer boundaries in fringe"))) (bindings--define-key menu [indicate-empty-lines] (menu-bar-make-toggle toggle-indicate-empty-lines indicate-empty-lines "Empty Line Indicators" "Indicating of empty lines %s" "Indicate trailing empty lines in fringe, globally")) (bindings--define-key menu [customize] (quote (menu-item "Customize Fringe" menu-bar-showhide-fringe-menu-customize :help "Detailed customization of fringe" :visible (display-graphic-p)))) (bindings--define-key menu [default] (quote (menu-item "Default" menu-bar-showhide-fringe-menu-customize-reset :help "Default width fringe on both left and right side" :visible (display-graphic-p) :button (:radio eq fringe-mode nil)))) (bindings--define-key menu [right] (quote (menu-item "On the Right" menu-bar-showhide-fringe-menu-customize-right :help "Fringe only on the right side" :visible (display-graphic-p) :button (:radio equal fringe-mode (quote (0)))))) (bindings--define-key menu [left] (quote (menu-item "On the Left" menu-bar-showhide-fringe-menu-customize-left :help "Fringe only on the left side" :visible (display-graphic-p) :button (:radio equal fringe-mode (quote (nil . 0)))))) (bindings--define-key menu [none] (quote (menu-item "None" menu-bar-showhide-fringe-menu-customize-disable :help "Turn off fringe" :visible (display-graphic-p) :button (:radio eq fringe-mode 0)))) menu)) nil [39143 41167])
-            ("menu-bar-right-scroll-bar" function (:user-visible-flag t) nil [41169 41325])
-            ("menu-bar-left-scroll-bar" function (:user-visible-flag t) nil [41327 41480])
-            ("menu-bar-no-scroll-bar" function (:user-visible-flag t) nil [41482 41605])
-            ("menu-bar-showhide-scroll-bar-menu" variable (:default-value (let ((menu (make-sparse-keymap "Scroll Bar"))) (bindings--define-key menu [horizontal] (menu-bar-make-mm-toggle horizontal-scroll-bar-mode "Horizontal" "Horizontal scroll bar")) (bindings--define-key menu [scrollbar-separator] menu-bar-separator) (bindings--define-key menu [right] (quote (menu-item "On the Right" menu-bar-right-scroll-bar :help "Scroll bar on the right side" :visible (display-graphic-p) :button (:radio and scroll-bar-mode (eq (frame-parameter nil (quote vertical-scroll-bars)) (quote right)))))) (bindings--define-key menu [left] (quote (menu-item "On the Left" menu-bar-left-scroll-bar :help "Scroll bar on the left side" :visible (display-graphic-p) :button (:radio and scroll-bar-mode (eq (frame-parameter nil (quote vertical-scroll-bars)) (quote left)))))) (bindings--define-key menu [none] (quote (menu-item "No Vertical Scroll Bar" menu-bar-no-scroll-bar :help "Turn off vertical scroll bar" :visible (display-graphic-p) :button (:radio eq scroll-bar-mode nil)))) menu)) nil [41607 43159])
-            ("menu-bar-frame-for-menubar" function nil nil [43161 43344])
-            ("menu-bar-positive-p" function (:arguments ("val")) nil [43346 43466])
-            ("menu-bar-set-tool-bar-position" function (:arguments ("position")) nil [43468 43616])
-            ("menu-bar-showhide-tool-bar-menu-customize-disable" function (:user-visible-flag t) nil [43617 43769])
-            ("menu-bar-showhide-tool-bar-menu-customize-enable-left" function (:user-visible-flag t) nil [43770 43931])
-            ("menu-bar-showhide-tool-bar-menu-customize-enable-right" function (:user-visible-flag t) nil [43932 44096])
-            ("menu-bar-showhide-tool-bar-menu-customize-enable-top" function (:user-visible-flag t) nil [44097 44255])
-            ("menu-bar-showhide-tool-bar-menu-customize-enable-bottom" function (:user-visible-flag t) nil [44256 44423])
-            ("when" code nil nil [44425 47199])
-            ("display-line-numbers-type" variable nil nil [47201 47235])
-            ("menu-bar-display-line-numbers-mode" function (:arguments ("type")) nil [47236 47438])
-            ("menu-bar-showhide-line-numbers-menu" variable (:default-value (let ((menu (make-sparse-keymap "Line Numbers"))) (bindings--define-key menu [visual] (\` (menu-item "Visual Line Numbers" (\, (lambda nil (interactive) (menu-bar-display-line-numbers-mode (quote visual)) (message "Visual line numbers enabled"))) :help "Enable visual line numbers" :button (:radio eq display-line-numbers (quote visual)) :visible (menu-bar-menu-frame-live-and-visible-p)))) (bindings--define-key menu [relative] (\` (menu-item "Relative Line Numbers" (\, (lambda nil (interactive) (menu-bar-display-line-numbers-mode (quote relative)) (message "Relative line numbers enabled"))) :help "Enable relative line numbers" :button (:radio eq display-line-numbers (quote relative)) :visible (menu-bar-menu-frame-live-and-visible-p)))) (bindings--define-key menu [absolute] (\` (menu-item "Absolute Line Numbers" (\, (lambda nil (interactive) (menu-bar-display-line-numbers-mode t) (setq display-line-numbers t) (message "Absolute line numbers enabled"))) :help "Enable absolute line numbers" :button (:radio eq display-line-numbers t) :visible (menu-bar-menu-frame-live-and-visible-p)))) (bindings--define-key menu [none] (\` (menu-item "No Line Numbers" (\, (lambda nil (interactive) (menu-bar-display-line-numbers-mode nil) (message "Line numbers disabled"))) :help "Disable line numbers" :button (:radio null display-line-numbers) :visible (menu-bar-menu-frame-live-and-visible-p)))) (bindings--define-key menu [global] (menu-bar-make-mm-toggle global-display-line-numbers-mode "Global Line Numbers Mode" "Set line numbers globally")) menu)) nil [47440 49673])
-            ("menu-bar-showhide-menu" variable (:default-value (let ((menu (make-sparse-keymap "Show/Hide"))) (bindings--define-key menu [display-line-numbers] (\` (menu-item "Line Numbers for All Lines" (\, menu-bar-showhide-line-numbers-menu)))) (bindings--define-key menu [column-number-mode] (menu-bar-make-mm-toggle column-number-mode "Column Numbers in Mode Line" "Show the current column number in the mode line")) (bindings--define-key menu [line-number-mode] (menu-bar-make-mm-toggle line-number-mode "Line Numbers in Mode Line" "Show the current line number in the mode line")) (bindings--define-key menu [size-indication-mode] (menu-bar-make-mm-toggle size-indication-mode "Size Indication" "Show the size of the buffer in the mode line")) (bindings--define-key menu [linecolumn-separator] menu-bar-separator) (bindings--define-key menu [showhide-battery] (menu-bar-make-mm-toggle display-battery-mode "Battery Status" "Display battery status information in mode line")) (bindings--define-key menu [showhide-date-time] (menu-bar-make-mm-toggle display-time-mode "Time, Load and Mail" "Display time, system load averages and mail status in mode line")) (bindings--define-key menu [datetime-separator] menu-bar-separator) (bindings--define-key menu [showhide-speedbar] (quote (menu-item "Speedbar" speedbar-frame-mode :help "Display a Speedbar quick-navigation frame" :button (:toggle and (boundp (quote speedbar-frame)) (frame-live-p (symbol-value (quote speedbar-frame))) (frame-visible-p (symbol-value (quote speedbar-frame))))))) (bindings--define-key menu [showhide-window-divider] (\` (menu-item "Window Divider" (\, menu-bar-showhide-window-divider-menu) :visible (memq (window-system) (quote (x w32)))))) (bindings--define-key menu [showhide-fringe] (\` (menu-item "Fringe" (\, menu-bar-showhide-fringe-menu) :visible (display-graphic-p)))) (bindings--define-key menu [showhide-scroll-bar] (\` (menu-item "Scroll Bar" (\, menu-bar-showhide-scroll-bar-menu) :visible (display-graphic-p)))) (bindings--define-key menu [showhide-tooltip-mode] (quote (menu-item "Tooltips" tooltip-mode :help "Turn tooltips on/off" :visible (and (display-graphic-p) (fboundp (quote x-show-tip))) :button (:toggle . tooltip-mode)))) (bindings--define-key menu [menu-bar-mode] (quote (menu-item "Menu Bar" toggle-menu-bar-mode-from-frame :help "Turn menu bar on/off" :button (:toggle menu-bar-positive-p (frame-parameter (menu-bar-frame-for-menubar) (quote menu-bar-lines)))))) (if (and (boundp (quote menu-bar-showhide-tool-bar-menu)) (keymapp menu-bar-showhide-tool-bar-menu)) (bindings--define-key menu [showhide-tool-bar] (\` (menu-item "Tool Bar" (\, menu-bar-showhide-tool-bar-menu) :visible (display-graphic-p)))) (bindings--define-key menu [showhide-tool-bar] (quote (menu-item "Tool Bar" toggle-tool-bar-mode-from-frame :help "Turn tool bar on/off" :visible (display-graphic-p) :button (:toggle menu-bar-positive-p (frame-parameter (menu-bar-frame-for-menubar) (quote tool-bar-lines))))))) menu)) nil [49675 53686])
-            ("menu-bar-line-wrapping-menu" variable (:default-value (let ((menu (make-sparse-keymap "Line Wrapping"))) (bindings--define-key menu [word-wrap] (\` (menu-item "Word Wrap (Visual Line mode)" (\, (lambda nil (interactive) (unless visual-line-mode (visual-line-mode 1)) (message "Visual-Line mode enabled"))) :help "Wrap long lines at word boundaries" :button (:radio and (null truncate-lines) (not (truncated-partial-width-window-p)) word-wrap) :visible (menu-bar-menu-frame-live-and-visible-p)))) (bindings--define-key menu [truncate] (\` (menu-item "Truncate Long Lines" (\, (lambda nil (interactive) (if visual-line-mode (visual-line-mode 0)) (setq word-wrap nil) (toggle-truncate-lines 1))) :help "Truncate long lines at window edge" :button (:radio or truncate-lines (truncated-partial-width-window-p)) :visible (menu-bar-menu-frame-live-and-visible-p) :enable (not (truncated-partial-width-window-p))))) (bindings--define-key menu [window-wrap] (\` (menu-item "Wrap at Window Edge" (\, (lambda nil (interactive) (if visual-line-mode (visual-line-mode 0)) (setq word-wrap nil) (if truncate-lines (toggle-truncate-lines -1)))) :help "Wrap long lines at window edge" :button (:radio and (null truncate-lines) (not (truncated-partial-width-window-p)) (not word-wrap)) :visible (menu-bar-menu-frame-live-and-visible-p) :enable (not (truncated-partial-width-window-p))))) menu)) nil [53688 55785])
-            ("menu-bar-search-options-menu" variable (:default-value (let ((menu (make-sparse-keymap "Search Options"))) (dolist (x (quote ((char-fold-to-regexp "Fold Characters" "Character folding") (isearch-symbol-regexp "Whole Symbols" "Whole symbol") (word-search-regexp "Whole Words" "Whole word")))) (bindings--define-key menu (vector (nth 0 x)) (\` (menu-item (\, (nth 1 x)) (lambda nil (interactive) (setq search-default-mode (function (\, (nth 0 x)))) (message (\, (format "%s search enabled" (nth 2 x))))) :help (\, (format "Enable %s search" (downcase (nth 2 x)))) :button (:radio eq search-default-mode (function (\, (nth 0 x)))))))) (bindings--define-key menu [regexp-search] (quote (menu-item "Regular Expression" (lambda nil (interactive) (setq search-default-mode t) (message "Regular-expression search enabled")) :help "Enable regular-expression search" :button (:radio eq search-default-mode t)))) (bindings--define-key menu [regular-search] (quote (menu-item "Literal Search" (lambda nil (interactive) (when search-default-mode (setq search-default-mode nil) (when (symbolp search-default-mode) (message "Literal search enabled")))) :help "Disable special search modes" :button (:radio not search-default-mode)))) (bindings--define-key menu [custom-separator] menu-bar-separator) (bindings--define-key menu [case-fold-search] (menu-bar-make-toggle toggle-case-fold-search case-fold-search "Ignore Case" "Case-Insensitive Search %s" "Ignore letter-case in search commands")) menu)) nil [55787 57733])
-            ("menu-bar-options-menu" variable (:default-value (let ((menu (make-sparse-keymap "Options"))) (bindings--define-key menu [customize] (\` (menu-item "Customize Emacs" (\, menu-bar-custom-menu)))) (bindings--define-key menu [package] (quote (menu-item "Manage Emacs Packages" package-list-packages :help "Install or uninstall additional Emacs packages"))) (bindings--define-key menu [save] (quote (menu-item "Save Options" menu-bar-options-save :help "Save options set from the menu above"))) (bindings--define-key menu [custom-separator] menu-bar-separator) (bindings--define-key menu [menu-set-font] (quote (menu-item "Set Default Font..." menu-set-font :visible (display-multi-font-p) :help "Select a default font"))) (if (featurep (quote system-font-setting)) (bindings--define-key menu [menu-system-font] (menu-bar-make-toggle toggle-use-system-font font-use-system-font "Use System Font" "Use system font: %s" "Use the monospaced font defined by the system"))) (bindings--define-key menu [showhide] (\` (menu-item "Show/Hide" (\, menu-bar-showhide-menu)))) (bindings--define-key menu [showhide-separator] menu-bar-separator) (bindings--define-key menu [mule] (\` (menu-item "Multilingual Environment" (\, mule-menu-keymap)))) (bindings--define-key menu [mule-separator] menu-bar-separator) (bindings--define-key menu [debug-on-quit] (menu-bar-make-toggle toggle-debug-on-quit debug-on-quit "Enter Debugger on Quit/C-g" "Debug on Quit %s" "Enter Lisp debugger when C-g is pressed")) (bindings--define-key menu [debug-on-error] (menu-bar-make-toggle toggle-debug-on-error debug-on-error "Enter Debugger on Error" "Debug on Error %s" "Enter Lisp debugger when an error is signaled")) (bindings--define-key menu [debugger-separator] menu-bar-separator) (bindings--define-key menu [blink-cursor-mode] (menu-bar-make-mm-toggle blink-cursor-mode "Blink Cursor" "Whether the cursor blinks (Blink Cursor mode)")) (bindings--define-key menu [cursor-separator] menu-bar-separator) (bindings--define-key menu [save-place] (menu-bar-make-toggle toggle-save-place-globally save-place "Save Place in Files between Sessions" "Saving place in files %s" "Visit files of previous session when restarting Emacs" (require (quote saveplace)) (set-default (quote save-place) (not (symbol-value (quote save-place)))))) (bindings--define-key menu [uniquify] (menu-bar-make-toggle toggle-uniquify-buffer-names uniquify-buffer-name-style "Use Directory Names in Buffer Names" "Directory name in buffer names (uniquify) %s" "Uniquify buffer names by adding parent directory names" (setq uniquify-buffer-name-style (if (not uniquify-buffer-name-style) (quote post-forward-angle-brackets))))) (bindings--define-key menu [edit-options-separator] menu-bar-separator) (bindings--define-key menu [cua-mode] (menu-bar-make-mm-toggle cua-mode "Use CUA Keys (Cut/Paste with C-x/C-c/C-v)" "Use C-z/C-x/C-c/C-v keys for undo/cut/copy/paste" (:visible (or (not (boundp (quote cua-enable-cua-keys))) cua-enable-cua-keys)))) (bindings--define-key menu [cua-emulation-mode] (menu-bar-make-mm-toggle cua-mode "Shift movement mark region (CUA)" "Use shifted movement keys to set and extend the region" (:visible (and (boundp (quote cua-enable-cua-keys)) (not cua-enable-cua-keys))))) (bindings--define-key menu [search-options] (\` (menu-item "Default Search Options" (\, menu-bar-search-options-menu)))) (bindings--define-key menu [line-wrapping] (\` (menu-item "Line Wrapping in This Buffer" (\, menu-bar-line-wrapping-menu)))) (bindings--define-key menu [highlight-separator] menu-bar-separator) (bindings--define-key menu [highlight-paren-mode] (menu-bar-make-mm-toggle show-paren-mode "Highlight Matching Parentheses" "Highlight matching/mismatched parentheses at cursor (Show Paren mode)")) (bindings--define-key menu [transient-mark-mode] (menu-bar-make-mm-toggle transient-mark-mode "Highlight Active Region" "Make text in active region stand out in color (Transient Mark mode)" (:enable (not cua-mode)))) menu)) nil [57735 63054])
-            ("menu-bar-games-menu" variable (:default-value (let ((menu (make-sparse-keymap "Games"))) (bindings--define-key menu [zone] (quote (menu-item "Zone Out" zone :help "Play tricks with Emacs display when Emacs is idle"))) (bindings--define-key menu [tetris] (quote (menu-item "Tetris" tetris :help "Falling blocks game"))) (bindings--define-key menu [solitaire] (quote (menu-item "Solitaire" solitaire :help "Get rid of all the stones"))) (bindings--define-key menu [snake] (quote (menu-item "Snake" snake :help "Move snake around avoiding collisions"))) (bindings--define-key menu [pong] (quote (menu-item "Pong" pong :help "Bounce the ball to your opponent"))) (bindings--define-key menu [mult] (quote (menu-item "Multiplication Puzzle" mpuz :help "Exercise brain with multiplication"))) (bindings--define-key menu [life] (quote (menu-item "Life" life :help "Watch how John Conway's cellular automaton evolves"))) (bindings--define-key menu [hanoi] (quote (menu-item "Towers of Hanoi" hanoi :help "Watch Towers-of-Hanoi puzzle solved by Emacs"))) (bindings--define-key menu [gomoku] (quote (menu-item "Gomoku" gomoku :help "Mark 5 contiguous squares (like tic-tac-toe)"))) (bindings--define-key menu [bubbles] (quote (menu-item "Bubbles" bubbles :help "Remove all bubbles using the fewest moves"))) (bindings--define-key menu [black-box] (quote (menu-item "Blackbox" blackbox :help "Find balls in a black box by shooting rays"))) (bindings--define-key menu [adventure] (quote (menu-item "Adventure" dunnet :help "Dunnet, a text Adventure game for Emacs"))) (bindings--define-key menu [5x5] (quote (menu-item "5x5" 5x5 :help "Fill in all the squares on a 5x5 board"))) menu)) nil [63085 65024])
-            ("menu-bar-encryption-decryption-menu" variable (:default-value (let ((menu (make-sparse-keymap "Encryption/Decryption"))) (bindings--define-key menu [insert-keys] (quote (menu-item "Insert Keys" epa-insert-keys :help "Insert public keys after the current point"))) (bindings--define-key menu [export-keys] (quote (menu-item "Export Keys" epa-export-keys :help "Export public keys to a file"))) (bindings--define-key menu [import-keys-region] (quote (menu-item "Import Keys from Region" epa-import-keys-region :help "Import public keys from the current region"))) (bindings--define-key menu [import-keys] (quote (menu-item "Import Keys from File..." epa-import-keys :help "Import public keys from a file"))) (bindings--define-key menu [list-keys] (quote (menu-item "List Keys" epa-list-keys :help "Browse your public keyring"))) (bindings--define-key menu [separator-keys] menu-bar-separator) (bindings--define-key menu [sign-region] (quote (menu-item "Sign Region" epa-sign-region :help "Create digital signature of the current region"))) (bindings--define-key menu [verify-region] (quote (menu-item "Verify Region" epa-verify-region :help "Verify digital signature of the current region"))) (bindings--define-key menu [encrypt-region] (quote (menu-item "Encrypt Region" epa-encrypt-region :help "Encrypt the current region"))) (bindings--define-key menu [decrypt-region] (quote (menu-item "Decrypt Region" epa-decrypt-region :help "Decrypt the current region"))) (bindings--define-key menu [separator-file] menu-bar-separator) (bindings--define-key menu [sign-file] (quote (menu-item "Sign File..." epa-sign-file :help "Create digital signature of a file"))) (bindings--define-key menu [verify-file] (quote (menu-item "Verify File..." epa-verify-file :help "Verify digital signature of a file"))) (bindings--define-key menu [encrypt-file] (quote (menu-item "Encrypt File..." epa-encrypt-file :help "Encrypt a file"))) (bindings--define-key menu [decrypt-file] (quote (menu-item "Decrypt File..." epa-decrypt-file :help "Decrypt a file"))) menu)) nil [65026 67367])
-            ("menu-bar-read-mail" function (:user-visible-flag t) nil [67369 67496])
-            ("menu-bar-tools-menu" variable (:default-value (let ((menu (make-sparse-keymap "Tools"))) (bindings--define-key menu [games] (\` (menu-item "Games" (\, menu-bar-games-menu)))) (bindings--define-key menu [separator-games] menu-bar-separator) (bindings--define-key menu [encryption-decryption] (\` (menu-item "Encryption/Decryption" (\, menu-bar-encryption-decryption-menu)))) (bindings--define-key menu [separator-encryption-decryption] menu-bar-separator) (bindings--define-key menu [simple-calculator] (quote (menu-item "Simple Calculator" calculator :help "Invoke the Emacs built-in quick calculator"))) (bindings--define-key menu [calc] (quote (menu-item "Programmable Calculator" calc :help "Invoke the Emacs built-in full scientific calculator"))) (bindings--define-key menu [calendar] (quote (menu-item "Calendar" calendar :help "Invoke the Emacs built-in calendar"))) (bindings--define-key menu [separator-net] menu-bar-separator) (bindings--define-key menu [browse-web] (quote (menu-item "Browse the Web..." browse-web))) (bindings--define-key menu [directory-search] (quote (menu-item "Directory Servers" eudc-tools-menu))) (bindings--define-key menu [compose-mail] (quote (menu-item "Compose New Mail" compose-mail :visible (and mail-user-agent (not (eq mail-user-agent (quote ignore)))) :help "Start writing a new mail message"))) (bindings--define-key menu [rmail] (quote (menu-item "Read Mail" menu-bar-read-mail :visible (and read-mail-command (not (eq read-mail-command (quote ignore)))) :help "Read your mail"))) (bindings--define-key menu [gnus] (quote (menu-item "Read Net News" gnus :help "Read network news groups"))) (bindings--define-key menu [separator-vc] menu-bar-separator) (bindings--define-key menu [vc] nil) (bindings--define-key menu [separator-compare] menu-bar-separator) (bindings--define-key menu [epatch] (quote (menu-item "Apply Patch" menu-bar-epatch-menu))) (bindings--define-key menu [ediff-merge] (quote (menu-item "Merge" menu-bar-ediff-merge-menu))) (bindings--define-key menu [compare] (quote (menu-item "Compare (Ediff)" menu-bar-ediff-menu))) (bindings--define-key menu [separator-spell] menu-bar-separator) (bindings--define-key menu [spell] (quote (menu-item "Spell Checking" ispell-menu-map))) (bindings--define-key menu [separator-prog] menu-bar-separator) (bindings--define-key menu [semantic] (quote (menu-item "Source Code Parsers (Semantic)" semantic-mode :help "Toggle automatic parsing in source code buffers (Semantic mode)" :button (:toggle bound-and-true-p semantic-mode)))) (bindings--define-key menu [ede] (quote (menu-item "Project Support (EDE)" global-ede-mode :help "Toggle the Emacs Development Environment (Global EDE mode)" :button (:toggle bound-and-true-p global-ede-mode)))) (bindings--define-key menu [gdb] (quote (menu-item "Debugger (GDB)..." gdb :help "Debug a program from within Emacs with GDB"))) (bindings--define-key menu [shell-on-region] (quote (menu-item "Shell Command on Region..." shell-command-on-region :enable mark-active :help "Pass marked region to a shell command"))) (bindings--define-key menu [shell] (quote (menu-item "Shell Command..." shell-command :help "Invoke a shell command and catch its output"))) (bindings--define-key menu [compile] (quote (menu-item "Compile..." compile :help "Invoke compiler or Make, view compilation errors"))) (bindings--define-key menu [grep] (quote (menu-item "Search Files (Grep)..." grep :help "Search files for strings or regexps (with Grep)"))) menu)) nil [67498 71560])
-            ("menu-bar-describe-menu" variable (:default-value (let ((menu (make-sparse-keymap "Describe"))) (bindings--define-key menu [mule-diag] (quote (menu-item "Show All of Mule Status" mule-diag :visible (default-value (quote enable-multibyte-characters)) :help "Display multilingual environment settings"))) (bindings--define-key menu [describe-coding-system-briefly] (quote (menu-item "Describe Coding System (Briefly)" describe-current-coding-system-briefly :visible (default-value (quote enable-multibyte-characters))))) (bindings--define-key menu [describe-coding-system] (quote (menu-item "Describe Coding System..." describe-coding-system :visible (default-value (quote enable-multibyte-characters))))) (bindings--define-key menu [describe-input-method] (quote (menu-item "Describe Input Method..." describe-input-method :visible (default-value (quote enable-multibyte-characters)) :help "Keyboard layout for specific input method"))) (bindings--define-key menu [describe-language-environment] (\` (menu-item "Describe Language Environment" (\, describe-language-environment-map)))) (bindings--define-key menu [separator-desc-mule] menu-bar-separator) (bindings--define-key menu [list-keybindings] (quote (menu-item "List Key Bindings" describe-bindings :help "Display all current key bindings (keyboard shortcuts)"))) (bindings--define-key menu [describe-current-display-table] (quote (menu-item "Describe Display Table" describe-current-display-table :help "Describe the current display table"))) (bindings--define-key menu [describe-package] (quote (menu-item "Describe Package..." describe-package :help "Display documentation of a Lisp package"))) (bindings--define-key menu [describe-face] (quote (menu-item "Describe Face..." describe-face :help "Display the properties of a face"))) (bindings--define-key menu [describe-variable] (quote (menu-item "Describe Variable..." describe-variable :help "Display documentation of variable/option"))) (bindings--define-key menu [describe-function] (quote (menu-item "Describe Function..." describe-function :help "Display documentation of function/command"))) (bindings--define-key menu [describe-key-1] (quote (menu-item "Describe Key or Mouse Operation..." describe-key :help "Display documentation of command bound to a key, a click, or a menu-item"))) (bindings--define-key menu [describe-mode] (quote (menu-item "Describe Buffer Modes" describe-mode :help "Describe this buffer's major and minor mode"))) menu)) nil [71589 74429])
-            ("menu-bar-read-lispref" function (:user-visible-flag t) nil [74431 74554])
-            ("menu-bar-read-lispintro" function (:user-visible-flag t) nil [74556 74692])
-            ("search-emacs-glossary" function (:user-visible-flag t) nil [74694 74833])
-            ("emacs-index-search" function
-               (:user-visible-flag t
-                :arguments ("topic"))
-                nil [74835 75006])
-            ("elisp-index-search" function
-               (:user-visible-flag t
-                :arguments ("topic"))
-                nil [75008 75189])
-            ("menu-bar-search-documentation-menu" variable (:default-value (let ((menu (make-sparse-keymap "Search Documentation"))) (bindings--define-key menu [search-documentation-strings] (quote (menu-item "Search Documentation Strings..." apropos-documentation :help "Find functions and variables whose doc strings match a regexp"))) (bindings--define-key menu [find-any-object-by-name] (quote (menu-item "Find Any Object by Name..." apropos :help "Find symbols of any kind whose names match a regexp"))) (bindings--define-key menu [find-option-by-value] (quote (menu-item "Find Options by Value..." apropos-value :help "Find variables whose values match a regexp"))) (bindings--define-key menu [find-options-by-name] (quote (menu-item "Find Options by Name..." apropos-user-option :help "Find user options whose names match a regexp"))) (bindings--define-key menu [find-commands-by-name] (quote (menu-item "Find Commands by Name..." apropos-command :help "Find commands whose names match a regexp"))) (bindings--define-key menu [sep1] menu-bar-separator) (bindings--define-key menu [lookup-command-in-manual] (quote (menu-item "Look Up Command in User Manual..." Info-goto-emacs-command-node :help "Display manual section that describes a command"))) (bindings--define-key menu [lookup-key-in-manual] (quote (menu-item "Look Up Key in User Manual..." Info-goto-emacs-key-command-node :help "Display manual section that describes a key"))) (bindings--define-key menu [lookup-subject-in-elisp-manual] (quote (menu-item "Look Up Subject in ELisp Manual..." elisp-index-search :help "Find description of a subject in Emacs Lisp manual"))) (bindings--define-key menu [lookup-subject-in-emacs-manual] (quote (menu-item "Look Up Subject in User Manual..." emacs-index-search :help "Find description of a subject in Emacs User manual"))) (bindings--define-key menu [emacs-terminology] (quote (menu-item "Emacs Terminology" search-emacs-glossary :help "Display the Glossary section of the Emacs manual"))) menu)) nil [75191 77412])
-            ("menu-bar-manuals-menu" variable (:default-value (let ((menu (make-sparse-keymap "More Manuals"))) (bindings--define-key menu [man] (quote (menu-item "Read Man Page..." manual-entry :help "Man-page docs for external commands and libraries"))) (bindings--define-key menu [sep2] menu-bar-separator) (bindings--define-key menu [order-emacs-manuals] (quote (menu-item "Ordering Manuals" view-order-manuals :help "How to order manuals from the Free Software Foundation"))) (bindings--define-key menu [lookup-subject-in-all-manuals] (quote (menu-item "Lookup Subject in all Manuals..." info-apropos :help "Find description of a subject in all installed manuals"))) (bindings--define-key menu [other-manuals] (quote (menu-item "All Other Manuals (Info)" Info-directory :help "Read any of the installed manuals"))) (bindings--define-key menu [emacs-lisp-reference] (quote (menu-item "Emacs Lisp Reference" menu-bar-read-lispref :help "Read the Emacs Lisp Reference manual"))) (bindings--define-key menu [emacs-lisp-intro] (quote (menu-item "Introduction to Emacs Lisp" menu-bar-read-lispintro :help "Read the Introduction to Emacs Lisp Programming"))) menu)) nil [77414 78688])
-            ("help-with-tutorial-spec-language" function (:user-visible-flag t) nil [78690 78838])
-            ("menu-bar-help-menu" variable (:default-value (let ((menu (make-sparse-keymap "Help"))) (bindings--define-key menu [about-gnu-project] (quote (menu-item "About GNU" describe-gnu-project :help "About the GNU System, GNU Project, and GNU/Linux"))) (bindings--define-key menu [about-emacs] (quote (menu-item "About Emacs" about-emacs :help "Display version number, copyright info, and basic help"))) (bindings--define-key menu [sep4] menu-bar-separator) (bindings--define-key menu [describe-no-warranty] (quote (menu-item "(Non)Warranty" describe-no-warranty :help "Explain that Emacs has NO WARRANTY"))) (bindings--define-key menu [describe-copying] (quote (menu-item "Copying Conditions" describe-copying :help "Show the Emacs license (GPL)"))) (bindings--define-key menu [getting-new-versions] (quote (menu-item "Getting New Versions" describe-distribution :help "How to get the latest version of Emacs"))) (bindings--define-key menu [sep2] menu-bar-separator) (bindings--define-key menu [external-packages] (quote (menu-item "Finding Extra Packages" view-external-packages :help "How to get more Lisp packages for use in Emacs"))) (bindings--define-key menu [find-emacs-packages] (quote (menu-item "Search Built-in Packages" finder-by-keyword :help "Find built-in packages and features by keyword"))) (bindings--define-key menu [more-manuals] (\` (menu-item "More Manuals" (\, menu-bar-manuals-menu)))) (bindings--define-key menu [emacs-manual] (quote (menu-item "Read the Emacs Manual" info-emacs-manual :help "Full documentation of Emacs features"))) (bindings--define-key menu [describe] (\` (menu-item "Describe" (\, menu-bar-describe-menu)))) (bindings--define-key menu [search-documentation] (\` (menu-item "Search Documentation" (\, menu-bar-search-documentation-menu)))) (bindings--define-key menu [sep1] menu-bar-separator) (bindings--define-key menu [emacs-psychotherapist] (quote (menu-item "Emacs Psychotherapist" doctor :help "Our doctor will help you feel better"))) (bindings--define-key menu [send-emacs-bug-report] (quote (menu-item "Send Bug Report..." report-emacs-bug :help "Send e-mail to Emacs maintainers"))) (bindings--define-key menu [emacs-manual-bug] (quote (menu-item "How to Report a Bug" info-emacs-bug :help "Read about how to report an Emacs bug"))) (bindings--define-key menu [emacs-known-problems] (quote (menu-item "Emacs Known Problems" view-emacs-problems :help "Read about known problems with Emacs"))) (bindings--define-key menu [emacs-news] (quote (menu-item "Emacs News" view-emacs-news :help "New features of this version"))) (bindings--define-key menu [emacs-faq] (quote (menu-item "Emacs FAQ" view-emacs-FAQ :help "Frequently asked (and answered) questions about Emacs"))) (bindings--define-key menu [emacs-tutorial-language-specific] (quote (menu-item "Emacs Tutorial (choose language)..." help-with-tutorial-spec-language :help "Learn how to use Emacs (choose a language)"))) (bindings--define-key menu [emacs-tutorial] (quote (menu-item "Emacs Tutorial" help-with-tutorial :help "Learn how to use Emacs"))) (and (featurep (quote ns)) (not (eq system-type (quote darwin))) (bindings--define-key menu [info-panel] (quote (menu-item "About Emacs..." ns-do-emacs-info-panel)))) menu)) nil [78840 82588])
-            ("bindings--define-key" code nil nil [82590 82677])
-            ("bindings--define-key" code nil nil [82678 82772])
-            ("bindings--define-key" code nil nil [82773 82866])
-            ("bindings--define-key" code nil nil [82867 82951])
-            ("bindings--define-key" code nil nil [82952 83036])
-            ("bindings--define-key" code nil nil [83037 83137])
-            ("menu-bar-menu-frame-live-and-visible-p" function nil nil [83139 83443])
-            ("menu-bar-non-minibuffer-window-p" function nil nil [83445 83891])
-            ("kill-this-buffer" function (:user-visible-flag t) nil [83893 84437])
-            ("kill-this-buffer-enabled-p" function nil nil [84439 84907])
-            ("put" code nil nil [84909 84970])
-            ("delete-frame-enabled-p" function nil nil [85045 85330])
-            ("yank-menu-length" variable (:default-value 20) nil [85332 85443])
-            ("menu-bar-update-yank-menu" function (:arguments ("string" "old")) nil [85445 86436])
-            ("put" code nil nil [86438 86484])
-            ("menu-bar-select-yank" function (:user-visible-flag t) nil [86485 86717])
-            ("buffers-menu-max-size" variable (:default-value 10) nil [86739 87083])
-            ("buffers-menu-buffer-name-length" variable (:default-value 30) nil [87085 87434])
-            ("buffers-menu-show-directories" variable (:default-value (quote unless-uniquify)) nil [87436 88180])
-            ("buffers-menu-show-status" variable (:default-value t) nil [88182 88555])
-            ("list-buffers-directory" variable nil nil [88557 88666])
-            ("make-variable-buffer-local" code nil nil [88667 88719])
-            ("menu-bar-select-buffer" function nil nil [88721 88810])
-            ("menu-bar-select-frame" function (:arguments ("frame")) nil [88812 88923])
-            ("menu-bar-update-buffers-1" function (:arguments ("elt")) nil [88925 89795])
-            ("menu-bar-buffers-menu-command-entries" variable nil nil [89864 89914])
-            ("menu-bar-select-buffer-function" variable (:default-value (quote switch-to-buffer)) nil [89916 90104])
-            ("menu-bar-buffer-vector" function (:arguments ("alist")) nil [90106 90534])
-            ("menu-bar-update-buffers" function (:arguments ("force")) nil [90536 94422])
-            ("add-hook" code nil nil [94424 94481])
-            ("menu-bar-update-buffers" code nil nil [94483 94508])
-            ("dolist" code nil nil [95131 95427])
-            ("let" code nil nil [95429 95918])
-            ("let" code nil nil [95920 96989])
-            ("define-minor-mode" code nil nil [96992 98356])
-            ("put" code nil nil [98800 98841])
-            ("toggle-menu-bar-mode-from-frame" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [98843 99249])
-            ("declare-function" code nil nil [99251 99316])
-            ("declare-function" code nil nil [99317 99386])
-            ("lookup-key-ignore-too-long" function (:arguments ("map" "key")) nil [99388 99602])
-            ("popup-menu" function (:arguments ("menu" "position" "prefix" "from-menu-bar")) nil [99604 102614])
-            ("popup-menu-normalize-position" function (:arguments ("position")) nil [102616 103364])
-            ("tty-menu-open-use-tmm" variable nil nil [103366 103827])
-            ("tty-menu--initial-menu-x" variable (:default-value 1) nil [103829 103980])
-            ("menu-bar-open" function
-               (:user-visible-flag t
-                :arguments ("frame"))
-                nil [103982 105550])
-            ("global-set-key" code nil nil [105552 105589])
-            ("buffer-menu-open" function (:user-visible-flag t) nil [105591 105816])
-            ("global-set-key" code nil nil [105818 105860])
-            ("mouse-buffer-menu-keymap" function nil nil [105862 106189])
-            ("tty-menu-navigation-map" variable (:default-value (let ((map (make-sparse-keymap))) (dolist (bind (quote ((keyboard-quit . tty-menu-exit) (keyboard-escape-quit . tty-menu-exit) (forward-char . tty-menu-next-menu) (backward-char . tty-menu-prev-menu) (right-char . tty-menu-next-menu) (left-char . tty-menu-prev-menu) (next-line . tty-menu-next-item) (previous-line . tty-menu-prev-item) (newline . tty-menu-select) (newline-and-indent . tty-menu-select) (menu-bar-open . tty-menu-exit)))) (substitute-key-definition (car bind) (cdr bind) map (current-global-map))) (define-key map [menu-bar t] (quote tty-menu-exit)) (define-key map [18] (quote tty-menu-select)) (define-key map [10] (quote tty-menu-select)) (define-key map [return] (quote tty-menu-select)) (define-key map [linefeed] (quote tty-menu-select)) (define-key map [mouse-1] (quote tty-menu-select)) (define-key map [drag-mouse-1] (quote tty-menu-select)) (define-key map [mouse-2] (quote tty-menu-select)) (define-key map [drag-mouse-2] (quote tty-menu-select)) (define-key map [mouse-3] (quote tty-menu-select)) (define-key map [drag-mouse-3] (quote tty-menu-select)) (define-key map [wheel-down] (quote tty-menu-next-item)) (define-key map [wheel-up] (quote tty-menu-prev-item)) (define-key map [wheel-left] (quote tty-menu-prev-menu)) (define-key map [wheel-right] (quote tty-menu-next-menu)) (define-key map [S-mouse-1] (quote tty-menu-next-item)) (define-key map [S-drag-mouse-1] (quote tty-menu-next-item)) (define-key map [S-mouse-2] (quote tty-menu-prev-item)) (define-key map [S-drag-mouse-2] (quote tty-menu-prev-item)) (define-key map [S-mouse-3] (quote tty-menu-prev-item)) (define-key map [S-drag-mouse-3] (quote tty-menu-prev-item)) (define-key map [header-line mouse-1] (quote tty-menu-select)) (define-key map [header-line drag-mouse-1] (quote tty-menu-select)) (define-key map [mode-line down-mouse-1] (quote tty-menu-ignore)) (define-key map [mode-line down-mouse-2] (quote tty-menu-ignore)) (define-key map [mode-line down-mouse-3] (quote tty-menu-ignore)) (define-key map [mode-line C-down-mouse-1] (quote tty-menu-ignore)) (define-key map [mode-line C-down-mouse-2] (quote tty-menu-ignore)) (define-key map [mode-line C-down-mouse-3] (quote tty-menu-ignore)) (define-key map [down-mouse-1] (quote tty-menu-ignore)) (define-key map [C-down-mouse-1] (quote tty-menu-ignore)) (define-key map [C-down-mouse-2] (quote tty-menu-ignore)) (define-key map [C-down-mouse-3] (quote tty-menu-ignore)) (define-key map [mouse-movement] (quote tty-menu-mouse-movement)) map)) nil [106191 109736])
-            ("menu-bar" package nil nil [109738 109757]))          
-      :file "menu-bar.el"
-      :pointmax 109785
-      :fsize 109784
-      :lastmodtime '(23525 29513 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("easy-mmode" include nil nil [1158 1179])
-            ("pcase" include nil nil [1139 1155])
-            ("font-lock-keywords" variable nil nil [1209 1236])
-            ("backup" customgroup (:user-visible-flag t) nil [1238 1309])
-            ("find-file" customgroup (:user-visible-flag t) nil [1311 1370])
-            ("delete-auto-save-files" variable (:default-value t) nil [1373 1623])
-            ("directory-abbrev-alist" variable nil nil [1625 2637])
-            ("make-backup-files" variable (:default-value t) nil [2639 3562])
-            ("backup-inhibited" variable nil nil [3663 3855])
-            ("put" code nil nil [3856 3898])
-            ("backup-by-copying" variable nil nil [3900 4078])
-            ("backup-by-copying-when-linked" variable nil nil [4080 4373])
-            ("backup-by-copying-when-mismatch" variable (:default-value t) nil [4375 4863])
-            ("put" code nil nil [4864 4921])
-            ("backup-by-copying-when-privileged-mismatch" variable (:default-value 200) nil [4923 5546])
-            ("backup-enable-predicate" variable (:default-value (quote normal-backup-enable-predicate)) nil [5548 5767])
-            ("buffer-offer-save" variable nil nil [5769 6230])
-            ("make-variable-buffer-local" code nil nil [6231 6278])
-            ("put" code nil nil [6279 6322])
-            ("find-file-existing-other-name" variable (:default-value t) nil [6324 6617])
-            ("find-file-visit-truename" variable nil nil [6619 6991])
-            ("put" code nil nil [6992 7054])
-            ("revert-without-query" variable nil nil [7056 7421])
-            ("buffer-file-number" variable nil nil [7423 7692])
-            ("make-variable-buffer-local" code nil nil [7693 7741])
-            ("put" code nil nil [7742 7786])
-            ("buffer-file-numbers-unique" variable (:default-value (not (memq system-type (quote (windows-nt))))) nil [7788 7933])
-            ("buffer-file-read-only" variable nil nil [7935 8025])
-            ("make-variable-buffer-local" code nil nil [8026 8077])
-            ("small-temporary-file-directory" variable (:default-value (if (eq system-type (quote ms-dos)) (getenv "TMPDIR"))) nil [8079 8523])
-            ("null-device" variable (:default-value (purecopy "/dev/null")) nil [8591 8660])
-            ("declare-function" code nil nil [8662 8712])
-            ("declare-function" code nil nil [8713 8762])
-            ("declare-function" code nil nil [8763 8849])
-            ("declare-function" code nil nil [8850 8917])
-            ("declare-function" code nil nil [8918 8990])
-            ("declare-function" code nil nil [8991 9047])
-            ("declare-function" code nil nil [9048 9107])
-            ("file-name-invalid-regexp" variable (:default-value (cond ((and (eq system-type (quote ms-dos)) (not (msdos-long-file-names))) (purecopy (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" "[+, ;=|<>\"?*]\\|\\[\\|\\]\\|" "[�-]\\|" "\\(/\\.\\.?[^/]\\)\\|" "\\(/[^/.]+\\.[^/.]*\\.\\)"))) ((memq system-type (quote (ms-dos windows-nt cygwin))) (purecopy (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" "[|<>\"?*�-]"))) (t (purecopy "[�]")))) nil [9109 9782])
-            ("file-precious-flag" variable nil nil [9784 10624])
-            ("break-hardlink-on-save" variable nil nil [10626 11381])
-            ("version-control" variable nil nil [11383 11740])
-            ("version-control-safe-local-p" function (:arguments ("x")) nil [11742 11886])
-            ("put" code nil nil [11888 11967])
-            ("dired-kept-versions" variable (:default-value 2) nil [11969 12109])
-            ("delete-old-versions" variable nil nil [12111 12377])
-            ("kept-old-versions" variable (:default-value 2) nil [12379 12518])
-            ("put" code nil nil [12519 12574])
-            ("kept-new-versions" variable (:default-value 2) nil [12576 12765])
-            ("put" code nil nil [12766 12821])
-            ("require-final-newline" variable nil nil [12823 13594])
-            ("mode-require-final-newline" variable (:default-value t) nil [13596 14731])
-            ("auto-save-default" variable (:default-value t) nil [14733 14875])
-            ("auto-save-file-name-transforms" variable (:default-value (\` (("\\`/[^/]*:\\([^/]*/\\)*\\([^/]*\\)\\'" (\, (concat temporary-file-directory "\\2")) t)))) nil [14877 16305])
-            ("auto-save--timer" variable nil nil [16307 16374])
-            ("auto-save-visited-interval" variable (:default-value 5) nil [16376 16857])
-            ("define-minor-mode" code nil nil [16859 17831])
-            ("make-obsolete-variable" code nil nil [18026 18145])
-            ("save-abbrevs" variable (:default-value t) nil [18147 18358])
-            ("find-file-run-dired" variable (:default-value t) nil [18360 18557])
-            ("find-directory-functions" variable (:default-value (quote (cvs-dired-noselect dired-noselect))) nil [18559 18887])
-            ("file-name-at-point-functions" variable (:default-value (quote (ffap-guess-file-name-at-point))) nil [18948 19276])
-            ("define-obsolete-variable-alias" code nil nil [19384 19485])
-            ("find-file-not-found-functions" variable nil nil [19486 19787])
-            ("define-obsolete-variable-alias" code nil nil [19885 19957])
-            ("find-file-hook" variable nil nil [19958 20235])
-            ("define-obsolete-variable-alias" code nil nil [20237 20316])
-            ("write-file-functions" variable nil nil [20317 21121])
-            ("put" code nil nil [21122 21168])
-            ("local-write-file-hooks" variable nil nil [21170 21205])
-            ("make-variable-buffer-local" code nil nil [21206 21258])
-            ("put" code nil nil [21259 21307])
-            ("make-obsolete-variable" code nil nil [21308 21385])
-            ("define-obsolete-variable-alias" code nil nil [21387 21478])
-            ("write-contents-functions" variable nil nil [21479 22366])
-            ("make-variable-buffer-local" code nil nil [22367 22421])
-            ("enable-local-variables" variable (:default-value t) nil [22423 23675])
-            ("enable-dir-local-variables" variable (:default-value t) nil [23677 23898])
-            ("local-enable-local-variables" variable (:default-value t) nil [25261 25738])
-            ("enable-local-eval" variable (:default-value (quote maybe)) nil [25740 26131])
-            ("view-read-only" variable nil nil [26133 26483])
-            ("file-name-history" variable nil nil [26485 26668])
-            ("save-silently" variable nil nil [26670 26825])
-            ("put" code nil nil [26829 26883])
-            ("ange-ftp-completion-hook-function" function (:arguments ("op" "args")) nil [26884 27490])
-            ("declare-function" code nil nil [27492 27564])
-            ("declare-function" code nil nil [27565 27637])
-            ("convert-standard-filename" function (:arguments ("filename")) nil [27639 28795])
-            ("read-directory-name" function (:arguments ("prompt" "dir" "default-dirname" "mustmatch" "initial")) nil [28797 29918])
-            ("pwd" function
-               (:user-visible-flag t
-                :arguments ("insert"))
-                nil [29922 30190])
-            ("cd-path" variable nil nil [30192 30322])
-            ("parse-colon-path" function (:arguments ("search-path")) nil [30324 30943])
-            ("cd-absolute" function (:arguments ("dir")) nil [30945 31850])
-            ("cd" function
-               (:user-visible-flag t
-                :arguments ("dir"))
-                nil [31852 33679])
-            ("directory-files-recursively" function (:arguments ("dir" "regexp" "include-directories")) nil [33681 35076])
-            ("module-file-suffix" variable nil nil [35078 35105])
-            ("load-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [35107 35575])
-            ("locate-file" function (:arguments ("filename" "path" "suffixes" "predicate")) nil [35577 36954])
-            ("locate-file-completion-table" function (:arguments ("dirs" "suffixes" "string" "pred" "action")) nil [36956 39918])
-            ("locate-file-completion" function (:arguments ("string" "path-and-suffixes" "action")) nil [39920 40328])
-            ("locate-dominating-stop-dir-regexp" variable (:default-value (purecopy "\\`\\(?:[\\/][\\/][^\\/]+[\\/]\\|/\\(?:net\\|afs\\|\\.\\.\\.\\)/\\)\\'")) nil [40330 40934])
-            ("locate-dominating-file" function (:arguments ("file" "name")) nil [40936 42294])
-            ("user-emacs-directory-warning" variable (:default-value t) nil [42296 42498])
-            ("locate-user-emacs-file" function (:arguments ("new-name" "old-name")) nil [42500 44186])
-            ("executable-find" function (:arguments ("command")) nil [44189 44497])
-            ("load-library" function
-               (:user-visible-flag t
-                :arguments ("library"))
-                nil [44499 45194])
-            ("file-remote-p" function (:arguments ("file" "identification" "connected")) nil [45196 46948])
-            ("remote-shell-program" variable (:default-value (purecopy (let ((list (quote ("ssh" "remsh" "rcmd" "rsh")))) (while (and list (not (executable-find (car list))) (setq list (cdr list)))) (or (car list) "ssh")))) nil [47247 47966])
-            ("remote-file-name-inhibit-cache" variable (:default-value 10) nil [47968 49187])
-            ("file-local-name" function (:arguments ("file")) nil [49189 49431])
-            ("file-local-copy" function (:arguments ("file")) nil [49433 49822])
-            ("files--name-absolute-system-p" function (:arguments ("file")) nil [49824 50105])
-            ("files--splice-dirname-file" function (:arguments ("dirname" "file")) nil [50107 50886])
-            ("file-truename" function (:arguments ("filename" "counter" "prev-dirs")) nil [50888 55724])
-            ("file-chase-links" function (:arguments ("filename" "limit")) nil [55726 57147])
-            ("file-size-human-readable" function (:arguments ("file-size" "flavor")) nil [57279 58396])
-            ("mounted-file-systems" variable (:default-value (if (memq system-type (quote (windows-nt cygwin))) "^//[^/]+/" "^\\(?:/\\(?:afs/\\|m\\(?:edia/\\|nt\\)\\|\\(?:ne\\|tmp_mn\\)t/\\)\\)")) nil [58398 58829])
-            ("temporary-file-directory" function nil nil [58831 59607])
-            ("make-temp-file" function (:arguments ("prefix" "dir-flag" "suffix" "text")) nil [59609 60662])
-            ("files--make-magic-temp-file" function (:arguments ("absolute-prefix" "dir-flag" "suffix" "text")) nil [60664 61604])
-            ("make-nearby-temp-file" function (:arguments ("prefix" "dir-flag" "suffix")) nil [61606 62443])
-            ("recode-file-name" function
-               (:user-visible-flag t
-                :arguments ("file" "coding" "new-coding" "ok-if-already-exists"))
-                nil [62445 64682])
-            ("confirm-nonexistent-file-or-buffer" variable (:default-value (quote after-completion)) nil [64685 65298])
-            ("confirm-nonexistent-file-or-buffer" function nil nil [65300 65741])
-            ("minibuffer-with-setup-hook" function (:arguments ("fun" "body")) nil [65743 66986])
-            ("find-file-read-args" function (:arguments ("prompt" "mustmatch")) nil [66988 67102])
-            ("find-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [67104 68818])
-            ("find-file-other-window" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [68820 70202])
-            ("find-file-other-frame" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [70204 71580])
-            ("find-file-existing" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [71582 72017])
-            ("find-file--read-only" function (:arguments ("fun" "filename" "wildcards")) nil [72019 72444])
-            ("find-file-read-only" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [72446 72827])
-            ("find-file-read-only-other-window" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [72829 73280])
-            ("find-file-read-only-other-frame" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [73282 73728])
-            ("find-alternate-file-other-window" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [73730 74679])
-            ("kill-buffer-hook" variable nil nil [74740 74980])
-            ("find-alternate-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [74982 78035])
-            ("create-file-buffer" function (:arguments ("filename")) nil [78160 78840])
-            ("generate-new-buffer" function (:arguments ("name")) nil [78842 79047])
-            ("automount-dir-prefix" variable (:default-value (purecopy "^/tmp_mnt/")) nil [79049 79201])
-            ("make-obsolete-variable" code nil nil [79202 79279])
-            ("abbreviated-home-dir" variable nil nil [79281 79455])
-            ("abbreviate-file-name" function (:arguments ("filename")) nil [79457 83497])
-            ("find-buffer-visiting" function (:arguments ("filename" "predicate")) nil [83499 85426])
-            ("find-file-wildcards" variable (:default-value t) nil [85429 85676])
-            ("find-file-suppress-same-file-warnings" variable nil nil [85678 86004])
-            ("large-file-warning-threshold" variable (:default-value 10000000) nil [86006 86285])
-            ("out-of-memory-warning-percentage" variable nil nil [86287 86670])
-            ("abort-if-file-too-large" function (:arguments ("size" "op-type" "filename")) nil [86672 87164])
-            ("warn-maybe-out-of-memory" function (:arguments ("size")) nil [87166 88004])
-            ("files--message" function (:arguments ("format" "args")) nil [88006 88273])
-            ("find-file-noselect" function (:arguments ("filename" "nowarn" "rawfile" "wildcards")) nil [88275 95343])
-            ("find-file-noselect-1" function (:arguments ("buf" "filename" "nowarn" "rawfile" "truename" "number")) nil [95345 97839])
-            ("insert-file-contents-literally" function (:arguments ("filename" "visit" "beg" "end" "replace")) nil [97842 98863])
-            ("insert-file-1" function (:arguments ("filename" "insert-func")) nil [98865 99557])
-            ("insert-file-literally" function (:arguments ("filename")) nil [99559 100042])
-            ("find-file-literally" variable nil nil [100044 100251])
-            ("put" code nil nil [100252 100297])
-            ("find-file-literally" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [100299 101628])
-            ("after-find-file" function (:arguments ("error" "warn" "noauto" "_after-find-file-from-revert-buffer" "nomodes")) nil [101631 104971])
-            ("define-obsolete-function-alias" code nil nil [104973 105048])
-            ("normal-mode" function
-               (:user-visible-flag t
-                :arguments ("find-file"))
-                nil [105050 107025])
-            ("auto-mode-case-fold" variable (:default-value t) nil [107027 107465])
-            ("auto-mode-alist" variable (:default-value (mapcar (lambda (elt) (cons (purecopy (car elt)) (cdr elt))) (\` (("\\.[sx]?html?\\(\\.[a-zA-Z_]+\\)?\\'" . mhtml-mode) ("\\.svgz?\\'" . image-mode) ("\\.svgz?\\'" . xml-mode) ("\\.x[bp]m\\'" . image-mode) ("\\.x[bp]m\\'" . c-mode) ("\\.p[bpgn]m\\'" . image-mode) ("\\.tiff?\\'" . image-mode) ("\\.gif\\'" . image-mode) ("\\.png\\'" . image-mode) ("\\.jpe?g\\'" . image-mode) ("\\.te?xt\\'" . text-mode) ("\\.[tT]e[xX]\\'" . tex-mode) ("\\.ins\\'" . tex-mode) ("\\.ltx\\'" . latex-mode) ("\\.dtx\\'" . doctex-mode) ("\\.org\\'" . org-mode) ("\\.el\\'" . emacs-lisp-mode) ("Project\\.ede\\'" . emacs-lisp-mode) ("\\.\\(scm\\|stk\\|ss\\|sch\\)\\'" . scheme-mode) ("\\.l\\'" . lisp-mode) ("\\.li?sp\\'" . lisp-mode) ("\\.[fF]\\'" . fortran-mode) ("\\.for\\'" . fortran-mode) ("\\.p\\'" . pascal-mode) ("\\.pas\\'" . pascal-mode) ("\\.\\(dpr\\|DPR\\)\\'" . delphi-mode) ("\\.ad[abs]\\'" . ada-mode) ("\\.ad[bs].dg\\'" . ada-mode) ("\\.\\([pP]\\([Llm]\\|erl\\|od\\)\\|al\\)\\'" . perl-mode) ("Imakefile\\'" . makefile-imake-mode) ("Makeppfile\\(?:\\.mk\\)?\\'" . makefile-makepp-mode) ("\\.makepp\\'" . makefile-makepp-mode) (\,@ (if (memq system-type (quote (berkeley-unix darwin))) (quote (("\\.mk\\'" . makefile-bsdmake-mode) ("\\.make\\'" . makefile-bsdmake-mode) ("GNUmakefile\\'" . makefile-gmake-mode) ("[Mm]akefile\\'" . makefile-bsdmake-mode))) (quote (("\\.mk\\'" . makefile-gmake-mode) ("\\.make\\'" . makefile-gmake-mode) ("[Mm]akefile\\'" . makefile-gmake-mode))))) ("\\.am\\'" . makefile-automake-mode) ("\\.texinfo\\'" . texinfo-mode) ("\\.te?xi\\'" . texinfo-mode) ("\\.[sS]\\'" . asm-mode) ("\\.asm\\'" . asm-mode) ("\\.css\\'" . css-mode) ("\\.mixal\\'" . mixal-mode) ("\\.gcov\\'" . compilation-mode) ("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode) ("-gdb\\.gdb" . gdb-script-mode) ("[cC]hange\\.?[lL]og?\\'" . change-log-mode) ("[cC]hange[lL]og[-.][0-9]+\\'" . change-log-mode) ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode) ("\\.scm\\.[0-9]*\\'" . scheme-mode) ("\\.[ckz]?sh\\'\\|\\.shar\\'\\|/\\.z?profile\\'" . sh-mode) ("\\.bash\\'" . sh-mode) ("\\(/\\|\\`\\)\\.\\(bash_\\(profile\\|history\\|log\\(in\\|out\\)\\)\\|z?log\\(in\\|out\\)\\)\\'" . sh-mode) ("\\(/\\|\\`\\)\\.\\(shrc\\|zshrc\\|m?kshrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode) ("\\(/\\|\\`\\)\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode) ("\\.m?spec\\'" . sh-mode) ("\\.m[mes]\\'" . nroff-mode) ("\\.man\\'" . nroff-mode) ("\\.sty\\'" . latex-mode) ("\\.cl[so]\\'" . latex-mode) ("\\.bbl\\'" . latex-mode) ("\\.bib\\'" . bibtex-mode) ("\\.bst\\'" . bibtex-style-mode) ("\\.sql\\'" . sql-mode) ("\\.m[4c]\\'" . m4-mode) ("\\.mf\\'" . metafont-mode) ("\\.mp\\'" . metapost-mode) ("\\.vhdl?\\'" . vhdl-mode) ("\\.article\\'" . text-mode) ("\\.letter\\'" . text-mode) ("\\.i?tcl\\'" . tcl-mode) ("\\.exp\\'" . tcl-mode) ("\\.itk\\'" . tcl-mode) ("\\.icn\\'" . icon-mode) ("\\.sim\\'" . simula-mode) ("\\.mss\\'" . scribe-mode) ("\\.f9[05]\\'" . f90-mode) ("\\.f0[38]\\'" . f90-mode) ("\\.indent\\.pro\\'" . fundamental-mode) ("\\.\\(pro\\|PRO\\)\\'" . idlwave-mode) ("\\.srt\\'" . srecode-template-mode) ("\\.prolog\\'" . prolog-mode) ("\\.tar\\'" . tar-mode) ("\\.\\(arc\\|zip\\|lzh\\|lha\\|zoo\\|[jew]ar\\|xpi\\|rar\\|cbr\\|7z\\|ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|CBR\\|7Z\\)\\'" . archive-mode) ("\\.oxt\\'" . archive-mode) ("\\.\\(deb\\|[oi]pk\\)\\'" . archive-mode) ("\\`/tmp/Re" . text-mode) ("/Message[0-9]*\\'" . text-mode) ("\\`/tmp/fol/" . text-mode) ("\\.oak\\'" . scheme-mode) ("\\.sgml?\\'" . sgml-mode) ("\\.x[ms]l\\'" . xml-mode) ("\\.dbk\\'" . xml-mode) ("\\.dtd\\'" . sgml-mode) ("\\.ds\\(ss\\)?l\\'" . dsssl-mode) ("\\.jsm?\\'" . javascript-mode) ("\\.json\\'" . javascript-mode) ("\\.jsx\\'" . js-jsx-mode) ("\\.[ds]?vh?\\'" . verilog-mode) ("\\.by\\'" . bovine-grammar-mode) ("\\.wy\\'" . wisent-grammar-mode) ("[:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode) ("\\`\\..*emacs\\'" . emacs-lisp-mode) ("[:/]_emacs\\'" . emacs-lisp-mode) ("/crontab\\.X*[0-9]+\\'" . shell-script-mode) ("\\.ml\\'" . lisp-mode) ("\\.ld[si]?\\'" . ld-script-mode) ("ld\\.?script\\'" . ld-script-mode) ("\\.xs\\'" . c-mode) ("\\.x[abdsru]?[cnw]?\\'" . ld-script-mode) ("\\.zone\\'" . dns-mode) ("\\.soa\\'" . dns-mode) ("\\.asd\\'" . lisp-mode) ("\\.\\(asn\\|mib\\|smi\\)\\'" . snmp-mode) ("\\.\\(as\\|mi\\|sm\\)2\\'" . snmpv2-mode) ("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode) ("\\.\\(dif\\|pat\\)\\'" . diff-mode) ("\\.[eE]?[pP][sS]\\'" . ps-mode) ("\\.\\(?:PDF\\|DVI\\|OD[FGPST]\\|DOCX?\\|XLSX?\\|PPTX?\\|pdf\\|djvu\\|dvi\\|od[fgpst]\\|docx?\\|xlsx?\\|pptx?\\)\\'" . doc-view-mode-maybe) ("configure\\.\\(ac\\|in\\)\\'" . autoconf-mode) ("\\.s\\(v\\|iv\\|ieve\\)\\'" . sieve-mode) ("BROWSE\\'" . ebrowse-tree-mode) ("\\.ebrowse\\'" . ebrowse-tree-mode) ("#\\*mail\\*" . mail-mode) ("\\.g\\'" . antlr-mode) ("\\.mod\\'" . m2-mode) ("\\.ses\\'" . ses-mode) ("\\.docbook\\'" . sgml-mode) ("\\.com\\'" . dcl-mode) ("/config\\.\\(?:bat\\|log\\)\\'" . fundamental-mode) ("\\.\\(?:[iI][nN][iI]\\|[lL][sS][tT]\\|[rR][eE][gG]\\|[sS][yY][sS]\\)\\'" . conf-mode) ("\\.la\\'" . conf-unix-mode) ("\\.ppd\\'" . conf-ppd-mode) ("java.+\\.conf\\'" . conf-javaprop-mode) ("\\.properties\\(?:\\.[a-zA-Z0-9._-]+\\)?\\'" . conf-javaprop-mode) ("\\.toml\\'" . conf-toml-mode) ("\\.desktop\\'" . conf-desktop-mode) ("\\`/etc/\\(?:DIR_COLORS\\|ethers\\|.?fstab\\|.*hosts\\|lesskey\\|login\\.?de\\(?:fs\\|vperm\\)\\|magic\\|mtab\\|pam\\.d/.*\\|permissions\\(?:\\.d/.+\\)?\\|protocols\\|rpc\\|services\\)\\'" . conf-space-mode) ("\\`/etc/\\(?:acpid?/.+\\|aliases\\(?:\\.d/.+\\)?\\|default/.+\\|group-?\\|hosts\\..+\\|inittab\\|ksysguarddrc\\|opera6rc\\|passwd-?\\|shadow-?\\|sysconfig/.+\\)\\'" . conf-mode) ("[cC]hange[lL]og[-.][-0-9a-z]+\\'" . change-log-mode) ("/\\.?\\(?:gitconfig\\|gnokiirc\\|hgrc\\|kde.*rc\\|mime\\.types\\|wgetrc\\)\\'" . conf-mode) ("/\\.\\(?:enigma\\|gltron\\|gtk\\|hxplayer\\|net\\|neverball\\|qt/.+\\|realplayer\\|scummvm\\|sversion\\|sylpheed/.+\\|xmp\\)rc\\'" . conf-mode) ("/\\.\\(?:gdbtkinit\\|grip\\|orbital/.+txt\\|rhosts\\|tuxracer/options\\)\\'" . conf-mode) ("/\\.?X\\(?:default\\|resource\\|re\\)s\\>" . conf-xdefaults-mode) ("/X11.+app-defaults/\\|\\.ad\\'" . conf-xdefaults-mode) ("/X11.+locale/.+/Compose\\'" . conf-colon-mode) ("/X11.+locale/compose\\.dir\\'" . conf-javaprop-mode) ("\\.~?[0-9]+\\.[0-9][-.0-9]*~?\\'" nil t) ("\\.\\(?:orig\\|in\\|[bB][aA][kK]\\)\\'" nil t) ("[/.]c\\(?:on\\)?f\\(?:i?g\\)?\\(?:\\.[a-zA-Z0-9._-]+\\)?\\'" . conf-mode-maybe) ("\\.[1-9]\\'" . nroff-mode))))) nil [107467 118991])
-            ("put" code nil nil [118992 119038])
-            ("conf-mode-maybe" function nil nil [119040 119290])
-            ("interpreter-mode-alist" variable (:default-value (mapcar (lambda (l) (cons (purecopy (car l)) (cdr l))) (quote (("\\(mini\\)?perl5?" . perl-mode) ("wishx?" . tcl-mode) ("tcl\\(sh\\)?" . tcl-mode) ("expect" . tcl-mode) ("octave" . octave-mode) ("scm" . scheme-mode) ("[acjkwz]sh" . sh-mode) ("r?bash2?" . sh-mode) ("dash" . sh-mode) ("mksh" . sh-mode) ("\\(dt\\|pd\\|w\\)ksh" . sh-mode) ("es" . sh-mode) ("i?tcsh" . sh-mode) ("oash" . sh-mode) ("rc" . sh-mode) ("rpm" . sh-mode) ("sh5?" . sh-mode) ("tail" . text-mode) ("more" . text-mode) ("less" . text-mode) ("pg" . text-mode) ("make" . makefile-gmake-mode) ("guile" . scheme-mode) ("clisp" . lisp-mode) ("emacs" . emacs-lisp-mode))))) nil [119292 120687])
-            ("define-obsolete-variable-alias" code nil nil [120689 120802])
-            ("inhibit-local-variables-regexps" variable (:default-value (mapcar (quote purecopy) (quote ("\\.tar\\'" "\\.t[bg]z\\'" "\\.arc\\'" "\\.zip\\'" "\\.lzh\\'" "\\.lha\\'" "\\.zoo\\'" "\\.[jew]ar\\'" "\\.xpi\\'" "\\.rar\\'" "\\.7z\\'" "\\.sx[dmicw]\\'" "\\.odt\\'" "\\.diff\\'" "\\.patch\\'" "\\.tiff?\\'" "\\.gif\\'" "\\.png\\'" "\\.jpe?g\\'")))) nil [121001 121861])
-            ("define-obsolete-variable-alias" code nil nil [121863 121973])
-            ("inhibit-local-variables-suffixes" variable nil nil [121975 122251])
-            ("inhibit-local-variables-ignore-case" variable (:default-value t) nil [122323 122429])
-            ("inhibit-local-variables-p" function nil nil [122431 123241])
-            ("auto-mode-interpreter-regexp" variable (:default-value (purecopy "#![ 	]?\\([^ 	



-]*/bin/env[ 	]\\)?\\([^ 	



-]+\\)")) nil [123243 123761])
-            ("magic-mode-alist" variable nil nil [123763 124297])
-            ("put" code nil nil [124298 124345])
-            ("magic-fallback-mode-alist" variable (:default-value (purecopy (\` ((image-type-auto-detected-p . image-mode) ("\\(PK00\\)?[P]K" . archive-mode) ((\, (let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)") (comment-re (concat "\\(?:!--" incomment-re "*-->[ 	




-]*<\\)"))) (concat "\\(?:<\\?xml[ 	




-]+[^>]*>\\)?[ 	




-]*<" comment-re "*" "\\(?:!DOCTYPE[ 	




-]+[^>]*>[ 	




-]*<[ 	




-]*" comment-re "*\\)?" "[Hh][Tt][Mm][Ll]"))) . mhtml-mode) ("<!DOCTYPE[ 	




-]+[Hh][Tt][Mm][Ll]" . mhtml-mode) ("<\\?xml " . xml-mode) ((\, (let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)") (comment-re (concat "\\(?:!--" incomment-re "*-->[ 	




-]*<\\)"))) (concat "[ 	




-]*<" comment-re "*!DOCTYPE "))) . sgml-mode) ("%!PS" . ps-mode) ("# xmcd " . conf-unix-mode))))) nil [124347 125890])
-            ("put" code nil nil [125891 125947])
-            ("magic-mode-regexp-match-limit" variable (:default-value 4000) nil [125949 126091])
-            ("set-auto-mode" function (:arguments ("keep-mode-if-same")) nil [126093 133464])
-            ("set-auto-mode-0" function (:arguments ("mode" "keep-mode-if-same")) nil [133717 134124])
-            ("file-auto-mode-skip" variable (:default-value "^\\(#!\\|'\\\\\"\\)") nil [134126 134392])
-            ("set-auto-mode-1" function nil nil [134394 135899])
-            ("ignored-local-variables" variable (:default-value (quote (ignored-local-variables safe-local-variable-values file-local-variables-alist dir-local-variables-alist))) nil [135937 136143])
-            ("put" code nil nil [136144 136198])
-            ("hack-local-variables-hook" variable nil nil [136200 136433])
-            ("safe-local-variable-values" variable nil nil [136435 136695])
-            ("safe-local-eval-forms" variable (:default-value (quote ((add-hook (quote write-file-hooks) (quote time-stamp)) (add-hook (quote write-file-functions) (quote time-stamp)) (add-hook (quote before-save-hook) (quote time-stamp) nil t) (add-hook (quote before-save-hook) (quote delete-trailing-whitespace) nil t)))) nil [136697 137359])
-            ("mapc" code nil nil [137387 138004])
-            ("dolist" code nil nil [138646 139334])
-            ("put" code nil nil [139336 139450])
-            ("put" code nil nil [139452 139498])
-            ("file-local-variables-alist" variable nil nil [139500 139855])
-            ("make-variable-buffer-local" code nil nil [139856 139912])
-            ("put" code nil nil [139913 139965])
-            ("dir-local-variables-alist" variable nil nil [139967 140349])
-            ("make-variable-buffer-local" code nil nil [140350 140405])
-            ("before-hack-local-variables-hook" variable nil nil [140407 140825])
-            ("hack-local-variables-confirm" function (:arguments ("all-vars" "unsafe-vars" "risky-vars" "dir-name")) nil [140827 143697])
-            ("hack-local-variable-regexp" variable
-               (:constant-flag t
-                :default-value "[ 	]*\\([^][;\"'?()\\ 	



-]+\\)[ 	]*:[ 	]*")
-                nil [143699 143786])
-            ("hack-local-variables-prop-line" function (:arguments ("handle-mode")) nil [143788 147066])
-            ("hack-local-variables-filter" function (:arguments ("variables" "dir-name")) nil [147068 149554])
-            ("hack-local-variables--warned-lexical" variable nil nil [149615 149664])
-            ("hack-local-variables" function (:arguments ("handle-mode")) nil [149666 156209])
-            ("hack-local-variables-apply" function nil nil [156211 157012])
-            ("safe-local-variable-p" function (:arguments ("sym" "val")) nil [157014 157702])
-            ("risky-local-variable-p" function (:arguments ("sym" "_ignored")) nil [157704 158607])
-            ("hack-one-local-variable-quotep" function (:arguments ("exp")) nil [158609 158713])
-            ("hack-one-local-variable-constantp" function (:arguments ("exp")) nil [158715 158903])
-            ("hack-one-local-variable-eval-safep" function (:arguments ("exp")) nil [158905 160725])
-            ("hack-one-local-variable--obsolete" function (:arguments ("var")) nil [160727 161159])
-            ("hack-one-local-variable" function (:arguments ("var" "val")) nil [161161 162074])
-            ("dir-locals-class-alist" variable (:default-value (quote nil)) nil [162140 162255])
-            ("dir-locals-directory-cache" variable (:default-value (quote nil)) nil [162257 162833])
-            ("dir-locals-get-class-variables" function (:arguments ("class")) nil [162835 162968])
-            ("dir-locals-collect-mode-variables" function (:arguments ("mode-variables" "variables")) nil [162970 163615])
-            ("dir-locals-collect-variables" function (:arguments ("class-variables" "root" "variables")) nil [163617 165788])
-            ("dir-locals-set-directory-class" function (:arguments ("directory" "class" "mtime")) nil [165790 166554])
-            ("dir-locals-set-class-variables" function (:arguments ("class" "variables")) nil [166556 167931])
-            ("dir-locals-file" variable
-               (:constant-flag t
-                :default-value ".dir-locals.el")
-                nil [167933 168631])
-            ("dir-locals--all-files" function (:arguments ("directory")) nil [168633 169563])
-            ("dir-locals-find-file" function (:arguments ("file")) nil [169565 172692])
-            ("dir-locals-read-from-dir" function (:arguments ("dir")) nil [172694 173998])
-            ("define-obsolete-function-alias" code nil nil [174000 174094])
-            ("enable-remote-dir-locals" variable nil nil [174096 174262])
-            ("hack-dir-local-variables--warned-coding" variable nil nil [174264 174316])
-            ("hack-dir-local-variables" function nil nil [174318 175935])
-            ("hack-dir-local-variables-non-file-buffer" function nil nil [175937 176243])
-            ("change-major-mode-with-file-name" variable (:default-value t) nil [176247 176682])
-            ("set-visited-file-name" function
-               (:user-visible-flag t
-                :arguments ("filename" "no-query" "along-with-file"))
-                nil [176684 181773])
-            ("write-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "confirm"))
-                nil [181775 183815])
-            ("file-extended-attributes" function (:arguments ("filename")) nil [183818 184132])
-            ("set-file-extended-attributes" function (:arguments ("filename" "attributes")) nil [184134 184736])
-            ("backup-buffer" function nil nil [184739 188362])
-            ("backup-buffer-copy" function (:arguments ("from-name" "to-name" "modes" "extended-attributes")) nil [188364 189465])
-            ("file-name-version-regexp" variable (:default-value "\\(?:~\\|\\.~[-[:alnum:]:#@^._]+\\(?:~[[:digit:]]+\\)?~\\)") nil [189467 189760])
-            ("file-name-sans-versions" function (:arguments ("name" "keep-backup-version")) nil [189762 190461])
-            ("file-ownership-preserved-p" function (:arguments ("file" "group")) nil [190463 192270])
-            ("file-name-sans-extension" function (:arguments ("filename")) nil [192272 192997])
-            ("file-name-extension" function (:arguments ("filename" "period")) nil [192999 193928])
-            ("file-name-base" function (:arguments ("filename")) nil [193930 194174])
-            ("make-backup-file-name-function" variable (:default-value (function make-backup-file-name--default-function)) nil [194176 194924])
-            ("backup-directory-alist" variable nil nil [194926 195963])
-            ("normal-backup-enable-predicate" function (:arguments ("name")) nil [195965 197261])
-            ("make-backup-file-name" function (:arguments ("file")) nil [197263 197576])
-            ("make-backup-file-name--default-function" function (:arguments ("file")) nil [197578 198328])
-            ("make-backup-file-name-1" function (:arguments ("file")) nil [198330 200930])
-            ("backup-file-name-p" function (:arguments ("file")) nil [200932 201193])
-            ("backup-extract-version-start" variable nil nil [201195 201232])
-            ("backup-extract-version" function (:arguments ("fn")) nil [201407 201859])
-            ("find-backup-file-name" function (:arguments ("fn")) nil [201861 204000])
-            ("file-nlinks" function (:arguments ("filename")) nil [204002 204119])
-            ("file-relative-name" function (:arguments ("filename" "directory")) nil [204121 206876])
-            ("save-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [206879 209697])
-            ("delete-auto-save-file-if-necessary" function (:arguments ("force")) nil [209699 210270])
-            ("auto-save-hook" variable nil nil [210272 210344])
-            ("before-save-hook" variable nil nil [210346 210544])
-            ("after-save-hook" variable nil nil [210546 210765])
-            ("save-buffer-coding-system" variable nil nil [210767 211139])
-            ("make-variable-buffer-local" code nil nil [211141 211196])
-            ("put" code nil nil [211197 211248])
-            ("basic-save-buffer" function
-               (:user-visible-flag t
-                :arguments ("called-interactively"))
-                nil [211250 216094])
-            ("basic-save-buffer-1" function nil nil [216376 216679])
-            ("basic-save-buffer-2" function nil nil [216768 220929])
-            ("declare-function" code nil nil [220931 221017])
-            ("save-some-buffers-action-alist" variable (:default-value (\` ((18 (\, (lambda (buf) (if (not enable-recursive-minibuffers) (progn (display-buffer buf) (setq other-window-scroll-buffer buf)) (view-buffer buf (lambda (_) (exit-recursive-edit))) (recursive-edit)) nil)) (\, (purecopy "view this buffer"))) (100 (\, (lambda (buf) (if (null (buffer-file-name buf)) (message "Not applicable: no file") (require (quote diff)) (let ((diffbuf (diff-no-select (buffer-file-name buf) buf nil (quote noasync)))) (if (not enable-recursive-minibuffers) (progn (display-buffer diffbuf) (setq other-window-scroll-buffer diffbuf)) (view-buffer diffbuf (lambda (_) (exit-recursive-edit))) (recursive-edit)))) nil)) (\, (purecopy "view changes in this buffer")))))) nil [221019 222185])
-            ("put" code nil nil [222186 222247])
-            ("buffer-save-without-query" variable nil nil [222249 222365])
-            ("make-variable-buffer-local" code nil nil [222366 222421])
-            ("save-some-buffers-default-predicate" variable nil nil [222423 222835])
-            ("save-some-buffers" function
-               (:user-visible-flag t
-                :arguments ("arg" "pred"))
-                nil [222837 226576])
-            ("clear-visited-file-modtime" function nil nil [226579 226760])
-            ("not-modified" function (:arguments ("arg")) nil [226762 227285])
-            ("toggle-read-only" function (:arguments ("arg" "interactive")) nil [227287 227573])
-            ("insert-file" function (:arguments ("filename")) nil [227575 228023])
-            ("append-to-file" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "filename"))
-                nil [228025 228683])
-            ("file-newest-backup" function (:arguments ("filename")) nil [228685 229608])
-            ("rename-uniquely" function (:user-visible-flag t) nil [229610 230626])
-            ("files--ensure-directory" function (:arguments ("dir")) nil [230628 230879])
-            ("make-directory" function
-               (:user-visible-flag t
-                :arguments ("dir" "parents"))
-                nil [230881 232428])
-            ("directory-files-no-dot-files-regexp" variable
-               (:constant-flag t
-                :default-value "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*")
-                nil [232430 232576])
-            ("files--force" function (:arguments ("no-such" "fn" "args")) nil [232578 232926])
-            ("delete-directory" function
-               (:user-visible-flag t
-                :arguments ("directory" "recursive" "trash"))
-                nil [232928 235691])
-            ("file-equal-p" function (:arguments ("file1" "file2")) nil [235693 236253])
-            ("file-in-directory-p" function (:arguments ("file" "dir")) nil [236255 237373])
-            ("copy-directory" function
-               (:user-visible-flag t
-                :arguments ("directory" "newname" "keep-time" "parents" "copy-contents"))
-                nil [237375 240495])
-            ("prune-directory-list" function (:arguments ("dirs" "keep" "reject")) nil [240543 241105])
-            ("put" code nil nil [241109 241157])
-            ("revert-buffer-function" variable (:default-value (function revert-buffer--default)) nil [241158 241610])
-            ("put" code nil nil [241612 241681])
-            ("revert-buffer-insert-file-contents-function" variable (:default-value (function revert-buffer-insert-file-contents--default-function)) nil [241682 242154])
-            ("buffer-stale--default-function" function (:arguments ("_noconfirm")) nil [242156 242718])
-            ("buffer-stale-function" variable (:default-value (function buffer-stale--default-function)) nil [242720 243635])
-            ("before-revert-hook" variable nil nil [243637 243840])
-            ("after-revert-hook" variable nil nil [243842 244197])
-            ("revert-buffer-in-progress-p" variable nil nil [244199 244313])
-            ("revert-buffer-internal-hook" variable nil nil [244315 244351])
-            ("revert-buffer-preserve-modes" variable nil nil [244541 244578])
-            ("revert-buffer" function
-               (:user-visible-flag t
-                :arguments ("ignore-auto" "noconfirm" "preserve-modes"))
-                nil [244580 246792])
-            ("revert-buffer--default" function (:arguments ("ignore-auto" "noconfirm")) nil [246794 250149])
-            ("revert-buffer-insert-file-contents--default-function" function (:arguments ("file-name" "auto-save-p")) nil [250151 252351])
-            ("recover-this-file" function (:user-visible-flag t) nil [252353 252584])
-            ("recover-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [252586 254669])
-            ("recover-session" function (:user-visible-flag t) nil [254671 256403])
-            ("recover-session-finish" function (:user-visible-flag t) nil [256405 258808])
-            ("kill-buffer-ask" function (:arguments ("buffer")) nil [258810 259061])
-            ("kill-some-buffers" function
-               (:user-visible-flag t
-                :arguments ("list"))
-                nil [259063 259666])
-            ("kill-matching-buffers" function
-               (:user-visible-flag t
-                :arguments ("regexp" "internal-too" "no-ask"))
-                nil [259668 260325])
-            ("rename-auto-save-file" function nil nil [260329 260893])
-            ("make-auto-save-file-name" function nil nil [260895 265066])
-            ("auto-save-file-name-p" function (:arguments ("filename")) nil [265068 265296])
-            ("wildcard-to-regexp" function (:arguments ("wildcard")) nil [265299 267482])
-            ("list-directory-brief-switches" variable (:default-value (purecopy "-CF")) nil [267485 267646])
-            ("list-directory-verbose-switches" variable (:default-value (purecopy "-l")) nil [267648 267814])
-            ("file-expand-wildcards" function (:arguments ("pattern" "full")) nil [267816 269422])
-            ("files" package nil nil [269496 269532])
-            ("list-directory" function
-               (:user-visible-flag t
-                :arguments ("dirname" "verbose"))
-                nil [269534 270880])
-            ("shell-quote-wildcard-pattern" function (:arguments ("pattern")) nil [270882 272720])
-            ("insert-directory-program" variable (:default-value (purecopy "ls")) nil [272723 272850])
-            ("directory-free-space-program" variable (:default-value (purecopy "df")) nil [272852 273389])
-            ("directory-free-space-args" variable (:default-value (purecopy (if (eq system-type (quote darwin)) "-k" "-Pk"))) nil [273391 273578])
-            ("get-free-disk-space" function (:arguments ("dir")) nil [273580 275350])
-            ("directory-listing-before-filename-regexp" variable (:default-value (let* ((l "\\([A-Za-z]\\|[^�-]\\)") (l-or-quote "\\([A-Za-z']\\|[^�-]\\)") (month (concat l-or-quote l-or-quote "+\\.?")) (s " ") (yyyy "[0-9][0-9][0-9][0-9]") (dd "[ 0-3][0-9]") (HH:MM "[ 0-2][0-9][:.][0-5][0-9]") (seconds "[0-6][0-9]\\([.,][0-9]+\\)?") (zone "[-+][0-2][0-9][0-5][0-9]") (iso-mm-dd "[01][0-9]-[0-3][0-9]") (iso-time (concat HH:MM "\\(:" seconds "\\( ?" zone "\\)?\\)?")) (iso (concat "\\(\\(" yyyy "-\\)?" iso-mm-dd "[ T]" iso-time "\\|" yyyy "-" iso-mm-dd "\\)")) (western (concat "\\(" month s "+" dd "\\|" dd "\\.?" s month "\\)" s "+" "\\(" HH:MM "\\|" yyyy "\\)")) (western-comma (concat month s "+" dd "," s "+" yyyy)) (mm "[ 0-1]?[0-9]") (east-asian (concat "\\(" mm l "?" s dd l "?" s "+" "\\|" dd s mm s "+" "\\)" "\\(" HH:MM "\\|" yyyy l "?" "\\)"))) (purecopy (concat "\\([0-9][BkKMGTPEZY]? " iso "\\|.*[0-9][BkKMGTPEZY]? " "\\(" western "\\|" western-comma "\\|" east-asian "\\)" "\\) +")))) nil [275422 277811])
-            ("insert-directory-ls-version" variable (:default-value (quote unknown)) nil [277813 277858])
-            ("insert-directory-wildcard-in-dir-p" function (:arguments ("dir")) nil [277860 278675])
-            ("insert-directory-clean" function (:arguments ("beg" "switches")) nil [278677 280688])
-            ("insert-directory" function (:arguments ("file" "switches" "wildcard" "full-directory-p")) nil [281762 290518])
-            ("insert-directory-adj-pos" function (:arguments ("pos" "error-lines")) nil [290520 291086])
-            ("insert-directory-safely" function (:arguments ("file" "switches" "wildcard" "full-directory-p")) nil [291088 291572])
-            ("kill-emacs-query-functions" variable nil nil [291574 291937])
-            ("confirm-kill-emacs" variable nil nil [291939 292379])
-            ("confirm-kill-processes" variable (:default-value t) nil [292381 292744])
-            ("save-buffers-kill-emacs" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [292746 295037])
-            ("save-buffers-kill-terminal" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [295039 295559])
-            ("setq" code nil nil [295669 295790])
-            ("file-name-non-special" function (:arguments ("operation" "arguments")) nil [295991 299678])
-            ("file-name-quoted-p" function (:arguments ("name")) nil [299680 299872])
-            ("file-name-quote" function (:arguments ("name")) nil [299874 300195])
-            ("file-name-unquote" function (:arguments ("name")) nil [300197 300577])
-            ("file-modes-char-to-who" function (:arguments ("char")) nil [300620 301087])
-            ("file-modes-char-to-right" function (:arguments ("char" "from")) nil [301089 301938])
-            ("file-modes-rights-to-number" function (:arguments ("rights" "who-mask" "from")) nil [301940 303094])
-            ("file-modes-symbolic-to-number" function (:arguments ("modes" "from")) nil [303096 304179])
-            ("read-file-modes" function (:arguments ("prompt" "orig-file")) nil [304181 305248])
-            ("define-obsolete-variable-alias" code nil nil [305250 305332])
-            ("trash-directory" variable nil nil [305356 305759])
-            ("trash--hexify-table" variable nil nil [305761 305789])
-            ("declare-function" code nil nil [305791 305857])
-            ("move-file-to-trash" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [305859 310853])
-            ("file-attribute-type" function (:arguments ("attributes")) nil [310855 311071])
-            ("file-attribute-link-number" function (:arguments ("attributes")) nil [311073 311220])
-            ("file-attribute-user-id" function (:arguments ("attributes")) nil [311222 311489])
-            ("file-attribute-group-id" function (:arguments ("attributes")) nil [311491 311759])
-            ("file-attribute-access-time" function (:arguments ("attributes")) nil [311761 311984])
-            ("file-attribute-modification-time" function (:arguments ("attributes")) nil [311986 312278])
-            ("file-attribute-status-change-time" function (:arguments ("attributes")) nil [312280 312618])
-            ("file-attribute-size" function (:arguments ("attributes")) nil [312620 312826])
-            ("file-attribute-modes" function (:arguments ("attributes")) nil [312828 313012])
-            ("file-attribute-inode-number" function (:arguments ("attributes")) nil [313014 313455])
-            ("file-attribute-device-number" function (:arguments ("attributes")) nil [313457 313912])
-            ("file-attribute-collect" function (:arguments ("attributes" "attr-names")) nil [313914 314769])
-            ("define-key" code nil nil [314772 314812])
-            ("define-key" code nil nil [314813 314863])
-            ("define-key" code nil nil [314864 314914])
-            ("define-key" code nil nil [314915 314957])
-            ("define-key" code nil nil [314958 315003])
-            ("define-key" code nil nil [315004 315045])
-            ("define-key" code nil nil [315046 315085])
-            ("define-key" code nil nil [315086 315124])
-            ("define-key" code nil nil [315125 315170])
-            ("define-key" code nil nil [315171 315228])
-            ("define-key" code nil nil [315229 315274])
-            ("define-key" code nil nil [315276 315328])
-            ("define-key" code nil nil [315329 315391])
-            ("define-key" code nil nil [315392 315447])
-            ("define-key" code nil nil [315448 315507])
-            ("define-key" code nil nil [315508 315555])
-            ("define-key" code nil nil [315557 315615])
-            ("define-key" code nil nil [315616 315667])
-            ("define-key" code nil nil [315668 315722])
-            ("define-key" code nil nil [315723 315784])
-            ("define-key" code nil nil [315785 315844]))          
-      :file "files.el"
-      :pointmax 315869
-      :fsize 315868
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax '((close-paren 1179 . 1180) (symbol 1119 . 1136) (open-paren 1118 . 1119)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("describe-buffer-case-table" function (:user-visible-flag t) nil [1239 2285])
-            ("case-table-get-table" function (:arguments ("case-table" "table")) nil [2287 2983])
-            ("get-upcase-table" function (:arguments ("case-table")) nil [2985 3105])
-            ("make-obsolete" code nil nil [3106 3168])
-            ("copy-case-table" function (:arguments ("case-table")) nil [3170 3585])
-            ("set-case-syntax-delims" function (:arguments ("l" "r" "table")) nil [3587 4421])
-            ("set-case-syntax-pair" function (:arguments ("uc" "lc" "table")) nil [4423 5201])
-            ("set-upcase-syntax" function (:arguments ("uc" "lc" "table")) nil [5203 5804])
-            ("set-downcase-syntax" function (:arguments ("uc" "lc" "table")) nil [5806 6411])
-            ("set-case-syntax" function (:arguments ("c" "syntax" "table")) nil [6413 7061])
-            ("case-table" package nil nil [7063 7084]))          
-      :file "case-table.el"
-      :pointmax 7114
-      :fsize 7113
-      :lastmodtime '(23525 29503 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("selection-coding-system" variable nil nil [1752 3132])
-            ("next-selection-coding-system" variable nil nil [3134 3495])
-            ("define-obsolete-function-alias" code nil nil [3532 3611])
-            ("select-enable-clipboard" variable (:default-value t) nil [3613 3942])
-            ("define-obsolete-variable-alias" code nil nil [3943 4036])
-            ("select-enable-primary" variable nil nil [4038 4310])
-            ("define-obsolete-variable-alias" code nil nil [4311 4400])
-            ("gui--last-selected-text-clipboard" variable nil nil [4727 4825])
-            ("gui--last-selected-text-primary" variable nil nil [4826 4920])
-            ("gui-select-text" function (:arguments ("text")) nil [4922 5653])
-            ("define-obsolete-function-alias" code nil nil [5654 5725])
-            ("x-select-request-type" variable nil nil [5727 6437])
-            ("gui--selection-value-internal" function (:arguments ("type")) nil [6693 7348])
-            ("gui-selection-value" function nil nil [7350 9426])
-            ("define-obsolete-function-alias" code nil nil [9428 9507])
-            ("x-get-clipboard" function nil nil [9509 9673])
-            ("gui-get-primary-selection" function nil nil [9675 10172])
-            ("define-obsolete-function-alias" code nil nil [10173 10264])
-            ("cl-defgeneric" code nil nil [10322 10634])
-            ("cl-defgeneric" code nil nil [10636 11174])
-            ("cl-defgeneric" code nil nil [11176 11507])
-            ("cl-defgeneric" code nil nil [11509 11832])
-            ("gui-get-selection" function (:arguments ("type" "data-type")) nil [11834 13584])
-            ("define-obsolete-function-alias" code nil nil [13585 13660])
-            ("gui-set-selection" function
-               (:user-visible-flag t
-                :arguments ("type" "data"))
-                nil [13662 15392])
-            ("define-obsolete-function-alias" code nil nil [15393 15468])
-            ("gui--valid-simple-selection-p" function (:arguments ("data")) nil [15470 15920])
-            ("xselect--selection-bounds" function (:arguments ("value")) nil [16116 16910])
-            ("xselect--int-to-cons" function (:arguments ("n")) nil [16912 16982])
-            ("xselect--encode-string" function (:arguments ("type" "str" "can-modify")) nil [16984 19567])
-            ("xselect-convert-to-string" function (:arguments ("_selection" "type" "value")) nil [19569 19869])
-            ("xselect-convert-to-length" function (:arguments ("_selection" "_type" "value")) nil [19871 20130])
-            ("xselect-convert-to-targets" function (:arguments ("_selection" "_type" "_value")) nil [20132 20645])
-            ("xselect-convert-to-delete" function (:arguments ("selection" "_type" "_value")) nil [20647 20991])
-            ("xselect-convert-to-filename" function (:arguments ("_selection" "_type" "value")) nil [20993 21177])
-            ("xselect-convert-to-charpos" function (:arguments ("_selection" "_type" "value")) nil [21179 21479])
-            ("xselect-convert-to-lineno" function (:arguments ("_selection" "_type" "value")) nil [21481 21840])
-            ("xselect-convert-to-colno" function (:arguments ("_selection" "_type" "value")) nil [21842 22232])
-            ("xselect-convert-to-os" function (:arguments ("_selection" "_type" "_size")) nil [22234 22347])
-            ("xselect-convert-to-host" function (:arguments ("_selection" "_type" "_size")) nil [22349 22452])
-            ("xselect-convert-to-user" function (:arguments ("_selection" "_type" "_size")) nil [22454 22560])
-            ("xselect-convert-to-class" function (:arguments ("_selection" "_type" "_size")) nil [22562 22705])
-            ("xselect-convert-to-name" function (:arguments ("_selection" "_type" "_size")) nil [22841 22982])
-            ("xselect-convert-to-integer" function (:arguments ("_selection" "_type" "value")) nil [22984 23104])
-            ("xselect-convert-to-atom" function (:arguments ("_selection" "_type" "value")) nil [23106 23192])
-            ("xselect-convert-to-identity" function (:arguments ("_selection" "_type" "value")) nil [23194 23289])
-            ("xselect-convert-to-save-targets" function (:arguments ("selection" "_type" "_value")) nil [23409 23518])
-            ("setq" code nil nil [23520 24371])
-            ("select" package nil nil [24373 24390]))          
-      :file "select.el"
-      :pointmax 24416
-      :fsize 24415
-      :lastmodtime '(23525 29517 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("put" code nil nil [1006 1052])
-            ("make-display-table" function nil nil [1069 1176])
-            ("or" code nil nil [1178 1260])
-            ("put" code nil nil [1330 1369])
-            ("put" code nil nil [1370 1403])
-            ("put" code nil nil [1404 1439])
-            ("put" code nil nil [1440 1476])
-            ("put" code nil nil [1477 1523])
-            ("put" code nil nil [1524 1568])
-            ("display-table-slot" function (:arguments ("display-table" "slot")) nil [1585 2078])
-            ("set-display-table-slot" function (:arguments ("display-table" "slot" "value")) nil [2095 2609])
-            ("describe-display-table" function (:arguments ("dt")) nil [2626 3545])
-            ("display-table-print-array" function (:arguments ("desc")) nil [3547 3946])
-            ("describe-current-display-table" function (:user-visible-flag t) nil [3963 4285])
-            ("standard-display-8bit" function (:arguments ("l" "h")) nil [4302 5132])
-            ("standard-display-default" function (:arguments ("l" "h")) nil [5149 5462])
-            ("standard-display-ascii" function (:arguments ("c" "s")) nil [5657 5876])
-            ("standard-display-g1" function (:arguments ("c" "sc")) nil [5893 6386])
-            ("standard-display-graphic" function (:arguments ("c" "gc")) nil [6403 6883])
-            ("standard-display-underline" function (:arguments ("c" "uc")) nil [6900 7252])
-            ("create-glyph" function (:arguments ("string")) nil [7269 7698])
-            ("make-glyph-code" function (:arguments ("char" "face")) nil [7715 8130])
-            ("glyph-char" function (:arguments ("glyph")) nil [8147 8286])
-            ("glyph-face" function (:arguments ("glyph")) nil [8303 8611])
-            ("standard-display-european" function (:arguments ("arg")) nil [8628 10792])
-            ("disp-table" package nil nil [10794 10815]))          
-      :file "disp-table.el"
-      :pointmax 10845
-      :fsize 10844
-      :lastmodtime '(23525 29505 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [4783 4800])
-            ("timer" include nil nil [4802 4818])
-            ("filenotify" include nil nil [4819 4840])
-            ("auto-revert" customgroup (:user-visible-flag t) nil [4956 5185])
-            ("auto-revert-mode" variable nil nil [5319 5471])
-            ("put" code nil nil [5472 5514])
-            ("auto-revert-tail-mode" variable nil nil [5516 5683])
-            ("put" code nil nil [5684 5731])
-            ("auto-revert-timer" variable nil nil [5733 5799])
-            ("auto-revert-interval" variable (:default-value 5) nil [5801 6536])
-            ("auto-revert-stop-on-user-input" variable (:default-value t) nil [6538 7070])
-            ("auto-revert-verbose" variable (:default-value t) nil [7072 7275])
-            ("auto-revert-mode-text" variable (:default-value " ARev") nil [7277 7568])
-            ("auto-revert-tail-mode-text" variable (:default-value " Tail") nil [7570 7822])
-            ("auto-revert-mode-hook" variable nil nil [7824 8021])
-            ("global-auto-revert-mode-text" variable nil nil [8023 8330])
-            ("global-auto-revert-mode-hook" variable nil nil [8332 8471])
-            ("global-auto-revert-non-file-buffers" variable nil nil [8473 9402])
-            ("global-auto-revert-ignore-modes" variable nil nil [9404 9561])
-            ("auto-revert-load-hook" variable nil nil [9563 9715])
-            ("auto-revert-check-vc-info" variable nil nil [9717 10763])
-            ("defvar-local" code nil nil [10765 10947])
-            ("auto-revert-remote-files" variable nil nil [10949 11093])
-            ("auto-revert-use-notify" variable (:default-value t) nil [11095 11604])
-            ("auto-revert-notify-exclude-dir-regexp" variable (:default-value (concat "^" (regexp-opt (quote ("/afs/" "/media/" "/mnt" "/net/" "/tmp_mnt/"))) (unless auto-revert-remote-files "\\|^/[^/|:][^/|]+:"))) nil [11606 11980])
-            ("auto-revert-buffer-list" variable nil nil [12006 12268])
-            ("auto-revert-remaining-buffers" variable nil nil [12270 12370])
-            ("auto-revert-tail-pos" variable nil nil [12372 12443])
-            ("auto-revert-find-file-function" function nil nil [12445 12579])
-            ("add-hook" code nil nil [12581 12643])
-            ("auto-revert-notify-watch-descriptor-hash-list" variable (:default-value (make-hash-table :test (quote equal))) nil [12645 12934])
-            ("defvar-local" code nil nil [12936 13051])
-            ("put" code nil nil [13052 13113])
-            ("defvar-local" code nil nil [13115 13276])
-            ("auto-revert-remove-current-buffer" function nil nil [13293 13481])
-            ("define-minor-mode" code nil nil [13498 14750])
-            ("turn-on-auto-revert-mode" function nil nil [14768 14977])
-            ("define-minor-mode" code nil nil [14995 17804])
-            ("turn-on-auto-revert-tail-mode" function nil nil [17822 18060])
-            ("define-minor-mode" code nil nil [18078 19356])
-            ("auto-revert-set-timer" function (:user-visible-flag t) nil [19358 19972])
-            ("auto-revert-notify-rm-watch" function nil nil [19974 20709])
-            ("auto-revert-notify-add-watch" function nil nil [20711 22017])
-            ("auto-revert-buffers-counter" variable (:default-value 1) nil [22549 22645])
-            ("defvar-local" code nil nil [22646 23165])
-            ("auto-revert-notify-handler" function (:arguments ("event")) nil [23167 26258])
-            ("auto-revert-active-p" function nil nil [26260 26567])
-            ("auto-revert-handler" function nil nil [26569 29462])
-            ("auto-revert-tail-handler" function (:arguments ("size")) nil [29464 30125])
-            ("auto-revert-buffers" function nil nil [30127 33100])
-            ("autorevert" package nil nil [33115 33136])
-            ("run-hooks" code nil nil [33138 33172]))          
-      :file "autorevert.el"
-      :pointmax 33202
-      :fsize 33201
-      :lastmodtime '(23525 29503 0 0)
-      :unmatched-syntax '((close-paren 4800 . 4801) (symbol 4765 . 4782) (open-paren 4764 . 4765)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1048 1065])
-            ("subr-x" include nil nil [1085 1102])
-            ("file-notify--library" variable
-               (:constant-flag t
-                :default-value (cond ((featurep (quote inotify)) (quote inotify)) ((featurep (quote kqueue)) (quote kqueue)) ((featurep (quote gfilenotify)) (quote gfilenotify)) ((featurep (quote w32notify)) (quote w32notify))))
-                nil [1105 1525])
-            ("cl-defstruct" code nil nil [1527 1853])
-            ("file-notify--watch-absolute-filename" function (:arguments ("watch")) nil [1855 2155])
-            ("file-notify-descriptors" variable (:default-value (make-hash-table :test (quote equal))) nil [2157 2474])
-            ("file-notify--rm-descriptor" function (:arguments ("descriptor")) nil [2476 3031])
-            ("file-notify-handle-event" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [3138 3690])
-            ("file-notify--pending-event" variable nil nil [3769 3945])
-            ("file-notify--event-watched-file" function (:arguments ("event")) nil [3947 4227])
-            ("file-notify--event-file-name" function (:arguments ("event")) nil [4229 4552])
-            ("file-notify--event-file1-name" function (:arguments ("event")) nil [4605 4989])
-            ("file-notify--event-cookie" function (:arguments ("event")) nil [5033 5193])
-            ("file-notify-callback" function (:arguments ("event")) nil [5320 11050])
-            ("file-notify-add-watch" function (:arguments ("file" "flags" "callback")) nil [11223 15446])
-            ("file-notify-rm-watch" function (:arguments ("descriptor")) nil [15448 16528])
-            ("file-notify-valid-p" function (:arguments ("descriptor")) nil [16530 17472])
-            ("filenotify" package nil nil [17899 17920]))          
-      :file "filenotify.el"
-      :pointmax 17950
-      :fsize 17949
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax '((close-paren 1102 . 1103) (symbol 1067 . 1084) (open-paren 1066 . 1067)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("reveal" customgroup (:user-visible-flag t) nil [1865 1943])
-            ("reveal-around-mark" variable (:default-value t) nil [1945 2055])
-            ("reveal-open-spots" variable nil nil [2057 2181])
-            ("make-variable-buffer-local" code nil nil [2182 2229])
-            ("reveal-last-tick" variable nil nil [2231 2260])
-            ("make-variable-buffer-local" code nil nil [2261 2307])
-            ("reveal-post-command" function nil nil [2325 3722])
-            ("reveal-open-new-overlays" function (:arguments ("old-ols")) nil [3724 5913])
-            ("reveal-close-old-overlays" function (:arguments ("old-ols")) nil [5915 8234])
-            ("reveal-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [remap move-beginning-of-line] (quote beginning-of-line)) (define-key map [remap move-end-of-line] (quote end-of-line)) map)) nil [8236 8551])
-            ("define-minor-mode" code nil nil [8568 9256])
-            ("define-minor-mode" code nil nil [9273 9892])
-            ("reveal" package nil nil [9894 9911]))          
-      :file "reveal.el"
-      :pointmax 9937
-      :fsize 9936
-      :lastmodtime '(23525 29516 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("declare-function" code nil nil [1546 1592])
-            ("gpm-mouse-enable" function nil nil [1594 2153])
-            ("gpm-mouse-disable" function nil nil [2155 2354])
-            ("define-obsolete-function-alias" code nil nil [2371 2440])
-            ("define-minor-mode" code nil nil [2456 3530])
-            ("t-mouse" package nil nil [3532 3550]))          
-      :file "t-mouse.el"
-      :pointmax 3577
-      :fsize 3576
-      :lastmodtime '(23525 29519 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("display-line-numbers" customgroup (:user-visible-flag t) nil [1336 1451])
-            ("display-line-numbers-type" variable (:default-value t) nil [1453 1851])
-            ("display-line-numbers-grow-only" variable nil nil [1853 2014])
-            ("display-line-numbers-width-start" variable nil nil [2016 2355])
-            ("display-line-numbers-update-width" function nil nil [2357 2598])
-            ("define-minor-mode" code nil nil [2615 3491])
-            ("display-line-numbers--turn-on" function nil nil [3493 3740])
-            ("define-globalized-minor-mode" code nil nil [3757 3878])
-            ("display-line-numbers" package nil nil [3880 3911]))          
-      :file "display-line-numbers.el"
-      :pointmax 3951
-      :fsize 3950
-      :lastmodtime '(23525 29505 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("mouse" include nil nil [1044 1060])
-            ("cl-lib" include nil nil [1080 1097])
-            ("scroll-bar-event-ratio" function (:arguments ("event")) nil [1119 1435])
-            ("scroll-bar-scale" function (:arguments ("num-denom" "whole")) nil [1437 2118])
-            ("scroll-bar-columns" function (:arguments ("side")) nil [2120 2795])
-            ("scroll-bar-lines" function nil nil [2797 3325])
-            ("scroll-bar-mode" variable nil nil [3393 3417])
-            ("horizontal-scroll-bar-mode" variable nil nil [3418 3453])
-            ("previous-scroll-bar-mode" variable nil nil [3454 3491])
-            ("scroll-bar-mode-explicit" variable nil nil [3493 3658])
-            ("set-scroll-bar-mode" function (:arguments ("value")) nil [3660 4072])
-            ("scroll-bar-mode" variable (:default-value default-frame-scroll-bars) nil [4074 4764])
-            ("setq" code nil nil [4865 4898])
-            ("get-scroll-bar-mode" function nil nil [4900 4992])
-            ("define-minor-mode" code nil nil [4994 5508])
-            ("horizontal-scroll-bars-available-p" function nil nil [5510 5728])
-            ("define-minor-mode" code nil nil [5730 6708])
-            ("toggle-scroll-bar" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [6710 7335])
-            ("toggle-horizontal-scroll-bar" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [7337 7803])
-            ("scroll-bar-set-window-start" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [7911 8441])
-            ("scroll-bar-drag-position" function (:arguments ("portion-whole")) nil [8443 8698])
-            ("scroll-bar-maybe-set-window-start" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [8700 9710])
-            ("scroll-bar-drag-1" function (:arguments ("event")) nil [9767 10231])
-            ("scroll-bar-drag" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [10233 11244])
-            ("scroll-bar-horizontal-drag-1" function (:arguments ("event")) nil [11301 11801])
-            ("scroll-bar-horizontal-drag" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [11803 12860])
-            ("scroll-bar-scroll-down" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [12862 13610])
-            ("scroll-bar-scroll-up" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [13612 14352])
-            ("scroll-bar-toolkit-scroll" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [14381 15581])
-            ("scroll-bar-toolkit-horizontal-scroll" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [15583 17168])
-            ("cond" code nil nil [17239 17949])
-            ("scroll-bar" package nil nil [17953 17974]))          
-      :file "scroll-bar.el"
-      :pointmax 18004
-      :fsize 18003
-      :lastmodtime '(23525 29517 0 0)
-      :unmatched-syntax '((close-paren 1097 . 1098) (symbol 1062 . 1079) (open-paren 1061 . 1062)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("put" code nil nil [1197 1239])
-            ("mouse" customgroup (:user-visible-flag t) nil [1241 1348])
-            ("mouse-yank-at-point" variable nil nil [1350 1489])
-            ("mouse-drag-copy-region" variable nil nil [1491 1744])
-            ("mouse-1-click-follows-link" variable (:default-value 450) nil [1746 3177])
-            ("mouse-1-click-in-non-selected-windows" variable (:default-value t) nil [3179 3521])
-            ("mouse--down-1-maybe-follows-link" function (:arguments ("_prompt")) nil [3523 5941])
-            ("define-key" code nil nil [5943 6027])
-            ("define-key" code nil nil [6028 6119])
-            ("minor-mode-menu-from-indicator" function
-               (:user-visible-flag t
-                :arguments ("indicator"))
-                nil [6175 7428])
-            ("mouse-minor-mode-menu" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [7430 7662])
-            ("mouse-menu-major-mode-map" function nil nil [7664 8256])
-            ("mouse-menu-non-singleton" function (:arguments ("menubar")) nil [8258 8713])
-            ("mouse-menu-bar-map" function nil nil [8715 10927])
-            ("mouse-major-mode-menu" function (:arguments ("event" "prefix")) nil [10929 11295])
-            ("mouse-popup-menubar" function (:arguments ("event" "prefix")) nil [11297 11722])
-            ("mouse-popup-menubar-stuff" function (:arguments ("event" "prefix")) nil [11724 12186])
-            ("mouse-minibuffer-check" function (:arguments ("event")) nil [12227 12538])
-            ("mouse-delete-window" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [12540 12838])
-            ("mouse-select-window" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [12840 13264])
-            ("define-obsolete-function-alias" code nil nil [13266 13345])
-            ("tear-off-window" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [13346 13731])
-            ("mouse-delete-other-windows" function (:user-visible-flag t) nil [13733 13867])
-            ("mouse-split-window-vertically" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [13869 14699])
-            ("mouse-split-window-horizontally" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [14701 15524])
-            ("mouse-drag-line" function (:arguments ("start-event" "line")) nil [15526 21541])
-            ("mouse-drag-mode-line" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [21543 22984])
-            ("mouse-drag-header-line" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [22986 23686])
-            ("mouse-drag-vertical-line" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [23688 23921])
-            ("mouse-resize-frame" function (:arguments ("frame" "x-diff" "y-diff" "x-move" "y-move")) nil [23924 25378])
-            ("mouse-drag-frame" function (:arguments ("start-event" "part")) nil [25380 38806])
-            ("mouse-drag-left-edge" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [38808 39015])
-            ("mouse-drag-top-left-corner" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [39017 39240])
-            ("mouse-drag-top-edge" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [39242 39446])
-            ("mouse-drag-top-right-corner" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [39448 39674])
-            ("mouse-drag-right-edge" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [39676 39886])
-            ("mouse-drag-bottom-right-corner" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [39888 40123])
-            ("mouse-drag-bottom-edge" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [40125 40338])
-            ("mouse-drag-bottom-left-corner" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [40340 40572])
-            ("mouse-select-region-move-to-beginning" variable nil nil [40574 40948])
-            ("mouse-set-point" function
-               (:user-visible-flag t
-                :arguments ("event" "promote-to-region"))
-                nil [40950 41819])
-            ("mouse-last-region-beg" variable nil nil [41821 41855])
-            ("mouse-last-region-end" variable nil nil [41856 41890])
-            ("mouse-last-region-tick" variable nil nil [41891 41926])
-            ("mouse-region-match" function nil nil [41928 42220])
-            ("mouse--drag-start-event" variable nil nil [42222 42258])
-            ("mouse-set-region" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [42260 44782])
-            ("mouse-set-region-1" function nil nil [44784 45238])
-            ("mouse-scroll-delay" variable (:default-value 0.25) nil [45240 45747])
-            ("mouse-scroll-min-lines" variable (:default-value 1) nil [45749 46199])
-            ("mouse-scroll-subr" function (:arguments ("window" "jump" "overlay" "start")) nil [46201 47633])
-            ("mouse-selection-click-count" variable nil nil [47635 47673])
-            ("mouse-selection-click-count-buffer" variable nil nil [47675 47722])
-            ("mouse-drag-region" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [47724 48601])
-            ("mouse-posn-property" function (:arguments ("pos" "property")) nil [48603 49646])
-            ("mouse-on-link-p" function (:arguments ("pos")) nil [49648 52112])
-            ("mouse-fixup-help-message" function (:arguments ("msg")) nil [52114 52903])
-            ("mouse-drag-track" function (:arguments ("start-event")) nil [52905 56655])
-            ("mouse--drag-set-mark-and-point" function (:arguments ("start" "click" "click-count")) nil [56657 57023])
-            ("mouse-skip-word" function (:arguments ("dir")) nil [57076 58178])
-            ("mouse-start-end" function (:arguments ("start" "end" "mode")) nil [58180 60877])
-            ("mouse-set-mark-fast" function (:arguments ("click")) nil [60961 61177])
-            ("mouse-undouble-last-event" function (:arguments ("events")) nil [61179 61852])
-            ("mouse-set-mark" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [61927 62424])
-            ("mouse-kill" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [62426 62833])
-            ("mouse-yank-at-click" function
-               (:user-visible-flag t
-                :arguments ("click" "arg"))
-                nil [62835 63603])
-            ("mouse-yank-primary" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [63605 64318])
-            ("mouse-kill-ring-save" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [64320 64618])
-            ("mouse-save-then-kill-posn" variable nil nil [64853 64891])
-            ("mouse-save-then-kill-delete-region" function (:arguments ("beg" "end")) nil [64893 66374])
-            ("mouse-save-then-kill" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [66376 69821])
-            ("global-set-key" code nil nil [69825 69876])
-            ("global-set-key" code nil nil [69877 69931])
-            ("global-set-key" code nil nil [69932 69987])
-            ("global-set-key" code nil nil [69988 70048])
-            ("global-set-key" code nil nil [70049 70099])
-            ("mouse-secondary-overlay" variable
-               (:constant-flag t
-                :default-value (let ((ol (make-overlay (point-min) (point-min)))) (delete-overlay ol) (overlay-put ol (quote face) (quote secondary-selection)) ol))
-                nil [70101 70382])
-            ("mouse-secondary-click-count" variable nil nil [70384 70422])
-            ("mouse-secondary-start" variable nil nil [70516 70550])
-            ("mouse-start-secondary" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [70552 71195])
-            ("mouse-set-secondary" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [71197 71820])
-            ("mouse-drag-secondary" function
-               (:user-visible-flag t
-                :arguments ("start-event"))
-                nil [71822 75051])
-            ("mouse-yank-secondary" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [75053 75601])
-            ("mouse-kill-secondary" function (:user-visible-flag t) nil [75603 76506])
-            ("mouse-secondary-save-then-kill" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [76508 80416])
-            ("secondary-selection-exist-p" function nil nil [80418 80603])
-            ("secondary-selection-to-region" function nil nil [80605 81405])
-            ("secondary-selection-from-region" function nil nil [81407 81837])
-            ("mouse-buffer-menu-maxlen" variable (:default-value 20) nil [81841 82102])
-            ("mouse-buffer-menu-mode-mult" variable (:default-value 4) nil [82104 82592])
-            ("mouse-buffer-menu-mode-groups" variable (:default-value (mapcar (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg)))) (quote (("Info\\|Help\\|Apropos\\|Man" . "Help") ("\\bVM\\b\\|\\bMH\\b\\|Message\\|Mail\\|Group\\|Score\\|Summary\\|Article" . "Mail/News") ("\\<C\\>" . "C") ("ObjC" . "C") ("Text" . "Text") ("Outline" . "Text") ("\\(HT\\|SG\\|X\\|XHT\\)ML" . "SGML") ("log\\|diff\\|vc\\|cvs\\|Annotate" . "Version Control") ("Threads\\|Memory\\|Disassembly\\|Breakpoints\\|Frames\\|Locals\\|Registers\\|Inferior I/O\\|Debugger" . "GDB") ("Lisp" . "Lisp"))))) nil [82594 83404])
-            ("mouse-buffer-menu" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [83406 83886])
-            ("mouse-buffer-menu-map" function nil nil [83888 87035])
-            ("mouse-buffer-menu-alist" function (:arguments ("buffers")) nil [87037 88081])
-            ("mouse-buffer-menu-split" function (:arguments ("title" "alist")) nil [88083 88836])
-            ("define-obsolete-function-alias" code nil nil [88839 88924])
-            ("font-menu-add-default" function nil nil [88946 89254])
-            ("x-fixed-font-alist" variable (:default-value (list (purecopy "Font Menu") (cons (purecopy "Misc") (mapcar (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg)))) (quote (("fixed" "fixed") ("6x10" "-misc-fixed-medium-r-normal--10-*-*-*-c-60-iso8859-1" "6x10") ("6x12" "-misc-fixed-medium-r-semicondensed--12-*-*-*-c-60-iso8859-1" "6x12") ("6x13" "-misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1" "6x13") ("7x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-70-iso8859-1" "7x13") ("7x14" "-misc-fixed-medium-r-normal--14-*-*-*-c-70-iso8859-1" "7x14") ("8x13" "-misc-fixed-medium-r-normal--13-*-*-*-c-80-iso8859-1" "8x13") ("9x15" "-misc-fixed-medium-r-normal--15-*-*-*-c-90-iso8859-1" "9x15") ("10x20" "-misc-fixed-medium-r-normal--20-*-*-*-c-100-iso8859-1" "10x20") ("11x18" "-misc-fixed-medium-r-normal--18-*-*-*-c-110-iso8859-1" "11x18") ("12x24" "-misc-fixed-medium-r-normal--24-*-*-*-c-120-iso8859-1" "12x24") ("") ("clean 5x8" "-schumacher-clean-medium-r-normal--8-*-*-*-c-50-iso8859-1") ("clean 6x8" "-schumacher-clean-medium-r-normal--8-*-*-*-c-60-iso8859-1") ("clean 8x8" "-schumacher-clean-medium-r-normal--8-*-*-*-c-80-iso8859-1") ("clean 8x10" "-schumacher-clean-medium-r-normal--10-*-*-*-c-80-iso8859-1") ("clean 8x14" "-schumacher-clean-medium-r-normal--14-*-*-*-c-80-iso8859-1") ("clean 8x16" "-schumacher-clean-medium-r-normal--16-*-*-*-c-80-iso8859-1") ("") ("sony 8x16" "-sony-fixed-medium-r-normal--16-*-*-*-c-80-iso8859-1") ("lucidasanstypewriter-12" "-b&h-lucidatypewriter-medium-r-normal-sans-*-120-*-*-*-*-iso8859-1") ("lucidasanstypewriter-bold-14" "-b&h-lucidatypewriter-bold-r-normal-sans-*-140-*-*-*-*-iso8859-1") ("lucidasanstypewriter-bold-24" "-b&h-lucidatypewriter-bold-r-normal-sans-*-240-*-*-*-*-iso8859-1"))))) (cons (purecopy "Courier") (mapcar (lambda (arg) (cons (purecopy (car arg)) (purecopy (cdr arg)))) (quote (("8" "-adobe-courier-medium-r-normal--*-80-*-*-m-*-iso8859-1") ("10" "-adobe-courier-medium-r-normal--*-100-*-*-m-*-iso8859-1") ("12" "-adobe-courier-medium-r-normal--*-120-*-*-m-*-iso8859-1") ("14" "-adobe-courier-medium-r-normal--*-140-*-*-m-*-iso8859-1") ("18" "-adobe-courier-medium-r-normal--*-180-*-*-m-*-iso8859-1") ("24" "-adobe-courier-medium-r-normal--*-240-*-*-m-*-iso8859-1") ("8 bold" "-adobe-courier-bold-r-normal--*-80-*-*-m-*-iso8859-1") ("10 bold" "-adobe-courier-bold-r-normal--*-100-*-*-m-*-iso8859-1") ("12 bold" "-adobe-courier-bold-r-normal--*-120-*-*-m-*-iso8859-1") ("14 bold" "-adobe-courier-bold-r-normal--*-140-*-*-m-*-iso8859-1") ("18 bold" "-adobe-courier-bold-r-normal--*-180-*-*-m-*-iso8859-1") ("24 bold" "-adobe-courier-bold-r-normal--*-240-*-*-m-*-iso8859-1") ("8 slant" "-adobe-courier-medium-o-normal--*-80-*-*-m-*-iso8859-1") ("10 slant" "-adobe-courier-medium-o-normal--*-100-*-*-m-*-iso8859-1") ("12 slant" "-adobe-courier-medium-o-normal--*-120-*-*-m-*-iso8859-1") ("14 slant" "-adobe-courier-medium-o-normal--*-140-*-*-m-*-iso8859-1") ("18 slant" "-adobe-courier-medium-o-normal--*-180-*-*-m-*-iso8859-1") ("24 slant" "-adobe-courier-medium-o-normal--*-240-*-*-m-*-iso8859-1") ("8 bold slant" "-adobe-courier-bold-o-normal--*-80-*-*-m-*-iso8859-1") ("10 bold slant" "-adobe-courier-bold-o-normal--*-100-*-*-m-*-iso8859-1") ("12 bold slant" "-adobe-courier-bold-o-normal--*-120-*-*-m-*-iso8859-1") ("14 bold slant" "-adobe-courier-bold-o-normal--*-140-*-*-m-*-iso8859-1") ("18 bold slant" "-adobe-courier-bold-o-normal--*-180-*-*-m-*-iso8859-1") ("24 bold slant" "-adobe-courier-bold-o-normal--*-240-*-*-m-*-iso8859-1"))))))) nil [89256 93536])
-            ("declare-function" code nil nil [93538 93591])
-            ("mouse-select-font" function (:user-visible-flag t) nil [93593 93974])
-            ("declare-function" code nil nil [93976 94023])
-            ("mouse-set-font" function
-               (:user-visible-flag t
-                :arguments ("fonts"))
-                nil [94025 94872])
-            ("mouse-appearance-menu-map" variable nil nil [94874 94912])
-            ("declare-function" code nil nil [94913 94980])
-            ("declare-function" code nil nil [94991 95097])
-            ("declare-function" code nil nil [95098 95169])
-            ("w32-use-w32-font-dialog" variable nil nil [95170 95202])
-            ("w32-fixed-font-alist" variable nil nil [95203 95232])
-            ("mouse-appearance-menu" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [95234 98012])
-            ("mouse-drag-and-drop-region" variable nil nil [98042 98744])
-            ("mouse-drag-and-drop-region-cut-when-buffers-differ" variable nil nil [98746 99175])
-            ("mouse-drag-and-drop-region-show-tooltip" variable (:default-value 256) nil [99177 99613])
-            ("mouse-drag-and-drop-region-show-cursor" variable (:default-value t) nil [99615 100010])
-            ("mouse-drag-and-drop-region" variable
-               (:default-value (quote ((t :inherit region)))
-                :type "face")
-                nil [100012 100311])
-            ("mouse-drag-and-drop-region" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [100313 111604])
-            ("global-set-key" code nil nil [111642 111692])
-            ("global-set-key" code nil nil [111693 111736])
-            ("global-set-key" code nil nil [111737 111786])
-            ("mouse--strip-first-event" function (:arguments ("_prompt")) nil [111788 111877])
-            ("define-key" code nil nil [111879 111956])
-            ("define-key" code nil nil [111957 112035])
-            ("global-set-key" code nil nil [112037 112083])
-            ("define-key" code nil nil [112156 112234])
-            ("define-key" code nil nil [112235 112312])
-            ("global-set-key" code nil nil [112313 112361])
-            ("define-key" code nil nil [112362 112440])
-            ("define-key" code nil nil [112441 112518])
-            ("global-set-key" code nil nil [112643 112695])
-            ("if" code nil nil [112696 112792])
-            ("global-set-key" code nil nil [112836 113094])
-            ("global-set-key" code nil nil [113314 113381])
-            ("global-set-key" code nil nil [113382 113441])
-            ("global-set-key" code nil nil [113508 113571])
-            ("global-set-key" code nil nil [113572 113629])
-            ("global-set-key" code nil nil [113630 113694])
-            ("global-set-key" code nil nil [113695 113752])
-            ("global-set-key" code nil nil [113753 113824])
-            ("global-set-key" code nil nil [113825 113904])
-            ("global-set-key" code nil nil [113905 113988])
-            ("global-set-key" code nil nil [113989 114060])
-            ("global-set-key" code nil nil [114061 114122])
-            ("global-set-key" code nil nil [114123 114196])
-            ("global-set-key" code nil nil [114197 114268])
-            ("global-set-key" code nil nil [114269 114317])
-            ("global-set-key" code nil nil [114318 114391])
-            ("global-set-key" code nil nil [114392 114460])
-            ("global-set-key" code nil nil [114461 114510])
-            ("global-set-key" code nil nil [114511 114587])
-            ("global-set-key" code nil nil [114588 114651])
-            ("global-set-key" code nil nil [114652 114696])
-            ("global-set-key" code nil nil [114697 114772])
-            ("global-set-key" code nil nil [114773 114823])
-            ("global-set-key" code nil nil [114824 114885])
-            ("global-set-key" code nil nil [114886 114929])
-            ("global-set-key" code nil nil [114930 115007])
-            ("global-set-key" code nil nil [115008 115059])
-            ("global-set-key" code nil nil [115060 115125])
-            ("global-set-key" code nil nil [115126 115171])
-            ("global-set-key" code nil nil [115172 115255])
-            ("global-set-key" code nil nil [115256 115310])
-            ("global-set-key" code nil nil [115311 115378])
-            ("global-set-key" code nil nil [115379 115425])
-            ("global-set-key" code nil nil [115426 115507])
-            ("global-set-key" code nil nil [115508 115561])
-            ("mouse" package nil nil [115563 115579]))          
-      :file "mouse.el"
-      :pointmax 115604
-      :fsize 115609
-      :lastmodtime '(23525 29514 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("font-lock" include nil nil [3640 3660])
-            ("hi-lock" customgroup (:user-visible-flag t) nil [3662 3837])
-            ("hi-lock-file-patterns-range" variable (:default-value 10000) nil [3839 4166])
-            ("hi-lock-highlight-range" variable (:default-value 200000) nil [4168 4623])
-            ("hi-lock-exclude-modes" variable (:default-value (quote (rmail-mode mime/viewer-mode gnus-article-mode))) nil [4625 4881])
-            ("hi-lock-file-patterns-policy" variable (:default-value (quote ask)) nil [4883 5439])
-            ("put" code nil nil [5474 5533])
-            ("hi-lock-auto-select-face" variable nil nil [5535 5772])
-            ("hi-lock-faces" customgroup (:user-visible-flag t) nil [5774 5859])
-            ("hi-yellow" variable
-               (:default-value (quote ((((min-colors 88) (background dark)) (:background "yellow1" :foreground "black")) (((background dark)) (:background "yellow" :foreground "black")) (((min-colors 88)) (:background "yellow1")) (t (:background "yellow"))))
-                :type "face")
-                nil [5861 6179])
-            ("hi-pink" variable
-               (:default-value (quote ((((background dark)) (:background "pink" :foreground "black")) (t (:background "pink"))))
-                :type "face")
-                nil [6181 6346])
-            ("hi-green" variable
-               (:default-value (quote ((((min-colors 88) (background dark)) (:background "light green" :foreground "black")) (((background dark)) (:background "green" :foreground "black")) (((min-colors 88)) (:background "light green")) (t (:background "green"))))
-                :type "face")
-                nil [6348 6663])
-            ("hi-blue" variable
-               (:default-value (quote ((((background dark)) (:background "light blue" :foreground "black")) (t (:background "light blue"))))
-                :type "face")
-                nil [6665 6842])
-            ("hi-black-b" variable
-               (:default-value (quote ((t (:weight bold))))
-                :type "face")
-                nil [6844 6939])
-            ("hi-blue-b" variable
-               (:default-value (quote ((((min-colors 88)) (:weight bold :foreground "blue1")) (t (:weight bold :foreground "blue"))))
-                :type "face")
-                nil [6941 7113])
-            ("hi-green-b" variable
-               (:default-value (quote ((((min-colors 88)) (:weight bold :foreground "green1")) (t (:weight bold :foreground "green"))))
-                :type "face")
-                nil [7115 7290])
-            ("hi-red-b" variable
-               (:default-value (quote ((((min-colors 88)) (:weight bold :foreground "red1")) (t (:weight bold :foreground "red"))))
-                :type "face")
-                nil [7292 7461])
-            ("hi-black-hb" variable
-               (:default-value (quote ((t (:weight bold :height 1.67 :inherit variable-pitch))))
-                :type "face")
-                nil [7463 7596])
-            ("defvar-local" code nil nil [7598 7702])
-            ("put" code nil nil [7703 7750])
-            ("defvar-local" code nil nil [7752 7865])
-            ("put" code nil nil [7866 7920])
-            ("define-obsolete-variable-alias" code nil nil [7922 8038])
-            ("hi-lock-face-defaults" variable (:default-value (quote ("hi-yellow" "hi-pink" "hi-green" "hi-blue" "hi-black-b" "hi-blue-b" "hi-red-b" "hi-green-b" "hi-black-hb"))) nil [8039 8237])
-            ("define-obsolete-variable-alias" code nil nil [8239 8382])
-            ("hi-lock-file-patterns-prefix" variable (:default-value "Hi-lock") nil [8384 8494])
-            ("hi-lock-archaic-interface-message-used" variable nil nil [8496 8836])
-            ("hi-lock-archaic-interface-deduce" variable nil nil [8838 9064])
-            ("hi-lock-menu" variable (:default-value (let ((map (make-sparse-keymap "Hi Lock"))) (define-key-after map [highlight-regexp] (quote (menu-item "Highlight Regexp..." highlight-regexp :help "Highlight text matching PATTERN (a regexp)."))) (define-key-after map [highlight-phrase] (quote (menu-item "Highlight Phrase..." highlight-phrase :help "Highlight text matching PATTERN (a regexp processed to match phrases)."))) (define-key-after map [highlight-lines-matching-regexp] (quote (menu-item "Highlight Lines..." highlight-lines-matching-regexp :help "Highlight lines containing match of PATTERN (a regexp)."))) (define-key-after map [highlight-symbol-at-point] (quote (menu-item "Highlight Symbol at Point" highlight-symbol-at-point :help "Highlight symbol found near point without prompting."))) (define-key-after map [unhighlight-regexp] (quote (menu-item "Remove Highlighting..." unhighlight-regexp :help "Remove previously entered highlighting pattern." :enable hi-lock-interactive-patterns))) (define-key-after map [hi-lock-write-interactive-patterns] (quote (menu-item "Patterns to Buffer" hi-lock-write-interactive-patterns :help "Insert interactively added REGEXPs into buffer at point." :enable hi-lock-interactive-patterns))) (define-key-after map [hi-lock-find-patterns] (quote (menu-item "Patterns from Buffer" hi-lock-find-patterns :help "Use patterns (if any) near top of buffer."))) map)) nil [9066 10582])
-            ("hi-lock-map" variable (:default-value (let ((map (make-sparse-keymap "Hi Lock"))) (define-key map "wi" (quote hi-lock-find-patterns)) (define-key map "wl" (quote highlight-lines-matching-regexp)) (define-key map "wp" (quote highlight-phrase)) (define-key map "wh" (quote highlight-regexp)) (define-key map "w." (quote highlight-symbol-at-point)) (define-key map "wr" (quote unhighlight-regexp)) (define-key map "wb" (quote hi-lock-write-interactive-patterns)) map)) nil [10584 11069])
-            ("define-minor-mode" code nil nil [11108 15705])
-            ("define-globalized-minor-mode" code nil nil [15722 15832])
-            ("turn-on-hi-lock-if-enabled" function nil nil [15834 15993])
-            ("defalias" code nil nil [16010 16079])
-            ("hi-lock-line-face-buffer" function
-               (:user-visible-flag t
-                :arguments ("regexp" "face"))
-                nil [16095 16924])
-            ("defalias" code nil nil [16942 16991])
-            ("hi-lock-face-buffer" function
-               (:user-visible-flag t
-                :arguments ("regexp" "face"))
-                nil [17007 17636])
-            ("defalias" code nil nil [17653 17709])
-            ("hi-lock-face-phrase-buffer" function
-               (:user-visible-flag t
-                :arguments ("regexp" "face"))
-                nil [17725 18599])
-            ("defalias" code nil nil [18616 18683])
-            ("hi-lock-face-symbol-at-point" function (:user-visible-flag t) nil [18699 19386])
-            ("hi-lock-keyword->face" function (:arguments ("keyword")) nil [19388 19458])
-            ("declare-function" code nil nil [19508 19564])
-            ("hi-lock--regexps-at-point" function nil nil [19566 21211])
-            ("defvar-local" code nil nil [21213 21393])
-            ("defalias" code nil nil [21410 21463])
-            ("hi-lock-unface-buffer" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [21479 24550])
-            ("hi-lock-write-interactive-patterns" function (:user-visible-flag t) nil [24567 25325])
-            ("hi-lock-process-phrase" function (:arguments ("phrase")) nil [25356 26151])
-            ("hi-lock-regexp-okay" function (:arguments ("regexp")) nil [26153 26500])
-            ("hi-lock-read-face-name" function nil nil [26502 27656])
-            ("hi-lock-set-pattern" function (:arguments ("regexp" "face")) nil [27658 29406])
-            ("hi-lock-set-file-patterns" function (:arguments ("patterns")) nil [29408 29736])
-            ("hi-lock-find-patterns" function (:user-visible-flag t) nil [29738 31166])
-            ("hi-lock-font-lock-hook" function nil nil [31168 31392])
-            ("hi-lock--hashcons-hash" variable (:default-value (make-hash-table :test (quote equal) :weakness t)) nil [31394 31512])
-            ("hi-lock--hashcons" function (:arguments ("string")) nil [31514 31690])
-            ("hi-lock-unload-function" function nil nil [31692 31824])
-            ("hi-lock" package nil nil [31826 31844]))          
-      :file "hi-lock.el"
-      :pointmax 31871
-      :fsize 31870
-      :lastmodtime '(23525 29510 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("syntax" include nil nil [10482 10499])
-            ("cl-lib" include nil nil [10519 10536])
-            ("font-lock" customgroup
-               (:user-visible-flag t
-                :value (quote ((jit-lock custom-group))))
-                nil [10573 10815])
-            ("font-lock-faces" customgroup (:user-visible-flag t) nil [10817 10923])
-            ("font-lock-extra-types" customgroup (:user-visible-flag t) nil [10925 11047])
-            ("font-lock-maximum-size" variable (:default-value 256000) nil [11070 12126])
-            ("make-obsolete-variable" code nil nil [12127 12186])
-            ("font-lock-maximum-decoration" variable (:default-value t) nil [12188 13318])
-            ("font-lock-verbose" variable nil nil [13320 13633])
-            ("font-lock-comment-face" variable (:default-value (quote font-lock-comment-face)) nil [14307 14398])
-            ("font-lock-comment-delimiter-face" variable (:default-value (quote font-lock-comment-delimiter-face)) nil [14400 14520])
-            ("font-lock-string-face" variable (:default-value (quote font-lock-string-face)) nil [14522 14610])
-            ("font-lock-doc-face" variable (:default-value (quote font-lock-doc-face)) nil [14612 14700])
-            ("font-lock-keyword-face" variable (:default-value (quote font-lock-keyword-face)) nil [14702 14793])
-            ("font-lock-builtin-face" variable (:default-value (quote font-lock-builtin-face)) nil [14795 14886])
-            ("font-lock-function-name-face" variable (:default-value (quote font-lock-function-name-face)) nil [14888 14996])
-            ("font-lock-variable-name-face" variable (:default-value (quote font-lock-variable-name-face)) nil [14998 15106])
-            ("font-lock-type-face" variable (:default-value (quote font-lock-type-face)) nil [15108 15205])
-            ("font-lock-constant-face" variable (:default-value (quote font-lock-constant-face)) nil [15207 15316])
-            ("font-lock-warning-face" variable (:default-value (quote font-lock-warning-face)) nil [15318 15429])
-            ("font-lock-negation-char-face" variable (:default-value (quote font-lock-negation-char-face)) nil [15431 15599])
-            ("font-lock-preprocessor-face" variable (:default-value (quote font-lock-preprocessor-face)) nil [15601 15716])
-            ("define-obsolete-variable-alias" code nil nil [15718 15810])
-            ("font-lock-keywords" variable nil nil [15841 21692])
-            ("font-lock-keywords-alist" variable nil nil [21694 22298])
-            ("put" code nil nil [22299 22354])
-            ("font-lock-removed-keywords-alist" variable nil nil [22356 22756])
-            ("font-lock-keywords-only" variable nil nil [22758 22909])
-            ("font-lock-keywords-case-fold-search" variable nil nil [22911 23148])
-            ("make-variable-buffer-local" code nil nil [23149 23214])
-            ("font-lock-syntactically-fontified" variable nil nil [23216 23435])
-            ("make-variable-buffer-local" code nil nil [23436 23499])
-            ("font-lock-syntactic-face-function" variable (:default-value (lambda (state) (if (nth 3 state) font-lock-string-face font-lock-comment-face))) nil [23501 23918])
-            ("font-lock-syntactic-keywords" variable nil nil [23920 25141])
-            ("make-obsolete-variable" code nil nil [25142 25255])
-            ("font-lock-syntax-table" variable nil nil [25257 25450])
-            ("font-lock-mark-block-function" variable nil nil [25452 25718])
-            ("font-lock-fontify-buffer-function" variable (:default-value (function font-lock-default-fontify-buffer)) nil [25720 25891])
-            ("font-lock-unfontify-buffer-function" variable (:default-value (function font-lock-default-unfontify-buffer)) nil [25893 26116])
-            ("font-lock-fontify-region-function" variable (:default-value (function font-lock-default-fontify-region)) nil [26118 26614])
-            ("font-lock-unfontify-region-function" variable (:default-value (function font-lock-default-unfontify-region)) nil [26616 26853])
-            ("font-lock-inhibit-thing-lock" variable nil nil [26855 27103])
-            ("make-obsolete-variable" code nil nil [27104 27169])
-            ("defvar-local" code nil nil [27171 27504])
-            ("defvar-local" code nil nil [27506 27544])
-            ("font-lock-face-attributes" variable nil nil [28036 28070])
-            ("save-buffer-state" function (:arguments ("body")) nil [27745 27996])
-            ("defvar-local" code nil nil [28106 28147])
-            ("font-lock-specified-p" function (:arguments ("mode")) nil [28184 28571])
-            ("font-lock-initial-fontify" function nil nil [28573 29135])
-            ("font-lock-mode-internal" function (:arguments ("arg")) nil [29137 29560])
-            ("font-lock-add-keywords" function (:arguments ("mode" "keywords" "how")) nil [29562 33303])
-            ("font-lock-update-removed-keyword-alist" function (:arguments ("mode" "keywords" "how")) nil [33305 34393])
-            ("font-lock-remove-keywords" function (:arguments ("mode" "keywords")) nil [35191 37903])
-            ("font-lock-support-mode" variable (:default-value (quote jit-lock-mode)) nil [38247 39926])
-            ("fast-lock-mode" variable nil nil [39928 39951])
-            ("lazy-lock-mode" variable nil nil [39952 39975])
-            ("jit-lock-mode" variable nil nil [39976 39998])
-            ("declare-function" code nil nil [40000 40061])
-            ("declare-function" code nil nil [40062 40125])
-            ("declare-function" code nil nil [40126 40171])
-            ("declare-function" code nil nil [40172 40233])
-            ("declare-function" code nil nil [40234 40297])
-            ("declare-function" code nil nil [40298 40343])
-            ("font-lock-turn-on-thing-lock" function nil nil [40345 41667])
-            ("font-lock-turn-off-thing-lock" function nil nil [41669 42028])
-            ("font-lock-after-fontify-buffer" function nil nil [42030 42352])
-            ("font-lock-after-unfontify-buffer" function nil nil [42354 42890])
-            ("font-lock-extend-after-change-region-function" variable nil nil [45542 46292])
-            ("make-variable-buffer-local" code nil nil [46293 46368])
-            ("font-lock-fontify-buffer" function (:arguments ("interactively")) nil [46370 47350])
-            ("font-lock-unfontify-buffer" function nil nil [47352 47437])
-            ("font-lock-fontify-region" function (:arguments ("beg" "end" "loudly")) nil [47439 47749])
-            ("font-lock-unfontify-region" function (:arguments ("beg" "end")) nil [47751 47980])
-            ("font-lock-flush-function" variable (:default-value (function font-lock-after-change-function)) nil [47982 48146])
-            ("font-lock-flush" function (:arguments ("beg" "end")) nil [48148 48506])
-            ("font-lock-ensure-function" variable (:default-value (lambda (_beg _end) (unless font-lock-fontified (font-lock-default-fontify-buffer) (unless font-lock-mode (setq font-lock-fontified nil))))) nil [48508 49014])
-            ("font-lock-ensure" function (:arguments ("beg" "end")) nil [49016 49325])
-            ("font-lock-default-fontify-buffer" function nil nil [49327 50081])
-            ("font-lock-default-unfontify-buffer" function nil nil [50083 50422])
-            ("font-lock-dont-widen" variable nil nil [50424 50627])
-            ("font-lock-beg" variable nil nil [50630 50652])
-            ("font-lock-end" variable nil nil [50653 50675])
-            ("font-lock-extend-region-functions" variable (:default-value (quote (font-lock-extend-region-wholelines font-lock-extend-region-multiline))) nil [50676 51983])
-            ("make-variable-buffer-local" code nil nil [52114 52177])
-            ("font-lock-extend-region-multiline" function nil nil [52179 52948])
-            ("font-lock-extend-region-wholelines" function nil nil [52950 53441])
-            ("font-lock-default-fontify-region" function (:arguments ("beg" "end" "loudly")) nil [53443 55446])
-            ("font-lock-extra-managed-props" variable nil nil [55889 56102])
-            ("font-lock-default-unfontify-region" function (:arguments ("beg" "end")) nil [56104 56475])
-            ("font-lock-after-change-function" function (:arguments ("beg" "end" "old-len")) nil [56533 57680])
-            ("jit-lock-start" variable nil nil [57682 57705])
-            ("jit-lock-end" variable nil nil [57706 57727])
-            ("font-lock-extend-jit-lock-region-after-change" function (:arguments ("beg" "end" "old-len")) nil [57728 61204])
-            ("font-lock-fontify-block" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [61206 62328])
-            ("font-lock-prepend-text-property" function (:arguments ("start" "end" "prop" "value" "object")) nil [62762 63691])
-            ("font-lock-append-text-property" function (:arguments ("start" "end" "prop" "value" "object")) nil [63693 64619])
-            ("font-lock-fillin-text-property" function (:arguments ("start" "end" "prop" "value" "object")) nil [64621 65254])
-            ("font-lock--remove-face-from-text-property" function (:arguments ("start" "end" "prop" "value" "object")) nil [65256 66516])
-            ("font-lock-apply-syntactic-highlight" function (:arguments ("highlight")) nil [67120 68451])
-            ("font-lock-fontify-syntactic-anchored-keywords" function (:arguments ("keywords" "limit")) nil [68453 69502])
-            ("font-lock-fontify-syntactic-keywords-region" function (:arguments ("start" "end")) nil [69504 71314])
-            ("font-lock-comment-start-skip" variable nil nil [71411 71526])
-            ("font-lock-comment-end-skip" variable nil nil [71528 71634])
-            ("font-lock-fontify-syntactically-region" function (:arguments ("start" "end" "loudly")) nil [71636 73372])
-            ("font-lock-apply-highlight" function (:arguments ("highlight")) nil [73467 74991])
-            ("font-lock-fontify-anchored-keywords" function (:arguments ("keywords" "limit")) nil [74993 76405])
-            ("font-lock-fontify-keywords-region" function (:arguments ("start" "end" "loudly")) nil [76407 78796])
-            ("font-lock-compile-keywords" function (:arguments ("keywords" "syntactic-keywords")) nil [78874 80712])
-            ("font-lock-compile-keyword" function (:arguments ("keyword")) nil [80714 81592])
-            ("font-lock-eval-keywords" function (:arguments ("keywords")) nil [81594 81850])
-            ("font-lock-value-in-major-mode" function (:arguments ("values")) nil [81852 82205])
-            ("font-lock-choose-keywords" function (:arguments ("keywords" "level")) nil [82207 82595])
-            ("font-lock-refresh-defaults" function nil nil [82597 83173])
-            ("font-lock-major-mode" variable nil nil [83175 83273])
-            ("make-variable-buffer-local" code nil nil [83274 83324])
-            ("font-lock-set-defaults" function nil nil [83326 85988])
-            ("font-lock-comment-face" variable
-               (:default-value (quote ((((class grayscale) (background light)) :foreground "DimGray" :weight bold :slant italic) (((class grayscale) (background dark)) :foreground "LightGray" :weight bold :slant italic) (((class color) (min-colors 88) (background light)) :foreground "Firebrick") (((class color) (min-colors 88) (background dark)) :foreground "chocolate1") (((class color) (min-colors 16) (background light)) :foreground "red") (((class color) (min-colors 16) (background dark)) :foreground "red1") (((class color) (min-colors 8) (background light)) :foreground "red") (((class color) (min-colors 8) (background dark)) :foreground "yellow") (t :weight bold :slant italic)))
-                :type "face")
-                nil [86113 86950])
-            ("font-lock-comment-delimiter-face" variable
-               (:default-value (quote ((default :inherit font-lock-comment-face)))
-                :type "face")
-                nil [86952 87129])
-            ("font-lock-string-face" variable
-               (:default-value (quote ((((class grayscale) (background light)) :foreground "DimGray" :slant italic) (((class grayscale) (background dark)) :foreground "LightGray" :slant italic) (((class color) (min-colors 88) (background light)) :foreground "VioletRed4") (((class color) (min-colors 88) (background dark)) :foreground "LightSalmon") (((class color) (min-colors 16) (background light)) :foreground "RosyBrown") (((class color) (min-colors 16) (background dark)) :foreground "LightSalmon") (((class color) (min-colors 8)) :foreground "green") (t :slant italic)))
-                :type "face")
-                nil [87131 87812])
-            ("font-lock-doc-face" variable
-               (:default-value (quote ((t :inherit font-lock-string-face)))
-                :type "face")
-                nil [87814 87965])
-            ("font-lock-keyword-face" variable
-               (:default-value (quote ((((class grayscale) (background light)) :foreground "LightGray" :weight bold) (((class grayscale) (background dark)) :foreground "DimGray" :weight bold) (((class color) (min-colors 88) (background light)) :foreground "Purple") (((class color) (min-colors 88) (background dark)) :foreground "Cyan1") (((class color) (min-colors 16) (background light)) :foreground "Purple") (((class color) (min-colors 16) (background dark)) :foreground "Cyan") (((class color) (min-colors 8)) :foreground "cyan" :weight bold) (t :weight bold)))
-                :type "face")
-                nil [87967 88639])
-            ("font-lock-builtin-face" variable
-               (:default-value (quote ((((class grayscale) (background light)) :foreground "LightGray" :weight bold) (((class grayscale) (background dark)) :foreground "DimGray" :weight bold) (((class color) (min-colors 88) (background light)) :foreground "dark slate blue") (((class color) (min-colors 88) (background dark)) :foreground "LightSteelBlue") (((class color) (min-colors 16) (background light)) :foreground "Orchid") (((class color) (min-colors 16) (background dark)) :foreground "LightSteelBlue") (((class color) (min-colors 8)) :foreground "blue" :weight bold) (t :weight bold)))
-                :type "face")
-                nil [88641 89340])
-            ("font-lock-function-name-face" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) :foreground "Blue1") (((class color) (min-colors 88) (background dark)) :foreground "LightSkyBlue") (((class color) (min-colors 16) (background light)) :foreground "Blue") (((class color) (min-colors 16) (background dark)) :foreground "LightSkyBlue") (((class color) (min-colors 8)) :foreground "blue" :weight bold) (t :inverse-video t :weight bold)))
-                :type "face")
-                nil [89342 89893])
-            ("font-lock-variable-name-face" variable
-               (:default-value (quote ((((class grayscale) (background light)) :foreground "Gray90" :weight bold :slant italic) (((class grayscale) (background dark)) :foreground "DimGray" :weight bold :slant italic) (((class color) (min-colors 88) (background light)) :foreground "sienna") (((class color) (min-colors 88) (background dark)) :foreground "LightGoldenrod") (((class color) (min-colors 16) (background light)) :foreground "DarkGoldenrod") (((class color) (min-colors 16) (background dark)) :foreground "LightGoldenrod") (((class color) (min-colors 8)) :foreground "yellow" :weight light) (t :weight bold :slant italic)))
-                :type "face")
-                nil [89895 90656])
-            ("font-lock-type-face" variable
-               (:default-value (quote ((((class grayscale) (background light)) :foreground "Gray90" :weight bold) (((class grayscale) (background dark)) :foreground "DimGray" :weight bold) (((class color) (min-colors 88) (background light)) :foreground "ForestGreen") (((class color) (min-colors 88) (background dark)) :foreground "PaleGreen") (((class color) (min-colors 16) (background light)) :foreground "ForestGreen") (((class color) (min-colors 16) (background dark)) :foreground "PaleGreen") (((class color) (min-colors 8)) :foreground "green") (t :weight bold :underline t)))
-                :type "face")
-                nil [90658 91352])
-            ("font-lock-constant-face" variable
-               (:default-value (quote ((((class grayscale) (background light)) :foreground "LightGray" :weight bold :underline t) (((class grayscale) (background dark)) :foreground "Gray50" :weight bold :underline t) (((class color) (min-colors 88) (background light)) :foreground "dark cyan") (((class color) (min-colors 88) (background dark)) :foreground "Aquamarine") (((class color) (min-colors 16) (background light)) :foreground "CadetBlue") (((class color) (min-colors 16) (background dark)) :foreground "Aquamarine") (((class color) (min-colors 8)) :foreground "magenta") (t :weight bold :underline t)))
-                :type "face")
-                nil [91354 92093])
-            ("font-lock-warning-face" variable
-               (:default-value (quote ((t :inherit error)))
-                :type "face")
-                nil [92095 92229])
-            ("font-lock-negation-char-face" variable
-               (:default-value (quote ((t nil)))
-                :type "face")
-                nil [92231 92377])
-            ("font-lock-preprocessor-face" variable
-               (:default-value (quote ((t :inherit font-lock-builtin-face)))
-                :type "face")
-                nil [92379 92550])
-            ("font-lock-regexp-grouping-backslash" variable
-               (:default-value (quote ((t :inherit bold)))
-                :type "face")
-                nil [92552 92722])
-            ("font-lock-regexp-grouping-construct" variable
-               (:default-value (quote ((t :inherit bold)))
-                :type "face")
-                nil [92724 92897])
-            ("font-lock-match-c-style-declaration-item-and-skip-to-next" function (:arguments ("limit")) nil [97738 99767])
-            ("cpp-font-lock-keywords-source-directives" variable
-               (:constant-flag t
-                :default-value "define\\|e\\(?:l\\(?:if\\|se\\)\\|ndif\\|rror\\)\\|file\\|i\\(?:f\\(?:n?def\\)?\\|mport\\|nclude\\)\\|line\\|pragma\\|undef\\|warning")
-                nil [100392 100638])
-            ("cpp-font-lock-keywords-source-depth" variable (:constant-flag t) nil [100893 101075])
-            ("cpp-font-lock-keywords" variable
-               (:constant-flag t
-                :default-value (let* ((directives cpp-font-lock-keywords-source-directives) (directives-depth cpp-font-lock-keywords-source-depth)) (list (quote ("^#[ 	]*\\(?:error\\|warning\\)[ 	]+\\(.+\\)" 1 font-lock-warning-face prepend)) (quote ("^#[ 	]*\\(?:import\\|include\\)[ 	]*\\(<[^>\"
-]*>?\\)" 1 font-lock-string-face prepend)) (quote ("^#[ 	]*define[ 	]+\\([[:alpha:]_][[:alnum:]_$]*\\)(" (1 font-lock-function-name-face prepend) ((lambda (limit) (re-search-forward "\\(?:\\([[:alpha:]_][[:alnum:]_]*\\)[,]?\\)" (or (save-excursion (re-search-forward ")" limit t)) limit) t)) nil nil (1 font-lock-variable-name-face prepend)))) (quote ("^#[ 	]*\\(?:elif\\|if\\)\\>" ("\\<\\(defined\\)\\>[ 	]*(?\\([[:alpha:]_][[:alnum:]_]*\\)?" nil nil (1 font-lock-builtin-face prepend) (2 font-lock-variable-name-face prepend t)))) (list (concat "^\\(#[ 	]*\\(?:" directives "\\)\\)\\>[ 	!]*\\([[:alpha:]_][[:alnum:]_]*\\)?") (quote (1 font-lock-preprocessor-face prepend)) (list (+ 2 directives-depth) (quote font-lock-variable-name-face) nil t)))))
-                nil [101077 102884])
-            ("font-lock" package nil nil [102887 102907]))          
-      :file "font-lock.el"
-      :pointmax 102936
-      :fsize 102935
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax '((close-paren 28070 . 28071) (symbol 27608 . 27625) (open-paren 27607 . 27608) (close-paren 10536 . 10537) (symbol 10501 . 10518) (open-paren 10500 . 10501)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("reference-point-alist" variable
-               (:constant-flag t
-                :default-value (quote ((tl . 0) (tc . 1) (tr . 2) (Bl . 3) (Bc . 4) (Br . 5) (bl . 6) (bc . 7) (br . 8) (cl . 9) (cc . 10) (cr . 11) (top-left . 0) (top-center . 1) (top-right . 2) (base-left . 3) (base-center . 4) (base-right . 5) (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) (center-left . 9) (center-center . 10) (center-right . 11) (ml . 3) (mc . 10) (mr . 5) (mid-left . 3) (mid-center . 10) (mid-right . 5))))
-                nil [1167 3375])
-            ("encode-composition-rule" function (:arguments ("rule")) nil [3393 4588])
-            ("decode-composition-rule" function (:arguments ("rule-code")) nil [4795 5461])
-            ("encode-composition-components" function (:arguments ("components" "nocopy")) nil [5796 6268])
-            ("decode-composition-components" function (:arguments ("components" "nocopy")) nil [6725 7035])
-            ("compose-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "components" "modification-func"))
-                nil [7037 9256])
-            ("decompose-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [9258 9630])
-            ("compose-string" function (:arguments ("string" "start" "end" "components" "modification-func")) nil [9632 10596])
-            ("decompose-string" function (:arguments ("string")) nil [10598 10770])
-            ("compose-chars" function (:arguments ("args")) nil [10772 11648])
-            ("find-composition" function (:arguments ("pos" "limit" "string" "detail-p")) nil [11650 13632])
-            ("compose-chars-after" function (:arguments ("pos" "limit" "object")) nil [13636 15080])
-            ("compose-last-chars" function
-               (:user-visible-flag t
-                :arguments ("args"))
-                nil [15082 15993])
-            ("global-set-key" code nil nil [15995 16052])
-            ("lgstring-header" function (:arguments ("gstring")) nil [16173 16226])
-            ("lgstring-set-header" function (:arguments ("gstring" "header")) nil [16227 16298])
-            ("lgstring-font" function (:arguments ("gstring")) nil [16299 16368])
-            ("lgstring-char" function (:arguments ("gstring" "i")) nil [16369 16445])
-            ("lgstring-char-len" function (:arguments ("gstring")) nil [16446 16524])
-            ("lgstring-shaped-p" function (:arguments ("gstring")) nil [16525 16580])
-            ("lgstring-set-id" function (:arguments ("gstring" "id")) nil [16581 16640])
-            ("lgstring-glyph" function (:arguments ("gstring" "i")) nil [16641 16701])
-            ("lgstring-glyph-len" function (:arguments ("gstring")) nil [16702 16764])
-            ("lgstring-set-glyph" function (:arguments ("gstring" "i" "glyph")) nil [16765 16841])
-            ("lglyph-from" function (:arguments ("glyph")) nil [16843 16888])
-            ("lglyph-to" function (:arguments ("glyph")) nil [16889 16932])
-            ("lglyph-char" function (:arguments ("glyph")) nil [16933 16978])
-            ("lglyph-code" function (:arguments ("glyph")) nil [16979 17024])
-            ("lglyph-width" function (:arguments ("glyph")) nil [17025 17071])
-            ("lglyph-lbearing" function (:arguments ("glyph")) nil [17072 17121])
-            ("lglyph-rbearing" function (:arguments ("glyph")) nil [17122 17171])
-            ("lglyph-ascent" function (:arguments ("glyph")) nil [17172 17219])
-            ("lglyph-descent" function (:arguments ("glyph")) nil [17220 17268])
-            ("lglyph-adjustment" function (:arguments ("glyph")) nil [17269 17320])
-            ("lglyph-set-from-to" function (:arguments ("glyph" "from" "to")) nil [17322 17415])
-            ("lglyph-set-char" function (:arguments ("glyph" "char")) nil [17416 17475])
-            ("lglyph-set-code" function (:arguments ("glyph" "code")) nil [17476 17535])
-            ("lglyph-set-width" function (:arguments ("glyph" "width")) nil [17536 17598])
-            ("lglyph-set-adjustment" function (:arguments ("glyph" "xoff" "yoff" "wadjust")) nil [17599 17732])
-            ("lglyph-copy" function (:arguments ("glyph")) nil [17771 17823])
-            ("lgstring-insert-glyph" function (:arguments ("gstring" "idx" "glyph")) nil [17870 18369])
-            ("lgstring-remove-glyph" function (:arguments ("gstring" "idx")) nil [18408 18723])
-            ("compose-glyph-string" function (:arguments ("gstring" "from" "to")) nil [18725 19298])
-            ("compose-glyph-string-relative" function (:arguments ("gstring" "from" "to" "gap")) nil [19300 20514])
-            ("compose-gstring-for-graphic" function (:arguments ("gstring")) nil [20516 26437])
-            ("compose-gstring-for-dotted-circle" function (:arguments ("gstring")) nil [26439 28230])
-            ("when" code nil nil [28277 28722])
-            ("compose-gstring-for-terminal" function (:arguments ("gstring")) nil [28724 30667])
-            ("auto-compose-chars" function (:arguments ("func" "from" "to" "font-object" "string")) nil [30670 31609])
-            ("put" code nil nil [31611 31658])
-            ("make-variable-buffer-local" code nil nil [31660 31715])
-            ("setq-default" code nil nil [31716 31776])
-            ("define-minor-mode" code nil nil [31793 32394])
-            ("make-variable-buffer-local" code nil nil [32446 32497])
-            ("define-minor-mode" code nil nil [32514 32894])
-            ("defalias" code nil nil [32896 32954])
-            ("composite" package nil nil [32956 32976]))          
-      :file "composite.el"
-      :pointmax 33008
-      :fsize 33007
-      :lastmodtime '(23525 29504 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [976 993])
-            ("cl-defgeneric" code nil nil [996 1260])
-            ("cl-generic-define-context-rewriter" code nil nil [1262 1520])
-            ("cl-defmethod" code nil nil [1522 1921])
-            ("window-system-default-frame-alist" variable nil nil [1923 2370])
-            ("display-format-alist" variable nil nil [2372 2624])
-            ("initial-frame-alist" variable nil nil [2816 4049])
-            ("minibuffer-frame-alist" variable (:default-value (quote ((width . 80) (height . 2)))) nil [4051 4756])
-            ("handle-delete-frame" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [4758 5505])
-            ("handle-focus-in" function
-               (:user-visible-flag t
-                :arguments ("_event"))
-                nil [5507 5803])
-            ("handle-focus-out" function
-               (:user-visible-flag t
-                :arguments ("_event"))
-                nil [5805 6065])
-            ("handle-move-frame" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [6067 6317])
-            ("frame-initial-frame" variable nil nil [6813 6845])
-            ("frame-initial-frame-alist" variable nil nil [6924 6958])
-            ("frame-initial-geometry-arguments" variable nil nil [6960 7005])
-            ("frame-initialize" function nil nil [7194 8726])
-            ("frame-notice-user-settings" variable (:default-value t) nil [8728 8837])
-            ("declare-function" code nil nil [8839 8898])
-            ("declare-function" code nil nil [8899 8971])
-            ("defalias" code nil nil [8973 9023])
-            ("frame-notice-user-settings" function nil nil [9220 20335])
-            ("make-initial-minibuffer-frame" function (:arguments ("display")) nil [20337 20538])
-            ("modify-all-frames-parameters" function (:arguments ("alist")) nil [20605 21780])
-            ("get-other-frame" function nil nil [21782 22040])
-            ("next-multiframe-window" function (:user-visible-flag t) nil [22042 22300])
-            ("previous-multiframe-window" function (:user-visible-flag t) nil [22302 22566])
-            ("window-system-for-display" function (:arguments ("display")) nil [22568 23063])
-            ("make-frame-on-display" function
-               (:user-visible-flag t
-                :arguments ("display" "parameters"))
-                nil [23065 23334])
-            ("declare-function" code nil nil [23336 23393])
-            ("close-display-connection" function
-               (:user-visible-flag t
-                :arguments ("display"))
-                nil [23395 24747])
-            ("make-frame-command" function (:user-visible-flag t) nil [24749 25012])
-            ("before-make-frame-hook" variable nil nil [25014 25111])
-            ("after-make-frame-functions" variable nil nil [25113 25279])
-            ("after-setting-font-hook" variable nil nil [25281 25377])
-            ("define-obsolete-function-alias" code nil nil [25407 25469])
-            ("frame-inherited-parameters" variable (:default-value (quote nil)) nil [25471 25581])
-            ("x-display-name" variable nil nil [25583 25606])
-            ("make-frame" function
-               (:user-visible-flag t
-                :arguments ("parameters"))
-                nil [25608 29519])
-            ("filtered-frame-list" function (:arguments ("predicate")) nil [29521 29820])
-            ("minibuffer-frame-list" function nil nil [29822 30015])
-            ("get-device-terminal" function (:arguments ("device")) nil [30067 30820])
-            ("frames-on-display-list" function (:arguments ("device")) nil [30822 31264])
-            ("framep-on-display" function (:arguments ("terminal")) nil [31266 31705])
-            ("frame-remove-geometry-params" function (:arguments ("param-list")) nil [31707 32568])
-            ("declare-function" code nil nil [32570 32641])
-            ("select-frame-set-input-focus" function (:arguments ("frame" "norecord")) nil [32643 33753])
-            ("other-frame" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [33755 34865])
-            ("iconify-or-deiconify-frame" function (:user-visible-flag t) nil [34867 35097])
-            ("suspend-frame" function (:user-visible-flag t) nil [35099 35576])
-            ("make-frame-names-alist" function nil nil [35578 35984])
-            ("frame-name-history" variable nil nil [35986 36017])
-            ("select-frame-by-name" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [36018 36863])
-            ("frame-background-mode" variable nil nil [36890 37566])
-            ("declare-function" code nil nil [37568 37662])
-            ("declare-function" code nil nil [37707 37777])
-            ("inhibit-frame-set-background-mode" variable nil nil [37779 37825])
-            ("frame-set-background-mode" function (:arguments ("frame" "keep-face-specs")) nil [37827 40725])
-            ("frame-terminal-default-bg-mode" function (:arguments ("frame")) nil [40727 41243])
-            ("current-frame-configuration" function nil nil [41274 41870])
-            ("set-frame-configuration" function (:arguments ("configuration" "nodelete")) nil [41872 43867])
-            ("frame-height" function (:arguments ("frame")) nil [43962 44628])
-            ("frame-width" function (:arguments ("frame")) nil [44630 44835])
-            ("defalias" code nil nil [44837 44896])
-            ("defalias" code nil nil [44897 44946])
-            ("defalias" code nil nil [44947 44998])
-            ("frame-inner-width" function (:arguments ("frame")) nil [45000 45250])
-            ("frame-inner-height" function (:arguments ("frame")) nil [45252 45505])
-            ("frame-outer-width" function (:arguments ("frame")) nil [45507 45764])
-            ("frame-outer-height" function (:arguments ("frame")) nil [45766 46025])
-            ("declare-function" code nil nil [46027 46132])
-            ("define-obsolete-function-alias" code nil nil [46134 46207])
-            ("set-frame-font" function
-               (:user-visible-flag t
-                :arguments ("font" "keep-size" "frames"))
-                nil [46209 49525])
-            ("set-frame-parameter" function (:arguments ("frame" "parameter" "value")) nil [49527 49778])
-            ("set-background-color" function
-               (:user-visible-flag t
-                :arguments ("color-name"))
-                nil [49780 50525])
-            ("set-foreground-color" function
-               (:user-visible-flag t
-                :arguments ("color-name"))
-                nil [50527 51272])
-            ("set-cursor-color" function
-               (:user-visible-flag t
-                :arguments ("color-name"))
-                nil [51274 51760])
-            ("set-mouse-color" function
-               (:user-visible-flag t
-                :arguments ("color-name"))
-                nil [51762 52228])
-            ("set-border-color" function
-               (:user-visible-flag t
-                :arguments ("color-name"))
-                nil [52230 52612])
-            ("define-minor-mode" code nil nil [52614 53494])
-            ("define-minor-mode" code nil nil [53496 54337])
-            ("set-frame-name" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [54339 54715])
-            ("frame-current-scroll-bars" function (:arguments ("frame")) nil [54717 55439])
-            ("declare-function" code nil nil [55441 55503])
-            ("declare-function" code nil nil [55504 55570])
-            ("declare-function" code nil nil [55571 55635])
-            ("frame-geometry" function (:arguments ("frame")) nil [55637 58116])
-            ("frame--size-history" function (:arguments ("frame")) nil [58118 58946])
-            ("declare-function" code nil nil [58948 59012])
-            ("declare-function" code nil nil [59013 59081])
-            ("declare-function" code nil nil [59082 59148])
-            ("frame-edges" function (:arguments ("frame" "type")) nil [59150 60136])
-            ("declare-function" code nil nil [60138 60201])
-            ("declare-function" code nil nil [60202 60261])
-            ("declare-function" code nil nil [60262 60323])
-            ("mouse-absolute-pixel-position" function nil nil [60325 60875])
-            ("declare-function" code nil nil [60877 60948])
-            ("declare-function" code nil nil [60949 61022])
-            ("declare-function" code nil nil [61023 61092])
-            ("set-mouse-absolute-pixel-position" function (:arguments ("x" "y")) nil [61094 61595])
-            ("frame-monitor-attributes" function (:arguments ("frame")) nil [61597 62287])
-            ("frame-monitor-attribute" function (:arguments ("attribute" "frame" "x" "y")) nil [62289 63631])
-            ("frame-monitor-geometry" function (:arguments ("frame" "x" "y")) nil [63633 64444])
-            ("frame-monitor-workarea" function (:arguments ("frame" "x" "y")) nil [64446 65251])
-            ("declare-function" code nil nil [65253 65321])
-            ("declare-function" code nil nil [65322 65394])
-            ("declare-function" code nil nil [65395 65465])
-            ("frame-list-z-order" function (:arguments ("display")) nil [65467 66259])
-            ("declare-function" code nil nil [66261 66336])
-            ("declare-function" code nil nil [66337 66416])
-            ("declare-function" code nil nil [66417 66494])
-            ("frame-restack" function (:arguments ("frame1" "frame2" "above")) nil [66496 67857])
-            ("frame-size-changed-p" function (:arguments ("frame")) nil [67859 69021])
-            ("declare-function" code nil nil [69058 69101])
-            ("display-mouse-p" function (:arguments ("display")) nil [69103 69894])
-            ("display-popup-menus-p" function (:arguments ("display")) nil [69896 70182])
-            ("display-graphic-p" function (:arguments ("display")) nil [70184 70641])
-            ("display-images-p" function (:arguments ("display")) nil [70643 70921])
-            ("defalias" code nil nil [70923 70975])
-            ("defalias" code nil nil [70976 71027])
-            ("display-selections-p" function (:arguments ("display")) nil [71029 71657])
-            ("declare-function" code nil nil [71659 71725])
-            ("display-screens" function (:arguments ("display")) nil [71727 72116])
-            ("declare-function" code nil nil [72118 72189])
-            ("display-pixel-height" function (:arguments ("display")) nil [72191 72924])
-            ("declare-function" code nil nil [72926 72996])
-            ("display-pixel-width" function (:arguments ("display")) nil [72998 73726])
-            ("display-mm-dimensions-alist" variable nil nil [73728 74346])
-            ("declare-function" code nil nil [74348 74416])
-            ("display-mm-height" function (:arguments ("display")) nil [74418 75297])
-            ("declare-function" code nil nil [75299 75366])
-            ("display-mm-width" function (:arguments ("display")) nil [75368 76243])
-            ("declare-function" code nil nil [76245 76317])
-            ("display-backing-store" function (:arguments ("display")) nil [76422 76940])
-            ("declare-function" code nil nil [76942 77011])
-            ("display-save-under" function (:arguments ("display")) nil [77013 77410])
-            ("declare-function" code nil nil [77412 77477])
-            ("display-planes" function (:arguments ("display")) nil [77479 77920])
-            ("declare-function" code nil nil [77922 77992])
-            ("display-color-cells" function (:arguments ("display")) nil [77994 78439])
-            ("declare-function" code nil nil [78441 78512])
-            ("display-visual-class" function (:arguments ("display")) nil [78514 79104])
-            ("declare-function" code nil nil [79106 79192])
-            ("declare-function" code nil nil [79193 79282])
-            ("declare-function" code nil nil [79283 79371])
-            ("display-monitor-attributes-list" function (:arguments ("display")) nil [79373 81898])
-            ("frame-geom-value-cons" function (:arguments ("type" "value" "frame")) nil [81930 83800])
-            ("frame-geom-spec-cons" function (:arguments ("spec" "frame")) nil [83802 85058])
-            ("delete-other-frames" function
-               (:user-visible-flag t
-                :arguments ("frame"))
-                nil [85061 86690])
-            ("define-obsolete-variable-alias" code nil nil [86735 86821])
-            ("window-divider" customgroup (:user-visible-flag t) nil [86846 86949])
-            ("window-divider-default-places" variable (:default-value (quote right-only)) nil [86951 87815])
-            ("window-divider-width-valid-p" function (:arguments ("value")) nil [87817 87947])
-            ("window-divider-default-bottom-width" variable (:default-value 6) nil [87949 88599])
-            ("window-divider-default-right-width" variable (:default-value 6) nil [88601 89242])
-            ("window-divider-mode-apply" function (:arguments ("enable")) nil [89244 90536])
-            ("define-minor-mode" code nil nil [90538 91118])
-            ("blink-cursor-idle-timer" variable nil nil [91141 91316])
-            ("blink-cursor-timer" variable nil nil [91318 91480])
-            ("cursor" customgroup (:user-visible-flag t) nil [91482 91567])
-            ("blink-cursor-delay" variable (:default-value 0.5) nil [91569 91891])
-            ("blink-cursor-interval" variable (:default-value 0.5) nil [91893 92141])
-            ("blink-cursor-blinks" variable (:default-value 10) nil [92143 92353])
-            ("blink-cursor-blinks-done" variable (:default-value 1) nil [92355 92468])
-            ("blink-cursor--start-idle-timer" function nil nil [92470 93018])
-            ("blink-cursor--start-timer" function nil nil [93020 93305])
-            ("blink-cursor-start" function nil nil [93307 93910])
-            ("blink-cursor-timer-function" function nil nil [93912 94568])
-            ("blink-cursor-end" function nil nil [94571 94966])
-            ("blink-cursor-suspend" function nil nil [94968 95323])
-            ("blink-cursor-check" function nil nil [95325 95660])
-            ("define-obsolete-variable-alias" code nil nil [95662 95734])
-            ("define-minor-mode" code nil nil [95736 96852])
-            ("toggle-frame-maximized" function (:user-visible-flag t) nil [96891 97893])
-            ("toggle-frame-fullscreen" function (:user-visible-flag t) nil [97895 99330])
-            ("define-key" code nil nil [99352 99400])
-            ("define-key" code nil nil [99401 99450])
-            ("define-key" code nil nil [99451 99493])
-            ("define-key" code nil nil [99494 99535])
-            ("define-key" code nil nil [99536 99590])
-            ("define-key" code nil nil [99591 99651])
-            ("define-key" code nil nil [99652 99712])
-            ("define-obsolete-variable-alias" code nil nil [99762 99844])
-            ("make-variable-buffer-local" code nil nil [99846 99900])
-            ("make-obsolete-variable" code nil nil [99927 100021])
-            ("mapc" code nil nil [100422 100837])
-            ("frame" package nil nil [100839 100855]))          
-      :file "frame.el"
-      :pointmax 100880
-      :fsize 100879
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax '((close-paren 993 . 994) (symbol 958 . 975) (open-paren 957 . 958)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("read-envvar-name-history" variable nil nil [1442 1479])
-            ("read-envvar-name" function (:arguments ("prompt" "mustmatch")) nil [1481 2283])
-            ("setenv-history" variable nil nil [2331 2358])
-            ("env--substitute-vars-regexp" variable
-               (:constant-flag t
-                :default-value "\\$\\(?:\\(?1:[[:alnum:]_]+\\)\\|{\\(?1:[^{}]+\\)}\\|\\$\\)")
-                nil [2360 2462])
-            ("substitute-env-vars" function (:arguments ("string" "when-undefined")) nil [2464 4018])
-            ("substitute-env-in-file-name" function (:arguments ("filename")) nil [4020 4402])
-            ("setenv-internal" function (:arguments ("env" "variable" "value" "keep-empty")) nil [4404 5396])
-            ("setenv" function
-               (:user-visible-flag t
-                :arguments ("variable" "value" "substitute-env-vars"))
-                nil [5466 7869])
-            ("getenv" function
-               (:user-visible-flag t
-                :arguments ("variable" "frame"))
-                nil [7871 8921])
-            ("env" package nil nil [8923 8937]))          
-      :file "env.el"
-      :pointmax 8960
-      :fsize 8959
-      :lastmodtime '(23525 29506 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1228 1245])
-            ("cl-defstruct" code nil nil [1296 1628])
-            ("cl-defun" code nil nil [1630 2251])
-            ("register-alist" variable nil nil [2253 2966])
-            ("register" customgroup (:user-visible-flag t) nil [2968 3054])
-            ("register-separator" variable nil nil [3056 3452])
-            ("register-preview-delay" variable (:default-value 1) nil [3454 3780])
-            ("get-register" function (:arguments ("register")) nil [3782 3921])
-            ("set-register" function (:arguments ("register" "value")) nil [3923 4163])
-            ("register-describe-oneline" function (:arguments ("c")) nil [4165 4484])
-            ("register-preview-default" function (:arguments ("r")) nil [4486 4686])
-            ("register-preview-function" variable (:default-value (function register-preview-default)) nil [4688 4892])
-            ("register-preview" function (:arguments ("buffer" "show-empty")) nil [4894 5536])
-            ("register-read-with-preview" function (:arguments ("prompt")) nil [5538 6973])
-            ("point-to-register" function
-               (:user-visible-flag t
-                :arguments ("register" "arg"))
-                nil [6975 7662])
-            ("window-configuration-to-register" function
-               (:user-visible-flag t
-                :arguments ("register" "_arg"))
-                nil [7664 8308])
-            ("set-advertised-calling-convention" code nil nil [8370 8465])
-            ("frame-configuration-to-register" function
-               (:user-visible-flag t
-                :arguments ("register" "_arg"))
-                nil [8467 9099])
-            ("set-advertised-calling-convention" code nil nil [9161 9255])
-            ("make-obsolete" code nil nil [9257 9334])
-            ("defalias" code nil nil [9336 9383])
-            ("jump-to-register" function
-               (:user-visible-flag t
-                :arguments ("register" "delete"))
-                nil [9384 11427])
-            ("register-swap-out" function nil nil [11429 11782])
-            ("number-to-register" function
-               (:user-visible-flag t
-                :arguments ("number" "register"))
-                nil [11784 12485])
-            ("increment-register" function
-               (:user-visible-flag t
-                :arguments ("prefix" "register"))
-                nil [12487 13345])
-            ("view-register" function
-               (:user-visible-flag t
-                :arguments ("register"))
-                nil [13347 13826])
-            ("list-registers" function (:user-visible-flag t) nil [13828 14205])
-            ("describe-register-1" function (:arguments ("register" "verbose")) nil [14207 16408])
-            ("insert-register" function
-               (:user-visible-flag t
-                :arguments ("register" "arg"))
-                nil [16410 17617])
-            ("copy-to-register" function
-               (:user-visible-flag t
-                :arguments ("register" "start" "end" "delete-flag" "region"))
-                nil [17619 18590])
-            ("append-to-register" function
-               (:user-visible-flag t
-                :arguments ("register" "start" "end" "delete-flag"))
-                nil [18592 19598])
-            ("prepend-to-register" function
-               (:user-visible-flag t
-                :arguments ("register" "start" "end" "delete-flag"))
-                nil [19600 20610])
-            ("copy-rectangle-to-register" function
-               (:user-visible-flag t
-                :arguments ("register" "start" "end" "delete-flag"))
-                nil [20612 21548])
-            ("register" package nil nil [21550 21569]))          
-      :file "register.el"
-      :pointmax 21596
-      :fsize 21595
-      :lastmodtime '(23525 29516 0 0)
-      :unmatched-syntax '((close-paren 1245 . 1246) (symbol 1210 . 1227) (open-paren 1209 . 1210)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("wid-edit" include nil nil [6710 6729])
-            ("highlight-changes" customgroup (:user-visible-flag t) nil [6795 6889])
-            ("highlight-changes" variable
-               (:default-value (quote ((((min-colors 88) (class color)) (:foreground "red1")) (((class color)) (:foreground "red")) (t (:inverse-video t))))
-                :type "face")
-                nil [7284 7509])
-            ("highlight-changes-delete" variable
-               (:default-value (quote ((((min-colors 88) (class color)) (:foreground "red1" :underline t)) (((class color)) (:foreground "red" :underline t)) (t (:inverse-video t))))
-                :type "face")
-                nil [7588 7847])
-            ("define-obsolete-variable-alias" code nil nil [7912 8036])
-            ("highlight-changes-colors" variable (:default-value (if (eq (frame-parameter nil (quote background-mode)) (quote light)) (quote ("magenta" "blue" "darkgreen" "chocolate" "sienna4" "NavyBlue")) (quote ("yellow" "magenta" "blue" "maroon" "firebrick" "green4" "DarkOrchid")))) nil [8038 8821])
-            ("define-obsolete-variable-alias" code nil nil [8922 9040])
-            ("highlight-changes-visibility-initial-state" variable (:default-value t) nil [9042 9418])
-            ("define-obsolete-variable-alias" code nil nil [9554 9662])
-            ("highlight-changes-visible-string" variable (:default-value " +Chg") nil [9664 9965])
-            ("define-obsolete-variable-alias" code nil nil [9967 10078])
-            ("highlight-changes-invisible-string" variable (:default-value " -Chg") nil [10080 10382])
-            ("highlight-changes-global-modes" variable (:default-value t) nil [10384 11501])
-            ("highlight-changes-global-changes-existing-buffers" variable nil nil [11503 12023])
-            ("hilit-chg-list" variable nil nil [12057 12084])
-            ("hilit-chg-string" variable (:default-value " ??") nil [12085 12116])
-            ("make-variable-buffer-local" code nil nil [12118 12164])
-            ("define-minor-mode" code nil nil [12201 13979])
-            ("define-minor-mode" code nil nil [13997 14681])
-            ("hilit-chg-cust-fix-changes-face-list" function (:arguments ("w" "_wc" "event")) nil [14684 16295])
-            ("highlight-changes-face-list" variable nil nil [16298 16957])
-            ("hilit-chg-map-changes" function (:arguments ("func" "start-position" "end-position")) nil [16960 17598])
-            ("hilit-chg-display-changes" function (:arguments ("beg" "end")) nil [17601 17940])
-            ("hilit-chg-make-ov" function (:arguments ("prop" "start" "end")) nil [17943 18778])
-            ("hilit-chg-hide-changes" function (:arguments ("beg" "end")) nil [18780 19278])
-            ("hilit-chg-fixup" function (:arguments ("beg" "end")) nil [19281 19601])
-            ("highlight-changes-remove-highlight" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [19618 19944])
-            ("hilit-chg-set-face-on-change" function (:arguments ("beg" "end" "leng-before" "no-property-change")) nil [19946 22668])
-            ("hilit-chg-update" function nil nil [22670 23101])
-            ("hilit-chg-set" function nil nil [23103 23513])
-            ("hilit-chg-clear" function nil nil [23515 24222])
-            ("highlight-changes-next-change" function (:user-visible-flag t) nil [24240 24803])
-            ("highlight-changes-previous-change" function (:user-visible-flag t) nil [24821 25650])
-            ("hilit-chg-make-list" function (:arguments ("force")) nil [25729 27047])
-            ("hilit-chg-bump-change" function (:arguments ("prop" "start" "end")) nil [27049 27450])
-            ("highlight-changes-rotate-faces" function (:user-visible-flag t) nil [27467 29599])
-            ("highlight-markup-buffers" function (:arguments ("buf-a" "file-a" "buf-b" "file-b" "markup-a-only")) nil [29749 32141])
-            ("highlight-compare-buffers" function
-               (:user-visible-flag t
-                :arguments ("buf-a" "buf-b"))
-                nil [32158 33026])
-            ("highlight-compare-with-file" function
-               (:user-visible-flag t
-                :arguments ("file-b"))
-                nil [33043 34428])
-            ("hilit-chg-get-diff-info" function (:arguments ("buf-a" "file-a" "buf-b" "file-b")) nil [34431 34854])
-            ("hilit-chg-get-diff-list-hk" function nil nil [34857 36320])
-            ("define-globalized-minor-mode" code nil nil [36410 36526])
-            ("define-obsolete-function-alias" code nil nil [36528 36627])
-            ("highlight-changes-mode-turn-on" function nil nil [36629 37394])
-            ("hilit-chg-desktop-restore" function (:arguments ("desktop-buffer-locals")) nil [37494 37647])
-            ("add-to-list" code nil nil [37649 37758])
-            ("add-to-list" code nil nil [37760 37821])
-            ("hilit-chg-unload-function" function nil nil [38203 38347])
-            ("hilit-chg" package nil nil [38349 38369]))          
-      :file "hilit-chg.el"
-      :pointmax 38398
-      :fsize 38397
-      :lastmodtime '(23525 29510 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "wid-edit.el"
-      :fsize 126879
-      :lastmodtime '(23525 29521 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1050 1067])
-            ("obarray" include nil nil [1069 1087])
-            ("abbrev-mode" customgroup (:user-visible-flag t) nil [1089 1203])
-            ("abbrev-file-name" variable (:default-value (locate-user-emacs-file "abbrev_defs" ".abbrev_defs")) nil [1205 1395])
-            ("only-global-abbrevs" variable nil nil [1397 1648])
-            ("define-minor-mode" code nil nil [1650 2078])
-            ("put" code nil nil [2080 2129])
-            ("edit-abbrevs-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "" (quote abbrev-edit-save-buffer)) (define-key map "" (quote abbrev-edit-save-to-file)) (define-key map "" (quote edit-abbrevs-redefine)) map)) nil [2133 2413])
-            ("define-obsolete-variable-alias" code nil nil [2414 2496])
-            ("kill-all-abbrevs" function (:user-visible-flag t) nil [2498 2669])
-            ("copy-abbrev-table" function (:arguments ("table")) nil [2671 3009])
-            ("insert-abbrevs" function (:user-visible-flag t) nil [3011 3297])
-            ("list-abbrevs" function
-               (:user-visible-flag t
-                :arguments ("local"))
-                nil [3299 3597])
-            ("abbrev-table-name" function (:arguments ("table")) nil [3599 3885])
-            ("prepare-abbrev-list-buffer" function (:arguments ("local")) nil [3887 4773])
-            ("edit-abbrevs" function (:user-visible-flag t) nil [4775 5718])
-            ("edit-abbrevs-redefine" function (:user-visible-flag t) nil [5720 5915])
-            ("define-abbrevs" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5917 6915])
-            ("read-abbrev-file" function
-               (:user-visible-flag t
-                :arguments ("file" "quietly"))
-                nil [6917 7434])
-            ("quietly-read-abbrev-file" function (:arguments ("file")) nil [7436 7761])
-            ("write-abbrev-file" function
-               (:user-visible-flag t
-                :arguments ("file" "verbose"))
-                nil [7763 9522])
-            ("abbrev-edit-save-to-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [9524 9844])
-            ("abbrev-edit-save-buffer" function (:user-visible-flag t) nil [9846 10079])
-            ("add-mode-abbrev" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [10083 10623])
-            ("add-global-abbrev" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [10625 11115])
-            ("add-abbrev" function (:arguments ("table" "type" "arg")) nil [11117 11710])
-            ("inverse-add-mode-abbrev" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [11712 12143])
-            ("inverse-add-global-abbrev" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [12145 12488])
-            ("inverse-add-abbrev" function (:arguments ("table" "type" "arg")) nil [12490 13101])
-            ("abbrev-prefix-mark" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [13103 13764])
-            ("expand-region-abbrevs" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "noquery"))
-                nil [13766 14461])
-            ("abbrev-table-get" function (:arguments ("table" "prop")) nil [14487 14640])
-            ("abbrev-table-put" function (:arguments ("table" "prop" "val")) nil [14642 14872])
-            ("defalias" code nil nil [14874 14963])
-            ("defalias" code nil nil [14965 15135])
-            ("abbrev-table-name-list" variable (:default-value (quote (fundamental-mode-abbrev-table global-abbrev-table))) nil [15191 15332])
-            ("make-abbrev-table" function (:arguments ("props")) nil [15334 16073])
-            ("abbrev-table-p" function (:arguments ("object")) nil [16075 16245])
-            ("abbrev-table-empty-p" function (:arguments ("object" "ignore-system")) nil [16247 16827])
-            ("global-abbrev-table" variable (:default-value (make-abbrev-table)) nil [16829 17076])
-            ("abbrev-minor-mode-table-alist" variable nil nil [17078 17333])
-            ("fundamental-mode-abbrev-table" variable (:default-value (let ((table (make-abbrev-table))) (setq-default local-abbrev-table table) table)) nil [17335 17610])
-            ("abbrevs-changed" variable nil nil [17612 17760])
-            ("abbrev-all-caps" variable nil nil [17762 17903])
-            ("abbrev-start-location" variable nil nil [17905 18107])
-            ("abbrev-start-location-buffer" variable nil nil [18109 18287])
-            ("last-abbrev" variable nil nil [18289 18386])
-            ("last-abbrev-text" variable nil nil [18388 18518])
-            ("last-abbrev-location" variable nil nil [18520 18610])
-            ("pre-abbrev-expand-hook" variable nil nil [18787 19062])
-            ("make-obsolete-variable" code nil nil [19063 19142])
-            ("clear-abbrev-table" function (:arguments ("table")) nil [19144 19771])
-            ("define-abbrev" function (:arguments ("table" "name" "expansion" "hook" "props")) nil [19773 22914])
-            ("abbrev--check-chars" function (:arguments ("abbrev" "global")) nil [22916 23659])
-            ("define-global-abbrev" function
-               (:user-visible-flag t
-                :arguments ("abbrev" "expansion"))
-                nil [23661 24019])
-            ("define-mode-abbrev" function
-               (:user-visible-flag t
-                :arguments ("abbrev" "expansion"))
-                nil [24021 24443])
-            ("abbrev--active-tables" function (:arguments ("tables")) nil [24445 25492])
-            ("abbrev--symbol" function (:arguments ("abbrev" "table")) nil [25495 26443])
-            ("abbrev-symbol" function (:arguments ("abbrev" "table")) nil [26445 27139])
-            ("abbrev-expansion" function (:arguments ("abbrev" "table")) nil [27142 27402])
-            ("abbrev--before-point" function nil nil [27405 30023])
-            ("abbrev-insert" function (:arguments ("abbrev" "name" "wordstart" "wordend")) nil [30025 33069])
-            ("abbrev-expand-functions" variable nil nil [33071 33157])
-            ("make-obsolete-variable" code nil nil [33158 33238])
-            ("abbrev-expand-function" variable (:default-value (function abbrev--default-expand)) nil [33240 33443])
-            ("expand-abbrev" function (:user-visible-flag t) nil [33445 33936])
-            ("abbrev--default-expand" function nil nil [33938 35457])
-            ("unexpand-abbrev" function (:user-visible-flag t) nil [35459 36357])
-            ("abbrev--write" function (:arguments ("sym")) nil [36359 36814])
-            ("abbrev--describe" function (:arguments ("sym")) nil [36816 37210])
-            ("insert-abbrev-table-description" function (:arguments ("name" "readable")) nil [37212 38253])
-            ("define-abbrev-table" function (:arguments ("tablename" "definitions" "docstring" "props")) nil [38255 40544])
-            ("abbrev-table-menu" function (:arguments ("table" "prompt" "sortfun")) nil [40546 41397])
-            ("define-derived-mode" code nil nil [41492 41622])
-            ("abbrev" package nil nil [41624 41641]))          
-      :file "abbrev.el"
-      :pointmax 41667
-      :fsize 41666
-      :lastmodtime '(23525 29502 0 0)
-      :unmatched-syntax '((close-paren 1067 . 1068) (symbol 1032 . 1049) (open-paren 1031 . 1032)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("obarray-default-size" variable
-               (:constant-flag t
-                :default-value 59)
-                nil [968 1072])
-            ("obarray-make" function (:arguments ("size")) nil [1074 1319])
-            ("obarray-size" function (:arguments ("ob")) nil [1321 1406])
-            ("obarrayp" function (:arguments ("object")) nil [1408 1525])
-            ("obarray-get" function (:arguments ("ob" "name")) nil [1587 1725])
-            ("obarray-put" function (:arguments ("ob" "name")) nil [1727 1867])
-            ("obarray-remove" function (:arguments ("ob" "name")) nil [1869 2021])
-            ("obarray-map" function (:arguments ("fn" "ob")) nil [2023 2136])
-            ("obarray" package nil nil [2138 2156]))          
-      :file "obarray.el"
-      :pointmax 2182
-      :fsize 2183
-      :lastmodtime '(23525 29514 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("widget" include nil nil [1249 1266])
-            ("custom-define-hook" variable nil nil [1268 1417])
-            ("custom-dont-initialize" variable nil nil [1419 1602])
-            ("custom-current-group-alist" variable nil nil [1604 1717])
-            ("custom-initialize-default" function (:arguments ("symbol" "exp")) nil [1747 2210])
-            ("custom-initialize-set" function (:arguments ("symbol" "exp")) nil [2212 2787])
-            ("custom-initialize-reset" function (:arguments ("symbol" "exp")) nil [2789 3556])
-            ("custom-initialize-changed" function (:arguments ("symbol" "exp")) nil [3558 4336])
-            ("custom-delayed-init-variables" variable nil nil [4338 4435])
-            ("custom-initialize-delay" function (:arguments ("symbol" "_value")) nil [4437 5561])
-            ("custom-declare-variable" function (:arguments ("symbol" "default" "doc" "args")) nil [5563 8228])
-            ("defcustom" function (:arguments ("symbol" "standard" "doc" "args")) nil [8230 14484])
-            ("defface" function (:arguments ("face" "spec" "doc" "args")) nil [14512 17452])
-            ("custom-current-group" function nil nil [17481 17570])
-            ("custom-declare-group" function (:arguments ("symbol" "members" "doc" "args")) nil [17572 18617])
-            ("defgroup" function (:arguments ("symbol" "members" "doc" "args")) nil [18619 19782])
-            ("custom-add-to-group" function (:arguments ("group" "option" "widget")) nil [19784 20130])
-            ("custom-group-of-mode" function (:arguments ("mode")) nil [20132 20534])
-            ("custom-handle-all-keywords" function (:arguments ("symbol" "args" "type")) nil [20553 21143])
-            ("custom-handle-keyword" function (:arguments ("symbol" "keyword" "value" "type")) nil [21145 21856])
-            ("custom-add-dependencies" function (:arguments ("symbol" "value")) nil [21858 22611])
-            ("custom-add-option" function (:arguments ("symbol" "option")) nil [22613 23064])
-            ("defalias" code nil nil [23065 23121])
-            ("custom-add-link" function (:arguments ("symbol" "widget")) nil [23123 23359])
-            ("custom-add-version" function (:arguments ("symbol" "version")) nil [23361 23511])
-            ("custom-add-package-version" function (:arguments ("symbol" "version")) nil [23513 23687])
-            ("custom-add-load" function (:arguments ("symbol" "load")) nil [23689 23985])
-            ("custom-autoload" function (:arguments ("symbol" "load" "noset")) nil [23987 24273])
-            ("custom-variable-p" function (:arguments ("variable")) nil [24275 24708])
-            ("define-obsolete-function-alias" code nil nil [24710 24785])
-            ("custom-note-var-changed" function (:arguments ("variable")) nil [24787 25082])
-            ("custom-load-recursion" variable nil nil [25225 25301])
-            ("custom-load-symbol" function (:arguments ("symbol")) nil [25303 26562])
-            ("custom-local-buffer" variable nil nil [26565 26885])
-            ("put" code nil nil [26886 26931])
-            ("custom-set-default" function (:arguments ("variable" "value")) nil [26933 27314])
-            ("custom-set-minor-mode" function (:arguments ("variable" "value")) nil [27316 27740])
-            ("custom-quote" function (:arguments ("sexp")) nil [27742 28080])
-            ("customize-mark-to-save" function (:arguments ("symbol")) nil [28082 29245])
-            ("customize-mark-as-set" function (:arguments ("symbol")) nil [29247 30402])
-            ("custom-reevaluate-setting" function (:arguments ("symbol")) nil [30404 31586])
-            ("custom-known-themes" variable (:default-value (quote (user changed))) nil [33413 33801])
-            ("custom-theme-p" function (:arguments ("theme")) nil [33803 33912])
-            ("custom-check-theme" function (:arguments ("theme")) nil [33914 34092])
-            ("custom-push-theme" function (:arguments ("prop" "symbol" "theme" "mode" "value")) nil [34094 36290])
-            ("custom-fix-face-spec" function (:arguments ("spec")) nil [36292 37062])
-            ("custom-set-variables" function (:arguments ("args")) nil [37065 37676])
-            ("custom-theme-set-variables" function (:arguments ("theme" "args")) nil [37678 40353])
-            ("custom--sort-vars-table" variable nil nil [40355 40387])
-            ("custom--sort-vars-result" variable nil nil [40388 40421])
-            ("custom--sort-vars" function (:arguments ("vars")) nil [40423 41955])
-            ("custom--sort-vars-1" function (:arguments ("sym" "_ignored")) nil [41957 42541])
-            ("deftheme" function (:arguments ("theme" "doc" "ignored")) nil [43137 43758])
-            ("custom-declare-theme" function (:arguments ("theme" "feature" "doc" "ignored")) nil [43760 44248])
-            ("custom-make-theme-feature" function (:arguments ("theme")) nil [44250 44755])
-            ("custom-theme-directory" variable (:default-value user-emacs-directory) nil [44779 45126])
-            ("custom-theme-load-path" variable (:default-value (list (quote custom-theme-directory) t)) nil [45128 45886])
-            ("custom--inhibit-theme-enable" variable nil nil [45888 46174])
-            ("provide-theme" function (:arguments ("theme")) nil [46176 46574])
-            ("custom-safe-themes" variable (:default-value (quote (default))) nil [46576 47196])
-            ("load-theme" function
-               (:user-visible-flag t
-                :arguments ("theme" "no-confirm" "no-enable"))
-                nil [47198 50122])
-            ("custom-theme-load-confirm" function (:arguments ("hash")) nil [50124 50874])
-            ("custom-theme-name-valid-p" function (:arguments ("name")) nil [50876 51141])
-            ("custom-available-themes" function nil nil [51143 52023])
-            ("custom-theme--load-path" function nil nil [52025 52344])
-            ("enable-theme" function
-               (:user-visible-flag t
-                :arguments ("theme"))
-                nil [52391 53627])
-            ("custom-enabled-themes" variable nil nil [53629 54939])
-            ("custom-theme-enabled-p" function (:arguments ("theme")) nil [54941 55059])
-            ("disable-theme" function
-               (:user-visible-flag t
-                :arguments ("theme"))
-                nil [55061 56660])
-            ("declare-function" code nil nil [56702 56796])
-            ("custom--frame-color-default" function (:arguments ("frame" "attribute" "resource-attr" "resource-class" "tty-default" "x-default")) nil [56798 57158])
-            ("custom-variable-theme-value" function (:arguments ("variable")) nil [57160 57553])
-            ("custom-theme-recalc-variable" function (:arguments ("variable")) nil [57555 58010])
-            ("custom-theme-recalc-face" function (:arguments ("face")) nil [58012 58432])
-            ("custom-theme-reset-variables" function (:arguments ("theme" "args")) nil [58649 59020])
-            ("custom-reset-variables" function (:arguments ("args")) nil [59022 59363])
-            ("custom" package nil nil [59379 59396]))          
-      :file "custom.el"
-      :pointmax 59422
-      :fsize 59421
-      :lastmodtime '(23525 29504 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "widget.el"
-      :fsize 3916
-      :lastmodtime '(23525 29521 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ansi-color" include nil nil [3956 3977])
-            ("cl-lib" include nil nil [3978 3995])
-            ("button" include nil nil [3996 4013])
-            ("man" customgroup (:user-visible-flag t) nil [4015 4114])
-            ("Man-notify" variable nil nil [4116 4135])
-            ("Man-filter-list" variable nil nil [4137 4742])
-            ("Man-uses-untabify-flag" variable (:default-value t) nil [4744 4845])
-            ("Man-sed-script" variable nil nil [4846 4941])
-            ("Man-fontify-manpage-flag" variable (:default-value t) nil [4943 5062])
-            ("Man-overstrike" variable
-               (:default-value (quote ((t (:inherit bold))))
-                :type "face")
-                nil [5064 5189])
-            ("Man-underline" variable
-               (:default-value (quote ((t (:inherit underline))))
-                :type "face")
-                nil [5191 5321])
-            ("Man-reverse" variable
-               (:default-value (quote ((t (:inherit highlight))))
-                :type "face")
-                nil [5323 5453])
-            ("Man-ansi-color-map" variable (:default-value (let ((ansi-color-faces-vector [default Man-overstrike default Man-underline Man-underline default default Man-reverse])) (ansi-color-make-color-map))) nil [5455 5703])
-            ("Man-notify-method" variable (:default-value (if (boundp (quote Man-notify)) Man-notify (quote friendly))) nil [5770 6848])
-            ("Man-width" variable nil nil [6850 7306])
-            ("Man-frame-parameters" variable nil nil [7308 7529])
-            ("Man-downcase-section-letters-flag" variable (:default-value t) nil [7531 7995])
-            ("Man-circular-pages-flag" variable (:default-value t) nil [7997 8138])
-            ("Man-section-translations-alist" variable (:default-value (list (quote ("3C++" . "3")) (quote ("3X11" . "3")) (quote ("1-UCB" . "")))) nil [8140 8779])
-            ("Man-header-file-path" variable (:default-value (let ((arch (with-temp-buffer (when (eq 0 (ignore-errors (call-process "gcc" nil (quote (t nil)) nil "-print-multiarch"))) (goto-char (point-min)) (buffer-substring (point) (line-end-position))))) (base (quote ("/usr/include" "/usr/local/include")))) (if (zerop (length arch)) base (append base (list (expand-file-name arch "/usr/include")))))) nil [8819 9473])
-            ("Man-name-local-regexp" variable (:default-value (concat "^" (regexp-opt (quote ("NOM" "NAME"))) "$")) nil [9475 9729])
-            ("manual-program" variable (:default-value "man") nil [9731 9841])
-            ("Man-untabify-command" variable (:default-value "pr") nil [9843 9953])
-            ("Man-untabify-command-args" variable (:default-value (list "-t" "-e")) nil [9955 10122])
-            ("Man-sed-command" variable (:default-value "sed") nil [10124 10237])
-            ("Man-awk-command" variable (:default-value "awk") nil [10239 10352])
-            ("Man-coding-system" variable nil nil [10510 10720])
-            ("Man-mode-hook" variable nil nil [10722 10818])
-            ("Man-cooked-hook" variable nil nil [10820 10952])
-            ("Man-name-regexp" variable (:default-value "[-[:alnum:]_\302\255+][-[:alnum:]_.:\302\255+]*") nil [10954 11089])
-            ("Man-section-regexp" variable (:default-value "[0-9][a-zA-Z0-9+]*\\|[LNln]") nil [11091 11220])
-            ("Man-page-header-regexp" variable (:default-value (if (string-match "-solaris2\\." system-configuration) (concat "^[-[:alnum:]_].*[ 	]\\(" Man-name-regexp "(\\(" Man-section-regexp "\\))\\)$") (concat "^[ 	]*\\(" Man-name-regexp "(\\(" Man-section-regexp "\\))\\).*\\1"))) nil [11222 11558])
-            ("Man-heading-regexp" variable (:default-value "^\\([[:upper:]][[:upper:]0-9 /-]+\\)$") nil [11560 11686])
-            ("Man-see-also-regexp" variable (:default-value "\\(SEE ALSO\\|VOIR AUSSI\\|SIEHE AUCH\\|V\303\211ASE TAMBI\303\211N\\|VEJA TAMB\303\211M\\|VEDERE ANCHE\\|ZOBACZ TAK\305\273E\\|\304\260LG\304\260L\304\260 BELGELER\\|\345\217\202\347\205\247\\|\345\217\202\350\247\201 SEE ALSO\\|\345\217\203\350\246\213 SEE ALSO\\)") nil [11688 11987])
-            ("Man-first-heading-regexp" variable (:default-value "^NAME$\\|^[ 	]*No manual entry fo.*$") nil [12203 12397])
-            ("Man-reference-regexp" variable (:default-value (concat "\\(" Man-name-regexp "\\(\342\200\220?


-[ 	]+" Man-name-regexp "\\)*\\)[ 	]*(\\(" Man-section-regexp "\\))")) nil [12399 12611])
-            ("Man-apropos-regexp" variable (:default-value (concat "\\[\\(" Man-name-regexp "\\)\\][ 	]*(\\(" Man-section-regexp "\\))")) nil [12613 12801])
-            ("Man-synopsis-regexp" variable (:default-value "SYNOPSIS") nil [12803 12959])
-            ("Man-files-regexp" variable (:default-value "FILES\\>") nil [12961 13191])
-            ("Man-include-regexp" variable (:default-value "#[ 	]*include[ 	]*") nil [13193 13310])
-            ("Man-file-name-regexp" variable (:default-value "[^<>\", 	


-]+") nil [13312 13432])
-            ("Man-normal-file-prefix-regexp" variable (:default-value "[/~$]") nil [13434 13553])
-            ("Man-header-regexp" variable (:default-value (concat "\\(" Man-include-regexp "\\)" "[<\"]" "\\(" Man-file-name-regexp "\\)" "[>\"]")) nil [13555 13764])
-            ("Man-normal-file-regexp" variable (:default-value (concat Man-normal-file-prefix-regexp Man-file-name-regexp)) nil [13766 13921])
-            ("Man-hyphenated-reference-regexp" variable (:default-value (concat "\\(" Man-name-regexp "\\)\\((\\(" Man-section-regexp "\\))\\)?")) nil [14019 14206])
-            ("Man-switches" variable nil nil [14208 14442])
-            ("Man-specified-section-option" variable (:default-value (if (string-match "-solaris[0-9.]*$" system-configuration) "-s" "")) nil [14444 14622])
-            ("Man-support-local-filenames" variable (:default-value (quote auto-detect)) nil [14624 14897])
-            ("man-imenu-title" variable (:default-value "Contents") nil [14899 15050])
-            ("Man-original-frame" variable nil nil [15100 15127])
-            ("make-variable-buffer-local" code nil nil [15128 15176])
-            ("Man-arguments" variable nil nil [15177 15199])
-            ("make-variable-buffer-local" code nil nil [15200 15243])
-            ("put" code nil nil [15244 15283])
-            ("Man--sections" variable nil nil [15285 15311])
-            ("make-variable-buffer-local" code nil nil [15312 15355])
-            ("Man--refpages" variable nil nil [15356 15382])
-            ("make-variable-buffer-local" code nil nil [15383 15426])
-            ("Man-page-list" variable nil nil [15427 15453])
-            ("make-variable-buffer-local" code nil nil [15454 15497])
-            ("Man-current-page" variable nil nil [15498 15525])
-            ("make-variable-buffer-local" code nil nil [15526 15572])
-            ("Man-page-mode-string" variable (:default-value "1 of 1") nil [15573 15611])
-            ("make-variable-buffer-local" code nil nil [15612 15662])
-            ("Man-sysv-sed-script" variable
-               (:constant-flag t
-                :default-value "// {	s/_//g


-	s/_//g


-        s/o+/o/g


-        s/+o/o/g


-	:ovstrk


-	s/\\(.\\)\\1/\\1/g


-	t ovstrk


-	}


-/\\[[0-9][0-9]*m/ s///g")
-                nil [15664 15910])
-            ("Man-berkeley-sed-script" variable
-               (:constant-flag t
-                :default-value "// {	s/_//g\\


-	s/_//g\\


-        s/o+/o/g\\


-        s/+o/o/g\\


-	:ovstrk\\


-	s/\\(.\\)\\1/\\1/g\\


-	t ovstrk\\


-	}\\


-/\\[[0-9][0-9]*m/ s///g")
-                nil [15912 16182])
-            ("Man-topic-history" variable nil nil [16184 16236])
-            ("Man-mode-syntax-table" variable (:default-value (let ((table (copy-syntax-table (standard-syntax-table)))) (modify-syntax-entry 46 "w" table) (modify-syntax-entry 95 "w" table) (modify-syntax-entry 58 "w" table) table)) nil [16238 16539])
-            ("Man-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (suppress-keymap map) (set-keymap-parent map (make-composed-keymap button-buffer-map special-mode-map)) (define-key map "n" (quote Man-next-section)) (define-key map "p" (quote Man-previous-section)) (define-key map "n" (quote Man-next-manpage)) (define-key map "p" (quote Man-previous-manpage)) (define-key map "." (quote beginning-of-buffer)) (define-key map "r" (quote Man-follow-manual-reference)) (define-key map "g" (quote Man-goto-section)) (define-key map "s" (quote Man-goto-see-also-section)) (define-key map "k" (quote Man-kill)) (define-key map "u" (quote Man-update-manpage)) (define-key map "m" (quote man)) (define-key map "
" (quote man-follow)) (easy-menu-define nil map "`Man-mode' menu." (quote ("Man" ["Next Section" Man-next-section t] ["Previous Section" Man-previous-section t] ["Go To Section..." Man-goto-section t] ["Go To \"SEE ALSO\" Section" Man-goto-see-also-section :active (cl-member Man-see-also-regexp Man--sections :test (function string-match-p))] ["Follow Reference..." Man-follow-manual-reference :active Man--refpages :help "Go to a manpage referred to in the \"SEE ALSO\" section"] "--" ["Next Manpage" Man-next-manpage :active (> (length Man-page-list) 1)] ["Previous Manpage" Man-previous-manpage :active (> (length Man-page-list) 1)] "--" ["Man..." man t] ["Kill Buffer" Man-kill t] ["Quit" quit-window t]))) map)) nil [16541 18304])
-            ("define-button-type" code nil nil [18317 18480])
-            ("Man-xref-button-action" function (:arguments ("button")) nil [18482 18763])
-            ("define-button-type" code nil nil [18765 18865])
-            ("define-button-type" code nil nil [18868 19183])
-            ("define-button-type" code nil nil [19185 19563])
-            ("Man-init-defvars" function nil nil [19655 22416])
-            ("Man-make-page-mode-string" function nil nil [22418 22649])
-            ("Man-build-man-command" function nil nil [22651 23738])
-            ("Man-translate-cleanup" function (:arguments ("string")) nil [23741 24161])
-            ("Man-translate-references" function (:arguments ("ref")) nil [24163 25528])
-            ("Man-support-local-filenames" function nil nil [25530 26896])
-            ("Man-default-man-entry" function (:arguments ("pos")) nil [27017 30523])
-            ("defalias" code nil nil [30712 30741])
-            ("Man-completion-cache" variable nil nil [30743 30981])
-            ("Man-man-k-use-anchor" variable (:default-value (memq system-type (quote (gnu gnu/linux gnu/kfreebsd)))) nil [30983 31511])
-            ("Man-parse-man-k" function nil nil [31513 33169])
-            ("Man-completion-table" function (:arguments ("string" "pred" "action")) nil [33171 36417])
-            ("man" function
-               (:user-visible-flag t
-                :arguments ("man-args"))
-                nil [36434 38770])
-            ("man-follow" function
-               (:user-visible-flag t
-                :arguments ("man-args"))
-                nil [38787 39045])
-            ("Man-start-calling" function (:arguments ("body")) nil [39047 41610])
-            ("Man-getpage-in-background" function (:arguments ("topic")) nil [41612 43363])
-            ("Man-update-manpage" function (:user-visible-flag t) nil [43365 44304])
-            ("Man-notify-when-ready" function (:arguments ("man-buffer")) nil [44306 45874])
-            ("Man-softhyphen-to-minus" function nil nil [45876 46208])
-            ("Man-fontify-manpage" function (:user-visible-flag t) nil [46210 48673])
-            ("Man-highlight-references" function (:arguments ("xref-man-type")) nil [48675 49904])
-            ("Man-highlight-references0" function (:arguments ("start-section" "regexp" "button-pos" "target" "type")) nil [49906 50701])
-            ("Man-cleanup-manpage" function
-               (:user-visible-flag t
-                :arguments ("interactive"))
-                nil [50703 51970])
-            ("Man-bgproc-filter" function (:arguments ("process" "string")) nil [51972 52948])
-            ("Man-bgproc-sentinel" function (:arguments ("process" "msg")) nil [52950 56452])
-            ("Man-page-from-arguments" function (:arguments ("args")) nil [56454 56709])
-            ("bookmark-make-record-function" variable nil nil [56837 56875])
-            ("define-derived-mode" code nil nil [56877 59363])
-            ("Man-build-section-alist" function nil nil [59365 59792])
-            ("Man-build-references-alist" function nil nil [59794 61033])
-            ("Man-build-page-list" function nil nil [61035 62171])
-            ("Man-strip-page-headers" function nil nil [62173 63048])
-            ("Man-unindent" function nil nil [63050 64348])
-            ("Man-next-section" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [64448 65011])
-            ("Man-previous-section" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [65013 65326])
-            ("Man-find-section" function (:arguments ("section")) nil [65328 65690])
-            ("Man--last-section" variable nil nil [65692 65722])
-            ("Man-goto-section" function
-               (:user-visible-flag t
-                :arguments ("section"))
-                nil [65724 66308])
-            ("Man-goto-see-also-section" function (:user-visible-flag t) nil [66311 66629])
-            ("Man-possibly-hyphenated-word" function nil nil [66631 67324])
-            ("Man--last-refpage" variable nil nil [67326 67356])
-            ("Man-follow-manual-reference" function
-               (:user-visible-flag t
-                :arguments ("reference"))
-                nil [67358 68602])
-            ("Man-kill" function (:user-visible-flag t) nil [68604 68701])
-            ("Man-goto-page" function
-               (:user-visible-flag t
-                :arguments ("page" "noerror"))
-                nil [68703 69684])
-            ("Man-next-manpage" function (:user-visible-flag t) nil [69687 70080])
-            ("Man-previous-manpage" function (:user-visible-flag t) nil [70082 70484])
-            ("Man-view-header-file" function (:arguments ("file")) nil [70509 70952])
-            ("declare-function" code nil nil [70979 71091])
-            ("declare-function" code nil nil [71092 71155])
-            ("declare-function" code nil nil [71156 71216])
-            ("declare-function" code nil nil [71217 71281])
-            ("Man-default-bookmark-title" function nil nil [71283 71608])
-            ("Man-bookmark-make-record" function nil nil [71610 71884])
-            ("Man-bookmark-jump" function (:arguments ("bookmark")) nil [71901 72552])
-            ("Man-init-defvars" code nil nil [72612 72630])
-            ("man" package nil nil [72632 72646]))          
-      :file "man.el"
-      :pointmax 72669
-      :fsize 72699
-      :lastmodtime '(23525 29513 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "ansi-color.el"
-      :fsize 25013
-      :lastmodtime '(23525 29502 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("button" variable
-               (:default-value (quote ((t :inherit link)))
-                :type "face")
-                nil [2213 2307])
-            ("button-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [(control 109)] (quote push-button)) (define-key map [mouse-2] (quote push-button)) (define-key map [mode-line mouse-2] (quote push-button)) (define-key map [header-line mouse-2] (quote push-button)) map)) nil [2309 2920])
-            ("button-buffer-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [9] (quote forward-button)) (define-key map "	" (quote backward-button)) (define-key map [backtab] (quote backward-button)) map)) nil [2922 3246])
-            ("put" code nil nil [3282 3317])
-            ("put" code nil nil [3318 3362])
-            ("put" code nil nil [3363 3403])
-            ("put" code nil nil [3404 3439])
-            ("put" code nil nil [3505 3542])
-            ("put" code nil nil [3543 3619])
-            ("put" code nil nil [3689 3723])
-            ("put" code nil nil [3819 3858])
-            ("put" code nil nil [3920 3973])
-            ("button-category-symbol" function (:arguments ("type")) nil [4534 4804])
-            ("define-button-type" function (:arguments ("name" "properties")) nil [4806 6444])
-            ("button-type-put" function (:arguments ("type" "prop" "val")) nil [6446 6585])
-            ("button-type-get" function (:arguments ("type" "prop")) nil [6587 6718])
-            ("button-type-subtype-p" function (:arguments ("type" "supertype")) nil [6720 6948])
-            ("button-start" function (:arguments ("button")) nil [6995 7241])
-            ("button-end" function (:arguments ("button")) nil [7243 7474])
-            ("button-get" function (:arguments ("button" "prop")) nil [7476 7882])
-            ("button-put" function (:arguments ("button" "prop" "val")) nil [7884 8853])
-            ("button-activate" function (:arguments ("button" "use-mouse-action")) nil [8855 9685])
-            ("button-label" function (:arguments ("button")) nil [9687 9941])
-            ("button-type" function (:arguments ("button")) nil [9943 10035])
-            ("button-has-type-p" function (:arguments ("button" "type")) nil [10037 10205])
-            ("button--area-button-p" function (:arguments ("b")) nil [10207 10386])
-            ("defalias" code nil nil [10388 10479])
-            ("make-button" function (:arguments ("beg" "end" "properties")) nil [10511 11439])
-            ("insert-button" function (:arguments ("label" "properties")) nil [11441 11908])
-            ("make-text-button" function (:arguments ("beg" "end" "properties")) nil [11947 14158])
-            ("insert-text-button" function (:arguments ("label" "properties")) nil [14160 14845])
-            ("button-at" function (:arguments ("pos")) nil [14881 15271])
-            ("next-button" function (:arguments ("pos" "count-current")) nil [15273 15839])
-            ("previous-button" function (:arguments ("pos" "count-current")) nil [15841 16848])
-            ("push-button" function
-               (:user-visible-flag t
-                :arguments ("pos" "use-mouse-action"))
-                nil [16870 18202])
-            ("forward-button" function
-               (:user-visible-flag t
-                :arguments ("n" "wrap" "display-message"))
-                nil [18204 19728])
-            ("backward-button" function
-               (:user-visible-flag t
-                :arguments ("n" "wrap" "display-message"))
-                nil [19730 20234])
-            ("button" package nil nil [20237 20254]))          
-      :file "button.el"
-      :pointmax 20280
-      :fsize 20279
-      :lastmodtime '(23525 29503 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cus-face" include nil nil [4464 4483])
-            ("wid-edit" include nil nil [4484 4503])
-            ("custom-versions-load-alist" variable nil nil [4505 4540])
-            ("recentf-exclude" variable nil nil [4557 4581])
-            ("condition-case" code nil nil [4602 4660])
-            ("condition-case" code nil nil [4662 4721])
-            ("put" code nil nil [4723 4767])
-            ("put" code nil nil [4768 4816])
-            ("custom-add-to-group" code nil nil [4817 4886])
-            ("emacs" customgroup (:user-visible-flag t) nil [4915 5015])
-            ("editing" customgroup (:user-visible-flag t) nil [5070 5143])
-            ("convenience" customgroup (:user-visible-flag t) nil [5145 5232])
-            ("files" customgroup (:user-visible-flag t) nil [5234 5301])
-            ("wp" customgroup (:user-visible-flag t) nil [5303 5434])
-            ("text" customgroup (:user-visible-flag t) nil [5436 5582])
-            ("data" customgroup (:user-visible-flag t) nil [5584 5662])
-            ("abbrev" customgroup (:user-visible-flag t) nil [5664 5783])
-            ("matching" customgroup (:user-visible-flag t) nil [5785 5871])
-            ("emulations" customgroup (:user-visible-flag t) nil [5873 5993])
-            ("external" customgroup (:user-visible-flag t) nil [5995 6073])
-            ("comm" customgroup (:user-visible-flag t) nil [6075 6193])
-            ("processes" customgroup (:user-visible-flag t) nil [6195 6299])
-            ("programming" customgroup (:user-visible-flag t) nil [6301 6391])
-            ("languages" customgroup (:user-visible-flag t) nil [6393 6484])
-            ("lisp" customgroup (:user-visible-flag t) nil [6486 6661])
-            ("c" customgroup (:user-visible-flag t) nil [6663 6863])
-            ("tools" customgroup (:user-visible-flag t) nil [6865 6930])
-            ("applications" customgroup (:user-visible-flag t) nil [6932 7010])
-            ("calendar" customgroup (:user-visible-flag t) nil [7012 7100])
-            ("mail" customgroup (:user-visible-flag t) nil [7102 7184])
-            ("news" customgroup (:user-visible-flag t) nil [7186 7301])
-            ("games" customgroup (:user-visible-flag t) nil [7303 7379])
-            ("development" customgroup (:user-visible-flag t) nil [7381 7469])
-            ("docs" customgroup (:user-visible-flag t) nil [7471 7549])
-            ("extensions" customgroup (:user-visible-flag t) nil [7551 7634])
-            ("internal" customgroup (:user-visible-flag t) nil [7636 7736])
-            ("maint" customgroup (:user-visible-flag t) nil [7738 7855])
-            ("environment" customgroup (:user-visible-flag t) nil [7857 7939])
-            ("hardware" customgroup (:user-visible-flag t) nil [7941 8043])
-            ("terminals" customgroup (:user-visible-flag t) nil [8045 8123])
-            ("unix" customgroup (:user-visible-flag t) nil [8125 8227])
-            ("i18n" customgroup (:user-visible-flag t) nil [8229 8398])
-            ("x" customgroup (:user-visible-flag t) nil [8400 8463])
-            ("frames" customgroup (:user-visible-flag t) nil [8465 8557])
-            ("tex" customgroup (:user-visible-flag t) nil [8559 8705])
-            ("faces" customgroup (:user-visible-flag t) nil [8707 8775])
-            ("help" customgroup (:user-visible-flag t) nil [8777 8848])
-            ("multimedia" customgroup (:user-visible-flag t) nil [8850 8947])
-            ("local" customgroup (:user-visible-flag t) nil [8949 9014])
-            ("customize" customgroup
-               (:user-visible-flag t
-                :value (quote ((widgets custom-group))))
-                nil [9016 9145])
-            ("custom-faces" customgroup (:user-visible-flag t) nil [9147 9239])
-            ("custom-browse" customgroup (:user-visible-flag t) nil [9241 9340])
-            ("custom-buffer" customgroup (:user-visible-flag t) nil [9342 9441])
-            ("custom-menu" customgroup (:user-visible-flag t) nil [9443 9538])
-            ("alloc" customgroup (:user-visible-flag t) nil [9540 9669])
-            ("undo" customgroup (:user-visible-flag t) nil [9671 9779])
-            ("mode-line" customgroup (:user-visible-flag t) nil [9781 9858])
-            ("editing-basics" customgroup (:user-visible-flag t) nil [9860 9942])
-            ("display" customgroup (:user-visible-flag t) nil [9944 10033])
-            ("execute" customgroup (:user-visible-flag t) nil [10035 10110])
-            ("installation" customgroup (:user-visible-flag t) nil [10112 10189])
-            ("dired" customgroup (:user-visible-flag t) nil [10191 10256])
-            ("limits" customgroup (:user-visible-flag t) nil [10258 10325])
-            ("debug" customgroup (:user-visible-flag t) nil [10327 10397])
-            ("keyboard" customgroup (:user-visible-flag t) nil [10399 10473])
-            ("menu" customgroup (:user-visible-flag t) nil [10475 10542])
-            ("dnd" customgroup (:user-visible-flag t) nil [10544 10622])
-            ("auto-save" customgroup (:user-visible-flag t) nil [10624 10704])
-            ("processes-basics" customgroup (:user-visible-flag t) nil [10706 10797])
-            ("mule" customgroup (:user-visible-flag t) nil [10799 10870])
-            ("windows" customgroup (:user-visible-flag t) nil [10872 10986])
-            ("custom-mode-map" variable (:default-value (let ((map (make-keymap))) (set-keymap-parent map widget-keymap) (define-key map [remap self-insert-command] (quote Custom-no-edit)) (define-key map "
" (quote Custom-newline)) (define-key map " " (quote scroll-up-command)) (define-key map [33554464] (quote scroll-down-command)) (define-key map "" (quote scroll-down-command)) (define-key map "" (quote Custom-set)) (define-key map "" (quote Custom-save)) (define-key map "q" (quote Custom-buffer-done)) (define-key map "u" (quote Custom-goto-parent)) (define-key map "n" (quote widget-forward)) (define-key map "p" (quote widget-backward)) map)) nil [11013 11661])
-            ("custom-mode-link-map" variable (:default-value (let ((map (make-keymap))) (set-keymap-parent map custom-mode-map) (define-key map [down-mouse-2] nil) (define-key map [down-mouse-1] (quote mouse-drag-region)) (define-key map [mouse-2] (quote widget-move-and-invoke)) map)) nil [11663 11969])
-            ("custom-field-keymap" variable (:default-value (let ((map (copy-keymap widget-field-keymap))) (define-key map "" (quote Custom-set)) (define-key map "" (quote Custom-save)) map)) nil [11971 12211])
-            ("widget-put" code nil nil [12213 12288])
-            ("custom-split-regexp-maybe" function (:arguments ("regexp")) nil [12306 12618])
-            ("custom-variable-prompt" function nil nil [12620 13179])
-            ("custom-menu-filter" function (:arguments ("menu" "widget")) nil [13181 13732])
-            ("custom-prefix-list" variable nil nil [13750 13848])
-            ("custom-unlispify-menu-entries" variable (:default-value t) nil [13850 13997])
-            ("custom-unlispify-remove-prefixes" variable nil nil [13999 14355])
-            ("custom-unlispify-menu-entry" function (:arguments ("symbol" "no-suffix")) nil [14357 15339])
-            ("custom-unlispify-tag-names" variable (:default-value t) nil [15341 15484])
-            ("custom-unlispify-tag-name" function (:arguments ("symbol")) nil [15486 15678])
-            ("custom-prefix-add" function (:arguments ("symbol" "prefixes")) nil [15680 15858])
-            ("custom-guess-name-alist" variable (:default-value (quote (("-p\\'" boolean) ("-flag\\'" boolean) ("-hook\\'" hook) ("-face\\'" face) ("-file\\'" file) ("-function\\'" function) ("-functions\\'" (repeat function)) ("-list\\'" (repeat sexp)) ("-alist\\'" (alist :key-type sexp :value-type sexp))))) nil [15872 16594])
-            ("custom-guess-doc-alist" variable (:default-value (quote (("\\`\\*?Non-nil " boolean)))) nil [16596 17109])
-            ("custom-guess-type" function (:arguments ("symbol")) nil [17111 17913])
-            ("custom-browse-sort-alphabetically" variable nil nil [17944 18110])
-            ("custom-browse-order-groups" variable nil nil [18112 18408])
-            ("custom-browse-only-groups" variable nil nil [18410 18565])
-            ("custom-buffer-sort-alphabetically" variable (:default-value t) nil [18582 18762])
-            ("custom-buffer-order-groups" variable (:default-value (quote last)) nil [18764 19062])
-            ("custom-menu-sort-alphabetically" variable nil nil [19079 19236])
-            ("custom-menu-order-groups" variable (:default-value (quote first)) nil [19238 19533])
-            ("custom-sort-items" function (:arguments ("items" "sort-alphabetically" "order-groups")) nil [19535 20634])
-            ("custom-commands" variable (:default-value (quote ((" Apply " Custom-set t "Apply settings (for the current session only)." "index" "Apply") (" Apply and Save " Custom-save (or custom-file user-init-file) "Apply settings and save for future sessions." "save" "Save") (" Undo Edits " Custom-reset-current t "Restore customization buffer to reflect existing settings." "refresh" "Undo") (" Reset Customizations " Custom-reset-saved t "Undo any settings applied only for the current session." "undo" "Reset") (" Erase Customizations " Custom-reset-standard (or custom-file user-init-file) "Un-customize settings in this and future sessions." "delete" "Uncustomize") (" Help for Customize " Custom-help t "Get help for using Customize." "help" "Help") (" Exit " Custom-buffer-done t "Exit Customize." "exit" "Exit")))) nil [20809 21723])
-            ("Custom-help" function (:user-visible-flag t) nil [21725 21861])
-            ("custom-reset-menu" variable (:default-value (quote (("Undo Edits in Customization Buffer" . Custom-reset-current) ("Revert This Session's Customizations" . Custom-reset-saved) ("Erase Customizations" . Custom-reset-standard)))) nil [21863 22284])
-            ("custom-options" variable nil nil [22286 22362])
-            ("custom-command-apply" function (:arguments ("fun" "query" "strong-query")) nil [22364 22986])
-            ("Custom-set" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [22988 23294])
-            ("Custom-save" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [23296 23928])
-            ("custom-reset" function (:arguments ("_widget" "event")) nil [23930 24157])
-            ("Custom-reset-current" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [24159 24518])
-            ("Custom-reset-saved" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [24520 24945])
-            ("custom-reset-standard-variables-list" variable nil nil [25367 25416])
-            ("custom-reset-standard-faces-list" variable nil nil [25417 25462])
-            ("custom-reset-standard-save-and-update" function nil nil [25716 26884])
-            ("Custom-reset-standard" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [26886 27801])
-            ("custom-prompt-variable" function (:arguments ("prompt-var" "prompt-val" "comment")) nil [27831 29609])
-            ("customize-set-value" function
-               (:user-visible-flag t
-                :arguments ("variable" "value" "comment"))
-                nil [29626 30396])
-            ("customize-set-variable" function
-               (:user-visible-flag t
-                :arguments ("variable" "value" "comment"))
-                nil [30413 31659])
-            ("customize-save-variable" function
-               (:user-visible-flag t
-                :arguments ("variable" "value" "comment"))
-                nil [31676 33155])
-            ("customize-push-and-save" function (:arguments ("list-var" "elts")) nil [33440 34106])
-            ("customize" function (:user-visible-flag t) nil [34123 34435])
-            ("customize-mode" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [34452 35118])
-            ("customize-read-group" function nil nil [35120 35520])
-            ("customize-group" function
-               (:user-visible-flag t
-                :arguments ("group" "other-window"))
-                nil [35537 36337])
-            ("customize-group-other-window" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [36354 36559])
-            ("defalias" code nil nil [36576 36624])
-            ("customize-option" function
-               (:user-visible-flag t
-                :arguments ("symbol"))
-                nil [36641 37106])
-            ("defalias" code nil nil [37123 37197])
-            ("customize-option-other-window" function
-               (:user-visible-flag t
-                :arguments ("symbol"))
-                nil [37214 37760])
-            ("customize-changed-options-previous-release" variable (:default-value "25.3") nil [37762 37893])
-            ("customize-package-emacs-version-alist" variable nil nil [37971 39311])
-            ("defalias" code nil nil [39328 39384])
-            ("customize-changed-options" function
-               (:user-visible-flag t
-                :arguments ("since-version"))
-                nil [39401 41753])
-            ("customize-package-emacs-version" function (:arguments ("symbol" "package-version")) nil [41755 43022])
-            ("customize-version-lessp" function (:arguments ("version1" "version2")) nil [43024 43883])
-            ("customize-face" function
-               (:user-visible-flag t
-                :arguments ("face" "other-window"))
-                nil [43900 45189])
-            ("customize-face-other-window" function
-               (:user-visible-flag t
-                :arguments ("face"))
-                nil [45206 45669])
-            ("custom-unsaved-options" function nil nil [45671 46269])
-            ("defalias" code nil nil [46271 46322])
-            ("customize-unsaved" function (:user-visible-flag t) nil [46339 46655])
-            ("customize-rogue" function (:user-visible-flag t) nil [46672 47348])
-            ("customize-saved" function (:user-visible-flag t) nil [47364 47956])
-            ("declare-function" code nil nil [47958 48018])
-            ("apropos-regexp" variable nil nil [48019 48042])
-            ("customize-apropos" function
-               (:user-visible-flag t
-                :arguments ("pattern" "type"))
-                nil [48059 49811])
-            ("customize-apropos-options" function
-               (:user-visible-flag t
-                :arguments ("regexp" "ignored"))
-                nil [49828 50045])
-            ("customize-apropos-faces" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [50062 50240])
-            ("customize-apropos-groups" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [50257 50439])
-            ("custom-prompt-customize-unsaved-options" function nil nil [50456 50803])
-            ("custom-buffer-style" variable (:default-value (quote links)) nil [50818 51205])
-            ("custom-buffer-done-kill" variable nil nil [51207 51363])
-            ("custom-buffer-indent" variable (:default-value 3) nil [51365 51486])
-            ("custom-get-fresh-buffer" function (:arguments ("name")) nil [51488 52402])
-            ("custom-buffer-create" function (:arguments ("options" "name" "_description")) nil [52419 52867])
-            ("custom-buffer-create-other-window" function (:arguments ("options" "name" "_description")) nil [52884 53446])
-            ("custom-reset-button-menu" variable (:default-value t) nil [53448 53677])
-            ("custom-buffer-verbose-help" variable (:default-value t) nil [53679 53830])
-            ("Custom-buffer-done" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [53832 54001])
-            ("custom-button" variable nil nil [54003 54081])
-            ("custom-button-mouse" variable nil nil [54083 54173])
-            ("custom-button-pressed" variable nil nil [54175 54269])
-            ("custom-search-field" variable (:default-value t) nil [54271 54418])
-            ("custom-raised-buttons" variable (:default-value (not (equal (face-valid-attribute-values :box) (quote (("unspecified" . unspecified)))))) nil [54420 55039])
-            ("custom-buffer-create-internal" function (:arguments ("options" "_description")) nil [55041 59332])
-            ("customize-browse" function
-               (:user-visible-flag t
-                :arguments ("group"))
-                nil [59372 60704])
-            ("define-widget" code nil nil [60706 60880])
-            ("custom-browse-visibility-action" function (:arguments ("widget" "_ignore")) nil [60882 61016])
-            ("define-widget" code nil nil [61018 61204])
-            ("custom-browse-group-tag-action" function (:arguments ("widget" "_ignore")) nil [61206 61371])
-            ("define-widget" code nil nil [61373 61566])
-            ("custom-browse-variable-tag-action" function (:arguments ("widget" "_ignore")) nil [61568 61739])
-            ("define-widget" code nil nil [61741 61922])
-            ("custom-browse-face-tag-action" function (:arguments ("widget" "_ignore")) nil [61924 62087])
-            ("custom-browse-alist" variable
-               (:constant-flag t
-                :default-value (quote (("   " "space") (" | " "vertical") ("-\\ " "top") (" |-" "middle") (" `-" "bottom"))))
-                nil [62089 62242])
-            ("custom-browse-insert-prefix" function (:arguments ("prefix")) nil [62244 62851])
-            ("widget-put" code nil nil [63175 63227])
-            ("widget-put" code nil nil [63228 63465])
-            ("widget-put" code nil nil [63466 63525])
-            ("define-widget" code nil nil [63560 63869])
-            ("custom-magic-faces" customgroup (:user-visible-flag t) nil [63903 64019])
-            ("custom-invalid" variable
-               (:default-value (quote ((((class color)) :foreground "yellow1" :background "red1") (t :weight bold :slant italic :underline t)))
-                :type "face")
-                nil [64021 64241])
-            ("custom-rogue" variable
-               (:default-value (quote ((((class color)) :foreground "pink" :background "black") (t :underline t)))
-                :type "face")
-                nil [64243 64450])
-            ("custom-modified" variable
-               (:default-value (quote ((((min-colors 88) (class color)) :foreground "white" :background "blue1") (((class color)) :foreground "white" :background "blue") (t :slant italic)))
-                :type "face")
-                nil [64452 64741])
-            ("custom-set" variable
-               (:default-value (quote ((((min-colors 88) (class color)) :foreground "blue1" :background "white") (((class color)) :foreground "blue" :background "white") (t :slant italic)))
-                :type "face")
-                nil [64743 65030])
-            ("custom-changed" variable
-               (:default-value (quote ((((min-colors 88) (class color)) :foreground "white" :background "blue1") (((class color)) :foreground "white" :background "blue") (t :slant italic)))
-                :type "face")
-                nil [65032 65315])
-            ("custom-themed" variable
-               (:default-value (quote ((((min-colors 88) (class color)) :foreground "white" :background "blue1") (((class color)) :foreground "white" :background "blue") (t :slant italic)))
-                :type "face")
-                nil [65317 65602])
-            ("custom-saved" variable
-               (:default-value (quote ((t :underline t)))
-                :type "face")
-                nil [65604 65729])
-            ("custom-magic-alist" variable
-               (:constant-flag t
-                :default-value (quote ((nil "#" underline "UNINITIALIZED, you should not see this.") (unknown "?" italic "UNKNOWN, you should not see this.") (hidden "-" default "HIDDEN, invoke \"Show\" in the previous line to show." "group now hidden, invoke \"Show\", above, to show contents.") (invalid "x" custom-invalid "INVALID, the displayed value cannot be set.") (modified "*" custom-modified "EDITED, shown value does not take effect until you set or save it." "something in this group has been edited but not set.") (set "+" custom-set "SET for current session only." "something in this group has been set but not saved.") (changed ":" custom-changed "CHANGED outside Customize." "something in this group has been changed outside customize.") (saved "!" custom-saved "SAVED and set." "something in this group has been set and saved.") (themed "o" custom-themed "THEMED." "visible group members are set by enabled themes.") (rogue "@" custom-rogue "NO CUSTOMIZATION DATA; not intended to be customized." "something in this group is not prepared for customization.") (standard " " nil "STANDARD." "visible group members are all at standard values."))))
-                nil [65731 68156])
-            ("custom-magic-show" variable (:default-value (quote long)) nil [68158 68418])
-            ("custom-magic-show-hidden" variable (:default-value (quote (option face))) nil [68420 68768])
-            ("custom-magic-show-button" variable nil nil [68770 68930])
-            ("define-widget" code nil nil [68932 69203])
-            ("widget-magic-mouse-down-action" function (:arguments ("widget" "_event")) nil [69205 69407])
-            ("custom-magic-value-create" function (:arguments ("widget")) nil [69409 71937])
-            ("custom-magic-reset" function (:arguments ("widget")) nil [71939 72144])
-            ("custom-button" variable
-               (:default-value (quote ((((type x w32 ns) (class color)) :box (:line-width 2 :style released-button) :background "lightgrey" :foreground "black")))
-                :type "face")
-                nil [72172 72472])
-            ("custom-button-mouse" variable
-               (:default-value (quote ((((type x w32 ns) (class color)) :box (:line-width 2 :style released-button) :background "grey90" :foreground "black") (t :inverse-video t)))
-                :type "face")
-                nil [72474 72954])
-            ("custom-button-unraised" variable
-               (:default-value (quote ((t :inherit underline)))
-                :type "face")
-                nil [72956 73127])
-            ("setq" code nil nil [73129 73221])
-            ("setq" code nil nil [73223 73314])
-            ("custom-button-pressed" variable
-               (:default-value (quote ((((type x w32 ns) (class color)) :box (:line-width 2 :style pressed-button) :background "lightgrey" :foreground "black") (t :inverse-video t)))
-                :type "face")
-                nil [73316 73624])
-            ("custom-button-pressed-unraised" variable
-               (:default-value (quote ((default :inherit custom-button-unraised) (((class color) (background light)) :foreground "magenta4") (((class color) (background dark)) :foreground "violet")))
-                :type "face")
-                nil [73626 73950])
-            ("setq" code nil nil [73952 74074])
-            ("custom-documentation" variable
-               (:default-value (quote ((t nil)))
-                :type "face")
-                nil [74076 74206])
-            ("custom-state" variable
-               (:default-value (quote ((((class color) (background dark)) :foreground "lime green") (((class color) (background light)) :foreground "dark green")))
-                :type "face")
-                nil [74208 74452])
-            ("custom-link" variable
-               (:default-value (quote ((t :inherit link)))
-                :type "face")
-                nil [74454 74582])
-            ("define-widget" code nil nil [74584 75065])
-            ("custom-convert-widget" function (:arguments ("widget")) nil [75067 75428])
-            ("custom-notify" function (:arguments ("widget" "args")) nil [75430 75762])
-            ("custom-redraw" function (:arguments ("widget")) nil [75764 76359])
-            ("custom-redraw-magic" function (:arguments ("widget")) nil [76361 76735])
-            ("custom-show" function (:arguments ("widget" "value")) nil [76737 77021])
-            ("custom-load-widget" function (:arguments ("widget")) nil [77023 77141])
-            ("custom-unloaded-symbol-p" function (:arguments ("symbol")) nil [77143 77621])
-            ("custom-unloaded-widget-p" function (:arguments ("widget")) nil [77623 77790])
-            ("custom-toggle-hide" function (:arguments ("widget")) nil [77792 78251])
-            ("custom-toggle-parent" function (:arguments ("widget" "_ignore")) nil [78253 78398])
-            ("custom-add-see-also" function (:arguments ("widget" "prefix")) nil [78400 79302])
-            ("custom-add-parent-links" function (:arguments ("widget" "initial-string" "_doc-initial-string")) nil [79304 80180])
-            ("custom-comment" variable
-               (:default-value (quote ((((type tty)) :background "yellow3" :foreground "black") (((class grayscale color) (background light)) :background "gray85") (((class grayscale color) (background dark)) :background "dim gray") (t :slant italic)))
-                :type "face")
-                nil [80243 80632])
-            ("custom-comment-tag" variable
-               (:default-value (quote ((((class color) (background dark)) :foreground "gray80") (((class color) (background light)) :foreground "blue4") (((class grayscale) (background light)) :foreground "DimGray" :weight bold :slant italic) (((class grayscale) (background dark)) :foreground "LightGray" :weight bold :slant italic) (t :weight bold)))
-                :type "face")
-                nil [80665 81116])
-            ("define-widget" code nil nil [81118 81339])
-            ("custom-comment-create" function (:arguments ("widget")) nil [81341 81752])
-            ("custom-comment-hide" function (:arguments ("widget")) nil [81754 81852])
-            ("custom-comment-show" function (:arguments ("widget")) nil [81955 82072])
-            ("custom-comment-invisible-p" function (:arguments ("widget")) nil [82074 82252])
-            ("custom-variable-tag" variable
-               (:default-value (\` ((((class color) (background dark)) :foreground "light blue" :weight bold) (((min-colors 88) (class color) (background light)) :foreground "blue1" :weight bold) (((class color) (background light)) :foreground "blue" :weight bold) (t :weight bold)))
-                :type "face")
-                nil [82289 82663])
-            ("custom-variable-button" variable
-               (:default-value (quote ((t :underline t :weight bold)))
-                :type "face")
-                nil [82665 82795])
-            ("custom-variable-default-form" variable (:default-value (quote edit)) nil [82797 82980])
-            ("custom-variable-documentation" function (:arguments ("variable")) nil [82982 83615])
-            ("define-widget" code nil nil [83617 85187])
-            ("custom-variable-type" function (:arguments ("symbol")) nil [85189 86014])
-            ("custom-variable-value-create" function (:arguments ("widget")) nil [86016 91504])
-            ("custom-toggle-hide-variable" function (:arguments ("visibility-widget" "_ignore")) nil [91506 92599])
-            ("custom-tag-action" function (:arguments ("widget" "args")) nil [92601 92794])
-            ("custom-tag-mouse-down-action" function (:arguments ("widget" "args")) nil [92796 93022])
-            ("custom-variable-state" function (:arguments ("symbol" "val")) nil [93024 94680])
-            ("custom-variable-state-set" function (:arguments ("widget" "state")) nil [94682 94984])
-            ("custom-variable-standard-value" function (:arguments ("widget")) nil [94986 95079])
-            ("custom-variable-menu" variable (:default-value (\` (("Set for Current Session" custom-variable-set (lambda (widget) (eq (widget-get widget :custom-state) (quote modified)))) (\,@ (when (or custom-file init-file-user) (quote (("Save for Future Sessions" custom-variable-save (lambda (widget) (memq (widget-get widget :custom-state) (quote (modified set changed rogue))))))))) ("Undo Edits" custom-redraw (lambda (widget) (and (default-boundp (widget-value widget)) (memq (widget-get widget :custom-state) (quote (modified changed)))))) ("Revert This Session's Customization" custom-variable-reset-saved (lambda (widget) (memq (widget-get widget :custom-state) (quote (modified set changed rogue))))) (\,@ (when (or custom-file init-file-user) (quote (("Erase Customization" custom-variable-reset-standard (lambda (widget) (and (get (widget-value widget) (quote standard-value)) (memq (widget-get widget :custom-state) (quote (modified set changed saved rogue)))))))))) ("Set to Backup Value" custom-variable-reset-backup (lambda (widget) (get (widget-value widget) (quote backup-value)))) ("---" ignore ignore) ("Add Comment" custom-comment-show custom-comment-invisible-p) ("---" ignore ignore) ("Show Current Value" custom-variable-edit (lambda (widget) (eq (widget-get widget :custom-form) (quote lisp)))) ("Show Saved Lisp Expression" custom-variable-edit-lisp (lambda (widget) (eq (widget-get widget :custom-form) (quote edit))))))) nil [95081 97273])
-            ("custom-variable-action" function (:arguments ("widget" "event")) nil [97275 97935])
-            ("custom-variable-edit" function (:arguments ("widget")) nil [97937 98111])
-            ("custom-variable-edit-lisp" function (:arguments ("widget")) nil [98113 98323])
-            ("custom-variable-set" function (:arguments ("widget")) nil [98325 100092])
-            ("custom-variable-mark-to-save" function (:arguments ("widget")) nil [100094 101813])
-            ("custom-variable-state-set-and-redraw" function (:arguments ("widget")) nil [101815 102013])
-            ("custom-variable-save" function (:arguments ("widget")) nil [102015 102212])
-            ("custom-variable-reset-saved" function (:arguments ("widget")) nil [102214 103359])
-            ("custom-variable-mark-to-reset-standard" function (:arguments ("widget")) nil [103361 104810])
-            ("custom-variable-reset-standard" function (:arguments ("widget")) nil [104812 105256])
-            ("custom-variable-backup-value" function (:arguments ("widget")) nil [105258 105728])
-            ("custom-variable-reset-backup" function (:arguments ("widget")) nil [105730 106766])
-            ("define-widget" code nil nil [106804 107045])
-            ("custom-visibility" variable
-               (:default-value (quote ((t :height 0.8 :inherit link)))
-                :type "face")
-                nil [107047 107195])
-            ("define-widget" code nil nil [107233 108126])
-            ("custom-face-edit-value-create" function (:arguments ("widget")) nil [108128 109573])
-            ("custom-face-edit-value-visibility-action" function (:arguments ("widget" "_ignore")) nil [109575 109853])
-            ("custom-face-edit-fix-value" function (:arguments ("_widget" "value")) nil [109855 110051])
-            ("custom-face-edit-convert-widget" function (:arguments ("widget")) nil [110053 110400])
-            ("custom-face-edit" variable
-               (:constant-flag t
-                :default-value (widget-convert (quote custom-face-edit)))
-                nil [110402 110520])
-            ("custom-face-edit-deactivate" function (:arguments ("widget")) nil [110522 111076])
-            ("custom-face-edit-activate" function (:arguments ("widget")) nil [111078 111552])
-            ("custom-face-edit-delete" function (:arguments ("widget")) nil [111554 112116])
-            ("custom-face-edit-attribute-tag" function (:arguments ("widget")) nil [112119 112474])
-            ("define-widget" code nil nil [112510 114875])
-            ("custom-face-tag" variable
-               (:default-value (quote ((t :inherit custom-variable-tag)))
-                :type "face")
-                nil [114908 115023])
-            ("custom-face-default-form" variable (:default-value (quote selected)) nil [115025 115227])
-            ("define-widget" code nil nil [115229 116771])
-            ("define-widget" code nil nil [116773 117201])
-            ("custom-face-all" variable
-               (:constant-flag t
-                :default-value (widget-convert (quote custom-face-all)))
-                nil [117203 117318])
-            ("custom-filter-face-spec" function (:arguments ("spec" "filter-index" "default-filter")) nil [117320 118447])
-            ("custom-pre-filter-face-spec" function (:arguments ("spec")) nil [118449 118640])
-            ("custom-post-filter-face-spec" function (:arguments ("spec")) nil [118642 118792])
-            ("custom-face-widget-to-spec" function (:arguments ("widget")) nil [118794 119206])
-            ("custom-face-get-current-spec" function (:arguments ("face")) nil [119208 119732])
-            ("custom-toggle-hide-face" function (:arguments ("visibility-widget" "_ignore")) nil [119734 120777])
-            ("custom-face-value-create" function (:arguments ("widget")) nil [120779 125203])
-            ("custom-face-menu" variable (:default-value (\` (("Set for Current Session" custom-face-set) (\,@ (when (or custom-file init-file-user) (quote (("Save for Future Sessions" custom-face-save))))) ("Undo Edits" custom-redraw (lambda (widget) (memq (widget-get widget :custom-state) (quote (modified changed))))) ("Revert This Session's Customization" custom-face-reset-saved (lambda (widget) (memq (widget-get widget :custom-state) (quote (modified set changed))))) (\,@ (when (or custom-file init-file-user) (quote (("Erase Customization" custom-face-reset-standard (lambda (widget) (get (widget-value widget) (quote face-defface-spec)))))))) ("---" ignore ignore) ("Add Comment" custom-comment-show custom-comment-invisible-p) ("---" ignore ignore) ("For Current Display" custom-face-edit-selected (lambda (widget) (not (eq (widget-get widget :custom-form) (quote selected))))) ("For All Kinds of Displays" custom-face-edit-all (lambda (widget) (not (eq (widget-get widget :custom-form) (quote all))))) ("Show Lisp Expression" custom-face-edit-lisp (lambda (widget) (not (eq (widget-get widget :custom-form) (quote lisp)))))))) nil [125205 126743])
-            ("custom-face-edit-selected" function (:arguments ("widget")) nil [126745 126955])
-            ("custom-face-edit-all" function (:arguments ("widget")) nil [126957 127152])
-            ("custom-face-edit-lisp" function (:arguments ("widget")) nil [127154 127360])
-            ("custom-face-state" function (:arguments ("face")) nil [127362 128381])
-            ("custom-face-state-set" function (:arguments ("widget")) nil [128383 128535])
-            ("custom-face-action" function (:arguments ("widget" "event")) nil [128537 129061])
-            ("custom-face-set" function (:arguments ("widget")) nil [129063 129756])
-            ("custom-face-mark-to-save" function (:arguments ("widget")) nil [129758 130506])
-            ("custom-face-state-set-and-redraw" function (:arguments ("widget")) nil [130508 130694])
-            ("custom-face-save" function (:arguments ("widget")) nil [130696 130865])
-            ("define-obsolete-function-alias" code nil nil [130898 130983])
-            ("custom-face-reset-saved" function (:arguments ("widget")) nil [130985 131838])
-            ("custom-face-standard-value" function (:arguments ("widget")) nil [131840 131932])
-            ("custom-face-mark-to-reset-standard" function (:arguments ("widget")) nil [131934 133532])
-            ("custom-face-reset-standard" function (:arguments ("widget")) nil [133534 133857])
-            ("widget-face-prompt-value-history" variable nil nil [133883 133980])
-            ("define-widget" code nil nil [133982 134618])
-            ("widget-face-sample-face-get" function (:arguments ("widget")) nil [134620 134749])
-            ("widget-face-notify" function (:arguments ("widget" "child" "event")) nil [134751 135004])
-            ("define-widget" code nil nil [135031 135612])
-            ("custom-hook-convert-widget" function (:arguments ("widget")) nil [135614 136042])
-            ("define-widget" code nil nil [136081 136402])
-            ("custom-group-link-action" function (:arguments ("widget" "_ignore")) nil [136404 136501])
-            ("custom-group-tag-faces" variable nil nil [136535 136793])
-            ("custom-group-tag-1" variable
-               (:default-value (quote ((default :weight bold :height 1.2 :inherit variable-pitch) (((class color) (background dark)) :foreground "pink") (((min-colors 88) (class color) (background light)) :foreground "red1") (((class color) (background light)) :foreground "red")))
-                :type "face")
-                nil [136795 137129])
-            ("custom-group-tag" variable
-               (:default-value (quote ((default :weight bold :height 1.2 :inherit variable-pitch) (((class color) (background dark)) :foreground "light blue") (((min-colors 88) (class color) (background light)) :foreground "blue1") (((class color) (background light)) :foreground "blue") (t :weight bold)))
-                :type "face")
-                nil [137131 137502])
-            ("custom-group-subtitle" variable
-               (:default-value (quote ((t :weight bold)))
-                :type "face")
-                nil [137504 137640])
-            ("custom-group-doc-align-col" variable (:default-value 20) nil [137642 137680])
-            ("define-widget" code nil nil [137682 138419])
-            ("custom-group-sample-face-get" function (:arguments ("widget")) nil [138421 138588])
-            ("define-widget" code nil nil [138590 138744])
-            ("custom-group-visibility-create" function (:arguments ("widget")) nil [138746 138906])
-            ("custom-group-members" function (:arguments ("symbol" "groups-only")) nil [138908 139287])
-            ("custom-group-value-create" function (:arguments ("widget")) nil [139289 147473])
-            ("custom-group-menu" variable (:default-value (\` (("Set for Current Session" custom-group-set (lambda (widget) (eq (widget-get widget :custom-state) (quote modified)))) (\,@ (when (or custom-file init-file-user) (quote (("Save for Future Sessions" custom-group-save (lambda (widget) (memq (widget-get widget :custom-state) (quote (modified set))))))))) ("Undo Edits" custom-group-reset-current (lambda (widget) (memq (widget-get widget :custom-state) (quote (modified))))) ("Revert This Session's Customizations" custom-group-reset-saved (lambda (widget) (memq (widget-get widget :custom-state) (quote (modified set))))) (\,@ (when (or custom-file init-file-user) (quote (("Erase Customization" custom-group-reset-standard (lambda (widget) (memq (widget-get widget :custom-state) (quote (modified set saved)))))))))))) nil [147475 148676])
-            ("custom-group-action" function (:arguments ("widget" "event")) nil [148678 149193])
-            ("custom-group-set" function (:arguments ("widget")) nil [149195 149422])
-            ("custom-group-mark-to-save" function (:arguments ("widget")) nil [149424 149678])
-            ("custom-group-state-set-and-redraw" function (:arguments ("widget")) nil [149680 149976])
-            ("custom-group-save" function (:arguments ("widget")) nil [149978 150151])
-            ("custom-group-reset-current" function (:arguments ("widget")) nil [150153 150391])
-            ("custom-group-reset-saved" function (:arguments ("widget")) nil [150393 150642])
-            ("custom-group-reset-standard" function (:arguments ("widget")) nil [150644 150929])
-            ("custom-group-mark-to-reset-standard" function (:arguments ("widget")) nil [150931 151226])
-            ("custom-group-state-update" function (:arguments ("widget")) nil [151228 151821])
-            ("custom-file" variable nil nil [151881 153719])
-            ("custom-file" function (:arguments ("no-error")) nil [153721 154223])
-            ("declare-function" code nil nil [154273 154333])
-            ("custom-save-all" function nil nil [154350 155764])
-            ("customize-save-customized" function (:user-visible-flag t) nil [155781 156780])
-            ("custom-save-delete" function (:arguments ("symbol")) nil [156833 158136])
-            ("sort-fold-case" variable nil nil [158138 158161])
-            ("custom-save-variables" function nil nil [158184 161109])
-            ("custom-save-faces" function nil nil [161111 162959])
-            ("custom-menu-nesting" variable (:default-value 2) nil [163005 163114])
-            ("custom-face-menu-create" function (:arguments ("_widget" "symbol")) nil [163116 163319])
-            ("custom-variable-menu-create" function (:arguments ("_widget" "symbol")) nil [163321 163739])
-            ("widget-put" code nil nil [163788 164010])
-            ("custom-group-menu-create" function (:arguments ("_widget" "symbol")) nil [164012 164306])
-            ("custom-menu-create" function (:arguments ("symbol")) nil [164323 165283])
-            ("customize-menu-create" function (:arguments ("symbol" "name")) nil [165300 165753])
-            ("easy-menu-define" code nil nil [165788 166196])
-            ("tool-bar-map" variable nil nil [166198 166219])
-            ("custom-tool-bar-map" variable nil nil [166407 166478])
-            ("Custom-no-edit" function
-               (:user-visible-flag t
-                :arguments ("_pos" "_event"))
-                nil [166502 166698])
-            ("Custom-newline" function
-               (:user-visible-flag t
-                :arguments ("pos" "event"))
-                nil [166700 167296])
-            ("Custom-goto-parent" function (:user-visible-flag t) nil [167298 167696])
-            ("define-obsolete-variable-alias" code nil nil [167698 167773])
-            ("Custom-mode-hook" variable nil nil [167775 167888])
-            ("custom-state-buffer-message" function (:arguments ("widget")) nil [167890 168096])
-            ("custom--initialize-widget-variables" function nil nil [168098 169015])
-            ("define-derived-mode" code nil nil [169017 170596])
-            ("put" code nil nil [170598 170637])
-            ("define-obsolete-function-alias" code nil nil [170639 170704])
-            ("cus-edit" package nil nil [170720 170739]))          
-      :file "cus-edit.el"
-      :pointmax 170767
-      :fsize 170766
-      :lastmodtime '(23525 29504 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "cus-face.el"
-      :fsize 13238
-      :lastmodtime '(23525 29504 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("xml-undefined-entity" variable
-               (:constant-flag t
-                :default-value "?")
-                nil [3142 3223])
-            ("xml-default-ns" variable
-               (:constant-flag t
-                :default-value (quote (("" . "") ("xml" . "http://www.w3.org/XML/1998/namespace") ("xmlns" . "http://www.w3.org/2000/xmlns/"))))
-                nil [3225 3424])
-            ("xml-entity-alist" variable (:default-value (quote (("lt" . "&#60;") ("gt" . ">") ("apos" . "'") ("quot" . "\"") ("amp" . "&#38;")))) nil [3426 3614])
-            ("xml-entity-expansion-limit" variable (:default-value 20000) nil [3616 3953])
-            ("xml-parameter-entity-alist" variable nil nil [3955 4040])
-            ("xml-sub-parser" variable nil nil [4042 4129])
-            ("xml-validating-parser" variable nil nil [4131 4210])
-            ("xml-node-name" function (:arguments ("node")) nil [4212 4646])
-            ("xml-node-attributes" function (:arguments ("node")) nil [4648 4764])
-            ("xml-node-children" function (:arguments ("node")) nil [4766 4900])
-            ("xml-get-children" function (:arguments ("node" "child-name")) nil [4902 5268])
-            ("xml-get-attribute-or-nil" function (:arguments ("node" "attribute")) nil [5270 5488])
-            ("xml-get-attribute" function (:arguments ("node" "attribute")) nil [5490 5727])
-            ("xml-entity-value-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:\"\\(?:[^%&\"]\\|" xml-pe-reference-re "\\|" xml-reference-re "\\)*\"\\|'\\(?:[^%&']\\|" xml-pe-reference-re "\\|" xml-reference-re "\\)*'\\)"))
-                nil [9510 9748])
-            ("xml-att-def-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:\\s-*" xml-name-re "\\s-*" xml-att-type-re "\\s-*" xml-default-decl-re "\\)"))
-                nil [9247 9374])
-            ("xml-default-decl-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:#REQUIRED\\|#IMPLIED\\|" "\\(?:#FIXED\\s-+\\)*" xml-att-value-re "\\)"))
-                nil [9054 9190])
-            ("xml-att-type-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:CDATA\\|" xml-tokenized-type-re "\\|" xml-notation-type-re "\\|" xml-enumerated-type-re "\\)"))
-                nil [8829 8976])
-            ("xml-enumerated-type-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:" xml-notation-type-re "\\|" xml-enumeration-re "\\)"))
-                nil [8621 8729])
-            ("xml-enumeration-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:(\\s-*" xml-nmtoken-re "\\(?:\\s-*|\\s-*" xml-nmtoken-re "\\)*\\s-+)\\)"))
-                nil [8430 8565])
-            ("xml-notation-type-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:NOTATION\\s-+(\\s-*" xml-name-re "\\(?:\\s-*|\\s-*" xml-name-re "\\)*\\s-*)\\)"))
-                nil [8177 8308])
-            ("xml-tokenized-type-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:ID\\|IDREF\\|IDREFS\\|ENTITY\\|" "ENTITIES\\|NMTOKEN\\|NMTOKENS\\)"))
-                nil [7980 8100])
-            ("xml-att-value-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:\"\\(?:[^&\"]\\|" xml-reference-re "\\)*\"\\|" "'\\(?:[^&']\\|" xml-reference-re "\\)*'\\)"))
-                nil [7405 7560])
-            ("xml-reference-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(?:" xml-entity-ref "\\|" xml-char-ref-re "\\)"))
-                nil [7208 7295])
-            ("xml-pe-reference-re" variable
-               (:constant-flag t
-                :default-value (concat "%\\(" xml-name-re "\\);"))
-                nil [7097 7162])
-            ("xml-entity-or-char-ref-re" variable
-               (:constant-flag t
-                :default-value (concat "&\\(?:#\\(x\\)?\\([0-9a-fA-F]+\\)\\|\\(" xml-name-re "\\)\\);"))
-                nil [6940 7058])
-            ("xml-entity-ref" variable
-               (:constant-flag t
-                :default-value (concat "&" xml-name-re ";"))
-                nil [6884 6938])
-            ("xml-char-ref-re" variable
-               (:constant-flag t
-                :default-value "\\(?:&#[0-9]+;\\|&#x[0-9a-fA-F]+;\\)")
-                nil [6779 6845])
-            ("xml-nmtokens-re" variable
-               (:constant-flag t
-                :default-value (concat xml-nmtoken-re "\\(?: " xml-name-re "\\)*"))
-                nil [6638 6716])
-            ("xml-nmtoken-re" variable
-               (:constant-flag t
-                :default-value (concat xml-name-char-re "+"))
-                nil [6537 6592])
-            ("xml-names-re" variable
-               (:constant-flag t
-                :default-value (concat xml-name-re "\\(?: " xml-name-re "\\)*"))
-                nil [6431 6503])
-            ("xml-name-re" variable
-               (:constant-flag t
-                :default-value (concat xml-name-start-char-re xml-name-char-re "*"))
-                nil [6316 6391])
-            ("xml-name-char-re" variable
-               (:constant-flag t
-                :default-value (concat "[-0-9.[:word:]:_\302\267\314\200-\315\257\342\200\277-\342\201\200]"))
-                nil [6205 6268])
-            ("xml-name-start-char-re" variable
-               (:constant-flag t
-                :default-value (concat "[[:word:]:_]"))
-                nil [6029 6086])
-            ("xml-syntax-table" variable (:default-value (let ((table (make-char-table (quote syntax-table) (quote (3))))) (dolist (c (quote (32 9 13 10))) (modify-syntax-entry c " " table)) (modify-syntax-entry (quote (65 . 90)) "w" table) (modify-syntax-entry (quote (97 . 122)) "w" table) (modify-syntax-entry (quote (192 . 214)) "w" table) (modify-syntax-entry (quote (216 . 246)) "w" table) (modify-syntax-entry (quote (248 . 767)) "w" table) (modify-syntax-entry (quote (880 . 893)) "w" table) (modify-syntax-entry (quote (895 . 8191)) "w" table) (modify-syntax-entry (quote (8204 . 8205)) "w" table) (modify-syntax-entry (quote (8304 . 8591)) "w" table) (modify-syntax-entry (quote (11264 . 12271)) "w" table) (modify-syntax-entry (quote (12289 . 55295)) "w" table) (modify-syntax-entry (quote (63744 . 64975)) "w" table) (modify-syntax-entry (quote (65008 . 65533)) "w" table) (modify-syntax-entry (quote (65536 . 983039)) "w" table) table)) nil [10404 11748])
-            ("xml-parse-file" function (:arguments ("file" "parse-dtd" "parse-ns")) nil [11784 12593])
-            ("xml-parse-region" function (:arguments ("beg" "end" "buffer" "parse-dtd" "parse-ns")) nil [12610 13816])
-            ("xml--parse-buffer" function (:arguments ("parse-dtd" "parse-ns")) nil [14005 15063])
-            ("xml-maybe-do-ns" function (:arguments ("name" "default" "xml-ns")) nil [15065 16466])
-            ("xml-parse-tag" function (:arguments ("parse-dtd" "parse-ns")) nil [16468 17314])
-            ("xml-parse-tag-1" function (:arguments ("parse-dtd" "parse-ns")) nil [17316 21679])
-            ("xml-parse-string" function nil nil [21681 23935])
-            ("xml-parse-attlist" function (:arguments ("xml-ns")) nil [23937 25613])
-            ("xml-skip-dtd" function nil nil [25803 25965])
-            ("xml-parse-dtd" function (:arguments ("_parse-ns")) nil [25967 32849])
-            ("xml--entity-replacement-text" function (:arguments ("string")) nil [32851 34170])
-            ("xml-parse-elem-type" function (:arguments ("string")) nil [34172 35169])
-            ("xml-substitute-special" function (:arguments ("string")) nil [35211 36824])
-            ("xml-substitute-numeric-entities" function (:arguments ("string")) nil [36826 37454])
-            ("xml-debug-print" function (:arguments ("xml" "indent-string")) nil [37507 37818])
-            ("defalias" code nil nil [37820 37858])
-            ("xml-escape-string" function (:arguments ("string")) nil [37860 38642])
-            ("xml-debug-print-internal" function (:arguments ("xml" "indent-string")) nil [38644 39647])
-            ("xml" package nil nil [39649 39663]))          
-      :file "xml.el"
-      :pointmax 39686
-      :fsize 39692
-      :lastmodtime '(23525 29522 0 0)
-      :unmatched-syntax '((close-paren 9749 . 9750) (symbol 5930 . 5946) (open-paren 5929 . 5930)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("term-file-prefix" variable (:default-value (purecopy "term/")) nil [902 1354])
-            ("term-file-aliases" variable (:default-value (quote (("apollo" . "vt100") ("vt102" . "vt100") ("vt125" . "vt100") ("vt201" . "vt200") ("vt220" . "vt200") ("vt240" . "vt200") ("vt300" . "vt200") ("vt320" . "vt200") ("vt400" . "vt200") ("vt420" . "vt200")))) nil [1356 1940])
-            ("declare-function" code nil nil [1942 2014])
-            ("help-xref-stack-item" variable nil nil [2016 2045])
-            ("face-name-history" variable nil nil [2047 2228])
-            ("font-selection" customgroup (:user-visible-flag t) nil [2399 2481])
-            ("face-font-selection-order" variable (:default-value (quote (:width :height :weight :slant))) nil [2484 3266])
-            ("face-font-family-alternatives" variable (:default-value (mapcar (lambda (arg) (mapcar (quote purecopy) arg)) (quote (("Monospace" "courier" "fixed") ("Monospace Serif" "Courier 10 Pitch" "Consolas" "Courier Std" "FreeMono" "Nimbus Mono L" "courier" "fixed") ("courier" "CMU Typewriter Text" "fixed") ("Sans Serif" "helv" "helvetica" "arial" "fixed") ("helv" "helvetica" "arial" "fixed"))))) nil [3440 5433])
-            ("face-font-registry-alternatives" variable (:default-value (mapcar (lambda (arg) (mapcar (quote purecopy) arg)) (if (featurep (quote w32)) (quote (("iso8859-1" "ms-oemlatin") ("gb2312.1980" "gb2312" "gbk" "gb18030") ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978") ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987") ("muletibetan-2" "muletibetan-0"))) (quote (("gb2312.1980" "gb2312.80&gb8565.88" "gbk" "gb18030") ("jisx0208.1990" "jisx0208.1983" "jisx0208.1978") ("ksc5601.1989" "ksx1001.1992" "ksc5601.1987") ("muletibetan-2" "muletibetan-0")))))) nil [5479 6543])
-            ("face-list" function nil nil [6718 6819])
-            ("make-face" function
-               (:user-visible-flag t
-                :arguments ("face"))
-                nil [6821 7522])
-            ("make-empty-face" function
-               (:user-visible-flag t
-                :arguments ("face"))
-                nil [7524 7786])
-            ("copy-face" function (:arguments ("old-face" "new-face" "frame" "new-frame")) nil [7788 9039])
-            ("facep" function (:arguments ("face")) nil [9219 9368])
-            ("check-face" function (:arguments ("face")) nil [9371 9525])
-            ("face-id" function (:arguments ("face" "_frame")) nil [9706 10048])
-            ("face-equal" function (:arguments ("face1" "face2" "frame")) nil [10050 10467])
-            ("face-differs-from-default-p" function (:arguments ("face" "frame")) nil [10470 11183])
-            ("face-nontrivial-p" function (:arguments ("face" "frame")) nil [11186 11530])
-            ("face-list-p" function (:arguments ("face-or-list")) nil [11533 11962])
-            ("face-x-resources" variable (:default-value (mapcar (lambda (arg) (cons (car arg) (cons (purecopy (car (cdr arg))) (purecopy (cdr (cdr arg)))))) (quote ((:family (".attributeFamily" . "Face.AttributeFamily")) (:foundry (".attributeFoundry" . "Face.AttributeFoundry")) (:width (".attributeWidth" . "Face.AttributeWidth")) (:height (".attributeHeight" . "Face.AttributeHeight")) (:weight (".attributeWeight" . "Face.AttributeWeight")) (:slant (".attributeSlant" . "Face.AttributeSlant")) (:foreground (".attributeForeground" . "Face.AttributeForeground")) (:distant-foreground (".attributeDistantForeground" . "Face.AttributeDistantForeground")) (:background (".attributeBackground" . "Face.AttributeBackground")) (:overline (".attributeOverline" . "Face.AttributeOverline")) (:strike-through (".attributeStrikeThrough" . "Face.AttributeStrikeThrough")) (:box (".attributeBox" . "Face.AttributeBox")) (:underline (".attributeUnderline" . "Face.AttributeUnderline")) (:inverse-video (".attributeInverse" . "Face.AttributeInverse")) (:stipple (".attributeStipple" . "Face.AttributeStipple") (".attributeBackgroundPixmap" . "Face.AttributeBackgroundPixmap")) (:bold (".attributeBold" . "Face.AttributeBold")) (:italic (".attributeItalic" . "Face.AttributeItalic")) (:font (".attributeFont" . "Face.AttributeFont")) (:inherit (".attributeInherit" . "Face.AttributeInherit")))))) nil [12160 14052])
-            ("declare-function" code nil nil [14055 14150])
-            ("declare-function" code nil nil [14152 14266])
-            ("set-face-attribute-from-resource" function (:arguments ("face" "attribute" "resource" "class" "frame")) nil [14268 14977])
-            ("set-face-attributes-from-resources" function (:arguments ("face" "frame")) nil [14980 15343])
-            ("make-face-x-resource-internal" function (:arguments ("face" "frame")) nil [15346 15942])
-            ("face-name" function (:arguments ("face")) nil [16126 16218])
-            ("face-all-attributes" function (:arguments ("face" "frame")) nil [16221 16687])
-            ("face-attribute" function (:arguments ("face" "attribute" "frame" "inherit")) nil [16689 18503])
-            ("face-attribute-merged-with" function (:arguments ("attribute" "value" "faces" "frame")) nil [18505 19093])
-            ("face-attribute-specified-or" function (:arguments ("value" "body")) nil [19096 19377])
-            ("face-foreground" function (:arguments ("face" "frame" "inherit")) nil [19379 20435])
-            ("face-background" function (:arguments ("face" "frame" "inherit")) nil [20437 21493])
-            ("face-stipple" function (:arguments ("face" "frame" "inherit")) nil [21495 22515])
-            ("defalias" code nil nil [22518 22566])
-            ("face-underline-p" function (:arguments ("face" "frame" "inherit")) nil [22569 23022])
-            ("face-inverse-video-p" function (:arguments ("face" "frame" "inherit")) nil [23025 23459])
-            ("face-bold-p" function (:arguments ("face" "frame" "inherit")) nil [23462 23981])
-            ("face-italic-p" function (:arguments ("face" "frame" "inherit")) nil [23984 24488])
-            ("face-documentation" function (:arguments ("face")) nil [24664 25086])
-            ("set-face-documentation" function (:arguments ("face" "string")) nil [25089 25277])
-            ("defalias" code nil nil [25280 25327])
-            ("defalias" code nil nil [25328 25383])
-            ("set-face-attribute" function (:arguments ("face" "frame" "args")) nil [25564 33275])
-            ("make-face-bold" function
-               (:user-visible-flag t
-                :arguments ("face" "frame" "_noerror"))
-                nil [33277 33728])
-            ("make-face-unbold" function
-               (:user-visible-flag t
-                :arguments ("face" "frame" "_noerror"))
-                nil [33731 34131])
-            ("make-face-italic" function
-               (:user-visible-flag t
-                :arguments ("face" "frame" "_noerror"))
-                nil [34134 34591])
-            ("make-face-unitalic" function
-               (:user-visible-flag t
-                :arguments ("face" "frame" "_noerror"))
-                nil [34594 34999])
-            ("make-face-bold-italic" function
-               (:user-visible-flag t
-                :arguments ("face" "frame" "_noerror"))
-                nil [35002 35499])
-            ("set-face-font" function
-               (:user-visible-flag t
-                :arguments ("face" "font" "frame"))
-                nil [35502 35928])
-            ("set-face-background" function
-               (:user-visible-flag t
-                :arguments ("face" "color" "frame"))
-                nil [36134 36603])
-            ("set-face-foreground" function
-               (:user-visible-flag t
-                :arguments ("face" "color" "frame"))
-                nil [36606 37075])
-            ("set-face-stipple" function
-               (:user-visible-flag t
-                :arguments ("face" "stipple" "frame"))
-                nil [37078 37683])
-            ("set-face-underline" function
-               (:user-visible-flag t
-                :arguments ("face" "underline" "frame"))
-                nil [37686 38455])
-            ("define-obsolete-function-alias" code nil nil [38457 38570])
-            ("set-face-inverse-video" function
-               (:user-visible-flag t
-                :arguments ("face" "inverse-video-p" "frame"))
-                nil [38573 39146])
-            ("define-obsolete-function-alias" code nil nil [39148 39269])
-            ("set-face-bold" function (:arguments ("face" "bold-p" "frame")) nil [39271 39687])
-            ("define-obsolete-function-alias" code nil nil [39689 39760])
-            ("set-face-italic" function (:arguments ("face" "italic-p" "frame")) nil [39763 40199])
-            ("define-obsolete-function-alias" code nil nil [40201 40276])
-            ("defalias" code nil nil [40279 40335])
-            ("invert-face" function
-               (:user-visible-flag t
-                :arguments ("face" "frame"))
-                nil [40338 41138])
-            ("crm-separator" variable nil nil [41324 41346])
-            ("read-face-name" function (:arguments ("prompt" "default" "multiple")) nil [41362 44220])
-            ("x-bitmap-file-path" variable nil nil [44279 44306])
-            ("face-valid-attribute-values" function (:arguments ("attribute" "frame")) nil [44308 46997])
-            ("face-attribute-name-alist" variable
-               (:constant-flag t
-                :default-value (quote ((:family . "font family") (:foundry . "font foundry") (:width . "character set width") (:height . "height in 1/10 pt") (:weight . "weight") (:slant . "slant") (:underline . "underline") (:overline . "overline") (:strike-through . "strike-through") (:box . "box") (:inverse-video . "inverse-video display") (:foreground . "foreground color") (:background . "background color") (:stipple . "background stipple") (:inherit . "inheritance"))))
-                nil [47000 47770])
-            ("face-descriptive-attribute-name" function (:arguments ("attribute")) nil [47773 47920])
-            ("face-read-string" function (:arguments ("face" "default" "name" "completion-alist")) nil [47923 48938])
-            ("face-read-integer" function (:arguments ("face" "default" "name")) nil [48941 49558])
-            ("read-face-attribute" function (:arguments ("face" "attribute" "frame")) nil [49719 52060])
-            ("declare-function" code nil nil [52062 52108])
-            ("declare-function" code nil nil [52109 52200])
-            ("read-face-font" function (:arguments ("face" "frame")) nil [52202 52574])
-            ("read-all-face-attributes" function (:arguments ("face" "frame")) nil [52577 53005])
-            ("modify-face" function
-               (:user-visible-flag t
-                :arguments ("face" "foreground" "background" "stipple" "bold-p" "italic-p" "underline" "inverse-p" "frame"))
-                nil [53007 53952])
-            ("read-face-and-attribute" function (:arguments ("attribute" "frame")) nil [53954 54743])
-            ("list-faces-sample-text" variable
-               (:constant-flag t
-                :default-value "abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ")
-                nil [54914 55077])
-            ("help-xref-stack" variable nil nil [55206 55230])
-            ("list-faces-display" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [55231 58266])
-            ("describe-face" function
-               (:user-visible-flag t
-                :arguments ("face" "frame"))
-                nil [58269 62402])
-            ("face-attr-construct" function (:arguments ("face" "_frame")) nil [62680 63270])
-            ("face-spec-set-match-display" function (:arguments ("display" "frame")) nil [63273 65075])
-            ("face-spec-choose" function (:arguments ("spec" "frame" "no-match-retval")) nil [65078 66573])
-            ("face--attributes-unspecified" variable
-               (:constant-flag t
-                :default-value (apply (quote append) (mapcar (lambda (x) (list (car x) (quote unspecified))) face-attribute-name-alist)))
-                nil [66753 66912])
-            ("face-spec-reset-face" function (:arguments ("face" "frame")) nil [66914 67987])
-            ("face-spec-set" function (:arguments ("face" "spec" "spec-type")) nil [67989 70092])
-            ("face-spec-recalc" function (:arguments ("face" "frame")) nil [70094 71807])
-            ("face-spec-set-2" function (:arguments ("face" "frame" "face-attrs")) nil [71809 72263])
-            ("face-attr-match-p" function (:arguments ("face" "attrs" "frame")) nil [72265 73339])
-            ("face-spec-match-p" function (:arguments ("face" "spec" "frame")) nil [73341 73536])
-            ("face-default-spec" function (:arguments ("face")) nil [73538 73726])
-            ("face-user-default-spec" function (:arguments ("face")) nil [73728 74011])
-            ("defined-colors" function (:arguments ("frame")) nil [74269 74727])
-            ("defalias" code nil nil [74728 74772])
-            ("defined-colors-with-face-attributes" function (:arguments ("frame")) nil [74774 75399])
-            ("readable-foreground-color" function (:arguments ("color")) nil [75401 75828])
-            ("declare-function" code nil nil [75830 75900])
-            ("color-defined-p" function (:arguments ("color" "frame")) nil [75902 76569])
-            ("defalias" code nil nil [76570 76616])
-            ("declare-function" code nil nil [76618 76685])
-            ("color-values" function (:arguments ("color" "frame")) nil [76687 77606])
-            ("defalias" code nil nil [77608 77648])
-            ("declare-function" code nil nil [77650 77717])
-            ("display-color-p" function (:arguments ("display")) nil [77719 78121])
-            ("defalias" code nil nil [78122 78168])
-            ("declare-function" code nil nil [78170 78240])
-            ("display-grayscale-p" function (:arguments ("display")) nil [78242 78675])
-            ("read-color" function
-               (:user-visible-flag t
-                :arguments ("prompt" "convert-to-RGB" "allow-empty-name" "msg"))
-                nil [78677 81542])
-            ("face-at-point" function (:arguments ("thing" "multiple")) nil [81544 82550])
-            ("faces--attribute-at-point" function (:arguments ("attribute" "attribute-unnamed")) nil [82552 84085])
-            ("foreground-color-at-point" function nil nil [84087 84245])
-            ("background-color-at-point" function nil nil [84247 84405])
-            ("declare-function" code nil nil [84576 84621])
-            ("declare-function" code nil nil [84622 84715])
-            ("declare-function" code nil nil [84716 84810])
-            ("declare-function" code nil nil [84811 84865])
-            ("x-display-name" variable nil nil [84866 84889])
-            ("x-handle-named-frame-geometry" function (:arguments ("parameters")) nil [84891 85786])
-            ("x-handle-reverse-video" function (:arguments ("frame" "parameters")) nil [85789 86795])
-            ("declare-function" code nil nil [86797 86847])
-            ("declare-function" code nil nil [86848 86914])
-            ("x-create-frame-with-faces" function (:arguments ("parameters")) nil [86916 88117])
-            ("face-set-after-frame-default" function (:arguments ("frame" "parameters")) nil [88119 89516])
-            ("tty-handle-reverse-video" function (:arguments ("frame" "parameters")) nil [89518 90194])
-            ("tty-create-frame-with-faces" function (:arguments ("parameters")) nil [90197 90956])
-            ("tty-find-type" function (:arguments ("pred" "type")) nil [90958 91523])
-            ("tty-setup-hook" variable nil nil [91525 91757])
-            ("tty-run-terminal-initialization" function (:arguments ("frame" "type" "run-hook")) nil [91759 93332])
-            ("tty-set-up-initial-frame-faces" function nil nil [93438 93595])
-            ("basic-faces" customgroup (:user-visible-flag t) nil [93766 93841])
-            ("default" variable
-               (:default-value (quote ((t nil)))
-                :type "face")
-                nil [93843 93975])
-            ("bold" variable
-               (:default-value (quote ((t :weight bold)))
-                :type "face")
-                nil [93977 94056])
-            ("italic" variable
-               (:default-value (quote ((((supports :slant italic)) :slant italic) (((supports :underline t)) :underline t) (t :slant italic)))
-                :type "face")
-                nil [94058 94423])
-            ("bold-italic" variable
-               (:default-value (quote ((t :weight bold :slant italic)))
-                :type "face")
-                nil [94425 94532])
-            ("underline" variable
-               (:default-value (quote ((((supports :underline t)) :underline t) (((supports :weight bold)) :weight bold) (t :underline t)))
-                :type "face")
-                nil [94534 94724])
-            ("fixed-pitch" variable
-               (:default-value (quote ((t :family "Monospace")))
-                :type "face")
-                nil [94726 94830])
-            ("fixed-pitch-serif" variable
-               (:default-value (quote ((t :family "Monospace Serif")))
-                :type "face")
-                nil [94832 94960])
-            ("variable-pitch" variable
-               (:default-value (quote ((((type w32)) :family "Arial" :foundry "outline") (t :family "Sans Serif")))
-                :type "face")
-                nil [94962 95442])
-            ("shadow" variable
-               (:default-value (quote ((((class color grayscale) (min-colors 88) (background light)) :foreground "grey50") (((class color grayscale) (min-colors 88) (background dark)) :foreground "grey70") (((class color) (min-colors 8) (background light)) :foreground "green") (((class color) (min-colors 8) (background dark)) :foreground "yellow")))
-                :type "face")
-                nil [95444 95882])
-            ("link" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) :foreground "RoyalBlue3" :underline t) (((class color) (background light)) :foreground "blue" :underline t) (((class color) (min-colors 88) (background dark)) :foreground "cyan1" :underline t) (((class color) (background dark)) :foreground "cyan" :underline t) (t :inherit underline)))
-                :type "face")
-                nil [95884 96351])
-            ("link-visited" variable
-               (:default-value (quote ((default :inherit link) (((class color) (background light)) :foreground "magenta4") (((class color) (background dark)) :foreground "violet")))
-                :type "face")
-                nil [96353 96603])
-            ("highlight" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) :background "darkseagreen2") (((class color) (min-colors 88) (background dark)) :background "darkolivegreen") (((class color) (min-colors 16) (background light)) :background "darkseagreen2") (((class color) (min-colors 16) (background dark)) :background "darkolivegreen") (((class color) (min-colors 8)) :background "green" :foreground "black") (t :inverse-video t)))
-                :type "face")
-                nil [96605 97147])
-            ("region" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background dark)) :background "blue3") (((class color) (min-colors 88) (background light) (type gtk)) :distant-foreground "gtk_selection_fg_color" :background "gtk_selection_bg_color") (((class color) (min-colors 88) (background light) (type ns)) :distant-foreground "ns_selection_fg_color" :background "ns_selection_bg_color") (((class color) (min-colors 88) (background light)) :background "lightgoldenrod2") (((class color) (min-colors 16) (background dark)) :background "blue3") (((class color) (min-colors 16) (background light)) :background "lightgoldenrod2") (((class color) (min-colors 8)) :background "blue" :foreground "white") (((type tty) (class mono)) :inverse-video t) (t :background "gray")))
-                :type "face")
-                nil [97309 98235])
-            ("secondary-selection" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) :background "yellow1") (((class color) (min-colors 88) (background dark)) :background "SkyBlue4") (((class color) (min-colors 16) (background light)) :background "yellow") (((class color) (min-colors 16) (background dark)) :background "SkyBlue4") (((class color) (min-colors 8)) :background "cyan" :foreground "black") (t :inverse-video t)))
-                :type "face")
-                nil [98237 98785])
-            ("trailing-whitespace" variable
-               (:default-value (quote ((((class color) (background light)) :background "red1") (((class color) (background dark)) :background "red1") (t :inverse-video t)))
-                :type "face")
-                nil [98787 99064])
-            ("line-number" variable
-               (:default-value (quote ((t :inherit (shadow default))))
-                :type "face")
-                nil [99102 99513])
-            ("line-number-current-line" variable
-               (:default-value (quote ((t :inherit line-number)))
-                :type "face")
-                nil [99515 100064])
-            ("escape-glyph" variable
-               (:default-value (quote ((((background dark)) :foreground "cyan") (((type pc)) :foreground "magenta") (t :foreground "brown")))
-                :type "face")
-                nil [100066 100496])
-            ("homoglyph" variable
-               (:default-value (quote ((((background dark)) :foreground "cyan") (((type pc)) :foreground "magenta") (t :foreground "brown")))
-                :type "face")
-                nil [100498 100706])
-            ("nobreak-space" variable
-               (:default-value (quote ((((class color) (min-colors 88)) :inherit escape-glyph :underline t) (((class color) (min-colors 8)) :background "magenta") (t :inverse-video t)))
-                :type "face")
-                nil [100708 100968])
-            ("nobreak-hyphen" variable
-               (:default-value (quote ((((background dark)) :foreground "cyan") (((type pc)) :foreground "magenta") (t :foreground "brown")))
-                :type "face")
-                nil [100970 101189])
-            ("mode-line-faces" customgroup (:user-visible-flag t) nil [101191 101308])
-            ("mode-line" variable
-               (:default-value (quote ((((class color) (min-colors 88)) :box (:line-width -1 :style released-button) :background "grey75" :foreground "black") (t :inverse-video t)))
-                :type "face")
-                nil [101310 101606])
-            ("mode-line-inactive" variable
-               (:default-value (quote ((default :inherit mode-line) (((class color) (min-colors 88) (background light)) :weight light :box (:line-width -1 :color "grey75" :style nil) :foreground "grey20" :background "grey90") (((class color) (min-colors 88) (background dark)) :weight light :box (:line-width -1 :color "grey40" :style nil) :foreground "grey80" :background "grey30")))
-                :type "face")
-                nil [101608 102146])
-            ("mode-line-highlight" variable
-               (:default-value (quote ((((class color) (min-colors 88)) :box (:line-width 2 :color "grey40" :style released-button)) (t :inherit highlight)))
-                :type "face")
-                nil [102148 102422])
-            ("mode-line-emphasis" variable
-               (:default-value (quote ((t (:weight bold))))
-                :type "face")
-                nil [102424 102667])
-            ("mode-line-buffer-id" variable
-               (:default-value (quote ((t (:weight bold))))
-                :type "face")
-                nil [102669 102852])
-            ("header-line" variable
-               (:default-value (quote ((default :inherit mode-line) (((type tty)) :inverse-video nil :underline t) (((class color grayscale) (background light)) :background "grey90" :foreground "grey20" :box nil) (((class color grayscale) (background dark)) :background "grey20" :foreground "grey90" :box nil) (((class mono) (background light)) :background "white" :foreground "black" :inverse-video nil :box nil :underline t) (((class mono) (background dark)) :background "black" :foreground "white" :inverse-video nil :box nil :underline t)))
-                :type "face")
-                nil [102854 104190])
-            ("header-line-highlight" variable
-               (:default-value (quote ((t :inherit highlight)))
-                :type "face")
-                nil [104192 104334])
-            ("vertical-border" variable
-               (:default-value (quote ((((type tty)) :inherit mode-line-inactive)))
-                :type "face")
-                nil [104336 104501])
-            ("window-divider" variable
-               (:default-value (quote ((t :foreground "gray60")))
-                :type "face")
-                nil [104503 104971])
-            ("window-divider-first-pixel" variable
-               (:default-value (quote ((t :foreground "gray80")))
-                :type "face")
-                nil [104973 105390])
-            ("window-divider-last-pixel" variable
-               (:default-value (quote ((t :foreground "gray40")))
-                :type "face")
-                nil [105392 105805])
-            ("internal-border" variable
-               (:default-value (quote ((t nil)))
-                :type "face")
-                nil [105807 105944])
-            ("minibuffer-prompt" variable
-               (:default-value (quote ((((background dark)) :foreground "cyan") (((type pc)) :foreground "magenta") (t :foreground "medium blue")))
-                :type "face")
-                nil [105946 106441])
-            ("setq" code nil nil [106443 106554])
-            ("fringe" variable
-               (:default-value (quote ((((class color) (background light)) :background "grey95") (((class color) (background dark)) :background "grey10") (t :background "gray")))
-                :type "face")
-                nil [106556 106868])
-            ("scroll-bar" variable
-               (:default-value (quote ((t nil)))
-                :type "face")
-                nil [106870 107008])
-            ("border" variable
-               (:default-value (quote ((t nil)))
-                :type "face")
-                nil [107010 107139])
-            ("cursor" variable
-               (:default-value (quote ((((background light)) :background "black") (((background dark)) :background "white")))
-                :type "face")
-                nil [107141 107591])
-            ("put" code nil nil [107593 107625])
-            ("mouse" variable
-               (:default-value (quote ((t nil)))
-                :type "face")
-                nil [107627 107753])
-            ("tool-bar" variable
-               (:default-value (quote ((default :box (:line-width 1 :style released-button) :foreground "black") (((type x w32 ns) (class color)) :background "grey75") (((type x) (class mono)) :background "grey")))
-                :type "face")
-                nil [107755 108045])
-            ("menu" variable
-               (:default-value (quote ((((type tty)) :inverse-video t) (((type x-toolkit))) (t :inverse-video t)))
-                :type "face")
-                nil [108047 108291])
-            ("help-argument-name" variable
-               (:default-value (quote ((t :inherit italic)))
-                :type "face")
-                nil [108293 108415])
-            ("glyphless-char" variable
-               (:default-value (quote ((((type tty)) :inherit underline) (((type pc)) :inherit escape-glyph) (t :height 0.6)))
-                :type "face")
-                nil [108417 108691])
-            ("error" variable
-               (:default-value (quote ((default :weight bold) (((class color) (min-colors 88) (background light)) :foreground "Red1") (((class color) (min-colors 88) (background dark)) :foreground "Pink") (((class color) (min-colors 16) (background light)) :foreground "Red1") (((class color) (min-colors 16) (background dark)) :foreground "Pink") (((class color) (min-colors 8)) :foreground "red") (t :inverse-video t)))
-                :type "face")
-                nil [108693 109223])
-            ("warning" variable
-               (:default-value (quote ((default :weight bold) (((class color) (min-colors 16)) :foreground "DarkOrange") (((class color)) :foreground "yellow")))
-                :type "face")
-                nil [109225 109459])
-            ("success" variable
-               (:default-value (quote ((default :weight bold) (((class color) (min-colors 16) (background light)) :foreground "ForestGreen") (((class color) (min-colors 88) (background dark)) :foreground "Green1") (((class color) (min-colors 16) (background dark)) :foreground "Green") (((class color)) :foreground "green")))
-                :type "face")
-                nil [109461 109880])
-            ("read-multiple-choice-face" variable
-               (:default-value (quote ((t (:inherit underline :weight bold))))
-                :type "face")
-                nil [109882 110071])
-            ("tty-menu-enabled-face" variable
-               (:default-value (quote ((t :foreground "yellow" :background "blue" :weight bold)))
-                :type "face")
-                nil [110097 110269])
-            ("tty-menu-disabled-face" variable
-               (:default-value (quote ((((class color) (min-colors 16)) :foreground "lightgray" :background "blue") (t :foreground "white" :background "blue")))
-                :type "face")
-                nil [110271 110517])
-            ("tty-menu-selected-face" variable
-               (:default-value (quote ((t :background "red")))
-                :type "face")
-                nil [110519 110666])
-            ("paren-showing-faces" customgroup (:user-visible-flag t) nil [110668 110803])
-            ("show-paren-match" variable
-               (:default-value (quote ((((class color) (background light)) :background "turquoise") (((class color) (background dark)) :background "steelblue3") (((background dark) (min-colors 4)) :background "grey50") (((background light) (min-colors 4)) :background "gray") (t :inherit underline)))
-                :type "face")
-                nil [110805 111271])
-            ("show-paren-match-expression" variable
-               (:default-value (quote ((t :inherit show-paren-match)))
-                :type "face")
-                nil [111273 111508])
-            ("show-paren-mismatch" variable
-               (:default-value (quote ((((class color)) (:foreground "white" :background "purple")) (t (:inverse-video t))))
-                :type "face")
-                nil [111510 111701])
-            ("x-font-regexp" variable nil nil [112077 112103])
-            ("x-font-regexp-head" variable nil nil [112104 112135])
-            ("x-font-regexp-weight" variable nil nil [112136 112169])
-            ("x-font-regexp-slant" variable nil nil [112170 112202])
-            ("x-font-regexp-weight-subnum" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [112204 112244])
-            ("x-font-regexp-slant-subnum" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [112245 112284])
-            ("x-font-regexp-swidth-subnum" variable
-               (:constant-flag t
-                :default-value 3)
-                nil [112285 112325])
-            ("x-font-regexp-adstyle-subnum" variable
-               (:constant-flag t
-                :default-value 4)
-                nil [112326 112367])
-            ("let" code nil nil [112450 113668])
-            ("x-resolve-font-name" function (:arguments ("pattern" "face" "frame")) nil [113671 114758])
-            ("font-list-limit" variable (:default-value 100) nil [114760 114875])
-            ("make-obsolete-variable" code nil nil [114876 114928])
-            ("faces" package nil nil [114930 114946]))          
-      :file "faces.el"
-      :pointmax 114971
-      :fsize 114970
-      :lastmodtime '(23525 29507 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("setq" code nil nil [1132 1168])
-            ("command-line-processed" variable nil nil [1170 1255])
-            ("initialization" customgroup (:user-visible-flag t) nil [1257 1338])
-            ("initial-buffer-choice" variable nil nil [1340 2311])
-            ("inhibit-startup-screen" variable nil nil [2313 2566])
-            ("defvaralias" code nil nil [2568 2628])
-            ("defvaralias" code nil nil [2629 2691])
-            ("startup-screen-inhibit-startup-screen" variable nil nil [2693 2743])
-            ("inhibit-startup-echo-area-message" variable nil nil [3043 4097])
-            ("inhibit-default-init" variable nil nil [4099 4229])
-            ("inhibit-startup-buffer-menu" variable nil nil [4231 4395])
-            ("command-switch-alist" variable nil nil [4397 4665])
-            ("command-line-args-left" variable nil nil [4667 4751])
-            ("defvaralias" code nil nil [4753 4988])
-            ("internal-make-var-non-special" code nil nil [4989 5026])
-            ("argi" variable nil nil [5028 5080])
-            ("internal-make-var-non-special" code nil nil [5081 5118])
-            ("command-line-functions" variable nil nil [5120 5574])
-            ("command-line-default-directory" variable nil nil [5576 5744])
-            ("command-line-x-option-alist" variable
-               (:constant-flag t
-                :default-value (quote (("-bw" 1 x-handle-numeric-switch border-width) ("-d" 1 x-handle-display) ("-display" 1 x-handle-display) ("-name" 1 x-handle-name-switch) ("-title" 1 x-handle-switch title) ("-T" 1 x-handle-switch title) ("-r" 0 x-handle-switch reverse t) ("-rv" 0 x-handle-switch reverse t) ("-reverse" 0 x-handle-switch reverse t) ("-reverse-video" 0 x-handle-switch reverse t) ("-fn" 1 x-handle-switch font) ("-font" 1 x-handle-switch font) ("-fs" 0 x-handle-initial-switch fullscreen fullboth) ("-fw" 0 x-handle-initial-switch fullscreen fullwidth) ("-fh" 0 x-handle-initial-switch fullscreen fullheight) ("-mm" 0 x-handle-initial-switch fullscreen maximized) ("-ib" 1 x-handle-numeric-switch internal-border-width) ("-g" 1 x-handle-geometry) ("-lsp" 1 x-handle-numeric-switch line-spacing) ("-geometry" 1 x-handle-geometry) ("-fg" 1 x-handle-switch foreground-color) ("-foreground" 1 x-handle-switch foreground-color) ("-bg" 1 x-handle-switch background-color) ("-background" 1 x-handle-switch background-color) ("-ms" 1 x-handle-switch mouse-color) ("-nbi" 0 x-handle-switch icon-type nil) ("-iconic" 0 x-handle-iconic) ("-xrm" 1 x-handle-xrm-switch) ("-cr" 1 x-handle-switch cursor-color) ("-vb" 0 x-handle-switch vertical-scroll-bars t) ("-hb" 0 x-handle-switch horizontal-scroll-bars t) ("-bd" 1 x-handle-switch) ("--border-width" 1 x-handle-numeric-switch border-width) ("--display" 1 x-handle-display) ("--name" 1 x-handle-name-switch) ("--title" 1 x-handle-switch title) ("--reverse-video" 0 x-handle-switch reverse t) ("--font" 1 x-handle-switch font) ("--fullscreen" 0 x-handle-initial-switch fullscreen fullboth) ("--fullwidth" 0 x-handle-initial-switch fullscreen fullwidth) ("--fullheight" 0 x-handle-initial-switch fullscreen fullheight) ("--maximized" 0 x-handle-initial-switch fullscreen maximized) ("--internal-border" 1 x-handle-numeric-switch internal-border-width) ("--geometry" 1 x-handle-geometry) ("--foreground-color" 1 x-handle-switch foreground-color) ("--background-color" 1 x-handle-switch background-color) ("--mouse-color" 1 x-handle-switch mouse-color) ("--no-bitmap-icon" 0 x-handle-no-bitmap-icon) ("--iconic" 0 x-handle-iconic) ("--xrm" 1 x-handle-xrm-switch) ("--cursor-color" 1 x-handle-switch cursor-color) ("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t) ("--line-spacing" 1 x-handle-numeric-switch line-spacing) ("--border-color" 1 x-handle-switch border-color) ("--smid" 1 x-handle-smid) ("--parent-id" 1 x-handle-parent-id))))
-                nil [5852 9036])
-            ("command-line-ns-option-alist" variable
-               (:constant-flag t
-                :default-value (quote (("-NSAutoLaunch" 1 ns-ignore-1-arg) ("-NXAutoLaunch" 1 ns-ignore-1-arg) ("-macosx" 0 ignore) ("-NSHost" 1 ns-ignore-1-arg) ("-_NSMachLaunch" 1 ns-ignore-1-arg) ("-MachLaunch" 1 ns-ignore-1-arg) ("-NXOpen" 1 ns-ignore-1-arg) ("-NSOpen" 1 ns-handle-nxopen) ("-NXOpenTemp" 1 ns-ignore-1-arg) ("-NSOpenTemp" 1 ns-handle-nxopentemp) ("-GSFilePath" 1 ns-handle-nxopen) ("-name" 1 x-handle-name-switch) ("-title" 1 x-handle-switch title) ("-T" 1 x-handle-switch title) ("-r" 0 x-handle-switch reverse t) ("-rv" 0 x-handle-switch reverse t) ("-reverse" 0 x-handle-switch reverse t) ("-fn" 1 x-handle-switch font) ("-font" 1 x-handle-switch font) ("-ib" 1 x-handle-numeric-switch internal-border-width) ("-g" 1 x-handle-geometry) ("-geometry" 1 x-handle-geometry) ("-fg" 1 x-handle-switch foreground-color) ("-foreground" 1 x-handle-switch foreground-color) ("-bg" 1 x-handle-switch background-color) ("-background" 1 x-handle-switch background-color) ("-itype" 0 x-handle-switch icon-type t) ("-i" 0 x-handle-switch icon-type t) ("-iconic" 0 x-handle-iconic icon-type t) ("-cr" 1 x-handle-switch cursor-color) ("-vb" 0 x-handle-switch vertical-scroll-bars t) ("-hb" 0 x-handle-switch horizontal-scroll-bars t) ("-bd" 1 x-handle-switch) ("--name" 1 x-handle-name-switch) ("--title" 1 x-handle-switch title) ("--reverse-video" 0 x-handle-switch reverse t) ("--font" 1 x-handle-switch font) ("--internal-border" 1 x-handle-numeric-switch internal-border-width) ("--foreground-color" 1 x-handle-switch foreground-color) ("--background-color" 1 x-handle-switch background-color) ("--mouse-color" 1 x-handle-switch mouse-color) ("--icon-type" 0 x-handle-switch icon-type t) ("--iconic" 0 x-handle-iconic) ("--cursor-color" 1 x-handle-switch cursor-color) ("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t) ("--border-color" 1 x-handle-switch border-width))))
-                nil [9038 11990])
-            ("before-init-hook" variable nil nil [11993 12103])
-            ("after-init-hook" variable nil nil [12105 12521])
-            ("emacs-startup-hook" variable nil nil [12523 12630])
-            ("term-setup-hook" variable nil nil [12632 12947])
-            ("make-obsolete-variable" code nil nil [12949 13065])
-            ("inhibit-startup-hooks" variable nil nil [13067 13266])
-            ("keyboard-type" variable nil nil [13268 13489])
-            ("window-setup-hook" variable nil nil [13491 13938])
-            ("initial-major-mode" variable (:default-value (quote lisp-interaction-mode)) nil [13940 14109])
-            ("init-file-user" variable nil nil [14111 14758])
-            ("site-run-file" variable (:default-value (purecopy "site-start")) nil [14760 16031])
-            ("make-obsolete-variable" code nil nil [16033 16105])
-            ("mail-host-address" variable nil nil [16107 16305])
-            ("user-mail-address" variable (:default-value (or (getenv "EMAIL") (concat (user-login-name) "@" (or mail-host-address (system-name))))) nil [16307 16729])
-            ("auto-save-list-file-prefix" variable (:default-value (cond ((eq system-type (quote ms-dos)) (concat user-emacs-directory "auto-save.list/_s")) (t (concat user-emacs-directory "auto-save-list/.saves-")))) nil [16731 17484])
-            ("emacs-basic-display" variable nil nil [17486 17518])
-            ("init-file-debug" variable nil nil [17520 17548])
-            ("init-file-had-error" variable nil nil [17550 17646])
-            ("normal-top-level-add-subdirs-inode-list" variable nil nil [17648 17700])
-            ("no-blinking-cursor" variable nil nil [17702 17733])
-            ("pure-space-overflow" variable nil nil [17735 17820])
-            ("pure-space-overflow-message" variable (:default-value (purecopy "Warning Warning!!!  Pure space overflow    !!!Warning Warning

-(See the node Pure Storage in the Lisp manual for details.)

-")) nil [17822 17998])
-            ("tutorial-directory" variable (:default-value (file-name-as-directory (expand-file-name "tutorials" data-directory))) nil [18000 18236])
-            ("normal-top-level-add-subdirs-to-load-path" function nil nil [18238 19990])
-            ("normal-top-level-add-to-load-path" function (:arguments ("dirs")) nil [19992 20761])
-            ("normal-top-level" function nil nil [20763 30539])
-            ("tty-long-option-alist" variable
-               (:constant-flag t
-                :default-value (quote (("--name" . "-name") ("--title" . "-T") ("--reverse-video" . "-reverse") ("--foreground-color" . "-fg") ("--background-color" . "-bg") ("--color" . "-color"))))
-                nil [30647 30873])
-            ("tool-bar-images-pixel-height" variable
-               (:constant-flag t
-                :default-value 24)
-                nil [30875 30965])
-            ("cl-defgeneric" code nil nil [30967 31308])
-            ("cl-defmethod" code nil nil [31309 31405])
-            ("cl-defgeneric" code nil nil [31407 31745])
-            ("tty-handle-args" function (:arguments ("args")) nil [31747 34494])
-            ("declare-function" code nil nil [34496 34590])
-            ("declare-function" code nil nil [34591 34650])
-            ("declare-function" code nil nil [34651 34695])
-            ("server-name" variable nil nil [34697 34717])
-            ("server-process" variable nil nil [34718 34741])
-            ("startup--setup-quote-display" function (:arguments ("style")) nil [34743 37718])
-            ("command-line" function nil nil [37720 59239])
-            ("x-apply-session-resources" function nil nil [59241 60320])
-            ("initial-scratch-message" variable (:default-value (purecopy ";; This buffer is for text that is not saved, and for Lisp evaluation.

-;; To create a file, visit it with \\[find-file] and enter text in its buffer.

-

-")) nil [60322 60730])
-            ("fancy-startup-text" variable
-               (:constant-flag t
-                :default-value (\` ((:face (variable-pitch font-lock-comment-face) "Welcome to " :link ("GNU Emacs" (\, (lambda (_button) (browse-url "https://www.gnu.org/software/emacs/"))) "Browse https://www.gnu.org/software/emacs/") ", one component of the " :link (\, (lambda nil (if (eq system-type (quote gnu/linux)) (\` ("GNU/Linux" (\, (lambda (_button) (browse-url "https://www.gnu.org/gnu/linux-and-gnu.html"))) "Browse https://www.gnu.org/gnu/linux-and-gnu.html")) (\` ("GNU" (\, (lambda (_button) (browse-url "https://www.gnu.org/gnu/thegnuproject.html"))) "Browse https://www.gnu.org/gnu/thegnuproject.html"))))) " operating system.

-

-" :face variable-pitch :link ("Emacs Tutorial" (\, (lambda (_button) (help-with-tutorial)))) "	Learn basic keystroke commands" (\, (lambda nil (let* ((en "TUTORIAL") (tut (or (get-language-info current-language-environment (quote tutorial)) en)) (title (with-temp-buffer (insert-file-contents (expand-file-name tut tutorial-directory) nil) (search-forward ".") (buffer-substring (point-min) (1- (point)))))) (if (string= en tut) "" (concat " (" title ")"))))) "

-" :link ("Emacs Guided Tour" (\, (lambda (_button) (browse-url "https://www.gnu.org/software/emacs/tour/"))) "Browse https://www.gnu.org/software/emacs/tour/") "	Overview of Emacs features at gnu.org

-" :link ("View Emacs Manual" (\, (lambda (_button) (info-emacs-manual)))) "	View the Emacs manual using Info

-" :link ("Absence of Warranty" (\, (lambda (_button) (describe-no-warranty)))) "	GNU Emacs comes with " :face (variable-pitch (:slant oblique)) "ABSOLUTELY NO WARRANTY

-" :face variable-pitch :link ("Copying Conditions" (\, (lambda (_button) (describe-copying)))) "	Conditions for redistributing and changing Emacs

-" :link ("Ordering Manuals" (\, (lambda (_button) (view-order-manuals)))) "	Purchasing printed copies of manuals

-" "

-"))))
-                nil [60905 63689])
-            ("fancy-about-text" variable
-               (:constant-flag t
-                :default-value (\` ((:face (variable-pitch font-lock-comment-face) "This is " :link ("GNU Emacs" (\, (lambda (_button) (browse-url "https://www.gnu.org/software/emacs/"))) "Browse https://www.gnu.org/software/emacs/") ", one component of the " :link (\, (lambda nil (if (eq system-type (quote gnu/linux)) (\` ("GNU/Linux" (\, (lambda (_button) (browse-url "https://www.gnu.org/gnu/linux-and-gnu.html"))) "Browse https://www.gnu.org/gnu/linux-and-gnu.html")) (\` ("GNU" (\, (lambda (_button) (describe-gnu-project))) "Display info on the GNU project."))))) " operating system.

-" :face (variable-pitch font-lock-builtin-face) "

-" (\, (lambda nil (emacs-version))) "

-" :face (variable-pitch (:height 0.8)) (\, (lambda nil emacs-copyright)) "

-

-" :face variable-pitch :link ("Authors" (\, (lambda (_button) (view-file (expand-file-name "AUTHORS" data-directory)) (goto-char (point-min))))) "	Many people have contributed code included in GNU Emacs

-" :link ("Contributing" (\, (lambda (_button) (info "(emacs)Contributing")))) "	How to contribute improvements to Emacs

-" "

-" :link ("GNU and Freedom" (\, (lambda (_button) (describe-gnu-project)))) "	Why we developed GNU Emacs, and the GNU operating system

-" :link ("Absence of Warranty" (\, (lambda (_button) (describe-no-warranty)))) "	GNU Emacs comes with " :face (variable-pitch (:slant oblique)) "ABSOLUTELY NO WARRANTY

-" :face variable-pitch :link ("Copying Conditions" (\, (lambda (_button) (describe-copying)))) "	Conditions for redistributing and changing Emacs

-" :link ("Getting New Versions" (\, (lambda (_button) (describe-distribution)))) "	How to obtain the latest version of Emacs

-" :link ("Ordering Manuals" (\, (lambda (_button) (view-order-manuals)))) "	Buying printed manuals from the FSF

-" "

-" :link ("Emacs Tutorial" (\, (lambda (_button) (help-with-tutorial)))) "	Learn basic Emacs keystroke commands" (\, (lambda nil (let* ((en "TUTORIAL") (tut (or (get-language-info current-language-environment (quote tutorial)) en)) (title (with-temp-buffer (insert-file-contents (expand-file-name tut tutorial-directory) nil) (search-forward ".") (buffer-substring (point-min) (1- (point)))))) (if (string= en tut) "" (concat " (" title ")"))))) "

-" :link ("Emacs Guided Tour" (\, (lambda (_button) (browse-url "https://www.gnu.org/software/emacs/tour/"))) "Browse https://www.gnu.org/software/emacs/tour/") "	See an overview of Emacs features at gnu.org"))))
-                nil [63691 66849])
-            ("fancy-splash-screen" customgroup (:user-visible-flag t) nil [66852 66971])
-            ("fancy-splash-image" variable nil nil [66973 67170])
-            ("splash-screen-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (suppress-keymap map) (set-keymap-parent map button-buffer-map) (define-key map "" (quote scroll-down-command)) (define-key map [33554464] (quote scroll-down-command)) (define-key map " " (quote scroll-up-command)) (define-key map "q" (quote exit-splash-screen)) map)) nil [67173 67545])
-            ("fancy-splash-insert" function (:arguments ("args")) nil [67616 69012])
-            ("declare-function" code nil nil [69014 69083])
-            ("fancy-splash-image-file" function nil nil [69085 69564])
-            ("fancy-splash-head" function nil nil [69566 70584])
-            ("fancy-startup-tail" function (:arguments ("concise")) nil [70586 73725])
-            ("exit-splash-screen" function (:user-visible-flag t) nil [73727 73836])
-            ("fancy-startup-screen" function (:arguments ("concise")) nil [73838 75269])
-            ("fancy-about-screen" function nil nil [75271 76029])
-            ("fancy-splash-frame" function nil nil [76031 76627])
-            ("use-fancy-splash-screens-p" function nil nil [76629 77444])
-            ("normal-splash-screen" function (:arguments ("startup" "concise")) nil [77447 79953])
-            ("normal-mouse-startup-screen" function nil nil [79955 81761])
-            ("normal-no-mouse-startup-screen" function nil nil [81763 85892])
-            ("normal-about-screen" function nil nil [85894 87355])
-            ("startup-echo-area-message" function nil nil [87357 87554])
-            ("display-startup-echo-area-message" function nil nil [87556 88820])
-            ("display-startup-screen" function (:arguments ("concise")) nil [88822 89274])
-            ("display-about-screen" function (:user-visible-flag t) nil [89276 89522])
-            ("defalias" code nil nil [89524 89569])
-            ("defalias" code nil nil [89570 89627])
-            ("command-line-1" function (:arguments ("args-left")) nil [89629 106773])
-            ("command-line-normalize-file-name" function (:arguments ("file")) nil [106775 107507]))          
-      :file "startup.el"
-      :pointmax 107534
-      :fsize 107565
-      :lastmodtime '(23525 29518 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("xterm-mouse-debug-buffer" variable nil nil [1493 1530])
-            ("xterm-mouse-translate" function (:arguments ("_event")) nil [1532 1645])
-            ("xterm-mouse-translate-extended" function (:arguments ("_event")) nil [1647 1940])
-            ("xterm-mouse-translate-1" function (:arguments ("extension")) nil [1942 3787])
-            ("xt-mouse-epoch" variable nil nil [4045 4072])
-            ("xterm-mouse-position-function" function (:arguments ("pos")) nil [4114 4384])
-            ("xterm-mouse-truncate-wrap" function (:arguments ("f")) nil [4386 5016])
-            ("xterm-mouse-utf-8" variable nil nil [5018 5299])
-            ("xterm-mouse--read-coordinate" function nil nil [5301 6076])
-            ("xterm-mouse--read-number-from-terminal" function (:arguments ("extension")) nil [6655 6990])
-            ("xterm-mouse--read-event-sequence" function (:arguments ("extension")) nil [7349 9052])
-            ("xterm-mouse--set-click-count" function (:arguments ("event" "click-count")) nil [9054 9500])
-            ("xterm-mouse-event" function (:arguments ("extension")) nil [9502 12658])
-            ("define-minor-mode" code nil nil [12675 13790])
-            ("xterm-mouse-tracking-enable-sequence" function nil nil [13792 15234])
-            ("xterm-mouse-tracking-enable-sequence" variable
-               (:constant-flag t
-                :default-value "[?1000h[?1002h[?1005h[?1006h")
-                nil [15236 16531])
-            ("make-obsolete-variable" code nil nil [16533 16672])
-            ("xterm-mouse-tracking-disable-sequence" function nil nil [16674 16936])
-            ("xterm-mouse-tracking-disable-sequence" variable
-               (:constant-flag t
-                :default-value "[?1006l[?1005l[?1002l[?1000l")
-                nil [16938 17094])
-            ("make-obsolete-variable" code nil nil [17096 17237])
-            ("xterm-mouse--tracking-sequence" function (:arguments ("suffix")) nil [17239 17555])
-            ("turn-on-xterm-mouse-tracking-on-terminal" function (:arguments ("terminal")) nil [17557 19144])
-            ("turn-off-xterm-mouse-tracking-on-terminal" function (:arguments ("terminal")) nil [19146 20540])
-            ("xt-mouse" package nil nil [20542 20561]))          
-      :file "xt-mouse.el"
-      :pointmax 20589
-      :fsize 20588
-      :lastmodtime '(23525 29522 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1159 1176])
-            ("bookmark" include nil nil [1177 1196])
-            ("declare-function" code nil nil [1198 1312])
-            ("declare-function" code nil nil [1313 1368])
-            ("declare-function" code nil nil [1369 1430])
-            ("declare-function" code nil nil [1431 1507])
-            ("declare-function" code nil nil [1508 1622])
-            ("declare-function" code nil nil [1623 1691])
-            ("declare-function" code nil nil [1692 1759])
-            ("declare-function" code nil nil [1760 1814])
-            ("declare-function" code nil nil [1815 1879])
-            ("declare-function" code nil nil [1880 1945])
-            ("declare-function" code nil nil [1946 2010])
-            ("declare-function" code nil nil [2011 2076])
-            ("declare-function" code nil nil [2077 2136])
-            ("declare-function" code nil nil [2137 2204])
-            ("xwidget-insert" function (:arguments ("pos" "type" "title" "width" "height" "args")) nil [2206 2708])
-            ("xwidget-at" function (:arguments ("pos")) nil [2710 3056])
-            ("browse-url" include nil nil [3160 3181])
-            ("image-mode" include nil nil [3182 3203])
-            ("xwidget-webkit-browse-url" function
-               (:user-visible-flag t
-                :arguments ("url" "new-session"))
-                nil [3261 3987])
-            ("xwidget-webkit-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "g" (quote xwidget-webkit-browse-url)) (define-key map "a" (quote xwidget-webkit-adjust-size-dispatch)) (define-key map "b" (quote xwidget-webkit-back)) (define-key map "r" (quote xwidget-webkit-reload)) (define-key map "t" (lambda nil (interactive) (message "o"))) (define-key map "
" (quote xwidget-webkit-insert-string)) (define-key map "w" (quote xwidget-webkit-current-url)) (define-key map "+" (quote xwidget-webkit-zoom-in)) (define-key map "-" (quote xwidget-webkit-zoom-out)) (define-key map (kbd "SPC") (quote xwidget-webkit-scroll-up)) (define-key map (kbd "DEL") (quote xwidget-webkit-scroll-down)) (define-key map [remap scroll-up] (quote xwidget-webkit-scroll-up)) (define-key map [remap scroll-up-command] (quote xwidget-webkit-scroll-up)) (define-key map [remap scroll-down] (quote xwidget-webkit-scroll-down)) (define-key map [remap scroll-down-command] (quote xwidget-webkit-scroll-down)) (define-key map [remap forward-char] (quote xwidget-webkit-scroll-forward)) (define-key map [remap backward-char] (quote xwidget-webkit-scroll-backward)) (define-key map [remap right-char] (quote xwidget-webkit-scroll-forward)) (define-key map [remap left-char] (quote xwidget-webkit-scroll-backward)) (define-key map [remap previous-line] (quote xwidget-webkit-scroll-down)) (define-key map [remap next-line] (quote xwidget-webkit-scroll-up)) (define-key map [remap beginning-of-buffer] (quote xwidget-webkit-scroll-top)) (define-key map [remap end-of-buffer] (quote xwidget-webkit-scroll-bottom)) map)) nil [4047 5916])
-            ("xwidget-webkit-zoom-in" function (:user-visible-flag t) nil [5918 6066])
-            ("xwidget-webkit-zoom-out" function (:user-visible-flag t) nil [6068 6218])
-            ("xwidget-webkit-scroll-up" function (:user-visible-flag t) nil [6220 6392])
-            ("xwidget-webkit-scroll-down" function (:user-visible-flag t) nil [6394 6571])
-            ("xwidget-webkit-scroll-forward" function (:user-visible-flag t) nil [6573 6756])
-            ("xwidget-webkit-scroll-backward" function (:user-visible-flag t) nil [6758 6944])
-            ("xwidget-webkit-scroll-top" function (:user-visible-flag t) nil [6946 7141])
-            ("xwidget-webkit-scroll-bottom" function (:user-visible-flag t) nil [7143 7376])
-            ("define-key" code nil nil [7586 7659])
-            ("xwidget-log" function (:arguments ("msg")) nil [7660 7855])
-            ("xwidget-event-handler" function (:user-visible-flag t) nil [7857 8382])
-            ("xwidget-webkit-callback" function (:arguments ("xwidget" "xwidget-event-type")) nil [8384 9828])
-            ("bookmark-make-record-function" variable nil nil [9830 9868])
-            ("define-derived-mode" code nil nil [9869 10190])
-            ("xwidget-webkit-bookmark-make-record" function nil nil [10192 10508])
-            ("xwidget-webkit-last-session-buffer" variable nil nil [10511 10558])
-            ("xwidget-webkit-last-session" function nil nil [10560 10792])
-            ("xwidget-webkit-current-session" function nil nil [10794 10989])
-            ("xwidget-adjust-size-to-content" function (:arguments ("xw")) nil [10991 11326])
-            ("xwidget-webkit-activeelement-js" variable (:default-value "

-function findactiveelement(doc){

-//alert(doc.activeElement.value);

-   if(doc.activeElement.value != undefined){

-      return doc.activeElement;

-   }else{

-        // recurse over the child documents:

-        var frames = doc.getElementsByTagName('frame');

-        for (var i = 0; i < frames.length; i++)

-        {

-                var d = frames[i].contentDocument;

-                 var rv = findactiveelement(d);

-                 if(rv != undefined){

-                    return rv;

-                 }

-        }

-    }

-    return undefined;

-};

-

-

-") nil [11329 12349])
-            ("xwidget-webkit-insert-string" function (:user-visible-flag t) nil [12351 13262])
-            ("xwidget-xwbl" variable nil nil [13264 13285])
-            ("xwidget-webkit-begin-edit-textarea" function (:arguments ("xw" "text")) nil [13286 13564])
-            ("xwidget-webkit-end-edit-textarea" function (:user-visible-flag t) nil [13566 13952])
-            ("xwidget-webkit-show-element" function
-               (:user-visible-flag t
-                :arguments ("xw" "element-selector"))
-                nil [13954 14496])
-            ("xwidget-webkit-show-named-element" function
-               (:user-visible-flag t
-                :arguments ("xw" "element-name"))
-                nil [14498 15246])
-            ("xwidget-webkit-show-id-element" function
-               (:user-visible-flag t
-                :arguments ("xw" "element-id"))
-                nil [15248 15716])
-            ("xwidget-webkit-show-id-or-named-element" function
-               (:user-visible-flag t
-                :arguments ("xw" "element-id"))
-                nil [15718 16267])
-            ("xwidget-webkit-adjust-size-to-content" function (:user-visible-flag t) nil [16269 16436])
-            ("xwidget-webkit-adjust-size-dispatch" function (:user-visible-flag t) nil [16438 16817])
-            ("xwidget-webkit-adjust-size-to-window" function (:arguments ("xwidget" "window")) nil [16819 17071])
-            ("xwidget-webkit-adjust-size" function
-               (:user-visible-flag t
-                :arguments ("w" "h"))
-                nil [17073 17308])
-            ("xwidget-webkit-fit-width" function (:user-visible-flag t) nil [17310 17578])
-            ("xwidget-webkit-auto-adjust-size" function (:arguments ("window")) nil [17580 17904])
-            ("xwidget-webkit-adjust-size-in-frame" function (:arguments ("frame")) nil [17906 18092])
-            ("eval-after-load" code nil nil [18094 18230])
-            ("xwidget-webkit-new-session" function (:arguments ("url")) nil [18232 18969])
-            ("xwidget-webkit-goto-url" function (:arguments ("url")) nil [18972 19185])
-            ("xwidget-webkit-back" function (:user-visible-flag t) nil [19187 19375])
-            ("xwidget-webkit-reload" function (:user-visible-flag t) nil [19377 19566])
-            ("xwidget-webkit-current-url" function (:user-visible-flag t) nil [19568 19879])
-            ("xwidget-webkit-get-selection" function (:arguments ("proc")) nil [19913 20123])
-            ("xwidget-webkit-copy-selection-as-kill" function (:user-visible-flag t) nil [20125 20322])
-            ("xwidget-get" function (:arguments ("xwidget" "propname")) nil [20452 20668])
-            ("xwidget-put" function (:arguments ("xwidget" "propname" "value")) nil [20670 20973])
-            ("xwidget-view-list" variable nil nil [21034 21060])
-            ("xwidget-list" variable nil nil [21086 21107])
-            ("xwidget-delete-zombies" function nil nil [21139 21463])
-            ("xwidget-cleanup" function (:user-visible-flag t) nil [21465 21892])
-            ("xwidget-kill-buffer-query-function" function nil nil [21894 22234])
-            ("when" code nil nil [22236 22514])
-            ("xwidget" package nil nil [22516 22534]))          
-      :file "xwidget.el"
-      :pointmax 22560
-      :fsize 22559
-      :lastmodtime '(23525 29522 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pp" include nil nil [1272 1285])
-            ("cl-lib" include nil nil [1305 1322])
-            ("bookmark" customgroup (:user-visible-flag t) nil [1741 1833])
-            ("bookmark-use-annotations" variable nil nil [1836 1985])
-            ("bookmark-save-flag" variable (:default-value t) nil [1988 2840])
-            ("bookmark-old-default-file" variable
-               (:constant-flag t
-                :default-value "~/.emacs-bkmrks")
-                nil [2843 2952])
-            ("bookmark-file" variable nil nil [2999 3067])
-            ("bookmark-default-file" variable (:default-value (if bookmark-file bookmark-file (locate-user-emacs-file "bookmarks" ".emacs.bmk"))) nil [3069 3335])
-            ("bookmark-version-control" variable (:default-value (quote nospecial)) nil [3338 3912])
-            ("bookmark-completion-ignore-case" variable (:default-value t) nil [3915 4060])
-            ("bookmark-sort-flag" variable (:default-value t) nil [4063 4323])
-            ("bookmark-automatically-show-annotations" variable (:default-value t) nil [4326 4478])
-            ("bookmark-bmenu-use-header-line" variable (:default-value t) nil [4480 4689])
-            ("bookmark-bmenu-inline-header-height" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [4691 4861])
-            ("bookmark-bmenu-marks-width" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [4863 5009])
-            ("bookmark-bmenu-file-column" variable (:default-value 30) nil [5011 5268])
-            ("bookmark-bmenu-toggle-filenames" variable (:default-value t) nil [5271 5465])
-            ("bookmark-menu-bookmark" variable
-               (:default-value (quote ((t (:weight bold))))
-                :type "face")
-                nil [5467 5610])
-            ("bookmark-menu-length" variable (:default-value 70) nil [5612 5748])
-            ("bookmark-search-delay" variable (:default-value 0.2) nil [5803 5937])
-            ("bookmark-menu-heading" variable
-               (:default-value (quote ((t (:inherit font-lock-type-face))))
-                :type "face")
-                nil [5939 6112])
-            ("or" code nil nil [6210 6258])
-            ("or" code nil nil [6314 6383])
-            ("bookmark-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "x" (quote bookmark-set)) (define-key map "m" (quote bookmark-set)) (define-key map "M" (quote bookmark-set-no-overwrite)) (define-key map "j" (quote bookmark-jump)) (define-key map "g" (quote bookmark-jump)) (define-key map "o" (quote bookmark-jump-other-window)) (define-key map "i" (quote bookmark-insert)) (define-key map "e" (quote edit-bookmarks)) (define-key map "f" (quote bookmark-insert-location)) (define-key map "r" (quote bookmark-rename)) (define-key map "d" (quote bookmark-delete)) (define-key map "l" (quote bookmark-load)) (define-key map "w" (quote bookmark-write)) (define-key map "s" (quote bookmark-save)) map)) nil [6800 7848])
-            ("bookmark-alist" variable nil nil [7942 9289])
-            ("bookmarks-already-loaded" variable nil nil [9291 9412])
-            ("bookmark-file-coding-system" variable nil nil [9414 9519])
-            ("bookmark-current-bookmark" variable nil nil [9549 9730])
-            ("make-variable-buffer-local" code nil nil [9732 9787])
-            ("bookmark-alist-modification-count" variable nil nil [9790 9904])
-            ("bookmark-search-size" variable (:default-value 16) nil [9907 10012])
-            ("bookmark-current-buffer" variable nil nil [10015 10266])
-            ("bookmark-yank-point" variable nil nil [10269 10419])
-            ("bookmark-quit-flag" variable nil nil [10422 10512])
-            ("with-buffer-modified-unmodified" function (:arguments ("body")) nil [10548 10873])
-            ("bookmark-name-from-full-record" function (:arguments ("bookmark-record")) nil [11057 11239])
-            ("bookmark-all-names" function nil nil [11242 11415])
-            ("bookmark-get-bookmark" function (:arguments ("bookmark-name-or-record" "noerror")) nil [11418 12120])
-            ("bookmark-get-bookmark-record" function (:arguments ("bookmark-name-or-record")) nil [12123 12598])
-            ("bookmark-set-name" function (:arguments ("bookmark-name-or-record" "newname")) nil [12601 12778])
-            ("bookmark-prop-get" function (:arguments ("bookmark-name-or-record" "prop")) nil [12780 12984])
-            ("bookmark-prop-set" function (:arguments ("bookmark-name-or-record" "prop" "val")) nil [12986 13351])
-            ("bookmark-get-annotation" function (:arguments ("bookmark-name-or-record")) nil [13353 13538])
-            ("bookmark-set-annotation" function (:arguments ("bookmark-name-or-record" "ann")) nil [13540 13721])
-            ("bookmark-get-filename" function (:arguments ("bookmark-name-or-record")) nil [13724 13908])
-            ("bookmark-set-filename" function (:arguments ("bookmark-name-or-record" "filename")) nil [13911 14106])
-            ("bookmark-get-position" function (:arguments ("bookmark-name-or-record")) nil [14109 14302])
-            ("bookmark-set-position" function (:arguments ("bookmark-name-or-record" "position")) nil [14305 14509])
-            ("bookmark-get-front-context-string" function (:arguments ("bookmark-name-or-record")) nil [14512 14727])
-            ("bookmark-set-front-context-string" function (:arguments ("bookmark-name-or-record" "string")) nil [14730 14950])
-            ("bookmark-get-rear-context-string" function (:arguments ("bookmark-name-or-record")) nil [14953 15165])
-            ("bookmark-set-rear-context-string" function (:arguments ("bookmark-name-or-record" "string")) nil [15168 15385])
-            ("bookmark-get-handler" function (:arguments ("bookmark-name-or-record")) nil [15388 15574])
-            ("bookmark-history" variable nil nil [15576 15650])
-            ("bookmark-completing-read" function (:arguments ("prompt" "default")) nil [15653 16910])
-            ("bookmark-maybe-historicize-string" function (:arguments ("string")) nil [16913 17294])
-            ("bookmark-make-record-function" variable (:default-value (quote bookmark-make-record-default)) nil [17296 18287])
-            ("bookmark-make-record" function nil nil [18289 18955])
-            ("bookmark-store" function (:arguments ("name" "alist" "no-overwrite")) nil [18957 20403])
-            ("bookmark-make-record-default" function (:arguments ("no-file" "no-context" "posn")) nil [20405 21970])
-            ("bookmark-file-format-version" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [24788 24929])
-            ("bookmark-end-of-version-stamp-marker" variable
-               (:constant-flag t
-                :default-value "-*- End Of Bookmark File Format Version Stamp -*-
-")
-                nil [24932 25106])
-            ("bookmark-alist-from-buffer" function nil nil [25109 25771])
-            ("bookmark-upgrade-version-0-alist" function (:arguments ("old-list")) nil [25774 26496])
-            ("bookmark-upgrade-file-format-from-0" function nil nil [26499 27194])
-            ("bookmark-grok-file-format-version" function nil nil [27197 27667])
-            ("bookmark-maybe-upgrade-file-format" function nil nil [27670 28182])
-            ("bookmark-insert-file-format-version-stamp" function (:arguments ("coding")) nil [28185 28845])
-            ("bookmark-maybe-message" function (:arguments ("fmt" "args")) nil [28899 29082])
-            ("bookmark-minibuffer-read-name-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map minibuffer-local-map) (define-key map "" (quote bookmark-yank-word)) map)) nil [29102 29286])
-            ("bookmark-set-internal" function
-               (:user-visible-flag t
-                :arguments ("prompt" "name" "overwrite-or-push"))
-                nil [29288 32285])
-            ("bookmark-set" function
-               (:user-visible-flag t
-                :arguments ("name" "no-overwrite"))
-                nil [32303 33674])
-            ("bookmark-set-no-overwrite" function
-               (:user-visible-flag t
-                :arguments ("name" "push-bookmark"))
-                nil [33691 35068])
-            ("bookmark-kill-line" function (:arguments ("newline-too")) nil [35071 35396])
-            ("bookmark-annotation-name" variable nil nil [35441 35625])
-            ("bookmark-default-annotation-text" function (:arguments ("bookmark-name")) nil [35628 36190])
-            ("define-obsolete-variable-alias" code nil nil [36193 36306])
-            ("bookmark-edit-annotation-text-func" variable (:default-value (quote bookmark-default-annotation-text)) nil [36307 36516])
-            ("bookmark-edit-annotation-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map text-mode-map) (define-key map "" (quote bookmark-send-edited-annotation)) map)) nil [36518 36764])
-            ("bookmark-insert-annotation" function (:arguments ("bookmark-name-or-record")) nil [36766 37061])
-            ("define-derived-mode" code nil nil [37063 37311])
-            ("bookmark-send-edited-annotation" function (:user-visible-flag t) nil [37314 38122])
-            ("bookmark-edit-annotation" function (:arguments ("bookmark-name-or-record")) nil [38125 38515])
-            ("bookmark-buffer-name" function nil nil [38518 39357])
-            ("bookmark-yank-word" function (:user-visible-flag t) nil [39360 39907])
-            ("bookmark-buffer-file-name" function nil nil [39909 40480])
-            ("bookmark-maybe-load-default-file" function nil nil [40483 41214])
-            ("bookmark-maybe-sort-alist" function nil nil [41217 41538])
-            ("bookmark-after-jump-hook" variable nil nil [41541 41687])
-            ("bookmark--jump-via" function (:arguments ("bookmark-name-or-record" "display-function")) nil [41689 42626])
-            ("bookmark-jump" function
-               (:user-visible-flag t
-                :arguments ("bookmark" "display-func"))
-                nil [42644 43826])
-            ("bookmark-jump-other-window" function
-               (:user-visible-flag t
-                :arguments ("bookmark"))
-                nil [43844 44171])
-            ("bookmark-jump-noselect" function (:arguments ("bookmark")) nil [44174 44566])
-            ("bookmark-handle-bookmark" function (:arguments ("bookmark-name-or-record")) nil [44568 47174])
-            ("define-error" code nil nil [47176 47211])
-            ("define-error" code nil nil [47212 47322])
-            ("bookmark-default-handler" function (:arguments ("bmk-record")) nil [47324 48820])
-            ("bookmark-relocate" function
-               (:user-visible-flag t
-                :arguments ("bookmark-name"))
-                nil [48837 49838])
-            ("bookmark-insert-location" function
-               (:user-visible-flag t
-                :arguments ("bookmark-name" "no-history"))
-                nil [49856 50285])
-            ("defalias" code nil nil [50302 50355])
-            ("bookmark-location" function (:arguments ("bookmark-name-or-record")) nil [50357 50925])
-            ("bookmark-rename" function
-               (:user-visible-flag t
-                :arguments ("old-name" "new-name"))
-                nil [50943 52438])
-            ("bookmark-insert" function
-               (:user-visible-flag t
-                :arguments ("bookmark-name"))
-                nil [52456 53220])
-            ("bookmark-delete" function
-               (:user-visible-flag t
-                :arguments ("bookmark-name" "batch"))
-                nil [53238 54444])
-            ("bookmark-time-to-save-p" function (:arguments ("final-time")) nil [54447 55022])
-            ("bookmark-write" function nil nil [55040 55258])
-            ("bookmark-save" function
-               (:user-visible-flag t
-                :arguments ("parg" "file"))
-                nil [55276 56847])
-            ("bookmark-write-file" function (:arguments ("file")) nil [56852 58931])
-            ("bookmark-import-new-list" function (:arguments ("new-list")) nil [58934 59400])
-            ("bookmark-maybe-rename" function (:arguments ("full-record" "names")) nil [59403 59990])
-            ("bookmark-load" function
-               (:user-visible-flag t
-                :arguments ("file" "overwrite" "no-msg"))
-                nil [60008 62646])
-            ("bookmark-bmenu-hidden-bookmarks" variable nil nil [62752 62795])
-            ("bookmark-bmenu-mode-map" variable (:default-value (let ((map (make-keymap))) (set-keymap-parent map special-mode-map) (define-key map "v" (quote bookmark-bmenu-select)) (define-key map "w" (quote bookmark-bmenu-locate)) (define-key map "2" (quote bookmark-bmenu-2-window)) (define-key map "1" (quote bookmark-bmenu-1-window)) (define-key map "j" (quote bookmark-bmenu-this-window)) (define-key map "" (quote bookmark-bmenu-this-window)) (define-key map "f" (quote bookmark-bmenu-this-window)) (define-key map "
" (quote bookmark-bmenu-this-window)) (define-key map "o" (quote bookmark-bmenu-other-window)) (define-key map "" (quote bookmark-bmenu-switch-other-window)) (define-key map "s" (quote bookmark-bmenu-save)) (define-key map "k" (quote bookmark-bmenu-delete)) (define-key map "" (quote bookmark-bmenu-delete-backwards)) (define-key map "x" (quote bookmark-bmenu-execute-deletions)) (define-key map "d" (quote bookmark-bmenu-delete)) (define-key map " " (quote next-line)) (define-key map "n" (quote next-line)) (define-key map "p" (quote previous-line)) (define-key map "" (quote bookmark-bmenu-backup-unmark)) (define-key map "u" (quote bookmark-bmenu-unmark)) (define-key map "m" (quote bookmark-bmenu-mark)) (define-key map "l" (quote bookmark-bmenu-load)) (define-key map "r" (quote bookmark-bmenu-rename)) (define-key map "R" (quote bookmark-bmenu-relocate)) (define-key map "t" (quote bookmark-bmenu-toggle-filenames)) (define-key map "a" (quote bookmark-bmenu-show-annotation)) (define-key map "A" (quote bookmark-bmenu-show-all-annotations)) (define-key map "e" (quote bookmark-bmenu-edit-annotation)) (define-key map "/" (quote bookmark-bmenu-search)) (define-key map [mouse-2] (quote bookmark-bmenu-other-window-with-mouse)) map)) nil [62798 64472])
-            ("put" code nil nil [64553 64600])
-            ("bookmark-bmenu-surreptitiously-rebuild-list" function nil nil [64736 64995])
-            ("bookmark-bmenu-list" function (:user-visible-flag t) nil [65013 66960])
-            ("defalias" code nil nil [66977 67024])
-            ("defalias" code nil nil [67040 67087])
-            ("bookmark-bmenu-set-header" function nil nil [67089 67805])
-            ("define-derived-mode" code nil nil [67807 70187])
-            ("bookmark-bmenu-toggle-filenames" function
-               (:user-visible-flag t
-                :arguments ("show"))
-                nil [70190 70806])
-            ("bookmark-bmenu-show-filenames" function (:arguments ("force")) nil [70809 72228])
-            ("bookmark-bmenu-hide-filenames" function (:arguments ("force")) nil [72231 73581])
-            ("bookmark-bmenu-ensure-position" function nil nil [73584 74116])
-            ("bookmark-bmenu-bookmark" function nil nil [74119 74407])
-            ("bookmark-show-annotation" function (:arguments ("bookmark-name-or-record")) nil [74410 74999])
-            ("bookmark-show-all-annotations" function nil nil [75002 75921])
-            ("bookmark-bmenu-mark" function (:user-visible-flag t) nil [75924 76298])
-            ("bookmark-bmenu-select" function (:user-visible-flag t) nil [76301 77292])
-            ("bookmark-bmenu-any-marks" function nil nil [77295 77666])
-            ("bookmark-bmenu-save" function
-               (:user-visible-flag t
-                :arguments ("parg"))
-                nil [77669 77934])
-            ("bookmark-bmenu-load" function (:user-visible-flag t) nil [77937 78218])
-            ("bookmark-bmenu-1-window" function (:user-visible-flag t) nil [78221 78426])
-            ("bookmark-bmenu-2-window" function (:user-visible-flag t) nil [78429 78792])
-            ("bookmark-bmenu-this-window" function (:user-visible-flag t) nil [78795 78940])
-            ("bookmark-bmenu-other-window" function (:user-visible-flag t) nil [78943 79189])
-            ("bookmark-bmenu-switch-other-window" function (:user-visible-flag t) nil [79192 79471])
-            ("bookmark-bmenu-other-window-with-mouse" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [79473 79814])
-            ("bookmark-bmenu-show-annotation" function (:user-visible-flag t) nil [79817 80029])
-            ("bookmark-bmenu-show-all-annotations" function (:user-visible-flag t) nil [80032 80189])
-            ("bookmark-bmenu-edit-annotation" function (:user-visible-flag t) nil [80192 80404])
-            ("bookmark-bmenu-unmark" function
-               (:user-visible-flag t
-                :arguments ("backup"))
-                nil [80407 81004])
-            ("bookmark-bmenu-backup-unmark" function (:user-visible-flag t) nil [81007 81273])
-            ("bookmark-bmenu-delete" function (:user-visible-flag t) nil [81276 81710])
-            ("bookmark-bmenu-delete-backwards" function (:user-visible-flag t) nil [81713 82091])
-            ("bookmark-bmenu-execute-deletions" function (:user-visible-flag t) nil [82094 83040])
-            ("bookmark-bmenu-rename" function (:user-visible-flag t) nil [83043 83277])
-            ("bookmark-bmenu-locate" function (:user-visible-flag t) nil [83280 83483])
-            ("bookmark-bmenu-relocate" function (:user-visible-flag t) nil [83485 83769])
-            ("bookmark-bmenu-filter-alist-by-regexp" function (:arguments ("regexp")) nil [83798 84134])
-            ("bookmark-bmenu-search" function (:user-visible-flag t) nil [84152 85046])
-            ("bookmark-bmenu-goto-bookmark" function (:arguments ("name")) nil [85048 85285])
-            ("bookmark-menu-popup-paned-menu" function (:arguments ("event" "name" "entries")) nil [85339 86359])
-            ("menu-bar-bookmark-map" variable (:default-value (let ((map (make-sparse-keymap "Bookmark functions"))) (bindings--define-key map [load] (quote (menu-item "Load a Bookmark File..." bookmark-load :help "Load bookmarks from a bookmark file)"))) (bindings--define-key map [write] (quote (menu-item "Save Bookmarks As..." bookmark-write :help "Write bookmarks to a file (reading the file name with the minibuffer)"))) (bindings--define-key map [save] (quote (menu-item "Save Bookmarks" bookmark-save :help "Save currently defined bookmarks"))) (bindings--define-key map [edit] (quote (menu-item "Edit Bookmark List" bookmark-bmenu-list :help "Display a list of existing bookmarks"))) (bindings--define-key map [delete] (quote (menu-item "Delete Bookmark..." bookmark-delete :help "Delete a bookmark from the bookmark list"))) (bindings--define-key map [rename] (quote (menu-item "Rename Bookmark..." bookmark-rename :help "Change the name of a bookmark"))) (bindings--define-key map [locate] (quote (menu-item "Insert Location..." bookmark-locate :help "Insert the name of the file associated with a bookmark"))) (bindings--define-key map [insert] (quote (menu-item "Insert Contents..." bookmark-insert :help "Insert the text of the file pointed to by a bookmark"))) (bindings--define-key map [set] (quote (menu-item "Set Bookmark..." bookmark-set :help "Set a bookmark named inside a file."))) (bindings--define-key map [jump] (quote (menu-item "Jump to Bookmark..." bookmark-jump :help "Jump to a bookmark (a point in some file)"))) map)) nil [86650 88243])
-            ("defalias" code nil nil [88260 88315])
-            ("if" code nil nil [88377 88530])
-            ("bookmark-load-hook" variable nil nil [88582 88671])
-            ("define-obsolete-variable-alias" code nil nil [88715 88797])
-            ("bookmark-exit-hook" variable nil nil [88798 88860])
-            ("bookmark-exit-hook-internal" function nil nil [88862 89089])
-            ("unless" code nil nil [89091 89173])
-            ("bookmark-unload-function" function nil nil [89175 89326])
-            ("run-hooks" code nil nil [89329 89360])
-            ("bookmark" package nil nil [89362 89381]))          
-      :file "bookmark.el"
-      :pointmax 89409
-      :fsize 89408
-      :lastmodtime '(23525 29503 0 0)
-      :unmatched-syntax '((close-paren 1322 . 1323) (symbol 1287 . 1304) (open-paren 1286 . 1287)))
-    (semanticdb-table "semanticdb-table"
-      :file "image-mode.el"
-      :fsize 48347
-      :lastmodtime '(23525 29511 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("5x5" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [166 1107])
-            ("5x5-crack-randomly" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1109 1207])
-            ("5x5-crack-mutating-current" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1209 1325])
-            ("5x5-crack-mutating-best" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1327 1437])
-            ("5x5-crack-xor-mutate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1439 1575])
-            ("5x5-crack" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1577 1947])
-            ("if" code nil nil [1949 2040])
-            ("ada-add-extensions" function (:prototype-flag t) nil [2171 2457])
-            ("ada-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2459 2556])
-            ("if" code nil nil [2558 2654])
-            ("if" code nil nil [2782 2877])
-            ("ada-header" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [3008 3110])
-            ("if" code nil nil [3112 3208])
-            ("ada-find-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [3339 3475])
-            ("if" code nil nil [3477 3573])
-            ("put" code nil nil [3687 3756])
-            ("add-log-current-defun-function" variable nil nil [3758 4013])
-            ("custom-autoload" code nil nil [4015 4076])
-            ("add-log-full-name" variable nil nil [4078 4243])
-            ("custom-autoload" code nil nil [4245 4293])
-            ("add-log-mailing-address" variable nil nil [4295 4656])
-            ("custom-autoload" code nil nil [4658 4712])
-            ("prompt-for-change-log-name" function (:prototype-flag t) nil [4714 4811])
-            ("find-change-log" function (:prototype-flag t) nil [4813 5902])
-            ("add-change-log-entry" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [5904 7205])
-            ("add-change-log-entry-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7207 7471])
-            ("change-log-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7473 7899])
-            ("add-log-current-defun" function (:prototype-flag t) nil [7901 8422])
-            ("change-log-merge" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [8424 8825])
-            ("if" code nil nil [8827 8940])
-            ("ad-redefinition-action" variable (:default-value (quote warn)) nil [9067 9721])
-            ("custom-autoload" code nil nil [9723 9775])
-            ("ad-default-compilation-action" variable (:default-value (quote maybe)) nil [9777 10326])
-            ("custom-autoload" code nil nil [10328 10387])
-            ("ad-enable-advice" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [10389 10515])
-            ("ad-disable-advice" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [10517 10644])
-            ("ad-add-advice" function (:prototype-flag t) nil [10646 11708])
-            ("ad-activate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [11710 12791])
-            ("defadvice" function (:prototype-flag t) nil [12793 14967])
-            ("function-put" code nil nil [14969 15013])
-            ("function-put" code nil nil [15015 15065])
-            ("if" code nil nil [15067 15160])
-            ("align" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [15262 16084])
-            ("align-regexp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [16086 17894])
-            ("align-entire" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [17896 18272])
-            ("align-current" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [18274 18702])
-            ("align-highlight-rule" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [18704 19164])
-            ("align-unhighlight-rule" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [19166 19291])
-            ("align-newline-and-indent" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [19293 19498])
-            ("if" code nil nil [19500 19595])
-            ("push" code nil nil [19699 19756])
-            ("allout-auto-activation-helper" function (:prototype-flag t) nil [19758 19941])
-            ("allout-setup" function (:prototype-flag t) nil [19943 20267])
-            ("allout-auto-activation" variable nil nil [20269 20933])
-            ("custom-autoload" code nil nil [20935 20989])
-            ("put" code nil nil [20991 21113])
-            ("put" code nil nil [21115 21207])
-            ("put" code nil nil [21209 21323])
-            ("put" code nil nil [21325 21382])
-            ("put" code nil nil [21384 21442])
-            ("put" code nil nil [21444 21508])
-            ("put" code nil nil [21510 21580])
-            ("put" code nil nil [21582 21723])
-            ("put" code nil nil [21725 21846])
-            ("put" code nil nil [21848 21967])
-            ("put" code nil nil [21969 22109])
-            ("put" code nil nil [22111 22252])
-            ("put" code nil nil [22254 22319])
-            ("put" code nil nil [22321 22422])
-            ("put" code nil nil [22424 22494])
-            ("put" code nil nil [22496 22562])
-            ("allout-mode-p" function (:prototype-flag t) nil [22564 22670])
-            ("allout-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [22672 35665])
-            ("defalias" code nil nil [35667 35714])
-            ("outlineify-sticky" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [35716 35992])
-            ("if" code nil nil [35994 36091])
-            ("push" code nil nil [36227 36292])
-            ("allout-widgets-setup" function (:prototype-flag t) nil [36294 36519])
-            ("allout-widgets-auto-activation" variable nil nil [36521 37055])
-            ("custom-autoload" code nil nil [37057 37127])
-            ("put" code nil nil [37129 37252])
-            ("allout-widgets-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [37254 38271])
-            ("if" code nil nil [38273 38378])
-            ("defalias" code nil nil [38497 38550])
-            ("ange-ftp-reread-dir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [38552 38947])
-            ("ange-ftp-hook-function" function (:prototype-flag t) nil [38949 39035])
-            ("if" code nil nil [39037 39175])
-            ("animate-string" function (:prototype-flag t) nil [39293 39684])
-            ("animate-sequence" function (:prototype-flag t) nil [39686 40050])
-            ("animate-birthday-present" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [40052 40367])
-            ("if" code nil nil [40369 40466])
-            ("push" code nil nil [40582 40645])
-            ("ansi-color-for-comint-mode-on" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [40647 40757])
-            ("ansi-color-process-output" function (:prototype-flag t) nil [40759 41348])
-            ("if" code nil nil [41350 41455])
-            ("push" code nil nil [41599 41662])
-            ("antlr-show-makefile-rules" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [41664 42518])
-            ("antlr-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [42520 42616])
-            ("antlr-set-tabs" function (:prototype-flag t) nil [42618 42814])
-            ("if" code nil nil [42816 42916])
-            ("appt-add" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [43033 43397])
-            ("appt-activate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [43399 43595])
-            ("if" code nil nil [43597 43690])
-            ("apropos-read-pattern" function (:prototype-flag t) nil [43798 44151])
-            ("apropos-user-option" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [44153 44655])
-            ("apropos-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [44657 44957])
-            ("apropos-local-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [44959 45266])
-            ("defalias" code nil nil [45268 45312])
-            ("apropos-command" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [45314 46077])
-            ("apropos-documentation-property" function (:prototype-flag t) nil [46079 46239])
-            ("apropos" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [46241 46920])
-            ("apropos-library" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [46922 47215])
-            ("apropos-value" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [47217 47859])
-            ("apropos-local-value" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [47861 48137])
-            ("apropos-documentation" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [48139 48855])
-            ("if" code nil nil [48857 48956])
-            ("archive-mode" function (:prototype-flag t) nil [49067 49592])
-            ("if" code nil nil [49594 49694])
-            ("array-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [49796 52881])
-            ("if" code nil nil [52883 53059])
-            ("push" code nil nil [53183 53242])
-            ("artist-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [53244 60927])
-            ("if" code nil nil [60929 61026])
-            ("asm-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [61157 61885])
-            ("if" code nil nil [61887 61983])
-            ("auth-source-cache-expiry" variable (:default-value 7200) nil [62103 62270])
-            ("custom-autoload" code nil nil [62272 62331])
-            ("if" code nil nil [62333 62439])
-            ("push" code nil nil [62581 62650])
-            ("auth-source-pass-enable" function (:prototype-flag t) nil [62652 62760])
-            ("if" code nil nil [62762 62879])
-            ("autoarg-mode" variable nil nil [62987 63121])
-            ("custom-autoload" code nil nil [63123 63168])
-            ("autoarg-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [63170 64253])
-            ("autoarg-kp-mode" variable nil nil [64255 64552])
-            ("custom-autoload" code nil nil [64554 64602])
-            ("autoarg-kp-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [64604 65029])
-            ("if" code nil nil [65031 65130])
-            ("autoconf-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [65261 65366])
-            ("if" code nil nil [65368 65469])
-            ("auto-insert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [65586 65791])
-            ("define-auto-insert" function (:prototype-flag t) nil [65793 66097])
-            ("auto-insert-mode" variable nil nil [66099 66400])
-            ("custom-autoload" code nil nil [66402 66454])
-            ("auto-insert-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [66456 66874])
-            ("if" code nil nil [66876 66981])
-            ("put" code nil nil [67122 67182])
-            ("put" code nil nil [67184 67249])
-            ("put" code nil nil [67251 67306])
-            ("update-file-autoloads" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [67308 67853])
-            ("update-directory-autoloads" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [67855 68671])
-            ("batch-update-autoloads" function (:prototype-flag t) nil [68673 68927])
-            ("if" code nil nil [68929 69079])
-            ("auto-revert-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [69196 69955])
-            ("turn-on-auto-revert-mode" function (:prototype-flag t) nil [69957 70172])
-            ("auto-revert-tail-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [70174 71099])
-            ("turn-on-auto-revert-tail-mode" function (:prototype-flag t) nil [71101 71340])
-            ("global-auto-revert-mode" variable nil nil [71342 71671])
-            ("custom-autoload" code nil nil [71673 71732])
-            ("global-auto-revert-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [71734 72760])
-            ("if" code nil nil [72762 72890])
-            ("if" code nil nil [73031 73132])
-            ("mouse-avoidance-mode" variable nil nil [73234 73477])
-            ("custom-autoload" code nil nil [73479 73530])
-            ("mouse-avoidance-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [73532 74672])
-            ("if" code nil nil [74674 74779])
-            ("add-to-list" code nil nil [74910 74978])
-            ("bat-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [74980 75279])
-            ("if" code nil nil [75281 75377])
-            ("put" code nil nil [75485 75540])
-            ("battery" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [75542 75772])
-            ("display-battery-mode" variable nil nil [75774 76091])
-            ("custom-autoload" code nil nil [76093 76146])
-            ("display-battery-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [76148 76635])
-            ("if" code nil nil [76637 76736])
-            ("benchmark-run" function (:prototype-flag t) nil [76880 77314])
-            ("function-put" code nil nil [77316 77370])
-            ("benchmark-run-compiled" function (:prototype-flag t) nil [77372 77708])
-            ("function-put" code nil nil [77710 77773])
-            ("benchmark" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [77775 78086])
-            ("if" code nil nil [78088 78197])
-            ("if" code nil nil [78328 78474])
-            ("bibtex-initialize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [78599 79313])
-            ("bibtex-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [79315 81984])
-            ("bibtex-search-entry" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [81986 82731])
-            ("if" code nil nil [82733 82830])
-            ("bibtex-style-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [82981 83085])
-            ("if" code nil nil [83087 83196])
-            ("if" code nil nil [83323 83420])
-            ("binhex-begin-line" variable
-               (:constant-flag t
-                :default-value "^:...............................................................$")
-                nil [83535 83702])
-            ("binhex-decode-region-internal" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [83704 83947])
-            ("binhex-decode-region-external" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [83949 84093])
-            ("binhex-decode-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [84095 84207])
-            ("if" code nil nil [84209 84306])
-            ("blackbox" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [84427 89389])
-            ("if" code nil nil [89391 89498])
-            ("define-key" code nil nil [89609 89652])
-            ("define-key" code nil nil [89654 89696])
-            ("define-key" code nil nil [89698 89753])
-            ("define-key" code nil nil [89755 89804])
-            ("bookmark-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "x" (quote bookmark-set)) (define-key map "m" (quote bookmark-set)) (define-key map "M" (quote bookmark-set-no-overwrite)) (define-key map "j" (quote bookmark-jump)) (define-key map "g" (quote bookmark-jump)) (define-key map "o" (quote bookmark-jump-other-window)) (define-key map "i" (quote bookmark-insert)) (define-key map "e" (quote edit-bookmarks)) (define-key map "f" (quote bookmark-insert-location)) (define-key map "r" (quote bookmark-rename)) (define-key map "d" (quote bookmark-delete)) (define-key map "l" (quote bookmark-load)) (define-key map "w" (quote bookmark-write)) (define-key map "s" (quote bookmark-save)) map)) nil [89806 90694])
-            ("fset" code nil nil [90696 90729])
-            ("bookmark-set" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [90731 91915])
-            ("bookmark-set-no-overwrite" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [91917 93199])
-            ("bookmark-jump" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [93201 94133])
-            ("bookmark-jump-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [94135 94277])
-            ("bookmark-relocate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [94279 94595])
-            ("bookmark-insert-location" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [94597 94862])
-            ("defalias" code nil nil [94864 94917])
-            ("bookmark-rename" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [94919 95528])
-            ("bookmark-insert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [95530 95940])
-            ("bookmark-delete" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [95942 96436])
-            ("bookmark-write" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [96438 96563])
-            ("function-put" code nil nil [96565 96628])
-            ("bookmark-save" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [96630 97407])
-            ("bookmark-load" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [97409 98337])
-            ("bookmark-bmenu-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [98339 98607])
-            ("defalias" code nil nil [98609 98656])
-            ("defalias" code nil nil [98658 98705])
-            ("bookmark-bmenu-search" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [98707 98834])
-            ("menu-bar-bookmark-map" variable (:default-value (let ((map (make-sparse-keymap "Bookmark functions"))) (bindings--define-key map [load] (quote (menu-item "Load a Bookmark File..." bookmark-load :help "Load bookmarks from a bookmark file)"))) (bindings--define-key map [write] (quote (menu-item "Save Bookmarks As..." bookmark-write :help "Write bookmarks to a file (reading the file name with the minibuffer)"))) (bindings--define-key map [save] (quote (menu-item "Save Bookmarks" bookmark-save :help "Save currently defined bookmarks"))) (bindings--define-key map [edit] (quote (menu-item "Edit Bookmark List" bookmark-bmenu-list :help "Display a list of existing bookmarks"))) (bindings--define-key map [delete] (quote (menu-item "Delete Bookmark..." bookmark-delete :help "Delete a bookmark from the bookmark list"))) (bindings--define-key map [rename] (quote (menu-item "Rename Bookmark..." bookmark-rename :help "Change the name of a bookmark"))) (bindings--define-key map [locate] (quote (menu-item "Insert Location..." bookmark-locate :help "Insert the name of the file associated with a bookmark"))) (bindings--define-key map [insert] (quote (menu-item "Insert Contents..." bookmark-insert :help "Insert the text of the file pointed to by a bookmark"))) (bindings--define-key map [set] (quote (menu-item "Set Bookmark..." bookmark-set :help "Set a bookmark named inside a file."))) (bindings--define-key map [jump] (quote (menu-item "Jump to Bookmark..." bookmark-jump :help "Jump to a bookmark (a point in some file)"))) map)) nil [98836 100283])
-            ("defalias" code nil nil [100285 100340])
-            ("if" code nil nil [100342 100476])
-            ("browse-url-browser-function" variable (:default-value (quote browse-url-default-browser)) nil [100601 101164])
-            ("custom-autoload" code nil nil [101166 101227])
-            ("browse-url-of-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [101229 101578])
-            ("browse-url-of-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [101580 101839])
-            ("browse-url-of-dired-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [101841 101975])
-            ("browse-url-of-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [101977 102096])
-            ("browse-url" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [102098 102800])
-            ("browse-url-at-point" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [102802 103096])
-            ("browse-url-at-mouse" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [103098 103382])
-            ("browse-url-xdg-open" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [103384 103631])
-            ("browse-url-netscape" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [103633 104442])
-            ("make-obsolete" code nil nil [104444 104493])
-            ("browse-url-mozilla" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [104495 105298])
-            ("browse-url-firefox" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [105300 106037])
-            ("browse-url-chromium" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [106039 106342])
-            ("browse-url-galeon" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [106344 107141])
-            ("make-obsolete" code nil nil [107143 107190])
-            ("browse-url-emacs" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [107192 107342])
-            ("browse-url-gnome-moz" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [107344 107988])
-            ("make-obsolete" code nil nil [107990 108040])
-            ("browse-url-mosaic" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [108042 108743])
-            ("make-obsolete" code nil nil [108745 108792])
-            ("browse-url-cci" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [108794 109541])
-            ("make-obsolete" code nil nil [109543 109587])
-            ("browse-url-conkeror" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [109589 110402])
-            ("browse-url-w3" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [110404 110888])
-            ("browse-url-w3-gnudoit" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [110890 111192])
-            ("make-obsolete" code nil nil [111194 111245])
-            ("browse-url-text-xterm" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [111247 111667])
-            ("browse-url-text-emacs" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [111669 112362])
-            ("browse-url-mail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [112364 113075])
-            ("browse-url-generic" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [113077 113478])
-            ("browse-url-kde" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [113480 113687])
-            ("browse-url-elinks" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [113689 114055])
-            ("if" code nil nil [114057 114162])
-            ("push" code nil nil [114254 114308])
-            ("bs-cycle-next" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [114310 114512])
-            ("bs-cycle-previous" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [114514 114724])
-            ("bs-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [114726 114825])
-            ("bs-show" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [114827 115453])
-            ("if" code nil nil [115455 115544])
-            ("bubbles" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [115662 116266])
-            ("if" code nil nil [116268 116367])
-            ("put" code nil nil [116521 116655])
-            ("put" code nil nil [116657 116718])
-            ("bug-reference-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [116720 117032])
-            ("bug-reference-prog-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [117034 117187])
-            ("if" code nil nil [117189 117300])
-            ("if" code nil nil [117441 117559])
-            ("put" code nil nil [117699 117757])
-            ("put" code nil nil [117758 117829])
-            ("put" code nil nil [117830 117899])
-            ("put" code nil nil [117900 117964])
-            ("put" code nil nil [117966 118105])
-            ("byte-compile-disable-warning" function (:prototype-flag t) nil [118107 118481])
-            ("byte-compile-enable-warning" function (:prototype-flag t) nil [118483 118841])
-            ("byte-force-recompile" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [118843 119042])
-            ("byte-recompile-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [119044 119782])
-            ("put" code nil nil [119783 119836])
-            ("byte-compile-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [119838 120235])
-            ("compile-defun" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [120237 120454])
-            ("byte-compile" function (:prototype-flag t) nil [120456 120637])
-            ("display-call-tree" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [120639 121321])
-            ("batch-byte-compile-if-not-done" function (:prototype-flag t) nil [121323 121551])
-            ("batch-byte-compile" function (:prototype-flag t) nil [121553 122004])
-            ("batch-byte-recompile-directory" function (:prototype-flag t) nil [122006 122450])
-            ("if" code nil nil [122452 122653])
-            ("if" code nil nil [122793 122932])
-            ("put" code nil nil [123072 123129])
-            ("if" code nil nil [123131 123276])
-            ("if" code nil nil [123419 123531])
-            ("put" code nil nil [123657 123720])
-            ("put" code nil nil [123722 123783])
-            ("put" code nil nil [123785 123848])
-            ("if" code nil nil [123850 123957])
-            ("if" code nil nil [124100 124230])
-            ("calendar-hebrew-list-yahrzeits" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [124373 124657])
-            ("if" code nil nil [124659 124802])
-            ("if" code nil nil [124931 125032])
-            ("if" code nil nil [125172 125317])
-            ("if" code nil nil [125443 125564])
-            ("if" code nil nil [125707 125836])
-            ("if" code nil nil [125976 126103])
-            ("if" code nil nil [126232 126327])
-            ("if" code nil nil [126456 126557])
-            ("if" code nil nil [126700 126832])
-            ("if" code nil nil [126958 127057])
-            ("if" code nil nil [127177 127289])
-            ("define-key" code nil nil [127398 127439])
-            ("calc-dispatch" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [127441 127578])
-            ("calc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [127580 127732])
-            ("full-calc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [127734 127856])
-            ("quick-calc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [127858 128119])
-            ("calc-eval" function (:prototype-flag t) nil [128121 128405])
-            ("calc-keypad" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [128407 128705])
-            ("full-calc-keypad" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [128707 128871])
-            ("calc-grab-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [128873 129014])
-            ("calc-grab-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [129016 129161])
-            ("calc-embedded" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [129163 129299])
-            ("calc-embedded-activate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [129301 129509])
-            ("defmath" function (:prototype-flag t) nil [129511 129921])
-            ("function-put" code nil nil [129923 129965])
-            ("if" code nil nil [129967 130108])
-            ("if" code nil nil [130269 130374])
-            ("if" code nil nil [130495 130599])
-            ("if" code nil nil [130726 130832])
-            ("if" code nil nil [130953 131057])
-            ("if" code nil nil [131181 131286])
-            ("if" code nil nil [131410 131515])
-            ("if" code nil nil [131679 131778])
-            ("if" code nil nil [131899 132010])
-            ("if" code nil nil [132131 132236])
-            ("if" code nil nil [132363 132484])
-            ("if" code nil nil [132608 132713])
-            ("if" code nil nil [132840 132946])
-            ("if" code nil nil [133073 133172])
-            ("if" code nil nil [133296 133394])
-            ("if" code nil nil [133521 133620])
-            ("if" code nil nil [133747 133846])
-            ("if" code nil nil [133970 134076])
-            ("if" code nil nil [134200 134314])
-            ("if" code nil nil [134435 134539])
-            ("if" code nil nil [134663 134768])
-            ("if" code nil nil [134892 134990])
-            ("if" code nil nil [135151 135254])
-            ("if" code nil nil [135378 135497])
-            ("if" code nil nil [135618 135722])
-            ("if" code nil nil [135849 135966])
-            ("if" code nil nil [136090 136200])
-            ("if" code nil nil [136324 136437])
-            ("if" code nil nil [136561 136666])
-            ("if" code nil nil [136793 136892])
-            ("if" code nil nil [137013 137110])
-            ("if" code nil nil [137234 137339])
-            ("if" code nil nil [137466 137564])
-            ("if" code nil nil [137691 137797])
-            ("if" code nil nil [137924 138029])
-            ("calc-undo" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [138153 138206])
-            ("if" code nil nil [138208 138306])
-            ("if" code nil nil [138433 138539])
-            ("if" code nil nil [138660 138764])
-            ("if" code nil nil [138925 139044])
-            ("if" code nil nil [139165 139286])
-            ("if" code nil nil [139407 139511])
-            ("if" code nil nil [139632 139742])
-            ("if" code nil nil [139863 139960])
-            ("calculator" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [140077 140221])
-            ("if" code nil nil [140223 140328])
-            ("calendar" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [140457 142084])
-            ("if" code nil nil [142086 142259])
-            ("canlock-insert-header" function (:prototype-flag t) nil [142377 142542])
-            ("canlock-verify" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [142544 142737])
-            ("if" code nil nil [142739 142838])
-            ("if" code nil nil [142969 143063])
-            ("if" code nil nil [143188 143291])
-            ("if" code nil nil [143439 143537])
-            ("if" code nil nil [143665 143758])
-            ("if" code nil nil [143886 144014])
-            ("c-guess-basic-syntax" function (:prototype-flag t) nil [144156 144269])
-            ("if" code nil nil [144271 144366])
-            ("if" code nil nil [144497 144731])
-            ("c-guess-guessed-offsets-alist" variable nil nil [144862 144941])
-            ("c-guess-guessed-basic-offset" variable nil nil [144943 145020])
-            ("c-guess" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [145022 145392])
-            ("c-guess-no-install" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [145394 145710])
-            ("c-guess-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [145712 146076])
-            ("c-guess-buffer-no-install" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [146078 146388])
-            ("c-guess-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [146390 146749])
-            ("c-guess-region-no-install" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [146751 147640])
-            ("c-guess-install" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [147642 148081])
-            ("if" code nil nil [148083 148183])
-            ("if" code nil nil [148314 148408])
-            ("if" code nil nil [148539 148640])
-            ("c-initialize-cc-mode" function (:prototype-flag t) nil [148768 149220])
-            ("add-to-list" code nil nil [149222 149288])
-            ("add-to-list" code nil nil [149290 149369])
-            ("add-to-list" code nil nil [149371 149439])
-            ("add-to-list" code nil nil [149441 149493])
-            ("add-to-list" code nil nil [149495 149554])
-            ("add-to-list" code nil nil [149556 149618])
-            ("add-to-list" code nil nil [149620 149674])
-            ("add-to-list" code nil nil [149676 149728])
-            ("add-to-list" code nil nil [149730 149785])
-            ("c-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [149787 150335])
-            ("c-or-c++-mode" function (:prototype-flag t) nil [150337 150798])
-            ("c++-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [150800 151357])
-            ("add-to-list" code nil nil [151359 151414])
-            ("objc-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [151416 151986])
-            ("add-to-list" code nil nil [151988 152046])
-            ("java-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [152048 152610])
-            ("add-to-list" code nil nil [152612 152668])
-            ("idl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [152670 153251])
-            ("add-to-list" code nil nil [153253 153344])
-            ("add-to-list" code nil nil [153346 153405])
-            ("pike-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [153407 153969])
-            ("add-to-list" code nil nil [153971 154027])
-            ("add-to-list" code nil nil [154029 154086])
-            ("add-to-list" code nil nil [154088 154146])
-            ("add-to-list" code nil nil [154148 154206])
-            ("add-to-list" code nil nil [154208 154266])
-            ("awk-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [154268 154826])
-            ("if" code nil nil [154828 154999])
-            ("c-set-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [155141 156267])
-            ("c-add-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [156269 156814])
-            ("c-set-offset" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [156816 157154])
-            ("if" code nil nil [157156 157278])
-            ("put" code nil nil [157405 157457])
-            ("put" code nil nil [157458 157514])
-            ("put" code nil nil [157515 157573])
-            ("if" code nil nil [157575 157745])
-            ("ccl-compile" function (:prototype-flag t) nil [157869 157994])
-            ("ccl-dump" function (:prototype-flag t) nil [157996 158082])
-            ("declare-ccl-program" function (:prototype-flag t) nil [158084 158546])
-            ("define-ccl-program" function (:prototype-flag t) nil [158548 166435])
-            ("function-put" code nil nil [166437 166490])
-            ("check-ccl-program" function (:prototype-flag t) nil [166492 166813])
-            ("ccl-execute-with-args" function (:prototype-flag t) nil [166815 167098])
-            ("if" code nil nil [167100 167191])
-            ("cconv-closure-convert" function (:prototype-flag t) nil [167315 167620])
-            ("cconv-warnings-only" function (:prototype-flag t) nil [167622 167743])
-            ("if" code nil nil [167745 167840])
-            ("if" code nil nil [167936 168027])
-            ("push" code nil nil [168140 168196])
-            ("if" code nil nil [168198 168293])
-            ("if" code nil nil [168436 168545])
-            ("if" code nil nil [168685 168786])
-            ("if" code nil nil [168929 169032])
-            ("if" code nil nil [169178 169289])
-            ("push" code nil nil [169419 169478])
-            ("cfengine3-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [169480 169713])
-            ("cfengine2-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [169715 169948])
-            ("cfengine-auto-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [169950 170072])
-            ("if" code nil nil [170074 170174])
-            ("char-fold-to-regexp" function (:prototype-flag t) nil [170288 170801])
-            ("if" code nil nil [170803 170906])
-            ("push" code nil nil [171029 171085])
-            ("if" code nil nil [171087 171181])
-            ("check-declare-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [171337 171518])
-            ("check-declare-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [171520 171718])
-            ("if" code nil nil [171720 171831])
-            ("push" code nil nil [171971 172032])
-            ("put" code nil nil [172033 172102])
-            ("put" code nil nil [172103 172169])
-            ("put" code nil nil [172170 172247])
-            ("put" code nil nil [172248 172325])
-            ("put" code nil nil [172326 172409])
-            ("put" code nil nil [172410 172481])
-            ("put" code nil nil [172482 172558])
-            ("put" code nil nil [172559 172637])
-            ("checkdoc-list-of-strings-p" function (:prototype-flag t) nil [172639 172751])
-            ("put" code nil nil [172752 172816])
-            ("put" code nil nil [172817 172882])
-            ("checkdoc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [172884 173104])
-            ("checkdoc-interactive" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [173106 173634])
-            ("checkdoc-message-interactive" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [173636 174176])
-            ("checkdoc-eval-current-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [174178 174467])
-            ("checkdoc-current-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [174469 174770])
-            ("checkdoc-file" function (:prototype-flag t) nil [174772 174897])
-            ("checkdoc-start" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [174899 175254])
-            ("checkdoc-continue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [175256 175626])
-            ("checkdoc-comments" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [175628 175917])
-            ("checkdoc-rogue-spaces" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [175919 176278])
-            ("checkdoc-message-text" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [176280 176495])
-            ("checkdoc-eval-defun" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [176497 176838])
-            ("checkdoc-defun" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [176840 177205])
-            ("checkdoc-ispell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [177207 177414])
-            ("checkdoc-ispell-current-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [177416 177662])
-            ("checkdoc-ispell-interactive" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [177664 177915])
-            ("checkdoc-ispell-message-interactive" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [177917 178186])
-            ("checkdoc-ispell-message-text" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [178188 178436])
-            ("checkdoc-ispell-start" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [178438 178657])
-            ("checkdoc-ispell-continue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [178659 178899])
-            ("checkdoc-ispell-comments" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [178901 179140])
-            ("checkdoc-ispell-defun" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [179142 179372])
-            ("checkdoc-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [179374 179926])
-            ("checkdoc-package-keywords" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [179928 180055])
-            ("if" code nil nil [180057 180158])
-            ("decode-hz-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [180301 180453])
-            ("decode-hz-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [180455 180562])
-            ("encode-hz-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [180564 180712])
-            ("encode-hz-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [180714 180817])
-            ("post-read-decode-hz" function (:prototype-flag t) nil [180819 180887])
-            ("pre-write-encode-hz" function (:prototype-flag t) nil [180889 180961])
-            ("if" code nil nil [180963 181132])
-            ("repeat-matching-complex-command" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [181243 181648])
-            ("list-command-history" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [181650 182022])
-            ("command-history" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [182024 182649])
-            ("if" code nil nil [182651 182816])
-            ("if" code nil nil [182931 183070])
-            ("if" code nil nil [183240 183335])
-            ("push" code nil nil [183481 183542])
-            ("common-lisp-indent-function" function (:prototype-flag t) nil [183686 187195])
-            ("if" code nil nil [187197 187310])
-            ("push" code nil nil [187436 187493])
-            ("define-obsolete-variable-alias" code nil nil [187495 187585])
-            ("cl-custom-print-functions" variable nil nil [187587 188073])
-            ("cl-old-struct-compat-mode" variable nil nil [188075 188412])
-            ("custom-autoload" code nil nil [188414 188471])
-            ("cl-old-struct-compat-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [188473 188754])
-            ("if" code nil nil [188756 188849])
-            ("if" code nil nil [189016 189110])
-            ("push" code nil nil [189250 189309])
-            ("cl-print-object" function (:prototype-flag t) nil [189311 189613])
-            ("cl-prin1" function (:prototype-flag t) nil [189615 189930])
-            ("cl-prin1-to-string" function (:prototype-flag t) nil [189932 190075])
-            ("if" code nil nil [190077 190195])
-            ("if" code nil nil [190359 190453])
-            ("c-macro-expand" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [190581 191117])
-            ("if" code nil nil [191119 191218])
-            ("run-scheme" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [191332 191996])
-            ("if" code nil nil [191998 192158])
-            ("color-name-to-rgb" function (:prototype-flag t) nil [192260 192797])
-            ("if" code nil nil [192799 192894])
-            ("comint-output-filter-functions" variable (:default-value (quote (ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt))) nil [192999 193667])
-            ("make-comint-in-buffer" function (:prototype-flag t) nil [193669 194464])
-            ("make-comint" function (:prototype-flag t) nil [194466 195204])
-            ("comint-run" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [195206 195546])
-            ("function-put" code nil nil [195548 195605])
-            ("comint-file-name-prefix" variable (:default-value (purecopy "")) nil [195607 195827])
-            ("comint-redirect-send-command" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [195829 196127])
-            ("comint-redirect-send-command-to-process" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [196129 196423])
-            ("comint-redirect-results-list" function (:prototype-flag t) nil [196425 196680])
-            ("comint-redirect-results-list-from-process" function (:prototype-flag t) nil [196682 196950])
-            ("if" code nil nil [196952 197087])
-            ("compare-windows" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [197207 198484])
-            ("if" code nil nil [198486 198587])
-            ("if" code nil nil [198710 198812])
-            ("compilation-mode-hook" variable nil nil [198940 199028])
-            ("custom-autoload" code nil nil [199030 199082])
-            ("compilation-start-hook" variable nil nil [199084 199226])
-            ("custom-autoload" code nil nil [199228 199281])
-            ("compilation-window-height" variable nil nil [199283 199393])
-            ("custom-autoload" code nil nil [199395 199451])
-            ("compilation-process-setup-function" variable nil nil [199453 199758])
-            ("compilation-buffer-name-function" variable nil nil [199760 200057])
-            ("compilation-finish-function" variable nil nil [200059 200264])
-            ("compilation-finish-functions" variable nil nil [200266 200484])
-            ("put" code nil nil [200485 200543])
-            ("compilation-ask-about-save" variable (:default-value t) nil [200545 200714])
-            ("custom-autoload" code nil nil [200716 200773])
-            ("compilation-search-path" variable (:default-value (quote (nil))) nil [200775 201021])
-            ("custom-autoload" code nil nil [201023 201077])
-            ("compile-command" variable (:default-value (purecopy "make -k ")) nil [201079 201726])
-            ("custom-autoload" code nil nil [201728 201774])
-            ("put" code nil nil [201775 201920])
-            ("compilation-disable-input" variable nil nil [201922 202164])
-            ("custom-autoload" code nil nil [202166 202222])
-            ("compile" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [202224 203477])
-            ("compilation-start" function (:prototype-flag t) nil [203479 204431])
-            ("compilation-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [204433 204835])
-            ("put" code nil nil [204837 204885])
-            ("compilation-shell-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [204887 205379])
-            ("compilation-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [205381 205793])
-            ("compilation-next-error-function" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [205795 206024])
-            ("if" code nil nil [206026 206180])
-            ("dynamic-completion-mode" variable nil nil [206297 206626])
-            ("custom-autoload" code nil nil [206628 206687])
-            ("dynamic-completion-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [206689 206964])
-            ("if" code nil nil [206966 207509])
-            ("conf-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [207651 209078])
-            ("conf-unix-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [209080 209235])
-            ("conf-windows-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [209237 209709])
-            ("conf-javaprop-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [209711 210135])
-            ("conf-space-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [210137 210897])
-            ("conf-space-keywords" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [210899 211058])
-            ("conf-colon-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [211060 211386])
-            ("conf-ppd-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [211388 211716])
-            ("conf-xdefaults-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [211718 212035])
-            ("conf-toml-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [212037 212316])
-            ("conf-desktop-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [212318 212701])
-            ("if" code nil nil [212703 212801])
-            ("cookie" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [212919 213241])
-            ("cookie-insert" function (:prototype-flag t) nil [213243 213491])
-            ("cookie-snarf" function (:prototype-flag t) nil [213493 213771])
-            ("if" code nil nil [213773 213870])
-            ("put" code nil nil [214013 214072])
-            ("put" code nil nil [214073 214132])
-            ("put" code nil nil [214133 214192])
-            ("copyright-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [214194 214646])
-            ("copyright-fix-years" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [214648 214915])
-            ("copyright" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [214917 215039])
-            ("copyright-update-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [215041 215259])
-            ("if" code nil nil [215261 215364])
-            ("put" code nil nil [215508 215564])
-            ("put" code nil nil [215565 215621])
-            ("put" code nil nil [215622 215688])
-            ("put" code nil nil [215689 215745])
-            ("put" code nil nil [215746 215816])
-            ("put" code nil nil [215817 215887])
-            ("put" code nil nil [215888 215951])
-            ("cperl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [215953 224246])
-            ("cperl-perldoc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [224248 224331])
-            ("cperl-perldoc-at-point" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [224333 224439])
-            ("if" code nil nil [224441 224559])
-            ("cpp-highlight-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [224675 224971])
-            ("cpp-parse-edit" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [224973 225069])
-            ("if" code nil nil [225071 225162])
-            ("completing-read-multiple" function (:prototype-flag t) nil [225280 226242])
-            ("if" code nil nil [226244 226335])
-            ("css-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [226466 227121])
-            ("add-to-list" code nil nil [227123 227181])
-            ("scss-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [227183 227272])
-            ("css-lookup-symbol" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [227274 227615])
-            ("if" code nil nil [227617 227721])
-            ("cua-mode" variable nil nil [227852 228121])
-            ("custom-autoload" code nil nil [228123 228165])
-            ("cua-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [228167 229285])
-            ("cua-selection-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [229287 229413])
-            ("if" code nil nil [229415 229511])
-            ("if" code nil nil [229642 229738])
-            ("cua-rectangle-mark-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [229869 230057])
-            ("if" code nil nil [230059 230155])
-            ("cursor-sensor-inhibit" variable nil nil [230311 230345])
-            ("cursor-intangible-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [230347 230490])
-            ("cursor-sensor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [230492 230991])
-            ("if" code nil nil [230993 231104])
-            ("if" code nil nil [231212 231347])
-            ("custom-browse-sort-alphabetically" variable nil nil [231458 231580])
-            ("custom-autoload" code nil nil [231582 231647])
-            ("custom-buffer-sort-alphabetically" variable (:default-value t) nil [231649 231767])
-            ("custom-autoload" code nil nil [231769 231834])
-            ("custom-menu-sort-alphabetically" variable nil nil [231836 231951])
-            ("custom-autoload" code nil nil [231953 232016])
-            ("customize-set-value" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [232018 232543])
-            ("customize-set-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [232545 233198])
-            ("customize-save-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [233200 233859])
-            ("customize-push-and-save" function (:prototype-flag t) nil [233861 234273])
-            ("customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [234275 234569])
-            ("customize-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [234571 234832])
-            ("customize-group" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [234834 235027])
-            ("customize-group-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [235029 235186])
-            ("defalias" code nil nil [235188 235236])
-            ("customize-option" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [235238 235348])
-            ("defalias" code nil nil [235350 235424])
-            ("customize-option-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [235426 235605])
-            ("customize-package-emacs-version-alist" variable nil nil [235607 236947])
-            ("defalias" code nil nil [236949 237005])
-            ("customize-changed-options" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [237007 237470])
-            ("customize-face" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [237472 237891])
-            ("customize-face-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [237893 238223])
-            ("customize-unsaved" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [238225 238349])
-            ("customize-rogue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [238351 238463])
-            ("customize-saved" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [238465 238559])
-            ("customize-apropos" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [238561 239094])
-            ("customize-apropos-options" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [239096 239245])
-            ("customize-apropos-faces" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [239247 239361])
-            ("customize-apropos-groups" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [239363 239479])
-            ("custom-prompt-customize-unsaved-options" function (:prototype-flag t) nil [239481 239708])
-            ("custom-buffer-create" function (:prototype-flag t) nil [239710 240056])
-            ("custom-buffer-create-other-window" function (:prototype-flag t) nil [240058 240494])
-            ("customize-browse" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [240496 240619])
-            ("custom-file" variable nil nil [240621 242141])
-            ("custom-autoload" code nil nil [242143 242186])
-            ("custom-save-all" function (:prototype-flag t) nil [242188 242287])
-            ("customize-save-customized" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [242289 242413])
-            ("custom-menu-create" function (:prototype-flag t) nil [242415 242584])
-            ("customize-menu-create" function (:prototype-flag t) nil [242586 242890])
-            ("if" code nil nil [242892 243010])
-            ("customize-create-theme" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [243124 243546])
-            ("custom-theme-visit-theme" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [243548 243670])
-            ("describe-theme" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [243672 243793])
-            ("customize-themes" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [243795 244024])
-            ("if" code nil nil [244026 244145])
-            ("cvs-status-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [244268 244358])
-            ("if" code nil nil [244360 244458])
-            ("push" code nil nil [244579 244637])
-            ("cwarn-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [244639 245150])
-            ("define-obsolete-function-alias" code nil nil [245152 245223])
-            ("global-cwarn-mode" variable nil nil [245225 245530])
-            ("custom-autoload" code nil nil [245532 245580])
-            ("global-cwarn-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [245582 245975])
-            ("if" code nil nil [245977 246104])
-            ("cyrillic-encode-koi8-r-char" function (:prototype-flag t) nil [246247 246385])
-            ("cyrillic-encode-alternativnyj-char" function (:prototype-flag t) nil [246387 246539])
-            ("standard-display-cyrillic-translit" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [246541 247130])
-            ("if" code nil nil [247132 247249])
-            ("put" code nil nil [247356 247411])
-            ("put" code nil nil [247412 247463])
-            ("define-key" code nil nil [247465 247505])
-            ("define-key" code nil nil [247507 247555])
-            ("dabbrev-completion" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [247557 248047])
-            ("dabbrev-expand" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [248049 249146])
-            ("if" code nil nil [249148 249247])
-            ("data-debug-new-buffer" function (:prototype-flag t) nil [249376 249488])
-            ("if" code nil nil [249490 249595])
-            ("dbus-handle-event" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [249702 249980])
-            ("if" code nil nil [249982 250075])
-            ("dcl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [250206 254215])
-            ("if" code nil nil [254217 254313])
-            ("setq" code nil nil [254437 254459])
-            ("debug" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [254461 254874])
-            ("debug-on-entry" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [254876 255588])
-            ("cancel-debug-on-entry" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [255590 255913])
-            ("debug-on-variable-change" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [255915 256654])
-            ("defalias" code nil nil [256656 256706])
-            ("cancel-debug-on-variable-change" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [256708 257061])
-            ("defalias" code nil nil [257063 257127])
-            ("if" code nil nil [257129 257248])
-            ("decipher" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [257369 257490])
-            ("decipher-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [257492 258219])
-            ("if" code nil nil [258221 258322])
-            ("push" code nil nil [258435 258495])
-            ("delimit-columns-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [258497 258597])
-            ("delimit-columns-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [258599 258752])
-            ("delimit-columns-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [258754 258927])
-            ("if" code nil nil [258929 259038])
-            ("defalias" code nil nil [259143 259197])
-            ("delete-selection-mode" variable nil nil [259199 259520])
-            ("custom-autoload" code nil nil [259522 259575])
-            ("delete-selection-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [259577 260328])
-            ("if" code nil nil [260330 260450])
-            ("define-derived-mode" function (:prototype-flag t) nil [260580 262807])
-            ("function-put" code nil nil [262809 262863])
-            ("derived-mode-init-mode-variables" function (:prototype-flag t) nil [262865 263149])
-            ("if" code nil nil [263151 263255])
-            ("describe-text-properties" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [263372 263790])
-            ("describe-char" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [263792 264673])
-            ("describe-char-eldoc" function (:prototype-flag t) nil [264675 265211])
-            ("if" code nil nil [265213 265316])
-            ("desktop-save-mode" variable nil nil [265424 265729])
-            ("custom-autoload" code nil nil [265731 265781])
-            ("desktop-save-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [265783 266713])
-            ("desktop-locals-to-save" variable (:default-value (quote (desktop-locals-to-save truncate-lines case-fold-search case-replace fill-column overwrite-mode change-log-default-name line-number-mode column-number-mode size-indication-mode buffer-file-coding-system buffer-display-time indent-tabs-mode tab-width indicate-buffer-boundaries indicate-empty-lines show-trailing-whitespace))) nil [266715 267267])
-            ("custom-autoload" code nil nil [267269 267322])
-            ("defvar-local" code nil nil [267324 267920])
-            ("desktop-buffer-mode-handlers" variable nil nil [267922 269230])
-            ("put" code nil nil [269232 269291])
-            ("desktop-minor-mode-handlers" variable nil nil [269293 270608])
-            ("put" code nil nil [270610 270668])
-            ("desktop-clear" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [270670 271123])
-            ("desktop-save" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [271125 272461])
-            ("desktop-remove" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [272463 272608])
-            ("desktop-read" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [272610 273134])
-            ("desktop-load-default" function (:prototype-flag t) nil [273136 273279])
-            ("make-obsolete" code nil nil [273281 273345])
-            ("desktop-change-dir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [273347 273602])
-            ("desktop-save-in-desktop-dir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [273604 273719])
-            ("desktop-revert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [273721 273809])
-            ("if" code nil nil [273811 273910])
-            ("gnus-article-outlook-unwrap-lines" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [274031 274446])
-            ("gnus-article-outlook-repair-attribution" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [274448 274642])
-            ("gnus-outlook-deuglify-article" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [274644 274922])
-            ("gnus-article-outlook-deuglify-article" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [274924 275059])
-            ("if" code nil nil [275061 275158])
-            ("if" code nil nil [275263 275360])
-            ("diary" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [275500 275850])
-            ("diary-mail-entries" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [275852 276619])
-            ("diary-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [276621 276711])
-            ("if" code nil nil [276713 276829])
-            ("diff-switches" variable (:default-value (purecopy "-u")) nil [276934 277046])
-            ("custom-autoload" code nil nil [277048 277089])
-            ("diff-command" variable (:default-value (purecopy "diff")) nil [277091 277166])
-            ("custom-autoload" code nil nil [277168 277208])
-            ("diff" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [277210 277776])
-            ("diff-backup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [277778 278111])
-            ("diff-latest-backup-file" function (:prototype-flag t) nil [278113 278228])
-            ("diff-buffer-with-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [278230 278434])
-            ("if" code nil nil [278436 278529])
-            ("diff-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [278649 279229])
-            ("diff-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [279231 279511])
-            ("if" code nil nil [279513 279611])
-            ("dig" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [279715 279935])
-            ("if" code nil nil [279937 280040])
-            ("dired-listing-switches" variable (:default-value (purecopy "-al")) nil [280142 280817])
-            ("custom-autoload" code nil nil [280819 280870])
-            ("dired-directory" variable nil nil [280872 281175])
-            ("define-key" code nil nil [281177 281210])
-            ("dired" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [281212 282228])
-            ("define-key" code nil nil [282230 282278])
-            ("dired-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [282280 282435])
-            ("define-key" code nil nil [282437 282484])
-            ("dired-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [282486 282632])
-            ("dired-noselect" function (:prototype-flag t) nil [282634 282790])
-            ("dired-mode" function (:prototype-flag t) nil [282792 285833])
-            ("put" code nil nil [285835 285879])
-            ("if" code nil nil [285881 285976])
-            ("if" code nil nil [286127 286272])
-            ("if" code nil nil [286417 286530])
-            ("dirtrack-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [286641 287233])
-            ("dirtrack" function (:prototype-flag t) nil [287235 287564])
-            ("if" code nil nil [287566 287667])
-            ("disassemble" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [287794 288162])
-            ("if" code nil nil [288164 288266])
-            ("make-display-table" function (:prototype-flag t) nil [288383 288480])
-            ("display-table-slot" function (:prototype-flag t) nil [288482 288801])
-            ("set-display-table-slot" function (:prototype-flag t) nil [288803 289133])
-            ("describe-display-table" function (:prototype-flag t) nil [289135 289252])
-            ("describe-current-display-table" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [289254 289395])
-            ("standard-display-8bit" function (:prototype-flag t) nil [289397 289903])
-            ("standard-display-default" function (:prototype-flag t) nil [289905 290044])
-            ("standard-display-ascii" function (:prototype-flag t) nil [290046 290162])
-            ("standard-display-g1" function (:prototype-flag t) nil [290164 290395])
-            ("standard-display-graphic" function (:prototype-flag t) nil [290397 290615])
-            ("standard-display-underline" function (:prototype-flag t) nil [290617 290746])
-            ("create-glyph" function (:prototype-flag t) nil [290748 290879])
-            ("make-glyph-code" function (:prototype-flag t) nil [290881 291019])
-            ("glyph-char" function (:prototype-flag t) nil [291021 291123])
-            ("glyph-face" function (:prototype-flag t) nil [291125 291256])
-            ("standard-display-european" function (:prototype-flag t) nil [291258 292159])
-            ("if" code nil nil [292161 292280])
-            ("display-line-numbers-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [292435 292793])
-            ("global-display-line-numbers-mode" variable nil nil [292795 293160])
-            ("custom-autoload" code nil nil [293162 293240])
-            ("global-display-line-numbers-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [293242 293740])
-            ("if" code nil nil [293742 293867])
-            ("dissociated-press" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [293994 294381])
-            ("dnd-protocol-alist" variable (:default-value (\` (((\, (purecopy "^file:///")) . dnd-open-local-file) ((\, (purecopy "^file://")) . dnd-open-file) ((\, (purecopy "^file:")) . dnd-open-local-file) ((\, (purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://")) . dnd-open-file)))) nil [294477 295420])
-            ("custom-autoload" code nil nil [295422 295467])
-            ("if" code nil nil [295469 295560])
-            ("if" code nil nil [295664 295755])
-            ("dns-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [295886 296298])
-            ("defalias" code nil nil [296300 296331])
-            ("dns-mode-soa-increment-serial" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [296333 296452])
-            ("if" code nil nil [296454 296555])
-            ("doc-view-mode-p" function (:prototype-flag t) nil [296666 296882])
-            ("doc-view-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [296884 297229])
-            ("doc-view-mode-maybe" function (:prototype-flag t) nil [297231 297418])
-            ("doc-view-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [297420 297787])
-            ("doc-view-bookmark-jump" function (:prototype-flag t) nil [297789 297858])
-            ("if" code nil nil [297860 297961])
-            ("doctor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [298076 298178])
-            ("if" code nil nil [298180 298297])
-            ("if" code nil nil [298393 298484])
-            ("if" code nil nil [298592 298686])
-            ("if" code nil nil [298797 298927])
-            ("if" code nil nil [299035 299173])
-            ("double-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [299278 299680])
-            ("if" code nil nil [299682 299779])
-            ("push" code nil nil [299893 299950])
-            ("dunnet" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [299952 300039])
-            ("if" code nil nil [300041 300148])
-            ("if" code nil nil [300288 300465])
-            ("defalias" code nil nil [300612 300671])
-            ("define-minor-mode" function (:prototype-flag t) nil [300673 304158])
-            ("function-put" code nil nil [304160 304212])
-            ("defalias" code nil nil [304214 304285])
-            ("defalias" code nil nil [304287 304353])
-            ("define-globalized-minor-mode" function (:prototype-flag t) nil [304355 305682])
-            ("function-put" code nil nil [305684 305747])
-            ("easy-mmode-define-keymap" function (:prototype-flag t) nil [305749 306431])
-            ("easy-mmode-defmap" function (:prototype-flag t) nil [306433 306683])
-            ("easy-mmode-defsyntax" function (:prototype-flag t) nil [306685 306881])
-            ("if" code nil nil [306883 306988])
-            ("easy-menu-define" function (:prototype-flag t) nil [307129 310607])
-            ("function-put" code nil nil [310609 310670])
-            ("easy-menu-do-define" function (:prototype-flag t) nil [310672 310755])
-            ("easy-menu-create-menu" function (:prototype-flag t) nil [310757 311055])
-            ("easy-menu-change" function (:prototype-flag t) nil [311057 311948])
-            ("if" code nil nil [311950 312066])
-            ("if" code nil nil [312197 312298])
-            ("if" code nil nil [312429 312526])
-            ("if" code nil nil [312657 312758])
-            ("if" code nil nil [312889 312990])
-            ("if" code nil nil [313121 313218])
-            ("if" code nil nil [313349 313446])
-            ("if" code nil nil [313577 313678])
-            ("push" code nil nil [313805 313863])
-            ("ebnf-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [313865 313948])
-            ("ebnf-print-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [313950 314271])
-            ("ebnf-print-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [314273 314583])
-            ("ebnf-print-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [314585 315158])
-            ("ebnf-print-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [315160 315374])
-            ("ebnf-spool-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [315376 315697])
-            ("ebnf-spool-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [315699 316009])
-            ("ebnf-spool-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [316011 316329])
-            ("ebnf-spool-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [316331 316609])
-            ("ebnf-eps-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [316611 316909])
-            ("ebnf-eps-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [316911 317182])
-            ("ebnf-eps-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [317184 317921])
-            ("ebnf-eps-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [317923 318668])
-            ("defalias" code nil nil [318670 318706])
-            ("ebnf-syntax-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [318708 319011])
-            ("ebnf-syntax-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [319013 319292])
-            ("ebnf-syntax-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [319294 319398])
-            ("ebnf-syntax-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [319400 319502])
-            ("ebnf-setup" function (:prototype-flag t) nil [319504 319589])
-            ("ebnf-find-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [319591 319767])
-            ("ebnf-insert-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [319769 319963])
-            ("ebnf-delete-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [319965 320087])
-            ("ebnf-merge-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [320089 320250])
-            ("ebnf-apply-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [320252 320418])
-            ("ebnf-reset-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [320420 320585])
-            ("ebnf-push-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [320587 320830])
-            ("ebnf-pop-style" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [320832 321064])
-            ("if" code nil nil [321066 321162])
-            ("ebrowse-tree-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [321290 321682])
-            ("ebrowse-electric-choose-tree" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [321684 321822])
-            ("ebrowse-member-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [321824 321921])
-            ("ebrowse-tags-view-declaration" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [321923 322028])
-            ("ebrowse-tags-find-declaration" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [322030 322135])
-            ("ebrowse-tags-view-definition" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [322137 322240])
-            ("ebrowse-tags-find-definition" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [322242 322345])
-            ("ebrowse-tags-find-declaration-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [322347 322481])
-            ("ebrowse-tags-view-definition-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [322483 322615])
-            ("ebrowse-tags-find-definition-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [322617 322749])
-            ("ebrowse-tags-find-declaration-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [322751 322882])
-            ("ebrowse-tags-view-definition-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [322884 323014])
-            ("ebrowse-tags-find-definition-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [323016 323146])
-            ("ebrowse-tags-complete-symbol" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [323148 323444])
-            ("ebrowse-tags-loop-continue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [323446 323717])
-            ("ebrowse-tags-search" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [323719 323931])
-            ("ebrowse-tags-query-replace" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [323933 324118])
-            ("ebrowse-tags-search-member-use" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [324120 324457])
-            ("ebrowse-back-in-position-stack" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [324459 324599])
-            ("ebrowse-forward-in-position-stack" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [324601 324743])
-            ("ebrowse-electric-position-menu" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [324745 324874])
-            ("ebrowse-save-tree" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [324876 324983])
-            ("ebrowse-save-tree-as" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [324985 325229])
-            ("ebrowse-statistics" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [325231 325325])
-            ("if" code nil nil [325327 325459])
-            ("electric-buffer-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [325576 327027])
-            ("if" code nil nil [327029 327163])
-            ("Electric-command-history-redo-expression" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [327277 327509])
-            ("if" code nil nil [327511 327633])
-            ("ecomplete-setup" function (:prototype-flag t) nil [327747 327833])
-            ("if" code nil nil [327835 327938])
-            ("push" code nil nil [328045 328099])
-            ("global-ede-mode" variable nil nil [328101 328398])
-            ("custom-autoload" code nil nil [328400 328444])
-            ("global-ede-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [328446 328821])
-            ("if" code nil nil [328823 328953])
-            ("if" code nil nil [329076 329172])
-            ("if" code nil nil [329330 329440])
-            ("if" code nil nil [329600 329696])
-            ("if" code nil nil [329862 329960])
-            ("if" code nil nil [330132 330233])
-            ("if" code nil nil [330399 330523])
-            ("if" code nil nil [330652 330750])
-            ("if" code nil nil [330913 331016])
-            ("if" code nil nil [331179 331282])
-            ("if" code nil nil [331445 331542])
-            ("if" code nil nil [331711 331818])
-            ("if" code nil nil [331981 332101])
-            ("if" code nil nil [332267 332372])
-            ("if" code nil nil [332532 332633])
-            ("if" code nil nil [332791 332901])
-            ("if" code nil nil [333027 333147])
-            ("if" code nil nil [333273 333376])
-            ("if" code nil nil [333499 333600])
-            ("if" code nil nil [333755 333859])
-            ("if" code nil nil [334002 334102])
-            ("if" code nil nil [334248 334382])
-            ("if" code nil nil [334531 334633])
-            ("if" code nil nil [334779 334880])
-            ("if" code nil nil [335026 335127])
-            ("if" code nil nil [335270 335370])
-            ("if" code nil nil [335516 335645])
-            ("if" code nil nil [335797 335918])
-            ("if" code nil nil [336070 336173])
-            ("if" code nil nil [336322 336431])
-            ("if" code nil nil [336594 336708])
-            ("if" code nil nil [336837 336942])
-            ("if" code nil nil [337071 337175])
-            ("if" code nil nil [337347 337447])
-            ("if" code nil nil [337587 337694])
-            ("if" code nil nil [337854 337970])
-            ("edebug-all-defs" variable nil nil [338097 338564])
-            ("custom-autoload" code nil nil [338566 338611])
-            ("edebug-all-forms" variable nil nil [338613 338847])
-            ("custom-autoload" code nil nil [338849 338895])
-            ("edebug-basic-spec" function (:prototype-flag t) nil [338897 339103])
-            ("defalias" code nil nil [339105 339157])
-            ("edebug-eval-top-level-form" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [339159 340036])
-            ("edebug-all-defs" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [340038 340129])
-            ("edebug-all-forms" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [340131 340217])
-            ("if" code nil nil [340219 340375])
-            ("push" code nil nil [340482 340541])
-            ("ediff-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [340543 340786])
-            ("ediff-files3" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [340788 341044])
-            ("defalias" code nil nil [341046 341078])
-            ("defalias" code nil nil [341080 341110])
-            ("ediff-current-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [341112 341333])
-            ("ediff-backup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [341335 341548])
-            ("ediff-buffers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [341550 342085])
-            ("defalias" code nil nil [342087 342122])
-            ("ediff-buffers3" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [342124 342676])
-            ("defalias" code nil nil [342678 342715])
-            ("ediff-directories" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [342717 343003])
-            ("defalias" code nil nil [343005 343041])
-            ("ediff-directory-revisions" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [343043 343345])
-            ("defalias" code nil nil [343347 343400])
-            ("ediff-directories3" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [343402 343701])
-            ("defalias" code nil nil [343703 343741])
-            ("ediff-merge-directories" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [343743 344132])
-            ("defalias" code nil nil [344134 344182])
-            ("ediff-merge-directories-with-ancestor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [344184 344760])
-            ("ediff-merge-directory-revisions" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [344762 345167])
-            ("defalias" code nil nil [345169 345234])
-            ("ediff-merge-directory-revisions-with-ancestor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [345236 345669])
-            ("defalias" code nil nil [345671 345764])
-            ("defalias" code nil nil [345766 345842])
-            ("ediff-windows-wordwise" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [345844 346294])
-            ("ediff-windows-linewise" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [346296 346746])
-            ("ediff-regions-wordwise" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [346748 347271])
-            ("ediff-regions-linewise" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [347273 347830])
-            ("defalias" code nil nil [347832 347874])
-            ("ediff-merge-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [347876 348271])
-            ("ediff-merge-files-with-ancestor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [348273 348745])
-            ("defalias" code nil nil [348747 348817])
-            ("ediff-merge-buffers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [348819 349490])
-            ("ediff-merge-buffers-with-ancestor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [349492 350230])
-            ("ediff-merge-revisions" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [350232 350656])
-            ("ediff-merge-revisions-with-ancestor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [350658 351119])
-            ("ediff-patch-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [351121 351469])
-            ("ediff-patch-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [351471 352035])
-            ("defalias" code nil nil [352037 352073])
-            ("defalias" code nil nil [352075 352120])
-            ("ediff-revision" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [352122 352546])
-            ("defalias" code nil nil [352548 352585])
-            ("ediff-version" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [352587 352733])
-            ("ediff-documentation" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [352735 352869])
-            ("ediff-files-command" function (:prototype-flag t) nil [352871 352990])
-            ("ediff3-files-command" function (:prototype-flag t) nil [352992 353115])
-            ("ediff-merge-command" function (:prototype-flag t) nil [353117 353242])
-            ("ediff-merge-with-ancestor-command" function (:prototype-flag t) nil [353244 353399])
-            ("ediff-directories-command" function (:prototype-flag t) nil [353401 353534])
-            ("ediff-directories3-command" function (:prototype-flag t) nil [353536 353670])
-            ("ediff-merge-directories-command" function (:prototype-flag t) nil [353672 353817])
-            ("ediff-merge-directories-with-ancestor-command" function (:prototype-flag t) nil [353819 353991])
-            ("if" code nil nil [353993 354088])
-            ("if" code nil nil [354211 354311])
-            ("ediff-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [354434 354492])
-            ("if" code nil nil [354494 354594])
-            ("if" code nil nil [354717 354834])
-            ("if" code nil nil [354957 355057])
-            ("ediff-show-registry" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [355180 355267])
-            ("defalias" code nil nil [355269 355311])
-            ("if" code nil nil [355313 355413])
-            ("if" code nil nil [355536 355636])
-            ("ediff-toggle-multiframe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [355759 355971])
-            ("ediff-toggle-use-toolbar" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [355973 356201])
-            ("if" code nil nil [356203 356303])
-            ("if" code nil nil [356426 356552])
-            ("if" code nil nil [356675 356775])
-            ("push" code nil nil [356882 356940])
-            ("edit-kbd-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [356942 357424])
-            ("edit-last-kbd-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [357426 357548])
-            ("edit-named-kbd-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [357550 357702])
-            ("read-kbd-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [357704 358379])
-            ("format-kbd-macro" function (:prototype-flag t) nil [358381 358762])
-            ("if" code nil nil [358764 358863])
-            ("edt-set-scroll-margins" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [358979 359217])
-            ("edt-emulation-on" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [359219 359293])
-            ("if" code nil nil [359295 359386])
-            ("if" code nil nil [359528 359631])
-            ("if" code nil nil [359776 359874])
-            ("if" code nil nil [359999 360099])
-            ("if" code nil nil [360241 360353])
-            ("with-electric-help" function (:prototype-flag t) nil [360455 361678])
-            ("electric-helpify" function (:prototype-flag t) nil [361680 361755])
-            ("if" code nil nil [361757 361864])
-            ("push" code nil nil [361987 362043])
-            ("if" code nil nil [362045 362256])
-            ("if" code nil nil [362403 362503])
-            ("if" code nil nil [362685 362856])
-            ("push" code nil nil [363002 363063])
-            ("eieio-defclass-autoload" function (:prototype-flag t) nil [363065 363452])
-            ("if" code nil nil [363454 363625])
-            ("if" code nil nil [363807 363909])
-            ("if" code nil nil [364071 364195])
-            ("if" code nil nil [364368 364467])
-            ("if" code nil nil [364626 364738])
-            ("electric-pair-mode" variable nil nil [364852 365161])
-            ("custom-autoload" code nil nil [365163 365216])
-            ("electric-pair-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [365218 365874])
-            ("electric-pair-local-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [365876 366004])
-            ("if" code nil nil [366006 366113])
-            ("elide-head" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [366230 366545])
-            ("if" code nil nil [366547 366652])
-            ("elint-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [366776 366848])
-            ("elint-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [366850 367002])
-            ("elint-current-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [367004 367137])
-            ("elint-defun" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [367139 367266])
-            ("elint-initialize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [367268 367459])
-            ("if" code nil nil [367461 367556])
-            ("elp-instrument-function" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [367674 367819])
-            ("elp-instrument-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [367821 368095])
-            ("elp-instrument-package" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [368097 368335])
-            ("elp-results" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [368337 368563])
-            ("if" code nil nil [368565 368656])
-            ("if" code nil nil [368818 368946])
-            ("if" code nil nil [369111 369218])
-            ("if" code nil nil [369380 369478])
-            ("if" code nil nil [369637 369735])
-            ("if" code nil nil [369894 369991])
-            ("if" code nil nil [370150 370248])
-            ("if" code nil nil [370407 370504])
-            ("if" code nil nil [370657 370752])
-            ("if" code nil nil [370911 371009])
-            ("if" code nil nil [371174 371274])
-            ("if" code nil nil [371439 371539])
-            ("if" code nil nil [371704 371803])
-            ("if" code nil nil [371965 372064])
-            ("if" code nil nil [372223 372321])
-            ("if" code nil nil [372483 372581])
-            ("if" code nil nil [372740 372869])
-            ("if" code nil nil [373028 373142])
-            ("emacs-lock-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [373259 374074])
-            ("if" code nil nil [374076 374201])
-            ("report-emacs-bug" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [374322 374483])
-            ("set-advertised-calling-convention" code nil nil [374485 374555])
-            ("if" code nil nil [374557 374666])
-            ("emerge-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [374777 374914])
-            ("emerge-files-with-ancestor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [374916 375118])
-            ("emerge-buffers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [375120 375252])
-            ("emerge-buffers-with-ancestor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [375254 375455])
-            ("emerge-files-command" function (:prototype-flag t) nil [375457 375518])
-            ("emerge-files-with-ancestor-command" function (:prototype-flag t) nil [375520 375595])
-            ("emerge-files-remote" function (:prototype-flag t) nil [375597 375680])
-            ("emerge-files-with-ancestor-remote" function (:prototype-flag t) nil [375682 375788])
-            ("emerge-revisions" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [375790 375946])
-            ("emerge-revisions-with-ancestor" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [375948 376162])
-            ("emerge-merge-directories" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [376164 376263])
-            ("if" code nil nil [376265 376362])
-            ("enriched-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [376493 377045])
-            ("enriched-encode" function (:prototype-flag t) nil [377047 377122])
-            ("enriched-decode" function (:prototype-flag t) nil [377124 377190])
-            ("if" code nil nil [377192 377293])
-            ("epa-list-keys" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [377389 377509])
-            ("epa-list-secret-keys" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [377511 377639])
-            ("epa-select-keys" function (:prototype-flag t) nil [377641 378001])
-            ("epa-decrypt-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [378003 378205])
-            ("epa-verify-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [378207 378275])
-            ("epa-sign-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [378277 378379])
-            ("epa-encrypt-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [378381 378477])
-            ("epa-decrypt-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [378479 379413])
-            ("epa-decrypt-armor-in-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [379415 379665])
-            ("function-put" code nil nil [379667 379731])
-            ("epa-verify-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [379733 380374])
-            ("function-put" code nil nil [380376 380430])
-            ("epa-verify-cleartext-in-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [380432 380702])
-            ("function-put" code nil nil [380704 380771])
-            ("epa-sign-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [380773 381428])
-            ("function-put" code nil nil [381430 381482])
-            ("epa-encrypt-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [381484 382163])
-            ("function-put" code nil nil [382165 382220])
-            ("epa-delete-keys" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [382222 382322])
-            ("epa-import-keys" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [382324 382402])
-            ("epa-import-keys-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [382404 382500])
-            ("epa-import-armor-in-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [382502 382658])
-            ("epa-export-keys" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [382660 382750])
-            ("epa-insert-keys" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [382752 382845])
-            ("if" code nil nil [382847 382938])
-            ("epa-dired-do-decrypt" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [383052 383135])
-            ("epa-dired-do-verify" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [383137 383218])
-            ("epa-dired-do-sign" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [383220 383297])
-            ("epa-dired-do-encrypt" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [383299 383382])
-            ("epa-file-handler" function (:prototype-flag t) nil [383493 383573])
-            ("epa-file-enable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [383575 383631])
-            ("epa-file-disable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [383633 383690])
-            ("if" code nil nil [383692 383788])
-            ("epa-mail-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [383899 384176])
-            ("epa-mail-decrypt" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [384178 384330])
-            ("function-put" code nil nil [384332 384385])
-            ("epa-mail-verify" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [384387 384556])
-            ("function-put" code nil nil [384558 384610])
-            ("epa-mail-sign" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [384612 384763])
-            ("function-put" code nil nil [384765 384815])
-            ("epa-mail-encrypt" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [384817 385377])
-            ("epa-mail-import-keys" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [385379 385552])
-            ("function-put" code nil nil [385554 385611])
-            ("epa-global-mail-mode" variable nil nil [385613 385930])
-            ("custom-autoload" code nil nil [385932 385986])
-            ("epa-global-mail-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [385988 386258])
-            ("if" code nil nil [386260 386361])
-            ("push" code nil nil [386456 386512])
-            ("epg-make-context" function (:prototype-flag t) nil [386514 386693])
-            ("if" code nil nil [386695 386786])
-            ("epg-find-configuration" function (:prototype-flag t) nil [386903 387445])
-            ("epg-configuration" function (:prototype-flag t) nil [387447 387581])
-            ("make-obsolete" code nil nil [387583 387649])
-            ("epg-check-configuration" function (:prototype-flag t) nil [387651 387807])
-            ("epg-expand-group" function (:prototype-flag t) nil [387809 387922])
-            ("if" code nil nil [387924 388022])
-            ("push" code nil nil [388125 388179])
-            ("erc-select-read-args" function (:prototype-flag t) nil [388181 388302])
-            ("erc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [388304 389129])
-            ("defalias" code nil nil [389131 389158])
-            ("erc-tls" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [389160 389307])
-            ("erc-handle-irc-url" function (:prototype-flag t) nil [389309 389581])
-            ("if" code nil nil [389583 389694])
-            ("erc-autoaway-mode" function (:prototype-flag t) nil [389833 389877])
-            ("if" code nil nil [389879 389983])
-            ("if" code nil nil [390111 390210])
-            ("erc-button-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [390335 390381])
-            ("if" code nil nil [390383 390481])
-            ("erc-capab-identify-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [390603 390656])
-            ("if" code nil nil [390658 390770])
-            ("erc-define-minor-mode" function (:prototype-flag t) nil [390895 390941])
-            ("if" code nil nil [390943 391041])
-            ("erc-dcc-mode" function (:prototype-flag t) nil [391157 391191])
-            ("erc-cmd-DCC" function (:prototype-flag t) nil [391193 391493])
-            ("pcomplete/erc-mode/DCC" function (:prototype-flag t) nil [391495 391600])
-            ("erc-ctcp-query-DCC-hook" variable (:default-value (quote (erc-ctcp-query-DCC))) nil [391602 391696])
-            ("erc-ctcp-query-DCC" function (:prototype-flag t) nil [391698 391945])
-            ("if" code nil nil [391947 392064])
-            ("erc-notifications-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [392241 392308])
-            ("if" code nil nil [392310 392437])
-            ("erc-cmd-ezb" function (:prototype-flag t) nil [392576 392699])
-            ("erc-ezb-get-login" function (:prototype-flag t) nil [392701 392960])
-            ("erc-ezb-lookup-action" function (:prototype-flag t) nil [392962 393038])
-            ("erc-ezb-notice-autodetect" function (:prototype-flag t) nil [393040 393160])
-            ("erc-ezb-identify" function (:prototype-flag t) nil [393162 393266])
-            ("erc-ezb-init-session-list" function (:prototype-flag t) nil [393268 393387])
-            ("erc-ezb-end-of-session-list" function (:prototype-flag t) nil [393389 393520])
-            ("erc-ezb-add-session" function (:prototype-flag t) nil [393522 393640])
-            ("erc-ezb-select" function (:prototype-flag t) nil [393642 393765])
-            ("erc-ezb-select-session" function (:prototype-flag t) nil [393767 393871])
-            ("erc-ezb-initialize" function (:prototype-flag t) nil [393873 393981])
-            ("if" code nil nil [393983 394087])
-            ("erc-fill-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [394206 394248])
-            ("erc-fill" function (:prototype-flag t) nil [394250 394444])
-            ("if" code nil nil [394446 394542])
-            ("if" code nil nil [394670 394769])
-            ("if" code nil nil [394897 394996])
-            ("erc-identd-mode" function (:prototype-flag t) nil [395121 395161])
-            ("erc-identd-start" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [395163 395548])
-            ("erc-identd-stop" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [395550 395621])
-            ("if" code nil nil [395623 395728])
-            ("erc-create-imenu-index" function (:prototype-flag t) nil [395850 395916])
-            ("if" code nil nil [395918 396028])
-            ("erc-autojoin-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [396147 396193])
-            ("if" code nil nil [396195 396291])
-            ("if" code nil nil [396410 396545])
-            ("erc-list-mode" function (:prototype-flag t) nil [396664 396700])
-            ("if" code nil nil [396702 396798])
-            ("erc-log-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [396914 396954])
-            ("erc-logging-enabled" function (:prototype-flag t) nil [396956 397312])
-            ("erc-save-buffer-in-logs" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [397314 397810])
-            ("if" code nil nil [397812 397907])
-            ("erc-match-mode" function (:prototype-flag t) nil [398029 398067])
-            ("erc-add-pal" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [398069 398158])
-            ("erc-delete-pal" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [398160 398255])
-            ("erc-add-fool" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [398257 398349])
-            ("erc-delete-fool" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [398351 398449])
-            ("erc-add-keyword" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [398451 398552])
-            ("erc-delete-keyword" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [398554 398661])
-            ("erc-add-dangerous-host" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [398663 398785])
-            ("erc-delete-dangerous-host" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [398787 398915])
-            ("if" code nil nil [398917 399014])
-            ("erc-menu-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [399133 399175])
-            ("if" code nil nil [399177 399278])
-            ("erc-netsplit-mode" function (:prototype-flag t) nil [399417 399461])
-            ("erc-cmd-WHOLEFT" function (:prototype-flag t) nil [399463 399541])
-            ("if" code nil nil [399543 399643])
-            ("erc-determine-network" function (:prototype-flag t) nil [399782 400035])
-            ("erc-server-select" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [400037 400168])
-            ("if" code nil nil [400170 400270])
-            ("erc-notify-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [400395 400441])
-            ("erc-cmd-NOTIFY" function (:prototype-flag t) nil [400443 400687])
-            ("pcomplete/erc-mode/NOTIFY" function (:prototype-flag t) nil [400689 400759])
-            ("if" code nil nil [400761 400859])
-            ("erc-page-mode" function (:prototype-flag t) nil [400978 401014])
-            ("if" code nil nil [401016 401112])
-            ("erc-completion-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [401254 401307])
-            ("if" code nil nil [401309 401430])
-            ("erc-replace-mode" function (:prototype-flag t) nil [401558 401600])
-            ("if" code nil nil [401602 401709])
-            ("erc-ring-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [401828 401870])
-            ("if" code nil nil [401872 401968])
-            ("erc-services-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [402107 402157])
-            ("erc-nickserv-identify-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [402159 402292])
-            ("erc-nickserv-identify" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [402294 402487])
-            ("if" code nil nil [402489 402589])
-            ("erc-sound-mode" function (:prototype-flag t) nil [402711 402749])
-            ("if" code nil nil [402751 402848])
-            ("erc-speedbar-browser" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [402987 403143])
-            ("if" code nil nil [403145 403245])
-            ("erc-spelling-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [403384 403434])
-            ("if" code nil nil [403436 403545])
-            ("erc-timestamp-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [403667 403715])
-            ("if" code nil nil [403717 403814])
-            ("erc-track-minor-mode" variable nil nil [403936 404094])
-            ("custom-autoload" code nil nil [404096 404151])
-            ("erc-track-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [404153 404694])
-            ("erc-track-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [404696 404740])
-            ("if" code nil nil [404742 404839])
-            ("erc-truncate-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [404978 405028])
-            ("erc-truncate-buffer-to-size" function (:prototype-flag t) nil [405030 405294])
-            ("erc-truncate-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [405296 405470])
-            ("if" code nil nil [405472 405587])
-            ("erc-xdcc-mode" function (:prototype-flag t) nil [405706 405742])
-            ("erc-xdcc-add-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [405744 405838])
-            ("if" code nil nil [405840 405936])
-            ("ert-deftest" function (:prototype-flag t) nil [406054 406636])
-            ("function-put" code nil nil [406638 406684])
-            ("function-put" code nil nil [406686 406738])
-            ("put" code nil nil [406740 406782])
-            ("put" code nil nil [406784 406823])
-            ("ert-run-tests-batch" function (:prototype-flag t) nil [406825 407231])
-            ("ert-run-tests-batch-and-exit" function (:prototype-flag t) nil [407233 407582])
-            ("ert-run-tests-interactively" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [407584 407977])
-            ("defalias" code nil nil [407979 408023])
-            ("ert-describe-test" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [408025 408167])
-            ("if" code nil nil [408169 408260])
-            ("put" code nil nil [408384 408435])
-            ("ert-kill-all-test-buffers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [408437 408542])
-            ("if" code nil nil [408544 408637])
-            ("if" code nil nil [408759 408857])
-            ("if" code nil nil [408979 409113])
-            ("if" code nil nil [409235 409332])
-            ("if" code nil nil [409451 409548])
-            ("eshell-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [409673 409754])
-            ("if" code nil nil [409756 409854])
-            ("if" code nil nil [409993 410094])
-            ("if" code nil nil [410216 410314])
-            ("if" code nil nil [410439 410537])
-            ("if" code nil nil [410662 410761])
-            ("if" code nil nil [410883 411005])
-            ("push" code nil nil [411123 411182])
-            ("eshell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [411184 411720])
-            ("eshell-command" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [411722 411904])
-            ("eshell-command-result" function (:prototype-flag t) nil [411906 412270])
-            ("define-obsolete-function-alias" code nil nil [412272 412348])
-            ("if" code nil nil [412350 412447])
-            ("tags-file-name" variable nil nil [412569 412871])
-            ("put" code nil nil [412873 412949])
-            ("put" code nil nil [412951 413002])
-            ("tags-case-fold-search" variable (:default-value (quote default)) nil [413004 413232])
-            ("custom-autoload" code nil nil [413234 413284])
-            ("tags-table-list" variable nil nil [413286 413625])
-            ("custom-autoload" code nil nil [413627 413671])
-            ("tags-compression-info-list" variable (:default-value (purecopy (quote ("" ".Z" ".bz2" ".gz" ".xz" ".tgz")))) nil [413673 413884])
-            ("custom-autoload" code nil nil [413886 413941])
-            ("tags-add-tables" variable (:default-value (quote ask-user)) nil [413943 414221])
-            ("custom-autoload" code nil nil [414223 414267])
-            ("find-tag-hook" variable nil nil [414269 414482])
-            ("custom-autoload" code nil nil [414484 414526])
-            ("find-tag-default-function" variable nil nil [414528 414807])
-            ("custom-autoload" code nil nil [414809 414863])
-            ("tags-table-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [414865 414957])
-            ("visit-tags-table" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [414959 415588])
-            ("visit-tags-table-buffer" function (:prototype-flag t) nil [415590 416350])
-            ("tags-table-files" function (:prototype-flag t) nil [416352 416629])
-            ("tags-lazy-completion-table" function (:prototype-flag t) nil [416631 416697])
-            ("tags-completion-at-point-function" function nil nil [416699 416867])
-            ("find-tag-noselect" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [416869 417867])
-            ("find-tag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [417869 418833])
-            ("make-obsolete" code nil nil [418835 418891])
-            ("find-tag-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [418893 419885])
-            ("make-obsolete" code nil nil [419887 419969])
-            ("find-tag-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [419971 420952])
-            ("make-obsolete" code nil nil [420954 421034])
-            ("find-tag-regexp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [421036 421937])
-            ("make-obsolete" code nil nil [421939 421998])
-            ("defalias" code nil nil [422000 422047])
-            ("next-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [422049 422598])
-            ("tags-loop-continue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [422600 423198])
-            ("tags-search" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [423200 423667])
-            ("tags-query-replace" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [423669 424268])
-            ("list-tags" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [424270 424546])
-            ("tags-apropos" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [424548 424659])
-            ("make-obsolete" code nil nil [424661 424717])
-            ("select-tags-table" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [424719 424984])
-            ("complete-tag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [424986 425243])
-            ("etags--xref-backend" function (:prototype-flag t) nil [425245 425304])
-            ("if" code nil nil [425306 425648])
-            ("setup-ethiopic-environment-internal" function (:prototype-flag t) nil [425791 425871])
-            ("ethio-sera-to-fidel-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [425873 426491])
-            ("ethio-sera-to-fidel-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [426493 427129])
-            ("ethio-sera-to-fidel-marker" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [427131 427425])
-            ("ethio-fidel-to-sera-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [427427 428135])
-            ("ethio-fidel-to-sera-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [428137 428843])
-            ("ethio-fidel-to-sera-marker" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [428845 429077])
-            ("ethio-modify-vowel" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [429079 429195])
-            ("ethio-replace-space" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [429197 429706])
-            ("ethio-input-special-character" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [429708 429812])
-            ("ethio-fidel-to-tex-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [429814 429959])
-            ("ethio-tex-to-fidel-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [429961 430095])
-            ("ethio-fidel-to-java-buffer" function (:prototype-flag t) nil [430097 430413])
-            ("ethio-java-to-fidel-buffer" function (:prototype-flag t) nil [430415 430559])
-            ("ethio-find-file" function (:prototype-flag t) nil [430561 430691])
-            ("ethio-write-file" function (:prototype-flag t) nil [430693 430829])
-            ("ethio-insert-ethio-space" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [430831 431003])
-            ("ethio-composition-function" function (:prototype-flag t) nil [431005 431102])
-            ("if" code nil nil [431104 431232])
-            ("eudc-set-server" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [431339 431565])
-            ("eudc-get-email" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [431567 431748])
-            ("eudc-get-phone" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [431750 431931])
-            ("eudc-expand-inline" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [431933 432738])
-            ("eudc-query-form" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [432740 433019])
-            ("eudc-load-eudc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [433021 433175])
-            ("cond" code nil nil [433177 435161])
-            ("if" code nil nil [435163 435256])
-            ("eudc-display-generic-binary" function (:prototype-flag t) nil [435375 435496])
-            ("eudc-display-url" function (:prototype-flag t) nil [435498 435595])
-            ("eudc-display-mail" function (:prototype-flag t) nil [435597 435707])
-            ("eudc-display-sound" function (:prototype-flag t) nil [435709 435815])
-            ("eudc-display-jpeg-inline" function (:prototype-flag t) nil [435817 435939])
-            ("eudc-display-jpeg-as-button" function (:prototype-flag t) nil [435941 436051])
-            ("if" code nil nil [436053 436150])
-            ("eudc-insert-record-at-point-into-bbdb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [436278 436476])
-            ("eudc-try-bbdb-insert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [436478 436602])
-            ("if" code nil nil [436604 436704])
-            ("eudc-edit-hotlist" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [436843 436967])
-            ("if" code nil nil [436969 437078])
-            ("if" code nil nil [437200 437298])
-            ("if" code nil nil [437423 437527])
-            ("if" code nil nil [437652 437751])
-            ("if" code nil nil [437873 437971])
-            ("ewoc-create" function (:prototype-flag t) nil [438092 438893])
-            ("if" code nil nil [438895 438988])
-            ("eww-suggest-uris" variable (:default-value (quote (eww-links-at-point url-get-url-at-point eww-current-url))) nil [439092 439420])
-            ("custom-autoload" code nil nil [439422 439465])
-            ("eww" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [439467 439654])
-            ("defalias" code nil nil [439656 439683])
-            ("eww-open-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [439685 439761])
-            ("eww-search-words" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [439763 440064])
-            ("eww-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [440066 440136])
-            ("eww-browse-url" function (:prototype-flag t) nil [440138 440215])
-            ("eww-list-bookmarks" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [440217 440293])
-            ("if" code nil nil [440295 440386])
-            ("executable-command-find-posix-p" function (:prototype-flag t) nil [440531 440725])
-            ("executable-interpret" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [440727 441072])
-            ("executable-set-magic" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [441074 441489])
-            ("executable-make-buffer-file-executable-if-script-p" function (:prototype-flag t) nil [441491 441736])
-            ("if" code nil nil [441738 441843])
-            ("expand-add-abbrevs" function (:prototype-flag t) nil [441948 442850])
-            ("expand-abbrev-hook" function (:prototype-flag t) nil [442852 443037])
-            ("expand-jump-to-previous-slot" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [443039 443232])
-            ("expand-jump-to-next-slot" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [443234 443419])
-            ("define-key" code nil nil [443421 443478])
-            ("define-key" code nil nil [443480 443533])
-            ("if" code nil nil [443535 443632])
-            ("if" code nil nil [443740 443839])
-            ("f90-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [443955 446334])
-            ("if" code nil nil [446336 446427])
-            ("face-remap-add-relative" function (:prototype-flag t) nil [446544 447636])
-            ("face-remap-reset-base" function (:prototype-flag t) nil [447638 447889])
-            ("face-remap-set-base" function (:prototype-flag t) nil [447891 448598])
-            ("text-scale-set" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [448600 449028])
-            ("text-scale-increase" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [449030 449483])
-            ("text-scale-decrease" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [449485 449670])
-            ("define-key" code nil nil [449672 449728])
-            ("define-key" code nil nil [449730 449786])
-            ("define-key" code nil nil [449788 449844])
-            ("define-key" code nil nil [449846 449902])
-            ("text-scale-adjust" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [449904 451058])
-            ("buffer-face-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [451060 451443])
-            ("buffer-face-set" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [451445 451930])
-            ("buffer-face-toggle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [451932 452628])
-            ("variable-pitch-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [452630 452878])
-            ("if" code nil nil [452880 453046])
-            ("push" code nil nil [453166 453224])
-            ("feedmail-send-it" function (:prototype-flag t) nil [453226 453482])
-            ("feedmail-run-the-queue-no-prompts" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [453484 453637])
-            ("feedmail-run-the-queue-global-prompt" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [453639 453940])
-            ("feedmail-run-the-queue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [453942 454268])
-            ("feedmail-queue-reminder" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [454270 455417])
-            ("if" code nil nil [455419 455520])
-            ("ffap-next" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [455619 456041])
-            ("find-file-at-point" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [456043 456559])
-            ("defalias" code nil nil [456561 456597])
-            ("ffap-menu" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [456599 456956])
-            ("ffap-at-mouse" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [456958 457284])
-            ("dired-at-point" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [457286 457485])
-            ("ffap-guess-file-name-at-point" function (:prototype-flag t) nil [457487 457654])
-            ("ffap-bindings" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [457656 457753])
-            ("if" code nil nil [457755 457897])
-            ("file-cache-add-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [458011 458253])
-            ("file-cache-add-directory-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [458255 458676])
-            ("file-cache-add-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [458678 458771])
-            ("file-cache-add-directory-using-find" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [458773 458940])
-            ("file-cache-add-directory-using-locate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [458942 459139])
-            ("file-cache-add-directory-recursively" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [459141 459537])
-            ("file-cache-minibuffer-complete" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [459539 459975])
-            ("if" code nil nil [459977 460081])
-            ("file-notify-handle-event" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [460198 460488])
-            ("if" code nil nil [460490 460596])
-            ("add-file-local-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [460704 461221])
-            ("delete-file-local-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [461223 461393])
-            ("add-file-local-variable-prop-line" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [461395 461803])
-            ("delete-file-local-variable-prop-line" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [461805 461973])
-            ("add-dir-local-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [461975 462128])
-            ("delete-dir-local-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [462130 462277])
-            ("copy-file-locals-to-dir-locals" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [462279 462393])
-            ("copy-dir-locals-to-file-locals" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [462395 462524])
-            ("copy-dir-locals-to-file-locals-prop-line" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [462526 462653])
-            ("enable-connection-local-variables" variable (:default-value t) nil [462655 462759])
-            ("connection-local-set-profiles" function (:prototype-flag t) nil [462761 463346])
-            ("connection-local-set-profile-variables" function (:prototype-flag t) nil [463348 463998])
-            ("hack-connection-local-variables-apply" function (:prototype-flag t) nil [464000 464229])
-            ("with-connection-local-profiles" function (:prototype-flag t) nil [464231 464447])
-            ("function-put" code nil nil [464449 464520])
-            ("if" code nil nil [464522 464701])
-            ("filesets-init" function (:prototype-flag t) nil [464812 464964])
-            ("if" code nil nil [464966 465067])
-            ("push" code nil nil [465177 465236])
-            ("find-cmd" function (:prototype-flag t) nil [465238 465675])
-            ("if" code nil nil [465677 465774])
-            ("find-dired" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [465891 466218])
-            ("find-name-dired" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [466220 466605])
-            ("find-grep-dired" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [466607 467027])
-            ("if" code nil nil [467029 467156])
-            ("ff-special-constructs" variable (:default-value (\` (((\, (purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]")) lambda nil (buffer-substring (match-beginning 2) (match-end 2)))))) nil [467270 467787])
-            ("custom-autoload" code nil nil [467789 467843])
-            ("ff-get-other-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [467845 468115])
-            ("defalias" code nil nil [468117 468169])
-            ("ff-find-other-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [468171 470064])
-            ("ff-mouse-find-other-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [470066 470166])
-            ("ff-mouse-find-other-file-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [470168 470299])
-            ("if" code nil nil [470301 470430])
-            ("find-library" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [470574 470741])
-            ("find-library-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [470743 470912])
-            ("find-library-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [470914 471081])
-            ("find-function-search-for-symbol" function (:prototype-flag t) nil [471083 471586])
-            ("find-function-noselect" function (:prototype-flag t) nil [471588 472273])
-            ("find-function" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [472275 472806])
-            ("find-function-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [472808 472987])
-            ("find-function-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [472989 473166])
-            ("find-variable-noselect" function (:prototype-flag t) nil [473168 473670])
-            ("find-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [473672 474201])
-            ("find-variable-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [474203 474382])
-            ("find-variable-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [474384 474561])
-            ("find-definition-noselect" function (:prototype-flag t) nil [474563 475087])
-            ("find-face-definition" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [475089 475636])
-            ("find-function-on-key" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [475638 475812])
-            ("find-function-on-key-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [475814 475978])
-            ("find-function-on-key-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [475980 476142])
-            ("find-function-at-point" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [476144 476264])
-            ("find-variable-at-point" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [476266 476386])
-            ("find-function-setup-keys" function (:prototype-flag t) nil [476388 476523])
-            ("if" code nil nil [476525 476643])
-            ("find-lisp-find-dired" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [476757 476865])
-            ("find-lisp-find-dired-subdirectories" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [476867 476979])
-            ("find-lisp-find-dired-filter" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [476981 477120])
-            ("if" code nil nil [477122 477225])
-            ("push" code nil nil [477329 477386])
-            ("finder-list-keywords" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [477388 477505])
-            ("finder-commentary" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [477507 477669])
-            ("finder-by-keyword" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [477671 477766])
-            ("if" code nil nil [477768 477898])
-            ("enable-flow-control" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [478012 478264])
-            ("enable-flow-control-on" function (:prototype-flag t) nil [478266 478650])
-            ("if" code nil nil [478652 478760])
-            ("fill-flowed-encode" function (:prototype-flag t) nil [478884 478963])
-            ("fill-flowed" function (:prototype-flag t) nil [478965 479050])
-            ("if" code nil nil [479052 479157])
-            ("push" code nil nil [479284 479342])
-            ("flymake-log" function (:prototype-flag t) nil [479344 479676])
-            ("flymake-make-diagnostic" function (:prototype-flag t) nil [479678 479946])
-            ("flymake-diagnostics" function (:prototype-flag t) nil [479948 480223])
-            ("flymake-diag-region" function (:prototype-flag t) nil [480225 480462])
-            ("flymake-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [480464 481955])
-            ("flymake-mode-on" function (:prototype-flag t) nil [481957 482035])
-            ("flymake-mode-off" function (:prototype-flag t) nil [482037 482117])
-            ("if" code nil nil [482119 482218])
-            ("push" code nil nil [482368 482431])
-            ("if" code nil nil [482433 482542])
-            ("flyspell-prog-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [482673 482781])
-            ("flyspell-mode" variable nil nil [482782 482847])
-            ("flyspell-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [482849 484116])
-            ("turn-on-flyspell" function (:prototype-flag t) nil [484118 484215])
-            ("turn-off-flyspell" function (:prototype-flag t) nil [484217 484316])
-            ("flyspell-mode-off" function (:prototype-flag t) nil [484318 484401])
-            ("flyspell-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [484403 484501])
-            ("flyspell-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [484503 484581])
-            ("if" code nil nil [484583 484770])
-            ("push" code nil nil [484877 484936])
-            ("if" code nil nil [484938 485037])
-            ("turn-on-follow-mode" function (:prototype-flag t) nil [485142 485262])
-            ("turn-off-follow-mode" function (:prototype-flag t) nil [485264 485386])
-            ("follow-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [485388 486819])
-            ("follow-scroll-up-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [486821 487273])
-            ("follow-scroll-down-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [487275 487745])
-            ("follow-scroll-up" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [487747 488132])
-            ("follow-scroll-down" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [488134 488524])
-            ("follow-delete-other-windows-and-split" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [488526 489217])
-            ("if" code nil nil [489219 489316])
-            ("if" code nil nil [489460 489659])
-            ("push" code nil nil [489779 489839])
-            ("footnote-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [489841 490278])
-            ("if" code nil nil [490280 490393])
-            ("if" code nil nil [490513 490619])
-            ("forms-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [490721 491525])
-            ("forms-find-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [491527 491610])
-            ("forms-find-file-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [491612 491724])
-            ("if" code nil nil [491726 491821])
-            ("fortran-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [491949 494997])
-            ("if" code nil nil [494999 495098])
-            ("fortune-add-fortune" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [495216 495442])
-            ("fortune-from-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [495444 495697])
-            ("fortune-compile" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [495699 495932])
-            ("fortune-to-signature" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [495934 496325])
-            ("fortune-message" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [496327 496575])
-            ("fortune" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [496577 496927])
-            ("if" code nil nil [496929 497028])
-            ("frameset-session-filter-alist" variable (:default-value (quote ((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)))) nil [497139 497448])
-            ("frameset-persistent-filter-alist" variable (:default-value (nconc (quote ((background-color . frameset-filter-sanitize-color) (buffer-list . :never) (buffer-predicate . :never) (buried-buffer-list . :never) (client . :never) (delete-before . :never) (font . frameset-filter-font-param) (foreground-color . frameset-filter-sanitize-color) (frameset--text-pixel-height . :save) (frameset--text-pixel-width . :save) (fullscreen . frameset-filter-shelve-param) (GUI:font . frameset-filter-unshelve-param) (GUI:fullscreen . frameset-filter-unshelve-param) (GUI:height . frameset-filter-unshelve-param) (GUI:width . frameset-filter-unshelve-param) (height . frameset-filter-shelve-param) (outer-window-id . :never) (parent-frame . :never) (parent-id . :never) (mouse-wheel-frame . :never) (tty . frameset-filter-tty-to-GUI) (tty-type . frameset-filter-tty-to-GUI) (width . frameset-filter-shelve-param) (window-id . :never) (window-system . :never))) frameset-session-filter-alist)) nil [497450 498520])
-            ("frameset-filter-alist" variable (:default-value frameset-persistent-filter-alist) nil [498522 500737])
-            ("frameset-frame-id" function (:prototype-flag t) nil [500739 501174])
-            ("frameset-frame-id-equal-p" function (:prototype-flag t) nil [501176 501293])
-            ("frameset-frame-with-id" function (:prototype-flag t) nil [501295 501529])
-            ("frameset-save" function (:prototype-flag t) nil [501531 502292])
-            ("frameset-restore" function (:prototype-flag t) nil [502294 505274])
-            ("frameset--jump-to-register" function (:prototype-flag t) nil [505276 505448])
-            ("frameset--print-register" function (:prototype-flag t) nil [505450 505639])
-            ("frameset-to-register" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [505641 505926])
-            ("if" code nil nil [505928 506029])
-            ("if" code nil nil [506134 506245])
-            ("push" code nil nil [506365 506424])
-            ("if" code nil nil [506426 506527])
-            ("if" code nil nil [506648 506749])
-            ("gdb-enable-debug" variable nil nil [506874 507025])
-            ("custom-autoload" code nil nil [507027 507075])
-            ("gdb-enable-debug" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [507077 507515])
-            ("gdb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [507517 510545])
-            ("if" code nil nil [510547 510678])
-            ("if" code nil nil [510822 510927])
-            ("generic-mode-list" variable nil nil [511057 511221])
-            ("define-generic-mode" function (:prototype-flag t) nil [511223 512799])
-            ("function-put" code nil nil [512801 512861])
-            ("function-put" code nil nil [512863 512917])
-            ("generic-mode-internal" function (:prototype-flag t) nil [512919 513072])
-            ("generic-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [513074 513469])
-            ("generic-make-keywords-list" function (:prototype-flag t) nil [513471 513972])
-            ("make-obsolete" code nil nil [513974 514037])
-            ("if" code nil nil [514039 514138])
-            ("if" code nil nil [514252 514376])
-            ("glasses-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [514504 514883])
-            ("if" code nil nil [514885 514984])
-            ("gmm-regexp-concat" function (:prototype-flag t) nil [515108 515275])
-            ("gmm-message" function (:prototype-flag t) nil [515277 515601])
-            ("gmm-error" function (:prototype-flag t) nil [515603 515765])
-            ("gmm-widget-p" function (:prototype-flag t) nil [515767 515860])
-            ("gmm-tool-bar-from-list" function (:prototype-flag t) nil [515862 516709])
-            ("if" code nil nil [516711 516820])
-            ("push" code nil nil [516928 516984])
-            ("when" code nil nil [516985 517064])
-            ("gnus-slave-no-server" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [517066 517206])
-            ("gnus-no-server" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [517208 517599])
-            ("gnus-slave" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [517601 517683])
-            ("gnus-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [517685 518294])
-            ("gnus" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [518296 518581])
-            ("if" code nil nil [518583 518676])
-            ("gnus-unplugged" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [518803 518881])
-            ("gnus-plugged" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [518883 518957])
-            ("gnus-slave-unplugged" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [518959 519067])
-            ("gnus-agentize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [519069 519477])
-            ("gnus-agent-possibly-save-gcc" function (:prototype-flag t) nil [519479 519582])
-            ("gnus-agent-rename-group" function (:prototype-flag t) nil [519584 519913])
-            ("gnus-agent-delete-group" function (:prototype-flag t) nil [519915 520213])
-            ("gnus-agent-get-undownloaded-list" function (:prototype-flag t) nil [520215 520349])
-            ("gnus-agent-possibly-alter-active" function (:prototype-flag t) nil [520351 520541])
-            ("gnus-agent-find-parameter" function (:prototype-flag t) nil [520543 520800])
-            ("gnus-agent-batch-fetch" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [520802 520896])
-            ("gnus-agent-batch" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [520898 520998])
-            ("gnus-agent-regenerate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [521000 521153])
-            ("if" code nil nil [521155 521254])
-            ("gnus-article-prepare-display" function (:prototype-flag t) nil [521375 521495])
-            ("if" code nil nil [521497 521605])
-            ("if" code nil nil [521732 521831])
-            ("if" code nil nil [521958 522065])
-            ("gnus-bookmark-set" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [522209 522304])
-            ("gnus-bookmark-jump" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [522306 522424])
-            ("gnus-bookmark-bmenu-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [522426 522714])
-            ("if" code nil nil [522716 522827])
-            ("gnus-jog-cache" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [522954 523130])
-            ("gnus-cache-generate-active" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [523132 523252])
-            ("gnus-cache-generate-nov-databases" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [523254 523381])
-            ("gnus-cache-rename-group" function (:prototype-flag t) nil [523383 523698])
-            ("gnus-cache-delete-group" function (:prototype-flag t) nil [523700 523997])
-            ("if" code nil nil [523999 524098])
-            ("if" code nil nil [524222 524329])
-            ("if" code nil nil [524456 524561])
-            ("if" code nil nil [524682 524797])
-            ("gnus-delay-article" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [524924 525472])
-            ("gnus-delay-send-queue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [525474 525585])
-            ("gnus-delay-initialize" function (:prototype-flag t) nil [525587 525964])
-            ("if" code nil nil [525966 526071])
-            ("if" code nil nil [526198 526297])
-            ("gnus-user-format-function-d" function (:prototype-flag t) nil [526424 526503])
-            ("gnus-user-format-function-D" function (:prototype-flag t) nil [526505 526584])
-            ("if" code nil nil [526586 526685])
-            ("turn-on-gnus-dired-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [526812 526924])
-            ("if" code nil nil [526926 527031])
-            ("gnus-draft-reminder" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [527158 527261])
-            ("if" code nil nil [527263 527362])
-            ("if" code nil nil [527483 527580])
-            ("if" code nil nil [527707 527815])
-            ("gnus--random-face-with-type" function (:prototype-flag t) nil [527936 528107])
-            ("message-goto-eoh" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [528109 528153])
-            ("gnus-random-x-face" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [528155 528346])
-            ("gnus-insert-random-x-face-header" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [528348 528480])
-            ("gnus-x-face-from-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [528482 528688])
-            ("gnus-face-from-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [528690 528889])
-            ("gnus-convert-face-to-png" function (:prototype-flag t) nil [528891 529044])
-            ("gnus-convert-png-to-face" function (:prototype-flag t) nil [529046 529220])
-            ("gnus-random-face" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [529222 529393])
-            ("gnus-insert-random-face-header" function (:prototype-flag t) nil [529395 529523])
-            ("if" code nil nil [529525 529622])
-            ("gnus-treat-from-gravatar" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [529766 529933])
-            ("gnus-treat-mail-gravatar" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [529935 530113])
-            ("if" code nil nil [530115 530226])
-            ("gnus-fetch-group" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [530353 530566])
-            ("gnus-fetch-group-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [530568 530676])
-            ("if" code nil nil [530678 530777])
-            ("gnus-article-html" function (:prototype-flag t) nil [530901 530979])
-            ("gnus-html-prefetch-images" function (:prototype-flag t) nil [530981 531058])
-            ("if" code nil nil [531060 531158])
-            ("if" code nil nil [531305 531417])
-            ("if" code nil nil [531538 531635])
-            ("defalias" code nil nil [531759 531804])
-            ("gnus-batch-score" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [531806 531944])
-            ("if" code nil nil [531946 532044])
-            ("if" code nil nil [532171 532270])
-            ("if" code nil nil [532388 532484])
-            ("turn-on-gnus-mailing-list-mode" function (:prototype-flag t) nil [532602 532674])
-            ("gnus-mailing-list-insinuate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [532676 532847])
-            ("gnus-mailing-list-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [532849 533004])
-            ("if" code nil nil [533006 533115])
-            ("gnus-group-split-setup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [533242 534378])
-            ("gnus-group-split-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [534380 534727])
-            ("gnus-group-split" function (:prototype-flag t) nil [534729 534967])
-            ("gnus-group-split-fancy" function (:prototype-flag t) nil [534969 537148])
-            ("if" code nil nil [537150 537261])
-            ("gnus-msg-mail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [537382 537745])
-            ("gnus-button-mailto" function (:prototype-flag t) nil [537747 537832])
-            ("gnus-button-reply" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [537834 537939])
-            ("define-mail-user-agent" code nil nil [537941 538060])
-            ("if" code nil nil [538062 538159])
-            ("gnus-notifications" function (:prototype-flag t) nil [538318 538672])
-            ("if" code nil nil [538674 538795])
-            ("gnus-treat-from-picon" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [538922 539066])
-            ("gnus-treat-mail-picon" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [539068 539218])
-            ("gnus-treat-newsgroups-picon" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [539220 539393])
-            ("if" code nil nil [539395 539500])
-            ("gnus-sorted-difference" function (:prototype-flag t) nil [539627 539839])
-            ("gnus-sorted-ndifference" function (:prototype-flag t) nil [539841 540040])
-            ("gnus-sorted-complement" function (:prototype-flag t) nil [540042 540224])
-            ("gnus-intersection" function (:prototype-flag t) nil [540226 540300])
-            ("gnus-sorted-intersection" function (:prototype-flag t) nil [540302 540464])
-            ("gnus-sorted-range-intersection" function (:prototype-flag t) nil [540466 540640])
-            ("defalias" code nil nil [540642 540709])
-            ("gnus-sorted-nintersection" function (:prototype-flag t) nil [540711 540909])
-            ("gnus-sorted-union" function (:prototype-flag t) nil [540911 541059])
-            ("gnus-sorted-nunion" function (:prototype-flag t) nil [541061 541245])
-            ("gnus-add-to-sorted-list" function (:prototype-flag t) nil [541247 541364])
-            ("if" code nil nil [541366 541465])
-            ("gnus-registry-initialize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [541609 541708])
-            ("gnus-registry-install-hooks" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [541710 541810])
-            ("if" code nil nil [541812 541914])
-            ("if" code nil nil [542055 542159])
-            ("if" code nil nil [542283 542381])
-            ("if" code nil nil [542508 542607])
-            ("gnus-sieve-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [542734 543107])
-            ("gnus-sieve-generate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [543109 543440])
-            ("gnus-sieve-article-add-rule" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [543442 543512])
-            ("if" code nil nil [543514 543619])
-            ("gnus-update-format" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [543743 543850])
-            ("if" code nil nil [543852 543950])
-            ("if" code nil nil [544074 544172])
-            ("gnus-declare-backend" function (:prototype-flag t) nil [544299 544441])
-            ("if" code nil nil [544443 544542])
-            ("gnus-summary-bookmark-jump" function (:prototype-flag t) nil [544663 544867])
-            ("if" code nil nil [544869 544966])
-            ("if" code nil nil [545093 545192])
-            ("if" code nil nil [545316 545414])
-            ("if" code nil nil [545538 545636])
-            ("if" code nil nil [545754 545850])
-            ("if" code nil nil [545968 546064])
-            ("gnus-add-configuration" function (:prototype-flag t) nil [546185 546320])
-            ("if" code nil nil [546322 546419])
-            ("gnutls-min-prime-bits" variable (:default-value 256) nil [546532 546928])
-            ("custom-autoload" code nil nil [546930 546981])
-            ("if" code nil nil [546983 547101])
-            ("gomoku" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [547216 547980])
-            ("if" code nil nil [547982 548079])
-            ("define-obsolete-function-alias" code nil nil [548201 548286])
-            ("goto-address-at-point" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [548288 548580])
-            ("goto-address" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [548582 549016])
-            ("put" code nil nil [549017 549064])
-            ("goto-address-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [549066 549365])
-            ("goto-address-prog-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [549367 549505])
-            ("if" code nil nil [549507 549613])
-            ("gravatar-retrieve" function (:prototype-flag t) nil [549736 549945])
-            ("gravatar-retrieve-synchronously" function (:prototype-flag t) nil [549947 550080])
-            ("if" code nil nil [550082 550183])
-            ("grep-window-height" variable nil nil [550302 550413])
-            ("custom-autoload" code nil nil [550415 550461])
-            ("grep-command" variable nil nil [550463 550901])
-            ("custom-autoload" code nil nil [550903 550945])
-            ("grep-find-command" variable nil nil [550947 551205])
-            ("custom-autoload" code nil nil [551207 551254])
-            ("grep-setup-hook" variable nil nil [551256 551358])
-            ("custom-autoload" code nil nil [551360 551403])
-            ("grep-regexp-alist" variable
-               (:constant-flag t
-                :default-value (\` (((\, (concat "^\\(?:" "\\(?1:[^�

-]+\\)\\(?3:�\\)\\(?2:[0-9]+\\):" "\\|" "\\(?1:[^

-:]+?[^

-/:]\\):[	 ]*\\(?2:[1-9][0-9]*\\)[	 ]*:" "\\)")) 1 2 ((\, (lambda nil (when grep-highlight-matches (let* ((beg (match-end 0)) (end (save-excursion (goto-char beg) (line-end-position))) (mbeg (text-property-any beg end (quote font-lock-face) (quote grep-match-face)))) (when mbeg (- mbeg beg)))))) \, (lambda nil (when grep-highlight-matches (let* ((beg (match-end 0)) (end (save-excursion (goto-char beg) (line-end-position))) (mbeg (text-property-any beg end (quote font-lock-face) (quote grep-match-face))) (mend (and mbeg (next-single-property-change mbeg (quote font-lock-face) nil end)))) (when mend (- mend beg)))))) nil nil (3 (quote (face nil display ":")))) ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))))
-                nil [551405 552286])
-            ("grep-program" variable (:default-value (purecopy "grep")) nil [552288 552475])
-            ("find-program" variable (:default-value (purecopy "find")) nil [552477 552622])
-            ("xargs-program" variable (:default-value (purecopy "xargs")) nil [552624 552822])
-            ("grep-find-use-xargs" variable nil nil [552824 553138])
-            ("grep-history" variable nil nil [553140 553192])
-            ("grep-find-history" variable nil nil [553194 553256])
-            ("grep-process-setup" function (:prototype-flag t) nil [553258 553435])
-            ("grep-compute-defaults" function (:prototype-flag t) nil [553437 553497])
-            ("grep-mode" function (:prototype-flag t) nil [553499 553603])
-            ("grep" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [553605 554506])
-            ("grep-find" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [554508 554867])
-            ("defalias" code nil nil [554869 554901])
-            ("lgrep" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [554903 555813])
-            ("rgrep" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [555815 556912])
-            ("zrgrep" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [556914 557203])
-            ("defalias" code nil nil [557205 557231])
-            ("if" code nil nil [557233 557347])
-            ("if" code nil nil [557462 557587])
-            ("gud-gdb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [557703 558250])
-            ("sdb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [558252 558462])
-            ("dbx" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [558464 558674])
-            ("xdb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [558676 559037])
-            ("perldb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [559039 559255])
-            ("pdb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [559257 559469])
-            ("guiler" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [559471 559689])
-            ("jdb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [559691 560320])
-            ("gdb-script-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [560322 560408])
-            ("gud-tooltip-mode" variable nil nil [560410 560711])
-            ("custom-autoload" code nil nil [560713 560758])
-            ("gud-tooltip-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [560760 561012])
-            ("if" code nil nil [561014 561112])
-            ("gv-get" function (:prototype-flag t) nil [561227 561717])
-            ("gv-letplace" function (:prototype-flag t) nil [561719 562269])
-            ("function-put" code nil nil [562271 562323])
-            ("gv-define-expander" function (:prototype-flag t) nil [562325 562636])
-            ("function-put" code nil nil [562638 562697])
-            ("gv--defun-declaration" function (:prototype-flag t) nil [562699 562796])
-            ("or" code nil nil [562798 562998])
-            ("or" code nil nil [563000 563146])
-            ("gv-define-setter" function (:prototype-flag t) nil [563148 563821])
-            ("function-put" code nil nil [563823 563880])
-            ("gv-define-simple-setter" function (:prototype-flag t) nil [563882 564465])
-            ("setf" function (:prototype-flag t) nil [564467 564819])
-            ("put" code nil nil [564821 564873])
-            ("gv-ref" function (:prototype-flag t) nil [564875 565167])
-            ("if" code nil nil [565169 565258])
-            ("handwrite" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [565382 565808])
-            ("if" code nil nil [565810 565938])
-            ("if" code nil nil [566081 566178])
-            ("hanoi" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [566290 566385])
-            ("hanoi-unix" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [566387 566609])
-            ("hanoi-unix-64" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [566611 566854])
-            ("if" code nil nil [566856 566951])
-            ("hashcash-insert-payment" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [567072 567202])
-            ("hashcash-insert-payment-async" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [567204 567398])
-            ("hashcash-verify-payment" function (:prototype-flag t) nil [567400 567523])
-            ("mail-add-payment" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [567525 567821])
-            ("mail-add-payment-async" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [567823 568065])
-            ("mail-check-payment" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [568067 568241])
-            ("if" code nil nil [568243 568344])
-            ("help-at-pt-string" function (:prototype-flag t) nil [568461 568854])
-            ("help-at-pt-kbd-string" function (:prototype-flag t) nil [568856 569134])
-            ("display-local-help" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [569136 569617])
-            ("help-at-pt-cancel-timer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [569619 569778])
-            ("help-at-pt-set-timer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [569780 569943])
-            ("help-at-pt-display-when-idle" variable (:default-value (quote never)) nil [569945 571321])
-            ("custom-autoload" code nil nil [571323 571387])
-            ("scan-buf-move-to-region" function (:prototype-flag t) nil [571389 572332])
-            ("scan-buf-next-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [572334 573348])
-            ("scan-buf-previous-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [573350 573726])
-            ("if" code nil nil [573728 573854])
-            ("describe-function" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [573965 574149])
-            ("help-C-file-name" function (:prototype-flag t) nil [574151 574350])
-            ("find-lisp-object-file-name" function (:prototype-flag t) nil [574352 575102])
-            ("describe-function-1" function (:prototype-flag t) nil [575104 575175])
-            ("variable-at-point" function (:prototype-flag t) nil [575177 575413])
-            ("describe-variable" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [575415 575757])
-            ("describe-symbol" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [575759 576135])
-            ("describe-syntax" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [576137 576387])
-            ("describe-categories" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [576389 576714])
-            ("doc-file-to-man" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [576716 576846])
-            ("doc-file-to-info" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [576848 576977])
-            ("if" code nil nil [576979 577088])
-            ("three-step-help" variable nil nil [577205 577534])
-            ("custom-autoload" code nil nil [577536 577585])
-            ("if" code nil nil [577587 577697])
-            ("help-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [577811 578013])
-            ("help-mode-setup" function (:prototype-flag t) nil [578015 578112])
-            ("help-mode-finish" function (:prototype-flag t) nil [578114 578217])
-            ("help-setup-xref" function (:prototype-flag t) nil [578219 578813])
-            ("help-buffer" function (:prototype-flag t) nil [578815 579152])
-            ("help-make-xrefs" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [579154 580175])
-            ("help-xref-button" function (:prototype-flag t) nil [580177 580546])
-            ("help-insert-xref-button" function (:prototype-flag t) nil [580548 580849])
-            ("help-xref-on-pp" function (:prototype-flag t) nil [580851 580976])
-            ("define-obsolete-function-alias" code nil nil [580978 581054])
-            ("help-bookmark-jump" function (:prototype-flag t) nil [581056 581282])
-            ("if" code nil nil [581284 581409])
-            ("Helper-describe-bindings" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [581536 581643])
-            ("Helper-help" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [581645 581725])
-            ("if" code nil nil [581727 581824])
-            ("if" code nil nil [581935 582064])
-            ("hexl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [582163 585703])
-            ("hexl-find-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [585705 585926])
-            ("hexlify-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [585928 586063])
-            ("if" code nil nil [586065 586177])
-            ("if" code nil nil [586325 586451])
-            ("hi-lock-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [586559 589379])
-            ("global-hi-lock-mode" variable nil nil [589381 589694])
-            ("custom-autoload" code nil nil [589696 589748])
-            ("global-hi-lock-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [589750 590154])
-            ("defalias" code nil nil [590156 590225])
-            ("hi-lock-line-face-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [590227 590641])
-            ("defalias" code nil nil [590643 590692])
-            ("hi-lock-face-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [590694 591085])
-            ("defalias" code nil nil [591087 591143])
-            ("hi-lock-face-phrase-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [591145 591750])
-            ("defalias" code nil nil [591752 591819])
-            ("hi-lock-face-symbol-at-point" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [591821 592243])
-            ("defalias" code nil nil [592245 592298])
-            ("hi-lock-unface-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [592300 592651])
-            ("hi-lock-write-interactive-patterns" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [592653 592977])
-            ("if" code nil nil [592979 593107])
-            ("hide-ifdef-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [593232 595043])
-            ("if" code nil nil [595045 595266])
-            ("hs-special-modes-alist" variable (:default-value (mapcar (quote purecopy) (quote ((c-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil))))) nil [595397 596838])
-            ("hs-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [596840 597742])
-            ("turn-off-hideshow" function (:prototype-flag t) nil [597744 597845])
-            ("if" code nil nil [597847 597942])
-            ("highlight-changes-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [598056 599147])
-            ("highlight-changes-visible-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [599149 599784])
-            ("highlight-changes-remove-highlight" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [599786 600005])
-            ("highlight-changes-next-change" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [600007 600149])
-            ("highlight-changes-previous-change" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [600151 600301])
-            ("highlight-changes-rotate-faces" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [600303 600980])
-            ("highlight-compare-buffers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [600982 601566])
-            ("highlight-compare-with-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [601568 602186])
-            ("global-highlight-changes-mode" variable nil nil [602188 602541])
-            ("custom-autoload" code nil nil [602543 602607])
-            ("global-highlight-changes-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [602609 603079])
-            ("if" code nil nil [603081 603224])
-            ("push" code nil nil [603340 603401])
-            ("hippie-expand-try-functions-list" variable (:default-value (quote (try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol))) nil [603403 603874])
-            ("custom-autoload" code nil nil [603876 603942])
-            ("hippie-expand" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [603944 604430])
-            ("make-hippie-expand-function" function (:prototype-flag t) nil [604432 604699])
-            ("if" code nil nil [604701 604822])
-            ("hl-line-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [604930 605775])
-            ("global-hl-line-mode" variable nil nil [605777 606090])
-            ("custom-autoload" code nil nil [606092 606144])
-            ("global-hl-line-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [606146 606715])
-            ("if" code nil nil [606717 606834])
-            ("if" code nil nil [606953 607065])
-            ("if" code nil nil [607184 607297])
-            ("holiday-general-holidays" variable (:default-value (mapcar (quote purecopy) (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))))) nil [607426 608247])
-            ("custom-autoload" code nil nil [608249 608305])
-            ("put" code nil nil [608307 608362])
-            ("holiday-oriental-holidays" variable (:default-value (mapcar (quote purecopy) (quote ((holiday-chinese-new-year) (if calendar-chinese-all-holidays-flag (append (holiday-chinese 1 15 "Lantern Festival") (holiday-chinese-qingming) (holiday-chinese 5 5 "Dragon Boat Festival") (holiday-chinese 7 7 "Double Seventh Festival") (holiday-chinese 8 15 "Mid-Autumn Festival") (holiday-chinese 9 9 "Double Ninth Festival") (holiday-chinese-winter-solstice))))))) nil [608364 608865])
-            ("custom-autoload" code nil nil [608867 608924])
-            ("put" code nil nil [608926 608982])
-            ("holiday-local-holidays" variable nil nil [608984 609098])
-            ("custom-autoload" code nil nil [609100 609154])
-            ("put" code nil nil [609156 609209])
-            ("holiday-other-holidays" variable nil nil [609211 609332])
-            ("custom-autoload" code nil nil [609334 609388])
-            ("put" code nil nil [609390 609443])
-            ("holiday-hebrew-holidays" variable (:default-value (mapcar (quote purecopy) (quote ((holiday-hebrew-passover) (holiday-hebrew-rosh-hashanah) (holiday-hebrew-hanukkah) (if calendar-hebrew-all-holidays-flag (append (holiday-hebrew-tisha-b-av) (holiday-hebrew-misc))))))) nil [609445 609760])
-            ("custom-autoload" code nil nil [609762 609817])
-            ("put" code nil nil [609819 609873])
-            ("holiday-christian-holidays" variable (:default-value (mapcar (quote purecopy) (quote ((holiday-easter-etc) (holiday-fixed 12 25 "Christmas") (if calendar-christian-all-holidays-flag (append (holiday-fixed 1 6 "Epiphany") (holiday-julian 12 25 "Christmas (Julian calendar)") (holiday-greek-orthodox-easter) (holiday-fixed 8 15 "Assumption") (holiday-advent 0 "Advent"))))))) nil [609875 610299])
-            ("custom-autoload" code nil nil [610301 610359])
-            ("put" code nil nil [610361 610418])
-            ("holiday-islamic-holidays" variable (:default-value (mapcar (quote purecopy) (quote ((holiday-islamic-new-year) (holiday-islamic 9 1 "Ramadan Begins") (if calendar-islamic-all-holidays-flag (append (holiday-islamic 1 10 "Ashura") (holiday-islamic 3 12 "Mulad-al-Nabi") (holiday-islamic 7 26 "Shab-e-Mi'raj") (holiday-islamic 8 15 "Shab-e-Bara't") (holiday-islamic 9 27 "Shab-e Qadr") (holiday-islamic 10 1 "Id-al-Fitr") (holiday-islamic 12 10 "Id-al-Adha"))))))) nil [610420 610930])
-            ("custom-autoload" code nil nil [610932 610988])
-            ("put" code nil nil [610990 611045])
-            ("holiday-bahai-holidays" variable (:default-value (mapcar (quote purecopy) (quote ((holiday-bahai-new-year) (holiday-bahai-ridvan) (holiday-fixed 5 23 "Declaration of the B\303\241b") (holiday-fixed 5 29 "Ascension of Bah\303\241\342\200\231u\342\200\231ll\303\241h") (holiday-fixed 7 9 "Martyrdom of the B\303\241b") (holiday-fixed 10 20 "Birth of the B\303\241b") (holiday-fixed 11 12 "Birth of Bah\303\241\342\200\231u\342\200\231ll\303\241h") (if calendar-bahai-all-holidays-flag (append (holiday-fixed 11 26 "Day of the Covenant") (holiday-fixed 11 28 "Ascension of `Abdu\342\200\231l-Bah\303\241"))))))) nil [611047 611592])
-            ("custom-autoload" code nil nil [611594 611648])
-            ("put" code nil nil [611650 611703])
-            ("holiday-solar-holidays" variable (:default-value (mapcar (quote purecopy) (quote ((solar-equinoxes-solstices) (holiday-sexp calendar-daylight-savings-starts (format "Daylight Saving Time Begins %s" (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name))) (holiday-sexp calendar-daylight-savings-ends (format "Daylight Saving Time Ends %s" (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name))))))) nil [611705 612257])
-            ("custom-autoload" code nil nil [612259 612313])
-            ("put" code nil nil [612315 612368])
-            ("put" code nil nil [612370 612418])
-            ("holidays" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [612420 612680])
-            ("list-holidays" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [612682 613505])
-            ("defalias" code nil nil [613507 613546])
-            ("if" code nil nil [613548 613660])
-            ("push" code nil nil [613779 613842])
-            ("htmlfontify-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [613844 614590])
-            ("htmlfontify-copy-and-link-dir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [614592 614901])
-            ("if" code nil nil [614903 615017])
-            ("if" code nil nil [615165 615529])
-            ("define-ibuffer-column" function (:prototype-flag t) nil [615643 616744])
-            ("function-put" code nil nil [616746 616812])
-            ("define-ibuffer-sorter" function (:prototype-flag t) nil [616814 617315])
-            ("function-put" code nil nil [617317 617379])
-            ("function-put" code nil nil [617381 617437])
-            ("define-ibuffer-op" function (:prototype-flag t) nil [617439 619458])
-            ("function-put" code nil nil [619460 619518])
-            ("function-put" code nil nil [619520 619572])
-            ("define-ibuffer-filter" function (:prototype-flag t) nil [619574 620139])
-            ("function-put" code nil nil [620141 620203])
-            ("function-put" code nil nil [620205 620261])
-            ("if" code nil nil [620263 620364])
-            ("ibuffer-list-buffers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [620472 620699])
-            ("ibuffer-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [620701 620942])
-            ("ibuffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [620944 621811])
-            ("ibuffer-jump" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [621813 622020])
-            ("if" code nil nil [622022 622190])
-            ("push" code nil nil [622329 622390])
-            ("icalendar-export-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [622392 622653])
-            ("icalendar-export-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [622655 623129])
-            ("icalendar-import-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [623131 623478])
-            ("icalendar-import-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [623480 624184])
-            ("if" code nil nil [624186 624289])
-            ("icomplete-mode" variable nil nil [624403 624696])
-            ("custom-autoload" code nil nil [624698 624747])
-            ("icomplete-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [624749 625508])
-            ("when" code nil nil [625509 625704])
-            ("if" code nil nil [625706 625809])
-            ("icon-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [625928 627354])
-            ("if" code nil nil [627356 627580])
-            ("if" code nil nil [627764 627879])
-            ("if" code nil nil [628021 628122])
-            ("idlwave-shell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [628267 629117])
-            ("if" code nil nil [629119 629221])
-            ("if" code nil nil [629372 629484])
-            ("push" code nil nil [629611 629672])
-            ("idlwave-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [629674 634634])
-            ("if" code nil nil [634636 634735])
-            ("ido-mode" variable nil nil [634831 635295])
-            ("custom-autoload" code nil nil [635297 635334])
-            ("ido-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [635336 635853])
-            ("ido-switch-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [635855 637551])
-            ("ido-switch-buffer-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [637553 637792])
-            ("ido-display-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [637794 638021])
-            ("ido-display-buffer-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [638023 638252])
-            ("ido-kill-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [638254 638437])
-            ("ido-insert-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [638439 638668])
-            ("ido-switch-buffer-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [638670 638907])
-            ("ido-find-file-in-dir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [638909 639010])
-            ("ido-find-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [639012 641501])
-            ("ido-find-file-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [641503 641730])
-            ("ido-find-alternate-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [641732 641962])
-            ("ido-find-alternate-file-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [641964 642207])
-            ("ido-find-file-read-only" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [642209 642434])
-            ("ido-find-file-read-only-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [642436 642690])
-            ("ido-find-file-read-only-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [642692 642944])
-            ("ido-display-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [642946 643163])
-            ("ido-find-file-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [643165 643390])
-            ("ido-write-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [643392 643585])
-            ("ido-insert-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [643587 643792])
-            ("ido-dired" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [643794 643976])
-            ("ido-dired-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [643978 644218])
-            ("ido-dired-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [644220 644451])
-            ("ido-read-buffer" function (:prototype-flag t) nil [644453 644844])
-            ("ido-read-file-name" function (:prototype-flag t) nil [644846 645137])
-            ("ido-read-directory-name" function (:prototype-flag t) nil [645139 645439])
-            ("ido-completing-read" function (:prototype-flag t) nil [645441 646415])
-            ("if" code nil nil [646417 646508])
-            ("ielm" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [646607 646807])
-            ("if" code nil nil [646809 646929])
-            ("if" code nil nil [647056 647161])
-            ("define-obsolete-function-alias" code nil nil [647266 647339])
-            ("iimage-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [647341 647645])
-            ("if" code nil nil [647647 647767])
-            ("image-type-from-data" function (:prototype-flag t) nil [647869 648061])
-            ("image-type-from-buffer" function (:prototype-flag t) nil [648063 648263])
-            ("image-type-from-file-header" function (:prototype-flag t) nil [648265 648482])
-            ("image-type-from-file-name" function (:prototype-flag t) nil [648484 648688])
-            ("image-type" function (:prototype-flag t) nil [648690 649158])
-            ("image-type-available-p" function (:prototype-flag t) nil [649160 649320])
-            ("image-type-auto-detected-p" function (:prototype-flag t) nil [649322 649819])
-            ("create-image" function (:prototype-flag t) nil [649821 650700])
-            ("put-image" function (:prototype-flag t) nil [650702 651421])
-            ("insert-image" function (:prototype-flag t) nil [651423 652273])
-            ("insert-sliced-image" function (:prototype-flag t) nil [652275 652858])
-            ("remove-images" function (:prototype-flag t) nil [652860 653108])
-            ("find-image" function (:prototype-flag t) nil [653110 653938])
-            ("defimage" function (:prototype-flag t) nil [653940 654755])
-            ("function-put" code nil nil [654757 654800])
-            ("imagemagick-register-types" function (:prototype-flag t) nil [654802 655379])
-            ("if" code nil nil [655381 655475])
-            ("push" code nil nil [655594 655659])
-            ("image-dired-dired-toggle-marked-thumbs" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [655661 656049])
-            ("image-dired-dired-with-window-configuration" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [656051 656682])
-            ("image-dired-display-thumbs" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [656684 657674])
-            ("image-dired-show-all-from-dir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [657676 657956])
-            ("defalias" code nil nil [657958 658012])
-            ("define-obsolete-function-alias" code nil nil [658014 658073])
-            ("image-dired-tag-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [658075 658209])
-            ("image-dired-delete-tag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [658211 658370])
-            ("image-dired-jump-thumbnail-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [658372 658474])
-            ("image-dired-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [658476 658721])
-            ("define-obsolete-function-alias" code nil nil [658723 658823])
-            ("image-dired-display-thumbs-append" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [658825 658954])
-            ("image-dired-display-thumb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [658956 659089])
-            ("image-dired-dired-display-external" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [659091 659216])
-            ("image-dired-dired-display-image" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [659218 659468])
-            ("image-dired-dired-comment-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [659470 659593])
-            ("image-dired-mark-tagged-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [659595 660021])
-            ("image-dired-dired-edit-comment-and-tags" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [660023 660234])
-            ("if" code nil nil [660236 660343])
-            ("image-file-name-extensions" variable (:default-value (purecopy (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")))) nil [660460 660998])
-            ("custom-autoload" code nil nil [661000 661062])
-            ("image-file-name-regexps" variable nil nil [661064 661537])
-            ("custom-autoload" code nil nil [661539 661598])
-            ("image-file-name-regexp" function (:prototype-flag t) nil [661600 661725])
-            ("insert-image-file" function (:prototype-flag t) nil [661727 661984])
-            ("auto-image-file-mode" variable nil nil [661986 662303])
-            ("custom-autoload" code nil nil [662305 662361])
-            ("auto-image-file-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [662363 662803])
-            ("if" code nil nil [662805 662910])
-            ("image-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [663027 663312])
-            ("image-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [663314 663745])
-            ("image-mode-to-text" function (:prototype-flag t) nil [663747 663985])
-            ("image-bookmark-jump" function (:prototype-flag t) nil [663987 664055])
-            ("if" code nil nil [664057 664157])
-            ("if" code nil nil [664264 664357])
-            ("imenu-sort-function" variable nil nil [664459 664995])
-            ("custom-autoload" code nil nil [664997 665045])
-            ("imenu-generic-expression" variable nil nil [665047 666575])
-            ("put" code nil nil [666576 666631])
-            ("make-variable-buffer-local" code nil nil [666633 666687])
-            ("imenu-create-index-function" variable (:default-value (quote imenu-default-create-index-function)) nil [666689 667055])
-            ("make-variable-buffer-local" code nil nil [667057 667114])
-            ("imenu-prev-index-position-function" variable (:default-value (quote beginning-of-defun)) nil [667116 667556])
-            ("make-variable-buffer-local" code nil nil [667558 667622])
-            ("imenu-extract-index-name-function" variable nil nil [667624 667917])
-            ("make-variable-buffer-local" code nil nil [667919 667982])
-            ("imenu-name-lookup-function" variable nil nil [667984 668342])
-            ("make-variable-buffer-local" code nil nil [668344 668400])
-            ("imenu-default-goto-function" variable (:default-value (quote imenu-default-goto-function)) nil [668402 668605])
-            ("make-variable-buffer-local" code nil nil [668607 668664])
-            ("put" code nil nil [668665 668714])
-            ("make-variable-buffer-local" code nil nil [668716 668764])
-            ("make-variable-buffer-local" code nil nil [668766 668818])
-            ("imenu-add-to-menubar" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [668820 669038])
-            ("imenu-add-menubar-index" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [669040 669244])
-            ("imenu" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [669246 669461])
-            ("if" code nil nil [669463 669558])
-            ("indian-compose-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [669687 669818])
-            ("indian-compose-string" function (:prototype-flag t) nil [669820 669891])
-            ("in-is13194-post-read-conversion" function (:prototype-flag t) nil [669893 669971])
-            ("in-is13194-pre-write-conversion" function (:prototype-flag t) nil [669973 670055])
-            ("indian-2-column-to-ucs-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [670057 670182])
-            ("if" code nil nil [670184 670295])
-            ("inferior-lisp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [670426 670904])
-            ("defalias" code nil nil [670906 670941])
-            ("if" code nil nil [670943 671074])
-            ("Info-default-directory-list" variable (:default-value (let* ((config-dir (file-name-as-directory (or (and (featurep (quote ns)) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list (quote ("/usr/local/" "/usr/" "/opt/")))) (suffixes (quote ("share/" ""))) (standard-info-dirs (apply (function nconc) (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type (quote windows-nt))) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs)))))) nil [671173 673118])
-            ("info-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [673120 673259])
-            ("put" code nil nil [673261 673302])
-            ("info" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [673304 674252])
-            ("info-emacs-manual" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [674254 674346])
-            ("info-emacs-bug" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [674348 674471])
-            ("info-standalone" function (:prototype-flag t) nil [674473 674680])
-            ("Info-on-current-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [674682 674909])
-            ("Info-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [674911 674992])
-            ("Info-index" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [674994 675389])
-            ("info-apropos" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [675391 675550])
-            ("info-finder" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [675552 675884])
-            ("Info-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [675886 679577])
-            ("put" code nil nil [679579 679644])
-            ("Info-goto-emacs-command-node" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [679646 679982])
-            ("put" code nil nil [679984 680053])
-            ("Info-goto-emacs-key-command-node" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [680055 680468])
-            ("Info-speedbar-browser" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [680470 680625])
-            ("Info-bookmark-jump" function (:prototype-flag t) nil [680627 680808])
-            ("info-display-manual" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [680810 681151])
-            ("if" code nil nil [681153 681254])
-            ("info-lookup-reset" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [681368 681612])
-            ("put" code nil nil [681614 681658])
-            ("info-lookup-symbol" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [681660 682105])
-            ("put" code nil nil [682107 682149])
-            ("info-lookup-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [682151 682554])
-            ("info-complete-symbol" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [682556 682678])
-            ("info-complete-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [682680 682798])
-            ("if" code nil nil [682800 682898])
-            ("push" code nil nil [683011 683069])
-            ("info-xref-check" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [683071 684306])
-            ("info-xref-check-all" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [684308 684898])
-            ("info-xref-check-all-custom" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [684900 685286])
-            ("info-xref-docstrings" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [685288 686158])
-            ("if" code nil nil [686160 686263])
-            ("Info-tagify" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [686374 686524])
-            ("Info-split-threshold" variable (:default-value 262144) nil [686526 686634])
-            ("custom-autoload" code nil nil [686636 686688])
-            ("Info-split" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [686690 687375])
-            ("Info-validate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [687377 687539])
-            ("batch-info-validate" function (:prototype-flag t) nil [687541 687871])
-            ("if" code nil nil [687873 687979])
-            ("define-inline" function (:prototype-flag t) nil [688106 688361])
-            ("function-put" code nil nil [688363 688421])
-            ("function-put" code nil nil [688423 688471])
-            ("if" code nil nil [688473 688570])
-            ("push" code nil nil [688695 688755])
-            ("inversion-require-emacs" function (:prototype-flag t) nil [688757 688982])
-            ("if" code nil nil [688984 689087])
-            ("isearch-toggle-specified-input-method" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [689237 689376])
-            ("isearch-toggle-input-method" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [689378 689489])
-            ("isearch-process-search-multibyte-characters" function (:prototype-flag t) nil [689491 689604])
-            ("if" code nil nil [689606 689707])
-            ("push" code nil nil [689817 689876])
-            ("isearchb-activate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [689878 690143])
-            ("if" code nil nil [690145 690245])
-            ("if" code nil nil [690395 690498])
-            ("iso-spanish" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [690642 690912])
-            ("iso-german" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [690914 691173])
-            ("iso-iso2tex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [691175 691442])
-            ("iso-tex2iso" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [691444 691711])
-            ("iso-gtex2iso" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [691713 691989])
-            ("iso-iso2gtex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [691991 692267])
-            ("iso-iso2duden" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [692269 692542])
-            ("iso-iso2sgml" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [692544 692809])
-            ("iso-sgml2iso" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [692811 693076])
-            ("iso-cvt-read-only" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [693078 693178])
-            ("iso-cvt-write-only" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [693180 693282])
-            ("iso-cvt-define-menu" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [693284 693413])
-            ("if" code nil nil [693415 693510])
-            ("define-key" code nil nil [693663 693727])
-            ("iso-transl-ctl-x-8-map" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [693729 693813])
-            ("if" code nil nil [693815 693920])
-            ("put" code nil nil [694045 694135])
-            ("ispell-personal-dictionary" variable nil nil [694137 694311])
-            ("custom-autoload" code nil nil [694313 694369])
-            ("put" code nil nil [694371 694440])
-            ("ispell-menu-map" variable nil nil [694442 694499])
-            ("ispell-menu-map-needed" variable (:default-value (unless ispell-menu-map (quote reload))) nil [694501 694565])
-            ("if" code nil nil [694567 696317])
-            ("if" code nil nil [696319 697000])
-            ("if" code nil nil [697002 697634])
-            ("ispell-skip-region-alist" variable (:default-value (\` ((ispell-words-keyword forward-line) (ispell-dictionary-keyword forward-line) (ispell-pdict-keyword forward-line) (ispell-parsing-keyword forward-line) ((\, (purecopy "^---*BEGIN PGP [A-Z ]*--*")) \, (purecopy "^---*END PGP [A-Z ]*--*")) ((\, (purecopy "^begin [0-9][0-9][0-9] [^ 	]+$")) \, (purecopy "

-end

-")) ((\, (purecopy "^%!PS-Adobe-[123].0")) \, (purecopy "

-%%EOF

-")) ((\, (purecopy "^---* \\(Start of \\)?[Ff]orwarded [Mm]essage")) \, (purecopy "^---* End of [Ff]orwarded [Mm]essage"))))) nil [697636 698535])
-            ("ispell-tex-skip-alists" variable (:default-value (purecopy (quote ((("\\\\addcontentsline" ispell-tex-arg-end 2) ("\\\\add\\(tocontents\\|vspace\\)" ispell-tex-arg-end) ("\\\\\\([aA]lph\\|arabic\\)" ispell-tex-arg-end) ("\\\\cref" ispell-tex-arg-end) ("\\\\bibliographystyle" ispell-tex-arg-end) ("\\\\makebox" ispell-tex-arg-end 0) ("\\\\e?psfig" ispell-tex-arg-end) ("\\\\document\\(class\\|style\\)" . "\\\\begin[ 	

-]*{[ 	

-]*document[ 	

-]*}")) (("\\(figure\\|table\\)\\*?" ispell-tex-arg-end 0) ("list" ispell-tex-arg-end 2) ("program" . "\\\\end[ 	

-]*{[ 	

-]*program[ 	

-]*}") ("verbatim\\*?" . "\\\\end[ 	

-]*{[ 	

-]*verbatim\\*?[ 	

-]*}")))))) nil [698537 699375])
-            ("ispell-html-skip-alists" variable
-               (:constant-flag t
-                :default-value (quote (("<[cC][oO][dD][eE]\\>[^>]*>" "</[cC][oO][dD][eE]*>") ("<[sS][cC][rR][iI][pP][tT]\\>[^>]*>" "</[sS][cC][rR][iI][pP][tT]>") ("<[aA][pP][pP][lL][eE][tT]\\>[^>]*>" "</[aA][pP][pP][lL][eE][tT]>") ("<[vV][eE][rR][bB]\\>[^>]*>" "<[vV][eE][rR][bB]\\>[^>]*>") ("<[tT][tT]/" "/") ("<[^ 	

->]" ">") ("&[^ 	

-;]" "[; 	

-]"))))
-                nil [699377 699922])
-            ("put" code nil nil [699923 699978])
-            ("define-key" code nil nil [699980 700017])
-            ("ispell-word" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [700019 701394])
-            ("ispell-pdict-save" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [701396 701576])
-            ("ispell-help" function (:prototype-flag t) nil [701578 702671])
-            ("ispell-kill-ispell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [702673 702937])
-            ("ispell-change-dictionary" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [702939 703251])
-            ("ispell-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [703253 703504])
-            ("ispell-comments-and-strings" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [703506 703641])
-            ("ispell-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [703643 703754])
-            ("ispell-buffer-with-debug" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [703756 703975])
-            ("ispell-continue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [703977 704098])
-            ("ispell-complete-word" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [704100 704370])
-            ("ispell-complete-word-interior-frag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [704372 704502])
-            ("ispell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [704504 704949])
-            ("ispell-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [704951 705599])
-            ("ispell-message" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [705601 706574])
-            ("if" code nil nil [706576 706696])
-            ("if" code nil nil [706849 706991])
-            ("if" code nil nil [707144 707245])
-            ("setup-japanese-environment-internal" function (:prototype-flag t) nil [707388 707468])
-            ("japanese-katakana" function (:prototype-flag t) nil [707470 707945])
-            ("japanese-hiragana" function (:prototype-flag t) nil [707947 708189])
-            ("japanese-hankaku" function (:prototype-flag t) nil [708191 708529])
-            ("japanese-zenkaku" function (:prototype-flag t) nil [708531 708773])
-            ("japanese-katakana-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [708775 709059])
-            ("japanese-hiragana-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [709061 709204])
-            ("japanese-hankaku-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [709206 709550])
-            ("japanese-zenkaku-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [709552 709901])
-            ("read-hiragana-string" function (:prototype-flag t) nil [709903 710147])
-            ("if" code nil nil [710149 710252])
-            ("jka-compr-inhibit" variable nil nil [710366 710580])
-            ("jka-compr-handler" function (:prototype-flag t) nil [710582 710664])
-            ("jka-compr-uninstall" function (:prototype-flag t) nil [710666 710906])
-            ("if" code nil nil [710908 711031])
-            ("push" code nil nil [711143 711194])
-            ("js-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [711196 711272])
-            ("js-jsx-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [711274 711638])
-            ("defalias" code nil nil [711640 711676])
-            ("dolist" code nil nil [711678 711800])
-            ("if" code nil nil [711802 711901])
-            ("push" code nil nil [711999 712054])
-            ("if" code nil nil [712056 712149])
-            ("if" code nil nil [712254 712351])
-            ("keypad-setup" variable nil nil [712476 712687])
-            ("custom-autoload" code nil nil [712689 712733])
-            ("keypad-numlock-setup" variable nil nil [712735 712953])
-            ("custom-autoload" code nil nil [712955 713007])
-            ("keypad-shifted-setup" variable nil nil [713009 713226])
-            ("custom-autoload" code nil nil [713228 713280])
-            ("keypad-numlock-shifted-setup" variable nil nil [713282 713507])
-            ("custom-autoload" code nil nil [713509 713569])
-            ("keypad-setup" function (:prototype-flag t) nil [713571 714614])
-            ("kinsoku" function (:prototype-flag t) nil [714758 715402])
-            ("if" code nil nil [715404 715503])
-            ("kkc-after-update-conversion-functions" variable nil nil [715627 716005])
-            ("kkc-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [716007 716434])
-            ("if" code nil nil [716436 716527])
-            ("global-set-key" code nil nil [716632 716676])
-            ("global-set-key" code nil nil [716678 716720])
-            ("global-set-key" code nil nil [716722 716773])
-            ("global-set-key" code nil nil [716775 716834])
-            ("global-set-key" code nil nil [716836 716883])
-            ("global-set-key" code nil nil [716885 716927])
-            ("kmacro-keymap" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [716929 717011])
-            ("kmacro-exec-ring-item" function (:prototype-flag t) nil [717013 717170])
-            ("kmacro-start-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [717172 718228])
-            ("kmacro-end-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [718230 718693])
-            ("kmacro-call-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [718695 719336])
-            ("kmacro-start-macro-or-insert-counter" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [719338 720264])
-            ("kmacro-end-or-call-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [720266 720537])
-            ("kmacro-end-and-call-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [720539 720913])
-            ("kmacro-end-call-mouse" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [720915 721121])
-            ("if" code nil nil [721123 721220])
-            ("default-korean-keyboard" variable (:default-value (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" ""))) nil [721363 721559])
-            ("setup-korean-environment-internal" function (:prototype-flag t) nil [721561 721639])
-            ("if" code nil nil [721641 721843])
-            ("lao-compose-string" function (:prototype-flag t) nil [721972 722037])
-            ("lao-transcribe-single-roman-syllable-to-lao" function (:prototype-flag t) nil [722039 722575])
-            ("lao-transcribe-roman-to-lao-string" function (:prototype-flag t) nil [722577 722718])
-            ("lao-composition-function" function (:prototype-flag t) nil [722720 722795])
-            ("lao-compose-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [722797 722864])
-            ("if" code nil nil [722866 722962])
-            ("latex-inputenc-coding-alist" variable (:default-value (purecopy (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))))) nil [723109 723818])
-            ("custom-autoload" code nil nil [723820 723879])
-            ("latexenc-inputenc-to-coding-system" function (:prototype-flag t) nil [723881 724093])
-            ("latexenc-coding-system-to-inputenc" function (:prototype-flag t) nil [724095 724302])
-            ("latexenc-find-file-coding-system" function (:prototype-flag t) nil [724304 724596])
-            ("if" code nil nil [724598 724708])
-            ("latin1-display" variable nil nil [724864 725567])
-            ("custom-autoload" code nil nil [725569 725620])
-            ("latin1-display" function (:prototype-flag t) nil [725622 725963])
-            ("latin1-display-ucs-per-lynx" variable nil nil [725965 726300])
-            ("custom-autoload" code nil nil [726302 726366])
-            ("if" code nil nil [726368 726478])
-            ("ld-script-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [726620 726716])
-            ("if" code nil nil [726718 726821])
-            ("if" code nil nil [726928 727021])
-            ("if" code nil nil [727177 727289])
-            ("put" code nil nil [727443 727505])
-            ("put" code nil nil [727507 727559])
-            ("put" code nil nil [727561 727623])
-            ("put" code nil nil [727625 727686])
-            ("add-to-list" code nil nil [727688 727750])
-            ("less-css-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [727752 727907])
-            ("if" code nil nil [727909 728015])
-            ("push" code nil nil [728158 728220])
-            ("let-alist" function (:prototype-flag t) nil [728222 729156])
-            ("function-put" code nil nil [729158 729208])
-            ("if" code nil nil [729210 729314])
-            ("life" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [729423 729688])
-            ("if" code nil nil [729690 729783])
-            ("push" code nil nil [729884 729943])
-            ("linum-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [729945 730268])
-            ("global-linum-mode" variable nil nil [730270 730575])
-            ("custom-autoload" code nil nil [730577 730625])
-            ("global-linum-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [730627 730999])
-            ("if" code nil nil [731001 731096])
-            ("if" code nil nil [731237 731332])
-            ("unload-feature" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [731443 732617])
-            ("if" code nil nil [732619 732764])
-            ("locate-ls-subdir-switches" variable (:default-value (purecopy "-al")) nil [732869 733068])
-            ("custom-autoload" code nil nil [733070 733125])
-            ("locate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [733127 734191])
-            ("locate-with-filter" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [734193 734953])
-            ("if" code nil nil [734955 735052])
-            ("log-edit" function (:prototype-flag t) nil [735169 736409])
-            ("if" code nil nil [736411 736522])
-            ("log-view-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [736639 736732])
-            ("if" code nil nil [736734 736835])
-            ("lpr-windows-system" variable (:default-value (memq system-type (quote (ms-dos windows-nt)))) nil [736931 737046])
-            ("lpr-lp-system" variable (:default-value (memq system-type (quote (usg-unix-v hpux)))) nil [737048 737178])
-            ("printer-name" variable (:default-value (and (eq system-type (quote ms-dos)) "PRN")) nil [737180 737994])
-            ("custom-autoload" code nil nil [737996 738035])
-            ("lpr-switches" variable nil nil [738037 738245])
-            ("custom-autoload" code nil nil [738247 738286])
-            ("lpr-command" variable (:default-value (purecopy (cond (lpr-windows-system "") (lpr-lp-system "lp") (t "lpr")))) nil [738288 738854])
-            ("custom-autoload" code nil nil [738856 738894])
-            ("lpr-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [738896 739092])
-            ("print-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [739094 739660])
-            ("lpr-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [739662 739868])
-            ("print-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [739870 740450])
-            ("if" code nil nil [740452 740551])
-            ("ls-lisp-support-shell-wildcards" variable (:default-value t) nil [740659 740842])
-            ("custom-autoload" code nil nil [740844 740906])
-            ("if" code nil nil [740908 741007])
-            ("lunar-phases" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [741127 741400])
-            ("if" code nil nil [741402 741542])
-            ("m4-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [741670 741753])
-            ("if" code nil nil [741755 741849])
-            ("name-last-kbd-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [741954 742257])
-            ("insert-kbd-macro" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [742259 742957])
-            ("kbd-macro-query" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [742959 743618])
-            ("apply-macro-to-region-lines" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [743620 745087])
-            ("define-key" code nil nil [745089 745132])
-            ("mail-extract-address-components" function (:prototype-flag t) nil [745256 746179])
-            ("what-domain" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [746181 746301])
-            ("if" code nil nil [746303 746406])
-            ("mail-hist-define-keys" function (:prototype-flag t) nil [746530 746660])
-            ("mail-hist-enable" function (:prototype-flag t) nil [746662 746722])
-            ("mail-hist-keep-history" variable (:default-value t) nil [746724 746829])
-            ("custom-autoload" code nil nil [746831 746886])
-            ("mail-hist-put-headers-into-history" function (:prototype-flag t) nil [746888 747176])
-            ("if" code nil nil [747178 747281])
-            ("if" code nil nil [747408 747507])
-            ("if" code nil nil [747634 747739])
-            ("if" code nil nil [747877 747983])
-            ("mail-use-rfc822" variable nil nil [748110 748288])
-            ("custom-autoload" code nil nil [748290 748339])
-            ("mail-dont-reply-to-names" variable nil nil [748341 748682])
-            ("custom-autoload" code nil nil [748684 748742])
-            ("mail-file-babyl-p" function (:prototype-flag t) nil [748744 748850])
-            ("mail-quote-printable" function (:prototype-flag t) nil [748852 749206])
-            ("mail-quote-printable-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [749208 749460])
-            ("mail-unquote-printable" function (:prototype-flag t) nil [749462 749713])
-            ("mail-unquote-printable-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [749715 750361])
-            ("mail-fetch-field" function (:prototype-flag t) nil [750363 750839])
-            ("if" code nil nil [750841 750940])
-            ("mail-abbrevs-mode" variable nil nil [751067 751372])
-            ("custom-autoload" code nil nil [751374 751427])
-            ("mail-abbrevs-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [751429 751958])
-            ("mail-abbrevs-setup" function (:prototype-flag t) nil [751960 752066])
-            ("build-mail-abbrevs" function (:prototype-flag t) nil [752068 752297])
-            ("define-mail-abbrev" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [752299 752741])
-            ("if" code nil nil [752743 752886])
-            ("mail-complete-style" variable (:default-value (quote angles)) nil [753010 753324])
-            ("custom-autoload" code nil nil [753326 753378])
-            ("expand-mail-aliases" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [753380 753791])
-            ("define-mail-alias" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [753793 754252])
-            ("mail-completion-at-point-function" function (:prototype-flag t) nil [754254 754416])
-            ("mail-complete" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [754418 754690])
-            ("make-obsolete" code nil nil [754692 754765])
-            ("if" code nil nil [754767 754886])
-            ("if" code nil nil [755002 755101])
-            ("mailclient-send-it" function (:prototype-flag t) nil [755228 755442])
-            ("if" code nil nil [755444 755549])
-            ("if" code nil nil [755676 755781])
-            ("if" code nil nil [755894 755991])
-            ("makefile-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [756133 759434])
-            ("makefile-automake-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [759436 759553])
-            ("makefile-gmake-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [759555 759666])
-            ("makefile-makepp-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [759668 759781])
-            ("makefile-bsdmake-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [759783 759899])
-            ("makefile-imake-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [759901 760012])
-            ("if" code nil nil [760014 760116])
-            ("if" code nil nil [760247 760348])
-            ("make-command-summary" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [760456 760630])
-            ("if" code nil nil [760632 760736])
-            ("defalias" code nil nil [760832 760861])
-            ("man" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [760863 762191])
-            ("man-follow" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [762193 762318])
-            ("Man-bookmark-jump" function (:prototype-flag t) nil [762320 762425])
-            ("if" code nil nil [762427 762524])
-            ("if" code nil nil [762652 762751])
-            ("push" code nil nil [762868 762922])
-            ("if" code nil nil [762924 763014])
-            ("push" code nil nil [763118 763177])
-            ("master-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [763179 763734])
-            ("if" code nil nil [763736 763833])
-            ("minibuffer-depth-indicate-mode" variable nil nil [763944 764301])
-            ("custom-autoload" code nil nil [764303 764367])
-            ("minibuffer-depth-indicate-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [764369 764904])
-            ("if" code nil nil [764906 765015])
-            ("push" code nil nil [765110 765164])
-            ("if" code nil nil [765166 765256])
-            ("define-mail-user-agent" code nil nil [765374 765495])
-            ("message-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [765497 767911])
-            ("message-mail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [767913 768322])
-            ("message-news" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [768324 768445])
-            ("message-reply" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [768447 768601])
-            ("message-wide-reply" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [768603 768741])
-            ("message-followup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [768743 768925])
-            ("message-cancel-news" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [768927 769080])
-            ("message-supersede" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [769082 769305])
-            ("message-recover" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [769307 769425])
-            ("message-forward" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [769427 769641])
-            ("message-forward-make-body" function (:prototype-flag t) nil [769643 769742])
-            ("message-forward-rmail-make-body" function (:prototype-flag t) nil [769744 769832])
-            ("message-insinuate-rmail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [769834 769930])
-            ("message-resend" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [769932 770032])
-            ("message-bounce" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [770034 770258])
-            ("message-mail-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [770260 770417])
-            ("message-mail-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [770419 770574])
-            ("message-news-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [770576 770710])
-            ("message-news-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [770712 770845])
-            ("message-bold-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [770847 771087])
-            ("message-unbold-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [771089 771312])
-            ("if" code nil nil [771314 771419])
-            ("push" code nil nil [771560 771620])
-            ("metafont-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [771622 771717])
-            ("metapost-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [771719 771814])
-            ("if" code nil nil [771816 771970])
-            ("metamail-interpret-header" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [772091 772258])
-            ("metamail-interpret-body" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [772260 772654])
-            ("metamail-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [772656 773068])
-            ("metamail-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [773070 773490])
-            ("if" code nil nil [773492 773593])
-            ("if" code nil nil [773714 773860])
-            ("if" code nil nil [773981 774076])
-            ("if" code nil nil [774203 774300])
-            ("mh-smail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [774418 774558])
-            ("mh-smail-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [774560 774729])
-            ("mh-smail-batch" function (:prototype-flag t) nil [774731 775289])
-            ("define-mail-user-agent" code nil nil [775291 775420])
-            ("mh-user-agent-compose" function (:prototype-flag t) nil [775422 776222])
-            ("mh-send-letter" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [776224 777307])
-            ("mh-fully-kill-draft" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [777309 777619])
-            ("if" code nil nil [777621 777715])
-            ("if" code nil nil [777839 777935])
-            ("push" code nil nil [778043 778101])
-            ("put" code nil nil [778103 778142])
-            ("put" code nil nil [778144 778181])
-            ("put" code nil nil [778183 778226])
-            ("mh-version" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [778228 778346])
-            ("if" code nil nil [778348 778481])
-            ("mh-rmail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [778605 778820])
-            ("mh-nmail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [778822 779043])
-            ("mh-folder-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [779045 780786])
-            ("if" code nil nil [780788 780884])
-            ("if" code nil nil [781005 781100])
-            ("if" code nil nil [781238 781336])
-            ("if" code nil nil [781451 781554])
-            ("if" code nil nil [781672 781766])
-            ("if" code nil nil [781890 781986])
-            ("if" code nil nil [782107 782202])
-            ("if" code nil nil [782320 782414])
-            ("if" code nil nil [782535 782631])
-            ("if" code nil nil [782749 782843])
-            ("if" code nil nil [782967 783063])
-            ("if" code nil nil [783178 783271])
-            ("if" code nil nil [783389 783483])
-            ("if" code nil nil [783604 783699])
-            ("if" code nil nil [783823 783919])
-            ("if" code nil nil [784057 784164])
-            ("if" code nil nil [784285 784380])
-            ("if" code nil nil [784501 784596])
-            ("mhtml-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [784741 785017])
-            ("if" code nil nil [785019 785119])
-            ("midnight-mode" variable nil nil [785230 785519])
-            ("custom-autoload" code nil nil [785521 785568])
-            ("midnight-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [785570 785684])
-            ("clean-buffer-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [785686 786308])
-            ("midnight-delay-set" function (:prototype-flag t) nil [786310 786529])
-            ("if" code nil nil [786531 786653])
-            ("minibuffer-electric-default-mode" variable nil nil [786779 787144])
-            ("custom-autoload" code nil nil [787146 787217])
-            ("minibuffer-electric-default-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [787219 787894])
-            ("if" code nil nil [787896 788000])
-            ("copy-from-above-command" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [788099 788419])
-            ("zap-up-to-char" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [788421 788690])
-            ("mark-beginning-of-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [788692 788793])
-            ("mark-end-of-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [788795 788884])
-            ("upcase-char" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [788886 789001])
-            ("forward-to-word" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [789003 789155])
-            ("backward-to-word" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [789157 789305])
-            ("butterfly" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [789307 789881])
-            ("list-dynamic-libraries" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [789883 790327])
-            ("if" code nil nil [790329 790441])
-            ("add-hook" code nil nil [790552 790602])
-            ("multi-isearch-next-buffer-function" variable nil nil [790604 791643])
-            ("multi-isearch-next-buffer-current-function" variable nil nil [791645 791843])
-            ("multi-isearch-current-buffer" variable nil nil [791845 792007])
-            ("multi-isearch-buffer-list" variable nil nil [792009 792180])
-            ("multi-isearch-file-list" variable nil nil [792182 792282])
-            ("multi-isearch-setup" function (:prototype-flag t) nil [792284 792433])
-            ("multi-isearch-buffers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [792435 792779])
-            ("multi-isearch-buffers-regexp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [792781 793139])
-            ("multi-isearch-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [793141 793566])
-            ("multi-isearch-files-regexp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [793568 794007])
-            ("if" code nil nil [794009 794142])
-            ("push" code nil nil [794286 794347])
-            ("mixal-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [794349 794440])
-            ("if" code nil nil [794442 794542])
-            ("if" code nil nil [794669 794766])
-            ("if" code nil nil [794890 794986])
-            ("if" code nil nil [795110 795206])
-            ("mm-default-file-encoding" function (:prototype-flag t) nil [795330 795438])
-            ("if" code nil nil [795440 795536])
-            ("mm-extern-cache-contents" function (:prototype-flag t) nil [795660 795787])
-            ("mm-inline-external-body" function (:prototype-flag t) nil [795789 796082])
-            ("if" code nil nil [796084 796187])
-            ("mm-inline-partial" function (:prototype-flag t) nil [796314 796596])
-            ("if" code nil nil [796598 796713])
-            ("mm-url-insert-file-contents" function (:prototype-flag t) nil [796828 796987])
-            ("mm-url-insert-file-contents-external" function (:prototype-flag t) nil [796989 797121])
-            ("if" code nil nil [797123 797220])
-            ("if" code nil nil [797338 797432])
-            ("mm-uu-dissect" function (:prototype-flag t) nil [797544 797850])
-            ("mm-uu-dissect-text-parts" function (:prototype-flag t) nil [797852 798043])
-            ("if" code nil nil [798045 798137])
-            ("if" code nil nil [798255 798349])
-            ("mml-to-mime" function (:prototype-flag t) nil [798455 798550])
-            ("mml-attach-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [798552 799403])
-            ("if" code nil nil [799405 799510])
-            ("if" code nil nil [799628 799723])
-            ("if" code nil nil [799847 799950])
-            ("mml1991-encrypt" function (:prototype-flag t) nil [800068 800145])
-            ("mml1991-sign" function (:prototype-flag t) nil [800147 800206])
-            ("if" code nil nil [800208 800307])
-            ("mml2015-decrypt" function (:prototype-flag t) nil [800425 800493])
-            ("mml2015-decrypt-test" function (:prototype-flag t) nil [800495 800568])
-            ("mml2015-verify" function (:prototype-flag t) nil [800570 800637])
-            ("mml2015-verify-test" function (:prototype-flag t) nil [800639 800711])
-            ("mml2015-encrypt" function (:prototype-flag t) nil [800713 800790])
-            ("mml2015-sign" function (:prototype-flag t) nil [800792 800851])
-            ("mml2015-self-encrypt" function (:prototype-flag t) nil [800853 800915])
-            ("if" code nil nil [800917 801016])
-            ("put" code nil nil [801145 801198])
-            ("if" code nil nil [801200 801567])
-            ("defalias" code nil nil [801695 801729])
-            ("m2-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [801731 802877])
-            ("if" code nil nil [802879 802997])
-            ("morse-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [803109 803216])
-            ("unmorse-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [803218 803336])
-            ("nato-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [803338 803456])
-            ("denato-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [803458 803581])
-            ("if" code nil nil [803583 803698])
-            ("if" code nil nil [803815 803915])
-            ("mouse-drag-throw" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [804032 804972])
-            ("mouse-drag-drag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [804974 805594])
-            ("if" code nil nil [805596 805696])
-            ("mpc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [805792 805856])
-            ("if" code nil nil [805858 805972])
-            ("mpuz" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [806081 806159])
-            ("if" code nil nil [806161 806254])
-            ("msb-mode" variable nil nil [806350 806619])
-            ("custom-autoload" code nil nil [806621 806658])
-            ("msb-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [806660 807008])
-            ("if" code nil nil [807010 807122])
-            ("if" code nil nil [807240 807339])
-            ("list-character-sets" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [807489 807983])
-            ("read-charset" function (:prototype-flag t) nil [807985 808515])
-            ("list-charset-chars" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [808517 808639])
-            ("describe-character-set" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [808641 808770])
-            ("describe-coding-system" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [808772 808890])
-            ("describe-current-coding-system-briefly" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [808892 810066])
-            ("describe-current-coding-system" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [810068 810189])
-            ("list-coding-systems" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [810191 810497])
-            ("list-coding-categories" function (:prototype-flag t) nil [810499 810605])
-            ("describe-font" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [810607 810767])
-            ("describe-fontset" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [810769 810923])
-            ("list-fontsets" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [810925 811197])
-            ("list-input-methods" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [811199 811303])
-            ("mule-diag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [811305 811638])
-            ("font-show-log" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [811640 811879])
-            ("if" code nil nil [811881 812101])
-            ("store-substring" function (:prototype-flag t) nil [812251 812380])
-            ("truncate-string-to-width" function (:prototype-flag t) nil [812382 813648])
-            ("nested-alist-p" function (:arguments ("obj")) nil [813650 814105])
-            ("set-nested-alist" function (:prototype-flag t) nil [814107 814485])
-            ("lookup-nested-alist" function (:prototype-flag t) nil [814487 815130])
-            ("coding-system-post-read-conversion" function (:prototype-flag t) nil [815132 815292])
-            ("coding-system-pre-write-conversion" function (:prototype-flag t) nil [815294 815454])
-            ("coding-system-translation-table-for-decode" function (:prototype-flag t) nil [815456 815628])
-            ("coding-system-translation-table-for-encode" function (:prototype-flag t) nil [815630 815802])
-            ("with-coding-priority" function (:prototype-flag t) nil [815804 816169])
-            ("put" code nil nil [816170 816221])
-            ("detect-coding-with-priority" function (:prototype-flag t) nil [816223 816492])
-            ("make-obsolete" code nil nil [816494 816568])
-            ("detect-coding-with-language-environment" function (:prototype-flag t) nil [816570 816841])
-            ("char-displayable-p" function (:prototype-flag t) nil [816843 817195])
-            ("filepos-to-bufferpos" function (:prototype-flag t) nil [817197 817833])
-            ("bufferpos-to-filepos" function (:prototype-flag t) nil [817835 818477])
-            ("if" code nil nil [818479 818624])
-            ("if" code nil nil [818729 818841])
-            ("ifconfig" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [818963 819066])
-            ("iwconfig" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [819068 819171])
-            ("netstat" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [819173 819274])
-            ("arp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [819276 819369])
-            ("route" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [819371 819468])
-            ("traceroute" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [819470 819565])
-            ("ping" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [819567 819723])
-            ("nslookup-host" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [819725 820085])
-            ("nslookup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [820087 820160])
-            ("dns-lookup-host" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [820162 820526])
-            ("run-dig" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [820528 820873])
-            ("ftp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [820875 820962])
-            ("finger" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [820964 821139])
-            ("whois" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [821141 821475])
-            ("whois-reverse-lookup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [821477 821539])
-            ("network-connection-to-service" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [821541 821735])
-            ("network-connection" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [821737 821849])
-            ("if" code nil nil [821851 822187])
-            ("netrc-credentials" function (:prototype-flag t) nil [822297 822495])
-            ("if" code nil nil [822497 822592])
-            ("open-network-stream" function (:prototype-flag t) nil [822737 827180])
-            ("defalias" code nil nil [827182 827235])
-            ("if" code nil nil [827237 827350])
-            ("newsticker-running-p" function (:prototype-flag t) nil [827492 827729])
-            ("newsticker-start" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [827731 828094])
-            ("if" code nil nil [828096 828204])
-            ("newsticker-plainview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [828352 828447])
-            ("if" code nil nil [828449 828559])
-            ("newsticker-show-news" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [828698 828819])
-            ("if" code nil nil [828821 828928])
-            ("newsticker-ticker-running-p" function (:prototype-flag t) nil [829067 829322])
-            ("newsticker-start-ticker" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [829324 829524])
-            ("if" code nil nil [829526 829633])
-            ("newsticker-treeview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [829778 829870])
-            ("if" code nil nil [829872 829981])
-            ("if" code nil nil [830106 830218])
-            ("if" code nil nil [830336 830435])
-            ("if" code nil nil [830553 830652])
-            ("nndiary-generate-nov-databases" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [830770 830907])
-            ("if" code nil nil [830909 831008])
-            ("if" code nil nil [831120 831215])
-            ("nndoc-add-type" function (:prototype-flag t) nil [831327 831675])
-            ("if" code nil nil [831677 831772])
-            ("if" code nil nil [831890 831989])
-            ("if" code nil nil [832113 832216])
-            ("nnfolder-generate-active-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [832337 832538])
-            ("if" code nil nil [832540 832641])
-            ("if" code nil nil [832765 832868])
-            ("if" code nil nil [832989 833129])
-            ("if" code nil nil [833244 833340])
-            ("if" code nil nil [833449 833550])
-            ("if" code nil nil [833665 833762])
-            ("if" code nil nil [833886 833989])
-            ("if" code nil nil [834110 834211])
-            ("if" code nil nil [834326 834423])
-            ("if" code nil nil [834532 834625])
-            ("nnml-generate-nov-databases" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [834734 834862])
-            ("if" code nil nil [834864 834957])
-            ("if" code nil nil [835069 835164])
-            ("if" code nil nil [835273 835384])
-            ("if" code nil nil [835511 835616])
-            ("if" code nil nil [835728 835823])
-            ("if" code nil nil [835941 836061])
-            ("if" code nil nil [836170 836263])
-            ("if" code nil nil [836387 836490])
-            ("if" code nil nil [836602 836697])
-            ("if" code nil nil [836823 836934])
-            ("define-obsolete-variable-alias" code nil nil [837039 837128])
-            ("disabled-command-function" variable (:default-value (quote disabled-command-function)) nil [837130 837308])
-            ("disabled-command-function" function (:prototype-flag t) nil [837310 837395])
-            ("enable-command" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [837397 837641])
-            ("disable-command" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [837643 837874])
-            ("if" code nil nil [837876 837984])
-            ("nroff-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [838129 838450])
-            ("if" code nil nil [838452 838552])
-            ("if" code nil nil [838656 838772])
-            ("push" code nil nil [838878 838935])
-            ("if" code nil nil [838937 839030])
-            ("if" code nil nil [839151 839248])
-            ("if" code nil nil [839375 839508])
-            ("nxml-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [839632 842180])
-            ("defalias" code nil nil [842181 842212])
-            ("if" code nil nil [842214 842312])
-            ("if" code nil nil [842430 842529])
-            ("if" code nil nil [842656 842755])
-            ("if" code nil nil [842882 842981])
-            ("if" code nil nil [843102 843199])
-            ("if" code nil nil [843323 843421])
-            ("if" code nil nil [843528 843626])
-            ("if" code nil nil [843733 843838])
-            ("if" code nil nil [843945 844051])
-            ("push" code nil nil [844163 844220])
-            ("if" code nil nil [844222 844322])
-            ("if" code nil nil [844461 844567])
-            ("if" code nil nil [844680 844780])
-            ("if" code nil nil [844896 844997])
-            ("if" code nil nil [845122 845226])
-            ("if" code nil nil [845348 845458])
-            ("if" code nil nil [845571 845690])
-            ("if" code nil nil [845843 845938])
-            ("if" code nil nil [846051 846151])
-            ("if" code nil nil [846270 846366])
-            ("if" code nil nil [846479 846579])
-            ("push" code nil nil [846694 846752])
-            ("if" code nil nil [846754 846855])
-            ("if" code nil nil [846997 847104])
-            ("if" code nil nil [847220 847321])
-            ("if" code nil nil [847434 847528])
-            ("if" code nil nil [847647 847749])
-            ("if" code nil nil [847874 847978])
-            ("if" code nil nil [848103 848229])
-            ("if" code nil nil [848351 848454])
-            ("if" code nil nil [848579 848683])
-            ("if" code nil nil [848808 848912])
-            ("if" code nil nil [849022 849121])
-            ("if" code nil nil [849237 849338])
-            ("if" code nil nil [849448 849547])
-            ("if" code nil nil [849700 849801])
-            ("if" code nil nil [849920 850022])
-            ("if" code nil nil [850144 850247])
-            ("if" code nil nil [850375 850496])
-            ("if" code nil nil [850612 850713])
-            ("if" code nil nil [850863 850963])
-            ("if" code nil nil [851076 851176])
-            ("if" code nil nil [851304 851409])
-            ("if" code nil nil [851531 851634])
-            ("if" code nil nil [851756 851859])
-            ("if" code nil nil [851978 852080])
-            ("if" code nil nil [852202 852305])
-            ("if" code nil nil [852418 852518])
-            ("if" code nil nil [852634 852735])
-            ("if" code nil nil [852863 852968])
-            ("if" code nil nil [853096 853195])
-            ("if" code nil nil [853337 853444])
-            ("if" code nil nil [853566 853669])
-            ("if" code nil nil [853782 853882])
-            ("if" code nil nil [853998 854099])
-            ("if" code nil nil [854215 854316])
-            ("if" code nil nil [854438 854541])
-            ("if" code nil nil [854663 854766])
-            ("push" code nil nil [854878 854937])
-            ("if" code nil nil [854939 855039])
-            ("if" code nil nil [855158 855260])
-            ("if" code nil nil [855376 855477])
-            ("if" code nil nil [855590 855690])
-            ("if" code nil nil [855812 855915])
-            ("if" code nil nil [856031 856132])
-            ("if" code nil nil [856251 856347])
-            ("if" code nil nil [856506 856609])
-            ("if" code nil nil [856725 856826])
-            ("octave-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [856951 857397])
-            ("inferior-octave" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [857399 857966])
-            ("defalias" code nil nil [857968 858007])
-            ("if" code nil nil [858009 858125])
-            ("if" code nil nil [858258 858355])
-            ("define-obsolete-function-alias" code nil nil [858483 858549])
-            ("opascal-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [858551 859614])
-            ("if" code nil nil [859616 859715])
-            ("push" code nil nil [859818 859874])
-            ("org-babel-do-load-languages" function (:prototype-flag t) nil [859876 860008])
-            ("org-babel-load-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [860010 860370])
-            ("org-version" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [860372 860682])
-            ("turn-on-orgtbl" function (:prototype-flag t) nil [860684 860774])
-            ("org-clock-persistence-insinuate" function (:prototype-flag t) nil [860776 860880])
-            ("org-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [860882 861756])
-            ("org-cycle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [861758 864160])
-            ("org-global-cycle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [864162 864418])
-            ("put" code nil nil [864419 864487])
-            ("orgstruct-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [864489 864801])
-            ("turn-on-orgstruct" function (:prototype-flag t) nil [864803 864899])
-            ("turn-on-orgstruct++" function (:prototype-flag t) nil [864901 865001])
-            ("org-run-like-in-org-mode" function (:prototype-flag t) nil [865003 865284])
-            ("org-store-link" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [865286 866026])
-            ("org-insert-link-global" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [866028 866190])
-            ("org-open-at-point-global" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [866192 866535])
-            ("org-open-link-from-string" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [866537 866685])
-            ("org-switchb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [866687 866957])
-            ("org-cycle-agenda-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [866959 867199])
-            ("org-submit-bug-report" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [867201 867548])
-            ("org-reload" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [867550 867701])
-            ("org-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [867703 867801])
-            ("if" code nil nil [867803 867915])
-            ("org-toggle-sticky-agenda" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [868040 868148])
-            ("org-agenda" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [868150 869882])
-            ("org-batch-agenda" function (:prototype-flag t) nil [869884 870322])
-            ("org-batch-agenda-csv" function (:prototype-flag t) nil [870324 872106])
-            ("org-store-agenda-views" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [872108 872209])
-            ("org-batch-store-agenda-views" function (:prototype-flag t) nil [872211 872356])
-            ("org-agenda-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [872358 873078])
-            ("org-search-view" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [873080 875438])
-            ("org-todo-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [875440 875822])
-            ("org-tags-view" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [875824 876038])
-            ("org-agenda-list-stuck-projects" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [876040 876344])
-            ("org-diary" function (:prototype-flag t) nil [876346 877509])
-            ("org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item" function (:prototype-flag t) nil [877511 877704])
-            ("org-agenda-set-restriction-lock" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [877706 878062])
-            ("org-calendar-goto-agenda" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [878064 878267])
-            ("org-agenda-to-appt" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [878269 879517])
-            ("if" code nil nil [879519 879617])
-            ("if" code nil nil [879782 879881])
-            ("if" code nil nil [880043 880148])
-            ("if" code nil nil [880304 880405])
-            ("if" code nil nil [880530 880628])
-            ("org-capture-string" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [880756 880890])
-            ("org-capture" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [880892 882205])
-            ("org-capture-import-remember-templates" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [882207 882358])
-            ("if" code nil nil [882360 882459])
-            ("if" code nil nil [882618 882715])
-            ("org-columns-remove-overlays" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [882843 882958])
-            ("org-columns-get-format-and-top-level" function (:prototype-flag t) nil [882960 883042])
-            ("org-columns" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [883044 883560])
-            ("org-columns-compute" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [883562 883768])
-            ("org-dblock-write:columnview" function (:prototype-flag t) nil [883770 884894])
-            ("org-columns-insert-dblock" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [884896 885018])
-            ("org-agenda-columns" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [885020 885126])
-            ("if" code nil nil [885128 885227])
-            ("org-check-version" function (:prototype-flag t) nil [885352 885462])
-            ("if" code nil nil [885464 885562])
-            ("if" code nil nil [885684 885781])
-            ("if" code nil nil [885903 886006])
-            ("if" code nil nil [886174 886283])
-            ("if" code nil nil [886411 886518])
-            ("org-duration-set-regexps" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [886657 886755])
-            ("org-duration-p" function (:prototype-flag t) nil [886757 886861])
-            ("org-duration-to-minutes" function (:prototype-flag t) nil [886863 887280])
-            ("org-duration-from-minutes" function (:prototype-flag t) nil [887282 887669])
-            ("org-duration-h:mm-only-p" function (:prototype-flag t) nil [887671 888058])
-            ("if" code nil nil [888060 888169])
-            ("if" code nil nil [888334 888441])
-            ("if" code nil nil [888580 888685])
-            ("if" code nil nil [888810 888915])
-            ("if" code nil nil [889031 889130])
-            ("if" code nil nil [889252 889349])
-            ("if" code nil nil [889505 889606])
-            ("if" code nil nil [889774 889883])
-            ("if" code nil nil [890002 890103])
-            ("if" code nil nil [890225 890322])
-            ("if" code nil nil [890472 890569])
-            ("if" code nil nil [890731 890829])
-            ("if" code nil nil [890948 891049])
-            ("if" code nil nil [891194 891307])
-            ("if" code nil nil [891460 891559])
-            ("org-lint" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [891678 892063])
-            ("if" code nil nil [892065 892166])
-            ("if" code nil nil [892285 892381])
-            ("if" code nil nil [892503 892606])
-            ("org-load-noerror-mustsuffix" function (:prototype-flag t) nil [892725 892855])
-            ("if" code nil nil [892857 892953])
-            ("if" code nil nil [893069 893168])
-            ("if" code nil nil [893330 893435])
-            ("if" code nil nil [893557 893660])
-            ("if" code nil nil [893802 893925])
-            ("if" code nil nil [894081 894181])
-            ("if" code nil nil [894320 894429])
-            ("if" code nil nil [894551 894654])
-            ("if" code nil nil [894770 894865])
-            ("if" code nil nil [895024 895120])
-            ("if" code nil nil [895279 895382])
-            ("org-release" function (:prototype-flag t) nil [895510 895653])
-            ("org-git-version" function (:prototype-flag t) nil [895655 895798])
-            ("if" code nil nil [895914 896013])
-            ("put" code nil nil [896120 896171])
-            ("put" code nil nil [896172 896235])
-            ("outline-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [896237 897349])
-            ("outline-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [897351 897680])
-            ("put" code nil nil [897681 897725])
-            ("if" code nil nil [897727 897826])
-            ("if" code nil nil [897964 898061])
-            ("if" code nil nil [898217 898319])
-            ("if" code nil nil [898478 898582])
-            ("if" code nil nil [898735 898835])
-            ("if" code nil nil [899003 899113])
-            ("if" code nil nil [899269 899371])
-            ("if" code nil nil [899521 899619])
-            ("if" code nil nil [899766 899862])
-            ("if" code nil nil [900012 900110])
-            ("if" code nil nil [900260 900358])
-            ("if" code nil nil [900520 900626])
-            ("if" code nil nil [900788 900894])
-            ("push" code nil nil [901023 901083])
-            ("package-enable-at-startup" variable (:default-value t) nil [901085 901472])
-            ("custom-autoload" code nil nil [901474 901530])
-            ("package-initialize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [901532 902167])
-            ("package-import-keyring" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [902169 902268])
-            ("package-refresh-contents" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [902270 902658])
-            ("package-install" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [902660 903116])
-            ("package-install-from-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [903118 903613])
-            ("package-install-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [903615 903781])
-            ("package-install-selected-packages" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [903783 903977])
-            ("package-reinstall" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [903979 904139])
-            ("package-autoremove" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [904141 904362])
-            ("describe-package" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [904364 904481])
-            ("list-packages" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [904483 904833])
-            ("defalias" code nil nil [904835 904883])
-            ("if" code nil nil [904885 905038])
-            ("if" code nil nil [905182 905283])
-            ("if" code nil nil [905414 905613])
-            ("show-paren-mode" variable nil nil [905715 906012])
-            ("custom-autoload" code nil nil [906014 906060])
-            ("show-paren-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [906062 906519])
-            ("if" code nil nil [906521 906621])
-            ("put" code nil nil [906763 906810])
-            ("parse-time-string" function (:prototype-flag t) nil [906812 907318])
-            ("if" code nil nil [907320 907420])
-            ("pascal-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [907545 909537])
-            ("if" code nil nil [909539 909655])
-            ("password-cache" variable (:default-value t) nil [909792 909849])
-            ("custom-autoload" code nil nil [909851 909903])
-            ("password-cache-expiry" variable (:default-value 16) nil [909905 910080])
-            ("custom-autoload" code nil nil [910082 910141])
-            ("password-in-cache-p" function (:prototype-flag t) nil [910143 910244])
-            ("if" code nil nil [910246 910353])
-            ("pcase" function (:prototype-flag t) nil [910477 913112])
-            ("function-put" code nil nil [913114 913160])
-            ("pcase-exhaustive" function (:prototype-flag t) nil [913162 913352])
-            ("function-put" code nil nil [913354 913411])
-            ("pcase-lambda" function (:prototype-flag t) nil [913413 913713])
-            ("function-put" code nil nil [913715 913762])
-            ("function-put" code nil nil [913764 913821])
-            ("pcase-let*" function (:prototype-flag t) nil [913823 914050])
-            ("function-put" code nil nil [914052 914103])
-            ("pcase-let" function (:prototype-flag t) nil [914105 914493])
-            ("function-put" code nil nil [914495 914545])
-            ("pcase-dolist" function (:prototype-flag t) nil [914547 914681])
-            ("function-put" code nil nil [914683 914736])
-            ("pcase-defmacro" function (:prototype-flag t) nil [914738 914940])
-            ("function-put" code nil nil [914942 914997])
-            ("function-put" code nil nil [914999 915048])
-            ("if" code nil nil [915050 915145])
-            ("pcomplete/cvs" function (:prototype-flag t) nil [915259 915355])
-            ("if" code nil nil [915357 915460])
-            ("pcomplete/gzip" function (:prototype-flag t) nil [915574 915654])
-            ("pcomplete/bzip2" function (:prototype-flag t) nil [915656 915738])
-            ("pcomplete/make" function (:prototype-flag t) nil [915740 915824])
-            ("pcomplete/tar" function (:prototype-flag t) nil [915826 915918])
-            ("pcomplete/find" function (:prototype-flag t) nil [915920 916014])
-            ("defalias" code nil nil [916016 916058])
-            ("if" code nil nil [916060 916163])
-            ("pcomplete/kill" function (:prototype-flag t) nil [916283 916399])
-            ("pcomplete/umount" function (:prototype-flag t) nil [916401 916497])
-            ("pcomplete/mount" function (:prototype-flag t) nil [916499 916593])
-            ("if" code nil nil [916595 916724])
-            ("pcomplete/rpm" function (:prototype-flag t) nil [916838 916928])
-            ("if" code nil nil [916930 917033])
-            ("pcomplete/cd" function (:prototype-flag t) nil [917150 917227])
-            ("defalias" code nil nil [917229 917270])
-            ("pcomplete/rmdir" function (:prototype-flag t) nil [917272 917355])
-            ("pcomplete/rm" function (:prototype-flag t) nil [917357 917434])
-            ("pcomplete/xargs" function (:prototype-flag t) nil [917436 917519])
-            ("defalias" code nil nil [917521 917564])
-            ("pcomplete/which" function (:prototype-flag t) nil [917566 917649])
-            ("pcomplete/chown" function (:prototype-flag t) nil [917651 917746])
-            ("pcomplete/chgrp" function (:prototype-flag t) nil [917748 917843])
-            ("pcomplete/ssh" function (:prototype-flag t) nil [917845 917942])
-            ("pcomplete/scp" function (:prototype-flag t) nil [917944 918099])
-            ("if" code nil nil [918101 918201])
-            ("pcomplete/tlmgr" function (:prototype-flag t) nil [918309 918401])
-            ("pcomplete/ack" function (:prototype-flag t) nil [918403 918571])
-            ("defalias" code nil nil [918573 918618])
-            ("pcomplete/ag" function (:prototype-flag t) nil [918620 918706])
-            ("if" code nil nil [918708 918807])
-            ("pcomplete" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [918921 919178])
-            ("pcomplete-reverse" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [919180 919288])
-            ("pcomplete-expand-and-complete" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [919290 919447])
-            ("pcomplete-continue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [919449 919563])
-            ("pcomplete-expand" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [919565 919709])
-            ("pcomplete-help" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [919711 919829])
-            ("pcomplete-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [919831 919950])
-            ("pcomplete-comint-setup" function (:prototype-flag t) nil [919952 920223])
-            ("pcomplete-shell-setup" function (:prototype-flag t) nil [920225 920326])
-            ("if" code nil nil [920328 920431])
-            ("cvs-checkout" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [920536 920803])
-            ("cvs-quickdir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [920805 921185])
-            ("cvs-examine" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [921187 921695])
-            ("cvs-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [921697 922149])
-            ("cvs-status" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [922151 922596])
-            ("cvs-dired-action" variable (:default-value (quote cvs-quickdir)) nil [922598 922766])
-            ("custom-autoload" code nil nil [922768 922812])
-            ("cvs-dired-use-hook" variable (:default-value (quote (4))) nil [922814 923145])
-            ("custom-autoload" code nil nil [923147 923193])
-            ("cvs-dired-noselect" function (:arguments ("dir")) nil [923195 923729])
-            ("if" code nil nil [923731 923840])
-            ("cvs-global-menu" variable (:default-value (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (\` (menu-item (\, (purecopy "Directory Status")) cvs-status :help (\, (purecopy "A more verbose status of a workarea"))))) (define-key m [checkout] (\` (menu-item (\, (purecopy "Checkout Module")) cvs-checkout :help (\, (purecopy "Check out a module from the repository"))))) (define-key m [update] (\` (menu-item (\, (purecopy "Update Directory")) cvs-update :help (\, (purecopy "Fetch updates from the repository"))))) (define-key m [examine] (\` (menu-item (\, (purecopy "Examine Directory")) cvs-examine :help (\, (purecopy "Examine the current state of a workarea"))))) (fset (quote cvs-global-menu) m))) nil [923960 924637])
-            ("if" code nil nil [924639 924736])
-            ("if" code nil nil [924856 924953])
-            ("if" code nil nil [925076 925174])
-            ("if" code nil nil [925294 925391])
-            ("put" code nil nil [925532 925587])
-            ("put" code nil nil [925588 925657])
-            ("put" code nil nil [925658 925723])
-            ("put" code nil nil [925724 925779])
-            ("put" code nil nil [925780 925845])
-            ("put" code nil nil [925846 925901])
-            ("perl-flymake" function (:prototype-flag t) nil [925903 926191])
-            ("perl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [926193 928399])
-            ("if" code nil nil [928401 928538])
-            ("picture-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [928666 932424])
-            ("defalias" code nil nil [932426 932464])
-            ("if" code nil nil [932466 932565])
-            ("pixel-scroll-mode" variable nil nil [932688 932993])
-            ("custom-autoload" code nil nil [932995 933050])
-            ("pixel-scroll-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [933052 933343])
-            ("if" code nil nil [933345 933447])
-            ("plstore-open" function (:prototype-flag t) nil [933555 933661])
-            ("plstore-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [933663 933752])
-            ("if" code nil nil [933754 933853])
-            ("po-find-file-coding-system" function (:prototype-flag t) nil [933966 934186])
-            ("if" code nil nil [934188 934277])
-            ("pong" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [934386 934636])
-            ("if" code nil nil [934638 934731])
-            ("pop3-movemail" function (:prototype-flag t) nil [934838 934973])
-            ("if" code nil nil [934975 935068])
-            ("pp-to-string" function (:prototype-flag t) nil [935183 935446])
-            ("pp-buffer" function (:prototype-flag t) nil [935448 935567])
-            ("pp" function (:prototype-flag t) nil [935569 935875])
-            ("pp-eval-expression" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [935877 936058])
-            ("pp-macroexpand-expression" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [936060 936181])
-            ("pp-eval-last-sexp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [936183 936377])
-            ("pp-macroexpand-last-sexp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [936379 936587])
-            ("if" code nil nil [936589 936678])
-            ("push" code nil nil [936788 936849])
-            ("pr-interface" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [936851 937071])
-            ("pr-ps-directory-preview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [937073 937922])
-            ("pr-ps-directory-using-ghostscript" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [937924 938802])
-            ("pr-ps-directory-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [938804 939658])
-            ("pr-ps-directory-ps-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [939660 940585])
-            ("pr-ps-buffer-preview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [940587 941225])
-            ("pr-ps-buffer-using-ghostscript" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [941227 941885])
-            ("pr-ps-buffer-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [941887 942521])
-            ("pr-ps-buffer-ps-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [942523 943228])
-            ("pr-ps-region-preview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [943230 943380])
-            ("pr-ps-region-using-ghostscript" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [943382 943571])
-            ("pr-ps-region-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [943573 943726])
-            ("pr-ps-region-ps-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [943728 943910])
-            ("pr-ps-mode-preview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [943912 944064])
-            ("pr-ps-mode-using-ghostscript" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [944066 944257])
-            ("pr-ps-mode-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [944259 944414])
-            ("pr-ps-mode-ps-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [944416 944592])
-            ("pr-printify-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [944594 945157])
-            ("pr-printify-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [945159 945440])
-            ("pr-printify-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [945442 945723])
-            ("pr-txt-directory" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [945725 946093])
-            ("pr-txt-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [946095 946181])
-            ("pr-txt-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [946183 946269])
-            ("pr-txt-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [946271 946359])
-            ("pr-despool-preview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [946361 946852])
-            ("pr-despool-using-ghostscript" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [946854 947362])
-            ("pr-despool-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [947364 947860])
-            ("pr-despool-ps-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [947862 948392])
-            ("pr-ps-file-preview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [948394 948495])
-            ("pr-ps-file-up-preview" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [948497 948627])
-            ("pr-ps-file-using-ghostscript" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [948629 948756])
-            ("pr-ps-file-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [948758 948855])
-            ("pr-ps-file-ps-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [948857 948998])
-            ("pr-ps-file-up-ps-print" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [949000 949917])
-            ("pr-toggle-file-duplex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [949919 950015])
-            ("pr-toggle-file-tumble" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [950017 950275])
-            ("pr-toggle-file-landscape" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [950277 950379])
-            ("pr-toggle-ghostscript" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [950381 950477])
-            ("pr-toggle-faces" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [950479 950562])
-            ("pr-toggle-spool" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [950564 950636])
-            ("pr-toggle-duplex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [950638 950709])
-            ("pr-toggle-tumble" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [950711 950944])
-            ("pr-toggle-landscape" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [950946 951023])
-            ("pr-toggle-upside-down" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951025 951106])
-            ("pr-toggle-line" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951108 951182])
-            ("pr-toggle-zebra" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951184 951261])
-            ("pr-toggle-header" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951263 951343])
-            ("pr-toggle-header-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951345 951437])
-            ("pr-toggle-lock" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951439 951511])
-            ("pr-toggle-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951513 951622])
-            ("pr-toggle-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951624 951696])
-            ("pr-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951698 951802])
-            ("lpr-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951804 951904])
-            ("pr-help" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951906 951997])
-            ("pr-ps-name" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [951999 952092])
-            ("pr-txt-name" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [952094 952182])
-            ("pr-ps-utility" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [952184 952280])
-            ("pr-show-ps-setup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [952282 952383])
-            ("pr-show-pr-setup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [952385 952486])
-            ("pr-show-lpr-setup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [952488 952585])
-            ("pr-ps-fast-fire" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [952587 955099])
-            ("pr-txt-fast-fire" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [955101 956091])
-            ("if" code nil nil [956093 956200])
-            ("proced" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [956305 956661])
-            ("if" code nil nil [956663 956760])
-            ("profiler-start" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [956871 957145])
-            ("profiler-find-profile" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [957147 957240])
-            ("profiler-find-profile-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [957242 957348])
-            ("profiler-find-profile-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [957350 957455])
-            ("if" code nil nil [957457 957558])
-            ("project-current" function (:prototype-flag t) nil [957686 958055])
-            ("project-find-regexp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [958057 958541])
-            ("project-or-external-find-regexp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [958543 958777])
-            ("project-find-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [958779 958969])
-            ("project-or-external-find-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [958971 959191])
-            ("if" code nil nil [959193 959292])
-            ("prolog-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [959417 959824])
-            ("mercury-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [959826 959965])
-            ("run-prolog" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [959967 960161])
-            ("if" code nil nil [960163 960279])
-            ("bdf-directory-list" variable (:default-value (if (memq system-type (quote (ms-dos windows-nt))) (list (expand-file-name "fonts/bdf" installation-directory)) (quote ("/usr/local/share/emacs/fonts/bdf")))) nil [960384 960672])
-            ("custom-autoload" code nil nil [960674 960722])
-            ("if" code nil nil [960724 960818])
-            ("push" code nil nil [960945 961005])
-            ("ps-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [961007 962084])
-            ("if" code nil nil [962086 962180])
-            ("if" code nil nil [962325 962424])
-            ("push" code nil nil [962534 962595])
-            ("ps-page-dimensions-database" variable (:default-value (purecopy (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5") (quote (addresslarge 236.0 99.0 "AddressLarge")) (quote (addresssmall 236.0 68.0 "AddressSmall")) (quote (cuthanging13 90.0 222.0 "CutHanging13")) (quote (cuthanging15 90.0 114.0 "CutHanging15")) (quote (diskette 181.0 136.0 "Diskette")) (quote (eurofilefolder 139.0 112.0 "EuropeanFilefolder")) (quote (eurofoldernarrow 526.0 107.0 "EuroFolderNarrow")) (quote (eurofolderwide 526.0 136.0 "EuroFolderWide")) (quote (euronamebadge 189.0 108.0 "EuroNameBadge")) (quote (euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge")) (quote (filefolder 230.0 37.0 "FileFolder")) (quote (jewelry 76.0 136.0 "Jewelry")) (quote (mediabadge 180.0 136.0 "MediaBadge")) (quote (multipurpose 126.0 68.0 "MultiPurpose")) (quote (retaillabel 90.0 104.0 "RetailLabel")) (quote (shipping 271.0 136.0 "Shipping")) (quote (slide35mm 26.0 104.0 "Slide35mm")) (quote (spine8mm 187.0 26.0 "Spine8mm")) (quote (topcoated 425.19685 136.0 "TopCoatedPaper")) (quote (topcoatedpaper 396.0 136.0 "TopcoatedPaper150")) (quote (vhsface 205.0 127.0 "VHSFace")) (quote (vhsspine 400.0 50.0 "VHSSpine")) (quote (zipdisk 156.0 136.0 "ZipDisk"))))) nil [962597 964302])
-            ("custom-autoload" code nil nil [964304 964363])
-            ("ps-paper-type" variable (:default-value (quote letter)) nil [964365 964554])
-            ("custom-autoload" code nil nil [964556 964601])
-            ("ps-print-color-p" variable (:default-value (or (fboundp (quote x-color-values)) (fboundp (quote color-instance-rgb-components)))) nil [964603 964940])
-            ("custom-autoload" code nil nil [964942 964990])
-            ("ps-print-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [964992 965083])
-            ("ps-print-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [965085 965600])
-            ("ps-print-buffer-with-faces" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [965602 965942])
-            ("ps-print-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [965944 966139])
-            ("ps-print-region-with-faces" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [966141 966489])
-            ("ps-spool-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [966491 966788])
-            ("ps-spool-buffer-with-faces" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [966790 967196])
-            ("ps-spool-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [967198 967455])
-            ("ps-spool-region-with-faces" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [967457 967867])
-            ("ps-despool" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [967869 968378])
-            ("ps-line-lengths" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [968380 968624])
-            ("ps-nb-pages-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [968626 968814])
-            ("ps-nb-pages-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [968816 969003])
-            ("ps-setup" function (:prototype-flag t) nil [969005 969103])
-            ("ps-extend-face-list" function (:prototype-flag t) nil [969105 969602])
-            ("ps-extend-face" function (:prototype-flag t) nil [969604 970691])
-            ("if" code nil nil [970693 970788])
-            ("if" code nil nil [970896 970990])
-            ("push" code nil nil [971103 971159])
-            ("pulse-momentary-highlight-one-line" function (:prototype-flag t) nil [971161 971390])
-            ("pulse-momentary-highlight-region" function (:prototype-flag t) nil [971392 971623])
-            ("if" code nil nil [971625 971720])
-            ("if" code nil nil [971827 971920])
-            ("push" code nil nil [972044 972104])
-            ("add-to-list" code nil nil [972106 972183])
-            ("add-to-list" code nil nil [972185 972269])
-            ("run-python" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [972271 973059])
-            ("python-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [973061 973168])
-            ("if" code nil nil [973170 973312])
-            ("quoted-printable-decode-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [973415 973957])
-            ("if" code nil nil [973959 974062])
-            ("quail-title" function (:prototype-flag t) nil [974192 974289])
-            ("quail-use-package" function (:prototype-flag t) nil [974291 974586])
-            ("quail-define-package" function (:prototype-flag t) nil [974588 978765])
-            ("quail-set-keyboard-layout" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [978767 979205])
-            ("quail-show-keyboard-layout" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [979207 979442])
-            ("quail-define-rules" function (:prototype-flag t) nil [979444 980915])
-            ("quail-install-map" function (:prototype-flag t) nil [980917 981201])
-            ("quail-install-decode-map" function (:prototype-flag t) nil [981203 981529])
-            ("quail-defrule" function (:prototype-flag t) nil [981531 982799])
-            ("quail-defrule-internal" function (:prototype-flag t) nil [982801 983239])
-            ("quail-update-leim-list-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [983241 983816])
-            ("if" code nil nil [983818 983913])
-            ("if" code nil nil [984060 984184])
-            ("hangul-input-method-activate" function (:prototype-flag t) nil [984325 984581])
-            ("if" code nil nil [984583 984708])
-            ("if" code nil nil [984849 984963])
-            ("if" code nil nil [985087 985192])
-            ("if" code nil nil [985339 985452])
-            ("if" code nil nil [985576 985704])
-            ("if" code nil nil [985828 985949])
-            ("if" code nil nil [986093 986225])
-            ("if" code nil nil [986352 986469])
-            ("if" code nil nil [986613 986730])
-            ("ucs-input-activate" function (:prototype-flag t) nil [986880 987174])
-            ("if" code nil nil [987176 987285])
-            ("if" code nil nil [987412 987529])
-            ("quickurl-reread-hook-postfix" variable
-               (:constant-flag t
-                :default-value "

-;; Local Variables:

-;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))

-;; End:

-")
-                nil [987648 988169])
-            ("quickurl" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [988171 988419])
-            ("quickurl-ask" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [988421 988542])
-            ("quickurl-add-url" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [988544 988774])
-            ("quickurl-browse-url" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [988776 989044])
-            ("quickurl-browse-url-ask" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [989046 989187])
-            ("quickurl-edit-urls" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [989189 989304])
-            ("quickurl-list-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [989306 989483])
-            ("quickurl-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [989485 989610])
-            ("if" code nil nil [989612 989713])
-            ("if" code nil nil [989860 989965])
-            ("rcirc" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [990075 990287])
-            ("defalias" code nil nil [990289 990311])
-            ("rcirc-connect" function (:prototype-flag t) nil [990313 990463])
-            ("rcirc-track-minor-mode" variable nil nil [990465 990790])
-            ("custom-autoload" code nil nil [990792 990845])
-            ("rcirc-track-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [990847 991132])
-            ("if" code nil nil [991134 991278])
-            ("defalias" code nil nil [991425 991463])
-            ("re-builder" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [991465 991853])
-            ("if" code nil nil [991855 991982])
-            ("recentf-mode" variable nil nil [992090 992375])
-            ("custom-autoload" code nil nil [992377 992422])
-            ("recentf-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [992424 992846])
-            ("if" code nil nil [992848 992947])
-            ("delete-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [993046 993474])
-            ("delete-extract-rectangle" function (:prototype-flag t) nil [993476 993851])
-            ("extract-rectangle" function (:prototype-flag t) nil [993853 994054])
-            ("kill-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [994056 994704])
-            ("copy-rectangle-as-kill" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [994706 994836])
-            ("yank-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [994838 994952])
-            ("insert-rectangle" function (:prototype-flag t) nil [994954 995325])
-            ("open-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [995327 995761])
-            ("defalias" code nil nil [995763 995819])
-            ("delete-whitespace-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [995821 996312])
-            ("string-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [996314 996707])
-            ("defalias" code nil nil [996709 996756])
-            ("string-insert-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [996758 997103])
-            ("clear-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [997105 997449])
-            ("rectangle-number-lines" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [997451 997843])
-            ("rectangle-mark-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [997845 998025])
-            ("if" code nil nil [998027 998261])
-            ("if" code nil nil [998386 998480])
-            ("if" code nil nil [998602 998697])
-            ("refill-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [998822 999337])
-            ("if" code nil nil [999339 999436])
-            ("reftex-citation" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [999560 999607])
-            ("reftex-all-document-files" function (:prototype-flag t) nil [999608 999660])
-            ("reftex-isearch-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [999661 999720])
-            ("reftex-index-phrases-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [999721 999779])
-            ("turn-on-reftex" function (:prototype-flag t) nil [999781 999856])
-            ("reftex-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [999858 1001269])
-            ("reftex-reset-scanning-information" function (:prototype-flag t) nil [1001271 1001456])
-            ("if" code nil nil [1001458 1001555])
-            ("if" code nil nil [1001729 1001830])
-            ("if" code nil nil [1002007 1002109])
-            ("if" code nil nil [1002283 1002384])
-            ("if" code nil nil [1002567 1002671])
-            ("if" code nil nil [1002851 1002954])
-            ("if" code nil nil [1003134 1003237])
-            ("if" code nil nil [1003411 1003512])
-            ("if" code nil nil [1003686 1003787])
-            ("if" code nil nil [1003961 1004062])
-            ("put" code nil nil [1004209 1004301])
-            ("put" code nil nil [1004302 1004394])
-            ("put" code nil nil [1004395 1004452])
-            ("put" code nil nil [1004453 1004535])
-            ("if" code nil nil [1004537 1004639])
-            ("regexp-opt" function (:prototype-flag t) nil [1004786 1006327])
-            ("regexp-opt-depth" function (:prototype-flag t) nil [1006329 1006524])
-            ("if" code nil nil [1006526 1006631])
-            ("push" code nil nil [1006751 1006806])
-            ("if" code nil nil [1006808 1006901])
-            ("if" code nil nil [1007012 1007113])
-            ("push" code nil nil [1007243 1007302])
-            ("remember" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1007304 1007581])
-            ("remember-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1007583 1007695])
-            ("remember-clipboard" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1007697 1007863])
-            ("remember-diary-extract-entries" function (:prototype-flag t) nil [1007865 1007976])
-            ("remember-notes" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1007978 1008932])
-            ("if" code nil nil [1008934 1009035])
-            ("push" code nil nil [1009139 1009197])
-            ("repeat" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1009199 1009887])
-            ("if" code nil nil [1009889 1009986])
-            ("reporter-submit-bug-report" function (:prototype-flag t) nil [1010107 1011313])
-            ("if" code nil nil [1011315 1011416])
-            ("reposition-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1011533 1012663])
-            ("if" code nil nil [1012665 1012783])
-            ("reveal-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1012888 1013271])
-            ("global-reveal-mode" variable nil nil [1013273 1013582])
-            ("custom-autoload" code nil nil [1013584 1013634])
-            ("global-reveal-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1013636 1013990])
-            ("if" code nil nil [1013992 1014089])
-            ("if" code nil nil [1014233 1014332])
-            ("if" code nil nil [1014450 1014562])
-            ("if" code nil nil [1014680 1014779])
-            ("if" code nil nil [1014895 1014994])
-            ("if" code nil nil [1015112 1015211])
-            ("if" code nil nil [1015329 1015428])
-            ("if" code nil nil [1015543 1015640])
-            ("ring-p" function (:prototype-flag t) nil [1015761 1015847])
-            ("make-ring" function (:prototype-flag t) nil [1015849 1015945])
-            ("if" code nil nil [1015947 1016040])
-            ("rlogin" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1016153 1017878])
-            ("if" code nil nil [1017880 1017977])
-            ("rmail-file-name" variable (:default-value (purecopy "~/RMAIL")) nil [1018089 1018172])
-            ("custom-autoload" code nil nil [1018174 1018218])
-            ("put" code nil nil [1018220 1018448])
-            ("rmail-spool-directory" variable (:default-value (purecopy (cond ((file-exists-p "/var/mail") "/var/mail/") ((file-exists-p "/var/spool/mail") "/var/spool/mail/") ((memq system-type (quote (hpux usg-unix-v))) "/usr/mail/") (t "/usr/spool/mail/")))) nil [1018450 1018775])
-            ("custom-autoload" code nil nil [1018777 1018827])
-            ("custom-initialize-delay" code nil nil [1018828 1018880])
-            ("rmail-movemail-variant-p" function (:prototype-flag t) nil [1018882 1019075])
-            ("rmail-user-mail-address-regexp" variable nil nil [1019077 1019697])
-            ("custom-autoload" code nil nil [1019699 1019758])
-            ("define-obsolete-variable-alias" code nil nil [1019760 1019852])
-            ("rmail-default-dont-reply-to-names" variable nil nil [1019854 1020058])
-            ("make-obsolete-variable" code nil nil [1020060 1020152])
-            ("rmail-ignored-headers" variable (:default-value (purecopy (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:" "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^face:" "\\|^x-mailer:\\|^delivered-to:\\|^lines:" "\\|^content-transfer-encoding:\\|^x-coding-system:" "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" "\\|^precedence:\\|^mime-version:" "\\|^list-owner:\\|^list-help:\\|^list-post:\\|^list-subscribe:" "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" "\\|^content-length:\\|^nntp-posting-date:\\|^user-agent" "\\|^importance:\\|^envelope-to:\\|^delivery-date\\|^openpgp:" "\\|^mbox-line:\\|^cancel-lock:" "\\|^DomainKey-Signature:\\|^dkim-signature:" "\\|^ARC-.*:" "\\|^Received-SPF:" "\\|^Authentication-Results:" "\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:" "\\|^x-.*:"))) nil [1020154 1021633])
-            ("custom-autoload" code nil nil [1021635 1021685])
-            ("rmail-displayed-headers" variable nil nil [1021687 1021867])
-            ("custom-autoload" code nil nil [1021869 1021921])
-            ("rmail-retry-ignored-headers" variable (:default-value (purecopy "^x-authentication-warning:\\|^x-detected-operating-system:\\|^x-spam[-a-z]*:\\|content-type:\\|content-transfer-encoding:\\|mime-version:\\|message-id:")) nil [1021923 1022192])
-            ("custom-autoload" code nil nil [1022194 1022250])
-            ("rmail-highlighted-headers" variable (:default-value (purecopy "^From:\\|^Subject:")) nil [1022252 1022462])
-            ("custom-autoload" code nil nil [1022464 1022518])
-            ("rmail-primary-inbox-list" variable nil nil [1022520 1022883])
-            ("custom-autoload" code nil nil [1022885 1022938])
-            ("rmail-secondary-file-directory" variable (:default-value (purecopy "~/")) nil [1022940 1023047])
-            ("custom-autoload" code nil nil [1023049 1023108])
-            ("rmail-secondary-file-regexp" variable (:default-value (purecopy "\\.xmail$")) nil [1023110 1023223])
-            ("custom-autoload" code nil nil [1023225 1023281])
-            ("rmail-mode-hook" variable nil nil [1023283 1023364])
-            ("rmail-show-message-hook" variable nil nil [1023366 1023463])
-            ("custom-autoload" code nil nil [1023465 1023517])
-            ("rmail-file-coding-system" variable nil nil [1023519 1023626])
-            ("rmail-insert-mime-forwarded-message-function" variable nil nil [1023628 1024000])
-            ("rmail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1024002 1024583])
-            ("rmail-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1024585 1027928])
-            ("rmail-input" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1027930 1028015])
-            ("rmail-set-remote-password" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1028017 1028159])
-            ("if" code nil nil [1028161 1028264])
-            ("if" code nil nil [1028420 1028534])
-            ("if" code nil nil [1028695 1028794])
-            ("if" code nil nil [1028952 1029050])
-            ("if" code nil nil [1029205 1029302])
-            ("put" code nil nil [1029422 1029476])
-            ("rmail-output" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1029478 1030738])
-            ("rmail-output-as-seen" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1030740 1031290])
-            ("rmail-output-body-to-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1031292 1031876])
-            ("if" code nil nil [1031878 1031976])
-            ("if" code nil nil [1032137 1032236])
-            ("if" code nil nil [1032394 1032492])
-            ("read-multiple-choice" function (:prototype-flag t) nil [1032610 1033980])
-            ("rng-c-load-schema" function (:prototype-flag t) nil [1034104 1034247])
-            ("if" code nil nil [1034249 1034346])
-            ("if" code nil nil [1034461 1034558])
-            ("if" code nil nil [1034676 1034771])
-            ("if" code nil nil [1034895 1034992])
-            ("if" code nil nil [1035116 1035213])
-            ("rng-nxml-mode-init" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1035334 1035577])
-            ("if" code nil nil [1035579 1035675])
-            ("if" code nil nil [1035799 1035902])
-            ("if" code nil nil [1036026 1036123])
-            ("if" code nil nil [1036241 1036336])
-            ("if" code nil nil [1036457 1036553])
-            ("rng-validate-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1036677 1037975])
-            ("if" code nil nil [1037977 1038074])
-            ("put" code nil nil [1038192 1038277])
-            ("rng-xsd-compile" function (:prototype-flag t) nil [1038279 1039370])
-            ("if" code nil nil [1039372 1039502])
-            ("robin-define-package" function (:prototype-flag t) nil [1039632 1040075])
-            ("robin-modify-package" function (:prototype-flag t) nil [1040077 1040363])
-            ("robin-use-package" function (:prototype-flag t) nil [1040365 1040477])
-            ("if" code nil nil [1040479 1040574])
-            ("rot13" function (:prototype-flag t) nil [1040676 1040962])
-            ("rot13-string" function (:prototype-flag t) nil [1040964 1041057])
-            ("rot13-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1041059 1041184])
-            ("rot13-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1041186 1041558])
-            ("toggle-rot13-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1041560 1041671])
-            ("if" code nil nil [1041673 1041768])
-            ("add-to-list" code nil nil [1041884 1041953])
-            ("rst-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1041955 1042217])
-            ("rst-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1042219 1042636])
-            ("if" code nil nil [1042638 1042729])
-            ("if" code nil nil [1042831 1042926])
-            ("push" code nil nil [1043067 1043127])
-            ("ruby-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1043129 1043213])
-            ("add-to-list" code nil nil [1043215 1043473])
-            ("dolist" code nil nil [1043475 1043610])
-            ("if" code nil nil [1043612 1043710])
-            ("push" code nil nil [1043826 1043887])
-            ("ruler-mode" variable nil nil [1043889 1044004])
-            ("ruler-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1044006 1044281])
-            ("if" code nil nil [1044283 1044383])
-            ("rx-to-string" function (:prototype-flag t) nil [1044498 1044728])
-            ("rx" function (:prototype-flag t) nil [1044730 1053566])
-            ("if" code nil nil [1053568 1053657])
-            ("if" code nil nil [1053764 1053857])
-            ("if" code nil nil [1053979 1054086])
-            ("if" code nil nil [1054214 1054325])
-            ("push" code nil nil [1054446 1054501])
-            ("if" code nil nil [1054503 1054606])
-            ("if" code nil nil [1054751 1054860])
-            ("push" code nil nil [1054970 1055028])
-            ("savehist-mode" variable nil nil [1055030 1055319])
-            ("custom-autoload" code nil nil [1055321 1055368])
-            ("savehist-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1055370 1056051])
-            ("if" code nil nil [1056053 1056154])
-            ("save-place-mode" variable nil nil [1056268 1056565])
-            ("custom-autoload" code nil nil [1056567 1056617])
-            ("save-place-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1056619 1056861])
-            ("save-place-local-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1056863 1057355])
-            ("if" code nil nil [1057357 1057494])
-            ("if" code nil nil [1057605 1057726])
-            ("scheme-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1057851 1058682])
-            ("dsssl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1058684 1059130])
-            ("if" code nil nil [1059132 1059238])
-            ("gnus-score-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1059365 1059524])
-            ("if" code nil nil [1059526 1059645])
-            ("scroll-all-mode" variable nil nil [1059762 1060059])
-            ("custom-autoload" code nil nil [1060061 1060112])
-            ("scroll-all-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1060114 1060534])
-            ("if" code nil nil [1060536 1060641])
-            ("if" code nil nil [1060758 1060968])
-            ("scroll-lock-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1061088 1061584])
-            ("if" code nil nil [1061586 1061693])
-            ("when" code nil nil [1061808 1061885])
-            ("if" code nil nil [1061887 1061986])
-            ("push" code nil nil [1062108 1062167])
-            ("semantic-default-submodes" variable (:default-value (quote (global-semantic-idle-scheduler-mode global-semanticdb-minor-mode))) nil [1062169 1063718])
-            ("custom-autoload" code nil nil [1063720 1063777])
-            ("semantic-mode" variable nil nil [1063779 1064068])
-            ("custom-autoload" code nil nil [1064070 1064117])
-            ("semantic-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1064119 1064680])
-            ("if" code nil nil [1064682 1064794])
-            ("if" code nil nil [1064978 1065088])
-            ("if" code nil nil [1065299 1065425])
-            ("if" code nil nil [1065598 1065720])
-            ("if" code nil nil [1065887 1066008])
-            ("if" code nil nil [1066207 1066321])
-            ("if" code nil nil [1066502 1066610])
-            ("if" code nil nil [1066797 1066926])
-            ("if" code nil nil [1067096 1067210])
-            ("if" code nil nil [1067400 1067541])
-            ("if" code nil nil [1067734 1067846])
-            ("bovine-grammar-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1068022 1068136])
-            ("if" code nil nil [1068138 1068252])
-            ("if" code nil nil [1068448 1068577])
-            ("if" code nil nil [1068770 1068882])
-            ("if" code nil nil [1069031 1069144])
-            ("if" code nil nil [1069331 1069441])
-            ("if" code nil nil [1069616 1069722])
-            ("if" code nil nil [1069891 1069997])
-            ("if" code nil nil [1070155 1070267])
-            ("if" code nil nil [1070431 1070556])
-            ("if" code nil nil [1070705 1070832])
-            ("if" code nil nil [1071016 1071127])
-            ("if" code nil nil [1071311 1071422])
-            ("if" code nil nil [1071612 1071725])
-            ("if" code nil nil [1071898 1072033])
-            ("if" code nil nil [1072217 1072328])
-            ("if" code nil nil [1072480 1072594])
-            ("if" code nil nil [1072793 1072909])
-            ("if" code nil nil [1073087 1073200])
-            ("if" code nil nil [1073358 1073468])
-            ("if" code nil nil [1073679 1073808])
-            ("if" code nil nil [1074010 1074160])
-            ("if" code nil nil [1074332 1074500])
-            ("if" code nil nil [1074672 1074780])
-            ("if" code nil nil [1074947 1075064])
-            ("if" code nil nil [1075239 1075345])
-            ("if" code nil nil [1075520 1075626])
-            ("if" code nil nil [1075807 1075915])
-            ("if" code nil nil [1076055 1076158])
-            ("if" code nil nil [1076313 1076422])
-            ("if" code nil nil [1076586 1076710])
-            ("if" code nil nil [1076885 1077010])
-            ("if" code nil nil [1077179 1077286])
-            ("if" code nil nil [1077464 1077575])
-            ("if" code nil nil [1077750 1077923])
-            ("if" code nil nil [1078101 1078208])
-            ("if" code nil nil [1078354 1078460])
-            ("if" code nil nil [1078632 1078750])
-            ("if" code nil nil [1078934 1079065])
-            ("if" code nil nil [1079264 1079414])
-            ("if" code nil nil [1079554 1079661])
-            ("if" code nil nil [1079839 1079946])
-            ("if" code nil nil [1080130 1080262])
-            ("if" code nil nil [1080437 1080543])
-            ("if" code nil nil [1080724 1080839])
-            ("if" code nil nil [1081041 1081178])
-            ("if" code nil nil [1081351 1081473])
-            ("if" code nil nil [1081675 1081812])
-            ("if" code nil nil [1082008 1082128])
-            ("if" code nil nil [1082333 1082472])
-            ("if" code nil nil [1082668 1082788])
-            ("if" code nil nil [1082960 1083065])
-            ("if" code nil nil [1083252 1083376])
-            ("if" code nil nil [1083557 1083665])
-            ("if" code nil nil [1083855 1083976])
-            ("if" code nil nil [1084151 1084257])
-            ("if" code nil nil [1084403 1084509])
-            ("if" code nil nil [1084702 1084814])
-            ("if" code nil nil [1084966 1085094])
-            ("if" code nil nil [1085261 1085372])
-            ("wisent-grammar-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1085548 1085662])
-            ("if" code nil nil [1085664 1085778])
-            ("if" code nil nil [1085989 1086133])
-            ("if" code nil nil [1086347 1086510])
-            ("if" code nil nil [1086712 1086854])
-            ("if" code nil nil [1087027 1087169])
-            ("mail-from-style" variable (:default-value (quote default)) nil [1087290 1087696])
-            ("custom-autoload" code nil nil [1087698 1087745])
-            ("mail-specify-envelope-from" variable nil nil [1087747 1088203])
-            ("custom-autoload" code nil nil [1088205 1088263])
-            ("mail-self-blind" variable nil nil [1088265 1088466])
-            ("custom-autoload" code nil nil [1088468 1088515])
-            ("mail-interactive" variable (:default-value t) nil [1088517 1088674])
-            ("custom-autoload" code nil nil [1088676 1088724])
-            ("send-mail-function" variable (:default-value (if (and (boundp (quote smtpmail-smtp-server)) smtpmail-smtp-server) (quote smtpmail-send-it) (quote sendmail-query-once))) nil [1088726 1089186])
-            ("custom-autoload" code nil nil [1089188 1089238])
-            ("mail-header-separator" variable (:default-value (purecopy "--text follows this line--")) nil [1089240 1089382])
-            ("custom-autoload" code nil nil [1089384 1089437])
-            ("mail-archive-file-name" variable nil nil [1089439 1089632])
-            ("custom-autoload" code nil nil [1089634 1089688])
-            ("mail-default-reply-to" variable nil nil [1089690 1089889])
-            ("custom-autoload" code nil nil [1089891 1089944])
-            ("mail-personal-alias-file" variable (:default-value (purecopy "~/.mailrc")) nil [1089946 1090208])
-            ("custom-autoload" code nil nil [1090210 1090266])
-            ("mail-setup-hook" variable nil nil [1090268 1090366])
-            ("custom-autoload" code nil nil [1090368 1090415])
-            ("mail-aliases" variable (:default-value t) nil [1090417 1090723])
-            ("mail-yank-prefix" variable (:default-value "> ") nil [1090725 1090894])
-            ("custom-autoload" code nil nil [1090896 1090944])
-            ("mail-indentation-spaces" variable (:default-value 3) nil [1090946 1091105])
-            ("custom-autoload" code nil nil [1091107 1091162])
-            ("mail-citation-hook" variable nil nil [1091164 1091660])
-            ("custom-autoload" code nil nil [1091662 1091712])
-            ("mail-citation-prefix-regexp" variable (:default-value (purecopy "\\([ 	]*\\(\\w\\|[_.]\\)+>+\\|[ 	]*[]>|]\\)+")) nil [1091714 1092087])
-            ("custom-autoload" code nil nil [1092089 1092148])
-            ("mail-signature" variable (:default-value t) nil [1092150 1092598])
-            ("custom-autoload" code nil nil [1092600 1092646])
-            ("mail-signature-file" variable (:default-value (purecopy "~/.signature")) nil [1092648 1092763])
-            ("custom-autoload" code nil nil [1092765 1092816])
-            ("mail-default-directory" variable (:default-value (purecopy "~/")) nil [1092818 1093086])
-            ("custom-autoload" code nil nil [1093088 1093142])
-            ("mail-default-headers" variable nil nil [1093144 1093382])
-            ("custom-autoload" code nil nil [1093384 1093436])
-            ("sendmail-query-once" function (:prototype-flag t) nil [1093438 1093618])
-            ("define-mail-user-agent" code nil nil [1093620 1093714])
-            ("sendmail-user-agent-compose" function (:prototype-flag t) nil [1093716 1093899])
-            ("mail-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1093901 1095029])
-            ("mail-mailing-lists" variable nil nil [1095031 1095243])
-            ("custom-autoload" code nil nil [1095245 1095295])
-            ("sendmail-coding-system" variable nil nil [1095297 1095616])
-            ("default-sendmail-coding-system" variable (:default-value (quote iso-latin-1)) nil [1095618 1096094])
-            ("mail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1096096 1098284])
-            ("mail-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1098286 1098475])
-            ("mail-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1098477 1098664])
-            ("if" code nil nil [1098666 1098775])
-            ("push" code nil nil [1098892 1098947])
-            ("if" code nil nil [1098949 1099040])
-            ("put" code nil nil [1099145 1099187])
-            ("put" code nil nil [1099189 1099231])
-            ("put" code nil nil [1099233 1099279])
-            ("server-name" variable (:default-value "server") nil [1099281 1099478])
-            ("custom-autoload" code nil nil [1099480 1099521])
-            ("server-start" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1099523 1100270])
-            ("server-force-delete" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1100272 1100505])
-            ("server-mode" variable nil nil [1100507 1100788])
-            ("custom-autoload" code nil nil [1100790 1100833])
-            ("server-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1100835 1101222])
-            ("server-save-buffers-kill-terminal" function (:prototype-flag t) nil [1101224 1101539])
-            ("if" code nil nil [1101541 1101638])
-            ("ses-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1101734 1103183])
-            ("if" code nil nil [1103185 1103295])
-            ("sgml-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1103437 1104158])
-            ("html-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1104160 1105969])
-            ("if" code nil nil [1105971 1106077])
-            ("push" code nil nil [1106218 1106280])
-            ("put" code nil nil [1106281 1106326])
-            ("sh-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1106328 1108908])
-            ("defalias" code nil nil [1108910 1108948])
-            ("if" code nil nil [1108950 1109046])
-            ("list-load-path-shadows" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1109173 1111114])
-            ("if" code nil nil [1111116 1111224])
-            ("shadow-define-cluster" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1111341 1111781])
-            ("shadow-define-literal-group" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1111783 1112124])
-            ("shadow-define-regexp-group" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1112126 1112582])
-            ("shadow-initialize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1112584 1112666])
-            ("if" code nil nil [1112668 1112768])
-            ("shell-dumb-shell-regexp" variable (:default-value (purecopy "cmd\\(proxy\\)?\\.exe")) nil [1112870 1113221])
-            ("custom-autoload" code nil nil [1113223 1113275])
-            ("shell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1113277 1114937])
-            ("if" code nil nil [1114939 1115053])
-            ("shr-render-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1115157 1115300])
-            ("shr-insert-document" function (:prototype-flag t) nil [1115302 1115500])
-            ("if" code nil nil [1115502 1115593])
-            ("if" code nil nil [1115715 1115818])
-            ("sieve-manage" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1115928 1116000])
-            ("sieve-upload" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1116002 1116067])
-            ("sieve-upload-and-bury" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1116069 1116143])
-            ("sieve-upload-and-kill" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1116145 1116219])
-            ("if" code nil nil [1116221 1116316])
-            ("if" code nil nil [1116455 1116557])
-            ("sieve-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1116682 1117025])
-            ("if" code nil nil [1117027 1117127])
-            ("simula-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1117252 1119397])
-            ("if" code nil nil [1119399 1119496])
-            ("skeleton-filter-function" variable (:default-value (quote identity)) nil [1119607 1119724])
-            ("define-skeleton" function (:prototype-flag t) nil [1119726 1119973])
-            ("function-put" code nil nil [1119975 1120025])
-            ("skeleton-proxy-new" function (:prototype-flag t) nil [1120027 1120609])
-            ("skeleton-insert" function (:prototype-flag t) nil [1120611 1124153])
-            ("skeleton-pair-insert-maybe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1124155 1124881])
-            ("if" code nil nil [1124883 1124984])
-            ("smerge-refine-regions" function (:prototype-flag t) nil [1125110 1126043])
-            ("smerge-ediff" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1126045 1126263])
-            ("smerge-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1126265 1126569])
-            ("smerge-start-session" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1126571 1126752])
-            ("if" code nil nil [1126754 1126856])
-            ("if" code nil nil [1126977 1127070])
-            ("smiley-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1127185 1127355])
-            ("smiley-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1127357 1127558])
-            ("if" code nil nil [1127560 1127682])
-            ("if" code nil nil [1127794 1127888])
-            ("smtpmail-send-it" function (:prototype-flag t) nil [1128009 1128068])
-            ("smtpmail-send-queued-mail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1128070 1128207])
-            ("if" code nil nil [1128209 1128310])
-            ("snake" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1128422 1128986])
-            ("if" code nil nil [1128988 1129083])
-            ("snmp-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1129205 1129582])
-            ("snmpv2-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1129584 1129967])
-            ("if" code nil nil [1129969 1130066])
-            ("push" code nil nil [1130193 1130257])
-            ("if" code nil nil [1130259 1130359])
-            ("if" code nil nil [1130498 1130599])
-            ("if" code nil nil [1130709 1130804])
-            ("sunrise-sunset" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1130924 1131318])
-            ("if" code nil nil [1131320 1131450])
-            ("solitaire" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1131574 1133238])
-            ("if" code nil nil [1133240 1133343])
-            ("put" code nil nil [1133441 1133493])
-            ("sort-subr" function (:prototype-flag t) nil [1133495 1135646])
-            ("sort-lines" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1135648 1135988])
-            ("sort-paragraphs" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1135990 1136340])
-            ("sort-pages" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1136342 1136682])
-            ("put" code nil nil [1136683 1136738])
-            ("sort-numeric-fields" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1136740 1137317])
-            ("sort-fields" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1137319 1137777])
-            ("sort-regexp-fields" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1137779 1138890])
-            ("sort-columns" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1138892 1139685])
-            ("reverse-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1139687 1139850])
-            ("delete-duplicate-lines" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1139852 1140797])
-            ("if" code nil nil [1140799 1140892])
-            ("if" code nil nil [1141000 1141098])
-            ("spam-initialize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1141207 1141567])
-            ("if" code nil nil [1141569 1141662])
-            ("spam-report-process-queue" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1141800 1142129])
-            ("spam-report-url-ping-mm-url" function (:prototype-flag t) nil [1142131 1142354])
-            ("spam-report-url-to-file" function (:prototype-flag t) nil [1142356 1142561])
-            ("spam-report-agentize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1142563 1142814])
-            ("spam-report-deagentize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1142816 1143012])
-            ("if" code nil nil [1143014 1143121])
-            ("if" code nil nil [1143245 1143380])
-            ("if" code nil nil [1143504 1143602])
-            ("defalias" code nil nil [1143713 1143754])
-            ("speedbar-frame-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1143756 1144215])
-            ("speedbar-get-focus" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1144217 1144463])
-            ("if" code nil nil [1144465 1144566])
-            ("spook" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1144678 1144776])
-            ("snarf-spooks" function (:prototype-flag t) nil [1144778 1144893])
-            ("if" code nil nil [1144895 1144996])
-            ("push" code nil nil [1145111 1145165])
-            ("sql-add-product-keywords" function (:prototype-flag t) nil [1145167 1145905])
-            ("sql-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1145907 1146999])
-            ("sql-connect" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1147001 1147327])
-            ("sql-product-interactive" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1147329 1147884])
-            ("sql-oracle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1147886 1149111])
-            ("sql-sybase" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1149113 1150349])
-            ("sql-informix" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1150351 1151469])
-            ("sql-sqlite" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1151471 1152725])
-            ("sql-mysql" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1152727 1154003])
-            ("sql-solid" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1154005 1155138])
-            ("sql-ingres" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1155140 1156243])
-            ("sql-ms" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1156245 1157464])
-            ("sql-postgres" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1157466 1158961])
-            ("sql-interbase" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1158963 1160116])
-            ("sql-db2" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1160118 1161445])
-            ("sql-linter" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1161447 1162658])
-            ("sql-vertica" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1162660 1162756])
-            ("if" code nil nil [1162758 1162849])
-            ("push" code nil nil [1162968 1163026])
-            ("if" code nil nil [1163028 1163134])
-            ("if" code nil nil [1163277 1163381])
-            ("if" code nil nil [1163562 1163669])
-            ("if" code nil nil [1163838 1163941])
-            ("if" code nil nil [1164084 1164188])
-            ("if" code nil nil [1164349 1164459])
-            ("if" code nil nil [1164643 1164760])
-            ("if" code nil nil [1164926 1165054])
-            ("if" code nil nil [1165247 1165358])
-            ("if" code nil nil [1165510 1165624])
-            ("if" code nil nil [1165773 1165879])
-            ("if" code nil nil [1166031 1166152])
-            ("if" code nil nil [1166295 1166399])
-            ("if" code nil nil [1166577 1166683])
-            ("if" code nil nil [1166861 1166967])
-            ("if" code nil nil [1167136 1167239])
-            ("if" code nil nil [1167411 1167515])
-            ("if" code nil nil [1167670 1167787])
-            ("if" code nil nil [1167956 1168064])
-            ("srecode-template-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1168219 1168327])
-            ("defalias" code nil nil [1168329 1168372])
-            ("if" code nil nil [1168374 1168494])
-            ("if" code nil nil [1168640 1168764])
-            ("if" code nil nil [1168948 1169071])
-            ("if" code nil nil [1169243 1169382])
-            ("starttls-open-stream" function (:prototype-flag t) nil [1169501 1170352])
-            ("if" code nil nil [1170354 1170455])
-            ("strokes-global-set-stroke" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1170563 1170997])
-            ("strokes-read-stroke" function (:prototype-flag t) nil [1170999 1171435])
-            ("strokes-read-complex-stroke" function (:prototype-flag t) nil [1171437 1171916])
-            ("strokes-do-stroke" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1171918 1172082])
-            ("strokes-do-complex-stroke" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1172084 1172257])
-            ("strokes-describe-stroke" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1172259 1172401])
-            ("strokes-help" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1172403 1172500])
-            ("strokes-load-user-strokes" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1172502 1172627])
-            ("strokes-list-strokes" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1172629 1172975])
-            ("strokes-mode" variable nil nil [1172977 1173262])
-            ("custom-autoload" code nil nil [1173264 1173309])
-            ("strokes-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1173311 1174090])
-            ("strokes-decode-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1174092 1174361])
-            ("strokes-compose-complex-stroke" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1174363 1174500])
-            ("if" code nil nil [1174502 1174601])
-            ("studlify-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1174716 1174805])
-            ("studlify-word" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1174807 1174933])
-            ("studlify-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1174935 1175022])
-            ("if" code nil nil [1175149 1175314])
-            ("define-obsolete-function-alias" code nil nil [1175442 1175519])
-            ("subword-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1175521 1176618])
-            ("global-subword-mode" variable nil nil [1176620 1176933])
-            ("custom-autoload" code nil nil [1176935 1176987])
-            ("global-subword-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1176989 1177396])
-            ("superword-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1177398 1177924])
-            ("global-superword-mode" variable nil nil [1177926 1178247])
-            ("custom-autoload" code nil nil [1178249 1178303])
-            ("global-superword-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1178305 1178726])
-            ("if" code nil nil [1178728 1178848])
-            ("sc-cite-original" function (:prototype-flag t) nil [1178972 1179973])
-            ("if" code nil nil [1179975 1180071])
-            ("if" code nil nil [1180167 1180258])
-            ("define-obsolete-function-alias" code nil nil [1180366 1180435])
-            ("gpm-mouse-mode" variable (:default-value t) nil [1180437 1180728])
-            ("custom-autoload" code nil nil [1180730 1180777])
-            ("gpm-mouse-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1180779 1181431])
-            ("if" code nil nil [1181433 1181534])
-            ("untabify" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1181639 1182034])
-            ("tabify" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1182036 1182530])
-            ("if" code nil nil [1182532 1182635])
-            ("table-insert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1182757 1187857])
-            ("table-insert-row" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1187859 1188186])
-            ("table-insert-column" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1188188 1188540])
-            ("table-insert-row-column" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1188542 1188693])
-            ("table-recognize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1188695 1189064])
-            ("table-unrecognize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1189066 1189121])
-            ("table-recognize-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1189123 1189461])
-            ("table-unrecognize-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1189463 1189533])
-            ("table-recognize-table" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1189535 1189799])
-            ("table-unrecognize-table" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1189801 1189862])
-            ("table-recognize-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1189864 1190329])
-            ("table-unrecognize-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1190331 1190391])
-            ("table-heighten-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1190393 1190831])
-            ("table-shorten-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1190833 1191325])
-            ("table-widen-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1191327 1191574])
-            ("table-narrow-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1191576 1191800])
-            ("table-forward-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1191802 1193676])
-            ("table-backward-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1193678 1193894])
-            ("table-span-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1193896 1194067])
-            ("table-split-cell-vertically" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1194069 1194230])
-            ("table-split-cell-horizontally" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1194232 1194413])
-            ("table-split-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1194415 1194574])
-            ("table-justify" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1194576 1194833])
-            ("table-justify-cell" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1194835 1195202])
-            ("table-justify-row" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1195204 1195407])
-            ("table-justify-column" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1195409 1195618])
-            ("table-fixed-width-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1195620 1196149])
-            ("table-query-dimension" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1196151 1196907])
-            ("table-generate-source" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1196909 1198076])
-            ("table-insert-sequence" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1198078 1199713])
-            ("table-delete-row" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1199715 1199966])
-            ("table-delete-column" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1199968 1200239])
-            ("table-capture" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1200241 1205382])
-            ("table-release" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1205384 1205692])
-            ("if" code nil nil [1205694 1205800])
-            ("push" code nil nil [1205958 1206023])
-            ("talk-connect" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1206122 1206231])
-            ("talk" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1206233 1206346])
-            ("if" code nil nil [1206348 1206441])
-            ("tar-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1206552 1207331])
-            ("if" code nil nil [1207333 1207429])
-            ("tcl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1207545 1208609])
-            ("inferior-tcl" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1208611 1208812])
-            ("tcl-help-on-word" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1208814 1209006])
-            ("if" code nil nil [1209008 1209201])
-            ("if" code nil nil [1209348 1209454])
-            ("if" code nil nil [1209613 1209728])
-            ("telnet" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1209841 1210444])
-            ("rsh" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1210446 1210678])
-            ("if" code nil nil [1210680 1210802])
-            ("if" code nil nil [1210904 1210999])
-            ("make-term" function (:prototype-flag t) nil [1211098 1211517])
-            ("term" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1211519 1211766])
-            ("ansi-term" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1211768 1212014])
-            ("serial-term" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1212016 1212590])
-            ("if" code nil nil [1212592 1212747])
-            ("testcover-start" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1212891 1213248])
-            ("testcover-this-defun" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1213250 1213351])
-            ("if" code nil nil [1213353 1213456])
-            ("push" code nil nil [1213570 1213627])
-            ("tetris" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1213629 1214366])
-            ("if" code nil nil [1214368 1214465])
-            ("tex-shell-file-name" variable nil nil [1214596 1214704])
-            ("custom-autoload" code nil nil [1214706 1214757])
-            ("tex-directory" variable (:default-value (purecopy ".")) nil [1214759 1215046])
-            ("custom-autoload" code nil nil [1215048 1215093])
-            ("tex-first-line-header-regexp" variable nil nil [1215095 1215372])
-            ("custom-autoload" code nil nil [1215374 1215434])
-            ("tex-main-file" variable nil nil [1215436 1215627])
-            ("custom-autoload" code nil nil [1215629 1215674])
-            ("tex-offer-save" variable (:default-value t) nil [1215676 1215779])
-            ("custom-autoload" code nil nil [1215781 1215827])
-            ("tex-run-command" variable (:default-value (purecopy "tex")) nil [1215829 1215990])
-            ("custom-autoload" code nil nil [1215992 1216039])
-            ("latex-run-command" variable (:default-value (purecopy "latex")) nil [1216041 1216210])
-            ("custom-autoload" code nil nil [1216212 1216261])
-            ("slitex-run-command" variable (:default-value (purecopy "slitex")) nil [1216263 1216436])
-            ("custom-autoload" code nil nil [1216438 1216488])
-            ("tex-start-options" variable (:default-value (purecopy "")) nil [1216490 1216786])
-            ("custom-autoload" code nil nil [1216788 1216837])
-            ("tex-start-commands" variable (:default-value (purecopy "\\nonstopmode\\input")) nil [1216839 1217094])
-            ("custom-autoload" code nil nil [1217096 1217146])
-            ("latex-block-names" variable nil nil [1217148 1217284])
-            ("custom-autoload" code nil nil [1217286 1217335])
-            ("tex-bibtex-command" variable (:default-value (purecopy "bibtex")) nil [1217337 1217596])
-            ("custom-autoload" code nil nil [1217598 1217648])
-            ("tex-dvi-print-command" variable (:default-value (purecopy "lpr -d")) nil [1217650 1217900])
-            ("custom-autoload" code nil nil [1217902 1217955])
-            ("tex-alt-dvi-print-command" variable (:default-value (purecopy "lpr -d")) nil [1217957 1218569])
-            ("custom-autoload" code nil nil [1218571 1218628])
-            ("tex-dvi-view-command" variable (:default-value (\` (cond ((eq window-system (quote x)) (\, (purecopy "xdvi"))) ((eq window-system (quote w32)) (\, (purecopy "yap"))) (t (\, (purecopy "dvi2tty * | cat -s")))))) nil [1218630 1219120])
-            ("custom-autoload" code nil nil [1219122 1219174])
-            ("tex-show-queue-command" variable (:default-value (purecopy "lpq")) nil [1219176 1219352])
-            ("custom-autoload" code nil nil [1219354 1219408])
-            ("tex-default-mode" variable (:default-value (quote latex-mode)) nil [1219410 1219708])
-            ("custom-autoload" code nil nil [1219710 1219758])
-            ("tex-open-quote" variable (:default-value (purecopy "``")) nil [1219760 1219871])
-            ("custom-autoload" code nil nil [1219873 1219919])
-            ("tex-close-quote" variable (:default-value (purecopy "''")) nil [1219921 1220034])
-            ("custom-autoload" code nil nil [1220036 1220083])
-            ("tex-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1220085 1220517])
-            ("defalias" code nil nil [1220519 1220549])
-            ("defalias" code nil nil [1220551 1220593])
-            ("defalias" code nil nil [1220595 1220629])
-            ("plain-tex-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1220631 1222376])
-            ("latex-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1222378 1224082])
-            ("slitex-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1224084 1225857])
-            ("tex-start-shell" function (:prototype-flag t) nil [1225859 1225917])
-            ("doctex-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1225919 1226003])
-            ("if" code nil nil [1226005 1226151])
-            ("texinfo-format-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1226282 1226708])
-            ("texinfo-format-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1226710 1227051])
-            ("texi2info" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1227053 1227680])
-            ("if" code nil nil [1227682 1227803])
-            ("texinfo-open-quote" variable (:default-value (purecopy "``")) nil [1227931 1228050])
-            ("custom-autoload" code nil nil [1228052 1228101])
-            ("texinfo-close-quote" variable (:default-value (purecopy "''")) nil [1228103 1228224])
-            ("custom-autoload" code nil nil [1228226 1228276])
-            ("texinfo-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1228278 1231101])
-            ("if" code nil nil [1231103 1231202])
-            ("if" code nil nil [1231347 1231449])
-            ("thai-compose-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1231589 1231802])
-            ("thai-compose-string" function (:prototype-flag t) nil [1231804 1231940])
-            ("thai-compose-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1231942 1232049])
-            ("thai-composition-function" function (:prototype-flag t) nil [1232051 1232128])
-            ("if" code nil nil [1232130 1232313])
-            ("if" code nil nil [1232453 1232551])
-            ("forward-thing" function (:prototype-flag t) nil [1232665 1232989])
-            ("bounds-of-thing-at-point" function (:prototype-flag t) nil [1232991 1233504])
-            ("thing-at-point" function (:prototype-flag t) nil [1233506 1234023])
-            ("sexp-at-point" function (:prototype-flag t) nil [1234025 1234132])
-            ("symbol-at-point" function (:prototype-flag t) nil [1234134 1234245])
-            ("number-at-point" function (:prototype-flag t) nil [1234247 1234358])
-            ("list-at-point" function (:prototype-flag t) nil [1234360 1234472])
-            ("if" code nil nil [1234474 1234684])
-            ("thumbs-find-thumb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1234789 1234879])
-            ("thumbs-show-from-dir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1234881 1235121])
-            ("thumbs-dired-show-marked" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1235123 1235235])
-            ("thumbs-dired-show" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1235237 1235360])
-            ("defalias" code nil nil [1235362 1235402])
-            ("thumbs-dired-setroot" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1235404 1235520])
-            ("if" code nil nil [1235522 1235619])
-            ("push" code nil nil [1235742 1235798])
-            ("if" code nil nil [1235800 1235895])
-            ("tibetan-char-p" function (:prototype-flag t) nil [1236038 1236196])
-            ("tibetan-tibetan-to-transcription" function (:prototype-flag t) nil [1236198 1236351])
-            ("tibetan-transcription-to-tibetan" function (:prototype-flag t) nil [1236353 1236547])
-            ("tibetan-compose-string" function (:prototype-flag t) nil [1236549 1236647])
-            ("tibetan-compose-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1236649 1236766])
-            ("tibetan-decompose-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1236768 1237027])
-            ("tibetan-decompose-string" function (:prototype-flag t) nil [1237029 1237266])
-            ("tibetan-decompose-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1237268 1237472])
-            ("tibetan-compose-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1237474 1237650])
-            ("tibetan-post-read-conversion" function (:prototype-flag t) nil [1237652 1237729])
-            ("tibetan-pre-write-conversion" function (:prototype-flag t) nil [1237731 1237812])
-            ("tibetan-pre-write-canonicalize-for-unicode" function (:prototype-flag t) nil [1237814 1237909])
-            ("if" code nil nil [1237911 1238013])
-            ("push" code nil nil [1238140 1238200])
-            ("tildify-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1238202 1238664])
-            ("tildify-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1238666 1239108])
-            ("tildify-space" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1239110 1239967])
-            ("tildify-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1239969 1240582])
-            ("if" code nil nil [1240584 1240683])
-            ("display-time-day-and-date" variable nil nil [1240782 1240900])
-            ("custom-autoload" code nil nil [1240902 1240955])
-            ("put" code nil nil [1240956 1241006])
-            ("display-time" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1241008 1241326])
-            ("display-time-mode" variable nil nil [1241328 1241633])
-            ("custom-autoload" code nil nil [1241635 1241682])
-            ("display-time-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1241684 1242287])
-            ("display-time-world" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1242289 1242514])
-            ("emacs-uptime" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1242516 1242774])
-            ("emacs-init-time" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1242776 1242892])
-            ("if" code nil nil [1242894 1243076])
-            ("date-to-time" function (:prototype-flag t) nil [1243216 1243401])
-            ("defalias" code nil nil [1243403 1243442])
-            ("seconds-to-time" function (:prototype-flag t) nil [1243444 1243543])
-            ("days-to-time" function (:prototype-flag t) nil [1243545 1243637])
-            ("time-since" function (:prototype-flag t) nil [1243639 1243791])
-            ("define-obsolete-function-alias" code nil nil [1243793 1243862])
-            ("date-to-day" function (:prototype-flag t) nil [1243864 1244009])
-            ("days-between" function (:prototype-flag t) nil [1244011 1244174])
-            ("date-leap-year-p" function (:prototype-flag t) nil [1244176 1244273])
-            ("time-to-day-in-year" function (:prototype-flag t) nil [1244275 1244403])
-            ("time-to-days" function (:prototype-flag t) nil [1244405 1244623])
-            ("safe-date-to-time" function (:prototype-flag t) nil [1244625 1244815])
-            ("format-seconds" function (:prototype-flag t) nil [1244817 1245771])
-            ("seconds-to-string" function (:prototype-flag t) nil [1245773 1245895])
-            ("if" code nil nil [1245897 1246061])
-            ("put" code nil nil [1246177 1246231])
-            ("put" code nil nil [1246232 1246298])
-            ("put" code nil nil [1246299 1246358])
-            ("put" code nil nil [1246359 1246412])
-            ("put" code nil nil [1246413 1246464])
-            ("put" code nil nil [1246465 1246526])
-            ("put" code nil nil [1246527 1246581])
-            ("put" code nil nil [1246582 1246637])
-            ("time-stamp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1246639 1247581])
-            ("time-stamp-toggle-active" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1247583 1247804])
-            ("if" code nil nil [1247806 1247911])
-            ("push" code nil nil [1248050 1248112])
-            ("timeclock-mode-line-display" variable nil nil [1248114 1248464])
-            ("custom-autoload" code nil nil [1248466 1248528])
-            ("timeclock-mode-line-display" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1248530 1249095])
-            ("timeclock-in" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1249097 1249863])
-            ("timeclock-out" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1249865 1250340])
-            ("timeclock-status-string" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1250342 1250679])
-            ("timeclock-change" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1250681 1251021])
-            ("timeclock-query-out" function (:prototype-flag t) nil [1251023 1251190])
-            ("timeclock-reread-log" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1251192 1251359])
-            ("timeclock-workday-remaining-string" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1251361 1251757])
-            ("timeclock-workday-elapsed-string" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1251759 1252055])
-            ("timeclock-when-to-leave-string" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1252057 1252474])
-            ("if" code nil nil [1252476 1252579])
-            ("list-timers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1252726 1252841])
-            ("put" code nil nil [1252843 1252936])
-            ("if" code nil nil [1252938 1253043])
-            ("if" code nil nil [1253154 1253255])
-            ("titdic-convert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1253408 1253661])
-            ("batch-titdic-convert" function (:prototype-flag t) nil [1253663 1254119])
-            ("if" code nil nil [1254121 1254332])
-            ("if" code nil nil [1254436 1254545])
-            ("define-key" code nil nil [1254641 1254684])
-            ("define-key" code nil nil [1254686 1254747])
-            ("tmm-menubar" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1254749 1255244])
-            ("tmm-menubar-mouse" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1255246 1255528])
-            ("tmm-prompt" function (:prototype-flag t) nil [1255530 1256159])
-            ("if" code nil nil [1256161 1256252])
-            ("todo-show" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1256392 1258272])
-            ("todo-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1258274 1258405])
-            ("todo-archive-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1258407 1258533])
-            ("todo-filtered-items-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1258535 1258692])
-            ("if" code nil nil [1258694 1258792])
-            ("toggle-tool-bar-mode-from-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1258903 1259099])
-            ("tool-bar-add-item" function (:prototype-flag t) nil [1259101 1259866])
-            ("tool-bar-local-item" function (:prototype-flag t) nil [1259868 1260509])
-            ("tool-bar-add-item-from-menu" function (:prototype-flag t) nil [1260511 1261220])
-            ("tool-bar-local-item-from-menu" function (:prototype-flag t) nil [1261222 1261788])
-            ("if" code nil nil [1261790 1261891])
-            ("if" code nil nil [1261999 1262098])
-            ("tq-create" function (:prototype-flag t) nil [1262213 1262501])
-            ("if" code nil nil [1262503 1262592])
-            ("trace-buffer" variable (:default-value "*trace-output*") nil [1262716 1262806])
-            ("custom-autoload" code nil nil [1262808 1262849])
-            ("trace-values" function (:prototype-flag t) nil [1262851 1263026])
-            ("trace-function-foreground" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1263028 1263912])
-            ("trace-function-background" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1263914 1264174])
-            ("defalias" code nil nil [1264176 1264229])
-            ("if" code nil nil [1264231 1264353])
-            ("tramp-mode" variable (:default-value t) nil [1264463 1264577])
-            ("custom-autoload" code nil nil [1264579 1264618])
-            ("tramp-initial-file-name-regexp" variable
-               (:constant-flag t
-                :default-value "\\`/.+:.*:")
-                nil [1264620 1264778])
-            ("tramp-file-name-regexp" variable (:default-value tramp-initial-file-name-regexp) nil [1264780 1265097])
-            ("tramp-autoload-file-name-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\`/" (if (memq system-type (quote (cygwin windows-nt))) "\\(-\\|[^/|:]\\{2,\\}\\)" "[^/|:]+") ":"))
-                nil [1265099 1265467])
-            ("tramp-autoload-file-name-handler" function (:arguments ("operation" "args")) nil [1265469 1265764])
-            ("tramp-register-autoload-file-name-handlers" function nil nil [1265766 1266093])
-            ("tramp-register-autoload-file-name-handlers" code nil nil [1266095 1266139])
-            ("tramp-unload-file-name-handlers" function nil nil [1266141 1266483])
-            ("tramp-completion-mode" variable nil nil [1266485 1266599])
-            ("tramp-unload-tramp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1266601 1266697])
-            ("if" code nil nil [1266699 1266802])
-            ("if" code nil nil [1266924 1267023])
-            ("if" code nil nil [1267151 1267252])
-            ("if" code nil nil [1267377 1267477])
-            ("if" code nil nil [1267616 1267718])
-            ("tramp-ftp-enable-ange-ftp" function (:prototype-flag t) nil [1267840 1267951])
-            ("if" code nil nil [1267953 1268052])
-            ("if" code nil nil [1268177 1268307])
-            ("if" code nil nil [1268426 1268524])
-            ("if" code nil nil [1268646 1268749])
-            ("if" code nil nil [1268868 1268968])
-            ("push" code nil nil [1269086 1269149])
-            ("if" code nil nil [1269151 1269249])
-            ("if" code nil nil [1269369 1269476])
-            ("help-with-tutorial" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1269587 1270373])
-            ("if" code nil nil [1270375 1270510])
-            ("tai-viet-composition-function" function (:prototype-flag t) nil [1270636 1270734])
-            ("if" code nil nil [1270736 1270836])
-            ("2C-command" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1270981 1271029])
-            ("global-set-key" code nil nil [1271031 1271067])
-            ("global-set-key" code nil nil [1271069 1271102])
-            ("2C-two-columns" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1271104 1271567])
-            ("2C-associate-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1271569 1271828])
-            ("2C-split" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1271830 1272616])
-            ("if" code nil nil [1272618 1272715])
-            ("type-break-mode" variable nil nil [1272832 1273129])
-            ("custom-autoload" code nil nil [1273131 1273182])
-            ("type-break-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1273184 1276781])
-            ("type-break" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1276783 1277064])
-            ("type-break-statistics" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1277066 1277338])
-            ("type-break-guesstimate-keystroke-threshold" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1277340 1278619])
-            ("if" code nil nil [1278621 1278734])
-            ("uce-reply-to-uce" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1278840 1279151])
-            ("if" code nil nil [1279153 1279244])
-            ("ucs-normalize-NFD-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1279406 1279532])
-            ("ucs-normalize-NFD-string" function (:prototype-flag t) nil [1279534 1279654])
-            ("ucs-normalize-NFC-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1279656 1279782])
-            ("ucs-normalize-NFC-string" function (:prototype-flag t) nil [1279784 1279904])
-            ("ucs-normalize-NFKD-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1279906 1280034])
-            ("ucs-normalize-NFKD-string" function (:prototype-flag t) nil [1280036 1280158])
-            ("ucs-normalize-NFKC-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1280160 1280288])
-            ("ucs-normalize-NFKC-string" function (:prototype-flag t) nil [1280290 1280412])
-            ("ucs-normalize-HFS-NFD-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1280414 1280566])
-            ("ucs-normalize-HFS-NFD-string" function (:prototype-flag t) nil [1280568 1280714])
-            ("ucs-normalize-HFS-NFC-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1280716 1280868])
-            ("ucs-normalize-HFS-NFC-string" function (:prototype-flag t) nil [1280870 1281016])
-            ("if" code nil nil [1281018 1281141])
-            ("underline-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1281283 1281528])
-            ("ununderline-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1281530 1281756])
-            ("if" code nil nil [1281914 1282012])
-            ("batch-unrmail" function (:prototype-flag t) nil [1282130 1282457])
-            ("unrmail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1282459 1282657])
-            ("if" code nil nil [1282659 1282769])
-            ("unsafep" function (:prototype-flag t) nil [1282899 1283140])
-            ("if" code nil nil [1283142 1283258])
-            ("url-retrieve" function (:prototype-flag t) nil [1283362 1284850])
-            ("url-retrieve-synchronously" function (:prototype-flag t) nil [1284852 1285429])
-            ("if" code nil nil [1285431 1285522])
-            ("if" code nil nil [1285644 1285741])
-            ("url-get-authentication" function (:prototype-flag t) nil [1285860 1287027])
-            ("url-register-auth-scheme" function (:prototype-flag t) nil [1287029 1287710])
-            ("if" code nil nil [1287712 1287808])
-            ("url-store-in-cache" function (:prototype-flag t) nil [1287930 1288038])
-            ("url-is-cached" function (:prototype-flag t) nil [1288040 1288210])
-            ("url-cache-extract" function (:prototype-flag t) nil [1288212 1288317])
-            ("if" code nil nil [1288319 1288416])
-            ("url-cid" function (:prototype-flag t) nil [1288532 1288585])
-            ("if" code nil nil [1288587 1288690])
-            ("if" code nil nil [1288815 1288919])
-            ("url-dav-supported-p" function (:prototype-flag t) nil [1289035 1289188])
-            ("url-dav-request" function (:prototype-flag t) nil [1289190 1289973])
-            ("url-dav-vc-registered" function (:prototype-flag t) nil [1289975 1290042])
-            ("if" code nil nil [1290044 1290139])
-            ("if" code nil nil [1290261 1290358])
-            ("if" code nil nil [1290483 1290588])
-            ("if" code nil nil [1290713 1290811])
-            ("url-file" function (:prototype-flag t) nil [1290930 1291028])
-            ("if" code nil nil [1291030 1291131])
-            ("if" code nil nil [1291247 1291345])
-            ("if" code nil nil [1291470 1291575])
-            ("url-gateway-nslookup-host" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1291688 1291818])
-            ("url-open-stream" function (:prototype-flag t) nil [1291820 1292246])
-            ("if" code nil nil [1292248 1292342])
-            ("url-handler-mode" variable nil nil [1292481 1292782])
-            ("custom-autoload" code nil nil [1292784 1292838])
-            ("url-handler-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1292840 1293141])
-            ("url-file-handler" function (:prototype-flag t) nil [1293143 1293412])
-            ("url-copy-file" function (:prototype-flag t) nil [1293414 1294068])
-            ("url-file-local-copy" function (:prototype-flag t) nil [1294070 1294277])
-            ("url-insert-buffer-contents" function (:prototype-flag t) nil [1294279 1294558])
-            ("url-insert-file-contents" function (:prototype-flag t) nil [1294560 1294667])
-            ("if" code nil nil [1294669 1294769])
-            ("if" code nil nil [1294897 1294996])
-            ("url-default-expander" function (:prototype-flag t) nil [1295115 1295160])
-            ("defalias" code nil nil [1295162 1295222])
-            ("url-https" function (:prototype-flag t) nil [1295224 1295256])
-            ("url-https-file-exists-p" function (:prototype-flag t) nil [1295258 1295304])
-            ("url-https-file-readable-p" function (:prototype-flag t) nil [1295306 1295354])
-            ("url-https-file-attributes" function (:prototype-flag t) nil [1295356 1295404])
-            ("if" code nil nil [1295406 1295503])
-            ("if" code nil nil [1295622 1295722])
-            ("url-irc" function (:prototype-flag t) nil [1295838 1295891])
-            ("if" code nil nil [1295893 1295992])
-            ("url-ldap" function (:prototype-flag t) nil [1296111 1296364])
-            ("if" code nil nil [1296366 1296467])
-            ("url-mail" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1296592 1296654])
-            ("url-mailto" function (:prototype-flag t) nil [1296656 1296745])
-            ("if" code nil nil [1296747 1296860])
-            ("if" code nil nil [1296988 1297094])
-            ("url-man" function (:prototype-flag t) nil [1297213 1297296])
-            ("url-info" function (:prototype-flag t) nil [1297298 1297374])
-            ("url-generic-emulator-loader" function (:prototype-flag t) nil [1297376 1297450])
-            ("defalias" code nil nil [1297452 1297503])
-            ("defalias" code nil nil [1297505 1297556])
-            ("defalias" code nil nil [1297558 1297609])
-            ("url-data" function (:prototype-flag t) nil [1297611 1297694])
-            ("if" code nil nil [1297696 1297812])
-            ("url-news" function (:prototype-flag t) nil [1297931 1297986])
-            ("url-snews" function (:prototype-flag t) nil [1297988 1298044])
-            ("if" code nil nil [1298046 1298147])
-            ("if" code nil nil [1298263 1298361])
-            ("isPlainHostName" function (:prototype-flag t) nil [1298474 1298535])
-            ("dnsDomainIs" function (:prototype-flag t) nil [1298537 1298598])
-            ("dnsResolve" function (:prototype-flag t) nil [1298600 1298656])
-            ("isResolvable" function (:prototype-flag t) nil [1298658 1298716])
-            ("isInNet" function (:prototype-flag t) nil [1298718 1298778])
-            ("url-ns-prefs" function (:prototype-flag t) nil [1298780 1298848])
-            ("url-ns-user-pref" function (:prototype-flag t) nil [1298850 1298929])
-            ("if" code nil nil [1298931 1299028])
-            ("url-recreate-url" function (:prototype-flag t) nil [1299150 1299262])
-            ("url-generic-parse-url" function (:prototype-flag t) nil [1299264 1300711])
-            ("if" code nil nil [1300713 1300810])
-            ("url-setup-privacy-info" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1300938 1301063])
-            ("if" code nil nil [1301065 1301175])
-            ("if" code nil nil [1301297 1301394])
-            ("url-queue-retrieve" function (:prototype-flag t) nil [1301516 1301954])
-            ("if" code nil nil [1301956 1302058])
-            ("url-tramp-protocols" variable (:default-value (quote ("ftp" "ssh" "scp" "rsync" "telnet"))) nil [1302180 1302363])
-            ("custom-autoload" code nil nil [1302365 1302417])
-            ("url-tramp-file-handler" function (:prototype-flag t) nil [1302419 1302668])
-            ("if" code nil nil [1302670 1302781])
-            ("url-debug" variable nil nil [1302900 1303208])
-            ("custom-autoload" code nil nil [1303210 1303251])
-            ("url-debug" function (:prototype-flag t) nil [1303253 1303320])
-            ("url-parse-args" function (:prototype-flag t) nil [1303322 1303404])
-            ("url-insert-entities-in-string" function (:prototype-flag t) nil [1303406 1303823])
-            ("url-normalize-url" function (:prototype-flag t) nil [1303825 1303966])
-            ("url-lazy-message" function (:prototype-flag t) nil [1303968 1304158])
-            ("url-get-normalized-date" function (:prototype-flag t) nil [1304160 1304310])
-            ("url-eat-trailing-space" function (:prototype-flag t) nil [1304312 1304421])
-            ("url-strip-leading-spaces" function (:prototype-flag t) nil [1304423 1304531])
-            ("url-display-percentage" function (:prototype-flag t) nil [1304533 1304618])
-            ("url-percentage" function (:prototype-flag t) nil [1304620 1304681])
-            ("defalias" code nil nil [1304683 1304727])
-            ("url-file-directory" function (:prototype-flag t) nil [1304729 1304840])
-            ("url-file-nondirectory" function (:prototype-flag t) nil [1304842 1304959])
-            ("url-parse-query-string" function (:prototype-flag t) nil [1304961 1305066])
-            ("url-build-query-string" function (:prototype-flag t) nil [1305068 1305691])
-            ("url-unhex-string" function (:prototype-flag t) nil [1305693 1305996])
-            ("url-hexify-string" function (:prototype-flag t) nil [1305998 1306623])
-            ("url-encode-url" function (:prototype-flag t) nil [1306625 1306938])
-            ("url-file-extension" function (:prototype-flag t) nil [1306940 1307157])
-            ("url-truncate-url-for-viewing" function (:prototype-flag t) nil [1307159 1307365])
-            ("url-view-url" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1307367 1307616])
-            ("if" code nil nil [1307618 1307714])
-            ("if" code nil nil [1307833 1307929])
-            ("ask-user-about-lock" function (:prototype-flag t) nil [1308040 1308517])
-            ("userlock--ask-user-about-supersession-threat" function (:prototype-flag t) nil [1308519 1308609])
-            ("ask-user-about-supersession-threat" function (:prototype-flag t) nil [1308611 1309117])
-            ("if" code nil nil [1309119 1309270])
-            ("utf-7-post-read-conversion" function (:prototype-flag t) nil [1309400 1309470])
-            ("utf-7-imap-post-read-conversion" function (:prototype-flag t) nil [1309472 1309547])
-            ("utf-7-pre-write-conversion" function (:prototype-flag t) nil [1309549 1309623])
-            ("utf-7-imap-pre-write-conversion" function (:prototype-flag t) nil [1309625 1309704])
-            ("if" code nil nil [1309706 1309801])
-            ("utf7-encode" function (:prototype-flag t) nil [1309928 1310071])
-            ("if" code nil nil [1310073 1310166])
-            ("uudecode-decode-region-external" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1310287 1310567])
-            ("uudecode-decode-region-internal" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1310569 1310798])
-            ("uudecode-decode-region" function (:prototype-flag t) nil [1310800 1310988])
-            ("if" code nil nil [1310990 1311091])
-            ("vc-checkout-hook" variable nil nil [1311190 1311303])
-            ("custom-autoload" code nil nil [1311305 1311347])
-            ("vc-checkin-hook" variable nil nil [1311349 1311478])
-            ("custom-autoload" code nil nil [1311480 1311521])
-            ("vc-before-checkin-hook" variable nil nil [1311523 1311650])
-            ("custom-autoload" code nil nil [1311652 1311700])
-            ("vc-responsible-backend" function (:prototype-flag t) nil [1311702 1312166])
-            ("vc-next-action" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1312168 1313305])
-            ("vc-register" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1313307 1313972])
-            ("vc-version-diff" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1313974 1314112])
-            ("vc-diff" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1314114 1314503])
-            ("vc-version-ediff" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1314505 1314660])
-            ("vc-ediff" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1314662 1315064])
-            ("vc-root-diff" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1315066 1315494])
-            ("vc-root-dir" function (:prototype-flag t) nil [1315496 1315649])
-            ("vc-revision-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1315651 1315908])
-            ("vc-insert-headers" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1315910 1316120])
-            ("vc-merge" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1316122 1316801])
-            ("vc-message-unresolved-conflicts" function (:prototype-flag t) nil [1316803 1316942])
-            ("defalias" code nil nil [1316944 1316990])
-            ("vc-create-tag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1316992 1317325])
-            ("vc-retrieve-tag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1317327 1317924])
-            ("vc-print-log" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1317926 1318344])
-            ("vc-print-root-log" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1318346 1318680])
-            ("vc-print-branch-log" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1318682 1318786])
-            ("vc-log-incoming" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1318788 1319029])
-            ("vc-log-outgoing" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1319031 1319266])
-            ("vc-region-history" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1319268 1319446])
-            ("vc-revert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1319448 1319691])
-            ("define-obsolete-function-alias" code nil nil [1319693 1319761])
-            ("vc-pull" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1319763 1320446])
-            ("defalias" code nil nil [1320448 1320478])
-            ("vc-push" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1320480 1320968])
-            ("vc-switch-backend" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1320970 1321394])
-            ("vc-transfer-file" function (:prototype-flag t) nil [1321396 1322007])
-            ("vc-delete-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1322009 1322237])
-            ("vc-rename-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1322239 1322475])
-            ("vc-update-change-log" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1322477 1323090])
-            ("vc-branch-part" function (:prototype-flag t) nil [1323092 1323195])
-            ("if" code nil nil [1323197 1323307])
-            ("vc-annotate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1323433 1325011])
-            ("if" code nil nil [1325013 1325111])
-            ("vc-bzr-admin-dirname" variable
-               (:constant-flag t
-                :default-value ".bzr")
-                nil [1325222 1325326])
-            ("vc-bzr-admin-checkout-format-file" variable
-               (:constant-flag t
-                :default-value (concat vc-bzr-admin-dirname "/checkout/format"))
-                nil [1325328 1325470])
-            ("vc-bzr-registered" function (:arguments ("file")) nil [1325472 1325642])
-            ("if" code nil nil [1325644 1325741])
-            ("vc-cvs-registered" function (:arguments ("f")) nil [1325851 1326079])
-            ("if" code nil nil [1326081 1326178])
-            ("if" code nil nil [1326289 1326386])
-            ("vc-dir" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1326497 1327218])
-            ("if" code nil nil [1327220 1327313])
-            ("vc-do-command" function (:prototype-flag t) nil [1327453 1328422])
-            ("if" code nil nil [1328424 1328524])
-            ("if" code nil nil [1328650 1328748])
-            ("vc-git-registered" function (:arguments ("file")) nil [1328859 1329072])
-            ("if" code nil nil [1329074 1329171])
-            ("vc-hg-registered" function (:arguments ("file")) nil [1329279 1329486])
-            ("if" code nil nil [1329488 1329583])
-            ("vc-mtn-admin-dir" variable
-               (:constant-flag t
-                :default-value "_MTN")
-                nil [1329694 1329764])
-            ("vc-mtn-admin-format" variable
-               (:constant-flag t
-                :default-value (concat vc-mtn-admin-dir "/format"))
-                nil [1329766 1329882])
-            ("vc-mtn-registered" function (:arguments ("file")) nil [1329884 1330040])
-            ("if" code nil nil [1330042 1330139])
-            ("vc-rcs-master-templates" variable (:default-value (purecopy (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")))) nil [1330250 1330440])
-            ("custom-autoload" code nil nil [1330442 1330495])
-            ("vc-rcs-registered" function (:arguments ("f")) nil [1330497 1330557])
-            ("if" code nil nil [1330559 1330653])
-            ("vc-sccs-master-templates" variable (:default-value (purecopy (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)))) nil [1330767 1330976])
-            ("custom-autoload" code nil nil [1330978 1331033])
-            ("vc-sccs-registered" function (:arguments ("f")) nil [1331035 1331097])
-            ("vc-sccs-search-project-dir" function (:arguments ("_dirname" "basename")) nil [1331099 1331796])
-            ("if" code nil nil [1331798 1331897])
-            ("vc-src-master-templates" variable (:default-value (purecopy (quote ("%s.src/%s,v")))) nil [1332008 1332179])
-            ("custom-autoload" code nil nil [1332181 1332234])
-            ("vc-src-registered" function (:arguments ("f")) nil [1332236 1332296])
-            ("if" code nil nil [1332298 1332395])
-            ("vc-svn-registered" function (:arguments ("f")) nil [1332506 1332827])
-            ("if" code nil nil [1332829 1332926])
-            ("if" code nil nil [1333034 1333133])
-            ("push" code nil nil [1333274 1333335])
-            ("add-to-list" code nil nil [1333337 1333413])
-            ("vera-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1333415 1335137])
-            ("if" code nil nil [1335139 1335237])
-            ("verilog-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1335388 1342008])
-            ("if" code nil nil [1342010 1342140])
-            ("vhdl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1342282 1367902])
-            ("if" code nil nil [1367904 1368002])
-            ("viet-encode-viscii-char" function (:prototype-flag t) nil [1368142 1368266])
-            ("viet-decode-viqr-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1368268 1368534])
-            ("viet-decode-viqr-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1368536 1368673])
-            ("viet-encode-viqr-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1368675 1368941])
-            ("viet-encode-viqr-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1368943 1369080])
-            ("viqr-post-read-conversion" function (:prototype-flag t) nil [1369082 1369155])
-            ("viqr-pre-write-conversion" function (:prototype-flag t) nil [1369157 1369234])
-            ("if" code nil nil [1369236 1369358])
-            ("view-remove-frame-by-deleting" variable (:default-value t) nil [1369457 1369625])
-            ("custom-autoload" code nil nil [1369627 1369684])
-            ("view-mode" variable nil nil [1369686 1369859])
-            ("make-variable-buffer-local" code nil nil [1369861 1369900])
-            ("kill-buffer-if-not-modified" function (:prototype-flag t) nil [1369902 1370035])
-            ("view-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1370037 1370487])
-            ("view-file-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1370489 1371066])
-            ("view-file-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1371068 1371661])
-            ("view-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1371663 1372753])
-            ("view-buffer-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1372755 1373643])
-            ("view-buffer-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1373645 1374531])
-            ("view-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1374533 1379403])
-            ("view-return-to-alist-update" function (:prototype-flag t) nil [1379405 1379949])
-            ("make-obsolete" code nil nil [1379951 1380035])
-            ("view-mode-enter" function (:prototype-flag t) nil [1380037 1380705])
-            ("View-exit-and-edit" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1380707 1380814])
-            ("if" code nil nil [1380816 1380917])
-            ("push" code nil nil [1381038 1381097])
-            ("toggle-viper-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1381099 1381232])
-            ("viper-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1381234 1381349])
-            ("if" code nil nil [1381351 1381514])
-            ("if" code nil nil [1381656 1381755])
-            ("if" code nil nil [1381886 1381990])
-            ("if" code nil nil [1382135 1382235])
-            ("if" code nil nil [1382380 1382503])
-            ("if" code nil nil [1382648 1382754])
-            ("if" code nil nil [1382899 1382999])
-            ("if" code nil nil [1383144 1383243])
-            ("if" code nil nil [1383360 1383457])
-            ("if" code nil nil [1383571 1383668])
-            ("if" code nil nil [1383776 1383871])
-            ("if" code nil nil [1383982 1384078])
-            ("warning-prefix-function" variable nil nil [1384219 1384616])
-            ("warning-series" variable nil nil [1384618 1385056])
-            ("warning-fill-prefix" variable nil nil [1385058 1385167])
-            ("warning-type-format" variable (:default-value (purecopy " (%s)")) nil [1385169 1385408])
-            ("display-warning" function (:prototype-flag t) nil [1385410 1386656])
-            ("lwarn" function (:prototype-flag t) nil [1386658 1387517])
-            ("warn" function (:prototype-flag t) nil [1387519 1387807])
-            ("if" code nil nil [1387809 1387969])
-            ("push" code nil nil [1388073 1388130])
-            ("wdired-change-to-wdired-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1388132 1388522])
-            ("if" code nil nil [1388524 1388621])
-            ("webjump" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1388737 1389015])
-            ("if" code nil nil [1389017 1389116])
-            ("put" code nil nil [1389261 1389309])
-            ("put" code nil nil [1389311 1389360])
-            ("define-obsolete-function-alias" code nil nil [1389362 1389439])
-            ("which-function-mode" variable nil nil [1389441 1389754])
-            ("custom-autoload" code nil nil [1389756 1389811])
-            ("which-function-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1389813 1390275])
-            ("if" code nil nil [1390277 1390381])
-            ("push" code nil nil [1390497 1390561])
-            ("whitespace-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1390563 1390973])
-            ("whitespace-newline-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1390975 1391592])
-            ("global-whitespace-mode" variable nil nil [1391594 1391919])
-            ("custom-autoload" code nil nil [1391921 1391979])
-            ("global-whitespace-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1391981 1392421])
-            ("global-whitespace-newline-mode" variable nil nil [1392423 1392780])
-            ("custom-autoload" code nil nil [1392782 1392848])
-            ("global-whitespace-newline-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1392850 1393508])
-            ("whitespace-toggle-options" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1393510 1396326])
-            ("global-whitespace-toggle-options" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1396328 1399158])
-            ("whitespace-cleanup" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1399160 1401306])
-            ("whitespace-cleanup-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1401308 1402925])
-            ("whitespace-report" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1402927 1403120])
-            ("whitespace-report-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1403122 1404542])
-            ("if" code nil nil [1404544 1404649])
-            ("widget-browse-at" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1404766 1404859])
-            ("widget-browse" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1404861 1404959])
-            ("widget-browse-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1404961 1405094])
-            ("widget-minor-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1405096 1405358])
-            ("if" code nil nil [1405360 1405461])
-            ("widgetp" function (:prototype-flag t) nil [1405572 1405666])
-            ("widget-prompt-value" function (:prototype-flag t) nil [1405668 1405886])
-            ("widget-create" function (:prototype-flag t) nil [1405888 1406034])
-            ("widget-delete" function (:prototype-flag t) nil [1406036 1406113])
-            ("widget-insert" function (:prototype-flag t) nil [1406115 1406244])
-            ("widget-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "	" (quote widget-forward)) (define-key map "	" (quote widget-backward)) (define-key map [(shift tab)] (quote widget-backward)) (put (quote widget-backward) :advertised-binding [(shift tab)]) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map [down-mouse-1] (quote widget-button-click)) (define-key map [(control 109)] (quote widget-button-press)) map)) nil [1406246 1406869])
-            ("widget-setup" function (:prototype-flag t) nil [1406871 1406979])
-            ("if" code nil nil [1406981 1407080])
-            ("windmove-left" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1407191 1407618])
-            ("windmove-up" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1407620 1408033])
-            ("windmove-right" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1408035 1408464])
-            ("windmove-down" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1408466 1408884])
-            ("windmove-default-keybindings" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1408886 1409096])
-            ("if" code nil nil [1409098 1409199])
-            ("winner-mode" variable nil nil [1409304 1409585])
-            ("custom-autoload" code nil nil [1409587 1409630])
-            ("winner-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1409632 1410286])
-            ("if" code nil nil [1410288 1410385])
-            ("push" code nil nil [1410486 1410544])
-            ("woman-locale" variable nil nil [1410546 1410821])
-            ("custom-autoload" code nil nil [1410823 1410864])
-            ("woman" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1410866 1411515])
-            ("woman-dired-find-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1411517 1411630])
-            ("woman-find-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1411632 1412146])
-            ("woman-bookmark-jump" function (:prototype-flag t) nil [1412148 1412259])
-            ("if" code nil nil [1412261 1412412])
-            ("if" code nil nil [1412514 1412609])
-            ("if" code nil nil [1412705 1412796])
-            ("xml-parse-file" function (:prototype-flag t) nil [1412892 1413628])
-            ("xml-parse-region" function (:prototype-flag t) nil [1413630 1414597])
-            ("if" code nil nil [1414599 1414690])
-            ("xmltok-get-declared-encoding-position" function (:prototype-flag t) nil [1414805 1415462])
-            ("if" code nil nil [1415464 1415561])
-            ("xref-find-backend" function (:prototype-flag t) nil [1415680 1415736])
-            ("xref-pop-marker-stack" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1415738 1415857])
-            ("xref-marker-stack-empty-p" function (:prototype-flag t) nil [1415859 1415976])
-            ("xref-find-definitions" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1415978 1416403])
-            ("xref-find-definitions-other-window" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1416405 1416547])
-            ("xref-find-definitions-other-frame" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1416549 1416689])
-            ("xref-find-references" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1416691 1416851])
-            ("xref-find-apropos" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1416853 1417013])
-            ("define-key" code nil nil [1417015 1417063])
-            ("define-key" code nil nil [1417065 1417113])
-            ("define-key" code nil nil [1417115 1417162])
-            ("define-key" code nil nil [1417164 1417212])
-            ("define-key" code nil nil [1417214 1417279])
-            ("define-key" code nil nil [1417281 1417345])
-            ("xref-collect-matches" function (:prototype-flag t) nil [1417347 1417572])
-            ("if" code nil nil [1417574 1417667])
-            ("if" code nil nil [1417795 1418077])
-            ("if" code nil nil [1418204 1418304])
-            ("xterm-mouse-mode" variable nil nil [1418415 1418716])
-            ("custom-autoload" code nil nil [1418718 1418768])
-            ("xterm-mouse-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1418770 1419417])
-            ("if" code nil nil [1419419 1419549])
-            ("xwidget-webkit-browse-url" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1419657 1419926])
-            ("if" code nil nil [1419928 1420027])
-            ("yenc-decode-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1420136 1420268])
-            ("yenc-extract-filename" function (:prototype-flag t) nil [1420270 1420368])
-            ("if" code nil nil [1420370 1420463])
-            ("if" code nil nil [1420582 1420683])
-            ("zone" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1420792 1420854])
-            ("if" code nil nil [1420856 1420949])
-            ("loaddefs" package nil nil [1429167 1429186]))          
-      :file "loaddefs.el"
-      :pointmax 1429332
-      :fsize 1429354
-      :lastmodtime '(23525 29512 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("help-macro" include nil nil [1150 1171])
-            ("add-hook" code nil nil [1242 1293])
-            ("add-hook" code nil nil [1294 1345])
-            ("help-window-point-marker" variable (:default-value (make-marker)) nil [1766 1876])
-            ("help-window-old-frame" variable nil nil [1878 1974])
-            ("help-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map (char-to-string help-char) (quote help-for-help)) (define-key map [help] (quote help-for-help)) (define-key map [f1] (quote help-for-help)) (define-key map "." (quote display-local-help)) (define-key map "?" (quote help-for-help)) (define-key map "" (quote about-emacs)) (define-key map "" (quote describe-copying)) (define-key map "" (quote view-emacs-debugging)) (define-key map "" (quote view-external-packages)) (define-key map "" (quote view-emacs-FAQ)) (define-key map "
" (quote view-order-manuals)) (define-key map "" (quote view-emacs-news)) (define-key map "" (quote describe-distribution)) (define-key map "" (quote view-emacs-problems)) (define-key map "" (quote view-emacs-todo)) (define-key map "" (quote describe-no-warranty)) (define-key map "" (quote describe-input-method)) (define-key map "C" (quote describe-coding-system)) (define-key map "F" (quote Info-goto-emacs-command-node)) (define-key map "I" (quote describe-input-method)) (define-key map "K" (quote Info-goto-emacs-key-command-node)) (define-key map "L" (quote describe-language-environment)) (define-key map "S" (quote info-lookup-symbol)) (define-key map "a" (quote apropos-command)) (define-key map "b" (quote describe-bindings)) (define-key map "c" (quote describe-key-briefly)) (define-key map "d" (quote apropos-documentation)) (define-key map "e" (quote view-echo-area-messages)) (define-key map "f" (quote describe-function)) (define-key map "g" (quote describe-gnu-project)) (define-key map "h" (quote view-hello-file)) (define-key map "i" (quote info)) (define-key map "4i" (quote info-other-window)) (define-key map "k" (quote describe-key)) (define-key map "l" (quote view-lossage)) (define-key map "m" (quote describe-mode)) (define-key map "o" (quote describe-symbol)) (define-key map "n" (quote view-emacs-news)) (define-key map "p" (quote finder-by-keyword)) (define-key map "P" (quote describe-package)) (define-key map "r" (quote info-emacs-manual)) (define-key map "s" (quote describe-syntax)) (define-key map "t" (quote help-with-tutorial)) (define-key map "w" (quote where-is)) (define-key map "v" (quote describe-variable)) (define-key map "q" (quote help-quit)) map)) nil [1976 4265])
-            ("define-key" code nil nil [4267 4331])
-            ("define-key" code nil nil [4332 4376])
-            ("define-key" code nil nil [4377 4419])
-            ("fset" code nil nil [4420 4449])
-            ("help-button-cache" variable nil nil [4518 4548])
-            ("help-quit" function (:user-visible-flag t) nil [4552 4646])
-            ("help-return-method" variable nil nil [4648 5017])
-            ("define-obsolete-function-alias" code nil nil [5019 5112])
-            ("help-print-return-message" function (:arguments ("function")) nil [5113 7408])
-            ("fset" code nil nil [7468 7529])
-            ("defalias" code nil nil [7531 7571])
-            ("defalias" code nil nil [7604 7653])
-            ("make-help-screen" code nil nil [7699 10813])
-            ("function-called-at-point" function nil nil [10818 12550])
-            ("view-help-file" function (:arguments ("file" "dir")) nil [12581 12736])
-            ("describe-distribution" function (:user-visible-flag t) nil [12738 12882])
-            ("describe-copying" function (:user-visible-flag t) nil [12884 13022])
-            ("describe-gnu-project" function (:user-visible-flag t) nil [13070 13227])
-            ("define-obsolete-function-alias" code nil nil [13229 13308])
-            ("describe-no-warranty" function (:user-visible-flag t) nil [13310 13556])
-            ("describe-prefix-bindings" function (:user-visible-flag t) nil [13558 14064])
-            ("setq" code nil nil [14155 14207])
-            ("view-emacs-news" function
-               (:user-visible-flag t
-                :arguments ("version"))
-                nil [14209 16619])
-            ("view-emacs-todo" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [16621 16740])
-            ("define-obsolete-function-alias" code nil nil [16742 16809])
-            ("view-echo-area-messages" function (:user-visible-flag t) nil [16812 17137])
-            ("view-order-manuals" function (:user-visible-flag t) nil [17139 17317])
-            ("view-emacs-FAQ" function (:user-visible-flag t) nil [17319 17506])
-            ("view-emacs-problems" function (:user-visible-flag t) nil [17508 17656])
-            ("view-emacs-debugging" function (:user-visible-flag t) nil [17658 17781])
-            ("view-external-packages" function (:user-visible-flag t) nil [17850 18007])
-            ("view-lossage" function (:user-visible-flag t) nil [18009 18978])
-            ("describe-bindings" function
-               (:user-visible-flag t
-                :arguments ("prefix" "buffer"))
-                nil [18999 19835])
-            ("describe-bindings-internal" function (:arguments ("menus" "prefix")) nil [19878 20612])
-            ("where-is" function
-               (:user-visible-flag t
-                :arguments ("definition" "insert"))
-                nil [20614 22776])
-            ("help-key-description" function (:arguments ("key" "untranslated")) nil [22778 23138])
-            ("help--analyze-key" function (:arguments ("key" "untranslated")) nil [23140 24670])
-            ("describe-key-briefly" function
-               (:user-visible-flag t
-                :arguments ("key" "insert" "untranslated"))
-                nil [24672 25532])
-            ("help--key-binding-keymap" function (:arguments ("key" "accept-default" "no-remap" "position")) nil [25534 26596])
-            ("help--binding-locus" function (:arguments ("key" "position")) nil [26598 28303])
-            ("help-read-key-sequence" function (:arguments ("no-mouse-movement")) nil [28305 32689])
-            ("help-downify-mouse-event-type" function (:arguments ("base")) nil [32691 33409])
-            ("describe-key" function
-               (:user-visible-flag t
-                :arguments ("key" "untranslated" "up-event"))
-                nil [33411 38329])
-            ("describe-mode" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [38332 42253])
-            ("describe-minor-mode" function
-               (:user-visible-flag t
-                :arguments ("minor-mode"))
-                nil [42256 43143])
-            ("describe-minor-mode-completion-table-for-symbol" function nil nil [43155 43369])
-            ("describe-minor-mode-from-symbol" function
-               (:user-visible-flag t
-                :arguments ("symbol"))
-                nil [43371 43715])
-            ("describe-minor-mode-completion-table-for-indicator" function nil nil [43730 44047])
-            ("describe-minor-mode-from-indicator" function
-               (:user-visible-flag t
-                :arguments ("indicator"))
-                nil [44049 44598])
-            ("lookup-minor-mode-from-indicator" function (:arguments ("indicator")) nil [44600 45390])
-            ("temp-buffer-max-height" variable (:default-value (lambda (buffer) (if (and (display-graphic-p) (eq (selected-window) (frame-root-window))) (/ (x-display-pixel-height) (frame-char-height) 2) (/ (- (frame-height) 2) 2)))) nil [45438 46207])
-            ("temp-buffer-max-width" variable (:default-value (lambda (buffer) (if (and (display-graphic-p) (eq (selected-window) (frame-root-window))) (/ (x-display-pixel-width) (frame-char-width) 2) (/ (- (frame-width) 2) 2)))) nil [46209 46973])
-            ("define-minor-mode" code nil nil [46975 48131])
-            ("resize-temp-buffer-window" function (:arguments ("window")) nil [48133 49890])
-            ("help-window-select" variable nil nil [49910 50878])
-            ("help-enable-auto-load" variable (:default-value t) nil [50880 51267])
-            ("help-window-display-message" function (:arguments ("quit-part" "window" "scroll")) nil [51269 52187])
-            ("help-window-setup" function (:arguments ("window" "value")) nil [52189 54990])
-            ("with-help-window" function (:arguments ("buffer-or-name" "body")) nil [55562 56602])
-            ("help-form-show" function nil nil [56730 56920])
-            ("help--docstring-quote" function (:arguments ("string")) nil [56924 57146])
-            ("help-split-fundoc" function (:arguments ("docstring" "def")) nil [57371 58384])
-            ("help-add-fundoc-usage" function (:arguments ("docstring" "arglist")) nil [58386 59236])
-            ("help-function-arglist" function (:arguments ("def" "preserve-names")) nil [59238 61627])
-            ("help--make-usage" function (:arguments ("function" "arglist")) nil [61629 62067])
-            ("define-obsolete-function-alias" code nil nil [62069 62143])
-            ("help--make-usage-docstring" function (:arguments ("fn" "arglist")) nil [62145 62300])
-            ("help" package nil nil [62304 62319]))          
-      :file "help.el"
-      :pointmax 62343
-      :fsize 62346
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax '((close-paren 1171 . 1172) (symbol 1132 . 1149) (open-paren 1131 . 1132)))
-    (semanticdb-table "semanticdb-table"
-      :file "help-macro.el"
-      :fsize 8263
-      :lastmodtime '(23525 29509 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("define-error" code nil nil [1176 1232])
-            ("ask-user-about-lock" function (:arguments ("file" "opponent")) nil [1249 2935])
-            ("ask-user-about-lock-help" function nil nil [2937 3431])
-            ("define-error" code nil nil [3433 3482])
-            ("userlock--check-content-unchanged" function (:arguments ("fn")) nil [3484 4828])
-            ("userlock--ask-user-about-supersession-threat" function (:arguments ("fn")) nil [4845 5025])
-            ("ask-user-about-supersession-threat" function (:arguments ("fn")) nil [5042 6454])
-            ("ask-user-about-supersession-help" function nil nil [6456 7113]))          
-      :file "userlock.el"
-      :pointmax 7141
-      :fsize 7140
-      :lastmodtime '(23525 29520 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("fringe" customgroup (:user-visible-flag t) nil [1310 1386])
-            ("when" code nil nil [1454 2745])
-            ("fringe-bitmap-p" function (:arguments ("symbol")) nil [2748 2852])
-            ("fringe-mode" variable nil nil [2887 2907])
-            ("fringe-mode-explicit" variable nil nil [2909 3062])
-            ("set-fringe-mode-1" function (:arguments ("_ignore" "value")) nil [3064 3289])
-            ("set-fringe-mode" function (:arguments ("value")) nil [3291 3755])
-            ("fringe--check-style" function (:arguments ("style")) nil [3757 4011])
-            ("fringe-mode-initialize" function (:arguments ("symbol" "value")) nil [4118 4796])
-            ("fringe-styles" variable
-               (:constant-flag t
-                :default-value (quote (("default") ("no-fringes" . 0) ("right-only" 0) ("left-only" nil . 0) ("half-width" 4 . 4) ("minimal" 1 . 1))))
-                nil [4798 5435])
-            ("fringe-mode" variable nil nil [5437 7090])
-            ("setq" code nil nil [7187 7216])
-            ("fringe-query-style" function (:arguments ("all-frames")) nil [7218 8037])
-            ("fringe-mode" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [8039 9201])
-            ("set-fringe-style" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [9203 10434])
-            ("fringe-columns" function (:arguments ("side" "real")) nil [10436 10860])
-            ("fringe" package nil nil [10862 10879]))          
-      :file "fringe.el"
-      :pointmax 10905
-      :fsize 10905
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("indent" customgroup (:user-visible-flag t) nil [1005 1070])
-            ("standard-indent" variable (:default-value 4) nil [1072 1206])
-            ("indent-line-function" variable (:default-value (quote indent-relative)) nil [1208 1594])
-            ("tab-always-indent" variable (:default-value t) nil [1596 2351])
-            ("indent-according-to-mode" function (:user-visible-flag t) nil [2354 3473])
-            ("indent--default-inside-comment" function nil nil [3475 4034])
-            ("indent-for-tab-command" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [4036 6747])
-            ("indent--funcall-widened" function (:arguments ("func")) nil [6749 6839])
-            ("insert-tab" function (:arguments ("arg")) nil [6841 7133])
-            ("indent-rigidly--current-indentation" function (:arguments ("beg" "end")) nil [7135 7620])
-            ("indent-rigidly-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [left] (quote indent-rigidly-left)) (define-key map [right] (quote indent-rigidly-right)) (define-key map [S-left] (quote indent-rigidly-left-to-tab-stop)) (define-key map [S-right] (quote indent-rigidly-right-to-tab-stop)) map)) nil [7622 8045])
-            ("indent-rigidly" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "arg" "interactive"))
-                nil [8047 9928])
-            ("indent-rigidly--pop-undo" function nil nil [9930 10217])
-            ("indent-rigidly-left" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [10219 10467])
-            ("indent-rigidly-right" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [10469 10719])
-            ("indent-rigidly-left-to-tab-stop" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [10721 11119])
-            ("indent-rigidly-right-to-tab-stop" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [11121 11517])
-            ("indent-line-to" function (:arguments ("column")) nil [11519 12145])
-            ("current-left-margin" function nil nil [12147 12551])
-            ("move-to-left-margin" function
-               (:user-visible-flag t
-                :arguments ("n" "force"))
-                nil [12553 13468])
-            ("indent-to-left-margin" function nil nil [13568 13879])
-            ("delete-to-left-margin" function (:arguments ("from" "to")) nil [13881 14445])
-            ("set-left-margin" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "width"))
-                nil [14447 15322])
-            ("set-right-margin" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "width"))
-                nil [15324 15883])
-            ("alter-text-property" function (:arguments ("from" "to" "prop" "func" "object")) nil [15885 16553])
-            ("increase-left-margin" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "inc"))
-                nil [16555 17389])
-            ("decrease-left-margin" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "inc"))
-                nil [17391 17872])
-            ("increase-right-margin" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "inc"))
-                nil [17874 18527])
-            ("decrease-right-margin" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "inc"))
-                nil [18529 19060])
-            ("beginning-of-line-text" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [19062 20076])
-            ("indent-region-function" variable (:default-value (function indent-region-line-by-line)) nil [20078 20278])
-            ("indent-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "column"))
-                nil [20280 22343])
-            ("indent-region-line-by-line" function (:arguments ("start" "end")) nil [22345 22833])
-            ("define-obsolete-function-alias" code nil nil [22835 22935])
-            ("indent-relative-first-indent-point" function (:user-visible-flag t) nil [22937 23234])
-            ("indent-relative" function
-               (:user-visible-flag t
-                :arguments ("first-only" "unindented-ok"))
-                nil [23236 24783])
-            ("tab-stop-list" variable nil nil [24785 25343])
-            ("edit-tab-stops-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "" (quote edit-tab-stops-note-changes)) (define-key map "" (quote edit-tab-stops-note-changes)) map)) nil [25345 25576])
-            ("edit-tab-stops-buffer" variable nil nil [25578 25727])
-            ("edit-tab-stops" function (:user-visible-flag t) nil [25729 26752])
-            ("edit-tab-stops-note-changes" function (:user-visible-flag t) nil [26754 27154])
-            ("indent-next-tab-stop" function (:arguments ("column" "prev")) nil [27156 28155])
-            ("indent-accumulate-tab-stops" function (:arguments ("limit")) nil [28157 28397])
-            ("tab-to-tab-stop" function (:user-visible-flag t) nil [28399 28828])
-            ("move-to-tab-stop" function (:user-visible-flag t) nil [28830 29690])
-            ("define-key" code nil nil [29692 29744])
-            ("define-key" code nil nil [29745 29788])
-            ("define-key" code nil nil [29789 29832])
-            ("define-key" code nil nil [29833 29874]))          
-      :file "indent.el"
-      :pointmax 29900
-      :fsize 29899
-      :lastmodtime '(23525 29511 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("w32-vars" include nil nil [912 931])
-            ("explicit-shell-file-name" variable nil nil [933 966])
-            ("declare-function" code nil nil [988 1042])
-            ("declare-function" code nil nil [1043 1119])
-            ("declare-function" code nil nil [1120 1178])
-            ("setq" code nil nil [1265 1298])
-            ("w32-shell-name" function nil nil [1300 1540])
-            ("w32-system-shell-p" function (:arguments ("shell-name")) nil [1542 1689])
-            ("w32-shell-dos-semantics" function nil nil [1691 2009])
-            ("w32-quote-process-args" variable nil nil [2011 2042])
-            ("w32-check-shell-configuration" function (:user-visible-flag t) nil [2069 4527])
-            ("add-hook" code nil nil [4529 4587])
-            ("w32-set-default-process-coding-system" function nil nil [4628 5639])
-            ("define-obsolete-function-alias" code nil nil [5640 5756])
-            ("add-hook" code nil nil [5757 5825])
-            ("w32-valid-locales" variable nil nil [5893 5969])
-            ("if" code nil nil [6055 6347])
-            ("w32-list-locales" function (:user-visible-flag t) nil [6349 6816])
-            ("w32-convert-standard-filename" function (:arguments ("filename")) nil [7588 8459])
-            ("w32-set-system-coding-system" function
-               (:user-visible-flag t
-                :arguments ("coding-system"))
-                nil [8461 9187])
-            ("define-obsolete-function-alias" code nil nil [9188 9290])
-            ("defvaralias" code nil nil [9402 9463])
-            ("set-message-beep" code nil nil [9516 9538])
-            ("w32-charset-info-alist" variable nil nil [9540 9571])
-            ("w32-add-charset-info" function (:arguments ("xlfd-charset" "windows-charset" "codepage")) nil [9593 10321])
-            ("w32-add-charset-info" code nil nil [10472 10532])
-            ("w32-add-charset-info" code nil nil [10533 10593])
-            ("w32-add-charset-info" code nil nil [10650 10709])
-            ("w32-add-charset-info" code nil nil [10710 10769])
-            ("w32-add-charset-info" code nil nil [10770 10835])
-            ("w32-add-charset-info" code nil nil [10836 10904])
-            ("w32-add-charset-info" code nil nil [10905 10967])
-            ("w32-add-charset-info" code nil nil [10968 11026])
-            ("w32-add-charset-info" code nil nil [11027 11087])
-            ("w32-add-charset-info" code nil nil [11088 11146])
-            ("w32-add-charset-info" code nil nil [11147 11199])
-            ("w32-add-charset-info" code nil nil [11200 11257])
-            ("w32-add-charset-info" code nil nil [11258 11322])
-            ("w32-add-charset-info" code nil nil [11323 11384])
-            ("w32-add-charset-info" code nil nil [11385 11445])
-            ("w32-add-charset-info" code nil nil [11446 11506])
-            ("w32-add-charset-info" code nil nil [11507 11566])
-            ("w32-add-charset-info" code nil nil [11567 11626])
-            ("w32-add-charset-info" code nil nil [11627 11687])
-            ("w32-add-charset-info" code nil nil [11688 11748])
-            ("w32-add-charset-info" code nil nil [11749 11807])
-            ("w32-add-charset-info" code nil nil [11808 11869])
-            ("w32-add-charset-info" code nil nil [11870 11928])
-            ("w32-add-charset-info" code nil nil [11929 11995])
-            ("w32-add-charset-info" code nil nil [11996 12057])
-            ("w32-add-charset-info" code nil nil [12058 12115])
-            ("w32-add-charset-info" code nil nil [12116 12174])
-            ("w32-add-charset-info" code nil nil [12325 12385])
-            ("w32-add-charset-info" code nil nil [12386 12448])
-            ("w32-add-charset-info" code nil nil [12449 12513])
-            ("w32-add-charset-info" code nil nil [12514 12578])
-            ("w32-add-charset-info" code nil nil [12579 12634])
-            ("w32-add-charset-info" code nil nil [12635 12692])
-            ("autoload-make-program" variable nil nil [12748 12778])
-            ("generated-autoload-file" variable nil nil [12779 12811])
-            ("w32-batch-update-autoloads" function nil nil [12813 13362])
-            ("w32-append-code-lines" function (:arguments ("orig" "extra")) nil [13364 13858]))          
-      :file "w32-fns.el"
-      :pointmax 13885
-      :fsize 13884
-      :lastmodtime '(23525 29520 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("w32" customgroup (:user-visible-flag t) nil [937 1045])
-            ("w32-use-w32-font-dialog" variable (:default-value t) nil [1109 1653])
-            ("w32-list-proportional-fonts" variable nil nil [1655 1754])
-            ("make-obsolete-variable" code nil nil [1755 1833])
-            ("unless" code nil nil [1835 2004])
-            ("unless" code nil nil [2006 2344])
-            ("w32-fixed-font-alist" variable (:default-value (quote ("Font menu" ("Misc" ("fixed" "Fixedsys") ("") ("Terminal 5x4" "-*-Terminal-normal-r-*-*-*-45-*-*-c-40-*-oem") ("Terminal 6x8" "-*-Terminal-normal-r-*-*-*-60-*-*-c-80-*-oem") ("Terminal 9x5" "-*-Terminal-normal-r-*-*-*-90-*-*-c-50-*-oem") ("Terminal 9x7" "-*-Terminal-normal-r-*-*-*-90-*-*-c-70-*-oem") ("Terminal 9x8" "-*-Terminal-normal-r-*-*-*-90-*-*-c-80-*-oem") ("Terminal 12x12" "-*-Terminal-normal-r-*-*-*-120-*-*-c-120-*-oem") ("Terminal 14x10" "-*-Terminal-normal-r-*-*-*-135-*-*-c-100-*-oem") ("Terminal 6x6 Bold" "-*-Terminal-bold-r-*-*-*-60-*-*-c-60-*-oem") ("") ("Lucida Sans Typewriter.8" "-*-Lucida Sans Typewriter-normal-r-*-*-11-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.9" "-*-Lucida Sans Typewriter-normal-r-*-*-12-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.10" "-*-Lucida Sans Typewriter-normal-r-*-*-13-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.11" "-*-Lucida Sans Typewriter-normal-r-*-*-15-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.12" "-*-Lucida Sans Typewriter-normal-r-*-*-16-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.8 Bold" "-*-Lucida Sans Typewriter-semibold-r-*-*-11-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.9 Bold" "-*-Lucida Sans Typewriter-semibold-r-*-*-12-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.10 Bold" "-*-Lucida Sans Typewriter-semibold-r-*-*-13-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.11 Bold" "-*-Lucida Sans Typewriter-semibold-r-*-*-15-*-*-*-c-*-iso8859-1") ("Lucida Sans Typewriter.12 Bold" "-*-Lucida Sans Typewriter-semibold-r-*-*-16-*-*-*-c-*-iso8859-1")) ("Courier" ("Courier 10x8" "-*-Courier New-normal-r-*-*-*-97-*-*-c-80-iso8859-1") ("Courier 12x9" "-*-Courier New-normal-r-*-*-*-120-*-*-c-90-iso8859-1") ("Courier 15x12" "-*-Courier New-normal-r-*-*-*-150-*-*-c-120-iso8859-1") ("") ("8" "-*-Courier New-normal-r-*-*-11-*-*-*-c-*-iso8859-1") ("9" "-*-Courier New-normal-r-*-*-12-*-*-*-c-*-iso8859-1") ("10" "-*-Courier New-normal-r-*-*-13-*-*-*-c-*-iso8859-1") ("11" "-*-Courier New-normal-r-*-*-15-*-*-*-c-*-iso8859-1") ("12" "-*-Courier New-normal-r-*-*-16-*-*-*-c-*-iso8859-1") ("8 bold" "-*-Courier New-bold-r-*-*-11-*-*-*-c-*-iso8859-1") ("9 bold" "-*-Courier New-bold-r-*-*-12-*-*-*-c-*-iso8859-1") ("10 bold" "-*-Courier New-bold-r-*-*-13-*-*-*-c-*-iso8859-1") ("11 bold" "-*-Courier New-bold-r-*-*-15-*-*-*-c-*-iso8859-1") ("12 bold" "-*-Courier New-bold-r-*-*-16-*-*-*-c-*-iso8859-1") ("8 italic" "-*-Courier New-normal-i-*-*-11-*-*-*-c-*-iso8859-1") ("9 italic" "-*-Courier New-normal-i-*-*-12-*-*-*-c-*-iso8859-1") ("10 italic" "-*-Courier New-normal-i-*-*-13-*-*-*-c-*-iso8859-1") ("11 italic" "-*-Courier New-normal-i-*-*-15-*-*-*-c-*-iso8859-1") ("12 italic" "-*-Courier New-normal-i-*-*-16-*-*-*-c-*-iso8859-1") ("8 bold italic" "-*-Courier New-bold-i-*-*-11-*-*-*-c-*-iso8859-1") ("9 bold italic" "-*-Courier New-bold-i-*-*-12-*-*-*-c-*-iso8859-1") ("10 bold italic" "-*-Courier New-bold-i-*-*-13-*-*-*-c-*-iso8859-1") ("11 bold italic" "-*-Courier New-bold-i-*-*-15-*-*-*-c-*-iso8859-1") ("12 bold italic" "-*-Courier New-bold-i-*-*-16-*-*-*-c-*-iso8859-1"))))) nil [2383 6516])
-            ("make-obsolete-variable" code nil nil [6518 6583])
-            ("w32-vars" package nil nil [6585 6604]))          
-      :file "w32-vars.el"
-      :pointmax 6632
-      :fsize 6631
-      :lastmodtime '(23525 29520 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("subr-x" include nil nil [2948 2965])
-            ("defalias" code nil nil [2983 3029])
-            ("defalias" code nil nil [3045 3095])
-            ("defalias" code nil nil [3111 3149])
-            ("defalias" code nil nil [3165 3225])
-            ("comment" customgroup (:user-visible-flag t) nil [3227 3342])
-            ("comment-use-syntax" variable (:default-value (quote undecided)) nil [3429 3757])
-            ("comment-fill-column" variable nil nil [3759 3926])
-            ("comment-column" variable (:default-value 32) nil [3943 4340])
-            ("make-variable-buffer-local" code nil nil [4341 4385])
-            ("put" code nil nil [4401 4453])
-            ("comment-start" variable nil nil [4470 4570])
-            ("put" code nil nil [4586 4645])
-            ("comment-start-skip" variable nil nil [4662 4931])
-            ("put" code nil nil [4947 5002])
-            ("comment-end-skip" variable nil nil [5019 5123])
-            ("put" code nil nil [5139 5192])
-            ("comment-end" variable (:default-value (purecopy "")) nil [5209 5355])
-            ("put" code nil nil [5371 5419])
-            ("comment-indent-function" variable (:default-value (quote comment-indent-default)) nil [5436 5840])
-            ("comment-insert-comment-function" variable nil nil [5857 6107])
-            ("comment-region-function" variable (:default-value (quote comment-region-default)) nil [6109 6460])
-            ("uncomment-region-function" variable (:default-value (quote uncomment-region-default)) nil [6462 6821])
-            ("block-comment-start" variable nil nil [6839 6871])
-            ("block-comment-end" variable nil nil [6872 6902])
-            ("comment-quote-nested" variable (:default-value t) nil [6904 7041])
-            ("comment-quote-nested-function" variable (:default-value (function comment-quote-nested-default)) nil [7043 7286])
-            ("comment-continue" variable nil nil [7288 7763])
-            ("comment-add" variable nil nil [7765 8123])
-            ("comment-styles" variable
-               (:constant-flag t
-                :default-value (quote ((plain nil nil nil nil "Start in column 0 (do not indent), as in Emacs-20") (indent-or-triple nil nil nil multi-char "Start in column 0, but only for single-char starters") (indent nil nil nil t "Full comment per line, ends not aligned") (aligned nil t nil t "Full comment per line, ends aligned") (box nil t t t "Full comment per line, ends aligned, + top and bottom") (extra-line t nil t t "One comment for all lines, end on a line by itself") (multi-line t nil nil t "One comment for all lines, end on last commented line") (box-multi t t t t "One comment for all lines, + top and bottom"))))
-                nil [8140 10343])
-            ("comment-style" variable (:default-value (quote indent)) nil [10360 10786])
-            ("comment-padding" variable (:default-value (purecopy " ")) nil [10803 11227])
-            ("comment-inline-offset" variable (:default-value 1) nil [11229 11678])
-            ("comment-multi-line" variable nil nil [11695 12131])
-            ("comment-empty-lines" variable nil nil [12133 12517])
-            ("comment-string-strip" function (:arguments ("str" "beforep" "afterp")) nil [12543 12796])
-            ("comment-string-reverse" function (:arguments ("s")) nil [12798 12971])
-            ("comment-normalize-vars" function (:arguments ("noerror")) nil [12988 16221])
-            ("comment-quote-re" function (:arguments ("str" "unp")) nil [16223 16366])
-            ("comment-quote-nested" function (:arguments ("cs" "ce" "unp")) nil [16368 16695])
-            ("comment-quote-nested-default" function (:arguments ("cs" "ce" "unp")) nil [16697 18036])
-            ("comment-use-global-state" variable (:default-value t) nil [18065 18519])
-            ("make-obsolete-variable" code nil nil [18521 18598])
-            ("comment-search-forward" function (:arguments ("limit" "noerror")) nil [18600 20188])
-            ("comment-search-backward" function (:arguments ("limit" "noerror")) nil [20190 21402])
-            ("comment-beginning" function nil nil [21404 23290])
-            ("comment-forward" function (:arguments ("n")) nil [23292 23795])
-            ("comment-enter-backward" function nil nil [23797 25361])
-            ("comment-indent-default" function nil nil [25403 25750])
-            ("comment-choose-indent" function (:arguments ("indent")) nil [25752 28617])
-            ("comment-indent" function
-               (:user-visible-flag t
-                :arguments ("continue"))
-                nil [28634 31324])
-            ("comment-set-column" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [31341 32172])
-            ("comment-kill" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [32189 32756])
-            ("comment-padright" function (:arguments ("str" "n")) nil [32758 34506])
-            ("comment-padleft" function (:arguments ("str" "n")) nil [34533 36220])
-            ("uncomment-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "arg"))
-                nil [36237 36849])
-            ("uncomment-region-default" function (:arguments ("beg" "end" "arg")) nil [36851 40749])
-            ("comment-make-bol-ws" function (:arguments ("len")) nil [40751 41072])
-            ("comment-make-extra-lines" function (:arguments ("cs" "ce" "ccs" "cce" "min-indent" "max-indent" "block")) nil [41074 42600])
-            ("comment-with-narrowing" function (:arguments ("beg" "end" "body")) nil [42602 43658])
-            ("comment-add" function (:arguments ("arg")) nil [43660 44059])
-            ("comment-region-internal" function (:arguments ("beg" "end" "cs" "ce" "ccs" "cce" "block" "lines" "indent")) nil [44061 47563])
-            ("comment-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "arg"))
-                nil [47580 48580])
-            ("comment-region-default" function (:arguments ("beg" "end" "arg")) nil [48582 51090])
-            ("comment-box" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "arg"))
-                nil [51107 51569])
-            ("comment-only-p" function (:arguments ("beg" "end")) nil [51571 51765])
-            ("comment-or-uncomment-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "arg"))
-                nil [51782 52174])
-            ("comment-dwim" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [52191 53793])
-            ("comment-auto-fill-only-comments" variable nil nil [53810 54010])
-            ("comment-valid-prefix-p" function (:arguments ("prefix" "compos")) nil [54012 56104])
-            ("comment-indent-new-line" function
-               (:user-visible-flag t
-                :arguments ("soft"))
-                nil [56122 61039])
-            ("comment-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [61056 62153])
-            ("newcomment" package nil nil [62155 62176]))          
-      :file "newcomment.el"
-      :pointmax 62206
-      :fsize 62205
-      :lastmodtime '(23525 29514 0 0)
-      :unmatched-syntax '((close-paren 2965 . 2966) (symbol 2928 . 2945) (open-paren 2927 . 2928)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("password-cache" include nil nil [1478 1503])
-            ("cl-lib" include nil nil [1524 1541])
-            ("eieio" include nil nil [1543 1559])
-            ("secrets-create-item" function (:prototype-flag t) nil [1561 1602])
-            ("secrets-delete-item" function (:prototype-flag t) nil [1603 1644])
-            ("secrets-get-alias" function (:prototype-flag t) nil [1645 1684])
-            ("secrets-get-attributes" function (:prototype-flag t) nil [1685 1729])
-            ("secrets-get-secret" function (:prototype-flag t) nil [1730 1770])
-            ("secrets-list-collections" function (:prototype-flag t) nil [1771 1817])
-            ("secrets-search-items" function (:prototype-flag t) nil [1818 1860])
-            ("rfc2104-hash" function (:prototype-flag t) nil [1862 1896])
-            ("plstore-open" function (:prototype-flag t) nil [1898 1932])
-            ("plstore-find" function (:prototype-flag t) nil [1933 1967])
-            ("plstore-put" function (:prototype-flag t) nil [1968 2001])
-            ("plstore-delete" function (:prototype-flag t) nil [2002 2038])
-            ("plstore-save" function (:prototype-flag t) nil [2039 2073])
-            ("plstore-get-file" function (:prototype-flag t) nil [2074 2112])
-            ("epg" include nil nil [2133 2147])
-            ("epg-make-context" function (:prototype-flag t) nil [2188 2222])
-            ("epg-context-set-passphrase-callback" function (:prototype-flag t) nil [2223 2276])
-            ("epg-decrypt-string" function (:prototype-flag t) nil [2277 2313])
-            ("epg-encrypt-string" function (:prototype-flag t) nil [2314 2350])
-            ("help-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2352 2391])
-            ("secrets-enabled" variable nil nil [2393 2417])
-            ("auth-source" customgroup (:user-visible-flag t) nil [2419 2517])
-            ("auth-source-cache-expiry" variable (:default-value 7200) nil [2534 2968])
-            ("auth-source-backend" type
-               (:members 
-                  ( ("type" variable
-                       (:documentation "The backend type."
-                        :default-value "(quote netrc)"
-                        :type ":initform")
-                        nil nil)
-                    ("source" variable
-                       (:documentation "The backend source."
-                        :type "string")
-                        nil nil)
-                    ("host" variable
-                       (:documentation "The backend host."
-                        :default-value "t"
-                        :type "t")
-                        nil nil)
-                    ("user" variable
-                       (:documentation "The backend user."
-                        :default-value "t"
-                        :type "t")
-                        nil nil)
-                    ("port" variable
-                       (:documentation "The backend protocol."
-                        :default-value "t"
-                        :type "t")
-                        nil nil)
-                    ("data" variable
-                       (:documentation "Internal backend data."
-                        :default-value "nil")
-                        nil nil)
-                    ("create-function" variable
-                       (:documentation "The create function."
-                        :default-value "ignore"
-                        :type "function")
-                        nil nil)
-                    ("search-function" variable
-                       (:documentation "The search function."
-                        :default-value "ignore"
-                        :type "function")
-                        nil nil))                  
-                :type "class")
-                nil [3150 4374])
-            ("auth-source-protocols" variable (:default-value (quote ((imap "imap" "imaps" "143" "993") (pop3 "pop3" "pop" "pop3s" "110" "995") (ssh "ssh" "22") (sftp "sftp" "115") (smtp "smtp" "25")))) nil [4376 5029])
-            ("auth-source-protocols-customize" variable
-               (:constant-flag t
-                :default-value (mapcar (lambda (a) (let ((p (car-safe a))) (list (quote const) :tag (upcase (symbol-name p)) p))) auth-source-protocols))
-                nil [5148 5383])
-            ("auth-source-creation-defaults" variable nil nil [5385 5547])
-            ("auth-source-creation-prompts" variable nil nil [5549 5648])
-            ("make-obsolete" code nil nil [5650 5710])
-            ("auth-source-save-behavior" variable (:default-value (quote ask)) nil [5712 6047])
-            ("auth-source-netrc-use-gpg-tokens" variable (:default-value (quote never)) nil [6305 7443])
-            ("auth-source-do-cache" variable (:default-value t) nil [7445 7619])
-            ("auth-source-debug" variable nil nil [7621 8435])
-            ("auth-sources" variable (:default-value (quote ("~/.authinfo" "~/.authinfo.gpg" "~/.netrc"))) nil [8437 12925])
-            ("auth-source-gpg-encrypt-to" variable (:default-value t) nil [12927 13315])
-            ("auth-source-do-debug" function (:arguments ("msg")) nil [13317 13422])
-            ("auth-source-do-trivia" function (:arguments ("msg")) nil [13424 13590])
-            ("auth-source-do-warn" function (:arguments ("msg")) nil [13592 13862])
-            ("auth-source-read-char-choice" function (:arguments ("prompt" "choices")) nil [13864 14554])
-            ("auth-source-backend-parser-functions" variable nil nil [14556 14938])
-            ("auth-source-backend-parse" function (:arguments ("entry")) nil [14940 15553])
-            ("auth-source-backends-parser-file" function (:arguments ("entry")) nil [15555 16441])
-            ("add-hook" code nil nil [16524 16606])
-            ("auth-source-backends-parser-macos-keychain" function (:arguments ("entry")) nil [16608 18754])
-            ("add-hook" code nil nil [18756 18848])
-            ("auth-source-backends-parser-secrets" function (:arguments ("entry")) nil [18850 20821])
-            ("add-hook" code nil nil [20823 20908])
-            ("auth-source-backend-parse-parameters" function (:arguments ("entry" "backend")) nil [20910 21443])
-            ("cl-defun" code nil nil [21498 30463])
-            ("auth-source-search-backends" function (:arguments ("backends" "spec" "max" "create" "delete" "require")) nil [30465 31618])
-            ("auth-source-delete" function (:arguments ("spec")) nil [31620 31930])
-            ("auth-source-search-collection" function (:arguments ("collection" "value")) nil [31932 32319])
-            ("auth-source-netrc-cache" variable nil nil [32321 32357])
-            ("auth-source-forget-all-cached" function (:user-visible-flag t) nil [32359 32684])
-            ("auth-source-format-cache-entry" function (:arguments ("spec")) nil [32686 32811])
-            ("auth-source-remember" function (:arguments ("spec" "found")) nil [32813 33031])
-            ("auth-source-recall" function (:arguments ("spec")) nil [33033 33175])
-            ("auth-source-remembered-p" function (:arguments ("spec")) nil [33177 33314])
-            ("auth-source-forget" function (:arguments ("spec")) nil [33316 33567])
-            ("auth-source-forget+" function (:arguments ("spec")) nil [33569 34283])
-            ("auth-source-specmatchp" function (:arguments ("spec" "stored")) nil [34285 34671])
-            ("auth-source-pick-first-password" function (:arguments ("spec")) nil [34673 34994])
-            ("auth-source-format-prompt" function (:arguments ("prompt" "alist")) nil [34996 35416])
-            ("auth-source-ensure-strings" function (:arguments ("values")) nil [35418 35659])
-            ("auth-source--aput-1" function (:arguments ("alist" "key" "val")) nil [35715 36048])
-            ("auth-source--aput" function (:arguments ("var" "key" "val")) nil [36049 36143])
-            ("auth-source--aget" function (:arguments ("alist" "key")) nil [36145 36208])
-            ("cl-defun" code nil nil [36263 40657])
-            ("auth-source-netrc-parse-next-interesting" function nil nil [40659 40996])
-            ("auth-source-netrc-parse-one" function nil nil [40998 41383])
-            ("auth-source-current-line" function (:arguments ("pos")) nil [41412 41635])
-            ("auth-source-netrc-parse-entries" function (:arguments ("check" "max")) nil [41637 43271])
-            ("auth-source-passphrase-alist" variable nil nil [43273 43314])
-            ("auth-source-token-passphrase-callback-function" function (:arguments ("_context" "_key-id" "file")) nil [43316 43943])
-            ("auth-source-epa-extract-gpg-token" function (:arguments ("secret" "file")) nil [43945 44450])
-            ("pp-escape-newlines" variable nil nil [44452 44479])
-            ("auth-source-epa-make-gpg-token" function (:arguments ("secret" "file")) nil [44481 45083])
-            ("auth-source--symbol-keyword" function (:arguments ("symbol")) nil [45085 45162])
-            ("auth-source-netrc-normalize" function (:arguments ("alist" "filename")) nil [45164 46969])
-            ("cl-defun" code nil nil [46971 48583])
-            ("auth-source-netrc-element-or-first" function (:arguments ("v")) nil [48585 48670])
-            ("cl-defun" code nil nil [48857 58246])
-            ("auth-source-netrc-saver" function (:arguments ("file" "add")) nil [58248 61590])
-            ("auth-source-secrets-listify-pattern" function (:arguments ("pattern")) nil [61643 62592])
-            ("cl-defun" code nil nil [62594 67024])
-            ("auth-source-secrets-create" function (:arguments ("spec")) nil [67026 67173])
-            ("cl-defun" code nil nil [67256 71954])
-            ("auth-source--decode-octal-string" function (:arguments ("string")) nil [71957 72586])
-            ("cl-defun" code nil nil [72588 75222])
-            ("auth-source-macos-keychain-result-append" function (:arguments ("result" "generic" "k" "v")) nil [75224 75784])
-            ("auth-source-macos-keychain-create" function (:arguments ("spec")) nil [75786 75865])
-            ("cl-defun" code nil nil [75914 79475])
-            ("cl-defun" code nil nil [79477 85673])
-            ("make-obsolete" code nil nil [85804 85897])
-            ("make-obsolete" code nil nil [85898 85998])
-            ("auth-source-user-or-password" function (:arguments ("mode" "host" "port" "username" "create-missing" "delete-existing")) nil [86000 88917])
-            ("auth-source-user-and-password" function (:arguments ("host" "user")) nil [88919 89679])
-            ("auth-source" package nil nil [89681 89703]))          
-      :file "auth-source.el"
-      :pointmax 89734
-      :fsize 89733
-      :lastmodtime '(23525 29502 0 0)
-      :unmatched-syntax '((close-paren 2147 . 2148) (symbol 2115 . 2132) (open-paren 2114 . 2115) (close-paren 1541 . 1542) (symbol 1506 . 1523) (open-paren 1505 . 1506)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("password-cache" variable (:default-value t) nil [1647 1743])
-            ("password-cache-expiry" variable (:default-value 16) nil [1760 2028])
-            ("password-data" variable (:default-value (make-hash-table :test (function equal))) nil [2030 2084])
-            ("password-read-from-cache" function (:arguments ("key")) nil [2086 2346])
-            ("password-in-cache-p" function (:arguments ("key")) nil [2363 2499])
-            ("password-read" function (:arguments ("prompt" "key")) nil [2501 2935])
-            ("password-read-and-add" function (:arguments ("prompt" "key")) nil [2937 3636])
-            ("password-cache-remove" function (:arguments ("key")) nil [3638 4205])
-            ("password-cache-add" function (:arguments ("key" "password")) nil [4207 4544])
-            ("password-reset" function (:user-visible-flag t) nil [4546 4643])
-            ("password-cache" package nil nil [4645 4670]))          
-      :file "password-cache.el"
-      :pointmax 4704
-      :fsize 4703
-      :lastmodtime '(23525 29514 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "epg.el"
-      :fsize 81368
-      :lastmodtime '(23525 29507 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("autoarg-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (dotimes (i 10) (define-key map (\` [(\, (+ 48 i))]) (quote digit-argument)) (define-key map (\` [(control (\, (+ 48 i)))]) (quote self-insert-command))) (define-key map " " (quote autoarg-terminate)) map)) nil [1726 2061])
-            ("autoarg-kp-digits" variable (:default-value (let (alist) (dotimes (i 10 alist) (push (cons (intern (format "kp-%d" i)) i) alist)))) nil [2294 2419])
-            ("autoarg-kp-digit-argument" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2421 2950])
-            ("autoarg-kp-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (dotimes (i 10) (let ((sym (intern (format "kp-%d" i)))) (define-key map (vector sym) (quote autoarg-kp-digit-argument)))) (define-key map [kp-subtract] (quote negative-argument)) map)) nil [2952 3290])
-            ("define-minor-mode" code nil nil [3307 4419])
-            ("define-minor-mode" code nil nil [4436 5189])
-            ("autoarg-terminate" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [5191 5695])
-            ("autoarg" package nil nil [5697 5715]))          
-      :file "autoarg.el"
-      :pointmax 5742
-      :fsize 5741
-      :lastmodtime '(23525 29502 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("compression" customgroup (:user-visible-flag t) nil [1178 1251])
-            ("jka-compr" customgroup (:user-visible-flag t) nil [1253 1328])
-            ("jka-compr-verbose" variable (:default-value t) nil [1330 1493])
-            ("jka-compr-added-to-file-coding-system-alist" variable nil nil [1570 1626])
-            ("jka-compr-file-name-handler-entry" variable nil nil [1628 1745])
-            ("jka-compr-compression-info-list" variable nil nil [1888 1928])
-            ("jka-compr-mode-alist-additions" variable nil nil [1929 1968])
-            ("jka-compr-load-suffixes" variable nil nil [1969 2001])
-            ("jka-compr-compression-info-list--internal" variable nil nil [2003 2268])
-            ("jka-compr-mode-alist-additions--internal" variable nil nil [2270 2532])
-            ("jka-compr-load-suffixes--internal" variable nil nil [2534 2775])
-            ("jka-compr-build-file-regexp" function nil nil [2779 3307])
-            ("jka-compr-info-regexp" function (:arguments ("info")) nil [3387 3452])
-            ("jka-compr-info-compress-message" function (:arguments ("info")) nil [3453 3518])
-            ("jka-compr-info-compress-program" function (:arguments ("info")) nil [3519 3584])
-            ("jka-compr-info-compress-args" function (:arguments ("info")) nil [3585 3650])
-            ("jka-compr-info-uncompress-message" function (:arguments ("info")) nil [3651 3716])
-            ("jka-compr-info-uncompress-program" function (:arguments ("info")) nil [3717 3782])
-            ("jka-compr-info-uncompress-args" function (:arguments ("info")) nil [3783 3848])
-            ("jka-compr-info-can-append" function (:arguments ("info")) nil [3849 3914])
-            ("jka-compr-info-strip-extension" function (:arguments ("info")) nil [3915 3980])
-            ("jka-compr-info-file-magic-bytes" function (:arguments ("info")) nil [3981 4046])
-            ("jka-compr-get-compression-info" function (:arguments ("filename")) nil [4049 4581])
-            ("jka-compr-install" function nil nil [4583 6306])
-            ("jka-compr-installed-p" function nil nil [6308 6687])
-            ("jka-compr-update" function nil nil [6689 7217])
-            ("jka-compr-set" function (:arguments ("variable" "value")) nil [7219 7344])
-            ("jka-compr-compression-info-list" variable (:default-value (mapcar (quote purecopy) (quote (["\\.Z\\'" "compressing" "compress" ("-c") "uncompressing" "gzip" ("-c" "-q" "-d") nil t "\235"] ["\\.bz2\\'" "bzip2ing" "bzip2" nil "bunzip2ing" "bzip2" ("-d") nil t "BZh"] ["\\.tbz2?\\'" "bzip2ing" "bzip2" nil "bunzip2ing" "bzip2" ("-d") nil nil "BZh"] ["\\.\\(?:tgz\\|svgz\\|sifz\\)\\'" "compressing" "gzip" ("-c" "-q") "uncompressing" "gzip" ("-c" "-q" "-d") t nil "\213"] ["\\.g?z\\'" "compressing" "gzip" ("-c" "-q") "uncompressing" "gzip" ("-c" "-q" "-d") t t "\213"] ["\\.lz\\'" "Lzip compressing" "lzip" ("-c" "-q") "Lzip uncompressing" "lzip" ("-c" "-q" "-d") t t "LZIP"] ["\\.lzma\\'" "LZMA compressing" "lzma" ("-c" "-q" "-z") "LZMA uncompressing" "lzma" ("-c" "-q" "-d") t t ""] ["\\.xz\\'" "XZ compressing" "xz" ("-c" "-q") "XZ uncompressing" "xz" ("-c" "-q" "-d") t t "\3757zXZ�"] ["\\.txz\\'" "XZ compressing" "xz" ("-c" "-q") "XZ uncompressing" "xz" ("-c" "-q" "-d") t nil "\3757zXZ�"] ["\\.dz\\'" nil nil nil "uncompressing" "gzip" ("-c" "-q" "-d") nil t "\213"] ["\\.zst\\'" "zstd compressing" "zstd" ("-c" "-q") "zstd uncompressing" "zstd" ("-c" "-q" "-d") t t "(\265/\375"] ["\\.tzst\\'" "zstd compressing" "zstd" ("-c" "-q") "zstd uncompressing" "zstd" ("-c" "-q" "-d") t nil "(\265/\375"])))) nil [7491 12294])
-            ("jka-compr-mode-alist-additions" variable (:default-value (purecopy (quote (("\\.tgz\\'" . tar-mode) ("\\.tbz2?\\'" . tar-mode) ("\\.txz\\'" . tar-mode) ("\\.tzst\\'" . tar-mode))))) nil [12296 13015])
-            ("jka-compr-load-suffixes" variable (:default-value (purecopy (quote (".gz")))) nil [13017 13647])
-            ("define-minor-mode" code nil nil [13649 14374])
-            ("with-auto-compression-mode" function (:arguments ("body")) nil [14376 14815])
-            ("put" code nil nil [14913 14951])
-            ("put" code nil nil [14952 15095])
-            ("when" code nil nil [15118 15172])
-            ("jka-cmpr-hook" package nil nil [15174 15198]))          
-      :file "jka-cmpr-hook.el"
-      :pointmax 15231
-      :fsize 15230
-      :lastmodtime '(23525 29512 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("auto-insert" customgroup (:user-visible-flag t) nil [1883 2087])
-            ("auto-insert" variable (:default-value (quote not-modified)) nil [2090 2888])
-            ("auto-insert-query" variable (:default-value (quote function)) nil [2890 3224])
-            ("auto-insert-prompt" variable (:default-value "Perform %s auto-insertion? ") nil [3226 3447])
-            ("auto-insert-alist" variable (:default-value (quote ((("\\.\\([Hh]\\|hh\\|hpp\\|hxx\\|h\\+\\+\\)\\'" . "C / C++ header") (replace-regexp-in-string "[^A-Z0-9]" "_" (replace-regexp-in-string "\\+" "P" (upcase (file-name-nondirectory buffer-file-name)))) "#ifndef " str n "#define " str "
-
-" _ "
-
-#endif") (("\\.\\([Cc]\\|cc\\|cpp\\|cxx\\|c\\+\\+\\)\\'" . "C / C++ program") nil "#include \"" (let ((stem (file-name-sans-extension buffer-file-name)) ret) (dolist (ext (quote ("H" "h" "hh" "hpp" "hxx" "h++")) ret) (when (file-exists-p (concat stem "." ext)) (setq ret (file-name-nondirectory (concat stem "." ext)))))) & 34 | -10) (("[Mm]akefile\\'" . "Makefile") . "makefile.inc") (html-mode lambda nil (sgml-tag "html")) (plain-tex-mode . "tex-insert.tex") (bibtex-mode . "tex-insert.tex") (latex-mode "options, RET: " "\\documentclass[" str & 93 | -1 123 (read-string "class: ") "}
-" ("package, %s: " "\\usepackage[" (read-string "options, RET: ") & 93 | -1 123 str "}
-") _ "
-\\begin{document}
-" _ "
-\\end{document}") (("/bin/.*[^/]\\'" . "Shell-Script mode magic number") lambda nil (if (eq major-mode (default-value (quote major-mode))) (sh-mode))) (ada-mode . ada-header) (("\\.[1-9]\\'" . "Man page skeleton") "Short description: " ".\\\" Copyright (C), " (format-time-string "%Y") "  " (getenv "ORGANIZATION") | (progn user-full-name) "
-.\\\" You may distribute this file under the terms of the GNU Free
-.\\\" Documentation License.
-.TH " (file-name-base) " " (file-name-extension (buffer-file-name)) " " (format-time-string "%Y-%m-%d ") "
-.SH NAME
-" (file-name-base) " \\- " str "
-.SH SYNOPSIS
-.B " (file-name-base) "
-" _ "
-.SH DESCRIPTION
-.SH OPTIONS
-.SH FILES
-.SH \"SEE ALSO\"
-.SH BUGS
-.SH AUTHOR
-" (user-full-name) (quote (if (search-backward "&" (line-beginning-position) t) (replace-match (capitalize (user-login-name)) t t))) (quote (end-of-line 1)) " <" (progn user-mail-address) ">
-") (("\\.el\\'" . "Emacs Lisp header") "Short description: " ";;; " (file-name-nondirectory (buffer-file-name)) " --- " str (make-string (max 2 (- 80 (current-column) 27)) 32) "-*- lexical-binding: t; -*-" (quote (setq lexical-binding t)) "
-
-;; Copyright (C) " (format-time-string "%Y") "  " (getenv "ORGANIZATION") | (progn user-full-name) "
-
-;; Author: " (user-full-name) (quote (if (search-backward "&" (line-beginning-position) t) (replace-match (capitalize (user-login-name)) t t))) (quote (end-of-line 1)) " <" (progn user-mail-address) ">
-;; Keywords: " (quote (require (quote finder))) (quote (setq v1 (mapcar (lambda (x) (list (symbol-name (car x)))) finder-known-keywords) v2 (mapconcat (lambda (x) (format "%12s:  %s" (car x) (cdr x))) finder-known-keywords "
-"))) ((let ((minibuffer-help-form v2)) (completing-read "Keyword, C-h: " v1 nil t)) str ", ") & -2 "
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; " _ "
-
-;;; Code:
-
-
-
-(provide '" (file-name-base) ")
-;;; " (file-name-nondirectory (buffer-file-name)) " ends here
-") (("\\.texi\\(nfo\\)?\\'" . "Texinfo file skeleton") "Title: " "\\input texinfo   @c -*-texinfo-*-
-@c %**start of header
-@setfilename " (file-name-base) ".info
-" "@settitle " str "
-@c %**end of header
-@copying
-" (setq short-description (read-string "Short description: ")) ".
-
-" "Copyright @copyright{} " (format-time-string "%Y") "  " (getenv "ORGANIZATION") | (progn user-full-name) "
-
-@quotation
-Permission is granted to copy, distribute and/or modify this document
-under the terms of the GNU Free Documentation License, Version 1.3
-or any later version published by the Free Software Foundation;
-with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
-A copy of the license is included in the section entitled ``GNU
-Free Documentation License''.
-
-A copy of the license is also available from the Free Software
-Foundation Web site at @url{https://www.gnu.org/licenses/fdl.html}.
-
-@end quotation
-
-The document was typeset with
-@uref{http://www.texinfo.org/, GNU Texinfo}.
-
-@end copying
-
-@titlepage
-@title " str "
-@subtitle " short-description "
-@author " (getenv "ORGANIZATION") | (progn user-full-name) " <" (progn user-mail-address) ">
-@page
-@vskip 0pt plus 1filll
-@insertcopying
-@end titlepage
-
-@c Output the table of the contents at the beginning.
-@contents
-
-@ifnottex
-@node Top
-@top " str "
-
-@insertcopying
-@end ifnottex
-
-@c Generate the nodes for this menu with `C-c C-u C-m'.
-@menu
-@end menu
-
-@c Update all node entries with `C-c C-u C-n'.
-@c Insert new nodes with `C-c C-c n'.
-@node Chapter One
-@chapter Chapter One
-
-" _ "
-
-@node Copying This Manual
-@appendix Copying This Manual
-
-@menu
-* GNU Free Documentation License::  License for copying this manual.
-@end menu
-
-@c Get fdl.texi from https://www.gnu.org/licenses/fdl.html
-@include fdl.texi
-
-@node Index
-@unnumbered Index
-
-@printindex cp
-
-@bye
-
-@c " (file-name-nondirectory (buffer-file-name)) " ends here
-")))) nil [3450 10751])
-            ("auto-insert-directory" variable (:default-value "~/insert/") nil [10809 11052])
-            ("auto-insert" function (:user-visible-flag t) nil [11070 13144])
-            ("define-auto-insert" function (:arguments ("condition" "action" "after")) nil [13162 13879])
-            ("define-minor-mode" code nil nil [13896 14431])
-            ("autoinsert" package nil nil [14433 14454]))          
-      :file "autoinsert.el"
-      :pointmax 14484
-      :fsize 14483
-      :lastmodtime '(23525 29502 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("image" include nil nil [1257 1273])
-            ("image-file-name-extensions" variable (:default-value (purecopy (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")))) nil [1291 2069])
-            ("image-file-name-regexps" variable nil nil [2086 2797])
-            ("image-file-name-regexp" function nil nil [2815 3318])
-            ("insert-image-file" function (:arguments ("file" "visit" "beg" "end" "replace")) nil [3336 4867])
-            ("image-file-yank-handler" function (:arguments ("string")) nil [5034 5582])
-            ("put" code nil nil [5584 5623])
-            ("image-file-handler" function (:arguments ("operation" "args")) nil [5624 6061])
-            ("image-file-call-underlying" function (:arguments ("function" "operation" "args")) nil [6063 6487])
-            ("define-minor-mode" code nil nil [6505 7318])
-            ("image-file" package nil nil [7321 7342]))          
-      :file "image-file.el"
-      :pointmax 7372
-      :fsize 7371
-      :lastmodtime '(23525 29511 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("image" customgroup (:user-visible-flag t) nil [892 951])
-            ("defalias" code nil nil [953 991])
-            ("image-type-header-regexps" variable
-               (:constant-flag t
-                :default-value (\` (("\\`/[	
-
 ]*\\*.*XPM.\\*/" . xpm) ("\\`P[1-6]\\(?:\\(?:\\(?:#[^

-]*[

-]\\)*[[:space:]]\\)+\\(?:\\(?:#[^

-]*[

-]\\)*[0-9]\\)+\\)\\{2\\}" . pbm) ("\\`GIF8[79]a" . gif) ("\\`\211PNG

-
-" . png) ("\\`[	
-
 ]*#define \\([a-z0-9_]+\\)_width [0-9]+
-#define \\1_height [0-9]+
-\\(#define \\1_x_hot [0-9]+
-#define \\1_y_hot [0-9]+
-\\)?static \\(unsigned \\)?char \\1_bits" . xbm) ("\\`\\(?:MM�\\*\\|II\\*�\\)" . tiff) ("\\`[	
-
 ]*%!PS" . postscript) ("\\`\377\330" . jpeg) ((\, (let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)") (comment-re (concat "\\(?:!--" incomment-re "*-->[ 	

-]*<\\)"))) (concat "\\(?:<\\?xml[ 	

-]+[^>]*>\\)?[ 	

-]*<" comment-re "*" "\\(?:!DOCTYPE[ 	

-]+[^>]*>[ 	

-]*<[ 	

-]*" comment-re "*\\)?" "[Ss][Vv][Gg]"))) . svg))))
-                nil [993 2316])
-            ("image-type-file-name-regexps" variable (:default-value (quote (("\\.png\\'" . png) ("\\.gif\\'" . gif) ("\\.jpe?g\\'" . jpeg) ("\\.bmp\\'" . bmp) ("\\.xpm\\'" . xpm) ("\\.pbm\\'" . pbm) ("\\.xbm\\'" . xbm) ("\\.ps\\'" . postscript) ("\\.tiff?\\'" . tiff) ("\\.svgz?\\'" . svg)))) nil [2318 2777])
-            ("image-type-auto-detectable" variable (:default-value (quote ((pbm . t) (xbm) (bmp . maybe) (gif . maybe) (png . maybe) (xpm) (jpeg . maybe) (tiff . maybe) (svg . maybe) (postscript)))) nil [2954 3457])
-            ("image-format-suffixes" variable (:default-value (quote ((image/x-rgb "rgb") (image/x-icon "ico")))) nil [3459 3994])
-            ("image-load-path" variable (:default-value (list (file-name-as-directory (expand-file-name "images" data-directory)) (quote data-directory) (quote load-path))) nil [3996 4699])
-            ("image-scaling-factor" variable (:default-value (quote auto)) nil [4701 5244])
-            ("image-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "-" (quote image-decrease-size)) (define-key map "+" (quote image-increase-size)) (define-key map "r" (quote image-rotate)) (define-key map "o" (quote image-save)) map)) nil [5289 5520])
-            ("image-load-path-for-library" function (:arguments ("library" "image" "path" "no-error")) nil [5522 9569])
-            ("image-jpeg-p" function (:arguments ("data")) nil [9665 10453])
-            ("image-type-from-data" function (:arguments ("data")) nil [10471 11044])
-            ("image-type-from-buffer" function nil nil [11062 11908])
-            ("image-type-from-file-header" function (:arguments ("file")) nil [11926 12413])
-            ("image-type-from-file-name" function (:arguments ("file")) nil [12431 12960])
-            ("image-type" function (:arguments ("source" "type" "data-p")) nil [12977 13850])
-            ("if" code nil nil [13853 14002])
-            ("define-obsolete-variable-alias" code nil nil [14004 14095])
-            ("image-type-available-p" function (:arguments ("type")) nil [14112 14318])
-            ("image-type-auto-detected-p" function nil nil [14336 14981])
-            ("create-image" function (:arguments ("file-or-data" "type" "data-p" "props")) nil [14999 16252])
-            ("image--set-property" function (:arguments ("image" "property" "value")) nil [16254 16761])
-            ("image-property" function (:arguments ("image" "property")) nil [16763 17048])
-            ("image-compute-scaling-factor" function (:arguments ("scaling")) nil [17050 17530])
-            ("put-image" function (:arguments ("image" "pos" "string" "area")) nil [17547 18873])
-            ("insert-image" function (:arguments ("image" "string" "area" "slice")) nil [18891 20784])
-            ("insert-sliced-image" function (:arguments ("image" "string" "area" "rows" "cols")) nil [20802 22515])
-            ("remove-images" function (:arguments ("start" "end" "buffer")) nil [22534 23021])
-            ("image-search-load-path" function (:arguments ("file" "path")) nil [23023 23729])
-            ("find-image" function (:arguments ("specs")) nil [23746 25059])
-            ("defimage" function (:arguments ("symbol" "specs" "doc")) nil [25077 25945])
-            ("image-default-frame-delay" variable (:default-value 0.1) nil [25973 26131])
-            ("image-multi-frame-p" function (:arguments ("image")) nil [26133 26829])
-            ("image-animated-p" function (:arguments ("image")) nil [26831 27011])
-            ("make-obsolete" code nil nil [27013 27074])
-            ("image-animate" function (:arguments ("image" "index" "limit")) nil [27096 27838])
-            ("image-animate-timer" function (:arguments ("image")) nil [27840 28224])
-            ("image-minimum-frame-delay" variable
-               (:constant-flag t
-                :default-value 0.01)
-                nil [28226 28336])
-            ("image-current-frame" function (:arguments ("image")) nil [28338 28468])
-            ("image-show-frame" function (:arguments ("image" "n" "nocheck")) nil [28470 28852])
-            ("image-animate-get-speed" function (:arguments ("image")) nil [28854 28982])
-            ("image-animate-set-speed" function (:arguments ("image" "value" "multiply")) nil [28984 29318])
-            ("image-animate-timeout" function (:arguments ("image" "n" "count" "time-elapsed" "limit" "target-time")) nil [29527 31345])
-            ("imagemagick-types-inhibit" variable nil nil [31349 31383])
-            ("imagemagick-enabled-types" variable nil nil [31384 31418])
-            ("imagemagick-filter-types" function nil nil [31420 32237])
-            ("imagemagick--file-regexp" variable nil nil [32239 32456])
-            ("imagemagick-register-types" function nil nil [32473 33965])
-            ("imagemagick-types-inhibit" variable (:default-value (quote (C HTML HTM INFO M TXT PDF))) nil [33967 34829])
-            ("imagemagick-enabled-types" variable (:default-value (quote (3FR ART ARW AVS BMP BMP2 BMP3 CAL CALS CMYK CMYKA CR2 CRW CUR CUT DCM DCR DCX DDS DJVU DNG DPX EXR FAX FITS GBR GIF GIF87 GRB HRZ ICB ICO ICON J2C JNG JP2 JPC JPEG JPG JPX K25 KDC MIFF MNG MRW MSL MSVG MTV NEF ORF OTB PBM PCD PCDS PCL PCT PCX PDB PEF PGM PICT PIX PJPEG PNG PNG24 PNG32 PNG8 PNM PPM PSD PTIF PWP RAF RAS RBG RGB RGBA RGBO RLA RLE SCR SCT SFW SGI SR2 SRF SUN SVG SVGZ TGA TIFF TIFF64 TILE TIM TTF UYVY VDA VICAR VID VIFF VST WBMP WPG X3F XBM XC XCF XPM XV XWD YCbCr YCbCrA YUV))) nil [34831 36374])
-            ("imagemagick-register-types" code nil nil [36376 36404])
-            ("image-increase-size" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [36406 36681])
-            ("image-decrease-size" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [36683 36959])
-            ("image--get-image" function nil nil [36961 37132])
-            ("image--get-imagemagick-and-warn" function nil nil [37134 37398])
-            ("image--change-size" function (:arguments ("factor")) nil [37400 37694])
-            ("image--image-without-parameters" function (:arguments ("image")) nil [37696 38036])
-            ("image--current-scaling" function (:arguments ("image" "new-image")) nil [38038 38417])
-            ("image-rotate" function (:user-visible-flag t) nil [38419 38895])
-            ("image-save" function (:user-visible-flag t) nil [38897 39537])
-            ("image" package nil nil [39539 39555]))          
-      :file "image.el"
-      :pointmax 39580
-      :fsize 39579
-      :lastmodtime '(23525 29511 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("seq" include nil nil [1184 1198])
-            ("subr-x" include nil nil [1218 1235])
-            ("cl-lib" include nil nil [1258 1275])
-            ("auth-source" include nil nil [1277 1299])
-            ("url-parse" include nil nil [1300 1320])
-            ("cl-defun" code nil nil [1322 1914])
-            ("auth-source-pass--build-result" function (:arguments ("host" "port" "user")) nil [1916 2579])
-            ("auth-source-pass-enable" function nil nil [2596 2903])
-            ("auth-source-pass-backend" variable (:default-value (auth-source-backend (format "Password store") :source "." :type (quote password-store) :search-function (function auth-source-pass-search))) nil [2905 3133])
-            ("auth-source-pass-backend-parse" function (:arguments ("entry")) nil [3135 3351])
-            ("add-hook" code nil nil [3353 3434])
-            ("auth-source-pass-get" function (:arguments ("key" "entry")) nil [3438 3986])
-            ("auth-source-pass--read-entry" function (:arguments ("entry")) nil [3988 4310])
-            ("auth-source-pass-parse-entry" function (:arguments ("entry")) nil [4312 4696])
-            ("auth-source-pass--parse-secret" function (:arguments ("contents")) nil [4698 4910])
-            ("auth-source-pass--parse-data" function (:arguments ("contents")) nil [4912 5583])
-            ("auth-source-pass--user-match-p" function (:arguments ("entry" "user")) nil [5585 5750])
-            ("auth-source-pass--hostname" function (:arguments ("host")) nil [5752 5899])
-            ("auth-source-pass--hostname-with-user" function (:arguments ("host")) nil [5901 6213])
-            ("auth-source-pass--do-debug" function (:arguments ("msg")) nil [6215 6440])
-            ("auth-source-pass--select-one-entry" function (:arguments ("entries" "user")) nil [6442 7253])
-            ("auth-source-pass--entry-valid-p" function (:arguments ("entry")) nil [7255 7546])
-            ("auth-source-pass-entries" function nil nil [7630 7927])
-            ("auth-source-pass--find-all-by-entry-name" function (:arguments ("entryname" "user")) nil [7929 8644])
-            ("auth-source-pass--find-one-by-entry-name" function (:arguments ("entryname" "user")) nil [8646 9381])
-            ("auth-source-pass--find-match" function (:arguments ("host" "user")) nil [9383 10431])
-            ("auth-source-pass" package nil nil [10433 10460]))          
-      :file "auth-source-pass.el"
-      :pointmax 10495
-      :fsize 10494
-      :lastmodtime '(23525 29502 0 0)
-      :unmatched-syntax '((close-paren 1275 . 1276) (symbol 1238 . 1255) (open-paren 1237 . 1238) (close-paren 1235 . 1236) (symbol 1200 . 1217) (open-paren 1199 . 1200)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("epa-file" customgroup (:user-visible-flag t) nil [911 1029])
-            ("epa-file--file-name-regexp-set" function (:arguments ("variable" "value")) nil [1031 1199])
-            ("epa-file-name-regexp" variable (:default-value (purecopy "\\.gpg\\(~\\|\\.~[0-9]+~\\)?\\'")) nil [1201 1644])
-            ("epa-file-inhibit-auto-save" variable (:default-value t) nil [1646 1790])
-            ("epa-file-encrypt-to" variable nil nil [1792 1913])
-            ("put" code nil nil [1915 2149])
-            ("put" code nil nil [2151 2196])
-            ("epa-file-handler" variable (:default-value (cons epa-file-name-regexp (quote epa-file-handler))) nil [2198 2271])
-            ("epa-file-auto-mode-alist-entry" variable (:default-value (list epa-file-name-regexp nil (quote epa-file))) nil [2273 2356])
-            ("epa-file-name-regexp-update" function nil nil [2358 2526])
-            ("epa-file-find-file-hook" function nil nil [2528 2705])
-            ("define-minor-mode" code nil nil [2707 3808])
-            ("put" code nil nil [3810 3847])
-            ("put" code nil nil [3848 3920])
-            ("epa-hook" package nil nil [3922 3941]))          
-      :file "epa-hook.el"
-      :pointmax 3969
-      :fsize 3968
-      :lastmodtime '(23525 29507 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("internal-lisp-face-attributes" variable (:default-value [nil :family :foundry :swidth :height :weight :slant :underline :inverse :foreground :background :stipple :overline :strike :box :font :inherit :fontset :vector]) nil [2615 2826])
-            ("face-attrs-more-relative-p" function (:arguments ("attrs1" "attrs2")) nil [2828 3869])
-            ("face-remap-order" function (:arguments ("entry")) nil [3871 4150])
-            ("face-remap-add-relative" function (:arguments ("face" "specs")) nil [4167 5780])
-            ("face-remap-remove-relative" function (:arguments ("cookie")) nil [5782 6480])
-            ("face-remap-reset-base" function (:arguments ("face")) nil [6497 7288])
-            ("face-remap-set-base" function (:arguments ("face" "specs")) nil [7343 8604])
-            ("text-scale-mode-step" variable (:default-value 1.2) nil [8696 8906])
-            ("text-scale-mode-remapping" variable nil nil [8956 8994])
-            ("make-variable-buffer-local" code nil nil [8995 9050])
-            ("text-scale-mode-lighter" variable (:default-value "+0") nil [9122 9159])
-            ("make-variable-buffer-local" code nil nil [9160 9213])
-            ("text-scale-mode-amount" variable nil nil [9290 9323])
-            ("make-variable-buffer-local" code nil nil [9324 9376])
-            ("define-minor-mode" code nil nil [9378 10536])
-            ("text-scale-min-amount" function nil nil [10538 10899])
-            ("text-scale-max-amount" function nil nil [10901 11273])
-            ("text-scale-set" function
-               (:user-visible-flag t
-                :arguments ("level"))
-                nil [11290 11877])
-            ("text-scale-increase" function
-               (:user-visible-flag t
-                :arguments ("inc"))
-                nil [11894 12817])
-            ("text-scale-decrease" function
-               (:user-visible-flag t
-                :arguments ("dec"))
-                nil [12834 13043])
-            ("text-scale-adjust" function
-               (:user-visible-flag t
-                :arguments ("inc"))
-                nil [13348 15176])
-            ("buffer-face-mode-face" variable (:default-value (quote variable-pitch)) nil [15274 15650])
-            ("buffer-face-mode-remapping" variable nil nil [15702 15741])
-            ("make-variable-buffer-local" code nil nil [15742 15798])
-            ("define-minor-mode" code nil nil [15815 16448])
-            ("buffer-face-set" function
-               (:user-visible-flag t
-                :arguments ("specs"))
-                nil [16465 17209])
-            ("buffer-face-toggle" function
-               (:user-visible-flag t
-                :arguments ("specs"))
-                nil [17226 18217])
-            ("buffer-face-mode-invoke" function (:arguments ("specs" "arg" "interactive")) nil [18219 19257])
-            ("variable-pitch-mode" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [19368 19735])
-            ("face-remap" package nil nil [19738 19759]))          
-      :file "face-remap.el"
-      :pointmax 19789
-      :fsize 19788
-      :lastmodtime '(23525 29507 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("bs" customgroup (:user-visible-flag t) nil [5372 5585])
-            ("bs-appearance" customgroup (:user-visible-flag t) nil [5587 5691])
-            ("bs-attributes-list" variable (:default-value (quote (("" 1 1 left bs--get-marked-string) ("M" 1 1 left bs--get-modified-string) ("R" 2 2 left bs--get-readonly-string) ("Buffer" bs--get-name-length 10 left bs--get-name) ("" 1 1 left " ") ("Size" 8 8 right bs--get-size-string) ("" 1 1 left " ") ("Mode" 12 12 right bs--get-mode-name) ("" 2 2 left "  ") ("File" 12 12 left bs--get-file-name) ("" 2 2 left "  ")))) nil [5693 7152])
-            ("bs--make-header-match-string" function nil nil [7154 7341])
-            ("bs-mode-font-lock-keywords" variable (:default-value (list (list (bs--make-header-match-string) (quote (1 font-lock-type-face append)) (quote (1 (quote bold) append))) (list "^\\(.*\\*.*\\*.*\\)$" 1 (if (facep (quote font-lock-constant-face)) (quote font-lock-constant-face) (quote font-lock-comment-face))) (quote ("^..\\(.*Dired .*\\)$" 1 font-lock-function-name-face)) (quote ("^.\\(\\*\\) +[^\\*]" 1 font-lock-comment-face)))) nil [7365 7988])
-            ("bs-max-window-height" variable (:default-value 20) nil [7990 8118])
-            ("bs-dont-show-regexp" variable nil nil [8120 8306])
-            ("bs-must-show-regexp" variable nil nil [8308 8698])
-            ("bs-must-always-show-regexp" variable nil nil [8700 9004])
-            ("bs-dont-show-function" variable nil nil [9006 9242])
-            ("bs-must-show-function" variable nil nil [9244 9388])
-            ("bs-buffer-sort-function" variable nil nil [9390 9634])
-            ("bs-maximal-buffer-name-column" variable (:default-value 45) nil [9636 9997])
-            ("bs-minimal-buffer-name-column" variable (:default-value 15) nil [9999 10360])
-            ("bs-header-lines-length" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [10362 10455])
-            ("bs-configurations" variable (:default-value (quote (("all" nil nil nil nil nil) ("files" nil nil nil bs-visits-non-file bs-sort-buffer-interns-are-last) ("files-and-scratch" "^\\*scratch\\*$" nil nil bs-visits-non-file bs-sort-buffer-interns-are-last) ("all-intern-last" nil nil nil nil bs-sort-buffer-interns-are-last)))) nil [10457 11389])
-            ("bs-default-configuration" variable (:default-value "files") nil [11391 11682])
-            ("bs-alternative-configuration" variable (:default-value "all") nil [11684 11932])
-            ("bs-current-configuration" variable (:default-value bs-default-configuration) nil [11934 12100])
-            ("bs-cycle-configuration-name" variable nil nil [12102 12452])
-            ("bs-string-show-always" variable (:default-value "+") nil [12454 12602])
-            ("bs-string-show-never" variable (:default-value "-") nil [12604 12750])
-            ("bs-string-current" variable (:default-value ".") nil [12752 12885])
-            ("bs-string-current-marked" variable (:default-value "#") nil [12887 13045])
-            ("bs-string-marked" variable (:default-value ">") nil [13047 13176])
-            ("bs-string-show-normally" variable (:default-value " ") nil [13178 13318])
-            ("bs--name-entry-length" variable (:default-value 20) nil [13320 13426])
-            ("defvar-local" code nil nil [13597 13897])
-            ("unless" code nil nil [13938 14025])
-            ("bs--sort-by-name" function (:arguments ("b1" "b2")) nil [14027 14155])
-            ("bs--sort-by-filename" function (:arguments ("b1" "b2")) nil [14157 14313])
-            ("bs--sort-by-mode" function (:arguments ("b1" "b2")) nil [14315 14563])
-            ("bs--sort-by-size" function (:arguments ("b1" "b2")) nil [14565 14683])
-            ("bs-sort-functions" variable (:default-value (quote (("by name" bs--sort-by-name "Buffer" region) ("by size" bs--sort-by-size "Size" region) ("by mode" bs--sort-by-mode "Mode" region) ("by filename" bs--sort-by-filename "File" region) ("by nothing" nil nil nil)))) nil [14685 15615])
-            ("bs-define-sort-function" function (:arguments ("name" "fun" "regexp-for-sorting" "face")) nil [15617 16425])
-            ("bs--current-sort-function" variable nil nil [16427 16577])
-            ("bs-default-sort-name" variable (:default-value "by nothing") nil [16579 16962])
-            ("bs--buffer-coming-from" variable nil nil [16964 17075])
-            ("bs--show-all" variable nil nil [17077 17296])
-            ("bs--window-config-coming-from" variable nil nil [17298 17404])
-            ("bs--intern-show-never" variable (:default-value "^ \\|\\*buffer-selection\\*") nil [17406 17624])
-            ("bs-current-list" variable nil nil [17626 17729])
-            ("bs--marked-buffers" variable nil nil [17731 17817])
-            ("bs-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map " " (quote bs-select)) (define-key map "f" (quote bs-select)) (define-key map "v" (quote bs-view)) (define-key map "!" (quote bs-select-in-one-window)) (define-key map [mouse-2] (quote bs-mouse-select)) (define-key map [button2] (quote bs-mouse-select)) (define-key map "F" (quote bs-select-other-frame)) (let ((key 49)) (while (<= key 57) (define-key map (char-to-string key) (quote digit-argument)) (setq key (1+ key)))) (define-key map "-" (quote negative-argument)) (define-key map "-" (quote negative-argument)) (define-key map "o" (quote bs-select-other-window)) (define-key map "" (quote bs-tmp-select-other-window)) (define-key map [mouse-3] (quote bs-mouse-select-other-frame)) (define-key map [button3] (quote bs-mouse-select-other-frame)) (define-key map [up] (quote bs-up)) (define-key map "n" (quote bs-down)) (define-key map "p" (quote bs-up)) (define-key map [down] (quote bs-down)) (define-key map "
" (quote bs-select)) (define-key map "b" (quote bs-bury-buffer)) (define-key map "s" (quote bs-save)) (define-key map "S" (quote bs-show-sorted)) (define-key map "a" (quote bs-toggle-show-all)) (define-key map "d" (quote bs-delete)) (define-key map "" (quote bs-delete-backward)) (define-key map "k" (quote bs-delete)) (define-key map "g" (quote bs-refresh)) (define-key map "C" (quote bs-set-configuration-and-refresh)) (define-key map "c" (quote bs-select-next-configuration)) (define-key map "q" (quote bs-kill)) (define-key map "" (quote bs-kill)) (define-key map "" (quote bs-abort)) (define-key map "" (quote bs-abort)) (define-key map "%" (quote bs-toggle-readonly)) (define-key map "~" (quote bs-clear-modified)) (define-key map "M" (quote bs-toggle-current-to-show)) (define-key map "+" (quote bs-set-current-buffer-to-show-always)) (define-key map "t" (quote bs-visit-tags-table)) (define-key map "m" (quote bs-mark-current)) (define-key map "u" (quote bs-unmark-current)) (define-key map "U" (quote bs-unmark-all)) (define-key map "" (quote bs-unmark-previous)) (define-key map ">" (quote scroll-right)) (define-key map "<" (quote scroll-left)) (define-key map "?" (quote bs-help)) map)) nil [17819 20333])
-            ("bs-buffer-list" function (:arguments ("list" "sort-description")) nil [20497 22812])
-            ("bs-buffer-sort" function (:arguments ("buffer-list")) nil [22814 23018])
-            ("bs--redisplay" function (:arguments ("keep-line-p" "sort-description")) nil [23020 23449])
-            ("bs--goto-current-buffer" function nil nil [23451 23933])
-            ("bs--current-config-message" function nil nil [23935 24163])
-            ("bs--track-window-changes" function (:arguments ("frame")) nil [24165 24436])
-            ("bs--remove-hooks" function nil nil [24438 24729])
-            ("put" code nil nil [24731 24766])
-            ("define-derived-mode" code nil nil [24768 27292])
-            ("bs--restore-window-config" function nil nil [27294 27612])
-            ("bs-kill" function (:user-visible-flag t) nil [27614 27768])
-            ("bs-abort" function (:user-visible-flag t) nil [27770 27888])
-            ("bs-set-configuration-and-refresh" function (:user-visible-flag t) nil [27890 28118])
-            ("bs-refresh" function
-               (:user-visible-flag t
-                :arguments ("_ignored"))
-                nil [28120 28277])
-            ("bs--set-window-height" function nil nil [28279 28483])
-            ("bs--current-buffer" function nil nil [28485 28779])
-            ("bs--update-current-line" function nil nil [28781 29072])
-            ("bs-view" function (:user-visible-flag t) nil [29074 29219])
-            ("bs-select" function (:user-visible-flag t) nil [29221 30085])
-            ("bs-select-other-window" function (:user-visible-flag t) nil [30087 30541])
-            ("bs-tmp-select-other-window" function (:user-visible-flag t) nil [30543 30756])
-            ("bs-select-other-frame" function (:user-visible-flag t) nil [30758 31039])
-            ("bs-mouse-select-other-frame" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [31041 31269])
-            ("bs-mouse-select" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [31271 31432])
-            ("bs-select-in-one-window" function (:user-visible-flag t) nil [31434 31625])
-            ("bs-bury-buffer" function (:user-visible-flag t) nil [31627 31758])
-            ("bs-save" function (:user-visible-flag t) nil [31760 31918])
-            ("bs-visit-tags-table" function (:user-visible-flag t) nil [31920 32184])
-            ("bs-toggle-current-to-show" function (:user-visible-flag t) nil [32186 32690])
-            ("bs-set-current-buffer-to-show-always" function
-               (:user-visible-flag t
-                :arguments ("not-to-show-p"))
-                nil [32692 33108])
-            ("bs-set-current-buffer-to-show-never" function (:user-visible-flag t) nil [33110 33281])
-            ("bs--set-toggle-to-show" function (:arguments ("buffer" "what")) nil [33283 33633])
-            ("bs--mark-unmark" function (:arguments ("count" "fun")) nil [33635 33926])
-            ("bs-mark-current" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [33928 34168])
-            ("bs-unmark-current" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [34170 34434])
-            ("bs-unmark-previous" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [34436 34699])
-            ("bs-unmark-all" function (:user-visible-flag t) nil [34701 35417])
-            ("bs--show-config-message" function (:arguments ("what")) nil [35419 35745])
-            ("bs-delete" function (:user-visible-flag t) nil [35747 36267])
-            ("bs-delete-backward" function (:user-visible-flag t) nil [36269 36498])
-            ("bs-show-sorted" function (:user-visible-flag t) nil [36500 36821])
-            ("bs-apply-sort-faces" function (:arguments ("sort-description")) nil [36823 37442])
-            ("bs-toggle-show-all" function (:user-visible-flag t) nil [37444 37708])
-            ("bs-toggle-readonly" function (:user-visible-flag t) nil [37710 37945])
-            ("bs-clear-modified" function (:user-visible-flag t) nil [37947 38153])
-            ("bs--nth-wrapper" function (:arguments ("count" "fun" "args")) nil [38155 38307])
-            ("bs-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [38309 38530])
-            ("bs--up" function nil nil [38532 38782])
-            ("bs-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [38784 39009])
-            ("bs--down" function nil nil [39011 39257])
-            ("bs-visits-non-file" function (:arguments ("buffer")) nil [39259 39463])
-            ("bs-sort-buffer-interns-are-last" function (:arguments ("_b1" "b2")) nil [39465 39625])
-            ("bs-config-clear" function nil nil [39795 40163])
-            ("bs-config--only-files" function nil nil [40165 40488])
-            ("bs-config--files-and-scratch" function nil nil [40490 40895])
-            ("bs-config--all" function nil nil [40897 41046])
-            ("bs-config--all-intern-last" function nil nil [41048 41310])
-            ("bs-set-configuration" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [41312 42114])
-            ("bs-help" function (:user-visible-flag t) nil [42116 42205])
-            ("bs-next-config-aux" function (:arguments ("start-name" "list")) nil [42207 42647])
-            ("bs-next-config" function (:arguments ("name")) nil [42649 42800])
-            ("bs-select-next-configuration" function
-               (:user-visible-flag t
-                :arguments ("start-name"))
-                nil [42802 43329])
-            ("bs-show-in-buffer" function (:arguments ("list")) nil [43331 44349])
-            ("bs-next-buffer" function (:arguments ("buffer-list" "sorting-p")) nil [44351 44965])
-            ("bs-previous-buffer" function (:arguments ("buffer-list" "sorting-p")) nil [44967 45547])
-            ("bs-message-without-log" function (:arguments ("args")) nil [45549 45764])
-            ("bs--cycle-list" variable nil nil [45766 45835])
-            ("bs-cycle-next" function (:user-visible-flag t) nil [45852 47057])
-            ("bs-cycle-previous" function (:user-visible-flag t) nil [47074 48190])
-            ("bs--get-value" function (:arguments ("fun" "args")) nil [48192 48432])
-            ("bs--get-marked-string" function (:arguments ("start-buffer" "_all-buffers")) nil [48434 49509])
-            ("bs--get-modified-string" function (:arguments ("_start-buffer" "_all-buffers")) nil [49511 49811])
-            ("bs--get-readonly-string" function (:arguments ("_start-buffer" "_all-buffers")) nil [49813 50111])
-            ("bs--get-size-string" function (:arguments ("_start-buffer" "_all-buffers")) nil [50113 50398])
-            ("bs--get-name" function (:arguments ("_start-buffer" "_all-buffers")) nil [50400 50879])
-            ("bs--get-mode-name" function (:arguments ("start-buffer" "_all-buffers")) nil [50881 51192])
-            ("bs--get-file-name" function (:arguments ("_start-buffer" "_all-buffers")) nil [51194 51786])
-            ("bs--insert-one-entry" function (:arguments ("buffer")) nil [51788 52602])
-            ("bs--format-aux" function (:arguments ("string" "align" "len")) nil [52604 53013])
-            ("bs--show-header" function nil nil [53015 53252])
-            ("bs--get-name-length" function nil nil [53254 53353])
-            ("bs--create-header-line" function (:arguments ("col")) nil [53355 53755])
-            ("bs--show-with-configuration" function (:arguments ("name" "arg")) nil [53757 55307])
-            ("bs--configuration-name-for-prefix-arg" function (:arguments ("prefix")) nil [55309 55962])
-            ("bs-customize" function (:user-visible-flag t) nil [56170 56291])
-            ("bs-show" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [56308 57043])
-            ("bs-unload-function" function nil nil [57205 57490])
-            ("bs" package nil nil [57518 57531]))          
-      :file "bs.el"
-      :pointmax 57553
-      :fsize 57552
-      :lastmodtime '(23525 29503 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tabulated-list" include nil nil [938 963])
-            ("copy-from-above-command" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [981 2146])
-            ("zap-up-to-char" function
-               (:user-visible-flag t
-                :arguments ("arg" "char"))
-                nil [2195 2719])
-            ("mark-beginning-of-buffer" function (:user-visible-flag t) nil [2869 2991])
-            ("mark-end-of-buffer" function (:user-visible-flag t) nil [3008 3118])
-            ("upcase-char" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [3135 3330])
-            ("forward-to-word" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [3347 3625])
-            ("backward-to-word" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [3642 3817])
-            ("butterfly" function (:user-visible-flag t) nil [3834 4875])
-            ("list-dynamic-libraries--loaded-only-p" variable nil nil [5012 5058])
-            ("make-variable-buffer-local" code nil nil [5059 5126])
-            ("list-dynamic-libraries--loaded" function (:arguments ("from")) nil [5128 5609])
-            ("list-dynamic-libraries--refresh" function nil nil [5611 6807])
-            ("list-dynamic-libraries" function
-               (:user-visible-flag t
-                :arguments ("loaded-only-p" "buffer"))
-                nil [6824 7709])
-            ("misc" package nil nil [7711 7726]))          
-      :file "misc.el"
-      :pointmax 7750
-      :fsize 7749
-      :lastmodtime '(23525 29513 0 0)
-      :unmatched-syntax '((close-paren 963 . 964) (symbol 918 . 935) (open-paren 917 . 918)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("thingatpt" package nil nil [2020 2040])
-            ("forward-thing" function (:arguments ("thing" "n")) nil [2076 2591])
-            ("bounds-of-thing-at-point" function (:arguments ("thing")) nil [2629 4663])
-            ("thing-at-point" function (:arguments ("thing" "no-properties")) nil [4680 5541])
-            ("beginning-of-thing" function (:arguments ("thing")) nil [5567 5833])
-            ("end-of-thing" function (:arguments ("thing")) nil [5835 6089])
-            ("put" code nil nil [6222 6314])
-            ("in-string-p" function nil nil [6327 6581])
-            ("thing-at-point--end-of-sexp" function nil nil [6583 6845])
-            ("define-obsolete-function-alias" code nil nil [6847 6997])
-            ("put" code nil nil [6999 7047])
-            ("thing-at-point--beginning-of-sexp" function nil nil [7049 7330])
-            ("define-obsolete-function-alias" code nil nil [7332 7494])
-            ("put" code nil nil [7496 7556])
-            ("put" code nil nil [7569 7646])
-            ("thing-at-point-bounds-of-list-at-point" function nil nil [7648 8137])
-            ("put" code nil nil [8150 8196])
-            ("put" code nil nil [8197 8237])
-            ("put" code nil nil [8238 8278])
-            ("thing-at-point-file-name-chars" variable (:default-value "-~/[:alnum:]_.${}#%,:") nil [8295 8397])
-            ("put" code nil nil [8399 8529])
-            ("put" code nil nil [8530 8719])
-            ("thing-at-point-beginning-of-url-regexp" variable nil nil [8731 8902])
-            ("thing-at-point-url-path-regexp" variable (:default-value "[^]	
- \"'<>[^`{}]*[^]	
- \"'<>[^`{}.,;]+") nil [8904 9058])
-            ("thing-at-point-short-url-regexp" variable (:default-value (concat "[-A-Za-z0-9]+\\.[-A-Za-z0-9.]+" thing-at-point-url-path-regexp)) nil [9060 9229])
-            ("thing-at-point-uri-schemes" variable (:default-value (quote ("aaa://" "about:" "acap://" "apt:" "bzr://" "bzr+ssh://" "attachment:/" "chrome://" "cid:" "content://" "crid://" "cvs://" "data:" "dav:" "dict://" "doi:" "dns:" "dtn:" "feed:" "file:/" "finger://" "fish://" "ftp://" "geo:" "git://" "go:" "gopher://" "h323:" "http://" "https://" "im:" "imap://" "info:" "ipp:" "irc://" "irc6://" "ircs://" "iris.beep:" "jar:" "ldap://" "ldaps://" "magnet:" "mailto:" "mid:" "mtqp://" "mupdate://" "news:" "nfs://" "nntp://" "opaquelocktoken:" "pop://" "pres:" "resource://" "rmi://" "rsync://" "rtsp://" "rtspu://" "service:" "sftp://" "sip:" "sips:" "smb://" "sms:" "snmp://" "soap.beep://" "soap.beeps://" "ssh://" "svn://" "svn+ssh://" "tag:" "tel:" "telnet://" "tftp://" "tip://" "tn3270://" "udp://" "urn:" "uuid:" "vemmi://" "webcal://" "xri://" "xmlrpc.beep://" "xmlrpc.beeps://" "z39.50r://" "z39.50s://" "xmpp:" "fax:" "man:" "mms://" "mmsh://" "modem:" "prospero:" "snews:" "wais://"))) nil [9231 10585])
-            ("thing-at-point-markedup-url-regexp" variable (:default-value "<URL:\\([^<>
-]+\\)>") nil [10587 10872])
-            ("thing-at-point-newsgroup-regexp" variable (:default-value "\\`[[:lower:]]+\\.[-+[:lower:]_0-9.]+\\'") nil [10874 10997])
-            ("thing-at-point-newsgroup-heads" variable (:default-value (quote ("alt" "comp" "gnu" "misc" "news" "sci" "soc" "talk"))) nil [10999 11160])
-            ("thing-at-point-default-mail-uri-scheme" variable (:default-value "mailto") nil [11162 11331])
-            ("put" code nil nil [11333 11408])
-            ("thing-at-point-bounds-of-url-at-point" function (:arguments ("lax")) nil [11410 12611])
-            ("thing-at-point--bounds-of-markedup-url" function nil nil [12613 13122])
-            ("thing-at-point--bounds-of-well-formed-url" function (:arguments ("beg" "end" "pt")) nil [13124 14578])
-            ("put" code nil nil [14580 14635])
-            ("thing-at-point-url-at-point" function (:arguments ("lax" "bounds")) nil [14637 17071])
-            ("thing-at-point-newsgroup-p" function (:arguments ("string")) nil [17073 17966])
-            ("put" code nil nil [17968 18018])
-            ("put" code nil nil [18020 18076])
-            ("thing-at-point-looking-at" function (:arguments ("regexp" "distance")) nil [18481 20002])
-            ("thing-at-point-email-regexp" variable (:default-value "<?[-+_.~a-zA-Z][-+_.~:a-zA-Z0-9]*@[-.a-zA-Z0-9]+>?") nil [20025 20270])
-            ("put" code nil nil [20513 20806])
-            ("put" code nil nil [20808 21046])
-            ("put" code nil nil [21060 21117])
-            ("put" code nil nil [21118 21181])
-            ("word-at-point" function nil nil [21196 21298])
-            ("sentence-at-point" function nil nil [21300 21414])
-            ("thing-at-point--read-from-whole-string" function (:arguments ("str")) nil [21416 21885])
-            ("define-obsolete-function-alias" code nil nil [21887 22059])
-            ("form-at-point" function (:arguments ("thing" "pred")) nil [22061 22363])
-            ("sexp-at-point" function nil nil [22380 22483])
-            ("symbol-at-point" function nil nil [22499 22655])
-            ("number-at-point" function nil nil [22671 22897])
-            ("put" code nil nil [22899 22945])
-            ("list-at-point" function nil nil [22961 23076]))          
-      :file "thingatpt.el"
-      :pointmax 23105
-      :fsize 23104
-      :lastmodtime '(23525 29519 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tabulated-list" include nil nil [1117 1142])
-            ("Buffer-menu" customgroup (:user-visible-flag t) nil [1144 1252])
-            ("Buffer-menu-marker-char" variable (:default-value 62) nil [1254 1332])
-            ("Buffer-menu-del-char" variable (:default-value 68) nil [1334 1415])
-            ("Buffer-menu-use-header-line" variable (:default-value t) nil [1417 1571])
-            ("buffer-menu-buffer" variable
-               (:default-value (quote ((t (:weight bold))))
-                :type "face")
-                nil [1573 1693])
-            ("put" code nil nil [1694 1751])
-            ("Buffer-menu-buffer+size-width" variable nil nil [1753 2198])
-            ("make-obsolete-variable" code nil nil [2200 2337])
-            ("Buffer-menu-name-width" variable (:default-value 19) nil [2339 2484])
-            ("Buffer-menu-size-width" variable (:default-value 7) nil [2486 2630])
-            ("Buffer-menu-mode-width" variable (:default-value 16) nil [2632 2757])
-            ("Buffer-menu-use-frame-buffer-list" variable (:default-value t) nil [2759 3160])
-            ("Buffer-menu-files-only" variable nil nil [3162 3335])
-            ("make-variable-buffer-local" code nil nil [3336 3388])
-            ("Buffer-menu-mode-map" variable (:default-value (let ((map (make-sparse-keymap)) (menu-map (make-sparse-keymap))) (set-keymap-parent map tabulated-list-mode-map) (define-key map "v" (quote Buffer-menu-select)) (define-key map "2" (quote Buffer-menu-2-window)) (define-key map "1" (quote Buffer-menu-1-window)) (define-key map "f" (quote Buffer-menu-this-window)) (define-key map "e" (quote Buffer-menu-this-window)) (define-key map "
" (quote Buffer-menu-this-window)) (define-key map "o" (quote Buffer-menu-other-window)) (define-key map "" (quote Buffer-menu-switch-other-window)) (define-key map "s" (quote Buffer-menu-save)) (define-key map "d" (quote Buffer-menu-delete)) (define-key map "k" (quote Buffer-menu-delete)) (define-key map "" (quote Buffer-menu-delete)) (define-key map "" (quote Buffer-menu-delete-backwards)) (define-key map "x" (quote Buffer-menu-execute)) (define-key map " " (quote next-line)) (define-key map "" (quote Buffer-menu-backup-unmark)) (define-key map "~" (quote Buffer-menu-not-modified)) (define-key map "u" (quote Buffer-menu-unmark)) (define-key map "\377" (quote Buffer-menu-unmark-all-buffers)) (define-key map "U" (quote Buffer-menu-unmark-all)) (define-key map "m" (quote Buffer-menu-mark)) (define-key map "t" (quote Buffer-menu-visit-tags-table)) (define-key map "%" (quote Buffer-menu-toggle-read-only)) (define-key map "b" (quote Buffer-menu-bury)) (define-key map "V" (quote Buffer-menu-view)) (define-key map "T" (quote Buffer-menu-toggle-files-only)) (define-key map (kbd "M-s a C-s") (quote Buffer-menu-isearch-buffers)) (define-key map (kbd "M-s a M-C-s") (quote Buffer-menu-isearch-buffers-regexp)) (define-key map (kbd "M-s a C-o") (quote Buffer-menu-multi-occur)) (define-key map [mouse-2] (quote Buffer-menu-mouse-select)) (define-key map [follow-link] (quote mouse-face)) (define-key map [menu-bar Buffer-menu-mode] (cons (purecopy "Buffer-Menu") menu-map)) (bindings--define-key menu-map [quit] (quote (menu-item "Quit" quit-window :help "Remove the buffer menu from the display"))) (bindings--define-key menu-map [rev] (quote (menu-item "Refresh" revert-buffer :help "Refresh the *Buffer List* buffer contents"))) (bindings--define-key menu-map [s0] menu-bar-separator) (bindings--define-key menu-map [tf] (quote (menu-item "Show Only File Buffers" Buffer-menu-toggle-files-only :button (:toggle . Buffer-menu-files-only) :help "Toggle whether the current buffer-menu displays only file buffers"))) (bindings--define-key menu-map [s1] menu-bar-separator) (bindings--define-key menu-map [sel] (quote (menu-item "Select Marked" Buffer-menu-select :help "Select this line's buffer; also display buffers marked with `>'"))) (bindings--define-key menu-map [bm2] (quote (menu-item "Select Two" Buffer-menu-2-window :help "Select this line's buffer, with previous buffer in second window"))) (bindings--define-key menu-map [bm1] (quote (menu-item "Select Current" Buffer-menu-1-window :help "Select this line's buffer, alone, in full frame"))) (bindings--define-key menu-map [ow] (quote (menu-item "Select in Other Window" Buffer-menu-other-window :help "Select this line's buffer in other window, leaving buffer menu visible"))) (bindings--define-key menu-map [tw] (quote (menu-item "Select in Current Window" Buffer-menu-this-window :help "Select this line's buffer in this window"))) (bindings--define-key menu-map [s2] menu-bar-separator) (bindings--define-key menu-map [is] (quote (menu-item "Regexp Isearch Marked Buffers..." Buffer-menu-isearch-buffers-regexp :help "Search for a regexp through all marked buffers using Isearch"))) (bindings--define-key menu-map [ir] (quote (menu-item "Isearch Marked Buffers..." Buffer-menu-isearch-buffers :help "Search for a string through all marked buffers using Isearch"))) (bindings--define-key menu-map [mo] (quote (menu-item "Multi Occur Marked Buffers..." Buffer-menu-multi-occur :help "Show lines matching a regexp in marked buffers using Occur"))) (bindings--define-key menu-map [s3] menu-bar-separator) (bindings--define-key menu-map [by] (quote (menu-item "Bury" Buffer-menu-bury :help "Bury the buffer listed on this line"))) (bindings--define-key menu-map [vt] (quote (menu-item "Set Unmodified" Buffer-menu-not-modified :help "Mark buffer on this line as unmodified (no changes to save)"))) (bindings--define-key menu-map [ex] (quote (menu-item "Execute" Buffer-menu-execute :help "Save and/or delete buffers marked with s or k commands"))) (bindings--define-key menu-map [s4] menu-bar-separator) (bindings--define-key menu-map [delb] (quote (menu-item "Mark for Delete and Move Backwards" Buffer-menu-delete-backwards :help "Mark buffer on this line to be deleted by x command and move up one line"))) (bindings--define-key menu-map [del] (quote (menu-item "Mark for Delete" Buffer-menu-delete :help "Mark buffer on this line to be deleted by x command"))) (bindings--define-key menu-map [sv] (quote (menu-item "Mark for Save" Buffer-menu-save :help "Mark buffer on this line to be saved by x command"))) (bindings--define-key menu-map [umk] (quote (menu-item "Unmark" Buffer-menu-unmark :help "Cancel all requested operations on buffer on this line and move down"))) (bindings--define-key menu-map [umkab] (quote (menu-item "Remove marks..." Buffer-menu-unmark-all-buffers :help "Cancel a requested operation on all buffers"))) (bindings--define-key menu-map [umka] (quote (menu-item "Unmark all" Buffer-menu-unmark-all :help "Cancel all requested operations on buffers"))) (bindings--define-key menu-map [mk] (quote (menu-item "Mark" Buffer-menu-mark :help "Mark buffer on this line for being displayed by v command"))) map)) nil [3390 9249])
-            ("define-obsolete-variable-alias" code nil nil [9251 9338])
-            ("define-derived-mode" code nil nil [9340 12012])
-            ("buffer-menu" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [12014 12963])
-            ("buffer-menu-other-window" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [12965 13465])
-            ("list-buffers" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [13482 13920])
-            ("Buffer-menu-toggle-files-only" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [13922 14434])
-            ("defalias" code nil nil [14436 14485])
-            ("Buffer-menu-buffer" function (:arguments ("error-if-non-existent-p")) nil [14489 15003])
-            ("Buffer-menu-no-header" function nil nil [15005 15198])
-            ("Buffer-menu-beginning" function nil nil [15200 15316])
-            ("Buffer-menu-mark" function (:user-visible-flag t) nil [15369 15644])
-            ("Buffer-menu-unmark" function
-               (:user-visible-flag t
-                :arguments ("backup"))
-                nil [15646 15878])
-            ("Buffer-menu-unmark-all-buffers" function
-               (:user-visible-flag t
-                :arguments ("mark"))
-                nil [15880 16566])
-            ("Buffer-menu-unmark-all" function (:user-visible-flag t) nil [16568 16704])
-            ("Buffer-menu-backup-unmark" function (:user-visible-flag t) nil [16706 16875])
-            ("Buffer-menu--unmark" function nil nil [16877 17113])
-            ("Buffer-menu-delete" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [17115 17847])
-            ("Buffer-menu-delete-backwards" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [17849 18173])
-            ("Buffer-menu-save" function (:user-visible-flag t) nil [18175 18448])
-            ("Buffer-menu-not-modified" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [18450 18794])
-            ("Buffer-menu-execute" function (:user-visible-flag t) nil [18796 19769])
-            ("Buffer-menu-select" function (:user-visible-flag t) nil [19771 20566])
-            ("Buffer-menu-marked-buffers" function (:arguments ("unmark")) nil [20568 20995])
-            ("Buffer-menu-isearch-buffers" function (:user-visible-flag t) nil [20997 21172])
-            ("Buffer-menu-isearch-buffers-regexp" function (:user-visible-flag t) nil [21174 21363])
-            ("Buffer-menu-multi-occur" function
-               (:user-visible-flag t
-                :arguments ("regexp" "nlines"))
-                nil [21365 21593])
-            ("Buffer-menu-visit-tags-table" function (:user-visible-flag t) nil [21597 21873])
-            ("Buffer-menu-1-window" function (:user-visible-flag t) nil [21875 22075])
-            ("Buffer-menu-this-window" function (:user-visible-flag t) nil [22077 22217])
-            ("Buffer-menu-other-window" function (:user-visible-flag t) nil [22219 22403])
-            ("Buffer-menu-switch-other-window" function (:user-visible-flag t) nil [22405 22597])
-            ("Buffer-menu-2-window" function (:user-visible-flag t) nil [22599 22910])
-            ("Buffer-menu-toggle-read-only" function (:user-visible-flag t) nil [22912 23277])
-            ("Buffer-menu-bury" function (:user-visible-flag t) nil [23279 23761])
-            ("Buffer-menu-view" function (:user-visible-flag t) nil [23763 23887])
-            ("Buffer-menu-view-other-window" function (:user-visible-flag t) nil [23889 24057])
-            ("list-buffers-noselect" function (:arguments ("files-only" "buffer-list")) nil [24122 24788])
-            ("Buffer-menu-mouse-select" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [24790 25212])
-            ("list-buffers--refresh" function (:arguments ("buffer-list" "old-buffer")) nil [25214 27023])
-            ("tabulated-list-entry-size->" function (:arguments ("entry1" "entry2")) nil [27025 27171])
-            ("Buffer-menu--pretty-name" function (:arguments ("name")) nil [27173 27305])
-            ("Buffer-menu--pretty-file-name" function (:arguments ("file")) nil [27307 27450]))          
-      :file "buff-menu.el"
-      :pointmax 27479
-      :fsize 27478
-      :lastmodtime '(23525 29503 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("timer" include nil nil [1254 1270])
-            ("cl-lib" include nil nil [1290 1307])
-            ("battery" customgroup (:user-visible-flag t) nil [1311 1413])
-            ("battery-linux-sysfs-regexp" variable (:default-value "[bB][aA][tT][0-9]?$") nil [1415 1637])
-            ("battery-upower-device" variable (:default-value "battery_BAT1") nil [1639 1771])
-            ("battery-status-function" variable (:default-value (cond ((and (eq system-type (quote gnu/linux)) (file-readable-p "/proc/apm")) (function battery-linux-proc-apm)) ((and (eq system-type (quote gnu/linux)) (file-directory-p "/proc/acpi/battery")) (function battery-linux-proc-acpi)) ((and (eq system-type (quote gnu/linux)) (file-directory-p "/sys/class/power_supply/") (directory-files "/sys/class/power_supply/" nil battery-linux-sysfs-regexp)) (function battery-linux-sysfs)) ((and (eq system-type (quote berkeley-unix)) (file-executable-p "/usr/sbin/apm")) (function battery-bsd-apm)) ((and (eq system-type (quote darwin)) (condition-case nil (with-temp-buffer (and (eq (call-process "pmset" nil t nil "-g" "ps") 0) (> (buffer-size) 0))) (error nil))) (function battery-pmset)) ((fboundp (quote w32-battery-status)) (function w32-battery-status)))) nil [1773 2980])
-            ("battery-echo-area-format" variable (:default-value "Power %L, battery %B (%p%% load, remaining time %t)") nil [2982 3933])
-            ("battery-mode-line-string" variable nil nil [3935 4012])
-            ("battery-mode-line-limit" variable (:default-value 100) nil [4085 4248])
-            ("battery-mode-line-format" variable (:default-value (cond ((eq battery-status-function (quote battery-linux-proc-acpi)) "[%b%p%%,%d°C]") (battery-status-function "[%b%p%%]"))) nil [4250 5268])
-            ("battery-update-interval" variable (:default-value 60) nil [5270 5403])
-            ("battery-load-low" variable (:default-value 25) nil [5405 5582])
-            ("battery-load-critical" variable (:default-value 10) nil [5584 5776])
-            ("battery-update-timer" variable nil nil [5778 5838])
-            ("battery" function (:user-visible-flag t) nil [5855 6279])
-            ("define-minor-mode" code nil nil [6296 7388])
-            ("battery-update-handler" function nil nil [7390 7456])
-            ("battery-update" function nil nil [7458 8174])
-            ("battery-linux-proc-apm-regexp" variable
-               (:constant-flag t
-                :default-value (concat "^\\([^ ]+\\)" " \\([^ ]+\\)" " 0x\\([0-9a-f]+\\)" " 0x\\([0-9a-f]+\\)" " 0x\\([0-9a-f]+\\)" " 0x\\([0-9a-f]+\\)" " \\(-?[0-9]+\\)%" " \\(-?[0-9]+\\)" " \\(.*\\)" "$"))
-                nil [8215 8686])
-            ("battery-linux-proc-apm" function nil nil [8688 11561])
-            ("battery-linux-proc-acpi" function nil nil [11605 16191])
-            ("battery-linux-sysfs" function nil nil [16252 21203])
-            ("declare-function" code nil nil [21207 21309])
-            ("battery-upower-prop" function (:arguments ("pname" "device")) nil [21336 21570])
-            ("battery-upower" function nil nil [21572 23988])
-            ("battery-bsd-apm" function nil nil [24021 26581])
-            ("battery-pmset" function nil nil [26628 28639])
-            ("battery-format" function (:arguments ("format" "alist")) nil [28667 28908])
-            ("battery-search-for-one-match-in-files" function (:arguments ("files" "regexp" "match-num")) nil [28910 29385])
-            ("battery" package nil nil [29389 29407]))          
-      :file "battery.el"
-      :pointmax 29434
-      :fsize 29434
-      :lastmodtime '(23525 29503 0 0)
-      :unmatched-syntax '((close-paren 1307 . 1308) (symbol 1272 . 1289) (open-paren 1271 . 1272)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("info" include nil nil [1014 1029])
-            ("declare-function" code nil nil [1031 1085])
-            ("texinfo-command-start" variable nil nil [1107 1137])
-            ("texinfo-command-end" variable nil nil [1138 1166])
-            ("Info-tagify" function
-               (:user-visible-flag t
-                :arguments ("input-buffer-name"))
-                nil [1183 5145])
-            ("Info-split-threshold" variable (:default-value 262144) nil [5164 5328])
-            ("Info-split" function (:user-visible-flag t) nil [5345 7822])
-            ("Info-validate-allnodes" variable nil nil [7825 7856])
-            ("Info-validate-thisnode" variable nil nil [7857 7888])
-            ("Info-validate-lossages" variable nil nil [7889 7920])
-            ("Info-validate" function (:user-visible-flag t) nil [7937 12861])
-            ("Info-validate-node-name" function (:arguments ("kind" "name")) nil [12863 13486])
-            ("Info-validate-tags-table" function nil nil [13488 14677])
-            ("batch-info-validate" function nil nil [14695 17227])
-            ("informat" package nil nil [17229 17248]))          
-      :file "informat.el"
-      :pointmax 17276
-      :fsize 17275
-      :lastmodtime '(23525 29511 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "info.el"
-      :fsize 213835
-      :lastmodtime '(23525 29511 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("text-mode" include nil nil [1044 1064])
-            ("cl-lib" include nil nil [1084 1101])
-            ("case-replace" variable (:default-value t) nil [1104 1238])
-            ("replace-char-fold" variable nil nil [1240 1574])
-            ("replace-lax-whitespace" variable nil nil [1576 1883])
-            ("replace-regexp-lax-whitespace" variable nil nil [1885 2206])
-            ("query-replace-history" variable nil nil [2208 2378])
-            ("query-replace-defaults" variable nil nil [2380 2579])
-            ("query-replace-interactive" variable nil nil [2581 2722])
-            ("make-obsolete-variable" code nil nil [2723 2971])
-            ("query-replace-from-to-separator" variable (:default-value " → ") nil [2973 3293])
-            ("query-replace-from-history-variable" variable (:default-value (quote query-replace-history)) nil [3295 3641])
-            ("query-replace-to-history-variable" variable (:default-value (quote query-replace-history)) nil [3643 3978])
-            ("query-replace-skip-read-only" variable nil nil [3980 4150])
-            ("query-replace-show-replacement" variable (:default-value t) nil [4152 4372])
-            ("query-replace-highlight" variable (:default-value t) nil [4374 4512])
-            ("query-replace-lazy-highlight" variable (:default-value t) nil [4514 4883])
-            ("query-replace" variable
-               (:default-value (quote ((t (:inherit isearch))))
-                :type "face")
-                nil [4885 5026])
-            ("replace-count" variable nil nil [5028 5146])
-            ("query-replace-descr" function (:arguments ("string")) nil [5148 5239])
-            ("query-replace--split-string" function (:arguments ("string")) nil [5241 5786])
-            ("query-replace-read-from" function (:arguments ("prompt" "regexp-flag")) nil [5788 9350])
-            ("query-replace-compile-replacement" function (:arguments ("to" "regexp-flag")) nil [9352 10700])
-            ("query-replace-read-to" function (:arguments ("from" "prompt" "regexp-flag")) nil [10703 11241])
-            ("query-replace-read-args" function (:arguments ("prompt" "regexp-flag" "noerror")) nil [11243 11684])
-            ("query-replace" function
-               (:user-visible-flag t
-                :arguments ("from-string" "to-string" "delimited" "start" "end" "backward" "region-noncontiguous-p"))
-                nil [11686 14419])
-            ("define-key" code nil nil [14421 14460])
-            ("query-replace-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp" "to-string" "delimited" "start" "end" "backward" "region-noncontiguous-p"))
-                nil [14462 18113])
-            ("define-key" code nil nil [18115 18165])
-            ("query-replace-regexp-eval" function (:arguments ("regexp" "to-expr" "delimited" "start" "end")) nil [18167 21473])
-            ("map-query-replace-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp" "to-strings" "n" "start" "end"))
-                nil [21475 23502])
-            ("replace-string" function (:arguments ("from-string" "to-string" "delimited" "start" "end" "backward")) nil [23504 25957])
-            ("replace-regexp" function (:arguments ("regexp" "to-string" "delimited" "start" "end" "backward")) nil [25959 29164])
-            ("regexp-history" variable nil nil [29168 29356])
-            ("occur-collect-regexp-history" variable (:default-value (quote ("\\1"))) nil [29358 29456])
-            ("read-regexp-defaults-function" variable nil nil [29458 30431])
-            ("read-regexp-suggestions" function nil nil [30433 31014])
-            ("read-regexp" function (:arguments ("prompt" "defaults" "history")) nil [31016 33822])
-            ("defalias" code nil nil [33825 33874])
-            ("defalias" code nil nil [33875 33921])
-            ("defalias" code nil nil [33922 33957])
-            ("keep-lines-read-args" function (:arguments ("prompt")) nil [33960 34146])
-            ("keep-lines" function
-               (:user-visible-flag t
-                :arguments ("regexp" "rstart" "rend" "interactive"))
-                nil [34148 36844])
-            ("flush-lines" function
-               (:user-visible-flag t
-                :arguments ("regexp" "rstart" "rend" "interactive"))
-                nil [36847 38894])
-            ("how-many" function
-               (:user-visible-flag t
-                :arguments ("regexp" "rstart" "rend" "interactive"))
-                nil [38897 40701])
-            ("occur-menu-map" variable (:default-value (let ((map (make-sparse-keymap))) (bindings--define-key map [next-error-follow-minor-mode] (quote (menu-item "Auto Occurrence Display" next-error-follow-minor-mode :help "Display another occurrence when moving the cursor" :button (:toggle and (boundp (quote next-error-follow-minor-mode)) next-error-follow-minor-mode)))) (bindings--define-key map [separator-1] menu-bar-separator) (bindings--define-key map [kill-this-buffer] (quote (menu-item "Kill Occur Buffer" kill-this-buffer :help "Kill the current *Occur* buffer"))) (bindings--define-key map [quit-window] (quote (menu-item "Quit Occur Window" quit-window :help "Quit the current *Occur* buffer.  Bury it, and maybe delete the selected frame"))) (bindings--define-key map [revert-buffer] (quote (menu-item "Revert Occur Buffer" revert-buffer :help "Replace the text in the *Occur* buffer with the results of rerunning occur"))) (bindings--define-key map [clone-buffer] (quote (menu-item "Clone Occur Buffer" clone-buffer :help "Create and return a twin copy of the current *Occur* buffer"))) (bindings--define-key map [occur-rename-buffer] (quote (menu-item "Rename Occur Buffer" occur-rename-buffer :help "Rename the current *Occur* buffer to *Occur: original-buffer-name*."))) (bindings--define-key map [occur-edit-buffer] (quote (menu-item "Edit Occur Buffer" occur-edit-mode :help "Edit the *Occur* buffer and apply changes to the original buffers."))) (bindings--define-key map [separator-2] menu-bar-separator) (bindings--define-key map [occur-mode-goto-occurrence-other-window] (quote (menu-item "Go To Occurrence Other Window" occur-mode-goto-occurrence-other-window :help "Go to the occurrence the current line describes, in another window"))) (bindings--define-key map [occur-mode-goto-occurrence] (quote (menu-item "Go To Occurrence" occur-mode-goto-occurrence :help "Go to the occurrence the current line describes"))) (bindings--define-key map [occur-mode-display-occurrence] (quote (menu-item "Display Occurrence" occur-mode-display-occurrence :help "Display in another window the occurrence the current line describes"))) (bindings--define-key map [occur-next] (quote (menu-item "Move to Next Match" occur-next :help "Move to the Nth (default 1) next match in an Occur mode buffer"))) (bindings--define-key map [occur-prev] (quote (menu-item "Move to Previous Match" occur-prev :help "Move to the Nth (default 1) previous match in an Occur mode buffer"))) map)) nil [40705 43307])
-            ("occur-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mouse-2] (quote occur-mode-mouse-goto)) (define-key map "" (quote occur-mode-goto-occurrence)) (define-key map "e" (quote occur-edit-mode)) (define-key map "
" (quote occur-mode-goto-occurrence)) (define-key map "o" (quote occur-mode-goto-occurrence-other-window)) (define-key map "" (quote occur-mode-display-occurrence)) (define-key map "\356" (quote occur-next)) (define-key map "\360" (quote occur-prev)) (define-key map "r" (quote occur-rename-buffer)) (define-key map "c" (quote clone-buffer)) (define-key map "" (quote next-error-follow-minor-mode)) (bindings--define-key map [menu-bar occur] (cons "Occur" occur-menu-map)) map)) nil [43309 44126])
-            ("occur-revert-arguments" variable nil nil [44128 44259])
-            ("make-variable-buffer-local" code nil nil [44260 44312])
-            ("put" code nil nil [44313 44361])
-            ("occur-mode-hook" variable (:default-value (quote (turn-on-font-lock))) nil [44363 44483])
-            ("occur-hook" variable nil nil [44485 44594])
-            ("occur-mode-find-occurrence-hook" variable nil nil [44596 44888])
-            ("put" code nil nil [44890 44928])
-            ("define-derived-mode" code nil nil [44929 45393])
-            ("occur-edit-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map text-mode-map) (define-key map [mouse-2] (quote occur-mode-mouse-goto)) (define-key map "" (quote occur-cease-edit)) (define-key map "" (quote occur-mode-display-occurrence)) (define-key map "" (quote next-error-follow-minor-mode)) (bindings--define-key map [menu-bar occur] (cons "Occur" occur-menu-map)) map)) nil [45418 45870])
-            ("define-derived-mode" code nil nil [45872 46333])
-            ("occur-cease-edit" function (:user-visible-flag t) nil [46335 46526])
-            ("occur-after-change-function" function (:arguments ("beg" "end" "length")) nil [46528 48030])
-            ("occur-revert-function" function (:arguments ("_ignore1" "_ignore2")) nil [48034 48206])
-            ("occur-mode-find-occurrence" function nil nil [48208 48474])
-            ("defalias" code nil nil [48476 48537])
-            ("occur-mode-goto-occurrence" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [48538 49286])
-            ("occur-mode-goto-occurrence-other-window" function (:user-visible-flag t) nil [49288 49596])
-            ("occur-mode-display-occurrence" function (:user-visible-flag t) nil [49598 50024])
-            ("occur-find-match" function (:arguments ("n" "search" "message")) nil [50026 50377])
-            ("occur-next" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [50379 50570])
-            ("occur-prev" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [50572 50774])
-            ("occur-next-error" function
-               (:user-visible-flag t
-                :arguments ("argp" "reset"))
-                nil [50776 51767])
-            ("match" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) :background "yellow1") (((class color) (min-colors 88) (background dark)) :background "RoyalBlue3") (((class color) (min-colors 8) (background light)) :background "yellow" :foreground "black") (((class color) (min-colors 8) (background dark)) :background "blue" :foreground "white") (((type tty) (class mono)) :inverse-video t) (t :background "gray")))
-                :type "face")
-                nil [51770 52345])
-            ("list-matching-lines-default-context-lines" variable nil nil [52347 52664])
-            ("defalias" code nil nil [52666 52704])
-            ("list-matching-lines-face" variable (:default-value (quote match)) nil [52706 52924])
-            ("list-matching-lines-buffer-name-face" variable (:default-value (quote underline)) nil [52926 53154])
-            ("list-matching-lines-current-line-face" variable (:default-value (quote lazy-highlight)) nil [53156 53344])
-            ("list-matching-lines-jump-to-current-line" variable nil nil [53346 53595])
-            ("list-matching-lines-prefix-face" variable (:default-value (quote shadow)) nil [53597 53873])
-            ("occur-excluded-properties" variable (:default-value (quote (read-only invisible intangible field mouse-face help-echo local-map keymap yank-handler follow-link))) nil [53875 54293])
-            ("occur-read-primary-args" function nil nil [54295 55166])
-            ("occur-rename-buffer" function
-               (:user-visible-flag t
-                :arguments ("unique-p" "interactive-p"))
-                nil [55168 56055])
-            ("occur--region-start" variable nil nil [56108 56140])
-            ("occur--region-end" variable nil nil [56141 56171])
-            ("occur--matches-threshold" variable nil nil [56172 56209])
-            ("occur--orig-line" variable nil nil [56210 56239])
-            ("occur--orig-line-str" variable nil nil [56240 56273])
-            ("occur--final-pos" variable nil nil [56274 56303])
-            ("occur" function
-               (:user-visible-flag t
-                :arguments ("regexp" "nlines" "region"))
-                nil [56305 59251])
-            ("ido-ignore-item-temp-list" variable nil nil [59253 59287])
-            ("multi-occur" function
-               (:user-visible-flag t
-                :arguments ("bufs" "regexp" "nlines"))
-                nil [59289 60207])
-            ("multi-occur-in-matching-buffers" function
-               (:user-visible-flag t
-                :arguments ("bufregexp" "regexp" "allbufs"))
-                nil [60209 61162])
-            ("occur-regexp-descr" function (:arguments ("regexp")) nil [61164 61577])
-            ("occur-1" function (:arguments ("regexp" "nlines" "bufs" "buf-name")) nil [61579 64864])
-            ("occur-engine" function (:arguments ("regexp" "buffers" "out-buf" "nlines" "case-fold" "title-face" "prefix-face" "match-face" "keep-props")) nil [64866 74936])
-            ("occur-engine-line" function (:arguments ("beg" "end" "keep-props")) nil [74938 75428])
-            ("occur-engine-add-prefix" function (:arguments ("lines" "prefix-face")) nil [75430 75654])
-            ("occur-accumulate-lines" function (:arguments ("count" "keep-props" "pt")) nil [75656 76176])
-            ("occur-context-lines" function (:arguments ("out-line" "nlines" "keep-props" "begpt" "endpt" "curr-line" "prev-line" "prev-after-lines" "prefix-face")) nil [76589 78416])
-            ("query-replace-help" variable
-               (:constant-flag t
-                :default-value "Type Space or `y' to replace one match, Delete or `n' to skip to next,
-RET or `q' to exit, Period to replace one match and exit,
-Comma to replace but not move point immediately,
-C-r to enter recursive edit (\\[exit-recursive-edit] to get out again),
-C-w to delete match and recursive edit,
-C-l to clear the screen, redisplay, and offer same replacement again,
-! to replace all remaining matches in this buffer with no more questions,
-^ to move point back to previous match,
-u to undo previous replacement,
-U to undo all replacements,
-E to edit the replacement string.
-In multi-buffer replacements type `Y' to replace all remaining
-matches in all remaining buffers with no more questions,
-`N' to skip to the next buffer without replacing remaining matches
-in the current buffer.")
-                nil [78527 79381])
-            ("query-replace-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map " " (quote act)) (define-key map "" (quote skip)) (define-key map [delete] (quote skip)) (define-key map [backspace] (quote skip)) (define-key map "y" (quote act)) (define-key map "n" (quote skip)) (define-key map "Y" (quote act)) (define-key map "N" (quote skip)) (define-key map "e" (quote edit-replacement)) (define-key map "E" (quote edit-replacement)) (define-key map "," (quote act-and-show)) (define-key map "q" (quote exit)) (define-key map "
" (quote exit)) (define-key map [return] (quote exit)) (define-key map "." (quote act-and-exit)) (define-key map "" (quote edit)) (define-key map "" (quote delete-and-edit)) (define-key map "" (quote recenter)) (define-key map "!" (quote automatic)) (define-key map "^" (quote backup)) (define-key map "u" (quote undo)) (define-key map "U" (quote undo-all)) (define-key map "" (quote help)) (define-key map [f1] (quote help)) (define-key map [help] (quote help)) (define-key map "?" (quote help)) (define-key map "" (quote quit)) (define-key map "" (quote quit)) (define-key map "" (quote scroll-up)) (define-key map "\366" (quote scroll-down)) (define-key map [next] (quote scroll-up)) (define-key map [prior] (quote scroll-down)) (define-key map [134217750] (quote scroll-other-window)) (define-key map [M-next] (quote scroll-other-window)) (define-key map [167772182] (quote scroll-other-window-down)) (define-key map [M-prior] (quote scroll-other-window-down)) (define-key map [escape] (quote exit-prefix)) map)) nil [79383 81505])
-            ("multi-query-replace-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map query-replace-map) (define-key map "Y" (quote automatic-all)) (define-key map "N" (quote exit-current)) map)) nil [81507 82167])
-            ("replace-match-string-symbols" function (:arguments ("n")) nil [82169 83330])
-            ("replace-eval-replacement" function (:arguments ("expression" "count")) nil [83332 83682])
-            ("replace-quote" function (:arguments ("replacement")) nil [83684 84158])
-            ("replace-loop-through-replacements" function (:arguments ("data" "count")) nil [84160 84583])
-            ("replace-match-data" function (:arguments ("integers" "reuse" "new")) nil [84585 84988])
-            ("replace-match-maybe-edit" function (:arguments ("newtext" "fixedcase" "literal" "noedit" "match-data" "backward")) nil [84990 86577])
-            ("replace-update-post-hook" variable nil nil [86579 86693])
-            ("replace-search-function" variable nil nil [86695 86910])
-            ("replace-re-search-function" variable nil nil [86912 87197])
-            ("replace-search" function (:arguments ("search-string" "limit" "regexp-flag" "delimited-flag" "case-fold" "backward")) nil [87199 88505])
-            ("replace-overlay" variable nil nil [88507 88535])
-            ("replace-highlight" function (:arguments ("match-beg" "match-end" "range-beg" "range-end" "search-string" "regexp-flag" "delimited-flag" "case-fold" "backward")) nil [88537 89485])
-            ("replace-dehighlight" function nil nil [89487 89824])
-            ("replace--push-stack" function (:arguments ("replaced" "search-str" "next-replace" "stack")) nil [89899 90704])
-            ("perform-replace" function (:arguments ("from-string" "replacements" "query-flag" "regexp-flag" "delimited-flag" "repeat-count" "map" "start" "end" "backward" "region-noncontiguous-p")) nil [90706 112414])
-            ("replace" package nil nil [112416 112434]))          
-      :file "replace.el"
-      :pointmax 112461
-      :fsize 112462
-      :lastmodtime '(23525 29516 0 0)
-      :unmatched-syntax '((close-paren 1101 . 1102) (symbol 1066 . 1083) (open-paren 1065 . 1066)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("outlines" customgroup (:user-visible-flag t) nil [1242 1341])
-            ("outline-regexp" variable (:default-value "[*]+") nil [1343 1779])
-            ("outline-heading-end-regexp" variable (:default-value "
-") nil [1847 2175])
-            ("outline-mode-prefix-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "@" (quote outline-mark-subtree)) (define-key map "" (quote outline-next-visible-heading)) (define-key map "" (quote outline-previous-visible-heading)) (define-key map "	" (quote outline-show-children)) (define-key map "" (quote outline-show-subtree)) (define-key map "" (quote outline-hide-subtree)) (define-key map "" (quote outline-up-heading)) (define-key map "" (quote outline-forward-same-level)) (define-key map "" (quote outline-backward-same-level)) (define-key map "" (quote outline-hide-body)) (define-key map "" (quote outline-show-all)) (define-key map "" (quote outline-hide-entry)) (define-key map "" (quote outline-show-entry)) (define-key map "" (quote outline-hide-leaves)) (define-key map "" (quote outline-show-branches)) (define-key map "" (quote outline-hide-sublevels)) (define-key map "" (quote outline-hide-other)) (define-key map "" (quote outline-move-subtree-up)) (define-key map "" (quote outline-move-subtree-down)) (define-key map [(control 60)] (quote outline-promote)) (define-key map [(control 62)] (quote outline-demote)) (define-key map "
" (quote outline-insert-heading)) map)) nil [2255 3465])
-            ("outline-mode-menu-bar-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [hide] (cons "Hide" (make-sparse-keymap "Hide"))) (define-key map [hide outline-hide-other] (quote (menu-item "Hide Other" outline-hide-other :help "Hide everything except current body and parent and top-level headings"))) (define-key map [hide outline-hide-sublevels] (quote (menu-item "Hide Sublevels" outline-hide-sublevels :help "Hide everything but the top LEVELS levels of headers, in whole buffer"))) (define-key map [hide outline-hide-subtree] (quote (menu-item "Hide Subtree" outline-hide-subtree :help "Hide everything after this heading at deeper levels"))) (define-key map [hide outline-hide-entry] (quote (menu-item "Hide Entry" outline-hide-entry :help "Hide the body directly following this heading"))) (define-key map [hide outline-hide-body] (quote (menu-item "Hide Body" outline-hide-body :help "Hide all body lines in buffer, leaving all headings visible"))) (define-key map [hide outline-hide-leaves] (quote (menu-item "Hide Leaves" outline-hide-leaves :help "Hide the body after this heading and at deeper levels"))) (define-key map [show] (cons "Show" (make-sparse-keymap "Show"))) (define-key map [show outline-show-subtree] (quote (menu-item "Show Subtree" outline-show-subtree :help "Show everything after this heading at deeper levels"))) (define-key map [show outline-show-children] (quote (menu-item "Show Children" outline-show-children :help "Show all direct subheadings of this heading"))) (define-key map [show outline-show-branches] (quote (menu-item "Show Branches" outline-show-branches :help "Show all subheadings of this heading, but not their bodies"))) (define-key map [show outline-show-entry] (quote (menu-item "Show Entry" outline-show-entry :help "Show the body directly following this heading"))) (define-key map [show outline-show-all] (quote (menu-item "Show All" outline-show-all :help "Show all of the text in the buffer"))) (define-key map [headings] (cons "Headings" (make-sparse-keymap "Headings"))) (define-key map [headings demote-subtree] (quote (menu-item "Demote Subtree" outline-demote :help "Demote headings lower down the tree"))) (define-key map [headings promote-subtree] (quote (menu-item "Promote Subtree" outline-promote :help "Promote headings higher up the tree"))) (define-key map [headings move-subtree-down] (quote (menu-item "Move Subtree Down" outline-move-subtree-down :help "Move the current subtree down past arg headlines of the same level"))) (define-key map [headings move-subtree-up] (quote (menu-item "Move Subtree Up" outline-move-subtree-up :help "Move the current subtree up past arg headlines of the same level"))) (define-key map [headings copy] (quote (menu-item "Copy to Kill Ring" outline-headers-as-kill :enable mark-active :help "Save the visible outline headers in region at the start of the kill ring"))) (define-key map [headings outline-insert-heading] (quote (menu-item "New Heading" outline-insert-heading :help "Insert a new heading at same depth at point"))) (define-key map [headings outline-backward-same-level] (quote (menu-item "Previous Same Level" outline-backward-same-level :help "Move backward to the arg'th subheading at same level as this one."))) (define-key map [headings outline-forward-same-level] (quote (menu-item "Next Same Level" outline-forward-same-level :help "Move forward to the arg'th subheading at same level as this one"))) (define-key map [headings outline-previous-visible-heading] (quote (menu-item "Previous" outline-previous-visible-heading :help "Move to the previous heading line"))) (define-key map [headings outline-next-visible-heading] (quote (menu-item "Next" outline-next-visible-heading :help "Move to the next visible heading line"))) (define-key map [headings outline-up-heading] (quote (menu-item "Up" outline-up-heading :help "Move to the visible heading line of which the present line is a subheading"))) map)) nil [3467 7586])
-            ("outline-minor-mode-menu-bar-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [outline] (cons "Outline" (nconc (make-sparse-keymap "Outline") (cdr (apply (quote append) (mapcar (lambda (x) (if (consp x) (cons (quote (--- "---")) (cdr x)))) outline-mode-menu-bar-map)))))) map)) nil [7588 8087])
-            ("outline-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "" outline-mode-prefix-map) (define-key map [menu-bar] outline-mode-menu-bar-map) map)) nil [8089 8269])
-            ("outline-font-lock-keywords" variable (:default-value (quote ((eval list (concat "^\\(?:" outline-regexp "\\).+") 0 (quote (outline-font-lock-face)) nil t)))) nil [8271 8518])
-            ("outline-1" variable
-               (:default-value (quote ((t :inherit font-lock-function-name-face)))
-                :type "face")
-                nil [8520 8618])
-            ("outline-2" variable
-               (:default-value (quote ((t :inherit font-lock-variable-name-face)))
-                :type "face")
-                nil [8620 8718])
-            ("outline-3" variable
-               (:default-value (quote ((t :inherit font-lock-keyword-face)))
-                :type "face")
-                nil [8720 8812])
-            ("outline-4" variable
-               (:default-value (quote ((t :inherit font-lock-comment-face)))
-                :type "face")
-                nil [8814 8906])
-            ("outline-5" variable
-               (:default-value (quote ((t :inherit font-lock-type-face)))
-                :type "face")
-                nil [8908 8997])
-            ("outline-6" variable
-               (:default-value (quote ((t :inherit font-lock-constant-face)))
-                :type "face")
-                nil [8999 9092])
-            ("outline-7" variable
-               (:default-value (quote ((t :inherit font-lock-builtin-face)))
-                :type "face")
-                nil [9094 9186])
-            ("outline-8" variable
-               (:default-value (quote ((t :inherit font-lock-string-face)))
-                :type "face")
-                nil [9188 9279])
-            ("outline-font-lock-faces" variable (:default-value [outline-1 outline-2 outline-3 outline-4 outline-5 outline-6 outline-7 outline-8]) nil [9281 9400])
-            ("outline-font-lock-face" function nil nil [9402 9709])
-            ("outline-view-change-hook" variable nil nil [9711 9808])
-            ("outline-mode-hook" variable nil nil [9810 9887])
-            ("outline-blank-line" variable nil nil [9889 9983])
-            ("define-derived-mode" code nil nil [10000 11916])
-            ("outline-minor-mode-prefix" variable (:default-value "@") nil [11918 12202])
-            ("define-minor-mode" code nil nil [12219 13229])
-            ("outline-level" variable (:default-value (quote outline-level)) nil [13232 13456])
-            ("outline-heading-alist" variable nil nil [13517 14450])
-            ("make-variable-buffer-local" code nil nil [14451 14502])
-            ("outline-level" function nil nil [14804 15182])
-            ("outline-next-preface" function nil nil [15184 15565])
-            ("outline-next-heading" function (:user-visible-flag t) nil [15567 15890])
-            ("outline-previous-heading" function (:user-visible-flag t) nil [15892 16083])
-            ("outline-invisible-p" function (:arguments ("pos")) nil [16085 16302])
-            ("outline-back-to-heading" function (:arguments ("invisible-ok")) nil [16304 16878])
-            ("outline-on-heading-p" function (:arguments ("invisible-ok")) nil [16880 17188])
-            ("outline-insert-heading" function (:user-visible-flag t) nil [17190 17835])
-            ("outline-invent-heading" function (:arguments ("head" "up")) nil [17837 18613])
-            ("outline-promote" function
-               (:user-visible-flag t
-                :arguments ("which"))
-                nil [18615 20172])
-            ("outline-demote" function
-               (:user-visible-flag t
-                :arguments ("which"))
-                nil [20174 21924])
-            ("outline-head-from-level" function (:arguments ("level" "head" "alist")) nil [21926 23588])
-            ("outline-map-region" function (:arguments ("fun" "beg" "end")) nil [23590 24101])
-            ("outline-move-subtree-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [24128 24303])
-            ("outline-move-subtree-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [24305 25678])
-            ("outline-end-of-heading" function nil nil [25680 25868])
-            ("outline-next-visible-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25870 26727])
-            ("outline-previous-visible-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [26729 27007])
-            ("outline-mark-subtree" function (:user-visible-flag t) nil [27009 27480])
-            ("outline-isearch-open-invisible-function" variable nil nil [27484 27734])
-            ("put" code nil nil [27736 27808])
-            ("outline-flag-region" function (:arguments ("from" "to" "flag")) nil [27809 28618])
-            ("outline-reveal-toggle-invisible" function (:arguments ("o" "hidep")) nil [28620 30535])
-            ("outline-isearch-open-invisible" function (:arguments ("_overlay")) nil [30689 30833])
-            ("outline-hide-entry" function (:user-visible-flag t) nil [30836 31085])
-            ("define-obsolete-function-alias" code nil nil [31087 31162])
-            ("outline-show-entry" function (:user-visible-flag t) nil [31164 31656])
-            ("define-obsolete-function-alias" code nil nil [31658 31733])
-            ("outline-hide-body" function (:user-visible-flag t) nil [31735 31970])
-            ("define-obsolete-function-alias" code nil nil [31972 32045])
-            ("outline-hide-region-body" function (:arguments ("start" "end")) nil [32047 32791])
-            ("define-obsolete-function-alias" code nil nil [32793 32880])
-            ("outline-show-all" function (:user-visible-flag t) nil [32882 33017])
-            ("define-obsolete-function-alias" code nil nil [33019 33090])
-            ("outline-hide-subtree" function (:user-visible-flag t) nil [33092 33223])
-            ("define-obsolete-function-alias" code nil nil [33225 33304])
-            ("outline-hide-leaves" function (:user-visible-flag t) nil [33306 33654])
-            ("define-obsolete-function-alias" code nil nil [33656 33733])
-            ("outline-show-subtree" function (:user-visible-flag t) nil [33735 33868])
-            ("define-obsolete-function-alias" code nil nil [33870 33949])
-            ("outline-show-heading" function nil nil [33951 34271])
-            ("outline-hide-sublevels" function
-               (:user-visible-flag t
-                :arguments ("levels"))
-                nil [34273 35935])
-            ("define-obsolete-function-alias" code nil nil [35937 36020])
-            ("outline-hide-other" function (:user-visible-flag t) nil [36022 36580])
-            ("define-obsolete-function-alias" code nil nil [36582 36657])
-            ("outline-toggle-children" function (:user-visible-flag t) nil [36659 36972])
-            ("outline-flag-subtree" function (:arguments ("flag")) nil [36974 37217])
-            ("outline-end-of-subtree" function nil nil [37219 37781])
-            ("outline-show-branches" function (:user-visible-flag t) nil [37784 37927])
-            ("define-obsolete-function-alias" code nil nil [37929 38010])
-            ("outline-show-children" function
-               (:user-visible-flag t
-                :arguments ("level"))
-                nil [38012 38925])
-            ("define-obsolete-function-alias" code nil nil [38927 39008])
-            ("outline-up-heading" function
-               (:user-visible-flag t
-                :arguments ("arg" "invisible-ok"))
-                nil [39013 39903])
-            ("outline-forward-same-level" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [39905 40396])
-            ("outline-get-next-sibling" function nil nil [40398 40793])
-            ("outline-backward-same-level" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [40795 41287])
-            ("outline-get-last-sibling" function nil nil [41289 41769])
-            ("outline-headers-as-kill" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [41772 42941])
-            ("outline" package nil nil [42943 42961])
-            ("noutline" package nil nil [42962 42981]))          
-      :file "outline.el"
-      :pointmax 43008
-      :fsize 43007
-      :lastmodtime '(23525 29514 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("declare-function" code nil nil [3470 3557])
-            ("overlay" include nil nil [3582 3600])
-            ("cl" include nil nil [3845 3858])
-            ("allout" customgroup (:user-visible-flag t) nil [3944 4134])
-            ("allout-keybindings" customgroup (:user-visible-flag t) nil [4135 4242])
-            ("allout-command-prefix" variable nil nil [4297 4327])
-            ("allout-mode-map" variable (:default-value (quote allout-mode-map)) nil [4490 4746])
-            ("allout-mode-map-value" variable nil nil [4779 5008])
-            ("defalias" code nil nil [5137 5186])
-            ("allout-compose-and-institute-keymap" function (:arguments ("varname" "value")) nil [5258 6772])
-            ("allout-institute-keymap" function (:arguments ("map")) nil [6811 7520])
-            ("allout-compose-and-institute-keymap" code nil nil [7646 7683])
-            ("allout-command-prefix" variable (:default-value " ") nil [7715 8051])
-            ("define-widget" code nil nil [8088 8394])
-            ("allout-prefixed-keybindings" variable (:default-value (quote (("[(control ?n)]" allout-next-visible-heading) ("[(control ?p)]" allout-previous-visible-heading) ("[(control ?u)]" allout-up-current-level) ("[(control ?f)]" allout-forward-current-level) ("[(control ?b)]" allout-backward-current-level) ("[(control ?a)]" allout-beginning-of-current-entry) ("[(control ?e)]" allout-end-of-entry) ("[(control ?i)]" allout-show-children) ("[(control ?s)]" allout-show-current-subtree) ("[(control ?t)]" allout-toggle-current-subtree-exposure) ("[?h]" allout-hide-current-subtree) ("[(control ?o)]" allout-show-current-entry) ("[?!]" allout-show-all) ("[?x]" allout-toggle-current-subtree-encryption) ("[? ]" allout-open-sibtopic) ("[?.]" allout-open-subtopic) ("[?,]" allout-open-supertopic) ("[?']" allout-shift-in) ("[?>]" allout-shift-in) ("[?<]" allout-shift-out) ("[(control ?m)]" allout-rebullet-topic) ("[?*]" allout-rebullet-current-heading) ("[?#]" allout-number-siblings) ("[(control ?k)]" allout-kill-topic) ("[(meta ?k)]" allout-copy-topic-as-kill) ("[?@]" allout-resolve-xref) ("[?=?c]" allout-copy-exposed-to-buffer) ("[?=?i]" allout-indented-exposed-to-buffer) ("[?=?t]" allout-latexify-exposed) ("[?=?p]" allout-flatten-exposed-to-buffer)))) nil [8432 10660])
-            ("allout-unprefixed-keybindings" variable (:default-value (quote (("[(control ?k)]" allout-kill-line) ("[(meta ?k)]" allout-copy-line-as-kill) ("[(control ?y)]" allout-yank) ("[(meta ?y)]" allout-yank-pop)))) nil [10700 11564])
-            ("allout-auto-activation-helper" function (:arguments ("var" "value")) nil [11631 11831])
-            ("allout-setup" function nil nil [11871 12321])
-            ("allout-auto-activation" variable nil nil [12368 13348])
-            ("allout-setup" code nil nil [13349 13363])
-            ("allout-default-layout" variable (:default-value (quote (-2 : 0))) nil [13394 16002])
-            ("define-widget" code nil nil [16030 16537])
-            ("allout-inhibit-auto-fill" variable nil nil [16572 17216])
-            ("make-variable-buffer-local" code nil nil [17217 17271])
-            ("allout-inhibit-auto-fill-on-headline" variable nil nil [17317 17495])
-            ("make-variable-buffer-local" code nil nil [17496 17562])
-            ("allout-use-hanging-indents" variable (:default-value t) nil [17598 17908])
-            ("make-variable-buffer-local" code nil nil [17909 17965])
-            ("put" code nil nil [17981 18108])
-            ("allout-reindent-bodies" variable (:default-value (if allout-use-hanging-indents (quote text))) nil [18140 18734])
-            ("make-variable-buffer-local" code nil nil [18736 18788])
-            ("put" code nil nil [18804 18901])
-            ("allout-show-bodies" variable nil nil [18930 19083])
-            ("make-variable-buffer-local" code nil nil [19084 19132])
-            ("put" code nil nil [19148 19267])
-            ("allout-beginning-of-line-cycles" variable (:default-value t) nil [19309 20664])
-            ("allout-end-of-line-cycles" variable (:default-value t) nil [20699 21609])
-            ("allout-header-prefix" variable (:default-value ".") nil [21640 22176])
-            ("make-variable-buffer-local" code nil nil [22177 22227])
-            ("put" code nil nil [22243 22300])
-            ("allout-primary-bullet" variable (:default-value "*") nil [22331 22857])
-            ("make-variable-buffer-local" code nil nil [22858 22909])
-            ("put" code nil nil [22925 22983])
-            ("allout-plain-bullets-string" variable (:default-value ".,") nil [23020 23384])
-            ("make-variable-buffer-local" code nil nil [23385 23442])
-            ("put" code nil nil [23458 23522])
-            ("allout-distinctive-bullets-string" variable (:default-value "*+-=>()[{}&!?#%\"X@$~_\\:;^") nil [23565 25338])
-            ("make-variable-buffer-local" code nil nil [25339 25402])
-            ("put" code nil nil [25418 25488])
-            ("allout-use-mode-specific-leader" variable (:default-value t) nil [25530 27003])
-            ("put" code nil nil [27019 27187])
-            ("allout-mode-leaders" variable (:default-value (quote nil)) nil [27216 27735])
-            ("allout-old-style-prefixes" variable nil nil [27771 28214])
-            ("make-variable-buffer-local" code nil nil [28215 28270])
-            ("put" code nil nil [28286 28412])
-            ("allout-stylish-prefixes" variable (:default-value t) nil [28468 29975])
-            ("make-variable-buffer-local" code nil nil [29976 30029])
-            ("put" code nil nil [30045 30169])
-            ("allout-numbered-bullet" variable (:default-value "#") nil [30202 30609])
-            ("make-variable-buffer-local" code nil nil [30610 30662])
-            ("put" code nil nil [30678 30839])
-            ("allout-file-xref-bullet" variable (:default-value "@") nil [30872 31108])
-            ("put" code nil nil [31124 31286])
-            ("allout-presentation-padding" variable (:default-value 2) nil [31323 31470])
-            ("make-variable-buffer-local" code nil nil [31472 31529])
-            ("put" code nil nil [31545 31610])
-            ("define-obsolete-variable-alias" code nil nil [31660 31781])
-            ("allout-flattened-numbering-abbreviation" variable nil nil [31782 32047])
-            ("allout-number-pages" variable nil nil [32101 32242])
-            ("allout-label-style" variable (:default-value "\\large\\bf") nil [32270 32411])
-            ("allout-head-line-style" variable (:default-value "\\large\\sl ") nil [32443 32590])
-            ("allout-body-line-style" variable (:default-value " ") nil [32622 32758])
-            ("allout-title-style" variable (:default-value "\\Large\\bf") nil [32786 32927])
-            ("allout-title" variable (:default-value (quote (or buffer-file-name (buffer-name)))) nil [32949 33128])
-            ("allout-line-skip" variable (:default-value ".05cm") nil [33154 33283])
-            ("allout-indent" variable (:default-value ".3cm") nil [33306 33413])
-            ("allout-encryption" customgroup (:user-visible-flag t) nil [33471 33583])
-            ("allout-topic-encryption-bullet" variable (:default-value "~") nil [33623 33806])
-            ("allout-encrypt-unencrypted-on-saves" variable (:default-value t) nil [33851 34540])
-            ("make-variable-buffer-local" code nil nil [34541 34606])
-            ("allout-auto-save-temporarily-disabled" variable nil nil [34607 34849])
-            ("allout-just-did-undo" variable nil nil [34850 34954])
-            ("make-variable-buffer-local" code nil nil [34955 35005])
-            ("allout-developer" customgroup (:user-visible-flag t) nil [35055 35183])
-            ("allout-run-unit-tests-on-load" variable nil nil [35222 35673])
-            ("allout-enable-file-variable-adjustment" variable (:default-value t) nil [35758 36289])
-            ("make-variable-buffer-local" code nil nil [36290 36358])
-            ("allout-version" variable (:default-value "2.3") nil [36499 36590])
-            ("allout-version" function
-               (:user-visible-flag t
-                :arguments ("here"))
-                nil [36615 36854])
-            ("allout-mode" variable nil nil [36945 37008])
-            ("make-variable-buffer-local" code nil nil [37009 37050])
-            ("allout-layout" variable nil nil [37078 38210])
-            ("make-variable-buffer-local" code nil nil [38211 38254])
-            ("put" code nil nil [38270 38376])
-            ("allout-regexp" variable nil nil [38429 38672])
-            ("make-variable-buffer-local" code nil nil [38673 38716])
-            ("allout-bullets-string" variable nil nil [38748 39031])
-            ("make-variable-buffer-local" code nil nil [39032 39083])
-            ("allout-bullets-string-len" variable nil nil [39119 39217])
-            ("make-variable-buffer-local" code nil nil [39218 39273])
-            ("allout-depth-specific-regexp" variable nil nil [39312 39809])
-            ("make-variable-buffer-local" code nil nil [39810 39868])
-            ("allout-depth-one-regexp" variable nil nil [39902 40229])
-            ("make-variable-buffer-local" code nil nil [40230 40283])
-            ("allout-line-boundary-regexp" variable nil nil [40321 40474])
-            ("make-variable-buffer-local" code nil nil [40475 40532])
-            ("allout-bob-regexp" variable nil nil [40560 40665])
-            ("make-variable-buffer-local" code nil nil [40666 40713])
-            ("allout-header-subtraction" variable (:default-value (1- (length allout-header-prefix))) nil [40749 40890])
-            ("make-variable-buffer-local" code nil nil [40891 40946])
-            ("allout-plain-bullets-string-len" variable (:default-value (length allout-plain-bullets-string)) nil [40988 41142])
-            ("make-variable-buffer-local" code nil nil [41143 41204])
-            ("allout-doublecheck-at-and-shallower" variable
-               (:constant-flag t
-                :default-value 3)
-                nil [41251 42574])
-            ("allout-reset-header-lead" function
-               (:user-visible-flag t
-                :arguments ("header-lead"))
-                nil [42623 42901])
-            ("allout-lead-with-comment-string" function
-               (:user-visible-flag t
-                :arguments ("header-lead"))
-                nil [42957 43435])
-            ("allout-infer-header-lead-and-primary-bullet" function nil nil [43492 45320])
-            ("defalias" code nil nil [45321 45404])
-            ("allout-infer-body-reindent" function nil nil [45444 45838])
-            ("allout-set-regexp" function (:user-visible-flag t) nil [45869 51195])
-            ("define-obsolete-function-alias" code nil nil [51196 51273])
-            ("allout-mode-exposure-menu" variable nil nil [51291 51325])
-            ("allout-mode-editing-menu" variable nil nil [51326 51359])
-            ("allout-mode-navigation-menu" variable nil nil [51360 51396])
-            ("allout-mode-misc-menu" variable nil nil [51397 51427])
-            ("allout-produce-mode-menubar-entries" function nil nil [51428 53903])
-            ("allout-mode-prior-settings" variable nil nil [53981 54156])
-            ("make-variable-buffer-local" code nil nil [54157 54213])
-            ("allout-add-resumptions" function (:arguments ("pairs")) nil [54260 57074])
-            ("allout-do-resumptions" function nil nil [57109 57686])
-            ("allout-unprotected" function (:arguments ("expr")) nil [57756 57967])
-            ("allout-mode-hook" variable nil nil [57994 58061])
-            ("define-obsolete-variable-alias" code nil nil [58099 58191])
-            ("allout-mode-deactivate-hook" variable nil nil [58192 58268])
-            ("allout-exposure-category" variable nil nil [58303 58402])
-            ("define-obsolete-variable-alias" code nil nil [58446 58550])
-            ("allout-exposure-change-functions" variable nil nil [58551 59082])
-            ("define-obsolete-variable-alias" code nil nil [59126 59230])
-            ("allout-structure-added-functions" variable nil nil [59231 59652])
-            ("define-obsolete-variable-alias" code nil nil [59698 59806])
-            ("allout-structure-deleted-functions" variable nil nil [59807 60376])
-            ("define-obsolete-variable-alias" code nil nil [60422 60530])
-            ("allout-structure-shifted-functions" variable nil nil [60531 61080])
-            ("allout-after-copy-or-kill-hook" variable nil nil [61122 61266])
-            ("allout-post-undo-hook" variable nil nil [61299 61520])
-            ("allout-outside-normal-auto-fill-function" variable nil nil [61572 61822])
-            ("make-variable-buffer-local" code nil nil [61823 61893])
-            ("add-to-list" code nil nil [61949 62012])
-            ("allout-passphrase-verifier-string" variable nil nil [62056 62729])
-            ("make-variable-buffer-local" code nil nil [62730 62793])
-            ("make-obsolete-variable" code nil nil [62794 62887])
-            ("put" code nil nil [62903 62973])
-            ("allout-passphrase-hint-string" variable nil nil [63013 63437])
-            ("make-variable-buffer-local" code nil nil [63438 63497])
-            ("setq-default" code nil nil [63498 63545])
-            ("make-obsolete-variable" code nil nil [63546 63635])
-            ("put" code nil nil [63651 63717])
-            ("allout-after-save-decrypt" variable nil nil [63753 64122])
-            ("make-variable-buffer-local" code nil nil [64123 64178])
-            ("allout-encryption-plaintext-sanitization-regexps" variable nil nil [64237 64896])
-            ("make-variable-buffer-local" code nil nil [64897 64975])
-            ("allout-encryption-ciphertext-rejection-regexps" variable nil nil [65032 65521])
-            ("make-variable-buffer-local" code nil nil [65523 65599])
-            ("allout-encryption-ciphertext-rejection-ceiling" variable (:default-value 5) nil [65656 65854])
-            ("make-variable-buffer-local" code nil nil [65855 65931])
-            ("allout-mode-p" function nil nil [66108 66209])
-            ("allout-write-contents-hook-handler" function nil nil [66257 67753])
-            ("allout-after-saves-handler" function nil nil [67793 68553])
-            ("allout-called-interactively-p" function nil nil [68596 68919])
-            ("allout-inhibit-aberrance-doublecheck" variable nil nil [69377 69580])
-            ("allout-explicitly-deactivated" variable nil nil [69660 69823])
-            ("make-variable-buffer-local" code nil nil [69824 69883])
-            ("allout-init" function (:arguments ("mode")) nil [69911 70343])
-            ("allout-setup-menubar" function nil nil [70377 70724])
-            ("allout-overlay-preparations" function nil nil [70761 71824])
-            ("define-minor-mode" code nil nil [71894 90089])
-            ("defalias" code nil nil [90148 90190])
-            ("allout-unload-function" function nil nil [90222 90465])
-            ("allout-hidden-p" function (:arguments ("pos")) nil [90536 90712])
-            ("allout-overlay-insert-in-front-handler" function (:arguments ("ol" "after" "beg" "_end" "_prelen")) nil [90848 91251])
-            ("allout-overlay-interior-modification-handler" function (:arguments ("ol" "after" "beg" "end" "_prelen")) nil [91398 93218])
-            ("allout-before-change-handler" function (:arguments ("beg" "end")) nil [93266 94029])
-            ("allout-isearch-end-handler" function (:arguments ("_overlay")) nil [94085 94498])
-            ("allout-recent-prefix-beginning" variable nil nil [95062 95171])
-            ("make-variable-buffer-local" code nil nil [95172 95232])
-            ("allout-recent-prefix-end" variable nil nil [95266 95367])
-            ("make-variable-buffer-local" code nil nil [95368 95422])
-            ("allout-recent-depth" variable nil nil [95451 95529])
-            ("make-variable-buffer-local" code nil nil [95530 95579])
-            ("allout-recent-end-of-subtree" variable nil nil [95617 95723])
-            ("make-variable-buffer-local" code nil nil [95724 95782])
-            ("allout-prefix-data" function nil nil [95813 96486])
-            ("allout-nullify-prefix-data" function nil nil [96525 96769])
-            ("allout-recent-depth" function nil nil [96801 97174])
-            ("allout-recent-prefix" function nil nil [97207 97680])
-            ("allout-recent-bullet" function nil nil [97713 98224])
-            ("allout-do-doublecheck" function nil nil [98338 98786])
-            ("allout-aberrant-container-p" function nil nil [98829 100703])
-            ("allout-on-current-heading-p" function nil nil [100745 101145])
-            ("defalias" code nil nil [101179 101239])
-            ("allout-e-o-prefix-p" function nil nil [101273 101633])
-            ("allout-depth" function nil nil [101689 102255])
-            ("allout-current-depth" function nil nil [102290 102653])
-            ("allout-get-current-prefix" function nil nil [102693 102841])
-            ("allout-get-bullet" function nil nil [102873 103032])
-            ("allout-current-bullet" function nil nil [103068 103483])
-            ("allout-get-prefix-bullet" function (:arguments ("prefix")) nil [103528 103847])
-            ("allout-sibling-index" function (:arguments ("depth")) nil [103897 104563])
-            ("allout-topic-flat-index" function nil nil [104601 105006])
-            ("allout-beginning-of-current-line" function nil nil [105081 105579])
-            ("allout-end-of-current-line" function nil nil [105619 106026])
-            ("allout-beginning-of-line" function (:user-visible-flag t) nil [106064 107342])
-            ("allout-end-of-line" function (:user-visible-flag t) nil [107374 108390])
-            ("allout-mark-active-p" function nil nil [108424 108809])
-            ("allout-next-heading" function nil nil [108842 109711])
-            ("allout-this-or-next-heading" function nil nil [109749 110006])
-            ("allout-previous-heading" function nil nil [110043 110963])
-            ("allout-get-invisibility-overlay" function nil nil [111008 111343])
-            ("allout-back-to-visible-text" function nil nil [111384 111604])
-            ("allout-chart-subtree" function (:arguments ("levels" "visible" "orig-depth" "prev-depth")) nil [111989 116025])
-            ("allout-chart-siblings" function (:arguments ("_start" "_end")) nil [116079 116537])
-            ("allout-chart-to-reveal" function (:arguments ("chart" "depth")) nil [116584 117477])
-            ("allout-goto-prefix" function nil nil [118807 119512])
-            ("allout-goto-prefix-doublechecked" function nil nil [119558 120045])
-            ("allout-end-of-prefix" function (:arguments ("ignore-decorations")) nil [120080 120662])
-            ("allout-current-bullet-pos" function nil nil [120701 120875])
-            ("allout-back-to-current-heading" function
-               (:user-visible-flag t
-                :arguments ("interactive"))
-                nil [120940 121784])
-            ("defalias" code nil nil [121820 121886])
-            ("allout-pre-next-prefix" function nil nil [121922 122128])
-            ("allout-end-of-subtree" function
-               (:user-visible-flag t
-                :arguments ("current" "include-trailing-blank"))
-                nil [122203 123137])
-            ("allout-end-of-current-subtree" function
-               (:user-visible-flag t
-                :arguments ("include-trailing-blank"))
-                nil [123212 123646])
-            ("allout-beginning-of-current-entry" function
-               (:user-visible-flag t
-                :arguments ("interactive"))
-                nil [123714 124313])
-            ("allout-end-of-entry" function
-               (:user-visible-flag t
-                :arguments ("inclusive"))
-                nil [124365 124778])
-            ("allout-end-of-current-heading" function nil nil [124821 124965])
-            ("defalias" code nil nil [124966 125030])
-            ("allout-get-body-text" function nil nil [125064 125544])
-            ("allout-ascend-to-depth" function (:arguments ("depth")) nil [125605 126067])
-            ("allout-ascend" function (:arguments ("dont-move-if-unsuccessful")) nil [126129 127290])
-            ("allout-descend-to-depth" function (:arguments ("depth")) nil [127332 127911])
-            ("allout-up-current-level" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [127951 128363])
-            ("allout-next-sibling" function (:arguments ("depth" "backward")) nil [128436 130232])
-            ("allout-next-sibling-leap" function (:arguments ("depth" "backward")) nil [130294 132805])
-            ("allout-previous-sibling" function (:arguments ("depth" "backward")) nil [132866 133203])
-            ("allout-snug-back" function nil nil [133233 133500])
-            ("allout-beginning-of-level" function nil nil [133539 133673])
-            ("allout-end-of-level" function (:arguments ("_backward")) nil [133724 134011])
-            ("allout-next-visible-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [134055 136326])
-            ("allout-previous-visible-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [136374 136727])
-            ("allout-forward-current-level" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [136772 137767])
-            ("allout-backward-current-level" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [137813 138106])
-            ("allout-post-goto-bullet" variable nil nil [138181 138598])
-            ("make-variable-buffer-local" code nil nil [138599 138652])
-            ("allout-command-counter" variable nil nil [138685 138885])
-            ("make-variable-buffer-local" code nil nil [138886 138938])
-            ("allout-this-command-hid-text" variable nil nil [138977 139080])
-            ("make-variable-buffer-local" code nil nil [139081 139139])
-            ("allout-post-command-business" function nil nil [139181 140880])
-            ("allout-pre-command-business" function nil nil [140921 142102])
-            ("allout-hotspot-key-handler" function (:user-visible-flag t) nil [142142 144217])
-            ("allout-find-file-hook" function nil nil [144253 144520])
-            ("allout-solicit-alternate-bullet" function (:arguments ("depth" "current-bullet")) nil [144628 145496])
-            ("allout-distinctive-bullet" function (:arguments ("bullet")) nil [145541 145731])
-            ("allout-numbered-type-prefix" function (:arguments ("prefix")) nil [145788 146098])
-            ("allout-encrypted-type-prefix" function (:arguments ("prefix")) nil [146156 146497])
-            ("allout-bullet-for-depth" function (:arguments ("depth")) nil [146549 146962])
-            ("allout-make-topic-prefix" function (:arguments ("prior-bullet" "new" "depth" "instead" "number-control" "index")) nil [147047 154044])
-            ("allout-open-topic" function (:arguments ("relative-depth" "before" "offer-recent-bullet")) nil [154126 162725])
-            ("allout-open-subtopic" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [162762 163020])
-            ("allout-open-sibtopic" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [163057 163370])
-            ("allout-open-supertopic" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [163409 163677])
-            ("allout-former-auto-filler" variable nil nil [163770 163877])
-            ("allout-auto-fill" function nil nil [163908 165335])
-            ("allout-reindent-body" function (:arguments ("old-depth" "new-depth" "_number")) nil [165406 166931])
-            ("allout-rebullet-current-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [166980 168152])
-            ("allout-rebullet-heading" function (:arguments ("instead" "new-depth" "number-control" "index" "do-successors")) nil [168211 172521])
-            ("allout-rebullet-topic" function
-               (:user-visible-flag t
-                :arguments ("arg" "sans-offspring"))
-                nil [172568 173738])
-            ("allout-rebullet-topic-grunt" function (:arguments ("relative-depth" "starting-depth" "starting-point" "index" "do-successors" "sans-offspring")) nil [173808 178941])
-            ("allout-renumber-to-depth" function (:arguments ("depth")) nil [178995 180294])
-            ("allout-number-siblings" function
-               (:user-visible-flag t
-                :arguments ("denumber"))
-                nil [180349 181302])
-            ("allout-shift-in" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [181335 183232])
-            ("allout-shift-out" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [183266 184922])
-            ("allout-kill-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [185043 186339])
-            ("allout-copy-line-as-kill" function (:user-visible-flag t) nil [186378 186614])
-            ("allout-kill-topic" function (:user-visible-flag t) nil [186646 188163])
-            ("allout-copy-topic-as-kill" function (:user-visible-flag t) nil [188203 188465])
-            ("allout-annotate-hidden" function (:arguments ("begin" "end")) nil [188511 190068])
-            ("allout-deannotate-hidden" function (:arguments ("begin" "end")) nil [190116 190421])
-            ("allout-hide-by-annotation" function (:arguments ("begin" "end")) nil [190470 191836])
-            ("allout-yank-processing" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [191873 198099])
-            ("allout-yank" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [198138 199427])
-            ("allout-yank-pop" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [199470 199871])
-            ("allout-resolve-xref" function (:user-visible-flag t) nil [199972 201471])
-            ("allout-flag-region" function (:arguments ("from" "to" "flag")) nil [201562 202498])
-            ("allout-flag-current-subtree" function (:arguments ("flag")) nil [202543 203172])
-            ("allout-show-entry" function (:user-visible-flag t) nil [203227 203828])
-            ("allout-show-children" function
-               (:user-visible-flag t
-                :arguments ("level" "strict"))
-                nil [203884 207596])
-            ("allout-show-to-offshoot" function (:user-visible-flag t) nil [207633 208825])
-            ("allout-hide-current-entry" function (:user-visible-flag t) nil [208864 209204])
-            ("allout-show-current-entry" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [209256 209657])
-            ("allout-show-current-subtree" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [209711 210386])
-            ("allout-current-topic-collapsed-p" function (:arguments ("include-single-liners")) nil [210463 211318])
-            ("allout-hide-current-subtree" function
-               (:user-visible-flag t
-                :arguments ("just-close"))
-                nil [211379 212283])
-            ("allout-toggle-current-subtree-exposure" function (:user-visible-flag t) nil [212332 212674])
-            ("allout-show-current-branches" function (:user-visible-flag t) nil [212716 212926])
-            ("allout-hide-current-leaves" function (:user-visible-flag t) nil [212966 213245])
-            ("allout-show-all" function (:user-visible-flag t) nil [213301 213521])
-            ("allout-hide-bodies" function (:user-visible-flag t) nil [213553 213690])
-            ("allout-hide-region-body" function (:arguments ("start" "end")) nil [213736 214267])
-            ("allout-expose-topic" function
-               (:user-visible-flag t
-                :arguments ("spec"))
-                nil [214305 219047])
-            ("allout-old-expose-topic" function
-               (:user-visible-flag t
-                :arguments ("spec" "followers"))
-                nil [219104 222113])
-            ("allout-new-exposure" function (:arguments ("spec")) nil [222147 223329])
-            ("allout-stringify-flat-index" function (:arguments ("flat-index" "context")) nil [223553 224582])
-            ("allout-stringify-flat-index-plain" function (:arguments ("flat-index")) nil [224639 224983])
-            ("allout-stringify-flat-index-indented" function (:arguments ("flat-index")) nil [225043 225863])
-            ("allout-listify-exposed" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "format"))
-                nil [225925 230067])
-            ("allout-region-active-p" function nil nil [230103 230271])
-            ("allout-process-exposed" function (:arguments ("func" "from" "to" "frombuf" "tobuf" "format" "_start-num")) nil [230361 232460])
-            ("allout-insert-listified" function (:arguments ("listified")) nil [232528 233250])
-            ("allout-copy-exposed-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg" "tobuf" "format"))
-                nil [233319 234850])
-            ("allout-flatten-exposed-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg" "tobuf"))
-                nil [234915 235533])
-            ("allout-indented-exposed-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg" "tobuf"))
-                nil [235599 236229])
-            ("allout-latex-verb-quote" function (:arguments ("string" "_flow")) nil [236313 236797])
-            ("allout-latex-verbatim-quote-curr-line" function nil nil [236848 237684])
-            ("allout-insert-latex-header" function (:arguments ("buffer")) nil [237730 239764])
-            ("allout-insert-latex-trailer" function (:arguments ("buffer")) nil [239811 239967])
-            ("allout-latexify-one-item" function (:arguments ("depth" "_prefix" "bullet" "text")) nil [240029 241604])
-            ("allout-latexify-exposed" function
-               (:user-visible-flag t
-                :arguments ("arg" "tobuf"))
-                nil [241660 242637])
-            ("allout-toggle-current-subtree-encryption" function
-               (:user-visible-flag t
-                :arguments ("keymode-cue"))
-                nil [242731 244750])
-            ("allout-toggle-subtree-encryption" function
-               (:user-visible-flag t
-                :arguments ("keymode-cue"))
-                nil [244816 250524])
-            ("declare-function" code nil nil [250526 250634])
-            ("declare-function" code nil nil [250635 250703])
-            ("declare-function" code nil nil [250704 250764])
-            ("declare-function" code nil nil [250765 250881])
-            ("declare-function" code nil nil [250882 250937])
-            ("declare-function" code nil nil [250938 250991])
-            ("allout-encrypt-string" function (:arguments ("text" "decrypt" "allout-buffer" "keymode-cue" "rejected")) nil [251119 258679])
-            ("allout-inhibit-auto-save-info-for-decryption" function (:arguments ("was-buffer-saved-size")) nil [258733 259146])
-            ("allout-maybe-resume-auto-save-info-after-encryption" function nil nil [259210 259747])
-            ("allout-encrypted-topic-p" function nil nil [259785 260105])
-            ("allout-next-topic-pending-encryption" function nil nil [260154 261596])
-            ("allout-encrypt-decrypted" function (:user-visible-flag t) nil [261633 263619])
-            ("defalias" code nil nil [263777 263824])
-            ("outlineify-sticky" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [263840 264579])
-            ("allout-file-vars-section-data" function nil nil [264622 265696])
-            ("allout-adjust-file-variable" function (:arguments ("varname" "value")) nil [265750 268293])
-            ("allout-get-configvar-values" function (:arguments ("configvar-name")) nil [268341 269013])
-            ("allout-mark-topic" function (:user-visible-flag t) nil [269060 269341])
-            ("allout-solicit-char-in-string" function (:arguments ("prompt" "string" "do-defaulting")) nil [269433 270397])
-            ("allout-regexp-sans-escapes" function (:arguments ("regexp" "successive-backslashes")) nil [270460 271347])
-            ("allout-count-trailing-whitespace-region" function (:arguments ("beg" "end")) nil [271407 271852])
-            ("allout-format-quote" function (:arguments ("string")) nil [271891 272110])
-            ("allout-flatten" function (:arguments ("list")) nil [272156 272417])
-            ("unless" code nil nil [272485 272789])
-            ("allout-mark-marker" function (:arguments ("force" "buffer")) nil [272853 273154])
-            ("if" code nil nil [273198 273695])
-            ("if" code nil nil [273728 273794])
-            ("if" code nil nil [273833 275033])
-            ("if" code nil nil [275086 275569])
-            ("if" code nil nil [275634 276055])
-            ("if" code nil nil [276125 276461])
-            ("if" code nil nil [276530 277797])
-            ("if" code nil nil [277861 280045])
-            ("defalias" code nil nil [280119 280359])
-            ("defalias" code nil nil [280437 280693])
-            ("defalias" code nil nil [280736 280885])
-            ("defalias" code nil nil [280979 281046])
-            ("if" code nil nil [281108 281266])
-            ("allout-bullet-isearch" function
-               (:user-visible-flag t
-                :arguments ("bullet"))
-                nil [281337 281782])
-            ("allout-run-unit-tests" function nil nil [281882 282079])
-            ("allout-tests-obliterate-variable" function (:arguments ("name")) nil [282155 282361])
-            ("allout-tests-globally-unbound" variable nil nil [282398 282514])
-            ("allout-tests-globally-true" variable nil nil [282515 282628])
-            ("allout-tests-locally-true" variable nil nil [282629 282741])
-            ("allout-test-resumptions" function nil nil [282742 288351])
-            ("when" code nil nil [288422 288484])
-            ("allout" package nil nil [288503 288520]))          
-      :file "allout.el"
-      :pointmax 288933
-      :fsize 288932
-      :lastmodtime '(23525 29502 0 0)
-      :unmatched-syntax '((close-paren 3861 . 3862) (symbol 3602 . 3619) (open-paren 3601 . 3602)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1159 1176])
-            ("rectangle" customgroup (:user-visible-flag t) nil [1179 1269])
-            ("operate-on-rectangle" function (:arguments ("function" "start" "end" "coerce-tabs")) nil [1338 2617])
-            ("defvar-local" code nil nil [2735 2838])
-            ("rectangle--pos-cols" function (:arguments ("start" "end" "window")) nil [2840 4473])
-            ("rectangle--col-pos" function (:arguments ("col" "kind")) nil [4475 5271])
-            ("rectangle--point-col" function (:arguments ("pos")) nil [5273 5453])
-            ("rectangle--crutches" function nil nil [5455 5577])
-            ("rectangle--reset-crutches" function nil nil [5578 5788])
-            ("apply-on-rectangle" function (:arguments ("function" "start" "end" "args")) nil [5817 6946])
-            ("delete-rectangle-line" function (:arguments ("startcol" "endcol" "fill")) nil [6948 7154])
-            ("delete-extract-rectangle-line" function (:arguments ("startcol" "endcol" "lines" "fill")) nil [7156 7552])
-            ("extract-rectangle-line" function (:arguments ("startcol" "endcol" "lines")) nil [7721 8685])
-            ("spaces-strings" variable
-               (:constant-flag t
-                :default-value (quote ["" " " "  " "   " "    " "     " "      " "       " "        "]))
-                nil [8687 8780])
-            ("spaces-string" function (:arguments ("n")) nil [8782 8906])
-            ("delete-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "fill"))
-                nil [8923 9414])
-            ("delete-extract-rectangle" function (:arguments ("start" "end" "fill")) nil [9431 9915])
-            ("extract-rectangle" function (:arguments ("start" "end")) nil [9932 10230])
-            ("extract-rectangle-bounds" function (:arguments ("start" "end")) nil [10232 10656])
-            ("killed-rectangle" variable nil nil [10658 10733])
-            ("kill-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "fill"))
-                nil [10750 11818])
-            ("copy-rectangle-as-kill" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [11835 12154])
-            ("yank-rectangle" function (:user-visible-flag t) nil [12171 12322])
-            ("insert-rectangle" function (:arguments ("rectangle")) nil [12339 12996])
-            ("open-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "fill"))
-                nil [13013 13528])
-            ("open-rectangle-line" function (:arguments ("startcol" "endcol" "fill")) nil [13530 13733])
-            ("delete-whitespace-rectangle-line" function (:arguments ("startcol" "_endcol" "fill")) nil [13735 14002])
-            ("defalias" code nil nil [14019 14075])
-            ("delete-whitespace-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "fill"))
-                nil [14104 14669])
-            ("string-rectangle-history" variable nil nil [14671 14708])
-            ("string-rectangle-line" function (:arguments ("startcol" "endcol" "string" "delete")) nil [14709 14882])
-            ("defvar-local" code nil nil [14884 14934])
-            ("defvar-local" code nil nil [14935 14986])
-            ("rectangle--string-flush-preview" function nil nil [14988 15155])
-            ("rectangle--string-erase-preview" function nil nil [15157 15295])
-            ("rectangle--space-to" function (:arguments ("col")) nil [15297 15382])
-            ("rectangle-preview" variable
-               (:default-value (quote ((t :inherit region)))
-                :type "face")
-                nil [15384 15508])
-            ("rectangle-preview" variable (:default-value t) nil [15510 15644])
-            ("rectangle--string-preview" function nil nil [15646 17366])
-            ("rectangle--inhibit-region-highlight" variable nil nil [17487 17535])
-            ("string-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "string"))
-                nil [17552 19640])
-            ("defalias" code nil nil [19657 19704])
-            ("string-insert-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "string"))
-                nil [19721 20393])
-            ("clear-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "fill"))
-                nil [20410 20816])
-            ("clear-rectangle-line" function (:arguments ("startcol" "endcol" "fill")) nil [20818 21231])
-            ("rectangle-number-line-counter" variable nil nil [21287 21325])
-            ("rectangle-number-line-callback" function (:arguments ("start" "_end" "format-string")) nil [21327 21558])
-            ("rectangle--default-line-number-format" function (:arguments ("start" "end" "start-at")) nil [21560 21739])
-            ("rectangle-number-lines" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "start-at" "format"))
-                nil [21756 22714])
-            ("add-function" code nil nil [22917 23026])
-            ("add-function" code nil nil [23027 23140])
-            ("add-function" code nil nil [23141 23229])
-            ("add-function" code nil nil [23230 23316])
-            ("rectangle-mark-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [15] (quote open-rectangle)) (define-key map [20] (quote string-rectangle)) (define-key map [remap exchange-point-and-mark] (quote rectangle-exchange-point-and-mark)) (dolist (cmd (quote (right-char left-char forward-char backward-char next-line previous-line))) (define-key map (vector (quote remap) cmd) (intern (format "rectangle-%s" cmd)))) map)) nil [23318 23834])
-            ("define-minor-mode" code nil nil [23851 24271])
-            ("rectangle-exchange-point-and-mark" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [24273 25099])
-            ("rectangle--*-char" function (:arguments ("cmd" "n" "other-cmd")) nil [25101 26949])
-            ("rectangle-right-char" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [26951 27128])
-            ("rectangle-left-char" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [27129 27304])
-            ("rectangle-forward-char" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [27306 27493])
-            ("rectangle-backward-char" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [27494 27683])
-            ("rectangle-next-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [27685 27945])
-            ("rectangle-previous-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [27946 28218])
-            ("rectangle--extract-region" function (:arguments ("orig" "delete")) nil [28221 29068])
-            ("rectangle--insert-region" function (:arguments ("orig" "strings")) nil [29070 29232])
-            ("rectangle--insert-for-yank" function (:arguments ("strs")) nil [29234 29631])
-            ("rectangle--place-cursor" function (:arguments ("leftcol" "left" "str")) nil [29633 29850])
-            ("rectangle--highlight-for-redisplay" function (:arguments ("orig" "start" "end" "window" "rol")) nil [29852 35136])
-            ("rectangle--unhighlight-for-redisplay" function (:arguments ("orig" "rol")) nil [35138 35332])
-            ("rect" package nil nil [35334 35349]))          
-      :file "rect.el"
-      :pointmax 35373
-      :fsize 35372
-      :lastmodtime '(23525 29516 0 0)
-      :unmatched-syntax '((close-paren 1176 . 1177) (symbol 1141 . 1158) (open-paren 1140 . 1141)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("comint" include nil nil [4917 4934])
-            ("pcomplete" customgroup (:user-visible-flag t) nil [4936 5027])
-            ("pcomplete-file-ignore" variable nil nil [5050 5224])
-            ("pcomplete-dir-ignore" variable nil nil [5226 5400])
-            ("pcomplete-ignore-case" variable (:default-value (memq system-type (quote (ms-dos windows-nt cygwin)))) nil [5402 5686])
-            ("pcomplete-autolist" variable nil nil [5688 5875])
-            ("pcomplete-suffix-list" variable (:default-value (list 47 58)) nil [5877 6030])
-            ("make-obsolete-variable" code nil nil [6031 6089])
-            ("pcomplete-recexact" variable nil nil [6091 6344])
-            ("define-obsolete-variable-alias" code nil nil [6346 6442])
-            ("pcomplete-man-function" variable (:default-value (quote man)) nil [6444 6640])
-            ("pcomplete-compare-entry-function" variable (:default-value (quote string-lessp)) nil [6642 6956])
-            ("pcomplete-help" variable nil nil [6958 7399])
-            ("pcomplete-expand-before-complete" variable nil nil [7401 7902])
-            ("pcomplete-parse-arguments-function" variable (:default-value (quote pcomplete-parse-buffer-arguments)) nil [7904 8672])
-            ("pcomplete-cycle-completions" variable (:default-value t) nil [8674 9277])
-            ("pcomplete-cycle-cutoff-length" variable (:default-value 5) nil [9279 10181])
-            ("pcomplete-restore-window-delay" variable (:default-value 1) nil [10183 10841])
-            ("pcomplete-try-first-hook" variable nil nil [10843 11112])
-            ("pcomplete-executables" function (:arguments ("regexp")) nil [11114 11273])
-            ("pcomplete-command-completion-function" variable (:default-value (function (lambda nil (pcomplete-here (pcomplete-executables))))) nil [11275 11501])
-            ("pcomplete-command-name-function" variable (:default-value (quote pcomplete-command-name)) nil [11503 11670])
-            ("pcomplete-default-completion-function" variable (:default-value (function (lambda nil (while (pcomplete-here (pcomplete-entries)))))) nil [11672 11961])
-            ("pcomplete-use-paring" variable (:default-value t) nil [11963 12246])
-            ("pcomplete-termination-string" variable (:default-value " ") nil [12248 12727])
-            ("pcomplete-current-completions" variable nil nil [12788 12830])
-            ("pcomplete-last-completion-length" variable nil nil [12831 12872])
-            ("pcomplete-last-completion-stub" variable nil nil [12873 12912])
-            ("pcomplete-last-completion-raw" variable nil nil [12913 12951])
-            ("pcomplete-last-window-config" variable nil nil [12952 12993])
-            ("pcomplete-window-restore-timer" variable nil nil [12994 13037])
-            ("make-variable-buffer-local" code nil nil [13039 13098])
-            ("make-variable-buffer-local" code nil nil [13099 13161])
-            ("make-variable-buffer-local" code nil nil [13162 13222])
-            ("make-variable-buffer-local" code nil nil [13223 13282])
-            ("make-variable-buffer-local" code nil nil [13283 13341])
-            ("make-variable-buffer-local" code nil nil [13342 13402])
-            ("pcomplete-show-help" variable nil nil [13496 13528])
-            ("pcomplete-show-list" variable nil nil [13529 13561])
-            ("pcomplete-expand-only-p" variable nil nil [13562 13598])
-            ("pcomplete-args" variable nil nil [13701 13728])
-            ("pcomplete-begins" variable nil nil [13729 13758])
-            ("pcomplete-last" variable nil nil [13759 13786])
-            ("pcomplete-index" variable nil nil [13787 13815])
-            ("pcomplete-stub" variable nil nil [13816 13843])
-            ("pcomplete-seen" variable nil nil [13844 13871])
-            ("pcomplete-norm-func" variable nil nil [13872 13904])
-            ("pcomplete-unquote-argument-function" variable (:default-value (function comint--unquote-argument)) nil [14410 14481])
-            ("pcomplete-unquote-argument" function (:arguments ("s")) nil [14483 14574])
-            ("pcomplete-requote-argument-function" variable (:default-value (function comint--requote-argument)) nil [14576 14647])
-            ("pcomplete--common-suffix" function (:arguments ("s1" "s2")) nil [14649 15182])
-            ("pcomplete-completions-at-point" function nil nil [15184 19543])
-            ("pcomplete-std-complete" function nil nil [19709 19923])
-            ("pcomplete" function
-               (:user-visible-flag t
-                :arguments ("interactively"))
-                nil [19968 21689])
-            ("pcomplete-reverse" function (:user-visible-flag t) nil [21706 21838])
-            ("pcomplete-expand-and-complete" function (:user-visible-flag t) nil [21855 22065])
-            ("pcomplete-continue" function (:user-visible-flag t) nil [22082 22298])
-            ("pcomplete-expand" function (:user-visible-flag t) nil [22315 23006])
-            ("pcomplete-help" function (:user-visible-flag t) nil [23023 23181])
-            ("pcomplete-list" function (:user-visible-flag t) nil [23198 23617])
-            ("pcomplete-arg" function (:arguments ("index" "offset")) nil [23665 24561])
-            ("pcomplete-begin" function (:arguments ("index" "offset")) nil [24563 24925])
-            ("pcomplete-actual-arg" function (:arguments ("index" "offset")) nil [24927 25272])
-            ("pcomplete-next-arg" function nil nil [25274 25545])
-            ("pcomplete-command-name" function nil nil [25547 25681])
-            ("pcomplete-match" function (:arguments ("regexp" "index" "offset" "start")) nil [25683 25937])
-            ("pcomplete-match-string" function (:arguments ("which" "index" "offset")) nil [25939 26186])
-            ("defalias" code nil nil [26188 26242])
-            ("defalias" code nil nil [26243 26285])
-            ("pcomplete--test" function (:arguments ("pred" "arg")) nil [26287 26556])
-            ("pcomplete-test" function (:arguments ("predicates" "index" "offset")) nil [26558 26988])
-            ("pcomplete-parse-buffer-arguments" function nil nil [26990 27461])
-            ("pcomplete-comint-setup" function (:arguments ("completef-sym")) nil [27478 28381])
-            ("pcomplete-shell-setup" function nil nil [28398 28558])
-            ("declare-function" code nil nil [28560 28614])
-            ("pcomplete-parse-comint-arguments" function nil nil [28616 29375])
-            ("pcomplete-parse-arguments" function (:arguments ("expand-p")) nil [29377 31074])
-            ("define-obsolete-function-alias" code nil nil [31076 31167])
-            ("pcomplete-dirs-or-entries" function (:arguments ("regexp" "predicate")) nil [31202 31512])
-            ("pcomplete--entries" function (:arguments ("regexp" "predicate")) nil [31514 33173])
-            ("pcomplete--env-regexp" variable
-               (:constant-flag t
-                :default-value "\\(?:\\`\\|[^\\]\\)\\(?:\\\\\\\\\\)*\\(\\$\\(?:{\\([^}]+\\)}\\|\\(?2:[[:alnum:]_]+\\)\\)\\)")
-                nil [33175 33303])
-            ("pcomplete-entries" function (:arguments ("regexp" "predicate")) nil [33305 36067])
-            ("pcomplete-all-entries" function (:arguments ("regexp" "predicate")) nil [36069 36287])
-            ("pcomplete-dirs" function (:arguments ("regexp")) nil [36289 36424])
-            ("pcomplete-find-completion-function" function (:arguments ("command")) nil [36461 36783])
-            ("pcomplete-completions" function nil nil [36785 37291])
-            ("pcomplete-opt" function (:arguments ("options" "prefix" "_no-ganging" "_args-follow")) nil [37293 39341])
-            ("pcomplete--here" function (:arguments ("form" "stub" "paring" "form-only")) nil [39343 40455])
-            ("pcomplete-here" function (:arguments ("form" "stub" "paring" "form-only")) nil [40457 42074])
-            ("pcomplete-here*" function (:arguments ("form" "stub" "form-only")) nil [42077 42271])
-            ("pcomplete-restore-windows" function nil nil [42293 42723])
-            ("defalias" code nil nil [42810 42930])
-            ("pcomplete-read-event" function (:arguments ("prompt")) nil [42932 43074])
-            ("pcomplete-show-completions" function (:arguments ("completions")) nil [43076 44952])
-            ("pcomplete-insert-entry" function (:arguments ("stub" "entry" "addsuffix" "raw-p")) nil [44985 46375])
-            ("pcomplete-do-complete" function (:arguments ("stub" "completions")) nil [46407 47917])
-            ("pcomplete-stub" function (:arguments ("stub" "candidates" "cycle-p")) nil [47919 50143])
-            ("pcomplete--help" function nil nil [50172 50876])
-            ("pcomplete-uniqify-list" function (:arguments ("l")) nil [50900 51147])
-            ("pcomplete-process-result" function (:arguments ("cmd" "args")) nil [51149 51404])
-            ("pcomplete" package nil nil [51864 51884]))          
-      :file "pcomplete.el"
-      :pointmax 51913
-      :fsize 51912
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "comint.el"
-      :fsize 163809
-      :lastmodtime '(23525 29504 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pr-version" variable
-               (:constant-flag t
-                :default-value "6.9.3")
-                nil [349 545])
-            ("lpr" include nil nil [40952 40966])
-            ("ps-print" include nil nil [40967 40986])
-            ("and" code nil nil [40989 41106])
-            ("pr-cygwin-system" variable
-               (:constant-flag t
-                :default-value (and lpr-windows-system (getenv "OSTYPE") (string-match "cygwin" (getenv "OSTYPE"))))
-                nil [41109 41230])
-            ("when" code nil nil [41381 41870])
-            ("when" code nil nil [42117 43562])
-            ("defalias" code nil nil [44607 44652])
-            ("defalias" code nil nil [44559 44604])
-            ("defalias" code nil nil [44511 44556])
-            ("defalias" code nil nil [44463 44508])
-            ("defalias" code nil nil [44415 44460])
-            ("defalias" code nil nil [44367 44412])
-            ("defalias" code nil nil [44319 44364])
-            ("defalias" code nil nil [44271 44316])
-            ("defalias" code nil nil [44223 44268])
-            ("defalias" code nil nil [44175 44220])
-            ("defalias" code nil nil [44127 44172])
-            ("defalias" code nil nil [44079 44124])
-            ("defalias" code nil nil [44031 44076])
-            ("defalias" code nil nil [43983 44028])
-            ("defalias" code nil nil [43935 43980])
-            ("pr-ps-utility-alist" variable nil nil [43850 43878])
-            ("pr-txt-printer-alist" variable nil nil [43818 43847])
-            ("pr-ps-printer-alist" variable nil nil [43787 43815])
-            ("pr-menu-lock" variable nil nil [43763 43784])
-            ("pr-menu-char-width" variable nil nil [43733 43760])
-            ("pr-menu-char-height" variable nil nil [43702 43730])
-            ("pr-auto-region" variable nil nil [43676 43699])
-            ("pr-path-style" variable nil nil [43651 43673])
-            ("pr-menu-print-item" variable (:default-value "print") nil [44717 44849])
-            ("pr-ps-printer-menu-modified" variable (:default-value t) nil [44851 44971])
-            ("pr-txt-printer-menu-modified" variable (:default-value t) nil [44973 45094])
-            ("pr-ps-utility-menu-modified" variable (:default-value t) nil [45096 45215])
-            ("pr-even-or-odd-alist" variable
-               (:constant-flag t
-                :default-value (quote ((nil . "Print All Pages") (even-page . "Print Even Pages") (odd-page . "Print Odd Pages") (even-sheet . "Print Even Sheets") (odd-sheet . "Print Odd Sheets"))))
-                nil [45217 45438])
-            ("cond" code nil nil [45618 51060])
-            ("unless" code nil nil [51287 51384])
-            ("cond" code nil nil [51387 58605])
-            ("pr-dosify-file-name" function
-               (:user-visible-flag t
-                :arguments ("path"))
-                nil [58736 58956])
-            ("pr-unixify-file-name" function
-               (:user-visible-flag t
-                :arguments ("path"))
-                nil [58959 59180])
-            ("pr-standard-file-name" function (:arguments ("path")) nil [59183 59551])
-            ("pr-alist-custom-set" function (:arguments ("symbol" "value")) nil [59659 59889])
-            ("pr-ps-utility-custom-set" function (:arguments ("symbol" "value")) nil [59892 60101])
-            ("pr-ps-name-custom-set" function (:arguments ("symbol" "value")) nil [60104 60319])
-            ("pr-txt-name-custom-set" function (:arguments ("symbol" "value")) nil [60322 60533])
-            ("printing" customgroup (:user-visible-flag t) nil [60632 60851])
-            ("pr-path-style" variable (:default-value (if (and (not pr-cygwin-system) lpr-windows-system) (quote windows) (quote unix))) nil [60854 61261])
-            ("pr-path-alist" variable (:default-value (quote ((unix PATH) (cygwin PATH) (windows PATH)))) nil [61264 63365])
-            ("pr-txt-name" variable (:default-value (quote default)) nil [63368 63834])
-            ("pr-txt-printer-alist" variable (:default-value (list (list (quote default) lpr-command nil (cond ((boundp (quote printer-name)) printer-name) (lpr-windows-system "PRN") (t nil))))) nil [63837 68180])
-            ("pr-ps-name" variable (:default-value (quote default)) nil [68183 68659])
-            ("pr-ps-printer-alist" variable (:default-value (list (list (quote default) lpr-command nil (cond (lpr-windows-system nil) (lpr-lp-system "-d") (t "-P")) (or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name)))) nil [68662 78261])
-            ("pr-temp-dir" variable (:default-value (pr-dosify-file-name (if (boundp (quote temporary-file-directory)) (symbol-value (quote temporary-file-directory)) (file-name-as-directory (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") (cond (lpr-windows-system "c:/temp") (t "/tmp"))))))) nil [78264 78794])
-            ("pr-ps-temp-file" variable (:default-value "prspool-") nil [78797 79004])
-            ("pr-file-modes" variable (:default-value 384) nil [79172 79434])
-            ("pr-gv-command" variable (:default-value (if lpr-windows-system "gsview32.exe" "gv")) nil [79437 80363])
-            ("pr-gs-command" variable (:default-value (if lpr-windows-system "gswin32.exe" "gs")) nil [80366 80909])
-            ("pr-gs-switches" variable (:default-value (if lpr-windows-system (quote ("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")) (quote ("-q -dNOPAUSE -I/usr/share/ghostscript/5.10")))) nil [80912 82170])
-            ("pr-gs-device" variable (:default-value (if lpr-windows-system "mswinpr2" "uniprint")) nil [82173 82538])
-            ("pr-gs-resolution" variable (:default-value 300) nil [82541 82822])
-            ("pr-print-using-ghostscript" variable nil nil [82825 83162])
-            ("pr-faces-p" variable nil nil [83165 83273])
-            ("pr-spool-p" variable nil nil [83276 83384])
-            ("pr-file-landscape" variable nil nil [83387 83522])
-            ("pr-file-duplex" variable nil nil [83525 83647])
-            ("pr-file-tumble" variable nil nil [83650 83934])
-            ("pr-auto-region" variable (:default-value t) nil [83937 84304])
-            ("pr-auto-mode" variable (:default-value t) nil [84307 84711])
-            ("pr-mode-alist" variable (:default-value (quote ((mh-folder-mode pr-mh-lpr-1 pr-mh-print-1 2 (ps-article-author ps-article-subject) ("/pagenumberstring load" pr-article-date) nil) (mh-letter-mode pr-mh-lpr-2 pr-mh-print-2 2 (ps-article-author ps-article-subject) ("/pagenumberstring load" pr-article-date) nil) (rmail-summary-mode pr-rmail-lpr pr-rmail-print 3 (ps-article-subject ps-article-author buffer-name) nil nil) (rmail-mode pr-rmail-lpr pr-rmail-print 3 (ps-article-subject ps-article-author buffer-name) nil nil) (gnus-summary-mode pr-gnus-lpr pr-gnus-print 3 (ps-article-subject ps-article-author gnus-newsgroup-name) nil nil) (gnus-article-mode pr-gnus-lpr pr-gnus-print 3 (ps-article-subject ps-article-author gnus-newsgroup-name) nil nil) (Info-mode pr-mode-lpr pr-mode-print 2 (ps-info-node ps-info-file) nil nil) (vm-mode pr-vm-lpr pr-vm-print 3 (ps-article-subject ps-article-author buffer-name) nil nil)))) nil [84714 91201])
-            ("pr-ps-utility" variable (:default-value (quote mpage)) nil [91204 91788])
-            ("pr-ps-utility-alist" variable (:default-value (quote ((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil) (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil (inherits-from: . no-duplex))))) nil [91791 98135])
-            ("pr-menu-lock" variable (:default-value t) nil [98138 98323])
-            ("pr-menu-char-height" variable (:default-value (pr-menu-char-height)) nil [98326 98646])
-            ("pr-menu-char-width" variable (:default-value (pr-menu-char-width)) nil [98649 98969])
-            ("pr-setting-database" variable (:default-value (quote ((no-duplex nil nil nil (pr-file-duplex) (pr-file-tumble))))) nil [98972 102909])
-            ("pr-visible-entry-list" variable (:default-value (quote (postscript text postscript-options postscript-process printing help))) nil [102912 104881])
-            ("pr-delete-temp-file" variable (:default-value t) nil [104884 105157])
-            ("pr-list-directory" variable nil nil [105160 105623])
-            ("pr-buffer-name" variable (:default-value "*Printing Interface*") nil [105626 105807])
-            ("pr-buffer-name-ignore" variable (:default-value (list (regexp-quote pr-buffer-name) "^ .*$")) nil [105810 106223])
-            ("pr-buffer-verbose" variable (:default-value t) nil [106226 106397])
-            ("pr-txt-command" variable nil nil [106500 106601])
-            ("pr-txt-switches" variable nil nil [106604 106733])
-            ("pr-txt-printer" variable nil nil [106736 106822])
-            ("pr-ps-command" variable nil nil [106825 106930])
-            ("pr-ps-switches" variable nil nil [106933 107066])
-            ("pr-ps-printer-switch" variable nil nil [107069 107173])
-            ("pr-ps-printer" variable nil nil [107176 107266])
-            ("pr-save-file-modes" function (:arguments ("body")) nil [107357 107562])
-            ("pr-visible-p" function (:arguments ("key")) nil [107658 107722])
-            ("pr-mode-alist-p" function nil nil [107725 107794])
-            ("pr-auto-mode-p" function nil nil [107797 107864])
-            ("pr-using-ghostscript-p" function nil nil [107867 107955])
-            ("defalias" code nil nil [107958 108170])
-            ("pr-menu-spec" variable
-               (:constant-flag t
-                :default-value (let ((pr-:active (if (featurep (quote xemacs)) :included :active)) (pr-:help (if (featurep (quote xemacs)) (quote ignore) (function (lambda (text) (list :help text)))))) (\` (["Printing Interface" pr-interface (\,@ (funcall pr-:help "Use buffer interface instead of menu interface"))] "--" ("PostScript Preview" :included (pr-visible-p (quote postscript)) (\,@ (funcall pr-:help "Preview PostScript instead of sending to printer")) ("Directory" (\, pr-:active) (not pr-spool-p) ["1-up" (pr-ps-directory-preview 1 nil nil t) t] ["2-up" (pr-ps-directory-preview 2 nil nil t) t] ["4-up" (pr-ps-directory-preview 4 nil nil t) t] ["Other..." (pr-ps-directory-preview nil nil nil t) :keys "\\[pr-ps-buffer-preview]"]) ("Buffer" (\, pr-:active) (not pr-spool-p) ["1-up" (pr-ps-buffer-preview 1 t) t] ["2-up" (pr-ps-buffer-preview 2 t) t] ["4-up" (pr-ps-buffer-preview 4 t) t] ["Other..." (pr-ps-buffer-preview nil t) :keys "\\[pr-ps-buffer-preview]"]) ("Region" (\, pr-:active) (and (not pr-spool-p) (ps-mark-active-p)) ["1-up" (pr-ps-region-preview 1 t) t] ["2-up" (pr-ps-region-preview 2 t) t] ["4-up" (pr-ps-region-preview 4 t) t] ["Other..." (pr-ps-region-preview nil t) :keys "\\[pr-ps-region-preview]"]) ("Mode" (\, pr-:active) (and (not pr-spool-p) (pr-mode-alist-p)) ["1-up" (pr-ps-mode-preview 1 t) t] ["2-up" (pr-ps-mode-preview 2 t) t] ["4-up" (pr-ps-mode-preview 4 t) t] ["Other..." (pr-ps-mode-preview nil t) :keys "\\[pr-ps-mode-preview]"]) ("File" ["No Preprocessing..." (call-interactively (quote pr-ps-file-preview)) :keys "\\[pr-ps-file-preview]" (\,@ (funcall pr-:help "Preview PostScript file"))] "--" ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist (\,@ (funcall pr-:help "Select PostScript utility"))] "--" ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist] ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist] ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist] ["Other..." (pr-ps-file-up-preview nil t t) :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist] "--" ["Landscape" pr-toggle-file-landscape-menu :style toggle :selected pr-file-landscape (\,@ (funcall pr-:help "Toggle landscape for PostScript file")) :active pr-ps-utility-alist] ["Duplex" pr-toggle-file-duplex-menu :style toggle :selected pr-file-duplex (\,@ (funcall pr-:help "Toggle duplex for PostScript file")) :active pr-ps-utility-alist] ["Tumble" pr-toggle-file-tumble-menu :style toggle :selected pr-file-tumble (\,@ (funcall pr-:help "Toggle tumble for PostScript file")) :active (and pr-file-duplex pr-ps-utility-alist)]) ["Despool..." (call-interactively (quote pr-despool-preview)) :active pr-spool-p :keys "\\[pr-despool-preview]" (\,@ (funcall pr-:help "Despool PostScript buffer to printer or file (C-u)"))]) ("PostScript Print" :included (pr-visible-p (quote postscript)) (\,@ (funcall pr-:help "Send PostScript to printer or file (C-u)")) ("Directory" ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t] ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t] ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t] ["Other..." (pr-ps-directory-ps-print nil nil nil t) :keys "\\[pr-ps-buffer-ps-print]"]) ("Buffer" ["1-up" (pr-ps-buffer-ps-print 1 t) t] ["2-up" (pr-ps-buffer-ps-print 2 t) t] ["4-up" (pr-ps-buffer-ps-print 4 t) t] ["Other..." (pr-ps-buffer-ps-print nil t) :keys "\\[pr-ps-buffer-ps-print]"]) ("Region" (\, pr-:active) (ps-mark-active-p) ["1-up" (pr-ps-region-ps-print 1 t) t] ["2-up" (pr-ps-region-ps-print 2 t) t] ["4-up" (pr-ps-region-ps-print 4 t) t] ["Other..." (pr-ps-region-ps-print nil t) :keys "\\[pr-ps-region-ps-print]"]) ("Mode" (\, pr-:active) (pr-mode-alist-p) ["1-up" (pr-ps-mode-ps-print 1 t) t] ["2-up" (pr-ps-mode-ps-print 2 t) t] ["4-up" (pr-ps-mode-ps-print 4 t) t] ["Other..." (pr-ps-mode-ps-print nil t) :keys "\\[pr-ps-mode-ps-print]"]) ("File" ["No Preprocessing..." (call-interactively (quote pr-ps-file-ps-print)) :keys "\\[pr-ps-file-ps-print]" (\,@ (funcall pr-:help "Send PostScript file to printer"))] "--" ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist (\,@ (funcall pr-:help "Select PostScript utility"))] "--" ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist] ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist] ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist] ["Other..." (pr-ps-file-up-ps-print nil t t) :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist] "--" ["Landscape" pr-toggle-file-landscape-menu :style toggle :selected pr-file-landscape (\,@ (funcall pr-:help "Toggle landscape for PostScript file")) :active pr-ps-utility-alist] ["Duplex" pr-toggle-file-duplex-menu :style toggle :selected pr-file-duplex (\,@ (funcall pr-:help "Toggle duplex for PostScript file")) :active pr-ps-utility-alist] ["Tumble" pr-toggle-file-tumble-menu :style toggle :selected pr-file-tumble (\,@ (funcall pr-:help "Toggle tumble for PostScript file")) :active (and pr-file-duplex pr-ps-utility-alist)]) ["Despool..." (call-interactively (quote pr-despool-ps-print)) :active pr-spool-p :keys "\\[pr-despool-ps-print]" (\,@ (funcall pr-:help "Despool PostScript buffer to printer or file (C-u)"))]) ["PostScript Printers" pr-update-menus :active pr-ps-printer-alist :included (pr-visible-p (quote postscript)) (\,@ (funcall pr-:help "Select PostScript printer"))] "--" ("Printify" :included (pr-visible-p (quote text)) (\,@ (funcall pr-:help "Replace non-printing chars with printable representations.")) ["Directory" pr-printify-directory t] ["Buffer" pr-printify-buffer t] ["Region" pr-printify-region (ps-mark-active-p)]) ("Print" :included (pr-visible-p (quote text)) (\,@ (funcall pr-:help "Send text to printer")) ["Directory" pr-txt-directory t] ["Buffer" pr-txt-buffer t] ["Region" pr-txt-region (ps-mark-active-p)] ["Mode" pr-txt-mode (pr-mode-alist-p)]) ["Text Printers" pr-update-menus :active pr-txt-printer-alist :included (pr-visible-p (quote text)) (\,@ (funcall pr-:help "Select text printer"))] "--" ["Landscape" pr-toggle-landscape-menu :style toggle :selected ps-landscape-mode :included (pr-visible-p (quote postscript-options))] ["Print Header" pr-toggle-header-menu :style toggle :selected ps-print-header :included (pr-visible-p (quote postscript-options))] ["Print Header Frame" pr-toggle-header-frame-menu :style toggle :selected ps-print-header-frame :active ps-print-header :included (pr-visible-p (quote postscript-options))] ["Line Number" pr-toggle-line-menu :style toggle :selected ps-line-number :included (pr-visible-p (quote postscript-options))] ["Zebra Stripes" pr-toggle-zebra-menu :style toggle :selected ps-zebra-stripes :included (pr-visible-p (quote postscript-options))] ["Duplex" pr-toggle-duplex-menu :style toggle :selected ps-spool-duplex :included (pr-visible-p (quote postscript-options))] ["Tumble" pr-toggle-tumble-menu :style toggle :selected ps-spool-tumble :active ps-spool-duplex :included (pr-visible-p (quote postscript-options))] ["Upside-Down" pr-toggle-upside-down-menu :style toggle :selected ps-print-upside-down :included (pr-visible-p (quote postscript-options))] ("Print All Pages" :included (pr-visible-p (quote postscript-options)) (\,@ (funcall pr-:help "Select odd/even pages/sheets to print")) ["All Pages" (pr-even-or-odd-pages nil) :style radio :selected (eq ps-even-or-odd-pages nil)] ["Even Pages" (pr-even-or-odd-pages (quote even-page)) :style radio :selected (eq ps-even-or-odd-pages (quote even-page))] ["Odd Pages" (pr-even-or-odd-pages (quote odd-page)) :style radio :selected (eq ps-even-or-odd-pages (quote odd-page))] ["Even Sheets" (pr-even-or-odd-pages (quote even-sheet)) :style radio :selected (eq ps-even-or-odd-pages (quote even-sheet))] ["Odd Sheets" (pr-even-or-odd-pages (quote odd-sheet)) :style radio :selected (eq ps-even-or-odd-pages (quote odd-sheet))]) "--" ["Spool Buffer" pr-toggle-spool-menu :style toggle :selected pr-spool-p :included (pr-visible-p (quote postscript-process)) (\,@ (funcall pr-:help "Toggle PostScript spooling"))] ["Print with faces" pr-toggle-faces-menu :style toggle :selected pr-faces-p :included (pr-visible-p (quote postscript-process)) (\,@ (funcall pr-:help "Toggle PostScript printing with faces"))] ["Print via Ghostscript" pr-toggle-ghostscript-menu :style toggle :selected pr-print-using-ghostscript :included (pr-visible-p (quote postscript-process)) (\,@ (funcall pr-:help "Toggle PostScript generation using ghostscript"))] "--" ["Auto Region" pr-toggle-region-menu :style toggle :selected pr-auto-region :included (pr-visible-p (quote printing))] ["Auto Mode" pr-toggle-mode-menu :style toggle :selected pr-auto-mode :included (pr-visible-p (quote printing))] ["Menu Lock" pr-toggle-lock-menu :style toggle :selected pr-menu-lock :included (pr-visible-p (quote printing))] "--" ("Customize" :included (pr-visible-p (quote help)) ["printing" pr-customize t] ["ps-print" ps-print-customize t] ["lpr" lpr-customize t]) ("Show Settings" :included (pr-visible-p (quote help)) ["printing" pr-show-pr-setup t] ["ps-print" pr-show-ps-setup t] ["lpr" pr-show-lpr-setup t]) ["Help" pr-help :active t :included (pr-visible-p (quote help))]))))
-                nil [108173 118481])
-            ("pr-menu-bind" function (:user-visible-flag t) nil [118484 118736])
-            ("let" code nil nil [118754 119506])
-            ("pr-help-message" variable
-               (:constant-flag t
-                :default-value (concat "printing.el version " pr-version "    ps-print.el version " ps-print-version "
-
-
-Menu Layout
------------
-
-The `printing' menu (Tools/Printing or File/Print) has the following layout:
-
-       +-----------------------------+
-A   0  |   Printing Interface        |
-       +-----------------------------+       +-A---------+     +-B------+
-I   1  |   PostScript Preview       >|-------|Directory >|-----|1-up    |
-    2  |   PostScript Print         >|---- A |Buffer    >|-- B |2-up    |
-    3  |   PostScript Printer: name >|---- C |Region    >|-- B |4-up    |
-       +-----------------------------+       |Mode      >|-- B |Other...|
-II  4  |   Printify                 >|-----\\ |File      >|--\\  +--------+
-    5  |   Print                    >|---\\ | |Despool... |  |
-    6  |   Text Printer: name       >|-\\ | | +-----------+  |
-       +-----------------------------+ | | | +---------+   +------------+
-III 7  |[ ]Landscape                 | | | \\-|Directory|   | No Prep... | Ia
-    8  |[ ]Print Header              | | |   |Buffer   |   +------------+ Ib
-    9  |[ ]Print Header Frame        | | |   |Region   |   |   name    >|- C
-    10 |[ ]Line Number               | | |   +---------+   +------------+
-    11 |[ ]Zebra Stripes             | | |   +---------+   |   1-up...  | Ic
-    12 |[ ]Duplex                    | | \\---|Directory|   |   2-up...  |
-    13 |[ ]Tumble                    | \\--\\  |Buffer   |   |   4-up...  |
-    14 |[ ]Upside-Down               |    |  |Region   |   |   Other... |
-    15 |   Print All Pages          >|--\\ |  |Mode     |   +------------+
-       +-----------------------------+  | |  +---------+   |[ ]Landscape| Id
-IV  16 |[ ]Spool Buffer              |  | |  +-C-------+   |[ ]Duplex   | Ie
-    17 |[ ]Print with faces          |  | \\--|( )name A|   |[ ]Tumble   | If
-    18 |[ ]Print via Ghostscript     |  |    |( )name B|   +------------+
-       +-----------------------------+  |    |...      |
-V   19 |[ ]Auto Region               |  |    |(*)name  |
-    20 |[ ]Auto Mode                 |  |    |...      |
-    21 |[ ]Menu Lock                 |  |    +---------+   +--------------+
-       +-----------------------------+  \\------------------|(*)All Pages  |
-VI  22 |   Customize                >|--- D  +-D------+    |( )Even Pages |
-    23 |   Show Settings            >|-------|printing|    |( )Odd Pages  |
-    24 |   Help                      |       |ps-print|    |( )Even Sheets|
-       +-----------------------------+       |lpr     |    |( )Odd Sheets |
-					     +--------+    +--------------+
-
-See `pr-visible-entry-list' for hiding some parts of the menu.
-
-The menu has the following sections:
-
-A. Interface:
-
-   0. You can use a buffer interface instead of menus.  It looks like the
-      customization buffer.  Basically, it has the same options found in the
-      menu and some extra options, all this on a buffer.
-
-I. PostScript printing:
-
-   1. You can generate a PostScript file (if you type C-u before activating
-      menu) or PostScript temporary file for a directory, a buffer, a region
-      or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
-      after file generation, ghostview is activated using the file generated
-      as argument.  This option is disabled if spooling is on (option 16).
-      Also, if you already have a PostScript file you can preview it.
-      Instead of previewing each buffer, region or major mode at once, you
-      can save temporarily the PostScript code generated in a buffer and
-      preview it later.  The option `Despool...' despools the PostScript
-      spooling buffer in a temporary file and uses ghostview to preview it.
-      If you type C-u before choosing this option, the PostScript code
-      generated is saved in a file instead of saving in a temporary file.  To
-      spool the PostScript code generated you need to turn on the option 16.
-      The option `Despool...' is enabled if spooling is on (option 16).
-
-      NOTE 1: It's possible to customize a major mode printing, just declare
-	      the customization in `pr-mode-alist' and invoke some of
-	      `*-mode*' commands or select Mode option in Printing menu.  An
-	      example for major mode usage is when you're using gnus (or mh,
-	      or rmail, etc.) and you're in the *Summary* buffer, if you
-	      forget to switch to the *Article* buffer before printing,
-	      you'll get a nicely formatted list of article subjects shows
-	      up at the printer.  With major mode printing you don't need to
-	      switch from gnus *Summary* buffer first.
-
-      NOTE 2: There are the following options for PostScript file processing:
-	      Ia. Print the file *No Preprocessing*, that is, send it
-		  directly to PostScript printer.
-	      Ib. PostScript utility processing selection.
-		  See `pr-ps-utility-alist' and `pr-setting-database' for
-		  documentation.
-	      Ic. Do n-up processing before printing.
-	      Id. Toggle on/off landscape for PostScript file processing.
-	      Ie. Toggle on/off duplex for PostScript file processing.
-	      If. Toggle on/off tumble for PostScript file processing.
-
-      NOTE 3: Don't forget to download and install the utilities declared on
-	      `pr-ps-utility-alist'.
-
-   2. Operate the same way as option 1, but it sends directly the PostScript
-      code (or put in a file, if you've typed C-u) or it uses ghostscript to
-      print the PostScript file generated.  It depends on option 18, if it's
-      turned on, it uses ghostscript; otherwise, it sends directly to
-      printer.  If spooling is on (option 16), the PostScript code is saved
-      temporarily in a buffer instead of printing it or saving it in a file.
-      Also, if you already have a PostScript file you can print it.
-      Instead of printing each buffer, region or major mode at once, you can
-      save temporarily the PostScript code generated in a buffer and print it
-      later.  The option `Despool...' despools the PostScript spooling buffer
-      directly on a printer.  If you type C-u before choosing this option,
-      the PostScript code generated is saved in a file instead of sending it to
-      the printer.  To spool the PostScript code generated you need to turn on
-      option 16.  This option is enabled if spooling is on (option 16).
-      See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
-
-   3. You can select a new PostScript printer to send PostScript code
-      generated.  For selection it's used all PostScript printers defined
-      in `pr-ps-printer-alist' variable (see it for documentation).
-      See also `pr-setting-database'.
-
-II. Text printing:
-
-   4. If you have control characters (character code from \\000 to \\037) in a
-      buffer and you want to print them in a text printer, select this
-      option.  All control characters in your buffer or region will be
-      replaced by a printable representation.  The printable representations
-      use ^ (for ASCII control characters) or hex.  The characters tab,
-      linefeed, space, return and formfeed are not affected.
-      You don't need to select this option if you use any option of section
-      I, the PostScript engine treats control characters properly.
-
-   5. If you want to print a directory, buffer, region or major mode in a
-      text printer, select this option.  See also the NOTE 1 on option 1.
-
-   6. You can select a new text printer to send text generated.  For
-      selection it's used all text printers defined in `pr-txt-printer-alist'
-      variable (see it for documentation).
-      See also `pr-setting-database'.
-
-III. PostScript page toggle options:
-
-   7. If you want a PostScript landscape printing, turn on this option.
-
-   8. If you want to have a header in each page in your PostScript code,
-      turn on this option.
-
-   9. If you want to draw a gaudy frame around the header, turn on this
-      option.  This option is enabled if print header is on (option 8).
-
-   10. If you want that the line number is printed in your PostScript code,
-       turn on this option.
-
-   11. If you want background zebra stripes in your PostScript code, turn on
-       this option.
-
-   12. If you want a duplex printing and your PostScript printer has this
-       feature, turn on this option.
-
-   13. If you turned on duplex printing, you can choose if you want to have a
-       printing suitable for binding on the left or right (tumble off), or to
-       have a printing suitable for binding at top or bottom (tumble on).
-       This option is enabled if duplex is on (option 12).
-
-   14. If you want a PostScript upside-down printing, turn on this option.
-
-   15. With this option, you can choose if you want to print all pages, odd
-       pages, even pages, odd sheets or even sheets.
-       See also `ps-even-or-odd-pages'.
-
-IV. PostScript processing toggle options:
-
-   16. If you want to spool the PostScript code generated, turn on this
-       option.  To spool the PostScript code generated use option 2.  You can
-       despool later by choosing option 1 or 2, sub-option `Despool...'.
-
-   17. If you use colors in your buffers and want to see these colors on your
-       PostScript code generated, turn on this option.  If you have a
-       black/white PostScript printer, these colors are displayed in gray
-       scale by PostScript printer interpreter.
-
-   18. If you don't have a PostScript printer to send PostScript files, turn
-       on this option.  When this option is on, the ghostscript is used to
-       print PostScript files.  In GNU or Unix system, if ghostscript is set
-       as a PostScript filter, you don't need to turn on this option.
-
-V. Printing customization:
-
-   19. If you want that region is automagically detected, turn on this
-       option.  Note that this will only work if you're using transient mark
-       mode.  When this option is on, the `*-buffer*' commands will behave
-       like `*-region*' commands, that is, `*-buffer*' commands will print
-       only the region marked instead of all buffer.
-
-   20. Turn this option on if you want that when current major-mode is
-       declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
-       behave like `*-mode*' commands.
-
-   21. If you want that Printing menu stays open while you are setting
-       toggle options, turn on this option.  The variables
-       `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
-       menu position, so don't forget to adjust these variables if menu
-       position is not ok.
-
-VI. Customization:
-
-   22. Besides all options in section III, IV and V, you can customize much
-       more PostScript options in `ps-print' option.  Or you can customize
-       some `lpr' options for text printing.  Or customize `printing'
-       options.
-
-   23. Show current settings for `printing', `ps-print' or `lpr'.
-
-   24. Quick help for printing menu layout.
-"))
-                nil [120007 130938])
-            ("pr-interface-help-message" variable
-               (:constant-flag t
-                :default-value (concat "printing.el version " pr-version "    ps-print.el version " ps-print-version "
-
-
-The printing interface buffer has the same functionality as the printing menu.
-The major difference is that the states (like sending PostScript generated to a
-file, n-up printing, etc.) are set and saved between printing buffer
-activation.  Also, the landscape, duplex and tumble values are the same for
-PostScript file and directory/buffer/region/mode processing; using menu, there
-are different value sets for PostScript file and directory/buffer/region/mode
-processing.
-
-The printing interface buffer has the following sections:
-
-1. Print:
-
-   Here you can choose to print/preview a buffer, a directory or a PostScript
-   file:
-
-   1a. Buffer:
-
-      * Buffer List:
-	 Select a buffer from the current buffer list.
-
-      * Region:
-	 If it's on, this means that the selected buffer has an active region,
-	 so you can turn on/off, as you wish.
-	 If it's off when a buffer is selected, this means that the selected
-	 buffer has no active region, so it'll not be possible to turn it on.
-	 If you want to process the region, let this option on.
-	 If you want to process the whole buffer, let this option off.
-
-      * Mode:
-	 If it's on, this means that the selected buffer major mode is declared
-	 for major mode processing, so you can turn on/off, as you wish.
-	 If it's off when a buffer is selected, this means that the selected
-	 buffer major mode isn't declared for major mode processing, so it'll
-	 not be possible to turn it on.
-	 If you want the major mode processing, let this option on.
-	 If you don't want the major mode processing, let this option off.
-
-      NOTE 1: It's possible to customize a major mode printing, just declare
-	      the customization in `pr-mode-alist' and invoke some of
-	      `*-mode*' commands or select Mode option in Printing menu.  An
-	      example for major mode usage is when you're using gnus (or mh,
-	      or rmail, etc.) and you're in the *Summary* buffer, if you
-	      forget to switch to the *Article* buffer before printing,
-	      you'll get a nicely formatted list of article subjects shows
-	      up at the printer.  With major mode printing you don't need to
-	      switch from gnus *Summary* buffer first.
-
-   1b. Directory:
-
-      * Directory:
-	 Specify a valid directory path.
-
-      * File Regexp:
-	 Specify a file name regexp.  All file names in the directory that
-	 match with regexp will be printed/previewed.  An empty file name
-	 regexp means to print/preview all files in the directory.
-
-      * List Directory Entry:
-	 If it's turned on, list directory entries besides file entries.
-
-   1c. PostScript file:
-
-      * PostScript File:
-	 Specify an existent PostScript file to print/preview.
-
-      * PostScript Utility:
-	 Select a PostScript utility.
-	 See `pr-ps-utility-alist' and `pr-setting-database' for documentation.
-
-      NOTE 2: Don't forget to download and install the utilities declared on
-	      `pr-ps-utility-alist'.
-
-      * No Preprocessing:
-	 If it's turned on, don't use the PostScript utility to preprocess the
-	 PostScript file before printing/previewing.
-
-2. PostScript printer:
-
-   * PostScript Printer:
-      You can select a new PostScript printer to send PostScript code
-      generated.  For selection it's used all PostScript printers defined
-      in `pr-ps-printer-alist' variable (see it for documentation).
-      See also `pr-setting-database'.
-
-   * Despool:
-      If spooling is on, you can turn it on/off, as you wish.
-      If spooling is off, it'll not be possible to turn it on.
-      If it's turned on, specify to despools the PostScript spooling buffer in
-      a temporary file or in the selected PostScript file when
-      printing/previewing.
-
-   * Preview:
-      Preview the PostScript generated.
-
-   * Print:
-      Print the PostScript generated.
-
-   * Quit:
-      Quit from printing interface buffer.
-
-   * Send to Printer/Temporary File:
-      If it's turned on, the PostScript generated is sent directly to
-      PostScript printer or, for previewing, to a temporary file.
-
-   * Send to File:
-      Specify a file name to send the PostScript generated.
-
-   * N-Up:
-      Specify n-up printing.
-
-3. Text printer:
-
-   * Text Printer:
-      Select a new text printer to send text generated.  For selection it's used
-      all text printers defined in `pr-txt-printer-alist' variable (see it for
-      documentation).  See also `pr-setting-database'.
-
-   * Printify:
-      If you have control characters (character code from \\000 to \\037) in a
-      buffer and you want to print them in a text printer, select this
-      option.  All control characters in your buffer or region will be
-      replaced by a printable representation.  The printable representations
-      use ^ (for ASCII control characters) or hex.  The characters tab,
-      linefeed, space, return and formfeed are not affected.
-      You don't need to select this option if you use any option of section
-      I, the PostScript engine treats control characters properly.
-
-   * Print:
-      To print a directory, buffer, region or major mode in a
-      text printer, select this option.  See also the NOTE 1 on section 1.
-
-   * Quit:
-      Quit from printing interface buffer.
-
-4. Settings:
-
-   There are 3 setting columns:
-
-   4a. First column (left column):
-
-      * Landscape:
-	 PostScript landscape printing.
-
-      * Print Header:
-	 To have a header in each page in your PostScript code.
-
-      * Print Header Frame:
-	 To draw a gaudy frame around the header.
-
-      * Line Number:
-	 The line number is printed in your PostScript code.
-
-      * Zebra Stripes:
-	 Background zebra stripes in your PostScript code.
-
-      * Duplex:
-	 Duplex printing (if your PostScript printer has this feature).
-
-      * Tumble:
-	 If duplex printing is on, you can choose if you want to have a
-	 printing suitable for binding on the left or right (tumble off), or to
-	 have a printing suitable for binding at top or bottom (tumble on).
-
-      * Upside-Down:
-	 PostScript upside-down printing.
-
-   4b. Second column (middle column):
-
-      * Auto Region:
-	 If you want that region is automagically detected, turn on this
-	 option.  Note that this will only work if you're using transient mark
-	 mode.  When this option is on, the `*-buffer*' commands will behave
-	 like `*-region*' commands, that is, `*-buffer*' commands will print
-	 only the region marked instead of all buffer.
-
-      * Auto Mode:
-	 Turn this option on if you want that when current major-mode is
-	 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
-	 behave like `*-mode*' commands.
-
-      * Menu Lock:
-	 If you want that Printing menu stays open while you are setting
-	 toggle options, turn on this option.  The variables
-	 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
-	 menu position, so don't forget to adjust these variables if menu
-	 position is not ok.
-
-      * Spool Buffer:
-	 To spool the PostScript code generated.  You can despool later by
-	 setting Despool option on PostScript printer section.
-
-      * Print with faces:
-	 If you use colors in your buffers and want to see these colors on your
-	 PostScript code generated, turn on this option.  If you have a
-	 black/white PostScript printer, these colors are displayed in gray
-	 scale by PostScript printer interpreter.
-
-      * Print via Ghostscript:
-	 If you don't have a PostScript printer to send PostScript files, turn
-	 on this option.  When this option is on, the ghostscript is used to
-	 print PostScript files.  In GNU or Unix system, if ghostscript is set
-	 as a PostScript filter, you don't need to turn on this option.
-
-      * Parity Page Menu:
-	 To print all pages, odd pages, even pages, odd sheets or even sheets.
-	 See also `ps-even-or-odd-pages'.
-
-   4c. Third column (right column):
-
-      * Verbose:
-	 That is, to be verbose when editing a field in interface buffer.
-
-5. Customize:
-
-   Besides all options in section 4, you can customize much more PostScript
-   options in `ps-print' option.  Or you can customize some `lpr' options for
-   text printing.  Or customize `printing' options.
-
-6. Show settings:
-
-   Show current settings for `printing', `ps-print' or `lpr'.
-
-7. Help:
-
-   Quick help for printing interface buffer and printing menu layout.  You can
-   also quit the printing interface buffer or kill all printing help buffer.
-"))
-                nil [130941 139423])
-            ("pr-interface" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [139531 139820])
-            ("pr-ps-directory-preview" function
-               (:user-visible-flag t
-                :arguments ("n-up" "dir" "file-regexp" "filename"))
-                nil [139838 140973])
-            ("pr-ps-directory-using-ghostscript" function
-               (:user-visible-flag t
-                :arguments ("n-up" "dir" "file-regexp" "filename"))
-                nil [140991 142180])
-            ("pr-ps-directory-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "dir" "file-regexp" "filename"))
-                nil [142198 143345])
-            ("pr-ps-directory-ps-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "dir" "file-regexp" "filename"))
-                nil [143363 144620])
-            ("pr-ps-buffer-preview" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [144638 145487])
-            ("pr-ps-buffer-using-ghostscript" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [145505 146399])
-            ("pr-ps-buffer-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [146417 147252])
-            ("pr-ps-buffer-ps-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [147270 148346])
-            ("pr-ps-region-preview" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [148364 148718])
-            ("pr-ps-region-using-ghostscript" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [148736 149151])
-            ("pr-ps-region-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [149169 149518])
-            ("pr-ps-region-ps-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [149536 150039])
-            ("pr-ps-mode-preview" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [150057 150426])
-            ("pr-ps-mode-using-ghostscript" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [150444 150923])
-            ("pr-ps-mode-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [150941 151219])
-            ("pr-ps-mode-ps-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "filename"))
-                nil [151237 151581])
-            ("pr-printify-directory" function
-               (:user-visible-flag t
-                :arguments ("dir" "file-regexp"))
-                nil [151599 152299])
-            ("pr-printify-buffer" function (:user-visible-flag t) nil [152317 152694])
-            ("pr-printify-region" function (:user-visible-flag t) nil [152712 153023])
-            ("pr-txt-directory" function
-               (:user-visible-flag t
-                :arguments ("dir" "file-regexp"))
-                nil [153041 153535])
-            ("pr-txt-buffer" function (:user-visible-flag t) nil [153553 153762])
-            ("pr-txt-region" function (:user-visible-flag t) nil [153780 153963])
-            ("pr-txt-mode" function (:user-visible-flag t) nil [153981 154219])
-            ("pr-despool-preview" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [154237 154891])
-            ("pr-despool-using-ghostscript" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [154909 155632])
-            ("pr-despool-print" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [155650 156442])
-            ("pr-despool-ps-print" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [156460 157138])
-            ("pr-ps-file-preview" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [157156 157389])
-            ("pr-ps-file-up-preview" function
-               (:user-visible-flag t
-                :arguments ("n-up" "ifilename" "ofilename"))
-                nil [157407 157744])
-            ("pr-ps-file-using-ghostscript" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [157762 158434])
-            ("pr-ps-file-print" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [158452 159359])
-            ("pr-ps-file-ps-print" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [159377 159725])
-            ("pr-ps-file-up-ps-print" function
-               (:user-visible-flag t
-                :arguments ("n-up" "ifilename" "ofilename"))
-                nil [159743 161042])
-            ("pr-toggle-file-duplex" function (:user-visible-flag t) nil [161060 161180])
-            ("pr-toggle-file-tumble" function (:user-visible-flag t) nil [161198 161480])
-            ("pr-toggle-file-landscape" function (:user-visible-flag t) nil [161498 161627])
-            ("pr-toggle-ghostscript" function (:user-visible-flag t) nil [161645 161765])
-            ("pr-toggle-faces" function (:user-visible-flag t) nil [161783 161884])
-            ("pr-toggle-spool" function (:user-visible-flag t) nil [161902 161992])
-            ("pr-toggle-duplex" function (:user-visible-flag t) nil [162010 162100])
-            ("pr-toggle-tumble" function (:user-visible-flag t) nil [162118 162370])
-            ("pr-toggle-landscape" function (:user-visible-flag t) nil [162388 162487])
-            ("pr-toggle-upside-down" function (:user-visible-flag t) nil [162505 162610])
-            ("pr-toggle-line" function (:user-visible-flag t) nil [162628 162719])
-            ("pr-toggle-zebra" function (:user-visible-flag t) nil [162737 162832])
-            ("pr-toggle-header" function (:user-visible-flag t) nil [162850 162949])
-            ("pr-toggle-header-frame" function (:user-visible-flag t) nil [162967 163084])
-            ("pr-toggle-lock" function (:user-visible-flag t) nil [163102 163191])
-            ("pr-toggle-region" function (:user-visible-flag t) nil [163209 163337])
-            ("pr-toggle-mode" function (:user-visible-flag t) nil [163355 163444])
-            ("pr-customize" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [163462 163587])
-            ("lpr-customize" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [163605 163721])
-            ("pr-help" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [163739 163873])
-            ("pr-ps-name" function (:user-visible-flag t) nil [163891 164083])
-            ("pr-txt-name" function (:user-visible-flag t) nil [164101 164285])
-            ("pr-ps-utility" function (:user-visible-flag t) nil [164303 164506])
-            ("pr-show-ps-setup" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [164524 164658])
-            ("pr-show-pr-setup" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [164676 164810])
-            ("pr-show-lpr-setup" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [164828 164960])
-            ("pr-ps-fast-fire" function
-               (:user-visible-flag t
-                :arguments ("n-up" "select"))
-                nil [165073 168249])
-            ("pr-txt-fast-fire" function
-               (:user-visible-flag t
-                :arguments ("select-printer"))
-                nil [168267 169521])
-            ("pr-setup" function nil nil [169615 172080])
-            ("lpr-setup" function nil nil [172083 172825])
-            ("declare-function" code nil nil [172973 173039])
-            ("declare-function" code nil nil [173040 173111])
-            ("declare-function" code nil nil [173112 173173])
-            ("mh-show-buffer" variable nil nil [173174 173197])
-            ("pr-article-date" function nil nil [173200 173594])
-            ("pr-mh-current-message" function nil nil [173597 173859])
-            ("pr-mh-print-1" function (:arguments ("n-up" "filename" "header-list")) nil [173862 174094])
-            ("pr-mh-lpr-1" function (:arguments ("header-list")) nil [174097 174299])
-            ("defalias" code nil nil [174302 174342])
-            ("defalias" code nil nil [174345 174381])
-            ("pr-rmail-lpr" function (:arguments ("header-list")) nil [174497 174670])
-            ("pr-rmail-print" function (:arguments ("n-up" "filename" "header-list")) nil [174673 174872])
-            ("pr-ps-message-from-summary" function (:arguments ("n-up" "filename" "header-list" "summary-buffer" "summary-default")) nil [174875 175238])
-            ("pr-lpr-message-from-summary" function (:arguments ("header-list" "summary-buffer" "summary-default")) nil [175241 175572])
-            ("pr-gnus-article" variable (:default-value "*Article*") nil [175687 175723])
-            ("pr-gnus-print" function (:arguments ("n-up" "filename" "header-list")) nil [175726 175930])
-            ("pr-gnus-lpr" function (:arguments ("header-list")) nil [175933 176111])
-            ("pr-vm-summary" variable nil nil [176224 176249])
-            ("pr-vm-print" function (:arguments ("n-up" "filename" "header-list")) nil [176252 176440])
-            ("pr-vm-lpr" function (:arguments ("header-list")) nil [176443 176605])
-            ("pr-ps-mode" function (:arguments ("n-up" "filename")) nil [176704 177010])
-            ("pr-local-variable" function (:arguments ("header-list" "body")) nil [177013 177470])
-            ("pr-mode-print" function (:arguments ("n-up" "filename" "header-list" "from" "to")) nil [177473 178023])
-            ("pr-mode-lpr" function (:arguments ("header-list" "from" "to")) nil [178026 178353])
-            ("pr-menu-entry-alist" variable
-               (:constant-flag t
-                :default-value (quote ((postscript . 3) (text . 3) (postscript-options . 9) (postscript-process . 3) (printing . 3) (help . 3))))
-                nil [178447 178848])
-            ("pr-menu-index" function (:arguments ("entry" "index")) nil [178851 179423])
-            ("pr-update-var" function (:arguments ("var-sym" "alist")) nil [179535 179653])
-            ("pr-update-menus" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [179656 180694])
-            ("pr-menu-create" function (:arguments ("name" "alist" "var-sym" "fun" "entry" "index")) nil [180697 181000])
-            ("pr-ps-set-utility" function (:arguments ("value")) nil [181003 181284])
-            ("pr-ps-set-printer" function (:arguments ("value")) nil [181287 182077])
-            ("pr-txt-set-printer" function (:arguments ("value")) nil [182080 182604])
-            ("pr-eval-alist" function (:arguments ("alist")) nil [182607 182854])
-            ("pr-eval-local-alist" function (:arguments ("alist")) nil [182857 183232])
-            ("pr-eval-setting-alist" function (:arguments ("key" "global" "old")) nil [183235 184540])
-            ("pr-kill-local-variable" function (:arguments ("local-var-list")) nil [184543 184637])
-            ("pr-toggle" function (:arguments ("var-sym" "mess" "entry" "index" "horizontal" "state" "path" "no-menu")) nil [184745 185016])
-            ("pr-toggle-file-duplex-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [185019 185252])
-            ("pr-toggle-file-tumble-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [185255 185488])
-            ("pr-toggle-file-landscape-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [185491 185743])
-            ("pr-toggle-ghostscript-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [185746 185985])
-            ("pr-toggle-faces-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [185988 186201])
-            ("pr-toggle-spool-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [186204 186415])
-            ("pr-toggle-duplex-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [186418 186650])
-            ("pr-toggle-tumble-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [186653 186873])
-            ("pr-toggle-landscape-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [186876 187087])
-            ("pr-toggle-upside-down-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [187090 187336])
-            ("pr-toggle-line-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [187339 187545])
-            ("pr-toggle-zebra-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [187548 187753])
-            ("pr-toggle-header-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [187756 187980])
-            ("pr-toggle-header-frame-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [187983 188223])
-            ("pr-toggle-lock-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [188226 188440])
-            ("pr-toggle-region-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [188443 188650])
-            ("pr-toggle-mode-menu" function
-               (:user-visible-flag t
-                :arguments ("no-menu"))
-                nil [188653 188880])
-            ("pr-prompt" function (:arguments ("str")) nil [188883 188991])
-            ("pr-prompt-region" function (:arguments ("str")) nil [188994 189085])
-            ("pr-prompt-gs" function (:arguments ("str")) nil [189088 189179])
-            ("pr-region-active-symbol" function (:arguments ("region-p")) nil [189182 189302])
-            ("pr-region-active-string" function (:arguments ("prefix")) nil [189305 189424])
-            ("pr-show-setup" function (:arguments ("settings" "buffer-name")) nil [189427 189567])
-            ("pr-complete-alist" function (:arguments ("prompt" "alist" "default")) nil [189570 189888])
-            ("pr-delete-file" function (:arguments ("file")) nil [189891 189995])
-            ("pr-expand-file-name" function (:arguments ("filename")) nil [189998 190088])
-            ("pr-ps-outfile-preprint" function (:arguments ("mess")) nil [190091 190777])
-            ("pr-ps-infile-preprint" function (:arguments ("mess")) nil [190780 191397])
-            ("pr-ps-utility-args" function (:arguments ("n-up-sym" "infile-sym" "outfile-sym" "prompt")) nil [191400 192188])
-            ("pr-ps-utility-process" function (:arguments ("n-up" "infile" "outfile")) nil [192191 192924])
-            ("pr-remove-nil-from-list" function (:arguments ("lst")) nil [192927 193156])
-            ("pr-call-process" function (:arguments ("command" "args")) nil [193159 194143])
-            ("pr-txt-print" function (:arguments ("from" "to")) nil [194146 194373])
-            ("pr-switches-string" function (:arguments ("switches" "mess")) nil [194376 194588])
-            ("pr-switches" function (:arguments ("switches" "mess")) nil [194591 194787])
-            ("pr-ps-preview" function (:arguments ("kind" "n-up" "filename" "mess")) nil [194790 195004])
-            ("pr-ps-using-ghostscript" function (:arguments ("kind" "n-up" "filename" "mess")) nil [195007 195293])
-            ("pr-ps-print" function (:arguments ("kind" "n-up" "filename" "mess")) nil [195296 195558])
-            ("pr-ps-file" function (:arguments ("filename")) nil [195561 195768])
-            ("pr-interactive-n-up" function (:arguments ("mess")) nil [195771 196386])
-            ("pr-interactive-dir" function (:arguments ("mess")) nil [196389 197063])
-            ("pr-interactive-regexp" function (:arguments ("mess")) nil [197066 197175])
-            ("pr-interactive-dir-args" function (:arguments ("mess")) nil [197178 197342])
-            ("pr-interactive-ps-dir-args" function (:arguments ("mess")) nil [197345 197659])
-            ("pr-interactive-n-up-file" function (:arguments ("mess")) nil [197662 197857])
-            ("pr-interactive-n-up-inout" function (:arguments ("mess")) nil [197860 198103])
-            ("pr-set-outfilename" function (:arguments ("filename-sym")) nil [198106 198425])
-            ("pr-set-n-up-and-filename" function (:arguments ("n-up-sym" "filename-sym" "mess")) nil [198428 198631])
-            ("pr-set-dir-args" function (:arguments ("dir-sym" "regexp-sym" "mess")) nil [198634 198881])
-            ("pr-set-ps-dir-args" function (:arguments ("n-up-sym" "dir-sym" "regexp-sym" "filename-sym" "mess")) nil [198884 199178])
-            ("pr-find-buffer-visiting" function (:arguments ("file")) nil [199181 199795])
-            ("pr-file-list" function (:arguments ("dir" "file-regexp" "fun")) nil [199798 200321])
-            ("pr-delete-file-if-exists" function (:arguments ("filename")) nil [200324 200466])
-            ("pr-ps-file-list" function (:arguments ("n-up" "dir" "file-regexp" "filename")) nil [200469 200830])
-            ("pr-text2ps" function (:arguments ("kind" "n-up" "filename" "from" "to")) nil [200833 202047])
-            ("pr-command" function (:arguments ("command")) nil [202050 202952])
-            ("pr-path-command" function (:arguments ("symbol" "command" "sym-list")) nil [202955 203653])
-            ("pr-find-command" function (:arguments ("cmd")) nil [203656 204151])
-            ("widget" include nil nil [204355 204372])
-            ("wid-edit" include nil nil [204333 204352])
-            ("cus-edit" include nil nil [204311 204330])
-            ("pr-i-window-configuration" variable nil nil [204376 204414])
-            ("pr-i-buffer" variable nil nil [204416 204444])
-            ("pr-i-region" variable nil nil [204445 204473])
-            ("pr-i-mode" variable nil nil [204474 204502])
-            ("pr-i-despool" variable nil nil [204503 204531])
-            ("pr-i-ps-as-is" variable (:default-value t) nil [204532 204558])
-            ("pr-i-n-up" variable (:default-value 1) nil [204559 204585])
-            ("pr-i-directory" variable (:default-value "./") nil [204586 204615])
-            ("pr-i-regexp" variable nil nil [204616 204643])
-            ("pr-i-ps-file" variable nil nil [204644 204671])
-            ("pr-i-out-file" variable nil nil [204672 204699])
-            ("pr-i-answer-yes" variable nil nil [204700 204728])
-            ("pr-i-process" variable (:default-value (quote buffer)) nil [204729 204761])
-            ("pr-i-ps-send" variable (:default-value (quote printer)) nil [204762 204795])
-            ("pr-interface-map" variable nil nil [204798 204856])
-            ("unless" code nil nil [204858 205253])
-            ("pr-interface-save" function (:arguments ("body")) nil [205256 205346])
-            ("pr-create-interface" function nil nil [205349 206681])
-            ("declare-function" code nil nil [206683 206758])
-            ("declare-function" code nil nil [206759 206820])
-            ("pr-insert-section-1" function nil nil [206822 210716])
-            ("pr-insert-section-2" function nil nil [210719 212812])
-            ("pr-insert-section-3" function nil nil [212815 213187])
-            ("pr-insert-section-4" function nil nil [213190 215499])
-            ("pr-insert-section-5" function nil nil [215502 215788])
-            ("pr-insert-section-6" function nil nil [215791 216051])
-            ("pr-insert-section-7" function nil nil [216054 216395])
-            ("pr-kill-help" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [216398 216785])
-            ("pr-interface-quit" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [216788 216980])
-            ("pr-interface-help" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [216983 217148])
-            ("pr-interface-txt-print" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [217151 217925])
-            ("pr-interface-printify" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [217928 218558])
-            ("pr-interface-ps-print" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [218561 218850])
-            ("pr-interface-preview" function
-               (:user-visible-flag t
-                :arguments ("_ignore"))
-                nil [218853 219131])
-            ("pr-interface-ps" function (:arguments ("ps-despool" "ps-directory" "ps-file" "ps-file-up" "ps-region" "ps-mode" "ps-buffer")) nil [219134 220514])
-            ("pr-i-ps-send" function nil nil [220517 221054])
-            ("pr-i-directory" function nil nil [221057 221189])
-            ("pr-interface-directory" function (:arguments ("widget" "_ignore")) nil [221192 221449])
-            ("pr-interface-infile" function (:arguments ("widget" "_ignore")) nil [221452 221727])
-            ("pr-interface-outfile" function (:arguments ("widget" "_ignore")) nil [221730 222036])
-            ("pr-widget-field-action" function (:arguments ("widget" "event")) nil [222039 222259])
-            ("pr-insert-italic" function (:arguments ("str" "from" "to")) nil [222262 222479])
-            ("pr-insert-checkbox" function (:arguments ("before" "var-sym" "fun" "label")) nil [222482 222677])
-            ("pr-insert-toggle" function (:arguments ("var-sym" "label")) nil [222680 222873])
-            ("pr-insert-button" function (:arguments ("fun" "label" "separator")) nil [222876 223038])
-            ("pr-insert-menu" function (:arguments ("tag" "var-sym" "choices" "before" "after" "body")) nil [223041 223488])
-            ("pr-insert-radio-button" function (:arguments ("var-sym" "sym")) nil [223491 223924])
-            ("pr-update-radio-button" function (:arguments ("var-sym")) nil [223927 224225])
-            ("pr-update-checkbox" function (:arguments ("var-sym")) nil [224228 224393])
-            ("pr-choice-alist" function (:arguments ("alist")) nil [224396 224809])
-            ("printing" package nil nil [224890 224909]))          
-      :file "printing.el"
-      :pointmax 224938
-      :fsize 224937
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax '((close-paren 204372 . 204373) (symbol 204291 . 204308) (open-paren 204290 . 204291) (close-paren 51384 . 51385) (symbol 51268 . 51284) (open-paren 51267 . 51268) (close-paren 44652 . 44653) (symbol 43566 . 43583) (open-paren 43565 . 43566)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("lpr-windows-system" variable (:default-value (memq system-type (quote (ms-dos windows-nt)))) nil [1129 1246])
-            ("lpr-lp-system" variable (:default-value (memq system-type (quote (usg-unix-v hpux)))) nil [1263 1395])
-            ("lpr" customgroup (:user-visible-flag t) nil [1398 1471])
-            ("printer-name" variable (:default-value (and (eq system-type (quote ms-dos)) "PRN")) nil [1489 2502])
-            ("lpr-switches" variable nil nil [2519 2787])
-            ("lpr-add-switches" variable (:default-value (memq system-type (quote (berkeley-unix gnu/linux)))) nil [2789 3107])
-            ("lpr-printer-switch" variable (:default-value (if lpr-lp-system "-d " "-P")) nil [3109 3467])
-            ("lpr-command" variable (:default-value (purecopy (cond (lpr-windows-system "") (lpr-lp-system "lp") (t "lpr")))) nil [3484 4107])
-            ("lpr-headers-switches" variable nil nil [4240 4583])
-            ("print-region-function" variable (:default-value (if (memq system-type (quote (ms-dos windows-nt))) (function w32-direct-print-region-function) (function call-process-region))) nil [4585 4879])
-            ("lpr-page-header-program" variable (:default-value "pr") nil [4881 5006])
-            ("lpr-page-header-switches" variable (:default-value (quote ("-h" "%s" "-F"))) nil [5120 5511])
-            ("lpr-buffer" function (:user-visible-flag t) nil [5528 5870])
-            ("print-buffer" function (:user-visible-flag t) nil [5887 6597])
-            ("lpr-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [6614 6992])
-            ("print-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [7009 7759])
-            ("print-region-1" function (:arguments ("start" "end" "switches" "page-headers")) nil [7761 9608])
-            ("lpr-print-region" function (:arguments ("start" "end" "switches" "name")) nil [9610 11346])
-            ("print-region-new-buffer" function (:arguments ("ostart" "oend")) nil [11539 11872])
-            ("printify-region" function
-               (:user-visible-flag t
-                :arguments ("begin" "end"))
-                nil [11874 12481])
-            ("lpr-eval-switch" function (:arguments ("arg")) nil [12627 12806])
-            ("lpr-flatten-list" function (:arguments ("list")) nil [13097 13162])
-            ("lpr-flatten-list-1" function (:arguments ("list")) nil [13164 13346])
-            ("lpr" package nil nil [13348 13362]))          
-      :file "lpr.el"
-      :pointmax 13385
-      :fsize 13384
-      :lastmodtime '(23525 29512 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ps-print-version" variable
-               (:constant-flag t
-                :default-value "7.3.5")
-                nil [597 1028])
-            ("lpr" include nil nil [59445 59459])
-            ("if" code nil nil [59462 59718])
-            ("ps-def" include nil nil [59754 59771])
-            ("ps-print-loaddefs" include nil nil [59805 59833])
-            ("postscript" customgroup (:user-visible-flag t) nil [59967 60088])
-            ("ps-print" customgroup (:user-visible-flag t) nil [60090 60285])
-            ("ps-print-horizontal" customgroup (:user-visible-flag t) nil [60287 60420])
-            ("ps-print-vertical" customgroup (:user-visible-flag t) nil [60422 60549])
-            ("ps-print-headers" customgroup (:user-visible-flag t) nil [60551 60688])
-            ("ps-print-font" customgroup (:user-visible-flag t) nil [60690 60808])
-            ("ps-print-color" customgroup (:user-visible-flag t) nil [60810 60930])
-            ("ps-print-face" customgroup (:user-visible-flag t) nil [60932 61070])
-            ("ps-print-n-up" customgroup (:user-visible-flag t) nil [61072 61189])
-            ("ps-print-zebra" customgroup (:user-visible-flag t) nil [61191 61311])
-            ("ps-print-background" customgroup (:user-visible-flag t) nil [61313 61448])
-            ("ps-print-printer" customgroup
-               (:user-visible-flag t
-                :value (quote ((lpr custom-group))))
-                nil [61450 61594])
-            ("ps-print-page" customgroup (:user-visible-flag t) nil [61596 61713])
-            ("ps-print-miscellany" customgroup (:user-visible-flag t) nil [61715 61850])
-            ("ps-error-handler-message" variable (:default-value (quote paper)) nil [61853 62738])
-            ("ps-user-defined-prologue" variable nil nil [62740 64062])
-            ("ps-print-prologue-header" variable nil nil [64064 65323])
-            ("ps-printer-name" variable nil nil [65325 66776])
-            ("ps-printer-name-option" variable (:default-value (cond (lpr-windows-system "/D:") (t lpr-printer-switch))) nil [66778 67625])
-            ("ps-lpr-command" variable (:default-value lpr-command) nil [67627 68215])
-            ("ps-lpr-switches" variable (:default-value lpr-switches) nil [68217 69206])
-            ("ps-print-region-function" variable (:default-value (if (memq system-type (quote (ms-dos windows-nt))) (function w32-direct-ps-print-region-function) (function call-process-region))) nil [69208 69605])
-            ("ps-manual-feed" variable nil nil [69607 69798])
-            ("ps-end-with-control-d" variable (:default-value (and lpr-windows-system t)) nil [69800 70004])
-            ("ps-page-dimensions-database" variable (:default-value (purecopy (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5") (quote (addresslarge 236.0 99.0 "AddressLarge")) (quote (addresssmall 236.0 68.0 "AddressSmall")) (quote (cuthanging13 90.0 222.0 "CutHanging13")) (quote (cuthanging15 90.0 114.0 "CutHanging15")) (quote (diskette 181.0 136.0 "Diskette")) (quote (eurofilefolder 139.0 112.0 "EuropeanFilefolder")) (quote (eurofoldernarrow 526.0 107.0 "EuroFolderNarrow")) (quote (eurofolderwide 526.0 136.0 "EuroFolderWide")) (quote (euronamebadge 189.0 108.0 "EuroNameBadge")) (quote (euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge")) (quote (filefolder 230.0 37.0 "FileFolder")) (quote (jewelry 76.0 136.0 "Jewelry")) (quote (mediabadge 180.0 136.0 "MediaBadge")) (quote (multipurpose 126.0 68.0 "MultiPurpose")) (quote (retaillabel 90.0 104.0 "RetailLabel")) (quote (shipping 271.0 136.0 "Shipping")) (quote (slide35mm 26.0 104.0 "Slide35mm")) (quote (spine8mm 187.0 26.0 "Spine8mm")) (quote (topcoated 425.19685 136.0 "TopCoatedPaper")) (quote (topcoatedpaper 396.0 136.0 "TopcoatedPaper150")) (quote (vhsface 205.0 127.0 "VHSFace")) (quote (vhsspine 400.0 50.0 "VHSSpine")) (quote (zipdisk 156.0 136.0 "ZipDisk"))))) nil [70720 73227])
-            ("ps-paper-type" variable (:default-value (quote letter)) nil [73244 73675])
-            ("ps-warn-paper-type" variable (:default-value t) nil [73677 73906])
-            ("ps-landscape-mode" variable nil nil [73908 74041])
-            ("ps-print-upside-down" variable nil nil [74043 74209])
-            ("ps-selected-pages" variable nil nil [74211 75081])
-            ("ps-even-or-odd-pages" variable nil nil [75083 76893])
-            ("ps-print-control-characters" variable (:default-value (quote control-8-bit)) nil [76895 78049])
-            ("ps-n-up-printing" variable (:default-value 1) nil [78051 78445])
-            ("ps-n-up-margin" variable (:default-value (/ (* 72 1.0) 2.54)) nil [78447 78634])
-            ("ps-n-up-border-p" variable (:default-value t) nil [78636 78777])
-            ("ps-n-up-filling" variable (:default-value (quote left-top)) nil [78779 79947])
-            ("ps-number-of-columns" variable (:default-value (if ps-landscape-mode 2 1)) nil [79949 80105])
-            ("ps-zebra-stripes" variable nil nil [80107 80310])
-            ("ps-zebra-stripe-height" variable (:default-value 3) nil [80312 80507])
-            ("ps-zebra-color" variable (:default-value 0.95) nil [80509 81002])
-            ("ps-zebra-stripe-follow" variable nil nil [81004 83149])
-            ("ps-line-number" variable nil nil [83151 83281])
-            ("ps-line-number-step" variable (:default-value 1) nil [83283 84047])
-            ("ps-line-number-start" variable (:default-value 1) nil [84049 84905])
-            ("ps-print-background-image" variable nil nil [84907 86612])
-            ("ps-print-background-text" variable nil nil [86614 88424])
-            ("ps-left-margin" variable (:default-value (/ (* 72 2.0) 2.54)) nil [88685 88844])
-            ("ps-right-margin" variable (:default-value (/ (* 72 2.0) 2.54)) nil [88846 89006])
-            ("ps-inter-column" variable (:default-value (/ (* 72 2.0) 2.54)) nil [89008 89188])
-            ("ps-bottom-margin" variable (:default-value (/ (* 72 1.5) 2.54)) nil [89366 89525])
-            ("ps-top-margin" variable (:default-value (/ (* 72 1.5) 2.54)) nil [89527 89683])
-            ("ps-header-offset" variable (:default-value (/ (* 72 1.0) 2.54)) nil [89685 89882])
-            ("ps-header-line-pad" variable (:default-value 0.15) nil [89884 90153])
-            ("ps-footer-offset" variable (:default-value (/ (* 72 1.0) 2.54)) nil [90155 90352])
-            ("ps-footer-line-pad" variable (:default-value 0.15) nil [90354 90623])
-            ("ps-print-header" variable (:default-value t) nil [90650 91008])
-            ("ps-print-header-frame" variable (:default-value t) nil [91010 91161])
-            ("ps-header-frame-alist" variable (:default-value (quote ((fore-color . 0.0) (back-color . 0.9) (border-width . 0.4) (border-color . 0.0) (shadow-color . 0.0)))) nil [91163 93931])
-            ("ps-header-lines" variable (:default-value 2) nil [93933 94097])
-            ("ps-print-footer" variable nil nil [94099 94385])
-            ("ps-print-footer-frame" variable (:default-value t) nil [94387 94540])
-            ("ps-footer-frame-alist" variable (:default-value (quote ((fore-color . 0.0) (back-color . 0.9) (border-width . 0.4) (border-color . 0.0) (shadow-color . 0.0)))) nil [94542 96689])
-            ("ps-footer-lines" variable (:default-value 2) nil [96691 96857])
-            ("ps-print-only-one-header" variable nil nil [96859 97238])
-            ("ps-switch-header" variable (:default-value (quote duplex)) nil [97240 97845])
-            ("ps-show-n-of-n" variable (:default-value t) nil [97847 98091])
-            ("ps-spool-config" variable (:default-value (if lpr-windows-system nil (quote lpr-switches))) nil [98093 99460])
-            ("ps-spool-duplex" variable nil nil [99462 100034])
-            ("ps-spool-tumble" variable nil nil [100036 100438])
-            ("ps-font-info-database" variable (:default-value (quote ((Courier (fonts (normal . "Courier") (bold . "Courier-Bold") (italic . "Courier-Oblique") (bold-italic . "Courier-BoldOblique")) (size . 10.0) (line-height . 10.55) (space-width . 6.0) (avg-char-width . 6.0)) (Helvetica (fonts (normal . "Helvetica") (bold . "Helvetica-Bold") (italic . "Helvetica-Oblique") (bold-italic . "Helvetica-BoldOblique")) (size . 10.0) (line-height . 11.56) (space-width . 2.78) (avg-char-width . 5.09243)) (Times (fonts (normal . "Times-Roman") (bold . "Times-Bold") (italic . "Times-Italic") (bold-italic . "Times-BoldItalic")) (size . 10.0) (line-height . 11.0) (space-width . 2.5) (avg-char-width . 4.71432)) (Palatino (fonts (normal . "Palatino-Roman") (bold . "Palatino-Bold") (italic . "Palatino-Italic") (bold-italic . "Palatino-BoldItalic")) (size . 10.0) (line-height . 12.1) (space-width . 2.5) (avg-char-width . 5.08676)) (Helvetica-Narrow (fonts (normal . "Helvetica-Narrow") (bold . "Helvetica-Narrow-Bold") (italic . "Helvetica-Narrow-Oblique") (bold-italic . "Helvetica-Narrow-BoldOblique")) (size . 10.0) (line-height . 11.56) (space-width . 2.2796) (avg-char-width . 4.17579)) (NewCenturySchlbk (fonts (normal . "NewCenturySchlbk-Roman") (bold . "NewCenturySchlbk-Bold") (italic . "NewCenturySchlbk-Italic") (bold-italic . "NewCenturySchlbk-BoldItalic")) (size . 10.0) (line-height . 12.15) (space-width . 2.78) (avg-char-width . 5.31162)) (AvantGarde-Book (fonts (normal . "AvantGarde-Book") (italic . "AvantGarde-BookOblique")) (size . 10.0) (line-height . 11.77) (space-width . 2.77) (avg-char-width . 5.45189)) (AvantGarde-Demi (fonts (normal . "AvantGarde-Demi") (italic . "AvantGarde-DemiOblique")) (size . 10.0) (line-height . 12.72) (space-width . 2.8) (avg-char-width . 5.51351)) (Bookman-Demi (fonts (normal . "Bookman-Demi") (italic . "Bookman-DemiItalic")) (size . 10.0) (line-height . 11.77) (space-width . 3.4) (avg-char-width . 6.05946)) (Bookman-Light (fonts (normal . "Bookman-Light") (italic . "Bookman-LightItalic")) (size . 10.0) (line-height . 11.79) (space-width . 3.2) (avg-char-width . 5.67027)) (Symbol (fonts (normal . "Symbol")) (size . 10.0) (line-height . 13.03) (space-width . 2.5) (avg-char-width . 3.24324)) (Zapf-Dingbats (fonts (normal . "Zapf-Dingbats")) (size . 10.0) (line-height . 9.63) (space-width . 2.78) (avg-char-width . 2.78)) (ZapfChancery-MediumItalic (fonts (normal . "ZapfChancery-MediumItalic")) (size . 10.0) (line-height . 11.45) (space-width . 2.2) (avg-char-width . 4.10811)) (Zapf-Chancery-MediumItalic (fonts (normal . "ZapfChancery-MediumItalic")) (size . 10.0) (line-height . 11.45) (space-width . 2.2) (avg-char-width . 4.10811))))) nil [100451 105646])
-            ("ps-font-family" variable (:default-value (quote Courier)) nil [105648 105807])
-            ("ps-font-size" variable (:default-value (quote (7 . 8.5))) nil [105809 106270])
-            ("ps-header-font-family" variable (:default-value (quote Helvetica)) nil [106272 106450])
-            ("ps-header-font-size" variable (:default-value (quote (10 . 12))) nil [106452 106921])
-            ("ps-header-title-font-size" variable (:default-value (quote (12 . 14))) nil [106923 107421])
-            ("ps-footer-font-family" variable (:default-value (quote Helvetica)) nil [107423 107603])
-            ("ps-footer-font-size" variable (:default-value (quote (10 . 12))) nil [107605 108076])
-            ("ps-line-number-color" variable (:default-value "black") nil [108078 108550])
-            ("ps-line-number-font" variable (:default-value "Times-Italic") nil [108552 108743])
-            ("ps-line-number-font-size" variable (:default-value 6) nil [108745 109231])
-            ("ps-print-color-p" variable (:default-value (or (fboundp (quote x-color-values)) (fboundp (quote color-instance-rgb-components)))) nil [109413 110023])
-            ("ps-default-fg" variable nil nil [110025 111457])
-            ("ps-default-bg" variable nil nil [111459 112927])
-            ("ps-fg-list" variable nil nil [112929 114243])
-            ("ps-fg-validate-p" variable (:default-value t) nil [114245 114509])
-            ("ps-auto-font-detect" variable (:default-value t) nil [114511 114778])
-            ("ps-black-white-faces" variable (:default-value (quote ((font-lock-builtin-face "black" nil bold) (font-lock-comment-face "gray20" nil italic) (font-lock-constant-face "black" nil bold) (font-lock-function-name-face "black" nil bold) (font-lock-keyword-face "black" nil bold) (font-lock-string-face "black" nil italic) (font-lock-type-face "black" nil italic) (font-lock-variable-name-face "black" nil bold italic) (font-lock-warning-face "black" nil bold italic)))) nil [114780 116183])
-            ("ps-bold-faces" variable (:default-value (unless ps-print-color-p (quote (font-lock-function-name-face font-lock-builtin-face font-lock-variable-name-face font-lock-keyword-face font-lock-warning-face)))) nil [116185 116570])
-            ("ps-italic-faces" variable (:default-value (unless ps-print-color-p (quote (font-lock-variable-name-face font-lock-type-face font-lock-string-face font-lock-comment-face font-lock-warning-face)))) nil [116572 116953])
-            ("ps-underlined-faces" variable (:default-value (unless ps-print-color-p (quote (font-lock-function-name-face font-lock-constant-face font-lock-warning-face)))) nil [116955 117287])
-            ("ps-use-face-background" variable nil nil [117289 117879])
-            ("ps-left-header" variable (:default-value (list (quote ps-get-buffer-name) (quote ps-header-dirpart))) nil [117881 118853])
-            ("ps-right-header" variable (:default-value (list "/pagenumberstring load" (quote ps-time-stamp-locale-default) (quote ps-time-stamp-hh:mm:ss))) nil [118855 119840])
-            ("ps-left-footer" variable (:default-value (list (quote ps-get-buffer-name) (quote ps-header-dirpart))) nil [119842 120816])
-            ("ps-right-footer" variable (:default-value (list "/pagenumberstring load" (quote ps-time-stamp-locale-default) (quote ps-time-stamp-hh:mm:ss))) nil [120818 121805])
-            ("ps-razzle-dazzle" variable (:default-value t) nil [121807 121959])
-            ("ps-adobe-tag" variable (:default-value "%!PS-Adobe-3.0
-") nil [121961 122259])
-            ("ps-build-face-reference" variable (:default-value t) nil [122261 122813])
-            ("ps-always-build-face-reference" variable nil nil [122815 123191])
-            ("ps-banner-page-when-duplexing" variable nil nil [123193 123420])
-            ("ps-postscript-code-directory" variable (:default-value (cond ((fboundp (quote locate-data-directory)) (locate-data-directory "ps-print")) ((boundp (quote data-directory)) data-directory) (t (error "`ps-postscript-code-directory' isn't set properly")))) nil [123422 123999])
-            ("ps-line-spacing" variable nil nil [124001 124630])
-            ("ps-paragraph-spacing" variable nil nil [124632 125291])
-            ("ps-paragraph-regexp" variable (:default-value "[ 	]*$") nil [125293 125601])
-            ("ps-begin-cut-regexp" variable nil nil [125603 126424])
-            ("ps-end-cut-regexp" variable nil nil [126426 126714])
-            ("ps-last-selected-pages" variable nil nil [126811 126884])
-            ("ps-restore-selected-pages" function (:user-visible-flag t) nil [126887 127035])
-            ("ps-print-customize" function (:user-visible-flag t) nil [127146 127258])
-            ("ps-print-buffer" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [127369 127980])
-            ("ps-print-buffer-with-faces" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [127998 128431])
-            ("ps-print-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "filename"))
-                nil [128449 128726])
-            ("ps-print-region-with-faces" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "filename"))
-                nil [128744 129171])
-            ("ps-spool-buffer" function (:user-visible-flag t) nil [129189 129528])
-            ("ps-spool-buffer-with-faces" function (:user-visible-flag t) nil [129546 129991])
-            ("ps-spool-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to"))
-                nil [130009 130297])
-            ("ps-spool-region-with-faces" function
-               (:user-visible-flag t
-                :arguments ("from" "to"))
-                nil [130315 130753])
-            ("ps-despool" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [130770 131342])
-            ("ps-line-lengths" function (:user-visible-flag t) nil [131359 131624])
-            ("ps-nb-pages-buffer" function
-               (:user-visible-flag t
-                :arguments ("nb-lines"))
-                nil [131641 131894])
-            ("ps-nb-pages-region" function
-               (:user-visible-flag t
-                :arguments ("nb-lines"))
-                nil [131911 132154])
-            ("ps-prefix-quote" variable nil nil [132156 132227])
-            ("ps-setup" function nil nil [132244 136064])
-            ("ps-print-quote" function (:arguments ("elt")) nil [136179 137370])
-            ("ps-value-string" function (:arguments ("val")) nil [137373 137602])
-            ("ps-comment-string" function (:arguments ("str" "value")) nil [137605 137747])
-            ("ps-value" function (:arguments ("alist-sym" "key")) nil [137750 137901])
-            ("ps-get" function (:arguments ("alist-sym" "key")) nil [137904 138089])
-            ("ps-put" function (:arguments ("alist-sym" "key" "value")) nil [138092 138586])
-            ("ps-del" function (:arguments ("alist-sym" "key")) nil [138589 139101])
-            ("ps-time-stamp-locale-default" function nil nil [139104 139245])
-            ("ps-time-stamp-mon-dd-yyyy" function nil nil [139248 139354])
-            ("ps-time-stamp-yyyy-mm-dd" function nil nil [139357 139472])
-            ("defalias" code nil nil [139528 139587])
-            ("ps-time-stamp-hh:mm:ss" function nil nil [139590 139684])
-            ("ps-print-color-scale" variable (:default-value 1.0) nil [139687 139720])
-            ("ps-color-scale" function (:arguments ("color")) nil [139722 139918])
-            ("ps-face-underlined-p" function (:arguments ("face")) nil [139921 140025])
-            ("ps-prologue-file" function (:arguments ("filenumber")) nil [140028 140689])
-            ("ps-mark-code-directory" variable nil nil [140692 140727])
-            ("ps-print-prologue-0" variable nil nil [140729 140799])
-            ("ps-print-prologue-1" variable nil nil [140801 140866])
-            ("ps-source-buffer" variable nil nil [140892 140921])
-            ("ps-spool-buffer-name" variable (:default-value "*PostScript*") nil [140922 140966])
-            ("ps-spool-buffer" variable nil nil [140967 140995])
-            ("ps-output-head" variable nil nil [140997 141024])
-            ("ps-output-tail" variable nil nil [141025 141052])
-            ("ps-page-postscript" variable nil nil [141054 141083])
-            ("ps-page-order" variable nil nil [141099 141123])
-            ("ps-page-sheet" variable nil nil [141151 141175])
-            ("ps-page-column" variable nil nil [141193 141218])
-            ("ps-page-printed" variable nil nil [141237 141263])
-            ("ps-page-n-up" variable nil nil [141287 141310])
-            ("ps-lines-printed" variable nil nil [141328 141355])
-            ("ps-showline-count" variable (:default-value 1) nil [141379 141407])
-            ("ps-first-page" variable nil nil [141431 141457])
-            ("ps-last-page" variable nil nil [141458 141483])
-            ("ps-print-page-p" variable (:default-value t) nil [141484 141510])
-            ("ps-control-or-escape-regexp" variable nil nil [141512 141552])
-            ("ps-n-up-on" variable nil nil [141553 141576])
-            ("ps-background-pages" variable nil nil [141578 141610])
-            ("ps-background-all-pages" variable nil nil [141611 141647])
-            ("ps-background-text-count" variable nil nil [141648 141683])
-            ("ps-background-image-count" variable nil nil [141684 141720])
-            ("ps-current-font" variable nil nil [141722 141748])
-            ("ps-default-foreground" variable nil nil [141749 141783])
-            ("ps-default-background" variable nil nil [141784 141818])
-            ("ps-default-color" variable nil nil [141819 141848])
-            ("ps-current-color" variable nil nil [141849 141878])
-            ("ps-current-bg" variable nil nil [141879 141905])
-            ("ps-foreground-list" variable nil nil [141906 141937])
-            ("ps-zebra-stripe-full-p" variable nil nil [141939 141974])
-            ("ps-razchunk" variable nil nil [141975 141997])
-            ("ps-color-p" variable nil nil [141999 142022])
-            ("ps-header-pad" variable nil nil [142192 142329])
-            ("ps-footer-pad" variable nil nil [142331 142468])
-            ("ps-page-dimensions-get-width" function (:arguments ("dims")) nil [142515 142577])
-            ("ps-page-dimensions-get-height" function (:arguments ("dims")) nil [142578 142640])
-            ("ps-page-dimensions-get-media" function (:arguments ("dims")) nil [142641 142703])
-            ("ps-landscape-page-height" variable nil nil [142705 142742])
-            ("ps-print-width" variable nil nil [142744 142771])
-            ("ps-print-height" variable nil nil [142772 142800])
-            ("ps-height-remaining" variable nil nil [142802 142834])
-            ("ps-width-remaining" variable nil nil [142835 142866])
-            ("ps-font-size-internal" variable nil nil [142868 142902])
-            ("ps-header-font-size-internal" variable nil nil [142903 142944])
-            ("ps-header-title-font-size-internal" variable nil nil [142945 142992])
-            ("ps-footer-font-size-internal" variable nil nil [142993 143034])
-            ("ps-line-spacing-internal" variable nil nil [143035 143072])
-            ("ps-paragraph-spacing-internal" variable nil nil [143073 143115])
-            ("ps-black-white-faces-alist" variable nil nil [143217 143622])
-            ("ps-print-face-extension-alist" variable nil nil [143625 144243])
-            ("ps-print-face-alist" variable nil nil [144246 144577])
-            ("ps-print-face-map-alist" variable
-               (:constant-flag t
-                :default-value (quote ((bold . 1) (italic . 2) (underline . 4) (strikeout . 8) (overline . 16) (shadow . 32) (box . 64) (outline . 128))))
-                nil [144580 144905])
-            ("ps-extend-face-list" function (:arguments ("face-extension-list" "merge-p" "alist-sym")) nil [145019 145640])
-            ("ps-extend-face" function (:arguments ("face-extension" "merge-p" "alist-sym")) nil [145658 147539])
-            ("ps-extension-bit" function (:arguments ("face-extension")) nil [147542 147902])
-            ("ps-font-lock-face-attributes" function nil nil [148335 149578])
-            ("ps-message-log-max" function nil nil [149694 149830])
-            ("ps-print-hook" variable nil nil [149833 149859])
-            ("ps-print-begin-sheet-hook" variable nil nil [149860 149898])
-            ("ps-print-begin-page-hook" variable nil nil [149899 149936])
-            ("ps-print-begin-column-hook" variable nil nil [149937 149976])
-            ("ps-print-without-faces" function (:arguments ("from" "to" "filename" "region-p")) nil [149979 150118])
-            ("ps-spool-without-faces" function (:arguments ("from" "to" "region-p")) nil [150121 150398])
-            ("ps-print-with-faces" function (:arguments ("from" "to" "filename" "region-p")) nil [150401 150534])
-            ("ps-spool-with-faces" function (:arguments ("from" "to" "region-p")) nil [150537 150822])
-            ("ps-count-lines-preprint" function (:arguments ("from" "to")) nil [150825 151040])
-            ("ps-count-lines" function (:arguments ("from" "to")) nil [151043 151186])
-            ("ps-printing-region" variable nil nil [151189 151609])
-            ("ps-printing-region-p" variable nil nil [151612 151694])
-            ("ps-printing-region" function (:arguments ("region-p" "from" "to")) nil [151697 151922])
-            ("ps-font-alist" function (:arguments ("font-sym")) nil [152024 152083])
-            ("ps-font" function (:arguments ("font-sym" "font-type")) nil [152085 152443])
-            ("ps-fonts" function (:arguments ("font-sym")) nil [152445 152516])
-            ("ps-font-number" function (:arguments ("font-sym" "font-type")) nil [152518 152634])
-            ("ps-line-height" function (:arguments ("font-sym")) nil [152636 152992])
-            ("ps-title-line-height" function (:arguments ("font-sym")) nil [152994 153376])
-            ("ps-space-width" function (:arguments ("font-sym")) nil [153378 153555])
-            ("ps-avg-char-width" function (:arguments ("font-sym")) nil [153557 153869])
-            ("ps-line-lengths-internal" function nil nil [153871 155844])
-            ("ps-nb-pages" function (:arguments ("nb-lines")) nil [155846 158277])
-            ("ps-lookup" function (:arguments ("key")) nil [158314 158370])
-            ("ps-size-scale" function (:arguments ("key")) nil [158371 158442])
-            ("ps-select-font" function (:arguments ("font-family" "sym" "font-size" "title-font-size")) nil [158444 159090])
-            ("ps-get-page-dimensions" function nil nil [159092 164066])
-            ("ps-print-preprint-region" function (:arguments ("prefix")) nil [164069 164227])
-            ("ps-print-preprint" function (:arguments ("prefix")) nil [164230 165221])
-            ("ps-string-escape-codes" variable (:default-value (let ((table (make-vector 256 nil)) (char 0)) (while (<= char 31) (aset table char (format "\\%03o" char)) (setq char (1+ char))) (while (< char 127) (aset table char (format "%c" char)) (setq char (1+ char))) (while (<= char 255) (aset table char (format "\\%o" char)) (setq char (1+ char))) (aset table 10 "\\n") (aset table 13 "\\r") (aset table 9 "\\t") (aset table 8 "\\b") (aset table 12 "\\f") (aset table 92 "\\\\") (aset table 40 "\\(") (aset table 41 "\\)") table)) nil [165566 166568])
-            ("ps-output-string-prim" function (:arguments ("string")) nil [166570 167250])
-            ("ps-init-output-queue" function nil nil [167284 167383])
-            ("ps-selected-pages" function nil nil [167386 167653])
-            ("ps-print-page-p" function nil nil [167656 168190])
-            ("ps-print-sheet-p" function nil nil [168193 168439])
-            ("ps-output" function (:arguments ("args")) nil [168442 168612])
-            ("ps-output-string" function (:arguments ("string")) nil [168614 168670])
-            ("ps-output-prologue" function (:arguments ("args")) nil [168740 168834])
-            ("ps-flush-output" function nil nil [168836 169396])
-            ("ps-insert-file" function (:arguments ("fname")) nil [169398 169549])
-            ("ps-encode-header-string-function" variable nil nil [169630 169675])
-            ("ps-generate-header-line" function (:arguments ("fonttag" "content")) nil [169677 171037])
-            ("ps-generate-header" function (:arguments ("name" "fonttag0" "fonttag1" "contents")) nil [171039 171429])
-            ("ps-output-boolean" function (:arguments ("name" "bool")) nil [171432 171537])
-            ("ps-output-frame-properties" function (:arguments ("name" "alist")) nil [171540 171936])
-            ("ps-background-pages" function (:arguments ("page-list" "func")) nil [171939 172356])
-            ("ps-boundingbox-re" variable
-               (:constant-flag t
-                :default-value "^%%BoundingBox:\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)")
-                nil [172359 172481])
-            ("ps-get-boundingbox" function nil nil [172484 173019])
-            ("ps-float-format" function (:arguments ("value" "default")) nil [173022 173274])
-            ("ps-background-text" function nil nil [173277 174065])
-            ("ps-background-image" function nil nil [174068 175467])
-            ("ps-background" function (:arguments ("page-number")) nil [175470 175892])
-            ("ps-remove-duplicates" function (:arguments ("list")) nil [175985 176182])
-            ("ps-alist-position" function (:arguments ("item" "list")) nil [176330 176562])
-            ("ps-n-up-database" variable
-               (:constant-flag t
-                :default-value (quote ((a4 (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 1) (8 t 2 4 0) (9 nil 3 3 0) (12 t 3 4 2) (16 nil 4 4 0) (18 t 3 6 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (32 t 4 8 0) (36 nil 6 6 0) (42 nil 7 6 1) (49 nil 7 7 0) (50 t 5 10 0) (56 nil 8 7 1) (64 nil 8 8 0) (72 nil 9 8 1) (81 nil 9 9 0) (90 nil 10 9 1) (100 nil 10 10 0)) (a3 (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 1) (8 t 2 4 0) (9 nil 3 3 0) (12 nil 4 3 1) (16 nil 4 4 0) (18 t 3 6 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (32 t 4 8 0) (36 nil 6 6 0) (42 nil 7 6 1) (49 nil 7 7 0) (50 t 5 10 0) (56 nil 8 7 1) (64 nil 8 8 0) (72 nil 9 8 1) (81 nil 9 9 0) (90 nil 10 9 1) (100 nil 10 10 0)) (letter (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 0) (9 nil 3 3 0) (12 nil 4 3 1) (16 nil 4 4 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (36 nil 6 6 0) (40 t 5 8 0) (42 nil 7 6 1) (49 nil 7 7 0) (56 nil 8 7 1) (64 nil 8 8 0) (72 nil 9 8 1) (81 nil 9 9 0) (90 nil 10 9 1) (100 nil 10 10 0)) (legal (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 nil 3 2 1) (9 nil 3 3 0) (10 t 2 5 0) (12 nil 4 3 1) (16 nil 4 4 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (36 nil 6 6 0) (42 nil 7 6 1) (49 nil 7 7 0) (56 nil 8 7 1) (64 nil 8 8 0) (70 t 5 14 0) (72 nil 9 8 1) (81 nil 9 9 0) (90 nil 10 9 1) (100 nil 10 10 0)) (letter-small (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 0) (9 nil 3 3 0) (12 t 3 4 1) (15 t 3 5 0) (16 nil 4 4 0) (20 nil 5 4 1) (25 nil 5 5 0) (28 t 4 7 0) (30 nil 6 5 1) (36 nil 6 6 0) (40 t 5 8 0) (42 nil 7 6 1) (49 nil 7 7 0) (56 nil 8 7 1) (60 t 6 10 0) (64 nil 8 8 0) (72 ni 9 8 1) (81 nil 9 9 0) (84 t 7 12 0) (90 nil 10 9 1) (100 nil 10 10 0)) (tabloid (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 1) (8 t 2 4 0) (9 nil 3 3 0) (12 nil 4 3 1) (16 nil 4 4 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (36 nil 6 6 0) (42 nil 7 6 1) (49 nil 7 7 0) (56 nil 8 7 1) (64 nil 8 8 0) (72 nil 9 8 1) (81 nil 9 9 0) (84 t 6 14 0) (90 nil 10 9 1) (100 nil 10 10 0)) (ledger (1 nil 1 1 0) (2 pag 1 2 0) (4 nil 2 2 0) (6 pag 2 3 1) (8 pag 2 4 0) (9 nil 3 3 0) (12 nil 4 3 1) (16 nil 4 4 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (36 nil 6 6 0) (42 nil 7 6 1) (49 nil 7 7 0) (56 nil 8 7 1) (64 nil 8 8 0) (72 nil 9 8 1) (81 nil 9 9 0) (84 pag 6 14 0) (90 nil 10 9 1) (100 nil 10 10 0)) (statement (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 nil 3 2 1) (9 nil 3 3 0) (10 t 2 5 0) (12 nil 4 3 1) (16 nil 4 4 0) (20 nil 5 4 1) (21 t 3 7 0) (25 nil 5 5 0) (30 nil 6 5 1) (36 nil 6 6 0) (40 t 4 10 0) (42 nil 7 6 1) (49 nil 7 7 0) (56 nil 8 7 1) (60 t 5 12 0) (64 nil 8 8 0) (72 nil 9 8 1) (81 nil 9 9 0) (90 nil 10 9 1) (100 nil 10 10 0)) (executive (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 0) (9 nil 3 3 0) (12 nil 4 3 1) (16 nil 4 4 0) (20 nil 5 4 1) (25 nil 5 5 0) (28 t 4 7 0) (30 nil 6 5 1) (36 nil 6 6 0) (42 nil 7 6 1) (45 t 5 9 0) (49 nil 7 7 0) (56 nil 8 7 1) (60 t 6 10 0) (64 nil 8 8 0) (72 nil 9 8 1) (81 nil 9 9 0) (84 t 7 12 0) (90 nil 10 9 1) (100 nil 10 10 0)) (a4small (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 1) (8 t 2 4 0) (9 nil 3 3 0) (12 nil 4 3 1) (16 nil 4 4 0) (18 t 3 6 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (32 t 4 8 0) (36 nil 6 6 0) (42 nil 7 6 1) (49 nil 7 7 0) (50 t 5 10 0) (56 nil 8 7 1) (64 nil 8 8 0) (72 nil 9 8 1) (78 t 6 13 0) (81 nil 9 9 0) (90 nil 10 9 1) (100 nil 10 10 0)) (b4 (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 1) (8 t 2 4 0) (9 nil 3 3 0) (12 nil 4 3 1) (16 nil 4 4 0) (18 t 3 6 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (32 t 4 8 0) (36 nil 6 6 0) (42 nil 7 6 1) (49 nil 7 7 0) (50 t 5 10 0) (56 nil 8 7 1) (64 nil 8 8 0) (72 nil 9 8 1) (81 nil 9 9 0) (90 nil 10 9 1) (100 nil 10 10 0)) (b5 (1 nil 1 1 0) (2 t 1 2 0) (4 nil 2 2 0) (6 t 2 3 1) (8 t 2 4 0) (9 nil 3 3 0) (12 nil 4 3 1) (16 nil 4 4 0) (18 t 3 6 0) (20 nil 5 4 1) (25 nil 5 5 0) (30 nil 6 5 1) (32 t 4 8 0) (36 nil 6 6 0) (42 nil 7 6 1) (49 nil 7 7 0) (50 t 5 10 0) (56 nil 8 7 1) (64 nil 8 8 0) (72 nil 9 8 0) (81 nil 9 9 0) (90 nil 10 9 1) (98 t 7 14 0) (100 nil 10 10 0)))))
-                nil [176565 183955])
-            ("ps-n-up-landscape" function (:arguments ("mat")) nil [183958 184006])
-            ("ps-n-up-lines" function (:arguments ("mat")) nil [184007 184055])
-            ("ps-n-up-columns" function (:arguments ("mat")) nil [184056 184104])
-            ("ps-n-up-missing" function (:arguments ("mat")) nil [184105 184153])
-            ("ps-n-up-printing" function nil nil [184156 184562])
-            ("ps-n-up-filling-database" variable
-               (:constant-flag t
-                :default-value (quote ((left-top "PageWidth" "0" "N-Up-End 1 sub PageWidth mul neg" "LandscapePageHeight neg" "N-Up-Lines" "N-Up-Columns" "0" "0") (left-bottom "PageWidth" "0" "N-Up-End 1 sub PageWidth mul neg" "LandscapePageHeight" "N-Up-Lines" "N-Up-Columns" "0" "N-Up-Repeat 1 sub LandscapePageHeight mul neg") (right-top "PageWidth neg" "0" "N-Up-End 1 sub PageWidth mul" "LandscapePageHeight neg" "N-Up-Lines" "N-Up-Columns" "N-Up-End 1 sub PageWidth mul" "0") (right-bottom "PageWidth neg" "0" "N-Up-End 1 sub PageWidth mul" "LandscapePageHeight" "N-Up-Lines" "N-Up-Columns" "N-Up-End 1 sub PageWidth mul" "N-Up-Repeat 1 sub LandscapePageHeight mul neg") (top-left "0" "LandscapePageHeight neg" "PageWidth" "N-Up-End 1 sub LandscapePageHeight mul" "N-Up-Columns" "N-Up-Lines" "0" "0") (bottom-left "0" "LandscapePageHeight" "PageWidth" "N-Up-End 1 sub LandscapePageHeight mul neg" "N-Up-Columns" "N-Up-Lines" "0" "N-Up-End 1 sub LandscapePageHeight mul neg") (top-right "0" "LandscapePageHeight neg" "PageWidth neg" "N-Up-End 1 sub LandscapePageHeight mul" "N-Up-Columns" "N-Up-Lines" "N-Up-Repeat 1 sub PageWidth mul" "0") (bottom-right "0" "LandscapePageHeight" "PageWidth neg" "N-Up-End 1 sub LandscapePageHeight mul neg" "N-Up-Columns" "N-Up-Lines" "N-Up-Repeat 1 sub PageWidth mul" "N-Up-End 1 sub LandscapePageHeight mul neg"))))
-                nil [184565 187794])
-            ("ps-n-up-filling" function nil nil [187797 187930])
-            ("ps-n-up-xcolumn" function (:arguments ("init")) nil [187933 187981])
-            ("ps-n-up-ycolumn" function (:arguments ("init")) nil [187982 188030])
-            ("ps-n-up-xline" function (:arguments ("init")) nil [188031 188079])
-            ("ps-n-up-yline" function (:arguments ("init")) nil [188080 188128])
-            ("ps-n-up-repeat" function (:arguments ("init")) nil [188129 188177])
-            ("ps-n-up-end" function (:arguments ("init")) nil [188178 188224])
-            ("ps-n-up-xstart" function (:arguments ("init")) nil [188225 188273])
-            ("ps-n-up-ystart" function (:arguments ("init")) nil [188274 188322])
-            ("ps-error-handler-alist" variable
-               (:constant-flag t
-                :default-value (quote ((none . 0) (paper . 1) (system . 2) (paper-and-system . 3))))
-                nil [188325 188504])
-            ("ps-zebra-stripe-alist" variable
-               (:constant-flag t
-                :default-value (quote ((follow . 1) (full . 2) (full-follow . 3))))
-                nil [188507 188647])
-            ("ps-begin-file" function nil nil [188650 198721])
-            ("ps-format-color" function (:arguments ("color" "default")) nil [198724 199169])
-            ("ps-insert-string" function (:arguments ("prologue")) nil [199172 199330])
-            ("ps-boolean-capitalized" function (:arguments ("bool")) nil [199333 199397])
-            ("ps-boolean-constant" function (:arguments ("bool")) nil [199400 199461])
-            ("ps-header-dirpart" function nil nil [199464 199684])
-            ("ps-get-buffer-name" function nil nil [199687 200101])
-            ("ps-get-size" function (:arguments ("size" "mess" "arg")) nil [200104 200483])
-            ("ps-get-font-size" function (:arguments ("font-sym")) nil [200486 200582])
-            ("ps-rgb-color" function (:arguments ("color" "unspecified" "default")) nil [200585 201241])
-            ("ps-basic-plot-string-function" variable (:default-value (quote ps-basic-plot-string)) nil [201243 201303])
-            ("ps-begin-job" function (:arguments ("genfunc")) nil [201305 206061])
-            ("ps-page-number" function nil nil [206064 206196])
-            ("ps-end-page" function nil nil [206199 206262])
-            ("ps-next-page" function nil nil [206265 206345])
-            ("ps-end-sheet" function nil nil [206348 206447])
-            ("ps-header-sheet" function nil nil [206450 207040])
-            ("ps-header-page" function nil nil [207043 207941])
-            ("ps-begin-page" function nil nil [207943 208816])
-            ("ps-skip-newline" function (:arguments ("limit")) nil [208818 208993])
-            ("ps-next-line" function nil nil [208995 209535])
-            ("ps-continue-line" function nil nil [209537 209868])
-            ("ps-find-wrappoint" function (:arguments ("from" "to" "char-width")) nil [209870 210101])
-            ("ps-basic-plot-str" function (:arguments ("from" "to" "string")) nil [210103 210367])
-            ("ps-basic-plot-string" function (:arguments ("from" "to" "_bg-color")) nil [210369 210669])
-            ("ps-basic-plot-whitespace" function (:arguments ("from" "to" "_bg-color")) nil [210671 210913])
-            ("ps-plot" function (:arguments ("plotfunc" "from" "to" "bg-color")) nil [210915 211608])
-            ("ps-last-font" variable nil nil [211610 211635])
-            ("ps-set-font" function (:arguments ("font")) nil [211637 211774])
-            ("ps-set-bg" function (:arguments ("color")) nil [211776 211969])
-            ("ps-set-color" function (:arguments ("color")) nil [211971 212200])
-            ("ps-plot-string" function (:arguments ("string")) nil [212203 212293])
-            ("ps-current-effect" variable nil nil [212296 212324])
-            ("ps-print-translation-table" variable (:default-value (let ((tbl (make-char-table (quote translation-table) nil))) (if (and (boundp (quote ucs-mule-8859-to-mule-unicode)) (char-table-p ucs-mule-8859-to-mule-unicode)) (map-char-table (function (lambda (k v) (if (and v (eq (char-charset v) (quote latin-iso8859-1)) (/= k v)) (aset tbl k v)))) ucs-mule-8859-to-mule-unicode)) tbl)) nil [212326 212843])
-            ("ps-plot-region" function (:arguments ("from" "to" "font" "fg-color" "bg-color" "effects")) nil [212845 215880])
-            ("ps-string-control-codes" variable (:default-value (let ((table (make-vector 256 nil)) (char 0)) (while (<= char 31) (aset table char (format "^%c" (+ char 64))) (setq char (1+ char))) (while (< char 127) (aset table char (format "%c" char)) (setq char (1+ char))) (aset table char "^?") (while (<= (setq char (1+ char)) 255) (aset table char (format "\\%o" char))) table)) nil [215882 216443])
-            ("ps-control-character" function (:arguments ("char")) nil [216445 216876])
-            ("ps-face-foreground-color-p" function (:arguments ("attr")) nil [216879 216969])
-            ("ps-face-background-color-p" function (:arguments ("attr")) nil [216972 217062])
-            ("ps-face-color-p" function (:arguments ("attr")) nil [217065 217173])
-            ("ps-face-extract-color" function (:arguments ("face-attrs")) nil [217176 217301])
-            ("ps-face-attributes" function (:arguments ("face")) nil [217304 218385])
-            ("ps-face-background" function (:arguments ("face" "background")) nil [218388 218965])
-            ("ps-face-attribute-list" function (:arguments ("face-or-list")) nil [218968 220056])
-            ("ps-font-type" variable
-               (:constant-flag t
-                :default-value (vector nil (quote bold) (quote italic) (quote bold-italic)))
-                nil [220059 220122])
-            ("ps-plot-with-face" function (:arguments ("from" "to" "face")) nil [220125 220933])
-            ("or" code nil nil [220972 221031])
-            ("ps-build-reference-face-lists" function nil nil [221034 221531])
-            ("ps-set-face-bold" function (:arguments ("face")) nil [221534 221598])
-            ("ps-set-face-italic" function (:arguments ("face")) nil [221600 221666])
-            ("ps-set-face-underline" function (:arguments ("face")) nil [221668 221737])
-            ("ps-set-face-attribute" function (:arguments ("face" "effect")) nil [221740 221885])
-            ("ps-map-face" function (:arguments ("face")) nil [221888 222449])
-            ("ps-screen-to-bit-face" function (:arguments ("face")) nil [222452 222886])
-            ("declare-function" code nil nil [222889 222961])
-            ("declare-function" code nil nil [222962 223027])
-            ("ps-print-ensure-fontified" function (:arguments ("start" "end")) nil [223060 223315])
-            ("ps-generate-postscript-with-faces" function (:arguments ("from" "to")) nil [223318 224062])
-            ("ps-generate-postscript" function (:arguments ("from" "to")) nil [224064 224133])
-            ("declare-function" code nil nil [224270 224320])
-            ("declare-function" code nil nil [224321 224378])
-            ("declare-function" code nil nil [224379 224429])
-            ("ps-generate" function (:arguments ("buffer" "from" "to" "genfunc")) nil [224431 226386])
-            ("ps-end-job" function (:arguments ("needs-begin-file")) nil [226389 227914])
-            ("ps-do-despool" function (:arguments ("filename")) nil [227982 228934])
-            ("ps-kill-emacs-check" function nil nil [228936 229387])
-            ("unless" code nil nil [229389 229464])
-            ("ps-print" package nil nil [229466 229485]))          
-      :file "ps-print.el"
-      :pointmax 229513
-      :fsize 229512
-      :lastmodtime '(23525 29516 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [950 967])
-            ("pcomplete" include nil nil [969 989])
-            ("pcmpl-x-tlmgr-program" variable (:default-value "tlmgr") nil [1044 1168])
-            ("pcmpl-x-tlmgr-common-options" variable (:default-value (quote ("--repository" "--gui" "--gui-lang" "--machine-readable" "--package-logfile" "--pause" "--persistent-downloads" "--no-persistent-downloads" "--no-execute-actions" "--debug-translation" "--help" "--version"))) nil [1170 1462])
-            ("pcmpl-x-tlmgr-actions" variable (:default-value (quote (("help") ("version") ("gui") ("install") ("update") ("backup") ("restore") ("remove") ("repository" ("list" "add" "remove" "set")) ("candidates") ("option" ("show" "showall" "repository" "formats" "postcode" "docfiles" "srcfiles" "backupdir" "autobackup" "sys_bin" "sys_man" "sys_info" "desktop_integration" "fileassocs" "multiuser")) ("conf" ("texmf" "tlmgr")) ("paper" ("a4" "letter" "xdvi" "pdftex" "dvips" "dvipdfmx" "dvipdfm" "context") (lambda nil (unless (member (pcomplete-arg 1) (quote ("a4" "letter"))) (pcomplete-here* (quote ("paper"))) (pcomplete-here* (quote ("a4" "letter")))))) ("platform" ("list" "add" "remove")) ("print-platform" ("collections" "schemes")) ("arch" ("list" "add" "remove")) ("print-arch" ("collections" "schemes")) ("info" ("collections" "schemes")) ("search") ("dump-tlpdb") ("check" ("files" "depends" "executes" "runfiles" "all")) ("path" ("add" "remove")) ("postaction" ("install" "remove") ("shortcut" "fileassoc" "script")) ("uninstall") ("generate" ("language" "language.dat" "language.def" "language.dat.lua" "fmtutil"))))) nil [1464 2950])
-            ("pcmpl-x-tlmgr-options-cache" variable (:default-value (make-hash-table :size 31 :test (quote equal))) nil [2952 3028])
-            ("pcmpl-x-tlmgr-action-options" function (:arguments ("action")) nil [3030 3798])
-            ("pcomplete/tlmgr" function nil nil [3815 4794])
-            ("pcmpl-x-ack-program" variable (:default-value (file-name-nondirectory (or (executable-find "ack-grep") (executable-find "ack") "ack"))) nil [5111 5374])
-            ("pcmpl-x-ack-color-options" variable (:default-value (quote ("clear" "reset" "dark" "bold" "underline" "underscore" "blink" "reverse" "concealed" "black" "red" "green" "yellow" "blue" "magenta" "on_black" "on_red" "on_green" "on_yellow" "on_blue" "on_magenta" "on_cyan" "on_white"))) nil [5376 5762])
-            ("pcmpl-x-ack-run" function (:arguments ("buffer" "args")) nil [5764 5982])
-            ("pcmpl-x-ack-short-options" function nil nil [5984 6337])
-            ("pcmpl-x-ack-long-options" function (:arguments ("arg")) nil [6339 6926])
-            ("pcmpl-x-ack-type-options" function nil nil [6928 7050])
-            ("pcomplete/ack" function nil nil [7067 8204])
-            ("defalias" code nil nil [8221 8266])
-            ("pcmpl-x-ag-options" variable nil nil [8341 8372])
-            ("pcmpl-x-ag-options" function nil nil [8374 9430])
-            ("pcomplete/ag" function nil nil [9447 9745])
-            ("pcmpl-x" package nil nil [9747 9765]))          
-      :file "pcmpl-x.el"
-      :pointmax 9791
-      :fsize 9790
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax '((close-paren 967 . 968) (symbol 932 . 949) (open-paren 931 . 932)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("epg" include nil nil [2983 2997])
-            ("plstore" customgroup (:user-visible-flag t) nil [2999 3115])
-            ("plstore-select-keys" variable (:default-value (quote silent)) nil [3117 3615])
-            ("plstore-encrypt-to" variable nil nil [3617 3883])
-            ("put" code nil nil [3885 4107])
-            ("put" code nil nil [4109 4153])
-            ("plstore-encoded" variable nil nil [4155 4183])
-            ("put" code nil nil [4185 4226])
-            ("plstore-cache-passphrase-for-symmetric-encryption" variable nil nil [4228 4290])
-            ("plstore-passphrase-alist" variable nil nil [4291 4328])
-            ("plstore-passphrase-callback-function" function (:arguments ("_context" "_key-id" "plstore")) nil [4330 5052])
-            ("plstore-progress-callback-function" function (:arguments ("_context" "_what" "_char" "current" "total" "handback")) nil [5054 5316])
-            ("plstore--get-buffer" function (:arguments ("arg")) nil [5318 5366])
-            ("plstore--get-alist" function (:arguments ("arg")) nil [5368 5415])
-            ("plstore--get-encrypted-data" function (:arguments ("arg")) nil [5417 5473])
-            ("plstore--get-secret-alist" function (:arguments ("arg")) nil [5475 5529])
-            ("plstore--get-merged-alist" function (:arguments ("arg")) nil [5531 5585])
-            ("plstore--set-buffer" function (:arguments ("arg" "buffer")) nil [5587 5649])
-            ("plstore--set-alist" function (:arguments ("arg" "plist")) nil [5651 5710])
-            ("plstore--set-encrypted-data" function (:arguments ("arg" "encrypted-data")) nil [5712 5798])
-            ("plstore--set-secret-alist" function (:arguments ("arg" "secret-alist")) nil [5800 5880])
-            ("plstore--set-merged-alist" function (:arguments ("arg" "merged-alist")) nil [5882 5962])
-            ("plstore-get-file" function (:arguments ("arg")) nil [5964 6041])
-            ("plstore--make" function (:arguments ("buffer" "alist" "encrypted-data" "secret-alist" "merged-alist")) nil [6043 6199])
-            ("plstore--init-from-buffer" function (:arguments ("plstore")) nil [6201 6593])
-            ("plstore-open" function (:arguments ("file")) nil [6610 7194])
-            ("plstore-revert" function (:arguments ("plstore")) nil [7196 7405])
-            ("plstore-close" function (:arguments ("plstore")) nil [7407 7524])
-            ("plstore--merge-secret" function (:arguments ("plstore")) nil [7526 8429])
-            ("plstore--decrypt" function (:arguments ("plstore")) nil [8431 9283])
-            ("plstore--match" function (:arguments ("entry" "keys" "skip-if-secret-found")) nil [9285 9908])
-            ("plstore-find" function (:arguments ("plstore" "keys")) nil [9910 10980])
-            ("plstore-get" function (:arguments ("plstore" "name")) nil [10982 11407])
-            ("plstore-put" function (:arguments ("plstore" "name" "keys" "secret-keys")) nil [11409 12686])
-            ("plstore-delete" function (:arguments ("plstore" "name")) nil [12688 13262])
-            ("pp-escape-newlines" variable nil nil [13264 13291])
-            ("plstore--insert-buffer" function (:arguments ("plstore")) nil [13292 14469])
-            ("plstore-save" function (:arguments ("plstore")) nil [14471 14686])
-            ("plstore--encode" function (:arguments ("plstore")) nil [14688 15381])
-            ("plstore--decode" function (:arguments ("string")) nil [15383 16223])
-            ("plstore--write-contents-functions" function nil nil [16225 16620])
-            ("plstore-mode-original" function (:user-visible-flag t) nil [16622 16992])
-            ("plstore-mode-decoded" function (:user-visible-flag t) nil [16994 17620])
-            ("plstore-mode-toggle-display" function (:user-visible-flag t) nil [17622 17835])
-            ("define-derived-mode" code nil nil [17852 18310])
-            ("plstore" package nil nil [18312 18330]))          
-      :file "plstore.el"
-      :pointmax 18357
-      :fsize 18356
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "ps-def.el"
-      :fsize 9640
-      :lastmodtime '(23525 29515 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "ps-print-loaddefs.el"
-      :fsize 2674
-      :lastmodtime '(23525 29516 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pcmpl-gnu" package nil nil [865 885])
-            ("pcomplete" include nil nil [887 907])
-            ("pcmpl-unix" include nil nil [908 929])
-            ("pcmpl-gnu" customgroup (:user-visible-flag t) nil [931 1014])
-            ("pcmpl-gnu-makefile-regexps" variable (:default-value (quote ("\\`GNUmakefile" "\\`[Mm]akefile" "\\.ma?k\\'"))) nil [1036 1225])
-            ("pcomplete/gzip" function nil nil [1257 1638])
-            ("pcmpl-gnu-zipped-files" function (:arguments ("unzip-p")) nil [1640 2024])
-            ("pcomplete/bzip2" function nil nil [2041 2376])
-            ("pcmpl-gnu-bzipped-files" function (:arguments ("unzip-p")) nil [2378 2748])
-            ("pcomplete/make" function nil nil [2765 3139])
-            ("pcmpl-gnu-makefile-names" function nil nil [3141 3299])
-            ("pcmpl-gnu-make-rule-names" function nil nil [3301 4051])
-            ("pcmpl-gnu-tarfile-regexp" variable (:default-value "\\.t\\(ar\\(\\.\\(gz\\|bz2\\|Z\\|xz\\)\\)?\\|gz\\|a[zZ]\\|z2\\)\\'") nil [4053 4291])
-            ("tar-parse-info" variable nil nil [4327 4350])
-            ("declare-function" code nil nil [4351 4400])
-            ("pcmpl-gnu-with-file-buffer" function (:arguments ("file" "body")) nil [4402 4960])
-            ("pcomplete/tar" function nil nil [4977 12215])
-            ("pcomplete/find" function nil nil [12233 14079])
-            ("defalias" code nil nil [14096 14138]))          
-      :file "pcmpl-gnu.el"
-      :pointmax 14167
-      :fsize 14166
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pcomplete" include nil nil [831 851])
-            ("pcmpl-unix-group-file" variable (:default-value "/etc/group") nil [873 1038])
-            ("pcmpl-unix-passwd-file" variable (:default-value "/etc/passwd") nil [1040 1208])
-            ("pcmpl-ssh-known-hosts-file" variable (:default-value "~/.ssh/known_hosts") nil [1210 1686])
-            ("pcmpl-ssh-config-file" variable (:default-value "~/.ssh/config") nil [1688 1975])
-            ("pcomplete/cd" function nil nil [2007 2099])
-            ("defalias" code nil nil [2116 2157])
-            ("pcomplete/rmdir" function nil nil [2174 2272])
-            ("pcomplete/rm" function nil nil [2289 2501])
-            ("pcomplete/xargs" function nil nil [2518 2757])
-            ("defalias" code nil nil [2774 2817])
-            ("pcomplete/which" function nil nil [2834 2963])
-            ("pcmpl-unix-read-passwd-file" function (:arguments ("file")) nil [2965 3531])
-            ("pcmpl-unix-group-names" function nil nil [3533 3709])
-            ("pcmpl-unix-user-names" function nil nil [3711 3888])
-            ("pcomplete/chown" function nil nil [3905 4291])
-            ("pcomplete/chgrp" function nil nil [4308 4504])
-            ("pcmpl-ssh-known-hosts" function nil nil [4596 5475])
-            ("pcmpl-ssh-config-hosts" function nil nil [5477 6006])
-            ("pcmpl-ssh-hosts" function nil nil [6008 6263])
-            ("pcomplete/ssh" function nil nil [6280 6444])
-            ("pcomplete/scp" function nil nil [6461 7609])
-            ("pcmpl-unix" package nil nil [7611 7632]))          
-      :file "pcmpl-unix.el"
-      :pointmax 7662
-      :fsize 7661
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pcmpl-cvs" package nil nil [952 972])
-            ("pcomplete" include nil nil [974 994])
-            ("executable" include nil nil [995 1016])
-            ("pcmpl-cvs" customgroup (:user-visible-flag t) nil [1018 1110])
-            ("pcmpl-cvs-binary" variable (:default-value (or (executable-find "cvs") "cvs")) nil [1132 1268])
-            ("pcomplete/cvs" function nil nil [1300 4068])
-            ("pcmpl-cvs-commands" function nil nil [4070 4413])
-            ("pcmpl-cvs-modules" function nil nil [4415 4766])
-            ("pcmpl-cvs-tags" function (:arguments ("opers")) nil [4768 5373])
-            ("pcmpl-cvs-entries" function (:arguments ("opers")) nil [5375 6981]))          
-      :file "pcmpl-cvs.el"
-      :pointmax 7010
-      :fsize 7009
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("delete-selection-save-to-register" variable nil nil [2502 2653])
-            ("defalias" code nil nil [2670 2724])
-            ("define-minor-mode" code nil nil [2741 3659])
-            ("delsel--replace-text-or-position" variable nil nil [3661 3706])
-            ("delete-active-region" function (:arguments ("killp")) nil [3708 4359])
-            ("delete-selection-repeat-replace-region" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [4361 7038])
-            ("delete-selection-helper" function (:arguments ("type")) nil [7040 10849])
-            ("delete-selection-pre-hook" function nil nil [10851 11376])
-            ("delete-selection-uses-region-p" function nil nil [11378 12108])
-            ("put" code nil nil [12110 12186])
-            ("put" code nil nil [12188 12226])
-            ("put" code nil nil [12227 12267])
-            ("put" code nil nil [12269 12304])
-            ("put" code nil nil [12305 12350])
-            ("put" code nil nil [12351 12393])
-            ("put" code nil nil [12507 12554])
-            ("put" code nil nil [12556 12615])
-            ("put" code nil nil [12616 12661])
-            ("put" code nil nil [12662 12696])
-            ("put" code nil nil [12697 12757])
-            ("put" code nil nil [12758 12794])
-            ("minibuffer-keyboard-quit" function (:user-visible-flag t) nil [12899 13222])
-            ("define-key" code nil nil [13224 13290])
-            ("define-key" code nil nil [13291 13360])
-            ("define-key" code nil nil [13361 13438])
-            ("define-key" code nil nil [13439 13516])
-            ("define-key" code nil nil [13517 13591])
-            ("delsel-unload-function" function nil nil [13593 14306])
-            ("delsel" package nil nil [14308 14325]))          
-      :file "delsel.el"
-      :pointmax 14351
-      :fsize 14350
-      :lastmodtime '(23525 29504 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("mwheel" include nil nil [2221 2238])
-            ("pixel-wait" variable nil nil [2240 2374])
-            ("pixel-resolution-fine-flag" variable nil nil [2376 2878])
-            ("pixel-dead-time" variable (:default-value 0.1) nil [2880 3136])
-            ("pixel-last-scroll-time" variable nil nil [3138 3241])
-            ("pixel-scroll-in-rush-p" function nil nil [3243 3778])
-            ("define-minor-mode" code nil nil [3795 4360])
-            ("pixel-scroll-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [4362 5237])
-            ("pixel-scroll-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5262 6188])
-            ("pixel-bob-at-top-p" function (:arguments ("amt")) nil [6190 6441])
-            ("pixel-eob-at-top-p" function nil nil [6443 6580])
-            ("pixel-posn-y-at-point" function nil nil [6603 7066])
-            ("pixel-point-at-top-p" function (:arguments ("amt")) nil [7068 7455])
-            ("pixel-point-at-bottom-p" function (:arguments ("amt")) nil [7457 7922])
-            ("pixel-scroll-pixel-up" function (:arguments ("amt")) nil [7945 8235])
-            ("pixel-scroll-pixel-down" function (:arguments ("amt")) nil [8252 8786])
-            ("pixel--whistlestop-line-up" function nil nil [8788 9922])
-            ("pixel--whistlestop-pixel-up" function (:arguments ("n")) nil [9924 10226])
-            ("pixel-line-height" function (:arguments ("pos")) nil [10228 10832])
-            ("pixel-visual-line-height" function nil nil [10834 11653])
-            ("pixel-visible-pos-in-window" function nil nil [11655 12914])
-            ("pixel-point-at-unseen-line" function nil nil [12916 13766])
-            ("pixel-scroll-down-and-set-window-vscroll" function (:arguments ("vscroll")) nil [13768 14150])
-            ("pixel-scroll" package nil nil [14152 14175]))          
-      :file "pixel-scroll.el"
-      :pointmax 14206
-      :fsize 14205
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "mwheel.el"
-      :fsize 14334
-      :lastmodtime '(23525 29514 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pcmpl-linux" package nil nil [1045 1067])
-            ("pcomplete" include nil nil [1069 1089])
-            ("pcomplete/kill" function nil nil [1246 1658])
-            ("pcomplete/umount" function nil nil [1675 1871])
-            ("pcomplete/mount" function nil nil [1888 2073])
-            ("pcmpl-linux-fs-types" function nil nil [2075 2310])
-            ("pcmpl-linux-mounted-directories" function nil nil [2312 2753])
-            ("pcomplete-pare-list" function (:arguments ("l" "r")) nil [2755 3094])
-            ("pcmpl-linux-mountable-directories" function nil nil [3096 3631]))          
-      :file "pcmpl-linux.el"
-      :pointmax 3662
-      :fsize 3661
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pcomplete" include nil nil [915 935])
-            ("pcmpl-rpm" customgroup (:user-visible-flag t) nil [937 1036])
-            ("pcmpl-rpm-query-options" variable (:default-value (let (opts) (with-temp-buffer (when (ignore-errors (call-process "rpm" nil t nil "--help")) (if (search-backward "--nodigest " nil (quote move)) (setq opts (quote ("--nodigest")))) (goto-char (point-min)) (if (search-forward "--nosignature " nil t) (push "--nosignature" opts)))) opts)) nil [1111 1748])
-            ("pcmpl-rpm-cache" variable (:default-value t) nil [1750 1887])
-            ("pcmpl-rpm-cache-stamp-file" variable
-               (:constant-flag t
-                :default-value "/var/lib/rpm/Packages")
-                nil [1889 2024])
-            ("pcmpl-rpm-cache-time" variable nil nil [2026 2121])
-            ("pcmpl-rpm-packages" variable nil nil [2123 2186])
-            ("pcmpl-rpm-packages" function nil nil [2203 3057])
-            ("pcmpl-rpm-all-query" function (:arguments ("flag")) nil [3153 3486])
-            ("pcmpl-rpm-files" function nil nil [3488 3559])
-            ("pcomplete/rpm" function nil nil [3576 11662])
-            ("pcmpl-rpm" package nil nil [11664 11684]))          
-      :file "pcmpl-rpm.el"
-      :pointmax 11713
-      :fsize 11712
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [962 979])
-            ("profiler" customgroup (:user-visible-flag t) nil [981 1079])
-            ("profiler-version" variable
-               (:constant-flag t
-                :default-value "24.3")
-                nil [1081 1115])
-            ("profiler-sampling-interval" variable (:default-value 1000000) nil [1117 1245])
-            ("profiler-ensure-string" function (:arguments ("object")) nil [1264 1459])
-            ("profiler-format-percent" function (:arguments ("number" "divisor")) nil [1461 1560])
-            ("profiler-format-number" function (:arguments ("number")) nil [1562 2038])
-            ("profiler-format" function (:arguments ("fmt" "args")) nil [2040 2901])
-            ("profiler-format-entry" function (:arguments ("entry")) nil [2918 3350])
-            ("profiler-fixup-entry" function (:arguments ("entry")) nil [3352 3457])
-            ("profiler-fixup-backtrace" function (:arguments ("backtrace")) nil [3477 3580])
-            ("profiler-compare-logs" function (:arguments ("log1" "log2")) nil [3997 4441])
-            ("profiler-fixup-log" function (:arguments ("log")) nil [4443 4693])
-            ("cl-defstruct" code nil nil [4711 5189])
-            ("profiler-compare-profiles" function (:arguments ("profile1" "profile2")) nil [5191 5664])
-            ("profiler-fixup-profile" function (:arguments ("profile")) nil [5666 5998])
-            ("profiler-write-profile" function (:arguments ("profile" "filename" "confirm")) nil [6000 6274])
-            ("profiler-read-profile" function (:arguments ("filename")) nil [6276 6500])
-            ("profiler-running-p" function (:arguments ("mode")) nil [6502 6926])
-            ("profiler-cpu-profile" function nil nil [6928 7122])
-            ("profiler-memory-profile" function nil nil [7124 7332])
-            ("cl-defstruct" code nil nil [7351 7480])
-            ("profiler-calltree-leaf-p" function (:arguments ("tree")) nil [7482 7564])
-            ("profiler-calltree-count<" function (:arguments ("a" "b")) nil [7566 7766])
-            ("profiler-calltree-count>" function (:arguments ("a" "b")) nil [7768 7845])
-            ("profiler-calltree-depth" function (:arguments ("tree")) nil [7847 7981])
-            ("profiler-calltree-find" function (:arguments ("tree" "entry")) nil [7983 8340])
-            ("profiler-calltree-walk" function (:arguments ("calltree" "function")) nil [8342 8523])
-            ("profiler-calltree-build-1" function (:arguments ("tree" "log" "reverse")) nil [8525 9373])
-            ("define-hash-table-test" code nil nil [9376 9576])
-            ("profiler-calltree-build-unified" function (:arguments ("tree" "log")) nil [9578 14703])
-            ("profiler-calltree-compute-percentages" function (:arguments ("tree")) nil [14705 15255])
-            ("cl-defun" code nil nil [15257 15529])
-            ("profiler-calltree-sort" function (:arguments ("tree" "predicate")) nil [15531 15806])
-            ("profiler-report-closed-mark" variable (:default-value "+") nil [15832 15948])
-            ("profiler-report-open-mark" variable (:default-value "-") nil [15950 16062])
-            ("profiler-report-leaf-mark" variable (:default-value " ") nil [16064 16177])
-            ("profiler-report-cpu-line-format" variable (:default-value (quote ((50 left) (24 right ((19 right) (5 right)))))) nil [16179 16280])
-            ("profiler-report-memory-line-format" variable (:default-value (quote ((55 left) (19 right ((14 right profiler-format-number) (5 right)))))) nil [16282 16409])
-            ("defvar-local" code nil nil [16411 16478])
-            ("defvar-local" code nil nil [16480 16608])
-            ("defvar-local" code nil nil [16610 16738])
-            ("profiler-report-make-entry-part" function (:arguments ("entry")) nil [16740 17152])
-            ("profiler-report-make-name-part" function (:arguments ("tree")) nil [17154 17535])
-            ("profiler-report-header-line-format" function (:arguments ("fmt" "args")) nil [17537 17731])
-            ("profiler-report-line-format" function (:arguments ("tree")) nil [17733 18324])
-            ("profiler-report-insert-calltree" function (:arguments ("tree")) nil [18326 18484])
-            ("profiler-report-insert-calltree-children" function (:arguments ("tree")) nil [18486 18619])
-            ("profiler-report-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "n" (quote profiler-report-next-entry)) (define-key map "p" (quote profiler-report-previous-entry)) (define-key map "
" (quote profiler-report-toggle-entry)) (define-key map "	" (quote profiler-report-toggle-entry)) (define-key map "i" (quote profiler-report-toggle-entry)) (define-key map [mouse-1] (quote profiler-report-toggle-entry)) (define-key map "f" (quote profiler-report-find-entry)) (define-key map "j" (quote profiler-report-find-entry)) (define-key map [mouse-2] (quote profiler-report-find-entry)) (define-key map "d" (quote profiler-report-describe-entry)) (define-key map "C" (quote profiler-report-render-calltree)) (define-key map "B" (quote profiler-report-render-reversed-calltree)) (define-key map "A" (quote profiler-report-ascending-sort)) (define-key map "D" (quote profiler-report-descending-sort)) (define-key map "=" (quote profiler-report-compare-profile)) (define-key map (kbd "C-x C-w") (quote profiler-report-write-profile)) (easy-menu-define profiler-report-menu map "Menu for Profiler Report mode." (quote ("Profiler" ["Next Entry" profiler-report-next-entry :active t :help "Move to next entry"] ["Previous Entry" profiler-report-previous-entry :active t :help "Move to previous entry"] "--" ["Toggle Entry" profiler-report-toggle-entry :active (profiler-report-calltree-at-point) :help "Expand or collapse the current entry"] ["Find Entry" profiler-report-find-entry :active (profiler-report-calltree-at-point) :help "Find the definition of the current entry"] ["Describe Entry" profiler-report-describe-entry :active (profiler-report-calltree-at-point) :help "Show the documentation of the current entry"] "--" ["Show Calltree" profiler-report-render-calltree :active profiler-report-reversed :help "Show calltree view"] ["Show Reversed Calltree" profiler-report-render-reversed-calltree :active (not profiler-report-reversed) :help "Show reversed calltree view"] ["Sort Ascending" profiler-report-ascending-sort :active (not (eq profiler-report-order (quote ascending))) :help "Sort calltree view in ascending order"] ["Sort Descending" profiler-report-descending-sort :active (not (eq profiler-report-order (quote descending))) :help "Sort calltree view in descending order"] "--" ["Compare Profile..." profiler-report-compare-profile :active t :help "Compare current profile with another"] ["Write Profile..." profiler-report-write-profile :active t :help "Write current profile to a file"] "--" ["Start Profiler" profiler-start :active (not (profiler-running-p)) :help "Start profiling"] ["Stop Profiler" profiler-stop :active (profiler-running-p) :help "Stop profiling"] ["New Report" profiler-report :active (profiler-running-p) :help "Make a new report"]))) map)) nil [18640 22108])
-            ("profiler-report-make-buffer-name" function (:arguments ("profile")) nil [22110 22360])
-            ("profiler-report-setup-buffer-1" function (:arguments ("profile")) nil [22362 22751])
-            ("profiler-report-setup-buffer" function (:arguments ("profile")) nil [22753 23015])
-            ("define-derived-mode" code nil nil [23017 23227])
-            ("profiler-report-calltree-at-point" function (:arguments ("point")) nil [23252 23362])
-            ("profiler-report-move-to-entry" function nil nil [23364 23572])
-            ("profiler-report-next-entry" function (:user-visible-flag t) nil [23574 23709])
-            ("profiler-report-previous-entry" function (:user-visible-flag t) nil [23711 23857])
-            ("profiler-report-expand-entry" function
-               (:user-visible-flag t
-                :arguments ("full"))
-                nil [23859 24670])
-            ("profiler-report-collapse-entry" function (:user-visible-flag t) nil [24672 25408])
-            ("profiler-report-toggle-entry" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25410 25702])
-            ("profiler-report-find-entry" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [25704 26178])
-            ("profiler-report-describe-entry" function (:user-visible-flag t) nil [26180 26436])
-            ("cl-defun" code nil nil [26438 27379])
-            ("profiler-report-rerender-calltree" function nil nil [27381 27568])
-            ("profiler-report-render-calltree" function (:user-visible-flag t) nil [27570 27730])
-            ("profiler-report-render-reversed-calltree" function (:user-visible-flag t) nil [27732 27908])
-            ("profiler-report-ascending-sort" function (:user-visible-flag t) nil [27910 28090])
-            ("profiler-report-descending-sort" function (:user-visible-flag t) nil [28092 28275])
-            ("profiler-report-profile" function (:arguments ("profile")) nil [28277 28378])
-            ("profiler-report-profile-other-window" function (:arguments ("profile")) nil [28380 28507])
-            ("profiler-report-profile-other-frame" function (:arguments ("profile")) nil [28509 28634])
-            ("profiler-report-compare-profile" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [28636 29000])
-            ("profiler-report-write-profile" function
-               (:user-visible-flag t
-                :arguments ("filename" "confirm"))
-                nil [29002 29344])
-            ("profiler-start" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [29386 30228])
-            ("profiler-stop" function (:user-visible-flag t) nil [30230 30616])
-            ("profiler-reset" function (:user-visible-flag t) nil [30618 30790])
-            ("profiler-report-cpu" function nil nil [30792 30937])
-            ("profiler-report-memory" function nil nil [30939 31090])
-            ("profiler-report" function (:user-visible-flag t) nil [31092 31215])
-            ("profiler-find-profile" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [31232 31438])
-            ("profiler-find-profile-other-window" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [31455 31687])
-            ("profiler-find-profile-other-frame" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [31704 31933])
-            ("profiler" package nil nil [32500 32519]))          
-      :file "profiler.el"
-      :pointmax 32546
-      :fsize 32545
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("proced" customgroup (:user-visible-flag t) nil [2260 2353])
-            ("proced-signal-function" variable (:default-value (quote signal-process)) nil [2355 2656])
-            ("proced-renice-command" variable (:default-value "renice") nil [2658 2796])
-            ("proced-signal-list" variable (:default-value (quote (("HUP" . "   (1.  Hangup)") ("INT" . "   (2.  Terminal interrupt)") ("QUIT" . "  (3.  Terminal quit)") ("ABRT" . "  (6.  Process abort)") ("KILL" . "  (9.  Kill - cannot be caught or ignored)") ("ALRM" . "  (14. Alarm Clock)") ("TERM" . "  (15. Termination)") ("CONT" . "  (Continue executing)") ("STOP" . "  (Stop executing / pause - cannot be caught or ignored)") ("TSTP" . "  (Terminal stop / pause)")))) nil [2798 3505])
-            ("proced-grammar-alist" variable (:default-value (quote ((euid "EUID" "%d" right proced-< nil (euid pid) (nil t nil)) (user "User" nil left proced-string-lessp nil (user pid) (nil t nil)) (egid "EGID" "%d" right proced-< nil (egid euid pid) (nil t nil)) (group "Group" nil left proced-string-lessp nil (group user pid) (nil t nil)) (comm "Command" nil left proced-string-lessp nil (comm pid) (nil t nil)) (state "Stat" nil left proced-string-lessp nil (state pid) (nil t nil)) (ppid "PPID" "%d" right proced-< nil (ppid pid) ((lambda (ppid) (proced-filter-parents proced-process-alist ppid)) "refine to process parents")) (pgrp "PGrp" "%d" right proced-< nil (pgrp euid pid) (nil t nil)) (sess "Sess" "%d" right proced-< nil (sess pid) (nil t nil)) (ttname "TTY" proced-format-ttname left proced-string-lessp nil (ttname pid) (nil t nil)) (tpgid "TPGID" "%d" right proced-< nil (tpgid pid) (nil t nil)) (minflt "MinFlt" "%d" right proced-< nil (minflt pid) (nil t t)) (majflt "MajFlt" "%d" right proced-< nil (majflt pid) (nil t t)) (cminflt "CMinFlt" "%d" right proced-< nil (cminflt pid) (nil t t)) (cmajflt "CMajFlt" "%d" right proced-< nil (cmajflt pid) (nil t t)) (utime "UTime" proced-format-time right proced-time-lessp t (utime pid) (nil t t)) (stime "STime" proced-format-time right proced-time-lessp t (stime pid) (nil t t)) (time "Time" proced-format-time right proced-time-lessp t (time pid) (nil t t)) (cutime "CUTime" proced-format-time right proced-time-lessp t (cutime pid) (nil t t)) (cstime "CSTime" proced-format-time right proced-time-lessp t (cstime pid) (nil t t)) (ctime "CTime" proced-format-time right proced-time-lessp t (ctime pid) (nil t t)) (pri "Pr" "%d" right proced-< t (pri pid) (nil t t)) (nice "Ni" "%3d" 3 proced-< t (nice pid) (t t nil)) (thcount "THCount" "%d" right proced-< t (thcount pid) (nil t t)) (start "Start" proced-format-start 6 proced-time-lessp nil (start pid) (t t nil)) (vsize "VSize" "%d" right proced-< t (vsize pid) (nil t t)) (rss "RSS" "%d" right proced-< t (rss pid) (nil t t)) (etime "ETime" proced-format-time right proced-time-lessp t (etime pid) (nil t t)) (pcpu "%CPU" "%.1f" right proced-< t (pcpu pid) (nil t t)) (pmem "%Mem" "%.1f" right proced-< t (pmem pid) (nil t t)) (args "Args" proced-format-args left proced-string-lessp nil (args pid) (nil t nil)) (pid "PID" "%d" right proced-< nil (pid) ((lambda (ppid) (proced-filter-children proced-process-alist ppid)) "refine to process children")) (tree "Tree" proced-format-tree left nil nil nil nil)))) nil [4066 10963])
-            ("proced-custom-attributes" variable nil nil [10965 11486])
-            ("proced-format-alist" variable (:default-value (quote ((short user pid tree pcpu pmem start time (args comm)) (medium user pid tree pcpu pmem vsize rss ttname state start time (args comm)) (long user euid group pid tree pri nice pcpu pmem vsize rss ttname state start time (args comm)) (verbose user euid group egid pid ppid tree pgrp sess pri nice pcpu pmem state thcount vsize rss ttname tpgid minflt majflt cminflt cmajflt start time utime stime ctime cutime cstime etime (args comm))))) nil [11936 13113])
-            ("proced-format" variable (:default-value (quote short)) nil [13115 13428])
-            ("make-variable-buffer-local" code nil nil [13429 13472])
-            ("proced-filter-alist" variable (:default-value (\` ((user (user \, (concat "\\`" (regexp-quote (user-real-login-name)) "\\'"))) (user-running (user \, (concat "\\`" (regexp-quote (user-real-login-name)) "\\'")) (state . "\\`[Rr]\\'")) (all) (all-running (state . "\\`[Rr]\\'")) (emacs (fun-all lambda (list) (proced-filter-children list (\, (emacs-pid)))))))) nil [13574 15307])
-            ("proced-filter" variable (:default-value (quote user)) nil [15309 16023])
-            ("make-variable-buffer-local" code nil nil [16024 16067])
-            ("proced-sort" variable (:default-value (quote pcpu)) nil [16069 16423])
-            ("make-variable-buffer-local" code nil nil [16424 16465])
-            ("proced-descend" variable (:default-value t) nil [16467 16621])
-            ("make-variable-buffer-local" code nil nil [16622 16666])
-            ("proced-goal-attribute" variable (:default-value (quote args)) nil [16668 16872])
-            ("proced-auto-update-interval" variable (:default-value 5) nil [16874 17012])
-            ("proced-auto-update-flag" variable nil nil [17014 17197])
-            ("make-variable-buffer-local" code nil nil [17198 17251])
-            ("proced-tree-flag" variable nil nil [17253 17377])
-            ("make-variable-buffer-local" code nil nil [17378 17424])
-            ("proced-post-display-hook" variable nil nil [17426 17663])
-            ("proced-after-send-signal-hook" variable nil nil [17665 17893])
-            ("proced-available" variable (:default-value (not (null (list-system-processes)))) nil [17918 18038])
-            ("proced-process-alist" variable nil nil [18040 18223])
-            ("make-variable-buffer-local" code nil nil [18224 18274])
-            ("proced-sort-internal" variable nil nil [18276 18403])
-            ("proced-marker-char" variable (:default-value 42) nil [18405 18498])
-            ("proced-faces" customgroup (:user-visible-flag t) nil [18597 18683])
-            ("proced-mark" variable
-               (:default-value (quote ((t (:inherit font-lock-constant-face))))
-                :type "face")
-                nil [18685 18805])
-            ("proced-marked" variable
-               (:default-value (quote ((t (:inherit error))))
-                :type "face")
-                nil [18807 18915])
-            ("proced-sort-header" variable
-               (:default-value (quote ((t (:inherit font-lock-keyword-face))))
-                :type "face")
-                nil [18917 19067])
-            ("proced-re-mark" variable (:default-value "^[^ 
-]") nil [19069 19186])
-            ("proced-header-line" variable nil nil [19188 19261])
-            ("make-variable-buffer-local" code nil nil [19262 19310])
-            ("proced-temp-alist" variable nil nil [19312 19383])
-            ("proced-process-tree" variable nil nil [19385 19462])
-            ("proced-tree-depth" variable nil nil [19464 19550])
-            ("proced-auto-update-timer" variable nil nil [19552 19650])
-            ("proced-log-buffer" variable (:default-value "*Proced log*") nil [19652 19724])
-            ("proced-help-string" variable
-               (:constant-flag t
-                :default-value "(n)ext, (p)revious, (m)ark, (u)nmark, (k)ill, (q)uit (type ? for more help)")
-                nil [19726 19863])
-            ("proced-header-help-echo" variable
-               (:constant-flag t
-                :default-value "mouse-1, mouse-2: sort by attribute %s%s (%s)")
-                nil [19865 20009])
-            ("proced-field-help-echo" variable
-               (:constant-flag t
-                :default-value "mouse-2, RET: refine by attribute %s %s")
-                nil [20011 20148])
-            ("proced-font-lock-keywords" variable (:default-value (\` (((\, proced-re-mark) quote proced-mark) ((\, (concat "^[" (char-to-string proced-marker-char) "]")) ".+" (proced-move-to-goal-column) nil (0 (quote proced-marked)))))) nil [20150 20495])
-            ("proced-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) (define-key km " " (quote next-line)) (define-key km "n" (quote next-line)) (define-key km "p" (quote previous-line)) (define-key km "" (quote next-line)) (define-key km "" (quote previous-line)) (define-key km "" (quote previous-line)) (define-key km [33554464] (quote previous-line)) (define-key km [down] (quote next-line)) (define-key km [up] (quote previous-line)) (define-key km "d" (quote proced-mark)) (define-key km "m" (quote proced-mark)) (put (quote proced-mark) :advertised-binding "m") (define-key km "u" (quote proced-unmark)) (define-key km "" (quote proced-unmark-backward)) (define-key km "M" (quote proced-mark-all)) (define-key km "U" (quote proced-unmark-all)) (define-key km "t" (quote proced-toggle-marks)) (define-key km "C" (quote proced-mark-children)) (define-key km "P" (quote proced-mark-parents)) (define-key km "f" (quote proced-filter-interactive)) (define-key km [mouse-2] (quote proced-refine)) (define-key km "
" (quote proced-refine)) (define-key km "sc" (quote proced-sort-pcpu)) (define-key km "sm" (quote proced-sort-pmem)) (define-key km "sp" (quote proced-sort-pid)) (define-key km "ss" (quote proced-sort-start)) (define-key km "sS" (quote proced-sort-interactive)) (define-key km "st" (quote proced-sort-time)) (define-key km "su" (quote proced-sort-user)) (define-key km [header-line mouse-1] (quote proced-sort-header)) (define-key km [header-line mouse-2] (quote proced-sort-header)) (define-key km "T" (quote proced-toggle-tree)) (define-key km "F" (quote proced-format-interactive)) (define-key km "o" (quote proced-omit-processes)) (define-key km "x" (quote proced-send-signal)) (define-key km "k" (quote proced-send-signal)) (define-key km "r" (quote proced-renice)) (define-key km "h" (quote describe-mode)) (define-key km "?" (quote proced-help)) (define-key km [remap undo] (quote proced-undo)) (define-key km [remap advertised-undo] (quote proced-undo)) km)) nil [20497 22712])
-            ("easy-menu-define" code nil nil [22714 25093])
-            ("proced-marker-regexp" function nil nil [25115 25314])
-            ("proced-success-message" function (:arguments ("action" "count")) nil [25316 25499])
-            ("proced-move-to-goal-column" function nil nil [25958 26189])
-            ("proced-header-line" function nil nil [26191 26647])
-            ("proced-pid-at-point" function nil nil [26649 26894])
-            ("define-derived-mode" code nil nil [26912 29276])
-            ("proced" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [29293 30522])
-            ("proced-auto-update-timer" function nil nil [30524 30787])
-            ("proced-toggle-auto-update" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [30789 31461])
-            ("proced-mark" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [31473 31605])
-            ("proced-unmark" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [31607 31745])
-            ("proced-unmark-backward" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [31747 32007])
-            ("proced-do-mark" function (:arguments ("mark" "count")) nil [32009 32464])
-            ("proced-toggle-marks" function (:user-visible-flag t) nil [32466 32933])
-            ("proced-insert-mark" function (:arguments ("mark" "backward")) nil [32935 33304])
-            ("proced-mark-all" function (:user-visible-flag t) nil [33306 33478])
-            ("proced-unmark-all" function (:user-visible-flag t) nil [33480 33660])
-            ("proced-do-mark-all" function (:arguments ("mark")) nil [33662 34829])
-            ("proced-mark-children" function
-               (:user-visible-flag t
-                :arguments ("ppid" "omit-ppid"))
-                nil [34831 35145])
-            ("proced-mark-parents" function
-               (:user-visible-flag t
-                :arguments ("cpid" "omit-cpid"))
-                nil [35147 35452])
-            ("proced-mark-process-alist" function (:arguments ("process-alist" "quiet")) nil [35454 36047])
-            ("proced-omit-processes" function
-               (:user-visible-flag t
-                :arguments ("arg" "quiet"))
-                nil [36311 37862])
-            ("proced-omit-process" function nil nil [37864 38180])
-            ("proced-filter" function (:arguments ("process-alist" "filter-list")) nil [38197 39442])
-            ("proced-filter-interactive" function
-               (:user-visible-flag t
-                :arguments ("scheme"))
-                nil [39444 39959])
-            ("proced-filter-parents" function (:arguments ("process-alist" "pid" "omit-pid")) nil [39961 40625])
-            ("proced-filter-children" function (:arguments ("process-alist" "ppid" "omit-ppid")) nil [40627 41070])
-            ("proced-children-alist" function (:arguments ("process-alist")) nil [41090 42318])
-            ("proced-children-pids" function (:arguments ("ppid")) nil [42320 42574])
-            ("proced-process-tree" function (:arguments ("process-alist")) nil [42576 43158])
-            ("proced-process-tree-internal" function (:arguments ("pid-alist")) nil [43160 43944])
-            ("proced-toggle-tree" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [43946 45022])
-            ("proced-tree" function (:arguments ("process-alist")) nil [45024 46120])
-            ("proced-tree-insert" function (:arguments ("process-tree")) nil [46122 46571])
-            ("proced-refine" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [46750 49596])
-            ("proced-<" function (:arguments ("num1" "num2")) nil [49924 50116])
-            ("proced-string-lessp" function (:arguments ("s1" "s2")) nil [50118 50355])
-            ("proced-time-lessp" function (:arguments ("t1" "t2")) nil [50357 50574])
-            ("proced-xor" function (:arguments ("b1" "b2")) nil [50589 50717])
-            ("proced-sort-p" function (:arguments ("p1" "p2")) nil [50719 51715])
-            ("proced-sort" function (:arguments ("process-alist" "sorter" "descend")) nil [51717 52921])
-            ("proced-sort-interactive" function
-               (:user-visible-flag t
-                :arguments ("scheme" "arg"))
-                nil [52923 54822])
-            ("proced-sort-pcpu" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [54824 55074])
-            ("proced-sort-pmem" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [55076 55330])
-            ("proced-sort-pid" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [55332 55557])
-            ("proced-sort-start" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [55559 55817])
-            ("proced-sort-time" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [55819 56058])
-            ("proced-sort-user" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [56060 56288])
-            ("proced-sort-header" function
-               (:user-visible-flag t
-                :arguments ("event" "arg"))
-                nil [56290 57152])
-            ("proced-format-time" function (:arguments ("time")) nil [57170 57727])
-            ("proced-format-start" function (:arguments ("start")) nil [57729 58334])
-            ("proced-format-ttname" function (:arguments ("ttname")) nil [58336 58563])
-            ("proced-format-tree" function (:arguments ("tree")) nil [58565 58683])
-            ("proced-format-args" function (:arguments ("args")) nil [58761 58920])
-            ("proced-format" function (:arguments ("process-alist" "format")) nil [58922 65440])
-            ("proced-format-interactive" function
-               (:user-visible-flag t
-                :arguments ("scheme" "revert"))
-                nil [65442 66052])
-            ("proced-process-attributes" function (:arguments ("pid-list")) nil [66075 66980])
-            ("proced-update" function
-               (:user-visible-flag t
-                :arguments ("revert" "quiet"))
-                nil [66982 72847])
-            ("proced-revert" function (:arguments ("_args")) nil [72849 73008])
-            ("proced-marked-processes" function nil nil [73010 74095])
-            ("proced-with-processes-buffer" function (:arguments ("process-alist" "body")) nil [74097 75430])
-            ("proced-send-signal" function
-               (:user-visible-flag t
-                :arguments ("signal" "process-alist"))
-                nil [75432 80375])
-            ("proced-renice" function
-               (:user-visible-flag t
-                :arguments ("priority" "process-alist"))
-                nil [80377 82024])
-            ("proced-why" function (:user-visible-flag t) nil [82052 82692])
-            ("proced-log" function (:arguments ("log" "args")) nil [82720 83677])
-            ("proced-log-summary" function (:arguments ("signal" "string")) nil [83713 84048])
-            ("proced-help" function (:user-visible-flag t) nil [84050 84234])
-            ("proced-undo" function (:user-visible-flag t) nil [84236 84552])
-            ("proced" package nil nil [84554 84571]))          
-      :file "proced.el"
-      :pointmax 84597
-      :fsize 84596
-      :lastmodtime '(23525 29515 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("button" include nil nil [1060 1077])
-            ("cl-lib" include nil nil [1078 1095])
-            ("easymenu" include nil nil [1115 1134])
-            ("help-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map (make-composed-keymap button-buffer-map special-mode-map)) (define-key map [mouse-2] (quote help-follow-mouse)) (define-key map "l" (quote help-go-back)) (define-key map "r" (quote help-go-forward)) (define-key map "" (quote help-go-back)) (define-key map "" (quote help-go-forward)) (define-key map [XF86Back] (quote help-go-back)) (define-key map [XF86Forward] (quote help-go-forward)) (define-key map "" (quote help-follow-symbol)) (define-key map "
" (quote help-follow)) map)) nil [1137 1780])
-            ("easy-menu-define" code nil nil [1782 2358])
-            ("help-xref-stack" variable nil nil [2360 2630])
-            ("put" code nil nil [2631 2672])
-            ("make-variable-buffer-local" code nil nil [2673 2718])
-            ("help-xref-forward-stack" variable nil nil [2720 2995])
-            ("put" code nil nil [2996 3045])
-            ("make-variable-buffer-local" code nil nil [3046 3099])
-            ("help-xref-stack-item" variable nil nil [3101 3245])
-            ("put" code nil nil [3246 3292])
-            ("make-variable-buffer-local" code nil nil [3293 3343])
-            ("help-xref-stack-forward-item" variable nil nil [3345 3491])
-            ("put" code nil nil [3492 3546])
-            ("make-variable-buffer-local" code nil nil [3547 3605])
-            ("setq-default" code nil nil [3607 3666])
-            ("setq-default" code nil nil [3667 3742])
-            ("help-mode-hook" variable nil nil [3744 3832])
-            ("define-button-type" code nil nil [3865 3944])
-            ("help-button-action" function (:arguments ("button")) nil [3946 4105])
-            ("define-button-type" code nil nil [4277 4435])
-            ("define-button-type" code nil nil [4437 4595])
-            ("define-button-type" code nil nil [4597 4743])
-            ("define-button-type" code nil nil [4745 4918])
-            ("define-button-type" code nil nil [4920 5090])
-            ("define-button-type" code nil nil [5092 5265])
-            ("define-button-type" code nil nil [5314 5467])
-            ("define-button-type" code nil nil [5469 5633])
-            ("define-button-type" code nil nil [5635 5806])
-            ("define-button-type" code nil nil [5808 6039])
-            ("define-button-type" code nil nil [6041 6180])
-            ("define-button-type" code nil nil [6182 6333])
-            ("define-button-type" code nil nil [6335 6521])
-            ("define-button-type" code nil nil [6523 6697])
-            ("define-button-type" code nil nil [6699 7827])
-            ("define-button-type" code nil nil [7829 8499])
-            ("define-button-type" code nil nil [8501 9014])
-            ("define-button-type" code nil nil [9016 9545])
-            ("define-button-type" code nil nil [9547 9697])
-            ("define-button-type" code nil nil [9699 9871])
-            ("define-button-type" code nil nil [9873 10018])
-            ("define-button-type" code nil nil [10020 10183])
-            ("define-button-type" code nil nil [10185 10488])
-            ("bookmark-make-record-function" variable nil nil [10492 10530])
-            ("define-derived-mode" code nil nil [10547 10935])
-            ("help-mode-setup" function nil nil [10952 11065])
-            ("help-mode-finish" function nil nil [11082 11263])
-            ("help-back-label" variable (:default-value (purecopy "[back]")) nil [11507 11616])
-            ("help-forward-label" variable (:default-value (purecopy "[forward]")) nil [11618 11736])
-            ("help-xref-symbol-regexp" variable
-               (:constant-flag t
-                :default-value (purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|" "\\(function\\|command\\|call\\)\\|" "\\(face\\)\\|" "\\(symbol\\|program\\|property\\)\\|" "\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)" "[ 	
-]+\\)?" "['`‘]\\(\\sw\\(\\sw\\|\\s_\\)+\\|`\\)['’]")))
-                nil [11738 12374])
-            ("help-xref-mule-regexp" variable nil nil [12376 12649])
-            ("help-xref-info-regexp" variable
-               (:constant-flag t
-                :default-value (purecopy "\\<[Ii]nfo[ 	
-]+\\(node\\|anchor\\)[ 	
-]+['`‘]\\([^'’]+\\)['’]"))
-                nil [12652 12828])
-            ("help-xref-url-regexp" variable
-               (:constant-flag t
-                :default-value (purecopy "\\<[Uu][Rr][Ll][ 	
-]+['`‘]\\([^'’]+\\)['’]"))
-                nil [12830 12973])
-            ("help-setup-xref" function (:arguments ("item" "interactive-p")) nil [12990 13895])
-            ("help-xref-following" variable nil nil [13897 13980])
-            ("help-buffer" function nil nil [13997 14543])
-            ("describe-symbol-backends" variable (:default-value (\` ((nil (\, (function fboundp)) (\, (lambda (s _b _f) (describe-function s)))) (nil (\, (lambda (symbol) (or (and (boundp symbol) (not (keywordp symbol))) (get symbol (quote variable-documentation))))) (\, (function describe-variable))) ("face" (\, (function facep)) (\, (lambda (s _b _f) (describe-face s))))))) nil [14545 14870])
-            ("help-make-xrefs" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [14887 23338])
-            ("help-xref-button" function (:arguments ("match-number" "type" "args")) nil [23355 23939])
-            ("help-insert-xref-button" function (:arguments ("string" "type" "args")) nil [23956 24318])
-            ("help-xref-on-pp" function (:arguments ("from" "to")) nil [24335 25222])
-            ("define-obsolete-function-alias" code nil nil [25307 25383])
-            ("help-xref-go-back" function (:arguments ("buffer")) nil [25426 26224])
-            ("help-xref-go-forward" function (:arguments ("buffer")) nil [26226 27005])
-            ("help-go-back" function (:user-visible-flag t) nil [27007 27206])
-            ("help-go-forward" function (:user-visible-flag t) nil [27208 27412])
-            ("help-do-xref" function (:arguments ("_pos" "function" "args")) nil [27414 27805])
-            ("help-follow-mouse" function (:user-visible-flag t) nil [27862 27992])
-            ("help-follow" function (:user-visible-flag t) nil [28049 28221])
-            ("help-follow-symbol" function
-               (:user-visible-flag t
-                :arguments ("pos"))
-                nil [28223 28878])
-            ("help-mode-revert-buffer" function (:arguments ("_ignore-auto" "noconfirm")) nil [28880 29261])
-            ("help-insert-string" function (:arguments ("string")) nil [29263 29734])
-            ("declare-function" code nil nil [29759 29822])
-            ("declare-function" code nil nil [29823 29935])
-            ("help-bookmark-make-record" function nil nil [29937 30421])
-            ("help-bookmark-jump" function (:arguments ("bookmark")) nil [30438 30901])
-            ("help-mode" package nil nil [30904 30924]))          
-      :file "help-mode.el"
-      :pointmax 30953
-      :fsize 30968
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax '((close-paren 1134 . 1135) (symbol 1097 . 1114) (open-paren 1096 . 1097)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1223 1240])
-            ("help-mode" include nil nil [1241 1261])
-            ("radix-tree" include nil nil [1262 1283])
-            ("help-fns-describe-function-functions" variable nil nil [1285 1589])
-            ("help-definition-prefixes" variable nil nil [1605 2131])
-            ("help-definition-prefixes" function nil nil [2133 2688])
-            ("help--loaded-p" function (:arguments ("file")) nil [2690 3044])
-            ("help--load-prefixes" function (:arguments ("prefixes")) nil [3046 3636])
-            ("help--symbol-completion-table" function (:arguments ("string" "pred" "action")) nil [3638 4143])
-            ("describe-function-orig-buffer" variable nil nil [4145 4346])
-            ("describe-function" function
-               (:user-visible-flag t
-                :arguments ("function"))
-                nil [4363 6458])
-            ("help-C-file-name" function (:arguments ("subr-or-var" "kind")) nil [6851 7925])
-            ("help-downcase-arguments" variable nil nil [7927 8080])
-            ("help-highlight-arg" function (:arguments ("arg")) nil [8082 8386])
-            ("help-do-arg-highlight" function (:arguments ("doc" "args")) nil [8388 9309])
-            ("help-highlight-arguments" function (:arguments ("usage" "doc" "args")) nil [9311 10490])
-            ("find-lisp-object-file-name" function (:arguments ("object" "type")) nil [11130 15291])
-            ("help-fns--key-bindings" function (:arguments ("function")) nil [15293 17383])
-            ("help-fns--compiler-macro" function (:arguments ("function")) nil [17385 18286])
-            ("help-fns--signature" function (:arguments ("function" "doc" "real-def" "real-function" "buffer")) nil [18288 20839])
-            ("help-fns--parent-mode" function (:arguments ("function")) nil [20841 21419])
-            ("help-fns--obsolete" function (:arguments ("function")) nil [21421 22039])
-            ("help-fns--autoloaded-p" function (:arguments ("function" "file")) nil [22109 22631])
-            ("help-fns--interactive-only" function (:arguments ("function")) nil [22633 23753])
-            ("help-fns-short-filename" function (:arguments ("filename")) nil [23755 24166])
-            ("help-fns--analyze-function" function (:arguments ("function")) nil [24168 25951])
-            ("help-fns-function-description-header" function (:arguments ("function")) nil [25953 29375])
-            ("describe-function-1" function (:arguments ("function")) nil [29392 31590])
-            ("add-hook" code nil nil [31651 31720])
-            ("add-hook" code nil nil [31721 31798])
-            ("add-hook" code nil nil [31799 31871])
-            ("add-hook" code nil nil [31872 31947])
-            ("variable-at-point" function (:arguments ("any-symbol")) nil [31980 33017])
-            ("describe-variable-custom-version-info" function (:arguments ("variable")) nil [33019 33929])
-            ("describe-variable" function
-               (:user-visible-flag t
-                :arguments ("variable" "buffer" "frame"))
-                nil [33946 47121])
-            ("help-xref-stack-item" variable nil nil [47124 47153])
-            ("describe-symbol" function
-               (:user-visible-flag t
-                :arguments ("symbol" "buffer" "frame"))
-                nil [47170 50150])
-            ("describe-syntax" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [50167 50898])
-            ("help-describe-category-set" function (:arguments ("value")) nil [50900 51124])
-            ("describe-categories" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [51141 53454])
-            ("doc-file-to-man" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [53583 54598])
-            ("doc-file-to-info" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [54649 57628])
-            ("help-fns" package nil nil [57630 57649]))          
-      :file "help-fns.el"
-      :pointmax 57677
-      :fsize 57682
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("eldoc" include nil nil [1642 1658])
-            ("cl-lib" include nil nil [1678 1695])
-            ("hexl" customgroup (:user-visible-flag t) nil [1718 1812])
-            ("hexl-bits" variable (:default-value 16) nil [1814 2025])
-            ("hexl-program" variable (:default-value "hexl") nil [2027 2251])
-            ("hexl-iso" variable nil nil [2253 2412])
-            ("hexl-options" variable (:default-value (format "-hex %s" hexl-iso)) nil [2414 2773])
-            ("hexl-follow-ascii" variable (:default-value t) nil [2775 2930])
-            ("hexl-mode-hook" variable (:default-value (quote (hexl-follow-line hexl-activate-ruler))) nil [2932 3134])
-            ("hexl-address-region" variable
-               (:default-value (quote ((t (:inherit header-line))))
-                :type "face")
-                nil [3136 3263])
-            ("hexl-ascii-region" variable
-               (:default-value (quote ((t (:inherit header-line))))
-                :type "face")
-                nil [3265 3388])
-            ("hexl-max-address" variable nil nil [3390 3454])
-            ("hexl-mode-map" variable (:default-value (let ((map (make-keymap))) (define-key map [remap self-insert-command] (quote hexl-self-insert-command)) (define-key map "
" (quote hexl-self-insert-command)) (define-key map [left] (quote hexl-backward-char)) (define-key map [right] (quote hexl-forward-char)) (define-key map [up] (quote hexl-previous-line)) (define-key map [down] (quote hexl-next-line)) (define-key map [M-left] (quote hexl-backward-short)) (define-key map [27 left] (quote hexl-backward-short)) (define-key map [M-right] (quote hexl-forward-short)) (define-key map [27 right] (quote hexl-forward-short)) (define-key map [next] (quote hexl-scroll-up)) (define-key map [prior] (quote hexl-scroll-down)) (define-key map [home] (quote hexl-beginning-of-line)) (define-key map [end] (quote hexl-end-of-line)) (define-key map [C-home] (quote hexl-beginning-of-buffer)) (define-key map [C-end] (quote hexl-end-of-buffer)) (define-key map [deletechar] (quote undefined)) (define-key map [deleteline] (quote undefined)) (define-key map [insertline] (quote undefined)) (define-key map [S-delete] (quote undefined)) (define-key map "" (quote undefined)) (define-key map "" (quote hexl-beginning-of-line)) (define-key map "" (quote hexl-backward-char)) (define-key map "" (quote undefined)) (define-key map "" (quote hexl-end-of-line)) (define-key map "" (quote hexl-forward-char)) (if (not (memq (key-binding (char-to-string help-char)) (quote (help-command ehelp-command)))) (define-key map (char-to-string help-char) (quote undefined))) (define-key map "" (quote undefined)) (define-key map "" (quote hexl-next-line)) (define-key map "" (quote undefined)) (define-key map "" (quote hexl-previous-line)) (define-key map "" (quote hexl-quoted-insert)) (define-key map "" (quote undefined)) (define-key map "" (quote hexl-scroll-up)) (define-key map "" (quote undefined)) (define-key map "" (quote undefined)) (fset (quote hexl-ESC-prefix) (copy-keymap (quote ESC-prefix))) (define-key map "" (quote hexl-ESC-prefix)) (define-key map "" (quote hexl-beginning-of-512b-page)) (define-key map "" (quote hexl-backward-short)) (define-key map "" (quote hexl-insert-decimal-char)) (define-key map "" (quote hexl-end-of-512b-page)) (define-key map "" (quote hexl-forward-short)) (define-key map "	" (quote undefined)) (define-key map "
-" (quote undefined)) (define-key map "" (quote undefined)) (define-key map "" (quote hexl-insert-octal-char)) (define-key map "" (quote undefined)) (define-key map "" (quote undefined)) (define-key map "" (quote hexl-insert-hex-char)) (define-key map "b" (quote hexl-backward-word)) (define-key map "c" (quote undefined)) (define-key map "d" (quote undefined)) (define-key map "f" (quote hexl-forward-word)) (define-key map "g" (quote hexl-goto-hex-address)) (define-key map "i" (quote undefined)) (define-key map "j" (quote hexl-goto-address)) (define-key map "k" (quote undefined)) (define-key map "l" (quote undefined)) (define-key map "q" (quote undefined)) (define-key map "s" (quote undefined)) (define-key map "t" (quote undefined)) (define-key map "u" (quote undefined)) (define-key map "v" (quote hexl-scroll-down)) (define-key map "y" (quote undefined)) (define-key map "z" (quote undefined)) (define-key map "<" (quote hexl-beginning-of-buffer)) (define-key map ">" (quote hexl-end-of-buffer)) (fset (quote hexl-C-c-prefix) (copy-keymap mode-specific-map)) (define-key map "" (quote hexl-C-c-prefix)) (define-key map "" (quote hexl-mode-exit)) (fset (quote hexl-C-x-prefix) (copy-keymap (quote Control-X-prefix))) (define-key map "" (quote hexl-C-x-prefix)) (define-key map "[" (quote hexl-beginning-of-1k-page)) (define-key map "]" (quote hexl-end-of-1k-page)) (define-key map "" (quote undefined)) (define-key map "" (quote hexl-save-buffer)) (define-key map "" (quote undefined)) map)) nil [3456 7430])
-            ("ruler-mode" variable nil nil [7506 7525])
-            ("ruler-mode-ruler-function" variable nil nil [7526 7560])
-            ("hl-line-mode" variable nil nil [7561 7582])
-            ("hl-line-range-function" variable nil nil [7583 7614])
-            ("hl-line-face" variable nil nil [7615 7636])
-            ("hexl-mode--old-var-vals" variable nil nil [7692 7727])
-            ("make-variable-buffer-local" code nil nil [7728 7781])
-            ("hexl-ascii-overlay" variable nil nil [7783 7890])
-            ("make-variable-buffer-local" code nil nil [7891 7939])
-            ("hexl-font-lock-keywords" variable (:default-value (quote (("^\\([0-9a-f]+:\\).\\{40\\}  \\(.+$\\)" (1 (quote hexl-address-region) t t) (2 (quote hexl-ascii-region) t t))))) nil [7941 8171])
-            ("hexl-rulerize" function (:arguments ("string" "bits")) nil [8173 8436])
-            ("hexl-rulers" variable (:default-value (mapcar (lambda (bits) (cons bits (concat " 87654321  " (hexl-rulerize "00112233445566778899aabbccddeeff" bits) "  0123456789abcdef"))) (quote (8 16 32 64)))) nil [8438 8671])
-            ("put" code nil nil [8685 8722])
-            ("hexl-line-displen" function nil nil [8943 9071])
-            ("hexl-mode--minor-mode-p" function (:arguments ("var")) nil [9073 9150])
-            ("hexl-mode--setq-local" function (:arguments ("var" "val")) nil [9152 9787])
-            ("hexl-mode" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [9804 15699])
-            ("hexl-isearch-search-function" function nil nil [15702 16511])
-            ("hexl-in-save-buffer" variable nil nil [16513 16545])
-            ("hexl-save-buffer" function (:user-visible-flag t) nil [16547 17523])
-            ("hexl-find-file" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [17540 18082])
-            ("hexl-revert-buffer-function" function (:arguments ("_ignore-auto" "_noconfirm")) nil [18084 18882])
-            ("hexl-mode-exit" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [18884 20468])
-            ("hexl-maybe-dehexlify-buffer" function nil nil [20470 20913])
-            ("hexl-current-address" function
-               (:user-visible-flag t
-                :arguments ("validate"))
-                nil [20915 21726])
-            ("hexl-print-current-point-info" function nil nil [21728 21961])
-            ("hexl-ascii-start-column" function nil nil [21963 22090])
-            ("hexl-address-to-marker" function
-               (:user-visible-flag t
-                :arguments ("address"))
-                nil [22092 22501])
-            ("hexl-goto-address" function
-               (:user-visible-flag t
-                :arguments ("address"))
-                nil [22540 22829])
-            ("hexl-goto-hex-address" function
-               (:user-visible-flag t
-                :arguments ("hex-address"))
-                nil [22831 23069])
-            ("hexl-hex-string-to-integer" function
-               (:user-visible-flag t
-                :arguments ("hex-string"))
-                nil [23071 23420])
-            ("hexl-octal-string-to-integer" function
-               (:user-visible-flag t
-                :arguments ("octal-string"))
-                nil [23422 23789])
-            ("hexl-backward-char" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [23816 23986])
-            ("hexl-forward-char" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [23988 24157])
-            ("hexl-backward-short" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [24159 25573])
-            ("hexl-forward-short" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25575 25725])
-            ("hexl-backward-word" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25727 27139])
-            ("hexl-forward-word" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [27141 27288])
-            ("hexl-previous-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [27290 27528])
-            ("hexl-next-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [27530 28327])
-            ("hexl-beginning-of-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [28329 28599])
-            ("hexl-end-of-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [28601 28759])
-            ("hexl-beginning-of-line" function (:user-visible-flag t) nil [28761 28928])
-            ("hexl-end-of-line" function (:user-visible-flag t) nil [28930 29181])
-            ("hexl-scroll-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [29183 29446])
-            ("hexl-scroll-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [29448 30410])
-            ("hexl-beginning-of-1k-page" function (:user-visible-flag t) nil [30412 30561])
-            ("hexl-end-of-1k-page" function (:user-visible-flag t) nil [30563 30725])
-            ("hexl-beginning-of-512b-page" function (:user-visible-flag t) nil [30727 30882])
-            ("hexl-end-of-512b-page" function (:user-visible-flag t) nil [30884 31052])
-            ("hexl-quoted-insert" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [31054 31368])
-            ("hexl-options" function (:arguments ("test")) nil [31440 31952])
-            ("hexlify-buffer" function (:user-visible-flag t) nil [31969 33106])
-            ("dehexlify-buffer" function (:user-visible-flag t) nil [33108 33684])
-            ("hexl-char-after-point" function nil nil [33686 33832])
-            ("hexl-htoi" function (:arguments ("lh" "rh")) nil [33834 33981])
-            ("hexl-hex-char-to-integer" function (:arguments ("character")) nil [33983 34297])
-            ("hexl-oct-char-to-integer" function (:arguments ("character")) nil [34299 34530])
-            ("hexl-printable-character" function (:arguments ("ch")) nil [34532 34789])
-            ("hexl-insert-multibyte-char" function (:arguments ("ch" "num")) nil [34791 36415])
-            ("hexl-self-insert-command" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [36417 36758])
-            ("hexl-insert-char" function (:arguments ("ch" "num")) nil [36760 37841])
-            ("hexl-insert-hex-char" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [37862 38160])
-            ("hexl-insert-hex-string" function
-               (:user-visible-flag t
-                :arguments ("str" "arg"))
-                nil [38162 38995])
-            ("hexl-insert-decimal-char" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [38997 39293])
-            ("hexl-insert-octal-char" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [39295 39597])
-            ("hexl-follow-ascii" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [39599 40553])
-            ("hexl-activate-ruler" function nil nil [40555 40772])
-            ("hexl-follow-line" function nil nil [40774 41047])
-            ("hexl-highlight-line-range" function nil nil [41049 41329])
-            ("hexl-follow-ascii-find" function nil nil [41331 41604])
-            ("hexl-mode-ruler" function nil nil [41606 42538])
-            ("easy-menu-define" code nil nil [42559 43979])
-            ("hexl" package nil nil [43981 43996]))          
-      :file "hexl.el"
-      :pointmax 44020
-      :fsize 44019
-      :lastmodtime '(23525 29510 0 0)
-      :unmatched-syntax '((close-paren 1695 . 1696) (symbol 1660 . 1677) (open-paren 1659 . 1660)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("help-mode" include nil nil [966 986])
-            ("tutorial-warning-face" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [1016 1156])
-            ("tutorial--point-before-chkeys" variable nil nil [1158 1239])
-            ("make-variable-buffer-local" code nil nil [1240 1299])
-            ("tutorial--point-after-chkeys" variable nil nil [1301 1380])
-            ("make-variable-buffer-local" code nil nil [1381 1439])
-            ("tutorial--lang" variable nil nil [1441 1491])
-            ("make-variable-buffer-local" code nil nil [1492 1536])
-            ("tutorial--describe-nonstandard-key" function (:arguments ("value")) nil [1538 6432])
-            ("tutorial--sort-keys" function (:arguments ("left" "right")) nil [6434 7786])
-            ("tutorial--default-keys" variable
-               (:constant-flag t
-                :default-value (let* ((suspend-emacs (quote suspend-frame)) (default-keys (\` ((ESC-prefix [27]) (Control-X-prefix [24]) (mode-specific-command-prefix [3]) (save-buffers-kill-terminal [24 3]) (scroll-up-command [22]) (scroll-down-command [134217846]) (recenter-top-bottom [12]) (forward-char [6]) (backward-char [2]) (forward-word [134217830]) (backward-word [134217826]) (next-line [14]) (previous-line [16]) (move-beginning-of-line [1]) (move-end-of-line [5]) (backward-sentence [134217825]) (forward-sentence [134217829]) (newline "
") (beginning-of-buffer [134217788]) (end-of-buffer [134217790]) (universal-argument [21]) (keyboard-quit [7]) (downcase-region [24 12]) (delete-other-windows [24 49]) (delete-backward-char "") (delete-char [4]) (backward-kill-word [134217855]) (kill-word [134217828]) (kill-line [11]) (kill-sentence [134217835]) (set-mark-command [0]) (set-mark-command [67108896]) (kill-region [23]) (yank [25]) (yank-pop [134217849]) (undo [24 117]) (find-file [24 6]) (save-buffer [24 19]) (list-buffers [24 2]) (switch-to-buffer [24 98]) (save-some-buffers [24 115]) (execute-extended-command [134217848]) (describe-mode [8 109]) (set-fill-column [24 102]) (fill-paragraph [134217841]) (isearch-forward [19]) (isearch-backward [18]) (split-window-below [24 50]) (scroll-other-window [134217750]) (other-window [24 111]) (find-file-other-window [24 52 6]) (keyboard-escape-quit [27 27 27]) (describe-key-briefly [8 99]) (describe-key [8 107]) ((\, suspend-emacs) [26]))))) (sort default-keys (quote tutorial--sort-keys))))
-                nil [7788 11511])
-            ("tutorial--detailed-help" function (:arguments ("button")) nil [11513 14715])
-            ("tutorial--find-changed-keys" function (:arguments ("default-keys")) nil [14717 19407])
-            ("tutorial--key-description" function (:arguments ("key")) nil [19409 19616])
-            ("tutorial--display-changes" function nil nil [19618 23408])
-            ("tutorial--saved-dir" function nil nil [23410 23523])
-            ("tutorial--saved-file" function nil nil [23525 23847])
-            ("tutorial--remove-remarks" function nil nil [23849 24646])
-            ("tutorial--save-tutorial" function nil nil [24648 25208])
-            ("tutorial--save-tutorial-to" function (:arguments ("saved-file")) nil [25210 28218])
-            ("help-with-tutorial" function
-               (:user-visible-flag t
-                :arguments ("arg" "dont-ask-for-revert"))
-                nil [28236 35993])
-            ("lang-strings" variable
-               (:constant-flag t
-                :default-value (quote (("English" (tut-chgdkey . "%s has been rebound, but you can use %s instead") (tut-chgdkey2 . "More") (tut-chgdhead . "
- NOTICE: The main purpose of the Emacs tutorial is to teach you
- the most important standard Emacs commands (key bindings).
- However, your Emacs has been customized by changing some of
- these basic editing commands, so it doesn't correspond to the
- tutorial.  We have inserted colored notices where the altered
- commands have been introduced.") (tut-chgdhead2 . "More")))))
-                nil [36109 36989])
-            ("get-lang-string" function (:arguments ("lang" "stringid" "no-eng-fallback")) nil [36991 38058])
-            ("tutorial" package nil nil [38104 38123]))          
-      :file "tutorial.el"
-      :pointmax 38151
-      :fsize 38150
-      :lastmodtime '(23525 29520 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("read-file-local-variable" function (:arguments ("prompt")) nil [1155 1917])
-            ("read-file-local-variable-value" function (:arguments ("variable")) nil [1919 3571])
-            ("read-file-local-variable-mode" function nil nil [3573 4410])
-            ("modify-file-local-variable-message" function (:arguments ("variable" "value" "op")) nil [4412 5507])
-            ("modify-file-local-variable" function (:arguments ("variable" "value" "op" "interactive")) nil [5509 8837])
-            ("add-file-local-variable" function
-               (:user-visible-flag t
-                :arguments ("variable" "value" "interactive"))
-                nil [8854 9888])
-            ("delete-file-local-variable" function
-               (:user-visible-flag t
-                :arguments ("variable" "interactive"))
-                nil [9905 10198])
-            ("modify-file-local-variable-prop-line" function (:arguments ("variable" "value" "op" "interactive")) nil [10200 14651])
-            ("add-file-local-variable-prop-line" function
-               (:user-visible-flag t
-                :arguments ("variable" "value" "interactive"))
-                nil [14668 15295])
-            ("delete-file-local-variable-prop-line" function
-               (:user-visible-flag t
-                :arguments ("variable" "interactive"))
-                nil [15312 15617])
-            ("auto-insert" variable nil nil [15619 15639])
-            ("modify-dir-local-variable" function (:arguments ("mode" "variable" "value" "op")) nil [15662 19221])
-            ("add-dir-local-variable" function
-               (:user-visible-flag t
-                :arguments ("mode" "variable" "value"))
-                nil [19238 19646])
-            ("delete-dir-local-variable" function
-               (:user-visible-flag t
-                :arguments ("mode" "variable"))
-                nil [19663 19968])
-            ("copy-file-locals-to-dir-locals" function (:user-visible-flag t) nil [19985 20253])
-            ("copy-dir-locals-to-file-locals" function (:user-visible-flag t) nil [20270 20484])
-            ("copy-dir-locals-to-file-locals-prop-line" function (:user-visible-flag t) nil [20501 20723])
-            ("enable-connection-local-variables" variable (:default-value t) nil [20775 20879])
-            ("connection-local-variables-alist" variable nil nil [20881 21211])
-            ("make-variable-buffer-local" code nil nil [21212 21274])
-            ("setq" code nil nil [21275 21376])
-            ("connection-local-profile-alist" variable (:default-value (quote nil)) nil [21378 21751])
-            ("connection-local-criteria-alist" variable (:default-value (quote nil)) nil [21753 22297])
-            ("connection-local-normalize-criteria" function (:arguments ("criteria" "properties")) nil [22299 22710])
-            ("connection-local-get-profiles" function (:arguments ("criteria")) nil [22712 23299])
-            ("connection-local-set-profiles" function (:arguments ("criteria" "profiles")) nil [23316 24514])
-            ("connection-local-get-profile-variables" function (:arguments ("profile")) nil [24516 24688])
-            ("connection-local-set-profile-variables" function (:arguments ("profile" "variables")) nil [24705 25398])
-            ("hack-connection-local-variables" function (:arguments ("criteria")) nil [25400 26050])
-            ("hack-connection-local-variables-apply" function (:arguments ("criteria")) nil [26067 26435])
-            ("with-connection-local-profiles" function (:arguments ("profiles" "body")) nil [26452 27272])
-            ("files-x" package nil nil [27277 27295]))          
-      :file "files-x.el"
-      :pointmax 27322
-      :fsize 27321
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("help-at-pt" customgroup (:user-visible-flag t) nil [1956 2054])
-            ("help-at-pt-string" function (:arguments ("kbd")) nil [2071 2930])
-            ("help-at-pt-kbd-string" function nil nil [2947 3307])
-            ("display-local-help" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [3324 3929])
-            ("help-at-pt-timer" variable nil nil [3931 4224])
-            ("help-at-pt-timer-delay" variable (:default-value 1) nil [4226 5065])
-            ("help-at-pt-cancel-timer" function (:user-visible-flag t) nil [5082 5357])
-            ("help-at-pt-set-timer" function (:user-visible-flag t) nil [5374 5663])
-            ("help-at-pt-display-when-idle" variable (:default-value (quote never)) nil [5680 9344])
-            ("help-at-pt-maybe-display" function nil nil [9393 10042])
-            ("scan-buf-move-to-region" function (:arguments ("prop" "arg" "hook")) nil [10059 12673])
-            ("scan-buf-move-hook" variable (:default-value (quote (display-local-help))) nil [12762 12941])
-            ("scan-buf-next-region" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [12958 14027])
-            ("scan-buf-previous-region" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [14044 14479])
-            ("help-at-pt" package nil nil [14481 14502]))          
-      :file "help-at-pt.el"
-      :pointmax 14532
-      :fsize 14531
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [3772 3789])
-            ("faces" include nil nil [3791 3807])
-            ("custom" include nil nil [3888 3905])
-            ("font-lock" include nil nil [3935 3955])
-            ("cus-edit" include nil nil [3989 4008])
-            ("htmlfontify-loaddefs" include nil nil [4010 4041])
-            ("htmlfontify-version" variable
-               (:constant-flag t
-                :default-value 0.21)
-                nil [4043 4078])
-            ("hfy-meta-tags" variable
-               (:constant-flag t
-                :default-value (format "<meta name=\"generator\" content=\"emacs %s; htmlfontify %0.2f\" />" emacs-version htmlfontify-version))
-                nil [4080 4289])
-            ("htmlfontify-manual" variable
-               (:constant-flag t
-                :default-value "Htmlfontify Manual")
-                nil [4291 6158])
-            ("htmlfontify" customgroup (:user-visible-flag t) nil [6160 6406])
-            ("hfy-page-header" variable (:default-value (quote hfy-default-header)) nil [6408 7037])
-            ("hfy-split-index" variable nil nil [7039 7377])
-            ("hfy-page-footer" variable (:default-value (quote hfy-default-footer)) nil [7379 7593])
-            ("hfy-extn" variable (:default-value ".html") nil [7595 7727])
-            ("hfy-src-doc-link-style" variable (:default-value "text-decoration: underline;") nil [7729 7938])
-            ("hfy-src-doc-link-unstyle" variable (:default-value " text-decoration: none;") nil [7940 8153])
-            ("hfy-link-extn" variable nil nil [8155 8494])
-            ("hfy-link-style-fun" variable (:default-value (quote hfy-link-style-string)) nil [8496 8988])
-            ("hfy-index-file" variable (:default-value "hfy-index") nil [8990 9198])
-            ("hfy-instance-file" variable (:default-value "hfy-instance") nil [9200 9412])
-            ("hfy-html-quote-regex" variable (:default-value "\\([<\"&>]\\)") nil [9414 9698])
-            ("define-obsolete-variable-alias" code nil nil [9700 9786])
-            ("hfy-init-kludge-hook" variable (:default-value (quote (hfy-kludge-cperl-mode))) nil [9787 10100])
-            ("define-obsolete-variable-alias" code nil nil [10102 10182])
-            ("hfy-post-html-hook" variable nil nil [10183 10466])
-            ("hfy-default-face-def" variable nil nil [10468 10921])
-            ("hfy-etag-regex" variable (:default-value (concat ".*" "" "\\([^
-]+\\)" "" "\\([0-9]+\\)" "," "\\([0-9]+\\)$" "\\|" ".*[0-9]+,[0-9]+$")) nil [10923 11435])
-            ("hfy-html-quote-map" variable (:default-value (quote (("\"" "&quot;") ("<" "&lt;") ("&" "&amp;") (">" "&gt;")))) nil [11437 11785])
-            ("hfy-e2x-etags-cmd" variable
-               (:constant-flag t
-                :default-value "for src in `find . -type f`;
-do
-  ETAGS=%s;
-  case ${src} in
-    *.ad[absm]|*.[CFHMSacfhlmpsty]|*.def|*.in[cs]|*.s[as]|*.src|*.cc|\\
-    *.hh|*.[chy]++|*.[ch]pp|*.[chy]xx|*.pdb|*.[ch]s|*.[Cc][Oo][Bb]|\\
-    *.[eh]rl|*.f90|*.for|*.java|*.[cem]l|*.clisp|*.lisp|*.[Ll][Ss][Pp]|\\
-    [Mm]akefile*|*.pas|*.[Pp][LlMm]|*.psw|*.lm|*.pc|*.prolog|*.oak|\\
-    *.p[sy]|*.sch|*.scheme|*.[Ss][Cc][Mm]|*.[Ss][Mm]|*.bib|*.cl[os]|\\
-    *.ltx|*.sty|*.TeX|*.tex|*.texi|*.texinfo|*.txi|*.x[bp]m|*.yy|\\
-    *.[Ss][Qq][Ll])
-          ${ETAGS} -o- ${src};
-          ;;
-      *)
-          FTYPE=`file ${src}`;
-          case ${FTYPE} in
-              *script*text*)
-                  ${ETAGS} -o- ${src};
-                  ;;
-              *text*)
-                  SHEBANG=`head -n1 ${src} | grep '#!' -c`;
-                  if [ ${SHEBANG} -eq 1 ];
-                  then
-                      ${ETAGS} -o- ${src};
-                  fi;
-                  ;;
-          esac;
-          ;;
-  esac;
-done;")
-                nil [11786 12799])
-            ("hfy-etags-cmd-alist-default" variable
-               (:constant-flag t
-                :default-value (\` (("emacs etags" \, hfy-e2x-etags-cmd) ("exuberant ctags" . "%s -R -f -"))))
-                nil [12801 12927])
-            ("hfy-etags-cmd-alist" variable (:default-value hfy-etags-cmd-alist-default) nil [12929 13237])
-            ("hfy-etags-bin" variable (:default-value "etags") nil [13239 13513])
-            ("hfy-shell-file-name" variable (:default-value "/bin/sh") nil [13515 13695])
-            ("hfy-ignored-properties" variable (:default-value (quote (read-only intangible modification-hooks insert-in-front-hooks insert-behind-hooks point-entered point-left))) nil [13697 14214])
-            ("hfy-which-etags" function nil nil [14216 14692])
-            ("hfy-etags-cmd" variable (:default-value (cdr (assoc (hfy-which-etags) hfy-etags-cmd-alist))) nil [14694 15678])
-            ("hfy-istext-command" variable (:default-value "file %s | sed -e 's@^[^:]*:[ 	]*@@'") nil [15680 16036])
-            ("hfy-find-cmd" variable (:default-value "find . -type f \\! -name \\*~ \\! -name \\*.flc \\! -path \\*/CVS/\\*") nil [16038 16273])
-            ("hfy-display-class" variable nil nil [16275 17873])
-            ("hfy-optimizations" variable (:default-value (list (quote keep-overlays))) nil [17875 20113])
-            ("define-obsolete-variable-alias" code nil nil [20114 20191])
-            ("hfy-tags-cache" variable nil nil [20193 20531])
-            ("hfy-tags-sortl" variable nil nil [20533 20716])
-            ("hfy-tags-rmap" variable nil nil [20718 21016])
-            ("hfy-style-assoc" variable (:default-value (quote please-ignore-this-line)) nil [21018 21993])
-            ("hfy-sheet-assoc" variable (:default-value (quote please-ignore-this-line)) nil [21995 22272])
-            ("hfy-facemap-assoc" variable (:default-value (quote please-ignore-this-line)) nil [22274 23427])
-            ("hfy-tmpfont-stack" variable nil nil [23429 23514])
-            ("hfy-hex-regex" variable
-               (:constant-flag t
-                :default-value "[0-9A-Fa-f]")
-                nil [23516 23554])
-            ("hfy-triplet-regex" variable
-               (:constant-flag t
-                :default-value (concat "\\(" hfy-hex-regex hfy-hex-regex "\\)" "\\(" hfy-hex-regex hfy-hex-regex "\\)" "\\(" hfy-hex-regex hfy-hex-regex "\\)"))
-                nil [23556 23724])
-            ("hfy-interq" function (:arguments ("set-a" "set-b")) nil [23726 24010])
-            ("hfy-colour-vals" function (:arguments ("colour")) nil [24012 24697])
-            ("hfy-cperl-mode-kludged-p" variable nil nil [24699 24736])
-            ("hfy-kludge-cperl-mode" function nil nil [24738 25188])
-            ("hfy-opt" function (:arguments ("symbol")) nil [25190 25274])
-            ("hfy-default-header" function (:arguments ("file" "style")) nil [25276 29353])
-            ("hfy-default-footer" function (:arguments ("_file")) nil [29355 29523])
-            ("hfy-link-style-string" function (:arguments ("style-string")) nil [29525 30260])
-            ("hfy-triplet" function (:arguments ("colour")) nil [30355 31379])
-            ("hfy-family" function (:arguments ("family")) nil [31381 31444])
-            ("hfy-bgcol" function (:arguments ("colour")) nil [31445 31522])
-            ("hfy-colour" function (:arguments ("colour")) nil [31523 31600])
-            ("hfy-width" function (:arguments ("width")) nil [31601 31678])
-            ("hfy-font-zoom" variable (:default-value 1.05) nil [31680 31784])
-            ("hfy-size" function (:arguments ("height")) nil [31786 32386])
-            ("hfy-slant" function (:arguments ("slant")) nil [32388 32905])
-            ("hfy-weight" function (:arguments ("weight")) nil [32907 33649])
-            ("hfy-box-to-border-assoc" function (:arguments ("spec")) nil [33651 33979])
-            ("hfy-box-to-style" function (:arguments ("spec")) nil [33981 34509])
-            ("hfy-box" function (:arguments ("box")) nil [34511 34852])
-            ("hfy-decor" function (:arguments ("tag" "_val")) nil [34854 35308])
-            ("hfy-invisible" function (:arguments ("_val")) nil [35310 35471])
-            ("hfy-combined-face-spec" function (:arguments ("face")) nil [35473 35832])
-            ("hfy-face-attr-for-class" function (:arguments ("face" "class")) nil [35834 40227])
-            ("hfy-face-to-style-i" function (:arguments ("fn")) nil [40838 43099])
-            ("hfy-size-to-int" function (:arguments ("spec")) nil [43101 43630])
-            ("hfy-flatten-style" function (:arguments ("style")) nil [43831 44645])
-            ("hfy-face-resolve-face" function (:arguments ("fn")) nil [44647 45150])
-            ("hfy-face-to-style" function (:arguments ("fn")) nil [45153 46058])
-            ("hfy-face-or-def-to-name" function (:arguments ("fn")) nil [46281 47096])
-            ("hfy-css-name" function (:arguments ("fn")) nil [47098 47685])
-            ("hfy-face-to-css-default" function (:arguments ("fn")) nil [47773 48316])
-            ("hfy-face-to-css" variable (:default-value (quote hfy-face-to-css-default)) nil [48318 48701])
-            ("defalias" code nil nil [48703 49019])
-            ("hfy-find-invisible-ranges" function nil nil [49021 49836])
-            ("hfy-invisible-name" function (:arguments ("point" "map")) nil [49838 50321])
-            ("hfy-face-at" function (:arguments ("p")) nil [50694 57058])
-            ("hfy-overlay-props-at" function (:arguments ("p")) nil [57060 57241])
-            ("hfy-compile-stylesheet" function nil nil [57321 58266])
-            ("hfy-fontified-p" function nil nil [58268 59151])
-            ("hfy-merge-adjacent-spans" function (:arguments ("face-map")) nil [59399 61173])
-            ("hfy-compile-face-map" function nil nil [61467 62757])
-            ("hfy-buffer" function nil nil [62759 63498])
-            ("hfy-lookup" function (:arguments ("face" "style")) nil [63500 63605])
-            ("hfy-link-style" function (:arguments ("style-string")) nil [63607 63864])
-            ("hfy-sprintf-stylesheet" function (:arguments ("css" "file")) nil [63866 64611])
-            ("hfy-html-enkludge-buffer" function nil nil [64737 65104])
-            ("hfy-html-quote" function (:arguments ("char-string")) nil [65136 65339])
-            ("hfy-html-dekludge-buffer" function nil nil [65636 66091])
-            ("hfy-save-buffer-state" function (:arguments ("varlist" "body")) nil [66123 66889])
-            ("hfy-mark-trailing-whitespace" function nil nil [66891 67356])
-            ("hfy-unmark-trailing-whitespace" function nil nil [67358 67637])
-            ("hfy-begin-span" function (:arguments ("style" "text-block" "text-id" "text-begins-block-p")) nil [67639 68108])
-            ("hfy-end-span" function nil nil [68110 68267])
-            ("hfy-begin-span-handler" variable (:default-value (quote hfy-begin-span)) nil [68269 69403])
-            ("hfy-end-span-handler" variable (:default-value (quote hfy-end-span)) nil [69405 69638])
-            ("hfy-fontify-buffer" function (:arguments ("srcdir" "file")) nil [69640 77422])
-            ("htmlfontify-string" function (:arguments ("string")) nil [77424 77904])
-            ("hfy-force-fontification" function nil nil [77906 78897])
-            ("htmlfontify-buffer" function
-               (:user-visible-flag t
-                :arguments ("srcdir" "file"))
-                nil [78914 80186])
-            ("hfy-list-files" function (:arguments ("directory")) nil [80214 80611])
-            ("hfy-dirname" function (:arguments ("file")) nil [80771 81153])
-            ("hfy-make-directory" function (:arguments ("dir")) nil [81190 81393])
-            ("hfy-text-p" function (:arguments ("srcdir" "file")) nil [81395 81652])
-            ("hfy-copy-and-fontify-file" function (:arguments ("srcdir" "dstdir" "file")) nil [81791 83198])
-            ("hfy-tags-for-file" function (:arguments ("cache-hash" "file")) nil [83234 83610])
-            ("hfy-mark-tag-names" function (:arguments ("srcdir" "file")) nil [83661 84547])
-            ("hfy-relstub" function (:arguments ("file" "start")) nil [84549 84959])
-            ("hfy-href-stub" function (:arguments ("this-file" "def-files" "tag")) nil [84961 85921])
-            ("hfy-href" function (:arguments ("this-file" "def-files" "tag" "tag-map")) nil [85923 86526])
-            ("hfy-word-regex" function (:arguments ("string")) nil [86528 86800])
-            ("hfy-mark-tag-hrefs" function (:arguments ("srcdir" "file")) nil [86899 90685])
-            ("hfy-shell" function nil nil [90687 90917])
-            ("hfy-load-tags-cache" function (:arguments ("srcdir")) nil [91085 91531])
-            ("hfy-parse-tags-buffer" function (:arguments ("srcdir" "buffer")) nil [91895 94470])
-            ("hfy-prepare-index-i" function (:arguments ("srcdir" "dstdir" "filename" "stub" "map")) nil [94472 96917])
-            ("hfy-prepare-index" function (:arguments ("srcdir" "dstdir")) nil [96919 98032])
-            ("hfy-prepare-tag-map" function (:arguments ("srcdir" "dstdir")) nil [98034 99530])
-            ("hfy-subtract-maps" function (:arguments ("srcdir")) nil [99532 100354])
-            ("htmlfontify-run-etags" function
-               (:user-visible-flag t
-                :arguments ("srcdir"))
-                nil [100356 100555])
-            ("hfy-save-kill-buffers" function (:arguments ("buffer-list" "dstdir")) nil [100701 100900])
-            ("htmlfontify-copy-and-link-dir" function
-               (:user-visible-flag t
-                :arguments ("srcdir" "dstdir" "f-ext" "l-ext"))
-                nil [100917 102216])
-            ("hfy-initfile" function nil nil [102252 102444])
-            ("defalias" code nil nil [103247 103280])
-            ("hfy-save-initvar" function (:arguments ("sym")) nil [103282 103395])
-            ("htmlfontify-save-initfile" function (:user-visible-flag t) nil [103397 104180])
-            ("htmlfontify-load-initfile" function (:user-visible-flag t) nil [104182 104352])
-            ("htmlfontify" package nil nil [104354 104376]))          
-      :file "htmlfontify.el"
-      :pointmax 104407
-      :fsize 104413
-      :lastmodtime '(23525 29510 0 0)
-      :unmatched-syntax '((close-paren 3789 . 3790) (symbol 3754 . 3771) (open-paren 3753 . 3754)))
-    (semanticdb-table "semanticdb-table"
-      :file "htmlfontify-loaddefs.el"
-      :fsize 812
-      :lastmodtime '(23525 29510 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("comint" include nil nil [9098 9115])
-            ("hippie-expand" customgroup (:user-visible-flag t) nil [9117 9340])
-            ("he-num" variable (:default-value -1) nil [9342 9360])
-            ("he-string-beg" variable (:default-value (make-marker)) nil [9362 9398])
-            ("he-string-end" variable (:default-value (make-marker)) nil [9400 9436])
-            ("he-search-string" variable nil nil [9438 9466])
-            ("he-expand-list" variable nil nil [9468 9494])
-            ("he-tried-table" variable nil nil [9496 9522])
-            ("he-search-loc" variable (:default-value (make-marker)) nil [9524 9560])
-            ("he-search-loc2" variable nil nil [9562 9588])
-            ("he-search-bw" variable nil nil [9590 9614])
-            ("he-search-bufs" variable nil nil [9616 9642])
-            ("he-searched-n-bufs" variable nil nil [9644 9674])
-            ("he-search-window" variable nil nil [9676 9704])
-            ("hippie-expand-try-functions-list" variable (:default-value (quote (try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol))) nil [9771 10334])
-            ("hippie-expand-verbose" variable (:default-value t) nil [10336 10482])
-            ("hippie-expand-dabbrev-skip-space" variable nil nil [10484 10647])
-            ("hippie-expand-dabbrev-as-symbol" variable (:default-value t) nil [10649 10812])
-            ("hippie-expand-no-restriction" variable (:default-value t) nil [10814 10964])
-            ("hippie-expand-max-buffers" variable nil nil [10966 11185])
-            ("hippie-expand-ignore-buffers" variable (:default-value (quote ("^ \\*.*\\*$" dired-mode))) nil [11187 11496])
-            ("hippie-expand-only-buffers" variable nil nil [11498 11870])
-            ("hippie-expand" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [11887 13494])
-            ("he-init-string" function (:arguments ("beg" "end")) nil [13558 13723])
-            ("he-reset-string" function nil nil [13781 13966])
-            ("he-substitute-string" function (:arguments ("str" "trans-case")) nil [14243 14658])
-            ("he-capitalize-first" function (:arguments ("str")) nil [14660 14880])
-            ("he-ordinary-case-p" function (:arguments ("str")) nil [14882 15066])
-            ("he-transfer-case" function (:arguments ("from-str" "to-str")) nil [15068 15550])
-            ("he-string-member" function (:arguments ("str" "lst" "trans-case")) nil [15655 15867])
-            ("he-buffer-member" function (:arguments ("lst")) nil [16010 16216])
-            ("make-hippie-expand-function" function (:arguments ("try-list" "verbose")) nil [16782 17346])
-            ("try-complete-file-name" function (:arguments ("old")) nil [17409 18778])
-            ("try-complete-file-name-partially" function (:arguments ("old")) nil [18780 19874])
-            ("he-file-name-chars" variable (:default-value (cond ((memq system-type (quote (ms-dos windows-nt cygwin))) "-a-zA-Z0-9_/.,~^#$+=:\\\\") (t "-a-zA-Z0-9_/.,~^#$+="))) nil [19876 20126])
-            ("he-file-name-beg" function nil nil [20128 20338])
-            ("he-concat-directory-file-name" function (:arguments ("dir-part" "name-part")) nil [20436 20889])
-            ("try-complete-lisp-symbol" function (:arguments ("old")) nil [20891 21960])
-            ("try-complete-lisp-symbol-partially" function (:arguments ("old")) nil [21962 22824])
-            ("he-lisp-symbol-beg" function nil nil [22826 22918])
-            ("try-expand-line" function (:arguments ("old")) nil [22920 24320])
-            ("try-expand-line-all-buffers" function (:arguments ("old")) nil [24322 25073])
-            ("he--all-buffers" function (:arguments ("old" "beg-function" "search-function")) nil [25075 26792])
-            ("he-line-search" function (:arguments ("str" "strip-prompt" "reverse")) nil [26794 27297])
-            ("he-line-beg" function (:arguments ("strip-prompt")) nil [27299 27492])
-            ("he-line-search-regexp" function (:arguments ("pat" "strip-prompt")) nil [27494 27764])
-            ("try-expand-list" function (:arguments ("old")) nil [27766 28976])
-            ("try-expand-list-all-buffers" function (:arguments ("old")) nil [28978 29346])
-            ("he-list-search" function (:arguments ("str" "reverse")) nil [29348 30028])
-            ("he-list-beg" function nil nil [30030 30146])
-            ("try-expand-all-abbrevs" function (:arguments ("old")) nil [30148 31221])
-            ("try-expand-dabbrev" function (:arguments ("old")) nil [31223 32460])
-            ("try-expand-dabbrev-all-buffers" function (:arguments ("old")) nil [32462 32839])
-            ("try-expand-dabbrev-visible" function (:arguments ("old")) nil [32934 34816])
-            ("he-dabbrev-search" function (:arguments ("pattern" "reverse" "limit")) nil [34818 35740])
-            ("he-dabbrev-beg" function nil nil [35742 36004])
-            ("try-expand-dabbrev-from-kill" function (:arguments ("old")) nil [36006 36750])
-            ("he-dabbrev-kill-search" function (:arguments ("pattern")) nil [36752 37924])
-            ("try-expand-whole-kill" function (:arguments ("old")) nil [37926 38785])
-            ("he-whole-kill-search" function (:arguments ("str")) nil [38787 39907])
-            ("he-kill-beg" function nil nil [39909 40070])
-            ("hippie-exp" package nil nil [40073 40094]))          
-      :file "hippie-exp.el"
-      :pointmax 40124
-      :fsize 40123
-      :lastmodtime '(23525 29510 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("url-parse" include nil nil [4060 4080])
-            ("thingatpt" include nil nil [4081 4101])
-            ("define-obsolete-variable-alias" code nil nil [4103 4171])
-            ("ffap" customgroup (:user-visible-flag t) nil [4173 4363])
-            ("ffap-symbol-value" function (:arguments ("sym" "default")) nil [4518 4678])
-            ("ffap-shell-prompt-regexp" variable (:default-value "[$%><]*") nil [4680 5142])
-            ("ffap-ftp-regexp" variable (:default-value "\\`/[^/:]+:") nil [5144 5418])
-            ("ffap-url-unwrap-local" variable (:default-value t) nil [5420 5710])
-            ("ffap-url-unwrap-remote" variable (:default-value (quote ("ftp"))) nil [5712 6025])
-            ("ffap-lax-url" variable (:default-value t) nil [6027 6380])
-            ("ffap-ftp-default-user" variable (:default-value "anonymous") nil [6414 6668])
-            ("ffap-rfs-regexp" variable (:default-value "\\`/\\(afs\\|net\\)/.") nil [6670 6949])
-            ("ffap-url-regexp" variable (:default-value (concat "\\(" "news\\(post\\)?:\\|mailto:\\|file:" "\\|" "\\(ftp\\|https?\\|telnet\\|gopher\\|www\\|wais\\)://" "\\)")) nil [6951 7251])
-            ("ffap-foo-at-bar-prefix" variable (:default-value "mailto") nil [7253 7559])
-            ("ffap-max-region-length" variable (:default-value 1024) nil [7561 7733])
-            ("ffap-dired-wildcards" variable (:default-value "[*?][^/]*\\'") nil [8080 8902])
-            ("ffap-pass-wildcards-to-dired" variable nil nil [8904 9053])
-            ("ffap-newfile-prompt" variable nil nil [9055 9314])
-            ("ffap-require-prefix" variable nil nil [9316 9583])
-            ("ffap-file-finder" variable (:default-value (quote find-file)) nil [9585 9731])
-            ("ffap-directory-finder" variable (:default-value (quote dired)) nil [9733 9881])
-            ("ffap-url-fetcher" variable (:default-value (quote browse-url)) nil [9883 10106])
-            ("ffap-next-regexp" variable (:default-value "[/:.~[:alpha:]]/\\|@[[:alpha:]][-[:alnum:]]*\\.") nil [10108 10579])
-            ("dired-at-point-require-prefix" variable nil nil [10581 10833])
-            ("ffap-mouse-event" function nil nil [11063 11175])
-            ("ffap-event-buffer" function (:arguments ("event")) nil [11176 11253])
-            ("ffap-next-guess" variable nil nil [11505 11579])
-            ("ffap-string-at-point-region" variable (:default-value (quote (1 1))) nil [11581 11705])
-            ("ffap-next-guess" function (:arguments ("back" "lim")) nil [11707 12416])
-            ("ffap-next" function
-               (:user-visible-flag t
-                :arguments ("back" "wrap"))
-                nil [12433 13378])
-            ("ffap-next-url" function
-               (:user-visible-flag t
-                :arguments ("back" "wrap"))
-                nil [13380 13649])
-            ("ffap-machine-p-local" variable (:default-value (quote reject)) nil [13880 14155])
-            ("ffap-machine-p-known" variable (:default-value (quote ping)) nil [14156 14483])
-            ("ffap-machine-p-unknown" variable (:default-value (quote reject)) nil [14484 14790])
-            ("ffap-what-domain" function (:arguments ("domain")) nil [14792 15104])
-            ("ffap-machine-p" function (:arguments ("host" "service" "quiet" "strategy")) nil [15106 17946])
-            ("ffap-replace-file-component" function (:arguments ("fullname" "name")) nil [17982 18342])
-            ("ffap-file-suffix" function (:arguments ("file")) nil [18409 18589])
-            ("ffap-compression-suffixes" variable (:default-value (quote (".gz" ".Z"))) nil [18591 18716])
-            ("ffap-file-exists-string" function (:arguments ("file" "nomodify")) nil [18718 19809])
-            ("ffap-file-remote-p" function (:arguments ("filename")) nil [19811 20567])
-            ("ffap-machine-at-point" function nil nil [20569 20742])
-            ("ffap-host-to-filename" function (:arguments ("host")) nil [20744 21254])
-            ("ffap-fixup-machine" function (:arguments ("mach")) nil [21256 21735])
-            ("defvaralias" code nil nil [21737 21806])
-            ("defvaralias" code nil nil [21807 21875])
-            ("defalias" code nil nil [21876 21932])
-            ("ffap-url-p" function (:arguments ("string")) nil [21934 22237])
-            ("ffap-url-unwrap-local" function (:arguments ("url")) nil [22306 22823])
-            ("ffap-url-unwrap-remote" function (:arguments ("url")) nil [22825 23500])
-            ("ffap-fixup-url" function (:arguments ("url")) nil [23502 23756])
-            ("ffap-list-env" function (:arguments ("env" "empty")) nil [24273 25426])
-            ("ffap-reduce-path" function (:arguments ("path")) nil [25428 25773])
-            ("ffap-all-subdirs" function (:arguments ("dir" "depth")) nil [25775 26141])
-            ("ffap-all-subdirs-loop" function (:arguments ("dir" "depth")) nil [26143 26506])
-            ("ffap-kpathsea-depth" variable (:default-value 1) nil [26508 26666])
-            ("ffap-kpathsea-expand-path" function (:arguments ("path")) nil [26668 27161])
-            ("ffap-locate-file" function (:arguments ("file" "nosuffix" "path")) nil [27163 28486])
-            ("ffap-alist" variable (:default-value (quote (("" . ffap-completable) ("\\.info\\'" . ffap-info) ("\\`info/" . ffap-info-2) ("\\`[-[:lower:]]+\\'" . ffap-info-3) ("\\.elc?\\'" . ffap-el) (emacs-lisp-mode . ffap-el-mode) (finder-mode . ffap-el-mode) (help-mode . ffap-el-mode) (c++-mode . ffap-c++-mode) (cc-mode . ffap-c-mode) ("\\.\\([chCH]\\|cc\\|hh\\)\\'" . ffap-c-mode) (fortran-mode . ffap-fortran-mode) ("\\.[fF]\\'" . ffap-fortran-mode) (tex-mode . ffap-tex-mode) (latex-mode . ffap-latex-mode) ("\\.\\(tex\\|sty\\|doc\\|cls\\)\\'" . ffap-tex) ("\\.bib\\'" . ffap-bib) ("\\`\\." . ffap-home) ("\\`~/" . ffap-lcd) ("\\`[Rr][Ff][Cc][-#]?\\([0-9]+\\)" . ffap-rfc) (dired-mode . ffap-dired)))) nil [28789 30811])
-            ("put" code nil nil [30813 30854])
-            ("ffap-completable" function (:arguments ("name")) nil [31408 31602])
-            ("ffap-home" function (:arguments ("name")) nil [31604 31661])
-            ("ffap-info" function (:arguments ("name")) nil [31663 31843])
-            ("ffap-info-2" function (:arguments ("name")) nil [31845 31902])
-            ("ffap-info-3" function (:arguments ("name")) nil [31904 32053])
-            ("ffap-el" function (:arguments ("name")) nil [32055 32113])
-            ("ffap-el-mode" function (:arguments ("name")) nil [32115 32368])
-            ("ffap-c-path" variable (:default-value (let ((arch (with-temp-buffer (when (eq 0 (ignore-errors (call-process "gcc" nil (quote (t nil)) nil "-print-multiarch"))) (goto-char (point-min)) (buffer-substring (point) (line-end-position))))) (base (quote ("/usr/include" "/usr/local/include")))) (if (zerop (length arch)) base (append base (list (expand-file-name arch "/usr/include")))))) nil [32613 33170])
-            ("ffap-c-mode" function (:arguments ("name")) nil [33172 33238])
-            ("ffap-c++-path" variable (:default-value (let ((c++-include-dir (with-temp-buffer (when (eq 0 (ignore-errors (call-process "g++" nil t nil "-v"))) (goto-char (point-min)) (if (re-search-forward "--with-gxx-include-dir=\\([^[:space:]]+\\)" nil (quote noerror)) (match-string 1) (when (re-search-forward "gcc version \\([[:digit:]]+.[[:digit:]]+.[[:digit:]]+\\)" nil (quote noerror)) (expand-file-name (match-string 1) "/usr/include/c++/"))))))) (if c++-include-dir (cons c++-include-dir ffap-c-path) ffap-c-path))) nil [33240 34176])
-            ("ffap-c++-mode" function (:arguments ("name")) nil [34178 34248])
-            ("ffap-fortran-path" variable (:default-value (quote ("../include" "/usr/include"))) nil [34250 34307])
-            ("ffap-fortran-mode" function (:arguments ("name")) nil [34309 34387])
-            ("ffap-tex-path" variable (:default-value t) nil [34389 34551])
-            ("ffap-latex-guess-rules" variable (:default-value (quote (("" . ".sty") ("" . ".cls") ("" . ".ltx") ("" . ".tex") ("" . "") ("beamertheme" . ".sty") ("beamercolortheme" . ".sty") ("beamerfonttheme" . ".sty") ("beamerinnertheme" . ".sty") ("beameroutertheme" . ".sty") ("" . ".ldf")))) nil [34553 35443])
-            ("ffap-tex-init" function nil nil [35445 35950])
-            ("ffap-tex-mode" function (:arguments ("name")) nil [35952 36051])
-            ("ffap-latex-mode" function (:arguments ("name")) nil [36053 38825])
-            ("ffap-tex" function (:arguments ("name")) nil [38827 38910])
-            ("ffap-bib-path" variable (:default-value (ffap-list-env "BIBINPUTS" (ffap-reduce-path (quote ("/usr/local/lib/tex/macros/bib" "/usr/lib/texmf/bibtex/bib"))))) nil [38912 39134])
-            ("ffap-bib" function (:arguments ("name")) nil [39136 39201])
-            ("ffap-dired" function (:arguments ("name")) nil [39203 39625])
-            ("ffap-lcd" function (:arguments ("name")) nil [39671 40315])
-            ("ffap-rfc-path" variable (:default-value (concat (ffap-host-to-filename "ftp.rfc-editor.org") "/in-notes/rfc%s.txt")) nil [40317 40682])
-            ("ffap-rfc-directories" variable nil nil [40684 40893])
-            ("ffap-rfc" function (:arguments ("name")) nil [40895 41067])
-            ("ffap-string-at-point-mode-alist" variable (:default-value (quote ((file "--:\\\\${}+<>@-Z_[:alpha:]~*?" "<@" "@>;.,!:") (url "--:=&?$+@-Z_[:alpha:]~#,%;*()!'" "^[0-9a-zA-Z]" ":;.,!?") (nocolon "--9$+<>@-Z_[:alpha:]~" "<@" "@>;.,!?") (machine "-[:alnum:]." "" ".") (math-mode ",-:$+<>@-Z_[:lower:]~`" "<" "@>;.,!?`:") (latex-mode "--:\\\\$+<>@-Z_[:alpha:]~*?" "<@" "@>;.,!:") (tex-mode "--:\\\\$+<>@-Z_[:alpha:]~*?" "<@" "@>;.,!:")))) nil [41096 42357])
-            ("ffap-string-at-point" variable nil nil [42359 42517])
-            ("ffap-string-at-point" function (:arguments ("mode")) nil [42519 45379])
-            ("ffap-string-around" function nil nil [45381 45836])
-            ("ffap-copy-string-as-kill" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [45838 46263])
-            ("declare-function" code nil nil [46278 46342])
-            ("ffap-url-at-point" function nil nil [46344 47307])
-            ("ffap-gopher-regexp" variable (:default-value "\\<\\(Type\\|Name\\|Path\\|Host\\|Port\\) *= *") nil [47309 47484])
-            ("ffap--gopher-var-on-line" function nil nil [47486 47936])
-            ("ffap-gopher-at-point" function nil nil [47938 49250])
-            ("ffap-ftp-sans-slash-regexp" variable (:default-value (and ffap-ftp-regexp "\\`\\([^:@]+@[^:@]+:\\|[^@.:]+\\.[^@:]+:\\|[^:]+:[~/]\\)\\([^:]\\|\\'\\)")) nil [49252 49691])
-            ("ffap-file-at-point" function nil nil [49693 54605])
-            ("ffap-read-file-or-url" function (:arguments ("prompt" "guess")) nil [54973 56687])
-            ("ffap-read-url-internal" function (:arguments ("string" "pred" "action")) nil [56689 57165])
-            ("ffap-read-file-or-url-internal" function (:arguments ("string" "pred" "action")) nil [57167 57391])
-            ("ffap-highlight" variable (:default-value t) nil [57669 57756])
-            ("ffap" variable
-               (:default-value (quote ((t :inherit highlight)))
-                :type "face")
-                nil [57758 57890])
-            ("ffap-highlight-overlay" variable nil nil [57892 57974])
-            ("ffap-highlight" function (:arguments ("remove")) nil [57976 58732])
-            ("ffap-guesser" function nil nil [58789 59079])
-            ("ffap-prompter" function (:arguments ("guess")) nil [59081 59893])
-            ("find-file-at-point" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [59910 61776])
-            ("defalias" code nil nil [61861 61897])
-            ("ffap-menu-regexp" variable nil nil [61934 62199])
-            ("ffap-menu-alist" variable nil nil [62201 62286])
-            ("make-variable-buffer-local" code nil nil [62287 62332])
-            ("ffap-menu-text-plist" variable (:default-value (cond ((display-mouse-p) (quote (face bold mouse-face highlight))) (t nil))) nil [62334 62590])
-            ("ffap-menu" function
-               (:user-visible-flag t
-                :arguments ("rescan"))
-                nil [62607 63461])
-            ("ffap-menu-cont" function (:arguments ("choice")) nil [63463 63830])
-            ("ffap-menu-ask" function (:arguments ("title" "alist" "cont")) nil [63832 65261])
-            ("ffap-menu-rescan" function (:user-visible-flag t) nil [65263 66843])
-            ("ffap-at-mouse-fallback" variable nil nil [66946 67144])
-            ("put" code nil nil [67145 67198])
-            ("ffap-at-mouse" function
-               (:user-visible-flag t
-                :arguments ("e"))
-                nil [67215 68329])
-            ("ffap-other-window" function (:user-visible-flag t) nil [68604 68900])
-            ("ffap-other-frame" function (:user-visible-flag t) nil [68902 69523])
-            ("ffap--toggle-read-only" function (:arguments ("buffer-or-list")) nil [69525 69729])
-            ("ffap-read-only" function (:user-visible-flag t) nil [69731 70041])
-            ("ffap-read-only-other-window" function (:user-visible-flag t) nil [70043 70288])
-            ("ffap-read-only-other-frame" function (:user-visible-flag t) nil [70290 70532])
-            ("ffap-alternate-file" function (:user-visible-flag t) nil [70534 70739])
-            ("ffap-alternate-file-other-window" function (:user-visible-flag t) nil [70741 70985])
-            ("ffap-literally" function (:user-visible-flag t) nil [70987 71195])
-            ("defalias" code nil nil [71197 71253])
-            ("define-obsolete-function-alias" code nil nil [71276 71343])
-            ("define-obsolete-function-alias" code nil nil [71344 71418])
-            ("ffap-ro-mode-hook" function nil nil [71554 71713])
-            ("ffap-gnus-hook" function nil nil [71715 72010])
-            ("gnus-summary-buffer" variable nil nil [72012 72040])
-            ("gnus-article-buffer" variable nil nil [72041 72069])
-            ("declare-function" code nil nil [72105 72225])
-            ("declare-function" code nil nil [72227 72323])
-            ("ffap-gnus-wrapper" function (:arguments ("form")) nil [72325 73031])
-            ("ffap-gnus-next" function (:user-visible-flag t) nil [73033 73161])
-            ("ffap-gnus-menu" function (:user-visible-flag t) nil [73163 73285])
-            ("dired-at-point" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [73305 74606])
-            ("dired-at-point-prompter" function (:arguments ("guess")) nil [74608 75562])
-            ("ffap-dired-other-window" function (:user-visible-flag t) nil [75620 75938])
-            ("ffap-dired-other-frame" function (:user-visible-flag t) nil [75940 76486])
-            ("ffap-list-directory" function (:user-visible-flag t) nil [76488 76708])
-            ("ffap-guess-file-name-at-point" function nil nil [76780 77379])
-            ("ffap-bindings" variable (:default-value (quote ((global-set-key [S-mouse-3] (quote ffap-at-mouse)) (global-set-key [C-S-mouse-3] (quote ffap-menu)) (global-set-key "" (quote find-file-at-point)) (global-set-key "" (quote ffap-read-only)) (global-set-key "" (quote ffap-alternate-file)) (global-set-key "4f" (quote ffap-other-window)) (global-set-key "5f" (quote ffap-other-frame)) (global-set-key "4r" (quote ffap-read-only-other-window)) (global-set-key "5r" (quote ffap-read-only-other-frame)) (global-set-key "d" (quote dired-at-point)) (global-set-key "4d" (quote ffap-dired-other-window)) (global-set-key "5d" (quote ffap-dired-other-frame)) (global-set-key "" (quote ffap-list-directory)) (add-hook (quote gnus-summary-mode-hook) (quote ffap-gnus-hook)) (add-hook (quote gnus-article-mode-hook) (quote ffap-gnus-hook)) (add-hook (quote vm-mode-hook) (quote ffap-ro-mode-hook)) (add-hook (quote rmail-mode-hook) (quote ffap-ro-mode-hook))))) nil [77436 78580])
-            ("ffap-bindings" function (:user-visible-flag t) nil [78597 78726])
-            ("ffap" package nil nil [78730 78745]))          
-      :file "ffap.el"
-      :pointmax 78769
-      :fsize 78768
-      :lastmodtime '(23525 29507 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("package" include nil nil [1037 1055])
-            ("lisp-mnt" include nil nil [1056 1075])
-            ("find-func" include nil nil [1076 1096])
-            ("finder-inf" include nil nil [1126 1153])
-            ("finder-known-keywords" variable (:default-value (quote ((abbrev . "abbreviation handling, typing shortcuts, and macros") (bib . "bibliography processors") (c . "C and related programming languages") (calendar . "calendar and time management tools") (comm . "communications, networking, and remote file access") (convenience . "convenience features for faster editing") (data . "editing data (non-text) files") (docs . "Emacs documentation facilities") (emulations . "emulations of other editors") (extensions . "Emacs Lisp language extensions") (faces . "fonts and colors for text") (files . "file editing and manipulation") (frames . "Emacs frames and window systems") (games . "games, jokes and amusements") (hardware . "interfacing with system hardware") (help . "Emacs help systems") (hypermedia . "links between text or other media types") (i18n . "internationalization and character-set support") (internal . "code for Emacs internals, build process, defaults") (languages . "specialized modes for editing programming languages") (lisp . "Lisp support, including Emacs Lisp") (local . "code local to your site") (maint . "Emacs development tools and aids") (mail . "email reading and posting") (matching . "searching, matching, and sorting") (mouse . "mouse support") (multimedia . "images and sound") (news . "USENET news reading and posting") (outlines . "hierarchical outlining and note taking") (processes . "processes, subshells, and compilation") (terminals . "text terminals (ttys)") (tex . "the TeX document formatter") (tools . "programming tools") (unix . "UNIX feature interfaces and emulators") (vc . "version control") (wp . "word processing")))) nil [1239 3146])
-            ("finder-mode-map" variable (:default-value (let ((map (make-sparse-keymap)) (menu-map (make-sparse-keymap "Finder"))) (define-key map " " (quote finder-select)) (define-key map "f" (quote finder-select)) (define-key map [follow-link] (quote mouse-face)) (define-key map [mouse-2] (quote finder-mouse-select)) (define-key map "
" (quote finder-select)) (define-key map "?" (quote finder-summary)) (define-key map "n" (quote next-line)) (define-key map "p" (quote previous-line)) (define-key map "q" (quote finder-exit)) (define-key map "d" (quote finder-list-keywords)) (define-key map [menu-bar finder-mode] (cons "Finder" menu-map)) (define-key menu-map [finder-exit] (quote (menu-item "Quit" finder-exit :help "Exit Finder mode"))) (define-key menu-map [finder-summary] (quote (menu-item "Summary" finder-summary :help "Summary item on current line in a finder buffer"))) (define-key menu-map [finder-list-keywords] (quote (menu-item "List keywords" finder-list-keywords :help "Display descriptions of the keywords in the Finder buffer"))) (define-key menu-map [finder-select] (quote (menu-item "Select" finder-select :help "Select item on current line in a finder buffer"))) map)) nil [3148 4365])
-            ("finder-mode-syntax-table" variable (:default-value (let ((st (make-syntax-table emacs-lisp-mode-syntax-table))) (modify-syntax-entry 59 ".   " st) st)) nil [4367 4557])
-            ("finder-headmark" variable nil nil [4559 4646])
-            ("finder-keywords-hash" variable nil nil [4693 4836])
-            ("generated-finder-keywords-file" variable (:default-value "finder-inf.el") nil [4838 4968])
-            ("finder-no-scan-regexp" variable (:default-value "\\(^\\.#\\|\\(loaddefs\\|ldefs-boot\\|cus-load\\|finder-inf\\|esh-groups\\|subdirs\\|leim-list\\)\\.el$\\)") nil [5278 5476])
-            ("autoload-rubric" function (:prototype-flag t) nil [5478 5516])
-            ("finder--builtins-descriptions" variable
-               (:constant-flag t
-                :default-value (quote ((emacs . "the extensible text editor") (nxml . "a new XML mode"))))
-                nil [5518 5996])
-            ("finder--builtins-alist" variable (:default-value (quote (("calc" . calc) ("ede" . ede) ("erc" . erc) ("eshell" . eshell) ("gnus" . gnus) ("international" . emacs) ("language" . emacs) ("mh-e" . mh-e) ("semantic" . semantic) ("analyze" . semantic) ("bovine" . semantic) ("decorate" . semantic) ("symref" . semantic) ("wisent" . semantic) ("nxml" . nxml) ("org" . org) ("srecode" . srecode) ("term" . emacs) ("url" . url)))) nil [5998 7018])
-            ("finder-compile-keywords" function (:arguments ("dirs")) nil [7020 10891])
-            ("finder-compile-keywords-make-dist" function nil nil [10893 11069])
-            ("finder-insert-at-column" function (:arguments ("column" "strings")) nil [11099 11307])
-            ("finder-help-echo" variable nil nil [11309 11338])
-            ("finder-mouse-face-on-line" function nil nil [11340 12062])
-            ("finder-unknown-keywords" function nil nil [12064 12496])
-            ("finder-list-keywords" function (:user-visible-flag t) nil [12513 13245])
-            ("finder-list-matches" function (:arguments ("key")) nil [13247 13512])
-            ("define-button-type" code nil nil [13514 13574])
-            ("finder-goto-xref" function (:arguments ("button")) nil [13576 13821])
-            ("finder-commentary" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [13838 15351])
-            ("finder-current-item" function nil nil [15353 15614])
-            ("finder-select" function (:user-visible-flag t) nil [15616 15839])
-            ("finder-mouse-select" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [15841 16090])
-            ("finder-by-keyword" function (:user-visible-flag t) nil [16107 16220])
-            ("define-derived-mode" code nil nil [16222 16601])
-            ("finder-summary" function (:user-visible-flag t) nil [16603 16916])
-            ("finder-exit" function (:user-visible-flag t) nil [16918 17139])
-            ("finder-unload-function" function nil nil [17141 17299])
-            ("finder" package nil nil [17303 17320]))          
-      :file "finder.el"
-      :pointmax 17346
-      :fsize 17345
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "finder-inf.el"
-      :fsize 42177
-      :lastmodtime '(23525 29508 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("dired" include nil nil [1015 1031])
-            ("find-dired" customgroup (:user-visible-flag t) nil [1033 1139])
-            ("find-exec-terminator" variable (:default-value (if (eq 0 (ignore-errors (process-file find-program nil nil nil null-device "-exec" "echo" "{}" "+"))) "+" (shell-quote-argument ";"))) nil [1250 1698])
-            ("find-ls-option" variable (:default-value (if (eq 0 (ignore-errors (process-file find-program nil nil nil null-device "-ls"))) (cons "-ls" (if (eq system-type (quote berkeley-unix)) "-gilsb" "-dilsb")) (cons (format "-exec ls -ld {} %s" find-exec-terminator) "-ld"))) nil [1807 2913])
-            ("find-ls-subdir-switches" variable (:default-value (if (string-match "-[a-z]*b" (cdr find-ls-option)) "-alb" "-al")) nil [2915 3294])
-            ("find-grep-options" variable (:default-value (if (or (eq system-type (quote berkeley-unix)) (string-match "solaris2" system-configuration)) "-s" "-q")) nil [3296 3657])
-            ("find-name-arg" variable (:default-value (if read-file-name-completion-ignore-case "-iname" "-name")) nil [3705 4034])
-            ("find-args" variable nil nil [4036 4112])
-            ("find-args-history" variable nil nil [4172 4202])
-            ("dired-sort-inhibit" variable nil nil [4204 4231])
-            ("find-dired" function
-               (:user-visible-flag t
-                :arguments ("dir" "args"))
-                nil [4248 8008])
-            ("kill-find" function (:user-visible-flag t) nil [8010 8332])
-            ("find-name-dired" function
-               (:user-visible-flag t
-                :arguments ("dir" "pattern"))
-                nil [8349 8863])
-            ("defalias" code nil nil [9063 9105])
-            ("find-grep-dired" function
-               (:user-visible-flag t
-                :arguments ("dir" "regexp"))
-                nil [9121 10307])
-            ("find-dired-filter" function (:arguments ("proc" "string")) nil [10309 12116])
-            ("find-dired-sentinel" function (:arguments ("proc" "state")) nil [12118 13011])
-            ("find-dired" package nil nil [13015 13036]))          
-      :file "find-dired.el"
-      :pointmax 13066
-      :fsize 13065
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "dired.el"
-      :fsize 168396
-      :lastmodtime '(23525 29505 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("button" include nil nil [3671 3688])
-            ("help" include nil nil [3653 3668])
-            ("define-key" code nil nil [3711 3766])
-            ("define-key" code nil nil [3767 3814])
-            ("facemenu" customgroup (:user-visible-flag t) nil [3816 3940])
-            ("facemenu-keybindings" variable (:default-value (mapcar (quote purecopy) (quote ((default . "d") (bold . "b") (italic . "i") (bold-italic . "l") (underline . "u"))))) nil [3942 4779])
-            ("facemenu-new-faces-at-end" variable (:default-value t) nil [4781 5015])
-            ("facemenu-listed-faces" variable nil nil [5017 6145])
-            ("facemenu-face-menu" variable (:default-value (let ((map (make-sparse-keymap "Face"))) (define-key map "o" (cons (purecopy "Other...") (quote facemenu-set-face))) map)) nil [6147 6326])
-            ("defalias" code nil nil [6327 6376])
-            ("put" code nil nil [6377 6442])
-            ("facemenu-foreground-menu" variable (:default-value (let ((map (make-sparse-keymap "Foreground Color"))) (define-key map "o" (cons (purecopy "Other...") (quote facemenu-set-foreground))) map)) nil [6444 6659])
-            ("defalias" code nil nil [6660 6721])
-            ("put" code nil nil [6722 6793])
-            ("facemenu-background-menu" variable (:default-value (let ((map (make-sparse-keymap "Background Color"))) (define-key map "o" (cons (purecopy "Other...") (quote facemenu-set-background))) map)) nil [6795 7010])
-            ("defalias" code nil nil [7011 7072])
-            ("put" code nil nil [7073 7144])
-            ("facemenu-enable-faces-p" function nil nil [7200 7449])
-            ("facemenu-special-menu" variable (:default-value (let ((map (make-sparse-keymap "Special"))) (define-key map [115] (cons (purecopy "Remove Special") (quote facemenu-remove-special))) (define-key map [116] (cons (purecopy "Intangible") (quote facemenu-set-intangible))) (define-key map [118] (cons (purecopy "Invisible") (quote facemenu-set-invisible))) (define-key map [114] (cons (purecopy "Read-Only") (quote facemenu-set-read-only))) map)) nil [7451 7950])
-            ("defalias" code nil nil [7951 8006])
-            ("facemenu-justification-menu" variable (:default-value (let ((map (make-sparse-keymap "Justification"))) (define-key map [99] (cons (purecopy "Center") (quote set-justification-center))) (define-key map [98] (cons (purecopy "Full") (quote set-justification-full))) (define-key map [114] (cons (purecopy "Right") (quote set-justification-right))) (define-key map [108] (cons (purecopy "Left") (quote set-justification-left))) (define-key map [117] (cons (purecopy "Unfilled") (quote set-justification-none))) map)) nil [8008 8535])
-            ("defalias" code nil nil [8536 8603])
-            ("facemenu-indentation-menu" variable (:default-value (let ((map (make-sparse-keymap "Indentation"))) (define-key map [decrease-right-margin] (cons (purecopy "Indent Right Less") (quote decrease-right-margin))) (define-key map [increase-right-margin] (cons (purecopy "Indent Right More") (quote increase-right-margin))) (define-key map [decrease-left-margin] (cons (purecopy "Indent Less") (quote decrease-left-margin))) (define-key map [increase-left-margin] (cons (purecopy "Indent More") (quote increase-left-margin))) map)) nil [8605 9168])
-            ("defalias" code nil nil [9169 9232])
-            ("facemenu-menu" variable nil nil [9296 9358])
-            ("setq" code nil nil [9359 9418])
-            ("let" code nil nil [9419 10028])
-            ("let" code nil nil [10029 10650])
-            ("defalias" code nil nil [10651 10690])
-            ("facemenu-keymap" variable (:default-value (let ((map (make-sparse-keymap "Set face"))) (define-key map "o" (cons (purecopy "Other...") (quote facemenu-set-face))) (define-key map "\357" (quote font-lock-fontify-block)) map)) nil [10692 11038])
-            ("defalias" code nil nil [11039 11082])
-            ("facemenu-add-face-function" variable nil nil [11085 11407])
-            ("facemenu-end-add-face" variable nil nil [11409 11687])
-            ("facemenu-remove-face-function" variable nil nil [11689 12021])
-            ("facemenu-color-alist" variable nil nil [12047 12182])
-            ("facemenu-update" function (:user-visible-flag t) nil [12184 12511])
-            ("facemenu-set-face" function
-               (:user-visible-flag t
-                :arguments ("face" "start" "end"))
-                nil [12513 13714])
-            ("facemenu-set-foreground" function
-               (:user-visible-flag t
-                :arguments ("color" "start" "end"))
-                nil [13716 14587])
-            ("facemenu-set-background" function
-               (:user-visible-flag t
-                :arguments ("color" "start" "end"))
-                nil [14589 15460])
-            ("facemenu-set-face-from-menu" function
-               (:user-visible-flag t
-                :arguments ("face" "start" "end"))
-                nil [15462 16715])
-            ("facemenu-set-invisible" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [16717 16949])
-            ("facemenu-set-intangible" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [16951 17212])
-            ("facemenu-set-read-only" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [17214 17449])
-            ("facemenu-remove-face-props" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [17451 17727])
-            ("facemenu-remove-all" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [17729 17963])
-            ("facemenu-remove-special" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [17965 18345])
-            ("defalias" code nil nil [18348 18391])
-            ("list-colors-sort" variable nil nil [18393 19403])
-            ("list-colors-sort-key" function (:arguments ("color")) nil [19405 20738])
-            ("list-colors-callback" variable nil nil [20740 20846])
-            ("list-colors-redisplay" function (:arguments ("_ignore-auto" "_noconfirm")) nil [20848 21090])
-            ("list-colors-display" function
-               (:user-visible-flag t
-                :arguments ("list" "buffer-name" "callback"))
-                nil [21092 23497])
-            ("list-colors-print" function (:arguments ("list" "callback")) nil [23499 24986])
-            ("list-colors-duplicates" function (:arguments ("list")) nil [24989 26602])
-            ("facemenu-color-equal" function (:arguments ("a" "b")) nil [26604 26962])
-            ("facemenu-self-insert-data" variable nil nil [26965 27003])
-            ("facemenu-post-self-insert-function" function nil nil [27005 27382])
-            ("facemenu-set-self-insert-face" function (:arguments ("face")) nil [27384 27625])
-            ("facemenu-add-face" function
-               (:user-visible-flag t
-                :arguments ("face" "start" "end"))
-                nil [27627 30547])
-            ("facemenu-active-faces" function (:arguments ("face-list" "frame")) nil [30549 31874])
-            ("facemenu-add-new-face" function (:arguments ("face")) nil [31876 33903])
-            ("facemenu-add-new-color" function (:arguments ("color" "menu")) nil [33939 35187])
-            ("facemenu-complete-face-list" function (:arguments ("oldlist")) nil [35189 35718])
-            ("facemenu-iterate" function (:arguments ("func" "list")) nil [35720 35975])
-            ("facemenu-update" code nil nil [35977 35994])
-            ("facemenu" package nil nil [35996 36015]))          
-      :file "facemenu.el"
-      :pointmax 36043
-      :fsize 36042
-      :lastmodtime '(23525 29507 0 0)
-      :unmatched-syntax '((close-paren 3688 . 3689) (symbol 3633 . 3650) (open-paren 3632 . 3633)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("put" code nil nil [2958 3002])
-            ("put" code nil nil [3003 3057])
-            ("format-alist" variable (:default-value (\` ((text/enriched (\, (purecopy "Extended MIME text/enriched format.")) (\, (purecopy "Content-[Tt]ype:[ 	]*text/enriched")) enriched-decode enriched-encode t enriched-mode) (plain (\, (purecopy "ISO 8859-1 standard format, no text properties.")) nil nil nil nil nil) (TeX (\, (purecopy "TeX (encoding)")) nil iso-tex2iso iso-iso2tex t nil) (gtex (\, (purecopy "German TeX (encoding)")) nil iso-gtex2iso iso-iso2gtex t nil) (html (\, (purecopy "HTML/SGML \"ISO 8879:1986//ENTITIES Added Latin 1//EN\" (encoding)")) nil iso-sgml2iso iso-iso2sgml t nil) (rot13 (\, (purecopy "rot13")) nil (\, (purecopy "tr a-mn-z n-za-m")) (\, (purecopy "tr a-mn-z n-za-m")) t nil) (duden (\, (purecopy "Duden Ersatzdarstellung")) nil (\, (purecopy "diac")) iso-iso2duden t nil) (de646 (\, (purecopy "German ASCII (ISO 646)")) nil (\, (purecopy "recode -f iso646-ge:latin1")) (\, (purecopy "recode -f latin1:iso646-ge")) t nil) (denet (\, (purecopy "net German")) nil iso-german iso-cvt-read-only t nil) (esnet (\, (purecopy "net Spanish")) nil iso-spanish iso-cvt-read-only t nil)))) nil [3059 6569])
-            ("put" code nil nil [6585 6628])
-            ("format-encode-run-method" function (:arguments ("method" "from" "to" "buffer")) nil [6670 7569])
-            ("format-decode-run-method" function (:arguments ("method" "from" "to" "_buffer")) nil [7571 8520])
-            ("format-annotate-function" function (:arguments ("format" "from" "to" "orig-buf" "format-count")) nil [8522 10891])
-            ("format-decode" function (:arguments ("format" "length" "visit-flag")) nil [10893 13283])
-            ("format-decode-buffer" function
-               (:user-visible-flag t
-                :arguments ("format"))
-                nil [13335 13756])
-            ("format-decode-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "format"))
-                nil [13758 14203])
-            ("format-encode-buffer" function
-               (:user-visible-flag t
-                :arguments ("format"))
-                nil [14205 14604])
-            ("format-encode-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "format"))
-                nil [14606 15530])
-            ("format-write-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "format" "confirm"))
-                nil [15532 17234])
-            ("format-find-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "format"))
-                nil [17236 17786])
-            ("format-insert-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "format" "beg" "end"))
-                nil [17788 19671])
-            ("format-read" function (:arguments ("prompt")) nil [19673 20091])
-            ("format-replace-strings" function (:arguments ("alist" "reverse" "beg" "end")) nil [20223 21296])
-            ("format-delq-cons" function (:arguments ("cons" "list")) nil [21350 21858])
-            ("format-make-relatively-unique" function (:arguments ("a" "b")) nil [21860 22291])
-            ("format-proper-list-p" function (:arguments ("list")) nil [22293 22524])
-            ("format-reorder" function (:arguments ("items" "order")) nil [22526 22933])
-            ("put" code nil nil [22935 22968])
-            ("put" code nil nil [23005 23041])
-            ("put" code nil nil [23267 23305])
-            ("format-deannotate-region" function (:arguments ("from" "to" "translations" "next-fn")) nil [23329 30995])
-            ("format-subtract-regions" function (:arguments ("minu" "subtra")) nil [30997 32482])
-            ("format-property-increment-region" function (:arguments ("from" "to" "prop" "delta" "default")) nil [32726 33253])
-            ("format-insert-annotations" function (:arguments ("list" "offset")) nil [33277 33938])
-            ("format-annotate-value" function (:arguments ("old" "new")) nil [33940 34271])
-            ("format-annotate-region" function (:arguments ("from" "to" "translations" "format-fn" "ignore")) nil [34273 38166])
-            ("format-annotate-location" function (:arguments ("loc" "all" "ignore" "translations")) nil [38220 40134])
-            ("format-annotate-single-property-change" function (:arguments ("prop" "old" "new" "translations")) nil [40136 41806])
-            ("format-annotate-atomic-property-change" function (:arguments ("prop-alist" "old" "new")) nil [41808 43148])
-            ("format" package nil nil [43150 43167]))          
-      :file "format.el"
-      :pointmax 43193
-      :fsize 43192
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("easymenu" include nil nil [7440 7459])
-            ("cl-lib" include nil nil [7479 7496])
-            ("follow" customgroup (:user-visible-flag t) nil [7514 7624])
-            ("follow-mode-hook" variable nil nil [7626 7727])
-            ("follow-mode-prefix" variable (:default-value ".") nil [8119 8385])
-            ("follow-mode-map" variable (:default-value (let ((mainmap (make-sparse-keymap)) (map (make-sparse-keymap))) (define-key map "" (quote follow-scroll-up)) (define-key map "\366" (quote follow-scroll-down)) (define-key map "v" (quote follow-scroll-down)) (define-key map "1" (quote follow-delete-other-windows-and-split)) (define-key map "b" (quote follow-switch-to-buffer)) (define-key map "" (quote follow-switch-to-buffer-all)) (define-key map "" (quote follow-recenter)) (define-key map "<" (quote follow-first-window)) (define-key map ">" (quote follow-last-window)) (define-key map "n" (quote follow-next-window)) (define-key map "p" (quote follow-previous-window)) (define-key mainmap follow-mode-prefix map) (define-key mainmap [remap end-of-buffer] (quote follow-end-of-buffer)) (define-key mainmap [remap scroll-bar-toolkit-scroll] (quote follow-scroll-bar-toolkit-scroll)) (define-key mainmap [remap scroll-bar-drag] (quote follow-scroll-bar-drag)) (define-key mainmap [remap scroll-bar-scroll-up] (quote follow-scroll-bar-scroll-up)) (define-key mainmap [remap scroll-bar-scroll-down] (quote follow-scroll-bar-scroll-down)) (define-key mainmap [remap mwheel-scroll] (quote follow-mwheel-scroll)) mainmap)) nil [8387 9930])
-            ("follow-menu-filter" function (:arguments ("menu")) nil [10017 10177])
-            ("easy-menu-add-item" code nil nil [10179 10960])
-            ("follow-mode-line-text" variable (:default-value " Follow") nil [10962 11178])
-            ("follow-auto" variable nil nil [11180 11490])
-            ("follow-cache-command-list" variable (:default-value (quote (next-line previous-line forward-char backward-char right-char left-char))) nil [11492 11971])
-            ("follow-debug" variable nil nil [11973 12088])
-            ("follow-internal-force-redisplay" variable nil nil [12114 12214])
-            ("follow-active-menu" variable nil nil [12216 12296])
-            ("follow-inactive-menu" variable nil nil [12298 12382])
-            ("follow-inside-post-command-hook-call" variable nil nil [12384 12528])
-            ("follow-windows-start-end-cache" variable nil nil [12530 12618])
-            ("follow-fixed-window" variable nil nil [12620 12763])
-            ("follow-debug-message" function (:arguments ("args")) nil [12924 13113])
-            ("dolist" code nil nil [13126 13203])
-            ("turn-on-follow-mode" function nil nil [13234 13347])
-            ("turn-off-follow-mode" function nil nil [13365 13481])
-            ("put" code nil nil [13483 13520])
-            ("define-minor-mode" code nil nil [13536 17361])
-            ("follow-find-file-hook" function nil nil [17363 17499])
-            ("follow-get-scrolled-point" function (:arguments ("dest" "windows")) nil [17533 19026])
-            ("follow-scroll-up-arg" function (:arguments ("arg")) nil [19771 20587])
-            ("follow-scroll-down-arg" function (:arguments ("arg")) nil [20589 21046])
-            ("follow-scroll-up-window" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [21063 21635])
-            ("put" code nil nil [21636 21684])
-            ("follow-scroll-down-window" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [21701 22293])
-            ("put" code nil nil [22294 22344])
-            ("follow-scroll-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [22361 23201])
-            ("put" code nil nil [23202 23243])
-            ("follow-scroll-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [23260 24268])
-            ("put" code nil nil [24269 24312])
-            ("declare-function" code nil nil [24314 24370])
-            ("comint-scroll-show-maximum-output" variable nil nil [24371 24413])
-            ("follow-comint-scroll-to-bottom" function (:arguments ("_window")) nil [24415 25143])
-            ("follow-align-compilation-windows" function nil nil [25145 25756])
-            ("follow-delete-other-windows-and-split" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25785 26851])
-            ("follow-switch-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [26853 27234])
-            ("follow-switch-to-buffer-all" function
-               (:user-visible-flag t
-                :arguments ("buffer"))
-                nil [27237 27696])
-            ("follow-switch-to-current-buffer-all" function (:user-visible-flag t) nil [27699 27913])
-            ("follow-next-window" function (:user-visible-flag t) nil [28056 28303])
-            ("follow-previous-window" function (:user-visible-flag t) nil [28306 28561])
-            ("follow-first-window" function (:user-visible-flag t) nil [28564 28723])
-            ("follow-last-window" function (:user-visible-flag t) nil [28726 28893])
-            ("follow-recenter" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [28907 29853])
-            ("follow-redraw" function (:user-visible-flag t) nil [29856 30192])
-            ("follow-end-of-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [30213 30872])
-            ("follow--window-sorter" function (:arguments ("w1" "w2")) nil [30887 31296])
-            ("follow-all-followers" function (:arguments ("win")) nil [31298 31789])
-            ("follow-split-followers" function (:arguments ("windows" "win")) nil [31791 32218])
-            ("follow-calc-win-end" function (:arguments ("win")) nil [32220 32899])
-            ("follow-calc-win-start" function (:arguments ("windows" "pos" "win")) nil [32901 33561])
-            ("follow-cache-valid-p" function (:arguments ("windows")) nil [33692 34208])
-            ("follow-windows-start-end" function (:arguments ("windows")) nil [34210 34708])
-            ("follow-pos-visible" function (:arguments ("pos" "win" "win-start-end")) nil [34710 34975])
-            ("follow-windows-aligned-p" function (:arguments ("win-start-end")) nil [35157 35589])
-            ("follow-point-visible-all-windows-p" function (:arguments ("win-start-end")) nil [35677 36042])
-            ("follow-update-window-start" function (:arguments ("win")) nil [36560 36883])
-            ("follow-select-if-visible" function (:arguments ("dest" "win-start-end")) nil [36885 37440])
-            ("follow-select-if-end-visible" function (:arguments ("win-start-end")) nil [37837 38560])
-            ("follow-select-if-visible-from-first" function (:arguments ("dest" "windows")) nil [38806 39972])
-            ("follow-start-end-invalid" variable (:default-value t) nil [40258 40366])
-            ("make-variable-buffer-local" code nil nil [40367 40421])
-            ("follow-redisplay" function (:arguments ("windows" "win" "preserve-win")) nil [40423 41941])
-            ("follow-estimate-first-window-start" function (:arguments ("windows" "win" "start")) nil [41943 42414])
-            ("follow-calculate-first-window-start-from-above" function (:arguments ("windows" "guess" "win" "start")) nil [42535 43083])
-            ("follow-calculate-first-window-start-from-below" function (:arguments ("windows" "guess" "win" "start")) nil [43205 44334])
-            ("follow-avoid-tail-recenter" function (:arguments ("_rest")) nil [44624 45628])
-            ("follow-post-command-hook" function nil nil [46105 46606])
-            ("follow-adjust-window" function (:arguments ("win")) nil [46608 52381])
-            ("follow-maximize-region" function (:arguments ("win" "windows" "win-start-end")) nil [52650 53168])
-            ("declare-function" code nil nil [53339 53404])
-            ("declare-function" code nil nil [53405 53460])
-            ("declare-function" code nil nil [53461 53521])
-            ("declare-function" code nil nil [53522 53584])
-            ("declare-function" code nil nil [53585 53634])
-            ("follow-scroll-bar-toolkit-scroll" function (:arguments ("event")) nil [53636 53776])
-            ("follow-scroll-bar-drag" function (:arguments ("event")) nil [53778 53898])
-            ("follow-scroll-bar-scroll-up" function (:arguments ("event")) nil [53900 54030])
-            ("follow-scroll-bar-scroll-down" function (:arguments ("event")) nil [54032 54166])
-            ("follow-mwheel-scroll" function (:arguments ("event")) nil [54168 54284])
-            ("follow-redraw-after-event" function (:arguments ("event")) nil [54286 54854])
-            ("follow-window-size-change" function (:arguments ("frame")) nil [55515 56849])
-            ("add-hook" code nil nil [56851 56916])
-            ("follow-after-change" function (:arguments ("_beg" "_end" "_old-len")) nil [57242 57385])
-            ("follow-window-start" function (:arguments ("window")) nil [57387 57763])
-            ("follow-window-end" function (:arguments ("window" "update")) nil [57765 58580])
-            ("follow-set-window-start" function (:arguments ("window" "pos" "noforce")) nil [58582 59108])
-            ("follow-pos-visible-in-window-p" function (:arguments ("pos" "window" "partially")) nil [59110 61063])
-            ("follow-move-to-window-line" function (:arguments ("arg")) nil [61065 63220])
-            ("follow" package nil nil [64032 64049]))          
-      :file "follow.el"
-      :pointmax 64700
-      :fsize 64699
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax '((close-paren 7496 . 7497) (symbol 7461 . 7478) (open-paren 7460 . 7461)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1669 1686])
-            ("cl-defstruct" code nil nil [1690 4152])
-            ("put" code nil nil [4216 4334])
-            ("put" code nil nil [4335 4545])
-            ("put" code nil nil [4546 4749])
-            ("put" code nil nil [4750 4952])
-            ("put" code nil nil [4953 5061])
-            ("put" code nil nil [5062 5184])
-            ("put" code nil nil [5185 5469])
-            ("put" code nil nil [5470 6009])
-            ("frameset-copy" function (:arguments ("frameset")) nil [6271 6401])
-            ("frameset-valid-p" function (:arguments ("object")) nil [6403 7172])
-            ("frameset--prop-setter" function (:arguments ("frameset" "property" "value")) nil [7207 7430])
-            ("frameset-prop" function (:arguments ("frameset" "property")) nil [7485 7755])
-            ("frameset-session-filter-alist" variable (:default-value (quote ((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)))) nil [21403 21765])
-            ("frameset-persistent-filter-alist" variable (:default-value (nconc (quote ((background-color . frameset-filter-sanitize-color) (buffer-list . :never) (buffer-predicate . :never) (buried-buffer-list . :never) (client . :never) (delete-before . :never) (font . frameset-filter-font-param) (foreground-color . frameset-filter-sanitize-color) (frameset--text-pixel-height . :save) (frameset--text-pixel-width . :save) (fullscreen . frameset-filter-shelve-param) (GUI:font . frameset-filter-unshelve-param) (GUI:fullscreen . frameset-filter-unshelve-param) (GUI:height . frameset-filter-unshelve-param) (GUI:width . frameset-filter-unshelve-param) (height . frameset-filter-shelve-param) (outer-window-id . :never) (parent-frame . :never) (parent-id . :never) (mouse-wheel-frame . :never) (tty . frameset-filter-tty-to-GUI) (tty-type . frameset-filter-tty-to-GUI) (width . frameset-filter-shelve-param) (window-id . :never) (window-system . :never))) frameset-session-filter-alist)) nil [21782 23523])
-            ("frameset-filter-alist" variable (:default-value frameset-persistent-filter-alist) nil [23540 25755])
-            ("frameset--target-display" variable nil nil [25818 25851])
-            ("frameset-switch-to-gui-p" function (:arguments ("parameters")) nil [26136 26648])
-            ("frameset-switch-to-tty-p" function (:arguments ("parameters")) nil [26679 27209])
-            ("frameset-filter-tty-to-GUI" function (:arguments ("_current" "_filtered" "parameters" "saving")) nil [27225 27518])
-            ("frameset-filter-sanitize-color" function (:arguments ("current" "_filtered" "parameters" "saving")) nil [27520 27975])
-            ("frameset-filter-minibuffer" function (:arguments ("current" "filtered" "_parameters" "saving")) nil [27977 28805])
-            ("frameset-filter-shelve-param" function (:arguments ("current" "_filtered" "parameters" "saving" "prefix")) nil [28807 29536])
-            ("frameset-filter-unshelve-param" function (:arguments ("current" "filtered" "parameters" "saving")) nil [29538 30143])
-            ("frameset-filter-font-param" function (:arguments ("current" "filtered" "parameters" "saving" "prefix")) nil [30145 30633])
-            ("frameset-filter-iconified" function (:arguments ("_current" "_filtered" "parameters" "saving")) nil [30635 31067])
-            ("frameset-filter-params" function (:arguments ("parameters" "filter-alist" "saving")) nil [31069 32507])
-            ("frameset--set-id" function (:arguments ("frame")) nil [32525 32819])
-            ("frameset-cfg-id" function (:arguments ("frame-cfg")) nil [32821 32954])
-            ("frameset-frame-id" function (:arguments ("frame")) nil [32971 33418])
-            ("frameset-frame-id-equal-p" function (:arguments ("frame" "id")) nil [33435 33565])
-            ("frameset-frame-with-id" function (:arguments ("id" "frame-list")) nil [33582 33917])
-            ("frameset--record-relationships" function (:arguments ("frame-list")) nil [33942 37324])
-            ("cl-defun" code nil nil [37341 38782])
-            ("frameset--reuse-list" variable nil nil [38854 38883])
-            ("frameset--action-map" variable nil nil [38884 38913])
-            ("frameset-compute-pos" function (:arguments ("value" "left/top" "right/bottom")) nil [38915 39643])
-            ("frameset-move-onscreen" function (:arguments ("frame" "force-onscreen")) nil [39645 42314])
-            ("frameset--find-frame-if" function (:arguments ("predicate" "display" "args")) nil [42316 42808])
-            ("frameset--reuse-frame" function (:arguments ("display" "parameters")) nil [42810 45401])
-            ("frameset--initial-params" function (:arguments ("parameters")) nil [45403 45852])
-            ("frameset--restore-frame" function (:arguments ("parameters" "window-state" "filters" "force-onscreen")) nil [45854 50220])
-            ("frameset--minibufferless-last-p" function (:arguments ("state1" "state2")) nil [50222 50735])
-            ("frameset-keep-original-display-p" function (:arguments ("force-display")) nil [50737 51031])
-            ("frameset-minibufferless-first-p" function (:arguments ("frame1" "_frame2")) nil [51033 51385])
-            ("cl-defun" code nil nil [51402 61644])
-            ("frameset--jump-to-register" function (:arguments ("data")) nil [61684 62777])
-            ("frameset--print-register" function (:arguments ("data")) nil [62794 63172])
-            ("frameset-to-register" function
-               (:user-visible-flag t
-                :arguments ("register"))
-                nil [63189 63912])
-            ("frameset" package nil nil [63914 63933]))          
-      :file "frameset.el"
-      :pointmax 63961
-      :fsize 63960
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ff" customgroup (:user-visible-flag t) nil [5662 5819])
-            ("ff-pre-find-hook" variable nil nil [5821 5954])
-            ("ff-pre-load-hook" variable nil nil [5956 6083])
-            ("ff-post-load-hook" variable nil nil [6085 6212])
-            ("ff-not-found-hook" variable nil nil [6214 6347])
-            ("ff-file-created-hook" variable nil nil [6349 6486])
-            ("ff-case-fold-search" variable nil nil [6488 6694])
-            ("ff-always-in-other-window" variable nil nil [6696 6901])
-            ("ff-ignore-include" variable nil nil [6903 7007])
-            ("ff-always-try-to-create" variable (:default-value t) nil [7009 7153])
-            ("ff-quiet-mode" variable nil nil [7155 7274])
-            ("ff-special-constructs" variable (:default-value (\` (((\, (purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]")) lambda nil (buffer-substring (match-beginning 2) (match-end 2)))))) nil [7291 8059])
-            ("defvaralias" code nil nil [8061 8118])
-            ("ff-other-file-alist" variable (:default-value (quote cc-other-file-alist)) nil [8119 8663])
-            ("ff-search-directories" variable (:default-value (quote cc-search-directories)) nil [8665 9569])
-            ("cc-search-directories" variable (:default-value (quote ("." "/usr/include" "/usr/local/include/*"))) nil [9571 9757])
-            ("cc-other-file-alist" variable (:default-value (quote (("\\.cc\\'" (".hh" ".h")) ("\\.hh\\'" (".cc" ".C" ".CC" ".cxx" ".cpp" ".c++")) ("\\.c\\'" (".h")) ("\\.m\\'" (".h")) ("\\.h\\'" (".c" ".cc" ".C" ".CC" ".cxx" ".cpp" ".c++" ".m")) ("\\.C\\'" (".H" ".hh" ".h")) ("\\.H\\'" (".C" ".CC")) ("\\.CC\\'" (".HH" ".H" ".hh" ".h")) ("\\.HH\\'" (".CC")) ("\\.c\\+\\+\\'" (".h++" ".hh" ".h")) ("\\.h\\+\\+\\'" (".c++")) ("\\.cpp\\'" (".hpp" ".hh" ".h")) ("\\.hpp\\'" (".cpp")) ("\\.cxx\\'" (".hxx" ".hh" ".h")) ("\\.hxx\\'" (".cxx"))))) nil [9759 10823])
-            ("modula2-other-file-alist" variable (:default-value (quote (("\\.mi$" (".md")) ("\\.md$" (".mi"))))) nil [10825 11116])
-            ("make-variable-buffer-local" code nil nil [11299 11345])
-            ("make-variable-buffer-local" code nil nil [11346 11392])
-            ("make-variable-buffer-local" code nil nil [11393 11440])
-            ("make-variable-buffer-local" code nil nil [11441 11488])
-            ("make-variable-buffer-local" code nil nil [11489 11539])
-            ("make-variable-buffer-local" code nil nil [11540 11589])
-            ("make-variable-buffer-local" code nil nil [11590 11645])
-            ("make-variable-buffer-local" code nil nil [11646 11693])
-            ("make-variable-buffer-local" code nil nil [11694 11737])
-            ("make-variable-buffer-local" code nil nil [11738 11787])
-            ("make-variable-buffer-local" code nil nil [11788 11839])
-            ("ff-get-other-file" function
-               (:user-visible-flag t
-                :arguments ("in-other-window"))
-                nil [11957 12369])
-            ("defalias" code nil nil [12386 12438])
-            ("ff-find-other-file" function
-               (:user-visible-flag t
-                :arguments ("in-other-window" "ignore-include"))
-                nil [12455 14503])
-            ("ff-buffer-file-name" function (:arguments ("buf")) nil [14606 14918])
-            ("ff-find-the-other-file" function (:arguments ("in-other-window")) nil [14920 19716])
-            ("ff-other-file-name" function nil nil [19775 22863])
-            ("ff-get-file" function (:arguments ("search-dirs" "filename" "suffix-list" "other-window")) nil [22922 23643])
-            ("ff-get-file-name" function (:arguments ("search-dirs" "fname-stub" "suffix-list")) nil [23645 27515])
-            ("ff-string-match" function (:arguments ("regexp" "string" "start")) nil [27517 27787])
-            ("ff-list-replace-env-vars" function (:arguments ("search-list")) nil [27789 28467])
-            ("ff-treat-as-special" function nil nil [28469 29065])
-            ("ff-basename" function (:arguments ("string")) nil [29067 29286])
-            ("ff-all-dirs-under" function (:arguments ("here" "exclude")) nil [29288 29816])
-            ("ff-switch-file" function (:arguments ("f1" "f2" "file" "in-other-window" "new-file")) nil [29818 30764])
-            ("ff-find-file" function (:arguments ("file" "in-other-window" "new-file")) nil [30766 31011])
-            ("ff-switch-to-buffer" function (:arguments ("buffer-or-name" "in-other-window")) nil [31013 31295])
-            ("ff-mouse-find-other-file" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [31312 31481])
-            ("ff-mouse-find-other-file-other-window" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [31498 31696])
-            ("ff-upcase-p" function (:arguments ("string" "start" "end")) nil [31853 32393])
-            ("ff-cc-hh-converter" function (:arguments ("arg")) nil [32395 34361])
-            ("ff-function-name" variable nil nil [34551 34614])
-            ("ada-procedure-start-regexp" variable nil nil [34685 34720])
-            ("ada-package-start-regexp" variable nil nil [34721 34754])
-            ("ff-which-function-are-we-in" function nil nil [34756 35145])
-            ("ff-set-point-accordingly" function nil nil [35214 35492])
-            ("find-file" package nil nil [35494 35514]))          
-      :file "find-file.el"
-      :pointmax 35543
-      :fsize 35542
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("file-cache" customgroup (:user-visible-flag t) nil [5258 5386])
-            ("file-cache-filter-regexps" variable (:default-value (list "~$" "\\.o$" "\\.exe$" "\\.a$" "\\.elc$" ",v$" "\\.output$" "\\.$" "#$" "\\.class$" "/\\.#")) nil [5567 6178])
-            ("file-cache-find-command" variable (:default-value "find") nil [6180 6327])
-            ("file-cache-find-command-posix-flag" variable (:default-value (quote not-defined)) nil [6329 6833])
-            ("file-cache-locate-command" variable (:default-value "locate") nil [6835 6988])
-            ("file-cache-no-match-message" variable (:default-value " [File Cache: No match]") nil [7013 7167])
-            ("file-cache-sole-match-message" variable (:default-value " [File Cache: sole completion]") nil [7169 7338])
-            ("file-cache-non-unique-message" variable (:default-value " [File Cache: complete but not unique]") nil [7340 7523])
-            ("file-cache-completion-ignore-case" variable (:default-value (if (memq system-type (quote (ms-dos windows-nt cygwin))) t completion-ignore-case)) nil [7525 7807])
-            ("file-cache-case-fold-search" variable (:default-value (if (memq system-type (quote (ms-dos windows-nt cygwin))) t case-fold-search)) nil [7809 8072])
-            ("file-cache-ignore-case" variable (:default-value (memq system-type (quote (ms-dos windows-nt cygwin)))) nil [8074 8330])
-            ("file-cache-multiple-directory-message" variable nil nil [8332 8382])
-            ("file-cache-completions-buffer" variable (:default-value "*Completions*") nil [8523 8678])
-            ("file-cache-buffer" variable (:default-value "*File Cache*") nil [8680 8805])
-            ("file-cache-buffer-default-regexp" variable (:default-value "^.+$") nil [8807 8945])
-            ("file-cache-last-completion" variable nil nil [8947 8986])
-            ("file-cache-alist" variable nil nil [8988 9267])
-            ("file-cache-completions-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map completion-list-mode-map) (define-key map [mouse-2] (quote file-cache-choose-completion)) (define-key map "
" (quote file-cache-choose-completion)) map)) nil [9269 9570])
-            ("file-cache--read-list" function (:arguments ("file" "op-prompt")) nil [9734 10143])
-            ("file-cache-add-directory" function
-               (:user-visible-flag t
-                :arguments ("directory" "regexp"))
-                nil [10160 11053])
-            ("file-cache-add-directory-list" function
-               (:user-visible-flag t
-                :arguments ("directories" "regexp"))
-                nil [11070 11723])
-            ("file-cache-add-file-list" function
-               (:user-visible-flag t
-                :arguments ("files"))
-                nil [11725 12089])
-            ("file-cache-add-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [12129 13077])
-            ("file-cache-add-directory-using-find" function
-               (:user-visible-flag t
-                :arguments ("directory"))
-                nil [13094 13906])
-            ("file-cache-add-directory-using-locate" function
-               (:user-visible-flag t
-                :arguments ("string"))
-                nil [13923 14349])
-            ("find-lisp-find-files" function (:prototype-flag t) nil [14351 14395])
-            ("file-cache-add-directory-recursively" function
-               (:user-visible-flag t
-                :arguments ("dir" "regexp"))
-                nil [14412 15146])
-            ("file-cache-add-from-file-cache-buffer" function (:arguments ("regexp")) nil [15148 15807])
-            ("file-cache-clear-cache" function (:user-visible-flag t) nil [15970 16075])
-            ("file-cache-delete-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [16124 16514])
-            ("file-cache-delete-file-list" function
-               (:user-visible-flag t
-                :arguments ("files" "message"))
-                nil [16516 17061])
-            ("file-cache-delete-file-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [17063 17381])
-            ("file-cache-delete-directory" function
-               (:user-visible-flag t
-                :arguments ("directory"))
-                nil [17383 17776])
-            ("file-cache-do-delete-directory" function (:arguments ("dir" "entry")) nil [17778 18120])
-            ("file-cache-delete-directory-list" function
-               (:user-visible-flag t
-                :arguments ("directories"))
-                nil [18122 18434])
-            ("file-cache-directory-name" function (:arguments ("file")) nil [18639 19830])
-            ("file-cache-file-name" function (:arguments ("file")) nil [19875 19994])
-            ("file-cache-canonical-directory" function (:arguments ("dir")) nil [20100 20283])
-            ("file-cache-minibuffer-complete" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [20801 23909])
-            ("file-cache-completion-setup-function" function nil nil [24058 24234])
-            ("file-cache-choose-completion" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [24236 24543])
-            ("define-obsolete-function-alias" code nil nil [24545 24652])
-            ("file-cache-complete" function (:user-visible-flag t) nil [24654 24905])
-            ("file-cache-files-matching-internal" function (:arguments ("regexp")) nil [25057 25382])
-            ("file-cache-files-matching" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [25384 25837])
-            ("file-cache-debug-read-from-minibuffer" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [25985 26223])
-            ("file-cache-display" function (:user-visible-flag t) nil [26225 26524])
-            ("filecache" package nil nil [26664 26684]))          
-      :file "filecache.el"
-      :pointmax 26713
-      :fsize 26712
-      :lastmodtime '(23525 29507 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("dired" include nil nil [1641 1657])
-            ("dired-buffers" variable nil nil [1659 1681])
-            ("dired-subdir-alist" variable nil nil [1682 1709])
-            ("find-lisp-regexp" variable nil nil [1734 1786])
-            ("find-lisp-line-indent" variable
-               (:constant-flag t
-                :default-value "  ")
-                nil [1788 1863])
-            ("find-lisp-file-predicate" variable nil nil [1865 1947])
-            ("find-lisp-directory-predicate" variable nil nil [1949 2047])
-            ("find-lisp-debug-buffer" variable (:default-value "*Find Lisp Debug*") nil [2150 2239])
-            ("find-lisp-debug" variable nil nil [2241 2303])
-            ("find-lisp-debug-message" function (:arguments ("message")) nil [2305 2517])
-            ("find-lisp-default-directory-predicate" function (:arguments ("dir" "parent")) nil [2635 3132])
-            ("find-lisp-default-file-predicate" function (:arguments ("file" "dir")) nil [3134 3477])
-            ("find-lisp-file-predicate-is-directory" function (:arguments ("file" "dir")) nil [3479 3833])
-            ("find-lisp-find-files" function (:arguments ("directory" "regexp")) nil [3936 4298])
-            ("find-lisp-find-files-internal" function (:arguments ("directory" "file-predicate" "directory-predicate")) nil [4322 5544])
-            ("find-lisp-find-dired" function
-               (:user-visible-flag t
-                :arguments ("dir" "regexp"))
-                nil [5670 6005])
-            ("find-lisp-find-dired-subdirectories" function
-               (:user-visible-flag t
-                :arguments ("dir"))
-                nil [6049 6351])
-            ("find-lisp-find-dired-internal" function (:arguments ("dir" "file-predicate" "directory-predicate" "buffer-name")) nil [6401 8413])
-            ("find-lisp-insert-directory" function (:arguments ("dir" "file-predicate" "directory-predicate" "_sort-function")) nil [8415 9465])
-            ("find-lisp-find-dired-filter" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [9482 9687])
-            ("find-lisp-find-dired-insert-file" function (:arguments ("file" "buffer")) nil [9689 9886])
-            ("find-lisp-format" function (:arguments ("file-name" "file-attr" "switches" "now")) nil [10083 11219])
-            ("find-lisp-time-index" function (:arguments ("switches")) nil [11221 11459])
-            ("find-lisp-format-time" function (:arguments ("file-attr" "switches" "now")) nil [11461 12340])
-            ("find-lisp" package nil nil [12342 12362]))          
-      :file "find-lisp.el"
-      :pointmax 12391
-      :fsize 12390
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("when" code nil nil [1088 1364])
-            ("file-name-buffer-file-type-alist" variable (:default-value (quote (("[:/].*config.sys$") ("\\.\\(obj\\|exe\\|com\\|lib\\|sys\\|bin\\|ico\\|pif\\|class\\)$" . t) ("\\.\\(dll\\|drv\\|386\\|vxd\\|fon\\|fnt\\|fot\\|ttf\\|grp\\)$" . t) ("\\.\\(bmp\\|wav\\|avi\\|mpg\\|jpg\\|tif\\|mov\\|au\\)$" . t) ("\\.\\(arc\\|zip\\|pak\\|lzh\\|zoo\\)$" . t) ("\\.\\(a\\|o\\|tar\\|z\\|gz\\|taz\\|jar\\)$" . t) ("\\.sx[dmicw]$" . t) ("\\.tp[ulpw]$" . t) ("[:/]tags$")))) nil [1445 2463])
-            ("make-obsolete-variable" code nil nil [2465 2562])
-            ("find-buffer-file-type-coding-system" function (:arguments ("command")) nil [2564 6270])
-            ("make-obsolete" code nil nil [6271 6334])
-            ("find-file-binary" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [6336 6673])
-            ("find-file-text" function
-               (:user-visible-flag t
-                :arguments ("filename"))
-                nil [6675 6872])
-            ("w32-find-file-not-found-set-buffer-file-coding-system" function nil nil [6874 7500])
-            ("add-hook" code nil nil [7552 7651])
-            ("define-obsolete-variable-alias" code nil nil [7723 7828])
-            ("w32-untranslated-filesystem-list" variable nil nil [7829 8066])
-            ("w32-untranslated-canonical-name" function (:arguments ("filename")) nil [8068 9050])
-            ("w32-untranslated-file-p" function (:arguments ("filename")) nil [9052 9472])
-            ("define-obsolete-function-alias" code nil nil [9474 9577])
-            ("w32-add-untranslated-filesystem" function
-               (:user-visible-flag t
-                :arguments ("filesystem"))
-                nil [9578 10289])
-            ("define-obsolete-function-alias" code nil nil [10292 10401])
-            ("w32-remove-untranslated-filesystem" function
-               (:user-visible-flag t
-                :arguments ("filesystem"))
-                nil [10402 10899])
-            ("define-obsolete-variable-alias" code nil nil [10974 11101])
-            ("w32-direct-print-region-use-command-dot-com" variable (:default-value t) nil [11102 11264])
-            ("w32-direct-print-region-helper" function (:arguments ("printer" "start" "end" "lpr-prog" "_delete-text" "_buf" "_display" "rest")) nil [11379 15529])
-            ("printer-name" variable nil nil [15531 15552])
-            ("declare-function" code nil nil [15554 15604])
-            ("define-obsolete-function-alias" code nil nil [15606 15711])
-            ("w32-direct-print-region-function" function (:arguments ("start" "end" "lpr-prog" "delete-text" "buf" "display" "rest")) nil [15712 17244])
-            ("lpr-headers-switches" variable nil nil [17246 17275])
-            ("when" code nil nil [17746 17857])
-            ("ps-printer-name" variable nil nil [17859 17883])
-            ("define-obsolete-function-alias" code nil nil [17885 17996])
-            ("w32-direct-ps-print-region-function" function (:arguments ("start" "end" "lpr-prog" "delete-text" "buf" "display" "rest")) nil [17997 18832])
-            ("dos-w32" package nil nil [18962 18980]))          
-      :file "dos-w32.el"
-      :pointmax 19007
-      :fsize 19006
-      :lastmodtime '(23525 29506 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("forms" customgroup (:user-visible-flag t) nil [11105 11178])
-            ("forms-mode-hook" variable nil nil [11217 11317])
-            ("forms-file" variable nil nil [11391 11453])
-            ("forms-format-list" variable nil nil [11455 11524])
-            ("forms-number-of-fields" variable nil nil [11526 11594])
-            ("forms-check-number-of-fields" variable (:default-value t) nil [11642 11781])
-            ("forms-field-sep" variable (:default-value "	") nil [11783 11857])
-            ("forms-read-only" variable nil nil [11859 12021])
-            ("forms-multi-line" variable (:default-value "") nil [12023 12135])
-            ("forms-forms-scroll" variable nil nil [12137 12327])
-            ("forms-forms-jump" variable nil nil [12329 12519])
-            ("forms-read-file-filter" variable nil nil [12521 12728])
-            ("forms-write-file-filter" variable nil nil [12730 12901])
-            ("forms-new-record-filter" variable nil nil [12903 13011])
-            ("forms-modified-record-filter" variable nil nil [13013 13129])
-            ("forms-fields" variable nil nil [13131 13314])
-            ("forms-use-text-properties" variable (:default-value t) nil [13316 13496])
-            ("forms-insert-after" variable nil nil [13498 13674])
-            ("forms-ro-face" variable (:default-value (quote default)) nil [13676 13818])
-            ("forms-rw-face" variable (:default-value (quote region)) nil [13820 13962])
-            ("forms--file-buffer" variable nil nil [13990 14058])
-            ("forms--total-records" variable nil nil [14060 14137])
-            ("forms--current-record" variable nil nil [14139 14221])
-            ("forms-mode-map" variable nil nil [14223 14279])
-            ("forms-mode-ro-map" variable nil nil [14280 14352])
-            ("forms-mode-edit-map" variable nil nil [14353 14427])
-            ("forms--markers" variable nil nil [14429 14489])
-            ("forms--dyntexts" variable nil nil [14491 14584])
-            ("forms--the-record-list" variable nil nil [14586 14690])
-            ("forms--search-regexp" variable nil nil [14692 14773])
-            ("forms--format" variable nil nil [14775 14825])
-            ("forms--parser" variable nil nil [14827 14879])
-            ("forms--mode-setup" variable nil nil [14881 14957])
-            ("make-variable-buffer-local" code nil nil [14958 15005])
-            ("forms--dynamic-text" variable nil nil [15007 15100])
-            ("forms--elements" variable nil nil [15102 15190])
-            ("forms--ro-face" variable nil nil [15192 15276])
-            ("forms--rw-face" variable nil nil [15278 15363])
-            ("read-file-filter" variable nil nil [15366 15391])
-            ("forms-mode" function
-               (:user-visible-flag t
-                :arguments ("primary"))
-                nil [15443 25585])
-            ("forms--process-format-list" function nil nil [25588 28816])
-            ("forms--iif-start" variable nil nil [29306 29377])
-            ("forms--iif-properties" variable nil nil [29378 29471])
-            ("forms--iif-hook" function (:arguments ("_begin" "_end")) nil [29473 30500])
-            ("forms--iif-post-command-hook" function nil nil [30502 30940])
-            ("forms--marker" variable nil nil [30943 30965])
-            ("forms--dyntext" variable nil nil [30966 30989])
-            ("forms--make-format" function nil nil [30991 32318])
-            ("forms--make-format-elt-using-text-properties" function (:arguments ("el")) nil [32320 35471])
-            ("forms--make-format-elt" function (:arguments ("el")) nil [35473 36361])
-            ("forms--field" variable nil nil [36364 36385])
-            ("forms--recordv" variable nil nil [36386 36409])
-            ("forms--seen-text" variable nil nil [36410 36435])
-            ("forms--make-parser" function nil nil [36437 37292])
-            ("forms--parser-using-text-properties" function nil nil [37294 38057])
-            ("forms--make-parser-elt" function (:arguments ("el")) nil [38059 40743])
-            ("forms--intuit-from-file" function nil nil [40746 42261])
-            ("forms--set-keymaps" function nil nil [42264 42422])
-            ("forms--mode-commands" function nil nil [42424 44459])
-            ("forms--mode-menu-ro" function (:arguments ("map")) nil [44461 46571])
-            ("forms--mode-menu-edit" function (:arguments ("map")) nil [46572 48769])
-            ("forms--mode-commands1" function (:arguments ("map")) nil [48771 49161])
-            ("forms--change-commands" function nil nil [49187 50095])
-            ("forms--help" function nil nil [50097 50369])
-            ("forms--trans" function (:arguments ("subj" "arg" "rep")) nil [50371 50659])
-            ("forms--exit" function (:arguments ("save")) nil [50661 51215])
-            ("forms--get-record" function nil nil [51217 51546])
-            ("forms--show-record" function (:arguments ("the-record")) nil [51548 53376])
-            ("forms--parse-form" function nil nil [53378 54436])
-            ("forms--update" function nil nil [54438 55514])
-            ("forms--checkmod" function nil nil [55516 55738])
-            ("forms-find-file" function
-               (:user-visible-flag t
-                :arguments ("fn"))
-                nil [55776 55999])
-            ("forms-find-file-other-window" function
-               (:user-visible-flag t
-                :arguments ("fn"))
-                nil [56016 56289])
-            ("forms-exit" function (:user-visible-flag t) nil [56291 56408])
-            ("forms-exit-no-save" function (:user-visible-flag t) nil [56410 56524])
-            ("forms-next-record" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [56552 56723])
-            ("forms-prev-record" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [56725 56895])
-            ("forms--goto-record" function (:arguments ("rn" "current")) nil [56897 57296])
-            ("forms-jump-record" function
-               (:user-visible-flag t
-                :arguments ("arg" "relative"))
-                nil [57298 58324])
-            ("forms-first-record" function (:user-visible-flag t) nil [58326 58421])
-            ("forms-last-record" function (:user-visible-flag t) nil [58423 58882])
-            ("forms-toggle-read-only" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [58905 59753])
-            ("forms-insert-record" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [60006 61393])
-            ("forms-delete-record" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [61395 62149])
-            ("forms-search-forward" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [62151 63160])
-            ("forms-search-backward" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [63162 64185])
-            ("forms-save-buffer" function
-               (:user-visible-flag t
-                :arguments ("args"))
-                nil [64187 65544])
-            ("forms--revert-buffer" function
-               (:user-visible-flag t
-                :arguments ("_arg" "noconfirm"))
-                nil [65546 65817])
-            ("forms-next-field" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [65819 66363])
-            ("forms-prev-field" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [66365 66941])
-            ("forms-print" function (:user-visible-flag t) nil [66943 67723])
-            ("forms-enumerate" function (:arguments ("the-fields")) nil [67753 68268])
-            ("forms--debug" variable nil nil [68286 68392])
-            ("forms--debug" function (:arguments ("args")) nil [68394 69111])
-            ("forms-mode" package nil nil [69113 69134])
-            ("forms" package nil nil [69157 69173]))          
-      :file "forms.el"
-      :pointmax 69197
-      :fsize 69196
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("file-name-shadow-properties-custom-type" variable
-               (:constant-flag t
-                :default-value (quote (list (checklist :inline t (const :tag "Invisible" :doc "Make shadowed part of filename invisible" :format "%t%n%h" :inline t (invisible t intangible t)) (list :inline t :format "%v" :tag "Face" :doc "Display shadowed part of filename using a different face" (const :format "" face) (face :value file-name-shadow)) (list :inline t :format "%t: %v%h" :tag "Brackets" :doc "    Surround shadowed part of filename with brackets" (const :format "" before-string) (string :format "%v" :size 4 :value "{") (const :format "" after-string) (string :format " and: %v" :value "} ")) (list :inline t :format "%t: %v%n%h" :tag "String" :doc "Display a string instead of the shadowed part of filename" (const :format "" display) (string :format "%v" :size 15 :value "<...ignored...>")) (const :tag "Avoid" :doc "Try to keep cursor out of shadowed part of filename" :format "%t%n%h" :inline t (field shadow))) (repeat :inline t :tag "Other Properties" (list :inline t :format "%v" (symbol :tag "Property") (sexp :tag "Value"))))))
-                nil [1460 3319])
-            ("file-name-shadow-properties" variable (:default-value (quote (face file-name-shadow field shadow))) nil [3321 3747])
-            ("file-name-shadow-tty-properties" variable (:default-value (purecopy (quote (before-string "{" after-string "} " field shadow)))) nil [3749 4208])
-            ("file-name-shadow" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [4210 4357])
-            ("rfn-eshadow-setup-minibuffer-hook" variable nil nil [4359 4457])
-            ("rfn-eshadow-update-overlay-hook" variable nil nil [4459 4554])
-            ("rfn-eshadow-frobbed-minibufs" variable nil nil [4649 4690])
-            ("rfn-eshadow-overlay" variable nil nil [4779 4807])
-            ("make-variable-buffer-local" code nil nil [4808 4857])
-            ("rfn-eshadow-setup-minibuffer" function nil nil [4928 5958])
-            ("rfn-eshadow-sifn-equal" function (:arguments ("goal" "pos")) nil [5960 6196])
-            ("rfn-eshadow-update-overlay" function nil nil [6237 7972])
-            ("define-minor-mode" code nil nil [7975 9446])
-            ("rfn-eshadow" package nil nil [9449 9471]))          
-      :file "rfn-eshadow.el"
-      :pointmax 9502
-      :fsize 9501
-      :lastmodtime '(23525 29516 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [928 941])
-            ("format-spec" function (:arguments ("format" "specification")) nil [944 2331])
-            ("format-spec-make" function (:arguments ("pairs")) nil [2333 2736])
-            ("format-spec" package nil nil [2738 2760]))          
-      :file "format-spec.el"
-      :pointmax 2791
-      :fsize 2790
-      :lastmodtime '(23525 29509 0 0)
-      :unmatched-syntax '((close-paren 941 . 942) (symbol 910 . 927) (open-paren 909 . 910)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("grep" include nil nil [1483 1498])
-            ("find-constituents" variable
-               (:constant-flag t
-                :default-value (quote ((and . find-and) (not . find-not) (or . find-or) (a . find-and) (n . find-not) (o . find-or) (prune . find-prune) (L 0) (P 0) (H 0) (amin 1) (anewer 1) (atime 1) (cmin 1) (cnewer 1) (ctime 1) (empty 0) (executable 0) (false 0) (fstype 1) (gid 1) (group 1) (ilname 1) (iname 1) (inum 1) (ipath 1) (iregex 1) (iwholename 1) (links 1) (lname 1) (mmin 1) (mtime 1) (name 1) (newer 1) (nogroup 0) (nouser 0) (path 1) (perm 0) (readable 0) (regex 1) (samefile 1) (size 1) (true 0) (type 1) (uid 1) (used 1) (user 1) (wholename 1) (writable 0) (xtype nil) (daystart 0) (depth 0) (maxdepth 1) (mindepth 1) (mount 0) (noleaf 0) (ignore_readdir_race 0) (noignore_readdir_race 0) (regextype 1) (xdev 0) (delete 0) (print0 0) (printf 1) (fprintf 2) (print 0) (fprint0 1) (fprint 1) (ls 0) (fls 1) (prune 0) (quit 0) (exec 1 find-command t) (ok 1 find-command t) (execdir 1 find-command t) (okdir 1 find-command t))))
-                nil [1500 3745])
-            ("find-cmd" function (:arguments ("subfinds")) nil [3762 4529])
-            ("find-and" function (:arguments ("form")) nil [4531 4848])
-            ("find-or" function (:arguments ("form")) nil [4850 5162])
-            ("find-not" function (:arguments ("form")) nil [5164 5525])
-            ("find-prune" function (:arguments ("form")) nil [5527 5921])
-            ("find-generic" function (:arguments ("option" "oper" "argcount" "args" "dont-quote")) nil [5923 6990])
-            ("find-command" function (:arguments ("form")) nil [6992 7260])
-            ("find-to-string" function (:arguments ("form")) nil [7262 7957])
-            ("find-cmd" package nil nil [7959 7978]))          
-      :file "find-cmd.el"
-      :pointmax 8006
-      :fsize 8005
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [2380 2397])
-            ("kmacro" include nil nil [2398 2415])
-            ("edmacro-eight-bits" variable nil nil [2466 2673])
-            ("edmacro-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "" (quote edmacro-finish-edit)) (define-key map "" (quote edmacro-insert-key)) map)) nil [2675 2850])
-            ("edmacro-store-hook" variable nil nil [2852 2879])
-            ("edmacro-finish-hook" variable nil nil [2880 2908])
-            ("edmacro-original-buffer" variable nil nil [2909 2941])
-            ("edit-kbd-macro" function
-               (:user-visible-flag t
-                :arguments ("keys" "prefix" "finish-hook" "store-hook"))
-                nil [2958 6792])
-            ("edit-last-kbd-macro" function
-               (:user-visible-flag t
-                :arguments ("prefix"))
-                nil [6897 7061])
-            ("edit-named-kbd-macro" function
-               (:user-visible-flag t
-                :arguments ("prefix"))
-                nil [7078 7277])
-            ("read-kbd-macro" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [7294 8100])
-            ("format-kbd-macro" function (:arguments ("macro" "verbose")) nil [8117 8596])
-            ("edmacro-finish-edit" function nil nil [8638 12824])
-            ("edmacro-insert-key" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [12826 13050])
-            ("edmacro-mode" function (:user-visible-flag t) nil [13052 16277])
-            ("put" code nil nil [16278 16318])
-            ("edmacro-format-keys" function (:arguments ("macro" "verbose")) nil [16378 23120])
-            ("edmacro-sanitize-for-string" function (:arguments ("seq")) nil [23122 23530])
-            ("edmacro-fix-menu-commands" function (:arguments ("macro" "noerror")) nil [23532 24313])
-            ("edmacro-parse-keys" function (:arguments ("string" "need-vector")) nil [24362 28248])
-            ("edmacro" package nil nil [28250 28268]))          
-      :file "edmacro.el"
-      :pointmax 28295
-      :fsize 28294
-      :lastmodtime '(23525 29506 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "kmacro.el"
-      :fsize 46697
-      :lastmodtime '(23525 29512 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("filesets-version" variable (:default-value "1.8.4") nil [904 937])
-            ("filesets-homepage" variable (:default-value "http://members.a1.net/t.link/CompEmacsFilesets.html") nil [938 1020])
-            ("cl-lib" include nil nil [2966 2983])
-            ("filesets-menu-cache" variable nil nil [3006 3067])
-            ("filesets-cache-version" variable nil nil [3068 3140])
-            ("filesets-cache-hostname" variable nil nil [3141 3211])
-            ("filesets-ingroup-cache" variable nil nil [3213 3301])
-            ("filesets-ingroup-files" variable nil nil [3302 3408])
-            ("filesets-has-changed-flag" variable (:default-value t) nil [3410 3501])
-            ("filesets-submenus" variable nil nil [3502 3581])
-            ("filesets-updated-buffers" variable nil nil [3582 3665])
-            ("filesets-menu-use-cached-flag" variable nil nil [3666 3781])
-            ("filesets-update-cache-file-flag" variable nil nil [3782 3870])
-            ("filesets-ignore-next-set-default" variable nil nil [3871 3995])
-            ("filesets-output-buffer-flag" variable nil nil [3997 4141])
-            ("filesets-verbosity" variable (:default-value 1) nil [4143 4248])
-            ("filesets-menu-ensure-use-cached" variable (:default-value (and (featurep (quote xemacs)) (if (fboundp (quote emacs-version>=)) (not (emacs-version>= 21 5))))) nil [4250 5156])
-            ("filesets-filter-list" function (:arguments ("lst" "cond-fn")) nil [5169 5531])
-            ("filesets-ormap" function (:arguments ("fsom-pred" "lst")) nil [5533 5856])
-            ("filesets-some" function (:arguments ("fss-pred" "fss-lst")) nil [5858 6175])
-            ("filesets-member" function (:arguments ("fsm-item" "fsm-lst" "fsm-keys")) nil [6235 6617])
-            ("filesets-sublist" function (:arguments ("lst" "beg" "end")) nil [6681 6939])
-            ("filesets-select-command" function (:arguments ("cmd-list")) nil [6941 7287])
-            ("filesets-which-command" function (:arguments ("cmd")) nil [7289 7401])
-            ("filesets-which-command-p" function (:arguments ("cmd")) nil [7403 7607])
-            ("filesets-message" function (:arguments ("level" "args")) nil [7609 7803])
-            ("filesets-save-config" function (:user-visible-flag t) nil [7822 7934])
-            ("filesets-reset-fileset" function (:arguments ("fileset" "no-cache")) nil [7936 8312])
-            ("filesets-set-config" function (:arguments ("fileset" "var" "val")) nil [8314 8452])
-            ("filesets-set-default" function (:arguments ("sym" "val" "init-flag")) nil [8694 9353])
-            ("filesets-set-default!" function (:arguments ("sym" "val")) nil [9355 9538])
-            ("filesets-set-default+" function (:arguments ("sym" "val")) nil [9540 9725])
-            ("filesets-data" variable nil nil [9765 9787])
-            ("filesets-data-set-default" function (:arguments ("sym" "val")) nil [9789 10355])
-            ("filesets" customgroup (:user-visible-flag t) nil [10376 10486])
-            ("filesets-menu-name" variable (:default-value "Filesets") nil [10488 10628])
-            ("filesets-menu-path" variable (:default-value (quote ("File"))) nil [10630 10955])
-            ("filesets-menu-before" variable (:default-value "Open File...") nil [10957 11300])
-            ("filesets-menu-in-menu" variable nil nil [11302 11513])
-            ("filesets-menu-shortcuts-flag" variable (:default-value t) nil [11515 11701])
-            ("filesets-menu-shortcuts-marker" variable (:default-value "%_") nil [11703 11864])
-            ("filesets-menu-cache-file" variable (:default-value (locate-user-emacs-file "filesets-cache.el")) nil [12074 12404])
-            ("put" code nil nil [12405 12460])
-            ("filesets-menu-cache-contents" variable (:default-value (quote (filesets-be-docile-flag filesets-submenus filesets-menu-cache filesets-ingroup-cache))) nil [12462 14044])
-            ("define-obsolete-variable-alias" code nil nil [14046 14156])
-            ("filesets-cache-fill-content-hook" variable nil nil [14157 14835])
-            ("filesets-cache-hostname-flag" variable nil nil [14837 15089])
-            ("filesets-cache-save-often-flag" variable nil nil [15091 15474])
-            ("filesets-max-submenu-length" variable (:default-value 25) nil [15476 15755])
-            ("filesets-max-entry-length" variable (:default-value 50) nil [15757 15925])
-            ("filesets-browse-dir-function" variable (:default-value (quote dired)) nil [15927 16481])
-            ("filesets-open-file-function" variable (:default-value (quote filesets-find-or-display-file)) nil [16483 17366])
-            ("filesets-save-buffer-function" variable (:default-value (quote save-buffer)) nil [17368 17714])
-            ("filesets-find-file-delay" variable (:default-value (if (and (featurep (quote xemacs)) gutter-buffers-tab-visible-p) 0.5 0)) nil [17716 18075])
-            ("filesets-be-docile-flag" variable nil nil [18077 18357])
-            ("filesets-sort-menu-flag" variable (:default-value t) nil [18359 18528])
-            ("filesets-sort-case-sensitive-flag" variable (:default-value t) nil [18530 18718])
-            ("filesets-tree-max-level" variable (:default-value 3) nil [18720 19491])
-            ("filesets-commands" variable (:default-value (\` (("Isearch" multi-isearch-files (filesets-cmd-isearch-getargs)) ("Isearch (regexp)" multi-isearch-files-regexp (filesets-cmd-isearch-getargs)) ("Query Replace" perform-replace (filesets-cmd-query-replace-getargs)) ("Query Replace (regexp)" perform-replace (filesets-cmd-query-replace-regexp-getargs)) ("Grep <<selection>>" "grep" ("-n " filesets-get-quoted-selection " " "<<file-name>>")) ("Run Shell Command" filesets-cmd-shell-command (filesets-cmd-shell-command-getargs))))) nil [19493 20921])
-            ("put" code nil nil [20922 20970])
-            ("filesets-external-viewers" variable (:default-value (let ((ps-cmd "ggv") (pdf-cmd "xpdf") (dvi-cmd "xdvi") (doc-cmd "antiword") (pic-cmd "gqview")) (\` (("^.+\\..?html?$" browse-url ((:ignore-on-open-all t))) ("^.+\\.pdf$" (\, pdf-cmd) ((:ignore-on-open-all t) (:ignore-on-read-text t) (:constraint-flag (\, pdf-cmd)))) ("^.+\\.e?ps\\(.gz\\)?$" (\, ps-cmd) ((:ignore-on-open-all t) (:ignore-on-read-text t) (:constraint-flag (\, ps-cmd)))) ("^.+\\.dvi$" (\, dvi-cmd) ((:ignore-on-open-all t) (:ignore-on-read-text t) (:constraint-flag (\, dvi-cmd)))) ("^.+\\.doc$" (\, doc-cmd) ((:capture-output t) (:ignore-on-read-text t) (:constraint-flag (\, doc-cmd)))) ("^.+\\.\\(tiff\\|xpm\\|gif\\|pgn\\)$" (\, pic-cmd) ((:ignore-on-open-all t) (:ignore-on-read-text t) (:constraint-flag (\, pic-cmd)))))))) nil [20972 25990])
-            ("put" code nil nil [25991 26047])
-            ("filesets-ingroup-patterns" variable (:default-value (quote (("^.+\\.tex$" t (((:name "Package") (:pattern "\\\\usepackage\\W*\\(\\[[^]]*\\]\\W*\\)?{\\W*\\(.+\\)\\W*}") (:match-number 2) (:stub-flag t) (:get-file-name (lambda (master file) (filesets-which-file master (concat file ".sty") (filesets-convert-path-list (or (getenv "MY_TEXINPUTS") (getenv "TEXINPUTS"))))))) ((:name "Include") (:pattern "\\\\include\\W*{\\W*\\(.+\\)\\W*}") (:get-file-name (lambda (master file) (filesets-which-file master (concat file ".tex") (filesets-convert-path-list (or (getenv "MY_TEXINPUTS") (getenv "TEXINPUTS")))))) (:scan-depth 5)) ((:name "Input") (:pattern "\\\\input\\W*{\\W*\\(.+\\)\\W*}") (:stubp (lambda (a b) (not (filesets-files-in-same-directory-p a b)))) (:get-file-name (lambda (master file) (filesets-which-file master (concat file ".tex") (filesets-convert-path-list (or (getenv "MY_TEXINPUTS") (getenv "TEXINPUTS")))))) (:scan-depth 5)) ((:name "Bibliography") (:pattern "\\\\bibliography\\W*{\\W*\\(.+\\)\\W*}") (:get-file-name (lambda (master file) (filesets-which-file master (concat file ".bib") (filesets-convert-path-list (or (getenv "MY_BIBINPUTS") (getenv "BIBINPUTS"))))))))) ("^.+\\.el$" t (((:name "Require") (:pattern "(require\\W+'\\(.+\\))") (:stubp (lambda (a b) (not (filesets-files-in-same-directory-p a b)))) (:get-file-name (lambda (master file) (filesets-which-file master (concat file ".el") load-path)))) ((:name "Load") (:pattern "(load\\(-library\\)?\\W+\"\\(.+\\)\")") (:match-number 2) (:get-file-name (lambda (master file) (filesets-which-file master file load-path)))))) ("^\\([A-ZÄÖÜ][a-zäöüß]+\\([A-ZÄÖÜ][a-zäöüß]+\\)+\\)$" t (((:pattern "\\<\\([A-ZÄÖÜ][a-zäöüß]+\\([A-ZÄÖÜ][a-zäöüß]+\\)+\\)\\>") (:scan-depth 5) (:stubp (lambda (a b) (not (filesets-files-in-same-directory-p a b)))) (:case-sensitive t) (:get-file-name (lambda (master file) (filesets-which-file master file (if (boundp (quote emacs-wiki-directories)) emacs-wiki-directories nil)))))))))) nil [26049 32640])
-            ("put" code nil nil [32641 32697])
-            ("filesets-data" variable nil nil [32699 37288])
-            ("put" code nil nil [37289 37333])
-            ("filesets-query-user-limit" variable (:default-value 15) nil [37336 37517])
-            ("if" code nil nil [37564 37777])
-            ("filesets-filter-dir-names" function (:arguments ("lst" "negative")) nil [37780 38136])
-            ("filesets-conditional-sort" function (:arguments ("lst" "access-fn")) nil [38138 38739])
-            ("filesets-directory-files" function (:arguments ("dir" "pattern" "what" "full-flag" "match-dirs-flag")) nil [38741 40220])
-            ("filesets-quote" function (:arguments ("txt")) nil [40222 40301])
-            ("filesets-get-selection" function nil nil [40303 40540])
-            ("filesets-get-quoted-selection" function nil nil [40542 40676])
-            ("filesets-get-shortcut" function (:arguments ("n")) nil [40678 40999])
-            ("filesets-files-equalp" function (:arguments ("a" "b")) nil [41001 41139])
-            ("filesets-files-in-same-directory-p" function (:arguments ("a" "b")) nil [41141 41365])
-            ("filesets-convert-path-list" function (:arguments ("string")) nil [41367 41579])
-            ("filesets-which-file" function (:arguments ("master" "filename" "path-list")) nil [41581 42151])
-            ("filesets-eviewer-get-props" function (:arguments ("entry")) nil [42154 42274])
-            ("filesets-eviewer-constraint-p" function (:arguments ("entry")) nil [42276 42624])
-            ("filesets-get-external-viewer" function (:arguments ("file")) nil [42626 42941])
-            ("filesets-get-external-viewer-by-name" function (:arguments ("name")) nil [42943 43237])
-            ("filesets-filetype-property" function (:arguments ("filename" "event" "entry")) nil [43239 44044])
-            ("filesets-filetype-get-prop" function (:arguments ("property" "filename" "entry")) nil [44046 44343])
-            ("filesets-reset-filename-on-change" function nil nil [44345 44523])
-            ("filesets-spawn-external-viewer" function (:arguments ("file" "ev-entry")) nil [44525 46175])
-            ("filesets-find-file" function (:arguments ("file")) nil [46177 46548])
-            ("filesets-find-or-display-file" function
-               (:user-visible-flag t
-                :arguments ("file" "viewer"))
-                nil [46550 47107])
-            ("filesets-find-file-using" function (:user-visible-flag t) nil [47109 47497])
-            ("filesets-browser-name" function nil nil [47499 47744])
-            ("filesets-browse-dir" function (:arguments ("dir")) nil [47746 48197])
-            ("filesets-get-fileset-name" function (:arguments ("something")) nil [48199 48355])
-            ("filesets-data-get-name" function (:arguments ("entry")) nil [48357 48463])
-            ("filesets-data-get-data" function (:arguments ("entry")) nil [48465 48579])
-            ("filesets-alist-get" function (:arguments ("alist" "key" "default" "carp")) nil [48581 48901])
-            ("filesets-data-get" function (:arguments ("entry" "key" "default" "carp")) nil [48903 49168])
-            ("filesets-data-set" function (:arguments ("entry" "key" "value")) nil [49170 49434])
-            ("filesets-entry-mode" function (:arguments ("entry")) nil [49436 49734])
-            ("filesets-entry-get-open-fn" function (:arguments ("fileset-name" "fileset-entry")) nil [49736 50050])
-            ("filesets-entry-get-save-fn" function (:arguments ("fileset-name" "fileset-entry")) nil [50052 50368])
-            ("filesets-entry-get-files" function (:arguments ("entry")) nil [50370 50487])
-            ("filesets-entry-set-files" function (:arguments ("entry" "data" "anyways")) nil [50489 50712])
-            ("filesets-entry-get-verbosity" function (:arguments ("entry")) nil [50714 50845])
-            ("filesets-entry-get-file" function (:arguments ("entry")) nil [50847 50970])
-            ("filesets-entry-get-pattern" function (:arguments ("entry")) nil [50972 51159])
-            ("filesets-entry-get-pattern--pattern" function (:arguments ("list")) nil [51161 51375])
-            ("filesets-entry-get-pattern--dir" function (:arguments ("list")) nil [51377 51598])
-            ("filesets-entry-get-tree" function (:arguments ("entry")) nil [51600 51718])
-            ("filesets-entry-get-dormant-flag" function (:arguments ("entry")) nil [51720 51945])
-            ("filesets-entry-get-filter-dirs-flag" function (:arguments ("entry")) nil [51947 52095])
-            ("filesets-entry-get-tree-max-level" function (:arguments ("entry")) nil [52097 52252])
-            ("filesets-entry-get-master" function (:arguments ("entry")) nil [52254 52380])
-            ("filesets-file-open" function (:arguments ("open-function" "file-name" "fileset-name")) nil [52382 52789])
-            ("filesets-file-close" function (:arguments ("save-function" "buffer")) nil [52791 53178])
-            ("filesets-get-fileset-from-name" function (:arguments ("name" "mode")) nil [53180 53360])
-            ("filesets-cmd-get-def" function (:arguments ("cmd-name")) nil [53376 53500])
-            ("filesets-cmd-get-args" function (:arguments ("cmd-name")) nil [53502 53840])
-            ("filesets-cmd-get-fn" function (:arguments ("cmd-name")) nil [53842 53944])
-            ("filesets-cmd-show-result" function (:arguments ("cmd" "output")) nil [53946 54201])
-            ("filesets-run-cmd--repl-fn" function (:arguments ("arg" "format-fn")) nil [54203 54590])
-            ("filesets-run-cmd" function
-               (:user-visible-flag t
-                :arguments ("cmd-name" "fileset" "mode"))
-                nil [54592 56331])
-            ("filesets-get-cmd-menu" function nil nil [56333 56543])
-            ("filesets-cmd-query-replace-getargs" function nil nil [56566 56846])
-            ("filesets-cmd-query-replace-regexp-getargs" function nil nil [56848 57131])
-            ("filesets-cmd-isearch-getargs" function nil nil [57133 57287])
-            ("filesets-cmd-shell-command-getargs" function nil nil [57289 57497])
-            ("filesets-cmd-shell-command" function (:arguments ("txt")) nil [57499 57900])
-            ("filesets-get-filelist" function (:arguments ("entry" "mode" "event")) nil [57912 59128])
-            ("filesets-open" function
-               (:user-visible-flag t
-                :arguments ("mode" "name" "lookup-name"))
-                nil [59130 60081])
-            ("filesets-close" function
-               (:user-visible-flag t
-                :arguments ("mode" "name" "lookup-name"))
-                nil [60083 61000])
-            ("filesets-add-buffer" function
-               (:user-visible-flag t
-                :arguments ("name" "buffer"))
-                nil [61002 62358])
-            ("filesets-remove-buffer" function
-               (:user-visible-flag t
-                :arguments ("name" "buffer"))
-                nil [62360 63271])
-            ("filesets-convert-patterns" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [63273 63693])
-            ("filesets-edit" function (:user-visible-flag t) nil [63695 63804])
-            ("filesets-customize" function (:user-visible-flag t) nil [63806 63915])
-            ("filesets-info" function (:user-visible-flag t) nil [63917 64109])
-            ("filesets-goto-homepage" function (:user-visible-flag t) nil [64111 64223])
-            ("filesets-remake-shortcut" function (:arguments ("count" "submenu")) nil [64225 64540])
-            ("filesets-wrap-submenu" function (:arguments ("submenu-body")) nil [64590 65967])
-            ("filesets-get-menu-epilog" function (:arguments ("something" "mode" "lookup-name" "rebuild-flag")) nil [65969 68223])
-            ("filesets-ingroup-get-data" function (:arguments ("master" "pos" "fun")) nil [68225 68644])
-            ("filesets-ingroup-get-pattern" function (:arguments ("master")) nil [68646 68792])
-            ("filesets-ingroup-get-remdupl-p" function (:arguments ("master")) nil [68794 68956])
-            ("filesets-ingroup-collect-finder" function (:arguments ("patt" "case-sensitivep")) nil [68958 69272])
-            ("filesets-ingroup-cache-get" function (:arguments ("master")) nil [69274 69405])
-            ("filesets-ingroup-cache-put" function (:arguments ("master" "file")) nil [69407 69720])
-            ("filesets-ingroup-collect-files" function (:arguments ("fs" "remdupl-flag" "master" "depth")) nil [69722 72254])
-            ("filesets-ingroup-collect-build-menu" function (:arguments ("fs" "flist" "other-count")) nil [72256 73688])
-            ("filesets-ingroup-collect" function (:arguments ("fs" "remdupl-flag" "master")) nil [73690 74002])
-            ("filesets-build-ingroup-submenu" function (:arguments ("lookup-name" "master")) nil [74004 74474])
-            ("filesets-build-dir-submenu-now" function (:arguments ("level" "depth" "entry" "lookup-name" "dir" "patt" "fd" "rebuild-flag")) nil [74476 76132])
-            ("filesets-build-dir-submenu" function (:arguments ("entry" "lookup-name" "dir" "patt")) nil [76134 76540])
-            ("filesets-build-submenu" function (:arguments ("count" "lookup-name" "entry")) nil [76542 79159])
-            ("filesets-remove-from-ubl" function (:arguments ("buffer")) nil [79161 79450])
-            ("filesets-build-menu-now" function (:arguments ("from-scratch-flag")) nil [79452 81347])
-            ("filesets-build-menu-maybe" function (:user-visible-flag t) nil [81349 81463])
-            ("filesets-build-menu" function (:user-visible-flag t) nil [81465 81680])
-            ("filesets-rebuild-this-submenu" function (:arguments ("fileset")) nil [81682 81832])
-            ("filesets-menu-cache-file-save-maybe" function (:arguments ("simply-do-it")) nil [81834 83147])
-            ("filesets-menu-cache-file-save" function (:user-visible-flag t) nil [83149 83283])
-            ("filesets-update-cleanup" function (:user-visible-flag t) nil [83285 83625])
-            ("filesets-update-pre010505" function nil nil [83627 85073])
-            ("filesets-update" function (:arguments ("cached-version")) nil [85075 85338])
-            ("filesets-menu-cache-file-load" function nil nil [85340 85893])
-            ("filesets-exit" function nil nil [85895 85959])
-            ("filesets-init" function nil nil [85976 86765])
-            ("filesets" package nil nil [86768 86787]))          
-      :file "filesets.el"
-      :pointmax 86875
-      :fsize 86902
-      :lastmodtime '(23525 29508 0 0)
-      :unmatched-syntax '((close-paren 37777 . 37778) (symbol 37545 . 37561) (open-paren 37544 . 37545) (close-paren 2983 . 2984) (symbol 2948 . 2965) (open-paren 2947 . 2948)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("term-protocol-version" variable
-               (:constant-flag t
-                :default-value "0.96")
-                nil [12810 12849])
-            ("ange-ftp" include nil nil [12870 12889])
-            ("cl-lib" include nil nil [12910 12927])
-            ("ring" include nil nil [12929 12944])
-            ("ehelp" include nil nil [12945 12961])
-            ("declare-function" code nil nil [12963 13008])
-            ("declare-function" code nil nil [13009 13056])
-            ("declare-function" code nil nil [13057 13119])
-            ("declare-function" code nil nil [13120 13164])
-            ("declare-function" code nil nil [13165 13214])
-            ("term" customgroup (:user-visible-flag t) nil [13216 13300])
-            ("term-input-ring-size" variable (:default-value 32) nil [13781 13843])
-            ("term-height" variable nil nil [14578 14598])
-            ("term-width" variable nil nil [14647 14666])
-            ("term-home-marker" variable nil nil [14718 14743])
-            ("term-saved-home-marker" variable nil nil [14795 14925])
-            ("term-start-line-column" variable nil nil [14926 15024])
-            ("term-current-column" variable nil nil [15025 15100])
-            ("term-current-row" variable nil nil [15101 15198])
-            ("term-insert-mode" variable nil nil [15199 15228])
-            ("term-vertical-motion" variable nil nil [15229 15258])
-            ("term-terminal-state" variable nil nil [15259 15658])
-            ("term-kill-echo-list" variable nil nil [15659 15745])
-            ("term-terminal-parameter" variable nil nil [15746 15778])
-            ("term-terminal-undecoded-bytes" variable nil nil [15779 15821])
-            ("term-terminal-previous-parameter" variable nil nil [15822 15863])
-            ("term-current-face" variable (:default-value (quote term)) nil [15864 15896])
-            ("term-scroll-start" variable nil nil [15897 15974])
-            ("term-scroll-end" variable nil nil [15975 15999])
-            ("term-pager-count" variable nil nil [16054 16155])
-            ("term-saved-cursor" variable nil nil [16156 16186])
-            ("term-command-hook" variable nil nil [16187 16213])
-            ("term-log-buffer" variable nil nil [16214 16242])
-            ("term-scroll-with-delete" variable nil nil [16243 16524])
-            ("term-pending-delete-marker" variable nil nil [16525 16560])
-            ("term-old-mode-map" variable nil nil [16732 16804])
-            ("term-old-mode-line-format" variable nil nil [16805 16839])
-            ("term-pager-old-local-map" variable nil nil [16883 16953])
-            ("term-pager-old-filter" variable nil nil [16954 16984])
-            ("defvar-local" code nil nil [17022 17133])
-            ("explicit-shell-file-name" variable nil nil [17135 17302])
-            ("term-prompt-regexp" variable (:default-value "^") nil [17304 17741])
-            ("term-delimiter-argument-list" variable nil nil [17743 18172])
-            ("term-input-autoexpand" variable nil nil [18174 18692])
-            ("term-input-ignoredups" variable nil nil [18694 18908])
-            ("term-input-ring-file-name" variable nil nil [18910 19180])
-            ("term-char-mode-buffer-read-only" variable (:default-value t) nil [19182 19691])
-            ("term-char-mode-point-at-process-mark" variable (:default-value t) nil [19693 20527])
-            ("term-scroll-to-bottom-on-output" variable nil nil [20529 20962])
-            ("term-scroll-show-maximum-output" variable nil nil [20964 21254])
-            ("term-suppress-hard-newline" variable nil nil [21256 21488])
-            ("term-pending-frame" variable nil nil [21659 21690])
-            ("term-get-old-input" variable (:default-value (function term-get-old-input-default)) nil [21732 22112])
-            ("term-dynamic-complete-functions" variable (:default-value (quote (term-replace-by-expanded-history term-dynamic-complete-filename))) nil [22114 22414])
-            ("term-input-filter" variable (:default-value (function (lambda (str) (not (string-match "\\`\\s *\\'" str))))) nil [22416 22702])
-            ("term-input-filter-functions" variable (:default-value (quote nil)) nil [22704 22907])
-            ("term-input-sender" variable (:default-value (function term-simple-send)) nil [22909 23261])
-            ("term-partial-ansi-terminal-message" variable nil nil [23263 23373])
-            ("term-eol-on-send" variable (:default-value t) nil [23375 23526])
-            ("term-mode-hook" variable (:default-value (quote nil)) nil [23528 23671])
-            ("term-exec-hook" variable (:default-value (quote nil)) nil [23673 24058])
-            ("term-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "p" (quote term-previous-input)) (define-key map "n" (quote term-next-input)) (define-key map "r" (quote term-previous-matching-input)) (define-key map "s" (quote term-next-matching-input)) (unless (featurep (quote xemacs)) (define-key map [138412146] (quote term-previous-matching-input-from-input)) (define-key map [138412147] (quote term-next-matching-input-from-input))) (define-key map "" (quote term-show-output)) (define-key map "
" (quote term-send-input)) (define-key map "" (quote term-delchar-or-maybe-eof)) (define-key map "" (quote term-bol)) (define-key map "" (quote term-kill-input)) (define-key map "" (quote backward-kill-word)) (define-key map "" (quote term-interrupt-subjob)) (define-key map "" (quote term-stop-subjob)) (define-key map "" (quote term-quit-subjob)) (define-key map "
" (quote term-copy-old-input)) (define-key map "" (quote term-kill-output)) (define-key map "" (quote term-show-output)) (define-key map "" (quote term-show-maximum-output)) (define-key map "" (quote term-dynamic-list-input-ring)) (define-key map "" (quote term-next-prompt)) (define-key map "" (quote term-previous-prompt)) (define-key map "" (quote term-send-eof)) (define-key map "" (quote term-char-mode)) (define-key map "
-" (quote term-line-mode)) (define-key map "" (quote term-pager-toggle)) (easy-menu-define nil map "Complete menu for Term mode." (quote ("Complete" ["Complete Before Point" term-dynamic-complete t] ["Complete File Name" term-dynamic-complete-filename t] ["File Completion Listing" term-dynamic-list-filename-completions t] ["Expand File Name" term-replace-by-expanded-filename t]))) (easy-menu-define nil map "In/Out menu for Term mode." (quote ("In/Out" ["Expand History Before Point" term-replace-by-expanded-history term-input-autoexpand] ["List Input History" term-dynamic-list-input-ring t] ["Previous Input" term-previous-input t] ["Next Input" term-next-input t] ["Previous Matching Current Input" term-previous-matching-input-from-input t] ["Next Matching Current Input" term-next-matching-input-from-input t] ["Previous Matching Input..." term-previous-matching-input t] ["Next Matching Input..." term-next-matching-input t] ["Backward Matching Input..." term-backward-matching-input t] ["Forward Matching Input..." term-forward-matching-input t] ["Copy Old Input" term-copy-old-input t] ["Kill Current Input" term-kill-input t] ["Show Current Output Group" term-show-output t] ["Show Maximum Output" term-show-maximum-output t] ["Backward Output Group" term-previous-prompt t] ["Forward Output Group" term-next-prompt t] ["Kill Current Output Group" term-kill-output t]))) map)) nil [24060 27131])
-            ("term-escape-char" variable nil nil [27133 27278])
-            ("term-pager-break-map" variable (:default-value (let ((map (make-keymap))) (define-key map "" (lookup-key (current-global-map) "")) (define-key map "" (lookup-key (current-global-map) "")) (define-key map "" (lookup-key (current-global-map) "")) (define-key map " " (quote term-pager-page)) (define-key map "
" (quote term-pager-line)) (define-key map "?" (quote term-pager-help)) (define-key map "h" (quote term-pager-help)) (define-key map "b" (quote term-pager-back-page)) (define-key map "" (quote term-pager-back-line)) (define-key map "q" (quote term-pager-discard)) (define-key map "D" (quote term-pager-disable)) (define-key map "<" (quote term-pager-bob)) (define-key map ">" (quote term-pager-eob)) map)) nil [27280 28108])
-            ("term-ptyp" variable (:default-value t) nil [28110 28256])
-            ("term-last-input-match" variable nil nil [28258 28389])
-            ("term-input-ring" variable nil nil [28391 28419])
-            ("term-last-input-start" variable nil nil [28420 28450])
-            ("term-last-input-end" variable nil nil [28451 28479])
-            ("term-input-ring-index" variable nil nil [28480 28557])
-            ("term-matching-input-from-input-string" variable nil nil [28558 28657])
-            ("term-pager-filter" variable (:default-value t) nil [28772 28800])
-            ("put" code nil nil [28802 28843])
-            ("put" code nil nil [28844 28891])
-            ("put" code nil nil [28892 28939])
-            ("put" code nil nil [28940 28993])
-            ("put" code nil nil [28994 29051])
-            ("put" code nil nil [29052 29109])
-            ("put" code nil nil [29110 29145])
-            ("term-in-char-mode" function nil nil [29147 29217])
-            ("term-in-line-mode" function nil nil [29218 29276])
-            ("term-pager-enabled" function nil nil [29320 29370])
-            ("term-handling-pager" function nil nil [29371 29430])
-            ("term-using-alternate-sub-buffer" function nil nil [29431 29500])
-            ("term-ansi-at-host" variable nil nil [29541 29571])
-            ("term-ansi-at-dir" variable nil nil [29572 29601])
-            ("term-ansi-at-user" variable nil nil [29602 29632])
-            ("term-ansi-at-message" variable nil nil [29633 29666])
-            ("term-ansi-at-save-user" variable nil nil [29667 29702])
-            ("term-ansi-at-save-pwd" variable nil nil [29703 29737])
-            ("term-ansi-at-save-anon" variable nil nil [29738 29773])
-            ("term-ansi-current-bold" variable nil nil [29774 29809])
-            ("term-ansi-current-color" variable nil nil [29810 29844])
-            ("term-ansi-face-already-done" variable nil nil [29845 29885])
-            ("term-ansi-current-bg-color" variable nil nil [29886 29923])
-            ("term-ansi-current-underline" variable nil nil [29924 29964])
-            ("term-ansi-current-reverse" variable nil nil [29965 30003])
-            ("term-ansi-current-invisible" variable nil nil [30004 30044])
-            ("term-terminal-more-parameters" variable nil nil [30104 30144])
-            ("term-terminal-previous-parameter-2" variable (:default-value -1) nil [30145 30191])
-            ("term-terminal-previous-parameter-3" variable (:default-value -1) nil [30192 30238])
-            ("term-terminal-previous-parameter-4" variable (:default-value -1) nil [30239 30285])
-            ("ansi-term-color-vector" variable (:default-value [term term-color-black term-color-red term-color-green term-color-yellow term-color-blue term-color-magenta term-color-cyan term-color-white]) nil [30297 30496])
-            ("term-default-fg-color" variable nil nil [30498 30661])
-            ("make-obsolete-variable" code nil nil [30662 30771])
-            ("term-default-bg-color" variable nil nil [30773 30936])
-            ("make-obsolete-variable" code nil nil [30937 31046])
-            ("term" variable
-               (:default-value (\` ((t :foreground (\, term-default-fg-color) :background (\, term-default-bg-color) :inherit default)))
-                :type "face")
-                nil [31048 31226])
-            ("term-bold" variable
-               (:default-value (quote ((t :bold t)))
-                :type "face")
-                nil [31228 31318])
-            ("term-underline" variable
-               (:default-value (quote ((t :underline t)))
-                :type "face")
-                nil [31320 31426])
-            ("term-color-black" variable
-               (:default-value (quote ((t :foreground "black" :background "black")))
-                :type "face")
-                nil [31428 31560])
-            ("term-color-red" variable
-               (:default-value (quote ((t :foreground "red3" :background "red3")))
-                :type "face")
-                nil [31562 31688])
-            ("term-color-green" variable
-               (:default-value (quote ((t :foreground "green3" :background "green3")))
-                :type "face")
-                nil [31690 31824])
-            ("term-color-yellow" variable
-               (:default-value (quote ((t :foreground "yellow3" :background "yellow3")))
-                :type "face")
-                nil [31826 31964])
-            ("term-color-blue" variable
-               (:default-value (quote ((t :foreground "blue2" :background "blue2")))
-                :type "face")
-                nil [31966 32096])
-            ("term-color-magenta" variable
-               (:default-value (quote ((t :foreground "magenta3" :background "magenta3")))
-                :type "face")
-                nil [32098 32240])
-            ("term-color-cyan" variable
-               (:default-value (quote ((t :foreground "cyan3" :background "cyan3")))
-                :type "face")
-                nil [32242 32372])
-            ("term-color-white" variable
-               (:default-value (quote ((t :foreground "white" :background "white")))
-                :type "face")
-                nil [32374 32506])
-            ("term-buffer-maximum-size" variable (:default-value 2048) nil [32547 32837])
-            ("term-raw-map" variable (:default-value (let* ((map (make-keymap)) (esc-map (make-keymap)) (i 0)) (while (< i 128) (define-key map (make-string 1 i) (quote term-send-raw)) (unless (or (eq i 79) (eq i 91)) (define-key esc-map (make-string 1 i) (quote term-send-raw-meta))) (setq i (1+ i))) (define-key map [remap self-insert-command] (quote term-send-raw)) (define-key map "" esc-map) (if (featurep (quote xemacs)) (define-key map [button2] (quote term-mouse-paste)) (define-key map [mouse-2] (quote term-mouse-paste))) (define-key map [up] (quote term-send-up)) (define-key map [down] (quote term-send-down)) (define-key map [right] (quote term-send-right)) (define-key map [left] (quote term-send-left)) (define-key map [C-up] (quote term-send-ctrl-up)) (define-key map [C-down] (quote term-send-ctrl-down)) (define-key map [C-right] (quote term-send-ctrl-right)) (define-key map [C-left] (quote term-send-ctrl-left)) (define-key map [delete] (quote term-send-del)) (define-key map [deletechar] (quote term-send-del)) (define-key map [backspace] (quote term-send-backspace)) (define-key map [home] (quote term-send-home)) (define-key map [end] (quote term-send-end)) (define-key map [insert] (quote term-send-insert)) (define-key map [S-prior] (quote scroll-down)) (define-key map [S-next] (quote scroll-up)) (define-key map [S-insert] (quote term-paste)) (define-key map [prior] (quote term-send-prior)) (define-key map [next] (quote term-send-next)) (define-key map [xterm-paste] (function term--xterm-paste)) map)) nil [32870 34543])
-            ("easy-menu-define" code nil nil [34545 35039])
-            ("easy-menu-define" code nil nil [35041 35726])
-            ("easy-menu-define" code nil nil [35728 36220])
-            ("term-raw-escape-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map (quote Control-X-prefix)) (define-key map "" (lookup-key (current-global-map) "")) (define-key map "" (lookup-key (current-global-map) "")) (define-key map "" (quote term-pager-toggle)) (define-key map "" (quote term-char-mode)) (define-key map "
-" (quote term-line-mode)) (define-key map [134217848] (quote execute-extended-command)) map)) nil [36222 36859])
-            ("term-set-escape-char" function (:arguments ("key")) nil [36861 37389])
-            ("term-set-escape-char" code nil nil [37391 37441])
-            ("put" code nil nil [37445 37482])
-            ("term-display-table" variable (:default-value (let ((dt (or (copy-sequence standard-display-table) (make-display-table))) i) (setq i 0) (while (< i 10) (aset dt i (vector i)) (setq i (1+ i))) (setq i 11) (while (< i 32) (aset dt i (vector i)) (setq i (1+ i))) (setq i 128) (while (< i 256) (aset dt i (vector i)) (setq i (1+ i))) dt)) nil [37542 37980])
-            ("term-ansi-reset" function nil nil [37982 38497])
-            ("define-derived-mode" code nil nil [38499 45215])
-            ("term-reset-size" function (:arguments ("height" "width")) nil [45218 45839])
-            ("term-check-kill-echo-list" function nil nil [46274 46900])
-            ("term-send-raw-string" function (:arguments ("chars")) nil [46902 47348])
-            ("term-send-raw" function (:user-visible-flag t) nil [47350 47586])
-            ("term-send-raw-meta" function nil nil [47588 48181])
-            ("term-mouse-paste" function
-               (:user-visible-flag t
-                :arguments ("click"))
-                nil [48183 48669])
-            ("term-paste" function (:user-visible-flag t) nil [48671 48804])
-            ("term--xterm-paste" function (:user-visible-flag t) nil [48806 48962])
-            ("declare-function" code nil nil [48964 49017])
-            ("term-send-up" function nil nil [49292 49362])
-            ("term-send-down" function nil nil [49363 49433])
-            ("term-send-right" function nil nil [49434 49504])
-            ("term-send-left" function nil nil [49505 49575])
-            ("term-send-ctrl-up" function nil nil [49576 49654])
-            ("term-send-ctrl-down" function nil nil [49655 49733])
-            ("term-send-ctrl-right" function nil nil [49734 49812])
-            ("term-send-ctrl-left" function nil nil [49813 49891])
-            ("term-send-home" function nil nil [49892 49963])
-            ("term-send-insert" function nil nil [49964 50035])
-            ("term-send-end" function nil nil [50036 50107])
-            ("term-send-prior" function nil nil [50108 50179])
-            ("term-send-next" function nil nil [50180 50251])
-            ("term-send-del" function nil nil [50252 50323])
-            ("term-send-backspace" function nil nil [50324 50399])
-            ("term-char-mode" function (:user-visible-flag t) nil [50402 51623])
-            ("term-line-mode" function (:user-visible-flag t) nil [51625 52197])
-            ("term-line-mode-buffer-read-only-update" function nil nil [52199 52468])
-            ("term-update-mode-line" function nil nil [52470 54828])
-            ("term-check-proc" function (:arguments ("buffer")) nil [54830 55110])
-            ("make-term" function (:arguments ("name" "program" "startfile" "switches")) nil [55127 55930])
-            ("term" function
-               (:user-visible-flag t
-                :arguments ("program"))
-                nil [55947 56443])
-            ("term-exec" function (:arguments ("buffer" "name" "command" "startfile" "switches")) nil [56445 57835])
-            ("term-sentinel" function (:arguments ("proc" "msg")) nil [57837 58600])
-            ("term-handle-exit" function (:arguments ("process-name" "msg")) nil [58602 59266])
-            ("term-term-name" variable (:default-value "eterm-color") nil [59269 59404])
-            ("term-termcap-format" variable (:default-value "%s%s:li#%d:co#%d:cl=\\E[H\\E[J:cd=\\E[J:bs:am:xn:cm=\\E[%%i%%d;%%dH:nd=\\E[C:up=\\E[A:ce=\\E[K:ho=\\E[H:pt:al=\\E[L:dl=\\E[M:DL=\\E[%%dM:AL=\\E[%%dL:cs=\\E[%%i%%d;%%dr:sf=^J:dc=\\E[P:DC=\\E[%%dP:IC=\\E[%%d@:im=\\E[4h:ei=\\E[4l:mi::so=\\E[7m:se=\\E[m:us=\\E[4m:ue=\\E[m:md=\\E[1m:mr=\\E[7m:me=\\E[m:UP=\\E[%%dA:DO=\\E[%%dB:LE=\\E[%%dD:RI=\\E[%%dC:kl=\\EOD:kd=\\EOB:kr=\\EOC:ku=\\EOA:kN=\\E[6~:kP=\\E[5~:@7=\\E[4~:kh=\\E[1~:mk=\\E[8m:cb=\\E[1K:op=\\E[39;49m:Co#8:pa#64:AB=\\E[4%%dm:AF=\\E[3%%dm:cr=^M:bl=^G:do=^J:le=^H:ta=^I:se=\\E[27m:ue=\\E[24m:kb=^?:kD=^[[3~:sc=\\E7:rc=\\E8:r1=\\Ec:") nil [59495 60244])
-            ("term-exec-1" function (:arguments ("name" "buffer" "command" "switches")) nil [60345 61999])
-            ("term-read-input-ring" function (:arguments ("silent")) nil [63099 65016])
-            ("term-write-input-ring" function nil nil [65018 66201])
-            ("term-dynamic-list-input-ring" function (:user-visible-flag t) nil [66204 67241])
-            ("term-regexp-arg" function (:arguments ("prompt")) nil [67244 67693])
-            ("term-search-arg" function (:arguments ("arg")) nil [67695 68097])
-            ("term-search-start" function (:arguments ("arg")) nil [68099 68566])
-            ("term-previous-input-string" function (:arguments ("arg")) nil [68600 68885])
-            ("term-previous-input" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [68887 69025])
-            ("term-next-input" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [69027 69151])
-            ("term-previous-matching-input-string" function (:arguments ("regexp" "arg")) nil [69153 69444])
-            ("term-previous-matching-input-string-position" function (:arguments ("regexp" "arg" "start")) nil [69446 70636])
-            ("term-previous-matching-input" function
-               (:user-visible-flag t
-                :arguments ("regexp" "n"))
-                nil [70638 71428])
-            ("term-next-matching-input" function
-               (:user-visible-flag t
-                :arguments ("regexp" "n"))
-                nil [71430 71817])
-            ("term-previous-matching-input-from-input" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [71819 72555])
-            ("term-next-matching-input-from-input" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [72557 72921])
-            ("term-replace-by-expanded-history" function
-               (:user-visible-flag t
-                :arguments ("silent"))
-                nil [72924 74150])
-            ("term-replace-by-expanded-history-before-point" function (:arguments ("silent")) nil [74153 77780])
-            ("term-magic-space" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [77783 78044])
-            ("term-within-quotes" function (:arguments ("beg" "end")) nil [78047 78367])
-            ("term-how-many-region" function (:arguments ("regexp" "beg" "end")) nil [78369 78632])
-            ("term-args" function (:arguments ("string" "begin" "end")) nil [78634 79403])
-            ("term-delim-arg" function (:arguments ("arg")) nil [79541 80079])
-            ("term-arguments" function (:arguments ("string" "nth" "mth")) nil [80081 81573])
-            ("term-send-input" function (:user-visible-flag t) nil [81624 85551])
-            ("term-get-old-input-default" function nil nil [85553 85860])
-            ("term-copy-old-input" function (:user-visible-flag t) nil [85862 86246])
-            ("term-skip-prompt" function nil nil [86248 86554])
-            ("term-after-pmark-p" function nil nil [86557 87027])
-            ("term-simple-send" function (:arguments ("proc" "string")) nil [87029 87278])
-            ("term-bol" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [87280 87676])
-            ("term-read-noecho" function (:arguments ("prompt" "stars")) nil [87871 89874])
-            ("term-send-invisible" function
-               (:user-visible-flag t
-                :arguments ("str" "proc"))
-                nil [89876 90600])
-            ("term-input-chunk-size" variable (:default-value 512) nil [90641 90855])
-            ("term-send-string" function (:arguments ("proc" "str")) nil [90857 91518])
-            ("term-send-region" function (:arguments ("proc" "start" "end")) nil [91520 91806])
-            ("term-kill-output" function (:user-visible-flag t) nil [91836 92142])
-            ("term-show-output" function (:user-visible-flag t) nil [92144 92454])
-            ("term-interrupt-subjob" function (:user-visible-flag t) nil [92456 92574])
-            ("term-kill-subjob" function (:user-visible-flag t) nil [92576 92694])
-            ("term-quit-subjob" function (:user-visible-flag t) nil [92696 92814])
-            ("term-stop-subjob" function (:user-visible-flag t) nil [92816 93186])
-            ("term-continue-subjob" function (:user-visible-flag t) nil [93188 93384])
-            ("term-kill-input" function (:user-visible-flag t) nil [93386 93663])
-            ("term-delchar-or-maybe-eof" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [93665 93867])
-            ("term-send-eof" function (:user-visible-flag t) nil [93869 93979])
-            ("term-backward-matching-input" function
-               (:user-visible-flag t
-                :arguments ("regexp" "n"))
-                nil [93981 94610])
-            ("term-forward-matching-input" function
-               (:user-visible-flag t
-                :arguments ("regexp" "n"))
-                nil [94612 95012])
-            ("term-next-prompt" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [95015 95270])
-            ("term-previous-prompt" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [95272 95431])
-            ("term-source-default" function (:arguments ("previous-dir/file" "source-modes")) nil [98617 98900])
-            ("term-check-source" function (:arguments ("fname")) nil [99342 99616])
-            ("term-extract-string" function nil nil [100737 101188])
-            ("term-get-source" function (:arguments ("prompt" "prev-dir/file" "source-modes" "mustmatch-p")) nil [101190 101940])
-            ("term-proc-query" function (:arguments ("proc" "str")) nil [103222 104108])
-            ("term-horizontal-column" function nil nil [104226 104312])
-            ("term-vertical-motion" function (:arguments ("count")) nil [104377 104462])
-            ("term-buffer-vertical-motion" function (:arguments ("count")) nil [104611 105962])
-            ("term-start-line-column" function nil nil [106023 106252])
-            ("term-current-column" function nil nil [106324 106432])
-            ("term-move-columns" function (:arguments ("delta")) nil [106507 106966])
-            ("term-insert-char" function (:arguments ("char" "count")) nil [107020 107183])
-            ("term-current-row" function nil nil [107185 107405])
-            ("term-adjust-current-row-cache" function (:arguments ("delta")) nil [107407 107544])
-            ("term-terminal-pos" function nil nil [107546 107810])
-            ("term-handle-ansi-terminal-messages" function (:arguments ("message")) nil [107906 110400])
-            ("term-emulate-terminal" function (:arguments ("proc" "str")) nil [110553 126215])
-            ("defvar-local" code nil nil [126217 126404])
-            ("term-set-goto-process-mark" function nil nil [126406 126956])
-            ("term-goto-process-mark-maybe" function nil nil [126958 127607])
-            ("term-process-mark" function nil nil [127609 127752])
-            ("term-handle-deferred-scroll" function nil nil [127754 128038])
-            ("term-reset-terminal" function nil nil [128040 128449])
-            ("term-handle-colors-array" function (:arguments ("parameter")) nil [128585 131648])
-            ("term-handle-ansi-escape" function (:arguments ("proc" "char")) nil [131762 136112])
-            ("term-set-scroll-region" function (:arguments ("top" "bottom")) nil [136114 136775])
-            ("term-command-hook" function (:arguments ("string")) nil [138027 138765])
-            ("term-display-line" function (:arguments ("true-file" "line")) nil [138997 139104])
-            ("term-display-buffer-line" function (:arguments ("buffer" "line")) nil [139106 139667])
-            ("term-goto-home" function nil nil [139890 140104])
-            ("term-goto" function (:arguments ("row" "col")) nil [140106 140459])
-            ("term-process-pager" function nil nil [140526 141107])
-            ("term-pager-line" function (:arguments ("lines")) nil [141109 141425])
-            ("term-pager-page" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [141427 141597])
-            ("term-pager-bob" function nil nil [141651 141823])
-            ("term-pager-eob" function nil nil [141871 142025])
-            ("term-pager-back-line" function (:arguments ("lines")) nil [142027 142289])
-            ("term-pager-back-page" function (:arguments ("arg")) nil [142291 142390])
-            ("term-pager-discard" function nil nil [142392 142537])
-            ("term-pager-disable" function nil nil [142638 142802])
-            ("term-pager-enable" function nil nil [142832 143003])
-            ("term-pager-toggle" function nil nil [143005 143118])
-            ("term-pager-help" function (:user-visible-flag t) nil [143120 144311])
-            ("term-pager-continue" function (:arguments ("new-count")) nil [144313 144749])
-            ("term-handle-scroll" function (:arguments ("down")) nil [144890 146485])
-            ("term-down" function (:arguments ("down" "check-for-scroll")) nil [146487 147607])
-            ("term-unwrap-line" function nil nil [147792 147869])
-            ("term-erase-in-line" function (:arguments ("kind")) nil [147871 149126])
-            ("term-erase-in-display" function (:arguments ("kind")) nil [149128 149909])
-            ("term-delete-chars" function (:arguments ("count")) nil [149911 150148])
-            ("term-insert-spaces" function (:arguments ("count")) nil [150327 151050])
-            ("term-delete-lines" function (:arguments ("lines")) nil [151052 151943])
-            ("term-insert-lines" function (:arguments ("lines")) nil [151945 153220])
-            ("term-start-output-log" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [153223 153930])
-            ("term-stop-output-log" function (:user-visible-flag t) nil [153932 154055])
-            ("term-show-maximum-output" function (:user-visible-flag t) nil [154057 154209])
-            ("term-load-hook" variable nil nil [154248 154361])
-            ("run-hooks" code nil nil [154363 154390])
-            ("term-completion-autolist" variable nil nil [155347 155535])
-            ("term-completion-addsuffix" variable (:default-value t) nil [155537 156023])
-            ("term-completion-recexact" variable nil nil [156025 156285])
-            ("term-completion-fignore" variable nil nil [156287 156610])
-            ("term-file-name-prefix" variable nil nil [156612 156817])
-            ("term-directory" function (:arguments ("directory")) nil [156820 157049])
-            ("term-word" function (:arguments ("word-chars")) nil [157052 157666])
-            ("term-match-partial-filename" function nil nil [157669 157936])
-            ("term-dynamic-complete" function (:user-visible-flag t) nil [157939 158354])
-            ("term-dynamic-complete-filename" function (:user-visible-flag t) nil [158357 159288])
-            ("term-dynamic-complete-as-filename" function nil nil [159290 161868])
-            ("term-replace-by-expanded-filename" function (:user-visible-flag t) nil [161871 162519])
-            ("term-dynamic-simple-complete" function (:arguments ("stub" "candidates")) nil [162522 164501])
-            ("term-dynamic-list-filename-completions" function (:user-visible-flag t) nil [164503 165071])
-            ("term-dynamic-list-completions" function (:arguments ("completions")) nil [165074 166148])
-            ("term-ansi-make-term" function (:arguments ("name" "program" "startfile" "switches")) nil [166206 166975])
-            ("term-ansi-buffer-name" variable nil nil [166977 167011])
-            ("term-ansi-default-program" variable nil nil [167012 167050])
-            ("term-ansi-buffer-base-name" variable nil nil [167051 167090])
-            ("ansi-term" function
-               (:user-visible-flag t
-                :arguments ("program" "new-buffer-name"))
-                nil [167107 168822])
-            ("serial-port-is-file-p" function nil nil [168926 169257])
-            ("serial-name-history" variable (:default-value (if (serial-port-is-file-p) (or (when (file-exists-p "/dev/ttys0") (list "/dev/ttys0")) (when (file-exists-p "/dev/ttyS0") (list "/dev/ttyS0"))) (list "COM1"))) nil [169259 169525])
-            ("serial-speed-history" variable (:default-value (list "9600" "1200" "2400" "4800" "9600" "14400" "19200" "28800" "38400" "57600" "115200")) nil [169527 169838])
-            ("serial-nice-speed-history" function nil nil [169840 170229])
-            ("serial-no-speed" variable
-               (:constant-flag t
-                :default-value "nil")
-                nil [170231 170498])
-            ("serial-supported-or-barf" function nil nil [170500 170700])
-            ("serial-read-name" function nil nil [170702 172792])
-            ("serial-read-speed" function nil nil [172794 173767])
-            ("serial-term" function
-               (:user-visible-flag t
-                :arguments ("port" "speed"))
-                nil [173784 174952])
-            ("serial-mode-line-speed-menu" variable nil nil [174954 174994])
-            ("serial-mode-line-config-menu" variable nil nil [174995 175036])
-            ("serial-speed" function nil nil [175038 175254])
-            ("serial-mode-line-speed-menu-1" function (:arguments ("event")) nil [175256 175650])
-            ("serial-mode-line-speed-menu" function (:arguments ("event")) nil [175652 175746])
-            ("serial-update-speed-menu" function nil nil [175748 176745])
-            ("serial-mode-line-config-menu-1" function (:arguments ("event")) nil [176747 177187])
-            ("serial-mode-line-config-menu" function (:arguments ("event")) nil [177189 177285])
-            ("serial-update-config-menu" function nil nil [177287 178631])
-            ("term" package nil nil [182182 182197]))          
-      :file "term.el"
-      :pointmax 182221
-      :fsize 182220
-      :lastmodtime '(23525 29519 0 0)
-      :unmatched-syntax '((close-paren 12927 . 12928) (symbol 12892 . 12909) (open-paren 12891 . 12892) (close-paren 12889 . 12890) (symbol 12852 . 12869) (open-paren 12851 . 12852)))
-    (semanticdb-table "semanticdb-table"
-      :file "ehelp.el"
-      :fsize 16920
-      :lastmodtime '(23525 29506 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [4149 4166])
-            ("tar" customgroup (:user-visible-flag t) nil [4169 4252])
-            ("tar-anal-blocksize" variable (:default-value 20) nil [4254 4861])
-            ("tar-update-datestamp" variable nil nil [4863 5410])
-            ("tar-mode-show-date" variable nil nil [5412 5623])
-            ("tar-parse-info" variable nil nil [5625 5652])
-            ("tar-superior-buffer" variable nil nil [5653 5758])
-            ("tar-superior-descriptor" variable nil nil [5759 5854])
-            ("tar-file-name-coding-system" variable nil nil [5855 5895])
-            ("put" code nil nil [5897 5942])
-            ("put" code nil nil [5943 5992])
-            ("tar-data-buffer" variable nil nil [6909 6983])
-            ("make-variable-buffer-local" code nil nil [6984 7029])
-            ("tar-data-swapped" variable nil nil [7031 7122])
-            ("make-variable-buffer-local" code nil nil [7123 7169])
-            ("tar-data-swapped-p" function nil nil [7171 7694])
-            ("tar-swap-data" function nil nil [7696 8233])
-            ("cl-defstruct" code nil nil [8259 8803])
-            ("tar-name-offset" variable (:constant-flag t) nil [8805 8833])
-            ("tar-mode-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-name-offset 100))
-                nil [8834 8884])
-            ("tar-uid-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-mode-offset 8))
-                nil [8885 8933])
-            ("tar-gid-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-uid-offset 8))
-                nil [8934 8981])
-            ("tar-size-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-gid-offset 8))
-                nil [8982 9029])
-            ("tar-time-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-size-offset 12))
-                nil [9030 9079])
-            ("tar-chk-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-time-offset 12))
-                nil [9080 9129])
-            ("tar-linkp-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-chk-offset 8))
-                nil [9130 9178])
-            ("tar-link-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-linkp-offset 1))
-                nil [9179 9228])
-            ("tar-magic-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-link-offset 100))
-                nil [9257 9308])
-            ("tar-uname-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-magic-offset 8))
-                nil [9309 9359])
-            ("tar-gname-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-uname-offset 32))
-                nil [9360 9411])
-            ("tar-dmaj-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-gname-offset 32))
-                nil [9412 9462])
-            ("tar-dmin-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-dmaj-offset 8))
-                nil [9463 9511])
-            ("tar-prefix-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-dmin-offset 8))
-                nil [9512 9562])
-            ("tar-end-offset" variable
-               (:constant-flag t
-                :default-value (+ tar-prefix-offset 155))
-                nil [9563 9614])
-            ("tar-roundup-512" function (:arguments ("s")) nil [9616 9716])
-            ("tar-header-block-tokenize" function (:arguments ("pos" "coding")) nil [9718 14725])
-            ("tar-header-data-end" function (:arguments ("descriptor")) nil [14744 15118])
-            ("tar-parse-octal-integer" function (:arguments ("string" "start" "end")) nil [15120 15466])
-            ("tar-parse-octal-long-integer" function (:arguments ("string" "start" "end")) nil [15468 15911])
-            ("tar-parse-octal-integer-safe" function (:arguments ("string")) nil [15913 16154])
-            ("tar-new-regular-file-header" function (:arguments ("filename" "size" "time")) nil [16156 16736])
-            ("tar--pad-to" function (:arguments ("pos")) nil [16738 16813])
-            ("tar--put-at" function (:arguments ("pos" "val" "fmt" "mask")) nil [16815 16979])
-            ("tar-header-serialize" function (:arguments ("header" "update-checksum")) nil [16981 19004])
-            ("tar-header-block-checksum" function (:arguments ("string")) nil [19007 19609])
-            ("tar-header-block-check-checksum" function (:arguments ("hblock" "desired-checksum" "file-name")) nil [19611 19888])
-            ("tar-clip-time-string" function (:arguments ("time")) nil [19890 20038])
-            ("tar-grind-file-mode" function (:arguments ("mode")) nil [20040 20793])
-            ("tar-header-block-summarize" function (:arguments ("tar-hblock" "mod-p")) nil [20795 22365])
-            ("tar-untar-buffer" function (:user-visible-flag t) nil [22367 23744])
-            ("tar-summarize-buffer" function nil nil [23746 25577])
-            ("tar-mode-map" variable (:default-value (let ((map (make-keymap))) (suppress-keymap map) (define-key map " " (quote tar-next-line)) (define-key map "C" (quote tar-copy)) (define-key map "d" (quote tar-flag-deleted)) (define-key map "" (quote tar-flag-deleted)) (define-key map "e" (quote tar-extract)) (define-key map "f" (quote tar-extract)) (define-key map "
" (quote tar-extract)) (define-key map [mouse-2] (quote tar-mouse-extract)) (define-key map "g" (quote revert-buffer)) (define-key map "n" (quote tar-next-line)) (define-key map "" (quote tar-next-line)) (define-key map [down] (quote tar-next-line)) (define-key map "o" (quote tar-extract-other-window)) (define-key map "p" (quote tar-previous-line)) (define-key map "" (quote tar-previous-line)) (define-key map [up] (quote tar-previous-line)) (define-key map "I" (quote tar-new-entry)) (define-key map "R" (quote tar-rename-entry)) (define-key map "u" (quote tar-unflag)) (define-key map "v" (quote tar-view)) (define-key map "w" (quote woman-tar-extract-file)) (define-key map "x" (quote tar-expunge)) (define-key map "" (quote tar-unflag-backwards)) (define-key map "E" (quote tar-extract-other-window)) (define-key map "M" (quote tar-chmod-entry)) (define-key map "G" (quote tar-chgrp-entry)) (define-key map "O" (quote tar-chown-entry)) (define-key map [follow-link] (quote mouse-face)) (define-key map [menu-bar edit] (quote undefined)) (define-key map [menu-bar immediate] (cons "Immediate" (make-sparse-keymap "Immediate"))) (define-key map [menu-bar immediate woman] (quote ("Read Man Page (WoMan)" . woman-tar-extract-file))) (define-key map [menu-bar immediate view] (quote ("View This File" . tar-view))) (define-key map [menu-bar immediate display] (quote ("Display in Other Window" . tar-display-other-window))) (define-key map [menu-bar immediate find-file-other-window] (quote ("Find in Other Window" . tar-extract-other-window))) (define-key map [menu-bar immediate find-file] (quote ("Find This File" . tar-extract))) (define-key map [menu-bar mark] (cons "Mark" (make-sparse-keymap "Mark"))) (define-key map [menu-bar mark unmark-all] (quote ("Unmark All" . tar-clear-modification-flags))) (define-key map [menu-bar mark deletion] (quote ("Flag" . tar-flag-deleted))) (define-key map [menu-bar mark unmark] (quote ("Unflag" . tar-unflag))) (define-key map [menu-bar operate] (cons "Operate" (make-sparse-keymap "Operate"))) (define-key map [menu-bar operate chown] (quote ("Change Owner..." . tar-chown-entry))) (define-key map [menu-bar operate chgrp] (quote ("Change Group..." . tar-chgrp-entry))) (define-key map [menu-bar operate chmod] (quote ("Change Mode..." . tar-chmod-entry))) (define-key map [menu-bar operate rename] (quote ("Rename to..." . tar-rename-entry))) (define-key map [menu-bar operate copy] (quote ("Copy to..." . tar-copy))) (define-key map [menu-bar operate expunge] (quote ("Expunge Marked Files" . tar-expunge))) map)) nil [25580 28672])
-            ("put" code nil nil [28735 28771])
-            ("put" code nil nil [28772 28816])
-            ("tar-change-major-mode-hook" function nil nil [28818 29059])
-            ("tar-mode-kill-buffer-hook" function nil nil [29061 29166])
-            ("define-derived-mode" code nil nil [29183 31954])
-            ("woman-tar-extract-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [31956 32062])
-            ("define-minor-mode" code nil nil [32064 32980])
-            ("tar-mode-revert" function (:arguments ("no-auto-save" "no-confirm")) nil [33042 33566])
-            ("tar-next-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [33569 33790])
-            ("tar-previous-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [33792 33943])
-            ("tar-current-position" function nil nil [33945 34090])
-            ("tar-current-descriptor" function (:arguments ("noerror")) nil [34092 34400])
-            ("tar--describe-as-link" function (:arguments ("descriptor")) nil [34402 34961])
-            ("tar--check-descriptor" function (:arguments ("descriptor")) nil [34963 35137])
-            ("tar-get-descriptor" function nil nil [35139 35370])
-            ("tar-get-file-descriptor" function (:arguments ("file")) nil [35372 35603])
-            ("tar-mouse-extract" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [35605 36047])
-            ("tar-file-name-handler" function (:arguments ("op" "args")) nil [36049 36224])
-            ("tar--extract" function (:arguments ("descriptor")) nil [36226 38328])
-            ("tar-extract" function
-               (:user-visible-flag t
-                :arguments ("other-window-p"))
-                nil [38330 40593])
-            ("tar-extract-other-window" function (:user-visible-flag t) nil [40596 40733])
-            ("tar-display-other-window" function (:user-visible-flag t) nil [40735 40882])
-            ("tar-view" function (:user-visible-flag t) nil [40884 40996])
-            ("tar-read-file-name" function (:arguments ("prompt")) nil [40999 41629])
-            ("tar-copy" function
-               (:user-visible-flag t
-                :arguments ("to-file"))
-                nil [41632 42916])
-            ("tar-new-entry" function
-               (:user-visible-flag t
-                :arguments ("filename" "index"))
-                nil [42918 44025])
-            ("tar-flag-deleted" function
-               (:user-visible-flag t
-                :arguments ("p" "unflag"))
-                nil [44027 44465])
-            ("tar-unflag" function
-               (:user-visible-flag t
-                :arguments ("p"))
-                nil [44467 44661])
-            ("tar-unflag-backwards" function
-               (:user-visible-flag t
-                :arguments ("p"))
-                nil [44663 44872])
-            ("tar-expunge-internal" function nil nil [44875 45508])
-            ("tar-expunge" function
-               (:user-visible-flag t
-                :arguments ("noconfirm"))
-                nil [45511 46227])
-            ("tar-clear-modification-flags" function (:user-visible-flag t) nil [46230 46515])
-            ("tar-chown-entry" function
-               (:user-visible-flag t
-                :arguments ("new-uid"))
-                nil [46518 47736])
-            ("tar-chgrp-entry" function
-               (:user-visible-flag t
-                :arguments ("new-gid"))
-                nil [47739 48959])
-            ("tar-rename-entry" function
-               (:user-visible-flag t
-                :arguments ("new-name"))
-                nil [48961 50432])
-            ("tar-chmod-entry" function
-               (:user-visible-flag t
-                :arguments ("new-mode"))
-                nil [50435 50907])
-            ("tar-alter-one-field" function (:arguments ("data-position" "new-data-string" "descriptor")) nil [50910 52450])
-            ("tar-octal-time" function (:arguments ("timeval")) nil [52453 52784])
-            ("tar-subfile-save-buffer" function (:user-visible-flag t) nil [52786 55907])
-            ("tar-pad-to-blocksize" function nil nil [55982 56965])
-            ("tar-write-region-annotate" function (:arguments ("start" "_end")) nil [57045 57399])
-            ("tar-mode" package nil nil [57401 57420]))          
-      :file "tar-mode.el"
-      :pointmax 57448
-      :fsize 57447
-      :lastmodtime '(23525 29519 0 0)
-      :unmatched-syntax '((close-paren 4166 . 4167) (symbol 4131 . 4148) (open-paren 4130 . 4131)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("wid-edit" include nil nil [4647 4666])
-            ("tree-widget" customgroup (:user-visible-flag t) nil [4690 4807])
-            ("tree-widget-image-enable" variable (:default-value (if (fboundp (quote display-images-p)) (display-images-p))) nil [4809 5036])
-            ("tree-widget-themes-load-path" variable (:default-value (quote (load-path (let ((dir (if (fboundp (quote locate-data-directory)) (locate-data-directory "tree-widget") data-directory))) (and dir (list dir (expand-file-name "images" dir))))))) nil [5038 5791])
-            ("tree-widget-themes-directory" variable (:default-value "tree-widget") nil [5793 6355])
-            ("tree-widget-theme" variable nil nil [6357 7490])
-            ("tree-widget-image-properties-emacs" variable (:default-value (quote (:ascent center :mask (heuristic t)))) nil [7492 7655])
-            ("tree-widget-image-properties-xemacs" variable nil nil [7657 7788])
-            ("tree-widget-space-width" variable (:default-value 0.5) nil [7790 8090])
-            ("cond" code nil nil [8170 9795])
-            ("tree-widget--theme" variable nil nil [9838 9869])
-            ("tree-widget-theme-name" function nil nil [9871 10033])
-            ("tree-widget-set-parent-theme" function (:arguments ("name")) nil [10035 10703])
-            ("tree-widget-set-theme" function (:arguments ("name")) nil [10705 11706])
-            ("tree-widget--locate-sub-directory" function (:arguments ("name" "path" "found")) nil [11708 12430])
-            ("tree-widget-themes-path" function nil nil [12432 14035])
-            ("tree-widget--cursors" variable
-               (:constant-flag t
-                :default-value (quote (("guide" . arrow) ("no-guide" . arrow) ("end-guide" . arrow) ("handle" . arrow) ("no-handle" . arrow))))
-                nil [14037 14378])
-            ("tree-widget-set-image-properties" function (:arguments ("props")) nil [14380 14632])
-            ("tree-widget-image-properties" function (:arguments ("name")) nil [14634 15215])
-            ("tree-widget-lookup-image" function (:arguments ("name")) nil [15217 16084])
-            ("tree-widget-find-image" function (:arguments ("name")) nil [16086 16799])
-            ("tree-widget-button-click" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [16817 17129])
-            ("tree-widget-button-keymap" variable (:default-value (let ((km (make-sparse-keymap))) (if (boundp (quote widget-button-keymap)) (progn (set-keymap-parent km widget-button-keymap) (define-key km [button1] (quote tree-widget-button-click))) (set-keymap-parent km widget-keymap) (define-key km [down-mouse-1] (quote tree-widget-button-click))) km)) nil [17131 17596])
-            ("define-widget" code nil nil [17598 17964])
-            ("define-widget" code nil nil [17966 18109])
-            ("define-widget" code nil nil [18111 18270])
-            ("define-widget" code nil nil [18272 18417])
-            ("define-widget" code nil nil [18419 18578])
-            ("define-widget" code nil nil [18580 18732])
-            ("define-widget" code nil nil [18734 18906])
-            ("define-widget" code nil nil [18908 19076])
-            ("define-widget" code nil nil [19078 19276])
-            ("define-widget" code nil nil [19278 19434])
-            ("define-widget" code nil nil [19436 20180])
-            ("tree-widget-p" function (:arguments ("widget")) nil [20215 20465])
-            ("tree-widget-node" function (:arguments ("widget")) nil [20467 21168])
-            ("tree-widget-keep" function (:arguments ("arg" "widget")) nil [21170 21362])
-            ("tree-widget-children-value-save" function (:arguments ("widget" "args" "node")) nil [21364 23070])
-            ("tree-widget-before-create-icon-functions" variable nil nil [23096 23681])
-            ("tree-widget-icon-create" function (:arguments ("icon")) nil [23683 24311])
-            ("tree-widget-convert-widget" function (:arguments ("widget")) nil [24313 24612])
-            ("widget-glyph-enable" variable nil nil [24614 24642])
-            ("tree-widget-value-create" function (:arguments ("tree")) nil [24653 29680])
-            ("tree-widget-leaf-node-icon-p" function (:arguments ("icon")) nil [29707 29905])
-            ("tree-widget-icon-action" function (:arguments ("icon" "event")) nil [29907 30312])
-            ("tree-widget-icon-help-echo" function (:arguments ("icon")) nil [30314 30775])
-            ("tree-widget-after-toggle-functions" variable nil nil [30777 31074])
-            ("tree-widget-action" function (:arguments ("tree" "_event")) nil [31076 31595])
-            ("tree-widget-help-echo" function (:arguments ("tree")) nil [31597 31761])
-            ("tree-widget-expander-p" function (:arguments ("tree")) nil [31763 31935])
-            ("tree-widget" package nil nil [31937 31959]))          
-      :file "tree-widget.el"
-      :pointmax 31990
-      :fsize 31989
-      :lastmodtime '(23525 29520 0 0)
-      :unmatched-syntax '((close-paren 9798 . 9799) (symbol 8115 . 8131) (open-paren 8114 . 8115)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("type-break" customgroup (:user-visible-flag t) nil [2583 2723])
-            ("type-break-interval" variable (:default-value (* 60 60)) nil [2725 2859])
-            ("type-break-good-rest-interval" variable (:default-value (/ type-break-interval 6)) nil [2861 3425])
-            ("type-break-good-break-interval" variable nil nil [3427 3885])
-            ("type-break-keystroke-threshold" variable (:default-value (let* ((wpm 35) (avg-word-length 5) (upper (* wpm avg-word-length (/ type-break-interval 60))) (lower (/ upper 5))) (cons lower upper))) nil [3887 5875])
-            ("type-break-query-function" variable (:default-value (quote yes-or-no-p)) nil [5877 6295])
-            ("type-break-query-interval" variable (:default-value 60) nil [6297 6555])
-            ("type-break-time-warning-intervals" variable (:default-value (quote (300 120 60 30))) nil [6557 6853])
-            ("type-break-keystroke-warning-intervals" variable (:default-value (quote (300 200 100 50))) nil [6855 7257])
-            ("type-break-warning-repeat" variable (:default-value 40) nil [7259 7518])
-            ("type-break-time-stamp-format" variable (:default-value "[%H:%M] ") nil [7520 7709])
-            ("type-break-demo-functions" variable (:default-value (quote (type-break-demo-boring type-break-demo-life type-break-demo-hanoi))) nil [7711 8141])
-            ("type-break-demo-boring-stats" variable nil nil [8143 8292])
-            ("type-break-terse-messages" variable nil nil [8294 8407])
-            ("type-break-file-name" variable (:default-value (locate-user-emacs-file "type-break" ".type-break")) nil [8409 8677])
-            ("type-break-post-command-hook" variable (:default-value (quote (type-break-check))) nil [8679 9205])
-            ("type-break-mode-line-format" variable (:default-value (quote (type-break-mode-line-message-mode ("" type-break-mode-line-break-message type-break-mode-line-warning)))) nil [9229 9453])
-            ("type-break-mode-line-break-message" variable (:default-value (quote (type-break-mode-line-break-message-p type-break-mode-line-break-string))) nil [9455 9578])
-            ("type-break-mode-line-break-message-p" variable nil nil [9580 9629])
-            ("type-break-mode-line-break-string" variable (:default-value " *** TAKE A TYPING BREAK NOW ***") nil [9630 9707])
-            ("type-break-mode-line-warning" variable (:default-value (quote (type-break-mode-line-break-message-p ("") (type-break-warning-countdown-string (" *** " "Break in " type-break-warning-countdown-string " " type-break-warning-countdown-string-type "***"))))) nil [9709 10019])
-            ("type-break-warning-countdown-string" variable nil nil [10021 10358])
-            ("type-break-warning-countdown-string-type" variable nil nil [10360 10532])
-            ("type-break-alarm-p" variable nil nil [10597 10628])
-            ("type-break-keystroke-count" variable nil nil [10629 10666])
-            ("type-break-time-last-break" variable nil nil [10667 10706])
-            ("type-break-time-next-break" variable nil nil [10707 10746])
-            ("type-break-time-last-command" variable (:default-value (current-time)) nil [10747 10799])
-            ("type-break-current-time-warning-interval" variable nil nil [10800 10853])
-            ("type-break-current-keystroke-warning-interval" variable nil nil [10854 10912])
-            ("type-break-time-warning-count" variable nil nil [10913 10953])
-            ("type-break-keystroke-warning-count" variable nil nil [10954 10999])
-            ("type-break-interval-start" variable nil nil [11000 11038])
-            ("define-minor-mode" code nil nil [11057 16703])
-            ("define-minor-mode" code nil nil [16705 17315])
-            ("define-minor-mode" code nil nil [17317 17675])
-            ("type-break-auto-save-file-name" variable (:default-value (let ((buffer-file-name type-break-file-name)) (make-auto-save-file-name))) nil [17707 17873])
-            ("type-break-file-time" function (:arguments ("time")) nil [17875 18410])
-            ("type-break-file-keystroke-count" function nil nil [18412 19072])
-            ("timep" function (:arguments ("time")) nil [19074 19259])
-            ("type-break-choose-file" function nil nil [19261 19656])
-            ("type-break-get-previous-time" function nil nil [19658 20183])
-            ("type-break-get-previous-count" function nil nil [20185 20910])
-            ("type-break" function (:user-visible-flag t) nil [20929 23370])
-            ("type-break-schedule" function
-               (:user-visible-flag t
-                :arguments ("time" "start" "interval"))
-                nil [23374 24150])
-            ("type-break-cancel-schedule" function nil nil [24152 24361])
-            ("type-break-time-warning-schedule" function (:arguments ("time" "resetp")) nil [24363 25846])
-            ("type-break-cancel-time-warning-schedule" function nil nil [25848 26249])
-            ("type-break-alarm" function nil nil [26251 26398])
-            ("type-break-time-warning-alarm" function nil nil [26400 26664])
-            ("type-break-run-tb-post-command-hook" function nil nil [26668 26787])
-            ("type-break-check" function nil nil [26789 29317])
-            ("type-break-check-keystroke-warning" function nil nil [29384 30437])
-            ("type-break-query" function nil nil [30518 30609])
-            ("type-break-do-query" function nil nil [30611 31981])
-            ("type-break-noninteractive-query" function (:arguments ("_ignored-args")) nil [31983 32616])
-            ("type-break-time-warning" function nil nil [32618 33973])
-            ("type-break-keystroke-warning" function nil nil [33975 35171])
-            ("type-break-mode-line-countdown-or-break" function (:arguments ("type")) nil [35173 35960])
-            ("type-break-statistics" function (:user-visible-flag t) nil [35979 37674])
-            ("type-break-guesstimate-keystroke-threshold" function
-               (:user-visible-flag t
-                :arguments ("wpm" "wordlen" "frac"))
-                nil [37691 39473])
-            ("type-break-time-difference" function (:arguments ("a" "b")) nil [39616 39699])
-            ("type-break-time-sum" function (:arguments ("tmlist")) nil [39769 39904])
-            ("type-break-time-stamp" function (:arguments ("when")) nil [39906 40242])
-            ("type-break-format-time" function (:arguments ("secs")) nil [40244 40490])
-            ("type-break-keystroke-reset" function nil nil [40492 40859])
-            ("type-break-force-mode-line-update" function (:arguments ("all")) nil [40861 41140])
-            ("type-break-check-post-command-hook" function nil nil [41525 41647])
-            ("type-break-run-at-time" function (:arguments ("time" "repeat" "function")) nil [41793 41958])
-            ("timer-dont-exit" variable nil nil [41960 41984])
-            ("type-break-cancel-function-timers" function (:arguments ("function")) nil [41985 42105])
-            ("type-break-catch-up-event" function nil nil [42128 42409])
-            ("type-break-demo-hanoi" function nil nil [42606 43058])
-            ("type-break-demo-life" function nil nil [43223 43882])
-            ("type-break-demo-boring" function nil nil [43928 47976])
-            ("type-break" package nil nil [47980 48001])
-            ("if" code nil nil [48003 48047]))          
-      :file "type-break.el"
-      :pointmax 48077
-      :fsize 48076
-      :lastmodtime '(23525 29520 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("define-minor-mode" code nil nil [1739 2765])
-            ("toggle-tool-bar-mode-from-frame" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2859 3207])
-            ("tool-bar-map" variable (:default-value (make-sparse-keymap)) nil [3209 3333])
-            ("global-set-key" code nil nil [3335 3443])
-            ("declare-function" code nil nil [3445 3509])
-            ("tool-bar-keymap-cache" variable
-               (:constant-flag t
-                :default-value (make-hash-table :weakness t :test (quote equal)))
-                nil [3511 3586])
-            ("tool-bar-make-keymap" function (:arguments ("_ignore")) nil [3588 3981])
-            ("tool-bar-make-keymap-1" function nil nil [3983 4878])
-            ("tool-bar-add-item" function (:arguments ("icon" "def" "key" "props")) nil [4895 5695])
-            ("tool-bar--image-expression" function (:arguments ("icon")) nil [5697 6631])
-            ("tool-bar-local-item" function (:arguments ("icon" "def" "key" "map" "props")) nil [6648 7456])
-            ("tool-bar-add-item-from-menu" function (:arguments ("command" "icon" "map" "props")) nil [7473 8250])
-            ("tool-bar-local-item-from-menu" function (:arguments ("command" "icon" "in-map" "from-map" "props")) nil [8267 10439])
-            ("tool-bar-setup" function nil nil [10507 12272])
-            ("if" code nil nil [12274 12922])
-            ("tool-bar" package nil nil [12925 12944]))          
-      :file "tool-bar.el"
-      :pointmax 12972
-      :fsize 12971
-      :lastmodtime '(23525 29519 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("syntax" include nil nil [898 915])
-            ("comint-prompt-regexp" variable nil nil [917 946])
-            ("tooltip" customgroup (:user-visible-flag t) nil [948 1119])
-            ("define-minor-mode" code nil nil [1153 2268])
-            ("tooltip-delay" variable (:default-value 0.7) nil [2299 2426])
-            ("tooltip-short-delay" variable (:default-value 0.1) nil [2428 2565])
-            ("tooltip-recent-seconds" variable (:default-value 1) nil [2567 2741])
-            ("tooltip-hide-delay" variable (:default-value 10) nil [2743 2867])
-            ("tooltip-x-offset" variable (:default-value 5) nil [2869 3339])
-            ("tooltip-y-offset" variable (:default-value 20) nil [3341 3811])
-            ("tooltip-frame-parameters" variable (:default-value (quote ((name . "tooltip") (internal-border-width . 2) (border-width . 1) (no-special-glyphs . t)))) nil [3813 4346])
-            ("tooltip" variable
-               (:default-value (quote ((((class color)) :background "lightyellow" :foreground "black" :inherit variable-pitch) (t :inherit variable-pitch)))
-                :type "face")
-                nil [4348 4573])
-            ("tooltip-use-echo-area" variable nil nil [4575 4830])
-            ("make-obsolete-variable" code nil nil [4832 4925])
-            ("define-obsolete-variable-alias" code nil nil [4971 5043])
-            ("tooltip-functions" variable nil nil [5045 5333])
-            ("tooltip-timeout-id" variable nil nil [5335 5425])
-            ("tooltip-last-mouse-motion-event" variable nil nil [5427 5519])
-            ("tooltip-hide-time" variable nil nil [5521 5594])
-            ("gud-tooltip-mode" variable nil nil [5596 5621])
-            ("tooltip-event-buffer" function (:arguments ("event")) nil [5664 5910])
-            ("tooltip-delay" function nil nil [5947 6173])
-            ("tooltip-cancel-delayed-tip" function nil nil [6175 6348])
-            ("tooltip-start-delayed-tip" function nil nil [6350 6529])
-            ("tooltip-timeout" function (:arguments ("_object")) nil [6531 6727])
-            ("tooltip-set-param" function (:arguments ("alist" "key" "value")) nil [6752 7089])
-            ("declare-function" code nil nil [7091 7178])
-            ("tooltip-show" function (:arguments ("text" "use-echo-area")) nil [7180 8413])
-            ("declare-function" code nil nil [8415 8456])
-            ("tooltip-hide" function (:arguments ("_ignored-arg")) nil [8458 8677])
-            ("tooltip-identifier-from-point" function (:arguments ("point")) nil [8713 9213])
-            ("tooltip-expr-to-print" function (:arguments ("event")) nil [9215 9757])
-            ("tooltip-process-prompt-regexp" function (:arguments ("process")) nil [9759 10348])
-            ("tooltip-strip-prompt" function (:arguments ("process" "output")) nil [10350 10616])
-            ("tooltip-help-message" variable nil nil [10639 10803])
-            ("tooltip-previous-message" variable nil nil [10805 10885])
-            ("tooltip-show-help-non-mode" function (:arguments ("help")) nil [10887 11934])
-            ("tooltip-show-help" function (:arguments ("msg")) nil [11936 12770])
-            ("tooltip-help-tips" function (:arguments ("_event")) nil [12772 13125])
-            ("tooltip" package nil nil [13127 13145]))          
-      :file "tooltip.el"
-      :pointmax 13172
-      :fsize 13171
-      :lastmodtime '(23525 29520 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("time-stamp" customgroup (:user-visible-flag t) nil [1414 1538])
-            ("time-stamp-format" variable (:default-value "%:y-%02m-%02d %02H:%02M:%02S %u") nil [1540 3342])
-            ("time-stamp-active" variable (:default-value t) nil [3413 3646])
-            ("time-stamp-warn-inactive" variable (:default-value t) nil [3648 3973])
-            ("time-stamp-time-zone" variable nil nil [3975 4402])
-            ("time-stamp-line-limit" variable (:default-value 8) nil [4802 5524])
-            ("time-stamp-start" variable (:default-value "Time-stamp:[ 	]+\\\\?[\"<]+") nil [5600 6167])
-            ("time-stamp-end" variable (:default-value "\\\\?[\">]") nil [6237 7206])
-            ("time-stamp-inserts-lines" variable nil nil [7275 8077])
-            ("time-stamp-count" variable (:default-value 1) nil [8156 8532])
-            ("time-stamp-pattern" variable nil nil [8604 10047])
-            ("time-stamp" function (:user-visible-flag t) nil [10136 13445])
-            ("time-stamp-once" function (:arguments ("start" "search-limit" "ts-start" "ts-end" "ts-format" "format-lines" "end-lines")) nil [13447 15618])
-            ("time-stamp-toggle-active" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [15636 16032])
-            ("time-stamp--format" function (:arguments ("format" "time")) nil [16034 16130])
-            ("time-stamp-string" function (:arguments ("ts-format")) nil [16132 16465])
-            ("time-stamp-no-file" variable
-               (:constant-flag t
-                :default-value "(no file)")
-                nil [16468 16574])
-            ("time-stamp-string-preprocess" function (:arguments ("format" "time")) nil [17397 23391])
-            ("time-stamp-do-number" function (:arguments ("format-char" "alt-form" "field-width" "time")) nil [23393 24027])
-            ("time-stamp-conversion-warn" variable (:default-value t) nil [24029 24498])
-            ("time-stamp-conv-warn" function (:arguments ("old-form" "new-form")) nil [24501 25193])
-            ("time-stamp" package nil nil [25195 25216]))          
-      :file "time-stamp.el"
-      :pointmax 25246
-      :fsize 25245
-      :lastmodtime '(23525 29519 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("talk-display-alist" variable nil nil [1023 1162])
-            ("talk-connect" function
-               (:user-visible-flag t
-                :arguments ("display"))
-                nil [1179 1624])
-            ("talk" function (:user-visible-flag t) nil [1641 1951])
-            ("talk-add-display" function (:arguments ("display")) nil [1953 2525])
-            ("talk-handle-delete-frame" function (:arguments ("frame")) nil [2527 2721])
-            ("talk-disconnect" function (:user-visible-flag t) nil [2723 3087])
-            ("talk-update-buffers" function nil nil [3089 3614])
-            ("talk-split-up-frame" function (:arguments ("frame" "buffers")) nil [3616 4267])
-            ("talk" package nil nil [4269 4284]))          
-      :file "talk.el"
-      :pointmax 4308
-      :fsize 4307
-      :lastmodtime '(23525 29519 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("display-time" customgroup (:user-visible-flag t) nil [1115 1226])
-            ("display-time-mail-file" variable nil nil [1229 1595])
-            ("display-time-mail-directory" variable nil nil [1597 1935])
-            ("display-time-mail-function" variable nil nil [1937 2311])
-            ("display-time-default-load-average" variable nil nil [2313 2884])
-            ("display-time-load-average" variable nil nil [2886 3095])
-            ("display-time-load-average-threshold" variable (:default-value 0.1) nil [3097 3261])
-            ("display-time-day-and-date" variable nil nil [3278 3439])
-            ("display-time-timer" variable nil nil [3441 3472])
-            ("display-time-interval" variable (:default-value 60) nil [3474 3604])
-            ("display-time-24hr-format" variable nil nil [3606 3823])
-            ("display-time-string" variable nil nil [3825 3999])
-            ("display-time-hook" variable nil nil [4066 4214])
-            ("display-time-server-down-time" variable nil nil [4216 4376])
-            ("zoneinfo-style-world-list" variable (:default-value (quote (("America/Los_Angeles" "Seattle") ("America/New_York" "New York") ("Europe/London" "London") ("Europe/Paris" "Paris") ("Asia/Calcutta" "Bangalore") ("Asia/Tokyo" "Tokyo")))) nil [4378 5076])
-            ("legacy-style-world-list" variable (:default-value (quote (("PST8PDT" "Seattle") ("EST5EDT" "New York") ("GMT0BST" "London") ("CET-1CDT" "Paris") ("IST-5:30" "Bangalore") ("JST-9" "Tokyo")))) nil [5078 5756])
-            ("display-time-world-list" variable (:default-value t) nil [5758 6526])
-            ("time--display-world-list" function nil nil [6528 6987])
-            ("display-time-world-time-format" variable (:default-value "%A %d %B %R %Z") nil [6989 7165])
-            ("display-time-world-buffer-name" variable (:default-value "*wclock*") nil [7167 7313])
-            ("display-time-world-timer-enable" variable (:default-value t) nil [7315 7471])
-            ("display-time-world-timer-second" variable (:default-value 60) nil [7473 7631])
-            ("display-time" function (:user-visible-flag t) nil [7648 7985])
-            ("display-time-mail-face" variable nil nil [8211 8583])
-            ("display-time-mail-icon" variable (:default-value (find-image (quote ((:type xpm :file "letter.xpm" :ascent center) (:type pbm :file "letter.pbm" :ascent center))))) nil [8585 8868])
-            ("display-time-use-mail-icon" variable nil nil [8918 9203])
-            ("display-time-mail-string" variable (:default-value "Mail") nil [9273 9663])
-            ("display-time-format" variable nil nil [9665 10035])
-            ("display-time-string-forms" variable (:default-value (quote ((if (and (not display-time-format) display-time-day-and-date) (format-time-string "%a %b %e " now) "") (propertize (format-time-string (or display-time-format (if display-time-24hr-format "%H:%M" "%-I:%M%p")) now) (quote help-echo) (format-time-string "%a %b %e, %Y" now)) load (if mail (concat " " (propertize display-time-mail-string (quote display) (\` (when (and display-time-use-mail-icon (display-graphic-p)) (\,@ display-time-mail-icon) (\,@ (if (and display-time-mail-face (memq (plist-get (cdr display-time-mail-icon) :type) (quote (pbm xbm)))) (let ((bg (face-attribute display-time-mail-face :background))) (if (stringp bg) (list :background bg))))))) (quote face) display-time-mail-face (quote help-echo) "You have new mail; mouse-2: Read mail" (quote mouse-face) (quote mode-line-highlight) (quote local-map) (make-mode-line-mouse-map (quote mouse-2) read-mail-command))) "")))) nil [10037 11968])
-            ("display-time-event-handler" function nil nil [11970 12893])
-            ("display-time-next-load-average" function (:user-visible-flag t) nil [12895 13227])
-            ("display-time-mail-check-directory" function nil nil [13229 13645])
-            ("with-no-warnings" code nil nil [13647 14027])
-            ("display-time-update" function nil nil [14029 17452])
-            ("display-time-file-nonempty-p" function (:arguments ("file")) nil [17454 17657])
-            ("define-minor-mode" code nil nil [17674 19122])
-            ("define-derived-mode" code nil nil [19125 19330])
-            ("display-time-world-display" function (:arguments ("alist")) nil [19332 20047])
-            ("display-time-world" function (:user-visible-flag t) nil [20064 20748])
-            ("display-time-world-timer" function nil nil [20750 21202])
-            ("emacs-uptime" function
-               (:user-visible-flag t
-                :arguments ("format"))
-                nil [21219 21744])
-            ("emacs-init-time" function (:user-visible-flag t) nil [21761 22067])
-            ("time" package nil nil [22069 22084]))          
-      :file "time.el"
-      :pointmax 22108
-      :fsize 22109
-      :lastmodtime '(23525 29519 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("dired" include nil nil [5772 5788])
-            ("format-spec" include nil nil [5789 5811])
-            ("image-mode" include nil nil [5812 5833])
-            ("widget" include nil nil [5834 5851])
-            ("wid-edit" include nil nil [5894 5913])
-            ("cl-lib" include nil nil [5874 5891])
-            ("image-dired" customgroup (:user-visible-flag t) nil [5916 6092])
-            ("image-dired-dir" variable (:default-value (locate-user-emacs-file "image-dired/")) nil [6094 6251])
-            ("image-dired-thumbnail-storage" variable (:default-value (quote use-image-dired-dir)) nil [6253 7265])
-            ("image-dired-db-file" variable (:default-value (expand-file-name ".image-dired_db" image-dired-dir)) nil [7267 7462])
-            ("image-dired-temp-image-file" variable (:default-value (expand-file-name ".image-dired_temp" image-dired-dir)) nil [7464 7655])
-            ("image-dired-gallery-dir" variable (:default-value (expand-file-name ".image-dired_gallery" image-dired-dir)) nil [7657 7961])
-            ("image-dired-gallery-image-root-url" variable (:default-value "http://your.own.server/image-diredpics") nil [7963 8258])
-            ("image-dired-gallery-thumb-image-root-url" variable (:default-value "http://your.own.server/image-diredthumbs") nil [8260 8563])
-            ("image-dired-cmd-create-thumbnail-program" variable (:default-value "convert") nil [8565 8769])
-            ("image-dired-cmd-create-thumbnail-options" variable (:default-value (quote ("-size" "%wx%h" "%f[0]" "-resize" "%wx%h>" "-strip" "jpeg:%t"))) nil [8771 9343])
-            ("image-dired-cmd-create-temp-image-program" variable (:default-value "convert") nil [9345 9555])
-            ("image-dired-cmd-create-temp-image-options" variable (:default-value (quote ("-size" "%wx%h" "%f[0]" "-resize" "%wx%h>" "-strip" "jpeg:%t"))) nil [9557 10162])
-            ("image-dired-cmd-pngnq-program" variable (:default-value (or (executable-find "pngnq") (executable-find "pngnq-s9"))) nil [10164 10497])
-            ("image-dired-cmd-pngnq-options" variable (:default-value (quote ("-f" "%t"))) nil [10499 10784])
-            ("image-dired-cmd-pngcrush-program" variable (:default-value (executable-find "pngcrush")) nil [10786 11119])
-            ("image-dired-cmd-pngcrush-options" variable (:default-value (\` ("-q" "-text" "b" "Description" "Thumbnail of file://%f" "-text" "b" "Software" (\, (emacs-version)) "-text" "b" "Thumb::MTime" "%m" "-text" "b" "Thumb::URI" "file://%f" "%q" "%t"))) nil [11121 11855])
-            ("image-dired-cmd-optipng-program" variable (:default-value (executable-find "optipng")) nil [11857 12062])
-            ("image-dired-cmd-optipng-options" variable (:default-value (quote ("-o5" "%t"))) nil [12064 12385])
-            ("image-dired-cmd-create-standard-thumbnail-options" variable (:default-value (append (quote ("-size" "%wx%h" "%f[0]")) (unless (or image-dired-cmd-pngcrush-program image-dired-cmd-pngnq-program) (list "-set" "Thumb::MTime" "%m" "-set" "Thumb::URI" "file://%f" "-set" "Description" "Thumbnail of file://%f" "-set" "Software" (emacs-version))) (quote ("-thumbnail" "%wx%h>" "png:%t")))) nil [12387 13141])
-            ("image-dired-cmd-rotate-thumbnail-program" variable (:default-value "mogrify") nil [13143 13347])
-            ("image-dired-cmd-rotate-thumbnail-options" variable (:default-value (quote ("-rotate" "%d" "%t"))) nil [13349 13845])
-            ("image-dired-cmd-rotate-original-program" variable (:default-value "jpegtran") nil [13847 14055])
-            ("image-dired-cmd-rotate-original-options" variable (:default-value (quote ("-rotate" "%d" "-copy" "all" "-outfile" "%t" "%o"))) nil [14057 14631])
-            ("image-dired-temp-rotate-image-file" variable (:default-value (expand-file-name ".image-dired_rotate_temp" image-dired-dir)) nil [14633 14821])
-            ("image-dired-rotate-original-ask-before-overwrite" variable (:default-value t) nil [14823 15105])
-            ("image-dired-cmd-write-exif-data-program" variable (:default-value "exiftool") nil [15107 15315])
-            ("image-dired-cmd-write-exif-data-options" variable (:default-value (quote ("-%t=%v" "%f"))) nil [15317 15731])
-            ("image-dired-cmd-read-exif-data-program" variable (:default-value "exiftool") nil [15733 15938])
-            ("image-dired-cmd-read-exif-data-options" variable (:default-value (quote ("-s" "-s" "-s" "-%t" "%f"))) nil [15940 16324])
-            ("image-dired-gallery-hidden-tags" variable (:default-value (list "private" "hidden" "pending")) nil [16326 16554])
-            ("image-dired-thumb-size" variable (:default-value (cond ((eq (quote standard) image-dired-thumbnail-storage) 128) ((eq (quote standard-large) image-dired-thumbnail-storage) 256) (t 100))) nil [16556 16890])
-            ("image-dired-thumb-width" variable (:default-value image-dired-thumb-size) nil [16892 17025])
-            ("image-dired-thumb-height" variable (:default-value image-dired-thumb-size) nil [17027 17162])
-            ("image-dired-thumb-relief" variable (:default-value 2) nil [17164 17291])
-            ("image-dired-thumb-margin" variable (:default-value 2) nil [17293 17446])
-            ("image-dired-line-up-method" variable (:default-value (quote dynamic)) nil [17448 18125])
-            ("image-dired-thumbs-per-row" variable (:default-value 3) nil [18127 18267])
-            ("image-dired-display-window-width-correction" variable (:default-value 1) nil [18269 18511])
-            ("image-dired-display-window-height-correction" variable nil nil [18513 18757])
-            ("image-dired-track-movement" variable (:default-value t) nil [18759 18979])
-            ("image-dired-append-when-browsing" variable nil nil [18981 19537])
-            ("image-dired-dired-disp-props" variable (:default-value t) nil [19539 19920])
-            ("image-dired-display-properties-format" variable (:default-value "%b: %f (%t): %c") nil [19922 20230])
-            ("image-dired-external-viewer" variable (:default-value (cond ((executable-find "display")) ((executable-find "xli")) ((executable-find "qiv") "qiv -t"))) nil [20232 20636])
-            ("image-dired-main-image-directory" variable (:default-value "~/pics/") nil [20638 20820])
-            ("image-dired-show-all-from-dir-max-files" variable (:default-value 50) nil [20822 21014])
-            ("image-dired--with-db-file" function (:arguments ("body")) nil [21016 21317])
-            ("image-dired-dir" function nil nil [21319 21743])
-            ("image-dired-insert-image" function (:arguments ("file" "type" "relief" "margin")) nil [21745 22032])
-            ("image-dired-get-thumbnail-image" function (:arguments ("file")) nil [22034 22679])
-            ("image-dired-insert-thumbnail" function (:arguments ("file" "original-file-name" "associated-dired-buffer")) nil [22681 23688])
-            ("image-dired-thumb-name" function (:arguments ("file")) nil [23690 25677])
-            ("image-dired--check-executable-exists" function (:arguments ("executable")) nil [25679 25840])
-            ("image-dired-thumb-size" function (:arguments ("dimension")) nil [25842 26242])
-            ("image-dired-queue" variable nil nil [26244 26358])
-            ("image-dired-queue-active-jobs" variable nil nil [26360 26450])
-            ("image-dired-queue-active-limit" variable (:default-value 2) nil [26452 26586])
-            ("image-dired-pngnq-thumb" function (:arguments ("spec")) nil [26588 27722])
-            ("image-dired-pngcrush-thumb" function (:arguments ("spec")) nil [27724 28919])
-            ("image-dired-optipng-thumb" function (:arguments ("spec")) nil [28921 29615])
-            ("image-dired-create-thumb-1" function (:arguments ("original-file" "thumbnail-file")) nil [29617 32771])
-            ("image-dired-thumb-queue-run" function nil nil [32773 33162])
-            ("image-dired-create-thumb" function (:arguments ("original-file" "thumbnail-file")) nil [33164 33461])
-            ("image-dired-dired-toggle-marked-thumbs" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [33478 34971])
-            ("image-dired-dired-after-readin-hook" function nil nil [34973 35564])
-            ("image-dired-next-line-and-display" function (:user-visible-flag t) nil [35566 35866])
-            ("image-dired-previous-line-and-display" function (:user-visible-flag t) nil [35868 36180])
-            ("image-dired-toggle-append-browsing" function (:user-visible-flag t) nil [36182 36501])
-            ("image-dired-mark-and-display-next" function (:user-visible-flag t) nil [36503 36806])
-            ("image-dired-toggle-dired-display-properties" function (:user-visible-flag t) nil [36808 37129])
-            ("image-dired-thumbnail-buffer" variable (:default-value "*image-dired*") nil [37131 37220])
-            ("image-dired-create-thumbnail-buffer" function nil nil [37222 37565])
-            ("image-dired-display-image-buffer" variable (:default-value "*image-dired-display-image*") nil [37567 37691])
-            ("image-dired-create-display-image-buffer" function nil nil [37693 38064])
-            ("image-dired-saved-window-configuration" variable nil nil [38066 38149])
-            ("image-dired-dired-with-window-configuration" function
-               (:user-visible-flag t
-                :arguments ("dir" "arg"))
-                nil [38166 39325])
-            ("image-dired-restore-window-configuration" function (:user-visible-flag t) nil [39327 39703])
-            ("image-dired-display-thumbs" function
-               (:user-visible-flag t
-                :arguments ("arg" "append" "do-not-pop"))
-                nil [39720 41869])
-            ("image-dired-show-all-from-dir" function
-               (:user-visible-flag t
-                :arguments ("dir"))
-                nil [41886 42760])
-            ("defalias" code nil nil [42777 42831])
-            ("define-obsolete-function-alias" code nil nil [42848 42907])
-            ("image-dired-sane-db-file" function nil nil [42909 43619])
-            ("image-dired-write-tags" function (:arguments ("file-tags")) nil [43621 44390])
-            ("image-dired-remove-tag" function (:arguments ("files" "tag")) nil [44392 45415])
-            ("image-dired-list-tags" function (:arguments ("file")) nil [45417 45979])
-            ("image-dired-tag-files" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [45996 46415])
-            ("image-dired-tag-thumbnail" function (:user-visible-flag t) nil [46417 46753])
-            ("image-dired-delete-tag" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [46770 47127])
-            ("image-dired-tag-thumbnail-remove" function (:user-visible-flag t) nil [47129 47431])
-            ("image-dired-original-file-name" function nil nil [47433 47592])
-            ("image-dired-file-name-at-point" function nil nil [47594 47797])
-            ("image-dired-associated-dired-buffer" function nil nil [47799 47942])
-            ("image-dired-get-buffer-window" function (:arguments ("buf")) nil [47944 48126])
-            ("image-dired-track-original-file" function (:user-visible-flag t) nil [48128 48795])
-            ("image-dired-toggle-movement-tracking" function (:user-visible-flag t) nil [48797 49278])
-            ("image-dired-track-thumbnail" function nil nil [49280 50183])
-            ("image-dired-dired-next-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [50185 50488])
-            ("image-dired-dired-previous-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [50490 50809])
-            ("image-dired-forward-image" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [50811 51551])
-            ("image-dired-backward-image" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [51553 52301])
-            ("image-dired-next-line" function (:user-visible-flag t) nil [52303 52753])
-            ("image-dired-previous-line" function (:user-visible-flag t) nil [52756 53384])
-            ("image-dired-format-properties-string" function (:arguments ("buf" "file" "props" "comment")) nil [53386 53807])
-            ("image-dired-display-thumb-properties" function nil nil [53809 54455])
-            ("image-dired-dired-file-marked-p" function nil nil [54457 54630])
-            ("image-dired-modify-mark-on-thumb-original-file" function (:arguments ("command")) nil [54632 55561])
-            ("image-dired-mark-thumb-original-file" function (:user-visible-flag t) nil [55563 55770])
-            ("image-dired-unmark-thumb-original-file" function (:user-visible-flag t) nil [55772 55985])
-            ("image-dired-flag-thumb-original-file" function (:user-visible-flag t) nil [55987 56207])
-            ("image-dired-toggle-mark-thumb-original-file" function (:user-visible-flag t) nil [56209 56405])
-            ("image-dired-jump-original-dired-buffer" function (:user-visible-flag t) nil [56407 57000])
-            ("image-dired-jump-thumbnail-buffer" function (:user-visible-flag t) nil [57017 57415])
-            ("image-dired-thumbnail-mode-line-up-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "g" (quote image-dired-line-up-dynamic)) (define-key map "f" (quote image-dired-line-up)) (define-key map "i" (quote image-dired-line-up-interactive)) map)) nil [57417 57873])
-            ("image-dired-thumbnail-mode-tag-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "t" (quote image-dired-tag-thumbnail)) (define-key map "r" (quote image-dired-tag-thumbnail-remove)) map)) nil [57875 58223])
-            ("image-dired-thumbnail-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [right] (quote image-dired-forward-image)) (define-key map [left] (quote image-dired-backward-image)) (define-key map [up] (quote image-dired-previous-line)) (define-key map [down] (quote image-dired-next-line)) (define-key map "" (quote image-dired-forward-image)) (define-key map "" (quote image-dired-backward-image)) (define-key map "" (quote image-dired-previous-line)) (define-key map "" (quote image-dired-next-line)) (define-key map "d" (quote image-dired-flag-thumb-original-file)) (define-key map [delete] (quote image-dired-flag-thumb-original-file)) (define-key map "m" (quote image-dired-mark-thumb-original-file)) (define-key map "u" (quote image-dired-unmark-thumb-original-file)) (define-key map "." (quote image-dired-track-original-file)) (define-key map [tab] (quote image-dired-jump-original-dired-buffer)) (define-key map "g" image-dired-thumbnail-mode-line-up-map) (define-key map "t" image-dired-thumbnail-mode-tag-map) (define-key map "
" (quote image-dired-display-thumbnail-original-image)) (define-key map [C-return] (quote image-dired-thumbnail-display-external)) (define-key map "l" (quote image-dired-rotate-thumbnail-left)) (define-key map "r" (quote image-dired-rotate-thumbnail-right)) (define-key map "L" (quote image-dired-rotate-original-left)) (define-key map "R" (quote image-dired-rotate-original-right)) (define-key map "D" (quote image-dired-thumbnail-set-image-description)) (define-key map "" (quote image-dired-delete-char)) (define-key map " " (quote image-dired-display-next-thumbnail-original)) (define-key map (kbd "DEL") (quote image-dired-display-previous-thumbnail-original)) (define-key map "c" (quote image-dired-comment-thumbnail)) (define-key map [mouse-2] (quote image-dired-mouse-display-image)) (define-key map [mouse-1] (quote image-dired-mouse-select-thumbnail)) (define-key map [C-down-mouse-1] (quote undefined)) (define-key map [C-mouse-1] (quote image-dired-mouse-toggle-mark)) (easy-menu-define nil map "Menu for `image-dired-thumbnail-mode'." (quote ("Image-Dired" ["Quit" quit-window] ["Delete thumbnail from buffer" image-dired-delete-char] ["Remove tag from thumbnail" image-dired-tag-thumbnail-remove] ["Tag thumbnail" image-dired-tag-thumbnail] ["Comment thumbnail" image-dired-comment-thumbnail] ["Refresh thumb" image-dired-refresh-thumb] ["Dynamic line up" image-dired-line-up-dynamic] ["Line up thumbnails" image-dired-line-up] ["Rotate thumbnail left" image-dired-rotate-thumbnail-left] ["Rotate thumbnail right" image-dired-rotate-thumbnail-right] ["Rotate original left" image-dired-rotate-original-left] ["Rotate original right" image-dired-rotate-original-right] ["Toggle movement tracking on/off" image-dired-toggle-movement-tracking] ["Jump to dired buffer" image-dired-jump-original-dired-buffer] ["Track original" image-dired-track-original-file] ["Flag original for deletion" image-dired-flag-thumb-original-file] ["Unmark original" image-dired-unmark-thumb-original-file] ["Mark original" image-dired-mark-thumb-original-file] ["Display in external viewer" image-dired-thumbnail-display-external] ["Display image" image-dired-display-thumbnail-original-image]))) map)) nil [58225 62045])
-            ("image-dired-display-image-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "f" (quote image-dired-display-current-image-full)) (define-key map "s" (quote image-dired-display-current-image-sized)) (define-key map "g" nil) (define-key map [remap forward-char] (quote image-forward-hscroll)) (define-key map [remap backward-char] (quote image-backward-hscroll)) (define-key map [remap right-char] (quote image-forward-hscroll)) (define-key map [remap left-char] (quote image-backward-hscroll)) (define-key map [remap previous-line] (quote image-previous-line)) (define-key map [remap next-line] (quote image-next-line)) (define-key map [remap scroll-up] (quote image-scroll-up)) (define-key map [remap scroll-down] (quote image-scroll-down)) (define-key map [remap scroll-up-command] (quote image-scroll-up)) (define-key map [remap scroll-down-command] (quote image-scroll-down)) (define-key map [remap scroll-left] (quote image-scroll-left)) (define-key map [remap scroll-right] (quote image-scroll-right)) (define-key map [remap move-beginning-of-line] (quote image-bol)) (define-key map [remap move-end-of-line] (quote image-eol)) (define-key map [remap beginning-of-buffer] (quote image-bob)) (define-key map [remap end-of-buffer] (quote image-eob)) (easy-menu-define nil map "Menu for `image-dired-display-image-mode-map'." (quote ("Image-Dired" ["Quit" quit-window] ["Display original, sized to fit" image-dired-display-current-image-sized] ["Display original, full size" image-dired-display-current-image-full]))) map)) nil [62047 63794])
-            ("image-dired-display-current-image-full" function (:user-visible-flag t) nil [63796 64121])
-            ("image-dired-display-current-image-sized" function (:user-visible-flag t) nil [64123 64465])
-            ("define-derived-mode" code nil nil [64467 64787])
-            ("define-derived-mode" code nil nil [64789 65148])
-            ("image-dired-minor-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "p" (quote image-dired-dired-previous-line)) (define-key map "n" (quote image-dired-dired-next-line)) (define-key map [up] (quote image-dired-dired-previous-line)) (define-key map [down] (quote image-dired-dired-next-line)) (define-key map (kbd "C-S-n") (quote image-dired-next-line-and-display)) (define-key map (kbd "C-S-p") (quote image-dired-previous-line-and-display)) (define-key map (kbd "C-S-m") (quote image-dired-mark-and-display-next)) (define-key map "d" (quote image-dired-display-thumbs)) (define-key map [tab] (quote image-dired-jump-thumbnail-buffer)) (define-key map "i" (quote image-dired-dired-display-image)) (define-key map "x" (quote image-dired-dired-display-external)) (define-key map "a" (quote image-dired-display-thumbs-append)) (define-key map "." (quote image-dired-display-thumb)) (define-key map "c" (quote image-dired-dired-comment-files)) (define-key map "f" (quote image-dired-mark-tagged-files)) (easy-menu-define nil map "Menu for `image-dired-minor-mode'." (quote ("Image-dired" ["Copy with EXIF file name" image-dired-copy-with-exif-file-name] ["Comment files" image-dired-dired-comment-files] ["Mark tagged files" image-dired-mark-tagged-files] ["Jump to thumbnail buffer" image-dired-jump-thumbnail-buffer] ["Toggle movement tracking" image-dired-toggle-movement-tracking] ["Toggle append browsing" image-dired-toggle-append-browsing] ["Toggle display properties" image-dired-toggle-dired-display-properties] ["Display in external viewer" image-dired-dired-display-external] ["Display image" image-dired-dired-display-image] ["Display this thumbnail" image-dired-display-thumb] ["Display thumbnails append" image-dired-display-thumbs-append] ["Create thumbnails for marked files" image-dired-create-thumbs] ["Mark and display next" image-dired-mark-and-display-next] ["Display thumb for previous file" image-dired-previous-line-and-display] ["Display thumb for next file" image-dired-next-line-and-display]))) map)) nil [65150 67507])
-            ("define-minor-mode" code nil nil [67524 67773])
-            ("define-obsolete-function-alias" code nil nil [67790 67892])
-            ("declare-function" code nil nil [67894 67959])
-            ("image-dired-create-thumbs" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [67961 68715])
-            ("image-dired-slideshow-timer" variable nil nil [68717 68778])
-            ("image-dired-slideshow-count" variable nil nil [68780 68870])
-            ("image-dired-slideshow-times" variable nil nil [68872 68958])
-            ("image-dired-slideshow-step" function nil nil [68960 69365])
-            ("image-dired-slideshow-start" function (:user-visible-flag t) nil [69367 69890])
-            ("image-dired-slideshow-stop" function (:user-visible-flag t) nil [69892 70012])
-            ("image-dired-delete-char" function (:user-visible-flag t) nil [70014 70238])
-            ("image-dired-display-thumbs-append" function (:user-visible-flag t) nil [70255 70411])
-            ("image-dired-display-thumb" function (:user-visible-flag t) nil [70428 70588])
-            ("image-dired-line-up" function (:user-visible-flag t) nil [70590 71489])
-            ("image-dired-line-up-dynamic" function (:user-visible-flag t) nil [71491 71995])
-            ("image-dired-line-up-interactive" function (:user-visible-flag t) nil [71997 72386])
-            ("image-dired-thumbnail-display-external" function (:user-visible-flag t) nil [72388 72849])
-            ("image-dired-dired-display-external" function (:user-visible-flag t) nil [72866 73116])
-            ("image-dired-window-width-pixels" function (:arguments ("window")) nil [73118 73253])
-            ("image-dired-window-height-pixels" function (:arguments ("window")) nil [73255 73443])
-            ("image-dired-display-window" function nil nil [73445 73696])
-            ("image-dired-thumbnail-window" function nil nil [73698 73943])
-            ("image-dired-associated-dired-buffer-window" function nil nil [73945 74346])
-            ("image-dired-display-window-width" function (:arguments ("window")) nil [74348 74533])
-            ("image-dired-display-window-height" function (:arguments ("window")) nil [74535 74724])
-            ("image-dired-display-image" function (:arguments ("file" "original-size")) nil [74726 76688])
-            ("image-dired-display-thumbnail-original-image" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [76690 77472])
-            ("image-dired-dired-display-image" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [77490 77882])
-            ("image-dired-image-at-point-p" function nil nil [77884 78039])
-            ("image-dired-rotate-thumbnail" function (:arguments ("degrees")) nil [78041 78711])
-            ("image-dired-rotate-thumbnail-left" function (:user-visible-flag t) nil [78713 79108])
-            ("image-dired-rotate-thumbnail-right" function (:user-visible-flag t) nil [79110 79506])
-            ("image-dired-refresh-thumb" function (:user-visible-flag t) nil [79508 79823])
-            ("image-dired-rotate-original" function (:arguments ("degrees")) nil [79825 81198])
-            ("image-dired-rotate-original-left" function (:user-visible-flag t) nil [81200 81360])
-            ("image-dired-rotate-original-right" function (:user-visible-flag t) nil [81362 81515])
-            ("image-dired-get-exif-file-name" function (:arguments ("file")) nil [81517 82622])
-            ("image-dired-thumbnail-set-image-description" function (:user-visible-flag t) nil [82624 83359])
-            ("image-dired-set-exif-data" function (:arguments ("file" "tag-name" "tag-value")) nil [83361 83892])
-            ("image-dired-get-exif-data" function (:arguments ("file" "tag-name")) nil [83894 84934])
-            ("image-dired-copy-with-exif-file-name" function (:user-visible-flag t) nil [84936 86027])
-            ("image-dired-display-next-thumbnail-original" function (:user-visible-flag t) nil [86029 86249])
-            ("image-dired-display-previous-thumbnail-original" function (:user-visible-flag t) nil [86251 86455])
-            ("image-dired-write-comments" function (:arguments ("file-comments")) nil [86457 87787])
-            ("image-dired-update-property" function (:arguments ("prop" "value")) nil [87789 87997])
-            ("image-dired-dired-comment-files" function (:user-visible-flag t) nil [88014 88310])
-            ("image-dired-comment-thumbnail" function (:user-visible-flag t) nil [88312 88680])
-            ("image-dired-read-comment" function (:arguments ("file")) nil [88682 88945])
-            ("image-dired-get-comment" function (:arguments ("file")) nil [88947 89540])
-            ("image-dired-mark-tagged-files" function (:user-visible-flag t) nil [89557 90900])
-            ("image-dired-mouse-display-image" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [90902 91478])
-            ("image-dired-mouse-select-thumbnail" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [91480 91865])
-            ("image-dired-mouse-toggle-mark" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [91867 92263])
-            ("image-dired-dired-display-properties" function (:user-visible-flag t) nil [92265 92845])
-            ("image-dired-tag-file-list" variable nil nil [92847 92923])
-            ("image-dired-file-tag-list" variable nil nil [92925 93001])
-            ("image-dired-file-comment-list" variable nil nil [93003 93078])
-            ("image-dired-add-to-tag-file-list" function (:arguments ("tag" "file")) nil [93080 93558])
-            ("image-dired-add-to-tag-file-lists" function (:arguments ("tag" "file")) nil [93560 94839])
-            ("image-dired-add-to-file-comment-list" function (:arguments ("file" "comment")) nil [94841 95470])
-            ("image-dired-create-gallery-lists" function nil nil [95472 96574])
-            ("image-dired-hidden-p" function (:arguments ("file")) nil [96576 96796])
-            ("image-dired-gallery-generate" function (:user-visible-flag t) nil [96798 100400])
-            ("image-dired-widget-list" variable nil nil [100402 100490])
-            ("declare-function" code nil nil [100492 100542])
-            ("image-dired-dired-edit-comment-and-tags" function (:user-visible-flag t) nil [100559 103376])
-            ("image-dired-save-information-from-widgets" function nil nil [103378 104244])
-            ("image-dired" package nil nil [106135 106157]))          
-      :file "image-dired.el"
-      :pointmax 106188
-      :fsize 106187
-      :lastmodtime '(23525 29511 0 0)
-      :unmatched-syntax '((close-paren 5913 . 5914) (symbol 5854 . 5871) (open-paren 5853 . 5854))))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041term\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041term\041semantic.cache"
deleted file mode 100644
index f8081d8..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041term\041semantic.cache"
+++ /dev/null
@@ -1,155 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [2247 2264])
-            ("frame" include nil nil [2266 2282])
-            ("mouse" include nil nil [2283 2299])
-            ("scroll-bar" include nil nil [2300 2321])
-            ("faces" include nil nil [2322 2338])
-            ("select" include nil nil [2339 2356])
-            ("menu-bar" include nil nil [2357 2376])
-            ("dnd" include nil nil [2377 2391])
-            ("w32-vars" include nil nil [2392 2411])
-            ("define-obsolete-function-alias" code nil nil [2527 2598])
-            ("declare-function" code nil nil [2599 2700])
-            ("define-obsolete-function-alias" code nil nil [2701 2772])
-            ("w32-color-map" variable nil nil [2774 2796])
-            ("make-obsolete" code nil nil [2820 2869])
-            ("declare-function" code nil nil [2871 2921])
-            ("declare-function" code nil nil [2922 2968])
-            ("declare-function" code nil nil [2970 3069])
-            ("if" code nil nil [3144 3194])
-            ("w32-handle-dropped-file" function (:arguments ("window" "file-name")) nil [3482 4325])
-            ("w32-drag-n-drop" function
-               (:user-visible-flag t
-                :arguments ("event" "new-frame"))
-                nil [4327 5107])
-            ("w32-drag-n-drop-other-frame" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [5109 5370])
-            ("global-set-key" code nil nil [5403 5450])
-            ("global-set-key" code nil nil [5451 5512])
-            ("global-set-key" code nil nil [5713 5755])
-            ("x-resource-name" variable nil nil [5757 5781])
-            ("w32-menu-bar-open" function
-               (:user-visible-flag t
-                :arguments ("frame"))
-                nil [5903 6633])
-            ("w32-standard-fontset-spec" variable (:default-value "-*-Courier New-normal-r-*-*-13-*-*-*-c-*-fontset-standard") nil [6746 7121])
-            ("w32-win-suspend-error" function nil nil [7123 7269])
-            ("dynamic-library-alist" variable nil nil [7271 7301])
-            ("libpng-version" variable nil nil [7302 7325])
-            ("libgif-version" variable nil nil [7370 7393])
-            ("libjpeg-version" variable nil nil [7394 7418])
-            ("libgnutls-version" variable nil nil [7420 7446])
-            ("setq" code nil nil [7523 10375])
-            ("w32-initialized" variable nil nil [10399 10486])
-            ("declare-function" code nil nil [10488 10597])
-            ("declare-function" code nil nil [10598 10652])
-            ("declare-function" code nil nil [10653 10779])
-            ("declare-function" code nil nil [10780 10842])
-            ("declare-function" code nil nil [10843 10951])
-            ("declare-function" code nil nil [10952 11004])
-            ("declare-function" code nil nil [11005 11059])
-            ("x-command-line-resources" variable nil nil [11060 11093])
-            ("cl-defmethod" code nil nil [11095 14655])
-            ("add-to-list" code nil nil [14657 14713])
-            ("cl-defmethod" code nil nil [14714 14808])
-            ("cl-defmethod" code nil nil [14810 14923])
-            ("declare-function" code nil nil [14942 15028])
-            ("declare-function" code nil nil [15029 15084])
-            ("declare-function" code nil nil [15085 15140])
-            ("w32--set-selection" function (:arguments ("type" "value")) nil [15185 15380])
-            ("w32--get-selection" function (:arguments ("type" "data-type")) nil [15382 15833])
-            ("w32--selection-owner-p" function (:arguments ("selection")) nil [15835 15978])
-            ("cl-defmethod" code nil nil [15980 16137])
-            ("cl-defmethod" code nil nil [16139 16304])
-            ("cl-defmethod" code nil nil [16306 16473])
-            ("cl-defmethod" code nil nil [16475 16644])
-            ("when" code nil nil [16646 17557])
-            ("global-set-key" code nil nil [17712 17746])
-            ("global-set-key" code nil nil [17747 17781])
-            ("declare-function" code nil nil [17783 17850])
-            ("w32-version" function nil nil [17852 18036])
-            ("w32-using-nt" function nil nil [18038 18195])
-            ("w32-win" package nil nil [18197 18215])
-            ("term/w32-win" package nil nil [18216 18239]))          
-      :file "w32-win.el"
-      :pointmax 18266
-      :fsize 18265
-      :lastmodtime '(23525 29606 0 0)
-      :unmatched-syntax '((close-paren 2264 . 2265) (symbol 2229 . 2246) (open-paren 2228 . 2229)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("x-alternatives-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [M-backspace] [134217855]) (define-key map [M-delete] [134217855]) (define-key map [M-tab] [134217737]) (define-key map [M-linefeed] [134217738]) (define-key map [M-clear] [134217740]) (define-key map [M-return] [134217741]) (define-key map [M-escape] [134217755]) (unless (featurep (quote ns)) (define-key map [iso-lefttab] [backtab]) (define-key map [S-iso-lefttab] [backtab])) (and (or (eq system-type (quote windows-nt)) (featurep (quote ns))) (define-key map [S-tab] [backtab])) map)) nil [911 1641])
-            ("x-setup-function-keys" function (:arguments ("frame")) nil [1643 3196])
-            ("x-invocation-args" variable nil nil [3198 3224])
-            ("x-command-line-resources" variable nil nil [3226 3263])
-            ("x-handle-switch" function (:arguments ("switch" "numeric")) nil [3331 3662])
-            ("x-handle-numeric-switch" function (:arguments ("switch")) nil [3712 3781])
-            ("x-handle-initial-switch" function (:arguments ("switch")) nil [3834 4083])
-            ("x-handle-iconic" function (:arguments ("_switch")) nil [4134 4245])
-            ("x-handle-xrm-switch" function (:arguments ("switch")) nil [4274 4589])
-            ("declare-function" code nil nil [4591 4645])
-            ("x-handle-geometry" function (:arguments ("_switch")) nil [4677 5396])
-            ("x-resource-name" variable nil nil [5398 5422])
-            ("x-handle-name-switch" function (:arguments ("switch")) nil [5557 5836])
-            ("x-display-name" variable nil nil [5838 6020])
-            ("x-handle-display" function (:arguments ("_switch")) nil [6022 6454])
-            ("x-handle-args" function (:arguments ("args")) nil [6456 8525])
-            ("declare-function" code nil nil [9048 9109])
-            ("x-colors" variable (:default-value (if (featurep (quote ns)) (ns-list-colors) (purecopy (quote ("gray100" "grey100" "gray99" "grey99" "gray98" "grey98" "gray97" "grey97" "gray96" "grey96" "gray95" "grey95" "gray94" "grey94" "gray93" "grey93" "gray92" "grey92" "gray91" "grey91" "gray90" "grey90" "gray89" "grey89" "gray88" "grey88" "gray87" "grey87" "gray86" "grey86" "gray85" "grey85" "gray84" "grey84" "gray83" "grey83" "gray82" "grey82" "gray81" "grey81" "gray80" "grey80" "gray79" "grey79" "gray78" "grey78" "gray77" "grey77" "gray76" "grey76" "gray75" "grey75" "gray74" "grey74" "gray73" "grey73" "gray72" "grey72" "gray71" "grey71" "gray70" "grey70" "gray69" "grey69" "gray68" "grey68" "gray67" "grey67" "gray66" "grey66" "gray65" "grey65" "gray64" "grey64" "gray63" "grey63" "gray62" "grey62" "gray61" "grey61" "gray60" "grey60" "gray59" "grey59" "gray58" "grey58" "gray57" "grey57" "gray56" "grey56" "gray55" "grey55" "gray54" "grey54" "gray53" "grey53" "gray52" "grey52" "gray51" "grey51" "gray50" "grey50" "gray49" "grey49" "gray48" "grey48" "gray47" "grey47" "gray46" "grey46" "gray45" "grey45" "gray44" "grey44" "gray43" "grey43" "gray42" "grey42" "gray41" "grey41" "gray40" "grey40" "gray39" "grey39" "gray38" "grey38" "gray37" "grey37" "gray36" "grey36" "gray35" "grey35" "gray34" "grey34" "gray33" "grey33" "gray32" "grey32" "gray31" "grey31" "gray30" "grey30" "gray29" "grey29" "gray28" "grey28" "gray27" "grey27" "gray26" "grey26" "gray25" "grey25" "gray24" "grey24" "gray23" "grey23" "gray22" "grey22" "gray21" "grey21" "gray20" "grey20" "gray19" "grey19" "gray18" "grey18" "gray17" "grey17" "gray16" "grey16" "gray15" "grey15" "gray14" "grey14" "gray13" "grey13" "gray12" "grey12" "gray11" "grey11" "gray10" "grey10" "gray9" "grey9" "gray8" "grey8" "gray7" "grey7" "gray6" "grey6" "gray5" "grey5" "gray4" "grey4" "gray3" "grey3" "gray2" "grey2" "gray1" "grey1" "gray0" "grey0" "LightPink1" "LightPink2" "LightPink3" "LightPink4" "pink1" "pink2" "pink3" "pink4" "PaleVioletRed1" "PaleVioletRed2" "PaleVioletRed3" "PaleVioletRed4" "LavenderBlush1" "LavenderBlush2" "LavenderBlush3" "LavenderBlush4" "VioletRed1" "VioletRed2" "VioletRed3" "VioletRed4" "HotPink1" "HotPink2" "HotPink3" "HotPink4" "DeepPink1" "DeepPink2" "DeepPink3" "DeepPink4" "maroon1" "maroon2" "maroon3" "maroon4" "orchid1" "orchid2" "orchid3" "orchid4" "plum1" "plum2" "plum3" "plum4" "thistle1" "thistle2" "thistle3" "thistle4" "MediumOrchid1" "MediumOrchid2" "MediumOrchid3" "MediumOrchid4" "DarkOrchid1" "DarkOrchid2" "DarkOrchid3" "DarkOrchid4" "purple1" "purple2" "purple3" "purple4" "MediumPurple1" "MediumPurple2" "MediumPurple3" "MediumPurple4" "SlateBlue1" "SlateBlue2" "SlateBlue3" "SlateBlue4" "RoyalBlue1" "RoyalBlue2" "RoyalBlue3" "RoyalBlue4" "LightSteelBlue1" "LightSteelBlue2" "LightSteelBlue3" "LightSteelBlue4" "SlateGray1" "SlateGray2" "SlateGray3" "SlateGray4" "DodgerBlue1" "DodgerBlue2" "DodgerBlue3" "DodgerBlue4" "SteelBlue1" "SteelBlue2" "SteelBlue3" "SteelBlue4" "SkyBlue1" "SkyBlue2" "SkyBlue3" "SkyBlue4" "LightSkyBlue1" "LightSkyBlue2" "LightSkyBlue3" "LightSkyBlue4" "LightBlue1" "LightBlue2" "LightBlue3" "LightBlue4" "CadetBlue1" "CadetBlue2" "CadetBlue3" "CadetBlue4" "azure1" "azure2" "azure3" "azure4" "LightCyan1" "LightCyan2" "LightCyan3" "LightCyan4" "PaleTurquoise1" "PaleTurquoise2" "PaleTurquoise3" "PaleTurquoise4" "DarkSlateGray1" "DarkSlateGray2" "DarkSlateGray3" "DarkSlateGray4" "aquamarine1" "aquamarine2" "aquamarine3" "aquamarine4" "SeaGreen1" "SeaGreen2" "SeaGreen3" "SeaGreen4" "honeydew1" "honeydew2" "honeydew3" "honeydew4" "DarkSeaGreen1" "DarkSeaGreen2" "DarkSeaGreen3" "DarkSeaGreen4" "PaleGreen1" "PaleGreen2" "PaleGreen3" "PaleGreen4" "DarkOliveGreen1" "DarkOliveGreen2" "DarkOliveGreen3" "DarkOliveGreen4" "OliveDrab1" "OliveDrab2" "OliveDrab3" "OliveDrab4" "ivory1" "ivory2" "ivory3" "ivory4" "LightYellow1" "LightYellow2" "LightYellow3" "LightYellow4" "khaki1" "khaki2" "khaki3" "khaki4" "LemonChiffon1" "LemonChiffon2" "LemonChiffon3" "LemonChiffon4" "LightGoldenrod1" "LightGoldenrod2" "LightGoldenrod3" "LightGoldenrod4" "cornsilk1" "cornsilk2" "cornsilk3" "cornsilk4" "goldenrod1" "goldenrod2" "goldenrod3" "goldenrod4" "DarkGoldenrod1" "DarkGoldenrod2" "DarkGoldenrod3" "DarkGoldenrod4" "wheat1" "wheat2" "wheat3" "wheat4" "NavajoWhite1" "NavajoWhite2" "NavajoWhite3" "NavajoWhite4" "burlywood1" "burlywood2" "burlywood3" "burlywood4" "AntiqueWhite1" "AntiqueWhite2" "AntiqueWhite3" "AntiqueWhite4" "bisque1" "bisque2" "bisque3" "bisque4" "tan1" "tan2" "tan3" "tan4" "PeachPuff1" "PeachPuff2" "PeachPuff3" "PeachPuff4" "seashell1" "seashell2" "seashell3" "seashell4" "chocolate1" "chocolate2" "chocolate3" "chocolate4" "sienna1" "sienna2" "sienna3" "sienna4" "LightSalmon1" "LightSalmon2" "LightSalmon3" "LightSalmon4" "salmon1" "salmon2" "salmon3" "salmon4" "coral1" "coral2" "coral3" "coral4" "tomato1" "tomato2" "tomato3" "tomato4" "MistyRose1" "MistyRose2" "MistyRose3" "MistyRose4" "snow1" "snow2" "snow3" "snow4" "RosyBrown1" "RosyBrown2" "RosyBrown3" "RosyBrown4" "IndianRed1" "IndianRed2" "IndianRed3" "IndianRed4" "firebrick1" "firebrick2" "firebrick3" "firebrick4" "brown1" "brown2" "brown3" "brown4" "magenta1" "magenta2" "magenta3" "magenta4" "blue1" "blue2" "blue3" "blue4" "DeepSkyBlue1" "DeepSkyBlue2" "DeepSkyBlue3" "DeepSkyBlue4" "turquoise1" "turquoise2" "turquoise3" "turquoise4" "cyan1" "cyan2" "cyan3" "cyan4" "SpringGreen1" "SpringGreen2" "SpringGreen3" "SpringGreen4" "green1" "green2" "green3" "green4" "chartreuse1" "chartreuse2" "chartreuse3" "chartreuse4" "yellow1" "yellow2" "yellow3" "yellow4" "gold1" "gold2" "gold3" "gold4" "orange1" "orange2" "orange3" "orange4" "DarkOrange1" "DarkOrange2" "DarkOrange3" "DarkOrange4" "OrangeRed1" "OrangeRed2" "OrangeRed3" "OrangeRed4" "red1" "red2" "red3" "red4" "lavender blush" "LavenderBlush" "ghost white" "GhostWhite" "lavender" "alice blue" "AliceBlue" "azure" "light cyan" "LightCyan" "mint cream" "MintCream" "honeydew" "ivory" "light goldenrod yellow" "LightGoldenrodYellow" "light yellow" "LightYellow" "beige" "floral white" "FloralWhite" "old lace" "OldLace" "blanched almond" "BlanchedAlmond" "moccasin" "papaya whip" "PapayaWhip" "bisque" "antique white" "AntiqueWhite" "linen" "peach puff" "PeachPuff" "seashell" "misty rose" "MistyRose" "snow" "light pink" "LightPink" "pink" "hot pink" "HotPink" "deep pink" "DeepPink" "maroon" "pale violet red" "PaleVioletRed" "violet red" "VioletRed" "medium violet red" "MediumVioletRed" "violet" "plum" "thistle" "orchid" "medium orchid" "MediumOrchid" "dark orchid" "DarkOrchid" "purple" "blue violet" "BlueViolet" "medium purple" "MediumPurple" "light slate blue" "LightSlateBlue" "medium slate blue" "MediumSlateBlue" "slate blue" "SlateBlue" "dark slate blue" "DarkSlateBlue" "midnight blue" "MidnightBlue" "navy" "navy blue" "NavyBlue" "dark blue" "DarkBlue" "light steel blue" "LightSteelBlue" "cornflower blue" "CornflowerBlue" "dodger blue" "DodgerBlue" "royal blue" "RoyalBlue" "light slate gray" "light slate grey" "LightSlateGray" "LightSlateGrey" "slate gray" "slate grey" "SlateGray" "SlateGrey" "dark slate gray" "dark slate grey" "DarkSlateGray" "DarkSlateGrey" "steel blue" "SteelBlue" "cadet blue" "CadetBlue" "light sky blue" "LightSkyBlue" "sky blue" "SkyBlue" "light blue" "LightBlue" "powder blue" "PowderBlue" "pale turquoise" "PaleTurquoise" "turquoise" "medium turquoise" "MediumTurquoise" "dark turquoise" "DarkTurquoise" "dark cyan" "DarkCyan" "aquamarine" "medium aquamarine" "MediumAquamarine" "light sea green" "LightSeaGreen" "medium sea green" "MediumSeaGreen" "sea green" "SeaGreen" "dark sea green" "DarkSeaGreen" "pale green" "PaleGreen" "lime green" "LimeGreen" "dark green" "DarkGreen" "forest green" "ForestGreen" "light green" "LightGreen" "green yellow" "GreenYellow" "yellow green" "YellowGreen" "olive drab" "OliveDrab" "dark olive green" "DarkOliveGreen" "lemon chiffon" "LemonChiffon" "khaki" "dark khaki" "DarkKhaki" "cornsilk" "pale goldenrod" "PaleGoldenrod" "light goldenrod" "LightGoldenrod" "goldenrod" "dark goldenrod" "DarkGoldenrod" "wheat" "navajo white" "NavajoWhite" "tan" "burlywood" "sandy brown" "SandyBrown" "peru" "chocolate" "saddle brown" "SaddleBrown" "sienna" "rosy brown" "RosyBrown" "dark salmon" "DarkSalmon" "coral" "tomato" "light salmon" "LightSalmon" "salmon" "light coral" "LightCoral" "indian red" "IndianRed" "firebrick" "brown" "dark red" "DarkRed" "magenta" "dark magenta" "DarkMagenta" "dark violet" "DarkViolet" "medium blue" "MediumBlue" "blue" "deep sky blue" "DeepSkyBlue" "cyan" "medium spring green" "MediumSpringGreen" "spring green" "SpringGreen" "green" "lawn green" "LawnGreen" "chartreuse" "yellow" "gold" "orange" "dark orange" "DarkOrange" "orange red" "OrangeRed" "red" "white" "white smoke" "WhiteSmoke" "gainsboro" "light gray" "light grey" "LightGray" "LightGrey" "gray" "grey" "dark gray" "dark grey" "DarkGray" "DarkGrey" "dim gray" "dim grey" "DimGray" "DimGrey" "black"))))) nil [9111 19362])
-            ("w32-color-map" variable nil nil [19364 19386])
-            ("xw-defined-colors" function (:arguments ("frame")) nil [19388 19858])
-            ("term/common-win" package nil nil [19860 19886]))          
-      :file "common-win.el"
-      :pointmax 19916
-      :fsize 19915
-      :lastmodtime '(23525 29604 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("color-name-rgb-alist" variable
-               (:constant-flag t
-                :default-value (quote (("snow" 65535 64250 64250) ("ghostwhite" 63736 63736 65535) ("whitesmoke" 62965 62965 62965) ("gainsboro" 56540 56540 56540) ("floralwhite" 65535 64250 61680) ("oldlace" 65021 62965 59110) ("linen" 64250 61680 59110) ("antiquewhite" 64250 60395 55255) ("papayawhip" 65535 61423 54741) ("blanchedalmond" 65535 60395 52685) ("bisque" 65535 58596 50372) ("peachpuff" 65535 56026 47545) ("navajowhite" 65535 57054 44461) ("moccasin" 65535 58596 46517) ("cornsilk" 65535 63736 56540) ("ivory" 65535 65535 61680) ("lemonchiffon" 65535 64250 52685) ("seashell" 65535 62965 61166) ("honeydew" 61680 65535 61680) ("mintcream" 62965 65535 64250) ("azure" 61680 65535 65535) ("aliceblue" 61680 63736 65535) ("lavender" 59110 59110 64250) ("lavenderblush" 65535 61680 62965) ("mistyrose" 65535 58596 57825) ("white" 65535 65535 65535) ("black" 0 0 0) ("darkslategray" 12079 20303 20303) ("darkslategrey" 12079 20303 20303) ("dimgray" 26985 26985 26985) ("dimgrey" 26985 26985 26985) ("slategray" 28784 32896 37008) ("slategrey" 28784 32896 37008) ("lightslategray" 30583 34952 39321) ("lightslategrey" 30583 34952 39321) ("gray" 48830 48830 48830) ("grey" 48830 48830 48830) ("lightgrey" 54227 54227 54227) ("lightgray" 54227 54227 54227) ("midnightblue" 6425 6425 28784) ("navy" 0 0 32896) ("navyblue" 0 0 32896) ("cornflowerblue" 25700 38293 60909) ("darkslateblue" 18504 15677 35723) ("slateblue" 27242 23130 52685) ("mediumslateblue" 31611 26728 61166) ("lightslateblue" 33924 28784 65535) ("mediumblue" 0 0 52685) ("royalblue" 16705 26985 57825) ("blue" 0 0 65535) ("dodgerblue" 7710 37008 65535) ("deepskyblue" 0 49087 65535) ("skyblue" 34695 52942 60395) ("lightskyblue" 34695 52942 64250) ("steelblue" 17990 33410 46260) ("lightsteelblue" 45232 50372 57054) ("lightblue" 44461 55512 59110) ("powderblue" 45232 57568 59110) ("paleturquoise" 44975 61166 61166) ("darkturquoise" 0 52942 53713) ("mediumturquoise" 18504 53713 52428) ("turquoise" 16448 57568 53456) ("cyan" 0 65535 65535) ("lightcyan" 57568 65535 65535) ("cadetblue" 24415 40606 41120) ("mediumaquamarine" 26214 52685 43690) ("aquamarine" 32639 65535 54484) ("darkgreen" 0 25700 0) ("darkolivegreen" 21845 27499 12079) ("darkseagreen" 36751 48316 36751) ("seagreen" 11822 35723 22359) ("mediumseagreen" 15420 46003 29041) ("lightseagreen" 8224 45746 43690) ("palegreen" 39064 64507 39064) ("springgreen" 0 65535 32639) ("lawngreen" 31868 64764 0) ("green" 0 65535 0) ("chartreuse" 32639 65535 0) ("mediumspringgreen" 0 64250 39578) ("greenyellow" 44461 65535 12079) ("limegreen" 12850 52685 12850) ("yellowgreen" 39578 52685 12850) ("forestgreen" 8738 35723 8738) ("olivedrab" 27499 36494 8995) ("darkkhaki" 48573 47031 27499) ("khaki" 61680 59110 35980) ("palegoldenrod" 61166 59624 43690) ("lightgoldenrodyellow" 64250 64250 53970) ("lightyellow" 65535 65535 57568) ("yellow" 65535 65535 0) ("gold" 65535 55255 0) ("lightgoldenrod" 61166 56797 33410) ("goldenrod" 56026 42405 8224) ("darkgoldenrod" 47288 34438 2827) ("rosybrown" 48316 36751 36751) ("indianred" 52685 23644 23644) ("saddlebrown" 35723 17733 4883) ("sienna" 41120 21074 11565) ("peru" 52685 34181 16191) ("burlywood" 57054 47288 34695) ("beige" 62965 62965 56540) ("wheat" 62965 57054 46003) ("sandybrown" 62708 42148 24672) ("tan" 53970 46260 35980) ("chocolate" 53970 26985 7710) ("firebrick" 45746 8738 8738) ("brown" 42405 10794 10794) ("darksalmon" 59881 38550 31354) ("salmon" 64250 32896 29298) ("lightsalmon" 65535 41120 31354) ("orange" 65535 42405 0) ("darkorange" 65535 35980 0) ("coral" 65535 32639 20560) ("lightcoral" 61680 32896 32896) ("tomato" 65535 25443 18247) ("orangered" 65535 17733 0) ("red" 65535 0 0) ("hotpink" 65535 26985 46260) ("deeppink" 65535 5140 37779) ("pink" 65535 49344 52171) ("lightpink" 65535 46774 49601) ("palevioletred" 56283 28784 37779) ("maroon" 45232 12336 24672) ("mediumvioletred" 51143 5397 34181) ("violetred" 53456 8224 37008) ("magenta" 65535 0 65535) ("violet" 61166 33410 61166) ("plum" 56797 41120 56797) ("orchid" 56026 28784 54998) ("mediumorchid" 47802 21845 54227) ("darkorchid" 39321 12850 52428) ("darkviolet" 38036 0 54227) ("blueviolet" 35466 11051 58082) ("purple" 41120 8224 61680) ("mediumpurple" 37779 28784 56283) ("thistle" 55512 49087 55512) ("snow1" 65535 64250 64250) ("snow2" 61166 59881 59881) ("snow3" 52685 51657 51657) ("snow4" 35723 35209 35209) ("seashell1" 65535 62965 61166) ("seashell2" 61166 58853 57054) ("seashell3" 52685 50629 49087) ("seashell4" 35723 34438 33410) ("antiquewhite1" 65535 61423 56283) ("antiquewhite2" 61166 57311 52428) ("antiquewhite3" 52685 49344 45232) ("antiquewhite4" 35723 33667 30840) ("bisque1" 65535 58596 50372) ("bisque2" 61166 54741 47031) ("bisque3" 52685 47031 40606) ("bisque4" 35723 32125 27499) ("peachpuff1" 65535 56026 47545) ("peachpuff2" 61166 52171 44461) ("peachpuff3" 52685 44975 38293) ("peachpuff4" 35723 30583 25957) ("navajowhite1" 65535 57054 44461) ("navajowhite2" 61166 53199 41377) ("navajowhite3" 52685 46003 35723) ("navajowhite4" 35723 31097 24158) ("lemonchiffon1" 65535 64250 52685) ("lemonchiffon2" 61166 59881 49087) ("lemonchiffon3" 52685 51657 42405) ("lemonchiffon4" 35723 35209 28784) ("cornsilk1" 65535 63736 56540) ("cornsilk2" 61166 59624 52685) ("cornsilk3" 52685 51400 45489) ("cornsilk4" 35723 34952 30840) ("ivory1" 65535 65535 61680) ("ivory2" 61166 61166 57568) ("ivory3" 52685 52685 49601) ("ivory4" 35723 35723 33667) ("honeydew1" 61680 65535 61680) ("honeydew2" 57568 61166 57568) ("honeydew3" 49601 52685 49601) ("honeydew4" 33667 35723 33667) ("lavenderblush1" 65535 61680 62965) ("lavenderblush2" 61166 57568 58853) ("lavenderblush3" 52685 49601 50629) ("lavenderblush4" 35723 33667 34438) ("mistyrose1" 65535 58596 57825) ("mistyrose2" 61166 54741 53970) ("mistyrose3" 52685 47031 46517) ("mistyrose4" 35723 32125 31611) ("azure1" 61680 65535 65535) ("azure2" 57568 61166 61166) ("azure3" 49601 52685 52685) ("azure4" 33667 35723 35723) ("slateblue1" 33667 28527 65535) ("slateblue2" 31354 26471 61166) ("slateblue3" 26985 22873 52685) ("slateblue4" 18247 15420 35723) ("royalblue1" 18504 30326 65535) ("royalblue2" 17219 28270 61166) ("royalblue3" 14906 24415 52685) ("royalblue4" 10023 16448 35723) ("blue1" 0 0 65535) ("blue2" 0 0 61166) ("blue3" 0 0 52685) ("blue4" 0 0 35723) ("dodgerblue1" 7710 37008 65535) ("dodgerblue2" 7196 34438 61166) ("dodgerblue3" 6168 29812 52685) ("dodgerblue4" 4112 20046 35723) ("steelblue1" 25443 47288 65535) ("steelblue2" 23644 44204 61166) ("steelblue3" 20303 38036 52685) ("steelblue4" 13878 25700 35723) ("deepskyblue1" 0 49087 65535) ("deepskyblue2" 0 45746 61166) ("deepskyblue3" 0 39578 52685) ("deepskyblue4" 0 26728 35723) ("skyblue1" 34695 52942 65535) ("skyblue2" 32382 49344 61166) ("skyblue3" 27756 42662 52685) ("skyblue4" 19018 28784 35723) ("lightskyblue1" 45232 58082 65535) ("lightskyblue2" 42148 54227 61166) ("lightskyblue3" 36237 46774 52685) ("lightskyblue4" 24672 31611 35723) ("slategray1" 50886 58082 65535) ("slategray2" 47545 54227 61166) ("slategray3" 40863 46774 52685) ("slategray4" 27756 31611 35723) ("lightsteelblue1" 51914 57825 65535) ("lightsteelblue2" 48316 53970 61166) ("lightsteelblue3" 41634 46517 52685) ("lightsteelblue4" 28270 31611 35723) ("lightblue1" 49087 61423 65535) ("lightblue2" 45746 57311 61166) ("lightblue3" 39578 49344 52685) ("lightblue4" 26728 33667 35723) ("lightcyan1" 57568 65535 65535) ("lightcyan2" 53713 61166 61166) ("lightcyan3" 46260 52685 52685) ("lightcyan4" 31354 35723 35723) ("paleturquoise1" 48059 65535 65535) ("paleturquoise2" 44718 61166 61166) ("paleturquoise3" 38550 52685 52685) ("paleturquoise4" 26214 35723 35723) ("cadetblue1" 39064 62965 65535) ("cadetblue2" 36494 58853 61166) ("cadetblue3" 31354 50629 52685) ("cadetblue4" 21331 34438 35723) ("turquoise1" 0 62965 65535) ("turquoise2" 0 58853 61166) ("turquoise3" 0 50629 52685) ("turquoise4" 0 34438 35723) ("cyan1" 0 65535 65535) ("cyan2" 0 61166 61166) ("cyan3" 0 52685 52685) ("cyan4" 0 35723 35723) ("darkslategray1" 38807 65535 65535) ("darkslategray2" 36237 61166 61166) ("darkslategray3" 31097 52685 52685) ("darkslategray4" 21074 35723 35723) ("aquamarine1" 32639 65535 54484) ("aquamarine2" 30326 61166 50886) ("aquamarine3" 26214 52685 43690) ("aquamarine4" 17733 35723 29812) ("darkseagreen1" 49601 65535 49601) ("darkseagreen2" 46260 61166 46260) ("darkseagreen3" 39835 52685 39835) ("darkseagreen4" 26985 35723 26985) ("seagreen1" 21588 65535 40863) ("seagreen2" 20046 61166 38036) ("seagreen3" 17219 52685 32896) ("seagreen4" 11822 35723 22359) ("palegreen1" 39578 65535 39578) ("palegreen2" 37008 61166 37008) ("palegreen3" 31868 52685 31868) ("palegreen4" 21588 35723 21588) ("springgreen1" 0 65535 32639) ("springgreen2" 0 61166 30326) ("springgreen3" 0 52685 26214) ("springgreen4" 0 35723 17733) ("green1" 0 65535 0) ("green2" 0 61166 0) ("green3" 0 52685 0) ("green4" 0 35723 0) ("chartreuse1" 32639 65535 0) ("chartreuse2" 30326 61166 0) ("chartreuse3" 26214 52685 0) ("chartreuse4" 17733 35723 0) ("olivedrab1" 49344 65535 15934) ("olivedrab2" 46003 61166 14906) ("olivedrab3" 39578 52685 12850) ("olivedrab4" 26985 35723 8738) ("darkolivegreen1" 51914 65535 28784) ("darkolivegreen2" 48316 61166 26728) ("darkolivegreen3" 41634 52685 23130) ("darkolivegreen4" 28270 35723 15677) ("khaki1" 65535 63222 36751) ("khaki2" 61166 59110 34181) ("khaki3" 52685 50886 29555) ("khaki4" 35723 34438 20046) ("lightgoldenrod1" 65535 60652 35723) ("lightgoldenrod2" 61166 56540 33410) ("lightgoldenrod3" 52685 48830 28784) ("lightgoldenrod4" 35723 33153 19532) ("lightyellow1" 65535 65535 57568) ("lightyellow2" 61166 61166 53713) ("lightyellow3" 52685 52685 46260) ("lightyellow4" 35723 35723 31354) ("yellow1" 65535 65535 0) ("yellow2" 61166 61166 0) ("yellow3" 52685 52685 0) ("yellow4" 35723 35723 0) ("gold1" 65535 55255 0) ("gold2" 61166 51657 0) ("gold3" 52685 44461 0) ("gold4" 35723 30069 0) ("goldenrod1" 65535 49601 9509) ("goldenrod2" 61166 46260 8738) ("goldenrod3" 52685 39835 7453) ("goldenrod4" 35723 26985 5140) ("darkgoldenrod1" 65535 47545 3855) ("darkgoldenrod2" 61166 44461 3598) ("darkgoldenrod3" 52685 38293 3084) ("darkgoldenrod4" 35723 25957 2056) ("rosybrown1" 65535 49601 49601) ("rosybrown2" 61166 46260 46260) ("rosybrown3" 52685 39835 39835) ("rosybrown4" 35723 26985 26985) ("indianred1" 65535 27242 27242) ("indianred2" 61166 25443 25443) ("indianred3" 52685 21845 21845) ("indianred4" 35723 14906 14906) ("sienna1" 65535 33410 18247) ("sienna2" 61166 31097 16962) ("sienna3" 52685 26728 14649) ("sienna4" 35723 18247 9766) ("burlywood1" 65535 54227 39835) ("burlywood2" 61166 50629 37265) ("burlywood3" 52685 43690 32125) ("burlywood4" 35723 29555 21845) ("wheat1" 65535 59367 47802) ("wheat2" 61166 55512 44718) ("wheat3" 52685 47802 38550) ("wheat4" 35723 32382 26214) ("tan1" 65535 42405 20303) ("tan2" 61166 39578 18761) ("tan3" 52685 34181 16191) ("tan4" 35723 23130 11051) ("chocolate1" 65535 32639 9252) ("chocolate2" 61166 30326 8481) ("chocolate3" 52685 26214 7453) ("chocolate4" 35723 17733 4883) ("firebrick1" 65535 12336 12336) ("firebrick2" 61166 11308 11308) ("firebrick3" 52685 9766 9766) ("firebrick4" 35723 6682 6682) ("brown1" 65535 16448 16448) ("brown2" 61166 15163 15163) ("brown3" 52685 13107 13107) ("brown4" 35723 8995 8995) ("salmon1" 65535 35980 26985) ("salmon2" 61166 33410 25186) ("salmon3" 52685 28784 21588) ("salmon4" 35723 19532 14649) ("lightsalmon1" 65535 41120 31354) ("lightsalmon2" 61166 38293 29298) ("lightsalmon3" 52685 33153 25186) ("lightsalmon4" 35723 22359 16962) ("orange1" 65535 42405 0) ("orange2" 61166 39578 0) ("orange3" 52685 34181 0) ("orange4" 35723 23130 0) ("darkorange1" 65535 32639 0) ("darkorange2" 61166 30326 0) ("darkorange3" 52685 26214 0) ("darkorange4" 35723 17733 0) ("coral1" 65535 29298 22102) ("coral2" 61166 27242 20560) ("coral3" 52685 23387 17733) ("coral4" 35723 15934 12079) ("tomato1" 65535 25443 18247) ("tomato2" 61166 23644 16962) ("tomato3" 52685 20303 14649) ("tomato4" 35723 13878 9766) ("orangered1" 65535 17733 0) ("orangered2" 61166 16448 0) ("orangered3" 52685 14135 0) ("orangered4" 35723 9509 0) ("red1" 65535 0 0) ("red2" 61166 0 0) ("red3" 52685 0 0) ("red4" 35723 0 0) ("deeppink1" 65535 5140 37779) ("deeppink2" 61166 4626 35209) ("deeppink3" 52685 4112 30326) ("deeppink4" 35723 2570 20560) ("hotpink1" 65535 28270 46260) ("hotpink2" 61166 27242 42919) ("hotpink3" 52685 24672 37008) ("hotpink4" 35723 14906 25186) ("pink1" 65535 46517 50629) ("pink2" 61166 43433 47288) ("pink3" 52685 37265 40606) ("pink4" 35723 25443 27756) ("lightpink1" 65535 44718 47545) ("lightpink2" 61166 41634 44461) ("lightpink3" 52685 35980 38293) ("lightpink4" 35723 24415 25957) ("palevioletred1" 65535 33410 43947) ("palevioletred2" 61166 31097 40863) ("palevioletred3" 52685 26728 35209) ("palevioletred4" 35723 18247 23901) ("maroon1" 65535 13364 46003) ("maroon2" 61166 12336 42919) ("maroon3" 52685 10537 37008) ("maroon4" 35723 7196 25186) ("violetred1" 65535 15934 38550) ("violetred2" 61166 14906 35980) ("violetred3" 52685 12850 30840) ("violetred4" 35723 8738 21074) ("magenta1" 65535 0 65535) ("magenta2" 61166 0 61166) ("magenta3" 52685 0 52685) ("magenta4" 35723 0 35723) ("orchid1" 65535 33667 64250) ("orchid2" 61166 31354 59881) ("orchid3" 52685 26985 51657) ("orchid4" 35723 18247 35209) ("plum1" 65535 48059 65535) ("plum2" 61166 44718 61166) ("plum3" 52685 38550 52685) ("plum4" 35723 26214 35723) ("mediumorchid1" 57568 26214 65535) ("mediumorchid2" 53713 24415 61166) ("mediumorchid3" 46260 21074 52685) ("mediumorchid4" 31354 14135 35723) ("darkorchid1" 49087 15934 65535) ("darkorchid2" 45746 14906 61166) ("darkorchid3" 39578 12850 52685) ("darkorchid4" 26728 8738 35723) ("purple1" 39835 12336 65535) ("purple2" 37265 11308 61166) ("purple3" 32125 9766 52685) ("purple4" 21845 6682 35723) ("mediumpurple1" 43947 33410 65535) ("mediumpurple2" 40863 31097 61166) ("mediumpurple3" 35209 26728 52685) ("mediumpurple4" 23901 18247 35723) ("thistle1" 65535 57825 65535) ("thistle2" 61166 53970 61166) ("thistle3" 52685 46517 52685) ("thistle4" 35723 31611 35723) ("gray0" 0 0 0) ("grey0" 0 0 0) ("gray1" 771 771 771) ("grey1" 771 771 771) ("gray2" 1285 1285 1285) ("grey2" 1285 1285 1285) ("gray3" 2056 2056 2056) ("grey3" 2056 2056 2056) ("gray4" 2570 2570 2570) ("grey4" 2570 2570 2570) ("gray5" 3341 3341 3341) ("grey5" 3341 3341 3341) ("gray6" 3855 3855 3855) ("grey6" 3855 3855 3855) ("gray7" 4626 4626 4626) ("grey7" 4626 4626 4626) ("gray8" 5140 5140 5140) ("grey8" 5140 5140 5140) ("gray9" 5911 5911 5911) ("grey9" 5911 5911 5911) ("gray10" 6682 6682 6682) ("grey10" 6682 6682 6682) ("gray11" 7196 7196 7196) ("grey11" 7196 7196 7196) ("gray12" 7967 7967 7967) ("grey12" 7967 7967 7967) ("gray13" 8481 8481 8481) ("grey13" 8481 8481 8481) ("gray14" 9252 9252 9252) ("grey14" 9252 9252 9252) ("gray15" 9766 9766 9766) ("grey15" 9766 9766 9766) ("gray16" 10537 10537 10537) ("grey16" 10537 10537 10537) ("gray17" 11051 11051 11051) ("grey17" 11051 11051 11051) ("gray18" 11822 11822 11822) ("grey18" 11822 11822 11822) ("gray19" 12336 12336 12336) ("grey19" 12336 12336 12336) ("gray20" 13107 13107 13107) ("grey20" 13107 13107 13107) ("gray21" 13878 13878 13878) ("grey21" 13878 13878 13878) ("gray22" 14392 14392 14392) ("grey22" 14392 14392 14392) ("gray23" 15163 15163 15163) ("grey23" 15163 15163 15163) ("gray24" 15677 15677 15677) ("grey24" 15677 15677 15677) ("gray25" 16448 16448 16448) ("grey25" 16448 16448 16448) ("gray26" 16962 16962 16962) ("grey26" 16962 16962 16962) ("gray27" 17733 17733 17733) ("grey27" 17733 17733 17733) ("gray28" 18247 18247 18247) ("grey28" 18247 18247 18247) ("gray29" 19018 19018 19018) ("grey29" 19018 19018 19018) ("gray30" 19789 19789 19789) ("grey30" 19789 19789 19789) ("gray31" 20303 20303 20303) ("grey31" 20303 20303 20303) ("gray32" 21074 21074 21074) ("grey32" 21074 21074 21074) ("gray33" 21588 21588 21588) ("grey33" 21588 21588 21588) ("gray34" 22359 22359 22359) ("grey34" 22359 22359 22359) ("gray35" 22873 22873 22873) ("grey35" 22873 22873 22873) ("gray36" 23644 23644 23644) ("grey36" 23644 23644 23644) ("gray37" 24158 24158 24158) ("grey37" 24158 24158 24158) ("gray38" 24929 24929 24929) ("grey38" 24929 24929 24929) ("gray39" 25443 25443 25443) ("grey39" 25443 25443 25443) ("gray40" 26214 26214 26214) ("grey40" 26214 26214 26214) ("gray41" 26985 26985 26985) ("grey41" 26985 26985 26985) ("gray42" 27499 27499 27499) ("grey42" 27499 27499 27499) ("gray43" 28270 28270 28270) ("grey43" 28270 28270 28270) ("gray44" 28784 28784 28784) ("grey44" 28784 28784 28784) ("gray45" 29555 29555 29555) ("grey45" 29555 29555 29555) ("gray46" 30069 30069 30069) ("grey46" 30069 30069 30069) ("gray47" 30840 30840 30840) ("grey47" 30840 30840 30840) ("gray48" 31354 31354 31354) ("grey48" 31354 31354 31354) ("gray49" 32125 32125 32125) ("grey49" 32125 32125 32125) ("gray50" 32639 32639 32639) ("grey50" 32639 32639 32639) ("gray51" 33410 33410 33410) ("grey51" 33410 33410 33410) ("gray52" 34181 34181 34181) ("grey52" 34181 34181 34181) ("gray53" 34695 34695 34695) ("grey53" 34695 34695 34695) ("gray54" 35466 35466 35466) ("grey54" 35466 35466 35466) ("gray55" 35980 35980 35980) ("grey55" 35980 35980 35980) ("gray56" 36751 36751 36751) ("grey56" 36751 36751 36751) ("gray57" 37265 37265 37265) ("grey57" 37265 37265 37265) ("gray58" 38036 38036 38036) ("grey58" 38036 38036 38036) ("gray59" 38550 38550 38550) ("grey59" 38550 38550 38550) ("gray60" 39321 39321 39321) ("grey60" 39321 39321 39321) ("gray61" 40092 40092 40092) ("grey61" 40092 40092 40092) ("gray62" 40606 40606 40606) ("grey62" 40606 40606 40606) ("gray63" 41377 41377 41377) ("grey63" 41377 41377 41377) ("gray64" 41891 41891 41891) ("grey64" 41891 41891 41891) ("gray65" 42662 42662 42662) ("grey65" 42662 42662 42662) ("gray66" 43176 43176 43176) ("grey66" 43176 43176 43176) ("gray67" 43947 43947 43947) ("grey67" 43947 43947 43947) ("gray68" 44461 44461 44461) ("grey68" 44461 44461 44461) ("gray69" 45232 45232 45232) ("grey69" 45232 45232 45232) ("gray70" 46003 46003 46003) ("grey70" 46003 46003 46003) ("gray71" 46517 46517 46517) ("grey71" 46517 46517 46517) ("gray72" 47288 47288 47288) ("grey72" 47288 47288 47288) ("gray73" 47802 47802 47802) ("grey73" 47802 47802 47802) ("gray74" 48573 48573 48573) ("grey74" 48573 48573 48573) ("gray75" 49087 49087 49087) ("grey75" 49087 49087 49087) ("gray76" 49858 49858 49858) ("grey76" 49858 49858 49858) ("gray77" 50372 50372 50372) ("grey77" 50372 50372 50372) ("gray78" 51143 51143 51143) ("grey78" 51143 51143 51143) ("gray79" 51657 51657 51657) ("grey79" 51657 51657 51657) ("gray80" 52428 52428 52428) ("grey80" 52428 52428 52428) ("gray81" 53199 53199 53199) ("grey81" 53199 53199 53199) ("gray82" 53713 53713 53713) ("grey82" 53713 53713 53713) ("gray83" 54484 54484 54484) ("grey83" 54484 54484 54484) ("gray84" 54998 54998 54998) ("grey84" 54998 54998 54998) ("gray85" 55769 55769 55769) ("grey85" 55769 55769 55769) ("gray86" 56283 56283 56283) ("grey86" 56283 56283 56283) ("gray87" 57054 57054 57054) ("grey87" 57054 57054 57054) ("gray88" 57568 57568 57568) ("grey88" 57568 57568 57568) ("gray89" 58339 58339 58339) ("grey89" 58339 58339 58339) ("gray90" 58853 58853 58853) ("grey90" 58853 58853 58853) ("gray91" 59624 59624 59624) ("grey91" 59624 59624 59624) ("gray92" 60395 60395 60395) ("grey92" 60395 60395 60395) ("gray93" 60909 60909 60909) ("grey93" 60909 60909 60909) ("gray94" 61680 61680 61680) ("grey94" 61680 61680 61680) ("gray95" 62194 62194 62194) ("grey95" 62194 62194 62194) ("gray96" 62965 62965 62965) ("grey96" 62965 62965 62965) ("gray97" 63479 63479 63479) ("grey97" 63479 63479 63479) ("gray98" 64250 64250 64250) ("grey98" 64250 64250 64250) ("gray99" 64764 64764 64764) ("grey99" 64764 64764 64764) ("gray100" 65535 65535 65535) ("grey100" 65535 65535 65535) ("darkgrey" 43433 43433 43433) ("darkgray" 43433 43433 43433) ("darkblue" 0 0 35723) ("darkcyan" 0 35723 35723) ("darkmagenta" 35723 0 35723) ("darkred" 35723 0 0) ("lightgreen" 37008 61166 37008))))
-                nil [4130 27867])
-            ("tty-standard-colors" variable
-               (:constant-flag t
-                :default-value (quote (("black" 0 0 0 0) ("red" 1 65535 0 0) ("green" 2 0 65535 0) ("yellow" 3 65535 65535 0) ("blue" 4 0 0 65535) ("magenta" 5 65535 0 65535) ("cyan" 6 0 65535 65535) ("white" 7 65535 65535 65535))))
-                nil [27869 28240])
-            ("tty-color-mode-alist" variable
-               (:constant-flag t
-                :default-value (quote ((never . -1) (no . -1) (default . 0) (auto . 0) (ansi8 . 8) (always . 8) (yes . 8))))
-                nil [28268 28481])
-            ("tty-color-alist" function (:arguments ("_frame")) nil [28483 29252])
-            ("tty-modify-color-alist" function (:arguments ("elt" "frame")) nil [29254 30116])
-            ("tty-register-default-colors" function nil nil [30118 30622])
-            ("tty-color-canonicalize" function (:arguments ("color")) nil [30624 30906])
-            ("tty-color-24bit" function (:arguments ("rgb")) nil [30908 31215])
-            ("tty-color-define" function (:arguments ("name" "index" "rgb" "frame")) nil [31217 32217])
-            ("tty-color-clear" function (:arguments ("_frame")) nil [32219 32425])
-            ("tty-color-off-gray-diag" function (:arguments ("r" "g" "b")) nil [32427 32885])
-            ("tty-color-approximate" function (:arguments ("rgb" "frame")) nil [32887 34541])
-            ("tty-color-standard-values" function (:arguments ("color")) nil [34543 36584])
-            ("tty-color-translate" function (:arguments ("color" "frame")) nil [36586 37485])
-            ("tty-color-by-index" function (:arguments ("idx" "frame")) nil [37487 37935])
-            ("tty-color-values" function (:arguments ("color" "frame")) nil [37937 38397])
-            ("tty-color-desc" function (:arguments ("color" "frame")) nil [38399 39054])
-            ("tty-color-gray-shades" function (:arguments ("display")) nil [39056 39695])
-            ("term/tty-colors" package nil nil [39697 39723]))          
-      :file "tty-colors.el"
-      :pointmax 39753
-      :fsize 39752
-      :lastmodtime '(23525 29605 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!term!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041textmodes\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041textmodes\041semantic.cache"
deleted file mode 100644
index 6510d6d..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041textmodes\041semantic.cache"
+++ /dev/null
@@ -1,3444 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("enriched" package nil nil [1607 1626])
-            ("enriched" customgroup (:user-visible-flag t) nil [1675 1762])
-            ("enriched-verbose" variable (:default-value t) nil [1764 1899])
-            ("fixed" variable
-               (:default-value (quote ((t (:weight bold))))
-                :type "face")
-                nil [2108 2397])
-            ("excerpt" variable
-               (:default-value (quote ((t (:slant italic))))
-                :type "face")
-                nil [2399 2597])
-            ("enriched-display-table" variable
-               (:constant-flag t
-                :default-value (or (copy-sequence standard-display-table) (make-display-table)))
-                nil [2599 2706])
-            ("aset" code nil nil [2707 2776])
-            ("enriched-par-props" variable
-               (:constant-flag t
-                :default-value (quote (left-margin right-margin justification)))
-                nil [2778 2972])
-            ("enriched-initial-annotation" variable
-               (:constant-flag t
-                :default-value (lambda nil (format "Content-Type: text/enriched
-Text-Width: %d
-
-" fill-column)))
-                nil [3043 3369])
-            ("enriched-annotation-format" variable
-               (:constant-flag t
-                :default-value "<%s%s>")
-                nil [3371 3466])
-            ("enriched-annotation-regexp" variable
-               (:constant-flag t
-                :default-value "<\\(/\\)?\\([-A-Za-z0-9]+\\)>")
-                nil [3468 3596])
-            ("enriched-translations" variable (:default-value (quote ((face (bold-italic "bold" "italic") (bold "bold") (italic "italic") (underline "underline") (fixed "fixed") (excerpt "excerpt") (default) (nil enriched-encode-other-face)) (left-margin (4 "indent")) (right-margin (4 "indentright")) (justification (none "nofill") (right "flushright") (left "flushleft") (full "flushboth") (center "center")) (PARAMETER (t "param")) (FUNCTION (enriched-decode-foreground "x-color") (enriched-decode-background "x-bg-color") (enriched-decode-display-prop "x-display")) (read-only (t "x-read-only")) (display (nil enriched-handle-display-prop)) (unknown (nil format-annotate-value))))) nil [3598 4829])
-            ("enriched-ignore" variable
-               (:constant-flag t
-                :default-value (quote (front-sticky rear-nonsticky hard)))
-                nil [4831 5074])
-            ("enriched-mode-hook" variable nil nil [5100 5428])
-            ("enriched-allow-eval-in-display-props" variable nil nil [5430 6138])
-            ("enriched-old-bindings" variable nil nil [6140 6289])
-            ("make-variable-buffer-local" code nil nil [6290 6341])
-            ("enriched-default-text-properties-local-flag" variable (:default-value t) nil [6608 6662])
-            ("enriched-rerun-flag" variable nil nil [6859 6891])
-            ("enriched-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [remap move-beginning-of-line] (quote beginning-of-line-text)) (define-key map "
" (quote reindent-then-newline-and-indent)) (define-key map [remap newline-and-indent] (quote reindent-then-newline-and-indent)) (define-key map "\352" (quote facemenu-justification-menu)) (define-key map "\323" (quote set-justification-center)) (define-key map "	" (quote increase-left-margin)) (define-key map "[" (quote set-left-margin)) (define-key map "]" (quote set-right-margin)) map)) nil [6918 7501])
-            ("put" code nil nil [7532 7571])
-            ("define-minor-mode" code nil nil [7587 9950])
-            ("enriched-before-change-major-mode" function nil nil [9952 10121])
-            ("enriched-after-change-major-mode" function nil nil [10123 10249])
-            ("add-hook" code nil nil [10251 10325])
-            ("fset" code nil nil [10328 10371])
-            ("enriched-map-property-regions" function (:arguments ("prop" "func" "from" "to")) nil [10454 11444])
-            ("put" code nil nil [11446 11502])
-            ("enriched-insert-indentation" function (:arguments ("from" "to")) nil [11504 11935])
-            ("enriched-encode" function (:arguments ("from" "to" "orig-buf")) nil [11980 13149])
-            ("enriched-make-annotation" function (:arguments ("internal-ann" "positive")) nil [13151 13874])
-            ("enriched-encode-other-face" function (:arguments ("old" "new")) nil [13876 14120])
-            ("enriched-face-ans" function (:arguments ("face")) nil [14122 15194])
-            ("enriched-decode" function (:arguments ("from" "to")) nil [15239 16305])
-            ("enriched-next-annotation" function nil nil [16307 17165])
-            ("enriched-get-file-width" function nil nil [17167 17355])
-            ("enriched-remove-header" function nil nil [17357 17563])
-            ("enriched-decode-foreground" function (:arguments ("from" "to" "color")) nil [17565 17757])
-            ("enriched-decode-background" function (:arguments ("from" "to" "color")) nil [17759 17954])
-            ("enriched-handle-display-prop" function (:arguments ("old" "new")) nil [17996 18547])
-            ("enriched-decode-display-prop" function (:arguments ("start" "end" "param")) nil [18549 19202]))          
-      :file "enriched.el"
-      :pointmax 19230
-      :fsize 19229
-      :lastmodtime '(23525 29607 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [4484 4501])
-            ("subr-x" include nil nil [4522 4539])
-            ("mail-yank-prefix" variable nil nil [4542 4567])
-            ("ispell" customgroup (:user-visible-flag t) nil [4569 4660])
-            ("defalias" code nil nil [4662 4716])
-            ("ispell-highlight-p" variable (:default-value (quote block)) nil [5034 5270])
-            ("ispell-lazy-highlight" variable (:default-value (boundp (quote lazy-highlight-cleanup))) nil [5272 5665])
-            ("ispell-highlight-face" variable (:default-value (if ispell-lazy-highlight (quote isearch) (quote highlight))) nil [5667 5969])
-            ("ispell-check-comments" variable (:default-value t) nil [5971 6332])
-            ("put" code nil nil [6348 6443])
-            ("ispell-query-replace-choices" variable nil nil [6445 6634])
-            ("ispell-skip-tib" variable nil nil [6636 7069])
-            ("ispell-tib-ref-beginning" variable (:default-value "[[<]\\.") nil [7071 7168])
-            ("ispell-tib-ref-end" variable (:default-value "\\.[]>]") nil [7170 7255])
-            ("ispell-keep-choices-win" variable (:default-value t) nil [7257 7441])
-            ("ispell-choices-win-default-height" variable (:default-value 2) nil [7443 7621])
-            ("ispell-program-name" variable (:default-value (or (executable-find "aspell") (executable-find "ispell") (executable-find "hunspell") "ispell")) nil [7891 8289])
-            ("ispell-alternate-dictionary" variable (:default-value (cond ((file-readable-p "/usr/dict/web2") "/usr/dict/web2") ((file-readable-p "/usr/share/dict/web2") "/usr/share/dict/web2") ((file-readable-p "/usr/dict/words") "/usr/dict/words") ((file-readable-p "/usr/lib/dict/words") "/usr/lib/dict/words") ((file-readable-p "/usr/share/dict/words") "/usr/share/dict/words") ((file-readable-p "/usr/share/lib/dict/words") "/usr/share/lib/dict/words") ((file-readable-p "/sys/dict") "/sys/dict"))) nil [8291 8899])
-            ("ispell-complete-word-dict" variable nil nil [8901 9111])
-            ("ispell-message-dictionary-alist" variable nil nil [9113 9615])
-            ("ispell-message-fcc-skip" variable (:default-value 50000) nil [9618 9848])
-            ("ispell-grep-command" variable (:default-value "grep") nil [9851 9975])
-            ("ispell-grep-options" variable (:default-value "-Ei") nil [9977 10157])
-            ("ispell-look-command" variable (:default-value (cond ((file-exists-p "/bin/look") "/bin/look") ((file-exists-p "/usr/local/bin/look") "/usr/local/bin/look") ((file-exists-p "/usr/bin/look") "/usr/bin/look") (t "look"))) nil [10159 10485])
-            ("ispell-look-p" variable (:default-value (file-exists-p ispell-look-command)) nil [10487 10689])
-            ("ispell-have-new-look" variable nil nil [10691 10829])
-            ("ispell-look-options" variable (:default-value (if ispell-have-new-look "-dfr" "-df")) nil [10831 10991])
-            ("ispell-use-ptys-p" variable nil nil [10993 11150])
-            ("ispell-following-word" variable nil nil [11152 11345])
-            ("ispell-help-in-bufferp" variable nil nil [11347 11931])
-            ("ispell-quietly" variable nil nil [11933 12051])
-            ("ispell-format-word-function" variable (:default-value (function upcase)) nil [12053 12274])
-            ("defvaralias" code nil nil [12275 12337])
-            ("ispell-use-framepop-p" variable nil nil [12339 12711])
-            ("ispell-personal-dictionary" variable nil nil [12728 12975])
-            ("ispell-silently-savep" variable nil nil [12977 13124])
-            ("ispell-local-dictionary-overridden" variable nil nil [13126 13252])
-            ("make-variable-buffer-local" code nil nil [13253 13317])
-            ("ispell-local-dictionary" variable nil nil [13319 13968])
-            ("put" code nil nil [13984 14053])
-            ("make-variable-buffer-local" code nil nil [14055 14108])
-            ("ispell-dictionary" variable nil nil [14110 14282])
-            ("ispell-extra-args" variable nil nil [14284 14605])
-            ("ispell-skip-html" variable (:default-value (quote use-mode-name)) nil [14609 15021])
-            ("make-variable-buffer-local" code nil nil [15023 15069])
-            ("ispell-local-dictionary-alist" variable nil nil [15072 16047])
-            ("ispell-dictionary-base-alist" variable (:default-value (quote ((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("american" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("brasileiro" "[A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[^A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[']" nil nil nil iso-8859-1) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("castellano" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B") "~tex" iso-8859-1) ("castellano8" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B" "-d" "castellano") "~latin1" iso-8859-1) ("czech" "[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "[^A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "" nil ("-B") nil iso-8859-2) ("dansk" "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]" "[']" nil ("-C") nil iso-8859-1) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("deutsch8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "deutsch") "~latin1" iso-8859-1) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("esperanto" "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[-']" t ("-C") "~latin3" iso-8859-3) ("esperanto-tex" "[A-Za-z^\\]" "[^A-Za-z^\\]" "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-3) ("finnish" "[A-Za-z\345\344\366\305\304\326]" "[^A-Za-z\345\344\366\305\304\326]" "[:]" nil ("-C") "~list" iso-8859-1) ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^-]" t nil nil iso-8859-1) ("francais" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[-'.@]" t nil "~list" iso-8859-1) ("francais-tex" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[-'^`\".@]" t nil "~tex" iso-8859-1) ("german" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("german8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1) ("italiano" "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[-.]" nil ("-B" "-d" "italian") "~tex" iso-8859-1) ("nederlands" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("nederlands8" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("norsk" "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[\"]" nil nil "~list" iso-8859-1) ("norsk7-tex" "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]" "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1) ("polish" "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[.]" nil nil nil iso-8859-2) ("portugues" "[a-zA-Z\301\302\307\311\323\340\341\342\351\352\355\363\343\347\372]" "[^a-zA-Z\301\302\307\311\323\340\341\342\351\352\355\363\343\347\372]" "[']" t ("-C") "~latin1" iso-8859-1) ("russian" "[\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "[^\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "" nil nil nil koi8-r) ("russianw" "[\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "[^\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "" nil nil nil windows-1251) ("slovak" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B") nil iso-8859-2) ("slovenian" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B" "-d" "slovenian") nil iso-8859-2) ("svenska" "[A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[^A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[']" nil ("-C") "~list" iso-8859-1) ("hebrew" "[\340\341\342\343\344\345\346\347\350\351\353\352\354\356\355\360\357\361\362\364\363\367\366\365\370\371\372]" "[^\340\341\342\343\344\345\346\347\350\351\353\352\354\356\355\360\357\361\362\364\363\367\366\365\370\371\372]" "" nil ("-B") nil cp1255)))) nil [16050 24588])
-            ("ispell-dictionary-alist" variable nil nil [24590 27149])
-            ("ispell-really-aspell" variable nil nil [27151 27229])
-            ("ispell-really-hunspell" variable nil nil [27230 27312])
-            ("ispell-really-enchant" variable nil nil [27313 27393])
-            ("ispell-encoding8-command" variable nil nil [27394 28053])
-            ("ispell-aspell-supports-utf8" variable nil nil [28055 28354])
-            ("make-obsolete-variable" code nil nil [28356 28466])
-            ("ispell-dicts-name2locale-equivs-alist" variable (:default-value (quote (("american" "en_US") ("brasileiro" "pt_BR") ("british" "en_GB") ("castellano" "es_ES") ("castellano8" "es_ES") ("czech" "cs_CZ") ("dansk" "da_DK") ("deutsch" "de_DE") ("deutsch8" "de_DE") ("english" "en_US") ("esperanto" "eo") ("esperanto-tex" "eo") ("finnish" "fi_FI") ("francais7" "fr_FR") ("francais" "fr_FR") ("francais-tex" "fr_FR") ("german" "de_DE") ("german8" "de_DE") ("italiano" "it_IT") ("nederlands" "nl_NL") ("nederlands8" "nl_NL") ("norsk" "nn_NO") ("norsk7-tex" "nn_NO") ("polish" "pl_PL") ("portugues" "pt_PT") ("russian" "ru_RU") ("russianw" "ru_RU") ("slovak" "sk_SK") ("slovenian" "sl_SI") ("svenska" "sv_SE") ("hebrew" "he_IL")))) nil [28468 29538])
-            ("ispell-check-version" function
-               (:user-visible-flag t
-                :arguments ("interactivep"))
-                nil [29757 34062])
-            ("ispell-call-process" function (:arguments ("args")) nil [34064 34367])
-            ("ispell-call-process-region" function (:arguments ("args")) nil [34369 34693])
-            ("ispell-debug-buffer" variable nil nil [34695 34723])
-            ("ispell-create-debug-buffer" function (:arguments ("append")) nil [34725 35264])
-            ("ispell-print-if-debug" function (:arguments ("format" "args")) nil [35266 35551])
-            ("ispell-menu-map" variable nil nil [35771 35826])
-            ("setq" code nil nil [35892 35918])
-            ("ispell-menu-map-needed" variable (:default-value (unless ispell-menu-map (quote reload))) nil [35957 36023])
-            ("ispell-library-directory" variable (:default-value (condition-case nil (ispell-check-version) (error nil))) nil [36025 36177])
-            ("ispell-process" variable nil nil [36179 36241])
-            ("ispell-async-processp" variable (:default-value (and (fboundp (quote delete-process)) (fboundp (quote process-send-string)) (fboundp (quote accept-process-output)))) nil [36243 36446])
-            ("ispell-aspell-dictionary-alist" variable nil nil [36492 36612])
-            ("ispell-find-aspell-dictionaries" function nil nil [36614 37637])
-            ("ispell-aspell-data-dir" variable nil nil [37639 37704])
-            ("ispell-aspell-dict-dir" variable nil nil [37706 37777])
-            ("ispell-get-aspell-config-value" function (:arguments ("key")) nil [37779 38050])
-            ("ispell-aspell-find-dictionary" function (:arguments ("dict-name")) nil [38052 40602])
-            ("ispell-aspell-add-aliases" function (:arguments ("alist")) nil [40604 41802])
-            ("ispell-hunspell-dict-paths-alist" variable nil nil [41850 42107])
-            ("ispell-hunspell-dictionary-alist" variable nil nil [42109 42361])
-            ("ispell-hunspell-fill-dictionary-entry" function (:arguments ("dict")) nil [42363 43987])
-            ("ispell-parse-hunspell-affix-file" function (:arguments ("dict-key")) nil [43989 46743])
-            ("ispell-hunspell-add-multi-dic" function
-               (:user-visible-flag t
-                :arguments ("dict"))
-                nil [46745 47684])
-            ("ispell-find-hunspell-dictionaries" function nil nil [47686 51644])
-            ("ispell-enchant-dictionary-alist" variable nil nil [51691 51813])
-            ("ispell--call-enchant-lsmod" function (:arguments ("args")) nil [51815 52109])
-            ("ispell--get-extra-word-characters" function (:arguments ("lang")) nil [52111 52522])
-            ("ispell-find-enchant-dictionaries" function nil nil [52524 53554])
-            ("ispell-last-program-name" variable nil nil [53610 53703])
-            ("ispell-base-dicts-override-alist" variable nil nil [53842 53883])
-            ("ispell-initialize-spellchecker-hook" variable nil nil [53885 54428])
-            ("ispell-set-spellchecker-params" function nil nil [54430 59619])
-            ("ispell-valid-dictionary-list" function nil nil [59621 61047])
-            ("if" code nil nil [61134 63135])
-            ("if" code nil nil [63152 63917])
-            ("if" code nil nil [63934 64627])
-            ("ispell-current-dictionary" variable nil nil [64706 64952])
-            ("ispell-current-personal-dictionary" variable nil nil [64954 65134])
-            ("ispell-get-decoded-string" function (:arguments ("n")) nil [65207 65725])
-            ("ispell-get-casechars" function nil nil [65727 65790])
-            ("ispell-get-not-casechars" function nil nil [65791 65858])
-            ("ispell-get-otherchars" function nil nil [65859 65923])
-            ("ispell-get-many-otherchars-p" function nil nil [65924 66106])
-            ("ispell-get-ispell-args" function nil nil [66107 66283])
-            ("ispell-get-extended-character-mode" function nil nil [66284 66630])
-            ("ispell-get-coding-system" function nil nil [66631 66809])
-            ("ispell-pdict-modified-p" variable nil nil [66812 66917])
-            ("ispell-quit" variable nil nil [67124 67148])
-            ("ispell-process-directory" variable nil nil [67150 67241])
-            ("ispell-filter" variable nil nil [67243 67315])
-            ("ispell-filter-continue" variable nil nil [67317 67401])
-            ("ispell-output-buffer" variable nil nil [67403 67507])
-            ("ispell-session-buffer" variable nil nil [67509 67613])
-            ("ispell-cmd-args" variable nil nil [67615 67714])
-            ("ispell-query-replace-marker" variable (:default-value (make-marker)) nil [67716 67809])
-            ("ispell-recursive-edit-marker" variable (:default-value (make-marker)) nil [67811 67911])
-            ("ispell-checking-message" variable nil nil [67913 68056])
-            ("ispell-choices-buffer" variable
-               (:constant-flag t
-                :default-value "*Choices*")
-                nil [68058 68102])
-            ("ispell-overlay" variable nil nil [68104 68175])
-            ("ispell-words-keyword" variable
-               (:constant-flag t
-                :default-value "LocalWords: ")
-                nil [68215 68447])
-            ("ispell-dictionary-keyword" variable
-               (:constant-flag t
-                :default-value "Local IspellDict: ")
-                nil [68449 68753])
-            ("ispell-pdict-keyword" variable
-               (:constant-flag t
-                :default-value "Local IspellPersDict: ")
-                nil [68755 68992])
-            ("ispell-parsing-keyword" variable
-               (:constant-flag t
-                :default-value "Local IspellParsing: ")
-                nil [68994 69429])
-            ("ispell--\\w-filter" function (:arguments ("char")) nil [69431 69659])
-            ("ispell--make-\\w-expression" function (:arguments ("chars")) nil [69661 70421])
-            ("ispell--make-filename-or-URL-re" function nil nil [70423 70959])
-            ("ispell-skip-region-alist" variable (:default-value (\` ((ispell-words-keyword forward-line) (ispell-dictionary-keyword forward-line) (ispell-pdict-keyword forward-line) (ispell-parsing-keyword forward-line) ((\, (purecopy "^---*BEGIN PGP [A-Z ]*--*")) \, (purecopy "^---*END PGP [A-Z ]*--*")) ((\, (purecopy "^begin [0-9][0-9][0-9] [^ 	]+$")) \, (purecopy "
-end
-")) ((\, (purecopy "^%!PS-Adobe-[123].0")) \, (purecopy "
-%%EOF
-")) ((\, (purecopy "^---* \\(Start of \\)?[Ff]orwarded [Mm]essage")) \, (purecopy "^---* End of [Ff]orwarded [Mm]essage"))))) nil [70976 72929])
-            ("put" code nil nil [72930 72985])
-            ("ispell-tex-skip-alists" variable (:default-value (purecopy (quote ((("\\\\addcontentsline" ispell-tex-arg-end 2) ("\\\\add\\(tocontents\\|vspace\\)" ispell-tex-arg-end) ("\\\\\\([aA]lph\\|arabic\\)" ispell-tex-arg-end) ("\\\\cref" ispell-tex-arg-end) ("\\\\bibliographystyle" ispell-tex-arg-end) ("\\\\makebox" ispell-tex-arg-end 0) ("\\\\e?psfig" ispell-tex-arg-end) ("\\\\document\\(class\\|style\\)" . "\\\\begin[ 	
-]*{[ 	
-]*document[ 	
-]*}")) (("\\(figure\\|table\\)\\*?" ispell-tex-arg-end 0) ("list" ispell-tex-arg-end 2) ("program" . "\\\\end[ 	
-]*{[ 	
-]*program[ 	
-]*}") ("verbatim\\*?" . "\\\\end[ 	
-]*{[ 	
-]*verbatim\\*?[ 	
-]*}")))))) nil [73003 74390])
-            ("put" code nil nil [74391 74443])
-            ("ispell-html-skip-alists" variable
-               (:constant-flag t
-                :default-value (quote (("<[cC][oO][dD][eE]\\>[^>]*>" "</[cC][oO][dD][eE]*>") ("<[sS][cC][rR][iI][pP][tT]\\>[^>]*>" "</[sS][cC][rR][iI][pP][tT]>") ("<[aA][pP][pP][lL][eE][tT]\\>[^>]*>" "</[aA][pP][pP][lL][eE][tT]>") ("<[vV][eE][rR][bB]\\>[^>]*>" "<[vV][eE][rR][bB]\\>[^>]*>") ("<[tT][tT]/" "/") ("<[^ 	
->]" ">") ("&[^ 	
-;]" "[; 	
-]"))))
-                nil [74461 75110])
-            ("put" code nil nil [75111 75165])
-            ("ispell-local-pdict" variable (:default-value ispell-personal-dictionary) nil [75167 75662])
-            ("make-variable-buffer-local" code nil nil [75664 75712])
-            ("ispell-buffer-local-name" variable nil nil [75784 75952])
-            ("ispell-buffer-session-localwords" variable nil nil [75954 76054])
-            ("make-variable-buffer-local" code nil nil [76056 76118])
-            ("ispell-parser" variable (:default-value (quote use-mode-name)) nil [76120 76516])
-            ("ispell-region-end" variable (:default-value (make-marker)) nil [76518 76605])
-            ("ispell-check-only" variable nil nil [76607 76701])
-            ("ispell-accept-output" function (:arguments ("timeout-secs" "timeout-msecs")) nil [76912 77686])
-            ("ispell-send-replacement" function (:arguments ("misspelled" "replacement")) nil [77688 78056])
-            ("ispell-send-string" function (:arguments ("string")) nil [78059 81072])
-            ("ispell-word" function
-               (:user-visible-flag t
-                :arguments ("following" "quietly" "continue" "region"))
-                nil [81090 86446])
-            ("ispell-get-word" function (:arguments ("following" "extra-otherchars")) nil [86449 89112])
-            ("ispell-pdict-save" function
-               (:user-visible-flag t
-                :arguments ("no-query" "force-save"))
-                nil [89357 90091])
-            ("ispell-update-post-hook" variable nil nil [90094 90259])
-            ("ispell-command-loop" function (:arguments ("miss" "guess" "word" "start" "end")) nil [90261 100323])
-            ("ispell-show-choices" function nil nil [100327 100777])
-            ("ispell-help" function nil nil [100795 104198])
-            ("define-obsolete-function-alias" code nil nil [104200 104274])
-            ("ispell-lookup-words" function (:arguments ("word" "lookup-dict")) nil [104276 107365])
-            ("ispell-filter" function (:arguments ("_process" "output")) nil [108035 109238])
-            ("ispell-highlight-spelling-error-generic" function (:arguments ("start" "end" "highlight" "refresh")) nil [109369 111090])
-            ("ispell-highlight-spelling-error-overlay" function (:arguments ("start" "end" "highlight")) nil [111093 112337])
-            ("ispell-highlight-spelling-error" function (:arguments ("start" "end" "highlight" "refresh")) nil [112340 112586])
-            ("ispell-display-buffer" function (:arguments ("buffer")) nil [112588 114126])
-            ("ispell-parse-output" function (:arguments ("output" "accept-list" "shift")) nil [114181 116750])
-            ("ispell-process-status" function nil nil [116753 117000])
-            ("ispell-start-process" function nil nil [117003 119440])
-            ("ispell-init-process" function nil nil [119442 124227])
-            ("ispell-kill-ispell" function
-               (:user-visible-flag t
-                :arguments ("no-error" "clear"))
-                nil [124244 125288])
-            ("ispell-change-dictionary" function
-               (:user-visible-flag t
-                :arguments ("dict" "arg"))
-                nil [125460 127285])
-            ("ispell-internal-change-dictionary" function nil nil [127287 127912])
-            ("ispell-start" variable nil nil [127982 128003])
-            ("ispell-end" variable nil nil [128004 128023])
-            ("ispell-region" function
-               (:user-visible-flag t
-                :arguments ("reg-start" "reg-end" "recheckp" "shift"))
-                nil [128116 134530])
-            ("ispell-begin-skip-region-regexp" function nil nil [134533 136203])
-            ("ispell-begin-skip-region" function (:arguments ("skip-alist")) nil [136206 136526])
-            ("ispell-begin-tex-skip-regexp" function nil nil [136529 136999])
-            ("ispell-skip-region-list" function nil nil [137002 138093])
-            ("ispell-tex-arg-end" function (:arguments ("arg")) nil [138096 138399])
-            ("ispell-ignore-fcc" function (:arguments ("start" "end")) nil [138402 139336])
-            ("ispell-skip-region" function (:arguments ("key")) nil [139339 141170])
-            ("ispell-get-line" function (:arguments ("start" "end" "in-comment")) nil [141173 141917])
-            ("ispell-looking-at" function (:arguments ("string")) nil [141920 142223])
-            ("ispell-process-line" function (:arguments ("string" "shift")) nil [142225 150153])
-            ("ispell-comments-and-strings" function (:user-visible-flag t) nil [150171 150815])
-            ("ispell-buffer" function (:user-visible-flag t) nil [150833 150979])
-            ("ispell-buffer-with-debug" function
-               (:user-visible-flag t
-                :arguments ("append"))
-                nil [150996 151295])
-            ("ispell-continue" function (:user-visible-flag t) nil [151312 151869])
-            ("ispell-horiz-scroll" function nil nil [151897 152351])
-            ("ispell-complete-word" function
-               (:user-visible-flag t
-                :arguments ("interior-frag"))
-                nil [152478 154847])
-            ("ispell-complete-word-interior-frag" function (:user-visible-flag t) nil [154865 155015])
-            ("ispell" function (:user-visible-flag t) nil [155033 155646])
-            ("ispell-minor-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map " " (quote ispell-minor-check)) (define-key map "
" (quote ispell-minor-check)) map)) nil [155825 156028])
-            ("define-minor-mode" code nil nil [156045 156700])
-            ("ispell-minor-check" function (:user-visible-flag t) nil [156702 157272])
-            ("ispell-message-text-end" variable (:default-value (mapconcat (function identity) (quote ("^-- $" "^#! /bin/[ck]?sh" "\\(\\(^cd .*
-\\)?diff -c .*\\)?
-\\*\\*\\* .*
---- .*
-\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*" "\\(diff -u .*\\)?
---- .*
-\\+\\+\\+ .*
-@@ [-+][0-9]+,[0-9]+ [-+][0-9]+,[0-9]+ @@" "^current state:
-==============
-" "^\\(- \\)?[-=_]+\\s ?\\(cut here\\|Environment Follows\\)")) "\\|")) nil [157448 158537])
-            ("put" code nil nil [158538 158592])
-            ("ispell-mime-multipartp" function (:arguments ("limit")) nil [158595 159360])
-            ("ispell-mime-skip-part" function (:arguments ("boundary")) nil [159363 161808])
-            ("ispell-message" function (:user-visible-flag t) nil [161826 167602])
-            ("ispell-non-empty-string" function (:arguments ("string")) nil [167605 167779])
-            ("ispell-accept-buffer-local-defs" function nil nil [167964 168233])
-            ("ispell-buffer-local-parsing" function nil nil [168236 170469])
-            ("ispell-buffer-local-dict" function (:arguments ("no-reload")) nil [170512 171860])
-            ("ispell-buffer-local-words" function nil nil [171863 173337])
-            ("declare-function" code nil nil [173458 173532])
-            ("ispell-add-per-file-word-list" function (:arguments ("word")) nil [173534 175082])
-            ("ispell" package nil nil [175084 175101]))          
-      :file "ispell.el"
-      :pointmax 176461
-      :fsize 176460
-      :lastmodtime '(23525 29607 0 0)
-      :unmatched-syntax '((close-paren 4539 . 4540) (symbol 4504 . 4521) (open-paren 4503 . 4504) (close-paren 4501 . 4502) (symbol 4466 . 4483) (open-paren 4465 . 4466)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("paragraphs" customgroup (:user-visible-flag t) nil [1007 1086])
-            ("put" code nil nil [1088 1131])
-            ("define-minor-mode" code nil nil [1132 3126])
-            ("paragraph-start" variable (:default-value "\\|[ 	]*$") nil [3128 3928])
-            ("put" code nil nil [3929 3981])
-            ("paragraph-separate" variable (:default-value "[ 	]*$") nil [4316 4786])
-            ("put" code nil nil [4787 4842])
-            ("sentence-end-double-space" variable (:default-value t) nil [4844 5274])
-            ("put" code nil nil [5275 5338])
-            ("sentence-end-without-period" variable nil nil [5340 5758])
-            ("put" code nil nil [5759 5824])
-            ("sentence-end-without-space" variable (:default-value "。.?!") nil [5826 6184])
-            ("put" code nil nil [6185 6248])
-            ("sentence-end" variable nil nil [6250 6682])
-            ("put" code nil nil [6683 6741])
-            ("sentence-end-base" variable (:default-value "[.?!…‽][]\"'”’)}]*") nil [6743 6928])
-            ("put" code nil nil [6929 6983])
-            ("sentence-end" function nil nil [6985 8002])
-            ("page-delimiter" variable (:default-value "^") nil [8004 8134])
-            ("put" code nil nil [8135 8186])
-            ("paragraph-ignore-fill-prefix" variable nil nil [8188 8421])
-            ("put" code nil nil [8422 8488])
-            ("forward-paragraph" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [8490 13713])
-            ("backward-paragraph" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [13715 14279])
-            ("mark-paragraph" function
-               (:user-visible-flag t
-                :arguments ("arg" "allow-extend"))
-                nil [14281 15308])
-            ("kill-paragraph" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [15310 15573])
-            ("backward-kill-paragraph" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [15575 15843])
-            ("transpose-paragraphs" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [15845 16316])
-            ("start-of-paragraph-text" function nil nil [16318 16840])
-            ("end-of-paragraph-text" function nil nil [16842 17101])
-            ("forward-sentence" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [17103 18519])
-            ("repunctuate-sentences" function (:user-visible-flag t) nil [18521 18770])
-            ("backward-sentence" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [18773 19001])
-            ("kill-sentence" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [19003 19239])
-            ("backward-kill-sentence" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [19241 19495])
-            ("mark-end-of-sentence" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [19497 19874])
-            ("transpose-sentences" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [19876 20339]))          
-      :file "paragraphs.el"
-      :pointmax 20369
-      :fsize 20384
-      :lastmodtime '(23525 29608 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("fill" customgroup (:user-visible-flag t) nil [992 1103])
-            ("fill-individual-varying-indent" variable nil nil [1105 1516])
-            ("colon-double-space" variable nil nil [1518 1645])
-            ("put" code nil nil [1646 1702])
-            ("fill-separate-heterogeneous-words-with-space" variable nil nil [1704 2097])
-            ("fill-paragraph-function" variable nil nil [2099 2509])
-            ("fill-paragraph-handle-comment" variable (:default-value t) nil [2511 2626])
-            ("enable-kinsoku" variable (:default-value t) nil [2628 2941])
-            ("set-fill-prefix" function (:user-visible-flag t) nil [2943 3530])
-            ("adaptive-fill-mode" variable (:default-value t) nil [3532 3665])
-            ("adaptive-fill-regexp" variable (:default-value (purecopy "[ 	]*\\([-–!|#%;>*·•‣⁃◦]+[ 	]*\\)*")) nil [3667 4387])
-            ("adaptive-fill-first-line-regexp" variable (:default-value (purecopy "\\`[ 	]*\\'")) nil [4389 4932])
-            ("adaptive-fill-function" variable nil nil [4934 5163])
-            ("fill-indent-according-to-mode" variable nil nil [5165 5319])
-            ("current-fill-column" function nil nil [5321 6357])
-            ("canonically-space-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [6359 8610])
-            ("fill-common-string-prefix" function (:arguments ("s1" "s2")) nil [8612 8889])
-            ("fill-match-adaptive-prefix" function nil nil [8891 9277])
-            ("fill-context-prefix" function (:arguments ("from" "to" "first-line-regexp")) nil [9279 12596])
-            ("fill-single-word-nobreak-p" function nil nil [12598 13125])
-            ("fill-french-nobreak-p" function nil nil [13127 13824])
-            ("fill-single-char-nobreak-p" function nil nil [13826 14237])
-            ("fill-nobreak-predicate" variable nil nil [14239 14620])
-            ("fill-nobreak-invisible" variable nil nil [14622 14767])
-            ("fill-nobreak-p" function nil nil [14769 16167])
-            ("fill-find-break-point-function-table" variable (:default-value (make-char-table nil)) nil [16169 16301])
-            ("fill-nospace-between-words-table" variable (:default-value (make-char-table nil)) nil [16303 16431])
-            ("progn" code nil nil [16433 17116])
-            ("fill-find-break-point" function (:arguments ("limit")) nil [17118 17805])
-            ("fill-delete-prefix" function (:arguments ("from" "to" "prefix")) nil [17807 18728])
-            ("add-to-list" code nil nil [18998 19062])
-            ("fill-delete-newlines" function (:arguments ("from" "to" "justify" "nosqueeze" "squeeze-after")) nil [19064 21527])
-            ("fill-move-to-break-point" function (:arguments ("linebeg")) nil [21529 23894])
-            ("fill-text-properties-at" function (:arguments ("pos")) nil [23965 24211])
-            ("fill-newline" function nil nil [24213 25529])
-            ("fill-indent-to-left-margin" function nil nil [25531 25756])
-            ("fill-region-as-paragraph" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "justify" "nosqueeze" "squeeze-after"))
-                nil [25758 30929])
-            ("skip-line-prefix" function (:arguments ("prefix")) nil [30931 31258])
-            ("fill-minibuffer-function" function (:arguments ("arg")) nil [31260 31464])
-            ("fill-forward-paragraph-function" variable (:default-value (quote forward-paragraph)) nil [31466 31756])
-            ("fill-forward-paragraph" function (:arguments ("arg")) nil [31758 31842])
-            ("fill-paragraph" function
-               (:user-visible-flag t
-                :arguments ("justify" "region"))
-                nil [31844 36385])
-            ("declare-function" code nil nil [36387 36467])
-            ("declare-function" code nil nil [36468 36541])
-            ("fill-comment-paragraph" function (:arguments ("justify")) nil [36544 41971])
-            ("fill-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "justify" "nosqueeze" "to-eop"))
-                nil [41973 44149])
-            ("default-justification" variable (:default-value (quote left)) nil [44153 44584])
-            ("make-variable-buffer-local" code nil nil [44585 44636])
-            ("current-justification" function nil nil [44638 45187])
-            ("set-justification" function
-               (:user-visible-flag t
-                :arguments ("begin" "end" "style" "whole-par"))
-                nil [45189 46964])
-            ("set-justification-none" function
-               (:user-visible-flag t
-                :arguments ("b" "e"))
-                nil [46966 47274])
-            ("set-justification-left" function
-               (:user-visible-flag t
-                :arguments ("b" "e"))
-                nil [47276 47719])
-            ("set-justification-right" function
-               (:user-visible-flag t
-                :arguments ("b" "e"))
-                nil [47721 48092])
-            ("set-justification-full" function
-               (:user-visible-flag t
-                :arguments ("b" "e"))
-                nil [48094 48467])
-            ("set-justification-center" function
-               (:user-visible-flag t
-                :arguments ("b" "e"))
-                nil [48469 48765])
-            ("justify-current-line" function
-               (:user-visible-flag t
-                :arguments ("how" "eop" "nosqueeze"))
-                nil [49580 54390])
-            ("unjustify-current-line" function nil nil [54392 55426])
-            ("unjustify-region" function (:arguments ("begin" "end")) nil [55428 56023])
-            ("fill-nonuniform-paragraphs" function
-               (:user-visible-flag t
-                :arguments ("min" "max" "justifyp" "citation-regexp"))
-                nil [56027 57048])
-            ("fill-individual-paragraphs" function
-               (:user-visible-flag t
-                :arguments ("min" "max" "justify" "citation-regexp"))
-                nil [57050 61118])
-            ("fill-individual-paragraphs-prefix" function (:arguments ("citation-regexp")) nil [61120 62509])
-            ("fill-individual-paragraphs-citation" function (:arguments ("string" "citation-regexp")) nil [62511 62693]))          
-      :file "fill.el"
-      :pointmax 62717
-      :fsize 62729
-      :lastmodtime '(23525 29607 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("bibtex-style-mode-syntax-table" variable (:default-value (let ((st (make-syntax-table))) (modify-syntax-entry 37 "<" st) (modify-syntax-entry 10 ">" st) (modify-syntax-entry 123 "(}" st) (modify-syntax-entry 125 "){" st) (modify-syntax-entry 34 "\"" st) (modify-syntax-entry 46 "_" st) (modify-syntax-entry 39 "'" st) (modify-syntax-entry 35 "'" st) (modify-syntax-entry 42 "." st) (modify-syntax-entry 61 "." st) (modify-syntax-entry 36 "_" st) st)) nil [1018 1509])
-            ("bibtex-style-commands" variable
-               (:constant-flag t
-                :default-value (quote ("ENTRY" "EXECUTE" "FUNCTION" "INTEGERS" "ITERATE" "MACRO" "READ" "REVERSE" "SORT" "STRINGS")))
-                nil [1512 1645])
-            ("bibtex-style-functions" variable
-               (:constant-flag t
-                :default-value (quote ("<" ">" "=" "+" "-" "*" ":=" "add.period$" "call.type$" "change.case$" "chr.to.int$" "cite$" "duplicate$" "empty$" "format.name$" "if$" "int.to.chr$" "int.to.str$" "missing$" "newline$" "num.names$" "pop$" "preamble$" "purify$" "quote$" "skip$" "stack$" "substring$" "swap$" "text.length$" "text.prefix$" "top$" "type$" "warning$" "while$" "width$" "write$")))
-                nil [1647 2141])
-            ("bibtex-style-font-lock-keywords" variable (:default-value (\` (((\, (regexp-opt bibtex-style-commands (quote words))) . font-lock-keyword-face) ("\\w+\\$" . font-lock-keyword-face) ("\\<\\(FUNCTION\\|MACRO\\)\\s-+{\\([^}
-]+\\)}" (2 font-lock-function-name-face))))) nil [2143 2391])
-            ("define-derived-mode" code nil nil [2408 2959])
-            ("bibtex-style-indent-line" function (:user-visible-flag t) nil [2961 3409])
-            ("bibtex-style-indent-basic" variable (:default-value 2) nil [3411 3563])
-            ("bibtex-style-calculate-indentation" function (:arguments ("virt")) nil [3565 5360])
-            ("bibtex-style" package nil nil [5363 5386]))          
-      :file "bibtex-style.el"
-      :pointmax 5417
-      :fsize 5416
-      :lastmodtime '(23525 29606 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("button" include nil nil [1444 1461])
-            ("bibtex" customgroup (:user-visible-flag t) nil [1483 1555])
-            ("bibtex-autokey" customgroup (:user-visible-flag t) nil [1557 1708])
-            ("bibtex-mode-hook" variable nil nil [1710 1828])
-            ("bibtex-field-delimiters" variable (:default-value (quote braces)) nil [1830 2041])
-            ("bibtex-entry-delimiters" variable (:default-value (quote braces)) nil [2043 2250])
-            ("bibtex-include-OPTcrossref" variable (:default-value (quote ("InProceedings" "InCollection"))) nil [2252 2424])
-            ("bibtex-include-OPTkey" variable (:default-value t) nil [2426 2848])
-            ("put" code nil nil [2849 2901])
-            ("bibtex-user-optional-fields" variable (:default-value (quote (("annote" "Personal annotation (ignored)")))) nil [2903 3392])
-            ("put" code nil nil [3393 3451])
-            ("bibtex-entry-format" variable (:default-value (quote (opts-or-alts required-fields numerical-fields))) nil [3453 6091])
-            ("put" code nil nil [6092 6646])
-            ("bibtex-field-braces-alist" variable nil nil [6648 7121])
-            ("bibtex-field-strings-alist" variable nil nil [7123 7676])
-            ("bibtex-clean-entry-hook" variable nil nil [7678 7908])
-            ("bibtex-maintain-sorted-entries" variable nil nil [7910 8733])
-            ("put" code nil nil [8734 8855])
-            ("bibtex-sort-entry-class" variable (:default-value (quote (("String") (catch-all) ("Book" "Proceedings")))) nil [8857 9436])
-            ("put" code nil nil [9437 9882])
-            ("bibtex-sort-ignore-string-entries" variable (:default-value t) nil [9884 10170])
-            ("bibtex-field-kill-ring-max" variable (:default-value 20) nil [10172 10325])
-            ("bibtex-entry-kill-ring-max" variable (:default-value 20) nil [10327 10480])
-            ("bibtex-parse-keys-timeout" variable (:default-value 60) nil [10482 10696])
-            ("bibtex-parse-keys-fast" variable (:default-value t) nil [10698 10894])
-            ("define-widget" code nil nil [10896 12737])
-            ("define-obsolete-variable-alias" code nil nil [12739 12833])
-            ("bibtex-BibTeX-entry-alist" variable (:default-value (quote (("Article" "Article in Journal" (("author") ("title" "Title of the article (BibTeX converts it to lowercase)")) (("journal") ("year")) (("volume" "Volume of the journal") ("number" "Number of the journal (only allowed if entry contains volume)") ("pages" "Pages in the journal") ("month") ("note"))) ("InProceedings" "Article in Conference Proceedings" (("author") ("title" "Title of the article in proceedings (BibTeX converts it to lowercase)")) (("booktitle" "Name of the conference proceedings") ("year")) (("editor") ("volume" "Volume of the conference proceedings in the series") ("number" "Number of the conference proceedings in a small series (overwritten by volume)") ("series" "Series in which the conference proceedings appeared") ("pages" "Pages in the conference proceedings") ("month") ("address") ("organization" "Sponsoring organization of the conference") ("publisher" "Publishing company, its location") ("note"))) ("Conference" "Article in Conference Proceedings" (("author") ("title" "Title of the article in proceedings (BibTeX converts it to lowercase)")) (("booktitle" "Name of the conference proceedings") ("year")) (("editor") ("volume" "Volume of the conference proceedings in the series") ("number" "Number of the conference proceedings in a small series (overwritten by volume)") ("series" "Series in which the conference proceedings appeared") ("pages" "Pages in the conference proceedings") ("month") ("address") ("organization" "Sponsoring organization of the conference") ("publisher" "Publishing company, its location") ("note"))) ("InCollection" "Article in a Collection" (("author") ("title" "Title of the article in book (BibTeX converts it to lowercase)") ("booktitle" "Name of the book")) (("publisher") ("year")) (("editor") ("volume" "Volume of the book in the series") ("number" "Number of the book in a small series (overwritten by volume)") ("series" "Series in which the book appeared") ("type" "Word to use instead of \"chapter\"") ("chapter" "Chapter in the book") ("pages" "Pages in the book") ("edition" "Edition of the book as a capitalized English word") ("month") ("address") ("note"))) ("InBook" "Chapter or Pages in a Book" (("author" nil nil 0) ("editor" nil nil 0) ("title" "Title of the book") ("chapter" "Chapter in the book")) (("publisher") ("year")) (("volume" "Volume of the book in the series") ("number" "Number of the book in a small series (overwritten by volume)") ("series" "Series in which the book appeared") ("type" "Word to use instead of \"chapter\"") ("address") ("edition" "Edition of the book as a capitalized English word") ("month") ("pages" "Pages in the book") ("note"))) ("Proceedings" "Conference Proceedings" (("title" "Title of the conference proceedings") ("year")) nil (("booktitle" "Title of the proceedings for cross references") ("editor") ("volume" "Volume of the conference proceedings in the series") ("number" "Number of the conference proceedings in a small series (overwritten by volume)") ("series" "Series in which the conference proceedings appeared") ("address") ("month") ("organization" "Sponsoring organization of the conference") ("publisher" "Publishing company, its location") ("note"))) ("Book" "Book" (("author" nil nil 0) ("editor" nil nil 0) ("title" "Title of the book")) (("publisher") ("year")) (("volume" "Volume of the book in the series") ("number" "Number of the book in a small series (overwritten by volume)") ("series" "Series in which the book appeared") ("address") ("edition" "Edition of the book as a capitalized English word") ("month") ("note"))) ("Booklet" "Booklet (Bound, but no Publisher)" (("title" "Title of the booklet (BibTeX converts it to lowercase)")) nil (("author") ("howpublished" "The way in which the booklet was published") ("address") ("month") ("year") ("note"))) ("PhdThesis" "PhD. Thesis" (("author") ("title" "Title of the PhD. thesis") ("school" "School where the PhD. thesis was written") ("year")) nil (("type" "Type of the PhD. thesis") ("address" "Address of the school (if not part of field \"school\") or country") ("month") ("note"))) ("MastersThesis" "Master's Thesis" (("author") ("title" "Title of the master's thesis (BibTeX converts it to lowercase)") ("school" "School where the master's thesis was written") ("year")) nil (("type" "Type of the master's thesis (if other than \"Master's thesis\")") ("address" "Address of the school (if not part of field \"school\") or country") ("month") ("note"))) ("TechReport" "Technical Report" (("author") ("title" "Title of the technical report (BibTeX converts it to lowercase)") ("institution" "Sponsoring institution of the report") ("year")) nil (("type" "Type of the report (if other than \"technical report\")") ("number" "Number of the technical report") ("address") ("month") ("note"))) ("Manual" "Technical Manual" (("title" "Title of the manual")) nil (("author") ("organization" "Publishing organization of the manual") ("address") ("edition" "Edition of the manual as a capitalized English word") ("month") ("year") ("note"))) ("Unpublished" "Unpublished" (("author") ("title" "Title of the unpublished work (BibTeX converts it to lowercase)") ("note")) nil (("month") ("year"))) ("Misc" "Miscellaneous" nil nil (("author") ("title" "Title of the work (BibTeX converts it to lowercase)") ("howpublished" "The way in which the work was published") ("month") ("year") ("note")))))) nil [12834 20114])
-            ("put" code nil nil [20115 20171])
-            ("bibtex-biblatex-entry-alist" variable (:default-value (quote (("Article" "Article in Journal" (("author") ("title") ("journaltitle") ("year" nil nil 0) ("date" nil nil 0)) nil (("translator") ("annotator") ("commentator") ("subtitle") ("titleaddon") ("editor") ("editora") ("editorb") ("editorc") ("journalsubtitle") ("issuetitle") ("issuesubtitle") ("language") ("origlanguage") ("series") ("volume") ("number") ("eid") ("issue") ("month") ("pages") ("version") ("note") ("issn") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Book" "Single-Volume Book" (("author") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("editor") ("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("MVBook" "Multi-Volume Book" (("author") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("editor") ("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("language") ("origlanguage") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("InBook" "Chapter or Pages in a Book" (("title") ("year" nil nil 0) ("date" nil nil 0)) (("author") ("booktitle")) (("bookauthor") ("editor") ("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("booksubtitle") ("booktitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("BookInBook" "Book in Collection" (("title") ("year" nil nil 0) ("date" nil nil 0)) (("author") ("booktitle")) (("bookauthor") ("editor") ("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("booksubtitle") ("booktitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("SuppBook" "Supplemental Material in a Book" (("title") ("year" nil nil 0) ("date" nil nil 0)) (("author") ("booktitle")) (("bookauthor") ("editor") ("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("booksubtitle") ("booktitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Booklet" "Booklet (Bound, but no Publisher)" (("author" nil nil 0) ("editor" nil nil 0) ("title") ("year" nil nil 1) ("date" nil nil 1)) nil (("subtitle") ("titleaddon") ("language") ("howpublished") ("type") ("note") ("location") ("chapter") ("pages") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Collection" "Single-Volume Collection" (("editor") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("MVCollection" "Multi-Volume Collection" (("editor") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("language") ("origlanguage") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("InCollection" "Article in a Collection" (("author") ("title") ("year" nil nil 0) ("date" nil nil 0)) (("booktitle")) (("editor") ("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("booksubtitle") ("booktitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("SuppCollection" "Supplemental Material in a Collection" (("author") ("editor") ("title") ("year" nil nil 0) ("date" nil nil 0)) (("booktitle")) (("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("booksubtitle") ("booktitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Manual" "Technical Manual" (("author" nil nil 0) ("editor" nil nil 0) ("title") ("year" nil nil 1) ("date" nil nil 1)) nil (("subtitle") ("titleaddon") ("language") ("edition") ("type") ("series") ("number") ("version") ("note") ("organization") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Misc" "Miscellaneous" (("author" nil nil 0) ("editor" nil nil 0) ("title") ("year" nil nil 1) ("date" nil nil 1)) nil (("subtitle") ("titleaddon") ("language") ("howpublished") ("type") ("version") ("note") ("organization") ("location") ("date") ("month") ("year") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Online" "Online Resource" (("author" nil nil 0) ("editor" nil nil 0) ("title") ("year" nil nil 1) ("date" nil nil 1) ("url")) nil (("subtitle") ("titleaddon") ("language") ("version") ("note") ("organization") ("date") ("month") ("year") ("addendum") ("pubstate") ("urldate"))) ("Patent" "Patent" (("author") ("title") ("number") ("year" nil nil 0) ("date" nil nil 0)) nil (("holder") ("subtitle") ("titleaddon") ("type") ("version") ("location") ("note") ("date") ("month") ("year") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Periodical" "Complete Issue of a Periodical" (("editor") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("editora") ("editorb") ("editorc") ("subtitle") ("issuetitle") ("issuesubtitle") ("language") ("series") ("volume") ("number") ("issue") ("date") ("month") ("year") ("note") ("issn") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("SuppPeriodical" "Supplemental Material in a Periodical" (("author") ("title") ("journaltitle") ("year" nil nil 0) ("date" nil nil 0)) nil (("translator") ("annotator") ("commentator") ("subtitle") ("titleaddon") ("editor") ("editora") ("editorb") ("editorc") ("journalsubtitle") ("issuetitle") ("issuesubtitle") ("language") ("origlanguage") ("series") ("volume") ("number") ("eid") ("issue") ("month") ("pages") ("version") ("note") ("issn") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Proceedings" "Single-Volume Conference Proceedings" (("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("eventtitle") ("eventdate") ("venue") ("language") ("editor") ("volume") ("part") ("volumes") ("series") ("number") ("note") ("organization") ("publisher") ("location") ("month") ("isbn") ("chapter") ("pages") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("MVProceedings" "Multi-Volume Conference Proceedings" (("editor") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("subtitle") ("titleaddon") ("eventtitle") ("eventdate") ("venue") ("language") ("volumes") ("series") ("number") ("note") ("organization") ("publisher") ("location") ("month") ("isbn") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("InProceedings" "Article in Conference Proceedings" (("author") ("title") ("year" nil nil 0) ("date" nil nil 0)) (("booktitle")) (("editor") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("booksubtitle") ("booktitleaddon") ("eventtitle") ("eventdate") ("venue") ("language") ("volume") ("part") ("volumes") ("series") ("number") ("note") ("organization") ("publisher") ("location") ("month") ("isbn") ("chapter") ("pages") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Reference" "Single-Volume Work of Reference" (("editor") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("MVReference" "Multi-Volume Work of Reference" (("editor") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("language") ("origlanguage") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("InReference" "Article in a Work of Reference" (("author") ("editor") ("title") ("year" nil nil 0) ("date" nil nil 0)) (("booktitle")) (("editora") ("editorb") ("editorc") ("translator") ("annotator") ("commentator") ("introduction") ("foreword") ("afterword") ("subtitle") ("titleaddon") ("maintitle") ("mainsubtitle") ("maintitleaddon") ("booksubtitle") ("booktitleaddon") ("language") ("origlanguage") ("volume") ("part") ("edition") ("volumes") ("series") ("number") ("note") ("publisher") ("location") ("isbn") ("chapter") ("pages") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Report" "Technical or Research Report" (("author") ("title") ("type") ("institution") ("year" nil nil 0) ("date" nil nil 0)) nil (("subtitle") ("titleaddon") ("language") ("number") ("version") ("note") ("location") ("month") ("isrn") ("chapter") ("pages") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Thesis" "PhD. or Master's Thesis" (("author") ("title") ("type") ("institution") ("year" nil nil 0) ("date" nil nil 0)) nil (("subtitle") ("titleaddon") ("language") ("note") ("location") ("month") ("isbn") ("chapter") ("pages") ("pagetotal") ("addendum") ("pubstate") ("doi") ("eprint") ("eprintclass") ("eprinttype") ("url") ("urldate"))) ("Unpublished" "Unpublished" (("author") ("title") ("year" nil nil 0) ("date" nil nil 0)) nil (("subtitle") ("titleaddon") ("language") ("howpublished") ("note") ("location") ("isbn") ("date") ("month") ("year") ("addendum") ("pubstate") ("url") ("urldate")))))) nil [20173 34759])
-            ("put" code nil nil [34760 34818])
-            ("define-widget" code nil nil [34820 35017])
-            ("bibtex-BibTeX-field-alist" variable (:default-value (quote (("author" "Author1 [and Author2 ...] [and others]") ("editor" "Editor1 [and Editor2 ...] [and others]") ("journal" "Name of the journal (use string, remove braces)") ("year" "Year of publication") ("month" "Month of the publication as a string (remove braces)") ("note" "Remarks to be put at the end of the \\bibitem") ("publisher" "Publishing company") ("address" "Address of the publisher")))) nil [35019 35713])
-            ("bibtex-biblatex-field-alist" variable (:default-value (quote (("abstract" "Abstract of the work") ("addendum" "Miscellaneous bibliographic data") ("afterword" "Author(s) of an afterword to the work") ("annotation" "Annotation") ("annotator" "Author(s) of annotations to the work") ("author" "Author(s) of the title") ("bookauthor" "Author(s) of the booktitle.") ("bookpagination" "Pagination scheme of the enclosing work") ("booksubtitle" "Subtitle related to the booktitle") ("booktitle" "Title of the book") ("booktitleaddon" "Annex to the booktitle") ("chapter" "Chapter, section, or any other unit of a work") ("commentator" "Author(s) of a commentary to the work") ("date" "Publication date") ("doi" "Digital Object Identifier") ("edition" "Edition of a printed publication") ("editor" "Editor(s) of the title, booktitle, or maintitle") ("editora" "Secondary editor") ("editorb" "Secondary editor") ("editorc" "Secondary editor") ("editortype" "Type of editorial role performed by the editor") ("editoratype" "Type of editorial role performed by editora") ("editorbtype" "Type of editorial role performed by editorb") ("editorctype" "Type of editorial role performed by editorc") ("eid" "Electronic identifier of an article") ("eprint" "Electronic identifier of an online publication") ("eprintclass" "Additional information related to the eprinttype") ("eprinttype" "Type of eprint identifier") ("eventdate" "Date of a conference or some other event") ("eventtitle" "Title of a conference or some other event") ("file" "Local link to an electronic version of the work") ("foreword" "Author(s) of a foreword to the work") ("holder" "Holder(s) of a patent") ("howpublished" "Publication notice for unusual publications") ("indextitle" "Title to use for indexing instead of the regular title") ("institution" "Name of a university or some other institution") ("introduction" "Author(s) of an introduction to the work") ("isan" "International Standard Audiovisual Number of an audiovisual work") ("isbn" "International Standard Book Number of a book.") ("ismn" "International Standard Music Number for printed music") ("isrn" "International Standard Technical Report Number") ("issn" "International Standard Serial Number of a periodical.") ("issue" "Issue of a journal") ("issuesubtitle" "Subtitle of a specific issue of a journal or other periodical.") ("issuetitle" "Title of a specific issue of a journal or other periodical.") ("iswc" "International Standard Work Code of a musical work") ("journalsubtitle" "Subtitle of a journal, a newspaper, or some other periodical.") ("journaltitle" "Name of a journal, a newspaper, or some other periodical.") ("label" "Substitute for the regular label to be used by the citation style") ("language" "Language(s) of the work") ("library" "Library name and a call number") ("location" "Place(s) of publication") ("mainsubtitle" "Subtitle related to the maintitle") ("maintitle" "Main title of a multi-volume book, such as Collected Works") ("maintitleaddon" "Annex to the maintitle") ("month" "Publication month") ("nameaddon" "Addon to be printed immediately after the author name") ("note" "Miscellaneous bibliographic data") ("number" "Number of a journal or the volume/number of a book in a series") ("organization" "Organization(s) that published a work") ("origdate" "Publication date of the original edition") ("origlanguage" "Original publication language of a translated edition") ("origlocation" "Location of the original edition") ("origpublisher" "Publisher of the original edition") ("origtitle" "Title of the original work") ("pages" "Page number(s) or page range(s)") ("pagetotal" "Total number of pages of the work.") ("pagination" "Pagination of the work") ("part" "Number of a partial volume") ("publisher" "Name(s) of the publisher(s)") ("pubstate" "Publication state of the work, e. g.,'in press'") ("reprinttitle" "Title of a reprint of the work") ("series" "Name of a publication series") ("shortauthor" "Author(s) of the work, given in an abbreviated form") ("shorteditor" "Editor(s) of the work, given in an abbreviated form") ("shortjournal" "Short version or an acronym of the journal title") ("shortseries" "Short version or an acronym of the series field") ("shorttitle" "Title in an abridged form") ("subtitle" "Subtitle of the work") ("title" "Title of the work") ("titleaddon" "Annex to the title") ("translator" "Translator(s) of the work") ("type" "Type of a manual, patent, report, or thesis") ("url" " URL of an online publication.") ("urldate" "Access date of the address specified in the url field") ("venue" "Location of a conference, a symposium, or some other event") ("version" "Revision number of a piece of software, a manual, etc.") ("volume" "Volume of a multi-volume book or a periodical") ("volumes" "Total number of volumes of a multi-volume work") ("year" "Year of publication")))) nil [35715 41104])
-            ("bibtex-dialect-list" variable (:default-value (quote (BibTeX biblatex))) nil [41106 41484])
-            ("bibtex-dialect" variable (:default-value (quote BibTeX)) nil [41486 42041])
-            ("put" code nil nil [42042 42093])
-            ("bibtex-no-opt-remove-re" variable (:default-value "\\`option") nil [42095 42324])
-            ("bibtex-comment-start" variable (:default-value "@Comment") nil [42326 42440])
-            ("bibtex-add-entry-hook" variable nil nil [42442 42577])
-            ("bibtex-predefined-month-strings" variable (:default-value (quote (("jan" . "January") ("feb" . "February") ("mar" . "March") ("apr" . "April") ("may" . "May") ("jun" . "June") ("jul" . "July") ("aug" . "August") ("sep" . "September") ("oct" . "October") ("nov" . "November") ("dec" . "December")))) nil [42579 43165])
-            ("bibtex-predefined-strings" variable (:default-value (append bibtex-predefined-month-strings (quote (("acmcs" . "ACM Computing Surveys") ("acta" . "Acta Informatica") ("cacm" . "Communications of the ACM") ("ibmjrd" . "IBM Journal of Research and Development") ("ibmsj" . "IBM Systems Journal") ("ieeese" . "IEEE Transactions on Software Engineering") ("ieeetc" . "IEEE Transactions on Computers") ("ieeetcad" . "IEEE Transactions on Computer-Aided Design of Integrated Circuits") ("ipl" . "Information Processing Letters") ("jacm" . "Journal of the ACM") ("jcss" . "Journal of Computer and System Sciences") ("scp" . "Science of Computer Programming") ("sicomp" . "SIAM Journal on Computing") ("tcs" . "Theoretical Computer Science") ("tocs" . "ACM Transactions on Computer Systems") ("tods" . "ACM Transactions on Database Systems") ("tog" . "ACM Transactions on Graphics") ("toms" . "ACM Transactions on Mathematical Software") ("toois" . "ACM Transactions on Office Information Systems") ("toplas" . "ACM Transactions on Programming Languages and Systems"))))) nil [43167 44625])
-            ("bibtex-string-files" variable nil nil [44627 44881])
-            ("bibtex-string-file-path" variable (:default-value (getenv "BIBINPUTS")) nil [44883 45043])
-            ("bibtex-files" variable nil nil [45045 45590])
-            ("bibtex-file-path" variable (:default-value (getenv "BIBINPUTS")) nil [45592 45738])
-            ("bibtex-search-entry-globally" variable nil nil [45740 45966])
-            ("bibtex-help-message" variable (:default-value t) nil [45968 46112])
-            ("bibtex-autokey-prefix-string" variable nil nil [46114 46303])
-            ("bibtex-autokey-names" variable (:default-value 1) nil [46305 46668])
-            ("bibtex-autokey-names-stretch" variable nil nil [46670 46922])
-            ("bibtex-autokey-additional-names" variable nil nil [46924 47128])
-            ("bibtex-autokey-expand-strings" variable nil nil [47130 47338])
-            ("bibtex-autokey-transcriptions" variable (:default-value (quote (("\\\\aa" . "a") ("\\\\AA" . "A") ("\\\"a\\|\\\\\\\"a\\|\\\\ae" . "ae") ("\\\"A\\|\\\\\\\"A\\|\\\\AE" . "Ae") ("\\\\i" . "i") ("\\\\j" . "j") ("\\\\l" . "l") ("\\\\L" . "L") ("\\\"o\\|\\\\\\\"o\\|\\\\o\\|\\\\oe" . "oe") ("\\\"O\\|\\\\\\\"O\\|\\\\O\\|\\\\OE" . "Oe") ("\\\"s\\|\\\\\\\"s\\|\\\\3" . "ss") ("\\\"u\\|\\\\\\\"u" . "ue") ("\\\"U\\|\\\\\\\"U" . "Ue") ("\\\\`\\|\\\\'\\|\\\\\\^\\|\\\\~\\|\\\\=\\|\\\\\\.\\|\\\\u\\|\\\\v\\|\\\\H\\|\\\\t\\|\\\\c\\|\\\\d\\|\\\\b" . "") ("[`'\"{}#]" . "") ("\\\\-" . "") ("\\\\?[ 	
-]+\\|~" . " ")))) nil [47340 48845])
-            ("bibtex-autokey-name-change-strings" variable (:default-value bibtex-autokey-transcriptions) nil [48847 49298])
-            ("bibtex-autokey-name-case-convert-function" variable (:default-value (quote downcase)) nil [49300 49754])
-            ("put" code nil nil [49755 49890])
-            ("defvaralias" code nil nil [49891 49983])
-            ("bibtex-autokey-name-length" variable (:default-value (quote infty)) nil [49985 50292])
-            ("bibtex-autokey-name-separator" variable nil nil [50294 50478])
-            ("bibtex-autokey-year-length" variable (:default-value 2) nil [50480 50681])
-            ("bibtex-autokey-use-crossref" variable (:default-value t) nil [50683 51011])
-            ("bibtex-autokey-titlewords" variable (:default-value 5) nil [51013 51429])
-            ("bibtex-autokey-title-terminators" variable (:default-value "[.!?:;]\\|--") nil [51431 51674])
-            ("bibtex-autokey-titlewords-stretch" variable (:default-value 2) nil [51676 51949])
-            ("bibtex-autokey-titleword-ignore" variable (:default-value (quote ("A" "An" "On" "The" "Eine?" "Der" "Die" "Das" "[^[:upper:]].*" ".*[^[:upper:][:lower:]0-9].*"))) nil [51951 52425])
-            ("bibtex-autokey-titleword-case-convert-function" variable (:default-value (quote downcase)) nil [52427 52891])
-            ("defvaralias" code nil nil [52892 52994])
-            ("bibtex-autokey-titleword-abbrevs" variable nil nil [52996 53394])
-            ("bibtex-autokey-titleword-change-strings" variable (:default-value bibtex-autokey-transcriptions) nil [53396 53858])
-            ("bibtex-autokey-titleword-length" variable (:default-value 5) nil [53860 54174])
-            ("bibtex-autokey-titleword-separator" variable (:default-value "_") nil [54176 54356])
-            ("bibtex-autokey-name-year-separator" variable nil nil [54358 54552])
-            ("bibtex-autokey-year-title-separator" variable (:default-value ":_") nil [54554 54752])
-            ("bibtex-autokey-edit-before-use" variable (:default-value t) nil [54754 54917])
-            ("bibtex-autokey-before-presentation-function" variable nil nil [54919 55224])
-            ("bibtex-entry-offset" variable nil nil [55226 55391])
-            ("bibtex-field-indentation" variable (:default-value 2) nil [55393 55521])
-            ("bibtex-text-indentation" variable (:default-value (+ bibtex-field-indentation (length "organization = "))) nil [55523 55774])
-            ("bibtex-contline-indentation" variable (:default-value (+ bibtex-text-indentation 1)) nil [55776 55942])
-            ("bibtex-align-at-equal-sign" variable nil nil [55944 56180])
-            ("bibtex-comma-after-last-field" variable nil nil [56182 56336])
-            ("bibtex-autoadd-commas" variable (:default-value t) nil [56338 56480])
-            ("bibtex-autofill-types" variable (:default-value (quote ("Proceedings"))) nil [56482 56646])
-            ("bibtex-summary-function" variable (:default-value (quote bibtex-summary)) nil [56648 57039])
-            ("bibtex-generate-url-list" variable (:default-value (quote ((("url" . ".*:.*")) (("doi" . "10\\.[0-9]+/.+") "http://dx.doi.org/%s" ("doi" ".*" 0))))) nil [57041 59704])
-            ("put" code nil nil [59705 59760])
-            ("bibtex-cite-matcher-alist" variable (:default-value (quote (("\\\\cite[ 	
-]*{\\([^}]+\\)}" . 1)))) nil [59762 60286])
-            ("bibtex-expand-strings" variable nil nil [60288 60437])
-            ("bibtex-search-buffer" variable (:default-value "*BibTeX Search*") nil [60439 60578])
-            ("bibtex-mode-syntax-table" variable (:default-value (let ((st (make-syntax-table))) (modify-syntax-entry 34 "\"" st) (modify-syntax-entry 36 "$$  " st) (modify-syntax-entry 37 "<   " st) (modify-syntax-entry 39 "w   " st) (modify-syntax-entry 64 "w   " st) (modify-syntax-entry 92 "\\" st) (modify-syntax-entry 12 ">   " st) (modify-syntax-entry 10 ">   " st) (modify-syntax-entry 61 "." st) (modify-syntax-entry 126 " " st) st)) nil [60794 61409])
-            ("bibtex-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) (define-key km "	" (quote bibtex-find-text)) (define-key km "
-" (quote bibtex-next-field)) (define-key km "\211" (quote completion-at-point)) (define-key km "\"" (quote bibtex-remove-delimiters)) (define-key km "{" (quote bibtex-remove-delimiters)) (define-key km "}" (quote bibtex-remove-delimiters)) (define-key km "" (quote bibtex-clean-entry)) (define-key km "" (quote bibtex-fill-entry)) (define-key km "" (quote bibtex-search-entry)) (define-key km "" (quote bibtex-search-crossref)) (define-key km "" (quote bibtex-copy-summary-as-kill)) (define-key km "?" (quote bibtex-print-help-message)) (define-key km "" (quote bibtex-pop-previous)) (define-key km "" (quote bibtex-pop-next)) (define-key km "" (quote bibtex-kill-field)) (define-key km "\353" (quote bibtex-copy-field-as-kill)) (define-key km "" (quote bibtex-kill-entry)) (define-key km "\367" (quote bibtex-copy-entry-as-kill)) (define-key km "" (quote bibtex-yank)) (define-key km "\371" (quote bibtex-yank-pop)) (define-key km "" (quote bibtex-empty-field)) (define-key km "" (quote bibtex-make-field)) (define-key km "" (quote bibtex-entry-update)) (define-key km "$" (quote bibtex-ispell-abstract)) (define-key km "\201" (quote bibtex-beginning-of-entry)) (define-key km "\205" (quote bibtex-end-of-entry)) (define-key km "\214" (quote bibtex-reposition-window)) (define-key km "\210" (quote bibtex-mark-entry)) (define-key km "" (quote bibtex-entry)) (define-key km "n" (quote bibtex-narrow-to-entry)) (define-key km "w" (quote widen)) (define-key km "" (quote bibtex-url)) (define-key km "" (quote bibtex-search-entries)) (define-key km "" (quote bibtex-remove-OPT-or-ALT)) (define-key km "	" (quote bibtex-InProceedings)) (define-key km "i" (quote bibtex-InCollection)) (define-key km "I" (quote bibtex-InBook)) (define-key km "" (quote bibtex-Article)) (define-key km "" (quote bibtex-InBook)) (define-key km "b" (quote bibtex-Book)) (define-key km "B" (quote bibtex-Booklet)) (define-key km "" (quote bibtex-InCollection)) (define-key km "
" (quote bibtex-Manual)) (define-key km "m" (quote bibtex-MastersThesis)) (define-key km "M" (quote bibtex-Misc)) (define-key km "" (quote bibtex-InProceedings)) (define-key km "p" (quote bibtex-Proceedings)) (define-key km "P" (quote bibtex-PhdThesis)) (define-key km "\360" (quote bibtex-Preamble)) (define-key km "" (quote bibtex-String)) (define-key km "" (quote bibtex-TechReport)) (define-key km "" (quote bibtex-Unpublished)) km)) nil [61411 64226])
-            ("easy-menu-define" code nil nil [64228 66851])
-            ("bibtex-entry-alist" variable nil nil [66878 66989])
-            ("bibtex-field-alist" variable nil nil [66991 67102])
-            ("bibtex-field-braces-opt" variable nil nil [67104 67274])
-            ("bibtex-field-strings-opt" variable nil nil [67276 67493])
-            ("bibtex-pop-previous-search-point" variable nil nil [67495 67619])
-            ("bibtex-pop-next-search-point" variable nil nil [67621 67737])
-            ("bibtex-field-kill-ring" variable nil nil [67739 67874])
-            ("bibtex-field-kill-ring-yank-pointer" variable nil nil [67876 68000])
-            ("bibtex-entry-kill-ring" variable nil nil [68002 68138])
-            ("bibtex-entry-kill-ring-yank-pointer" variable nil nil [68140 68264])
-            ("bibtex-last-kill-command" variable nil nil [68266 68366])
-            ("bibtex-strings" variable (:default-value (lazy-completion-table bibtex-strings (lambda nil (bibtex-parse-strings (bibtex-string-files-init))))) nil [68368 68663])
-            ("make-variable-buffer-local" code nil nil [68664 68708])
-            ("put" code nil nil [68709 68754])
-            ("bibtex-reference-keys" variable (:default-value (lazy-completion-table bibtex-reference-keys (lambda nil (bibtex-parse-keys nil t)))) nil [68756 69019])
-            ("make-variable-buffer-local" code nil nil [69020 69071])
-            ("put" code nil nil [69072 69124])
-            ("bibtex-buffer-last-parsed-tick" variable nil nil [69126 69243])
-            ("bibtex-parse-idle-timer" variable nil nil [69245 69323])
-            ("bibtex-progress-lastperc" variable nil nil [69325 69417])
-            ("bibtex-progress-lastmes" variable nil nil [69419 69491])
-            ("bibtex-progress-interval" variable nil nil [69493 69566])
-            ("bibtex-key-history" variable nil nil [69568 69634])
-            ("bibtex-entry-type-history" variable nil nil [69636 69716])
-            ("bibtex-field-history" variable nil nil [69718 69793])
-            ("bibtex-reformat-previous-options" variable nil nil [69795 69873])
-            ("bibtex-reformat-previous-reference-keys" variable nil nil [69875 69974])
-            ("bibtex-field-name" variable
-               (:constant-flag t
-                :default-value "[^\"#%'(),={} 	
-0-9][^\"#%'(),={} 	
-]*")
-                nil [69976 70097])
-            ("bibtex-name-part" variable
-               (:constant-flag t
-                :default-value (concat ",[ 	
-]*\\(" bibtex-field-name "\\)"))
-                nil [70099 70229])
-            ("bibtex-reference-key" variable
-               (:constant-flag t
-                :default-value "[][[:alnum:].:;?!`'/*@+|()<>&_^$-]+")
-                nil [70231 70362])
-            ("bibtex-field-const" variable
-               (:constant-flag t
-                :default-value "[][[:alnum:].:;?!`'/*@+=|<>&_^$-]+")
-                nil [70364 70475])
-            ("bibtex-entry-type" variable nil nil [70477 70592])
-            ("bibtex-entry-head" variable nil nil [70594 70732])
-            ("bibtex-entry-maybe-empty-head" variable nil nil [70734 70891])
-            ("bibtex-any-entry-maybe-empty-head" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*\\(@[ 	]*" bibtex-field-name "\\)[ 	]*[({][ 	
-]*\\(" bibtex-reference-key "\\)?"))
-                nil [70893 71131])
-            ("bibtex-any-valid-entry-type" variable nil nil [71133 71286])
-            ("bibtex-type-in-head" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [71288 71393])
-            ("bibtex-key-in-head" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [71395 71498])
-            ("bibtex-string-type" variable
-               (:constant-flag t
-                :default-value "^[ 	]*\\(@[ 	]*String\\)[ 	]*[({][ 	
-]*")
-                nil [71500 71632])
-            ("bibtex-string-maybe-empty-head" variable
-               (:constant-flag t
-                :default-value (concat bibtex-string-type "\\(" bibtex-reference-key "\\)?"))
-                nil [71634 71801])
-            ("bibtex-preamble-prefix" variable
-               (:constant-flag t
-                :default-value "[ 	]*\\(@[ 	]*Preamble\\)[ 	]*[({][ 	
-]*")
-                nil [71803 71950])
-            ("bibtex-font-lock-syntactic-keywords" variable
-               (:constant-flag t
-                :default-value (\` (((\, (concat "^[ 	]*\\(" (substring bibtex-comment-start 0 1) "\\)" (substring bibtex-comment-start 1) "\\>")) 1 (quote (11))))))
-                nil [71952 72139])
-            ("bibtex-font-lock-keywords" variable (:default-value (\` (((\, bibtex-any-entry-maybe-empty-head) ((\, bibtex-type-in-head) font-lock-function-name-face) ((\, bibtex-key-in-head) font-lock-constant-face nil t)) ((\, (concat "^[ 	]*\\(OPT" bibtex-field-name "\\)[ 	]*=")) 1 font-lock-comment-face) ((\, (concat "^[ 	]*\\(" bibtex-field-name "\\)[ 	]*=")) 1 font-lock-variable-name-face) (bibtex-font-lock-url) (bibtex-font-lock-crossref) (\,@ (mapcar (lambda (matcher) (\` ((lambda (bound) (bibtex-font-lock-cite (quote (\, matcher)) bound))))) bibtex-cite-matcher-alist))))) nil [72141 72904])
-            ("bibtex-font-lock-url-regexp" variable (:default-value (concat "^[ 	]*" (regexp-opt (delete-dups (mapcar (quote caar) bibtex-generate-url-list)) t) "[ 	]*=[ 	]*")) nil [72906 73210])
-            ("bibtex-string-empty-key" variable nil nil [73212 73305])
-            ("bibtex-sort-entry-class-alist" variable nil nil [73307 73511])
-            ("bibtex-parse-association" function (:arguments ("parse-lhs" "parse-rhs")) nil [73515 74206])
-            ("bibtex-parse-field-name" function nil nil [74208 75295])
-            ("bibtex-braced-string-syntax-table" variable
-               (:constant-flag t
-                :default-value (let ((st (make-syntax-table))) (modify-syntax-entry 123 "(}" st) (modify-syntax-entry 125 "){" st) (modify-syntax-entry 91 "." st) (modify-syntax-entry 93 "." st) (modify-syntax-entry 40 "." st) (modify-syntax-entry 41 "." st) (modify-syntax-entry 92 "." st) (modify-syntax-entry 34 "." st) st))
-                nil [75297 75723])
-            ("bibtex-quoted-string-syntax-table" variable
-               (:constant-flag t
-                :default-value (let ((st (make-syntax-table))) (modify-syntax-entry 92 "\\" st) (modify-syntax-entry 34 "\"" st) st))
-                nil [75725 75929])
-            ("bibtex-parse-field-string" function nil nil [75931 76702])
-            ("bibtex-parse-field-text" function nil nil [76704 77642])
-            ("bibtex-parse-field" function nil nil [77644 77992])
-            ("bibtex-start-of-field" function (:arguments ("bounds")) nil [77994 78058])
-            ("bibtex-start-of-name-in-field" function (:arguments ("bounds")) nil [78059 78131])
-            ("bibtex-end-of-name-in-field" function (:arguments ("bounds")) nil [78132 78202])
-            ("bibtex-start-of-text-in-field" function (:arguments ("bounds")) nil [78203 78269])
-            ("bibtex-end-of-text-in-field" function (:arguments ("bounds")) nil [78270 78334])
-            ("bibtex-end-of-field" function (:arguments ("bounds")) nil [78335 78391])
-            ("bibtex-search-forward-field" function (:arguments ("name" "bound")) nil [78393 80524])
-            ("bibtex-search-backward-field" function (:arguments ("name" "bound")) nil [80526 81987])
-            ("bibtex-name-in-field" function (:arguments ("bounds" "remove-opt-alt")) nil [81989 82575])
-            ("bibtex-text-in-field-bounds" function (:arguments ("bounds" "content")) nil [82577 83910])
-            ("bibtex-text-in-field" function (:arguments ("field" "follow-crossref")) nil [83912 84911])
-            ("bibtex-parse-string-prefix" function nil nil [84913 85819])
-            ("bibtex-parse-string-postfix" function nil nil [85821 86436])
-            ("bibtex-parse-string" function (:arguments ("empty-key")) nil [86438 86920])
-            ("bibtex-search-forward-string" function (:arguments ("empty-key")) nil [86922 87565])
-            ("bibtex-reference-key-in-string" function (:arguments ("bounds")) nil [87567 87788])
-            ("bibtex-text-in-string" function (:arguments ("bounds" "content")) nil [87790 88136])
-            ("bibtex-start-of-text-in-string" function (:arguments ("bounds")) nil [88138 88211])
-            ("bibtex-end-of-text-in-string" function (:arguments ("bounds")) nil [88212 88283])
-            ("bibtex-end-of-string" function (:arguments ("bounds")) nil [88284 88347])
-            ("bibtex-type-in-head" function nil nil [88349 88602])
-            ("bibtex-key-in-head" function (:arguments ("empty")) nil [88604 88794])
-            ("bibtex-parse-preamble" function nil nil [88796 89256])
-            ("bibtex-string=" function (:arguments ("str1" "str2")) nil [89279 89423])
-            ("bibtex-delete-whitespace" function nil nil [89425 89580])
-            ("bibtex-current-line" function nil nil [89582 89739])
-            ("bibtex-valid-entry" function (:arguments ("empty-key")) nil [89741 91179])
-            ("bibtex-skip-to-valid-entry" function
-               (:user-visible-flag t
-                :arguments ("backward"))
-                nil [91181 92465])
-            ("bibtex-map-entries" function (:arguments ("fun")) nil [92467 93467])
-            ("bibtex-progress-message" function (:arguments ("flag" "interval")) nil [93469 94621])
-            ("bibtex-field-left-delimiter" function nil nil [94623 94784])
-            ("bibtex-field-right-delimiter" function nil nil [94786 94948])
-            ("bibtex-entry-left-delimiter" function nil nil [94950 95110])
-            ("bibtex-entry-right-delimiter" function nil nil [95112 95273])
-            ("bibtex-flash-head" function (:arguments ("prompt")) nil [95275 95913])
-            ("bibtex-make-optional-field" function (:arguments ("field")) nil [95915 96159])
-            ("bibtex-move-outside-of-entry" function nil nil [96161 96739])
-            ("bibtex-beginning-of-first-entry" function nil nil [96741 97005])
-            ("bibtex-enclosing-field" function (:arguments ("comma" "noerr")) nil [97007 98117])
-            ("bibtex-beginning-first-field" function (:arguments ("beg")) nil [98119 98387])
-            ("bibtex-insert-kill" function (:arguments ("n" "comma")) nil [98389 100123])
-            ("bibtex-vec-push" function (:arguments ("vec" "idx" "newelt")) nil [100125 100269])
-            ("bibtex-vec-incr" function (:arguments ("vec" "idx")) nil [100271 100412])
-            ("bibtex-format-entry" function nil nil [100414 118221])
-            ("bibtex-field-re-init" function (:arguments ("regexp-alist" "type")) nil [118223 119321])
-            ("bibtex-autokey-abbrev" function (:arguments ("string" "len")) nil [119325 120080])
-            ("bibtex-autokey-get-field" function (:arguments ("field" "change-list")) nil [120082 120804])
-            ("bibtex-autokey-get-names" function nil nil [120806 122201])
-            ("bibtex-autokey-demangle-name" function (:arguments ("fullname")) nil [122203 123753])
-            ("bibtex-autokey-get-year" function nil nil [123755 124045])
-            ("bibtex-autokey-get-title" function nil nil [124047 126158])
-            ("bibtex-autokey-demangle-title" function (:arguments ("titleword")) nil [126160 126787])
-            ("bibtex-generate-autokey" function nil nil [126789 131195])
-            ("bibtex-global-key-alist" function nil nil [131199 131651])
-            ("bibtex-read-key" function (:arguments ("prompt" "key" "global")) nil [131653 132090])
-            ("bibtex-read-string-key" function (:arguments ("key")) nil [132092 132342])
-            ("bibtex-parse-keys" function (:arguments ("abortable" "verbose")) nil [132344 135824])
-            ("bibtex-parse-strings" function (:arguments ("add" "abortable")) nil [135826 137234])
-            ("bibtex-strings" function nil nil [137236 137439])
-            ("bibtex-string-files-init" function nil nil [137441 139098])
-            ("bibtex-parse-buffers-stealthily" function nil nil [139100 140327])
-            ("bibtex-initialize" function
-               (:user-visible-flag t
-                :arguments ("current" "force" "select"))
-                nil [140344 144074])
-            ("bibtex-complete-string-cleanup" function (:arguments ("compl")) nil [144076 144559])
-            ("bibtex-complete-crossref-cleanup" function (:arguments ("buf")) nil [144561 145062])
-            ("bibtex-copy-summary-as-kill" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [145064 145692])
-            ("bibtex-summary" function nil nil [145694 147269])
-            ("bibtex-pop" function (:arguments ("arg" "direction")) nil [147271 149763])
-            ("bibtex-beginning-of-field" function nil nil [149765 150163])
-            ("bibtex-font-lock-url" function (:arguments ("bound" "no-button")) nil [150165 151611])
-            ("bibtex-font-lock-crossref" function (:arguments ("bound")) nil [151613 152323])
-            ("bibtex-font-lock-cite" function (:arguments ("matcher" "bound")) nil [152325 152847])
-            ("bibtex-button-action" function (:arguments ("button")) nil [152849 153010])
-            ("define-button-type" code nil nil [153012 153158])
-            ("define-button-type" code nil nil [153160 153335])
-            ("bibtex-button" function (:arguments ("beg" "end" "type" "args")) nil [153337 153519])
-            ("define-derived-mode" code nil nil [153565 158170])
-            ("bibtex-entry-alist" function (:arguments ("dialect")) nil [158172 159560])
-            ("bibtex-set-dialect" function
-               (:user-visible-flag t
-                :arguments ("dialect" "local"))
-                nil [159562 161875])
-            ("let" code nil nil [162053 163803])
-            ("bibtex-field-list" function (:arguments ("entry-type")) nil [163805 165268])
-            ("bibtex-entry" function
-               (:user-visible-flag t
-                :arguments ("entry-type"))
-                nil [165270 166512])
-            ("bibtex-entry-update" function
-               (:user-visible-flag t
-                :arguments ("entry-type"))
-                nil [166514 168524])
-            ("bibtex-parse-entry" function (:arguments ("content")) nil [168526 169368])
-            ("bibtex-autofill-entry" function (:user-visible-flag t) nil [169370 172610])
-            ("bibtex-print-help-message" function
-               (:user-visible-flag t
-                :arguments ("field" "comma"))
-                nil [172612 173838])
-            ("bibtex-make-field" function
-               (:user-visible-flag t
-                :arguments ("field" "move" "interactive" "nodelim"))
-                nil [173840 176246])
-            ("bibtex-beginning-of-entry" function (:user-visible-flag t) nil [176248 176706])
-            ("bibtex-end-of-entry" function (:user-visible-flag t) nil [176708 177639])
-            ("bibtex-goto-line" function (:arguments ("arg")) nil [177641 177912])
-            ("bibtex-reposition-window" function (:user-visible-flag t) nil [177914 178704])
-            ("bibtex-mark-entry" function (:user-visible-flag t) nil [178706 178893])
-            ("bibtex-count-entries" function
-               (:user-visible-flag t
-                :arguments ("count-string-entries"))
-                nil [178895 179589])
-            ("bibtex-ispell-entry" function (:user-visible-flag t) nil [179591 179800])
-            ("bibtex-ispell-abstract" function (:user-visible-flag t) nil [179802 180226])
-            ("bibtex-narrow-to-entry" function (:user-visible-flag t) nil [180228 180446])
-            ("bibtex-entry-index" function nil nil [180448 181510])
-            ("bibtex-init-sort-entry-class-alist" function nil nil [181512 182089])
-            ("bibtex-lessp" function (:arguments ("index1" "index2")) nil [182091 184129])
-            ("bibtex-sort-buffer" function (:user-visible-flag t) nil [184131 185061])
-            ("bibtex-search-crossref" function
-               (:user-visible-flag t
-                :arguments ("crossref-key" "pnt" "split" "noerror"))
-                nil [185089 188619])
-            ("defalias" code nil nil [188646 188702])
-            ("bibtex-dist" function (:arguments ("pos" "beg" "end")) nil [188704 188909])
-            ("bibtex-search-entry" function
-               (:user-visible-flag t
-                :arguments ("key" "global" "start" "display"))
-                nil [188926 191265])
-            ("defalias" code nil nil [191292 191342])
-            ("bibtex-prepare-new-entry" function (:arguments ("index")) nil [191344 194285])
-            ("bibtex-validate" function
-               (:user-visible-flag t
-                :arguments ("test-thoroughly"))
-                nil [194287 202901])
-            ("bibtex-validate-globally" function
-               (:user-visible-flag t
-                :arguments ("strings"))
-                nil [202938 205538])
-            ("bibtex-next-field" function
-               (:user-visible-flag t
-                :arguments ("begin" "comma"))
-                nil [205575 206514])
-            ("bibtex-find-text" function
-               (:user-visible-flag t
-                :arguments ("begin" "noerror" "help" "comma"))
-                nil [206516 207557])
-            ("bibtex-find-text-internal" function (:arguments ("noerror" "subfield" "comma")) nil [207559 211397])
-            ("bibtex-remove-OPT-or-ALT" function
-               (:user-visible-flag t
-                :arguments ("comma"))
-                nil [211399 212691])
-            ("bibtex-remove-delimiters" function
-               (:user-visible-flag t
-                :arguments ("comma"))
-                nil [212693 213111])
-            ("bibtex-kill-field" function
-               (:user-visible-flag t
-                :arguments ("copy-only" "comma"))
-                nil [213113 214397])
-            ("bibtex-copy-field-as-kill" function
-               (:user-visible-flag t
-                :arguments ("comma"))
-                nil [214399 214655])
-            ("bibtex-kill-entry" function
-               (:user-visible-flag t
-                :arguments ("copy-only"))
-                nil [214657 216013])
-            ("bibtex-copy-entry-as-kill" function (:user-visible-flag t) nil [216015 216163])
-            ("bibtex-yank" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [216165 216531])
-            ("bibtex-yank-pop" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [216533 217791])
-            ("bibtex-empty-field" function
-               (:user-visible-flag t
-                :arguments ("comma"))
-                nil [217793 218325])
-            ("bibtex-pop-previous" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [218327 218613])
-            ("bibtex-pop-next" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [218615 218909])
-            ("bibtex-clean-entry" function
-               (:user-visible-flag t
-                :arguments ("new-key" "called-by-reformat"))
-                nil [218911 224178])
-            ("bibtex-fill-field-bounds" function (:arguments ("bounds" "justify" "move")) nil [224180 225417])
-            ("bibtex-fill-field" function
-               (:user-visible-flag t
-                :arguments ("justify"))
-                nil [225419 225809])
-            ("bibtex-fill-entry" function (:user-visible-flag t) nil [225811 226672])
-            ("bibtex-realign" function nil nil [226674 227485])
-            ("bibtex-reformat" function
-               (:user-visible-flag t
-                :arguments ("read-options"))
-                nil [227487 231495])
-            ("bibtex-convert-alien" function
-               (:user-visible-flag t
-                :arguments ("read-options"))
-                nil [231497 232429])
-            ("define-obsolete-function-alias" code nil nil [232431 232508])
-            ("bibtex-completion-at-point-function" function nil nil [232509 236358])
-            ("bibtex-String" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [236360 237214])
-            ("bibtex-Preamble" function (:user-visible-flag t) nil [237216 237634])
-            ("bibtex-url" function
-               (:user-visible-flag t
-                :arguments ("pos" "no-browse"))
-                nil [237636 242692])
-            ("bibtex-search-entries" function
-               (:user-visible-flag t
-                :arguments ("field" "regexp" "global" "display"))
-                nil [242934 246837])
-            ("bibtex-display-entries" function (:arguments ("entries" "append")) nil [246839 248075])
-            ("bibtex" package nil nil [248105 248122]))          
-      :file "bibtex.el"
-      :pointmax 248147
-      :fsize 248146
-      :lastmodtime '(23525 29606 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("forward-page" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [1003 2074])
-            ("backward-page" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [2076 2349])
-            ("mark-page" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2351 2792])
-            ("narrow-to-page" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2794 4443])
-            ("put" code nil nil [4444 4477])
-            ("count-lines-page" function (:user-visible-flag t) nil [4479 5038])
-            ("what-page" function (:user-visible-flag t) nil [5040 5470])
-            ("page" package nil nil [5511 5526]))          
-      :file "page.el"
-      :pointmax 5550
-      :fsize 5549
-      :lastmodtime '(23525 29608 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("text-mode-hook" variable (:default-value (quote (text-mode-hook-identify))) nil [1155 1354])
-            ("text-mode-variant" variable nil nil [1356 1497])
-            ("text-mode-syntax-table" variable (:default-value (let ((st (make-syntax-table))) (modify-syntax-entry 34 ".   " st) (modify-syntax-entry 92 ".   " st) (modify-syntax-entry 39 "w p" st) (modify-syntax-entry 1523 "w   ") (modify-syntax-entry 1524 "w   ") (modify-syntax-entry 183 "w   ") (modify-syntax-entry 8231 "w   ") (modify-syntax-entry 65306 "w   ") st)) nil [1499 2783])
-            ("text-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "	" (quote ispell-complete-word)) (define-key map [menu-bar text] (cons "Text" (make-sparse-keymap "Text"))) (bindings--define-key map [menu-bar text toggle-text-mode-auto-fill] (quote (menu-item "Auto Fill" toggle-text-mode-auto-fill :button (:toggle memq (quote turn-on-auto-fill) text-mode-hook) :help "Automatically fill text while typing in text modes (Auto Fill mode)"))) (bindings--define-key map [menu-bar text paragraph-indent-minor-mode] (quote (menu-item "Paragraph Indent" paragraph-indent-minor-mode :button (:toggle bound-and-true-p paragraph-indent-minor-mode) :help "Toggle paragraph indent minor mode"))) (bindings--define-key map [menu-bar text sep] menu-bar-separator) (bindings--define-key map [menu-bar text center-region] (quote (menu-item "Center Region" center-region :help "Center the marked region" :enable (region-active-p)))) (bindings--define-key map [menu-bar text center-paragraph] (quote (menu-item "Center Paragraph" center-paragraph :help "Center the current paragraph"))) (bindings--define-key map [menu-bar text center-line] (quote (menu-item "Center Line" center-line :help "Center the current line"))) map)) nil [2785 4336])
-            ("define-derived-mode" code nil nil [4340 4892])
-            ("define-derived-mode" code nil nil [4894 5468])
-            ("define-minor-mode" code nil nil [5470 6653])
-            ("defalias" code nil nil [6655 6696])
-            ("text-mode-hook-identify" function nil nil [6912 7123])
-            ("toggle-text-mode-auto-fill" function (:user-visible-flag t) nil [7125 7832])
-            ("define-key" code nil nil [7836 7888])
-            ("center-paragraph" function (:user-visible-flag t) nil [7890 8190])
-            ("center-region" function
-               (:user-visible-flag t
-                :arguments ("from" "to"))
-                nil [8192 8616])
-            ("define-key" code nil nil [8618 8665])
-            ("center-line" function
-               (:user-visible-flag t
-                :arguments ("nlines"))
-                nil [8667 9564])
-            ("text-mode" package nil nil [9566 9586]))          
-      :file "text-mode.el"
-      :pointmax 9615
-      :fsize 9614
-      :lastmodtime '(23525 29610 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("skeleton" include nil nil [1165 1184])
-            ("cl-lib" include nil nil [1145 1162])
-            ("compare-w" include nil nil [1122 1142])
-            ("font-lock-comment-face" variable nil nil [1187 1218])
-            ("font-lock-doc-face" variable nil nil [1219 1246])
-            ("shell" include nil nil [1248 1264])
-            ("compile" include nil nil [1265 1283])
-            ("tex-file" customgroup (:user-visible-flag t) nil [1285 1370])
-            ("tex-run" customgroup (:user-visible-flag t) nil [1372 1470])
-            ("tex-view" customgroup (:user-visible-flag t) nil [1472 1562])
-            ("tex-flymake" customgroup (:user-visible-flag t) nil [1564 1664])
-            ("tex-shell-file-name" variable nil nil [1681 1862])
-            ("tex-directory" variable (:default-value (purecopy ".")) nil [1879 2207])
-            ("tex-first-line-header-regexp" variable nil nil [2224 2589])
-            ("tex-main-file" variable nil nil [2606 2883])
-            ("tex-offer-save" variable (:default-value t) nil [2900 3042])
-            ("tex-run-command" variable (:default-value (purecopy "tex")) nil [3059 3257])
-            ("latex-run-command" variable (:default-value (purecopy "latex")) nil [3274 3480])
-            ("slitex-run-command" variable (:default-value (purecopy "slitex")) nil [3497 3707])
-            ("tex-start-options" variable (:default-value (purecopy "")) nil [3724 4075])
-            ("tex-start-commands" variable (:default-value (purecopy "\\nonstopmode\\input")) nil [4092 4564])
-            ("latex-standard-block-names" variable (:default-value (quote ("abstract" "array" "center" "description" "displaymath" "document" "enumerate" "eqnarray" "eqnarray*" "equation" "figure" "figure*" "flushleft" "flushright" "itemize" "letter" "list" "minipage" "picture" "quotation" "quote" "slide" "sloppypar" "tabbing" "table" "table*" "tabular" "tabular*" "thebibliography" "theindex*" "titlepage" "trivlist" "verbatim" "verbatim*" "verse" "math"))) nil [4566 5063])
-            ("latex-block-names" variable nil nil [5080 5262])
-            ("tex-bibtex-command" variable (:default-value (purecopy "bibtex")) nil [5279 5575])
-            ("tex-dvi-print-command" variable (:default-value (purecopy "lpr -d")) nil [5592 5880])
-            ("tex-alt-dvi-print-command" variable (:default-value (purecopy "lpr -d")) nil [5897 6601])
-            ("tex-dvi-view-command" variable (:default-value (\` (cond ((eq window-system (quote x)) (\, (purecopy "xdvi"))) ((eq window-system (quote w32)) (\, (purecopy "yap"))) (t (\, (purecopy "dvi2tty * | cat -s")))))) nil [6618 7186])
-            ("tex-show-queue-command" variable (:default-value (purecopy "lpq")) nil [7203 7417])
-            ("tex-default-mode" variable (:default-value (quote latex-mode)) nil [7434 7767])
-            ("tex-open-quote" variable (:default-value (purecopy "``")) nil [7784 7968])
-            ("tex-close-quote" variable (:default-value (purecopy "''")) nil [7985 8171])
-            ("tex-fontify-script" variable (:default-value t) nil [8173 8313])
-            ("put" code nil nil [8314 8370])
-            ("tex-font-script-display" variable (:default-value (quote (-0.2 0.2))) nil [8372 8827])
-            ("tex-chktex-program" variable (:default-value "chktex") nil [8829 9012])
-            ("tex-chktex-extra-flags" variable nil nil [9014 9172])
-            ("tex-last-temp-file" variable nil nil [9174 9376])
-            ("tex-command" variable (:default-value "tex") nil [9378 9736])
-            ("tex-trailer" variable nil nil [9738 9839])
-            ("tex-start-of-header" variable nil nil [9841 9951])
-            ("tex-end-of-header" variable nil nil [9953 10059])
-            ("tex-shell-cd-command" variable (:default-value "cd") nil [10061 10229])
-            ("tex-zap-file" variable nil nil [10231 10397])
-            ("tex-last-buffer-texed" variable nil nil [10399 10466])
-            ("tex-print-file" variable nil nil [10468 10593])
-            ("tex-mode-syntax-table" variable (:default-value (let ((st (make-syntax-table))) (modify-syntax-entry 37 "<" st) (modify-syntax-entry 10 ">" st) (modify-syntax-entry 12 ">" st) (modify-syntax-entry 0 "w" st) (modify-syntax-entry 39 "w" st) (modify-syntax-entry 64 "_" st) (modify-syntax-entry 42 "_" st) (modify-syntax-entry 9 " " st) (modify-syntax-entry 126 "." st) (modify-syntax-entry 36 "$$" st) (modify-syntax-entry 92 "/" st) (modify-syntax-entry 34 "." st) (modify-syntax-entry 38 "." st) (modify-syntax-entry 95 "." st) (modify-syntax-entry 94 "." st) st)) nil [10595 11399])
-            ("latex-imenu-indent-string" variable (:default-value ". ") nil [11432 11650])
-            ("latex-section-alist" variable (:default-value (quote (("part" . 0) ("chapter" . 1) ("section" . 2) ("subsection" . 3) ("subsubsection" . 4) ("paragraph" . 5) ("subparagraph" . 6)))) nil [11652 11822])
-            ("latex-metasection-list" variable (:default-value (quote ("documentstyle" "documentclass" "begin{document}" "end{document}" "appendix" "frontmatter" "mainmatter" "backmatter"))) nil [11824 11985])
-            ("latex-imenu-create-index" function nil nil [11987 14128])
-            ("latex-outline-regexp" variable (:default-value (concat "\\\\" (regexp-opt (append latex-metasection-list (mapcar (function car) latex-section-alist)) t))) nil [14163 14326])
-            ("latex-outline-level" function nil nil [14328 14478])
-            ("tex-current-defun-name" function nil nil [14480 14857])
-            ("tex-font-lock-keywords-1" variable
-               (:constant-flag t
-                :default-value (eval-when-compile (let* ((headings (regexp-opt (quote ("title" "begin" "end" "chapter" "part" "section" "subsection" "subsubsection" "paragraph" "subparagraph" "subsubparagraph" "newcommand" "renewcommand" "providecommand" "newenvironment" "renewenvironment" "newtheorem" "renewtheorem")) t)) (variables (regexp-opt (quote ("newcounter" "newcounter*" "setcounter" "addtocounter" "setlength" "addtolength" "settowidth")) t)) (includes (regexp-opt (quote ("input" "include" "includeonly" "bibliography" "epsfig" "psfig" "epsf" "nofiles" "usepackage" "documentstyle" "documentclass" "verbatiminput" "includegraphics" "includegraphics*")) t)) (verbish (regexp-opt (quote ("url" "nolinkurl" "path")) t)) (slash "\\\\") (opt " *\\(\\[[^]]*\\] *\\)*") (inbraces-re (lambda (re) (concat "\\(?:[^{}\\]\\|\\\\.\\|" re "\\)"))) (arg (concat "{\\(" (funcall inbraces-re "{[^}]*}") "+\\)"))) (\` (((\, (concat "\\$\\$?\\(?:[^$\\{}]\\|\\\\.\\|{" (funcall inbraces-re (concat "{" (funcall inbraces-re "{[^}]*}") "*}")) "*}\\)+\\$?\\$")) (0 (quote tex-math))) ((\, (concat slash headings "\\*?" opt arg)) 3 font-lock-function-name-face keep) ((\, (concat slash "\\(?:provide\\|\\(?:re\\)?new\\)command\\** *\\(\\\\[A-Za-z@]+\\)")) 1 font-lock-function-name-face keep) ((\, (concat slash variables " *" arg)) 2 font-lock-variable-name-face) ((\, (concat slash includes opt arg)) 3 font-lock-builtin-face) ((\, (concat slash verbish opt arg)) 3 (quote tex-verbatim)) ("^[ 	]*\\\\def *\\\\\\(\\(\\w\\|@\\)+\\)" 1 font-lock-function-name-face))))))
-                nil [16616 19834])
-            ("tex-font-lock-append-prop" function (:arguments ("prop")) nil [19836 19984])
-            ("tex-font-lock-keywords-2" variable
-               (:constant-flag t
-                :default-value (append tex-font-lock-keywords-1 (eval-when-compile (let* ((bold (regexp-opt (quote ("textbf" "textsc" "textup" "boldsymbol" "pmb")) t)) (italic (regexp-opt (quote ("textit" "textsl" "emph")) t)) (citations (regexp-opt (quote ("label" "ref" "pageref" "vref" "eqref" "cite" "nocite" "index" "glossary" "bibitem" "citep" "citet")) t)) (specials-1 (regexp-opt (quote ("\\" "\\*")) t)) (specials-2 (regexp-opt (quote ("linebreak" "nolinebreak" "pagebreak" "nopagebreak" "newline" "newpage" "clearpage" "cleardoublepage" "displaybreak" "allowdisplaybreaks" "enlargethispage")) t)) (general "\\([a-zA-Z@]+\\**\\|[^ 	
-]\\)") (slash "\\\\") (opt " *\\(\\[[^]]*\\] *\\)*") (args "\\(\\(?:[^{}&\\]+\\|\\\\.\\|{[^}]*}\\)+\\)") (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)")) (list (list (concat slash citations opt arg) 3 (quote font-lock-constant-face)) (cons (concat (regexp-opt (\` ("``" "\"<" "\"`" "<<" "«")) t) "[^'\">{]+" (regexp-opt (\` ("''" "\">" "\"'" ">>" "»")) t)) (quote font-lock-string-face)) (cons (concat slash specials-1) (quote font-lock-warning-face)) (list (concat "\\(" slash specials-2 "\\)\\([^a-zA-Z@]\\|\\'\\)") 1 (quote font-lock-warning-face)) (concat slash general) (list (concat slash bold " *" arg) 2 (quote (tex-font-lock-append-prop (quote bold))) (quote append)) (list (concat slash italic " *" arg) 2 (quote (tex-font-lock-append-prop (quote italic))) (quote append)) (list (concat "\\\\\\(em\\|it\\|sl\\)\\>" args) 2 (quote (tex-font-lock-append-prop (quote italic))) (quote append)) (list (concat "\\\\\\(bf\\(series\\)?\\)\\>" args) 3 (quote (tex-font-lock-append-prop (quote bold))) (quote append)))))))
-                nil [19986 22834])
-            ("tex-font-lock-suscript" function (:arguments ("pos")) nil [22836 23359])
-            ("tex-font-lock-match-suscript" function (:arguments ("limit")) nil [23361 23935])
-            ("tex-font-lock-keywords-3" variable
-               (:constant-flag t
-                :default-value (append tex-font-lock-keywords-2 (quote ((tex-font-lock-match-suscript (1 (tex-font-lock-suscript (match-beginning 0)) append))))))
-                nil [23937 24163])
-            ("tex-font-lock-keywords" variable
-               (:constant-flag t
-                :default-value tex-font-lock-keywords-1)
-                nil [24165 24274])
-            ("tex-verbatim-environments" variable (:default-value (quote ("verbatim" "verbatim*"))) nil [24276 24338])
-            ("put" code nil nil [24339 24447])
-            ("latex-syntax-propertize-rules" variable
-               (:constant-flag t
-                :default-value (syntax-propertize-precompile-rules tex-syntax-propertize-rules ("\\\\\\(?:end\\|begin\\) *\\({[^
-{}]*}\\)" (1 (ignore (tex-env-mark (match-beginning 0) (match-beginning 1) (match-end 1)))))))
-                nil [24708 24995])
-            ("tex-syntax-propertize-rules" variable
-               (:constant-flag t
-                :default-value (syntax-propertize-precompile-rules ("\\\\verb\\**\\([^a-z@*]\\)" (1 (prog1 "\"" (tex-font-lock-verb (match-beginning 0) (char-after (match-beginning 1))))))))
-                nil [24470 24704])
-            ("tex-env-mark" function (:arguments ("cmd" "start" "end")) nil [24998 26246])
-            ("define-minor-mode" code nil nil [26248 26891])
-            ("latex-env-before-change" function (:arguments ("start" "end")) nil [26893 28721])
-            ("tex-font-lock-unfontify-region" function (:arguments ("beg" "end")) nil [28723 29155])
-            ("tex-suscript-height-ratio" variable (:default-value 0.8) nil [29157 29445])
-            ("tex-suscript-height-minimum" variable nil nil [29447 29859])
-            ("tex-suscript-height" function (:arguments ("height")) nil [29861 30353])
-            ("superscript" variable
-               (:default-value (quote ((t :height tex-suscript-height)))
-                :type "face")
-                nil [30355 30473])
-            ("subscript" variable
-               (:default-value (quote ((t :height tex-suscript-height)))
-                :type "face")
-                nil [30474 30589])
-            ("tex-math" variable
-               (:default-value (quote ((t :inherit font-lock-string-face)))
-                :type "face")
-                nil [30591 30712])
-            ("tex-verbatim" variable
-               (:default-value (quote ((t :inherit fixed-pitch-serif)))
-                :type "face")
-                nil [30714 30840])
-            ("tex-font-lock-verb" function (:arguments ("start" "delim")) nil [30842 31891])
-            ("tex-font-lock-syntactic-face-function" function (:arguments ("state")) nil [31939 32199])
-            ("tex-define-common-keys" function (:arguments ("keymap")) nil [32203 33443])
-            ("tex-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map text-mode-map) (tex-define-common-keys map) (define-key map "\"" (quote tex-insert-quote)) (define-key map "
-" (quote tex-handle-newline)) (define-key map "\215" (quote latex-insert-item)) (define-key map "}" (quote up-list)) (define-key map "{" (quote tex-insert-braces)) (define-key map "" (quote tex-region)) (define-key map "" (quote tex-buffer)) (define-key map "" (quote tex-file)) (define-key map "" (quote tex-compile)) (define-key map "	" (quote tex-bibtex-file)) (define-key map "" (quote latex-insert-block)) (define-key map "" (quote latex-insert-block)) (define-key map "]" (quote latex-close-block)) (define-key map "/" (quote latex-close-block)) (define-key map "" (quote latex-close-block)) (define-key map "" (quote tex-goto-last-unclosed-latex-block)) (define-key map "
" (quote tex-feed-input)) (define-key map [(control return)] (quote tex-feed-input)) (define-key map [menu-bar tex tex-bibtex-file] (quote ("BibTeX File" . tex-bibtex-file))) (define-key map [menu-bar tex tex-validate-region] (quote (menu-item "Validate Region" tex-validate-region :enable mark-active))) (define-key map [menu-bar tex tex-validate-buffer] (quote ("Validate Buffer" . tex-validate-buffer))) (define-key map [menu-bar tex tex-region] (quote (menu-item "TeX Region" tex-region :enable mark-active))) (define-key map [menu-bar tex tex-buffer] (quote ("TeX Buffer" . tex-buffer))) (define-key map [menu-bar tex tex-file] (quote ("TeX File" . tex-file))) map)) nil [33445 35145])
-            ("latex-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map tex-mode-map) (define-key map "" (quote latex-split-block)) map)) nil [35147 35362])
-            ("plain-tex-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map tex-mode-map) map)) nil [35364 35536])
-            ("tex-shell-map" variable (:default-value (let ((m (make-sparse-keymap))) (set-keymap-parent m shell-mode-map) (tex-define-common-keys m) m)) nil [35538 35751])
-            ("tex-face-alist" variable (:default-value (quote ((bold . "{\\bf ") (italic . "{\\it ") (bold-italic . "{\\bi ") (underline . "\\underline{") (default . "{\\rm ")))) nil [35753 35976])
-            ("tex-latex-face-alist" variable (:default-value (\` ((italic . "{\\em ") (\,@ tex-face-alist)))) nil [35978 36105])
-            ("tex-facemenu-add-face-function" function (:arguments ("face" "_end")) nil [36107 36629])
-            ("tex-guess-mode" function nil nil [36729 37658])
-            ("define-derived-mode" code nil nil [37913 37997])
-            ("defalias" code nil nil [38289 38346])
-            ("if" code nil nil [38551 38768])
-            ("tex-mode" function (:user-visible-flag t) nil [38786 39336])
-            ("defalias" code nil nil [39798 39828])
-            ("defalias" code nil nil [39844 39886])
-            ("defalias" code nil nil [39902 39936])
-            ("define-derived-mode" code nil nil [39953 41895])
-            ("define-derived-mode" code nil nil [41912 45525])
-            ("define-derived-mode" code nil nil [45542 47446])
-            ("tildify-space-string" variable nil nil [47448 47477])
-            ("tildify-foreach-region-function" variable nil nil [47478 47518])
-            ("declare-function" code nil nil [47519 47627])
-            ("tex--prettify-symbols-alist" variable nil nil [47628 47664])
-            ("tex-common-initialization" function nil nil [47666 50661])
-            ("tex-categorize-whitespace" function (:arguments ("backward-limit")) nil [50663 51624])
-            ("tex-insert-quote" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [51626 54124])
-            ("tex-validate-buffer" function (:user-visible-flag t) nil [54126 56865])
-            ("tex-validate-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [56867 58025])
-            ("tex-handle-newline" function
-               (:user-visible-flag t
-                :arguments ("inhibit-validation"))
-                nil [58027 58600])
-            ("tex-terminate-paragraph" function
-               (:user-visible-flag t
-                :arguments ("inhibit-validation"))
-                nil [58602 59285])
-            ("define-skeleton" code nil nil [59287 59403])
-            ("latex-fill-nobreak-predicate" function nil nil [59556 60005])
-            ("latex-block-default" variable (:default-value "enumerate") nil [60007 60047])
-            ("latex-block-args-alist" variable (:default-value (quote (("array" nil 123 (skeleton-read "Format: ") 125) ("tabular" nil 123 (skeleton-read "Format: ") 125) ("minipage" nil 123 (skeleton-read "Size: ") 125) ("picture" nil 40 (skeleton-read "SizeX,SizeY: ") 41)))) nil [60049 60669])
-            ("latex-block-body-alist" variable (:default-value (quote (("enumerate" nil (quote (latex-insert-item)) > _) ("itemize" nil (quote (latex-insert-item)) > _) ("table" nil "\\caption{" > (skeleton-read "Caption: ") "}" > n (quote (if (and (boundp (quote reftex-mode)) reftex-mode) (reftex-label "table"))) n _) ("figure" nil > _ n "\\caption{" > (skeleton-read "Caption: ") "}" > n (quote (if (and (boundp (quote reftex-mode)) reftex-mode) (reftex-label "table"))))))) nil [60671 61345])
-            ("defalias" code nil nil [61389 61436])
-            ("define-skeleton" code nil nil [61437 62205])
-            ("define-skeleton" code nil nil [62207 62293])
-            ("latex-complete-bibtex-cache" variable nil nil [62321 62361])
-            ("define-obsolete-function-alias" code nil nil [62363 62444])
-            ("bibtex-reference-key" variable nil nil [62446 62475])
-            ("declare-function" code nil nil [62476 62538])
-            ("latex-complete-bibtex-keys" function nil nil [62540 63794])
-            ("latex-complete-envnames" function nil nil [63796 64589])
-            ("latex-complete-refkeys" function nil nil [64591 64710])
-            ("latex-complete-alist" variable (:default-value (\` (("\\`\\\\\\(short\\)?cite\\'" \, (function latex-complete-bibtex-keys)) ("\\`\\\\\\(begin\\|end\\)\\'" \, (function latex-complete-envnames)) ("\\`\\\\[vf]?ref\\'" \, (function latex-complete-refkeys))))) nil [64712 64929])
-            ("latex-complete-data" function nil nil [64931 66431])
-            ("tex-search-noncomment" function (:arguments ("body")) nil [66473 66868])
-            ("tex-last-unended-begin" function nil nil [66870 67216])
-            ("tex-next-unmatched-end" function nil nil [67218 67540])
-            ("tex-next-unmatched-eparen" function (:arguments ("otype")) nil [67542 68249])
-            ("tex-last-unended-eparen" function (:arguments ("ctype")) nil [68251 68898])
-            ("tex-goto-last-unclosed-latex-block" function (:user-visible-flag t) nil [68900 69178])
-            ("latex-handle-escaped-parens" variable (:default-value t) nil [69180 69218])
-            ("latex-backward-sexp-1" function nil nil [69396 70249])
-            ("latex-forward-sexp-1" function nil nil [70532 71627])
-            ("latex-forward-sexp" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [71629 72134])
-            ("latex-syntax-after" function nil nil [72136 72303])
-            ("latex-skip-close-parens" function nil nil [72305 72549])
-            ("latex-down-list" function nil nil [72551 72912])
-            ("defalias" code nil nil [72914 72966])
-            ("define-skeleton" code nil nil [72967 73234])
-            ("define-skeleton" code nil nil [73236 73720])
-            ("tex-discount-args-cmds" variable
-               (:constant-flag t
-                :default-value (quote ("begin" "end" "input" "special" "cite" "ref" "include" "includeonly" "documentclass" "usepackage" "label")))
-                nil [73722 73934])
-            ("tex-count-words" function
-               (:user-visible-flag t
-                :arguments ("begin" "end"))
-                nil [73936 75000])
-            ("tex-error-parse-syntax-table" variable (:default-value (let ((st (make-syntax-table))) (modify-syntax-entry 40 "()" st) (modify-syntax-entry 41 ")(" st) (modify-syntax-entry 92 "\\" st) (modify-syntax-entry 123 "_" st) (modify-syntax-entry 125 "_" st) (modify-syntax-entry 91 "_" st) (modify-syntax-entry 93 "_" st) (modify-syntax-entry 34 "_" st) st)) nil [75185 75665])
-            ("tex-old-error-file-name" function nil nil [75667 76426])
-            ("tex-error-regexp-alist" variable
-               (:constant-flag t
-                :default-value (quote (gnu ("^l\\.\\([1-9][0-9]*\\) \\(?:\\.\\.\\.\\)?\\(.*\\)$" tex-old-error-file-name 1 nil nil nil (2 compilation-error-face)) ("^\\(?:Und\\|Ov\\)erfull \\\\[hv]box .* at lines? \\(\\([1-9][0-9]*\\)\\(?:--\\([1-9][0-9]*\\)\\)?\\)$" tex-old-error-file-name (2 . 3) nil 1 nil (1 compilation-warning-face)) ("^(Font) *\\([^ 
-].* on input line \\([1-9][0-9]*\\)\\)\\.$" tex-old-error-file-name 2 nil 1 1 (2 compilation-warning-face)))))
-                nil [76428 77595])
-            ("define-derived-mode" code nil nil [77624 77782])
-            ("tex-start-shell" function nil nil [77799 78258])
-            ("tex-feed-input" function (:user-visible-flag t) nil [78260 78572])
-            ("tex-display-shell" function nil nil [78574 78723])
-            ("tex-shell-sentinel" function (:arguments ("proc" "_msg")) nil [78725 78991])
-            ("tex-set-buffer-directory" function (:arguments ("buffer" "directory")) nil [78993 79333])
-            ("tex-send-command-modified-tick" variable nil nil [79335 79376])
-            ("make-variable-buffer-local" code nil nil [79377 79437])
-            ("tex-shell-proc" function nil nil [79439 79519])
-            ("tex-shell-buf" function nil nil [79520 79580])
-            ("tex-shell-buf-no-error" function nil nil [79581 79688])
-            ("tex-send-command" function (:arguments ("command" "file" "background")) nil [79690 81194])
-            ("tex-delete-last-temp-files" function (:arguments ("not-all")) nil [81196 81824])
-            ("add-hook" code nil nil [81826 81881])
-            ("tex-compile-history" variable nil nil [81956 81988])
-            ("tex-input-files-re" variable (:default-value (eval-when-compile (concat "\\." (regexp-opt (quote ("tex" "texi" "texinfo" "bbl" "ind" "sty" "cls")) t) "\\'\\|\\`[^.]+\\'"))) nil [81990 82206])
-            ("tex-use-reftex" variable (:default-value t) nil [82208 82344])
-            ("tex-compile-commands" variable (:default-value (\` ((\,@ (mapcar (lambda (prefix) (\` ((concat (\, prefix) tex-command " " (if (< 0 (length tex-start-commands)) (shell-quote-argument tex-start-commands)) " %f") t "%r.pdf"))) (quote ("pdf" "xe" "lua")))) ((concat tex-command " " (if (< 0 (length tex-start-commands)) (shell-quote-argument tex-start-commands)) " %f") t "%r.dvi") ("xdvi %r &" "%r.dvi") ("\\doc-view \"%r.pdf\"" "%r.pdf") ("xpdf %r.pdf &" "%r.pdf") ("gv %r.ps &" "%r.ps") ("yap %r &" "%r.dvi") ("advi %r &" "%r.dvi") ("gv %r.pdf &" "%r.pdf") ("bibtex %r" "%r.aux" "%r.bbl") ("makeindex %r" "%r.idx" "%r.ind") ("texindex %r.??") ("dvipdfm %r" "%r.dvi" "%r.pdf") ("dvipdf %r" "%r.dvi" "%r.pdf") ("dvips -o %r.ps %r" "%r.dvi" "%r.ps") ("ps2pdf %r.ps" "%r.ps" "%r.pdf") ("lpr %r.ps" "%r.ps")))) nil [82346 83892])
-            ("define-obsolete-function-alias" code nil nil [83894 83971])
-            ("tex-guess-main-file" function (:arguments ("all")) nil [83973 85316])
-            ("tex-main-file" function nil nil [85318 86321])
-            ("tex-summarize-command" function (:arguments ("cmd")) nil [86323 86535])
-            ("tex-uptodate-p" function (:arguments ("file")) nil [86537 88841])
-            ("format-spec" function (:prototype-flag t) nil [88844 88881])
-            ("tex-executable-cache" variable nil nil [88883 88916])
-            ("tex-executable-exists-p" function (:arguments ("name")) nil [88917 89393])
-            ("tex-command-executable" function (:arguments ("cmd")) nil [89395 89536])
-            ("tex-command-active-p" function (:arguments ("cmd" "fspec")) nil [89538 89943])
-            ("tex-cmd-bibtex-args" variable (:default-value "--min-crossref=100") nil [89945 90096])
-            ("tex-format-cmd" function (:arguments ("format" "fspec")) nil [90098 90733])
-            ("tex-compile-default" function (:arguments ("fspec")) nil [90735 93696])
-            ("tex-cmd-doc-view" function (:arguments ("file")) nil [93698 93773])
-            ("tex-compile" function
-               (:user-visible-flag t
-                :arguments ("dir" "cmd"))
-                nil [93775 95210])
-            ("tex-start-tex" function (:arguments ("command" "file" "dir")) nil [95212 95762])
-            ("tex-send-tex-command" function (:arguments ("cmd" "dir")) nil [95764 96418])
-            ("tex-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [96440 99127])
-            ("tex-region-header" function (:arguments ("file" "beg")) nil [99129 100801])
-            ("tex-buffer" function (:user-visible-flag t) nil [100803 101064])
-            ("tex-file" function (:user-visible-flag t) nil [101066 101636])
-            ("tex-generate-zap-file-name" function nil nil [101638 102094])
-            ("tex-expand-files" function (:arguments ("s")) nil [102216 102590])
-            ("tex-shell-running" function nil nil [102592 103041])
-            ("tex-kill-job" function (:user-visible-flag t) nil [103043 103474])
-            ("tex-recenter-output-buffer" function
-               (:user-visible-flag t
-                :arguments ("linenum"))
-                nil [103476 104060])
-            ("tex-print-file-extension" variable (:default-value ".dvi") nil [104062 104357])
-            ("tex-print" function
-               (:user-visible-flag t
-                :arguments ("alt"))
-                nil [104359 105470])
-            ("tex-alt-print" function (:user-visible-flag t) nil [105472 105671])
-            ("tex-view" function (:user-visible-flag t) nil [105673 106297])
-            ("tex-append" function (:arguments ("file-name" "suffix")) nil [106299 107282])
-            ("tex-show-print-queue" function (:user-visible-flag t) nil [107284 107588])
-            ("tex-bibtex-file" function (:user-visible-flag t) nil [107590 108110])
-            ("tex-indent-allhanging" variable (:default-value t) nil [108147 108179])
-            ("tex-indent-arg" variable (:default-value 4) nil [108180 108205])
-            ("tex-indent-basic" variable (:default-value 2) nil [108206 108233])
-            ("tex-indent-item" variable (:default-value tex-indent-basic) nil [108234 108275])
-            ("tex-indent-item-re" variable (:default-value "\\\\\\(bib\\)?item\\>") nil [108276 108327])
-            ("latex-noindent-environments" variable (:default-value (quote ("document"))) nil [108328 108378])
-            ("put" code nil nil [108379 108489])
-            ("tex-latex-indent-syntax-table" variable (:default-value (let ((st (make-syntax-table tex-mode-syntax-table))) (modify-syntax-entry 36 "." st) (modify-syntax-entry 40 "." st) (modify-syntax-entry 41 "." st) st)) nil [108491 108754])
-            ("latex-indent" function (:arguments ("_arg")) nil [108756 109458])
-            ("latex-indent-within-escaped-parens" variable nil nil [109460 109846])
-            ("latex-find-indent" function (:arguments ("virtual")) nil [109848 113821])
-            ("doctex-font-lock-^^A" function nil nil [113842 114596])
-            ("doctex-font-lock-syntactic-face-function" function (:arguments ("state")) nil [114598 114972])
-            ("doctex-syntax-propertize-rules" variable
-               (:constant-flag t
-                :default-value (syntax-propertize-precompile-rules latex-syntax-propertize-rules ("\\(\\^\\)\\^A" (1 (doctex-font-lock-^^A)))))
-                nil [114995 115197])
-            ("doctex-font-lock-keywords" variable (:default-value (append tex-font-lock-keywords (quote (("^%<[^>]*>" (0 font-lock-preprocessor-face t)))))) nil [115200 115322])
-            ("define-derived-mode" code nil nil [115339 115844])
-            ("tex--prettify-symbols-alist" variable (:default-value (quote (("\\alpha" . 945) ("\\beta" . 946) ("\\gamma" . 947) ("\\delta" . 948) ("\\epsilon" . 1013) ("\\zeta" . 950) ("\\eta" . 951) ("\\theta" . 952) ("\\iota" . 953) ("\\kappa" . 954) ("\\lambda" . 955) ("\\mu" . 956) ("\\nu" . 957) ("\\xi" . 958) ("\\pi" . 960) ("\\rho" . 961) ("\\sigma" . 963) ("\\tau" . 964) ("\\upsilon" . 965) ("\\phi" . 981) ("\\chi" . 967) ("\\psi" . 968) ("\\omega" . 969) ("\\Gamma" . 915) ("\\Delta" . 916) ("\\Lambda" . 923) ("\\Phi" . 934) ("\\Pi" . 928) ("\\Psi" . 936) ("\\Sigma" . 931) ("\\Theta" . 920) ("\\Upsilon" . 933) ("\\Xi" . 926) ("\\Omega" . 937) ("\\Box" . 9633) ("\\Bumpeq" . 8782) ("\\Cap" . 8914) ("\\Cup" . 8915) ("\\Diamond" . 9671) ("\\Downarrow" . 8659) ("\\H{o}" . 337) ("\\Im" . 8465) ("\\Join" . 8904) ("\\Leftarrow" . 8656) ("\\Leftrightarrow" . 8660) ("\\Ll" . 8920) ("\\Lleftarrow" . 8666) ("\\Longleftarrow" . 8656) ("\\Longleftrightarrow" . 8660) ("\\Longrightarrow" . 8658) ("\\Lsh" . 8624) ("\\Re" . 8476) ("\\Rightarrow" . 8658) ("\\Rrightarrow" . 8667) ("\\Rsh" . 8625) ("\\Subset" . 8912) ("\\Supset" . 8913) ("\\Uparrow" . 8657) ("\\Updownarrow" . 8661) ("\\Vdash" . 8873) ("\\Vert" . 8214) ("\\Vvdash" . 8874) ("\\aleph" . 8501) ("\\amalg" . 8720) ("\\angle" . 8736) ("\\approx" . 8776) ("\\approxeq" . 8778) ("\\ast" . 8727) ("\\asymp" . 8781) ("\\backcong" . 8780) ("\\backepsilon" . 8717) ("\\backprime" . 8245) ("\\backsim" . 8765) ("\\backsimeq" . 8909) ("\\backslash" . 92) ("\\barwedge" . 8892) ("\\because" . 8757) ("\\beth" . 8502) ("\\between" . 8812) ("\\bigcap" . 8898) ("\\bigcirc" . 9711) ("\\bigcup" . 8899) ("\\bigstar" . 9733) ("\\bigtriangledown" . 9661) ("\\bigtriangleup" . 9651) ("\\bigvee" . 8897) ("\\bigwedge" . 8896) ("\\blacklozenge" . 10022) ("\\blacksquare" . 9642) ("\\blacktriangle" . 9652) ("\\blacktriangledown" . 9662) ("\\blacktriangleleft" . 9666) ("\\blacktriangleright" . 9656) ("\\bot" . 8869) ("\\bowtie" . 8904) ("\\boxminus" . 8863) ("\\boxplus" . 8862) ("\\boxtimes" . 8864) ("\\bullet" . 8226) ("\\bumpeq" . 8783) ("\\cap" . 8745) ("\\cdots" . 8943) ("\\centerdot" . 183) ("\\checkmark" . 10003) ("\\chi" . 967) ("\\cdot" . 8901) ("\\cdots" . 8943) ("\\circ" . 8728) ("\\circeq" . 8791) ("\\circlearrowleft" . 8634) ("\\circlearrowright" . 8635) ("\\circledR" . 174) ("\\circledS" . 9416) ("\\circledast" . 8859) ("\\circledcirc" . 8858) ("\\circleddash" . 8861) ("\\clubsuit" . 9827) ("\\coloneq" . 8788) ("\\complement" . 8705) ("\\cong" . 8773) ("\\coprod" . 8720) ("\\cup" . 8746) ("\\curlyeqprec" . 8926) ("\\curlyeqsucc" . 8927) ("\\curlypreceq" . 8828) ("\\curlyvee" . 8910) ("\\curlywedge" . 8911) ("\\curvearrowleft" . 8630) ("\\curvearrowright" . 8631) ("\\dag" . 8224) ("\\dagger" . 8224) ("\\daleth" . 8504) ("\\dashv" . 8867) ("\\ddag" . 8225) ("\\ddagger" . 8225) ("\\ddots" . 8945) ("\\diamond" . 8900) ("\\diamondsuit" . 9826) ("\\divideontimes" . 8903) ("\\doteq" . 8784) ("\\doteqdot" . 8785) ("\\dotplus" . 8724) ("\\dotsquare" . 8865) ("\\downarrow" . 8595) ("\\downdownarrows" . 8650) ("\\downleftharpoon" . 8643) ("\\downrightharpoon" . 8642) ("\\ell" . 8467) ("\\emptyset" . 8709) ("\\eqcirc" . 8790) ("\\eqcolon" . 8789) ("\\eqslantgtr" . 8925) ("\\eqslantless" . 8924) ("\\equiv" . 8801) ("\\exists" . 8707) ("\\fallingdotseq" . 8786) ("\\flat" . 9837) ("\\forall" . 8704) ("\\frown" . 8994) ("\\ge" . 8805) ("\\geq" . 8805) ("\\geqq" . 8807) ("\\geqslant" . 8805) ("\\gets" . 8592) ("\\gg" . 8811) ("\\ggg" . 8921) ("\\gimel" . 8503) ("\\gnapprox" . 8935) ("\\gneq" . 8809) ("\\gneqq" . 8809) ("\\gnsim" . 8935) ("\\gtrapprox" . 8819) ("\\gtrdot" . 8919) ("\\gtreqless" . 8923) ("\\gtreqqless" . 8923) ("\\gtrless" . 8823) ("\\gtrsim" . 8819) ("\\gvertneqq" . 8809) ("\\hbar" . 8463) ("\\heartsuit" . 9829) ("\\hookleftarrow" . 8617) ("\\hookrightarrow" . 8618) ("\\iff" . 8660) ("\\imath" . 305) ("\\in" . 8712) ("\\infty" . 8734) ("\\int" . 8747) ("\\intercal" . 8890) ("\\langle" . 10216) ("\\lbrace" . 123) ("\\lbrack" . 91) ("\\lceil" . 8968) ("\\ldots" . 8230) ("\\le" . 8804) ("\\leadsto" . 8605) ("\\leftarrow" . 8592) ("\\leftarrowtail" . 8610) ("\\leftharpoondown" . 8637) ("\\leftharpoonup" . 8636) ("\\leftleftarrows" . 8647) ("\\leftrightarrow" . 8596) ("\\leftrightarrows" . 8646) ("\\leftrightharpoons" . 8651) ("\\leftrightsquigarrow" . 8621) ("\\leftthreetimes" . 8907) ("\\leq" . 8804) ("\\leqq" . 8806) ("\\leqslant" . 8804) ("\\lessapprox" . 8818) ("\\lessdot" . 8918) ("\\lesseqgtr" . 8922) ("\\lesseqqgtr" . 8922) ("\\lessgtr" . 8822) ("\\lesssim" . 8818) ("\\lfloor" . 8970) ("\\lhd" . 9665) ("\\rhd" . 9655) ("\\ll" . 8810) ("\\llcorner" . 8990) ("\\lnapprox" . 8934) ("\\lneq" . 8808) ("\\lneqq" . 8808) ("\\lnsim" . 8934) ("\\longleftarrow" . 8592) ("\\longleftrightarrow" . 8596) ("\\longmapsto" . 8614) ("\\longrightarrow" . 8594) ("\\looparrowleft" . 8619) ("\\looparrowright" . 8620) ("\\lozenge" . 10023) ("\\lq" . 8216) ("\\lrcorner" . 8991) ("\\ltimes" . 8905) ("\\lvertneqq" . 8808) ("\\maltese" . 10016) ("\\mapsto" . 8614) ("\\measuredangle" . 8737) ("\\mho" . 8487) ("\\mid" . 8739) ("\\models" . 8871) ("\\mp" . 8723) ("\\multimap" . 8888) ("\\nLeftarrow" . 8653) ("\\nLeftrightarrow" . 8654) ("\\nRightarrow" . 8655) ("\\nVDash" . 8879) ("\\nVdash" . 8878) ("\\nabla" . 8711) ("\\napprox" . 8777) ("\\natural" . 9838) ("\\ncong" . 8775) ("\\ne" . 8800) ("\\nearrow" . 8599) ("\\neg" . 172) ("\\neq" . 8800) ("\\nequiv" . 8802) ("\\newline" . 8232) ("\\nexists" . 8708) ("\\ngeq" . 8817) ("\\ngeqq" . 8817) ("\\ngeqslant" . 8817) ("\\ngtr" . 8815) ("\\ni" . 8715) ("\\nleftarrow" . 8602) ("\\nleftrightarrow" . 8622) ("\\nleq" . 8816) ("\\nleqq" . 8816) ("\\nleqslant" . 8816) ("\\nless" . 8814) ("\\nmid" . 8740) ("\\notin" . 8713) ("\\nparallel" . 8742) ("\\nprec" . 8832) ("\\npreceq" . 8928) ("\\nrightarrow" . 8603) ("\\nshortmid" . 8740) ("\\nshortparallel" . 8742) ("\\nsim" . 8769) ("\\nsimeq" . 8772) ("\\nsubset" . 8836) ("\\nsubseteq" . 8840) ("\\nsubseteqq" . 8840) ("\\nsucc" . 8833) ("\\nsucceq" . 8929) ("\\nsupset" . 8837) ("\\nsupseteq" . 8841) ("\\nsupseteqq" . 8841) ("\\ntriangleleft" . 8938) ("\\ntrianglelefteq" . 8940) ("\\ntriangleright" . 8939) ("\\ntrianglerighteq" . 8941) ("\\nvDash" . 8877) ("\\nvdash" . 8876) ("\\nwarrow" . 8598) ("\\odot" . 8857) ("\\oint" . 8750) ("\\ominus" . 8854) ("\\oplus" . 8853) ("\\oslash" . 8856) ("\\otimes" . 8855) ("\\par" . 8233) ("\\parallel" . 8741) ("\\partial" . 8706) ("\\perp" . 8869) ("\\pitchfork" . 8916) ("\\prec" . 8826) ("\\precapprox" . 8830) ("\\preceq" . 8828) ("\\precnapprox" . 8936) ("\\precnsim" . 8936) ("\\precsim" . 8830) ("\\prime" . 8242) ("\\prod" . 8719) ("\\propto" . 8733) ("\\qed" . 8718) ("\\qquad" . 10722) ("\\quad" . 9251) ("\\rangle" . 10217) ("\\rbrace" . 125) ("\\rbrack" . 93) ("\\rceil" . 8969) ("\\rfloor" . 8971) ("\\rightarrow" . 8594) ("\\rightarrowtail" . 8611) ("\\rightharpoondown" . 8641) ("\\rightharpoonup" . 8640) ("\\rightleftarrows" . 8644) ("\\rightleftharpoons" . 8652) ("\\rightrightarrows" . 8649) ("\\rightthreetimes" . 8908) ("\\risingdotseq" . 8787) ("\\rtimes" . 8906) ("\\times" . 215) ("\\sbs" . 65128) ("\\searrow" . 8600) ("\\setminus" . 8726) ("\\sharp" . 9839) ("\\shortmid" . 8739) ("\\shortparallel" . 8741) ("\\sim" . 8764) ("\\simeq" . 8771) ("\\smallamalg" . 8720) ("\\smallsetminus" . 8726) ("\\smallsmile" . 8995) ("\\smile" . 8995) ("\\spadesuit" . 9824) ("\\sphericalangle" . 8738) ("\\sqcap" . 8851) ("\\sqcup" . 8852) ("\\sqsubset" . 8847) ("\\sqsubseteq" . 8849) ("\\sqsupset" . 8848) ("\\sqsupseteq" . 8850) ("\\square" . 9633) ("\\squigarrowright" . 8669) ("\\star" . 8902) ("\\straightphi" . 966) ("\\subset" . 8834) ("\\subseteq" . 8838) ("\\subseteqq" . 8838) ("\\subsetneq" . 8842) ("\\subsetneqq" . 8842) ("\\succ" . 8827) ("\\succapprox" . 8831) ("\\succcurlyeq" . 8829) ("\\succeq" . 8829) ("\\succnapprox" . 8937) ("\\succnsim" . 8937) ("\\succsim" . 8831) ("\\sum" . 8721) ("\\supset" . 8835) ("\\supseteq" . 8839) ("\\supseteqq" . 8839) ("\\supsetneq" . 8843) ("\\supsetneqq" . 8843) ("\\surd" . 8730) ("\\swarrow" . 8601) ("\\therefore" . 8756) ("\\thickapprox" . 8776) ("\\thicksim" . 8764) ("\\to" . 8594) ("\\top" . 8868) ("\\triangle" . 9653) ("\\triangledown" . 9663) ("\\triangleleft" . 9667) ("\\trianglelefteq" . 8884) ("\\triangleq" . 8796) ("\\triangleright" . 9657) ("\\trianglerighteq" . 8885) ("\\twoheadleftarrow" . 8606) ("\\twoheadrightarrow" . 8608) ("\\ulcorner" . 8988) ("\\uparrow" . 8593) ("\\updownarrow" . 8597) ("\\upleftharpoon" . 8639) ("\\uplus" . 8846) ("\\uprightharpoon" . 8638) ("\\upuparrows" . 8648) ("\\urcorner" . 8989) ("\\u{i}" . 301) ("\\vDash" . 8872) ("\\varepsilon" . 949) ("\\varphi" . 966) ("\\varprime" . 8242) ("\\varpropto" . 8733) ("\\varrho" . 1009) ("\\varsigma" 962) ("\\vartriangleleft" . 8882) ("\\vartriangleright" . 8883) ("\\vdash" . 8866) ("\\vdots" . 8942) ("\\vee" . 8744) ("\\veebar" . 8891) ("\\vert" . 124) ("\\wedge" . 8743) ("\\wp" . 8472) ("\\wr" . 8768) ("\\Bbb{N}" . 8469) ("\\Bbb{P}" . 8473) ("\\Bbb{Q}" . 8474) ("\\Bbb{R}" . 8477) ("\\Bbb{Z}" . 8484) ("--" . 8211) ("---" . 8212) ("\\ordfeminine" . 170) ("\\ordmasculine" . 186) ("\\lambdabar" . 411) ("\\celsius" . 8451) ("\\textmu" . 181) ("\\textfractionsolidus" . 8260) ("\\textbigcircle" . 8413) ("\\textmusicalnote" . 9834) ("\\textdied" . 10013) ("\\textcolonmonetary" . 8353) ("\\textwon" . 8361) ("\\textnaira" . 8358) ("\\textpeso" . 8369) ("\\textlira" . 8356) ("\\textrecipe" . 8478) ("\\textinterrobang" . 8253) ("\\textpertenthousand" . 8241) ("\\textbaht" . 3647) ("\\textnumero" . 8470) ("\\textdiscount" . 8274) ("\\textestimated" . 8494) ("\\textopenbullet" . 9702) ("\\textlquill" . 8261) ("\\textrquill" . 8262) ("\\textcircledP" . 8471) ("\\textreferencemark" . 8251)))) nil [115876 127250])
-            ("tex--prettify-symbols-compose-p" function (:arguments ("_start" "end" "_match")) nil [127252 128125])
-            ("defvar-local" code nil nil [128150 128188])
-            ("tex-chktex-command" function nil nil [128190 128394])
-            ("tex-chktex" function (:arguments ("report-fn" "_args")) nil [128396 130195])
-            ("run-hooks" code nil nil [130197 130228])
-            ("tex-mode" package nil nil [130230 130249]))          
-      :file "tex-mode.el"
-      :pointmax 130277
-      :fsize 131125
-      :lastmodtime '(23525 29610 0 0)
-      :unmatched-syntax '((close-paren 115197 . 115198) (symbol 114975 . 114992) (open-paren 114974 . 114975) (close-paren 38768 . 38769) (symbol 38531 . 38548) (open-paren 38530 . 38531) (close-paren 24995 . 24996) (symbol 24450 . 24467) (open-paren 24449 . 24450) (close-paren 1184 . 1185) (symbol 1102 . 1119) (open-paren 1101 . 1102)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("picture" customgroup (:user-visible-flag t) nil [1194 1301])
-            ("picture-rectangle-ctl" variable (:default-value 43) nil [1303 1442])
-            ("picture-rectangle-ctr" variable (:default-value 43) nil [1443 1583])
-            ("picture-rectangle-cbr" variable (:default-value 43) nil [1584 1727])
-            ("picture-rectangle-cbl" variable (:default-value 43) nil [1728 1870])
-            ("picture-rectangle-v" variable (:default-value 124) nil [1871 2008])
-            ("picture-rectangle-h" variable (:default-value 45) nil [2009 2148])
-            ("picture-desired-column" variable nil nil [2181 2382])
-            ("picture-update-desired-column" function (:arguments ("adjust-to-current")) nil [2385 2923])
-            ("picture-beginning-of-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [2925 3267])
-            ("picture-end-of-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [3269 3698])
-            ("picture-forward-column" function
-               (:user-visible-flag t
-                :arguments ("arg" "interactive"))
-                nil [3700 4294])
-            ("picture-backward-column" function
-               (:user-visible-flag t
-                :arguments ("arg" "interactive"))
-                nil [4296 4553])
-            ("picture-move-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [4555 4939])
-            ("picture-vertical-step" variable nil nil [4941 5041])
-            ("picture-horizontal-step" variable (:default-value 1) nil [5043 5147])
-            ("picture-move-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5149 5360])
-            ("picture-movement-right" function (:user-visible-flag t) nil [5362 5501])
-            ("picture-movement-left" function (:user-visible-flag t) nil [5503 5641])
-            ("picture-movement-up" function (:user-visible-flag t) nil [5643 5777])
-            ("picture-movement-down" function (:user-visible-flag t) nil [5779 5916])
-            ("picture-movement-nw" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5918 6142])
-            ("picture-movement-ne" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [6144 6368])
-            ("picture-movement-sw" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [6370 6597])
-            ("picture-movement-se" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [6599 6826])
-            ("picture-set-motion" function (:arguments ("vert" "horiz")) nil [6828 7277])
-            ("picture-move" function nil nil [7279 7559])
-            ("picture-motion" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [7561 7987])
-            ("picture-motion-reverse" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [7989 8348])
-            ("picture-mouse-set-point" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [8350 9396])
-            ("picture-insert" function (:arguments ("ch" "arg")) nil [9436 10322])
-            ("picture-self-insert" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [10324 10768])
-            ("picture-clear-column" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [10805 11246])
-            ("picture-backward-clear-column" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [11248 11407])
-            ("picture-clear-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [11409 11969])
-            ("picture-newline" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [11971 12368])
-            ("picture-open-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [12370 12612])
-            ("picture-duplicate-line" function (:user-visible-flag t) nil [12614 12906])
-            ("picture-replace-match" function (:arguments ("newtext" "fixedcase" "literal")) nil [12947 13666])
-            ("picture-tab-chars" variable (:default-value "!-~") nil [13686 15086])
-            ("picture-set-tab-stops" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [15088 16364])
-            ("picture-tab-search" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [16366 17259])
-            ("picture-tab" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [17261 17757])
-            ("picture-killed-rectangle" variable nil nil [17783 17959])
-            ("picture-clear-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "killp"))
-                nil [17961 18405])
-            ("picture-clear-rectangle-to-register" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "register" "killp"))
-                nil [18407 18980])
-            ("picture-snarf-rectangle" function (:arguments ("start" "end" "killp")) nil [18982 19341])
-            ("picture-yank-rectangle" function
-               (:user-visible-flag t
-                :arguments ("insertp"))
-                nil [19343 19879])
-            ("picture-yank-at-click" function
-               (:user-visible-flag t
-                :arguments ("click" "arg"))
-                nil [19881 20300])
-            ("picture-yank-rectangle-from-register" function
-               (:user-visible-flag t
-                :arguments ("register" "insertp"))
-                nil [20302 21046])
-            ("picture-insert-rectangle" function (:arguments ("rectangle" "insertp")) nil [21048 21578])
-            ("picture-current-line" function nil nil [21580 21747])
-            ("picture-draw-rectangle" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [21749 23205])
-            ("defalias" code nil nil [23252 23296])
-            ("picture-mode-map" variable (:default-value (let ((map (make-keymap))) (define-key map [remap self-insert-command] (quote picture-self-insert)) (define-key map [remap self-insert-command] (quote picture-self-insert)) (define-key map [remap completion-separator-self-insert-command] (quote picture-self-insert)) (define-key map [remap completion-separator-self-insert-autofilling] (quote picture-self-insert)) (define-key map [remap forward-char] (quote picture-forward-column)) (define-key map [remap right-char] (quote picture-forward-column)) (define-key map [remap backward-char] (quote picture-backward-column)) (define-key map [remap left-char] (quote picture-backward-column)) (define-key map [remap delete-char] (quote picture-clear-column)) (define-key map [remap backward-delete-char-untabify] (quote picture-backward-clear-column)) (define-key map [remap delete-backward-char] (quote picture-backward-clear-column)) (define-key map [remap kill-line] (quote picture-clear-line)) (define-key map [remap open-line] (quote picture-open-line)) (define-key map [remap newline] (quote picture-newline)) (define-key map [remap newline-and-indent] (quote picture-duplicate-line)) (define-key map [remap next-line] (quote picture-move-down)) (define-key map [remap previous-line] (quote picture-move-up)) (define-key map [remap move-beginning-of-line] (quote picture-beginning-of-line)) (define-key map [remap move-end-of-line] (quote picture-end-of-line)) (define-key map [remap mouse-set-point] (quote picture-mouse-set-point)) (define-key map "" (quote picture-delete-char)) (define-key map "	" (quote picture-toggle-tab-state)) (define-key map "	" (quote picture-tab)) (define-key map "	" (quote picture-tab-search)) (define-key map "	" (quote picture-set-tab-stops)) (define-key map "" (quote picture-clear-rectangle)) (define-key map "" (quote picture-clear-rectangle-to-register)) (define-key map "" (quote picture-yank-rectangle)) (define-key map "" (quote picture-yank-rectangle-from-register)) (define-key map "" (quote picture-draw-rectangle)) (define-key map "" (quote picture-mode-exit)) (define-key map "" (quote picture-motion)) (define-key map "" (quote picture-motion-reverse)) (define-key map "<" (quote picture-movement-left)) (define-key map ">" (quote picture-movement-right)) (define-key map "^" (quote picture-movement-up)) (define-key map "." (quote picture-movement-down)) (define-key map "`" (quote picture-movement-nw)) (define-key map "'" (quote picture-movement-ne)) (define-key map "/" (quote picture-movement-sw)) (define-key map "\\" (quote picture-movement-se)) (define-key map [(control 99) left] (quote picture-movement-left)) (define-key map [(control 99) right] (quote picture-movement-right)) (define-key map [(control 99) up] (quote picture-movement-up)) (define-key map [(control 99) down] (quote picture-movement-down)) (define-key map [(control 99) home] (quote picture-movement-nw)) (define-key map [(control 99) prior] (quote picture-movement-ne)) (define-key map [(control 99) end] (quote picture-movement-sw)) (define-key map [(control 99) next] (quote picture-movement-se)) map)) nil [23298 26506])
-            ("picture-mode-hook" variable nil nil [26508 26692])
-            ("picture-mode-old-local-map" variable nil nil [26694 26729])
-            ("picture-mode-old-mode-name" variable nil nil [26730 26765])
-            ("picture-mode-old-major-mode" variable nil nil [26766 26802])
-            ("picture-mode-old-truncate-lines" variable nil nil [26803 26843])
-            ("picture-mode" function (:user-visible-flag t) nil [26860 31743])
-            ("defalias" code nil nil [31760 31798])
-            ("picture-mode-exit" function
-               (:user-visible-flag t
-                :arguments ("nostrip"))
-                nil [31800 32618])
-            ("picture" package nil nil [32620 32638]))          
-      :file "picture.el"
-      :pointmax 32665
-      :fsize 32664
-      :lastmodtime '(23525 29608 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("po-content-type-charset-alist" variable
-               (:constant-flag t
-                :default-value (quote (("ASCII" . undecided) ("ANSI_X3.4-1968" . undecided) ("US-ASCII" . undecided))))
-                nil [1180 1461])
-            ("po-find-charset" function (:arguments ("filename")) nil [1463 2944])
-            ("po-find-file-coding-system-guts" function (:arguments ("operation" "filename")) nil [2946 4730])
-            ("po-find-file-coding-system" function (:arguments ("arg-list")) nil [4747 5017])
-            ("po" package nil nil [5314 5327]))          
-      :file "po.el"
-      :pointmax 5349
-      :fsize 5349
-      :lastmodtime '(23525 29608 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("dom" include nil nil [1270 1284])
-            ("seq" include nil nil [1285 1299])
-            ("subr-x" include nil nil [1319 1336])
-            ("cl-lib" include nil nil [1381 1398])
-            ("skeleton" include nil nil [1359 1378])
-            ("sgml" customgroup (:user-visible-flag t) nil [1401 1537])
-            ("sgml-basic-offset" variable (:default-value 2) nil [1539 1668])
-            ("sgml-attribute-offset" variable nil nil [1670 2042])
-            ("sgml-xml-mode" variable nil nil [2044 2268])
-            ("sgml-transformation-function" variable (:default-value (quote identity)) nil [2270 2792])
-            ("put" code nil nil [2794 2885])
-            ("defvaralias" code nil nil [2886 2950])
-            ("sgml-mode-hook" variable nil nil [2952 3079])
-            ("sgml-specials" variable (:default-value (quote (34))) nil [3262 3947])
-            ("sgml-quick-keys" variable nil nil [3949 4119])
-            ("sgml-mode-map" variable (:default-value (let ((map (make-keymap)) (menu-map (make-sparse-keymap "SGML"))) (define-key map "	" (quote sgml-tags-invisible)) (define-key map "/" (quote sgml-slash)) (define-key map "" (quote sgml-name-char)) (define-key map "" (quote sgml-tag)) (define-key map "" (quote sgml-attributes)) (define-key map "" (quote sgml-skip-tag-backward)) (define-key map [3 left] (quote sgml-skip-tag-backward)) (define-key map "" (quote sgml-skip-tag-forward)) (define-key map [3 right] (quote sgml-skip-tag-forward)) (define-key map "" (quote sgml-delete-tag)) (define-key map "" (quote sgml-delete-tag)) (define-key map "?" (quote sgml-tag-help)) (define-key map "]" (quote sgml-close-tag)) (define-key map "/" (quote sgml-close-tag)) (define-key map "" (quote sgml-tag)) (define-key map "" (quote sgml-close-tag)) (define-key map "8" (quote sgml-name-8bit-mode)) (define-key map "" (quote sgml-validate)) (when sgml-quick-keys (define-key map "&" (quote sgml-name-char)) (define-key map "<" (quote sgml-tag)) (define-key map " " (quote sgml-auto-attributes)) (define-key map ">" (quote sgml-maybe-end-tag)) (when (memq 34 sgml-specials) (define-key map "\"" (quote sgml-name-self))) (when (memq 39 sgml-specials) (define-key map "'" (quote sgml-name-self)))) (let ((c 127) (map (nth 1 map))) (while (< (setq c (1+ c)) 256) (aset map c (quote sgml-maybe-name-self)))) (define-key map [menu-bar sgml] (cons "SGML" menu-map)) (define-key menu-map [sgml-validate] (quote ("Validate" . sgml-validate))) (define-key menu-map [sgml-name-8bit-mode] (quote ("Toggle 8 Bit Insertion" . sgml-name-8bit-mode))) (define-key menu-map [sgml-tags-invisible] (quote ("Toggle Tag Visibility" . sgml-tags-invisible))) (define-key menu-map [sgml-tag-help] (quote ("Describe Tag" . sgml-tag-help))) (define-key menu-map [sgml-delete-tag] (quote ("Delete Tag" . sgml-delete-tag))) (define-key menu-map [sgml-skip-tag-forward] (quote ("Forward Tag" . sgml-skip-tag-forward))) (define-key menu-map [sgml-skip-tag-backward] (quote ("Backward Tag" . sgml-skip-tag-backward))) (define-key menu-map [sgml-attributes] (quote ("Insert Attributes" . sgml-attributes))) (define-key menu-map [sgml-tag] (quote ("Insert Tag" . sgml-tag))) map)) nil [4121 6597])
-            ("sgml-make-syntax-table" function (:arguments ("specials")) nil [6599 7113])
-            ("sgml-mode-syntax-table" variable (:default-value (sgml-make-syntax-table sgml-specials)) nil [7115 7248])
-            ("sgml-tag-syntax-table" variable
-               (:constant-flag t
-                :default-value (let ((table (sgml-make-syntax-table sgml-specials))) (dolist (char (quote (40 41 123 125 91 93 36 37 38 42 43 47))) (modify-syntax-entry char "." table)) (unless (memq 39 sgml-specials) (modify-syntax-entry 39 "w" table)) table))
-                nil [7250 7650])
-            ("sgml-name-8bit-mode" variable nil nil [7652 7784])
-            ("sgml-char-names" variable (:default-value [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil "nbsp" "excl" "quot" "num" "dollar" "percnt" "amp" "apos" "lpar" "rpar" "ast" "plus" "comma" "hyphen" "period" "sol" nil nil nil nil nil nil nil nil nil nil "colon" "semi" "lt" "eq" "gt" "quest" "commat" nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil "lsqb" nil "rsqb" "uarr" "lowbar" "lsquo" nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil "lcub" "verbar" "rcub" "tilde" nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil "nbsp" "iexcl" "cent" "pound" "curren" "yen" "brvbar" "sect" "uml" "copy" "ordf" "laquo" "not" "shy" "reg" "macr" "ring" "plusmn" "sup2" "sup3" "acute" "micro" "para" "middot" "cedil" "sup1" "ordm" "raquo" "frac14" "frac12" "frac34" "iquest" "Agrave" "Aacute" "Acirc" "Atilde" "Auml" "Aring" "AElig" "Ccedil" "Egrave" "Eacute" "Ecirc" "Euml" "Igrave" "Iacute" "Icirc" "Iuml" "ETH" "Ntilde" "Ograve" "Oacute" "Ocirc" "Otilde" "Ouml" nil "Oslash" "Ugrave" "Uacute" "Ucirc" "Uuml" "Yacute" "THORN" "szlig" "agrave" "aacute" "acirc" "atilde" "auml" "aring" "aelig" "ccedil" "egrave" "eacute" "ecirc" "euml" "igrave" "iacute" "icirc" "iuml" "eth" "ntilde" "ograve" "oacute" "ocirc" "otilde" "ouml" "divide" "oslash" "ugrave" "uacute" "ucirc" "uuml" "yacute" "thorn" "yuml"]) nil [7786 9480])
-            ("put" code nil nil [9482 9525])
-            ("sgml-char-names-table" variable (:default-value (let ((table (make-char-table (quote sgml-table))) (i 32) elt) (while (< i 128) (setq elt (aref sgml-char-names i)) (if elt (aset table (make-char (quote latin-iso8859-1) i) elt)) (setq i (1+ i))) table)) nil [9527 9896])
-            ("sgml-validate-command" variable (:default-value (cond ((executable-find "tidy") "tidy --gnu-emacs yes -utf8 -e -q") ((executable-find "nsgmls") "nsgmls -s") ((executable-find "onsgmls") "onsgmls -s") (t "Install (o)nsgmls, tidy, or some other SGML validator, and set `sgml-validate-command'"))) nil [9898 10821])
-            ("sgml-saved-validate-command" variable nil nil [10823 10917])
-            ("sgml-slash-distance" variable (:default-value 1000) nil [11016 11173])
-            ("sgml-namespace-re" variable
-               (:constant-flag t
-                :default-value "[_[:alpha:]][-_.[:alnum:]]*")
-                nil [11175 11233])
-            ("sgml-name-re" variable
-               (:constant-flag t
-                :default-value "[_:[:alpha:]][-_.:[:alnum:]]*")
-                nil [11234 11289])
-            ("sgml-tag-name-re" variable
-               (:constant-flag t
-                :default-value (concat "<\\([!/?]?" sgml-name-re "\\)"))
-                nil [11290 11358])
-            ("sgml-attrs-re" variable
-               (:constant-flag t
-                :default-value "\\(?:[^\"'/><]\\|\"[^\"]*\"\\|'[^']*'\\)*")
-                nil [11359 11427])
-            ("sgml-start-tag-regex" variable
-               (:constant-flag t
-                :default-value (concat "<" sgml-name-re sgml-attrs-re))
-                nil [11428 11601])
-            ("sgml-namespace" variable
-               (:default-value (quote ((t (:inherit font-lock-builtin-face))))
-                :type "face")
-                nil [11603 11759])
-            ("sgml-namespace-face" variable (:default-value (quote sgml-namespace)) nil [11760 11804])
-            ("sgml-font-lock-keywords-1" variable
-               (:constant-flag t
-                :default-value (\` (((\, (concat "<\\([!?]" sgml-name-re "\\)")) 1 font-lock-keyword-face) ((\, (concat "</?\\(" sgml-namespace-re "\\)\\(?::\\(" sgml-name-re "\\)\\)?")) (1 (if (match-end 2) sgml-namespace-face font-lock-function-name-face)) (2 font-lock-function-name-face nil t)) ((\, (concat "\\(?:^\\|[ 	]\\)\\(" sgml-namespace-re "\\)\\(?::\\(" sgml-name-re "\\)\\)?=[\"']")) (1 (if (match-end 2) sgml-namespace-face font-lock-variable-name-face)) (2 font-lock-variable-name-face nil t)) ((\, (concat "[&%]" sgml-name-re ";?")) . font-lock-variable-name-face))))
-                nil [11818 12864])
-            ("sgml-font-lock-keywords-2" variable
-               (:constant-flag t
-                :default-value (append sgml-font-lock-keywords-1 (quote ((eval cons (concat "<" (regexp-opt (mapcar (quote car) sgml-tag-face-alist) t) "\\([ 	][^>]*\\)?>\\([^<]+\\)</\\1>") (quote (3 (cdr (assoc-string (match-string 1) sgml-tag-face-alist t)) prepend)))))))
-                nil [12866 13168])
-            ("sgml-font-lock-keywords" variable (:default-value sgml-font-lock-keywords-1) nil [13281 13410])
-            ("sgml-syntax-propertize-rules" variable
-               (:constant-flag t
-                :default-value (syntax-propertize-precompile-rules ("\\(<\\)!--" (1 "< b")) ("--[ 	
-]*\\(>\\)" (1 "> b")) ("\\(<\\)[?!]" (1 (prog1 "|>" (sgml-syntax-propertize-inside end)))) ("\"" (0 (if (prog1 (zerop (car (syntax-ppss (match-beginning 0)))) (goto-char (match-end 0))) (string-to-syntax "."))))))
-                nil [13432 14253])
-            ("sgml-syntax-propertize" function (:arguments ("start" "end")) nil [14256 14479])
-            ("sgml-syntax-propertize-inside" function (:arguments ("end")) nil [14481 15043])
-            ("sgml-face-tag-alist" variable nil nil [15057 15133])
-            ("sgml-tag-face-alist" variable nil nil [15135 15386])
-            ("sgml-display-text" variable nil nil [15388 15488])
-            ("sgml-tags-invisible" variable nil nil [15502 15534])
-            ("sgml-tag-alist" variable (:default-value (quote (("![" ("ignore" t) ("include" t)) ("!attlist") ("!doctype") ("!element") ("!entity")))) nil [15536 16322])
-            ("put" code nil nil [16323 16368])
-            ("sgml-tag-help" variable (:default-value (quote (("!" . "Empty declaration for comment") ("![" . "Embed declarations with parser directive") ("!attlist" . "Tag attributes declaration") ("!doctype" . "Document type (DTD) declaration") ("!element" . "Tag declaration") ("!entity" . "Entity (macro) declaration")))) nil [16370 16828])
-            ("sgml-empty-tags" variable nil nil [16830 16913])
-            ("sgml-unclosed-tags" variable nil nil [16915 17019])
-            ("sgml-xml-guess" function nil nil [17021 17698])
-            ("v2" variable nil nil [17700 17711])
-            ("sgml-comment-indent-new-line" function (:arguments ("soft")) nil [17736 17943])
-            ("sgml-mode-facemenu-add-face-function" function (:arguments ("face" "_end")) nil [17945 18630])
-            ("sgml-fill-nobreak" function nil nil [18632 19069])
-            ("tildify-space-string" variable nil nil [19071 19100])
-            ("tildify-foreach-region-function" variable nil nil [19101 19141])
-            ("define-derived-mode" code nil nil [19158 23406])
-            ("sgml-comment-indent" function nil nil [23408 23480])
-            ("sgml-slash" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [23482 23901])
-            ("sgml-slash-matching" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [23903 25199])
-            ("sgml-name-char" function
-               (:user-visible-flag t
-                :arguments ("char"))
-                nil [25409 25872])
-            ("sgml-namify-char" function (:user-visible-flag t) nil [25874 26382])
-            ("sgml-name-self" function (:user-visible-flag t) nil [26384 26536])
-            ("sgml-maybe-name-self" function (:user-visible-flag t) nil [26538 26755])
-            ("sgml-name-8bit-mode" function (:user-visible-flag t) nil [26757 27056])
-            ("sgml-tag-last" variable nil nil [27307 27333])
-            ("sgml-tag-history" variable nil nil [27334 27363])
-            ("define-skeleton" code nil nil [27364 28817])
-            ("skeleton-read" function (:prototype-flag t) nil [28819 28855])
-            ("sgml-attributes" function
-               (:user-visible-flag t
-                :arguments ("tag" "quiet"))
-                nil [28857 30293])
-            ("sgml-auto-attributes" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [30295 30848])
-            ("sgml-tag-help" function
-               (:user-visible-flag t
-                :arguments ("tag"))
-                nil [30850 31685])
-            ("sgml-maybe-end-tag" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [31687 31952])
-            ("sgml-skip-tag-backward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [31954 32861])
-            ("sgml-forward-sexp" function (:arguments ("n")) nil [32863 33684])
-            ("sgml-electric-tag-pair-overlays" variable nil nil [33686 33730])
-            ("sgml-electric-tag-pair-timer" variable nil nil [33731 33772])
-            ("sgml-electric-tag-pair-before-change-function" function (:arguments ("_beg" "end")) nil [33774 35914])
-            ("sgml-electric-tag-pair-flush-overlays" function nil nil [35916 36065])
-            ("define-minor-mode" code nil nil [36067 37061])
-            ("sgml-skip-tag-forward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [37064 38377])
-            ("sgml-looking-back-at" function (:arguments ("str")) nil [38379 38611])
-            ("sgml-delete-tag" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [38613 40195])
-            ("or" code nil nil [40273 40497])
-            ("sgml-tags-invisible" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [40499 42033])
-            ("sgml-cursor-sensor" function (:arguments ("window" "x" "dir")) nil [42035 42873])
-            ("sgml-validate" function
-               (:user-visible-flag t
-                :arguments ("command"))
-                nil [42877 43598])
-            ("sgml-at-indentation-p" function nil nil [43600 43776])
-            ("sgml-lexical-context" function (:arguments ("limit")) nil [43778 46260])
-            ("sgml-beginning-of-tag" function (:arguments ("only-immediate")) nil [46262 46720])
-            ("sgml-value" function (:arguments ("alist")) nil [46722 47555])
-            ("sgml-quote" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "unquotep"))
-                nil [47557 48349])
-            ("sgml-pretty-print" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [48351 49223])
-            ("cl-defstruct" code nil nil [49239 49349])
-            ("sgml-parse-tag-name" function nil nil [49351 49520])
-            ("sgml-tag-text-p" function (:arguments ("start" "end")) nil [49522 49913])
-            ("sgml--find-<>-backward" function (:arguments ("limit")) nil [49915 50341])
-            ("sgml-parse-tag-backward" function (:arguments ("limit")) nil [50343 53647])
-            ("sgml-get-context" function (:arguments ("until")) nil [53649 57270])
-            ("sgml-show-context" function
-               (:user-visible-flag t
-                :arguments ("full"))
-                nil [57272 57677])
-            ("sgml-close-tag" function (:user-visible-flag t) nil [57703 58342])
-            ("sgml-empty-tag-p" function (:arguments ("tag-name")) nil [58344 58526])
-            ("sgml-unclosed-tag-p" function (:arguments ("tag-name")) nil [58528 58731])
-            ("sgml-calculate-indent" function (:arguments ("lcon")) nil [58734 62957])
-            ("sgml-indent-line" function (:user-visible-flag t) nil [62959 63335])
-            ("sgml-guess-indent" function (:user-visible-flag t) nil [63337 63845])
-            ("sgml-parse-dtd" function nil nil [63847 64504])
-            ("html-mode-hook" variable nil nil [64521 64703])
-            ("html-quick-keys" variable (:default-value sgml-quick-keys) nil [64705 64909])
-            ("html-mode-map" variable (:default-value (let ((map (make-sparse-keymap)) (menu-map (make-sparse-keymap "HTML"))) (set-keymap-parent map sgml-mode-map) (define-key map "6" (quote html-headline-6)) (define-key map "5" (quote html-headline-5)) (define-key map "4" (quote html-headline-4)) (define-key map "3" (quote html-headline-3)) (define-key map "2" (quote html-headline-2)) (define-key map "1" (quote html-headline-1)) (define-key map "
" (quote html-paragraph)) (define-key map "
-" (quote html-line)) (define-key map "-" (quote html-horizontal-rule)) (define-key map "o" (quote html-ordered-list)) (define-key map "u" (quote html-unordered-list)) (define-key map "r" (quote html-radio-buttons)) (define-key map "c" (quote html-checkboxes)) (define-key map "l" (quote html-list-item)) (define-key map "h" (quote html-href-anchor)) (define-key map "n" (quote html-name-anchor)) (define-key map "i" (quote html-image)) (when html-quick-keys (define-key map "-" (quote html-horizontal-rule)) (define-key map "o" (quote html-ordered-list)) (define-key map "u" (quote html-unordered-list)) (define-key map "r" (quote html-radio-buttons)) (define-key map "c" (quote html-checkboxes)) (define-key map "l" (quote html-list-item)) (define-key map "h" (quote html-href-anchor)) (define-key map "n" (quote html-name-anchor)) (define-key map "i" (quote html-image))) (define-key map "" (quote html-autoview-mode)) (define-key map "" (quote browse-url-of-buffer)) (define-key map [menu-bar html] (cons "HTML" menu-map)) (define-key menu-map [html-autoview-mode] (quote ("Toggle Autoviewing" . html-autoview-mode))) (define-key menu-map [browse-url-of-buffer] (quote ("View Buffer Contents" . browse-url-of-buffer))) (define-key menu-map [nil] (quote ("--"))) (define-key menu-map "3" (quote ("Heading 3" . html-headline-3))) (define-key menu-map "2" (quote ("Heading 2" . html-headline-2))) (define-key menu-map "1" (quote ("Heading 1" . html-headline-1))) (define-key menu-map "l" (quote ("Radio Buttons" . html-radio-buttons))) (define-key menu-map "c" (quote ("Checkboxes" . html-checkboxes))) (define-key menu-map "l" (quote ("List Item" . html-list-item))) (define-key menu-map "u" (quote ("Unordered List" . html-unordered-list))) (define-key menu-map "o" (quote ("Ordered List" . html-ordered-list))) (define-key menu-map "-" (quote ("Horizontal Rule" . html-horizontal-rule))) (define-key menu-map "
-" (quote ("Line Break" . html-line))) (define-key menu-map "
" (quote ("Paragraph" . html-paragraph))) (define-key menu-map "i" (quote ("Image" . html-image))) (define-key menu-map "h" (quote ("Href Anchor" . html-href-anchor))) (define-key menu-map "n" (quote ("Name Anchor" . html-name-anchor))) map)) nil [64911 67909])
-            ("html-face-tag-alist" variable (:default-value (quote ((bold . "b") (italic . "i") (underline . "u") (mode-line . "rev")))) nil [67911 68072])
-            ("html-tag-face-alist" variable (:default-value (quote (("b" . bold) ("big" . bold) ("blink" . highlight) ("cite" . italic) ("em" . italic) ("h1" bold underline) ("h2" bold-italic underline) ("h3" italic underline) ("h4" . underline) ("h5" . underline) ("h6" . underline) ("i" . italic) ("rev" . mode-line) ("s" . underline) ("small" . default) ("strong" . bold) ("title" bold underline) ("tt" . default) ("u" . underline) ("var" . italic)))) nil [68074 68618])
-            ("html-display-text" variable (:default-value (quote ((img . "[/]") (hr . "----------") (li . "o ")))) nil [68620 68753])
-            ("html-tag-alist" variable (:default-value (let* ((1-7 (quote (("1") ("2") ("3") ("4") ("5") ("6") ("7")))) (1-9 (\` ((\,@ 1-7) ("8") ("9")))) (align (quote (("align" ("left") ("center") ("right"))))) (ialign (quote (("align" ("top") ("middle") ("bottom") ("left") ("right"))))) (valign (quote (("top") ("middle") ("bottom") ("baseline")))) (rel (quote (("next") ("previous") ("parent") ("subdocument") ("made")))) (href (quote ("href" ("ftp:") ("file:") ("finger:") ("gopher:") ("http:") ("mailto:") ("news:") ("rlogin:") ("telnet:") ("tn3270:") ("wais:") ("/cgi-bin/")))) (name (quote ("name"))) (link (\` ((\, href) ("rel" (\,@ rel)) ("rev" (\,@ rel)) ("title")))) (list (quote ((nil n ("List item: " "<li>" str (if sgml-xml-mode "</li>") n))))) (shape (quote (("shape" ("rect") ("circle") ("poly") ("default"))))) (cell (\` (t (\,@ align) ("valign" (\,@ valign)) ("colspan" (\,@ 1-9)) ("rowspan" (\,@ 1-9)) ("nowrap" t)))) (cellhalign (quote (("align" ("left") ("center") ("right") ("justify") ("char")) ("char") ("charoff")))) (cellvalign (quote (("valign" ("top") ("middle") ("bottom") ("baseline")))))) (\` (("a" (\, name) (\,@ link)) ("area" t (\,@ shape) ("coords") ("href") ("nohref" "nohref") ("alt") ("tabindex") ("accesskey") ("onfocus") ("onblur")) ("base" t (\,@ href)) ("col" t (\,@ cellhalign) (\,@ cellvalign) ("span") ("width")) ("colgroup" n (\,@ cellhalign) (\,@ cellvalign) ("span") ("width")) ("dir" (\,@ list)) ("figcaption") ("figure" n) ("font" nil "size" ("-1") ("+1") ("-2") ("+2") (\,@ 1-7)) ("form" (n _ n "<input type=\"submit\" value=\"\"" (if sgml-xml-mode " />" ">")) ("action" (\,@ (cdr href))) ("method" ("get") ("post"))) ("h1" (\,@ align)) ("h2" (\,@ align)) ("h3" (\,@ align)) ("h4" (\,@ align)) ("h5" (\,@ align)) ("h6" (\,@ align)) ("hr" t ("size" (\,@ 1-9)) ("width") ("noshade" t) (\,@ align)) ("iframe" n (\,@ ialign) ("longdesc") ("name") ("src") ("frameborder" ("1") ("0")) ("marginwidth") ("marginheight") ("scrolling" ("yes") ("no") ("auto")) ("height") ("width")) ("img" t ("align" (\,@ valign) ("texttop") ("absmiddle") ("absbottom")) ("src") ("alt") ("width" "1") ("height" "1") ("border" "1") ("vspace" "1") ("hspace" "1") ("ismap" t)) ("input" t (\, name) ("accept") ("alt") ("autocomplete" ("on") ("off")) ("autofocus" t) ("checked" t) ("dirname") ("disabled" t) ("form") ("formaction") ("formenctype" ("application/x-www-form-urlencoded") ("multipart/form-data") ("text/plain")) ("formmethod" ("get") ("post")) ("formnovalidate" t) ("formtarget" ("_blank") ("_self") ("_parent") ("_top")) ("height") ("inputmode") ("list") ("max") ("maxlength") ("min") ("minlength") ("multiple" t) ("pattern") ("placeholder") ("readonly" t) ("required" t) ("size") ("src") ("step") ("type" ("hidden") ("text") ("search") ("tel") ("url") ("email") ("password") ("date") ("time") ("number") ("range") ("color") ("checkbox") ("radio") ("file") ("submit") ("image") ("reset") ("button")) ("value") ("width")) ("link" t (\,@ link)) ("menu" (\,@ list)) ("ol" (\,@ list) ("type" ("A") ("a") ("I") ("i") ("1"))) ("p" t (\,@ align)) ("select" (nil n ("Text: " "<option>" str (if sgml-xml-mode "</option>") n)) (\, name) ("size" (\,@ 1-9)) ("multiple" t)) ("table" (nil n ((completing-read "Cell kind: " (quote (("td") ("th"))) nil t "t") "<tr><" str 62 _ (if sgml-xml-mode (concat "<" str "></tr>")) n)) ("border" t (\,@ 1-9)) ("width" "10") ("cellpadding")) ("tbody" n (\,@ cellhalign) (\,@ cellvalign)) ("td" (\,@ cell)) ("textarea" (\, name) ("rows" (\,@ 1-9)) ("cols" (\,@ 1-9))) ("tfoot" n (\,@ cellhalign) (\,@ cellvalign)) ("th" (\,@ cell)) ("thead" n (\,@ cellhalign) (\,@ cellvalign)) ("ul" (\,@ list) ("type" ("disc") ("circle") ("square"))) (\,@ sgml-tag-alist) ("abbr") ("acronym") ("address") ("array" (nil n ("Item: " "<item>" str (if sgml-xml-mode "</item>") n)) "align") ("article" n) ("aside" n) ("au") ("audio" n ("src") ("crossorigin" ("anonymous") ("use-credentials")) ("preload" ("none") ("metadata") ("auto")) ("autoplay" "autoplay") ("mediagroup") ("loop" "loop") ("muted" "muted") ("controls" "controls")) ("b") ("bdi") ("bdo" nil ("lang") ("dir" ("ltr") ("rtl"))) ("big") ("blink") ("blockquote" n ("cite")) ("body" n ("background" ".gif") ("bgcolor" "#") ("text" "#") ("link" "#") ("alink" "#") ("vlink" "#")) ("box" (nil _ "<over>" _ (if sgml-xml-mode "</over>"))) ("br" t ("clear" ("left") ("right"))) ("button" nil ("name") ("value") ("type" ("submit") ("reset") ("button")) ("disabled" "disabled") ("tabindex") ("accesskey") ("onfocus") ("onblur")) ("canvas" n ("width") ("height")) ("caption" ("valign" ("top") ("bottom"))) ("center" n) ("cite") ("code" n) ("datalist" n) ("dd" (\, (not sgml-xml-mode))) ("del" nil ("cite") ("datetime")) ("dfn") ("div") ("dl" (nil n ("Term: " "<dt>" str (if sgml-xml-mode "</dt>") "<dd>" _ (if sgml-xml-mode "</dd>") n))) ("dt" (t _ (if sgml-xml-mode "</dt>") "<dd>" (if sgml-xml-mode "</dd>") n)) ("em") ("embed" t ("src") ("type") ("width") ("height")) ("fieldset" n) ("fn" "id" "fn") ("footer" n) ("frame" t ("longdesc") ("name") ("src") ("frameborder" ("1") ("0")) ("marginwidth") ("marginheight") ("noresize" "noresize") ("scrolling" ("yes") ("no") ("auto"))) ("frameset" n ("rows") ("cols") ("onload") ("onunload")) ("head" n) ("header" n) ("hgroup" n) ("html" (n "<head>
-" "<title>" (setq str (read-string "Title: ")) "</title>
-" "</head>
-" "<body>
-<h1>" str "</h1>
-" _ "
-<address>
-<a href=\"mailto:" user-mail-address "\">" (user-full-name) "</a>
-</address>
-" "</body>")) ("i") ("ins" nil ("cite") ("datetime")) ("isindex" t ("action") ("prompt")) ("kbd") ("label" nil ("for") ("accesskey") ("onfocus") ("onblur")) ("lang") ("legend" nil ("accesskey")) ("li" (\, (not sgml-xml-mode))) ("main" n) ("map" n ("name")) ("mark") ("math" n) ("meta" t ("http-equiv") ("name") ("content") ("scheme")) ("meter" nil ("value") ("min") ("max") ("low") ("high") ("optimum")) ("nav" n) ("nobr") ("noframes" n) ("noscript" n) ("object" n ("declare" "declare") ("classid") ("codebase") ("data") ("type") ("codetype") ("archive") ("standby") ("height") ("width") ("usemap") ("name") ("tabindex")) ("optgroup" n ("name") ("size") ("multiple" "multiple") ("disabled" "disabled") ("tabindex") ("onfocus") ("onblur") ("onchange")) ("option" t ("value") ("label") ("selected" t)) ("output" nil ("for") ("form") ("name")) ("over" t) ("param" t ("name") ("value") ("valuetype" ("data") ("ref") ("object")) ("type")) ("person") ("pre" n) ("progress" nil ("value") ("max")) ("q" nil ("cite")) ("rev") ("rp" t) ("rt" t) ("ruby") ("s") ("samp") ("script" nil ("charset") ("type") ("src") ("defer" "defer")) ("section" n) ("small") ("source" t ("src") ("type") ("media")) ("span" nil ("class" ("builtin") ("comment") ("constant") ("function-name") ("keyword") ("string") ("type") ("variable-name") ("warning"))) ("strong") ("style" n ("type") ("media") ("title")) ("sub") ("summary") ("sup") ("time" nil ("datetime")) ("title") ("tr" t) ("track" t ("kind" ("subtitles") ("captions") ("descriptions") ("chapters") ("metadata")) ("src") ("srclang") ("label") ("default")) ("tt") ("u") ("var") ("video" n ("src") ("crossorigin" ("anonymous") ("use-credentials")) ("poster") ("preload" ("none") ("metadata") ("auto")) ("autoplay" "autoplay") ("mediagroup") ("loop" "loop") ("muted" "muted") ("controls" "controls") ("width") ("height")) ("wbr" t))))) nil [68757 77555])
-            ("html-tag-help" variable (:default-value (\` ((\,@ sgml-tag-help) ("a" . "Anchor of point or link elsewhere") ("abbr" . "Abbreviation") ("acronym" . "Acronym") ("address" . "Formatted mail address") ("area" . "Region of an image map") ("array" . "Math array") ("article" . "An independent part of document or site") ("aside" . "Secondary content related to surrounding content (e.g. page or article)") ("au" . "Author") ("audio" . "Sound or audio stream") ("b" . "Bold face") ("base" . "Base address for URLs") ("bdi" . "Text isolated for bidirectional formatting") ("bdo" . "Override text directionality") ("big" . "Font size") ("blink" . "Blinking text") ("blockquote" . "Indented quotation") ("body" . "Document body") ("box" . "Math fraction") ("br" . "Line break") ("button" . "Clickable button") ("canvas" . "Script generated graphics canvas") ("caption" . "Table caption") ("center" . "Centered text") ("changed" . "Change bars") ("cite" . "Citation of a document") ("code" . "Formatted source code") ("col" . "Group of attribute specifications for table columns") ("colgroup" . "Group of columns") ("datalist" . "A set of predefined options") ("dd" . "Definition of term") ("del" . "Deleted text") ("dfn" . "Defining instance of a term") ("dir" . "Directory list (obsolete)") ("div" . "Generic block-level container") ("dl" . "Definition list") ("dt" . "Term to be defined") ("em" . "Emphasized") ("embed" . "Embedded data in foreign format") ("fieldset" . "Group of related controls and labels") ("fig" . "Figure") ("figa" . "Figure anchor") ("figcaption" . "Caption for a figure") ("figd" . "Figure description") ("figt" . "Figure text") ("figure" . "Self-contained content, often with a caption") ("fn" . "Footnote") ("font" . "Font size") ("footer" . "Footer of a section") ("form" . "Form with input fields") ("frame" . "Frame in which another HTML document can be displayed") ("frameset" . "Container for frames") ("group" . "Document grouping") ("h1" . "Most important section headline") ("h2" . "Important section headline") ("h3" . "Section headline") ("h4" . "Minor section headline") ("h5" . "Unimportant section headline") ("h6" . "Least important section headline") ("head" . "Document header") ("header" . "Header of a section") ("hgroup" . "Group of headings - h1-h6 elements") ("hr" . "Horizontal rule") ("html" . "HTML Document") ("i" . "Italic face") ("iframe" . "Inline frame with a nested browsing context") ("img" . "Graphic image") ("input" . "Form input field") ("ins" . "Inserted text") ("isindex" . "Input field for index search") ("kbd" . "Keyboard example face") ("label" . "Caption for a user interface item") ("lang" . "Natural language") ("legend" . "Caption for a fieldset") ("li" . "List item") ("link" . "Link relationship") ("main" . "Main content of the document body") ("map" . "Image map (a clickable link area") ("mark" . "Highlighted text") ("math" . "Math formula") ("menu" . "List of commands") ("meta" . "Document properties") ("meter" . "Scalar measurement within a known range") ("mh" . "Form mail header") ("nav" . "Group of navigational links") ("nextid" . "Allocate new id") ("nobr" . "Text without line break") ("noframes" . "Content for user agents that don't support frames") ("noscript" . "Alternate content for when a script isn't executed") ("object" . "External resource") ("ol" . "Ordered list") ("optgroup" . "Group of options") ("option" . "Selection list item") ("output" . "Result of a calculation or user action") ("over" . "Math fraction rule") ("p" . "Paragraph start") ("panel" . "Floating panel") ("param" . "Parameters for an object") ("person" . "Person's name") ("pre" . "Preformatted fixed width text") ("progress" . "Completion progress of a task") ("q" . "Quotation") ("rev" . "Reverse video") ("rp" . "Fallback text for when ruby annotations aren't supported") ("rt" . "Ruby text component of a ruby annotation") ("ruby" . "Ruby annotation") ("s" . "Strikeout") ("samp" . "Sample text") ("script" . "Executable script within a document") ("section" . "Section of a document") ("select" . "Selection list") ("small" . "Font size") ("source" . "Media resource for media elements") ("sp" . "Nobreak space") ("span" . "Generic inline container") ("strong" . "Standout text") ("style" . "Style information") ("sub" . "Subscript") ("summary" . "Summary, caption, or legend") ("sup" . "Superscript") ("table" . "Table with rows and columns") ("tb" . "Table vertical break") ("tbody" . "Table body") ("td" . "Table data cell") ("textarea" . "Form multiline edit area") ("tfoot" . "Table foot") ("th" . "Table header cell") ("thead" . "Table head") ("time" . "Content with optional machine-readable timestamp") ("title" . "Document title") ("tr" . "Table row separator") ("track" . "Timed text track for media elements") ("tt" . "Typewriter face") ("u" . "Underlined text") ("ul" . "Unordered list") ("var" . "Math variable face") ("video" . "Video or movie") ("wbr" . "Enable <br> within <nobr>")))) nil [77557 83155])
-            ("outline-regexp" variable nil nil [83157 83180])
-            ("outline-heading-end-regexp" variable nil nil [83181 83216])
-            ("outline-level" variable nil nil [83217 83239])
-            ("html-current-defun-name" function nil nil [83241 83563])
-            ("html--buffer-classes-cache" variable nil nil [83565 83830])
-            ("make-variable-buffer-local" code nil nil [83831 83887])
-            ("html--buffer-ids-cache" variable nil nil [83889 84146])
-            ("make-variable-buffer-local" code nil nil [84147 84199])
-            ("html-current-buffer-classes" function nil nil [84201 84918])
-            ("html-current-buffer-ids" function nil nil [84920 85599])
-            ("define-derived-mode" code nil nil [85618 88987])
-            ("html-imenu-regexp" variable (:default-value "\\s-*<h\\([1-9]\\)[^
-<>]*>\\(<[^
-<>]*>\\)*\\s-*\\([^
-<>]*\\)") nil [88989 89324])
-            ("html-imenu-index" function nil nil [89326 89774])
-            ("define-minor-mode" code nil nil [89776 90375])
-            ("define-skeleton" code nil nil [90379 90525])
-            ("define-skeleton" code nil nil [90527 90700])
-            ("define-skeleton" code nil nil [90702 90792])
-            ("define-skeleton" code nil nil [90794 90884])
-            ("define-skeleton" code nil nil [90886 90976])
-            ("define-skeleton" code nil nil [90978 91068])
-            ("define-skeleton" code nil nil [91070 91160])
-            ("define-skeleton" code nil nil [91162 91252])
-            ("define-skeleton" code nil nil [91254 91368])
-            ("define-skeleton" code nil nil [91370 91504])
-            ("define-skeleton" code nil nil [91506 91604])
-            ("define-skeleton" code nil nil [91606 91738])
-            ("define-skeleton" code nil nil [91740 91876])
-            ("define-skeleton" code nil nil [91878 92000])
-            ("define-skeleton" code nil nil [92002 92122])
-            ("define-skeleton" code nil nil [92124 92835])
-            ("define-skeleton" code nil nil [92837 93614])
-            ("define-skeleton" code nil nil [93616 93884])
-            ("define-skeleton" code nil nil [93886 94339])
-            ("sgml-mode" package nil nil [94341 94361]))          
-      :file "sgml-mode.el"
-      :pointmax 94390
-      :fsize 94394
-      :lastmodtime '(23525 29610 0 0)
-      :unmatched-syntax '((close-paren 14253 . 14254) (symbol 13413 . 13429) (open-paren 13412 . 13413) (close-paren 1398 . 1399) (symbol 1339 . 1356) (open-paren 1338 . 1339) (close-paren 1336 . 1337) (symbol 1301 . 1318) (open-paren 1300 . 1301)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ispell" include nil nil [1418 1435])
-            ("cl-lib" include nil nil [1455 1472])
-            ("flyspell" customgroup (:user-visible-flag t) nil [1700 1831])
-            ("flyspell-highlight-flag" variable (:default-value t) nil [2058 2246])
-            ("flyspell-mark-duplications-flag" variable (:default-value t) nil [2248 2576])
-            ("flyspell-mark-duplications-exceptions" variable (:default-value (quote ((nil "that" "had") ("\\`francais" "nous" "vous")))) nil [2578 3316])
-            ("flyspell-sort-corrections" variable nil nil [3318 3591])
-            ("flyspell-sort-corrections-function" variable (:default-value (quote flyspell-sort-corrections-alphabetically)) nil [3593 3986])
-            ("flyspell-sort-corrections-alphabetically" function (:arguments ("corr1" "corr2" "_")) nil [3988 4076])
-            ("flyspell-sort" function (:arguments ("corrs" "word")) nil [4078 4273])
-            ("flyspell-duplicate-distance" variable (:default-value 400000) nil [4275 4875])
-            ("flyspell-delay" variable (:default-value 3) nil [4877 5020])
-            ("flyspell-persistent-highlight" variable (:default-value t) nil [5022 5261])
-            ("flyspell-highlight-properties" variable (:default-value t) nil [5263 5427])
-            ("flyspell-default-delayed-commands" variable (:default-value (quote (self-insert-command delete-backward-char backward-or-forward-delete-char delete-char scrollbar-vertical-drag backward-delete-char-untabify))) nil [5429 5791])
-            ("flyspell-delayed-commands" variable nil nil [5793 6057])
-            ("flyspell-default-deplacement-commands" variable (:default-value (quote (next-line previous-line handle-switch-frame handle-select-window scroll-up scroll-down))) nil [6059 6382])
-            ("flyspell-deplacement-commands" variable nil nil [6384 6671])
-            ("flyspell-issue-welcome-flag" variable (:default-value t) nil [6673 6829])
-            ("flyspell-issue-message-flag" variable (:default-value t) nil [6831 6976])
-            ("flyspell-incorrect-hook" variable nil nil [6978 7459])
-            ("flyspell-default-dictionary" variable nil nil [7461 8043])
-            ("flyspell-tex-command-regexp" variable (:default-value "\\(\\(begin\\|end\\)[ 	]*{\\|\\(cite[a-z*]*\\|label\\|ref\\|eqref\\|usepackage\\|documentclass\\)[ 	]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)") nil [8045 8345])
-            ("flyspell-check-tex-math-command" variable nil nil [8347 8648])
-            ("flyspell-dictionaries-that-consider-dash-as-word-delimiter" variable (:default-value (quote ("francais" "deutsch8" "norsk"))) nil [8650 8885])
-            ("flyspell-abbrev-p" variable nil nil [8887 9030])
-            ("flyspell-use-global-abbrev-table-p" variable nil nil [9032 9204])
-            ("flyspell-mode-line-string" variable (:default-value " Fly") nil [9206 9438])
-            ("flyspell-large-region" variable (:default-value 1000) nil [9440 9987])
-            ("flyspell-insert-function" variable (:default-value (function insert)) nil [9989 10141])
-            ("flyspell-before-incorrect-word-string" variable nil nil [10143 10308])
-            ("flyspell-after-incorrect-word-string" variable nil nil [10310 10472])
-            ("flyspell-mode-map" variable nil nil [10474 10500])
-            ("flyspell-use-meta-tab" variable (:default-value t) nil [10502 10800])
-            ("flyspell-auto-correct-binding" variable (:default-value [(control 59)]) nil [10802 10952])
-            ("flyspell-generic-check-word-predicate" variable nil nil [11765 12052])
-            ("make-variable-buffer-local" code nil nil [12053 12120])
-            ("define-obsolete-variable-alias" code nil nil [12121 12232])
-            ("put" code nil nil [12309 12377])
-            ("put" code nil nil [12378 12449])
-            ("message-signature-separator" variable nil nil [12450 12486])
-            ("mail-mode-flyspell-verify" function nil nil [12487 13550])
-            ("put" code nil nil [13627 13701])
-            ("texinfo-mode-flyspell-verify" function nil nil [13702 13897])
-            ("put" code nil nil [13974 14040])
-            ("tex-mode-flyspell-verify" function nil nil [14041 14477])
-            ("put" code nil nil [14554 14622])
-            ("put" code nil nil [14623 14691])
-            ("put" code nil nil [14692 14760])
-            ("sgml-lexical-context" function (:prototype-flag t) nil [14762 14806])
-            ("sgml-mode-flyspell-verify" function nil nil [14808 15146])
-            ("flyspell-prog-text-faces" variable (:default-value (quote (font-lock-string-face font-lock-comment-face font-lock-doc-face))) nil [15373 15536])
-            ("flyspell-generic-progmode-verify" function nil nil [15538 15818])
-            ("flyspell--prev-meta-tab-binding" variable nil nil [15893 15933])
-            ("flyspell-prog-mode" function (:user-visible-flag t) nil [15950 16343])
-            ("make-overlay" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [16570 16646])
-            ("overlayp" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [16647 16723])
-            ("overlays-in" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [16724 16800])
-            ("delete-overlay" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [16801 16877])
-            ("overlays-at" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [16878 16954])
-            ("overlay-put" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [16955 17031])
-            ("overlay-get" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [17032 17108])
-            ("previous-overlay-change" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [17109 17185])
-            ("flyspell-mouse-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mouse-2] (quote flyspell-correct-word)) map)) nil [17412 17589])
-            ("flyspell-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (if flyspell-use-meta-tab (define-key map "\211" (quote flyspell-auto-correct-word))) (define-key map flyspell-auto-correct-binding (quote flyspell-auto-correct-previous-word)) (define-key map [(control 44)] (quote flyspell-goto-next-error)) (define-key map [(control 46)] (quote flyspell-auto-correct-word)) (define-key map [3 36] (quote flyspell-correct-word-before-point)) map)) nil [17591 18099])
-            ("flyspell-consider-dash-as-word-delimiter-flag" variable nil nil [18129 18258])
-            ("make-variable-buffer-local" code nil nil [18259 18334])
-            ("flyspell-dash-dictionary" variable nil nil [18335 18372])
-            ("make-variable-buffer-local" code nil nil [18373 18427])
-            ("flyspell-dash-local-dictionary" variable nil nil [18428 18471])
-            ("make-variable-buffer-local" code nil nil [18472 18532])
-            ("flyspell-incorrect" variable
-               (:default-value (quote ((((supports :underline (:style wave))) :underline (:style wave :color "Red1")) (t :underline t :inherit error)))
-                :type "face")
-                nil [18759 18994])
-            ("flyspell-duplicate" variable
-               (:default-value (quote ((((supports :underline (:style wave))) :underline (:style wave :color "DarkOrange")) (t :underline t :inherit warning)))
-                :type "face")
-                nil [18996 19295])
-            ("flyspell-overlay" variable nil nil [19297 19326])
-            ("define-minor-mode" code nil nil [19648 21155])
-            ("turn-on-flyspell" function nil nil [21172 21262])
-            ("turn-off-flyspell" function nil nil [21279 21372])
-            ("custom-add-option" code nil nil [21374 21427])
-            ("flyspell-buffers" variable nil nil [21804 21833])
-            ("flyspell-minibuffer-p" function (:arguments ("buffer")) nil [22060 22227])
-            ("flyspell-last-buffer" variable nil nil [22454 22551])
-            ("flyspell-accept-buffer-local-defs" function (:arguments ("force")) nil [22553 23821])
-            ("flyspell-hack-local-variables-hook" function nil nil [23823 23999])
-            ("flyspell-kill-ispell-hook" function nil nil [24001 24186])
-            ("add-hook" code nil nil [24358 24420])
-            ("flyspell-mode-on" function nil nil [24647 26735])
-            ("flyspell-delay-commands" function nil nil [26962 27181])
-            ("flyspell-delay-command" function
-               (:user-visible-flag t
-                :arguments ("command"))
-                nil [27408 27766])
-            ("flyspell-deplacement-commands" function nil nil [27993 28242])
-            ("flyspell-deplacement-command" function
-               (:user-visible-flag t
-                :arguments ("command"))
-                nil [28469 28797])
-            ("flyspell-word-cache-start" variable nil nil [29024 29063])
-            ("flyspell-word-cache-end" variable nil nil [29064 29103])
-            ("flyspell-word-cache-word" variable nil nil [29104 29143])
-            ("flyspell-word-cache-result" variable (:default-value (quote _)) nil [29144 29182])
-            ("make-variable-buffer-local" code nil nil [29183 29238])
-            ("make-variable-buffer-local" code nil nil [29239 29292])
-            ("make-variable-buffer-local" code nil nil [29293 29347])
-            ("make-variable-buffer-local" code nil nil [29348 29404])
-            ("flyspell-pre-buffer" variable nil nil [29781 29857])
-            ("flyspell-pre-point" variable nil nil [29858 29932])
-            ("flyspell-pre-column" variable nil nil [29933 30008])
-            ("flyspell-pre-pre-buffer" variable nil nil [30009 30045])
-            ("flyspell-pre-pre-point" variable nil nil [30046 30082])
-            ("make-variable-buffer-local" code nil nil [30083 30131])
-            ("flyspell-previous-command" variable nil nil [30373 30465])
-            ("flyspell-pre-command-hook" function (:user-visible-flag t) nil [30692 30945])
-            ("flyspell-mode-off" function nil nil [31187 31839])
-            ("flyspell-check-pre-word-p" function nil nil [32066 33923])
-            ("flyspell-changes" variable nil nil [34300 34329])
-            ("make-variable-buffer-local" code nil nil [34330 34376])
-            ("flyspell-after-change-function" function (:arguments ("start" "stop" "_len")) nil [34603 34775])
-            ("flyspell-check-changed-word-p" function (:arguments ("start" "stop")) nil [35002 35500])
-            ("flyspell-check-word-p" function nil nil [35727 36847])
-            ("flyspell-debug-signal-no-check" function (:arguments ("msg" "obj")) nil [37074 37303])
-            ("flyspell-debug-signal-pre-word-checked" function nil nil [37530 37988])
-            ("flyspell-debug-signal-word-checked" function nil nil [38215 40620])
-            ("flyspell-debug-signal-changed-checked" function nil nil [40847 41125])
-            ("flyspell-post-command-hook" function (:user-visible-flag t) nil [42177 44272])
-            ("flyspell-notify-misspell" function (:arguments ("word" "poss")) nil [44499 44734])
-            ("flyspell-word-search-backward" function (:arguments ("word" "bound" "ignore-case")) nil [44961 45958])
-            ("flyspell-word-search-forward" function (:arguments ("word" "bound")) nil [46185 47050])
-            ("flyspell-word" variable nil nil [47052 47074])
-            ("flyspell-word" function
-               (:user-visible-flag t
-                :arguments ("following" "known-misspelling"))
-                nil [47358 53769])
-            ("flyspell-math-tex-command-p" function nil nil [54296 54484])
-            ("flyspell-tex-command-p" function (:arguments ("word")) nil [54711 55071])
-            ("defalias" code nil nil [55073 55129])
-            ("defalias" code nil nil [55130 55194])
-            ("flyspell-get-word" function (:arguments ("following" "extra-otherchars")) nil [55421 57857])
-            ("flyspell-small-region" function (:arguments ("beg" "end")) nil [58084 58809])
-            ("flyspell-external-ispell-process" variable (:default-value (quote nil)) nil [59036 59123])
-            ("flyspell-external-ispell-buffer" variable (:default-value (quote nil)) nil [59350 59394])
-            ("flyspell-large-region-buffer" variable (:default-value (quote nil)) nil [59395 59436])
-            ("flyspell-large-region-beg" variable (:default-value (point-min)) nil [59437 59483])
-            ("flyspell-large-region-end" variable (:default-value (point-max)) nil [59484 59530])
-            ("flyspell-external-point-words" function nil nil [59757 63433])
-            ("flyspell-process-localwords" function (:arguments ("misspellings-buffer")) nil [63885 65327])
-            ("flyspell-check-region-doublons" function (:arguments ("beg" "end")) nil [65504 65919])
-            ("flyspell-large-region" function (:arguments ("beg" "end")) nil [66146 68880])
-            ("flyspell-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [69572 70018])
-            ("flyspell-buffer" function (:user-visible-flag t) nil [70260 70373])
-            ("flyspell-old-buffer-error" variable nil nil [70600 70638])
-            ("flyspell-old-pos-error" variable nil nil [70639 70674])
-            ("flyspell-goto-next-error" function (:user-visible-flag t) nil [70901 71926])
-            ("flyspell-overlay-p" function (:arguments ("o")) nil [72153 72291])
-            ("flyspell-delete-region-overlays" function (:arguments ("beg" "end")) nil [72668 72821])
-            ("flyspell-delete-all-overlays" function nil nil [72823 72968])
-            ("flyspell-unhighlight-at" function (:arguments ("pos")) nil [73195 73601])
-            ("flyspell-properties-at-p" function (:arguments ("pos")) nil [73978 74488])
-            ("make-flyspell-overlay" function (:arguments ("beg" "end" "face" "mouse-face")) nil [74715 75923])
-            ("flyspell-highlight-incorrect-region" function (:arguments ("beg" "end" "poss")) nil [76150 77305])
-            ("flyspell-highlight-duplicate-region" function (:arguments ("beg" "end" "poss")) nil [77532 78235])
-            ("flyspell-auto-correct-pos" variable nil nil [78462 78500])
-            ("flyspell-auto-correct-region" variable nil nil [78501 78542])
-            ("flyspell-auto-correct-ring" variable nil nil [78543 78582])
-            ("flyspell-auto-correct-word" variable nil nil [78583 78622])
-            ("make-variable-buffer-local" code nil nil [78623 78678])
-            ("make-variable-buffer-local" code nil nil [78679 78737])
-            ("make-variable-buffer-local" code nil nil [78738 78794])
-            ("make-variable-buffer-local" code nil nil [78795 78851])
-            ("flyspell-check-previous-highlighted-word" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [79078 80158])
-            ("flyspell-display-next-corrections" function (:arguments ("corrections")) nil [80385 81008])
-            ("flyspell-abbrev-table" function nil nil [81235 81383])
-            ("flyspell-define-abbrev" function (:arguments ("name" "expansion")) nil [81610 81770])
-            ("flyspell-auto-correct-word" function (:user-visible-flag t) nil [81997 88712])
-            ("flyspell-auto-correct-previous-pos" variable nil nil [88939 89048])
-            ("flyspell-auto-correct-previous-hook" function (:user-visible-flag t) nil [89275 89672])
-            ("flyspell-auto-correct-previous-word" function
-               (:user-visible-flag t
-                :arguments ("position"))
-                nil [89899 91579])
-            ("flyspell-correct-word" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [91807 92086])
-            ("flyspell-correct-word-before-point" function
-               (:user-visible-flag t
-                :arguments ("event" "opoint"))
-                nil [92088 93753])
-            ("flyspell-do-correct" function (:arguments ("replace" "poss" "word" "cursor-location" "start" "end" "save")) nil [93976 95512])
-            ("flyspell-adjust-cursor-point" function (:arguments ("save" "cursor-location" "old-max")) nil [95740 96058])
-            ("flyspell-emacs-popup" function (:arguments ("event" "poss" "word")) nil [96285 97587])
-            ("flyspell-maybe-correct-transposition" function (:arguments ("beg" "end" "poss")) nil [97814 98755])
-            ("flyspell-maybe-correct-doubling" function (:arguments ("beg" "end" "poss")) nil [98757 99596])
-            ("flyspell-already-abbrevp" function (:arguments ("table" "word")) nil [99823 99939])
-            ("flyspell-change-abbrev" function (:arguments ("table" "old" "new")) nil [100166 100250])
-            ("flyspell" package nil nil [100252 100271]))          
-      :file "flyspell.el"
-      :pointmax 100299
-      :fsize 100298
-      :lastmodtime '(23525 29607 0 0)
-      :unmatched-syntax '((close-paren 1472 . 1473) (symbol 1437 . 1454) (open-paren 1436 . 1437)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tex-mode" include nil nil [1070 1089])
-            ("declare-function" code nil nil [1091 1134])
-            ("declare-function" code nil nil [1135 1185])
-            ("declare-function" code nil nil [1186 1232])
-            ("declare-function" code nil nil [1233 1299])
-            ("declare-function" code nil nil [1300 1355])
-            ("declare-function" code nil nil [1356 1397])
-            ("declare-function" code nil nil [1398 1448])
-            ("declare-function" code nil nil [1449 1494])
-            ("outline-heading-alist" variable nil nil [1496 1526])
-            ("skeleton-end-newline" variable nil nil [1528 1557])
-            ("texinfo" customgroup (:user-visible-flag t) nil [1559 1688])
-            ("texinfo-open-quote" variable (:default-value (purecopy "``")) nil [1705 1861])
-            ("texinfo-close-quote" variable (:default-value (purecopy "''")) nil [1878 2036])
-            ("texinfo-mode-hook" variable nil nil [2038 2197])
-            ("makeinfo-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2217 2516])
-            ("makeinfo-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2518 2688])
-            ("kill-compilation" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2690 2792])
-            ("makeinfo-recenter-compilation-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2794 3032])
-            ("texinfo-update-node" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [3034 3931])
-            ("texinfo-every-node-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [3933 4034])
-            ("texinfo-sequential-node-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [4036 4821])
-            ("texinfo-make-menu" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [4823 5349])
-            ("texinfo-all-menus-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [5351 5628])
-            ("texinfo-master-menu" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [5630 7137])
-            ("texinfo-indent-menu-description" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7139 7445])
-            ("texinfo-insert-node-lines" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7447 7761])
-            ("texinfo-start-menu-description" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7763 8166])
-            ("texinfo-multiple-files-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [8168 9538])
-            ("texinfo-section-list" variable (:default-value (quote (("top" 1) ("chapter" 2) ("section" 3) ("subsection" 4) ("subsubsection" 5) ("unnumbered" 2) ("unnumberedsec" 3) ("unnumberedsubsec" 4) ("unnumberedsubsubsec" 5) ("appendix" 2) ("appendixsec" 3) ("appendixsection" 3) ("appendixsubsec" 4) ("appendixsubsubsec" 5) ("majorheading" 2) ("chapheading" 2) ("heading" 3) ("subheading" 4) ("subsubheading" 5)))) nil [9632 10146])
-            ("texinfo-mode-syntax-table" variable (:default-value (let ((st (make-syntax-table))) (modify-syntax-entry 34 "." st) (modify-syntax-entry 92 "." st) (modify-syntax-entry 64 "\\" st) (modify-syntax-entry 17 "\\" st) (modify-syntax-entry 91 "(]" st) (modify-syntax-entry 93 ")[" st) (modify-syntax-entry 123 "(}" st) (modify-syntax-entry 125 "){" st) (modify-syntax-entry 10 ">" st) (modify-syntax-entry 39 "w" st) st)) nil [10166 10616])
-            ("texinfo-imenu-generic-expression" variable (:default-value (quote ((nil "^@\\(node\\|anchor\\)[ 	]+\\([^,
-]*\\)" 2) ("Chapters" "^@chapter[ 	]+\\(.*\\)$" 1)))) nil [10793 11016])
-            ("texinfo-syntax-propertize-function" variable
-               (:constant-flag t
-                :default-value (syntax-propertize-rules ("\\(@\\)c\\(omment\\)?\\>" (1 "<")) ("^\\(@\\)ignore\\>" (1 "< b")) ("^@end ignore\\(
-\\)" (1 "> b"))))
-                nil [11018 11274])
-            ("texinfo-environments" variable
-               (:constant-flag t
-                :default-value (quote ("cartouche" "copying" "defcv" "deffn" "defivar" "defmac" "defmethod" "defop" "defopt" "defspec" "deftp" "deftypecv" "deftypefn" "deftypefun" "deftypeivar" "deftypemethod" "deftypeop" "deftypevar" "deftypevr" "defun" "defvar" "defvr" "description" "detailmenu" "direntry" "display" "documentdescription" "enumerate" "example" "flushleft" "flushright" "format" "ftable" "group" "html" "ifclear" "ifset" "ifhtml" "ifinfo" "ifnothtml" "ifnotinfo" "ifnotplaintext" "ifnottex" "ifplaintext" "iftex" "ignore" "itemize" "lisp" "macro" "menu" "multitable" "quotation" "smalldisplay" "smallexample" "smallformat" "smalllisp" "table" "tex" "titlepage" "verbatim" "vtable")))
-                nil [11276 12051])
-            ("texinfo-environment-regexp" variable
-               (:constant-flag t
-                :default-value (concat "^@" (regexp-opt (cons "end" texinfo-environments) t) "\\>"))
-                nil [12053 12286])
-            ("texinfo-heading" variable
-               (:default-value (quote ((t (:inherit font-lock-function-name-face))))
-                :type "face")
-                nil [12288 12434])
-            ("texinfo-font-lock-keywords" variable (:default-value (\` (("@\\([a-zA-Z]+\\|[^ 	
-]\\)" 1 font-lock-keyword-face) ("^\\*\\([^
-:]*\\)" 1 font-lock-function-name-face t) ("@\\(emph\\|i\\|sc\\){\\([^}]+\\)" 2 (quote italic)) ("@\\(strong\\|b\\){\\([^}]+\\)" 2 (quote bold)) ("@\\(kbd\\|key\\|url\\|uref\\){\\([^}]+\\)" 2 font-lock-string-face) ("@\\(file\\|email\\){\\([^}]+\\)" 2 font-lock-string-face keep) ("@\\(samp\\|code\\|var\\|env\\|command\\|option\\){\\([^}]+\\)" 2 font-lock-variable-name-face keep) ("@math{\\([^{}]*{?[^{}]*}?[^{}]*\\)}" 1 font-lock-variable-name-face) ("@\\(cite\\|x?ref\\|pxref\\|dfn\\|inforef\\){\\([^}]+\\)" 2 font-lock-constant-face) ("@\\(anchor\\){\\([^}]+\\)" 2 font-lock-type-face) ("@\\(dmn\\|acronym\\|value\\){\\([^}]+\\)" 2 font-lock-builtin-face) ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-keyword-face keep) ((\, (concat "^@" (regexp-opt (mapcar (quote car) texinfo-section-list) t) ".*
-")) 0 (quote texinfo-heading) t)))) nil [12436 14097])
-            ("texinfo-clone-environment" function (:arguments ("start" "end")) nil [14099 14659])
-            ("texinfo-define-common-keys" function (:arguments ("keymap")) nil [14736 15461])
-            ("texinfo-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (texinfo-define-common-keys map) (define-key map "\"" (quote texinfo-insert-quote)) (define-key map "
" (quote kill-compilation)) (define-key map "
" (quote makeinfo-recenter-compilation-buffer)) (define-key map "
" (quote makeinfo-region)) (define-key map "
" (quote makeinfo-buffer)) (define-key map "" (quote texinfo-format-region)) (define-key map "" (quote texinfo-format-buffer)) (define-key map "
" (quote texinfo-insert-@item)) (define-key map "m" (quote texinfo-master-menu)) (define-key map "
" (quote texinfo-make-menu)) (define-key map "" (quote texinfo-update-node)) (define-key map "" (quote texinfo-every-node-update)) (define-key map "" (quote texinfo-all-menus-update)) (define-key map "" (quote texinfo-show-structure)) (define-key map "}" (quote up-list)) (define-key map "]" (quote up-list)) (define-key map "/" (quote texinfo-insert-@end)) (define-key map "{" (quote texinfo-insert-braces)) (define-key map "" (quote texinfo-insert-block)) (define-key map "" (quote texinfo-start-menu-description)) (define-key map "" (quote texinfo-insert-@strong)) (define-key map "" (quote texinfo-insert-@emph)) (define-key map "v" (quote texinfo-insert-@var)) (define-key map "u" (quote texinfo-insert-@uref)) (define-key map "t" (quote texinfo-insert-@table)) (define-key map "s" (quote texinfo-insert-@samp)) (define-key map "q" (quote texinfo-insert-@quotation)) (define-key map "o" (quote texinfo-insert-@noindent)) (define-key map "n" (quote texinfo-insert-@node)) (define-key map "m" (quote texinfo-insert-@email)) (define-key map "k" (quote texinfo-insert-@kbd)) (define-key map "i" (quote texinfo-insert-@item)) (define-key map "f" (quote texinfo-insert-@file)) (define-key map "x" (quote texinfo-insert-@example)) (define-key map "e" (quote texinfo-insert-@end)) (define-key map "d" (quote texinfo-insert-@dfn)) (define-key map "c" (quote texinfo-insert-@code)) map)) nil [15574 18134])
-            ("easy-menu-define" code nil nil [18136 18940])
-            ("texinfo-filter" function (:arguments ("section" "list")) nil [18944 19071])
-            ("texinfo-chapter-level-regexp" variable (:default-value (regexp-opt (texinfo-filter 2 texinfo-section-list))) nil [19073 19238])
-            ("texinfo-current-defun-name" function nil nil [19240 19450])
-            ("define-derived-mode" code nil nil [19485 24502])
-            ("texinfo-block-default" variable (:default-value "example") nil [24535 24575])
-            ("define-skeleton" code nil nil [24577 25130])
-            ("texinfo-inside-macro-p" function (:arguments ("macro" "bound")) nil [25132 25541])
-            ("texinfo-inside-env-p" function (:arguments ("env" "bound")) nil [25543 25768])
-            ("texinfo-enable-quote-macros" variable (:default-value "@\\(code\\|samp\\|kbd\\)\\>") nil [25770 25836])
-            ("texinfo-enable-quote-envs" variable (:default-value (quote ("example\\>" "smallexample\\>" "lisp\\>"))) nil [25837 25917])
-            ("texinfo-insert-quote" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25918 27085])
-            ("texinfo-last-unended-begin" function nil nil [27280 27441])
-            ("texinfo-next-unmatched-end" function nil nil [27443 27662])
-            ("define-skeleton" code nil nil [27664 27945])
-            ("define-skeleton" code nil nil [27947 28119])
-            ("define-skeleton" code nil nil [28121 28371])
-            ("define-skeleton" code nil nil [28373 28620])
-            ("define-skeleton" code nil nil [28622 28875])
-            ("define-skeleton" code nil nil [28877 29127])
-            ("define-skeleton" code nil nil [29129 29252])
-            ("define-skeleton" code nil nil [29254 29504])
-            ("define-skeleton" code nil nil [29506 29859])
-            ("define-skeleton" code nil nil [29861 30108])
-            ("define-skeleton" code nil nil [30110 30384])
-            ("define-skeleton" code nil nil [30386 30509])
-            ("define-skeleton" code nil nil [30511 30636])
-            ("define-skeleton" code nil nil [30638 30888])
-            ("define-skeleton" code nil nil [30890 31146])
-            ("define-skeleton" code nil nil [31148 31265])
-            ("define-skeleton" code nil nil [31267 31511])
-            ("define-skeleton" code nil nil [31513 31760])
-            ("defalias" code nil nil [31761 31814])
-            ("texinfo-show-structure" function
-               (:user-visible-flag t
-                :arguments ("nodes-too"))
-                nil [31845 34181])
-            ("texinfo-texi2dvi-command" variable (:default-value "texi2dvi") nil [34234 34393])
-            ("texinfo-tex-command" variable (:default-value "tex") nil [34395 34531])
-            ("texinfo-texindex-command" variable (:default-value "texindex") nil [34533 34683])
-            ("texinfo-delete-from-print-queue-command" variable (:default-value "lprm") nil [34685 34974])
-            ("texinfo-tex-trailer" variable (:default-value "@bye") nil [34976 35083])
-            ("texinfo-tex-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [35085 35858])
-            ("texinfo-tex-buffer" function (:user-visible-flag t) nil [35860 36197])
-            ("texinfo-texindex" function (:user-visible-flag t) nil [36199 36718])
-            ("texinfo-tex-print" function (:user-visible-flag t) nil [36720 36944])
-            ("texinfo-tex-view" function (:user-visible-flag t) nil [36946 37166])
-            ("texinfo-quit-job" function (:user-visible-flag t) nil [37168 37373])
-            ("texinfo-delete-from-print-queue" function
-               (:user-visible-flag t
-                :arguments ("job-number"))
-                nil [37528 38183])
-            ("texinfo" package nil nil [38185 38203]))          
-      :file "texinfo.el"
-      :pointmax 38230
-      :fsize 38231
-      :lastmodtime '(23525 29610 0 0)
-      :unmatched-syntax '((close-paren 1089 . 1090) (symbol 1052 . 1069) (open-paren 1051 . 1052)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("regexp-opt" include nil nil [32165 32186])
-            ("quail-translating" variable nil nil [32283 32309])
-            ("quail-converting" variable nil nil [32310 32335])
-            ("flyspell-mode" variable nil nil [32336 32358])
-            ("real-last-command" variable nil nil [32359 32385])
-            ("delete-selection-mode" variable nil nil [32386 32416])
-            ("table" customgroup (:user-visible-flag t) nil [32775 32907])
-            ("table-hooks" customgroup (:user-visible-flag t) nil [32909 32995])
-            ("table-time-before-update" variable (:default-value 0.2) nil [32997 33714])
-            ("table-time-before-reformat" variable (:default-value 0.2) nil [33716 34021])
-            ("table-command-prefix" variable (:default-value [(control c) (control c)]) nil [34023 34239])
-            ("table-cell" variable
-               (:default-value (quote ((((min-colors 88) (class color)) :foreground "gray90" :background "blue1") (((class color)) :foreground "gray90" :background "blue") (t :weight bold)))
-                :type "face")
-                nil [34241 34498])
-            ("table-cell-horizontal-chars" variable (:default-value "-=") nil [34500 34694])
-            ("table-cell-vertical-char" variable (:default-value 124) nil [34696 34873])
-            ("table-cell-intersection-char" variable (:default-value 43) nil [34875 35037])
-            ("table-word-continuation-char" variable (:default-value 92) nil [35039 35636])
-            ("table-detect-cell-alignment" variable (:default-value t) nil [35638 36056])
-            ("table-dest-buffer-name" variable (:default-value "table") nil [36058 36226])
-            ("table-html-delegate-spacing-to-user-agent" variable nil nil [36228 36489])
-            ("table-html-th-rows" variable nil nil [36491 36662])
-            ("table-html-th-columns" variable nil nil [36664 36845])
-            ("table-html-table-attribute" variable (:default-value "border=\"1\"") nil [36847 37028])
-            ("table-html-cell-attribute" variable nil nil [37030 37298])
-            ("table-cals-thead-rows" variable (:default-value 1) nil [37300 37454])
-            ("table-cell-map-hook" variable nil nil [37456 37690])
-            ("table-disable-incompatibility-warning" variable nil nil [37692 37917])
-            ("table-abort-recognition-when-input-pending" variable (:default-value t) nil [37919 38273])
-            ("table-load-hook" variable nil nil [38275 38410])
-            ("table-point-entered-cell-hook" variable nil nil [38412 38562])
-            ("table-point-left-cell-hook" variable nil nil [38564 38708])
-            ("table-yank-handler" variable (:default-value (quote (nil nil t nil))) nil [38710 38783])
-            ("setplist" code nil nil [38785 38838])
-            ("table-disable-menu" variable (:default-value (null (and (locate-library "easymenu") (require (quote easymenu)) (fboundp (quote easy-menu-add-item))))) nil [38840 39112])
-            ("table-paragraph-start" variable
-               (:constant-flag t
-                :default-value "[ 	
-]")
-                nil [39255 39371])
-            ("table-cache-buffer-name" variable
-               (:constant-flag t
-                :default-value " *table cell cache*")
-                nil [39372 39456])
-            ("table-cell-info-lu-coordinate" variable nil nil [39457 39565])
-            ("table-cell-info-rb-coordinate" variable nil nil [39566 39676])
-            ("table-cell-info-width" variable nil nil [39677 39759])
-            ("table-cell-info-height" variable nil nil [39760 39839])
-            ("table-cell-info-justify" variable nil nil [39840 39926])
-            ("table-cell-info-valign" variable nil nil [39927 40017])
-            ("table-cell-self-insert-command-count" variable nil nil [40018 40095])
-            ("table-cell-map" variable nil nil [40096 40159])
-            ("table-cell-global-map-alist" variable nil nil [40160 40275])
-            ("table-global-menu-map" variable nil nil [40276 40355])
-            ("table-cell-menu-map" variable nil nil [40356 40433])
-            ("table-cell-buffer" variable nil nil [40434 40505])
-            ("table-cell-cache-point-coordinate" variable nil nil [40506 40607])
-            ("table-cell-cache-mark-coordinate" variable nil nil [40608 40707])
-            ("table-update-timer" variable nil nil [40708 40778])
-            ("table-widen-timer" variable nil nil [40779 40848])
-            ("table-heighten-timer" variable nil nil [40849 40921])
-            ("table-inhibit-update" variable nil nil [40922 41114])
-            ("table-inhibit-auto-fill-paragraph" variable nil nil [41115 41337])
-            ("table-mode-indicator" variable nil nil [41338 41399])
-            ("make-variable-buffer-local" code nil nil [41529 41579])
-            ("unless" code nil nil [41580 41740])
-            ("table-source-languages" variable
-               (:constant-flag t
-                :default-value (quote (html latex cals)))
-                nil [41742 41826])
-            ("table-source-info-plist" variable nil nil [41827 41939])
-            ("table-cell-span-direction-history" variable (:default-value (quote ("right"))) nil [42344 42397])
-            ("table-cell-split-orientation-history" variable (:default-value (quote ("horizontally"))) nil [42398 42461])
-            ("table-cell-split-contents-to-history" variable (:default-value (quote ("split"))) nil [42462 42518])
-            ("table-insert-row-column-history" variable (:default-value (quote ("row"))) nil [42519 42568])
-            ("table-justify-history" variable (:default-value (quote ("center"))) nil [42569 42611])
-            ("table-columns-history" variable (:default-value (quote ("3"))) nil [42612 42649])
-            ("table-rows-history" variable (:default-value (quote ("3"))) nil [42650 42684])
-            ("table-cell-width-history" variable (:default-value (quote ("5"))) nil [42685 42725])
-            ("table-cell-height-history" variable (:default-value (quote ("1"))) nil [42726 42767])
-            ("table-source-caption-history" variable (:default-value (quote ("Table"))) nil [42768 42816])
-            ("table-sequence-string-history" variable (:default-value (quote ("0"))) nil [42817 42862])
-            ("table-sequence-count-history" variable (:default-value (quote ("0"))) nil [42863 42907])
-            ("table-sequence-increment-history" variable (:default-value (quote ("1"))) nil [42908 42956])
-            ("table-sequence-interval-history" variable (:default-value (quote ("1"))) nil [42957 43004])
-            ("table-sequence-justify-history" variable (:default-value (quote ("left"))) nil [43005 43054])
-            ("table-source-language-history" variable (:default-value (quote ("html"))) nil [43055 43103])
-            ("table-col-delim-regexp-history" variable (:default-value (quote (""))) nil [43104 43149])
-            ("table-row-delim-regexp-history" variable (:default-value (quote (""))) nil [43150 43195])
-            ("table-capture-justify-history" variable (:default-value (quote ("left"))) nil [43196 43244])
-            ("table-capture-min-cell-width-history" variable (:default-value (quote ("5"))) nil [43245 43297])
-            ("table-capture-columns-history" variable (:default-value (quote (""))) nil [43298 43342])
-            ("table-target-history" variable (:default-value (quote ("cell"))) nil [43343 43382])
-            ("table-cell-bindings" variable
-               (:constant-flag t
-                :default-value (quote (([(control i)] . table-forward-cell) ([(control I)] . table-backward-cell) ([tab] . table-forward-cell) ([(shift backtab)] . table-backward-cell) ([(shift iso-lefttab)] . table-backward-cell) ([(shift tab)] . table-backward-cell) ([backtab] . table-backward-cell) ([return] . *table--cell-newline) ([(control m)] . *table--cell-newline) ([(control j)] . *table--cell-newline-and-indent) ([mouse-3] . *table--present-cell-popup-menu) ([(control 62)] . table-widen-cell) ([(control 60)] . table-narrow-cell) ([(control 125)] . table-heighten-cell) ([(control 123)] . table-shorten-cell) ([(control 45)] . table-split-cell-vertically) ([(control 124)] . table-split-cell-horizontally) ([(control 42)] . table-span-cell) ([(control 43)] . table-insert-row-column) ([(control 33)] . table-fixed-width-mode) ([(control 35)] . table-query-dimension) ([(control 94)] . table-generate-source) ([(control 58)] . table-justify))))
-                nil [44188 45402])
-            ("table-command-remap-alist" variable (:default-value (quote ((self-insert-command . *table--cell-self-insert-command) (completion-separator-self-insert-autofilling . *table--cell-self-insert-command) (completion-separator-self-insert-command . *table--cell-self-insert-command) (delete-char . *table--cell-delete-char) (delete-backward-char . *table--cell-delete-backward-char) (backward-delete-char . *table--cell-delete-backward-char) (backward-delete-char-untabify . *table--cell-delete-backward-char) (newline . *table--cell-newline) (newline-and-indent . *table--cell-newline-and-indent) (open-line . *table--cell-open-line) (quoted-insert . *table--cell-quoted-insert) (describe-mode . *table--cell-describe-mode) (describe-bindings . *table--cell-describe-bindings) (dabbrev-expand . *table--cell-dabbrev-expand) (dabbrev-completion . *table--cell-dabbrev-completion)))) nil [45404 46401])
-            ("table-command-list" variable (:default-value (mapcar (function cdr) table-command-remap-alist)) nil [46403 46589])
-            ("table-global-menu" variable
-               (:constant-flag t
-                :default-value (quote ("Table" ("Insert" ["a Table..." table-insert :active (and (not buffer-read-only) (not (table--probe-cell))) :help "Insert a text based table at point"] ["Row" table-insert-row :active (table--row-column-insertion-point-p) :help "Insert row(s) of cells in table"] ["Column" table-insert-column :active (table--row-column-insertion-point-p (quote column)) :help "Insert column(s) of cells in table"]) "----" ("Recognize" ["in Buffer" table-recognize :active t :help "Recognize all tables in the current buffer"] ["in Region" table-recognize-region :active (and mark-active (not (eq (mark t) (point)))) :help "Recognize all tables in the current region"] ["a Table" table-recognize-table :active (table--probe-cell) :help "Recognize a table at point"] ["a Cell" table-recognize-cell :active (let ((cell (table--probe-cell))) (and cell (null (table--at-cell-p (car cell))))) :help "Recognize a cell at point"]) ("Unrecognize" ["in Buffer" table-unrecognize :active t :help "Unrecognize all tables in the current buffer"] ["in Region" table-unrecognize-region :active (and mark-active (not (eq (mark t) (point)))) :help "Unrecognize all tables in the current region"] ["a Table" table-unrecognize-table :active (table--probe-cell) :help "Unrecognize the current table"] ["a Cell" table-unrecognize-cell :active (let ((cell (table--probe-cell))) (and cell (table--at-cell-p (car cell)))) :help "Unrecognize the current cell"]) "----" ["Capture Region" table-capture :active (and (not buffer-read-only) mark-active (not (eq (mark t) (point))) (not (table--probe-cell))) :help "Capture text in the current region as a table"] ["Release" table-release :active (table--editable-cell-p) :help "Release the current table as plain text"])))
-                nil [46591 48581])
-            ("table-cell-menu" variable
-               (:constant-flag t
-                :default-value (quote ("Table" ("Insert" ["Row" table-insert-row :active (table--row-column-insertion-point-p) :help "Insert row(s) of cells in table"] ["Column" table-insert-column :active (table--row-column-insertion-point-p (quote column)) :help "Insert column(s) of cells in table"]) ("Delete" ["Row" table-delete-row :active (table--editable-cell-p) :help "Delete row(s) of cells in table"] ["Column" table-delete-column :active (table--editable-cell-p) :help "Delete column(s) of cells in table"]) "----" ("Split a Cell" ["Horizontally" table-split-cell-horizontally :active (table--cell-can-split-horizontally-p) :help "Split the current cell horizontally at point"] ["Vertically" table-split-cell-vertically :active (table--cell-can-split-vertically-p) :help "Split the current cell vertical at point"]) ("Span a Cell to" ["Right" (table-span-cell (quote right)) :active (table--cell-can-span-p (quote right)) :help "Span the current cell into the right cell"] ["Left" (table-span-cell (quote left)) :active (table--cell-can-span-p (quote left)) :help "Span the current cell into the left cell"] ["Above" (table-span-cell (quote above)) :active (table--cell-can-span-p (quote above)) :help "Span the current cell into the cell above"] ["Below" (table-span-cell (quote below)) :active (table--cell-can-span-p (quote below)) :help "Span the current cell into the cell below"]) "----" ("Shrink Cells" ["Horizontally" table-narrow-cell :active (table--editable-cell-p) :help "Shrink the current cell horizontally"] ["Vertically" table-shorten-cell :active (table--editable-cell-p) :help "Shrink the current cell vertically"]) ("Expand Cells" ["Horizontally" table-widen-cell :active (table--editable-cell-p) :help "Expand the current cell horizontally"] ["Vertically" table-heighten-cell :active (table--editable-cell-p) :help "Expand the current cell vertically"]) "----" ("Justify" ("a Cell" ["Left" (table-justify-cell (quote left)) :active (table--editable-cell-p) :help "Left justify the contents of the current cell"] ["Center" (table-justify-cell (quote center)) :active (table--editable-cell-p) :help "Center justify the contents of the current cell"] ["Right" (table-justify-cell (quote right)) :active (table--editable-cell-p) :help "Right justify the contents of the current cell"] "----" ["Top" (table-justify-cell (quote top)) :active (table--editable-cell-p) :help "Top align the contents of the current cell"] ["Middle" (table-justify-cell (quote middle)) :active (table--editable-cell-p) :help "Middle align the contents of the current cell"] ["Bottom" (table-justify-cell (quote bottom)) :active (table--editable-cell-p) :help "Bottom align the contents of the current cell"] ["None" (table-justify-cell (quote none)) :active (table--editable-cell-p) :help "Remove vertical alignment from the current cell"]) ("a Row" ["Left" (table-justify-row (quote left)) :active (table--editable-cell-p) :help "Left justify the contents of all cells in the current row"] ["Center" (table-justify-row (quote center)) :active (table--editable-cell-p) :help "Center justify the contents of all cells in the current row"] ["Right" (table-justify-row (quote right)) :active (table--editable-cell-p) :help "Right justify the contents of all cells in the current row"] "----" ["Top" (table-justify-row (quote top)) :active (table--editable-cell-p) :help "Top align the contents of all cells in the current row"] ["Middle" (table-justify-row (quote middle)) :active (table--editable-cell-p) :help "Middle align the contents of all cells in the current row"] ["Bottom" (table-justify-row (quote bottom)) :active (table--editable-cell-p) :help "Bottom align the contents of all cells in the current row"] ["None" (table-justify-cell (quote none)) :active (table--editable-cell-p) :help "Remove vertical alignment from all cells in the current row"]) ("a Column" ["Left" (table-justify-column (quote left)) :active (table--editable-cell-p) :help "Left justify the contents of all cells in the current column"] ["Center" (table-justify-column (quote center)) :active (table--editable-cell-p) :help "Center justify the contents of all cells in the current column"] ["Right" (table-justify-column (quote right)) :active (table--editable-cell-p) :help "Right justify the contents of all cells in the current column"] "----" ["Top" (table-justify-column (quote top)) :active (table--editable-cell-p) :help "Top align the contents of all cells in the current column"] ["Middle" (table-justify-column (quote middle)) :active (table--editable-cell-p) :help "Middle align the contents of all cells in the current column"] ["Bottom" (table-justify-column (quote bottom)) :active (table--editable-cell-p) :help "Bottom align the contents of all cells in the current column"] ["None" (table-justify-cell (quote none)) :active (table--editable-cell-p) :help "Remove vertical alignment from all cells in the current column"]) ("a Paragraph" ["Left" (table-justify-cell (quote left) t) :active (table--editable-cell-p) :help "Left justify the current paragraph"] ["Center" (table-justify-cell (quote center) t) :active (table--editable-cell-p) :help "Center justify the current paragraph"] ["Right" (table-justify-cell (quote right) t) :active (table--editable-cell-p) :help "Right justify the current paragraph"])) "----" ["Query Dimension" table-query-dimension :active (table--probe-cell) :help "Get the dimension of the current cell and the current table"] ["Generate Source" table-generate-source :active (table--probe-cell) :help "Generate source of the current table in the specified language"] ["Insert Sequence" table-insert-sequence :active (table--editable-cell-p) :help "Travel cells forward while inserting a specified sequence string in each cell"] ("Unrecognize" ["a Table" table-unrecognize-table :active (table--probe-cell) :help "Unrecognize the current table"] ["a Cell" table-unrecognize-cell :active (let ((cell (table--probe-cell))) (and cell (table--at-cell-p (car cell)))) :help "Unrecognize the current cell"]) ["Release" table-release :active (table--editable-cell-p) :help "Release the current table as plain text"] ("Configure Width to" ["Auto Expand Mode" (table-fixed-width-mode -1) :active t :style radio :selected (not table-fixed-width-mode) :help "A mode that allows automatic horizontal cell expansion"] ["Fixed Width Mode" (table-fixed-width-mode 1) :active t :style radio :selected table-fixed-width-mode :help "A mode that does not allow automatic horizontal cell expansion"]) ("Navigate" ["Forward Cell" table-forward-cell :active (table--probe-cell) :help "Move point forward by cell(s)"] ["Backward Cell" table-backward-cell :active (table--probe-cell) :help "Move point backward by cell(s)"]))))
-                nil [48583 56080])
-            ("when" code nil nil [56563 57032])
-            ("unless" code nil nil [57081 57455])
-            ("table-with-cache-buffer" function (:arguments ("body")) nil [57512 61485])
-            ("if" code nil nil [61486 61673])
-            ("table-put-source-info" function (:arguments ("prop" "value")) nil [61675 61811])
-            ("table-get-source-info" function (:arguments ("prop")) nil [61813 61936])
-            ("dolist" code nil nil [62053 63030])
-            ("dolist" code nil nil [63052 64067])
-            ("dolist" code nil nil [64086 64927])
-            ("dolist" code nil nil [64949 65740])
-            ("table-insert" function
-               (:user-visible-flag t
-                :arguments ("columns" "rows" "cell-width" "cell-height"))
-                nil [65814 74725])
-            ("table-insert-row" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [74742 78556])
-            ("table-insert-column" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [78573 82916])
-            ("table-insert-row-column" function
-               (:user-visible-flag t
-                :arguments ("row-column" "n"))
-                nil [82933 83658])
-            ("table-recognize" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [83675 85448])
-            ("table-unrecognize" function nil nil [85465 85532])
-            ("table-recognize-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "arg"))
-                nil [85549 87215])
-            ("table-unrecognize-region" function (:arguments ("beg" "end")) nil [87232 87332])
-            ("table-recognize-table" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [87349 88023])
-            ("table-unrecognize-table" function nil nil [88040 88119])
-            ("table-recognize-cell" function
-               (:user-visible-flag t
-                :arguments ("force" "no-copy" "arg"))
-                nil [88136 91034])
-            ("table-unrecognize-cell" function nil nil [91051 91136])
-            ("table-heighten-cell" function
-               (:user-visible-flag t
-                :arguments ("n" "no-copy" "no-update"))
-                nil [91153 93736])
-            ("table-shorten-cell" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [93753 100366])
-            ("table-widen-cell" function
-               (:user-visible-flag t
-                :arguments ("n" "no-copy" "no-update"))
-                nil [100383 102934])
-            ("table-narrow-cell" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [102951 107229])
-            ("table-forward-cell" function
-               (:user-visible-flag t
-                :arguments ("arg" "no-recognize" "unrecognize"))
-                nil [107246 112853])
-            ("table-backward-cell" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [112912 113180])
-            ("table-span-cell" function
-               (:user-visible-flag t
-                :arguments ("direction"))
-                nil [113197 117420])
-            ("table-split-cell-vertically" function (:user-visible-flag t) nil [117437 119070])
-            ("table-split-cell-horizontally" function (:user-visible-flag t) nil [119087 122792])
-            ("table-split-cell" function
-               (:user-visible-flag t
-                :arguments ("orientation"))
-                nil [122809 123572])
-            ("table-justify" function
-               (:user-visible-flag t
-                :arguments ("what" "justify"))
-                nil [123589 124249])
-            ("table-justify-cell" function
-               (:user-visible-flag t
-                :arguments ("justify" "paragraph"))
-                nil [124266 124780])
-            ("table-justify-row" function
-               (:user-visible-flag t
-                :arguments ("justify"))
-                nil [124797 125344])
-            ("table-justify-column" function
-               (:user-visible-flag t
-                :arguments ("justify"))
-                nil [125361 125913])
-            ("define-minor-mode" code nil nil [125930 126532])
-            ("table-query-dimension" function
-               (:user-visible-flag t
-                :arguments ("where"))
-                nil [126549 129203])
-            ("table-generate-source" function
-               (:user-visible-flag t
-                :arguments ("language" "dest-buffer" "caption"))
-                nil [129220 134007])
-            ("table--generate-source-prologue" function (:arguments ("dest-buffer" "language" "caption" "col-list" "_row-list")) nil [134009 135467])
-            ("table--generate-source-epilogue" function (:arguments ("dest-buffer" "language" "_col-list" "_row-list")) nil [135469 136218])
-            ("table--generate-source-scan-rows" function (:arguments ("dest-buffer" "language" "_origin-cell" "col-list" "row-list")) nil [136220 137185])
-            ("table--generate-source-cells-in-a-row" function (:arguments ("dest-buffer" "language" "col-list" "row-list")) nil [137187 140494])
-            ("table--generate-source-cell-contents" function (:arguments ("dest-buffer" "language" "cell")) nil [140496 141877])
-            ("table--cell-horizontal-char-p" function (:arguments ("c")) nil [141879 142036])
-            ("table--generate-source-scan-lines" function (:arguments ("dest-buffer" "_language" "origin-cell" "tail-cell" "col-list" "row-list")) nil [142038 145147])
-            ("table-insert-sequence" function
-               (:user-visible-flag t
-                :arguments ("str" "n" "increment" "interval" "justify"))
-                nil [145164 149751])
-            ("table-delete-row" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [149768 152807])
-            ("table-delete-column" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [152824 155004])
-            ("table-capture" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "col-delim-regexp" "row-delim-regexp" "justify" "min-cell-width" "columns"))
-                nil [155021 165526])
-            ("table-release" function (:user-visible-flag t) nil [165543 166991])
-            ("table--make-cell-map" function nil nil [167080 168481])
-            ("add-hook" code nil nil [168602 168653])
-            ("*table--cell-self-insert-command" function (:user-visible-flag t) nil [168655 169269])
-            ("*table--cell-delete-backward-char" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [169271 169422])
-            ("*table--cell-newline" function
-               (:user-visible-flag t
-                :arguments ("indent"))
-                nil [169424 169960])
-            ("*table--cell-open-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [169962 170232])
-            ("*table--cell-newline-and-indent" function (:user-visible-flag t) nil [170234 170367])
-            ("*table--cell-delete-char" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [170369 172345])
-            ("*table--cell-quoted-insert" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [172347 172576])
-            ("*table--cell-describe-mode" function (:user-visible-flag t) nil [172578 173818])
-            ("*table--cell-describe-bindings" function (:user-visible-flag t) nil [173820 174321])
-            ("dabbrev-abbrev-char-regexp" variable nil nil [174323 174358])
-            ("*table--cell-dabbrev-expand" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [174360 174698])
-            ("*table--cell-dabbrev-completion" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [174700 175120])
-            ("*table--present-cell-popup-menu" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [175122 175641])
-            ("table--update-cell" function (:arguments ("now")) nil [175715 177753])
-            ("table--update-cell-widened" function (:arguments ("now")) nil [177755 179377])
-            ("table--update-cell-heightened" function (:arguments ("now")) nil [179379 181061])
-            ("table-goto-top-left-corner" function nil nil [181153 181468])
-            ("table-goto-top-right-corner" function nil nil [181470 181784])
-            ("table-goto-bottom-left-corner" function nil nil [181786 182109])
-            ("table-goto-bottom-right-corner" function nil nil [182111 182433])
-            ("table-function" function (:arguments ("function")) nil [182435 182856])
-            ("table--read-from-minibuffer" function (:arguments ("prompt-history")) nil [182924 183522])
-            ("table--buffer-substring-and-trim" function (:arguments ("beg" "end")) nil [183524 183981])
-            ("table--valign" function nil nil [183983 185434])
-            ("table--query-justification" function nil nil [185436 185804])
-            ("table--spacify-frame" function nil nil [185806 186894])
-            ("table--remove-blank-lines" function (:arguments ("n")) nil [186896 187538])
-            ("table--uniform-list-p" function (:arguments ("l")) nil [187540 187785])
-            ("table--detect-cell-alignment" function (:arguments ("cell")) nil [187787 189718])
-            ("table--string-to-number-list" function (:arguments ("str")) nil [189720 189988])
-            ("table--justify-cell-contents" function (:arguments ("justify" "paragraph")) nil [189990 191203])
-            ("table--horizontally-shift-above-and-below" function (:arguments ("columns-to-extend" "top-to-bottom-coord-list")) nil [191205 193363])
-            ("table--create-growing-space-below" function (:arguments ("lines-to-extend" "left-to-right-coord-list" "bottom-border-y")) nil [193365 194781])
-            ("table--untabify-line" function (:arguments ("from")) nil [194783 195278])
-            ("table--untabify" function (:arguments ("beg" "end")) nil [195280 195451])
-            ("table--multiply-string" function (:arguments ("string" "multiplier")) nil [195453 195687])
-            ("table--line-column-position" function (:arguments ("line" "column")) nil [195689 195872])
-            ("table--row-column-insertion-point-p" function (:arguments ("columnp")) nil [195874 196605])
-            ("table--find-row-column" function (:arguments ("columnp" "no-error")) nil [196607 198066])
-            ("table--min-coord-list" function (:arguments ("coord-list")) nil [198068 199023])
-            ("table--cell-can-split-horizontally-p" function nil nil [199025 199370])
-            ("table--cell-can-split-vertically-p" function nil nil [199372 199708])
-            ("table--cell-can-span-p" function (:arguments ("direction")) nil [199710 201582])
-            ("table--cell-insert-char" function (:arguments ("char" "overwrite")) nil [201584 203710])
-            ("table--finish-delayed-tasks" function nil nil [203712 203986])
-            ("table--log" function (:arguments ("body")) nil [203988 204189])
-            ("table--measure-max-width" function (:arguments ("unlimited")) nil [204191 204842])
-            ("table--cell-to-coord" function (:arguments ("cell")) nil [204844 205046])
-            ("table--cell-list-to-coord-list" function (:arguments ("cell-list")) nil [205048 205734])
-            ("table--test-cell-list" function (:arguments ("horizontal" "reverse" "first-only" "pivot")) nil [205736 206618])
-            ("table--vertical-cell-list" function (:arguments ("top-to-bottom" "first-only" "pivot" "internal-dir" "internal-list" "internal-px")) nil [206620 209018])
-            ("table--horizontal-cell-list" function (:arguments ("left-to-right" "first-only" "pivot" "internal-dir" "internal-list" "internal-py")) nil [209020 211447])
-            ("table--point-in-cell-p" function (:arguments ("location")) nil [211449 211813])
-            ("table--region-in-cell-p" function (:arguments ("beg" "end")) nil [211815 212156])
-            ("table--at-cell-p" function (:arguments ("position" "object" "at-column")) nil [212158 212554])
-            ("table--probe-cell-left-up" function nil nil [212556 214098])
-            ("table--probe-cell-right-bottom" function nil nil [214100 215870])
-            ("table--editable-cell-p" function (:arguments ("_abort-on-error")) nil [215872 216008])
-            ("table--probe-cell" function (:arguments ("abort-on-error")) nil [216010 217753])
-            ("table--insert-rectangle" function (:arguments ("rectangle")) nil [217755 218215])
-            ("table--put-cell-property" function (:arguments ("cell")) nil [218217 218996])
-            ("table--put-cell-line-property" function (:arguments ("beg" "end" "object")) nil [218998 219581])
-            ("table--put-cell-content-property" function (:arguments ("beg" "end" "object")) nil [219583 219905])
-            ("table--put-cell-indicator-property" function (:arguments ("beg" "end" "object")) nil [219907 220177])
-            ("table--put-cell-face-property" function (:arguments ("beg" "end" "object")) nil [220179 220326])
-            ("table--put-cell-keymap-property" function (:arguments ("beg" "end" "object")) nil [220328 220485])
-            ("table--put-cell-rear-nonsticky" function (:arguments ("beg" "end" "object")) nil [220487 220640])
-            ("table--put-cell-point-entered/left-property" function (:arguments ("beg" "end" "object")) nil [220642 220883])
-            ("table--remove-cell-properties" function (:arguments ("beg" "end" "object")) nil [220885 221519])
-            ("table--update-cell-face" function nil nil [221521 221769])
-            ("table--update-cell-face" code nil nil [221771 221796])
-            ("table--get-property" function (:arguments ("cell" "property")) nil [221798 221964])
-            ("table--get-cell-justify-property" function (:arguments ("cell")) nil [221966 222090])
-            ("table--get-cell-valign-property" function (:arguments ("cell")) nil [222092 222225])
-            ("table--put-property" function (:arguments ("cell" "property" "value")) nil [222227 222461])
-            ("table--put-cell-justify-property" function (:arguments ("cell" "justify")) nil [222463 222603])
-            ("table--put-cell-valign-property" function (:arguments ("cell" "valign")) nil [222605 222752])
-            ("table--point-entered/left-cell-function" function (:arguments ("_window" "_oldpos" "dir")) nil [222754 223246])
-            ("table--warn-incompatibility" function nil nil [223248 224586])
-            ("table--cell-blank-str" function (:arguments ("n")) nil [224588 224788])
-            ("table--remove-eol-spaces" function (:arguments ("beg" "end" "bol" "force")) nil [224790 225774])
-            ("table--fill-region" function (:arguments ("beg" "end" "col" "justify")) nil [225776 226693])
-            ("table--fill-region-strictly" function (:arguments ("beg" "end")) nil [226695 227900])
-            ("table--goto-coordinate" function (:arguments ("coordinate" "no-extension" "no-tab-expansion")) nil [227902 229213])
-            ("table--copy-coordinate" function (:arguments ("coord")) nil [229215 229326])
-            ("table--get-coordinate" function (:arguments ("where")) nil [229328 229674])
-            ("table--current-line" function (:arguments ("location")) nil [229676 229922])
-            ("table--transcoord-table-to-cache" function (:arguments ("coordinate")) nil [229924 230270])
-            ("table--transcoord-cache-to-table" function (:arguments ("coordinate")) nil [230272 230605])
-            ("table--offset-coordinate" function (:arguments ("coordinate" "offset" "negative")) nil [230607 230970])
-            ("table--char-in-str-at-column" function (:arguments ("str" "column")) nil [230972 231222])
-            ("table--str-index-at-column" function (:arguments ("str" "column")) nil [231224 231613])
-            ("table--set-timer" function (:arguments ("seconds" "func" "args")) nil [231615 232062])
-            ("table--cancel-timer" function (:arguments ("timer")) nil [232064 232223])
-            ("table--get-last-command" function nil nil [232225 232390])
-            ("run-hooks" code nil nil [232392 232420])
-            ("table" package nil nil [232422 232438]))          
-      :file "table.el"
-      :pointmax 232463
-      :fsize 232462
-      :lastmodtime '(23525 29610 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("tildify" customgroup (:user-visible-flag t) nil [2054 2170])
-            ("tildify-pattern" variable (:default-value "\\(?:[,:;(][ 	]*[a]\\|\\<[AIKOSUVZikosuvz]\\)\\([ 	]+\\|[ 	]*
-[ 	]*\\)\\(?:\\w\\|[([{\\]\\|<[a-zA-Z]\\)") nil [2172 2786])
-            ("tildify-pattern-alist" variable nil nil [2788 4039])
-            ("make-obsolete-variable" code nil nil [4040 4111])
-            ("tildify-space-string" variable (:default-value " ") nil [4113 4832])
-            ("tildify-string-alist" variable nil nil [4834 5931])
-            ("make-obsolete-variable" code nil nil [5932 6031])
-            ("tildify-foreach-region-function" variable (:default-value (quote tildify--deprecated-ignore-evironments)) nil [6033 7067])
-            ("tildify-ignored-environments-alist" variable nil nil [7069 8580])
-            ("make-obsolete-variable" code nil nil [8581 8705])
-            ("tildify-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "dont-ask"))
-                nil [8758 9589])
-            ("tildify-buffer" function
-               (:user-visible-flag t
-                :arguments ("dont-ask"))
-                nil [9606 10097])
-            ("tildify--pick-alist-entry" function (:arguments ("mode-alist" "mode")) nil [10133 10456])
-            ("make-obsolete" code nil nil [10457 10558])
-            ("tildify--deprecated-ignore-evironments" function (:arguments ("callback" "beg" "end")) nil [10560 11157])
-            ("make-obsolete" code nil nil [11158 11272])
-            ("tildify-foreach-ignore-environments" function (:arguments ("pairs" "callback" "_beg" "end")) nil [11274 13123])
-            ("tildify--foreach-region" function (:arguments ("callback" "beg" "end")) nil [13125 13766])
-            ("tildify--find-env" function (:arguments ("regexp" "pairs")) nil [13768 14475])
-            ("tildify-tildify" function (:arguments ("beg" "end" "ask")) nil [14477 16436])
-            ("tildify-space-pattern" variable (:default-value "[,:;(][ 	]*[a]\\|\\<[AIKOSUVWZikosuvwz]") nil [16465 16852])
-            ("tildify-space-predicates" variable (:default-value (quote (tildify-space-region-predicate))) nil [16854 17051])
-            ("tildify-double-space-undos" variable (:default-value t) nil [17053 17224])
-            ("tildify-space" function (:user-visible-flag t) nil [17241 18907])
-            ("tildify-space-region-predicate" function nil nil [18909 19270])
-            ("define-minor-mode" code nil nil [19287 20470])
-            ("tildify" package nil nil [20495 20513]))          
-      :file "tildify.el"
-      :pointmax 20540
-      :fsize 20543
-      :lastmodtime '(23525 29610 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("texinfmt-version" variable (:default-value "2.42 of  7 Jul 2006") nil [1001 1048])
-            ("texinfmt-version" function
-               (:user-visible-flag t
-                :arguments ("here"))
-                nil [1050 1485])
-            ("texinfo" include nil nil [1515 1533])
-            ("texnfo-upd" include nil nil [1585 1606])
-            ("texinfo-vindex" variable nil nil [1662 1685])
-            ("texinfo-findex" variable nil nil [1686 1709])
-            ("texinfo-cindex" variable nil nil [1710 1733])
-            ("texinfo-pindex" variable nil nil [1734 1757])
-            ("texinfo-tindex" variable nil nil [1758 1781])
-            ("texinfo-kindex" variable nil nil [1782 1805])
-            ("texinfo-last-node" variable nil nil [1806 1832])
-            ("texinfo-node-names" variable nil nil [1833 1860])
-            ("texinfo-enclosure-list" variable nil nil [1861 1892])
-            ("texinfo-alias-list" variable nil nil [1893 1920])
-            ("texinfo-fold-nodename-case" variable nil nil [1921 1960])
-            ("texinfo-command-start" variable nil nil [1962 1992])
-            ("texinfo-command-end" variable nil nil [1993 2021])
-            ("texinfo-command-name" variable nil nil [2022 2051])
-            ("texinfo-defun-type" variable nil nil [2052 2079])
-            ("texinfo-last-node-pos" variable nil nil [2080 2110])
-            ("texinfo-stack" variable nil nil [2111 2133])
-            ("texinfo-short-index-cmds-alist" variable nil nil [2134 2173])
-            ("texinfo-short-index-format-cmds-alist" variable nil nil [2174 2220])
-            ("texinfo-format-filename" variable nil nil [2221 2253])
-            ("texinfo-footnote-number" variable nil nil [2254 2286])
-            ("texinfo-raisesections-alist" variable (:default-value (quote ((@chapter . @chapter) (@unnumbered . @unnumbered) (@centerchap . @unnumbered) (@majorheading . @majorheading) (@chapheading . @chapheading) (@appendix . @appendix) (@section . @chapter) (@unnumberedsec . @unnumbered) (@heading . @chapheading) (@appendixsec . @appendix) (@subsection . @section) (@unnumberedsubsec . @unnumberedsec) (@subheading . @heading) (@appendixsubsec . @appendixsec) (@subsubsection . @subsection) (@unnumberedsubsubsec . @unnumberedsubsec) (@subsubheading . @subheading) (@appendixsubsubsec . @appendixsubsec)))) nil [2288 3211])
-            ("texinfo-lowersections-alist" variable (:default-value (quote ((@chapter . @section) (@unnumbered . @unnumberedsec) (@centerchap . @unnumberedsec) (@majorheading . @heading) (@chapheading . @heading) (@appendix . @appendixsec) (@section . @subsection) (@unnumberedsec . @unnumberedsubsec) (@heading . @subheading) (@appendixsec . @appendixsubsec) (@subsection . @subsubsection) (@unnumberedsubsec . @unnumberedsubsubsec) (@subheading . @subsubheading) (@appendixsubsec . @appendixsubsubsec) (@subsubsection . @subsubsection) (@unnumberedsubsubsec . @unnumberedsubsubsec) (@subsubheading . @subsubheading) (@appendixsubsubsec . @appendixsubsubsec)))) nil [3213 4171])
-            ("texinfo-format-syntax-table" variable (:default-value (let ((st (make-syntax-table))) (modify-syntax-entry 34 " " st) (modify-syntax-entry 92 " " st) (modify-syntax-entry 64 "\\" st) (modify-syntax-entry 17 "\\" st) (modify-syntax-entry 91 "." st) (modify-syntax-entry 93 "." st) (modify-syntax-entry 40 "." st) (modify-syntax-entry 41 "." st) (modify-syntax-entry 123 "(}" st) (modify-syntax-entry 125 "){" st) (modify-syntax-entry 39 "." st) st)) nil [4192 4679])
-            ("texinfo-format-buffer" function
-               (:user-visible-flag t
-                :arguments ("nosplit"))
-                nil [4752 5692])
-            ("texinfo-region-buffer-name" variable (:default-value "*Info Region*") nil [5694 5813])
-            ("texinfo-pre-format-hook" variable nil nil [5815 6025])
-            ("tex-start-of-header" variable nil nil [6059 6087])
-            ("tex-end-of-header" variable nil nil [6088 6114])
-            ("texinfo-format-region" function
-               (:user-visible-flag t
-                :arguments ("region-beginning" "region-end"))
-                nil [6131 12591])
-            ("texi2info" function
-               (:user-visible-flag t
-                :arguments ("nosplit"))
-                nil [12608 13659])
-            ("texinfo-format-buffer-1" function nil nil [13727 17941])
-            ("texinfo-format-convert" function (:arguments ("min" "max")) nil [18009 18480])
-            ("texinfo-no-refill-regexp" variable (:default-value (concat "^@" "\\(" "direntry\\|" "lisp\\|" "smalllisp\\|" "example\\|" "smallexample\\|" "display\\|" "smalldisplay\\|" "format\\|" "smallformat\\|" "flushleft\\|" "flushright\\|" "menu\\|" "multitable\\|" "titlepage\\|" "iftex\\|" "ifhtml\\|" "tex\\|" "html" "\\)")) nil [18569 19346])
-            ("texinfo-accent-commands" variable (:default-value (concat "@^\\|" "@`\\|" "@'\\|" "@\"\\|" "@,\\|" "@=\\|" "@~\\|" "@OE{\\|" "@oe{\\|" "@AA{\\|" "@aa{\\|" "@AE{\\|" "@ae{\\|" "@ss{\\|" "@questiondown{\\|" "@exclamdown{\\|" "@L{\\|" "@l{\\|" "@O{\\|" "@o{\\|" "@dotaccent{\\|" "@ubaraccent{\\|" "@d{\\|" "@H{\\|" "@ringaccent{\\|" "@tieaccent{\\|" "@u{\\|" "@v{\\|" "@dotless{")) nil [19348 19801])
-            ("texinfo-part-of-para-regexp" variable (:default-value (concat "^@" "\\(" "b{\\|" "bullet{\\|" "cite{\\|" "code{\\|" "email{\\|" "emph{\\|" "equiv{\\|" "error{\\|" "expansion{\\|" "file{\\|" "i{\\|" "inforef{\\|" "kbd{\\|" "key{\\|" "lisp{\\|" "minus{\\|" "point{\\|" "print{\\|" "pxref{\\|" "r{\\|" "ref{\\|" "result{\\|" "samp{\\|" "sc{\\|" "t{\\|" "TeX{\\|" "today{\\|" "url{\\|" "var{\\|" "w{\\|" "xref{\\|" "@-\\|" texinfo-accent-commands "\\)")) nil [19803 20467])
-            ("texinfo-append-refill" function nil nil [20469 23033])
-            ("texinfo-raise-lower-sections" function nil nil [24097 27129])
-            ("texinfo-format-scan" function nil nil [27224 32038])
-            ("texinfo-copying-text" variable nil nil [32040 32130])
-            ("texinfo-copying" function nil nil [32132 32713])
-            ("texinfo-insertcopying" function nil nil [32715 32934])
-            ("put" code nil nil [32936 32986])
-            ("texinfo-format-begin" function nil nil [32987 33063])
-            ("put" code nil nil [33065 33111])
-            ("texinfo-format-end" function nil nil [33112 33183])
-            ("texinfo-format-begin-end" function (:arguments ("prop")) nil [33185 33391])
-            ("texinfo-parse-line-arg" function nil nil [33417 34387])
-            ("texinfo-parse-expanded-arg" function nil nil [34389 35213])
-            ("texinfo-format-expand-region" function (:arguments ("start" "end")) nil [35215 35492])
-            ("texinfo-parse-arg-discard" function nil nil [35494 35661])
-            ("texinfo-discard-command" function nil nil [35663 35757])
-            ("texinfo-optional-braces-discard" function nil nil [35759 36273])
-            ("texinfo-format-parse-line-args" function nil nil [36275 36875])
-            ("texinfo-format-parse-args" function nil nil [36877 37922])
-            ("texinfo-format-parse-defun-args" function nil nil [37924 38863])
-            ("texinfo-discard-line" function nil nil [38865 39198])
-            ("texinfo-discard-line-with-args" function nil nil [39200 39336])
-            ("put" code nil nil [39504 39566])
-            ("texinfo-format-setfilename" function nil nil [39567 39634])
-            ("put" code nil nil [39668 39716])
-            ("put" code nil nil [39717 39767])
-            ("texinfo-format-node" function nil nil [39768 40622])
-            ("put" code nil nil [40624 40669])
-            ("texinfo-anchor" function nil nil [40670 41256])
-            ("put" code nil nil [41258 41306])
-            ("texinfo-format-menu" function nil nil [41307 41387])
-            ("put" code nil nil [41389 41438])
-            ("put" code nil nil [41902 41957])
-            ("put" code nil nil [41958 42013])
-            ("put" code nil nil [42772 42819])
-            ("put" code nil nil [42821 42869])
-            ("texinfo-format-xref" function nil nil [42870 43282])
-            ("put" code nil nil [43284 43334])
-            ("texinfo-format-pxref" function nil nil [43335 43485])
-            ("put" code nil nil [43616 43670])
-            ("texinfo-format-inforef" function nil nil [43671 43935])
-            ("put" code nil nil [44161 44209])
-            ("texinfo-format-uref" function nil nil [44210 44641])
-            ("put" code nil nil [44667 44726])
-            ("put" code nil nil [44727 44785])
-            ("put" code nil nil [44786 44841])
-            ("put" code nil nil [44842 44896])
-            ("put" code nil nil [44897 44953])
-            ("put" code nil nil [44954 45009])
-            ("put" code nil nil [45010 45068])
-            ("put" code nil nil [45069 45119])
-            ("put" code nil nil [45120 45177])
-            ("put" code nil nil [45178 45235])
-            ("texinfo-format-chapter" function nil nil [45236 45301])
-            ("put" code nil nil [45303 45357])
-            ("put" code nil nil [45358 45413])
-            ("put" code nil nil [45414 45468])
-            ("put" code nil nil [45469 45532])
-            ("put" code nil nil [45533 45595])
-            ("put" code nil nil [45596 45655])
-            ("put" code nil nil [45656 45714])
-            ("put" code nil nil [45715 45776])
-            ("put" code nil nil [45777 45837])
-            ("texinfo-format-section" function nil nil [45838 45903])
-            ("put" code nil nil [45905 45965])
-            ("put" code nil nil [45966 46027])
-            ("put" code nil nil [46028 46088])
-            ("put" code nil nil [46089 46154])
-            ("put" code nil nil [46155 46219])
-            ("put" code nil nil [46220 46287])
-            ("put" code nil nil [46288 46354])
-            ("texinfo-format-subsection" function nil nil [46355 46423])
-            ("put" code nil nil [46425 46491])
-            ("put" code nil nil [46492 46559])
-            ("put" code nil nil [46560 46626])
-            ("put" code nil nil [46627 46698])
-            ("put" code nil nil [46699 46769])
-            ("put" code nil nil [46770 46843])
-            ("put" code nil nil [46844 46916])
-            ("texinfo-format-subsubsection" function nil nil [46917 46988])
-            ("texinfo-format-chapter-1" function (:arguments ("belowchar")) nil [46990 47226])
-            ("put" code nil nil [47228 47288])
-            ("texinfo-format-sectionpad" function nil nil [47289 47551])
-            ("put" code nil nil [47621 47665])
-            ("texinfo-format-." function nil nil [47666 47737])
-            ("put" code nil nil [47739 47783])
-            ("texinfo-format-:" function nil nil [47784 47840])
-            ("put" code nil nil [47842 47895])
-            ("texinfo-format-soft-hyphen" function nil nil [47896 47961])
-            ("put" code nil nil [48174 48242])
-            ("put" code nil nil [48254 48314])
-            ("put" code nil nil [48339 48405])
-            ("put" code nil nil [48406 48472])
-            ("put" code nil nil [48473 48538])
-            ("put" code nil nil [48539 48604])
-            ("put" code nil nil [48605 48672])
-            ("put" code nil nil [48673 48740])
-            ("put" code nil nil [48940 49018])
-            ("texinfo-format-documentdescription" function nil nil [49019 49182])
-            ("put" code nil nil [49214 49266])
-            ("texinfo-format-center" function nil nil [49267 49521])
-            ("put" code nil nil [49523 49567])
-            ("texinfo-format-sp" function nil nil [49568 49693])
-            ("put" code nil nil [49695 49752])
-            ("texinfo-format-paragraph-break" function nil nil [49753 50081])
-            ("texinfo-footnote-style" variable (:default-value "separate") nil [50973 51059])
-            ("put" code nil nil [51061 51120])
-            ("texinfo-footnotestyle" function nil nil [51121 51320])
-            ("put" code nil nil [51322 51378])
-            ("texinfo-format-footnote" function nil nil [51379 51791])
-            ("texinfo-format-separate-node" function nil nil [51793 53882])
-            ("texinfo-format-end-node" function nil nil [53884 54968])
-            ("texinfo-stack-depth" variable nil nil [55495 55655])
-            ("texinfo-push-stack" function (:arguments ("check" "arg")) nil [55657 55819])
-            ("texinfo-pop-stack" function (:arguments ("check")) nil [55821 56193])
-            ("put" code nil nil [56195 56242])
-            ("texinfo-itemize" function nil nil [56243 56499])
-            ("put" code nil nil [56501 56549])
-            ("texinfo-end-itemize" function nil nil [56550 56748])
-            ("put" code nil nil [56750 56801])
-            ("texinfo-enumerate" function nil nil [56802 57265])
-            ("put" code nil nil [57267 57319])
-            ("texinfo-end-enumerate" function nil nil [57320 57522])
-            ("put" code nil nil [57583 57644])
-            ("texinfo-alphaenumerate" function nil nil [57645 57789])
-            ("put" code nil nil [57791 57853])
-            ("texinfo-end-alphaenumerate" function nil nil [57854 58066])
-            ("put" code nil nil [58126 58185])
-            ("texinfo-capsenumerate" function nil nil [58186 58328])
-            ("put" code nil nil [58330 58390])
-            ("texinfo-end-capsenumerate" function nil nil [58391 58601])
-            ("texinfo-do-itemize" function (:arguments ("from")) nil [58739 59089])
-            ("put" code nil nil [59091 59132])
-            ("put" code nil nil [59133 59175])
-            ("texinfo-item" function nil nil [59176 59257])
-            ("put" code nil nil [59259 59309])
-            ("texinfo-itemize-item" function nil nil [59310 59717])
-            ("put" code nil nil [59719 59773])
-            ("texinfo-enumerate-item" function nil nil [59774 60898])
-            ("put" code nil nil [60900 60964])
-            ("texinfo-alphaenumerate-item" function nil nil [60965 61278])
-            ("put" code nil nil [61280 61342])
-            ("texinfo-capsenumerate-item" function nil nil [61343 61654])
-            ("put" code nil nil [61723 61766])
-            ("texinfo-table" function nil nil [61767 62017])
-            ("put" code nil nil [62019 62065])
-            ("texinfo-table-item" function nil nil [62066 62257])
-            ("put" code nil nil [62259 62303])
-            ("texinfo-end-table" function nil nil [62304 62498])
-            ("put" code nil nil [62709 62759])
-            ("put" code nil nil [62760 62815])
-            ("texinfo-description" function nil nil [62816 62948])
-            ("put" code nil nil [63198 63243])
-            ("put" code nil nil [63244 63289])
-            ("texinfo-ftable" function nil nil [63291 63345])
-            ("texinfo-vtable" function nil nil [63346 63400])
-            ("texinfo-indextable" function (:arguments ("table-type")) nil [63402 63542])
-            ("put" code nil nil [63600 63648])
-            ("put" code nil nil [63649 63697])
-            ("texinfo-ftable-item" function nil nil [63699 63771])
-            ("texinfo-vtable-item" function nil nil [63772 63844])
-            ("texinfo-indextable-item" function (:arguments ("index-type")) nil [63846 64195])
-            ("put" code nil nil [64233 64279])
-            ("put" code nil nil [64280 64326])
-            ("texinfo-end-ftable" function nil nil [64328 64390])
-            ("texinfo-end-vtable" function nil nil [64391 64453])
-            ("texinfo-end-indextable" function (:arguments ("table-type")) nil [64455 64668])
-            ("texinfo-extra-inter-column-width" variable nil nil [67773 67885])
-            ("texinfo-multitable-buffer-name" variable (:default-value "*multitable-temporary-buffer*") nil [67887 67958])
-            ("texinfo-multitable-rectangle-name" variable (:default-value "texinfo-multitable-temp-") nil [67959 68028])
-            ("put" code nil nil [68095 68167])
-            ("put" code nil nil [68168 68242])
-            ("put" code nil nil [68243 68317])
-            ("put" code nil nil [68318 68392])
-            ("put" code nil nil [68394 68447])
-            ("texinfo-multitable" function nil nil [68449 70021])
-            ("put" code nil nil [70023 70077])
-            ("texinfo-end-multitable" function nil nil [70078 70243])
-            ("texinfo-multitable-widths" function nil nil [70245 72786])
-            ("texinfo-multitable-extract-row" function nil nil [72821 73487])
-            ("put" code nil nil [73489 73545])
-            ("texinfo-multitable-item" function nil nil [73546 78561])
-            ("put" code nil nil [78669 78719])
-            ("texinfo-format-image" function nil nil [78720 79321])
-            ("put" code nil nil [79463 79514])
-            ("put" code nil nil [79515 79566])
-            ("put" code nil nil [79568 79618])
-            ("texinfo-format-iftex" function nil nil [79619 79748])
-            ("put" code nil nil [79750 79802])
-            ("texinfo-format-ifhtml" function nil nil [79803 79934])
-            ("put" code nil nil [79936 79998])
-            ("texinfo-format-ifplaintext" function nil nil [79999 80140])
-            ("put" code nil nil [80142 80192])
-            ("texinfo-format-ifxml" function nil nil [80193 80363])
-            ("put" code nil nil [80365 80411])
-            ("texinfo-format-tex" function nil nil [80412 80537])
-            ("put" code nil nil [80539 80587])
-            ("texinfo-format-html" function nil nil [80588 80715])
-            ("put" code nil nil [80717 80763])
-            ("texinfo-format-xml" function nil nil [80764 80930])
-            ("put" code nil nil [80932 80990])
-            ("texinfo-format-ifnotinfo" function nil nil [80991 81128])
-            ("put" code nil nil [81130 81189])
-            ("put" code nil nil [81190 81249])
-            ("put" code nil nil [81251 81304])
-            ("put" code nil nil [81305 81358])
-            ("put" code nil nil [81360 81414])
-            ("put" code nil nil [81415 81469])
-            ("put" code nil nil [81471 81524])
-            ("put" code nil nil [81525 81578])
-            ("put" code nil nil [81598 81656])
-            ("texinfo-format-titlepage" function nil nil [81657 81794])
-            ("put" code nil nil [81796 81853])
-            ("put" code nil nil [81926 81984])
-            ("texinfo-format-titlespec" function nil nil [81985 82122])
-            ("put" code nil nil [82124 82181])
-            ("put" code nil nil [82197 82247])
-            ("texinfo-format-today" function nil nil [82379 82483])
-            ("put" code nil nil [82584 82642])
-            ("texinfo-format-timestamp" function nil nil [82717 82949])
-            ("put" code nil nil [82966 83018])
-            ("texinfo-format-ignore" function nil nil [83019 83150])
-            ("put" code nil nil [83152 83206])
-            ("put" code nil nil [85728 85796])
-            ("texinfo-define-info-enclosure" function nil nil [85797 86208])
-            ("put" code nil nil [86224 86267])
-            ("texinfo-alias" function nil nil [86268 86671])
-            ("put" code nil nil [86705 86751])
-            ("put" code nil nil [86815 86860])
-            ("put" code nil nil [86985 87035])
-            ("texinfo-format-var" function nil nil [87036 87166])
-            ("put" code nil nil [87168 87216])
-            ("put" code nil nil [87217 87265])
-            ("put" code nil nil [87298 87349])
-            ("put" code nil nil [87386 87433])
-            ("put" code nil nil [87434 87482])
-            ("put" code nil nil [87483 87531])
-            ("put" code nil nil [87532 87579])
-            ("texinfo-format-code" function nil nil [87580 87693])
-            ("put" code nil nil [87894 87946])
-            ("texinfo-format-option" function nil nil [87947 88399])
-            ("put" code nil nil [88401 88449])
-            ("put" code nil nil [88450 88500])
-            ("texinfo-format-emph" function nil nil [88501 88614])
-            ("put" code nil nil [88616 88663])
-            ("put" code nil nil [88664 88712])
-            ("texinfo-format-defn" function nil nil [88713 88828])
-            ("put" code nil nil [88830 88880])
-            ("texinfo-format-email" function nil nil [88881 89246])
-            ("put" code nil nil [89248 89294])
-            ("texinfo-format-key" function nil nil [89364 89468])
-            ("put" code nil nil [89527 89575])
-            ("texinfo-format-verb" function nil nil [89576 90308])
-            ("put" code nil nil [90481 90533])
-            ("texinfo-format-bullet" function nil nil [90534 90694])
-            ("texinfo-format-kbd-regexp" variable (:default-value (concat "^@" "\\(" "display\\|" "example\\|" "smallexample\\|" "lisp\\|" "smalllisp" "\\)")) nil [90887 91117])
-            ("texinfo-format-kbd-end-regexp" variable (:default-value (concat "^@end " "\\(" "display\\|" "example\\|" "smallexample\\|" "lisp\\|" "smalllisp" "\\)")) nil [91119 91405])
-            ("put" code nil nil [91407 91453])
-            ("texinfo-format-kbd" function nil nil [91454 92690])
-            ("put" code nil nil [92783 92837])
-            ("put" code nil nil [92838 92897])
-            ("put" code nil nil [92898 92952])
-            ("put" code nil nil [92953 93004])
-            ("put" code nil nil [93005 93061])
-            ("put" code nil nil [93062 93121])
-            ("put" code nil nil [93122 93178])
-            ("texinfo-format-example" function nil nil [93179 93312])
-            ("put" code nil nil [93314 93362])
-            ("put" code nil nil [93363 93411])
-            ("put" code nil nil [93412 93465])
-            ("put" code nil nil [93466 93511])
-            ("put" code nil nil [93512 93562])
-            ("put" code nil nil [93563 93616])
-            ("put" code nil nil [93617 93667])
-            ("texinfo-end-example" function nil nil [93668 93866])
-            ("put" code nil nil [93868 93920])
-            ("texinfo-format-exdent" function nil nil [93921 94274])
-            ("put" code nil nil [94309 94365])
-            ("texinfo-format-direntry" function nil nil [94366 94498])
-            ("put" code nil nil [94500 94550])
-            ("texinfo-end-direntry" function nil nil [94551 94678])
-            ("put" code nil nil [94680 94742])
-            ("texinfo-format-dircategory" function nil nil [94743 94996])
-            ("put" code nil nil [95122 95176])
-            ("put" code nil nil [95177 95231])
-            ("put" code nil nil [95563 95618])
-            ("put" code nil nil [95619 95679])
-            ("put" code nil nil [95680 95738])
-            ("texinfo-format-flushleft" function nil nil [95739 95799])
-            ("put" code nil nil [95801 95850])
-            ("put" code nil nil [95851 95905])
-            ("put" code nil nil [95906 95958])
-            ("texinfo-end-flushleft" function nil nil [95959 96019])
-            ("put" code nil nil [96238 96298])
-            ("texinfo-format-flushright" function nil nil [96299 96399])
-            ("put" code nil nil [96401 96455])
-            ("texinfo-end-flushright" function nil nil [96456 96626])
-            ("texinfo-do-flushright" function (:arguments ("from")) nil [96628 97036])
-            ("put" code nil nil [97103 97151])
-            ("texinfo-format-ctrl" function nil nil [97152 97264])
-            ("put" code nil nil [97266 97312])
-            ("texinfo-format-TeX" function nil nil [97313 97389])
-            ("put" code nil nil [97391 97449])
-            ("texinfo-format-copyright" function nil nil [97450 97532])
-            ("put" code nil nil [97534 97584])
-            ("texinfo-format-minus" function nil nil [97585 97744])
-            ("put" code nil nil [97746 97794])
-            ("texinfo-format-dots" function nil nil [97795 97872])
-            ("put" code nil nil [97874 97928])
-            ("texinfo-format-enddots" function nil nil [97929 98010])
-            ("put" code nil nil [98012 98064])
-            ("texinfo-format-pounds" function nil nil [98065 98142])
-            ("texinfo-paragraph-indent" variable (:default-value "asis") nil [98704 98821])
-            ("put" code nil nil [98823 98886])
-            ("texinfo-paragraphindent" function nil nil [98888 99221])
-            ("put" code nil nil [99223 99275])
-            ("texinfo-format-refill" function nil nil [99276 101007])
-            ("put" code nil nil [101009 101058])
-            ("texinfo-noindent" function nil nil [101059 101317])
-            ("put" code nil nil [101343 101395])
-            ("texinfo-format-vindex" function nil nil [101396 101462])
-            ("put" code nil nil [101464 101516])
-            ("texinfo-format-cindex" function nil nil [101517 101583])
-            ("put" code nil nil [101585 101637])
-            ("texinfo-format-findex" function nil nil [101638 101704])
-            ("put" code nil nil [101706 101758])
-            ("texinfo-format-pindex" function nil nil [101759 101825])
-            ("put" code nil nil [101827 101879])
-            ("texinfo-format-tindex" function nil nil [101880 101946])
-            ("put" code nil nil [101948 102000])
-            ("texinfo-format-kindex" function nil nil [102001 102067])
-            ("texinfo-index" function (:arguments ("indexvar")) nil [102069 102525])
-            ("texinfo-indexvar-alist" variable (:default-value (quote (("cp" . texinfo-cindex) ("fn" . texinfo-findex) ("vr" . texinfo-vindex) ("tp" . texinfo-tindex) ("pg" . texinfo-pindex) ("ky" . texinfo-kindex)))) nil [102527 102727])
-            ("put" code nil nil [102761 102817])
-            ("put" code nil nil [102818 102878])
-            ("texinfo-format-defindex" function nil nil [102880 103834])
-            ("put" code nil nil [103869 103925])
-            ("put" code nil nil [103926 103986])
-            ("texinfo-format-synindex" function nil nil [103988 104748])
-            ("texinfo-short-index-cmds-alist" variable
-               (:constant-flag t
-                :default-value (quote (("cp" . cindex) ("fn" . findex) ("vr" . vindex) ("tp" . tindex) ("pg" . pindex) ("ky" . kindex))))
-                nil [104750 104912])
-            ("texinfo-short-index-format-cmds-alist" variable
-               (:constant-flag t
-                :default-value (quote (("cp" . texinfo-format-cindex) ("fn" . texinfo-format-findex) ("vr" . texinfo-format-vindex) ("tp" . texinfo-format-tindex) ("pg" . texinfo-format-pindex) ("ky" . texinfo-format-kindex))))
-                nil [104914 105173])
-            ("texinfo-sort-region" function (:arguments ("start" "end")) nil [105268 105480])
-            ("texinfo-sort-startkeyfun" function nil nil [105581 105972])
-            ("put" code nil nil [105993 106053])
-            ("texinfo-format-printindex" function nil nil [106055 106738])
-            ("texinfo-print-index" function (:arguments ("file" "indexelts")) nil [106740 107410])
-            ("put" code nil nil [107805 107855])
-            ("texinfo-format-equiv" function nil nil [107856 107933])
-            ("put" code nil nil [107935 107985])
-            ("texinfo-format-error" function nil nil [107986 108069])
-            ("put" code nil nil [108071 108129])
-            ("texinfo-format-expansion" function nil nil [108130 108212])
-            ("put" code nil nil [108214 108264])
-            ("texinfo-format-point" function nil nil [108265 108343])
-            ("put" code nil nil [108345 108395])
-            ("texinfo-format-print" function nil nil [108396 108473])
-            ("put" code nil nil [108475 108527])
-            ("texinfo-format-result" function nil nil [108528 108606])
-            ("put" code nil nil [112298 112358])
-            ("texinfo-format-French-OE-ligature" function nil nil [112359 112485])
-            ("put" code nil nil [112516 112576])
-            ("texinfo-format-French-oe-ligature" function nil nil [112577 112717])
-            ("put" code nil nil [112782 112850])
-            ("texinfo-format-Scandinavian-A-with-circle" function nil nil [112851 112985])
-            ("put" code nil nil [113016 113084])
-            ("texinfo-format-Scandinavian-a-with-circle" function nil nil [113085 113233])
-            ("put" code nil nil [113293 113356])
-            ("texinfo-format-Latin-Scandinavian-AE" function nil nil [113357 113486])
-            ("put" code nil nil [113517 113580])
-            ("texinfo-format-Latin-Scandinavian-ae" function nil nil [113581 113725])
-            ("put" code nil nil [113778 113834])
-            ("texinfo-format-German-sharp-S" function nil nil [113835 113957])
-            ("put" code nil nil [114021 114098])
-            ("texinfo-format-upside-down-question-mark" function nil nil [114099 114231])
-            ("put" code nil nil [114298 114376])
-            ("texinfo-format-upside-down-exclamation-mark" function nil nil [114377 114512])
-            ("put" code nil nil [114579 114639])
-            ("texinfo-format-Polish-suppressed-L" function nil nil [114640 114767])
-            ("put" code nil nil [114847 114918])
-            ("texinfo-format-Polish-suppressed-l-lower-case" function nil nil [114919 115057])
-            ("put" code nil nil [115122 115188])
-            ("texinfo-format-Scandinavian-O-with-slash" function nil nil [115189 115322])
-            ("put" code nil nil [115399 115476])
-            ("texinfo-format-Scandinavian-o-with-slash-lower-case" function nil nil [115477 115621])
-            ("put" code nil nil [115693 115749])
-            ("texinfo-format-cedilla-accent" function nil nil [115750 115870])
-            ("put" code nil nil [115924 115987])
-            ("texinfo-format-overdot-accent" function nil nil [115988 116108])
-            ("put" code nil nil [116162 116227])
-            ("texinfo-format-underbar-accent" function nil nil [116228 116350])
-            ("put" code nil nil [116404 116469])
-            ("texinfo-format-underdot-accent" function nil nil [116470 116593])
-            ("put" code nil nil [116653 116715])
-            ("texinfo-format-long-Hungarian-umlaut" function nil nil [116716 116847])
-            ("put" code nil nil [116897 116958])
-            ("texinfo-format-ring-accent" function nil nil [116959 117077])
-            ("put" code nil nil [117132 117197])
-            ("texinfo-format-tie-after-accent" function nil nil [117198 117321])
-            ("put" code nil nil [117373 117426])
-            ("texinfo-format-breve-accent" function nil nil [117427 117546])
-            ("put" code nil nil [117597 117650])
-            ("texinfo-format-hacek-accent" function nil nil [117651 117770])
-            ("put" code nil nil [117833 117887])
-            ("texinfo-format-dotless" function nil nil [117888 117999])
-            ("texinfo-format-defun" function nil nil [120025 120158])
-            ("texinfo-end-defun" function nil nil [120160 120458])
-            ("texinfo-format-defunx" function nil nil [120460 120523])
-            ("texinfo-format-defun-1" function (:arguments ("first-p")) nil [120525 121189])
-            ("put" code nil nil [121264 121333])
-            ("put" code nil nil [121334 121404])
-            ("put" code nil nil [121405 121474])
-            ("put" code nil nil [121475 121545])
-            ("put" code nil nil [121546 121615])
-            ("put" code nil nil [121616 121686])
-            ("texinfo-format-deffn" function (:arguments ("parsed-args")) nil [121687 122401])
-            ("put" code nil nil [122471 122557])
-            ("put" code nil nil [122558 122645])
-            ("put" code nil nil [122646 122733])
-            ("put" code nil nil [122734 122822])
-            ("put" code nil nil [122823 122911])
-            ("put" code nil nil [122912 123001])
-            ("put" code nil nil [123002 123089])
-            ("put" code nil nil [123090 123178])
-            ("put" code nil nil [123179 123266])
-            ("put" code nil nil [123267 123355])
-            ("texinfo-format-specialized-defun" function (:arguments ("parsed-args")) nil [123356 124038])
-            ("put" code nil nil [124085 124162])
-            ("put" code nil nil [124163 124241])
-            ("put" code nil nil [124242 124319])
-            ("put" code nil nil [124320 124398])
-            ("texinfo-format-deftypefn" function (:arguments ("parsed-args")) nil [124399 125067])
-            ("put" code nil nil [125116 125195])
-            ("put" code nil nil [125196 125281])
-            ("put" code nil nil [125282 125361])
-            ("put" code nil nil [125362 125447])
-            ("texinfo-format-deftypefun" function (:arguments ("parsed-args")) nil [125448 126152])
-            ("put" code nil nil [126193 126262])
-            ("put" code nil nil [126263 126333])
-            ("texinfo-format-defop" function (:arguments ("parsed-args")) nil [126334 126854])
-            ("put" code nil nil [126895 126964])
-            ("put" code nil nil [126965 127035])
-            ("texinfo-format-defcv" function (:arguments ("parsed-args")) nil [127036 127544])
-            ("put" code nil nil [127589 127666])
-            ("put" code nil nil [127667 127745])
-            ("texinfo-format-defmethod" function (:arguments ("parsed-args")) nil [127746 128319])
-            ("put" code nil nil [128362 128435])
-            ("put" code nil nil [128436 128510])
-            ("texinfo-format-defivar" function (:arguments ("parsed-args")) nil [128511 129078])
-            ("put" code nil nil [130085 130151])
-            ("put" code nil nil [130152 130219])
-            ("put" code nil nil [130220 130287])
-            ("put" code nil nil [130288 130356])
-            ("put" code nil nil [130357 130425])
-            ("put" code nil nil [130426 130495])
-            ("put" code nil nil [130496 130563])
-            ("put" code nil nil [130564 130632])
-            ("put" code nil nil [130633 130701])
-            ("put" code nil nil [130702 130771])
-            ("texinfo-index-defun" function (:arguments ("parsed-args")) nil [130772 131377])
-            ("put" code nil nil [131379 131445])
-            ("put" code nil nil [131446 131513])
-            ("put" code nil nil [131514 131580])
-            ("put" code nil nil [131581 131648])
-            ("put" code nil nil [131649 131715])
-            ("put" code nil nil [131716 131783])
-            ("put" code nil nil [131784 131855])
-            ("put" code nil nil [131856 131928])
-            ("put" code nil nil [131929 132000])
-            ("put" code nil nil [132001 132073])
-            ("texinfo-index-deffn" function (:arguments ("parsed-args")) nil [132074 132684])
-            ("put" code nil nil [132686 132760])
-            ("put" code nil nil [132761 132836])
-            ("put" code nil nil [132837 132911])
-            ("put" code nil nil [132912 132987])
-            ("texinfo-index-deftypefn" function (:arguments ("parsed-args")) nil [132988 133609])
-            ("put" code nil nil [133611 133685])
-            ("put" code nil nil [133686 133761])
-            ("texinfo-index-defmethod" function (:arguments ("parsed-args")) nil [133762 134460])
-            ("put" code nil nil [134462 134528])
-            ("put" code nil nil [134529 134596])
-            ("texinfo-index-defop" function (:arguments ("parsed-args")) nil [134597 135303])
-            ("put" code nil nil [135305 135375])
-            ("put" code nil nil [135376 135447])
-            ("texinfo-index-defivar" function (:arguments ("parsed-args")) nil [135448 136144])
-            ("put" code nil nil [136146 136212])
-            ("put" code nil nil [136213 136280])
-            ("texinfo-index-defcv" function (:arguments ("parsed-args")) nil [136281 136987])
-            ("put" code nil nil [137736 137786])
-            ("put" code nil nil [137787 137839])
-            ("put" code nil nil [137840 137884])
-            ("put" code nil nil [137885 137936])
-            ("put" code nil nil [137937 137989])
-            ("put" code nil nil [137990 138039])
-            ("put" code nil nil [138040 138090])
-            ("put" code nil nil [138092 138142])
-            ("put" code nil nil [138143 138195])
-            ("put" code nil nil [138196 138240])
-            ("put" code nil nil [138241 138299])
-            ("put" code nil nil [138300 138359])
-            ("put" code nil nil [138360 138409])
-            ("put" code nil nil [138410 138460])
-            ("put" code nil nil [138462 138513])
-            ("put" code nil nil [138514 138567])
-            ("put" code nil nil [138568 138613])
-            ("put" code nil nil [138614 138670])
-            ("put" code nil nil [138671 138728])
-            ("put" code nil nil [138729 138779])
-            ("put" code nil nil [138780 138831])
-            ("put" code nil nil [138833 138885])
-            ("put" code nil nil [138886 138940])
-            ("put" code nil nil [138941 138987])
-            ("put" code nil nil [138988 139052])
-            ("put" code nil nil [139053 139118])
-            ("put" code nil nil [139119 139170])
-            ("put" code nil nil [139171 139223])
-            ("put" code nil nil [139225 139275])
-            ("put" code nil nil [139276 139328])
-            ("put" code nil nil [139329 139373])
-            ("put" code nil nil [139374 139425])
-            ("put" code nil nil [139426 139478])
-            ("put" code nil nil [139479 139528])
-            ("put" code nil nil [139529 139579])
-            ("put" code nil nil [139581 139632])
-            ("put" code nil nil [139633 139686])
-            ("put" code nil nil [139687 139732])
-            ("put" code nil nil [139733 139792])
-            ("put" code nil nil [139793 139853])
-            ("put" code nil nil [139854 139904])
-            ("put" code nil nil [139905 139956])
-            ("put" code nil nil [139958 140011])
-            ("put" code nil nil [140012 140067])
-            ("put" code nil nil [140068 140115])
-            ("put" code nil nil [140116 140177])
-            ("put" code nil nil [140178 140240])
-            ("put" code nil nil [140241 140293])
-            ("put" code nil nil [140294 140347])
-            ("put" code nil nil [140349 140400])
-            ("put" code nil nil [140401 140454])
-            ("put" code nil nil [140455 140500])
-            ("put" code nil nil [140501 140559])
-            ("put" code nil nil [140560 140619])
-            ("put" code nil nil [140620 140670])
-            ("put" code nil nil [140671 140722])
-            ("put" code nil nil [140724 140775])
-            ("put" code nil nil [140776 140829])
-            ("put" code nil nil [140830 140875])
-            ("put" code nil nil [140876 140938])
-            ("put" code nil nil [140939 141002])
-            ("put" code nil nil [141003 141053])
-            ("put" code nil nil [141054 141105])
-            ("put" code nil nil [141107 141157])
-            ("put" code nil nil [141158 141210])
-            ("put" code nil nil [141211 141255])
-            ("put" code nil nil [141256 141307])
-            ("put" code nil nil [141308 141360])
-            ("put" code nil nil [141361 141410])
-            ("put" code nil nil [141411 141461])
-            ("put" code nil nil [141511 141561])
-            ("put" code nil nil [141562 141614])
-            ("put" code nil nil [141615 141659])
-            ("put" code nil nil [141660 141711])
-            ("put" code nil nil [141712 141764])
-            ("put" code nil nil [141765 141814])
-            ("put" code nil nil [141815 141865])
-            ("put" code nil nil [141867 141921])
-            ("put" code nil nil [141922 141978])
-            ("put" code nil nil [141979 142027])
-            ("put" code nil nil [142028 142092])
-            ("put" code nil nil [142093 142158])
-            ("put" code nil nil [142159 142212])
-            ("put" code nil nil [142213 142267])
-            ("put" code nil nil [142269 142319])
-            ("put" code nil nil [142320 142372])
-            ("put" code nil nil [142373 142417])
-            ("put" code nil nil [142418 142469])
-            ("put" code nil nil [142470 142522])
-            ("put" code nil nil [142523 142572])
-            ("put" code nil nil [142573 142623])
-            ("put" code nil nil [142625 142677])
-            ("put" code nil nil [142678 142732])
-            ("put" code nil nil [142733 142779])
-            ("put" code nil nil [142780 142853])
-            ("put" code nil nil [142854 142928])
-            ("put" code nil nil [142929 142980])
-            ("put" code nil nil [142981 143033])
-            ("put" code nil nil [143070 143124])
-            ("put" code nil nil [143125 143181])
-            ("put" code nil nil [143182 143230])
-            ("put" code nil nil [143231 143290])
-            ("put" code nil nil [143291 143351])
-            ("put" code nil nil [143352 143405])
-            ("put" code nil nil [143406 143460])
-            ("put" code nil nil [143462 143517])
-            ("put" code nil nil [143518 143575])
-            ("put" code nil nil [143576 143625])
-            ("put" code nil nil [143626 143694])
-            ("put" code nil nil [143695 143764])
-            ("put" code nil nil [143765 143819])
-            ("put" code nil nil [143820 143875])
-            ("put" code nil nil [143877 143931])
-            ("put" code nil nil [143932 143988])
-            ("put" code nil nil [143989 144037])
-            ("put" code nil nil [144038 144097])
-            ("put" code nil nil [144098 144158])
-            ("put" code nil nil [144159 144212])
-            ("put" code nil nil [144213 144267])
-            ("put" code nil nil [144269 144324])
-            ("put" code nil nil [144325 144382])
-            ("put" code nil nil [144383 144432])
-            ("put" code nil nil [144433 144501])
-            ("put" code nil nil [144502 144571])
-            ("put" code nil nil [144572 144626])
-            ("put" code nil nil [144627 144682])
-            ("put" code nil nil [145375 145418])
-            ("texinfo-clear" function nil nil [145419 145716])
-            ("put" code nil nil [145718 145757])
-            ("texinfo-set" function nil nil [145758 146300])
-            ("put" code nil nil [146302 146345])
-            ("texinfo-value" function nil nil [146346 147158])
-            ("put" code nil nil [147160 147210])
-            ("put" code nil nil [147211 147255])
-            ("texinfo-if-set" function nil nil [147256 148012])
-            ("put" code nil nil [148014 148066])
-            ("put" code nil nil [148067 148115])
-            ("texinfo-if-clear" function nil nil [148116 148876])
-            ("put" code nil nil [148890 148938])
-            ("texinfo-format-ifeq" function nil nil [148939 150537])
-            ("put" code nil nil [151725 151777])
-            ("put" code nil nil [154149 154194])
-            ("put" code nil nil [154195 154240])
-            ("put" code nil nil [154241 154286])
-            ("put" code nil nil [154287 154332])
-            ("put" code nil nil [154333 154378])
-            ("put" code nil nil [154379 154427])
-            ("put" code nil nil [154428 154475])
-            ("put" code nil nil [154476 154524])
-            ("put" code nil nil [154525 154578])
-            ("texinfo-format-noop" function nil nil [154579 154684])
-            ("put" code nil nil [154745 154812])
-            ("texinfo-discard-command-and-arg" function nil nil [154813 155060])
-            ("put" code nil nil [155187 155235])
-            ("put" code nil nil [155236 155290])
-            ("put" code nil nil [155291 155344])
-            ("put" code nil nil [155345 155402])
-            ("put" code nil nil [155403 155458])
-            ("put" code nil nil [155459 155512])
-            ("put" code nil nil [155513 155566])
-            ("put" code nil nil [155567 155622])
-            ("put" code nil nil [155623 155678])
-            ("put" code nil nil [155679 155734])
-            ("put" code nil nil [155735 155790])
-            ("put" code nil nil [155849 155905])
-            ("put" code nil nil [155906 155968])
-            ("put" code nil nil [155969 156032])
-            ("put" code nil nil [156033 156090])
-            ("put" code nil nil [156091 156151])
-            ("put" code nil nil [156152 156215])
-            ("put" code nil nil [156216 156286])
-            ("put" code nil nil [156287 156347])
-            ("put" code nil nil [156348 156413])
-            ("put" code nil nil [156414 156482])
-            ("put" code nil nil [156483 156542])
-            ("put" code nil nil [156543 156604])
-            ("put" code nil nil [156919 156984])
-            ("put" code nil nil [156986 157045])
-            ("put" code nil nil [157046 157110])
-            ("put" code nil nil [157111 157175])
-            ("put" code nil nil [157176 157248])
-            ("put" code nil nil [157249 157308])
-            ("put" code nil nil [157310 157395])
-            ("put" code nil nil [157396 157486])
-            ("put" code nil nil [157488 157551])
-            ("put" code nil nil [157552 157611])
-            ("put" code nil nil [157612 157680])
-            ("put" code nil nil [157681 157750])
-            ("put" code nil nil [157751 157821])
-            ("put" code nil nil [157822 157882])
-            ("put" code nil nil [157884 157955])
-            ("put" code nil nil [157956 158027])
-            ("texinfo-unsupported" function nil nil [158069 158224])
-            ("batch-texinfo-format" function nil nil [158249 160723])
-            ("texinfmt" package nil nil [160763 160782]))          
-      :file "texinfmt.el"
-      :pointmax 160810
-      :fsize 160809
-      :lastmodtime '(23525 29610 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("texinfo" include nil nil [7512 7530])
-            ("texinfo-master-menu-header" variable (:default-value " --- The Detailed Node Listing ---
-") nil [7533 7727])
-            ("texinfo-section-types-regexp" variable (:default-value "^@\\(chapter \\|sect\\|subs\\|subh\\|unnum\\|major\\|chapheading \\|heading \\|appendix\\)") nil [7788 7997])
-            ("texinfo-section-level-regexp" variable (:default-value (regexp-opt (texinfo-filter 3 texinfo-section-list))) nil [7999 8164])
-            ("texinfo-subsection-level-regexp" variable (:default-value (regexp-opt (texinfo-filter 4 texinfo-section-list))) nil [8166 8337])
-            ("texinfo-subsubsection-level-regexp" variable (:default-value (regexp-opt (texinfo-filter 5 texinfo-section-list))) nil [8339 8516])
-            ("texinfo-update-menu-same-level-regexps" variable (:default-value (quote ((1 . "top[ 	]+") (2 concat "\\(^@\\)\\(" texinfo-chapter-level-regexp "\\)\\>[ 	]*") (3 concat "\\(^@\\)\\(" texinfo-section-level-regexp "\\)\\>[ 	]*") (4 concat "\\(^@\\)\\(" texinfo-subsection-level-regexp "\\)\\>[ 	]+") (5 concat "\\(^@\\)\\(" texinfo-subsubsection-level-regexp "\\)\\>[ 	]+")))) nil [8518 9090])
-            ("texinfo-update-menu-higher-regexps" variable (:default-value (quote ((1 . "^@node [ 	]*DIR") (2 . "^@node [ 	]*top[ 	]*\\(,\\|$\\)") (3 concat "\\(^@\\(" texinfo-chapter-level-regexp "\\)\\>[ 	]*\\)") (4 concat "\\(^@\\(" texinfo-section-level-regexp "\\|" texinfo-chapter-level-regexp "\\)\\>[ 	]*\\)") (5 concat "\\(^@\\(" texinfo-subsection-level-regexp "\\|" texinfo-section-level-regexp "\\|" texinfo-chapter-level-regexp "\\)\\>[ 	]*\\)")))) nil [9092 9842])
-            ("texinfo-update-menu-lower-regexps" variable (:default-value (quote ((1 concat "\\(^@\\(" texinfo-chapter-level-regexp "\\|" texinfo-section-level-regexp "\\|" texinfo-subsection-level-regexp "\\|" texinfo-subsubsection-level-regexp "\\)\\>[ 	]*\\)") (2 concat "\\(^@\\(" texinfo-section-level-regexp "\\|" texinfo-subsection-level-regexp "\\|" texinfo-subsubsection-level-regexp "\\)\\>[ 	]*\\)") (3 concat "\\(^@\\(" texinfo-subsection-level-regexp "\\|" texinfo-subsubsection-level-regexp "\\)\\>[ 	]+\\)") (4 concat "\\(^@\\(" texinfo-subsubsection-level-regexp "\\)\\>[ 	]+\\)") (5 . "a\\(^\\)")))) nil [9844 10878])
-            ("texinfo-make-menu" function
-               (:user-visible-flag t
-                :arguments ("beginning" "end"))
-                nil [10882 12854])
-            ("texinfo-make-one-menu" function (:arguments ("level")) nil [12856 13797])
-            ("texinfo-all-menus-update" function
-               (:user-visible-flag t
-                :arguments ("update-all-nodes-p"))
-                nil [13799 15858])
-            ("texinfo-find-lower-level-node" function (:arguments ("level" "region-end")) nil [15860 17061])
-            ("texinfo-find-higher-level-node" function (:arguments ("level" "region-end")) nil [17063 18253])
-            ("texinfo-make-menu-list" function (:arguments ("beginning" "end" "level")) nil [18298 19185])
-            ("texinfo-menu-locate-entry-p" function (:arguments ("level" "search-end")) nil [19187 20292])
-            ("texinfo-copy-node-name" function nil nil [20294 20916])
-            ("texinfo-copy-section-title" function nil nil [20918 21729])
-            ("texinfo-old-menu-p" function (:arguments ("beginning" "first")) nil [21760 22421])
-            ("texinfo-incorporate-descriptions" function (:arguments ("new-menu-list")) nil [22423 23714])
-            ("texinfo-incorporate-menu-entry-names" function (:arguments ("new-menu-list")) nil [23716 25120])
-            ("texinfo-menu-copy-old-description" function (:arguments ("end-of-menu")) nil [25122 25992])
-            ("texinfo-menu-end" function nil nil [25994 26233])
-            ("texinfo-delete-old-menu" function (:arguments ("beginning" "first")) nil [26235 26706])
-            ("texinfo-column-for-description" variable (:default-value 32) nil [26770 26870])
-            ("texinfo-insert-menu" function (:arguments ("menu-list" "node-name")) nil [26872 28560])
-            ("texinfo-start-menu-description" function (:user-visible-flag t) nil [28616 31550])
-            ("texinfo-indent-menu-description" function
-               (:user-visible-flag t
-                :arguments ("column" "region-p"))
-                nil [31726 32647])
-            ("texinfo-menu-indent-description" function (:arguments ("to-column-number")) nil [32649 33687])
-            ("texinfo-master-menu" function
-               (:user-visible-flag t
-                :arguments ("update-all-nodes-menus-p"))
-                nil [33719 38497])
-            ("texinfo-master-menu-list" function nil nil [38499 39122])
-            ("texinfo-insert-master-menu-list" function (:arguments ("master-menu-list")) nil [39124 41723])
-            ("texinfo-locate-menu-p" function nil nil [41725 41977])
-            ("texinfo-copy-menu-title" function nil nil [41979 42624])
-            ("texinfo-copy-menu" function nil nil [42626 43479])
-            ("texinfo-specific-section-type" function nil nil [43543 45062])
-            ("texinfo-hierarchic-level" function nil nil [45064 45348])
-            ("texinfo-update-menu-region-beginning" function (:arguments ("level")) nil [45386 46611])
-            ("texinfo-update-menu-region-end" function (:arguments ("level")) nil [46613 47648])
-            ("texinfo-menu-first-node" function (:arguments ("beginning" "end")) nil [47650 48165])
-            ("texinfo-update-node" function
-               (:user-visible-flag t
-                :arguments ("beginning" "end"))
-                nil [48190 50046])
-            ("texinfo-every-node-update" function (:user-visible-flag t) nil [50048 50543])
-            ("texinfo-update-the-node" function nil nil [50545 51280])
-            ("texinfo-top-pointer-case" function nil nil [51282 52126])
-            ("texinfo-check-for-node-name" function nil nil [52128 52835])
-            ("texinfo-delete-existing-pointers" function nil nil [52837 53277])
-            ("texinfo-find-pointer" function (:arguments ("beginning" "end" "level" "direction")) nil [53279 56763])
-            ("texinfo-pointer-name" function (:arguments ("kind")) nil [56765 57433])
-            ("texinfo-insert-pointer" function (:arguments ("beginning" "end" "level" "direction")) nil [57435 58070])
-            ("texinfo-clean-up-node-line" function nil nil [58072 58254])
-            ("texinfo-sequential-node-update" function
-               (:user-visible-flag t
-                :arguments ("region-p"))
-                nil [58738 60330])
-            ("texinfo-sequentially-update-the-node" function nil nil [60332 61052])
-            ("texinfo-sequentially-insert-pointer" function (:arguments ("level" "direction")) nil [61054 61507])
-            ("texinfo-sequentially-find-pointer" function (:arguments ("level" "direction")) nil [61509 62796])
-            ("texinfo-insert-node-lines" function
-               (:user-visible-flag t
-                :arguments ("beginning" "end" "title-p"))
-                nil [62997 65383])
-            ("texinfo-multi-file-included-list" function (:arguments ("outer-file")) nil [66530 67077])
-            ("texinfo-copy-next-section-title" function nil nil [67079 67860])
-            ("texinfo-multi-file-update" function (:arguments ("files" "update-everything")) nil [67862 72317])
-            ("texinfo-multi-files-insert-main-menu" function (:arguments ("menu-list")) nil [72319 73297])
-            ("texinfo-multi-file-master-menu-list" function (:arguments ("files-list")) nil [73299 73915])
-            ("texinfo-multiple-files-update" function
-               (:user-visible-flag t
-                :arguments ("outer-file" "make-master-menu" "update-everything"))
-                nil [73958 78369])
-            ("texnfo-upd" package nil nil [78408 78429]))          
-      :file "texnfo-upd.el"
-      :pointmax 78459
-      :fsize 78458
-      :lastmodtime '(23525 29610 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!textmodes!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041vc\041semantic.cache" "b/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041vc\041semantic.cache"
deleted file mode 100644
index 955384b..0000000
--- "a/semanticdb/\041drive_c\041Program Files\041Emacs 26.1\041share\041emacs\04126.1\041lisp\041vc\041semantic.cache"
+++ /dev/null
@@ -1,1460 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ediff-mult" package nil nil [5246 5267])
-            ("ediff-mult" customgroup (:user-visible-flag t) nil [5269 5382])
-            ("ediff-init" include nil nil [5384 5405])
-            ("ediff-diff" include nil nil [5406 5427])
-            ("ediff-wind" include nil nil [5428 5449])
-            ("ediff-util" include nil nil [5450 5471])
-            ("ediff-defvar-local" code nil nil [5489 5534])
-            ("ediff-defvar-local" code nil nil [5535 5587])
-            ("ediff-registry-buffer" variable nil nil [5611 5645])
-            ("ediff-meta-buffer-brief-message" variable
-               (:constant-flag t
-                :default-value "Ediff Session Group Panel: %s
-
-     Type ? to show useful commands in this buffer
-
-")
-                nil [5647 5775])
-            ("ediff-meta-buffer-verbose-message" variable
-               (:constant-flag t
-                :default-value "Ediff Session Group Panel: %s
-
-Useful commands (type ? to hide them and free up screen):
-     button2, v, or RET over session record:   start that Ediff session
-     M:	in sessions invoked from here, brings back this group panel
-     R:	display the registry of active Ediff sessions
-     h:	mark session for hiding (toggle)
-     x:	hide marked sessions; with prefix arg: unhide
-     m:	mark session for a non-hiding operation (toggle)
- uh/um:	unmark all sessions marked for hiding/operation
- n,SPC:	next session
- p,DEL:	previous session
-     E:	browse Ediff manual
-     T:	toggle truncation of long file names
-     q:	quit this session group
-")
-                nil [5777 6477])
-            ("ediff-defvar-local" code nil nil [6479 6561])
-            ("ediff-dir-diffs-buffer-map" variable (:default-value (make-sparse-keymap)) nil [6562 6704])
-            ("ediff-defvar-local" code nil nil [6863 6917])
-            ("ediff-defvar-local" code nil nil [6969 7023])
-            ("ediff-defvar-local" code nil nil [7144 7201])
-            ("ediff-defvar-local" code nil nil [7203 7249])
-            ("ediff-defvar-local" code nil nil [7328 7378])
-            ("ediff-defvar-local" code nil nil [7457 7516])
-            ("ediff-filtering-regexp-history" variable nil nil [7570 7616])
-            ("ediff-default-filtering-regexp" variable nil nil [7618 7932])
-            ("ediff-defvar-local" code nil nil [8461 8504])
-            ("ediff-defvar-local" code nil nil [8506 8559])
-            ("ediff-defvar-local" code nil nil [8634 8687])
-            ("ediff-defvar-local" code nil nil [8688 8738])
-            ("ediff-session-registry" variable nil nil [8803 8838])
-            ("ediff-meta-truncate-filenames" variable (:default-value t) nil [8840 9053])
-            ("ediff-meta-mode-hook" variable nil nil [9055 9173])
-            ("ediff-registry-setup-hook" variable nil nil [9175 9314])
-            ("ediff-before-session-group-setup-hooks" variable nil nil [9316 9748])
-            ("ediff-after-session-group-setup-hook" variable nil nil [9749 9939])
-            ("ediff-quit-session-group-hook" variable nil nil [9940 10071])
-            ("ediff-show-registry-hook" variable nil nil [10072 10202])
-            ("ediff-show-session-group-hook" variable (:default-value (quote (delete-other-windows))) nil [10203 10361])
-            ("ediff-meta-buffer-keymap-setup-hook" variable nil nil [10362 10675])
-            ("ediff-defvar-local" code nil nil [10743 10792])
-            ("ediff-get-group-buffer" function (:arguments ("meta-list")) nil [11474 11545])
-            ("ediff-get-group-regexp" function (:arguments ("meta-list")) nil [11547 11618])
-            ("ediff-get-group-objA" function (:arguments ("meta-list")) nil [11636 11705])
-            ("ediff-get-group-objB" function (:arguments ("meta-list")) nil [11706 11775])
-            ("ediff-get-group-objC" function (:arguments ("meta-list")) nil [11776 11845])
-            ("ediff-get-group-merge-autostore-dir" function (:arguments ("meta-list")) nil [11846 11930])
-            ("ediff-get-group-comparison-func" function (:arguments ("meta-list")) nil [11931 12011])
-            ("ediff-get-session-buffer" function (:arguments ("elt")) nil [12456 12511])
-            ("ediff-get-session-status" function (:arguments ("elt")) nil [12512 12567])
-            ("ediff-set-session-status" function (:arguments ("session-info" "new-status")) nil [12568 12670])
-            ("ediff-get-session-objA" function (:arguments ("elt")) nil [12690 12743])
-            ("ediff-get-session-objB" function (:arguments ("elt")) nil [12744 12797])
-            ("ediff-get-session-objC" function (:arguments ("elt")) nil [12798 12851])
-            ("ediff-get-session-objA-name" function (:arguments ("elt")) nil [12964 13028])
-            ("ediff-get-session-objB-name" function (:arguments ("elt")) nil [13029 13093])
-            ("ediff-get-session-objC-name" function (:arguments ("elt")) nil [13094 13158])
-            ("ediff-get-file-eqstatus" function (:arguments ("elt")) nil [13182 13236])
-            ("ediff-set-file-eqstatus" function (:arguments ("elt" "value")) nil [13237 13310])
-            ("ediff-make-new-meta-list-element" function (:arguments ("obj1" "obj2" "obj3")) nil [13864 13986])
-            ("ediff-make-new-meta-list-header" function (:arguments ("regexp" "objA" "objB" "objC" "merge-auto-store-dir" "comparison-func")) nil [14195 14378])
-            ("ediff-get-session-activity-marker" function (:arguments ("session")) nil [14603 14834])
-            ("ediff-meta-session-p" function (:arguments ("session-info")) nil [14879 15314])
-            ("ediff-defvar-local" code nil nil [15317 15496])
-            ("ediff-toggle-verbose-help-meta-buffer" function (:user-visible-flag t) nil [15599 15850])
-            ("ediff-setup-meta-map" function nil nil [15892 18871])
-            ("ediff-meta-mode" function nil nil [18874 19626])
-            ("suppress-keymap" code nil nil [19688 19732])
-            ("define-key" code nil nil [19733 19805])
-            ("define-key" code nil nil [19806 19860])
-            ("define-key" code nil nil [19861 19915])
-            ("define-key" code nil nil [19916 19977])
-            ("define-key" code nil nil [19978 20036])
-            ("define-key" code nil nil [20037 20106])
-            ("if" code nil nil [20107 20287])
-            ("define-key" code nil nil [20288 20351])
-            ("define-key" code nil nil [20352 20418])
-            ("ediff-next-meta-item" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [20420 20978])
-            ("ediff-next-meta-item1" function nil nil [21010 21398])
-            ("ediff-previous-meta-item" function
-               (:user-visible-flag t
-                :arguments ("count"))
-                nil [21401 21975])
-            ("ediff-previous-meta-item1" function nil nil [21977 22561])
-            ("ediff-add-slash-if-directory" function (:arguments ("dir" "file")) nil [22563 22702])
-            ("ediff-toggle-filename-truncation" function (:user-visible-flag t) nil [22704 23053])
-            ("ediff-membership-code1" variable (:default-value 2) nil [23218 23251])
-            ("ediff-membership-code2" variable (:default-value 3) nil [23252 23285])
-            ("ediff-membership-code3" variable (:default-value 5) nil [23286 23319])
-            ("ediff-product-of-memcodes" variable (:default-value (* ediff-membership-code1 ediff-membership-code2 ediff-membership-code3)) nil [23320 23445])
-            ("ediff-intersect-directories" function (:arguments ("jobname" "regexp" "dir1" "dir2" "dir3" "merge-autostore-dir" "comparison-func")) nil [24921 29038])
-            ("ediff-get-directory-files-under-revision" function (:arguments ("jobname" "regexp" "dir1" "merge-autostore-dir")) nil [29288 30984])
-            ("ediff-prepare-meta-buffer" function (:arguments ("action-func" "meta-list" "meta-buffer-name" "redraw-function" "jobname" "startup-hooks")) nil [32208 37361])
-            ("ediff-insert-session-activity-marker-in-meta-buffer" function (:arguments ("session")) nil [37633 37799])
-            ("ediff-insert-session-status-in-meta-buffer" function (:arguments ("session")) nil [38054 38256])
-            ("ediff-replace-session-activity-marker-in-meta-buffer" function (:arguments ("point" "new-marker")) nil [38376 38960])
-            ("ediff-replace-session-status-in-meta-buffer" function (:arguments ("point" "new-status")) nil [39078 39693])
-            ("ediff-insert-session-info-in-meta-buffer" function (:arguments ("session-info" "sessionNum")) nil [39754 40508])
-            ("ediff-redraw-directory-group-buffer" function (:arguments ("meta-list")) nil [40588 43492])
-            ("ediff-update-markers-in-dir-meta-buffer" function (:arguments ("meta-list")) nil [43494 44657])
-            ("ediff-update-session-marker-in-dir-meta-buffer" function (:arguments ("session-num")) nil [44659 46059])
-            ("ediff-problematic-session-p" function (:arguments ("session")) nil [46384 46856])
-            ("ediff-meta-insert-file-info1" function (:arguments ("fileinfo")) nil [46858 48131])
-            ("ediff-months" variable
-               (:constant-flag t
-                :default-value (quote ((1 . "Jan") (2 . "Feb") (3 . "Mar") (4 . "Apr") (5 . "May") (6 . "Jun") (7 . "Jul") (8 . "Aug") (9 . "Sep") (10 . "Oct") (11 . "Nov") (12 . "Dec"))))
-                nil [48133 48343])
-            ("ediff-fill-leading-zero" function (:arguments ("num")) nil [48369 48479])
-            ("ediff-format-date" function (:arguments ("time")) nil [48523 48833])
-            ("ediff-insert-dirs-in-meta-buffer" function (:arguments ("meta-list")) nil [48859 49368])
-            ("ediff-draw-dir-diffs" function (:arguments ("diff-list" "buf-name")) nil [49370 53115])
-            ("ediff-bury-dir-diffs-buffer" function (:user-visible-flag t) nil [53117 53593])
-            ("ediff-show-dir-diffs" function (:user-visible-flag t) nil [53662 54133])
-            ("ediff-dir-diff-copy-file" function (:user-visible-flag t) nil [54245 56720])
-            ("ediff-up-meta-hierarchy" function (:user-visible-flag t) nil [56722 57010])
-            ("ediff-redraw-registry-buffer" function (:arguments ("_ignore")) nil [57036 60434])
-            ("ediff-set-meta-overlay" function (:arguments ("b" "e" "prop" "session-number" "hidden")) nil [60789 61290])
-            ("ediff-mark-for-hiding-at-pos" function
-               (:user-visible-flag t
-                :arguments ("unmark"))
-                nil [61292 61854])
-            ("ediff-mark-session-for-hiding" function (:arguments ("info" "unmark")) nil [61906 62455])
-            ("ediff-mark-for-operation-at-pos" function
-               (:user-visible-flag t
-                :arguments ("unmark"))
-                nil [62458 63037])
-            ("ediff-mark-session-for-operation" function (:arguments ("info" "unmark")) nil [63114 63497])
-            ("ediff-hide-marked-sessions" function
-               (:user-visible-flag t
-                :arguments ("unhide"))
-                nil [63500 64478])
-            ("ediff-operate-on-marked-sessions" function (:arguments ("operation")) nil [64707 65820])
-            ("ediff-append-custom-diff" function (:arguments ("session" "sessionNum")) nil [65822 67830])
-            ("ediff-collect-custom-diffs" function (:user-visible-flag t) nil [67832 68987])
-            ("ediff-meta-show-patch" function (:user-visible-flag t) nil [68989 69812])
-            ("declare-function" code nil nil [69814 69957])
-            ("declare-function" code nil nil [69959 70100])
-            ("ediff-filegroup-action" function (:user-visible-flag t) nil [70177 77743])
-            ("ediff-registry-action" function (:user-visible-flag t) nil [77745 78643])
-            ("ediff-show-meta-buffer" function
-               (:user-visible-flag t
-                :arguments ("meta-buf" "session-number"))
-                nil [78704 80874])
-            ("ediff-show-current-session-meta-buffer" function nil nil [80876 80998])
-            ("ediff-show-meta-buff-from-registry" function (:user-visible-flag t) nil [81000 81399])
-            ("ediff-show-registry" function (:user-visible-flag t) nil [81416 83030])
-            ("defalias" code nil nil [83047 83089])
-            ("ediff-update-meta-buffer" function (:arguments ("meta-buf" "must-redraw" "session-number")) nil [83497 84293])
-            ("ediff-update-registry" function nil nil [84295 84643])
-            ("ediff-cleanup-meta-buffer" function (:arguments ("meta-buffer")) nil [84732 85052])
-            ("ediff-safe-to-quit" function (:arguments ("meta-buffer")) nil [85088 85548])
-            ("ediff-quit-meta-buffer" function (:user-visible-flag t) nil [85550 86876])
-            ("ediff-dispose-of-meta-buffer" function (:arguments ("buf")) nil [86878 87132])
-            ("ediff-get-meta-info" function (:arguments ("buf" "point" "noerror")) nil [87381 88073])
-            ("ediff-get-meta-overlay-at-pos" function (:arguments ("point")) nil [88076 88428])
-            ("ediff-get-session-number-at-pos" function (:arguments ("point" "meta-buffer")) nil [88430 88735])
-            ("ediff-next-meta-overlay-start" function (:arguments ("point")) nil [88794 89308])
-            ("ediff-previous-meta-overlay-start" function (:arguments ("point")) nil [89311 90218])
-            ("ediff-patch-file-internal" function (:prototype-flag t) nil [90220 90270])
-            ("ediff-patch-file-form-meta" function (:arguments ("file" "startup-hooks")) nil [90357 91407])
-            ("ediff-unmark-all-for-operation" function (:user-visible-flag t) nil [91410 91732])
-            ("ediff-unmark-all-for-hiding" function (:user-visible-flag t) nil [91734 92047])
-            ("ediff-meta-mark-equal-files" function
-               (:user-visible-flag t
-                :arguments ("action"))
-                nil [92159 93771])
-            ("ediff-mark-if-equal" function (:arguments ("fileinfo1" "fileinfo2")) nil [93856 94127]))          
-      :file "ediff-mult.el"
-      :pointmax 94383
-      :fsize 94382
-      :lastmodtime '(23525 29614 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [899 916])
-            ("ediff-metajob-name" variable nil nil [945 972])
-            ("ediff-meta-buffer" variable nil nil [973 999])
-            ("ediff-grab-mouse" variable nil nil [1000 1025])
-            ("ediff-mouse-pixel-position" variable nil nil [1026 1061])
-            ("ediff-mouse-pixel-threshold" variable nil nil [1062 1098])
-            ("ediff-whitespace" variable nil nil [1099 1124])
-            ("ediff-multiframe" variable nil nil [1125 1150])
-            ("ediff-use-toolbar-p" variable nil nil [1151 1179])
-            ("mswindowsx-bitmap-file-path" variable nil nil [1180 1216])
-            ("ediff-force-faces" variable nil nil [1234 1449])
-            ("ediff-device-type" function nil nil [1506 1619])
-            ("ediff-window-display-p" function nil nil [1682 1793])
-            ("ediff-has-face-support-p" function nil nil [1821 2055])
-            ("ediff-has-toolbar-support-p" function nil nil [2119 2243])
-            ("ediff-has-gutter-support-p" function nil nil [2246 2368])
-            ("ediff-use-toolbar-p" function nil nil [2370 2518])
-            ("ediff-defvar-local" function (:arguments ("var" "value" "doc")) nil [2899 3126])
-            ("ediff-defvar-local" code nil nil [3273 3315])
-            ("ediff-defvar-local" code nil nil [3364 3406])
-            ("ediff-defvar-local" code nil nil [3487 3529])
-            ("ediff-defvar-local" code nil nil [3549 3598])
-            ("ediff-defvar-local" code nil nil [3627 3675])
-            ("ediff-defvar-local" code nil nil [3677 3829])
-            ("ediff-buffer-alist" variable
-               (:constant-flag t
-                :default-value (quote ((65 . ediff-buffer-A) (66 . ediff-buffer-B) (67 . ediff-buffer-C))))
-                nil [3884 3992])
-            ("ediff-buffer-live-p" function (:arguments ("buf")) nil [4005 4101])
-            ("ediff-get-buffer" function (:arguments ("arg")) nil [4103 4289])
-            ("ediff-get-value-according-to-buffer-type" function (:arguments ("buf-type" "list")) nil [4291 4477])
-            ("ediff-char-to-buftype" function (:arguments ("arg")) nil [4479 4612])
-            ("ediff-get-symbol-from-alist" function (:arguments ("buf-type" "alist")) nil [4880 4966])
-            ("ediff-defvar-local" code nil nil [5792 5845])
-            ("ediff-defvar-local" code nil nil [5846 5899])
-            ("ediff-defvar-local" code nil nil [5900 5953])
-            ("ediff-defvar-local" code nil nil [5954 6014])
-            ("ediff-difference-vector-alist" variable
-               (:constant-flag t
-                :default-value (quote ((A . ediff-difference-vector-A) (B . ediff-difference-vector-B) (C . ediff-difference-vector-C) (Ancestor . ediff-difference-vector-Ancestor))))
-                nil [6075 6274])
-            ("ediff-get-difference" function (:arguments ("n" "buf-type")) nil [6276 6437])
-            ("ediff-no-fine-diffs-p" function (:arguments ("n")) nil [7453 7530])
-            ("ediff-get-diff-overlay-from-diff-record" function (:arguments ("diff-rec")) nil [7532 7615])
-            ("ediff-get-diff-overlay" function (:arguments ("n" "buf-type")) nil [7617 7748])
-            ("ediff-get-fine-diff-vector-from-diff-record" function (:arguments ("diff-rec")) nil [7750 7837])
-            ("ediff-set-fine-diff-vector" function (:arguments ("n" "buf-type" "fine-vec")) nil [7839 7956])
-            ("ediff-get-state-of-diff" function (:arguments ("n" "buf-type")) nil [7958 8102])
-            ("ediff-set-state-of-diff" function (:arguments ("n" "buf-type" "val")) nil [8103 8207])
-            ("ediff-get-state-of-merge" function (:arguments ("n")) nil [8209 8324])
-            ("ediff-set-state-of-merge" function (:arguments ("n" "val")) nil [8325 8449])
-            ("ediff-get-state-of-ancestor" function (:arguments ("n")) nil [8451 8569])
-            ("ediff-mark-diff-as-space-only" function (:arguments ("n" "flag")) nil [8794 8890])
-            ("ediff-get-fine-diff-vector" function (:arguments ("n" "buf-type")) nil [8892 9031])
-            ("ediff-with-current-buffer" function (:arguments ("buffer" "body")) nil [9214 9524])
-            ("ediff-multiframe-setup-p" function nil nil [9527 9615])
-            ("ediff-narrow-control-frame-p" function nil nil [9617 9750])
-            ("ediff-3way-comparison-job" function nil nil [9752 9855])
-            ("ediff-defvar-local" code nil nil [9856 9909])
-            ("ediff-merge-job" function nil nil [9911 10168])
-            ("ediff-defvar-local" code nil nil [10169 10212])
-            ("ediff-patch-job" function nil nil [10214 10274])
-            ("ediff-merge-with-ancestor-job" function nil nil [10276 10469])
-            ("ediff-defvar-local" code nil nil [10470 10527])
-            ("ediff-3way-job" function nil nil [10529 10607])
-            ("ediff-defvar-local" code nil nil [10608 10650])
-            ("ediff-diff3-job" function nil nil [10740 10840])
-            ("ediff-defvar-local" code nil nil [10841 10884])
-            ("ediff-windows-job" function nil nil [10886 10991])
-            ("ediff-defvar-local" code nil nil [10992 11037])
-            ("ediff-word-mode-job" function nil nil [11039 11146])
-            ("ediff-defvar-local" code nil nil [11147 11194])
-            ("ediff-narrow-job" function nil nil [11196 11361])
-            ("ediff-defvar-local" code nil nil [11362 11406])
-            ("ediff-ancestor-metajob" function (:arguments ("metajob")) nil [11535 11711])
-            ("ediff-revision-metajob" function (:arguments ("metajob")) nil [11712 11920])
-            ("ediff-patch-metajob" function (:arguments ("metajob")) nil [11921 12038])
-            ("ediff-one-filegroup-metajob" function (:arguments ("metajob")) nil [12130 12294])
-            ("ediff-collect-diffs-metajob" function (:arguments ("metajob")) nil [12373 12699])
-            ("ediff-merge-metajob" function (:arguments ("metajob")) nil [12700 13008])
-            ("ediff-metajob3" function (:arguments ("metajob")) nil [13010 13221])
-            ("ediff-comparison-metajob3" function (:arguments ("metajob")) nil [13222 13360])
-            ("ediff-in-control-buffer-p" function (:arguments ("meta-buf-p")) nil [13480 13663])
-            ("ediff-barf-if-not-control-buffer" function (:arguments ("meta-buf-p")) nil [13665 13867])
-            ("ediff-highlighting" customgroup (:user-visible-flag t) nil [13869 13986])
-            ("ediff-merge" customgroup (:user-visible-flag t) nil [13988 14072])
-            ("ediff-hook" customgroup (:user-visible-flag t) nil [14074 14158])
-            ("ediff-before-setup-hook" variable nil nil [14179 14433])
-            ("ediff-before-setup-windows-hook" variable nil nil [14434 14720])
-            ("ediff-after-setup-windows-hook" variable nil nil [14721 14932])
-            ("ediff-before-setup-control-frame-hook" variable nil nil [14933 15180])
-            ("ediff-after-setup-control-frame-hook" variable nil nil [15181 15392])
-            ("ediff-startup-hook" variable nil nil [15393 15555])
-            ("ediff-select-hook" variable nil nil [15556 15679])
-            ("ediff-unselect-hook" variable nil nil [15680 15807])
-            ("ediff-prepare-buffer-hook" variable nil nil [15808 16003])
-            ("ediff-load-hook" variable nil nil [16004 16139])
-            ("ediff-mode-hook" variable nil nil [16141 16412])
-            ("ediff-keymap-setup-hook" variable nil nil [16413 16560])
-            ("ediff-display-help-hook" variable nil nil [16562 16684])
-            ("ediff-suspend-hook" variable nil nil [16686 16825])
-            ("ediff-quit-hook" variable nil nil [16826 16960])
-            ("ediff-cleanup-hook" variable nil nil [16961 17116])
-            ("ediff-KILLED-VITAL-BUFFER" variable
-               (:constant-flag t
-                :default-value "You have killed a vital Ediff buffer---you must leave Ediff now!")
-                nil [17136 17241])
-            ("ediff-NO-DIFFERENCES" variable
-               (:constant-flag t
-                :default-value "Sorry, comparison of identical variants is not what I am made for...")
-                nil [17242 17346])
-            ("ediff-BAD-DIFF-NUMBER" variable
-               (:constant-flag t
-                :default-value "%S: Bad diff region number, %d.  Valid numbers are 1 to %d")
-                nil [17347 17507])
-            ("ediff-BAD-INFO" variable
-               (:constant-flag t
-                :default-value (format "
-*** The Info file for Ediff, a part of the standard distribution
-*** of %sEmacs, does not seem to be properly installed.
-***
-*** Please contact your system administrator. " (if (featurep (quote xemacs)) "X" "")))
-                nil [17508 17753])
-            ("ediff-defvar-local" code nil nil [17778 18136])
-            ("ediff-defvar-local" code nil nil [18138 18353])
-            ("ediff-defvar-local" code nil nil [18354 18585])
-            ("ediff-defvar-local" code nil nil [18661 18708])
-            ("ediff-defvar-local" code nil nil [18783 18830])
-            ("ediff-defvar-local" code nil nil [18905 18952])
-            ("ediff-defvar-local" code nil nil [19049 19107])
-            ("ediff-defvar-local" code nil nil [19181 19227])
-            ("ediff-defvar-local" code nil nil [19300 19346])
-            ("ediff-defvar-local" code nil nil [19419 19465])
-            ("ediff-defvar-local" code nil nil [19561 19618])
-            ("ediff-defvar-local" code nil nil [19924 19976])
-            ("ediff-defvar-local" code nil nil [20167 20213])
-            ("ediff-before-flag-bol" variable (:default-value (if (featurep (quote xemacs)) (make-glyph "->>") "->>")) nil [20232 20495])
-            ("ediff-after-flag-eol" variable (:default-value (if (featurep (quote xemacs)) (make-glyph "<<-") "<<-")) nil [20497 20744])
-            ("ediff-before-flag-mol" variable (:default-value (if (featurep (quote xemacs)) (make-glyph "->>") "->>")) nil [20746 20999])
-            ("ediff-after-flag-mol" variable (:default-value (if (featurep (quote xemacs)) (make-glyph "<<-") "<<-")) nil [21000 21249])
-            ("ediff-use-faces" variable (:default-value t) nil [21252 21578])
-            ("make-variable-buffer-local" code nil nil [21579 21624])
-            ("put" code nil nil [21625 21666])
-            ("ediff-defvar-local" code nil nil [21817 21860])
-            ("ediff-defvar-local" code nil nil [21915 21957])
-            ("ediff-defvar-local" code nil nil [22164 22211])
-            ("ediff-defvar-local" code nil nil [22315 22360])
-            ("ediff-defvar-local" code nil nil [22573 22621])
-            ("ediff-defvar-local" code nil nil [22623 22744])
-            ("ediff-defvar-local" code nil nil [22745 22920])
-            ("ediff-keep-variants" variable (:default-value t) nil [22922 23163])
-            ("ediff-highlight-all-diffs" variable (:default-value t) nil [23165 23413])
-            ("make-variable-buffer-local" code nil nil [23414 23469])
-            ("put" code nil nil [23470 23521])
-            ("ediff-defvar-local" code nil nil [23566 23621])
-            ("ediff-defvar-local" code nil nil [23716 23771])
-            ("ediff-defvar-local" code nil nil [23839 23893])
-            ("ediff-defvar-local" code nil nil [23959 24013])
-            ("ediff-defvar-local" code nil nil [24079 24133])
-            ("ediff-defvar-local" code nil nil [24206 24267])
-            ("ediff-buffer-values-orig-alist" variable
-               (:constant-flag t
-                :default-value (quote ((A . ediff-buffer-values-orig-A) (B . ediff-buffer-values-orig-B) (C . ediff-buffer-values-orig-C) (Ancestor . ediff-buffer-values-orig-Ancestor))))
-                nil [24333 24537])
-            ("ediff-protected-variables" variable
-               (:constant-flag t
-                :default-value (quote (mode-line-format)))
-                nil [24613 24709])
-            ("ediff-defvar-local" code nil nil [25009 25057])
-            ("ediff-defvar-local" code nil nil [25105 25156])
-            ("ediff-defvar-local" code nil nil [25189 25244])
-            ("ediff-defvar-local" code nil nil [25336 25381])
-            ("ediff-defvar-local" code nil nil [25513 25565])
-            ("ediff-defvar-local" code nil nil [25630 25680])
-            ("ediff-tmp-buffer" variable
-               (:constant-flag t
-                :default-value " *ediff-tmp*")
-                nil [25738 25783])
-            ("ediff-msg-buffer" variable
-               (:constant-flag t
-                :default-value " *ediff-message*")
-                nil [25812 25861])
-            ("ediff-defvar-local" code nil nil [25928 25974])
-            ("ediff-defvar-local" code nil nil [26007 26065])
-            ("ediff-defvar-local" code nil nil [26198 26259])
-            ("ediff-disturbed-overlays" variable nil nil [26365 26405])
-            ("ediff-version-control-package" variable (:default-value (quote vc)) nil [26407 26820])
-            ("ediff-coding-system-for-read" variable (:default-value (quote raw-text)) nil [26822 27294])
-            ("ediff-coding-system-for-write" variable (:default-value (if (featurep (quote xemacs)) (quote escape-quoted) (quote emacs-internal))) nil [27296 27593])
-            ("defalias" code nil nil [27596 27682])
-            ("defalias" code nil nil [27684 27755])
-            ("defalias" code nil nil [27757 27840])
-            ("defalias" code nil nil [27842 27931])
-            ("ediff-check-version" function (:arguments ("op" "major" "minor" "type-of-emacs")) nil [28006 28824])
-            ("ediff-color-display-p" function nil nil [28826 29021])
-            ("ediff-defvar-local" code nil nil [29196 29315])
-            ("if" code nil nil [29318 29607])
-            ("ediff-current-diff-overlay-alist" variable
-               (:constant-flag t
-                :default-value (quote ((A . ediff-current-diff-overlay-A) (B . ediff-current-diff-overlay-B) (C . ediff-current-diff-overlay-C) (Ancestor . ediff-current-diff-overlay-Ancestor))))
-                nil [29677 29891])
-            ("ediff-current-diff-face-alist" variable
-               (:constant-flag t
-                :default-value (quote ((A . ediff-current-diff-A) (B . ediff-current-diff-B) (C . ediff-current-diff-C) (Ancestor . ediff-current-diff-Ancestor))))
-                nil [29960 30139])
-            ("ediff-set-overlay-face" function (:arguments ("extent" "face")) nil [30142 30300])
-            ("ediff-region-help-echo" function (:arguments ("extent-or-window" "overlay" "_point")) nil [30302 31054])
-            ("ediff-set-face-pixmap" function (:arguments ("face" "pixmap")) nil [31057 31373])
-            ("ediff-hide-face" function (:arguments ("face")) nil [31375 31559])
-            ("ediff-current-diff-A" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88) (background light)) :background "#ffdddd") (((class color) (min-colors 88) (background dark)) :background "#553333") (((class color) (min-colors 16)) (:foreground "firebrick" :background "pale green")) (((class color)) (:foreground "blue3" :background "yellow3")) (t (:inverse-video t)))) (quote ((((type tty)) (:foreground "blue3" :background "yellow3")) (((class color)) (:foreground "firebrick" :background "pale green")) (t (:inverse-video t)))))
-                :type "face")
-                nil [31563 32240])
-            ("ediff-current-diff-face-A" variable (:default-value (quote ediff-current-diff-A)) nil [32389 32661])
-            ("ediff-hide-face" code nil nil [32662 32705])
-            ("and" code nil nil [32840 32984])
-            ("ediff-current-diff-B" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88) (background light)) :background "#ddffdd") (((class color) (min-colors 88) (background dark)) :background "#335533") (((class color) (min-colors 16)) (:foreground "DarkOrchid" :background "Yellow")) (((class color)) (:foreground "magenta3" :background "yellow3" :weight bold)) (t (:inverse-video t)))) (quote ((((type tty)) (:foreground "magenta3" :background "yellow3" :weight bold)) (((class color)) (:foreground "DarkOrchid" :background "Yellow")) (t (:inverse-video t)))))
-                :type "face")
-                nil [32988 33707])
-            ("ediff-current-diff-face-B" variable (:default-value (quote ediff-current-diff-B)) nil [33856 34108])
-            ("ediff-hide-face" code nil nil [34109 34152])
-            ("and" code nil nil [34287 34431])
-            ("ediff-current-diff-C" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88) (background light)) :background "#ffffaa") (((class color) (min-colors 88) (background dark)) :background "#888833") (((class color) (min-colors 16)) (:foreground "Navy" :background "Pink")) (((class color)) (:foreground "cyan3" :background "yellow3" :weight bold)) (t (:inverse-video t)))) (quote ((((type tty)) (:foreground "cyan3" :background "yellow3" :weight bold)) (((class color)) (:foreground "Navy" :background "Pink")) (t (:inverse-video t)))))
-                :type "face")
-                nil [34434 35115])
-            ("ediff-current-diff-face-C" variable (:default-value (quote ediff-current-diff-C)) nil [35264 35536])
-            ("ediff-hide-face" code nil nil [35537 35580])
-            ("and" code nil nil [35715 35859])
-            ("ediff-current-diff-Ancestor" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88) (background light)) :background "#cfdeee") (((class color) (min-colors 88) (background dark)) :background "#004151") (((class color) (min-colors 16) (background light)) :background "#cfdeee") (((class color) (min-colors 16) (background dark)) :background "#004151") (((class color)) (:foreground "black" :background "magenta3")) (t (:inverse-video t)))) (quote ((((type tty)) (:foreground "black" :background "magenta3")) (((class color)) (:foreground "Black" :background "VioletRed")) (t (:inverse-video t)))))
-                :type "face")
-                nil [35862 36670])
-            ("ediff-current-diff-face-Ancestor" variable (:default-value (quote ediff-current-diff-Ancestor)) nil [36819 37119])
-            ("ediff-hide-face" code nil nil [37120 37170])
-            ("and" code nil nil [37305 37456])
-            ("ediff-fine-diff-A" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88) (background light)) :background "#ffbbbb") (((class color) (min-colors 88) (background dark)) :background "#aa2222") (((class color) (min-colors 16)) (:foreground "Navy" :background "sky blue")) (((class color)) (:foreground "white" :background "sky blue" :weight bold)) (t (:underline t :stipple "gray3")))) (quote ((((type tty)) (:foreground "white" :background "sky blue" :weight bold)) (((class color)) (:foreground "Navy" :background "sky blue")) (t (:underline t :stipple "gray3")))))
-                :type "face")
-                nil [37459 38168])
-            ("ediff-fine-diff-face-A" variable (:default-value (quote ediff-fine-diff-A)) nil [38317 38577])
-            ("ediff-hide-face" code nil nil [38578 38618])
-            ("ediff-fine-diff-B" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88) (background light)) :background "#aaffaa") (((class color) (min-colors 88) (background dark)) :background "#22aa22") (((class color) (min-colors 16)) (:foreground "Black" :background "cyan")) (((class color)) (:foreground "magenta3" :background "cyan3")) (t (:underline t :stipple "gray3")))) (quote ((((type tty)) (:foreground "magenta3" :background "cyan3")) (((class color)) (:foreground "Black" :background "cyan")) (t (:underline t :stipple "gray3")))))
-                :type "face")
-                nil [38620 39314])
-            ("ediff-fine-diff-face-B" variable (:default-value (quote ediff-fine-diff-B)) nil [39463 39723])
-            ("ediff-hide-face" code nil nil [39724 39764])
-            ("ediff-fine-diff-C" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88) (background light)) :background "#ffff55") (((class color) (min-colors 88) (background dark)) :background "#aaaa22") (((type pc)) (:foreground "white" :background "Turquoise")) (((class color) (min-colors 16)) (:foreground "Black" :background "Turquoise")) (((class color)) (:foreground "yellow3" :background "Turquoise" :weight bold)) (t (:underline t :stipple "gray3")))) (quote ((((type tty)) (:foreground "yellow3" :background "Turquoise" :weight bold)) (((type pc)) (:foreground "white" :background "Turquoise")) (((class color)) (:foreground "Black" :background "Turquoise")) (t (:underline t :stipple "gray3")))))
-                :type "face")
-                nil [39766 40634])
-            ("ediff-fine-diff-face-C" variable (:default-value (quote ediff-fine-diff-C)) nil [40783 41043])
-            ("ediff-hide-face" code nil nil [41044 41084])
-            ("ediff-fine-diff-Ancestor" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88) (background light)) :background "#00c5c0") (((class color) (min-colors 88) (background dark)) :background "#009591") (((class color) (min-colors 16) (background light)) :background "#00c5c0") (((class color) (min-colors 16) (background dark)) :background "#009591") (((class color)) (:foreground "red3" :background "green")) (t (:underline t :stipple "gray3")))) (quote ((((type tty)) (:foreground "red3" :background "green")) (((class color)) (:foreground "Black" :background "Green")) (t (:underline t :stipple "gray3")))))
-                :type "face")
-                nil [41086 42034])
-            ("ediff-fine-diff-face-Ancestor" variable (:default-value (quote ediff-fine-diff-Ancestor)) nil [42183 42471])
-            ("ediff-hide-face" code nil nil [42472 42519])
-            ("stipple-pixmap" variable (:default-value (cond ((not (ediff-has-face-support-p)) nil) ((and (boundp (quote x-bitmap-file-path)) (locate-library "stipple" t x-bitmap-file-path)) "stipple") ((and (boundp (quote mswindowsx-bitmap-file-path)) (locate-library "stipple" t mswindowsx-bitmap-file-path)) "stipple") (t "Stipple"))) nil [42591 42901])
-            ("ediff-even-diff-A" variable
-               (:default-value (if (featurep (quote emacs)) (\` ((((type pc)) (:foreground "green3" :background "light grey")) (((class color) (min-colors 88)) (:background "light grey")) (((class color) (min-colors 16)) (:foreground "Black" :background "light grey")) (((class color)) (:foreground "red3" :background "light grey" :weight bold)) (t (:italic t :stipple (\, stipple-pixmap))))) (\` ((((type tty)) (:foreground "red3" :background "light grey" :weight bold)) (((type pc)) (:foreground "green3" :background "light grey")) (((class color)) (:foreground "Black" :background "light grey")) (t (:italic t :stipple (\, stipple-pixmap))))))
-                :type "face")
-                nil [42903 43711])
-            ("ediff-even-diff-face-A" variable (:default-value (quote ediff-even-diff-A)) nil [43860 44137])
-            ("ediff-hide-face" code nil nil [44138 44178])
-            ("ediff-even-diff-B" variable
-               (:default-value (if (featurep (quote emacs)) (\` ((((class color) (min-colors 88)) (:background "Grey")) (((class color) (min-colors 16)) (:foreground "White" :background "Grey")) (((class color)) (:foreground "blue3" :background "Grey" :weight bold)) (t (:italic t :stipple (\, stipple-pixmap))))) (\` ((((type tty)) (:foreground "blue3" :background "Grey" :weight bold)) (((class color)) (:foreground "White" :background "Grey")) (t (:italic t :stipple (\, stipple-pixmap))))))
-                :type "face")
-                nil [44180 44807])
-            ("ediff-even-diff-face-B" variable (:default-value (quote ediff-even-diff-B)) nil [44956 45233])
-            ("ediff-hide-face" code nil nil [45234 45274])
-            ("ediff-even-diff-C" variable
-               (:default-value (if (featurep (quote emacs)) (\` ((((type pc)) (:foreground "yellow3" :background "light grey")) (((class color) (min-colors 88)) (:background "light grey")) (((class color) (min-colors 16)) (:foreground "Black" :background "light grey")) (((class color)) (:foreground "yellow3" :background "light grey" :weight bold)) (t (:italic t :stipple (\, stipple-pixmap))))) (\` ((((type tty)) (:foreground "yellow3" :background "light grey" :weight bold)) (((type pc)) (:foreground "yellow3" :background "light grey")) (((class color)) (:foreground "Black" :background "light grey")) (t (:italic t :stipple (\, stipple-pixmap))))))
-                :type "face")
-                nil [45276 46092])
-            ("ediff-even-diff-face-C" variable (:default-value (quote ediff-even-diff-C)) nil [46241 46518])
-            ("ediff-hide-face" code nil nil [46519 46559])
-            ("ediff-even-diff-Ancestor" variable
-               (:default-value (if (featurep (quote emacs)) (\` ((((type pc)) (:foreground "cyan3" :background "light grey")) (((class color) (min-colors 88)) (:background "Grey")) (((class color) (min-colors 16)) (:foreground "White" :background "Grey")) (((class color)) (:foreground "cyan3" :background "light grey" :weight bold)) (t (:italic t :stipple (\, stipple-pixmap))))) (\` ((((type tty)) (:foreground "cyan3" :background "light grey" :weight bold)) (((type pc)) (:foreground "cyan3" :background "light grey")) (((class color)) (:foreground "White" :background "Grey")) (t (:italic t :stipple (\, stipple-pixmap))))))
-                :type "face")
-                nil [46561 47352])
-            ("ediff-even-diff-face-Ancestor" variable (:default-value (quote ediff-even-diff-Ancestor)) nil [47501 47806])
-            ("ediff-hide-face" code nil nil [47807 47854])
-            ("ediff-even-diff-face-alist" variable
-               (:constant-flag t
-                :default-value (quote ((A . ediff-even-diff-A) (B . ediff-even-diff-B) (C . ediff-even-diff-C) (Ancestor . ediff-even-diff-Ancestor))))
-                nil [47919 48083])
-            ("ediff-odd-diff-A" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((type pc)) (:foreground "green3" :background "gray40")) (((class color) (min-colors 88)) (:background "Grey")) (((class color) (min-colors 16)) (:foreground "White" :background "Grey")) (((class color)) (:foreground "red3" :background "black" :weight bold)) (t (:italic t :stipple "gray1")))) (quote ((((type tty)) (:foreground "red3" :background "black" :weight bold)) (((type pc)) (:foreground "green3" :background "gray40")) (((class color)) (:foreground "White" :background "Grey")) (t (:italic t :stipple "gray1")))))
-                :type "face")
-                nil [48085 48823])
-            ("ediff-odd-diff-face-A" variable (:default-value (quote ediff-odd-diff-A)) nil [48972 49245])
-            ("ediff-hide-face" code nil nil [49246 49285])
-            ("ediff-odd-diff-B" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((type pc)) (:foreground "White" :background "gray40")) (((class color) (min-colors 88)) (:background "light grey")) (((class color) (min-colors 16)) (:foreground "Black" :background "light grey")) (((class color)) (:foreground "cyan3" :background "black" :weight bold)) (t (:italic t :stipple "gray1")))) (quote ((((type tty)) (:foreground "cyan3" :background "black" :weight bold)) (((type pc)) (:foreground "White" :background "gray40")) (((class color)) (:foreground "Black" :background "light grey")) (t (:italic t :stipple "gray1")))))
-                :type "face")
-                nil [49288 50044])
-            ("ediff-odd-diff-face-B" variable (:default-value (quote ediff-odd-diff-B)) nil [50193 50466])
-            ("ediff-hide-face" code nil nil [50467 50506])
-            ("ediff-odd-diff-C" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((type pc)) (:foreground "yellow3" :background "gray40")) (((class color) (min-colors 88)) (:background "Grey")) (((class color) (min-colors 16)) (:foreground "White" :background "Grey")) (((class color)) (:foreground "yellow3" :background "black" :weight bold)) (t (:italic t :stipple "gray1")))) (quote ((((type tty)) (:foreground "yellow3" :background "black" :weight bold)) (((type pc)) (:foreground "yellow3" :background "gray40")) (((class color)) (:foreground "White" :background "Grey")) (t (:italic t :stipple "gray1")))))
-                :type "face")
-                nil [50508 51254])
-            ("ediff-odd-diff-face-C" variable (:default-value (quote ediff-odd-diff-C)) nil [51403 51676])
-            ("ediff-hide-face" code nil nil [51677 51716])
-            ("ediff-odd-diff-Ancestor" variable
-               (:default-value (if (featurep (quote emacs)) (quote ((((class color) (min-colors 88)) (:background "gray40")) (((class color) (min-colors 16)) (:foreground "cyan3" :background "gray40")) (((class color)) (:foreground "green3" :background "black" :weight bold)) (t (:italic t :stipple "gray1")))) (quote ((((type tty)) (:foreground "green3" :background "black" :weight bold)) (((class color)) (:foreground "cyan3" :background "gray40")) (t (:italic t :stipple "gray1")))))
-                :type "face")
-                nil [51718 52355])
-            ("ediff-odd-diff-face-Ancestor" variable (:default-value (quote ediff-odd-diff-Ancestor)) nil [52504 52805])
-            ("ediff-hide-face" code nil nil [52806 52852])
-            ("ediff-odd-diff-face-alist" variable
-               (:constant-flag t
-                :default-value (quote ((A . ediff-odd-diff-A) (B . ediff-odd-diff-B) (C . ediff-odd-diff-C) (Ancestor . ediff-odd-diff-Ancestor))))
-                nil [52916 53075])
-            ("ediff-fine-diff-face-alist" variable
-               (:constant-flag t
-                :default-value (quote ((A . ediff-fine-diff-A) (B . ediff-fine-diff-B) (C . ediff-fine-diff-C) (Ancestor . ediff-fine-diff-Ancestor))))
-                nil [53142 53306])
-            ("put" code nil nil [53321 53421])
-            ("put" code nil nil [53422 53522])
-            ("put" code nil nil [53523 53623])
-            ("put" code nil nil [53624 53731])
-            ("add-hook" code nil nil [53733 53780])
-            ("add-hook" code nil nil [53781 53843])
-            ("ediff-defvar-local" code nil nil [53860 53972])
-            ("ediff-defvar-local" code nil nil [53973 54085])
-            ("ediff-defvar-local" code nil nil [54086 54198])
-            ("ediff-defvar-local" code nil nil [54199 54329])
-            ("ediff-toggle-read-only-function" variable (:default-value (quote read-only-mode)) nil [54331 54509])
-            ("ediff-make-buffers-readonly-at-startup" variable nil nil [54511 54703])
-            ("ediff-verbose-p" variable (:default-value t) nil [54755 54781])
-            ("ediff-show-ancestor" variable (:default-value t) nil [54783 54938])
-            ("ediff-defvar-local" code nil nil [55058 55111])
-            ("ediff-autostore-merges" variable (:default-value (quote group-jobs-only)) nil [55113 55531])
-            ("make-variable-buffer-local" code nil nil [55532 55584])
-            ("ediff-defvar-local" code nil nil [55657 55707])
-            ("ediff-merge-filename-prefix" variable (:default-value "merge_") nil [55709 55845])
-            ("ediff-no-emacs-help-in-control-buffer" variable nil nil [55847 56051])
-            ("ediff-temp-file-prefix" variable (:default-value (file-name-as-directory (cond ((boundp (quote temporary-file-directory)) temporary-file-directory) ((fboundp (quote temp-directory)) (temp-directory)) (t "/tmp/")))) nil [56181 56727])
-            ("ediff-temp-file-mode" variable (:default-value 384) nil [56729 56846])
-            ("ediff-metachars" variable (:default-value "[ 	
-!\"#$&'()*;<=>?[\\^`{|~]") nil [56947 57169])
-            ("ediff-H-glyph" variable (:default-value (if (featurep (quote xemacs)) (make-glyph "H"))) nil [57221 57284])
-            ("ediff-defvar-local" code nil nil [57355 57400])
-            ("ediff-defvar-local" code nil nil [57469 57514])
-            ("ediff-defvar-local" code nil nil [57583 57628])
-            ("ediff-file-remote-p" function (:arguments ("file-name")) nil [57631 57698])
-            ("ediff-listable-file" function (:arguments ("file-name")) nil [57762 57928])
-            ("ediff-frame-unsplittable-p" function (:arguments ("frame")) nil [57931 58030])
-            ("ediff-get-next-window" function (:arguments ("wind" "prev-wind")) nil [58032 58175])
-            ("ediff-kill-buffer-carefully" function (:arguments ("buf")) nil [58178 58326])
-            ("ediff-background-face" function (:arguments ("buf-type" "dif-num")) nil [58328 58631])
-            ("ediff-paint-background-regions-in-one-buffer" function (:arguments ("buf-type" "unhighlight")) nil [58678 59241])
-            ("ediff-paint-background-regions" function (:arguments ("unhighlight")) nil [59293 59630])
-            ("ediff-clear-fine-diff-vector" function (:arguments ("diff-record")) nil [59726 59896])
-            ("ediff-clear-fine-differences-in-one-buffer" function (:arguments ("n" "buf-type")) nil [59898 60077])
-            ("ediff-clear-fine-differences" function (:arguments ("n")) nil [60079 60304])
-            ("ediff-mouse-event-p" function (:arguments ("event")) nil [60307 60466])
-            ("ediff-key-press-event-p" function (:arguments ("event")) nil [60469 60619])
-            ("ediff-event-point" function (:arguments ("event")) nil [60621 60848])
-            ("ediff-event-buffer" function (:arguments ("event")) nil [60850 61105])
-            ("ediff-event-key" function (:arguments ("event-or-key")) nil [61107 61345])
-            ("ediff-last-command-char" function nil nil [61347 61420])
-            ("ediff-frame-iconified-p" function (:arguments ("frame")) nil [61423 61617])
-            ("ediff-window-visible-p" function (:arguments ("wind")) nil [61619 61832])
-            ("ediff-frame-char-width" function (:arguments ("frame")) nil [61835 61987])
-            ("ediff-reset-mouse" function (:arguments ("frame" "do-not-grab-mouse")) nil [61989 62845])
-            ("ediff-spy-after-mouse" function nil nil [62847 62941])
-            ("ediff-user-grabbed-mouse" function nil nil [63160 63792])
-            ("ediff-frame-char-height" function (:arguments ("frame")) nil [63794 63957])
-            ("ediff-overlay-start" function (:arguments ("overl")) nil [63986 64140])
-            ("ediff-overlay-end" function (:arguments ("overl")) nil [64142 64291])
-            ("ediff-empty-overlay-p" function (:arguments ("overl")) nil [64293 64393])
-            ("ediff-overlay-buffer" function (:arguments ("overl")) nil [64515 64660])
-            ("ediff-overlay-get" function (:arguments ("overl" "property")) nil [64775 64943])
-            ("ediff-move-overlay" function (:arguments ("overlay" "beg" "end" "buffer")) nil [65051 65532])
-            ("ediff-overlay-put" function (:arguments ("overlay" "prop" "value")) nil [65534 65895])
-            ("ediff-abbreviate-file-name" function (:arguments ("file" "dir")) nil [65985 66291])
-            ("ediff-strip-last-dir" function (:arguments ("dir")) nil [66439 66831])
-            ("ediff-truncate-string-left" function (:arguments ("str" "newlen")) nil [66833 67114])
-            ("ediff-nonempty-string-p" function (:arguments ("string")) nil [67116 67210])
-            ("unless" code nil nil [67212 67661])
-            ("unless" code nil nil [67663 67734])
-            ("ediff-abbrev-jobname" function (:arguments ("jobname")) nil [67736 68546])
-            ("ediff-strip-mode-line-format" function nil nil [68604 68820])
-            ("ediff-valid-difference-p" function (:arguments ("n")) nil [68868 69011])
-            ("ediff-show-all-diffs" function (:arguments ("_n")) nil [69013 69090])
-            ("ediff-message-if-verbose" function (:arguments ("string" "args")) nil [69092 69205])
-            ("ediff-file-attributes" function (:arguments ("filename" "attr-number")) nil [69207 69358])
-            ("ediff-file-size" function (:arguments ("filename")) nil [69360 69434])
-            ("ediff-file-modtime" function (:arguments ("filename")) nil [69435 69512])
-            ("ediff-convert-standard-filename" function (:arguments ("fname")) nil [69515 69656])
-            ("if" code nil nil [69658 70294])
-            ("ediff-init" package nil nil [70297 70318]))          
-      :file "ediff-init.el"
-      :pointmax 70574
-      :fsize 70573
-      :lastmodtime '(23525 29613 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "ediff-diff.el"
-      :fsize 53276
-      :lastmodtime '(23525 29613 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("icon-title-format" variable nil nil [915 941])
-            ("top-toolbar-height" variable nil nil [942 969])
-            ("bottom-toolbar-height" variable nil nil [970 1000])
-            ("left-toolbar-height" variable nil nil [1001 1029])
-            ("right-toolbar-height" variable nil nil [1030 1059])
-            ("left-toolbar-width" variable nil nil [1060 1087])
-            ("right-toolbar-width" variable nil nil [1088 1116])
-            ("default-menubar" variable nil nil [1117 1141])
-            ("top-gutter" variable nil nil [1142 1161])
-            ("frame-icon-title-format" variable nil nil [1162 1194])
-            ("ediff-diff-status" variable nil nil [1195 1221])
-            ("unless" code nil nil [1288 1364])
-            ("ediff-init" include nil nil [1367 1388])
-            ("ediff-help" include nil nil [1389 1410])
-            ("if" code nil nil [1479 1575])
-            ("ediff-window" customgroup (:user-visible-flag t) nil [1578 1688])
-            ("ediff-choose-window-setup-function-automatically" function nil nil [1771 1989])
-            ("ediff-window-setup-function" variable (:default-value (quote ediff-setup-windows-default)) nil [1991 3607])
-            ("ediff-defvar-local" code nil nil [3654 3698])
-            ("ediff-defvar-local" code nil nil [3762 3815])
-            ("ediff-defvar-local" code nil nil [3840 3888])
-            ("ediff-defvar-local" code nil nil [3921 3963])
-            ("ediff-defvar-local" code nil nil [3996 4038])
-            ("ediff-defvar-local" code nil nil [4071 4113])
-            ("ediff-defvar-local" code nil nil [4153 4202])
-            ("ediff-defvar-local" code nil nil [4287 4339])
-            ("ediff-window-alist" variable
-               (:constant-flag t
-                :default-value (quote ((A . ediff-window-A) (65 . ediff-window-A) (B . ediff-window-B) (66 . ediff-window-B) (C . ediff-window-C) (67 . ediff-window-C) (Ancestor . ediff-window-Ancestor))))
-                nil [4393 4615])
-            ("ediff-split-window-function" variable (:default-value (quote split-window-vertically)) nil [4618 5266])
-            ("ediff-merge-split-window-function" variable (:default-value (quote split-window-horizontally)) nil [5268 5924])
-            ("declare-function" code nil nil [5986 6043])
-            ("declare-function" code nil nil [6044 6102])
-            ("ediff-control-frame-parameters" variable
-               (:constant-flag t
-                :default-value (list (quote (name . "Ediff")) (quote (minibuffer)) (quote (user-position . t)) (quote (vertical-scroll-bars)) (quote (scrollbar-width . 0)) (quote (scrollbar-height . 0)) (quote (menu-bar-lines . 0)) (quote (tool-bar-lines . 0)) (quote (left-fringe . 0)) (quote (right-fringe . 0)) (quote (auto-lower)) (quote (auto-raise . t)) (quote (visibility)) (quote (width . 1)) (quote (height . 1)) (quote (fullscreen)) (cons (quote top) (if (fboundp (quote ediff-display-pixel-height)) (1+ (ediff-display-pixel-height)) 3000)) (cons (quote left) (if (fboundp (quote ediff-display-pixel-width)) (1+ (ediff-display-pixel-width)) 3000))))
-                nil [6104 7323])
-            ("ediff-defvar-local" code nil nil [7410 7464])
-            ("ediff-mouse-pixel-threshold" variable (:default-value 30) nil [7486 7625])
-            ("ediff-grab-mouse" variable (:default-value t) nil [7627 7932])
-            ("ediff-control-frame-position-function" variable (:default-value (quote ediff-make-frame-position)) nil [7934 8313])
-            ("ediff-control-frame-upward-shift" variable (:default-value 42) nil [8315 8679])
-            ("ediff-narrow-control-frame-leftward-shift" variable (:default-value (if (featurep (quote xemacs)) 7 3)) nil [8681 9136])
-            ("ediff-wide-control-frame-rightward-shift" variable (:default-value 7) nil [9138 9565])
-            ("ediff-defvar-local" code nil nil [9630 9678])
-            ("ediff-defvar-local" code nil nil [9727 9874])
-            ("ediff-defvar-local" code nil nil [9875 9963])
-            ("ediff-defvar-local" code nil nil [9964 10418])
-            ("ediff-defvar-local" code nil nil [10479 10526])
-            ("ediff-prefer-iconified-control-frame" variable nil nil [10528 11057])
-            ("ediff-get-window-by-clicking" function (:arguments ("_wind" "_prev-wind" "wind-number")) nil [11074 11596])
-            ("ediff-select-lowest-window" function nil nil [11641 12347])
-            ("ediff-setup-windows" function (:arguments ("buffer-A" "buffer-B" "buffer-C" "control-buffer")) nil [12607 13274])
-            ("ediff-setup-windows-default" function (:arguments ("buffer-A" "buffer-B" "buffer-C" "control-buffer")) nil [13276 13511])
-            ("ediff-setup-windows-plain" function (:arguments ("buffer-A" "buffer-B" "buffer-C" "control-buffer")) nil [13633 13986])
-            ("ediff-setup-control-buffer" function (:prototype-flag t) nil [13988 14039])
-            ("ediff-setup-windows-plain-merge" function (:arguments ("buf-A" "buf-B" "buf-C" "control-buffer")) nil [14041 16342])
-            ("ediff-setup-windows-plain-compare" function (:arguments ("buf-A" "buf-B" "buf-C" "control-buffer")) nil [16411 18956])
-            ("ediff-setup-windows-multiframe" function (:arguments ("buf-A" "buf-B" "buf-C" "control-buf")) nil [19008 19323])
-            ("ediff-setup-windows-multiframe-merge" function (:arguments ("buf-A" "buf-B" "buf-C" "control-buf")) nil [19325 27140])
-            ("ediff-setup-windows-multiframe-compare" function (:arguments ("buf-A" "buf-B" "buf-C" "control-buf")) nil [27210 33395])
-            ("ediff-skip-unsuitable-frames" function (:arguments ("ok-unsplittable")) nil [33515 34351])
-            ("ediff-frame-has-dedicated-windows" function (:arguments ("frame")) nil [34353 34546])
-            ("ediff-window-ok-for-display" function (:arguments ("wind")) nil [34780 35075])
-            ("declare-function" code nil nil [35077 35152])
-            ("ediff-setup-control-frame" function (:arguments ("ctl-buffer" "designated-minibuffer-frame")) nil [35190 40254])
-            ("ediff-destroy-control-frame" function (:arguments ("ctl-buffer")) nil [40257 40713])
-            ("ediff-make-frame-position" function (:arguments ("ctl-buffer" "ctl-frame-width" "ctl-frame-height")) nil [40760 42616])
-            ("ediff-xemacs-select-frame-hook" function nil nil [42618 42795])
-            ("ediff-make-wide-display" function nil nil [42797 43746])
-            ("ediff-refresh-mode-lines" function nil nil [43922 47007])
-            ("ediff-refresh-control-frame" function nil nil [47010 47551])
-            ("ediff-make-narrow-control-buffer-id" function (:arguments ("skip-name")) nil [47554 47982])
-            ("ediff-make-base-title" function nil nil [47984 48112])
-            ("ediff-make-wide-control-buffer-id" function nil nil [48114 48548])
-            ("ediff-get-visible-buffer-window" function (:arguments ("buff")) nil [48587 48762])
-            ("ediff-keep-window-config" function (:arguments ("control-buf")) nil [48813 50118])
-            ("ediff-wind" package nil nil [50121 50142]))          
-      :file "ediff-wind.el"
-      :pointmax 50397
-      :fsize 50396
-      :lastmodtime '(23525 29614 0 0)
-      :unmatched-syntax '((close-paren 1575 . 1576) (symbol 1460 . 1476) (open-paren 1459 . 1460) (close-paren 1364 . 1365) (symbol 1269 . 1285) (open-paren 1268 . 1269)))
-    (semanticdb-table "semanticdb-table"
-      :file "ediff-util.el"
-      :fsize 158125
-      :lastmodtime '(23525 29614 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ediff-multiframe" variable nil nil [931 956])
-            ("ediff-init" include nil nil [974 995])
-            ("ediff-long-help-message-head" variable
-               (:constant-flag t
-                :default-value "    Move around      |      Toggle features      |        Manipulate
-=====================|===========================|=============================")
-                nil [1015 1246])
-            ("ediff-long-help-message-tail" variable
-               (:constant-flag t
-                :default-value "=====================|===========================|=============================
-    R -show registry |     = -compare regions    |  M   -show session group
-    D -diff output   |     E -browse Ediff manual|  G   -send bug report
-    i -status info   |     ? -help off           |  z/q -suspend/quit
--------------------------------------------------------------------------------
-For help on a specific command:  Click Button 2 over it; or
-              			 Put the cursor over it and type RET.")
-                nil [1247 1823])
-            ("ediff-long-help-message-compare3" variable
-               (:constant-flag t
-                :default-value "
-p,DEL -previous diff |     | -vert/horiz split   | xy -copy buf X's region to Y
-n,SPC -next diff     |     h -highlighting       | rx -restore buf X's old diff
-    j -jump to diff  |     @ -auto-refinement    |  * -refine current region
-   gx -goto X's point|    ## -ignore whitespace  |  ! -update diff regions
-  C-l -recenter      |    #c -ignore case        |
-  v/V -scroll up/dn  | #f/#h -focus/hide regions | wx -save buf X
-  </> -scroll lt/rt  |     X -read-only in buf X | wd -save diff output
-    ~ -rotate buffers|     m -wide display       |
-")
-                nil [1825 2546])
-            ("ediff-long-help-message-compare2" variable
-               (:constant-flag t
-                :default-value "
-p,DEL -previous diff |     | -vert/horiz split   |a/b -copy A/B's region to B/A
-n,SPC -next diff     |     h -highlighting       | rx -restore buf X's old diff
-    j -jump to diff  |     @ -auto-refinement    |  * -refine current region
-   gx -goto X's point|    ## -ignore whitespace  |  ! -update diff regions
-  C-l -recenter      |    #c -ignore case        |
-  v/V -scroll up/dn  | #f/#h -focus/hide regions | wx -save buf X
-  </> -scroll lt/rt  |     X -read-only in buf X | wd -save diff output
-    ~ -swap variants |     m -wide display       |
-")
-                nil [2548 3269])
-            ("ediff-long-help-message-narrow2" variable
-               (:constant-flag t
-                :default-value "
-p,DEL -previous diff |     | -vert/horiz split   |a/b -copy A/B's region to B/A
-n,SPC -next diff     |     h -highlighting       | rx -restore buf X's old diff
-    j -jump to diff  |     @ -auto-refinement    |  * -refine current region
-   gx -goto X's point|    ## -ignore whitespace  |  ! -update diff regions
-  C-l -recenter      |    #c -ignore case        |  % -narrow/widen buffs
-  v/V -scroll up/dn  | #f/#h -focus/hide regions | wx -save buf X
-  </> -scroll lt/rt  |     X -read-only in buf X | wd -save diff output
-    ~ -swap variants |     m -wide display       |
-")
-                nil [3271 4027])
-            ("ediff-long-help-message-word-mode" variable
-               (:constant-flag t
-                :default-value "
-p,DEL -previous diff |     | -vert/horiz split   | xy -copy buf X's region to Y
-n,SPC -next diff     |     h -highlighting       | rx -restore buf X's old diff
-    j -jump to diff  |                           |
-   gx -goto X's point|    % -narrow/widen buffs  |  ! -recompute diffs
-  C-l -recenter      |    #c -ignore case        |
-  v/V -scroll up/dn  | #f/#h -focus/hide regions | wx -save buf X
-  </> -scroll lt/rt  |     X -read-only in buf X | wd -save diff output
-    ~ -swap variants |     m -wide display       |
-")
-                nil [4029 4734])
-            ("ediff-long-help-message-merge" variable
-               (:constant-flag t
-                :default-value "
-p,DEL -previous diff |     | -vert/horiz split   |  x -copy buf X's region to C
-n,SPC -next diff     |     h -highlighting       |  r -restore buf C's old diff
-    j -jump to diff  |     @ -auto-refinement    |  * -refine current region
-   gx -goto X's point|    ## -ignore whitespace  |  ! -update diff regions
-  C-l -recenter      | #f/#h -focus/hide regions |  + -combine diff regions
-  v/V -scroll up/dn  |     X -read-only in buf X | wx -save buf X
-  </> -scroll lt/rt  |     m -wide display       | wd -save diff output
-    ~ -swap variants |     s -shrink window C    |  / -show/hide ancestor buff
-                     |  $$ -show clashes only    |  & -merge w/new default
-                     |  $* -skip changed regions |
-")
-                nil [4736 5618])
-            ("ediff-defvar-local" code nil nil [5653 5772])
-            ("ediff-brief-message-string" variable
-               (:constant-flag t
-                :default-value " Type ? for help")
-                nil [5774 5872])
-            ("ediff-defvar-local" code nil nil [5906 6026])
-            ("ediff-defvar-local" code nil nil [6028 6284])
-            ("ediff-defvar-local" code nil nil [6285 6447])
-            ("ediff-use-long-help-message" variable nil nil [6449 6609])
-            ("ediff-defvar-local" code nil nil [6639 6948])
-            ("ediff-help-region-map" variable (:default-value (make-sparse-keymap)) nil [7013 7064])
-            ("define-key" code nil nil [7066 7176])
-            ("ediff-set-help-overlays" function nil nil [7208 7720])
-            ("ediff-help-for-quick-help" function (:user-visible-flag t) nil [7723 11001])
-            ("ediff-help-message-line-length" function nil nil [11096 11278])
-            ("ediff-indent-help-message" function nil nil [11281 11589])
-            ("ediff-set-help-message" function nil nil [11632 13305])
-            ("ediff-customize" function nil nil [13322 13392])
-            ("ediff-help" package nil nil [13395 13416]))          
-      :file "ediff-help.el"
-      :pointmax 13447
-      :fsize 13610
-      :lastmodtime '(23525 29613 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ediff-version" variable
-               (:constant-flag t
-                :default-value "2.81.5")
-                nil [554 618])
-            ("ediff-date" variable
-               (:constant-flag t
-                :default-value "July 4, 2013")
-                nil [619 677])
-            ("ediff" package nil nil [5070 5086])
-            ("unless" code nil nil [5129 5205])
-            ("ediff-util" include nil nil [5208 5229])
-            ("ediff-init" include nil nil [5247 5268])
-            ("ediff-mult" include nil nil [5269 5290])
-            ("ediff" customgroup (:user-visible-flag t) nil [5334 5443])
-            ("ediff-use-last-dir" variable nil nil [5446 5592])
-            ("ediff-last-dir-A" variable nil nil [5649 5678])
-            ("ediff-last-dir-B" variable nil nil [5734 5763])
-            ("ediff-last-dir-C" variable nil nil [5819 5848])
-            ("ediff-last-dir-ancestor" variable nil nil [5915 5951])
-            ("ediff-last-merge-autostore-dir" variable nil nil [6030 6073])
-            ("ediff-set-read-only-in-buf-A" function nil nil [6139 6253])
-            ("declare-function" code nil nil [6255 6359])
-            ("declare-function" code nil nil [6360 6480])
-            ("ediff-get-default-file-name" function (:arguments ("default" "fileno")) nil [6799 7560])
-            ("ediff-files" function
-               (:user-visible-flag t
-                :arguments ("file-A" "file-B" "startup-hooks"))
-                nil [7604 8660])
-            ("ediff-files3" function
-               (:user-visible-flag t
-                :arguments ("file-A" "file-B" "file-C" "startup-hooks"))
-                nil [8677 10267])
-            ("defalias" code nil nil [10284 10316])
-            ("ediff-find-file" function (:arguments ("file-var" "buffer-name" "last-dir" "hooks-var")) nil [10319 12460])
-            ("ediff-files-internal" function (:arguments ("file-A" "file-B" "file-C" "startup-hooks" "job-name" "merge-buffer-file")) nil [12534 13582])
-            ("declare-function" code nil nil [13584 13638])
-            ("defalias" code nil nil [13655 13685])
-            ("ediff-current-file" function (:user-visible-flag t) nil [13702 15382])
-            ("ediff-backup" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [15400 15969])
-            ("ediff-buffers" function
-               (:user-visible-flag t
-                :arguments ("buffer-A" "buffer-B" "startup-hooks" "job-name"))
-                nil [15986 16947])
-            ("defalias" code nil nil [16964 16999])
-            ("ediff-buffers3" function
-               (:user-visible-flag t
-                :arguments ("buffer-A" "buffer-B" "buffer-C" "startup-hooks" "job-name"))
-                nil [17017 18284])
-            ("defalias" code nil nil [18301 18338])
-            ("ediff-buffers-internal" function (:arguments ("buf-A" "buf-B" "buf-C" "startup-hooks" "job-name" "merge-buffer-file")) nil [18414 20312])
-            ("ediff-get-default-directory-name" function nil nil [20557 20831])
-            ("ediff-directories" function
-               (:user-visible-flag t
-                :arguments ("dir1" "dir2" "regexp"))
-                nil [20849 21890])
-            ("defalias" code nil nil [21907 21943])
-            ("ediff-directory-revisions" function
-               (:user-visible-flag t
-                :arguments ("dir1" "regexp"))
-                nil [21961 22863])
-            ("defalias" code nil nil [22880 22933])
-            ("ediff-directories3" function
-               (:user-visible-flag t
-                :arguments ("dir1" "dir2" "dir3" "regexp"))
-                nil [22951 24166])
-            ("defalias" code nil nil [24183 24221])
-            ("ediff-merge-directories" function
-               (:user-visible-flag t
-                :arguments ("dir1" "dir2" "regexp" "merge-autostore-dir"))
-                nil [24238 25414])
-            ("defalias" code nil nil [25431 25479])
-            ("ediff-merge-directories-with-ancestor" function
-               (:user-visible-flag t
-                :arguments ("dir1" "dir2" "ancestor-dir" "regexp" "merge-autostore-dir"))
-                nil [25496 27061])
-            ("ediff-merge-directory-revisions" function
-               (:user-visible-flag t
-                :arguments ("dir1" "regexp" "merge-autostore-dir"))
-                nil [27078 28132])
-            ("defalias" code nil nil [28149 28214])
-            ("ediff-merge-directory-revisions-with-ancestor" function
-               (:user-visible-flag t
-                :arguments ("dir1" "regexp" "merge-autostore-dir"))
-                nil [28231 29373])
-            ("defalias" code nil nil [29390 29487])
-            ("defalias" code nil nil [29504 29580])
-            ("ediff-directories-internal" function (:arguments ("dir1" "dir2" "dir3" "regexp" "action" "jobname" "startup-hooks" "merge-autostore-dir")) nil [29985 32710])
-            ("ediff-directory-revisions-internal" function (:arguments ("dir1" "regexp" "action" "jobname" "startup-hooks" "merge-autostore-dir")) nil [32797 34421])
-            ("ediff-windows-wordwise" function
-               (:user-visible-flag t
-                :arguments ("dumb-mode" "wind-A" "wind-B" "startup-hooks"))
-                nil [34472 35013])
-            ("ediff-windows-linewise" function
-               (:user-visible-flag t
-                :arguments ("dumb-mode" "wind-A" "wind-B" "startup-hooks"))
-                nil [35030 35564])
-            ("ediff-windows" function (:arguments ("dumb-mode" "wind-A" "wind-B" "startup-hooks" "job-name" "word-mode")) nil [35806 36852])
-            ("ediff-regions-wordwise" function
-               (:user-visible-flag t
-                :arguments ("buffer-A" "buffer-B" "startup-hooks"))
-                nil [36870 38508])
-            ("ediff-regions-linewise" function
-               (:user-visible-flag t
-                :arguments ("buffer-A" "buffer-B" "startup-hooks"))
-                nil [38525 40756])
-            ("ediff-regions-internal" function (:arguments ("buffer-A" "beg-A" "end-A" "buffer-B" "beg-B" "end-B" "startup-hooks" "job-name" "word-mode" "setup-parameters")) nil [40860 42571])
-            ("defalias" code nil nil [42618 42660])
-            ("ediff-merge-on-startup" function nil nil [42662 42937])
-            ("ediff-merge-files" function
-               (:user-visible-flag t
-                :arguments ("file-A" "file-B" "startup-hooks" "merge-buffer-file"))
-                nil [42954 44351])
-            ("ediff-merge-files-with-ancestor" function
-               (:user-visible-flag t
-                :arguments ("file-A" "file-B" "file-ancestor" "startup-hooks" "merge-buffer-file"))
-                nil [44368 46364])
-            ("defalias" code nil nil [46381 46451])
-            ("ediff-merge-buffers" function
-               (:user-visible-flag t
-                :arguments ("buffer-A" "buffer-B" "startup-hooks" "job-name" "merge-buffer-file"))
-                nil [46468 47768])
-            ("ediff-merge-buffers-with-ancestor" function
-               (:user-visible-flag t
-                :arguments ("buffer-A" "buffer-B" "buffer-ancestor" "startup-hooks" "job-name" "merge-buffer-file"))
-                nil [47785 49482])
-            ("ediff-merge-revisions" function
-               (:user-visible-flag t
-                :arguments ("file" "startup-hooks" "merge-buffer-file"))
-                nil [49500 50596])
-            ("ediff-merge-revisions-with-ancestor" function
-               (:user-visible-flag t
-                :arguments ("file" "startup-hooks" "merge-buffer-file"))
-                nil [50614 51972])
-            ("ediff-last-dir-patch" variable nil nil [51990 52019])
-            ("ediff-patch-default-directory" variable nil nil [52020 52058])
-            ("declare-function" code nil nil [52059 52157])
-            ("declare-function" code nil nil [52158 52285])
-            ("ediff-patch-file" function
-               (:user-visible-flag t
-                :arguments ("arg" "patch-buf"))
-                nil [52302 53370])
-            ("declare-function" code nil nil [53372 53503])
-            ("ediff-patch-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg" "patch-buf"))
-                nil [53520 54348])
-            ("defalias" code nil nil [54366 54402])
-            ("defalias" code nil nil [54418 54463])
-            ("ediff-revision" function
-               (:user-visible-flag t
-                :arguments ("file" "startup-hooks"))
-                nil [54516 55869])
-            ("defalias" code nil nil [55887 55924])
-            ("ediff-load-version-control" function (:arguments ("silent")) nil [56057 56497])
-            ("ediff-version" function (:user-visible-flag t) nil [56515 56850])
-            ("declare-function" code nil nil [56901 56979])
-            ("ediff-documentation" function
-               (:user-visible-flag t
-                :arguments ("node"))
-                nil [56996 57793])
-            ("ediff-files-command" function nil nil [57840 58120])
-            ("ediff3-files-command" function nil nil [58137 58470])
-            ("ediff-merge-command" function nil nil [58487 58785])
-            ("ediff-merge-with-ancestor-command" function nil nil [58802 59196])
-            ("ediff-directories-command" function nil nil [59213 59567])
-            ("ediff-directories3-command" function nil nil [59584 59988])
-            ("ediff-merge-directories-command" function nil nil [60005 60377])
-            ("ediff-merge-directories-with-ancestor-command" function nil nil [60394 60859])
-            ("ediff-util" include nil nil [60863 60884])
-            ("run-hooks" code nil nil [60886 60914]))          
-      :file "ediff.el"
-      :pointmax 61164
-      :fsize 61163
-      :lastmodtime '(23525 29614 0 0)
-      :unmatched-syntax '((close-paren 5205 . 5206) (symbol 5110 . 5126) (open-paren 5109 . 5110)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("A-begin" variable nil nil [1008 1024])
-            ("A-end" variable nil nil [1025 1039])
-            ("B-begin" variable nil nil [1040 1056])
-            ("B-end" variable nil nil [1057 1071])
-            ("diff-vector" variable nil nil [1072 1092])
-            ("merge-begin" variable nil nil [1093 1113])
-            ("merge-end" variable nil nil [1114 1132])
-            ("valid-diff" variable nil nil [1133 1152])
-            ("emerge-defvar-local" function (:arguments ("var" "value" "doc")) nil [1166 1610])
-            ("emerge-minor-modes-list" variable (:default-value (quote ((emerge-mode " Emerge") (emerge-fast-mode " F") (emerge-edit-mode " E") (emerge-auto-advance " A") (emerge-skip-prefers " S")))) nil [1683 1862])
-            ("if" code nil nil [1863 1995])
-            ("emerge-mode" function nil nil [2075 2594])
-            ("emerge" customgroup (:user-visible-flag t) nil [2632 2706])
-            ("emerge-diff-program" variable (:default-value "diff") nil [3318 3439])
-            ("emerge-diff3-program" variable (:default-value "diff3") nil [3440 3628])
-            ("emerge-diff-options" variable nil nil [3629 3769])
-            ("emerge-match-diff-line" variable (:default-value (let ((x "\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)")) (concat "^" x "\\([acd]\\)" x "$"))) nil [3770 4049])
-            ("emerge-diff-ok-lines-regexp" variable (:default-value "^\\([0-9,]+[acd][0-9,]+$\\|[<>] \\|---\\)") nil [4050 4298])
-            ("emerge-diff3-ok-lines-regexp" variable (:default-value "^\\([1-3]:\\|====\\|  \\)") nil [4299 4533])
-            ("emerge-rcs-ci-program" variable (:default-value "ci") nil [4535 4660])
-            ("emerge-rcs-co-program" variable (:default-value "co") nil [4661 4787])
-            ("emerge-process-local-variables" variable nil nil [4789 5046])
-            ("emerge-execute-line-deletions" variable nil nil [5047 5467])
-            ("emerge-before-flag" variable (:default-value "vvvvvvvvvvvvvvvvvvvv
-") nil [5469 5720])
-            ("emerge-after-flag" variable (:default-value "^^^^^^^^^^^^^^^^^^^^
-") nil [5721 5971])
-            ("emerge-startup-hook" variable nil nil [5992 6127])
-            ("emerge-select-hook" variable nil nil [6128 6311])
-            ("emerge-unselect-hook" variable nil nil [6312 6499])
-            ("emerge-default-last-directories" variable nil nil [6590 6862])
-            ("emerge-last-dir-A" variable nil nil [6864 6965])
-            ("emerge-last-dir-B" variable nil nil [6966 7068])
-            ("emerge-last-dir-ancestor" variable nil nil [7069 7180])
-            ("emerge-last-dir-output" variable nil nil [7181 7288])
-            ("emerge-last-revision-A" variable nil nil [7289 7403])
-            ("emerge-last-revision-B" variable nil nil [7404 7519])
-            ("emerge-last-revision-ancestor" variable nil nil [7520 7644])
-            ("emerge-before-flag-length" variable nil nil [7646 7680])
-            ("emerge-before-flag-lines" variable nil nil [7681 7714])
-            ("emerge-before-flag-match" variable nil nil [7715 7748])
-            ("emerge-after-flag-length" variable nil nil [7749 7782])
-            ("emerge-after-flag-lines" variable nil nil [7783 7815])
-            ("emerge-after-flag-match" variable nil nil [7816 7848])
-            ("emerge-diff-buffer" variable nil nil [7849 7876])
-            ("emerge-diff-error-buffer" variable nil nil [7877 7910])
-            ("emerge-prefix-argument" variable nil nil [7911 7942])
-            ("emerge-file-out" variable nil nil [7943 7967])
-            ("emerge-exit-func" variable nil nil [7968 7993])
-            ("emerge-globalized-difference-list" variable nil nil [7994 8036])
-            ("emerge-globalized-number-of-differences" variable nil nil [8037 8085])
-            ("emerge-new-flags" function nil nil [8233 8849])
-            ("emerge-count-matches-string" function (:arguments ("string" "regexp")) nil [8851 9096])
-            ("emerge-new-flags" code nil nil [9131 9149])
-            ("emerge-min-visible-lines" variable (:default-value 3) nil [9151 9327])
-            ("emerge-temp-file-prefix" variable (:default-value (expand-file-name "emerge" temporary-file-directory)) nil [9329 9542])
-            ("make-obsolete-variable" code nil nil [9544 9659])
-            ("emerge-temp-file-mode" variable (:default-value 384) nil [9661 9781])
-            ("make-obsolete-variable" code nil nil [9783 9904])
-            ("emerge-combine-versions-template" variable (:default-value "#ifdef NEW
-%b#else /* not NEW */
-%a#endif /* not NEW */
-") nil [9906 10477])
-            ("emerge-basic-keymap" variable nil nil [10497 10677])
-            ("emerge-fast-keymap" variable nil nil [10679 10797])
-            ("emerge-options-menu" variable (:default-value (make-sparse-keymap "Options")) nil [10799 10860])
-            ("emerge-merge-menu" variable (:default-value (make-sparse-keymap "Merge")) nil [10862 10919])
-            ("emerge-move-menu" variable (:default-value (make-sparse-keymap "Move")) nil [10921 10976])
-            ("emerge-command-prefix" variable (:default-value "") nil [10978 11147])
-            ("emerge-setup-fixed-keymaps" function nil nil [11302 18224])
-            ("emerge-defvar-local" code nil nil [18322 18390])
-            ("emerge-defvar-local" code nil nil [18391 18477])
-            ("emerge-defvar-local" code nil nil [18478 18564])
-            ("emerge-defvar-local" code nil nil [18565 18655])
-            ("emerge-defvar-local" code nil nil [18656 18746])
-            ("emerge-defvar-local" code nil nil [18747 18848])
-            ("emerge-defvar-local" code nil nil [18849 18978])
-            ("emerge-saved-variables" variable
-               (:constant-flag t
-                :default-value (quote ((buffer-modified-p set-buffer-modified-p) buffer-read-only buffer-auto-save-file-name)))
-                nil [18980 19208])
-            ("emerge-merging-values" variable
-               (:constant-flag t
-                :default-value (quote (nil t nil)))
-                nil [19209 19322])
-            ("emerge-defvar-local" code nil nil [19324 19430])
-            ("emerge-defvar-local" code nil nil [19431 19537])
-            ("emerge-defvar-local" code nil nil [19539 20999])
-            ("emerge-defvar-local" code nil nil [21000 21097])
-            ("emerge-defvar-local" code nil nil [21098 21185])
-            ("emerge-defvar-local" code nil nil [21186 21419])
-            ("emerge-defvar-local" code nil nil [21420 21515])
-            ("emerge-defvar-local" code nil nil [21516 21664])
-            ("emerge-defvar-local" code nil nil [21665 21802])
-            ("emerge-defvar-local" code nil nil [21803 22076])
-            ("emerge-defvar-local" code nil nil [22077 22197])
-            ("emerge-files-internal" function (:arguments ("file-A" "file-B" "startup-hooks" "quit-hooks" "output-file")) nil [22239 23706])
-            ("emerge-setup" function (:arguments ("buffer-A" "file-A" "buffer-B" "file-B" "startup-hooks" "quit-hooks" "output-file")) nil [23740 25328])
-            ("emerge-make-diff-list" function (:arguments ("file-A" "file-B")) nil [25387 25956])
-            ("emerge-extract-diffs" function (:arguments ("diff-buffer")) nil [25958 27433])
-            ("emerge-prepare-error-list" function (:arguments ("ok-regexp")) nil [27482 27776])
-            ("emerge-files-with-ancestor-internal" function (:arguments ("file-A" "file-B" "file-ancestor" "startup-hooks" "quit-hooks" "output-file")) nil [27834 29954])
-            ("emerge-setup-with-ancestor" function (:arguments ("buffer-A" "file-A" "buffer-B" "file-B" "buffer-ancestor" "file-ancestor" "startup-hooks" "quit-hooks" "output-file")) nil [30005 31783])
-            ("emerge-make-diff3-list" function (:arguments ("file-A" "file-B" "file-ancestor")) nil [31859 32491])
-            ("emerge-extract-diffs3" function (:arguments ("diff-buffer")) nil [32493 33377])
-            ("emerge-get-diff3-group" function (:arguments ("file")) nil [33379 34524])
-            ("emerge-files" function
-               (:user-visible-flag t
-                :arguments ("_arg" "file-A" "file-B" "file-out" "startup-hooks" "quit-hooks"))
-                nil [34581 35206])
-            ("emerge-files-with-ancestor" function
-               (:user-visible-flag t
-                :arguments ("_arg" "file-A" "file-B" "file-ancestor" "file-out" "startup-hooks" "quit-hooks"))
-                nil [35223 36024])
-            ("emerge-files-exit" function (:arguments ("file-out")) nil [36103 36269])
-            ("emerge-buffers" function
-               (:user-visible-flag t
-                :arguments ("buffer-A" "buffer-B" "startup-hooks" "quit-hooks"))
-                nil [36328 37093])
-            ("emerge-buffers-with-ancestor" function
-               (:user-visible-flag t
-                :arguments ("buffer-A" "buffer-B" "buffer-ancestor" "startup-hooks" "quit-hooks"))
-                nil [37110 38452])
-            ("emerge-files-command" function nil nil [38522 38863])
-            ("emerge-files-with-ancestor-command" function nil nil [38880 39881])
-            ("emerge-command-exit" function (:arguments ("file-out")) nil [39883 40005])
-            ("emerge-files-remote" function (:arguments ("file-a" "file-b" "file-out")) nil [40072 40317])
-            ("emerge-files-with-ancestor-remote" function (:arguments ("file-a" "file-b" "file-anc" "file-out")) nil [40334 40625])
-            ("emerge-remote-exit" function (:arguments ("file-out" "emerge-exit-func")) nil [40627 40815])
-            ("emerge-revisions" function
-               (:user-visible-flag t
-                :arguments ("arg" "file" "revision-A" "revision-B" "startup-hooks" "quit-hooks"))
-                nil [40879 41558])
-            ("emerge-revisions-with-ancestor" function
-               (:user-visible-flag t
-                :arguments ("arg" "file" "revision-A" "revision-B" "ancestor" "startup-hooks" "quit-hooks"))
-                nil [41575 42569])
-            ("emerge-revisions-internal" function (:arguments ("file" "revision-A" "revision-B" "startup-hooks" "quit-hooks" "_output-file")) nil [42571 43824])
-            ("emerge-revision-with-ancestor-internal" function (:arguments ("file" "revision-A" "revision-B" "ancestor" "startup-hooks" "quit-hooks" "output-file")) nil [43826 45693])
-            ("emerge-execute-line" function (:user-visible-flag t) nil [45751 50083])
-            ("emerge-merge-directories-filename-regexp" variable (:default-value "[^.]") nil [50155 50322])
-            ("emerge-merge-directories" function (:arguments ("a-dir" "b-dir" "ancestor-dir" "output-dir")) nil [50339 53248])
-            ("emerge-setup-windows" function (:arguments ("buffer-A" "buffer-B" "merge-buffer" "pos")) nil [53383 54309])
-            ("emerge-set-keys" function nil nil [54352 55733])
-            ("emerge-remember-buffer-characteristics" function nil nil [55735 56701])
-            ("emerge-restore-buffer-characteristics" function nil nil [56703 57145])
-            ("emerge-goto-line" function (:arguments ("desired-line" "current-line")) nil [57238 57352])
-            ("emerge-convert-diffs-to-markers" function (:arguments ("A-buffer" "B-buffer" "merge-buffer" "lineno-list")) nil [57354 59402])
-            ("emerge-select-prefer-Bs" function nil nil [59468 59838])
-            ("emerge-handle-local-variables" function nil nil [59924 60143])
-            ("emerge-write-and-delete" function (:arguments ("file-out")) nil [60171 60712])
-            ("emerge-recenter" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [60728 62458])
-            ("emerge-operate-on-windows" function (:arguments ("operation" "arg")) nil [63058 63724])
-            ("emerge-scroll-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [63726 64714])
-            ("emerge-scroll-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [64716 65712])
-            ("emerge-scroll-left" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [65714 66722])
-            ("emerge-scroll-right" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [66724 67736])
-            ("emerge-scroll-reset" function (:user-visible-flag t) nil [67738 68028])
-            ("emerge-position-region" function (:arguments ("beg" "end" "pos")) nil [68405 69344])
-            ("emerge-next-difference" function (:user-visible-flag t) nil [69346 69819])
-            ("emerge-previous-difference" function (:user-visible-flag t) nil [69821 70251])
-            ("emerge-jump-to-difference" function
-               (:user-visible-flag t
-                :arguments ("difference-number"))
-                nil [70253 70642])
-            ("emerge-abort" function (:user-visible-flag t) nil [70644 70731])
-            ("emerge-quit" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [70733 71552])
-            ("emerge-really-quit" function (:arguments ("arg")) nil [71586 72539])
-            ("emerge-select-A" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [72541 73158])
-            ("emerge-select-A-edit" function (:arguments ("merge-begin" "merge-end" "A-begin" "A-end")) nil [73193 73517])
-            ("emerge-select-B" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [73519 74136])
-            ("emerge-select-B-edit" function (:arguments ("merge-begin" "merge-end" "B-begin" "B-end")) nil [74171 74495])
-            ("emerge-default-A" function (:user-visible-flag t) nil [74497 75357])
-            ("emerge-default-B" function (:user-visible-flag t) nil [75359 76219])
-            ("emerge-fast-mode" function (:user-visible-flag t) nil [76221 76640])
-            ("emerge-edit-mode" function (:user-visible-flag t) nil [76642 77060])
-            ("emerge-auto-advance" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [77062 77607])
-            ("emerge-skip-prefers" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [77609 78195])
-            ("emerge-copy-as-kill-A" function (:user-visible-flag t) nil [78197 78627])
-            ("emerge-copy-as-kill-B" function (:user-visible-flag t) nil [78629 79059])
-            ("emerge-insert-A" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [79061 79640])
-            ("emerge-insert-B" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [79642 80221])
-            ("emerge-mark-difference" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [80223 80732])
-            ("emerge-file-names" function (:user-visible-flag t) nil [80734 81980])
-            ("emerge-join-differences" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [81982 83754])
-            ("emerge-split-difference" function (:user-visible-flag t) nil [83756 85992])
-            ("emerge-trim-difference" function (:user-visible-flag t) nil [85994 89331])
-            ("emerge-find-difference" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [89697 90203])
-            ("emerge-find-difference-merge" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [90205 90693])
-            ("emerge-find-difference-A" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [90695 91268])
-            ("emerge-find-difference-B" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [91270 91843])
-            ("emerge-find-difference1" function (:arguments ("arg" "location" "begin" "end")) nil [91845 93214])
-            ("emerge-line-numbers" function (:user-visible-flag t) nil [93216 93928])
-            ("emerge-line-diff" variable nil nil [93930 93955])
-            ("emerge-line-number-in-buf" function (:arguments ("begin-marker" "end-marker")) nil [93957 94378])
-            ("emerge-set-combine-template" function
-               (:user-visible-flag t
-                :arguments ("string" "localize"))
-                nil [94380 95069])
-            ("emerge-set-combine-versions-template" function
-               (:user-visible-flag t
-                :arguments ("start" "end" "localize"))
-                nil [95071 95797])
-            ("emerge-combine-versions" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [95799 96213])
-            ("emerge-combine-versions-register" function
-               (:user-visible-flag t
-                :arguments ("char" "force"))
-                nil [96215 96989])
-            ("emerge-combine-versions-internal" function (:arguments ("emerge-combine-template" "force")) nil [96991 97308])
-            ("emerge-combine-template" variable nil nil [97310 97342])
-            ("emerge-combine-versions-edit" function (:arguments ("merge-begin" "merge-end" "A-begin" "A-end" "B-begin" "B-end")) nil [97344 98202])
-            ("emerge-set-merge-mode" function
-               (:user-visible-flag t
-                :arguments ("mode"))
-                nil [98204 98627])
-            ("emerge-one-line-window" function nil nil [98629 98752])
-            ("emerge-select-difference" function (:arguments ("n")) nil [98899 99269])
-            ("emerge-place-flags-in-buffer" function (:arguments ("buffer" "difference" "before-index" "after-index")) nil [99271 99564])
-            ("emerge-place-flags-in-buffer1" function (:arguments ("difference" "before-index" "after-index")) nil [99566 101697])
-            ("emerge-unselect-difference" function (:arguments ("n")) nil [101769 102206])
-            ("emerge-remove-flags-in-buffer" function (:arguments ("buffer" "before" "after")) nil [102208 102815])
-            ("emerge-unselect-and-select-difference" function (:arguments ("n" "suppress-display")) nil [102876 103590])
-            ("emerge-select-version" function (:arguments ("force" "a-version" "b-version" "neither-version")) nil [104006 104892])
-            ("emerge-read-file-name" function (:arguments ("prompt" "alternative-default-dir" "default-file" "A-file" "must-match")) nil [104962 107135])
-            ("emerge-refresh-mode-line" function nil nil [107207 107813])
-            ("emerge-compare-buffers" function (:arguments ("buffer-x" "x-begin" "x-end" "buffer-y" "y-begin" "y-end")) nil [107882 108677])
-            ("emerge-unique-buffer-name" function (:arguments ("prefix" "suffix")) nil [108801 109069])
-            ("emerge-validate-difference" function nil nil [109117 109306])
-            ("emerge-save-variables" function (:arguments ("vars")) nil [109805 109933])
-            ("emerge-restore-variables" function (:arguments ("vars" "values")) nil [109935 110184])
-            ("emerge-make-temp-file" function (:arguments ("prefix")) nil [110310 110477])
-            ("emerge-query-write-file" function (:user-visible-flag t) nil [110558 110817])
-            ("emerge-query-save-buffer" function (:user-visible-flag t) nil [110819 111076])
-            ("emerge-query-and-call" function (:arguments ("command")) nil [111078 112177])
-            ("emerge-verify-file-buffer" function nil nil [112440 113282])
-            ("emerge-copy-modes" function (:arguments ("buffer")) nil [113425 113535])
-            ("emerge-force-define-key" function (:arguments ("keymap" "key" "definition")) nil [113588 114020])
-            ("emerge-define-key-if-possible" function (:arguments ("keymap" "key" "definition")) nil [117098 117590])
-            ("emerge-show-file-name" function (:user-visible-flag t) nil [118208 119021])
-            ("emerge-make-auto-save-file-name" function nil nil [119679 120828])
-            ("emerge-hash-string-into-string" function (:arguments ("s")) nil [120966 121333])
-            ("emerge-unslashify-name" function (:arguments ("s")) nil [121444 121793])
-            ("emerge-metachars" variable nil nil [121795 121942])
-            ("make-obsolete-variable" code nil nil [121943 121996])
-            ("emerge" package nil nil [121998 122015]))          
-      :file "emerge.el"
-      :pointmax 122041
-      :fsize 122040
-      :lastmodtime '(23525 29614 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("change-log" customgroup (:user-visible-flag t) nil [1289 1448])
-            ("change-log-default-name" variable nil nil [1451 1626])
-            ("put" code nil nil [1642 1711])
-            ("change-log-mode-hook" variable nil nil [1713 1826])
-            ("add-log-current-defun-function" variable nil nil [1895 2213])
-            ("add-log-full-name" variable nil nil [2230 2474])
-            ("add-log-mailing-address" variable nil nil [2491 2989])
-            ("add-log-time-format" variable (:default-value (quote add-log-iso8601-time-string)) nil [2991 3482])
-            ("add-log-keep-changes-together" variable nil nil [3484 4325])
-            ("add-log-always-start-new-record" variable nil nil [4327 4501])
-            ("add-log-buffer-file-name-function" variable (:default-value (quote buffer-file-name)) nil [4503 4724])
-            ("add-log-file-name-function" variable nil nil [4726 5114])
-            ("change-log-version-info-enabled" variable nil nil [5117 5287])
-            ("change-log-version-number-regexp-list" variable (:default-value (let ((re "\\([0-9]+\\.[0-9.]+\\)")) (list (concat "^(def[^ 	
-]+[ 	]+[^ 	
-][ 	]\"" re) (concat "^;+ *Revision: +[^ 	
-]+[ 	]+" re)))) nil [5289 5830])
-            ("change-log-directory-files" variable (:default-value (quote (".bzr" ".git" ".hg" ".svn"))) nil [5832 6177])
-            ("change-log-date" variable
-               (:default-value (quote ((t (:inherit font-lock-string-face))))
-                :type "face")
-                nil [6179 6333])
-            ("change-log-name" variable
-               (:default-value (quote ((t (:inherit font-lock-constant-face))))
-                :type "face")
-                nil [6335 6483])
-            ("change-log-email" variable
-               (:default-value (quote ((t (:inherit font-lock-variable-name-face))))
-                :type "face")
-                nil [6485 6649])
-            ("change-log-file" variable
-               (:default-value (quote ((t (:inherit font-lock-function-name-face))))
-                :type "face")
-                nil [6651 6802])
-            ("change-log-list" variable
-               (:default-value (quote ((t (:inherit font-lock-keyword-face))))
-                :type "face")
-                nil [6804 6984])
-            ("change-log-conditionals" variable
-               (:default-value (quote ((t (:inherit font-lock-variable-name-face))))
-                :type "face")
-                nil [6986 7167])
-            ("change-log-function" variable
-               (:default-value (quote ((t (:inherit font-lock-variable-name-face))))
-                :type "face")
-                nil [7169 7340])
-            ("change-log-acknowledgment" variable
-               (:default-value (quote ((t (:inherit font-lock-comment-face))))
-                :type "face")
-                nil [7342 7502])
-            ("define-obsolete-face-alias" code nil nil [7503 7595])
-            ("change-log-file-names-re" variable
-               (:constant-flag t
-                :default-value "^\\( +\\|	\\)\\* \\([^ ,:([
-]+\\)")
-                nil [7597 7670])
-            ("change-log-start-entry-re" variable
-               (:constant-flag t
-                :default-value "^\\sw.........[0-9:+ ]*")
-                nil [7671 7733])
-            ("change-log-font-lock-keywords" variable (:default-value (\` (("^[0-9-]+ +\\|^ \\{11,\\}\\|^	 \\{3,\\}\\|^\\(Sun\\|Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\) [A-z][a-z][a-z] [0-9:+ ]+" (0 (quote change-log-date)) ("\\([^<(]+?\\)[ 	]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil (1 (quote change-log-name)) (2 (quote change-log-email)))) ((\, change-log-file-names-re) (2 (quote change-log-file)) ("\\=, \\([^ ,:([
-]+\\)" nil nil (1 (quote change-log-file))) ("\\= (\\([^(),
-]+\\|(\\(setf\\|SETF\\) [^() ,
-]+)\\)" nil nil (1 (quote change-log-list))) ("\\=, *\\([^(),
-]+\\|(\\(setf\\|SETF\\) [^() ,
-]+)\\)" nil nil (1 (quote change-log-list)))) ("^\\( +\\|	\\)(\\([^(),
-]+\\|(\\(setf\\|SETF\\) [^() ,
-]+)\\)" (2 (quote change-log-list)) ("\\=, *\\([^(),
-]+\\|(\\(setf\\|SETF\\) [^() ,
-]+)\\)" nil nil (1 (quote change-log-list)))) ("\\[!?\\([^]
-]+\\)\\]\\(:\\| (\\)" (1 (quote change-log-conditionals))) ("<\\([^>
-]+\\)>\\(:\\| (\\)" (1 (quote change-log-function))) ("\\(^\\( +\\|	\\)\\|  \\)\\(Thanks to\\|Patch\\(es\\)? by\\|Report\\(ed by\\| from\\)\\|Suggest\\(ed by\\|ion from\\)\\)" 3 (quote change-log-acknowledgment))))) nil [7735 9881])
-            ("change-log-search-file-name" function (:arguments ("where")) nil [9883 10958])
-            ("change-log-find-file" function (:user-visible-flag t) nil [10960 11221])
-            ("change-log-search-tag-name-1" function (:arguments ("from")) nil [11223 12094])
-            ("change-log-tag-re" variable
-               (:constant-flag t
-                :default-value "(\\(\\(?:\\sw\\|\\s_\\)+\\(?:[, 	]+\\(?:\\sw\\|\\s_\\)+\\)*\\))")
-                nil [12096 12247])
-            ("change-log-search-tag-name" function (:arguments ("at")) nil [12249 14369])
-            ("change-log-find-head" variable nil nil [14371 14404])
-            ("change-log-find-tail" variable nil nil [14405 14438])
-            ("change-log-find-window" variable nil nil [14439 14474])
-            ("change-log-goto-source-1" function (:arguments ("tag" "regexp" "file" "buffer" "window" "first" "last")) nil [14476 16820])
-            ("change-log-goto-source" function (:user-visible-flag t) nil [16822 19000])
-            ("change-log-next-error" function
-               (:user-visible-flag t
-                :arguments ("argp" "reset"))
-                nil [19002 19937])
-            ("change-log-mode-map" variable (:default-value (let ((map (make-sparse-keymap)) (menu-map (make-sparse-keymap))) (define-key map [3 16] (quote add-log-edit-prev-comment)) (define-key map [3 14] (quote add-log-edit-next-comment)) (define-key map [3 6] (quote change-log-find-file)) (define-key map [3 3] (quote change-log-goto-source)) (define-key map [menu-bar changelog] (cons "ChangeLog" menu-map)) (define-key menu-map [gs] (quote (menu-item "Go To Source" change-log-goto-source :help "Go to source location of ChangeLog tag near point"))) (define-key menu-map [ff] (quote (menu-item "Find File" change-log-find-file :help "Visit the file for the change under point"))) (define-key menu-map [sep] (quote ("--"))) (define-key menu-map [nx] (quote (menu-item "Next Log-Edit Comment" add-log-edit-next-comment :help "Cycle forward through Log-Edit mode comment history"))) (define-key menu-map [pr] (quote (menu-item "Previous Log-Edit Comment" add-log-edit-prev-comment :help "Cycle backward through Log-Edit mode comment history"))) map)) nil [19939 21053])
-            ("defvaralias" code nil nil [21201 21265])
-            ("add-log-time-zone-rule" variable nil nil [21266 21485])
-            ("put" code nil nil [21486 21584])
-            ("add-log-iso8601-time-zone" function (:arguments ("time" "zone")) nil [21586 21716])
-            ("add-log-iso8601-with-time-zone" variable nil nil [21718 21761])
-            ("add-log-iso8601-time-string" function (:arguments ("time" "zone")) nil [21763 21920])
-            ("change-log-name" function nil nil [21922 22063])
-            ("add-log-edit-prev-comment" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [22065 22820])
-            ("add-log-edit-next-comment" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [22822 23026])
-            ("prompt-for-change-log-name" function nil nil [23043 23683])
-            ("change-log-version-number-search" function nil nil [23685 24599])
-            ("declare-function" code nil nil [24601 24701])
-            ("find-change-log" function (:arguments ("file-name" "buffer-file")) nil [24718 27795])
-            ("add-log-file-name" function (:arguments ("buffer-file" "log-file")) nil [27797 29028])
-            ("add-change-log-entry" function
-               (:user-visible-flag t
-                :arguments ("whoami" "file-name" "other-window" "new-entry" "put-new-entry-on-new-line"))
-                nil [29045 37097])
-            ("add-change-log-entry-other-window" function
-               (:user-visible-flag t
-                :arguments ("whoami" "file-name"))
-                nil [37114 37501])
-            ("change-log-indent-text" variable nil nil [37504 37537])
-            ("change-log-fill-parenthesized-list" function nil nil [37539 38624])
-            ("change-log-indent" function nil nil [38626 39289])
-            ("smerge-resolve-function" variable nil nil [39292 39324])
-            ("copyright-at-end-flag" variable nil nil [39325 39355])
-            ("define-derived-mode" code nil nil [39372 41833])
-            ("change-log-next-buffer" function (:arguments ("buffer" "wrap")) nil [41835 43220])
-            ("change-log-fill-forward-paragraph" function (:arguments ("n")) nil [43222 43539])
-            ("add-log-current-defun-header-regexp" variable (:default-value "^\\([[:upper:]][[:upper:]_ ]*[[:upper:]_]\\|[-_[:alpha:]]+\\)[ 	]*[:=]") nil [43542 43858])
-            ("declare-function" code nil nil [43860 43909])
-            ("declare-function" code nil nil [43910 43959])
-            ("add-log-current-defun" function nil nil [43976 45086])
-            ("change-log-get-method-definition-md" variable nil nil [45088 45132])
-            ("change-log-get-method-definition-1" function (:arguments ("end")) nil [45312 45504])
-            ("change-log-get-method-definition" function nil nil [45506 46176])
-            ("timezone-make-date-sortable" function (:prototype-flag t) nil [46179 46229])
-            ("change-log-sortable-date-at" function nil nil [46231 46718])
-            ("change-log-resolve-conflict" function nil nil [46720 47787])
-            ("change-log-merge" function
-               (:user-visible-flag t
-                :arguments ("other-log"))
-                nil [47804 49621])
-            ("change-log-beginning-of-defun" function nil nil [49623 49722])
-            ("change-log-end-of-defun" function nil nil [49724 50683])
-            ("add-log" package nil nil [50685 50703]))          
-      :file "add-log.el"
-      :pointmax 50730
-      :fsize 50729
-      :lastmodtime '(23525 29613 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Program Files!Emacs 26.1!share!emacs!26.1!lisp!vc!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041custom\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041custom\041semantic.cache"
deleted file mode 100644
index 47e3b9a..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041custom\041semantic.cache"
+++ /dev/null
@@ -1,144 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("setup-environment" package nil nil [1 29])
-            ("setq" code nil nil [31 62])
-            ("setq" code nil nil [64 240])
-            ("winner-mode" code nil nil [242 257])
-            ("column-number-mode" code nil nil [259 281])
-            ("load-theme" code nil nil [283 306]))          
-      :file "setup-environment.el"
-      :pointmax 307
-      :fsize 701
-      :lastmodtime '(23536 3823 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("setup-files" package nil nil [1 23])
-            ("when" code nil nil [40 108])
-            ("setq" code nil nil [109 141]))          
-      :file "setup-files.el"
-      :pointmax 142
-      :fsize 147
-      :lastmodtime '(23537 11060 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("setup-external" package nil nil [1 26]))          
-      :file "setup-external.el"
-      :pointmax 27
-      :fsize 27
-      :lastmodtime '(23534 46723 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "setup-applications.el"
-      :fsize 1050
-      :lastmodtime '(23535 15277 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "setup-communication.el"
-      :fsize 32
-      :lastmodtime '(23534 46818 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "setup-convenience.el"
-      :fsize 2253
-      :lastmodtime '(23535 16050 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "setup-data.el"
-      :fsize 23
-      :lastmodtime '(23534 46591 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("setup-development" package nil nil [1 29])
-            ("add-hook" code nil nil [31 83])
-            ("add-hook" code nil nil [84 142])
-            ("add-hook" code nil nil [143 189])
-            ("setq" code nil nil [260 294]))          
-      :file "setup-development.el"
-      :pointmax 295
-      :fsize 302
-      :lastmodtime '(23541 905 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("setup-editing" package nil nil [1 25])
-            ("setq" code nil nil [63 313])
-            ("setq" code nil nil [315 345])
-            ("set-terminal-coding-system" code nil nil [347 382])
-            ("set-keyboard-coding-system" code nil nil [383 418])
-            ("set-language-environment" code nil nil [419 453])
-            ("prefer-coding-system" code nil nil [454 483])
-            ("setq-default" code nil nil [485 518])
-            ("delete-selection-mode" code nil nil [519 542])
-            ("global-set-key" code nil nil [543 591])
-            ("setq" code nil nil [622 752])
-            ("global-set-key" code nil nil [787 834])
-            ("add-hook" code nil nil [878 1546])
-            ("prelude-move-beginning-of-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [1549 2271])
-            ("global-set-key" code nil nil [2273 2333])
-            ("kill-ring-save" function (:arguments ("before" "slick-copy" "activate" "compile")) nil [2335 2660])
-            ("kill-region" function (:arguments ("before" "slick-cut" "activate" "compile")) nil [2662 2956])
-            ("kill-line" function (:arguments ("before" "check-position" "activate")) nil [3057 3452])
-            ("yank-indent-modes" variable (:default-value (quote (LaTeX-mode TeX-mode))) nil [3549 3740])
-            ("yank-indent-blacklisted-modes" variable (:default-value (quote (python-mode slim-mode haml-mode))) nil [3742 3867])
-            ("yank-advised-indent-threshold" variable (:default-value 1000) nil [3869 3989])
-            ("yank-advised-indent-function" function (:arguments ("beg" "end")) nil [3991 4184])
-            ("yank" function (:arguments ("after" "yank-indent" "activate")) nil [4186 4641])
-            ("yank-pop" function (:arguments ("after" "yank-pop-indent" "activate")) nil [4643 5111])
-            ("prelude-duplicate-current-line-or-region" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [5132 5756])
-            ("indent-buffer" function (:user-visible-flag t) nil [5777 5900])
-            ("prelude-indent-sensitive-modes" variable (:default-value (quote (coffee-mode python-mode slim-mode haml-mode yaml-mode))) nil [5924 6089])
-            ("indent-region-or-buffer" function (:user-visible-flag t) nil [6091 6550])
-            ("global-set-key" code nil nil [6552 6607])
-            ("prelude-get-positions-of-line-or-region" function nil nil [6683 7045])
-            ("kill-default-buffer" function (:user-visible-flag t) nil [7047 7258])
-            ("global-set-key" code nil nil [7260 7311])
-            ("prelude-smart-open-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [7331 7675])
-            ("prelude-smart-open-line-above" function (:user-visible-flag t) nil [7677 7955])
-            ("global-set-key" code nil nil [7957 8010])
-            ("global-set-key" code nil nil [8011 8050]))          
-      :file "setup-editing.el"
-      :pointmax 8051
-      :fsize 8276
-      :lastmodtime '(23534 46502 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "setup-faces.el"
-      :fsize 24
-      :lastmodtime '(23534 46722 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "setup-help.el"
-      :fsize 23
-      :lastmodtime '(23534 46722 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "setup-programming.el"
-      :fsize 32
-      :lastmodtime '(23534 46110 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "setup-text.el"
-      :fsize 23
-      :lastmodtime '(23534 46746 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "setup-local.el"
-      :fsize 24
-      :lastmodtime '(23534 46721 0 0)))
-  :file "!drive_c!Users!joelg!.emacs.d!custom!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041company-20181105.2312\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041company-20181105.2312\041semantic.cache"
deleted file mode 100644
index ddbfbf0..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041company-20181105.2312\041semantic.cache"
+++ /dev/null
@@ -1,379 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [2478 2495])
-            ("newcomment" include nil nil [2496 2517])
-            ("pcase" include nil nil [2518 2534])
-            ("unless" code nil nil [2601 3070])
-            ("company" customgroup (:user-visible-flag t) nil [3073 3201])
-            ("company-tooltip" variable
-               (:default-value (quote ((default :foreground "black") (((class color) (min-colors 88) (background light)) (:background "cornsilk")) (((class color) (min-colors 88) (background dark)) (:background "yellow"))))
-                :type "face")
-                nil [3203 3465])
-            ("company-tooltip-selection" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:background "light blue")) (((class color) (min-colors 88) (background dark)) (:background "orange1")) (t (:background "green"))))
-                :type "face")
-                nil [3467 3755])
-            ("company-tooltip-search" variable
-               (:default-value (quote ((default :inherit highlight)))
-                :type "face")
-                nil [3757 3875])
-            ("company-tooltip-search-selection" variable
-               (:default-value (quote ((default :inherit highlight)))
-                :type "face")
-                nil [3877 4026])
-            ("company-tooltip-mouse" variable
-               (:default-value (quote ((default :inherit highlight)))
-                :type "face")
-                nil [4028 4145])
-            ("company-tooltip-common" variable
-               (:default-value (quote ((((background light)) :foreground "darkred") (((background dark)) :foreground "red")))
-                :type "face")
-                nil [4147 4339])
-            ("company-tooltip-common-selection" variable
-               (:default-value (quote ((default :inherit company-tooltip-common)))
-                :type "face")
-                nil [4341 4495])
-            ("company-tooltip-annotation" variable
-               (:default-value (quote ((((background light)) :foreground "firebrick4") (((background dark)) :foreground "red4")))
-                :type "face")
-                nil [4497 4701])
-            ("company-tooltip-annotation-selection" variable
-               (:default-value (quote ((default :inherit company-tooltip-annotation)))
-                :type "face")
-                nil [4703 4869])
-            ("company-scrollbar-fg" variable
-               (:default-value (quote ((((background light)) :background "darkred") (((background dark)) :background "red")))
-                :type "face")
-                nil [4871 5052])
-            ("company-scrollbar-bg" variable
-               (:default-value (quote ((((background light)) :background "wheat") (((background dark)) :background "gold")))
-                :type "face")
-                nil [5054 5239])
-            ("company-preview" variable
-               (:default-value (quote ((((background light)) :inherit (company-tooltip-selection company-tooltip)) (((background dark)) :background "blue4" :foreground "wheat")))
-                :type "face")
-                nil [5241 5470])
-            ("company-preview-common" variable
-               (:default-value (quote ((((background light)) :inherit company-tooltip-common-selection) (((background dark)) :inherit company-preview :foreground "red")))
-                :type "face")
-                nil [5472 5719])
-            ("company-preview-search" variable
-               (:default-value (quote ((((background light)) :inherit company-tooltip-common-selection) (((background dark)) :inherit company-preview :background "blue1")))
-                :type "face")
-                nil [5721 5972])
-            ("company-echo" variable (:type "face") nil [5974 6048])
-            ("company-echo-common" variable
-               (:default-value (quote ((((background dark)) (:foreground "firebrick1")) (((background light)) (:background "firebrick4"))))
-                :type "face")
-                nil [6050 6254])
-            ("company-frontends-set" function (:arguments ("variable" "value")) nil [6256 7789])
-            ("company-frontends" variable (:default-value (quote (company-pseudo-tooltip-unless-just-one-frontend company-preview-if-just-one-frontend company-echo-metadata-frontend))) nil [7791 9806])
-            ("company-tooltip-limit" variable (:default-value 10) nil [9808 9914])
-            ("company-tooltip-minimum" variable (:default-value 6) nil [9916 10084])
-            ("company-tooltip-minimum-width" variable nil nil [10086 10290])
-            ("company-tooltip-maximum-width" variable (:default-value most-positive-fixnum) nil [10292 10515])
-            ("company-tooltip-margin" variable (:default-value 1) nil [10517 10625])
-            ("company-tooltip-offset-display" variable (:default-value (quote scrollbar)) nil [10627 10981])
-            ("company-tooltip-align-annotations" variable nil nil [10983 11154])
-            ("company-tooltip-flip-when-above" variable nil nil [11156 11326])
-            ("company-safe-backends" variable (:default-value (quote ((company-abbrev . "Abbrev") (company-bbdb . "BBDB") (company-capf . "completion-at-point-functions") (company-clang . "Clang") (company-cmake . "CMake") (company-css . "CSS") (company-dabbrev . "dabbrev for plain text") (company-dabbrev-code . "dabbrev for code") (company-eclim . "Eclim (an Eclipse interface)") (company-elisp . "Emacs Lisp") (company-etags . "etags") (company-files . "Files") (company-gtags . "GNU Global") (company-ispell . "Ispell") (company-keywords . "Programming language keywords") (company-nxml . "nxml") (company-oddmuse . "Oddmuse") (company-semantic . "Semantic") (company-tempo . "Tempo templates") (company-xcode . "Xcode")))) nil [11328 12095])
-            ("put" code nil nil [12096 12148])
-            ("company-safe-backends-p" function (:arguments ("backends")) nil [12150 12456])
-            ("company-backends" variable (:default-value (\` ((\,@ (unless (version< "24.3.51" emacs-version) (list (quote company-elisp)))) company-bbdb (\,@ (unless (version<= "26" emacs-version) (list (quote company-nxml)))) (\,@ (unless (version<= "26" emacs-version) (list (quote company-css)))) company-eclim company-semantic company-clang company-xcode company-cmake company-capf company-files (company-dabbrev-code company-gtags company-etags company-keywords) company-oddmuse company-dabbrev))) nil [12458 19731])
-            ("put" code nil nil [19733 19802])
-            ("company-transformers" variable nil nil [19804 20461])
-            ("company-completion-started-hook" variable nil nil [20463 20662])
-            ("company-completion-cancelled-hook" variable nil nil [20664 20866])
-            ("company-completion-finished-hook" variable nil nil [20868 21174])
-            ("company-minimum-prefix-length" variable (:default-value 3) nil [21176 21310])
-            ("company-abort-manual-when-too-short" variable nil nil [21312 21594])
-            ("company-require-match" variable (:default-value (quote company-explicit-action-p)) nil [21596 22156])
-            ("company-auto-complete" variable nil nil [22158 22638])
-            ("company-auto-complete-chars" variable (:default-value (quote (32 41 46))) nil [22640 24129])
-            ("company-idle-delay" variable (:default-value 0.5) nil [24131 24500])
-            ("company-tooltip-idle-delay" variable (:default-value 0.5) nil [24502 24807])
-            ("company-begin-commands" variable (:default-value (quote (self-insert-command org-self-insert-command orgtbl-self-insert-command c-scope-operator c-electric-colon c-electric-lt-gt c-electric-slash))) nil [24809 25704])
-            ("company-continue-commands" variable (:default-value (quote (not save-buffer save-some-buffers save-buffers-kill-terminal save-buffers-kill-emacs completion-at-point))) nil [25706 26621])
-            ("company-show-numbers" variable nil nil [26623 26809])
-            ("company-selection-wrap-around" variable nil nil [26811 27006])
-            ("company-async-wait" variable (:default-value 0.03) nil [27008 27148])
-            ("company-async-timeout" variable (:default-value 2) nil [27150 27252])
-            ("company-mode-map" variable (:default-value (make-sparse-keymap)) nil [27336 27417])
-            ("company-active-map" variable (:default-value (let ((keymap (make-sparse-keymap))) (define-key keymap "" (quote company-abort)) (define-key keymap "" (quote company-abort)) (define-key keymap (kbd "M-n") (quote company-select-next)) (define-key keymap (kbd "M-p") (quote company-select-previous)) (define-key keymap (kbd "<down>") (quote company-select-next-or-abort)) (define-key keymap (kbd "<up>") (quote company-select-previous-or-abort)) (define-key keymap [remap scroll-up-command] (quote company-next-page)) (define-key keymap [remap scroll-down-command] (quote company-previous-page)) (define-key keymap [down-mouse-1] (quote ignore)) (define-key keymap [down-mouse-3] (quote ignore)) (define-key keymap [mouse-1] (quote company-complete-mouse)) (define-key keymap [mouse-3] (quote company-select-mouse)) (define-key keymap [up-mouse-1] (quote ignore)) (define-key keymap [up-mouse-3] (quote ignore)) (define-key keymap [return] (quote company-complete-selection)) (define-key keymap (kbd "RET") (quote company-complete-selection)) (define-key keymap [tab] (quote company-complete-common)) (define-key keymap (kbd "TAB") (quote company-complete-common)) (define-key keymap (kbd "<f1>") (quote company-show-doc-buffer)) (define-key keymap (kbd "C-h") (quote company-show-doc-buffer)) (define-key keymap "" (quote company-show-location)) (define-key keymap "" (quote company-search-candidates)) (define-key keymap "\223" (quote company-filter-candidates)) (dotimes (i 10) (define-key keymap (read-kbd-macro (format "M-%d" i)) (quote company-complete-number))) keymap)) nil [27419 28992])
-            ("company--disabled-backends" variable nil nil [28994 29033])
-            ("company-init-backend" function (:arguments ("backend")) nil [29035 29809])
-            ("company--maybe-init-backend" function (:arguments ("backend")) nil [29811 30010])
-            ("company-lighter-base" variable (:default-value "company") nil [30012 30166])
-            ("company-lighter" variable (:default-value (quote (" " (company-candidates (:eval (if (consp company-backend) (company--group-lighter (nth company-selection company-candidates) company-lighter-base) (symbol-name company-backend))) company-lighter-base)))) nil [30168 30797])
-            ("put" code nil nil [30799 30845])
-            ("define-minor-mode" code nil nil [30862 32407])
-            ("company-global-modes" variable (:default-value t) nil [32409 33268])
-            ("define-globalized-minor-mode" code nil nil [33285 33364])
-            ("company-mode-on" function nil nil [33366 33754])
-            ("company-assert-enabled" function nil nil [33756 33883])
-            ("defvar-local" code nil nil [33967 34003])
-            ("company-emulation-alist" variable (:default-value (quote ((t)))) nil [34005 34050])
-            ("company-enable-overriding-keymap" function (:arguments ("keymap")) nil [34052 34164])
-            ("company-ensure-emulation-alist" function nil nil [34166 34433])
-            ("company-install-map" function nil nil [34435 34611])
-            ("company-uninstall-map" function nil nil [34613 34689])
-            ("company--company-command-p" function (:arguments ("keys")) nil [34691 34879])
-            ("company-ignore" function nil nil [35105 35181])
-            ("global-set-key" code nil nil [35183 35238])
-            ("company-input-noop" function nil nil [35240 35321])
-            ("declare-function" code nil nil [35359 35414])
-            ("company--posn-col-row" function (:arguments ("posn")) nil [35416 36086])
-            ("company--col-row" function (:arguments ("pos")) nil [36088 36174])
-            ("company--row" function (:arguments ("pos")) nil [36176 36243])
-            ("defvar-local" code nil nil [36327 36361])
-            ("company-grab" function (:arguments ("regexp" "expression" "limit")) nil [36363 36515])
-            ("company-grab-line" function (:arguments ("regexp" "expression")) nil [36517 36880])
-            ("company-grab-symbol" function nil nil [36882 37276])
-            ("company-grab-word" function nil nil [37278 37658])
-            ("company-grab-symbol-cons" function (:arguments ("idle-begin-after-re" "max-len")) nil [37660 38290])
-            ("company-in-string-or-comment" function nil nil [38292 38522])
-            ("company-call-backend" function (:arguments ("args")) nil [38524 38637])
-            ("company--force-sync" function (:arguments ("fun" "args" "backend")) nil [38639 39626])
-            ("company-call-backend-raw" function (:arguments ("args")) nil [39628 40135])
-            ("company--multi-backend-adapter" function (:arguments ("backends" "command" "args")) nil [40137 41309])
-            ("company--multi-backend-adapter-candidates" function (:arguments ("backends" "prefix" "separate")) nil [41311 42296])
-            ("company--multi-candidates-mapper" function (:arguments ("backend" "separate" "tag")) nil [42298 42713])
-            ("company--merge-async" function (:arguments ("pairs" "merger")) nil [42715 44032])
-            ("company--prefix-str" function (:arguments ("prefix")) nil [44034 44102])
-            ("defvar-local" code nil nil [44186 44219])
-            ("defvar-local" code nil nil [44221 44258])
-            ("defvar-local" code nil nil [44260 44304])
-            ("defvar-local" code nil nil [44306 44349])
-            ("defvar-local" code nil nil [44351 44398])
-            ("defvar-local" code nil nil [44400 44433])
-            ("defvar-local" code nil nil [44435 44469])
-            ("defvar-local" code nil nil [44471 44515])
-            ("defvar-local" code nil nil [44517 44604])
-            ("defvar-local" code nil nil [44606 44647])
-            ("company--auto-completion" variable nil nil [44649 44793])
-            ("defvar-local" code nil nil [44795 44832])
-            ("defvar-local" code nil nil [44834 44866])
-            ("company-timer" variable nil nil [44868 44894])
-            ("company-tooltip-timer" variable nil nil [44895 44929])
-            ("company-strip-prefix" function (:arguments ("str")) nil [44931 45010])
-            ("company--insert-candidate" function (:arguments ("candidate")) nil [45012 45465])
-            ("company-with-candidate-inserted" function (:arguments ("candidate" "body")) nil [45467 46014])
-            ("company-explicit-action-p" function nil nil [46016 46183])
-            ("company-reformat" function (:arguments ("candidate")) nil [46185 46572])
-            ("company--should-complete" function nil nil [46574 46951])
-            ("company--should-continue" function nil nil [46953 47415])
-            ("company-call-frontends" function (:arguments ("command")) nil [47417 47706])
-            ("company-set-selection" function (:arguments ("selection" "force-update")) nil [47708 48136])
-            ("company--group-lighter" function (:arguments ("candidate" "base")) nil [48138 48595])
-            ("company-update-candidates" function (:arguments ("candidates")) nil [48597 50184])
-            ("company-calculate-candidates" function (:arguments ("prefix")) nil [50186 51492])
-            ("company--fetch-candidates" function (:arguments ("prefix")) nil [51494 52732])
-            ("company--flyspell-workaround-p" function nil nil [52734 52888])
-            ("company--preprocess-candidates" function (:arguments ("candidates")) nil [52890 53178])
-            ("company--postprocess-candidates" function (:arguments ("candidates")) nil [53180 53509])
-            ("company--strip-duplicates" function (:arguments ("candidates")) nil [53511 54427])
-            ("company--transform-candidates" function (:arguments ("candidates")) nil [54429 54579])
-            ("company-occurrence-weight-function" variable (:default-value (function company-occurrence-prefer-closest-above)) nil [54581 55073])
-            ("company-occurrence-prefer-closest-above" function (:arguments ("pos" "match-beg" "match-end")) nil [55075 55300])
-            ("company-occurrence-prefer-any-closest" function (:arguments ("pos" "_match-beg" "match-end")) nil [55302 55455])
-            ("company-sort-by-occurrence" function (:arguments ("candidates")) nil [55457 56842])
-            ("company--occurrence-predicate" function nil nil [56844 57796])
-            ("company-sort-by-backend-importance" function (:arguments ("candidates")) nil [57798 58620])
-            ("company-sort-prefer-same-case-prefix" function (:arguments ("candidates")) nil [58622 59098])
-            ("company-idle-begin" function (:arguments ("buf" "win" "tick" "pos")) nil [59100 59434])
-            ("company-auto-begin" function nil nil [59436 59937])
-            ("company-manual-begin" function nil nil [59954 60266])
-            ("company-other-backend" function (:arguments ("backward")) nil [60268 60937])
-            ("company-require-match-p" function nil nil [60939 61258])
-            ("company-auto-complete-p" function (:arguments ("input")) nil [61260 61858])
-            ("company--incremental-p" function nil nil [61860 62182])
-            ("company--continue-failed" function (:arguments ("new-prefix")) nil [62184 62956])
-            ("company--good-prefix-p" function (:arguments ("prefix")) nil [62958 63525])
-            ("company--continue" function nil nil [63527 64948])
-            ("company--begin-new" function nil nil [64950 66416])
-            ("company--perform" function nil nil [66418 66828])
-            ("company-cancel" function (:arguments ("result")) nil [66830 68060])
-            ("company-abort" function nil nil [68062 68128])
-            ("company-finish" function (:arguments ("result")) nil [68130 68224])
-            ("company-keep" function (:arguments ("command")) nil [68226 68313])
-            ("company-pre-command" function nil nil [68315 68919])
-            ("company-post-command" function nil nil [68921 70347])
-            ("company--idle-delay" function nil nil [70349 70458])
-            ("company--begin-inhibit-commands" variable (:default-value (quote (company-abort company-complete-mouse company-complete company-complete-common company-complete-selection company-complete-number))) nil [70460 70947])
-            ("company--should-begin" function nil nil [70949 71207])
-            ("company-search-regexp-function" variable (:default-value (function regexp-quote)) nil [71291 71991])
-            ("defvar-local" code nil nil [71993 72032])
-            ("company-search-lighter" variable (:default-value (quote (" " (company-search-filtering "Filter" "Search") ": \"" company-search-string "\""))) nil [72034 72283])
-            ("defvar-local" code nil nil [72285 72397])
-            ("defvar-local" code nil nil [72399 72445])
-            ("defvar-local" code nil nil [72447 72493])
-            ("company-search-words-regexp" function (:arguments ("input")) nil [72495 72654])
-            ("company-search-words-in-any-order-regexp" function (:arguments ("input")) nil [72656 73035])
-            ("company-search-flex-regexp" function (:arguments ("input")) nil [73037 73367])
-            ("company--permutations" function (:arguments ("lst")) nil [73369 73589])
-            ("company--search" function (:arguments ("text" "lines")) nil [73591 73833])
-            ("company-search-keypad" function nil nil [73835 74030])
-            ("company-search-printing-char" function nil nil [74032 74315])
-            ("company--search-update-predicate" function (:arguments ("ss")) nil [74317 74739])
-            ("company--search-update-string" function (:arguments ("new")) nil [74741 75001])
-            ("company--search-assert-input" function nil nil [75003 75160])
-            ("company-search-repeat-forward" function (:user-visible-flag t) nil [75162 75595])
-            ("company-search-repeat-backward" function (:user-visible-flag t) nil [75597 76103])
-            ("company-search-toggle-filtering" function (:user-visible-flag t) nil [76105 76420])
-            ("company-search-abort" function (:user-visible-flag t) nil [76422 76698])
-            ("company-search-other-char" function nil nil [76700 76851])
-            ("company-search-delete-char" function nil nil [76853 77177])
-            ("company-search-map" variable (:default-value (let ((i 0) (keymap (make-keymap))) (if (fboundp (quote max-char)) (set-char-table-range (nth 1 keymap) (cons 256 (max-char)) (quote company-search-printing-char)) (with-no-warnings (let ((l (generic-character-list)) (table (nth 1 keymap))) (while l (set-char-table-default table (car l) (quote company-search-printing-char)) (setq l (cdr l)))))) (define-key keymap [t] (quote company-search-other-char)) (while (< i 32) (define-key keymap (make-string 1 i) (quote company-search-other-char)) (cl-incf i)) (while (< i 256) (define-key keymap (vector i) (quote company-search-printing-char)) (cl-incf i)) (dotimes (i 10) (define-key keymap (read (format "[kp-%s]" i)) (quote company-search-keypad))) (let ((meta-map (make-sparse-keymap))) (define-key keymap (char-to-string meta-prefix-char) meta-map) (define-key keymap [escape] meta-map)) (define-key keymap (vector meta-prefix-char t) (quote company-search-other-char)) (define-key keymap (kbd "M-n") (quote company-select-next)) (define-key keymap (kbd "M-p") (quote company-select-previous)) (define-key keymap (kbd "<down>") (quote company-select-next-or-abort)) (define-key keymap (kbd "<up>") (quote company-select-previous-or-abort)) (define-key keymap "" (quote company-search-other-char)) (define-key keymap [escape escape escape] (quote company-search-other-char)) (define-key keymap (kbd "DEL") (quote company-search-delete-char)) (define-key keymap [backspace] (quote company-search-delete-char)) (define-key keymap "" (quote company-search-abort)) (define-key keymap "" (quote company-search-repeat-forward)) (define-key keymap "" (quote company-search-repeat-backward)) (define-key keymap "" (quote company-search-toggle-filtering)) (dotimes (i 10) (define-key keymap (read-kbd-macro (format "M-%d" i)) (quote company-complete-number))) keymap)) nil [77179 79239])
-            ("define-minor-mode" code nil nil [79241 80196])
-            ("company--search-assert-enabled" function nil nil [80198 80371])
-            ("company-search-candidates" function (:user-visible-flag t) nil [80373 81136])
-            ("company-filter-map" variable (:default-value (let ((keymap (make-keymap))) (define-key keymap [remap company-search-printing-char] (quote company-filter-printing-char)) (set-keymap-parent keymap company-search-map) keymap)) nil [81138 81427])
-            ("company-filter-candidates" function (:user-visible-flag t) nil [81429 81718])
-            ("company-select-next" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [81802 82040])
-            ("company-select-previous" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [82042 82239])
-            ("company-select-next-or-abort" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [82241 82573])
-            ("company-select-previous-or-abort" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [82575 82919])
-            ("company-next-page" function (:user-visible-flag t) nil [82921 83339])
-            ("company-previous-page" function (:user-visible-flag t) nil [83341 83765])
-            ("company-pseudo-tooltip-overlay" variable nil nil [83767 83806])
-            ("company-tooltip-offset" variable nil nil [83808 83839])
-            ("company--inside-tooltip-p" function (:arguments ("event-col-row" "row" "height")) nil [83841 84383])
-            ("company--event-col-row" function (:arguments ("event")) nil [84385 84469])
-            ("company-select-mouse" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [84471 85656])
-            ("company-complete-mouse" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [85658 85833])
-            ("company-complete-selection" function (:user-visible-flag t) nil [85835 86049])
-            ("company-complete-common" function (:user-visible-flag t) nil [86051 86372])
-            ("company-complete-common-or-cycle" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [86374 86884])
-            ("company-indent-or-complete-common" function (:user-visible-flag t) nil [86886 87512])
-            ("company-select-next-if-tooltip-visible-or-complete-selection" function (:user-visible-flag t) nil [87514 87946])
-            ("company-complete" function (:user-visible-flag t) nil [87963 88517])
-            ("company-complete-number" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [88519 89530])
-            ("company-space-strings-limit" variable
-               (:constant-flag t
-                :default-value 100)
-                nil [89614 89656])
-            ("company-space-strings" variable
-               (:constant-flag t
-                :default-value (let (lst) (dotimes (i company-space-strings-limit) (push (make-string (- company-space-strings-limit 1 i) 32) lst)) (apply (quote vector) lst)))
-                nil [89658 89846])
-            ("company-space-string" function (:arguments ("len")) nil [89848 89990])
-            ("company-safe-substring" function (:arguments ("str" "from" "to")) nil [89992 90636])
-            ("defvar-local" code nil nil [90720 90760])
-            ("company-fetch-metadata" function nil nil [90762 91047])
-            ("company-doc-buffer" function (:arguments ("string")) nil [91049 91269])
-            ("company--electric-saved-window-configuration" variable nil nil [91271 91328])
-            ("company--electric-commands" variable (:default-value (quote (scroll-other-window scroll-other-window-down mwheel-scroll))) nil [91330 91493])
-            ("company--electric-restore-window-configuration" function nil nil [91495 91874])
-            ("company--electric-do" function (:arguments ("body")) nil [91876 92380])
-            ("company--unread-this-command-keys" function nil nil [92382 92674])
-            ("company-show-doc-buffer" function (:user-visible-flag t) nil [92676 93387])
-            ("put" code nil nil [93388 93434])
-            ("company-show-location" function (:user-visible-flag t) nil [93436 94330])
-            ("put" code nil nil [94331 94375])
-            ("defvar-local" code nil nil [94459 94494])
-            ("company-remove-callback" function (:arguments ("ignored")) nil [94496 94771])
-            ("company-begin-backend" function
-               (:user-visible-flag t
-                :arguments ("backend" "callback"))
-                nil [94773 95544])
-            ("company-begin-with" function (:arguments ("candidates" "prefix-length" "require-match" "callback")) nil [95546 96454])
-            ("declare-function" code nil nil [96456 96504])
-            ("declare-function" code nil nil [96505 96545])
-            ("company-version" function
-               (:user-visible-flag t
-                :arguments ("show-version"))
-                nil [96547 96944])
-            ("company-diag" function (:user-visible-flag t) nil [96946 98760])
-            ("defvar-local" code nil nil [98844 98893])
-            ("defvar-local" code nil nil [98895 98934])
-            ("company-tooltip--lines-update-offset" function (:arguments ("selection" "num-lines" "limit")) nil [98936 99520])
-            ("company-tooltip--simple-update-offset" function (:arguments ("selection" "_num-lines" "limit")) nil [99522 99777])
-            ("company-round-tab" function (:arguments ("arg")) nil [99795 99877])
-            ("company-plainify" function (:arguments ("str")) nil [99879 100406])
-            ("company-fill-propertize" function (:arguments ("value" "annotation" "width" "selected" "left" "right")) nil [100408 104200])
-            ("company--search-chunks" function nil nil [104202 104470])
-            ("company--pre-render" function (:arguments ("str" "annotation-p")) nil [104472 104972])
-            ("company--clean-string" function (:arguments ("str")) nil [104974 105511])
-            ("company-buffer-lines" function (:arguments ("beg" "end")) nil [105526 106525])
-            ("company-modify-line" function (:arguments ("old" "new" "offset")) nil [106527 106697])
-            ("company--window-height" function nil nil [106699 106834])
-            ("company--window-width" function nil nil [106836 107779])
-            ("company--replacement-string" function (:arguments ("lines" "old" "column" "nl" "align-top")) nil [107781 109133])
-            ("company--offset-line" function (:arguments ("line" "offset")) nil [109135 109241])
-            ("company--create-lines" function (:arguments ("selection" "limit")) nil [109243 112928])
-            ("company--scrollbar-bounds" function (:arguments ("offset" "limit" "length")) nil [112930 113193])
-            ("company--scrollbar" function (:arguments ("i" "bounds")) nil [113195 113400])
-            ("company--scrollpos-line" function (:arguments ("text" "width")) nil [113402 113681])
-            ("company--pseudo-tooltip-height" function nil nil [113692 114153])
-            ("company-pseudo-tooltip-show" function (:arguments ("row" "column" "selection")) nil [114155 115348])
-            ("company-pseudo-tooltip-show-at-point" function (:arguments ("pos" "column-offset")) nil [115350 115614])
-            ("company-pseudo-tooltip-edit" function (:arguments ("selection")) nil [115616 116199])
-            ("company-pseudo-tooltip-hide" function nil nil [116201 116377])
-            ("company-pseudo-tooltip-hide-temporarily" function nil nil [116379 116739])
-            ("company-pseudo-tooltip-unhide" function nil nil [116741 117469])
-            ("company-pseudo-tooltip-guard" function nil nil [117471 117930])
-            ("company-pseudo-tooltip-frontend" function (:arguments ("command")) nil [117932 119113])
-            ("company-pseudo-tooltip-unless-just-one-frontend" function (:arguments ("command")) nil [119115 119386])
-            ("company-pseudo-tooltip-unless-just-one-frontend-with-delay" function (:arguments ("command")) nil [119388 120479])
-            ("defvar-local" code nil nil [120563 120605])
-            ("company-preview-show-at-point" function (:arguments ("pos" "completion")) nil [120607 122450])
-            ("company-preview-hide" function nil nil [122452 122600])
-            ("company-preview-frontend" function (:arguments ("command")) nil [122602 122970])
-            ("company-preview-if-just-one-frontend" function (:arguments ("command")) nil [122972 123219])
-            ("company--show-inline-p" function nil nil [123221 123440])
-            ("company-tooltip-visible-p" function nil nil [123442 123639])
-            ("company-preview-common--show-p" function nil nil [123641 123893])
-            ("company-preview-common-frontend" function (:arguments ("command")) nil [123895 124281])
-            ("defvar-local" code nil nil [124365 124405])
-            ("company-echo-timer" variable nil nil [124407 124438])
-            ("company-echo-delay" variable (:default-value 0.01) nil [124440 124471])
-            ("company-echo-truncate-lines" variable (:default-value t) nil [124473 124647])
-            ("company-echo-show" function (:arguments ("getter")) nil [124649 124947])
-            ("company-echo-show-soon" function (:arguments ("getter")) nil [124949 125099])
-            ("company-echo-cancel" function (:arguments ("unset")) nil [125101 125261])
-            ("company-echo-show-when-idle" function (:arguments ("getter")) nil [125263 125448])
-            ("company-echo-format" function nil nil [125450 126518])
-            ("company-echo-strip-common-format" function nil nil [126520 127357])
-            ("company-echo-hide" function nil nil [127359 127491])
-            ("company-echo-frontend" function (:arguments ("command")) nil [127493 127717])
-            ("company-echo-strip-common-frontend" function (:arguments ("command")) nil [127719 127969])
-            ("company-echo-metadata-frontend" function (:arguments ("command")) nil [127971 128215])
-            ("company" package nil nil [128217 128235]))          
-      :file "company.el"
-      :pointmax 128261
-      :fsize 128260
-      :lastmodtime '(23534 29869 0 0)
-      :unmatched-syntax '((close-paren 3070 . 3071) (symbol 2555 . 2571) (open-paren 2554 . 2555))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!company-20181105.2312!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041diff-hl-20180201.1155\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041diff-hl-20180201.1155\041semantic.cache"
deleted file mode 100644
index 64040e4..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041diff-hl-20180201.1155\041semantic.cache"
+++ /dev/null
@@ -1,103 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("diff-hl" include nil nil [979 997])
-            ("define-minor-mode" code nil nil [1014 1596])
-            ("diff-hl-amend-setup" function nil nil [1598 1943])
-            ("define-globalized-minor-mode" code nil nil [1960 2064])
-            ("turn-on-diff-hl-amend-mode" function nil nil [2066 2212])
-            ("diff-hl-amend" package nil nil [2214 2238]))          
-      :file "diff-hl-amend.el"
-      :pointmax 2271
-      :fsize 2270
-      :lastmodtime '(23534 42821 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("fringe" include nil nil [1733 1750])
-            ("diff-mode" include nil nil [1751 1771])
-            ("vc" include nil nil [1772 1785])
-            ("vc-dir" include nil nil [1786 1803])
-            ("declare-function" code nil nil [1908 1956])
-            ("face-remap" include nil nil [1884 1905])
-            ("vc-hg" include nil nil [1865 1881])
-            ("vc-git" include nil nil [1845 1862])
-            ("cl-lib" include nil nil [1825 1842])
-            ("diff-hl" customgroup (:user-visible-flag t) nil [1959 2043])
-            ("diff-hl-insert" variable
-               (:default-value (quote ((default :inherit diff-added) (((class color)) :foreground "green4")))
-                :type "face")
-                nil [2045 2208])
-            ("diff-hl-delete" variable
-               (:default-value (quote ((default :inherit diff-removed) (((class color)) :foreground "red3")))
-                :type "face")
-                nil [2210 2372])
-            ("diff-hl-change" variable
-               (:default-value (quote ((default :foreground "blue3") (((class color) (min-colors 88) (background light)) :background "#ddddff") (((class color) (min-colors 88) (background dark)) :background "#333355")))
-                :type "face")
-                nil [2374 2660])
-            ("diff-hl-command-prefix" variable (:default-value (kbd "C-x v")) nil [2662 2787])
-            ("diff-hl-draw-borders" variable (:default-value t) nil [2789 2912])
-            ("diff-hl-highlight-function" variable (:default-value (quote diff-hl-highlight-on-fringe)) nil [2914 3130])
-            ("diff-hl-fringe-bmp-function" variable (:default-value (quote diff-hl-fringe-bmp-from-pos)) nil [3132 3477])
-            ("diff-hl-fringe-face-function" variable (:default-value (quote diff-hl-fringe-face-from-type)) nil [3479 3709])
-            ("diff-hl-side" variable (:default-value (quote left)) nil [3711 4056])
-            ("diff-hl-reference-revision" variable nil nil [4058 4159])
-            ("diff-hl-define-bitmaps" function nil nil [4161 6102])
-            ("diff-hl-maybe-define-bitmaps" function nil nil [6104 6343])
-            ("diff-hl-spec-cache" variable (:default-value (make-hash-table :test (quote equal))) nil [6345 6403])
-            ("diff-hl-fringe-spec" function (:arguments ("type" "pos" "side")) nil [6405 6996])
-            ("diff-hl-fringe-face-from-type" function (:arguments ("type" "_pos")) nil [6998 7085])
-            ("diff-hl-fringe-bmp-from-pos" function (:arguments ("_type" "pos")) nil [7087 7175])
-            ("diff-hl-fringe-bmp-from-type" function (:arguments ("type" "_pos")) nil [7177 7379])
-            ("vc-svn-diff-switches" variable nil nil [7381 7410])
-            ("diff-hl-with-diff-switches" function (:arguments ("body")) nil [7412 8145])
-            ("diff-hl-modified-p" function (:arguments ("state")) nil [8147 8435])
-            ("diff-hl-changes-buffer" function (:arguments ("file" "backend")) nil [8437 8696])
-            ("diff-hl-changes" function nil nil [8698 10224])
-            ("diff-hl-update" function nil nil [10226 11486])
-            ("diff-hl-add-highlighting" function (:arguments ("type" "shape")) nil [11488 11669])
-            ("diff-hl-highlight-on-fringe" function (:arguments ("ovl" "type" "shape")) nil [11671 11859])
-            ("diff-hl-remove-overlays" function (:arguments ("beg" "end")) nil [11861 12075])
-            ("diff-hl-overlay-modified" function (:arguments ("ov" "after-p" "_beg" "_end" "_length")) nil [12077 12359])
-            ("diff-hl-timer" variable nil nil [12361 12387])
-            ("diff-hl-edit" function (:arguments ("_beg" "_end" "_len")) nil [12389 12680])
-            ("diff-hl-after-undo" function (:arguments ("buffer")) nil [12682 12804])
-            ("diff-hl-diff-goto-hunk" function (:user-visible-flag t) nil [12806 13354])
-            ("diff-hl-diff-skip-to" function (:arguments ("line")) nil [13356 14190])
-            ("diff-hl-revert-hunk" function (:user-visible-flag t) nil [14192 16282])
-            ("diff-hl-hunk-overlay-at" function (:arguments ("pos")) nil [16284 16435])
-            ("diff-hl-next-hunk" function
-               (:user-visible-flag t
-                :arguments ("backward"))
-                nil [16437 17128])
-            ("diff-hl-previous-hunk" function (:user-visible-flag t) nil [17130 17270])
-            ("diff-hl-mark-hunk" function nil nil [17272 17501])
-            ("diff-hl-command-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "n" (quote diff-hl-revert-hunk)) (define-key map "[" (quote diff-hl-previous-hunk)) (define-key map "]" (quote diff-hl-next-hunk)) map)) nil [17503 17714])
-            ("fset" code nil nil [17715 17762])
-            ("diff-hl-lighter" variable nil nil [17764 17904])
-            ("define-minor-mode" code nil nil [17921 20170])
-            ("when" code nil nil [20172 20698])
-            ("declare-function" code nil nil [20700 20745])
-            ("declare-function" code nil nil [20746 20797])
-            ("diff-hl-magit-post-refresh" function nil nil [20799 22066])
-            ("diff-hl-dir-update" function nil nil [22068 22445])
-            ("define-minor-mode" code nil nil [22447 22701])
-            ("turn-on-diff-hl-mode" function nil nil [22718 22937])
-            ("define-globalized-minor-mode" code nil nil [22954 23081])
-            ("diff-hl-global-mode-change" function nil nil [23083 23280])
-            ("diff-hl" package nil nil [23282 23300]))          
-      :file "diff-hl.el"
-      :pointmax 23327
-      :fsize 23326
-      :lastmodtime '(23534 42821 0 0)
-      :unmatched-syntax '((close-paren 1956 . 1957) (symbol 1805 . 1822) (open-paren 1804 . 1805))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!diff-hl-20180201.1155!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041flycheck-20181018.1021\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041flycheck-20181018.1021\041semantic.cache"
deleted file mode 100644
index 65824ab..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041flycheck-20181018.1021\041semantic.cache"
+++ /dev/null
@@ -1,873 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pcase" include nil nil [2731 2747])
-            ("jka-compr" include nil nil [2664 2684])
-            ("compile" include nil nil [2609 2627])
-            ("let-alist" include nil nil [2567 2587])
-            ("dash" include nil nil [2810 2825])
-            ("seq" include nil nil [2827 2841])
-            ("subr-x" include nil nil [2881 2912])
-            ("cl-lib" include nil nil [2961 2978])
-            ("tabulated-list" include nil nil [3028 3053])
-            ("easymenu" include nil nil [3078 3097])
-            ("rx" include nil nil [3143 3156])
-            ("help-mode" include nil nil [3224 3244])
-            ("find-func" include nil nil [3280 3300])
-            ("json" include nil nil [3344 3359])
-            ("sh-shell" variable nil nil [3475 3492])
-            ("ess-language" variable nil nil [3553 3574])
-            ("declare-function" code nil nil [3685 3746])
-            ("unless" code nil nil [4396 5260])
-            ("unless" code nil nil [3788 4325])
-            ("flycheck" customgroup (:user-visible-flag t) nil [5283 5531])
-            ("flycheck-config-files" customgroup (:user-visible-flag t) nil [5533 5666])
-            ("flycheck-options" customgroup (:user-visible-flag t) nil [5668 5784])
-            ("flycheck-executables" customgroup (:user-visible-flag t) nil [5786 5898])
-            ("flycheck-faces" customgroup (:user-visible-flag t) nil [5900 6016])
-            ("flycheck-checkers" variable (:default-value (quote (ada-gnat asciidoctor asciidoc c/c++-clang c/c++-gcc c/c++-cppcheck cfengine chef-foodcritic coffee coffee-coffeelint coq css-csslint css-stylelint cwl d-dmd dockerfile-hadolint emacs-lisp emacs-lisp-checkdoc erlang-rebar3 erlang eruby-erubis fortran-gfortran go-gofmt go-golint go-vet go-build go-test go-errcheck go-unconvert go-megacheck groovy haml handlebars haskell-stack-ghc haskell-ghc haskell-hlint html-tidy javascript-eslint javascript-jshint javascript-standard json-jsonlint json-python-json jsonnet less less-stylelint llvm-llc lua-luacheck lua markdown-markdownlint-cli markdown-mdl nix perl perl-perlcritic php php-phpmd php-phpcs processing proselint protobuf-protoc pug puppet-parser puppet-lint python-flake8 python-pylint python-pycompile python-mypy r-lintr racket rpm-rpmlint rst-sphinx rst ruby-rubocop ruby-reek ruby-rubylint ruby ruby-jruby rust-cargo rust rust-clippy scala scala-scalastyle scheme-chicken scss-lint scss-stylelint sass/scss-sass-lint sass scss sh-bash sh-posix-dash sh-posix-bash sh-zsh sh-shellcheck slim slim-lint sql-sqlint systemd-analyze tcl-nagelfar tex-chktex tex-lacheck texinfo typescript-tslint verilog-verilator vhdl-ghdl xml-xmlstarlet xml-xmllint yaml-jsyaml yaml-ruby))) nil [6018 8380])
-            ("flycheck-disabled-checkers" variable nil nil [8382 9179])
-            ("make-variable-buffer-local" code nil nil [9180 9236])
-            ("defvar-local" code nil nil [9238 10130])
-            ("put" code nil nil [10131 10206])
-            ("flycheck-locate-config-file-functions" variable nil nil [10208 10894])
-            ("flycheck-checker-error-threshold" variable (:default-value 400) nil [10896 11653])
-            ("flycheck-process-error-functions" variable nil nil [11655 12520])
-            ("flycheck-display-errors-delay" variable (:default-value 0.9) nil [12522 12777])
-            ("flycheck-display-errors-function" variable (:default-value (function flycheck-display-error-messages)) nil [12779 13489])
-            ("flycheck-help-echo-function" variable (:default-value (function flycheck-help-echo-all-error-messages)) nil [13491 14290])
-            ("flycheck-command-wrapper-function" variable (:default-value (function identity)) nil [14292 15052])
-            ("flycheck-executable-find" variable (:default-value (function flycheck-default-executable-find)) nil [15054 15863])
-            ("flycheck-default-executable-find" function (:arguments ("executable")) nil [15865 16417])
-            ("flycheck-indication-mode" variable (:default-value (quote left-fringe)) nil [16419 17127])
-            ("flycheck-highlighting-mode" variable (:default-value (quote symbols)) nil [17129 18384])
-            ("flycheck-check-syntax-automatically" variable (:default-value (quote (save idle-change new-line mode-enabled))) nil [18386 19918])
-            ("flycheck-idle-change-delay" variable (:default-value 0.5) nil [19920 20427])
-            ("flycheck-standard-error-navigation" variable (:default-value t) nil [20429 21150])
-            ("define-widget" code nil nil [21152 21580])
-            ("flycheck-navigation-minimum-level" variable nil nil [21582 21931])
-            ("flycheck-error-list-minimum-level" variable nil nil [21933 22528])
-            ("flycheck-completing-read-function" variable (:default-value (function completing-read)) nil [22530 22956])
-            ("flycheck-temp-prefix" variable (:default-value "flycheck") nil [22958 23139])
-            ("flycheck-mode-hook" variable nil nil [23141 23278])
-            ("flycheck-after-syntax-check-hook" variable nil nil [23280 23936])
-            ("flycheck-before-syntax-check-hook" variable nil nil [23938 24426])
-            ("flycheck-syntax-check-failed-hook" variable nil nil [24428 24855])
-            ("flycheck-status-changed-functions" variable nil nil [24857 25282])
-            ("flycheck-error-list-after-refresh-hook" variable nil nil [25284 25599])
-            ("flycheck-error" variable
-               (:default-value (quote ((((supports :underline (:style wave))) :underline (:style wave :color "Red1")) (t :underline t :inherit error)))
-                :type "face")
-                nil [25601 25850])
-            ("flycheck-warning" variable
-               (:default-value (quote ((((supports :underline (:style wave))) :underline (:style wave :color "DarkOrange")) (t :underline t :inherit warning)))
-                :type "face")
-                nil [25852 26113])
-            ("flycheck-info" variable
-               (:default-value (quote ((((supports :underline (:style wave))) :underline (:style wave :color "ForestGreen")) (t :underline t :inherit success)))
-                :type "face")
-                nil [26115 26388])
-            ("flycheck-fringe-error" variable
-               (:default-value (quote ((t :inherit error)))
-                :type "face")
-                nil [26390 26557])
-            ("flycheck-fringe-warning" variable
-               (:default-value (quote ((t :inherit warning)))
-                :type "face")
-                nil [26559 26732])
-            ("flycheck-fringe-info" variable
-               (:default-value (quote ((t :inherit success)))
-                :type "face")
-                nil [26734 26999])
-            ("flycheck-error-list-error" variable
-               (:default-value (quote ((t :inherit error)))
-                :type "face")
-                nil [27001 27181])
-            ("flycheck-error-list-warning" variable
-               (:default-value (quote ((t :inherit warning)))
-                :type "face")
-                nil [27183 27369])
-            ("flycheck-error-list-info" variable
-               (:default-value (quote ((t :inherit success)))
-                :type "face")
-                nil [27371 27551])
-            ("flycheck-error-list-line-number" variable
-               (:default-value (quote ((t :inherit font-lock-constant-face)))
-                :type "face")
-                nil [27632 27825])
-            ("flycheck-error-list-column-number" variable
-               (:default-value (quote ((t :inherit font-lock-constant-face)))
-                :type "face")
-                nil [27827 28022])
-            ("flycheck-error-list-filename" variable
-               (:default-value (quote ((t :inherit font-lock-variable-name-face)))
-                :type "face")
-                nil [28024 28214])
-            ("flycheck-error-list-id" variable
-               (:default-value (quote ((t :inherit font-lock-type-face)))
-                :type "face")
-                nil [28216 28396])
-            ("flycheck-error-list-id-with-explainer" variable
-               (:default-value (quote ((t :inherit flycheck-error-list-id :box (:style released-button))))
-                :type "face")
-                nil [28398 28666])
-            ("flycheck-error-list-checker-name" variable
-               (:default-value (quote ((t :inherit font-lock-function-name-face)))
-                :type "face")
-                nil [28668 28878])
-            ("flycheck-error-list-highlight" variable
-               (:default-value (quote ((t :inherit highlight)))
-                :type "face")
-                nil [28880 29069])
-            ("flycheck-command-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "c" (function flycheck-buffer)) (define-key map "C" (function flycheck-clear)) (define-key map (kbd "C-c") (function flycheck-compile)) (define-key map "n" (function flycheck-next-error)) (define-key map "p" (function flycheck-previous-error)) (define-key map "l" (function flycheck-list-errors)) (define-key map (kbd "C-w") (function flycheck-copy-errors-as-kill)) (define-key map "s" (function flycheck-select-checker)) (define-key map "?" (function flycheck-describe-checker)) (define-key map "h" (function flycheck-display-error-at-point)) (define-key map "e" (function flycheck-explain-error-at-point)) (define-key map "H" (function display-local-help)) (define-key map "i" (function flycheck-manual)) (define-key map "V" (function flycheck-version)) (define-key map "v" (function flycheck-verify-setup)) (define-key map "x" (function flycheck-disable-checker)) map)) nil [29071 30105])
-            ("flycheck-keymap-prefix" variable (:default-value (kbd "C-c !")) nil [30107 31017])
-            ("flycheck-mode-line" variable (:default-value (quote (:eval (flycheck-mode-line-status-text)))) nil [31019 31993])
-            ("flycheck-mode-line-prefix" variable (:default-value "FlyC") nil [31995 32333])
-            ("flycheck-error-list-mode-line" variable (:default-value (\` ((\, (propertized-buffer-identification "%12b")) " for buffer " (:eval (flycheck-error-list-propertized-source-name)) (:eval (flycheck-error-list-mode-line-filter-indicator))))) nil [32335 33123])
-            ("flycheck-global-modes" variable (:default-value t) nil [33125 34145])
-            ("dolist" code nil nil [34665 34916])
-            ("add-hook" code nil nil [34918 34993])
-            ("flycheck-mode-menu-map" variable (:default-value (easy-menu-create-menu "Syntax Checking" (quote (["Enable on-the-fly syntax checking" flycheck-mode :style toggle :selected flycheck-mode :enable (or flycheck-mode (seq-find (function flycheck-checker-supports-major-mode-p) flycheck-checkers))] ["Check current buffer" flycheck-buffer flycheck-mode] ["Clear errors in buffer" flycheck-clear t] "---" ["Go to next error" flycheck-next-error flycheck-mode] ["Go to previous error" flycheck-previous-error flycheck-mode] ["Show all errors" flycheck-list-errors flycheck-mode] "---" ["Copy messages at point" flycheck-copy-errors-as-kill (flycheck-overlays-at (point))] ["Explain error at point" flycheck-explain-error-at-point] "---" ["Select syntax checker" flycheck-select-checker flycheck-mode] ["Disable syntax checker" flycheck-disable-checker flycheck-mode] ["Set executable of syntax checker" flycheck-set-checker-executable flycheck-mode] "---" ["Describe syntax checker" flycheck-describe-checker t] ["Show Flycheck version" flycheck-version t] ["Read the Flycheck manual" flycheck-info t])))) nil [35022 36406])
-            ("easy-menu-add-item" code nil nil [36408 36483])
-            ("flycheck-version" function
-               (:user-visible-flag t
-                :arguments ("show-version"))
-                nil [36543 37179])
-            ("flycheck-unload-function" function nil nil [37181 37516])
-            ("flycheck-manual" function (:user-visible-flag t) nil [37533 37646])
-            ("define-obsolete-function-alias" code nil nil [37648 37747])
-            ("flycheck-sexp-to-string" function (:arguments ("sexp")) nil [37773 38021])
-            ("flycheck-string-to-number-safe" function (:arguments ("string")) nil [38023 38402])
-            ("flycheck-string-list-p" function (:arguments ("obj")) nil [38404 38531])
-            ("flycheck-symbol-list-p" function (:arguments ("obj")) nil [38533 38660])
-            ("flycheck-same-files-p" function (:arguments ("file-a" "file-b")) nil [38662 39402])
-            ("defvar-local" code nil nil [39404 39500])
-            ("flycheck-temp-dir-system" function nil nil [39502 39822])
-            ("flycheck-temp-file-system" function (:arguments ("filename")) nil [39824 40615])
-            ("flycheck-temp-file-inplace" function (:arguments ("filename")) nil [40617 41353])
-            ("flycheck-temp-directory" function (:arguments ("checker")) nil [41355 41783])
-            ("flycheck-temp-files-writable-p" function (:arguments ("checker")) nil [41785 42172])
-            ("flycheck-save-buffer-to-file" function (:arguments ("file-name")) nil [42174 42408])
-            ("flycheck-save-buffer-to-temp" function (:arguments ("temp-file-fn")) nil [42410 42779])
-            ("flycheck-prepend-with-option" function (:arguments ("option" "items" "prepend-fn")) nil [42781 43963])
-            ("flycheck-find-in-buffer" function (:arguments ("pattern")) nil [43965 44317])
-            ("flycheck-buffer-empty-p" function (:arguments ("buffer")) nil [44319 44542])
-            ("flycheck-ephemeral-buffer-p" function nil nil [44544 44763])
-            ("flycheck-encrypted-buffer-p" function nil nil [44765 45249])
-            ("flycheck-autoloads-file-p" function nil nil [45251 45460])
-            ("flycheck-in-user-emacs-directory-p" function (:arguments ("filename")) nil [45462 45692])
-            ("flycheck-safe-delete" function (:arguments ("file-or-dir")) nil [45694 45907])
-            ("flycheck-safe-delete-temporaries" function nil nil [45909 46214])
-            ("flycheck-rx-file-name" function (:arguments ("form")) nil [46216 46466])
-            ("flycheck-rx-message" function (:arguments ("form")) nil [46468 46666])
-            ("flycheck-rx-id" function (:arguments ("form")) nil [46668 46798])
-            ("flycheck-rx-to-string" function (:arguments ("form" "no-group")) nil [46800 47884])
-            ("flycheck-current-load-file" function nil nil [47886 48669])
-            ("flycheck-module-root-directory" function (:arguments ("module" "file-name")) nil [48671 50293])
-            ("read-flycheck-checker-history" variable nil nil [50318 50418])
-            ("flycheck-completing-read" function (:arguments ("prompt" "candidates" "default" "history")) nil [50420 50864])
-            ("read-flycheck-checker" function (:arguments ("prompt" "default" "property" "candidates")) nil [50866 52479])
-            ("read-flycheck-error-level" function (:arguments ("prompt")) nil [52481 53011])
-            ("flycheck-defined-checkers" function (:arguments ("property")) nil [53031 53661])
-            ("flycheck-registered-checker-p" function (:arguments ("checker")) nil [53663 53906])
-            ("flycheck-disabled-checker-p" function (:arguments ("checker")) nil [53908 54115])
-            ("flycheck-generic-checker-version" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [54147 54346])
-            ("flycheck--checker-property-name" function (:arguments ("property")) nil [54348 54509])
-            ("flycheck-checker-get" function (:arguments ("checker" "property")) nil [54511 54658])
-            ("gv-define-setter" code nil nil [54660 54800])
-            ("flycheck-validate-next-checker" function (:arguments ("next" "strict")) nil [54802 55740])
-            ("flycheck-define-generic-checker" function (:arguments ("symbol" "docstring" "properties")) nil [55742 68347])
-            ("flycheck-valid-checker-p" function (:arguments ("checker")) nil [68349 68651])
-            ("flycheck-checker-supports-major-mode-p" function (:arguments ("checker" "mode")) nil [68653 69167])
-            ("defvar-local" code nil nil [69169 69354])
-            ("flycheck-may-enable-checker" function (:arguments ("checker")) nil [69356 70002])
-            ("flycheck-may-use-checker" function (:arguments ("checker")) nil [70004 70436])
-            ("flycheck-may-use-next-checker" function (:arguments ("next-checker")) nil [70438 70861])
-            ("define-button-type" code nil nil [70902 71087])
-            ("flycheck-find-checker-regexp" variable
-               (:constant-flag t
-                :default-value (rx line-start (zero-or-more (syntax whitespace)) "(" symbol-start "flycheck-define-checker" symbol-end (eval (list (quote regexp) find-function-space-re)) symbol-start "%s" symbol-end (or (syntax whitespace) line-end)))
-                nil [71089 71432])
-            ("add-to-list" code nil nil [71434 71539])
-            ("flycheck-goto-checker-definition" function (:arguments ("checker" "file")) nil [71541 71901])
-            ("flycheck-checker-at-point" function nil nil [71903 72142])
-            ("flycheck-describe-checker" function
-               (:user-visible-flag t
-                :arguments ("checker"))
-                nil [72144 75781])
-            ("cl-defstruct" code nil nil [75817 76227])
-            ("flycheck-verify-generic-checker" function (:arguments ("checker")) nil [76229 77247])
-            ("define-button-type" code nil nil [77249 77420])
-            ("flycheck--verify-princ-checker" function (:arguments ("checker" "buffer" "with-mm")) nil [77422 79240])
-            ("flycheck--verify-print-header" function (:arguments ("desc" "buffer")) nil [79242 79863])
-            ("flycheck--verify-print-footer" function (:arguments ("buffer")) nil [79865 80869])
-            ("flycheck-verify-checker" function
-               (:user-visible-flag t
-                :arguments ("checker"))
-                nil [80871 82243])
-            ("flycheck-verify-setup" function (:user-visible-flag t) nil [82245 84477])
-            ("flycheck-buffer-saved-p" function (:arguments ("buffer")) nil [84524 84923])
-            ("flycheck-add-next-checker" function (:arguments ("checker" "next" "append")) nil [84958 85997])
-            ("flycheck-add-mode" function (:arguments ("checker" "mode")) nil [85999 86478])
-            ("cl-defstruct" code nil nil [86508 86952])
-            ("flycheck-syntax-check-start" function (:arguments ("syntax-check" "callback")) nil [86954 87342])
-            ("flycheck-syntax-check-interrupt" function (:arguments ("syntax-check")) nil [87344 87693])
-            ("flycheck-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map flycheck-keymap-prefix flycheck-command-map) (define-key map [menu-bar flycheck] flycheck-mode-menu-map) map)) nil [87723 88210])
-            ("defvar-local" code nil nil [88212 88307])
-            ("flycheck-hooks-alist" variable
-               (:constant-flag t
-                :default-value (quote ((after-save-hook . flycheck-handle-save) (after-change-functions . flycheck-handle-change) (window-configuration-change-hook . flycheck-perform-deferred-syntax-check) (post-command-hook . flycheck-perform-deferred-syntax-check) (kill-buffer-hook . flycheck-teardown) (change-major-mode-hook . flycheck-teardown) (before-revert-hook . flycheck-teardown) (post-command-hook . flycheck-error-list-update-source) (post-command-hook . flycheck-error-list-highlight-errors) (post-command-hook . flycheck-display-error-at-point-soon) (focus-in-hook . flycheck-display-error-at-point-soon) (focus-out-hook . flycheck-cancel-error-display-error-at-point-timer) (post-command-hook . flycheck-hide-error-buffer) (next-error-hook . flycheck-display-error-at-point))))
-                nil [88309 90265])
-            ("define-minor-mode" code nil nil [90282 91707])
-            ("flycheck-get-checker-for-buffer" function nil nil [91763 92218])
-            ("flycheck-get-next-checker-for-buffer" function (:arguments ("checker")) nil [92220 92527])
-            ("flycheck-select-checker" function
-               (:user-visible-flag t
-                :arguments ("checker"))
-                nil [92529 93724])
-            ("flycheck-disable-checker" function (:arguments ("checker" "enable")) nil [93726 95249])
-            ("defvar-local" code nil nil [95294 95391])
-            ("put" code nil nil [95392 95447])
-            ("flycheck-start-current-syntax-check" function (:arguments ("checker")) nil [95449 96203])
-            ("flycheck-running-p" function nil nil [96205 96350])
-            ("flycheck-stop" function nil nil [96352 96825])
-            ("flycheck-buffer-status-callback" function (:arguments ("syntax-check")) nil [96827 97055])
-            ("flycheck-buffer" function (:user-visible-flag t) nil [97057 98151])
-            ("flycheck-report-buffer-checker-status" function (:arguments ("syntax-check" "status" "data")) nil [98153 101110])
-            ("flycheck-finish-current-syntax-check" function (:arguments ("errors" "working-dir")) nil [101112 103003])
-            ("flycheck-disable-excessive-checker" function (:arguments ("checker" "errors")) nil [103005 103729])
-            ("flycheck-clear" function
-               (:user-visible-flag t
-                :arguments ("shall-interrupt"))
-                nil [103731 104098])
-            ("flycheck-teardown" function nil nil [104100 104462])
-            ("flycheck-may-check-automatically" function (:arguments ("condition")) nil [104508 105018])
-            ("flycheck-buffer-automatically" function (:arguments ("condition" "force-deferred")) nil [105020 105600])
-            ("defvar-local" code nil nil [105602 105702])
-            ("flycheck-clear-idle-change-timer" function nil nil [105704 105904])
-            ("flycheck-handle-change" function (:arguments ("beg" "end" "_len")) nil [105906 106715])
-            ("flycheck--handle-idle-change-in-buffer" function (:arguments ("buffer")) nil [106717 107117])
-            ("flycheck-handle-idle-change" function nil nil [107119 107297])
-            ("flycheck-handle-save" function nil nil [107299 107403])
-            ("defvar-local" code nil nil [107436 107537])
-            ("flycheck-must-defer-check" function nil nil [107539 108299])
-            ("flycheck-deferred-check-p" function nil nil [108301 108468])
-            ("flycheck-buffer-deferred" function nil nil [108470 108594])
-            ("flycheck-clean-deferred-check" function nil nil [108596 108724])
-            ("flycheck-perform-deferred-syntax-check" function nil nil [108726 108923])
-            ("flycheck-may-enable-mode" function nil nil [108962 110018])
-            ("flycheck-mode-on-safe" function nil nil [110020 110264])
-            ("define-globalized-minor-mode" code nil nil [110281 110643])
-            ("flycheck-global-teardown" function nil nil [110645 110989])
-            ("add-hook" code nil nil [111100 111154])
-            ("cl-defstruct" code nil nil [111188 113045])
-            ("flycheck-error-with-buffer" function (:arguments ("err" "forms")) nil [113047 113373])
-            ("flycheck-error-line-region" function (:arguments ("err")) nil [113375 114355])
-            ("flycheck-error-column-region" function (:arguments ("err")) nil [114357 115734])
-            ("flycheck-error-thing-region" function (:arguments ("thing" "err")) nil [115736 116371])
-            ("flycheck-error-region-for-mode" function (:arguments ("err" "mode")) nil [116373 117581])
-            ("flycheck-error-pos" function (:arguments ("err")) nil [117583 117917])
-            ("flycheck-error-format-message-and-id" function (:arguments ("err")) nil [117919 118402])
-            ("flycheck-error-format" function (:arguments ("err" "with-file-name")) nil [118404 119269])
-            ("flycheck-error-<" function (:arguments ("err1" "err2")) nil [119271 119776])
-            ("flycheck-error-level-<" function (:arguments ("err1" "err2")) nil [119778 120397])
-            ("flycheck-assert-error-list-p" function (:arguments ("errors")) nil [120399 120856])
-            ("defvar-local" code nil nil [120893 120996])
-            ("flycheck-report-current-errors" function (:arguments ("errors")) nil [120998 121535])
-            ("flycheck-clear-errors" function nil nil [121537 121704])
-            ("flycheck-fill-and-expand-error-file-names" function (:arguments ("errors" "directory")) nil [121706 122304])
-            ("flycheck-relevant-error-other-file-p" function (:arguments ("err")) nil [122306 122648])
-            ("flycheck-relevant-error-p" function (:arguments ("err")) nil [122650 123437])
-            ("flycheck-relevant-errors" function (:arguments ("errors")) nil [123439 123653])
-            ("flycheck-related-errors" function (:arguments ("err" "error-set")) nil [123655 124301])
-            ("defvar-local" code nil nil [124349 124454])
-            ("flycheck-report-failed-syntax-check" function (:arguments ("status")) nil [124456 124905])
-            ("flycheck-report-status" function (:arguments ("status")) nil [124907 125750])
-            ("flycheck-mode-line-status-text" function (:arguments ("status")) nil [125752 126494])
-            ("flycheck-define-error-level" function (:arguments ("level" "properties")) nil [126530 129030])
-            ("flycheck-error-level-p" function (:arguments ("level")) nil [129032 129161])
-            ("flycheck-error-level-severity" function (:arguments ("level")) nil [129163 129293])
-            ("flycheck-error-level-compilation-level" function (:arguments ("level")) nil [129295 129432])
-            ("flycheck-error-level-overlay-category" function (:arguments ("level")) nil [129434 129568])
-            ("flycheck-error-level-fringe-bitmap" function (:arguments ("level")) nil [129570 129708])
-            ("flycheck-error-level-fringe-face" function (:arguments ("level")) nil [129710 129829])
-            ("flycheck-error-level-error-list-face" function (:arguments ("level")) nil [129831 129962])
-            ("flycheck-error-level-make-fringe-icon" function (:arguments ("level" "side")) nil [129964 130707])
-            ("when" code nil nil [130737 131229])
-            ("setf" code nil nil [131231 131289])
-            ("setf" code nil nil [131290 131340])
-            ("flycheck-define-error-level" code nil nil [131342 131599])
-            ("setf" code nil nil [131601 131663])
-            ("setf" code nil nil [131664 131716])
-            ("flycheck-define-error-level" code nil nil [131718 131982])
-            ("setf" code nil nil [131984 132040])
-            ("setf" code nil nil [132041 132089])
-            ("flycheck-define-error-level" code nil nil [132091 132344])
-            ("flycheck-filter-errors" function (:arguments ("errors" "checker")) nil [132368 132733])
-            ("flycheck-sanitize-errors" function (:arguments ("errors")) nil [132735 133524])
-            ("flycheck-remove-error-file-names" function (:arguments ("file-name" "errors")) nil [133526 134004])
-            ("flycheck-increment-error-columns" function (:arguments ("errors" "offset")) nil [134006 134428])
-            ("flycheck-collapse-error-message-whitespace" function (:arguments ("errors")) nil [134430 134837])
-            ("flycheck-dedent-error-messages" function (:arguments ("errors")) nil [134839 136109])
-            ("flycheck-fold-include-levels" function (:arguments ("errors" "sentinel-message")) nil [136111 138947])
-            ("flycheck-dequalify-error-ids" function (:arguments ("errors")) nil [138949 139895])
-            ("flycheck-remove-error-ids" function (:arguments ("errors")) nil [139897 140054])
-            ("flycheck-fill-empty-line-numbers" function (:arguments ("errors")) nil [140056 140394])
-            ("flycheck-count-errors" function (:arguments ("errors")) nil [140417 140911])
-            ("flycheck-has-max-errors-p" function (:arguments ("errors" "level")) nil [140913 141278])
-            ("flycheck-has-max-current-errors-p" function (:arguments ("level")) nil [141280 141452])
-            ("flycheck-has-errors-p" function (:arguments ("errors" "level")) nil [141454 141617])
-            ("flycheck-has-current-errors-p" function (:arguments ("level")) nil [141619 141908])
-            ("flycheck-add-overlay" function (:arguments ("err")) nil [141953 143540])
-            ("flycheck-help-echo" function (:arguments ("_window" "object" "pos")) nil [143542 144211])
-            ("flycheck-help-echo-all-error-messages" function (:arguments ("errs")) nil [144213 144541])
-            ("flycheck-filter-overlays" function (:arguments ("overlays")) nil [144543 144702])
-            ("flycheck-overlays-at" function (:arguments ("pos")) nil [144704 144823])
-            ("flycheck-overlays-in" function (:arguments ("beg" "end")) nil [144825 144965])
-            ("flycheck-overlay-errors-at" function (:arguments ("pos")) nil [144967 145161])
-            ("flycheck-overlay-errors-in" function (:arguments ("beg" "end")) nil [145163 145378])
-            ("defvar-local" code nil nil [145380 145492])
-            ("put" code nil nil [145493 145546])
-            ("flycheck-delete-all-overlays" function nil nil [145548 145822])
-            ("flycheck-mark-all-overlays-for-deletion" function nil nil [145824 146063])
-            ("flycheck-delete-marked-overlays" function nil nil [146065 146282])
-            ("flycheck-error-level-interesting-at-pos-p" function (:arguments ("pos")) nil [146329 146543])
-            ("flycheck-error-level-interesting-p" function (:arguments ("err")) nil [146545 146888])
-            ("flycheck-next-error-pos" function (:arguments ("n" "reset")) nil [146890 148972])
-            ("flycheck-next-error-function" function (:arguments ("n" "reset")) nil [148974 149496])
-            ("flycheck-next-error" function
-               (:user-visible-flag t
-                :arguments ("n" "reset"))
-                nil [149498 149969])
-            ("flycheck-previous-error" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [149971 150215])
-            ("flycheck-first-error" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [150217 150461])
-            ("flycheck-error-list-buffer" variable
-               (:constant-flag t
-                :default-value "*Flycheck errors*")
-                nil [150495 150600])
-            ("flycheck-error-list-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map (kbd "f") (function flycheck-error-list-set-filter)) (define-key map (kbd "F") (function flycheck-error-list-reset-filter)) (define-key map (kbd "n") (function flycheck-error-list-next-error)) (define-key map (kbd "p") (function flycheck-error-list-previous-error)) (define-key map (kbd "g") (function flycheck-error-list-check-source)) (define-key map (kbd "e") (function flycheck-error-list-explain-error)) (define-key map (kbd "RET") (function flycheck-error-list-goto-error)) map)) nil [150602 151191])
-            ("flycheck-error-list-make-last-column" function (:arguments ("message" "checker")) nil [151193 151586])
-            ("flycheck-error-list-format" variable
-               (:constant-flag t
-                :default-value (\` [("File" 6) ("Line" 5 flycheck-error-list-entry-< :right-align t) ("Col" 3 nil :right-align t) ("Level" 8 flycheck-error-list-entry-level-<) ("ID" 6 t) ((\, (flycheck-error-list-make-last-column "Message" (quote Checker))) 0 t)]))
-                nil [151588 151903])
-            ("flycheck-error-list-padding" variable
-               (:constant-flag t
-                :default-value 1)
-                nil [151905 151977])
-            ("flycheck--error-list-msg-offset" variable
-               (:constant-flag t
-                :default-value (seq-reduce (lambda (offset fmt) (pcase-let* (((\` ((\, _) (\, width) (\, _) \, props)) fmt) (padding (or (plist-get props :pad-right) 1))) (+ offset width padding))) (seq-subseq flycheck-error-list-format 0 -1) flycheck-error-list-padding))
-                nil [151979 152353])
-            ("define-derived-mode" code nil nil [152355 153278])
-            ("defvar-local" code nil nil [153280 153381])
-            ("put" code nil nil [153470 153529])
-            ("flycheck-error-list-set-source" function (:arguments ("buffer")) nil [153531 153936])
-            ("flycheck-error-list-update-source" function nil nil [153938 154261])
-            ("flycheck-error-list-check-source" function (:user-visible-flag t) nil [154263 154550])
-            ("define-button-type" code nil nil [154552 154695])
-            ("flycheck-error-list-button-goto-error" function (:arguments ("button")) nil [154697 154839])
-            ("define-button-type" code nil nil [154841 154992])
-            ("flycheck-error-list-button-explain-error" function (:arguments ("button")) nil [154994 155144])
-            ("flycheck-error-list-make-cell" function (:arguments ("text" "face" "help-echo" "type")) nil [155146 155995])
-            ("flycheck-error-list-make-number-cell" function (:arguments ("number" "face")) nil [155997 156301])
-            ("flycheck-error-list-make-entry" function (:arguments ("error")) nil [156303 158230])
-            ("flycheck-flush-multiline-message" function (:arguments ("msg")) nil [158232 158695])
-            ("flycheck-error-list-current-errors" function nil nil [158697 158977])
-            ("flycheck-error-list-entries" function nil nil [158979 159247])
-            ("flycheck-error-list-entry-<" function (:arguments ("entry1" "entry2")) nil [159249 159431])
-            ("flycheck-error-list-entry-level-<" function (:arguments ("entry1" "entry2")) nil [159433 159636])
-            ("flycheck-error-list-mode-line-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mode-line mouse-1] (function flycheck-error-list-mouse-switch-to-source)) map)) nil [159638 159854])
-            ("flycheck-error-list-propertized-source-name" function nil nil [159856 160478])
-            ("flycheck-error-list-mouse-switch-to-source" function
-               (:user-visible-flag t
-                :arguments ("event"))
-                nil [160480 160849])
-            ("flycheck-get-error-list-window-list" function (:arguments ("all-frames")) nil [160851 161150])
-            ("flycheck-get-error-list-window" function (:arguments ("all-frames")) nil [161152 161445])
-            ("flycheck-error-list-recenter-at" function (:arguments ("pos")) nil [161447 161702])
-            ("flycheck-error-list-refresh" function nil nil [161704 162583])
-            ("flycheck-error-list-mode-line-filter-indicator" function nil nil [162585 162814])
-            ("flycheck-error-list-set-filter" function
-               (:user-visible-flag t
-                :arguments ("level"))
-                nil [162816 163458])
-            ("flycheck-error-list-reset-filter" function (:user-visible-flag t) nil [163460 163636])
-            ("flycheck-error-list-apply-filter" function (:arguments ("errors")) nil [163638 164106])
-            ("flycheck-error-list-goto-error" function
-               (:user-visible-flag t
-                :arguments ("pos"))
-                nil [164108 164354])
-            ("flycheck-jump-to-error" function (:arguments ("error")) nil [164356 165247])
-            ("flycheck-jump-in-buffer" function (:arguments ("buffer" "error")) nil [165249 166000])
-            ("flycheck-error-list-explain-error" function
-               (:user-visible-flag t
-                :arguments ("pos"))
-                nil [166002 166456])
-            ("flycheck-error-list-next-error-pos" function (:arguments ("pos" "n")) nil [166458 167363])
-            ("flycheck-error-list-previous-error" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [167365 167532])
-            ("flycheck-error-list-next-error" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [167534 168017])
-            ("defvar-local" code nil nil [168019 168131])
-            ("put" code nil nil [168132 168196])
-            ("flycheck-error-list-highlight-errors" function (:arguments ("preserve-pos")) nil [168198 170583])
-            ("flycheck-list-errors" function (:user-visible-flag t) nil [170585 171279])
-            ("defalias" code nil nil [171281 171335])
-            ("flycheck-display-errors" function (:arguments ("errors")) nil [171383 171580])
-            ("defvar-local" code nil nil [171582 171704])
-            ("flycheck-cancel-error-display-error-at-point-timer" function nil nil [171706 171983])
-            ("flycheck-display-error-at-point" function (:user-visible-flag t) nil [171985 172437])
-            ("flycheck-display-error-at-point-soon" function nil nil [172439 172812])
-            ("flycheck-error-message-buffer" variable
-               (:constant-flag t
-                :default-value "*Flycheck error messages*")
-                nil [172848 172975])
-            ("flycheck-error-message-buffer" function nil nil [172977 173224])
-            ("flycheck-may-use-echo-area-p" function nil nil [173226 173498])
-            ("flycheck-display-error-messages" function (:arguments ("errors")) nil [173500 174290])
-            ("flycheck-display-error-messages-unless-error-list" function (:arguments ("errors")) nil [174292 174672])
-            ("flycheck-hide-error-buffer" function nil nil [174674 175182])
-            ("flycheck-copy-errors-as-kill" function
-               (:user-visible-flag t
-                :arguments ("pos" "formatter"))
-                nil [175210 176201])
-            ("flycheck-explain-error-at-point" function (:user-visible-flag t) nil [176203 177183])
-            ("flycheck-explain-error-buffer" variable
-               (:constant-flag t
-                :default-value "*Flycheck error explanation*")
-                nil [177185 177311])
-            ("flycheck-display-error-explanation" function (:arguments ("explanation")) nil [177313 177517])
-            ("flycheck-command-argument-p" function (:arguments ("arg")) nil [177565 178738])
-            ("flycheck-compute-working-directory" function (:arguments ("checker")) nil [178740 179757])
-            ("flycheck-define-command-checker" function (:arguments ("symbol" "docstring" "properties")) nil [179774 185838])
-            ("flycheck-checker-executable-variable" function (:arguments ("checker")) nil [185994 186214])
-            ("flycheck-checker-default-executable" function (:arguments ("checker")) nil [186217 186361])
-            ("flycheck-checker-executable" function (:arguments ("checker")) nil [186363 186788])
-            ("flycheck-find-checker-executable" function (:arguments ("checker")) nil [186790 187069])
-            ("flycheck-checker-arguments" function (:arguments ("checker")) nil [187071 187205])
-            ("flycheck-substitute-argument" function (:arguments ("arg" "checker")) nil [187207 195115])
-            ("flycheck-checker-substituted-arguments" function (:arguments ("checker")) nil [195117 195498])
-            ("flycheck--process-send-buffer-contents-chunked" function (:arguments ("process")) nil [195500 196035])
-            ("flycheck-chunked-process-input" variable (:default-value (and (eq system-type (quote windows-nt)) (not (boundp (quote w32-pipe-buffer-size))))) nil [196037 196798])
-            ("flycheck-process-send-buffer" function (:arguments ("process")) nil [196800 197498])
-            ("flycheck-start-command-checker" function (:arguments ("checker" "callback")) nil [197500 200425])
-            ("flycheck-interrupt-command-checker" function (:arguments ("_checker" "process")) nil [200427 200638])
-            ("flycheck-command-checker-print-doc" function (:arguments ("checker")) nil [200640 201926])
-            ("flycheck-verify-command-checker" function (:arguments ("checker")) nil [201928 203159])
-            ("flycheck-receive-checker-output" function (:arguments ("process" "output")) nil [203214 203379])
-            ("flycheck-get-output" function (:arguments ("process")) nil [203381 203651])
-            ("flycheck-handle-signal" function (:arguments ("process" "_event")) nil [203653 204748])
-            ("flycheck-finish-checker-process" function (:arguments ("checker" "exit-status" "files" "output" "callback" "cwd")) nil [204750 206177])
-            ("flycheck-def-executable-var" function (:arguments ("checker" "default-executable")) nil [206218 207188])
-            ("flycheck-set-checker-executable" function (:arguments ("checker" "executable")) nil [207190 208938])
-            ("flycheck-register-config-file-var" function (:arguments ("var" "checkers")) nil [208999 209318])
-            ("flycheck-def-config-file-var" function (:arguments ("symbol" "checker" "file-name" "custom-args")) nil [209335 210808])
-            ("flycheck-locate-config-file" function (:arguments ("filename" "checker")) nil [210810 211309])
-            ("flycheck-locate-config-file-by-path" function (:arguments ("filepath" "_checker")) nil [211311 211815])
-            ("flycheck-locate-config-file-ancestor-directories" function (:arguments ("filename" "_checker")) nil [211817 212360])
-            ("flycheck-locate-config-file-home" function (:arguments ("filename" "_checker")) nil [212362 212667])
-            ("seq-do" code nil nil [212669 212936])
-            ("flycheck-register-option-var" function (:arguments ("var" "checkers")) nil [212938 213343])
-            ("flycheck-def-option-var" function (:arguments ("symbol" "init-value" "checkers" "docstring" "custom-args")) nil [213360 214439])
-            ("flycheck-option-int" function (:arguments ("value")) nil [214441 214642])
-            ("flycheck-option-symbol" function (:arguments ("value")) nil [214644 214837])
-            ("flycheck-option-comma-separated-list" function (:arguments ("value" "separator" "filter")) nil [214839 215623])
-            ("flycheck-def-args-var" function (:arguments ("symbol" "checkers" "custom-args")) nil [215625 216359])
-            ("flycheck-checker-pattern-to-error-regexp" function (:arguments ("pattern")) nil [216411 216785])
-            ("flycheck-checker-compilation-error-regexp-alist" function (:arguments ("checker")) nil [216787 217135])
-            ("flycheck-checker-shell-command" function (:arguments ("checker")) nil [217137 218495])
-            ("flycheck-compile-name" function (:arguments ("_name")) nil [218497 218649])
-            ("flycheck-compile" function
-               (:user-visible-flag t
-                :arguments ("checker"))
-                nil [218651 220098])
-            ("flycheck-parse-output" function (:arguments ("output" "checker" "buffer")) nil [220149 220494])
-            ("flycheck-fix-error-filename" function (:arguments ("err" "buffer-files" "cwd")) nil [220496 221429])
-            ("flycheck-parse-xml-region" function (:arguments ("beg" "end")) nil [221479 221812])
-            ("flycheck-parse-xml-region-with-fallback" function (:arguments ("beg" "end")) nil [221814 222432])
-            ("flycheck-xml-parser" variable (:default-value (quote flycheck-parse-xml-region-with-fallback)) nil [222434 222655])
-            ("flycheck-parse-xml-string" function (:arguments ("xml")) nil [222657 223139])
-            ("flycheck-parse-checkstyle" function (:arguments ("output" "checker" "buffer")) nil [223141 224652])
-            ("flycheck-parse-cppcheck" function (:arguments ("output" "checker" "buffer")) nil [224654 226527])
-            ("flycheck-parse-phpmd" function (:arguments ("output" "checker" "buffer")) nil [226529 227658])
-            ("flycheck-parse-reek" function (:arguments ("output" "checker" "buffer")) nil [227660 228380])
-            ("flycheck-parse-tslint" function (:arguments ("output" "checker" "buffer")) nil [228382 229229])
-            ("flycheck-parse-rust-collect-spans" function (:arguments ("span")) nil [229231 229907])
-            ("flycheck-parse-rustc-diagnostic" function (:arguments ("diagnostic" "checker" "buffer")) nil [229909 235106])
-            ("flycheck-parse-json" function (:arguments ("output")) nil [235108 235774])
-            ("flycheck-parse-rustc" function (:arguments ("output" "checker" "buffer")) nil [235776 236529])
-            ("flycheck-parse-cargo-rustc" function (:arguments ("output" "checker" "buffer")) nil [236531 237604])
-            ("flycheck-get-regexp" function (:arguments ("patterns")) nil [237651 237849])
-            ("flycheck-tokenize-output-with-patterns" function (:arguments ("output" "patterns")) nil [237851 238523])
-            ("flycheck-try-parse-error-with-pattern" function (:arguments ("err" "pattern" "checker")) nil [238525 239434])
-            ("flycheck-parse-error-with-patterns" function (:arguments ("err" "patterns" "checker")) nil [239436 240020])
-            ("flycheck-parse-with-patterns" function (:arguments ("output" "checker" "buffer")) nil [240022 240759])
-            ("flycheck-define-checker" function (:arguments ("symbol" "docstring" "properties")) nil [240817 242455])
-            ("flycheck-def-args-var" code nil nil [242481 242572])
-            ("flycheck-def-option-var" code nil nil [242574 242984])
-            ("flycheck-def-option-var" code nil nil [242986 243442])
-            ("flycheck-def-option-var" code nil nil [243444 243989])
-            ("flycheck-define-checker" code nil nil [243991 245278])
-            ("flycheck-define-checker" code nil nil [245280 245847])
-            ("flycheck-define-checker" code nil nil [245849 246314])
-            ("flycheck-def-args-var" code nil nil [246316 246411])
-            ("flycheck-def-option-var" code nil nil [246413 246731])
-            ("flycheck-def-option-var" code nil nil [246733 247105])
-            ("flycheck-def-option-var" code nil nil [247107 247524])
-            ("flycheck-def-option-var" code nil nil [247526 247928])
-            ("flycheck-def-option-var" code nil nil [247930 248389])
-            ("make-variable-buffer-local" code nil nil [248390 248452])
-            ("flycheck-def-option-var" code nil nil [248454 248737])
-            ("flycheck-def-option-var" code nil nil [248739 249005])
-            ("flycheck-def-option-var" code nil nil [249007 249249])
-            ("flycheck-def-option-var" code nil nil [249251 249582])
-            ("flycheck-def-option-var" code nil nil [249584 249927])
-            ("flycheck-def-option-var" code nil nil [249929 250488])
-            ("flycheck-def-option-var" code nil nil [250490 251210])
-            ("flycheck-c/c++-quoted-include-directory" function nil nil [251212 251838])
-            ("flycheck-define-checker" code nil nil [251840 254552])
-            ("flycheck-def-args-var" code nil nil [254554 254645])
-            ("flycheck-def-option-var" code nil nil [254647 255011])
-            ("flycheck-def-option-var" code nil nil [255013 255422])
-            ("flycheck-def-option-var" code nil nil [255424 255820])
-            ("flycheck-def-option-var" code nil nil [255822 256275])
-            ("make-variable-buffer-local" code nil nil [256276 256336])
-            ("flycheck-def-option-var" code nil nil [256338 256598])
-            ("flycheck-def-option-var" code nil nil [256600 256836])
-            ("flycheck-def-option-var" code nil nil [256838 257076])
-            ("flycheck-def-option-var" code nil nil [257078 257403])
-            ("flycheck-def-option-var" code nil nil [257405 257742])
-            ("flycheck-def-option-var" code nil nil [257744 258448])
-            ("flycheck-define-checker" code nil nil [258450 260628])
-            ("flycheck-def-option-var" code nil nil [260630 261278])
-            ("flycheck-def-option-var" code nil nil [261280 261802])
-            ("make-variable-buffer-local" code nil nil [261803 261860])
-            ("flycheck-def-option-var" code nil nil [261862 262323])
-            ("make-variable-buffer-local" code nil nil [262324 262389])
-            ("flycheck-def-option-var" code nil nil [262391 262934])
-            ("flycheck-def-option-var" code nil nil [262936 263353])
-            ("flycheck-def-option-var" code nil nil [263355 263784])
-            ("flycheck-define-checker" code nil nil [263786 264708])
-            ("flycheck-define-checker" code nil nil [264710 265219])
-            ("flycheck-def-option-var" code nil nil [265221 265671])
-            ("flycheck-define-checker" code nil nil [265673 266792])
-            ("flycheck-define-checker" code nil nil [266794 267222])
-            ("flycheck-def-config-file-var" code nil nil [267224 267361])
-            ("flycheck-define-checker" code nil nil [267363 267898])
-            ("flycheck-define-checker" code nil nil [267900 269078])
-            ("flycheck-define-checker" code nil nil [269080 269375])
-            ("flycheck-stylelint-args" variable
-               (:constant-flag t
-                :default-value (quote ("--formatter" "json")))
-                nil [269377 269482])
-            ("flycheck-def-config-file-var" code nil nil [269484 269607])
-            ("flycheck-def-option-var" code nil nil [269609 269878])
-            ("flycheck-stylelint-error-re" variable
-               (:constant-flag t
-                :default-value (flycheck-rx-to-string (quote (: line-start (id (one-or-more word)) ": " (message) line-end))))
-                nil [269880 270011])
-            ("flycheck-parse-stylelint" function (:arguments ("output" "checker" "buffer")) nil [270013 270954])
-            ("flycheck-parse-stylelint-json" function (:arguments ("output" "checker" "buffer")) nil [270956 273368])
-            ("flycheck-define-checker" code nil nil [273370 273762])
-            ("flycheck-def-option-var" code nil nil [273764 274026])
-            ("flycheck-define-checker" code nil nil [274028 274569])
-            ("flycheck-d-module-re" variable
-               (:constant-flag t
-                :default-value (rx "module" (one-or-more (syntax whitespace)) (group (one-or-more (not (syntax whitespace)))) (zero-or-more (syntax whitespace)) ";"))
-                nil [274571 274813])
-            ("flycheck-d-base-directory" function nil nil [274815 275291])
-            ("flycheck-def-option-var" code nil nil [275293 275698])
-            ("flycheck-def-args-var" code nil nil [275700 275787])
-            ("flycheck-define-checker" code nil nil [275789 276774])
-            ("flycheck-define-checker" code nil nil [276776 277359])
-            ("flycheck-this-emacs-executable" variable
-               (:constant-flag t
-                :default-value (concat invocation-directory invocation-name))
-                nil [277361 277506])
-            ("flycheck-emacs-args" variable
-               (:constant-flag t
-                :default-value (quote ("-Q" "--batch")))
-                nil [277508 277599])
-            ("flycheck-prepare-emacs-lisp-form" function (:arguments ("body")) nil [277601 278401])
-            ("flycheck-emacs-lisp-check-form" variable
-               (:constant-flag t
-                :default-value (flycheck-prepare-emacs-lisp-form (defvar flycheck-byte-compiled-files nil) (let ((byte-compile-dest-file-function (lambda (source) (let ((temp-file (make-temp-file (file-name-nondirectory source)))) (push temp-file flycheck-byte-compiled-files) temp-file)))) (unwind-protect (byte-compile-file (car command-line-args-left)) (mapc (lambda (f) (ignore-errors (delete-file f))) flycheck-byte-compiled-files)) (when (bound-and-true-p flycheck-emacs-lisp-check-declare) (check-declare-file (car command-line-args-left))))))
-                nil [278403 279176])
-            ("flycheck-def-option-var" code nil nil [279178 280080])
-            ("flycheck-def-option-var" code nil nil [280082 280927])
-            ("flycheck-emacs-lisp-package-initialize-form" variable
-               (:constant-flag t
-                :default-value (flycheck-sexp-to-string (quote (with-demoted-errors "Error during package initialization: %S" (package-initialize)))))
-                nil [280929 281144])
-            ("flycheck-option-emacs-lisp-package-initialize" function (:arguments ("value")) nil [281146 282098])
-            ("flycheck-def-option-var" code nil nil [282100 282686])
-            ("flycheck-option-emacs-lisp-package-user-dir" function (:arguments ("value")) nil [282688 283019])
-            ("flycheck-def-option-var" code nil nil [283021 283337])
-            ("flycheck-option-emacs-lisp-check-declare" function (:arguments ("value")) nil [283339 283626])
-            ("flycheck-define-checker" code nil nil [283628 287071])
-            ("flycheck-emacs-lisp-checkdoc-form" variable
-               (:constant-flag t
-                :default-value (flycheck-prepare-emacs-lisp-form (unless (require (quote elisp-mode) nil (quote no-error)) (require (quote lisp-mode))) (require (quote checkdoc)) (let ((source (car command-line-args-left)) (process-default-directory default-directory)) (with-temp-buffer (insert-file-contents source (quote visit)) (setq buffer-file-name source) (setq default-directory process-default-directory) (with-demoted-errors "Error in checkdoc: %S" (delay-mode-hooks (emacs-lisp-mode)) (setq delayed-mode-hooks nil) (checkdoc-current-buffer t) (with-current-buffer checkdoc-diagnostic-buffer (princ (buffer-substring-no-properties (point-min) (point-max))) (kill-buffer)))))))
-                nil [287073 288569])
-            ("flycheck-emacs-lisp-checkdoc-variables" variable
-               (:constant-flag t
-                :default-value (quote (checkdoc-symbol-words checkdoc-arguments-in-order-flag checkdoc-force-history-flag checkdoc-permit-comma-termination-flag checkdoc-force-docstrings-flag checkdoc-package-keywords-flag checkdoc-spellcheck-documentation-flag checkdoc-verb-check-experimental-flag checkdoc-max-keyref-before-warn sentence-end-double-space)))
-                nil [288571 289032])
-            ("flycheck-emacs-lisp-checkdoc-variables-form" function nil nil [289034 289387])
-            ("flycheck-define-checker" code nil nil [289389 290280])
-            ("dolist" code nil nil [290282 290428])
-            ("flycheck-def-option-var" code nil nil [290430 290843])
-            ("flycheck-def-option-var" code nil nil [290845 291258])
-            ("flycheck-define-checker" code nil nil [291260 291854])
-            ("contains-rebar-config" function (:arguments ("dir-name")) nil [291856 292045])
-            ("locate-rebar3-project-root" function (:arguments ("file-name" "prev-file-name" "acc")) nil [292047 292865])
-            ("flycheck-rebar3-project-root" function (:arguments ("_checker")) nil [292867 293024])
-            ("flycheck-define-checker" code nil nil [293026 294001])
-            ("flycheck-define-checker" code nil nil [294003 294299])
-            ("flycheck-def-args-var" code nil nil [294301 294404])
-            ("flycheck-def-option-var" code nil nil [294406 294835])
-            ("flycheck-def-option-var" code nil nil [294837 295334])
-            ("flycheck-def-option-var" code nil nil [295336 295975])
-            ("flycheck-option-gfortran-layout" function (:arguments ("value")) nil [295977 296232])
-            ("flycheck-def-option-var" code nil nil [296234 296972])
-            ("flycheck-define-checker" code nil nil [296974 298384])
-            ("flycheck-define-checker" code nil nil [298386 299070])
-            ("flycheck-define-checker" code nil nil [299072 299487])
-            ("flycheck-def-option-var" code nil nil [299489 300232])
-            ("flycheck-def-option-var" code nil nil [300234 300758])
-            ("flycheck-def-option-var" code nil nil [300760 301325])
-            ("flycheck-define-checker" code nil nil [301327 302881])
-            ("flycheck-def-option-var" code nil nil [302883 303189])
-            ("flycheck-def-option-var" code nil nil [303191 303459])
-            ("flycheck-define-checker" code nil nil [303461 305098])
-            ("flycheck-define-checker" code nil nil [305100 305951])
-            ("flycheck-define-checker" code nil nil [305953 306973])
-            ("flycheck-define-checker" code nil nil [306975 307362])
-            ("flycheck-define-checker" code nil nil [307364 308107])
-            ("flycheck-define-checker" code nil nil [308109 308711])
-            ("flycheck-define-checker" code nil nil [308713 309060])
-            ("flycheck-define-checker" code nil nil [309062 309955])
-            ("flycheck-haskell-module-re" variable
-               (:constant-flag t
-                :default-value (rx line-start (zero-or-more (or "
-" (any space))) "module" (one-or-more (or "
-" (any space))) (group (one-or-more (not (any space "(" "
-"))))))
-                nil [309957 310205])
-            ("flycheck-def-args-var" code nil nil [310207 310320])
-            ("flycheck-def-option-var" code nil nil [310322 310573])
-            ("flycheck-def-option-var" code nil nil [310575 311005])
-            ("flycheck-def-option-var" code nil nil [311007 311303])
-            ("flycheck-def-option-var" code nil nil [311305 311709])
-            ("flycheck-def-option-var" code nil nil [311711 312158])
-            ("flycheck-def-option-var" code nil nil [312160 312611])
-            ("flycheck-haskell-ghc-cache-directory" variable nil nil [312613 312704])
-            ("flycheck-haskell-ghc-cache-directory" function nil nil [312706 313078])
-            ("flycheck--locate-dominating-file-matching" function (:arguments ("directory" "regexp")) nil [313080 313417])
-            ("flycheck-haskell--find-default-directory" function (:arguments ("checker")) nil [313419 314648])
-            ("flycheck-define-checker" code nil nil [314650 316766])
-            ("flycheck-define-checker" code nil nil [316768 318974])
-            ("flycheck-def-config-file-var" code nil nil [318976 319066])
-            ("flycheck-def-args-var" code nil nil [319068 319165])
-            ("flycheck-def-option-var" code nil nil [319167 319559])
-            ("flycheck-def-option-var" code nil nil [319561 319922])
-            ("flycheck-def-option-var" code nil nil [319924 320330])
-            ("flycheck-define-checker" code nil nil [320332 321416])
-            ("flycheck-def-config-file-var" code nil nil [321418 321502])
-            ("flycheck-define-checker" code nil nil [321504 322065])
-            ("flycheck-def-config-file-var" code nil nil [322067 322163])
-            ("flycheck-def-option-var" code nil nil [322165 322950])
-            ("flycheck-define-checker" code nil nil [322952 323597])
-            ("flycheck-def-args-var" code nil nil [323599 323699])
-            ("flycheck-def-option-var" code nil nil [323701 324238])
-            ("flycheck-eslint-config-exists-p" function nil nil [324240 324592])
-            ("flycheck-parse-eslint" function (:arguments ("output" "checker" "buffer")) nil [324594 325370])
-            ("flycheck-eslint--find-working-directory" function (:arguments ("_checker")) nil [325372 326192])
-            ("flycheck-define-checker" code nil nil [326194 327170])
-            ("flycheck-define-checker" code nil nil [327172 327777])
-            ("flycheck-define-checker" code nil nil [327779 328366])
-            ("flycheck-define-checker" code nil nil [328368 329054])
-            ("flycheck-define-checker" code nil nil [329056 329597])
-            ("flycheck-define-checker" code nil nil [329599 329999])
-            ("flycheck-define-checker" code nil nil [330001 330430])
-            ("flycheck-define-checker" code nil nil [330432 331043])
-            ("flycheck-def-config-file-var" code nil nil [331045 331140])
-            ("flycheck-def-option-var" code nil nil [331142 331623])
-            ("make-variable-buffer-local" code nil nil [331624 331681])
-            ("flycheck-define-checker" code nil nil [331683 332693])
-            ("flycheck-define-checker" code nil nil [332695 333067])
-            ("flycheck-def-option-var" code nil nil [333069 333476])
-            ("flycheck-def-option-var" code nil nil [333478 333778])
-            ("flycheck-define-checker" code nil nil [333780 334298])
-            ("flycheck-def-option-var" code nil nil [334300 334620])
-            ("flycheck-def-config-file-var" code nil nil [334622 334792])
-            ("flycheck-define-checker" code nil nil [334794 335712])
-            ("flycheck-define-checker" code nil nil [335714 336260])
-            ("flycheck-def-option-var" code nil nil [336262 336744])
-            ("flycheck-define-checker" code nil nil [336746 337092])
-            ("flycheck-def-option-var" code nil nil [337094 337557])
-            ("flycheck-define-checker" code nil nil [337559 338836])
-            ("flycheck-define-checker" code nil nil [338838 339527])
-            ("flycheck-proselint-parse-errors" function (:arguments ("output" "checker" "buffer")) nil [339529 340383])
-            ("flycheck-define-checker" code nil nil [340385 340655])
-            ("flycheck-define-checker" code nil nil [340657 341557])
-            ("flycheck-define-checker" code nil nil [341559 342712])
-            ("flycheck-define-checker" code nil nil [342714 343796])
-            ("flycheck-def-config-file-var" code nil nil [343798 343968])
-            ("flycheck-def-option-var" code nil nil [343970 344407])
-            ("flycheck-puppet-lint-disabled-arg-name" function (:arguments ("check")) nil [344409 344551])
-            ("flycheck-define-checker" code nil nil [344553 345749])
-            ("flycheck-python-find-module" function (:arguments ("checker" "module")) nil [345751 346292])
-            ("flycheck-python-needs-module-p" function (:arguments ("checker")) nil [346294 346736])
-            ("flycheck-python-verify-module" function (:arguments ("checker" "module")) nil [346738 347299])
-            ("flycheck-python-module-args" function (:arguments ("checker" "module-name")) nil [347301 347778])
-            ("flycheck-def-config-file-var" code nil nil [347780 347872])
-            ("flycheck-def-option-var" code nil nil [347874 349174])
-            ("flycheck-def-option-var" code nil nil [349176 349711])
-            ("flycheck-def-option-var" code nil nil [349713 350412])
-            ("flycheck-flake8-fix-error-level" function (:arguments ("err")) nil [350414 350758])
-            ("flycheck-define-checker" code nil nil [350760 352209])
-            ("flycheck-def-config-file-var" code nil nil [352211 352303])
-            ("flycheck-def-option-var" code nil nil [352305 352716])
-            ("flycheck-define-checker" code nil nil [352718 354600])
-            ("flycheck-define-checker" code nil nil [354602 355381])
-            ("flycheck-def-config-file-var" code nil nil [355383 355509])
-            ("flycheck-def-option-var" code nil nil [355511 355874])
-            ("flycheck-define-checker" code nil nil [355876 356626])
-            ("flycheck-def-option-var" code nil nil [356628 356971])
-            ("flycheck-def-option-var" code nil nil [356973 357246])
-            ("flycheck-r-has-lintr" function (:arguments ("R")) nil [357248 357701])
-            ("flycheck-define-checker" code nil nil [357703 359127])
-            ("flycheck-racket-has-expand-p" function (:arguments ("checker")) nil [359129 359576])
-            ("flycheck-define-checker" code nil nil [359578 361499])
-            ("flycheck-define-checker" code nil nil [361501 362730])
-            ("flycheck-def-config-file-var" code nil nil [362732 362894])
-            ("flycheck-define-checker" code nil nil [362896 363487])
-            ("flycheck-def-option-var" code nil nil [363489 363905])
-            ("flycheck-def-option-var" code nil nil [363907 364359])
-            ("flycheck-def-config-file-var" code nil nil [364361 364492])
-            ("flycheck-define-checker" code nil nil [364494 365264])
-            ("flycheck-define-checker" code nil nil [365266 365733])
-            ("flycheck-locate-sphinx-source-directory" function nil nil [365735 366080])
-            ("flycheck-define-checker" code nil nil [366082 366708])
-            ("flycheck-def-option-var" code nil nil [366710 367006])
-            ("flycheck-define-checker" code nil nil [367008 367990])
-            ("flycheck-ruby--find-project-root" function (:arguments ("_checker")) nil [367992 368255])
-            ("flycheck-def-config-file-var" code nil nil [368257 368352])
-            ("flycheck-def-option-var" code nil nil [368354 368654])
-            ("flycheck-define-checker" code nil nil [368656 370289])
-            ("flycheck-def-config-file-var" code nil nil [370361 370486])
-            ("flycheck-define-checker" code nil nil [370488 370832])
-            ("flycheck-def-config-file-var" code nil nil [370994 371080])
-            ("flycheck-define-checker" code nil nil [371082 371770])
-            ("flycheck-define-checker" code nil nil [371772 372676])
-            ("flycheck-define-checker" code nil nil [372678 373305])
-            ("flycheck-def-args-var" code nil nil [373307 373407])
-            ("flycheck-def-args-var" code nil nil [373409 373498])
-            ("flycheck-def-option-var" code nil nil [373500 374156])
-            ("flycheck-def-option-var" code nil nil [374158 374662])
-            ("make-variable-buffer-local" code nil nil [374663 374717])
-            ("flycheck-def-option-var" code nil nil [374719 375795])
-            ("make-variable-buffer-local" code nil nil [375796 375850])
-            ("flycheck-def-option-var" code nil nil [375852 376371])
-            ("make-variable-buffer-local" code nil nil [376372 376427])
-            ("flycheck-def-option-var" code nil nil [376429 376888])
-            ("make-variable-buffer-local" code nil nil [376889 376941])
-            ("flycheck-def-option-var" code nil nil [376943 377350])
-            ("flycheck-rust-error-explainer" function (:arguments ("error")) nil [377352 377623])
-            ("flycheck-rust-error-filter" function (:arguments ("errors")) nil [377625 378392])
-            ("flycheck-rust-manifest-directory" function nil nil [378394 378808])
-            ("flycheck-rust-cargo-metadata" function nil nil [378810 379108])
-            ("flycheck-rust-cargo-workspace-root" function nil nil [379110 379374])
-            ("flycheck-rust-cargo-has-command-p" function (:arguments ("command")) nil [379376 379731])
-            ("flycheck-rust-valid-crate-type-p" function (:arguments ("crate-type")) nil [379733 379990])
-            ("flycheck-define-checker" code nil nil [379992 383211])
-            ("flycheck-define-checker" code nil nil [383213 384033])
-            ("flycheck-define-checker" code nil nil [384035 385283])
-            ("flycheck-sass-scss-cache-directory" variable nil nil [385285 385379])
-            ("flycheck-sass-scss-cache-location" function nil nil [385381 385749])
-            ("flycheck-def-option-var" code nil nil [385751 385998])
-            ("flycheck-define-checker" code nil nil [386000 387116])
-            ("flycheck-def-config-file-var" code nil nil [387118 387292])
-            ("flycheck-define-checker" code nil nil [387294 387697])
-            ("flycheck-define-checker" code nil nil [387699 388035])
-            ("flycheck-def-config-file-var" code nil nil [388037 388168])
-            ("flycheck-define-checker" code nil nil [388170 390102])
-            ("flycheck-def-args-var" code nil nil [390104 390209])
-            ("flycheck-define-checker" code nil nil [390211 393250])
-            ("flycheck-scss-lint-checkstyle-re" variable
-               (:constant-flag t
-                :default-value (rx "cannot load such file" (1+ not-newline) "scss_lint_reporter_checkstyle"))
-                nil [393252 393433])
-            ("flycheck-parse-scss-lint" function (:arguments ("output" "checker" "buffer")) nil [393435 394033])
-            ("flycheck-def-config-file-var" code nil nil [394035 394171])
-            ("flycheck-define-checker" code nil nil [394173 395825])
-            ("flycheck-define-checker" code nil nil [395827 396252])
-            ("flycheck-def-option-var" code nil nil [396254 396501])
-            ("flycheck-define-checker" code nil nil [396503 397608])
-            ("flycheck-def-args-var" code nil nil [397610 397703])
-            ("flycheck-define-checker" code nil nil [397705 398362])
-            ("flycheck-define-checker" code nil nil [398364 398758])
-            ("flycheck-define-checker" code nil nil [398760 399385])
-            ("flycheck-define-checker" code nil nil [399387 399755])
-            ("flycheck-shellcheck-supported-shells" variable
-               (:constant-flag t
-                :default-value (quote (bash ksh88 sh)))
-                nil [399757 399857])
-            ("flycheck-def-option-var" code nil nil [399859 400314])
-            ("flycheck-def-option-var" code nil nil [400316 400833])
-            ("flycheck-define-checker" code nil nil [400835 402046])
-            ("flycheck-define-checker" code nil nil [402048 402468])
-            ("flycheck-define-checker" code nil nil [402470 402686])
-            ("flycheck-define-checker" code nil nil [402688 403457])
-            ("flycheck-define-checker" code nil nil [403459 403796])
-            ("flycheck-def-config-file-var" code nil nil [403798 403887])
-            ("flycheck-define-checker" code nil nil [403889 404397])
-            ("flycheck-define-checker" code nil nil [404399 405077])
-            ("flycheck-define-checker" code nil nil [405079 405395])
-            ("flycheck-define-checker" code nil nil [405397 405844])
-            ("flycheck-def-config-file-var" code nil nil [405846 406002])
-            ("flycheck-def-option-var" code nil nil [406004 406594])
-            ("flycheck-def-args-var" code nil nil [406596 406698])
-            ("flycheck-define-checker" code nil nil [406700 407270])
-            ("flycheck-def-option-var" code nil nil [407272 407707])
-            ("flycheck-define-checker" code nil nil [407709 408266])
-            ("flycheck-def-option-var" code nil nil [408268 408722])
-            ("make-variable-buffer-local" code nil nil [408723 408784])
-            ("flycheck-def-option-var" code nil nil [408786 409258])
-            ("make-variable-buffer-local" code nil nil [409259 409310])
-            ("flycheck-define-checker" code nil nil [409312 409760])
-            ("flycheck-def-option-var" code nil nil [409762 409968])
-            ("flycheck-define-checker" code nil nil [409970 410494])
-            ("flycheck-def-option-var" code nil nil [410496 410696])
-            ("flycheck-define-checker" code nil nil [410698 411105])
-            ("flycheck-define-checker" code nil nil [411107 411494])
-            ("flycheck-define-checker" code nil nil [411496 412079])
-            ("flycheck" package nil nil [412081 412100]))          
-      :file "flycheck.el"
-      :pointmax 412199
-      :fsize 412213
-      :lastmodtime '(23534 43127 0 0)
-      :unmatched-syntax '((close-paren 186214 . 186215) (symbol 185841 . 185857) (open-paren 185840 . 185841) (close-paren 5260 . 5261) (symbol 3769 . 3785) (open-paren 3768 . 3769) (close-paren 2807 . 2808) (symbol 2547 . 2564) (open-paren 2546 . 2547))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!flycheck-20181018.1021!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041flycheck-tip-20171020.1048\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041flycheck-tip-20171020.1048\041semantic.cache"
deleted file mode 100644
index 555933c..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041flycheck-tip-20171020.1048\041semantic.cache"
+++ /dev/null
@@ -1,86 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [982 999])
-            ("popup" include nil nil [1000 1016])
-            ("notifications" include nil nil [1017 1041])
-            ("error-tip-notify-keep-messages" variable nil nil [1075 1254])
-            ("error-tip-notify-last-notification" variable nil nil [1256 1329])
-            ("error-tip-notify-timeout" variable (:default-value (* 60 1000)) nil [1331 1432])
-            ("error-tip-notify-parametors" variable (:default-value (quote (:title "flycheck-tip" :category "im.error"))) nil [1434 1775])
-            ("error-tip-popup-object" variable nil nil [1798 1833])
-            ("error-tip-timer-object" variable nil nil [1834 1869])
-            ("error-tip-current-errors" variable nil nil [1870 1907])
-            ("error-tip-timer-delay" variable (:default-value 0.3) nil [1908 2052])
-            ("error-tip-newline-character" variable nil nil [2053 2175])
-            ("error-tip-state" variable nil nil [2176 2204])
-            ("error-tip-cycle" function (:arguments ("errors" "reverse")) nil [2206 3333])
-            ("error-tip-get" function (:arguments ("err" "element")) nil [3335 3444])
-            ("error-tip-collect-current-file-errors" function (:arguments ("errors")) nil [3446 4375])
-            ("error-tip-popup-error-message" function (:arguments ("errors" "point")) nil [4377 4949])
-            ("error-tip-get-point" function nil nil [4951 5053])
-            ("error-tip-format" function (:arguments ("errors")) nil [5055 5307])
-            ("error-tip-get-errors" function nil nil [5309 6118])
-            ("error-tip-delete-popup" function nil nil [6120 6437])
-            ("error-tip-register-timer" function nil nil [6439 6697])
-            ("error-tip-cancel-timer" function nil nil [6699 6852])
-            ("error-tip-error-p" function nil nil [6869 7238])
-            ("error-tip-cycle-dwim" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [7255 7652])
-            ("error-tip-cycle-dwim-reverse" function (:user-visible-flag t) nil [7669 7822])
-            ("error-tip-notify" function nil nil [7872 8544])
-            ("error-tip" package nil nil [8839 8859]))          
-      :file "error-tip.el"
-      :pointmax 8954
-      :fsize 8969
-      :lastmodtime '(23534 43242 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1737 1754])
-            ("flycheck" include nil nil [1755 1774])
-            ("error-tip" include nil nil [1775 1795])
-            ("defvaralias" code nil nil [1797 1897])
-            ("flycheck-tip-cycle" function
-               (:user-visible-flag t
-                :arguments ("reverse"))
-                nil [2059 2350])
-            ("flycheck-tip-cycle-reverse" function (:user-visible-flag t) nil [2367 2490])
-            ("flycheck-tip-display-current-line-error-message" function (:arguments ("errors")) nil [2492 3017])
-            ("flycheck-tip--get" function (:arguments ("element" "err")) nil [3034 3225])
-            ("flycheck-tip-avoid-show-func" variable (:default-value t) nil [3300 3478])
-            ("make-obsolete-variable" code nil nil [3480 3730])
-            ("flycheck-tip-use-timer" function (:arguments ("order")) nil [3732 4508])
-            ("define-obsolete-function-alias" code nil nil [4510 4745])
-            ("flycheck-tip" package nil nil [4747 4770]))          
-      :file "flycheck-tip.el"
-      :pointmax 4868
-      :fsize 4883
-      :lastmodtime '(23534 43242 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("error-tip" include nil nil [989 1009])
-            ("flymake" include nil nil [1010 1028])
-            ("cl-lib" include nil nil [1029 1046])
-            ("flymake-tip--err-info-function" variable (:default-value (cond ((version<= "26" (number-to-string emacs-major-version)) (quote (lambda nil (cl-loop for diag in (flymake-diagnostics (point-at-bol) (point-at-eol)) collect (flymake-diagnostic-text diag))))) ((fboundp (quote flymake-find-err-info)) (quote (lambda nil (cl-loop with errors = (flymake-find-err-info flyamke-err-info (line-number-at-pos)) for err in (car errors) if (vectorp err) collect (elt err 4))))))) nil [1048 1686])
-            ("flymake-tip-cycle" function (:arguments ("reverse")) nil [1703 2171])
-            ("flymake-tip-cycle-reverse" function nil nil [2188 2264])
-            ("flymake-tip" package nil nil [2266 2288]))          
-      :file "flymake-tip.el"
-      :pointmax 2385
-      :fsize 2384
-      :lastmodtime '(23534 43242 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!flycheck-tip-20171020.1048!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041ggtags-20181031.1803\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041ggtags-20181031.1803\041semantic.cache"
deleted file mode 100644
index a695087..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041ggtags-20181031.1803\041semantic.cache"
+++ /dev/null
@@ -1,285 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("url-parse" include nil nil [1784 1804])
-            ("cl-lib" include nil nil [1807 1824])
-            ("ewoc" include nil nil [1825 1840])
-            ("compile" include nil nil [1841 1859])
-            ("etags" include nil nil [1860 1876])
-            ("with-display-buffer-no-window" function (:arguments ("body")) nil [2119 2449])
-            ("ignore-errors-unless-debug" function (:arguments ("body")) nil [1899 2115])
-            ("ggtags" customgroup (:user-visible-flag t) nil [2452 2532])
-            ("ggtags-highlight" variable
-               (:default-value (quote ((t (:underline t))))
-                :type "face")
-                nil [2534 2648])
-            ("ggtags-global-line" variable
-               (:default-value (quote ((t (:inherit secondary-selection))))
-                :type "face")
-                nil [2650 2791])
-            ("ggtags-executable-directory" variable nil nil [2793 2976])
-            ("ggtags-oversize-limit" variable (:default-value (* 10 1024 1024)) nil [2978 3482])
-            ("ggtags-include-pattern" variable (:default-value (quote ("^\\s-*#\\s-*\\(?:include\\|import\\)\\s-*[\"<]\\(?:[./]*\\)?\\(.*?\\)[\">]" . 1))) nil [3484 3900])
-            ("ggtags-use-project-gtagsconf" variable (:default-value t) nil [3972 4313])
-            ("ggtags-project-duration" variable (:default-value 600) nil [4315 4443])
-            ("ggtags-process-environment" variable nil nil [4445 4961])
-            ("ggtags-auto-jump-to-match" variable (:default-value (quote history)) nil [4963 5371])
-            ("ggtags-global-window-height" variable (:default-value 8) nil [5373 5590])
-            ("ggtags-global-abbreviate-filename" variable (:default-value 40) nil [5592 5889])
-            ("ggtags-split-window-function" variable (:default-value split-window-preferred-function) nil [5891 6065])
-            ("ggtags-use-idutils" variable (:default-value (and (executable-find "mkid") t)) nil [6067 6209])
-            ("ggtags-use-sqlite3" variable nil nil [6211 6449])
-            ("ggtags-extra-args" variable nil nil [6451 6624])
-            ("ggtags-sort-by-nearness" variable nil nil [6626 6792])
-            ("ggtags-update-on-save" variable (:default-value t) nil [6794 7076])
-            ("ggtags-global-output-format" variable (:default-value (quote grep)) nil [7078 7361])
-            ("ggtags-global-use-color" variable (:default-value t) nil [7363 7604])
-            ("ggtags-global-ignore-case" variable nil nil [7606 7763])
-            ("ggtags-global-treat-text" variable nil nil [7765 7970])
-            ("ggtags-global-search-libpath-for-reference" variable (:default-value t) nil [8027 8282])
-            ("ggtags-global-large-output" variable (:default-value 1000) nil [8284 8427])
-            ("ggtags-global-history-length" variable (:default-value history-length) nil [8429 8589])
-            ("ggtags-enable-navigation-keys" variable (:default-value t) nil [8591 8754])
-            ("ggtags-find-tag-hook" variable nil nil [8756 8910])
-            ("ggtags-get-definition-function" variable (:default-value (function ggtags-get-definition-default)) nil [8912 9295])
-            ("ggtags-print-definition-function" variable (:default-value (lambda (s) (ggtags-echo "%s" (or s "[definition not found]")))) nil [9297 9509])
-            ("ggtags-mode-sticky" variable (:default-value t) nil [9511 9647])
-            ("ggtags-mode-prefix-key" variable (:default-value "") nil [9649 10265])
-            ("ggtags-completing-read-function" variable nil nil [10267 10540])
-            ("define-obsolete-variable-alias" code nil nil [10542 10635])
-            ("ggtags-highlight-tag" variable (:default-value 0.25) nil [10637 11027])
-            ("ggtags-bounds-of-tag-function" variable (:default-value (lambda nil (bounds-of-thing-at-point (quote symbol)))) nil [11029 11264])
-            ("ggtags-global-error" variable (:default-value "match") nil [11296 11388])
-            ("ggtags-bug-url" variable
-               (:constant-flag t
-                :default-value "https://github.com/leoliu/ggtags/issues")
-                nil [11390 11457])
-            ("ggtags-global-last-buffer" variable nil nil [11459 11497])
-            ("ggtags-global-continuation" variable nil nil [11499 11538])
-            ("ggtags-current-tag-name" variable nil nil [11540 11576])
-            ("ggtags-highlight-tag-overlay" variable nil nil [11578 11619])
-            ("ggtags-highlight-tag-timer" variable nil nil [11621 11660])
-            ("ggtags-with-temp-message" function (:arguments ("message" "body")) nil [11662 12086])
-            ("ggtags-delay-finish-functions" function (:arguments ("body")) nil [12088 12815])
-            ("ggtags-ensure-global-buffer" function (:arguments ("body")) nil [12817 13187])
-            ("ggtags-list-of-string-p" function (:arguments ("xs")) nil [13189 13298])
-            ("ggtags-ensure-localname" function (:arguments ("file")) nil [13300 13393])
-            ("ggtags-echo" function (:arguments ("format-string" "args")) nil [13395 13543])
-            ("ggtags-forward-to-line" function (:arguments ("line")) nil [13545 13755])
-            ("ggtags-kill-window" function (:user-visible-flag t) nil [13757 13866])
-            ("ggtags-program-path" function (:arguments ("name")) nil [13868 14004])
-            ("ggtags-process-succeed-p" function (:arguments ("program" "args")) nil [14006 14354])
-            ("ggtags-process-string" function (:arguments ("program" "args")) nil [14356 14828])
-            ("ggtags-tag-at-point" function nil nil [14830 14972])
-            ("ggtags-projects" variable (:default-value (make-hash-table :size 7 :test (function equal))) nil [15015 15079])
-            ("cl-defstruct" code nil nil [15081 15348])
-            ("ggtags-make-project" function (:arguments ("root")) nil [15350 17178])
-            ("ggtags-project-expired-p" function (:arguments ("project")) nil [17180 17377])
-            ("ggtags-project-update-mtime-maybe" function (:arguments ("project")) nil [17379 17921])
-            ("ggtags-project-oversize-p" function (:arguments ("project")) nil [17923 18167])
-            ("defvar-local" code nil nil [18169 18217])
-            ("defvar-local" code nil nil [18218 18309])
-            ("ggtags-find-project" function nil nil [18326 20096])
-            ("ggtags-current-project-root" function nil nil [20098 20217])
-            ("ggtags-check-project" function nil nil [20219 20310])
-            ("ggtags-ensure-project" function nil nil [20312 20574])
-            ("ggtags-save-project-settings" function
-               (:user-visible-flag t
-                :arguments ("noconfirm"))
-                nil [20576 22391])
-            ("ggtags-toggle-project-read-only" function nil nil [22393 22925])
-            ("ggtags-visit-project-root" function
-               (:user-visible-flag t
-                :arguments ("project"))
-                nil [22927 23424])
-            ("ggtags-with-current-project" function (:arguments ("body")) nil [23426 24568])
-            ("ggtags-get-libpath" function nil nil [24570 24829])
-            ("ggtags-project-relative-file" function (:arguments ("file")) nil [24831 25273])
-            ("ggtags-project-file-p" function (:arguments ("file")) nil [25275 25895])
-            ("ggtags-invalidate-buffer-project-root" function (:arguments ("root")) nil [25897 26191])
-            ("ggtags-create-tags" function
-               (:user-visible-flag t
-                :arguments ("root"))
-                nil [26193 28700])
-            ("ggtags-explain-tags" function (:user-visible-flag t) nil [28702 29181])
-            ("ggtags-update-tags" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [29183 30554])
-            ("ggtags-update-tags-finish" function (:arguments ("buf" "how")) nil [30556 30830])
-            ("ggtags-update-tags-single" function (:arguments ("file" "nowait")) nil [30832 31369])
-            ("ggtags-delete-tags" function (:user-visible-flag t) nil [31371 32681])
-            ("defvar-local" code nil nil [32683 32725])
-            ("ggtags-completion-flag" variable nil nil [32814 32848])
-            ("ggtags-completion-table" variable (:default-value (completion-table-dynamic (lambda (prefix) (let ((cache-key (concat prefix "$" ggtags-completion-flag))) (unless (equal cache-key (car ggtags-completion-cache)) (setq ggtags-completion-cache (cons cache-key (ignore-errors-unless-debug (ggtags-with-current-project (split-string (apply (function ggtags-process-string) "global" (append (and completion-ignore-case (quote ("--ignore-case"))) (list (concat "-c" ggtags-completion-flag) prefix))) "
-" t))))))) (cdr ggtags-completion-cache)))) nil [32869 33843])
-            ("ggtags-completion-at-point" function nil nil [33845 34067])
-            ("ggtags-read-tag" function (:arguments ("type" "confirm" "prompt" "require-match" "default")) nil [34069 35310])
-            ("ggtags-sort-by-nearness-p" function nil nil [35312 35447])
-            ("ggtags-global-build-command" function (:arguments ("cmd" "args")) nil [35449 36883])
-            ("ggtags-global-start-marker" variable nil nil [36986 37025])
-            ("ggtags-global-start-file" variable nil nil [37026 37063])
-            ("ggtags-tag-ring-index" variable nil nil [37064 37098])
-            ("ggtags-global-search-history" variable nil nil [37099 37140])
-            ("ggtags-auto-jump-to-match-target" variable nil nil [37142 37187])
-            ("defvar-local" code nil nil [37189 37231])
-            ("ggtags-global-save-start-marker" function nil nil [37258 37479])
-            ("ggtags-global-start" function (:arguments ("command" "directory")) nil [37481 38531])
-            ("ggtags-find-tag-continue" function nil nil [38533 38799])
-            ("ggtags-find-tag" function (:arguments ("cmd" "args")) nil [38801 38937])
-            ("ggtags-include-file" function nil nil [38939 39372])
-            ("ggtags-find-tag-dwim" function
-               (:user-visible-flag t
-                :arguments ("name" "what"))
-                nil [39389 40659])
-            ("ggtags-find-tag-mouse" function (:arguments ("event")) nil [40661 40899])
-            ("ggtags-find-definition" function (:arguments ("name")) nil [40930 41104])
-            ("ggtags-setup-libpath-search" function (:arguments ("type" "name")) nil [41106 41909])
-            ("ggtags-find-reference" function (:arguments ("name")) nil [41911 42130])
-            ("ggtags-find-other-symbol" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [42132 42405])
-            ("ggtags-quote-pattern" function (:arguments ("pattern")) nil [42407 42499])
-            ("ggtags-idutils-query" function (:arguments ("pattern")) nil [42501 42651])
-            ("ggtags-grep" function
-               (:user-visible-flag t
-                :arguments ("pattern" "invert-match"))
-                nil [42653 43175])
-            ("ggtags-find-file" function (:arguments ("pattern" "invert-match")) nil [43177 43741])
-            ("ggtags-find-tag-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp" "directory"))
-                nil [43836 44431])
-            ("ggtags-navigation-mode" variable nil nil [44433 44464])
-            ("ggtags-foreach-file" function (:arguments ("fn")) nil [44466 45005])
-            ("ggtags-query-replace" function
-               (:user-visible-flag t
-                :arguments ("from" "to" "delimited"))
-                nil [45007 46058])
-            ("ggtags-global-normalise-command" function (:arguments ("cmd")) nil [46060 46269])
-            ("ggtags-global-search-id" function (:arguments ("cmd" "directory")) nil [46271 46418])
-            ("ggtags-global-current-search" function nil nil [46420 46787])
-            ("ggtags-global-rerun-search" function (:arguments ("data")) nil [46789 47557])
-            ("defvar-local" code nil nil [47559 47603])
-            ("ggtags-view-search-history-last" variable nil nil [47604 47648])
-            ("ggtags-view-search-history-mode-map" variable (:default-value (let ((m (make-sparse-keymap))) (define-key m "p" (quote ggtags-view-search-history-prev)) (define-key m "\360" (quote ggtags-view-search-history-prev)) (define-key m "n" (quote ggtags-view-search-history-next)) (define-key m "\356" (quote ggtags-view-search-history-next)) (define-key m "" (quote ggtags-view-search-history-kill)) (define-key m [remap yank] (lambda (&optional arg) (interactive "P") (yank arg))) (define-key m "" (quote ggtags-view-search-history-update)) (define-key m "r" (quote ggtags-save-to-register)) (define-key m "
" (quote ggtags-view-search-history-action)) (define-key m "q" (quote ggtags-kill-window)) m)) nil [47650 48325])
-            ("ggtags-view-search-history-remember" function nil nil [48327 48525])
-            ("ggtags-view-search-history-next" function (:arguments ("arg")) nil [48527 48806])
-            ("ggtags-view-search-history-prev" function (:arguments ("arg")) nil [48808 48934])
-            ("ggtags-view-search-history-kill" function (:arguments ("append")) nil [48936 50217])
-            ("ggtags-view-search-history-update" function
-               (:user-visible-flag t
-                :arguments ("noconfirm"))
-                nil [50219 50632])
-            ("ggtags-view-search-history-action" function nil nil [50634 50937])
-            ("bookmark-make-record-function" variable nil nil [50939 50977])
-            ("define-derived-mode" code nil nil [50979 51341])
-            ("ggtags-view-search-history-restore-last" function nil nil [51343 51728])
-            ("ggtags-view-search-history" function (:user-visible-flag t) nil [51730 53433])
-            ("ggtags-save-to-register" function
-               (:user-visible-flag t
-                :arguments ("r"))
-                nil [53435 54240])
-            ("ggtags-make-bookmark-record" function nil nil [54242 54593])
-            ("declare-function" code nil nil [54595 54642])
-            ("ggtags-bookmark-jump" function (:arguments ("bmk")) nil [54644 54748])
-            ("ggtags-browse-file-as-hypertext" function
-               (:user-visible-flag t
-                :arguments ("file" "line"))
-                nil [54750 55948])
-            ("ggtags-next-mark" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [55950 56982])
-            ("ggtags-prev-mark" function (:user-visible-flag t) nil [56984 57120])
-            ("ggtags-view-tag-history-mode-map" variable (:default-value (let ((m (make-sparse-keymap))) (define-key m "\356" (quote next-error-no-select)) (define-key m "\360" (quote previous-error-no-select)) (define-key m "q" (quote ggtags-kill-window)) m)) nil [57122 57350])
-            ("define-derived-mode" code nil nil [57352 57467])
-            ("ggtags-view-tag-history" function (:user-visible-flag t) nil [57469 60979])
-            ("ggtags-view-tag-history-next-error" function (:arguments ("arg" "reset")) nil [60981 61536])
-            ("ggtags-global-exit-message-1" function nil nil [61538 62150])
-            ("ggtags-global-exit-message-function" function (:arguments ("_process-status" "exit-status" "msg")) nil [62152 63276])
-            ("ggtags-global-column" function (:arguments ("start")) nil [63278 63476])
-            ("ggtags-global-error-regexp-alist-alist" variable (:default-value (append (\` ((path "^\\(?:[^\"'
-]*/\\)?[^ )	
-]+$" 0) (ctags "^\\([^ 	
-]+\\)[ 	]+\\(.*?\\)[ 	]+\\([0-9]+\\)$" 2 3 nil nil 2 (1 font-lock-function-name-face)) (ctags-x "^\\([^ 	
-]+\\)[ 	]+\\([0-9]+\\)[ 	]+\\(\\(?:[^/
-]*/\\)?[^ 	
-]+\\)" 3 2 ((\, (lambda nil (ggtags-global-column (1+ (match-end 0)))))) nil 3 (1 font-lock-function-name-face)) (grep "^\\(.+?\\):\\([0-9]+\\):\\(?:$\\|[^0-9
-]\\|[0-9][^0-9
-]\\|[0-9][0-9].\\)" 1 2 ((\, (lambda nil (ggtags-global-column (1+ (match-end 2)))))) nil 1) (cscope "^\\(.+?\\)[ 	]+\\([^ 	
-]+\\)[ 	]+\\([0-9]+\\).*\\(?:[^0-9
-]\\|[^0-9
-][0-9]\\|[^:
-][0-9][0-9]\\)$" 1 3 nil nil 1 (2 font-lock-function-name-face)))) compilation-error-regexp-alist-alist)) nil [63695 64752])
-            ("ggtags-abbreviate-file" function (:arguments ("start" "end")) nil [64754 65625])
-            ("ggtags-abbreviate-files" function (:arguments ("start" "end")) nil [65627 66450])
-            ("defvar-local" code nil nil [66452 66495])
-            ("ggtags-global--display-buffer" function (:arguments ("buffer" "desired-point")) nil [66497 66973])
-            ("ggtags-global-filter" function nil nil [66975 69520])
-            ("ggtags-global-handle-exit" function (:arguments ("buf" "how")) nil [69522 71319])
-            ("ggtags-global-mode-font-lock-keywords" variable (:default-value (quote (("^Global \\(exited abnormally\\|interrupt\\|killed\\|terminated\\)\\(?:.*with code \\([0-9]+\\)\\)?.*" (1 (quote compilation-error)) (2 (quote compilation-error) nil t)) ("^Global found \\([0-9]+\\)" (1 compilation-info-face))))) nil [71321 71600])
-            ("define-compilation-mode" code nil nil [71602 73413])
-            ("ggtags-navigation-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "\356" (quote next-error)) (define-key map "\360" (quote previous-error)) (define-key map "\375" (quote ggtags-navigation-next-file)) (define-key map "\373" (quote ggtags-navigation-previous-file)) (define-key map "\275" (quote ggtags-navigation-start-file)) (define-key map "\276" (quote ggtags-navigation-last-error)) (define-key map "\274" (quote first-error)) (define-key map "\223" (quote ggtags-navigation-isearch-forward)) (define-key map "\363s" (quote ggtags-navigation-isearch-forward)) (define-key map "" (lambda nil (interactive) (ggtags-ensure-global-buffer (kill-compilation)))) (define-key map "\357" (quote ggtags-navigation-visible-mode)) (define-key map [return] (quote ggtags-navigation-mode-done)) (define-key map "
" (quote ggtags-navigation-mode-done)) (define-key map [remap xref-pop-marker-stack] (quote ggtags-navigation-mode-abort)) map)) nil [73565 74698])
-            ("ggtags-mode-map-alist" variable (:default-value (\` ((ggtags-enable-navigation-keys \, ggtags-navigation-map)))) nil [74700 74792])
-            ("ggtags-navigation-mode-map" variable (:default-value (let ((map (make-sparse-keymap)) (menu (make-sparse-keymap "GG-Navigation"))) (define-key map [menu-bar ggtags-navigation] (cons "GG-Navigation" menu)) (define-key menu [visible-mode] (quote (menu-item "Visible mode" ggtags-navigation-visible-mode :button (:toggle ignore-errors (ggtags-ensure-global-buffer visible-mode))))) (define-key menu [done] (quote (menu-item "Finish navigation" ggtags-navigation-mode-done))) (define-key menu [abort] (quote (menu-item "Abort" ggtags-navigation-mode-abort))) (define-key menu [last-match] (quote (menu-item "Last match" ggtags-navigation-last-error))) (define-key menu [first-match] (quote (menu-item "First match" first-error))) (define-key menu [previous-file] (quote (menu-item "Previous file" ggtags-navigation-previous-file))) (define-key menu [next-file] (quote (menu-item "Next file" ggtags-navigation-next-file))) (define-key menu [isearch-forward] (quote (menu-item "Find match with isearch" ggtags-navigation-isearch-forward))) (define-key menu [previous] (quote (menu-item "Previous match" previous-error))) (define-key menu [next] (quote (menu-item "Next match" next-error))) map)) nil [74794 76189])
-            ("ggtags-move-to-tag" function (:arguments ("name")) nil [76191 77139])
-            ("ggtags-navigation-mode-cleanup" function (:arguments ("buf" "kill")) nil [77141 77595])
-            ("ggtags-navigation-mode-done" function nil nil [77597 77796])
-            ("ggtags-navigation-mode-abort" function (:user-visible-flag t) nil [77798 78262])
-            ("ggtags-navigation-next-file" function (:arguments ("n")) nil [78264 78410])
-            ("ggtags-navigation-previous-file" function (:arguments ("n")) nil [78412 78513])
-            ("ggtags-navigation-start-file" function (:user-visible-flag t) nil [78515 79077])
-            ("ggtags-navigation-last-error" function nil nil [79079 79254])
-            ("ggtags-navigation-isearch-forward" function (:arguments ("regexp-p")) nil [79256 79623])
-            ("ggtags-navigation-visible-mode" function (:arguments ("arg")) nil [79625 79789])
-            ("ggtags-global-line-overlay" variable nil nil [79791 79830])
-            ("ggtags-global-next-error-function" function nil nil [79832 81141])
-            ("put" code nil nil [81143 81204])
-            ("ggtags-navigation-mode-lighter" variable (:default-value (quote (" GG[" (:eval (if (not (buffer-live-p ggtags-global-last-buffer)) (quote (:propertize "??" face error help-echo "No Global buffer")) (with-current-buffer ggtags-global-last-buffer (pcase (or ggtags-global-exit-info (quote (0 0 ""))) ((\` ((\, exit) (\, count) (\, db))) (\` ((:propertize (\, (pcase db ((\` "GTAGS") "D") ((\` "GRTAGS") "R") ((\` "GSYMS") "S") ((\` "GPATH") "F") ((\` "ID") "I"))) face success) (:propertize (\, (pcase (get-text-property (line-beginning-position) (quote compilation-message)) ((\` nil) "?") (_ (number-to-string (- (line-number-at-pos) 4))))) face success) "/" (:propertize (\, (number-to-string count)) face success) (\, (unless (zerop exit) (\` (":" (:propertize (\, (number-to-string exit)) face error)))))))))))) "]"))) nil [81206 82470])
-            ("define-minor-mode" code nil nil [82472 83478])
-            ("ggtags-minibuffer-setup-function" function nil nil [83480 83623])
-            ("ggtags-kill-file-buffers" function
-               (:user-visible-flag t
-                :arguments ("interactive"))
-                nil [83625 84502])
-            ("ggtags-after-save-function" function nil nil [84504 84723])
-            ("ggtags-global-output" function (:arguments ("buffer" "cmds" "callback" "cutoff" "sync")) nil [84725 87224])
-            ("cl-defun" code nil nil [87226 87475])
-            ("ggtags-get-definition-default" function (:arguments ("defs")) nil [87477 87634])
-            ("ggtags-show-definition" function (:arguments ("name")) nil [87636 89226])
-            ("ggtags-mode-prefix-map" variable (:default-value (let ((m (make-sparse-keymap))) (define-key m (kbd "M-DEL") (quote ggtags-delete-tags)) (define-key m "\360" (quote ggtags-prev-mark)) (define-key m "\356" (quote ggtags-next-mark)) (define-key m "\346" (quote ggtags-find-file)) (define-key m "\357" (quote ggtags-find-other-symbol)) (define-key m "\347" (quote ggtags-grep)) (define-key m "\351" (quote ggtags-idutils-query)) (define-key m "\342" (quote ggtags-browse-file-as-hypertext)) (define-key m "\353" (quote ggtags-kill-file-buffers)) (define-key m "\350" (quote ggtags-view-tag-history)) (define-key m "\352" (quote ggtags-visit-project-root)) (define-key m "\257" (quote ggtags-view-search-history)) (define-key m (kbd "M-SPC") (quote ggtags-save-to-register)) (define-key m (kbd "M-%") (quote ggtags-query-replace)) (define-key m "\277" (quote ggtags-show-definition)) m)) nil [89228 90133])
-            ("ggtags-mode-map" variable (:default-value (let ((map (make-sparse-keymap)) (menu (make-sparse-keymap "Ggtags"))) (define-key map "\256" (quote ggtags-find-tag-dwim)) (define-key map (kbd "M-]") (quote ggtags-find-reference)) (define-key map (kbd "C-M-.") (quote ggtags-find-tag-regexp)) (define-key map ggtags-mode-prefix-key ggtags-mode-prefix-map) (define-key map [menu-bar ggtags] (cons "Ggtags" menu)) (define-key menu [report-bugs] (\` (menu-item "Report bugs" (lambda nil (interactive) (browse-url ggtags-bug-url) (message "Please visit %s" ggtags-bug-url)) :help (\, (format "Visit %s" ggtags-bug-url))))) (define-key menu [custom-ggtags] (quote (menu-item "Customize Ggtags" (lambda nil (interactive) (customize-group (quote ggtags)))))) (define-key menu [eldoc-mode] (quote (menu-item "Toggle eldoc mode" eldoc-mode :button (:toggle . eldoc-mode)))) (define-key menu [save-project] (quote (menu-item "Save project settings" ggtags-save-project-settings))) (define-key menu [toggle-read-only] (quote (menu-item "Toggle project read-only" ggtags-toggle-project-read-only :button (:toggle . buffer-read-only)))) (define-key menu [visit-project-root] (quote (menu-item "Visit project root" ggtags-visit-project-root))) (define-key menu [sep2] menu-bar-separator) (define-key menu [browse-hypertext] (quote (menu-item "Browse as hypertext" ggtags-browse-file-as-hypertext :enable (ggtags-find-project)))) (define-key menu [delete-tags] (quote (menu-item "Delete tags" ggtags-delete-tags :enable (ggtags-find-project) :help "Delete file GTAGS, GRTAGS, GPATH, ID etc."))) (define-key menu [kill-buffers] (quote (menu-item "Kill project file buffers" ggtags-kill-file-buffers :enable (ggtags-find-project)))) (define-key menu [view-tag] (quote (menu-item "View tag history" ggtags-view-tag-history))) (define-key menu [pop-mark] (quote (menu-item "Pop mark" xref-pop-marker-stack :help "Pop to previous mark and destroy it"))) (define-key menu [next-mark] (quote (menu-item "Next mark" ggtags-next-mark))) (define-key menu [prev-mark] (quote (menu-item "Previous mark" ggtags-prev-mark))) (define-key menu [sep1] menu-bar-separator) (define-key menu [previous-error] (quote (menu-item "Previous match" previous-error))) (define-key menu [next-error] (quote (menu-item "Next match" next-error))) (define-key menu [rerun-search] (quote (menu-item "View past searches" ggtags-view-search-history))) (define-key menu [save-to-register] (quote (menu-item "Save search to register" ggtags-save-to-register))) (define-key menu [find-file] (quote (menu-item "Find files" ggtags-find-file))) (define-key menu [query-replace] (quote (menu-item "Query replace" ggtags-query-replace))) (define-key menu [idutils] (quote (menu-item "Query idutils DB" ggtags-idutils-query))) (define-key menu [grep] (quote (menu-item "Grep" ggtags-grep))) (define-key menu [find-symbol] (quote (menu-item "Find other symbol" ggtags-find-other-symbol :help "Find references without definition"))) (define-key menu [find-tag-regexp] (quote (menu-item "Find tag matching regexp" ggtags-find-tag-regexp))) (define-key menu [show-definition] (quote (menu-item "Show definition" ggtags-show-definition))) (define-key menu [find-reference] (quote (menu-item "Find reference" ggtags-find-reference))) (define-key menu [find-tag-continue] (quote (menu-item "Continue find tag" tags-loop-continue))) (define-key menu [find-tag] (quote (menu-item "Find tag" ggtags-find-tag-dwim))) (define-key menu [update-tags] (quote (menu-item "Update tag files" ggtags-update-tags :visible (ggtags-find-project)))) (define-key menu [run-gtags] (quote (menu-item "Run gtags" ggtags-create-tags :visible (not (ggtags-find-project))))) map)) nil [90135 94293])
-            ("ggtags-mode-line-project-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [mode-line mouse-1] (quote ggtags-visit-project-root)) map)) nil [94295 94448])
-            ("put" code nil nil [94450 94510])
-            ("ggtags-mode-line-project-name" variable (:default-value (quote ("[" (:eval (let ((name (if (stringp ggtags-project-root) (file-name-nondirectory (directory-file-name ggtags-project-root)) "?"))) (propertize name (quote face) compilation-info-face (quote help-echo) (if (stringp ggtags-project-root) (concat "mouse-1 to visit " ggtags-project-root) "mouse-1 to set project") (quote mouse-face) (quote mode-line-highlight) (quote keymap) ggtags-mode-line-project-keymap))) "]"))) nil [94511 95349])
-            ("define-minor-mode" code nil nil [95366 96823])
-            ("ggtags-highlight-tag-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map [S-mouse-1] (quote ggtags-find-tag-dwim)) (define-key map [S-down-mouse-1] (quote ignore)) (define-key map [S-mouse-3] (quote ggtags-find-reference)) (define-key map [S-down-mouse-3] (quote ignore)) map)) nil [96825 97305])
-            ("put" code nil nil [97307 97355])
-            ("put" code nil nil [97356 97413])
-            ("put" code nil nil [97461 97555])
-            ("ggtags-setup-highlight-tag-at-point" function (:arguments ("flag")) nil [97557 97908])
-            ("ggtags-cancel-highlight-tag-at-point" function (:arguments ("keep-timer")) nil [97910 98278])
-            ("ggtags-highlight-tag-at-point" function nil nil [98280 99646])
-            ("defvar-local" code nil nil [99659 99696])
-            ("declare-function" code nil nil [99698 99738])
-            ("ggtags-eldoc-function" function nil nil [99739 100805])
-            ("ggtags-goto-imenu-index" function (:arguments ("name" "line" "_args")) nil [100818 100933])
-            ("ggtags-build-imenu-index" function nil nil [100950 101818])
-            ("ggtags-try-complete-tag" function (:arguments ("old")) nil [101854 102580])
-            ("ggtags-reload" function (:arguments ("force")) nil [102582 102694])
-            ("ggtags" package nil nil [102696 102713]))          
-      :file "ggtags.el"
-      :pointmax 102738
-      :fsize 102737
-      :lastmodtime '(23534 24057 0 0)
-      :unmatched-syntax '((close-paren 2449 . 2450) (symbol 1879 . 1896) (open-paren 1878 . 1879) (close-paren 1804 . 1805) (symbol 1764 . 1781) (open-paren 1763 . 1764))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!ggtags-20181031.1803!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041ghub-20181112.1755\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041ghub-20181112.1755\041semantic.cache"
deleted file mode 100644
index 5ff742e..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041ghub-20181112.1755\041semantic.cache"
+++ /dev/null
@@ -1,127 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("auth-source" include nil nil [2176 2198])
-            ("cl-lib" include nil nil [2199 2216])
-            ("json" include nil nil [2217 2232])
-            ("let-alist" include nil nil [2233 2253])
-            ("url" include nil nil [2254 2268])
-            ("url-auth" include nil nil [2269 2288])
-            ("url-http" include nil nil [2289 2308])
-            ("subr-x" include nil nil [2331 2348])
-            ("url-callback-arguments" variable nil nil [2351 2382])
-            ("url-http-end-of-headers" variable nil nil [2383 2415])
-            ("url-http-extra-headers" variable nil nil [2416 2447])
-            ("url-http-response-status" variable nil nil [2448 2481])
-            ("ghub-default-host" variable
-               (:constant-flag t
-                :default-value "api.github.com")
-                nil [2497 2603])
-            ("ghub-github-token-scopes" variable (:default-value (quote (repo))) nil [2605 3531])
-            ("ghub-override-system-name" variable nil nil [3533 3708])
-            ("cl-defstruct" code nil nil [3735 4259])
-            ("defalias" code nil nil [4261 4304])
-            ("define-error" code nil nil [4316 4366])
-            ("define-error" code nil nil [4367 4423])
-            ("ghub-response-headers" variable nil nil [4425 4608])
-            ("cl-defun" code nil nil [4610 5346])
-            ("cl-defun" code nil nil [5348 6076])
-            ("cl-defun" code nil nil [6078 6808])
-            ("cl-defun" code nil nil [6810 7548])
-            ("cl-defun" code nil nil [7550 8296])
-            ("cl-defun" code nil nil [8298 9052])
-            ("cl-defun" code nil nil [9054 15136])
-            ("ghub-continue" function (:arguments ("req")) nil [15138 15933])
-            ("cl-defun" code nil nil [15935 17083])
-            ("ghub-response-link-relations" function (:arguments ("req" "headers" "payload")) nil [17085 18587])
-            ("cl-defun" code nil nil [18589 18913])
-            ("cl-defun" code nil nil [18930 20166])
-            ("ghub--handle-response" function (:arguments ("status" "req")) nil [20168 21719])
-            ("ghub--handle-response-headers" function (:arguments ("status" "req")) nil [21721 22435])
-            ("ghub--handle-response-error" function (:arguments ("status" "payload" "req")) nil [22437 22797])
-            ("ghub--signal-error" function (:arguments ("err" "payload")) nil [22799 23243])
-            ("ghub--handle-response-value" function (:arguments ("payload" "req")) nil [23245 23559])
-            ("ghub--handle-response-payload" function (:arguments ("req")) nil [23561 23720])
-            ("ghub--read-json-payload" function (:arguments ("_status")) nil [23722 24607])
-            ("ghub--decode-payload" function (:arguments ("_status")) nil [24609 24784])
-            ("ghub--encode-payload" function (:arguments ("payload")) nil [24786 24991])
-            ("ghub--url-encode-params" function (:arguments ("params")) nil [24993 25356])
-            ("ghub-create-token" function
-               (:user-visible-flag t
-                :arguments ("host" "username" "package" "scopes"))
-                nil [25402 27087])
-            ("ghub-token-scopes" function
-               (:user-visible-flag t
-                :arguments ("host" "username" "package"))
-                nil [27104 27744])
-            ("ghub-clear-caches" function (:user-visible-flag t) nil [27761 28186])
-            ("ghub--headers" function (:arguments ("headers" "host" "auth" "username" "forge")) nil [28203 28648])
-            ("ghub--auth" function (:arguments ("host" "auth" "username" "forge")) nil [28650 29578])
-            ("ghub--basic-auth" function (:arguments ("host" "username")) nil [29580 29747])
-            ("ghub--basic-auth-errorback" function (:arguments ("url" "prompt" "_overwrite" "_realm" "_args")) nil [29749 30837])
-            ("ghub--token" function (:arguments ("host" "username" "package" "nocreate" "forge")) nil [30839 32118])
-            ("ghub--host" function (:arguments ("forge")) nil [32120 32842])
-            ("ghub--username" function (:arguments ("host" "forge")) nil [32844 34193])
-            ("ghub--ident" function (:arguments ("username" "package")) nil [34195 34269])
-            ("ghub--ident-github" function (:arguments ("package")) nil [34271 34415])
-            ("ghub--package-scopes" function (:arguments ("package")) nil [34417 34621])
-            ("ghub--confirm-create-token" function (:arguments ("host" "username" "package")) nil [34623 37856])
-            ("ghub--get-token-id" function (:arguments ("host" "username" "package")) nil [37858 38250])
-            ("ghub--get-token-plist" function (:arguments ("host" "username" "package")) nil [38252 38470])
-            ("ghub--delete-token" function (:arguments ("host" "username" "package")) nil [38472 38696])
-            ("ghub--read-triplet" function nil nil [38698 38907])
-            ("ghub--2fa-cache" variable nil nil [38909 38937])
-            ("ghub--read-2fa-code" function nil nil [38939 39456])
-            ("ghub--auth-source-get" function (:arguments ("keys" "spec")) nil [39458 39713])
-            ("advice-add" code nil nil [39715 39847])
-            ("auth-source-netrc-parse-next-interesting@save-match-data" function (:arguments ("fn")) nil [39848 40161])
-            ("ghub" package nil nil [40169 40184])
-            ("ghub-graphql" include nil nil [40185 40208]))          
-      :file "ghub.el"
-      :pointmax 40231
-      :fsize 40234
-      :lastmodtime '(23534 42928 0 0)
-      :unmatched-syntax '((close-paren 2348 . 2349) (symbol 2311 . 2328) (open-paren 2310 . 2311)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("dash" include nil nil [820 835])
-            ("ghub" include nil nil [836 851])
-            ("graphql" include nil nil [852 870])
-            ("treepy" include nil nil [871 888])
-            ("subr-x" include nil nil [911 928])
-            ("cl-defun" code nil nil [940 1877])
-            ("cl-defun" code nil nil [1879 2150])
-            ("cl-defun" code nil nil [2152 2598])
-            ("ghub-fetch-repository" variable
-               (:constant-flag t
-                :default-value (quote (query (repository [(owner $owner String!) (name $name String!)] name id createdAt updatedAt nameWithOwner description (defaultBranchRef name) isArchived isFork isLocked isMirror isPrivate hasIssuesEnabled hasWikiEnabled (licenseInfo name) (stargazers totalCount) (watchers totalCount) (assignableUsers [(:edges t)] id login name) (issues [(:edges t) (:singular issue number) (orderBy ((field . UPDATED_AT) (direction . DESC)))] number state (author login) title createdAt updatedAt closedAt locked (milestone id) body (assignees [(:edges t)] id) (comments [(:edges t)] databaseId (author login) createdAt updatedAt body) (labels [(:edges t)] id)) (labels [(:edges t) (:singular label id)] id name color description) (pullRequests [(:edges t) (:singular pullRequest number) (orderBy ((field . UPDATED_AT) (direction . DESC)))] number state (author login) title createdAt updatedAt closedAt mergedAt locked maintainerCanModify isCrossRepository (milestone id) body (baseRef name (repository nameWithOwner)) (headRef name (repository (owner login) nameWithOwner)) (assignees [(:edges t)] id) (comments [(:edges t)] databaseId (author login) createdAt updatedAt body) (labels [(:edges t)] id))))))
-                nil [2618 5427])
-            ("cl-defun" code nil nil [5429 6145])
-            ("cl-defun" code nil nil [6147 6975])
-            ("cl-defun" code nil nil [6977 7836])
-            ("cl-defstruct" code nil nil [7852 8130])
-            ("cl-defun" code nil nil [8132 9184])
-            ("cl-defun" code nil nil [9186 9695])
-            ("ghub--graphql-prepare-query" function (:arguments ("query" "lineage" "cursor")) nil [9697 11392])
-            ("ghub--graphql-handle-response" function (:arguments ("status" "req")) nil [11394 12473])
-            ("ghub--graphql-walk-response" function (:arguments ("loc" "data" "req")) nil [12475 14271])
-            ("ghub--graphql-lineage" function (:arguments ("loc")) nil [14273 14444])
-            ("ghub--graphql-narrow-data" function (:arguments ("data" "lineage")) nil [14446 14700])
-            ("ghub--graphql-narrow-query" function (:arguments ("query" "lineage" "cursor")) nil [14702 16182])
-            ("ghub--graphql-encode" function (:arguments ("g")) nil [16184 16835])
-            ("ghub--alist-zip" function (:arguments ("root")) nil [16837 17043])
-            ("ghub-graphql" package nil nil [17051 17074]))          
-      :file "ghub-graphql.el"
-      :pointmax 17105
-      :fsize 17104
-      :lastmodtime '(23534 42928 0 0)
-      :unmatched-syntax '((close-paren 928 . 929) (symbol 891 . 908) (open-paren 890 . 891))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!ghub-20181112.1755!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041git-commit-20181110.1201\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041git-commit-20181110.1201\041semantic.cache"
deleted file mode 100644
index aa124e3..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041git-commit-20181110.1201\041semantic.cache"
+++ /dev/null
@@ -1,189 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("dash" include nil nil [5152 5167])
-            ("log-edit" include nil nil [5168 5187])
-            ("magit-git" include nil nil [5188 5214])
-            ("magit-utils" include nil nil [5215 5243])
-            ("ring" include nil nil [5244 5259])
-            ("server" include nil nil [5260 5277])
-            ("with-editor" include nil nil [5278 5300])
-            ("recentf" include nil nil [5321 5339])
-            ("diff-default-read-only" variable nil nil [5361 5392])
-            ("flyspell-generic-check-word-predicate" variable nil nil [5393 5439])
-            ("font-lock-beg" variable nil nil [5440 5462])
-            ("font-lock-end" variable nil nil [5463 5485])
-            ("declare-function" code nil nil [5487 5555])
-            ("declare-function" code nil nil [5556 5619])
-            ("declare-function" code nil nil [5620 5727])
-            ("git-commit" customgroup (:user-visible-flag t) nil [5757 5906])
-            ("define-minor-mode" code nil nil [5923 6653])
-            ("git-commit-major-mode" variable (:default-value (quote text-mode)) nil [6655 6940])
-            ("git-commit-setup-hook" variable (:default-value (quote (git-commit-save-message git-commit-setup-changelog-support git-commit-turn-on-auto-fill git-commit-propertize-diff bug-reference-mode with-editor-usage-message))) nil [6942 7582])
-            ("git-commit-post-finish-hook" variable nil nil [7584 8318])
-            ("git-commit-finish-query-functions" variable (:default-value (quote (git-commit-check-style-conventions))) nil [8320 8996])
-            ("git-commit-style-convention-checks" variable (:default-value (quote (non-empty-second-line))) nil [8998 9414])
-            ("git-commit-summary-max-length" variable (:default-value 68) nil [9416 9927])
-            ("git-commit-fill-column" variable nil nil [9929 10588])
-            ("make-obsolete-variable" code nil nil [10590 10695])
-            ("git-commit-known-pseudo-headers" variable (:default-value (quote ("Signed-off-by" "Acked-by" "Modified-by" "Cc" "Suggested-by" "Reported-by" "Tested-by" "Reviewed-by"))) nil [10697 11011])
-            ("git-commit-faces" customgroup (:user-visible-flag t) nil [11025 11170])
-            ("git-commit-summary" variable
-               (:default-value (quote ((t :inherit font-lock-type-face)))
-                :type "face")
-                nil [11172 11315])
-            ("git-commit-overlong-summary" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [11317 11487])
-            ("git-commit-nonempty-second-line" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [11489 11670])
-            ("git-commit-note" variable
-               (:default-value (quote ((t :inherit font-lock-string-face)))
-                :type "face")
-                nil [11672 11808])
-            ("git-commit-pseudo-header" variable
-               (:default-value (quote ((t :inherit font-lock-string-face)))
-                :type "face")
-                nil [11810 11964])
-            ("git-commit-known-pseudo-header" variable
-               (:default-value (quote ((t :inherit font-lock-keyword-face)))
-                :type "face")
-                nil [11966 12149])
-            ("git-commit-comment-branch-local" variable
-               (:default-value (if (featurep (quote magit)) (quote ((t :inherit magit-branch-local))) (quote ((t :inherit font-lock-variable-name-face))))
-                :type "face")
-                nil [12151 12404])
-            ("define-obsolete-face-alias" code nil nil [12406 12516])
-            ("git-commit-comment-branch-remote" variable
-               (:default-value (if (featurep (quote magit)) (quote ((t :inherit magit-branch-remote))) (quote ((t :inherit font-lock-variable-name-face))))
-                :type "face")
-                nil [12518 12815])
-            ("git-commit-comment-detached" variable
-               (:default-value (quote ((t :inherit git-commit-comment-branch-local)))
-                :type "face")
-                nil [12817 12993])
-            ("git-commit-comment-heading" variable
-               (:default-value (quote ((t :inherit git-commit-known-pseudo-header)))
-                :type "face")
-                nil [12995 13162])
-            ("git-commit-comment-file" variable
-               (:default-value (quote ((t :inherit git-commit-pseudo-header)))
-                :type "face")
-                nil [13164 13324])
-            ("git-commit-comment-action" variable
-               (:default-value (quote ((t :inherit bold)))
-                :type "face")
-                nil [13326 13465])
-            ("git-commit-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (cond ((featurep (quote jkl)) (define-key map (kbd "C-M-i") (quote git-commit-prev-message)) (define-key map (kbd "C-M-k") (quote git-commit-next-message))) (t (define-key map (kbd "M-p") (quote git-commit-prev-message)) (define-key map (kbd "M-n") (quote git-commit-next-message)) (define-key map (kbd "C-c C-x a") (quote git-commit-ack)) (define-key map (kbd "C-c C-x i") (quote git-commit-suggested)) (define-key map (kbd "C-c C-x m") (quote git-commit-modified)) (define-key map (kbd "C-c C-x o") (quote git-commit-cc)) (define-key map (kbd "C-c C-x p") (quote git-commit-reported)) (define-key map (kbd "C-c C-x r") (quote git-commit-review)) (define-key map (kbd "C-c C-x s") (quote git-commit-signoff)) (define-key map (kbd "C-c C-x t") (quote git-commit-test)))) (define-key map (kbd "C-c C-a") (quote git-commit-ack)) (define-key map (kbd "C-c C-i") (quote git-commit-suggested)) (define-key map (kbd "C-c C-m") (quote git-commit-modified)) (define-key map (kbd "C-c C-o") (quote git-commit-cc)) (define-key map (kbd "C-c C-p") (quote git-commit-reported)) (define-key map (kbd "C-c C-r") (quote git-commit-review)) (define-key map (kbd "C-c C-s") (quote git-commit-signoff)) (define-key map (kbd "C-c C-t") (quote git-commit-test)) (define-key map (kbd "C-c M-s") (quote git-commit-save-message)) map)) nil [13479 14972])
-            ("easymenu" include nil nil [14984 15003])
-            ("easy-menu-define" code nil nil [15004 15985])
-            ("git-commit-filename-regexp" variable
-               (:constant-flag t
-                :default-value "/\\(\\(\\(COMMIT\\|NOTES\\|PULLREQ\\|TAG\\)_EDIT\\|MERGE_\\|\\)MSG\\|\\(BRANCH\\|EDIT\\)_DESCRIPTION\\)\\'")
-                nil [16013 16163])
-            ("eval-after-load" code nil nil [16165 16252])
-            ("add-to-list" code nil nil [16254 16333])
-            ("git-commit-setup-font-lock-in-buffer" function nil nil [16335 16511])
-            ("add-hook" code nil nil [16513 16591])
-            ("git-commit-setup-check-buffer" function nil nil [16608 16767])
-            ("git-commit-mode" variable nil nil [16769 16793])
-            ("git-commit-file-not-found" function nil nil [16795 17934])
-            ("when" code nil nil [17936 18043])
-            ("git-commit-setup" function nil nil [18060 20968])
-            ("git-commit-run-post-finish-hook" function (:arguments ("previous")) nil [20970 21506])
-            ("define-minor-mode" code nil nil [21508 21749])
-            ("put" code nil nil [21751 21792])
-            ("git-commit-setup-changelog-support" function nil nil [21794 21951])
-            ("git-commit-turn-on-auto-fill" function nil nil [21953 22398])
-            ("git-commit-turn-on-flyspell" function nil nil [22400 23054])
-            ("git-commit-flyspell-verify" function nil nil [23056 23177])
-            ("git-commit-finish-query-functions" function (:arguments ("force")) nil [23179 23309])
-            ("git-commit-check-style-conventions" function (:arguments ("force")) nil [23311 24304])
-            ("git-commit-cancel-message" function nil nil [24306 24523])
-            ("git-commit-prev-message" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [24538 25179])
-            ("git-commit-next-message" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25181 25400])
-            ("git-commit-save-message" function (:user-visible-flag t) nil [25402 25645])
-            ("git-commit-buffer-message" function nil nil [25647 26420])
-            ("git-commit-ack" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [26435 26629])
-            ("git-commit-modified" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [26631 26828])
-            ("git-commit-review" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [26830 27029])
-            ("git-commit-signoff" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27031 27208])
-            ("git-commit-test" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27210 27403])
-            ("git-commit-cc" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27405 27586])
-            ("git-commit-reported" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27588 27786])
-            ("git-commit-suggested" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27788 27990])
-            ("git-commit-self-ident" function nil nil [27992 28473])
-            ("git-commit-read-ident" function nil nil [28475 28571])
-            ("git-commit-insert-header" function (:arguments ("header" "name" "email")) nil [28573 29177])
-            ("git-commit-summary-regexp" function nil nil [29194 29528])
-            ("git-commit-extend-region-summary-line" function nil nil [29530 30150])
-            ("defvar-local" code nil nil [30152 30201])
-            ("git-commit-comment-headings" variable
-               (:constant-flag t
-                :default-value (quote ("Changes to be committed:" "Untracked files:" "Changed but not updated:" "Changes not staged for commit:" "Unmerged paths:" "Author:" "Date:")))
-                nil [30203 30412])
-            ("git-commit-font-lock-keywords-1" variable
-               (:constant-flag t
-                :default-value (quote ((eval \` ((\, (format "^\\(%s:\\)\\( .*\\)" (regexp-opt git-commit-known-pseudo-headers))) (1 (quote git-commit-known-pseudo-header)) (2 (quote git-commit-pseudo-header)))) ("^[-a-zA-Z]+: [^<]+? <[^>]+>" (0 (quote git-commit-pseudo-header))) (eval \` ((\, (git-commit-summary-regexp)) (1 (quote git-commit-summary)))) ("\\[.+?\\]" (0 (quote git-commit-note) t)) (eval \` ((\, (git-commit-summary-regexp)) (2 (quote git-commit-overlong-summary) t t) (3 (quote git-commit-nonempty-second-line) t t))))))
-                nil [30414 31149])
-            ("git-commit-font-lock-keywords-2" variable
-               (:constant-flag t
-                :default-value (\` ((\,@ git-commit-font-lock-keywords-1) (eval \` ((\, (format "^%s.*" comment-start)) (0 (quote font-lock-comment-face)))) (eval \` ((\, (format "^%s On branch \\(.*\\)" comment-start)) (1 (quote git-commit-comment-branch-local) t))) (eval \` ((\, (format "^%s \\(HEAD\\) detached at" comment-start)) (1 (quote git-commit-comment-detached) t))) (eval \` ((\, (format "^%s %s" comment-start (regexp-opt git-commit-comment-headings t))) (1 (quote git-commit-comment-heading) t))) (eval \` ((\, (format "^%s	\\(?:\\([^:
-]+\\):\\s-+\\)?\\(.*\\)" comment-start)) (1 (quote git-commit-comment-action) t t) (2 (quote git-commit-comment-file) t))))))
-                nil [31151 31915])
-            ("git-commit-font-lock-keywords-3" variable
-               (:constant-flag t
-                :default-value (\` ((\,@ git-commit-font-lock-keywords-2) (eval \` ((\, (format "^%s Your branch is \\(?:ahead\\|behind\\) of '%s' by \\([0-9]*\\)" comment-start git-commit--branch-name-regexp)) (1 (quote git-commit-comment-branch-local) t) (2 (quote git-commit-comment-branch-remote) t) (3 (quote bold) t))) (eval \` ((\, (format "^%s Your branch \\(?:is up-to-date with\\|and\\) '%s'" comment-start git-commit--branch-name-regexp)) (1 (quote git-commit-comment-branch-local) t) (2 (quote git-commit-comment-branch-remote) t))) (eval \` ((\, (format "^%s and have \\([0-9]*\\) and \\([0-9]*\\) commits each" comment-start)) (1 (quote bold) t) (2 (quote bold) t))))))
-                nil [31917 33016])
-            ("git-commit-font-lock-keywords" variable (:default-value git-commit-font-lock-keywords-2) nil [33018 33132])
-            ("git-commit-setup-font-lock" function nil nil [33134 35277])
-            ("git-commit-propertize-diff" function nil nil [35279 36453])
-            ("define-derived-mode" code nil nil [36476 36918])
-            ("git-commit-elisp-text-mode-keywords" variable (:default-value (\` (((\, (concat "[`‘]\\(\\(?:\\sw\\|\\s_\\|\\\\.\\)" lisp-mode-symbol-regexp "\\)['’]")) (1 font-lock-constant-face prepend)) ("\"[^\"]*\"" (0 font-lock-string-face prepend))))) nil [36920 37160])
-            ("git-commit" package nil nil [37168 37189]))          
-      :file "git-commit.el"
-      :pointmax 37218
-      :fsize 37221
-      :lastmodtime '(23534 42925 0 0)
-      :unmatched-syntax '((close-paren 5339 . 5340) (symbol 5303 . 5320) (open-paren 5302 . 5303))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!git-commit-20181110.1201!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041git-commit-20181116.1408\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041git-commit-20181116.1408\041semantic.cache"
deleted file mode 100644
index c7e5ed6..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041git-commit-20181116.1408\041semantic.cache"
+++ /dev/null
@@ -1,197 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "git-commit-autoloads.el"
-      :pointmax 359
-      :fsize 1577
-      :lastmodtime '(23536 533 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("dash" include nil nil [5152 5167])
-            ("log-edit" include nil nil [5168 5187])
-            ("magit-git" include nil nil [5188 5214])
-            ("magit-utils" include nil nil [5215 5243])
-            ("ring" include nil nil [5244 5259])
-            ("server" include nil nil [5260 5277])
-            ("with-editor" include nil nil [5278 5300])
-            ("recentf" include nil nil [5321 5339])
-            ("diff-default-read-only" variable nil nil [5361 5392])
-            ("flyspell-generic-check-word-predicate" variable nil nil [5393 5439])
-            ("font-lock-beg" variable nil nil [5440 5462])
-            ("font-lock-end" variable nil nil [5463 5485])
-            ("declare-function" code nil nil [5487 5555])
-            ("declare-function" code nil nil [5556 5619])
-            ("declare-function" code nil nil [5620 5727])
-            ("git-commit" customgroup (:user-visible-flag t) nil [5757 5906])
-            ("define-minor-mode" code nil nil [5923 6653])
-            ("git-commit-major-mode" variable (:default-value (quote text-mode)) nil [6655 6940])
-            ("git-commit-setup-hook" variable (:default-value (quote (git-commit-save-message git-commit-setup-changelog-support git-commit-turn-on-auto-fill git-commit-propertize-diff bug-reference-mode with-editor-usage-message))) nil [6942 7582])
-            ("git-commit-post-finish-hook" variable nil nil [7584 8318])
-            ("git-commit-finish-query-functions" variable (:default-value (quote (git-commit-check-style-conventions))) nil [8320 8996])
-            ("git-commit-style-convention-checks" variable (:default-value (quote (non-empty-second-line))) nil [8998 9414])
-            ("git-commit-summary-max-length" variable (:default-value 68) nil [9416 9927])
-            ("git-commit-fill-column" variable nil nil [9929 10588])
-            ("make-obsolete-variable" code nil nil [10590 10695])
-            ("git-commit-known-pseudo-headers" variable (:default-value (quote ("Signed-off-by" "Acked-by" "Modified-by" "Cc" "Suggested-by" "Reported-by" "Tested-by" "Reviewed-by"))) nil [10697 11011])
-            ("git-commit-faces" customgroup (:user-visible-flag t) nil [11025 11170])
-            ("git-commit-summary" variable
-               (:default-value (quote ((t :inherit font-lock-type-face)))
-                :type "face")
-                nil [11172 11315])
-            ("git-commit-overlong-summary" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [11317 11487])
-            ("git-commit-nonempty-second-line" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [11489 11670])
-            ("git-commit-note" variable
-               (:default-value (quote ((t :inherit font-lock-string-face)))
-                :type "face")
-                nil [11672 11808])
-            ("git-commit-pseudo-header" variable
-               (:default-value (quote ((t :inherit font-lock-string-face)))
-                :type "face")
-                nil [11810 11964])
-            ("git-commit-known-pseudo-header" variable
-               (:default-value (quote ((t :inherit font-lock-keyword-face)))
-                :type "face")
-                nil [11966 12149])
-            ("git-commit-comment-branch-local" variable
-               (:default-value (if (featurep (quote magit)) (quote ((t :inherit magit-branch-local))) (quote ((t :inherit font-lock-variable-name-face))))
-                :type "face")
-                nil [12151 12404])
-            ("define-obsolete-face-alias" code nil nil [12406 12516])
-            ("git-commit-comment-branch-remote" variable
-               (:default-value (if (featurep (quote magit)) (quote ((t :inherit magit-branch-remote))) (quote ((t :inherit font-lock-variable-name-face))))
-                :type "face")
-                nil [12518 12815])
-            ("git-commit-comment-detached" variable
-               (:default-value (quote ((t :inherit git-commit-comment-branch-local)))
-                :type "face")
-                nil [12817 12993])
-            ("git-commit-comment-heading" variable
-               (:default-value (quote ((t :inherit git-commit-known-pseudo-header)))
-                :type "face")
-                nil [12995 13162])
-            ("git-commit-comment-file" variable
-               (:default-value (quote ((t :inherit git-commit-pseudo-header)))
-                :type "face")
-                nil [13164 13324])
-            ("git-commit-comment-action" variable
-               (:default-value (quote ((t :inherit bold)))
-                :type "face")
-                nil [13326 13465])
-            ("git-commit-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (cond ((featurep (quote jkl)) (define-key map (kbd "C-M-i") (quote git-commit-prev-message)) (define-key map (kbd "C-M-k") (quote git-commit-next-message))) (t (define-key map (kbd "M-p") (quote git-commit-prev-message)) (define-key map (kbd "M-n") (quote git-commit-next-message)) (define-key map (kbd "C-c C-x a") (quote git-commit-ack)) (define-key map (kbd "C-c C-x i") (quote git-commit-suggested)) (define-key map (kbd "C-c C-x m") (quote git-commit-modified)) (define-key map (kbd "C-c C-x o") (quote git-commit-cc)) (define-key map (kbd "C-c C-x p") (quote git-commit-reported)) (define-key map (kbd "C-c C-x r") (quote git-commit-review)) (define-key map (kbd "C-c C-x s") (quote git-commit-signoff)) (define-key map (kbd "C-c C-x t") (quote git-commit-test)))) (define-key map (kbd "C-c C-a") (quote git-commit-ack)) (define-key map (kbd "C-c C-i") (quote git-commit-suggested)) (define-key map (kbd "C-c C-m") (quote git-commit-modified)) (define-key map (kbd "C-c C-o") (quote git-commit-cc)) (define-key map (kbd "C-c C-p") (quote git-commit-reported)) (define-key map (kbd "C-c C-r") (quote git-commit-review)) (define-key map (kbd "C-c C-s") (quote git-commit-signoff)) (define-key map (kbd "C-c C-t") (quote git-commit-test)) (define-key map (kbd "C-c M-s") (quote git-commit-save-message)) map)) nil [13479 14972])
-            ("easymenu" include nil nil [14984 15003])
-            ("easy-menu-define" code nil nil [15004 15985])
-            ("git-commit-filename-regexp" variable
-               (:constant-flag t
-                :default-value "/\\(\\(\\(COMMIT\\|NOTES\\|PULLREQ\\|TAG\\)_EDIT\\|MERGE_\\|\\)MSG\\|\\(BRANCH\\|EDIT\\)_DESCRIPTION\\)\\'")
-                nil [16013 16163])
-            ("eval-after-load" code nil nil [16165 16252])
-            ("add-to-list" code nil nil [16254 16333])
-            ("git-commit-setup-font-lock-in-buffer" function nil nil [16335 16511])
-            ("add-hook" code nil nil [16513 16591])
-            ("git-commit-setup-check-buffer" function nil nil [16608 16767])
-            ("git-commit-mode" variable nil nil [16769 16793])
-            ("git-commit-file-not-found" function nil nil [16795 17934])
-            ("when" code nil nil [17936 18043])
-            ("git-commit-setup" function nil nil [18060 20968])
-            ("git-commit-run-post-finish-hook" function (:arguments ("previous")) nil [20970 21506])
-            ("define-minor-mode" code nil nil [21508 21749])
-            ("put" code nil nil [21751 21792])
-            ("git-commit-setup-changelog-support" function nil nil [21794 21951])
-            ("git-commit-turn-on-auto-fill" function nil nil [21953 22398])
-            ("git-commit-turn-on-flyspell" function nil nil [22400 23054])
-            ("git-commit-flyspell-verify" function nil nil [23056 23177])
-            ("git-commit-finish-query-functions" function (:arguments ("force")) nil [23179 23309])
-            ("git-commit-check-style-conventions" function (:arguments ("force")) nil [23311 24304])
-            ("git-commit-cancel-message" function nil nil [24306 24523])
-            ("git-commit-prev-message" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [24538 25179])
-            ("git-commit-next-message" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [25181 25400])
-            ("git-commit-save-message" function (:user-visible-flag t) nil [25402 25645])
-            ("git-commit-buffer-message" function nil nil [25647 26420])
-            ("git-commit-ack" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [26435 26629])
-            ("git-commit-modified" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [26631 26828])
-            ("git-commit-review" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [26830 27029])
-            ("git-commit-signoff" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27031 27208])
-            ("git-commit-test" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27210 27403])
-            ("git-commit-cc" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27405 27586])
-            ("git-commit-reported" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27588 27786])
-            ("git-commit-suggested" function
-               (:user-visible-flag t
-                :arguments ("name" "mail"))
-                nil [27788 27990])
-            ("git-commit-self-ident" function nil nil [27992 28473])
-            ("git-commit-read-ident" function nil nil [28475 28571])
-            ("git-commit-insert-header" function (:arguments ("header" "name" "email")) nil [28573 29177])
-            ("git-commit-summary-regexp" function nil nil [29194 29528])
-            ("git-commit-extend-region-summary-line" function nil nil [29530 30150])
-            ("defvar-local" code nil nil [30152 30201])
-            ("git-commit-comment-headings" variable
-               (:constant-flag t
-                :default-value (quote ("Changes to be committed:" "Untracked files:" "Changed but not updated:" "Changes not staged for commit:" "Unmerged paths:" "Author:" "Date:")))
-                nil [30203 30412])
-            ("git-commit-font-lock-keywords-1" variable
-               (:constant-flag t
-                :default-value (quote ((eval \` ((\, (format "^\\(%s:\\)\\( .*\\)" (regexp-opt git-commit-known-pseudo-headers))) (1 (quote git-commit-known-pseudo-header)) (2 (quote git-commit-pseudo-header)))) ("^[-a-zA-Z]+: [^<]+? <[^>]+>" (0 (quote git-commit-pseudo-header))) (eval \` ((\, (git-commit-summary-regexp)) (1 (quote git-commit-summary)))) ("\\[.+?\\]" (0 (quote git-commit-note) t)) (eval \` ((\, (git-commit-summary-regexp)) (2 (quote git-commit-overlong-summary) t t) (3 (quote git-commit-nonempty-second-line) t t))))))
-                nil [30414 31149])
-            ("git-commit-font-lock-keywords-2" variable
-               (:constant-flag t
-                :default-value (\` ((\,@ git-commit-font-lock-keywords-1) (eval \` ((\, (format "^%s.*" comment-start)) (0 (quote font-lock-comment-face)))) (eval \` ((\, (format "^%s On branch \\(.*\\)" comment-start)) (1 (quote git-commit-comment-branch-local) t))) (eval \` ((\, (format "^%s \\(HEAD\\) detached at" comment-start)) (1 (quote git-commit-comment-detached) t))) (eval \` ((\, (format "^%s %s" comment-start (regexp-opt git-commit-comment-headings t))) (1 (quote git-commit-comment-heading) t))) (eval \` ((\, (format "^%s	\\(?:\\([^:
-]+\\):\\s-+\\)?\\(.*\\)" comment-start)) (1 (quote git-commit-comment-action) t t) (2 (quote git-commit-comment-file) t))))))
-                nil [31151 31915])
-            ("git-commit-font-lock-keywords-3" variable
-               (:constant-flag t
-                :default-value (\` ((\,@ git-commit-font-lock-keywords-2) (eval \` ((\, (format "^%s Your branch is \\(?:ahead\\|behind\\) of '%s' by \\([0-9]*\\)" comment-start git-commit--branch-name-regexp)) (1 (quote git-commit-comment-branch-local) t) (2 (quote git-commit-comment-branch-remote) t) (3 (quote bold) t))) (eval \` ((\, (format "^%s Your branch \\(?:is up-to-date with\\|and\\) '%s'" comment-start git-commit--branch-name-regexp)) (1 (quote git-commit-comment-branch-local) t) (2 (quote git-commit-comment-branch-remote) t))) (eval \` ((\, (format "^%s and have \\([0-9]*\\) and \\([0-9]*\\) commits each" comment-start)) (1 (quote bold) t) (2 (quote bold) t))))))
-                nil [31917 33016])
-            ("git-commit-font-lock-keywords" variable (:default-value git-commit-font-lock-keywords-2) nil [33018 33132])
-            ("git-commit-setup-font-lock" function nil nil [33134 35277])
-            ("git-commit-propertize-diff" function nil nil [35279 36453])
-            ("define-derived-mode" code nil nil [36476 36918])
-            ("git-commit-elisp-text-mode-keywords" variable (:default-value (\` (((\, (concat "[`‘]\\(\\(?:\\sw\\|\\s_\\|\\\\.\\)" lisp-mode-symbol-regexp "\\)['’]")) (1 font-lock-constant-face prepend)) ("\"[^\"]*\"" (0 font-lock-string-face prepend))))) nil [36920 37160])
-            ("git-commit" package nil nil [37168 37189]))          
-      :file "git-commit.el"
-      :pointmax 37218
-      :fsize 37221
-      :lastmodtime '(23536 532 0 0)
-      :unmatched-syntax '((close-paren 5339 . 5340) (symbol 5303 . 5320) (open-paren 5302 . 5303))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!git-commit-20181116.1408!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041graphql-20180912.31\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041graphql-20180912.31\041semantic.cache"
deleted file mode 100644
index 359cc1e..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041graphql-20180912.31\041semantic.cache"
+++ /dev/null
@@ -1,30 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("pcase" include nil nil [1189 1205])
-            ("graphql--encode-object" function (:arguments ("obj")) nil [1207 1486])
-            ("graphql--encode-argument-spec" function (:arguments ("spec")) nil [1488 1640])
-            ("graphql--encode-argument" function (:arguments ("key" "value")) nil [1642 1793])
-            ("graphql--encode-argument-value" function (:arguments ("value")) nil [1795 2527])
-            ("graphql--encode-parameter-spec" function (:arguments ("spec")) nil [2529 3627])
-            ("graphql--encode-parameter" function (:arguments ("name" "type" "required" "default")) nil [3629 4091])
-            ("graphql--get-keys" function (:arguments ("g")) nil [4093 4593])
-            ("graphql-encode" function (:arguments ("g")) nil [4595 5462])
-            ("graphql-simplify-response-edges" function (:arguments ("data")) nil [5464 6253])
-            ("graphql--genform-operation" function (:arguments ("args" "kind")) nil [6255 6927])
-            ("graphql-query" function (:arguments ("args")) nil [6929 7150])
-            ("graphql-mutation" function (:arguments ("args")) nil [7152 7382])
-            ("graphql" package nil nil [7384 7402]))          
-      :file "graphql.el"
-      :pointmax 7428
-      :fsize 7427
-      :lastmodtime '(23534 42927 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!graphql-20180912.31!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041guide-key-20150108.635\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041guide-key-20150108.635\041semantic.cache"
deleted file mode 100644
index db09c48..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041guide-key-20150108.635\041semantic.cache"
+++ /dev/null
@@ -1,96 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "guide-key-autoloads.el"
-      :pointmax 357
-      :fsize 1199
-      :lastmodtime '(23535 56420 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("face-remap" include nil nil [8299 8320])
-            ("cl" include nil nil [8283 8296])
-            ("dash" include nil nil [8323 8338])
-            ("popwin" include nil nil [8339 8356])
-            ("s" include nil nil [8357 8369])
-            ("guide-key" customgroup (:user-visible-flag t) nil [8385 8470])
-            ("guide-key/guide-key-sequence" variable (:user-visible-flag t) nil [8472 9201])
-            ("guide-key/polling-time" variable
-               (:user-visible-flag t
-                :default-value 0.1)
-                nil [9203 9326])
-            ("guide-key/idle-delay" variable
-               (:user-visible-flag t
-                :default-value 1.0)
-                nil [9328 9455])
-            ("guide-key/highlight-prefix-regexp" variable
-               (:user-visible-flag t
-                :default-value "prefix")
-                nil [9457 9580])
-            ("guide-key/highlight-command-regexp" variable (:user-visible-flag t) nil [9582 10496])
-            ("guide-key/align-command-by-space-flag" variable (:user-visible-flag t) nil [10498 10634])
-            ("guide-key/popup-window-position" variable
-               (:user-visible-flag t
-                :default-value (quote right))
-                nil [10636 10890])
-            ("guide-key/text-scale-amount" variable (:user-visible-flag t) nil [10892 11187])
-            ("guide-key/recursive-key-sequence-flag" variable (:user-visible-flag t) nil [11189 11506])
-            ("guide-key/prefix-command-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "cyan")) (((class color) (background light)) (:foreground "blue"))))
-                :type "face")
-                nil [11508 11743])
-            ("guide-key/highlight-command-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "yellow")) (((class color) (background light)) (:foreground "orange red"))))
-                :type "face")
-                nil [11745 11984])
-            ("guide-key/key-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "red")) (((class color) (background light)) (:foreground "dark green"))))
-                :type "face")
-                nil [11986 12219])
-            ("guide-key/polling-timer" variable nil nil [12244 12330])
-            ("guide-key/idle-timer" variable nil nil [12332 12420])
-            ("guide-key/guide-buffer-name" variable (:default-value " *guide-key*") nil [12422 12506])
-            ("guide-key/last-key-sequence-vector" variable nil nil [12508 12609])
-            ("define-minor-mode" code nil nil [12844 13234])
-            ("guide-key/popup-function" function (:arguments ("input")) nil [13236 14017])
-            ("guide-key/polling-function" function nil nil [14043 14435])
-            ("guide-key/popup-guide-buffer" function nil nil [14437 15079])
-            ("guide-key/popup-window-size" function (:arguments ("horizontal")) nil [15081 15702])
-            ("guide-key/close-guide-buffer" function nil nil [15704 15911])
-            ("add-hook" code nil nil [15913 15971])
-            ("guide-key/update-guide-buffer-p" function (:arguments ("key-seq")) nil [15973 16129])
-            ("guide-key/popup-guide-buffer-p" function (:arguments ("key-seq")) nil [16131 16502])
-            ("guide-key/buffer-key-sequences" function nil nil [16504 17225])
-            ("guide-key/vbutlast" function (:arguments ("vec" "n")) nil [17227 17378])
-            ("guide-key/convert-key-sequence-to-vector" function (:arguments ("key-seq")) nil [17380 17603])
-            ("guide-key/turn-on-idle-timer" function nil nil [17605 17854])
-            ("guide-key/turn-off-idle-timer" function nil nil [17856 18029])
-            ("guide-key/turn-on-timer" function nil nil [18032 18247])
-            ("guide-key/turn-off-timer" function nil nil [18249 18392])
-            ("guide-key/format-guide-buffer" function (:arguments ("key-seq" "regexp")) nil [18394 19688])
-            ("guide-key/insert-following-key" function (:arguments ("fkey-str-list" "horizontal")) nil [19690 20644])
-            ("guide-key/fontified-string" function (:arguments ("key" "space" "command" "regexp")) nil [20646 21181])
-            ("guide-key/get-highlight-face" function (:arguments ("string" "regexp")) nil [21183 22513])
-            ("guide-key/buffer-max-width" function nil nil [22515 22731])
-            ("guide-key/add-local-guide-key-sequence" function (:arguments ("key")) nil [22733 22857])
-            ("guide-key/add-local-highlight-command-regexp" function (:arguments ("regexp")) nil [22859 23270])
-            ("this-command-keys" function (:arguments ("after" "key-chord-hack" "disable")) nil [23291 23911])
-            ("this-command-keys-vector" function (:arguments ("after" "key-chord-hack" "disable")) nil [23913 24554])
-            ("guide-key/key-chord-hack-on" function (:user-visible-flag t) nil [24556 24951])
-            ("guide-key/key-chord-hack-off" function (:user-visible-flag t) nil [24953 25234])
-            ("guide-key/message-events" function nil nil [25246 25619])
-            ("guide-key" package nil nil [25701 25721]))          
-      :file "guide-key.el"
-      :pointmax 25749
-      :fsize 25748
-      :lastmodtime '(23535 56420 0 0)
-      :unmatched-syntax '((close-paren 8320 . 8321) (symbol 8263 . 8280) (open-paren 8262 . 8263))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!guide-key-20150108.635!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041helm-20181117.731\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041helm-20181117.731\041semantic.cache"
deleted file mode 100644
index cc26bcf..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041helm-20181117.731\041semantic.cache"
+++ /dev/null
@@ -1,4285 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "helm-autoloads.el"
-      :pointmax 347
-      :fsize 34570
-      :lastmodtime '(23537 22014 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("declare-function" code nil nil [839 909])
-            ("when" code nil nil [910 1034])
-            ("helm-config" customgroup (:user-visible-flag t) nil [1038 1116])
-            ("helm-command-prefix-key" variable (:default-value "C-x c") nil [1118 1604])
-            ("helm-minibuffer-history-key" variable (:default-value "C-r") nil [1606 2661])
-            ("helm-command-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map (kbd "a") (quote helm-apropos)) (define-key map (kbd "e") (quote helm-etags-select)) (define-key map (kbd "l") (quote helm-locate)) (define-key map (kbd "s") (quote helm-surfraw)) (define-key map (kbd "r") (quote helm-regexp)) (define-key map (kbd "m") (quote helm-man-woman)) (define-key map (kbd "t") (quote helm-top)) (define-key map (kbd "/") (quote helm-find)) (define-key map (kbd "i") (quote helm-semantic-or-imenu)) (define-key map (kbd "I") (quote helm-imenu-in-all-buffers)) (define-key map (kbd "<tab>") (quote helm-lisp-completion-at-point)) (define-key map (kbd "p") (quote helm-list-emacs-process)) (define-key map (kbd "C-x r b") (quote helm-filtered-bookmarks)) (define-key map (kbd "M-y") (quote helm-show-kill-ring)) (define-key map (kbd "C-c <SPC>") (quote helm-all-mark-rings)) (define-key map (kbd "C-x C-f") (quote helm-find-files)) (define-key map (kbd "f") (quote helm-multi-files)) (define-key map (kbd "C-:") (quote helm-eval-expression-with-eldoc)) (define-key map (kbd "C-,") (quote helm-calcul-expression)) (define-key map (kbd "M-x") (quote helm-M-x)) (define-key map (kbd "M-s o") (quote helm-occur)) (define-key map (kbd "M-g a") (quote helm-do-grep-ag)) (define-key map (kbd "c") (quote helm-colors)) (define-key map (kbd "F") (quote helm-select-xfont)) (define-key map (kbd "8") (quote helm-ucs)) (define-key map (kbd "C-c f") (quote helm-recentf)) (define-key map (kbd "C-c g") (quote helm-google-suggest)) (define-key map (kbd "h i") (quote helm-info-at-point)) (define-key map (kbd "h r") (quote helm-info-emacs)) (define-key map (kbd "h g") (quote helm-info-gnus)) (define-key map (kbd "h h") (quote helm-documentation)) (define-key map (kbd "C-x C-b") (quote helm-buffers-list)) (define-key map (kbd "C-x r i") (quote helm-register)) (define-key map (kbd "C-c C-x") (quote helm-run-external-command)) (define-key map (kbd "b") (quote helm-resume)) (define-key map (kbd "M-g i") (quote helm-gid)) (define-key map (kbd "@") (quote helm-list-elisp-packages)) map)) nil [2689 4877])
-            ("helm-command-prefix" variable nil nil [4998 5026])
-            ("define-prefix-command" code nil nil [5027 5071])
-            ("fset" code nil nil [5072 5116])
-            ("setq" code nil nil [5117 5161])
-            ("helm-easymenu" include nil nil [5175 5199])
-            ("helm-configuration" function (:user-visible-flag t) nil [5218 5312])
-            ("cl-dolist" code nil nil [5329 6550])
-            ("load" code nil nil [6659 6688])
-            ("helm-config" package nil nil [6690 6712]))          
-      :file "helm-config.el"
-      :pointmax 6855
-      :fsize 6854
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [819 836])
-            ("bookmark" include nil nil [837 856])
-            ("helm" include nil nil [857 872])
-            ("helm-lib" include nil nil [873 892])
-            ("helm-help" include nil nil [893 913])
-            ("helm-types" include nil nil [914 935])
-            ("helm-utils" include nil nil [936 957])
-            ("helm-info" include nil nil [958 978])
-            ("helm-adaptive" include nil nil [979 1003])
-            ("helm-net" include nil nil [1004 1023])
-            ("declare-function" code nil nil [1025 1082])
-            ("declare-function" code nil nil [1083 1168])
-            ("helm-bookmark" customgroup (:user-visible-flag t) nil [1171 1259])
-            ("helm-bookmark-show-location" variable nil nil [1261 1387])
-            ("helm-bookmark-default-filtered-sources" variable (:default-value (append (quote (helm-source-bookmark-org helm-source-bookmark-files&dirs helm-source-bookmark-helm-find-files helm-source-bookmark-info helm-source-bookmark-gnus helm-source-bookmark-man helm-source-bookmark-images helm-source-bookmark-w3m)) (list (quote helm-source-bookmark-uncategorized) (quote helm-source-bookmark-set)))) nil [1389 1971])
-            ("helm-bookmark-info" variable
-               (:default-value (quote ((t (:foreground "green"))))
-                :type "face")
-                nil [1975 2119])
-            ("helm-bookmark-w3m" variable
-               (:default-value (quote ((t (:foreground "yellow"))))
-                :type "face")
-                nil [2121 2265])
-            ("helm-bookmark-gnus" variable
-               (:default-value (quote ((t (:foreground "magenta"))))
-                :type "face")
-                nil [2267 2388])
-            ("helm-bookmark-man" variable
-               (:default-value (quote ((t (:foreground "Orange4"))))
-                :type "face")
-                nil [2390 2515])
-            ("helm-bookmark-file" variable
-               (:default-value (quote ((t (:foreground "Deepskyblue2"))))
-                :type "face")
-                nil [2517 2643])
-            ("helm-bookmark-file-not-found" variable
-               (:default-value (quote ((t (:foreground "Slategray4"))))
-                :type "face")
-                nil [2645 2779])
-            ("helm-bookmark-directory" variable
-               (:default-value (quote ((t (:inherit helm-ff-directory))))
-                :type "face")
-                nil [2781 2912])
-            ("helm-bookmark-addressbook" variable
-               (:default-value (quote ((t (:foreground "tomato"))))
-                :type "face")
-                nil [2914 3048])
-            ("helm-bookmark-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "C-c o") (quote helm-bookmark-run-jump-other-window)) (define-key map (kbd "C-c C-o") (quote helm-bookmark-run-jump-other-frame)) (define-key map (kbd "C-d") (quote helm-bookmark-run-delete)) (define-key map (kbd "C-]") (quote helm-bookmark-toggle-filename)) (define-key map (kbd "M-e") (quote helm-bookmark-run-edit)) map)) nil [3052 3546])
-            ("helm-source-basic-bookmarks" type
-               (:interfaces ("helm-type-bookmark")
-                :superclasses "helm-source-in-buffer"
-                :members 
-                  ( ("init" variable (:default-value "(lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (bookmark-all-names)))") nil nil)
-                    ("filtered-candidate-transformer" variable (:default-value "(quote helm-bookmark-transformer)") nil nil))                  
-                :type "class")
-                nil [3548 3928])
-            ("helm-source-bookmarks" variable (:default-value (helm-make-source "Bookmarks" (quote helm-source-basic-bookmarks))) nil [3930 4059])
-            ("helm-bookmark-transformer" function (:arguments ("candidates" "_source")) nil [4061 4666])
-            ("helm-bookmark-toggle-filename-1" function (:arguments ("_candidate")) nil [4668 5363])
-            ("helm-bookmark-toggle-filename" function (:user-visible-flag t) nil [5365 5641])
-            ("put" code nil nil [5642 5691])
-            ("helm-bookmark-jump" function (:arguments ("candidate")) nil [5693 5867])
-            ("helm-bookmark-jump-other-frame" function (:arguments ("candidate")) nil [5869 6100])
-            ("helm-bookmark-jump-other-window" function (:arguments ("candidate")) nil [6102 6265])
-            ("helm-source-bookmark-set" variable (:default-value (helm-build-dummy-source "Set Bookmark" :filtered-candidate-transformer (lambda (_candidates _source) (list (or (and (not (string= helm-pattern "")) helm-pattern) "Enter a bookmark name to record"))) :action (quote (("Set bookmark" lambda (candidate) (if (string= helm-pattern "") (message "No bookmark name given for record") (bookmark-set candidate))))))) nil [6289 6880])
-            ("helm-bookmark--non-file-filename" variable
-               (:constant-flag t
-                :default-value "   - no file -")
-                nil [6902 7024])
-            ("helm-bookmark-gnus-bookmark-p" function (:arguments ("bookmark")) nil [7026 7372])
-            ("helm-bookmark-w3m-bookmark-p" function (:arguments ("bookmark")) nil [7374 7716])
-            ("helm-bookmark-woman-bookmark-p" function (:arguments ("bookmark")) nil [7718 8061])
-            ("helm-bookmark-man-bookmark-p" function (:arguments ("bookmark")) nil [8063 8396])
-            ("helm-bookmark-woman-man-bookmark-p" function (:arguments ("bookmark")) nil [8398 8655])
-            ("helm-bookmark-info-bookmark-p" function (:arguments ("bookmark")) nil [8657 8866])
-            ("helm-bookmark-image-bookmark-p" function (:arguments ("bookmark")) nil [8868 9087])
-            ("helm-bookmark-file-p" function (:arguments ("bookmark")) nil [9089 9514])
-            ("helm-bookmark-org-file-p" function (:arguments ("bookmark")) nil [9516 9711])
-            ("helm-bookmark-helm-find-files-p" function (:arguments ("bookmark")) nil [9713 9945])
-            ("helm-bookmark-addressbook-p" function (:arguments ("bookmark")) nil [9947 10305])
-            ("helm-bookmark-uncategorized-bookmark-p" function (:arguments ("bookmark")) nil [10307 11003])
-            ("helm-bookmark-filter-setup-alist" function (:arguments ("fn")) nil [11005 11281])
-            ("w3m-async-exec" variable nil nil [11309 11332])
-            ("helm-bookmark-jump-w3m" function (:arguments ("bookmark")) nil [11333 12463])
-            ("defalias" code nil nil [12694 12756])
-            ("defalias" code nil nil [12872 12922])
-            ("defalias" code nil nil [12923 12969])
-            ("defalias" code nil nil [12970 13021])
-            ("defalias" code nil nil [13022 13078])
-            ("defalias" code nil nil [13079 13138])
-            ("defalias" code nil nil [13139 13193])
-            ("defalias" code nil nil [13194 13247])
-            ("defalias" code nil nil [13248 13297])
-            ("helm-source-filtered-bookmarks" type
-               (:interfaces ("helm-type-bookmark")
-                :superclasses "helm-source-in-buffer"
-                :members 
-                  ( ("filtered-candidate-transformer" variable (:default-value "(quote (helm-adaptive-sort helm-highlight-bookmark))") nil nil))                  
-                :type "class")
-                nil [13338 13535])
-            ("helm-bookmark-w3m-setup-alist" function nil nil [13559 13717])
-            ("helm-source-bookmark-w3m" variable (:default-value (helm-make-source "Bookmark W3m" (quote helm-source-filtered-bookmarks) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-w3m-setup-alist))))) nil [13719 13990])
-            ("helm-bookmark-images-setup-alist" function nil nil [14006 14172])
-            ("helm-source-bookmark-images" variable (:default-value (helm-make-source "Bookmark Images" (quote helm-source-filtered-bookmarks) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-images-setup-alist))))) nil [14174 14454])
-            ("helm-bookmark-man-setup-alist" function nil nil [14473 14637])
-            ("helm-source-bookmark-man" variable (:default-value (helm-make-source "Bookmark Woman&Man" (quote helm-source-filtered-bookmarks) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-man-setup-alist))))) nil [14639 14916])
-            ("helm-bookmark-org-setup-alist" function nil nil [14935 15094])
-            ("helm-source-bookmark-org" variable (:default-value (helm-make-source " Bookmarked Org files" (quote helm-source-filtered-bookmarks) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-org-setup-alist))))) nil [15096 15376])
-            ("helm-bookmark-gnus-setup-alist" function nil nil [15390 15551])
-            ("helm-source-bookmark-gnus" variable (:default-value (helm-make-source "Bookmark Gnus" (quote helm-source-filtered-bookmarks) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-gnus-setup-alist))))) nil [15553 15827])
-            ("helm-bookmark-info-setup-alist" function nil nil [15841 16002])
-            ("helm-source-bookmark-info" variable (:default-value (helm-make-source "Bookmark Info" (quote helm-source-filtered-bookmarks) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-info-setup-alist))))) nil [16004 16278])
-            ("helm-bookmark-local-files-setup-alist" function nil nil [16309 16476])
-            ("helm-source-bookmark-files&dirs" variable (:default-value (helm-make-source "Bookmark Files&Directories" (quote helm-source-filtered-bookmarks) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-local-files-setup-alist))))) nil [16478 16778])
-            ("helm-bookmark-helm-find-files-setup-alist" function nil nil [16813 17000])
-            ("helm-bookmark-browse-project" function (:arguments ("candidate")) nil [17002 17197])
-            ("helm-bookmark-run-browse-project" function (:user-visible-flag t) nil [17199 17399])
-            ("put" code nil nil [17400 17452])
-            ("helm-bookmark-find-files-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-bookmark-map) (define-key map (kbd "C-x C-d") (quote helm-bookmark-run-browse-project)) map)) nil [17454 17653])
-            ("helm-bookmark-override-inheritor" type
-               (:superclasses "helm-source"
-                :type "class")
-                nil [17655 17715])
-            ("helm--setup-source" function
-               (:parent "helm-bookmark-override-inheritor"
-                :arguments ("source"))
-                nil [17717 18321])
-            ("helm-bookmark-find-files-class" type
-               (:interfaces ("helm-bookmark-override-inheritor")
-                :superclasses "helm-source-filtered-bookmarks"
-                :type "class")
-                nil [18323 18477])
-            ("helm-source-bookmark-helm-find-files" variable (:default-value (helm-make-source "Bookmark helm-find-files sessions" (quote helm-bookmark-find-files-class) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-helm-find-files-setup-alist))) :persistent-action (lambda (_candidate) (ignore)) :persistent-help "Do nothing")) nil [18479 18895])
-            ("helm-bookmark-uncategorized-setup-alist" function nil nil [18928 19116])
-            ("helm-source-bookmark-uncategorized" variable (:default-value (helm-make-source "Bookmark uncategorized" (quote helm-source-filtered-bookmarks) :init (lambda nil (bookmark-maybe-load-default-file) (helm-init-candidates-in-buffer (quote global) (helm-bookmark-uncategorized-setup-alist))))) nil [19118 19419])
-            ("helm-highlight-bookmark" function (:arguments ("bookmarks" "_source")) nil [19442 24878])
-            ("helm-bookmark-edit-bookmark" function (:arguments ("bookmark-name")) nil [24920 25414])
-            ("helm-bookmark-edit-bookmark-1" function (:arguments ("bookmark-name" "handler")) nil [25416 26785])
-            ("helm-bookmark-maybe-save-bookmark" function nil nil [26787 27024])
-            ("helm-bookmark-rename" function
-               (:user-visible-flag t
-                :arguments ("old" "new" "batch"))
-                nil [27026 28292])
-            ("helm-bookmark-run-edit" function (:user-visible-flag t) nil [28294 28482])
-            ("put" code nil nil [28483 28525])
-            ("helm-bookmark-run-jump-other-frame" function (:user-visible-flag t) nil [28529 28727])
-            ("put" code nil nil [28728 28782])
-            ("helm-bookmark-run-jump-other-window" function (:user-visible-flag t) nil [28784 28972])
-            ("put" code nil nil [28973 29028])
-            ("helm-bookmark-run-delete" function (:user-visible-flag t) nil [29030 29249])
-            ("put" code nil nil [29250 29294])
-            ("helm-bookmark-get-bookmark-from-name" function (:arguments ("bmk")) nil [29296 29553])
-            ("helm-delete-marked-bookmarks" function (:arguments ("_ignore")) nil [29555 29785])
-            ("helm-bookmarks" function (:user-visible-flag t) nil [29803 30057])
-            ("helm-filtered-bookmarks" function (:user-visible-flag t) nil [30074 30549])
-            ("helm-bookmark" package nil nil [30551 30575]))          
-      :file "helm-bookmark.el"
-      :pointmax 30720
-      :fsize 30719
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("helm" include nil nil [805 820])
-            ("helm-org-headings--nofilename" variable nil nil [822 860])
-            ("declare-function" code nil nil [861 928])
-            ("helm-help" customgroup (:user-visible-flag t) nil [932 1001])
-            ("helm-helper" variable
-               (:default-value (quote ((t :inherit helm-header)))
-                :type "face")
-                nil [1003 1119])
-            ("helm-help--string-list" variable (:default-value (quote (helm-help-message helm-buffer-help-message helm-ff-help-message helm-read-file-name-help-message helm-generic-file-help-message helm-grep-help-message helm-pdfgrep-help-message helm-etags-help-message helm-ucs-help-message helm-bookmark-help-message helm-esh-help-message helm-buffers-ido-virtual-help-message helm-moccur-help-message helm-top-help-message helm-el-package-help-message helm-M-x-help-message helm-imenu-help-message helm-colors-help-message helm-semantic-help-message helm-kmacro-help-message))) nil [1122 2292])
-            ("helm-documentation-buffer-name" variable (:default-value "*helm documentation*") nil [2294 2356])
-            ("helm-documentation" function (:user-visible-flag t) nil [2374 3191])
-            ("helm-buffer-help-message" variable (:default-value "* Helm Buffer
-
-** Tips
-
-*** Completion
-
-**** Major-mode
-
-You can enter a partial major-mode name (e.g. lisp, sh) to narrow down buffers.
-To specify the major-mode, prefix it with \"*\" e.g. \"*lisp\".
-
-If you want to match all buffers but the ones with a specific major-mode
-(negation), prefix the major-mode with \"!\" e.g. \"*!lisp\".
-
-If you want to specify more than one major-mode, separate them with \",\",
-e.g. \"*!lisp,!sh,!fun\" lists all buffers but the ones in lisp-mode, sh-mode
-and fundamental-mode.
-
-Then enter a space followed by a pattern to narrow down to buffers matching this
-pattern.
-
-**** Search inside buffers
-
-If you enter a space and a pattern prefixed by \"@\", Helm searches for text
-matching this pattern *inside* the buffer (i.e. not in the name of the buffer).
-
-If you enter a pattern prefixed with an escaped \"@\", Helm searches for a
-buffer matching \"@pattern\" but does not search inside.
-
-**** Search by directory name
-
-If you prefix the pattern with \"/\", Helm matches over the directory names
-of the buffers.
-
-This feature can be used to narrow down the search to one directory while
-subsequent strings entered after a space match over the buffer name only.
-
-Note that negation is not supported for matching on buffer filename.
-
-Starting from Helm v1.6.8, you can specify more than one directory.
-
-**** Fuzzy matching
-
-`helm-buffers-fuzzy-matching' turns on fuzzy matching on buffer names, but not
-on directory names or major modes.  A pattern starting with \"^\" disables fuzzy
-matching and matches by exact regexp.
-
-**** Examples
-
-With the following pattern
-
-    \"*lisp ^helm @moc\"
-
-Helm narrows down the list by selecting only the buffers that are in lisp mode,
-start with \"helm\" and which content matches \"moc\".
-
-Without the \"@\"
-
-    \"*lisp ^helm moc\"
-
-Helm looks for lisp mode buffers starting with \"helm\" and containing \"moc\"
-in their name.
-
-With this other pattern
-
-    \"*!lisp !helm\"
-
-Helm narrows down to buffers that are not in \"lisp\" mode and that do not match
-\"helm\".
-
-With this last pattern
-
-    /helm/ w3
-
-Helm narrows down to buffers that are in any \"helm\" subdirectory and
-matching \"w3\".
-
-*** Creating buffers
-
-When creating a new buffer, use `\\[universal-argument]' to choose a mode from a
-list.  This list is customizable, see `helm-buffers-favorite-modes'.
-
-*** Killing buffers
-
-You can kill buffers either one by one or all the marked buffers at once.
-
-One kill-buffer command leaves Helm while the other is persistent.  Run the
-persistent kill-buffer command either with the regular
-`helm-execute-persistent-action' called with a prefix argument (`\\[universal-argument] \\<helm-map>\\[helm-execute-persistent-action]')
-or with its specific command `helm-buffer-run-kill-persistent'.  See the
-bindings below.
-
-*** Switching to buffers
-
-To switch to a buffer, press RET, to switch to a buffer in another window, select this buffer
-and press \\<helm-buffer-map>\\[helm-buffer-switch-other-window], when called with a prefix arg
-the buffer will be displayed vertically in other window.
-If you mark more than one buffer, the marked buffers will be displayed in different windows.
-
-*** Meaning of colors and prefixes for buffers
-
-Remote buffers are prefixed with '@'.
-Red        => Buffer's file was modified on disk by an external process.
-Indianred2 => Buffer exists but its file has been deleted.
-Orange     => Buffer is modified and not saved to disk.
-Italic     => A non-file buffer.
-Yellow     => Tramp archive buffer.
-
-** Commands
-\\<helm-buffer-map>
-\\[helm-buffer-run-zgrep]		Grep Buffer(s) works as zgrep too (`\\[universal-argument]' to grep all buffers but non-file buffers).
-\\[helm-buffers-run-multi-occur]		Multi-Occur buffer or marked buffers (`\\[universal-argument]' to toggle force-searching current-buffer).
-\\[helm-buffer-switch-other-window]		Switch to other window.
-\\[helm-buffer-switch-other-frame]		Switch to other frame.
-\\[helm-buffers-run-browse-project]		Browse project from buffer.
-\\[helm-buffer-run-query-replace-regexp]		Query-replace-regexp in marked buffers.
-\\[helm-buffer-run-query-replace]		Query-replace in marked buffers.
-\\[helm-buffer-run-ediff]		Ediff current buffer with candidate.  With two marked buffers, ediff those buffers.
-\\[helm-buffer-run-ediff-merge]		Ediff-merge current buffer with candidate.  With two marked buffers, ediff-merge those buffers.
-\\[helm-buffer-diff-persistent]		Toggle Diff-buffer with saved file without leaving Helm.
-\\[helm-buffer-revert-persistent]		Revert buffer without leaving Helm.
-\\[helm-buffer-save-persistent]		Save buffer without leaving Helm.
-\\[helm-buffer-run-kill-buffers]		Delete marked buffers and leave Helm.
-\\[helm-buffer-run-kill-persistent]		Delete buffer without leaving Helm.
-\\[helm-buffer-run-rename-buffer]		Rename buffer.
-\\[helm-toggle-all-marks]		Toggle all marks.
-\\[helm-mark-all]		Mark all.
-\\[helm-toggle-buffers-details]		Toggle details.
-\\[helm-buffers-toggle-show-hidden-buffers]		Show hidden buffers.
-\\[helm-buffers-mark-similar-buffers]		Mark all buffers of the same type (color) as current buffer.") nil [3254 8427])
-            ("helm-ff-help-message" variable (:default-value "* Helm Find Files
-
-** Tips
-
-*** Navigation summary
-
-For a better experience you can enable auto completion by setting
-`helm-ff-auto-update-initial-value' to non-nil in your init file.  It is not
-enabled by default to not confuse new users.
-
-**** Use `\\<helm-find-files-map>\\[helm-execute-persistent-action]' (persistent action) on a directory to go down one level
-
-On a symlinked directory a prefix argument expands to its true name.
-
-**** Use `\\<helm-find-files-map>\\[helm-find-files-up-one-level]' on a directory to go up one level
-
-**** Use `\\<helm-find-files-map>\\[helm-find-files-down-last-level]' to walk back the resulting tree of all the `\\<helm-map>\\[helm-execute-persistent-action]' you did
-
-The tree is reinitialized each time you browse a new tree with
-`\\<helm-map>\\[helm-execute-persistent-action]' or by entering some pattern in the prompt.
-
-**** `RET' behavior
-
-It behaves differently depending on `helm-selection' (current candidate in helm-buffer):
-
-- candidate basename is \".\" => Open it in dired.
-- candidate is a directory    => Expand it.
-- candidate is a file         => Open it.
-
-If you have marked candidates and you press RET on a directory,
-helm will navigate to this directory, if you want to exit with
-RET with default action with these marked candidates, press RET
-on a second time while you are on the root of this directory
-e.g. \"/home/you/dir/.\" or press RET on any file which is not a
-directory.  You can also exit with default action at any moment
-with `f1'.
-
-Note that when copying, renaming, etc. from `helm-find-files' the
-destination file is selected with `helm-read-file-name'.
-
-To avoid confusion when using `read-file-name' or `read-directory-name', `RET'
-follows its standard Emacs behaviour, i.e. it exits the minibuffer as soon as
-you press `RET'.  If you want the same behavior as in `helm-find-files', bind
-`helm-ff-RET' to the `helm-read-file-map':
-
-    (define-key helm-read-file-map (kbd \"RET\") 'helm-ff-RET)
-
-*** Find file at point
-
-Helm uses `ffap' partially or completely to find file at point depending on the
-value of `helm-ff-guess-ffap-filenames': if non-nil, support is complete
-(annoying), if nil, support is partial.
-
-**** Find file at line number
-
-When text at point is in the form of
-
-    ~/elisp/helm/helm.el:1234
-
-Helm finds this file at the indicated line number, here 1234.
-
-**** Find URL at point
-
-When a URL is found at point, Helm expands to that URL only.
-Pressing `RET' opens that URL using `browse-url-browser-function'.
-
-**** Find e-mail address at point
-
-When an e-mail address is found at point, Helm expands to this e-mail address
-prefixed with \"mailto:\".  Pressing `RET' opens a message buffer with that
-e-mail address.
-
-*** Quick pattern expansion
-
-**** Enter `~/' at end of pattern to quickly reach home directory
-
-**** Enter `/' at end of pattern to quickly reach the file system root
-
-**** Enter `./' at end of pattern to quickly reach `default-directory'
-
-(As per its value at the beginning of the session.)
-
-If you already are in the `default-directory' this will move the cursor to the top.
-
-**** Enter `../' at end of pattern will reach upper directory, moving cursor to the top
-
-This is different from using `\\<helm-find-files-map>\\[helm-find-files-up-one-level]' in that it moves
-the cursor to the top instead of remaining on the previous subdir name.
-
-**** Enter `..name/' at end of pattern to start a recursive search
-
-It searches directories matching \"name\" under the current directory, see the
-\"Recursive completion on subdirectories\" section below for more details.
-
-**** Any environment variable (e.g. `$HOME') at end of pattern gets expanded
-
-**** Any valid filename yanked after pattern gets expanded
-
-**** Special case: URL at point
-
-The quick expansions do not take effect after end a URL, you must kill the
-pattern first (`\\[helm-delete-minibuffer-contents]').
-
-*** Helm-find-files supports fuzzy matching
-
-It starts from the third character of the pattern.
-
-For instance \"fob\" or \"fbr\" will complete \"foobar\" but \"fb\" needs a
-third character in order to complete it.
-
-*** Use `\\[universal-argument] \\[helm-execute-persistent-action]' or `\\[helm-follow-action-forward]' to display an image
-
-*** `\\[helm-execute-persistent-action]' on a filename expands to that filename in the Helm buffer
-
-Second hit displays the buffer filename.
-Third hit kills the buffer filename.
-Note: `\\[universal-argument] \\[helm-execute-persistent-action]' displays the buffer directly.
-
-*** Browse images directories with `helm-follow-mode' and navigate up/down
-
-You can also use `helm-follow-action-forward' and `helm-follow-action-backward' with
-`\\[helm-follow-action-forward]' and `\\[helm-follow-action-backward]' respectively.
-
-*** Toggle auto-completion with `\\[helm-ff-run-toggle-auto-update]'
-
-It is useful when trying to create a new file or directory and you don't want
-Helm to complete what you are writing.
-
-Note: On a terminal, the default binding `C-<backspace>' may not work.
-In this case use `C-c <backspace>'.
-
-*** You can create a new directory and a new file at the same time
-
-Simply write the path in the prompt and press `RET', e.g.
-\"~/new/newnew/newnewnew/my_newfile.txt\".
-
-*** To create a new directory, append a \"/\" to the new name and press `RET'
-
-*** To create a new file, enter a filename not ending with \"/\"
-
-Note that when you enter a new name, this one is prefixed with
-[?] if you are in a writable directory.  If you are in a directory
-where you have no write permission the new file name is not
-prefixed and is colored in red.  There is not such distinction
-when using tramp, new filename just appear on top of buffer.
-
-*** Recursive search from Helm-find-files
-
-**** You can use Helm-browse-project (see binding below)
-
-- With no prefix argument:
-If the current directory is under version control with either git or hg and
-helm-ls-git and/or helm-ls-hg are installed, it lists all the files under
-version control.  Otherwise it falls back to Helm-find-files.  See
-https://github.com/emacs-helm/helm-ls-git and
-https://github.com/emacs-helm/helm-ls-hg.
-
-- With one prefix argument:
-List all the files under this directory and other subdirectories
-(recursion) and this list of files will be cached.
-
-- With two prefix arguments:
-Same but the cache is refreshed.
-
-**** You can start a recursive search with \"locate\" or \"find\"
-
-See \"Note\" in the [[Recusive completion on subdirectories][section on subdirectories]].
-
-Using \"locate\", you can enable the local database with a prefix argument. If the
-local database doesn't already exists, you will be prompted for its creation.
-If it exists and you want to refresh it, give it two prefix args.
-
-When using locate the helm-buffer remains empty until you type something.
-Regardless Helm uses the basename of the pattern entered in the helm-find-files
-session by default.  Hitting `\\[next-history-element]' should just kick in the
-locate search with this pattern.  If you want Helm to automatically do this, add
-`helm-source-locate' to `helm-sources-using-default-as-input'.
-
-**** Recursive completion on subdirectories
-
-Starting from the directory you are currently browsing, it is possible to have
-completion of all directories underneath.  Say you are at \"/home/you/foo/\" and
-you want to go to \"/home/you/foo/bar/baz/somewhere/else\", simply type
-\"/home/you/foo/..else\" and hit `\\[helm-execute-persistent-action]' or enter
-the final \"/\".  Helm will then list all possible directories under \"foo\"
-matching \"else\".
-
-Entering two spaces before \"else\" instead of two dots also works.
-
-Note: Completion on subdirectories uses \"locate\" as backend, you can configure
-the command with `helm-locate-recursive-dirs-command'.  Because this completion
-uses an index, the directory tree displayed may be out-of-date and not reflect
-the latest change until you update the index (using \"updatedb\" for \"locate\").
-
-If for some reason you cannot use an index, the \"find\" command from
-\"findutils\" can be used instead.  It will be slower though.  You need to pass
-the basedir as first argument of \"find\" and the subdir as the value for
-'-(i)regex' or '-(i)name' with the two format specs that are mandatory in
-`helm-locate-recursive-dirs-command'.
-
-Examples:
-- \"find %s -type d -name '*%s*'\"
-- \"find %s -type d -regex .*%s.*$\"
-
-*** Insert filename at point or complete filename at point
-
-On insertion (not on completion, i.e. there is nothing at point):
-
-- `\\[helm-ff-run-complete-fn-at-point]': insert absolute file name.
-- `\\[universal-argument] \\[helm-ff-run-complete-fn-at-point]': insert abbreviated file name.
-- `\\[universal-argument] \\[universal-argument] \\[helm-ff-run-complete-fn-at-point]': insert relative file name.
-
-On completion:
-
-- Target starts with \"~/\": insert abbreviate file name.
-- target starts with \"/\" or \"[a-z]:/\": insert full path.
-- Otherwise: insert relative file name.
-
-*** Use the wildcard to select multiple files
-
-Use of wilcard is supported to run an action over a set of files.
-
-Example: You can copy all the files with \".el\" extension by using \"*.el\" and
-then run copy action.
-
-Similarly, \"**.el\" (note the two stars) will recursively select all \".el\"
-files under the current directory.
-
-Note that when recursively copying files, you may have files with same name
-dispatched across different subdirectories, so when copying them in the same
-directory they will get overwritten.  To avoid this Helm has a special action
-called \"backup files\" that has the same behavior as the command line \"cp -f
---backup=numbered\": it allows you to copy many files with the same name from
-different subdirectories into one directory.  Files with same name are renamed
-as follows: \"foo.txt.~1~\".  Like with the --force option of cp, it is possible
-to backup files in current directory.
-
-This command is available only when `dired-async-mode' is active.
-
-When using an action that involves an external backend (e.g. grep), using \"**\"
-is not recommended (even thought it works fine) because it will be slower to
-select all the files.  You are better off leaving the backend to do it, it will
-be faster.  However, if you know you have not many files it is reasonable to use
-this, also using not recursive wilcard (e.g. \"*.el\") is perfectly fine for
-this.
-
-The \"**\" feature is active by default in the option `helm-file-globstar'.  It
-is different from the Bash \"shopt globstar\" feature in that to list files with
-a named extension recursively you would write \"**.el\" whereas in Bash it would
-be \"**/*.el\".  Directory selection with \"**/\" like Bash \"shopt globstar\"
-option is not supported yet.
-
-*** Query replace regexp on filenames
-
-Replace different parts of a file basename with something else.
-
-When calling this action you will be prompted twice as with
-`query-replace', first for the matching expression of the text to
-replace and second for the replacement text.  Several facilities,
-however, are provided to make the two prompts more powerfull.
-
-**** Syntax of the first prompt
-
-In addition to simple regexps, these shortcuts are available:
-
-- Basename without extension => \"%.\"
-- Only extension             => \".%\"
-- Substring                  => \"%:<from>:<to>\"
-- Whole basename             => \"%\"
-
-**** Syntax of the second prompt
-
-In addition to a simple string to use as replacement, here is what you can use:
-
-- A placeholder refering to what you have selected in the first prompt: \"\\@\".
-
-After this placeholder you can use a search-and-replace syntax à-la sed:
-
-    \"\\@/<regexp>/<replacement>/
-
-You can select a substring from the string represented by the placeholder:
-
-    \"\\@:<from>:<to>\"
-
-- A special character representing a number which is incremented: \"\\#\".
-
-- Shortcuts for `upcase', `downcase' and `capitalize'
-are available as`%u', `%d' and `%c' respectively.
-
-**** Examples
-
-***** Recursively rename all files with \".JPG\" extension to \".jpg\"
-
-Use the `helm-file-globstar' feature described in [[Using wildcard to select multiple files][recursive globbing]]
-by entering \"**.JPG\" at the end of the Helm-find-files pattern, then hit
-\\<helm-map>\\[helm-ff-query-replace-on-filenames]: First \"JPG\", then \"jpg\"
-and hit `RET'.
-
-Alternatively you can enter \".%\" at the first prompt, then \"jpg\" and hit
-`RET'.  Note that when using this instead of using \"JPG\" at the first prompt,
-all extensions will be renamed to \"jpg\" even if the extension of one of the
-files is, say, \"png\".  If you want to keep the original extension you can use
-\"%d\" at the second prompt (downcase).
-
-***** Batch-rename files from number 001 to 00x
-
-Use \"\\#\" inside the second prompt.
-
-Example 1: To rename the files
-
-    foo.jpg
-    bar.jpg
-    baz.jpg
-
-to
-
-    foo-001.jpg
-    foo-002.jpg
-    foo-003.jpg
-
-use \"%.\" as matching regexp and \"foo-\\#\" as replacement string.
-
-Example 2: To rename the files
-
-    foo.jpg
-    bar.jpg
-    baz.jpg
-
-to
-
-    foo-001.jpg
-    bar-002.jpg
-    baz-003.jpg
-
-use as matching regexp \"%.\" and as replacement string \"\\@-\\#\".
-
-***** Replace a substring
-
-Use \"%:<from>:<to>\".
-
-Example: To rename files
-
-    foo.jpg
-    bar.jpg
-    baz.jpg
-
-to
-
-    fOo.jpg
-    bAr.jpg
-    bAz.jpg
-
-use as matching regexp \"%:1:2\" and as replacement string \"%u\" (upcase).
-
-Note that you *cannot* use \"%.\" and \".%\" along with substring replacement.
-
-***** Modify the string from the placeholder (\\@)
-
-- By substring, i.e. only using the substring of the placeholder: \"\\@:<from>:<to>\".
-The length of placeholder is used for <to> when unspecified.
-
-Example 1: \"\\@:0:2\" replaces from the beginning to the second char of the placeholder.
-
-Example 2: \\@:2: replaces from the second char of the placeholder to the end.
-
-- By search-and-replace: \"\\@/<regexp>/<replacement>/\".
-
-Incremental replacement is also handled in <replacement>.
-
-Example 3: \"\\@/foo/bar/\" replaces \"foo\" by \"bar\" in the placeholder.
-
-Example 4: \"\\@/foo/-\\#/\" replaces \"foo\" in the placeholder by 001, 002, etc.
-
-***** Clash in replacements (avoid overwriting files)
-
-When performing any of these replacement operations you may end up with same
-names as replacement.  In such cases Helm numbers the file that would otherwise
-overwritten.  For instance, should you remove the \"-m<n>\" part from the files
-\"emacs-m1.txt\", \"emacs-m2.txt\" and \"emacs-m3.txt\" you would end up with
-three files named \"emacs.txt\", the second renaming overwriting first file, and
-the third renaming overwriting second file and so on.  Instead Helm will
-automatically rename the second and third files as \"emacs(1).txt\" and
-\"emacs(2).txt\" respectively.
-
-***** Query-replace on filenames vs. serial-rename action
-
-Unlike the [[Serial renaming][serial rename]] actions, the files renamed with
-the query-replace action stay in their initial directory and are not moved to
-the current directory.  As such, using \"\\#\" to serial-rename files only makes
-sense for files inside the same directory.  It even keeps renaming files
-with an incremental number in the next directories.
-
-*** Serial-rename
-
-You can use the serial-rename actions to rename, copy or symlink marked files to
-a specific directory or in the current directory with all the files numbered
-incrementally.
-
-- Serial-rename by renaming:
-Rename all marked files with incremental numbering to a specific directory.
-
-- Serial-rename by copying:
-Copy all marked files with incremental numbering to a specific directory.
-
-- Serial-rename by symlinking:
-Symlink all marked files with incremental numbering to a specific directory.
-
-*** Edit marked files in a dired buffer
-
-You can open a dired buffer containing only marked files with `\\<helm-find-files-map>\\[helm-ff-run-marked-files-in-dired]'.
-With a prefix argument you can open this same dired buffer in wdired mode for
-editing.  Note that wildcards are supported as well, so you can use e.g.
-\"*.txt\" to select all \".txt\" files in the current directory or \"**.txt\" to
-select all files recursively from the current directory.
-See [[Use the wildcard to select multiple files]] section above.
-
-*** Defining default target directory for copying, renaming, etc
-
-You can customize `helm-dwim-target' to behave differently depending on the
-windows open in the current frame.  Default is to provide completion on all
-directories associated to each window.
-
-*** Copying and renaming asynchronously
-
-If you have the async library installed (if you got Helm from MELPA you do), you
-can use it for copying/renaming files by enabling `dired-async-mode'.
-
-Note that even when async is enabled, running a copy/rename action with a prefix
-argument will execute action synchronously. Moreover it will follow the first
-file of the marked files in its destination directory.
-
-When `dired-async-mode' is enabled, an additional action named \"Backup files\"
-will be available. (Such command is not natively available in Emacs).
-See [[Use the wildcard to select multiple files]] for details.
-
-*** Bookmark the `helm-find-files' session
-
-You can bookmark the `helm-find-files' session with `\\[helm-ff-bookmark-set]'.
-You can later retrieve these bookmarks by calling `helm-filtered-bookmarks'
-or, from the current `helm-find-files' session, by hitting `\\[helm-find-files-toggle-to-bookmark]'.
-
-*** Grep files from `helm-find-files'
-
-You can grep individual files from `helm-find-files' by using
-`\\<helm-find-files-map>\\[helm-ff-run-grep]'.  This same command can also
-recursively grep files from the current directory when called with a prefix
-argument.  In this case you will be prompted for the file extensions to use
-(grep backend) or the types of files to use (ack-grep backend).  See the
-`helm-grep-default-command' documentation to set this up.  For compressed files
-or archives, use zgrep with `\\<helm-find-files-map>\\[helm-ff-run-zgrep]'.
-
-Otherwise you can use recursive commands like `\\<helm-find-files-map>\\[helm-ff-run-grep-ag]' or `\\<helm-find-files-map>\\[helm-ff-run-git-grep]'
-that are much faster than using `\\<helm-find-files-map>\\[helm-ff-run-grep]' with a prefix argument.
-See `helm-grep-ag-command' and `helm-grep-git-grep-command' to set this up.
-
-You can also use \"id-utils\"' GID with `\\<helm-find-files-map>\\[helm-ff-run-gid]'
-by creating an ID index file with the \"mkid\" shell command.
-
-All those grep commands use the symbol at point as the default pattern.
-Note that default is different from input (nothing is added to the prompt until
-you hit `\\[next-history-element]').
-
-**** Grepping on remote files
-
-On remote files grep is not well supported by TRAMP unless you suspend updates before
-entering the pattern and re-enable it once your pattern is ready.
-To toggle suspend-update, use `\\<helm-map>\\[helm-toggle-suspend-update]'.
-
-*** Setting up aliases in Eshell allows you to set up powerful customized commands
-
-Adding Eshell aliases to your `eshell-aliases-file' or using the
-`alias' command from Eshell allows you to create personalized
-commands not available in `helm-find-files' actions and use them
-from `\\<helm-find-files-map>\\[helm-ff-run-eshell-command-on-file]'.
-
-Example: You want a command to uncompress some \"*.tar.gz\" files from `helm-find-files':
-
-1) Create an Eshell alias named, say, \"untargz\" with the command
-\"alias untargz tar zxvf $*\".
-
-2) Now from `helm-find-files' select the \"*.tar.gz\" file (you can also
-mark files if needed) and hit `\\<helm-find-files-map>\\[helm-ff-run-eshell-command-on-file]'.
-
-Note: When using marked files with this, the meaning of the prefix argument is
-quite subtle.  Say you have \"foo\", \"bar\" and \"baz\" marked; when you run
-the alias command `example' on these files with no prefix argument it will run
-`example' sequentially on each file:
-
-$ example foo
-$ example bar
-$ example baz
-
-With a prefix argument however it will apply `example' on all files at once:
-
-$ example foo bar baz
-
-Of course the alias command should support this.
-
-*** Using TRAMP with `helm-find-files' to read remote directories
-
-`helm-find-files' works fine with TRAMP despite some limitations.
-
-- Grepping files is not very well supported when used incrementally.
-See [[Grepping on remote files]].
-
-- Locate does not work on remote directories.
-
-**** A TRAMP syntax crash course
-
-Please refer to TRAMP's documentation for more details.
-
-- Connect to host 192.168.0.4 as user \"foo\":
-
-/scp:192.168.0.4@foo:
-
-- Connect to host 192.168.0.4 as user \"foo\" on port 2222:
-
-/scp:192.168.0.4@foo#2222:
-
-- Connect to host 192.168.0.4 as root using multihops syntax:
-
-/ssh:192.168.0.4@foo|sudo:192.168.0.4:
-
-Note: You can also use `tramp-default-proxies-alist' when connecting often to
-the same hosts.
-
-As a rule of thumb, prefer the scp method unless using multihops (which only
-works with the ssh method), especially when copying large files.
-
-You need to hit `C-j' once on top of a directory on the first connection
-to complete the pattern in the minibuffer.
-
-**** Display color for directories, symlinks etc... with tramp
-
-Starting at helm version 2.9.7 it is somewhat possible to
-colorize fnames by listing files without loosing performances with
-external commands (ls and awk) if your system is compatible.
-For this you can use `helm-list-dir-external' as value
-for `helm-list-directory-function'.
-
-See `helm-list-directory-function' documentation for more infos.
- 
-**** Completing host
-
-As soon as you enter the first \":\" after method e.g =/scp:= you will
-have some completion about previously used hosts or from your =~/.ssh/config=
-file, hitting `\\[helm-execute-persistent-action]' or `right' on a candidate will insert this host in minibuffer
-without addind the ending \":\", second hit insert the last \":\".
-As soon the last \":\" is entered TRAMP will kick in and you should see the list
-of candidates soon after.
-
-When connection fails, be sure to delete your TRAMP connection with M-x
-`helm-delete-tramp-connection' before retrying.
-
-**** Editing local files as root
-
-Use the sudo method:
-
-\"/sudo:host:\" or simply \"/sudo::\".
-
-*** Attach files to a mail buffer (message-mode)
-
-If you are in a `message-mode' or `mail-mode' buffer, that action will appear
-in action menu, otherwise it is available at any time with \\<helm-find-files-map>\\[helm-ff-run-mail-attach-files].
-It behaves as follows:
-
-- If you are in a (mail or message) buffer, files are attached there.
-
-- If you are not in a mail buffer but one or more mail buffers exist, you are
-prompted to attach files to one of these mail buffers.
-
-- If you are not in a mail buffer and no mail buffer exists,
-a new mail buffer is created with the attached files in it.
-
-*** Open files in separate windows
-
-When [[Marked candidates][marking]] multiple files or using [[Use the wildcard to select multiple files][wildcard]], helm allow opening all
-this files in separate windows using an horizontal layout or a
-vertical layout if you used a prefix arg, when no more windows can be
-displayed in frame, next files are opened in background without being
-displayed.  When using \\<helm-find-files-map>\\[helm-ff-run-switch-other-window] the current
-buffer is kept and files are displayed next to it with same behavior as above.
-When using two prefix args, files are opened in background without beeing displayed.
-
-*** Expand archives as directories in a avfs directory
-
-If you have mounted your filesystem with mountavfs,
-you can expand archives in the \"~/.avfs\" directory with \\<helm-map>\\[helm-execute-persistent-action].
-
-*** Tramp archive support (emacs-27+ only)
-
-If your emacs have library tramp-archive.el, you can browse the
-content of archives with emacs and BTW helm-find-files. However this beeing
-experimental and not very fast, helm doesn't provide an automatic
-expansion and detection of archives, you will have to add the final /
-manually and may have to force update (\\<helm-map>\\[helm-refresh])
-or remove and add again the final / until tramp finish decompressing archive.
-
-*** Touch files
-
-In the completion buffer, you can choose the default which is the current-time, it is
-the first candidate or the timestamp of one of the selected files.
-If you need to use something else, use \\<helm-map>\\[next-history-element] and edit
-the date in minibuffer.
-It is also a way to quickly create a new file without opening a buffer, saving it
-and killing it.
-To touch more than one new file, separate you filenames with a comma (\",\").
-If one wants to create (touch) a new file with comma inside the name use a prefix arg,
-this will prevent splitting the name and create multiple files.
-
-*** Delete files
-
-You can delete files without quitting helm with
-`\\<helm-find-files-map>\\[helm-ff-persistent-delete]' or delete files and quit helm with `\\[helm-ff-run-delete-file]'.
-
-In the second method you can choose to
-make this command asynchronous by customizing
-`helm-ff-delete-files-function'.
-
-_WARNING_: When deleting files asynchronously you will NOT be
-WARNED if directories are not empty, that's mean non empty directories will
-be deleted in background without asking.
-
-A good compromise is to trash your files
-when using asynchronous method (see [[Trashing files][Trashing files]]).
-
-When choosing synchronous delete, you can allow recursive
-deletion of directories with `helm-ff-allow-recursive-deletes'.
-Note that when trashing (synchronous) you are not asked for recursive deletion.
-
-Note that `helm-ff-allow-recursive-deletes' have no effect when
-deleting asynchronously.
-
-First method (persistent delete) is always synchronous.
-
-Note that when a prefix arg is given, trashing behavior is inversed.
-See [[Trashing files][Trashing files]].
-
-**** Trashing files
-
-If you want to trash your files instead of deleting them you can
-set `delete-by-moving-to-trash' to non nil, like this your files
-will be moved to trash instead of beeing deleted.
-
-You can reverse at any time the behavior of `delete-by-moving-to-trash' by using
-a prefix arg with any of the delete files command.
-
-On GNULinux distribution, when navigating to a Trash directory you
-can restore any file in ..Trash/files directory with the 'Restore
-from trash' action you will find in action menu (needs the
-trash-cli package installed).
-You can as well delete files from Trash directories with the 'delete files from trash'
-action.
-
-Tip: Navigate to your Trash/files directories with `helm-find-files' and set a bookmark
-there with \\<helm-find-files-map>\\[helm-ff-bookmark-set] for fast access to Trash.
-
-_WARNING:_
-
-If you have an ENV var XDG_DATA_HOME in your .profile or .bash_profile
-and this var is set to something like $HOME/.local/share (like preconized)
-`move-file-to-trash' may try to create $HOME/.local/share/Trash (literally)
-and its subdirs in the directory where you are actually trying to trash files.
-because `move-file-to-trash' is interpreting XDG_DATA_HOME literally instead
-of evaling its value (with `substitute-in-file-name').
-
-***** Trashing remote files with tramp
-
-Trashing remote files (or local files with sudo method) is disabled by default
-because tramp is requiring the 'trash' command to be installed, if you want to
-trash your remote files, customize `helm-trash-remote-files'.
-The package on most GNU/Linux based distributions is trash-cli, it is available [[https://github.com/andreafrancia/trash-cli][here]].
-
-NOTE:
-When deleting your files with sudo method, your trashed files will not be listed
-with trash-list until you log in as root.
-
-** Commands
-\\<helm-find-files-map>
-\\[helm-ff-run-locate]		Run `locate' (`\\[universal-argument]' to specify locate database, `M-n' to insert basename of candidate).
-\\[helm-ff-run-browse-project]		Browse project (`\\[universal-argument]' to recurse, `\\[universal-argument] \\[universal-argument]' to recurse and refresh database).
-\\[helm-ff-run-find-sh-command]		Run `find' shell command from this directory.
-\\[helm-ff-run-grep]		Run Grep (`\\[universal-argument]' to recurse).
-\\[helm-ff-run-pdfgrep]		Run Pdfgrep on marked files.
-\\[helm-ff-run-zgrep]		Run zgrep (`\\[universal-argument]' to recurse).
-\\[helm-ff-run-grep-ag]		Run AG grep on current directory.
-\\[helm-ff-run-git-grep]		Run git-grep on current directory.
-\\[helm-ff-run-gid]		Run gid (id-utils).
-\\[helm-ff-run-etags]		Run Etags (`\\[universal-argument]' to use thing-at-point, `\\[universal-argument] \\[universal-argument]' to reload cache).
-\\[helm-ff-run-rename-file]		Rename Files (`\\[universal-argument]' to follow).
-\\[helm-ff-run-query-replace-fnames-on-marked]		Query replace on marked files.
-\\[helm-ff-run-copy-file]		Copy Files (`\\[universal-argument]' to follow).
-\\[helm-ff-run-byte-compile-file]		Byte Compile Files (`\\[universal-argument]' to load).
-\\[helm-ff-run-load-file]		Load Files.
-\\[helm-ff-run-symlink-file]		Symlink Files.
-\\[helm-ff-run-hardlink-file]		Hardlink files.
-\\[helm-ff-run-relsymlink-file]		Relative symlink Files.
-\\[helm-ff-run-delete-file]		Delete Files.
-\\[helm-ff-run-touch-files]		Touch files.
-\\[helm-ff-run-kill-buffer-persistent]		Kill buffer candidate without leaving Helm.
-\\[helm-ff-persistent-delete]		Delete file without leaving Helm.
-\\[helm-ff-run-switch-to-eshell]		Switch to Eshell.
-\\[helm-ff-run-eshell-command-on-file]		Eshell command on file (`\\[universal-argument]' to apply on marked files, otherwise treat them sequentially).
-\\[helm-ff-run-ediff-file]		Ediff file.
-\\[helm-ff-run-ediff-merge-file]		Ediff merge file.
-\\[helm-ff-run-complete-fn-at-point]		Complete file name at point.
-\\[helm-ff-run-switch-other-window]		Switch to other window.
-\\[helm-ff-run-switch-other-frame]		Switch to other frame.
-\\[helm-ff-run-open-file-externally]		Open file with external program (`\\[universal-argument]' to choose).
-\\[helm-ff-run-preview-file-externally]		Preview file with external program.
-\\[helm-ff-run-open-file-with-default-tool]		Open file externally with default tool.
-\\[helm-ff-rotate-left-persistent]		Rotate image left.
-\\[helm-ff-rotate-right-persistent]		Rotate image right.
-\\[helm-find-files-up-one-level]		Go to parent directory.
-\\[helm-find-files-history]		Switch to the visited-directory history.
-\\[helm-ff-file-name-history]		Switch to file name history.
-\\[helm-ff-properties-persistent]		Show file properties in a tooltip.
-\\[helm-mark-all]		Mark all visible candidates.
-\\[helm-ff-run-toggle-auto-update]		Toggle auto-expansion of directories.
-\\[helm-unmark-all]		Unmark all candidates, visible and invisible ones.
-\\[helm-ff-run-gnus-attach-files]		Gnus' attach files to message buffer.
-\\[helm-ff-run-print-file]		Print file, (`\\[universal-argument]' to refresh printer list).
-\\[helm-enlarge-window]		Enlarge Helm window.
-\\[helm-narrow-window]		Narrow Helm window.
-\\[helm-ff-run-toggle-basename]		Toggle basename/fullpath.
-\\[helm-ff-run-find-file-as-root]		Find file as root.
-\\[helm-ff-run-find-alternate-file]		Find alternate file.
-\\[helm-ff-run-insert-org-link]		Insert org link.
-\\[helm-ff-bookmark-set]		Set bookmark to current directory.
-\\[helm-find-files-toggle-to-bookmark]		Jump to bookmark list.") nil [8475 39627])
-            ("helm-read-file-name-help-message" function nil nil [39670 43283])
-            ("helm-generic-file-help-message" variable (:default-value "* Helm Generic files
-
-** Tips
-
-*** Locate
-
-You can append to the search pattern any of the locate command line options,
-e.g. -b, -e, -n <number>, etc.  See the locate(1) man page for more details.
-
-Some other sources (at the moment \"recentf\" and \"file in current directory\")
-support the -b flag for compatibility with locate when they are used with it.
-
-When you enable fuzzy matching on locate with `helm-locate-fuzzy-match', the
-search will be performed on basename only for efficiency (so don't add \"-b\" at
-prompt).  As soon as you separate the patterns with spaces, fuzzy matching will
-be disabled and search will be done on the full filename.  Note that in
-multi-match, fuzzy is completely disabled, which means that each pattern is a
-match regexp (i.e. \"helm\" will match \"helm\" but \"hlm\" will *not* match
-\"helm\").
-
-*** Browse project
-
-When the current directory is not under version control, don't forget to refresh
-the cache when files have been added/removed in the directory.
-
-*** Find command
-
-Recursively search files using the \"find\" shell command.
-
-Candidates are all filenames that match all given globbing patterns.  This
-respects the options `helm-case-fold-search' and
-`helm-findutils-search-full-path'.
-
-You can pass arbitrary \"find\" options directly after a \"*\" separator.
-For example, this would find all files matching \"book\" that are larger
-than 1 megabyte:
-
-    book * -size +1M
-
-** Commands
-\\<helm-generic-files-map>
-\\[helm-ff-run-toggle-basename]		Toggle basename.
-\\[helm-ff-run-grep]		Run grep (`\\[universal-argument]' to recurse).
-\\[helm-ff-run-zgrep]		Run zgrep.
-\\[helm-ff-run-gid]		Run GID (id-utils).
-\\[helm-ff-run-pdfgrep]		Run PDFgrep on marked files.
-\\[helm-ff-run-copy-file]		Copy file(s)
-\\[helm-ff-run-rename-file]		Rename file(s).
-\\[helm-ff-run-symlink-file]		Symlink file(s).
-\\[helm-ff-run-hardlink-file]		Hardlink file(s).
-\\[helm-ff-run-delete-file]		Delete file(s).
-\\[helm-ff-run-byte-compile-file]		Byte compile Elisp file(s) (`\\[universal-argument]' to load).
-\\[helm-ff-run-load-file]		Load Elisp file(s).
-\\[helm-ff-run-ediff-file]		Ediff file.
-\\[helm-ff-run-ediff-merge-file]		Ediff-merge file.
-\\[helm-ff-run-switch-other-window]		Switch to other window.
-\\[helm-ff-properties-persistent]		Show file properties.
-\\[helm-ff-run-etags]		Run etags (`\\[universal-argument]' to use tap, `\\[universal-argument] \\[universal-argument]' to reload the database).
-\\[helm-yank-text-at-point]		Yank text at point.
-\\[helm-ff-run-open-file-externally]		Open file with external program (`\\[universal-argument]' to choose).
-\\[helm-ff-run-open-file-with-default-tool]		Open file externally with default tool.
-\\[helm-ff-run-insert-org-link]		Insert org link.") nil [43331 46147])
-            ("helm-grep-help-message" variable (:default-value "* Helm Grep
-
-** Tips
-
-*** Use a prefix argument to grep recursively
-
-With Helm supporting git-grep and AG however, you are better off using one of
-them for recursive searches.
-
-*** You can use wild cards when selecting files (e.g. \"*.el\")
-
-*** You can grep in many different directories by marking files or using wild cards
-
-*** You can save the result in a `helm-grep-mode' buffer
-
-See [[Commands][commands]] below.
-
-Once in that buffer you can use \"emacs-wgrep\" (external package not bundled with Helm)
-to edit your changes.
-
-*** Helm-grep supports multi-matching
-
-(Starting from version 1.9.4.)
-
-Simply add a space between each pattern as for most Helm commands.
-
-*** See full path of selected candidate
-
-Add (helm-popup-tip-mode 1) in your init file or enable it interactively with
-M-x helm-popup-tip-mode.
-
-*** Open file in other window
-
-The command \\<helm-grep-map>\\[helm-grep-run-other-window-action] allow you to open file
-in other window horizontally or vertically if a prefix arg is supplied.
- 
-*** Performance over TRAMP
-
-Grepping works but it is badly supported as TRAMP doesn't support multiple
-processes running in a short delay (less than 5s) among other things.
-
-Helm uses a special hook to suspend the process automatically while you are
-typing.  Even if Helm handles this automatically by delaying each process by 5s,
-you are adviced to this manually by hitting `\\<helm-map>\\[helm-toggle-suspend-update]' (suspend process) before
-typing, and hit again `\\<helm-map>\\[helm-toggle-suspend-update]' when the regexp is ready to send to the remote
-process.  For simple regexps, there should be no need for this.
-
-Another solution is to not use TRAMP at all and mount your remote file system via
-SSHFS.
-
-* Helm GID
-
-** Tips
-
-Helm-GID reads the database created with the `mkid' command from id-utils.
-The name of the database file can be customized with `helm-gid-db-file-name', it
-is usually \"ID\".
-
-Helm-GID use the symbol at point as default-input.  This command is also
-accessible from `helm-find-files' which allow you to navigate to another
-directory to consult its database.
-
-Note: Helm-GID supports multi-matches but only the last pattern entered will be
-highlighted since there is no ~--color~-like option in GID itself.
-
-* Helm AG
-
-** Tips
-
-Helm-AG is different from grep or ack-grep in that it works on a directory and
-not on a list of files.
-
-You can ignore files and directories with a \".agignore\" file, local to a
-directory or global when placed in the home directory. (See the AG man page for
-more details.)  That file follows the same syntax as `helm-grep-ignored-files'
-and `helm-grep-ignored-directories'.
-
-As always you can access Helm AG from `helm-find-files'.
-
-Starting with version 0.30, AG accepts one or more TYPE arguments on its command
-line.  Helm provides completion on these TYPE arguments when available with your
-AG version.  Use a prefix argument when starting a Helm-AG session to enable this
-completion.
-
-Note: You can mark several types to match in the AG query.  The first AG
-versions providing this feature allowed only one type, so in this case only the
-last mark will be used.
-
-* Helm git-grep
-
-Helm-git-grep searches the current directory, i.e the default directory or the
-directory in Helm-find-files.  If this current directory is a subdirectory of a
-project and you want to also match parent directories (i.e the whole project),
-use a prefix argument.
-
-** Commands
-\\<helm-grep-map>
-\\[helm-goto-next-file]		Next File.
-\\[helm-goto-precedent-file]		Previous File.
-\\[helm-yank-text-at-point]		Yank text at point in minibuffer.
-\\[helm-grep-run-other-window-action]		Jump to other window.
-\\[helm-grep-run-other-frame-action]		Jump to other frame.
-\\[helm-grep-run-default-action]		Run default action (same as `RET').
-\\[helm-grep-run-save-buffer]		Save to a `helm-grep-mode' enabled buffer.") nil [46169 50078])
-            ("helm-pdfgrep-help-message" variable (:default-value "* Helm PDFgrep Map
-
-** Commands
-\\<helm-pdfgrep-map>
-\\[helm-goto-next-file]		Next file.
-\\[helm-goto-precedent-file]		Previous file.
-\\[helm-yank-text-at-point]		Yank text at point in minibuffer.") nil [50104 50345])
-            ("helm-etags-help-message" variable (:default-value "* Helm Etags Map
-
-** Commands
-\\<helm-etags-map>
-\\[helm-goto-next-file]		Next file.
-\\[helm-goto-precedent-file]		Previous file.
-\\[helm-yank-text-at-point]		Yank text at point in minibuffer.") nil [50368 50603])
-            ("helm-ucs-help-message" variable (:default-value "* Helm UCS
-
-** Tips
-
-Use commands below to insert unicode characters in current buffer without
-leaving Helm.
-
-** Commands
-\\<helm-ucs-map>
-\\[helm-ucs-persistent-insert]		Insert character.
-\\[helm-ucs-persistent-forward]		Forward character.
-\\[helm-ucs-persistent-backward]		Backward character.
-\\[helm-ucs-persistent-delete]		Delete character backward.
-\\[helm-ucs-persistent-insert-space]		Insert space.") nil [50624 51074])
-            ("helm-bookmark-help-message" variable (:default-value "* Helm bookmark name
-
-** Commands
-\\<helm-bookmark-map>
-\\[helm-bookmark-run-jump-other-window]		Jump other window.
-\\[helm-bookmark-run-delete]		Delete bookmark.
-\\[helm-bookmark-run-edit]		Edit bookmark.
-\\[helm-bookmark-toggle-filename]		Toggle bookmark location visibility.") nil [51100 51425])
-            ("helm-esh-help-message" variable (:default-value "* Helm Eshell on file
-
-** Tips
-
-*** Pass extra arguments after filename
-
-Normally the command or alias will be called with file as argument.  For instance
-
-    <command> candidate_file
-
-But you can also pass an argument or more after \"candidate_file\" like this:
-
-    <command> %s [extra_args]
-
-\"candidate_file\" will be added at \"%s\" and the command will look at this:
-
-    <command> candidate_file [extra_args]
-
-*** Specify marked files as arguments
-
-Example:
-
-    <command> file1 file2...
-
-Call `helm-find-files-eshell-command-on-file' with one prefix argument.  Otherwise
-you can pass one prefix argument from the command selection buffer.
-
-Note: This does not work on remote files.
-
-With two prefix-args the output is printed to the `current-buffer'.
-
-With no prefix argument or a prefix argument value of '(16) (`\\[universal-argument] \\[universal-argument]')
-the command is called once for each file like this:
-
-    <command> file1
-    <command> file2
-    ...
-
-** Commands
-\\<helm-esh-on-file-map>") nil [51465 52509])
-            ("helm-buffers-ido-virtual-help-message" variable (:default-value "* Helm Ido virtual buffers
-
-** Commands
-\\<helm-buffers-ido-virtual-map>
-\\[helm-ff-run-switch-other-window]		Switch to other window.
-\\[helm-ff-run-switch-other-frame]		Switch to other frame.
-\\[helm-ff-run-grep]		Grep file.
-\\[helm-ff-run-zgrep]		Zgrep file.
-\\[helm-ff-run-delete-file]		Delete file.
-\\[helm-ff-run-open-file-externally]		Open file externally.") nil [52545 52970])
-            ("helm-moccur-help-message" variable (:default-value "* Helm Moccur
-
-** Tips
-
-*** Matching
-
-Multiple regexp matching is allowed, simply enter a space to separate the regexps.
-
-Matching empty lines is supported with the regexp \"^$\", you then get the
-results displayed as the buffer-name and the line number only.  You can
-save and edit these results, i.e. add text to the empty line.
-
-*** Automatically match symbol at point
-
-Helm can automatically match the symbol at point while keeping the minibuffer
-empty, ready to be written to.  This behaviour is disabled by default.  To
-enable this you need to add `helm-source-occur' and `helm-source-moccur' to
-`helm-sources-using-default-as-input'.
-
-*** Jump to the corresponding line in the searched buffer
-
-You can do this with `\\<helm-map>\\[helm-execute-persistent-action]' (persistent-action), to do it repeatedly
-you can use `\\<helm-map>\\[helm-follow-action-forward]' and `\\<helm-map>\\[helm-follow-action-backward]' or enable `helm-follow-mode' with `\\<helm-map>\\[helm-follow-mode]'.
-
-*** Switch to buffer in other window
-
-The command \\<helm-moccur-map>\\[helm-moccur-run-goto-line-ow] allow you to switch to buffer
-in other window horizontally or vertically if a prefix arg is supplied.
-
-*** Save the results
-
-Similarly to Helm-grep, you can save the results with `\\<helm-map>\\[helm-moccur-run-save-buffer]'.
-Once in the saved buffer, you can edit it, see [[Edit a saved buffer][below]].
-
-Of course if you don't save the results, you can resume the Helm session with
-`helm-resume'.
-
-*** Refresh the resumed session
-
-When the buffer(s) where you ran helm-(m)occur get(s) modified, the Helm buffer
-will flash red as a warning.  You can refresh the buffer by running `\\<helm-map>\\[helm-refresh]'.
-This can be done automatically by customizing `helm-moccur-auto-update-on-resume'.
-
-*** Refresh a saved buffer
-
-Type `g' to update the buffer.
-
-*** Edit a saved buffer
-
-First, install wgrep (https://github.com/mhayashi1120/Emacs-wgrep) and then:
-
-1) `C-c C-p' (`wgrep-change-to-wgrep-mode') to edit the buffer(s).
-2) `C-x C-s' to save your changes.
-
-Tip: Use the excellent iedit (https://github.com/victorhge/iedit) to modify all
-occurences at once in the buffer.
-
-*** Search in region
-
-When searching in current-buffer with `helm-occur', if a region
-is found helm will search in this region only.  If you marked
-this region with `mark-defun' the symbol that was at point before
-marking defun will be used when `helm-source-occur' is member of
-`helm-sources-using-default-as-input'.
-
-** Commands
-\\<helm-moccur-map>
-\\[helm-goto-next-file]		Next buffer.
-\\[helm-goto-precedent-file]		Previous buffer.
-\\[helm-yank-text-at-point]		Yank text at point in minibuffer.
-\\[helm-moccur-run-goto-line-ow]		Go to line in other window.
-\\[helm-moccur-run-goto-line-of]		Go to line in new frame.") nil [52994 55831])
-            ("helm-top-help-message" variable (:default-value "* Helm Top
-
-** Commands
-\\<helm-top-map>
-\\[helm-top-run-sort-by-com]		Sort by commands.
-\\[helm-top-run-sort-by-cpu]		Sort by CPU usage.
-\\[helm-top-run-sort-by-user]		Sort alphabetically by user.
-\\[helm-top-run-sort-by-mem]		Sort by memory.") nil [55852 56138])
-            ("helm-el-package-help-message" variable (:default-value "* Helm Elisp package
-
-** Tips
-
-*** Compile all your packages asynchronously
-
-If you use async (if you have installed Helm from MELPA you do), only \"helm\",
-\"helm-core\", and \"magit\" are compiled asynchronously.  If you want all your
-packages compiled asynchronously, add this to your init file:
-
-     (setq async-bytecomp-allowed-packages '(all))
-
-*** Upgrade Elisp packages
-
-On initialization (when Emacs is fetching packages on remote), if Helm finds
-packages to upgrade, it will start in the upgradable packages view showing the packages
-available for upgrade.
-
-On subsequent runs, you will have to refresh the list with `C-c \\[universal-argument]'.  If Helm
-finds upgrades you can switch to upgrade view (see below) to see what packages
-are available for upgrade or simply hit `C-c U' to upgrade them all.
-
-To see upgradable packages hit `M-U'.
-
-Then you can install all upgradable packages with the \"upgrade all\" action
-(`C-c \\[universal-argument]'), or upgrade only specific packages by marking them and running the
-\"upgrade\" action (visible only when there are upgradable packages).  Of course
-you can upgrade a single package by just running the \"upgrade\" action without
-marking it (`C-c u' or `RET') .
-
-*Warning:* You are strongly advised to *restart* Emacs after *upgrading* packages.
-
-*** Meaning of flags prefixing packages
-
-(Emacs ≥25)
-
-- The flag \"S\" that prefixes package names means that the packages belong to `package-selected-packages'.
-
-- The flag \"U\" that prefix package names mean that this package is no more needed.
-
-** Commands
-\\<helm-el-package-map>
-\\[helm-el-package-show-all]		Show all packages.
-\\[helm-el-package-show-installed]		Show installed packages only.
-\\[helm-el-package-show-uninstalled]		Show non-installed packages only.
-\\[helm-el-package-show-upgrade]		Show upgradable packages only.
-\\[helm-el-package-show-built-in]		Show built-in packages only.
-\\[helm-el-run-package-install]		Install package(s).
-\\[helm-el-run-package-reinstall]		Reinstall package(s).
-\\[helm-el-run-package-uninstall]		Uninstall package(s).
-\\[helm-el-run-package-upgrade]		Upgrade package(s).
-\\[helm-el-run-package-upgrade-all]		Upgrade all packages.
-\\[helm-el-run-visit-homepage]		Visit package homepage.") nil [56169 58481])
-            ("helm-M-x-help-message" variable (:default-value "* Helm M-x
-
-** Tips
-
-*** You can get help on any command with persistent action (\\[helm-execute-persistent-action])
-
-*** Prefix arguments
-
-You must pass prefix arguments *after* starting `helm-M-x'.  A mode-line
-counter will display the number of given prefix arguments.
-
-If you pass prefix arguments before running `helm-M-x', it will be displayed in the prompt.
-The first `\\[universal-argument]' after `helm-M-x' clears those prefix arguments.") nil [58502 58985])
-            ("helm-imenu-help-message" variable (:default-value "* Helm Imenu
-
-** Commands
-\\<helm-imenu-map>
-\\[helm-imenu-next-section]		Go to next section.
-\\[helm-imenu-previous-section]		Go to previous section.") nil [59008 59199])
-            ("helm-colors-help-message" variable (:default-value "* Helm colors
-
-** Commands
-\\<helm-color-map>
-\\[helm-color-run-insert-name]		Insert the entry name.
-\\[helm-color-run-kill-name]		Kill the entry name.
-\\[helm-color-run-insert-rgb]		Insert entry in RGB format.
-\\[helm-color-run-kill-rgb]		Kill entry in RGB format.") nil [59223 59534])
-            ("helm-semantic-help-message" variable (:default-value "* Helm Semantic
-
-** Commands
-\\<helm-semantic-map>") nil [59560 59650])
-            ("helm-kmacro-help-message" variable (:default-value "* Helm kmacro
-
-** Tips
-
-- Start recording a kmacro with `f3'.
-- End the kmacro recording with `f4'.
-- Run `helm-execute-kmacro' to list all your kmacros.
-
-Use persistent action to run your kmacro as many time as needed.
-You can browse the kmacros with `helm-next-line' and `helm-previous-line'.
-
-Note: You can't record keys running Helm commands except `helm-M-x', under the
-condition that you don't choose a command using Helm completion.
-
-** Commands
-\\<helm-kmacro-map>") nil [59674 60184])
-            ("helm-kill-ring-help-message" variable (:default-value "* Helm kill ring
-
-** Tips
-
-Every Helm session lets you save a candidate to the kill-ring / clipboard /
-primary-selection with `\\<helm-map>\\[helm-kill-selection-and-quit]'.
-
-To save space, Helm-kill-ring truncates the candidates longer than
-`helm-kill-ring-max-offset'.
-`\\<helm-kill-ring-map>\\[helm-kill-ring-kill-selection]' then saves the whole
-text and not the truncated value.  The view of truncated candidates can be
-toggled; see the command list below.
-
-As opposed to `yank', numeric prefix arguments are ignored with
-`helm-show-kill-ring': there is no need for them since selection happens within
-Helm.  Moreover Helm has [[Shortcuts for executing Default Action on the nth
-candidate][Shortcuts for executing Default Action on the nth candidate]].
-
-It is recommended to globally bind `M-y' to `helm-show-kill-ring'.  Once in the
-Helm-kill-ring session you can navigate to next/previous line with `M-y' and
-`M-u' for convenience.  Of course `\\[helm-next-line]' and `\\[helm-previous-line]' are still available.
-
-It is possible to delete candidates from the kill ring.
-
-You can concatenate marked candidates and yank them in the current
-buffer, thus creating a new entry in the kill ring.  Candidates are
-concatenated with `helm-kill-ring-separator' as default but you can
-change interactively the separator while yanking by using two prefix
-args.  When you have something else than \"\\n\" as default value for
-`helm-kill-ring-separator' and you want to use \"\\n\" from prompt, use
-`C-q C-j' to enter a newline in prompt.
-
-To not push a new entry in the kill ring, use `\\<helm-map>\\[helm-copy-to-buffer]' instead of RET
-(note that you can't change separator with this).
-
-When inserting candidates with the default action (`RET'), `point' is placed at
-the end of the candidate and `mark' at the beginning.  You can revert this behavior
-by using a prefix argument, i.e. `C-u RET', like the regular `yank' command does.
-
-** Commands
-\\<helm-kill-ring-map>
-\\[helm-next-line]		Next line.
-\\[helm-previous-line]		Previous line.
-\\[helm-kill-ring-delete]		Delete entry.
-\\[helm-kill-ring-toggle-truncated]		Toggle truncated view of candidate.
-\\[helm-kill-ring-kill-selection]		Kill non-truncated of selection.") nil [60206 62475])
-            ("helm-org-headings-help-message" variable (:default-value "* Helm Org headings
-
-** Tips
-
-*** Refiling
-
-You can refile one or more headings at a time.
-
-To refile one heading, move the point to the entry you want to refile and run
-\\[helm-org-in-buffer-headings].  Then select the heading you want to refile to
-and press \\<helm-org-headings-map>\\[helm-org-run-refile-heading-to] or select the refile action from the actions menu.
-
-To refile multiple headings, run \\[helm-org-in-buffer-headings] and mark the
-headings you want to refile.  Then select the heading you want to refile to
-(without marking it) and press \\<helm-org-headings-map>\\[helm-org-run-refile-heading-to] or select the refile action from the
-actions menu.
-
-*** Tags completion
-
-Tags completion use `completing-read-multiple', perhaps have a
-look at its docstring.
-
-**** Single tag
-
-From an org heading hit C-c C-c which provide a
-\"Tags\" prompt, then hit TAB and RET if you want to enter an
-existing tag or write a new tag in prompt.  At this point you end
-up with an entry in your prompt, if you enter RET, the entry is
-added as tag in your org header.
-
-**** Multiple tags
-
-If you want to add more tag to your org header, add a separator[1] after
-your tag and write a new tag or hit TAB to find another existing
-tag, and so on until you have all the tags you want
-e.g \"foo,bar,baz\" then press RET to finally add the tags to your
-org header.
-Note: [1] A separator can be a comma, a colon i.e. [,:] or a space.
-
-** Commands
-\\<helm-org-headings-map>
-\\[helm-org-run-open-heading-in-indirect-buffer]		Open heading in indirect buffer.
-\\[helm-org-run-refile-heading-to]		Refile current or marked headings to selection.
-\\[helm-org-run-insert-link-to-heading-at-marker]		Insert link at point to selection.") nil [62500 64270])
-            ("helm-comp-read-help-message" function nil nil [64295 65214])
-            ("helm-comp-read-mode-line" variable (:default-value "\\<helm-comp-read-map>C/\\[helm-cr-empty-string]:Empty \\<helm-map>\\[helm-help]:Help \\[helm-select-action]:Act \\[helm-maybe-exit-minibuffer]/f1/f2/f-n:NthAct \\[helm-toggle-suspend-update]:Tog.suspend") nil [65261 65516])
-            ("helm-read-file-name-mode-line-string" variable (:default-value "\\<helm-read-file-map>\\[helm-help]:Help C/\\[helm-cr-empty-string]:Empty \\<helm-map>\\[helm-select-action]:Act \\[helm-maybe-exit-minibuffer]/f1/f2/f-n:NthAct \\[helm-toggle-suspend-update]:Tog.suspend") nil [65533 65863])
-            ("helm-top-mode-line" variable (:default-value "\\<helm-top-map>\\[helm-help]:Help \\<helm-map>\\[helm-select-action]:Act \\[helm-maybe-exit-minibuffer]/f1/f2/f-n:NthAct \\[helm-toggle-suspend-update]:Tog.suspend") nil [65880 66088])
-            ("helm-help" package nil nil [66091 66111]))          
-      :file "helm-help.el"
-      :pointmax 66252
-      :fsize 66254
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [919 936])
-            ("eieio" include nil nil [937 953])
-            ("helm-type-file" type
-               (:superclasses "helm-source"
-                :type "class")
-                nil [967 1047])
-            ("helm-source-get-action-from-type" function
-               (:parent "helm-type-file"
-                :arguments ("object"))
-                nil [1049 1149])
-            ("helm-actions-from-type-file" function nil nil [1151 1318])
-            ("helm-generic-files-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "C-]") (quote helm-ff-run-toggle-basename)) (define-key map (kbd "C-s") (quote helm-ff-run-grep)) (define-key map (kbd "M-g s") (quote helm-ff-run-grep)) (define-key map (kbd "M-g z") (quote helm-ff-run-zgrep)) (define-key map (kbd "M-g p") (quote helm-ff-run-pdfgrep)) (define-key map (kbd "C-c g") (quote helm-ff-run-gid)) (define-key map (kbd "M-R") (quote helm-ff-run-rename-file)) (define-key map (kbd "M-C") (quote helm-ff-run-copy-file)) (define-key map (kbd "M-B") (quote helm-ff-run-byte-compile-file)) (define-key map (kbd "M-L") (quote helm-ff-run-load-file)) (define-key map (kbd "M-S") (quote helm-ff-run-symlink-file)) (define-key map (kbd "M-H") (quote helm-ff-run-hardlink-file)) (define-key map (kbd "M-D") (quote helm-ff-run-delete-file)) (define-key map (kbd "C-=") (quote helm-ff-run-ediff-file)) (define-key map (kbd "C-c =") (quote helm-ff-run-ediff-merge-file)) (define-key map (kbd "C-c o") (quote helm-ff-run-switch-other-window)) (define-key map (kbd "C-c r") (quote helm-ff-run-find-file-as-root)) (define-key map (kbd "C-c C-o") (quote helm-ff-run-switch-other-frame)) (define-key map (kbd "M-i") (quote helm-ff-properties-persistent)) (define-key map (kbd "C-c C-x") (quote helm-ff-run-open-file-externally)) (define-key map (kbd "C-c X") (quote helm-ff-run-open-file-with-default-tool)) (define-key map (kbd "M-.") (quote helm-ff-run-etags)) (define-key map (kbd "C-c @") (quote helm-ff-run-insert-org-link)) (define-key map (kbd "C-x C-q") (quote helm-ff-run-marked-files-in-dired)) (define-key map (kbd "C-c C-a") (quote helm-ff-run-mail-attach-files)) map)) nil [1320 3060])
-            ("helm-type-file-actions" variable (:default-value (helm-make-actions "Find file" (quote helm-find-many-files) "Find file as root" (quote helm-find-file-as-root) "Find file other window" (quote helm-find-files-other-window) "Find file other frame" (quote find-file-other-frame) "Open dired in file's directory" (quote helm-open-dired) "Attach file(s) to mail buffer `C-c C-a'" (quote helm-ff-mail-attach-files) "Marked files in dired" (quote helm-marked-files-in-dired) "Grep File(s) `C-u recurse'" (quote helm-find-files-grep) "Zgrep File(s) `C-u Recurse'" (quote helm-ff-zgrep) "Pdfgrep File(s)" (quote helm-ff-pdfgrep) "Insert as org link" (quote helm-files-insert-as-org-link) "Checksum File" (quote helm-ff-checksum) "Ediff File" (quote helm-find-files-ediff-files) "Ediff Merge File" (quote helm-find-files-ediff-merge-files) "Etags `M-., C-u reload tag file'" (quote helm-ff-etags-select) "View file" (quote view-file) "Insert file" (quote insert-file) "Add marked files to file-cache" (quote helm-ff-cache-add-file) "Delete file(s)" (quote helm-ff-delete-files) "Copy file(s) `M-C, C-u to follow'" (quote helm-find-files-copy) "Rename file(s) `M-R, C-u to follow'" (quote helm-find-files-rename) "Symlink files(s) `M-S, C-u to follow'" (quote helm-find-files-symlink) "Relsymlink file(s) `C-u to follow'" (quote helm-find-files-relsymlink) "Hardlink file(s) `M-H, C-u to follow'" (quote helm-find-files-hardlink) "Open file externally (C-u to choose)" (quote helm-open-file-externally) "Open file with default tool" (quote helm-open-file-with-default-tool) "Find file in hex dump" (quote hexl-find-file))) nil [3062 5104])
-            ("helm--setup-source" function
-               (:parent "helm-type-file"
-                :arguments ("_source"))
-                nil [5106 5172])
-            ("helm--setup-source" function
-               (:parent "helm-type-file"
-                :arguments ("source"))
-                nil [5174 6006])
-            ("helm-type-bookmark" type
-               (:superclasses "helm-source"
-                :type "class")
-                nil [6023 6107])
-            ("helm-type-bookmark-actions" variable (:default-value (helm-make-actions "Jump to bookmark" (quote helm-bookmark-jump) "Jump to BM other window" (quote helm-bookmark-jump-other-window) "Jump to BM other frame" (quote helm-bookmark-jump-other-frame) "Bookmark edit annotation" (quote bookmark-edit-annotation) "Bookmark show annotation" (quote bookmark-show-annotation) "Delete bookmark(s)" (quote helm-delete-marked-bookmarks) "Edit Bookmark" (quote helm-bookmark-edit-bookmark) "Rename bookmark" (quote helm-bookmark-rename) "Relocate bookmark" (quote bookmark-relocate))) nil [6109 6770])
-            ("helm-source-get-action-from-type" function
-               (:parent "helm-type-bookmark"
-                :arguments ("object"))
-                nil [6772 6876])
-            ("helm--setup-source" function
-               (:parent "helm-type-bookmark"
-                :arguments ("_source"))
-                nil [6878 6948])
-            ("helm--setup-source" function
-               (:parent "helm-type-bookmark"
-                :arguments ("source"))
-                nil [6950 7426])
-            ("helm-type-buffer" type
-               (:superclasses "helm-source"
-                :type "class")
-                nil [7441 7520])
-            ("helm-type-buffer-actions" variable (:default-value (helm-make-actions "Switch to buffer(s)" (quote helm-buffer-switch-buffers) "Switch to buffer(s) other window `C-c o'" (quote helm-buffer-switch-buffers-other-window) "Switch to buffer other frame `C-c C-o'" (quote switch-to-buffer-other-frame) "Browse project from buffer" (quote helm-buffers-browse-project) "Query replace regexp `C-M-%'" (quote helm-buffer-query-replace-regexp) "Query replace `M-%'" (quote helm-buffer-query-replace) "View buffer" (quote view-buffer) "Display buffer" (quote display-buffer) "Rename buffer" (quote helm-buffers-rename-buffer) "Grep buffers `M-g s' (C-u grep all buffers)" (quote helm-zgrep-buffers) "Multi occur buffer(s) `C-s'" (quote helm-multi-occur-as-action) "Revert buffer(s) `M-U'" (quote helm-revert-marked-buffers) "Insert buffer" (quote insert-buffer) "Kill buffer(s) `M-D'" (quote helm-kill-marked-buffers) "Diff with file `C-='" (quote diff-buffer-with-file) "Ediff Marked buffers `C-c ='" (quote helm-ediff-marked-buffers) "Ediff Merge marked buffers `M-='" (lambda (candidate) (helm-ediff-marked-buffers candidate t)))) nil [7522 8708])
-            ("helm-source-get-action-from-type" function
-               (:parent "helm-type-buffer"
-                :arguments ("object"))
-                nil [8710 8812])
-            ("helm--setup-source" function
-               (:parent "helm-type-buffer"
-                :arguments ("_source"))
-                nil [8814 8882])
-            ("helm--setup-source" function
-               (:parent "helm-type-buffer"
-                :arguments ("source"))
-                nil [8884 9379])
-            ("helm-type-function" type
-               (:superclasses "helm-source"
-                :type "class")
-                nil [9395 9483])
-            ("helm-type-function-actions" variable (:default-value (helm-make-actions "Describe command" (quote describe-function) "Add command to kill ring" (quote helm-kill-new) "Go to command's definition" (quote find-function) "Debug on entry" (quote debug-on-entry) "Cancel debug on entry" (quote cancel-debug-on-entry) "Trace function" (quote trace-function) "Trace function (background)" (quote trace-function-background) "Untrace function" (quote untrace-function))) nil [9485 10018])
-            ("helm-source-get-action-from-type" function
-               (:parent "helm-type-function"
-                :arguments ("object"))
-                nil [10020 10124])
-            ("helm-actions-from-type-function" function nil nil [10126 10301])
-            ("helm--setup-source" function
-               (:parent "helm-type-function"
-                :arguments ("_source"))
-                nil [10303 10373])
-            ("helm--setup-source" function
-               (:parent "helm-type-function"
-                :arguments ("source"))
-                nil [10375 10755])
-            ("helm-type-command" type
-               (:superclasses "helm-source"
-                :type "class")
-                nil [10771 10857])
-            ("helm-actions-from-type-command" function nil nil [10859 11032])
-            ("helm-type-command-actions" variable (:default-value (append (helm-make-actions "Call interactively" (quote helm-call-interactively)) (helm-actions-from-type-function))) nil [11034 11319])
-            ("helm--setup-source" function
-               (:parent "helm-type-command"
-                :arguments ("_source"))
-                nil [11321 11390])
-            ("helm--setup-source" function
-               (:parent "helm-type-command"
-                :arguments ("source"))
-                nil [11392 11693])
-            ("helm-type-timers" type
-               (:superclasses "helm-source"
-                :type "class")
-                nil [11705 11789])
-            ("helm-type-timers-actions" variable (:default-value (quote (("Cancel Timer" lambda (_timer) (let ((mkd (helm-marked-candidates))) (cl-loop for timer in mkd do (cancel-timer timer)))) ("Describe Function" lambda (tm) (describe-function (timer--function tm))) ("Find Function" lambda (tm) (helm-aif (timer--function tm) (if (byte-code-function-p it) (message "Can't find anonymous function `%s'" it) (find-function it))))))) nil [11791 12559])
-            ("helm--setup-source" function
-               (:parent "helm-type-timers"
-                :arguments ("_source"))
-                nil [12561 12629])
-            ("helm--setup-source" function
-               (:parent "helm-type-timers"
-                :arguments ("source"))
-                nil [12631 12995])
-            ("helm-build-type-file" function nil nil [13011 13077])
-            ("helm-build-type-function" function nil nil [13079 13153])
-            ("helm-build-type-command" function nil nil [13155 13227])
-            ("helm-types" package nil nil [13229 13250]))          
-      :file "helm-types.el"
-      :pointmax 13392
-      :fsize 13391
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [813 830])
-            ("helm" include nil nil [831 846])
-            ("helm-help" include nil nil [847 867])
-            ("dired" include nil nil [887 903])
-            ("declare-function" code nil nil [906 986])
-            ("declare-function" code nil nil [987 1027])
-            ("winner-boring-buffers" variable nil nil [1028 1058])
-            ("helm-show-completion-overlay" variable nil nil [1059 1096])
-            ("helm-utils" customgroup (:user-visible-flag t) nil [1100 1173])
-            ("helm-su-or-sudo" variable (:default-value "sudo") nil [1175 1287])
-            ("helm-default-kbsize" variable (:default-value 1024.0) nil [1289 1480])
-            ("define-obsolete-variable-alias" code nil nil [1482 1620])
-            ("helm-highlight-matches-around-point-max-lines" variable (:default-value 15) nil [1622 1790])
-            ("helm-buffers-to-resize-on-pa" variable nil nil [1792 1981])
-            ("helm-resize-on-pa-text-height" variable (:default-value 12) nil [1983 2133])
-            ("helm-sources-using-help-echo-popup" variable (:default-value (quote ("Moccur" "Imenu in all buffers" "Ack-Grep" "AG" "RG" "Gid" "Git-Grep"))) nil [2135 2423])
-            ("helm-html-decode-entities-function" variable (:default-value (function helm-html-decode-entities-string)) nil [2425 2878])
-            ("helm-goto-line-before-hook" variable (:default-value (quote (helm-save-current-pos-to-mark-ring))) nil [2882 3469])
-            ("helm-save-pos-before-jump-register" variable (:default-value 95) nil [3471 3595])
-            ("helm-html-entities-alist" variable
-               (:constant-flag t
-                :default-value (quote (("&quot;" . 34) ("&gt;" . 62) ("&lt;" . 60) ("&amp;" . 38) ("&euro;" . 8364) ("&Yuml;" . 89) ("&iexcl;" . 161) ("&cent;" . 162) ("&pound;" . 163) ("&curren;" . 164) ("&yen" . 165) ("&brvbar;" . 166) ("&sect;" . 167) ("&uml;" . 32) ("&copy;" . 169) ("&ordf;" . 97) ("&laquo;" . 171) ("&not;" . 172) ("&masr;" . 174) ("&deg;" . 176) ("&plusmn;" . 177) ("&sup2;" . 50) ("&sup3;" . 51) ("&acute;" . 39) ("&micro;" . 956) ("&para;" . 182) ("&middot;" . 183) ("&cedil;" . 32) ("&sup1;" . 49) ("&ordm;" . 111) ("&raquo;" . 187) ("&frac14;" . 49) ("&frac12;" . 49) ("&frac34;" . 51) ("&iquest;" . 191) ("&Agrave;" . 192) ("&Aacute;" . 193) ("&Acirc;" . 194) ("&Atilde;" . 195) ("&Auml;" . 196) ("&Aring;" . 197) ("&Aelig" . 198) ("&Ccedil;" . 199) ("&Egrave;" . 200) ("&Eacute;" . 201) ("&Ecirc;" . 202) ("&Euml;" . 203) ("&Igrave;" . 204) ("&Iacute;" . 205) ("&Icirc;" . 206) ("&Iuml;" . 207) ("&eth;" . 208) ("&Ntilde;" . 209) ("&Ograve;" . 210) ("&Oacute;" . 211) ("&Ocirc;" . 212) ("&Otilde;" . 213) ("&Ouml;" . 214) ("&times;" . 215) ("&Oslash;" . 216) ("&Ugrave;" . 217) ("&Uacute;" . 218) ("&Ucirc;" . 219) ("&Uuml;" . 220) ("&Yacute;" . 221) ("&thorn;" . 222) ("&szlig;" . 223) ("&agrave;" . 224) ("&aacute;" . 225) ("&acirc;" . 226) ("&atilde;" . 227) ("&auml;" . 228) ("&aring;" . 229) ("&aelig;" . 230) ("&ccedil;" . 231) ("&egrave;" . 232) ("&eacute;" . 233) ("&ecirc;" . 234) ("&euml;" . 235) ("&igrave;" . 236) ("&iacute;" . 237) ("&icirc;" . 238) ("&iuml;" . 239) ("&eth;" . 240) ("&ntilde;" . 241) ("&ograve;" . 242) ("&oacute;" . 243) ("&ocirc;" . 244) ("&otilde;" . 245) ("&ouml;" . 246) ("&divide;" . 247) ("&oslash;" . 248) ("&ugrave;" . 249) ("&uacute;" . 250) ("&ucirc;" . 251) ("&uuml;" . 252) ("&yacute;" . 253) ("&thorn;" . 254) ("&yuml;" . 255) ("&reg;" . 174) ("&shy;" . 173))))
-                nil [3597 6615])
-            ("helm-find-many-files-after-hook" variable nil nil [6617 6713])
-            ("helm-selection-line" variable
-               (:default-value (quote ((t (:inherit highlight :distant-foreground "black"))))
-                :type "face")
-                nil [6730 6910])
-            ("helm-match-item" variable
-               (:default-value (quote ((t (:inherit isearch))))
-                :type "face")
-                nil [6912 7048])
-            ("helm-window-prefer-horizontal-split" variable nil nil [7078 7784])
-            ("helm-window-show-buffers-function" variable (:default-value (function helm-window-default-split-fn)) nil [7786 8332])
-            ("helm-window-show-buffers" function (:arguments ("buffers" "other-window")) nil [8334 9051])
-            ("helm-window-default-split-fn" function (:arguments ("candidates" "other-window-fn")) nil [9053 9825])
-            ("helm-window-alternate-split-fn" function (:arguments ("candidates" "other-window-fn")) nil [9827 10772])
-            ("helm-window-mosaic-fn" function (:arguments ("candidates" "other-window-fn")) nil [10774 14599])
-            ("helm-window-other-window" function (:arguments ("buffer-or-name" "balance")) nil [14601 15506])
-            ("cl-defun" code nil nil [15508 15862])
-            ("helm-goto-char" function (:arguments ("loc")) nil [15864 16403])
-            ("helm-goto-line" function (:arguments ("lineno" "noanim")) nil [16405 16869])
-            ("helm-save-pos-to-register-before-jump" function nil nil [16871 17174])
-            ("helm-save-current-pos-to-mark-ring" function nil nil [17176 17462])
-            ("helm-show-all-in-this-source-only" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [17464 17951])
-            ("put" code nil nil [17952 18005])
-            ("helm-display-all-sources" function (:user-visible-flag t) nil [18007 18184])
-            ("put" code nil nil [18185 18229])
-            ("helm-displaying-source-names" function nil nil [18231 18633])
-            ("helm-handle-winner-boring-buffers" function nil nil [18635 18951])
-            ("add-hook" code nil nil [18952 19017])
-            ("helm-quit-and-find-file" function (:user-visible-flag t) nil [19019 22417])
-            ("put" code nil nil [22418 22461])
-            ("helm-generic-sort-fn" function (:arguments ("s1" "s2")) nil [22463 24174])
-            ("cl-defun" code nil nil [24176 24866])
-            ("cl-defun" code nil nil [24868 29642])
-            ("helm-split-mode-file-attributes" function (:arguments ("str" "string")) nil [29644 30350])
-            ("helm-format-columns-of-files" function (:arguments ("files")) nil [30352 30588])
-            ("with-helm-display-marked-candidates" function (:arguments ("buffer-or-name" "candidates" "body")) nil [30590 31565])
-            ("helm-match-line-overlay" variable nil nil [31615 31651])
-            ("helm--match-item-overlays" variable nil nil [31652 31690])
-            ("helm-highlight-current-line" function (:arguments ("start" "end" "buf" "face")) nil [31692 34550])
-            ("helm--translate-pcre-to-elisp" function (:arguments ("regexp")) nil [34552 35352])
-            ("helm-match-line-cleanup" function nil nil [35354 35593])
-            ("helm-match-line-cleanup-maybe" function nil nil [35595 35696])
-            ("helm-match-line-update" function nil nil [35698 35843])
-            ("helm-persistent-autoresize-hook" function nil nil [35845 36119])
-            ("helm-match-line-cleanup-pulse" function nil nil [36121 36214])
-            ("add-hook" code nil nil [36216 36281])
-            ("add-hook" code nil nil [36282 36360])
-            ("add-hook" code nil nil [36361 36415])
-            ("add-hook" code nil nil [36416 36481])
-            ("add-hook" code nil nil [36482 36551])
-            ("helm--show-help-echo-timer" variable nil nil [36616 36655])
-            ("helm-cancel-help-echo-timer" function nil nil [36657 36819])
-            ("helm-maybe-show-help-echo" function nil nil [36821 37741])
-            ("define-minor-mode" code nil nil [37758 38222])
-            ("helm-open-file-with-default-tool" function (:arguments ("file")) nil [38224 38824])
-            ("helm-open-dired" function (:arguments ("file")) nil [38826 39064])
-            ("helm-require-or-error" function (:arguments ("feature" "function")) nil [39066 39199])
-            ("helm-find-file-as-root" function (:arguments ("candidate")) nil [39201 39854])
-            ("helm-find-many-files" function (:arguments ("_ignore")) nil [39856 40149])
-            ("helm-read-repeat-string" function (:arguments ("prompt" "count")) nil [40151 40575])
-            ("helm-html-bookmarks-to-alist" function (:arguments ("file" "url-regexp" "bmk-regexp")) nil [40577 41339])
-            ("helm-html-entity-to-string" function (:arguments ("entity")) nil [41341 41677])
-            ("helm-html-decode-entities-string" function (:arguments ("str")) nil [41679 42032])
-            ("helm-utils" package nil nil [42034 42055]))          
-      :file "helm-utils.el"
-      :pointmax 42197
-      :fsize 42282
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax '((close-paren 903 . 904) (symbol 869 . 886) (open-paren 868 . 869)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [810 827])
-            ("helm" include nil nil [828 843])
-            ("helm-lib" include nil nil [844 863])
-            ("helm-utils" include nil nil [864 885])
-            ("info" include nil nil [886 901])
-            ("declare-function" code nil nil [903 962])
-            ("declare-function" code nil nil [963 1020])
-            ("declare-function" code nil nil [1021 1108])
-            ("Info-history" variable nil nil [1109 1130])
-            ("Info-directory-list" variable nil nil [1131 1159])
-            ("helm-info" customgroup (:user-visible-flag t) nil [1177 1270])
-            ("helm-info-default-sources" variable (:default-value (quote (helm-source-info-elisp helm-source-info-cl helm-source-info-eieio helm-source-info-pages))) nil [1272 1569])
-            ("cl-defun" code nil nil [1633 3154])
-            ("helm-info-goto" function (:arguments ("node-line")) nil [3156 3260])
-            ("helm-info-display-to-real" function (:arguments ("line")) nil [3262 3624])
-            ("helm-info-source" type
-               (:superclasses "helm-source-in-buffer"
-                :members 
-                  ( ("info-file" variable (:default-value "nil") nil nil)
-                    ("init" variable (:default-value "(function helm-info-init)") nil nil)
-                    ("display-to-real" variable (:default-value "(function helm-info-display-to-real)") nil nil)
-                    ("get-line" variable (:default-value "(function buffer-substring)") nil nil)
-                    ("action" variable (:default-value "(quote ((\"Goto node\" . helm-info-goto)))") nil nil))                  
-                :type "class")
-                nil [3626 3966])
-            ("helm-build-info-source" function (:arguments ("fname" "args")) nil [3968 4121])
-            ("helm-build-info-index-command" function (:arguments ("name" "doc" "source" "buffer")) nil [4123 4548])
-            ("helm-define-info-index-sources" function (:arguments ("var-value" "commands")) nil [4550 5213])
-            ("helm-info-index-set" function (:arguments ("var" "value")) nil [5215 5315])
-            ("helm-info-searched" variable (:default-value (make-ring 32)) nil [5472 5558])
-            ("helm-get-info-files" function nil nil [5560 6207])
-            ("helm-default-info-index-list" variable (:default-value (helm-get-info-files)) nil [6209 6404])
-            ("helm-info-search-index" function (:arguments ("candidate")) nil [6406 6746])
-            ("helm-def-source--info-files" function nil nil [6748 7140])
-            ("helm-info" function
-               (:user-visible-flag t
-                :arguments ("refresh"))
-                nil [7157 8119])
-            ("helm-info--pages-cache" variable nil nil [8320 8399])
-            ("helm-source-info-pages" variable (:default-value (helm-build-sync-source "Info Pages" :init (function helm-info-pages-init) :candidates (lambda nil helm-info--pages-cache) :action (quote (("Show with Info" lambda (node-str) (info (replace-regexp-in-string "^[^:]+: " "" node-str))))) :requires-pattern 2)) nil [8401 8781])
-            ("helm-info-pages-init" function nil nil [8783 9295])
-            ("helm-info-at-point" function (:user-visible-flag t) nil [9312 9775])
-            ("helm-info" package nil nil [9778 9798]))          
-      :file "helm-info.el"
-      :pointmax 9939
-      :fsize 9938
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [893 910])
-            ("helm" include nil nil [911 926])
-            ("helm-adapt" customgroup (:user-visible-flag t) nil [930 1017])
-            ("helm-adaptive-history-file" variable (:default-value "~/.emacs.d/helm-adaptive-history") nil [1019 1342])
-            ("helm-adaptive-history-length" variable (:default-value 50) nil [1344 1478])
-            ("helm-adaptive-sort-by-frequent-recent-usage" variable (:default-value t) nil [1480 2015])
-            ("helm-adaptive-done" variable nil nil [2030 2137])
-            ("helm-adaptive-history" variable nil nil [2139 2301])
-            ("helm-adaptive-freq-coefficient" variable
-               (:constant-flag t
-                :default-value 5)
-                nil [2303 2346])
-            ("helm-adaptive-recent-coefficient" variable
-               (:constant-flag t
-                :default-value 2)
-                nil [2347 2392])
-            ("helm-adaptive-done-reset" function nil nil [2394 2461])
-            ("define-minor-mode" code nil nil [2478 3567])
-            ("helm-adapt-use-adaptive-p" function (:arguments ("source-name")) nil [3569 4108])
-            ("helm-adaptive-store-selection" function nil nil [4110 7514])
-            ("helm-adaptive-maybe-load-history" function nil nil [7516 7838])
-            ("helm-adaptive-save-history" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [7840 8437])
-            ("helm-adaptive-sort" function (:arguments ("candidates" "source")) nil [8439 12109])
-            ("helm-reset-adaptive-history" function (:user-visible-flag t) nil [12126 12456])
-            ("helm-adaptive-compare" function (:arguments ("x" "y")) nil [12458 12689])
-            ("helm-adaptive" package nil nil [12692 12716]))          
-      :file "helm-adaptive.el"
-      :pointmax 12861
-      :fsize 12860
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [813 830])
-            ("helm" include nil nil [831 846])
-            ("helm-help" include nil nil [847 867])
-            ("url" include nil nil [868 882])
-            ("xml" include nil nil [883 897])
-            ("browse-url" include nil nil [898 919])
-            ("helm-net" customgroup (:user-visible-flag t) nil [923 1014])
-            ("helm-google-suggest-default-browser-function" variable nil nil [1016 1274])
-            ("helm-home-url" variable (:default-value "https://www.google.com") nil [1276 1397])
-            ("helm-surfraw-default-browser-function" variable nil nil [1399 1600])
-            ("helm-google-suggest-url" variable (:default-value "https://encrypted.google.com/complete/search?output=toolbar&q=%s") nil [1602 1837])
-            ("helm-google-suggest-search-url" variable (:default-value "https://encrypted.google.com/search?ie=utf-8&oe=utf-8&q=%s") nil [1839 2062])
-            ("defvaralias" code nil nil [2064 2131])
-            ("make-obsolete-variable" code nil nil [2132 2218])
-            ("helm-net-prefer-curl" variable nil nil [2220 2399])
-            ("helm-surfraw-duckduckgo-url" variable (:default-value "https://duckduckgo.com/lite/?q=%s&kp=1") nil [2401 2705])
-            ("helm-wikipedia-suggest-url" variable (:default-value "https://en.wikipedia.org/w/api.php?action=opensearch&search=%s") nil [2707 2946])
-            ("helm-search-suggest-action-wikipedia-url" variable (:default-value "https://en.wikipedia.org/wiki/Special:Search?search=%s") nil [2948 3172])
-            ("helm-wikipedia-summary-url" variable (:default-value "https://en.wikipedia.org/w/api.php?action=parse&format=json&prop=text&section=0&page=%s") nil [3174 3441])
-            ("helm-search-suggest-action-youtube-url" variable (:default-value "https://www.youtube.com/results?aq=f&search_query=%s") nil [3443 3661])
-            ("helm-search-suggest-action-imdb-url" variable (:default-value "http://www.imdb.com/find?s=all&q=%s") nil [3663 3858])
-            ("helm-search-suggest-action-google-maps-url" variable (:default-value "https://maps.google.com/maps?f=q&source=s_q&q=%s") nil [3860 4082])
-            ("helm-search-suggest-action-google-news-url" variable (:default-value "https://www.google.com/search?safe=off&prmd=nvlifd&source=lnms&tbs=nws:1&q=%s") nil [4084 4335])
-            ("helm-google-suggest-actions" variable (:default-value (quote (("Google Search" . helm-google-suggest-action) ("Wikipedia" lambda (candidate) (helm-search-suggest-perform-additional-action helm-search-suggest-action-wikipedia-url candidate)) ("Youtube" lambda (candidate) (helm-search-suggest-perform-additional-action helm-search-suggest-action-youtube-url candidate)) ("IMDb" lambda (candidate) (helm-search-suggest-perform-additional-action helm-search-suggest-action-imdb-url candidate)) ("Google Maps" lambda (candidate) (helm-search-suggest-perform-additional-action helm-search-suggest-action-google-maps-url candidate)) ("Google News" lambda (candidate) (helm-search-suggest-perform-additional-action helm-search-suggest-action-google-news-url candidate))))) nil [4337 5560])
-            ("helm-browse-url-firefox-new-window" variable (:default-value "-new-tab") nil [5562 5858])
-            ("helm-search-suggest-perform-additional-action" function (:arguments ("url" "query")) nil [5927 6099])
-            ("helm-net--url-retrieve-sync" function (:arguments ("request" "parser")) nil [6101 6369])
-            ("helm-google-suggest-parser" function nil nil [6402 6714])
-            ("helm-google-suggest-fetch" function (:arguments ("input")) nil [6716 6986])
-            ("helm-google-suggest-set-candidates" function (:arguments ("request-prefix")) nil [6988 7702])
-            ("helm-ggs-set-number-result" function (:arguments ("num")) nil [7704 8204])
-            ("helm-google-suggest-action" function (:arguments ("candidate")) nil [8206 8532])
-            ("helm-google-suggest-default-function" variable (:default-value (quote helm-google-suggest-set-candidates)) nil [8534 8669])
-            ("helm-source-google-suggest" variable (:default-value (helm-build-sync-source "Google Suggest" :candidates (lambda nil (funcall helm-google-suggest-default-function)) :action (quote helm-google-suggest-actions) :volatile t :keymap helm-map :requires-pattern 3)) nil [8671 8945])
-            ("helm-google-suggest-emacs-lisp" function nil nil [8947 9096])
-            ("declare-function" code nil nil [9130 9186])
-            ("helm-wikipedia-suggest-fetch" function nil nil [9187 9495])
-            ("helm-wikipedia--parse-buffer" function nil nil [9497 10046])
-            ("helm-wikipedia--summary-cache" variable (:default-value (make-hash-table :test (quote equal))) nil [10048 10117])
-            ("helm-wikipedia-show-summary" function
-               (:user-visible-flag t
-                :arguments ("input"))
-                nil [10118 10520])
-            ("helm-wikipedia-persistent-action" function (:arguments ("candidate")) nil [10522 11111])
-            ("helm-wikipedia--get-summary" function (:arguments ("input")) nil [11113 11864])
-            ("helm-wikipedia--fetch-summary" function (:arguments ("input")) nil [11866 12099])
-            ("helm-wikipedia--parse-summary" function nil nil [12101 13517])
-            ("helm-wikipedia-map" variable (:default-value (let ((map (copy-keymap helm-map))) (define-key map (kbd "<C-return>") (quote helm-wikipedia-show-summary-action)) map)) nil [13520 13711])
-            ("helm-source-wikipedia-suggest" variable (:default-value (helm-build-sync-source "Wikipedia Suggest" :candidates (function helm-wikipedia-suggest-fetch) :action (quote (("Wikipedia" lambda (candidate) (helm-search-suggest-perform-additional-action helm-search-suggest-action-wikipedia-url candidate)) ("Show summary in new buffer (C-RET)" . helm-wikipedia-show-summary))) :persistent-action (function helm-wikipedia-persistent-action) :persistent-help "show summary" :volatile t :keymap helm-wikipedia-map :requires-pattern 3)) nil [13713 14339])
-            ("helm-wikipedia-show-summary-action" function (:user-visible-flag t) nil [14341 14573])
-            ("helm-browse-url-chromium-program" variable (:default-value "chromium-browser") nil [14766 14826])
-            ("helm-browse-url-uzbl-program" variable (:default-value "uzbl-browser") nil [14827 14879])
-            ("helm-browse-url-conkeror-program" variable (:default-value "conkeror") nil [14880 14932])
-            ("helm-browse-url-opera-program" variable (:default-value "opera") nil [14933 14979])
-            ("helm-browse-url-default-browser-alist" variable
-               (:user-visible-flag t
-                :default-value (\` (((\, (or (and (boundp (quote w3m-command)) w3m-command) "/usr/bin/w3m")) . w3m-browse-url) ((\, browse-url-firefox-program) . browse-url-firefox) ((\, helm-browse-url-chromium-program) . helm-browse-url-chromium) ((\, helm-browse-url-conkeror-program) . helm-browse-url-conkeror) ((\, helm-browse-url-opera-program) . helm-browse-url-opera) ((\, helm-browse-url-uzbl-program) . helm-browse-url-uzbl) ((\, browse-url-kde-program) . browse-url-kde) ((\, browse-url-gnome-moz-program) . browse-url-gnome-moz) ((\, browse-url-mozilla-program) . browse-url-mozilla) ((\, browse-url-galeon-program) . browse-url-galeon) ((\, browse-url-netscape-program) . browse-url-netscape) ((\, browse-url-mosaic-program) . browse-url-mosaic) ((\, browse-url-xterm-program) . browse-url-text-xterm) ("emacs" . eww-browse-url))))
-                nil [14980 15920])
-            ("cl-defun" code nil nil [15922 16354])
-            ("helm-browse-url-firefox" function
-               (:user-visible-flag t
-                :arguments ("url" "_ignore"))
-                nil [16371 17043])
-            ("helm-browse-url-opera" function
-               (:user-visible-flag t
-                :arguments ("url" "_ignore"))
-                nil [17060 17666])
-            ("helm-browse-url-chromium" function
-               (:user-visible-flag t
-                :arguments ("url" "_ignore"))
-                nil [17683 17872])
-            ("helm-browse-url-uzbl" function
-               (:user-visible-flag t
-                :arguments ("url" "_ignore"))
-                nil [17889 18063])
-            ("helm-browse-url-conkeror" function
-               (:user-visible-flag t
-                :arguments ("url" "_ignore"))
-                nil [18080 18261])
-            ("helm-browse-url-default-browser" function (:arguments ("url" "args")) nil [18263 18669])
-            ("helm-browse-url" function (:arguments ("url" "args")) nil [18671 18856])
-            ("helm-surfraw-engines-history" variable nil nil [18961 19002])
-            ("helm-surfraw-input-history" variable nil nil [19003 19042])
-            ("helm-surfraw--elvi-cache" variable nil nil [19043 19080])
-            ("helm-build-elvi-list" function nil nil [19082 19405])
-            ("helm-surfraw" function
-               (:user-visible-flag t
-                :arguments ("pattern" "engine"))
-                nil [19422 21062])
-            ("helm-google-suggest" function (:user-visible-flag t) nil [21079 21255])
-            ("helm-wikipedia-suggest" function (:user-visible-flag t) nil [21272 21475])
-            ("helm-net" package nil nil [21478 21497]))          
-      :file "helm-net.el"
-      :pointmax 21637
-      :fsize 21636
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [817 834])
-            ("helm" include nil nil [835 850])
-            ("helm-lib" include nil nil [851 870])
-            ("helm-files" include nil nil [871 892])
-            ("crm-separator" variable nil nil [894 916])
-            ("helm-mode" customgroup (:user-visible-flag t) nil [920 987])
-            ("helm-completing-read-handlers-alist" variable (:default-value (quote ((describe-function . helm-completing-read-symbols) (describe-variable . helm-completing-read-symbols) (describe-symbol . helm-completing-read-symbols) (debug-on-entry . helm-completing-read-symbols) (find-function . helm-completing-read-symbols) (disassemble . helm-completing-read-symbols) (trace-function . helm-completing-read-symbols) (trace-function-foreground . helm-completing-read-symbols) (trace-function-background . helm-completing-read-symbols) (find-tag . helm-completing-read-default-find-tag) (org-capture . helm-org-completing-read-tags) (org-set-tags . helm-org-completing-read-tags) (ffap-alternate-file) (tmm-menubar) (find-file) (find-file-at-point . helm-completing-read-sync-default-handler) (ffap . helm-completing-read-sync-default-handler) (execute-extended-command) (dired-do-rename . helm-read-file-name-handler-1) (dired-do-copy . helm-read-file-name-handler-1) (dired-do-symlink . helm-read-file-name-handler-1) (dired-do-relsymlink . helm-read-file-name-handler-1) (dired-do-hardlink . helm-read-file-name-handler-1) (basic-save-buffer . helm-read-file-name-handler-1) (write-file . helm-read-file-name-handler-1) (write-region . helm-read-file-name-handler-1)))) nil [989 5389])
-            ("helm-comp-read-case-fold-search" variable (:default-value helm-case-fold-search) nil [5391 5610])
-            ("helm-mode-handle-completion-in-region" variable (:default-value t) nil [5612 5855])
-            ("helm-mode-reverse-history" variable (:default-value t) nil [5857 6014])
-            ("helm-mode-no-completion-in-region-in-modes" variable nil nil [6016 6181])
-            ("helm-completion-in-region-fuzzy-match" variable nil nil [6183 6411])
-            ("helm-completion-in-region-default-sort-fn" variable (:default-value (quote helm-completion-in-region-sort-fn)) nil [6413 6865])
-            ("helm-mode-fuzzy-match" variable nil nil [6867 7255])
-            ("helm-mode-minibuffer-setup-hook-black-list" variable (:default-value (quote (minibuffer-completion-help))) nil [7257 7596])
-            ("helm-completing-read-dynamic-complete" variable nil nil [7598 8243])
-            ("helm-comp-read-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "<C-return>") (quote helm-cr-empty-string)) (define-key map (kbd "M-RET") (quote helm-cr-empty-string)) map)) nil [8247 8513])
-            ("helm-cr-empty-string" function (:user-visible-flag t) nil [8541 8720])
-            ("put" code nil nil [8721 8761])
-            ("helm-mode--keyboard-quit" function nil nil [8763 8943])
-            ("cl-defun" code nil nil [8945 13915])
-            ("helm-cr--pattern-in-candidates-p" function (:arguments ("candidates")) nil [13917 14192])
-            ("helm-cr-default-transformer" function (:arguments ("candidates" "source")) nil [14194 15932])
-            ("helm-comp-read--move-to-first-real-candidate" function nil nil [15934 16125])
-            ("helm-cr-default" function (:arguments ("default" "cands")) nil [16127 16687])
-            ("cl-defun" code nil nil [16704 28812])
-            ("helm-completion-mode-string" variable (:default-value " Helm") nil [29212 29256])
-            ("helm-completion-mode-quit-message" variable (:default-value "Helm completion disabled") nil [29258 29329])
-            ("helm-completion-mode-start-message" variable (:default-value "Helm completion enabled") nil [29331 29402])
-            ("helm-completing-read-symbols" function (:arguments ("prompt" "_collection" "test" "_require-match" "init" "hist" "default" "_inherit-input-method" "name" "buffer")) nil [29435 30602])
-            ("helm-completing-read-default-1" function (:arguments ("prompt" "collection" "test" "require-match" "init" "hist" "default" "_inherit-input-method" "name" "buffer" "cands-in-buffer" "exec-when-only-one")) nil [30639 32543])
-            ("helm-completing-read-default-find-tag" function (:arguments ("prompt" "collection" "test" "require-match" "init" "hist" "default" "inherit-input-method" "name" "buffer")) nil [32545 33304])
-            ("helm-completing-read-sync-default-handler" function (:arguments ("prompt" "collection" "test" "require-match" "init" "hist" "default" "inherit-input-method" "name" "buffer")) nil [33306 33704])
-            ("helm-completing-read-default-handler" function (:arguments ("prompt" "collection" "test" "require-match" "init" "hist" "default" "inherit-input-method" "name" "buffer")) nil [33706 34183])
-            ("helm--generic-read-buffer" function (:arguments ("prompt" "default" "require-match" "predicate")) nil [34185 34498])
-            ("cl-defun" code nil nil [34500 39911])
-            ("cl-defun" code nil nil [39962 47480])
-            ("helm-mode--default-filename" function (:arguments ("fname" "dir" "initial")) nil [47482 48023])
-            ("cl-defun" code nil nil [48025 52842])
-            ("helm-read-file-name-handler-1" function (:arguments ("prompt" "dir" "default-filename" "mustmatch" "initial" "predicate" "name" "buffer")) nil [52897 53946])
-            ("helm-mode--advice-lisp--local-variables" function (:arguments ("old--fn" "args")) nil [53978 54089])
-            ("helm-completion-in-region-sort-fn" function (:arguments ("candidates" "_source")) nil [54091 54247])
-            ("helm--completion-in-region" function (:arguments ("start" "end" "collection" "predicate")) nil [54249 61483])
-            ("helm-mode--in-file-completion-p" function nil nil [61485 61625])
-            ("when" code nil nil [61627 61756])
-            ("define-minor-mode" code nil nil [61773 65142])
-            ("helm-mode" package nil nil [65144 65164]))          
-      :file "helm-mode.el"
-      :pointmax 65305
-      :fsize 65304
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [815 832])
-            ("helm" include nil nil [833 848])
-            ("helm-types" include nil nil [849 870])
-            ("helm-utils" include nil nil [871 892])
-            ("helm-grep" include nil nil [893 913])
-            ("helm-help" include nil nil [914 934])
-            ("helm-locate" include nil nil [935 957])
-            ("helm-tags" include nil nil [958 978])
-            ("helm-buffers" include nil nil [979 1002])
-            ("image-dired" include nil nil [1128 1150])
-            ("tramp" include nil nil [1109 1125])
-            ("dired-x" include nil nil [1088 1106])
-            ("dired-aux" include nil nil [1065 1085])
-            ("ffap" include nil nil [1047 1062])
-            ("thingatpt" include nil nil [1024 1044])
-            ("declare-function" code nil nil [1153 1214])
-            ("declare-function" code nil nil [1215 1318])
-            ("declare-function" code nil nil [1319 1393])
-            ("declare-function" code nil nil [1394 1486])
-            ("declare-function" code nil nil [1487 1563])
-            ("declare-function" code nil nil [1564 1618])
-            ("declare-function" code nil nil [1619 1708])
-            ("declare-function" code nil nil [1709 1756])
-            ("declare-function" code nil nil [1757 1797])
-            ("declare-function" code nil nil [1798 1843])
-            ("declare-function" code nil nil [1844 1885])
-            ("declare-function" code nil nil [1886 1938])
-            ("declare-function" code nil nil [1939 1992])
-            ("declare-function" code nil nil [1993 2044])
-            ("declare-function" code nil nil [2045 2110])
-            ("declare-function" code nil nil [2111 2157])
-            ("declare-function" code nil nil [2158 2200])
-            ("declare-function" code nil nil [2201 2269])
-            ("declare-function" code nil nil [2270 2330])
-            ("recentf-list" variable nil nil [2332 2353])
-            ("helm-mm-matching-method" variable nil nil [2354 2386])
-            ("dired-async-mode" variable nil nil [2387 2412])
-            ("org-directory" variable nil nil [2413 2435])
-            ("helm-files" customgroup (:user-visible-flag t) nil [2438 2525])
-            ("helm-tramp-verbose" variable nil nil [2527 2758])
-            ("helm-ff-auto-update-initial-value" variable nil nil [2760 3162])
-            ("helm-ff-lynx-style-map" variable (:default-value t) nil [3164 3403])
-            ("helm-ff-history-max-length" variable (:default-value 100) nil [3405 3544])
-            ("helm-ff-fuzzy-matching" variable (:default-value t) nil [3546 3746])
-            ("helm-ff-exif-data-program" variable (:default-value "exiftran") nil [3748 3889])
-            ("helm-ff-exif-data-program-args" variable (:default-value "-d") nil [3891 4027])
-            ("helm-ff-newfile-prompt-p" variable (:default-value t) nil [4029 4188])
-            ("helm-ff-avfs-directory" variable (:default-value "~/.avfs") nil [4190 4489])
-            ("helm-ff-file-compressed-list" variable (:default-value (quote ("gz" "bz2" "zip" "7z"))) nil [4491 4660])
-            ("helm-ff-printer-list" variable nil nil [4662 5063])
-            ("helm-ff-transformer-show-only-basename" variable (:default-value t) nil [5065 5331])
-            ("helm-ff-signal-error-on-dot-files" variable (:default-value t) nil [5333 5593])
-            ("helm-ff-search-library-in-sexp" variable nil nil [5595 5745])
-            ("helm-tooltip-hide-delay" variable (:default-value 25) nil [5747 5880])
-            ("helm-ff-file-name-history-use-recentf" variable nil nil [5882 6049])
-            ("helm-ff-skip-boring-files" variable nil nil [6051 6387])
-            ("helm-ff-candidate-number-limit" variable (:default-value 5000) nil [6389 6868])
-            ("helm-ff-up-one-level-preselect" variable (:default-value t) nil [6870 7348])
-            ("helm-files-save-history-extra-sources" variable (:default-value (quote ("Find" "Locate" "Recentf" "Files from Current Directory" "File Cache"))) nil [7350 7595])
-            ("helm-find-files-before-init-hook" variable nil nil [7597 7742])
-            ("helm-find-files-after-init-hook" variable nil nil [7744 7887])
-            ("helm-find-files-bookmark-prefix" variable (:default-value "Helm-find-files: ") nil [7889 8045])
-            ("helm-ff-guess-ffap-filenames" variable nil nil [8047 8281])
-            ("helm-ff-guess-ffap-urls" variable (:default-value t) nil [8283 8584])
-            ("helm-ff-no-preselect" variable nil nil [8586 8733])
-            ("helm-find-files-ignore-thing-at-point" variable nil nil [8735 9045])
-            ("helm-substitute-in-filename-stay-on-remote" variable nil nil [9047 9222])
-            ("helm-ff-goto-first-real-dired-exceptions" variable (:default-value (quote (dired-goto-file))) nil [9224 9418])
-            ("helm-mounted-network-directories" variable nil nil [9420 9754])
-            ("helm-browse-project-default-find-files-fn" variable (:default-value (function helm-browse-project-walk-directory)) nil [9756 10006])
-            ("helm-ff-kill-or-find-buffer-fname-fn" variable (:default-value (function helm-ff-kill-or-find-buffer-fname)) nil [10008 10889])
-            ("helm-modes-using-escaped-strings" variable (:default-value (quote (eshell-mode shell-mode term-mode))) nil [10891 11077])
-            ("helm-ff-allow-recursive-deletes" variable nil nil [11079 11563])
-            ("helm-ff-delete-files-function" variable (:default-value (function helm-delete-marked-files)) nil [11565 12318])
-            ("helm-trash-remote-files" variable nil nil [12320 12866])
-            ("helm-list-directory-function" variable (:default-value (cl-case system-type (gnu/linux (function helm-list-dir-external)) (berkeley-unix (function helm-list-dir-external)) (windows-nt (function helm-list-dir-lisp)) (t (function helm-list-dir-lisp)))) nil [12868 13610])
-            ("helm-files-faces" customgroup (:user-visible-flag t) nil [13629 13764])
-            ("helm-ff-prefix" variable
-               (:default-value (quote ((t (:background "yellow" :foreground "black"))))
-                :type "face")
-                nil [13766 13939])
-            ("helm-ff-executable" variable
-               (:default-value (quote ((t (:foreground "green"))))
-                :type "face")
-                nil [13941 14086])
-            ("helm-ff-suid" variable
-               (:default-value (quote ((t (:background "red" :foreground "white"))))
-                :type "face")
-                nil [14088 14239])
-            ("helm-ff-directory" variable
-               (:default-value (quote ((t (:foreground "DarkRed" :background "LightGray"))))
-                :type "face")
-                nil [14241 14406])
-            ("helm-ff-dotted-directory" variable
-               (:default-value (quote ((t (:foreground "black" :background "DimGray"))))
-                :type "face")
-                nil [14408 14583])
-            ("helm-ff-dotted-symlink-directory" variable
-               (:default-value (quote ((t (:foreground "DarkOrange" :background "DimGray"))))
-                :type "face")
-                nil [14585 14783])
-            ("helm-ff-symlink" variable
-               (:default-value (quote ((t :inherit font-lock-comment-face)))
-                :type "face")
-                nil [14785 14929])
-            ("helm-ff-invalid-symlink" variable
-               (:default-value (quote ((t (:foreground "black" :background "red"))))
-                :type "face")
-                nil [14931 15099])
-            ("helm-ff-denied" variable
-               (:default-value (quote ((t (:foreground "red" :background "black"))))
-                :type "face")
-                nil [15101 15264])
-            ("helm-ff-file" variable
-               (:default-value (quote ((t (:inherit font-lock-builtin-face))))
-                :type "face")
-                nil [15266 15411])
-            ("helm-ff-truename" variable
-               (:default-value (quote ((t (:inherit font-lock-string-face))))
-                :type "face")
-                nil [15413 15568])
-            ("helm-ff-dirs" variable
-               (:default-value (quote ((t (:inherit font-lock-function-name-face))))
-                :type "face")
-                nil [15570 15750])
-            ("helm-ff-socket" variable
-               (:default-value (quote ((t (:foreground "DeepPink"))))
-                :type "face")
-                nil [15752 15892])
-            ("helm-ff-pipe" variable
-               (:default-value (quote ((t (:foreground "yellow" :background "black"))))
-                :type "face")
-                nil [15894 16076])
-            ("helm-history-deleted" variable
-               (:default-value (quote ((t (:inherit helm-ff-invalid-symlink))))
-                :type "face")
-                nil [16078 16237])
-            ("helm-history-remote" variable
-               (:default-value (quote ((t (:foreground "Indianred1"))))
-                :type "face")
-                nil [16239 16388])
-            ("helm-delete-async-message" variable
-               (:default-value (quote ((t (:foreground "yellow"))))
-                :type "face")
-                nil [16390 16523])
-            ("helm-find-files-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "RET") (quote helm-ff-RET)) (define-key map (kbd "C-]") (quote helm-ff-run-toggle-basename)) (define-key map (kbd "C-x C-f") (quote helm-ff-run-locate)) (define-key map (kbd "C-x C-d") (quote helm-ff-run-browse-project)) (define-key map (kbd "C-x r m") (quote helm-ff-bookmark-set)) (define-key map (kbd "C-x r b") (quote helm-find-files-toggle-to-bookmark)) (define-key map (kbd "C-x C-q") (quote helm-ff-run-marked-files-in-dired)) (define-key map (kbd "C-s") (quote helm-ff-run-grep)) (define-key map (kbd "M-g s") (quote helm-ff-run-grep)) (define-key map (kbd "M-g p") (quote helm-ff-run-pdfgrep)) (define-key map (kbd "M-g z") (quote helm-ff-run-zgrep)) (define-key map (kbd "M-g a") (quote helm-ff-run-grep-ag)) (define-key map (kbd "M-g g") (quote helm-ff-run-git-grep)) (define-key map (kbd "M-g i") (quote helm-ff-run-gid)) (define-key map (kbd "M-.") (quote helm-ff-run-etags)) (define-key map (kbd "M-R") (quote helm-ff-run-rename-file)) (define-key map (kbd "M-C") (quote helm-ff-run-copy-file)) (define-key map (kbd "M-B") (quote helm-ff-run-byte-compile-file)) (define-key map (kbd "M-L") (quote helm-ff-run-load-file)) (define-key map (kbd "M-S") (quote helm-ff-run-symlink-file)) (define-key map (kbd "M-Y") (quote helm-ff-run-relsymlink-file)) (define-key map (kbd "M-H") (quote helm-ff-run-hardlink-file)) (define-key map (kbd "M-D") (quote helm-ff-run-delete-file)) (define-key map (kbd "M-K") (quote helm-ff-run-kill-buffer-persistent)) (define-key map (kbd "M-T") (quote helm-ff-run-touch-files)) (define-key map (kbd "C-c d") (quote helm-ff-persistent-delete)) (define-key map (kbd "M-e") (quote helm-ff-run-switch-to-eshell)) (define-key map (kbd "C-c i") (quote helm-ff-run-complete-fn-at-point)) (define-key map (kbd "C-c o") (quote helm-ff-run-switch-other-window)) (define-key map (kbd "C-c C-o") (quote helm-ff-run-switch-other-frame)) (define-key map (kbd "C-c C-x") (quote helm-ff-run-open-file-externally)) (define-key map (kbd "C-c C-v") (quote helm-ff-run-preview-file-externally)) (define-key map (kbd "C-c X") (quote helm-ff-run-open-file-with-default-tool)) (define-key map (kbd "M-!") (quote helm-ff-run-eshell-command-on-file)) (define-key map (kbd "M-@") (quote helm-ff-run-query-replace-fnames-on-marked)) (define-key map (kbd "M-%") (quote helm-ff-run-query-replace)) (define-key map (kbd "C-M-%") (quote helm-ff-run-query-replace-regexp)) (define-key map (kbd "C-c =") (quote helm-ff-run-ediff-file)) (define-key map (kbd "M-=") (quote helm-ff-run-ediff-merge-file)) (define-key map (kbd "M-p") (quote helm-find-files-history)) (define-key map (kbd "C-c h") (quote helm-ff-file-name-history)) (define-key map (kbd "M-i") (quote helm-ff-properties-persistent)) (define-key map (kbd "C-}") (quote helm-narrow-window)) (define-key map (kbd "C-{") (quote helm-enlarge-window)) (define-key map (kbd "C-<backspace>") (quote helm-ff-run-toggle-auto-update)) (define-key map (kbd "C-c <DEL>") (quote helm-ff-run-toggle-auto-update)) (define-key map (kbd "C-c C-a") (quote helm-ff-run-mail-attach-files)) (define-key map (kbd "C-c p") (quote helm-ff-run-print-file)) (define-key map (kbd "C-c /") (quote helm-ff-run-find-sh-command)) (define-key map (kbd "M-l") (quote helm-ff-rotate-left-persistent)) (define-key map (kbd "M-r") (quote helm-ff-rotate-right-persistent)) (define-key map (kbd "C-l") (quote helm-find-files-up-one-level)) (define-key map (kbd "C-r") (quote helm-find-files-down-last-level)) (define-key map (kbd "C-c r") (quote helm-ff-run-find-file-as-root)) (define-key map (kbd "C-x C-v") (quote helm-ff-run-find-alternate-file)) (define-key map (kbd "C-c @") (quote helm-ff-run-insert-org-link)) (helm-define-key-with-subkeys map (kbd "DEL") 127 (quote helm-ff-delete-char-backward) (quote ((C-backspace . helm-ff-run-toggle-auto-update) ([C-c DEL] . helm-ff-run-toggle-auto-update))) nil (quote helm-ff-delete-char-backward--exit-fn)) (when helm-ff-lynx-style-map (define-key map (kbd "<left>") (quote helm-find-files-up-one-level)) (define-key map (kbd "<right>") (quote helm-execute-persistent-action))) (delq nil map))) nil [16585 21285])
-            ("helm-read-file-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "<C-return>") (quote helm-cr-empty-string)) (define-key map (kbd "M-RET") (quote helm-cr-empty-string)) (define-key map (kbd "C-]") (quote helm-ff-run-toggle-basename)) (define-key map (kbd "C-.") (quote helm-find-files-up-one-level)) (define-key map (kbd "C-l") (quote helm-find-files-up-one-level)) (define-key map (kbd "C-r") (quote helm-find-files-down-last-level)) (define-key map (kbd "C-c h") (quote helm-ff-file-name-history)) (define-key map (kbd "C-<backspace>") (quote helm-ff-run-toggle-auto-update)) (define-key map (kbd "C-c <DEL>") (quote helm-ff-run-toggle-auto-update)) (helm-define-key-with-subkeys map (kbd "DEL") 127 (quote helm-ff-delete-char-backward) (quote ((C-backspace . helm-ff-run-toggle-auto-update) ([C-c DEL] . helm-ff-run-toggle-auto-update))) nil (quote helm-ff-delete-char-backward--exit-fn)) (when helm-ff-lynx-style-map (define-key map (kbd "<left>") (quote helm-find-files-up-one-level)) (define-key map (kbd "<right>") (quote helm-execute-persistent-action)) (define-key map (kbd "<M-left>") (quote helm-previous-source)) (define-key map (kbd "<M-right>") (quote helm-next-source))) (delq nil map))) nil [21287 22724])
-            ("helm-find-files-doc-header" variable
-               (:user-visible-flag t
-                :default-value " (\\<helm-find-files-map>\\[helm-find-files-up-one-level]: Go up one level)")
-                nil [22741 22936])
-            ("helm-ff-auto-update-flag" variable nil nil [22937 23114])
-            ("helm-ff-last-expanded" variable nil nil [23115 23192])
-            ("helm-ff-default-directory" variable nil nil [23193 23231])
-            ("helm-ff-history" variable nil nil [23232 23260])
-            ("helm-ff-cand-to-mark" variable nil nil [23261 23294])
-            ("helm-ff-url-regexp" variable (:default-value "\\`\\(news\\(post\\)?:\\|nntp:\\|mailto:\\|file:\\|\\(ftp\\|https?\\|telnet\\|gopher\\|www\\|wais\\):/?/?\\).*") nil [23295 23499])
-            ("helm-tramp-file-name-regexp" variable (:default-value "\\`/\\([^/:|]+\\):") nil [23710 23767])
-            ("helm-marked-buffer-name" variable (:default-value "*helm marked*") nil [23768 23816])
-            ("helm-ff--auto-update-state" variable nil nil [23817 23856])
-            ("helm-ff--deleting-char-backward" variable nil nil [23857 23901])
-            ("helm-multi-files--toggle-locate" variable nil nil [23902 23946])
-            ("helm-ff--move-to-first-real-candidate" variable (:default-value t) nil [23947 23995])
-            ("helm-find-files--toggle-bookmark" variable nil nil [23996 24041])
-            ("helm-ff--tramp-methods" variable nil nil [24042 24077])
-            ("helm-ff--directory-files-hash" variable (:default-value (make-hash-table :test (quote equal))) nil [24078 24147])
-            ("helm-ff-history-buffer-name" variable (:default-value "*helm-find-files history*") nil [24148 24212])
-            ("helm-find-files-actions" variable (:default-value (helm-make-actions "Find File" (quote helm-find-file-or-marked) "Find file in Dired" (quote helm-point-file-in-dired) "View file" (quote view-file) "Query replace fnames on marked `M-@'" (quote helm-ff-query-replace-fnames-on-marked) "Marked files in dired `C-x C-q, C-u wdired'" (quote helm-marked-files-in-dired) "Query replace contents on marked `M-%'" (quote helm-ff-query-replace) "Query replace regexp contents on marked `C-M-%'" (quote helm-ff-query-replace-regexp) "Attach file(s) to mail buffer `C-c C-a'" (quote helm-ff-mail-attach-files) "Serial rename files" (quote helm-ff-serial-rename) "Serial rename by symlinking files" (quote helm-ff-serial-rename-by-symlink) "Serial rename by copying files" (quote helm-ff-serial-rename-by-copying) "Open file with default tool" (quote helm-open-file-with-default-tool) "Find file in hex dump" (quote hexl-find-file) "Browse project `C-x C-d'" (quote helm-ff-browse-project) "Complete at point `C-c i'" (quote helm-insert-file-name-completion-at-point) "Insert as org link `C-c @'" (quote helm-files-insert-as-org-link) "Find shell command `C-c /'" (quote helm-ff-find-sh-command) "Add marked files to file-cache" (quote helm-ff-cache-add-file) "Open file externally `C-c C-x, C-u to choose'" (quote helm-open-file-externally) "Grep File(s) `C-s, C-u Recurse'" (quote helm-find-files-grep) "Grep current directory with AG `M-g a, C-u select type'" (quote helm-find-files-ag) "Git grep `M-g g, C-u from root'" (quote helm-ff-git-grep) "Zgrep File(s) `M-g z, C-u Recurse'" (quote helm-ff-zgrep) "Gid `M-g i'" (quote helm-ff-gid) "Switch to Eshell `M-e'" (quote helm-ff-switch-to-eshell) "Etags `M-., C-u reload tag file'" (quote helm-ff-etags-select) "Eshell command on file(s) `M-!, C-u take all marked as arguments.'" (quote helm-find-files-eshell-command-on-file) "Find file as root `C-c r'" (quote helm-find-file-as-root) "Find alternate file `C-x C-v'" (quote find-alternate-file) "Ediff File `C-c ='" (quote helm-find-files-ediff-files) "Ediff Merge File `M-='" (quote helm-find-files-ediff-merge-files) (lambda nil (format "Delete File(s)%s `M-D' (C-u reverse trash)" (if (eq helm-ff-delete-files-function (quote helm-delete-marked-files-async)) " async" ""))) (quote helm-ff-delete-files) "Touch File(s) `M-T'" (quote helm-ff-touch-files) "Copy file(s) `M-C, C-u to follow'" (quote helm-find-files-copy) "Rename file(s) `M-R, C-u to follow'" (quote helm-find-files-rename) "Backup files" (quote helm-find-files-backup) "Symlink files(s) `M-S, C-u to follow'" (quote helm-find-files-symlink) "Relsymlink file(s) `M-Y, C-u to follow'" (quote helm-find-files-relsymlink) "Hardlink file(s) `M-H, C-u to follow'" (quote helm-find-files-hardlink) "Find file other window `C-c o'" (quote helm-find-files-other-window) "Find file other frame `C-c C-o'" (quote find-file-other-frame) "Print File `C-c p, C-u to refresh'" (quote helm-ff-print) "Locate `C-x C-f, C-u to specify locate db'" (quote helm-ff-locate))) nil [24241 27255])
-            ("helm-source-find-files" variable nil nil [27257 27369])
-            ("helm-source-ffiles" type
-               (:superclasses "helm-source-sync"
-                :members 
-                  ( ("header-name" variable (:default-value "(lambda (name) (concat name (substitute-command-keys helm-find-files-doc-header)))") nil nil)
-                    ("init" variable (:default-value "(lambda nil (setq helm-ff-auto-update-flag helm-ff-auto-update-initial-value) (setq helm-ff--auto-update-state helm-ff-auto-update-flag) (helm-set-local-variable (quote bookmark-make-record-function) (function helm-ff-make-bookmark-record)) (require (quote helm-external)))") nil nil)
-                    ("candidates" variable (:default-value "(quote helm-find-files-get-candidates)") nil nil)
-                    ("filtered-candidate-transformer" variable (:default-value "(quote (helm-ff-sort-candidates (lambda (candidates _source) (cl-loop for f in candidates for ff = (helm-ff-filter-candidate-one-by-one f) when ff collect ff))))") nil nil)
-                    ("persistent-action-if" variable (:default-value "(quote helm-find-files-persistent-action-if)") nil nil)
-                    ("persistent-help" variable (:default-value "Hit1 Expand Candidate, Hit2 or (C-u) Find file") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-ff-help-message)") nil nil)
-                    ("mode-line" variable (:default-value "(list \"File(s)\" helm-mode-line-string)") nil nil)
-                    ("volatile" variable (:default-value "t") nil nil)
-                    ("cleanup" variable (:default-value "(quote helm-find-files-cleanup)") nil nil)
-                    ("migemo" variable (:default-value "t") nil nil)
-                    ("nohighlight" variable (:default-value "t") nil nil)
-                    ("keymap" variable (:default-value "helm-find-files-map") nil nil)
-                    ("candidate-number-limit" variable (:default-value "(quote helm-ff-candidate-number-limit)") nil nil)
-                    ("action-transformer" variable (:default-value "(quote helm-find-files-action-transformer)") nil nil)
-                    ("action" variable (:default-value "(quote helm-find-files-actions)") nil nil)
-                    ("before-init-hook" variable (:default-value "(quote helm-find-files-before-init-hook)") nil nil)
-                    ("after-init-hook" variable (:default-value "(quote helm-find-files-after-init-hook)") nil nil)
-                    ("group" variable (:default-value "(quote helm-files)") nil nil))                  
-                :type "class")
-                nil [27371 29145])
-            ("helm-ff-make-bookmark-record" function nil nil [29172 29421])
-            ("helm-ff-bookmark-jump" function (:arguments ("bookmark")) nil [29423 30050])
-            ("helm-ff-bookmark-set" function (:user-visible-flag t) nil [30052 30381])
-            ("put" code nil nil [30382 30422])
-            ("helm-dwim-target" variable nil nil [30424 31097])
-            ("helm-dwim-target-directory" function nil nil [31099 32445])
-            ("helm-ff--count-and-collect-dups" function (:arguments ("files")) nil [32447 33184])
-            ("helm-find-files-do-action" function (:arguments ("action")) nil [33186 35578])
-            ("helm-find-files-copy" function (:arguments ("_candidate")) nil [35580 35696])
-            ("helm-find-files-backup" function (:arguments ("_candidate")) nil [35698 36026])
-            ("helm-find-files-rename" function (:arguments ("_candidate")) nil [36028 36150])
-            ("helm-find-files-symlink" function (:arguments ("_candidate")) nil [36152 36277])
-            ("helm-find-files-relsymlink" function (:arguments ("_candidate")) nil [36279 36413])
-            ("helm-find-files-hardlink" function (:arguments ("_candidate")) nil [36415 36543])
-            ("helm-find-files-other-window" function (:arguments ("_candidate")) nil [36545 36870])
-            ("helm-find-files-byte-compile" function (:arguments ("_candidate")) nil [36872 37157])
-            ("helm-find-files-load-files" function (:arguments ("_candidate")) nil [37159 37373])
-            ("helm-find-files-ediff-files-1" function (:arguments ("candidate" "merge")) nil [37375 38365])
-            ("helm-find-files-ediff-files" function (:arguments ("candidate")) nil [38367 38458])
-            ("helm-find-files-ediff-merge-files" function (:arguments ("candidate")) nil [38460 38564])
-            ("helm-find-files-grep" function (:arguments ("_candidate")) nil [38566 38767])
-            ("helm-ff-git-grep" function (:arguments ("_candidate")) nil [38769 38936])
-            ("helm-find-files-ag" function (:arguments ("_candidate")) nil [38938 39060])
-            ("helm-ff-zgrep" function (:arguments ("_candidate")) nil [39062 39240])
-            ("helm-ff-pdfgrep" function (:arguments ("_candidate")) nil [39242 39845])
-            ("helm-ff-etags-select" function (:arguments ("candidate")) nil [39847 40335])
-            ("eshell-command-aliases-list" variable nil nil [40337 40377])
-            ("helm-eshell-command-on-file-input-history" variable nil nil [40378 40432])
-            ("helm-find-files-eshell-command-on-file-1" function (:arguments ("map")) nil [40433 45677])
-            ("helm-find-files-eshell-command-on-file" function (:arguments ("_candidate")) nil [45679 45929])
-            ("helm-ff-switch-to-eshell" function (:arguments ("_candidate")) nil [45931 47062])
-            ("helm-ff--eshell-interactive-buffer-p" function (:arguments ("buffer")) nil [47064 47326])
-            ("helm-ff-touch-files" function (:arguments ("_candidate")) nil [47328 49317])
-            ("helm-ff-run-touch-files" function (:user-visible-flag t) nil [49319 49510])
-            ("put" code nil nil [49511 49554])
-            ("helm-ff-serial-rename-action" function (:arguments ("method")) nil [49556 51385])
-            ("helm-ff-member-directory-p" function (:arguments ("file" "directory")) nil [51387 51653])
-            ("cl-defun" code nil nil [51655 54178])
-            ("helm-ff-serial-rename" function (:arguments ("_candidate")) nil [54180 54449])
-            ("helm-ff-serial-rename-by-symlink" function (:arguments ("_candidate")) nil [54451 54732])
-            ("helm-ff-serial-rename-by-copying" function (:arguments ("_candidate")) nil [54734 55009])
-            ("helm-ff-query-replace-fnames-history-from" variable nil nil [55011 55065])
-            ("helm-ff-query-replace-fnames-history-to" variable nil nil [55066 55118])
-            ("helm-ff-query-replace-on-filenames" function (:arguments ("candidates")) nil [55119 63086])
-            ("helm-ff--prepare-str-with-regexp" function (:arguments ("str" "rep1" "rep2")) nil [63088 64229])
-            ("helm-ff-query-replace-fnames-on-marked" function (:arguments ("_candidate")) nil [64246 64414])
-            ("helm-ff-run-query-replace-fnames-on-marked" function nil nil [64458 64624])
-            ("put" code nil nil [64625 64687])
-            ("helm-ff-query-replace" function (:arguments ("_candidate")) nil [64689 64920])
-            ("helm-ff-query-replace-regexp" function (:arguments ("_candidate")) nil [64922 65164])
-            ("helm-ff-run-query-replace" function nil nil [65166 65298])
-            ("put" code nil nil [65299 65344])
-            ("helm-ff-run-query-replace-regexp" function nil nil [65346 65492])
-            ("put" code nil nil [65493 65545])
-            ("helm-ff-toggle-auto-update" function (:arguments ("_candidate")) nil [65547 66003])
-            ("helm-ff-run-toggle-auto-update" function nil nil [66005 66224])
-            ("put" code nil nil [66225 66275])
-            ("helm-ff-delete-char-backward" function (:user-visible-flag t) nil [66277 66640])
-            ("put" code nil nil [66641 66689])
-            ("helm-ff-delete-char-backward--exit-fn" function nil nil [66691 66845])
-            ("helm-ff-RET-1" function (:arguments ("must-match")) nil [66847 67410])
-            ("helm-ff-RET" function (:user-visible-flag t) nil [67412 67706])
-            ("helm-ff-RET-must-match" function (:user-visible-flag t) nil [67708 67831])
-            ("helm-ff-run-grep" function (:user-visible-flag t) nil [67833 68006])
-            ("put" code nil nil [68007 68043])
-            ("helm-ff-run-git-grep" function (:user-visible-flag t) nil [68045 68222])
-            ("put" code nil nil [68223 68263])
-            ("helm-ff-run-grep-ag" function nil nil [68265 68388])
-            ("put" code nil nil [68389 68428])
-            ("helm-ff-run-pdfgrep" function (:user-visible-flag t) nil [68430 68604])
-            ("put" code nil nil [68605 68644])
-            ("helm-ff-run-zgrep" function (:user-visible-flag t) nil [68646 68813])
-            ("put" code nil nil [68814 68851])
-            ("helm-ff-run-copy-file" function (:user-visible-flag t) nil [68853 69036])
-            ("put" code nil nil [69037 69078])
-            ("helm-ff-run-rename-file" function (:user-visible-flag t) nil [69080 69269])
-            ("put" code nil nil [69270 69313])
-            ("helm-ff-run-byte-compile-file" function (:user-visible-flag t) nil [69315 69522])
-            ("put" code nil nil [69523 69572])
-            ("helm-ff-run-load-file" function (:user-visible-flag t) nil [69574 69763])
-            ("put" code nil nil [69764 69805])
-            ("helm-ff-run-eshell-command-on-file" function (:user-visible-flag t) nil [69807 70039])
-            ("put" code nil nil [70040 70094])
-            ("helm-ff-run-ediff-file" function (:user-visible-flag t) nil [70096 70288])
-            ("put" code nil nil [70289 70331])
-            ("helm-ff-run-ediff-merge-file" function (:user-visible-flag t) nil [70333 70548])
-            ("put" code nil nil [70549 70597])
-            ("helm-ff-run-symlink-file" function (:user-visible-flag t) nil [70599 70791])
-            ("put" code nil nil [70792 70836])
-            ("helm-ff-run-relsymlink-file" function (:user-visible-flag t) nil [70838 71036])
-            ("put" code nil nil [71037 71084])
-            ("helm-ff-run-hardlink-file" function (:user-visible-flag t) nil [71086 71281])
-            ("put" code nil nil [71282 71327])
-            ("helm-ff-delete-files" function (:arguments ("candidate")) nil [71329 71454])
-            ("helm-ff-run-delete-file" function (:user-visible-flag t) nil [71456 71644])
-            ("put" code nil nil [71645 71688])
-            ("helm-ff-run-complete-fn-at-point" function (:user-visible-flag t) nil [71690 71919])
-            ("put" code nil nil [71920 71972])
-            ("helm-ff-run-switch-to-eshell" function (:user-visible-flag t) nil [71974 72175])
-            ("put" code nil nil [72176 72224])
-            ("helm-ff-run-switch-other-window" function (:user-visible-flag t) nil [72226 72497])
-            ("put" code nil nil [72498 72549])
-            ("helm-ff-run-switch-other-frame" function (:user-visible-flag t) nil [72551 72756])
-            ("put" code nil nil [72757 72807])
-            ("helm-ff-run-open-file-externally" function (:user-visible-flag t) nil [72809 73027])
-            ("put" code nil nil [73028 73080])
-            ("helm-ff-run-open-file-with-default-tool" function (:user-visible-flag t) nil [73082 73314])
-            ("put" code nil nil [73315 73374])
-            ("helm-ff-locate" function (:arguments ("candidate")) nil [73376 74218])
-            ("helm-ff-run-locate" function (:user-visible-flag t) nil [74220 74391])
-            ("put" code nil nil [74392 74430])
-            ("helm-files-insert-as-org-link" function (:arguments ("candidate")) nil [74432 74550])
-            ("helm-ff-run-insert-org-link" function nil nil [74552 74694])
-            ("put" code nil nil [74695 74742])
-            ("helm-ff-run-find-file-as-root" function nil nil [74744 74881])
-            ("put" code nil nil [74882 74931])
-            ("helm-ff-run-find-alternate-file" function nil nil [74933 75069])
-            ("put" code nil nil [75070 75121])
-            ("helm-ff-run-mail-attach-files" function (:user-visible-flag t) nil [75123 75335])
-            ("put" code nil nil [75336 75385])
-            ("helm-ff-run-etags" function (:user-visible-flag t) nil [75387 75570])
-            ("put" code nil nil [75571 75608])
-            ("lpr-printer-switch" variable nil nil [75610 75637])
-            ("helm-ff-print" function (:arguments ("_candidate")) nil [75638 77671])
-            ("helm-ff-run-print-file" function (:user-visible-flag t) nil [77673 77851])
-            ("put" code nil nil [77852 77894])
-            ("helm-ff-checksum" function (:arguments ("file")) nil [77896 78594])
-            ("helm-ff-toggle-basename" function (:arguments ("_candidate")) nil [78596 78989])
-            ("helm-ff-run-toggle-basename" function nil nil [78991 79138])
-            ("put" code nil nil [79139 79186])
-            ("helm-reduce-file-name" function (:arguments ("fname" "level")) nil [79188 79603])
-            ("helm-find-files--level-tree" variable nil nil [79605 79645])
-            ("helm-find-files--level-tree-iterator" variable nil nil [79646 79695])
-            ("helm-find-files-up-one-level" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [79696 81727])
-            ("put" code nil nil [81728 81776])
-            ("helm-find-files-down-last-level" function (:user-visible-flag t) nil [81778 82398])
-            ("put" code nil nil [82399 82450])
-            ("helm-find-files--reset-level-tree" function nil nil [82452 82586])
-            ("add-hook" code nil nil [82588 82652])
-            ("add-hook" code nil nil [82653 82721])
-            ("add-hook" code nil nil [82722 82802])
-            ("helm-ff-retrieve-last-expanded" function nil nil [82804 83466])
-            ("helm-ff-move-to-first-real-candidate" function nil nil [83468 84560])
-            ("helm-ff-update-when-only-one-matched" function nil nil [84633 89571])
-            ("helm-ff-auto-expand-to-home-or-root" function nil nil [89573 91645])
-            ("helm-ff--expand-file-name-no-dot" function (:arguments ("name" "directory")) nil [91647 92089])
-            ("helm-ff--expand-substitued-pattern" function (:arguments ("pattern")) nil [92091 92729])
-            ("helm-substitute-in-filename" function (:arguments ("fname")) nil [92731 94119])
-            ("helm-point-file-in-dired" function (:arguments ("file")) nil [94121 94445])
-            ("helm-marked-files-in-dired" function (:arguments ("_candidate")) nil [94447 95239])
-            ("helm-ff-run-marked-files-in-dired" function (:user-visible-flag t) nil [95241 95442])
-            ("put" code nil nil [95443 95496])
-            ("helm-ff--create-tramp-name" function (:arguments ("fname")) nil [95498 96251])
-            ("helm-ff--tramp-cons-or-vector" function (:arguments ("vector-or-cons")) nil [96253 96438])
-            ("helm-ff--get-tramp-methods" function nil nil [96440 96621])
-            ("helm-ff--previous-mh-tramp-method" function (:arguments ("str")) nil [96623 97096])
-            ("helm-ff--get-host-from-tramp-invalid-fname" function (:arguments ("fname")) nil [97098 98207])
-            ("cl-defun" code nil nil [98209 99558])
-            ("helm-ff-before-action-hook-fn" function nil nil [99560 100047])
-            ("add-hook" code nil nil [100048 100114])
-            ("cl-defun" code nil nil [100116 100333])
-            ("helm-ff--tramp-postfixed-p" function (:arguments ("str")) nil [100335 100803])
-            ("helm-ff-set-pattern" function (:arguments ("pattern")) nil [100805 103716])
-            ("helm-find-files-get-candidates" function (:arguments ("require-match")) nil [103718 109231])
-            ("helm-list-directory" function (:arguments ("directory")) nil [109233 109552])
-            ("helm-list-dir-lisp" function (:arguments ("directory")) nil [109554 110625])
-            ("helm-list-dir-external" function (:arguments ("dir")) nil [110627 112682])
-            ("helm-ff-directory-files" function (:arguments ("directory")) nil [112684 114004])
-            ("helm-ff-handle-backslash" function (:arguments ("fname")) nil [114006 114237])
-            ("helm-ff-fuzzy-matching-p" function nil nil [114239 114367])
-            ("helm-ff--transform-pattern-for-completion" function (:arguments ("pattern")) nil [114369 116952])
-            ("helm-dir-is-dot" function (:arguments ("dir")) nil [116954 117037])
-            ("helm-ff-save-history" function nil nil [117039 117515])
-            ("add-hook" code nil nil [117516 117567])
-            ("helm-files-save-file-name-history" function (:arguments ("force")) nil [117569 118484])
-            ("add-hook" code nil nil [118485 118557])
-            ("helm-ff-valid-symlink-p" function (:arguments ("file")) nil [118559 118830])
-            ("helm-get-default-mode-for-file" function (:arguments ("filename")) nil [118832 119096])
-            ("helm-ff-properties" function (:arguments ("candidate")) nil [119098 121535])
-            ("helm-ff-properties-persistent" function (:user-visible-flag t) nil [121537 121788])
-            ("put" code nil nil [121789 121838])
-            ("helm-ff-persistent-delete" function (:user-visible-flag t) nil [121840 122083])
-            ("put" code nil nil [122084 122129])
-            ("helm-ff-dot-file-p" function (:arguments ("file")) nil [122131 122242])
-            ("helm-ff-kill-buffer-fname" function (:arguments ("candidate")) nil [122244 122656])
-            ("helm-ff-kill-or-find-buffer-fname" function (:arguments ("candidate")) nil [122658 123815])
-            ("helm-ff-run-kill-buffer-persistent" function (:user-visible-flag t) nil [123817 124079])
-            ("put" code nil nil [124080 124134])
-            ("helm-ff-persistent-open-file-externally" function (:arguments ("file")) nil [124166 124485])
-            ("helm-ff-run-preview-file-externally" function nil nil [124487 124728])
-            ("put" code nil nil [124729 124784])
-            ("helm-ff-prefix-filename" function (:arguments ("fname" "file-or-symlinkp" "new-file")) nil [124786 125673])
-            ("helm-ff-score-candidate-for-pattern" function (:arguments ("str" "pattern")) nil [125675 125827])
-            ("helm-ff-sort-candidates-1" function (:arguments ("candidates" "input")) nil [125829 127469])
-            ("helm-ff-sort-candidates" function (:arguments ("candidates" "_source")) nil [127471 127687])
-            ("helm-ff-boring-file-p" function (:arguments ("file")) nil [127689 127913])
-            ("helm-ff-filter-candidate-one-by-one" function (:arguments ("file")) nil [127915 133647])
-            ("helm-find-files-action-transformer" function (:arguments ("actions" "candidate")) nil [133649 135942])
-            ("helm-ff-trash-action" function (:arguments ("fn" "names" "args")) nil [135944 137559])
-            ("helm-ff-trash-rm" function (:arguments ("_candidate")) nil [137561 137916])
-            ("helm-restore-file-from-trash" function (:arguments ("_candidate")) nil [137918 138649])
-            ("helm-ff-trash-rm-1" function (:arguments ("file")) nil [138651 139163])
-            ("helm-restore-file-from-trash-1" function (:arguments ("file" "trashed-files")) nil [139165 139871])
-            ("helm-ff--get-dest-file-from-trash" function (:arguments ("trashed-files" "file")) nil [139873 140264])
-            ("helm-ff-goto-linum" function (:arguments ("candidate")) nil [140266 140857])
-            ("helm-ff-mail-attach-files" function (:arguments ("_candidate")) nil [140859 142021])
-            ("image-dired-display-image-buffer" variable nil nil [142023 142064])
-            ("helm-ff-rotate-current-image-1" function (:arguments ("file" "num-arg")) nil [142065 142927])
-            ("helm-ff-rotate-image-left" function (:arguments ("candidate")) nil [142929 143098])
-            ("helm-ff-rotate-image-right" function (:arguments ("candidate")) nil [143100 143267])
-            ("helm-ff-rotate-left-persistent" function (:user-visible-flag t) nil [143269 143506])
-            ("put" code nil nil [143507 143557])
-            ("helm-ff-rotate-right-persistent" function (:user-visible-flag t) nil [143559 143799])
-            ("put" code nil nil [143800 143851])
-            ("helm-ff-exif-data" function (:arguments ("candidate")) nil [143853 144386])
-            ("cl-defun" code nil nil [144388 152030])
-            ("helm-find-files-recursive-dirs" function (:arguments ("directory" "input")) nil [152067 153825])
-            ("helm-ff-recursive-dirs" function (:arguments ("_candidate")) nil [153827 154105])
-            ("helm-ff-file-compressed-p" function (:arguments ("candidate")) nil [154107 154285])
-            ("helm-ff--fname-at-point" function nil nil [154287 154682])
-            ("helm-insert-file-name-completion-at-point" function (:arguments ("_candidate")) nil [154684 156552])
-            ("helm-ff--insert-fname" function (:arguments ("candidate" "beg" "end" "full-path" "guess")) nil [156554 157379])
-            ("cl-defun" code nil nil [157381 158695])
-            ("put" code nil nil [158696 158739])
-            ("helm-find-files-1" function (:arguments ("fname" "preselect")) nil [158741 160819])
-            ("helm-ff--update-resume-after-hook" function (:arguments ("sources" "nohook")) nil [160821 161522])
-            ("helm-ff-clean-initial-input" function nil nil [161524 161754])
-            ("helm-ff-setup-update-hook" function nil nil [161756 162075])
-            ("helm-find-files-cleanup" function nil nil [162077 162368])
-            ("helm-find-files-toggle-to-bookmark" function (:user-visible-flag t) nil [162370 163022])
-            ("put" code nil nil [163023 163077])
-            ("helm-find-files-initial-input" function (:arguments ("input")) nil [163079 163434])
-            ("helm-ffap-guesser" function nil nil [163436 165451])
-            ("helm-find-files-input" function (:arguments ("file-at-pt" "thing-at-pt")) nil [165453 167071])
-            ("helm-ff-find-url-at-point" function nil nil [167073 167755])
-            ("helm-find-library-at-point" function nil nil [167757 168825])
-            ("helm-ff--valid-default-directory" function nil nil [168904 169152])
-            ("cl-defun" code nil nil [169154 172864])
-            ("helm-get-dest-fnames-from-list" function (:arguments ("flist" "dest-cand" "rename-dir-flag")) nil [172866 173681])
-            ("helm-ff-maybe-mark-candidates" function nil nil [173683 174430])
-            ("helm-file-buffers" function (:arguments ("filename")) nil [174463 174763])
-            ("helm-ff--delete-by-moving-to-trash" function (:arguments ("file")) nil [174765 175336])
-            ("helm-ff-quick-delete" function (:arguments ("_candidate")) nil [175338 177011])
-            ("helm-delete-file" function (:arguments ("file" "error-if-dot-file-p" "synchro" "trash")) nil [177013 179981])
-            ("helm-delete-marked-files" function (:arguments ("_ignore")) nil [179983 181284])
-            ("helm-ff-delete-log-file" variable (:default-value (expand-file-name "helm-delete-file.log" user-emacs-directory)) nil [181315 181488])
-            ("helm-ff--trash-flag" variable nil nil [181490 181522])
-            ("define-minor-mode" code nil nil [181524 182298])
-            ("helm-delete-async-mode-line-message" function (:arguments ("text" "face" "args")) nil [182300 182777])
-            ("helm-delete-marked-files-async" function (:arguments ("_ignore")) nil [182779 186372])
-            ("helm-find-file-or-marked" function (:arguments ("candidate")) nil [186374 188231])
-            ("helm-ff--mkdir" function (:arguments ("dir" "helm-ff")) nil [188233 189117])
-            ("helm-transform-file-load-el" function (:arguments ("actions" "candidate")) nil [189119 189415])
-            ("helm-transform-file-browse-url" function (:arguments ("actions" "candidate")) nil [189417 189860])
-            ("helm-file-on-mounted-network-p" function (:arguments ("file")) nil [189862 190196])
-            ("file-cache-alist" variable nil nil [190240 190265])
-            ("helm-ff-cache-add-file" function (:arguments ("_candidate")) nil [190267 190427])
-            ("helm-ff-file-cache-remove-file-1" function (:arguments ("file")) nil [190429 190821])
-            ("helm-ff-file-cache-remove-file" function (:arguments ("_file")) nil [190823 191008])
-            ("helm-source-file-name-history" variable (:default-value (helm-build-sync-source "File Name History" :candidates (quote file-name-history) :persistent-action (function ignore) :filtered-candidate-transformer (function helm-file-name-history-transformer) :action (quote helm-type-file-actions))) nil [191040 191301])
-            ("helm-source--ff-file-name-history" variable nil nil [191303 191486])
-            ("helm-file-name-history-transformer" function (:arguments ("candidates" "_source")) nil [191488 191976])
-            ("helm-ff-file-name-history" function (:user-visible-flag t) nil [191978 193573])
-            ("put" code nil nil [193574 193619])
-            ("helm--browse-project-cache" variable (:default-value (make-hash-table :test (quote equal))) nil [193798 193864])
-            ("helm-buffers-in-project-p" variable nil nil [193865 193899])
-            ("helm-browse-project-get-buffers" function (:arguments ("root-directory")) nil [193901 194483])
-            ("helm-browse-project-build-buffers-source" function (:arguments ("directory")) nil [194485 194830])
-            ("helm-browse-project-walk-directory" function (:arguments ("directory")) nil [194832 195041])
-            ("helm-browse-project-ag-find-files" function (:arguments ("directory")) nil [195043 195414])
-            ("helm-browse-project-find-files" function (:arguments ("directory" "refresh")) nil [195416 197049])
-            ("helm-browse-project-history" variable nil nil [197051 197091])
-            ("helm-projects-history" function nil nil [197108 197472])
-            ("helm-browse-project" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [197489 199474])
-            ("helm-browse-project-get--root-dir" function (:arguments ("directory")) nil [199476 199893])
-            ("helm-ff-browse-project" function (:arguments ("_candidate")) nil [199895 200116])
-            ("helm-ff-run-browse-project" function nil nil [200118 200252])
-            ("put" code nil nil [200253 200299])
-            ("helm-ff-gid" function (:arguments ("_candidate")) nil [200301 200408])
-            ("helm-ff-run-gid" function nil nil [200410 200522])
-            ("put" code nil nil [200523 200558])
-            ("helm-ff-find-sh-command" function (:arguments ("_candidate")) nil [200603 200756])
-            ("helm-ff-run-find-sh-command" function (:user-visible-flag t) nil [200758 200961])
-            ("put" code nil nil [200962 201009])
-            ("helm-find-files" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [201028 204019])
-            ("helm-delete-tramp-connection" function (:user-visible-flag t) nil [204036 205779])
-            ("helm-files" package nil nil [205782 205803]))          
-      :file "helm-files.el"
-      :pointmax 205945
-      :fsize 205944
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax '((close-paren 1150 . 1151) (symbol 1004 . 1021) (open-paren 1003 . 1004)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [804 821])
-            ("format-spec" include nil nil [822 844])
-            ("helm" include nil nil [845 860])
-            ("helm-help" include nil nil [861 881])
-            ("helm-regexp" include nil nil [882 904])
-            ("wgrep-helm" include nil nil [945 972])
-            ("declare-function" code nil nil [974 1024])
-            ("declare-function" code nil nil [1025 1060])
-            ("declare-function" code nil nil [1061 1116])
-            ("declare-function" code nil nil [1117 1189])
-            ("declare-function" code nil nil [1190 1249])
-            ("declare-function" code nil nil [1250 1302])
-            ("helm--ansi-color-regexp" variable nil nil [1303 1335])
-            ("helm-grep" customgroup (:user-visible-flag t) nil [1339 1432])
-            ("helm-grep-default-command" variable (:default-value "grep --color=always -a -d skip %e -n%cH -e %p %f") nil [1434 4079])
-            ("helm-grep-default-recurse-command" variable (:default-value "grep --color=always -a -d recurse %e -n%cH -e %p %f") nil [4081 4358])
-            ("helm-default-zgrep-command" variable (:default-value "zgrep --color=always -a -n%cH -e %p %f") nil [4360 4723])
-            ("helm-pdfgrep-default-command" variable (:default-value "pdfgrep --color always -niH %s %s") nil [4725 5012])
-            ("helm-pdfgrep-default-recurse-command" variable (:default-value "pdfgrep --color always -rniH %s %s") nil [5014 5318])
-            ("helm-grep-use-ioccur-style-keys" variable (:default-value t) nil [5320 5445])
-            ("helm-pdfgrep-default-read-command" variable nil nil [5447 5817])
-            ("helm-grep-max-length-history" variable (:default-value 100) nil [5819 5959])
-            ("helm-zgrep-file-extension-regexp" variable (:default-value ".*\\(\\.gz\\|\\.bz\\|\\.xz\\|\\.lzma\\)$") nil [5961 6136])
-            ("helm-grep-preferred-ext" variable nil nil [6138 6268])
-            ("helm-grep-save-buffer-name-no-confirm" variable nil nil [6270 6412])
-            ("helm-grep-ignored-files" variable (:default-value (cons ".#*" (delq nil (mapcar (lambda (s) (unless (string-match-p "/\\'" s) (concat "*" s))) completion-ignored-extensions)))) nil [6414 6780])
-            ("helm-grep-ignored-directories" variable (:default-value helm-walk-ignore-directories) nil [6782 6978])
-            ("helm-grep-truncate-lines" variable (:default-value t) nil [6980 7118])
-            ("helm-grep-file-path-style" variable (:default-value (quote basename)) nil [7120 7588])
-            ("helm-grep-actions" variable (:default-value (helm-make-actions "Find File" (quote helm-grep-action) "Find file other frame" (quote helm-grep-other-frame) "Save results in grep buffer" (quote helm-grep-save-results) "Find file other window (C-u vertically)" (quote helm-grep-other-window))) nil [7590 7952])
-            ("helm-grep-pipe-cmd-switches" variable nil nil [7954 8516])
-            ("helm-grep-ag-pipe-cmd-switches" variable nil nil [8518 8841])
-            ("helm-grep-faces" customgroup (:user-visible-flag t) nil [8861 8993])
-            ("helm-grep-match" variable
-               (:default-value (quote ((((background light)) :foreground "#b00000") (((background dark)) :foreground "gold1")))
-                :type "face")
-                nil [8995 9235])
-            ("helm-grep-file" variable
-               (:default-value (quote ((t (:foreground "BlueViolet" :underline t))))
-                :type "face")
-                nil [9237 9399])
-            ("helm-grep-lineno" variable
-               (:default-value (quote ((t (:foreground "Darkorange1"))))
-                :type "face")
-                nil [9401 9538])
-            ("helm-grep-finish" variable
-               (:default-value (quote ((t (:foreground "Green"))))
-                :type "face")
-                nil [9540 9673])
-            ("helm-grep-cmd-line" variable
-               (:default-value (quote ((t (:inherit font-lock-type-face))))
-                :type "face")
-                nil [9675 9833])
-            ("helm-grep-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-<down>") (quote helm-goto-next-file)) (define-key map (kbd "M-<up>") (quote helm-goto-precedent-file)) (define-key map (kbd "C-c o") (quote helm-grep-run-other-window-action)) (define-key map (kbd "C-c C-o") (quote helm-grep-run-other-frame-action)) (define-key map (kbd "C-x C-s") (quote helm-grep-run-save-buffer)) (define-key map (kbd "DEL") (quote helm-delete-backward-no-update)) (when helm-grep-use-ioccur-style-keys (define-key map (kbd "<right>") (quote helm-execute-persistent-action)) (define-key map (kbd "<left>") (quote helm-grep-run-default-action))) (delq nil map))) nil [9855 10590])
-            ("helm-pdfgrep-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-<down>") (quote helm-goto-next-file)) (define-key map (kbd "M-<up>") (quote helm-goto-precedent-file)) (define-key map (kbd "DEL") (quote helm-delete-backward-no-update)) map)) nil [10592 10920])
-            ("helm-grep-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map (kbd "RET") (quote helm-grep-mode-jump)) (define-key map (kbd "C-o") (quote helm-grep-mode-jump-other-window)) (define-key map (kbd "<C-down>") (quote helm-grep-mode-jump-other-window-forward)) (define-key map (kbd "<C-up>") (quote helm-grep-mode-jump-other-window-backward)) (define-key map (kbd "<M-down>") (quote helm-gm-next-file)) (define-key map (kbd "<M-up>") (quote helm-gm-precedent-file)) (define-key map (kbd "M-n") (quote helm-grep-mode-jump-other-window-forward)) (define-key map (kbd "M-p") (quote helm-grep-mode-jump-other-window-backward)) (define-key map (kbd "M-N") (quote helm-gm-next-file)) (define-key map (kbd "M-P") (quote helm-gm-precedent-file)) map)) nil [10922 11685])
-            ("helm-rzgrep-cache" variable (:default-value (make-hash-table :test (quote equal))) nil [11714 11771])
-            ("helm-grep-default-function" variable (:default-value (quote helm-grep-init)) nil [11772 11823])
-            ("helm-zgrep-recurse-flag" variable nil nil [11824 11860])
-            ("helm-grep-history" variable nil nil [11861 11891])
-            ("helm-grep-ag-history" variable nil nil [11892 11925])
-            ("helm-grep-last-targets" variable nil nil [11926 11961])
-            ("helm-grep-include-files" variable nil nil [11962 11998])
-            ("helm-grep-in-recurse" variable nil nil [11999 12032])
-            ("helm-grep-use-zgrep" variable nil nil [12033 12065])
-            ("helm-grep-default-directory-fn" variable nil nil [12066 12250])
-            ("helm-pdfgrep-targets" variable nil nil [12251 12284])
-            ("helm-grep-last-cmd-line" variable nil nil [12285 12321])
-            ("helm-grep-split-line-regexp" variable (:default-value "^\\([[:lower:][:upper:]]?:?.*?\\):\\([0-9]+\\):\\(.*\\)") nil [12322 12416])
-            ("helm-grep-prepare-candidates" function (:arguments ("candidates" "in-directory")) nil [12435 16260])
-            ("helm-grep-command" function (:arguments ("recursive" "grep")) nil [16262 16615])
-            ("cl-defun" code nil nil [16617 17243])
-            ("helm-grep--pipe-command-for-grep-command" function (:arguments ("smartcase" "pipe-switches" "grep-cmd")) nil [17245 17760])
-            ("helm-grep--prepare-cmd-line" function (:arguments ("only-files" "include" "zgrep")) nil [17762 20861])
-            ("helm-grep-init" function (:arguments ("cmd-line")) nil [20863 25263])
-            ("helm-grep-collect-candidates" function nil nil [25265 25595])
-            ("helm-grep-action" function (:arguments ("candidate" "where")) nil [25617 28496])
-            ("helm-grep-persistent-action" function (:arguments ("candidate")) nil [28498 28703])
-            ("helm-grep-other-window" function (:arguments ("candidate")) nil [28705 28843])
-            ("helm-grep-other-frame" function (:arguments ("candidate")) nil [28845 28980])
-            ("helm-goto-next-or-prec-file" function (:arguments ("n")) nil [28982 30935])
-            ("helm-goto-precedent-file" function (:user-visible-flag t) nil [30952 31140])
-            ("put" code nil nil [31141 31185])
-            ("helm-goto-next-file" function (:user-visible-flag t) nil [31202 31358])
-            ("helm-grep-run-default-action" function (:user-visible-flag t) nil [31360 31541])
-            ("put" code nil nil [31542 31590])
-            ("helm-grep-run-other-window-action" function (:user-visible-flag t) nil [31592 31794])
-            ("put" code nil nil [31795 31848])
-            ("helm-grep-run-other-frame-action" function (:user-visible-flag t) nil [31850 32049])
-            ("put" code nil nil [32050 32102])
-            ("helm-grep-run-save-buffer" function (:user-visible-flag t) nil [32104 32293])
-            ("put" code nil nil [32294 32339])
-            ("helm-grep-save-results" function (:arguments ("candidate")) nil [32368 32447])
-            ("helm-grep-save-results-1" function nil nil [32449 34892])
-            ("helm-grep-mode-mouse-jump" function (:arguments ("event")) nil [34894 35189])
-            ("put" code nil nil [35190 35235])
-            ("define-derived-mode" code nil nil [35237 35622])
-            ("put" code nil nil [35623 35657])
-            ("helm-grep-mode--revert-buffer-function" function (:arguments ("_ignore-auto" "_noconfirm")) nil [35659 36300])
-            ("helm-grep-mode--sentinel" function (:arguments ("process" "event")) nil [36302 37196])
-            ("helm-gm-next-file" function nil nil [37198 37276])
-            ("helm-gm-precedent-file" function nil nil [37278 37362])
-            ("helm-grep-mode-jump" function nil nil [37364 37517])
-            ("helm-grep-mode-jump-other-window-1" function (:arguments ("arg")) nil [37519 37881])
-            ("helm-grep-mode-jump-other-window-forward" function nil nil [37883 37991])
-            ("helm-grep-mode-jump-other-window-backward" function nil nil [37993 38103])
-            ("helm-grep-mode-jump-other-window" function nil nil [38105 38384])
-            ("helm-grep-hack-types" function nil nil [38413 39364])
-            ("helm-grep-ack-types-transformer" function (:arguments ("candidates" "_source")) nil [39366 39565])
-            ("helm-grep-ack-types-cache" variable nil nil [39567 39605])
-            ("helm-grep-read-ack-type" function nil nil [39606 40228])
-            ("helm-grep-guess-extensions" function (:arguments ("files")) nil [40258 41213])
-            ("helm-grep-get-file-extensions" function (:arguments ("files")) nil [41215 42198])
-            ("helm-grep-before-init-hook" variable nil nil [42226 42326])
-            ("helm-grep-after-init-hook" variable nil nil [42328 42426])
-            ("helm-grep-class" type
-               (:superclasses "helm-source-async"
-                :members 
-                  ( ("candidates-process" variable (:default-value "(quote helm-grep-collect-candidates)") nil nil)
-                    ("filter-one-by-one" variable (:default-value "(quote helm-grep-filter-one-by-one)") nil nil)
-                    ("keymap" variable (:default-value "helm-grep-map") nil nil)
-                    ("pcre" variable
-                       (:documentation "  Backend is using pcre regexp engine when non--nil."
-                        :default-value "nil")
-                        nil nil)
-                    ("nohighlight" variable (:default-value "t") nil nil)
-                    ("nomark" variable (:default-value "t") nil nil)
-                    ("backend" variable
-                       (:documentation "  The grep backend that will be used.
-  It is actually used only as an internal flag
-  and don't set the backend by itself.
-  You probably don't want to modify this."
-                        :default-value "nil")
-                        nil nil)
-                    ("candidate-number-limit" variable (:default-value "9999") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-grep-help-message)") nil nil)
-                    ("history" variable (:default-value "(quote helm-grep-history)") nil nil)
-                    ("action" variable (:default-value "(quote helm-grep-actions)") nil nil)
-                    ("persistent-action" variable (:default-value "(quote helm-grep-persistent-action)") nil nil)
-                    ("persistent-help" variable (:default-value "Jump to line (`C-u' Record in mark ring)") nil nil)
-                    ("requires-pattern" variable (:default-value "2") nil nil)
-                    ("before-init-hook" variable (:default-value "(quote helm-grep-before-init-hook)") nil nil)
-                    ("after-init-hook" variable (:default-value "(quote helm-grep-after-init-hook)") nil nil)
-                    ("group" variable (:default-value "(quote helm-grep)") nil nil))                  
-                :type "class")
-                nil [42428 43579])
-            ("helm-source-grep" variable nil nil [43581 43610])
-            ("helm--setup-source" function
-               (:parent "helm-grep-class"
-                :arguments ("source"))
-                nil [43612 43958])
-            ("cl-defun" code nil nil [43960 47989])
-            ("helm-ff-zgrep-1" function (:arguments ("flist" "recursive")) nil [48009 48790])
-            ("helm-grep-split-line" function (:arguments ("line")) nil [48817 49293])
-            ("helm-grep--filter-candidate-1" function (:arguments ("candidate" "dir")) nil [49295 51088])
-            ("helm-grep-filter-one-by-one" function (:arguments ("candidate")) nil [51090 51718])
-            ("helm-grep-highlight-match" function (:arguments ("str" "multi-match")) nil [51720 53046])
-            ("helm-grep-buffers-1" function (:arguments ("candidate" "zgrep")) nil [53082 54684])
-            ("helm-grep-buffers" function (:arguments ("candidate")) nil [54686 54785])
-            ("helm-zgrep-buffers" function (:arguments ("candidate")) nil [54787 54895])
-            ("helm-pdfgrep-default-function" variable (:default-value (quote helm-pdfgrep-init)) nil [55031 55088])
-            ("helm-pdfgrep-init" function (:arguments ("only-files" "recurse")) nil [55089 57256])
-            ("helm-do-pdfgrep-1" function (:arguments ("only" "recurse")) nil [57258 58870])
-            ("helm-pdfgrep-action" function (:arguments ("candidate")) nil [58872 58947])
-            ("helm-pdfgrep-action-1" function (:arguments ("_split" "pageno" "fname")) nil [58949 59197])
-            ("helm-grep-ag-command" variable (:default-value "ag --line-numbers -S --hidden --color --nogroup %s %s %s") nil [59373 60599])
-            ("helm-grep--ag-command" function nil nil [60601 60721])
-            ("helm-grep-ag-get-types" function nil nil [60723 61519])
-            ("helm-grep-ag-prepare-cmd-line" function (:arguments ("pattern" "directory" "type")) nil [61521 62625])
-            ("helm-grep-ag-init" function (:arguments ("directory" "type")) nil [62627 65889])
-            ("helm-grep-ag-class" type
-               (:superclasses "helm-source-async"
-                :members 
-                  ( ("nohighlight" variable (:default-value "t") nil nil)
-                    ("pcre" variable
-                       (:documentation "  Backend is using pcre regexp engine when non--nil."
-                        :default-value "t")
-                        nil nil)
-                    ("keymap" variable (:default-value "helm-grep-map") nil nil)
-                    ("history" variable (:default-value "(quote helm-grep-ag-history)") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-grep-help-message)") nil nil)
-                    ("filter-one-by-one" variable (:default-value "(quote helm-grep-filter-one-by-one)") nil nil)
-                    ("persistent-action" variable (:default-value "(quote helm-grep-persistent-action)") nil nil)
-                    ("persistent-help" variable (:default-value "Jump to line (`C-u' Record in mark ring)") nil nil)
-                    ("candidate-number-limit" variable (:default-value "99999") nil nil)
-                    ("requires-pattern" variable (:default-value "2") nil nil)
-                    ("nomark" variable (:default-value "t") nil nil)
-                    ("action" variable (:default-value "(quote helm-grep-actions)") nil nil)
-                    ("group" variable (:default-value "(quote helm-grep)") nil nil))                  
-                :type "class")
-                nil [65891 66601])
-            ("helm-source-grep-ag" variable nil nil [66603 66635])
-            ("helm--setup-source" function
-               (:parent "helm-grep-ag-class"
-                :arguments ("source"))
-                nil [66637 66907])
-            ("helm-grep-ag-1" function (:arguments ("directory" "type")) nil [66909 67596])
-            ("helm-grep-ag" function (:arguments ("directory" "with-types")) nil [67598 68158])
-            ("helm-source-grep-git" variable nil nil [68179 68212])
-            ("helm-grep-git-grep-command" variable (:default-value "git --no-pager grep -n%cH --color=always --full-name -e %p -- %f") nil [68214 68869])
-            ("helm-grep-git-1" function (:arguments ("directory" "all" "default" "input")) nil [68871 69853])
-            ("helm-do-grep-ag" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [69872 70138])
-            ("helm-grep-do-git-grep" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [70155 70390])
-            ("helm-grep" package nil nil [70393 70413]))          
-      :file "helm-grep.el"
-      :pointmax 70554
-      :fsize 70553
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [952 969])
-            ("helm" include nil nil [970 985])
-            ("helm-types" include nil nil [986 1007])
-            ("helm-help" include nil nil [1008 1028])
-            ("helm-locate" customgroup (:user-visible-flag t) nil [1032 1129])
-            ("helm-locate-db-file-regexp" variable (:default-value "m?locate.db$") nil [1131 1297])
-            ("helm-ff-locate-db-filename" variable (:default-value "locate.db") nil [1299 1685])
-            ("helm-locate-command" variable nil nil [1687 2779])
-            ("helm-locate-create-db-command" variable (:default-value "updatedb -l 0 -o '%s' -U '%s'") nil [2781 2946])
-            ("helm-locate-case-fold-search" variable (:default-value helm-case-fold-search) nil [2948 3389])
-            ("helm-locate-fuzzy-match" variable nil nil [3391 3575])
-            ("helm-locate-fuzzy-sort-fn" variable (:default-value (function helm-locate-default-fuzzy-sort-fn)) nil [3577 3744])
-            ("helm-locate-project-list" variable nil nil [3746 3983])
-            ("helm-locate-recursive-dirs-command" variable (:default-value "locate -i -e -A --regex '^%s' '%s.*$'") nil [3985 4509])
-            ("helm-locate-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-generic-files-map) (define-key map (kbd "DEL") (quote helm-delete-backward-no-update)) map)) nil [4513 4698])
-            ("helm-locate-finish" variable
-               (:default-value (quote ((t (:foreground "Green"))))
-                :type "face")
-                nil [4701 4842])
-            ("helm-ff-find-locatedb" function (:arguments ("from-ff")) nil [4846 5373])
-            ("helm-locate-create-db-default-function" function (:arguments ("db-name" "directory")) nil [5375 5684])
-            ("helm-locate-create-db-function" variable (:default-value (function helm-locate-create-db-default-function)) nil [5686 5903])
-            ("helm-locate-1" function (:arguments ("localdb" "init" "from-ff" "default")) nil [5905 8205])
-            ("helm-locate-set-command" function nil nil [8207 8554])
-            ("helm-locate-initial-setup" function nil nil [8556 8648])
-            ("helm-file-name-history" variable nil nil [8650 8685])
-            ("helm-locate-with-db" function (:arguments ("db" "initial-input" "default")) nil [8686 10546])
-            ("helm-locate-init" function nil nil [10548 13758])
-            ("helm-locate-default-fuzzy-sort-fn" function (:arguments ("candidates")) nil [13760 13968])
-            ("helm-locate-override-inheritor" type
-               (:superclasses "helm-type-file"
-                :type "class")
-                nil [13970 14031])
-            ("helm-locate-source" type
-               (:interfaces ("helm-locate-override-inheritor")
-                :superclasses "helm-source-async"
-                :members 
-                  ( ("init" variable (:default-value "(quote helm-locate-initial-setup)") nil nil)
-                    ("candidates-process" variable (:default-value "(quote helm-locate-init)") nil nil)
-                    ("requires-pattern" variable (:default-value "3") nil nil)
-                    ("history" variable (:default-value "(quote helm-file-name-history)") nil nil)
-                    ("persistent-action" variable (:default-value "(quote helm-ff-kill-or-find-buffer-fname)") nil nil)
-                    ("candidate-number-limit" variable (:default-value "9999") nil nil)
-                    ("redisplay" variable (:default-value "(progn helm-locate-fuzzy-sort-fn)") nil nil)
-                    ("group" variable (:default-value "(quote helm-locate)") nil nil))                  
-                :type "class")
-                nil [14033 14498])
-            ("helm--setup-source" function
-               (:parent "helm-locate-override-inheritor"
-                :arguments ("source"))
-                nil [14541 14673])
-            ("helm-source-locate" variable (:default-value (helm-make-source "Locate" (quote helm-locate-source) :pattern-transformer (quote helm-locate-pattern-transformer) :match-part (lambda (candidate) (if (or (string-match-p " -b\\'" helm-pattern) (and helm-locate-fuzzy-match (not (string-match "\\s-" helm-pattern)))) (helm-basename candidate) candidate)))) nil [14675 15217])
-            ("helm-locate-pattern-transformer" function (:arguments ("pattern")) nil [15219 15917])
-            ("helm-locate-find-dbs-in-projects" function (:arguments ("update")) nil [15919 16673])
-            ("helm-locate-subdirs-source" type
-               (:superclasses "helm-source-in-buffer"
-                :members 
-                  ( ("basedir" variable (:default-value "nil") nil nil)
-                    ("subdir" variable (:default-value "nil") nil nil)
-                    ("data" variable (:default-value "(function helm-locate-init-subdirs)") nil nil)
-                    ("group" variable (:default-value "(quote helm-locate)") nil nil))                  
-                :type "class")
-                nil [16712 17020])
-            ("helm-locate-init-subdirs" function nil nil [17022 17449])
-            ("helm-projects-find-files" function
-               (:user-visible-flag t
-                :arguments ("update"))
-                nil [17466 18018])
-            ("helm-locate" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [18035 19020])
-            ("helm-locate" package nil nil [19022 19044]))          
-      :file "helm-locate.el"
-      :pointmax 19187
-      :fsize 19186
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [798 815])
-            ("helm" include nil nil [816 831])
-            ("helm-help" include nil nil [832 852])
-            ("helm-utils" include nil nil [853 874])
-            ("helm-grep" include nil nil [875 895])
-            ("helm-tags" customgroup (:user-visible-flag t) nil [899 992])
-            ("helm-etags-tag-file-name" variable (:default-value "TAGS") nil [994 1099])
-            ("helm-etags-tag-file-search-limit" variable (:default-value 10) nil [1101 1290])
-            ("helm-etags-match-part-only" variable (:default-value (quote tag)) nil [1292 1722])
-            ("helm-etags-execute-action-at-once-if-one" variable (:default-value t) nil [1724 1891])
-            ("helm-tags-faces" customgroup (:user-visible-flag t) nil [1895 2033])
-            ("helm-etags-file" variable
-               (:default-value (quote ((t (:foreground "Lightgoldenrod4" :underline t))))
-                :type "face")
-                nil [2035 2196])
-            ("helm-etags-run-switch-other-window" function (:user-visible-flag t) nil [2216 2481])
-            ("put" code nil nil [2482 2536])
-            ("helm-etags-run-switch-other-frame" function (:user-visible-flag t) nil [2538 2800])
-            ("put" code nil nil [2801 2854])
-            ("helm-etags-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-<down>") (quote helm-goto-next-file)) (define-key map (kbd "M-<up>") (quote helm-goto-precedent-file)) (define-key map (kbd "C-c o") (quote helm-etags-run-switch-other-window)) (define-key map (kbd "C-c C-o") (quote helm-etags-run-switch-other-frame)) map)) nil [2856 3257])
-            ("helm-etags-mtime-alist" variable nil nil [3259 3352])
-            ("helm-etags-cache" variable (:default-value (make-hash-table :test (quote equal))) nil [3353 3471])
-            ("helm-etags-get-tag-file" function (:arguments ("directory")) nil [3473 3954])
-            ("helm-etags-all-tag-files" function nil nil [3956 4450])
-            ("helm-etags-find-tag-file-directory" function (:arguments ("current-dir")) nil [4452 5422])
-            ("helm-etags-get-header-name" function (:arguments ("_x")) nil [5424 5613])
-            ("helm-etags-create-buffer" function (:arguments ("file")) nil [5615 6995])
-            ("helm-etags-init" function nil nil [6997 8044])
-            ("helm-source-etags-select" variable nil nil [8046 8110])
-            ("helm-etags-build-source" function nil nil [8112 9543])
-            ("helm-etags-fuzzy-match" variable nil nil [9545 9799])
-            ("find-tag-marker-ring" variable nil nil [9801 9830])
-            ("helm-etags--file-from-tag" function (:arguments ("fname")) nil [9832 10060])
-            ("helm-etags-action-goto" function (:arguments ("switcher" "candidate")) nil [10062 11043])
-            ("helm-etags-mtime" function (:arguments ("file")) nil [11045 11162])
-            ("helm-etags-file-modified-p" function (:arguments ("file")) nil [11164 11463])
-            ("helm-etags-select" function
-               (:user-visible-flag t
-                :arguments ("reinit"))
-                nil [11480 13285])
-            ("helm-tags" package nil nil [13287 13307]))          
-      :file "helm-tags.el"
-      :pointmax 13448
-      :fsize 13447
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [812 829])
-            ("helm" include nil nil [830 845])
-            ("helm-types" include nil nil [846 867])
-            ("helm-utils" include nil nil [868 889])
-            ("helm-grep" include nil nil [890 910])
-            ("helm-regexp" include nil nil [911 933])
-            ("helm-help" include nil nil [934 954])
-            ("declare-function" code nil nil [956 1011])
-            ("declare-function" code nil nil [1012 1068])
-            ("declare-function" code nil nil [1069 1114])
-            ("declare-function" code nil nil [1115 1166])
-            ("helm-buffers" customgroup (:user-visible-flag t) nil [1170 1269])
-            ("helm-boring-buffer-regexp-list" variable (:default-value (quote ("\\` " "\\`\\*helm" "\\`\\*Echo Area" "\\`\\*Minibuf"))) nil [1271 1639])
-            ("helm-white-buffer-regexp-list" variable nil nil [1641 1878])
-            ("helm-buffers-favorite-modes" variable (:default-value (quote (lisp-interaction-mode emacs-lisp-mode text-mode org-mode))) nil [1880 2214])
-            ("helm-buffer-max-length" variable (:default-value 20) nil [2216 2484])
-            ("helm-buffer-details-flag" variable (:default-value t) nil [2486 2618])
-            ("helm-buffers-fuzzy-matching" variable nil nil [2620 2855])
-            ("helm-buffer-skip-remote-checking" variable nil nil [2857 3002])
-            ("helm-buffers-truncate-lines" variable (:default-value t) nil [3004 3142])
-            ("helm-mini-default-sources" variable (:default-value (quote (helm-source-buffers-list helm-source-recentf helm-source-buffer-not-found))) nil [3144 3554])
-            ("helm-buffers-end-truncated-string" variable (:default-value "...") nil [3556 3706])
-            ("helm-buffers-column-separator" variable (:default-value "  ") nil [3708 3838])
-            ("helm-buffer--pretty-names" variable (:default-value (quote ((dired-mode . "Dired") (lisp-interaction-mode . "Lisp Inter")))) nil [3840 4461])
-            ("helm-buffers-faces" customgroup (:user-visible-flag t) nil [4480 4621])
-            ("helm-buffer-saved-out" variable
-               (:default-value (quote ((t (:foreground "red" :background "black"))))
-                :type "face")
-                nil [4623 4792])
-            ("helm-buffer-not-saved" variable
-               (:default-value (quote ((t (:foreground "Indianred2"))))
-                :type "face")
-                nil [4794 4950])
-            ("helm-buffer-modified" variable
-               (:default-value (quote ((t :inherit font-lock-comment-face)))
-                :type "face")
-                nil [4952 5090])
-            ("helm-buffer-size" variable
-               (:default-value (quote ((((background dark)) :foreground "RosyBrown") (((background light)) :foreground "SlateGray")))
-                :type "face")
-                nil [5092 5284])
-            ("helm-buffer-process" variable
-               (:default-value (quote ((t (:foreground "Sienna3"))))
-                :type "face")
-                nil [5286 5423])
-            ("helm-buffer-directory" variable
-               (:default-value (quote ((t (:foreground "DarkRed" :background "LightGray"))))
-                :type "face")
-                nil [5425 5598])
-            ("helm-buffer-file" variable
-               (:default-value (quote ((t :inherit font-lock-builtin-face)))
-                :type "face")
-                nil [5600 5753])
-            ("helm-buffer-archive" variable
-               (:default-value (quote ((t (:foreground "Gold"))))
-                :type "face")
-                nil [5755 5901])
-            ("helm-non-file-buffer" variable
-               (:default-value (quote ((t (:inherit italic))))
-                :type "face")
-                nil [5903 6050])
-            ("helm-buffers-tick-counter" variable nil nil [6052 6440])
-            ("make-variable-buffer-local" code nil nil [6441 6496])
-            ("helm-buffer-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-g s") (quote helm-buffer-run-zgrep)) (define-key map (kbd "C-s") (quote helm-buffers-run-multi-occur)) (define-key map (kbd "C-x C-d") (quote helm-buffers-run-browse-project)) (define-key map (kbd "C-c o") (quote helm-buffer-switch-other-window)) (define-key map (kbd "C-c C-o") (quote helm-buffer-switch-other-frame)) (define-key map (kbd "C-c =") (quote helm-buffer-run-ediff)) (define-key map (kbd "M-=") (quote helm-buffer-run-ediff-merge)) (define-key map (kbd "C-=") (quote helm-buffer-diff-persistent)) (define-key map (kbd "M-G") (quote helm-buffer-revert-persistent)) (define-key map (kbd "C-c d") (quote helm-buffer-run-kill-persistent)) (define-key map (kbd "M-D") (quote helm-buffer-run-kill-buffers)) (define-key map (kbd "C-x C-s") (quote helm-buffer-save-persistent)) (define-key map (kbd "C-M-%") (quote helm-buffer-run-query-replace-regexp)) (define-key map (kbd "M-%") (quote helm-buffer-run-query-replace)) (define-key map (kbd "M-R") (quote helm-buffer-run-rename-buffer)) (define-key map (kbd "M-m") (quote helm-toggle-all-marks)) (define-key map (kbd "M-a") (quote helm-mark-all)) (define-key map (kbd "C-]") (quote helm-toggle-buffers-details)) (define-key map (kbd "C-c a") (quote helm-buffers-toggle-show-hidden-buffers)) (define-key map (kbd "C-M-SPC") (quote helm-buffers-mark-similar-buffers)) map)) nil [6522 8231])
-            ("helm-buffers-ido-virtual-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "C-c o") (quote helm-ff-run-switch-other-window)) (define-key map (kbd "C-c C-o") (quote helm-ff-run-switch-other-frame)) (define-key map (kbd "M-g s") (quote helm-ff-run-grep)) (define-key map (kbd "M-g z") (quote helm-ff-run-zgrep)) (define-key map (kbd "M-D") (quote helm-ff-run-delete-file)) (define-key map (kbd "C-c C-x") (quote helm-ff-run-open-file-externally)) map)) nil [8233 8735])
-            ("helm-buffer-max-len-mode" variable nil nil [8739 8776])
-            ("helm-buffers-in-project-p" variable nil nil [8777 8815])
-            ("helm-source-buffers-list" variable nil nil [8816 8853])
-            ("helm-buffers-list--init" function nil nil [8855 10442])
-            ("helm-source-buffers" type
-               (:interfaces ("helm-type-buffer")
-                :superclasses "helm-source-sync"
-                :members 
-                  ( ("buffer-list" variable
-                       (:documentation "  A function with no arguments to create buffer list."
-                        :default-value "(function helm-buffer-list)")
-                        nil nil)
-                    ("init" variable (:default-value "(quote helm-buffers-list--init)") nil nil)
-                    ("multimatch" variable (:default-value "nil") nil nil)
-                    ("match" variable (:default-value "(quote helm-buffers-match-function)") nil nil)
-                    ("persistent-action" variable (:default-value "(quote helm-buffers-list-persistent-action)") nil nil)
-                    ("keymap" variable (:default-value "helm-buffer-map") nil nil)
-                    ("migemo" variable (:default-value "(quote nomultimatch)") nil nil)
-                    ("volatile" variable (:default-value "t") nil nil)
-                    ("nohighlight" variable (:default-value "t") nil nil)
-                    ("resume" variable (:default-value "(lambda nil (setq helm-buffers-in-project-p nil))") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-buffer-help-message)") nil nil))                  
-                :type "class")
-                nil [10444 11136])
-            ("helm-source-buffer-not-found" variable (:default-value (helm-build-dummy-source "Create buffer" :action (helm-make-actions "Create buffer (C-u choose mode)" (lambda (candidate) (let ((mjm (or (and helm-current-prefix-arg (intern-soft (helm-comp-read "Major-mode: " helm-buffers-favorite-modes))) (cl-loop for (r . m) in auto-mode-alist when (string-match r candidate) return m))) (buffer (get-buffer-create candidate))) (if mjm (with-current-buffer buffer (funcall mjm)) (set-buffer-major-mode buffer)) (switch-to-buffer buffer)))))) nil [11138 12014])
-            ("ido-temp-list" variable nil nil [12016 12038])
-            ("ido-ignored-list" variable nil nil [12039 12064])
-            ("ido-process-ignore-lists" variable nil nil [12065 12098])
-            ("ido-use-virtual-buffers" variable nil nil [12099 12131])
-            ("ido-virtual-buffers" variable nil nil [12132 12160])
-            ("helm-source-ido-virtual-buffers" variable (:default-value (helm-build-sync-source "Ido virtual buffers" :candidates (lambda nil (let (ido-temp-list ido-ignored-list (ido-process-ignore-lists t)) (when ido-use-virtual-buffers (ido-add-virtual-buffers-to-list) ido-virtual-buffers))) :fuzzy-match helm-buffers-fuzzy-matching :keymap helm-buffers-ido-virtual-map :help-message (quote helm-buffers-ido-virtual-help-message) :action (quote (("Find file" . helm-find-many-files) ("Find file other window" . find-file-other-window) ("Find file other frame" . find-file-other-frame) ("Find file as root" . helm-find-file-as-root) ("Grep File(s) `C-u recurse'" . helm-find-files-grep) ("Zgrep File(s) `C-u Recurse'" . helm-ff-zgrep) ("View file" . view-file) ("Delete file(s)" . helm-delete-marked-files) ("Open file externally (C-u to choose)" . helm-open-file-externally))))) nil [12162 13276])
-            ("ido-use-virtual-buffers" variable nil nil [13280 13312])
-            ("ido-ignore-buffers" variable nil nil [13313 13340])
-            ("helm-buffer-list" function nil nil [13341 13680])
-            ("helm-buffer-size" function (:arguments ("buffer")) nil [13682 13918])
-            ("helm-buffer--show-details" function (:arguments ("buf-name" "prefix" "help-echo" "size" "mode" "dir" "face1" "face2" "proc" "details" "type")) nil [13920 14569])
-            ("helm-buffer--format-mode-name" function (:arguments ("buf")) nil [14571 14886])
-            ("helm-buffer--details" function (:arguments ("buffer" "details")) nil [14888 18424])
-            ("helm-highlight-buffers" function (:arguments ("buffers" "_source")) nil [18426 20760])
-            ("helm-buffer--get-preselection" function (:arguments ("buffer")) nil [20762 21591])
-            ("helm-toggle-buffers-details" function nil nil [21593 22090])
-            ("put" code nil nil [22091 22138])
-            ("helm-buffers--pattern-sans-filters" function (:arguments ("separator")) nil [22140 22427])
-            ("helm-buffers-sort-transformer" function (:arguments ("candidates" "source")) nil [22429 22823])
-            ("helm-buffers-mark-similar-buffers-1" function nil nil [22825 23972])
-            ("helm-buffers-mark-similar-buffers" function (:user-visible-flag t) nil [23974 24363])
-            ("put" code nil nil [24364 24417])
-            ("helm-buffer--match-mjm" function (:arguments ("pattern" "mjm")) nil [24444 25132])
-            ("helm-buffer--memo-hash" variable (:default-value (make-hash-table :test (quote equal))) nil [25134 25196])
-            ("helm-buffer--memo-pattern" function (:arguments ("pattern")) nil [25197 25384])
-            ("helm-buffer--match-pattern" function (:arguments ("pattern" "candidate" "nofuzzy")) nil [25386 26014])
-            ("helm-buffers--match-from-mjm" function (:arguments ("candidate")) nil [26016 26568])
-            ("helm-buffers--match-from-pat" function (:arguments ("candidate")) nil [26570 27093])
-            ("helm-buffers--match-from-inside" function (:arguments ("candidate")) nil [27095 27758])
-            ("helm-buffers--match-from-directory" function (:arguments ("candidate")) nil [27760 28470])
-            ("helm-buffers-match-function" function (:arguments ("candidate")) nil [28472 28760])
-            ("helm-buffer-query-replace-1" function (:arguments ("regexp-flag" "buffers")) nil [28764 29630])
-            ("helm-buffer-query-replace-regexp" function (:arguments ("_candidate")) nil [29632 29725])
-            ("helm-buffer-query-replace" function (:arguments ("_candidate")) nil [29727 29805])
-            ("helm-buffer-toggle-diff" function (:arguments ("candidate")) nil [29807 30094])
-            ("helm-buffer-diff-persistent" function (:user-visible-flag t) nil [30096 30325])
-            ("put" code nil nil [30326 30373])
-            ("helm-revert-buffer" function (:arguments ("candidate")) nil [30375 30534])
-            ("helm-revert-marked-buffers" function (:arguments ("_ignore")) nil [30536 30634])
-            ("helm-buffer-revert-and-update" function (:arguments ("_candidate")) nil [30636 31003])
-            ("helm-buffer-revert-persistent" function (:user-visible-flag t) nil [31005 31257])
-            ("put" code nil nil [31258 31307])
-            ("helm-buffer-save-and-update" function (:arguments ("_candidate")) nil [31309 31763])
-            ("helm-buffer-save-persistent" function (:user-visible-flag t) nil [31765 32007])
-            ("put" code nil nil [32008 32055])
-            ("helm-buffers-rename-buffer" function (:arguments ("candidate")) nil [32057 32205])
-            ("helm-buffer-run-rename-buffer" function (:user-visible-flag t) nil [32207 32410])
-            ("put" code nil nil [32411 32460])
-            ("helm-buffer-run-kill-persistent" function (:user-visible-flag t) nil [32462 32709])
-            ("put" code nil nil [32710 32761])
-            ("helm-kill-marked-buffers" function (:arguments ("_ignore")) nil [32763 33102])
-            ("helm-buffer-run-kill-buffers" function (:user-visible-flag t) nil [33104 33302])
-            ("put" code nil nil [33303 33351])
-            ("helm-buffer-run-grep" function (:user-visible-flag t) nil [33353 33529])
-            ("put" code nil nil [33530 33570])
-            ("helm-buffer-run-zgrep" function (:user-visible-flag t) nil [33572 33750])
-            ("put" code nil nil [33751 33792])
-            ("helm-buffer-run-query-replace-regexp" function (:user-visible-flag t) nil [33794 34017])
-            ("put" code nil nil [34018 34074])
-            ("helm-buffer-run-query-replace" function (:user-visible-flag t) nil [34076 34278])
-            ("put" code nil nil [34279 34328])
-            ("helm-buffer-switch-other-window" function (:user-visible-flag t) nil [34330 34557])
-            ("put" code nil nil [34558 34609])
-            ("helm-buffer-switch-other-frame" function (:user-visible-flag t) nil [34611 34825])
-            ("put" code nil nil [34826 34876])
-            ("helm-buffer-switch-buffers" function (:arguments ("_candidate")) nil [34878 35197])
-            ("helm-buffer-switch-buffers-other-window" function (:arguments ("_candidate")) nil [35199 35392])
-            ("helm-buffer-run-ediff" function (:user-visible-flag t) nil [35394 35580])
-            ("put" code nil nil [35581 35622])
-            ("helm-buffer-run-ediff-merge" function (:user-visible-flag t) nil [35624 35822])
-            ("put" code nil nil [35823 35870])
-            ("helm-buffers-persistent-kill-1" function (:arguments ("buffer-or-name")) nil [35872 36436])
-            ("helm-buffers--quote-truncated-buffer" function (:arguments ("buffer")) nil [36438 37014])
-            ("helm-buffers-persistent-kill" function (:arguments ("_buffer")) nil [37016 37904])
-            ("helm-buffers-list-persistent-action" function (:arguments ("candidate")) nil [37906 38493])
-            ("helm-ediff-marked-buffers" function (:arguments ("_candidate" "merge")) nil [38495 39204])
-            ("helm-ediff-marked-buffers-merge" function (:arguments ("candidate")) nil [39206 39386])
-            ("helm-multi-occur-as-action" function (:arguments ("_candidate")) nil [39388 39997])
-            ("helm-buffers-run-multi-occur" function (:user-visible-flag t) nil [39999 40184])
-            ("put" code nil nil [40185 40233])
-            ("helm-buffers-toggle-show-hidden-buffers" function nil nil [40235 41091])
-            ("put" code nil nil [41092 41151])
-            ("helm-buffers-browse-project" function (:arguments ("buf")) nil [41153 41304])
-            ("helm-buffers-run-browse-project" function (:user-visible-flag t) nil [41306 41604])
-            ("helm-skip-boring-buffers" function (:arguments ("buffers" "_source")) nil [41640 41823])
-            ("helm-shadow-boring-buffers" function (:arguments ("buffers" "_source")) nil [41825 42054])
-            ("helm-buffers-list" function (:user-visible-flag t) nil [42073 42553])
-            ("helm-mini" function (:user-visible-flag t) nil [42570 43005])
-            ("helm-quit-and-helm-mini" function (:user-visible-flag t) nil [43007 43155])
-            ("helm-buffers" package nil nil [43157 43180]))          
-      :file "helm-buffers.el"
-      :pointmax 43324
-      :fsize 43323
-      :lastmodtime '(23537 22014 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [837 854])
-            ("helm" include nil nil [855 870])
-            ("helm-help" include nil nil [871 891])
-            ("helm-utils" include nil nil [892 913])
-            ("declare-function" code nil nil [915 974])
-            ("helm-regexp" customgroup (:user-visible-flag t) nil [978 1075])
-            ("helm-moccur-always-search-in-current" variable nil nil [1077 1236])
-            ("helm-moccur-use-ioccur-style-keys" variable (:default-value t) nil [1238 1394])
-            ("helm-moccur-auto-update-on-resume" variable nil nil [1396 2078])
-            ("helm-source-multi-occur-actions" variable (:default-value (quote (("Go to Line" . helm-moccur-goto-line) ("Goto line other window (C-u vertically)" . helm-moccur-goto-line-ow) ("Goto line new frame" . helm-moccur-goto-line-of) ("Save buffer" . helm-moccur-save-results)))) nil [2080 2465])
-            ("helm-moccur-truncate-lines" variable (:default-value t) nil [2467 2613])
-            ("helm-moccur-show-buffer-fontification" variable nil nil [2615 3127])
-            ("helm-moccur-buffer-substring-fn-for-modes" variable (:default-value (quote ((mu4e-headers-mode . buffer-substring) (package-menu-mode . buffer-substring-no-properties)))) nil [3129 3792])
-            ("helm-occur-show-buffer-name" variable nil nil [3794 4055])
-            ("helm-moccur-buffer" variable
-               (:default-value (quote ((t (:foreground "DarkTurquoise" :underline t))))
-                :type "face")
-                nil [4058 4210])
-            ("helm-resume-need-update" variable
-               (:default-value (quote ((t (:background "red"))))
-                :type "face")
-                nil [4212 4357])
-            ("helm-moccur-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-<down>") (quote helm-goto-next-file)) (define-key map (kbd "M-<up>") (quote helm-goto-precedent-file)) (define-key map (kbd "C-c o") (quote helm-moccur-run-goto-line-ow)) (define-key map (kbd "C-c C-o") (quote helm-moccur-run-goto-line-of)) (define-key map (kbd "C-x C-s") (quote helm-moccur-run-save-buffer)) (when helm-moccur-use-ioccur-style-keys (define-key map (kbd "<right>") (quote helm-execute-persistent-action)) (define-key map (kbd "<left>") (quote helm-moccur-run-default-action))) (delq nil map))) nil [4361 5027])
-            ("helm-build-regexp-history" variable nil nil [5047 5085])
-            ("helm-occur-history" variable nil nil [5086 5117])
-            ("helm-query-replace-regexp" function (:arguments ("_candidate")) nil [5119 5461])
-            ("helm-kill-regexp-as-sexp" function (:arguments ("_candidate")) nil [5463 5614])
-            ("helm-kill-regexp" function (:arguments ("_candidate")) nil [5616 5733])
-            ("helm-query-replace-args" function (:arguments ("regexp")) nil [5735 6302])
-            ("helm-source-regexp" variable (:default-value (helm-build-in-buffer-source "Regexp Builder" :init (lambda nil (helm-init-candidates-in-buffer (quote global) (with-temp-buffer (insert-buffer-substring helm-current-buffer) (buffer-string)))) :get-line (function helm-regexp-get-line) :persistent-action (function helm-regexp-persistent-action) :persistent-help "Show this line" :multiline t :multimatch nil :requires-pattern 2 :group (quote helm-regexp) :mode-line "Press TAB to select action." :action (quote (("Kill Regexp as sexp" . helm-kill-regexp-as-sexp) ("Query Replace Regexp (C-u Not inside word.)" . helm-query-replace-regexp) ("Kill Regexp" . helm-kill-regexp))))) nil [6304 7084])
-            ("helm-regexp-get-line" function (:arguments ("s" "e")) nil [7086 7572])
-            ("helm-regexp-persistent-action" function (:arguments ("pt")) nil [7574 7670])
-            ("helm-regexp-kill-new" function (:arguments ("input")) nil [7672 7784])
-            ("helm-source-occur" variable nil nil [7804 7834])
-            ("helm-occur-init-source" function nil nil [7835 7988])
-            ("helm-multi-occur-buffer-list" variable nil nil [8027 8068])
-            ("helm-multi-occur-buffer-tick" variable nil nil [8069 8110])
-            ("helm-occur--invisible" variable nil nil [8111 8258])
-            ("helm-moccur-init" function nil nil [8260 9516])
-            ("helm-moccur--next-or-previous-char" function nil nil [9518 9662])
-            ("helm-moccur-get-line" function (:arguments ("beg" "end")) nil [9664 10925])
-            ("cl-defun" code nil nil [10927 12157])
-            ("helm-moccur-persistent-action" function (:arguments ("candidate")) nil [12159 12276])
-            ("helm-moccur-goto-line" function (:arguments ("candidate")) nil [12278 12434])
-            ("helm-moccur-goto-line-ow" function (:arguments ("candidate")) nil [12436 12635])
-            ("helm-moccur-goto-line-of" function (:arguments ("candidate")) nil [12637 12829])
-            ("helm-moccur-run-goto-line-ow" function (:user-visible-flag t) nil [12831 13034])
-            ("put" code nil nil [13035 13083])
-            ("helm-moccur-run-goto-line-of" function (:user-visible-flag t) nil [13085 13285])
-            ("put" code nil nil [13286 13334])
-            ("helm-moccur-run-default-action" function nil nil [13336 13473])
-            ("put" code nil nil [13474 13524])
-            ("helm-moccur-before-init-hook" variable nil nil [13526 13628])
-            ("helm-moccur-after-init-hook" variable nil nil [13630 13730])
-            ("helm-source-moccur" variable nil nil [13732 13763])
-            ("helm-source-multi-occur" type
-               (:superclasses "helm-source-in-buffer"
-                :members 
-                  ( ("init" variable (:default-value "(lambda nil (require (quote helm-grep)) (helm-moccur-init))") nil nil)
-                    ("filter-one-by-one" variable (:default-value "(quote helm-moccur-filter-one-by-one)") nil nil)
-                    ("get-line" variable (:default-value "helm-moccur-get-line") nil nil)
-                    ("nohighlight" variable (:default-value "t") nil nil)
-                    ("nomark" variable (:default-value "t") nil nil)
-                    ("migemo" variable (:default-value "t") nil nil)
-                    ("action" variable (:default-value "(quote helm-source-multi-occur-actions)") nil nil)
-                    ("persistent-action" variable (:default-value "(quote helm-moccur-persistent-action)") nil nil)
-                    ("persistent-help" variable (:default-value "Go to line") nil nil)
-                    ("resume" variable (:default-value "(quote helm-moccur-resume-fn)") nil nil)
-                    ("candidate-number-limit" variable (:default-value "9999") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-moccur-help-message)") nil nil)
-                    ("keymap" variable (:default-value "helm-moccur-map") nil nil)
-                    ("history" variable (:default-value "(quote helm-occur-history)") nil nil)
-                    ("requires-pattern" variable (:default-value "2") nil nil)
-                    ("before-init-hook" variable (:default-value "(quote helm-moccur-before-init-hook)") nil nil)
-                    ("after-init-hook" variable (:default-value "(quote helm-moccur-after-init-hook)") nil nil)
-                    ("group" variable (:default-value "(quote helm-regexp)") nil nil))                  
-                :type "class")
-                nil [13764 14699])
-            ("helm-moccur-resume-fn" function nil nil [14701 17657])
-            ("helm-moccur-filter-one-by-one" function (:arguments ("candidate" "outside-helm")) nil [17659 18734])
-            ("helm-multi-occur-1" function (:arguments ("buffers" "input")) nil [18736 19831])
-            ("helm-moccur-run-save-buffer" function (:user-visible-flag t) nil [19833 20025])
-            ("put" code nil nil [20026 20073])
-            ("helm-moccur-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map (kbd "RET") (quote helm-moccur-mode-goto-line)) (define-key map (kbd "C-o") (quote helm-moccur-mode-goto-line-ow)) (define-key map (kbd "<C-down>") (quote helm-moccur-mode-goto-line-ow-forward)) (define-key map (kbd "<C-up>") (quote helm-moccur-mode-goto-line-ow-backward)) (define-key map (kbd "<M-down>") (quote helm-gm-next-file)) (define-key map (kbd "<M-up>") (quote helm-gm-precedent-file)) (define-key map (kbd "M-n") (quote helm-moccur-mode-goto-line-ow-forward)) (define-key map (kbd "M-p") (quote helm-moccur-mode-goto-line-ow-backward)) (define-key map (kbd "M-N") (quote helm-gm-next-file)) (define-key map (kbd "M-P") (quote helm-gm-precedent-file)) map)) nil [20104 20861])
-            ("helm-moccur-mode-goto-line" function nil nil [20863 21044])
-            ("helm-moccur-mode-goto-line-ow" function nil nil [21046 21233])
-            ("helm-moccur-mode-goto-line-ow-forward-1" function (:arguments ("arg")) nil [21235 21462])
-            ("helm-moccur-mode-goto-line-ow-forward" function nil nil [21464 21574])
-            ("helm-moccur-mode-goto-line-ow-backward" function nil nil [21576 21688])
-            ("helm-moccur-save-results" function (:arguments ("_candidate")) nil [21690 23603])
-            ("helm-moccur-mode-mouse-goto-line" function (:arguments ("event")) nil [23605 23916])
-            ("put" code nil nil [23917 23969])
-            ("define-derived-mode" code nil nil [23986 24391])
-            ("put" code nil nil [24392 24428])
-            ("helm-moccur-mode--revert-buffer-function" function (:arguments ("_ignore-auto" "_noconfirm")) nil [24430 26458])
-            ("helm-regexp" function (:user-visible-flag t) nil [26508 27063])
-            ("helm-occur" function (:user-visible-flag t) nil [27080 29374])
-            ("helm-occur-from-isearch" function (:user-visible-flag t) nil [29391 30286])
-            ("helm-multi-occur-from-isearch" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [30303 31306])
-            ("helm-regexp" package nil nil [31309 31331]))          
-      :file "helm-regexp.el"
-      :pointmax 31474
-      :fsize 31473
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [817 834])
-            ("helm" include nil nil [835 850])
-            ("helm-lib" include nil nil [851 870])
-            ("helm-help" include nil nil [871 891])
-            ("helm-types" include nil nil [892 913])
-            ("helm-utils" include nil nil [914 935])
-            ("helm-info" include nil nil [936 956])
-            ("helm-eval" include nil nil [957 977])
-            ("helm-files" include nil nil [978 999])
-            ("declare-function" code nil nil [1001 1054])
-            ("declare-function" code nil nil [1055 1108])
-            ("declare-function" code nil nil [1109 1158])
-            ("helm-elisp" customgroup (:user-visible-flag t) nil [1187 1282])
-            ("helm-turn-on-show-completion" variable (:default-value t) nil [1284 1445])
-            ("helm-show-completion-min-window-height" variable (:default-value 7) nil [1447 1651])
-            ("helm-lisp-quoted-function-list" variable (:default-value (quote (funcall apply mapc cl-mapc mapcar cl-mapcar callf callf2 cl-callf cl-callf2 fset fboundp fmakunbound symbol-function))) nil [1653 1990])
-            ("helm-lisp-unquoted-function-list" variable (:default-value (quote (function defadvice))) nil [1992 2227])
-            ("helm-apropos-fuzzy-match" variable nil nil [2229 2366])
-            ("helm-lisp-fuzzy-completion" variable nil nil [2368 2699])
-            ("helm-apropos-function-list" variable (:default-value (quote (helm-def-source--emacs-commands helm-def-source--emacs-functions helm-def-source--eieio-classes helm-def-source--eieio-generic helm-def-source--emacs-variables helm-def-source--emacs-faces))) nil [2701 3260])
-            ("helm-apropos-defaut-info-lookup-sources" variable (:default-value (quote (helm-source-info-elisp helm-source-info-cl helm-source-info-eieio))) nil [3262 3616])
-            ("helm-show-completion-display-function" variable (:default-value (if (display-graphic-p) (function helm-display-buffer-in-own-frame) (function helm-show-completion-default-display-function))) nil [3618 4121])
-            ("helm-elisp-faces" customgroup (:user-visible-flag t) nil [4140 4275])
-            ("helm-lisp-show-completion" variable
-               (:default-value (quote ((t (:background "DarkSlateGray"))))
-                :type "face")
-                nil [4277 4444])
-            ("helm-lisp-completion-info" variable
-               (:default-value (quote ((t (:foreground "red"))))
-                :type "face")
-                nil [4446 4597])
-            ("helm-elisp-help-function" variable (:default-value (quote helm-elisp-show-help)) nil [4599 4942])
-            ("helm-locate-library-fuzzy-match" variable (:default-value t) nil [4944 5093])
-            ("helm-show-completion-overlay" variable nil nil [5189 5230])
-            ("helm-show-completion" function nil nil [5280 5487])
-            ("helm-show-completion-init-overlay" function (:arguments ("beg" "end")) nil [5489 5694])
-            ("helm-show-completion-default-display-function" function (:arguments ("buffer" "_args")) nil [5696 6731])
-            ("with-helm-show-completion" function (:arguments ("beg" "end" "body")) nil [6733 8029])
-            ("helm-lisp-completion--predicate-at-point" function (:arguments ("beg")) nil [8067 9771])
-            ("helm-thing-before-point" function (:arguments ("limits" "regexp")) nil [9773 10442])
-            ("helm-bounds-of-thing-before-point" function (:arguments ("regexp")) nil [10444 10645])
-            ("helm-insert-completion-at-point" function (:arguments ("beg" "end" "str")) nil [10647 11226])
-            ("helm-lisp-completion--cache" variable nil nil [11228 11268])
-            ("helm-lgst-len" variable nil nil [11269 11295])
-            ("helm-lisp-completion-at-point" function (:user-visible-flag t) nil [11311 13961])
-            ("helm-lisp-completion-persistent-action" function (:arguments ("candidate" "name")) nil [13963 14257])
-            ("helm-lisp-completion-persistent-help" function nil nil [14259 14556])
-            ("helm-elisp--show-help-1" function (:arguments ("candidate" "name")) nil [14558 15107])
-            ("helm-elisp-show-help" function (:arguments ("candidate" "name")) nil [15109 15511])
-            ("helm-elisp-show-doc-modeline" function (:arguments ("candidate" "name")) nil [15513 15875])
-            ("helm-lisp-completion-transformer" function (:arguments ("candidates" "_source")) nil [15877 16521])
-            ("helm-get-first-line-documentation" function (:arguments ("sym" "name")) nil [16523 17475])
-            ("helm-complete-file-name-at-point" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [17549 18707])
-            ("helm-lisp-indent" function nil nil [18724 19108])
-            ("helm-lisp-completion-or-file-name-at-point" function (:user-visible-flag t) nil [19125 19648])
-            ("helm-apropos-history" variable nil nil [19670 19703])
-            ("helm-apropos-init" function (:arguments ("test" "default")) nil [19705 20144])
-            ("helm-apropos-init-faces" function (:arguments ("default")) nil [20146 20795])
-            ("helm-apropos-default-sort-fn" function (:arguments ("candidates" "_source")) nil [20797 20951])
-            ("helm-apropos-clean-history-variable" function (:arguments ("candidate")) nil [20953 21613])
-            ("helm-apropos-clean-ring" function (:arguments ("candidate")) nil [21615 22391])
-            ("helm-apropos-action-transformer" function (:arguments ("actions" "candidate")) nil [22393 23514])
-            ("helm-def-source--emacs-variables" function (:arguments ("default")) nil [23516 24431])
-            ("helm-def-source--emacs-faces" function (:arguments ("default")) nil [24433 25451])
-            ("helm-def-source--emacs-commands" function (:arguments ("default")) nil [25453 26205])
-            ("helm-def-source--emacs-functions" function (:arguments ("default")) nil [26207 27218])
-            ("helm-def-source--eieio-classes" function (:arguments ("default")) nil [27220 28047])
-            ("helm-def-source--eieio-generic" function (:arguments ("default")) nil [28049 28899])
-            ("helm-info-lookup-fallback-source" function (:arguments ("candidate")) nil [28901 29874])
-            ("helm-info-lookup-symbol-1" function (:arguments ("c")) nil [29876 30197])
-            ("helm-info-lookup-symbol" function (:arguments ("candidate")) nil [30199 30455])
-            ("helm-apropos" function
-               (:user-visible-flag t
-                :arguments ("default"))
-                nil [30472 31048])
-            ("helm-source-advice" variable (:default-value (helm-build-sync-source "Function Advice" :init (lambda nil (require (quote advice))) :candidates (quote helm-advice-candidates) :action (helm-make-actions "Toggle Enable/Disable" (quote helm-advice-toggle)) :persistent-action (quote helm-advice-persistent-action) :nomark t :multiline t :persistent-help "Toggle describe function / C-u C-j: Toggle advice")) nil [31070 31456])
-            ("helm-advice-candidates" function nil nil [31458 32168])
-            ("helm-advice-persistent-action" function (:arguments ("func-class-advice")) nil [32170 32346])
-            ("helm-advice-toggle" function (:arguments ("func-class-advice")) nil [32348 32786])
-            ("helm-advice-update-current-display-string" function nil nil [32788 33110])
-            ("helm-manage-advice" function (:user-visible-flag t) nil [33127 33291])
-            ("helm-locate-library-scan-list" function nil nil [33326 33621])
-            ("helm-locate-library" function (:user-visible-flag t) nil [33638 34975])
-            ("helm-set-variable" function (:arguments ("var")) nil [34977 35408])
-            ("helm-absolute-time-timers-class" type
-               (:interfaces ("helm-type-timers")
-                :superclasses "helm-source-sync"
-                :members 
-                  ( ("candidates" variable (:default-value "timer-list") nil nil)
-                    ("allow-dups" variable (:default-value "t") nil nil)
-                    ("candidate-transformer" variable (:default-value "(lambda (candidates) (cl-loop for timer in candidates collect (cons (helm-elisp--format-timer timer) timer)))") nil nil))                  
-                :type "class")
-                nil [35436 35756])
-            ("helm-source-absolute-time-timers" variable (:default-value (helm-make-source "Absolute Time Timers" (quote helm-absolute-time-timers-class))) nil [35758 35876])
-            ("helm-idle-time-timers-class" type
-               (:interfaces ("helm-type-timers")
-                :superclasses "helm-source-sync"
-                :members 
-                  ( ("candidates" variable (:default-value "timer-idle-list") nil nil)
-                    ("allow-dups" variable (:default-value "t") nil nil)
-                    ("candidate-transformer" variable (:default-value "(lambda (candidates) (cl-loop for timer in candidates collect (cons (helm-elisp--format-timer timer) timer)))") nil nil))                  
-                :type "class")
-                nil [35878 36199])
-            ("helm-source-idle-time-timers" variable (:default-value (helm-make-source "Idle Time Timers" (quote helm-idle-time-timers-class))) nil [36201 36307])
-            ("helm-elisp--format-timer" function (:arguments ("timer")) nil [36309 36852])
-            ("helm-timers" function (:user-visible-flag t) nil [36869 37078])
-            ("helm-btf--usable-p" function nil nil [37116 37329])
-            ("if" code nil nil [37331 38746])
-            ("helm-source-complex-command-history" variable (:default-value (helm-build-sync-source "Complex Command History" :candidates (lambda nil (cl-loop for i in command-history unless (equal i (quote (helm-complex-command-history))) collect (prin1-to-string i))) :action (helm-make-actions "Eval" (lambda (candidate) (and (boundp (quote helm-sexp--last-sexp)) (setq helm-sexp--last-sexp candidate)) (let ((command (read candidate))) (unless (equal command (car command-history)) (setq command-history (cons command command-history)))) (run-with-timer 0.1 nil (function helm-sexp-eval) candidate)) "Edit and eval" (lambda (candidate) (edit-and-eval-command "Eval: " (read candidate)))) :persistent-action (function helm-sexp-eval) :multiline t)) nil [38748 39827])
-            ("helm-complex-command-history" function (:user-visible-flag t) nil [39844 40048])
-            ("helm-elisp" package nil nil [40050 40071]))          
-      :file "helm-elisp.el"
-      :pointmax 40213
-      :fsize 40212
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [809 826])
-            ("helm" include nil nil [827 842])
-            ("helm-help" include nil nil [843 863])
-            ("eldoc" include nil nil [864 880])
-            ("edebug" include nil nil [881 898])
-            ("helm-eval" customgroup (:user-visible-flag t) nil [902 995])
-            ("helm-eldoc-in-minibuffer-show-fn" variable (:default-value (quote helm-show-info-in-mode-line)) nil [997 1191])
-            ("helm-show-info-in-mode-line-delay" variable (:default-value 12) nil [1193 1352])
-            ("if" code nil nil [1413 2341])
-            ("helm-eldoc-active-minibuffers-list" variable nil nil [2383 2430])
-            ("helm-eval-expression-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "<C-return>") (quote helm-eval-new-line-and-indent)) (define-key map (kbd "<M-tab>") (quote lisp-indent-line)) (define-key map (kbd "<C-tab>") (quote helm-lisp-completion-at-point)) (define-key map (kbd "C-p") (quote previous-line)) (define-key map (kbd "C-n") (quote next-line)) (define-key map (kbd "<up>") (quote previous-line)) (define-key map (kbd "<down>") (quote next-line)) (define-key map (kbd "<right>") (quote forward-char)) (define-key map (kbd "<left>") (quote backward-char)) map)) nil [2432 3070])
-            ("helm-build-evaluation-result-source" function nil nil [3072 4542])
-            ("helm-eval-new-line-and-indent" function nil nil [4544 4631])
-            ("helm-eldoc-store-minibuffer" function nil nil [4633 4853])
-            ("helm-eldoc-show-in-eval" function nil nil [4855 5742])
-            ("helm-show-info-in-mode-line" function (:arguments ("str")) nil [5744 6051])
-            ("helm-source-calculation-result" variable (:default-value (helm-build-dummy-source "Calculation Result" :filtered-candidate-transformer (lambda (_candidates _source) (list (condition-case nil (calc-eval helm-pattern) (error "error")))) :nohighlight t :action (quote (("Copy result to kill-ring" lambda (candidate) (kill-new candidate) (message "Result \"%s\" copied to kill-ring" candidate)) ("Copy operation to kill-ring" lambda (_candidate) (kill-new helm-input) (message "Calculation copied to kill-ring")))))) nil [6082 7011])
-            ("helm-eval-expression" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [7028 7358])
-            ("eldoc-idle-delay" variable nil nil [7360 7385])
-            ("helm-eval-expression-with-eldoc" function (:user-visible-flag t) nil [7401 7958])
-            ("helm-calcul-expression" function (:user-visible-flag t) nil [7975 8167])
-            ("helm-eval" package nil nil [8169 8189]))          
-      :file "helm-eval.el"
-      :pointmax 8330
-      :fsize 8329
-      :lastmodtime '(23537 22014 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("helm-files" include nil nil [815 836])
-            ("helm-external" include nil nil [837 861])
-            ("helm-bookmark" include nil nil [862 886])
-            ("helm-multi-files-toggle-locate-binding" variable (:default-value "C-c p") nil [888 1058])
-            ("helm-for-files-preferred-list" variable (:default-value (quote (helm-source-buffers-list helm-source-recentf helm-source-bookmarks helm-source-file-cache helm-source-files-in-current-dir helm-source-locate))) nil [1060 1510])
-            ("helm-for-files-tramp-not-fancy" variable (:default-value t) nil [1512 1697])
-            ("file-cache-alist" variable nil nil [1720 1745])
-            ("helm-file-cache" type
-               (:interfaces ("helm-type-file")
-                :superclasses "helm-source-in-buffer"
-                :members 
-                  ( ("init" variable (:default-value "(lambda nil (require (quote filecache)))") nil nil))                  
-                :type "class")
-                nil [1747 1866])
-            ("helm-file-cache-get-candidates" function nil nil [1868 2102])
-            ("helm-source-file-cache" variable nil nil [2104 2139])
-            ("helm-file-cache-fuzzy-match" variable nil nil [2141 2556])
-            ("cl-defun" code nil nil [2558 2933])
-            ("helm-transform-file-cache" function (:arguments ("actions" "_candidate")) nil [2935 3247])
-            ("helm-recentf--basename-flag" variable nil nil [3273 3313])
-            ("helm-recentf-pattern-transformer" function (:arguments ("pattern")) nil [3315 3827])
-            ("helm-turn-on-recentf" variable (:default-value t) nil [3829 3956])
-            ("helm-recentf-source" type
-               (:interfaces ("helm-type-file")
-                :superclasses "helm-source-sync"
-                :members 
-                  ( ("init" variable (:default-value "(lambda nil (require (quote recentf)) (when helm-turn-on-recentf (recentf-mode 1)))") nil nil)
-                    ("candidates" variable (:default-value "(lambda nil recentf-list)") nil nil)
-                    ("pattern-transformer" variable (:default-value "(quote helm-recentf-pattern-transformer)") nil nil)
-                    ("match-part" variable (:default-value "(lambda (candidate) (if (or helm-ff-transformer-show-only-basename helm-recentf--basename-flag) (helm-basename candidate) candidate))") nil nil)
-                    ("migemo" variable (:default-value "t") nil nil)
-                    ("persistent-action" variable (:default-value "(quote helm-ff-kill-or-find-buffer-fname)") nil nil))                  
-                :type "class")
-                nil [3958 4626])
-            ("helm--setup-source" function
-               (:parent "helm-recentf-source"
-                :arguments ("source"))
-                nil [4628 5037])
-            ("helm-source-recentf" variable nil nil [5039 5189])
-            ("helm-recentf-fuzzy-match" variable nil nil [5191 5633])
-            ("helm-highlight-files" function (:arguments ("files" "_source")) nil [5668 7887])
-            ("helm-files-in-current-dir-source" type
-               (:interfaces ("helm-type-file")
-                :superclasses "helm-source-sync"
-                :members 
-                  ( ("candidates" variable (:default-value "(lambda nil (with-helm-current-buffer (let ((dir (helm-current-directory))) (when (file-accessible-directory-p dir) (directory-files dir t)))))") nil nil)
-                    ("pattern-transformer" variable (:default-value "(quote helm-recentf-pattern-transformer)") nil nil)
-                    ("match-part" variable (:default-value "(lambda (candidate) (if (or helm-ff-transformer-show-only-basename helm-recentf--basename-flag) (helm-basename candidate) candidate))") nil nil)
-                    ("fuzzy-match" variable (:default-value "t") nil nil)
-                    ("migemo" variable (:default-value "t") nil nil))                  
-                :type "class")
-                nil [7889 8631])
-            ("helm-source-files-in-current-dir" variable (:default-value (helm-make-source "Files from Current Directory" (quote helm-files-in-current-dir-source))) nil [8633 8766])
-            ("helm-for-files" function (:user-visible-flag t) nil [8783 9268])
-            ("helm-multi-files-toggle-to-locate" function nil nil [9270 9953])
-            ("put" code nil nil [9954 10007])
-            ("helm-multi-files" function (:user-visible-flag t) nil [10024 11903])
-            ("helm-recentf" function (:user-visible-flag t) nil [11920 12118])
-            ("helm-for-files" package nil nil [12120 12145]))          
-      :file "helm-for-files.el"
-      :pointmax 12291
-      :fsize 12290
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [844 861])
-            ("helm" include nil nil [862 877])
-            ("helm-help" include nil nil [878 898])
-            ("helm-net" include nil nil [899 918])
-            ("helm-external" customgroup (:user-visible-flag t) nil [922 1024])
-            ("helm-raise-command" variable nil nil [1026 1269])
-            ("helm-external-programs-associations" variable nil nil [1271 1577])
-            ("helm-default-external-file-browser" variable (:default-value "nautilus") nil [1579 1954])
-            ("helm-external-command-history" variable nil nil [1972 2014])
-            ("helm-external-commands-list" variable nil nil [2015 2191])
-            ("helm-external-commands-list-1" function (:arguments ("sort")) nil [2193 3277])
-            ("helm-run-or-raise" function (:arguments ("exe" "file")) nil [3279 4918])
-            ("helm-get-mailcap-for-file" function (:arguments ("filename")) nil [4920 5390])
-            ("helm-get-default-program-for-file" function (:arguments ("filename")) nil [5392 5973])
-            ("helm-open-file-externally" function (:arguments ("file")) nil [5975 8295])
-            ("helm-run-external-command" function
-               (:user-visible-flag t
-                :arguments ("program"))
-                nil [8312 9115])
-            ("helm-external" package nil nil [9118 9142]))          
-      :file "helm-external.el"
-      :pointmax 9284
-      :fsize 9283
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [808 825])
-            ("helm" include nil nil [826 841])
-            ("helm-lib" include nil nil [842 861])
-            ("imenu" include nil nil [862 878])
-            ("helm-utils" include nil nil [879 900])
-            ("helm-help" include nil nil [901 921])
-            ("helm-imenu" customgroup (:user-visible-flag t) nil [925 1020])
-            ("helm-imenu-delimiter" variable (:default-value " / ") nil [1022 1161])
-            ("helm-imenu-execute-action-at-once-if-one" variable (:default-value (function helm-imenu--execute-action-at-once-p)) nil [1163 1346])
-            ("helm-imenu-lynx-style-map" variable (:default-value t) nil [1348 1468])
-            ("helm-imenu-all-buffer-assoc" variable nil nil [1470 1876])
-            ("helm-imenu-in-all-buffers-separate-sources" variable (:default-value t) nil [1878 2433])
-            ("helm-imenu-type-faces" variable (:default-value (quote (("^Variables$" . font-lock-variable-name-face) ("^\\(Function\\|Functions\\|Defuns\\)$" . font-lock-function-name-face) ("^\\(Types\\|Provides\\|Requires\\|Classes\\|Class\\|Includes\\|Imports\\|Misc\\|Code\\)$" . font-lock-type-face)))) nil [2435 3091])
-            ("helm-imenu-extra-modes" variable nil nil [3093 3243])
-            ("helm-imenu-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-<down>") (quote helm-imenu-next-section)) (define-key map (kbd "M-<up>") (quote helm-imenu-previous-section)) (when helm-imenu-lynx-style-map (define-key map (kbd "<left>") (quote helm-maybe-exit-minibuffer)) (define-key map (kbd "<right>") (quote helm-execute-persistent-action)) (define-key map (kbd "M-<left>") (quote helm-previous-source)) (define-key map (kbd "M-<right>") (quote helm-next-source))) (delq nil map))) nil [3257 3804])
-            ("helm-imenu-next-or-previous-section" function (:arguments ("n")) nil [3806 4436])
-            ("helm-imenu-next-section" function nil nil [4438 4530])
-            ("helm-imenu-previous-section" function nil nil [4532 4629])
-            ("helm-cached-imenu-alist" variable nil nil [4647 4683])
-            ("make-variable-buffer-local" code nil nil [4684 4737])
-            ("helm-cached-imenu-candidates" variable nil nil [4739 4780])
-            ("make-variable-buffer-local" code nil nil [4781 4839])
-            ("helm-cached-imenu-tick" variable nil nil [4841 4876])
-            ("make-variable-buffer-local" code nil nil [4877 4929])
-            ("helm-imenu--in-all-buffers-cache" variable nil nil [4931 4976])
-            ("helm-source-imenu" variable nil nil [4979 5039])
-            ("helm-source-imenu-all" variable nil nil [5040 5074])
-            ("helm-imenu-source" type
-               (:superclasses "helm-source-sync"
-                :members 
-                  ( ("candidates" variable (:default-value "(quote helm-imenu-candidates)") nil nil)
-                    ("candidate-transformer" variable (:default-value "(quote helm-imenu-transformer)") nil nil)
-                    ("persistent-action" variable (:default-value "(quote helm-imenu-persistent-action)") nil nil)
-                    ("persistent-help" variable (:default-value "Show this entry") nil nil)
-                    ("nomark" variable (:default-value "t") nil nil)
-                    ("keymap" variable (:default-value "helm-imenu-map") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-imenu-help-message)") nil nil)
-                    ("action" variable (:default-value "(quote helm-imenu-action)") nil nil)
-                    ("group" variable (:default-value "(quote helm-imenu)") nil nil))                  
-                :type "class")
-                nil [5076 5534])
-            ("helm-imenu-fuzzy-match" variable nil nil [5536 5860])
-            ("helm-imenu--maybe-switch-to-buffer" function (:arguments ("candidate")) nil [5863 6037])
-            ("helm-imenu--execute-action-at-once-p" function nil nil [6039 6391])
-            ("helm-imenu-action" function (:arguments ("candidate")) nil [6393 6881])
-            ("helm-imenu-persistent-action" function (:arguments ("candidate")) nil [6883 7087])
-            ("helm-imenu-candidates" function (:arguments ("buffer")) nil [7089 7633])
-            ("helm-imenu-candidates-in-all-buffers" function (:arguments ("build-sources")) nil [7635 8997])
-            ("helm-imenu--candidates-1" function (:arguments ("alist")) nil [8999 10453])
-            ("helm-imenu--get-prop" function (:arguments ("item")) nil [10455 10917])
-            ("helm-imenu-transformer" function (:arguments ("candidates")) nil [10919 12133])
-            ("helm-imenu" function (:user-visible-flag t) nil [12151 12733])
-            ("helm-imenu-in-all-buffers" function (:user-visible-flag t) nil [12750 14402])
-            ("helm-imenu" package nil nil [14404 14425]))          
-      :file "helm-imenu.el"
-      :pointmax 14567
-      :fsize 14566
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [811 828])
-            ("helm" include nil nil [829 844])
-            ("helm-help" include nil nil [845 865])
-            ("helm-font" customgroup (:user-visible-flag t) nil [869 959])
-            ("helm-ucs-recent-size" variable (:default-value 10) nil [961 1069])
-            ("helm-ucs-actions" variable (:default-value (quote (("Insert character" . helm-ucs-insert-char) ("Insert character name" . helm-ucs-insert-name) ("Insert character code in hex" . helm-ucs-insert-code) ("Kill marked characters" . helm-ucs-kill-char) ("Kill name" . helm-ucs-kill-name) ("Kill code" . helm-ucs-kill-code)))) nil [1071 1564])
-            ("helm-ucs-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "<C-backspace>") (quote helm-ucs-persistent-delete)) (define-key map (kbd "<C-left>") (quote helm-ucs-persistent-backward)) (define-key map (kbd "<C-right>") (quote helm-ucs-persistent-forward)) (define-key map (kbd "C-c SPC") (quote helm-ucs-persistent-insert-space)) map)) nil [1566 1989])
-            ("helm-ucs-char" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "Gold"))))
-                :type "face")
-                nil [1991 2138])
-            ("helm-xfonts-cache" variable nil nil [2167 2197])
-            ("helm-previous-font" variable nil nil [2198 2229])
-            ("helm-source-xfonts" variable (:default-value (helm-build-sync-source "X Fonts" :init (lambda nil (unless helm-xfonts-cache (setq helm-xfonts-cache (x-list-fonts "*"))) (setq helm-previous-font (cdr (assq (quote font) (frame-parameters))))) :candidates (quote helm-xfonts-cache) :action (quote (("Copy font to kill ring" lambda (elm) (kill-new elm)) ("Set font" lambda (elm) (kill-new elm) (set-frame-font elm (quote keep-size)) (message "Font copied to kill ring")))) :cleanup (lambda nil (set-frame-font helm-previous-font (quote keep-size))) :persistent-action (lambda (new-font) (set-frame-font new-font (quote keep-size)) (kill-new new-font)) :persistent-help "Preview font and copy to kill-ring")) nil [2230 3281])
-            ("helm-ucs--max-len" variable nil nil [3317 3347])
-            ("helm-ucs--names" variable nil nil [3348 3376])
-            ("helm-ucs-history" variable nil nil [3377 3406])
-            ("helm-ucs-recent" variable nil nil [3407 3477])
-            ("helm-calculate-ucs-alist-max-len" function (:arguments ("names")) nil [3479 3793])
-            ("helm-calculate-ucs-hash-table-max-len" function (:arguments ("names")) nil [3795 4167])
-            ("helm-calculate-ucs-max-len" function nil nil [4169 4446])
-            ("helm-ucs-collect-symbols-alist" function (:arguments ("names")) nil [4448 5520])
-            ("helm-ucs-collect-symbols-hash-table" function (:arguments ("names")) nil [5522 6413])
-            ("helm-ucs-collect-symbols" function (:arguments ("ucs-struct")) nil [6415 6735])
-            ("helm-ucs-init" function nil nil [6737 7043])
-            ("helm-ucs-match" function (:arguments ("candidate" "n")) nil [7069 7344])
-            ("helm-ucs-save-recentest" function (:arguments ("candidate")) nil [7346 7584])
-            ("helm-ucs-insert" function (:arguments ("candidate" "n")) nil [7586 7770])
-            ("helm-ucs-insert-char" function (:arguments ("candidate")) nil [7772 7892])
-            ("helm-ucs-insert-code" function (:arguments ("candidate")) nil [7894 8014])
-            ("helm-ucs-insert-name" function (:arguments ("candidate")) nil [8016 8136])
-            ("helm-ucs-kill-char" function (:arguments ("_candidate")) nil [8154 8496])
-            ("helm-ucs-kill-code" function (:arguments ("candidate")) nil [8498 8616])
-            ("helm-ucs-kill-name" function (:arguments ("candidate")) nil [8618 8736])
-            ("helm-ucs-forward-char" function (:arguments ("_candidate")) nil [8784 8876])
-            ("helm-ucs-backward-char" function (:arguments ("_candidate")) nil [8878 8972])
-            ("helm-ucs-delete-backward" function (:arguments ("_candidate")) nil [8974 9069])
-            ("helm-ucs-insert-space" function (:arguments ("_candidate")) nil [9071 9159])
-            ("helm-ucs-persistent-forward" function nil nil [9161 9348])
-            ("put" code nil nil [9349 9396])
-            ("helm-ucs-persistent-backward" function nil nil [9398 9581])
-            ("put" code nil nil [9582 9630])
-            ("helm-ucs-persistent-delete" function nil nil [9632 9819])
-            ("put" code nil nil [9820 9866])
-            ("helm-ucs-persistent-insert-space" function nil nil [9868 10070])
-            ("helm-source-ucs-recent" variable (:default-value (helm-build-sync-source "Recent UCS" :action helm-ucs-actions :candidates (lambda nil helm-ucs-recent) :help-message helm-ucs-help-message :keymap helm-ucs-map :volatile t)) nil [10072 10297])
-            ("helm-source-ucs" variable (:default-value (helm-build-in-buffer-source "UCS names" :data (function helm-ucs-init) :get-line (function buffer-substring) :help-message (quote helm-ucs-help-message) :filtered-candidate-transformer (lambda (candidates _source) (sort candidates (function helm-generic-sort-fn))) :action helm-ucs-actions :persistent-action (lambda (candidate) (helm-ucs-insert-char candidate) (helm-force-update)) :keymap helm-ucs-map)) nil [10299 10831])
-            ("helm-select-xfont" function (:user-visible-flag t) nil [10849 11011])
-            ("helm-ucs" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [11028 11505])
-            ("helm-font" package nil nil [11507 11527]))          
-      :file "helm-font.el"
-      :pointmax 11668
-      :fsize 11724
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [820 837])
-            ("helm" include nil nil [838 853])
-            ("helm-help" include nil nil [854 874])
-            ("package" include nil nil [875 893])
-            ("helm-el-package" customgroup (:user-visible-flag t) nil [895 965])
-            ("helm-el-package-initial-filter" variable (:default-value (quote all)) nil [967 1389])
-            ("helm-el-truncate-lines" variable (:default-value t) nil [1391 1519])
-            ("helm-el-package--show-only" variable (:default-value (quote all)) nil [1539 1579])
-            ("helm-el-package--initialized-p" variable nil nil [1580 1623])
-            ("helm-el-package--tabulated-list" variable nil nil [1624 1668])
-            ("helm-el-package--upgrades" variable nil nil [1669 1707])
-            ("helm-el-package--removable-packages" variable nil nil [1708 1756])
-            ("package-menu-async" variable nil nil [1795 1822])
-            ("declare-function" code nil nil [1853 1926])
-            ("helm-el-package--init" function nil nil [1928 4000])
-            ("helm-el-package-describe" function (:arguments ("candidate")) nil [4002 4251])
-            ("helm-el-package-visit-homepage" function (:arguments ("candidate")) nil [4253 4835])
-            ("helm-el-run-visit-homepage" function nil nil [4837 4979])
-            ("put" code nil nil [4980 5026])
-            ("helm-el-package-install-1" function (:arguments ("pkg-list")) nil [5028 5926])
-            ("helm-el-package-install" function (:arguments ("_candidate")) nil [5928 6027])
-            ("helm-el-run-package-install" function nil nil [6029 6165])
-            ("put" code nil nil [6166 6213])
-            ("helm-el-package-uninstall-1" function (:arguments ("pkg-list" "force")) nil [6215 8618])
-            ("helm-el-package-uninstall" function (:arguments ("_candidate")) nil [8620 8747])
-            ("helm-el-run-package-uninstall" function nil nil [8749 8889])
-            ("put" code nil nil [8890 8939])
-            ("helm-el-package-menu--find-upgrades" function nil nil [8941 9835])
-            ("helm-el-package-upgrade-1" function (:arguments ("pkg-list")) nil [9837 10677])
-            ("helm-el-package-upgrade" function (:arguments ("_candidate")) nil [10679 10975])
-            ("helm-el-run-package-upgrade" function nil nil [10977 11113])
-            ("put" code nil nil [11114 11161])
-            ("helm-el-package-upgrade-all" function nil nil [11163 11592])
-            ("helm-el-package-upgrade-all-action" function (:arguments ("_candidate")) nil [11594 11681])
-            ("helm-el-run-package-upgrade-all" function nil nil [11683 11834])
-            ("put" code nil nil [11835 11886])
-            ("helm-el-package--transformer" function (:arguments ("candidates" "_source")) nil [11888 13688])
-            ("helm-el-package-show-built-in" function nil nil [13690 13834])
-            ("put" code nil nil [13835 13884])
-            ("helm-el-package-show-upgrade" function nil nil [13886 14028])
-            ("put" code nil nil [14029 14077])
-            ("helm-el-package-show-installed" function nil nil [14079 14225])
-            ("put" code nil nil [14226 14276])
-            ("helm-el-package-show-all" function nil nil [14278 14412])
-            ("put" code nil nil [14413 14457])
-            ("helm-el-package-show-uninstalled" function nil nil [14459 14609])
-            ("put" code nil nil [14610 14662])
-            ("helm-el-package-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-I") (quote helm-el-package-show-installed)) (define-key map (kbd "M-O") (quote helm-el-package-show-uninstalled)) (define-key map (kbd "M-U") (quote helm-el-package-show-upgrade)) (define-key map (kbd "M-B") (quote helm-el-package-show-built-in)) (define-key map (kbd "M-A") (quote helm-el-package-show-all)) (define-key map (kbd "C-c i") (quote helm-el-run-package-install)) (define-key map (kbd "C-c r") (quote helm-el-run-package-reinstall)) (define-key map (kbd "C-c d") (quote helm-el-run-package-uninstall)) (define-key map (kbd "C-c u") (quote helm-el-run-package-upgrade)) (define-key map (kbd "C-c U") (quote helm-el-run-package-upgrade-all)) (define-key map (kbd "C-c @") (quote helm-el-run-visit-homepage)) map)) nil [14664 15493])
-            ("helm-source-list-el-package" variable nil nil [15495 15535])
-            ("helm-list-el-package-source" type
-               (:superclasses "helm-source-in-buffer"
-                :members 
-                  ( ("init" variable (:default-value "(quote helm-el-package--init)") nil nil)
-                    ("get-line" variable (:default-value "(quote buffer-substring)") nil nil)
-                    ("filtered-candidate-transformer" variable (:default-value "(quote helm-el-package--transformer)") nil nil)
-                    ("action-transformer" variable (:default-value "(quote helm-el-package--action-transformer)") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-el-package-help-message)") nil nil)
-                    ("keymap" variable (:default-value "helm-el-package-map") nil nil)
-                    ("update" variable (:default-value "(quote helm-el-package--update)") nil nil)
-                    ("candidate-number-limit" variable (:default-value "9999") nil nil)
-                    ("action" variable (:default-value "(quote ((\"Describe package\" . helm-el-package-describe) (\"Visit homepage\" . helm-el-package-visit-homepage)))") nil nil)
-                    ("group" variable (:default-value "(quote helm-el-package)") nil nil))                  
-                :type "class")
-                nil [15536 16207])
-            ("helm-el-package--action-transformer" function (:arguments ("actions" "candidate")) nil [16209 18058])
-            ("helm-el-package--update" function nil nil [18060 18138])
-            ("helm-el-package-recompile" function (:arguments ("_pkg")) nil [18140 18664])
-            ("helm-el-package-reinstall" function (:arguments ("_pkg")) nil [18666 19762])
-            ("helm-el-run-package-reinstall" function nil nil [19764 19904])
-            ("put" code nil nil [19905 19954])
-            ("helm-list-elisp-packages" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [19971 20455])
-            ("helm-list-elisp-packages-no-fetch" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [20472 20801])
-            ("helm-elisp-package" package nil nil [20803 20832]))          
-      :file "helm-elisp-package.el"
-      :pointmax 20870
-      :fsize 20869
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("helm-for-files" include nil nil [823 848])
-            ("helm-files-in-all-dired-candidates" function nil nil [908 1224])
-            ("helm-files-dired-source" type
-               (:interfaces ("helm-type-file")
-                :superclasses "helm-source-sync"
-                :members 
-                  ( ("candidates" variable (:default-value "(function helm-files-in-all-dired-candidates)") nil nil))                  
-                :type "class")
-                nil [1300 1432])
-            ("helm-source-files-in-all-dired" variable (:default-value (helm-make-source "Files in all dired buffer." (quote helm-files-dired-source))) nil [1434 1548])
-            ("session-file-alist" variable nil nil [1705 1732])
-            ("helm-source-session-class" type
-               (:superclasses "helm-source-sync"
-                :members 
-                  ( ("candidates" variable (:default-value "(lambda nil (cl-delete-if-not (lambda (f) (or (string-match helm-tramp-file-name-regexp f) (file-exists-p f))) (mapcar (quote car) session-file-alist)))") nil nil)
-                    ("keymap" variable (:default-value "helm-generic-files-map") nil nil)
-                    ("help-message" variable (:default-value "helm-generic-file-help-message") nil nil)
-                    ("action" variable (:default-value "(quote helm-type-file-actions)") nil nil))                  
-                :type "class")
-                nil [1733 2269])
-            ("helm-source-session" variable nil nil [2271 2337])
-            ("helm-session-fuzzy-match" variable nil nil [2339 2673])
-            ("helm-source-tracker-transformer" function (:arguments ("candidates" "_source")) nil [2742 3150])
-            ("helm-source-tracker-search" variable (:default-value (helm-build-async-source "Tracker Search" :candidates-process (lambda nil (start-process "tracker-search-process" nil "tracker" "search" "--disable-snippets" "--disable-color" "--limit=512" helm-pattern)) :filtered-candidate-transformer (function helm-source-tracker-transformer) :keymap helm-generic-files-map :action (quote helm-type-file-actions) :action-transformer (quote (helm-transform-file-load-el helm-transform-file-browse-url)) :requires-pattern 3)) nil [3152 4181])
-            ("helm-mac-spotlight-source" type
-               (:interfaces ("helm-type-file")
-                :superclasses "helm-source-async"
-                :members 
-                  ( ("candidates-process" variable (:default-value "(lambda nil (start-process \"mdfind-process\" nil \"mdfind\" helm-pattern))") nil nil)
-                    ("requires-pattern" variable (:default-value "3") nil nil))                  
-                :type "class")
-                nil [4221 4506])
-            ("helm-source-mac-spotlight" variable (:default-value (helm-make-source "mdfind" (quote helm-mac-spotlight-source))) nil [4508 4676])
-            ("helm-x-files" package nil nil [4678 4701]))          
-      :file "helm-x-files.el"
-      :pointmax 4845
-      :fsize 4844
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [808 825])
-            ("helm" include nil nil [826 841])
-            ("helm-help" include nil nil [842 862])
-            ("helm-types" include nil nil [863 884])
-            ("declare-function" code nil nil [886 941])
-            ("display-time-world-list" variable nil nil [942 974])
-            ("declare-function" code nil nil [975 1024])
-            ("declare-function" code nil nil [1025 1076])
-            ("declare-function" code nil nil [1077 1131])
-            ("helm-misc" customgroup (:user-visible-flag t) nil [1135 1223])
-            ("helm-time-zone-home-location" variable (:default-value "Paris") nil [1225 1340])
-            ("helm-timezone-actions" variable (:default-value (quote (("Set timezone env (TZ)" lambda (candidate) (setenv "TZ" candidate))))) nil [1342 1592])
-            ("helm-time-zone-current" variable
-               (:default-value (quote ((t (:foreground "green"))))
-                :type "face")
-                nil [1594 1740])
-            ("helm-time-zone-home" variable
-               (:default-value (quote ((t (:foreground "red"))))
-                :type "face")
-                nil [1742 1880])
-            ("LaTeX-math-menu" variable nil nil [2334 2358])
-            ("helm-latex-math-candidates" function nil nil [2359 2731])
-            ("helm-source-latex-math" variable (:default-value (helm-build-sync-source "Latex Math Menu" :init (lambda nil (with-helm-current-buffer (LaTeX-math-mode 1))) :candidate-number-limit 9999 :candidates (quote helm-latex-math-candidates) :action (lambda (candidate) (call-interactively candidate)))) nil [2733 3059])
-            ("helm-jabber-online-contacts" function nil nil [3095 3410])
-            ("helm-source-jabber-contacts" variable (:default-value (helm-build-sync-source "Jabber Contacts" :init (lambda nil (require (quote jabber))) :candidates (lambda nil (mapcar (quote car) (helm-jabber-online-contacts))) :action (lambda (x) (jabber-chat-with (jabber-read-account) (symbol-name (cdr (assoc x (helm-jabber-online-contacts)))))))) nil [3412 3791])
-            ("zoneinfo-style-world-list" variable nil nil [3811 3845])
-            ("legacy-style-world-list" variable nil nil [3846 3878])
-            ("helm-time-zone-transformer" function (:arguments ("candidates" "_source")) nil [3880 4366])
-            ("helm-source-time-world" variable (:default-value (helm-build-in-buffer-source "Time World List" :init (lambda nil (require (quote time)) (unless (and display-time-world-list (listp display-time-world-list)) (setq display-time-world-list (let ((nyt (format-time-string "%z" nil "America/New_York")) (gmt (format-time-string "%z" nil "Europe/London"))) (if (string-equal nyt gmt) legacy-style-world-list zoneinfo-style-world-list))))) :data (lambda nil (with-temp-buffer (display-time-world-display display-time-world-list) (buffer-string))) :action (quote helm-timezone-actions) :filtered-candidate-transformer (quote helm-time-zone-transformer))) nil [4368 5588])
-            ("helm-call-interactively" function (:arguments ("cmd-or-name")) nil [5606 6209])
-            ("helm-minibuffer-history-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map [remap helm-minibuffer-history] (quote undefined)) map)) nil [6240 6422])
-            ("helm-minibuffer-history-must-match" variable (:default-value t) nil [6424 6696])
-            ("helm-comint-input-ring-action" function (:arguments ("candidate")) nil [6722 6927])
-            ("helm-source-comint-input-ring" variable (:default-value (helm-build-sync-source "Comint history" :candidates (lambda nil (with-helm-current-buffer (ring-elements comint-input-ring))) :action (quote helm-comint-input-ring-action))) nil [6929 7250])
-            ("helm-source-ratpoison-commands" variable (:default-value (helm-build-in-buffer-source "Ratpoison Commands" :init (quote helm-ratpoison-commands-init) :action (helm-make-actions "Execute the command" (quote helm-ratpoison-commands-execute)) :display-to-real (quote helm-ratpoison-commands-display-to-real) :candidate-number-limit 999999)) nil [7282 7611])
-            ("helm-ratpoison-commands-init" function nil nil [7613 8240])
-            ("helm-ratpoison-commands-display-to-real" function (:arguments ("display")) nil [8242 8376])
-            ("helm-ratpoison-commands-execute" function (:arguments ("candidate")) nil [8378 8486])
-            ("helm-source-stumpwm-commands" variable (:default-value (helm-build-in-buffer-source "Stumpwm Commands" :init (quote helm-stumpwm-commands-init) :action (helm-make-actions "Execute the command" (quote helm-stumpwm-commands-execute)) :candidate-number-limit 999999)) nil [8514 8773])
-            ("helm-stumpwm-commands-init" function nil nil [8775 9150])
-            ("helm-stumpwm-commands-execute" function (:arguments ("candidate")) nil [9152 9252])
-            ("helm-world-time" function (:user-visible-flag t) nil [9269 9486])
-            ("helm-insert-latex-math" function (:user-visible-flag t) nil [9503 9671])
-            ("helm-ratpoison-commands" function (:user-visible-flag t) nil [9688 9897])
-            ("helm-stumpwm-commands" function (:user-visible-flag t) nil [9914 10105])
-            ("helm-minibuffer-history" function (:user-visible-flag t) nil [10122 11930])
-            ("helm-comint-input-ring" function (:user-visible-flag t) nil [11947 12345])
-            ("helm-misc" package nil nil [12348 12368]))          
-      :file "helm-misc.el"
-      :pointmax 12509
-      :fsize 12508
-      :lastmodtime '(23537 22014 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [815 832])
-            ("helm" include nil nil [833 848])
-            ("helm-help" include nil nil [849 869])
-            ("helm-mode" include nil nil [870 890])
-            ("helm-elisp" include nil nil [891 912])
-            ("helm-command" customgroup (:user-visible-flag t) nil [916 1021])
-            ("helm-M-x-requires-pattern" variable nil nil [1023 1197])
-            ("helm-M-x-always-save-history" variable nil nil [1199 1361])
-            ("helm-M-x-reverse-history" variable nil nil [1363 1521])
-            ("helm-M-x-fuzzy-match" variable nil nil [1523 1654])
-            ("helm-M-x-default-sort-fn" variable (:default-value (function helm-M-x-fuzzy-sort-candidates)) nil [1656 1915])
-            ("helm-command-faces" customgroup (:user-visible-flag t) nil [1934 2075])
-            ("helm-M-x-key" variable
-               (:default-value (quote ((t (:foreground "orange" :underline t))))
-                :type "face")
-                nil [2077 2217])
-            ("helm-M-x-input-history" variable nil nil [2221 2256])
-            ("helm-M-x-prefix-argument" variable nil nil [2257 2341])
-            ("helm-M-x-get-major-mode-command-alist" function (:arguments ("mode-map")) nil [2345 2695])
-            ("helm-get-mode-map-from-mode" function (:arguments ("mode")) nil [2697 3522])
-            ("helm-M-x-current-mode-map-alist" function nil nil [3524 3789])
-            ("helm-M-x-transformer-1" function (:arguments ("candidates" "sort")) nil [3792 5172])
-            ("helm-M-x-transformer" function (:arguments ("candidates" "_source")) nil [5174 5335])
-            ("helm-M-x-transformer-hist" function (:arguments ("candidates" "_source")) nil [5337 5481])
-            ("helm-M-x--notify-prefix-arg" function nil nil [5483 5676])
-            ("helm-cmd--get-current-function-name" function nil nil [5678 5882])
-            ("helm-cmd--get-preconfigured-commands" function (:arguments ("dir")) nil [5884 6377])
-            ("helm-M-x-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-comp-read-map) (define-key map (kbd "C-u") nil) (define-key map (kbd "C-u") (quote helm-M-x-universal-argument)) map)) nil [6379 6591])
-            ("helm-M-x-universal-argument" function (:user-visible-flag t) nil [6593 7154])
-            ("put" code nil nil [7155 7202])
-            ("helm-M-x-fuzzy-sort-candidates" function (:arguments ("candidates" "_source")) nil [7204 7318])
-            ("helm-M-x-read-extended-command" function (:arguments ("collection" "history")) nil [7320 10348])
-            ("helm-M-x" function
-               (:user-visible-flag t
-                :arguments ("_arg" "command-name"))
-                nil [10365 12045])
-            ("put" code nil nil [12046 12096])
-            ("helm-command" package nil nil [12098 12121]))          
-      :file "helm-command.el"
-      :pointmax 12265
-      :fsize 12264
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [836 853])
-            ("helm" include nil nil [854 869])
-            ("helm-utils" include nil nil [870 891])
-            ("helm-help" include nil nil [892 912])
-            ("helm-elisp" include nil nil [913 934])
-            ("declare-function" code nil nil [936 1022])
-            ("helm-ring" customgroup (:user-visible-flag t) nil [1026 1119])
-            ("helm-kill-ring-threshold" variable (:default-value 3) nil [1121 1271])
-            ("helm-kill-ring-max-offset" variable (:default-value 400) nil [1273 1767])
-            ("helm-kill-ring-actions" variable (:default-value (quote (("Yank marked" . helm-kill-ring-action-yank) ("Delete marked" . helm-kill-ring-action-delete)))) nil [1769 2023])
-            ("helm-kill-ring-separator" variable (:default-value "
-") nil [2025 2169])
-            ("helm-register-max-offset" variable (:default-value 160) nil [2171 2308])
-            ("helm-kill-ring-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-y") (quote helm-next-line)) (define-key map (kbd "M-u") (quote helm-previous-line)) (define-key map (kbd "M-D") (quote helm-kill-ring-delete)) (define-key map (kbd "C-]") (quote helm-kill-ring-toggle-truncated)) (define-key map (kbd "C-c C-k") (quote helm-kill-ring-kill-selection)) map)) nil [2331 2786])
-            ("helm-source-kill-ring" variable (:default-value (helm-build-sync-source "Kill Ring" :init (lambda nil (helm-attrset (quote last-command) last-command) (helm-attrset (quote multiline) helm-kill-ring-max-offset)) :candidates (function helm-kill-ring-candidates) :filtered-candidate-transformer (function helm-kill-ring-transformer) :action (quote helm-kill-ring-actions) :persistent-action (quote ignore) :help-message (quote helm-kill-ring-help-message) :persistent-help "DoNothing" :keymap helm-kill-ring-map :migemo t :multiline (quote helm-kill-ring-max-offset) :group (quote helm-ring))) nil [2788 3418])
-            ("helm-kill-ring-candidates" function nil nil [3420 3673])
-            ("helm-kill-ring-transformer" function (:arguments ("candidates" "_source")) nil [3675 3943])
-            ("helm-kill-ring--truncated-flag" variable nil nil [3945 3988])
-            ("helm-kill-ring-toggle-truncated" function (:user-visible-flag t) nil [3989 4562])
-            ("put" code nil nil [4563 4614])
-            ("helm-kill-ring-kill-selection" function (:user-visible-flag t) nil [4616 4824])
-            ("put" code nil nil [4825 4874])
-            ("helm-kill-ring--preselect-fn" function (:arguments ("candidate")) nil [4876 5378])
-            ("helm-kill-ring-action-yank" function (:arguments ("_str")) nil [5380 5964])
-            ("helm-kill-ring-action-yank-1" function (:arguments ("str")) nil [5966 8700])
-            ("define-obsolete-function-alias" code nil nil [8701 8792])
-            ("helm-kill-ring-action-delete" function (:arguments ("_candidate")) nil [8794 9008])
-            ("helm-kill-ring-delete" function (:user-visible-flag t) nil [9010 9237])
-            ("helm-mark-ring-line-string-at-pos" function (:arguments ("pos")) nil [9405 9756])
-            ("helm-mark-ring-get-candidates" function nil nil [9758 10474])
-            ("helm-mark-ring-default-action" function (:arguments ("candidate")) nil [10476 11111])
-            ("helm-source-mark-ring" variable (:default-value (helm-build-sync-source "mark-ring" :candidates (function helm-mark-ring-get-candidates) :action (quote (("Goto line" . helm-mark-ring-default-action))) :persistent-help "Show this line" :group (quote helm-ring))) nil [11113 11351])
-            ("helm-source-global-mark-ring" variable (:default-value (helm-build-sync-source "global-mark-ring" :candidates (function helm-global-mark-ring-get-candidates) :action (quote (("Goto line" . helm-mark-ring-default-action))) :persistent-help "Show this line" :group (quote helm-ring))) nil [11374 11633])
-            ("helm-global-mark-ring-format-buffer" function (:arguments ("marker")) nil [11635 12196])
-            ("helm-global-mark-ring-get-candidates" function nil nil [12198 12711])
-            ("helm-source-register" variable (:default-value (helm-build-sync-source "Registers" :candidates (function helm-register-candidates) :action-transformer (function helm-register-action-transformer) :persistent-help "" :multiline t :action (quote (("Delete Register(s)" lambda (_candidate) (cl-loop for candidate in (helm-marked-candidates) for register = (car candidate) do (setq register-alist (delq (assoc register register-alist) register-alist)))))) :group (quote helm-ring))) nil [12755 13402])
-            ("helm-register-candidates" function nil nil [13404 16262])
-            ("helm-register-action-transformer" function (:arguments ("actions" "register-and-functions")) nil [16264 17706])
-            ("helm-mark-ring" function (:user-visible-flag t) nil [17723 17915])
-            ("helm-global-mark-ring" function (:user-visible-flag t) nil [17932 18152])
-            ("helm-all-mark-rings" function (:user-visible-flag t) nil [18169 18458])
-            ("helm-register" function (:user-visible-flag t) nil [18475 18661])
-            ("helm-show-kill-ring" function (:user-visible-flag t) nil [18678 19095])
-            ("helm-execute-kmacro" function (:user-visible-flag t) nil [19112 20560])
-            ("helm-kbd-macro-execute" function (:arguments ("candidate")) nil [20562 20829])
-            ("helm-kbd-macro-concat-macros" function (:arguments ("_candidate")) nil [20831 21464])
-            ("helm-kbd-macro-delete-macro" function (:arguments ("_candidate")) nil [21466 21688])
-            ("helm-kbd-macro-edit-macro" function (:arguments ("candidate")) nil [21690 21870])
-            ("helm-ring" package nil nil [21872 21892]))          
-      :file "helm-ring.el"
-      :pointmax 22033
-      :fsize 22032
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "helm-easymenu.el"
-      :fsize 3108
-      :lastmodtime '(23537 22013 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [827 844])
-            ("helm" include nil nil [845 860])
-            ("helm-utils" include nil nil [861 882])
-            ("org" include nil nil [883 897])
-            ("org-macs" include nil nil [968 987])
-            ("declare-function" code nil nil [990 1045])
-            ("helm-org" customgroup (:user-visible-flag t) nil [1047 1121])
-            ("helm-org-headings-fontify" variable nil nil [1123 1348])
-            ("helm-org-format-outline-path" variable nil nil [1350 1462])
-            ("helm-org-show-filename" variable nil nil [1464 1671])
-            ("helm-org-headings-min-depth" variable (:default-value 1) nil [1673 1799])
-            ("helm-org-headings-max-depth" variable (:default-value 8) nil [1801 1929])
-            ("helm-org-headings-actions" variable (:default-value (quote (("Go to heading" . helm-org-goto-marker) ("Open in indirect buffer `C-c i'" . helm-org--open-heading-in-indirect-buffer) ("Refile heading(s) (marked-to-selected|current-to-selected) `C-c w`" . helm-org--refile-heading-to) ("Insert link to this heading `C-c l`" . helm-org-insert-link-to-heading-at-marker)))) nil [1931 2435])
-            ("helm-org-truncate-lines" variable (:default-value t) nil [2437 2553])
-            ("helm-org-ignore-autosaves" variable nil nil [2555 2706])
-            ("org-capture-templates" variable nil nil [2742 2772])
-            ("helm-source-org-capture-templates" function nil nil [2773 3136])
-            ("helm-org-goto-marker" function (:arguments ("marker")) nil [3162 3360])
-            ("helm-org--open-heading-in-indirect-buffer" function (:arguments ("marker")) nil [3362 3757])
-            ("helm-org-run-open-heading-in-indirect-buffer" function (:user-visible-flag t) nil [3759 3984])
-            ("put" code nil nil [3985 4049])
-            ("helm-org-headings-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "C-c i") (quote helm-org-run-open-heading-in-indirect-buffer)) (define-key map (kbd "C-c w") (quote helm-org-run-refile-heading-to)) (define-key map (kbd "C-c l") (quote helm-org-run-insert-link-to-heading-at-marker)) map)) nil [4051 4446])
-            ("helm-org-headings-class" type
-               (:superclasses "helm-source-sync"
-                :members 
-                  ( ("parents" variable (:default-value "nil") nil nil)
-                    ("match" variable (:default-value "(lambda (candidate) (string-match helm-pattern (helm-aif (get-text-property 0 (quote helm-real-display) candidate) it candidate)))") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-org-headings-help-message)") nil nil)
-                    ("action" variable (:default-value "(quote helm-org-headings-actions)") nil nil)
-                    ("keymap" variable (:default-value "(quote helm-org-headings-map)") nil nil)
-                    ("group" variable (:default-value "(quote helm-org)") nil nil))                  
-                :type "class")
-                nil [4448 4985])
-            ("helm--setup-source" function
-               (:parent "helm-org-headings-class"
-                :arguments ("source"))
-                nil [4987 5317])
-            ("helm-source-org-headings-for-files" function (:arguments ("filenames" "parents")) nil [5319 5564])
-            ("helm-org-startup-visibility" function (:arguments ("candidates" "_source")) nil [5566 7954])
-            ("helm-org-get-candidates" function (:arguments ("filenames" "parents")) nil [7956 8321])
-            ("helm-org--get-candidates-in-file" function (:arguments ("filename" "fontify" "nofname" "parents")) nil [8323 11553])
-            ("helm-org-insert-link-to-heading-at-marker" function (:arguments ("marker")) nil [11555 11979])
-            ("helm-org-run-insert-link-to-heading-at-marker" function nil nil [11981 12158])
-            ("helm-org--refile-heading-to" function (:arguments ("marker")) nil [12160 13070])
-            ("helm-org-in-buffer-preselect" function nil nil [13072 13345])
-            ("helm-org-run-refile-heading-to" function nil nil [13347 13490])
-            ("put" code nil nil [13491 13541])
-            ("helm-org-agenda-files-headings" function (:user-visible-flag t) nil [13559 14427])
-            ("helm-org-in-buffer-headings" function (:user-visible-flag t) nil [14444 14862])
-            ("helm-org-parent-headings" function (:user-visible-flag t) nil [14879 15399])
-            ("helm-org-capture-templates" function (:user-visible-flag t) nil [15416 15698])
-            ("crm-separator" variable nil nil [15862 15884])
-            ("helm-org-completing-read-tags" function (:arguments ("prompt" "collection" "pred" "req" "initial" "hist" "def" "inherit-input-method" "_name" "_buffer")) nil [15901 17468])
-            ("helm-org" package nil nil [17470 17489]))          
-      :file "helm-org.el"
-      :pointmax 17629
-      :fsize 17628
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax '((close-paren 987 . 988) (symbol 948 . 965) (open-paren 947 . 948)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("helm" include nil nil [817 832])
-            ("helm-lib" include nil nil [833 852])
-            ("helm-help" include nil nil [853 873])
-            ("helm-elisp" include nil nil [874 895])
-            ("helm-dabbrev" customgroup (:user-visible-flag t) nil [921 1020])
-            ("helm-dabbrev-always-search-all" variable (:default-value t) nil [1022 1285])
-            ("helm-dabbrev-candidates-number-limit" variable (:default-value 1000) nil [1287 1615])
-            ("helm-dabbrev-ignored-buffers-regexps" variable (:default-value (quote ("\\*helm" "\\*Messages" "\\*Echo Area" "\\*Buffer List"))) nil [1617 1856])
-            ("helm-dabbrev-related-buffer-fn" variable (:default-value (function helm-dabbrev--same-major-mode-p)) nil [1858 2340])
-            ("helm-dabbrev-major-mode-assoc" variable nil nil [2342 3047])
-            ("helm-dabbrev-lineno-around" variable (:default-value 30) nil [3049 3194])
-            ("helm-dabbrev-cycle-threshold" variable (:default-value 5) nil [3196 3427])
-            ("helm-dabbrev-case-fold-search" variable (:default-value (quote smart)) nil [3429 3843])
-            ("helm-dabbrev-use-thread" variable nil nil [3845 4649])
-            ("defvaralias" code nil nil [4651 4717])
-            ("make-obsolete-variable" code nil nil [4718 4827])
-            ("helm-dabbrev-separator-regexp" variable (:default-value "\\s-\\|	\\|[(\\[\\{\"'`=<$;,@.#+]\\|\\s\\\\|^
-\\|^") nil [4890 5039])
-            ("helm-dabbrev-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-/") (quote helm-next-line)) (define-key map (kbd "M-:") (quote helm-previous-line)) map)) nil [5043 5252])
-            ("helm-dabbrev--cache" variable nil nil [5266 5298])
-            ("helm-dabbrev--data" variable nil nil [5299 5330])
-            ("cl-defstruct" code nil nil [5331 5387])
-            ("helm-dabbrev--already-tried" variable nil nil [5388 5428])
-            ("helm-dabbrev--current-thread" variable nil nil [5429 5470])
-            ("helm-dabbrev--buffer-list" function nil nil [5474 5714])
-            ("helm-dabbrev--same-major-mode-p" function (:arguments ("start-buffer")) nil [5716 5897])
-            ("helm-dabbrev--collect" function (:arguments ("str" "limit" "ignore-case" "all")) nil [5899 9149])
-            ("helm-dabbrev--search" function (:arguments ("pattern" "beg" "sep-regexp")) nil [9151 10041])
-            ("helm-dabbrev--get-candidates" function (:arguments ("dabbrev" "limit")) nil [10043 10396])
-            ("helm-dabbrev-default-action" function (:arguments ("candidate")) nil [10399 10742])
-            ("cl-defun" code nil nil [10759 16739])
-            ("helm-dabbrev" package nil nil [16741 16764]))          
-      :file "helm-dabbrev.el"
-      :pointmax 16908
-      :fsize 16907
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [798 815])
-            ("helm" include nil nil [816 831])
-            ("helm-help" include nil nil [832 852])
-            ("woman-topic-all-completions" variable nil nil [854 890])
-            ("woman-manpath" variable nil nil [891 913])
-            ("woman-path" variable nil nil [914 933])
-            ("woman-expanded-directory-path" variable nil nil [934 972])
-            ("declare-function" code nil nil [973 1045])
-            ("declare-function" code nil nil [1046 1115])
-            ("declare-function" code nil nil [1116 1177])
-            ("declare-function" code nil nil [1178 1260])
-            ("declare-function" code nil nil [1261 1325])
-            ("declare-function" code nil nil [1326 1389])
-            ("helm-man" customgroup (:user-visible-flag t) nil [1391 1470])
-            ("helm-man-or-woman-function" variable (:default-value (quote Man-getpage-in-background)) nil [1472 1755])
-            ("helm-man-format-switches" variable (:default-value (cl-case system-type ((darwin macos) "%s") (t "-l %s"))) nil [1757 2068])
-            ("helm-man--pages" variable nil nil [2082 2207])
-            ("helm-man-default-action" function (:arguments ("candidate")) nil [2209 3219])
-            ("helm-man--init" function nil nil [3221 3659])
-            ("helm-source-man-pages" variable (:default-value (helm-build-in-buffer-source "Manual Pages" :init (function helm-man--init) :persistent-action (function ignore) :filtered-candidate-transformer (lambda (candidates _source) (sort candidates (function helm-generic-sort-fn))) :action (quote (("Display Man page" . helm-man-default-action))) :group (quote helm-man))) nil [3661 4000])
-            ("helm-man-woman" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [4017 4277])
-            ("helm-man" package nil nil [4279 4298]))          
-      :file "helm-man.el"
-      :pointmax 4438
-      :fsize 4437
-      :lastmodtime '(23537 22014 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [979 996])
-            ("semantic" include nil nil [997 1016])
-            ("helm-help" include nil nil [1017 1037])
-            ("helm-imenu" include nil nil [1038 1059])
-            ("declare-function" code nil nil [1061 1148])
-            ("helm-semantic" customgroup (:user-visible-flag t) nil [1150 1256])
-            ("helm-semantic-lynx-style-map" variable (:default-value t) nil [1258 1384])
-            ("helm-semantic-display-style" variable (:default-value (quote ((python-mode . semantic-format-tag-summarize) (c-mode . semantic-format-tag-concise-prototype-c-mode) (emacs-lisp-mode . semantic-format-tag-abbreviate-emacs-lisp-mode)))) nil [1386 2235])
-            ("helm-semantic-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (when helm-semantic-lynx-style-map (define-key map (kbd "<left>") (quote helm-maybe-exit-minibuffer)) (define-key map (kbd "<right>") (quote helm-execute-persistent-action))) (delq nil map))) nil [2248 2545])
-            ("helm-semantic--tags-cache" variable nil nil [2565 2603])
-            ("helm-semantic--fetch-candidates" function (:arguments ("tags" "depth" "class")) nil [2605 4148])
-            ("helm-semantic-default-action" function (:arguments ("_candidate" "persistent")) nil [4150 4710])
-            ("helm-semantic--maybe-set-needs-update" function nil nil [4712 4882])
-            ("helm-source-semantic" variable nil nil [4884 4917])
-            ("helm-semantic-source" type
-               (:superclasses "helm-source-in-buffer"
-                :members 
-                  ( ("init" variable (:default-value "(lambda nil (helm-semantic--maybe-set-needs-update) (setq helm-semantic--tags-cache (semantic-fetch-tags)) (with-current-buffer (helm-candidate-buffer (quote global)) (let ((major-mode (with-helm-current-buffer major-mode))) (helm-semantic--fetch-candidates helm-semantic--tags-cache 0))))") nil nil)
-                    ("get-line" variable (:default-value "(quote buffer-substring)") nil nil)
-                    ("persistent-help" variable (:default-value "Show this entry") nil nil)
-                    ("keymap" variable (:default-value "(quote helm-semantic-map)") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-semantic-help-message)") nil nil)
-                    ("persistent-action" variable (:default-value "(lambda (elm) (helm-semantic-default-action elm t) (helm-highlight-current-line))") nil nil)
-                    ("action" variable (:default-value "(quote helm-semantic-default-action)") nil nil))                  
-                :type "class")
-                nil [4919 5811])
-            ("helm-semantic-fuzzy-match" variable nil nil [5813 6163])
-            ("helm-semantic" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [6180 7145])
-            ("helm-semantic-or-imenu" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [7162 8903])
-            ("helm-semantic" package nil nil [8905 8929]))          
-      :file "helm-semantic.el"
-      :pointmax 9074
-      :fsize 9077
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1233 1250])
-            ("helm" include nil nil [1251 1266])
-            ("helm-lib" include nil nil [1267 1286])
-            ("helm-help" include nil nil [1287 1307])
-            ("helm-elisp" include nil nil [1308 1329])
-            ("declare-function" code nil nil [1331 1385])
-            ("declare-function" code nil nil [1386 1475])
-            ("declare-function" code nil nil [1476 1516])
-            ("declare-function" code nil nil [1517 1578])
-            ("declare-function" code nil nil [1579 1649])
-            ("declare-function" code nil nil [1650 1701])
-            ("declare-function" code nil nil [1702 1751])
-            ("eshell-special-chars-outside-quoting" variable nil nil [1752 1797])
-            ("helm-eshell" customgroup (:user-visible-flag t) nil [1801 1882])
-            ("helm-eshell-fuzzy-match" variable nil nil [1886 2029])
-            ("helm-eshell-history-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-p") (quote helm-next-line)) map)) nil [2033 2234])
-            ("helm-esh-completion-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "TAB") (quote helm-next-line)) map)) nil [2236 2436])
-            ("helm-eshell--quit-flag" variable nil nil [2438 2473])
-            ("helm-esh-source" type
-               (:superclasses "helm-source-sync"
-                :members 
-                  ( ("init" variable (:default-value "(lambda nil (setq pcomplete-current-completions nil pcomplete-last-completion-raw nil) (remove-hook (quote minibuffer-setup-hook) (quote eshell-mode)))") nil nil)
-                    ("candidates" variable (:default-value "(quote helm-esh-get-candidates)") nil nil)
-                    ("persistent-action" variable (:default-value "(quote ignore)") nil nil)
-                    ("nohighlight" variable (:default-value "t") nil nil)
-                    ("filtered-candidate-transformer" variable (:default-value "(lambda (candidates _sources) (cl-loop for i in candidates collect (cond ((string-match \"\\\\`~/?\" helm-ec-target) (abbreviate-file-name i)) ((string-match \"\\\\`/\" helm-ec-target) i) (t (file-relative-name i))) into lst finally return (sort lst (quote helm-generic-sort-fn))))") nil nil)
-                    ("action" variable (:default-value "(quote helm-ec-insert)") nil nil))                  
-                :type "class")
-                nil [2477 3547])
-            ("helm-ec-target" variable nil nil [3562 3588])
-            ("helm-ec-insert" function (:arguments ("_candidate")) nil [3589 4978])
-            ("helm-esh-get-candidates" function nil nil [4980 8065])
-            ("helm-eshell-history-source" type
-               (:superclasses "helm-source-sync"
-                :members 
-                  ( ("init" variable (:default-value "(lambda nil (remove-hook (quote minibuffer-setup-hook) (quote eshell-mode)))") nil nil)
-                    ("candidates" variable (:default-value "(lambda nil (with-helm-current-buffer (cl-loop for c from 0 to (ring-length eshell-history-ring) collect (eshell-get-history c))))") nil nil)
-                    ("nomark" variable (:default-value "t") nil nil)
-                    ("multiline" variable (:default-value "t") nil nil)
-                    ("keymap" variable (:default-value "helm-eshell-history-map") nil nil)
-                    ("candidate-number-limit" variable (:default-value "9999") nil nil)
-                    ("action" variable (:default-value "(lambda (candidate) (eshell-kill-input) (insert candidate))") nil nil))                  
-                :type "class")
-                nil [8094 8820])
-            ("helm-esh-pcomplete" function (:user-visible-flag t) nil [8839 14517])
-            ("helm-eshell--quit-hook-fn" function nil nil [14519 14589])
-            ("helm-eshell-history" function (:user-visible-flag t) nil [14606 15340])
-            ("helm-eshell-prompts-promptidx" variable
-               (:default-value (quote ((t (:foreground "cyan"))))
-                :type "face")
-                nil [15366 15511])
-            ("helm-eshell-prompts-buffer-name" variable
-               (:default-value (quote ((t (:foreground "green"))))
-                :type "face")
-                nil [15513 15660])
-            ("helm-eshell-prompts-promptidx-p" variable (:default-value t) nil [15662 15770])
-            ("helm-eshell-prompts-keymap" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "C-c o") (quote helm-eshell-prompts-other-window)) (define-key map (kbd "C-c C-o") (quote helm-eshell-prompts-other-frame)) map)) nil [15772 16071])
-            ("eshell-prompt-regexp" variable nil nil [16073 16102])
-            ("eshell-highlight-prompt" variable nil nil [16103 16135])
-            ("helm-eshell-prompts-list" function (:arguments ("buffer")) nil [16137 17051])
-            ("helm-eshell-prompts-list-all" function nil nil [17053 17250])
-            ("helm-eshell-prompts-transformer" function (:arguments ("candidates" "all")) nil [17252 18049])
-            ("helm-eshell-prompts-all-transformer" function (:arguments ("candidates")) nil [18051 18156])
-            ("cl-defun" code nil nil [18158 18493])
-            ("helm-eshell-prompts-goto-other-window" function (:arguments ("candidate")) nil [18495 18622])
-            ("helm-eshell-prompts-goto-other-frame" function (:arguments ("candidate")) nil [18624 18749])
-            ("helm-eshell-prompts-other-window" function nil nil [18751 18906])
-            ("put" code nil nil [18907 18959])
-            ("helm-eshell-prompts-other-frame" function nil nil [18961 19114])
-            ("put" code nil nil [19115 19166])
-            ("helm-eshell-prompts" function (:user-visible-flag t) nil [19183 19703])
-            ("helm-eshell-prompts-all" function (:user-visible-flag t) nil [19720 20435])
-            ("helm-eshell" package nil nil [20437 20459]))          
-      :file "helm-eshell.el"
-      :pointmax 20599
-      :fsize 20598
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [799 816])
-            ("helm" include nil nil [817 832])
-            ("helm-help" include nil nil [833 853])
-            ("helm-elisp" include nil nil [854 875])
-            ("helm-custom-faces-init" function nil nil [902 1342])
-            ("helm-source-customize-face" variable (:default-value (helm-build-in-buffer-source "Customize Face" :init (quote helm-custom-faces-init) :get-line (quote buffer-substring) :persistent-action (lambda (candidate) (helm-elisp--persistent-help (intern (car (split-string candidate))) (quote helm-describe-face))) :persistent-help "Describe face" :action (quote (("Customize" lambda (line) (customize-face (intern (car (split-string line))))) ("Copy name" lambda (line) (kill-new (car (split-string line " " t)))))))) nil [1344 2030])
-            ("helm-colors-init" function nil nil [2057 2352])
-            ("helm-color-insert-name" function (:arguments ("candidate")) nil [2354 2471])
-            ("helm-color-kill-name" function (:arguments ("candidate")) nil [2473 2559])
-            ("helm-color-insert-rgb" function (:arguments ("candidate")) nil [2561 2676])
-            ("helm-color-kill-rgb" function (:arguments ("candidate")) nil [2678 2762])
-            ("helm-color-run-insert-name" function (:user-visible-flag t) nil [2764 2945])
-            ("put" code nil nil [2946 2992])
-            ("helm-color-run-kill-name" function (:user-visible-flag t) nil [2994 3169])
-            ("put" code nil nil [3170 3214])
-            ("helm-color-run-insert-rgb" function (:user-visible-flag t) nil [3216 3394])
-            ("put" code nil nil [3395 3440])
-            ("helm-color-run-kill-rgb" function (:user-visible-flag t) nil [3442 3614])
-            ("put" code nil nil [3615 3658])
-            ("helm-color-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "C-c n") (quote helm-color-run-insert-name)) (define-key map (kbd "C-c N") (quote helm-color-run-kill-name)) (define-key map (kbd "C-c r") (quote helm-color-run-insert-rgb)) (define-key map (kbd "C-c R") (quote helm-color-run-kill-rgb)) map)) nil [3660 4011])
-            ("helm-source-colors" variable (:default-value (helm-build-in-buffer-source "Colors" :init (quote helm-colors-init) :get-line (quote buffer-substring) :keymap helm-color-map :persistent-help "Kill entry in RGB format." :persistent-action (quote helm-color-kill-rgb) :help-message (quote helm-colors-help-message) :action (quote (("Copy Name (C-c N)" . helm-color-kill-name) ("Copy RGB (C-c R)" . helm-color-kill-rgb) ("Insert Name (C-c n)" . helm-color-insert-name) ("Insert RGB (C-c r)" . helm-color-insert-rgb))))) nil [4013 4526])
-            ("helm-colors-get-name" function (:arguments ("candidate")) nil [4528 4821])
-            ("helm-colors-get-rgb" function (:arguments ("candidate")) nil [4823 5115])
-            ("helm-colors" function (:user-visible-flag t) nil [5132 5305])
-            ("helm-color" package nil nil [5307 5328]))          
-      :file "helm-color.el"
-      :pointmax 5470
-      :fsize 5469
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [816 833])
-            ("helm" include nil nil [834 849])
-            ("helm-help" include nil nil [850 870])
-            ("helm-utils" include nil nil [871 892])
-            ("helm-sys" customgroup (:user-visible-flag t) nil [896 967])
-            ("helm-top-columns" variable
-               (:default-value (quote ((t :inherit helm-header)))
-                :type "face")
-                nil [969 1091])
-            ("helm-top-command" variable (:default-value (cl-case system-type (darwin "env COLUMNS=%s ps -axo pid,user,pri,nice,ucomm,tty,start_time,vsz,%%cpu,%%mem,etime,command") (t "env COLUMNS=%s top -b -n 1"))) nil [1095 2244])
-            ("helm-top-sort-columns-alist" variable (:default-value (quote ((com . 11) (mem . 9) (cpu . 8) (user . 1)))) nil [2246 2810])
-            ("helm-top-poll-delay" variable (:default-value 1.5) nil [2812 3030])
-            ("helm-top-poll-delay-post-command" variable (:default-value 1.0) nil [3032 3238])
-            ("helm-top-poll-preselection" variable (:default-value (quote linum)) nil [3240 3644])
-            ("helm-top-sort-fn" variable nil nil [3671 3700])
-            ("helm-top-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-map) (define-key map (kbd "M-P") (quote helm-top-run-sort-by-cpu)) (define-key map (kbd "M-C") (quote helm-top-run-sort-by-com)) (define-key map (kbd "M-M") (quote helm-top-run-sort-by-mem)) (define-key map (kbd "M-U") (quote helm-top-run-sort-by-user)) map)) nil [3701 4049])
-            ("helm-top-after-init-hook" variable nil nil [4051 4117])
-            ("helm-top--poll-timer" variable nil nil [4119 4152])
-            ("helm-top-poll" function (:arguments ("no-update" "delay")) nil [4154 5277])
-            ("helm-top--poll-delay" function nil nil [5279 5342])
-            ("helm-top-poll-no-update" function nil nil [5344 5480])
-            ("helm-top-initialize-poll-hooks" function nil nil [5482 6017])
-            ("define-minor-mode" code nil nil [6034 6497])
-            ("helm-source-top" variable (:default-value (helm-build-in-buffer-source "Top" :header-name (lambda (name) (concat name (if helm-top-poll-mode " (auto updating)" " (Press C-c C-u to refresh)"))) :init (function helm-top-init) :after-init-hook (quote helm-top-after-init-hook) :cleanup (lambda nil (when helm-top--poll-timer (cancel-timer helm-top--poll-timer)) (remove-hook (quote post-command-hook) (quote helm-top-poll-no-update)) (remove-hook (quote focus-in-hook) (quote helm-top-poll-no-update))) :display-to-real (function helm-top-display-to-real) :persistent-action (quote (helm-top-sh-persistent-action . never-split)) :persistent-help "SIGTERM" :help-message (quote helm-top-help-message) :mode-line (quote helm-top-mode-line) :follow (quote never) :keymap helm-top-map :filtered-candidate-transformer (function helm-top-sort-transformer) :action-transformer (function helm-top-action-transformer) :group (quote helm-sys))) nil [6499 7516])
-            ("helm-top--line" variable nil nil [7518 7545])
-            ("helm-top-transformer" function (:arguments ("candidates" "_source")) nil [7546 8064])
-            ("helm-top--skip-top-line" function nil nil [8066 8394])
-            ("helm-top-action-transformer" function (:arguments ("actions" "_candidate")) nil [8396 9962])
-            ("helm-top--marked-pids" function nil nil [9964 10065])
-            ("helm-top-sh" function (:arguments ("sig" "pids")) nil [10067 10353])
-            ("helm-top-sh-persistent-action" function (:arguments ("pid")) nil [10355 10466])
-            ("helm-top-init" function nil nil [10468 10795])
-            ("helm-top-display-to-real" function (:arguments ("line")) nil [10797 10895])
-            ("helm-top-set-mode-line" function (:arguments ("str")) nil [10918 11183])
-            ("helm-top-sort-transformer" function (:arguments ("candidates" "source")) nil [11185 11642])
-            ("helm-top-sort-by-com" function (:arguments ("s1" "s2")) nil [11644 11913])
-            ("helm-top-sort-by-mem" function (:arguments ("s1" "s2")) nil [11915 12216])
-            ("helm-top-sort-by-cpu" function (:arguments ("s1" "s2")) nil [12218 12519])
-            ("helm-top-sort-by-user" function (:arguments ("s1" "s2")) nil [12521 12796])
-            ("helm-top--preselect-fn" function nil nil [12798 13094])
-            ("helm-top-run-sort-by-com" function nil nil [13096 13269])
-            ("helm-top-run-sort-by-cpu" function nil nil [13271 13552])
-            ("helm-top-run-sort-by-mem" function nil nil [13554 13727])
-            ("helm-top-run-sort-by-user" function nil nil [13729 13905])
-            ("helm-xrandr-info" function nil nil [13985 14508])
-            ("helm-xrandr-screen" function nil nil [14510 14602])
-            ("helm-xrandr-output" function nil nil [14604 14696])
-            ("helm-source-xrandr-change-resolution" variable (:default-value (helm-build-sync-source "Change Resolution" :candidates (lambda nil (with-temp-buffer (call-process "xrandr" nil (current-buffer) nil "--screen" (helm-xrandr-screen) "-q") (goto-char 1) (cl-loop while (re-search-forward "   \\([0-9]+x[0-9]+\\)" nil t) for mode = (match-string 1) unless (member mode modes) collect mode into modes finally return modes))) :action (helm-make-actions "Change Resolution" (lambda (mode) (call-process "xrandr" nil nil nil "--screen" (helm-xrandr-screen) "--output" (helm-xrandr-output) "--mode" mode))))) nil [14698 15579])
-            ("helm-source-emacs-process" variable (:default-value (helm-build-sync-source "Emacs Process" :init (lambda nil (let (tabulated-list-use-header-line) (list-processes--refresh))) :candidates (lambda nil (mapcar (function process-name) (process-list))) :persistent-action (lambda (elm) (delete-process (get-process elm)) (helm-delete-current-selection)) :persistent-help "Kill Process" :action (helm-make-actions "Kill Process" (lambda (_elm) (cl-loop for p in (helm-marked-candidates) do (delete-process (get-process p))))))) nil [15607 16304])
-            ("helm-top" function (:user-visible-flag t) nil [16323 16872])
-            ("helm-list-emacs-process" function (:user-visible-flag t) nil [16889 17049])
-            ("helm-xrandr-set" function (:user-visible-flag t) nil [17066 17231])
-            ("helm-sys" package nil nil [17233 17252]))          
-      :file "helm-sys.el"
-      :pointmax 17392
-      :fsize 17391
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("helm-grep" include nil nil [815 835])
-            ("helm-help" include nil nil [836 856])
-            ("helm-id-utils" customgroup (:user-visible-flag t) nil [858 959])
-            ("helm-gid-program" variable (:default-value "gid") nil [961 1317])
-            ("helm-gid-db-file-name" variable (:default-value "ID") nil [1319 1468])
-            ("helm-gid-candidates-process" function nil nil [1470 3099])
-            ("helm-gid-filtered-candidate-transformer" function (:arguments ("candidates" "_source")) nil [3101 3338])
-            ("helm-gid-source" type
-               (:superclasses "helm-source-async"
-                :members 
-                  ( ("header-name" variable (:default-value "(lambda (name) (concat name \" [\" (helm-attr (quote db-dir)) \"]\"))") nil nil)
-                    ("db-dir" variable
-                       (:documentation " Location of ID file."
-                        :default-value "nil")
-                        nil nil)
-                    ("candidates-process" variable (:default-value "(function helm-gid-candidates-process)") nil nil)
-                    ("filtered-candidate-transformer" variable (:default-value "(function helm-gid-filtered-candidate-transformer)") nil nil)
-                    ("candidate-number-limit" variable (:default-value "99999") nil nil)
-                    ("action" variable (:default-value "(helm-make-actions \"Find File\" (quote helm-grep-action) \"Find file other frame\" (quote helm-grep-other-frame) \"Save results in grep buffer\" (quote helm-grep-save-results) \"Find file other window\" (quote helm-grep-other-window))") nil nil)
-                    ("persistent-action" variable (:default-value "(quote helm-grep-persistent-action)") nil nil)
-                    ("history" variable (:default-value "(quote helm-grep-history)") nil nil)
-                    ("nohighlight" variable (:default-value "t") nil nil)
-                    ("help-message" variable (:default-value "(quote helm-grep-help-message)") nil nil)
-                    ("requires-pattern" variable (:default-value "2") nil nil))                  
-                :type "class")
-                nil [3340 4346])
-            ("helm-gid" function (:user-visible-flag t) nil [4363 5154])
-            ("helm-id-utils" package nil nil [5156 5180]))          
-      :file "helm-id-utils.el"
-      :pointmax 5322
-      :fsize 5321
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("helm-files" include nil nil [815 836])
-            ("helm-external" include nil nil [837 861])
-            ("helm-findutils-skip-boring-files" variable (:default-value t) nil [863 997])
-            ("helm-findutils-search-full-path" variable nil nil [999 1213])
-            ("helm-find-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map helm-generic-files-map) (define-key map (kbd "DEL") (quote helm-delete-backward-no-update)) map)) nil [1215 1398])
-            ("helm-source-findutils" variable (:default-value (helm-build-async-source "Find" :header-name (lambda (name) (concat name " in [" (helm-default-directory) "]")) :candidates-process (quote helm-find-shell-command-fn) :filtered-candidate-transformer (quote helm-findutils-transformer) :action-transformer (quote helm-transform-file-load-el) :persistent-action (quote helm-ff-kill-or-find-buffer-fname) :action (quote helm-type-file-actions) :help-message (quote helm-generic-file-help-message) :keymap helm-find-map :candidate-number-limit 9999 :requires-pattern 3)) nil [1400 1964])
-            ("helm-findutils-transformer" function (:arguments ("candidates" "_source")) nil [1966 2969])
-            ("helm-find--build-cmd-line" function nil nil [2971 4530])
-            ("helm-find-shell-command-fn" function nil nil [4532 5892])
-            ("helm-find-1" function (:arguments ("dir")) nil [5894 6162])
-            ("helm-find" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [6214 7127])
-            ("helm-find" package nil nil [7129 7149]))          
-      :file "helm-find.el"
-      :pointmax 7290
-      :fsize 7289
-      :lastmodtime '(23537 22013 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!helm-20181117.731!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041helm-core-20181117.1055\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041helm-core-20181117.1055\041semantic.cache"
deleted file mode 100644
index 68545f6..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041helm-core-20181117.1055\041semantic.cache"
+++ /dev/null
@@ -1,16 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "helm-core-autoloads.el"
-      :pointmax 357
-      :fsize 6951
-      :lastmodtime '(23537 22010 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!helm-core-20181117.1055!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041magit-20181116.1412\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041magit-20181116.1412\041semantic.cache"
deleted file mode 100644
index 5a0a44a..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041magit-20181116.1412\041semantic.cache"
+++ /dev/null
@@ -1,423 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("subr-x" include nil nil [1228 1245])
-            ("magit" include nil nil [1248 1264])
-            ("magit-find-file-hook" variable nil nil [1281 1314])
-            ("add-hook" code nil nil [1315 1365])
-            ("magit-find-file" function
-               (:user-visible-flag t
-                :arguments ("rev" "file"))
-                nil [1382 1633])
-            ("magit-find-file-other-window" function
-               (:user-visible-flag t
-                :arguments ("rev" "file"))
-                nil [1650 1956])
-            ("magit-find-file-read-args" function (:arguments ("prompt")) nil [1958 2126])
-            ("magit-find-file-noselect" function (:arguments ("rev" "file")) nil [2128 2355])
-            ("magit-find-file-noselect-1" function (:arguments ("rev" "file" "hookvar" "revert")) nil [2357 3548])
-            ("magit-get-revision-buffer-create" function (:arguments ("rev" "file")) nil [3550 3642])
-            ("magit-get-revision-buffer" function (:arguments ("rev" "file" "create")) nil [3644 3892])
-            ("magit-revert-rev-file-buffer" function (:arguments ("_ignore-auto" "noconfirm")) nil [3894 5142])
-            ("magit-find-index-hook" variable nil nil [5160 5194])
-            ("magit-find-file-index-noselect" function (:arguments ("file" "revert")) nil [5196 5505])
-            ("magit-update-index" function (:user-visible-flag t) nil [5507 7045])
-            ("magit-find-git-config-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [7069 7704])
-            ("magit-find-git-config-file-other-window" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [7706 8415])
-            ("magit-find-git-config-file-other-frame" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [8417 9121])
-            ("magit-file-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "g" (quote magit-status)) (define-key map "\347" (quote magit-dispatch-popup)) (define-key map "\347" (quote magit-file-popup)) map)) nil [9138 9395])
-            ("magit-define-popup" code nil nil [9455 10794])
-            ("magit-file-mode-lighter" variable nil nil [10796 10831])
-            ("define-minor-mode" code nil nil [10833 11110])
-            ("magit-file-mode-turn-on" function nil nil [11112 11231])
-            ("define-globalized-minor-mode" code nil nil [11248 11515])
-            ("cl-eval-when" code nil nil [11784 11868])
-            ("magit-blob-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (cond ((featurep (quote jkl)) (define-key map "i" (quote magit-blob-previous)) (define-key map "k" (quote magit-blob-next)) (define-key map "j" (quote magit-blame-addition)) (define-key map "l" (quote magit-blame-removal)) (define-key map "f" (quote magit-blame-reverse))) (t (define-key map "p" (quote magit-blob-previous)) (define-key map "n" (quote magit-blob-next)) (define-key map "b" (quote magit-blame-addition)) (define-key map "r" (quote magit-blame-removal)) (define-key map "f" (quote magit-blame-reverse)))) (define-key map "q" (quote magit-kill-this-buffer)) map)) nil [11885 12608])
-            ("define-minor-mode" code nil nil [12610 12820])
-            ("magit-blob-next" function (:user-visible-flag t) nil [12822 13358])
-            ("magit-blob-previous" function (:user-visible-flag t) nil [13360 13813])
-            ("magit-blob-visit" function (:arguments ("blob-or-file" "line")) nil [13815 14190])
-            ("magit-blob-ancestor" function (:arguments ("rev" "file")) nil [14192 14459])
-            ("magit-blob-successor" function (:arguments ("rev" "file")) nil [14461 14851])
-            ("magit-file-rename" function
-               (:user-visible-flag t
-                :arguments ("file" "newname"))
-                nil [14872 16199])
-            ("magit-file-untrack" function
-               (:user-visible-flag t
-                :arguments ("files" "force"))
-                nil [16201 16916])
-            ("magit-file-delete" function
-               (:user-visible-flag t
-                :arguments ("files" "force"))
-                nil [16918 17673])
-            ("magit-file-checkout" function
-               (:user-visible-flag t
-                :arguments ("rev" "file"))
-                nil [17690 18013])
-            ("magit-read-file-hist" variable nil nil [18030 18063])
-            ("magit-read-file-from-rev" function (:arguments ("rev" "prompt" "default")) nil [18065 18311])
-            ("magit-read-file" function (:arguments ("prompt" "tracked-only")) nil [18313 18707])
-            ("magit-read-tracked-file" function (:arguments ("prompt")) nil [18709 18778])
-            ("magit-read-file-choice" function (:arguments ("prompt" "files" "error" "default")) nil [18780 19371])
-            ("magit-read-changed-file" function (:arguments ("rev-or-range" "prompt" "default")) nil [19373 19577])
-            ("magit-read-files" function (:arguments ("prompt" "initial-contents")) nil [19579 19842])
-            ("magit-files" package nil nil [19850 19872]))          
-      :file "magit-files.el"
-      :pointmax 19902
-      :fsize 19901
-      :lastmodtime '(23535 16490 0 0)
-      :unmatched-syntax '((close-paren 1245 . 1246) (symbol 1208 . 1225) (open-paren 1207 . 1208)))
-    (semanticdb-table "semanticdb-table"
-      :file "magit.el"
-      :fsize 24571
-      :lastmodtime '(23535 16490 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("dash" include nil nil [2632 2647])
-            ("easymenu" include nil nil [2648 2667])
-            ("server" include nil nil [2668 2685])
-            ("with-editor" include nil nil [2686 2708])
-            ("magit" include nil nil [2709 2725])
-            ("and" code nil nil [2727 2915])
-            ("recentf" include nil nil [2936 2954])
-            ("git-rebase" customgroup (:user-visible-flag t) nil [2985 3112])
-            ("git-rebase-auto-advance" variable (:default-value t) nil [3114 3245])
-            ("git-rebase-show-instructions" variable (:default-value t) nil [3247 3392])
-            ("git-rebase-confirm-cancel" variable (:default-value t) nil [3394 3519])
-            ("git-rebase-faces" customgroup (:user-visible-flag t) nil [3533 3636])
-            ("git-rebase-hash" variable
-               (:default-value (quote ((t (:inherit magit-hash))))
-                :type "face")
-                nil [3638 3747])
-            ("git-rebase-description" variable (:type "face") nil [3749 3846])
-            ("git-rebase-killed-action" variable
-               (:default-value (quote ((t (:inherit font-lock-comment-face :strike-through t))))
-                :type "face")
-                nil [3848 4016])
-            ("git-rebase-comment-hash" variable
-               (:default-value (quote ((t (:inherit git-rebase-hash :weight bold))))
-                :type "face")
-                nil [4018 4182])
-            ("git-rebase-comment-heading" variable
-               (:default-value (quote ((t :inherit font-lock-keyword-face)))
-                :type "face")
-                nil [4184 4338])
-            ("git-rebase-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map special-mode-map) (cond ((featurep (quote jkl)) (define-key map [return] (quote git-rebase-show-commit)) (define-key map (kbd "i") (quote git-rebase-backward-line)) (define-key map (kbd "k") (quote forward-line)) (define-key map (kbd "M-i") (quote git-rebase-move-line-up)) (define-key map (kbd "M-k") (quote git-rebase-move-line-down)) (define-key map (kbd "p") (quote git-rebase-pick)) (define-key map (kbd ",") (quote git-rebase-kill-line))) (t (define-key map (kbd "C-m") (quote git-rebase-show-commit)) (define-key map (kbd "p") (quote git-rebase-backward-line)) (define-key map (kbd "n") (quote forward-line)) (define-key map (kbd "M-p") (quote git-rebase-move-line-up)) (define-key map (kbd "M-n") (quote git-rebase-move-line-down)) (define-key map (kbd "c") (quote git-rebase-pick)) (define-key map (kbd "k") (quote git-rebase-kill-line)) (define-key map (kbd "C-k") (quote git-rebase-kill-line)))) (define-key map (kbd "e") (quote git-rebase-edit)) (define-key map (kbd "m") (quote git-rebase-edit)) (define-key map (kbd "f") (quote git-rebase-fixup)) (define-key map (kbd "q") (quote undefined)) (define-key map (kbd "r") (quote git-rebase-reword)) (define-key map (kbd "w") (quote git-rebase-reword)) (define-key map (kbd "s") (quote git-rebase-squash)) (define-key map (kbd "x") (quote git-rebase-exec)) (define-key map (kbd "y") (quote git-rebase-insert)) (define-key map (kbd "z") (quote git-rebase-noop)) (define-key map (kbd "SPC") (quote git-rebase-show-or-scroll-up)) (define-key map (kbd "DEL") (quote git-rebase-show-or-scroll-down)) (define-key map (kbd "C-x C-t") (quote git-rebase-move-line-up)) (define-key map [M-up] (quote git-rebase-move-line-up)) (define-key map [M-down] (quote git-rebase-move-line-down)) (define-key map [remap undo] (quote git-rebase-undo)) map)) nil [4353 6339])
-            ("cond" code nil nil [6341 6763])
-            ("easy-menu-define" code nil nil [6765 7299])
-            ("git-rebase-command-descriptions" variable (:default-value (quote ((with-editor-finish . "tell Git to make it happen") (with-editor-cancel . "tell Git that you changed your mind, i.e. abort") (git-rebase-backward-line . "move point to previous line") (forward-line . "move point to next line") (git-rebase-move-line-up . "move the commit at point up") (git-rebase-move-line-down . "move the commit at point down") (git-rebase-show-or-scroll-up . "show the commit at point in another buffer") (git-rebase-show-commit . "show the commit at point in another buffer and select its window") (undo . "undo last change") (git-rebase-kill-line . "drop the commit at point") (git-rebase-insert . "insert a line for an arbitrary commit") (git-rebase-noop . "add noop action at point")))) nil [7301 8207])
-            ("git-rebase-pick" function (:user-visible-flag t) nil [8223 8330])
-            ("git-rebase-reword" function (:user-visible-flag t) nil [8332 8455])
-            ("git-rebase-edit" function (:user-visible-flag t) nil [8457 8576])
-            ("git-rebase-squash" function (:user-visible-flag t) nil [8578 8725])
-            ("git-rebase-fixup" function (:user-visible-flag t) nil [8727 8879])
-            ("defvar-local" code nil nil [8881 8915])
-            ("defvar-local" code nil nil [8916 8956])
-            ("git-rebase-set-action" function (:arguments ("action")) nil [8958 9306])
-            ("git-rebase-line-p" function (:arguments ("pos")) nil [9308 9476])
-            ("git-rebase-region-bounds" function nil nil [9478 9881])
-            ("git-rebase-move-line-down" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [9883 11206])
-            ("git-rebase-move-line-up" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [11208 11495])
-            ("git-rebase-highlight-region" function (:arguments ("start" "end" "window" "rol")) nil [11497 12105])
-            ("git-rebase-unhighlight-region" function (:arguments ("rol")) nil [12107 12280])
-            ("git-rebase-kill-line" function (:user-visible-flag t) nil [12282 12653])
-            ("git-rebase-insert" function
-               (:user-visible-flag t
-                :arguments ("rev"))
-                nil [12655 12985])
-            ("git-rebase-exec" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [12987 14152])
-            ("git-rebase-noop" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [14154 15201])
-            ("git-rebase-undo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [15203 15385])
-            ("git-rebase--show-commit" function (:arguments ("scroll")) nil [15387 15851])
-            ("git-rebase-show-commit" function (:user-visible-flag t) nil [15853 15978])
-            ("git-rebase-show-or-scroll-up" function (:user-visible-flag t) nil [15980 16329])
-            ("git-rebase-show-or-scroll-down" function (:user-visible-flag t) nil [16331 16686])
-            ("git-rebase-backward-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [16688 16894])
-            ("define-derived-mode" code nil nil [16921 18696])
-            ("git-rebase-cancel-confirm" function (:arguments ("force")) nil [18698 18853])
-            ("git-rebase-autostash-save" function nil nil [18855 19018])
-            ("git-rebase-autostash-apply" function nil nil [19020 19144])
-            ("git-rebase-match-comment-line" function (:arguments ("limit")) nil [19146 19257])
-            ("git-rebase-mode-font-lock-keywords" function nil nil [19259 20189])
-            ("git-rebase-mode-show-keybindings" function nil nil [20191 21849])
-            ("add-hook" code nil nil [21851 21919])
-            ("git-rebase-mode-disable-before-save-hook" function nil nil [21921 22024])
-            ("add-hook" code nil nil [22026 22100])
-            ("git-rebase-filename-regexp" variable
-               (:constant-flag t
-                :default-value "/git-rebase-todo\\'")
-                nil [22117 22176])
-            ("add-to-list" code nil nil [22192 22286])
-            ("add-to-list" code nil nil [22288 22399])
-            ("eval-after-load" code nil nil [22401 22488])
-            ("add-to-list" code nil nil [22490 22569])
-            ("git-rebase" package nil nil [22577 22598]))          
-      :file "git-rebase.el"
-      :pointmax 22627
-      :fsize 22626
-      :lastmodtime '(23535 16490 0 0)
-      :unmatched-syntax '((close-paren 2954 . 2955) (symbol 2918 . 2935) (open-paren 2917 . 2918)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1611 1628])
-            ("dash" include nil nil [1629 1644])
-            ("subr-x" include nil nil [1667 1684])
-            ("crm" include nil nil [1687 1701])
-            ("ido" include nil nil [1722 1736])
-            ("declare-function" code nil nil [1738 1968])
-            ("declare-function" code nil nil [1969 2047])
-            ("vc-git" include nil nil [2068 2085])
-            ("declare-function" code nil nil [2087 2159])
-            ("magit-wip-before-change-mode" variable nil nil [2161 2198])
-            ("magit-popup" include nil nil [2200 2222])
-            ("magit-completing-read-function" variable (:default-value (quote magit-builtin-completing-read)) nil [2237 3337])
-            ("magit-dwim-selection" variable (:default-value (quote ((magit-stash-apply nil t) (magit-stash-branch nil t) (magit-stash-branch-here nil t) (magit-stash-format-patch nil t) (magit-stash-drop nil ask) (magit-stash-pop nil ask) (forge-browse-commit nil t) (forge-browse-branch nil t) (forge-browse-remote nil t) (forge-browse-issue nil t) (forge-browse-pullreq nil t) (forge-edit-topic-title nil t) (forge-edit-topic-labels nil t) (forge-edit-topic-assignees nil t) (forge-visit-issue nil t) (forge-visit-pullreq nil t)))) nil [3339 5678])
-            ("magit--confirm-actions" variable
-               (:constant-flag t
-                :default-value (quote ((const reverse) (const discard) (const rename) (const resurrect) (const untrack) (const trash) (const delete) (const abort-rebase) (const abort-merge) (const merge-dirty) (const drop-stashes) (const reset-bisect) (const kill-process) (const delete-unmerged-branch) (const delete-pr-branch) (const remove-modules) (const stage-all-changes) (const unstage-all-changes) (const safe-with-wip))))
-                nil [5680 6202])
-            ("magit-no-confirm" variable nil nil [6204 12744])
-            ("magit-slow-confirm" variable (:default-value (quote (drop-stashes))) nil [12746 13527])
-            ("magit-no-message" variable nil nil [13529 14525])
-            ("magit-ellipsis" variable (:default-value 8230) nil [14527 14809])
-            ("magit-update-other-window-delay" variable (:default-value 0.2) nil [14811 15568])
-            ("magit-view-git-manual-method" variable (:default-value (quote info)) nil [15570 16308])
-            ("helm-completion-in-region-default-sort-fn" variable nil nil [16326 16376])
-            ("ivy-sort-functions-alist" variable nil nil [16377 16410])
-            ("magit-completing-read--silent-default" variable nil nil [16412 16462])
-            ("magit-completing-read" function (:arguments ("prompt" "collection" "predicate" "require-match" "initial-input" "hist" "def" "fallback")) nil [16464 19612])
-            ("magit--completion-table" function (:arguments ("collection")) nil [19614 19835])
-            ("magit-builtin-completing-read" function (:arguments ("prompt" "choices" "predicate" "require-match" "initial-input" "hist" "def")) nil [19837 20501])
-            ("magit-completing-read-multiple" function (:arguments ("prompt" "choices" "sep" "default" "hist" "keymap")) nil [20503 21902])
-            ("magit-completing-read-multiple*" function (:arguments ("prompt" "table" "predicate" "require-match" "initial-input" "hist" "def" "inherit-input-method")) nil [21904 23597])
-            ("magit-ido-completing-read" function (:arguments ("prompt" "choices" "predicate" "require-match" "initial-input" "hist" "def")) nil [23599 24475])
-            ("magit-prompt-with-default" function (:arguments ("prompt" "def")) nil [24477 24689])
-            ("magit-minibuffer-local-ns-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map minibuffer-local-map) (define-key map " " (quote magit-whitespace-disallowed)) (define-key map "	" (quote magit-whitespace-disallowed)) map)) nil [24691 24933])
-            ("magit-whitespace-disallowed" function (:user-visible-flag t) nil [24935 25159])
-            ("magit-read-string" function (:arguments ("prompt" "initial-input" "history" "default-value" "inherit-input-method" "no-whitespace")) nil [25161 26835])
-            ("magit-read-string-ns" function (:arguments ("prompt" "initial-input" "history" "default-value" "inherit-input-method")) nil [26837 27143])
-            ("magit-read-char-case" function (:arguments ("prompt" "verbose" "clauses")) nil [27145 27559])
-            ("magit-y-or-n-p" function (:arguments ("prompt" "action")) nil [27561 27923])
-            ("magit--no-confirm-alist" variable (:default-value (quote ((safe-with-wip magit-wip-before-change-mode discard reverse stage-all-changes unstage-all-changes)))) nil [27925 28080])
-            ("cl-defun" code nil nil [28082 29546])
-            ("magit-confirm-files" function (:arguments ("action" "files" "prompt")) nil [29548 29802])
-            ("magit-confirm-make-prompt" function (:arguments ("action")) nil [29804 29992])
-            ("magit-read-number-string" function (:arguments ("prompt" "default")) nil [29994 30306])
-            ("magit-emacs-Q-command" function (:user-visible-flag t) nil [30344 32265])
-            ("magit-bind-match-strings" function (:arguments ("varlist" "string" "body")) nil [32287 32877])
-            ("magit-delete-line" function nil nil [32879 32999])
-            ("magit-delete-match" function (:arguments ("num")) nil [33001 33232])
-            ("magit-file-line" function (:arguments ("file")) nil [33234 33508])
-            ("magit-file-lines" function (:arguments ("file" "keep-empty-lines")) nil [33510 33861])
-            ("magit-set-header-line-format" function (:arguments ("string")) nil [33863 35257])
-            ("magit-face-property-all" function (:arguments ("face" "string")) nil [35259 35685])
-            ("magit--format-spec" function (:arguments ("format" "specification")) nil [35687 37197])
-            ("magit-kill-this-buffer" function (:user-visible-flag t) nil [37223 37334])
-            ("magit-file-accessible-directory-p" function (:arguments ("filename")) nil [37364 37673])
-            ("when" code nil nil [37675 38404])
-            ("when" code nil nil [38406 39497])
-            ("magit-completion-pcm--all-completions" function (:arguments ("prefix" "pattern" "table" "pred")) nil [39692 40580])
-            ("whitespace-mode" variable nil nil [40618 40642])
-            ("whitespace-dont-turn-on-in-magit-mode" function (:arguments ("fn")) nil [40644 41464])
-            ("advice-add" code nil nil [41466 41557])
-            ("magit-custom-initialize-reset" function (:arguments ("symbol" "exp")) nil [41583 42285])
-            ("magit-hook-custom-get" function (:arguments ("symbol")) nil [42287 43303])
-            ("Info-follow-nearest-node--magit-gitman" function (:arguments ("fn" "fork")) nil [43350 44044])
-            ("advice-add" code nil nil [44061 44159])
-            ("org-man-export--magit-gitman" function (:arguments ("fn" "link" "description" "format")) nil [44176 44580])
-            ("advice-add" code nil nil [44597 44675])
-            ("magit-message" function (:arguments ("format-string" "args")) nil [44696 45078])
-            ("magit-msg" function (:arguments ("format-string" "args")) nil [45080 45329])
-            ("magit-utils" package nil nil [45337 45359]))          
-      :file "magit-utils.el"
-      :pointmax 45389
-      :fsize 45392
-      :lastmodtime '(23535 16490 0 0)
-      :unmatched-syntax '((close-paren 2085 . 2086) (symbol 2050 . 2067) (open-paren 2049 . 2050) (close-paren 1736 . 1737) (symbol 1704 . 1721) (open-paren 1703 . 1704) (close-paren 1684 . 1685) (symbol 1647 . 1664) (open-paren 1646 . 1647)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1013 1030])
-            ("dash" include nil nil [1031 1046])
-            ("magit-git" include nil nil [1048 1068])
-            ("autorevert" include nil nil [1070 1091])
-            ("magit-auto-revert" customgroup (:user-visible-flag t) nil [1106 1377])
-            ("auto-revert-buffer-list-filter" variable nil nil [1379 2581])
-            ("magit-auto-revert-tracked-only" variable (:default-value t) nil [2583 3012])
-            ("magit-auto-revert-immediately" variable (:default-value t) nil [3014 3785])
-            ("magit-turn-on-auto-revert-mode-if-desired" function (:arguments ("file")) nil [3797 4383])
-            ("define-globalized-minor-mode" code nil nil [4400 5289])
-            ("magit-auto-revert-mode--init-kludge" function nil nil [6121 6917])
-            ("if" code nil nil [6918 7260])
-            ("put" code nil nil [7262 8591])
-            ("magit-auto-revert-buffers" function nil nil [8593 8960])
-            ("magit-auto-revert-toplevel" variable nil nil [8962 9001])
-            ("when" code nil nil [9003 9137])
-            ("magit-auto-revert-buffer-p" function (:arguments ("buffer")) nil [9139 9442])
-            ("magit-auto-revert-repository-buffer-p" function (:arguments ("buffer" "fallback")) nil [9444 10441])
-            ("auto-revert-buffers--buffer-list-filter" function nil nil [10443 10742])
-            ("advice-add" code nil nil [10744 10838])
-            ("magit-autorevert" package nil nil [10846 10873]))          
-      :file "magit-autorevert.el"
-      :pointmax 10908
-      :fsize 10907
-      :lastmodtime '(23535 16490 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "magit-git.el"
-      :fsize 92509
-      :lastmodtime '(23535 16490 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ansi-color" include nil nil [1218 1239])
-            ("cl-lib" include nil nil [1240 1257])
-            ("dash" include nil nil [1258 1273])
-            ("subr-x" include nil nil [1296 1313])
-            ("with-editor" include nil nil [1316 1338])
-            ("magit-utils" include nil nil [1339 1361])
-            ("magit-section" include nil nil [1362 1386])
-            ("magit-git" include nil nil [1387 1407])
-            ("magit-mode" include nil nil [1408 1429])
-            ("declare-function" code nil nil [1431 1562])
-            ("magit-process-connection-type" variable (:default-value (not (eq system-type (quote cygwin)))) nil [1577 1946])
-            ("magit-need-cygwin-noglob" variable (:default-value (and (eq system-type (quote windows-nt)) (with-temp-buffer (let ((process-environment (append magit-git-environment process-environment))) (condition-case e (process-file magit-git-executable nil (current-buffer) nil "-c" "alias.echo=!echo" "echo" "x{0}") (file-error (lwarn (quote magit-process) :warning "Could not run Git: %S" e)))) (equal "x0
-" (buffer-string))))) nil [1948 2941])
-            ("magit-process-popup-time" variable (:default-value -1) nil [2943 3231])
-            ("magit-process-log-max" variable (:default-value 32) nil [3233 3701])
-            ("magit-process-error-tooltip-max-lines" variable (:default-value 20) nil [3703 4154])
-            ("magit-credential-cache-daemon-socket" variable (:default-value (--some (pcase-let (((\` ((\, prog) \, args)) (split-string it))) (if (and prog (string-match-p "\\`\\(?:\\(?:/.*/\\)?git-credential-\\)?cache\\'" prog)) (or (cl-loop for (opt val) on args if (string= opt "--socket") return val) (expand-file-name "~/.git-credential-cache/socket")))) (ignore-errors (let ((process-environment (append magit-git-environment process-environment))) (process-lines magit-git-executable "config" "--get-all" "credential.helper"))))) nil [4156 6094])
-            ("magit-process-yes-or-no-prompt-regexp" variable (:default-value " [[(]\\([Yy]\\(?:es\\)?\\)[/|]\\([Nn]o?\\)[])] ?[?:] ?$") nil [6096 6352])
-            ("magit-process-password-prompt-regexps" variable (:default-value (quote ("^\\(Enter \\)?[Pp]assphrase\\( for \\(RSA \\)?key '.*'\\)?: ?$" "^\\(Enter \\)?[Pp]assword\\( for '\\(https?://\\)?\\(?99:.*\\)'\\)?: ?$" "^.*'s password: ?$" "^Yubikey for .*: ?$" "^Enter PIN for .*: ?$"))) nil [6354 6908])
-            ("magit-process-find-password-functions" variable nil nil [6910 7768])
-            ("magit-process-username-prompt-regexps" variable (:default-value (quote ("^Username for '.*': ?$"))) nil [7770 8013])
-            ("magit-process-ensure-unix-line-ending" variable (:default-value t) nil [8015 8219])
-            ("magit-process-display-mode-line-error" variable (:default-value t) nil [8221 8431])
-            ("magit-process-ok" variable
-               (:default-value (quote ((t :inherit magit-section-heading :foreground "green")))
-                :type "face")
-                nil [8433 8572])
-            ("magit-process-ng" variable
-               (:default-value (quote ((t :inherit magit-section-heading :foreground "red")))
-                :type "face")
-                nil [8574 8715])
-            ("magit-mode-line-process" variable
-               (:default-value (quote ((t :inherit mode-line-emphasis)))
-                :type "face")
-                nil [8717 8887])
-            ("magit-mode-line-process-error" variable
-               (:default-value (quote ((t :inherit error)))
-                :type "face")
-                nil [8889 9084])
-            ("magit-process-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map magit-mode-map) map)) nil [9104 9260])
-            ("define-derived-mode" code nil nil [9262 9646])
-            ("magit-process-buffer" function
-               (:user-visible-flag t
-                :arguments ("nodisplay"))
-                nil [9648 11154])
-            ("magit-process-kill" function (:user-visible-flag t) nil [11156 11443])
-            ("magit-process-raise-error" variable nil nil [11472 11510])
-            ("magit-git" function (:arguments ("args")) nil [11512 11962])
-            ("magit-run-git" function (:arguments ("args")) nil [11964 12729])
-            ("magit-pre-call-git-hook" variable nil nil [12731 12767])
-            ("magit-call-git" function (:arguments ("args")) nil [12769 13362])
-            ("magit-call-process" function (:arguments ("program" "args")) nil [13364 13840])
-            ("magit-process-file" function (:arguments ("process" "infile" "buffer" "display" "args")) nil [13842 14295])
-            ("magit-process-environment" function nil nil [14297 15161])
-            ("magit-this-process" variable nil nil [15163 15194])
-            ("magit-run-git-with-input" function (:arguments ("args")) nil [15196 16786])
-            ("magit-run-git-with-logfile" function (:arguments ("file" "args")) nil [16788 17083])
-            ("magit-run-git-async" function (:arguments ("args")) nil [17113 17799])
-            ("magit-run-git-with-editor" function (:arguments ("args")) nil [17801 18393])
-            ("magit-run-git-sequencer" function (:arguments ("args")) nil [18395 19166])
-            ("magit-pre-start-git-hook" variable nil nil [19168 19205])
-            ("magit-start-git" function (:arguments ("input" "args")) nil [19207 20133])
-            ("magit-start-process" function (:arguments ("program" "input" "args")) nil [20135 22617])
-            ("magit-parse-git-async" function (:arguments ("args")) nil [22619 23435])
-            ("magit-process-setup" function (:arguments ("program" "args")) nil [23460 23777])
-            ("magit-process-insert-section" function (:arguments ("pwd" "program" "args" "errcode" "errlog")) nil [23779 25580])
-            ("magit-process-truncate-log" function nil nil [25582 26379])
-            ("magit-process-sentinel" function (:arguments ("process" "event")) nil [26381 27167])
-            ("magit-sequencer-process-sentinel" function (:arguments ("process" "event")) nil [27169 28227])
-            ("magit-process-filter" function (:arguments ("proc" "string")) nil [28229 29175])
-            ("magit-process-kill-on-abort" function (:arguments ("proc" "body")) nil [29177 29617])
-            ("magit-process-yes-or-no-prompt" function (:arguments ("process" "string")) nil [29619 30119])
-            ("magit-process-password-auth-source" function (:arguments ("key")) nil [30121 31237])
-            ("magit-process-password-prompt" function (:arguments ("process" "string")) nil [31239 32107])
-            ("magit-process-username-prompt" function (:arguments ("process" "string")) nil [32109 32458])
-            ("magit-process-match-prompt" function (:arguments ("prompts" "string")) nil [32460 32901])
-            ("magit--process-coding-system" function nil nil [32903 33287])
-            ("magit-credential-hook" variable nil nil [33289 33366])
-            ("magit-credential-cache-daemon-process" variable nil nil [33368 33418])
-            ("magit-maybe-start-credential-cache-daemon" function nil nil [33420 35039])
-            ("add-hook" code nil nil [35041 35118])
-            ("tramp-sh-handle-start-file-process--magit-tramp-process-environment" function (:arguments ("fn" "name" "buffer" "program" "args")) nil [35120 35495])
-            ("advice-add" code nil nil [35497 35634])
-            ("tramp-sh-handle-process-file--magit-tramp-process-environment" function (:arguments ("fn" "program" "infile" "destination" "display" "args")) nil [35636 36009])
-            ("advice-add" code nil nil [36011 36136])
-            ("magit-mode-line-process-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map (kbd "<mode-line> <mouse-1>") (quote magit-process-buffer)) map)) nil [36138 36334])
-            ("magit-process-set-mode-line" function (:arguments ("program" "args")) nil [36336 37176])
-            ("magit-process-set-mode-line-error-status" function (:arguments ("error" "str")) nil [37178 39664])
-            ("magit-process-unset-mode-line-error-status" function nil nil [39666 40052])
-            ("magit-process-unset-mode-line" function nil nil [40054 40412])
-            ("magit-process-error-message-regexps" variable (:default-value (list "^\\*ERROR\\*: Canceled by user$" "^\\(?:error\\|fatal\\|git\\): \\(.*\\)$" "^\\(Cannot rebase:.*\\)$")) nil [40414 40586])
-            ("define-error" code nil nil [40588 40631])
-            ("magit-process-error-summary" function (:arguments ("process-buf" "section")) nil [40633 41446])
-            ("magit-process-error-tooltip" function (:arguments ("process-buf" "section")) nil [41448 42453])
-            ("defvar-local" code nil nil [42455 42490])
-            ("magit-process-finish-apply-ansi-colors" variable nil nil [42492 42543])
-            ("magit-process-finish" function (:arguments ("arg" "process-buf" "command-buf" "default-dir" "section")) nil [42545 45789])
-            ("magit-process-display-buffer" function (:arguments ("process")) nil [45791 46690])
-            ("magit--log-action" function (:arguments ("summary" "line" "list")) nil [46692 47418])
-            ("magit-process" package nil nil [47426 47450]))          
-      :file "magit-process.el"
-      :pointmax 47482
-      :fsize 47481
-      :lastmodtime '(23535 16490 0 0)
-      :unmatched-syntax '((close-paren 1313 . 1314) (symbol 1276 . 1293) (open-paren 1275 . 1276)))
-    (semanticdb-table "semanticdb-table"
-      :file "magit-section.el"
-      :fsize 60715
-      :lastmodtime '(23535 16490 0 0))
-    (semanticdb-table "semanticdb-table"
-      :file "magit-mode.el"
-      :fsize 58319
-      :lastmodtime '(23535 16490 0 0)))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!magit-20181116.1412!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041org-9.1.14\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041org-9.1.14\041semantic.cache"
deleted file mode 100644
index c54ab9f..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041org-9.1.14\041semantic.cache"
+++ /dev/null
@@ -1,9694 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "org-autoloads.el"
-      :pointmax 345
-      :fsize 52611
-      :lastmodtime '(23537 23334 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-babel-execute-safely-maybe" function (:prototype-flag t) nil [194 266])
-            ("org-babel-execute-maybe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [268 331])
-            ("org-babel-view-src-block-info" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [333 575])
-            ("org-babel-expand-src-block-maybe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [577 787])
-            ("org-babel-load-in-session-maybe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [789 1008])
-            ("org-babel-pop-to-session-maybe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1010 1214])
-            ("org-babel-execute-src-block" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1216 1877])
-            ("org-babel-expand-src-block" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [1879 2115])
-            ("org-babel-check-src-block" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2117 2246])
-            ("org-babel-insert-header-arg" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2248 2414])
-            ("org-babel-load-in-session" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2416 2679])
-            ("org-babel-initiate-session" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2681 2994])
-            ("org-babel-switch-to-session" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [2996 3276])
-            ("org-babel-switch-to-session-with-code" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [3278 3416])
-            ("org-babel-do-in-edit-buffer" function (:prototype-flag t) nil [3418 3619])
-            ("org-babel-open-src-block-result" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [3621 3911])
-            ("org-babel-map-src-blocks" function (:prototype-flag t) nil [3913 5065])
-            ("function-put" code nil nil [5067 5132])
-            ("org-babel-map-inline-src-blocks" function (:prototype-flag t) nil [5134 5348])
-            ("function-put" code nil nil [5350 5422])
-            ("org-babel-map-call-lines" function (:prototype-flag t) nil [5424 5621])
-            ("function-put" code nil nil [5623 5688])
-            ("org-babel-map-executables" function (:prototype-flag t) nil [5690 5896])
-            ("function-put" code nil nil [5898 5964])
-            ("org-babel-execute-buffer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [5966 6163])
-            ("org-babel-execute-subtree" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [6165 6365])
-            ("org-babel-sha1-hash" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [6367 6490])
-            ("org-babel-hide-result-toggle-maybe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [6492 6603])
-            ("org-babel-goto-src-block-head" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [6605 6720])
-            ("org-babel-goto-named-src-block" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [6722 6829])
-            ("org-babel-goto-named-result" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [6831 6924])
-            ("org-babel-next-src-block" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [6926 7106])
-            ("org-babel-previous-src-block" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7108 7297])
-            ("org-babel-mark-block" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7299 7382])
-            ("org-babel-describe-bindings" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7515 7637])
-            ("org-babel-lob-execute-maybe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [7767 8017])
-            ("org-babel-lob-get-info" function (:prototype-flag t) nil [8019 8360])
-            ("org-babel-tangle-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [8499 8939])
-            ("org-babel-tangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [8941 9533])
-            ("org-toggle-sticky-agenda" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [9676 9784])
-            ("org-agenda" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [9786 11518])
-            ("org-batch-agenda" function (:prototype-flag t) nil [11520 11958])
-            ("org-batch-agenda-csv" function (:prototype-flag t) nil [11960 13742])
-            ("org-store-agenda-views" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [13744 13845])
-            ("org-batch-store-agenda-views" function (:prototype-flag t) nil [13847 13992])
-            ("org-agenda-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [13994 14714])
-            ("org-search-view" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [14716 17074])
-            ("org-todo-list" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [17076 17458])
-            ("org-tags-view" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [17460 17674])
-            ("org-agenda-list-stuck-projects" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [17676 17980])
-            ("org-diary" function (:prototype-flag t) nil [17982 19145])
-            ("org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item" function (:prototype-flag t) nil [19147 19340])
-            ("org-agenda-set-restriction-lock" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [19342 19698])
-            ("org-calendar-goto-agenda" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [19700 19903])
-            ("org-agenda-to-appt" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [19905 21153])
-            ("org-add-archive-files" function (:prototype-flag t) nil [21298 21499])
-            ("org-archive-subtree" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [21501 22311])
-            ("org-archive-to-archive-sibling" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [22313 22727])
-            ("org-toggle-archive-tag" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [22729 22991])
-            ("org-archive-subtree-default" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [22993 23186])
-            ("org-archive-subtree-default-with-confirmation" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [23188 23399])
-            ("org-attach" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [23541 23708])
-            ("org-bbdb-anniversaries" function (:prototype-flag t) nil [23844 23967])
-            ("org-capture-string" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [24113 24247])
-            ("org-capture" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [24249 25562])
-            ("org-capture-import-remember-templates" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [25564 25715])
-            ("org-resolve-clocks" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [25854 26107])
-            ("org-clock-in" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [26109 26836])
-            ("org-clock-in-last" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [26838 27338])
-            ("org-clock-out" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [27340 27689])
-            ("org-clock-cancel" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [27691 27806])
-            ("org-clock-goto" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [27808 28023])
-            ("org-clock-sum-today" function (:prototype-flag t) nil [28025 28155])
-            ("org-clock-sum" function (:prototype-flag t) nil [28157 28718])
-            ("org-clock-display" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [28720 29297])
-            ("org-clock-remove-overlays" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [29299 29536])
-            ("org-clock-get-clocktable" function (:prototype-flag t) nil [29538 29774])
-            ("org-clock-report" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [29776 30359])
-            ("org-clocktable-shift" function (:prototype-flag t) nil [30361 30851])
-            ("org-dblock-write:clocktable" function (:prototype-flag t) nil [30853 30961])
-            ("org-clock-update-time-maybe" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [30963 31103])
-            ("org-columns-remove-overlays" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [31249 31364])
-            ("org-columns-get-format-and-top-level" function (:prototype-flag t) nil [31366 31448])
-            ("org-columns" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [31450 31966])
-            ("org-columns-compute" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [31968 32174])
-            ("org-dblock-write:columnview" function (:prototype-flag t) nil [32176 33300])
-            ("org-columns-insert-dblock" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [33302 33424])
-            ("org-agenda-columns" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [33426 33532])
-            ("org-check-version" function (:prototype-flag t) nil [33675 33785])
-            ("org-datetree-find-date-create" function (:prototype-flag t) nil [33933 34320])
-            ("org-datetree-find-iso-week-create" function (:prototype-flag t) nil [34322 34774])
-            ("org-duration-set-regexps" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [34923 35021])
-            ("org-duration-p" function (:prototype-flag t) nil [35023 35127])
-            ("org-duration-to-minutes" function (:prototype-flag t) nil [35129 35546])
-            ("org-duration-from-minutes" function (:prototype-flag t) nil [35548 35935])
-            ("org-duration-h:mm-only-p" function (:prototype-flag t) nil [35937 36324])
-            ("org-element-update-syntax" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [36469 36562])
-            ("org-element-interpret-data" function (:prototype-flag t) nil [36564 36782])
-            ("org-element-cache-reset" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [36784 36966])
-            ("org-element-cache-refresh" function (:prototype-flag t) nil [36968 37073])
-            ("org-element-at-point" function (:prototype-flag t) nil [37075 37865])
-            ("org-element-context" function (:prototype-flag t) nil [37867 38625])
-            ("org-feed-update-all" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [38761 38872])
-            ("org-feed-update" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [38874 39113])
-            ("org-feed-goto-inbox" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [39115 39230])
-            ("org-feed-show-raw-feed" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [39232 39335])
-            ("org-footnote-action" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [39483 39937])
-            ("org-id-get-create" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [40067 40298])
-            ("org-id-copy" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [40300 40428])
-            ("org-id-get" function (:prototype-flag t) nil [40430 40836])
-            ("org-id-get-with-outline-path-completion" function (:prototype-flag t) nil [40838 41217])
-            ("org-id-get-with-outline-drilling" function (:prototype-flag t) nil [41219 41495])
-            ("org-id-goto" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [41497 41649])
-            ("org-id-find" function (:prototype-flag t) nil [41651 41939])
-            ("org-id-new" function (:prototype-flag t) nil [41941 42411])
-            ("org-id-update-id-locations" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [42413 42747])
-            ("org-id-find-id-file" function (:prototype-flag t) nil [42749 42875])
-            ("org-id-store-link" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [42877 42981])
-            ("org-indent-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [43123 43524])
-            ("org-irc-store-link" function (:prototype-flag t) nil [43657 43788])
-            ("org-lint" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [43925 44310])
-            ("org-load-noerror-mustsuffix" function (:prototype-flag t) nil [44447 44577])
-            ("org-mobile-push" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [44719 44974])
-            ("org-mobile-pull" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [44976 45210])
-            ("org-plot/gnuplot" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [45346 45583])
-            ("org-table-create-with-table.el" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [45722 45928])
-            ("org-table-create-or-convert-from-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [45930 46362])
-            ("org-table-create" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [46364 46540])
-            ("org-table-convert-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [46542 47492])
-            ("org-table-import" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [47494 48242])
-            ("org-table-export" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [48244 48974])
-            ("org-table-align" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [48976 49088])
-            ("org-table-begin" function (:prototype-flag t) nil [49090 49362])
-            ("org-table-end" function (:prototype-flag t) nil [49364 49622])
-            ("org-table-justify-field-maybe" function (:prototype-flag t) nil [49624 49845])
-            ("org-table-next-field" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [49847 50031])
-            ("org-table-previous-field" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [50033 50187])
-            ("org-table-next-row" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [50189 50353])
-            ("org-table-copy-down" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [50355 51168])
-            ("org-table-blank-field" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51170 51280])
-            ("org-table-field-info" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51282 51420])
-            ("org-table-goto-column" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51422 51796])
-            ("org-table-insert-column" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51798 51898])
-            ("org-table-delete-column" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51900 51996])
-            ("org-table-move-column-right" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [51998 52092])
-            ("org-table-move-column-left" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52094 52186])
-            ("org-table-move-column" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52188 52337])
-            ("org-table-move-row-down" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52339 52424])
-            ("org-table-move-row-up" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52426 52507])
-            ("org-table-move-row" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52509 52641])
-            ("org-table-insert-row" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52643 52822])
-            ("org-table-insert-hline" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [52824 53017])
-            ("org-table-hline-and-move" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [53019 53158])
-            ("org-table-kill-row" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [53160 53277])
-            ("org-table-sort-lines" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [53279 54755])
-            ("org-table-cut-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [54757 54954])
-            ("org-table-copy-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [54956 55176])
-            ("org-table-paste-rectangle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [55178 55517])
-            ("org-table-convert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [55519 56121])
-            ("org-table-wrap-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [56123 57376])
-            ("org-table-edit-field" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [57378 57778])
-            ("org-table-sum" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [57780 58463])
-            ("org-table-get-stored-formulas" function (:prototype-flag t) nil [58465 58825])
-            ("org-table-maybe-eval-formula" function (:prototype-flag t) nil [58827 58994])
-            ("org-table-rotate-recalc-marks" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [58996 59432])
-            ("org-table-analyze" function (:prototype-flag t) nil [59434 59865])
-            ("org-table-maybe-recalculate-line" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [59867 60017])
-            ("org-table-eval-formula" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [60019 61950])
-            ("org-table-recalculate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [61952 62524])
-            ("org-table-iterate" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [62526 62752])
-            ("org-table-recalculate-buffer-tables" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [62754 62876])
-            ("org-table-iterate-buffer-tables" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [62878 63022])
-            ("org-table-edit-formulas" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [63024 63149])
-            ("org-table-toggle-coordinate-overlays" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [63151 63280])
-            ("org-table-toggle-formula-debugger" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [63282 63395])
-            ("orgtbl-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [63397 63529])
-            ("orgtbl-exp-regexp" variable (:default-value "^\\([-+]?[0-9][0-9.]*\\)[eE]\\([-+]?[0-9]+\\)$") nil [63531 63672])
-            ("org-table-to-lisp" function (:prototype-flag t) nil [63674 64009])
-            ("orgtbl-to-generic" function (:prototype-flag t) nil [64011 66954])
-            ("orgtbl-to-tsv" function (:prototype-flag t) nil [66956 67082])
-            ("orgtbl-to-csv" function (:prototype-flag t) nil [67084 67274])
-            ("orgtbl-to-latex" function (:prototype-flag t) nil [67276 67935])
-            ("orgtbl-to-html" function (:prototype-flag t) nil [67937 68435])
-            ("orgtbl-to-texinfo" function (:prototype-flag t) nil [68437 68975])
-            ("orgtbl-to-orgtbl" function (:prototype-flag t) nil [68977 69553])
-            ("orgtbl-ascii-plot" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [69555 69945])
-            ("org-timer-start" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [70084 70672])
-            ("org-timer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [70674 71251])
-            ("org-timer-change-times-in-region" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [71253 71386])
-            ("org-timer-item" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [71388 71518])
-            ("org-timer-set-timer" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [71520 72358])
-            ("org-release" function (:prototype-flag t) nil [72504 72647])
-            ("org-git-version" function (:prototype-flag t) nil [72649 72792])
-            ("org-odt-data-dir" variable (:default-value "/usr/share/emacs/etc/org") nil [72794 72878])
-            ("org-babel-do-load-languages" function (:prototype-flag t) nil [72992 73124])
-            ("org-babel-load-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [73126 73486])
-            ("org-version" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [73488 73798])
-            ("turn-on-orgtbl" function (:prototype-flag t) nil [73800 73890])
-            ("org-clock-persistence-insinuate" function (:prototype-flag t) nil [73892 73996])
-            ("org-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [73998 74872])
-            ("org-cycle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [74874 77276])
-            ("org-global-cycle" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [77278 77534])
-            ("put" code nil nil [77535 77603])
-            ("orgstruct-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [77605 77917])
-            ("turn-on-orgstruct" function (:prototype-flag t) nil [77919 78015])
-            ("turn-on-orgstruct++" function (:prototype-flag t) nil [78017 78117])
-            ("org-run-like-in-org-mode" function (:prototype-flag t) nil [78119 78400])
-            ("org-store-link" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [78402 79142])
-            ("org-insert-link-global" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [79144 79306])
-            ("org-open-at-point-global" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [79308 79651])
-            ("org-open-link-from-string" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [79653 79801])
-            ("org-switchb" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [79803 80073])
-            ("org-cycle-agenda-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [80075 80315])
-            ("org-submit-bug-report" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [80317 80664])
-            ("org-reload" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [80666 80817])
-            ("org-customize" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [80819 80917])
-            ("org-export-get-backend" function (:prototype-flag t) nil [81035 81199])
-            ("org-export-get-environment" function (:prototype-flag t) nil [81201 81698])
-            ("org-export-as" function (:prototype-flag t) nil [81700 82641])
-            ("org-export-string-as" function (:prototype-flag t) nil [82643 83210])
-            ("org-export-replace-region-by" function (:prototype-flag t) nil [83212 83473])
-            ("org-export-insert-default-template" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [83475 83986])
-            ("org-export-to-buffer" function (:prototype-flag t) nil [83988 85364])
-            ("function-put" code nil nil [85366 85427])
-            ("org-export-to-file" function (:prototype-flag t) nil [85429 86767])
-            ("function-put" code nil nil [86769 86828])
-            ("org-export-dispatch" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [86830 87601])
-            ("org-ascii-export-as-ascii" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [87737 88796])
-            ("org-ascii-export-to-ascii" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [88798 89740])
-            ("org-ascii-publish-to-ascii" function (:prototype-flag t) nil [89742 90037])
-            ("org-ascii-publish-to-latin1" function (:prototype-flag t) nil [90039 90337])
-            ("org-ascii-publish-to-utf8" function (:prototype-flag t) nil [90339 90633])
-            ("org-beamer-mode" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [90772 90894])
-            ("org-beamer-export-as-latex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [90896 91984])
-            ("org-beamer-export-to-latex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [91986 92970])
-            ("org-beamer-export-to-pdf" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [92972 93951])
-            ("org-beamer-select-environment" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [93953 94350])
-            ("org-beamer-publish-to-latex" function (:prototype-flag t) nil [94352 94673])
-            ("org-beamer-publish-to-pdf" function (:prototype-flag t) nil [94675 95003])
-            ("put" code nil nil [95136 95209])
-            ("put" code nil nil [95211 95261])
-            ("put" code nil nil [95263 95319])
-            ("org-html-htmlize-generate-css" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [95321 95933])
-            ("org-html-export-as-html" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [95935 97001])
-            ("org-html-convert-region-to-html" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [97003 97284])
-            ("org-html-export-to-html" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [97286 98235])
-            ("org-html-publish-to-html" function (:prototype-flag t) nil [98237 98528])
-            ("org-icalendar-export-to-ics" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [98676 99488])
-            ("org-icalendar-export-agenda-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [99490 99707])
-            ("org-icalendar-combine-agenda-files" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [99709 100107])
-            ("org-latex-make-preamble" function (:prototype-flag t) nil [100243 100708])
-            ("org-latex-export-as-latex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [100710 101794])
-            ("org-latex-convert-region-to-latex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [101796 102082])
-            ("org-latex-export-to-latex" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [102084 103023])
-            ("org-latex-export-to-pdf" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [103025 104008])
-            ("org-latex-publish-to-latex" function (:prototype-flag t) nil [104010 104305])
-            ("org-latex-publish-to-pdf" function (:prototype-flag t) nil [104307 104610])
-            ("org-md-export-as-markdown" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [104737 105534])
-            ("org-md-convert-region-to-md" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [105536 105818])
-            ("org-md-export-to-markdown" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [105820 106503])
-            ("org-md-publish-to-md" function (:prototype-flag t) nil [106505 106794])
-            ("put" code nil nil [106924 106992])
-            ("org-odt-export-as-odf" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [106994 107464])
-            ("org-odt-export-as-odf-and-open" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [107466 107687])
-            ("org-odt-export-to-odt" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [107689 108521])
-            ("org-odt-convert" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [108523 108942])
-            ("org-org-export-as-org" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [109072 110113])
-            ("org-org-export-to-org" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [110115 111039])
-            ("org-org-publish-to-org" function (:prototype-flag t) nil [111041 111328])
-            ("defalias" code nil nil [111470 111514])
-            ("org-publish" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [111516 111909])
-            ("org-publish-all" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [111911 112220])
-            ("org-publish-current-file" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [112222 112490])
-            ("org-publish-current-project" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [112492 112707])
-            ("org-texinfo-export-to-texinfo" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [112849 113824])
-            ("org-texinfo-export-to-info" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [113826 114894])
-            ("org-texinfo-publish-to-texinfo" function (:prototype-flag t) nil [114896 115199])
-            ("org-texinfo-convert-region-to-texinfo" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [115201 115497])
-            ("org-export-get-backend" function (:prototype-flag t) nil [115608 115772])
-            ("org-export-get-environment" function (:prototype-flag t) nil [115774 116271])
-            ("org-export-as" function (:prototype-flag t) nil [116273 117214])
-            ("org-export-string-as" function (:prototype-flag t) nil [117216 117783])
-            ("org-export-replace-region-by" function (:prototype-flag t) nil [117785 118046])
-            ("org-export-insert-default-template" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [118048 118559])
-            ("org-export-to-buffer" function (:prototype-flag t) nil [118561 119937])
-            ("function-put" code nil nil [119939 120000])
-            ("org-export-to-file" function (:prototype-flag t) nil [120002 121340])
-            ("function-put" code nil nil [121342 121401])
-            ("org-export-dispatch" function
-               (:prototype-flag t
-                :user-visible-flag t)
-                nil [121403 122174])
-            ("org-loaddefs" package nil nil [122185 122208]))          
-      :file "org-loaddefs.el"
-      :pointmax 122360
-      :fsize 122359
-      :lastmodtime '(23537 23334 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-inhibit-highlight-removal" variable nil nil [2833 2875])
-            ("defvar-local" code nil nil [2903 3007])
-            ("cl-lib" include nil nil [3038 3055])
-            ("gnus-sum" include nil nil [3076 3095])
-            ("calendar" include nil nil [3098 3117])
-            ("find-func" include nil nil [3118 3138])
-            ("format-spec" include nil nil [3139 3161])
-            ("or" code nil nil [3163 3558])
-            ("org-macs" include nil nil [3560 3579])
-            ("org-compat" include nil nil [3580 3601])
-            ("org-outline-regexp" variable (:default-value "\\*+ ") nil [3976 4046])
-            ("org-outline-regexp-bol" variable (:default-value "^\\*+ ") nil [4048 4233])
-            ("org-heading-regexp" variable (:default-value "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ 	]*$") nil [4235 4421])
-            ("declare-function" code nil nil [4423 4483])
-            ("declare-function" code nil nil [4484 4555])
-            ("declare-function" code nil nil [4556 4629])
-            ("declare-function" code nil nil [4630 4692])
-            ("declare-function" code nil nil [4693 4768])
-            ("declare-function" code nil nil [4769 4857])
-            ("declare-function" code nil nil [4858 4921])
-            ("declare-function" code nil nil [4922 4993])
-            ("declare-function" code nil nil [4994 5080])
-            ("declare-function" code nil nil [5081 5148])
-            ("declare-function" code nil nil [5149 5216])
-            ("declare-function" code nil nil [5217 5310])
-            ("declare-function" code nil nil [5311 5396])
-            ("declare-function" code nil nil [5397 5490])
-            ("declare-function" code nil nil [5491 5567])
-            ("declare-function" code nil nil [5568 5638])
-            ("declare-function" code nil nil [5639 5707])
-            ("declare-function" code nil nil [5708 5769])
-            ("declare-function" code nil nil [5770 5823])
-            ("declare-function" code nil nil [5824 5883])
-            ("declare-function" code nil nil [5884 5978])
-            ("declare-function" code nil nil [5979 6035])
-            ("declare-function" code nil nil [6036 6100])
-            ("declare-function" code nil nil [6101 6173])
-            ("declare-function" code nil nil [6174 6237])
-            ("declare-function" code nil nil [6238 6310])
-            ("declare-function" code nil nil [6311 6368])
-            ("declare-function" code nil nil [6369 6435])
-            ("declare-function" code nil nil [6436 6521])
-            ("declare-function" code nil nil [6522 6581])
-            ("declare-function" code nil nil [6582 6651])
-            ("declare-function" code nil nil [6652 6746])
-            ("declare-function" code nil nil [6747 6819])
-            ("declare-function" code nil nil [6820 6902])
-            ("declare-function" code nil nil [6903 6972])
-            ("declare-function" code nil nil [6973 7032])
-            ("declare-function" code nil nil [7033 7094])
-            ("declare-function" code nil nil [7095 7147])
-            ("declare-function" code nil nil [7148 7211])
-            ("declare-function" code nil nil [7212 7275])
-            ("declare-function" code nil nil [7276 7344])
-            ("declare-function" code nil nil [7345 7416])
-            ("declare-function" code nil nil [7417 7482])
-            ("declare-function" code nil nil [7483 7532])
-            ("declare-function" code nil nil [7533 7602])
-            ("declare-function" code nil nil [7603 7676])
-            ("declare-function" code nil nil [7677 7732])
-            ("declare-function" code nil nil [7733 7808])
-            ("declare-function" code nil nil [7809 7885])
-            ("declare-function" code nil nil [7886 7947])
-            ("declare-function" code nil nil [7948 8005])
-            ("declare-function" code nil nil [8006 8073])
-            ("declare-function" code nil nil [8074 8141])
-            ("declare-function" code nil nil [8142 8209])
-            ("declare-function" code nil nil [8210 8286])
-            ("declare-function" code nil nil [8287 8349])
-            ("declare-function" code nil nil [8350 8416])
-            ("declare-function" code nil nil [8417 8469])
-            ("declare-function" code nil nil [8470 8529])
-            ("declare-function" code nil nil [8530 8606])
-            ("declare-function" code nil nil [8607 8733])
-            ("declare-function" code nil nil [8734 8792])
-            ("declare-function" code nil nil [8793 8866])
-            ("declare-function" code nil nil [8867 8931])
-            ("declare-function" code nil nil [8932 8990])
-            ("declare-function" code nil nil [8991 9044])
-            ("declare-function" code nil nil [9045 9134])
-            ("declare-function" code nil nil [9135 9223])
-            ("ffap-url-regexp" variable nil nil [9225 9249])
-            ("org-element-paragraph-separate" variable nil nil [9250 9289])
-            ("org-uniquify" function (:arguments ("list")) nil [9291 9435])
-            ("org-get-at-bol" function (:arguments ("property")) nil [9437 9576])
-            ("org-trim" function (:arguments ("s" "keep-lead")) nil [9578 9957])
-            ("org-babel-load-languages" variable nil nil [10022 10055])
-            ("org-babel-do-load-languages" function (:arguments ("sym" "value")) nil [10072 10520])
-            ("declare-function" code nil nil [10522 10608])
-            ("org-babel-load-file" function
-               (:user-visible-flag t
-                :arguments ("file" "compile"))
-                nil [10624 11830])
-            ("org-babel-load-languages" variable (:default-value (quote ((emacs-lisp . t)))) nil [11832 14041])
-            ("org-clone-delete-id" variable nil nil [14072 14340])
-            ("org-check-version" code nil nil [14354 14373])
-            ("org-version" function
-               (:user-visible-flag t
-                :arguments ("here" "full" "message"))
-                nil [14390 15690])
-            ("org-version" variable
-               (:constant-flag t
-                :default-value (org-version))
-                nil [15692 15728])
-            ("org-block-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*#\\+begin_?\\([^ 
-]+\\)\\(\\([^
-]+\\)\\)?
-\\([^�]+?\\)#\\+end_?\\1[ 	]*$")
-                nil [15766 15926])
-            ("org-dblock-start-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*#\\+\\(?:BEGIN\\|begin\\):[ 	]+\\(\\S-+\\)\\([ 	]+\\(.*\\)\\)?")
-                nil [15928 16098])
-            ("org-dblock-end-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*#\\+\\(?:END\\|end\\)\\([: 	

-]\\|$\\)")
-                nil [16100 16219])
-            ("org-clock-string" variable
-               (:constant-flag t
-                :default-value "CLOCK:")
-                nil [16246 16355])
-            ("org-closed-string" variable (:default-value "CLOSED:") nil [16357 16468])
-            ("org-deadline-string" variable (:default-value "DEADLINE:") nil [16470 16736])
-            ("org-scheduled-string" variable (:default-value "SCHEDULED:") nil [16738 17012])
-            ("org-ds-keyword-length" variable
-               (:constant-flag t
-                :default-value (+ 2 (apply (function max) (mapcar (function length) (list org-deadline-string org-scheduled-string org-clock-string org-closed-string)))))
-                nil [17014 17249])
-            ("org-planning-line-re" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*" (regexp-opt (list org-closed-string org-deadline-string org-scheduled-string) t)))
-                nil [17251 17465])
-            ("org-clock-line-re" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*" org-clock-string))
-                nil [17467 17569])
-            ("org-deadline-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-deadline-string))
-                nil [17571 17670])
-            ("org-deadline-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
-                nil [17672 17823])
-            ("org-deadline-time-hour-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-deadline-string " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy 	.]*\\)>"))
-                nil [17825 18038])
-            ("org-deadline-line-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<\\(" org-deadline-string "\\).*"))
-                nil [18040 18182])
-            ("org-scheduled-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-scheduled-string))
-                nil [18184 18286])
-            ("org-scheduled-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>"))
-                nil [18288 18442])
-            ("org-scheduled-time-hour-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-scheduled-string " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy 	.]*\\)>"))
-                nil [18444 18660])
-            ("org-closed-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]"))
-                nil [18662 18811])
-            ("org-keyword-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" (regexp-opt (list org-scheduled-string org-deadline-string org-closed-string org-clock-string) t) " *[[<]\\([^]>]+\\)[]>]"))
-                nil [18813 19069])
-            ("org-keyword-time-not-clock-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\<" (regexp-opt (list org-scheduled-string org-deadline-string org-closed-string) t) " *[[<]\\([^]>]+\\)[]>]"))
-                nil [19071 19316])
-            ("org-maybe-keyword-time-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\<" (regexp-opt (list org-scheduled-string org-deadline-string org-closed-string org-clock-string) t) "\\)?" " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]

->]*?[]>]" "\\|" "<%%([^

->]*>\\)"))
-                nil [19318 19659])
-            ("org-all-time-keywords" variable
-               (:constant-flag t
-                :default-value (mapcar (lambda (w) (substring w 0 -1)) (list org-scheduled-string org-deadline-string org-clock-string org-closed-string)))
-                nil [19661 19851])
-            ("org-drawer-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ 	]*$")
-                nil [19866 20031])
-            ("org-property-start-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:PROPERTIES:[ 	]*$")
-                nil [20033 20163])
-            ("org-property-end-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:END:[ 	]*$")
-                nil [20165 20285])
-            ("org-clock-drawer-start-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:CLOCK:[ 	]*$")
-                nil [20287 20413])
-            ("org-clock-drawer-end-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*:END:[ 	]*$")
-                nil [20415 20536])
-            ("org-property-drawer-re" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*:PROPERTIES:[ 	]*
-" "\\(?:[ 	]*:\\S-+:\\(?: .*\\)?[ 	]*
-\\)*?" "[ 	]*:END:[ 	]*$"))
-                nil [20538 20724])
-            ("org-clock-drawer-re" variable
-               (:constant-flag t
-                :default-value (concat "\\(" org-clock-drawer-start-re "\\)[^�]*?\\(" org-clock-drawer-end-re "\\)
-?"))
-                nil [20726 20889])
-            ("org-heading-keyword-regexp-format" variable
-               (:constant-flag t
-                :default-value "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ 	]*$")
-                nil [20906 21256])
-            ("org-heading-keyword-maybe-regexp-format" variable
-               (:constant-flag t
-                :default-value "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ 	]*$")
-                nil [21258 21605])
-            ("org-archive-tag" variable
-               (:constant-flag t
-                :default-value "ARCHIVE")
-                nil [21607 21798])
-            ("org-comment-string" variable
-               (:constant-flag t
-                :default-value "COMMENT")
-                nil [21820 22023])
-            ("org-latex-regexps" variable
-               (:constant-flag t
-                :default-value (quote (("begin" "^[ 	]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^�]+?\\\\end{\\2}\\)" 1 t) ("$1" "\\([^$]\\|^\\)\\(\\$[^ 	

-,;.$]\\$\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|�\\|'\\|$\\)" 2 nil) ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ 	
-,;.$][^$
-
]*?\\(
-[^$
-
]*?\\)\\{0,2\\}[^ 	
-,.$]\\)\\$\\)\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|�\\|'\\|$\\)" 2 nil) ("\\(" "\\\\([^�]*?\\\\)" 0 nil) ("\\[" "\\\\\\[[^�]*?\\\\\\]" 0 nil) ("$$" "\\$\\$[^�]*?\\$\\$" 0 nil))))
-                nil [22066 22859])
-            ("org-effort-property" variable
-               (:constant-flag t
-                :default-value "Effort")
-                nil [22881 23061])
-            ("org-table-any-line-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*\\(|\\|\\+-[-+]\\)")
-                nil [23075 23183])
-            ("org-table-line-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*|")
-                nil [23185 23263])
-            ("org-table-dataline-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*|[^-]")
-                nil [23265 23351])
-            ("org-table-hline-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*|-")
-                nil [23353 23434])
-            ("org-table1-hline-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*\\+-[-+]")
-                nil [23436 23525])
-            ("org-table-any-border-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*[^|+ 	]")
-                nil [23527 23689])
-            ("org-TBLFM-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*#\\+TBLFM: ")
-                nil [23691 23766])
-            ("org-ts-regexp" variable
-               (:constant-flag t
-                :default-value "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^

->]*?\\)>")
-                nil [23784 23922])
-            ("org-ts-regexp-inactive" variable
-               (:constant-flag t
-                :default-value "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^

->]*?\\)\\]")
-                nil [23924 24086])
-            ("org-ts-regexp-both" variable
-               (:constant-flag t
-                :default-value "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]

->]*?\\)[]>]")
-                nil [24088 24238])
-            ("org-ts-regexp0" variable
-               (:constant-flag t
-                :default-value "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>

- -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)")
-                nil [24240 24590])
-            ("org-ts-regexp1" variable
-               (:constant-flag t
-                :default-value "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>

- -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)")
-                nil [24592 24812])
-            ("org-ts-regexp2" variable
-               (:constant-flag t
-                :default-value (concat "<" org-ts-regexp1 "[^>
-]\\{0,16\\}>"))
-                nil [24814 24945])
-            ("org-ts-regexp3" variable
-               (:constant-flag t
-                :default-value (concat "[[<]" org-ts-regexp1 "[^]>
-]\\{0,16\\}[]>]"))
-                nil [24947 25097])
-            ("org-tr-regexp" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp "--?-?" org-ts-regexp))
-                nil [25099 25220])
-            ("org-tr-regexp-both" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp-both "--?-?" org-ts-regexp-both))
-                nil [25222 25360])
-            ("org-tsr-regexp" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp "\\(--?-?" org-ts-regexp "\\)?"))
-                nil [25362 25513])
-            ("org-tsr-regexp-both" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp-both "\\(--?-?" org-ts-regexp-both "\\)?"))
-                nil [25515 25731])
-            ("org-repeat-re" variable
-               (:constant-flag t
-                :default-value "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>
-]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)")
-                nil [25733 25964])
-            ("org-time-stamp-formats" variable
-               (:constant-flag t
-                :default-value (quote ("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")))
-                nil [25966 26111])
-            ("org" customgroup (:user-visible-flag t) nil [26141 26260])
-            ("org-mode-hook" variable nil nil [26262 26381])
-            ("org-load-hook" variable nil nil [26383 26491])
-            ("org-log-buffer-setup-hook" variable nil nil [26493 26637])
-            ("org-modules" variable nil nil [26639 26659])
-            ("org-modules-loaded" variable nil nil [26677 26750])
-            ("org-load-modules-maybe" function (:arguments ("force")) nil [26752 27066])
-            ("org-set-modules" function (:arguments ("var" "value")) nil [27068 27293])
-            ("org-modules" variable (:default-value (quote (org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail))) nil [27295 32694])
-            ("org-export-registered-backends" variable nil nil [32696 32735])
-            ("declare-function" code nil nil [32750 32827])
-            ("declare-function" code nil nil [32828 32887])
-            ("org-export-backends" variable (:default-value (quote (ascii html icalendar latex odt))) nil [32888 37128])
-            ("eval-after-load" code nil nil [37130 37358])
-            ("org-support-shift-select" variable nil nil [37360 39486])
-            ("org-loop-over-headlines-in-active-region" variable nil nil [39488 40577])
-            ("org-startup" customgroup (:user-visible-flag t) nil [40579 40684])
-            ("org-startup-folded" variable (:default-value t) nil [40686 41437])
-            ("org-startup-truncated" variable (:default-value t) nil [41439 42209])
-            ("org-startup-indented" variable nil nil [42211 42587])
-            ("org-use-sub-superscripts" variable (:default-value t) nil [42589 44021])
-            ("org-startup-with-beamer-mode" variable nil nil [44023 44311])
-            ("org-startup-align-all-tables" variable nil nil [44313 44757])
-            ("org-startup-with-inline-images" variable nil nil [44759 45093])
-            ("org-startup-with-latex-preview" variable nil nil [45095 45469])
-            ("org-insert-mode-line-in-empty-file" variable nil nil [45471 45939])
-            ("org-replace-disputed-keys" variable nil nil [45941 46667])
-            ("org-use-extra-keys" variable nil nil [46669 46954])
-            ("defvaralias" code nil nil [46956 47016])
-            ("org-disputed-keys" variable (:default-value (quote (([(shift up)] . [(meta p)]) ([(shift down)] . [(meta n)]) ([(shift left)] . [(meta -)]) ([(shift right)] . [(meta +)]) ([(control shift right)] . [(meta shift +)]) ([(control shift left)] . [(meta shift -)])))) nil [47018 47702])
-            ("org-key" function (:arguments ("key")) nil [47704 48061])
-            ("org-defkey" function (:arguments ("keymap" "key" "def")) nil [48063 48203])
-            ("org-ellipsis" variable nil nil [48205 48712])
-            ("org-display-table" variable nil nil [48714 48815])
-            ("org-keywords" customgroup (:user-visible-flag t) nil [48817 48906])
-            ("org-closed-keep-when-no-todo" variable nil nil [48908 49134])
-            ("org-structure" customgroup (:user-visible-flag t) nil [49136 49260])
-            ("org-reveal-location" customgroup (:user-visible-flag t) nil [49262 49410])
-            ("org-show-context-detail" variable (:default-value (quote ((agenda . local) (bookmark-jump . lineage) (isearch . lineage) (default . ancestors)))) nil [49412 52267])
-            ("org-indirect-buffer-display" variable (:default-value (quote other-window)) nil [52269 53163])
-            ("org-use-speed-commands" variable nil nil [53165 53753])
-            ("org-speed-commands-user" variable nil nil [53755 54716])
-            ("org-bookmark-names-plist" variable (:default-value (quote (:last-capture "org-capture-last-stored" :last-refile "org-refile-last-stored" :last-capture-marker "org-capture-last-stored-marker"))) nil [54718 55276])
-            ("org-cycle" customgroup (:user-visible-flag t) nil [55278 55400])
-            ("org-cycle-skip-children-state-if-no-children" variable (:default-value t) nil [55402 55567])
-            ("org-cycle-max-level" variable nil nil [55569 56225])
-            ("org-hide-block-startup" variable nil nil [56227 56476])
-            ("org-cycle-global-at-bob" variable nil nil [56478 57076])
-            ("org-cycle-level-after-item/entry-creation" variable (:default-value t) nil [57078 57797])
-            ("org-cycle-emulate-tab" variable (:default-value t) nil [57799 58505])
-            ("org-cycle-separator-lines" variable (:default-value 2) nil [58507 59269])
-            ("put" code nil nil [59270 59333])
-            ("org-pre-cycle-hook" variable nil nil [59335 59804])
-            ("org-cycle-hook" variable (:default-value (quote (org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-show-empty-lines org-optimize-window-after-visibility-change))) nil [59806 60487])
-            ("org-edit-structure" customgroup (:user-visible-flag t) nil [60489 60628])
-            ("org-odd-levels-only" variable nil nil [60630 61224])
-            ("org-adapt-indentation" variable (:default-value t) nil [61226 62308])
-            ("org-special-ctrl-a/e" variable nil nil [62310 63930])
-            ("defvaralias" code nil nil [63931 63986])
-            ("org-special-ctrl-k" variable nil nil [63988 64507])
-            ("org-ctrl-k-protect-subtree" variable nil nil [64509 65122])
-            ("org-special-ctrl-o" variable (:default-value t) nil [65124 65256])
-            ("org-catch-invisible-edits" variable nil nil [65258 66423])
-            ("org-yank-folded-subtrees" variable (:default-value t) nil [66425 66847])
-            ("org-yank-adjusted-subtrees" variable nil nil [66849 67097])
-            ("org-M-RET-may-split-line" variable (:default-value (quote ((default . t)))) nil [67099 67874])
-            ("org-insert-heading-respect-content" variable nil nil [67877 68281])
-            ("org-blank-before-new-entry" variable (:default-value (quote ((heading . auto) (plain-list-item . auto)))) nil [68283 69010])
-            ("org-insert-heading-hook" variable nil nil [69012 69144])
-            ("org-enable-fixed-width-editor" variable (:default-value t) nil [69146 69420])
-            ("org-goto-auto-isearch" variable (:default-value t) nil [69422 69874])
-            ("org-sparse-trees" customgroup (:user-visible-flag t) nil [69876 70006])
-            ("org-highlight-sparse-tree-matches" variable (:default-value t) nil [70008 70266])
-            ("org-remove-highlights-with-change" variable (:default-value t) nil [70268 70737])
-            ("org-occur-case-fold-search" variable (:default-value t) nil [70739 71151])
-            ("org-occur-hook" variable (:default-value (quote (org-first-headline-recenter))) nil [71153 71407])
-            ("org-imenu-and-speedbar" customgroup (:user-visible-flag t) nil [71409 71557])
-            ("org-imenu-depth" variable (:default-value 2) nil [71559 71734])
-            ("org-table" customgroup (:user-visible-flag t) nil [71736 71836])
-            ("org-self-insert-cluster-for-undo" variable nil nil [71838 72173])
-            ("org-table-tab-recognizes-table.el" variable (:default-value t) nil [72175 72435])
-            ("org-link" customgroup (:user-visible-flag t) nil [72437 72534])
-            ("defvar-local" code nil nil [72536 72696])
-            ("org-link-parameters" variable (:default-value (quote (("doi" :follow org--open-doi-link) ("elisp" :follow org--open-elisp-link) ("file" :complete org-file-complete-link) ("ftp" :follow (lambda (path) (browse-url (concat "ftp:" path)))) ("help" :follow org--open-help-link) ("http" :follow (lambda (path) (browse-url (concat "http:" path)))) ("https" :follow (lambda (path) (browse-url (concat "https:" path)))) ("mailto" :follow (lambda (path) (browse-url (concat "mailto:" path)))) ("news" :follow (lambda (path) (browse-url (concat "news:" path)))) ("shell" :follow org--open-shell-link)))) nil [72698 74726])
-            ("org-link-get-parameter" function (:arguments ("type" "key")) nil [74728 74913])
-            ("org-link-set-parameters" function (:arguments ("type" "parameters")) nil [74915 75294])
-            ("org-link-types" function nil nil [75296 75397])
-            ("org-link-abbrev-alist" variable nil nil [75399 76618])
-            ("org-descriptive-links" variable (:default-value t) nil [76620 77075])
-            ("org-link-file-path-type" variable (:default-value (quote adaptive)) nil [77077 77702])
-            ("defvaralias" code nil nil [77704 77758])
-            ("org-highlight-links" variable (:default-value (quote (bracket angle plain radio tag date footnote))) nil [77759 79162])
-            ("org-make-link-description-function" variable nil nil [79164 79524])
-            ("org-link-store" customgroup (:user-visible-flag t) nil [79526 79648])
-            ("org-url-hexify-p" variable (:default-value t) nil [79650 79791])
-            ("org-email-link-description-format" variable (:default-value "Email %c: %.30s") nil [79793 80594])
-            ("org-from-is-user-regexp" variable (:default-value (let (r1 r2) (when (and user-mail-address (not (string= user-mail-address ""))) (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>"))) (when (and user-full-name (not (string= user-full-name ""))) (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>"))) (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))) nil [80596 81156])
-            ("org-context-in-file-links" variable (:default-value t) nil [81158 81839])
-            ("org-keep-stored-link-after-insertion" variable nil nil [81841 82444])
-            ("org-link-follow" customgroup (:user-visible-flag t) nil [82446 82572])
-            ("org-link-translation-function" variable nil nil [82574 83282])
-            ("org-follow-link-hook" variable nil nil [83284 83413])
-            ("org-tab-follows-link" variable nil nil [83415 83675])
-            ("org-return-follows-link" variable nil nil [83677 83867])
-            ("org-mouse-1-follows-link" variable (:default-value (if (boundp (quote mouse-1-click-follows-link)) mouse-1-click-follows-link t)) nil [83869 84422])
-            ("org-mark-ring-length" variable (:default-value 4) nil [84424 84624])
-            ("org-link-search-must-match-exact-headline" variable (:default-value (quote query-to-create)) nil [84626 85267])
-            ("org-link-frame-setup" variable (:default-value (quote ((vm . vm-visit-folder-other-frame) (vm-imap . vm-visit-imap-folder-other-frame) (gnus . org-gnus-no-new-news) (file . find-file-other-window) (wl . wl-other-frame)))) nil [85269 86842])
-            ("org-display-internal-link-with-indirect-buffer" variable nil nil [86844 87435])
-            ("org-open-non-existing-files" variable nil nil [87437 87806])
-            ("org-open-directory-means-index-dot-org" variable nil nil [87808 88076])
-            ("org-confirm-shell-link-function" variable (:default-value (quote yes-or-no-p)) nil [88078 88787])
-            ("put" code nil nil [88788 88905])
-            ("org-confirm-shell-link-not-regexp" variable nil nil [88907 89066])
-            ("org-confirm-elisp-link-function" variable (:default-value (quote yes-or-no-p)) nil [89068 89802])
-            ("put" code nil nil [89803 89920])
-            ("org-confirm-elisp-link-not-regexp" variable nil nil [89922 90081])
-            ("org-file-apps-defaults-gnu" variable
-               (:constant-flag t
-                :default-value (quote ((remote . emacs) (system . mailcap) (t . mailcap))))
-                nil [90083 90265])
-            ("org-file-apps-defaults-macosx" variable
-               (:constant-flag t
-                :default-value (quote ((remote . emacs) (system . "open %s") ("ps.gz" . "gv %s") ("eps.gz" . "gv %s") ("dvi" . "xdvi %s") ("fig" . "xfig %s") (t . "open %s"))))
-                nil [90267 90681])
-            ("org-file-apps-defaults-windowsnt" variable
-               (:constant-flag t
-                :default-value (list (quote (remote . emacs)) (cons (quote system) (lambda (file _path) (with-no-warnings (w32-shell-execute "open" file)))) (cons t (lambda (file _path) (with-no-warnings (w32-shell-execute "open" file))))))
-                nil [90683 91051])
-            ("org-file-apps" variable (:default-value (quote ((auto-mode . emacs) ("\\.mm\\'" . default) ("\\.x?html?\\'" . default) ("\\.pdf\\'" . default)))) nil [91053 95977])
-            ("org-doi-server-url" variable (:default-value "http://dx.doi.org/") nil [95979 96121])
-            ("org-refile" customgroup (:user-visible-flag t) nil [96123 96235])
-            ("org-directory" variable (:default-value "~/org") nil [96237 96824])
-            ("org-default-notes-file" variable (:default-value (convert-standard-filename "~/.notes")) nil [96826 97088])
-            ("org-goto-interface" variable (:default-value (quote outline)) nil [97090 97763])
-            ("org-goto-max-level" variable (:default-value 5) nil [97765 97907])
-            ("org-reverse-note-order" variable nil nil [97909 98392])
-            ("org-log-refile" variable nil nil [98394 99205])
-            ("org-refile-targets" variable nil nil [99207 101531])
-            ("org-refile-target-verify-function" variable nil nil [101533 102219])
-            ("org-refile-use-cache" variable nil nil [102221 102850])
-            ("org-refile-use-outline-path" variable nil nil [102852 103558])
-            ("org-outline-path-complete-in-steps" variable (:default-value t) nil [103560 104153])
-            ("org-refile-allow-creating-parent-nodes" variable nil nil [104155 104876])
-            ("org-refile-active-region-within-subtree" variable nil nil [104878 105282])
-            ("org-todo" customgroup (:user-visible-flag t) nil [105284 105386])
-            ("org-progress" customgroup (:user-visible-flag t) nil [105388 105509])
-            ("org-todo-interpretation-widgets" variable (:default-value (quote ((:tag "Sequence (cycling hits every state)" sequence) (:tag "Type     (cycling directly to DONE)" type)))) nil [105511 105788])
-            ("org-todo-keywords" variable (:default-value (quote ((sequence "TODO" "DONE")))) nil [105790 108604])
-            ("defvar-local" code nil nil [108606 108695])
-            ("org-todo-keywords-for-agenda" variable nil nil [108696 108737])
-            ("org-done-keywords-for-agenda" variable nil nil [108738 108779])
-            ("org-todo-keyword-alist-for-agenda" variable nil nil [108780 108826])
-            ("org-tag-alist-for-agenda" variable nil nil [108827 108909])
-            ("org-tag-groups-alist-for-agenda" variable nil nil [108910 109014])
-            ("defvar-local" code nil nil [109015 109054])
-            ("org-agenda-contributing-files" variable nil nil [109055 109097])
-            ("defvar-local" code nil nil [109098 109301])
-            ("defvar-local" code nil nil [109302 109342])
-            ("defvar-local" code nil nil [109343 109379])
-            ("defvar-local" code nil nil [109380 109413])
-            ("defvar-local" code nil nil [109414 109446])
-            ("defvar-local" code nil nil [109447 109485])
-            ("defvar-local" code nil nil [109486 109523])
-            ("defvar-local" code nil nil [109524 109561])
-            ("defvar-local" code nil nil [109562 109601])
-            ("org-todo-interpretation" variable (:default-value (quote sequence)) nil [109603 109998])
-            ("org-use-fast-todo-selection" variable (:default-value t) nil [110000 110983])
-            ("org-provide-todo-statistics" variable (:default-value t) nil [110985 111977])
-            ("org-hierarchical-todo-statistics" variable (:default-value t) nil [111979 112366])
-            ("org-after-todo-state-change-hook" variable nil nil [112368 112615])
-            ("org-blocker-hook" variable nil nil [112617 112965])
-            ("org-trigger-hook" variable nil nil [112967 113567])
-            ("org-enforce-todo-dependencies" variable nil nil [113569 114201])
-            ("org-enforce-todo-checkbox-dependencies" variable nil nil [114203 114962])
-            ("org-treat-insert-todo-heading-as-state-change" variable nil nil [114964 115327])
-            ("org-treat-S-cursor-todo-selection-as-state-change" variable (:default-value t) nil [115329 115658])
-            ("org-todo-state-tags-triggers" variable nil nil [115660 116376])
-            ("org-log-done" variable nil nil [116378 117103])
-            ("cond" code nil nil [117144 117283])
-            ("org-log-reschedule" variable nil nil [117285 117912])
-            ("org-log-redeadline" variable nil nil [117914 118656])
-            ("org-log-note-clock-out" variable nil nil [118658 118991])
-            ("org-log-done-with-time" variable (:default-value t) nil [118993 119179])
-            ("org-log-note-headings" variable (:default-value (quote ((done . "CLOSING NOTE %t") (state . "State %-12s from %-12S %t") (note . "Note taken on %t") (reschedule . "Rescheduled from %S on %t") (delschedule . "Not scheduled, was %S on %t") (redeadline . "New deadline from %S on %t") (deldeadline . "Removed deadline, was %S on %t") (refile . "Refiled on %t") (clock-out . "")))) nil [119181 121076])
-            ("unless" code nil nil [121078 121167])
-            ("org-log-into-drawer" variable nil nil [121169 122204])
-            ("defvaralias" code nil nil [122206 122273])
-            ("org-log-into-drawer" function nil nil [122275 122770])
-            ("org-log-state-notes-insert-after-drawers" variable nil nil [122772 123233])
-            ("org-log-states-order-reversed" variable (:default-value t) nil [123235 123603])
-            ("org-todo-repeat-to-state" variable nil nil [123605 124042])
-            ("org-log-repeat" variable (:default-value (quote time)) nil [124044 125090])
-            ("org-priorities" customgroup (:user-visible-flag t) nil [125093 125193])
-            ("org-enable-priority-commands" variable (:default-value t) nil [125195 125417])
-            ("org-highest-priority" variable (:default-value 65) nil [125419 125629])
-            ("org-lowest-priority" variable (:default-value 67) nil [125631 125839])
-            ("org-default-priority" variable (:default-value 66) nil [125841 126520])
-            ("org-priority-start-cycle-with-default" variable (:default-value t) nil [126522 126851])
-            ("org-get-priority-function" variable nil nil [126853 127354])
-            ("org-time" customgroup (:user-visible-flag t) nil [127356 127473])
-            ("org-time-stamp-rounding-minutes" variable (:default-value (quote (0 5))) nil [127475 128534])
-            ("when" code nil nil [128586 128755])
-            ("org-display-custom-times" variable nil nil [128757 129082])
-            ("make-variable-buffer-local" code nil nil [129083 129137])
-            ("org-time-stamp-custom-formats" variable (:default-value (quote ("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>"))) nil [129139 129621])
-            ("org-time-stamp-format" function (:arguments ("long" "inactive")) nil [129623 129873])
-            ("org-deadline-warning-days" variable (:default-value 14) nil [129875 130333])
-            ("org-scheduled-delay-days" variable nil nil [130335 130889])
-            ("org-read-date-prefer-future" variable (:default-value t) nil [130891 131972])
-            ("org-agenda-jump-prefer-future" variable (:default-value (quote org-read-date-prefer-future)) nil [131974 132518])
-            ("org-read-date-force-compatible-dates" variable (:default-value t) nil [132520 133936])
-            ("org-read-date-display-live" variable (:default-value t) nil [133938 134139])
-            ("org-read-date-popup-calendar" variable (:default-value t) nil [134141 134476])
-            ("defvaralias" code nil nil [134477 134558])
-            ("org-extend-today-until" variable nil nil [134560 135299])
-            ("org-use-effective-time" variable nil nil [135301 135636])
-            ("org-use-last-clock-out-time-as-effective-time" variable nil nil [135638 135966])
-            ("org-edit-timestamp-down-means-later" variable nil nil [135968 136150])
-            ("org-calendar-follow-timestamp-change" variable (:default-value t) nil [136152 136406])
-            ("org-tags" customgroup (:user-visible-flag t) nil [136408 136504])
-            ("org-tag-alist" variable nil nil [136506 137763])
-            ("org-tag-persistent-alist" variable nil nil [137765 138994])
-            ("org-complete-tags-always-offer-all-agenda-tags" variable nil nil [138996 139515])
-            ("org-file-tags" variable nil nil [139517 139750])
-            ("org-use-fast-tag-selection" variable (:default-value (quote auto)) nil [139752 140411])
-            ("org-fast-tag-selection-single-key" variable nil nil [140413 140896])
-            ("org-fast-tag-selection-include-todo" variable nil nil [140898 141083])
-            ("org-tags-column" variable (:default-value -77) nil [141085 141492])
-            ("org-auto-align-tags" variable (:default-value t) nil [141494 141825])
-            ("org-use-tag-inheritance" variable (:default-value t) nil [141827 142812])
-            ("org-tags-exclude-from-inheritance" variable nil nil [142814 143145])
-            ("org-tag-inherit-p" function (:arguments ("tag")) nil [143147 143596])
-            ("org-tags-match-list-sublevels" variable (:default-value t) nil [143598 144581])
-            ("org-tags-sort-function" variable nil nil [144583 144885])
-            ("org-tags-history" variable nil nil [144887 144958])
-            ("org-last-tags-completion-table" variable nil nil [144959 145047])
-            ("org-after-tags-change-hook" variable nil nil [145048 145147])
-            ("org-properties" customgroup (:user-visible-flag t) nil [145149 145263])
-            ("org-property-format" variable (:default-value "%-10s %s") nil [145265 145593])
-            ("org-properties-postprocess-alist" variable nil nil [145595 146564])
-            ("org-use-property-inheritance" variable nil nil [146566 147872])
-            ("org-property-inherit-p" function (:arguments ("property")) nil [147874 148344])
-            ("org-columns-default-format" variable (:default-value "%25ITEM %TODO %3PRIORITY %TAGS") nil [148346 148619])
-            ("org-columns-ellipses" variable (:default-value "..") nil [148621 149129])
-            ("org-global-properties-fixed" variable
-               (:constant-flag t
-                :default-value (quote (("VISIBILITY_ALL" . "folded children content all") ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))))
-                nil [149131 149704])
-            ("org-global-properties" variable nil nil [149706 150243])
-            ("defvar-local" code nil nil [150245 150432])
-            ("org-agenda" customgroup (:user-visible-flag t) nil [150434 150542])
-            ("defvar-local" code nil nil [150544 150876])
-            ("put" code nil nil [150877 150959])
-            ("org-agenda-files" variable nil nil [150961 151744])
-            ("org-agenda-file-regexp" variable (:default-value "\\`[^.].*\\.org\\'") nil [151746 152081])
-            ("org-agenda-text-search-extra-files" variable nil nil [152083 152907])
-            ("defvaralias" code nil nil [152909 152996])
-            ("org-agenda-skip-unavailable-files" variable nil nil [152998 153223])
-            ("org-calendar-to-agenda-key" variable (:default-value [99]) nil [153225 153566])
-            ("org-calendar-insert-diary-entry-key" variable (:default-value [105]) nil [153568 154092])
-            ("org-agenda-diary-file" variable (:default-value (quote diary-file)) nil [154094 154570])
-            ("eval-after-load" code nil nil [154572 154920])
-            ("org-latex" customgroup (:user-visible-flag t) nil [154922 155031])
-            ("org-format-latex-options" variable (:default-value (quote (:foreground default :background default :scale 1.0 :html-foreground "Black" :html-background "Transparent" :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\[")))) nil [155033 156482])
-            ("org-format-latex-signal-error" variable (:default-value t) nil [156484 156696])
-            ("org-latex-to-mathml-jar-file" variable nil nil [156698 157079])
-            ("org-latex-to-mathml-convert-command" variable nil nil [157081 157874])
-            ("org-preview-latex-default-process" variable (:default-value (quote dvipng)) nil [157876 158191])
-            ("org-preview-latex-process-alist" variable (:default-value (quote ((dvipng :programs ("latex" "dvipng") :description "dvi > png" :message "you need to install the programs: latex and dvipng." :image-input-type "dvi" :image-output-type "png" :image-size-adjust (1.0 . 1.0) :latex-compiler ("latex -interaction nonstopmode -output-directory %o %f") :image-converter ("dvipng -fg %F -bg %B -D %D -T tight -o %O %f")) (dvisvgm :programs ("latex" "dvisvgm") :description "dvi > svg" :message "you need to install the programs: latex and dvisvgm." :use-xcolor t :image-input-type "dvi" :image-output-type "svg" :image-size-adjust (1.7 . 1.5) :latex-compiler ("latex -interaction nonstopmode -output-directory %o %f") :image-converter ("dvisvgm %f -n -b min -c %S -o %O")) (imagemagick :programs ("latex" "convert") :description "pdf > png" :message "you need to install the programs: latex and imagemagick." :use-xcolor t :image-input-type "pdf" :image-output-type "png" :image-size-adjust (1.0 . 1.0) :latex-compiler ("pdflatex -interaction nonstopmode -output-directory %o %f") :image-converter ("convert -density %D -trim -antialias %f -quality 100 %O"))))) nil [158193 162678])
-            ("org-preview-latex-image-directory" variable (:default-value "ltximg/") nil [162680 163013])
-            ("org-format-latex-mathml-available-p" function nil nil [163015 163516])
-            ("org-format-latex-header" variable (:default-value "\\documentclass{article}
-\\usepackage[usenames]{color}
-[PACKAGES]
-[DEFAULT-PACKAGES]
-\\pagestyle{empty}             % do not remove
-% The settings below are copied from fullpage.sty
-\\setlength{\\textwidth}{\\paperwidth}
-\\addtolength{\\textwidth}{-3cm}
-\\setlength{\\oddsidemargin}{1.5cm}
-\\addtolength{\\oddsidemargin}{-2.54cm}
-\\setlength{\\evensidemargin}{\\oddsidemargin}
-\\setlength{\\textheight}{\\paperheight}
-\\addtolength{\\textheight}{-\\headheight}
-\\addtolength{\\textheight}{-\\headsep}
-\\addtolength{\\textheight}{-\\footskip}
-\\addtolength{\\textheight}{-3cm}
-\\setlength{\\topmargin}{1.5cm}
-\\addtolength{\\topmargin}{-2.54cm}") nil [163518 164580])
-            ("org-set-packages-alist" function (:arguments ("var" "val")) nil [164582 164822])
-            ("org-get-packages-alist" function (:arguments ("var")) nil [164824 165058])
-            ("org-latex-default-packages-alist" variable (:default-value (quote (("AUTO" "inputenc" t ("pdflatex")) ("T1" "fontenc" t ("pdflatex")) ("" "graphicx" t) ("" "grffile" t) ("" "longtable" nil) ("" "wrapfig" nil) ("" "rotating" nil) ("normalem" "ulem" t) ("" "amsmath" t) ("" "textcomp" t) ("" "amssymb" t) ("" "capt-of" nil) ("" "hyperref" nil)))) nil [165060 167585])
-            ("org-latex-packages-alist" variable nil nil [167587 168609])
-            ("org-appearance" customgroup (:user-visible-flag t) nil [168611 168716])
-            ("org-level-color-stars-only" variable nil nil [168718 169009])
-            ("org-hide-leading-stars" variable nil nil [169011 169596])
-            ("org-hidden-keywords" variable nil nil [169598 170040])
-            ("org-custom-properties" variable nil nil [170042 170375])
-            ("org-fontify-done-headline" variable nil nil [170377 170718])
-            ("org-fontify-emphasized-text" variable (:default-value t) nil [170720 170936])
-            ("org-fontify-whole-heading-line" variable nil nil [170938 171155])
-            ("org-highlight-latex-and-related" variable nil nil [171157 171816])
-            ("org-hide-emphasis-markers" variable nil nil [171818 171972])
-            ("org-hide-macro-markers" variable nil nil [171974 172127])
-            ("org-pretty-entities" variable nil nil [172129 172325])
-            ("org-pretty-entities-include-sub-superscripts" variable (:default-value t) nil [172327 172524])
-            ("org-emph-re" variable nil nil [172526 173095])
-            ("org-verbatim-re" variable nil nil [173097 173176])
-            ("org-emphasis-regexp-components" variable nil nil [173178 173217])
-            ("org-emphasis-alist" variable nil nil [173239 173266])
-            ("org-set-emph-re" function (:arguments ("var" "val")) nil [173288 174015])
-            ("org-emphasis-regexp-components" variable (:default-value (quote ("- 	('\"{" "- 	.,:!?;'\")}\\[" " 	

-" "." 1))) nil [174203 175189])
-            ("org-emphasis-alist" variable (:default-value (quote (("*" bold) ("/" italic) ("_" underline) ("=" org-verbatim verbatim) ("~" org-code verbatim) ("+" (:strike-through t))))) nil [175191 175996])
-            ("org-protecting-blocks" variable (:default-value (quote ("src" "example" "export"))) nil [175998 176171])
-            ("mark-active" variable nil nil [176266 176286])
-            ("declare-function" code nil nil [176308 176380])
-            ("declare-function" code nil nil [176381 176437])
-            ("declare-function" code nil nil [176438 176493])
-            ("declare-function" code nil nil [176494 176546])
-            ("declare-function" code nil nil [176547 176609])
-            ("declare-function" code nil nil [176610 176670])
-            ("declare-function" code nil nil [176671 176729])
-            ("declare-function" code nil nil [176730 176777])
-            ("declare-function" code nil nil [176778 176872])
-            ("declare-function" code nil nil [176873 177006])
-            ("declare-function" code nil nil [177007 177121])
-            ("declare-function" code nil nil [177122 177238])
-            ("declare-function" code nil nil [177239 177307])
-            ("declare-function" code nil nil [177308 177440])
-            ("declare-function" code nil nil [177441 177497])
-            ("declare-function" code nil nil [177498 177567])
-            ("declare-function" code nil nil [177568 177659])
-            ("declare-function" code nil nil [177660 177740])
-            ("declare-function" code nil nil [177741 177791])
-            ("declare-function" code nil nil [177792 177863])
-            ("declare-function" code nil nil [177864 177940])
-            ("declare-function" code nil nil [177941 178004])
-            ("declare-function" code nil nil [178005 178073])
-            ("declare-function" code nil nil [178074 178136])
-            ("declare-function" code nil nil [178137 178200])
-            ("declare-function" code nil nil [178201 178271])
-            ("declare-function" code nil nil [178272 178338])
-            ("declare-function" code nil nil [178339 178397])
-            ("declare-function" code nil nil [178398 178469])
-            ("align-mode-rules-list" variable nil nil [178471 178501])
-            ("calc-embedded-close-formula" variable nil nil [178502 178538])
-            ("calc-embedded-open-formula" variable nil nil [178539 178574])
-            ("calc-embedded-open-mode" variable nil nil [178575 178607])
-            ("font-lock-unfontify-region-function" variable nil nil [178608 178652])
-            ("iswitchb-temp-buflist" variable nil nil [178653 178683])
-            ("org-agenda-tags-todo-honor-ignore-options" variable nil nil [178684 178734])
-            ("remember-data-file" variable nil nil [178735 178762])
-            ("texmathp-why" variable nil nil [178763 178784])
-            ("turn-on-orgtbl" function nil nil [178801 178910])
-            ("org-at-table-p" function (:arguments ("table-type")) nil [178912 179325])
-            ("org-at-table.el-p" function nil nil [179327 179594])
-            ("org-at-table-hline-p" function nil nil [179596 179758])
-            ("org-table-map-tables" function (:arguments ("function" "quietly")) nil [179760 180529])
-            ("declare-function" code nil nil [180531 180612])
-            ("declare-function" code nil nil [180613 180673])
-            ("declare-function" code nil nil [180674 180777])
-            ("org-at-TBLFM-p" function (:arguments ("pos")) nil [180779 181070])
-            ("org-clock-start-time" variable nil nil [181072 181101])
-            ("org-clock-marker" variable (:default-value (make-marker)) nil [181102 181181])
-            ("org-clock-hd-marker" variable (:default-value (make-marker)) nil [181182 181291])
-            ("org-clock-heading" variable nil nil [181292 181365])
-            ("org-clock-is-active" function nil nil [181366 181526])
-            ("org-check-running-clock" function nil nil [181528 181941])
-            ("org-clocktable-try-shift" function (:arguments ("dir" "n")) nil [181943 182156])
-            ("org-clock-persistence-insinuate" function nil nil [182173 182368])
-            ("org-archive" customgroup (:user-visible-flag t) nil [182370 182487])
-            ("org-archive-location" variable (:default-value "%s_archive::") nil [182489 184898])
-            ("org-agenda-skip-archived-trees" variable (:default-value t) nil [184900 185296])
-            ("org-columns-skip-archived-trees" variable (:default-value t) nil [185298 185474])
-            ("org-cycle-open-archived-trees" variable nil nil [185476 185841])
-            ("org-sparse-tree-open-archived-trees" variable nil nil [185843 186129])
-            ("org-sparse-tree-default-date-type" variable nil nil [186131 186961])
-            ("org-cycle-hide-archived-subtrees" function (:arguments ("state")) nil [186963 187713])
-            ("org-force-cycle-archived" function (:user-visible-flag t) nil [187715 187921])
-            ("org-hide-archived-subtrees" function (:arguments ("beg" "end")) nil [187923 188418])
-            ("declare-function" code nil nil [188420 188474])
-            ("declare-function" code nil nil [188475 188538])
-            ("org-flag-subtree" function (:arguments ("flag")) nil [188539 188732])
-            ("defalias" code nil nil [188734 188797])
-            ("declare-function" code nil nil [188828 188900])
-            ("declare-function" code nil nil [188901 188964])
-            ("declare-function" code nil nil [188986 189031])
-            ("declare-function" code nil nil [189032 189081])
-            ("declare-function" code nil nil [189082 189131])
-            ("org-id-track-globally" variable nil nil [189132 189162])
-            ("defvar-local" code nil nil [189234 189437])
-            ("defvar-local" code nil nil [189439 189666])
-            ("defvar-local" code nil nil [189668 189885])
-            ("defvar-local" code nil nil [189887 190119])
-            ("defvar-local" code nil nil [190121 190459])
-            ("defvar-local" code nil nil [190461 190733])
-            ("defvar-local" code nil nil [190735 190895])
-            ("org-plain-time-of-day-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\<[012]?[0-9]" "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)" "\\(--?" "\\(\\<[012]?[0-9]" "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)" "\\)?"))
-                nil [190897 191429])
-            ("org-plain-time-extension-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\<[012]?[0-9]" "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)" "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?"))
-                nil [191431 191879])
-            ("org-stamp-time-of-day-regexp" variable
-               (:constant-flag t
-                :default-value (concat "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)" "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^
-
>]*?\\)>" "\\(--?" "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?"))
-                nil [191881 192428])
-            ("org-startup-options" variable
-               (:constant-flag t
-                :default-value (quote (("fold" org-startup-folded t) ("overview" org-startup-folded t) ("nofold" org-startup-folded nil) ("showall" org-startup-folded nil) ("showeverything" org-startup-folded showeverything) ("content" org-startup-folded content) ("indent" org-startup-indented t) ("noindent" org-startup-indented nil) ("hidestars" org-hide-leading-stars t) ("showstars" org-hide-leading-stars nil) ("odd" org-odd-levels-only t) ("oddeven" org-odd-levels-only nil) ("align" org-startup-align-all-tables t) ("noalign" org-startup-align-all-tables nil) ("inlineimages" org-startup-with-inline-images t) ("noinlineimages" org-startup-with-inline-images nil) ("latexpreview" org-startup-with-latex-preview t) ("nolatexpreview" org-startup-with-latex-preview nil) ("customtime" org-display-custom-times t) ("logdone" org-log-done time) ("lognotedone" org-log-done note) ("nologdone" org-log-done nil) ("lognoteclock-out" org-log-note-clock-out t) ("nolognoteclock-out" org-log-note-clock-out nil) ("logrepeat" org-log-repeat state) ("lognoterepeat" org-log-repeat note) ("logdrawer" org-log-into-drawer t) ("nologdrawer" org-log-into-drawer nil) ("logstatesreversed" org-log-states-order-reversed t) ("nologstatesreversed" org-log-states-order-reversed nil) ("nologrepeat" org-log-repeat nil) ("logreschedule" org-log-reschedule time) ("lognotereschedule" org-log-reschedule note) ("nologreschedule" org-log-reschedule nil) ("logredeadline" org-log-redeadline time) ("lognoteredeadline" org-log-redeadline note) ("nologredeadline" org-log-redeadline nil) ("logrefile" org-log-refile time) ("lognoterefile" org-log-refile note) ("nologrefile" org-log-refile nil) ("fninline" org-footnote-define-inline t) ("nofninline" org-footnote-define-inline nil) ("fnlocal" org-footnote-section nil) ("fnauto" org-footnote-auto-label t) ("fnprompt" org-footnote-auto-label nil) ("fnconfirm" org-footnote-auto-label confirm) ("fnplain" org-footnote-auto-label plain) ("fnadjust" org-footnote-auto-adjust t) ("nofnadjust" org-footnote-auto-adjust nil) ("constcgs" constants-unit-system cgs) ("constSI" constants-unit-system SI) ("noptag" org-tag-persistent-alist nil) ("hideblocks" org-hide-block-startup t) ("nohideblocks" org-hide-block-startup nil) ("beamer" org-startup-with-beamer-mode t) ("entitiespretty" org-pretty-entities t) ("entitiesplain" org-pretty-entities nil))))
-                nil [192430 195351])
-            ("org-group-tags" variable (:default-value t) nil [195353 195547])
-            ("org-inhibit-startup" variable nil nil [195549 195581])
-            ("org-toggle-tags-groups" function (:user-visible-flag t) nil [195618 196101])
-            ("org--tag-add-to-alist" function (:arguments ("alist1" "alist2")) nil [196103 197162])
-            ("org-set-regexps-and-options" function (:arguments ("tags-only")) nil [197164 203587])
-            ("org--setup-collect-keywords" function (:arguments ("regexp" "files" "alist")) nil [203589 207866])
-            ("org-tag-string-to-alist" function (:arguments ("s")) nil [207868 209218])
-            ("org-tag-alist-to-string" function (:arguments ("alist" "skip-key")) nil [209220 210039])
-            ("org-tag-alist-to-groups" function (:arguments ("alist")) nil [210041 210907])
-            ("org--file-cache" variable (:default-value (make-hash-table :test (function equal))) nil [210909 211092])
-            ("org-reset-file-cache" function nil nil [211094 211217])
-            ("org-file-url-p" function (:arguments ("file")) nil [211219 211336])
-            ("org-file-contents" function (:arguments ("file" "noerror" "nocache")) nil [211338 212873])
-            ("org-extract-log-state-settings" function (:arguments ("x")) nil [212875 213403])
-            ("org-remove-keyword-keys" function (:arguments ("list")) nil [213405 213625])
-            ("org-assign-fast-keys" function (:arguments ("alist")) nil [213627 214272])
-            ("org-window-configuration" variable nil nil [214317 214414])
-            ("org-selected-window" variable nil nil [214415 214507])
-            ("org-finish-function" variable nil nil [214508 214647])
-            ("org-last-state" variable nil nil [214648 214671])
-            ("org-entities" variable nil nil [214736 214757])
-            ("org-struct-menu" variable nil nil [214792 214816])
-            ("org-org-menu" variable nil nil [214817 214838])
-            ("org-tbl-menu" variable nil nil [214839 214860])
-            ("org-table-may-need-update" variable (:default-value t) nil [214968 215146])
-            ("org-before-change-function" function (:arguments ("_beg" "_end")) nil [215147 215292])
-            ("org-mode-map" variable nil nil [215293 215314])
-            ("org-inhibit-startup-visibility-stuff" variable nil nil [215315 215364])
-            ("org-agenda-keep-modes" variable nil nil [215393 215427])
-            ("org-inhibit-logging" variable nil nil [215461 215493])
-            ("org-inhibit-blocking" variable nil nil [215529 215562])
-            ("org-table-buffer-is-an" variable nil nil [215597 215632])
-            ("bidi-paragraph-direction" variable nil nil [215634 215667])
-            ("buffer-face-mode-face" variable nil nil [215668 215698])
-            ("outline" include nil nil [215700 215718])
-            ("time-date" include nil nil [215744 215764])
-            ("unless" code nil nil [215765 215839])
-            ("easymenu" include nil nil [215840 215859])
-            ("easy-menu-add" function (:prototype-flag t) nil [215860 215896])
-            ("overlay" include nil nil [215897 215915])
-            ("org-entities" include nil nil [215992 216015])
-            ("org-faces" include nil nil [216093 216113])
-            ("org-list" include nil nil [216114 216133])
-            ("org-pcomplete" include nil nil [216134 216158])
-            ("org-src" include nil nil [216159 216177])
-            ("org-footnote" include nil nil [216178 216201])
-            ("org-macro" include nil nil [216202 216222])
-            ("ob" include nil nil [216233 216246])
-            ("define-derived-mode" code nil nil [216263 222152])
-            ("add-to-list" code nil nil [222204 222420])
-            ("org-mode-transpose-word-syntax-table" variable (:default-value (let ((st (make-syntax-table text-mode-syntax-table))) (dolist (c org-emphasis-alist st) (modify-syntax-entry (string-to-char (car c)) "w p" st)))) nil [222422 222626])
-            ("when" code nil nil [222628 222750])
-            ("org-find-invisible-foreground" function nil nil [222752 223233])
-            ("org-current-time" function (:arguments ("rounding-minutes" "past")) nil [223235 223956])
-            ("org-today" function nil nil [223958 224137])
-            ("org-mouse-map" variable (:default-value (make-sparse-keymap)) nil [224187 224230])
-            ("org-defkey" code nil nil [224231 224286])
-            ("org-defkey" code nil nil [224287 224347])
-            ("when" code nil nil [224348 224434])
-            ("when" code nil nil [224435 224573])
-            ("font-lock" include nil nil [224575 224595])
-            ("org-non-link-chars" variable
-               (:constant-flag t
-                :default-value "]	
-
<>")
-                nil [224597 224638])
-            ("org-link-types-re" variable nil nil [224639 224730])
-            ("org-link-re-with-space" variable nil nil [224731 224835])
-            ("org-link-re-with-space2" variable nil nil [224836 224941])
-            ("org-link-re-with-space3" variable nil nil [224942 225051])
-            ("org-angle-link-re" variable nil nil [225052 225142])
-            ("org-plain-link-re" variable nil nil [225143 225213])
-            ("org-bracket-link-regexp" variable nil nil [225214 225289])
-            ("org-bracket-link-analytic-regexp" variable nil nil [225290 225477])
-            ("org-bracket-link-analytic-regexp++" variable nil nil [225478 225605])
-            ("org-any-link-re" variable nil nil [225606 225676])
-            ("org-match-sexp-depth" variable
-               (:constant-flag t
-                :default-value 3)
-                nil [225678 225770])
-            ("org-create-multibrace-regexp" function (:arguments ("left" "right" "n")) nil [225772 226573])
-            ("org-match-substring-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\S-\\)\\([_^]\\)\\(" "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)" "\\|" "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)" "\\|" "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)"))
-                nil [226575 226938])
-            ("org-match-substring-with-braces-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(\\S-\\)\\([_^]\\)" "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"))
-                nil [226940 227176])
-            ("org-make-link-regexps" function nil nil [227178 228739])
-            ("org-make-link-regexps" code nil nil [228741 228764])
-            ("org-emph-face" variable nil nil [228766 228792])
-            ("org-do-emphasis-faces" function (:arguments ("limit")) nil [228794 230658])
-            ("org-emphasize" function
-               (:user-visible-flag t
-                :arguments ("char"))
-                nil [230660 232342])
-            ("org-nonsticky-props" variable
-               (:constant-flag t
-                :default-value (quote (mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link)))
-                nil [232344 232467])
-            ("org-rear-nonsticky-at" function (:arguments ("pos")) nil [232469 232587])
-            ("org-activate-links" function (:arguments ("limit")) nil [232589 235264])
-            ("org-activate-code" function (:arguments ("limit")) nil [235266 235557])
-            ("org-src-fontify-natively" variable (:default-value t) nil [235559 235789])
-            ("org-allow-promoting-top-level-subtree" variable nil nil [235791 236027])
-            ("org-fontify-meta-lines-and-blocks" function (:arguments ("limit")) nil [236029 236266])
-            ("org-fontify-meta-lines-and-blocks-1" function (:arguments ("limit")) nil [236268 240508])
-            ("org-fontify-drawers" function (:arguments ("limit")) nil [240510 240819])
-            ("org-fontify-macros" function (:arguments ("limit")) nil [240821 241497])
-            ("org-activate-footnote-links" function (:arguments ("limit")) nil [241499 242243])
-            ("org-activate-dates" function (:arguments ("limit")) nil [242245 242939])
-            ("defvar-local" code nil nil [242941 243043])
-            ("org-target-regexp" variable
-               (:constant-flag t
-                :default-value (let ((border "[^<>
-
 	]")) (format "<<\\(%s\\|%s[^<>
-
]*%s\\)>>" border border border)))
-                nil [243045 243233])
-            ("org-radio-target-regexp" variable
-               (:constant-flag t
-                :default-value (format "<%s>" org-target-regexp))
-                nil [243235 243351])
-            ("org-any-target-regexp" variable
-               (:constant-flag t
-                :default-value (format "%s\\|%s" org-radio-target-regexp org-target-regexp))
-                nil [243353 243492])
-            ("org-activate-target-links" function (:arguments ("limit")) nil [243494 244007])
-            ("org-update-radio-target-regexp" function (:user-visible-flag t) nil [244009 245606])
-            ("org-hide-wide-columns" function (:arguments ("limit")) nil [245608 245903])
-            ("org-latex-and-related-regexp" variable nil nil [245905 246023])
-            ("org-compute-latex-and-related-regexp" function nil nil [246025 247010])
-            ("org-do-latex-and-related" function (:arguments ("limit")) nil [247012 247995])
-            ("org-restart-font-lock" function nil nil [247997 248187])
-            ("org-activate-tags" function (:arguments ("limit")) nil [248189 248554])
-            ("org-outline-level" function nil nil [248556 249022])
-            ("org-font-lock-keywords" variable nil nil [249024 249059])
-            ("org-re-property" function (:arguments ("property" "literal" "allow-null" "value")) nil [249061 250005])
-            ("org-property-re" variable
-               (:constant-flag t
-                :default-value (org-re-property "\\S-+" (quote literal) t))
-                nil [250007 250370])
-            ("org-font-lock-hook" variable nil nil [250372 250459])
-            ("org-font-lock-extra-keywords" variable nil nil [250461 250502])
-            ("org-font-lock-set-keywords-hook" variable nil nil [250525 250855])
-            ("org-font-lock-hook" function (:arguments ("limit")) nil [250857 250983])
-            ("org-set-font-lock-defaults" function nil nil [250985 255007])
-            ("org-toggle-pretty-entities" function (:user-visible-flag t) nil [255009 255452])
-            ("defvar-local" code nil nil [255454 255552])
-            ("org-toggle-custom-properties-visibility" function (:user-visible-flag t) nil [255554 256796])
-            ("org-fontify-entities" function (:arguments ("limit")) nil [256798 257682])
-            ("org-fontify-like-in-org-mode" function (:arguments ("s" "odd-levels")) nil [257684 257933])
-            ("org-m" variable nil nil [257935 257953])
-            ("org-l" variable nil nil [257954 257972])
-            ("org-f" variable nil nil [257973 257991])
-            ("org-get-level-face" function (:arguments ("n")) nil [257992 258520])
-            ("org-face-from-face-or-color" function (:arguments ("context" "inherit" "face-or-color")) nil [258522 258869])
-            ("org-get-todo-face" function (:arguments ("kwd")) nil [258871 259227])
-            ("org-get-priority-face" function (:arguments ("priority")) nil [259229 259460])
-            ("org-get-tag-face" function (:arguments ("tag")) nil [259462 259736])
-            ("org-font-lock-add-priority-faces" function (:arguments ("limit")) nil [259738 260060])
-            ("org-font-lock-add-tag-faces" function (:arguments ("limit")) nil [260062 260411])
-            ("org-unfontify-region" function (:arguments ("beg" "end" "_maybe_loudly")) nil [260413 260983])
-            ("org-script-display" variable
-               (:constant-flag t
-                :default-value (quote (((raise -0.3) (height 0.7)) ((raise 0.3) (height 0.7)) ((raise -0.5)) ((raise 0.5)))))
-                nil [260985 261179])
-            ("org-remove-font-lock-display-properties" function (:arguments ("beg" "end")) nil [261181 261667])
-            ("org-raise-scripts" function (:arguments ("limit")) nil [261669 263137])
-            ("defvar-local" code nil nil [263217 263259])
-            ("put" code nil nil [263260 263303])
-            ("defvar-local" code nil nil [263304 263347])
-            ("put" code nil nil [263348 263392])
-            ("org-inlinetask-min-level" variable nil nil [263394 263427])
-            ("org-unlogged-message" function (:arguments ("args")) nil [263429 263598])
-            ("org-cycle" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [263615 269982])
-            ("org-cycle-internal-global" function nil nil [269984 271363])
-            ("org-called-with-limited-levels" variable nil nil [271365 271472])
-            ("org-invisible-p" function (:arguments ("pos")) nil [271474 271652])
-            ("org-cycle-internal-local" function nil nil [271654 275903])
-            ("org-global-cycle" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [275920 276595])
-            ("org-set-startup-visibility" function nil nil [276597 277196])
-            ("org-set-visibility-according-to-property" function
-               (:user-visible-flag t
-                :arguments ("no-cleanup"))
-                nil [277198 278195])
-            ("org-overview" function (:user-visible-flag t) nil [278378 278982])
-            ("org-content" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [278984 279620])
-            ("org-optimize-window-after-visibility-change" function (:arguments ("state")) nil [279622 280107])
-            ("org-remove-empty-overlays-at" function (:arguments ("pos")) nil [280109 280415])
-            ("org-clean-visibility-after-subtree-move" function nil nil [280417 281409])
-            ("org-cycle-show-empty-lines" function (:arguments ("state")) nil [281411 283050])
-            ("org-show-empty-lines-in-parent" function nil nil [283052 283297])
-            ("org-files-list" function nil nil [283299 283763])
-            ("org-entry-beginning-position" function nil nil [283765 283914])
-            ("org-entry-end-position" function nil nil [283916 284052])
-            ("org-cycle-hide-drawers" function (:arguments ("state" "exceptions")) nil [284054 285208])
-            ("org-flag-drawer" function (:arguments ("flag" "element")) nil [285210 286142])
-            ("org-subtree-end-visible-p" function nil nil [286144 286306])
-            ("org-first-headline-recenter" function nil nil [286308 286631])
-            ("org-outline-overlay-data" function (:arguments ("use-markers")) nil [286670 287391])
-            ("org-set-outline-overlay-data" function (:arguments ("data")) nil [287393 287660])
-            ("defvar-local" code nil nil [287685 287755])
-            ("org-block-map" function (:arguments ("function" "start" "end")) nil [287757 288262])
-            ("org-hide-block-toggle-all" function nil nil [288264 288404])
-            ("org-hide-block-all" function (:user-visible-flag t) nil [288406 288564])
-            ("org-show-block-all" function (:user-visible-flag t) nil [288566 288743])
-            ("org-hide-block-toggle-maybe" function (:user-visible-flag t) nil [288745 289009])
-            ("org-hide-block-toggle" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [289011 291178])
-            ("add-hook" code nil nil [291224 291344])
-            ("org-goto-window-configuration" variable nil nil [291360 291402])
-            ("org-goto-marker" variable nil nil [291403 291431])
-            ("org-goto-map" variable nil nil [291432 291453])
-            ("org-goto-map" function nil nil [291454 293028])
-            ("org-goto-help" variable
-               (:constant-flag t
-                :default-value "Browse buffer copy, to find location or copy text.%s
-RET=jump to location             C-g=quit and return to previous location
-[Up]/[Down]=next/prev headline   TAB=cycle visibility   [/] org-occur")
-                nil [293030 293256])
-            ("org-goto-start-pos" variable nil nil [293258 293285])
-            ("org-goto" function
-               (:user-visible-flag t
-                :arguments ("alternative-interface"))
-                nil [293318 295101])
-            ("org-goto-selected-point" variable nil nil [295103 295139])
-            ("org-goto-exit-command" variable nil nil [295171 295205])
-            ("org-goto-local-auto-isearch-map" variable nil nil [295237 295277])
-            ("org-get-location" function (:arguments ("_buf" "help")) nil [295295 296943])
-            ("org-goto-local-auto-isearch-map" variable (:default-value (make-sparse-keymap)) nil [296945 297006])
-            ("set-keymap-parent" code nil nil [297007 297075])
-            ("if" code nil nil [297135 297537])
-            ("org-goto-local-search-headings" function (:arguments ("string" "bound" "noerror")) nil [297539 298053])
-            ("org-goto-local-auto-isearch" function (:user-visible-flag t) nil [298055 298346])
-            ("org-goto-ret" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [298348 298557])
-            ("org-goto-left" function (:user-visible-flag t) nil [298559 298844])
-            ("org-goto-right" function (:user-visible-flag t) nil [298846 299110])
-            ("org-goto-quit" function (:user-visible-flag t) nil [299112 299291])
-            ("org-indirect-dedicated-frame" variable nil nil [299334 299435])
-            ("org-last-indirect-buffer" variable nil nil [299436 299473])
-            ("org-tree-to-indirect-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [299475 302150])
-            ("org-get-indirect-buffer" function (:arguments ("buffer" "heading")) nil [302152 302631])
-            ("org-set-frame-title" function (:arguments ("title")) nil [302633 302799])
-            ("org--line-empty-p" function (:arguments ("n")) nil [302850 303122])
-            ("org-previous-line-empty-p" function nil nil [303124 303274])
-            ("org-next-line-empty-p" function nil nil [303276 303422])
-            ("org--blank-before-heading-p" function (:arguments ("parent")) nil [303424 304265])
-            ("org-insert-heading" function
-               (:user-visible-flag t
-                :arguments ("arg" "invisible-ok" "top"))
-                nil [304267 308171])
-            ("org-N-empty-lines-before-current" function (:arguments ("n")) nil [308173 308609])
-            ("org-get-heading" function (:arguments ("no-tags" "no-todo" "no-priority" "no-comment")) nil [308611 309552])
-            ("orgstruct-mode" variable nil nil [309554 309577])
-            ("org-heading-components" function nil nil [309597 310586])
-            ("org-get-entry" function nil nil [310588 310777])
-            ("org-edit-headline" function
-               (:user-visible-flag t
-                :arguments ("heading"))
-                nil [310779 311420])
-            ("org-insert-heading-after-current" function (:user-visible-flag t) nil [311422 311648])
-            ("org-insert-heading-respect-content" function
-               (:user-visible-flag t
-                :arguments ("invisible-ok"))
-                nil [311650 311845])
-            ("org-insert-todo-heading-respect-content" function
-               (:user-visible-flag t
-                :arguments ("force-state"))
-                nil [311847 312055])
-            ("org-insert-todo-heading" function
-               (:user-visible-flag t
-                :arguments ("arg" "force-heading"))
-                nil [312057 313409])
-            ("org-insert-subheading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [313411 313678])
-            ("org-insert-todo-subheading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [313680 313987])
-            ("org-after-demote-entry-hook" variable nil nil [314017 314225])
-            ("org-after-promote-entry-hook" variable nil nil [314227 314438])
-            ("org-promote-subtree" function (:user-visible-flag t) nil [314440 314654])
-            ("org-demote-subtree" function (:user-visible-flag t) nil [314656 314879])
-            ("org-do-promote" function (:user-visible-flag t) nil [314881 315228])
-            ("org-do-demote" function (:user-visible-flag t) nil [315230 315573])
-            ("org-fix-position-after-promote" function nil nil [315575 315996])
-            ("org-current-level" function nil nil [315998 316399])
-            ("org-get-previous-line-level" function nil nil [316401 316756])
-            ("org-reduced-level" function (:arguments ("l")) nil [316758 316976])
-            ("org-level-increment" function nil nil [316978 317192])
-            ("org-get-valid-level" function (:arguments ("level" "change")) nil [317194 317816])
-            ("org-promote" function nil nil [317818 318680])
-            ("org-demote" function nil nil [318682 319299])
-            ("org-cycle-level" function (:user-visible-flag t) nil [319301 320817])
-            ("org-map-tree" function (:arguments ("fun")) nil [320819 321142])
-            ("org-map-region" function (:arguments ("fun" "beg" "end")) nil [321144 321555])
-            ("org-fixup-indentation" function (:arguments ("diff")) nil [321557 325554])
-            ("org-convert-to-odd-levels" function (:user-visible-flag t) nil [325556 326133])
-            ("org-convert-to-oddeven-levels" function (:user-visible-flag t) nil [326135 327124])
-            ("org-tr-level" function (:arguments ("n")) nil [327126 327220])
-            ("org-move-subtree-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [327281 327471])
-            ("org-move-subtree-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [327473 330208])
-            ("org-subtree-clip" variable nil nil [330210 330430])
-            ("org-subtree-clip-folded" variable nil nil [330432 330558])
-            ("org-cut-subtree" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [330560 330813])
-            ("org-copy-subtree" function
-               (:user-visible-flag t
-                :arguments ("n" "cut" "force-store-markers" "nosubtrees"))
-                nil [330815 332427])
-            ("org-paste-subtree" function
-               (:user-visible-flag t
-                :arguments ("level" "tree" "for-yank" "remove"))
-                nil [332429 336650])
-            ("org-kill-is-subtree-p" function (:arguments ("txt")) nil [336652 337660])
-            ("org-markers-to-move" variable nil nil [337662 337851])
-            ("org-save-markers-in-region" function (:arguments ("beg" "end")) nil [337853 338496])
-            ("org-check-and-save-marker" function (:arguments ("marker" "beg" "end")) nil [338498 338834])
-            ("org-reinstall-markers-in-region" function (:arguments ("beg")) nil [338836 339058])
-            ("org-narrow-to-subtree" function (:user-visible-flag t) nil [339060 339411])
-            ("org-narrow-to-block" function (:user-visible-flag t) nil [339413 339711])
-            ("org-clone-subtree-with-time-shift" function
-               (:user-visible-flag t
-                :arguments ("n" "shift"))
-                nil [339713 344005])
-            ("org-sort" function
-               (:user-visible-flag t
-                :arguments ("with-case"))
-                nil [344028 344363])
-            ("org-sort-remove-invisible" function (:arguments ("s")) nil [344365 344761])
-            ("org-priority-regexp" variable nil nil [344763 344791])
-            ("org-after-sorting-entries-or-items-hook" variable nil nil [344821 345140])
-            ("org-sort-entries" function
-               (:user-visible-flag t
-                :arguments ("with-case" "sorting-type" "getkey-func" "compare-func" "property" "interactive?"))
-                nil [345142 353803])
-            ("orgstruct-heading-prefix-regexp" variable nil nil [354786 354996])
-            ("orgstruct-setup-hook" variable nil nil [355081 355246])
-            ("orgstruct-initialized" variable nil nil [355248 355282])
-            ("org-local-vars" variable nil nil [355284 355369])
-            ("define-minor-mode" code nil nil [355386 355984])
-            ("turn-on-orgstruct" function nil nil [356001 356096])
-            ("defvar-local" code nil nil [356098 356193])
-            ("defvar-local" code nil nil [356194 356224])
-            ("orgstruct++-mode" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [356225 357362])
-            ("turn-on-orgstruct++" function nil nil [357379 357480])
-            ("orgstruct-error" function (:user-visible-flag t) nil [357482 357718])
-            ("orgstruct-setup" function nil nil [357720 359735])
-            ("orgstruct-make-binding" function (:arguments ("fun" "key" "disable-when-heading-prefix")) nil [359737 362605])
-            ("org-contextualize-keys" function (:arguments ("alist" "contexts")) nil [362607 364074])
-            ("org-contextualize-validate-key" function (:arguments ("key" "contexts")) nil [364076 364990])
-            ("org-context-p" function (:arguments ("contexts")) nil [364992 365537])
-            ("org-run-like-in-org-mode" function (:arguments ("cmd")) nil [365554 366191])
-            ("org-get-category" function (:arguments ("pos" "force-refresh")) nil [366193 366543])
-            ("org-refresh-properties" function (:arguments ("dprop" "tprop")) nil [366569 367564])
-            ("org-refresh-property" function (:arguments ("tprop" "p" "inherit")) nil [367566 368307])
-            ("org-refresh-category-properties" function nil nil [368309 369793])
-            ("org-refresh-stats-properties" function nil nil [369795 370466])
-            ("org-refresh-effort-properties" function nil nil [370468 370662])
-            ("org-link-expand-abbrev" function (:arguments ("link")) nil [370705 371508])
-            ("org-insert-link-history" variable nil nil [371543 371645])
-            ("org-stored-links" variable nil nil [371647 371729])
-            ("org-store-link-plist" variable nil nil [371731 371844])
-            ("org-store-link-functions" function nil nil [371846 373053])
-            ("org-agenda-buffer-name" variable nil nil [373055 373086])
-            ("org-id-link-to-org-use-id" variable nil nil [373114 373148])
-            ("org-store-link" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [373188 381987])
-            ("org-store-link-props" function (:arguments ("plist")) nil [381989 383198])
-            ("org-add-link-props" function (:arguments ("plist")) nil [383200 383459])
-            ("org-email-link-description" function (:arguments ("fmt")) nil [383461 384577])
-            ("org-make-org-heading-search-string" function (:arguments ("string")) nil [384579 385372])
-            ("org-link-escape-chars" variable
-               (:constant-flag t
-                :default-value (quote (32 91 93 37)))
-                nil [385374 385575])
-            ("org-make-link-string" function (:arguments ("link" "description")) nil [385577 386487])
-            ("org-link-escape" function (:arguments ("text" "table" "merge")) nil [386489 387308])
-            ("org-link-unescape" function (:arguments ("str")) nil [387310 387632])
-            ("org-link-unescape-compound" function (:arguments ("hex")) nil [387634 388709])
-            ("org-link-unescape-single-byte-sequence" function (:arguments ("hex")) nil [388711 388941])
-            ("org-xor" function (:arguments ("a" "b")) nil [388943 389001])
-            ("org-fixup-message-id-for-http" function (:arguments ("s")) nil [389003 389488])
-            ("org-link-prettify" function (:arguments ("link")) nil [389490 389817])
-            ("org-insert-link-global" function (:user-visible-flag t) nil [389834 390065])
-            ("org-insert-all-links" function
-               (:user-visible-flag t
-                :arguments ("arg" "pre" "post"))
-                nil [390067 390859])
-            ("org-insert-last-stored-link" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [390861 391014])
-            ("org-link-fontify-links-to-this-file" function nil nil [391016 391776])
-            ("org--links-history" variable nil nil [391778 391809])
-            ("org-insert-link" function
-               (:user-visible-flag t
-                :arguments ("complete-file" "link-location" "default-description"))
-                nil [391810 400002])
-            ("org-link-try-special-completion" function (:arguments ("type")) nil [400004 400282])
-            ("org-file-complete-link" function (:arguments ("arg")) nil [400284 400973])
-            ("org-completing-read" function (:arguments ("args")) nil [400975 401471])
-            ("org-link-search-failed" variable nil nil [401503 401538])
-            ("org-open-link-functions" variable nil nil [401540 402353])
-            ("org-next-link" function
-               (:user-visible-flag t
-                :arguments ("search-backward"))
-                nil [402355 403276])
-            ("org-previous-link" function (:user-visible-flag t) nil [403278 403433])
-            ("org-translate-link" function (:arguments ("s")) nil [403435 403650])
-            ("org-translate-link-from-planner" function (:arguments ("type" "path")) nil [403652 404593])
-            ("org-find-file-at-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [404595 404741])
-            ("org-open-at-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [404743 405032])
-            ("org-window-config-before-follow-link" variable nil nil [405034 405190])
-            ("org-open-at-point-global" function (:user-visible-flag t) nil [405207 405811])
-            ("org-open-link-from-string" function
-               (:user-visible-flag t
-                :arguments ("s" "arg" "reference-buffer"))
-                nil [405828 406361])
-            ("org-open-at-point-functions" variable nil nil [406363 406612])
-            ("org-link-search-inhibit-query" variable nil nil [406614 406656])
-            ("clean-buffer-list-kill-buffer-names" variable nil nil [406657 406701])
-            ("org--open-doi-link" function (:arguments ("path")) nil [406726 406901])
-            ("org--open-elisp-link" function (:arguments ("path")) nil [406903 407506])
-            ("org--open-help-link" function (:arguments ("path")) nil [407508 407826])
-            ("org--open-shell-link" function (:arguments ("path")) nil [407828 408584])
-            ("org-open-at-point" function
-               (:user-visible-flag t
-                :arguments ("arg" "reference-buffer"))
-                nil [408586 415252])
-            ("org-offer-links-in-entry" function (:arguments ("buffer" "marker" "nth" "zero")) nil [415254 417411])
-            ("org-open-file-with-system" function (:arguments ("path")) nil [417541 417670])
-            ("org-open-file-with-emacs" function (:arguments ("path")) nil [417671 417772])
-            ("org-create-file-search-functions" variable nil nil [417792 418879])
-            ("org-execute-file-search-functions" variable nil nil [418881 419933])
-            ("org-search-radio-target" function (:arguments ("target")) nil [419935 420636])
-            ("org-link-search" function (:arguments ("s" "avoid-pos" "stealth")) nil [420638 427148])
-            ("org-get-buffer-for-internal-link" function (:arguments ("buffer")) nil [427150 427800])
-            ("org-do-occur" function (:arguments ("regexp" "cleanup")) nil [427802 428525])
-            ("org-mark-ring" variable nil nil [428562 428642])
-            ("org-mark-ring-last-goto" variable nil nil [428643 428731])
-            ("setq" code nil nil [428759 428811])
-            ("dotimes" code nil nil [428840 428911])
-            ("setcdr" code nil nil [428912 428984])
-            ("org-mark-ring-push" function
-               (:user-visible-flag t
-                :arguments ("pos" "buffer"))
-                nil [428986 429445])
-            ("org-mark-ring-goto" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [429447 430190])
-            ("org-add-angle-brackets" function (:arguments ("s")) nil [430192 430359])
-            ("org-agenda-buffer-tmp-name" variable nil nil [430391 430426])
-            ("org-agenda-start-on-weekday" variable nil nil [430427 430463])
-            ("org-follow-timestamp-link" function nil nil [430464 431299])
-            ("declare-function" code nil nil [431327 431401])
-            ("declare-function" code nil nil [431402 431463])
-            ("declare-function" code nil nil [431464 431551])
-            ("org-wait" variable nil nil [431552 431573])
-            ("org-open-file" function (:arguments ("path" "in-emacs" "line" "search")) nil [431574 437778])
-            ("org-file-apps-entry-match-against-dlink-p" function (:arguments ("entry")) nil [437780 438444])
-            ("org-default-apps" function nil nil [438446 438714])
-            ("org-apps-regexp-alist" function (:arguments ("list" "add-auto-mode")) nil [438716 439371])
-            ("ange-ftp-name-format" variable nil nil [439373 439402])
-            ("org-file-remote-p" function (:arguments ("file")) nil [439403 439922])
-            ("org-get-org-file" function nil nil [439940 440211])
-            ("org-notes-order-reversed-p" function nil nil [440213 440611])
-            ("org-refile-target-table" variable nil nil [440613 440706])
-            ("org-agenda-new-buffers" variable nil nil [440708 440786])
-            ("org-refile-cache" variable nil nil [440788 440847])
-            ("org-refile-markers" variable nil nil [440849 440935])
-            ("org-refile-marker" function (:arguments ("pos")) nil [440937 441170])
-            ("org-refile-cache-clear" function nil nil [441172 441421])
-            ("org-refile-cache-check-set" function (:arguments ("set")) nil [441423 441850])
-            ("org-refile-cache-put" function (:arguments ("set" "identifiers")) nil [441852 442144])
-            ("org-refile-cache-get" function (:arguments ("identifiers")) nil [442146 442519])
-            ("org-outline-path-cache" variable nil nil [442521 442808])
-            ("org-refile-get-targets" function (:arguments ("default-buffer")) nil [442810 446516])
-            ("org--get-outline-path-1" function (:arguments ("use-cache")) nil [446518 447708])
-            ("org-get-outline-path" function (:arguments ("with-self" "use-cache")) nil [447710 448673])
-            ("org-format-outline-path" function (:arguments ("path" "width" "prefix" "separator")) nil [448675 449804])
-            ("org-display-outline-path" function
-               (:user-visible-flag t
-                :arguments ("file" "current" "separator" "just-return-string"))
-                nil [449806 450884])
-            ("org-refile-history" variable nil nil [450886 450954])
-            ("org-after-refile-insert-hook" variable nil nil [450956 451157])
-            ("org-capture-last-stored-marker" variable nil nil [451159 451198])
-            ("org-refile-keep" variable nil nil [451199 451287])
-            ("org-copy" function (:user-visible-flag t) nil [451289 451432])
-            ("org-refile" function
-               (:user-visible-flag t
-                :arguments ("arg" "default-buffer" "rfloc" "msg"))
-                nil [451434 457920])
-            ("org-refile-goto-last-stored" function (:user-visible-flag t) nil [457922 458155])
-            ("org-refile--get-location" function (:arguments ("refloc" "tbl")) nil [458157 458523])
-            ("org-refile-get-location" function (:arguments ("prompt" "default-buffer" "new-nodes")) nil [458525 461217])
-            ("declare-function" code nil nil [461219 461268])
-            ("org-refile-check-position" function (:arguments ("refile-pointer")) nil [461269 462017])
-            ("org-refile-new-child" function (:arguments ("parent-target" "child")) nil [462019 462844])
-            ("org-olpath-completing-read" function (:arguments ("prompt" "collection" "args")) nil [462846 463569])
-            ("org-find-dblock" function (:arguments ("name")) nil [463592 464011])
-            ("org-create-dblock" function (:arguments ("plist")) nil [464013 464603])
-            ("org-prepare-dblock" function nil nil [464605 465543])
-            ("org-map-dblocks" function (:arguments ("command")) nil [465545 466142])
-            ("org-dblock-update" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [466144 466480])
-            ("org-update-dblock" function (:user-visible-flag t) nil [466482 467515])
-            ("org-beginning-of-dblock" function nil nil [467517 467951])
-            ("org-update-all-dblocks" function (:user-visible-flag t) nil [467953 468161])
-            ("declare-function" code nil nil [468181 468240])
-            ("org-get-export-keywords" function nil nil [468241 468836])
-            ("org-options-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:" "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:" "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:" "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:" "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:")))
-                nil [468838 469233])
-            ("org-structure-template-alist" variable (:default-value (quote (("s" "#+BEGIN_SRC ?
-
-#+END_SRC") ("e" "#+BEGIN_EXAMPLE
-?
-#+END_EXAMPLE") ("q" "#+BEGIN_QUOTE
-?
-#+END_QUOTE") ("v" "#+BEGIN_VERSE
-?
-#+END_VERSE") ("V" "#+BEGIN_VERBATIM
-?
-#+END_VERBATIM") ("c" "#+BEGIN_CENTER
-?
-#+END_CENTER") ("C" "#+BEGIN_COMMENT
-?
-#+END_COMMENT") ("l" "#+BEGIN_EXPORT latex
-?
-#+END_EXPORT") ("L" "#+LaTeX: ") ("h" "#+BEGIN_EXPORT html
-?
-#+END_EXPORT") ("H" "#+HTML: ") ("a" "#+BEGIN_EXPORT ascii
-?
-#+END_EXPORT") ("A" "#+ASCII: ") ("i" "#+INDEX: ?") ("I" "#+INCLUDE: %file ?")))) nil [469235 470634])
-            ("org-try-structure-completion" function nil nil [470636 471140])
-            ("org-complete-expand-structure-template" function (:arguments ("start" "cell")) nil [471142 471920])
-            ("org-toggle-comment" function (:user-visible-flag t) nil [471953 472569])
-            ("org-last-todo-state-is-todo" variable nil nil [472571 472763])
-            ("org-setting-tags" variable nil nil [472765 472794])
-            ("org-todo-setup-filter-hook" variable nil nil [472818 473009])
-            ("org-todo-get-default-hook" variable nil nil [473011 473222])
-            ("org-agenda-headline-snapshot-before-repeat" variable nil nil [473224 473275])
-            ("org-current-effective-time" function nil nil [473277 473726])
-            ("org-todo-yesterday" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [473728 474098])
-            ("org-block-entry-blocking" variable nil nil [474100 474186])
-            ("org-cancel-repeater" function (:user-visible-flag t) nil [474188 474725])
-            ("org-state" variable nil nil [474727 474745])
-            ("org-blocked-by-checkboxes" variable nil nil [474746 474780])
-            ("org-todo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [474781 484837])
-            ("org-block-todo-from-children-or-siblings-or-parent" function (:arguments ("change-plist")) nil [484839 487789])
-            ("org-track-ordered-property-with-tag" variable nil nil [487824 488665])
-            ("org-toggle-ordered-property" function (:user-visible-flag t) nil [488667 489367])
-            ("org-block-todo-from-checkboxes" function (:arguments ("change-plist")) nil [489369 490623])
-            ("org-entry-blocked-p" function nil nil [490640 490989])
-            ("org-update-statistics-cookies" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [490991 492415])
-            ("org-entry-property-inherited-from" variable nil nil [492417 492459])
-            ("org-update-parent-todo-statistics" function nil nil [492477 496234])
-            ("org-after-todo-statistics-hook" variable nil nil [496236 496967])
-            ("org-todo-statistics-hook" variable nil nil [496969 497206])
-            ("org-todo-trigger-tag-changes" function (:arguments ("state")) nil [497208 497873])
-            ("org-local-logging" function (:arguments ("value")) nil [497875 498458])
-            ("org-get-todo-sequence-head" function (:arguments ("kwd")) nil [498460 499028])
-            ("org-fast-todo-selection" function nil nil [499030 501068])
-            ("org-entry-is-todo-p" function nil nil [501070 501154])
-            ("org-entry-is-done-p" function nil nil [501156 501236])
-            ("org-get-todo-state" function nil nil [501238 501476])
-            ("org-at-date-range-p" function
-               (:user-visible-flag t
-                :arguments ("inactive-ok"))
-                nil [501478 502256])
-            ("org-get-repeat" function (:arguments ("timestamp")) nil [502258 503029])
-            ("org-last-changed-timestamp" variable nil nil [503031 503066])
-            ("org-last-inserted-timestamp" variable nil nil [503067 503103])
-            ("org-log-post-message" variable nil nil [503104 503133])
-            ("org-log-note-purpose" variable nil nil [503134 503163])
-            ("org-log-note-how" variable nil nil [503164 503193])
-            ("org-log-note-extra" variable nil nil [503194 503221])
-            ("org-auto-repeat-maybe" function (:arguments ("done-word")) nil [503222 507933])
-            ("org-show-todo-tree" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [507935 508950])
-            ("org--deadline-or-schedule" function (:arguments ("arg" "type" "time")) nil [508952 511908])
-            ("org-deadline" function
-               (:user-visible-flag t
-                :arguments ("arg" "time"))
-                nil [511910 512725])
-            ("org-schedule" function
-               (:user-visible-flag t
-                :arguments ("arg" "time"))
-                nil [512727 513545])
-            ("org-get-scheduled-time" function (:arguments ("pom" "inherit")) nil [513547 513869])
-            ("org-get-deadline-time" function (:arguments ("pom" "inherit")) nil [513871 514185])
-            ("org-remove-timestamp-with-keyword" function (:arguments ("keyword")) nil [514187 514854])
-            ("org-time-was-given" variable nil nil [514856 514883])
-            ("org-end-time-was-given" variable nil nil [514915 514946])
-            ("org-at-planning-p" function nil nil [514979 515496])
-            ("org-add-planning-info" function (:arguments ("what" "time" "remove")) nil [515498 519081])
-            ("org-log-note-marker" variable (:default-value (make-marker)) nil [519083 519192])
-            ("org-log-note-purpose" variable nil nil [519193 519226])
-            ("org-log-note-state" variable nil nil [519227 519258])
-            ("org-log-note-previous-state" variable nil nil [519259 519299])
-            ("org-log-note-extra" variable nil nil [519300 519331])
-            ("org-log-note-window-configuration" variable nil nil [519332 519378])
-            ("org-log-note-return-to" variable (:default-value (make-marker)) nil [519379 519424])
-            ("org-log-note-effective-time" variable nil nil [519425 519584])
-            ("org-log-post-message" variable nil nil [519586 519710])
-            ("org-add-note" function (:user-visible-flag t) nil [519712 519876])
-            ("org-log-beginning" function (:arguments ("create")) nil [519878 521369])
-            ("org-add-log-setup" function (:arguments ("purpose" "state" "prev-state" "how" "extra")) nil [521371 522006])
-            ("org-skip-over-state-notes" function nil nil [522008 522797])
-            ("org-add-log-note" function (:arguments ("_purpose")) nil [522799 524429])
-            ("org-note-abort" variable nil nil [524431 524458])
-            ("org-store-log-note" function nil nil [524480 528192])
-            ("org-remove-empty-drawer-at" function (:arguments ("pos")) nil [528194 528810])
-            ("org-ts-type" variable nil nil [528812 528836])
-            ("org-sparse-tree" function
-               (:user-visible-flag t
-                :arguments ("arg" "type"))
-                nil [528837 531211])
-            ("defvar-local" code nil nil [531213 531297])
-            ("defvar-local" code nil nil [531298 531857])
-            ("org-occur" function
-               (:user-visible-flag t
-                :arguments ("regexp" "keep-previous" "callback"))
-                nil [531859 533818])
-            ("org-occur-next-match" function (:arguments ("n" "_reset")) nil [533820 534658])
-            ("org-show-context" function (:arguments ("key")) nil [534660 535069])
-            ("org-show-set-visibility" function (:arguments ("detail")) nil [535071 536359])
-            ("org-reveal-start-hook" variable nil nil [536361 536437])
-            ("org-reveal" function
-               (:user-visible-flag t
-                :arguments ("siblings"))
-                nil [536439 537284])
-            ("org-highlight-new-match" function (:arguments ("beg" "end")) nil [537286 537565])
-            ("org-remove-occur-highlights" function
-               (:user-visible-flag t
-                :arguments ("_beg" "_end" "noremove"))
-                nil [537567 538093])
-            ("org-priority-regexp" variable (:default-value ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)") nil [538112 538231])
-            ("org-remove-priority-next-time" variable nil nil [538233 538275])
-            ("org-priority-up" function (:user-visible-flag t) nil [538277 538387])
-            ("org-priority-down" function (:user-visible-flag t) nil [538389 538503])
-            ("org-priority" function
-               (:user-visible-flag t
-                :arguments ("action" "_show"))
-                nil [538505 541460])
-            ("org-show-priority" function (:user-visible-flag t) nil [541462 541983])
-            ("org-get-priority" function (:arguments ("s")) nil [541985 542349])
-            ("org-agenda-archives-mode" variable nil nil [542362 542395])
-            ("org-map-continue-from" variable nil nil [542396 542555])
-            ("org-scanner-tags" variable nil nil [542557 542646])
-            ("org-trust-scanner-tags" variable nil nil [542648 543226])
-            ("org--matcher-tags-todo-only" variable nil nil [543228 543268])
-            ("org-scan-tags" function (:arguments ("action" "matcher" "todo-only" "start-level")) nil [543270 549550])
-            ("org-remove-uninherited-tags" function (:arguments ("tags")) nil [549552 550217])
-            ("org-match-sparse-tree" function
-               (:user-visible-flag t
-                :arguments ("todo-only" "match"))
-                nil [550219 550874])
-            ("defalias" code nil nil [550876 550931])
-            ("org-cached-props" variable nil nil [550933 550962])
-            ("org-cached-entry-get" function (:arguments ("pom" "property")) nil [550963 551607])
-            ("org-global-tags-completion-table" function (:arguments ("files")) nil [551609 552215])
-            ("org-make-tags-matcher" function (:arguments ("match")) nil [552217 557916])
-            ("org-tags-expand" function (:arguments ("match" "single-as-list" "downcased" "tags-already-expanded")) nil [557918 562936])
-            ("org-op-to-function" function (:arguments ("op" "stringp")) nil [562938 563482])
-            ("org<>" function (:arguments ("a" "b")) nil [563484 563517])
-            ("org-string<=" function (:arguments ("a" "b")) nil [563518 563577])
-            ("org-string>=" function (:arguments ("a" "b")) nil [563578 563624])
-            ("org-string>" function (:arguments ("a" "b")) nil [563625 563697])
-            ("org-string<>" function (:arguments ("a" "b")) nil [563698 563744])
-            ("org-time=" function (:arguments ("a" "b")) nil [563745 563838])
-            ("org-time<" function (:arguments ("a" "b")) nil [563839 563932])
-            ("org-time<=" function (:arguments ("a" "b")) nil [563933 564026])
-            ("org-time>" function (:arguments ("a" "b")) nil [564027 564120])
-            ("org-time>=" function (:arguments ("a" "b")) nil [564121 564214])
-            ("org-time<>" function (:arguments ("a" "b")) nil [564215 564308])
-            ("org-2ft" function (:arguments ("s")) nil [564309 564674])
-            ("org-time-today" function nil nil [564676 564926])
-            ("org-matcher-time" function (:arguments ("s")) nil [564928 565511])
-            ("org-match-any-p" function (:arguments ("re" "list")) nil [565513 565664])
-            ("org-add-colon-after-tag-completion" variable nil nil [565666 565713])
-            ("org-tags-overlay" variable (:default-value (make-overlay 1 1)) nil [565743 565787])
-            ("delete-overlay" code nil nil [565788 565821])
-            ("org-get-local-tags-at" function (:arguments ("pos")) nil [565823 565955])
-            ("org-get-local-tags" function nil nil [565957 566073])
-            ("org-get-tags-at" function
-               (:user-visible-flag t
-                :arguments ("pos" "local"))
-                nil [566075 567556])
-            ("org-add-prop-inherited" function (:arguments ("s")) nil [567558 567650])
-            ("org-toggle-tag" function (:arguments ("tag" "onoff")) nil [567652 568660])
-            ("org--align-tags-here" function (:arguments ("to-col")) nil [568662 569366])
-            ("org-set-tags-command" function
-               (:user-visible-flag t
-                :arguments ("arg" "just-align"))
-                nil [569368 569773])
-            ("org-set-tags-to" function
-               (:user-visible-flag t
-                :arguments ("data"))
-                nil [569775 570726])
-            ("org-align-all-tags" function (:user-visible-flag t) nil [570728 570977])
-            ("org-indent-indentation-per-level" variable nil nil [570979 571020])
-            ("org-set-tags" function
-               (:user-visible-flag t
-                :arguments ("arg" "just-align"))
-                nil [571021 575021])
-            ("org-change-tag-in-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "tag" "off"))
-                nil [575023 576557])
-            ("org-tags-completion-function" function (:arguments ("string" "_predicate" "flag")) nil [576559 577374])
-            ("org-fast-tag-insert" function (:arguments ("kwd" "tags" "face" "end")) nil [577376 577632])
-            ("org-fast-tag-show-exit" function (:arguments ("flag")) nil [577634 577975])
-            ("org-set-current-tags-overlay" function (:arguments ("current" "prefix")) nil [577977 578279])
-            ("org-last-tag-selection-key" variable nil nil [578281 578320])
-            ("org-fast-tag-selection" function (:arguments ("current" "inherited" "table" "todo-table")) nil [578321 585427])
-            ("org-get-tags-string" function nil nil [585429 585726])
-            ("org-get-tags" function nil nil [585728 585858])
-            ("org-get-buffer-tags" function nil nil [585860 586325])
-            ("org-agenda-skip-comment-trees" variable nil nil [586349 586387])
-            ("org-agenda-skip-function" variable nil nil [586388 586421])
-            ("org-map-entries" function (:arguments ("func" "match" "scope" "skip")) nil [586422 591916])
-            ("org-special-properties" variable
-               (:constant-flag t
-                :default-value (quote ("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE" "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")))
-                nil [591938 592257])
-            ("org-default-properties" variable
-               (:constant-flag t
-                :default-value (quote ("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID" "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY" "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE" "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME" "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED" "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE" "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")))
-                nil [592259 592835])
-            ("org--valid-property-p" function (:arguments ("property")) nil [592837 593012])
-            ("org--update-property-plist" function (:arguments ("key" "val" "props")) nil [593014 593426])
-            ("org-get-property-block" function (:arguments ("beg" "force")) nil [593428 594490])
-            ("org-at-property-p" function nil nil [594492 594877])
-            ("org-property-action" function (:user-visible-flag t) nil [594879 595381])
-            ("org-inc-effort" function (:user-visible-flag t) nil [595383 595518])
-            ("org-clock-effort" variable nil nil [595520 595545])
-            ("org-clock-current-task" variable nil nil [595579 595610])
-            ("org-set-effort" function
-               (:user-visible-flag t
-                :arguments ("value" "increment"))
-                nil [595638 597498])
-            ("org-entry-properties" function (:arguments ("pom" "which")) nil [597500 605485])
-            ("org--property-local-values" function (:arguments ("property" "literal-nil")) nil [605487 606467])
-            ("org--property-global-value" function (:arguments ("property" "literal-nil")) nil [606469 606964])
-            ("org-entry-get" function (:arguments ("pom" "property" "inherit" "literal-nil")) nil [606966 608448])
-            ("org-property-or-variable-value" function (:arguments ("var" "inherit")) nil [608450 608811])
-            ("org-entry-delete" function (:arguments ("pom" "property")) nil [608813 609612])
-            ("org-entry-add-to-multivalued-property" function (:arguments ("pom" "property" "value")) nil [609758 610188])
-            ("org-entry-remove-from-multivalued-property" function (:arguments ("pom" "property" "value")) nil [610190 610617])
-            ("org-entry-member-in-multivalued-property" function (:arguments ("pom" "property" "value")) nil [610619 610928])
-            ("org-entry-get-multivalued-property" function (:arguments ("pom" "property")) nil [610930 611180])
-            ("org-entry-put-multivalued-property" function (:arguments ("pom" "property" "values")) nil [611182 611596])
-            ("org-entry-protect-space" function (:arguments ("s")) nil [611598 611826])
-            ("org-entry-restore-space" function (:arguments ("s")) nil [611828 612056])
-            ("org-entry-property-inherited-from" variable (:default-value (make-marker)) nil [612058 612453])
-            ("org-entry-get-with-inheritance" function (:arguments ("property" "literal-nil")) nil [612455 613646])
-            ("org-property-changed-functions" variable nil nil [613648 613841])
-            ("org-entry-put" function (:arguments ("pom" "property" "value")) nil [613843 616898])
-            ("org-buffer-property-keys" function (:arguments ("specials" "defaults" "columns" "ignore-malformed")) nil [616900 619675])
-            ("org-property-values" function (:arguments ("key")) nil [619677 620012])
-            ("org-insert-property-drawer" function nil nil [620014 620801])
-            ("org-insert-drawer" function
-               (:user-visible-flag t
-                :arguments ("arg" "drawer"))
-                nil [620803 622857])
-            ("org-property-set-functions-alist" variable nil nil [622859 623094])
-            ("org-set-property-function" function (:arguments ("property")) nil [623096 623354])
-            ("org-read-property-value" function (:arguments ("property")) nil [623356 624016])
-            ("org-last-set-property" variable nil nil [624018 624052])
-            ("org-last-set-property-value" variable nil nil [624053 624093])
-            ("org-read-property-name" function nil nil [624094 624515])
-            ("org-set-property-and-value" function
-               (:user-visible-flag t
-                :arguments ("use-last"))
-                nil [624517 625146])
-            ("org-set-property" function
-               (:user-visible-flag t
-                :arguments ("property" "value"))
-                nil [625148 626437])
-            ("org-find-property" function (:arguments ("property" "value")) nil [626439 627211])
-            ("org-delete-property" function
-               (:user-visible-flag t
-                :arguments ("property"))
-                nil [627213 627806])
-            ("org-delete-property-globally" function
-               (:user-visible-flag t
-                :arguments ("property"))
-                nil [627808 628444])
-            ("org-columns-current-fmt-compiled" variable nil nil [628446 628487])
-            ("org-compute-property-at-point" function (:user-visible-flag t) nil [628517 629067])
-            ("org-property-allowed-value-functions" variable nil nil [629069 629529])
-            ("org-property-get-allowed-values" function (:arguments ("pom" "property" "table")) nil [629531 630753])
-            ("org-property-previous-allowed-value" function
-               (:user-visible-flag t
-                :arguments ("_previous"))
-                nil [630755 630930])
-            ("org-property-next-allowed-value" function
-               (:user-visible-flag t
-                :arguments ("previous"))
-                nil [630932 632335])
-            ("org-find-olp" function (:arguments ("path" "this-buffer")) nil [632337 633971])
-            ("org-find-exact-headline-in-buffer" function (:arguments ("heading" "buffer" "pos-only")) nil [633973 634688])
-            ("org-find-exact-heading-in-directory" function (:arguments ("heading" "dir")) nil [634690 635399])
-            ("org-find-entry-with-id" function
-               (:user-visible-flag t
-                :arguments ("ident"))
-                nil [635401 635995])
-            ("org-last-changed-timestamp" variable nil nil [636014 636053])
-            ("org-last-inserted-timestamp" variable nil nil [636054 636157])
-            ("org-time-stamp" function
-               (:user-visible-flag t
-                :arguments ("arg" "inactive"))
-                nil [636159 638819])
-            ("org-get-compact-tod" function (:arguments ("s")) nil [638900 639534])
-            ("org-time-stamp-inactive" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [639536 640270])
-            ("org-date-ovl" variable (:default-value (make-overlay 1 1)) nil [640272 640312])
-            ("overlay-put" code nil nil [640313 640364])
-            ("delete-overlay" code nil nil [640365 640394])
-            ("org-ans1" variable nil nil [640396 640413])
-            ("org-ans2" variable nil nil [640445 640462])
-            ("org-plain-time-of-day-regexp" variable nil nil [640495 640532])
-            ("org-overriding-default-time" variable nil nil [640550 640590])
-            ("org-read-date-overlay" variable nil nil [640612 640646])
-            ("org-dcst" variable nil nil [640647 640668])
-            ("org-read-date-history" variable nil nil [640690 640724])
-            ("org-read-date-final-answer" variable nil nil [640725 640764])
-            ("org-read-date-analyze-futurep" variable nil nil [640765 640807])
-            ("org-read-date-analyze-forced-year" variable nil nil [640808 640854])
-            ("org-read-date-inactive" variable nil nil [640855 640886])
-            ("org-read-date-minibuffer-local-map" variable (:default-value (let* ((map (make-sparse-keymap))) (set-keymap-parent map minibuffer-local-map) (org-defkey map (kbd ".") (lambda nil (interactive) (if (looking-back "^[^:]+: " (let ((inhibit-field-text-motion t)) (line-beginning-position))) (org-eval-in-calendar (quote (calendar-goto-today))) (insert ".")))) (org-defkey map (kbd "C-.") (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-goto-today))))) (org-defkey map [(meta shift left)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-month 1))))) (org-defkey map [(meta shift right)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-month 1))))) (org-defkey map [(meta shift up)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-year 1))))) (org-defkey map [(meta shift down)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-year 1))))) (org-defkey map [27 (shift left)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-month 1))))) (org-defkey map [27 (shift right)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-month 1))))) (org-defkey map [27 (shift up)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-year 1))))) (org-defkey map [27 (shift down)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-year 1))))) (org-defkey map [(shift up)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-week 1))))) (org-defkey map [(shift down)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-week 1))))) (org-defkey map [(shift left)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-backward-day 1))))) (org-defkey map [(shift right)] (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-forward-day 1))))) (org-defkey map "!" (lambda nil (interactive) (org-eval-in-calendar (quote (diary-view-entries))) (message ""))) (org-defkey map ">" (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-scroll-left 1))))) (org-defkey map "<" (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-scroll-right 1))))) (org-defkey map "" (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-scroll-left-three-months 1))))) (org-defkey map "\366" (lambda nil (interactive) (org-eval-in-calendar (quote (calendar-scroll-right-three-months 1))))) map)) nil [640888 644085])
-            ("org-def" variable nil nil [644087 644103])
-            ("org-defdecode" variable nil nil [644104 644126])
-            ("org-with-time" variable nil nil [644127 644149])
-            ("calendar-setup" variable nil nil [644151 644174])
-            ("org-read-date" function (:arguments ("with-time" "to-time" "from-string" "prompt" "default-time" "default-input" "inactive")) nil [644199 650832])
-            ("org-read-date-display" function nil nil [650834 652300])
-            ("org-read-date-analyze" function (:arguments ("ans" "def" "defdecode")) nil [652302 661405])
-            ("parse-time-weekdays" variable nil nil [661407 661435])
-            ("org-read-date-get-relative" function (:arguments ("s" "today" "default")) nil [661436 662976])
-            ("org-order-calendar-date-args" function (:arguments ("arg1" "arg2" "arg3")) nil [662978 663443])
-            ("org-eval-in-calendar" function (:arguments ("form" "keepdate")) nil [663445 664127])
-            ("org-calendar-select" function (:user-visible-flag t) nil [664129 664584])
-            ("org-insert-time-stamp" function (:arguments ("time" "with-hm" "inactive" "pre" "post" "extra")) nil [664586 665821])
-            ("org-toggle-time-stamp-overlays" function (:user-visible-flag t) nil [665823 666577])
-            ("org-display-custom-time" function (:arguments ("beg" "end")) nil [666579 667348])
-            ("org-fix-decoded-time" function (:arguments ("time")) nil [667350 667551])
-            ("org-time-stamp-to-now" function (:arguments ("timestamp-string" "seconds")) nil [667553 667897])
-            ("org-deadline-close-p" function (:arguments ("timestamp-string" "ndays")) nil [667899 668179])
-            ("org-get-wdays" function (:arguments ("ts" "delay" "zero-delay")) nil [668181 669129])
-            ("org-calendar-select-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [669131 669621])
-            ("org-check-deadlines" function
-               (:user-visible-flag t
-                :arguments ("ndays"))
-                nil [669623 670486])
-            ("org-re-timestamp" function (:arguments ("type")) nil [670488 671284])
-            ("org-check-before-date" function
-               (:user-visible-flag t
-                :arguments ("d"))
-                nil [671286 671979])
-            ("org-check-after-date" function
-               (:user-visible-flag t
-                :arguments ("d"))
-                nil [671981 672673])
-            ("org-check-dates-range" function
-               (:user-visible-flag t
-                :arguments ("start-date" "end-date"))
-                nil [672675 673580])
-            ("org-evaluate-time-range" function
-               (:user-visible-flag t
-                :arguments ("to-buffer"))
-                nil [673582 675880])
-            ("org-make-tdiff-string" function (:arguments ("y" "d" "h" "m")) nil [675882 676388])
-            ("org-time-string-to-time" function (:arguments ("s")) nil [676390 676526])
-            ("org-time-string-to-seconds" function (:arguments ("s")) nil [676528 676668])
-            ("org-define-error" code nil nil [676670 676742])
-            ("org-time-string-to-absolute" function (:arguments ("s" "daynr" "prefer" "buffer" "pos")) nil [676744 677996])
-            ("org-days-to-iso-week" function (:arguments ("days")) nil [677998 678128])
-            ("org-small-year-to-year" function (:arguments ("year")) nil [678130 678664])
-            ("org-time-from-absolute" function (:arguments ("d")) nil [678666 678937])
-            ("org-agenda-current-date" variable nil nil [678939 678971])
-            ("org-calendar-holiday" function nil nil [678972 679187])
-            ("org-diary-sexp-entry" function (:arguments ("sexp" "entry" "d")) nil [679189 679965])
-            ("org-diary-to-ical-string" function (:arguments ("frombuf")) nil [679967 680757])
-            ("org-closest-date" function (:arguments ("start" "current" "prefer")) nil [680759 684105])
-            ("org-date-to-gregorian" function (:arguments ("d")) nil [684107 684462])
-            ("org-parse-time-string" function (:arguments ("s" "nodefault")) nil [684464 685523])
-            ("org-timestamp-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [685525 685918])
-            ("org-timestamp-down" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [685920 686319])
-            ("org-timestamp-up-day" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [686321 686633])
-            ("org-timestamp-down-day" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [686635 686955])
-            ("org-at-timestamp-p" function (:arguments ("extended")) nil [686957 689466])
-            ("org-toggle-timestamp-type" function (:user-visible-flag t) nil [689468 689988])
-            ("org-at-clock-log-p" function nil nil [689990 690186])
-            ("org-clock-history" variable nil nil [690188 690214])
-            ("org-clock-adjust-closest" variable nil nil [690261 690298])
-            ("org-timestamp-change" function (:arguments ("n" "what" "updown" "suppress-tmp-delay")) nil [690334 696402])
-            ("org-modify-ts-extra" function (:arguments ("s" "pos" "n" "dm")) nil [696404 697926])
-            ("org-recenter-calendar" function (:arguments ("d")) nil [697928 698234])
-            ("org-goto-calendar" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [698236 698925])
-            ("org-get-date-from-calendar" function nil nil [698927 699120])
-            ("org-date-from-calendar" function (:user-visible-flag t) nil [699122 699544])
-            ("org-effort-durations" variable (:default-value (\` (("min" . 1) ("h" . 60) ("d" \, (* 60 8)) ("w" \, (* 60 8 5)) ("m" \, (* 60 8 5 4)) ("y" \, (* 60 8 5 40))))) nil [699546 700239])
-            ("org-image-actual-width" variable (:default-value t) nil [700241 701149])
-            ("org-agenda-inhibit-startup" variable nil nil [701151 701458])
-            ("org-agenda-ignore-properties" variable nil nil [701460 702071])
-            ("org-save-all-org-buffers" function (:user-visible-flag t) nil [702085 702388])
-            ("org-revert-all-org-buffers" function (:user-visible-flag t) nil [702390 703376])
-            ("org-switchb" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [703412 703928])
-            ("org-buffer-list" function (:arguments ("predicate" "exclude-tmp")) nil [703930 705164])
-            ("org-agenda-files" function (:arguments ("unrestricted" "archives")) nil [705166 706294])
-            ("org-agenda-file-p" function (:arguments ("file")) nil [706296 706620])
-            ("org-edit-agenda-file-list" function (:user-visible-flag t) nil [706622 707544])
-            ("org-store-new-agenda-file-list" function (:arguments ("list")) nil [707546 708207])
-            ("org-read-agenda-file-list" function (:arguments ("pair-with-expansion")) nil [708209 708927])
-            ("org-cycle-agenda-files" function (:user-visible-flag t) nil [708944 709575])
-            ("org-agenda-file-to-front" function
-               (:user-visible-flag t
-                :arguments ("to-end"))
-                nil [709577 710601])
-            ("org-remove-file" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [710603 711503])
-            ("org-file-menu-entry" function (:arguments ("file")) nil [711505 711580])
-            ("org-check-agenda-file" function (:arguments ("file")) nil [711582 711979])
-            ("org-get-agenda-file-buffer" function (:arguments ("file")) nil [711981 712393])
-            ("org-release-buffers" function (:arguments ("blist")) nil [712395 712866])
-            ("org-agenda-prepare-buffers" function
-               (:user-visible-flag t
-                :arguments ("files"))
-                nil [712868 715627])
-            ("org-cdlatex-mode-map" variable (:default-value (make-sparse-keymap)) nil [715656 715751])
-            ("org-defkey" code nil nil [715753 715820])
-            ("org-defkey" code nil nil [715821 715888])
-            ("org-defkey" code nil nil [715889 715947])
-            ("org-defkey" code nil nil [715948 716010])
-            ("org-defkey" code nil nil [716011 716084])
-            ("org-cdlatex-texmathp-advice-is-done" variable nil nil [716086 716206])
-            ("define-minor-mode" code nil nil [716208 717414])
-            ("turn-on-org-cdlatex" function nil nil [717416 717517])
-            ("org-try-cdlatex-tab" function nil nil [717519 718311])
-            ("org-cdlatex-underscore-caret" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [718313 718689])
-            ("org-cdlatex-math-modify" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [718691 719054])
-            ("org-cdlatex-environment-indent" function
-               (:user-visible-flag t
-                :arguments ("environment" "item"))
-                nil [719056 721074])
-            ("org-inside-LaTeX-fragment-p" function nil nil [721100 723024])
-            ("org-inside-latex-macro-p" function nil nil [723026 723226])
-            ("org--format-latex-make-overlay" function (:arguments ("beg" "end" "image" "imagetype")) nil [723228 723844])
-            ("org--list-latex-overlays" function (:arguments ("beg" "end")) nil [723846 724166])
-            ("org-remove-latex-fragment-image-overlays" function (:arguments ("beg" "end")) nil [724168 724575])
-            ("org-toggle-latex-fragment" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [724577 727253])
-            ("org-format-latex" function (:arguments ("prefix" "beg" "end" "dir" "overlays" "msg" "forbuffer" "processing-type")) nil [727255 731838])
-            ("org-create-math-formula" function
-               (:user-visible-flag t
-                :arguments ("latex-frag" "mathml-file"))
-                nil [731840 734308])
-            ("org-format-latex-as-mathml" function (:arguments ("latex-frag" "latex-frag-type" "prefix" "dir")) nil [734310 735445])
-            ("org--get-display-dpi" function nil nil [735447 735783])
-            ("org-create-formula-image" function (:arguments ("string" "tofile" "options" "buffer" "processing-type")) nil [735785 740017])
-            ("org-splice-latex-header" function (:arguments ("tpl" "def-pkg" "pkg" "snippets-p" "extra")) nil [740019 741839])
-            ("org-latex-packages-to-string" function (:arguments ("pkg" "snippets-p" "newline")) nil [741841 742365])
-            ("org-dvipng-color" function (:arguments ("attr")) nil [742367 742510])
-            ("org-dvipng-color-format" function (:arguments ("color-name")) nil [742512 742707])
-            ("org-latex-color" function (:arguments ("attr")) nil [742709 742853])
-            ("org-latex-color-format" function (:arguments ("color-name")) nil [742855 743034])
-            ("org-normalize-color" function (:arguments ("value")) nil [743036 743171])
-            ("defvar-local" code nil nil [743194 743238])
-            ("org-toggle-inline-images" function
-               (:user-visible-flag t
-                :arguments ("include-linked"))
-                nil [743240 743845])
-            ("org-redisplay-inline-images" function (:user-visible-flag t) nil [743847 744077])
-            ("org-display-inline-images" function
-               (:user-visible-flag t
-                :arguments ("include-linked" "refresh" "beg" "end"))
-                nil [744079 748049])
-            ("org-display-inline-remove-overlay" function (:arguments ("ov" "after" "_beg" "_end" "_len")) nil [748051 748338])
-            ("org-remove-inline-images" function (:user-visible-flag t) nil [748340 748519])
-            ("org-remap" function (:arguments ("map" "commands")) nil [748540 748829])
-            ("define-key" code nil nil [748915 748987])
-            ("define-key" code nil nil [748988 749060])
-            ("define-key" code nil nil [749061 749155])
-            ("define-key" code nil nil [749156 749252])
-            ("define-key" code nil nil [749253 749342])
-            ("define-key" code nil nil [749343 749413])
-            ("define-key" code nil nil [749414 749482])
-            ("define-key" code nil nil [749483 749555])
-            ("define-key" code nil nil [749556 749646])
-            ("define-key" code nil nil [749647 749745])
-            ("define-key" code nil nil [749746 749812])
-            ("org-defkey" code nil nil [751488 751545])
-            ("org-defkey" code nil nil [751573 751622])
-            ("org-defkey" code nil nil [751623 751672])
-            ("org-defkey" code nil nil [751673 751740])
-            ("org-defkey" code nil nil [751741 751786])
-            ("org-defkey" code nil nil [751844 751900])
-            ("org-defkey" code nil nil [751901 751957])
-            ("define-key" code nil nil [751958 752007])
-            ("org-defkey" code nil nil [752009 752074])
-            ("org-defkey" code nil nil [752075 752147])
-            ("org-defkey" code nil nil [752148 752205])
-            ("org-defkey" code nil nil [752237 752291])
-            ("org-defkey" code nil nil [752292 752347])
-            ("org-defkey" code nil nil [752348 752400])
-            ("org-defkey" code nil nil [752401 752455])
-            ("org-defkey" code nil nil [752457 752541])
-            ("org-defkey" code nil nil [752542 752625])
-            ("org-defkey" code nil nil [752626 752692])
-            ("org-defkey" code nil nil [752693 752760])
-            ("org-defkey" code nil nil [752761 752825])
-            ("org-defkey" code nil nil [752826 752892])
-            ("org-defkey" code nil nil [752894 752954])
-            ("org-defkey" code nil nil [752955 753017])
-            ("org-defkey" code nil nil [753018 753080])
-            ("org-defkey" code nil nil [753081 753144])
-            ("org-defkey" code nil nil [753146 753218])
-            ("org-defkey" code nil nil [753219 753290])
-            ("org-defkey" code nil nil [753291 753357])
-            ("org-defkey" code nil nil [753358 753429])
-            ("define-key" code nil nil [753445 753505])
-            ("dolist" code nil nil [753506 753595])
-            ("when" code nil nil [753728 755507])
-            ("org-remap" code nil nil [755531 755691])
-            ("org-defkey" code nil nil [755692 755744])
-            ("org-defkey" code nil nil [755746 755800])
-            ("org-defkey" code nil nil [755829 755877])
-            ("if" code nil nil [755878 756018])
-            ("if" code nil nil [756019 756155])
-            ("if" code nil nil [756156 756296])
-            ("org-defkey" code nil nil [756297 756356])
-            ("org-defkey" code nil nil [756357 756414])
-            ("org-defkey" code nil nil [756415 756473])
-            ("org-defkey" code nil nil [756474 756526])
-            ("org-defkey" code nil nil [756527 756581])
-            ("org-defkey" code nil nil [756582 756650])
-            ("org-defkey" code nil nil [756651 756720])
-            ("org-defkey" code nil nil [756721 756773])
-            ("org-defkey" code nil nil [756774 756830])
-            ("org-defkey" code nil nil [756831 756888])
-            ("org-defkey" code nil nil [756889 756950])
-            ("org-defkey" code nil nil [756951 757020])
-            ("org-defkey" code nil nil [757021 757077])
-            ("org-defkey" code nil nil [757078 757139])
-            ("org-defkey" code nil nil [757140 757209])
-            ("org-defkey" code nil nil [757210 757276])
-            ("org-defkey" code nil nil [757277 757338])
-            ("org-defkey" code nil nil [757339 757385])
-            ("org-defkey" code nil nil [757386 757432])
-            ("org-defkey" code nil nil [757433 757491])
-            ("org-defkey" code nil nil [757492 757542])
-            ("org-defkey" code nil nil [757543 757593])
-            ("org-defkey" code nil nil [757594 757650])
-            ("org-defkey" code nil nil [757651 757699])
-            ("org-defkey" code nil nil [757700 757746])
-            ("org-defkey" code nil nil [757747 757800])
-            ("org-defkey" code nil nil [757825 757884])
-            ("org-defkey" code nil nil [757903 757955])
-            ("org-defkey" code nil nil [757956 758028])
-            ("org-defkey" code nil nil [758029 758084])
-            ("org-defkey" code nil nil [758085 758165])
-            ("org-defkey" code nil nil [758166 758257])
-            ("org-defkey" code nil nil [758258 758313])
-            ("org-defkey" code nil nil [758314 758373])
-            ("org-defkey" code nil nil [758374 758427])
-            ("org-defkey" code nil nil [758428 758493])
-            ("org-defkey" code nil nil [758494 758555])
-            ("org-defkey" code nil nil [758556 758611])
-            ("org-defkey" code nil nil [758612 758668])
-            ("org-defkey" code nil nil [758669 758725])
-            ("org-defkey" code nil nil [758726 758776])
-            ("org-defkey" code nil nil [758800 758852])
-            ("org-defkey" code nil nil [758876 758937])
-            ("org-defkey" code nil nil [758954 759004])
-            ("org-defkey" code nil nil [759030 759091])
-            ("org-defkey" code nil nil [759092 759147])
-            ("org-defkey" code nil nil [759148 759208])
-            ("org-defkey" code nil nil [759209 759277])
-            ("org-defkey" code nil nil [759278 759347])
-            ("org-defkey" code nil nil [759348 759410])
-            ("org-defkey" code nil nil [759411 759464])
-            ("org-defkey" code nil nil [759465 759535])
-            ("org-defkey" code nil nil [759536 759609])
-            ("org-defkey" code nil nil [759610 759664])
-            ("org-defkey" code nil nil [759665 759718])
-            ("org-defkey" code nil nil [759719 759765])
-            ("org-defkey" code nil nil [759766 759821])
-            ("org-defkey" code nil nil [759822 759890])
-            ("org-defkey" code nil nil [759891 759958])
-            ("org-defkey" code nil nil [759959 760017])
-            ("org-defkey" code nil nil [760018 760082])
-            ("org-defkey" code nil nil [760083 760157])
-            ("org-defkey" code nil nil [760158 760234])
-            ("org-defkey" code nil nil [760235 760295])
-            ("org-defkey" code nil nil [760296 760344])
-            ("org-defkey" code nil nil [760345 760400])
-            ("org-defkey" code nil nil [760401 760459])
-            ("org-defkey" code nil nil [760460 760519])
-            ("org-defkey" code nil nil [760520 760571])
-            ("org-defkey" code nil nil [760572 760632])
-            ("org-defkey" code nil nil [760633 760687])
-            ("org-defkey" code nil nil [760688 760746])
-            ("org-defkey" code nil nil [760747 760802])
-            ("org-defkey" code nil nil [760803 760857])
-            ("org-defkey" code nil nil [760858 760935])
-            ("org-defkey" code nil nil [760936 761007])
-            ("org-defkey" code nil nil [761008 761076])
-            ("org-defkey" code nil nil [761077 761125])
-            ("org-defkey" code nil nil [761126 761200])
-            ("org-defkey" code nil nil [761201 761272])
-            ("org-defkey" code nil nil [761273 761330])
-            ("org-defkey" code nil nil [761331 761391])
-            ("org-defkey" code nil nil [761392 761447])
-            ("org-defkey" code nil nil [761448 761509])
-            ("org-defkey" code nil nil [761510 761571])
-            ("org-defkey" code nil nil [761572 761633])
-            ("org-defkey" code nil nil [761634 761685])
-            ("org-defkey" code nil nil [761686 761736])
-            ("org-defkey" code nil nil [761737 761806])
-            ("org-defkey" code nil nil [761890 761947])
-            ("org-defkey" code nil nil [761948 762006])
-            ("org-defkey" code nil nil [762007 762066])
-            ("org-defkey" code nil nil [762068 762140])
-            ("org-defkey" code nil nil [762141 762195])
-            ("org-defkey" code nil nil [762196 762255])
-            ("org-defkey" code nil nil [762256 762316])
-            ("org-defkey" code nil nil [762317 762372])
-            ("org-defkey" code nil nil [762373 762429])
-            ("org-defkey" code nil nil [762430 762488])
-            ("org-defkey" code nil nil [762489 762548])
-            ("org-defkey" code nil nil [762549 762607])
-            ("org-defkey" code nil nil [762608 762667])
-            ("org-defkey" code nil nil [762668 762735])
-            ("org-defkey" code nil nil [762736 762802])
-            ("org-defkey" code nil nil [762803 762875])
-            ("org-defkey" code nil nil [762876 762944])
-            ("org-defkey" code nil nil [762945 763006])
-            ("org-defkey" code nil nil [763007 763065])
-            ("org-defkey" code nil nil [763066 763134])
-            ("org-defkey" code nil nil [763135 763191])
-            ("org-defkey" code nil nil [763192 763248])
-            ("org-defkey" code nil nil [763249 763318])
-            ("org-defkey" code nil nil [763319 763386])
-            ("org-defkey" code nil nil [763387 763465])
-            ("org-defkey" code nil nil [763467 763518])
-            ("org-defkey" code nil nil [763519 763575])
-            ("org-defkey" code nil nil [763576 763633])
-            ("org-defkey" code nil nil [763634 763690])
-            ("org-defkey" code nil nil [763691 763760])
-            ("define-key" code nil nil [763762 763815])
-            ("define-key" code nil nil [763817 763866])
-            ("define-key" code nil nil [763868 763926])
-            ("define-key" code nil nil [763927 763985])
-            ("define-key" code nil nil [763987 764045])
-            ("org-speed-commands-default" variable
-               (:constant-flag t
-                :default-value (quote (("Outline Navigation") ("n" org-speed-move-safe (quote org-next-visible-heading)) ("p" org-speed-move-safe (quote org-previous-visible-heading)) ("f" org-speed-move-safe (quote org-forward-heading-same-level)) ("b" org-speed-move-safe (quote org-backward-heading-same-level)) ("F" . org-next-block) ("B" . org-previous-block) ("u" org-speed-move-safe (quote outline-up-heading)) ("j" . org-goto) ("g" org-refile t) ("Outline Visibility") ("c" . org-cycle) ("C" . org-shifttab) (" " . org-display-outline-path) ("s" . org-narrow-to-subtree) ("=" . org-columns) ("Outline Structure Editing") ("U" . org-metaup) ("D" . org-metadown) ("r" . org-metaright) ("l" . org-metaleft) ("R" . org-shiftmetaright) ("L" . org-shiftmetaleft) ("i" progn (forward-char 1) (call-interactively (quote org-insert-heading-respect-content))) ("^" . org-sort) ("w" . org-refile) ("a" . org-archive-subtree-default-with-confirmation) ("@" . org-mark-subtree) ("#" . org-toggle-comment) ("Clock Commands") ("I" . org-clock-in) ("O" . org-clock-out) ("Meta Data Editing") ("t" . org-todo) ("," org-priority) ("0" org-priority 32) ("1" org-priority 65) ("2" org-priority 66) ("3" org-priority 67) (":" . org-set-tags-command) ("e" . org-set-effort) ("E" . org-inc-effort) ("W" lambda (m) (interactive "sMinutes before warning: ") (org-entry-put (point) "APPT_WARNTIME" m)) ("Agenda Views etc") ("v" . org-agenda) ("/" . org-sparse-tree) ("Misc") ("o" . org-open-at-point) ("?" . org-speed-command-help) ("<" org-agenda-set-restriction-lock (quote subtree)) (">" org-agenda-remove-restriction-lock))))
-                nil [764048 765927])
-            ("org-print-speed-command" function (:arguments ("e")) nil [765929 766245])
-            ("org-speed-command-help" function (:user-visible-flag t) nil [766247 766858])
-            ("org-speed-move-safe" function
-               (:user-visible-flag t
-                :arguments ("cmd"))
-                nil [766860 767222])
-            ("org-self-insert-command-undo-counter" variable nil nil [767224 767271])
-            ("org-table-auto-blank-field" variable nil nil [767273 767308])
-            ("org-speed-command" variable nil nil [767335 767365])
-            ("org-speed-command-activate" function (:arguments ("keys")) nil [767367 767813])
-            ("org-babel-speed-command-activate" function (:arguments ("keys")) nil [767815 768029])
-            ("org-speed-command-hook" variable (:default-value (quote (org-speed-command-activate org-babel-speed-command-activate))) nil [768031 768751])
-            ("org-self-insert-command" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [768753 771143])
-            ("org-check-before-invisible-edit" function (:arguments ("kind")) nil [771145 774191])
-            ("org-fix-tags-on-the-fly" function nil nil [774193 774516])
-            ("org-delete-backward-char" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [774518 775649])
-            ("org-delete-char" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [775651 776708])
-            ("put" code nil nil [776777 776938])
-            ("put" code nil nil [776939 777103])
-            ("put" code nil nil [777104 777155])
-            ("put" code nil nil [777156 777216])
-            ("put" code nil nil [777217 777256])
-            ("put" code nil nil [777308 777358])
-            ("put" code nil nil [777359 777412])
-            ("put" code nil nil [777413 777455])
-            ("put" code nil nil [777456 777507])
-            ("put" code nil nil [777561 777623])
-            ("put" code nil nil [777624 777689])
-            ("org-transpose-words" function (:user-visible-flag t) nil [777691 778008])
-            ("org-remap" code nil nil [778009 778071])
-            ("org-ctrl-c-ctrl-c-hook" variable nil nil [778073 778626])
-            ("org-ctrl-c-ctrl-c-final-hook" variable nil nil [778628 779182])
-            ("org-tab-first-hook" variable nil nil [779184 779653])
-            ("org-tab-after-check-for-table-hook" variable nil nil [779655 780069])
-            ("org-tab-after-check-for-cycling-hook" variable nil nil [780071 780431])
-            ("org-tab-before-tab-emulation-hook" variable nil nil [780433 780705])
-            ("org-metaleft-hook" variable nil nil [780707 780845])
-            ("org-metaright-hook" variable nil nil [780846 780986])
-            ("org-metaup-hook" variable nil nil [780987 781121])
-            ("org-metadown-hook" variable nil nil [781122 781260])
-            ("org-shiftmetaleft-hook" variable nil nil [781261 781406])
-            ("org-shiftmetaright-hook" variable nil nil [781407 781554])
-            ("org-shiftmetaup-hook" variable nil nil [781555 781696])
-            ("org-shiftmetadown-hook" variable nil nil [781697 781842])
-            ("org-metareturn-hook" variable nil nil [781843 781982])
-            ("org-shiftup-hook" variable nil nil [781983 782118])
-            ("org-shiftup-final-hook" variable nil nil [782119 782338])
-            ("org-shiftdown-hook" variable nil nil [782339 782478])
-            ("org-shiftdown-final-hook" variable nil nil [782479 782702])
-            ("org-shiftleft-hook" variable nil nil [782703 782842])
-            ("org-shiftleft-final-hook" variable nil nil [782843 783066])
-            ("org-shiftright-hook" variable nil nil [783067 783208])
-            ("org-shiftright-final-hook" variable nil nil [783209 783434])
-            ("org-modifier-cursor-error" function nil nil [783436 783639])
-            ("org-shiftselect-error" function nil nil [783641 783997])
-            ("org-call-for-shift-select" function (:arguments ("cmd")) nil [783999 784116])
-            ("org-shifttab" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [784118 784790])
-            ("org-shiftmetaleft" function (:user-visible-flag t) nil [784792 785459])
-            ("org-shiftmetaright" function (:user-visible-flag t) nil [785461 786125])
-            ("org-shiftmetaup" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [786127 786724])
-            ("org-shiftmetadown" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [786726 787355])
-            ("org-hidden-tree-error" function nil nil [787357 787484])
-            ("org-metaleft" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [787486 788732])
-            ("org-metaright" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [788734 790196])
-            ("org-check-for-hidden" function (:arguments ("what")) nil [790198 791152])
-            ("org-metaup" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [791154 792031])
-            ("org-metadown" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [792033 792922])
-            ("org-shiftup" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [792924 793973])
-            ("org-shiftdown" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [793975 795021])
-            ("org-shiftright" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [795023 796618])
-            ("org-shiftleft" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [796620 798232])
-            ("org-shiftcontrolright" function (:user-visible-flag t) nil [798234 798650])
-            ("org-shiftcontrolleft" function (:user-visible-flag t) nil [798652 799077])
-            ("org-shiftcontrolup" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [799079 799420])
-            ("org-shiftcontroldown" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [799422 799769])
-            ("org-increase-number-at-point" function
-               (:user-visible-flag t
-                :arguments ("inc"))
-                nil [799771 800461])
-            ("org-decrease-number-at-point" function
-               (:user-visible-flag t
-                :arguments ("inc"))
-                nil [800463 800700])
-            ("org-ctrl-c-ret" function (:user-visible-flag t) nil [800702 800946])
-            ("org-find-visible" function nil nil [800948 801111])
-            ("org-find-invisible" function nil nil [801112 801283])
-            ("org-copy-visible" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [801285 801723])
-            ("org-copy-special" function (:user-visible-flag t) nil [801725 802035])
-            ("org-cut-special" function (:user-visible-flag t) nil [802037 802340])
-            ("org-paste-special" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [802342 802685])
-            ("org-edit-special" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [802687 805579])
-            ("org-table-coordinate-overlays" variable nil nil [805581 805619])
-            ("org-ctrl-c-ctrl-c" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [805646 815215])
-            ("org-mode-restart" function nil nil [815217 815537])
-            ("org-kill-note-or-show-branches" function (:user-visible-flag t) nil [815539 815958])
-            ("org-delete-indentation" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [815960 817134])
-            ("org-open-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [817136 817530])
-            ("org-return" function
-               (:user-visible-flag t
-                :arguments ("indent"))
-                nil [817532 820920])
-            ("org-return-indent" function (:user-visible-flag t) nil [820922 821164])
-            ("org-ctrl-c-star" function (:user-visible-flag t) nil [821166 821519])
-            ("org-ctrl-c-minus" function (:user-visible-flag t) nil [821521 822062])
-            ("org-toggle-heading" function
-               (:user-visible-flag t
-                :arguments ("nstars"))
-                nil [822064 825739])
-            ("org-meta-return" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [825741 826308])
-            ("org-in-subtree-not-table-p" function nil nil [826328 826485])
-            ("easy-menu-define" code nil nil [826516 829484])
-            ("easy-menu-define" code nil nil [829486 838039])
-            ("org-info" function
-               (:user-visible-flag t
-                :arguments ("node"))
-                nil [838041 838228])
-            ("org-submit-bug-report" function (:user-visible-flag t) nil [838245 840669])
-            ("org-install-agenda-files-menu" function nil nil [840672 841398])
-            ("org-require-autoloaded-modules" function nil nil [841420 841590])
-            ("org-reload" function
-               (:user-visible-flag t
-                :arguments ("uncompiled"))
-                nil [841607 843463])
-            ("org-customize" function (:user-visible-flag t) nil [843480 843662])
-            ("org-create-customize-menu" function (:user-visible-flag t) nil [843664 844369])
-            ("org-get-at-eol" function (:arguments ("property" "n")) nil [844429 844585])
-            ("org-find-text-property-in-string" function (:arguments ("prop" "s")) nil [844587 844820])
-            ("org-display-warning" function (:arguments ("message")) nil [844822 844945])
-            ("org-eval" function (:arguments ("form")) nil [844947 845090])
-            ("org-in-clocktable-p" function nil nil [845092 845438])
-            ("org-in-verbatim-emphasis" function nil nil [845440 845603])
-            ("org-overlay-display" function (:arguments ("ovl" "text" "face" "evap")) nil [845605 845831])
-            ("org-overlay-before-string" function (:arguments ("ovl" "text" "face" "evap")) nil [845833 846078])
-            ("org-find-overlays" function (:arguments ("prop" "pos" "delete")) nil [846080 846410])
-            ("org-goto-marker-or-bmk" function (:arguments ("marker" "bookmark")) nil [846412 846901])
-            ("org-quote-csv-field" function (:arguments ("s")) nil [846903 847095])
-            ("org-force-self-insert" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [847097 847227])
-            ("org-shorten-string" function (:arguments ("s" "maxlength")) nil [847229 848047])
-            ("org-get-indentation" function (:arguments ("line")) nil [848049 848423])
-            ("org-get-string-indentation" function (:arguments ("s")) nil [848425 848783])
-            ("org-remove-tabs" function (:arguments ("s" "width")) nil [848785 849145])
-            ("org-fix-indentation" function (:arguments ("line" "ind")) nil [849147 849608])
-            ("org-remove-indentation" function (:arguments ("code" "n")) nil [849610 849917])
-            ("org-do-remove-indentation" function (:arguments ("n")) nil [849919 850912])
-            ("org-fill-template" function (:arguments ("template" "alist")) nil [850914 851325])
-            ("org-base-buffer" function (:arguments ("buffer")) nil [851327 851515])
-            ("org-wrap" function (:arguments ("string" "width" "lines")) nil [851517 852453])
-            ("org-do-wrap" function (:arguments ("words" "width")) nil [852455 852811])
-            ("org-quote-vert" function (:arguments ("s")) nil [852813 852953])
-            ("org-uuidgen-p" function (:arguments ("s")) nil [852955 853134])
-            ("org-in-src-block-p" function (:arguments ("inside")) nil [853136 853564])
-            ("org-context" function nil nil [853566 858112])
-            ("org-in-regexp" function (:arguments ("regexp" "nlines" "visually")) nil [858114 858997])
-            ("org-between-regexps-p" function (:arguments ("start-re" "end-re" "lim-up" "lim-down")) nil [858999 860232])
-            ("org-in-block-p" function (:arguments ("names")) nil [860234 860943])
-            ("org-occur-in-agenda-files" function
-               (:user-visible-flag t
-                :arguments ("regexp" "_nlines"))
-                nil [860945 861831])
-            ("add-hook" code nil nil [861833 861938])
-            ("org-occur-link-in-agenda-files" function (:user-visible-flag t) nil [861940 862297])
-            ("org-reverse-string" function (:arguments ("string")) nil [862299 862420])
-            ("org-uniquify-alist" function (:arguments ("alist")) nil [862481 862974])
-            ("org-delete-all" function (:arguments ("elts" "list")) nil [862976 863237])
-            ("org-back-over-empty-lines" function nil nil [863239 863641])
-            ("org-skip-whitespace" function nil nil [863643 863706])
-            ("org-point-in-group" function (:arguments ("point" "group" "context")) nil [863708 864162])
-            ("org-switch-to-buffer-other-window" function (:arguments ("args")) nil [864164 864422])
-            ("org-combine-plists" function (:arguments ("plists")) nil [864424 864909])
-            ("org-replace-escapes" function (:arguments ("string" "table")) nil [864911 866189])
-            ("org-find-base-buffer-visiting" function (:arguments ("file")) nil [866191 866462])
-            ("org-file-image-p" function (:arguments ("file")) nil [866574 866714])
-            ("org-get-cursor-date" function (:arguments ("with-time")) nil [866716 867864])
-            ("org-mark-subtree" function
-               (:user-visible-flag t
-                :arguments ("up"))
-                nil [867866 868506])
-            ("org-file-newer-than-p" function (:arguments ("file" "time")) nil [868508 869042])
-            ("org-compile-file" function (:arguments ("source" "process" "ext" "err-msg" "log-buf" "spec")) nil [869044 871483])
-            ("org-element-greater-elements" variable nil nil [871502 871539])
-            ("org--get-expected-indentation" function (:arguments ("element" "contentsp")) nil [871540 875724])
-            ("org--align-node-property" function nil nil [875726 876088])
-            ("org-indent-line" function (:user-visible-flag t) nil [876090 879378])
-            ("org-indent-region" function
-               (:user-visible-flag t
-                :arguments ("start" "end"))
-                nil [879380 884199])
-            ("org-indent-drawer" function (:user-visible-flag t) nil [884201 884724])
-            ("org-indent-block" function (:user-visible-flag t) nil [884726 885402])
-            ("org-setup-filling" function nil nil [885988 886854])
-            ("org-fill-line-break-nobreak-p" function nil nil [886856 887096])
-            ("org-fill-paragraph-with-timestamp-nobreak-p" function nil nil [887098 887293])
-            ("org-fill-n-macro-as-item-nobreak-p" function nil nil [887295 887594])
-            ("declare-function" code nil nil [887596 887645])
-            ("orgtbl-line-start-regexp" variable nil nil [887646 887679])
-            ("org-adaptive-fill-function" function nil nil [887700 890258])
-            ("declare-function" code nil nil [890260 890309])
-            ("message-cite-prefix-regexp" variable nil nil [890310 890345])
-            ("org-fill-element" function (:arguments ("justify")) nil [890365 894999])
-            ("org-fill-paragraph" function
-               (:user-visible-flag t
-                :arguments ("justify" "region"))
-                nil [895001 896934])
-            ("org-remap" code nil nil [896935 896995])
-            ("org-auto-fill-function" function nil nil [896997 897423])
-            ("org-comment-line-break-function" function (:arguments ("soft")) nil [897425 897886])
-            ("org-toggle-fixed-width" function (:user-visible-flag t) nil [897912 902996])
-            ("org-setup-comments-handling" function nil nil [903753 904149])
-            ("org-insert-comment" function nil nil [904151 904969])
-            ("comment-empty-lines" variable nil nil [904971 904999])
-            ("org-comment-or-uncomment-region" function (:arguments ("beg" "end" "_")) nil [905023 907691])
-            ("org-comment-dwim" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [907693 907946])
-            ("org-timestamp--to-internal-time" function (:arguments ("timestamp" "end")) nil [908081 908513])
-            ("org-timestamp-has-time-p" function (:arguments ("timestamp")) nil [908515 908655])
-            ("org-timestamp-format" function (:arguments ("timestamp" "format" "end" "utc")) nil [908657 909103])
-            ("org-timestamp-split-range" function (:arguments ("timestamp" "end")) nil [909105 910296])
-            ("org-timestamp-translate" function (:arguments ("timestamp" "boundary")) nil [910298 911308])
-            ("reftex-docstruct-symbol" variable nil nil [911330 911362])
-            ("org--rds" variable nil nil [911363 911380])
-            ("org-reftex-citation" function (:user-visible-flag t) nil [911382 912370])
-            ("org-beginning-of-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [912420 914885])
-            ("org-end-of-line" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [914887 916865])
-            ("define-key" code nil nil [916867 916922])
-            ("define-key" code nil nil [916923 916972])
-            ("org-backward-sentence" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [916974 917773])
-            ("org-forward-sentence" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [917775 919054])
-            ("define-key" code nil nil [919056 919111])
-            ("define-key" code nil nil [919112 919166])
-            ("org-kill-line" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [919168 919977])
-            ("define-key" code nil nil [919979 920026])
-            ("org-yank" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [920028 921310])
-            ("org-yank-generic" function (:arguments ("command" "arg")) nil [921312 923066])
-            ("org-yank-folding-would-swallow-text" function (:arguments ("beg" "end")) nil [923068 923585])
-            ("define-key" code nil nil [923587 923629])
-            ("org-truely-invisible-p" function nil nil [923631 923871])
-            ("org-invisible-p2" function nil nil [923873 924180])
-            ("org-back-to-heading" function (:arguments ("invisible-ok")) nil [924182 924475])
-            ("org-before-first-heading-p" function nil nil [924477 924638])
-            ("org-at-heading-p" function (:arguments ("ignored")) nil [924640 924711])
-            ("org-in-commented-heading-p" function (:arguments ("no-inheritance")) nil [924713 925295])
-            ("org-at-comment-p" function nil nil [925297 925458])
-            ("org-at-drawer-p" function nil nil [925460 925607])
-            ("org-at-block-p" function nil nil [925609 925753])
-            ("org-point-at-end-of-empty-headline" function nil nil [925755 926154])
-            ("org-at-heading-or-item-p" function nil nil [926156 926233])
-            ("org-at-target-p" function nil nil [926235 926348])
-            ("defalias" code nil nil [926399 926443])
-            ("org-up-heading-all" function (:arguments ("arg")) nil [926445 926679])
-            ("org-up-heading-safe" function nil nil [926681 927337])
-            ("org-first-sibling-p" function (:user-visible-flag t) nil [927339 927717])
-            ("org-goto-sibling" function (:arguments ("previous")) nil [927719 928449])
-            ("org-show-siblings" function nil nil [928451 928688])
-            ("org-goto-first-child" function nil nil [928690 929154])
-            ("org-show-hidden-entry" function nil nil [929156 929280])
-            ("org-flag-heading" function (:arguments ("flag" "entry")) nil [929282 929786])
-            ("org-get-next-sibling" function nil nil [929788 930224])
-            ("org-get-last-sibling" function nil nil [930226 930681])
-            ("org-end-of-subtree" function (:arguments ("invisible-ok" "to-heading")) nil [930683 932138])
-            ("org-end-of-meta-data" function (:arguments ("full")) nil [932140 932983])
-            ("org-forward-heading-same-level" function
-               (:user-visible-flag t
-                :arguments ("arg" "invisible-ok"))
-                nil [932985 934151])
-            ("org-backward-heading-same-level" function
-               (:user-visible-flag t
-                :arguments ("arg" "invisible-ok"))
-                nil [934153 934441])
-            ("org-next-visible-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [934443 934775])
-            ("org-previous-visible-heading" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [934777 935125])
-            ("org-next-block" function
-               (:user-visible-flag t
-                :arguments ("arg" "backward" "block-regexp"))
-                nil [935127 936571])
-            ("org-previous-block" function
-               (:user-visible-flag t
-                :arguments ("arg" "block-regexp"))
-                nil [936573 936846])
-            ("org-forward-paragraph" function (:user-visible-flag t) nil [936848 940377])
-            ("org-backward-paragraph" function (:user-visible-flag t) nil [940379 943267])
-            ("org-forward-element" function (:user-visible-flag t) nil [943269 944061])
-            ("org-backward-element" function (:user-visible-flag t) nil [944063 945343])
-            ("org-up-element" function (:user-visible-flag t) nil [945345 945854])
-            ("org-down-element" function (:user-visible-flag t) nil [945856 946475])
-            ("org-drag-element-backward" function (:user-visible-flag t) nil [946477 947716])
-            ("org-drag-element-forward" function (:user-visible-flag t) nil [947718 949154])
-            ("org-drag-line-forward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [949156 949501])
-            ("org-drag-line-backward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [949503 949640])
-            ("org-mark-element" function (:user-visible-flag t) nil [949642 950350])
-            ("org-narrow-to-element" function (:user-visible-flag t) nil [950352 950924])
-            ("org-transpose-element" function (:user-visible-flag t) nil [950926 951227])
-            ("org-unindent-buffer" function (:user-visible-flag t) nil [951229 952038])
-            ("org-show-children" function
-               (:user-visible-flag t
-                :arguments ("level"))
-                nil [952040 953554])
-            ("org-show-subtree" function (:user-visible-flag t) nil [953556 953748])
-            ("org-show-entry" function (:user-visible-flag t) nil [953750 954233])
-            ("org-make-options-regexp" function (:arguments ("kwds" "extra")) nil [954235 954575])
-            ("defvar-local" code nil nil [954648 954725])
-            ("org-imenu-new-marker" function (:arguments ("pos")) nil [954727 954940])
-            ("org-imenu-get-tree" function nil nil [954942 955940])
-            ("eval-after-load" code nil nil [955942 956108])
-            ("org-link-display-format" function (:arguments ("s")) nil [956110 956462])
-            ("org-toggle-link-display" function (:user-visible-flag t) nil [956464 956844])
-            ("org-speedbar-restriction-lock-overlay" variable (:default-value (make-overlay 1 1)) nil [956867 956993])
-            ("overlay-put" code nil nil [956994 957086])
-            ("overlay-put" code nil nil [957087 957201])
-            ("delete-overlay" code nil nil [957202 957256])
-            ("org-speedbar-set-agenda-restriction" function (:user-visible-flag t) nil [957258 958624])
-            ("speedbar-file-key-map" variable nil nil [958626 958656])
-            ("declare-function" code nil nil [958657 958731])
-            ("eval-after-load" code nil nil [958732 959282])
-            ("org--flyspell-object-check-p" function (:arguments ("element")) nil [959338 960182])
-            ("org-mode-flyspell-verify" function nil nil [960184 962566])
-            ("put" code nil nil [962567 962633])
-            ("org-remove-flyspell-overlays-in" function (:arguments ("beg" "end")) nil [962635 962864])
-            ("flyspell-delayed-commands" variable nil nil [962866 962900])
-            ("eval-after-load" code nil nil [962901 962998])
-            ("eval-after-load" code nil nil [963066 963411])
-            ("eval-after-load" code nil nil [963472 963642])
-            ("eval-after-load" code nil nil [963697 963936])
-            ("org-bookmark-jump-unhide" function nil nil [963938 964231])
-            ("org-mark-jump-unhide" function nil nil [964233 964442])
-            ("eval-after-load" code nil nil [964444 964622])
-            ("eval-after-load" code nil nil [964624 964806])
-            ("eval-after-load" code nil nil [964808 964982])
-            ("session-globals-exclude" variable nil nil [965032 965064])
-            ("eval-after-load" code nil nil [965065 965149])
-            ("org" package nil nil [965167 965181])
-            ("run-hooks" code nil nil [965183 965209]))          
-      :file "org.el"
-      :pointmax 965232
-      :fsize 965231
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax '((close-paren 22023 . 22024) (symbol 21801 . 21817) (open-paren 21800 . 21801) (close-paren 3095 . 3096) (symbol 3058 . 3075) (open-paren 3057 . 3058)))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-with-gensyms" function (:arguments ("symbols" "body")) nil [1299 1516])
-            ("org-string-nw-p" function (:arguments ("s")) nil [1518 1700])
-            ("org-split-string" function (:arguments ("string" "separators")) nil [1702 2299])
-            ("org-string-display" function (:arguments ("string")) nil [2301 4672])
-            ("org-string-width" function (:arguments ("string")) nil [4674 4922])
-            ("org-not-nil" function (:arguments ("v")) nil [4924 5069])
-            ("org-preserve-lc" function (:arguments ("body")) nil [5071 5332])
-            ("org-unmodified" function (:arguments ("body")) nil [5458 5829])
-            ("org-without-partial-completion" function (:arguments ("body")) nil [5831 6155])
-            ("org-with-point-at" function (:arguments ("pom" "body")) nil [6157 6528])
-            ("org-with-remote-undo" function (:arguments ("buffer" "body")) nil [6530 7515])
-            ("org-no-read-only" function (:arguments ("body")) nil [7517 7656])
-            ("org-rm-props" variable
-               (:constant-flag t
-                :default-value (quote (invisible t face t keymap t intangible t mouse-face t rear-nonsticky t mouse-map t fontified t org-emphasis t)))
-                nil [7658 7877])
-            ("org-no-properties" function (:arguments ("s" "restricted")) nil [7879 8179])
-            ("org-get-alist-option" function (:arguments ("option" "key")) nil [8181 8397])
-            ("org-check-external-command" function (:arguments ("cmd" "use" "no-error")) nil [8399 8912])
-            ("org-last" function (:arguments ("list")) nil [8914 8997])
-            ("org-let" function (:arguments ("list" "body")) nil [8999 9070])
-            ("put" code nil nil [9071 9109])
-            ("org-let2" function (:arguments ("list1" "list2" "body")) nil [9111 9223])
-            ("put" code nil nil [9224 9263])
-            ("org-call-with-arg" function (:arguments ("command" "arg")) nil [9265 9435])
-            ("org-current-line" function (:arguments ("pos")) nil [9437 9652])
-            ("org-goto-line" function (:arguments ("N")) nil [9654 9769])
-            ("org-current-line-string" function (:arguments ("to-here")) nil [9771 9897])
-            ("org-pos-in-match-range" function (:arguments ("pos" "n")) nil [9899 10034])
-            ("org-match-line" function (:arguments ("regexp")) nil [10036 10189])
-            ("org-plist-delete" function (:arguments ("plist" "property")) nil [10191 10474])
-            ("org-save-outline-visibility" function (:arguments ("use-markers" "body")) nil [10476 11223])
-            ("org-with-wide-buffer" function (:arguments ("body")) nil [11225 11425])
-            ("org-with-limited-levels" function (:arguments ("body")) nil [11427 11958])
-            ("org-outline-regexp" variable nil nil [11960 11987])
-            ("org-odd-levels-only" variable nil nil [12008 12036])
-            ("org-inlinetask-min-level" variable nil nil [12057 12090])
-            ("org-get-limited-outline-regexp" function nil nil [12122 12583])
-            ("org-eval-in-environment" function (:arguments ("environment" "form")) nil [12585 12723])
-            ("org-make-parameter-alist" function (:arguments ("flat")) nil [12725 13039])
-            ("org-load-noerror-mustsuffix" function (:arguments ("file")) nil [13056 13208])
-            ("org-unbracket-string" function (:arguments ("pre" "post" "string")) nil [13210 13527])
-            ("org-read-function" function (:arguments ("prompt" "allow-empty?")) nil [13529 13897])
-            ("org-unique-local-variables" variable
-               (:constant-flag t
-                :default-value (quote (org-element--cache org-element--cache-objects org-element--cache-sync-keys org-element--cache-sync-requests org-element--cache-sync-timer)))
-                nil [13899 14169])
-            ("org-get-local-variables" function nil nil [14171 14741])
-            ("org-clone-local-variables" function (:arguments ("from-buffer" "regexp")) nil [14743 15217])
-            ("org-macs" package nil nil [15220 15239]))          
-      :file "org-macs.el"
-      :pointmax 15267
-      :fsize 15266
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1159 1176])
-            ("org-macs" include nil nil [1177 1196])
-            ("declare-function" code nil nil [1198 1243])
-            ("declare-function" code nil nil [1244 1300])
-            ("declare-function" code nil nil [1301 1360])
-            ("declare-function" code nil nil [1361 1440])
-            ("declare-function" code nil nil [1441 1507])
-            ("declare-function" code nil nil [1508 1575])
-            ("declare-function" code nil nil [1576 1628])
-            ("declare-function" code nil nil [1629 1710])
-            ("org-table-any-border-regexp" variable nil nil [1712 1748])
-            ("org-table-dataline-regexp" variable nil nil [1749 1783])
-            ("org-table-tab-recognizes-table.el" variable nil nil [1784 1826])
-            ("org-table1-hline-regexp" variable nil nil [1827 1859])
-            ("when" code nil nil [1893 2442])
-            ("unless" code nil nil [2444 2785])
-            ("define-obsolete-function-alias" code nil nil [2895 2961])
-            ("define-obsolete-function-alias" code nil nil [2962 3028])
-            ("define-obsolete-function-alias" code nil nil [3029 3111])
-            ("define-obsolete-function-alias" code nil nil [3112 3194])
-            ("define-obsolete-function-alias" code nil nil [3195 3267])
-            ("define-obsolete-function-alias" code nil nil [3268 3346])
-            ("define-obsolete-function-alias" code nil nil [3347 3421])
-            ("define-obsolete-function-alias" code nil nil [3422 3492])
-            ("define-obsolete-function-alias" code nil nil [3493 3571])
-            ("define-obsolete-function-alias" code nil nil [3572 3654])
-            ("define-obsolete-function-alias" code nil nil [3655 3729])
-            ("define-obsolete-function-alias" code nil nil [3730 3804])
-            ("define-obsolete-function-alias" code nil nil [3805 3907])
-            ("define-obsolete-function-alias" code nil nil [3908 3978])
-            ("define-obsolete-function-alias" code nil nil [3979 4085])
-            ("org-re" function (:arguments ("s")) nil [4087 4250])
-            ("define-obsolete-function-alias" code nil nil [4328 4391])
-            ("define-obsolete-function-alias" code nil nil [4392 4455])
-            ("define-obsolete-function-alias" code nil nil [4456 4523])
-            ("define-obsolete-function-alias" code nil nil [4524 4589])
-            ("define-obsolete-function-alias" code nil nil [4590 4661])
-            ("define-obsolete-function-alias" code nil nil [4662 4741])
-            ("define-obsolete-function-alias" code nil nil [4742 4803])
-            ("define-obsolete-function-alias" code nil nil [4804 4868])
-            ("org-sublist" function (:arguments ("list" "start" "end")) nil [4870 5011])
-            ("make-obsolete" code nil nil [5012 5125])
-            ("define-obsolete-function-alias" code nil nil [5170 5254])
-            ("define-obsolete-function-alias" code nil nil [5255 5349])
-            ("define-obsolete-function-alias" code nil nil [5350 5428])
-            ("define-obsolete-function-alias" code nil nil [5429 5511])
-            ("define-obsolete-function-alias" code nil nil [5512 5590])
-            ("define-obsolete-function-alias" code nil nil [5591 5674])
-            ("define-obsolete-function-alias" code nil nil [5675 5752])
-            ("define-obsolete-function-alias" code nil nil [5753 5833])
-            ("define-obsolete-function-alias" code nil nil [5834 5934])
-            ("define-obsolete-function-alias" code nil nil [5935 6013])
-            ("define-obsolete-function-alias" code nil nil [6081 6181])
-            ("define-obsolete-variable-alias" code nil nil [6182 6301])
-            ("define-obsolete-variable-alias" code nil nil [6302 6417])
-            ("define-obsolete-function-alias" code nil nil [6418 6489])
-            ("define-obsolete-function-alias" code nil nil [6490 6568])
-            ("define-obsolete-function-alias" code nil nil [6569 6643])
-            ("define-obsolete-function-alias" code nil nil [6644 6740])
-            ("define-obsolete-function-alias" code nil nil [6741 6828])
-            ("define-obsolete-function-alias" code nil nil [6829 6912])
-            ("define-obsolete-function-alias" code nil nil [6913 6992])
-            ("define-obsolete-function-alias" code nil nil [6993 7078])
-            ("define-obsolete-variable-alias" code nil nil [7079 7190])
-            ("define-obsolete-function-alias" code nil nil [7191 7290])
-            ("define-obsolete-function-alias" code nil nil [7291 7382])
-            ("define-obsolete-variable-alias" code nil nil [7383 7481])
-            ("define-obsolete-variable-alias" code nil nil [7482 7562])
-            ("define-obsolete-variable-alias" code nil nil [7563 7666])
-            ("define-obsolete-function-alias" code nil nil [7667 7748])
-            ("define-obsolete-function-alias" code nil nil [7749 7832])
-            ("define-obsolete-function-alias" code nil nil [7833 7933])
-            ("define-obsolete-variable-alias" code nil nil [7934 8060])
-            ("define-obsolete-function-alias" code nil nil [8062 8130])
-            ("define-obsolete-variable-alias" code nil nil [8131 8201])
-            ("define-obsolete-function-alias" code nil nil [8202 8300])
-            ("define-obsolete-variable-alias" code nil nil [8301 8394])
-            ("define-obsolete-function-alias" code nil nil [8395 8487])
-            ("define-obsolete-function-alias" code nil nil [8488 8564])
-            ("define-obsolete-function-alias" code nil nil [8565 8641])
-            ("org-in-fixed-width-region-p" function nil nil [8643 8811])
-            ("make-obsolete" code nil nil [8812 8924])
-            ("org-compatible-face" function (:arguments ("inherits" "specs")) nil [8926 9272])
-            ("make-obsolete" code nil nil [9273 9340])
-            ("org-add-link-type" function (:arguments ("type" "follow" "export")) nil [9342 10665])
-            ("make-obsolete" code nil nil [10667 10752])
-            ("org-table-recognize-table.el" function nil nil [10754 11502])
-            ("make-obsolete" code nil nil [11561 11709])
-            ("org-remove-angle-brackets" function (:arguments ("s")) nil [11711 11783])
-            ("make-obsolete" code nil nil [11784 11858])
-            ("org-remove-double-quotes" function (:arguments ("s")) nil [11860 11933])
-            ("make-obsolete" code nil nil [11934 12007])
-            ("org-publish-sitemap-file-entry-format" variable (:default-value "%t") nil [12009 12318])
-            ("make-obsolete-variable" code nil nil [12319 12465])
-            ("org-agenda-skip-regexp" variable nil nil [12467 12498])
-            ("org-agenda-skip-entry-when-regexp-matches" function nil nil [12499 13099])
-            ("org-agenda-skip-subtree-when-regexp-matches" function nil nil [13101 13666])
-            ("org-agenda-skip-entry-when-regexp-matches-in-subtree" function nil nil [13668 14441])
-            ("define-obsolete-function-alias" code nil nil [14443 14546])
-            ("define-obsolete-function-alias" code nil nil [14548 14646])
-            ("define-obsolete-function-alias" code nil nil [14648 14749])
-            ("make-obsolete-variable" code nil nil [14751 14850])
-            ("make-obsolete-variable" code nil nil [14852 14959])
-            ("make-obsolete-variable" code nil nil [14961 15071])
-            ("make-obsolete-variable" code nil nil [15073 15185])
-            ("define-obsolete-function-alias" code nil nil [15187 15280])
-            ("define-obsolete-variable-alias" code nil nil [15282 15385])
-            ("define-obsolete-variable-alias" code nil nil [15387 15495])
-            ("make-obsolete" code nil nil [15618 15750])
-            ("eval-after-load" code nil nil [15779 15913])
-            ("org-version-check" function (:arguments ("version" "feature" "level")) nil [15962 16832])
-            ("org-get-x-clipboard" function (:arguments ("value")) nil [16834 17398])
-            ("org-add-props" function (:arguments ("string" "plist" "props")) nil [17400 17758])
-            ("put" code nil nil [17759 17803])
-            ("org-fit-window-to-buffer" function (:arguments ("window" "max-height" "min-height" "shrink-only")) nil [17805 18711])
-            ("defalias" code nil nil [18761 18886])
-            ("org-ignore-region" variable nil nil [18914 19001])
-            ("org-region-active-p" function nil nil [19003 19189])
-            ("org-cursor-to-region-beginning" function nil nil [19191 19343])
-            ("org-remove-from-invisibility-spec" function (:arguments ("arg")) nil [19377 19701])
-            ("org-in-invisibility-spec-p" function (:arguments ("arg")) nil [19703 19878])
-            ("org-move-to-column" function (:arguments ("column" "force" "_buffer")) nil [19880 20226])
-            ("org-find-library-dir" function (:arguments ("library")) nil [20228 20328])
-            ("org-count-lines" function (:arguments ("s")) nil [20330 20592])
-            ("org-kill-new" function (:arguments ("string" "args")) nil [20594 20775])
-            ("defalias" code nil nil [20833 21012])
-            ("defalias" code nil nil [21060 21271])
-            ("org-no-popups" function (:arguments ("body")) nil [21273 21701])
-            ("org-check-version" function nil nil [21718 22502])
-            ("org-with-silent-modifications" function (:arguments ("body")) nil [22504 22672])
-            ("def-edebug-spec" code nil nil [22673 22727])
-            ("org-define-error" function (:arguments ("name" "message")) nil [22773 23186])
-            ("unless" code nil nil [23188 23670])
-            ("org-compat" package nil nil [23672 23693]))          
-      :file "org-compat.el"
-      :pointmax 23723
-      :fsize 23722
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("declare-function" code nil nil [1102 1162])
-            ("declare-function" code nil nil [1163 1223])
-            ("org-entities" customgroup (:user-visible-flag t) nil [1225 1333])
-            ("org-entities--user-safe-p" function (:arguments ("v")) nil [1335 1675])
-            ("org-entities-user" variable nil nil [1677 3031])
-            ("org-entities" variable
-               (:constant-flag t
-                :default-value (append (quote ("* Letters" "** Latin" ("Agrave" "\\`{A}" nil "&Agrave;" "A" "À" "À") ("agrave" "\\`{a}" nil "&agrave;" "a" "à" "à") ("Aacute" "\\'{A}" nil "&Aacute;" "A" "Á" "Á") ("aacute" "\\'{a}" nil "&aacute;" "a" "á" "á") ("Acirc" "\\^{A}" nil "&Acirc;" "A" "Â" "Â") ("acirc" "\\^{a}" nil "&acirc;" "a" "â" "â") ("Amacr" "\\bar{A}" nil "&Amacr;" "A" "Ã" "Ã") ("amacr" "\\bar{a}" nil "&amacr;" "a" "ã" "ã") ("Atilde" "\\~{A}" nil "&Atilde;" "A" "Ã" "Ã") ("atilde" "\\~{a}" nil "&atilde;" "a" "ã" "ã") ("Auml" "\\\"{A}" nil "&Auml;" "Ae" "Ä" "Ä") ("auml" "\\\"{a}" nil "&auml;" "ae" "ä" "ä") ("Aring" "\\AA{}" nil "&Aring;" "A" "Å" "Å") ("AA" "\\AA{}" nil "&Aring;" "A" "Å" "Å") ("aring" "\\aa{}" nil "&aring;" "a" "å" "å") ("AElig" "\\AE{}" nil "&AElig;" "AE" "Æ" "Æ") ("aelig" "\\ae{}" nil "&aelig;" "ae" "æ" "æ") ("Ccedil" "\\c{C}" nil "&Ccedil;" "C" "Ç" "Ç") ("ccedil" "\\c{c}" nil "&ccedil;" "c" "ç" "ç") ("Egrave" "\\`{E}" nil "&Egrave;" "E" "È" "È") ("egrave" "\\`{e}" nil "&egrave;" "e" "è" "è") ("Eacute" "\\'{E}" nil "&Eacute;" "E" "É" "É") ("eacute" "\\'{e}" nil "&eacute;" "e" "é" "é") ("Ecirc" "\\^{E}" nil "&Ecirc;" "E" "Ê" "Ê") ("ecirc" "\\^{e}" nil "&ecirc;" "e" "ê" "ê") ("Euml" "\\\"{E}" nil "&Euml;" "E" "Ë" "Ë") ("euml" "\\\"{e}" nil "&euml;" "e" "ë" "ë") ("Igrave" "\\`{I}" nil "&Igrave;" "I" "Ì" "Ì") ("igrave" "\\`{i}" nil "&igrave;" "i" "ì" "ì") ("Iacute" "\\'{I}" nil "&Iacute;" "I" "Í" "Í") ("iacute" "\\'{i}" nil "&iacute;" "i" "í" "í") ("Icirc" "\\^{I}" nil "&Icirc;" "I" "Î" "Î") ("icirc" "\\^{i}" nil "&icirc;" "i" "î" "î") ("Iuml" "\\\"{I}" nil "&Iuml;" "I" "Ï" "Ï") ("iuml" "\\\"{i}" nil "&iuml;" "i" "ï" "ï") ("Ntilde" "\\~{N}" nil "&Ntilde;" "N" "Ñ" "Ñ") ("ntilde" "\\~{n}" nil "&ntilde;" "n" "ñ" "ñ") ("Ograve" "\\`{O}" nil "&Ograve;" "O" "Ò" "Ò") ("ograve" "\\`{o}" nil "&ograve;" "o" "ò" "ò") ("Oacute" "\\'{O}" nil "&Oacute;" "O" "Ó" "Ó") ("oacute" "\\'{o}" nil "&oacute;" "o" "ó" "ó") ("Ocirc" "\\^{O}" nil "&Ocirc;" "O" "Ô" "Ô") ("ocirc" "\\^{o}" nil "&ocirc;" "o" "ô" "ô") ("Otilde" "\\~{O}" nil "&Otilde;" "O" "Õ" "Õ") ("otilde" "\\~{o}" nil "&otilde;" "o" "õ" "õ") ("Ouml" "\\\"{O}" nil "&Ouml;" "Oe" "Ö" "Ö") ("ouml" "\\\"{o}" nil "&ouml;" "oe" "ö" "ö") ("Oslash" "\\O" nil "&Oslash;" "O" "Ø" "Ø") ("oslash" "\\o{}" nil "&oslash;" "o" "ø" "ø") ("OElig" "\\OE{}" nil "&OElig;" "OE" "OE" "Œ") ("oelig" "\\oe{}" nil "&oelig;" "oe" "oe" "œ") ("Scaron" "\\v{S}" nil "&Scaron;" "S" "S" "Š") ("scaron" "\\v{s}" nil "&scaron;" "s" "s" "š") ("szlig" "\\ss{}" nil "&szlig;" "ss" "ß" "ß") ("Ugrave" "\\`{U}" nil "&Ugrave;" "U" "Ù" "Ù") ("ugrave" "\\`{u}" nil "&ugrave;" "u" "ù" "ù") ("Uacute" "\\'{U}" nil "&Uacute;" "U" "Ú" "Ú") ("uacute" "\\'{u}" nil "&uacute;" "u" "ú" "ú") ("Ucirc" "\\^{U}" nil "&Ucirc;" "U" "Û" "Û") ("ucirc" "\\^{u}" nil "&ucirc;" "u" "û" "û") ("Uuml" "\\\"{U}" nil "&Uuml;" "Ue" "Ü" "Ü") ("uuml" "\\\"{u}" nil "&uuml;" "ue" "ü" "ü") ("Yacute" "\\'{Y}" nil "&Yacute;" "Y" "Ý" "Ý") ("yacute" "\\'{y}" nil "&yacute;" "y" "ý" "ý") ("Yuml" "\\\"{Y}" nil "&Yuml;" "Y" "Y" "Ÿ") ("yuml" "\\\"{y}" nil "&yuml;" "y" "ÿ" "ÿ") "** Latin (special face)" ("fnof" "\\textit{f}" nil "&fnof;" "f" "f" "ƒ") ("real" "\\Re" t "&real;" "R" "R" "ℜ") ("image" "\\Im" t "&image;" "I" "I" "ℑ") ("weierp" "\\wp" t "&weierp;" "P" "P" "℘") ("ell" "\\ell" t "&ell;" "ell" "ell" "ℓ") ("imath" "\\imath" t "&imath;" "[dotless i]" "dotless i" "ı") ("jmath" "\\jmath" t "&jmath;" "[dotless j]" "dotless j" "ȷ") "** Greek" ("Alpha" "A" nil "&Alpha;" "Alpha" "Alpha" "Α") ("alpha" "\\alpha" t "&alpha;" "alpha" "alpha" "α") ("Beta" "B" nil "&Beta;" "Beta" "Beta" "Β") ("beta" "\\beta" t "&beta;" "beta" "beta" "β") ("Gamma" "\\Gamma" t "&Gamma;" "Gamma" "Gamma" "Γ") ("gamma" "\\gamma" t "&gamma;" "gamma" "gamma" "γ") ("Delta" "\\Delta" t "&Delta;" "Delta" "Delta" "Δ") ("delta" "\\delta" t "&delta;" "delta" "delta" "δ") ("Epsilon" "E" nil "&Epsilon;" "Epsilon" "Epsilon" "Ε") ("epsilon" "\\epsilon" t "&epsilon;" "epsilon" "epsilon" "ε") ("varepsilon" "\\varepsilon" t "&epsilon;" "varepsilon" "varepsilon" "ε") ("Zeta" "Z" nil "&Zeta;" "Zeta" "Zeta" "Ζ") ("zeta" "\\zeta" t "&zeta;" "zeta" "zeta" "ζ") ("Eta" "H" nil "&Eta;" "Eta" "Eta" "Η") ("eta" "\\eta" t "&eta;" "eta" "eta" "η") ("Theta" "\\Theta" t "&Theta;" "Theta" "Theta" "Θ") ("theta" "\\theta" t "&theta;" "theta" "theta" "θ") ("thetasym" "\\vartheta" t "&thetasym;" "theta" "theta" "ϑ") ("vartheta" "\\vartheta" t "&thetasym;" "theta" "theta" "ϑ") ("Iota" "I" nil "&Iota;" "Iota" "Iota" "Ι") ("iota" "\\iota" t "&iota;" "iota" "iota" "ι") ("Kappa" "K" nil "&Kappa;" "Kappa" "Kappa" "Κ") ("kappa" "\\kappa" t "&kappa;" "kappa" "kappa" "κ") ("Lambda" "\\Lambda" t "&Lambda;" "Lambda" "Lambda" "Λ") ("lambda" "\\lambda" t "&lambda;" "lambda" "lambda" "λ") ("Mu" "M" nil "&Mu;" "Mu" "Mu" "Μ") ("mu" "\\mu" t "&mu;" "mu" "mu" "μ") ("nu" "\\nu" t "&nu;" "nu" "nu" "ν") ("Nu" "N" nil "&Nu;" "Nu" "Nu" "Ν") ("Xi" "\\Xi" t "&Xi;" "Xi" "Xi" "Ξ") ("xi" "\\xi" t "&xi;" "xi" "xi" "ξ") ("Omicron" "O" nil "&Omicron;" "Omicron" "Omicron" "Ο") ("omicron" "\\textit{o}" nil "&omicron;" "omicron" "omicron" "ο") ("Pi" "\\Pi" t "&Pi;" "Pi" "Pi" "Π") ("pi" "\\pi" t "&pi;" "pi" "pi" "π") ("Rho" "P" nil "&Rho;" "Rho" "Rho" "Ρ") ("rho" "\\rho" t "&rho;" "rho" "rho" "ρ") ("Sigma" "\\Sigma" t "&Sigma;" "Sigma" "Sigma" "Σ") ("sigma" "\\sigma" t "&sigma;" "sigma" "sigma" "σ") ("sigmaf" "\\varsigma" t "&sigmaf;" "sigmaf" "sigmaf" "ς") ("varsigma" "\\varsigma" t "&sigmaf;" "varsigma" "varsigma" "ς") ("Tau" "T" nil "&Tau;" "Tau" "Tau" "Τ") ("Upsilon" "\\Upsilon" t "&Upsilon;" "Upsilon" "Upsilon" "Υ") ("upsih" "\\Upsilon" t "&upsih;" "upsilon" "upsilon" "ϒ") ("upsilon" "\\upsilon" t "&upsilon;" "upsilon" "upsilon" "υ") ("Phi" "\\Phi" t "&Phi;" "Phi" "Phi" "Φ") ("phi" "\\phi" t "&phi;" "phi" "phi" "ɸ") ("varphi" "\\varphi" t "&varphi;" "varphi" "varphi" "φ") ("Chi" "X" nil "&Chi;" "Chi" "Chi" "Χ") ("chi" "\\chi" t "&chi;" "chi" "chi" "χ") ("acutex" "\\acute x" t "&acute;x" "'x" "'x" "𝑥́") ("Psi" "\\Psi" t "&Psi;" "Psi" "Psi" "Ψ") ("psi" "\\psi" t "&psi;" "psi" "psi" "ψ") ("tau" "\\tau" t "&tau;" "tau" "tau" "τ") ("Omega" "\\Omega" t "&Omega;" "Omega" "Omega" "Ω") ("omega" "\\omega" t "&omega;" "omega" "omega" "ω") ("piv" "\\varpi" t "&piv;" "omega-pi" "omega-pi" "ϖ") ("varpi" "\\varpi" t "&piv;" "omega-pi" "omega-pi" "ϖ") ("partial" "\\partial" t "&part;" "[partial differential]" "[partial differential]" "∂") "** Hebrew" ("alefsym" "\\aleph" t "&alefsym;" "aleph" "aleph" "ℵ") ("aleph" "\\aleph" t "&aleph;" "aleph" "aleph" "ℵ") ("gimel" "\\gimel" t "&gimel;" "gimel" "gimel" "ℷ") ("beth" "\\beth" t "&beth;" "beth" "beth" "ב") ("dalet" "\\daleth" t "&daleth;" "dalet" "dalet" "ד") "** Dead languages" ("ETH" "\\DH{}" nil "&ETH;" "D" "Ð" "Ð") ("eth" "\\dh{}" nil "&eth;" "dh" "ð" "ð") ("THORN" "\\TH{}" nil "&THORN;" "TH" "Þ" "Þ") ("thorn" "\\th{}" nil "&thorn;" "th" "þ" "þ") "* Punctuation" "** Dots and Marks" ("dots" "\\dots{}" nil "&hellip;" "..." "..." "…") ("cdots" "\\cdots{}" t "&ctdot;" "..." "..." "⋯") ("hellip" "\\dots{}" nil "&hellip;" "..." "..." "…") ("middot" "\\textperiodcentered{}" nil "&middot;" "." "·" "·") ("iexcl" "!`" nil "&iexcl;" "!" "¡" "¡") ("iquest" "?`" nil "&iquest;" "?" "¿" "¿") "** Dash-like" ("shy" "\\-" nil "&shy;" "" "" "") ("ndash" "--" nil "&ndash;" "-" "-" "–") ("mdash" "---" nil "&mdash;" "--" "--" "—") "** Quotations" ("quot" "\\textquotedbl{}" nil "&quot;" "\"" "\"" "\"") ("acute" "\\textasciiacute{}" nil "&acute;" "'" "´" "´") ("ldquo" "\\textquotedblleft{}" nil "&ldquo;" "\"" "\"" "“") ("rdquo" "\\textquotedblright{}" nil "&rdquo;" "\"" "\"" "”") ("bdquo" "\\quotedblbase{}" nil "&bdquo;" "\"" "\"" "„") ("lsquo" "\\textquoteleft{}" nil "&lsquo;" "`" "`" "‘") ("rsquo" "\\textquoteright{}" nil "&rsquo;" "'" "'" "’") ("sbquo" "\\quotesinglbase{}" nil "&sbquo;" "," "," "‚") ("laquo" "\\guillemotleft{}" nil "&laquo;" "<<" "«" "«") ("raquo" "\\guillemotright{}" nil "&raquo;" ">>" "»" "»") ("lsaquo" "\\guilsinglleft{}" nil "&lsaquo;" "<" "<" "‹") ("rsaquo" "\\guilsinglright{}" nil "&rsaquo;" ">" ">" "›") "* Other" "** Misc. (often used)" ("circ" "\\^{}" nil "&circ;" "^" "^" "∘") ("vert" "\\vert{}" t "&vert;" "|" "|" "|") ("vbar" "|" nil "|" "|" "|" "|") ("brvbar" "\\textbrokenbar{}" nil "&brvbar;" "|" "¦" "¦") ("S" "\\S" nil "&sect;" "paragraph" "§" "§") ("sect" "\\S" nil "&sect;" "paragraph" "§" "§") ("amp" "\\&" nil "&amp;" "&" "&" "&") ("lt" "\\textless{}" nil "&lt;" "<" "<" "<") ("gt" "\\textgreater{}" nil "&gt;" ">" ">" ">") ("tilde" "\\textasciitilde{}" nil "~" "~" "~" "~") ("slash" "/" nil "/" "/" "/" "/") ("plus" "+" nil "+" "+" "+" "+") ("under" "\\_" nil "_" "_" "_" "_") ("equal" "=" nil "=" "=" "=" "=") ("asciicirc" "\\textasciicircum{}" nil "^" "^" "^" "^") ("dagger" "\\textdagger{}" nil "&dagger;" "[dagger]" "[dagger]" "†") ("dag" "\\dag{}" nil "&dagger;" "[dagger]" "[dagger]" "†") ("Dagger" "\\textdaggerdbl{}" nil "&Dagger;" "[doubledagger]" "[doubledagger]" "‡") ("ddag" "\\ddag{}" nil "&Dagger;" "[doubledagger]" "[doubledagger]" "‡") "** Whitespace" ("nbsp" "~" nil "&nbsp;" " " " " " ") ("ensp" "\\hspace*{.5em}" nil "&ensp;" " " " " " ") ("emsp" "\\hspace*{1em}" nil "&emsp;" " " " " " ") ("thinsp" "\\hspace*{.2em}" nil "&thinsp;" " " " " " ") "** Currency" ("curren" "\\textcurrency{}" nil "&curren;" "curr." "¤" "¤") ("cent" "\\textcent{}" nil "&cent;" "cent" "¢" "¢") ("pound" "\\pounds{}" nil "&pound;" "pound" "£" "£") ("yen" "\\textyen{}" nil "&yen;" "yen" "¥" "¥") ("euro" "\\texteuro{}" nil "&euro;" "EUR" "EUR" "€") ("EUR" "\\texteuro{}" nil "&euro;" "EUR" "EUR" "€") ("dollar" "\\$" nil "$" "$" "$" "$") ("USD" "\\$" nil "$" "$" "$" "$") "** Property Marks" ("copy" "\\textcopyright{}" nil "&copy;" "(c)" "©" "©") ("reg" "\\textregistered{}" nil "&reg;" "(r)" "®" "®") ("trade" "\\texttrademark{}" nil "&trade;" "TM" "TM" "™") "** Science et al." ("minus" "\\minus" t "&minus;" "-" "-" "−") ("pm" "\\textpm{}" nil "&plusmn;" "+-" "±" "±") ("plusmn" "\\textpm{}" nil "&plusmn;" "+-" "±" "±") ("times" "\\texttimes{}" nil "&times;" "*" "×" "×") ("frasl" "/" nil "&frasl;" "/" "/" "⁄") ("colon" "\\colon" t ":" ":" ":" ":") ("div" "\\textdiv{}" nil "&divide;" "/" "÷" "÷") ("frac12" "\\textonehalf{}" nil "&frac12;" "1/2" "½" "½") ("frac14" "\\textonequarter{}" nil "&frac14;" "1/4" "¼" "¼") ("frac34" "\\textthreequarters{}" nil "&frac34;" "3/4" "¾" "¾") ("permil" "\\textperthousand{}" nil "&permil;" "per thousand" "per thousand" "‰") ("sup1" "\\textonesuperior{}" nil "&sup1;" "^1" "¹" "¹") ("sup2" "\\texttwosuperior{}" nil "&sup2;" "^2" "²" "²") ("sup3" "\\textthreesuperior{}" nil "&sup3;" "^3" "³" "³") ("radic" "\\sqrt{\\,}" t "&radic;" "[square root]" "[square root]" "√") ("sum" "\\sum" t "&sum;" "[sum]" "[sum]" "∑") ("prod" "\\prod" t "&prod;" "[product]" "[n-ary product]" "∏") ("micro" "\\textmu{}" nil "&micro;" "micro" "µ" "µ") ("macr" "\\textasciimacron{}" nil "&macr;" "[macron]" "¯" "¯") ("deg" "\\textdegree{}" nil "&deg;" "degree" "°" "°") ("prime" "\\prime" t "&prime;" "'" "'" "′") ("Prime" "\\prime{}\\prime" t "&Prime;" "''" "''" "″") ("infin" "\\infty" t "&infin;" "[infinity]" "[infinity]" "∞") ("infty" "\\infty" t "&infin;" "[infinity]" "[infinity]" "∞") ("prop" "\\propto" t "&prop;" "[proportional to]" "[proportional to]" "∝") ("propto" "\\propto" t "&prop;" "[proportional to]" "[proportional to]" "∝") ("not" "\\textlnot{}" nil "&not;" "[angled dash]" "¬" "¬") ("neg" "\\neg{}" t "&not;" "[angled dash]" "¬" "¬") ("land" "\\land" t "&and;" "[logical and]" "[logical and]" "∧") ("wedge" "\\wedge" t "&and;" "[logical and]" "[logical and]" "∧") ("lor" "\\lor" t "&or;" "[logical or]" "[logical or]" "∨") ("vee" "\\vee" t "&or;" "[logical or]" "[logical or]" "∨") ("cap" "\\cap" t "&cap;" "[intersection]" "[intersection]" "∩") ("cup" "\\cup" t "&cup;" "[union]" "[union]" "∪") ("smile" "\\smile" t "&smile;" "[cup product]" "[cup product]" "⌣") ("frown" "\\frown" t "&frown;" "[Cap product]" "[cap product]" "⌢") ("int" "\\int" t "&int;" "[integral]" "[integral]" "∫") ("therefore" "\\therefore" t "&there4;" "[therefore]" "[therefore]" "∴") ("there4" "\\therefore" t "&there4;" "[therefore]" "[therefore]" "∴") ("because" "\\because" t "&because;" "[because]" "[because]" "∵") ("sim" "\\sim" t "&sim;" "~" "~" "∼") ("cong" "\\cong" t "&cong;" "[approx. equal to]" "[approx. equal to]" "≅") ("simeq" "\\simeq" t "&cong;" "[approx. equal to]" "[approx. equal to]" "≅") ("asymp" "\\asymp" t "&asymp;" "[almost equal to]" "[almost equal to]" "≈") ("approx" "\\approx" t "&asymp;" "[almost equal to]" "[almost equal to]" "≈") ("ne" "\\ne" t "&ne;" "[not equal to]" "[not equal to]" "≠") ("neq" "\\neq" t "&ne;" "[not equal to]" "[not equal to]" "≠") ("equiv" "\\equiv" t "&equiv;" "[identical to]" "[identical to]" "≡") ("triangleq" "\\triangleq" t "&triangleq;" "[defined to]" "[defined to]" "≜") ("le" "\\le" t "&le;" "<=" "<=" "≤") ("leq" "\\le" t "&le;" "<=" "<=" "≤") ("ge" "\\ge" t "&ge;" ">=" ">=" "≥") ("geq" "\\ge" t "&ge;" ">=" ">=" "≥") ("lessgtr" "\\lessgtr" t "&lessgtr;" "[less than or greater than]" "[less than or greater than]" "≶") ("lesseqgtr" "\\lesseqgtr" t "&lesseqgtr;" "[less than or equal or greater than or equal]" "[less than or equal or greater than or equal]" "⋚") ("ll" "\\ll" t "&Lt;" "<<" "<<" "≪") ("Ll" "\\lll" t "&Ll;" "<<<" "<<<" "⋘") ("lll" "\\lll" t "&Ll;" "<<<" "<<<" "⋘") ("gg" "\\gg" t "&Gt;" ">>" ">>" "≫") ("Gg" "\\ggg" t "&Gg;" ">>>" ">>>" "⋙") ("ggg" "\\ggg" t "&Gg;" ">>>" ">>>" "⋙") ("prec" "\\prec" t "&pr;" "[precedes]" "[precedes]" "≺") ("preceq" "\\preceq" t "&prcue;" "[precedes or equal]" "[precedes or equal]" "≼") ("preccurlyeq" "\\preccurlyeq" t "&prcue;" "[precedes or equal]" "[precedes or equal]" "≼") ("succ" "\\succ" t "&sc;" "[succeeds]" "[succeeds]" "≻") ("succeq" "\\succeq" t "&sccue;" "[succeeds or equal]" "[succeeds or equal]" "≽") ("succcurlyeq" "\\succcurlyeq" t "&sccue;" "[succeeds or equal]" "[succeeds or equal]" "≽") ("sub" "\\subset" t "&sub;" "[subset of]" "[subset of]" "⊂") ("subset" "\\subset" t "&sub;" "[subset of]" "[subset of]" "⊂") ("sup" "\\supset" t "&sup;" "[superset of]" "[superset of]" "⊃") ("supset" "\\supset" t "&sup;" "[superset of]" "[superset of]" "⊃") ("nsub" "\\not\\subset" t "&nsub;" "[not a subset of]" "[not a subset of" "⊄") ("sube" "\\subseteq" t "&sube;" "[subset of or equal to]" "[subset of or equal to]" "⊆") ("nsup" "\\not\\supset" t "&nsup;" "[not a superset of]" "[not a superset of]" "⊅") ("supe" "\\supseteq" t "&supe;" "[superset of or equal to]" "[superset of or equal to]" "⊇") ("setminus" "\\setminus" t "&setminus;" "\" " \" "⧵") ("forall" "\\forall" t "&forall;" "[for all]" "[for all]" "∀") ("exist" "\\exists" t "&exist;" "[there exists]" "[there exists]" "∃") ("exists" "\\exists" t "&exist;" "[there exists]" "[there exists]" "∃") ("nexist" "\\nexists" t "&exist;" "[there does not exists]" "[there does not  exists]" "∄") ("nexists" "\\nexists" t "&exist;" "[there does not exists]" "[there does not  exists]" "∄") ("empty" "\\empty" t "&empty;" "[empty set]" "[empty set]" "∅") ("emptyset" "\\emptyset" t "&empty;" "[empty set]" "[empty set]" "∅") ("isin" "\\in" t "&isin;" "[element of]" "[element of]" "∈") ("in" "\\in" t "&isin;" "[element of]" "[element of]" "∈") ("notin" "\\notin" t "&notin;" "[not an element of]" "[not an element of]" "∉") ("ni" "\\ni" t "&ni;" "[contains as member]" "[contains as member]" "∋") ("nabla" "\\nabla" t "&nabla;" "[nabla]" "[nabla]" "∇") ("ang" "\\angle" t "&ang;" "[angle]" "[angle]" "∠") ("angle" "\\angle" t "&ang;" "[angle]" "[angle]" "∠") ("perp" "\\perp" t "&perp;" "[up tack]" "[up tack]" "⊥") ("parallel" "\\parallel" t "&parallel;" "||" "||" "∥") ("sdot" "\\cdot" t "&sdot;" "[dot]" "[dot]" "⋅") ("cdot" "\\cdot" t "&sdot;" "[dot]" "[dot]" "⋅") ("lceil" "\\lceil" t "&lceil;" "[left ceiling]" "[left ceiling]" "⌈") ("rceil" "\\rceil" t "&rceil;" "[right ceiling]" "[right ceiling]" "⌉") ("lfloor" "\\lfloor" t "&lfloor;" "[left floor]" "[left floor]" "⌊") ("rfloor" "\\rfloor" t "&rfloor;" "[right floor]" "[right floor]" "⌋") ("lang" "\\langle" t "&lang;" "<" "<" "⟨") ("rang" "\\rangle" t "&rang;" ">" ">" "⟩") ("langle" "\\langle" t "&lang;" "<" "<" "⟨") ("rangle" "\\rangle" t "&rang;" ">" ">" "⟩") ("hbar" "\\hbar" t "&hbar;" "hbar" "hbar" "ℏ") ("mho" "\\mho" t "&mho;" "mho" "mho" "℧") "** Arrows" ("larr" "\\leftarrow" t "&larr;" "<-" "<-" "←") ("leftarrow" "\\leftarrow" t "&larr;" "<-" "<-" "←") ("gets" "\\gets" t "&larr;" "<-" "<-" "←") ("lArr" "\\Leftarrow" t "&lArr;" "<=" "<=" "⇐") ("Leftarrow" "\\Leftarrow" t "&lArr;" "<=" "<=" "⇐") ("uarr" "\\uparrow" t "&uarr;" "[uparrow]" "[uparrow]" "↑") ("uparrow" "\\uparrow" t "&uarr;" "[uparrow]" "[uparrow]" "↑") ("uArr" "\\Uparrow" t "&uArr;" "[dbluparrow]" "[dbluparrow]" "⇑") ("Uparrow" "\\Uparrow" t "&uArr;" "[dbluparrow]" "[dbluparrow]" "⇑") ("rarr" "\\rightarrow" t "&rarr;" "->" "->" "→") ("to" "\\to" t "&rarr;" "->" "->" "→") ("rightarrow" "\\rightarrow" t "&rarr;" "->" "->" "→") ("rArr" "\\Rightarrow" t "&rArr;" "=>" "=>" "⇒") ("Rightarrow" "\\Rightarrow" t "&rArr;" "=>" "=>" "⇒") ("darr" "\\downarrow" t "&darr;" "[downarrow]" "[downarrow]" "↓") ("downarrow" "\\downarrow" t "&darr;" "[downarrow]" "[downarrow]" "↓") ("dArr" "\\Downarrow" t "&dArr;" "[dbldownarrow]" "[dbldownarrow]" "⇓") ("Downarrow" "\\Downarrow" t "&dArr;" "[dbldownarrow]" "[dbldownarrow]" "⇓") ("harr" "\\leftrightarrow" t "&harr;" "<->" "<->" "↔") ("leftrightarrow" "\\leftrightarrow" t "&harr;" "<->" "<->" "↔") ("hArr" "\\Leftrightarrow" t "&hArr;" "<=>" "<=>" "⇔") ("Leftrightarrow" "\\Leftrightarrow" t "&hArr;" "<=>" "<=>" "⇔") ("crarr" "\\hookleftarrow" t "&crarr;" "<-'" "<-'" "↵") ("hookleftarrow" "\\hookleftarrow" t "&crarr;" "<-'" "<-'" "↵") "** Function names" ("arccos" "\\arccos" t "arccos" "arccos" "arccos" "arccos") ("arcsin" "\\arcsin" t "arcsin" "arcsin" "arcsin" "arcsin") ("arctan" "\\arctan" t "arctan" "arctan" "arctan" "arctan") ("arg" "\\arg" t "arg" "arg" "arg" "arg") ("cos" "\\cos" t "cos" "cos" "cos" "cos") ("cosh" "\\cosh" t "cosh" "cosh" "cosh" "cosh") ("cot" "\\cot" t "cot" "cot" "cot" "cot") ("coth" "\\coth" t "coth" "coth" "coth" "coth") ("csc" "\\csc" t "csc" "csc" "csc" "csc") ("deg" "\\deg" t "&deg;" "deg" "deg" "deg") ("det" "\\det" t "det" "det" "det" "det") ("dim" "\\dim" t "dim" "dim" "dim" "dim") ("exp" "\\exp" t "exp" "exp" "exp" "exp") ("gcd" "\\gcd" t "gcd" "gcd" "gcd" "gcd") ("hom" "\\hom" t "hom" "hom" "hom" "hom") ("inf" "\\inf" t "inf" "inf" "inf" "inf") ("ker" "\\ker" t "ker" "ker" "ker" "ker") ("lg" "\\lg" t "lg" "lg" "lg" "lg") ("lim" "\\lim" t "lim" "lim" "lim" "lim") ("liminf" "\\liminf" t "liminf" "liminf" "liminf" "liminf") ("limsup" "\\limsup" t "limsup" "limsup" "limsup" "limsup") ("ln" "\\ln" t "ln" "ln" "ln" "ln") ("log" "\\log" t "log" "log" "log" "log") ("max" "\\max" t "max" "max" "max" "max") ("min" "\\min" t "min" "min" "min" "min") ("Pr" "\\Pr" t "Pr" "Pr" "Pr" "Pr") ("sec" "\\sec" t "sec" "sec" "sec" "sec") ("sin" "\\sin" t "sin" "sin" "sin" "sin") ("sinh" "\\sinh" t "sinh" "sinh" "sinh" "sinh") ("sup" "\\sup" t "&sup;" "sup" "sup" "sup") ("tan" "\\tan" t "tan" "tan" "tan" "tan") ("tanh" "\\tanh" t "tanh" "tanh" "tanh" "tanh") "** Signs & Symbols" ("bull" "\\textbullet{}" nil "&bull;" "*" "*" "•") ("bullet" "\\textbullet{}" nil "&bull;" "*" "*" "•") ("star" "\\star" t "*" "*" "*" "⋆") ("lowast" "\\ast" t "&lowast;" "*" "*" "∗") ("ast" "\\ast" t "&lowast;" "*" "*" "*") ("odot" "\\odot" t "o" "[circled dot]" "[circled dot]" "ʘ") ("oplus" "\\oplus" t "&oplus;" "[circled plus]" "[circled plus]" "⊕") ("otimes" "\\otimes" t "&otimes;" "[circled times]" "[circled times]" "⊗") ("check" "\\checkmark" t "&checkmark;" "[checkmark]" "[checkmark]" "✓") ("checkmark" "\\checkmark" t "&check;" "[checkmark]" "[checkmark]" "✓") "** Miscellaneous (seldom used)" ("para" "\\P{}" nil "&para;" "[pilcrow]" "¶" "¶") ("ordf" "\\textordfeminine{}" nil "&ordf;" "_a_" "ª" "ª") ("ordm" "\\textordmasculine{}" nil "&ordm;" "_o_" "º" "º") ("cedil" "\\c{}" nil "&cedil;" "[cedilla]" "¸" "¸") ("oline" "\\overline{~}" t "&oline;" "[overline]" "¯" "‾") ("uml" "\\textasciidieresis{}" nil "&uml;" "[diaeresis]" "¨" "¨") ("zwnj" "\\/{}" nil "&zwnj;" "" "" "‌") ("zwj" "" nil "&zwj;" "" "" "‍") ("lrm" "" nil "&lrm;" "" "" "‎") ("rlm" "" nil "&rlm;" "" "" "‏") "** Smilies" ("smiley" "\\ddot\\smile" t "&#9786;" ":-)" ":-)" "☺") ("blacksmile" "\\ddot\\smile" t "&#9787;" ":-)" ":-)" "☻") ("sad" "\\ddot\\frown" t "&#9785;" ":-(" ":-(" "☹") ("frowny" "\\ddot\\frown" t "&#9785;" ":-(" ":-(" "☹") "** Suits" ("clubs" "\\clubsuit" t "&clubs;" "[clubs]" "[clubs]" "♣") ("clubsuit" "\\clubsuit" t "&clubs;" "[clubs]" "[clubs]" "♣") ("spades" "\\spadesuit" t "&spades;" "[spades]" "[spades]" "♠") ("spadesuit" "\\spadesuit" t "&spades;" "[spades]" "[spades]" "♠") ("hearts" "\\heartsuit" t "&hearts;" "[hearts]" "[hearts]" "♥") ("heartsuit" "\\heartsuit" t "&heartsuit;" "[hearts]" "[hearts]" "♥") ("diams" "\\diamondsuit" t "&diams;" "[diamonds]" "[diamonds]" "◆") ("diamondsuit" "\\diamondsuit" t "&diams;" "[diamonds]" "[diamonds]" "◆") ("diamond" "\\diamondsuit" t "&diamond;" "[diamond]" "[diamond]" "◆") ("Diamond" "\\diamondsuit" t "&diamond;" "[diamond]" "[diamond]" "◆") ("loz" "\\lozenge" t "&loz;" "[lozenge]" "[lozenge]" "⧫"))) (let (space-entities html-spaces (entity "_")) (dolist (n (number-sequence 1 20) (nreverse space-entities)) (let ((spaces (make-string n 32))) (push (list (setq entity (concat entity " ")) (format "\\hspace*{%sem}" (* n 0.5)) nil (setq html-spaces (concat "&ensp;" html-spaces)) spaces spaces (make-string n 8194)) space-entities))))))
-                nil [3033 26939])
-            ("org-entity-get" function (:arguments ("name")) nil [26941 27163])
-            ("org-entities-create-table" function (:user-visible-flag t) nil [27238 27994])
-            ("org-pretty-entities" variable nil nil [27996 28024])
-            ("org-entities-help" function (:user-visible-flag t) nil [28055 29069])
-            ("org-entities" package nil nil [29072 29095]))          
-      :file "org-entities.el"
-      :pointmax 29173
-      :fsize 29789
-      :lastmodtime '(23537 23332 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-faces" customgroup (:user-visible-flag t) nil [1101 1192])
-            ("org-default" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [1194 1291])
-            ("org-hide" variable
-               (:default-value (quote ((((background light)) (:foreground "white")) (((background dark)) (:foreground "black"))))
-                :type "face")
-                nil [1293 1567])
-            ("org-level-1" variable
-               (:default-value (quote ((t :inherit outline-1)))
-                :type "face")
-                nil [1569 1673])
-            ("org-level-2" variable
-               (:default-value (quote ((t :inherit outline-2)))
-                :type "face")
-                nil [1675 1779])
-            ("org-level-3" variable
-               (:default-value (quote ((t :inherit outline-3)))
-                :type "face")
-                nil [1781 1885])
-            ("org-level-4" variable
-               (:default-value (quote ((t :inherit outline-4)))
-                :type "face")
-                nil [1887 1991])
-            ("org-level-5" variable
-               (:default-value (quote ((t :inherit outline-5)))
-                :type "face")
-                nil [1993 2097])
-            ("org-level-6" variable
-               (:default-value (quote ((t :inherit outline-6)))
-                :type "face")
-                nil [2099 2203])
-            ("org-level-7" variable
-               (:default-value (quote ((t :inherit outline-7)))
-                :type "face")
-                nil [2205 2309])
-            ("org-level-8" variable
-               (:default-value (quote ((t :inherit outline-8)))
-                :type "face")
-                nil [2311 2415])
-            ("org-special-keyword" variable
-               (:default-value (quote ((t :inherit font-lock-keyword-face)))
-                :type "face")
-                nil [2417 2541])
-            ("org-drawer" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8)) (:foreground "blue" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [2543 3069])
-            ("org-property-value" variable (:type "face") nil [3071 3166])
-            ("org-column" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:background "grey90" :weight normal :slant normal :strike-through nil :underline nil)) (((class color) (min-colors 16) (background dark)) (:background "grey30" :weight normal :slant normal :strike-through nil :underline nil)) (((class color) (min-colors 8)) (:background "cyan" :foreground "black" :weight normal :slant normal :strike-through nil :underline nil)) (t (:inverse-video t))))
-                :type "face")
-                nil [3168 4715])
-            ("org-column-title" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:background "grey90" :underline t :weight bold)) (((class color) (min-colors 16) (background dark)) (:background "grey30" :underline t :weight bold)) (((class color) (min-colors 8)) (:background "cyan" :foreground "black" :underline t :weight bold)) (t (:inverse-video t))))
-                :type "face")
-                nil [4717 5170])
-            ("org-agenda-column-dateline" variable
-               (:default-value (quote ((t :inherit org-column)))
-                :type "face")
-                nil [5172 5321])
-            ("org-warning" variable
-               (:default-value (quote ((t :inherit font-lock-warning-face)))
-                :type "face")
-                nil [5323 5445])
-            ("org-archived" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [5447 5556])
-            ("org-link" variable
-               (:default-value (quote ((t :inherit link)))
-                :type "face")
-                nil [5558 5637])
-            ("org-footnote" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Purple" :underline t)) (((class color) (background dark)) (:foreground "Cyan" :underline t)) (t (:underline t))))
-                :type "face")
-                nil [5639 5880])
-            ("org-ellipsis" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "DarkGoldenrod" :underline t)) (((class color) (background dark)) (:foreground "LightGoldenrod" :underline t)) (t (:strike-through t))))
-                :type "face")
-                nil [5882 6163])
-            ("org-target" variable
-               (:default-value (quote ((((class color) (background light)) (:underline t)) (((class color) (background dark)) (:underline t)) (t (:underline t))))
-                :type "face")
-                nil [6165 6367])
-            ("org-date" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Purple" :underline t)) (((class color) (background dark)) (:foreground "Cyan" :underline t)) (t (:underline t))))
-                :type "face")
-                nil [6369 6613])
-            ("org-date-selected" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "Red1" :inverse-video t)) (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :inverse-video t)) (((class color) (min-colors 8) (background light)) (:foreground "red" :inverse-video t)) (((class color) (min-colors 8) (background dark)) (:foreground "red" :inverse-video t)) (t (:inverse-video t))))
-                :type "face")
-                nil [6615 7221])
-            ("org-sexp-date" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "Purple")) (((class color) (background dark)) (:foreground "Cyan")) (t (:underline t))))
-                :type "face")
-                nil [7223 7465])
-            ("org-tag" variable
-               (:default-value (quote ((t (:bold t))))
-                :type "face")
-                nil [7467 7640])
-            ("org-list-dt" variable
-               (:default-value (quote ((t (:bold t))))
-                :type "face")
-                nil [7642 7748])
-            ("org-todo" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "Red1" :bold t)) (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :bold t)) (((class color) (min-colors 8) (background light)) (:foreground "red" :bold t)) (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t)) (t (:inverse-video t :bold t))))
-                :type "face")
-                nil [7750 8236])
-            ("org-done" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen" :bold t)) (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen" :bold t)) (((class color) (min-colors 8)) (:foreground "green")) (t (:bold t))))
-                :type "face")
-                nil [8238 8635])
-            ("org-agenda-done" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "ForestGreen")) (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen")) (((class color) (min-colors 8)) (:foreground "green")) (t (:bold nil))))
-                :type "face")
-                nil [8637 9352])
-            ("org-headline-done" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "RosyBrown")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon")) (((class color) (min-colors 8) (background light)) (:bold nil))))
-                :type "face")
-                nil [9354 9854])
-            ("org-faces-easy-properties" variable (:default-value (quote ((todo . :foreground) (tag . :foreground) (priority . :foreground)))) nil [9856 10402])
-            ("org-todo-keyword-faces" variable nil nil [10404 11061])
-            ("org-priority" variable
-               (:default-value (quote ((t :inherit font-lock-keyword-face)))
-                :type "face")
-                nil [11063 11180])
-            ("org-priority-faces" variable nil nil [11182 11789])
-            ("org-tags-special-faces-re" variable nil nil [11791 11829])
-            ("org-set-tag-faces" function (:arguments ("var" "value")) nil [11830 12039])
-            ("org-checkbox" variable
-               (:default-value (quote ((t :inherit bold)))
-                :type "face")
-                nil [12041 12129])
-            ("org-checkbox-statistics-todo" variable
-               (:default-value (quote ((t (:inherit org-todo))))
-                :type "face")
-                nil [12131 12266])
-            ("org-checkbox-statistics-done" variable
-               (:default-value (quote ((t (:inherit org-done))))
-                :type "face")
-                nil [12268 12401])
-            ("org-tag-faces" variable nil nil [12403 13131])
-            ("org-table" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8) (background light)) (:foreground "blue")) (((class color) (min-colors 8) (background dark)))))
-                :type "face")
-                nil [13133 13707])
-            ("org-formula" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Firebrick")) (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1")) (((class color) (min-colors 8) (background light)) (:foreground "red")) (((class color) (min-colors 8) (background dark)) (:foreground "red")) (t (:bold t :italic t))))
-                :type "face")
-                nil [13709 14121])
-            ("org-code" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [14123 14252])
-            ("org-meta-line" variable
-               (:default-value (quote ((t :inherit font-lock-comment-face)))
-                :type "face")
-                nil [14254 14400])
-            ("org-document-title" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "midnight blue" :weight bold)) (((class color) (background dark)) (:foreground "pale turquoise" :weight bold)) (t (:weight bold))))
-                :type "face")
-                nil [14402 14717])
-            ("org-document-info" variable
-               (:default-value (quote ((((class color) (background light)) (:foreground "midnight blue")) (((class color) (background dark)) (:foreground "pale turquoise")) (t nil)))
-                :type "face")
-                nil [14719 15033])
-            ("org-document-info-keyword" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [15035 15178])
-            ("org-block" variable
-               (:default-value (quote ((t :inherit shadow)))
-                :type "face")
-                nil [15180 15408])
-            ("org-block-begin-line" variable
-               (:default-value (quote ((t (:inherit org-meta-line))))
-                :type "face")
-                nil [15410 15558])
-            ("org-block-end-line" variable
-               (:default-value (quote ((t (:inherit org-block-begin-line))))
-                :type "face")
-                nil [15560 15711])
-            ("org-verbatim" variable
-               (:default-value (quote ((t (:inherit shadow))))
-                :type "face")
-                nil [15713 15846])
-            ("org-quote" variable
-               (:default-value (quote ((t (:inherit org-block))))
-                :type "face")
-                nil [15848 15966])
-            ("org-verse" variable
-               (:default-value (quote ((t (:inherit org-block))))
-                :type "face")
-                nil [15968 16086])
-            ("org-fontify-quote-and-verse-blocks" variable nil nil [16088 16406])
-            ("org-clock-overlay" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:background "LightGray" :foreground "black")) (((class color) (min-colors 88) (background dark)) (:background "SkyBlue4" :foreground "white")) (((class color) (min-colors 16) (background light)) (:background "gray" :foreground "black")) (((class color) (min-colors 16) (background dark)) (:background "SkyBlue4" :foreground "white")) (((class color) (min-colors 8)) (:background "cyan" :foreground "black")) (t (:inverse-video t))))
-                :type "face")
-                nil [16408 17083])
-            ("org-agenda-structure" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8)) (:foreground "blue" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [17085 17639])
-            ("org-agenda-date" variable
-               (:default-value (quote ((t (:inherit org-agenda-structure))))
-                :type "face")
-                nil [17641 17766])
-            ("org-agenda-date-today" variable
-               (:default-value (quote ((t (:inherit org-agenda-date :weight bold :italic t))))
-                :type "face")
-                nil [17768 17913])
-            ("org-agenda-clocking" variable
-               (:default-value (quote ((t (:inherit secondary-selection))))
-                :type "face")
-                nil [17915 18057])
-            ("org-agenda-date-weekend" variable
-               (:default-value (quote ((t (:inherit org-agenda-date :weight bold))))
-                :type "face")
-                nil [18059 18299])
-            ("org-scheduled" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "DarkGreen")) (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen")) (((class color) (min-colors 8)) (:foreground "green")) (t (:bold t :italic t))))
-                :type "face")
-                nil [18301 18645])
-            ("org-scheduled-today" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "DarkGreen")) (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen")) (((class color) (min-colors 8)) (:foreground "green")) (t (:bold t :italic t))))
-                :type "face")
-                nil [18647 18997])
-            ("org-agenda-dimmed-todo-face" variable
-               (:default-value (quote ((((background light)) (:foreground "grey50")) (((background dark)) (:foreground "grey50"))))
-                :type "face")
-                nil [18999 19206])
-            ("org-scheduled-previously" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Firebrick")) (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1")) (((class color) (min-colors 8) (background light)) (:foreground "red")) (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [19208 19667])
-            ("org-upcoming-deadline" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:foreground "Firebrick")) (((class color) (min-colors 88) (background dark)) (:foreground "chocolate1")) (((class color) (min-colors 8) (background light)) (:foreground "red")) (((class color) (min-colors 8) (background dark)) (:foreground "red" :bold t)) (t (:bold t))))
-                :type "face")
-                nil [19669 20125])
-            ("org-agenda-deadline-faces" variable (:default-value (quote ((1.0 . org-warning) (0.5 . org-upcoming-deadline) (0.0 . default)))) nil [20127 21122])
-            ("org-agenda-restriction-lock" variable
-               (:default-value (quote ((((class color) (min-colors 88) (background light)) (:background "#eeeeee")) (((class color) (min-colors 88) (background dark)) (:background "#1C1C1C")) (((class color) (min-colors 16) (background light)) (:background "#eeeeee")) (((class color) (min-colors 16) (background dark)) (:background "#1C1C1C")) (((class color) (min-colors 8)) (:background "cyan" :foreground "black")) (t (:inverse-video t))))
-                :type "face")
-                nil [21124 21661])
-            ("org-agenda-filter-tags" variable
-               (:default-value (quote ((t :inherit mode-line)))
-                :type "face")
-                nil [21663 21805])
-            ("org-agenda-filter-regexp" variable
-               (:default-value (quote ((t :inherit mode-line)))
-                :type "face")
-                nil [21807 21954])
-            ("org-agenda-filter-category" variable
-               (:default-value (quote ((t :inherit mode-line)))
-                :type "face")
-                nil [21956 22106])
-            ("org-agenda-filter-effort" variable
-               (:default-value (quote ((t :inherit mode-line)))
-                :type "face")
-                nil [22108 22252])
-            ("org-time-grid" variable
-               (:default-value (quote ((((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod")) (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod")) (((class color) (min-colors 8)) (:foreground "yellow" :weight light))))
-                :type "face")
-                nil [22254 22623])
-            ("org-agenda-current-time" variable
-               (:default-value (quote ((t (:inherit org-time-grid))))
-                :type "face")
-                nil [22625 22767])
-            ("org-agenda-diary" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [22769 22904])
-            ("org-agenda-calendar-event" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [22906 23046])
-            ("org-agenda-calendar-sexp" variable
-               (:default-value (quote ((t :inherit default)))
-                :type "face")
-                nil [23048 23185])
-            ("org-level-faces" variable
-               (:constant-flag t
-                :default-value (quote (org-level-1 org-level-2 org-level-3 org-level-4 org-level-5 org-level-6 org-level-7 org-level-8)))
-                nil [23187 23316])
-            ("org-n-level-faces" variable (:default-value (length org-level-faces)) nil [23318 23611])
-            ("org-cycle-level-faces" variable (:default-value t) nil [23613 23940])
-            ("org-latex-and-related" variable
-               (:default-value (let ((font (cond ((assq :inherit custom-face-attributes) (quote (:inherit underline))) (t (quote (:underline t)))))) (\` ((((class grayscale) (background light)) (:foreground "DimGray" (\,@ font))) (((class grayscale) (background dark)) (:foreground "LightGray" (\,@ font))) (((class color) (background light)) (:foreground "SaddleBrown")) (((class color) (background dark)) (:foreground "burlywood")) (t ((\,@ font))))))
-                :type "face")
-                nil [23942 24578])
-            ("org-macro" variable
-               (:default-value (quote ((t :inherit org-latex-and-related)))
-                :type "face")
-                nil [24580 24730])
-            ("org-tag-group" variable
-               (:default-value (quote ((t :inherit org-tag)))
-                :type "face")
-                nil [24732 24876])
-            ("org-mode-line-clock" variable
-               (:default-value (quote ((t (:inherit mode-line))))
-                :type "face")
-                nil [24878 25001])
-            ("org-mode-line-clock-overrun" variable
-               (:default-value (quote ((t (:inherit mode-line :background "red"))))
-                :type "face")
-                nil [25003 25172])
-            ("org-faces" package nil nil [25174 25194]))          
-      :file "org-faces.el"
-      :pointmax 25223
-      :fsize 25222
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [3192 3209])
-            ("org-macs" include nil nil [3210 3229])
-            ("org-compat" include nil nil [3230 3251])
-            ("org-M-RET-may-split-line" variable nil nil [3253 3286])
-            ("org-auto-align-tags" variable nil nil [3287 3315])
-            ("org-blank-before-new-entry" variable nil nil [3316 3351])
-            ("org-clock-string" variable nil nil [3352 3377])
-            ("org-closed-string" variable nil nil [3378 3404])
-            ("org-deadline-string" variable nil nil [3405 3433])
-            ("org-description-max-indent" variable nil nil [3434 3469])
-            ("org-done-keywords" variable nil nil [3470 3496])
-            ("org-drawer-regexp" variable nil nil [3497 3523])
-            ("org-element-all-objects" variable nil nil [3524 3556])
-            ("org-inhibit-startup" variable nil nil [3557 3585])
-            ("org-odd-levels-only" variable nil nil [3586 3614])
-            ("org-outline-regexp-bol" variable nil nil [3615 3646])
-            ("org-scheduled-string" variable nil nil [3647 3676])
-            ("org-todo-line-regexp" variable nil nil [3677 3706])
-            ("org-ts-regexp" variable nil nil [3707 3729])
-            ("org-ts-regexp-both" variable nil nil [3730 3757])
-            ("declare-function" code nil nil [3759 3825])
-            ("declare-function" code nil nil [3826 3895])
-            ("declare-function" code nil nil [3896 3950])
-            ("declare-function" code nil nil [3951 4009])
-            ("declare-function" code nil nil [4010 4055])
-            ("declare-function" code nil nil [4056 4112])
-            ("declare-function" code nil nil [4113 4185])
-            ("declare-function" code nil nil [4186 4252])
-            ("declare-function" code nil nil [4253 4339])
-            ("declare-function" code nil nil [4340 4413])
-            ("declare-function" code nil nil [4414 4537])
-            ("declare-function" code nil nil [4538 4603])
-            ("declare-function" code nil nil [4604 4702])
-            ("declare-function" code nil nil [4703 4775])
-            ("declare-function" code nil nil [4776 4862])
-            ("declare-function" code nil nil [4863 4929])
-            ("declare-function" code nil nil [4930 4989])
-            ("declare-function" code nil nil [4990 5051])
-            ("declare-function" code nil nil [5052 5114])
-            ("declare-function" code nil nil [5115 5202])
-            ("declare-function" code nil nil [5203 5267])
-            ("declare-function" code nil nil [5268 5340])
-            ("declare-function" code nil nil [5341 5394])
-            ("declare-function" code nil nil [5395 5488])
-            ("declare-function" code nil nil [5489 5568])
-            ("declare-function" code nil nil [5569 5659])
-            ("declare-function" code nil nil [5660 5711])
-            ("declare-function" code nil nil [5712 5773])
-            ("declare-function" code nil nil [5774 5820])
-            ("declare-function" code nil nil [5821 5868])
-            ("declare-function" code nil nil [5869 5938])
-            ("declare-function" code nil nil [5939 6007])
-            ("declare-function" code nil nil [6008 6070])
-            ("declare-function" code nil nil [6071 6134])
-            ("declare-function" code nil nil [6135 6203])
-            ("declare-function" code nil nil [6204 6251])
-            ("declare-function" code nil nil [6252 6301])
-            ("declare-function" code nil nil [6302 6347])
-            ("declare-function" code nil nil [6348 6401])
-            ("declare-function" code nil nil [6402 6448])
-            ("declare-function" code nil nil [6449 6515])
-            ("declare-function" code nil nil [6516 6560])
-            ("declare-function" code nil nil [6561 6615])
-            ("declare-function" code nil nil [6616 6671])
-            ("declare-function" code nil nil [6672 6730])
-            ("declare-function" code nil nil [6731 6792])
-            ("declare-function" code nil nil [6793 6850])
-            ("declare-function" code nil nil [6851 6895])
-            ("declare-function" code nil nil [6896 6952])
-            ("declare-function" code nil nil [6953 7016])
-            ("declare-function" code nil nil [7017 7069])
-            ("declare-function" code nil nil [7070 7126])
-            ("org-plain-lists" customgroup (:user-visible-flag t) nil [7160 7287])
-            ("org-cycle-include-plain-lists" variable (:default-value t) nil [7289 8303])
-            ("org-list-demote-modify-bullet" variable nil nil [8305 9245])
-            ("org-plain-list-ordered-item-terminator" variable (:default-value t) nil [9247 9907])
-            ("org-list-allow-alphabetical" variable nil nil [9909 10569])
-            ("org-list-two-spaces-after-bullet-regexp" variable nil nil [10571 11100])
-            ("org-list-automatic-rules" variable (:default-value (quote ((checkbox . t) (indent . t)))) nil [11102 12177])
-            ("org-list-use-circular-motion" variable nil nil [12179 12625])
-            ("org-checkbox-statistics-hook" variable nil nil [12627 12917])
-            ("org-checkbox-hierarchical-statistics" variable (:default-value t) nil [12919 13256])
-            ("org-list-description-max-indent" variable (:default-value 20) nil [13258 13499])
-            ("org-list-indent-offset" variable nil nil [13501 13755])
-            ("org-list-radio-list-templates" variable (:default-value (quote ((latex-mode "% BEGIN RECEIVE ORGLST %n
-% END RECEIVE ORGLST %n
-\\begin{comment}
-#+ORGLST: SEND %n org-list-to-latex
--
-\\end{comment}
-") (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
-@c END RECEIVE ORGLST %n
-@ignore
-#+ORGLST: SEND %n org-list-to-texinfo
--
-@end ignore
-") (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
-<!-- END RECEIVE ORGLST %n -->
-<!--
-#+ORGLST: SEND %n org-list-to-html
--
--->
-")))) nil [13757 14479])
-            ("org-list-forbidden-blocks" variable (:default-value (quote ("example" "verse" "src" "export"))) nil [14481 14629])
-            ("org-list-export-context" variable (:default-value (quote (block inlinetask))) nil [14631 14893])
-            ("org-list-end-re" variable
-               (:constant-flag t
-                :default-value "^[ 	]*
-[ 	]*
-")
-                nil [14926 15016])
-            ("org-list-full-item-re" variable
-               (:constant-flag t
-                :default-value (concat "^[ 	]*\\(\\(?:[-+*]\\|\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\)\\(?:[ 	]+\\|$\\)\\)" "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ 	]*\\)?" "\\(?:\\(\\[[ X-]\\]\\)\\(?:[ 	]+\\|$\\)\\)?" "\\(?:\\(.*\\)[ 	]+::\\(?:[ 	]+\\|$\\)\\)?"))
-                nil [15018 15438])
-            ("org-item-re" function nil nil [15440 15918])
-            ("org-item-beginning-re" function nil nil [15920 16040])
-            ("org-list-at-regexp-after-bullet-p" function (:arguments ("regexp")) nil [16042 16510])
-            ("org-list-in-valid-context-p" function nil nil [16512 16652])
-            ("org-in-item-p" function nil nil [16654 19153])
-            ("org-at-item-p" function nil nil [19155 19344])
-            ("org-at-item-bullet-p" function nil nil [19346 19529])
-            ("org-at-item-timer-p" function nil nil [19531 19709])
-            ("org-at-item-description-p" function nil nil [19711 19865])
-            ("org-at-item-checkbox-p" function nil nil [19867 20031])
-            ("org-at-item-counter-p" function nil nil [20033 20221])
-            ("org-list-context" function nil nil [20263 22797])
-            ("org-list-struct" function nil nil [22799 29562])
-            ("org-list-struct-assoc-end" function (:arguments ("struct" "end-list")) nil [29564 30239])
-            ("org-list-prevs-alist" function (:arguments ("struct")) nil [30241 30541])
-            ("org-list-parents-alist" function (:arguments ("struct")) nil [30543 32146])
-            ("org-list-get-nth" function (:arguments ("n" "key" "struct")) nil [32166 32279])
-            ("org-list-set-nth" function (:arguments ("n" "key" "struct" "new")) nil [32281 32448])
-            ("org-list-get-ind" function (:arguments ("item" "struct")) nil [32450 32568])
-            ("org-list-set-ind" function (:arguments ("item" "struct" "ind")) nil [32570 32730])
-            ("org-list-get-bullet" function (:arguments ("item" "struct")) nil [32732 32848])
-            ("org-list-set-bullet" function (:arguments ("item" "struct" "bullet")) nil [32850 33017])
-            ("org-list-get-counter" function (:arguments ("item" "struct")) nil [33019 33137])
-            ("org-list-get-checkbox" function (:arguments ("item" "struct")) nil [33139 33266])
-            ("org-list-set-checkbox" function (:arguments ("item" "struct" "checkbox")) nil [33268 33445])
-            ("org-list-get-tag" function (:arguments ("item" "struct")) nil [33447 33566])
-            ("org-list-get-item-end" function (:arguments ("item" "struct")) nil [33568 33689])
-            ("org-list-get-item-end-before-blank" function (:arguments ("item" "struct")) nil [33691 33973])
-            ("org-list-get-parent" function (:arguments ("item" "struct" "parents")) nil [33975 34258])
-            ("org-list-has-child-p" function (:arguments ("item" "struct")) nil [34260 34638])
-            ("org-list-get-next-item" function (:arguments ("item" "_struct" "prevs")) nil [34640 34881])
-            ("org-list-get-prev-item" function (:arguments ("item" "_struct" "prevs")) nil [34883 35127])
-            ("org-list-get-subtree" function (:arguments ("item" "struct")) nil [35129 35559])
-            ("org-list-get-all-items" function (:arguments ("item" "struct" "prevs")) nil [35561 36119])
-            ("org-list-get-children" function (:arguments ("item" "_struct" "parents")) nil [36121 36496])
-            ("org-list-get-top-point" function (:arguments ("struct")) nil [36498 36622])
-            ("org-list-get-bottom-point" function (:arguments ("struct")) nil [36624 36818])
-            ("org-list-get-list-begin" function (:arguments ("item" "struct" "prevs")) nil [36820 37200])
-            ("defalias" code nil nil [37202 37262])
-            ("org-list-get-last-item" function (:arguments ("item" "struct" "prevs")) nil [37264 37639])
-            ("org-list-get-list-end" function (:arguments ("item" "struct" "prevs")) nil [37641 37924])
-            ("org-list-get-list-type" function (:arguments ("item" "struct" "prevs")) nil [37926 38491])
-            ("org-list-get-item-number" function (:arguments ("item" "struct" "prevs" "parents")) nil [38493 39871])
-            ("org-list-search-generic" function (:arguments ("search" "re" "bound" "noerr")) nil [39891 40475])
-            ("org-list-search-backward" function (:arguments ("regexp" "bound" "noerror")) nil [40477 40794])
-            ("org-list-search-forward" function (:arguments ("regexp" "bound" "noerror")) nil [40796 41109])
-            ("org-list-bullet-string" function (:arguments ("bullet")) nil [41141 41642])
-            ("org-list-swap-items" function (:arguments ("beg-A" "beg-B" "struct")) nil [41644 45028])
-            ("org-list-separating-blank-lines-number" function (:arguments ("pos" "struct" "prevs")) nil [45030 47037])
-            ("org-list-insert-item" function (:arguments ("pos" "struct" "prevs" "checkbox" "after-bullet")) nil [47039 52173])
-            ("org-list-delete-item" function (:arguments ("item" "struct")) nil [52175 53289])
-            ("org-list-send-item" function (:arguments ("item" "dest" "struct")) nil [53291 57536])
-            ("org-list-struct-outdent" function (:arguments ("start" "end" "struct" "parents")) nil [57538 58616])
-            ("org-list-struct-indent" function (:arguments ("start" "end" "struct" "parents" "prevs")) nil [58618 60780])
-            ("org-list-use-alpha-bul-p" function (:arguments ("first" "struct" "prevs")) nil [60811 61763])
-            ("org-list-inc-bullet-maybe" function (:arguments ("bullet")) nil [61765 62319])
-            ("org-list-struct-fix-bul" function (:arguments ("struct" "prevs")) nil [62321 64959])
-            ("org-list-struct-fix-ind" function (:arguments ("struct" "parents" "bullet-size")) nil [64961 66005])
-            ("org-list-struct-fix-box" function (:arguments ("struct" "parents" "prevs" "ordered")) nil [66007 68507])
-            ("org-list-struct-fix-item-end" function (:arguments ("struct")) nil [68509 69491])
-            ("org-list-struct-apply-struct" function (:arguments ("struct" "old-struct")) nil [69493 74991])
-            ("org-list-write-struct" function (:arguments ("struct" "parents" "old-struct")) nil [74993 76350])
-            ("org-apply-on-list" function (:arguments ("function" "init-value" "args")) nil [76371 77275])
-            ("org-list-set-item-visibility" function (:arguments ("item" "struct" "view")) nil [77277 78197])
-            ("org-list-item-body-column" function (:arguments ("item")) nil [78199 79026])
-            ("defalias" code nil nil [79058 79108])
-            ("org-beginning-of-item" function (:user-visible-flag t) nil [79110 79330])
-            ("org-beginning-of-item-list" function (:user-visible-flag t) nil [79332 79730])
-            ("org-end-of-item-list" function (:user-visible-flag t) nil [79732 80111])
-            ("org-end-of-item" function (:user-visible-flag t) nil [80113 80425])
-            ("org-previous-item" function (:user-visible-flag t) nil [80427 81047])
-            ("org-next-item" function (:user-visible-flag t) nil [81049 81660])
-            ("org-move-item-down" function (:user-visible-flag t) nil [81662 82570])
-            ("org-move-item-up" function (:user-visible-flag t) nil [82572 83379])
-            ("org-insert-item" function
-               (:user-visible-flag t
-                :arguments ("checkbox"))
-                nil [83381 84847])
-            ("org-list-repair" function (:user-visible-flag t) nil [84849 85138])
-            ("org-cycle-list-bullet" function
-               (:user-visible-flag t
-                :arguments ("which"))
-                nil [85140 87807])
-            ("org-toggle-checkbox" function
-               (:user-visible-flag t
-                :arguments ("toggle-presence"))
-                nil [87809 91686])
-            ("org-reset-checkbox-state-subtree" function (:user-visible-flag t) nil [91688 92180])
-            ("org-update-checkbox-count" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [92182 96849])
-            ("org-get-checkbox-statistics-face" function nil nil [96851 97333])
-            ("org-update-checkbox-count-maybe" function (:arguments ("all")) nil [97335 97649])
-            ("org-last-indent-begin-marker" variable (:default-value (make-marker)) nil [97651 97702])
-            ("org-last-indent-end-marker" variable (:default-value (make-marker)) nil [97703 97752])
-            ("org-list-indent-item-generic" function (:arguments ("arg" "no-subtree" "struct")) nil [97753 101198])
-            ("org-outdent-item" function (:user-visible-flag t) nil [101200 101809])
-            ("org-indent-item" function (:user-visible-flag t) nil [101811 102417])
-            ("org-outdent-item-tree" function (:user-visible-flag t) nil [102419 103036])
-            ("org-indent-item-tree" function (:user-visible-flag t) nil [103038 103652])
-            ("org-tab-ind-state" variable nil nil [103654 103680])
-            ("org-adapt-indentation" variable nil nil [103681 103711])
-            ("org-cycle-item-indentation" function nil nil [103712 105636])
-            ("org-sort-list" function
-               (:user-visible-flag t
-                :arguments ("with-case" "sorting-type" "getkey-func" "compare-func" "interactive?"))
-                nil [105638 110075])
-            ("org-toggle-item" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [110077 115511])
-            ("org-list-to-lisp" function (:arguments ("delete")) nil [115543 118330])
-            ("org-list-make-subtree" function (:user-visible-flag t) nil [118332 118618])
-            ("org-list-insert-radio-list" function (:user-visible-flag t) nil [118620 119131])
-            ("org-list-send-list" function
-               (:user-visible-flag t
-                :arguments ("maybe"))
-                nil [119133 121181])
-            ("org-list-to-generic" function (:arguments ("list" "params")) nil [121183 125689])
-            ("org-list--depth" function (:arguments ("element")) nil [125691 125951])
-            ("org-list--trailing-newlines" function (:arguments ("string")) nil [125953 126184])
-            ("org-list--generic-eval" function (:arguments ("value" "args")) nil [126186 126507])
-            ("org-list--to-generic-plain-list" function (:arguments ("params")) nil [126509 127826])
-            ("org-list--to-generic-item" function (:arguments ("params")) nil [127828 130492])
-            ("org-list-to-latex" function (:arguments ("list" "params")) nil [130494 130856])
-            ("org-list-to-html" function (:arguments ("list" "params")) nil [130858 131216])
-            ("org-list-to-texinfo" function (:arguments ("list" "params")) nil [131218 131588])
-            ("org-list-to-org" function (:arguments ("list" "params")) nil [131590 132236])
-            ("org-list-to-subtree" function (:arguments ("list" "params")) nil [132238 133307])
-            ("org-list" package nil nil [133309 133328]))          
-      :file "org-list.el"
-      :pointmax 133356
-      :fsize 133355
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-macs" include nil nil [1122 1141])
-            ("org-compat" include nil nil [1142 1163])
-            ("pcomplete" include nil nil [1164 1184])
-            ("declare-function" code nil nil [1186 1264])
-            ("declare-function" code nil nil [1265 1312])
-            ("declare-function" code nil nil [1313 1353])
-            ("declare-function" code nil nil [1354 1462])
-            ("declare-function" code nil nil [1463 1530])
-            ("declare-function" code nil nil [1531 1606])
-            ("org-drawer-regexp" variable nil nil [1638 1664])
-            ("org-property-re" variable nil nil [1665 1689])
-            ("org-current-tag-alist" variable nil nil [1690 1720])
-            ("org-thing-at-point" function nil nil [1722 3619])
-            ("org-command-at-point" function nil nil [3621 4112])
-            ("org-parse-arguments" function nil nil [4114 4660])
-            ("org-pcomplete-initial" function nil nil [4662 4902])
-            ("org-options-keywords" variable nil nil [4904 4933])
-            ("org-element-affiliated-keywords" variable nil nil [4950 4990])
-            ("declare-function" code nil nil [5013 5064])
-            ("pcomplete/org-mode/file-option" function nil nil [5065 5985])
-            ("pcomplete/org-mode/file-option/author" function nil nil [5987 6129])
-            ("org-time-stamp-formats" variable nil nil [6131 6162])
-            ("pcomplete/org-mode/file-option/date" function nil nil [6163 6336])
-            ("pcomplete/org-mode/file-option/email" function nil nil [6338 6481])
-            ("org-export-exclude-tags" variable nil nil [6483 6515])
-            ("pcomplete/org-mode/file-option/exclude_tags" function nil nil [6516 6755])
-            ("org-file-tags" variable nil nil [6757 6779])
-            ("pcomplete/org-mode/file-option/filetags" function nil nil [6780 6964])
-            ("org-export-default-language" variable nil nil [6966 7002])
-            ("pcomplete/org-mode/file-option/language" function nil nil [7003 7215])
-            ("org-default-priority" variable nil nil [7217 7246])
-            ("org-highest-priority" variable nil nil [7247 7276])
-            ("org-lowest-priority" variable nil nil [7277 7305])
-            ("pcomplete/org-mode/file-option/priorities" function nil nil [7306 7535])
-            ("org-export-select-tags" variable nil nil [7537 7568])
-            ("pcomplete/org-mode/file-option/select_tags" function nil nil [7569 7804])
-            ("org-startup-options" variable nil nil [7806 7834])
-            ("pcomplete/org-mode/file-option/startup" function nil nil [7835 8323])
-            ("pcomplete/org-mode/file-option/tags" function nil nil [8325 8499])
-            ("pcomplete/org-mode/file-option/title" function nil nil [8501 8842])
-            ("declare-function" code nil nil [8845 8904])
-            ("pcomplete/org-mode/file-option/options" function nil nil [8905 9657])
-            ("pcomplete/org-mode/file-option/infojs_opt" function nil nil [9659 9929])
-            ("pcomplete/org-mode/file-option/bind" function nil nil [9931 10184])
-            ("org-link-abbrev-alist-local" variable nil nil [10186 10222])
-            ("org-link-abbrev-alist" variable nil nil [10223 10253])
-            ("pcomplete/org-mode/link" function nil nil [10254 10499])
-            ("org-entities" variable nil nil [10501 10522])
-            ("pcomplete/org-mode/tex" function nil nil [10523 10764])
-            ("org-todo-keywords-1" variable nil nil [10766 10794])
-            ("pcomplete/org-mode/todo" function nil nil [10795 10951])
-            ("org-todo-line-regexp" variable nil nil [10953 10982])
-            ("pcomplete/org-mode/searchhead" function nil nil [10983 11492])
-            ("pcomplete/org-mode/tag" function nil nil [11494 12022])
-            ("pcomplete/org-mode/prop" function nil nil [12024 12422])
-            ("pcomplete/org-mode/block-option/src" function nil nil [12424 13034])
-            ("pcomplete/org-mode/block-option/clocktable" function nil nil [13036 13413])
-            ("org-pcomplete-case-double" function (:arguments ("list")) nil [13415 13659])
-            ("org-pcomplete" package nil nil [13677 13701]))          
-      :file "org-pcomplete.el"
-      :pointmax 13734
-      :fsize 13733
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1247 1264])
-            ("org-macs" include nil nil [1265 1284])
-            ("org-compat" include nil nil [1285 1306])
-            ("ob-keys" include nil nil [1307 1325])
-            ("ob-comint" include nil nil [1326 1346])
-            ("declare-function" code nil nil [1348 1397])
-            ("declare-function" code nil nil [1398 1462])
-            ("declare-function" code nil nil [1463 1519])
-            ("declare-function" code nil nil [1520 1595])
-            ("declare-function" code nil nil [1596 1668])
-            ("declare-function" code nil nil [1669 1758])
-            ("declare-function" code nil nil [1759 1831])
-            ("declare-function" code nil nil [1832 1891])
-            ("declare-function" code nil nil [1892 1985])
-            ("declare-function" code nil nil [1986 2047])
-            ("declare-function" code nil nil [2048 2119])
-            ("declare-function" code nil nil [2120 2177])
-            ("org-inhibit-startup" variable nil nil [2179 2207])
-            ("org-edit-src-turn-on-auto-save" variable nil nil [2209 2695])
-            ("org-edit-src-auto-save-idle-delay" variable nil nil [2697 3131])
-            ("org-coderef-label-format" variable (:default-value "(ref:%s)") nil [3133 3818])
-            ("org-edit-fixed-width-region-mode" variable (:default-value (quote artist-mode)) nil [3820 4157])
-            ("org-src-preserve-indentation" variable nil nil [4159 4766])
-            ("org-edit-src-content-indentation" variable (:default-value 2) nil [4768 5166])
-            ("org-edit-src-persistent-message" variable (:default-value t) nil [5168 5462])
-            ("org-src-ask-before-returning-to-edit-buffer" variable (:default-value t) nil [5464 5904])
-            ("org-src-window-setup" variable (:default-value (quote reorganize-frame)) nil [5906 6719])
-            ("org-src-mode-hook" variable nil nil [6721 7207])
-            ("org-src-lang-modes" variable (:default-value (quote (("ocaml" . tuareg) ("elisp" . emacs-lisp) ("ditaa" . artist) ("asymptote" . asy) ("dot" . fundamental) ("sqlite" . sql) ("calc" . fundamental) ("C" . c) ("cpp" . c++) ("C++" . c++) ("screen" . shell-script) ("shell" . sh) ("bash" . sh)))) nil [7209 7993])
-            ("org-src-block-faces" variable nil nil [7995 8710])
-            ("org-src-tab-acts-natively" variable nil nil [8712 8917])
-            ("defvar-local" code nil nil [8960 9002])
-            ("put" code nil nil [9003 9054])
-            ("defvar-local" code nil nil [9056 9099])
-            ("put" code nil nil [9100 9150])
-            ("defvar-local" code nil nil [9152 9190])
-            ("put" code nil nil [9191 9236])
-            ("defvar-local" code nil nil [9238 9276])
-            ("put" code nil nil [9277 9322])
-            ("defvar-local" code nil nil [9324 9369])
-            ("put" code nil nil [9370 9422])
-            ("defvar-local" code nil nil [9424 9462])
-            ("put" code nil nil [9463 9508])
-            ("defvar-local" code nil nil [9510 9551])
-            ("put" code nil nil [9552 9600])
-            ("defvar-local" code nil nil [9602 9637])
-            ("put" code nil nil [9638 9680])
-            ("defvar-local" code nil nil [9682 9730])
-            ("put" code nil nil [9731 9786])
-            ("defvar-local" code nil nil [9788 9822])
-            ("put" code nil nil [9823 9864])
-            ("defvar-local" code nil nil [9866 9918])
-            ("put" code nil nil [9919 9978])
-            ("defvar-local" code nil nil [9980 10066])
-            ("put" code nil nil [10067 10113])
-            ("defvar-local" code nil nil [10115 10277])
-            ("put" code nil nil [10278 10322])
-            ("org-src--construct-edit-buffer-name" function (:arguments ("org-buffer-name" "lang")) nil [10324 10504])
-            ("org-src--edit-buffer" function (:arguments ("beg" "end")) nil [10506 10967])
-            ("org-src--source-buffer" function nil nil [10969 11235])
-            ("org-src--get-lang-mode" function (:arguments ("lang")) nil [11237 11525])
-            ("org-src--coordinates" function (:arguments ("pos" "beg" "end")) nil [11527 12112])
-            ("org-src--goto-coordinates" function (:arguments ("coord" "beg" "end")) nil [12114 12675])
-            ("org-src--contents-area" function (:arguments ("datum")) nil [12677 14630])
-            ("org-src--make-source-overlay" function (:arguments ("beg" "end" "edit-buffer")) nil [14632 15598])
-            ("org-src--remove-overlay" function nil nil [15600 15752])
-            ("org-src--on-datum-p" function (:arguments ("datum")) nil [15754 16203])
-            ("org-src--contents-for-write-back" function nil nil [16205 17602])
-            ("org-src--edit-element" function (:arguments ("datum" "name" "initialize" "write-back" "contents" "remote")) nil [17604 21663])
-            ("org-src-font-lock-fontify-block" function (:arguments ("lang" "start" "end")) nil [21704 23334])
-            ("org-escape-code-in-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [23359 23736])
-            ("org-escape-code-in-string" function (:arguments ("s")) nil [23738 23998])
-            ("org-unescape-code-in-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [24000 24387])
-            ("org-unescape-code-in-string" function (:arguments ("s")) nil [24389 24655])
-            ("org-src-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "'" (quote org-edit-src-exit)) (define-key map "" (quote org-edit-src-abort)) (define-key map "" (quote org-edit-src-save)) map)) nil [24684 24905])
-            ("define-minor-mode" code nil nil [24907 26417])
-            ("org-src-mode-configure-edit-buffer" function nil nil [26419 26890])
-            ("add-hook" code nil nil [26892 26958])
-            ("org-src-associate-babel-session" function
-               (:user-visible-flag t
-                :arguments ("info"))
-                nil [26992 27408])
-            ("org-src-babel-configure-edit-buffer" function nil nil [27410 27543])
-            ("add-hook" code nil nil [27545 27612])
-            ("org-src-do-at-code-block" function (:arguments ("body")) nil [27632 27925])
-            ("org-src-do-key-sequence-at-code-block" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [27927 28923])
-            ("org-src-edit-buffer-p" function (:arguments ("buffer")) nil [28925 29269])
-            ("org-src-switch-to-buffer" function (:arguments ("buffer" "context")) nil [29271 30119])
-            ("org-src-coderef-format" function (:arguments ("element")) nil [30121 30690])
-            ("org-src-coderef-regexp" function (:arguments ("fmt" "label")) nil [30692 31310])
-            ("org-edit-footnote-reference" function (:user-visible-flag t) nil [31312 33644])
-            ("org-edit-table.el" function (:user-visible-flag t) nil [33646 34477])
-            ("org-edit-latex-environment" function (:user-visible-flag t) nil [34479 35250])
-            ("org-edit-export-block" function (:user-visible-flag t) nil [35252 36337])
-            ("org-edit-src-code" function
-               (:user-visible-flag t
-                :arguments ("code" "edit-buffer-name"))
-                nil [36339 38297])
-            ("org-edit-inline-src-code" function (:user-visible-flag t) nil [38299 39593])
-            ("org-edit-fixed-width-region" function (:user-visible-flag t) nil [39595 40547])
-            ("org-edit-src-abort" function (:user-visible-flag t) nil [40549 40714])
-            ("org-edit-src-continue" function
-               (:user-visible-flag t
-                :arguments ("e"))
-                nil [40716 41069])
-            ("org-edit-src-save" function (:user-visible-flag t) nil [41071 41987])
-            ("org-edit-src-exit" function (:user-visible-flag t) nil [41989 43909])
-            ("org-src" package nil nil [43912 43930]))          
-      :file "org-src.el"
-      :pointmax 43957
-      :fsize 43956
-      :lastmodtime '(23537 23329 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1154 1171])
-            ("org-macs" include nil nil [1172 1191])
-            ("org-compat" include nil nil [1192 1213])
-            ("declare-function" code nil nil [1215 1259])
-            ("declare-function" code nil nil [1260 1321])
-            ("declare-function" code nil nil [1322 1375])
-            ("declare-function" code nil nil [1376 1435])
-            ("declare-function" code nil nil [1436 1492])
-            ("declare-function" code nil nil [1493 1568])
-            ("declare-function" code nil nil [1569 1641])
-            ("declare-function" code nil nil [1642 1727])
-            ("declare-function" code nil nil [1728 1800])
-            ("declare-function" code nil nil [1801 1860])
-            ("declare-function" code nil nil [1861 1941])
-            ("declare-function" code nil nil [1942 2012])
-            ("declare-function" code nil nil [2013 2060])
-            ("declare-function" code nil nil [2061 2130])
-            ("declare-function" code nil nil [2131 2183])
-            ("declare-function" code nil nil [2184 2239])
-            ("declare-function" code nil nil [2240 2292])
-            ("declare-function" code nil nil [2293 2359])
-            ("declare-function" code nil nil [2360 2417])
-            ("declare-function" code nil nil [2418 2475])
-            ("declare-function" code nil nil [2476 2525])
-            ("electric-indent-mode" variable nil nil [2527 2556])
-            ("org-blank-before-new-entry" variable nil nil [2557 2592])
-            ("org-bracket-link-regexp" variable nil nil [2613 2645])
-            ("org-complex-heading-regexp" variable nil nil [2666 2701])
-            ("org-odd-levels-only" variable nil nil [2722 2750])
-            ("org-outline-regexp" variable nil nil [2772 2799])
-            ("org-outline-regexp-bol" variable nil nil [2821 2852])
-            ("org-footnote-re" variable
-               (:constant-flag t
-                :default-value "\\[fn:\\(?:\\(?1:[-_[:word:]]+\\)?\\(:\\)\\|\\(?1:[-_[:word:]]+\\)\\]\\)")
-                nil [2893 3214])
-            ("org-footnote-definition-re" variable
-               (:constant-flag t
-                :default-value "^\\[fn:\\([-_[:word:]]+\\)\\]")
-                nil [3216 3390])
-            ("org-footnote-forbidden-blocks" variable
-               (:constant-flag t
-                :default-value (quote ("comment" "example" "export" "src")))
-                nil [3392 3523])
-            ("org-footnote" customgroup (:user-visible-flag t) nil [3547 3637])
-            ("org-footnote-section" variable (:default-value "Footnotes") nil [3639 4686])
-            ("org-footnote-define-inline" variable nil nil [4688 5030])
-            ("org-footnote-auto-label" variable (:default-value t) nil [5032 5713])
-            ("org-footnote-auto-adjust" variable nil nil [5715 6353])
-            ("org-footnote-fill-after-inline-note-extraction" variable nil nil [6355 6699])
-            ("org-footnote-in-valid-context-p" function nil nil [6720 7146])
-            ("org-footnote-at-reference-p" function nil nil [7148 8591])
-            ("org-footnote-at-definition-p" function nil nil [8593 9887])
-            ("org-footnote--allow-reference-p" function nil nil [9916 12156])
-            ("org-footnote--clear-footnote-section" function nil nil [12158 13096])
-            ("org-footnote--set-label" function (:arguments ("label")) nil [13098 13413])
-            ("org-footnote--collect-references" function (:arguments ("anonymous")) nil [13415 15932])
-            ("org-footnote--collect-definitions" function (:arguments ("delete")) nil [15934 17218])
-            ("org-footnote--goto-local-insertion-point" function nil nil [17220 17773])
-            ("org-footnote-get-next-reference" function (:arguments ("label" "backward" "limit")) nil [17794 18580])
-            ("org-footnote-next-reference-or-definition" function (:arguments ("limit")) nil [18582 19545])
-            ("org-footnote-goto-definition" function
-               (:user-visible-flag t
-                :arguments ("label" "location"))
-                nil [19547 20674])
-            ("org-footnote-goto-previous-reference" function
-               (:user-visible-flag t
-                :arguments ("label"))
-                nil [20676 21342])
-            ("org-footnote-normalize-label" function (:arguments ("label")) nil [21360 21642])
-            ("org-footnote-get-definition" function (:arguments ("label")) nil [21644 22558])
-            ("org-footnote-all-labels" function nil nil [22560 23107])
-            ("org-footnote-unique-label" function (:arguments ("current")) nil [23109 23522])
-            ("org-footnote-new" function (:user-visible-flag t) nil [23559 25364])
-            ("org-footnote-create-definition" function (:arguments ("label")) nil [25366 26211])
-            ("org-footnote-delete-references" function (:arguments ("label")) nil [26213 26575])
-            ("org-footnote-delete-definitions" function (:arguments ("label")) nil [26577 27319])
-            ("org-footnote-delete" function (:arguments ("label")) nil [27321 28594])
-            ("org-footnote-renumber-fn:N" function (:user-visible-flag t) nil [28638 29630])
-            ("org-footnote-sort" function nil nil [29632 31407])
-            ("org-footnote-normalize" function (:user-visible-flag t) nil [31409 34606])
-            ("org-footnote-auto-adjust-maybe" function nil nil [34608 35110])
-            ("org-footnote-action" function
-               (:user-visible-flag t
-                :arguments ("special"))
-                nil [35154 37294])
-            ("org-footnote" package nil nil [37297 37320]))          
-      :file "org-footnote.el"
-      :pointmax 37427
-      :fsize 37426
-      :lastmodtime '(23537 23332 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1896 1913])
-            ("org-macs" include nil nil [1914 1933])
-            ("org-compat" include nil nil [1934 1955])
-            ("declare-function" code nil nil [1957 2013])
-            ("declare-function" code nil nil [2014 2086])
-            ("declare-function" code nil nil [2087 2147])
-            ("declare-function" code nil nil [2148 2220])
-            ("declare-function" code nil nil [2221 2280])
-            ("declare-function" code nil nil [2281 2356])
-            ("declare-function" code nil nil [2357 2403])
-            ("declare-function" code nil nil [2404 2482])
-            ("declare-function" code nil nil [2483 2519])
-            ("declare-function" code nil nil [2520 2577])
-            ("declare-function" code nil nil [2578 2622])
-            ("declare-function" code nil nil [2623 2684])
-            ("declare-function" code nil nil [2685 2740])
-            ("defvar-local" code nil nil [2757 3093])
-            ("org-macro--collect-macros" function nil nil [3110 4879])
-            ("org-macro-initialize-templates" function nil nil [4881 6805])
-            ("org-macro-expand" function (:arguments ("macro" "templates")) nil [6807 7874])
-            ("org-macro-replace-all" function (:arguments ("templates" "finalize" "keywords")) nil [7876 10169])
-            ("org-macro-escape-arguments" function (:arguments ("args")) nil [10171 10961])
-            ("org-macro-extract-arguments" function (:arguments ("s")) nil [10963 11520])
-            ("org-macro--vc-modified-time" function (:arguments ("file")) nil [11580 12310])
-            ("org-macro--counter-table" variable nil nil [12312 12399])
-            ("org-macro--counter-initialize" function nil nil [12401 12550])
-            ("org-macro--counter-increment" function (:arguments ("name" "action")) nil [12552 13560])
-            ("org-macro" package nil nil [13563 13583]))          
-      :file "org-macro.el"
-      :pointmax 13611
-      :fsize 13610
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :file "ob.el"
-      :fsize 1264
-      :lastmodtime '(23537 23331 0 0))
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [954 971])
-            ("ob-eval" include nil nil [972 990])
-            ("org-macs" include nil nil [991 1010])
-            ("org-compat" include nil nil [1011 1032])
-            ("org-babel-exeext" variable
-               (:constant-flag t
-                :default-value (if (memq system-type (quote (windows-nt cygwin))) ".exe" nil))
-                nil [1034 1129])
-            ("org-babel-library-of-babel" variable nil nil [1131 1166])
-            ("org-edit-src-content-indentation" variable nil nil [1167 1208])
-            ("org-src-lang-modes" variable nil nil [1209 1236])
-            ("org-src-preserve-indentation" variable nil nil [1237 1274])
-            ("declare-function" code nil nil [1276 1322])
-            ("declare-function" code nil nil [1323 1385])
-            ("declare-function" code nil nil [1386 1444])
-            ("declare-function" code nil nil [1445 1508])
-            ("declare-function" code nil nil [1509 1567])
-            ("declare-function" code nil nil [1568 1628])
-            ("declare-function" code nil nil [1629 1684])
-            ("declare-function" code nil nil [1685 1750])
-            ("declare-function" code nil nil [1751 1829])
-            ("declare-function" code nil nil [1830 1887])
-            ("declare-function" code nil nil [1888 1933])
-            ("declare-function" code nil nil [1934 1984])
-            ("declare-function" code nil nil [1985 2049])
-            ("declare-function" code nil nil [2050 2130])
-            ("declare-function" code nil nil [2131 2181])
-            ("declare-function" code nil nil [2182 2238])
-            ("declare-function" code nil nil [2239 2311])
-            ("declare-function" code nil nil [2312 2377])
-            ("declare-function" code nil nil [2378 2450])
-            ("declare-function" code nil nil [2451 2510])
-            ("declare-function" code nil nil [2511 2594])
-            ("declare-function" code nil nil [2595 2659])
-            ("declare-function" code nil nil [2660 2721])
-            ("declare-function" code nil nil [2722 2783])
-            ("declare-function" code nil nil [2784 2857])
-            ("declare-function" code nil nil [2858 2901])
-            ("declare-function" code nil nil [2902 2973])
-            ("declare-function" code nil nil [2974 3033])
-            ("declare-function" code nil nil [3034 3082])
-            ("declare-function" code nil nil [3083 3146])
-            ("declare-function" code nil nil [3147 3212])
-            ("declare-function" code nil nil [3213 3283])
-            ("declare-function" code nil nil [3284 3355])
-            ("declare-function" code nil nil [3356 3422])
-            ("declare-function" code nil nil [3423 3472])
-            ("declare-function" code nil nil [3473 3550])
-            ("declare-function" code nil nil [3551 3631])
-            ("declare-function" code nil nil [3632 3705])
-            ("declare-function" code nil nil [3706 3778])
-            ("declare-function" code nil nil [3779 3845])
-            ("declare-function" code nil nil [3846 3898])
-            ("declare-function" code nil nil [3899 3959])
-            ("declare-function" code nil nil [3960 4017])
-            ("declare-function" code nil nil [4018 4089])
-            ("declare-function" code nil nil [4090 4163])
-            ("declare-function" code nil nil [4164 4213])
-            ("declare-function" code nil nil [4214 4281])
-            ("declare-function" code nil nil [4282 4340])
-            ("declare-function" code nil nil [4341 4405])
-            ("declare-function" code nil nil [4406 4463])
-            ("declare-function" code nil nil [4464 4524])
-            ("declare-function" code nil nil [4525 4569])
-            ("declare-function" code nil nil [4570 4633])
-            ("declare-function" code nil nil [4634 4696])
-            ("declare-function" code nil nil [4697 4745])
-            ("declare-function" code nil nil [4746 4837])
-            ("org-babel" customgroup (:user-visible-flag t) nil [4839 4958])
-            ("org-confirm-babel-evaluate" variable (:default-value t) nil [4960 6031])
-            ("put" code nil nil [6097 6173])
-            ("org-babel-no-eval-on-ctrl-c-ctrl-c" variable nil nil [6175 6377])
-            ("org-babel-results-keyword" variable (:default-value "RESULTS") nil [6379 6750])
-            ("org-babel-noweb-wrap-start" variable (:default-value "<<") nil [6752 6928])
-            ("org-babel-noweb-wrap-end" variable (:default-value ">>") nil [6930 7104])
-            ("org-babel-inline-result-wrap" variable (:default-value "=%s=") nil [7106 7309])
-            ("put" code nil nil [7310 7455])
-            ("org-babel-hash-show-time" variable nil nil [7457 7686])
-            ("org-babel-uppercase-example-markers" variable nil nil [7688 7923])
-            ("org-babel-noweb-wrap" function (:arguments ("regexp")) nil [7925 8090])
-            ("org-babel-src-name-regexp" variable (:default-value "^[ 	]*#\\+name:[ 	]*") nil [8092 8210])
-            ("org-babel-multi-line-header-regexp" variable (:default-value "^[ 	]*#\\+headers?:[ 	]*\\([^
-]*\\)$") nil [8212 8365])
-            ("org-babel-src-block-regexp" variable (:default-value (concat "^\\([ 	]*\\)#\\+begin_src[ 	]+\\([^ 	
-
]+\\)[ 	]*" "\\([^\":
-]*\"[^\"
-*]*\"[^\":
-]*\\|[^\":
-]*\\)" "\\([^
-]*\\)
-" "\\([^�]*?
-\\)??[ 	]*#\\+end_src")) nil [8367 8744])
-            ("org-babel--get-vars" function (:arguments ("params")) nil [8746 9076])
-            ("org-babel-exp-reference-buffer" variable nil nil [9078 9293])
-            ("org-babel-check-confirm-evaluate" function (:arguments ("info")) nil [9295 10202])
-            ("org-babel-check-evaluate" function (:arguments ("info")) nil [10204 10688])
-            ("org-babel-confirm-evaluate-answer-no" variable nil nil [10737 10782])
-            ("org-babel-confirm-evaluate" function (:arguments ("info")) nil [10784 11936])
-            ("org-babel-execute-safely-maybe" function nil nil [11953 12070])
-            ("org-babel-execute-maybe" function nil nil [12087 12216])
-            ("org-babel-when-in-src-block" function (:arguments ("body")) nil [12218 12497])
-            ("org-babel-execute-src-block-maybe" function (:user-visible-flag t) nil [12499 12821])
-            ("org-babel-view-src-block-info" function (:user-visible-flag t) nil [12838 14227])
-            ("org-babel-expand-src-block-maybe" function (:user-visible-flag t) nil [14244 14529])
-            ("org-babel-load-in-session-maybe" function (:user-visible-flag t) nil [14546 14839])
-            ("add-hook" code nil nil [14841 14901])
-            ("org-babel-pop-to-session-maybe" function (:user-visible-flag t) nil [14918 15198])
-            ("add-hook" code nil nil [15200 15261])
-            ("org-babel-common-header-args-w-values" variable
-               (:constant-flag t
-                :default-value (quote ((cache (no yes)) (cmdline . :any) (colnames (nil no yes)) (comments (no link yes org both noweb)) (dir . :any) (eval (yes no no-export strip-export never-export eval never query)) (exports (code results both none)) (epilogue . :any) (file . :any) (file-desc . :any) (file-ext . :any) (hlines (no yes)) (mkdirp (yes no)) (no-expand) (noeval) (noweb (yes no tangle no-export strip-export)) (noweb-ref . :any) (noweb-sep . :any) (output-dir . :any) (padline (yes no)) (post . :any) (prologue . :any) (results (file list vector table scalar verbatim) (raw html latex org code pp drawer) (replace silent none append prepend) (output value)) (rownames (no yes)) (sep . :any) (session . :any) (shebang . :any) (tangle (tangle yes no :any)) (tangle-mode (493 365 292 :any)) (var . :any) (wrap . :any))))
-                nil [15263 16325])
-            ("org-babel-header-arg-names" variable
-               (:constant-flag t
-                :default-value (mapcar (function car) org-babel-common-header-args-w-values))
-                nil [16327 16562])
-            ("org-babel-safe-header-args" variable
-               (:constant-flag t
-                :default-value (quote (:cache :colnames :comments :exports :epilogue :hlines :noeval :noweb :noweb-ref :noweb-sep :padline :prologue :rownames :sep :session :tangle :wrap (:eval "never" "query") (:results lambda (str) (not (string-match "file" str))))))
-                nil [16564 17415])
-            ("org-babel-header-args-safe-fn" function (:arguments ("safe-list")) nil [17417 18045])
-            ("org-babel-default-header-args" variable (:default-value (quote ((:session . "none") (:results . "replace") (:exports . "code") (:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no")))) nil [18047 18284])
-            ("put" code nil nil [18285 18406])
-            ("org-babel-default-inline-header-args" variable (:default-value (quote ((:session . "none") (:results . "replace") (:exports . "results") (:hlines . "yes")))) nil [18408 18615])
-            ("put" code nil nil [18616 18744])
-            ("org-babel-name-regexp" variable
-               (:constant-flag t
-                :default-value (format "^[ 	]*#\\+%s:[ 	]*" (regexp-opt (quote ("NAME" "TBLNAME")))))
-                nil [18746 18936])
-            ("org-babel-result-regexp" variable
-               (:constant-flag t
-                :default-value (format "^[ 	]*#\\+%s\\(?:\\[\\(?:%s \\)?\\([[:alnum:]]+\\)\\]\\)?:[ 	]*" org-babel-results-keyword "<\\(?:[0-9]\\{4\\}-[0-1][0-9]-[0-3][0-9] [0-2][0-9]\\(?::[0-5][0-9]\\)\\{2\\}\\)>"))
-                nil [18938 19338])
-            ("org-babel-result-w-name-regexp" variable
-               (:constant-flag t
-                :default-value (concat org-babel-result-regexp "\\(?9:[^ 	
-
]+\\)"))
-                nil [19340 19526])
-            ("org-babel-min-lines-for-block-output" variable (:default-value 10) nil [19528 19923])
-            ("org-babel-noweb-error-all-langs" variable nil nil [19925 20119])
-            ("org-babel-noweb-error-langs" variable nil nil [20121 20456])
-            ("org-babel-hash-show" variable (:default-value 4) nil [20458 20555])
-            ("org-babel-after-execute-hook" variable nil nil [20557 20670])
-            ("org-babel-named-src-block-regexp-for-name" function (:arguments ("name")) nil [20672 21137])
-            ("org-babel-named-data-regexp-for-name" function (:arguments ("name")) nil [21139 21312])
-            ("org-babel--normalize-body" function (:arguments ("datum")) nil [21314 22092])
-            ("org-babel-current-src-block-location" variable nil nil [22108 22437])
-            ("*this*" variable nil nil [22439 22454])
-            ("org-babel-get-src-block-info" function (:arguments ("light" "datum")) nil [22456 24462])
-            ("org-babel-execute-src-block" function
-               (:user-visible-flag t
-                :arguments ("arg" "info" "params"))
-                nil [24479 28482])
-            ("org-babel-expand-body:generic" function (:arguments ("body" "params" "var-lines")) nil [28484 29040])
-            ("org-babel-expand-src-block" function
-               (:user-visible-flag t
-                :arguments ("_arg" "info" "params"))
-                nil [29057 30243])
-            ("org-babel-edit-distance" function (:arguments ("s1" "s2")) nil [30245 31006])
-            ("org-babel-combine-header-arg-lists" function (:arguments ("original" "others")) nil [31008 31409])
-            ("org-babel-check-src-block" function (:user-visible-flag t) nil [31426 32346])
-            ("org-babel-insert-header-arg" function
-               (:user-visible-flag t
-                :arguments ("header-arg" "value"))
-                nil [32363 33634])
-            ("org-babel-header-arg-expand" function nil nil [33711 33965])
-            ("org-babel-enter-header-arg-w-completion" function (:arguments ("lang")) nil [33967 34826])
-            ("add-hook" code nil nil [34828 34887])
-            ("org-babel-load-in-session" function
-               (:user-visible-flag t
-                :arguments ("_arg" "info"))
-                nil [34904 35882])
-            ("org-babel-initiate-session" function
-               (:user-visible-flag t
-                :arguments ("arg" "info"))
-                nil [35899 37177])
-            ("org-babel-switch-to-session" function
-               (:user-visible-flag t
-                :arguments ("arg" "info"))
-                nil [37194 37543])
-            ("defalias" code nil nil [37545 37610])
-            ("org-src-window-setup" variable nil nil [37612 37641])
-            ("org-babel-switch-to-session-with-code" function
-               (:user-visible-flag t
-                :arguments ("arg" "_info"))
-                nil [37658 38235])
-            ("org-babel-do-in-edit-buffer" function (:arguments ("body")) nil [38252 39196])
-            ("org-babel-do-key-sequence-in-edit-buffer" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [39198 39874])
-            ("org-bracket-link-regexp" variable nil nil [39876 39908])
-            ("org-babel-active-location-p" function nil nil [39910 40076])
-            ("org-babel-open-src-block-result" function
-               (:user-visible-flag t
-                :arguments ("re-run"))
-                nil [40093 41112])
-            ("org-babel-map-src-blocks" function (:arguments ("file" "body")) nil [41129 43794])
-            ("def-edebug-spec" code nil nil [43795 43849])
-            ("org-babel-map-inline-src-blocks" function (:arguments ("file" "body")) nil [43866 44915])
-            ("org-babel-map-call-lines" function (:arguments ("file" "body")) nil [44932 46004])
-            ("org-babel-map-executables" function (:arguments ("file" "body")) nil [46021 47168])
-            ("org-babel-execute-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [47185 47659])
-            ("org-babel-execute-subtree" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [47676 47994])
-            ("org-babel-sha1-hash" function
-               (:user-visible-flag t
-                :arguments ("info"))
-                nil [48011 50164])
-            ("org-babel-current-result-hash" function (:arguments ("info")) nil [50166 50480])
-            ("org-babel-set-current-result-hash" function (:arguments ("hash" "info")) nil [50482 50963])
-            ("org-babel-hide-hash" function nil nil [50965 51690])
-            ("org-babel-hide-all-hashes" function nil nil [51692 52135])
-            ("add-hook" code nil nil [52136 52188])
-            ("org-babel-hash-at-point" function
-               (:user-visible-flag t
-                :arguments ("point"))
-                nil [52190 52631])
-            ("org-babel-result-hide-spec" function nil nil [52633 52854])
-            ("add-hook" code nil nil [52855 52908])
-            ("org-babel-hide-result-overlays" variable nil nil [52910 52982])
-            ("org-babel-result-hide-all" function (:user-visible-flag t) nil [52984 53305])
-            ("org-babel-show-result-all" function nil nil [53307 53489])
-            ("org-babel-hide-result-toggle-maybe" function (:user-visible-flag t) nil [53506 53852])
-            ("org-babel-hide-result-toggle" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [53883 55571])
-            ("add-hook" code nil nil [55613 55679])
-            ("add-hook" code nil nil [55724 55846])
-            ("org-file-properties" variable nil nil [55848 55876])
-            ("org-babel-params-from-properties" function (:arguments ("lang")) nil [55877 56571])
-            ("org-babel-balanced-split" function (:arguments ("string" "alts")) nil [56573 59376])
-            ("org-babel-join-splits-near-ch" function (:arguments ("ch" "list")) nil [59378 59834])
-            ("org-babel-parse-header-arguments" function (:arguments ("arg-string")) nil [59836 60464])
-            ("org-babel-parse-multiple-vars" function (:arguments ("header-arguments")) nil [60466 60992])
-            ("org-babel-process-params" function (:arguments ("params")) nil [60994 62387])
-            ("org-babel-del-hlines" function (:arguments ("table")) nil [62413 62507])
-            ("org-babel-get-colnames" function (:arguments ("table")) nil [62509 62824])
-            ("org-babel-get-rownames" function (:arguments ("table")) nil [62826 63328])
-            ("org-babel-put-colnames" function (:arguments ("table" "colnames")) nil [63330 63476])
-            ("org-babel-put-rownames" function (:arguments ("table" "rownames")) nil [63478 63737])
-            ("org-babel-pick-name" function (:arguments ("names" "selector")) nil [63739 64254])
-            ("org-babel-disassemble-tables" function (:arguments ("vars" "hlines" "colnames" "rownames")) nil [64256 65509])
-            ("org-babel-reassemble-table" function (:arguments ("table" "colnames" "rownames")) nil [65511 66092])
-            ("org-babel-where-is-src-block-head" function (:arguments ("src-block")) nil [66094 67004])
-            ("org-babel-goto-src-block-head" function (:user-visible-flag t) nil [67021 67253])
-            ("org-babel-goto-named-src-block" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [67270 68513])
-            ("org-babel-find-named-block" function (:arguments ("name")) nil [68515 69041])
-            ("org-babel-src-block-names" function (:arguments ("file")) nil [69043 69595])
-            ("org-babel-goto-named-result" function
-               (:user-visible-flag t
-                :arguments ("name"))
-                nil [69612 70047])
-            ("org-babel-find-named-result" function (:arguments ("name")) nil [70049 70691])
-            ("org-babel-result-names" function (:arguments ("file")) nil [70693 71060])
-            ("org-babel-next-src-block" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [71077 71306])
-            ("org-babel-previous-src-block" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [71323 71561])
-            ("org-babel-load-languages" variable nil nil [71563 71596])
-            ("org-babel-mark-block" function (:user-visible-flag t) nil [71613 71929])
-            ("org-babel-demarcate-block" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [71931 74287])
-            ("org-babel--insert-results-keyword" function (:arguments ("name" "hash")) nil [74289 75220])
-            ("org-babel--clear-results-maybe" function (:arguments ("hash")) nil [75222 76239])
-            ("org-babel-where-is-src-block-result" function (:arguments ("insert" "_info" "hash")) nil [76241 79636])
-            ("org-babel-read-element" function (:arguments ("element")) nil [79638 81090])
-            ("org-babel-read-result" function nil nil [81092 81315])
-            ("org-babel-read-table" function nil nil [81317 81589])
-            ("org-babel-read-list" function nil nil [81591 81757])
-            ("org-link-types-re" variable nil nil [81759 81785])
-            ("org-babel-read-link" function nil nil [81786 82386])
-            ("org-babel-format-result" function (:arguments ("result" "sep")) nil [82388 82716])
-            ("org-babel-insert-result" function (:arguments ("result" "result-params" "info" "hash" "lang")) nil [82718 93486])
-            ("org-babel-remove-result" function
-               (:user-visible-flag t
-                :arguments ("info" "keep-keyword"))
-                nil [93488 94034])
-            ("org-babel-remove-inline-result" function
-               (:user-visible-flag t
-                :arguments ("datum"))
-                nil [94036 94986])
-            ("org-babel-remove-result-one-or-many" function
-               (:user-visible-flag t
-                :arguments ("x"))
-                nil [94988 95282])
-            ("org-babel-result-end" function nil nil [95284 95957])
-            ("org-babel-result-to-file" function (:arguments ("result" "description")) nil [95959 96550])
-            ("org-babel-examplify-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "results-switches" "inline"))
-                nil [96552 97627])
-            ("org-babel-update-block-body" function (:arguments ("new-body")) nil [97629 98629])
-            ("org-babel-merge-params" function (:arguments ("plists")) nil [98631 102696])
-            ("org-babel-use-quick-and-dirty-noweb-expansion" variable nil nil [102698 103007])
-            ("org-babel-noweb-p" function (:arguments ("params" "context")) nil [103009 103446])
-            ("org-babel-expand-noweb-references" function (:arguments ("info" "parent-buffer")) nil [103448 109925])
-            ("org-babel--script-escape-inner" function (:arguments ("str")) nil [109927 112067])
-            ("org-babel-script-escape" function (:arguments ("str" "force")) nil [112069 113161])
-            ("org-babel-read" function (:arguments ("cell" "inhibit-lisp-eval")) nil [113163 113872])
-            ("org-babel--string-to-number" function (:arguments ("string")) nil [113874 114084])
-            ("org-babel-import-elisp-from-file" function (:arguments ("file-name" "separator")) nil [114086 114832])
-            ("org-babel-string-read" function (:arguments ("cell")) nil [114834 115101])
-            ("org-babel-chomp" function (:arguments ("string" "regexp")) nil [115103 115520])
-            ("org-babel-process-file-name" function (:arguments ("name" "no-quote-p")) nil [115522 116057])
-            ("org-babel-temporary-directory" variable nil nil [116059 116097])
-            ("unless" code nil nil [116098 116533])
-            ("org-babel-remote-temporary-directory" variable (:default-value "/tmp/") nil [116535 116682])
-            ("org-babel-result-cond" function (:arguments ("result-params" "scalar-form" "table-forms")) nil [116684 117386])
-            ("def-edebug-spec" code nil nil [117387 117443])
-            ("org-babel-temp-file" function (:arguments ("prefix" "suffix")) nil [117445 118241])
-            ("org-babel-remove-temporary-directory" function nil nil [118243 119183])
-            ("add-hook" code nil nil [119185 119250])
-            ("org-babel-one-header-arg-safe-p" function (:arguments ("pair" "safe-list")) nil [119252 119817])
-            ("org-babel-generate-file-param" function (:arguments ("src-name" "params")) nil [119819 121253])
-            ("org-babel-graphical-output-file" function (:arguments ("params")) nil [121255 121815])
-            ("org-babel-make-language-alias" function (:arguments ("new" "old")) nil [121817 122741])
-            ("org-babel-strip-quotes" function (:arguments ("string")) nil [122743 122877])
-            ("ob-core" package nil nil [122879 122897]))          
-      :file "ob-core.el"
-      :pointmax 122999
-      :fsize 122998
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-macs" include nil nil [1065 1084])
-            ("org-babel-error-buffer-name" variable (:default-value "*Org-Babel Error Output*") nil [1086 1149])
-            ("declare-function" code nil nil [1150 1224])
-            ("org-babel-eval-error-notify" function (:arguments ("exit-code" "stderr")) nil [1226 1608])
-            ("org-babel-eval" function (:arguments ("cmd" "body")) nil [1610 2552])
-            ("org-babel-eval-read-file" function (:arguments ("file")) nil [2554 2709])
-            ("org-babel--shell-command-on-region" function (:arguments ("start" "end" "command" "error-buffer")) nil [2711 5207])
-            ("org-babel-eval-wipe-error-buffer" function nil nil [5209 5517])
-            ("ob-eval" package nil nil [5519 5537]))          
-      :file "ob-eval.el"
-      :pointmax 5566
-      :fsize 5565
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [1196 1214])
-            ("org-babel-key-prefix" variable (:default-value "") nil [1216 1470])
-            ("org-babel-map" variable (:default-value (make-sparse-keymap)) nil [1472 1563])
-            ("org-babel-describe-bindings" function (:user-visible-flag t) nil [1580 1737])
-            ("org-babel-key-bindings" variable (:default-value (quote (("p" . org-babel-previous-src-block) ("" . org-babel-previous-src-block) ("n" . org-babel-next-src-block) ("" . org-babel-next-src-block) ("e" . org-babel-execute-maybe) ("" . org-babel-execute-maybe) ("o" . org-babel-open-src-block-result) ("" . org-babel-open-src-block-result) ("" . org-babel-expand-src-block) ("v" . org-babel-expand-src-block) ("u" . org-babel-goto-src-block-head) ("" . org-babel-goto-src-block-head) ("g" . org-babel-goto-named-src-block) ("r" . org-babel-goto-named-result) ("" . org-babel-goto-named-result) ("" . org-babel-execute-buffer) ("b" . org-babel-execute-buffer) ("" . org-babel-execute-subtree) ("s" . org-babel-execute-subtree) ("" . org-babel-demarcate-block) ("d" . org-babel-demarcate-block) ("" . org-babel-tangle) ("t" . org-babel-tangle) ("" . org-babel-tangle-file) ("f" . org-babel-tangle-file) ("" . org-babel-check-src-block) ("c" . org-babel-check-src-block) ("
-" . org-babel-insert-header-arg) ("j" . org-babel-insert-header-arg) ("" . org-babel-load-in-session) ("l" . org-babel-load-in-session) ("	" . org-babel-lob-ingest) ("i" . org-babel-lob-ingest) ("	" . org-babel-view-src-block-info) ("I" . org-babel-view-src-block-info) ("" . org-babel-switch-to-session) ("z" . org-babel-switch-to-session-with-code) ("" . org-babel-sha1-hash) ("a" . org-babel-sha1-hash) ("h" . org-babel-describe-bindings) ("" . org-babel-do-key-sequence-in-edit-buffer) ("x" . org-babel-do-key-sequence-in-edit-buffer) ("k" . org-babel-remove-result-one-or-many) ("\210" . org-babel-mark-block)))) nil [1739 3844])
-            ("ob-keys" package nil nil [3846 3864]))          
-      :file "ob-keys.el"
-      :pointmax 3966
-      :fsize 3965
-      :lastmodtime '(23537 23332 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [1192 1210])
-            ("org-compat" include nil nil [1211 1232])
-            ("comint" include nil nil [1233 1250])
-            ("org-babel-comint-buffer-livep" function (:arguments ("buffer")) nil [1252 1484])
-            ("org-babel-comint-in-buffer" function (:arguments ("buffer" "body")) nil [1486 2021])
-            ("def-edebug-spec" code nil nil [2022 2078])
-            ("org-babel-comint-with-output" function (:arguments ("meta" "body")) nil [2080 4304])
-            ("def-edebug-spec" code nil nil [4305 4363])
-            ("org-babel-comint-input-command" function (:arguments ("buffer" "cmd")) nil [4365 4654])
-            ("org-babel-comint-wait-for-output" function (:arguments ("buffer")) nil [4656 5259])
-            ("org-babel-comint-eval-invisibly-and-wait-for-file" function (:arguments ("buffer" "file" "string" "period")) nil [5261 5859])
-            ("ob-comint" package nil nil [5861 5881]))          
-      :file "ob-comint.el"
-      :pointmax 5912
-      :fsize 5911
-      :lastmodtime '(23537 23332 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1563 1580])
-            ("format-spec" include nil nil [1581 1603])
-            ("ox" include nil nil [1604 1617])
-            ("org-publish-cache" variable nil nil [1710 1852])
-            ("org-publish-after-publishing-hook" variable nil nil [1854 2072])
-            ("org-export-publish" customgroup (:user-visible-flag t) nil [2074 2195])
-            ("org-publish-project-alist" variable nil nil [2197 10673])
-            ("org-publish-use-timestamps-flag" variable (:default-value t) nil [10675 10903])
-            ("org-publish-timestamp-directory" variable (:default-value (convert-standard-filename "~/.org-timestamps/")) nil [10905 11110])
-            ("org-publish-list-skipped-files" variable (:default-value t) nil [11112 11262])
-            ("org-publish-sitemap-sort-files" variable (:default-value (quote alphabetically)) nil [11264 11852])
-            ("org-publish-sitemap-sort-folders" variable (:default-value (quote ignore)) nil [11854 12695])
-            ("org-publish-sitemap-sort-ignore-case" variable nil nil [12697 12960])
-            ("org-publish-timestamp-filename" function (:arguments ("filename" "pub-dir" "pub-func")) nil [12998 13295])
-            ("org-publish-needed-p" function (:arguments ("filename" "pub-dir" "pub-func" "_true-pub-dir" "base-dir")) nil [13297 14140])
-            ("org-publish-update-timestamp" function (:arguments ("filename" "pub-dir" "pub-func" "_base-dir")) nil [14142 14481])
-            ("org-publish-remove-all-timestamps" function nil nil [14483 14781])
-            ("org-publish-property" function (:arguments ("property" "project" "default")) nil [14854 15176])
-            ("org-publish--expand-file-name" function (:arguments ("file" "project")) nil [15178 15479])
-            ("org-publish-expand-projects" function (:arguments ("projects-alist")) nil [15481 16034])
-            ("org-publish-get-base-files" function (:arguments ("project")) nil [16036 18034])
-            ("org-publish-get-project-from-filename" function (:arguments ("filename" "up")) nil [18036 19968])
-            ("org-publish-org-to" function (:arguments ("backend" "filename" "extension" "plist" "pub-dir")) nil [20022 21649])
-            ("org-publish-attachment" function (:arguments ("_plist" "filename" "pub-dir")) nil [21651 22292])
-            ("org-publish-file" function (:arguments ("filename" "project" "no-cache")) nil [22334 24180])
-            ("org-publish-projects" function (:arguments ("projects")) nil [24182 25846])
-            ("org-publish--sitemap-files-to-lisp" function (:arguments ("files" "project" "style" "format-entry")) nil [25875 27553])
-            ("org-publish-sitemap" function (:arguments ("project" "sitemap-filename")) nil [27555 30745])
-            ("org-publish-find-property" function (:arguments ("file" "property" "project" "backend")) nil [30747 31871])
-            ("org-publish-find-title" function (:arguments ("file" "project")) nil [31873 32501])
-            ("org-publish-find-date" function (:arguments ("file" "project")) nil [32503 33457])
-            ("org-publish-sitemap-default-entry" function (:arguments ("entry" "style" "project")) nil [33459 33902])
-            ("org-publish-sitemap-default" function (:arguments ("title" "list")) nil [33904 34219])
-            ("defalias" code nil nil [34276 34320])
-            ("org-publish" function
-               (:user-visible-flag t
-                :arguments ("project" "force" "async"))
-                nil [34337 35617])
-            ("org-publish-all" function
-               (:user-visible-flag t
-                :arguments ("force" "async"))
-                nil [35634 36450])
-            ("org-publish-current-file" function
-               (:user-visible-flag t
-                :arguments ("force" "async"))
-                nil [36468 37129])
-            ("org-publish-current-project" function
-               (:user-visible-flag t
-                :arguments ("force" "async"))
-                nil [37146 37644])
-            ("org-publish-collect-index" function (:arguments ("output" "_backend" "info")) nil [37671 39247])
-            ("org-publish-index-generate-theindex" function (:arguments ("project" "directory")) nil [39249 41958])
-            ("org-publish--store-crossrefs" function (:arguments ("output" "_backend" "info")) nil [42132 42958])
-            ("org-publish-resolve-external-link" function (:arguments ("search" "file")) nil [42960 44464])
-            ("org-publish-file-relative-name" function (:arguments ("filename" "info")) nil [44466 44900])
-            ("org-publish-write-cache-file" function (:arguments ("free-cache")) nil [44928 45708])
-            ("org-publish-initialize-cache" function (:arguments ("project-name")) nil [45710 46877])
-            ("org-publish-reset-cache" function nil nil [46879 47111])
-            ("org-publish-cache-file-needs-publishing" function (:arguments ("filename" "pub-dir" "pub-func" "_base-dir")) nil [47113 48844])
-            ("org-publish-cache-set-file-property" function (:arguments ("filename" "property" "value" "project-name")) nil [48846 49419])
-            ("org-publish-cache-get-file-property" function (:arguments ("filename" "property" "default" "no-create" "project-name")) nil [49421 50116])
-            ("org-publish-cache-get" function (:arguments ("key")) nil [50118 50433])
-            ("org-publish-cache-set" function (:arguments ("key" "value")) nil [50435 50742])
-            ("org-publish-cache-ctime-of-src" function (:arguments ("file")) nil [50744 51072])
-            ("ox-publish" package nil nil [51075 51096]))          
-      :file "ox-publish.el"
-      :pointmax 51201
-      :fsize 51200
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [2934 2951])
-            ("ob-exp" include nil nil [2952 2969])
-            ("org-element" include nil nil [2970 2992])
-            ("org-macro" include nil nil [2993 3013])
-            ("tabulated-list" include nil nil [3014 3039])
-            ("declare-function" code nil nil [3041 3112])
-            ("declare-function" code nil nil [3113 3186])
-            ("declare-function" code nil nil [3187 3262])
-            ("declare-function" code nil nil [3263 3334])
-            ("declare-function" code nil nil [3335 3415])
-            ("declare-function" code nil nil [3416 3499])
-            ("org-publish-project-alist" variable nil nil [3501 3535])
-            ("org-table-number-fraction" variable nil nil [3536 3570])
-            ("org-table-number-regexp" variable nil nil [3571 3603])
-            ("org-export-max-depth" variable
-               (:constant-flag t
-                :default-value 19)
-                nil [3826 3918])
-            ("org-export-options-alist" variable
-               (:constant-flag t
-                :default-value (quote ((:title "TITLE" nil nil parse) (:date "DATE" nil nil parse) (:author "AUTHOR" nil user-full-name parse) (:email "EMAIL" nil user-mail-address t) (:language "LANGUAGE" nil org-export-default-language t) (:select-tags "SELECT_TAGS" nil org-export-select-tags split) (:exclude-tags "EXCLUDE_TAGS" nil org-export-exclude-tags split) (:creator "CREATOR" nil org-export-creator-string) (:headline-levels nil "H" org-export-headline-levels) (:preserve-breaks nil "\\n" org-export-preserve-breaks) (:section-numbers nil "num" org-export-with-section-numbers) (:time-stamp-file nil "timestamp" org-export-time-stamp-file) (:with-archived-trees nil "arch" org-export-with-archived-trees) (:with-author nil "author" org-export-with-author) (:with-broken-links nil "broken-links" org-export-with-broken-links) (:with-clocks nil "c" org-export-with-clocks) (:with-creator nil "creator" org-export-with-creator) (:with-date nil "date" org-export-with-date) (:with-drawers nil "d" org-export-with-drawers) (:with-email nil "email" org-export-with-email) (:with-emphasize nil "*" org-export-with-emphasize) (:with-entities nil "e" org-export-with-entities) (:with-fixed-width nil ":" org-export-with-fixed-width) (:with-footnotes nil "f" org-export-with-footnotes) (:with-inlinetasks nil "inline" org-export-with-inlinetasks) (:with-latex nil "tex" org-export-with-latex) (:with-planning nil "p" org-export-with-planning) (:with-priority nil "pri" org-export-with-priority) (:with-properties nil "prop" org-export-with-properties) (:with-smart-quotes nil "'" org-export-with-smart-quotes) (:with-special-strings nil "-" org-export-with-special-strings) (:with-statistics-cookies nil "stat" org-export-with-statistics-cookies) (:with-sub-superscript nil "^" org-export-with-sub-superscripts) (:with-toc nil "toc" org-export-with-toc) (:with-tables nil "|" org-export-with-tables) (:with-tags nil "tags" org-export-with-tags) (:with-tasks nil "tasks" org-export-with-tasks) (:with-timestamps nil "<" org-export-with-timestamps) (:with-title nil "title" org-export-with-title) (:with-todo-keywords nil "todo" org-export-with-todo-keywords))))
-                nil [3920 7640])
-            ("org-export-special-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("FILETAGS" "SETUPFILE" "OPTIONS")))
-                nil [7642 7932])
-            ("org-export-filters-alist" variable
-               (:constant-flag t
-                :default-value (quote ((:filter-body . org-export-filter-body-functions) (:filter-bold . org-export-filter-bold-functions) (:filter-babel-call . org-export-filter-babel-call-functions) (:filter-center-block . org-export-filter-center-block-functions) (:filter-clock . org-export-filter-clock-functions) (:filter-code . org-export-filter-code-functions) (:filter-diary-sexp . org-export-filter-diary-sexp-functions) (:filter-drawer . org-export-filter-drawer-functions) (:filter-dynamic-block . org-export-filter-dynamic-block-functions) (:filter-entity . org-export-filter-entity-functions) (:filter-example-block . org-export-filter-example-block-functions) (:filter-export-block . org-export-filter-export-block-functions) (:filter-export-snippet . org-export-filter-export-snippet-functions) (:filter-final-output . org-export-filter-final-output-functions) (:filter-fixed-width . org-export-filter-fixed-width-functions) (:filter-footnote-definition . org-export-filter-footnote-definition-functions) (:filter-footnote-reference . org-export-filter-footnote-reference-functions) (:filter-headline . org-export-filter-headline-functions) (:filter-horizontal-rule . org-export-filter-horizontal-rule-functions) (:filter-inline-babel-call . org-export-filter-inline-babel-call-functions) (:filter-inline-src-block . org-export-filter-inline-src-block-functions) (:filter-inlinetask . org-export-filter-inlinetask-functions) (:filter-italic . org-export-filter-italic-functions) (:filter-item . org-export-filter-item-functions) (:filter-keyword . org-export-filter-keyword-functions) (:filter-latex-environment . org-export-filter-latex-environment-functions) (:filter-latex-fragment . org-export-filter-latex-fragment-functions) (:filter-line-break . org-export-filter-line-break-functions) (:filter-link . org-export-filter-link-functions) (:filter-node-property . org-export-filter-node-property-functions) (:filter-options . org-export-filter-options-functions) (:filter-paragraph . org-export-filter-paragraph-functions) (:filter-parse-tree . org-export-filter-parse-tree-functions) (:filter-plain-list . org-export-filter-plain-list-functions) (:filter-plain-text . org-export-filter-plain-text-functions) (:filter-planning . org-export-filter-planning-functions) (:filter-property-drawer . org-export-filter-property-drawer-functions) (:filter-quote-block . org-export-filter-quote-block-functions) (:filter-radio-target . org-export-filter-radio-target-functions) (:filter-section . org-export-filter-section-functions) (:filter-special-block . org-export-filter-special-block-functions) (:filter-src-block . org-export-filter-src-block-functions) (:filter-statistics-cookie . org-export-filter-statistics-cookie-functions) (:filter-strike-through . org-export-filter-strike-through-functions) (:filter-subscript . org-export-filter-subscript-functions) (:filter-superscript . org-export-filter-superscript-functions) (:filter-table . org-export-filter-table-functions) (:filter-table-cell . org-export-filter-table-cell-functions) (:filter-table-row . org-export-filter-table-row-functions) (:filter-target . org-export-filter-target-functions) (:filter-timestamp . org-export-filter-timestamp-functions) (:filter-underline . org-export-filter-underline-functions) (:filter-verbatim . org-export-filter-verbatim-functions) (:filter-verse-block . org-export-filter-verse-block-functions))))
-                nil [7934 12026])
-            ("org-export-default-inline-image-rule" variable
-               (:constant-flag t
-                :default-value (\` (("file" \, (format "\\.%s\\'" (regexp-opt (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm")) t))))))
-                nil [12028 12597])
-            ("org-export-ignored-local-variables" variable
-               (:constant-flag t
-                :default-value (quote (org-font-lock-keywords org-element--cache org-element--cache-objects org-element--cache-sync-keys org-element--cache-sync-requests org-element--cache-sync-timer)))
-                nil [12599 13105])
-            ("org-export-async-debug" variable nil nil [13107 13472])
-            ("org-export-stack-contents" variable nil nil [13474 13894])
-            ("org-export-registered-backends" variable nil nil [13896 14102])
-            ("org-export-dispatch-last-action" variable nil nil [14104 14299])
-            ("org-export-dispatch-last-position" variable (:default-value (make-marker)) nil [14301 14588])
-            ("org-export-current-backend" variable nil nil [14624 14994])
-            ("org-export" customgroup (:user-visible-flag t) nil [15256 15357])
-            ("org-export-general" customgroup (:user-visible-flag t) nil [15359 15480])
-            ("org-export-with-archived-trees" variable (:default-value (quote headline)) nil [15482 16074])
-            ("org-export-with-author" variable (:default-value t) nil [16076 16313])
-            ("org-export-with-clocks" variable nil nil [16315 16527])
-            ("org-export-with-creator" variable nil nil [16529 16896])
-            ("org-export-with-date" variable (:default-value t) nil [16898 17126])
-            ("org-export-date-timestamp-format" variable nil nil [17128 17602])
-            ("org-export-creator-string" variable (:default-value (format "Emacs %s (Org mode %s)" emacs-version (if (fboundp (quote org-version)) (org-version) "unknown version"))) nil [17604 17952])
-            ("org-export-with-drawers" variable (:default-value (quote (not "LOGBOOK"))) nil [17954 18849])
-            ("org-export-with-email" variable nil nil [18851 19087])
-            ("org-export-with-emphasize" variable (:default-value t) nil [19089 19469])
-            ("org-export-exclude-tags" variable (:default-value (quote ("noexport"))) nil [19471 19933])
-            ("org-export-with-fixed-width" variable (:default-value t) nil [19935 20215])
-            ("org-export-with-footnotes" variable (:default-value t) nil [20217 20443])
-            ("org-export-with-latex" variable (:default-value t) nil [20445 21046])
-            ("org-export-headline-levels" variable (:default-value 3) nil [21048 21394])
-            ("org-export-default-language" variable (:default-value "en") nil [21396 21786])
-            ("org-export-preserve-breaks" variable nil nil [21788 22024])
-            ("org-export-with-entities" variable (:default-value t) nil [22026 22433])
-            ("org-export-with-inlinetasks" variable (:default-value t) nil [22435 22718])
-            ("org-export-with-planning" variable nil nil [22720 23112])
-            ("org-export-with-priority" variable nil nil [23114 23343])
-            ("org-export-with-properties" variable nil nil [23345 23931])
-            ("org-export-with-section-numbers" variable (:default-value t) nil [23933 24295])
-            ("org-export-select-tags" variable (:default-value (quote ("export"))) nil [24297 24818])
-            ("org-export-with-smart-quotes" variable nil nil [24820 25310])
-            ("org-export-with-special-strings" variable (:default-value t) nil [25312 25825])
-            ("org-export-with-statistics-cookies" variable (:default-value t) nil [25827 26120])
-            ("org-export-with-sub-superscripts" variable (:default-value t) nil [26122 27673])
-            ("org-export-with-toc" variable (:default-value t) nil [27675 28442])
-            ("org-export-with-tables" variable (:default-value t) nil [28444 28700])
-            ("org-export-with-tags" variable (:default-value t) nil [28702 29204])
-            ("org-export-with-tasks" variable (:default-value t) nil [29206 30039])
-            ("org-export-with-title" variable (:default-value t) nil [30041 30321])
-            ("org-export-time-stamp-file" variable (:default-value t) nil [30323 30617])
-            ("org-export-with-timestamps" variable (:default-value t) nil [30619 31383])
-            ("org-export-with-todo-keywords" variable (:default-value t) nil [31385 31653])
-            ("org-export-allow-bind-keywords" variable nil nil [31655 31996])
-            ("org-export-with-broken-links" variable nil nil [31998 32663])
-            ("org-export-snippet-translation-alist" variable nil nil [32665 33345])
-            ("org-export-global-macros" variable nil nil [33347 34072])
-            ("org-export-coding-system" variable nil nil [34074 34259])
-            ("org-export-copy-to-kill-ring" variable nil nil [34261 34637])
-            ("org-export-initial-scope" variable (:default-value (quote buffer)) nil [34639 34949])
-            ("org-export-show-temporary-export-buffer" variable (:default-value t) nil [34951 35373])
-            ("org-export-in-background" variable nil nil [35375 35713])
-            ("org-export-async-init-file" variable nil nil [35715 36369])
-            ("org-export-dispatch-use-expert-ui" variable nil nil [36371 37023])
-            ("cl-defstruct" code nil nil [38298 38448])
-            ("org-export-get-backend" function (:arguments ("name")) nil [38465 38717])
-            ("org-export-register-backend" function (:arguments ("backend")) nil [38719 39634])
-            ("org-export-barf-if-invalid-backend" function (:arguments ("backend")) nil [39636 39839])
-            ("org-export-derived-backend-p" function (:arguments ("backend" "backends")) nil [39841 40502])
-            ("org-export-get-all-transcoders" function (:arguments ("backend")) nil [40504 41299])
-            ("org-export-get-all-options" function (:arguments ("backend")) nil [41301 42041])
-            ("org-export-get-all-filters" function (:arguments ("backend")) nil [42043 42771])
-            ("org-export-define-backend" function (:arguments ("backend" "transcoders" "body")) nil [42773 47301])
-            ("org-export-define-derived-backend" function (:arguments ("child" "parent" "body")) nil [47303 49354])
-            ("org-export-get-environment" function (:arguments ("backend" "subtreep" "ext-plist")) nil [50953 52024])
-            ("org-export--parse-option-keyword" function (:arguments ("options" "backend")) nil [52026 52907])
-            ("org-export--get-subtree-options" function (:arguments ("backend")) nil [52909 54964])
-            ("org-export--get-inbuffer-options" function (:arguments ("backend")) nil [54966 59299])
-            ("org-export--get-export-attributes" function (:arguments ("backend" "subtreep" "visible-only" "body-only")) nil [59301 59882])
-            ("org-export--get-buffer-attributes" function nil nil [59884 60103])
-            ("org-export--get-global-options" function (:arguments ("backend")) nil [60105 60924])
-            ("org-export--list-bound-variables" function nil nil [60926 62617])
-            ("org-export-get-parent" function (:arguments ("blob")) nil [62738 62888])
-            ("org-export--collect-tree-properties" function (:arguments ("data" "info")) nil [63553 64973])
-            ("org-export--get-min-level" function (:arguments ("data" "options")) nil [64975 65719])
-            ("org-export--collect-headline-numbering" function (:arguments ("data" "options")) nil [65721 66721])
-            ("org-export--selected-trees" function (:arguments ("data" "info")) nil [66723 68277])
-            ("org-export--skip-p" function (:arguments ("datum" "options" "selected" "excluded")) nil [68279 72627])
-            ("org-export-transcoder" function (:arguments ("blob" "info")) nil [73320 73737])
-            ("org-export-data" function (:arguments ("data" "info")) nil [73739 77530])
-            ("org-export-data-with-backend" function (:arguments ("data" "backend" "info")) nil [77532 78756])
-            ("org-export-expand" function (:arguments ("blob" "contents" "with-affiliated")) nil [78758 79324])
-            ("org-export-before-processing-hook" variable nil nil [81914 82343])
-            ("org-export-before-parsing-hook" variable nil nil [82345 82769])
-            ("org-export-filter-options-functions" variable nil nil [82794 83059])
-            ("org-export-filter-parse-tree-functions" variable nil nil [83061 83389])
-            ("org-export-filter-plain-text-functions" variable nil nil [83391 83673])
-            ("org-export-filter-body-functions" variable nil nil [83675 83956])
-            ("org-export-filter-final-output-functions" variable nil nil [83958 84280])
-            ("org-export-filter-babel-call-functions" variable nil nil [84306 84596])
-            ("org-export-filter-center-block-functions" variable nil nil [84598 84892])
-            ("org-export-filter-clock-functions" variable nil nil [84894 85174])
-            ("org-export-filter-diary-sexp-functions" variable nil nil [85176 85466])
-            ("org-export-filter-drawer-functions" variable nil nil [85468 85750])
-            ("org-export-filter-dynamic-block-functions" variable nil nil [85752 86048])
-            ("org-export-filter-example-block-functions" variable nil nil [86050 86346])
-            ("org-export-filter-export-block-functions" variable nil nil [86348 86642])
-            ("org-export-filter-fixed-width-functions" variable nil nil [86644 86936])
-            ("org-export-filter-footnote-definition-functions" variable nil nil [86938 87246])
-            ("org-export-filter-headline-functions" variable nil nil [87248 87534])
-            ("org-export-filter-horizontal-rule-functions" variable nil nil [87536 87836])
-            ("org-export-filter-inlinetask-functions" variable nil nil [87838 88128])
-            ("org-export-filter-item-functions" variable nil nil [88130 88408])
-            ("org-export-filter-keyword-functions" variable nil nil [88410 88694])
-            ("org-export-filter-latex-environment-functions" variable nil nil [88696 89000])
-            ("org-export-filter-node-property-functions" variable nil nil [89002 89298])
-            ("org-export-filter-paragraph-functions" variable nil nil [89300 89588])
-            ("org-export-filter-plain-list-functions" variable nil nil [89590 89880])
-            ("org-export-filter-planning-functions" variable nil nil [89882 90168])
-            ("org-export-filter-property-drawer-functions" variable nil nil [90170 90470])
-            ("org-export-filter-quote-block-functions" variable nil nil [90472 90770])
-            ("org-export-filter-section-functions" variable nil nil [90772 91056])
-            ("org-export-filter-special-block-functions" variable nil nil [91058 91354])
-            ("org-export-filter-src-block-functions" variable nil nil [91356 91644])
-            ("org-export-filter-table-functions" variable nil nil [91646 91926])
-            ("org-export-filter-table-cell-functions" variable nil nil [91928 92218])
-            ("org-export-filter-table-row-functions" variable nil nil [92220 92508])
-            ("org-export-filter-verse-block-functions" variable nil nil [92510 92802])
-            ("org-export-filter-bold-functions" variable nil nil [92827 93108])
-            ("org-export-filter-code-functions" variable nil nil [93110 93391])
-            ("org-export-filter-entity-functions" variable nil nil [93393 93675])
-            ("org-export-filter-export-snippet-functions" variable nil nil [93677 93975])
-            ("org-export-filter-footnote-reference-functions" variable nil nil [93977 94283])
-            ("org-export-filter-inline-babel-call-functions" variable nil nil [94285 94589])
-            ("org-export-filter-inline-src-block-functions" variable nil nil [94591 94893])
-            ("org-export-filter-italic-functions" variable nil nil [94895 95180])
-            ("org-export-filter-latex-fragment-functions" variable nil nil [95182 95480])
-            ("org-export-filter-line-break-functions" variable nil nil [95482 95772])
-            ("org-export-filter-link-functions" variable nil nil [95774 96052])
-            ("org-export-filter-radio-target-functions" variable nil nil [96054 96348])
-            ("org-export-filter-statistics-cookie-functions" variable nil nil [96350 96654])
-            ("org-export-filter-strike-through-functions" variable nil nil [96656 96957])
-            ("org-export-filter-subscript-functions" variable nil nil [96959 97247])
-            ("org-export-filter-superscript-functions" variable nil nil [97249 97541])
-            ("org-export-filter-target-functions" variable nil nil [97543 97825])
-            ("org-export-filter-timestamp-functions" variable nil nil [97827 98115])
-            ("org-export-filter-underline-functions" variable nil nil [98117 98408])
-            ("org-export-filter-verbatim-functions" variable nil nil [98410 98699])
-            ("org-export-filter-apply-functions" function (:arguments ("filters" "value" "info")) nil [99149 100062])
-            ("org-export-install-filters" function (:arguments ("info")) nil [100064 101242])
-            ("org-export-copy-buffer" function nil nil [102424 102810])
-            ("org-export-with-buffer-copy" function (:arguments ("body")) nil [102812 103468])
-            ("org-export--generate-copy-script" function (:arguments ("buffer")) nil [103470 105686])
-            ("org-export--delete-comment-trees" function nil nil [105688 106228])
-            ("org-export--prune-tree" function (:arguments ("data" "info")) nil [106230 109118])
-            ("org-export--missing-definitions" function (:arguments ("tree" "definitions")) nil [109120 112097])
-            ("org-export--install-footnote-definitions" function (:arguments ("definitions" "tree")) nil [112099 114337])
-            ("org-export--remove-uninterpreted-data" function (:arguments ("data" "info")) nil [114339 116610])
-            ("org-export-as" function (:arguments ("backend" "subtreep" "visible-only" "body-only" "ext-plist")) nil [116627 123496])
-            ("org-export-string-as" function (:arguments ("string" "backend" "body-only" "ext-plist")) nil [123513 124202])
-            ("org-export-replace-region-by" function (:arguments ("backend")) nil [124219 124645])
-            ("org-export-insert-default-template" function
-               (:user-visible-flag t
-                :arguments ("backend" "subtreep"))
-                nil [124662 128023])
-            ("org-export-expand-include-keyword" function (:arguments ("included" "dir" "footnotes")) nil [128025 133270])
-            ("org-export--inclusion-absolute-lines" function (:arguments ("file" "location" "only-contents" "lines")) nil [133272 135624])
-            ("org-export--prepare-file-contents" function (:arguments ("file" "lines" "ind" "minlevel" "id" "footnotes")) nil [135626 140898])
-            ("org-export--copy-to-kill-ring-p" function nil nil [140900 141205])
-            ("org-export-read-attribute" function (:arguments ("attribute" "element" "property")) nil [141817 143209])
-            ("org-export-get-caption" function (:arguments ("element" "shortp")) nil [143211 143721])
-            ("org-export-with-backend" function (:arguments ("backend" "data" "contents" "info")) nil [143991 145367])
-            ("org-export-snippet-backend" function (:arguments ("export-snippet")) nil [145681 146022])
-            ("org-export-get-footnote-definition" function (:arguments ("footnote-reference" "info")) nil [146630 148008])
-            ("org-export--footnote-reference-map" function (:arguments ("function" "data" "info" "body-first")) nil [148010 149874])
-            ("org-export-collect-footnote-definitions" function (:arguments ("info" "data" "body-first")) nil [149876 151010])
-            ("org-export-footnote-first-reference-p" function (:arguments ("footnote-reference" "info" "data" "body-first")) nil [151012 152063])
-            ("org-export-get-footnote-number" function (:arguments ("footnote" "info" "data" "body-first")) nil [152065 153307])
-            ("org-export-get-relative-level" function (:arguments ("headline" "info")) nil [154312 154567])
-            ("org-export-low-level-p" function (:arguments ("headline" "info")) nil [154569 155130])
-            ("org-export-get-headline-number" function (:arguments ("headline" "info")) nil [155132 155416])
-            ("org-export-numbered-headline-p" function (:arguments ("headline" "info")) nil [155418 155838])
-            ("org-export-number-to-roman" function (:arguments ("n")) nil [155840 156306])
-            ("org-export-get-tags" function (:arguments ("element" "info" "tags" "inherited")) nil [156308 157385])
-            ("org-export-get-node-property" function (:arguments ("property" "blob" "inherited")) nil [157387 158124])
-            ("org-export-get-category" function (:arguments ("blob" "info")) nil [158126 158820])
-            ("org-export-get-alt-title" function (:arguments ("headline" "_")) nil [158822 159207])
-            ("org-export-first-sibling-p" function (:arguments ("blob" "info")) nil [159209 159563])
-            ("org-export-last-sibling-p" function (:arguments ("datum" "info")) nil [159565 159961])
-            ("org-export-get-date" function (:arguments ("info" "fmt")) nil [160157 160861])
-            ("org-define-error" code nil nil [161993 162063])
-            ("org-export-custom-protocol-maybe" function (:arguments ("link" "desc" "backend")) nil [162065 162824])
-            ("org-export-get-coderef-format" function (:arguments ("path" "desc")) nil [162826 163131])
-            ("org-export-inline-image-p" function (:arguments ("link" "rules")) nil [163133 163955])
-            ("org-export-insert-image-links" function (:arguments ("data" "info" "rules")) nil [163957 165603])
-            ("org-export-resolve-coderef" function (:arguments ("ref" "info")) nil [165605 166563])
-            ("org-export-search-cells" function (:arguments ("datum")) nil [166565 167901])
-            ("org-export-string-to-search-cell" function (:arguments ("s")) nil [167903 168387])
-            ("org-export-match-search-cell-p" function (:arguments ("datum" "cells")) nil [168389 168723])
-            ("org-export-resolve-fuzzy-link" function (:arguments ("link" "info")) nil [168725 170400])
-            ("org-export-resolve-id-link" function (:arguments ("link" "info")) nil [170402 171211])
-            ("org-export-resolve-radio-link" function (:arguments ("link" "info")) nil [171213 171837])
-            ("org-export-file-uri" function (:arguments ("filename")) nil [171839 172237])
-            ("org-export-new-reference" function (:arguments ("references")) nil [172620 173309])
-            ("org-export-format-reference" function (:arguments ("reference")) nil [173311 173527])
-            ("org-export-get-reference" function (:arguments ("datum" "info")) nil [173529 175541])
-            ("org-export-get-ordinal" function (:arguments ("element" "info" "types" "predicate")) nil [175543 177887])
-            ("org-export-get-loc" function (:arguments ("element" "info")) nil [178895 180051])
-            ("org-export-unravel-code" function (:arguments ("element")) nil [180053 181351])
-            ("org-export-format-code" function (:arguments ("code" "fun" "num-lines" "ref-alist")) nil [181353 182556])
-            ("org-export-format-code-default" function (:arguments ("element" "info")) nil [182558 184243])
-            ("org-export-table-has-special-column-p" function (:arguments ("table")) nil [185395 186228])
-            ("org-export-table-has-header-p" function (:arguments ("table" "info")) nil [186230 187138])
-            ("org-export-table-row-is-special-p" function (:arguments ("table-row" "_")) nil [187140 188470])
-            ("org-export-table-row-group" function (:arguments ("table-row" "info")) nil [188472 189493])
-            ("org-export-table-cell-width" function (:arguments ("table-cell" "info")) nil [189495 190986])
-            ("org-export-table-cell-alignment" function (:arguments ("table-cell" "info")) nil [190988 194013])
-            ("org-export-table-cell-borders" function (:arguments ("table-cell" "info")) nil [194015 197576])
-            ("org-export-table-cell-starts-colgroup-p" function (:arguments ("table-cell" "info")) nil [197578 198106])
-            ("org-export-table-cell-ends-colgroup-p" function (:arguments ("table-cell" "info")) nil [198108 198559])
-            ("org-export-table-row-starts-rowgroup-p" function (:arguments ("table-row" "info")) nil [198561 199017])
-            ("org-export-table-row-ends-rowgroup-p" function (:arguments ("table-row" "info")) nil [199019 199470])
-            ("org-export-table-row-in-header-p" function (:arguments ("table-row" "info")) nil [199472 199841])
-            ("org-export-table-row-starts-header-p" function (:arguments ("table-row" "info")) nil [199843 200134])
-            ("org-export-table-row-ends-header-p" function (:arguments ("table-row" "info")) nil [200136 200422])
-            ("org-export-table-row-number" function (:arguments ("table-row" "info")) nil [200424 201341])
-            ("org-export-table-dimensions" function (:arguments ("table" "info")) nil [201343 202021])
-            ("org-export-table-cell-address" function (:arguments ("table-cell" "info")) nil [202023 202720])
-            ("org-export-get-table-cell-at" function (:arguments ("address" "table" "info")) nil [202722 203575])
-            ("org-export-collect-headlines" function (:arguments ("info" "n" "scope")) nil [204167 205639])
-            ("org-export-collect-elements" function (:arguments ("type" "info" "predicate")) nil [205641 206377])
-            ("org-export-collect-tables" function (:arguments ("info")) nil [206379 206589])
-            ("org-export-collect-figures" function (:arguments ("info" "predicate")) nil [206591 207149])
-            ("org-export-collect-listings" function (:arguments ("info")) nil [207151 207376])
-            ("org-export-toc-entry-backend" function (:arguments ("parent" "transcoders")) nil [207378 208269])
-            ("org-export-smart-quotes-alist" variable
-               (:constant-flag t
-                :default-value (quote (("ar" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‹" :html "&lsaquo;" :latex "\\guilsinglleft{}" :texinfo "@guilsinglleft{}") (secondary-closing :utf-8 "›" :html "&rsaquo;" :latex "\\guilsinglright{}" :texinfo "@guilsinglright{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("da" (primary-opening :utf-8 "»" :html "&raquo;" :latex ">>" :texinfo "@guillemetright{}") (primary-closing :utf-8 "«" :html "&laquo;" :latex "<<" :texinfo "@guillemetleft{}") (secondary-opening :utf-8 "›" :html "&rsaquo;" :latex "\\frq{}" :texinfo "@guilsinglright{}") (secondary-closing :utf-8 "‹" :html "&lsaquo;" :latex "\\flq{}" :texinfo "@guilsingleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("de" (primary-opening :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}") (primary-closing :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}") (secondary-opening :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}") (secondary-closing :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("en" (primary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``") (primary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("es" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``") (secondary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''") (apostrophe :utf-8 "’" :html "&rsquo;")) ("fr" (primary-opening :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og " :texinfo "@guillemetleft{}@tie{}") (primary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") (secondary-opening :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og " :texinfo "@guillemetleft{}@tie{}") (secondary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("is" (primary-opening :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}") (primary-closing :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}") (secondary-opening :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}") (secondary-closing :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("no" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("nb" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("nn" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("ru" (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}") (secondary-closing :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}") (apostrophe :utf-8 "’" :html: "&#39;")) ("sl" (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}") (secondary-closing :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("sv" (primary-opening :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’") (primary-closing :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’") (secondary-opening :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")))))
-                nil [208570 215690])
-            ("org-export--smart-quote-status" function (:arguments ("s" "info")) nil [215692 218531])
-            ("org-export-activate-smart-quotes" function (:arguments ("s" "encoding" "info" "original")) nil [218533 219422])
-            ("org-export-get-parent-headline" function (:arguments ("blob")) nil [219998 220172])
-            ("org-export-get-parent-element" function (:arguments ("object")) nil [220174 220361])
-            ("org-export-get-parent-table" function (:arguments ("object")) nil [220363 220550])
-            ("org-export-get-previous-element" function (:arguments ("blob" "info" "n")) nil [220552 221496])
-            ("org-export-get-next-element" function (:arguments ("blob" "info" "n")) nil [221498 222451])
-            ("org-export-dictionary" variable
-               (:constant-flag t
-                :default-value (quote (("%e %n: %c" ("fr" :default "%e %n : %c" :html "%e&nbsp;%n&nbsp;: %c")) ("Author" ("ar" :default "تأليف") ("ca" :default "Autor") ("cs" :default "Autor") ("da" :default "Forfatter") ("de" :default "Autor") ("eo" :html "A&#365;toro") ("es" :default "Autor") ("et" :default "Autor") ("fi" :html "Tekij&auml;") ("fr" :default "Auteur") ("hu" :default "Szerz&otilde;") ("is" :html "H&ouml;fundur") ("it" :default "Autore") ("ja" :default "著者" :html "&#33879;&#32773;") ("nl" :default "Auteur") ("no" :default "Forfatter") ("nb" :default "Forfatter") ("nn" :default "Forfattar") ("pl" :default "Autor") ("pt_BR" :default "Autor") ("ru" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор") ("sl" :default "Avtor") ("sv" :html "F&ouml;rfattare") ("uk" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор") ("zh-CN" :html "&#20316;&#32773;" :utf-8 "作者") ("zh-TW" :html "&#20316;&#32773;" :utf-8 "作者")) ("Continued from previous page" ("ar" :default "تتمة الصفحة السابقة") ("cs" :default "Pokračování z předchozí strany") ("de" :default "Fortsetzung von vorheriger Seite") ("es" :html "Contin&uacute;a de la p&aacute;gina anterior" :ascii "Continua de la pagina anterior" :default "Continúa de la página anterior") ("fr" :default "Suite de la page précédente") ("it" :default "Continua da pagina precedente") ("ja" :default "前ページからの続き") ("nl" :default "Vervolg van vorige pagina") ("pt" :default "Continuação da página anterior") ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077;)" :utf-8 "(Продолжение)") ("sl" :default "Nadaljevanje s prejšnje strani")) ("Continued on next page" ("ar" :default "التتمة في الصفحة التالية") ("cs" :default "Pokračuje na další stránce") ("de" :default "Fortsetzung nächste Seite") ("es" :html "Contin&uacute;a en la siguiente p&aacute;gina" :ascii "Continua en la siguiente pagina" :default "Continúa en la siguiente página") ("fr" :default "Suite page suivante") ("it" :default "Continua alla pagina successiva") ("ja" :default "次ページに続く") ("nl" :default "Vervolg op volgende pagina") ("pt" :default "Continua na página seguinte") ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;)" :utf-8 "(Продолжение следует)") ("sl" :default "Nadaljevanje na naslednji strani")) ("Created" ("cs" :default "Vytvořeno") ("sl" :default "Ustvarjeno")) ("Date" ("ar" :default "بتاريخ") ("ca" :default "Data") ("cs" :default "Datum") ("da" :default "Dato") ("de" :default "Datum") ("eo" :default "Dato") ("es" :default "Fecha") ("et" :html "Kuup&#228;ev" :utf-8 "Kuupäev") ("fi" :html "P&auml;iv&auml;m&auml;&auml;r&auml;") ("hu" :html "D&aacute;tum") ("is" :default "Dagsetning") ("it" :default "Data") ("ja" :default "日付" :html "&#26085;&#20184;") ("nl" :default "Datum") ("no" :default "Dato") ("nb" :default "Dato") ("nn" :default "Dato") ("pl" :default "Data") ("pt_BR" :default "Data") ("ru" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата") ("sl" :default "Datum") ("sv" :default "Datum") ("uk" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата") ("zh-CN" :html "&#26085;&#26399;" :utf-8 "日期") ("zh-TW" :html "&#26085;&#26399;" :utf-8 "日期")) ("Equation" ("ar" :default "معادلة") ("cs" :default "Rovnice") ("da" :default "Ligning") ("de" :default "Gleichung") ("es" :ascii "Ecuacion" :html "Ecuaci&oacute;n" :default "Ecuación") ("et" :html "V&#245;rrand" :utf-8 "Võrrand") ("fr" :ascii "Equation" :default "Équation") ("is" :default "Jafna") ("ja" :default "方程式") ("no" :default "Ligning") ("nb" :default "Ligning") ("nn" :default "Likning") ("pt_BR" :html "Equa&ccedil;&atilde;o" :default "Equação" :ascii "Equacao") ("ru" :html "&#1059;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1077;" :utf-8 "Уравнение") ("sl" :default "Enačba") ("sv" :default "Ekvation") ("zh-CN" :html "&#26041;&#31243;" :utf-8 "方程")) ("Figure" ("ar" :default "شكل") ("cs" :default "Obrázek") ("da" :default "Figur") ("de" :default "Abbildung") ("es" :default "Figura") ("et" :default "Joonis") ("is" :default "Mynd") ("ja" :default "図" :html "&#22259;") ("no" :default "Illustrasjon") ("nb" :default "Illustrasjon") ("nn" :default "Illustrasjon") ("pt_BR" :default "Figura") ("ru" :html "&#1056;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;" :utf-8 "Рисунок") ("sv" :default "Illustration") ("zh-CN" :html "&#22270;" :utf-8 "图")) ("Figure %d:" ("ar" :default "شكل %d:") ("cs" :default "Obrázek %d:") ("da" :default "Figur %d") ("de" :default "Abbildung %d:") ("es" :default "Figura %d:") ("et" :default "Joonis %d:") ("fr" :default "Figure %d :" :html "Figure&nbsp;%d&nbsp;:") ("is" :default "Mynd %d") ("ja" :default "図%d: " :html "&#22259;%d: ") ("no" :default "Illustrasjon %d") ("nb" :default "Illustrasjon %d") ("nn" :default "Illustrasjon %d") ("pt_BR" :default "Figura %d:") ("ru" :html "&#1056;&#1080;&#1089;. %d.:" :utf-8 "Рис. %d.:") ("sl" :default "Slika %d") ("sv" :default "Illustration %d") ("zh-CN" :html "&#22270;%d&nbsp;" :utf-8 "图%d ")) ("Footnotes" ("ar" :default "الهوامش") ("ca" :html "Peus de p&agrave;gina") ("cs" :default "Poznámky pod čarou") ("da" :default "Fodnoter") ("de" :html "Fu&szlig;noten" :default "Fußnoten") ("eo" :default "Piednotoj") ("es" :ascii "Nota al pie de pagina" :html "Nota al pie de p&aacute;gina" :default "Nota al pie de página") ("et" :html "Allm&#228;rkused" :utf-8 "Allmärkused") ("fi" :default "Alaviitteet") ("fr" :default "Notes de bas de page") ("hu" :html "L&aacute;bjegyzet") ("is" :html "Aftanm&aacute;lsgreinar") ("it" :html "Note a pi&egrave; di pagina") ("ja" :default "脚注" :html "&#33050;&#27880;") ("nl" :default "Voetnoten") ("no" :default "Fotnoter") ("nb" :default "Fotnoter") ("nn" :default "Fotnotar") ("pl" :default "Przypis") ("pt_BR" :html "Notas de Rodap&eacute;" :default "Notas de Rodapé" :ascii "Notas de Rodape") ("ru" :html "&#1057;&#1085;&#1086;&#1089;&#1082;&#1080;" :utf-8 "Сноски") ("sl" :default "Opombe") ("sv" :default "Fotnoter") ("uk" :html "&#1055;&#1088;&#1080;&#1084;&#1110;&#1090;&#1082;&#1080;" :utf-8 "Примітки") ("zh-CN" :html "&#33050;&#27880;" :utf-8 "脚注") ("zh-TW" :html "&#33139;&#35387;" :utf-8 "腳註")) ("List of Listings" ("ar" :default "قائمة بالبرامج") ("cs" :default "Seznam programů") ("da" :default "Programmer") ("de" :default "Programmauflistungsverzeichnis") ("es" :ascii "Indice de Listados de programas" :html "&Iacute;ndice de Listados de programas" :default "Índice de Listados de programas") ("et" :default "Loendite nimekiri") ("fr" :default "Liste des programmes") ("ja" :default "ソースコード目次") ("no" :default "Dataprogrammer") ("nb" :default "Dataprogrammer") ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1086;&#1082;" :utf-8 "Список распечаток") ("sl" :default "Seznam programskih izpisov") ("zh-CN" :html "&#20195;&#30721;&#30446;&#24405;" :utf-8 "代码目录")) ("List of Tables" ("ar" :default "قائمة بالجداول") ("cs" :default "Seznam tabulek") ("da" :default "Tabeller") ("de" :default "Tabellenverzeichnis") ("es" :ascii "Indice de tablas" :html "&Iacute;ndice de tablas" :default "Índice de tablas") ("et" :default "Tabelite nimekiri") ("fr" :default "Liste des tableaux") ("is" :default "Töfluskrá" :html "T&ouml;fluskr&aacute;") ("ja" :default "表目次") ("no" :default "Tabeller") ("nb" :default "Tabeller") ("nn" :default "Tabeller") ("pt_BR" :default "Índice de Tabelas" :ascii "Indice de Tabelas") ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;" :utf-8 "Список таблиц") ("sl" :default "Seznam tabel") ("sv" :default "Tabeller") ("zh-CN" :html "&#34920;&#26684;&#30446;&#24405;" :utf-8 "表格目录")) ("Listing" ("ar" :default "برنامج") ("cs" :default "Program") ("da" :default "Program") ("de" :default "Programmlisting") ("es" :default "Listado de programa") ("et" :default "Loend") ("fr" :default "Programme" :html "Programme") ("ja" :default "ソースコード") ("no" :default "Dataprogram") ("nb" :default "Dataprogram") ("pt_BR" :default "Listagem") ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072;" :utf-8 "Распечатка") ("sl" :default "Izpis programa") ("zh-CN" :html "&#20195;&#30721;" :utf-8 "代码")) ("Listing %d:" ("ar" :default "برنامج %d:") ("cs" :default "Program %d:") ("da" :default "Program %d") ("de" :default "Programmlisting %d") ("es" :default "Listado de programa %d") ("et" :default "Loend %d") ("fr" :default "Programme %d :" :html "Programme&nbsp;%d&nbsp;:") ("ja" :default "ソースコード%d:") ("no" :default "Dataprogram %d") ("nb" :default "Dataprogram %d") ("pt_BR" :default "Listagem %d") ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072; %d.:" :utf-8 "Распечатка %d.:") ("sl" :default "Izpis programa %d") ("zh-CN" :html "&#20195;&#30721;%d&nbsp;" :utf-8 "代码%d ")) ("References" ("ar" :default "المراجع") ("cs" :default "Reference") ("fr" :ascii "References" :default "Références") ("de" :default "Quellen") ("es" :default "Referencias") ("sl" :default "Reference")) ("See figure %s" ("cs" :default "Viz obrázek %s") ("fr" :default "cf. figure %s" :html "cf.&nbsp;figure&nbsp;%s" :latex "cf.~figure~%s") ("sl" :default "Glej sliko %s")) ("See listing %s" ("cs" :default "Viz program %s") ("fr" :default "cf. programme %s" :html "cf.&nbsp;programme&nbsp;%s" :latex "cf.~programme~%s") ("sl" :default "Glej izpis programa %s")) ("See section %s" ("ar" :default "انظر قسم %s") ("cs" :default "Viz sekce %s") ("da" :default "jævnfør afsnit %s") ("de" :default "siehe Abschnitt %s") ("es" :ascii "Vea seccion %s" :html "Vea secci&oacute;n %s" :default "Vea sección %s") ("et" :html "Vaata peat&#252;kki %s" :utf-8 "Vaata peatükki %s") ("fr" :default "cf. section %s") ("ja" :default "セクション %s を参照") ("pt_BR" :html "Veja a se&ccedil;&atilde;o %s" :default "Veja a seção %s" :ascii "Veja a secao %s") ("ru" :html "&#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; %s" :utf-8 "См. раздел %s") ("sl" :default "Glej poglavje %d") ("zh-CN" :html "&#21442;&#35265;&#31532;%s&#33410;" :utf-8 "参见第%s节")) ("See table %s" ("cs" :default "Viz tabulka %s") ("fr" :default "cf. tableau %s" :html "cf.&nbsp;tableau&nbsp;%s" :latex "cf.~tableau~%s") ("sl" :default "Glej tabelo %s")) ("Table" ("ar" :default "جدول") ("cs" :default "Tabulka") ("de" :default "Tabelle") ("es" :default "Tabla") ("et" :default "Tabel") ("fr" :default "Tableau") ("is" :default "Tafla") ("ja" :default "表" :html "&#34920;") ("pt_BR" :default "Tabela") ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;" :utf-8 "Таблица") ("zh-CN" :html "&#34920;" :utf-8 "表")) ("Table %d:" ("ar" :default "جدول %d:") ("cs" :default "Tabulka %d:") ("da" :default "Tabel %d") ("de" :default "Tabelle %d") ("es" :default "Tabla %d") ("et" :default "Tabel %d") ("fr" :default "Tableau %d :") ("is" :default "Tafla %d") ("ja" :default "表%d:" :html "&#34920;%d:") ("no" :default "Tabell %d") ("nb" :default "Tabell %d") ("nn" :default "Tabell %d") ("pt_BR" :default "Tabela %d") ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; %d.:" :utf-8 "Таблица %d.:") ("sl" :default "Tabela %d") ("sv" :default "Tabell %d") ("zh-CN" :html "&#34920;%d&nbsp;" :utf-8 "表%d ")) ("Table of Contents" ("ar" :default "قائمة المحتويات") ("ca" :html "&Iacute;ndex") ("cs" :default "Obsah") ("da" :default "Indhold") ("de" :default "Inhaltsverzeichnis") ("eo" :default "Enhavo") ("es" :ascii "Indice" :html "&Iacute;ndice" :default "Índice") ("et" :default "Sisukord") ("fi" :html "Sis&auml;llysluettelo") ("fr" :ascii "Sommaire" :default "Table des matières") ("hu" :html "Tartalomjegyz&eacute;k") ("is" :default "Efnisyfirlit") ("it" :default "Indice") ("ja" :default "目次" :html "&#30446;&#27425;") ("nl" :default "Inhoudsopgave") ("no" :default "Innhold") ("nb" :default "Innhold") ("nn" :default "Innhald") ("pl" :html "Spis tre&#x015b;ci") ("pt_BR" :html "&Iacute;ndice" :utf8 "Índice" :ascii "Indice") ("ru" :html "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;" :utf-8 "Содержание") ("sl" :default "Kazalo") ("sv" :html "Inneh&aring;ll") ("uk" :html "&#1047;&#1084;&#1110;&#1089;&#1090;" :utf-8 "Зміст") ("zh-CN" :html "&#30446;&#24405;" :utf-8 "目录") ("zh-TW" :html "&#30446;&#37636;" :utf-8 "目錄")) ("Unknown reference" ("ar" :default "مرجع غير معرّف") ("da" :default "ukendt reference") ("de" :default "Unbekannter Verweis") ("es" :default "Referencia desconocida") ("et" :default "Tundmatu viide") ("fr" :ascii "Destination inconnue" :default "Référence inconnue") ("ja" :default "不明な参照先") ("pt_BR" :default "Referência desconhecida" :ascii "Referencia desconhecida") ("ru" :html "&#1053;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1072;&#1103; &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;" :utf-8 "Неизвестная ссылка") ("sl" :default "Neznana referenca") ("zh-CN" :html "&#26410;&#30693;&#24341;&#29992;" :utf-8 "未知引用")))))
-                nil [222663 237683])
-            ("org-export-translate" function (:arguments ("s" "encoding" "info")) nil [237685 238300])
-            ("org-export-async-start" function (:arguments ("fun" "body")) nil [239518 243680])
-            ("org-export-to-buffer" function (:arguments ("backend" "buffer" "async" "subtreep" "visible-only" "body-only" "ext-plist" "post-process")) nil [243697 246109])
-            ("org-export-to-file" function (:arguments ("backend" "file" "async" "subtreep" "visible-only" "body-only" "ext-plist" "post-process")) nil [246126 248619])
-            ("org-export-output-file-name" function (:arguments ("extension" "subtreep" "pub-dir")) nil [248621 250652])
-            ("org-export-add-to-stack" function (:arguments ("source" "backend" "process")) nil [250654 251153])
-            ("org-export-stack" function (:user-visible-flag t) nil [251155 251492])
-            ("org-export-stack-clear" function (:user-visible-flag t) nil [251494 251624])
-            ("org-export-stack-refresh" function (:user-visible-flag t) nil [251626 251734])
-            ("org-export-stack-remove" function
-               (:user-visible-flag t
-                :arguments ("source"))
-                nil [251736 252098])
-            ("org-export-stack-view" function
-               (:user-visible-flag t
-                :arguments ("in-emacs"))
-                nil [252100 252544])
-            ("org-export-stack-mode-map" variable (:default-value (let ((km (make-sparse-keymap))) (set-keymap-parent km tabulated-list-mode-map) (define-key km " " (quote next-line)) (define-key km "" (quote next-line)) (define-key km [down] (quote next-line)) (define-key km "" (quote previous-line)) (define-key km "" (quote previous-line)) (define-key km [up] (quote previous-line)) (define-key km "C" (quote org-export-stack-clear)) (define-key km "v" (quote org-export-stack-view)) (define-key km (kbd "RET") (quote org-export-stack-view)) (define-key km "d" (quote org-export-stack-remove)) km)) nil [252546 253141])
-            ("define-derived-mode" code nil nil [253143 254150])
-            ("org-export--stack-generate" function nil nil [254152 255267])
-            ("org-export--stack-num-predicate" function (:arguments ("a" "b")) nil [255269 255401])
-            ("org-export--stack-source-at-point" function nil nil [255403 256072])
-            ("org-export-dispatch" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [256363 259262])
-            ("org-export--dispatch-ui" function (:arguments ("options" "first-key" "expertp")) nil [259264 265977])
-            ("org-export--dispatch-action" function (:arguments ("prompt" "allowed-keys" "entries" "options" "first-key" "expertp")) nil [265979 269344])
-            ("ox" package nil nil [269348 269361]))          
-      :file "ox.el"
-      :pointmax 269458
-      :fsize 270217
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [984 1001])
-            ("ox" include nil nil [1002 1015])
-            ("ox-publish" include nil nil [1016 1037])
-            ("org-latex-default-packages-alist" variable nil nil [1039 1080])
-            ("org-latex-packages-alist" variable nil nil [1081 1114])
-            ("orgtbl-exp-regexp" variable nil nil [1115 1141])
-            ("org-export-define-backend" code nil nil [1167 6856])
-            ("org-latex-babel-language-alist" variable
-               (:constant-flag t
-                :default-value (quote (("af" . "afrikaans") ("bg" . "bulgarian") ("bt-br" . "brazilian") ("ca" . "catalan") ("cs" . "czech") ("cy" . "welsh") ("da" . "danish") ("de" . "germanb") ("de-at" . "naustrian") ("de-de" . "ngerman") ("el" . "greek") ("en" . "english") ("en-au" . "australian") ("en-ca" . "canadian") ("en-gb" . "british") ("en-ie" . "irish") ("en-nz" . "newzealand") ("en-us" . "american") ("es" . "spanish") ("et" . "estonian") ("eu" . "basque") ("fi" . "finnish") ("fr" . "frenchb") ("fr-ca" . "canadien") ("gl" . "galician") ("hr" . "croatian") ("hu" . "hungarian") ("id" . "indonesian") ("is" . "icelandic") ("it" . "italian") ("la" . "latin") ("ms" . "malay") ("nl" . "dutch") ("nb" . "norsk") ("nn" . "nynorsk") ("no" . "norsk") ("pl" . "polish") ("pt" . "portuguese") ("ro" . "romanian") ("ru" . "russian") ("sa" . "sanskrit") ("sb" . "uppersorbian") ("sk" . "slovak") ("sl" . "slovene") ("sq" . "albanian") ("sr" . "serbian") ("sv" . "swedish") ("ta" . "tamil") ("tr" . "turkish") ("uk" . "ukrainian"))))
-                nil [6885 8187])
-            ("org-latex-polyglossia-language-alist" variable
-               (:constant-flag t
-                :default-value (quote (("am" "amharic") ("ast" "asturian") ("ar" "arabic") ("bo" "tibetan") ("bn" "bengali") ("bg" "bulgarian") ("br" "breton") ("bt-br" "brazilian") ("ca" "catalan") ("cop" "coptic") ("cs" "czech") ("cy" "welsh") ("da" "danish") ("de" "german" "german") ("de-at" "german" "austrian") ("de-de" "german" "german") ("dv" "divehi") ("el" "greek") ("en" "english" "usmax") ("en-au" "english" "australian") ("en-gb" "english" "uk") ("en-nz" "english" "newzealand") ("en-us" "english" "usmax") ("eo" "esperanto") ("es" "spanish") ("et" "estonian") ("eu" "basque") ("fa" "farsi") ("fi" "finnish") ("fr" "french") ("fu" "friulan") ("ga" "irish") ("gd" "scottish") ("gl" "galician") ("he" "hebrew") ("hi" "hindi") ("hr" "croatian") ("hu" "magyar") ("hy" "armenian") ("id" "bahasai") ("ia" "interlingua") ("is" "icelandic") ("it" "italian") ("kn" "kannada") ("la" "latin" "modern") ("la-modern" "latin" "modern") ("la-classic" "latin" "classic") ("la-medieval" "latin" "medieval") ("lo" "lao") ("lt" "lithuanian") ("lv" "latvian") ("mr" "maranthi") ("ml" "malayalam") ("nl" "dutch") ("nb" "norsk") ("nn" "nynorsk") ("nko" "nko") ("no" "norsk") ("oc" "occitan") ("pl" "polish") ("pms" "piedmontese") ("pt" "portuges") ("rm" "romansh") ("ro" "romanian") ("ru" "russian") ("sa" "sanskrit") ("hsb" "usorbian") ("dsb" "lsorbian") ("sk" "slovak") ("sl" "slovenian") ("se" "samin") ("sq" "albanian") ("sr" "serbian") ("sv" "swedish") ("syr" "syriac") ("ta" "tamil") ("te" "telugu") ("th" "thai") ("tk" "turkmen") ("tr" "turkish") ("uk" "ukrainian") ("ur" "urdu") ("vi" "vietnamese"))))
-                nil [8189 10197])
-            ("org-latex-table-matrix-macros" variable
-               (:constant-flag t
-                :default-value (quote (("bordermatrix" . "\\cr") ("qbordermatrix" . "\\cr") ("kbordermatrix" . "\\\\"))))
-                nil [10201 10392])
-            ("org-latex-math-environments-re" variable
-               (:constant-flag t
-                :default-value (format "\\`[ 	]*\\\\begin{%s\\*?}" (regexp-opt (quote ("equation" "eqnarray" "math" "displaymath" "align" "gather" "multline" "flalign" "alignat" "xalignat" "xxalignat" "subequations" "dmath" "dseries" "dgroup" "darray" "empheq")))))
-                nil [10394 10777])
-            ("org-export-latex" customgroup (:user-visible-flag t) nil [10814 10943])
-            ("org-latex-caption-above" variable (:default-value (quote (table))) nil [10959 11653])
-            ("org-latex-prefer-user-labels" variable nil nil [11655 13648])
-            ("org-latex-default-class" variable (:default-value "article") nil [13665 13803])
-            ("org-latex-classes" variable (:default-value (quote (("article" "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report" "\\documentclass[11pt]{report}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("book" "\\documentclass[11pt]{book}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}"))))) nil [13805 18808])
-            ("org-latex-inputenc-alist" variable nil nil [18810 19213])
-            ("org-latex-title-command" variable (:default-value "\\maketitle") nil [19215 19854])
-            ("org-latex-subtitle-format" variable (:default-value "\\\\\\medskip
-\\large %s") nil [19856 20185])
-            ("org-latex-subtitle-separate" variable nil nil [20187 20390])
-            ("org-latex-toc-command" variable (:default-value "\\tableofcontents
-
-") nil [20392 20691])
-            ("org-latex-hyperref-template" variable (:default-value "\\hypersetup{
- pdfauthor={%a},
- pdftitle={%t},
- pdfkeywords={%k},
- pdfsubject={%d},
- pdfcreator={%c}, 
- pdflang={%L}}
-") nil [20693 21593])
-            ("org-latex-format-headline-function" variable (:default-value (quote org-latex-format-headline-default-function)) nil [21610 22241])
-            ("org-latex-footnote-separator" variable (:default-value "\\textsuperscript{,}\\,") nil [22260 22406])
-            ("org-latex-footnote-defined-format" variable (:default-value "\\textsuperscript{\\ref{%s}}") nil [22408 22897])
-            ("org-latex-active-timestamp-format" variable (:default-value "\\textit{%s}") nil [22916 23082])
-            ("org-latex-inactive-timestamp-format" variable (:default-value "\\textit{%s}") nil [23084 23254])
-            ("org-latex-diary-timestamp-format" variable (:default-value "\\textit{%s}") nil [23256 23420])
-            ("org-latex-images-centered" variable (:default-value t) nil [23435 23628])
-            ("org-latex-image-default-option" variable nil nil [23630 23801])
-            ("org-latex-image-default-width" variable (:default-value ".9\\linewidth") nil [23803 24038])
-            ("org-latex-image-default-height" variable nil nil [24040 24341])
-            ("org-latex-default-figure-position" variable (:default-value "htbp") nil [24343 24548])
-            ("org-latex-inline-image-rules" variable (:default-value (\` (("file" \, (regexp-opt (quote ("pdf" "jpeg" "jpg" "png" "ps" "eps" "tikz" "pgf" "svg"))))))) nil [24550 25337])
-            ("org-latex-link-with-unknown-path-format" variable (:default-value "\\texttt{%s}") nil [25339 25500])
-            ("org-latex-default-table-environment" variable (:default-value "tabular") nil [25516 25714])
-            ("org-latex-default-table-mode" variable (:default-value (quote table)) nil [25716 26749])
-            ("org-latex-tables-centered" variable (:default-value t) nil [26751 26916])
-            ("org-latex-tables-booktabs" variable nil nil [26918 27335])
-            ("org-latex-table-scientific-notation" variable (:default-value "%s\\,(%s)") nil [27337 27757])
-            ("org-latex-text-markup-alist" variable (:default-value (quote ((bold . "\\textbf{%s}") (code . protectedtexttt) (italic . "\\emph{%s}") (strike-through . "\\sout{%s}") (underline . "\\uline{%s}") (verbatim . protectedtexttt)))) nil [27777 28771])
-            ("org-latex-format-drawer-function" variable (:default-value (lambda (_ contents) contents)) nil [28788 29257])
-            ("org-latex-format-inlinetask-function" variable (:default-value (quote org-latex-format-inlinetask-default-function)) nil [29278 29979])
-            ("org-latex-listings" variable nil nil [29997 31551])
-            ("org-latex-listings-langs" variable (:default-value (quote ((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp") (c "C") (cc "C++") (fortran "fortran") (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby") (html "HTML") (xml "XML") (tex "TeX") (latex "[LaTeX]TeX") (shell-script "bash") (gnuplot "Gnuplot") (ocaml "Caml") (caml "Caml") (sql "SQL") (sqlite "sql") (makefile "make") (R "r")))) nil [31553 32532])
-            ("org-latex-listings-options" variable nil nil [32534 33452])
-            ("org-latex-minted-langs" variable (:default-value (quote ((emacs-lisp "common-lisp") (cc "c++") (cperl "perl") (shell-script "bash") (caml "ocaml")))) nil [33454 34257])
-            ("org-latex-minted-options" variable nil nil [34259 35157])
-            ("org-latex-custom-lang-environments" variable nil nil [35159 36646])
-            ("org-latex-compiler-file-string" variable (:default-value "%% Intended LaTeX compiler: %s
-") nil [36667 37160])
-            ("org-latex-compiler" variable (:default-value "pdflatex") nil [37162 37625])
-            ("org-latex-compilers" variable
-               (:constant-flag t
-                :default-value (quote ("pdflatex" "xelatex" "lualatex")))
-                nil [37627 37750])
-            ("org-latex-bib-compiler" variable (:default-value "bibtex") nil [37752 38180])
-            ("org-latex-pdf-process" variable (:default-value (quote ("%latex -interaction nonstopmode -output-directory %o %f" "%latex -interaction nonstopmode -output-directory %o %f" "%latex -interaction nonstopmode -output-directory %o %f"))) nil [38182 40463])
-            ("org-latex-logfiles-extensions" variable (:default-value (quote ("aux" "bcf" "blg" "fdb_latexmk" "fls" "figlist" "idx" "log" "nav" "out" "ptc" "run.xml" "snm" "toc" "vrb" "xdv"))) nil [40465 40885])
-            ("org-latex-remove-logfiles" variable (:default-value t) nil [40887 41220])
-            ("org-latex-known-warnings" variable (:default-value (quote (("Reference.*?undefined" . "[undefined reference]") ("Runaway argument" . "[runaway argument]") ("Underfull \\hbox" . "[underfull hbox]") ("Overfull \\hbox" . "[overfull hbox]") ("Citation.*?undefined" . "[undefined citation]") ("Undefined control sequence" . "[undefined control sequence]")))) nil [41222 41962])
-            ("org-latex--caption-above-p" function (:arguments ("element" "info")) nil [41991 42336])
-            ("org-latex--label" function (:arguments ("datum" "info" "force" "full")) nil [42338 43555])
-            ("org-latex--caption/label-string" function (:arguments ("element" "info")) nil [43557 45131])
-            ("org-latex-guess-inputenc" function (:arguments ("header")) nil [45133 45836])
-            ("org-latex-guess-babel-language" function (:arguments ("header" "info")) nil [45838 47254])
-            ("org-latex-guess-polyglossia-language" function (:arguments ("header" "info")) nil [47256 48996])
-            ("org-latex--remove-packages" function (:arguments ("pkg-alist" "info")) nil [48998 49715])
-            ("org-latex--find-verb-separator" function (:arguments ("s")) nil [49717 50096])
-            ("org-latex--make-option-string" function (:arguments ("options")) nil [50098 50515])
-            ("org-latex--wrap-label" function (:arguments ("element" "output" "info")) nil [50517 50968])
-            ("org-latex--protect-text" function (:arguments ("text")) nil [50970 51129])
-            ("org-latex--text-markup" function (:arguments ("text" "markup" "info")) nil [51131 52277])
-            ("org-latex--delayed-footnotes-definitions" function (:arguments ("element" "info")) nil [52279 53600])
-            ("org-latex--translate" function (:arguments ("s" "info")) nil [53602 53783])
-            ("org-latex--format-spec" function (:arguments ("info")) nil [53785 54644])
-            ("org-latex--insert-compiler" function (:arguments ("info")) nil [54646 55007])
-            ("org-latex-matrices-tree-filter" function (:arguments ("tree" "_backend" "info")) nil [55024 55128])
-            ("org-latex-math-block-tree-filter" function (:arguments ("tree" "_backend" "info")) nil [55130 55238])
-            ("org-latex-math-block-options-filter" function (:arguments ("info" "_backend")) nil [55240 55442])
-            ("org-latex-clean-invalid-line-breaks" function (:arguments ("data" "_backend" "_info")) nil [55444 55609])
-            ("org-latex-make-preamble" function (:arguments ("info" "template" "snippet?")) nil [55642 57067])
-            ("org-latex-template" function (:arguments ("contents" "info")) nil [57069 59964])
-            ("org-latex-bold" function (:arguments ("_bold" "contents" "info")) nil [60005 60222])
-            ("org-latex-center-block" function (:arguments ("center-block" "contents" "info")) nil [60244 60557])
-            ("org-latex-clock" function (:arguments ("clock" "_contents" "info")) nil [60572 61051])
-            ("org-latex-code" function (:arguments ("code" "_contents" "info")) nil [61065 61296])
-            ("org-latex-drawer" function (:arguments ("drawer" "contents" "info")) nil [61312 61695])
-            ("org-latex-dynamic-block" function (:arguments ("dynamic-block" "contents" "info")) nil [61718 62005])
-            ("org-latex-entity" function (:arguments ("entity" "_contents" "_info")) nil [62021 62244])
-            ("org-latex-example-block" function (:arguments ("example-block" "_contents" "info")) nil [62267 62852])
-            ("org-latex-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [62874 63206])
-            ("org-latex-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [63230 63532])
-            ("org-latex-fixed-width" function (:arguments ("fixed-width" "_contents" "info")) nil [63553 63908])
-            ("org-latex-footnote-reference" function (:arguments ("footnote-reference" "_contents" "info")) nil [63936 65862])
-            ("org-latex-headline" function (:arguments ("headline" "contents" "info")) nil [65880 71298])
-            ("org-latex-format-headline-default-function" function (:arguments ("todo" "_todo-type" "priority" "text" "tags" "_info")) nil [71300 71725])
-            ("org-latex-horizontal-rule" function (:arguments ("horizontal-rule" "_contents" "info")) nil [71750 72573])
-            ("org-latex-inline-src-block" function (:arguments ("inline-src-block" "_contents" "info")) nil [72599 74065])
-            ("org-latex-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [74085 74964])
-            ("org-latex-format-inlinetask-default-function" function (:arguments ("todo" "_todo-type" "priority" "title" "tags" "contents" "_info")) nil [74966 75718])
-            ("org-latex-italic" function (:arguments ("_italic" "contents" "info")) nil [75734 75961])
-            ("org-latex-item" function (:arguments ("item" "contents" "info")) nil [75975 78177])
-            ("org-latex-keyword" function (:arguments ("keyword" "_contents" "info")) nil [78194 79558])
-            ("org-latex--environment-type" function (:arguments ("latex-environment")) nil [79585 80471])
-            ("org-latex-latex-environment" function (:arguments ("latex-environment" "_contents" "info")) nil [80473 81685])
-            ("org-latex-latex-fragment" function (:arguments ("latex-fragment" "_contents" "_info")) nil [81708 82206])
-            ("org-latex-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [82226 82414])
-            ("org-latex-image-link-filter" function (:arguments ("data" "_backend" "info")) nil [82428 82557])
-            ("org-latex--inline-image" function (:arguments ("link" "info")) nil [82559 87898])
-            ("org-latex-link" function (:arguments ("link" "desc" "info")) nil [87900 91135])
-            ("org-latex-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [91158 91530])
-            ("org-latex-paragraph" function (:arguments ("_paragraph" "contents" "_info")) nil [91549 91776])
-            ("org-latex-plain-list" function (:arguments ("plain-list" "contents" "info")) nil [91796 92505])
-            ("org-latex-plain-text" function (:arguments ("text" "info")) nil [92525 93965])
-            ("org-latex-planning" function (:arguments ("planning" "_contents" "info")) nil [93983 94993])
-            ("org-latex-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [95018 95335])
-            ("org-latex--wrap-latex-matrices" function (:arguments ("data" "info")) nil [95516 97651])
-            ("org-latex-matrices" function (:arguments ("matrices" "contents" "_info")) nil [97653 98004])
-            ("org-latex--wrap-latex-math-block" function (:arguments ("data" "info")) nil [98123 100300])
-            ("org-latex-math-block" function (:arguments ("_math-block" "contents" "_info")) nil [100302 100564])
-            ("org-latex-quote-block" function (:arguments ("quote-block" "contents" "info")) nil [100584 100884])
-            ("org-latex-radio-target" function (:arguments ("radio-target" "text" "info")) nil [100906 101174])
-            ("org-latex-section" function (:arguments ("_section" "contents" "_info")) nil [101191 101397])
-            ("org-latex-special-block" function (:arguments ("special-block" "contents" "info")) nil [101420 102068])
-            ("org-latex-src-block" function (:arguments ("src-block" "_contents" "info")) nil [102087 108523])
-            ("org-latex-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [108550 108843])
-            ("org-latex-strike-through" function (:arguments ("_strike-through" "contents" "info")) nil [108867 109134])
-            ("org-latex--script-size" function (:arguments ("object" "info")) nil [109153 110414])
-            ("org-latex-subscript" function (:arguments ("subscript" "_contents" "info")) nil [110416 110653])
-            ("org-latex-superscript" function (:arguments ("superscript" "_contents" "info")) nil [110674 110919])
-            ("org-latex-table" function (:arguments ("table" "contents" "info")) nil [111351 112488])
-            ("org-latex--align-string" function (:arguments ("table" "info" "math?")) nil [112490 113596])
-            ("org-latex--org-table" function (:arguments ("table" "contents" "info")) nil [113598 117648])
-            ("org-latex--table.el-table" function (:arguments ("table" "info")) nil [117650 119189])
-            ("org-latex--math-table" function (:arguments ("table" "info")) nil [119191 120626])
-            ("org-latex-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [120646 121257])
-            ("org-latex-table-row" function (:arguments ("table-row" "contents" "info")) nil [121276 123494])
-            ("org-latex-target" function (:arguments ("target" "_contents" "info")) nil [123510 123729])
-            ("org-latex-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [123748 124269])
-            ("org-latex-underline" function (:arguments ("_underline" "contents" "info")) nil [124288 124530])
-            ("org-latex-verbatim" function (:arguments ("verbatim" "_contents" "info")) nil [124548 124802])
-            ("org-latex-verse-block" function (:arguments ("verse-block" "contents" "info")) nil [124823 125622])
-            ("org-latex-export-as-latex" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [125666 126872])
-            ("org-latex-convert-region-to-latex" function (:user-visible-flag t) nil [126889 127206])
-            ("org-latex-export-to-latex" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [127223 128314])
-            ("org-latex-export-to-pdf" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [128331 129513])
-            ("org-latex-compile" function (:arguments ("texfile" "snippet")) nil [129515 131771])
-            ("org-latex--collect-warnings" function (:arguments ("buffer")) nil [131773 132495])
-            ("org-latex-publish-to-latex" function (:arguments ("plist" "filename" "pub-dir")) nil [132512 132839])
-            ("org-latex-publish-to-pdf" function (:arguments ("plist" "filename" "pub-dir")) nil [132856 133689])
-            ("ox-latex" package nil nil [133692 133711]))          
-      :file "ox-latex.el"
-      :pointmax 133814
-      :fsize 133813
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1926 1943])
-            ("org" include nil nil [1944 1958])
-            ("org-macs" include nil nil [1959 1978])
-            ("declare-function" code nil nil [1980 2105])
-            ("declare-function" code nil nil [2106 2174])
-            ("declare-function" code nil nil [2175 2253])
-            ("declare-function" code nil nil [2254 2332])
-            ("declare-function" code nil nil [2333 2411])
-            ("declare-function" code nil nil [2412 2490])
-            ("declare-function" code nil nil [2491 2569])
-            ("declare-function" code nil nil [2570 2648])
-            ("declare-function" code nil nil [2649 2717])
-            ("declare-function" code nil nil [2718 2796])
-            ("declare-function" code nil nil [2797 2875])
-            ("declare-function" code nil nil [2876 2954])
-            ("declare-function" code nil nil [2955 3023])
-            ("declare-function" code nil nil [3024 3102])
-            ("declare-function" code nil nil [3103 3181])
-            ("declare-function" code nil nil [3182 3260])
-            ("declare-function" code nil nil [3261 3327])
-            ("declare-function" code nil nil [3329 3392])
-            ("declare-function" code nil nil [3393 3494])
-            ("declare-function" code nil nil [3495 3560])
-            ("declare-function" code nil nil [3561 3639])
-            ("declare-function" code nil nil [3640 3713])
-            ("declare-function" code nil nil [3714 3801])
-            ("declare-function" code nil nil [3802 3863])
-            ("declare-function" code nil nil [3864 3931])
-            ("declare-function" code nil nil [3932 4010])
-            ("declare-function" code nil nil [4011 4065])
-            ("declare-function" code nil nil [4066 4128])
-            ("declare-function" code nil nil [4129 4195])
-            ("calendar-mode-map" variable nil nil [4197 4223])
-            ("org-clock-current-task" variable nil nil [4224 4255])
-            ("org-current-tag-alist" variable nil nil [4256 4286])
-            ("org-mobile-force-id-on-agenda-items" variable nil nil [4287 4331])
-            ("org-habit-show-habits" variable nil nil [4332 4362])
-            ("org-habit-show-habits-only-for-today" variable nil nil [4363 4408])
-            ("org-habit-show-all-today" variable nil nil [4409 4442])
-            ("org-agenda-buffer-name" variable (:default-value "*Org Agenda*") nil [4507 4553])
-            ("org-agenda-overriding-header" variable nil nil [4554 4595])
-            ("org-agenda-title-append" variable nil nil [4596 4632])
-            ("with-no-warnings" code nil nil [4633 4666])
-            ("with-no-warnings" code nil nil [4699 4731])
-            ("original-date" variable nil nil [4765 4787])
-            ("org-agenda-undo-list" variable nil nil [4839 4938])
-            ("org-agenda-pending-undo-list" variable nil nil [4939 5056])
-            ("org-agenda-confirm-kill" variable (:default-value 1) nil [5058 5456])
-            ("org-agenda-compact-blocks" variable nil nil [5458 5700])
-            ("org-agenda-block-separator" variable (:default-value 61) nil [5702 6173])
-            ("org-agenda-export" customgroup (:user-visible-flag t) nil [6175 6314])
-            ("org-agenda-with-colors" variable (:default-value t) nil [6316 6443])
-            ("org-agenda-exporter-settings" variable nil nil [6445 6991])
-            ("org-agenda-before-write-hook" variable (:default-value (quote (org-agenda-add-entry-text))) nil [6993 7288])
-            ("org-agenda-add-entry-text-maxlines" variable nil nil [7290 7924])
-            ("org-agenda-add-entry-text-descriptive-links" variable (:default-value t) nil [7926 8267])
-            ("org-agenda-export-html-style" variable nil nil [8269 9627])
-            ("org-agenda-persistent-filter" variable nil nil [9629 9772])
-            ("org-agenda-custom-commands" customgroup (:user-visible-flag t) nil [9774 9921])
-            ("org-sorting-choice" variable
-               (:constant-flag t
-                :default-value (quote (choice (const time-up) (const time-down) (const timestamp-up) (const timestamp-down) (const scheduled-up) (const scheduled-down) (const deadline-up) (const deadline-down) (const ts-up) (const ts-down) (const tsia-up) (const tsia-down) (const category-keep) (const category-up) (const category-down) (const tag-down) (const tag-up) (const priority-up) (const priority-down) (const todo-state-up) (const todo-state-down) (const effort-up) (const effort-down) (const habit-up) (const habit-down) (const alpha-up) (const alpha-down) (const user-defined-up) (const user-defined-down))))
-                nil [9923 10614])
-            ("defvaralias" code nil nil [10737 10806])
-            ("defvaralias" code nil nil [10807 10862])
-            ("org-agenda-entry-types" variable (:default-value (quote (:deadline :scheduled :timestamp :sexp))) nil [10864 12560])
-            ("org-agenda-custom-commands-local-options" variable
-               (:constant-flag t
-                :default-value (\` (repeat :tag "Local settings for this command.  Remember to quote values" (choice :tag "Setting" (list :tag "Heading for this block" (const org-agenda-overriding-header) (string :tag "Headline")) (list :tag "Files to be searched" (const org-agenda-files) (list (const :format "" quote) (repeat (file)))) (list :tag "Sorting strategy" (const org-agenda-sorting-strategy) (list (const :format "" quote) (repeat (\, org-sorting-choice)))) (list :tag "Prefix format" (const org-agenda-prefix-format :value "  %-12:c%?-12t% s") (string)) (list :tag "Number of days in agenda" (const org-agenda-span) (list (const :format "" quote) (choice (const :tag "Day" day) (const :tag "Week" week) (const :tag "Fortnight" fortnight) (const :tag "Month" month) (const :tag "Year" year) (integer :tag "Custom")))) (list :tag "Fixed starting date" (const org-agenda-start-day) (string :value "2007-11-01")) (list :tag "Start on day of week" (const org-agenda-start-on-weekday) (choice :value 1 (const :tag "Today" nil) (integer :tag "Weekday No."))) (list :tag "Include data from diary" (const org-agenda-include-diary) (boolean)) (list :tag "Deadline Warning days" (const org-deadline-warning-days) (integer :value 1)) (list :tag "Category filter preset" (const org-agenda-category-filter-preset) (list (const :format "" quote) (repeat (string :tag "+category or -category")))) (list :tag "Tags filter preset" (const org-agenda-tag-filter-preset) (list (const :format "" quote) (repeat (string :tag "+tag or -tag")))) (list :tag "Effort filter preset" (const org-agenda-effort-filter-preset) (list (const :format "" quote) (repeat (string :tag "+=10 or -=10 or +<10 or ->10")))) (list :tag "Regexp filter preset" (const org-agenda-regexp-filter-preset) (list (const :format "" quote) (repeat (string :tag "+regexp or -regexp")))) (list :tag "Set daily/weekly entry types" (const org-agenda-entry-types) (list (const :format "" quote) (set :greedy t :value (\, org-agenda-entry-types) (const :deadline) (const :scheduled) (const :deadline*) (const :scheduled*) (const :timestamp) (const :sexp)))) (list :tag "Standard skipping condition" :value (org-agenda-skip-function (quote (org-agenda-skip-entry-if))) (const org-agenda-skip-function) (list (const :format "" quote) (list (choice :tag "Skipping range" (const :tag "Skip entry" org-agenda-skip-entry-if) (const :tag "Skip subtree" org-agenda-skip-subtree-if)) (repeat :inline t :tag "Conditions for skipping" (choice :tag "Condition type" (list :tag "Regexp matches" :inline t (const :format "" regexp) (regexp)) (list :tag "Regexp does not match" :inline t (const :format "" notregexp) (regexp)) (list :tag "TODO state is" :inline t (const todo) (choice (const :tag "Any not-done state" todo) (const :tag "Any done state" done) (const :tag "Any state" any) (list :tag "Keyword list" (const :format "" quote) (repeat (string :tag "Keyword"))))) (list :tag "TODO state is not" :inline t (const nottodo) (choice (const :tag "Any not-done state" todo) (const :tag "Any done state" done) (const :tag "Any state" any) (list :tag "Keyword list" (const :format "" quote) (repeat (string :tag "Keyword"))))) (const :tag "scheduled" scheduled) (const :tag "not scheduled" notscheduled) (const :tag "deadline" deadline) (const :tag "no deadline" notdeadline) (const :tag "timestamp" timestamp) (const :tag "no timestamp" nottimestamp)))))) (list :tag "Non-standard skipping condition" :value (org-agenda-skip-function) (const org-agenda-skip-function) (sexp :tag "Function or form (quoted!)")) (list :tag "Any variable" (variable :tag "Variable") (sexp :tag "Value (sexp)"))))))
-                nil [12562 17062])
-            ("org-agenda-custom-commands" variable (:default-value (quote (("n" "Agenda and all TODOs" ((agenda "") (alltodo "")))))) nil [17065 23181])
-            ("org-agenda-query-register" variable (:default-value 111) nil [23183 23453])
-            ("org-stuck-projects" variable (:default-value (quote ("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil ""))) nil [23455 25412])
-            ("org-agenda-skip" customgroup (:user-visible-flag t) nil [25414 25545])
-            ("org-agenda-skip-function-global" variable nil nil [25547 26317])
-            ("org-agenda-daily/weekly" customgroup (:user-visible-flag t) nil [26319 26459])
-            ("org-agenda-todo-list" customgroup (:user-visible-flag t) nil [26460 26603])
-            ("org-agenda-match-view" customgroup (:user-visible-flag t) nil [26604 26765])
-            ("org-agenda-search-view" customgroup (:user-visible-flag t) nil [26766 26903])
-            ("org-agenda-archives-mode" variable nil nil [26905 27240])
-            ("org-agenda-restriction-lock-highlight-subtree" variable (:default-value t) nil [27242 27550])
-            ("org-agenda-skip-comment-trees" variable (:default-value t) nil [27552 27763])
-            ("org-agenda-todo-list-sublevels" variable (:default-value t) nil [27765 28067])
-            ("org-agenda-todo-ignore-with-date" variable nil nil [28069 28630])
-            ("org-agenda-todo-ignore-timestamp" variable nil nil [28632 30281])
-            ("org-agenda-todo-ignore-scheduled" variable nil nil [30283 31649])
-            ("org-agenda-todo-ignore-deadlines" variable nil nil [31651 33402])
-            ("org-agenda-todo-ignore-time-comparison-use-seconds" variable nil nil [33404 34086])
-            ("org-agenda-tags-todo-honor-ignore-options" variable nil nil [34088 34745])
-            ("org-agenda-skip-scheduled-if-done" variable nil nil [34747 35170])
-            ("org-agenda-skip-scheduled-if-deadline-is-shown" variable nil nil [35172 36140])
-            ("org-agenda-skip-timestamp-if-deadline-is-shown" variable nil nil [36142 36764])
-            ("org-agenda-skip-deadline-if-done" variable nil nil [36766 37237])
-            ("org-agenda-skip-deadline-prewarning-if-scheduled" variable nil nil [37239 38378])
-            ("org-agenda-skip-scheduled-delay-if-deadline" variable nil nil [38380 39165])
-            ("org-agenda-skip-additional-timestamps-same-entry" variable nil nil [39167 39474])
-            ("org-agenda-skip-timestamp-if-done" variable nil nil [39476 39676])
-            ("org-agenda-dim-blocked-tasks" variable (:default-value t) nil [39678 40747])
-            ("org-agenda-startup" customgroup (:user-visible-flag t) nil [40749 40898])
-            ("org-agenda-menu-show-matcher" variable (:default-value t) nil [40900 41345])
-            ("org-agenda-menu-two-columns" variable nil nil [41347 41605])
-            ("org-agenda-finalize-hook" variable nil nil [41607 41980])
-            ("org-agenda-mouse-1-follows-link" variable nil nil [41982 42232])
-            ("org-agenda-start-with-follow-mode" variable nil nil [42234 42400])
-            ("org-agenda-follow-indirect" variable nil nil [42402 42605])
-            ("org-agenda-show-outline-path" variable (:default-value t) nil [42607 42763])
-            ("org-agenda-start-with-entry-text-mode" variable nil nil [42765 42939])
-            ("org-agenda-entry-text-maxlines" variable (:default-value 5) nil [42941 43260])
-            ("org-agenda-entry-text-exclude-regexps" variable nil nil [43262 43546])
-            ("org-agenda-entry-text-leaders" variable (:default-value "    > ") nil [43548 43743])
-            ("org-agenda-entry-text-cleanup-hook" variable nil nil [43745 44181])
-            ("org-agenda-include-inactive-timestamps" variable nil nil [44183 44312])
-            ("org-agenda-windows" customgroup (:user-visible-flag t) nil [44314 44463])
-            ("org-agenda-window-setup" variable (:default-value (quote reorganize-frame)) nil [44465 45302])
-            ("org-agenda-window-frame-fractions" variable (:default-value (quote (0.5 . 0.75))) nil [45304 45678])
-            ("org-agenda-restore-windows-after-quit" variable nil nil [45680 46133])
-            ("org-agenda-span" variable (:default-value (quote week)) nil [46135 46561])
-            ("org-agenda-start-on-weekday" variable (:default-value 1) nil [46563 46929])
-            ("org-agenda-show-all-dates" variable (:default-value t) nil [46931 47154])
-            ("org-agenda-format-date" variable (:default-value (quote org-agenda-format-date-aligned)) nil [47156 47641])
-            ("org-agenda-format-date-aligned" function (:arguments ("date")) nil [47643 48416])
-            ("org-agenda-time-leading-zero" variable nil nil [48418 48654])
-            ("org-agenda-timegrid-use-ampm" variable nil nil [48656 48815])
-            ("org-agenda-time-of-day-to-ampm" function (:arguments ("time")) nil [48817 49376])
-            ("org-agenda-time-of-day-to-ampm-maybe" function (:arguments ("time")) nil [49378 49606])
-            ("org-agenda-weekend-days" variable (:default-value (quote (6 0))) nil [49608 50035])
-            ("org-agenda-move-date-from-past-immediately-to-today" variable (:default-value t) nil [50037 50468])
-            ("org-agenda-include-diary" variable nil nil [50470 50702])
-            ("org-agenda-include-deadlines" variable (:default-value t) nil [50704 50947])
-            ("org-agenda-show-future-repeats" variable (:default-value t) nil [50949 51398])
-            ("org-agenda-prefer-last-repeat" variable nil nil [51400 52421])
-            ("org-scheduled-past-days" variable (:default-value 10000) nil [52423 52761])
-            ("org-deadline-past-days" variable (:default-value 10000) nil [52763 53142])
-            ("org-agenda-log-mode-items" variable (:default-value (quote (closed clock))) nil [53144 53779])
-            ("org-agenda-clock-consistency-checks" variable (:default-value (quote (:max-duration "10:00" :min-duration 0 :max-gap "0:05" :gap-ok-around ("4:00") :default-face ((:background "DarkRed") (:foreground "white")) :overlap-face nil :gap-face nil :no-end-time-face nil :long-face nil :short-face nil))) nil [53781 55832])
-            ("org-agenda-log-mode-add-notes" variable (:default-value t) nil [55834 56159])
-            ("org-agenda-start-with-log-mode" variable nil nil [56161 56845])
-            ("org-agenda-start-with-clockreport-mode" variable nil nil [56847 57057])
-            ("org-agenda-clockreport-parameter-plist" variable (:default-value (quote (:link t :maxlevel 2))) nil [57059 57622])
-            ("org-agenda-search-view-always-boolean" variable nil nil [57624 58878])
-            ("defvaralias" code nil nil [58880 58976])
-            ("org-agenda-search-view-force-full-words" variable nil nil [58978 59214])
-            ("org-agenda-search-view-max-outline-level" variable nil nil [59216 59583])
-            ("org-agenda-time-grid" customgroup (:user-visible-flag t) nil [59585 59727])
-            ("org-agenda-search-headline-for-time" variable (:default-value t) nil [59729 60249])
-            ("org-agenda-use-time-grid" variable (:default-value t) nil [60251 60692])
-            ("org-agenda-time-grid" variable (:default-value (quote ((daily today require-timed) (800 1000 1200 1400 1600 1800 2000) "......" "----------------"))) nil [60694 62208])
-            ("org-agenda-show-current-time-in-grid" variable (:default-value t) nil [62210 62384])
-            ("org-agenda-current-time-string" variable (:default-value "now - - - - - - - - - - - - - - - - - - - - - - - - -") nil [62386 62609])
-            ("org-agenda-sorting" customgroup (:user-visible-flag t) nil [62611 62743])
-            ("org-agenda-sorting-strategy" variable (:default-value (quote ((agenda habit-down time-up priority-down category-keep) (todo priority-down category-keep) (tags priority-down category-keep) (search category-keep)))) nil [62745 66475])
-            ("org-agenda-cmp-user-defined" variable nil nil [66477 66900])
-            ("org-sort-agenda-notime-is-late" variable (:default-value t) nil [66902 67374])
-            ("org-sort-agenda-noeffort-is-high" variable (:default-value t) nil [67376 67767])
-            ("org-agenda-line-format" customgroup (:user-visible-flag t) nil [67769 67926])
-            ("org-agenda-prefix-format" variable (:default-value (quote ((agenda . " %i %-12:c%?-12t% s") (todo . " %i %-12:c") (tags . " %i %-12:c") (search . " %i %-12:c")))) nil [67928 70993])
-            ("org-prefix-format-compiled" variable nil nil [70995 71258])
-            ("org-agenda-todo-keyword-format" variable (:default-value "%-1s") nil [71260 71521])
-            ("org-agenda-diary-sexp-prefix" variable nil nil [71523 71892])
-            ("org-agenda-timerange-leaders" variable (:default-value (quote ("" "(%d/%d): "))) nil [71894 72491])
-            ("org-agenda-scheduled-leaders" variable (:default-value (quote ("Scheduled: " "Sched.%2dx: "))) nil [72493 73221])
-            ("org-agenda-inactive-leader" variable (:default-value "[") nil [73223 73463])
-            ("org-agenda-deadline-leaders" variable (:default-value (quote ("Deadline:  " "In %3d d.: " "%2d d. ago: "))) nil [73465 74095])
-            ("org-agenda-remove-times-when-in-prefix" variable (:default-value t) nil [74097 74932])
-            ("org-agenda-remove-timeranges-from-blocks" variable nil nil [74934 75153])
-            ("org-agenda-default-appointment-duration" variable nil nil [75155 75519])
-            ("org-agenda-show-inherited-tags" variable (:default-value t) nil [75521 76475])
-            ("org-agenda-use-tag-inheritance" variable (:default-value (quote (todo search agenda))) nil [76477 77464])
-            ("org-agenda-hide-tags-regexp" variable nil nil [77466 77865])
-            ("org-agenda-remove-tags" variable nil nil [77867 78249])
-            ("defvaralias" code nil nil [78251 78329])
-            ("org-agenda-tags-column" variable (:default-value (quote auto)) nil [78331 78922])
-            ("defvaralias" code nil nil [78924 78994])
-            ("org-agenda-fontify-priorities" variable (:default-value (quote cookies)) nil [78996 80080])
-            ("org-agenda-day-face-function" variable nil nil [80082 80449])
-            ("org-agenda-category-icon-alist" variable nil nil [80451 81748])
-            ("org-agenda-column-view" customgroup (:user-visible-flag t) nil [81750 81890])
-            ("org-agenda-view-columns-initially" variable nil nil [81892 82136])
-            ("org-agenda-columns-show-summaries" variable (:default-value t) nil [82138 82310])
-            ("org-agenda-columns-compute-summary-properties" variable (:default-value t) nil [82312 82835])
-            ("org-agenda-columns-add-appointments-to-effort-sum" variable nil nil [82837 83334])
-            ("org-agenda-auto-exclude-function" variable nil nil [83336 83985])
-            ("org-agenda-bulk-custom-functions" variable nil nil [83987 84488])
-            ("org-agenda-with-point-at-orig-entry" function (:arguments ("string" "body")) nil [84490 85041])
-            ("def-edebug-spec" code nil nil [85042 85107])
-            ("org-add-agenda-custom-command" function (:arguments ("entry")) nil [85109 85511])
-            ("org-agenda-mode-map" variable (:default-value (make-sparse-keymap)) nil [85545 85628])
-            ("defvaralias" code nil nil [85629 85682])
-            ("org-agenda-menu" variable nil nil [85684 85708])
-            ("org-agenda-restrict" variable nil nil [85739 85771])
-            ("org-agenda-follow-mode" variable nil nil [85802 85837])
-            ("org-agenda-entry-text-mode" variable nil nil [85838 85877])
-            ("org-agenda-clockreport-mode" variable nil nil [85878 85918])
-            ("org-agenda-show-log" variable nil nil [85919 86080])
-            ("org-agenda-redo-command" variable nil nil [86081 86117])
-            ("org-agenda-query-string" variable nil nil [86118 86154])
-            ("org-agenda-mode-hook" variable nil nil [86155 86294])
-            ("org-agenda-type" variable nil nil [86295 86323])
-            ("org-agenda-force-single-file" variable nil nil [86324 86365])
-            ("org-agenda-bulk-marked-entries" variable nil nil [86366 86473])
-            ("org-agenda-current-date" variable nil nil [86474 86552])
-            ("org-agenda-sticky" variable nil nil [86591 86866])
-            ("org-toggle-sticky-agenda" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [86885 87495])
-            ("org-agenda-buffer" variable nil nil [87497 87572])
-            ("org-agenda-last-prefix-arg" variable nil nil [87574 87613])
-            ("org-agenda-this-buffer-name" variable nil nil [87614 87654])
-            ("org-agenda-doing-sticky-redo" variable nil nil [87655 87696])
-            ("org-agenda-this-buffer-is-sticky" variable nil nil [87697 87742])
-            ("org-agenda-last-indirect-buffer" variable nil nil [87743 87851])
-            ("org-agenda-local-vars" variable
-               (:constant-flag t
-                :default-value (quote (org-agenda-this-buffer-name org-agenda-undo-list org-agenda-pending-undo-list org-agenda-follow-mode org-agenda-entry-text-mode org-agenda-clockreport-mode org-agenda-show-log org-agenda-redo-command org-agenda-query-string org-agenda-type org-agenda-bulk-marked-entries org-agenda-undo-has-started-in org-agenda-info org-agenda-pre-window-conf org-agenda-columns-active org-agenda-tag-filter org-agenda-category-filter org-agenda-top-headline-filter org-agenda-regexp-filter org-agenda-effort-filter org-agenda-markers org-agenda-last-search-view-search-was-boolean org-agenda-last-indirect-buffer org-agenda-filtered-by-category org-agenda-filter-form org-agenda-cycle-counter org-agenda-last-prefix-arg)))
-                nil [87853 88778])
-            ("org-agenda-mode" function (:user-visible-flag t) nil [88780 91511])
-            ("substitute-key-definition" code nil nil [91513 91600])
-            ("org-defkey" code nil nil [91601 91661])
-            ("org-defkey" code nil nil [91662 91722])
-            ("org-defkey" code nil nil [91723 91788])
-            ("org-defkey" code nil nil [91789 91849])
-            ("org-defkey" code nil nil [91850 91912])
-            ("org-defkey" code nil nil [91913 91989])
-            ("org-defkey" code nil nil [91990 92065])
-            ("org-defkey" code nil nil [92066 92131])
-            ("org-defkey" code nil nil [92132 92199])
-            ("org-defkey" code nil nil [92200 92269])
-            ("org-defkey" code nil nil [92270 92341])
-            ("org-defkey" code nil nil [92342 92415])
-            ("org-defkey" code nil nil [92416 92488])
-            ("org-defkey" code nil nil [92489 92556])
-            ("org-defkey" code nil nil [92557 92628])
-            ("org-defkey" code nil nil [92629 92696])
-            ("org-defkey" code nil nil [92697 92760])
-            ("org-defkey" code nil nil [92761 92830])
-            ("org-defkey" code nil nil [92831 92887])
-            ("org-defkey" code nil nil [92888 92963])
-            ("org-defkey" code nil nil [92964 93042])
-            ("org-defkey" code nil nil [93043 93129])
-            ("org-defkey" code nil nil [93130 93197])
-            ("org-defkey" code nil nil [93198 93265])
-            ("org-defkey" code nil nil [93266 93329])
-            ("org-defkey" code nil nil [93330 93395])
-            ("org-defkey" code nil nil [93396 93470])
-            ("org-defkey" code nil nil [93471 93544])
-            ("org-defkey" code nil nil [93545 93611])
-            ("org-defkey" code nil nil [93612 93693])
-            ("org-defkey" code nil nil [93694 93779])
-            ("org-defkey" code nil nil [93780 93860])
-            ("org-defkey" code nil nil [93861 93926])
-            ("org-defkey" code nil nil [93927 93991])
-            ("org-defkey" code nil nil [93992 94052])
-            ("org-defkey" code nil nil [94053 94113])
-            ("org-defkey" code nil nil [94114 94203])
-            ("org-defkey" code nil nil [94204 94268])
-            ("org-defkey" code nil nil [94269 94333])
-            ("org-defkey" code nil nil [94334 94400])
-            ("org-defkey" code nil nil [94401 94466])
-            ("org-defkey" code nil nil [94467 94531])
-            ("org-defkey" code nil nil [94532 94597])
-            ("org-defkey" code nil nil [94598 94663])
-            ("org-defkey" code nil nil [94664 94728])
-            ("org-defkey" code nil nil [94729 94793])
-            ("org-defkey" code nil nil [94794 94868])
-            ("org-defkey" code nil nil [94869 94944])
-            ("org-defkey" code nil nil [94945 95025])
-            ("org-defkey" code nil nil [95026 95107])
-            ("org-defkey" code nil nil [95109 95169])
-            ("org-defkey" code nil nil [95170 95234])
-            ("org-defkey" code nil nil [95235 95299])
-            ("let" code nil nil [95300 95428])
-            ("org-defkey" code nil nil [95430 95490])
-            ("org-defkey" code nil nil [95491 95556])
-            ("org-defkey" code nil nil [95557 95621])
-            ("org-defkey" code nil nil [95622 95679])
-            ("org-defkey" code nil nil [95680 95747])
-            ("org-defkey" code nil nil [95748 95809])
-            ("org-defkey" code nil nil [95810 95875])
-            ("org-defkey" code nil nil [95876 95941])
-            ("org-defkey" code nil nil [95942 95995])
-            ("org-defkey" code nil nil [95996 96053])
-            ("org-defkey" code nil nil [96054 96113])
-            ("org-defkey" code nil nil [96114 96181])
-            ("org-defkey" code nil nil [96182 96268])
-            ("org-defkey" code nil nil [96269 96338])
-            ("org-defkey" code nil nil [96339 96392])
-            ("org-defkey" code nil nil [96393 96446])
-            ("org-defkey" code nil nil [96447 96500])
-            ("org-defkey" code nil nil [96501 96562])
-            ("org-defkey" code nil nil [96563 96632])
-            ("org-defkey" code nil nil [96633 96695])
-            ("org-defkey" code nil nil [96696 96754])
-            ("org-defkey" code nil nil [96755 96813])
-            ("org-defkey" code nil nil [96814 96876])
-            ("org-defkey" code nil nil [96877 96935])
-            ("org-defkey" code nil nil [96936 96998])
-            ("substitute-key-definition" code nil nil [96999 97096])
-            ("substitute-key-definition" code nil nil [97097 97202])
-            ("org-defkey" code nil nil [97203 97258])
-            ("org-defkey" code nil nil [97259 97329])
-            ("org-defkey" code nil nil [97330 97404])
-            ("org-defkey" code nil nil [97405 97466])
-            ("org-defkey" code nil nil [97467 97524])
-            ("org-defkey" code nil nil [97525 97585])
-            ("org-defkey" code nil nil [97586 97648])
-            ("org-defkey" code nil nil [97649 97710])
-            ("org-defkey" code nil nil [97711 97774])
-            ("org-defkey" code nil nil [97775 97838])
-            ("org-defkey" code nil nil [97839 97896])
-            ("org-defkey" code nil nil [97897 97954])
-            ("org-defkey" code nil nil [97955 98023])
-            ("org-defkey" code nil nil [98024 98081])
-            ("org-defkey" code nil nil [98082 98151])
-            ("org-defkey" code nil nil [98152 98210])
-            ("org-defkey" code nil nil [98211 98283])
-            ("org-defkey" code nil nil [98284 98345])
-            ("org-defkey" code nil nil [98346 98409])
-            ("org-defkey" code nil nil [98410 98469])
-            ("org-defkey" code nil nil [98470 98530])
-            ("org-defkey" code nil nil [98531 98593])
-            ("org-defkey" code nil nil [98594 98663])
-            ("org-defkey" code nil nil [98664 98737])
-            ("org-defkey" code nil nil [98738 98813])
-            ("org-defkey" code nil nil [98814 98893])
-            ("org-defkey" code nil nil [98894 98948])
-            ("org-defkey" code nil nil [98949 99005])
-            ("org-defkey" code nil nil [99006 99073])
-            ("org-defkey" code nil nil [99074 99154])
-            ("org-defkey" code nil nil [99155 99244])
-            ("org-defkey" code nil nil [99246 99315])
-            ("org-defkey" code nil nil [99316 99390])
-            ("org-defkey" code nil nil [99391 99463])
-            ("org-defkey" code nil nil [99464 99541])
-            ("org-defkey" code nil nil [99542 99604])
-            ("org-defkey" code nil nil [99605 99670])
-            ("org-defkey" code nil nil [99671 99736])
-            ("org-defkey" code nil nil [99737 99803])
-            ("org-defkey" code nil nil [99804 99872])
-            ("org-defkey" code nil nil [99873 99940])
-            ("org-defkey" code nil nil [99941 100012])
-            ("org-defkey" code nil nil [100013 100070])
-            ("org-defkey" code nil nil [100071 100131])
-            ("define-key" code nil nil [100132 100203])
-            ("org-defkey" code nil nil [100204 100272])
-            ("org-defkey" code nil nil [100273 100341])
-            ("org-defkey" code nil nil [100343 100408])
-            ("org-defkey" code nil nil [100409 100474])
-            ("define-key" code nil nil [100476 100560])
-            ("define-key" code nil nil [100561 100647])
-            ("when" code nil nil [100649 100748])
-            ("easy-menu-define" code nil nil [100749 107864])
-            ("org-agenda-allow-remote-undo" variable (:default-value t) nil [107883 107982])
-            ("org-agenda-undo-has-started-in" variable nil nil [107983 108104])
-            ("org-agenda-undo" function (:user-visible-flag t) nil [108106 109425])
-            ("org-verify-change-for-undo" function (:arguments ("l1" "l2")) nil [109427 109671])
-            ("org-agenda-restrict-begin" variable (:default-value (make-marker)) nil [109694 109742])
-            ("org-agenda-restrict-end" variable (:default-value (make-marker)) nil [109743 109789])
-            ("org-agenda-last-dispatch-buffer" variable nil nil [109790 109834])
-            ("org-agenda-overriding-restriction" variable nil nil [109835 109881])
-            ("org-agenda-custom-commands-contexts" variable nil nil [109883 111685])
-            ("org-agenda-max-entries" variable nil nil [111687 112254])
-            ("org-agenda-max-todos" variable nil nil [112256 112815])
-            ("org-agenda-max-tags" variable nil nil [112817 113402])
-            ("org-agenda-max-effort" variable nil nil [113404 114003])
-            ("org-agenda-keep-restricted-file-list" variable nil nil [114005 114054])
-            ("org-keys" variable nil nil [114055 114076])
-            ("org-match" variable nil nil [114077 114099])
-            ("org-agenda" function
-               (:user-visible-flag t
-                :arguments ("arg" "org-keys" "restriction"))
-                nil [114115 121968])
-            ("org-agenda-multi" variable nil nil [121970 121995])
-            ("org-agenda-append-agenda" function (:user-visible-flag t) nil [121997 122479])
-            ("org-agenda-normalize-custom-commands" function (:arguments ("cmds")) nil [122481 122770])
-            ("org-agenda-get-restriction-and-command" function (:arguments ("prefix-descriptions")) nil [122772 129359])
-            ("org-agenda-fit-window-to-buffer" function nil nil [129361 129859])
-            ("org-cmd" variable nil nil [129861 129881])
-            ("org-agenda-overriding-cmd" variable nil nil [129882 129920])
-            ("org-agenda-overriding-arguments" variable nil nil [129921 129965])
-            ("org-agenda-overriding-cmd-arguments" variable nil nil [129966 130014])
-            ("org-agenda-run-series" function (:arguments ("name" "series")) nil [130015 132068])
-            ("org-batch-agenda" function (:arguments ("cmd-key" "parameters")) nil [132085 132749])
-            ("org-agenda-info" variable nil nil [132751 132779])
-            ("org-batch-agenda-csv" function (:arguments ("cmd-key" "parameters")) nil [132796 135246])
-            ("org-fix-agenda-info" function (:arguments ("props")) nil [135248 136692])
-            ("org-agenda-export-csv-mapper" function (:arguments ("prop")) nil [136694 136944])
-            ("org-store-agenda-views" function
-               (:user-visible-flag t
-                :arguments ("parameters"))
-                nil [136961 137096])
-            ("org-batch-store-agenda-views" function (:arguments ("parameters")) nil [137113 138404])
-            ("org-agenda-current-span" variable nil nil [138406 138488])
-            ("org-agenda-mark-header-line" function (:arguments ("pos")) nil [138527 138902])
-            ("org-mobile-creating-agendas" variable nil nil [138904 138940])
-            ("org-agenda-write-buffer-name" variable (:default-value "Agenda View") nil [138968 139019])
-            ("org-agenda-write" function
-               (:user-visible-flag t
-                :arguments ("file" "open" "nosettings" "agenda-bufname"))
-                nil [139020 143056])
-            ("org-agenda-remove-marked-text" function (:arguments ("property" "value")) nil [143058 143426])
-            ("org-agenda-add-entry-text" function nil nil [143428 144181])
-            ("org-agenda-get-some-entry-text" function (:arguments ("marker" "n-lines" "indent" "keep")) nil [144183 147252])
-            ("org-check-for-org-mode" function nil nil [147254 147464])
-            ("org-agenda-multi" variable nil nil [147499 147528])
-            ("org-agenda-pre-window-conf" variable nil nil [147551 147590])
-            ("org-agenda-columns-active" variable nil nil [147591 147629])
-            ("org-agenda-name" variable nil nil [147630 147658])
-            ("org-agenda-tag-filter" variable nil nil [147659 147693])
-            ("org-agenda-category-filter" variable nil nil [147694 147733])
-            ("org-agenda-regexp-filter" variable nil nil [147734 147771])
-            ("org-agenda-effort-filter" variable nil nil [147772 147809])
-            ("org-agenda-top-headline-filter" variable nil nil [147810 147853])
-            ("org-agenda-tag-filter-preset" variable nil nil [147854 148418])
-            ("org-agenda-category-filter-preset" variable nil nil [148420 148998])
-            ("org-agenda-regexp-filter-preset" variable nil nil [149000 149572])
-            ("org-agenda-effort-filter-preset" variable nil nil [149574 150149])
-            ("org-agenda-use-sticky-p" function nil nil [150151 150892])
-            ("org-agenda-prepare-window" function (:arguments ("abuf" "filter-alist")) nil [150894 152374])
-            ("org-agenda-prepare" function (:arguments ("name")) nil [152376 154978])
-            ("org-agenda-overriding-columns-format" variable nil nil [154980 155025])
-            ("org-agenda-finalize" function nil nil [155049 158330])
-            ("org-agenda-mark-clocking-task" function nil nil [158332 159210])
-            ("org-agenda-unmark-clocking-task" function nil nil [159212 159435])
-            ("org-agenda-fontify-priorities" function (:user-visible-flag t) nil [159437 160699])
-            ("org-depend-tag-blocked" variable nil nil [160701 160732])
-            ("org-agenda-dim-blocked-tasks" function
-               (:user-visible-flag t
-                :arguments ("invisible"))
-                nil [160734 161870])
-            ("org-agenda--mark-blocked-entry" function (:arguments ("entry")) nil [161872 162975])
-            ("org-agenda-skip-function" variable nil nil [162977 163709])
-            ("org-agenda-skip" function nil nil [163711 164437])
-            ("org-agenda-skip-eval" function (:arguments ("form")) nil [164439 164888])
-            ("org-agenda-markers" variable nil nil [164890 164987])
-            ("org-agenda-last-marker-time" variable (:default-value (float-time)) nil [164988 165082])
-            ("org-agenda-new-marker" function (:arguments ("pos")) nil [165084 165528])
-            ("org-agenda-reset-markers" function nil nil [165530 165684])
-            ("org-agenda-save-markers-for-cut-and-paste" function (:arguments ("beg" "end")) nil [165686 166057])
-            ("org-agenda-entry-text-show-here" function nil nil [166080 166733])
-            ("org-agenda-entry-text-show" function (:user-visible-flag t) nil [166735 167038])
-            ("org-agenda-entry-text-hide" function nil nil [167040 167301])
-            ("org-agenda-get-day-face" function (:arguments ("date")) nil [167303 167664])
-            ("org-agenda-show-log-scoped" variable nil nil [167666 167701])
-            ("org-agenda-start-day" variable nil nil [167728 168067])
-            ("org-starting-day" variable nil nil [168068 168097])
-            ("org-arg-loc" variable nil nil [168136 168160])
-            ("org-agenda-buffer-tmp-name" variable nil nil [168179 168218])
-            ("org-agenda-list" function
-               (:user-visible-flag t
-                :arguments ("arg" "start-day" "span" "with-hour"))
-                nil [168234 176222])
-            ("org-agenda-ndays-to-span" function (:arguments ("n")) nil [176224 176417])
-            ("org-agenda-span-to-ndays" function (:arguments ("span" "start-day")) nil [176419 176953])
-            ("org-agenda-span-name" function (:arguments ("span")) nil [176955 177129])
-            ("org-agenda-search-history" variable nil nil [177155 177193])
-            ("org-search-syntax-table" variable nil nil [177195 177413])
-            ("org-mode-syntax-table" variable nil nil [177415 177445])
-            ("org-search-syntax-table" function nil nil [177460 177746])
-            ("org-agenda-last-search-view-search-was-boolean" variable nil nil [177748 177807])
-            ("org-search-view" function
-               (:user-visible-flag t
-                :arguments ("todo-only" "string" "edit-at"))
-                nil [177824 189591])
-            ("org-agenda-propertize-selected-todo-keywords" function (:arguments ("keywords")) nil [189615 189992])
-            ("org-select-this-todo-keyword" variable nil nil [189994 190035])
-            ("org-last-arg" variable nil nil [190036 190061])
-            ("org-todo-list" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [190078 193428])
-            ("org-tags-view" function
-               (:user-visible-flag t
-                :arguments ("todo-only" "match"))
-                nil [193468 197051])
-            ("org-agenda-skip-regexp" variable nil nil [197088 197325])
-            ("org-agenda-overriding-header" variable nil nil [197327 197541])
-            ("org-agenda-skip-entry-if" function (:arguments ("conditions")) nil [197543 197715])
-            ("org-agenda-skip-subtree-if" function (:arguments ("conditions")) nil [197717 197891])
-            ("org-agenda-skip-if" function (:arguments ("subtree" "conditions")) nil [197893 200993])
-            ("org-agenda-skip-if-todo" function (:arguments ("args" "end")) nil [200995 202382])
-            ("org-agenda-list-stuck-projects" function
-               (:user-visible-flag t
-                :arguments ("ignore"))
-                nil [202399 204508])
-            ("org-disable-agenda-to-diary" variable nil nil [204533 204573])
-            ("diary-list-entries-hook" variable nil nil [204610 204642])
-            ("diary-time-regexp" variable nil nil [204643 204669])
-            ("org-get-entries-from-diary" function (:arguments ("date")) nil [204670 206584])
-            ("org-agenda-cleanup-fancy-diary-hook" variable nil nil [206586 206690])
-            ("org-agenda-cleanup-fancy-diary" function nil nil [206692 207564])
-            ("eval-after-load" code nil nil [207634 208121])
-            ("org-modify-diary-entry-string" function (:arguments ("string")) nil [208123 208513])
-            ("org-diary-default-entry" function nil nil [208515 208913])
-            ("org-add-to-diary-list" function (:arguments ("args")) nil [208915 209067])
-            ("org-diary-last-run-time" variable nil nil [209069 209105])
-            ("org-diary" function (:arguments ("args")) nil [209122 211484])
-            ("org-agenda--timestamp-to-absolute" function (:arguments ("args")) nil [211512 211882])
-            ("org-agenda-get-day-entries" function (:arguments ("file" "date" "args")) nil [211884 214469])
-            ("org-em" function (:arguments ("x" "y" "list")) nil [214471 214566])
-            ("org-heading-keyword-regexp-format" variable nil nil [214568 214610])
-            ("org-agenda-sorting-strategy-selected" variable nil nil [214631 214680])
-            ("org-agenda-entry-get-agenda-timestamp" function (:arguments ("pom")) nil [214682 216069])
-            ("org-agenda-get-todos" function nil nil [216071 218909])
-            ("org-agenda-todo-custom-ignore-p" function (:arguments ("time" "n")) nil [218911 219339])
-            ("org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item" function (:arguments ("end")) nil [219356 222349])
-            ("org-agenda-get-timestamps" function (:arguments ("deadlines")) nil [222351 227825])
-            ("org-agenda-get-sexps" function nil nil [227827 229960])
-            ("org-anniversary" function (:arguments ("year" "month" "day" "mark")) nil [230054 230286])
-            ("org-cyclic" function (:arguments ("N" "year" "month" "day" "mark")) nil [230287 230508])
-            ("org-block" function (:arguments ("Y1" "M1" "D1" "Y2" "M2" "D2" "mark")) nil [230509 230729])
-            ("org-date" function (:arguments ("year" "month" "day" "mark")) nil [230730 230941])
-            ("org-class" function (:arguments ("y1" "m1" "d1" "y2" "m2" "d2" "dayname" "skip-weeks")) nil [230978 232079])
-            ("defalias" code nil nil [232081 232132])
-            ("org-agenda-get-progress" function nil nil [232133 236282])
-            ("org-agenda-show-clocking-issues" function (:user-visible-flag t) nil [236284 239375])
-            ("org-agenda-check-clock-gap" function (:arguments ("t1" "t2" "ok-list")) nil [239377 240610])
-            ("org-agenda-get-deadlines" function (:arguments ("with-hour")) nil [240612 246623])
-            ("org-agenda-deadline-face" function (:arguments ("fraction")) nil [246625 246840])
-            ("org-agenda-get-scheduled" function (:arguments ("deadlines" "with-hour")) nil [246842 254179])
-            ("org-agenda-get-blocks" function nil nil [254181 257570])
-            ("org-prefix-has-time" variable nil nil [257609 257755])
-            ("org-prefix-has-tag" variable nil nil [257756 257901])
-            ("org-prefix-has-effort" variable nil nil [257902 258050])
-            ("org-prefix-has-breadcrumbs" variable nil nil [258051 258204])
-            ("org-prefix-category-length" variable nil nil [258205 258322])
-            ("org-prefix-category-max-length" variable nil nil [258323 258444])
-            ("org-agenda-get-category-icon" function (:arguments ("category")) nil [258446 258783])
-            ("org-agenda-format-item" function (:arguments ("extra" "txt" "level" "category" "tags" "dotime" "remove-re" "habitp")) nil [258785 265652])
-            ("org-agenda-fix-displayed-tags" function (:arguments ("txt" "tags" "add-inherited" "hide-re")) nil [265654 266645])
-            ("org-downcase-keep-props" function (:arguments ("s")) nil [266647 266804])
-            ("org-agenda-sorting-strategy" variable nil nil [266806 266842])
-            ("org-agenda-add-time-grid-maybe" function (:arguments ("list" "ndays" "todayp")) nil [266880 268578])
-            ("org-compile-prefix-format" function (:arguments ("key")) nil [268580 271147])
-            ("org-set-sorting-strategy" function (:arguments ("key")) nil [271149 271543])
-            ("org-get-time-of-day" function (:arguments ("s" "string" "mod24")) nil [271545 272774])
-            ("org-agenda-before-sorting-filter-function" variable nil nil [272776 273719])
-            ("org-agenda-finalize-entries" function (:arguments ("list" "type")) nil [273721 275290])
-            ("org-agenda-limit-entries" function (:arguments ("list" "prop" "limit" "fn")) nil [275292 275794])
-            ("org-agenda-limit-interactively" function
-               (:user-visible-flag t
-                :arguments ("remove"))
-                nil [275796 276836])
-            ("org-agenda-highlight-todo" function (:arguments ("x")) nil [276838 278760])
-            ("org-cmp-values" function (:arguments ("a" "b" "property")) nil [278762 279042])
-            ("org-cmp-effort" function (:arguments ("a" "b")) nil [279044 279531])
-            ("org-cmp-category" function (:arguments ("a" "b")) nil [279533 279837])
-            ("org-cmp-todo-state" function (:arguments ("a" "b")) nil [279839 280720])
-            ("org-cmp-alpha" function (:arguments ("a" "b")) nil [280722 281565])
-            ("org-cmp-tag" function (:arguments ("a" "b")) nil [281567 281862])
-            ("org-cmp-time" function (:arguments ("a" "b")) nil [281864 282159])
-            ("org-cmp-ts" function (:arguments ("a" "b" "type")) nil [282161 282814])
-            ("org-cmp-habit-p" function (:arguments ("a" "b")) nil [282816 283051])
-            ("org-entries-lessp" function (:arguments ("a" "b")) nil [283053 285955])
-            ("org-agenda-restriction-lock-overlay" variable (:default-value (make-overlay 1 1)) nil [285986 286123])
-            ("overlay-put" code nil nil [286124 286214])
-            ("overlay-put" code nil nil [286215 286330])
-            ("delete-overlay" code nil nil [286331 286383])
-            ("org-agenda-set-restriction-lock-from-agenda" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [286385 287045])
-            ("org-agenda-set-restriction-lock" function
-               (:user-visible-flag t
-                :arguments ("type"))
-                nil [287062 288701])
-            ("org-agenda-remove-restriction-lock" function
-               (:user-visible-flag t
-                :arguments ("noupdate"))
-                nil [288703 289270])
-            ("org-agenda-maybe-redo" function nil nil [289272 289770])
-            ("org-agenda-check-type" function (:arguments ("error" "types")) nil [289793 290201])
-            ("org-agenda-Quit" function (:user-visible-flag t) nil [290203 290400])
-            ("org-agenda-quit" function (:user-visible-flag t) nil [290402 290760])
-            ("org-agenda--quit" function (:arguments ("bury")) nil [290762 292032])
-            ("org-agenda-exit" function (:user-visible-flag t) nil [292034 292494])
-            ("org-agenda-kill-all-agenda-buffers" function (:user-visible-flag t) nil [292496 292812])
-            ("org-agenda-execute" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [292814 293084])
-            ("org-agenda-redo" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [293086 296169])
-            ("org-agenda-redo-all" function
-               (:user-visible-flag t
-                :arguments ("exhaustive"))
-                nil [296171 296546])
-            ("org-global-tags-completion-table" variable nil nil [296548 296593])
-            ("org-agenda-filter-form" variable nil nil [296594 296629])
-            ("org-agenda-filtered-by-category" variable nil nil [296630 296674])
-            ("org-agenda-filter-by-category" function
-               (:user-visible-flag t
-                :arguments ("strip"))
-                nil [296676 297478])
-            ("org-find-top-headline" function (:arguments ("pos")) nil [297480 297918])
-            ("org-agenda-filtered-by-top-headline" variable nil nil [297920 297968])
-            ("org-agenda-filter-by-top-headline" function
-               (:user-visible-flag t
-                :arguments ("strip"))
-                nil [297969 298551])
-            ("org-agenda-regexp-filter" variable nil nil [298553 298590])
-            ("org-agenda-filter-by-regexp" function
-               (:user-visible-flag t
-                :arguments ("strip"))
-                nil [298591 299329])
-            ("org-agenda-effort-filter" variable nil nil [299331 299368])
-            ("org-agenda-filter-by-effort" function
-               (:user-visible-flag t
-                :arguments ("strip"))
-                nil [299369 300951])
-            ("org-agenda-filter-remove-all" function (:user-visible-flag t) nil [300953 301456])
-            ("org-agenda-filter-by-tag" function
-               (:user-visible-flag t
-                :arguments ("arg" "char" "exclude"))
-                nil [301458 304553])
-            ("org-agenda-get-represented-tags" function nil nil [304555 304904])
-            ("org-agenda-filter-make-matcher" function (:arguments ("filter" "type" "expand")) nil [304907 306548])
-            ("org-agenda-filter-make-matcher-tag-exp" function (:arguments ("tags" "op")) nil [306550 307323])
-            ("org-agenda-filter-effort-form" function (:arguments ("e")) nil [307325 307752])
-            ("org-agenda-compare-effort" function (:arguments ("op" "value")) nil [307754 308214])
-            ("org-agenda-filter-expand-tags" function (:arguments ("filter" "no-operator")) nil [308216 308810])
-            ("org-agenda-filter-apply" function (:arguments ("filter" "type" "expand")) nil [308812 310040])
-            ("org-agenda-filter-top-headline-apply" function (:arguments ("hl" "negative")) nil [310042 310686])
-            ("org-agenda-filter-hide-line" function (:arguments ("type")) nil [310688 310972])
-            ("org-agenda-remove-filter" function (:arguments ("type")) nil [310974 311583])
-            ("org-agenda-filter-show-all-tag" function nil nil [311585 311661])
-            ("org-agenda-filter-show-all-re" function nil nil [311662 311740])
-            ("org-agenda-filter-show-all-effort" function nil nil [311741 311823])
-            ("org-agenda-filter-show-all-cat" function nil nil [311824 311905])
-            ("org-agenda-filter-show-all-top-filter" function nil nil [311906 311998])
-            ("org-agenda-manipulate-query-add" function (:user-visible-flag t) nil [312000 312245])
-            ("org-agenda-manipulate-query-subtract" function (:user-visible-flag t) nil [312246 312496])
-            ("org-agenda-manipulate-query-add-re" function (:user-visible-flag t) nil [312497 312744])
-            ("org-agenda-manipulate-query-subtract-re" function (:user-visible-flag t) nil [312745 312997])
-            ("org-agenda-manipulate-query" function (:arguments ("char")) nil [312998 313978])
-            ("org-add-to-string" function (:arguments ("var" "string")) nil [313980 314065])
-            ("org-agenda-goto-date" function
-               (:user-visible-flag t
-                :arguments ("span"))
-                nil [314067 315330])
-            ("org-agenda-goto-today" function (:user-visible-flag t) nil [315332 315982])
-            ("org-agenda-find-same-or-today-or-agenda" function (:arguments ("cnt")) nil [315984 316408])
-            ("org-agenda-backward-block" function (:user-visible-flag t) nil [316410 316540])
-            ("org-agenda-forward-block" function
-               (:user-visible-flag t
-                :arguments ("backward"))
-                nil [316542 317586])
-            ("org-agenda-later" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [317588 319144])
-            ("org-agenda-earlier" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [319146 319335])
-            ("org-agenda-view-mode-dispatch" function (:user-visible-flag t) nil [319337 320886])
-            ("org-agenda-reset-view" function (:user-visible-flag t) nil [320888 321023])
-            ("org-agenda-day-view" function
-               (:user-visible-flag t
-                :arguments ("day-of-month"))
-                nil [321025 321245])
-            ("org-agenda-week-view" function
-               (:user-visible-flag t
-                :arguments ("iso-week"))
-                nil [321247 321709])
-            ("org-agenda-fortnight-view" function
-               (:user-visible-flag t
-                :arguments ("iso-week"))
-                nil [321711 322188])
-            ("org-agenda-month-view" function
-               (:user-visible-flag t
-                :arguments ("month"))
-                nil [322190 322626])
-            ("org-agenda-year-view" function
-               (:user-visible-flag t
-                :arguments ("year"))
-                nil [322628 323081])
-            ("org-agenda-change-time-span" function (:arguments ("span" "n")) nil [323083 323922])
-            ("org-agenda-compute-starting-span" function (:arguments ("sd" "span" "n")) nil [323924 325269])
-            ("org-agenda-next-date-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [325271 325755])
-            ("org-agenda-previous-date-line" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [325757 326073])
-            ("org-hl" variable (:default-value (make-overlay 1 1)) nil [326103 326137])
-            ("overlay-put" code nil nil [326138 326175])
-            ("org-highlight" function (:arguments ("begin" "end" "buffer")) nil [326177 326327])
-            ("org-unhighlight" function nil nil [326329 326407])
-            ("org-unhighlight-once" function nil nil [326409 326593])
-            ("org-agenda-pre-follow-window-conf" variable nil nil [326595 326641])
-            ("org-agenda-follow-mode" function (:user-visible-flag t) nil [326642 327145])
-            ("org-agenda-entry-text-mode" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [327147 328035])
-            ("org-agenda-clockreport-mode" function (:user-visible-flag t) nil [328037 328379])
-            ("org-agenda-log-mode" function
-               (:user-visible-flag t
-                :arguments ("special"))
-                nil [328381 329088])
-            ("org-agenda-archives-mode" function
-               (:user-visible-flag t
-                :arguments ("with-files"))
-                nil [329090 329789])
-            ("org-agenda-toggle-diary" function (:user-visible-flag t) nil [329791 330124])
-            ("org-agenda-toggle-deadlines" function (:user-visible-flag t) nil [330126 330500])
-            ("org-agenda-toggle-time-grid" function (:user-visible-flag t) nil [330502 330827])
-            ("org-agenda-set-mode-name" function nil nil [330829 333489])
-            ("org-agenda-update-agenda-type" function nil nil [333491 333727])
-            ("org-agenda-next-line" function (:user-visible-flag t) nil [333729 333912])
-            ("org-agenda-previous-line" function (:user-visible-flag t) nil [333914 334109])
-            ("org-agenda-next-item" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [334111 334470])
-            ("org-agenda-previous-item" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [334472 334825])
-            ("org-agenda-do-context-action" function nil nil [334827 335250])
-            ("org-agenda-show-tags" function (:user-visible-flag t) nil [335252 335537])
-            ("org-agenda-goto" function
-               (:user-visible-flag t
-                :arguments ("highlight"))
-                nil [335539 336281])
-            ("org-agenda-after-show-hook" variable nil nil [336283 336438])
-            ("org-agenda-kill" function (:user-visible-flag t) nil [336440 337788])
-            ("org-archive-default-command" variable nil nil [337790 337826])
-            ("org-agenda-archive-default" function (:user-visible-flag t) nil [337855 338061])
-            ("org-agenda-archive-default-with-confirmation" function (:user-visible-flag t) nil [338063 338296])
-            ("org-agenda-archive" function (:user-visible-flag t) nil [338298 338464])
-            ("org-agenda-archive-to-archive-sibling" function (:user-visible-flag t) nil [338466 338633])
-            ("org-agenda-archive-with" function
-               (:user-visible-flag t
-                :arguments ("cmd" "confirm"))
-                nil [338635 339424])
-            ("org-remove-subtree-entries-from-agenda" function (:arguments ("buf" "beg" "end")) nil [339426 340324])
-            ("org-agenda-refile" function
-               (:user-visible-flag t
-                :arguments ("goto" "rfloc" "no-update"))
-                nil [340326 341526])
-            ("org-agenda-open-link" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [341528 343057])
-            ("org-agenda-copy-local-variable" function (:arguments ("var")) nil [343059 343371])
-            ("org-agenda-switch-to" function
-               (:user-visible-flag t
-                :arguments ("delete-other-windows"))
-                nil [343373 344254])
-            ("org-agenda-goto-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [344256 344420])
-            ("org-agenda-show" function
-               (:user-visible-flag t
-                :arguments ("full-entry"))
-                nil [344422 344764])
-            ("org-agenda-show-window" variable nil nil [344766 344801])
-            ("org-agenda-show-and-scroll-up" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [344802 345535])
-            ("org-agenda-show-scroll-down" function (:user-visible-flag t) nil [345537 345829])
-            ("org-agenda-show-1" function
-               (:user-visible-flag t
-                :arguments ("more"))
-                nil [345831 347439])
-            ("org-agenda-cycle-counter" variable nil nil [347441 347478])
-            ("org-agenda-cycle-show" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [347479 348387])
-            ("org-agenda-recenter" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [348389 348615])
-            ("org-agenda-show-mouse" function
-               (:user-visible-flag t
-                :arguments ("ev"))
-                nil [348617 348783])
-            ("org-agenda-check-no-diary" function nil nil [348785 348950])
-            ("org-agenda-error" function nil nil [348952 349093])
-            ("org-agenda-tree-to-indirect-buffer" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [349095 350457])
-            ("org-agenda-do-tree-to-indirect-buffer" function (:arguments ("arg")) nil [350459 350876])
-            ("org-last-heading-marker" variable (:default-value (make-marker)) nil [350878 351030])
-            ("org-agenda-todo-nextset" function (:user-visible-flag t) nil [351032 351151])
-            ("org-agenda-todo-previousset" function (:user-visible-flag t) nil [351153 351284])
-            ("org-agenda-todo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [351286 352908])
-            ("org-agenda-add-note" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [352910 353393])
-            ("org-agenda-change-all-lines" function (:arguments ("newhead" "hdmarker" "fixface" "just-this")) nil [353395 356174])
-            ("org-agenda-align-tags" function (:arguments ("line")) nil [356176 357401])
-            ("org-agenda-priority-up" function (:user-visible-flag t) nil [357403 357542])
-            ("org-agenda-priority-down" function (:user-visible-flag t) nil [357544 357687])
-            ("org-agenda-priority" function
-               (:user-visible-flag t
-                :arguments ("force-direction"))
-                nil [357689 358796])
-            ("org-agenda-set-tags" function
-               (:user-visible-flag t
-                :arguments ("tag" "onoff"))
-                nil [358857 359644])
-            ("org-agenda-set-property" function (:user-visible-flag t) nil [359646 360126])
-            ("org-agenda-set-effort" function (:user-visible-flag t) nil [360128 360717])
-            ("org-agenda-toggle-archive-tag" function (:user-visible-flag t) nil [360719 361362])
-            ("org-agenda-do-date-later" function (:arguments ("arg")) nil [361364 361912])
-            ("org-agenda-do-date-earlier" function (:arguments ("arg")) nil [361914 362474])
-            ("org-agenda-date-later" function
-               (:user-visible-flag t
-                :arguments ("arg" "what"))
-                nil [362476 363900])
-            ("org-agenda-date-earlier" function
-               (:user-visible-flag t
-                :arguments ("arg" "what"))
-                nil [363902 364069])
-            ("org-agenda-date-later-minutes" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364071 364313])
-            ("org-agenda-date-earlier-minutes" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364315 364561])
-            ("org-agenda-date-later-hours" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364563 364709])
-            ("org-agenda-date-earlier-hours" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [364711 364861])
-            ("org-agenda-show-new-time" function (:arguments ("marker" "stamp" "prefix")) nil [364863 365565])
-            ("org-agenda-date-prompt" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [365567 366411])
-            ("org-agenda-schedule" function
-               (:user-visible-flag t
-                :arguments ("arg" "time"))
-                nil [366413 367073])
-            ("org-agenda-deadline" function
-               (:user-visible-flag t
-                :arguments ("arg" "time"))
-                nil [367075 367654])
-            ("org-agenda-clock-in" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [367656 368407])
-            ("org-agenda-clock-out" function (:user-visible-flag t) nil [368409 369064])
-            ("org-agenda-clock-cancel" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [369066 369334])
-            ("org-agenda-clock-goto" function (:user-visible-flag t) nil [369336 370038])
-            ("org-agenda-diary-entry-in-org-file" function nil nil [370040 371953])
-            ("org-agenda-insert-diary-strategy" variable (:default-value (quote date-tree)) nil [371955 372476])
-            ("org-agenda-insert-diary-extract-time" variable nil nil [372478 372657])
-            ("org-agenda-bulk-mark-char" variable (:default-value ">") nil [372659 372814])
-            ("org-agenda-add-entry-to-org-agenda-diary-file" function (:arguments ("type" "text" "d1" "d2")) nil [372816 375771])
-            ("org-agenda-insert-diary-as-top-level" function (:arguments ("text")) nil [375773 376217])
-            ("org-agenda-insert-diary-make-new-entry" function (:arguments ("text")) nil [376219 377095])
-            ("org-agenda-diary-entry" function (:user-visible-flag t) nil [377097 378991])
-            ("org-agenda-execute-calendar-command" function (:arguments ("cmd")) nil [378993 379836])
-            ("org-agenda-phases-of-moon" function (:user-visible-flag t) nil [379838 380029])
-            ("org-agenda-holidays" function (:user-visible-flag t) nil [380031 380207])
-            ("calendar-longitude" variable nil nil [380209 380236])
-            ("calendar-latitude" variable nil nil [380267 380293])
-            ("calendar-location-name" variable nil nil [380325 380356])
-            ("org-agenda-sunrise-sunset" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [380384 380966])
-            ("org-agenda-goto-calendar" function (:user-visible-flag t) nil [380968 381460])
-            ("org-calendar-goto-agenda" function (:user-visible-flag t) nil [381477 381947])
-            ("org-agenda-convert-date" function nil nil [381949 383313])
-            ("org-agenda-bulk-marked-p" function nil nil [383334 383507])
-            ("org-agenda-bulk-mark" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [383509 384460])
-            ("org-agenda-bulk-mark-all" function (:user-visible-flag t) nil [384462 384601])
-            ("org-agenda-bulk-mark-regexp" function
-               (:user-visible-flag t
-                :arguments ("regexp"))
-                nil [384603 385322])
-            ("org-agenda-bulk-unmark" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [385324 386105])
-            ("org-agenda-bulk-toggle-all" function (:user-visible-flag t) nil [386107 386375])
-            ("org-agenda-bulk-toggle" function (:user-visible-flag t) nil [386377 386564])
-            ("org-agenda-bulk-remove-overlays" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [386566 387040])
-            ("org-agenda-bulk-unmark-all" function (:user-visible-flag t) nil [387042 387375])
-            ("org-agenda-persistent-marks" variable nil nil [387377 387626])
-            ("org-agenda-bulk-action" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [387628 394056])
-            ("org-agenda-capture" function
-               (:user-visible-flag t
-                :arguments ("with-time"))
-                nil [394058 394499])
-            ("org-agenda-reapply-filters" function nil nil [394545 395106])
-            ("org-agenda-drag-line-forward" function
-               (:user-visible-flag t
-                :arguments ("arg" "backward"))
-                nil [395108 395939])
-            ("org-agenda-drag-line-backward" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [395941 396090])
-            ("org-agenda-show-the-flagging-note" function (:user-visible-flag t) nil [396112 397341])
-            ("org-agenda-remove-flag" function (:arguments ("marker")) nil [397343 397699])
-            ("org-agenda-get-any-marker" function (:arguments ("pos")) nil [397701 397878])
-            ("appt-time-msg-list" variable nil nil [397907 397934])
-            ("org-agenda-to-appt" function
-               (:user-visible-flag t
-                :arguments ("refresh" "filter" "args"))
-                nil [397972 402104])
-            ("org-agenda-today-p" function (:arguments ("date")) nil [402106 402470])
-            ("org-agenda-todo-yesterday" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [402472 402777])
-            ("org-agenda" package nil nil [402779 402800]))          
-      :file "org-agenda.el"
-      :pointmax 402830
-      :fsize 402833
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [2464 2478])
-            ("avl-tree" include nil nil [2479 2498])
-            ("cl-lib" include nil nil [2499 2516])
-            ("org-element-paragraph-separate" variable nil nil [2827 3105])
-            ("org-element--object-regexp" variable nil nil [3107 3431])
-            ("org-element--set-regexps" function nil nil [3433 6059])
-            ("org-element--set-regexps" code nil nil [6061 6087])
-            ("org-element-update-syntax" function (:user-visible-flag t) nil [6104 6247])
-            ("org-element-all-elements" variable
-               (:constant-flag t
-                :default-value (quote (babel-call center-block clock comment comment-block diary-sexp drawer dynamic-block example-block export-block fixed-width footnote-definition headline horizontal-rule inlinetask item keyword latex-environment node-property paragraph plain-list planning property-drawer quote-block section special-block src-block table table-row verse-block)))
-                nil [6249 6707])
-            ("org-element-greater-elements" variable
-               (:constant-flag t
-                :default-value (quote (center-block drawer dynamic-block footnote-definition headline inlinetask item plain-list property-drawer quote-block section special-block table)))
-                nil [6709 6963])
-            ("org-element-all-objects" variable
-               (:constant-flag t
-                :default-value (quote (bold code entity export-snippet footnote-reference inline-babel-call inline-src-block italic line-break latex-fragment link macro radio-target statistics-cookie strike-through subscript superscript table-cell target timestamp underline verbatim)))
-                nil [6965 7290])
-            ("org-element-recursive-objects" variable
-               (:constant-flag t
-                :default-value (quote (bold footnote-reference italic link subscript radio-target strike-through superscript table-cell underline)))
-                nil [7292 7482])
-            ("org-element-object-containers" variable
-               (:constant-flag t
-                :default-value (append org-element-recursive-objects (quote (paragraph table-row verse-block))))
-                nil [7484 7671])
-            ("org-element-affiliated-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("CAPTION" "DATA" "HEADER" "HEADERS" "LABEL" "NAME" "PLOT" "RESNAME" "RESULT" "RESULTS" "SOURCE" "SRCNAME" "TBLNAME")))
-                nil [7673 8008])
-            ("org-element-keyword-translation-alist" variable
-               (:constant-flag t
-                :default-value (quote (("DATA" . "NAME") ("LABEL" . "NAME") ("RESNAME" . "NAME") ("SOURCE" . "NAME") ("SRCNAME" . "NAME") ("TBLNAME" . "NAME") ("RESULT" . "RESULTS") ("HEADERS" . "HEADER"))))
-                nil [8010 8410])
-            ("org-element-multiple-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("CAPTION" "HEADER")))
-                nil [8412 8890])
-            ("org-element-parsed-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("CAPTION")))
-                nil [8892 9190])
-            ("org-element--parsed-properties-alist" variable
-               (:constant-flag t
-                :default-value (mapcar (lambda (k) (cons k (intern (concat ":" (downcase k))))) org-element-parsed-keywords))
-                nil [9192 9459])
-            ("org-element-dual-keywords" variable
-               (:constant-flag t
-                :default-value (quote ("CAPTION" "RESULTS")))
-                nil [9461 9900])
-            ("org-element--affiliated-re" variable
-               (:constant-flag t
-                :default-value (format "[ 	]*#\\+\\(?:%s\\):[ 	]*" (concat (format "\\(?1:%s\\)\\(?:\\[\\(.*\\)\\]\\)?" (regexp-opt org-element-dual-keywords)) "\\|" (format "\\(?1:%s\\)" (regexp-opt (cl-remove-if (lambda (k) (member k org-element-dual-keywords)) org-element-affiliated-keywords))) "\\|" "\\(?1:ATTR_[-_A-Za-z0-9]+\\)")))
-                nil [9902 10645])
-            ("org-element-object-restrictions" variable
-               (:constant-flag t
-                :default-value (let* ((standard-set (remq (quote table-cell) org-element-all-objects)) (standard-set-no-line-break (remq (quote line-break) standard-set))) (\` ((bold (\,@ standard-set)) (footnote-reference (\,@ standard-set)) (headline (\,@ standard-set-no-line-break)) (inlinetask (\,@ standard-set-no-line-break)) (italic (\,@ standard-set)) (item (\,@ standard-set-no-line-break)) (keyword (\,@ (remq (quote footnote-reference) standard-set))) (link bold code entity export-snippet inline-babel-call inline-src-block italic latex-fragment macro statistics-cookie strike-through subscript superscript underline verbatim) (paragraph (\,@ standard-set)) (radio-target bold code entity italic latex-fragment strike-through subscript superscript underline superscript) (strike-through (\,@ standard-set)) (subscript (\,@ standard-set)) (superscript (\,@ standard-set)) (table-cell bold code entity export-snippet footnote-reference italic latex-fragment link macro radio-target strike-through subscript superscript target timestamp underline verbatim) (table-row table-cell) (underline (\,@ standard-set)) (verse-block (\,@ standard-set))))))
-                nil [10647 12722])
-            ("org-element-secondary-value-alist" variable
-               (:constant-flag t
-                :default-value (quote ((headline :title) (inlinetask :title) (item :tag))))
-                nil [12724 12898])
-            ("org-element--pair-round-table" variable
-               (:constant-flag t
-                :default-value (let ((table (make-syntax-table))) (modify-syntax-entry 40 "()" table) (modify-syntax-entry 41 ")(" table) (dolist (char (quote (123 125 91 93 60 62)) table) (modify-syntax-entry char " " table))))
-                nil [12900 13249])
-            ("org-element--pair-square-table" variable
-               (:constant-flag t
-                :default-value (let ((table (make-syntax-table))) (modify-syntax-entry 91 "(]" table) (modify-syntax-entry 93 ")[" table) (dolist (char (quote (123 125 40 41 60 62)) table) (modify-syntax-entry char " " table))))
-                nil [13251 13602])
-            ("org-element--pair-curly-table" variable
-               (:constant-flag t
-                :default-value (let ((table (make-syntax-table))) (modify-syntax-entry 123 "(}" table) (modify-syntax-entry 125 "){" table) (dolist (char (quote (91 93 40 41 60 62)) table) (modify-syntax-entry char " " table))))
-                nil [13604 13953])
-            ("org-element--parse-paired-brackets" function (:arguments ("char")) nil [13955 14626])
-            ("org-element-type" function (:arguments ("element")) nil [15505 15918])
-            ("org-element-property" function (:arguments ("property" "element")) nil [15920 16130])
-            ("org-element-contents" function (:arguments ("element")) nil [16132 16307])
-            ("org-element-restriction" function (:arguments ("element")) nil [16309 16599])
-            ("org-element-put-property" function (:arguments ("element" "property" "value")) nil [16601 16874])
-            ("org-element-set-contents" function (:arguments ("element" "contents")) nil [16876 17156])
-            ("org-element-secondary-p" function (:arguments ("object")) nil [17158 17592])
-            ("org-element-class" function (:arguments ("datum" "parent")) nil [17594 18664])
-            ("org-element-adopt-elements" function (:arguments ("parent" "children")) nil [18666 19435])
-            ("org-element-extract-element" function (:arguments ("element")) nil [19437 20065])
-            ("org-element-insert-before" function (:arguments ("element" "location")) nil [20067 21491])
-            ("org-element-set-element" function (:arguments ("old" "new")) nil [21493 22579])
-            ("org-element-create" function (:arguments ("type" "props" "children")) nil [22581 22887])
-            ("org-element-copy" function (:arguments ("datum")) nil [22889 23327])
-            ("org-element-center-block-parser" function (:arguments ("limit" "affiliated")) nil [24781 26334])
-            ("org-element-center-block-interpreter" function (:arguments ("_" "contents")) nil [26336 26539])
-            ("org-element-drawer-parser" function (:arguments ("limit" "affiliated")) nil [26555 28199])
-            ("org-element-drawer-interpreter" function (:arguments ("drawer" "contents")) nil [28201 28427])
-            ("org-element-dynamic-block-parser" function (:arguments ("limit" "affiliated")) nil [28450 30171])
-            ("org-element-dynamic-block-interpreter" function (:arguments ("dynamic-block" "contents")) nil [30173 30538])
-            ("org-element--footnote-separator" variable
-               (:constant-flag t
-                :default-value (concat org-outline-regexp-bol "\\|" org-footnote-definition-re "\\|" "^\\([ 	]*
-\\)\\{2,\\}"))
-                nil [30567 30766])
-            ("org-element-footnote-definition-parser" function (:arguments ("limit" "affiliated")) nil [30768 32787])
-            ("org-element-footnote-definition-interpreter" function (:arguments ("footnote-definition" "contents")) nil [32789 33080])
-            ("org-element--get-node-properties" function nil nil [33098 33820])
-            ("org-element--get-time-properties" function nil nil [33822 34544])
-            ("org-element-headline-parser" function (:arguments ("limit" "raw-secondary-p")) nil [34546 38028])
-            ("org-element-headline-interpreter" function (:arguments ("headline" "contents")) nil [38030 39469])
-            ("org-element-inlinetask-parser" function (:arguments ("limit" "raw-secondary-p")) nil [39489 42692])
-            ("org-element-inlinetask-interpreter" function (:arguments ("inlinetask" "contents")) nil [42694 43944])
-            ("org-element-item-parser" function (:arguments ("_" "struct" "raw-secondary-p")) nil [43958 46450])
-            ("org-element-item-interpreter" function (:arguments ("item" "contents")) nil [46452 47628])
-            ("org-element--list-struct" function (:arguments ("limit")) nil [47648 50449])
-            ("org-element-plain-list-parser" function (:arguments ("limit" "affiliated" "structure")) nil [50451 52037])
-            ("org-element-plain-list-interpreter" function (:arguments ("_" "contents")) nil [52039 52296])
-            ("org-element-property-drawer-parser" function (:arguments ("limit")) nil [52321 53330])
-            ("org-element-property-drawer-interpreter" function (:arguments ("_" "contents")) nil [53332 53535])
-            ("org-element-quote-block-parser" function (:arguments ("limit" "affiliated")) nil [53556 55061])
-            ("org-element-quote-block-interpreter" function (:arguments ("_" "contents")) nil [55063 55260])
-            ("org-element-section-parser" function (:arguments ("_")) nil [55277 56034])
-            ("org-element-section-interpreter" function (:arguments ("_" "contents")) nil [56036 56185])
-            ("org-element-special-block-parser" function (:arguments ("limit" "affiliated")) nil [56208 57875])
-            ("org-element-special-block-interpreter" function (:arguments ("special-block" "contents")) nil [57877 58174])
-            ("org-element-babel-call-parser" function (:arguments ("limit" "affiliated")) nil [58623 60278])
-            ("org-element-babel-call-interpreter" function (:arguments ("babel-call" "_")) nil [60280 60699])
-            ("org-element-clock-parser" function (:arguments ("limit")) nil [60714 61812])
-            ("org-element-clock-interpreter" function (:arguments ("clock" "_")) nil [61814 62190])
-            ("org-element-comment-parser" function (:arguments ("limit" "affiliated")) nil [62207 63601])
-            ("org-element-comment-interpreter" function (:arguments ("comment" "_")) nil [63603 63792])
-            ("org-element-comment-block-parser" function (:arguments ("limit" "affiliated")) nil [63815 65185])
-            ("org-element-comment-block-interpreter" function (:arguments ("comment-block" "_")) nil [65187 65459])
-            ("org-element-diary-sexp-parser" function (:arguments ("limit" "affiliated")) nil [65479 66446])
-            ("org-element-diary-sexp-interpreter" function (:arguments ("diary-sexp" "_")) nil [66448 66588])
-            ("org-element-example-block-parser" function (:arguments ("limit" "affiliated")) nil [66611 69394])
-            ("org-element-example-block-interpreter" function (:arguments ("example-block" "_")) nil [69396 69946])
-            ("org-element-export-block-parser" function (:arguments ("limit" "affiliated")) nil [69968 71608])
-            ("org-element-export-block-interpreter" function (:arguments ("export-block" "_")) nil [71610 71859])
-            ("org-element-fixed-width-parser" function (:arguments ("limit" "affiliated")) nil [71880 73101])
-            ("org-element-fixed-width-interpreter" function (:arguments ("fixed-width" "_")) nil [73103 73394])
-            ("org-element-horizontal-rule-parser" function (:arguments ("limit" "affiliated")) nil [73419 74274])
-            ("org-element-horizontal-rule-interpreter" function (:arguments ("_")) nil [74276 74396])
-            ("org-element-keyword-parser" function (:arguments ("limit" "affiliated")) nil [74413 75678])
-            ("org-element-keyword-interpreter" function (:arguments ("keyword" "_")) nil [75680 75878])
-            ("org-element--latex-begin-environment" variable
-               (:constant-flag t
-                :default-value "^[ 	]*\\\\begin{\\([A-Za-z0-9*]+\\)}")
-                nil [75905 76148])
-            ("org-element--latex-end-environment" variable
-               (:constant-flag t
-                :default-value "\\\\end{%s}[ 	]*$")
-                nil [76150 76329])
-            ("org-element-latex-environment-parser" function (:arguments ("limit" "affiliated")) nil [76331 77687])
-            ("org-element-latex-environment-interpreter" function (:arguments ("latex-environment" "_")) nil [77689 77865])
-            ("org-element-node-property-parser" function (:arguments ("limit")) nil [77888 78584])
-            ("org-element-node-property-interpreter" function (:arguments ("node-property" "_")) nil [78586 78847])
-            ("org-element-paragraph-parser" function (:arguments ("limit" "affiliated")) nil [78866 81279])
-            ("org-element-paragraph-interpreter" function (:arguments ("_" "contents")) nil [81281 81434])
-            ("org-element-planning-parser" function (:arguments ("limit")) nil [81452 82629])
-            ("org-element-planning-interpreter" function (:arguments ("planning" "_")) nil [82631 83318])
-            ("org-element-src-block-parser" function (:arguments ("limit" "affiliated")) nil [83337 86598])
-            ("org-element-src-block-interpreter" function (:arguments ("src-block" "_")) nil [86600 87544])
-            ("org-element-table-parser" function (:arguments ("limit" "affiliated")) nil [87559 89318])
-            ("org-element-table-interpreter" function (:arguments ("table" "contents")) nil [89320 89823])
-            ("org-element-table-row-parser" function (:arguments ("_")) nil [89842 90718])
-            ("org-element-table-row-interpreter" function (:arguments ("table-row" "contents")) nil [90720 90960])
-            ("org-element-verse-block-parser" function (:arguments ("limit" "affiliated")) nil [90981 92339])
-            ("org-element-verse-block-interpreter" function (:arguments ("_" "contents")) nil [92341 92531])
-            ("org-element-bold-parser" function nil nil [93115 93896])
-            ("org-element-bold-interpreter" function (:arguments ("_" "contents")) nil [93898 94055])
-            ("org-element-code-parser" function nil nil [94069 94743])
-            ("org-element-code-interpreter" function (:arguments ("code" "_")) nil [94745 94884])
-            ("org-element-entity-parser" function nil nil [94900 96088])
-            ("org-element-entity-interpreter" function (:arguments ("entity" "_")) nil [96090 96298])
-            ("org-element-export-snippet-parser" function nil nil [96322 97264])
-            ("org-element-export-snippet-interpreter" function (:arguments ("export-snippet" "_")) nil [97266 97504])
-            ("org-element-footnote-reference-parser" function nil nil [97532 98553])
-            ("org-element-footnote-reference-interpreter" function (:arguments ("footnote-reference" "contents")) nil [98555 98864])
-            ("org-element-inline-babel-call-parser" function nil nil [98891 100398])
-            ("org-element-inline-babel-call-interpreter" function (:arguments ("inline-babel-call" "_")) nil [100400 100858])
-            ("org-element-inline-src-block-parser" function nil nil [100884 101986])
-            ("org-element-inline-src-block-interpreter" function (:arguments ("inline-src-block" "_")) nil [101988 102402])
-            ("org-element-italic-parser" function nil nil [102417 103210])
-            ("org-element-italic-interpreter" function (:arguments ("_" "contents")) nil [103212 103373])
-            ("org-element-latex-fragment-parser" function nil nil [103397 104835])
-            ("org-element-latex-fragment-interpreter" function (:arguments ("latex-fragment" "_")) nil [104837 105000])
-            ("org-element-line-break-parser" function nil nil [105019 105486])
-            ("org-element-line-break-interpreter" function (:arguments ("_")) nil [105488 105598])
-            ("org-element-link-parser" function nil nil [105612 110514])
-            ("org-element-link-interpreter" function (:arguments ("link" "contents")) nil [110516 111940])
-            ("org-element-macro-parser" function nil nil [111955 112822])
-            ("org-element-macro-interpreter" function (:arguments ("macro" "_")) nil [112824 112951])
-            ("org-element-radio-target-parser" function nil nil [112973 113806])
-            ("org-element-radio-target-interpreter" function (:arguments ("_" "contents")) nil [113808 113980])
-            ("org-element-statistics-cookie-parser" function nil nil [114007 114753])
-            ("org-element-statistics-cookie-interpreter" function (:arguments ("statistics-cookie" "_")) nil [114755 114930])
-            ("org-element-strike-through-parser" function nil nil [114954 115789])
-            ("org-element-strike-through-interpreter" function (:arguments ("_" "contents")) nil [115791 115968])
-            ("org-element-subscript-parser" function nil nil [115987 116925])
-            ("org-element-subscript-interpreter" function (:arguments ("subscript" "contents")) nil [116927 117169])
-            ("org-element-superscript-parser" function nil nil [117190 118133])
-            ("org-element-superscript-interpreter" function (:arguments ("superscript" "contents")) nil [118135 118385])
-            ("org-element-table-cell-parser" function nil nil [118405 118945])
-            ("org-element-table-cell-interpreter" function (:arguments ("_" "contents")) nil [118947 119126])
-            ("org-element-target-parser" function nil nil [119142 119752])
-            ("org-element-target-interpreter" function (:arguments ("target" "_")) nil [119754 119903])
-            ("org-element--timestamp-regexp" variable
-               (:constant-flag t
-                :default-value (concat org-ts-regexp-both "\\|" "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>
-]+?\\+[0-9]+[dwmy]>\\)" "\\|" "\\(?:<%%\\(?:([^>
-]+)\\)>\\)"))
-                nil [119922 120151])
-            ("org-element-timestamp-parser" function nil nil [120153 123901])
-            ("org-element-timestamp-interpreter" function (:arguments ("timestamp" "_")) nil [123903 127600])
-            ("org-element-underline-parser" function nil nil [127619 128431])
-            ("org-element-underline-interpreter" function (:arguments ("_" "contents")) nil [128433 128600])
-            ("org-element-verbatim-parser" function nil nil [128618 129317])
-            ("org-element-verbatim-interpreter" function (:arguments ("verbatim" "_")) nil [129319 129474])
-            ("org-element--current-element" function (:arguments ("limit" "granularity" "mode" "structure")) nil [129981 135515])
-            ("org-element--collect-affiliated-keywords" function (:arguments ("limit")) nil [135788 138465])
-            ("org-element-parse-buffer" function (:arguments ("granularity" "visible-only")) nil [139015 141233])
-            ("org-element-parse-secondary-string" function (:arguments ("string" "restriction" "parent")) nil [141235 142083])
-            ("org-element-map" function (:arguments ("data" "types" "fun" "info" "first-match" "no-recursion" "with-affiliated")) nil [142085 148409])
-            ("put" code nil nil [148410 148456])
-            ("org-element--next-mode" function (:arguments ("type" "parentp")) nil [148810 149493])
-            ("org-element--parse-elements" function (:arguments ("beg" "end" "mode" "structure" "granularity" "visible-only" "acc")) nil [149495 152371])
-            ("org-element--object-lex" function (:arguments ("restriction")) nil [152373 156527])
-            ("org-element--parse-objects" function (:arguments ("beg" "end" "acc" "restriction" "parent")) nil [156529 158586])
-            ("org-element-interpret-data" function (:arguments ("data")) nil [158977 161429])
-            ("org-element--interpret-affiliated-keywords" function (:arguments ("element")) nil [161431 163006])
-            ("org-element-normalize-string" function (:arguments ("s")) nil [163511 163908])
-            ("org-element-normalize-contents" function (:arguments ("element" "ignore-first")) nil [163910 167385])
-            ("org-element-use-cache" variable nil nil [169582 169833])
-            ("org-element-cache-sync-idle-time" variable (:default-value 0.6) nil [169835 169939])
-            ("org-element-cache-sync-duration" variable (:default-value (seconds-to-time 0.04)) nil [169941 170202])
-            ("org-element-cache-sync-break" variable (:default-value (seconds-to-time 0.3)) nil [170204 170393])
-            ("org-element--cache" variable nil nil [170417 170630])
-            ("org-element--cache-sync-requests" variable nil nil [170632 171865])
-            ("org-element--cache-sync-timer" variable nil nil [171867 171951])
-            ("org-element--cache-sync-keys" variable nil nil [171953 172103])
-            ("org-element--cache-key" function (:arguments ("element")) nil [172105 173387])
-            ("org-element--cache-generate-key" function (:arguments ("lower" "upper")) nil [173389 175641])
-            ("org-element--cache-key-less-p" function (:arguments ("a" "b")) nil [175643 176376])
-            ("org-element--cache-compare" function (:arguments ("a" "b")) nil [176378 176567])
-            ("org-element--cache-root" function nil nil [176569 176767])
-            ("org-element--cache-active-p" function nil nil [176782 176965])
-            ("org-element--cache-find" function (:arguments ("pos" "side")) nil [176967 178894])
-            ("org-element--cache-put" function (:arguments ("element")) nil [178896 179683])
-            ("org-element--cache-remove" function (:arguments ("element")) nil [179685 179869])
-            ("org-element--cache-set-timer" function (:arguments ("buffer")) nil [179894 180326])
-            ("org-element--cache-interrupt-p" function (:arguments ("time-limit")) nil [180328 180574])
-            ("org-element--cache-shift-positions" function (:arguments ("element" "offset" "props")) nil [180576 181718])
-            ("org-element--cache-sync" function (:arguments ("buffer" "threshold" "future-change")) nil [181720 183440])
-            ("org-element--cache-process-request" function (:arguments ("request" "next" "threshold" "time-limit" "future-change")) nil [183442 190748])
-            ("org-element--parse-to" function (:arguments ("pos" "syncp" "time-limit")) nil [190750 196324])
-            ("org-element--cache-sensitive-re" variable
-               (:constant-flag t
-                :default-value (concat org-outline-regexp-bol "\\|" "\\\\end{[A-Za-z0-9*]+}[ 	]*$" "\\|" "^[ 	]*\\(?:" "#\\+\\(?:BEGIN[:_]\\|END\\(?:_\\|:?[ 	]*$\\)\\)" "\\|" "\\\\begin{[A-Za-z0-9*]+}" "\\|" ":\\(?:\\w\\|[-_]\\)+:[ 	]*$" "\\)"))
-                nil [196356 196915])
-            ("org-element--cache-change-warning" variable nil nil [196917 197065])
-            ("org-element--cache-before-change" function (:arguments ("beg" "end")) nil [197067 197776])
-            ("org-element--cache-after-change" function (:arguments ("beg" "end" "pre")) nil [197778 199360])
-            ("org-element--cache-for-removal" function (:arguments ("beg" "end" "offset")) nil [199362 201272])
-            ("org-element--cache-submit-request" function (:arguments ("beg" "end" "offset")) nil [201274 204312])
-            ("org-element-cache-reset" function
-               (:user-visible-flag t
-                :arguments ("all"))
-                nil [204353 205186])
-            ("org-element-cache-refresh" function (:arguments ("pos")) nil [205203 205469])
-            ("org-element-at-point" function nil nil [206190 207642])
-            ("org-element-context" function (:arguments ("element")) nil [207659 212878])
-            ("org-element-lineage" function (:arguments ("blob" "types" "with-self")) nil [212880 213767])
-            ("org-element-nested-p" function (:arguments ("elem-A" "elem-B")) nil [213769 214148])
-            ("org-element-swap-A-B" function (:arguments ("elem-A" "elem-B")) nil [214150 216936])
-            ("org-element" package nil nil [216939 216961]))          
-      :file "org-element.el"
-      :pointmax 217067
-      :fsize 217066
-      :lastmodtime '(23537 23332 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1079 1096])
-            ("ox-html" include nil nil [1097 1115])
-            ("ox-publish" include nil nil [1116 1137])
-            ("org-export-md" customgroup (:user-visible-flag t) nil [1174 1347])
-            ("org-md-headline-style" variable (:default-value (quote atx)) nil [1349 1605])
-            ("org-md-footnotes-section" variable (:default-value "%s%s") nil [1624 1943])
-            ("org-md-footnote-format" variable (:default-value "<sup>%s</sup>") nil [1945 2191])
-            ("org-export-define-derived-backend" code nil nil [2216 3830])
-            ("org-md-separate-elements" function (:arguments ("tree" "_backend" "info")) nil [3847 4875])
-            ("org-md-bold" function (:arguments ("_bold" "contents" "_info")) nil [4916 5126])
-            ("org-md-verbatim" function (:arguments ("verbatim" "_contents" "_info")) nil [5153 5559])
-            ("org-md-example-block" function (:arguments ("example-block" "_contents" "info")) nil [5610 5921])
-            ("org-md-export-block" function (:arguments ("export-block" "contents" "info")) nil [5923 6358])
-            ("org-md-headline" function (:arguments ("headline" "contents" "info")) nil [6376 8327])
-            ("org-md--headline-referred-p" function (:arguments ("headline" "info")) nil [8330 9893])
-            ("org-md--headline-title" function (:arguments ("style" "level" "title" "anchor" "tags")) nil [9895 10744])
-            ("org-md-horizontal-rule" function (:arguments ("_horizontal-rule" "_contents" "_info")) nil [10768 10993])
-            ("org-md-italic" function (:arguments ("_italic" "contents" "_info")) nil [11009 11225])
-            ("org-md-item" function (:arguments ("item" "contents" "info")) nil [11239 12169])
-            ("org-md-keyword" function (:arguments ("keyword" "contents" "info")) nil [12187 12923])
-            ("org-md-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [12943 13128])
-            ("org-md-link" function (:arguments ("link" "contents" "info")) nil [13142 16148])
-            ("org-md-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [16171 16543])
-            ("org-md-paragraph" function (:arguments ("paragraph" "contents" "_info")) nil [16562 16978])
-            ("org-md-plain-list" function (:arguments ("_plain-list" "contents" "_info")) nil [16998 17205])
-            ("org-md-plain-text" function (:arguments ("text" "info")) nil [17225 18309])
-            ("org-md-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [18334 18641])
-            ("org-md-quote-block" function (:arguments ("_quote-block" "contents" "_info")) nil [18662 18953])
-            ("org-md-section" function (:arguments ("_section" "contents" "_info")) nil [18970 19165])
-            ("org-md--build-toc" function (:arguments ("info" "n" "keyword" "local")) nil [19183 20917])
-            ("org-md--footnote-formatted" function (:arguments ("footnote" "info")) nil [20919 21485])
-            ("org-md--footnote-section" function (:arguments ("info")) nil [21487 22231])
-            ("org-md-inner-template" function (:arguments ("contents" "info")) nil [22233 22819])
-            ("org-md-template" function (:arguments ("contents" "_info")) nil [22821 23029])
-            ("org-md-export-as-markdown" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only"))
-                nil [23075 23976])
-            ("org-md-convert-region-to-md" function (:user-visible-flag t) nil [23993 24306])
-            ("org-md-export-to-markdown" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only"))
-                nil [24324 25130])
-            ("org-md-publish-to-md" function (:arguments ("plist" "filename" "pub-dir")) nil [25147 25467])
-            ("ox-md" package nil nil [25469 25485]))          
-      :file "ox-md.el"
-      :pointmax 25585
-      :fsize 25584
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1130 1147])
-            ("format-spec" include nil nil [1148 1170])
-            ("ox" include nil nil [1171 1184])
-            ("ox-publish" include nil nil [1185 1206])
-            ("table" include nil nil [1207 1223])
-            ("declare-function" code nil nil [1254 1306])
-            ("declare-function" code nil nil [1307 1364])
-            ("declare-function" code nil nil [1365 1418])
-            ("htmlize-css-name-prefix" variable nil nil [1420 1452])
-            ("htmlize-output-type" variable nil nil [1453 1481])
-            ("htmlize-output-type" variable nil nil [1482 1510])
-            ("htmlize-css-name-prefix" variable nil nil [1511 1543])
-            ("org-export-define-backend" code nil nil [1566 8049])
-            ("org-html-format-table-no-css" variable nil nil [8077 8114])
-            ("htmlize-buffer-places" variable nil nil [8115 8145])
-            ("org-html--pre/postamble-class" variable (:default-value "status") nil [8166 8250])
-            ("org-html-doctype-alist" variable
-               (:constant-flag t
-                :default-value (quote (("html4-strict" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\"
-\"http://www.w3.org/TR/html4/strict.dtd\">") ("html4-transitional" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
-\"http://www.w3.org/TR/html4/loose.dtd\">") ("html4-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Frameset//EN\"
-\"http://www.w3.org/TR/html4/frameset.dtd\">") ("xhtml-strict" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">") ("xhtml-transitional" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">") ("xhtml-frameset" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Frameset//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd\">") ("xhtml-11" . "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"
-\"http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd\">") ("html5" . "<!DOCTYPE html>") ("xhtml5" . "<!DOCTYPE html>"))))
-                nil [8252 9370])
-            ("org-html-html5-elements" variable
-               (:constant-flag t
-                :default-value (quote ("article" "aside" "audio" "canvas" "details" "figcaption" "figure" "footer" "header" "menu" "meter" "nav" "output" "progress" "section" "video")))
-                nil [9372 9689])
-            ("org-html-special-string-regexps" variable
-               (:constant-flag t
-                :default-value (quote (("\\\\-" . "&#x00ad;") ("---\\([^-]\\)" . "&#x2014;\\1") ("--\\([^-]\\)" . "&#x2013;\\1") ("\\.\\.\\." . "&#x2026;"))))
-                nil [9691 9955])
-            ("org-html-scripts" variable
-               (:constant-flag t
-                :default-value "<script type=\"text/javascript\">
-/*
-@licstart  The following is the entire license notice for the
-JavaScript code in this tag.
-
-Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-The JavaScript code in this tag is free software: you can
-redistribute it and/or modify it under the terms of the GNU
-General Public License (GNU GPL) as published by the Free Software
-Foundation, either version 3 of the License, or (at your option)
-any later version.  The code is distributed WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
-
-As additional permission under GNU GPL version 3 section 7, you
-may distribute non-source (e.g., minimized or compacted) forms of
-that code without the copy of the GNU GPL normally required by
-section 4, provided you include this license notice and a URL
-through which recipients can access the Corresponding Source.
-
-
-@licend  The above is the entire license notice
-for the JavaScript code in this tag.
-*/
-<!--/*--><![CDATA[/*><!--*/
- function CodeHighlightOn(elem, id)
- {
-   var target = document.getElementById(id);
-   if(null != target) {
-     elem.cacheClassElem = elem.className;
-     elem.cacheClassTarget = target.className;
-     target.className = \"code-highlighted\";
-     elem.className   = \"code-highlighted\";
-   }
- }
- function CodeHighlightOff(elem, id)
- {
-   var target = document.getElementById(id);
-   if(elem.cacheClassElem)
-     elem.className = elem.cacheClassElem;
-   if(elem.cacheClassTarget)
-     target.className = elem.cacheClassTarget;
- }
-/*]]>*///-->
-</script>")
-                nil [9957 11677])
-            ("org-html-style-default" variable
-               (:constant-flag t
-                :default-value "<style type=\"text/css\">
- <!--/*--><![CDATA[/*><!--*/
-  .title  { text-align: center;
-             margin-bottom: .2em; }
-  .subtitle { text-align: center;
-              font-size: medium;
-              font-weight: bold;
-              margin-top:0; }
-  .todo   { font-family: monospace; color: red; }
-  .done   { font-family: monospace; color: green; }
-  .priority { font-family: monospace; color: orange; }
-  .tag    { background-color: #eee; font-family: monospace;
-            padding: 2px; font-size: 80%; font-weight: normal; }
-  .timestamp { color: #bebebe; }
-  .timestamp-kwd { color: #5f9ea0; }
-  .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
-  .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
-  .org-center { margin-left: auto; margin-right: auto; text-align: center; }
-  .underline { text-decoration: underline; }
-  #postamble p, #preamble p { font-size: 90%; margin: .2em; }
-  p.verse { margin-left: 3%; }
-  pre {
-    border: 1px solid #ccc;
-    box-shadow: 3px 3px 3px #eee;
-    padding: 8pt;
-    font-family: monospace;
-    overflow: auto;
-    margin: 1.2em;
-  }
-  pre.src {
-    position: relative;
-    overflow: visible;
-    padding-top: 1.2em;
-  }
-  pre.src:before {
-    display: none;
-    position: absolute;
-    background-color: white;
-    top: -10px;
-    right: 10px;
-    padding: 3px;
-    border: 1px solid black;
-  }
-  pre.src:hover:before { display: inline;}
-  /* Languages per Org manual */
-  pre.src-asymptote:before { content: 'Asymptote'; }
-  pre.src-awk:before { content: 'Awk'; }
-  pre.src-C:before { content: 'C'; }
-  /* pre.src-C++ doesn't work in CSS */
-  pre.src-clojure:before { content: 'Clojure'; }
-  pre.src-css:before { content: 'CSS'; }
-  pre.src-D:before { content: 'D'; }
-  pre.src-ditaa:before { content: 'ditaa'; }
-  pre.src-dot:before { content: 'Graphviz'; }
-  pre.src-calc:before { content: 'Emacs Calc'; }
-  pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
-  pre.src-fortran:before { content: 'Fortran'; }
-  pre.src-gnuplot:before { content: 'gnuplot'; }
-  pre.src-haskell:before { content: 'Haskell'; }
-  pre.src-hledger:before { content: 'hledger'; }
-  pre.src-java:before { content: 'Java'; }
-  pre.src-js:before { content: 'Javascript'; }
-  pre.src-latex:before { content: 'LaTeX'; }
-  pre.src-ledger:before { content: 'Ledger'; }
-  pre.src-lisp:before { content: 'Lisp'; }
-  pre.src-lilypond:before { content: 'Lilypond'; }
-  pre.src-lua:before { content: 'Lua'; }
-  pre.src-matlab:before { content: 'MATLAB'; }
-  pre.src-mscgen:before { content: 'Mscgen'; }
-  pre.src-ocaml:before { content: 'Objective Caml'; }
-  pre.src-octave:before { content: 'Octave'; }
-  pre.src-org:before { content: 'Org mode'; }
-  pre.src-oz:before { content: 'OZ'; }
-  pre.src-plantuml:before { content: 'Plantuml'; }
-  pre.src-processing:before { content: 'Processing.js'; }
-  pre.src-python:before { content: 'Python'; }
-  pre.src-R:before { content: 'R'; }
-  pre.src-ruby:before { content: 'Ruby'; }
-  pre.src-sass:before { content: 'Sass'; }
-  pre.src-scheme:before { content: 'Scheme'; }
-  pre.src-screen:before { content: 'Gnu Screen'; }
-  pre.src-sed:before { content: 'Sed'; }
-  pre.src-sh:before { content: 'shell'; }
-  pre.src-sql:before { content: 'SQL'; }
-  pre.src-sqlite:before { content: 'SQLite'; }
-  /* additional languages in org.el's org-babel-load-languages alist */
-  pre.src-forth:before { content: 'Forth'; }
-  pre.src-io:before { content: 'IO'; }
-  pre.src-J:before { content: 'J'; }
-  pre.src-makefile:before { content: 'Makefile'; }
-  pre.src-maxima:before { content: 'Maxima'; }
-  pre.src-perl:before { content: 'Perl'; }
-  pre.src-picolisp:before { content: 'Pico Lisp'; }
-  pre.src-scala:before { content: 'Scala'; }
-  pre.src-shell:before { content: 'Shell Script'; }
-  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
-  /* additional language identifiers per \"defun org-babel-execute\"
-       in ob-*.el */
-  pre.src-cpp:before  { content: 'C++'; }
-  pre.src-abc:before  { content: 'ABC'; }
-  pre.src-coq:before  { content: 'Coq'; }
-  pre.src-groovy:before  { content: 'Groovy'; }
-  /* additional language identifiers from org-babel-shell-names in
-     ob-shell.el: ob-shell is the only babel language using a lambda to put
-     the execution function name together. */
-  pre.src-bash:before  { content: 'bash'; }
-  pre.src-csh:before  { content: 'csh'; }
-  pre.src-ash:before  { content: 'ash'; }
-  pre.src-dash:before  { content: 'dash'; }
-  pre.src-ksh:before  { content: 'ksh'; }
-  pre.src-mksh:before  { content: 'mksh'; }
-  pre.src-posh:before  { content: 'posh'; }
-  /* Additional Emacs modes also supported by the LaTeX listings package */
-  pre.src-ada:before { content: 'Ada'; }
-  pre.src-asm:before { content: 'Assembler'; }
-  pre.src-caml:before { content: 'Caml'; }
-  pre.src-delphi:before { content: 'Delphi'; }
-  pre.src-html:before { content: 'HTML'; }
-  pre.src-idl:before { content: 'IDL'; }
-  pre.src-mercury:before { content: 'Mercury'; }
-  pre.src-metapost:before { content: 'MetaPost'; }
-  pre.src-modula-2:before { content: 'Modula-2'; }
-  pre.src-pascal:before { content: 'Pascal'; }
-  pre.src-ps:before { content: 'PostScript'; }
-  pre.src-prolog:before { content: 'Prolog'; }
-  pre.src-simula:before { content: 'Simula'; }
-  pre.src-tcl:before { content: 'tcl'; }
-  pre.src-tex:before { content: 'TeX'; }
-  pre.src-plain-tex:before { content: 'Plain TeX'; }
-  pre.src-verilog:before { content: 'Verilog'; }
-  pre.src-vhdl:before { content: 'VHDL'; }
-  pre.src-xml:before { content: 'XML'; }
-  pre.src-nxml:before { content: 'XML'; }
-  /* add a generic configuration mode; LaTeX export needs an additional
-     (add-to-list 'org-latex-listings-langs '(conf \" \")) in .emacs */
-  pre.src-conf:before { content: 'Configuration File'; }
-
-  table { border-collapse:collapse; }
-  caption.t-above { caption-side: top; }
-  caption.t-bottom { caption-side: bottom; }
-  td, th { vertical-align:top;  }
-  th.org-right  { text-align: center;  }
-  th.org-left   { text-align: center;   }
-  th.org-center { text-align: center; }
-  td.org-right  { text-align: right;  }
-  td.org-left   { text-align: left;   }
-  td.org-center { text-align: center; }
-  dt { font-weight: bold; }
-  .footpara { display: inline; }
-  .footdef  { margin-bottom: 1em; }
-  .figure { padding: 1em; }
-  .figure p { text-align: center; }
-  .inlinetask {
-    padding: 10px;
-    border: 2px solid gray;
-    margin: 10px;
-    background: #ffffcc;
-  }
-  #org-div-home-and-up
-   { text-align: right; font-size: 70%; white-space: nowrap; }
-  textarea { overflow-x: auto; }
-  .linenr { font-size: smaller }
-  .code-highlighted { background-color: #ffff00; }
-  .org-info-js_info-navigation { border-style: none; }
-  #org-info-js_console-label
-    { font-size: 10px; font-weight: bold; white-space: nowrap; }
-  .org-info-js_search-highlight
-    { background-color: #ffff00; color: #000000; font-weight: bold; }
-  .org-svg { width: 90%; }
-  /*]]>*/-->
-</style>")
-                nil [11679 18905])
-            ("org-export-html" customgroup (:user-visible-flag t) nil [18943 19069])
-            ("org-html-infojs-opts-table" variable (:default-value (quote ((path PATH "https://orgmode.org/org-info.js") (view VIEW "info") (toc TOC :with-toc) (ftoc FIXED_TOC "0") (tdepth TOC_DEPTH "max") (sdepth SECTION_DEPTH "max") (mouse MOUSE_HINT "underline") (buttons VIEW_BUTTONS "0") (ltoc LOCAL_TOC "1") (up LINK_UP :html-link-up) (home LINK_HOME :html-link-home)))) nil [19091 19532])
-            ("org-html-use-infojs" variable (:default-value (quote when-configured)) nil [19534 20151])
-            ("org-html-infojs-options" variable (:default-value (mapcar (lambda (x) (cons (car x) (nth 2 x))) org-html-infojs-opts-table)) nil [20153 21013])
-            ("org-html-infojs-template" variable (:default-value "<script type=\"text/javascript\" src=\"%SCRIPT_PATH\">
-/**
- *
- * @source: %SCRIPT_PATH
- *
- * @licstart  The following is the entire license notice for the
- *  JavaScript code in %SCRIPT_PATH.
- *
- * Copyright (C) 2012-2018 Free Software Foundation, Inc.
- *
- *
- * The JavaScript code in this tag is free software: you can
- * redistribute it and/or modify it under the terms of the GNU
- * General Public License (GNU GPL) as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option)
- * any later version.  The code is distributed WITHOUT ANY WARRANTY;
- * without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
- *
- * As additional permission under GNU GPL version 3 section 7, you
- * may distribute non-source (e.g., minimized or compacted) forms of
- * that code without the copy of the GNU GPL normally required by
- * section 4, provided you include this license notice and a URL
- * through which recipients can access the Corresponding Source.
- *
- * @licend  The above is the entire license notice
- * for the JavaScript code in %SCRIPT_PATH.
- *
- */
-</script>
-
-<script type=\"text/javascript\">
-
-/*
-@licstart  The following is the entire license notice for the
-JavaScript code in this tag.
-
-Copyright (C) 2012-2018 Free Software Foundation, Inc.
-
-The JavaScript code in this tag is free software: you can
-redistribute it and/or modify it under the terms of the GNU
-General Public License (GNU GPL) as published by the Free Software
-Foundation, either version 3 of the License, or (at your option)
-any later version.  The code is distributed WITHOUT ANY WARRANTY;
-without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
-
-As additional permission under GNU GPL version 3 section 7, you
-may distribute non-source (e.g., minimized or compacted) forms of
-that code without the copy of the GNU GPL normally required by
-section 4, provided you include this license notice and a URL
-through which recipients can access the Corresponding Source.
-
-
-@licend  The above is the entire license notice
-for the JavaScript code in this tag.
-*/
-
-<!--/*--><![CDATA[/*><!--*/
-%MANAGER_OPTIONS
-org_html_manager.setup();  // activate after the parameters are set
-/*]]>*///-->
-</script>") nil [21015 23625])
-            ("org-html-infojs-install-script" function (:arguments ("exp-plist" "_backend")) nil [23627 26918])
-            ("org-html-text-markup-alist" variable (:default-value (quote ((bold . "<b>%s</b>") (code . "<code>%s</code>") (italic . "<i>%s</i>") (strike-through . "<del>%s</del>") (underline . "<span class=\"underline\">%s</span>") (verbatim . "<code>%s</code>")))) nil [26937 27733])
-            ("org-html-indent" variable nil nil [27735 27971])
-            ("org-html-format-drawer-function" variable (:default-value (lambda (_name contents) contents)) nil [27987 28556])
-            ("org-html-footnotes-section" variable (:default-value "<div id=\"footnotes\">
-<h2 class=\"footnotes\">%s: </h2>
-<div id=\"text-footnotes\">
-%s
-</div>
-</div>") nil [28574 28974])
-            ("org-html-footnote-format" variable (:default-value "<sup>%s</sup>") nil [28976 29167])
-            ("org-html-footnote-separator" variable (:default-value "<sup>, </sup>") nil [29169 29303])
-            ("org-html-toplevel-hlevel" variable (:default-value 2) nil [29320 29846])
-            ("org-html-format-headline-function" variable (:default-value (quote org-html-format-headline-default-function)) nil [29848 30460])
-            ("org-html-allow-name-attribute-in-anchors" variable nil nil [30482 30785])
-            ("org-html-format-inlinetask-function" variable (:default-value (quote org-html-format-inlinetask-default-function)) nil [30805 31510])
-            ("org-html-with-latex" variable (:default-value org-export-with-latex) nil [31524 32393])
-            ("org-html-link-org-files-as-html" variable (:default-value t) nil [32418 32957])
-            ("org-html-inline-images" variable (:default-value t) nil [32988 33271])
-            ("org-html-inline-image-rules" variable (:default-value (quote (("file" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'") ("http" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'") ("https" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")))) nil [33273 33858])
-            ("org-html-protect-char-alist" variable (:default-value (quote (("&" . "&amp;") ("<" . "&lt;") (">" . "&gt;")))) nil [33877 34045])
-            ("org-html-htmlize-output-type" variable (:default-value (quote inline-css)) nil [34063 35180])
-            ("org-html-htmlize-font-prefix" variable (:default-value "org-") nil [35182 35339])
-            ("org-html-table-default-attributes" variable (:default-value (quote (:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides"))) nil [35353 35867])
-            ("org-html-table-header-tags" variable (:default-value (quote ("<th scope=\"%s\"%s>" . "</th>"))) nil [35869 36443])
-            ("org-html-table-data-tags" variable (:default-value (quote ("<td%s>" . "</td>"))) nil [36445 36929])
-            ("org-html-table-row-open-tag" variable (:default-value "<tr>") nil [36931 38245])
-            ("org-html-table-row-close-tag" variable (:default-value "</tr>") nil [38247 38679])
-            ("org-html-table-align-individual-fields" variable (:default-value t) nil [38681 39006])
-            ("org-html-table-use-header-tags-for-first-column" variable nil nil [39008 39224])
-            ("org-html-table-caption-above" variable (:default-value t) nil [39226 39415])
-            ("org-html-tag-class-prefix" variable nil nil [39428 39810])
-            ("org-html-extension" variable (:default-value "html") nil [39838 39960])
-            ("org-html-xml-declaration" variable (:default-value (quote (("html" . "<?xml version=\"1.0\" encoding=\"%s\"?>") ("php" . "<?php echo \"<?xml version=\\\"1.0\\\" encoding=\\\"%s\\\" ?>\"; ?>")))) nil [39962 40579])
-            ("org-html-coding-system" variable (:default-value (quote utf-8)) nil [40581 40790])
-            ("org-html-doctype" variable (:default-value "xhtml-strict") nil [40792 41196])
-            ("org-html-html5-fancy" variable nil nil [41198 41701])
-            ("org-html-container-element" variable (:default-value "div") nil [41703 42083])
-            ("org-html-divs" variable (:default-value (quote ((preamble "div" "preamble") (content "div" "content") (postamble "div" "postamble")))) nil [42085 42981])
-            ("org-html-checkbox-types" variable
-               (:constant-flag t
-                :default-value (quote ((unicode (on . "&#x2611;") (off . "&#x2610;") (trans . "&#x2610;")) (ascii (on . "<code>[X]</code>") (off . "<code>[&#xa0;]</code>") (trans . "<code>[-]</code>")) (html (on . "<input type='checkbox' checked='checked' />") (off . "<input type='checkbox' />") (trans . "<input type='checkbox' />")))))
-                nil [42983 43742])
-            ("org-html-checkbox-type" variable (:default-value (quote ascii)) nil [43744 44128])
-            ("org-html-metadata-timestamp-format" variable (:default-value "%Y-%m-%d %a %H:%M") nil [44130 44423])
-            ("org-html-mathjax-options" variable (:default-value (quote ((path "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS_HTML") (scale "100") (align "center") (font "TeX") (linebreaks "false") (autonumber "AMS") (indent "0em") (multlinewidth "85%") (tagindent ".8em") (tagside "right")))) nil [44451 47695])
-            ("org-html-mathjax-template" variable (:default-value "<script type=\"text/x-mathjax-config\">
-    MathJax.Hub.Config({
-        displayAlign: \"%ALIGN\",
-        displayIndent: \"%INDENT\",
-
-        \"HTML-CSS\": { scale: %SCALE,
-                        linebreaks: { automatic: \"%LINEBREAKS\" },
-                        webFont: \"%FONT\"
-                       },
-        SVG: {scale: %SCALE,
-              linebreaks: { automatic: \"%LINEBREAKS\" },
-              font: \"%FONT\"},
-        NativeMML: {scale: %SCALE},
-        TeX: { equationNumbers: {autoNumber: \"%AUTONUMBER\"},
-               MultLineWidth: \"%MULTLINEWIDTH\",
-               TagSide: \"%TAGSIDE\",
-               TagIndent: \"%TAGINDENT\"
-             }
-});
-</script>
-<script type=\"text/javascript\"
-        src=\"%PATH\"></script>") nil [47697 48597])
-            ("org-html-postamble" variable (:default-value (quote auto)) nil [48627 49497])
-            ("org-html-postamble-format" variable (:default-value (quote (("en" "<p class=\"author\">Author: %a (%e)</p>
-<p class=\"date\">Date: %d</p>
-<p class=\"creator\">%c</p>
-<p class=\"validation\">%v</p>")))) nil [49499 50548])
-            ("org-html-validation-link" variable (:default-value "<a href=\"http://validator.w3.org/check?uri=referer\">Validate</a>") nil [50550 50736])
-            ("org-html-creator-string" variable (:default-value (format "<a href=\"https://www.gnu.org/software/emacs/\">Emacs</a> %s (<a href=\"https://orgmode.org\">Org</a> mode %s)" emacs-version (if (fboundp (quote org-version)) (org-version) "unknown version"))) nil [50738 51208])
-            ("org-html-preamble" variable (:default-value t) nil [51237 52000])
-            ("org-html-preamble-format" variable (:default-value (quote (("en" "")))) nil [52002 52987])
-            ("org-html-link-up" variable nil nil [52989 53145])
-            ("org-html-link-home" variable nil nil [53147 53307])
-            ("org-html-link-use-abs-url" variable nil nil [53309 53503])
-            ("org-html-home/up-format" variable (:default-value "<div id=\"org-div-home-and-up\">
- <a accesskey=\"h\" href=\"%s\"> UP </a>
- |
- <a accesskey=\"H\" href=\"%s\"> HOME </a>
-</div>") nil [53505 53953])
-            ("org-html-head-include-scripts" variable (:default-value t) nil [53981 54272])
-            ("org-html-head-include-default-style" variable (:default-value t) nil [54299 54651])
-            ("put" code nil nil [54667 54740])
-            ("org-html-head" variable nil nil [54742 55833])
-            ("put" code nil nil [55849 55899])
-            ("org-html-head-extra" variable nil nil [55901 56211])
-            ("put" code nil nil [56227 56283])
-            ("org-html-viewport" variable (:default-value (quote ((width "device-width") (initial-scale "1") (minimum-scale "") (maximum-scale "") (user-scalable "")))) nil [56312 57917])
-            ("org-html-klipsify-src" variable nil nil [57961 58151])
-            ("org-html-klipse-css" variable (:default-value "https://storage.googleapis.com/app.klipse.tech/css/codemirror.css") nil [58153 58391])
-            ("org-html-klipse-js" variable (:default-value "https://storage.googleapis.com/app.klipse.tech/plugin_prod/js/klipse_plugin.min.js") nil [58393 58596])
-            ("org-html-klipse-selection-script" variable (:default-value "window.klipse_settings = {selector_eval_html: '.src-html',
-                             selector_eval_js: '.src-js',
-                             selector_eval_python_client: '.src-python',
-                             selector_eval_scheme: '.src-scheme',
-                             selector: '.src-clojure',
-                             selector_eval_ruby: '.src-ruby'};") nil [58598 59139])
-            ("org-html-todo-kwd-class-prefix" variable nil nil [59154 59554])
-            ("org-html-xhtml-p" function (:arguments ("info")) nil [59581 59701])
-            ("org-html-html5-p" function (:arguments ("info")) nil [59703 59842])
-            ("org-html--html5-fancy-p" function (:arguments ("info")) nil [59844 60074])
-            ("org-html-close-tag" function (:arguments ("tag" "attr" "info")) nil [60076 60351])
-            ("org-html-doctype" function (:arguments ("info")) nil [60353 60717])
-            ("org-html--make-attribute-string" function (:arguments ("attributes")) nil [60719 61391])
-            ("org-html--wrap-image" function (:arguments ("contents" "info" "caption" "label")) nil [61393 62161])
-            ("org-html--format-image" function (:arguments ("source" "attributes" "info")) nil [62163 62900])
-            ("org-html--svg-image" function (:arguments ("source" "attributes" "info")) nil [62902 63948])
-            ("org-html--textarea-block" function (:arguments ("element")) nil [63950 64383])
-            ("org-html--has-caption-p" function (:arguments ("element" "_info")) nil [64385 64724])
-            ("org-html-htmlize-region-for-paste" function (:arguments ("beg" "end")) nil [64738 65330])
-            ("org-html-htmlize-generate-css" function (:user-visible-flag t) nil [65347 66833])
-            ("org-html--make-string" function (:arguments ("n" "string")) nil [66835 66992])
-            ("org-html-fix-class-name" function (:arguments ("kwd")) nil [66994 67214])
-            ("org-html-footnote-section" function (:arguments ("info")) nil [67216 68162])
-            ("org-html--build-meta-info" function (:arguments ("info")) nil [68180 71133])
-            ("org-html--build-head" function (:arguments ("info")) nil [71135 71915])
-            ("org-html--build-mathjax-config" function (:arguments ("info")) nil [71917 72876])
-            ("org-html-format-spec" function (:arguments ("info")) nil [72878 73840])
-            ("org-html--build-pre/postamble" function (:arguments ("type" "info")) nil [73842 76174])
-            ("org-html-inner-template" function (:arguments ("contents" "info")) nil [76176 76590])
-            ("org-html-template" function (:arguments ("contents" "info")) nil [76592 79577])
-            ("org-html--translate" function (:arguments ("s" "info")) nil [79579 79758])
-            ("org-html--anchor" function (:arguments ("id" "desc" "attributes" "info")) nil [79773 80107])
-            ("org-html--todo" function (:arguments ("todo" "info")) nil [80120 80413])
-            ("org-html--priority" function (:arguments ("priority" "_info")) nil [80430 80679])
-            ("org-html--tags" function (:arguments ("tags" "info")) nil [80692 81072])
-            ("org-html-fontify-code" function (:arguments ("code" "lang")) nil [81089 83310])
-            ("org-html-do-format-code" function (:arguments ("code" "lang" "refs" "retain-labels" "num-start")) nil [83312 84572])
-            ("org-html-format-code" function (:arguments ("element" "info")) nil [84574 85209])
-            ("org-html-toc" function (:arguments ("depth" "info" "scope")) nil [85237 86327])
-            ("org-html--toc-text" function (:arguments ("toc-entries")) nil [86329 87139])
-            ("org-html--format-toc-headline" function (:arguments ("headline" "info")) nil [87141 88415])
-            ("org-html-list-of-listings" function (:arguments ("info")) nil [88417 89682])
-            ("org-html-list-of-tables" function (:arguments ("info")) nil [89684 90931])
-            ("org-html-bold" function (:arguments ("_bold" "contents" "info")) nil [90971 91232])
-            ("org-html-center-block" function (:arguments ("_center-block" "contents" "_info")) nil [91253 91518])
-            ("org-html-clock" function (:arguments ("clock" "_contents" "_info")) nil [91532 92049])
-            ("org-html-code" function (:arguments ("code" "_contents" "info")) nil [92062 92356])
-            ("org-html-drawer" function (:arguments ("drawer" "contents" "info")) nil [92371 92675])
-            ("org-html-dynamic-block" function (:arguments ("_dynamic-block" "contents" "_info")) nil [92697 92941])
-            ("org-html-entity" function (:arguments ("entity" "_contents" "_info")) nil [92956 93176])
-            ("org-html-example-block" function (:arguments ("example-block" "_contents" "info")) nil [93198 93911])
-            ("org-html-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [93934 94233])
-            ("org-html-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [94254 94575])
-            ("org-html-fixed-width" function (:arguments ("fixed-width" "_contents" "_info")) nil [94595 94925])
-            ("org-html-footnote-reference" function (:arguments ("footnote-reference" "_contents" "info")) nil [94952 95763])
-            ("org-html-headline" function (:arguments ("headline" "contents" "info")) nil [95780 99730])
-            ("org-html-format-headline-default-function" function (:arguments ("todo" "_todo-type" "priority" "text" "tags" "info")) nil [99732 100168])
-            ("org-html--container" function (:arguments ("headline" "info")) nil [100170 100374])
-            ("org-html-horizontal-rule" function (:arguments ("_horizontal-rule" "_contents" "info")) nil [100398 100626])
-            ("org-html-inline-src-block" function (:arguments ("inline-src-block" "_contents" "info")) nil [100651 101277])
-            ("org-html-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [101296 102118])
-            ("org-html-format-inlinetask-default-function" function (:arguments ("todo" "todo-type" "priority" "text" "tags" "contents" "info")) nil [102120 102526])
-            ("org-html-italic" function (:arguments ("_italic" "contents" "info")) nil [102541 102815])
-            ("org-html-checkbox" function (:arguments ("checkbox" "info")) nil [102828 103112])
-            ("org-html-format-list-item" function (:arguments ("contents" "type" "checkbox" "info" "term-counter-id" "headline")) nil [103114 104459])
-            ("org-html-item" function (:arguments ("item" "contents" "info")) nil [104461 105019])
-            ("org-html-keyword" function (:arguments ("keyword" "_contents" "info")) nil [105035 105791])
-            ("org-html-format-latex" function (:arguments ("latex-frag" "processing-type" "info")) nil [105817 107274])
-            ("org-html-latex-environment" function (:arguments ("latex-environment" "_contents" "info")) nil [107276 108249])
-            ("org-html-latex-fragment" function (:arguments ("latex-fragment" "_contents" "info")) nil [108272 108996])
-            ("org-html-line-break" function (:arguments ("_line-break" "_contents" "info")) nil [109015 109240])
-            ("org-html-image-link-filter" function (:arguments ("data" "_backend" "info")) nil [109253 109380])
-            ("org-html-inline-image-p" function (:arguments ("link" "info")) nil [109382 110279])
-            ("org-html-standalone-image-predicate" variable nil nil [110281 110325])
-            ("org-html-standalone-image-p" function (:arguments ("element" "info")) nil [110326 111685])
-            ("org-html-link" function (:arguments ("link" "desc" "info")) nil [111687 118839])
-            ("org-html-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [118861 119231])
-            ("org-html-paragraph" function (:arguments ("paragraph" "contents" "info")) nil [119249 121076])
-            ("org-html-plain-list" function (:arguments ("plain-list" "contents" "_info")) nil [121095 121816])
-            ("org-html-convert-special-strings" function (:arguments ("string")) nil [121835 122093])
-            ("org-html-encode-plain-text" function (:arguments ("text")) nil [122095 122388])
-            ("org-html-plain-text" function (:arguments ("text" "info")) nil [122390 123326])
-            ("org-html-planning" function (:arguments ("planning" "_contents" "info")) nil [123342 124137])
-            ("org-html-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [124161 124473])
-            ("org-html-quote-block" function (:arguments ("quote-block" "contents" "_info")) nil [124493 125082])
-            ("org-html-section" function (:arguments ("section" "contents" "info")) nil [125098 126040])
-            ("org-html-radio-target" function (:arguments ("radio-target" "text" "info")) nil [126061 126352])
-            ("org-html-special-block" function (:arguments ("special-block" "contents" "info")) nil [126374 127546])
-            ("org-html-src-block" function (:arguments ("src-block" "_contents" "info")) nil [127564 129242])
-            ("org-html-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [129268 129580])
-            ("org-html-strike-through" function (:arguments ("_strike-through" "contents" "info")) nil [129603 129924])
-            ("org-html-subscript" function (:arguments ("_subscript" "contents" "_info")) nil [129942 130172])
-            ("org-html-superscript" function (:arguments ("_superscript" "contents" "_info")) nil [130192 130428])
-            ("org-html-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [130447 131840])
-            ("org-html-table-row" function (:arguments ("table-row" "contents" "info")) nil [131858 133763])
-            ("org-html-table-first-row-data-cells" function (:arguments ("table" "info")) nil [133777 134259])
-            ("org-html-table--table.el-table" function (:arguments ("table" "_info")) nil [134261 134865])
-            ("org-html-table" function (:arguments ("table" "contents" "info")) nil [134867 137002])
-            ("org-html-target" function (:arguments ("target" "_contents" "info")) nil [137017 137273])
-            ("org-html-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [137291 137688])
-            ("org-html-underline" function (:arguments ("_underline" "contents" "info")) nil [137706 137999])
-            ("org-html-verbatim" function (:arguments ("verbatim" "_contents" "info")) nil [138016 138330])
-            ("org-html-verse-block" function (:arguments ("_verse-block" "contents" "info")) nil [138350 139057])
-            ("org-html-final-function" function (:arguments ("contents" "_backend" "info")) nil [139083 139402])
-            ("org-html-export-as-html" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [139445 140641])
-            ("org-html-convert-region-to-html" function (:user-visible-flag t) nil [140658 140970])
-            ("org-html-export-to-html" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [140987 142250])
-            ("org-html-publish-to-html" function (:arguments ("plist" "filename" "pub-dir")) nil [142267 142697])
-            ("ox-html" package nil nil [142700 142718]))          
-      :file "ox-html.el"
-      :pointmax 142820
-      :fsize 142819
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1126 1143])
-            ("org" include nil nil [1144 1158])
-            ("declare-function" code nil nil [1160 1220])
-            ("declare-function" code nil nil [1221 1291])
-            ("declare-function" code nil nil [1292 1364])
-            ("declare-function" code nil nil [1365 1424])
-            ("declare-function" code nil nil [1425 1479])
-            ("org-frame-title-format-backup" variable (:default-value frame-title-format) nil [1481 1538])
-            ("org-time-stamp-formats" variable nil nil [1539 1570])
-            ("org-clock" customgroup (:user-visible-flag t) nil [1573 1697])
-            ("org-clock-into-drawer" variable (:default-value t) nil [1699 2639])
-            ("org-clock-into-drawer" function nil nil [2641 3346])
-            ("org-clock-out-when-done" variable (:default-value t) nil [3348 3911])
-            ("org-clock-rounding-minutes" variable nil nil [3913 4657])
-            ("org-clock-out-remove-zero-time-clocks" variable nil nil [4659 4822])
-            ("org-clock-in-switch-to-state" variable nil nil [4824 5276])
-            ("org-clock-out-switch-to-state" variable nil nil [5278 5732])
-            ("org-clock-history-length" variable (:default-value 5) nil [5734 5859])
-            ("org-clock-goto-may-find-recent-task" variable (:default-value t) nil [5861 6024])
-            ("org-clock-heading-function" variable nil nil [6026 6334])
-            ("org-clock-string-limit" variable nil nil [6336 6482])
-            ("org-clock-in-resume" variable nil nil [6484 6740])
-            ("org-clock-persist" variable nil nil [6742 7555])
-            ("org-clock-persist-file" variable (:default-value (convert-standard-filename (concat user-emacs-directory "org-clock-save.el"))) nil [7557 7744])
-            ("org-clock-persist-query-save" variable nil nil [7746 7890])
-            ("org-clock-persist-query-resume" variable (:default-value t) nil [7892 8041])
-            ("org-clock-sound" variable nil nil [8043 8378])
-            ("org-clock-mode-line-total" variable (:default-value (quote auto)) nil [8380 9125])
-            ("defvaralias" code nil nil [9127 9192])
-            ("org-clock-task-overrun-text" variable nil nil [9193 9699])
-            ("org-show-notification-handler" variable nil nil [9701 9988])
-            ("org-clocktable" customgroup (:user-visible-flag t) nil [9990 10116])
-            ("org-clocktable-defaults" variable (:default-value (list :maxlevel 2 :lang (or (bound-and-true-p org-export-default-language) "en") :scope (quote file) :block nil :wstart 1 :mstart 1 :tstart nil :tend nil :step nil :stepskip0 nil :fileskip0 nil :tags nil :emphasize nil :link nil :narrow (quote 40!) :indent t :formula nil :timestamp nil :level nil :tcolumns nil :formatter nil)) nil [10118 10626])
-            ("org-clock-clocktable-formatter" variable (:default-value (quote org-clocktable-write-default)) nil [10628 10868])
-            ("org-clock-clocktable-language-setup" variable (:default-value (quote (("en" "File" "L" "Timestamp" "Headline" "Time" "ALL" "Total time" "File time" "Clock summary at") ("es" "Archivo" "N" "Fecha y hora" "Tarea" "Tiempo" "TODO" "Tiempo total" "Tiempo archivo" "Clock summary at") ("fr" "Fichier" "N" "Horodatage" "En-tête" "Durée" "TOUT" "Durée totale" "Durée fichier" "Horodatage sommaire à") ("nl" "Bestand" "N" "Tijdstip" "Hoofding" "Duur" "ALLES" "Totale duur" "Bestandstijd" "Clock summary at") ("de" "Datei" "E" "Zeitstempel" "Kopfzeile" "Dauer" "GESAMT" "Gesamtdauer" "Dateizeit" "Erstellt am")))) nil [10931 11686])
-            ("org-clock-clocktable-default-properties" variable (:default-value (quote (:maxlevel 2 :scope file))) nil [11688 11939])
-            ("org-clock-idle-time" variable nil nil [11941 12157])
-            ("org-clock-auto-clock-resolution" variable (:default-value (quote when-no-clock-is-running)) nil [12159 12457])
-            ("org-clock-report-include-clocking-task" variable nil nil [12459 12643])
-            ("org-clock-resolve-expert" variable nil nil [12645 12813])
-            ("org-clock-continuously" variable nil nil [12815 12982])
-            ("org-clock-total-time-cell-format" variable (:default-value "*%s*") nil [12984 13133])
-            ("org-clock-file-time-cell-format" variable (:default-value "*%s*") nil [13135 13282])
-            ("org-clock-clocked-in-display" variable (:default-value (quote mode-line)) nil [13284 13844])
-            ("org-clock-frame-title-format" variable (:default-value (quote (t org-mode-line-string))) nil [13846 14318])
-            ("org-clock-x11idle-program-name" variable (:default-value "x11idle") nil [14320 14693])
-            ("org-clock-goto-before-context" variable (:default-value 2) nil [14695 14894])
-            ("org-clock-display-default-range" variable (:default-value (quote thisyear)) nil [14896 15435])
-            ("org-clock-in-prepare-hook" variable nil nil [15437 15657])
-            ("org-clock-in-hook" variable nil nil [15658 15726])
-            ("org-clock-out-hook" variable nil nil [15727 15804])
-            ("org-clock-cancel-hook" variable nil nil [15806 15887])
-            ("org-clock-goto-hook" variable nil nil [15888 15980])
-            ("org-clock-has-been-used" variable nil nil [15981 16079])
-            ("org-clock-stored-history" variable nil nil [16081 16167])
-            ("org-clock-stored-resume-clock" variable nil nil [16168 16257])
-            ("org-mode-line-string" variable nil nil [16299 16331])
-            ("put" code nil nil [16332 16383])
-            ("org-clock-mode-line-timer" variable nil nil [16385 16423])
-            ("org-clock-idle-timer" variable nil nil [16424 16457])
-            ("org-clock-heading" variable nil nil [16458 16484])
-            ("org-clock-start-time" variable nil nil [16505 16537])
-            ("org-clock-leftover-time" variable nil nil [16539 16650])
-            ("org-clock-effort" variable nil nil [16652 16732])
-            ("org-clock-total-time" variable nil nil [16734 16896])
-            ("org-clock-history" variable nil nil [16898 16981])
-            ("org-clock-default-task" variable (:default-value (make-marker)) nil [16983 17177])
-            ("org-clock-interrupted-task" variable (:default-value (make-marker)) nil [17179 17308])
-            ("org-clock-mode-line-map" variable (:default-value (make-sparse-keymap)) nil [17310 17363])
-            ("define-key" code nil nil [17364 17436])
-            ("define-key" code nil nil [17437 17509])
-            ("org-clock--translate" function (:arguments ("s" "language")) nil [17511 17926])
-            ("org-clock--mode-line-heading" function nil nil [17928 18284])
-            ("org-clock-menu" function nil nil [18286 18603])
-            ("org-clock-history-push" function (:arguments ("pos" "buffer")) nil [18605 19334])
-            ("org-clock-save-markers-for-cut-and-paste" function (:arguments ("beg" "end")) nil [19336 19758])
-            ("org-clock-drawer-name" function nil nil [19760 20064])
-            ("org-clocking-buffer" function nil nil [20066 20206])
-            ("org-clocking-p" function nil nil [20208 20310])
-            ("org-clock-before-select-task-hook" variable nil nil [20312 20424])
-            ("org-clock-select-task" function (:arguments ("prompt")) nil [20426 22487])
-            ("org-clock-insert-selection-line" function (:arguments ("i" "marker")) nil [22489 23294])
-            ("org-clock-task-overrun" variable nil nil [23296 23403])
-            ("org-clock-update-period" variable (:default-value 60) nil [23404 23501])
-            ("org-clock-get-clock-string" function nil nil [23503 24467])
-            ("org-clock-get-last-clock-out-time" function nil nil [24469 24792])
-            ("org-clock-update-mode-line" function (:arguments ("refresh")) nil [24794 25928])
-            ("org-clock-get-clocked-time" function nil nil [25930 26275])
-            ("org-clock-modify-effort-estimate" function
-               (:user-visible-flag t
-                :arguments ("value"))
-                nil [26277 27845])
-            ("org-clock-notification-was-shown" variable nil nil [27847 27941])
-            ("org-clock-notify-once-if-expired" function nil nil [27943 28706])
-            ("org-notify" function (:arguments ("notification" "play-sound")) nil [28708 28957])
-            ("org-show-notification" function (:arguments ("notification")) nil [28959 29824])
-            ("org-clock-play-sound" function (:arguments ("clock-sound")) nil [29826 30483])
-            ("org-clock-mode-line-entry" variable nil nil [30485 30582])
-            ("org-find-open-clocks" function (:arguments ("file")) nil [30584 31064])
-            ("org-is-active-clock" function (:arguments ("clock")) nil [31066 31227])
-            ("org-with-clock-position" function (:arguments ("clock" "forms")) nil [31229 31495])
-            ("def-edebug-spec" code nil nil [31496 31549])
-            ("put" code nil nil [31550 31604])
-            ("org-with-clock" function (:arguments ("clock" "forms")) nil [31606 32084])
-            ("def-edebug-spec" code nil nil [32085 32129])
-            ("put" code nil nil [32130 32175])
-            ("org-clock-clock-in" function (:arguments ("clock" "resume" "start-time")) nil [32177 32477])
-            ("org-clock-clock-out" function (:arguments ("clock" "fail-quietly" "at-time")) nil [32479 32852])
-            ("org-clock-clock-cancel" function (:arguments ("clock")) nil [32854 33149])
-            ("org-clock-clocking-in" variable nil nil [33151 33185])
-            ("org-clock-resolving-clocks" variable nil nil [33186 33225])
-            ("org-clock-resolving-clocks-due-to-idleness" variable nil nil [33226 33281])
-            ("org-clock-resolve-clock" function (:arguments ("clock" "resolve-to" "clock-out-time" "close-p" "restart-p" "fail-quietly")) nil [33283 34457])
-            ("org-clock-jump-to-current-clock" function (:arguments ("effective-clock")) nil [34459 35392])
-            ("org-clock-resolve" function (:arguments ("clock" "prompt-fn" "last-valid" "fail-quietly")) nil [35394 39413])
-            ("org-resolve-clocks" function
-               (:user-visible-flag t
-                :arguments ("only-dangling-p" "prompt-fn" "last-valid"))
-                nil [39430 40280])
-            ("org-emacs-idle-seconds" function nil nil [40282 40479])
-            ("org-mac-idle-seconds" function nil nil [40481 40704])
-            ("org-x11idle-exists-p" variable (:default-value (and (eq window-system (quote x)) (eq 0 (call-process-shell-command (format "command -v %s" org-clock-x11idle-program-name))) (eq 0 (call-process-shell-command org-clock-x11idle-program-name)))) nil [40706 41112])
-            ("org-x11-idle-seconds" function nil nil [41114 41281])
-            ("org-user-idle-seconds" function nil nil [41283 41605])
-            ("org-clock-user-idle-seconds" variable nil nil [41607 41643])
-            ("org-resolve-clocks-if-idle" function nil nil [41645 42564])
-            ("org-clock-current-task" variable nil nil [42566 42630])
-            ("org-clock-out-time" variable nil nil [42631 42662])
-            ("org--msg-extra" variable nil nil [42702 42725])
-            ("org-clock-in" function
-               (:user-visible-flag t
-                :arguments ("select" "start-time"))
-                nil [42742 49959])
-            ("org-clock-in-last" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [49976 51450])
-            ("org-clock-mark-default-task" function (:user-visible-flag t) nil [51452 51641])
-            ("org-clock-get-sum-start" function nil nil [51643 53023])
-            ("org-clock-find-position" function (:arguments ("find-unclosed")) nil [53025 56513])
-            ("org-clock-out" function
-               (:user-visible-flag t
-                :arguments ("switch-to-state" "fail-quietly" "at-time"))
-                nil [56530 60189])
-            ("add-hook" code nil nil [60191 60258])
-            ("org-clock-remove-empty-clock-drawer" function nil nil [60260 60737])
-            ("org-clock-timestamps-up" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [60739 60939])
-            ("org-clock-timestamps-down" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [60941 61145])
-            ("org-clock-timestamps-change" function (:arguments ("updown" "n")) nil [61147 62496])
-            ("org-clock-cancel" function (:user-visible-flag t) nil [62513 63594])
-            ("org-clock-goto" function
-               (:user-visible-flag t
-                :arguments ("select"))
-                nil [63611 64634])
-            ("defvar-local" code nil nil [64636 64758])
-            ("org-clock-sum-today" function (:arguments ("headline-filter")) nil [64775 65018])
-            ("org-clock-sum-custom" function (:arguments ("headline-filter" "range" "propname")) nil [65020 65516])
-            ("org-clock-sum" function (:arguments ("tstart" "tend" "headline-filter" "propname")) nil [65533 69070])
-            ("org-clock-sum-current-item" function (:arguments ("tstart")) nil [69072 69312])
-            ("org-clock-display" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [69329 71379])
-            ("defvar-local" code nil nil [71381 71418])
-            ("org-clock-put-overlay" function (:arguments ("time")) nil [71420 72284])
-            ("org-clock-remove-overlays" function
-               (:user-visible-flag t
-                :arguments ("_beg" "_end" "noremove"))
-                nil [72301 72757])
-            ("org-state" variable nil nil [72759 72777])
-            ("org-clock-out-if-current" function nil nil [72819 73773])
-            ("add-hook" code nil nil [73775 73848])
-            ("org-clock-get-clocktable" function (:arguments ("props")) nil [73865 74567])
-            ("org-clock-report" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [74584 75552])
-            ("org-day-of-week" function (:arguments ("day" "month" "year")) nil [75554 75738])
-            ("org-quarter-to-date" function (:arguments ("quarter" "year")) nil [75740 76904])
-            ("org-clock-special-range" function (:arguments ("key" "time" "as-strings" "wstart" "mstart")) nil [76906 83104])
-            ("org-count-quarter" function (:arguments ("n")) nil [83106 83220])
-            ("org-clocktable-shift" function (:arguments ("dir" "n")) nil [83237 86529])
-            ("org-dblock-write:clocktable" function (:arguments ("params")) nil [86546 89309])
-            ("org-clocktable-write-default" function (:arguments ("ipos" "tables" "params")) nil [89311 97709])
-            ("org-clocktable-indent-string" function (:arguments ("level")) nil [97711 97943])
-            ("org-clocktable-steps" function (:arguments ("params")) nil [97945 100286])
-            ("org-clock-get-table-data" function (:arguments ("file" "params")) nil [100288 104559])
-            ("org-clock-loaded" variable nil nil [104594 104654])
-            ("org-clock-update-time-maybe" function (:user-visible-flag t) nil [104671 105954])
-            ("org-clock-save" function nil nil [105956 107480])
-            ("org-clock-load" function nil nil [107482 108619])
-            ("org-defkey" code nil nil [108643 108717])
-            ("org-clock" package nil nil [108719 108739]))          
-      :file "org-clock.el"
-      :pointmax 108860
-      :fsize 108865
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [1716 1734])
-            ("declare-function" code nil nil [1736 1793])
-            ("org-babel-table-truncate-at-newline" function (:arguments ("string")) nil [1795 2171])
-            ("org-sbe" function (:arguments ("source-block" "variables")) nil [2173 5329])
-            ("ob-table" package nil nil [5331 5350]))          
-      :file "ob-table.el"
-      :pointmax 5380
-      :fsize 5379
-      :lastmodtime '(23537 23332 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob" include nil nil [1016 1029])
-            ("org-babel-header-args:emacs-lisp" variable
-               (:constant-flag t
-                :default-value (quote ((lexical . :any))))
-                nil [1031 1136])
-            ("org-babel-default-header-args:emacs-lisp" variable (:default-value (quote ((:lexical . "no")))) nil [1138 1476])
-            ("org-babel-expand-body:emacs-lisp" function (:arguments ("body" "params")) nil [1478 1883])
-            ("org-babel-execute:emacs-lisp" function (:arguments ("body" "params")) nil [1885 3079])
-            ("org-babel-make-language-alias" code nil nil [3081 3133])
-            ("ob-emacs-lisp" package nil nil [3135 3159]))          
-      :file "ob-emacs-lisp.el"
-      :pointmax 3194
-      :fsize 3193
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1450 1467])
-            ("org" include nil nil [1468 1482])
-            ("declare-function" code nil nil [1484 1540])
-            ("declare-function" code nil nil [1541 1604])
-            ("declare-function" code nil nil [1605 1675])
-            ("declare-function" code nil nil [1676 1742])
-            ("declare-function" code nil nil [1743 1832])
-            ("declare-function" code nil nil [1833 1961])
-            ("declare-function" code nil nil [1962 2060])
-            ("declare-function" code nil nil [2061 2133])
-            ("declare-function" code nil nil [2134 2193])
-            ("declare-function" code nil nil [2195 2259])
-            ("declare-function" code nil nil [2260 2332])
-            ("declare-function" code nil nil [2333 2415])
-            ("declare-function" code nil nil [2416 2478])
-            ("declare-function" code nil nil [2479 2532])
-            ("declare-function" code nil nil [2533 2626])
-            ("declare-function" code nil nil [2627 2684])
-            ("declare-function" code nil nil [2685 2754])
-            ("declare-function" code nil nil [2755 2829])
-            ("declare-function" code nil nil [2831 2903])
-            ("constants-unit-system" variable nil nil [2905 2935])
-            ("org-element-use-cache" variable nil nil [2936 2966])
-            ("org-export-filters-alist" variable nil nil [2967 3000])
-            ("org-table-follow-field-mode" variable nil nil [3001 3037])
-            ("orgtbl-mode" variable nil nil [3038 3058])
-            ("orgtbl-mode-menu" variable nil nil [3075 3100])
-            ("sort-fold-case" variable nil nil [3144 3167])
-            ("orgtbl-after-send-table-hook" variable nil nil [3169 3438])
-            ("org-table-TBLFM-begin-regexp" variable (:default-value "^[ 	]*|.*
-[ 	]*#\\+TBLFM: ") nil [3440 3509])
-            ("orgtbl-optimized" variable (:default-value t) nil [3511 4034])
-            ("orgtbl-radio-table-templates" variable (:default-value (quote ((latex-mode "% BEGIN RECEIVE ORGTBL %n
-% END RECEIVE ORGTBL %n
-\\begin{comment}
-#+ORGTBL: SEND %n orgtbl-to-latex :splice nil :skip 0
-| | |
-\\end{comment}
-") (texinfo-mode "@c BEGIN RECEIVE ORGTBL %n
-@c END RECEIVE ORGTBL %n
-@ignore
-#+ORGTBL: SEND %n orgtbl-to-html :splice nil :skip 0
-| | |
-@end ignore
-") (html-mode "<!-- BEGIN RECEIVE ORGTBL %n -->
-<!-- END RECEIVE ORGTBL %n -->
-<!--
-#+ORGTBL: SEND %n orgtbl-to-html :splice nil :skip 0
-| | |
--->
-") (org-mode "#+ BEGIN RECEIVE ORGTBL %n
-#+ END RECEIVE ORGTBL %n
-
-#+ORGTBL: SEND %n orgtbl-to-orgtbl :splice nil :skip 0
-| | |
-")))) nil [4036 5821])
-            ("org-table-settings" customgroup (:user-visible-flag t) nil [5823 5941])
-            ("org-table-default-size" variable (:default-value "5x2") nil [5943 6091])
-            ("org-table-number-regexp" variable (:default-value "^\\([<>]?[-+^.0-9]*[0-9][-+^.0-9eEdDx()%:]*\\|[<>]?[-+]?0[xX][0-9a-fA-F.]+\\|[<>]?[-+]?[0-9]+#[0-9a-zA-Z.]+\\|nan\\|[-+u]?inf\\)$") nil [6093 7703])
-            ("org-table-number-fraction" variable (:default-value 0.5) nil [7705 8034])
-            ("org-table-editing" customgroup (:user-visible-flag t) nil [8036 8166])
-            ("org-table-automatic-realign" variable (:default-value t) nil [8168 8425])
-            ("org-table-auto-blank-field" variable (:default-value t) nil [8427 8685])
-            ("org-table-exit-follow-field-mode-when-leaving-table" variable (:default-value t) nil [8687 9150])
-            ("org-table-fix-formulas-confirm" variable nil nil [9152 9445])
-            ("put" code nil nil [9446 9564])
-            ("org-table-tab-jumps-over-hlines" variable (:default-value t) nil [9566 9957])
-            ("org-table-calculation" customgroup (:user-visible-flag t) nil [9959 10089])
-            ("org-table-use-standard-references" variable (:default-value (quote from)) nil [10091 10603])
-            ("org-table-copy-increment" variable (:default-value t) nil [10605 11018])
-            ("org-calc-default-modes" variable (:default-value (quote (calc-internal-prec 12 calc-float-format (float 8) calc-angle-mode deg calc-prefer-frac nil calc-symbolic-mode nil calc-date-format (YYYY "-" MM "-" DD " " Www (" " hh ":" mm)) calc-display-working-message t))) nil [11020 11663])
-            ("org-table-duration-custom-format" variable (:default-value (quote hours)) nil [11665 12364])
-            ("org-table-duration-hour-zero-padding" variable (:default-value t) nil [12366 12656])
-            ("org-table-formula-field-format" variable (:default-value "%s") nil [12658 12999])
-            ("org-table-formula-evaluate-inline" variable (:default-value t) nil [13001 13536])
-            ("org-table-formula-use-constants" variable (:default-value t) nil [13538 13879])
-            ("org-table-formula-constants" variable nil nil [13881 14526])
-            ("org-table-allow-automatic-line-recalculation" variable (:default-value t) nil [14528 14828])
-            ("org-table-relative-ref-may-cross-hline" variable (:default-value t) nil [14830 15595])
-            ("org-table-formula-create-columns" variable nil nil [15597 16330])
-            ("org-table-import-export" customgroup (:user-visible-flag t) nil [16332 16483])
-            ("org-table-export-default-format" variable (:default-value "orgtbl-to-tsv") nil [16485 16852])
-            ("org-table-convert-region-max-lines" variable (:default-value 999) nil [16854 17175])
-            ("org-table-auto-recalculate-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*| *# *\\(|\\|$\\)")
-                nil [17177 17311])
-            ("org-table-recalculate-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*| *[#*] *\\(|\\|$\\)")
-                nil [17313 17435])
-            ("org-table-calculate-mark-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*| *[!$^_#*] *\\(|\\|$\\)")
-                nil [17437 17564])
-            ("org-table-border-regexp" variable
-               (:constant-flag t
-                :default-value "^[ 	]*[^| 	]")
-                nil [17566 17668])
-            ("org-table-last-highlighted-reference" variable nil nil [17670 17719])
-            ("org-table-formula-history" variable nil nil [17721 17759])
-            ("org-table-column-names" variable nil nil [17761 17907])
-            ("org-table-column-name-regexp" variable nil nil [17909 18063])
-            ("org-table-local-parameters" variable nil nil [18065 18218])
-            ("org-table-named-field-locations" variable nil nil [18220 18578])
-            ("org-table-current-line-types" variable nil nil [18580 18714])
-            ("org-table-current-begin-pos" variable nil nil [18716 18858])
-            ("org-table-current-ncol" variable nil nil [18860 18990])
-            ("org-table-dlines" variable nil nil [18992 19194])
-            ("org-table-hlines" variable nil nil [19196 19394])
-            ("org-table-range-regexp" variable
-               (:constant-flag t
-                :default-value "@\\([-+]?I*[-+]?[0-9]*\\)?\\(\\$[-+]?[0-9]+\\)?\\(\\.\\.@?\\([-+]?I*[-+]?[0-9]*\\)?\\(\\$[-+]?[0-9]+\\)?\\)?")
-                nil [19396 19689])
-            ("org-table-range-regexp2" variable
-               (:constant-flag t
-                :default-value (concat "\\(" "@[-0-9I$&]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\|" "\\$[a-zA-Z0-9]+" "\\)" "\\.\\." "\\(" "@?[-0-9I$&]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\|" "\\$[a-zA-Z0-9]+" "\\)"))
-                nil [19691 19980])
-            ("org-table-translate-regexp" variable
-               (:constant-flag t
-                :default-value (concat "\\(" "@[-0-9I$]+" "\\|" "[a-zA-Z]\\{1,2\\}\\([0-9]+\\|&\\)" "\\)"))
-                nil [19982 20166])
-            ("org-table-save-field" function (:arguments ("body")) nil [20168 20600])
-            ("org-table-create-with-table.el" function (:user-visible-flag t) nil [20617 21109])
-            ("org-table-create-or-convert-from-region" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [21126 21676])
-            ("org-table-create" function
-               (:user-visible-flag t
-                :arguments ("size"))
-                nil [21693 22705])
-            ("org-table-convert-region" function
-               (:user-visible-flag t
-                :arguments ("beg0" "end0" "separator"))
-                nil [22722 25472])
-            ("org-table-import" function
-               (:user-visible-flag t
-                :arguments ("file" "separator"))
-                nil [25489 26412])
-            ("org-table-export" function
-               (:user-visible-flag t
-                :arguments ("file" "format"))
-                nil [26430 29323])
-            ("org-table-aligned-begin-marker" variable (:default-value (make-marker)) nil [29325 29506])
-            ("org-table-aligned-end-marker" variable (:default-value (make-marker)) nil [29507 29680])
-            ("org-table-last-alignment" variable nil nil [29681 29861])
-            ("org-table-last-column-widths" variable nil nil [29862 30022])
-            ("defvar-local" code nil nil [30023 30160])
-            ("defvar-local" code nil nil [30161 30262])
-            ("org-last-recalc-line" variable nil nil [30264 30297])
-            ("org-table-do-narrow" variable (:default-value t) nil [30298 30328])
-            ("org-narrow-column-arrow" variable
-               (:constant-flag t
-                :default-value "=>")
-                nil [30353 30448])
-            ("org-table-align" function (:user-visible-flag t) nil [30465 38680])
-            ("org-table-begin" function (:arguments ("table-type")) nil [38697 39155])
-            ("org-table-end" function (:arguments ("table-type")) nil [39172 40030])
-            ("org-table-justify-field-maybe" function (:arguments ("new")) nil [40047 41631])
-            ("org-table-next-field" function (:user-visible-flag t) nil [41648 42549])
-            ("org-table-previous-field" function (:user-visible-flag t) nil [42566 43291])
-            ("org-table-beginning-of-field" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [43293 43909])
-            ("org-table-end-of-field" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [43911 44497])
-            ("org-table-next-row" function (:user-visible-flag t) nil [44514 45145])
-            ("org-table-copy-down" function
-               (:user-visible-flag t
-                :arguments ("n"))
-                nil [45162 48419])
-            ("org-table-check-inside-data-field" function (:arguments ("noerror")) nil [48421 48883])
-            ("org-table-clip" variable nil nil [48885 48945])
-            ("org-table-get" function (:arguments ("line" "column")) nil [48947 49445])
-            ("org-table-put" function (:arguments ("line" "column" "value" "align")) nil [49447 49852])
-            ("org-table-current-line" function nil nil [49854 50176])
-            ("org-table-goto-line" function (:arguments ("N")) nil [50178 50500])
-            ("org-table-blank-field" function (:user-visible-flag t) nil [50517 51106])
-            ("org-table-get-field" function (:arguments ("n" "replace")) nil [51108 51773])
-            ("org-table-field-info" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [51790 53480])
-            ("org-table-current-column" function (:user-visible-flag t) nil [53482 53723])
-            ("org-table-current-dline" function nil nil [53725 54058])
-            ("org-table-goto-column" function
-               (:user-visible-flag t
-                :arguments ("n" "on-delim" "force"))
-                nil [54075 54855])
-            ("org-table-insert-column" function (:user-visible-flag t) nil [54872 55619])
-            ("org-table-find-dataline" function nil nil [55621 56207])
-            ("org-table-line-to-dline" function (:arguments ("line" "above")) nil [56209 56989])
-            ("org-table-delete-column" function (:user-visible-flag t) nil [57006 57967])
-            ("org-table-move-column-right" function (:user-visible-flag t) nil [57984 58098])
-            ("org-table-move-column-left" function (:user-visible-flag t) nil [58114 58228])
-            ("org-table-move-column" function
-               (:user-visible-flag t
-                :arguments ("left"))
-                nil [58245 59769])
-            ("org-table-move-row-down" function (:user-visible-flag t) nil [59786 59888])
-            ("org-table-move-row-up" function (:user-visible-flag t) nil [59904 60002])
-            ("org-table-move-row" function
-               (:user-visible-flag t
-                :arguments ("up"))
-                nil [60019 61407])
-            ("org-table-insert-row" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [61424 62542])
-            ("org-table-insert-hline" function
-               (:user-visible-flag t
-                :arguments ("above"))
-                nil [62559 63509])
-            ("org-table-hline-and-move" function
-               (:user-visible-flag t
-                :arguments ("same-column"))
-                nil [63526 63979])
-            ("org-table-clean-line" function (:arguments ("s")) nil [63981 64509])
-            ("org-table-kill-row" function (:user-visible-flag t) nil [64526 65223])
-            ("org-table-sort-lines" function
-               (:user-visible-flag t
-                :arguments ("with-case" "sorting-type" "getkey-func" "compare-func" "interactive?"))
-                nil [65240 69861])
-            ("org-table-cut-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [69878 70216])
-            ("org-table-copy-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "cut"))
-                nil [70233 71443])
-            ("org-table-paste-rectangle" function (:user-visible-flag t) nil [71460 72447])
-            ("org-table-convert" function (:user-visible-flag t) nil [72464 74227])
-            ("org-table-transpose-table-at-point" function (:user-visible-flag t) nil [74229 75219])
-            ("org-table-wrap-region" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [75236 77817])
-            ("org-field-marker" variable nil nil [77819 77848])
-            ("org-table-edit-field" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [77865 79998])
-            ("org-table-finish-edit-field" function nil nil [80000 80807])
-            ("define-minor-mode" code nil nil [80809 81610])
-            ("org-table-follow-fields-with-editor" function nil nil [81612 82014])
-            ("org-timecnt" variable nil nil [82016 82036])
-            ("org-table-sum" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "nlast"))
-                nil [82084 84215])
-            ("org-table-get-number-for-summing" function (:arguments ("s")) nil [84217 84983])
-            ("org-table-current-field-formula" function (:arguments ("key" "noerror")) nil [84985 85986])
-            ("org-table-get-formula" function (:arguments ("equation" "named")) nil [85988 87897])
-            ("org-table-store-formulas" function (:arguments ("alist" "location")) nil [87899 88720])
-            ("org-table-formula-make-cmp-string" function (:arguments ("a")) nil [88722 89447])
-            ("org-table-formula-less-p" function (:arguments ("a" "b")) nil [89449 89666])
-            ("org-table-get-stored-formulas" function (:arguments ("noerror" "location")) nil [89683 91173])
-            ("org-table-fix-formulas" function (:arguments ("key" "replace" "limit" "delta" "remove")) nil [91175 92628])
-            ("org-table-maybe-eval-formula" function nil nil [92645 93269])
-            ("org-recalc-commands" variable nil nil [93271 93405])
-            ("org-recalc-marks" variable (:default-value (quote ((" " . "Unmarked: no special line, no automatic recalculation") ("#" . "Automatically recalculate this line upon TAB, RET, and C-c C-c in the line") ("*" . "Recalculate only when entire table is recalculated with `C-u C-c *'") ("!" . "Column name definition line.  Reference in formula as $name.") ("$" . "Parameter definition line name=value.  Reference in formula as $name.") ("_" . "Names for values in row below this one.") ("^" . "Names for values in row above this one.")))) nil [93407 93939])
-            ("org-table-rotate-recalc-marks" function
-               (:user-visible-flag t
-                :arguments ("newchar"))
-                nil [93956 96612])
-            ("org-table-analyze" function nil nil [96629 100761])
-            ("org-table-goto-field" function (:arguments ("ref" "create-column-p")) nil [100763 101986])
-            ("org-table-maybe-recalculate-line" function (:user-visible-flag t) nil [102003 102445])
-            ("org-tbl-calc-modes" variable nil nil [102447 102474])
-            ("org-set-calc-mode" function (:arguments ("var" "value")) nil [102524 102956])
-            ("org-table-eval-formula" function
-               (:user-visible-flag t
-                :arguments ("arg" "equation" "suppress-align" "suppress-const" "suppress-store" "suppress-analysis"))
-                nil [102973 113945])
-            ("org-table-put-field-property" function (:arguments ("prop" "value")) nil [113947 114153])
-            ("org-table-get-range" function (:arguments ("desc" "tbeg" "col" "highlight" "corners-only")) nil [114155 117232])
-            ("org-table--descriptor-line" function (:arguments ("desc" "cline")) nil [117234 118572])
-            ("org-table--row-type" function (:arguments ("type" "n" "i" "backwards" "relative" "desc")) nil [118574 119772])
-            ("org-table--error-on-old-row-references" function (:arguments ("s")) nil [119774 119948])
-            ("org-table-make-reference" function (:arguments ("elements" "keep-empty" "numbers" "lispp")) nil [119950 121811])
-            ("org-table-message-once-per-second" function (:arguments ("t1" "args")) nil [121813 122252])
-            ("org-table-recalculate" function
-               (:user-visible-flag t
-                :arguments ("all" "noalign"))
-                nil [122269 128829])
-            ("org-table-iterate" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [128846 129614])
-            ("org-table-recalculate-buffer-tables" function (:user-visible-flag t) nil [129631 130026])
-            ("org-table-iterate-buffer-tables" function (:user-visible-flag t) nil [130043 130746])
-            ("org-table-calc-current-TBLFM" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [130748 131565])
-            ("org-table-TBLFM-begin" function nil nil [131567 131873])
-            ("org-table-expand-lhs-ranges" function (:arguments ("equations")) nil [131875 133237])
-            ("org-table-formula-handle-first/last-rc" function (:arguments ("s")) nil [133239 134504])
-            ("org-table-formula-substitute-names" function (:arguments ("f")) nil [134506 135560])
-            ("org-table-get-constant" function (:arguments ("const")) nil [135562 136063])
-            ("org-table-fedit-map" variable (:default-value (let ((map (make-sparse-keymap))) (org-defkey map "" (quote org-table-fedit-finish)) (org-defkey map "" (quote org-table-fedit-finish)) (org-defkey map "" (quote org-table-fedit-finish)) (org-defkey map "'" (quote org-table-fedit-finish)) (org-defkey map "" (quote org-table-fedit-abort)) (org-defkey map "?" (quote org-table-show-reference)) (org-defkey map [(meta shift up)] (quote org-table-fedit-line-up)) (org-defkey map [(meta shift down)] (quote org-table-fedit-line-down)) (org-defkey map [(shift up)] (quote org-table-fedit-ref-up)) (org-defkey map [(shift down)] (quote org-table-fedit-ref-down)) (org-defkey map [(shift left)] (quote org-table-fedit-ref-left)) (org-defkey map [(shift right)] (quote org-table-fedit-ref-right)) (org-defkey map [(meta up)] (quote org-table-fedit-scroll-down)) (org-defkey map [(meta down)] (quote org-table-fedit-scroll)) (org-defkey map [(meta tab)] (quote lisp-complete-symbol)) (org-defkey map "\211" (quote lisp-complete-symbol)) (org-defkey map [(tab)] (quote org-table-fedit-lisp-indent)) (org-defkey map "	" (quote org-table-fedit-lisp-indent)) (org-defkey map "" (quote org-table-fedit-toggle-ref-type)) (org-defkey map "}" (quote org-table-fedit-toggle-coordinates)) map)) nil [136065 137389])
-            ("easy-menu-define" code nil nil [137391 138554])
-            ("org-pos" variable nil nil [138556 138572])
-            ("org-table--fedit-source" variable nil nil [138573 138654])
-            ("org-table-edit-formulas" function (:user-visible-flag t) nil [138671 141193])
-            ("org-table-fedit-post-command" function nil nil [141195 141417])
-            ("org-table-formula-to-user" function (:arguments ("s")) nil [141419 141609])
-            ("org-table-formula-from-user" function (:arguments ("s")) nil [141611 141796])
-            ("org-table-convert-refs-to-rc" function (:arguments ("s")) nil [141798 142956])
-            ("org-table-convert-refs-to-an" function (:arguments ("s")) nil [142958 143596])
-            ("org-letters-to-number" function (:arguments ("s")) nil [143598 143878])
-            ("org-number-to-letters" function (:arguments ("n")) nil [143880 144136])
-            ("org-table-time-string-to-seconds" function (:arguments ("s")) nil [144138 145263])
-            ("org-table-time-seconds-to-string" function (:arguments ("secs" "output-format")) nil [145265 146139])
-            ("org-table-fedit-convert-buffer" function (:arguments ("function")) nil [146141 146564])
-            ("org-table-fedit-toggle-ref-type" function (:user-visible-flag t) nil [146566 146990])
-            ("org-table-fedit-ref-up" function (:user-visible-flag t) nil [146992 147132])
-            ("org-table-fedit-ref-down" function (:user-visible-flag t) nil [147133 147279])
-            ("org-table-fedit-ref-left" function (:user-visible-flag t) nil [147280 147429])
-            ("org-table-fedit-ref-right" function (:user-visible-flag t) nil [147430 147582])
-            ("org-table-fedit-shift-reference" function (:arguments ("dir")) nil [147584 148299])
-            ("org-rematch-and-replace" function (:arguments ("n" "decr" "hline")) nil [148301 148679])
-            ("org-table-shift-refpart" function (:arguments ("ref" "decr" "hline")) nil [148681 149791])
-            ("org-table-fedit-toggle-coordinates" function (:user-visible-flag t) nil [149793 150089])
-            ("org-table-fedit-finish" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [150091 151377])
-            ("org-table-fedit-abort" function (:user-visible-flag t) nil [151379 151779])
-            ("org-table-fedit-lisp-indent" function (:user-visible-flag t) nil [151781 153082])
-            ("org-show-positions" variable nil nil [153084 153115])
-            ("org-table-show-reference" function
-               (:user-visible-flag t
-                :arguments ("local"))
-                nil [153117 158228])
-            ("org-table-force-dataline" function nil nil [158230 158785])
-            ("org-table-fedit-line-up" function (:user-visible-flag t) nil [158787 158938])
-            ("org-table-fedit-line-down" function (:user-visible-flag t) nil [158940 159091])
-            ("org-table-fedit-move" function (:arguments ("command")) nil [159093 159669])
-            ("org-table-fedit-scroll" function (:arguments ("N")) nil [159671 159816])
-            ("org-table-fedit-scroll-down" function (:arguments ("N")) nil [159818 159910])
-            ("org-table-rectangle-overlays" variable nil nil [159912 159953])
-            ("org-table-add-rectangle-overlay" function (:arguments ("beg" "end" "face")) nil [159955 160181])
-            ("org-table-highlight-rectangle" function (:arguments ("beg" "end" "face")) nil [160183 161574])
-            ("org-table-remove-rectangle-highlight" function (:arguments ("_ignore")) nil [161576 161893])
-            ("defvar-local" code nil nil [161895 162015])
-            ("org-table-overlay-coordinates" function (:user-visible-flag t) nil [162017 163189])
-            ("org-table-toggle-coordinate-overlays" function (:user-visible-flag t) nil [163206 163735])
-            ("org-table-toggle-formula-debugger" function (:user-visible-flag t) nil [163752 164013])
-            ("orgtbl-mode-map" variable (:default-value (make-keymap)) nil [165503 165571])
-            ("org-old-auto-fill-inhibit-regexp" variable nil nil [165573 165660])
-            ("orgtbl-line-start-regexp" variable
-               (:constant-flag t
-                :default-value "[ 	]*\\(|\\|#\\+\\(tblfm\\|orgtbl\\|tblname\\):\\)")
-                nil [165662 165796])
-            ("orgtbl-extra-font-lock-keywords" variable
-               (:constant-flag t
-                :default-value (list (list (concat "^" orgtbl-line-start-regexp ".*") 0 (quote (quote org-table)) (quote prepend))))
-                nil [165798 166009])
-            ("put" code nil nil [166042 166072])
-            ("put" code nil nil [166073 166118])
-            ("define-minor-mode" code nil nil [166135 167967])
-            ("org-table-cleanup-narrow-column-properties" function nil nil [167969 168572])
-            ("orgtbl-make-binding" function (:arguments ("fun" "n" "keys")) nil [168574 169407])
-            ("orgtbl-error" function (:user-visible-flag t) nil [169409 169565])
-            ("orgtbl-setup" function nil nil [169567 176266])
-            ("orgtbl-ctrl-c-ctrl-c" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [176268 177329])
-            ("orgtbl-create-or-convert-from-region" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [177331 177750])
-            ("orgtbl-tab" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [177752 177949])
-            ("orgtbl-ret" function (:user-visible-flag t) nil [177951 178133])
-            ("orgtbl-self-insert-command" function
-               (:user-visible-flag t
-                :arguments ("N"))
-                nil [178135 179826])
-            ("orgtbl-exp-regexp" variable (:default-value "^\\([-+]?[0-9][0-9.]*\\)[eE]\\([-+]?[0-9]+\\)$") nil [179843 179984])
-            ("orgtbl-gather-send-defs" function nil nil [179986 180616])
-            ("orgtbl-send-replace-tbl" function (:arguments ("name" "text")) nil [180618 181376])
-            ("org-table-to-lisp" function (:arguments ("txt")) nil [181393 182049])
-            ("orgtbl-send-table" function
-               (:user-visible-flag t
-                :arguments ("maybe"))
-                nil [182051 183215])
-            ("org-remove-by-index" function (:arguments ("list" "indices" "i0")) nil [183217 183594])
-            ("orgtbl-toggle-comment" function (:user-visible-flag t) nil [183596 184332])
-            ("orgtbl-insert-radio-table" function (:user-visible-flag t) nil [184334 184851])
-            ("orgtbl-to-generic" function (:arguments ("table" "params")) nil [184868 191690])
-            ("org-table--generic-apply" function (:arguments ("value" "name" "with-cons" "args")) nil [191692 192282])
-            ("org-table--to-generic-table" function (:arguments ("params")) nil [192284 192929])
-            ("org-table--to-generic-row" function (:arguments ("params")) nil [192931 196078])
-            ("org-table--to-generic-cell" function (:arguments ("params")) nil [196080 198813])
-            ("orgtbl-to-tsv" function (:arguments ("table" "params")) nil [198830 198996])
-            ("orgtbl-to-csv" function (:arguments ("table" "params")) nil [199013 199280])
-            ("orgtbl-to-latex" function (:arguments ("table" "params")) nil [199297 200325])
-            ("orgtbl-to-html" function (:arguments ("table" "params")) nil [200342 201344])
-            ("orgtbl-to-texinfo" function (:arguments ("table" "params")) nil [201361 202365])
-            ("orgtbl-to-orgtbl" function (:arguments ("table" "params")) nil [202382 203026])
-            ("orgtbl-to-table.el" function (:arguments ("table" "params")) nil [203028 203590])
-            ("orgtbl-to-unicode" function (:arguments ("table" "params")) nil [203592 204589])
-            ("orgtbl-ascii-draw" function (:arguments ("value" "min" "max" "width" "characters")) nil [204822 205942])
-            ("orgtbl-ascii-plot" function
-               (:user-visible-flag t
-                :arguments ("ask"))
-                nil [205959 207385])
-            ("orgtbl-uc-draw-grid" function (:arguments ("value" "min" "max" "width")) nil [207857 208314])
-            ("orgtbl-uc-draw-cont" function (:arguments ("value" "min" "max" "width")) nil [208316 208673])
-            ("org-table-get-remote-range" function (:arguments ("name-or-id" "form")) nil [208675 211031])
-            ("org-table-remote-reference-indirection" function (:arguments ("form")) nil [211033 211859])
-            ("org-define-lookup-function" function (:arguments ("mode")) nil [211861 212998])
-            ("org-define-lookup-function" code nil nil [213000 213034])
-            ("org-define-lookup-function" code nil nil [213035 213068])
-            ("org-define-lookup-function" code nil nil [213069 213101])
-            ("org-table" package nil nil [213103 213123]))          
-      :file "org-table.el"
-      :pointmax 213227
-      :fsize 213226
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1002 1019])
-            ("ox" include nil nil [1020 1033])
-            ("orgtbl-exp-regexp" variable nil nil [1035 1061])
-            ("org-export-define-backend" code nil nil [1087 5204])
-            ("org-export-texinfo" customgroup (:user-visible-flag t) nil [5242 5429])
-            ("org-texinfo-coding-system" variable nil nil [5446 5645])
-            ("org-texinfo-default-class" variable (:default-value "info") nil [5647 5790])
-            ("org-texinfo-classes" variable (:default-value (quote (("info" "@documentencoding AUTO
-@documentlanguage AUTO" ("@chapter %s" "@unnumbered %s" "@appendix %s") ("@section %s" "@unnumberedsec %s" "@appendixsec %s") ("@subsection %s" "@unnumberedsubsec %s" "@appendixsubsec %s") ("@subsubsection %s" "@unnumberedsubsubsec %s" "@appendixsubsubsec %s"))))) nil [5792 7724])
-            ("org-texinfo-format-headline-function" variable (:default-value (quote org-texinfo-format-headline-default-function)) nil [7741 8352])
-            ("org-texinfo-node-description-column" variable (:default-value 32) nil [8380 8647])
-            ("org-texinfo-active-timestamp-format" variable (:default-value "@emph{%s}") nil [8666 8833])
-            ("org-texinfo-inactive-timestamp-format" variable (:default-value "@emph{%s}") nil [8835 9006])
-            ("org-texinfo-diary-timestamp-format" variable (:default-value "@emph{%s}") nil [9008 9173])
-            ("org-texinfo-link-with-unknown-path-format" variable (:default-value "@indicateurl{%s}") nil [9187 9356])
-            ("org-texinfo-tables-verbatim" variable nil nil [9371 9508])
-            ("org-texinfo-table-scientific-notation" variable (:default-value "%s\\,(%s)") nil [9510 9882])
-            ("org-texinfo-table-default-markup" variable (:default-value "@asis") nil [9884 10247])
-            ("org-texinfo-text-markup-alist" variable (:default-value (quote ((bold . "@strong{%s}") (code . code) (italic . "@emph{%s}") (verbatim . samp)))) nil [10267 11172])
-            ("org-texinfo-format-drawer-function" variable (:default-value (lambda (_name contents) contents)) nil [11188 11667])
-            ("org-texinfo-format-inlinetask-function" variable (:default-value (quote org-texinfo-format-inlinetask-default-function)) nil [11687 12307])
-            ("org-texinfo-info-process" variable (:default-value (quote ("makeinfo --no-split %f"))) nil [12327 12945])
-            ("org-texinfo-logfiles-extensions" variable (:default-value (quote ("aux" "toc" "cp" "fn" "ky" "pg" "tp" "vr"))) nil [12947 13248])
-            ("org-texinfo-remove-logfiles" variable (:default-value t) nil [13250 13586])
-            ("org-texinfo-max-toc-depth" variable
-               (:constant-flag t
-                :default-value 4)
-                nil [13603 13831])
-            ("org-texinfo-supported-coding-systems" variable
-               (:constant-flag t
-                :default-value (quote ("US-ASCII" "UTF-8" "ISO-8859-15" "ISO-8859-1" "ISO-8859-2" "koi8-r" "koi8-u")))
-                nil [13833 14212])
-            ("org-texinfo-inline-image-rules" variable
-               (:constant-flag t
-                :default-value (list (cons "file" (regexp-opt (quote ("eps" "pdf" "png" "jpg" "jpeg" "gif" "svg"))))))
-                nil [14214 14402])
-            ("org-texinfo--untabify" function (:arguments ("s" "_backend" "_info")) nil [14430 14581])
-            ("org-texinfo--filter-section-blank-lines" function (:arguments ("headline" "_backend" "_info")) nil [14583 14788])
-            ("org-texinfo--normalize-headlines" function (:arguments ("tree" "_backend" "info")) nil [14790 15599])
-            ("org-texinfo--find-verb-separator" function (:arguments ("s")) nil [15601 15982])
-            ("org-texinfo--text-markup" function (:arguments ("text" "markup" "_info")) nil [15984 16624])
-            ("org-texinfo--get-node" function (:arguments ("datum" "info")) nil [16626 17478])
-            ("org-texinfo--sanitize-node" function (:arguments ("title")) nil [17480 17957])
-            ("org-texinfo--sanitize-title" function (:arguments ("title" "info")) nil [17959 18474])
-            ("org-texinfo--sanitize-content" function (:arguments ("text")) nil [18476 18645])
-            ("org-texinfo--wrap-float" function (:arguments ("value" "info" "type" "label" "caption" "short")) nil [18647 20210])
-            ("org-texinfo-template" function (:arguments ("contents" "info")) nil [20226 25124])
-            ("org-texinfo-bold" function (:arguments ("_bold" "contents" "info")) nil [25165 25388])
-            ("org-texinfo-center-block" function (:arguments ("_center-block" "contents" "_info")) nil [25409 25633])
-            ("org-texinfo-clock" function (:arguments ("clock" "_contents" "info")) nil [25647 26128])
-            ("org-texinfo-code" function (:arguments ("code" "_contents" "info")) nil [26141 26378])
-            ("org-texinfo-drawer" function (:arguments ("drawer" "contents" "info")) nil [26393 26746])
-            ("org-texinfo-dynamic-block" function (:arguments ("_dynamic-block" "contents" "_info")) nil [26768 26994])
-            ("org-texinfo-entity" function (:arguments ("entity" "_contents" "_info")) nil [27009 29000])
-            ("org-texinfo-example-block" function (:arguments ("example-block" "_contents" "info")) nil [29022 29341])
-            ("org-texinfo-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [29361 29691])
-            ("org-texinfo-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [29713 30021])
-            ("org-texinfo-fixed-width" function (:arguments ("fixed-width" "_contents" "_info")) nil [30041 30374])
-            ("org-texinfo-footnote-reference" function (:arguments ("footnote" "_contents" "info")) nil [30401 30754])
-            ("org-texinfo--structuring-command" function (:arguments ("headline" "info")) nil [30771 31948])
-            ("org-texinfo-headline" function (:arguments ("headline" "contents" "info")) nil [31950 33716])
-            ("org-texinfo-format-headline-default-function" function (:arguments ("todo" "_todo-type" "priority" "text" "tags")) nil [33718 34083])
-            ("org-texinfo-inline-src-block" function (:arguments ("inline-src-block" "_contents" "_info")) nil [34108 34441])
-            ("org-texinfo-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [34460 35275])
-            ("org-texinfo-format-inlinetask-default-function" function (:arguments ("todo" "_todo-type" "priority" "title" "tags" "contents")) nil [35277 35728])
-            ("org-texinfo-italic" function (:arguments ("_italic" "contents" "info")) nil [35743 35976])
-            ("org-texinfo-item" function (:arguments ("item" "contents" "info")) nil [35989 36786])
-            ("org-texinfo-keyword" function (:arguments ("keyword" "_contents" "info")) nil [36802 37657])
-            ("org-texinfo-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [37676 37866])
-            ("org-texinfo--@ref" function (:arguments ("datum" "description" "info")) nil [37879 38542])
-            ("org-texinfo-link" function (:arguments ("link" "desc" "info")) nil [38544 40936])
-            ("org-texinfo--inline-image" function (:arguments ("link" "info")) nil [40938 42112])
-            ("org-texinfo-make-menu" function (:arguments ("scope" "info" "master")) nil [42126 43006])
-            ("org-texinfo--build-menu" function (:arguments ("scope" "info" "level")) nil [43008 43795])
-            ("org-texinfo--format-entries" function (:arguments ("entries" "info")) nil [43797 44652])
-            ("org-texinfo--menu-entries" function (:arguments ("scope" "info")) nil [44654 45331])
-            ("org-texinfo-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [45353 45729])
-            ("org-texinfo-paragraph" function (:arguments ("_paragraph" "contents" "_info")) nil [45747 45978])
-            ("org-texinfo-plain-list" function (:arguments ("plain-list" "contents" "info")) nil [45997 46883])
-            ("org-texinfo-plain-text" function (:arguments ("text" "info")) nil [46902 48004])
-            ("org-texinfo-planning" function (:arguments ("planning" "_contents" "info")) nil [48021 49035])
-            ("org-texinfo-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [49059 49370])
-            ("org-texinfo-quote-block" function (:arguments ("quote-block" "contents" "_info")) nil [49390 49800])
-            ("org-texinfo-radio-target" function (:arguments ("radio-target" "text" "info")) nil [49821 50096])
-            ("org-texinfo-section" function (:arguments ("section" "contents" "info")) nil [50112 50499])
-            ("org-texinfo-special-block" function (:arguments ("special-block" "contents" "_info")) nil [50521 50976])
-            ("org-texinfo-src-block" function (:arguments ("src-block" "_contents" "info")) nil [50994 51815])
-            ("org-texinfo-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [51841 52092])
-            ("org-texinfo-strike-through" function (:arguments ("_strike-through" "contents" "info")) nil [52116 52389])
-            ("org-texinfo-subscript" function (:arguments ("_subscript" "contents" "_info")) nil [52407 52640])
-            ("org-texinfo-superscript" function (:arguments ("_superscript" "contents" "_info")) nil [52660 52899])
-            ("org-texinfo-table" function (:arguments ("table" "contents" "info")) nil [52913 53903])
-            ("org-texinfo-table-column-widths" function (:arguments ("table" "info")) nil [53905 54839])
-            ("org-texinfo-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [54858 55483])
-            ("org-texinfo-table-row" function (:arguments ("table-row" "contents" "info")) nil [55501 56117])
-            ("org-texinfo-target" function (:arguments ("target" "_contents" "info")) nil [56132 56360])
-            ("org-texinfo-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [56378 56985])
-            ("org-texinfo-underline" function (:arguments ("_underline" "contents" "info")) nil [57003 57251])
-            ("org-texinfo-verbatim" function (:arguments ("verbatim" "_contents" "info")) nil [57268 57528])
-            ("org-texinfo-verse-block" function (:arguments ("_verse-block" "contents" "_info")) nil [57548 57795])
-            ("org-texinfo-export-to-texinfo" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [57841 59023])
-            ("org-texinfo-export-to-info" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [59040 60364])
-            ("org-texinfo-publish-to-texinfo" function (:arguments ("plist" "filename" "pub-dir")) nil [60381 60717])
-            ("org-texinfo-convert-region-to-texinfo" function (:user-visible-flag t) nil [60734 61061])
-            ("org-texinfo-compile" function (:arguments ("file")) nil [61063 61932])
-            ("ox-texinfo" package nil nil [61935 61956]))          
-      :file "ox-texinfo.el"
-      :pointmax 62061
-      :fsize 62060
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [1678 1696])
-            ("cl-lib" include nil nil [1697 1714])
-            ("declare-function" code nil nil [1716 1784])
-            ("declare-function" code nil nil [1785 1841])
-            ("declare-function" code nil nil [1842 1914])
-            ("declare-function" code nil nil [1915 1974])
-            ("declare-function" code nil nil [1975 2037])
-            ("declare-function" code nil nil [2038 2107])
-            ("declare-function" code nil nil [2108 2160])
-            ("declare-function" code nil nil [2161 2239])
-            ("declare-function" code nil nil [2240 2318])
-            ("declare-function" code nil nil [2319 2368])
-            ("declare-function" code nil nil [2369 2426])
-            ("declare-function" code nil nil [2427 2484])
-            ("org-babel-update-intermediate" variable nil nil [2486 2608])
-            ("org-babel-ref-parse" function (:arguments ("assignment")) nil [2610 3653])
-            ("org-babel-ref-goto-headline-id" function (:arguments ("id")) nil [3655 4051])
-            ("org-babel-ref-headline-body" function nil nil [4053 4271])
-            ("org-babel-library-of-babel" variable nil nil [4273 4308])
-            ("org-babel-ref-resolve" function (:arguments ("ref")) nil [4309 7436])
-            ("org-babel-ref-index-list" function (:arguments ("index" "lis")) nil [7438 9069])
-            ("org-babel-ref-split-args" function (:arguments ("arg-string")) nil [9071 9250])
-            ("ob-ref" package nil nil [9253 9270]))          
-      :file "ob-ref.el"
-      :pointmax 9296
-      :fsize 9295
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [3474 3488])
-            ("sha1" include nil nil [3489 3504])
-            ("declare-function" code nil nil [3506 3622])
-            ("declare-function" code nil nil [3623 3672])
-            ("declare-function" code nil nil [3673 3732])
-            ("declare-function" code nil nil [3733 3792])
-            ("declare-function" code nil nil [3793 3859])
-            ("declare-function" code nil nil [3860 3916])
-            ("declare-function" code nil nil [3918 3975])
-            ("declare-function" code nil nil [3976 4059])
-            ("declare-function" code nil nil [4060 4131])
-            ("org-feed" customgroup (:user-visible-flag t) nil [4133 4247])
-            ("org-feed-alist" variable nil nil [4249 8849])
-            ("org-feed-drawer" variable (:default-value "FEEDSTATUS") nil [8851 9101])
-            ("org-feed-default-template" variable (:default-value "
-* %h
-  %U
-  %description
-  %a
-") nil [9103 9977])
-            ("org-feed-save-after-adding" variable (:default-value t) nil [9979 10114])
-            ("org-feed-retrieve-method" variable (:default-value (quote url-retrieve-synchronously)) nil [10116 10635])
-            ("org-feed-before-adding-hook" variable nil nil [10637 10862])
-            ("org-feed-after-adding-hook" variable nil nil [10864 11087])
-            ("org-feed-buffer" variable (:default-value "*Org feed*") nil [11089 11166])
-            ("org-feed-update-all" function (:user-visible-flag t) nil [11183 11797])
-            ("org-feed-update" function
-               (:user-visible-flag t
-                :arguments ("feed" "retrieve-only"))
-                nil [11814 16345])
-            ("org-feed-goto-inbox" function
-               (:user-visible-flag t
-                :arguments ("feed"))
-                nil [16362 16777])
-            ("org-feed-show-raw-feed" function
-               (:user-visible-flag t
-                :arguments ("feed"))
-                nil [16794 17235])
-            ("org-feed-goto-inbox-internal" function (:arguments ("file" "heading")) nil [17237 17691])
-            ("org-feed-read-previous-status" function (:arguments ("pos" "drawer")) nil [17693 18085])
-            ("org-feed-write-status" function (:arguments ("pos" "drawer" "status")) nil [18087 18669])
-            ("org-feed-add-items" function (:arguments ("pos" "entries")) nil [18671 19209])
-            ("org-feed-format-entry" function (:arguments ("entry" "template" "formatter")) nil [19211 21888])
-            ("org-feed-make-indented-block" function (:arguments ("s" "n")) nil [21890 22148])
-            ("org-feed-skip-http-headers" function (:arguments ("buffer")) nil [22150 22431])
-            ("org-feed-get-feed" function (:arguments ("url")) nil [22433 23098])
-            ("org-feed-parse-rss-feed" function (:arguments ("buffer")) nil [23100 23921])
-            ("org-feed-parse-rss-entry" function (:arguments ("entry")) nil [23923 24548])
-            ("org-feed-parse-atom-feed" function (:arguments ("buffer")) nil [24550 25184])
-            ("org-feed-parse-atom-entry" function (:arguments ("entry")) nil [25186 26523])
-            ("org-feed" package nil nil [26525 26544]))          
-      :file "org-feed.el"
-      :pointmax 26647
-      :fsize 26646
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [1239 1253])
-            ("org-datetree-base-level" variable (:default-value 1) nil [1255 1580])
-            ("org-datetree-add-timestamp" variable nil nil [1582 1946])
-            ("org-datetree-find-date-create" function (:arguments ("d" "keep-restriction")) nil [1963 3425])
-            ("org-datetree-find-iso-week-create" function (:arguments ("d" "keep-restriction")) nil [3442 5404])
-            ("org-datetree--find-create" function (:arguments ("regex" "year" "month" "day" "insert")) nil [5406 6379])
-            ("org-datetree-insert-line" function (:arguments ("year" "month" "day" "text")) nil [6381 7181])
-            ("org-datetree-file-entry-under" function (:arguments ("txt" "d")) nil [7183 7480])
-            ("org-datetree-cleanup" function (:user-visible-flag t) nil [7482 9166])
-            ("org-datetree" package nil nil [9168 9191]))          
-      :file "org-datetree.el"
-      :pointmax 9298
-      :fsize 9297
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [2882 2896])
-            ("declare-function" code nil nil [2898 2947])
-            ("org-id" customgroup (:user-visible-flag t) nil [2968 3080])
-            ("org-id-link-to-org-use-id" variable nil nil [3082 4697])
-            ("org-id-uuid-program" variable (:default-value "uuidgen") nil [4699 4798])
-            ("org-id-method" variable (:default-value (quote uuid)) nil [4800 5581])
-            ("org-id-prefix" variable nil nil [5583 5920])
-            ("org-id-include-domain" variable nil nil [5922 6429])
-            ("org-id-track-globally" variable (:default-value t) nil [6431 6954])
-            ("org-id-locations-file" variable (:default-value (convert-standard-filename (concat user-emacs-directory ".org-id-locations"))) nil [6956 7234])
-            ("org-id-locations" variable nil nil [7236 7308])
-            ("org-id-files" variable nil nil [7310 7371])
-            ("org-id-extra-files" variable (:default-value (quote org-agenda-text-search-extra-files)) nil [7373 7982])
-            ("org-id-search-archives" variable (:default-value t) nil [7984 8319])
-            ("org-id-get-create" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [8359 8669])
-            ("org-id-copy" function (:user-visible-flag t) nil [8686 8849])
-            ("org-id-get" function (:arguments ("pom" "create" "prefix")) nil [8866 9533])
-            ("org-id-get-with-outline-path-completion" function (:arguments ("targets")) nil [9550 10300])
-            ("org-id-get-with-outline-drilling" function nil nil [10317 10759])
-            ("org-id-goto" function
-               (:user-visible-flag t
-                :arguments ("id"))
-                nil [10776 11149])
-            ("org-id-find" function (:arguments ("id" "markerp")) nil [11166 11866])
-            ("org-id-new" function (:arguments ("prefix")) nil [11928 13048])
-            ("org-id-uuid" function nil nil [13050 13612])
-            ("org-id-int-to-b36-one-digit" function (:arguments ("i")) nil [13614 13823])
-            ("org-id-b36-to-int-one-digit" function (:arguments ("i")) nil [13825 14162])
-            ("org-id-int-to-b36" function (:arguments ("i" "length")) nil [14164 14561])
-            ("org-id-b36-to-int" function (:arguments ("s")) nil [14563 14758])
-            ("org-id-time-to-b36" function (:arguments ("time")) nil [14760 15104])
-            ("org-id-decode" function (:arguments ("id")) nil [15106 15753])
-            ("org-id-update-id-locations" function
-               (:user-visible-flag t
-                :arguments ("files" "silent"))
-                nil [15803 18726])
-            ("org-id-locations-save" function nil nil [18728 19120])
-            ("org-id-locations-load" function nil nil [19122 19657])
-            ("org-id-add-location" function (:arguments ("id" "file")) nil [19659 20051])
-            ("unless" code nil nil [20053 20129])
-            ("org-id-hash-to-alist" function (:arguments ("hash")) nil [20131 20402])
-            ("org-id-alist-to-hash" function (:arguments ("list")) nil [20404 20718])
-            ("org-id-paste-tracker" function (:arguments ("txt" "buffer-or-file")) nil [20720 21384])
-            ("org-id-find-id-file" function (:arguments ("id")) nil [21439 21820])
-            ("org-id-find-id-in-file" function (:arguments ("id" "file" "markerp")) nil [21822 22463])
-            ("org-id-store-link" function (:user-visible-flag t) nil [22627 23168])
-            ("org-id-open" function (:arguments ("id")) nil [23170 23876])
-            ("org-link-set-parameters" code nil nil [23878 23930])
-            ("org-id" package nil nil [23932 23949]))          
-      :file "org-id.el"
-      :pointmax 24050
-      :fsize 24049
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1031 1048])
-            ("org-src" include nil nil [1049 1067])
-            ("org-macs" include nil nil [1068 1087])
-            ("declare-function" code nil nil [1089 1154])
-            ("declare-function" code nil nil [1155 1216])
-            ("declare-function" code nil nil [1217 1284])
-            ("declare-function" code nil nil [1285 1354])
-            ("declare-function" code nil nil [1355 1409])
-            ("declare-function" code nil nil [1410 1466])
-            ("declare-function" code nil nil [1467 1526])
-            ("declare-function" code nil nil [1527 1586])
-            ("declare-function" code nil nil [1587 1637])
-            ("declare-function" code nil nil [1638 1716])
-            ("declare-function" code nil nil [1717 1786])
-            ("declare-function" code nil nil [1787 1872])
-            ("declare-function" code nil nil [1873 1939])
-            ("declare-function" code nil nil [1940 1985])
-            ("declare-function" code nil nil [1986 2043])
-            ("declare-function" code nil nil [2044 2100])
-            ("declare-function" code nil nil [2101 2163])
-            ("org-link-types-re" variable nil nil [2165 2191])
-            ("org-babel-tangle-lang-exts" variable (:default-value (quote (("emacs-lisp" . "el") ("elisp" . "el")))) nil [2193 2693])
-            ("org-babel-tangle-use-relative-file-links" variable (:default-value t) nil [2695 2869])
-            ("org-babel-post-tangle-hook" variable nil nil [2871 3023])
-            ("org-babel-pre-tangle-hook" variable (:default-value (quote (save-buffer))) nil [3025 3182])
-            ("org-babel-tangle-body-hook" variable nil nil [3184 3334])
-            ("org-babel-tangle-comment-format-beg" variable (:default-value "[[%link][%source-name]]") nil [3336 4154])
-            ("org-babel-tangle-comment-format-end" variable (:default-value "%source-name ends here") nil [4156 4973])
-            ("org-babel-tangle-uncomment-comments" variable nil nil [4975 5280])
-            ("org-babel-process-comment-text" variable (:default-value (quote org-remove-indentation)) nil [5282 5642])
-            ("org-babel-find-file-noselect-refresh" function (:arguments ("file")) nil [5644 5888])
-            ("org-babel-with-temp-filebuffer" function (:arguments ("file" "body")) nil [5890 6648])
-            ("def-edebug-spec" code nil nil [6649 6709])
-            ("org-babel-tangle-file" function
-               (:user-visible-flag t
-                :arguments ("file" "target-file" "lang"))
-                nil [6726 7480])
-            ("org-babel-tangle-publish" function (:arguments ("_" "filename" "pub-dir")) nil [7482 7786])
-            ("org-babel-tangle" function
-               (:user-visible-flag t
-                :arguments ("arg" "target-file" "lang"))
-                nil [7803 12504])
-            ("org-babel-tangle-clean" function (:user-visible-flag t) nil [12506 13173])
-            ("org-stored-links" variable nil nil [13175 13200])
-            ("org-bracket-link-regexp" variable nil nil [13201 13233])
-            ("org-babel-spec-to-string" function (:arguments ("spec")) nil [13234 14846])
-            ("org-babel-tangle-collect-blocks" function (:arguments ("language" "tangle-file")) nil [14848 16386])
-            ("org-babel-tangle-single-block" function (:arguments ("block-counter" "only-this-block")) nil [16388 19502])
-            ("org-babel-tangle-comment-links" function (:arguments ("info")) nil [19504 20156])
-            ("org-bracket-link-analytic-regexp" variable nil nil [20183 20224])
-            ("org-babel-detangle" function
-               (:user-visible-flag t
-                :arguments ("source-code-file"))
-                nil [20225 21114])
-            ("org-babel-tangle-jump-to-org" function (:user-visible-flag t) nil [21116 23251])
-            ("ob-tangle" package nil nil [23253 23273]))          
-      :file "ob-tangle.el"
-      :pointmax 23377
-      :fsize 23376
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ox" include nil nil [1064 1077])
-            ("ox-publish" include nil nil [1078 1099])
-            ("cl-lib" include nil nil [1100 1117])
-            ("declare-function" code nil nil [1119 1172])
-            ("org-export-define-backend" code nil nil [1610 5906])
-            ("org-export-ascii" customgroup (:user-visible-flag t) nil [5944 6073])
-            ("org-ascii-text-width" variable (:default-value 72) nil [6075 6313])
-            ("org-ascii-global-margin" variable nil nil [6315 6503])
-            ("org-ascii-inner-margin" variable (:default-value 2) nil [6505 6740])
-            ("org-ascii-quote-margin" variable (:default-value 6) nil [6742 7053])
-            ("org-ascii-list-margin" variable nil nil [7055 7309])
-            ("org-ascii-inlinetask-width" variable (:default-value 30) nil [7311 7532])
-            ("org-ascii-headline-spacing" variable (:default-value (quote (1 . 2))) nil [7534 8236])
-            ("org-ascii-indented-line-width" variable (:default-value (quote auto)) nil [8238 8811])
-            ("org-ascii-paragraph-spacing" variable (:default-value (quote auto)) nil [8813 9276])
-            ("org-ascii-charset" variable (:default-value (quote ascii)) nil [9278 9709])
-            ("org-ascii-underline" variable (:default-value (quote ((ascii 61 126 45) (latin1 61 126 45) (utf-8 9552 9472 9548 9476 9480)))) nil [9711 10645])
-            ("org-ascii-bullets" variable (:default-value (quote ((ascii 42 43 45) (latin1 167 182) (utf-8 9674)))) nil [10647 11603])
-            ("org-ascii-links-to-notes" variable (:default-value t) nil [11605 11911])
-            ("org-ascii-table-keep-all-vertical-lines" variable nil nil [11913 12209])
-            ("org-ascii-table-widen-columns" variable (:default-value t) nil [12211 12509])
-            ("org-ascii-table-use-ascii-art" variable nil nil [12511 12881])
-            ("org-ascii-caption-above" variable nil nil [12883 13113])
-            ("org-ascii-verbatim-format" variable (:default-value "`%s'") nil [13115 13312])
-            ("org-ascii-format-drawer-function" variable (:default-value (lambda (_name contents _width) contents)) nil [13314 13871])
-            ("org-ascii-format-inlinetask-function" variable (:default-value (quote org-ascii-format-inlinetask-default)) nil [13873 14692])
-            ("org-ascii--fill-string" function (:arguments ("s" "text-width" "info" "justify")) nil [16332 17293])
-            ("org-ascii--justify-lines" function (:arguments ("s" "text-width" "how")) nil [17295 17873])
-            ("org-ascii--justify-element" function (:arguments ("contents" "element" "info")) nil [17875 19471])
-            ("org-ascii--indent-string" function (:arguments ("s" "width")) nil [19473 19701])
-            ("org-ascii--box-string" function (:arguments ("s" "info")) nil [19703 20121])
-            ("org-ascii--current-text-width" function (:arguments ("element" "info")) nil [20123 23724])
-            ("org-ascii--current-justification" function (:arguments ("element")) nil [23726 24341])
-            ("org-ascii--build-title" function (:arguments ("element" "info" "text-width" "underline" "notags" "toc")) nil [24343 26761])
-            ("org-ascii--has-caption-p" function (:arguments ("element" "_info")) nil [26763 27041])
-            ("org-ascii--build-caption" function (:arguments ("element" "info")) nil [27043 27922])
-            ("org-ascii--build-toc" function (:arguments ("info" "n" "keyword" "local")) nil [27924 29265])
-            ("org-ascii--list-listings" function (:arguments ("keyword" "info")) nil [29267 30719])
-            ("org-ascii--list-tables" function (:arguments ("keyword" "info")) nil [30721 32149])
-            ("org-ascii--unique-links" function (:arguments ("element" "info")) nil [32151 33453])
-            ("org-ascii--describe-datum" function (:arguments ("datum" "info")) nil [33455 35015])
-            ("org-ascii--describe-links" function (:arguments ("links" "width" "info")) nil [35017 36515])
-            ("org-ascii--checkbox" function (:arguments ("item" "info")) nil [36517 36870])
-            ("org-ascii-template--document-title" function (:arguments ("info")) nil [36889 40209])
-            ("org-ascii-inner-template" function (:arguments ("contents" "info")) nil [40211 42215])
-            ("org-ascii-template" function (:arguments ("contents" "info")) nil [42217 43185])
-            ("org-ascii--translate" function (:arguments ("s" "info")) nil [43187 43459])
-            ("org-ascii-bold" function (:arguments ("_bold" "contents" "_info")) nil [43500 43698])
-            ("org-ascii-center-block" function (:arguments ("_center-block" "contents" "_info")) nil [43720 44036])
-            ("org-ascii-clock" function (:arguments ("clock" "_contents" "info")) nil [44051 44520])
-            ("org-ascii-code" function (:arguments ("code" "_contents" "info")) nil [44534 44777])
-            ("org-ascii-drawer" function (:arguments ("drawer" "contents" "info")) nil [44793 45181])
-            ("org-ascii-dynamic-block" function (:arguments ("_dynamic-block" "contents" "_info")) nil [45204 45426])
-            ("org-ascii-entity" function (:arguments ("entity" "_contents" "info")) nil [45442 45731])
-            ("org-ascii-example-block" function (:arguments ("example-block" "_contents" "info")) nil [45754 46080])
-            ("org-ascii-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [46104 46406])
-            ("org-ascii-export-block" function (:arguments ("export-block" "_contents" "info")) nil [46428 46778])
-            ("org-ascii-fixed-width" function (:arguments ("fixed-width" "_contents" "info")) nil [46799 47137])
-            ("org-ascii-footnote-reference" function (:arguments ("footnote-reference" "_contents" "info")) nil [47311 47586])
-            ("org-ascii-headline" function (:arguments ("headline" "contents" "info")) nil [47604 49793])
-            ("org-ascii-horizontal-rule" function (:arguments ("horizontal-rule" "_contents" "info")) nil [49818 50411])
-            ("org-ascii-inline-src-block" function (:arguments ("inline-src-block" "_contents" "info")) nil [50437 50757])
-            ("org-ascii-format-inlinetask-default" function (:arguments ("_todo" "_type" "_priority" "_name" "_tags" "contents" "width" "inlinetask" "info")) nil [50777 52110])
-            ("org-ascii-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [52112 53058])
-            ("org-ascii-italic" function (:arguments ("_italic" "contents" "_info")) nil [53074 53280])
-            ("org-ascii-item" function (:arguments ("item" "contents" "info")) nil [53294 55660])
-            ("org-ascii-keyword" function (:arguments ("keyword" "_contents" "info")) nil [55677 56594])
-            ("org-ascii-latex-environment" function (:arguments ("latex-environment" "_contents" "info")) nil [56621 56995])
-            ("org-ascii-latex-fragment" function (:arguments ("latex-fragment" "_contents" "info")) nil [57019 57293])
-            ("org-ascii-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [57313 57506])
-            ("org-ascii-link" function (:arguments ("link" "desc" "info")) nil [57520 59482])
-            ("org-ascii-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [59507 59879])
-            ("org-ascii-paragraph" function (:arguments ("paragraph" "contents" "info")) nil [59898 60601])
-            ("org-ascii-plain-list" function (:arguments ("plain-list" "contents" "info")) nil [60621 61028])
-            ("org-ascii-plain-text" function (:arguments ("text" "info")) nil [61048 61711])
-            ("org-ascii-planning" function (:arguments ("planning" "_contents" "info")) nil [61729 62496])
-            ("org-ascii-property-drawer" function (:arguments ("property-drawer" "contents" "info")) nil [62521 62838])
-            ("org-ascii-quote-block" function (:arguments ("_quote-block" "contents" "info")) nil [62859 63138])
-            ("org-ascii-radio-target" function (:arguments ("_radio-target" "contents" "_info")) nil [63160 63376])
-            ("org-ascii-section" function (:arguments ("section" "contents" "info")) nil [63393 64307])
-            ("org-ascii-special-block" function (:arguments ("_special-block" "contents" "_info")) nil [64330 64699])
-            ("org-ascii-src-block" function (:arguments ("src-block" "_contents" "info")) nil [64718 65338])
-            ("org-ascii-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [65365 65612])
-            ("org-ascii-subscript" function (:arguments ("subscript" "contents" "_info")) nil [65631 65942])
-            ("org-ascii-superscript" function (:arguments ("superscript" "contents" "_info")) nil [65963 66282])
-            ("org-ascii-strike-through" function (:arguments ("_strike-through" "contents" "_info")) nil [66306 66540])
-            ("org-ascii-table" function (:arguments ("table" "contents" "info")) nil [66555 67734])
-            ("org-ascii--table-cell-width" function (:arguments ("table-cell" "info")) nil [67754 69215])
-            ("org-ascii-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [69217 70456])
-            ("org-ascii-table-row" function (:arguments ("table-row" "contents" "info")) nil [70475 72395])
-            ("org-ascii-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [72414 72652])
-            ("org-ascii-underline" function (:arguments ("_underline" "contents" "_info")) nil [72671 72889])
-            ("org-ascii-verbatim" function (:arguments ("verbatim" "_contents" "info")) nil [72907 73166])
-            ("org-ascii-verse-block" function (:arguments ("verse-block" "contents" "info")) nil [73187 73509])
-            ("org-ascii-filter-headline-blank-lines" function (:arguments ("headline" "_backend" "info")) nil [73527 74176])
-            ("org-ascii-filter-paragraph-spacing" function (:arguments ("tree" "_backend" "info")) nil [74178 74819])
-            ("org-ascii-filter-comment-spacing" function (:arguments ("tree" "_backend" "info")) nil [74821 75289])
-            ("org-ascii-export-as-ascii" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [75333 76513])
-            ("org-ascii-export-to-ascii" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [76530 77618])
-            ("org-ascii-publish-to-ascii" function (:arguments ("plist" "filename" "pub-dir")) nil [77635 77991])
-            ("org-ascii-publish-to-latin1" function (:arguments ("plist" "filename" "pub-dir")) nil [78008 78368])
-            ("org-ascii-publish-to-utf8" function (:arguments ("plist" "filename" "pub-dir")) nil [78385 78740])
-            ("ox-ascii" package nil nil [78743 78762]))          
-      :file "ox-ascii.el"
-      :pointmax 78882
-      :fsize 78981
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [1116 1130])
-            ("declare-function" code nil nil [1132 1191])
-            ("declare-function" code nil nil [1192 1289])
-            ("declare-function" code nil nil [1290 1360])
-            ("org-archive-default-command" variable (:default-value (quote org-archive-subtree)) nil [1362 1601])
-            ("org-archive-reversed-order" variable nil nil [1603 1783])
-            ("org-archive-sibling-heading" variable (:default-value "Archive") nil [1785 2055])
-            ("org-archive-mark-done" variable nil nil [2057 2422])
-            ("org-archive-stamp-time" variable (:default-value t) nil [2424 2704])
-            ("org-archive-file-header-format" variable (:default-value "
-Archived entries from file %s
-
-") nil [2706 3041])
-            ("org-archive-subtree-add-inherited-tags" variable (:default-value (quote infile)) nil [3043 3347])
-            ("org-archive-save-context-info" variable (:default-value (quote (time file olpath category todo itags))) nil [3349 4727])
-            ("org-archive-hook" variable nil nil [4729 4997])
-            ("org-get-local-archive-location" function nil nil [4999 5449])
-            ("org-add-archive-files" function (:arguments ("files")) nil [5466 5854])
-            ("org-all-archive-files" function nil nil [5856 6633])
-            ("org-extract-archive-file" function (:arguments ("location")) nil [6635 7145])
-            ("org-extract-archive-heading" function (:arguments ("location")) nil [7147 7547])
-            ("org-archive-subtree" function
-               (:user-visible-flag t
-                :arguments ("find-done"))
-                nil [7564 15782])
-            ("org-archive-to-archive-sibling" function (:user-visible-flag t) nil [15799 18177])
-            ("org-archive-all-done" function (:arguments ("tag")) nil [18179 18661])
-            ("org-archive-all-old" function (:arguments ("tag")) nil [18663 19397])
-            ("org-archive-all-matches" function (:arguments ("predicate" "tag")) nil [19399 21248])
-            ("org-toggle-archive-tag" function
-               (:user-visible-flag t
-                :arguments ("find-done"))
-                nil [21265 22196])
-            ("org-archive-set-tag" function (:user-visible-flag t) nil [22198 22689])
-            ("org-archive-subtree-default" function (:user-visible-flag t) nil [22706 22938])
-            ("org-archive-subtree-default-with-confirmation" function (:user-visible-flag t) nil [22955 23281])
-            ("org-archive" package nil nil [23283 23305]))          
-      :file "org-archive.el"
-      :pointmax 23411
-      :fsize 23410
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [4260 4277])
-            ("org-element" include nil nil [4278 4300])
-            ("org-macro" include nil nil [4301 4321])
-            ("ox" include nil nil [4322 4335])
-            ("ob" include nil nil [4336 4349])
-            ("cl-defstruct" code nil nil [4367 4506])
-            ("org-lint-missing-checker-name" function (:arguments ("_")) nil [4528 4656])
-            ("org-lint--checkers" variable
-               (:constant-flag t
-                :default-value (list (make-org-lint-checker :name (quote duplicate-custom-id) :description "Report duplicates CUSTOM_ID properties" :categories (quote (link))) (make-org-lint-checker :name (quote duplicate-name) :description "Report duplicate NAME values" :categories (quote (babel link))) (make-org-lint-checker :name (quote duplicate-target) :description "Report duplicate targets" :categories (quote (link))) (make-org-lint-checker :name (quote duplicate-footnote-definition) :description "Report duplicate footnote definitions" :categories (quote (footnote))) (make-org-lint-checker :name (quote orphaned-affiliated-keywords) :description "Report orphaned affiliated keywords" :trust (quote low)) (make-org-lint-checker :name (quote obsolete-affiliated-keywords) :description "Report obsolete affiliated keywords" :categories (quote (obsolete))) (make-org-lint-checker :name (quote deprecated-export-blocks) :description "Report deprecated export block syntax" :categories (quote (obsolete export)) :trust (quote low)) (make-org-lint-checker :name (quote deprecated-header-syntax) :description "Report deprecated Babel header syntax" :categories (quote (obsolete babel)) :trust (quote low)) (make-org-lint-checker :name (quote missing-language-in-src-block) :description "Report missing language in src blocks" :categories (quote (babel))) (make-org-lint-checker :name (quote missing-backend-in-export-block) :description "Report missing back-end in export blocks" :categories (quote (export))) (make-org-lint-checker :name (quote invalid-babel-call-block) :description "Report invalid Babel call blocks" :categories (quote (babel))) (make-org-lint-checker :name (quote colon-in-name) :description "Report NAME values with a colon" :categories (quote (babel))) (make-org-lint-checker :name (quote wrong-header-argument) :description "Report wrong babel headers" :categories (quote (babel))) (make-org-lint-checker :name (quote wrong-header-value) :description "Report invalid value in babel headers" :categories (quote (babel)) :trust (quote low)) (make-org-lint-checker :name (quote deprecated-category-setup) :description "Report misuse of CATEGORY keyword" :categories (quote (obsolete))) (make-org-lint-checker :name (quote invalid-coderef-link) :description "Report \"coderef\" links with unknown destination" :categories (quote (link))) (make-org-lint-checker :name (quote invalid-custom-id-link) :description "Report \"custom-id\" links with unknown destination" :categories (quote (link))) (make-org-lint-checker :name (quote invalid-fuzzy-link) :description "Report \"fuzzy\" links with unknown destination" :categories (quote (link))) (make-org-lint-checker :name (quote invalid-id-link) :description "Report \"id\" links with unknown destination" :categories (quote (link))) (make-org-lint-checker :name (quote link-to-local-file) :description "Report links to non-existent local files" :categories (quote (link)) :trust (quote low)) (make-org-lint-checker :name (quote non-existent-setupfile-parameter) :description "Report SETUPFILE keywords with non-existent file parameter" :trust (quote low)) (make-org-lint-checker :name (quote wrong-include-link-parameter) :description "Report INCLUDE keywords with misleading link parameter" :categories (quote (export)) :trust (quote low)) (make-org-lint-checker :name (quote obsolete-include-markup) :description "Report obsolete markup in INCLUDE keyword" :categories (quote (obsolete export)) :trust (quote low)) (make-org-lint-checker :name (quote unknown-options-item) :description "Report unknown items in OPTIONS keyword" :categories (quote (export)) :trust (quote low)) (make-org-lint-checker :name (quote invalid-macro-argument-and-template) :description "Report spurious macro arguments or invalid macro templates" :categories (quote (export)) :trust (quote low)) (make-org-lint-checker :name (quote special-property-in-properties-drawer) :description "Report special properties in properties drawers" :categories (quote (properties))) (make-org-lint-checker :name (quote obsolete-properties-drawer) :description "Report obsolete syntax for properties drawers" :categories (quote (obsolete properties))) (make-org-lint-checker :name (quote invalid-effort-property) :description "Report invalid duration in EFFORT property" :categories (quote (properties))) (make-org-lint-checker :name (quote undefined-footnote-reference) :description "Report missing definition for footnote references" :categories (quote (footnote))) (make-org-lint-checker :name (quote unreferenced-footnote-definition) :description "Report missing reference for footnote definitions" :categories (quote (footnote))) (make-org-lint-checker :name (quote extraneous-element-in-footnote-section) :description "Report non-footnote definitions in footnote section" :categories (quote (footnote))) (make-org-lint-checker :name (quote invalid-keyword-syntax) :description "Report probable invalid keywords" :trust (quote low)) (make-org-lint-checker :name (quote invalid-block) :description "Report invalid blocks" :trust (quote low)) (make-org-lint-checker :name (quote misplaced-planning-info) :description "Report misplaced planning info line" :trust (quote low)) (make-org-lint-checker :name (quote incomplete-drawer) :description "Report probable incomplete drawers" :trust (quote low)) (make-org-lint-checker :name (quote indented-diary-sexp) :description "Report probable indented diary-sexps" :trust (quote low)) (make-org-lint-checker :name (quote quote-section) :description "Report obsolete QUOTE section" :categories (quote (obsolete)) :trust (quote low)) (make-org-lint-checker :name (quote file-application) :description "Report obsolete \"file+application\" link" :categories (quote (link obsolete))) (make-org-lint-checker :name (quote empty-headline-with-tags) :description "Report ambiguous empty headlines with tags" :categories (quote (headline)) :trust (quote low))))
-                nil [4658 10638])
-            ("org-lint--collect-duplicates" function (:arguments ("ast" "type" "extract-key" "extract-position" "build-message")) nil [10640 11733])
-            ("org-lint-duplicate-custom-id" function (:arguments ("ast")) nil [11735 12163])
-            ("org-lint-duplicate-name" function (:arguments ("ast")) nil [12165 12574])
-            ("org-lint-duplicate-target" function (:arguments ("ast")) nil [12576 12888])
-            ("org-lint-duplicate-footnote-definition" function (:arguments ("ast")) nil [12890 13221])
-            ("org-lint-orphaned-affiliated-keywords" function (:arguments ("ast")) nil [13223 13848])
-            ("org-lint-obsolete-affiliated-keywords" function (:arguments ("_")) nil [13850 14497])
-            ("org-lint-deprecated-export-blocks" function (:arguments ("ast")) nil [14499 14977])
-            ("org-lint-deprecated-header-syntax" function (:arguments ("ast")) nil [14979 15948])
-            ("org-lint-missing-language-in-src-block" function (:arguments ("ast")) nil [15950 16196])
-            ("org-lint-missing-backend-in-export-block" function (:arguments ("ast")) nil [16198 16445])
-            ("org-lint-invalid-babel-call-block" function (:arguments ("ast")) nil [16447 16921])
-            ("org-lint-deprecated-category-setup" function (:arguments ("ast")) nil [16923 17289])
-            ("org-lint-invalid-coderef-link" function (:arguments ("ast")) nil [17291 17701])
-            ("org-lint-invalid-custom-id-link" function (:arguments ("ast")) nil [17703 18099])
-            ("org-lint-invalid-fuzzy-link" function (:arguments ("ast")) nil [18101 18591])
-            ("org-lint-invalid-id-link" function (:arguments ("ast")) nil [18593 18902])
-            ("org-lint-special-property-in-properties-drawer" function (:arguments ("ast")) nil [18904 19255])
-            ("org-lint-obsolete-properties-drawer" function (:arguments ("ast")) nil [19257 19858])
-            ("org-lint-invalid-effort-property" function (:arguments ("ast")) nil [19860 20247])
-            ("org-lint-link-to-local-file" function (:arguments ("ast")) nil [20249 20766])
-            ("org-lint-non-existent-setupfile-parameter" function (:arguments ("ast")) nil [20768 21203])
-            ("org-lint-wrong-include-link-parameter" function (:arguments ("ast")) nil [21205 22666])
-            ("org-lint-obsolete-include-markup" function (:arguments ("ast")) nil [22668 23348])
-            ("org-lint-unknown-options-item" function (:arguments ("ast")) nil [23350 24165])
-            ("org-lint-invalid-macro-argument-and-template" function (:arguments ("ast")) nil [24167 26520])
-            ("org-lint-undefined-footnote-reference" function (:arguments ("ast")) nil [26522 27020])
-            ("org-lint-unreferenced-footnote-definition" function (:arguments ("ast")) nil [27022 27496])
-            ("org-lint-colon-in-name" function (:arguments ("ast")) nil [27498 27977])
-            ("org-lint-misplaced-planning-info" function (:arguments ("_")) nil [27979 28374])
-            ("org-lint-incomplete-drawer" function (:arguments ("_")) nil [28376 28947])
-            ("org-lint-indented-diary-sexp" function (:arguments ("_")) nil [28949 29312])
-            ("org-lint-invalid-block" function (:arguments ("_")) nil [29314 30151])
-            ("org-lint-invalid-keyword-syntax" function (:arguments ("_")) nil [30153 30804])
-            ("org-lint-extraneous-element-in-footnote-section" function (:arguments ("ast")) nil [30806 31449])
-            ("org-lint-quote-section" function (:arguments ("ast")) nil [31451 31796])
-            ("org-lint-file-application" function (:arguments ("ast")) nil [31798 32051])
-            ("org-lint-wrong-header-argument" function (:arguments ("ast")) nil [32053 34684])
-            ("org-lint-wrong-header-value" function (:arguments ("ast")) nil [34686 37014])
-            ("org-lint-empty-headline-with-tags" function (:arguments ("ast")) nil [37016 37363])
-            ("org-lint--report-mode-map" variable (:default-value (let ((map (make-sparse-keymap))) (set-keymap-parent map tabulated-list-mode-map) (define-key map (kbd "RET") (quote org-lint--jump-to-source)) (define-key map (kbd "TAB") (quote org-lint--show-source)) (define-key map (kbd "C-j") (quote org-lint--show-source)) (define-key map (kbd "h") (quote org-lint--hide-checker)) (define-key map (kbd "i") (quote org-lint--ignore-checker)) map)) nil [37383 37851])
-            ("define-derived-mode" code nil nil [37853 38256])
-            ("org-lint--generate-reports" function (:arguments ("buffer" "checkers")) nil [38258 39540])
-            ("defvar-local" code nil nil [39542 39639])
-            ("defvar-local" code nil nil [39641 39735])
-            ("org-lint--refresh-reports" function nil nil [39737 39917])
-            ("org-lint--current-line" function nil nil [39919 40054])
-            ("org-lint--current-checker" function (:arguments ("entry")) nil [40056 40285])
-            ("org-lint--display-reports" function (:arguments ("source" "checkers")) nil [40287 40799])
-            ("org-lint--jump-to-source" function (:user-visible-flag t) nil [40801 41085])
-            ("org-lint--show-source" function (:user-visible-flag t) nil [41087 41302])
-            ("org-lint--hide-checker" function (:user-visible-flag t) nil [41304 41624])
-            ("org-lint--ignore-checker" function (:user-visible-flag t) nil [41626 41929])
-            ("org-lint" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [41969 43553])
-            ("org-lint" package nil nil [43556 43575]))          
-      :file "org-lint.el"
-      :pointmax 43602
-      :fsize 43601
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1456 1473])
-            ("org-clock" include nil nil [1474 1494])
-            ("declare-function" code nil nil [1496 1547])
-            ("org-timer-start-time" variable nil nil [1549 1613])
-            ("org-timer-pause-time" variable nil nil [1615 1684])
-            ("org-timer-countdown-timer" variable nil nil [1686 1881])
-            ("org-timer-countdown-timer-title" variable nil nil [1883 1991])
-            ("org-timer-re" variable
-               (:constant-flag t
-                :default-value "\\([-+]?[0-9]+\\):\\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)")
-                nil [1993 2125])
-            ("org-timer-format" variable (:default-value "%s ") nil [2127 2342])
-            ("org-timer-default-timer" variable (:default-value "0") nil [2344 2586])
-            ("org-timer-display" variable (:default-value (quote mode-line)) nil [2588 3151])
-            ("org-timer-start-hook" variable nil nil [3153 3232])
-            ("org-timer-stop-hook" variable nil nil [3234 3326])
-            ("org-timer-pause-hook" variable nil nil [3328 3420])
-            ("org-timer-continue-hook" variable nil nil [3422 3519])
-            ("org-timer-set-hook" variable nil nil [3521 3595])
-            ("org-timer-done-hook" variable nil nil [3597 3678])
-            ("org-timer-start" function
-               (:user-visible-flag t
-                :arguments ("offset"))
-                nil [3695 5513])
-            ("org-timer-pause-or-continue" function
-               (:user-visible-flag t
-                :arguments ("stop"))
-                nil [5515 7022])
-            ("org-timer-stop" function (:user-visible-flag t) nil [7024 7451])
-            ("org-timer" function
-               (:user-visible-flag t
-                :arguments ("restart" "no-insert"))
-                nil [7468 8274])
-            ("org-timer-value-string" function nil nil [8276 8428])
-            ("org-timer-seconds" function nil nil [8430 8850])
-            ("org-timer-change-times-in-region" function
-               (:user-visible-flag t
-                :arguments ("beg" "end" "delta"))
-                nil [8867 9758])
-            ("org-timer-item" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [9775 10737])
-            ("org-timer-fix-incomplete" function (:arguments ("hms")) nil [10739 11234])
-            ("org-timer-hms-to-secs" function (:arguments ("hms")) nil [11236 11785])
-            ("org-timer-secs-to-hms" function (:arguments ("s")) nil [11787 12089])
-            ("org-timer-mode-line-timer" variable nil nil [12091 12129])
-            ("org-timer-mode-line-string" variable nil nil [12130 12169])
-            ("org-timer-set-mode-line" function (:arguments ("value")) nil [12171 14396])
-            ("org-timer-update-mode-line" function nil nil [14398 14647])
-            ("org-timer-show-remaining-time" function (:user-visible-flag t) nil [14649 15104])
-            ("org-timer-set-timer" function
-               (:user-visible-flag t
-                :arguments ("opt"))
-                nil [15121 17618])
-            ("org-timer--run-countdown-timer" function (:arguments ("secs" "title")) nil [17620 18072])
-            ("org-timer--get-timer-title" function nil nil [18074 18743])
-            ("org-timer" package nil nil [18745 18765]))          
-      :file "org-timer.el"
-      :pointmax 18869
-      :fsize 18868
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1212 1229])
-            ("ox-ascii" include nil nil [1230 1249])
-            ("declare-function" code nil nil [1250 1310])
-            ("org-export-icalendar" customgroup (:user-visible-flag t) nil [1348 1486])
-            ("org-icalendar-combined-agenda-file" variable (:default-value "~/org.ics") nil [1488 1814])
-            ("org-icalendar-alarm-time" variable nil nil [1816 2244])
-            ("org-icalendar-combined-name" variable (:default-value "OrgMode") nil [2246 2418])
-            ("org-icalendar-combined-description" variable nil nil [2420 2588])
-            ("org-icalendar-exclude-tags" variable nil nil [2590 2881])
-            ("org-icalendar-use-deadline" variable (:default-value (quote (event-if-not-todo todo-due))) nil [2883 3619])
-            ("org-icalendar-use-scheduled" variable (:default-value (quote (todo-start))) nil [3621 4514])
-            ("org-icalendar-categories" variable (:default-value (quote (local-tags category))) nil [4516 5177])
-            ("org-icalendar-with-timestamps" variable (:default-value (quote active)) nil [5179 5787])
-            ("org-icalendar-include-todo" variable nil nil [5789 6383])
-            ("org-icalendar-include-bbdb-anniversaries" variable nil nil [6385 6615])
-            ("org-icalendar-include-sexps" variable (:default-value t) nil [6617 6848])
-            ("org-icalendar-include-body" variable (:default-value t) nil [6850 7291])
-            ("org-icalendar-store-UID" variable nil nil [7293 8017])
-            ("org-icalendar-timezone" variable (:default-value (getenv "TZ")) nil [8019 8293])
-            ("org-icalendar-date-time-format" variable (:default-value ":%Y%m%dT%H%M%S") nil [8295 8980])
-            ("org-icalendar-after-save-hook" variable nil nil [8982 9230])
-            ("org-export-define-derived-backend" code nil nil [9256 10913])
-            ("org-icalendar-create-uid" function (:arguments ("file" "bell")) nil [10942 11505])
-            ("org-icalendar-blocked-headline-p" function (:arguments ("headline" "info")) nil [11507 12706])
-            ("org-icalendar-use-UTC-date-time-p" function nil nil [12708 12926])
-            ("org-agenda-default-appointment-duration" variable nil nil [12928 12976])
-            ("org-icalendar-convert-timestamp" function (:arguments ("timestamp" "keyword" "end" "tz")) nil [12999 15699])
-            ("org-icalendar-dtstamp" function nil nil [15701 15829])
-            ("org-icalendar-get-categories" function (:arguments ("entry" "info")) nil [15831 16613])
-            ("org-icalendar-transcode-diary-sexp" function (:arguments ("sexp" "uid" "summary")) nil [16615 17208])
-            ("org-icalendar-cleanup-string" function (:arguments ("s")) nil [17210 17521])
-            ("org-icalendar-fold-string" function (:arguments ("s")) nil [17523 18349])
-            ("org-icalendar-clear-blank-lines" function (:arguments ("headline" "_back-end" "_info")) nil [18367 18626])
-            ("org-icalendar-entry" function (:arguments ("entry" "contents" "info")) nil [19059 24386])
-            ("org-icalendar--vevent" function (:arguments ("entry" "timestamp" "uid" "summary" "location" "description" "categories" "timezone")) nil [24388 26094])
-            ("org-icalendar--vtodo" function (:arguments ("entry" "uid" "summary" "location" "description" "categories" "timezone")) nil [26096 28136])
-            ("org-icalendar--valarm" function (:arguments ("entry" "timestamp" "summary")) nil [28138 29157])
-            ("org-icalendar-template" function (:arguments ("contents" "info")) nil [29175 29904])
-            ("org-icalendar--vcalendar" function (:arguments ("name" "owner" "tz" "description" "contents")) nil [29906 30557])
-            ("org-icalendar-export-to-ics" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only"))
-                nil [30604 31978])
-            ("org-icalendar-export-agenda-files" function
-               (:user-visible-flag t
-                :arguments ("async"))
-                nil [31995 33123])
-            ("org-icalendar-combine-agenda-files" function
-               (:user-visible-flag t
-                :arguments ("async"))
-                nil [33140 33888])
-            ("org-icalendar-export-current-agenda" function (:arguments ("file")) nil [33890 35139])
-            ("org-icalendar--combine-files" function (:arguments ("files")) nil [35141 36675])
-            ("ox-icalendar" package nil nil [36678 36701]))          
-      :file "ox-icalendar.el"
-      :pointmax 36808
-      :fsize 36807
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ob-core" include nil nil [954 972])
-            ("declare-function" code nil nil [974 1042])
-            ("declare-function" code nil nil [1043 1099])
-            ("declare-function" code nil nil [1100 1172])
-            ("declare-function" code nil nil [1173 1245])
-            ("declare-function" code nil nil [1246 1305])
-            ("declare-function" code nil nil [1306 1364])
-            ("declare-function" code nil nil [1365 1414])
-            ("declare-function" code nil nil [1415 1474])
-            ("declare-function" code nil nil [1475 1536])
-            ("declare-function" code nil nil [1537 1615])
-            ("org-src-preserve-indentation" variable nil nil [1617 1654])
-            ("org-export-use-babel" variable (:default-value t) nil [1656 2105])
-            ("org-babel-exp--at-source" function (:arguments ("body")) nil [2108 2815])
-            ("org-babel-exp-src-block" function (:user-visible-flag t) nil [2817 4320])
-            ("org-babel-exp-call-line-template" variable nil nil [4322 4833])
-            ("org-babel-exp-process-buffer" function (:user-visible-flag t) nil [4835 10428])
-            ("org-babel-exp-do-export" function (:arguments ("info" "type" "hash")) nil [10430 11269])
-            ("org-babel-exp-code-template" variable (:default-value "#+BEGIN_SRC %lang%switches%flags
-%body
-#+END_SRC") nil [11271 12064])
-            ("org-babel-exp-inline-code-template" variable (:default-value "src_%lang[%switches%flags]{%body}") nil [12066 12908])
-            ("org-babel-exp-code" function (:arguments ("info" "type")) nil [12910 13899])
-            ("org-babel-exp-results" function (:arguments ("info" "type" "silent" "hash")) nil [13901 15426])
-            ("ob-exp" package nil nil [15429 15446]))          
-      :file "ob-exp.el"
-      :pointmax 15472
-      :fsize 15471
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [985 1002])
-            ("format-spec" include nil nil [1003 1025])
-            ("ox" include nil nil [1026 1039])
-            ("org-compat" include nil nil [1040 1061])
-            ("table" include nil nil [1062 1091])
-            ("org-export-define-backend" code nil nil [1114 4638])
-            ("declare-function" code nil nil [4730 4785])
-            ("declare-function" code nil nil [4786 4847])
-            ("declare-function" code nil nil [4848 4912])
-            ("declare-function" code nil nil [4913 4996])
-            ("declare-function" code nil nil [4997 5055])
-            ("nxml-auto-insert-xml-declaration-flag" variable nil nil [5057 5103])
-            ("archive-zip-extract" variable nil nil [5119 5147])
-            ("hfy-end-span-handler" variable nil nil [5170 5199])
-            ("hfy-begin-span-handler" variable nil nil [5225 5256])
-            ("hfy-face-to-css" variable nil nil [5282 5306])
-            ("hfy-html-quote-map" variable nil nil [5332 5359])
-            ("hfy-html-quote-regex" variable nil nil [5385 5414])
-            ("org-odt-lib-dir" variable
-               (:constant-flag t
-                :default-value (file-name-directory (or load-file-name (buffer-file-name))))
-                nil [5467 5661])
-            ("org-odt-data-dir" variable (:default-value (expand-file-name "../../etc/" org-odt-lib-dir)) nil [5663 5850])
-            ("org-odt-special-string-regexps" variable
-               (:constant-flag t
-                :default-value (quote (("\\\\-" . "&#x00ad;\\1") ("---\\([^-]\\)" . "&#x2014;\\1") ("--\\([^-]\\)" . "&#x2013;\\1") ("\\.\\.\\." . "&#x2026;"))))
-                nil [5852 6118])
-            ("org-odt-schema-dir-list" variable
-               (:constant-flag t
-                :default-value (list (and org-odt-data-dir (expand-file-name "./schema/" org-odt-data-dir)) (eval-when-compile (and (boundp (quote org-odt-data-dir)) org-odt-data-dir (expand-file-name "./schema/" org-odt-data-dir)))))
-                nil [6120 6645])
-            ("org-odt-styles-dir-list" variable
-               (:constant-flag t
-                :default-value (list (and org-odt-data-dir (expand-file-name "./styles/" org-odt-data-dir)) (eval-when-compile (and (boundp (quote org-odt-data-dir)) org-odt-data-dir (expand-file-name "./styles/" org-odt-data-dir))) (expand-file-name "../etc/styles/" org-odt-lib-dir) (expand-file-name "./etc/styles/" org-odt-lib-dir) (expand-file-name "./org/" data-directory)))
-                nil [6647 7323])
-            ("org-odt-styles-dir" variable
-               (:constant-flag t
-                :default-value (let ((styles-dir (cl-find-if (lambda (dir) (and dir (file-readable-p (expand-file-name "OrgOdtContentTemplate.xml" dir)) (file-readable-p (expand-file-name "OrgOdtStyles.xml" dir)))) org-odt-styles-dir-list))) (unless styles-dir (error "Error (ox-odt): Cannot find factory styles files, aborting")) styles-dir))
-                nil [7325 8245])
-            ("org-odt-bookmark-prefix" variable
-               (:constant-flag t
-                :default-value "OrgXref.")
-                nil [8247 8292])
-            ("org-odt-manifest-file-entry-tag" variable
-               (:constant-flag t
-                :default-value "
-<manifest:file-entry manifest:media-type=\"%s\" manifest:full-path=\"%s\"%s/>")
-                nil [8294 8420])
-            ("org-odt-file-extensions" variable
-               (:constant-flag t
-                :default-value (quote (("odt" . "OpenDocument Text") ("ott" . "OpenDocument Text Template") ("odm" . "OpenDocument Master Document") ("ods" . "OpenDocument Spreadsheet") ("ots" . "OpenDocument Spreadsheet Template") ("odg" . "OpenDocument Drawing (Graphics)") ("otg" . "OpenDocument Drawing Template") ("odp" . "OpenDocument Presentation") ("otp" . "OpenDocument Presentation Template") ("odi" . "OpenDocument Image") ("odf" . "OpenDocument Formula") ("odc" . "OpenDocument Chart"))))
-                nil [8422 8964])
-            ("org-odt-table-style-format" variable
-               (:constant-flag t
-                :default-value "
-<style:style style:name=\"%s\" style:family=\"table\">
-  <style:table-properties style:rel-width=\"%s%%\" fo:margin-top=\"0cm\" fo:margin-bottom=\"0.20cm\" table:align=\"center\"/>
-</style:style>
-")
-                nil [8966 9251])
-            ("org-odt-automatic-styles" variable (:default-value (quote nil)) nil [9253 9840])
-            ("org-odt-object-counters" variable nil nil [9842 10014])
-            ("org-odt-src-block-paragraph-format" variable (:default-value "<style:style style:name=\"OrgSrcBlock\" style:family=\"paragraph\" style:parent-style-name=\"Preformatted_20_Text\">
-   <style:paragraph-properties fo:background-color=\"%s\" fo:padding=\"0.049cm\" fo:border=\"0.51pt solid #000000\" style:shadow=\"none\">
-    <style:background-image/>
-   </style:paragraph-properties>
-   <style:text-properties fo:color=\"%s\"/>
-  </style:style>") nil [10016 10693])
-            ("hfy-optimizations" variable nil nil [10695 10721])
-            ("org-odt-embedded-formulas-count" variable nil nil [10722 10764])
-            ("org-odt-embedded-images-count" variable nil nil [10765 10805])
-            ("org-odt-image-size-probe-method" variable (:default-value (append (and (executable-find "identify") (quote (imagemagick))) (quote (emacs fixed)))) nil [10806 10998])
-            ("org-odt-default-image-sizes-alist" variable (:default-value (quote (("as-char" 5 . 0.4) ("paragraph" 5 . 5)))) nil [11000 11168])
-            ("org-odt-max-image-size" variable (:default-value (quote (17.0 . 20.0))) nil [11321 11414])
-            ("org-odt-label-styles" variable
-               (:constant-flag t
-                :default-value (quote (("math-formula" "%c" "text" "(%n)") ("math-label" "(%n)" "text" "(%n)") ("category-and-value" "%e %n: %c" "category-and-value" "%e %n") ("value" "%e %n: %c" "value" "%n"))))
-                nil [11416 12415])
-            ("org-odt-category-map-alist" variable (:default-value (quote (("__Table__" "Table" "value" "Table" org-odt--enumerable-p) ("__Figure__" "Illustration" "value" "Figure" org-odt--enumerable-image-p) ("__MathFormula__" "Text" "math-formula" "Equation" org-odt--enumerable-formula-p) ("__DvipngImage__" "Equation" "value" "Equation" org-odt--enumerable-latex-image-p) ("__Listing__" "Listing" "value" "Listing" org-odt--enumerable-p)))) nil [12417 13580])
-            ("org-odt-manifest-file-entries" variable nil nil [13582 13624])
-            ("hfy-user-sheet-assoc" variable nil nil [13625 13654])
-            ("org-odt-zip-dir" variable nil nil [13656 13740])
-            ("org-export-odt" customgroup (:user-visible-flag t) nil [13779 13902])
-            ("org-odt-prettify-xml" variable nil nil [13921 14274])
-            ("rng-loc" include nil nil [14299 14317])
-            ("org-odt-schema-dir" variable (:default-value (cl-find-if (lambda (dir) (and dir (file-expand-wildcards (expand-file-name "od-manifest-schema*.rnc" dir)) (file-expand-wildcards (expand-file-name "od-schema*.rnc" dir)) (file-readable-p (expand-file-name "schemas.xml" dir)))) org-odt-schema-dir-list)) nil [14318 16180])
-            ("org-odt-content-template-file" variable nil nil [16205 16551])
-            ("org-odt-styles-file" variable nil nil [16553 18098])
-            ("org-odt-display-outline-level" variable (:default-value 2) nil [18100 18303])
-            ("org-odt-convert-processes" variable (:default-value (quote (("LibreOffice" "soffice --headless --convert-to %f%x --outdir %d %i") ("unoconv" "unoconv -f %f -o %d %i")))) nil [18331 19392])
-            ("org-odt-convert-process" variable (:default-value "LibreOffice") nil [19394 19925])
-            ("org-odt-convert-capabilities" variable (:default-value (quote (("Text" ("odt" "ott" "doc" "rtf" "docx") (("pdf" "pdf") ("odt" "odt") ("rtf" "rtf") ("ott" "ott") ("doc" "doc" ":\"MS Word 97\"") ("docx" "docx") ("html" "html"))) ("Web" ("html") (("pdf" "pdf") ("odt" "odt") ("html" "html"))) ("Spreadsheet" ("ods" "ots" "xls" "csv" "xlsx") (("pdf" "pdf") ("ots" "ots") ("html" "html") ("csv" "csv") ("ods" "ods") ("xls" "xls") ("xlsx" "xlsx"))) ("Presentation" ("odp" "otp" "ppt" "pptx") (("pdf" "pdf") ("swf" "swf") ("odp" "odp") ("otp" "otp") ("ppt" "ppt") ("pptx" "pptx") ("odg" "odg")))))) nil [19927 22525])
-            ("org-odt-preferred-output-format" variable nil nil [22527 23339])
-            ("put" code nil nil [23355 23423])
-            ("org-odt-format-drawer-function" variable (:default-value (lambda (_name contents) contents)) nil [23440 23904])
-            ("org-odt-format-headline-function" variable (:default-value (quote org-odt-format-headline-default-function)) nil [23922 24509])
-            ("org-odt-format-inlinetask-function" variable (:default-value (quote org-odt-format-inlinetask-default-function)) nil [24530 25177])
-            ("org-odt-with-latex" variable (:default-value org-export-with-latex) nil [25192 26298])
-            ("org-odt-inline-formula-rules" variable (:default-value (quote (("file" . "\\.\\(mathml\\|mml\\|odf\\)\\'")))) nil [26313 26773])
-            ("org-odt-inline-image-rules" variable (:default-value (quote (("file" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")))) nil [26775 27241])
-            ("org-odt-pixels-per-inch" variable (:default-value 96.0) nil [27243 27540])
-            ("org-odt-create-custom-styles-for-srcblocks" variable (:default-value t) nil [27559 28295])
-            ("org-odt-fontify-srcblocks" variable (:default-value t) nil [28297 28648])
-            ("org-odt-table-styles" variable (:default-value (quote (("OrgEquation" "OrgEquation" ((use-first-column-styles . t) (use-last-column-styles . t))) ("TableWithHeaderRowAndColumn" "Custom" ((use-first-row-styles . t) (use-first-column-styles . t))) ("TableWithFirstRowandLastRow" "Custom" ((use-first-row-styles . t) (use-last-row-styles . t))) ("GriddedTable" "Custom" nil)))) nil [28663 32646])
-            ("org-odt-use-date-fields" variable nil nil [32665 33964])
-            ("org-odt--format-timestamp" function (:arguments ("timestamp" "end" "iso-date-p")) nil [34004 36112])
-            ("org-odt--frame" function (:arguments ("text" "width" "height" "style" "extra" "anchor-type" "title-and-desc")) nil [36126 36953])
-            ("org-odt--zip-extract" function (:arguments ("archive" "members" "target")) nil [36979 37849])
-            ("org-odt--target" function (:arguments ("text" "id")) nil [37864 38127])
-            ("org-odt--textbox" function (:arguments ("text" "width" "height" "style" "extra" "anchor-type")) nil [38143 38488])
-            ("org-odt--format-toc" function (:arguments ("title" "entries" "depth")) nil [38516 39905])
-            ("cl-defun" code nil nil [39907 40947])
-            ("org-odt-toc" function (:arguments ("depth" "info" "scope")) nil [40949 42417])
-            ("org-odt-add-automatic-style" function (:arguments ("object-type" "object-props")) nil [42442 43543])
-            ("org-odt--checkbox" function (:arguments ("item")) nil [43560 43903])
-            ("org-odt--build-date-styles" function (:arguments ("fmt" "style")) nil [43919 47655])
-            ("org-odt-template" function (:arguments ("contents" "info")) nil [47657 58616])
-            ("org-odt-bold" function (:arguments ("_bold" "contents" "_info")) nil [58657 58905])
-            ("org-odt-center-block" function (:arguments ("_center-block" "contents" "_info")) nil [58927 59149])
-            ("org-odt-clock" function (:arguments ("clock" "contents" "info")) nil [59164 59827])
-            ("org-odt-code" function (:arguments ("code" "_contents" "_info")) nil [59841 60142])
-            ("org-odt-drawer" function (:arguments ("drawer" "contents" "info")) nil [60158 60499])
-            ("org-odt-dynamic-block" function (:arguments ("_dynamic-block" "contents" "_info")) nil [60522 60764])
-            ("org-odt-entity" function (:arguments ("entity" "_contents" "_info")) nil [60780 60999])
-            ("org-odt-example-block" function (:arguments ("example-block" "_contents" "info")) nil [61022 61246])
-            ("org-odt-export-snippet" function (:arguments ("export-snippet" "_contents" "_info")) nil [61270 61566])
-            ("org-odt-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [61588 61906])
-            ("org-odt-fixed-width" function (:arguments ("fixed-width" "_contents" "info")) nil [61927 62176])
-            ("org-odt-footnote-reference" function (:arguments ("footnote-reference" "_contents" "info")) nil [62269 64626])
-            ("org-odt-format-headline--wrap" function (:arguments ("headline" "backend" "info" "format-function" "extra-keys")) nil [64644 66280])
-            ("org-odt-headline" function (:arguments ("headline" "contents" "info")) nil [66282 68853])
-            ("org-odt-format-headline-default-function" function (:arguments ("todo" "todo-type" "priority" "text" "tags")) nil [68855 69732])
-            ("org-odt-horizontal-rule" function (:arguments ("_horizontal-rule" "_contents" "_info")) nil [69757 70032])
-            ("org-odt--find-verb-separator" function (:arguments ("s")) nil [70119 70496])
-            ("org-odt-inline-src-block" function (:arguments ("_inline-src-block" "_contents" "_info")) nil [70498 70733])
-            ("org-odt-inlinetask" function (:arguments ("inlinetask" "contents" "info")) nil [70753 71567])
-            ("org-odt-format-inlinetask-default-function" function (:arguments ("todo" "todo-type" "priority" "name" "tags" "contents")) nil [71569 72131])
-            ("org-odt-italic" function (:arguments ("_italic" "contents" "_info")) nil [72146 72406])
-            ("org-odt-item" function (:arguments ("item" "contents" "info")) nil [72420 72993])
-            ("org-odt-keyword" function (:arguments ("keyword" "_contents" "info")) nil [73009 73821])
-            ("org-odt-latex-environment" function (:arguments ("latex-environment" "_contents" "info")) nil [74228 74571])
-            ("org-odt-latex-fragment" function (:arguments ("latex-fragment" "_contents" "_info")) nil [74762 75135])
-            ("org-odt-line-break" function (:arguments ("_line-break" "_contents" "_info")) nil [75155 75351])
-            ("org-odt--enumerate" function (:arguments ("element" "info" "predicate" "n")) nil [75397 76604])
-            ("org-odt-format-label" function (:arguments ("element" "info" "op")) nil [76606 79861])
-            ("org-odt--copy-image-file" function (:arguments ("path")) nil [79893 80603])
-            ("org-odt--image-size" function (:arguments ("file" "info" "user-width" "user-height" "scale" "dpi" "embed-as")) nil [80605 82966])
-            ("org-odt-link--inline-image" function (:arguments ("element" "info")) nil [82968 86039])
-            ("org-odt-link--inline-formula" function (:arguments ("element" "info")) nil [86070 87958])
-            ("org-odt--copy-formula-file" function (:arguments ("src-file")) nil [87960 89124])
-            ("org-odt--render-image/formula" function (:arguments ("cfg-key" "href" "width" "height" "captions" "user-frame-params" "title-and-desc")) nil [89140 93246])
-            ("org-odt--enumerable-p" function (:arguments ("element" "_info")) nil [93248 93428])
-            ("org-odt--enumerable-image-p" function (:arguments ("element" "info")) nil [93430 94014])
-            ("org-odt--enumerable-latex-image-p" function (:arguments ("element" "info")) nil [94016 94597])
-            ("org-odt--enumerable-formula-p" function (:arguments ("element" "info")) nil [94599 95031])
-            ("org-odt--standalone-link-p" function (:arguments ("element" "_info" "paragraph-predicate" "link-predicate")) nil [95033 96359])
-            ("org-odt-link--infer-description" function (:arguments ("destination" "info")) nil [96361 100284])
-            ("org-odt-link" function (:arguments ("link" "desc" "info")) nil [100286 105180])
-            ("org-odt-node-property" function (:arguments ("node-property" "_contents" "_info")) nil [105203 105585])
-            ("org-odt--paragraph-style" function (:arguments ("paragraph")) nil [105603 105993])
-            ("org-odt--format-paragraph" function (:arguments ("paragraph" "contents" "info" "default" "center" "quote")) nil [105995 106957])
-            ("org-odt-paragraph" function (:arguments ("paragraph" "contents" "info")) nil [106959 107320])
-            ("org-odt-plain-list" function (:arguments ("plain-list" "contents" "_info")) nil [107340 108122])
-            ("org-odt--encode-tabs-and-spaces" function (:arguments ("line")) nil [108141 108366])
-            ("org-odt--encode-plain-text" function (:arguments ("text" "no-whitespace-filling")) nil [108368 108659])
-            ("org-odt-plain-text" function (:arguments ("text" "info")) nil [108661 109618])
-            ("org-odt-planning" function (:arguments ("planning" "contents" "info")) nil [109636 110647])
-            ("org-odt-property-drawer" function (:arguments ("_property-drawer" "contents" "_info")) nil [110672 111015])
-            ("org-odt-quote-block" function (:arguments ("_quote-block" "contents" "_info")) nil [111036 111248])
-            ("org-odt-format-section" function (:arguments ("text" "style" "name")) nil [111265 111550])
-            ("org-odt-section" function (:arguments ("_section" "contents" "_info")) nil [111553 111763])
-            ("org-odt-radio-target" function (:arguments ("radio-target" "text" "info")) nil [111784 112041])
-            ("org-odt-special-block" function (:arguments ("special-block" "contents" "info")) nil [112064 113496])
-            ("org-odt-hfy-face-to-css" function (:arguments ("fn")) nil [113515 114897])
-            ("org-odt-htmlfontify-string" function (:arguments ("line")) nil [114899 115603])
-            ("org-odt-do-format-code" function (:arguments ("code" "info" "lang" "refs" "retain-labels" "num-start")) nil [115605 117466])
-            ("org-odt-format-code" function (:arguments ("element" "info")) nil [117468 117958])
-            ("org-odt-src-block" function (:arguments ("src-block" "_contents" "info")) nil [117960 118654])
-            ("org-odt-statistics-cookie" function (:arguments ("statistics-cookie" "_contents" "_info")) nil [118681 119039])
-            ("org-odt-strike-through" function (:arguments ("_strike-through" "contents" "_info")) nil [119063 119360])
-            ("org-odt-subscript" function (:arguments ("_subscript" "contents" "_info")) nil [119379 119660])
-            ("org-odt-superscript" function (:arguments ("_superscript" "contents" "_info")) nil [119681 119970])
-            ("org-odt-table-style-spec" function (:arguments ("element" "info")) nil [119990 120270])
-            ("org-odt-get-table-cell-styles" function (:arguments ("table-cell" "info")) nil [120272 123036])
-            ("org-odt-table-cell" function (:arguments ("table-cell" "contents" "info")) nil [123038 125516])
-            ("org-odt-table-row" function (:arguments ("table-row" "contents" "info")) nil [125535 126778])
-            ("org-odt-table-first-row-data-cells" function (:arguments ("table" "info")) nil [126793 127187])
-            ("org-odt--table" function (:arguments ("table" "contents" "info")) nil [127189 129132])
-            ("org-odt-table" function (:arguments ("table" "contents" "info")) nil [129134 134858])
-            ("org-odt-target" function (:arguments ("target" "_contents" "info")) nil [134874 135095])
-            ("org-odt-timestamp" function (:arguments ("timestamp" "_contents" "info")) nil [135114 136787])
-            ("org-odt-underline" function (:arguments ("_underline" "contents" "_info")) nil [136806 137079])
-            ("org-odt-verbatim" function (:arguments ("verbatim" "_contents" "_info")) nil [137097 137414])
-            ("org-odt-verse-block" function (:arguments ("_verse-block" "contents" "_info")) nil [137435 137957])
-            ("org-odt--translate-image-links" function (:arguments ("data" "_backend" "info")) nil [137987 138117])
-            ("org-odt--translate-latex-fragments" function (:arguments ("tree" "_backend" "info")) nil [138141 141952])
-            ("org-odt--translate-description-lists" function (:arguments ("tree" "_backend" "info")) nil [142096 143811])
-            ("org-odt--translate-list-tables" function (:arguments ("tree" "_backend" "info")) nil [145013 146606])
-            ("org-odt-create-manifest-file-entry" function (:arguments ("args")) nil [146637 146736])
-            ("org-odt-write-manifest-file" function nil nil [146738 147542])
-            ("org-odt--export-wrap" function (:arguments ("out-file" "body")) nil [147544 151883])
-            ("org-odt-export-as-odf" function
-               (:user-visible-flag t
-                :arguments ("latex-frag" "odf-file"))
-                nil [151938 153903])
-            ("org-odt-export-as-odf-and-open" function (:user-visible-flag t) nil [153920 154204])
-            ("org-odt-export-to-odt" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "ext-plist"))
-                nil [154256 156735])
-            ("org-odt-reachable-p" function (:arguments ("in-fmt" "out-fmt")) nil [156791 157134])
-            ("org-odt-do-convert" function (:arguments ("in-file" "out-fmt" "open")) nil [157136 158657])
-            ("org-odt-do-reachable-formats" function (:arguments ("in-fmt")) nil [158659 159485])
-            ("org-odt-reachable-formats" function (:arguments ("in-fmt")) nil [159487 159777])
-            ("org-odt-convert-read-params" function nil nil [159779 160426])
-            ("org-odt-convert" function
-               (:user-visible-flag t
-                :arguments ("in-file" "out-fmt" "open"))
-                nil [160443 160959])
-            ("dolist" code nil nil [160990 161184])
-            ("ox-odt" package nil nil [161186 161203]))          
-      :file "ox-odt.el"
-      :pointmax 161304
-      :fsize 161303
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1555 1572])
-            ("org" include nil nil [1573 1587])
-            ("org-id" include nil nil [1588 1605])
-            ("vc-git" include nil nil [1606 1623])
-            ("declare-function" code nil nil [1625 1683])
-            ("org-attach" customgroup (:user-visible-flag t) nil [1685 1798])
-            ("org-attach-directory" variable (:default-value "data/") nil [1800 2031])
-            ("org-attach-commit" variable (:default-value t) nil [2033 2256])
-            ("org-attach-git-annex-cutoff" variable (:default-value (* 32 1024)) nil [2258 2527])
-            ("org-attach-auto-tag" variable (:default-value "ATTACH") nil [2529 2736])
-            ("org-attach-file-list-property" variable (:default-value "Attachments") nil [2738 3144])
-            ("org-attach-method" variable (:default-value (quote cp)) nil [3146 3725])
-            ("org-attach-expert" variable nil nil [3727 3874])
-            ("org-attach-allow-inheritance" variable (:default-value t) nil [3876 4017])
-            ("org-attach-inherited" variable nil nil [4019 4128])
-            ("org-attach-store-link-p" variable nil nil [4130 4428])
-            ("org-attach-archive-delete" variable nil nil [4430 4805])
-            ("org-attach-annex-auto-get" variable (:default-value (quote ask)) nil [4807 5227])
-            ("org-attach" function (:user-visible-flag t) nil [5244 8512])
-            ("org-attach-dir" function (:arguments ("create-if-not-exists-p")) nil [8514 10271])
-            ("org-attach-check-absolute-path" function (:arguments ("dir")) nil [10273 10872])
-            ("org-attach-set-directory" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [10874 11915])
-            ("org-attach-set-inherit" function (:user-visible-flag t) nil [11917 12325])
-            ("org-attach-use-annex" function nil nil [12327 12649])
-            ("org-attach-annex-get-maybe" function (:arguments ("path")) nil [12651 13576])
-            ("org-attach-commit" function nil nil [13578 14726])
-            ("org-attach-tag" function (:arguments ("off")) nil [14728 14955])
-            ("org-attach-untag" function nil nil [14957 15034])
-            ("org-attach-store-link" function (:arguments ("file")) nil [15036 15318])
-            ("org-attach-url" function (:arguments ("url")) nil [15320 15423])
-            ("org-attach-attach" function
-               (:user-visible-flag t
-                :arguments ("file" "visit-dir" "method"))
-                nil [15425 17022])
-            ("org-attach-attach-cp" function (:user-visible-flag t) nil [17024 17178])
-            ("org-attach-attach-mv" function (:user-visible-flag t) nil [17179 17343])
-            ("org-attach-attach-ln" function (:user-visible-flag t) nil [17344 17649])
-            ("org-attach-attach-lns" function (:user-visible-flag t) nil [17650 17966])
-            ("org-attach-new" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [17968 18460])
-            ("org-attach-delete-one" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [18462 19004])
-            ("org-attach-delete-all" function
-               (:user-visible-flag t
-                :arguments ("force"))
-                nil [19006 19731])
-            ("org-attach-sync" function (:user-visible-flag t) nil [19733 20429])
-            ("org-attach-file-list" function (:arguments ("dir")) nil [20431 20673])
-            ("org-attach-reveal" function
-               (:user-visible-flag t
-                :arguments ("if-exists"))
-                nil [20675 20969])
-            ("org-attach-reveal-in-emacs" function (:user-visible-flag t) nil [20971 21153])
-            ("org-attach-open" function
-               (:user-visible-flag t
-                :arguments ("in-emacs"))
-                nil [21155 21851])
-            ("org-attach-open-in-emacs" function (:user-visible-flag t) nil [21853 22002])
-            ("org-attach-expand" function (:arguments ("file")) nil [22004 22208])
-            ("org-attach-expand-link" function (:arguments ("file")) nil [22210 22451])
-            ("org-attach-archive-delete-maybe" function nil nil [22453 22815])
-            ("add-hook" code nil nil [22817 22878])
-            ("org-attach" package nil nil [22880 22901]))          
-      :file "org-attach.el"
-      :pointmax 23006
-      :fsize 23005
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1937 1954])
-            ("org-macs" include nil nil [1955 1974])
-            ("declare-function" code nil nil [1975 2032])
-            ("org-duration-canonical-units" variable
-               (:constant-flag t
-                :default-value (\` (("min" . 1) ("h" . 60) ("d" \, (* 60 24)))))
-                nil [2058 2225])
-            ("org-duration-units" variable (:default-value (\` (("min" . 1) ("h" . 60) ("d" \, (* 60 24)) ("w" \, (* 60 24 7)) ("m" \, (* 60 24 30)) ("y" \, (* 60 24 365.25))))) nil [2227 3397])
-            ("org-duration-format" variable (:default-value (quote (("d") (special . h:mm)))) nil [3399 6127])
-            ("org-duration--h:mm-re" variable
-               (:constant-flag t
-                :default-value "\\`[ 	]*[0-9]+\\(?::[0-9]\\{2\\}\\)\\{1,2\\}[ 	]*\\'")
-                nil [6169 6424])
-            ("org-duration--h:mm:ss-re" variable
-               (:constant-flag t
-                :default-value "\\`[ 	]*[0-9]+\\(?::[0-9]\\{2\\}\\)\\{2\\}[ 	]*\\'")
-                nil [6426 6669])
-            ("org-duration--unit-re" variable nil nil [6671 6876])
-            ("org-duration--full-re" variable nil nil [6878 7016])
-            ("org-duration--mixed-re" variable nil nil [7018 7266])
-            ("org-duration--modifier" function (:arguments ("unit" "canonical")) nil [7268 7627])
-            ("org-duration-set-regexps" function (:user-visible-flag t) nil [7668 8416])
-            ("org-duration-p" function (:arguments ("s")) nil [8433 8669])
-            ("org-duration-to-minutes" function (:arguments ("duration" "canonical")) nil [8686 10115])
-            ("org-duration-from-minutes" function (:arguments ("minutes" "fmt" "canonical")) nil [10132 14164])
-            ("org-duration-h:mm-only-p" function (:arguments ("times")) nil [14181 14898])
-            ("org-duration-set-regexps" code nil nil [14922 14948])
-            ("org-duration" package nil nil [14950 14973]))          
-      :file "org-duration.el"
-      :pointmax 15004
-      :fsize 15003
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1176 1193])
-            ("ox-latex" include nil nil [1194 1213])
-            ("unless" code nil nil [1262 1541])
-            ("org-export-beamer" customgroup (:user-visible-flag t) nil [1579 1735])
-            ("org-beamer-frame-level" variable (:default-value 1) nil [1737 2429])
-            ("org-beamer-frame-default-options" variable nil nil [2431 2641])
-            ("org-beamer-column-view-format" variable (:default-value "%45ITEM %10BEAMER_env(Env) %10BEAMER_act(Act) %4BEAMER_col(Col) %8BEAMER_opt(Opt)") nil [2643 3041])
-            ("org-beamer-theme" variable (:default-value "default") nil [3043 3310])
-            ("org-beamer-environments-extra" variable nil nil [3312 4340])
-            ("org-beamer-outline-frame-title" variable (:default-value "Outline") nil [4342 4519])
-            ("org-beamer-outline-frame-options" variable nil nil [4521 4758])
-            ("org-beamer-subtitle-format" variable (:default-value "\\subtitle{%s}") nil [4761 5081])
-            ("org-beamer-column-widths" variable
-               (:constant-flag t
-                :default-value "0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.0 :ETC")
-                nil [5109 5266])
-            ("org-beamer-environments-special" variable
-               (:constant-flag t
-                :default-value (quote (("againframe" "A") ("appendix" "x") ("column" "c") ("columns" "C") ("frame" "f") ("fullframe" "F") ("ignoreheading" "i") ("note" "n") ("noteNH" "N"))))
-                nil [5268 5864])
-            ("org-beamer-environments-default" variable
-               (:constant-flag t
-                :default-value (quote (("block" "b" "\\begin{block}%a{%h}" "\\end{block}") ("alertblock" "a" "\\begin{alertblock}%a{%h}" "\\end{alertblock}") ("verse" "v" "\\begin{verse}%a %% %h" "\\end{verse}") ("quotation" "q" "\\begin{quotation}%a %% %h" "\\end{quotation}") ("quote" "Q" "\\begin{quote}%a %% %h" "\\end{quote}") ("structureenv" "s" "\\begin{structureenv}%a %% %h" "\\end{structureenv}") ("theorem" "t" "\\begin{theorem}%a[%h]" "\\end{theorem}") ("definition" "d" "\\begin{definition}%a[%h]" "\\end{definition}") ("example" "e" "\\begin{example}%a[%h]" "\\end{example}") ("exampleblock" "E" "\\begin{exampleblock}%a{%h}" "\\end{exampleblock}") ("proof" "p" "\\begin{proof}%a[%h]" "\\end{proof}") ("beamercolorbox" "o" "\\begin{beamercolorbox}%o{%h}" "\\end{beamercolorbox}"))))
-                nil [5866 6981])
-            ("org-beamer-verbatim-elements" variable
-               (:constant-flag t
-                :default-value (quote (code example-block fixed-width inline-src-block src-block verbatim)))
-                nil [6983 7241])
-            ("org-beamer--normalize-argument" function (:arguments ("argument" "type")) nil [7270 8006])
-            ("org-beamer--element-has-overlay-p" function (:arguments ("element")) nil [8008 8555])
-            ("org-export-define-derived-backend" code nil nil [8581 10317])
-            ("org-beamer-bold" function (:arguments ("bold" "contents" "_info")) nil [10358 10622])
-            ("org-beamer-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [10644 10981])
-            ("org-beamer-export-snippet" function (:arguments ("export-snippet" "_contents" "info")) nil [11005 11608])
-            ("org-beamer--get-label" function (:arguments ("headline" "info")) nil [12113 12960])
-            ("org-beamer--frame-level" function (:arguments ("headline" "info")) nil [12962 14105])
-            ("org-beamer--format-section" function (:arguments ("headline" "contents" "info")) nil [14107 15349])
-            ("org-beamer--format-frame" function (:arguments ("headline" "contents" "info")) nil [15351 18355])
-            ("org-beamer--format-block" function (:arguments ("headline" "contents" "info")) nil [18357 22575])
-            ("org-beamer-headline" function (:arguments ("headline" "contents" "info")) nil [22577 25662])
-            ("org-beamer-item" function (:arguments ("item" "contents" "info")) nil [25676 26680])
-            ("org-beamer-keyword" function (:arguments ("keyword" "contents" "info")) nil [26697 27602])
-            ("org-beamer-link" function (:arguments ("link" "contents" "info")) nil [27616 28305])
-            ("org-beamer-plain-list" function (:arguments ("plain-list" "contents" "info")) nil [28408 29534])
-            ("org-beamer-radio-target" function (:arguments ("radio-target" "text" "info")) nil [29556 29900])
-            ("org-beamer-template" function (:arguments ("contents" "info")) nil [30043 33626])
-            ("org-beamer-mode-map" variable (:default-value (make-sparse-keymap)) nil [33648 33735])
-            ("define-key" code nil nil [33736 33810])
-            ("define-minor-mode" code nil nil [33827 33951])
-            ("when" code nil nil [33953 34106])
-            ("org-beamer-tag" variable
-               (:default-value (quote ((t (:box (:line-width 1 :color grey40)))))
-                :type "face")
-                nil [34108 34242])
-            ("org-beamer-property-changed" function (:arguments ("property" "value")) nil [34244 34938])
-            ("add-hook" code nil nil [34940 35011])
-            ("org-beamer-allowed-property-values" function (:arguments ("property")) nil [35013 35681])
-            ("add-hook" code nil nil [35683 35770])
-            ("org-beamer-export-as-latex" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [35804 37015])
-            ("org-beamer-export-to-latex" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [37032 38162])
-            ("org-beamer-export-to-pdf" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [38179 39351])
-            ("org-beamer-select-environment" function (:user-visible-flag t) nil [39368 41436])
-            ("org-beamer-publish-to-latex" function (:arguments ("plist" "filename" "pub-dir")) nil [41453 41806])
-            ("org-beamer-publish-to-pdf" function (:arguments ("plist" "filename" "pub-dir")) nil [41823 42682])
-            ("ox-beamer" package nil nil [42685 42705]))          
-      :file "ox-beamer.el"
-      :pointmax 42809
-      :fsize 42808
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1111 1128])
-            ("org" include nil nil [1129 1143])
-            ("declare-function" code nil nil [1145 1208])
-            ("declare-function" code nil nil [1209 1272])
-            ("declare-function" code nil nil [1273 1351])
-            ("declare-function" code nil nil [1352 1422])
-            ("declare-function" code nil nil [1423 1489])
-            ("declare-function" code nil nil [1490 1611])
-            ("declare-function" code nil nil [1612 1717])
-            ("declare-function" code nil nil [1718 1790])
-            ("declare-function" code nil nil [1791 1857])
-            ("declare-function" code nil nil [1858 1917])
-            ("org-agenda-columns-add-appointments-to-effort-sum" variable nil nil [1919 1977])
-            ("org-agenda-columns-compute-summary-properties" variable nil nil [1978 2032])
-            ("org-agenda-columns-show-summaries" variable nil nil [2033 2075])
-            ("org-agenda-view-columns-initially" variable nil nil [2076 2118])
-            ("org-inlinetask-min-level" variable nil nil [2119 2152])
-            ("org-columns-modify-value-for-display-function" variable nil nil [2175 2698])
-            ("org-columns-summary-types" variable nil nil [2700 3664])
-            ("defvar-local" code nil nil [3686 3772])
-            ("defvar-local" code nil nil [3774 3878])
-            ("defvar-local" code nil nil [3880 4037])
-            ("defvar-local" code nil nil [4039 4144])
-            ("defvar-local" code nil nil [4146 4265])
-            ("defvar-local" code nil nil [4267 4378])
-            ("org-columns--time" variable nil nil [4380 4477])
-            ("org-columns-map" variable (:default-value (make-sparse-keymap)) nil [4479 4564])
-            ("org-columns-summary-types-default" variable
-               (:constant-flag t
-                :default-value (quote (("+" . org-columns--summary-sum) ("$" . org-columns--summary-currencies) ("X" . org-columns--summary-checkbox) ("X/" . org-columns--summary-checkbox-count) ("X%" . org-columns--summary-checkbox-percent) ("max" . org-columns--summary-max) ("mean" . org-columns--summary-mean) ("min" . org-columns--summary-min) (":" . org-columns--summary-sum-times) (":max" . org-columns--summary-max-time) (":mean" . org-columns--summary-mean-time) (":min" . org-columns--summary-min-time) ("@max" . org-columns--summary-max-age) ("@mean" . org-columns--summary-mean-age) ("@min" . org-columns--summary-min-age) ("est+" . org-columns--summary-estimate))))
-                nil [4566 5431])
-            ("org-columns-content" function (:user-visible-flag t) nil [5433 5563])
-            ("org-defkey" code nil nil [5565 5618])
-            ("org-defkey" code nil nil [5619 5665])
-            ("org-defkey" code nil nil [5666 5722])
-            ("org-defkey" code nil nil [5723 5780])
-            ("org-defkey" code nil nil [5781 5852])
-            ("org-defkey" code nil nil [5853 5915])
-            ("org-defkey" code nil nil [5916 5972])
-            ("org-defkey" code nil nil [5973 6023])
-            ("org-defkey" code nil nil [6024 6074])
-            ("org-defkey" code nil nil [6075 6125])
-            ("org-defkey" code nil nil [6126 6176])
-            ("org-defkey" code nil nil [6177 6227])
-            ("org-defkey" code nil nil [6228 6286])
-            ("org-defkey" code nil nil [6287 6348])
-            ("org-defkey" code nil nil [6349 6440])
-            ("org-defkey" code nil nil [6441 6533])
-            ("org-defkey" code nil nil [6534 6836])
-            ("org-defkey" code nil nil [6837 7137])
-            ("org-defkey" code nil nil [7138 7214])
-            ("org-defkey" code nil nil [7215 7279])
-            ("org-defkey" code nil nil [7280 7359])
-            ("org-defkey" code nil nil [7360 7428])
-            ("org-defkey" code nil nil [7429 7481])
-            ("org-defkey" code nil nil [7482 7533])
-            ("org-defkey" code nil nil [7534 7601])
-            ("org-defkey" code nil nil [7602 7667])
-            ("org-defkey" code nil nil [7668 7734])
-            ("org-defkey" code nil nil [7735 7803])
-            ("dotimes" code nil nil [7804 7949])
-            ("easy-menu-define" code nil nil [7951 8896])
-            ("org-columns--displayed-value" function (:arguments ("spec" "value")) nil [8898 9749])
-            ("org-columns--collect-values" function (:arguments ("compiled-fmt")) nil [9751 10891])
-            ("org-columns--set-widths" function (:arguments ("cache")) nil [10893 11621])
-            ("org-columns--new-overlay" function (:arguments ("beg" "end" "string" "face")) nil [11623 11922])
-            ("org-columns--summarize" function (:arguments ("operator")) nil [11924 12210])
-            ("org-columns--overlay-text" function (:arguments ("value" "fmt" "width" "property" "original")) nil [12212 12907])
-            ("org-columns--display-here" function (:arguments ("columns" "dateline")) nil [12909 15844])
-            ("org-columns-add-ellipses" function (:arguments ("string" "width")) nil [15846 16195])
-            ("org-columns-full-header-line-format" variable nil nil [16197 16320])
-            ("org-previous-header-line-format" variable nil nil [16321 16426])
-            ("org-columns-inhibit-recalculation" variable nil nil [16427 16532])
-            ("org-columns-flyspell-was-active" variable nil nil [16533 16742])
-            ("header-line-format" variable nil nil [16744 16771])
-            ("org-columns-previous-hscroll" variable nil nil [16772 16811])
-            ("org-columns--display-here-title" function (:user-visible-flag t) nil [16813 17627])
-            ("org-columns-hscroll-title" function nil nil [17629 18129])
-            ("org-colview-initial-truncate-line-value" variable nil nil [18131 18242])
-            ("org-columns-remove-overlays" function (:user-visible-flag t) nil [18259 19236])
-            ("org-columns-compact-links" function (:arguments ("s")) nil [19238 19484])
-            ("org-columns-show-value" function (:user-visible-flag t) nil [19486 19684])
-            ("org-agenda-columns-active" variable nil nil [19686 19720])
-            ("org-columns-quit" function (:user-visible-flag t) nil [19750 20247])
-            ("org-columns-check-computed" function nil nil [20249 20586])
-            ("org-columns-todo" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [20588 20729])
-            ("org-columns-set-tags-or-toggle" function
-               (:user-visible-flag t
-                :arguments ("_arg"))
-                nil [20731 21041])
-            ("org-agenda-overriding-columns-format" variable nil nil [21043 21211])
-            ("org-columns-edit-value" function
-               (:user-visible-flag t
-                :arguments ("key"))
-                nil [21213 24105])
-            ("org-columns-edit-allowed" function (:user-visible-flag t) nil [24107 24910])
-            ("org-columns--call" function (:arguments ("fun")) nil [24912 25267])
-            ("org-columns-previous-allowed-value" function (:user-visible-flag t) nil [25269 25425])
-            ("org-columns-next-allowed-value" function
-               (:user-visible-flag t
-                :arguments ("previous" "nth"))
-                nil [25427 27882])
-            ("org-colview-construct-allowed-dates" function (:arguments ("s")) nil [27884 28921])
-            ("org-columns-open-link" function (:arguments ("arg")) nil [28923 29095])
-            ("org-columns-get-format-and-top-level" function nil nil [29112 29241])
-            ("org-columns-get-format" function
-               (:user-visible-flag t
-                :arguments ("fmt-string"))
-                nil [29243 30074])
-            ("org-columns-goto-top-level" function nil nil [30076 30556])
-            ("org-columns" function
-               (:user-visible-flag t
-                :arguments ("global" "columns-fmt-string"))
-                nil [30573 32676])
-            ("org-columns-new" function
-               (:user-visible-flag t
-                :arguments ("spec" "attributes"))
-                nil [32678 34174])
-            ("org-columns-delete" function (:user-visible-flag t) nil [34176 34920])
-            ("org-columns-edit-attributes" function (:user-visible-flag t) nil [34922 35099])
-            ("org-columns-widen" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [35101 35504])
-            ("org-columns-narrow" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [35506 35636])
-            ("org-columns-move-right" function (:user-visible-flag t) nil [35638 36692])
-            ("org-columns-move-left" function (:user-visible-flag t) nil [36694 36974])
-            ("org-columns-store-format" function nil nil [36976 38349])
-            ("org-columns-update" function (:arguments ("property")) nil [38351 39403])
-            ("org-columns-redo" function (:user-visible-flag t) nil [39405 39940])
-            ("org-columns-uncompile-format" function (:arguments ("compiled")) nil [39942 40472])
-            ("org-columns-compile-format" function (:arguments ("fmt")) nil [40474 41945])
-            ("org-columns--age-to-minutes" function (:arguments ("s")) nil [41975 42474])
-            ("org-columns--format-age" function (:arguments ("minutes")) nil [42476 42657])
-            ("org-columns--summary-apply-times" function (:arguments ("fun" "times")) nil [42687 43247])
-            ("org-columns--compute-spec" function (:arguments ("spec" "update")) nil [43249 46077])
-            ("org-columns-compute" function
-               (:user-visible-flag t
-                :arguments ("property"))
-                nil [46094 46599])
-            ("org-columns-compute-all" function nil nil [46601 47118])
-            ("org-columns--summary-sum" function (:arguments ("values" "printf")) nil [47120 47327])
-            ("org-columns--summary-currencies" function (:arguments ("values" "_")) nil [47329 47494])
-            ("org-columns--summary-checkbox" function (:arguments ("check-boxes" "_")) nil [47496 47748])
-            ("org-columns--summary-checkbox-count" function (:arguments ("check-boxes" "_")) nil [47750 48026])
-            ("org-columns--summary-checkbox-percent" function (:arguments ("check-boxes" "_")) nil [48028 48285])
-            ("org-columns--summary-min" function (:arguments ("values" "printf")) nil [48287 48503])
-            ("org-columns--summary-max" function (:arguments ("values" "printf")) nil [48505 48721])
-            ("org-columns--summary-mean" function (:arguments ("values" "printf")) nil [48723 48969])
-            ("org-columns--summary-sum-times" function (:arguments ("times" "_")) nil [48971 49081])
-            ("org-columns--summary-min-time" function (:arguments ("times" "_")) nil [49083 49221])
-            ("org-columns--summary-max-time" function (:arguments ("times" "_")) nil [49223 49361])
-            ("org-columns--summary-mean-time" function (:arguments ("times" "_")) nil [49363 49570])
-            ("org-columns--summary-min-age" function (:arguments ("ages" "_")) nil [49572 49747])
-            ("org-columns--summary-max-age" function (:arguments ("ages" "_")) nil [49749 49924])
-            ("org-columns--summary-mean-age" function (:arguments ("ages" "_")) nil [49926 50132])
-            ("org-columns--summary-estimate" function (:arguments ("estimates" "_")) nil [50134 50787])
-            ("org-columns--capture-view" function (:arguments ("maxlevel" "skip-empty" "format" "local")) nil [50827 52458])
-            ("org-columns--clean-item" function (:arguments ("item")) nil [52460 53015])
-            ("org-dblock-write:columnview" function (:arguments ("params")) nil [53032 57492])
-            ("org-columns-insert-dblock" function (:user-visible-flag t) nil [57509 58009])
-            ("org-agenda-columns" function (:user-visible-flag t) nil [58060 60230])
-            ("org-agenda-colview-summarize" function (:arguments ("cache")) nil [60232 62467])
-            ("org-agenda-colview-compute" function (:arguments ("fmt")) nil [62469 63261])
-            ("org-colview" package nil nil [63264 63286]))          
-      :file "org-colview.el"
-      :pointmax 63317
-      :fsize 63316
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [2108 2125])
-            ("org" include nil nil [2126 2140])
-            ("declare-function" code nil nil [2142 2200])
-            ("declare-function" code nil nil [2201 2278])
-            ("declare-function" code nil nil [2279 2376])
-            ("declare-function" code nil nil [2377 2428])
-            ("declare-function" code nil nil [2429 2480])
-            ("declare-function" code nil nil [2481 2532])
-            ("declare-function" code nil nil [2533 2590])
-            ("declare-function" code nil nil [2591 2645])
-            ("org-end-time-was-given" variable nil nil [2647 2678])
-            ("org-remember-default-headline" variable nil nil [2679 2717])
-            ("org-remember-templates" variable nil nil [2718 2749])
-            ("org-table-hlines" variable nil nil [2750 2775])
-            ("org-table-current-begin-pos" variable nil nil [2776 2812])
-            ("dired-buffers" variable nil nil [2813 2835])
-            ("org-capture-clock-was-started" variable nil nil [2837 2931])
-            ("org-capture-last-stored-marker" variable (:default-value (make-marker)) nil [2933 3060])
-            ("org-capture-link-is-already-stored" variable nil nil [3191 3238])
-            ("org-capture-is-refiling" variable nil nil [3240 3331])
-            ("org-capture--prompt-history-table" variable (:default-value (make-hash-table :test (function equal))) nil [3333 3456])
-            ("org-capture--prompt-history" variable nil nil [3458 3540])
-            ("org-capture" customgroup (:user-visible-flag t) nil [3542 3649])
-            ("org-capture-upgrade-templates" function (:arguments ("templates")) nil [3651 5100])
-            ("org-capture-templates" variable nil nil [5102 19125])
-            ("org-capture-before-finalize-hook" variable nil nil [19127 19391])
-            ("org-capture-after-finalize-hook" variable nil nil [19393 19588])
-            ("org-capture-prepare-finalize-hook" variable nil nil [19590 19796])
-            ("org-capture-bookmark" variable (:default-value t) nil [19798 19975])
-            ("org-capture-plist" variable nil nil [20050 20159])
-            ("org-capture-current-plist" variable nil nil [20161 20554])
-            ("org-capture-clock-keep" variable nil nil [20556 20728])
-            ("org-capture-put" function (:arguments ("stuff")) nil [20730 20946])
-            ("org-capture-get" function (:arguments ("prop" "local")) nil [20947 21328])
-            ("org-capture-member" function (:arguments ("prop" "local")) nil [21330 21690])
-            ("org-capture-mode-map" variable (:default-value (make-sparse-keymap)) nil [21712 21902])
-            ("org-capture-mode-hook" variable nil nil [21904 21981])
-            ("define-minor-mode" code nil nil [21983 22397])
-            ("define-key" code nil nil [22398 22464])
-            ("define-key" code nil nil [22465 22527])
-            ("define-key" code nil nil [22528 22592])
-            ("org-capture-initial" variable nil nil [22617 22649])
-            ("org-capture-entry" variable nil nil [22650 22680])
-            ("org-capture-string" function
-               (:user-visible-flag t
-                :arguments ("string" "keys"))
-                nil [22697 22951])
-            ("org-capture-templates-contexts" variable nil nil [22953 24747])
-            ("org-capture-use-agenda-date" variable nil nil [24749 25005])
-            ("org-capture" function
-               (:user-visible-flag t
-                :arguments ("goto" "keys"))
-                nil [25022 29236])
-            ("org-capture-get-template" function nil nil [29238 29955])
-            ("org-capture-finalize" function
-               (:user-visible-flag t
-                :arguments ("stay-with-capture"))
-                nil [29957 34882])
-            ("org-capture-refile" function (:user-visible-flag t) nil [34884 36437])
-            ("org-capture-kill" function (:user-visible-flag t) nil [36439 36747])
-            ("org-capture-goto-last-stored" function (:user-visible-flag t) nil [36749 37050])
-            ("org-capture-put-target-region-and-position" function nil nil [37103 37455])
-            ("org-time-was-given" variable nil nil [37457 37484])
-            ("org-capture-set-target-location" function (:arguments ("target")) nil [37516 42961])
-            ("org-capture-expand-file" function (:arguments ("file")) nil [42963 43702])
-            ("org-capture-target-buffer" function (:arguments ("file")) nil [43704 44018])
-            ("org-capture-place-template" function (:arguments ("inhibit-wconf-store")) nil [44020 44949])
-            ("org-capture-place-entry" function nil nil [44951 46306])
-            ("org-capture-place-item" function nil nil [46308 48372])
-            ("org-capture-place-table-line" function nil nil [48374 51404])
-            ("org-capture-place-plain-text" function nil nil [51406 52727])
-            ("org-capture-mark-kill-region" function (:arguments ("beg" "end")) nil [52729 52981])
-            ("org-capture-position-for-last-stored" function (:arguments ("where")) nil [52983 53486])
-            ("org-capture-store-last-position" function nil nil [53488 54243])
-            ("org-capture-narrow" function (:arguments ("beg" "end")) nil [54245 54426])
-            ("org-capture-empty-lines-before" function (:arguments ("n")) nil [54428 54835])
-            ("org-capture-empty-lines-after" function (:arguments ("n")) nil [54837 55269])
-            ("org-clock-marker" variable nil nil [55271 55296])
-            ("org-capture-insert-template-here" function nil nil [55318 56522])
-            ("org-capture-set-plist" function (:arguments ("entry")) nil [56524 57309])
-            ("org-capture-goto-target" function
-               (:user-visible-flag t
-                :arguments ("template-key"))
-                nil [57311 57762])
-            ("org-capture-get-indirect-buffer" function (:arguments ("buffer" "prefix")) nil [57764 58395])
-            ("org-capture-verify-tree" function (:arguments ("tree")) nil [58397 58576])
-            ("org-mks" function (:arguments ("table" "title" "prompt" "specials")) nil [58578 62092])
-            ("org-capture-select-template" function (:arguments ("keys")) nil [62116 62827])
-            ("org-capture--clipboards" variable nil nil [62829 62901])
-            ("org-capture-fill-template" function (:arguments ("template" "initial" "annotation")) nil [62903 72268])
-            ("org-capture-escaped-%" function nil nil [72270 72570])
-            ("org-capture-expand-embedded-elisp" function (:arguments ("mark")) nil [72572 73784])
-            ("org-capture--expand-keyword-in-embedded-elisp" function (:arguments ("attr")) nil [73786 74311])
-            ("org-capture-inside-embedded-elisp-p" function nil nil [74313 74550])
-            ("org-capture-import-remember-templates" function (:user-visible-flag t) nil [74567 76049])
-            ("org-capture" package nil nil [76052 76074]))          
-      :file "org-capture.el"
-      :pointmax 76105
-      :fsize 76104
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1126 1143])
-            ("org" include nil nil [1144 1158])
-            ("org-table" include nil nil [1159 1179])
-            ("declare-function" code nil nil [1181 1248])
-            ("declare-function" code nil nil [1249 1297])
-            ("declare-function" code nil nil [1298 1364])
-            ("org-plot/gnuplot-default-options" variable (:default-value (quote ((:plot-type . 2d) (:with . lines) (:ind . 0)))) nil [1366 1524])
-            ("org-plot-timestamp-fmt" variable nil nil [1526 1561])
-            ("org-plot/add-options-to-plist" function (:arguments ("p" "options")) nil [1563 2709])
-            ("org-plot/goto-nearest-table" function (:user-visible-flag t) nil [2711 3004])
-            ("org-plot/collect-options" function
-               (:user-visible-flag t
-                :arguments ("params"))
-                nil [3006 3409])
-            ("org-plot-quote-timestamp-field" function (:arguments ("s")) nil [3411 3598])
-            ("org-plot-quote-tsv-field" function (:arguments ("s")) nil [3600 3880])
-            ("org-plot/gnuplot-to-data" function (:arguments ("table" "data-file" "params")) nil [3882 4347])
-            ("org-plot/gnuplot-to-grid-data" function
-               (:user-visible-flag t
-                :arguments ("table" "data-file" "params"))
-                nil [4349 6307])
-            ("org-plot/gnuplot-script" function (:arguments ("data-file" "num-cols" "params" "preface")) nil [6309 9640])
-            ("org-plot/gnuplot" function
-               (:user-visible-flag t
-                :arguments ("params"))
-                nil [9757 12816])
-            ("org-plot" package nil nil [12818 12837]))          
-      :file "org-plot.el"
-      :pointmax 12940
-      :fsize 12939
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [962 979])
-            ("ob-core" include nil nil [980 998])
-            ("ob-table" include nil nil [999 1018])
-            ("declare-function" code nil nil [1020 1085])
-            ("declare-function" code nil nil [1086 1142])
-            ("declare-function" code nil nil [1143 1215])
-            ("declare-function" code nil nil [1216 1288])
-            ("declare-function" code nil nil [1289 1348])
-            ("org-babel-library-of-babel" variable nil nil [1350 1544])
-            ("org-babel-default-lob-header-args" variable (:default-value (quote ((:exports . "results")))) nil [1546 1912])
-            ("org-babel-lob-ingest" function
-               (:user-visible-flag t
-                :arguments ("file"))
-                nil [1914 2710])
-            ("org-babel-lob-execute-maybe" function (:user-visible-flag t) nil [2771 3125])
-            ("org-babel-lob--src-info" function (:arguments ("ref")) nil [3127 4569])
-            ("org-babel-lob-get-info" function (:arguments ("datum")) nil [4586 5981])
-            ("ob-lob" package nil nil [5983 6000]))          
-      :file "ob-lob.el"
-      :pointmax 6101
-      :fsize 6100
-      :lastmodtime '(23537 23330 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [3598 3612])
-            ("cl-lib" include nil nil [3613 3630])
-            ("declare-function" code nil nil [3677 3731])
-            ("declare-function" code nil nil [3732 3794])
-            ("declare-function" code nil nil [3795 3886])
-            ("declare-function" code nil nil [3887 3946])
-            ("declare-function" code nil nil [3947 4044])
-            ("declare-function" code nil nil [4045 4107])
-            ("declare-function" code nil nil [4108 4175])
-            ("declare-function" code nil nil [4176 4231])
-            ("declare-function" code nil nil [4232 4327])
-            ("declare-function" code nil nil [4328 4388])
-            ("declare-function" code nil nil [4389 4444])
-            ("declare-function" code nil nil [4445 4511])
-            ("declare-function" code nil nil [4512 4588])
-            ("declare-function" code nil nil [4589 4673])
-            ("declare-function" code nil nil [4719 4780])
-            ("declare-function" code nil nil [4838 4901])
-            ("declare-function" code nil nil [4903 4960])
-            ("declare-function" code nil nil [4961 5016])
-            ("with-no-warnings" code nil nil [5018 5050])
-            ("org-bbdb-anniversaries" customgroup (:user-visible-flag t) nil [5102 5228])
-            ("org-bbdb-default-anniversary-format" variable (:default-value "birthday") nil [5230 5386])
-            ("org-bbdb-general-anniversary-description-after" variable (:default-value 7) nil [5388 6050])
-            ("org-bbdb-anniversary-format-alist" variable (:default-value (quote (("birthday" lambda (name years suffix) (concat "Birthday: [[bbdb:" name "][" name " (" (format "%s" years) suffix ")]]")) ("wedding" lambda (name years suffix) (concat "[[bbdb:" name "][" name "'s " (format "%s" years) suffix " wedding anniversary]]"))))) nil [6052 7265])
-            ("org-bbdb-anniversary-field" variable (:default-value (quote anniversary)) nil [7267 7839])
-            ("org-bbdb-extract-date-fun" variable (:default-value (quote org-bbdb-anniv-extract-date)) nil [7841 8179])
-            ("org-link-set-parameters" code nil nil [8206 8368])
-            ("org-bbdb-store-link" function nil nil [8388 8944])
-            ("org-bbdb-export" function (:arguments ("path" "desc" "format")) nil [8946 9463])
-            ("org-bbdb-open" function (:arguments ("name")) nil [9465 9685])
-            ("org-bbdb-open-old" function (:arguments ("name")) nil [9687 10495])
-            ("org-bbdb-open-new" function (:arguments ("name")) nil [10497 11343])
-            ("org-bbdb-anniv-extract-date" function (:arguments ("time-str")) nil [11345 11760])
-            ("org-bbdb-anniv-split" function (:arguments ("str")) nil [11762 12050])
-            ("org-bbdb-anniv-hash" variable nil nil [12052 12178])
-            ("org-bbdb-updated-p" variable (:default-value t) nil [12180 12284])
-            ("org-bbdb-make-anniv-hash" function nil nil [12286 13552])
-            ("org-bbdb-updated" function (:arguments ("_rec")) nil [13554 13724])
-            ("add-hook" code nil nil [13726 13778])
-            ("org-bbdb-anniversaries" function nil nil [13795 15757])
-            ("org-bbdb-date-list" function (:arguments ("d" "n")) nil [16056 16330])
-            ("org-bbdb-anniversary-description" function (:arguments ("agenda-date" "anniv-date")) nil [16332 17240])
-            ("org-bbdb-anniversaries-future" function (:arguments ("n")) nil [17243 18865])
-            ("org-bbdb-complete-link" function nil nil [18867 19106])
-            ("org-bbdb-anniv-export-ical" function nil nil [19108 19551])
-            ("org-bbdb-format-vevent" function (:arguments ("key" "recs")) nil [19553 20133])
-            ("org-bbdb" package nil nil [20135 20154]))          
-      :file "org-bbdb.el"
-      :pointmax 20257
-      :fsize 20256
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("ox" include nil nil [912 925])
-            ("declare-function" code nil nil [926 992])
-            ("htmlize-output-type" variable nil nil [993 1021])
-            ("org-export-org" customgroup (:user-visible-flag t) nil [1023 1198])
-            ("org-org-htmlized-css-url" variable nil nil [1200 1934])
-            ("org-export-define-backend" code nil nil [1936 4091])
-            ("org-org--add-missing-sections" function (:arguments ("tree" "_backend" "_info")) nil [4093 4810])
-            ("org-org-export-block" function (:arguments ("export-block" "_contents" "_info")) nil [4812 5072])
-            ("org-org-identity" function (:arguments ("blob" "contents" "_info")) nil [5074 5402])
-            ("org-org-headline" function (:arguments ("headline" "contents" "info")) nil [5404 6096])
-            ("org-org-keyword" function (:arguments ("keyword" "_contents" "_info")) nil [6098 6425])
-            ("org-org-link" function (:arguments ("link" "contents" "_info")) nil [6427 6740])
-            ("org-org-template" function (:arguments ("contents" "info")) nil [6742 8111])
-            ("org-org-section" function (:arguments ("section" "contents" "info")) nil [8113 9162])
-            ("org-org-export-as-org" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [9179 10338])
-            ("org-org-export-to-org" function
-               (:user-visible-flag t
-                :arguments ("async" "subtreep" "visible-only" "body-only" "ext-plist"))
-                nil [10355 11431])
-            ("org-org-publish-to-org" function (:arguments ("plist" "filename" "pub-dir")) nil [11448 12984])
-            ("ox-org" package nil nil [12987 13004]))          
-      :file "ox-org.el"
-      :pointmax 13105
-      :fsize 13104
-      :lastmodtime '(23537 23329 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [1452 1466])
-            ("org-agenda" include nil nil [1467 1488])
-            ("cl-lib" include nil nil [1489 1506])
-            ("org-agenda-keep-restricted-file-list" variable nil nil [1508 1553])
-            ("org-mobile" customgroup (:user-visible-flag t) nil [1566 1696])
-            ("org-mobile-files" variable (:default-value (quote (org-agenda-files))) nil [1698 2545])
-            ("org-mobile-files-exclude-regexp" variable nil nil [2547 2703])
-            ("org-mobile-directory" variable nil nil [2705 2856])
-            ("org-mobile-allpriorities" variable (:default-value "A B C") nil [2858 3047])
-            ("org-mobile-use-encryption" variable nil nil [3049 3543])
-            ("org-mobile-encryption-tempfile" variable (:default-value "~/orgtmpcrypt") nil [3545 3876])
-            ("org-mobile-encryption-password" variable nil nil [3878 4819])
-            ("org-mobile-encryption-password-session" variable nil nil [4821 4872])
-            ("org-mobile-encryption-password" function nil nil [4874 5134])
-            ("org-mobile-inbox-for-pull" variable (:default-value "~/org/from-mobile.org") nil [5136 5539])
-            ("org-mobile-capture-file" variable
-               (:constant-flag t
-                :default-value "mobileorg.org")
-                nil [5541 5727])
-            ("org-mobile-index-file" variable (:default-value "index.org") nil [5729 5997])
-            ("org-mobile-agendas" variable (:default-value (quote all)) nil [5999 6550])
-            ("org-mobile-force-id-on-agenda-items" variable (:default-value t) nil [6552 6692])
-            ("org-mobile-force-mobile-change" variable nil nil [6694 7366])
-            ("org-mobile-checksum-binary" variable (:default-value (or (executable-find "shasum") (executable-find "sha1sum") (executable-find "md5sum") (executable-find "md5"))) nil [7368 7636])
-            ("org-mobile-pre-push-hook" variable nil nil [7638 7957])
-            ("org-mobile-post-push-hook" variable nil nil [7959 8297])
-            ("org-mobile-pre-pull-hook" variable nil nil [8299 8625])
-            ("org-mobile-post-pull-hook" variable nil nil [8627 8975])
-            ("org-mobile-action-alist" variable
-               (:constant-flag t
-                :default-value (quote (("edit" . org-mobile-edit))))
-                nil [8977 9712])
-            ("org-mobile-last-flagged-files" variable nil nil [9714 9821])
-            ("org-mobile-files-alist" variable nil nil [9823 9858])
-            ("org-mobile-checksum-files" variable nil nil [9859 9897])
-            ("org-mobile-prepare-file-lists" function nil nil [9899 10035])
-            ("org-mobile-files-alist" function nil nil [10037 11760])
-            ("org-mobile-push" function (:user-visible-flag t) nil [11777 12930])
-            ("org-mobile-before-process-capture-hook" variable nil nil [12932 13164])
-            ("org-mobile-pull" function (:user-visible-flag t) nil [13181 14207])
-            ("org-mobile-check-setup" function nil nil [14209 15831])
-            ("org-mobile-create-index-file" function nil nil [15833 18251])
-            ("org-mobile-copy-agenda-files" function nil nil [18253 19760])
-            ("org-mobile-write-checksums" function nil nil [19762 20258])
-            ("org-mobile-sumo-agenda-command" function nil nil [20260 23076])
-            ("org-mobile-creating-agendas" variable nil nil [23078 23118])
-            ("org-mobile-write-agenda-for-mobile" function (:arguments ("file")) nil [23119 25255])
-            ("org-mobile-get-outline-path-link" function (:arguments ("pom")) nil [25257 25585])
-            ("org-mobile-escape-olp" function (:arguments ("s")) nil [25587 25678])
-            ("org-mobile-create-sumo-agenda" function (:user-visible-flag t) nil [25680 26395])
-            ("org-mobile-encrypt-and-move" function (:arguments ("infile" "outfile")) nil [26397 26820])
-            ("org-mobile-encrypt-file" function (:arguments ("infile" "outfile")) nil [26822 27226])
-            ("org-mobile-decrypt-file" function (:arguments ("infile" "outfile")) nil [27228 27635])
-            ("org-mobile-cleanup-encryption-tempfile" function nil nil [27637 27890])
-            ("org-mobile-move-capture" function (:user-visible-flag t) nil [27892 29410])
-            ("org-mobile-update-checksum-for-capture-file" function (:arguments ("buffer-string")) nil [29412 30008])
-            ("org-mobile-apply" function
-               (:user-visible-flag t
-                :arguments ("beg" "end"))
-                nil [30010 34155])
-            ("org-mobile-timestamp-buffer" function (:arguments ("buf")) nil [34157 34711])
-            ("org-mobile-smart-read" function nil nil [34713 36141])
-            ("org-mobile-locate-entry" function (:arguments ("link")) nil [36143 37051])
-            ("org-mobile-edit" function (:arguments ("what" "old" "new")) nil [37053 41317])
-            ("org-mobile-tags-same-p" function (:arguments ("list1" "list2")) nil [41319 41474])
-            ("org-mobile-bodies-same-p" function (:arguments ("a" "b")) nil [41476 42071])
-            ("org-mobile" package nil nil [42073 42094]))          
-      :file "org-mobile.el"
-      :pointmax 42199
-      :fsize 42198
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-release" function nil nil [84 248])
-            ("org-git-version" function nil nil [264 451])
-            ("org-odt-data-dir" variable (:default-value "/usr/share/emacs/etc/org") nil [467 551])
-            ("org-version" package nil nil [554 576]))          
-      :file "org-version.el"
-      :pointmax 701
-      :fsize 700
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-macs" include nil nil [1476 1495])
-            ("org-compat" include nil nil [1496 1517])
-            ("org" include nil nil [1518 1532])
-            ("cl-lib" include nil nil [1534 1551])
-            ("declare-function" code nil nil [1553 1621])
-            ("declare-function" code nil nil [1622 1685])
-            ("declare-function" code nil nil [1686 1748])
-            ("org-inlinetask-show-first-star" variable nil nil [1749 1788])
-            ("org-indent" customgroup (:user-visible-flag t) nil [1790 1909])
-            ("org-indent-inlinetask-first-star" variable (:default-value (org-add-props "*" (quote (face org-warning)))) nil [1911 2043])
-            ("org-indent-agent-timer" variable nil nil [2044 2119])
-            ("org-indent-agentized-buffers" variable nil nil [2120 2214])
-            ("org-indent-agent-resume-timer" variable nil nil [2215 2328])
-            ("org-indent-agent-active-delay" variable (:default-value (quote (0 2 0))) nil [2329 2493])
-            ("org-indent-agent-passive-delay" variable (:default-value (quote (0 0 400000))) nil [2494 2667])
-            ("org-indent-agent-resume-delay" variable (:default-value (quote (0 0 100000))) nil [2668 2794])
-            ("org-indent--initial-marker" variable nil nil [2795 2938])
-            ("org-hide-leading-stars-before-indent-mode" variable nil nil [2939 3011])
-            ("org-indent-modified-headline-flag" variable nil nil [3012 3175])
-            ("org-indent-boundary-char" variable (:default-value 32) nil [3178 3527])
-            ("org-indent-mode-turns-off-org-adapt-indentation" variable (:default-value t) nil [3529 3779])
-            ("org-indent-mode-turns-on-hiding-stars" variable (:default-value t) nil [3781 3968])
-            ("org-indent-indentation-per-level" variable (:default-value 2) nil [3970 4105])
-            ("org-indent" variable
-               (:default-value (quote ((t (:inherit org-hide))))
-                :type "face")
-                nil [4107 4323])
-            ("org-indent--text-line-prefixes" variable nil nil [4325 4430])
-            ("org-indent--heading-line-prefixes" variable nil nil [4432 4535])
-            ("org-indent--inlinetask-line-prefixes" variable nil nil [4537 4646])
-            ("org-indent--deepest-level" variable
-               (:constant-flag t
-                :default-value 50)
-                nil [4648 4727])
-            ("org-indent--compute-prefixes" function nil nil [4729 5997])
-            ("org-indent-remove-properties" function (:arguments ("beg" "end")) nil [5999 6198])
-            ("define-minor-mode" code nil nil [6215 8929])
-            ("org-indent-indent-buffer" function (:user-visible-flag t) nil [8931 9355])
-            ("org-indent-remove-properties-from-string" function (:arguments ("string")) nil [9357 9562])
-            ("org-indent-initialize-agent" function nil nil [9564 10525])
-            ("org-indent-initialize-buffer" function (:arguments ("buffer" "delay")) nil [10527 11372])
-            ("org-indent-set-line-properties" function (:arguments ("level" "indentation" "heading")) nil [11374 12349])
-            ("org-indent-add-properties" function (:arguments ("beg" "end" "delay")) nil [12351 14504])
-            ("org-indent-notify-modified-headline" function (:arguments ("beg" "end")) nil [14506 15130])
-            ("org-indent-refresh-maybe" function (:arguments ("beg" "end" "_")) nil [15132 16099])
-            ("org-indent" package nil nil [16101 16122]))          
-      :file "org-indent.el"
-      :pointmax 16227
-      :fsize 16226
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org" include nil nil [1911 1925])
-            ("declare-function" code nil nil [1927 1996])
-            ("declare-function" code nil nil [1997 2045])
-            ("declare-function" code nil nil [2046 2107])
-            ("declare-function" code nil nil [2108 2175])
-            ("declare-function" code nil nil [2176 2222])
-            ("declare-function" code nil nil [2223 2279])
-            ("declare-function" code nil nil [2280 2347])
-            ("declare-function" code nil nil [2348 2386])
-            ("declare-function" code nil nil [2387 2458])
-            ("declare-function" code nil nil [2459 2504])
-            ("org-irc-client" variable (:default-value (quote erc)) nil [2506 2564])
-            ("org-irc-link-to-logs" variable nil nil [2566 2677])
-            ("erc-default-port" variable nil nil [2679 2704])
-            ("erc-session-port" variable nil nil [2740 2765])
-            ("erc-session-server" variable nil nil [2809 2836])
-            ("org-link-set-parameters" code nil nil [2941 3024])
-            ("org-irc-visit" function (:arguments ("link")) nil [3026 3297])
-            ("org-irc-parse-link" function (:arguments ("link")) nil [3299 3778])
-            ("org-irc-store-link" function nil nil [3795 3969])
-            ("org-irc-ellipsify-description" function (:arguments ("string" "after")) nil [3971 4537])
-            ("org-irc-erc-get-line-from-log" function (:arguments ("erc-line")) nil [4566 5431])
-            ("org-irc-erc-store-link" function nil nil [5433 6693])
-            ("org-irc-get-erc-link" function nil nil [6695 7270])
-            ("org-irc-get-current-erc-port" function nil nil [7272 7589])
-            ("org-irc-visit-erc" function (:arguments ("link")) nil [7591 9097])
-            ("org-irc" package nil nil [9099 9117]))          
-      :file "org-irc.el"
-      :pointmax 9219
-      :fsize 9218
-      :lastmodtime '(23537 23331 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!org-9.1.14!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041org-bullets-20180208.2343\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041org-bullets-20180208.2343\041semantic.cache"
deleted file mode 100644
index 9b3a692..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041org-bullets-20180208.2343\041semantic.cache"
+++ /dev/null
@@ -1,33 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "org-bullets-autoloads.el"
-      :pointmax 361
-      :fsize 701
-      :lastmodtime '(23537 23652 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("org-bullets" customgroup (:user-visible-flag t) nil [1068 1160])
-            ("org-bullets-bullet-list" variable (:default-value (quote ("◉" "○" "✸" "✿"))) nil [1310 1640])
-            ("org-bullets-face-name" variable nil nil [1642 1863])
-            ("org-bullets-bullet-map" variable (:default-value (make-sparse-keymap)) nil [1865 1917])
-            ("org-bullets-level-char" function (:arguments ("level")) nil [1919 2080])
-            ("org-bullets--keywords" variable (:default-value (\` (("^\\*+ " (0 (let* ((level (- (match-end 0) (match-beginning 0) 1)) (is-inline-task (and (boundp (quote org-inlinetask-min-level)) (>= level org-inlinetask-min-level)))) (compose-region (- (match-end 0) 2) (- (match-end 0) 1) (org-bullets-level-char level)) (when is-inline-task (compose-region (- (match-end 0) 3) (- (match-end 0) 2) (org-bullets-level-char level))) (when (facep org-bullets-face-name) (put-text-property (- (match-end 0) (if is-inline-task 3 2)) (- (match-end 0) 1) (quote face) org-bullets-face-name)) (put-text-property (match-beginning 0) (- (match-end 0) 2) (quote face) (list :foreground (face-attribute (quote default) :background))) (put-text-property (match-beginning 0) (match-end 0) (quote keymap) org-bullets-bullet-map) nil)))))) nil [2082 3444])
-            ("define-minor-mode" code nil nil [3461 3946])
-            ("org-bullets--fontify-buffer" function nil nil [3948 4255])
-            ("org-bullets" package nil nil [4257 4279]))          
-      :file "org-bullets.el"
-      :pointmax 4362
-      :fsize 4407
-      :lastmodtime '(23537 23652 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!org-bullets-20180208.2343!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041popwin-20150315.1300\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041popwin-20150315.1300\041semantic.cache"
deleted file mode 100644
index 2bc4147..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041popwin-20150315.1300\041semantic.cache"
+++ /dev/null
@@ -1,140 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "popwin-autoloads.el"
-      :pointmax 351
-      :fsize 2598
-      :lastmodtime '(23535 56419 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [2313 2326])
-            ("popwin:version" variable
-               (:constant-flag t
-                :default-value "1.0.0")
-                nil [2329 2362])
-            ("popwin:listify" function (:arguments ("object")) nil [2380 2538])
-            ("popwin:subsitute-in-tree" function (:arguments ("map" "tree")) nil [2540 2748])
-            ("popwin:get-buffer" function (:arguments ("buffer-or-name" "if-not-found")) nil [2750 3343])
-            ("popwin:switch-to-buffer" function (:arguments ("buffer-or-name" "norecord")) nil [3345 3661])
-            ("popwin:select-window" function (:arguments ("window" "norecord")) nil [3663 3836])
-            ("popwin:buried-buffer-p" function (:arguments ("buffer")) nil [3838 3981])
-            ("popwin:window-point" function (:arguments ("window")) nil [3983 4251])
-            ("popwin:window-deletable-p" function (:arguments ("window")) nil [4253 4528])
-            ("popwin:save-selected-window" function (:arguments ("body")) nil [4530 4678])
-            ("popwin:minibuffer-window-selected-p" function nil nil [4680 4822])
-            ("popwin:last-selected-window" function nil nil [4824 5061])
-            ("popwin:debug" variable nil nil [5078 5103])
-            ("popwin:dummy-buffer" variable nil nil [5105 5137])
-            ("popwin:dummy-buffer" function nil nil [5139 5307])
-            ("popwin:kill-dummy-buffer" function nil nil [5309 5460])
-            ("popwin:window-trailing-edge-adjustable-p" function (:arguments ("window")) nil [5462 5763])
-            ("popwin:adjust-window-edges" function (:arguments ("window" "edges" "hfactor" "vfactor")) nil [5765 6645])
-            ("popwin:window-config-tree-1" function (:arguments ("node")) nil [6647 7276])
-            ("popwin:window-config-tree" function nil nil [7278 7519])
-            ("popwin:replicate-window-config" function (:arguments ("window" "node" "hfactor" "vfactor")) nil [7521 8675])
-            ("popwin:restore-window-outline" function (:arguments ("node" "outline")) nil [8677 9733])
-            ("popwin:position-horizontal-p" function (:arguments ("position")) nil [9735 9875])
-            ("popwin:position-vertical-p" function (:arguments ("position")) nil [9877 10013])
-            ("popwin:create-popup-window-1" function (:arguments ("window" "size" "position")) nil [10015 10665])
-            ("popwin:create-popup-window" function (:arguments ("size" "position" "adjust")) nil [10667 12549])
-            ("popwin" customgroup (:user-visible-flag t) nil [12581 12670])
-            ("popwin:popup-window-position" variable (:default-value (quote bottom)) nil [12672 12833])
-            ("popwin:popup-window-width" variable (:default-value 30) nil [12835 13128])
-            ("popwin:popup-window-height" variable (:default-value 15) nil [13130 13426])
-            ("popwin:reuse-window" variable (:default-value (quote current)) nil [13428 13669])
-            ("popwin:adjust-other-windows" variable (:default-value t) nil [13671 13849])
-            ("popwin:context-stack" variable nil nil [13851 13884])
-            ("popwin:popup-window" variable nil nil [13886 13950])
-            ("popwin:popup-buffer" variable nil nil [13952 14035])
-            ("popwin:popup-last-config" variable nil nil [14037 14127])
-            ("popwin:master-window" variable nil nil [14143 14213])
-            ("popwin:focus-window" variable nil nil [14215 14331])
-            ("popwin:selected-window" variable nil nil [14333 14425])
-            ("popwin:popup-window-dedicated-p" variable nil nil [14427 14549])
-            ("popwin:popup-window-stuck-p" variable nil nil [14551 14642])
-            ("popwin:window-outline" variable nil nil [14644 14756])
-            ("popwin:window-map" variable nil nil [14758 14833])
-            ("popwin:window-config" variable nil nil [14835 14921])
-            ("popwin:close-popup-window-timer" variable nil nil [14923 15006])
-            ("popwin:close-popup-window-timer-interval" variable (:default-value 0.05) nil [15008 15113])
-            ("popwin:before-popup-hook" variable nil nil [15115 15152])
-            ("popwin:after-popup-hook" variable nil nil [15154 15190])
-            ("symbol-macrolet" code nil nil [15192 16652])
-            ("popwin:popup-window-live-p" function nil nil [16654 16777])
-            ("popwin:update-window-reference" function (:arguments ("symbol" "map" "safe" "recursive")) nil [16779 17261])
-            ("popwin:start-close-popup-window-timer" function nil nil [17263 17610])
-            ("popwin:stop-close-popup-window-timer" function nil nil [17612 17798])
-            ("popwin:close-popup-window-timer" function nil nil [17800 18025])
-            ("popwin:close-popup-window" function
-               (:user-visible-flag t
-                :arguments ("keep-selected"))
-                nil [18027 19010])
-            ("popwin:close-popup-window-if-necessary" function nil nil [19012 23206])
-            ("popwin:popup-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer" "width" "height" "position" "noselect" "dedicated" "stick" "tail"))
-                nil [23223 25980])
-            ("popwin:popup-last-buffer" function
-               (:user-visible-flag t
-                :arguments ("noselect"))
-                nil [25982 26470])
-            ("defalias" code nil nil [26471 26535])
-            ("popwin:select-popup-window" function (:user-visible-flag t) nil [26537 26753])
-            ("popwin:stick-popup-window" function (:user-visible-flag t) nil [26755 27088])
-            ("popwin:without-special-displaying" function (:arguments ("body")) nil [27114 27613])
-            ("popwin:special-display-config" variable (:default-value (quote (("*Miniedit Help*" :noselect t) help-mode (completion-list-mode :noselect t) (compilation-mode :noselect t) (grep-mode :noselect t) (occur-mode :noselect t) ("*Pp Macroexpand Output*" :noselect t) "*Shell Command Output*" "*vc-diff*" "*vc-change-log*" (" *undo-tree*" :width 60 :position right) ("^\\*anything.*\\*$" :regexp t) "*slime-apropos*" "*slime-macroexpansion*" "*slime-description*" ("*slime-compilation*" :noselect t) "*slime-xref*" (sldb-mode :stick t) slime-repl-mode slime-connection-list-mode))) nil [27615 31730])
-            ("popwin:apply-display-buffer" function (:arguments ("function" "buffer" "not-this-window")) nil [31732 32773])
-            ("popwin:original-display-buffer" function (:arguments ("buffer" "not-this-window")) nil [32775 32983])
-            ("popwin:original-pop-to-buffer" function (:arguments ("buffer" "not-this-window")) nil [32985 33190])
-            ("popwin:original-display-last-buffer" function (:user-visible-flag t) nil [33192 33471])
-            ("popwin:switch-to-last-buffer" function (:user-visible-flag t) nil [33473 33770])
-            ("popwin:original-pop-to-last-buffer" function (:user-visible-flag t) nil [33772 34048])
-            ("popwin:reuse-window-p" function (:arguments ("buffer-or-name" "not-this-window")) nil [34050 34591])
-            ("popwin:match-config" function (:arguments ("buffer")) nil [34593 35389])
-            ("popwin:display-buffer-1" function (:arguments ("buffer-or-name" "default-config-keywords" "if-buffer-not-found" "if-config-not-found")) nil [35391 37137])
-            ("popwin:display-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer-or-name" "not-this-window"))
-                nil [37154 37852])
-            ("popwin:special-display-popup-window" function (:arguments ("buffer" "ignore")) nil [37854 37968])
-            ("popwin:pop-to-buffer-1" function (:arguments ("buffer" "default-config-keywords" "other-window" "norecord")) nil [37970 38467])
-            ("popwin:pop-to-buffer" function
-               (:user-visible-flag t
-                :arguments ("buffer" "other-window" "norecord"))
-                nil [38484 38920])
-            ("popwin:universal-display-config" variable (:default-value (quote (t))) nil [38948 39119])
-            ("popwin:universal-display" function (:user-visible-flag t) nil [39136 39553])
-            ("popwin:one-window" function (:user-visible-flag t) nil [39589 39814])
-            ("popwin:popup-buffer-tail" function
-               (:user-visible-flag t
-                :arguments ("same-as-popwin:popup-buffer"))
-                nil [39831 40153])
-            ("popwin:find-file" function
-               (:user-visible-flag t
-                :arguments ("filename" "wildcards"))
-                nil [40170 40567])
-            ("popwin:find-file-tail" function
-               (:user-visible-flag t
-                :arguments ("file" "wildcard"))
-                nil [40584 40986])
-            ("popwin:messages" function (:user-visible-flag t) nil [41003 41136])
-            ("popwin:display-buffer-condition" function (:arguments ("buffer" "action")) nil [41157 41251])
-            ("popwin:display-buffer-action" function (:arguments ("buffer" "alist")) nil [41253 41422])
-            ("define-minor-mode" code nil nil [41424 42071])
-            ("popwin:keymap" variable (:default-value (let ((map (make-sparse-keymap))) (define-key map "b" (quote popwin:popup-buffer)) (define-key map "l" (quote popwin:popup-last-buffer)) (define-key map "o" (quote popwin:display-buffer)) (define-key map "" (quote popwin:switch-to-last-buffer)) (define-key map "" (quote popwin:original-pop-to-last-buffer)) (define-key map "" (quote popwin:original-display-last-buffer)) (define-key map " " (quote popwin:select-popup-window)) (define-key map "s" (quote popwin:stick-popup-window)) (define-key map "0" (quote popwin:close-popup-window)) (define-key map "f" (quote popwin:find-file)) (define-key map "" (quote popwin:find-file)) (define-key map "e" (quote popwin:messages)) (define-key map "" (quote popwin:universal-display)) (define-key map "1" (quote popwin:one-window)) map)) nil [42089 43778])
-            ("popwin" package nil nil [43780 43797]))          
-      :file "popwin.el"
-      :pointmax 43822
-      :fsize 43821
-      :lastmodtime '(23535 56419 0 0)
-      :unmatched-syntax '((close-paren 2326 . 2327) (symbol 2295 . 2312) (open-paren 2294 . 2295))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!popwin-20150315.1300!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041undo-tree-0.6.5\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041undo-tree-0.6.5\041semantic.cache"
deleted file mode 100644
index 7d98079..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041undo-tree-0.6.5\041semantic.cache"
+++ /dev/null
@@ -1,313 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl" include nil nil [29545 29558])
-            ("diff" include nil nil [29560 29575])
-            ("unless" code nil nil [29763 29832])
-            ("unless" code nil nil [29892 29994])
-            ("unless" code nil nil [30059 30146])
-            ("unless" code nil nil [30148 30222])
-            ("unless" code nil nil [30348 32555])
-            ("unless" code nil nil [32557 32867])
-            ("unless" code nil nil [32916 33246])
-            ("buffer-undo-tree" variable nil nil [33388 33461])
-            ("put" code nil nil [33462 33504])
-            ("make-variable-buffer-local" code nil nil [33505 33551])
-            ("undo-tree" customgroup (:user-visible-flag t) nil [33554 33613])
-            ("undo-tree-mode-lighter" variable (:default-value " Undo-Tree") nil [33615 33767])
-            ("undo-tree-incompatible-major-modes" variable (:default-value (quote (term-mode))) nil [33770 33981])
-            ("undo-tree-enable-undo-in-region" variable (:default-value t) nil [33984 34316])
-            ("undo-tree-auto-save-history" variable nil nil [34319 35296])
-            ("undo-tree-history-directory-alist" variable nil nil [35299 36368])
-            ("undo-tree-visualizer-relative-timestamps" variable (:default-value t) nil [36372 36599])
-            ("undo-tree-visualizer-timestamps" variable nil nil [36602 36935])
-            ("undo-tree-visualizer-diff" variable nil nil [36938 37246])
-            ("undo-tree-visualizer-lazy-drawing" variable (:default-value 100) nil [37249 38233])
-            ("undo-tree-visualizer-default-face" variable
-               (:default-value (quote ((((class color)) :foreground "gray")))
-                :type "face")
-                nil [38236 38388])
-            ("undo-tree-visualizer-current-face" variable
-               (:default-value (quote ((((class color)) :foreground "red")))
-                :type "face")
-                nil [38390 38559])
-            ("undo-tree-visualizer-active-branch-face" variable
-               (:default-value (quote ((((class color) (background dark)) (:foreground "white" :weight bold)) (((class color) (background light)) (:foreground "black" :weight bold))))
-                :type "face")
-                nil [38561 38858])
-            ("undo-tree-visualizer-register-face" variable
-               (:default-value (quote ((((class color)) :foreground "yellow")))
-                :type "face")
-                nil [38860 39046])
-            ("undo-tree-visualizer-unmodified-face" variable
-               (:default-value (quote ((((class color)) :foreground "cyan")))
-                :type "face")
-                nil [39048 39240])
-            ("undo-tree-visualizer-parent-buffer" variable nil nil [39243 39323])
-            ("put" code nil nil [39324 39384])
-            ("make-variable-buffer-local" code nil nil [39385 39449])
-            ("undo-tree-visualizer-parent-mtime" variable nil nil [39511 39557])
-            ("put" code nil nil [39558 39617])
-            ("make-variable-buffer-local" code nil nil [39618 39681])
-            ("undo-tree-visualizer-spacing" variable nil nil [39749 39790])
-            ("put" code nil nil [39791 39845])
-            ("make-variable-buffer-local" code nil nil [39846 39904])
-            ("undo-tree-visualizer-calculate-spacing" function nil nil [39989 40143])
-            ("undo-tree-visualizer-initial-node" variable nil nil [40204 40250])
-            ("put" code nil nil [40251 40310])
-            ("make-variable-buffer-local" code nil nil [40311 40374])
-            ("undo-tree-visualizer-selected-node" variable nil nil [40438 40485])
-            ("put" code nil nil [40486 40546])
-            ("make-variable-buffer-local" code nil nil [40547 40606])
-            ("undo-tree-visualizer-needs-extending-down" variable nil nil [40674 40728])
-            ("put" code nil nil [40729 40796])
-            ("make-variable-buffer-local" code nil nil [40797 40868])
-            ("undo-tree-visualizer-needs-extending-up" variable nil nil [40869 40921])
-            ("put" code nil nil [40922 40987])
-            ("make-variable-buffer-local" code nil nil [40988 41057])
-            ("undo-tree-inhibit-kill-visualizer" variable nil nil [41188 41234])
-            ("undo-tree-insert-face" variable nil nil [41298 41332])
-            ("undo-tree-visualizer-buffer-name" variable
-               (:constant-flag t
-                :default-value " *undo-tree*")
-                nil [41361 41419])
-            ("undo-tree-diff-buffer-name" variable
-               (:constant-flag t
-                :default-value "*undo-tree Diff*")
-                nil [41420 41476])
-            ("add-hook" code nil nil [41513 41574])
-            ("add-hook" code nil nil [41575 41630])
-            ("undo-tree-map" variable nil nil [41752 41813])
-            ("unless" code nil nil [41815 42799])
-            ("undo-tree-visualizer-mode-map" variable nil nil [42802 42885])
-            ("unless" code nil nil [42887 45605])
-            ("undo-tree-visualizer-selection-mode-map" variable nil nil [45608 45716])
-            ("unless" code nil nil [45718 48038])
-            ("undo-tree-old-undo-menu-item" variable nil nil [48041 48082])
-            ("undo-tree-update-menu-bar" function nil nil [48084 49222])
-            ("add-hook" code nil nil [49224 49283])
-            ("undo-tree" type
-               (:members ("root" "current" "size" "count" "object-pool")
-                :type "struct")
-                nil [49414 49781])
-            ("undo-tree-node" type
-               (:members ("previous" "next" "undo" "redo" "timestamp" "branch" "meta-data")
-                :type "struct")
-                nil [49785 50378])
-            ("undo-tree-node-p" function (:arguments ("n")) nil [50381 50512])
-            ("undo-tree-region-data" type
-               (:members ("undo-beginning" "undo-end" "redo-beginning" "redo-end")
-                :type "struct")
-                nil [50516 50960])
-            ("undo-tree-region-data-p" function (:arguments ("r")) nil [50963 51100])
-            ("undo-tree-node-clear-region-data" function (:arguments ("node")) nil [51102 51299])
-            ("undo-tree-node-undo-beginning" function (:arguments ("node")) nil [51302 51505])
-            ("undo-tree-node-undo-end" function (:arguments ("node")) nil [51507 51698])
-            ("undo-tree-node-redo-beginning" function (:arguments ("node")) nil [51700 51903])
-            ("undo-tree-node-redo-end" function (:arguments ("node")) nil [51905 52096])
-            ("defsetf" code nil nil [52099 52466])
-            ("defsetf" code nil nil [52468 52823])
-            ("defsetf" code nil nil [52825 53192])
-            ("defsetf" code nil nil [53194 53549])
-            ("undo-tree-visualizer-data" type
-               (:members ("lwidth" "cwidth" "rwidth" "marker")
-                :type "struct")
-                nil [53553 53799])
-            ("undo-tree-visualizer-data-p" function (:arguments ("v")) nil [53802 53947])
-            ("undo-tree-node-clear-visualizer-data" function (:arguments ("node")) nil [53949 54282])
-            ("undo-tree-node-lwidth" function (:arguments ("node")) nil [54284 54483])
-            ("undo-tree-node-cwidth" function (:arguments ("node")) nil [54485 54684])
-            ("undo-tree-node-rwidth" function (:arguments ("node")) nil [54686 54885])
-            ("undo-tree-node-marker" function (:arguments ("node")) nil [54887 55086])
-            ("defsetf" code nil nil [55089 55460])
-            ("defsetf" code nil nil [55462 55833])
-            ("defsetf" code nil nil [55835 56206])
-            ("defsetf" code nil nil [56208 56579])
-            ("undo-tree-register-data" type
-               (:members ("buffer" "node")
-                :type "struct")
-                nil [56583 56737])
-            ("undo-tree-register-data-p" function (:arguments ("data")) nil [56739 56891])
-            ("undo-tree-register-data-print-func" function (:arguments ("data")) nil [56893 57037])
-            ("undo-tree-node-register" function (:arguments ("node")) nil [57039 57138])
-            ("defsetf" code nil nil [57140 57291])
-            ("undo-tree-grow" function (:arguments ("undo")) nil [57430 57726])
-            ("undo-tree-grow-backwards" function (:arguments ("node" "undo" "redo")) nil [57729 58126])
-            ("undo-tree-splice-node" function (:arguments ("node" "splice")) nil [58129 58723])
-            ("undo-tree-snip-node" function (:arguments ("node")) nil [58726 60195])
-            ("undo-tree-mapc" function (:arguments ("--undo-tree-mapc-function--" "node")) nil [60198 60492])
-            ("undo-tree-num-branches" function nil nil [60495 60659])
-            ("undo-tree-position" function (:arguments ("node" "list")) nil [60662 61026])
-            ("*undo-tree-id-counter*" variable nil nil [61029 61062])
-            ("make-variable-buffer-local" code nil nil [61063 61115])
-            ("undo-tree-generate-id" function nil nil [61117 61434])
-            ("undo-tree-decircle" function (:arguments ("undo-tree")) nil [61437 61734])
-            ("undo-tree-recircle" function (:arguments ("undo-tree")) nil [61737 62035])
-            ("undo-list-marker-elt-p" function (:arguments ("elt")) nil [62179 62247])
-            ("undo-list-GCd-marker-elt-p" function (:arguments ("elt")) nil [62249 62929])
-            ("undo-tree-move-GC-elts-to-pool" function (:arguments ("elt")) nil [62932 63358])
-            ("undo-tree-restore-GC-elts-from-pool" function (:arguments ("elt")) nil [63361 63748])
-            ("undo-list-clean-GCd-elts" function (:arguments ("undo-list")) nil [63751 64353])
-            ("undo-list-pop-changeset" function (:arguments ("discard-pos")) nil [64356 65428])
-            ("undo-tree-copy-list" function (:arguments ("undo-list")) nil [65431 66257])
-            ("undo-list-transfer-to-tree" function nil nil [66261 68677])
-            ("undo-list-byte-size" function (:arguments ("undo-list")) nil [68680 68986])
-            ("undo-list-rebuild-from-tree" function nil nil [68990 70238])
-            ("undo-tree-oldest-leaf" function (:arguments ("node")) nil [70375 70748])
-            ("undo-tree-discard-node" function (:arguments ("node")) nil [70751 73868])
-            ("undo-tree-discard-history" function nil nil [73872 77434])
-            ("undo-tree-compute-widths" function (:arguments ("node")) nil [77566 78297])
-            ("undo-tree-node-compute-widths" function (:arguments ("node")) nil [78300 81188])
-            ("undo-tree-clear-visualizer-data" function (:arguments ("tree")) nil [81191 81377])
-            ("undo-tree-node-unmodified-p" function (:arguments ("node" "mtime")) nil [81380 82232])
-            ("undo-adjusted-markers" variable nil nil [82434 82468])
-            ("undo-tree-pull-undo-in-region-branch" function (:arguments ("start" "end")) nil [82471 92388])
-            ("undo-tree-pull-redo-in-region-branch" function (:arguments ("start" "end")) nil [92392 99140])
-            ("undo-tree-adjust-elements-to-elt" function (:arguments ("node" "undo-elt" "below")) nil [99144 100153])
-            ("undo-tree-apply-deltas" function (:arguments ("undo-elt" "deltas" "sgn")) nil [100157 101333])
-            ("undo-tree-repeated-undo-in-region-p" function (:arguments ("start" "end")) nil [101337 101724])
-            ("undo-tree-repeated-redo-in-region-p" function (:arguments ("start" "end")) nil [101727 102030])
-            ("defalias" code nil nil [102138 102225])
-            ("defalias" code nil nil [102333 102420])
-            ("define-minor-mode" code nil nil [102562 103409])
-            ("turn-on-undo-tree-mode" function
-               (:user-visible-flag t
-                :arguments ("print-message"))
-                nil [103412 104483])
-            ("undo-tree-overridden-undo-bindings-p" function nil nil [104486 105264])
-            ("define-globalized-minor-mode" code nil nil [105282 105374])
-            ("undo-tree-undo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [105378 106034])
-            ("undo-tree-undo-1" function (:arguments ("arg" "preserve-redo" "preserve-timestamps")) nil [106037 110196])
-            ("undo-tree-redo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [110200 110814])
-            ("undo-tree-redo-1" function (:arguments ("arg" "preserve-undo" "preserve-timestamps")) nil [110817 114947])
-            ("undo-tree-switch-branch" function
-               (:user-visible-flag t
-                :arguments ("branch"))
-                nil [114951 116290])
-            ("undo-tree-set" function (:arguments ("node" "preserve-timestamps")) nil [116293 117933])
-            ("undo-tree-save-state-to-register" function
-               (:user-visible-flag t
-                :arguments ("register"))
-                nil [117965 118848])
-            ("undo-tree-restore-state-from-register" function
-               (:user-visible-flag t
-                :arguments ("register"))
-                nil [118852 119865])
-            ("undo-tree-make-history-save-file-name" function (:arguments ("file")) nil [119997 120571])
-            ("undo-tree-save-history" function
-               (:user-visible-flag t
-                :arguments ("filename" "overwrite"))
-                nil [120574 122596])
-            ("undo-tree-load-history" function
-               (:user-visible-flag t
-                :arguments ("filename" "noerror"))
-                nil [122600 124581])
-            ("undo-tree-save-history-hook" function nil nil [124637 124808])
-            ("undo-tree-load-history-hook" function nil nil [124810 125017])
-            ("undo-tree-visualize" function (:user-visible-flag t) nil [125150 126929])
-            ("undo-tree-kill-visualizer" function (:arguments ("_dummy")) nil [126932 127297])
-            ("undo-tree-draw-tree" function (:arguments ("undo-tree")) nil [127301 129436])
-            ("undo-tree-extend-down" function (:arguments ("node" "bottom")) nil [129439 131140])
-            ("undo-tree-extend-up" function (:arguments ("node" "top")) nil [131143 133370])
-            ("undo-tree-expand-down" function (:arguments ("from" "to")) nil [133373 134414])
-            ("undo-tree-expand-up" function (:arguments ("from" "to")) nil [134417 136007])
-            ("undo-tree-highlight-active-branch" function (:arguments ("node" "end")) nil [136011 136509])
-            ("undo-tree-draw-node" function (:arguments ("node" "current")) nil [136512 138614])
-            ("undo-tree-draw-subtree" function (:arguments ("node" "active-branch")) nil [138617 144079])
-            ("undo-tree-node-char-lwidth" function (:arguments ("node")) nil [144082 144405])
-            ("undo-tree-node-char-rwidth" function (:arguments ("node")) nil [144408 144732])
-            ("undo-tree-insert" function (:arguments ("str" "arg")) nil [144735 145395])
-            ("undo-tree-move-down" function (:arguments ("arg")) nil [145398 145951])
-            ("undo-tree-move-up" function (:arguments ("arg")) nil [145954 146100])
-            ("undo-tree-move-forward" function (:arguments ("arg")) nil [146103 146883])
-            ("undo-tree-move-backward" function (:arguments ("arg")) nil [146886 147047])
-            ("undo-tree-move-to-parent" function (:arguments ("node")) nil [147050 148698])
-            ("undo-tree-timestamp-to-string" function (:arguments ("timestamp" "relative" "current" "register")) nil [148701 149963])
-            ("define-derived-mode" code nil nil [150091 150739])
-            ("undo-tree-visualize-undo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [150743 151813])
-            ("undo-tree-visualize-redo" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [151816 152923])
-            ("undo-tree-visualize-switch-branch-right" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [152926 154231])
-            ("undo-tree-visualize-switch-branch-left" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [154234 154525])
-            ("undo-tree-visualizer-quit" function (:user-visible-flag t) nil [154528 155266])
-            ("undo-tree-visualizer-abort" function (:user-visible-flag t) nil [155269 155501])
-            ("undo-tree-visualizer-set" function
-               (:user-visible-flag t
-                :arguments ("pos"))
-                nil [155504 156221])
-            ("undo-tree-visualizer-mouse-set" function
-               (:user-visible-flag t
-                :arguments ("pos"))
-                nil [156224 156420])
-            ("undo-tree-visualize-undo-to-x" function
-               (:user-visible-flag t
-                :arguments ("x"))
-                nil [156423 158327])
-            ("undo-tree-visualize-redo-to-x" function
-               (:user-visible-flag t
-                :arguments ("x"))
-                nil [158330 160226])
-            ("undo-tree-visualizer-toggle-timestamps" function (:user-visible-flag t) nil [160229 160575])
-            ("undo-tree-visualizer-scroll-left" function (:arguments ("arg")) nil [160578 160683])
-            ("undo-tree-visualizer-scroll-right" function (:arguments ("arg")) nil [160686 160793])
-            ("undo-tree-visualizer-scroll-up" function (:arguments ("arg")) nil [160796 161361])
-            ("undo-tree-visualizer-scroll-down" function (:arguments ("arg")) nil [161364 162271])
-            ("define-minor-mode" code nil nil [162401 163316])
-            ("undo-tree-visualizer-select-previous" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [163319 164111])
-            ("undo-tree-visualizer-select-next" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [164114 164980])
-            ("undo-tree-visualizer-select-right" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [164983 165794])
-            ("undo-tree-visualizer-select-left" function
-               (:user-visible-flag t
-                :arguments ("arg"))
-                nil [165797 166622])
-            ("undo-tree-visualizer-select" function (:arguments ("pos")) nil [166625 167326])
-            ("undo-tree-visualizer-mouse-select" function
-               (:user-visible-flag t
-                :arguments ("pos"))
-                nil [167329 167501])
-            ("undo-tree-visualizer-toggle-diff" function (:user-visible-flag t) nil [167631 167848])
-            ("undo-tree-visualizer-selection-toggle-diff" function (:user-visible-flag t) nil [167851 168175])
-            ("undo-tree-visualizer-show-diff" function (:arguments ("node")) nil [168178 168555])
-            ("undo-tree-visualizer-hide-diff" function nil nil [168558 168802])
-            ("undo-tree-diff" function (:arguments ("node")) nil [168805 169818])
-            ("undo-tree-visualizer-update-diff" function (:arguments ("node")) nil [169821 170235])
-            ("undo-tree" package nil nil [172254 172274]))          
-      :file "undo-tree.el"
-      :pointmax 172303
-      :fsize 172302
-      :lastmodtime '(23534 26937 0 0)
-      :unmatched-syntax '((close-paren 29558 . 29559) (symbol 29527 . 29544) (open-paren 29526 . 29527))))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!undo-tree-0.6.5!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041x86-lookup-20180528.1635\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041x86-lookup-20180528.1635\041semantic.cache"
deleted file mode 100644
index e3ba6b6..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041x86-lookup-20180528.1635\041semantic.cache"
+++ /dev/null
@@ -1,57 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "x86-lookup-autoloads.el"
-      :pointmax 359
-      :fsize 725
-      :lastmodtime '(23537 22007 0 0)
-      :unmatched-syntax nil)
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("cl-lib" include nil nil [1782 1799])
-            ("doc-view" include nil nil [1800 1819])
-            ("x86-lookup" customgroup (:user-visible-flag t) nil [1821 1910])
-            ("x86-lookup-pdf" variable nil nil [1912 2100])
-            ("x86-lookup-pdftotext-program" variable (:default-value "pdftotext") nil [2102 2230])
-            ("x86-lookup-browse-pdf-function" variable (:default-value (function x86-lookup-browse-pdf-any)) nil [2232 3555])
-            ("x86-lookup-cache-directory" variable (:default-value (let ((base (or (getenv "XDG_CACHE_HOME") (getenv "LocalAppData") "~/.cache"))) (expand-file-name "x86-lookup" base))) nil [3557 3830])
-            ("x86-lookup-index" variable nil nil [3832 3909])
-            ("x86-lookup--expansions" variable (:default-value (quote (("^PREFETCH\\(h\\)$" "" "nta" "t0" "t1" "t2") ("^J\\(cc\\)$" "a" "ae" "b" "be" "c" "cxz" "e" "ecxz" "g" "ge" "l" "le" "na" "nae" "nb" "nbe" "nc" "ne" "ng" "nge" "nl" "nle" "no" "np" "ns" "nz" "o" "p" "pe" "po" "rcxz" "s" "z") ("^SET\\(cc\\)$" "a" "ae" "b" "be" "c" "e" "g" "ge" "l" "le" "na" "nae" "nb" "nbe" "nc" "ne" "ng" "nge" "nl" "nle" "no" "np" "ns" "nz" "o" "p" "pe" "po" "s" "z") ("^CMOV\\(cc\\)$" "a" "ae" "b" "be" "c" "e" "g" "ge" "l" "le" "na" "nae" "nb" "nbe" "nc" "ne" "ng" "nge" "nl" "nle" "no" "np" "ns" "nz" "o" "p" "pe" "po" "s" "z") ("^FCMOV\\(cc\\)$" "b" "e" "be" "u" "nb" "ne" "nbe" "nu") ("^LOOP\\(cc\\)$" "e" "ne") ("^VBROADCAST\\(\\)$" "" "ss" "sd" "f128") ("^VMASKMOV\\(\\)$" "" "ps" "pd") ("^VPBROADCAST\\(\\)$" "" "b" "w" "d" "q" "I128") ("^VPMASKMOV\\(\\)$" "" "d" "q") ("\\(\\)" "")))) nil [3911 4945])
-            ("x86-lookup--expand" function (:arguments ("names" "page")) nil [4947 5720])
-            ("cl-defun" code nil nil [5722 6801])
-            ("x86-lookup--index-file" function (:arguments ("pdf")) nil [6803 6912])
-            ("x86-lookup--save-index" function (:arguments ("pdf" "index")) nil [6914 7264])
-            ("x86-lookup--load-index" function (:arguments ("pdf")) nil [7266 7678])
-            ("x86-lookup-ensure-index" function nil nil [7680 8307])
-            ("x86-lookup-ensure-and-update-index" function (:user-visible-flag t) nil [8309 8967])
-            ("x86-lookup-browse-pdf" function (:arguments ("pdf" "page")) nil [8969 9125])
-            ("x86-lookup" function
-               (:user-visible-flag t
-                :arguments ("mnemonic"))
-                nil [9142 9818])
-            ("x86-lookup-browse-pdf-pdf-tools" function (:arguments ("pdf" "page")) nil [9837 10130])
-            ("x86-lookup-browse-pdf-doc-view" function (:arguments ("pdf" "page")) nil [10132 10457])
-            ("x86-lookup-browse-pdf-xpdf" function (:arguments ("pdf" "page")) nil [10459 10601])
-            ("x86-lookup-browse-pdf-evince" function (:arguments ("pdf" "page")) nil [10603 10758])
-            ("x86-lookup-browse-pdf-okular" function (:arguments ("pdf" "page")) nil [10760 10920])
-            ("x86-lookup-browse-pdf-gv" function (:arguments ("pdf" "page")) nil [10922 11074])
-            ("x86-lookup-browse-pdf-zathura" function (:arguments ("pdf" "page")) nil [11076 11235])
-            ("x86-lookup-browse-pdf-sumatrapdf" function (:arguments ("pdf" "page")) nil [11237 11407])
-            ("x86-lookup-browse-pdf-mupdf" function (:arguments ("pdf" "page")) nil [11409 11862])
-            ("x86-lookup-browse-pdf-browser" function (:arguments ("pdf" "page")) nil [11864 12023])
-            ("x86-lookup-browse-pdf-any" function (:arguments ("pdf" "page")) nil [12025 12790])
-            ("x86-lookup" package nil nil [12792 12813]))          
-      :file "x86-lookup.el"
-      :pointmax 12843
-      :fsize 12844
-      :lastmodtime '(23537 22007 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!x86-lookup-20180528.1635!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041zenburn-theme-20181014.1555\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041zenburn-theme-20181014.1555\041semantic.cache"
deleted file mode 100644
index d9f0728..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041elpa\041zenburn-theme-20181014.1555\041semantic.cache"
+++ /dev/null
@@ -1,16 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags nil
-      :file "zenburn-theme-autoloads.el"
-      :pointmax 365
-      :fsize 995
-      :lastmodtime '(23536 531 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!elpa!zenburn-theme-20181014.1555!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041semantic.cache" "b/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041semantic.cache"
deleted file mode 100644
index b668350..0000000
--- "a/semanticdb/\041drive_c\041Users\041joelg\041.emacs.d\041semantic.cache"
+++ /dev/null
@@ -1,125 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode emacs-lisp-mode
-      :tags 
-        '( ("init" package nil nil [1 16])
-            ("add-to-list" code nil nil [46 90])
-            ("add-to-list" code nil nil [91 139])
-            ("add-to-list" code nil nil [140 209])
-            ("setenv" code nil nil [210 273])
-            ("add-to-list" code nil nil [306 351])
-            ("setup-applications" include nil nil [374 403])
-            ("setup-communication" include nil nil [404 434])
-            ("setup-convenience" include nil nil [435 463])
-            ("setup-data" include nil nil [464 485])
-            ("setup-development" include nil nil [486 514])
-            ("setup-editing" include nil nil [515 539])
-            ("setup-environment" include nil nil [540 568])
-            ("setup-external" include nil nil [569 594])
-            ("setup-faces" include nil nil [595 617])
-            ("setup-files" include nil nil [618 640])
-            ("setup-help" include nil nil [641 662])
-            ("setup-programming" include nil nil [663 691])
-            ("setup-text" include nil nil [692 713])
-            ("setup-local" include nil nil [714 736])
-            ("ispell" include nil nil [759 776])
-            ("setq-default" code nil nil [777 820])
-            ("package" include nil nil [836 854])
-            ("add-to-list" code nil nil [855 938])
-            ("package-initialize" code nil nil [939 959])
-            ("helm-config" include nil nil [969 991])
-            ("setq" code nil nil [993 1528])
-            ("spacemacs//helm-hide-minibuffer-maybe" function nil nil [1530 2031])
-            ("add-hook" code nil nil [2034 2122])
-            ("global-set-key" code nil nil [2124 2162])
-            ("setq" code nil nil [2163 2192])
-            ("global-set-key" code nil nil [2234 2283])
-            ("global-set-key" code nil nil [2285 2326])
-            ("setq" code nil nil [2327 2399])
-            ("global-set-key" code nil nil [2401 2450])
-            ("global-set-key" code nil nil [2452 2496])
-            ("helm-mode" code nil nil [2498 2511])
-            ("undo-tree" include nil nil [2526 2546])
-            ("global-undo-tree-mode" code nil nil [2547 2570])
-            ("volatile-highlights" include nil nil [2595 2625])
-            ("volatile-highlights-mode" code nil nil [2626 2654])
-            ("yasnippet" include nil nil [2669 2689])
-            ("yas-global-mode" code nil nil [2690 2709])
-            ("ggtags" include nil nil [2721 2738])
-            ("add-hook" code nil nil [2739 2883])
-            ("add-hook" code nil nil [2884 2924])
-            ("workgroups2" include nil nil [2941 2963])
-            ("workgroups-mode" code nil nil [2964 2983])
-            ("smartparens-config" include nil nil [3000 3029])
-            ("add-hook" code nil nil [3030 3075])
-            ("setq" code nil nil [3076 3112])
-            ("setq" code nil nil [3113 3152])
-            ("setq" code nil nil [3153 3192])
-            ("sp-use-paredit-bindings" code nil nil [3193 3218])
-            ("clean-aindent-mode" include nil nil [3242 3271])
-            ("add-hook" code nil nil [3272 3318])
-            ("company" include nil nil [3338 3356])
-            ("add-hook" code nil nil [3357 3405])
-            ("add-to-list" code nil nil [3406 3456])
-            ("setq" code nil nil [3457 3524])
-            ("define-key" code nil nil [3525 3580])
-            ("define-key" code nil nil [3581 3633])
-            ("add-hook" code nil nil [3656 3840])
-            ("setq" code nil nil [3842 4176])
-            ("projectile-global-mode" code nil nil [4199 4223])
-            ("setq" code nil nil [4224 4265])
-            ("helm-projectile-on" code nil nil [4266 4286])
-            ("setq" code nil nil [4287 4327])
-            ("define-key" code nil nil [4328 4398])
-            ("ztree-diff" include nil nil [4416 4437])
-            ("ztree-dir" include nil nil [4438 4458])
-            ("global-diff-hl-mode" code nil nil [4478 4499])
-            ("add-hook" code nil nil [4500 4547])
-            ("magit" include nil nil [4565 4581])
-            ("set-default" code nil nil [4582 4624])
-            ("add-hook" code nil nil [4625 4682])
-            ("magit-status" function (:arguments ("around" "magit-fullscreen" "activate")) nil [4711 4861])
-            ("global-unset-key" code nil nil [4863 4895])
-            ("global-set-key" code nil nil [4896 4939])
-            ("global-set-key" code nil nil [4940 4988])
-            ("global-set-key" code nil nil [4989 5039])
-            ("global-set-key" code nil nil [5040 5094])
-            ("global-set-key" code nil nil [5095 5141])
-            ("global-set-key" code nil nil [5142 5188])
-            ("global-set-key" code nil nil [5189 5235])
-            ("global-set-key" code nil nil [5236 5279])
-            ("flycheck" include nil nil [5293 5312])
-            ("add-hook" code nil nil [5313 5363])
-            ("with-eval-after-load" code nil nil [5385 5443])
-            ("case" code nil nil [5458 5500])
-            ("srefactor" include nil nil [5523 5543])
-            ("srefactor-lisp" include nil nil [5544 5569])
-            ("semantic-mode" code nil nil [5614 5631])
-            ("define-key" code nil nil [5665 5731])
-            ("define-key" code nil nil [5732 5800])
-            ("global-set-key" code nil nil [5801 5858])
-            ("global-set-key" code nil nil [5859 5919])
-            ("global-set-key" code nil nil [5920 5981])
-            ("global-set-key" code nil nil [5982 6044])
-            ("guide-key" include nil nil [6059 6079])
-            ("setq" code nil nil [6080 6142])
-            ("setq" code nil nil [6143 6189])
-            ("setq" code nil nil [6190 6236])
-            ("guide-key-mode" code nil nil [6237 6255])
-            ("x86-lookup" include nil nil [6299 6320])
-            ("setq" code nil nil [6321 6377])
-            ("global-set-key" code nil nil [6378 6421])
-            ("custom-set-variables" code nil nil [6424 6942])
-            ("custom-set-faces" code nil nil [6943 7182]))          
-      :file "init.el"
-      :pointmax 7183
-      :fsize 7407
-      :lastmodtime '(23537 22741 0 0)
-      :unmatched-syntax nil))
-  :file "!drive_c!Users!joelg!.emacs.d!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git "a/semanticdb/\041drive_c\041plink\041\041joel@192.168.1.113\041\041\041home\041joel\041Documents\041Code\041semantic.cache" "b/semanticdb/\041drive_c\041plink\041\041joel@192.168.1.113\041\041\041home\041joel\041Documents\041Code\041semantic.cache"
deleted file mode 100644
index 03e9766..0000000
--- "a/semanticdb/\041drive_c\041plink\041\041joel@192.168.1.113\041\041\041home\041joel\041Documents\041Code\041semantic.cache"
+++ /dev/null
@@ -1,16 +0,0 @@
-;; Object semanticdb-project-database-file
-;; SEMANTICDB Tags save file
-(semanticdb-project-database-file "semanticdb-project-database-file"
-  :tables
-  (list
-    (semanticdb-table "semanticdb-table"
-      :major-mode c-mode
-      :tags nil
-      :file "loop.c"
-      :pointmax 77
-      :fsize 94
-      :lastmodtime '(23537 8813)
-      :unmatched-syntax nil))
-  :file "!drive_c!plink!!joel@192.168.1.113!!!home!joel!Documents!Code!semantic.cache"
-  :semantic-tag-version "2.0"
-  :semanticdb-version "2.2")
diff --git a/srecode-map.el b/srecode-map.el
deleted file mode 100644
index db5e107..0000000
--- a/srecode-map.el
+++ /dev/null
@@ -1,6 +0,0 @@
-;; Object srecode-map
-;; EIEIO PERSISTENT OBJECT
-(srecode-map "srecode-map"
-  :file "srecode-map.el"
-  :files '(("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/wisent.srt" . wisent-grammar-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/texi.srt" . texinfo-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/template.srt" . srecode-template-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/make.srt" . makefile-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/java.srt" . java-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/el.srt" . emacs-lisp-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/default.srt" . default) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/cpp.srt" . c++-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/c.srt" . c-mode))
-  :apps '((tests ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/test.srt" . srecode-template-mode)) (getset ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/getset-cpp.srt" . c++-mode)) (ede ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/ede-make.srt" . makefile-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/ede-autoconf.srt" . autoconf-mode)) (document ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/doc-java.srt" . java-mode) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/doc-default.srt" . default) ("c:/Program Files/Emacs 26.1/share/emacs/26.1/etc/srecode/doc-cpp.srt" . c-mode))))
diff --git a/tmpiKD57q b/tmpiKD57q
deleted file mode 100644
index e69de29..0000000
--- a/tmpiKD57q
+++ /dev/null
diff --git a/tramp b/tramp
deleted file mode 100644
index 7741e5f..0000000
--- a/tramp
+++ /dev/null
@@ -1,27 +0,0 @@
-;; -*- emacs-lisp -*- <18/11/18 19:54:13 c:/Users/joelg/.emacs.d/tramp>
-;; Tramp connection history.  Don't change this file.
-;; You can delete it, forcing Tramp to reapply the checks.
-
-(((tramp-file-name "plink" "joel" nil "192.168.1.113" nil nil nil)
-  ("uname" "Linux 4.18.0-11-generic")
-  ("locale" "LC_ALL=en_US.utf8")
-  ("test" "test")
-  ("remote-path"
-   ("/bin" "/usr/bin" "/sbin" "/usr/sbin" "/usr/local/bin" "/usr/local/sbin"))
-  ("remote-shell" "/bin/sh")
-  ("~" "/home/joel")
-  ("file-exists" "test -e")
-  ("stat" "env QUOTING_STYLE=locale \\stat")
-  ("id" "/usr/bin/id")
-  ("gid-integer" 1000)
-  ("gid-string" "joel")
-  ("perl-file-spec" t)
-  ("perl-cwd-realpath" t)
-  ("perl" "\\perl")
-  ("case-insensitive" nil)
-  ("readlink" "\\readlink")
-  ("git" "\\git")
-  ("uid-integer" 1000)
-  ("tmpdir" "/plink:joel@192.168.1.113:/tmp")
-  ("touch-t" t)
-  ("touch" "\\touch")))

--
Gitblit v1.9.3